diff --git a/tree_sitter_v/bindings/node_types.v b/tree_sitter_v/bindings/node_types.v index f4ab807f..cfeddb2b 100644 --- a/tree_sitter_v/bindings/node_types.v +++ b/tree_sitter_v/bindings/node_types.v @@ -87,6 +87,7 @@ pub enum NodeType { interface_method_definition interpolation_closing interpreted_string_literal + is_clause is_expression key_value_attribute keyed_element @@ -108,7 +109,6 @@ pub enum NodeType { match_expression_list module_clause multi_return_type - mut_is_clause mutability_modifiers mutable_expression mutable_identifier @@ -395,6 +395,7 @@ const node_type_name_to_enum = { 'interface_method_definition': NodeType.interface_method_definition 'interpolation_closing': NodeType.interpolation_closing 'interpreted_string_literal': NodeType.interpreted_string_literal + 'is_clause': NodeType.is_clause 'is_expression': NodeType.is_expression 'key_value_attribute': NodeType.key_value_attribute 'keyed_element': NodeType.keyed_element @@ -416,7 +417,6 @@ const node_type_name_to_enum = { 'match_expression_list': NodeType.match_expression_list 'module_clause': NodeType.module_clause 'multi_return_type': NodeType.multi_return_type - 'mut_is_clause': NodeType.mut_is_clause 'mutability_modifiers': NodeType.mutability_modifiers 'mutable_expression': NodeType.mutable_expression 'mutable_identifier': NodeType.mutable_identifier diff --git a/tree_sitter_v/src/grammar.json b/tree_sitter_v/src/grammar.json index 4b65655f..aae26a8e 100644 --- a/tree_sitter_v/src/grammar.json +++ b/tree_sitter_v/src/grammar.json @@ -7954,7 +7954,7 @@ }, { "type": "SYMBOL", - "name": "mut_is_clause" + "name": "is_clause" }, { "type": "SYMBOL", @@ -7977,15 +7977,28 @@ } ] }, - "mut_is_clause": { - "type": "PREC_LEFT", + "is_clause": { + "type": "PREC", "value": 7, "content": { "type": "SEQ", "members": [ { - "type": "STRING", - "value": "mut" + "type": "CHOICE", + "members": [ + { + "type": "ALIAS", + "content": { + "type": "STRING", + "value": "mut" + }, + "named": true, + "value": "mutability_modifiers" + }, + { + "type": "BLANK" + } + ] }, { "type": "SYMBOL", diff --git a/tree_sitter_v/src/node-types.json b/tree_sitter_v/src/node-types.json index 02dcc8c7..4b37befa 100644 --- a/tree_sitter_v/src/node-types.json +++ b/tree_sitter_v/src/node-types.json @@ -1396,7 +1396,7 @@ "named": true }, { - "type": "mut_is_clause", + "type": "is_clause", "named": true }, { @@ -2086,6 +2086,25 @@ ] } }, + { + "type": "is_clause", + "named": true, + "fields": {}, + "children": { + "multiple": true, + "required": true, + "types": [ + { + "type": "is_expression", + "named": true + }, + { + "type": "mutability_modifiers", + "named": true + } + ] + } + }, { "type": "is_expression", "named": true, @@ -2644,21 +2663,6 @@ ] } }, - { - "type": "mut_is_clause", - "named": true, - "fields": {}, - "children": { - "multiple": false, - "required": true, - "types": [ - { - "type": "is_expression", - "named": true - } - ] - } - }, { "type": "mutability_modifiers", "named": true, diff --git a/tree_sitter_v/src/parser.c b/tree_sitter_v/src/parser.c index 3c6cb711..3c5da10b 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 4648 -#define LARGE_STATE_COUNT 1609 -#define SYMBOL_COUNT 359 +#define STATE_COUNT 4651 +#define LARGE_STATE_COUNT 1610 +#define SYMBOL_COUNT 360 #define ALIAS_COUNT 3 #define TOKEN_COUNT 143 #define EXTERNAL_TOKEN_COUNT 0 #define FIELD_COUNT 46 #define MAX_ALIAS_SEQUENCE_LENGTH 9 -#define PRODUCTION_ID_COUNT 151 +#define PRODUCTION_ID_COUNT 152 enum ts_symbol_identifiers { sym_identifier = 1, @@ -329,62 +329,63 @@ enum ts_symbol_identifiers { sym_empty_labeled_statement = 303, sym_compile_time_for_statement = 304, sym_for_statement = 305, - sym_range_clause = 306, - sym_for_clause = 307, - sym__definite_range = 308, - sym_range = 309, - sym_hash_statement = 310, - sym_asm_statement = 311, - sym__content_block = 312, - sym_attributes = 313, - sym_attribute = 314, - sym_attribute_expression = 315, - sym_if_attribute = 316, - sym__plain_attribute = 317, - sym_literal_attribute = 318, - sym_value_attribute = 319, - sym_key_value_attribute = 320, - sym___rcbr = 321, - aux_sym_source_file_repeat1 = 322, - aux_sym_block_comment_repeat1 = 323, - aux_sym_import_list_repeat1 = 324, - aux_sym_import_path_repeat1 = 325, - aux_sym_selective_import_list_repeat1 = 326, - aux_sym_const_declaration_repeat1 = 327, - aux_sym_global_var_declaration_repeat1 = 328, - aux_sym__type_union_list_repeat1 = 329, - aux_sym_parameter_list_repeat1 = 330, - aux_sym_type_parameter_list_repeat1 = 331, - aux_sym_generic_parameters_repeat1 = 332, - aux_sym__struct_body_repeat1 = 333, - aux_sym__enum_body_repeat1 = 334, - aux_sym__interface_body_repeat1 = 335, - aux_sym_strictly_expression_list_repeat1 = 336, - aux_sym_type_parameters_repeat1 = 337, - aux_sym_argument_list_repeat1 = 338, - aux_sym_short_lambda_repeat1 = 339, - aux_sym_element_list_repeat1 = 340, - aux_sym_short_element_list_repeat1 = 341, - aux_sym_capture_list_repeat1 = 342, - aux_sym_map_init_expression_repeat1 = 343, - aux_sym__array_repeat1 = 344, - aux_sym_match_arms_repeat1 = 345, - aux_sym_match_expression_list_repeat1 = 346, - aux_sym_select_expression_repeat1 = 347, - aux_sym_c_string_literal_repeat1 = 348, - aux_sym_c_string_literal_repeat2 = 349, - aux_sym_raw_string_literal_repeat1 = 350, - aux_sym_raw_string_literal_repeat2 = 351, - aux_sym_string_interpolation_repeat1 = 352, - aux_sym_identifier_list_repeat1 = 353, - aux_sym_expression_without_blocks_list_repeat1 = 354, - aux_sym__statement_list_repeat1 = 355, - aux_sym_var_definition_list_repeat1 = 356, - aux_sym_attributes_repeat1 = 357, - aux_sym_attribute_repeat1 = 358, - alias_sym_element = 359, - alias_sym_field_name = 360, - alias_sym_interpolation_expression = 361, + sym_is_clause = 306, + sym_range_clause = 307, + sym_for_clause = 308, + sym__definite_range = 309, + sym_range = 310, + sym_hash_statement = 311, + sym_asm_statement = 312, + sym__content_block = 313, + sym_attributes = 314, + sym_attribute = 315, + sym_attribute_expression = 316, + sym_if_attribute = 317, + sym__plain_attribute = 318, + sym_literal_attribute = 319, + sym_value_attribute = 320, + sym_key_value_attribute = 321, + sym___rcbr = 322, + aux_sym_source_file_repeat1 = 323, + aux_sym_block_comment_repeat1 = 324, + aux_sym_import_list_repeat1 = 325, + aux_sym_import_path_repeat1 = 326, + aux_sym_selective_import_list_repeat1 = 327, + aux_sym_const_declaration_repeat1 = 328, + aux_sym_global_var_declaration_repeat1 = 329, + aux_sym__type_union_list_repeat1 = 330, + aux_sym_parameter_list_repeat1 = 331, + aux_sym_type_parameter_list_repeat1 = 332, + aux_sym_generic_parameters_repeat1 = 333, + aux_sym__struct_body_repeat1 = 334, + aux_sym__enum_body_repeat1 = 335, + aux_sym__interface_body_repeat1 = 336, + aux_sym_strictly_expression_list_repeat1 = 337, + aux_sym_type_parameters_repeat1 = 338, + aux_sym_argument_list_repeat1 = 339, + aux_sym_short_lambda_repeat1 = 340, + aux_sym_element_list_repeat1 = 341, + aux_sym_short_element_list_repeat1 = 342, + aux_sym_capture_list_repeat1 = 343, + aux_sym_map_init_expression_repeat1 = 344, + aux_sym__array_repeat1 = 345, + aux_sym_match_arms_repeat1 = 346, + aux_sym_match_expression_list_repeat1 = 347, + aux_sym_select_expression_repeat1 = 348, + aux_sym_c_string_literal_repeat1 = 349, + aux_sym_c_string_literal_repeat2 = 350, + aux_sym_raw_string_literal_repeat1 = 351, + aux_sym_raw_string_literal_repeat2 = 352, + aux_sym_string_interpolation_repeat1 = 353, + aux_sym_identifier_list_repeat1 = 354, + aux_sym_expression_without_blocks_list_repeat1 = 355, + aux_sym__statement_list_repeat1 = 356, + aux_sym_var_definition_list_repeat1 = 357, + aux_sym_attributes_repeat1 = 358, + aux_sym_attribute_repeat1 = 359, + alias_sym_element = 360, + alias_sym_field_name = 361, + alias_sym_interpolation_expression = 362, }; static const char * const ts_symbol_names[] = { @@ -694,6 +695,7 @@ static const char * const ts_symbol_names[] = { [sym_empty_labeled_statement] = "labeled_statement", [sym_compile_time_for_statement] = "compile_time_for_statement", [sym_for_statement] = "for_statement", + [sym_is_clause] = "is_clause", [sym_range_clause] = "range_clause", [sym_for_clause] = "for_clause", [sym__definite_range] = "range", @@ -1059,6 +1061,7 @@ static const TSSymbol ts_symbol_map[] = { [sym_empty_labeled_statement] = sym_labeled_statement, [sym_compile_time_for_statement] = sym_compile_time_for_statement, [sym_for_statement] = sym_for_statement, + [sym_is_clause] = sym_is_clause, [sym_range_clause] = sym_range_clause, [sym_for_clause] = sym_for_clause, [sym__definite_range] = sym_range, @@ -2345,6 +2348,10 @@ static const TSSymbolMetadata ts_symbol_metadata[] = { .visible = true, .named = true, }, + [sym_is_clause] = { + .visible = true, + .named = true, + }, [sym_range_clause] = { .visible = true, .named = true, @@ -2695,128 +2702,128 @@ static const TSFieldMapSlice ts_field_map_slices[PRODUCTION_ID_COUNT] = { [23] = {.index = 33, .length = 2}, [24] = {.index = 35, .length = 2}, [25] = {.index = 37, .length = 1}, - [27] = {.index = 38, .length = 2}, - [28] = {.index = 40, .length = 3}, - [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}, + [28] = {.index = 38, .length = 2}, + [29] = {.index = 40, .length = 3}, + [30] = {.index = 43, .length = 1}, + [31] = {.index = 44, .length = 2}, + [32] = {.index = 46, .length = 2}, + [33] = {.index = 48, .length = 1}, + [34] = {.index = 49, .length = 3}, + [35] = {.index = 52, .length = 2}, + [36] = {.index = 54, .length = 2}, + [37] = {.index = 56, .length = 1}, + [38] = {.index = 57, .length = 2}, + [39] = {.index = 59, .length = 2}, + [40] = {.index = 61, .length = 1}, + [41] = {.index = 62, .length = 2}, + [42] = {.index = 64, .length = 2}, + [43] = {.index = 66, .length = 2}, + [44] = {.index = 68, .length = 1}, + [45] = {.index = 69, .length = 3}, + [46] = {.index = 72, .length = 3}, + [47] = {.index = 75, .length = 3}, + [48] = {.index = 78, .length = 3}, + [49] = {.index = 81, .length = 3}, + [50] = {.index = 84, .length = 1}, + [51] = {.index = 85, .length = 1}, + [52] = {.index = 86, .length = 2}, + [54] = {.index = 88, .length = 2}, + [55] = {.index = 90, .length = 1}, + [56] = {.index = 91, .length = 3}, + [57] = {.index = 94, .length = 1}, + [58] = {.index = 95, .length = 3}, + [59] = {.index = 98, .length = 1}, + [60] = {.index = 99, .length = 2}, + [61] = {.index = 101, .length = 5}, + [62] = {.index = 106, .length = 1}, + [63] = {.index = 107, .length = 1}, + [64] = {.index = 108, .length = 2}, + [65] = {.index = 110, .length = 2}, + [66] = {.index = 112, .length = 2}, + [67] = {.index = 114, .length = 1}, + [68] = {.index = 115, .length = 2}, + [69] = {.index = 117, .length = 1}, + [70] = {.index = 118, .length = 3}, + [71] = {.index = 121, .length = 1}, + [72] = {.index = 122, .length = 1}, + [73] = {.index = 123, .length = 3}, + [74] = {.index = 126, .length = 2}, + [75] = {.index = 128, .length = 3}, + [76] = {.index = 131, .length = 3}, + [77] = {.index = 134, .length = 2}, + [78] = {.index = 136, .length = 2}, + [79] = {.index = 138, .length = 3}, + [80] = {.index = 141, .length = 3}, + [81] = {.index = 144, .length = 4}, + [82] = {.index = 148, .length = 4}, + [83] = {.index = 152, .length = 4}, + [84] = {.index = 156, .length = 4}, + [85] = {.index = 160, .length = 3}, + [86] = {.index = 57, .length = 2}, + [87] = {.index = 163, .length = 2}, + [88] = {.index = 165, .length = 2}, + [89] = {.index = 167, .length = 1}, + [90] = {.index = 168, .length = 3}, + [91] = {.index = 171, .length = 2}, + [92] = {.index = 173, .length = 2}, + [93] = {.index = 175, .length = 2}, + [94] = {.index = 177, .length = 2}, + [96] = {.index = 179, .length = 3}, + [97] = {.index = 182, .length = 2}, + [98] = {.index = 184, .length = 3}, + [99] = {.index = 187, .length = 3}, + [100] = {.index = 190, .length = 3}, + [101] = {.index = 193, .length = 2}, + [102] = {.index = 195, .length = 4}, + [103] = {.index = 199, .length = 4}, + [104] = {.index = 203, .length = 4}, + [105] = {.index = 207, .length = 3}, + [106] = {.index = 210, .length = 3}, + [107] = {.index = 213, .length = 2}, + [108] = {.index = 215, .length = 4}, + [109] = {.index = 219, .length = 3}, + [110] = {.index = 222, .length = 4}, + [111] = {.index = 226, .length = 4}, + [112] = {.index = 230, .length = 5}, + [113] = {.index = 235, .length = 3}, + [114] = {.index = 238, .length = 3}, + [115] = {.index = 241, .length = 3}, + [116] = {.index = 244, .length = 4}, + [117] = {.index = 248, .length = 3}, + [118] = {.index = 251, .length = 3}, + [119] = {.index = 254, .length = 3}, + [120] = {.index = 257, .length = 3}, + [121] = {.index = 260, .length = 4}, + [122] = {.index = 264, .length = 4}, + [123] = {.index = 268, .length = 4}, + [124] = {.index = 272, .length = 4}, + [125] = {.index = 276, .length = 5}, + [126] = {.index = 281, .length = 5}, + [127] = {.index = 286, .length = 5}, + [128] = {.index = 291, .length = 4}, + [129] = {.index = 295, .length = 4}, + [130] = {.index = 299, .length = 4}, + [131] = {.index = 303, .length = 3}, + [132] = {.index = 306, .length = 5}, + [133] = {.index = 311, .length = 4}, + [134] = {.index = 315, .length = 3}, + [135] = {.index = 318, .length = 4}, + [136] = {.index = 322, .length = 4}, + [137] = {.index = 326, .length = 4}, + [138] = {.index = 330, .length = 5}, + [139] = {.index = 335, .length = 5}, + [140] = {.index = 340, .length = 5}, + [141] = {.index = 345, .length = 6}, + [142] = {.index = 351, .length = 4}, + [143] = {.index = 355, .length = 5}, + [144] = {.index = 360, .length = 5}, + [145] = {.index = 365, .length = 5}, + [146] = {.index = 370, .length = 5}, + [147] = {.index = 375, .length = 6}, + [148] = {.index = 381, .length = 5}, + [149] = {.index = 386, .length = 5}, + [150] = {.index = 391, .length = 6}, + [151] = {.index = 397, .length = 6}, }; static const TSFieldMapEntry ts_field_map_entries[] = { @@ -3378,21 +3385,24 @@ static const TSSymbol ts_alias_sequences[PRODUCTION_ID_COUNT][MAX_ALIAS_SEQUENCE [0] = alias_sym_element, }, [26] = { + [0] = sym_mutability_modifiers, + }, + [27] = { [0] = alias_sym_interpolation_expression, }, - [52] = { + [53] = { [1] = sym_plain_type, }, - [76] = { + [77] = { [2] = sym_plain_type, }, - [85] = { + [86] = { [0] = alias_sym_field_name, }, - [94] = { + [95] = { [1] = alias_sym_interpolation_expression, }, - [108] = { + [109] = { [3] = sym_plain_type, }, }; @@ -3477,7 +3487,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, @@ -3498,121 +3508,121 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [83] = 72, [84] = 72, [85] = 85, - [86] = 85, - [87] = 85, - [88] = 85, - [89] = 85, - [90] = 85, - [91] = 85, - [92] = 85, - [93] = 85, - [94] = 85, - [95] = 85, - [96] = 85, - [97] = 85, + [86] = 86, + [87] = 86, + [88] = 86, + [89] = 86, + [90] = 86, + [91] = 86, + [92] = 86, + [93] = 86, + [94] = 86, + [95] = 86, + [96] = 86, + [97] = 86, [98] = 85, - [99] = 85, - [100] = 85, - [101] = 85, - [102] = 85, - [103] = 85, - [104] = 85, - [105] = 85, - [106] = 85, - [107] = 85, - [108] = 108, - [109] = 108, + [99] = 86, + [100] = 86, + [101] = 86, + [102] = 86, + [103] = 86, + [104] = 86, + [105] = 86, + [106] = 86, + [107] = 86, + [108] = 86, + [109] = 86, [110] = 110, [111] = 111, - [112] = 111, - [113] = 110, - [114] = 110, - [115] = 115, - [116] = 115, - [117] = 115, - [118] = 111, - [119] = 111, - [120] = 115, + [112] = 110, + [113] = 113, + [114] = 111, + [115] = 110, + [116] = 111, + [117] = 113, + [118] = 113, + [119] = 113, + [120] = 110, [121] = 111, - [122] = 115, - [123] = 110, - [124] = 111, - [125] = 110, - [126] = 110, + [122] = 110, + [123] = 111, + [124] = 110, + [125] = 111, + [126] = 113, [127] = 111, - [128] = 111, - [129] = 115, + [128] = 113, + [129] = 113, [130] = 110, - [131] = 110, - [132] = 111, + [131] = 111, + [132] = 110, [133] = 111, [134] = 110, - [135] = 115, - [136] = 115, - [137] = 115, - [138] = 110, + [135] = 113, + [136] = 113, + [137] = 111, + [138] = 113, [139] = 110, - [140] = 115, + [140] = 110, [141] = 111, - [142] = 110, - [143] = 115, - [144] = 110, + [142] = 113, + [143] = 110, + [144] = 113, [145] = 111, - [146] = 111, - [147] = 115, - [148] = 115, + [146] = 110, + [147] = 111, + [148] = 113, [149] = 149, [150] = 150, - [151] = 151, - [152] = 150, - [153] = 151, + [151] = 150, + [152] = 152, + [153] = 152, [154] = 150, - [155] = 150, - [156] = 151, - [157] = 150, - [158] = 151, + [155] = 152, + [156] = 150, + [157] = 152, + [158] = 152, [159] = 150, - [160] = 151, + [160] = 152, [161] = 150, [162] = 150, - [163] = 150, - [164] = 151, + [163] = 152, + [164] = 150, [165] = 150, - [166] = 151, - [167] = 151, - [168] = 151, - [169] = 151, - [170] = 150, - [171] = 151, - [172] = 151, - [173] = 150, - [174] = 151, - [175] = 71, - [176] = 176, - [177] = 177, - [178] = 176, - [179] = 176, - [180] = 176, - [181] = 70, - [182] = 176, - [183] = 176, - [184] = 184, - [185] = 176, - [186] = 186, - [187] = 69, - [188] = 176, - [189] = 176, - [190] = 176, - [191] = 191, - [192] = 176, - [193] = 176, - [194] = 176, - [195] = 68, - [196] = 67, + [166] = 150, + [167] = 150, + [168] = 152, + [169] = 150, + [170] = 152, + [171] = 150, + [172] = 152, + [173] = 152, + [174] = 152, + [175] = 175, + [176] = 175, + [177] = 68, + [178] = 175, + [179] = 175, + [180] = 175, + [181] = 69, + [182] = 175, + [183] = 67, + [184] = 175, + [185] = 175, + [186] = 175, + [187] = 187, + [188] = 188, + [189] = 189, + [190] = 71, + [191] = 175, + [192] = 192, + [193] = 175, + [194] = 70, + [195] = 175, + [196] = 175, [197] = 197, [198] = 197, - [199] = 199, - [200] = 197, + [199] = 197, + [200] = 200, [201] = 197, [202] = 197, [203] = 197, @@ -3626,8 +3636,8 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [211] = 211, [212] = 212, [213] = 213, - [214] = 66, - [215] = 215, + [214] = 214, + [215] = 66, [216] = 216, [217] = 217, [218] = 218, @@ -3644,1253 +3654,1253 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [229] = 229, [230] = 230, [231] = 231, - [232] = 232, - [233] = 232, + [232] = 231, + [233] = 233, [234] = 234, - [235] = 231, + [235] = 235, [236] = 236, - [237] = 236, + [237] = 234, [238] = 238, - [239] = 231, + [239] = 234, [240] = 240, [241] = 241, - [242] = 232, - [243] = 234, - [244] = 236, - [245] = 232, - [246] = 234, - [247] = 232, - [248] = 236, - [249] = 231, + [242] = 236, + [243] = 243, + [244] = 244, + [245] = 234, + [246] = 236, + [247] = 241, + [248] = 248, + [249] = 234, [250] = 250, - [251] = 251, - [252] = 252, - [253] = 231, - [254] = 234, - [255] = 232, - [256] = 241, + [251] = 243, + [252] = 243, + [253] = 243, + [254] = 243, + [255] = 241, + [256] = 250, [257] = 257, - [258] = 251, - [259] = 238, - [260] = 236, - [261] = 261, - [262] = 234, - [263] = 236, - [264] = 234, - [265] = 265, - [266] = 232, - [267] = 234, - [268] = 231, - [269] = 231, - [270] = 232, + [258] = 236, + [259] = 236, + [260] = 241, + [261] = 243, + [262] = 243, + [263] = 243, + [264] = 243, + [265] = 241, + [266] = 243, + [267] = 236, + [268] = 243, + [269] = 243, + [270] = 243, [271] = 236, - [272] = 231, - [273] = 231, - [274] = 234, - [275] = 257, - [276] = 231, - [277] = 231, - [278] = 231, - [279] = 279, - [280] = 236, - [281] = 231, - [282] = 231, - [283] = 231, - [284] = 232, - [285] = 234, - [286] = 236, - [287] = 231, - [288] = 231, - [289] = 231, - [290] = 231, - [291] = 231, + [272] = 234, + [273] = 234, + [274] = 243, + [275] = 234, + [276] = 243, + [277] = 236, + [278] = 234, + [279] = 241, + [280] = 241, + [281] = 243, + [282] = 234, + [283] = 241, + [284] = 243, + [285] = 243, + [286] = 234, + [287] = 241, + [288] = 241, + [289] = 236, + [290] = 236, + [291] = 243, [292] = 236, - [293] = 234, - [294] = 234, - [295] = 295, - [296] = 232, - [297] = 265, - [298] = 236, + [293] = 243, + [294] = 243, + [295] = 234, + [296] = 236, + [297] = 241, + [298] = 241, [299] = 236, - [300] = 232, - [301] = 232, - [302] = 231, - [303] = 231, - [304] = 232, - [305] = 231, - [306] = 234, - [307] = 234, - [308] = 236, + [300] = 300, + [301] = 234, + [302] = 240, + [303] = 303, + [304] = 243, + [305] = 243, + [306] = 233, + [307] = 241, + [308] = 238, [309] = 309, [310] = 310, [311] = 311, - [312] = 309, - [313] = 309, + [312] = 312, + [313] = 313, [314] = 314, - [315] = 314, + [315] = 315, [316] = 316, - [317] = 314, + [317] = 317, [318] = 318, [319] = 319, - [320] = 309, - [321] = 309, - [322] = 309, - [323] = 309, - [324] = 324, - [325] = 309, - [326] = 326, - [327] = 309, + [320] = 320, + [321] = 313, + [322] = 314, + [323] = 323, + [324] = 316, + [325] = 319, + [326] = 316, + [327] = 327, [328] = 328, - [329] = 329, - [330] = 330, - [331] = 331, - [332] = 318, - [333] = 316, - [334] = 319, + [329] = 319, + [330] = 314, + [331] = 313, + [332] = 332, + [333] = 311, + [334] = 334, [335] = 335, - [336] = 309, + [336] = 313, [337] = 314, - [338] = 338, - [339] = 339, + [338] = 311, + [339] = 316, [340] = 340, - [341] = 341, - [342] = 318, - [343] = 319, - [344] = 314, - [345] = 309, - [346] = 346, - [347] = 347, - [348] = 348, - [349] = 316, + [341] = 316, + [342] = 342, + [343] = 311, + [344] = 344, + [345] = 345, + [346] = 327, + [347] = 323, + [348] = 314, + [349] = 313, [350] = 350, [351] = 351, - [352] = 352, - [353] = 353, - [354] = 309, - [355] = 318, - [356] = 316, - [357] = 316, - [358] = 358, - [359] = 309, + [352] = 319, + [353] = 316, + [354] = 314, + [355] = 319, + [356] = 356, + [357] = 357, + [358] = 316, + [359] = 359, [360] = 360, - [361] = 314, - [362] = 309, - [363] = 363, + [361] = 361, + [362] = 362, + [363] = 313, [364] = 364, [365] = 365, - [366] = 366, - [367] = 309, - [368] = 309, - [369] = 314, - [370] = 316, + [366] = 311, + [367] = 319, + [368] = 319, + [369] = 319, + [370] = 313, [371] = 371, - [372] = 372, - [373] = 338, + [372] = 323, + [373] = 311, [374] = 374, - [375] = 339, + [375] = 375, [376] = 376, - [377] = 314, - [378] = 318, - [379] = 338, - [380] = 339, + [377] = 377, + [378] = 342, + [379] = 314, + [380] = 380, [381] = 381, [382] = 382, - [383] = 319, - [384] = 318, - [385] = 316, + [383] = 332, + [384] = 327, + [385] = 385, [386] = 386, - [387] = 318, + [387] = 387, [388] = 388, - [389] = 319, - [390] = 316, - [391] = 391, - [392] = 392, - [393] = 309, - [394] = 394, - [395] = 319, - [396] = 396, - [397] = 397, - [398] = 318, - [399] = 319, - [400] = 400, + [389] = 389, + [390] = 313, + [391] = 314, + [392] = 319, + [393] = 393, + [394] = 316, + [395] = 395, + [396] = 311, + [397] = 316, + [398] = 316, + [399] = 399, + [400] = 300, [401] = 401, - [402] = 309, + [402] = 316, [403] = 403, [404] = 404, [405] = 405, - [406] = 318, - [407] = 407, - [408] = 408, + [406] = 316, + [407] = 311, + [408] = 314, [409] = 409, - [410] = 396, - [411] = 411, + [410] = 410, + [411] = 313, [412] = 412, - [413] = 314, + [413] = 413, [414] = 414, [415] = 415, [416] = 416, - [417] = 316, + [417] = 417, [418] = 418, - [419] = 319, - [420] = 420, + [419] = 419, + [420] = 316, [421] = 421, [422] = 422, - [423] = 316, - [424] = 309, - [425] = 338, + [423] = 423, + [424] = 311, + [425] = 425, [426] = 426, [427] = 427, - [428] = 318, + [428] = 428, [429] = 429, - [430] = 339, + [430] = 342, [431] = 431, - [432] = 314, + [432] = 316, [433] = 433, - [434] = 434, + [434] = 316, [435] = 435, - [436] = 436, - [437] = 437, - [438] = 438, - [439] = 439, - [440] = 440, + [436] = 319, + [437] = 319, + [438] = 314, + [439] = 316, + [440] = 313, [441] = 316, [442] = 442, [443] = 443, - [444] = 319, - [445] = 445, + [444] = 311, + [445] = 323, [446] = 446, [447] = 447, - [448] = 448, - [449] = 449, + [448] = 327, + [449] = 316, [450] = 450, - [451] = 451, - [452] = 279, + [451] = 316, + [452] = 452, [453] = 453, - [454] = 316, - [455] = 353, - [456] = 456, + [454] = 454, + [455] = 455, + [456] = 316, [457] = 457, [458] = 458, - [459] = 459, + [459] = 316, [460] = 460, [461] = 461, [462] = 462, - [463] = 314, - [464] = 394, + [463] = 463, + [464] = 464, [465] = 465, - [466] = 466, - [467] = 309, - [468] = 468, + [466] = 316, + [467] = 467, + [468] = 314, [469] = 469, - [470] = 309, - [471] = 319, - [472] = 316, + [470] = 313, + [471] = 471, + [472] = 472, [473] = 473, - [474] = 474, - [475] = 475, - [476] = 316, + [474] = 311, + [475] = 319, + [476] = 476, [477] = 477, - [478] = 318, - [479] = 316, - [480] = 480, + [478] = 319, + [479] = 479, + [480] = 316, [481] = 481, - [482] = 482, + [482] = 314, [483] = 483, [484] = 484, - [485] = 485, + [485] = 313, [486] = 486, [487] = 487, [488] = 488, [489] = 489, - [490] = 319, + [490] = 490, [491] = 491, - [492] = 314, + [492] = 319, [493] = 493, [494] = 494, [495] = 495, - [496] = 496, - [497] = 353, - [498] = 309, - [499] = 309, + [496] = 319, + [497] = 351, + [498] = 498, + [499] = 499, [500] = 500, - [501] = 318, - [502] = 319, + [501] = 501, + [502] = 311, [503] = 503, - [504] = 503, + [504] = 504, [505] = 505, - [506] = 503, - [507] = 505, - [508] = 505, + [506] = 506, + [507] = 507, + [508] = 507, [509] = 509, - [510] = 503, - [511] = 511, - [512] = 503, - [513] = 505, - [514] = 394, - [515] = 505, - [516] = 516, - [517] = 517, - [518] = 505, - [519] = 519, - [520] = 505, - [521] = 521, - [522] = 511, - [523] = 505, - [524] = 511, - [525] = 503, - [526] = 503, - [527] = 505, - [528] = 528, - [529] = 503, - [530] = 521, - [531] = 531, - [532] = 505, - [533] = 505, - [534] = 503, - [535] = 521, - [536] = 536, - [537] = 511, - [538] = 503, - [539] = 505, - [540] = 503, - [541] = 505, - [542] = 505, - [543] = 503, - [544] = 521, - [545] = 505, - [546] = 503, - [547] = 521, - [548] = 505, - [549] = 521, - [550] = 550, + [510] = 510, + [511] = 506, + [512] = 512, + [513] = 506, + [514] = 507, + [515] = 506, + [516] = 507, + [517] = 506, + [518] = 506, + [519] = 510, + [520] = 520, + [521] = 507, + [522] = 507, + [523] = 506, + [524] = 351, + [525] = 510, + [526] = 507, + [527] = 507, + [528] = 507, + [529] = 506, + [530] = 507, + [531] = 506, + [532] = 506, + [533] = 510, + [534] = 534, + [535] = 506, + [536] = 510, + [537] = 506, + [538] = 538, + [539] = 507, + [540] = 512, + [541] = 507, + [542] = 507, + [543] = 543, + [544] = 512, + [545] = 506, + [546] = 507, + [547] = 507, + [548] = 510, + [549] = 512, + [550] = 507, [551] = 551, [552] = 552, [553] = 553, - [554] = 394, - [555] = 555, + [554] = 554, + [555] = 553, [556] = 556, - [557] = 556, - [558] = 553, + [557] = 351, + [558] = 558, [559] = 559, - [560] = 551, - [561] = 561, - [562] = 561, - [563] = 550, - [564] = 564, - [565] = 565, - [566] = 394, - [567] = 561, - [568] = 556, + [560] = 558, + [561] = 553, + [562] = 562, + [563] = 563, + [564] = 554, + [565] = 556, + [566] = 351, + [567] = 558, + [568] = 559, [569] = 569, - [570] = 555, - [571] = 552, + [570] = 552, + [571] = 551, [572] = 572, - [573] = 555, + [573] = 573, [574] = 574, - [575] = 572, - [576] = 556, - [577] = 577, - [578] = 572, - [579] = 574, - [580] = 553, - [581] = 552, - [582] = 552, - [583] = 583, - [584] = 553, - [585] = 394, - [586] = 555, + [575] = 553, + [576] = 559, + [577] = 556, + [578] = 351, + [579] = 562, + [580] = 351, + [581] = 554, + [582] = 563, + [583] = 562, + [584] = 558, + [585] = 351, + [586] = 586, [587] = 556, - [588] = 574, - [589] = 572, - [590] = 550, - [591] = 551, - [592] = 559, - [593] = 577, - [594] = 569, - [595] = 556, - [596] = 564, - [597] = 569, - [598] = 555, - [599] = 564, - [600] = 555, - [601] = 394, - [602] = 569, - [603] = 603, - [604] = 553, - [605] = 552, - [606] = 574, - [607] = 572, - [608] = 555, - [609] = 394, - [610] = 574, - [611] = 577, - [612] = 555, - [613] = 572, - [614] = 574, - [615] = 550, - [616] = 577, - [617] = 551, - [618] = 552, - [619] = 559, - [620] = 553, - [621] = 394, - [622] = 555, - [623] = 556, - [624] = 574, - [625] = 550, - [626] = 555, - [627] = 394, - [628] = 574, - [629] = 551, - [630] = 559, - [631] = 561, - [632] = 561, - [633] = 633, - [634] = 634, - [635] = 635, - [636] = 564, - [637] = 565, - [638] = 561, - [639] = 639, - [640] = 561, - [641] = 603, + [588] = 554, + [589] = 553, + [590] = 559, + [591] = 558, + [592] = 556, + [593] = 554, + [594] = 562, + [595] = 562, + [596] = 596, + [597] = 563, + [598] = 554, + [599] = 556, + [600] = 553, + [601] = 553, + [602] = 351, + [603] = 558, + [604] = 559, + [605] = 574, + [606] = 606, + [607] = 563, + [608] = 562, + [609] = 559, + [610] = 573, + [611] = 558, + [612] = 351, + [613] = 556, + [614] = 572, + [615] = 554, + [616] = 563, + [617] = 562, + [618] = 553, + [619] = 552, + [620] = 558, + [621] = 351, + [622] = 563, + [623] = 569, + [624] = 559, + [625] = 625, + [626] = 558, + [627] = 627, + [628] = 563, + [629] = 562, + [630] = 563, + [631] = 554, + [632] = 632, + [633] = 556, + [634] = 351, + [635] = 558, + [636] = 636, + [637] = 559, + [638] = 558, + [639] = 553, + [640] = 563, + [641] = 641, [642] = 642, - [643] = 564, - [644] = 569, - [645] = 577, - [646] = 550, - [647] = 551, - [648] = 559, - [649] = 394, - [650] = 572, - [651] = 574, - [652] = 552, - [653] = 553, - [654] = 553, - [655] = 394, + [643] = 596, + [644] = 606, + [645] = 645, + [646] = 574, + [647] = 647, + [648] = 573, + [649] = 572, + [650] = 569, + [651] = 551, + [652] = 625, + [653] = 552, + [654] = 569, + [655] = 625, [656] = 552, - [657] = 550, - [658] = 555, - [659] = 556, - [660] = 574, - [661] = 572, - [662] = 639, - [663] = 663, - [664] = 561, - [665] = 642, - [666] = 559, - [667] = 667, - [668] = 556, - [669] = 551, - [670] = 555, - [671] = 394, - [672] = 553, - [673] = 552, - [674] = 574, - [675] = 572, - [676] = 550, - [677] = 556, - [678] = 577, - [679] = 555, - [680] = 394, - [681] = 553, - [682] = 569, - [683] = 552, - [684] = 574, - [685] = 564, - [686] = 686, - [687] = 572, - [688] = 572, - [689] = 561, - [690] = 574, - [691] = 561, - [692] = 552, - [693] = 663, - [694] = 556, - [695] = 553, + [657] = 559, + [658] = 558, + [659] = 351, + [660] = 563, + [661] = 556, + [662] = 554, + [663] = 563, + [664] = 351, + [665] = 562, + [666] = 558, + [667] = 562, + [668] = 645, + [669] = 562, + [670] = 670, + [671] = 563, + [672] = 574, + [673] = 554, + [674] = 559, + [675] = 556, + [676] = 558, + [677] = 677, + [678] = 351, + [679] = 558, + [680] = 559, + [681] = 351, + [682] = 556, + [683] = 554, + [684] = 563, + [685] = 562, + [686] = 559, + [687] = 551, + [688] = 573, + [689] = 556, + [690] = 554, + [691] = 562, + [692] = 572, + [693] = 558, + [694] = 551, + [695] = 351, [696] = 552, - [697] = 697, - [698] = 553, - [699] = 561, - [700] = 394, - [701] = 555, - [702] = 663, - [703] = 556, - [704] = 572, - [705] = 555, - [706] = 574, - [707] = 394, - [708] = 555, - [709] = 394, - [710] = 556, - [711] = 574, - [712] = 565, - [713] = 639, - [714] = 555, - [715] = 603, - [716] = 642, - [717] = 565, - [718] = 639, - [719] = 394, - [720] = 559, - [721] = 721, - [722] = 663, - [723] = 551, - [724] = 603, - [725] = 572, - [726] = 574, - [727] = 553, - [728] = 552, - [729] = 552, - [730] = 553, - [731] = 394, - [732] = 555, - [733] = 556, - [734] = 642, - [735] = 735, - [736] = 565, - [737] = 552, - [738] = 639, - [739] = 553, - [740] = 740, - [741] = 574, + [697] = 563, + [698] = 642, + [699] = 596, + [700] = 572, + [701] = 606, + [702] = 573, + [703] = 645, + [704] = 642, + [705] = 574, + [706] = 569, + [707] = 625, + [708] = 552, + [709] = 551, + [710] = 562, + [711] = 569, + [712] = 563, + [713] = 572, + [714] = 554, + [715] = 556, + [716] = 351, + [717] = 558, + [718] = 559, + [719] = 719, + [720] = 596, + [721] = 573, + [722] = 606, + [723] = 723, + [724] = 645, + [725] = 574, + [726] = 642, + [727] = 554, + [728] = 596, + [729] = 729, + [730] = 556, + [731] = 574, + [732] = 559, + [733] = 606, + [734] = 645, + [735] = 642, + [736] = 573, + [737] = 625, + [738] = 596, + [739] = 562, + [740] = 563, + [741] = 554, [742] = 556, - [743] = 603, - [744] = 642, - [745] = 565, - [746] = 577, - [747] = 639, - [748] = 569, - [749] = 663, - [750] = 603, - [751] = 572, - [752] = 572, - [753] = 574, - [754] = 574, - [755] = 572, - [756] = 697, - [757] = 642, - [758] = 552, - [759] = 759, - [760] = 553, - [761] = 394, + [743] = 351, + [744] = 558, + [745] = 559, + [746] = 572, + [747] = 606, + [748] = 645, + [749] = 642, + [750] = 596, + [751] = 551, + [752] = 606, + [753] = 645, + [754] = 642, + [755] = 562, + [756] = 596, + [757] = 552, + [758] = 569, + [759] = 574, + [760] = 569, + [761] = 606, [762] = 762, - [763] = 555, - [764] = 556, - [765] = 663, - [766] = 565, - [767] = 639, - [768] = 564, - [769] = 552, - [770] = 603, - [771] = 553, - [772] = 642, - [773] = 565, - [774] = 639, - [775] = 559, - [776] = 603, - [777] = 642, - [778] = 551, - [779] = 779, - [780] = 780, - [781] = 663, + [763] = 645, + [764] = 552, + [765] = 765, + [766] = 551, + [767] = 767, + [768] = 563, + [769] = 625, + [770] = 573, + [771] = 562, + [772] = 563, + [773] = 554, + [774] = 572, + [775] = 556, + [776] = 351, + [777] = 572, + [778] = 573, + [779] = 558, + [780] = 574, + [781] = 559, [782] = 782, - [783] = 577, - [784] = 569, - [785] = 564, - [786] = 565, - [787] = 394, - [788] = 639, - [789] = 663, - [790] = 603, - [791] = 572, - [792] = 574, + [783] = 642, + [784] = 551, + [785] = 596, + [786] = 606, + [787] = 645, + [788] = 642, + [789] = 596, + [790] = 606, + [791] = 645, + [792] = 552, [793] = 642, - [794] = 565, - [795] = 552, - [796] = 553, - [797] = 394, - [798] = 639, - [799] = 555, - [800] = 556, - [801] = 603, - [802] = 642, - [803] = 555, - [804] = 565, - [805] = 556, - [806] = 639, - [807] = 603, - [808] = 808, - [809] = 642, - [810] = 572, - [811] = 574, - [812] = 552, - [813] = 553, - [814] = 564, - [815] = 569, - [816] = 394, - [817] = 782, - [818] = 555, - [819] = 577, - [820] = 550, - [821] = 574, - [822] = 559, - [823] = 556, - [824] = 663, - [825] = 559, - [826] = 735, - [827] = 565, - [828] = 721, - [829] = 686, - [830] = 551, - [831] = 663, - [832] = 550, - [833] = 577, - [834] = 559, - [835] = 639, - [836] = 572, - [837] = 551, - [838] = 574, - [839] = 552, - [840] = 553, - [841] = 550, - [842] = 394, - [843] = 634, - [844] = 555, - [845] = 569, - [846] = 556, - [847] = 583, - [848] = 603, - [849] = 642, - [850] = 633, - [851] = 564, - [852] = 639, - [853] = 572, - [854] = 564, - [855] = 569, - [856] = 577, - [857] = 551, - [858] = 663, - [859] = 577, - [860] = 569, - [861] = 564, - [862] = 561, - [863] = 779, - [864] = 564, - [865] = 569, - [866] = 577, - [867] = 550, - [868] = 551, - [869] = 559, - [870] = 550, - [871] = 551, - [872] = 663, - [873] = 559, - [874] = 572, - [875] = 559, - [876] = 574, - [877] = 552, - [878] = 553, - [879] = 394, - [880] = 555, - [881] = 551, - [882] = 556, - [883] = 564, - [884] = 884, - [885] = 550, - [886] = 780, - [887] = 569, - [888] = 577, - [889] = 577, - [890] = 569, - [891] = 564, - [892] = 550, - [893] = 564, - [894] = 550, - [895] = 569, - [896] = 577, - [897] = 550, - [898] = 551, - [899] = 551, - [900] = 559, - [901] = 564, - [902] = 564, - [903] = 559, - [904] = 569, - [905] = 569, - [906] = 577, - [907] = 550, - [908] = 551, - [909] = 577, - [910] = 559, - [911] = 551, - [912] = 559, - [913] = 550, - [914] = 564, - [915] = 782, - [916] = 569, - [917] = 559, - [918] = 550, - [919] = 551, - [920] = 559, - [921] = 577, - [922] = 577, - [923] = 569, - [924] = 577, - [925] = 564, - [926] = 569, - [927] = 556, - [928] = 550, - [929] = 551, - [930] = 559, - [931] = 564, - [932] = 555, - [933] = 559, - [934] = 663, - [935] = 551, - [936] = 550, - [937] = 553, - [938] = 564, - [939] = 561, - [940] = 552, + [794] = 569, + [795] = 596, + [796] = 554, + [797] = 606, + [798] = 645, + [799] = 556, + [800] = 625, + [801] = 351, + [802] = 563, + [803] = 559, + [804] = 574, + [805] = 625, + [806] = 573, + [807] = 562, + [808] = 563, + [809] = 554, + [810] = 556, + [811] = 811, + [812] = 351, + [813] = 558, + [814] = 559, + [815] = 572, + [816] = 551, + [817] = 642, + [818] = 596, + [819] = 552, + [820] = 606, + [821] = 569, + [822] = 553, + [823] = 562, + [824] = 645, + [825] = 569, + [826] = 552, + [827] = 551, + [828] = 574, + [829] = 573, + [830] = 596, + [831] = 572, + [832] = 563, + [833] = 551, + [834] = 552, + [835] = 569, + [836] = 574, + [837] = 573, + [838] = 572, + [839] = 551, + [840] = 552, + [841] = 569, + [842] = 563, + [843] = 625, + [844] = 642, + [845] = 553, + [846] = 572, + [847] = 782, + [848] = 573, + [849] = 574, + [850] = 573, + [851] = 572, + [852] = 551, + [853] = 574, + [854] = 554, + [855] = 625, + [856] = 552, + [857] = 562, + [858] = 563, + [859] = 554, + [860] = 556, + [861] = 351, + [862] = 559, + [863] = 558, + [864] = 558, + [865] = 558, + [866] = 559, + [867] = 569, + [868] = 553, + [869] = 351, + [870] = 556, + [871] = 554, + [872] = 563, + [873] = 562, + [874] = 574, + [875] = 573, + [876] = 572, + [877] = 551, + [878] = 552, + [879] = 569, + [880] = 569, + [881] = 552, + [882] = 767, + [883] = 551, + [884] = 552, + [885] = 647, + [886] = 574, + [887] = 887, + [888] = 573, + [889] = 627, + [890] = 572, + [891] = 351, + [892] = 551, + [893] = 625, + [894] = 558, + [895] = 572, + [896] = 573, + [897] = 556, + [898] = 574, + [899] = 559, + [900] = 625, + [901] = 569, + [902] = 569, + [903] = 552, + [904] = 551, + [905] = 572, + [906] = 625, + [907] = 573, + [908] = 767, + [909] = 574, + [910] = 569, + [911] = 723, + [912] = 719, + [913] = 574, + [914] = 562, + [915] = 563, + [916] = 554, + [917] = 556, + [918] = 573, + [919] = 558, + [920] = 677, + [921] = 551, + [922] = 572, + [923] = 573, + [924] = 632, + [925] = 574, + [926] = 586, + [927] = 559, + [928] = 569, + [929] = 636, + [930] = 552, + [931] = 572, + [932] = 551, + [933] = 625, + [934] = 574, + [935] = 573, + [936] = 572, + [937] = 551, + [938] = 552, + [939] = 553, + [940] = 569, [941] = 574, - [942] = 572, + [942] = 573, [943] = 569, - [944] = 663, - [945] = 577, - [946] = 946, - [947] = 69, - [948] = 71, - [949] = 67, - [950] = 70, - [951] = 68, - [952] = 952, - [953] = 218, - [954] = 220, - [955] = 219, - [956] = 223, - [957] = 957, - [958] = 958, - [959] = 217, - [960] = 221, - [961] = 222, - [962] = 224, - [963] = 228, - [964] = 227, - [965] = 226, - [966] = 222, - [967] = 967, - [968] = 226, - [969] = 230, - [970] = 229, - [971] = 224, - [972] = 219, - [973] = 218, + [944] = 552, + [945] = 572, + [946] = 551, + [947] = 947, + [948] = 69, + [949] = 71, + [950] = 67, + [951] = 70, + [952] = 68, + [953] = 953, + [954] = 954, + [955] = 227, + [956] = 219, + [957] = 220, + [958] = 224, + [959] = 223, + [960] = 225, + [961] = 226, + [962] = 221, + [963] = 217, + [964] = 964, + [965] = 218, + [966] = 228, + [967] = 230, + [968] = 224, + [969] = 225, + [970] = 221, + [971] = 971, + [972] = 217, + [973] = 219, [974] = 974, - [975] = 228, + [975] = 223, [976] = 976, - [977] = 221, + [977] = 228, [978] = 978, - [979] = 238, - [980] = 70, - [981] = 71, - [982] = 67, - [983] = 261, - [984] = 68, - [985] = 250, - [986] = 257, - [987] = 257, - [988] = 238, - [989] = 69, - [990] = 252, - [991] = 475, - [992] = 366, - [993] = 438, - [994] = 360, - [995] = 421, - [996] = 279, - [997] = 340, - [998] = 397, - [999] = 328, - [1000] = 449, - [1001] = 381, - [1002] = 386, - [1003] = 310, - [1004] = 489, - [1005] = 484, - [1006] = 496, - [1007] = 392, - [1008] = 493, - [1009] = 482, - [1010] = 477, - [1011] = 456, - [1012] = 453, - [1013] = 396, - [1014] = 495, - [1015] = 474, - [1016] = 405, - [1017] = 442, - [1018] = 439, - [1019] = 448, - [1020] = 445, - [1021] = 443, - [1022] = 436, - [1023] = 435, - [1024] = 365, - [1025] = 363, - [1026] = 348, - [1027] = 347, - [1028] = 487, - [1029] = 486, - [1030] = 418, - [1031] = 485, - [1032] = 446, - [1033] = 415, - [1034] = 409, - [1035] = 431, - [1036] = 407, - [1037] = 358, - [1038] = 350, - [1039] = 352, - [1040] = 364, - [1041] = 371, - [1042] = 376, - [1043] = 388, - [1044] = 335, - [1045] = 391, - [1046] = 437, - [1047] = 414, - [1048] = 411, - [1049] = 462, - [1050] = 460, - [1051] = 465, - [1052] = 466, - [1053] = 473, - [1054] = 353, - [1055] = 494, - [1056] = 469, - [1057] = 468, - [1058] = 488, - [1059] = 346, - [1060] = 341, - [1061] = 324, - [1062] = 331, - [1063] = 401, - [1064] = 420, - [1065] = 408, - [1066] = 311, - [1067] = 500, - [1068] = 483, - [1069] = 400, - [1070] = 481, - [1071] = 411, - [1072] = 480, - [1073] = 440, - [1074] = 434, - [1075] = 372, - [1076] = 279, - [1077] = 353, - [1078] = 433, - [1079] = 461, - [1080] = 458, - [1081] = 457, - [1082] = 451, - [1083] = 450, - [1084] = 447, - [1085] = 429, - [1086] = 396, - [1087] = 326, - [1088] = 416, - [1089] = 426, - [1090] = 459, - [1091] = 329, - [1092] = 330, - [1093] = 422, - [1094] = 412, - [1095] = 403, - [1096] = 351, - [1097] = 71, - [1098] = 69, - [1099] = 67, - [1100] = 70, - [1101] = 1101, - [1102] = 68, - [1103] = 71, + [979] = 229, + [980] = 233, + [981] = 235, + [982] = 71, + [983] = 67, + [984] = 231, + [985] = 244, + [986] = 233, + [987] = 68, + [988] = 231, + [989] = 257, + [990] = 70, + [991] = 69, + [992] = 300, + [993] = 479, + [994] = 310, + [995] = 334, + [996] = 460, + [997] = 473, + [998] = 425, + [999] = 315, + [1000] = 435, + [1001] = 477, + [1002] = 422, + [1003] = 493, + [1004] = 427, + [1005] = 421, + [1006] = 469, + [1007] = 463, + [1008] = 452, + [1009] = 404, + [1010] = 447, + [1011] = 423, + [1012] = 317, + [1013] = 385, + [1014] = 382, + [1015] = 414, + [1016] = 361, + [1017] = 359, + [1018] = 433, + [1019] = 357, + [1020] = 415, + [1021] = 340, + [1022] = 335, + [1023] = 318, + [1024] = 393, + [1025] = 395, + [1026] = 457, + [1027] = 476, + [1028] = 462, + [1029] = 418, + [1030] = 388, + [1031] = 364, + [1032] = 380, + [1033] = 443, + [1034] = 491, + [1035] = 490, + [1036] = 446, + [1037] = 332, + [1038] = 487, + [1039] = 381, + [1040] = 488, + [1041] = 332, + [1042] = 419, + [1043] = 403, + [1044] = 386, + [1045] = 309, + [1046] = 417, + [1047] = 500, + [1048] = 503, + [1049] = 350, + [1050] = 320, + [1051] = 412, + [1052] = 416, + [1053] = 312, + [1054] = 483, + [1055] = 484, + [1056] = 328, + [1057] = 412, + [1058] = 409, + [1059] = 471, + [1060] = 450, + [1061] = 486, + [1062] = 464, + [1063] = 461, + [1064] = 356, + [1065] = 413, + [1066] = 387, + [1067] = 300, + [1068] = 360, + [1069] = 465, + [1070] = 472, + [1071] = 442, + [1072] = 342, + [1073] = 371, + [1074] = 374, + [1075] = 376, + [1076] = 377, + [1077] = 342, + [1078] = 455, + [1079] = 499, + [1080] = 410, + [1081] = 428, + [1082] = 495, + [1083] = 344, + [1084] = 429, + [1085] = 467, + [1086] = 401, + [1087] = 345, + [1088] = 399, + [1089] = 454, + [1090] = 431, + [1091] = 501, + [1092] = 426, + [1093] = 481, + [1094] = 489, + [1095] = 498, + [1096] = 362, + [1097] = 453, + [1098] = 70, + [1099] = 69, + [1100] = 68, + [1101] = 71, + [1102] = 1102, + [1103] = 68, [1104] = 69, - [1105] = 67, - [1106] = 227, - [1107] = 219, - [1108] = 222, - [1109] = 224, - [1110] = 226, - [1111] = 70, - [1112] = 217, + [1105] = 70, + [1106] = 67, + [1107] = 228, + [1108] = 217, + [1109] = 218, + [1110] = 71, + [1111] = 221, + [1112] = 226, [1113] = 220, - [1114] = 221, - [1115] = 218, - [1116] = 228, - [1117] = 1117, - [1118] = 67, - [1119] = 69, - [1120] = 68, - [1121] = 1121, - [1122] = 71, - [1123] = 229, - [1124] = 230, + [1114] = 225, + [1115] = 224, + [1116] = 223, + [1117] = 219, + [1118] = 1118, + [1119] = 229, + [1120] = 70, + [1121] = 67, + [1122] = 69, + [1123] = 68, + [1124] = 227, [1125] = 1125, - [1126] = 223, - [1127] = 257, - [1128] = 238, - [1129] = 1129, - [1130] = 261, - [1131] = 257, - [1132] = 250, - [1133] = 1133, - [1134] = 396, - [1135] = 252, - [1136] = 238, - [1137] = 392, - [1138] = 348, - [1139] = 391, - [1140] = 439, - [1141] = 442, - [1142] = 310, - [1143] = 414, - [1144] = 462, - [1145] = 489, - [1146] = 495, - [1147] = 496, - [1148] = 493, - [1149] = 482, - [1150] = 477, - [1151] = 465, - [1152] = 475, - [1153] = 466, - [1154] = 484, - [1155] = 473, - [1156] = 456, - [1157] = 70, - [1158] = 335, - [1159] = 443, - [1160] = 436, - [1161] = 435, - [1162] = 431, - [1163] = 494, - [1164] = 340, - [1165] = 421, - [1166] = 401, - [1167] = 400, - [1168] = 469, - [1169] = 468, - [1170] = 376, - [1171] = 366, - [1172] = 371, - [1173] = 396, - [1174] = 459, - [1175] = 411, - [1176] = 364, - [1177] = 388, - [1178] = 352, - [1179] = 311, - [1180] = 350, - [1181] = 437, - [1182] = 487, - [1183] = 420, - [1184] = 346, - [1185] = 1185, - [1186] = 453, - [1187] = 358, - [1188] = 360, - [1189] = 341, - [1190] = 386, - [1191] = 426, - [1192] = 331, - [1193] = 500, - [1194] = 407, - [1195] = 324, - [1196] = 328, - [1197] = 68, - [1198] = 409, - [1199] = 438, - [1200] = 1185, - [1201] = 397, - [1202] = 460, - [1203] = 68, - [1204] = 415, - [1205] = 67, - [1206] = 71, - [1207] = 446, - [1208] = 381, - [1209] = 429, - [1210] = 372, - [1211] = 445, - [1212] = 447, - [1213] = 279, - [1214] = 326, - [1215] = 474, - [1216] = 69, - [1217] = 418, - [1218] = 330, - [1219] = 67, - [1220] = 448, - [1221] = 483, - [1222] = 69, - [1223] = 71, - [1224] = 353, - [1225] = 351, - [1226] = 440, - [1227] = 434, - [1228] = 433, - [1229] = 416, - [1230] = 450, - [1231] = 451, - [1232] = 457, - [1233] = 488, - [1234] = 412, - [1235] = 408, - [1236] = 1236, - [1237] = 485, - [1238] = 481, - [1239] = 70, - [1240] = 486, - [1241] = 422, - [1242] = 480, - [1243] = 449, - [1244] = 405, - [1245] = 347, - [1246] = 365, - [1247] = 458, - [1248] = 363, + [1126] = 1126, + [1127] = 230, + [1128] = 1128, + [1129] = 235, + [1130] = 233, + [1131] = 231, + [1132] = 244, + [1133] = 332, + [1134] = 231, + [1135] = 233, + [1136] = 257, + [1137] = 1137, + [1138] = 493, + [1139] = 332, + [1140] = 476, + [1141] = 457, + [1142] = 404, + [1143] = 350, + [1144] = 427, + [1145] = 310, + [1146] = 320, + [1147] = 418, + [1148] = 450, + [1149] = 453, + [1150] = 412, + [1151] = 309, + [1152] = 454, + [1153] = 498, + [1154] = 1154, + [1155] = 409, + [1156] = 489, + [1157] = 481, + [1158] = 460, + [1159] = 318, + [1160] = 461, + [1161] = 413, + [1162] = 464, + [1163] = 419, + [1164] = 403, + [1165] = 483, + [1166] = 421, + [1167] = 414, + [1168] = 422, + [1169] = 484, + [1170] = 486, + [1171] = 71, + [1172] = 315, + [1173] = 462, + [1174] = 362, + [1175] = 312, + [1176] = 328, + [1177] = 415, + [1178] = 443, + [1179] = 425, + [1180] = 503, + [1181] = 446, + [1182] = 431, + [1183] = 344, + [1184] = 334, + [1185] = 473, + [1186] = 491, + [1187] = 477, + [1188] = 67, + [1189] = 487, + [1190] = 488, + [1191] = 490, + [1192] = 416, + [1193] = 317, + [1194] = 469, + [1195] = 68, + [1196] = 69, + [1197] = 70, + [1198] = 463, + [1199] = 452, + [1200] = 429, + [1201] = 479, + [1202] = 71, + [1203] = 465, + [1204] = 447, + [1205] = 423, + [1206] = 385, + [1207] = 356, + [1208] = 360, + [1209] = 455, + [1210] = 401, + [1211] = 399, + [1212] = 395, + [1213] = 500, + [1214] = 387, + [1215] = 361, + [1216] = 359, + [1217] = 442, + [1218] = 357, + [1219] = 433, + [1220] = 1154, + [1221] = 340, + [1222] = 71, + [1223] = 435, + [1224] = 335, + [1225] = 388, + [1226] = 501, + [1227] = 428, + [1228] = 364, + [1229] = 410, + [1230] = 342, + [1231] = 380, + [1232] = 381, + [1233] = 393, + [1234] = 386, + [1235] = 417, + [1236] = 471, + [1237] = 382, + [1238] = 472, + [1239] = 426, + [1240] = 499, + [1241] = 300, + [1242] = 371, + [1243] = 495, + [1244] = 467, + [1245] = 374, + [1246] = 345, + [1247] = 68, + [1248] = 69, [1249] = 70, - [1250] = 403, - [1251] = 461, - [1252] = 329, - [1253] = 220, - [1254] = 353, - [1255] = 217, - [1256] = 68, - [1257] = 227, - [1258] = 1258, - [1259] = 1258, - [1260] = 229, - [1261] = 230, - [1262] = 450, - [1263] = 482, - [1264] = 222, - [1265] = 224, - [1266] = 226, + [1250] = 67, + [1251] = 376, + [1252] = 1252, + [1253] = 377, + [1254] = 220, + [1255] = 342, + [1256] = 226, + [1257] = 67, + [1258] = 218, + [1259] = 1259, + [1260] = 1259, + [1261] = 229, + [1262] = 230, + [1263] = 257, + [1264] = 428, + [1265] = 454, + [1266] = 453, [1267] = 228, - [1268] = 1268, - [1269] = 261, - [1270] = 447, + [1268] = 450, + [1269] = 235, + [1270] = 233, [1271] = 219, - [1272] = 451, - [1273] = 228, - [1274] = 221, - [1275] = 477, - [1276] = 226, - [1277] = 218, - [1278] = 252, - [1279] = 396, - [1280] = 238, - [1281] = 224, + [1272] = 223, + [1273] = 1273, + [1274] = 224, + [1275] = 231, + [1276] = 231, + [1277] = 410, + [1278] = 217, + [1279] = 429, + [1280] = 225, + [1281] = 228, [1282] = 221, - [1283] = 493, - [1284] = 222, - [1285] = 218, - [1286] = 496, - [1287] = 250, - [1288] = 238, - [1289] = 257, - [1290] = 219, - [1291] = 257, - [1292] = 371, - [1293] = 435, - [1294] = 1294, - [1295] = 405, - [1296] = 408, - [1297] = 412, - [1298] = 469, - [1299] = 468, - [1300] = 366, - [1301] = 311, - [1302] = 416, - [1303] = 433, - [1304] = 434, - [1305] = 440, - [1306] = 324, - [1307] = 474, - [1308] = 495, - [1309] = 460, - [1310] = 488, - [1311] = 397, - [1312] = 442, - [1313] = 439, - [1314] = 438, - [1315] = 360, - [1316] = 331, - [1317] = 341, - [1318] = 346, - [1319] = 340, - [1320] = 421, - [1321] = 473, - [1322] = 335, - [1323] = 1323, - [1324] = 329, - [1325] = 466, - [1326] = 459, - [1327] = 420, - [1328] = 494, - [1329] = 449, - [1330] = 487, - [1331] = 500, - [1332] = 465, - [1333] = 328, - [1334] = 437, - [1335] = 462, - [1336] = 422, + [1283] = 233, + [1284] = 225, + [1285] = 217, + [1286] = 223, + [1287] = 219, + [1288] = 244, + [1289] = 224, + [1290] = 221, + [1291] = 479, + [1292] = 332, + [1293] = 387, + [1294] = 376, + [1295] = 362, + [1296] = 473, + [1297] = 334, + [1298] = 393, + [1299] = 344, + [1300] = 490, + [1301] = 491, + [1302] = 426, + [1303] = 388, + [1304] = 493, + [1305] = 469, + [1306] = 503, + [1307] = 403, + [1308] = 501, + [1309] = 409, + [1310] = 413, + [1311] = 414, + [1312] = 415, + [1313] = 416, + [1314] = 455, + [1315] = 419, + [1316] = 442, + [1317] = 500, + [1318] = 401, + [1319] = 399, + [1320] = 395, + [1321] = 486, + [1322] = 386, + [1323] = 381, + [1324] = 380, + [1325] = 317, + [1326] = 364, + [1327] = 465, + [1328] = 335, + [1329] = 418, + [1330] = 342, + [1331] = 488, + [1332] = 457, + [1333] = 340, + [1334] = 471, + [1335] = 484, + [1336] = 350, [1337] = 483, - [1338] = 381, - [1339] = 386, - [1340] = 392, - [1341] = 481, - [1342] = 480, - [1343] = 414, - [1344] = 391, - [1345] = 388, - [1346] = 353, - [1347] = 376, - [1348] = 396, - [1349] = 461, - [1350] = 458, - [1351] = 443, - [1352] = 436, - [1353] = 453, - [1354] = 431, - [1355] = 457, - [1356] = 364, - [1357] = 445, - [1358] = 401, - [1359] = 400, - [1360] = 448, - [1361] = 352, - [1362] = 372, - [1363] = 310, - [1364] = 489, - [1365] = 326, - [1366] = 429, - [1367] = 330, - [1368] = 456, - [1369] = 365, - [1370] = 351, - [1371] = 363, - [1372] = 348, - [1373] = 484, - [1374] = 347, - [1375] = 486, - [1376] = 485, - [1377] = 475, - [1378] = 446, - [1379] = 415, - [1380] = 409, - [1381] = 407, - [1382] = 403, - [1383] = 358, - [1384] = 350, - [1385] = 418, - [1386] = 426, - [1387] = 1387, - [1388] = 1388, - [1389] = 70, - [1390] = 411, - [1391] = 279, - [1392] = 68, - [1393] = 1393, - [1394] = 1394, - [1395] = 411, - [1396] = 279, - [1397] = 67, - [1398] = 71, - [1399] = 69, - [1400] = 67, - [1401] = 71, - [1402] = 252, + [1338] = 476, + [1339] = 421, + [1340] = 1340, + [1341] = 498, + [1342] = 489, + [1343] = 481, + [1344] = 422, + [1345] = 357, + [1346] = 472, + [1347] = 359, + [1348] = 499, + [1349] = 464, + [1350] = 461, + [1351] = 315, + [1352] = 425, + [1353] = 460, + [1354] = 377, + [1355] = 417, + [1356] = 374, + [1357] = 371, + [1358] = 487, + [1359] = 431, + [1360] = 477, + [1361] = 360, + [1362] = 356, + [1363] = 433, + [1364] = 435, + [1365] = 328, + [1366] = 495, + [1367] = 467, + [1368] = 312, + [1369] = 1369, + [1370] = 320, + [1371] = 361, + [1372] = 382, + [1373] = 309, + [1374] = 385, + [1375] = 423, + [1376] = 310, + [1377] = 447, + [1378] = 427, + [1379] = 452, + [1380] = 462, + [1381] = 463, + [1382] = 443, + [1383] = 446, + [1384] = 345, + [1385] = 404, + [1386] = 332, + [1387] = 318, + [1388] = 300, + [1389] = 412, + [1390] = 1390, + [1391] = 71, + [1392] = 1392, + [1393] = 68, + [1394] = 70, + [1395] = 67, + [1396] = 300, + [1397] = 1397, + [1398] = 69, + [1399] = 1399, + [1400] = 412, + [1401] = 244, + [1402] = 70, [1403] = 69, - [1404] = 1404, + [1404] = 68, [1405] = 1405, [1406] = 1406, - [1407] = 70, - [1408] = 474, - [1409] = 1409, + [1407] = 1407, + [1408] = 462, + [1409] = 71, [1410] = 1410, - [1411] = 1411, - [1412] = 1412, - [1413] = 460, - [1414] = 396, - [1415] = 70, + [1411] = 71, + [1412] = 332, + [1413] = 1413, + [1414] = 1414, + [1415] = 443, [1416] = 1416, - [1417] = 459, - [1418] = 445, - [1419] = 448, - [1420] = 67, - [1421] = 453, - [1422] = 69, - [1423] = 1423, + [1417] = 1417, + [1418] = 501, + [1419] = 1419, + [1420] = 1420, + [1421] = 1421, + [1422] = 1422, + [1423] = 67, [1424] = 1424, - [1425] = 456, - [1426] = 71, + [1425] = 1425, + [1426] = 1426, [1427] = 1427, [1428] = 1428, - [1429] = 475, - [1430] = 484, - [1431] = 489, - [1432] = 310, + [1429] = 1429, + [1430] = 1430, + [1431] = 1431, + [1432] = 1432, [1433] = 1433, [1434] = 1434, [1435] = 1435, [1436] = 1436, [1437] = 1437, [1438] = 1438, - [1439] = 68, + [1439] = 1439, [1440] = 1440, [1441] = 1441, [1442] = 1442, [1443] = 1443, - [1444] = 1444, - [1445] = 397, - [1446] = 1446, - [1447] = 488, - [1448] = 487, - [1449] = 440, + [1444] = 387, + [1445] = 388, + [1446] = 442, + [1447] = 500, + [1448] = 421, + [1449] = 419, [1450] = 1450, - [1451] = 1451, - [1452] = 434, - [1453] = 433, - [1454] = 416, - [1455] = 412, - [1456] = 408, - [1457] = 405, - [1458] = 1458, - [1459] = 449, - [1460] = 1460, - [1461] = 1461, - [1462] = 1462, - [1463] = 1463, - [1464] = 1464, - [1465] = 1465, - [1466] = 329, - [1467] = 324, - [1468] = 331, - [1469] = 420, - [1470] = 360, - [1471] = 335, - [1472] = 1472, - [1473] = 1473, - [1474] = 340, - [1475] = 1475, - [1476] = 341, - [1477] = 346, - [1478] = 1478, + [1451] = 418, + [1452] = 488, + [1453] = 416, + [1454] = 68, + [1455] = 69, + [1456] = 1456, + [1457] = 1457, + [1458] = 487, + [1459] = 70, + [1460] = 465, + [1461] = 415, + [1462] = 476, + [1463] = 457, + [1464] = 446, + [1465] = 414, + [1466] = 413, + [1467] = 409, + [1468] = 403, + [1469] = 1469, + [1470] = 435, + [1471] = 433, + [1472] = 431, + [1473] = 425, + [1474] = 315, + [1475] = 422, + [1476] = 426, + [1477] = 490, + [1478] = 491, [1479] = 1479, [1480] = 1480, [1481] = 1481, @@ -4906,9 +4916,9 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [1491] = 1491, [1492] = 1492, [1493] = 1493, - [1494] = 1494, - [1495] = 238, - [1496] = 68, + [1494] = 67, + [1495] = 1495, + [1496] = 1496, [1497] = 1497, [1498] = 1498, [1499] = 1499, @@ -4917,7 +4927,7 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [1502] = 1502, [1503] = 1503, [1504] = 1504, - [1505] = 388, + [1505] = 1505, [1506] = 1506, [1507] = 1507, [1508] = 1508, @@ -4927,7 +4937,7 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [1512] = 1512, [1513] = 1513, [1514] = 1514, - [1515] = 1515, + [1515] = 233, [1516] = 1516, [1517] = 1517, [1518] = 1518, @@ -4939,14 +4949,14 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [1524] = 1524, [1525] = 1525, [1526] = 1526, - [1527] = 1527, - [1528] = 70, - [1529] = 1529, + [1527] = 231, + [1528] = 1528, + [1529] = 382, [1530] = 1530, [1531] = 1531, [1532] = 1532, [1533] = 1533, - [1534] = 1534, + [1534] = 71, [1535] = 1535, [1536] = 1536, [1537] = 1537, @@ -4974,7 +4984,7 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [1559] = 1559, [1560] = 1560, [1561] = 1561, - [1562] = 257, + [1562] = 1562, [1563] = 1563, [1564] = 1564, [1565] = 1565, @@ -4986,1817 +4996,1817 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [1571] = 1571, [1572] = 1572, [1573] = 1573, - [1574] = 68, - [1575] = 71, - [1576] = 69, - [1577] = 67, - [1578] = 1578, - [1579] = 70, - [1580] = 1580, - [1581] = 68, + [1574] = 1574, + [1575] = 69, + [1576] = 70, + [1577] = 1577, + [1578] = 68, + [1579] = 67, + [1580] = 71, + [1581] = 1581, [1582] = 1582, [1583] = 1583, [1584] = 1584, - [1585] = 68, + [1585] = 67, [1586] = 1586, - [1587] = 1587, - [1588] = 487, - [1589] = 341, - [1590] = 331, - [1591] = 324, - [1592] = 346, - [1593] = 487, - [1594] = 331, - [1595] = 324, - [1596] = 341, - [1597] = 346, - [1598] = 487, - [1599] = 324, - [1600] = 487, - [1601] = 1601, - [1602] = 324, - [1603] = 346, - [1604] = 331, - [1605] = 346, - [1606] = 341, - [1607] = 341, - [1608] = 331, - [1609] = 213, + [1587] = 67, + [1588] = 1588, + [1589] = 476, + [1590] = 491, + [1591] = 490, + [1592] = 419, + [1593] = 457, + [1594] = 419, + [1595] = 457, + [1596] = 476, + [1597] = 490, + [1598] = 491, + [1599] = 457, + [1600] = 476, + [1601] = 491, + [1602] = 490, + [1603] = 419, + [1604] = 419, + [1605] = 1605, + [1606] = 490, + [1607] = 491, + [1608] = 476, + [1609] = 457, [1610] = 228, - [1611] = 227, - [1612] = 226, - [1613] = 225, - [1614] = 224, - [1615] = 222, - [1616] = 220, - [1617] = 218, - [1618] = 219, - [1619] = 221, - [1620] = 217, - [1621] = 238, - [1622] = 216, - [1623] = 257, + [1611] = 223, + [1612] = 216, + [1613] = 221, + [1614] = 217, + [1615] = 220, + [1616] = 218, + [1617] = 224, + [1618] = 225, + [1619] = 219, + [1620] = 226, + [1621] = 222, + [1622] = 231, + [1623] = 233, [1624] = 229, [1625] = 230, - [1626] = 433, - [1627] = 224, - [1628] = 420, - [1629] = 448, - [1630] = 261, - [1631] = 250, - [1632] = 416, - [1633] = 434, - [1634] = 411, - [1635] = 445, - [1636] = 252, - [1637] = 475, - [1638] = 218, - [1639] = 453, - [1640] = 440, - [1641] = 228, - [1642] = 488, - [1643] = 223, - [1644] = 456, - [1645] = 329, - [1646] = 360, - [1647] = 279, - [1648] = 1648, - [1649] = 310, - [1650] = 240, - [1651] = 405, - [1652] = 408, - [1653] = 1653, - [1654] = 240, - [1655] = 222, - [1656] = 1648, - [1657] = 489, - [1658] = 227, - [1659] = 217, - [1660] = 484, - [1661] = 226, - [1662] = 335, - [1663] = 412, - [1664] = 221, - [1665] = 219, - [1666] = 220, - [1667] = 340, - [1668] = 396, - [1669] = 481, - [1670] = 494, - [1671] = 366, - [1672] = 257, - [1673] = 396, - [1674] = 437, - [1675] = 401, - [1676] = 431, - [1677] = 438, - [1678] = 422, - [1679] = 365, - [1680] = 421, - [1681] = 279, - [1682] = 363, - [1683] = 348, - [1684] = 439, - [1685] = 347, - [1686] = 435, - [1687] = 474, - [1688] = 436, - [1689] = 400, - [1690] = 372, - [1691] = 443, - [1692] = 442, - [1693] = 449, - [1694] = 486, - [1695] = 418, - [1696] = 485, - [1697] = 279, - [1698] = 495, - [1699] = 446, - [1700] = 415, - [1701] = 409, - [1702] = 328, - [1703] = 407, - [1704] = 358, - [1705] = 496, - [1706] = 350, - [1707] = 352, - [1708] = 353, - [1709] = 364, - [1710] = 371, - [1711] = 376, - [1712] = 388, - [1713] = 326, - [1714] = 391, - [1715] = 414, - [1716] = 381, - [1717] = 386, - [1718] = 462, - [1719] = 392, - [1720] = 465, - [1721] = 466, - [1722] = 397, - [1723] = 473, - [1724] = 238, - [1725] = 469, - [1726] = 353, - [1727] = 468, - [1728] = 330, - [1729] = 477, - [1730] = 351, - [1731] = 447, - [1732] = 311, - [1733] = 500, - [1734] = 230, - [1735] = 459, - [1736] = 483, - [1737] = 480, - [1738] = 461, - [1739] = 403, - [1740] = 458, - [1741] = 426, - [1742] = 460, - [1743] = 457, - [1744] = 451, - [1745] = 493, - [1746] = 229, - [1747] = 429, - [1748] = 450, - [1749] = 482, - [1750] = 221, - [1751] = 219, - [1752] = 279, - [1753] = 220, - [1754] = 252, + [1626] = 210, + [1627] = 413, + [1628] = 223, + [1629] = 412, + [1630] = 1630, + [1631] = 244, + [1632] = 227, + [1633] = 431, + [1634] = 409, + [1635] = 433, + [1636] = 1630, + [1637] = 435, + [1638] = 422, + [1639] = 315, + [1640] = 421, + [1641] = 446, + [1642] = 487, + [1643] = 500, + [1644] = 257, + [1645] = 225, + [1646] = 224, + [1647] = 387, + [1648] = 235, + [1649] = 219, + [1650] = 217, + [1651] = 248, + [1652] = 425, + [1653] = 248, + [1654] = 220, + [1655] = 418, + [1656] = 226, + [1657] = 228, + [1658] = 221, + [1659] = 218, + [1660] = 300, + [1661] = 332, + [1662] = 403, + [1663] = 1663, + [1664] = 416, + [1665] = 415, + [1666] = 488, + [1667] = 388, + [1668] = 414, + [1669] = 501, + [1670] = 318, + [1671] = 229, + [1672] = 443, + [1673] = 342, + [1674] = 404, + [1675] = 357, + [1676] = 442, + [1677] = 465, + [1678] = 484, + [1679] = 426, + [1680] = 486, + [1681] = 477, + [1682] = 340, + [1683] = 335, + [1684] = 410, + [1685] = 364, + [1686] = 380, + [1687] = 233, + [1688] = 312, + [1689] = 320, + [1690] = 428, + [1691] = 342, + [1692] = 481, + [1693] = 377, + [1694] = 300, + [1695] = 381, + [1696] = 376, + [1697] = 309, + [1698] = 334, + [1699] = 386, + [1700] = 231, + [1701] = 473, + [1702] = 503, + [1703] = 361, + [1704] = 427, + [1705] = 489, + [1706] = 310, + [1707] = 332, + [1708] = 362, + [1709] = 498, + [1710] = 350, + [1711] = 374, + [1712] = 469, + [1713] = 417, + [1714] = 471, + [1715] = 472, + [1716] = 499, + [1717] = 495, + [1718] = 467, + [1719] = 345, + [1720] = 429, + [1721] = 463, + [1722] = 328, + [1723] = 300, + [1724] = 230, + [1725] = 493, + [1726] = 359, + [1727] = 356, + [1728] = 450, + [1729] = 382, + [1730] = 385, + [1731] = 462, + [1732] = 453, + [1733] = 479, + [1734] = 423, + [1735] = 454, + [1736] = 447, + [1737] = 460, + [1738] = 455, + [1739] = 360, + [1740] = 317, + [1741] = 452, + [1742] = 461, + [1743] = 344, + [1744] = 371, + [1745] = 393, + [1746] = 395, + [1747] = 401, + [1748] = 464, + [1749] = 399, + [1750] = 483, + [1751] = 244, + [1752] = 226, + [1753] = 228, + [1754] = 221, [1755] = 218, - [1756] = 216, - [1757] = 1757, - [1758] = 220, - [1759] = 261, - [1760] = 250, - [1761] = 219, - [1762] = 221, - [1763] = 227, - [1764] = 217, - [1765] = 216, - [1766] = 217, - [1767] = 218, - [1768] = 396, - [1769] = 222, - [1770] = 224, - [1771] = 222, - [1772] = 224, - [1773] = 226, - [1774] = 227, - [1775] = 228, - [1776] = 411, + [1756] = 235, + [1757] = 300, + [1758] = 217, + [1759] = 219, + [1760] = 223, + [1761] = 224, + [1762] = 1762, + [1763] = 225, + [1764] = 218, + [1765] = 210, + [1766] = 210, + [1767] = 221, + [1768] = 220, + [1769] = 228, + [1770] = 225, + [1771] = 224, + [1772] = 223, + [1773] = 219, + [1774] = 220, + [1775] = 217, + [1776] = 332, [1777] = 226, - [1778] = 228, - [1779] = 405, - [1780] = 224, - [1781] = 257, - [1782] = 437, - [1783] = 429, - [1784] = 447, - [1785] = 450, - [1786] = 451, - [1787] = 457, - [1788] = 458, - [1789] = 353, - [1790] = 386, - [1791] = 448, - [1792] = 426, - [1793] = 453, - [1794] = 456, - [1795] = 480, - [1796] = 481, - [1797] = 475, - [1798] = 484, - [1799] = 483, - [1800] = 229, - [1801] = 489, - [1802] = 381, - [1803] = 500, - [1804] = 346, - [1805] = 310, - [1806] = 403, - [1807] = 230, - [1808] = 341, - [1809] = 311, - [1810] = 366, - [1811] = 228, - [1812] = 397, - [1813] = 351, - [1814] = 488, - [1815] = 487, - [1816] = 440, - [1817] = 434, - [1818] = 433, - [1819] = 416, - [1820] = 468, - [1821] = 330, - [1822] = 469, - [1823] = 412, - [1824] = 408, - [1825] = 494, - [1826] = 473, - [1827] = 229, - [1828] = 466, - [1829] = 230, - [1830] = 465, - [1831] = 392, - [1832] = 462, - [1833] = 414, - [1834] = 391, - [1835] = 376, - [1836] = 371, - [1837] = 418, - [1838] = 388, - [1839] = 257, - [1840] = 364, - [1841] = 326, - [1842] = 226, - [1843] = 352, - [1844] = 445, - [1845] = 350, - [1846] = 372, - [1847] = 400, - [1848] = 474, - [1849] = 401, - [1850] = 328, - [1851] = 353, - [1852] = 460, - [1853] = 360, - [1854] = 431, - [1855] = 396, - [1856] = 1856, - [1857] = 461, - [1858] = 340, - [1859] = 335, - [1860] = 221, - [1861] = 222, - [1862] = 238, - [1863] = 219, - [1864] = 493, - [1865] = 329, - [1866] = 459, - [1867] = 482, - [1868] = 420, - [1869] = 331, - [1870] = 324, - [1871] = 358, - [1872] = 407, - [1873] = 223, - [1874] = 218, - [1875] = 409, - [1876] = 415, - [1877] = 223, - [1878] = 435, - [1879] = 436, - [1880] = 449, - [1881] = 421, - [1882] = 496, - [1883] = 446, - [1884] = 485, - [1885] = 486, - [1886] = 238, - [1887] = 347, - [1888] = 348, - [1889] = 495, - [1890] = 363, - [1891] = 442, - [1892] = 365, - [1893] = 439, - [1894] = 443, - [1895] = 438, - [1896] = 422, - [1897] = 477, - [1898] = 223, - [1899] = 223, - [1900] = 250, - [1901] = 223, - [1902] = 1902, + [1778] = 257, + [1779] = 412, + [1780] = 362, + [1781] = 491, + [1782] = 495, + [1783] = 426, + [1784] = 467, + [1785] = 345, + [1786] = 501, + [1787] = 442, + [1788] = 500, + [1789] = 488, + [1790] = 487, + [1791] = 357, + [1792] = 479, + [1793] = 332, + [1794] = 446, + [1795] = 443, + [1796] = 342, + [1797] = 455, + [1798] = 462, + [1799] = 401, + [1800] = 399, + [1801] = 395, + [1802] = 472, + [1803] = 317, + [1804] = 471, + [1805] = 417, + [1806] = 435, + [1807] = 386, + [1808] = 381, + [1809] = 433, + [1810] = 380, + [1811] = 431, + [1812] = 425, + [1813] = 315, + [1814] = 422, + [1815] = 421, + [1816] = 418, + [1817] = 350, + [1818] = 465, + [1819] = 364, + [1820] = 490, + [1821] = 498, + [1822] = 489, + [1823] = 481, + [1824] = 416, + [1825] = 415, + [1826] = 414, + [1827] = 413, + [1828] = 429, + [1829] = 428, + [1830] = 359, + [1831] = 230, + [1832] = 229, + [1833] = 410, + [1834] = 409, + [1835] = 377, + [1836] = 342, + [1837] = 376, + [1838] = 403, + [1839] = 374, + [1840] = 371, + [1841] = 388, + [1842] = 387, + [1843] = 361, + [1844] = 393, + [1845] = 499, + [1846] = 360, + [1847] = 217, + [1848] = 219, + [1849] = 356, + [1850] = 223, + [1851] = 224, + [1852] = 328, + [1853] = 225, + [1854] = 335, + [1855] = 229, + [1856] = 340, + [1857] = 227, + [1858] = 312, + [1859] = 320, + [1860] = 419, + [1861] = 309, + [1862] = 404, + [1863] = 230, + [1864] = 227, + [1865] = 427, + [1866] = 310, + [1867] = 450, + [1868] = 453, + [1869] = 454, + [1870] = 231, + [1871] = 460, + [1872] = 1872, + [1873] = 461, + [1874] = 385, + [1875] = 228, + [1876] = 464, + [1877] = 221, + [1878] = 483, + [1879] = 484, + [1880] = 486, + [1881] = 503, + [1882] = 457, + [1883] = 476, + [1884] = 231, + [1885] = 344, + [1886] = 382, + [1887] = 334, + [1888] = 473, + [1889] = 477, + [1890] = 493, + [1891] = 469, + [1892] = 423, + [1893] = 463, + [1894] = 318, + [1895] = 233, + [1896] = 452, + [1897] = 447, + [1898] = 233, + [1899] = 244, + [1900] = 227, + [1901] = 257, + [1902] = 227, [1903] = 1903, [1904] = 1904, - [1905] = 261, - [1906] = 261, - [1907] = 958, - [1908] = 252, - [1909] = 250, - [1910] = 252, - [1911] = 279, - [1912] = 437, - [1913] = 489, - [1914] = 437, - [1915] = 484, - [1916] = 475, - [1917] = 434, - [1918] = 440, - [1919] = 462, - [1920] = 414, - [1921] = 347, - [1922] = 488, - [1923] = 408, - [1924] = 456, - [1925] = 412, - [1926] = 453, - [1927] = 416, - [1928] = 422, - [1929] = 448, - [1930] = 445, - [1931] = 397, - [1932] = 433, - [1933] = 363, - [1934] = 348, - [1935] = 405, - [1936] = 449, - [1937] = 486, - [1938] = 485, - [1939] = 446, - [1940] = 415, - [1941] = 409, - [1942] = 407, - [1943] = 420, - [1944] = 350, - [1945] = 352, - [1946] = 459, - [1947] = 469, - [1948] = 329, - [1949] = 391, - [1950] = 414, - [1951] = 462, - [1952] = 465, - [1953] = 466, - [1954] = 335, - [1955] = 340, - [1956] = 469, - [1957] = 468, - [1958] = 474, - [1959] = 460, - [1960] = 360, - [1961] = 411, - [1962] = 360, - [1963] = 500, - [1964] = 460, - [1965] = 474, - [1966] = 340, - [1967] = 335, - [1968] = 388, - [1969] = 329, - [1970] = 459, - [1971] = 420, - [1972] = 429, - [1973] = 449, - [1974] = 426, - [1975] = 365, - [1976] = 405, - [1977] = 408, - [1978] = 412, - [1979] = 416, - [1980] = 433, - [1981] = 434, - [1982] = 440, - [1983] = 488, - [1984] = 418, - [1985] = 326, - [1986] = 372, - [1987] = 397, - [1988] = 353, - [1989] = 310, - [1990] = 489, - [1991] = 484, - [1992] = 475, - [1993] = 392, - [1994] = 386, - [1995] = 381, - [1996] = 456, - [1997] = 358, - [1998] = 453, - [1999] = 396, - [2000] = 279, - [2001] = 2001, - [2002] = 448, - [2003] = 445, - [2004] = 438, - [2005] = 442, - [2006] = 494, - [2007] = 353, - [2008] = 310, - [2009] = 473, - [2010] = 391, - [2011] = 494, - [2012] = 388, - [2013] = 473, - [2014] = 466, - [2015] = 366, - [2016] = 311, - [2017] = 411, - [2018] = 376, - [2019] = 353, - [2020] = 371, - [2021] = 279, - [2022] = 396, - [2023] = 396, - [2024] = 364, - [2025] = 396, - [2026] = 496, - [2027] = 495, - [2028] = 376, - [2029] = 422, - [2030] = 418, - [2031] = 366, - [2032] = 439, - [2033] = 352, - [2034] = 2034, - [2035] = 350, - [2036] = 483, - [2037] = 468, - [2038] = 481, - [2039] = 421, - [2040] = 480, - [2041] = 496, - [2042] = 353, - [2043] = 495, - [2044] = 442, - [2045] = 439, - [2046] = 438, - [2047] = 421, - [2048] = 328, - [2049] = 381, - [2050] = 386, - [2051] = 392, - [2052] = 328, - [2053] = 358, - [2054] = 407, - [2055] = 493, - [2056] = 482, - [2057] = 409, - [2058] = 477, - [2059] = 443, - [2060] = 436, - [2061] = 435, - [2062] = 396, - [2063] = 431, - [2064] = 493, - [2065] = 482, - [2066] = 477, - [2067] = 401, - [2068] = 400, - [2069] = 372, - [2070] = 443, - [2071] = 436, - [2072] = 435, - [2073] = 431, - [2074] = 326, - [2075] = 351, - [2076] = 330, - [2077] = 401, - [2078] = 400, - [2079] = 403, - [2080] = 426, - [2081] = 415, - [2082] = 429, - [2083] = 447, - [2084] = 450, - [2085] = 330, - [2086] = 451, - [2087] = 457, - [2088] = 351, - [2089] = 458, - [2090] = 365, - [2091] = 363, - [2092] = 348, - [2093] = 347, - [2094] = 461, - [2095] = 486, - [2096] = 485, - [2097] = 446, - [2098] = 480, - [2099] = 403, - [2100] = 481, - [2101] = 483, - [2102] = 500, - [2103] = 411, - [2104] = 311, - [2105] = 371, - [2106] = 465, - [2107] = 364, - [2108] = 447, - [2109] = 450, - [2110] = 451, - [2111] = 457, - [2112] = 458, - [2113] = 461, - [2114] = 324, - [2115] = 331, - [2116] = 341, - [2117] = 346, - [2118] = 487, - [2119] = 217, - [2120] = 2120, - [2121] = 227, - [2122] = 220, - [2123] = 230, - [2124] = 229, - [2125] = 2125, - [2126] = 2126, + [1905] = 235, + [1906] = 954, + [1907] = 1907, + [1908] = 227, + [1909] = 244, + [1910] = 235, + [1911] = 257, + [1912] = 334, + [1913] = 332, + [1914] = 413, + [1915] = 401, + [1916] = 414, + [1917] = 404, + [1918] = 452, + [1919] = 463, + [1920] = 427, + [1921] = 310, + [1922] = 450, + [1923] = 453, + [1924] = 454, + [1925] = 460, + [1926] = 461, + [1927] = 464, + [1928] = 483, + [1929] = 484, + [1930] = 426, + [1931] = 486, + [1932] = 486, + [1933] = 362, + [1934] = 361, + [1935] = 484, + [1936] = 309, + [1937] = 465, + [1938] = 503, + [1939] = 395, + [1940] = 409, + [1941] = 344, + [1942] = 479, + [1943] = 455, + [1944] = 393, + [1945] = 387, + [1946] = 334, + [1947] = 473, + [1948] = 477, + [1949] = 388, + [1950] = 493, + [1951] = 312, + [1952] = 469, + [1953] = 401, + [1954] = 463, + [1955] = 399, + [1956] = 393, + [1957] = 452, + [1958] = 395, + [1959] = 447, + [1960] = 423, + [1961] = 385, + [1962] = 382, + [1963] = 416, + [1964] = 412, + [1965] = 361, + [1966] = 300, + [1967] = 359, + [1968] = 332, + [1969] = 328, + [1970] = 357, + [1971] = 403, + [1972] = 356, + [1973] = 409, + [1974] = 340, + [1975] = 335, + [1976] = 483, + [1977] = 360, + [1978] = 415, + [1979] = 403, + [1980] = 364, + [1981] = 380, + [1982] = 498, + [1983] = 489, + [1984] = 481, + [1985] = 381, + [1986] = 413, + [1987] = 414, + [1988] = 386, + [1989] = 415, + [1990] = 417, + [1991] = 471, + [1992] = 317, + [1993] = 416, + [1994] = 472, + [1995] = 500, + [1996] = 371, + [1997] = 499, + [1998] = 495, + [1999] = 467, + [2000] = 345, + [2001] = 374, + [2002] = 418, + [2003] = 318, + [2004] = 2004, + [2005] = 388, + [2006] = 387, + [2007] = 489, + [2008] = 498, + [2009] = 342, + [2010] = 342, + [2011] = 376, + [2012] = 377, + [2013] = 421, + [2014] = 412, + [2015] = 422, + [2016] = 315, + [2017] = 410, + [2018] = 342, + [2019] = 332, + [2020] = 428, + [2021] = 425, + [2022] = 429, + [2023] = 431, + [2024] = 467, + [2025] = 495, + [2026] = 433, + [2027] = 426, + [2028] = 465, + [2029] = 479, + [2030] = 455, + [2031] = 328, + [2032] = 488, + [2033] = 312, + [2034] = 362, + [2035] = 399, + [2036] = 418, + [2037] = 340, + [2038] = 421, + [2039] = 422, + [2040] = 315, + [2041] = 481, + [2042] = 317, + [2043] = 425, + [2044] = 472, + [2045] = 471, + [2046] = 431, + [2047] = 501, + [2048] = 345, + [2049] = 417, + [2050] = 433, + [2051] = 386, + [2052] = 435, + [2053] = 499, + [2054] = 442, + [2055] = 350, + [2056] = 381, + [2057] = 380, + [2058] = 501, + [2059] = 500, + [2060] = 335, + [2061] = 300, + [2062] = 332, + [2063] = 427, + [2064] = 382, + [2065] = 320, + [2066] = 310, + [2067] = 429, + [2068] = 428, + [2069] = 410, + [2070] = 447, + [2071] = 488, + [2072] = 487, + [2073] = 377, + [2074] = 376, + [2075] = 374, + [2076] = 371, + [2077] = 446, + [2078] = 443, + [2079] = 423, + [2080] = 360, + [2081] = 356, + [2082] = 462, + [2083] = 350, + [2084] = 344, + [2085] = 359, + [2086] = 442, + [2087] = 435, + [2088] = 320, + [2089] = 385, + [2090] = 493, + [2091] = 309, + [2092] = 357, + [2093] = 469, + [2094] = 300, + [2095] = 342, + [2096] = 462, + [2097] = 443, + [2098] = 503, + [2099] = 2099, + [2100] = 446, + [2101] = 318, + [2102] = 404, + [2103] = 2103, + [2104] = 473, + [2105] = 364, + [2106] = 412, + [2107] = 464, + [2108] = 332, + [2109] = 477, + [2110] = 487, + [2111] = 450, + [2112] = 453, + [2113] = 454, + [2114] = 460, + [2115] = 461, + [2116] = 490, + [2117] = 491, + [2118] = 419, + [2119] = 457, + [2120] = 476, + [2121] = 226, + [2122] = 218, + [2123] = 2123, + [2124] = 220, + [2125] = 229, + [2126] = 230, [2127] = 2127, - [2128] = 257, - [2129] = 238, - [2130] = 396, - [2131] = 238, - [2132] = 2132, - [2133] = 2133, - [2134] = 261, + [2128] = 332, + [2129] = 231, + [2130] = 233, + [2131] = 257, + [2132] = 235, + [2133] = 233, + [2134] = 231, [2135] = 2135, - [2136] = 250, - [2137] = 238, - [2138] = 257, + [2136] = 2136, + [2137] = 2137, + [2138] = 2138, [2139] = 2139, - [2140] = 252, - [2141] = 257, - [2142] = 2142, + [2140] = 2140, + [2141] = 2141, + [2142] = 244, [2143] = 2143, - [2144] = 2144, - [2145] = 407, - [2146] = 461, - [2147] = 388, - [2148] = 329, - [2149] = 335, - [2150] = 340, - [2151] = 420, - [2152] = 449, - [2153] = 496, - [2154] = 422, - [2155] = 495, - [2156] = 360, - [2157] = 487, - [2158] = 228, - [2159] = 226, - [2160] = 2160, - [2161] = 346, - [2162] = 341, - [2163] = 224, - [2164] = 222, - [2165] = 218, - [2166] = 331, - [2167] = 324, - [2168] = 365, - [2169] = 363, - [2170] = 348, - [2171] = 347, - [2172] = 486, - [2173] = 485, - [2174] = 446, - [2175] = 415, - [2176] = 2176, - [2177] = 409, - [2178] = 445, - [2179] = 448, - [2180] = 2180, - [2181] = 358, - [2182] = 350, - [2183] = 352, - [2184] = 2184, + [2144] = 231, + [2145] = 233, + [2146] = 219, + [2147] = 476, + [2148] = 500, + [2149] = 495, + [2150] = 499, + [2151] = 498, + [2152] = 350, + [2153] = 472, + [2154] = 471, + [2155] = 417, + [2156] = 332, + [2157] = 382, + [2158] = 317, + [2159] = 393, + [2160] = 395, + [2161] = 399, + [2162] = 401, + [2163] = 386, + [2164] = 455, + [2165] = 2165, + [2166] = 479, + [2167] = 328, + [2168] = 228, + [2169] = 377, + [2170] = 376, + [2171] = 374, + [2172] = 371, + [2173] = 488, + [2174] = 360, + [2175] = 487, + [2176] = 356, + [2177] = 381, + [2178] = 426, + [2179] = 2179, + [2180] = 318, + [2181] = 380, + [2182] = 419, + [2183] = 387, + [2184] = 388, [2185] = 364, - [2186] = 453, - [2187] = 371, - [2188] = 376, - [2189] = 391, - [2190] = 414, - [2191] = 456, - [2192] = 462, - [2193] = 465, - [2194] = 460, - [2195] = 466, - [2196] = 473, - [2197] = 494, - [2198] = 469, - [2199] = 468, - [2200] = 366, - [2201] = 311, - [2202] = 475, - [2203] = 484, - [2204] = 489, - [2205] = 310, - [2206] = 500, - [2207] = 219, - [2208] = 483, - [2209] = 481, - [2210] = 221, - [2211] = 480, - [2212] = 459, - [2213] = 458, - [2214] = 457, - [2215] = 451, + [2186] = 2186, + [2187] = 312, + [2188] = 362, + [2189] = 403, + [2190] = 320, + [2191] = 428, + [2192] = 217, + [2193] = 443, + [2194] = 409, + [2195] = 223, + [2196] = 446, + [2197] = 309, + [2198] = 457, + [2199] = 224, + [2200] = 467, + [2201] = 489, + [2202] = 345, + [2203] = 481, + [2204] = 335, + [2205] = 413, + [2206] = 414, + [2207] = 415, + [2208] = 416, + [2209] = 404, + [2210] = 442, + [2211] = 225, + [2212] = 2212, + [2213] = 427, + [2214] = 310, + [2215] = 491, [2216] = 450, - [2217] = 447, - [2218] = 429, - [2219] = 426, - [2220] = 403, - [2221] = 397, - [2222] = 351, - [2223] = 353, - [2224] = 474, - [2225] = 330, - [2226] = 442, - [2227] = 418, - [2228] = 488, - [2229] = 326, - [2230] = 372, - [2231] = 440, - [2232] = 434, - [2233] = 433, - [2234] = 416, - [2235] = 412, - [2236] = 400, - [2237] = 408, - [2238] = 401, - [2239] = 405, - [2240] = 431, - [2241] = 435, - [2242] = 436, - [2243] = 443, - [2244] = 477, - [2245] = 482, - [2246] = 493, - [2247] = 439, - [2248] = 438, - [2249] = 392, - [2250] = 386, - [2251] = 381, - [2252] = 437, - [2253] = 328, - [2254] = 396, - [2255] = 421, - [2256] = 2256, - [2257] = 1121, - [2258] = 221, - [2259] = 219, - [2260] = 257, - [2261] = 411, - [2262] = 238, - [2263] = 217, - [2264] = 220, - [2265] = 2265, - [2266] = 279, - [2267] = 228, - [2268] = 226, - [2269] = 224, - [2270] = 2270, - [2271] = 222, - [2272] = 218, - [2273] = 1125, - [2274] = 227, - [2275] = 2275, - [2276] = 229, - [2277] = 230, - [2278] = 952, - [2279] = 217, - [2280] = 261, - [2281] = 227, - [2282] = 250, - [2283] = 252, - [2284] = 411, - [2285] = 279, - [2286] = 220, - [2287] = 222, - [2288] = 364, - [2289] = 475, - [2290] = 2290, - [2291] = 2290, - [2292] = 495, - [2293] = 449, - [2294] = 489, - [2295] = 222, - [2296] = 457, - [2297] = 458, - [2298] = 372, - [2299] = 477, - [2300] = 442, - [2301] = 2290, - [2302] = 445, - [2303] = 448, - [2304] = 456, - [2305] = 426, - [2306] = 429, - [2307] = 439, - [2308] = 496, - [2309] = 468, - [2310] = 958, - [2311] = 437, - [2312] = 421, - [2313] = 461, - [2314] = 447, - [2315] = 450, - [2316] = 482, - [2317] = 453, - [2318] = 494, - [2319] = 221, - [2320] = 459, - [2321] = 451, - [2322] = 397, - [2323] = 228, - [2324] = 2290, - [2325] = 2290, - [2326] = 386, - [2327] = 493, - [2328] = 396, - [2329] = 392, + [2217] = 453, + [2218] = 454, + [2219] = 501, + [2220] = 460, + [2221] = 461, + [2222] = 465, + [2223] = 464, + [2224] = 342, + [2225] = 483, + [2226] = 484, + [2227] = 486, + [2228] = 503, + [2229] = 418, + [2230] = 344, + [2231] = 421, + [2232] = 422, + [2233] = 315, + [2234] = 425, + [2235] = 431, + [2236] = 334, + [2237] = 433, + [2238] = 435, + [2239] = 473, + [2240] = 477, + [2241] = 490, + [2242] = 410, + [2243] = 493, + [2244] = 221, + [2245] = 469, + [2246] = 463, + [2247] = 452, + [2248] = 429, + [2249] = 447, + [2250] = 423, + [2251] = 385, + [2252] = 361, + [2253] = 359, + [2254] = 2254, + [2255] = 357, + [2256] = 340, + [2257] = 462, + [2258] = 2258, + [2259] = 225, + [2260] = 1125, + [2261] = 226, + [2262] = 231, + [2263] = 300, + [2264] = 233, + [2265] = 220, + [2266] = 217, + [2267] = 218, + [2268] = 219, + [2269] = 412, + [2270] = 223, + [2271] = 224, + [2272] = 1118, + [2273] = 2273, + [2274] = 221, + [2275] = 228, + [2276] = 2276, + [2277] = 229, + [2278] = 230, + [2279] = 257, + [2280] = 300, + [2281] = 220, + [2282] = 953, + [2283] = 244, + [2284] = 235, + [2285] = 226, + [2286] = 218, + [2287] = 412, + [2288] = 2288, + [2289] = 362, + [2290] = 501, + [2291] = 376, + [2292] = 2288, + [2293] = 371, + [2294] = 443, + [2295] = 404, + [2296] = 462, + [2297] = 2288, + [2298] = 360, + [2299] = 356, + [2300] = 312, + [2301] = 320, + [2302] = 309, + [2303] = 2288, + [2304] = 225, + [2305] = 442, + [2306] = 2288, + [2307] = 2288, + [2308] = 224, + [2309] = 223, + [2310] = 219, + [2311] = 217, + [2312] = 377, + [2313] = 403, + [2314] = 2288, + [2315] = 221, + [2316] = 446, + [2317] = 427, + [2318] = 228, + [2319] = 310, + [2320] = 435, + [2321] = 500, + [2322] = 2288, + [2323] = 410, + [2324] = 428, + [2325] = 409, + [2326] = 2288, + [2327] = 433, + [2328] = 429, + [2329] = 481, [2330] = 488, - [2331] = 221, - [2332] = 328, - [2333] = 422, - [2334] = 957, - [2335] = 2290, - [2336] = 360, - [2337] = 403, - [2338] = 218, - [2339] = 219, - [2340] = 329, - [2341] = 460, - [2342] = 474, - [2343] = 2290, - [2344] = 219, - [2345] = 2290, - [2346] = 224, - [2347] = 418, - [2348] = 340, - [2349] = 466, - [2350] = 473, - [2351] = 465, - [2352] = 226, - [2353] = 484, - [2354] = 223, - [2355] = 462, - [2356] = 416, - [2357] = 414, - [2358] = 391, - [2359] = 433, - [2360] = 335, - [2361] = 420, - [2362] = 480, - [2363] = 481, - [2364] = 351, - [2365] = 2290, - [2366] = 330, - [2367] = 326, - [2368] = 310, - [2369] = 483, - [2370] = 228, - [2371] = 238, - [2372] = 434, - [2373] = 2290, - [2374] = 388, - [2375] = 226, - [2376] = 365, - [2377] = 363, - [2378] = 348, - [2379] = 347, - [2380] = 438, - [2381] = 486, - [2382] = 485, - [2383] = 257, - [2384] = 2290, - [2385] = 218, - [2386] = 405, - [2387] = 381, - [2388] = 446, - [2389] = 408, - [2390] = 415, - [2391] = 412, - [2392] = 224, - [2393] = 500, - [2394] = 311, - [2395] = 366, - [2396] = 400, - [2397] = 401, - [2398] = 409, - [2399] = 2290, - [2400] = 407, - [2401] = 358, - [2402] = 350, - [2403] = 436, - [2404] = 431, - [2405] = 352, - [2406] = 469, - [2407] = 353, - [2408] = 443, - [2409] = 230, - [2410] = 229, - [2411] = 371, - [2412] = 376, - [2413] = 2290, - [2414] = 440, - [2415] = 435, - [2416] = 220, - [2417] = 67, - [2418] = 69, - [2419] = 71, - [2420] = 218, - [2421] = 261, - [2422] = 222, - [2423] = 224, - [2424] = 396, - [2425] = 946, - [2426] = 219, - [2427] = 279, - [2428] = 226, - [2429] = 396, - [2430] = 279, - [2431] = 228, - [2432] = 252, - [2433] = 227, - [2434] = 218, - [2435] = 974, - [2436] = 222, - [2437] = 224, - [2438] = 226, - [2439] = 411, - [2440] = 228, - [2441] = 250, - [2442] = 978, - [2443] = 976, - [2444] = 396, - [2445] = 217, - [2446] = 967, - [2447] = 221, - [2448] = 411, - [2449] = 221, - [2450] = 219, - [2451] = 456, - [2452] = 392, - [2453] = 391, - [2454] = 495, - [2455] = 952, - [2456] = 418, - [2457] = 330, - [2458] = 326, - [2459] = 488, - [2460] = 386, - [2461] = 222, - [2462] = 351, - [2463] = 440, - [2464] = 434, - [2465] = 353, - [2466] = 388, - [2467] = 219, - [2468] = 224, - [2469] = 496, - [2470] = 433, - [2471] = 416, - [2472] = 228, - [2473] = 226, - [2474] = 228, - [2475] = 412, - [2476] = 340, - [2477] = 365, - [2478] = 218, - [2479] = 439, - [2480] = 958, - [2481] = 363, - [2482] = 348, - [2483] = 408, - [2484] = 405, - [2485] = 347, - [2486] = 403, - [2487] = 449, - [2488] = 226, - [2489] = 442, - [2490] = 486, - [2491] = 438, - [2492] = 445, - [2493] = 448, - [2494] = 221, - [2495] = 279, - [2496] = 485, - [2497] = 421, - [2498] = 446, - [2499] = 453, - [2500] = 415, - [2501] = 219, - [2502] = 221, - [2503] = 221, - [2504] = 426, - [2505] = 429, - [2506] = 400, - [2507] = 409, - [2508] = 401, - [2509] = 447, - [2510] = 219, - [2511] = 450, - [2512] = 952, - [2513] = 224, - [2514] = 451, - [2515] = 457, - [2516] = 458, - [2517] = 461, - [2518] = 218, - [2519] = 422, - [2520] = 407, - [2521] = 381, - [2522] = 222, - [2523] = 431, - [2524] = 435, - [2525] = 224, - [2526] = 226, - [2527] = 228, - [2528] = 443, - [2529] = 477, - [2530] = 482, - [2531] = 238, - [2532] = 411, - [2533] = 436, - [2534] = 222, - [2535] = 397, - [2536] = 480, - [2537] = 358, - [2538] = 481, - [2539] = 420, - [2540] = 218, - [2541] = 350, - [2542] = 437, - [2543] = 493, - [2544] = 257, - [2545] = 2545, - [2546] = 352, - [2547] = 364, - [2548] = 483, - [2549] = 310, - [2550] = 474, - [2551] = 460, - [2552] = 500, - [2553] = 360, - [2554] = 311, - [2555] = 489, - [2556] = 366, - [2557] = 468, - [2558] = 459, - [2559] = 353, - [2560] = 469, - [2561] = 484, - [2562] = 372, - [2563] = 494, - [2564] = 475, - [2565] = 371, - [2566] = 335, - [2567] = 473, - [2568] = 376, - [2569] = 466, - [2570] = 396, - [2571] = 465, - [2572] = 329, - [2573] = 229, - [2574] = 328, - [2575] = 462, - [2576] = 414, - [2577] = 230, - [2578] = 2578, + [2331] = 489, + [2332] = 413, + [2333] = 498, + [2334] = 964, + [2335] = 450, + [2336] = 414, + [2337] = 453, + [2338] = 454, + [2339] = 460, + [2340] = 461, + [2341] = 332, + [2342] = 415, + [2343] = 231, + [2344] = 416, + [2345] = 431, + [2346] = 464, + [2347] = 401, + [2348] = 426, + [2349] = 425, + [2350] = 350, + [2351] = 328, + [2352] = 2288, + [2353] = 318, + [2354] = 2288, + [2355] = 483, + [2356] = 315, + [2357] = 229, + [2358] = 230, + [2359] = 954, + [2360] = 387, + [2361] = 484, + [2362] = 388, + [2363] = 2288, + [2364] = 374, + [2365] = 423, + [2366] = 465, + [2367] = 486, + [2368] = 217, + [2369] = 233, + [2370] = 487, + [2371] = 503, + [2372] = 344, + [2373] = 334, + [2374] = 227, + [2375] = 473, + [2376] = 317, + [2377] = 393, + [2378] = 395, + [2379] = 399, + [2380] = 219, + [2381] = 477, + [2382] = 493, + [2383] = 469, + [2384] = 221, + [2385] = 463, + [2386] = 452, + [2387] = 447, + [2388] = 385, + [2389] = 382, + [2390] = 228, + [2391] = 361, + [2392] = 455, + [2393] = 223, + [2394] = 359, + [2395] = 418, + [2396] = 357, + [2397] = 342, + [2398] = 340, + [2399] = 335, + [2400] = 364, + [2401] = 479, + [2402] = 380, + [2403] = 381, + [2404] = 386, + [2405] = 417, + [2406] = 471, + [2407] = 472, + [2408] = 2288, + [2409] = 499, + [2410] = 495, + [2411] = 467, + [2412] = 345, + [2413] = 224, + [2414] = 225, + [2415] = 422, + [2416] = 421, + [2417] = 225, + [2418] = 224, + [2419] = 223, + [2420] = 219, + [2421] = 217, + [2422] = 300, + [2423] = 257, + [2424] = 976, + [2425] = 332, + [2426] = 300, + [2427] = 70, + [2428] = 68, + [2429] = 69, + [2430] = 235, + [2431] = 220, + [2432] = 225, + [2433] = 218, + [2434] = 228, + [2435] = 332, + [2436] = 412, + [2437] = 221, + [2438] = 947, + [2439] = 224, + [2440] = 223, + [2441] = 219, + [2442] = 217, + [2443] = 978, + [2444] = 221, + [2445] = 412, + [2446] = 244, + [2447] = 332, + [2448] = 228, + [2449] = 971, + [2450] = 974, + [2451] = 226, + [2452] = 310, + [2453] = 233, + [2454] = 221, + [2455] = 318, + [2456] = 342, + [2457] = 412, + [2458] = 228, + [2459] = 953, + [2460] = 223, + [2461] = 357, + [2462] = 219, + [2463] = 217, + [2464] = 479, + [2465] = 455, + [2466] = 300, + [2467] = 225, + [2468] = 401, + [2469] = 399, + [2470] = 395, + [2471] = 387, + [2472] = 388, + [2473] = 317, + [2474] = 345, + [2475] = 467, + [2476] = 495, + [2477] = 499, + [2478] = 426, + [2479] = 472, + [2480] = 471, + [2481] = 417, + [2482] = 386, + [2483] = 403, + [2484] = 381, + [2485] = 380, + [2486] = 364, + [2487] = 393, + [2488] = 954, + [2489] = 501, + [2490] = 335, + [2491] = 340, + [2492] = 312, + [2493] = 442, + [2494] = 359, + [2495] = 225, + [2496] = 217, + [2497] = 361, + [2498] = 500, + [2499] = 219, + [2500] = 224, + [2501] = 385, + [2502] = 223, + [2503] = 423, + [2504] = 447, + [2505] = 224, + [2506] = 452, + [2507] = 463, + [2508] = 469, + [2509] = 488, + [2510] = 493, + [2511] = 487, + [2512] = 477, + [2513] = 473, + [2514] = 334, + [2515] = 344, + [2516] = 409, + [2517] = 446, + [2518] = 503, + [2519] = 443, + [2520] = 462, + [2521] = 486, + [2522] = 228, + [2523] = 484, + [2524] = 483, + [2525] = 350, + [2526] = 2526, + [2527] = 382, + [2528] = 498, + [2529] = 464, + [2530] = 461, + [2531] = 460, + [2532] = 454, + [2533] = 453, + [2534] = 450, + [2535] = 489, + [2536] = 228, + [2537] = 481, + [2538] = 427, + [2539] = 413, + [2540] = 231, + [2541] = 224, + [2542] = 223, + [2543] = 219, + [2544] = 404, + [2545] = 414, + [2546] = 435, + [2547] = 217, + [2548] = 342, + [2549] = 415, + [2550] = 221, + [2551] = 433, + [2552] = 431, + [2553] = 425, + [2554] = 315, + [2555] = 221, + [2556] = 422, + [2557] = 332, + [2558] = 953, + [2559] = 421, + [2560] = 309, + [2561] = 418, + [2562] = 320, + [2563] = 362, + [2564] = 416, + [2565] = 429, + [2566] = 428, + [2567] = 328, + [2568] = 465, + [2569] = 356, + [2570] = 360, + [2571] = 225, + [2572] = 371, + [2573] = 230, + [2574] = 229, + [2575] = 374, + [2576] = 376, + [2577] = 410, + [2578] = 377, [2579] = 2579, - [2580] = 261, - [2581] = 2581, - [2582] = 2581, - [2583] = 2581, + [2580] = 2579, + [2581] = 2579, + [2582] = 235, + [2583] = 2583, [2584] = 2584, - [2585] = 2584, - [2586] = 2584, - [2587] = 2584, - [2588] = 2588, - [2589] = 2581, - [2590] = 250, - [2591] = 2584, - [2592] = 223, - [2593] = 2581, - [2594] = 2581, - [2595] = 2584, - [2596] = 2581, - [2597] = 958, - [2598] = 353, - [2599] = 2584, - [2600] = 2584, - [2601] = 2581, - [2602] = 252, - [2603] = 411, - [2604] = 2581, - [2605] = 223, - [2606] = 2581, - [2607] = 2581, - [2608] = 2584, - [2609] = 2584, - [2610] = 2584, - [2611] = 2611, - [2612] = 2581, - [2613] = 223, - [2614] = 396, - [2615] = 2615, - [2616] = 2581, - [2617] = 2584, - [2618] = 279, - [2619] = 438, - [2620] = 2620, - [2621] = 228, - [2622] = 2622, - [2623] = 2615, + [2585] = 2585, + [2586] = 2586, + [2587] = 2579, + [2588] = 257, + [2589] = 227, + [2590] = 2579, + [2591] = 227, + [2592] = 227, + [2593] = 2579, + [2594] = 2583, + [2595] = 2579, + [2596] = 2583, + [2597] = 244, + [2598] = 2583, + [2599] = 2583, + [2600] = 300, + [2601] = 342, + [2602] = 2583, + [2603] = 2579, + [2604] = 2583, + [2605] = 2583, + [2606] = 332, + [2607] = 2579, + [2608] = 412, + [2609] = 2583, + [2610] = 2583, + [2611] = 2579, + [2612] = 2579, + [2613] = 2579, + [2614] = 2614, + [2615] = 2583, + [2616] = 2579, + [2617] = 2583, + [2618] = 2618, + [2619] = 954, + [2620] = 450, + [2621] = 332, + [2622] = 412, + [2623] = 2623, [2624] = 2624, - [2625] = 442, - [2626] = 2620, - [2627] = 2627, - [2628] = 2620, + [2625] = 2624, + [2626] = 498, + [2627] = 489, + [2628] = 481, [2629] = 2629, - [2630] = 2622, - [2631] = 2622, + [2630] = 225, + [2631] = 328, [2632] = 2632, - [2633] = 381, - [2634] = 386, - [2635] = 392, - [2636] = 2624, - [2637] = 372, - [2638] = 2624, - [2639] = 326, - [2640] = 418, - [2641] = 2620, - [2642] = 224, - [2643] = 2620, - [2644] = 347, - [2645] = 358, - [2646] = 226, - [2647] = 411, - [2648] = 426, - [2649] = 364, - [2650] = 429, - [2651] = 2622, - [2652] = 371, - [2653] = 376, - [2654] = 974, - [2655] = 473, - [2656] = 494, - [2657] = 366, - [2658] = 311, - [2659] = 500, - [2660] = 496, - [2661] = 222, - [2662] = 483, - [2663] = 468, - [2664] = 469, - [2665] = 481, - [2666] = 480, - [2667] = 466, - [2668] = 465, - [2669] = 461, - [2670] = 462, - [2671] = 414, - [2672] = 391, - [2673] = 458, - [2674] = 457, - [2675] = 451, - [2676] = 2629, - [2677] = 352, - [2678] = 350, - [2679] = 450, - [2680] = 2624, - [2681] = 447, - [2682] = 407, - [2683] = 409, - [2684] = 415, - [2685] = 446, - [2686] = 485, - [2687] = 486, - [2688] = 2620, - [2689] = 348, - [2690] = 363, - [2691] = 2624, - [2692] = 2629, - [2693] = 2622, - [2694] = 2622, - [2695] = 257, - [2696] = 445, - [2697] = 448, - [2698] = 422, - [2699] = 411, - [2700] = 218, - [2701] = 403, - [2702] = 453, - [2703] = 2624, - [2704] = 2629, - [2705] = 2620, - [2706] = 2620, - [2707] = 456, - [2708] = 2629, - [2709] = 279, - [2710] = 475, - [2711] = 484, - [2712] = 489, - [2713] = 310, - [2714] = 397, - [2715] = 2715, - [2716] = 2716, - [2717] = 488, - [2718] = 2622, - [2719] = 440, - [2720] = 434, - [2721] = 433, - [2722] = 416, - [2723] = 412, - [2724] = 2629, - [2725] = 408, - [2726] = 351, - [2727] = 405, - [2728] = 2728, - [2729] = 2624, - [2730] = 330, - [2731] = 2731, - [2732] = 474, - [2733] = 460, - [2734] = 360, - [2735] = 2620, - [2736] = 400, - [2737] = 340, - [2738] = 335, - [2739] = 388, - [2740] = 329, - [2741] = 459, - [2742] = 401, - [2743] = 420, - [2744] = 431, - [2745] = 435, - [2746] = 449, - [2747] = 436, - [2748] = 279, - [2749] = 443, - [2750] = 2629, - [2751] = 2629, - [2752] = 2622, - [2753] = 477, - [2754] = 482, - [2755] = 493, - [2756] = 2629, - [2757] = 279, - [2758] = 2622, - [2759] = 328, - [2760] = 219, - [2761] = 221, - [2762] = 2629, - [2763] = 421, - [2764] = 437, - [2765] = 439, - [2766] = 238, - [2767] = 2624, - [2768] = 411, - [2769] = 495, - [2770] = 218, - [2771] = 2624, - [2772] = 2772, - [2773] = 2620, - [2774] = 2629, - [2775] = 2629, - [2776] = 229, - [2777] = 2622, - [2778] = 230, - [2779] = 2624, - [2780] = 223, - [2781] = 2624, - [2782] = 2624, - [2783] = 2620, - [2784] = 222, - [2785] = 2622, - [2786] = 365, - [2787] = 2622, - [2788] = 396, - [2789] = 411, - [2790] = 2629, - [2791] = 2791, - [2792] = 224, - [2793] = 2793, - [2794] = 2620, - [2795] = 226, - [2796] = 279, - [2797] = 2797, - [2798] = 2620, - [2799] = 219, - [2800] = 2620, - [2801] = 221, - [2802] = 228, - [2803] = 396, - [2804] = 396, - [2805] = 261, - [2806] = 2806, + [2633] = 312, + [2634] = 362, + [2635] = 361, + [2636] = 2636, + [2637] = 395, + [2638] = 401, + [2639] = 2618, + [2640] = 2624, + [2641] = 217, + [2642] = 2636, + [2643] = 345, + [2644] = 499, + [2645] = 364, + [2646] = 2646, + [2647] = 357, + [2648] = 359, + [2649] = 317, + [2650] = 412, + [2651] = 427, + [2652] = 469, + [2653] = 310, + [2654] = 2624, + [2655] = 493, + [2656] = 334, + [2657] = 344, + [2658] = 486, + [2659] = 484, + [2660] = 483, + [2661] = 464, + [2662] = 503, + [2663] = 461, + [2664] = 460, + [2665] = 300, + [2666] = 473, + [2667] = 477, + [2668] = 454, + [2669] = 453, + [2670] = 463, + [2671] = 452, + [2672] = 2629, + [2673] = 447, + [2674] = 423, + [2675] = 385, + [2676] = 2624, + [2677] = 231, + [2678] = 412, + [2679] = 404, + [2680] = 340, + [2681] = 335, + [2682] = 2629, + [2683] = 2646, + [2684] = 309, + [2685] = 380, + [2686] = 381, + [2687] = 386, + [2688] = 417, + [2689] = 471, + [2690] = 472, + [2691] = 320, + [2692] = 495, + [2693] = 467, + [2694] = 225, + [2695] = 227, + [2696] = 2696, + [2697] = 2646, + [2698] = 356, + [2699] = 387, + [2700] = 388, + [2701] = 318, + [2702] = 360, + [2703] = 224, + [2704] = 223, + [2705] = 403, + [2706] = 2629, + [2707] = 219, + [2708] = 2636, + [2709] = 224, + [2710] = 409, + [2711] = 223, + [2712] = 978, + [2713] = 413, + [2714] = 414, + [2715] = 415, + [2716] = 416, + [2717] = 465, + [2718] = 219, + [2719] = 371, + [2720] = 418, + [2721] = 374, + [2722] = 421, + [2723] = 422, + [2724] = 315, + [2725] = 425, + [2726] = 431, + [2727] = 2629, + [2728] = 433, + [2729] = 376, + [2730] = 435, + [2731] = 2624, + [2732] = 217, + [2733] = 2624, + [2734] = 2646, + [2735] = 462, + [2736] = 443, + [2737] = 446, + [2738] = 377, + [2739] = 2646, + [2740] = 487, + [2741] = 488, + [2742] = 382, + [2743] = 500, + [2744] = 442, + [2745] = 410, + [2746] = 501, + [2747] = 428, + [2748] = 429, + [2749] = 426, + [2750] = 2636, + [2751] = 300, + [2752] = 2752, + [2753] = 2629, + [2754] = 2624, + [2755] = 2629, + [2756] = 350, + [2757] = 2624, + [2758] = 229, + [2759] = 2629, + [2760] = 300, + [2761] = 230, + [2762] = 479, + [2763] = 2636, + [2764] = 393, + [2765] = 399, + [2766] = 2766, + [2767] = 2767, + [2768] = 2636, + [2769] = 2624, + [2770] = 2646, + [2771] = 455, + [2772] = 2629, + [2773] = 2629, + [2774] = 2646, + [2775] = 2624, + [2776] = 2646, + [2777] = 2624, + [2778] = 2624, + [2779] = 332, + [2780] = 2780, + [2781] = 2629, + [2782] = 2782, + [2783] = 2636, + [2784] = 2646, + [2785] = 2646, + [2786] = 221, + [2787] = 2787, + [2788] = 228, + [2789] = 2629, + [2790] = 2646, + [2791] = 332, + [2792] = 412, + [2793] = 2646, + [2794] = 2629, + [2795] = 2636, + [2796] = 221, + [2797] = 228, + [2798] = 2636, + [2799] = 300, + [2800] = 2636, + [2801] = 2629, + [2802] = 2636, + [2803] = 233, + [2804] = 2804, + [2805] = 2636, + [2806] = 235, [2807] = 2807, - [2808] = 2808, - [2809] = 2806, + [2808] = 2807, + [2809] = 2807, [2810] = 2807, [2811] = 2807, - [2812] = 2807, - [2813] = 250, - [2814] = 2806, - [2815] = 2807, + [2812] = 2812, + [2813] = 1390, + [2814] = 342, + [2815] = 2815, [2816] = 2816, [2817] = 2807, - [2818] = 1902, + [2818] = 2807, [2819] = 2807, - [2820] = 2820, - [2821] = 2807, - [2822] = 353, + [2820] = 2807, + [2821] = 2821, + [2822] = 257, [2823] = 2807, [2824] = 2824, - [2825] = 2825, - [2826] = 2807, + [2825] = 1903, + [2826] = 2812, [2827] = 2807, [2828] = 2807, - [2829] = 2807, - [2830] = 1388, - [2831] = 2806, - [2832] = 2832, - [2833] = 350, - [2834] = 426, - [2835] = 446, - [2836] = 485, - [2837] = 486, - [2838] = 348, - [2839] = 363, - [2840] = 352, - [2841] = 2841, - [2842] = 2832, - [2843] = 418, - [2844] = 326, - [2845] = 372, - [2846] = 392, - [2847] = 466, - [2848] = 386, - [2849] = 388, - [2850] = 67, - [2851] = 381, - [2852] = 409, - [2853] = 69, - [2854] = 407, - [2855] = 2832, - [2856] = 429, - [2857] = 415, - [2858] = 2832, - [2859] = 67, - [2860] = 2120, - [2861] = 391, - [2862] = 414, - [2863] = 71, - [2864] = 462, - [2865] = 500, - [2866] = 2832, - [2867] = 2832, - [2868] = 438, - [2869] = 468, - [2870] = 442, - [2871] = 465, - [2872] = 2832, - [2873] = 2832, - [2874] = 2832, - [2875] = 69, - [2876] = 2832, - [2877] = 2832, - [2878] = 469, - [2879] = 2832, - [2880] = 2832, - [2881] = 71, - [2882] = 1387, - [2883] = 2883, - [2884] = 2883, - [2885] = 2885, - [2886] = 2886, - [2887] = 1394, - [2888] = 2883, - [2889] = 2885, - [2890] = 1387, - [2891] = 1393, - [2892] = 1393, - [2893] = 1394, - [2894] = 1394, - [2895] = 1387, - [2896] = 1387, - [2897] = 1394, - [2898] = 1393, - [2899] = 2883, - [2900] = 1393, - [2901] = 2885, - [2902] = 1394, - [2903] = 1387, - [2904] = 1393, - [2905] = 1394, - [2906] = 2906, - [2907] = 2883, - [2908] = 2885, - [2909] = 1394, - [2910] = 1393, - [2911] = 2885, - [2912] = 1387, - [2913] = 2883, - [2914] = 2885, - [2915] = 1393, - [2916] = 2883, - [2917] = 2885, - [2918] = 1394, - [2919] = 2883, - [2920] = 1387, - [2921] = 1387, - [2922] = 1393, - [2923] = 2885, - [2924] = 1393, - [2925] = 1394, - [2926] = 1394, - [2927] = 1387, - [2928] = 1393, - [2929] = 2883, - [2930] = 2883, - [2931] = 2885, - [2932] = 2932, - [2933] = 2885, - [2934] = 1387, - [2935] = 1394, - [2936] = 1393, - [2937] = 1387, - [2938] = 1393, - [2939] = 1393, - [2940] = 1387, - [2941] = 1394, - [2942] = 1387, - [2943] = 1393, - [2944] = 1393, - [2945] = 1387, - [2946] = 1387, - [2947] = 1393, - [2948] = 1387, - [2949] = 2883, - [2950] = 2885, - [2951] = 1394, - [2952] = 2885, - [2953] = 1394, - [2954] = 1394, - [2955] = 1394, - [2956] = 2883, - [2957] = 2957, - [2958] = 2957, - [2959] = 2959, + [2829] = 2812, + [2830] = 2812, + [2831] = 2831, + [2832] = 2807, + [2833] = 467, + [2834] = 2834, + [2835] = 68, + [2836] = 481, + [2837] = 328, + [2838] = 2834, + [2839] = 68, + [2840] = 312, + [2841] = 362, + [2842] = 2834, + [2843] = 310, + [2844] = 2834, + [2845] = 473, + [2846] = 495, + [2847] = 2847, + [2848] = 2834, + [2849] = 472, + [2850] = 69, + [2851] = 471, + [2852] = 417, + [2853] = 386, + [2854] = 381, + [2855] = 380, + [2856] = 498, + [2857] = 335, + [2858] = 489, + [2859] = 382, + [2860] = 70, + [2861] = 2861, + [2862] = 340, + [2863] = 385, + [2864] = 423, + [2865] = 2834, + [2866] = 447, + [2867] = 2834, + [2868] = 2834, + [2869] = 2834, + [2870] = 69, + [2871] = 70, + [2872] = 427, + [2873] = 2834, + [2874] = 503, + [2875] = 2834, + [2876] = 452, + [2877] = 395, + [2878] = 463, + [2879] = 2123, + [2880] = 2834, + [2881] = 477, + [2882] = 401, + [2883] = 2834, + [2884] = 1392, + [2885] = 1399, + [2886] = 1392, + [2887] = 1392, + [2888] = 1399, + [2889] = 2889, + [2890] = 1392, + [2891] = 1392, + [2892] = 1399, + [2893] = 1397, + [2894] = 2889, + [2895] = 1392, + [2896] = 2896, + [2897] = 1399, + [2898] = 1399, + [2899] = 1399, + [2900] = 1392, + [2901] = 1392, + [2902] = 2902, + [2903] = 1397, + [2904] = 1397, + [2905] = 2896, + [2906] = 1399, + [2907] = 1397, + [2908] = 2896, + [2909] = 2889, + [2910] = 2896, + [2911] = 2889, + [2912] = 2912, + [2913] = 2896, + [2914] = 2896, + [2915] = 2896, + [2916] = 1392, + [2917] = 2889, + [2918] = 2896, + [2919] = 2889, + [2920] = 1397, + [2921] = 2921, + [2922] = 1397, + [2923] = 1397, + [2924] = 1399, + [2925] = 2925, + [2926] = 1392, + [2927] = 1397, + [2928] = 1392, + [2929] = 1399, + [2930] = 2889, + [2931] = 1399, + [2932] = 1399, + [2933] = 2889, + [2934] = 2896, + [2935] = 2889, + [2936] = 1399, + [2937] = 1392, + [2938] = 1392, + [2939] = 1397, + [2940] = 2889, + [2941] = 1392, + [2942] = 1397, + [2943] = 1397, + [2944] = 1392, + [2945] = 1399, + [2946] = 1392, + [2947] = 1399, + [2948] = 1397, + [2949] = 1397, + [2950] = 1399, + [2951] = 1397, + [2952] = 2896, + [2953] = 2896, + [2954] = 2889, + [2955] = 1397, + [2956] = 2896, + [2957] = 2889, + [2958] = 1397, + [2959] = 1399, [2960] = 2960, - [2961] = 2961, - [2962] = 2961, + [2961] = 2960, + [2962] = 2962, [2963] = 2963, - [2964] = 2960, - [2965] = 2965, - [2966] = 2961, - [2967] = 2961, - [2968] = 2961, - [2969] = 2969, - [2970] = 2960, - [2971] = 2960, - [2972] = 2972, - [2973] = 2961, - [2974] = 2960, - [2975] = 2960, - [2976] = 2961, - [2977] = 2960, - [2978] = 2960, - [2979] = 2961, - [2980] = 2980, - [2981] = 2961, - [2982] = 2960, - [2983] = 2960, - [2984] = 2984, - [2985] = 2961, - [2986] = 2960, - [2987] = 2961, - [2988] = 2960, - [2989] = 2989, - [2990] = 2961, + [2964] = 2964, + [2965] = 2962, + [2966] = 1581, + [2967] = 2962, + [2968] = 2964, + [2969] = 2962, + [2970] = 2962, + [2971] = 2964, + [2972] = 2962, + [2973] = 2964, + [2974] = 2962, + [2975] = 2964, + [2976] = 2964, + [2977] = 2977, + [2978] = 2978, + [2979] = 2979, + [2980] = 2964, + [2981] = 2962, + [2982] = 2962, + [2983] = 2964, + [2984] = 2962, + [2985] = 2964, + [2986] = 2986, + [2987] = 2962, + [2988] = 2962, + [2989] = 2962, + [2990] = 2964, [2991] = 2991, - [2992] = 2960, - [2993] = 2961, - [2994] = 2961, - [2995] = 1580, - [2996] = 2960, - [2997] = 2997, + [2992] = 2992, + [2993] = 2993, + [2994] = 2964, + [2995] = 2964, + [2996] = 2964, + [2997] = 2962, [2998] = 2998, - [2999] = 2999, + [2999] = 2964, [3000] = 3000, [3001] = 3001, [3002] = 3002, - [3003] = 3000, - [3004] = 2999, - [3005] = 3000, + [3003] = 3003, + [3004] = 3004, + [3005] = 3005, [3006] = 3006, [3007] = 3007, - [3008] = 3006, - [3009] = 3006, - [3010] = 3006, + [3008] = 3008, + [3009] = 3001, + [3010] = 3000, [3011] = 3011, - [3012] = 2999, + [3012] = 3012, [3013] = 3013, [3014] = 3014, - [3015] = 3014, - [3016] = 2999, - [3017] = 3000, - [3018] = 3000, - [3019] = 3019, - [3020] = 3007, - [3021] = 3021, - [3022] = 3001, - [3023] = 3001, - [3024] = 3019, - [3025] = 3025, - [3026] = 2998, - [3027] = 3025, - [3028] = 3006, - [3029] = 3011, - [3030] = 2998, - [3031] = 3025, - [3032] = 3019, - [3033] = 2998, - [3034] = 3001, - [3035] = 3021, - [3036] = 3036, - [3037] = 3021, - [3038] = 3038, - [3039] = 3021, - [3040] = 3021, - [3041] = 3019, - [3042] = 3021, - [3043] = 3036, - [3044] = 3021, - [3045] = 3038, - [3046] = 3021, - [3047] = 3013, - [3048] = 3038, - [3049] = 3014, - [3050] = 2999, - [3051] = 3021, - [3052] = 3021, - [3053] = 3000, - [3054] = 3011, - [3055] = 3021, - [3056] = 3019, - [3057] = 3019, - [3058] = 3002, - [3059] = 3021, - [3060] = 3025, - [3061] = 2998, - [3062] = 3001, - [3063] = 3025, - [3064] = 3000, - [3065] = 2998, - [3066] = 2999, - [3067] = 3014, - [3068] = 2998, - [3069] = 3021, - [3070] = 3019, - [3071] = 3019, - [3072] = 3025, - [3073] = 3011, - [3074] = 3000, - [3075] = 2998, - [3076] = 3025, - [3077] = 3013, - [3078] = 3021, - [3079] = 3001, - [3080] = 2999, - [3081] = 3014, - [3082] = 2998, - [3083] = 3013, - [3084] = 3084, - [3085] = 3038, - [3086] = 3006, - [3087] = 3014, - [3088] = 3036, - [3089] = 3019, - [3090] = 3021, - [3091] = 3025, - [3092] = 2998, - [3093] = 3002, - [3094] = 3014, - [3095] = 3025, - [3096] = 3038, - [3097] = 3011, - [3098] = 3002, - [3099] = 3013, - [3100] = 3036, - [3101] = 3038, - [3102] = 3038, - [3103] = 3002, - [3104] = 3001, - [3105] = 3105, - [3106] = 3006, - [3107] = 3025, - [3108] = 2998, - [3109] = 3011, - [3110] = 3021, - [3111] = 3019, - [3112] = 3025, - [3113] = 3021, - [3114] = 2998, - [3115] = 3000, - [3116] = 3011, - [3117] = 2999, - [3118] = 3019, - [3119] = 3014, - [3120] = 3013, - [3121] = 3036, - [3122] = 3006, - [3123] = 3036, - [3124] = 3002, - [3125] = 3014, - [3126] = 3002, + [3015] = 3015, + [3016] = 3000, + [3017] = 3005, + [3018] = 3005, + [3019] = 3001, + [3020] = 3005, + [3021] = 3000, + [3022] = 3015, + [3023] = 3011, + [3024] = 3002, + [3025] = 3012, + [3026] = 3026, + [3027] = 3015, + [3028] = 3028, + [3029] = 3006, + [3030] = 3008, + [3031] = 3014, + [3032] = 3008, + [3033] = 3006, + [3034] = 3028, + [3035] = 3026, + [3036] = 3001, + [3037] = 3014, + [3038] = 3002, + [3039] = 3003, + [3040] = 3040, + [3041] = 3014, + [3042] = 3014, + [3043] = 3008, + [3044] = 3008, + [3045] = 3045, + [3046] = 3013, + [3047] = 3006, + [3048] = 3012, + [3049] = 3015, + [3050] = 3003, + [3051] = 3013, + [3052] = 3001, + [3053] = 3013, + [3054] = 3006, + [3055] = 3028, + [3056] = 3005, + [3057] = 3000, + [3058] = 3026, + [3059] = 3003, + [3060] = 3000, + [3061] = 3005, + [3062] = 3005, + [3063] = 3014, + [3064] = 3008, + [3065] = 3011, + [3066] = 3006, + [3067] = 3015, + [3068] = 3026, + [3069] = 3026, + [3070] = 3028, + [3071] = 3002, + [3072] = 3072, + [3073] = 3014, + [3074] = 3008, + [3075] = 3006, + [3076] = 3005, + [3077] = 3015, + [3078] = 3000, + [3079] = 3005, + [3080] = 3014, + [3081] = 3011, + [3082] = 3012, + [3083] = 3000, + [3084] = 3028, + [3085] = 3000, + [3086] = 3002, + [3087] = 3008, + [3088] = 3015, + [3089] = 3089, + [3090] = 3026, + [3091] = 3006, + [3092] = 3028, + [3093] = 3026, + [3094] = 3028, + [3095] = 3028, + [3096] = 3002, + [3097] = 3026, + [3098] = 3006, + [3099] = 3008, + [3100] = 3045, + [3101] = 3002, + [3102] = 3008, + [3103] = 3015, + [3104] = 3014, + [3105] = 3014, + [3106] = 3012, + [3107] = 3026, + [3108] = 3001, + [3109] = 3002, + [3110] = 3045, + [3111] = 3015, + [3112] = 3013, + [3113] = 3003, + [3114] = 3014, + [3115] = 3001, + [3116] = 3005, + [3117] = 3014, + [3118] = 3000, + [3119] = 3000, + [3120] = 3000, + [3121] = 3011, + [3122] = 3008, + [3123] = 3011, + [3124] = 3006, + [3125] = 3015, + [3126] = 3015, [3127] = 3011, - [3128] = 3038, + [3128] = 3128, [3129] = 3006, - [3130] = 3001, - [3131] = 3001, - [3132] = 3014, - [3133] = 2999, - [3134] = 3002, - [3135] = 3038, - [3136] = 3000, - [3137] = 3000, - [3138] = 3000, - [3139] = 3019, - [3140] = 3011, - [3141] = 2999, - [3142] = 3014, - [3143] = 3025, - [3144] = 3038, - [3145] = 3021, - [3146] = 3006, - [3147] = 3002, - [3148] = 3011, - [3149] = 3025, - [3150] = 3013, - [3151] = 3036, - [3152] = 3019, - [3153] = 3036, + [3130] = 3028, + [3131] = 3003, + [3132] = 3011, + [3133] = 3012, + [3134] = 3026, + [3135] = 3002, + [3136] = 3011, + [3137] = 3011, + [3138] = 3015, + [3139] = 3005, + [3140] = 3026, + [3141] = 3011, + [3142] = 3008, + [3143] = 3012, + [3144] = 3013, + [3145] = 3011, + [3146] = 3011, + [3147] = 3000, + [3148] = 3002, + [3149] = 3015, + [3150] = 3026, + [3151] = 3028, + [3152] = 3005, + [3153] = 3011, [3154] = 3013, - [3155] = 3038, - [3156] = 3000, - [3157] = 2998, - [3158] = 2998, - [3159] = 3025, - [3160] = 3014, - [3161] = 3007, - [3162] = 3013, + [3155] = 3011, + [3156] = 3011, + [3157] = 3003, + [3158] = 3013, + [3159] = 3011, + [3160] = 3015, + [3161] = 3005, + [3162] = 3003, [3163] = 3001, - [3164] = 3038, - [3165] = 3001, - [3166] = 3025, - [3167] = 2998, - [3168] = 3011, - [3169] = 3019, - [3170] = 3006, - [3171] = 3011, - [3172] = 3002, - [3173] = 2999, - [3174] = 3002, - [3175] = 3021, - [3176] = 3019, - [3177] = 3014, - [3178] = 3011, - [3179] = 3179, - [3180] = 2999, - [3181] = 3181, - [3182] = 3002, - [3183] = 3002, - [3184] = 3002, - [3185] = 3021, + [3164] = 3028, + [3165] = 3002, + [3166] = 3014, + [3167] = 3012, + [3168] = 3002, + [3169] = 3014, + [3170] = 3008, + [3171] = 3001, + [3172] = 3011, + [3173] = 3008, + [3174] = 3028, + [3175] = 3011, + [3176] = 3005, + [3177] = 3011, + [3178] = 3000, + [3179] = 3015, + [3180] = 3000, + [3181] = 3001, + [3182] = 3001, + [3183] = 3000, + [3184] = 3006, + [3185] = 3028, [3186] = 3006, - [3187] = 3013, - [3188] = 3036, - [3189] = 3036, - [3190] = 3011, - [3191] = 3025, - [3192] = 2998, - [3193] = 3001, - [3194] = 3001, - [3195] = 3013, - [3196] = 3006, - [3197] = 3197, - [3198] = 3038, - [3199] = 3019, - [3200] = 3000, + [3187] = 3012, + [3188] = 3011, + [3189] = 3026, + [3190] = 3002, + [3191] = 3003, + [3192] = 3006, + [3193] = 3013, + [3194] = 3005, + [3195] = 3005, + [3196] = 3001, + [3197] = 3011, + [3198] = 3012, + [3199] = 3199, + [3200] = 3008, [3201] = 3006, - [3202] = 3202, - [3203] = 3000, - [3204] = 3021, - [3205] = 3000, - [3206] = 2999, - [3207] = 3036, - [3208] = 3014, - [3209] = 3013, - [3210] = 3036, - [3211] = 2999, - [3212] = 3014, - [3213] = 3001, - [3214] = 3038, + [3202] = 3001, + [3203] = 3014, + [3204] = 3002, + [3205] = 3003, + [3206] = 3013, + [3207] = 3001, + [3208] = 3001, + [3209] = 3003, + [3210] = 3013, + [3211] = 3001, + [3212] = 3028, + [3213] = 3003, + [3214] = 3013, [3215] = 3002, - [3216] = 2999, - [3217] = 3217, - [3218] = 3006, - [3219] = 3002, - [3220] = 3021, - [3221] = 3011, - [3222] = 3011, - [3223] = 3006, - [3224] = 3021, - [3225] = 2999, - [3226] = 3014, - [3227] = 3038, - [3228] = 3038, - [3229] = 3229, - [3230] = 3229, - [3231] = 3229, - [3232] = 3229, - [3233] = 3229, - [3234] = 3234, - [3235] = 3229, - [3236] = 3229, - [3237] = 3237, - [3238] = 3238, - [3239] = 3229, - [3240] = 3229, - [3241] = 3241, - [3242] = 3229, - [3243] = 3229, - [3244] = 3229, - [3245] = 3245, - [3246] = 346, - [3247] = 324, - [3248] = 331, - [3249] = 487, - [3250] = 341, - [3251] = 1101, - [3252] = 331, - [3253] = 3253, - [3254] = 324, - [3255] = 3255, - [3256] = 487, - [3257] = 341, - [3258] = 346, + [3216] = 3026, + [3217] = 3026, + [3218] = 3028, + [3219] = 3012, + [3220] = 3028, + [3221] = 3012, + [3222] = 3012, + [3223] = 3015, + [3224] = 3224, + [3225] = 3006, + [3226] = 3026, + [3227] = 3012, + [3228] = 3014, + [3229] = 3008, + [3230] = 3011, + [3231] = 3002, + [3232] = 3232, + [3233] = 3232, + [3234] = 3232, + [3235] = 3232, + [3236] = 3232, + [3237] = 3232, + [3238] = 3232, + [3239] = 3239, + [3240] = 3240, + [3241] = 3232, + [3242] = 3242, + [3243] = 3232, + [3244] = 3232, + [3245] = 3232, + [3246] = 3246, + [3247] = 3232, + [3248] = 3248, + [3249] = 476, + [3250] = 491, + [3251] = 457, + [3252] = 490, + [3253] = 419, + [3254] = 1102, + [3255] = 457, + [3256] = 490, + [3257] = 419, + [3258] = 3258, [3259] = 3259, - [3260] = 3260, - [3261] = 1101, - [3262] = 1101, + [3260] = 476, + [3261] = 3261, + [3262] = 491, [3263] = 3263, - [3264] = 2126, + [3264] = 1102, [3265] = 3265, - [3266] = 1464, + [3266] = 2136, [3267] = 3267, - [3268] = 2176, - [3269] = 3269, - [3270] = 1405, + [3268] = 1102, + [3269] = 1450, + [3270] = 1410, [3271] = 3271, - [3272] = 1406, - [3273] = 3267, - [3274] = 3267, - [3275] = 3267, - [3276] = 3276, - [3277] = 2265, - [3278] = 2270, + [3272] = 1405, + [3273] = 3273, + [3274] = 3274, + [3275] = 3271, + [3276] = 3271, + [3277] = 2165, + [3278] = 3271, [3279] = 3279, [3280] = 3280, - [3281] = 3281, + [3281] = 2258, [3282] = 3282, - [3283] = 3282, + [3283] = 2273, [3284] = 3284, [3285] = 3285, - [3286] = 252, - [3287] = 3287, - [3288] = 3288, - [3289] = 3289, - [3290] = 3289, - [3291] = 396, - [3292] = 3282, + [3286] = 3285, + [3287] = 3285, + [3288] = 3285, + [3289] = 3285, + [3290] = 3290, + [3291] = 3290, + [3292] = 3285, [3293] = 3293, - [3294] = 3282, - [3295] = 3289, - [3296] = 3282, - [3297] = 3282, - [3298] = 3282, - [3299] = 3288, - [3300] = 3289, - [3301] = 3289, - [3302] = 3288, - [3303] = 3303, - [3304] = 3304, - [3305] = 3282, + [3294] = 3294, + [3295] = 3285, + [3296] = 3290, + [3297] = 3290, + [3298] = 3298, + [3299] = 3285, + [3300] = 3290, + [3301] = 3301, + [3302] = 3290, + [3303] = 3290, + [3304] = 3285, + [3305] = 244, [3306] = 3306, - [3307] = 3289, - [3308] = 3289, - [3309] = 3289, - [3310] = 3282, - [3311] = 3282, - [3312] = 3289, - [3313] = 3289, - [3314] = 3289, - [3315] = 3282, - [3316] = 3316, - [3317] = 3288, - [3318] = 3282, - [3319] = 474, - [3320] = 460, - [3321] = 3289, - [3322] = 3282, - [3323] = 3323, - [3324] = 3324, - [3325] = 3289, - [3326] = 3289, - [3327] = 3282, - [3328] = 3328, - [3329] = 3329, - [3330] = 459, - [3331] = 397, - [3332] = 449, - [3333] = 3333, - [3334] = 3334, + [3307] = 3307, + [3308] = 3308, + [3309] = 3306, + [3310] = 3310, + [3311] = 3285, + [3312] = 3312, + [3313] = 3290, + [3314] = 3285, + [3315] = 3315, + [3316] = 3290, + [3317] = 3290, + [3318] = 3290, + [3319] = 3319, + [3320] = 3285, + [3321] = 332, + [3322] = 3290, + [3323] = 3306, + [3324] = 3290, + [3325] = 462, + [3326] = 3285, + [3327] = 443, + [3328] = 3290, + [3329] = 3285, + [3330] = 3306, + [3331] = 3331, + [3332] = 442, + [3333] = 426, + [3334] = 465, [3335] = 3335, - [3336] = 433, - [3337] = 484, - [3338] = 329, - [3339] = 445, - [3340] = 3340, - [3341] = 420, - [3342] = 456, - [3343] = 453, - [3344] = 360, - [3345] = 3345, + [3336] = 3336, + [3337] = 3337, + [3338] = 3338, + [3339] = 413, + [3340] = 388, + [3341] = 409, + [3342] = 488, + [3343] = 3343, + [3344] = 3344, + [3345] = 501, [3346] = 3346, - [3347] = 3347, - [3348] = 475, - [3349] = 448, - [3350] = 489, - [3351] = 310, - [3352] = 488, - [3353] = 440, - [3354] = 434, - [3355] = 416, - [3356] = 412, - [3357] = 408, - [3358] = 405, - [3359] = 340, - [3360] = 335, - [3361] = 3361, - [3362] = 3362, - [3363] = 3363, + [3347] = 403, + [3348] = 414, + [3349] = 415, + [3350] = 416, + [3351] = 418, + [3352] = 487, + [3353] = 421, + [3354] = 425, + [3355] = 315, + [3356] = 3356, + [3357] = 446, + [3358] = 431, + [3359] = 433, + [3360] = 435, + [3361] = 500, + [3362] = 387, + [3363] = 422, [3364] = 3364, - [3365] = 3364, - [3366] = 3364, + [3365] = 3365, + [3366] = 3366, [3367] = 3367, - [3368] = 3368, - [3369] = 3364, - [3370] = 3364, - [3371] = 422, - [3372] = 3364, - [3373] = 3373, - [3374] = 3364, - [3375] = 3364, - [3376] = 3376, - [3377] = 3377, - [3378] = 3364, - [3379] = 3364, - [3380] = 3364, - [3381] = 3364, - [3382] = 3382, - [3383] = 3383, - [3384] = 3384, + [3368] = 318, + [3369] = 3367, + [3370] = 3370, + [3371] = 3371, + [3372] = 3372, + [3373] = 3367, + [3374] = 3374, + [3375] = 3375, + [3376] = 3367, + [3377] = 3367, + [3378] = 3367, + [3379] = 3367, + [3380] = 3367, + [3381] = 3367, + [3382] = 3367, + [3383] = 3367, + [3384] = 3367, [3385] = 3385, [3386] = 3386, [3387] = 3387, @@ -6818,161 +6828,161 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [3403] = 3403, [3404] = 3404, [3405] = 3405, - [3406] = 3399, - [3407] = 3399, + [3406] = 3406, + [3407] = 3407, [3408] = 3408, [3409] = 3409, - [3410] = 3399, - [3411] = 3399, + [3410] = 3410, + [3411] = 3411, [3412] = 3412, [3413] = 3413, [3414] = 3414, - [3415] = 3399, - [3416] = 3416, - [3417] = 3417, - [3418] = 3418, - [3419] = 3419, + [3415] = 3412, + [3416] = 3412, + [3417] = 3412, + [3418] = 3412, + [3419] = 3412, [3420] = 3420, - [3421] = 3399, + [3421] = 3412, [3422] = 3422, - [3423] = 3399, - [3424] = 3424, - [3425] = 3399, - [3426] = 3426, - [3427] = 3399, + [3423] = 3412, + [3424] = 3412, + [3425] = 3412, + [3426] = 3412, + [3427] = 3427, [3428] = 3428, [3429] = 3429, - [3430] = 3399, - [3431] = 3399, + [3430] = 3412, + [3431] = 3431, [3432] = 3432, - [3433] = 3432, + [3433] = 3433, [3434] = 3434, [3435] = 3435, [3436] = 3436, - [3437] = 3437, - [3438] = 3438, - [3439] = 3439, - [3440] = 3432, + [3437] = 1410, + [3438] = 1413, + [3439] = 3436, + [3440] = 3440, [3441] = 3441, [3442] = 3442, - [3443] = 3439, - [3444] = 3438, - [3445] = 3437, + [3443] = 3443, + [3444] = 3435, + [3445] = 3445, [3446] = 3446, - [3447] = 3438, - [3448] = 3436, - [3449] = 3449, - [3450] = 3446, - [3451] = 3434, - [3452] = 3435, + [3447] = 3443, + [3448] = 3448, + [3449] = 332, + [3450] = 3448, + [3451] = 3435, + [3452] = 3443, [3453] = 3436, - [3454] = 3439, - [3455] = 1411, - [3456] = 3432, - [3457] = 3457, - [3458] = 3446, - [3459] = 3434, - [3460] = 3435, - [3461] = 3436, - [3462] = 3435, - [3463] = 3436, - [3464] = 3446, - [3465] = 3434, - [3466] = 3446, - [3467] = 3436, - [3468] = 3437, - [3469] = 3438, - [3470] = 3470, - [3471] = 3436, - [3472] = 3439, - [3473] = 3434, - [3474] = 3432, - [3475] = 3435, - [3476] = 3435, - [3477] = 3435, - [3478] = 3434, - [3479] = 3436, + [3454] = 3446, + [3455] = 3440, + [3456] = 3441, + [3457] = 3442, + [3458] = 3436, + [3459] = 3436, + [3460] = 244, + [3461] = 3440, + [3462] = 3446, + [3463] = 3443, + [3464] = 3435, + [3465] = 3448, + [3466] = 3441, + [3467] = 3442, + [3468] = 1416, + [3469] = 3442, + [3470] = 3440, + [3471] = 3441, + [3472] = 3440, + [3473] = 3436, + [3474] = 3441, + [3475] = 3442, + [3476] = 3448, + [3477] = 3477, + [3478] = 3435, + [3479] = 3443, [3480] = 3446, - [3481] = 3436, - [3482] = 3435, - [3483] = 3434, - [3484] = 3446, - [3485] = 3434, - [3486] = 3446, - [3487] = 3434, - [3488] = 3436, - [3489] = 3432, - [3490] = 3439, - [3491] = 3438, - [3492] = 3437, - [3493] = 3432, - [3494] = 3494, - [3495] = 3435, - [3496] = 3439, - [3497] = 3434, - [3498] = 396, - [3499] = 3499, - [3500] = 3438, - [3501] = 3446, - [3502] = 3432, - [3503] = 3439, - [3504] = 3439, - [3505] = 3432, - [3506] = 3439, - [3507] = 3438, - [3508] = 3437, - [3509] = 3438, - [3510] = 1404, - [3511] = 3438, - [3512] = 3437, - [3513] = 3437, - [3514] = 1405, - [3515] = 3437, - [3516] = 3437, - [3517] = 1423, - [3518] = 3436, - [3519] = 3435, - [3520] = 3437, - [3521] = 3438, - [3522] = 3439, - [3523] = 3432, - [3524] = 3434, - [3525] = 3446, - [3526] = 1406, - [3527] = 1424, - [3528] = 3437, - [3529] = 3438, - [3530] = 3436, - [3531] = 3531, - [3532] = 3435, - [3533] = 3434, - [3534] = 3435, - [3535] = 3535, - [3536] = 3446, - [3537] = 3432, - [3538] = 3439, - [3539] = 3438, - [3540] = 3437, - [3541] = 252, - [3542] = 3432, - [3543] = 3439, - [3544] = 3446, - [3545] = 3545, - [3546] = 1464, + [3481] = 3481, + [3482] = 3482, + [3483] = 1405, + [3484] = 3448, + [3485] = 3485, + [3486] = 3443, + [3487] = 3446, + [3488] = 3435, + [3489] = 3489, + [3490] = 3446, + [3491] = 3442, + [3492] = 3448, + [3493] = 3443, + [3494] = 3436, + [3495] = 3440, + [3496] = 3441, + [3497] = 3435, + [3498] = 3441, + [3499] = 3440, + [3500] = 3436, + [3501] = 3442, + [3502] = 3448, + [3503] = 3442, + [3504] = 3446, + [3505] = 3442, + [3506] = 3441, + [3507] = 3440, + [3508] = 3446, + [3509] = 3443, + [3510] = 3448, + [3511] = 1457, + [3512] = 3435, + [3513] = 3443, + [3514] = 3435, + [3515] = 3448, + [3516] = 3448, + [3517] = 3435, + [3518] = 3443, + [3519] = 3446, + [3520] = 3446, + [3521] = 3448, + [3522] = 3441, + [3523] = 3440, + [3524] = 1456, + [3525] = 3436, + [3526] = 3440, + [3527] = 3441, + [3528] = 3442, + [3529] = 3448, + [3530] = 3435, + [3531] = 3443, + [3532] = 3442, + [3533] = 3441, + [3534] = 3440, + [3535] = 3446, + [3536] = 3436, + [3537] = 3436, + [3538] = 3436, + [3539] = 3539, + [3540] = 3435, + [3541] = 3442, + [3542] = 3441, + [3543] = 3543, + [3544] = 3440, + [3545] = 3446, + [3546] = 3443, [3547] = 3547, - [3548] = 422, + [3548] = 3548, [3549] = 3549, [3550] = 3550, [3551] = 3551, [3552] = 3552, [3553] = 3553, - [3554] = 3554, + [3554] = 3548, [3555] = 3555, [3556] = 3556, [3557] = 3557, [3558] = 3558, [3559] = 3559, - [3560] = 3560, + [3560] = 1450, [3561] = 3561, [3562] = 3562, [3563] = 3563, @@ -6982,1084 +6992,1087 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [3567] = 3567, [3568] = 3568, [3569] = 3569, - [3570] = 3561, + [3570] = 3570, [3571] = 3571, - [3572] = 3568, + [3572] = 318, [3573] = 3573, - [3574] = 3574, + [3574] = 3565, [3575] = 3575, [3576] = 3576, [3577] = 3577, - [3578] = 1482, + [3578] = 3578, [3579] = 3579, - [3580] = 1485, + [3580] = 3580, [3581] = 3581, - [3582] = 1493, + [3582] = 3580, [3583] = 3583, - [3584] = 1487, - [3585] = 1484, + [3584] = 3584, + [3585] = 3585, [3586] = 3586, [3587] = 3587, [3588] = 3588, - [3589] = 3577, - [3590] = 3590, - [3591] = 3591, - [3592] = 1481, + [3589] = 3580, + [3590] = 3588, + [3591] = 3587, + [3592] = 3592, [3593] = 3593, [3594] = 3594, [3595] = 3595, - [3596] = 1573, - [3597] = 3597, - [3598] = 3598, + [3596] = 3587, + [3597] = 3588, + [3598] = 3584, [3599] = 3599, - [3600] = 3577, + [3600] = 3600, [3601] = 3601, - [3602] = 3588, - [3603] = 3601, - [3604] = 3604, - [3605] = 3577, - [3606] = 3588, - [3607] = 3607, + [3602] = 3586, + [3603] = 3603, + [3604] = 3586, + [3605] = 3580, + [3606] = 3606, + [3607] = 3595, [3608] = 3608, - [3609] = 1486, - [3610] = 3610, - [3611] = 1488, + [3609] = 3609, + [3610] = 3608, + [3611] = 3611, [3612] = 3612, [3613] = 3613, - [3614] = 3614, + [3614] = 3587, [3615] = 3615, - [3616] = 3583, - [3617] = 3588, - [3618] = 1489, - [3619] = 3619, - [3620] = 3581, - [3621] = 1491, - [3622] = 3622, - [3623] = 1501, - [3624] = 3624, - [3625] = 3625, - [3626] = 3601, - [3627] = 3583, - [3628] = 3591, - [3629] = 3629, - [3630] = 3577, - [3631] = 3601, + [3616] = 3588, + [3617] = 1531, + [3618] = 3584, + [3619] = 3586, + [3620] = 3620, + [3621] = 3621, + [3622] = 3595, + [3623] = 1530, + [3624] = 3584, + [3625] = 1528, + [3626] = 1526, + [3627] = 3627, + [3628] = 3595, + [3629] = 3588, + [3630] = 3580, + [3631] = 3608, [3632] = 3632, - [3633] = 3588, - [3634] = 3594, - [3635] = 3588, - [3636] = 3593, - [3637] = 3581, - [3638] = 3638, - [3639] = 3639, - [3640] = 3640, - [3641] = 3594, - [3642] = 3642, - [3643] = 3593, - [3644] = 3601, - [3645] = 3583, - [3646] = 3594, - [3647] = 3593, - [3648] = 3648, - [3649] = 3594, - [3650] = 3593, - [3651] = 3651, + [3633] = 3580, + [3634] = 3608, + [3635] = 3608, + [3636] = 3636, + [3637] = 3595, + [3638] = 3595, + [3639] = 3620, + [3640] = 3586, + [3641] = 3584, + [3642] = 1486, + [3643] = 3643, + [3644] = 3644, + [3645] = 3608, + [3646] = 3646, + [3647] = 3621, + [3648] = 1532, + [3649] = 1497, + [3650] = 3586, + [3651] = 3580, [3652] = 3652, - [3653] = 3653, - [3654] = 3654, - [3655] = 3655, + [3653] = 1525, + [3654] = 3586, + [3655] = 1487, [3656] = 3656, - [3657] = 3581, - [3658] = 3658, - [3659] = 3588, - [3660] = 3660, - [3661] = 3583, - [3662] = 3593, - [3663] = 3594, - [3664] = 3601, + [3657] = 3588, + [3658] = 3587, + [3659] = 3659, + [3660] = 3587, + [3661] = 3661, + [3662] = 3662, + [3663] = 3595, + [3664] = 3664, [3665] = 3665, - [3666] = 3594, - [3667] = 3593, - [3668] = 3668, - [3669] = 3601, - [3670] = 3670, - [3671] = 3671, - [3672] = 3672, - [3673] = 1520, - [3674] = 3577, - [3675] = 3581, + [3666] = 3666, + [3667] = 3667, + [3668] = 1495, + [3669] = 3595, + [3670] = 3584, + [3671] = 1493, + [3672] = 1498, + [3673] = 3580, + [3674] = 3674, + [3675] = 3595, [3676] = 3676, [3677] = 3677, - [3678] = 1507, - [3679] = 1508, - [3680] = 3588, - [3681] = 3583, - [3682] = 3590, - [3683] = 3683, - [3684] = 3581, - [3685] = 3588, - [3686] = 3583, - [3687] = 3601, - [3688] = 3581, - [3689] = 1509, - [3690] = 3583, - [3691] = 3691, - [3692] = 3593, - [3693] = 3594, - [3694] = 1511, - [3695] = 3588, - [3696] = 3577, - [3697] = 3581, - [3698] = 3698, - [3699] = 3581, - [3700] = 3601, - [3701] = 3601, - [3702] = 3594, - [3703] = 3583, - [3704] = 3577, - [3705] = 3593, - [3706] = 3706, - [3707] = 3707, - [3708] = 3706, - [3709] = 3709, - [3710] = 3581, - [3711] = 3711, + [3678] = 3586, + [3679] = 3584, + [3680] = 3667, + [3681] = 1508, + [3682] = 3682, + [3683] = 3587, + [3684] = 1509, + [3685] = 3580, + [3686] = 3686, + [3687] = 3687, + [3688] = 1518, + [3689] = 3689, + [3690] = 3690, + [3691] = 3608, + [3692] = 3595, + [3693] = 3693, + [3694] = 1524, + [3695] = 3587, + [3696] = 3588, + [3697] = 3697, + [3698] = 3584, + [3699] = 3699, + [3700] = 3587, + [3701] = 3595, + [3702] = 1523, + [3703] = 3586, + [3704] = 3587, + [3705] = 3586, + [3706] = 3588, + [3707] = 3608, + [3708] = 3708, + [3709] = 3586, + [3710] = 3710, + [3711] = 3682, [3712] = 3712, [3713] = 3713, - [3714] = 3583, - [3715] = 3577, - [3716] = 3601, - [3717] = 3581, - [3718] = 3594, - [3719] = 3593, - [3720] = 3583, + [3714] = 3580, + [3715] = 3595, + [3716] = 3716, + [3717] = 3608, + [3718] = 3595, + [3719] = 3584, + [3720] = 3608, [3721] = 3721, - [3722] = 3581, - [3723] = 1498, - [3724] = 3583, - [3725] = 3588, + [3722] = 1522, + [3723] = 3586, + [3724] = 3724, + [3725] = 3586, [3726] = 3588, - [3727] = 3727, + [3727] = 3608, [3728] = 3588, - [3729] = 3588, + [3729] = 3729, [3730] = 3730, - [3731] = 3731, - [3732] = 3593, - [3733] = 3588, - [3734] = 3594, - [3735] = 3577, - [3736] = 3577, - [3737] = 3601, + [3731] = 3587, + [3732] = 3588, + [3733] = 3595, + [3734] = 3584, + [3735] = 3587, + [3736] = 3595, + [3737] = 3737, [3738] = 3738, - [3739] = 3594, - [3740] = 3740, - [3741] = 3741, - [3742] = 3588, - [3743] = 3593, + [3739] = 3739, + [3740] = 3584, + [3741] = 3587, + [3742] = 3742, + [3743] = 3580, [3744] = 3744, - [3745] = 3745, + [3745] = 3588, [3746] = 3746, - [3747] = 3577, - [3748] = 3601, - [3749] = 3721, - [3750] = 3594, - [3751] = 3593, - [3752] = 3752, - [3753] = 3753, - [3754] = 3754, + [3747] = 3747, + [3748] = 3595, + [3749] = 3608, + [3750] = 3750, + [3751] = 3751, + [3752] = 3584, + [3753] = 3588, + [3754] = 3580, [3755] = 3755, [3756] = 3756, [3757] = 3757, [3758] = 3758, - [3759] = 3758, - [3760] = 3754, + [3759] = 3759, + [3760] = 3760, [3761] = 3761, - [3762] = 3762, + [3762] = 3757, [3763] = 3763, - [3764] = 1404, + [3764] = 1410, [3765] = 3765, - [3766] = 3766, + [3766] = 3760, [3767] = 3767, - [3768] = 3768, - [3769] = 3763, - [3770] = 3762, - [3771] = 3755, + [3768] = 3767, + [3769] = 3769, + [3770] = 3765, + [3771] = 3757, [3772] = 3772, [3773] = 3773, - [3774] = 3774, - [3775] = 3758, + [3774] = 3763, + [3775] = 3775, [3776] = 3776, - [3777] = 3758, - [3778] = 1405, + [3777] = 3777, + [3778] = 1413, [3779] = 3779, - [3780] = 3753, - [3781] = 3781, - [3782] = 3782, - [3783] = 3774, + [3780] = 3765, + [3781] = 3765, + [3782] = 3760, + [3783] = 3767, [3784] = 3784, - [3785] = 3753, - [3786] = 3756, - [3787] = 3782, - [3788] = 3788, - [3789] = 3754, - [3790] = 3761, - [3791] = 3791, - [3792] = 1411, - [3793] = 3793, - [3794] = 1406, + [3785] = 3785, + [3786] = 3786, + [3787] = 3785, + [3788] = 3758, + [3789] = 3789, + [3790] = 3758, + [3791] = 3784, + [3792] = 3784, + [3793] = 3759, + [3794] = 3794, [3795] = 3795, - [3796] = 3767, - [3797] = 3758, - [3798] = 3798, - [3799] = 3762, - [3800] = 3763, - [3801] = 3801, - [3802] = 3773, - [3803] = 3772, - [3804] = 3755, - [3805] = 3758, + [3796] = 3759, + [3797] = 3797, + [3798] = 3795, + [3799] = 3797, + [3800] = 3767, + [3801] = 3794, + [3802] = 1405, + [3803] = 3760, + [3804] = 3765, + [3805] = 3759, [3806] = 3806, [3807] = 3807, - [3808] = 3772, - [3809] = 3773, - [3810] = 3774, - [3811] = 3772, - [3812] = 3753, - [3813] = 3763, - [3814] = 3762, - [3815] = 3774, - [3816] = 3773, - [3817] = 3753, - [3818] = 3782, - [3819] = 3819, - [3820] = 3753, - [3821] = 3782, + [3808] = 3759, + [3809] = 1410, + [3810] = 3810, + [3811] = 3811, + [3812] = 3759, + [3813] = 1413, + [3814] = 3760, + [3815] = 3784, + [3816] = 3816, + [3817] = 3817, + [3818] = 3806, + [3819] = 3767, + [3820] = 3820, + [3821] = 3821, [3822] = 3822, - [3823] = 1404, - [3824] = 3756, - [3825] = 2126, - [3826] = 3826, - [3827] = 3754, - [3828] = 3761, - [3829] = 3829, - [3830] = 3767, - [3831] = 3758, - [3832] = 3832, - [3833] = 3762, - [3834] = 3834, - [3835] = 3763, - [3836] = 3755, - [3837] = 3837, - [3838] = 3774, - [3839] = 3753, - [3840] = 3782, - [3841] = 3762, - [3842] = 3842, - [3843] = 3755, - [3844] = 3763, + [3823] = 3794, + [3824] = 3795, + [3825] = 3797, + [3826] = 3758, + [3827] = 3806, + [3828] = 3763, + [3829] = 3757, + [3830] = 3795, + [3831] = 3794, + [3832] = 3795, + [3833] = 3797, + [3834] = 3794, + [3835] = 3784, + [3836] = 3758, + [3837] = 3797, + [3838] = 3785, + [3839] = 3794, + [3840] = 3795, + [3841] = 3841, + [3842] = 3806, + [3843] = 3784, + [3844] = 3758, [3845] = 3845, - [3846] = 3772, - [3847] = 3782, - [3848] = 3753, - [3849] = 3762, - [3850] = 3763, - [3851] = 3773, - [3852] = 3852, - [3853] = 3853, + [3846] = 3846, + [3847] = 3847, + [3848] = 3848, + [3849] = 1405, + [3850] = 3785, + [3851] = 3851, + [3852] = 3757, + [3853] = 3763, [3854] = 3854, - [3855] = 3762, - [3856] = 3763, - [3857] = 3774, + [3855] = 3855, + [3856] = 3856, + [3857] = 3759, [3858] = 3858, - [3859] = 3782, - [3860] = 3755, - [3861] = 3772, - [3862] = 3773, - [3863] = 3755, - [3864] = 3772, - [3865] = 3773, - [3866] = 1406, - [3867] = 3756, + [3859] = 3859, + [3860] = 3806, + [3861] = 3861, + [3862] = 3862, + [3863] = 3765, + [3864] = 3760, + [3865] = 3767, + [3866] = 3806, + [3867] = 3867, [3868] = 3868, - [3869] = 3754, - [3870] = 3753, - [3871] = 3761, - [3872] = 3756, - [3873] = 3755, - [3874] = 3782, - [3875] = 3754, - [3876] = 3271, - [3877] = 3877, - [3878] = 3761, - [3879] = 3767, - [3880] = 3756, - [3881] = 3754, - [3882] = 3269, - [3883] = 3772, - [3884] = 3774, - [3885] = 3754, - [3886] = 3761, - [3887] = 3773, - [3888] = 3767, - [3889] = 3758, + [3869] = 3869, + [3870] = 3767, + [3871] = 1413, + [3872] = 3872, + [3873] = 3797, + [3874] = 3767, + [3875] = 3760, + [3876] = 3765, + [3877] = 3785, + [3878] = 3763, + [3879] = 3785, + [3880] = 3880, + [3881] = 3759, + [3882] = 3806, + [3883] = 3785, + [3884] = 3757, + [3885] = 3885, + [3886] = 3763, + [3887] = 3763, + [3888] = 3758, + [3889] = 3784, [3890] = 3890, - [3891] = 1405, - [3892] = 3892, - [3893] = 1411, - [3894] = 3767, - [3895] = 3895, - [3896] = 3774, - [3897] = 3897, - [3898] = 3774, - [3899] = 3753, - [3900] = 3782, - [3901] = 3758, - [3902] = 3762, - [3903] = 3767, + [3891] = 1416, + [3892] = 3757, + [3893] = 3763, + [3894] = 3757, + [3895] = 3797, + [3896] = 3784, + [3897] = 3797, + [3898] = 3758, + [3899] = 3757, + [3900] = 3763, + [3901] = 3901, + [3902] = 3795, + [3903] = 3785, [3904] = 3904, - [3905] = 3763, - [3906] = 3755, - [3907] = 3774, - [3908] = 3908, - [3909] = 3772, - [3910] = 3773, - [3911] = 3753, - [3912] = 3774, - [3913] = 3782, - [3914] = 1406, - [3915] = 3761, - [3916] = 3754, - [3917] = 3753, - [3918] = 3782, - [3919] = 1405, - [3920] = 3920, - [3921] = 3758, - [3922] = 1404, - [3923] = 3923, - [3924] = 3756, - [3925] = 3559, - [3926] = 3560, - [3927] = 3927, - [3928] = 3928, - [3929] = 3758, - [3930] = 3754, - [3931] = 3565, - [3932] = 3932, - [3933] = 3566, - [3934] = 3762, - [3935] = 3935, - [3936] = 3936, - [3937] = 3756, - [3938] = 3763, - [3939] = 3939, - [3940] = 3761, - [3941] = 3941, - [3942] = 3942, - [3943] = 3943, - [3944] = 3758, - [3945] = 3756, - [3946] = 3762, - [3947] = 3763, - [3948] = 3767, - [3949] = 3767, - [3950] = 3758, - [3951] = 3758, - [3952] = 3755, - [3953] = 3772, + [3905] = 1416, + [3906] = 3765, + [3907] = 3907, + [3908] = 3785, + [3909] = 3909, + [3910] = 3767, + [3911] = 3806, + [3912] = 3912, + [3913] = 3794, + [3914] = 3760, + [3915] = 3806, + [3916] = 3767, + [3917] = 3760, + [3918] = 3765, + [3919] = 3273, + [3920] = 3794, + [3921] = 3795, + [3922] = 3765, + [3923] = 3760, + [3924] = 3767, + [3925] = 3794, + [3926] = 3795, + [3927] = 3763, + [3928] = 3556, + [3929] = 3557, + [3930] = 3757, + [3931] = 3763, + [3932] = 3760, + [3933] = 3784, + [3934] = 3558, + [3935] = 3797, + [3936] = 3559, + [3937] = 3806, + [3938] = 3274, + [3939] = 3767, + [3940] = 3759, + [3941] = 3795, + [3942] = 3758, + [3943] = 3795, + [3944] = 3944, + [3945] = 3794, + [3946] = 3794, + [3947] = 3806, + [3948] = 1410, + [3949] = 3757, + [3950] = 3763, + [3951] = 3757, + [3952] = 3952, + [3953] = 3797, [3954] = 3954, - [3955] = 3774, - [3956] = 3782, - [3957] = 3755, - [3958] = 3772, - [3959] = 3773, - [3960] = 3773, - [3961] = 3767, - [3962] = 3761, - [3963] = 3754, - [3964] = 3756, - [3965] = 3773, - [3966] = 3772, - [3967] = 3755, - [3968] = 3756, - [3969] = 3767, - [3970] = 3970, - [3971] = 3761, - [3972] = 3754, - [3973] = 3762, - [3974] = 3974, - [3975] = 3756, - [3976] = 3976, - [3977] = 3756, - [3978] = 3767, - [3979] = 3763, - [3980] = 3761, - [3981] = 3754, - [3982] = 3754, - [3983] = 3761, - [3984] = 3773, - [3985] = 3767, - [3986] = 3772, - [3987] = 3755, - [3988] = 3756, - [3989] = 3755, - [3990] = 3773, - [3991] = 3767, - [3992] = 3761, - [3993] = 3772, - [3994] = 3761, - [3995] = 3774, - [3996] = 3996, + [3955] = 3765, + [3956] = 3784, + [3957] = 2136, + [3958] = 3758, + [3959] = 3759, + [3960] = 3765, + [3961] = 3760, + [3962] = 3767, + [3963] = 3760, + [3964] = 3785, + [3965] = 3965, + [3966] = 3795, + [3967] = 3797, + [3968] = 3765, + [3969] = 3759, + [3970] = 3784, + [3971] = 3767, + [3972] = 3760, + [3973] = 3765, + [3974] = 3797, + [3975] = 3797, + [3976] = 3758, + [3977] = 3977, + [3978] = 3759, + [3979] = 3759, + [3980] = 3785, + [3981] = 3785, + [3982] = 3982, + [3983] = 3983, + [3984] = 3794, + [3985] = 3758, + [3986] = 3784, + [3987] = 3784, + [3988] = 3758, + [3989] = 3785, + [3990] = 3758, + [3991] = 3991, + [3992] = 3806, + [3993] = 1405, + [3994] = 3797, + [3995] = 3785, + [3996] = 3759, [3997] = 3997, - [3998] = 3998, - [3999] = 3999, + [3998] = 3806, + [3999] = 3784, [4000] = 4000, [4001] = 4001, [4002] = 4002, - [4003] = 4003, - [4004] = 4002, - [4005] = 4005, - [4006] = 4002, - [4007] = 4007, + [4003] = 4002, + [4004] = 1486, + [4005] = 1487, + [4006] = 4006, + [4007] = 4002, [4008] = 4008, [4009] = 4009, [4010] = 4010, [4011] = 4011, [4012] = 4012, - [4013] = 4013, - [4014] = 4000, + [4013] = 4006, + [4014] = 4011, [4015] = 4015, - [4016] = 4016, - [4017] = 4005, + [4016] = 4012, + [4017] = 4017, [4018] = 4018, [4019] = 4012, - [4020] = 4012, - [4021] = 3999, - [4022] = 4013, - [4023] = 4001, - [4024] = 4000, - [4025] = 4000, - [4026] = 4026, + [4020] = 4020, + [4021] = 4015, + [4022] = 4012, + [4023] = 4023, + [4024] = 4024, + [4025] = 4025, + [4026] = 4001, [4027] = 4012, [4028] = 4012, - [4029] = 4012, + [4029] = 4029, [4030] = 4030, - [4031] = 4030, - [4032] = 4032, - [4033] = 4012, - [4034] = 4005, - [4035] = 4002, - [4036] = 4007, + [4031] = 4025, + [4032] = 4012, + [4033] = 4033, + [4034] = 4010, + [4035] = 4010, + [4036] = 4012, [4037] = 4037, - [4038] = 4012, - [4039] = 4012, - [4040] = 4040, - [4041] = 4012, - [4042] = 4042, + [4038] = 4011, + [4039] = 4039, + [4040] = 4012, + [4041] = 2165, + [4042] = 4012, [4043] = 4043, - [4044] = 4012, - [4045] = 3997, - [4046] = 4010, - [4047] = 4032, - [4048] = 4007, - [4049] = 4008, - [4050] = 4001, - [4051] = 3997, - [4052] = 4008, - [4053] = 4005, - [4054] = 4005, - [4055] = 3997, - [4056] = 3999, - [4057] = 3559, - [4058] = 3560, + [4044] = 4044, + [4045] = 4012, + [4046] = 4046, + [4047] = 1497, + [4048] = 4048, + [4049] = 4039, + [4050] = 4050, + [4051] = 4006, + [4052] = 4000, + [4053] = 4053, + [4054] = 3556, + [4055] = 3557, + [4056] = 4018, + [4057] = 3558, + [4058] = 3559, [4059] = 4059, - [4060] = 4018, - [4061] = 4015, - [4062] = 3566, + [4060] = 4015, + [4061] = 4061, + [4062] = 4024, [4063] = 4063, - [4064] = 3997, - [4065] = 3565, - [4066] = 3565, - [4067] = 4012, - [4068] = 4015, - [4069] = 4069, - [4070] = 4015, - [4071] = 3560, - [4072] = 3559, - [4073] = 4013, - [4074] = 3566, - [4075] = 4000, - [4076] = 4018, - [4077] = 4037, - [4078] = 1511, - [4079] = 4030, - [4080] = 3997, - [4081] = 3999, - [4082] = 1509, - [4083] = 4001, - [4084] = 4001, - [4085] = 4037, - [4086] = 4010, - [4087] = 4087, - [4088] = 4002, - [4089] = 3999, - [4090] = 4013, - [4091] = 4000, - [4092] = 4030, - [4093] = 4037, - [4094] = 4008, - [4095] = 4030, - [4096] = 4010, - [4097] = 4000, - [4098] = 4018, - [4099] = 4007, - [4100] = 4100, - [4101] = 4101, - [4102] = 4102, - [4103] = 4013, - [4104] = 4018, - [4105] = 4105, - [4106] = 4106, - [4107] = 3559, - [4108] = 4000, - [4109] = 4032, - [4110] = 4110, - [4111] = 4010, - [4112] = 4013, - [4113] = 4032, - [4114] = 4002, - [4115] = 4032, - [4116] = 4030, - [4117] = 3560, - [4118] = 4037, - [4119] = 4007, + [4064] = 4001, + [4065] = 4001, + [4066] = 4059, + [4067] = 4046, + [4068] = 4024, + [4069] = 4011, + [4070] = 4053, + [4071] = 4050, + [4072] = 4072, + [4073] = 4018, + [4074] = 4010, + [4075] = 4015, + [4076] = 4000, + [4077] = 4050, + [4078] = 4000, + [4079] = 4018, + [4080] = 4046, + [4081] = 4081, + [4082] = 4050, + [4083] = 4010, + [4084] = 4025, + [4085] = 4039, + [4086] = 4086, + [4087] = 4006, + [4088] = 4000, + [4089] = 4089, + [4090] = 4011, + [4091] = 4002, + [4092] = 4039, + [4093] = 4053, + [4094] = 4006, + [4095] = 4012, + [4096] = 4025, + [4097] = 4059, + [4098] = 4002, + [4099] = 4010, + [4100] = 4043, + [4101] = 4044, + [4102] = 4046, + [4103] = 4025, + [4104] = 4002, + [4105] = 4072, + [4106] = 3559, + [4107] = 4107, + [4108] = 4006, + [4109] = 4025, + [4110] = 3556, + [4111] = 3556, + [4112] = 3557, + [4113] = 4113, + [4114] = 3557, + [4115] = 4039, + [4116] = 4018, + [4117] = 4018, + [4118] = 4118, + [4119] = 3558, [4120] = 4120, - [4121] = 4121, - [4122] = 4010, - [4123] = 4123, - [4124] = 4015, - [4125] = 3997, - [4126] = 4000, - [4127] = 4013, - [4128] = 4042, - [4129] = 3566, - [4130] = 4043, - [4131] = 4015, - [4132] = 4007, - [4133] = 3560, - [4134] = 4134, - [4135] = 4002, - [4136] = 4010, - [4137] = 4137, - [4138] = 3566, - [4139] = 3559, - [4140] = 3565, - [4141] = 4005, - [4142] = 4012, + [4121] = 4011, + [4122] = 4122, + [4123] = 4011, + [4124] = 3556, + [4125] = 4046, + [4126] = 4050, + [4127] = 3559, + [4128] = 4010, + [4129] = 3559, + [4130] = 4001, + [4131] = 4000, + [4132] = 4132, + [4133] = 4053, + [4134] = 4024, + [4135] = 3557, + [4136] = 4015, + [4137] = 4059, + [4138] = 4138, + [4139] = 4139, + [4140] = 4050, + [4141] = 3556, + [4142] = 3559, [4143] = 4015, - [4144] = 4001, - [4145] = 4030, - [4146] = 4008, - [4147] = 3999, + [4144] = 4024, + [4145] = 4024, + [4146] = 3557, + [4147] = 4053, [4148] = 4018, - [4149] = 4149, + [4149] = 4001, [4150] = 4150, - [4151] = 4005, - [4152] = 4152, - [4153] = 4153, - [4154] = 4037, - [4155] = 3566, - [4156] = 1487, - [4157] = 4008, - [4158] = 4015, + [4151] = 3558, + [4152] = 4001, + [4153] = 4018, + [4154] = 4024, + [4155] = 3557, + [4156] = 3556, + [4157] = 3558, + [4158] = 4158, [4159] = 4018, - [4160] = 3559, + [4160] = 4011, [4161] = 4161, [4162] = 4001, - [4163] = 3999, + [4163] = 4015, [4164] = 4164, - [4165] = 3560, - [4166] = 4018, - [4167] = 4015, - [4168] = 3565, - [4169] = 3566, - [4170] = 4010, - [4171] = 3999, - [4172] = 4172, - [4173] = 4173, - [4174] = 4018, - [4175] = 4001, - [4176] = 4176, - [4177] = 3999, - [4178] = 3565, - [4179] = 3559, - [4180] = 3560, - [4181] = 4001, - [4182] = 4182, - [4183] = 4005, + [4165] = 3559, + [4166] = 3558, + [4167] = 4018, + [4168] = 3557, + [4169] = 3556, + [4170] = 3559, + [4171] = 4171, + [4172] = 4010, + [4173] = 4011, + [4174] = 4174, + [4175] = 4010, + [4176] = 4059, + [4177] = 4039, + [4178] = 4015, + [4179] = 4179, + [4180] = 4025, + [4181] = 3558, + [4182] = 4025, + [4183] = 4012, [4184] = 4184, - [4185] = 4185, - [4186] = 4015, - [4187] = 3997, - [4188] = 4182, - [4189] = 4189, - [4190] = 4001, - [4191] = 4008, - [4192] = 4008, - [4193] = 4005, - [4194] = 4015, - [4195] = 4037, - [4196] = 4030, - [4197] = 4007, - [4198] = 4185, - [4199] = 3566, - [4200] = 4032, - [4201] = 4007, - [4202] = 4032, - [4203] = 4000, - [4204] = 4032, - [4205] = 4013, - [4206] = 4206, - [4207] = 4010, - [4208] = 4002, - [4209] = 4209, - [4210] = 4210, - [4211] = 4189, + [4185] = 4024, + [4186] = 4186, + [4187] = 4059, + [4188] = 4006, + [4189] = 4053, + [4190] = 4000, + [4191] = 4191, + [4192] = 4192, + [4193] = 4193, + [4194] = 4006, + [4195] = 3559, + [4196] = 4196, + [4197] = 4197, + [4198] = 4059, + [4199] = 4053, + [4200] = 4015, + [4201] = 4000, + [4202] = 4002, + [4203] = 4203, + [4204] = 4050, + [4205] = 4205, + [4206] = 4002, + [4207] = 4207, + [4208] = 4046, + [4209] = 4059, + [4210] = 4053, + [4211] = 4000, [4212] = 4212, - [4213] = 4213, - [4214] = 4214, + [4213] = 4024, + [4214] = 4039, [4215] = 4215, - [4216] = 4010, + [4216] = 4001, [4217] = 4001, - [4218] = 3999, + [4218] = 4218, [4219] = 4219, - [4220] = 4220, - [4221] = 4018, - [4222] = 4032, - [4223] = 3565, - [4224] = 3565, - [4225] = 4015, - [4226] = 4226, - [4227] = 4227, - [4228] = 3560, - [4229] = 3559, - [4230] = 3566, - [4231] = 3999, - [4232] = 4232, - [4233] = 4233, - [4234] = 4008, - [4235] = 4007, - [4236] = 4037, - [4237] = 4030, - [4238] = 3560, - [4239] = 4010, - [4240] = 4032, - [4241] = 4007, + [4220] = 4046, + [4221] = 4050, + [4222] = 4039, + [4223] = 4046, + [4224] = 4224, + [4225] = 4024, + [4226] = 4039, + [4227] = 4046, + [4228] = 4050, + [4229] = 4164, + [4230] = 4015, + [4231] = 4231, + [4232] = 4002, + [4233] = 4171, + [4234] = 4174, + [4235] = 4046, + [4236] = 4050, + [4237] = 4237, + [4238] = 4238, + [4239] = 4239, + [4240] = 4240, + [4241] = 4241, [4242] = 4242, - [4243] = 4243, - [4244] = 4244, - [4245] = 4018, - [4246] = 4007, - [4247] = 3559, - [4248] = 4248, - [4249] = 4032, - [4250] = 4250, - [4251] = 3997, - [4252] = 4252, - [4253] = 4007, - [4254] = 3999, - [4255] = 4008, - [4256] = 4256, + [4243] = 3558, + [4244] = 4018, + [4245] = 4039, + [4246] = 4006, + [4247] = 4002, + [4248] = 4039, + [4249] = 3557, + [4250] = 4000, + [4251] = 4053, + [4252] = 3556, + [4253] = 4253, + [4254] = 4254, + [4255] = 4025, + [4256] = 4059, [4257] = 4257, - [4258] = 4002, - [4259] = 2176, - [4260] = 3565, - [4261] = 4010, - [4262] = 4262, - [4263] = 4013, - [4264] = 4000, + [4258] = 4010, + [4259] = 3558, + [4260] = 4000, + [4261] = 4059, + [4262] = 4046, + [4263] = 4050, + [4264] = 4264, [4265] = 4265, - [4266] = 4001, - [4267] = 4005, - [4268] = 4037, - [4269] = 4269, - [4270] = 4018, - [4271] = 3559, - [4272] = 3560, - [4273] = 4069, - [4274] = 4274, - [4275] = 4037, - [4276] = 4037, - [4277] = 4005, - [4278] = 4030, - [4279] = 4030, - [4280] = 4013, - [4281] = 4001, - [4282] = 4282, - [4283] = 4037, - [4284] = 3565, - [4285] = 4015, - [4286] = 3999, - [4287] = 4000, - [4288] = 4032, - [4289] = 3559, - [4290] = 3560, - [4291] = 4000, - [4292] = 4292, - [4293] = 4005, - [4294] = 4013, - [4295] = 4002, - [4296] = 4008, - [4297] = 4008, - [4298] = 4298, - [4299] = 3566, - [4300] = 4300, - [4301] = 4015, - [4302] = 3997, - [4303] = 4002, - [4304] = 4030, - [4305] = 4000, - [4306] = 4018, - [4307] = 4013, - [4308] = 3565, - [4309] = 4007, - [4310] = 4002, - [4311] = 3997, - [4312] = 3566, + [4266] = 4011, + [4267] = 4053, + [4268] = 4000, + [4269] = 4053, + [4270] = 3556, + [4271] = 4059, + [4272] = 3557, + [4273] = 4018, + [4274] = 3558, + [4275] = 4053, + [4276] = 4001, + [4277] = 4001, + [4278] = 4024, + [4279] = 4024, + [4280] = 4280, + [4281] = 3559, + [4282] = 4015, + [4283] = 4015, + [4284] = 4015, + [4285] = 3559, + [4286] = 4000, + [4287] = 4024, + [4288] = 4288, + [4289] = 4001, + [4290] = 3558, + [4291] = 4002, + [4292] = 4018, + [4293] = 4018, + [4294] = 3557, + [4295] = 3556, + [4296] = 4059, + [4297] = 4011, + [4298] = 4000, + [4299] = 4299, + [4300] = 4011, + [4301] = 4010, + [4302] = 4010, + [4303] = 4025, + [4304] = 4050, + [4305] = 4046, + [4306] = 4306, + [4307] = 4011, + [4308] = 4006, + [4309] = 4039, + [4310] = 4025, + [4311] = 4311, + [4312] = 4006, [4313] = 4313, - [4314] = 4314, - [4315] = 3997, - [4316] = 4008, - [4317] = 4317, + [4314] = 4025, + [4315] = 4010, + [4316] = 4006, + [4317] = 4002, [4318] = 4318, [4319] = 4319, [4320] = 4320, [4321] = 4321, [4322] = 4322, [4323] = 4323, - [4324] = 4319, + [4324] = 4324, [4325] = 4325, [4326] = 4326, - [4327] = 4327, + [4327] = 4322, [4328] = 4328, [4329] = 4329, [4330] = 4330, - [4331] = 4320, + [4331] = 4331, [4332] = 4332, [4333] = 4333, - [4334] = 4317, - [4335] = 4321, - [4336] = 4336, - [4337] = 4332, - [4338] = 4329, - [4339] = 4330, - [4340] = 4318, - [4341] = 4323, - [4342] = 4333, + [4334] = 4334, + [4335] = 4320, + [4336] = 4329, + [4337] = 4326, + [4338] = 4338, + [4339] = 4339, + [4340] = 4340, + [4341] = 4333, + [4342] = 4342, [4343] = 4343, - [4344] = 4326, - [4345] = 4327, - [4346] = 4328, - [4347] = 4321, - [4348] = 4317, - [4349] = 4329, - [4350] = 4343, - [4351] = 4351, - [4352] = 4343, - [4353] = 4351, - [4354] = 4354, - [4355] = 4323, - [4356] = 4330, - [4357] = 4326, - [4358] = 4327, - [4359] = 4328, + [4344] = 4332, + [4345] = 4345, + [4346] = 4331, + [4347] = 4347, + [4348] = 4348, + [4349] = 4328, + [4350] = 4326, + [4351] = 4328, + [4352] = 4331, + [4353] = 4332, + [4354] = 4333, + [4355] = 4355, + [4356] = 4356, + [4357] = 4357, + [4358] = 4320, + [4359] = 4359, [4360] = 4360, [4361] = 4361, [4362] = 4362, - [4363] = 4317, - [4364] = 4364, - [4365] = 4323, - [4366] = 4326, - [4367] = 4327, - [4368] = 4328, + [4363] = 4363, + [4364] = 4363, + [4365] = 4365, + [4366] = 4365, + [4367] = 4367, + [4368] = 4321, [4369] = 4369, - [4370] = 4370, - [4371] = 4371, - [4372] = 4372, - [4373] = 4373, - [4374] = 4343, - [4375] = 4351, - [4376] = 4323, - [4377] = 4326, - [4378] = 4327, - [4379] = 4328, - [4380] = 4318, - [4381] = 4351, - [4382] = 4364, - [4383] = 4320, - [4384] = 4384, - [4385] = 4322, - [4386] = 4332, - [4387] = 4354, - [4388] = 4323, - [4389] = 4322, - [4390] = 4318, - [4391] = 4326, - [4392] = 4327, - [4393] = 4328, - [4394] = 4326, - [4395] = 4319, - [4396] = 4322, - [4397] = 4397, - [4398] = 4398, - [4399] = 4328, - [4400] = 4327, - [4401] = 4321, - [4402] = 4402, - [4403] = 4323, - [4404] = 4354, + [4370] = 4328, + [4371] = 4333, + [4372] = 4332, + [4373] = 4331, + [4374] = 4332, + [4375] = 4333, + [4376] = 4331, + [4377] = 4329, + [4378] = 4328, + [4379] = 4323, + [4380] = 4321, + [4381] = 4321, + [4382] = 4382, + [4383] = 4383, + [4384] = 4363, + [4385] = 4326, + [4386] = 4320, + [4387] = 4325, + [4388] = 4322, + [4389] = 4324, + [4390] = 4363, + [4391] = 4328, + [4392] = 4365, + [4393] = 4393, + [4394] = 4331, + [4395] = 4332, + [4396] = 4333, + [4397] = 4330, + [4398] = 4333, + [4399] = 4332, + [4400] = 4331, + [4401] = 4357, + [4402] = 4363, + [4403] = 4328, + [4404] = 4347, [4405] = 4405, [4406] = 4406, - [4407] = 4407, - [4408] = 4354, - [4409] = 4323, - [4410] = 4410, - [4411] = 4411, - [4412] = 4326, - [4413] = 4327, - [4414] = 4328, - [4415] = 4318, - [4416] = 4351, - [4417] = 4343, - [4418] = 4354, - [4419] = 4318, - [4420] = 4364, - [4421] = 4421, - [4422] = 4322, - [4423] = 4423, - [4424] = 4319, - [4425] = 4320, - [4426] = 4364, - [4427] = 4354, - [4428] = 4322, - [4429] = 4322, - [4430] = 4323, - [4431] = 4319, - [4432] = 4351, - [4433] = 4326, - [4434] = 4327, - [4435] = 4328, - [4436] = 4318, - [4437] = 4343, - [4438] = 4318, - [4439] = 4320, - [4440] = 4440, - [4441] = 4317, - [4442] = 4442, + [4407] = 4343, + [4408] = 4408, + [4409] = 4409, + [4410] = 4329, + [4411] = 4343, + [4412] = 4328, + [4413] = 4413, + [4414] = 4323, + [4415] = 4331, + [4416] = 4332, + [4417] = 4333, + [4418] = 4418, + [4419] = 4326, + [4420] = 4324, + [4421] = 4320, + [4422] = 4365, + [4423] = 4330, + [4424] = 4322, + [4425] = 4347, + [4426] = 4426, + [4427] = 4427, + [4428] = 4323, + [4429] = 4325, + [4430] = 4324, + [4431] = 4357, + [4432] = 4322, + [4433] = 4328, + [4434] = 4330, + [4435] = 4343, + [4436] = 4331, + [4437] = 4332, + [4438] = 4333, + [4439] = 4325, + [4440] = 4325, + [4441] = 4357, + [4442] = 4347, [4443] = 4443, - [4444] = 4328, - [4445] = 4364, - [4446] = 4327, - [4447] = 4447, - [4448] = 4326, - [4449] = 4332, - [4450] = 4364, - [4451] = 4323, + [4444] = 4357, + [4445] = 4445, + [4446] = 4347, + [4447] = 4365, + [4448] = 4347, + [4449] = 4449, + [4450] = 4322, + [4451] = 4330, [4452] = 4452, - [4453] = 4453, - [4454] = 4326, - [4455] = 4327, - [4456] = 4328, - [4457] = 4333, + [4453] = 4321, + [4454] = 4328, + [4455] = 4343, + [4456] = 4343, + [4457] = 4331, [4458] = 4332, - [4459] = 4323, - [4460] = 4330, - [4461] = 4328, - [4462] = 4329, - [4463] = 4327, - [4464] = 4464, - [4465] = 4326, - [4466] = 4321, - [4467] = 4321, - [4468] = 4323, - [4469] = 4469, - [4470] = 4326, - [4471] = 4327, - [4472] = 4328, - [4473] = 4329, - [4474] = 4333, - [4475] = 4475, + [4459] = 4333, + [4460] = 4321, + [4461] = 4324, + [4462] = 4330, + [4463] = 4347, + [4464] = 4333, + [4465] = 4322, + [4466] = 4332, + [4467] = 4357, + [4468] = 4331, + [4469] = 4325, + [4470] = 4323, + [4471] = 4328, + [4472] = 4324, + [4473] = 4331, + [4474] = 4332, + [4475] = 4333, [4476] = 4323, - [4477] = 4328, - [4478] = 4478, - [4479] = 4318, - [4480] = 4480, - [4481] = 4322, - [4482] = 4333, - [4483] = 4364, - [4484] = 4484, - [4485] = 4317, - [4486] = 4333, - [4487] = 4330, - [4488] = 4332, - [4489] = 4330, - [4490] = 4321, - [4491] = 4318, - [4492] = 4364, - [4493] = 4318, - [4494] = 4494, - [4495] = 4323, - [4496] = 4320, - [4497] = 4494, - [4498] = 4317, - [4499] = 4330, + [4477] = 4365, + [4478] = 4320, + [4479] = 4328, + [4480] = 4333, + [4481] = 4326, + [4482] = 4365, + [4483] = 4483, + [4484] = 4357, + [4485] = 4320, + [4486] = 4329, + [4487] = 4329, + [4488] = 4365, + [4489] = 4489, + [4490] = 4329, + [4491] = 4333, + [4492] = 4332, + [4493] = 4493, + [4494] = 4331, + [4495] = 4495, + [4496] = 4328, + [4497] = 4497, + [4498] = 4328, + [4499] = 4499, [4500] = 4500, - [4501] = 4318, - [4502] = 4329, - [4503] = 4330, - [4504] = 4322, - [4505] = 4505, - [4506] = 4343, + [4501] = 4501, + [4502] = 4363, + [4503] = 4321, + [4504] = 4363, + [4505] = 4321, + [4506] = 4329, [4507] = 4507, - [4508] = 4318, - [4509] = 4351, - [4510] = 4510, - [4511] = 4364, - [4512] = 4512, - [4513] = 4354, - [4514] = 4514, - [4515] = 4354, - [4516] = 4318, - [4517] = 4333, - [4518] = 4332, - [4519] = 4519, - [4520] = 4520, + [4508] = 4363, + [4509] = 4343, + [4510] = 4321, + [4511] = 4511, + [4512] = 4363, + [4513] = 4330, + [4514] = 4363, + [4515] = 4515, + [4516] = 4516, + [4517] = 4363, + [4518] = 4363, + [4519] = 4357, + [4520] = 4347, [4521] = 4321, - [4522] = 4322, - [4523] = 4364, - [4524] = 4524, - [4525] = 4318, - [4526] = 2270, - [4527] = 4329, - [4528] = 4329, - [4529] = 4320, + [4522] = 4522, + [4523] = 4523, + [4524] = 4330, + [4525] = 4321, + [4526] = 4497, + [4527] = 4322, + [4528] = 4363, + [4529] = 4343, [4530] = 4530, - [4531] = 4531, - [4532] = 4532, - [4533] = 4351, - [4534] = 4343, - [4535] = 4535, - [4536] = 2265, - [4537] = 4317, - [4538] = 4364, - [4539] = 4351, - [4540] = 4354, - [4541] = 4321, - [4542] = 4464, - [4543] = 4330, + [4531] = 4325, + [4532] = 4330, + [4533] = 4363, + [4534] = 4534, + [4535] = 4322, + [4536] = 4329, + [4537] = 4321, + [4538] = 4538, + [4539] = 4326, + [4540] = 4320, + [4541] = 4365, + [4542] = 4325, + [4543] = 4324, [4544] = 4544, - [4545] = 4319, - [4546] = 4318, - [4547] = 4354, - [4548] = 4317, - [4549] = 4343, - [4550] = 4351, - [4551] = 4318, - [4552] = 4364, - [4553] = 4364, - [4554] = 4319, - [4555] = 4322, - [4556] = 4318, - [4557] = 4557, - [4558] = 4320, - [4559] = 4343, - [4560] = 4319, - [4561] = 4561, - [4562] = 4562, + [4545] = 4500, + [4546] = 4323, + [4547] = 4547, + [4548] = 4324, + [4549] = 4363, + [4550] = 4363, + [4551] = 4323, + [4552] = 4357, + [4553] = 4553, + [4554] = 4365, + [4555] = 4325, + [4556] = 4347, + [4557] = 4320, + [4558] = 4322, + [4559] = 4330, + [4560] = 4326, + [4561] = 4324, + [4562] = 4343, [4563] = 4563, - [4564] = 4320, - [4565] = 4318, - [4566] = 4319, - [4567] = 4354, - [4568] = 4330, - [4569] = 4322, - [4570] = 4319, - [4571] = 4332, - [4572] = 4333, + [4564] = 4329, + [4565] = 4330, + [4566] = 4343, + [4567] = 4567, + [4568] = 4347, + [4569] = 4325, + [4570] = 4357, + [4571] = 4324, + [4572] = 4363, [4573] = 4321, - [4574] = 4320, - [4575] = 4364, - [4576] = 4576, + [4574] = 4323, + [4575] = 4323, + [4576] = 4363, [4577] = 4577, - [4578] = 4354, + [4578] = 4357, [4579] = 4579, - [4580] = 4329, - [4581] = 4330, - [4582] = 4330, - [4583] = 4583, + [4580] = 4321, + [4581] = 4321, + [4582] = 4582, + [4583] = 4347, [4584] = 4584, - [4585] = 4585, + [4585] = 4326, [4586] = 4586, - [4587] = 4317, - [4588] = 4588, - [4589] = 4329, - [4590] = 4317, - [4591] = 4469, - [4592] = 4500, - [4593] = 4332, - [4594] = 4343, - [4595] = 4494, - [4596] = 4333, - [4597] = 4343, - [4598] = 4321, - [4599] = 4351, - [4600] = 4494, - [4601] = 4330, - [4602] = 4333, - [4603] = 4354, - [4604] = 4494, - [4605] = 4317, - [4606] = 4332, - [4607] = 4317, - [4608] = 4494, - [4609] = 4351, - [4610] = 4330, - [4611] = 4343, - [4612] = 4494, - [4613] = 4351, - [4614] = 4320, - [4615] = 4615, - [4616] = 4494, - [4617] = 4617, - [4618] = 4319, - [4619] = 4322, - [4620] = 4494, - [4621] = 4319, - [4622] = 4329, - [4623] = 4623, - [4624] = 4494, - [4625] = 4625, - [4626] = 4364, - [4627] = 4320, - [4628] = 4494, - [4629] = 4629, - [4630] = 4321, - [4631] = 4329, - [4632] = 4494, - [4633] = 4333, - [4634] = 4332, - [4635] = 4319, - [4636] = 4318, - [4637] = 4332, - [4638] = 4364, - [4639] = 4639, - [4640] = 4640, - [4641] = 4333, - [4642] = 4332, - [4643] = 4320, - [4644] = 4333, - [4645] = 4645, - [4646] = 4646, - [4647] = 4647, + [4587] = 4587, + [4588] = 4326, + [4589] = 4320, + [4590] = 4365, + [4591] = 4323, + [4592] = 4324, + [4593] = 4593, + [4594] = 4501, + [4595] = 4544, + [4596] = 4357, + [4597] = 4363, + [4598] = 4497, + [4599] = 4330, + [4600] = 4600, + [4601] = 4347, + [4602] = 4343, + [4603] = 4497, + [4604] = 2273, + [4605] = 4329, + [4606] = 4343, + [4607] = 4497, + [4608] = 2258, + [4609] = 4347, + [4610] = 4357, + [4611] = 4497, + [4612] = 4343, + [4613] = 4330, + [4614] = 4322, + [4615] = 4497, + [4616] = 4330, + [4617] = 4326, + [4618] = 4618, + [4619] = 4497, + [4620] = 4620, + [4621] = 4321, + [4622] = 4325, + [4623] = 4497, + [4624] = 4322, + [4625] = 4320, + [4626] = 4626, + [4627] = 4497, + [4628] = 4325, + [4629] = 4324, + [4630] = 4323, + [4631] = 4497, + [4632] = 4632, + [4633] = 4324, + [4634] = 4363, + [4635] = 4497, + [4636] = 4329, + [4637] = 4637, + [4638] = 4329, + [4639] = 4326, + [4640] = 4326, + [4641] = 4320, + [4642] = 4642, + [4643] = 4643, + [4644] = 4365, + [4645] = 4320, + [4646] = 4365, + [4647] = 4323, + [4648] = 4648, + [4649] = 4649, + [4650] = 4650, }; static inline bool sym_rune_literal_character_set_1(int32_t c) { @@ -14428,28 +14441,28 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [172] = {.lex_state = 79}, [173] = {.lex_state = 79}, [174] = {.lex_state = 79}, - [175] = {.lex_state = 187}, + [175] = {.lex_state = 79}, [176] = {.lex_state = 79}, - [177] = {.lex_state = 79}, + [177] = {.lex_state = 187}, [178] = {.lex_state = 79}, [179] = {.lex_state = 79}, [180] = {.lex_state = 79}, [181] = {.lex_state = 187}, [182] = {.lex_state = 79}, - [183] = {.lex_state = 79}, + [183] = {.lex_state = 187}, [184] = {.lex_state = 79}, [185] = {.lex_state = 79}, [186] = {.lex_state = 79}, - [187] = {.lex_state = 187}, + [187] = {.lex_state = 79}, [188] = {.lex_state = 79}, [189] = {.lex_state = 79}, - [190] = {.lex_state = 79}, - [191] = {.lex_state = 80}, - [192] = {.lex_state = 79}, + [190] = {.lex_state = 187}, + [191] = {.lex_state = 79}, + [192] = {.lex_state = 80}, [193] = {.lex_state = 79}, - [194] = {.lex_state = 79}, - [195] = {.lex_state = 187}, - [196] = {.lex_state = 187}, + [194] = {.lex_state = 187}, + [195] = {.lex_state = 79}, + [196] = {.lex_state = 79}, [197] = {.lex_state = 79}, [198] = {.lex_state = 79}, [199] = {.lex_state = 79}, @@ -14463,12 +14476,12 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [207] = {.lex_state = 79}, [208] = {.lex_state = 79}, [209] = {.lex_state = 79}, - [210] = {.lex_state = 79}, + [210] = {.lex_state = 185}, [211] = {.lex_state = 79}, [212] = {.lex_state = 79}, - [213] = {.lex_state = 185}, - [214] = {.lex_state = 30}, - [215] = {.lex_state = 79}, + [213] = {.lex_state = 79}, + [214] = {.lex_state = 79}, + [215] = {.lex_state = 30}, [216] = {.lex_state = 185}, [217] = {.lex_state = 185}, [218] = {.lex_state = 185}, @@ -14484,37 +14497,37 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [228] = {.lex_state = 185}, [229] = {.lex_state = 185}, [230] = {.lex_state = 185}, - [231] = {.lex_state = 79}, - [232] = {.lex_state = 79}, - [233] = {.lex_state = 79}, + [231] = {.lex_state = 185}, + [232] = {.lex_state = 189}, + [233] = {.lex_state = 185}, [234] = {.lex_state = 79}, - [235] = {.lex_state = 79}, + [235] = {.lex_state = 189}, [236] = {.lex_state = 79}, [237] = {.lex_state = 79}, - [238] = {.lex_state = 185}, + [238] = {.lex_state = 79}, [239] = {.lex_state = 79}, - [240] = {.lex_state = 185}, + [240] = {.lex_state = 79}, [241] = {.lex_state = 79}, [242] = {.lex_state = 79}, [243] = {.lex_state = 79}, - [244] = {.lex_state = 79}, + [244] = {.lex_state = 185}, [245] = {.lex_state = 79}, [246] = {.lex_state = 79}, [247] = {.lex_state = 79}, - [248] = {.lex_state = 79}, + [248] = {.lex_state = 185}, [249] = {.lex_state = 79}, - [250] = {.lex_state = 189}, + [250] = {.lex_state = 79}, [251] = {.lex_state = 79}, - [252] = {.lex_state = 185}, + [252] = {.lex_state = 79}, [253] = {.lex_state = 79}, [254] = {.lex_state = 79}, [255] = {.lex_state = 79}, [256] = {.lex_state = 79}, - [257] = {.lex_state = 185}, + [257] = {.lex_state = 189}, [258] = {.lex_state = 79}, - [259] = {.lex_state = 189}, + [259] = {.lex_state = 79}, [260] = {.lex_state = 79}, - [261] = {.lex_state = 189}, + [261] = {.lex_state = 79}, [262] = {.lex_state = 79}, [263] = {.lex_state = 79}, [264] = {.lex_state = 79}, @@ -14528,11 +14541,11 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [272] = {.lex_state = 79}, [273] = {.lex_state = 79}, [274] = {.lex_state = 79}, - [275] = {.lex_state = 189}, + [275] = {.lex_state = 79}, [276] = {.lex_state = 79}, [277] = {.lex_state = 79}, [278] = {.lex_state = 79}, - [279] = {.lex_state = 185}, + [279] = {.lex_state = 79}, [280] = {.lex_state = 79}, [281] = {.lex_state = 79}, [282] = {.lex_state = 79}, @@ -14553,210 +14566,210 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [297] = {.lex_state = 79}, [298] = {.lex_state = 79}, [299] = {.lex_state = 79}, - [300] = {.lex_state = 79}, + [300] = {.lex_state = 185}, [301] = {.lex_state = 79}, [302] = {.lex_state = 79}, [303] = {.lex_state = 79}, [304] = {.lex_state = 79}, [305] = {.lex_state = 79}, - [306] = {.lex_state = 79}, + [306] = {.lex_state = 189}, [307] = {.lex_state = 79}, [308] = {.lex_state = 79}, - [309] = {.lex_state = 79}, + [309] = {.lex_state = 185}, [310] = {.lex_state = 185}, - [311] = {.lex_state = 185}, - [312] = {.lex_state = 79}, - [313] = {.lex_state = 79}, - [314] = {.lex_state = 79}, - [315] = {.lex_state = 79}, + [311] = {.lex_state = 79}, + [312] = {.lex_state = 185}, + [313] = {.lex_state = 80}, + [314] = {.lex_state = 80}, + [315] = {.lex_state = 185}, [316] = {.lex_state = 79}, - [317] = {.lex_state = 79}, - [318] = {.lex_state = 80}, - [319] = {.lex_state = 80}, - [320] = {.lex_state = 79}, - [321] = {.lex_state = 79}, - [322] = {.lex_state = 79}, + [317] = {.lex_state = 185}, + [318] = {.lex_state = 185}, + [319] = {.lex_state = 79}, + [320] = {.lex_state = 185}, + [321] = {.lex_state = 80}, + [322] = {.lex_state = 80}, [323] = {.lex_state = 79}, - [324] = {.lex_state = 185}, + [324] = {.lex_state = 79}, [325] = {.lex_state = 79}, - [326] = {.lex_state = 185}, + [326] = {.lex_state = 79}, [327] = {.lex_state = 79}, [328] = {.lex_state = 185}, - [329] = {.lex_state = 185}, - [330] = {.lex_state = 185}, - [331] = {.lex_state = 185}, - [332] = {.lex_state = 80}, + [329] = {.lex_state = 79}, + [330] = {.lex_state = 80}, + [331] = {.lex_state = 80}, + [332] = {.lex_state = 185}, [333] = {.lex_state = 79}, - [334] = {.lex_state = 80}, + [334] = {.lex_state = 185}, [335] = {.lex_state = 185}, - [336] = {.lex_state = 79}, - [337] = {.lex_state = 79}, + [336] = {.lex_state = 80}, + [337] = {.lex_state = 80}, [338] = {.lex_state = 79}, [339] = {.lex_state = 79}, [340] = {.lex_state = 185}, - [341] = {.lex_state = 185}, - [342] = {.lex_state = 80}, - [343] = {.lex_state = 80}, - [344] = {.lex_state = 79}, - [345] = {.lex_state = 79}, - [346] = {.lex_state = 185}, - [347] = {.lex_state = 185}, - [348] = {.lex_state = 185}, - [349] = {.lex_state = 79}, + [341] = {.lex_state = 79}, + [342] = {.lex_state = 185}, + [343] = {.lex_state = 79}, + [344] = {.lex_state = 185}, + [345] = {.lex_state = 185}, + [346] = {.lex_state = 79}, + [347] = {.lex_state = 79}, + [348] = {.lex_state = 80}, + [349] = {.lex_state = 80}, [350] = {.lex_state = 185}, - [351] = {.lex_state = 185}, - [352] = {.lex_state = 185}, - [353] = {.lex_state = 185}, - [354] = {.lex_state = 79}, - [355] = {.lex_state = 80}, - [356] = {.lex_state = 79}, - [357] = {.lex_state = 79}, - [358] = {.lex_state = 185}, - [359] = {.lex_state = 79}, + [351] = {.lex_state = 79}, + [352] = {.lex_state = 79}, + [353] = {.lex_state = 79}, + [354] = {.lex_state = 80}, + [355] = {.lex_state = 79}, + [356] = {.lex_state = 185}, + [357] = {.lex_state = 185}, + [358] = {.lex_state = 79}, + [359] = {.lex_state = 185}, [360] = {.lex_state = 185}, - [361] = {.lex_state = 79}, - [362] = {.lex_state = 79}, - [363] = {.lex_state = 185}, + [361] = {.lex_state = 185}, + [362] = {.lex_state = 185}, + [363] = {.lex_state = 80}, [364] = {.lex_state = 185}, - [365] = {.lex_state = 185}, - [366] = {.lex_state = 185}, + [365] = {.lex_state = 79}, + [366] = {.lex_state = 79}, [367] = {.lex_state = 79}, [368] = {.lex_state = 79}, [369] = {.lex_state = 79}, - [370] = {.lex_state = 79}, + [370] = {.lex_state = 80}, [371] = {.lex_state = 185}, - [372] = {.lex_state = 185}, + [372] = {.lex_state = 79}, [373] = {.lex_state = 79}, - [374] = {.lex_state = 79}, + [374] = {.lex_state = 185}, [375] = {.lex_state = 79}, [376] = {.lex_state = 185}, - [377] = {.lex_state = 79}, - [378] = {.lex_state = 80}, - [379] = {.lex_state = 79}, - [380] = {.lex_state = 79}, + [377] = {.lex_state = 185}, + [378] = {.lex_state = 185}, + [379] = {.lex_state = 80}, + [380] = {.lex_state = 185}, [381] = {.lex_state = 185}, - [382] = {.lex_state = 79}, - [383] = {.lex_state = 80}, - [384] = {.lex_state = 80}, - [385] = {.lex_state = 79}, + [382] = {.lex_state = 185}, + [383] = {.lex_state = 185}, + [384] = {.lex_state = 79}, + [385] = {.lex_state = 185}, [386] = {.lex_state = 185}, - [387] = {.lex_state = 80}, + [387] = {.lex_state = 185}, [388] = {.lex_state = 185}, - [389] = {.lex_state = 80}, - [390] = {.lex_state = 79}, - [391] = {.lex_state = 185}, - [392] = {.lex_state = 185}, - [393] = {.lex_state = 79}, + [389] = {.lex_state = 79}, + [390] = {.lex_state = 80}, + [391] = {.lex_state = 80}, + [392] = {.lex_state = 79}, + [393] = {.lex_state = 185}, [394] = {.lex_state = 79}, - [395] = {.lex_state = 80}, - [396] = {.lex_state = 185}, - [397] = {.lex_state = 185}, - [398] = {.lex_state = 80}, - [399] = {.lex_state = 80}, + [395] = {.lex_state = 185}, + [396] = {.lex_state = 79}, + [397] = {.lex_state = 79}, + [398] = {.lex_state = 79}, + [399] = {.lex_state = 185}, [400] = {.lex_state = 185}, [401] = {.lex_state = 185}, [402] = {.lex_state = 79}, [403] = {.lex_state = 185}, - [404] = {.lex_state = 79}, - [405] = {.lex_state = 185}, - [406] = {.lex_state = 80}, - [407] = {.lex_state = 185}, - [408] = {.lex_state = 185}, + [404] = {.lex_state = 185}, + [405] = {.lex_state = 79}, + [406] = {.lex_state = 79}, + [407] = {.lex_state = 79}, + [408] = {.lex_state = 80}, [409] = {.lex_state = 185}, [410] = {.lex_state = 185}, - [411] = {.lex_state = 185}, + [411] = {.lex_state = 80}, [412] = {.lex_state = 185}, - [413] = {.lex_state = 79}, + [413] = {.lex_state = 185}, [414] = {.lex_state = 185}, [415] = {.lex_state = 185}, [416] = {.lex_state = 185}, - [417] = {.lex_state = 79}, + [417] = {.lex_state = 185}, [418] = {.lex_state = 185}, - [419] = {.lex_state = 80}, - [420] = {.lex_state = 185}, + [419] = {.lex_state = 185}, + [420] = {.lex_state = 79}, [421] = {.lex_state = 185}, [422] = {.lex_state = 185}, - [423] = {.lex_state = 79}, + [423] = {.lex_state = 185}, [424] = {.lex_state = 79}, - [425] = {.lex_state = 79}, + [425] = {.lex_state = 185}, [426] = {.lex_state = 185}, - [427] = {.lex_state = 79}, - [428] = {.lex_state = 80}, + [427] = {.lex_state = 185}, + [428] = {.lex_state = 185}, [429] = {.lex_state = 185}, - [430] = {.lex_state = 79}, + [430] = {.lex_state = 185}, [431] = {.lex_state = 185}, [432] = {.lex_state = 79}, [433] = {.lex_state = 185}, - [434] = {.lex_state = 185}, + [434] = {.lex_state = 79}, [435] = {.lex_state = 185}, - [436] = {.lex_state = 185}, - [437] = {.lex_state = 185}, - [438] = {.lex_state = 185}, - [439] = {.lex_state = 185}, - [440] = {.lex_state = 185}, + [436] = {.lex_state = 79}, + [437] = {.lex_state = 79}, + [438] = {.lex_state = 80}, + [439] = {.lex_state = 79}, + [440] = {.lex_state = 80}, [441] = {.lex_state = 79}, [442] = {.lex_state = 185}, [443] = {.lex_state = 185}, - [444] = {.lex_state = 80}, - [445] = {.lex_state = 185}, + [444] = {.lex_state = 79}, + [445] = {.lex_state = 79}, [446] = {.lex_state = 185}, [447] = {.lex_state = 185}, - [448] = {.lex_state = 185}, - [449] = {.lex_state = 185}, + [448] = {.lex_state = 79}, + [449] = {.lex_state = 79}, [450] = {.lex_state = 185}, - [451] = {.lex_state = 185}, + [451] = {.lex_state = 79}, [452] = {.lex_state = 185}, [453] = {.lex_state = 185}, - [454] = {.lex_state = 79}, + [454] = {.lex_state = 185}, [455] = {.lex_state = 185}, - [456] = {.lex_state = 185}, + [456] = {.lex_state = 79}, [457] = {.lex_state = 185}, - [458] = {.lex_state = 185}, - [459] = {.lex_state = 185}, + [458] = {.lex_state = 79}, + [459] = {.lex_state = 79}, [460] = {.lex_state = 185}, [461] = {.lex_state = 185}, [462] = {.lex_state = 185}, - [463] = {.lex_state = 79}, - [464] = {.lex_state = 79}, + [463] = {.lex_state = 185}, + [464] = {.lex_state = 185}, [465] = {.lex_state = 185}, - [466] = {.lex_state = 185}, - [467] = {.lex_state = 79}, - [468] = {.lex_state = 185}, + [466] = {.lex_state = 79}, + [467] = {.lex_state = 185}, + [468] = {.lex_state = 80}, [469] = {.lex_state = 185}, - [470] = {.lex_state = 79}, - [471] = {.lex_state = 80}, - [472] = {.lex_state = 79}, + [470] = {.lex_state = 80}, + [471] = {.lex_state = 185}, + [472] = {.lex_state = 185}, [473] = {.lex_state = 185}, - [474] = {.lex_state = 185}, - [475] = {.lex_state = 185}, - [476] = {.lex_state = 79}, + [474] = {.lex_state = 79}, + [475] = {.lex_state = 79}, + [476] = {.lex_state = 185}, [477] = {.lex_state = 185}, - [478] = {.lex_state = 80}, - [479] = {.lex_state = 79}, - [480] = {.lex_state = 185}, + [478] = {.lex_state = 79}, + [479] = {.lex_state = 185}, + [480] = {.lex_state = 79}, [481] = {.lex_state = 185}, - [482] = {.lex_state = 185}, + [482] = {.lex_state = 80}, [483] = {.lex_state = 185}, [484] = {.lex_state = 185}, - [485] = {.lex_state = 185}, + [485] = {.lex_state = 80}, [486] = {.lex_state = 185}, [487] = {.lex_state = 185}, [488] = {.lex_state = 185}, [489] = {.lex_state = 185}, - [490] = {.lex_state = 80}, - [491] = {.lex_state = 79}, + [490] = {.lex_state = 185}, + [491] = {.lex_state = 185}, [492] = {.lex_state = 79}, [493] = {.lex_state = 185}, - [494] = {.lex_state = 185}, + [494] = {.lex_state = 79}, [495] = {.lex_state = 185}, - [496] = {.lex_state = 185}, - [497] = {.lex_state = 185}, - [498] = {.lex_state = 79}, - [499] = {.lex_state = 79}, + [496] = {.lex_state = 79}, + [497] = {.lex_state = 79}, + [498] = {.lex_state = 185}, + [499] = {.lex_state = 185}, [500] = {.lex_state = 185}, - [501] = {.lex_state = 80}, - [502] = {.lex_state = 80}, - [503] = {.lex_state = 79}, + [501] = {.lex_state = 185}, + [502] = {.lex_state = 79}, + [503] = {.lex_state = 185}, [504] = {.lex_state = 79}, [505] = {.lex_state = 79}, [506] = {.lex_state = 79}, @@ -15199,13 +15212,13 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [943] = {.lex_state = 79}, [944] = {.lex_state = 79}, [945] = {.lex_state = 79}, - [946] = {.lex_state = 2}, + [946] = {.lex_state = 79}, [947] = {.lex_state = 2}, [948] = {.lex_state = 2}, [949] = {.lex_state = 2}, [950] = {.lex_state = 2}, [951] = {.lex_state = 2}, - [952] = {.lex_state = 187}, + [952] = {.lex_state = 2}, [953] = {.lex_state = 187}, [954] = {.lex_state = 187}, [955] = {.lex_state = 187}, @@ -15232,19 +15245,19 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [976] = {.lex_state = 187}, [977] = {.lex_state = 187}, [978] = {.lex_state = 187}, - [979] = {.lex_state = 191}, - [980] = {.lex_state = 37}, - [981] = {.lex_state = 37}, + [979] = {.lex_state = 187}, + [980] = {.lex_state = 187}, + [981] = {.lex_state = 191}, [982] = {.lex_state = 37}, - [983] = {.lex_state = 191}, - [984] = {.lex_state = 37}, - [985] = {.lex_state = 191}, - [986] = {.lex_state = 187}, - [987] = {.lex_state = 191}, + [983] = {.lex_state = 37}, + [984] = {.lex_state = 191}, + [985] = {.lex_state = 187}, + [986] = {.lex_state = 191}, + [987] = {.lex_state = 37}, [988] = {.lex_state = 187}, - [989] = {.lex_state = 37}, - [990] = {.lex_state = 187}, - [991] = {.lex_state = 187}, + [989] = {.lex_state = 191}, + [990] = {.lex_state = 37}, + [991] = {.lex_state = 37}, [992] = {.lex_state = 187}, [993] = {.lex_state = 187}, [994] = {.lex_state = 187}, @@ -15350,46 +15363,46 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1094] = {.lex_state = 187}, [1095] = {.lex_state = 187}, [1096] = {.lex_state = 187}, - [1097] = {.lex_state = 194}, + [1097] = {.lex_state = 187}, [1098] = {.lex_state = 194}, [1099] = {.lex_state = 194}, - [1100] = {.lex_state = 6}, - [1101] = {.lex_state = 193}, - [1102] = {.lex_state = 6}, + [1100] = {.lex_state = 194}, + [1101] = {.lex_state = 6}, + [1102] = {.lex_state = 193}, [1103] = {.lex_state = 6}, [1104] = {.lex_state = 6}, [1105] = {.lex_state = 6}, - [1106] = {.lex_state = 2}, + [1106] = {.lex_state = 6}, [1107] = {.lex_state = 2}, [1108] = {.lex_state = 2}, [1109] = {.lex_state = 2}, - [1110] = {.lex_state = 2}, - [1111] = {.lex_state = 10}, + [1110] = {.lex_state = 10}, + [1111] = {.lex_state = 2}, [1112] = {.lex_state = 2}, [1113] = {.lex_state = 2}, [1114] = {.lex_state = 2}, [1115] = {.lex_state = 2}, [1116] = {.lex_state = 2}, [1117] = {.lex_state = 2}, - [1118] = {.lex_state = 10}, - [1119] = {.lex_state = 10}, + [1118] = {.lex_state = 2}, + [1119] = {.lex_state = 2}, [1120] = {.lex_state = 10}, - [1121] = {.lex_state = 2}, + [1121] = {.lex_state = 10}, [1122] = {.lex_state = 10}, - [1123] = {.lex_state = 2}, + [1123] = {.lex_state = 10}, [1124] = {.lex_state = 2}, [1125] = {.lex_state = 2}, [1126] = {.lex_state = 2}, [1127] = {.lex_state = 2}, - [1128] = {.lex_state = 4}, - [1129] = {.lex_state = 2}, - [1130] = {.lex_state = 4}, - [1131] = {.lex_state = 4}, - [1132] = {.lex_state = 4}, + [1128] = {.lex_state = 2}, + [1129] = {.lex_state = 4}, + [1130] = {.lex_state = 2}, + [1131] = {.lex_state = 2}, + [1132] = {.lex_state = 2}, [1133] = {.lex_state = 2}, - [1134] = {.lex_state = 2}, - [1135] = {.lex_state = 2}, - [1136] = {.lex_state = 2}, + [1134] = {.lex_state = 4}, + [1135] = {.lex_state = 4}, + [1136] = {.lex_state = 4}, [1137] = {.lex_state = 2}, [1138] = {.lex_state = 2}, [1139] = {.lex_state = 2}, @@ -15410,7 +15423,7 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1154] = {.lex_state = 2}, [1155] = {.lex_state = 2}, [1156] = {.lex_state = 2}, - [1157] = {.lex_state = 41}, + [1157] = {.lex_state = 2}, [1158] = {.lex_state = 2}, [1159] = {.lex_state = 2}, [1160] = {.lex_state = 2}, @@ -15424,7 +15437,7 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [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}, @@ -15441,25 +15454,25 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1185] = {.lex_state = 2}, [1186] = {.lex_state = 2}, [1187] = {.lex_state = 2}, - [1188] = {.lex_state = 2}, + [1188] = {.lex_state = 41}, [1189] = {.lex_state = 2}, [1190] = {.lex_state = 2}, [1191] = {.lex_state = 2}, [1192] = {.lex_state = 2}, [1193] = {.lex_state = 2}, [1194] = {.lex_state = 2}, - [1195] = {.lex_state = 2}, - [1196] = {.lex_state = 2}, - [1197] = {.lex_state = 41}, + [1195] = {.lex_state = 43}, + [1196] = {.lex_state = 43}, + [1197] = {.lex_state = 43}, [1198] = {.lex_state = 2}, [1199] = {.lex_state = 2}, [1200] = {.lex_state = 2}, [1201] = {.lex_state = 2}, - [1202] = {.lex_state = 2}, - [1203] = {.lex_state = 43}, + [1202] = {.lex_state = 43}, + [1203] = {.lex_state = 2}, [1204] = {.lex_state = 2}, - [1205] = {.lex_state = 41}, - [1206] = {.lex_state = 43}, + [1205] = {.lex_state = 2}, + [1206] = {.lex_state = 2}, [1207] = {.lex_state = 2}, [1208] = {.lex_state = 2}, [1209] = {.lex_state = 2}, @@ -15469,14 +15482,14 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1213] = {.lex_state = 2}, [1214] = {.lex_state = 2}, [1215] = {.lex_state = 2}, - [1216] = {.lex_state = 43}, + [1216] = {.lex_state = 2}, [1217] = {.lex_state = 2}, [1218] = {.lex_state = 2}, - [1219] = {.lex_state = 43}, + [1219] = {.lex_state = 2}, [1220] = {.lex_state = 2}, [1221] = {.lex_state = 2}, [1222] = {.lex_state = 41}, - [1223] = {.lex_state = 41}, + [1223] = {.lex_state = 2}, [1224] = {.lex_state = 2}, [1225] = {.lex_state = 2}, [1226] = {.lex_state = 2}, @@ -15492,7 +15505,7 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1236] = {.lex_state = 2}, [1237] = {.lex_state = 2}, [1238] = {.lex_state = 2}, - [1239] = {.lex_state = 41}, + [1239] = {.lex_state = 2}, [1240] = {.lex_state = 2}, [1241] = {.lex_state = 2}, [1242] = {.lex_state = 2}, @@ -15500,23 +15513,23 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1244] = {.lex_state = 2}, [1245] = {.lex_state = 2}, [1246] = {.lex_state = 2}, - [1247] = {.lex_state = 2}, - [1248] = {.lex_state = 2}, - [1249] = {.lex_state = 43}, - [1250] = {.lex_state = 2}, + [1247] = {.lex_state = 41}, + [1248] = {.lex_state = 41}, + [1249] = {.lex_state = 41}, + [1250] = {.lex_state = 43}, [1251] = {.lex_state = 2}, [1252] = {.lex_state = 2}, - [1253] = {.lex_state = 37}, - [1254] = {.lex_state = 2}, - [1255] = {.lex_state = 37}, - [1256] = {.lex_state = 41}, - [1257] = {.lex_state = 37}, + [1253] = {.lex_state = 2}, + [1254] = {.lex_state = 37}, + [1255] = {.lex_state = 2}, + [1256] = {.lex_state = 37}, + [1257] = {.lex_state = 41}, [1258] = {.lex_state = 37}, [1259] = {.lex_state = 37}, [1260] = {.lex_state = 37}, [1261] = {.lex_state = 37}, [1262] = {.lex_state = 37}, - [1263] = {.lex_state = 37}, + [1263] = {.lex_state = 39}, [1264] = {.lex_state = 37}, [1265] = {.lex_state = 37}, [1266] = {.lex_state = 37}, @@ -15528,21 +15541,21 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1272] = {.lex_state = 37}, [1273] = {.lex_state = 37}, [1274] = {.lex_state = 37}, - [1275] = {.lex_state = 37}, + [1275] = {.lex_state = 39}, [1276] = {.lex_state = 37}, [1277] = {.lex_state = 37}, [1278] = {.lex_state = 37}, [1279] = {.lex_state = 37}, - [1280] = {.lex_state = 39}, + [1280] = {.lex_state = 37}, [1281] = {.lex_state = 37}, [1282] = {.lex_state = 37}, - [1283] = {.lex_state = 37}, + [1283] = {.lex_state = 39}, [1284] = {.lex_state = 37}, [1285] = {.lex_state = 37}, [1286] = {.lex_state = 37}, - [1287] = {.lex_state = 39}, + [1287] = {.lex_state = 37}, [1288] = {.lex_state = 37}, - [1289] = {.lex_state = 39}, + [1289] = {.lex_state = 37}, [1290] = {.lex_state = 37}, [1291] = {.lex_state = 37}, [1292] = {.lex_state = 37}, @@ -15642,44 +15655,44 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1386] = {.lex_state = 37}, [1387] = {.lex_state = 37}, [1388] = {.lex_state = 37}, - [1389] = {.lex_state = 14}, + [1389] = {.lex_state = 37}, [1390] = {.lex_state = 37}, - [1391] = {.lex_state = 37}, - [1392] = {.lex_state = 14}, - [1393] = {.lex_state = 37}, - [1394] = {.lex_state = 37}, - [1395] = {.lex_state = 37}, + [1391] = {.lex_state = 14}, + [1392] = {.lex_state = 37}, + [1393] = {.lex_state = 14}, + [1394] = {.lex_state = 14}, + [1395] = {.lex_state = 14}, [1396] = {.lex_state = 37}, - [1397] = {.lex_state = 14}, + [1397] = {.lex_state = 37}, [1398] = {.lex_state = 14}, - [1399] = {.lex_state = 14}, - [1400] = {.lex_state = 49}, - [1401] = {.lex_state = 49}, - [1402] = {.lex_state = 195}, + [1399] = {.lex_state = 37}, + [1400] = {.lex_state = 37}, + [1401] = {.lex_state = 195}, + [1402] = {.lex_state = 49}, [1403] = {.lex_state = 49}, - [1404] = {.lex_state = 194}, + [1404] = {.lex_state = 49}, [1405] = {.lex_state = 194}, [1406] = {.lex_state = 194}, - [1407] = {.lex_state = 14}, + [1407] = {.lex_state = 194}, [1408] = {.lex_state = 195}, - [1409] = {.lex_state = 194}, + [1409] = {.lex_state = 49}, [1410] = {.lex_state = 194}, - [1411] = {.lex_state = 194}, - [1412] = {.lex_state = 194}, - [1413] = {.lex_state = 195}, - [1414] = {.lex_state = 195}, - [1415] = {.lex_state = 49}, + [1411] = {.lex_state = 14}, + [1412] = {.lex_state = 195}, + [1413] = {.lex_state = 194}, + [1414] = {.lex_state = 194}, + [1415] = {.lex_state = 195}, [1416] = {.lex_state = 194}, [1417] = {.lex_state = 194}, [1418] = {.lex_state = 194}, [1419] = {.lex_state = 194}, - [1420] = {.lex_state = 14}, + [1420] = {.lex_state = 194}, [1421] = {.lex_state = 194}, - [1422] = {.lex_state = 14}, - [1423] = {.lex_state = 194}, + [1422] = {.lex_state = 194}, + [1423] = {.lex_state = 14}, [1424] = {.lex_state = 194}, [1425] = {.lex_state = 194}, - [1426] = {.lex_state = 14}, + [1426] = {.lex_state = 194}, [1427] = {.lex_state = 194}, [1428] = {.lex_state = 194}, [1429] = {.lex_state = 194}, @@ -15692,7 +15705,7 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1436] = {.lex_state = 194}, [1437] = {.lex_state = 194}, [1438] = {.lex_state = 194}, - [1439] = {.lex_state = 14}, + [1439] = {.lex_state = 194}, [1440] = {.lex_state = 194}, [1441] = {.lex_state = 194}, [1442] = {.lex_state = 194}, @@ -15707,12 +15720,12 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1451] = {.lex_state = 194}, [1452] = {.lex_state = 194}, [1453] = {.lex_state = 194}, - [1454] = {.lex_state = 194}, - [1455] = {.lex_state = 194}, + [1454] = {.lex_state = 14}, + [1455] = {.lex_state = 14}, [1456] = {.lex_state = 194}, [1457] = {.lex_state = 194}, [1458] = {.lex_state = 194}, - [1459] = {.lex_state = 194}, + [1459] = {.lex_state = 14}, [1460] = {.lex_state = 194}, [1461] = {.lex_state = 194}, [1462] = {.lex_state = 194}, @@ -15745,11 +15758,11 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1489] = {.lex_state = 194}, [1490] = {.lex_state = 194}, [1491] = {.lex_state = 194}, - [1492] = {.lex_state = 199}, + [1492] = {.lex_state = 194}, [1493] = {.lex_state = 194}, - [1494] = {.lex_state = 199}, + [1494] = {.lex_state = 49}, [1495] = {.lex_state = 194}, - [1496] = {.lex_state = 49}, + [1496] = {.lex_state = 194}, [1497] = {.lex_state = 194}, [1498] = {.lex_state = 194}, [1499] = {.lex_state = 194}, @@ -15770,7 +15783,7 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1514] = {.lex_state = 194}, [1515] = {.lex_state = 194}, [1516] = {.lex_state = 194}, - [1517] = {.lex_state = 194}, + [1517] = {.lex_state = 199}, [1518] = {.lex_state = 194}, [1519] = {.lex_state = 194}, [1520] = {.lex_state = 194}, @@ -15781,14 +15794,14 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1525] = {.lex_state = 194}, [1526] = {.lex_state = 194}, [1527] = {.lex_state = 194}, - [1528] = {.lex_state = 53}, + [1528] = {.lex_state = 194}, [1529] = {.lex_state = 194}, [1530] = {.lex_state = 194}, [1531] = {.lex_state = 194}, [1532] = {.lex_state = 194}, [1533] = {.lex_state = 194}, - [1534] = {.lex_state = 194}, - [1535] = {.lex_state = 194}, + [1534] = {.lex_state = 53}, + [1535] = {.lex_state = 199}, [1536] = {.lex_state = 194}, [1537] = {.lex_state = 194}, [1538] = {.lex_state = 194}, @@ -15827,42 +15840,42 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1571] = {.lex_state = 194}, [1572] = {.lex_state = 194}, [1573] = {.lex_state = 194}, - [1574] = {.lex_state = 53}, + [1574] = {.lex_state = 194}, [1575] = {.lex_state = 53}, [1576] = {.lex_state = 53}, - [1577] = {.lex_state = 53}, - [1578] = {.lex_state = 199}, - [1579] = {.lex_state = 49}, - [1580] = {.lex_state = 79}, - [1581] = {.lex_state = 49}, + [1577] = {.lex_state = 199}, + [1578] = {.lex_state = 53}, + [1579] = {.lex_state = 53}, + [1580] = {.lex_state = 49}, + [1581] = {.lex_state = 79}, [1582] = {.lex_state = 199}, [1583] = {.lex_state = 199}, [1584] = {.lex_state = 199}, [1585] = {.lex_state = 49}, [1586] = {.lex_state = 199}, - [1587] = {.lex_state = 199}, - [1588] = {.lex_state = 6}, + [1587] = {.lex_state = 49}, + [1588] = {.lex_state = 199}, [1589] = {.lex_state = 6}, [1590] = {.lex_state = 6}, [1591] = {.lex_state = 6}, [1592] = {.lex_state = 6}, - [1593] = {.lex_state = 10}, + [1593] = {.lex_state = 6}, [1594] = {.lex_state = 10}, [1595] = {.lex_state = 10}, [1596] = {.lex_state = 10}, [1597] = {.lex_state = 10}, - [1598] = {.lex_state = 43}, - [1599] = {.lex_state = 41}, - [1600] = {.lex_state = 41}, - [1601] = {.lex_state = 24}, + [1598] = {.lex_state = 10}, + [1599] = {.lex_state = 43}, + [1600] = {.lex_state = 43}, + [1601] = {.lex_state = 43}, [1602] = {.lex_state = 43}, [1603] = {.lex_state = 41}, [1604] = {.lex_state = 43}, - [1605] = {.lex_state = 43}, - [1606] = {.lex_state = 43}, + [1605] = {.lex_state = 24}, + [1606] = {.lex_state = 41}, [1607] = {.lex_state = 41}, [1608] = {.lex_state = 41}, - [1609] = {.lex_state = 24}, + [1609] = {.lex_state = 41}, [1610] = {.lex_state = 24}, [1611] = {.lex_state = 24}, [1612] = {.lex_state = 24}, @@ -15874,58 +15887,58 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1618] = {.lex_state = 24}, [1619] = {.lex_state = 24}, [1620] = {.lex_state = 24}, - [1621] = {.lex_state = 18}, - [1622] = {.lex_state = 26}, + [1621] = {.lex_state = 24}, + [1622] = {.lex_state = 18}, [1623] = {.lex_state = 18}, [1624] = {.lex_state = 7}, [1625] = {.lex_state = 7}, - [1626] = {.lex_state = 24}, - [1627] = {.lex_state = 26}, - [1628] = {.lex_state = 24}, + [1626] = {.lex_state = 26}, + [1627] = {.lex_state = 24}, + [1628] = {.lex_state = 26}, [1629] = {.lex_state = 24}, - [1630] = {.lex_state = 24}, + [1630] = {.lex_state = 69}, [1631] = {.lex_state = 24}, - [1632] = {.lex_state = 24}, + [1632] = {.lex_state = 26}, [1633] = {.lex_state = 24}, [1634] = {.lex_state = 24}, [1635] = {.lex_state = 24}, - [1636] = {.lex_state = 24}, + [1636] = {.lex_state = 69}, [1637] = {.lex_state = 24}, - [1638] = {.lex_state = 26}, + [1638] = {.lex_state = 24}, [1639] = {.lex_state = 24}, [1640] = {.lex_state = 24}, - [1641] = {.lex_state = 26}, + [1641] = {.lex_state = 24}, [1642] = {.lex_state = 24}, - [1643] = {.lex_state = 26}, + [1643] = {.lex_state = 24}, [1644] = {.lex_state = 24}, - [1645] = {.lex_state = 24}, - [1646] = {.lex_state = 24}, + [1645] = {.lex_state = 26}, + [1646] = {.lex_state = 26}, [1647] = {.lex_state = 24}, - [1648] = {.lex_state = 69}, - [1649] = {.lex_state = 24}, - [1650] = {.lex_state = 24}, + [1648] = {.lex_state = 24}, + [1649] = {.lex_state = 26}, + [1650] = {.lex_state = 26}, [1651] = {.lex_state = 24}, [1652] = {.lex_state = 24}, - [1653] = {.lex_state = 199}, - [1654] = {.lex_state = 24}, - [1655] = {.lex_state = 26}, - [1656] = {.lex_state = 69}, - [1657] = {.lex_state = 24}, + [1653] = {.lex_state = 24}, + [1654] = {.lex_state = 26}, + [1655] = {.lex_state = 24}, + [1656] = {.lex_state = 26}, + [1657] = {.lex_state = 26}, [1658] = {.lex_state = 26}, [1659] = {.lex_state = 26}, [1660] = {.lex_state = 24}, - [1661] = {.lex_state = 26}, + [1661] = {.lex_state = 24}, [1662] = {.lex_state = 24}, - [1663] = {.lex_state = 24}, - [1664] = {.lex_state = 26}, - [1665] = {.lex_state = 26}, - [1666] = {.lex_state = 26}, + [1663] = {.lex_state = 199}, + [1664] = {.lex_state = 24}, + [1665] = {.lex_state = 24}, + [1666] = {.lex_state = 24}, [1667] = {.lex_state = 24}, [1668] = {.lex_state = 24}, [1669] = {.lex_state = 24}, [1670] = {.lex_state = 24}, - [1671] = {.lex_state = 24}, - [1672] = {.lex_state = 20}, + [1671] = {.lex_state = 11}, + [1672] = {.lex_state = 24}, [1673] = {.lex_state = 24}, [1674] = {.lex_state = 24}, [1675] = {.lex_state = 24}, @@ -15940,20 +15953,20 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1684] = {.lex_state = 24}, [1685] = {.lex_state = 24}, [1686] = {.lex_state = 24}, - [1687] = {.lex_state = 24}, + [1687] = {.lex_state = 20}, [1688] = {.lex_state = 24}, [1689] = {.lex_state = 24}, [1690] = {.lex_state = 24}, [1691] = {.lex_state = 24}, [1692] = {.lex_state = 24}, [1693] = {.lex_state = 24}, - [1694] = {.lex_state = 24}, + [1694] = {.lex_state = 26}, [1695] = {.lex_state = 24}, [1696] = {.lex_state = 24}, - [1697] = {.lex_state = 26}, + [1697] = {.lex_state = 24}, [1698] = {.lex_state = 24}, [1699] = {.lex_state = 24}, - [1700] = {.lex_state = 24}, + [1700] = {.lex_state = 20}, [1701] = {.lex_state = 24}, [1702] = {.lex_state = 24}, [1703] = {.lex_state = 24}, @@ -15977,7 +15990,7 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1721] = {.lex_state = 24}, [1722] = {.lex_state = 24}, [1723] = {.lex_state = 24}, - [1724] = {.lex_state = 20}, + [1724] = {.lex_state = 11}, [1725] = {.lex_state = 24}, [1726] = {.lex_state = 24}, [1727] = {.lex_state = 24}, @@ -15987,7 +16000,7 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1731] = {.lex_state = 24}, [1732] = {.lex_state = 24}, [1733] = {.lex_state = 24}, - [1734] = {.lex_state = 11}, + [1734] = {.lex_state = 24}, [1735] = {.lex_state = 24}, [1736] = {.lex_state = 24}, [1737] = {.lex_state = 24}, @@ -15999,42 +16012,42 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1743] = {.lex_state = 24}, [1744] = {.lex_state = 24}, [1745] = {.lex_state = 24}, - [1746] = {.lex_state = 11}, + [1746] = {.lex_state = 24}, [1747] = {.lex_state = 24}, [1748] = {.lex_state = 24}, [1749] = {.lex_state = 24}, - [1750] = {.lex_state = 69}, - [1751] = {.lex_state = 69}, - [1752] = {.lex_state = 26}, - [1753] = {.lex_state = 69}, - [1754] = {.lex_state = 26}, + [1750] = {.lex_state = 24}, + [1751] = {.lex_state = 26}, + [1752] = {.lex_state = 71}, + [1753] = {.lex_state = 71}, + [1754] = {.lex_state = 71}, [1755] = {.lex_state = 71}, - [1756] = {.lex_state = 69}, - [1757] = {.lex_state = 69}, + [1756] = {.lex_state = 26}, + [1757] = {.lex_state = 26}, [1758] = {.lex_state = 71}, - [1759] = {.lex_state = 26}, - [1760] = {.lex_state = 26}, + [1759] = {.lex_state = 71}, + [1760] = {.lex_state = 71}, [1761] = {.lex_state = 71}, - [1762] = {.lex_state = 71}, + [1762] = {.lex_state = 69}, [1763] = {.lex_state = 71}, [1764] = {.lex_state = 69}, [1765] = {.lex_state = 69}, - [1766] = {.lex_state = 71}, + [1766] = {.lex_state = 69}, [1767] = {.lex_state = 69}, - [1768] = {.lex_state = 26}, + [1768] = {.lex_state = 71}, [1769] = {.lex_state = 69}, - [1770] = {.lex_state = 71}, - [1771] = {.lex_state = 71}, + [1770] = {.lex_state = 69}, + [1771] = {.lex_state = 69}, [1772] = {.lex_state = 69}, [1773] = {.lex_state = 69}, [1774] = {.lex_state = 69}, [1775] = {.lex_state = 69}, [1776] = {.lex_state = 26}, - [1777] = {.lex_state = 71}, - [1778] = {.lex_state = 71}, + [1777] = {.lex_state = 69}, + [1778] = {.lex_state = 26}, [1779] = {.lex_state = 26}, - [1780] = {.lex_state = 69}, - [1781] = {.lex_state = 59}, + [1780] = {.lex_state = 26}, + [1781] = {.lex_state = 14}, [1782] = {.lex_state = 26}, [1783] = {.lex_state = 26}, [1784] = {.lex_state = 26}, @@ -16053,93 +16066,93 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1797] = {.lex_state = 26}, [1798] = {.lex_state = 26}, [1799] = {.lex_state = 26}, - [1800] = {.lex_state = 44}, + [1800] = {.lex_state = 26}, [1801] = {.lex_state = 26}, [1802] = {.lex_state = 26}, [1803] = {.lex_state = 26}, - [1804] = {.lex_state = 14}, + [1804] = {.lex_state = 26}, [1805] = {.lex_state = 26}, [1806] = {.lex_state = 26}, - [1807] = {.lex_state = 44}, - [1808] = {.lex_state = 14}, + [1807] = {.lex_state = 26}, + [1808] = {.lex_state = 26}, [1809] = {.lex_state = 26}, [1810] = {.lex_state = 26}, - [1811] = {.lex_state = 69}, + [1811] = {.lex_state = 26}, [1812] = {.lex_state = 26}, [1813] = {.lex_state = 26}, [1814] = {.lex_state = 26}, - [1815] = {.lex_state = 14}, + [1815] = {.lex_state = 26}, [1816] = {.lex_state = 26}, [1817] = {.lex_state = 26}, [1818] = {.lex_state = 26}, [1819] = {.lex_state = 26}, - [1820] = {.lex_state = 26}, + [1820] = {.lex_state = 14}, [1821] = {.lex_state = 26}, [1822] = {.lex_state = 26}, [1823] = {.lex_state = 26}, [1824] = {.lex_state = 26}, [1825] = {.lex_state = 26}, [1826] = {.lex_state = 26}, - [1827] = {.lex_state = 47}, + [1827] = {.lex_state = 26}, [1828] = {.lex_state = 26}, - [1829] = {.lex_state = 47}, + [1829] = {.lex_state = 26}, [1830] = {.lex_state = 26}, - [1831] = {.lex_state = 26}, - [1832] = {.lex_state = 26}, + [1831] = {.lex_state = 44}, + [1832] = {.lex_state = 44}, [1833] = {.lex_state = 26}, [1834] = {.lex_state = 26}, [1835] = {.lex_state = 26}, [1836] = {.lex_state = 26}, [1837] = {.lex_state = 26}, [1838] = {.lex_state = 26}, - [1839] = {.lex_state = 61}, + [1839] = {.lex_state = 26}, [1840] = {.lex_state = 26}, [1841] = {.lex_state = 26}, - [1842] = {.lex_state = 69}, + [1842] = {.lex_state = 26}, [1843] = {.lex_state = 26}, [1844] = {.lex_state = 26}, [1845] = {.lex_state = 26}, [1846] = {.lex_state = 26}, - [1847] = {.lex_state = 26}, - [1848] = {.lex_state = 26}, + [1847] = {.lex_state = 69}, + [1848] = {.lex_state = 69}, [1849] = {.lex_state = 26}, - [1850] = {.lex_state = 26}, - [1851] = {.lex_state = 26}, + [1850] = {.lex_state = 69}, + [1851] = {.lex_state = 69}, [1852] = {.lex_state = 26}, - [1853] = {.lex_state = 26}, + [1853] = {.lex_state = 69}, [1854] = {.lex_state = 26}, - [1855] = {.lex_state = 26}, - [1856] = {.lex_state = 71}, - [1857] = {.lex_state = 26}, + [1855] = {.lex_state = 47}, + [1856] = {.lex_state = 26}, + [1857] = {.lex_state = 69}, [1858] = {.lex_state = 26}, [1859] = {.lex_state = 26}, - [1860] = {.lex_state = 69}, - [1861] = {.lex_state = 69}, - [1862] = {.lex_state = 61}, - [1863] = {.lex_state = 69}, - [1864] = {.lex_state = 26}, + [1860] = {.lex_state = 14}, + [1861] = {.lex_state = 26}, + [1862] = {.lex_state = 26}, + [1863] = {.lex_state = 47}, + [1864] = {.lex_state = 69}, [1865] = {.lex_state = 26}, [1866] = {.lex_state = 26}, [1867] = {.lex_state = 26}, [1868] = {.lex_state = 26}, - [1869] = {.lex_state = 14}, - [1870] = {.lex_state = 14}, + [1869] = {.lex_state = 26}, + [1870] = {.lex_state = 59}, [1871] = {.lex_state = 26}, - [1872] = {.lex_state = 26}, - [1873] = {.lex_state = 69}, - [1874] = {.lex_state = 69}, - [1875] = {.lex_state = 26}, + [1872] = {.lex_state = 71}, + [1873] = {.lex_state = 26}, + [1874] = {.lex_state = 26}, + [1875] = {.lex_state = 69}, [1876] = {.lex_state = 26}, [1877] = {.lex_state = 69}, [1878] = {.lex_state = 26}, [1879] = {.lex_state = 26}, [1880] = {.lex_state = 26}, [1881] = {.lex_state = 26}, - [1882] = {.lex_state = 26}, - [1883] = {.lex_state = 26}, - [1884] = {.lex_state = 26}, + [1882] = {.lex_state = 14}, + [1883] = {.lex_state = 14}, + [1884] = {.lex_state = 61}, [1885] = {.lex_state = 26}, - [1886] = {.lex_state = 59}, + [1886] = {.lex_state = 26}, [1887] = {.lex_state = 26}, [1888] = {.lex_state = 26}, [1889] = {.lex_state = 26}, @@ -16148,259 +16161,259 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1892] = {.lex_state = 26}, [1893] = {.lex_state = 26}, [1894] = {.lex_state = 26}, - [1895] = {.lex_state = 26}, + [1895] = {.lex_state = 61}, [1896] = {.lex_state = 26}, [1897] = {.lex_state = 26}, - [1898] = {.lex_state = 69}, - [1899] = {.lex_state = 69}, + [1898] = {.lex_state = 59}, + [1899] = {.lex_state = 71}, [1900] = {.lex_state = 69}, [1901] = {.lex_state = 69}, - [1902] = {.lex_state = 71}, - [1903] = {.lex_state = 30}, + [1902] = {.lex_state = 69}, + [1903] = {.lex_state = 71}, [1904] = {.lex_state = 30}, [1905] = {.lex_state = 69}, - [1906] = {.lex_state = 71}, - [1907] = {.lex_state = 69}, - [1908] = {.lex_state = 71}, - [1909] = {.lex_state = 71}, - [1910] = {.lex_state = 69}, - [1911] = {.lex_state = 69}, - [1912] = {.lex_state = 69}, - [1913] = {.lex_state = 71}, + [1906] = {.lex_state = 69}, + [1907] = {.lex_state = 30}, + [1908] = {.lex_state = 69}, + [1909] = {.lex_state = 69}, + [1910] = {.lex_state = 71}, + [1911] = {.lex_state = 71}, + [1912] = {.lex_state = 71}, + [1913] = {.lex_state = 69}, [1914] = {.lex_state = 71}, [1915] = {.lex_state = 71}, [1916] = {.lex_state = 71}, - [1917] = {.lex_state = 71}, + [1917] = {.lex_state = 69}, [1918] = {.lex_state = 71}, - [1919] = {.lex_state = 69}, + [1919] = {.lex_state = 71}, [1920] = {.lex_state = 69}, - [1921] = {.lex_state = 71}, - [1922] = {.lex_state = 71}, - [1923] = {.lex_state = 71}, - [1924] = {.lex_state = 71}, - [1925] = {.lex_state = 71}, - [1926] = {.lex_state = 71}, - [1927] = {.lex_state = 71}, - [1928] = {.lex_state = 71}, - [1929] = {.lex_state = 71}, + [1921] = {.lex_state = 69}, + [1922] = {.lex_state = 69}, + [1923] = {.lex_state = 69}, + [1924] = {.lex_state = 69}, + [1925] = {.lex_state = 69}, + [1926] = {.lex_state = 69}, + [1927] = {.lex_state = 69}, + [1928] = {.lex_state = 69}, + [1929] = {.lex_state = 69}, [1930] = {.lex_state = 71}, [1931] = {.lex_state = 71}, - [1932] = {.lex_state = 71}, - [1933] = {.lex_state = 71}, + [1932] = {.lex_state = 69}, + [1933] = {.lex_state = 69}, [1934] = {.lex_state = 71}, [1935] = {.lex_state = 71}, [1936] = {.lex_state = 69}, [1937] = {.lex_state = 71}, - [1938] = {.lex_state = 71}, + [1938] = {.lex_state = 69}, [1939] = {.lex_state = 71}, [1940] = {.lex_state = 71}, - [1941] = {.lex_state = 71}, - [1942] = {.lex_state = 71}, + [1941] = {.lex_state = 69}, + [1942] = {.lex_state = 69}, [1943] = {.lex_state = 69}, [1944] = {.lex_state = 71}, - [1945] = {.lex_state = 71}, + [1945] = {.lex_state = 69}, [1946] = {.lex_state = 69}, [1947] = {.lex_state = 69}, [1948] = {.lex_state = 69}, - [1949] = {.lex_state = 71}, - [1950] = {.lex_state = 71}, - [1951] = {.lex_state = 71}, - [1952] = {.lex_state = 71}, - [1953] = {.lex_state = 71}, + [1949] = {.lex_state = 69}, + [1950] = {.lex_state = 69}, + [1951] = {.lex_state = 69}, + [1952] = {.lex_state = 69}, + [1953] = {.lex_state = 69}, [1954] = {.lex_state = 69}, [1955] = {.lex_state = 69}, - [1956] = {.lex_state = 71}, - [1957] = {.lex_state = 71}, - [1958] = {.lex_state = 71}, - [1959] = {.lex_state = 71}, - [1960] = {.lex_state = 71}, + [1956] = {.lex_state = 69}, + [1957] = {.lex_state = 69}, + [1958] = {.lex_state = 69}, + [1959] = {.lex_state = 69}, + [1960] = {.lex_state = 69}, [1961] = {.lex_state = 69}, [1962] = {.lex_state = 69}, [1963] = {.lex_state = 71}, [1964] = {.lex_state = 69}, [1965] = {.lex_state = 69}, - [1966] = {.lex_state = 71}, - [1967] = {.lex_state = 71}, - [1968] = {.lex_state = 71}, - [1969] = {.lex_state = 71}, - [1970] = {.lex_state = 71}, - [1971] = {.lex_state = 71}, - [1972] = {.lex_state = 71}, - [1973] = {.lex_state = 71}, - [1974] = {.lex_state = 71}, - [1975] = {.lex_state = 71}, - [1976] = {.lex_state = 69}, + [1966] = {.lex_state = 69}, + [1967] = {.lex_state = 69}, + [1968] = {.lex_state = 69}, + [1969] = {.lex_state = 69}, + [1970] = {.lex_state = 69}, + [1971] = {.lex_state = 69}, + [1972] = {.lex_state = 69}, + [1973] = {.lex_state = 69}, + [1974] = {.lex_state = 69}, + [1975] = {.lex_state = 69}, + [1976] = {.lex_state = 71}, [1977] = {.lex_state = 69}, - [1978] = {.lex_state = 69}, - [1979] = {.lex_state = 69}, + [1978] = {.lex_state = 71}, + [1979] = {.lex_state = 71}, [1980] = {.lex_state = 69}, [1981] = {.lex_state = 69}, - [1982] = {.lex_state = 69}, - [1983] = {.lex_state = 69}, + [1982] = {.lex_state = 71}, + [1983] = {.lex_state = 71}, [1984] = {.lex_state = 71}, - [1985] = {.lex_state = 71}, - [1986] = {.lex_state = 71}, + [1985] = {.lex_state = 69}, + [1986] = {.lex_state = 69}, [1987] = {.lex_state = 69}, - [1988] = {.lex_state = 71}, + [1988] = {.lex_state = 69}, [1989] = {.lex_state = 69}, [1990] = {.lex_state = 69}, [1991] = {.lex_state = 69}, [1992] = {.lex_state = 69}, - [1993] = {.lex_state = 71}, - [1994] = {.lex_state = 71}, - [1995] = {.lex_state = 71}, + [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 = 69}, [1999] = {.lex_state = 69}, [2000] = {.lex_state = 69}, - [2001] = {.lex_state = 30}, - [2002] = {.lex_state = 69}, - [2003] = {.lex_state = 69}, - [2004] = {.lex_state = 71}, + [2001] = {.lex_state = 69}, + [2002] = {.lex_state = 71}, + [2003] = {.lex_state = 71}, + [2004] = {.lex_state = 30}, [2005] = {.lex_state = 71}, - [2006] = {.lex_state = 69}, + [2006] = {.lex_state = 71}, [2007] = {.lex_state = 69}, - [2008] = {.lex_state = 71}, + [2008] = {.lex_state = 69}, [2009] = {.lex_state = 71}, [2010] = {.lex_state = 69}, - [2011] = {.lex_state = 71}, + [2011] = {.lex_state = 69}, [2012] = {.lex_state = 69}, - [2013] = {.lex_state = 69}, - [2014] = {.lex_state = 69}, + [2013] = {.lex_state = 71}, + [2014] = {.lex_state = 71}, [2015] = {.lex_state = 71}, [2016] = {.lex_state = 71}, - [2017] = {.lex_state = 71}, + [2017] = {.lex_state = 69}, [2018] = {.lex_state = 69}, - [2019] = {.lex_state = 69}, + [2019] = {.lex_state = 71}, [2020] = {.lex_state = 69}, [2021] = {.lex_state = 71}, - [2022] = {.lex_state = 71}, - [2023] = {.lex_state = 69}, - [2024] = {.lex_state = 69}, + [2022] = {.lex_state = 69}, + [2023] = {.lex_state = 71}, + [2024] = {.lex_state = 71}, [2025] = {.lex_state = 71}, [2026] = {.lex_state = 71}, - [2027] = {.lex_state = 71}, - [2028] = {.lex_state = 71}, - [2029] = {.lex_state = 69}, - [2030] = {.lex_state = 69}, - [2031] = {.lex_state = 69}, - [2032] = {.lex_state = 71}, - [2033] = {.lex_state = 69}, - [2034] = {.lex_state = 69}, - [2035] = {.lex_state = 69}, - [2036] = {.lex_state = 71}, - [2037] = {.lex_state = 69}, - [2038] = {.lex_state = 71}, - [2039] = {.lex_state = 71}, - [2040] = {.lex_state = 71}, + [2027] = {.lex_state = 69}, + [2028] = {.lex_state = 69}, + [2029] = {.lex_state = 71}, + [2030] = {.lex_state = 71}, + [2031] = {.lex_state = 71}, + [2032] = {.lex_state = 69}, + [2033] = {.lex_state = 71}, + [2034] = {.lex_state = 71}, + [2035] = {.lex_state = 71}, + [2036] = {.lex_state = 69}, + [2037] = {.lex_state = 71}, + [2038] = {.lex_state = 69}, + [2039] = {.lex_state = 69}, + [2040] = {.lex_state = 69}, [2041] = {.lex_state = 69}, - [2042] = {.lex_state = 69}, + [2042] = {.lex_state = 71}, [2043] = {.lex_state = 69}, - [2044] = {.lex_state = 69}, - [2045] = {.lex_state = 69}, + [2044] = {.lex_state = 71}, + [2045] = {.lex_state = 71}, [2046] = {.lex_state = 69}, - [2047] = {.lex_state = 69}, - [2048] = {.lex_state = 69}, - [2049] = {.lex_state = 69}, + [2047] = {.lex_state = 71}, + [2048] = {.lex_state = 71}, + [2049] = {.lex_state = 71}, [2050] = {.lex_state = 69}, - [2051] = {.lex_state = 69}, - [2052] = {.lex_state = 71}, - [2053] = {.lex_state = 69}, - [2054] = {.lex_state = 69}, - [2055] = {.lex_state = 69}, - [2056] = {.lex_state = 69}, - [2057] = {.lex_state = 69}, + [2051] = {.lex_state = 71}, + [2052] = {.lex_state = 69}, + [2053] = {.lex_state = 71}, + [2054] = {.lex_state = 71}, + [2055] = {.lex_state = 71}, + [2056] = {.lex_state = 71}, + [2057] = {.lex_state = 71}, [2058] = {.lex_state = 69}, - [2059] = {.lex_state = 69}, - [2060] = {.lex_state = 69}, - [2061] = {.lex_state = 69}, - [2062] = {.lex_state = 69}, - [2063] = {.lex_state = 69}, + [2059] = {.lex_state = 71}, + [2060] = {.lex_state = 71}, + [2061] = {.lex_state = 71}, + [2062] = {.lex_state = 71}, + [2063] = {.lex_state = 71}, [2064] = {.lex_state = 71}, - [2065] = {.lex_state = 71}, + [2065] = {.lex_state = 69}, [2066] = {.lex_state = 71}, - [2067] = {.lex_state = 69}, - [2068] = {.lex_state = 69}, - [2069] = {.lex_state = 69}, + [2067] = {.lex_state = 71}, + [2068] = {.lex_state = 71}, + [2069] = {.lex_state = 71}, [2070] = {.lex_state = 71}, [2071] = {.lex_state = 71}, [2072] = {.lex_state = 71}, [2073] = {.lex_state = 71}, - [2074] = {.lex_state = 69}, - [2075] = {.lex_state = 69}, - [2076] = {.lex_state = 69}, + [2074] = {.lex_state = 71}, + [2075] = {.lex_state = 71}, + [2076] = {.lex_state = 71}, [2077] = {.lex_state = 71}, [2078] = {.lex_state = 71}, - [2079] = {.lex_state = 69}, - [2080] = {.lex_state = 69}, - [2081] = {.lex_state = 69}, - [2082] = {.lex_state = 69}, + [2079] = {.lex_state = 71}, + [2080] = {.lex_state = 71}, + [2081] = {.lex_state = 71}, + [2082] = {.lex_state = 71}, [2083] = {.lex_state = 69}, - [2084] = {.lex_state = 69}, + [2084] = {.lex_state = 71}, [2085] = {.lex_state = 71}, [2086] = {.lex_state = 69}, - [2087] = {.lex_state = 69}, + [2087] = {.lex_state = 71}, [2088] = {.lex_state = 71}, - [2089] = {.lex_state = 69}, - [2090] = {.lex_state = 69}, - [2091] = {.lex_state = 69}, - [2092] = {.lex_state = 69}, - [2093] = {.lex_state = 69}, + [2089] = {.lex_state = 71}, + [2090] = {.lex_state = 71}, + [2091] = {.lex_state = 71}, + [2092] = {.lex_state = 71}, + [2093] = {.lex_state = 71}, [2094] = {.lex_state = 69}, [2095] = {.lex_state = 69}, [2096] = {.lex_state = 69}, [2097] = {.lex_state = 69}, - [2098] = {.lex_state = 69}, - [2099] = {.lex_state = 71}, + [2098] = {.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 = 69}, - [2104] = {.lex_state = 69}, + [2104] = {.lex_state = 71}, [2105] = {.lex_state = 71}, [2106] = {.lex_state = 69}, [2107] = {.lex_state = 71}, - [2108] = {.lex_state = 71}, + [2108] = {.lex_state = 69}, [2109] = {.lex_state = 71}, - [2110] = {.lex_state = 71}, + [2110] = {.lex_state = 69}, [2111] = {.lex_state = 71}, [2112] = {.lex_state = 71}, [2113] = {.lex_state = 71}, - [2114] = {.lex_state = 49}, - [2115] = {.lex_state = 49}, + [2114] = {.lex_state = 71}, + [2115] = {.lex_state = 71}, [2116] = {.lex_state = 49}, [2117] = {.lex_state = 49}, [2118] = {.lex_state = 49}, - [2119] = {.lex_state = 15}, - [2120] = {.lex_state = 69}, + [2119] = {.lex_state = 49}, + [2120] = {.lex_state = 49}, [2121] = {.lex_state = 15}, [2122] = {.lex_state = 15}, - [2123] = {.lex_state = 15}, + [2123] = {.lex_state = 69}, [2124] = {.lex_state = 15}, - [2125] = {.lex_state = 79}, - [2126] = {.lex_state = 79}, + [2125] = {.lex_state = 15}, + [2126] = {.lex_state = 15}, [2127] = {.lex_state = 79}, - [2128] = {.lex_state = 22}, - [2129] = {.lex_state = 22}, + [2128] = {.lex_state = 15}, + [2129] = {.lex_state = 15}, [2130] = {.lex_state = 15}, - [2131] = {.lex_state = 79}, - [2132] = {.lex_state = 79}, - [2133] = {.lex_state = 79}, + [2131] = {.lex_state = 22}, + [2132] = {.lex_state = 22}, + [2133] = {.lex_state = 22}, [2134] = {.lex_state = 22}, - [2135] = {.lex_state = 15}, - [2136] = {.lex_state = 22}, + [2135] = {.lex_state = 79}, + [2136] = {.lex_state = 79}, [2137] = {.lex_state = 15}, - [2138] = {.lex_state = 15}, + [2138] = {.lex_state = 79}, [2139] = {.lex_state = 79}, - [2140] = {.lex_state = 15}, + [2140] = {.lex_state = 79}, [2141] = {.lex_state = 79}, - [2142] = {.lex_state = 79}, + [2142] = {.lex_state = 15}, [2143] = {.lex_state = 79}, [2144] = {.lex_state = 79}, - [2145] = {.lex_state = 15}, + [2145] = {.lex_state = 79}, [2146] = {.lex_state = 15}, - [2147] = {.lex_state = 15}, + [2147] = {.lex_state = 53}, [2148] = {.lex_state = 15}, [2149] = {.lex_state = 15}, [2150] = {.lex_state = 15}, @@ -16410,17 +16423,17 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [2154] = {.lex_state = 15}, [2155] = {.lex_state = 15}, [2156] = {.lex_state = 15}, - [2157] = {.lex_state = 53}, + [2157] = {.lex_state = 15}, [2158] = {.lex_state = 15}, [2159] = {.lex_state = 15}, - [2160] = {.lex_state = 79}, - [2161] = {.lex_state = 53}, - [2162] = {.lex_state = 53}, + [2160] = {.lex_state = 15}, + [2161] = {.lex_state = 15}, + [2162] = {.lex_state = 15}, [2163] = {.lex_state = 15}, [2164] = {.lex_state = 15}, - [2165] = {.lex_state = 15}, - [2166] = {.lex_state = 53}, - [2167] = {.lex_state = 53}, + [2165] = {.lex_state = 79}, + [2166] = {.lex_state = 15}, + [2167] = {.lex_state = 15}, [2168] = {.lex_state = 15}, [2169] = {.lex_state = 15}, [2170] = {.lex_state = 15}, @@ -16429,17 +16442,17 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [2173] = {.lex_state = 15}, [2174] = {.lex_state = 15}, [2175] = {.lex_state = 15}, - [2176] = {.lex_state = 79}, + [2176] = {.lex_state = 15}, [2177] = {.lex_state = 15}, [2178] = {.lex_state = 15}, - [2179] = {.lex_state = 15}, - [2180] = {.lex_state = 79}, + [2179] = {.lex_state = 79}, + [2180] = {.lex_state = 15}, [2181] = {.lex_state = 15}, - [2182] = {.lex_state = 15}, + [2182] = {.lex_state = 53}, [2183] = {.lex_state = 15}, - [2184] = {.lex_state = 31}, + [2184] = {.lex_state = 15}, [2185] = {.lex_state = 15}, - [2186] = {.lex_state = 15}, + [2186] = {.lex_state = 79}, [2187] = {.lex_state = 15}, [2188] = {.lex_state = 15}, [2189] = {.lex_state = 15}, @@ -16451,7 +16464,7 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [2195] = {.lex_state = 15}, [2196] = {.lex_state = 15}, [2197] = {.lex_state = 15}, - [2198] = {.lex_state = 15}, + [2198] = {.lex_state = 53}, [2199] = {.lex_state = 15}, [2200] = {.lex_state = 15}, [2201] = {.lex_state = 15}, @@ -16465,10 +16478,10 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [2209] = {.lex_state = 15}, [2210] = {.lex_state = 15}, [2211] = {.lex_state = 15}, - [2212] = {.lex_state = 15}, + [2212] = {.lex_state = 79}, [2213] = {.lex_state = 15}, [2214] = {.lex_state = 15}, - [2215] = {.lex_state = 15}, + [2215] = {.lex_state = 53}, [2216] = {.lex_state = 15}, [2217] = {.lex_state = 15}, [2218] = {.lex_state = 15}, @@ -16494,7 +16507,7 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [2238] = {.lex_state = 15}, [2239] = {.lex_state = 15}, [2240] = {.lex_state = 15}, - [2241] = {.lex_state = 15}, + [2241] = {.lex_state = 53}, [2242] = {.lex_state = 15}, [2243] = {.lex_state = 15}, [2244] = {.lex_state = 15}, @@ -16507,40 +16520,40 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [2251] = {.lex_state = 15}, [2252] = {.lex_state = 15}, [2253] = {.lex_state = 15}, - [2254] = {.lex_state = 15}, + [2254] = {.lex_state = 31}, [2255] = {.lex_state = 15}, - [2256] = {.lex_state = 79}, + [2256] = {.lex_state = 15}, [2257] = {.lex_state = 15}, - [2258] = {.lex_state = 15}, + [2258] = {.lex_state = 79}, [2259] = {.lex_state = 15}, - [2260] = {.lex_state = 63}, - [2261] = {.lex_state = 15}, + [2260] = {.lex_state = 15}, + [2261] = {.lex_state = 73}, [2262] = {.lex_state = 63}, - [2263] = {.lex_state = 73}, - [2264] = {.lex_state = 73}, - [2265] = {.lex_state = 79}, + [2263] = {.lex_state = 15}, + [2264] = {.lex_state = 63}, + [2265] = {.lex_state = 73}, [2266] = {.lex_state = 15}, - [2267] = {.lex_state = 15}, + [2267] = {.lex_state = 73}, [2268] = {.lex_state = 15}, [2269] = {.lex_state = 15}, - [2270] = {.lex_state = 79}, + [2270] = {.lex_state = 15}, [2271] = {.lex_state = 15}, [2272] = {.lex_state = 15}, - [2273] = {.lex_state = 15}, - [2274] = {.lex_state = 73}, + [2273] = {.lex_state = 79}, + [2274] = {.lex_state = 15}, [2275] = {.lex_state = 15}, - [2276] = {.lex_state = 50}, + [2276] = {.lex_state = 15}, [2277] = {.lex_state = 50}, - [2278] = {.lex_state = 28}, - [2279] = {.lex_state = 28}, - [2280] = {.lex_state = 73}, + [2278] = {.lex_state = 50}, + [2279] = {.lex_state = 73}, + [2280] = {.lex_state = 15}, [2281] = {.lex_state = 28}, - [2282] = {.lex_state = 73}, + [2282] = {.lex_state = 28}, [2283] = {.lex_state = 73}, - [2284] = {.lex_state = 15}, - [2285] = {.lex_state = 15}, + [2284] = {.lex_state = 73}, + [2285] = {.lex_state = 28}, [2286] = {.lex_state = 28}, - [2287] = {.lex_state = 28}, + [2287] = {.lex_state = 15}, [2288] = {.lex_state = 73}, [2289] = {.lex_state = 73}, [2290] = {.lex_state = 73}, @@ -16548,7 +16561,7 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [2292] = {.lex_state = 73}, [2293] = {.lex_state = 73}, [2294] = {.lex_state = 73}, - [2295] = {.lex_state = 28}, + [2295] = {.lex_state = 73}, [2296] = {.lex_state = 73}, [2297] = {.lex_state = 73}, [2298] = {.lex_state = 73}, @@ -16557,26 +16570,26 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [2301] = {.lex_state = 73}, [2302] = {.lex_state = 73}, [2303] = {.lex_state = 73}, - [2304] = {.lex_state = 73}, + [2304] = {.lex_state = 28}, [2305] = {.lex_state = 73}, [2306] = {.lex_state = 73}, [2307] = {.lex_state = 73}, - [2308] = {.lex_state = 73}, - [2309] = {.lex_state = 73}, + [2308] = {.lex_state = 28}, + [2309] = {.lex_state = 28}, [2310] = {.lex_state = 28}, - [2311] = {.lex_state = 73}, + [2311] = {.lex_state = 28}, [2312] = {.lex_state = 73}, [2313] = {.lex_state = 73}, [2314] = {.lex_state = 73}, - [2315] = {.lex_state = 73}, + [2315] = {.lex_state = 28}, [2316] = {.lex_state = 73}, [2317] = {.lex_state = 73}, - [2318] = {.lex_state = 73}, - [2319] = {.lex_state = 28}, + [2318] = {.lex_state = 28}, + [2319] = {.lex_state = 73}, [2320] = {.lex_state = 73}, [2321] = {.lex_state = 73}, [2322] = {.lex_state = 73}, - [2323] = {.lex_state = 28}, + [2323] = {.lex_state = 73}, [2324] = {.lex_state = 73}, [2325] = {.lex_state = 73}, [2326] = {.lex_state = 73}, @@ -16584,35 +16597,35 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [2328] = {.lex_state = 73}, [2329] = {.lex_state = 73}, [2330] = {.lex_state = 73}, - [2331] = {.lex_state = 28}, + [2331] = {.lex_state = 73}, [2332] = {.lex_state = 73}, [2333] = {.lex_state = 73}, [2334] = {.lex_state = 28}, [2335] = {.lex_state = 73}, [2336] = {.lex_state = 73}, [2337] = {.lex_state = 73}, - [2338] = {.lex_state = 28}, - [2339] = {.lex_state = 28}, + [2338] = {.lex_state = 73}, + [2339] = {.lex_state = 73}, [2340] = {.lex_state = 73}, [2341] = {.lex_state = 73}, [2342] = {.lex_state = 73}, - [2343] = {.lex_state = 73}, - [2344] = {.lex_state = 28}, + [2343] = {.lex_state = 22}, + [2344] = {.lex_state = 73}, [2345] = {.lex_state = 73}, - [2346] = {.lex_state = 28}, + [2346] = {.lex_state = 73}, [2347] = {.lex_state = 73}, [2348] = {.lex_state = 73}, [2349] = {.lex_state = 73}, [2350] = {.lex_state = 73}, [2351] = {.lex_state = 73}, - [2352] = {.lex_state = 28}, + [2352] = {.lex_state = 73}, [2353] = {.lex_state = 73}, - [2354] = {.lex_state = 28}, + [2354] = {.lex_state = 73}, [2355] = {.lex_state = 73}, [2356] = {.lex_state = 73}, - [2357] = {.lex_state = 73}, - [2358] = {.lex_state = 73}, - [2359] = {.lex_state = 73}, + [2357] = {.lex_state = 15}, + [2358] = {.lex_state = 15}, + [2359] = {.lex_state = 28}, [2360] = {.lex_state = 73}, [2361] = {.lex_state = 73}, [2362] = {.lex_state = 73}, @@ -16621,32 +16634,32 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [2365] = {.lex_state = 73}, [2366] = {.lex_state = 73}, [2367] = {.lex_state = 73}, - [2368] = {.lex_state = 73}, - [2369] = {.lex_state = 73}, - [2370] = {.lex_state = 28}, - [2371] = {.lex_state = 22}, + [2368] = {.lex_state = 28}, + [2369] = {.lex_state = 22}, + [2370] = {.lex_state = 73}, + [2371] = {.lex_state = 73}, [2372] = {.lex_state = 73}, [2373] = {.lex_state = 73}, - [2374] = {.lex_state = 73}, - [2375] = {.lex_state = 28}, + [2374] = {.lex_state = 28}, + [2375] = {.lex_state = 73}, [2376] = {.lex_state = 73}, [2377] = {.lex_state = 73}, [2378] = {.lex_state = 73}, [2379] = {.lex_state = 73}, - [2380] = {.lex_state = 73}, + [2380] = {.lex_state = 28}, [2381] = {.lex_state = 73}, [2382] = {.lex_state = 73}, - [2383] = {.lex_state = 22}, - [2384] = {.lex_state = 73}, - [2385] = {.lex_state = 28}, + [2383] = {.lex_state = 73}, + [2384] = {.lex_state = 28}, + [2385] = {.lex_state = 73}, [2386] = {.lex_state = 73}, [2387] = {.lex_state = 73}, [2388] = {.lex_state = 73}, [2389] = {.lex_state = 73}, - [2390] = {.lex_state = 73}, + [2390] = {.lex_state = 28}, [2391] = {.lex_state = 73}, - [2392] = {.lex_state = 28}, - [2393] = {.lex_state = 73}, + [2392] = {.lex_state = 73}, + [2393] = {.lex_state = 28}, [2394] = {.lex_state = 73}, [2395] = {.lex_state = 73}, [2396] = {.lex_state = 73}, @@ -16662,78 +16675,78 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [2406] = {.lex_state = 73}, [2407] = {.lex_state = 73}, [2408] = {.lex_state = 73}, - [2409] = {.lex_state = 15}, - [2410] = {.lex_state = 15}, + [2409] = {.lex_state = 73}, + [2410] = {.lex_state = 73}, [2411] = {.lex_state = 73}, [2412] = {.lex_state = 73}, - [2413] = {.lex_state = 73}, - [2414] = {.lex_state = 73}, + [2413] = {.lex_state = 28}, + [2414] = {.lex_state = 28}, [2415] = {.lex_state = 73}, - [2416] = {.lex_state = 75}, - [2417] = {.lex_state = 33}, - [2418] = {.lex_state = 33}, - [2419] = {.lex_state = 33}, + [2416] = {.lex_state = 73}, + [2417] = {.lex_state = 73}, + [2418] = {.lex_state = 73}, + [2419] = {.lex_state = 73}, [2420] = {.lex_state = 73}, - [2421] = {.lex_state = 28}, - [2422] = {.lex_state = 73}, - [2423] = {.lex_state = 73}, + [2421] = {.lex_state = 73}, + [2422] = {.lex_state = 28}, + [2423] = {.lex_state = 28}, [2424] = {.lex_state = 28}, - [2425] = {.lex_state = 31}, + [2425] = {.lex_state = 28}, [2426] = {.lex_state = 73}, - [2427] = {.lex_state = 28}, - [2428] = {.lex_state = 73}, - [2429] = {.lex_state = 73}, - [2430] = {.lex_state = 73}, - [2431] = {.lex_state = 73}, - [2432] = {.lex_state = 28}, + [2427] = {.lex_state = 33}, + [2428] = {.lex_state = 33}, + [2429] = {.lex_state = 33}, + [2430] = {.lex_state = 28}, + [2431] = {.lex_state = 75}, + [2432] = {.lex_state = 75}, [2433] = {.lex_state = 75}, - [2434] = {.lex_state = 75}, - [2435] = {.lex_state = 28}, - [2436] = {.lex_state = 75}, - [2437] = {.lex_state = 75}, - [2438] = {.lex_state = 75}, - [2439] = {.lex_state = 28}, + [2434] = {.lex_state = 73}, + [2435] = {.lex_state = 75}, + [2436] = {.lex_state = 28}, + [2437] = {.lex_state = 73}, + [2438] = {.lex_state = 31}, + [2439] = {.lex_state = 75}, [2440] = {.lex_state = 75}, - [2441] = {.lex_state = 28}, - [2442] = {.lex_state = 28}, + [2441] = {.lex_state = 75}, + [2442] = {.lex_state = 75}, [2443] = {.lex_state = 28}, [2444] = {.lex_state = 75}, - [2445] = {.lex_state = 75}, + [2445] = {.lex_state = 73}, [2446] = {.lex_state = 28}, [2447] = {.lex_state = 73}, - [2448] = {.lex_state = 73}, - [2449] = {.lex_state = 75}, - [2450] = {.lex_state = 75}, - [2451] = {.lex_state = 28}, + [2448] = {.lex_state = 75}, + [2449] = {.lex_state = 28}, + [2450] = {.lex_state = 28}, + [2451] = {.lex_state = 75}, [2452] = {.lex_state = 28}, - [2453] = {.lex_state = 28}, - [2454] = {.lex_state = 28}, - [2455] = {.lex_state = 73}, + [2453] = {.lex_state = 65}, + [2454] = {.lex_state = 73}, + [2455] = {.lex_state = 28}, [2456] = {.lex_state = 28}, [2457] = {.lex_state = 28}, - [2458] = {.lex_state = 28}, - [2459] = {.lex_state = 28}, - [2460] = {.lex_state = 28}, - [2461] = {.lex_state = 73}, - [2462] = {.lex_state = 28}, - [2463] = {.lex_state = 28}, + [2458] = {.lex_state = 75}, + [2459] = {.lex_state = 73}, + [2460] = {.lex_state = 75}, + [2461] = {.lex_state = 28}, + [2462] = {.lex_state = 75}, + [2463] = {.lex_state = 75}, [2464] = {.lex_state = 28}, [2465] = {.lex_state = 28}, [2466] = {.lex_state = 28}, - [2467] = {.lex_state = 75}, - [2468] = {.lex_state = 73}, + [2467] = {.lex_state = 73}, + [2468] = {.lex_state = 28}, [2469] = {.lex_state = 28}, [2470] = {.lex_state = 28}, [2471] = {.lex_state = 28}, - [2472] = {.lex_state = 75}, - [2473] = {.lex_state = 73}, - [2474] = {.lex_state = 73}, + [2472] = {.lex_state = 28}, + [2473] = {.lex_state = 28}, + [2474] = {.lex_state = 28}, [2475] = {.lex_state = 28}, [2476] = {.lex_state = 28}, [2477] = {.lex_state = 28}, - [2478] = {.lex_state = 73}, + [2478] = {.lex_state = 28}, [2479] = {.lex_state = 28}, - [2480] = {.lex_state = 73}, + [2480] = {.lex_state = 28}, [2481] = {.lex_state = 28}, [2482] = {.lex_state = 28}, [2483] = {.lex_state = 28}, @@ -16741,78 +16754,78 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [2485] = {.lex_state = 28}, [2486] = {.lex_state = 28}, [2487] = {.lex_state = 28}, - [2488] = {.lex_state = 75}, + [2488] = {.lex_state = 73}, [2489] = {.lex_state = 28}, [2490] = {.lex_state = 28}, [2491] = {.lex_state = 28}, [2492] = {.lex_state = 28}, [2493] = {.lex_state = 28}, - [2494] = {.lex_state = 75}, - [2495] = {.lex_state = 28}, - [2496] = {.lex_state = 28}, + [2494] = {.lex_state = 28}, + [2495] = {.lex_state = 73}, + [2496] = {.lex_state = 73}, [2497] = {.lex_state = 28}, [2498] = {.lex_state = 28}, - [2499] = {.lex_state = 28}, - [2500] = {.lex_state = 28}, - [2501] = {.lex_state = 73}, + [2499] = {.lex_state = 73}, + [2500] = {.lex_state = 75}, + [2501] = {.lex_state = 28}, [2502] = {.lex_state = 73}, - [2503] = {.lex_state = 73}, + [2503] = {.lex_state = 28}, [2504] = {.lex_state = 28}, - [2505] = {.lex_state = 28}, + [2505] = {.lex_state = 73}, [2506] = {.lex_state = 28}, [2507] = {.lex_state = 28}, [2508] = {.lex_state = 28}, [2509] = {.lex_state = 28}, - [2510] = {.lex_state = 73}, + [2510] = {.lex_state = 28}, [2511] = {.lex_state = 28}, - [2512] = {.lex_state = 73}, - [2513] = {.lex_state = 75}, + [2512] = {.lex_state = 28}, + [2513] = {.lex_state = 28}, [2514] = {.lex_state = 28}, [2515] = {.lex_state = 28}, [2516] = {.lex_state = 28}, [2517] = {.lex_state = 28}, - [2518] = {.lex_state = 73}, + [2518] = {.lex_state = 28}, [2519] = {.lex_state = 28}, [2520] = {.lex_state = 28}, [2521] = {.lex_state = 28}, [2522] = {.lex_state = 73}, [2523] = {.lex_state = 28}, [2524] = {.lex_state = 28}, - [2525] = {.lex_state = 73}, - [2526] = {.lex_state = 73}, - [2527] = {.lex_state = 73}, + [2525] = {.lex_state = 28}, + [2526] = {.lex_state = 75}, + [2527] = {.lex_state = 28}, [2528] = {.lex_state = 28}, [2529] = {.lex_state = 28}, [2530] = {.lex_state = 28}, - [2531] = {.lex_state = 65}, + [2531] = {.lex_state = 28}, [2532] = {.lex_state = 28}, [2533] = {.lex_state = 28}, - [2534] = {.lex_state = 75}, + [2534] = {.lex_state = 28}, [2535] = {.lex_state = 28}, - [2536] = {.lex_state = 28}, + [2536] = {.lex_state = 73}, [2537] = {.lex_state = 28}, [2538] = {.lex_state = 28}, [2539] = {.lex_state = 28}, - [2540] = {.lex_state = 75}, - [2541] = {.lex_state = 28}, - [2542] = {.lex_state = 28}, - [2543] = {.lex_state = 28}, - [2544] = {.lex_state = 65}, - [2545] = {.lex_state = 75}, + [2540] = {.lex_state = 65}, + [2541] = {.lex_state = 73}, + [2542] = {.lex_state = 73}, + [2543] = {.lex_state = 73}, + [2544] = {.lex_state = 28}, + [2545] = {.lex_state = 28}, [2546] = {.lex_state = 28}, - [2547] = {.lex_state = 28}, - [2548] = {.lex_state = 28}, + [2547] = {.lex_state = 73}, + [2548] = {.lex_state = 75}, [2549] = {.lex_state = 28}, - [2550] = {.lex_state = 28}, + [2550] = {.lex_state = 73}, [2551] = {.lex_state = 28}, [2552] = {.lex_state = 28}, [2553] = {.lex_state = 28}, [2554] = {.lex_state = 28}, - [2555] = {.lex_state = 28}, + [2555] = {.lex_state = 75}, [2556] = {.lex_state = 28}, [2557] = {.lex_state = 28}, - [2558] = {.lex_state = 28}, - [2559] = {.lex_state = 75}, + [2558] = {.lex_state = 73}, + [2559] = {.lex_state = 28}, [2560] = {.lex_state = 28}, [2561] = {.lex_state = 28}, [2562] = {.lex_state = 28}, @@ -16824,87 +16837,87 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [2568] = {.lex_state = 28}, [2569] = {.lex_state = 28}, [2570] = {.lex_state = 28}, - [2571] = {.lex_state = 28}, + [2571] = {.lex_state = 75}, [2572] = {.lex_state = 28}, [2573] = {.lex_state = 55}, - [2574] = {.lex_state = 28}, + [2574] = {.lex_state = 55}, [2575] = {.lex_state = 28}, [2576] = {.lex_state = 28}, - [2577] = {.lex_state = 55}, - [2578] = {.lex_state = 73}, - [2579] = {.lex_state = 75}, - [2580] = {.lex_state = 75}, + [2577] = {.lex_state = 28}, + [2578] = {.lex_state = 28}, + [2579] = {.lex_state = 73}, + [2580] = {.lex_state = 73}, [2581] = {.lex_state = 73}, - [2582] = {.lex_state = 73}, + [2582] = {.lex_state = 75}, [2583] = {.lex_state = 73}, - [2584] = {.lex_state = 73}, - [2585] = {.lex_state = 73}, - [2586] = {.lex_state = 73}, + [2584] = {.lex_state = 75}, + [2585] = {.lex_state = 75}, + [2586] = {.lex_state = 77}, [2587] = {.lex_state = 73}, - [2588] = {.lex_state = 77}, + [2588] = {.lex_state = 75}, [2589] = {.lex_state = 73}, - [2590] = {.lex_state = 75}, + [2590] = {.lex_state = 73}, [2591] = {.lex_state = 73}, [2592] = {.lex_state = 73}, [2593] = {.lex_state = 73}, [2594] = {.lex_state = 73}, [2595] = {.lex_state = 73}, [2596] = {.lex_state = 73}, - [2597] = {.lex_state = 73}, - [2598] = {.lex_state = 28}, + [2597] = {.lex_state = 75}, + [2598] = {.lex_state = 73}, [2599] = {.lex_state = 73}, - [2600] = {.lex_state = 73}, - [2601] = {.lex_state = 73}, - [2602] = {.lex_state = 75}, - [2603] = {.lex_state = 75}, + [2600] = {.lex_state = 75}, + [2601] = {.lex_state = 28}, + [2602] = {.lex_state = 73}, + [2603] = {.lex_state = 73}, [2604] = {.lex_state = 73}, [2605] = {.lex_state = 73}, [2606] = {.lex_state = 73}, [2607] = {.lex_state = 73}, - [2608] = {.lex_state = 73}, + [2608] = {.lex_state = 75}, [2609] = {.lex_state = 73}, [2610] = {.lex_state = 73}, - [2611] = {.lex_state = 75}, + [2611] = {.lex_state = 73}, [2612] = {.lex_state = 73}, [2613] = {.lex_state = 73}, [2614] = {.lex_state = 73}, [2615] = {.lex_state = 73}, [2616] = {.lex_state = 73}, [2617] = {.lex_state = 73}, - [2618] = {.lex_state = 75}, - [2619] = {.lex_state = 75}, - [2620] = {.lex_state = 83}, + [2618] = {.lex_state = 73}, + [2619] = {.lex_state = 73}, + [2620] = {.lex_state = 75}, [2621] = {.lex_state = 73}, - [2622] = {.lex_state = 73}, + [2622] = {.lex_state = 75}, [2623] = {.lex_state = 73}, [2624] = {.lex_state = 73}, - [2625] = {.lex_state = 75}, - [2626] = {.lex_state = 83}, - [2627] = {.lex_state = 73}, - [2628] = {.lex_state = 83}, - [2629] = {.lex_state = 73}, + [2625] = {.lex_state = 73}, + [2626] = {.lex_state = 75}, + [2627] = {.lex_state = 75}, + [2628] = {.lex_state = 75}, + [2629] = {.lex_state = 83}, [2630] = {.lex_state = 73}, - [2631] = {.lex_state = 73}, - [2632] = {.lex_state = 83}, + [2631] = {.lex_state = 75}, + [2632] = {.lex_state = 73}, [2633] = {.lex_state = 75}, [2634] = {.lex_state = 75}, [2635] = {.lex_state = 75}, [2636] = {.lex_state = 73}, [2637] = {.lex_state = 75}, - [2638] = {.lex_state = 73}, - [2639] = {.lex_state = 75}, - [2640] = {.lex_state = 75}, - [2641] = {.lex_state = 83}, + [2638] = {.lex_state = 75}, + [2639] = {.lex_state = 73}, + [2640] = {.lex_state = 73}, + [2641] = {.lex_state = 73}, [2642] = {.lex_state = 73}, - [2643] = {.lex_state = 83}, + [2643] = {.lex_state = 75}, [2644] = {.lex_state = 75}, [2645] = {.lex_state = 75}, [2646] = {.lex_state = 73}, - [2647] = {.lex_state = 77}, + [2647] = {.lex_state = 75}, [2648] = {.lex_state = 75}, [2649] = {.lex_state = 75}, - [2650] = {.lex_state = 75}, - [2651] = {.lex_state = 73}, + [2650] = {.lex_state = 77}, + [2651] = {.lex_state = 75}, [2652] = {.lex_state = 75}, [2653] = {.lex_state = 75}, [2654] = {.lex_state = 73}, @@ -16914,7 +16927,7 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [2658] = {.lex_state = 75}, [2659] = {.lex_state = 75}, [2660] = {.lex_state = 75}, - [2661] = {.lex_state = 73}, + [2661] = {.lex_state = 75}, [2662] = {.lex_state = 75}, [2663] = {.lex_state = 75}, [2664] = {.lex_state = 75}, @@ -16925,51 +16938,51 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [2669] = {.lex_state = 75}, [2670] = {.lex_state = 75}, [2671] = {.lex_state = 75}, - [2672] = {.lex_state = 75}, + [2672] = {.lex_state = 83}, [2673] = {.lex_state = 75}, [2674] = {.lex_state = 75}, [2675] = {.lex_state = 75}, [2676] = {.lex_state = 73}, - [2677] = {.lex_state = 75}, - [2678] = {.lex_state = 75}, + [2677] = {.lex_state = 67}, + [2678] = {.lex_state = 73}, [2679] = {.lex_state = 75}, - [2680] = {.lex_state = 73}, + [2680] = {.lex_state = 75}, [2681] = {.lex_state = 75}, - [2682] = {.lex_state = 75}, - [2683] = {.lex_state = 75}, + [2682] = {.lex_state = 83}, + [2683] = {.lex_state = 73}, [2684] = {.lex_state = 75}, [2685] = {.lex_state = 75}, [2686] = {.lex_state = 75}, [2687] = {.lex_state = 75}, - [2688] = {.lex_state = 83}, + [2688] = {.lex_state = 75}, [2689] = {.lex_state = 75}, [2690] = {.lex_state = 75}, - [2691] = {.lex_state = 73}, - [2692] = {.lex_state = 73}, - [2693] = {.lex_state = 73}, + [2691] = {.lex_state = 75}, + [2692] = {.lex_state = 75}, + [2693] = {.lex_state = 75}, [2694] = {.lex_state = 73}, - [2695] = {.lex_state = 67}, + [2695] = {.lex_state = 73}, [2696] = {.lex_state = 75}, - [2697] = {.lex_state = 75}, + [2697] = {.lex_state = 73}, [2698] = {.lex_state = 75}, - [2699] = {.lex_state = 73}, - [2700] = {.lex_state = 73}, + [2699] = {.lex_state = 75}, + [2700] = {.lex_state = 75}, [2701] = {.lex_state = 75}, [2702] = {.lex_state = 75}, [2703] = {.lex_state = 73}, [2704] = {.lex_state = 73}, - [2705] = {.lex_state = 83}, + [2705] = {.lex_state = 75}, [2706] = {.lex_state = 83}, - [2707] = {.lex_state = 75}, + [2707] = {.lex_state = 73}, [2708] = {.lex_state = 73}, - [2709] = {.lex_state = 75}, + [2709] = {.lex_state = 73}, [2710] = {.lex_state = 75}, - [2711] = {.lex_state = 75}, - [2712] = {.lex_state = 75}, + [2711] = {.lex_state = 73}, + [2712] = {.lex_state = 73}, [2713] = {.lex_state = 75}, [2714] = {.lex_state = 75}, - [2715] = {.lex_state = 73}, - [2716] = {.lex_state = 73}, + [2715] = {.lex_state = 75}, + [2716] = {.lex_state = 75}, [2717] = {.lex_state = 75}, [2718] = {.lex_state = 73}, [2719] = {.lex_state = 75}, @@ -16977,22 +16990,22 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [2721] = {.lex_state = 75}, [2722] = {.lex_state = 75}, [2723] = {.lex_state = 75}, - [2724] = {.lex_state = 73}, + [2724] = {.lex_state = 75}, [2725] = {.lex_state = 75}, [2726] = {.lex_state = 75}, - [2727] = {.lex_state = 75}, - [2728] = {.lex_state = 73}, - [2729] = {.lex_state = 73}, + [2727] = {.lex_state = 83}, + [2728] = {.lex_state = 75}, + [2729] = {.lex_state = 75}, [2730] = {.lex_state = 75}, - [2731] = {.lex_state = 77}, - [2732] = {.lex_state = 75}, - [2733] = {.lex_state = 75}, - [2734] = {.lex_state = 75}, - [2735] = {.lex_state = 83}, + [2731] = {.lex_state = 73}, + [2732] = {.lex_state = 73}, + [2733] = {.lex_state = 73}, + [2734] = {.lex_state = 73}, + [2735] = {.lex_state = 75}, [2736] = {.lex_state = 75}, [2737] = {.lex_state = 75}, [2738] = {.lex_state = 75}, - [2739] = {.lex_state = 75}, + [2739] = {.lex_state = 73}, [2740] = {.lex_state = 75}, [2741] = {.lex_state = 75}, [2742] = {.lex_state = 75}, @@ -17001,72 +17014,72 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [2745] = {.lex_state = 75}, [2746] = {.lex_state = 75}, [2747] = {.lex_state = 75}, - [2748] = {.lex_state = 73}, + [2748] = {.lex_state = 75}, [2749] = {.lex_state = 75}, [2750] = {.lex_state = 73}, [2751] = {.lex_state = 73}, [2752] = {.lex_state = 73}, - [2753] = {.lex_state = 75}, - [2754] = {.lex_state = 75}, - [2755] = {.lex_state = 75}, - [2756] = {.lex_state = 73}, - [2757] = {.lex_state = 77}, - [2758] = {.lex_state = 73}, - [2759] = {.lex_state = 75}, - [2760] = {.lex_state = 73}, - [2761] = {.lex_state = 73}, - [2762] = {.lex_state = 73}, - [2763] = {.lex_state = 75}, + [2753] = {.lex_state = 83}, + [2754] = {.lex_state = 73}, + [2755] = {.lex_state = 83}, + [2756] = {.lex_state = 75}, + [2757] = {.lex_state = 73}, + [2758] = {.lex_state = 57}, + [2759] = {.lex_state = 83}, + [2760] = {.lex_state = 77}, + [2761] = {.lex_state = 57}, + [2762] = {.lex_state = 75}, + [2763] = {.lex_state = 73}, [2764] = {.lex_state = 75}, [2765] = {.lex_state = 75}, - [2766] = {.lex_state = 67}, + [2766] = {.lex_state = 73}, [2767] = {.lex_state = 73}, - [2768] = {.lex_state = 75}, - [2769] = {.lex_state = 75}, + [2768] = {.lex_state = 73}, + [2769] = {.lex_state = 73}, [2770] = {.lex_state = 73}, - [2771] = {.lex_state = 73}, - [2772] = {.lex_state = 75}, + [2771] = {.lex_state = 75}, + [2772] = {.lex_state = 83}, [2773] = {.lex_state = 83}, [2774] = {.lex_state = 73}, [2775] = {.lex_state = 73}, - [2776] = {.lex_state = 57}, + [2776] = {.lex_state = 73}, [2777] = {.lex_state = 73}, - [2778] = {.lex_state = 57}, - [2779] = {.lex_state = 73}, - [2780] = {.lex_state = 73}, - [2781] = {.lex_state = 73}, - [2782] = {.lex_state = 73}, - [2783] = {.lex_state = 83}, + [2778] = {.lex_state = 73}, + [2779] = {.lex_state = 75}, + [2780] = {.lex_state = 77}, + [2781] = {.lex_state = 83}, + [2782] = {.lex_state = 83}, + [2783] = {.lex_state = 73}, [2784] = {.lex_state = 73}, [2785] = {.lex_state = 73}, - [2786] = {.lex_state = 75}, + [2786] = {.lex_state = 73}, [2787] = {.lex_state = 73}, - [2788] = {.lex_state = 75}, - [2789] = {.lex_state = 75}, + [2788] = {.lex_state = 73}, + [2789] = {.lex_state = 83}, [2790] = {.lex_state = 73}, - [2791] = {.lex_state = 73}, - [2792] = {.lex_state = 73}, + [2791] = {.lex_state = 75}, + [2792] = {.lex_state = 75}, [2793] = {.lex_state = 73}, [2794] = {.lex_state = 83}, [2795] = {.lex_state = 73}, - [2796] = {.lex_state = 75}, - [2797] = {.lex_state = 83}, - [2798] = {.lex_state = 83}, - [2799] = {.lex_state = 73}, - [2800] = {.lex_state = 83}, - [2801] = {.lex_state = 73}, + [2796] = {.lex_state = 73}, + [2797] = {.lex_state = 73}, + [2798] = {.lex_state = 73}, + [2799] = {.lex_state = 75}, + [2800] = {.lex_state = 73}, + [2801] = {.lex_state = 83}, [2802] = {.lex_state = 73}, - [2803] = {.lex_state = 73}, - [2804] = {.lex_state = 75}, - [2805] = {.lex_state = 77}, - [2806] = {.lex_state = 73}, + [2803] = {.lex_state = 67}, + [2804] = {.lex_state = 83}, + [2805] = {.lex_state = 73}, + [2806] = {.lex_state = 77}, [2807] = {.lex_state = 73}, - [2808] = {.lex_state = 81}, + [2808] = {.lex_state = 73}, [2809] = {.lex_state = 73}, [2810] = {.lex_state = 73}, [2811] = {.lex_state = 73}, [2812] = {.lex_state = 73}, - [2813] = {.lex_state = 77}, + [2813] = {.lex_state = 73}, [2814] = {.lex_state = 73}, [2815] = {.lex_state = 73}, [2816] = {.lex_state = 81}, @@ -17074,68 +17087,68 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [2818] = {.lex_state = 73}, [2819] = {.lex_state = 73}, [2820] = {.lex_state = 73}, - [2821] = {.lex_state = 73}, - [2822] = {.lex_state = 73}, + [2821] = {.lex_state = 81}, + [2822] = {.lex_state = 77}, [2823] = {.lex_state = 73}, [2824] = {.lex_state = 81}, - [2825] = {.lex_state = 81}, + [2825] = {.lex_state = 73}, [2826] = {.lex_state = 73}, [2827] = {.lex_state = 73}, [2828] = {.lex_state = 73}, [2829] = {.lex_state = 73}, [2830] = {.lex_state = 73}, - [2831] = {.lex_state = 73}, + [2831] = {.lex_state = 81}, [2832] = {.lex_state = 73}, [2833] = {.lex_state = 77}, - [2834] = {.lex_state = 77}, - [2835] = {.lex_state = 77}, + [2834] = {.lex_state = 73}, + [2835] = {.lex_state = 33}, [2836] = {.lex_state = 77}, [2837] = {.lex_state = 77}, - [2838] = {.lex_state = 77}, - [2839] = {.lex_state = 77}, + [2838] = {.lex_state = 73}, + [2839] = {.lex_state = 83}, [2840] = {.lex_state = 77}, - [2841] = {.lex_state = 83}, + [2841] = {.lex_state = 77}, [2842] = {.lex_state = 73}, [2843] = {.lex_state = 77}, - [2844] = {.lex_state = 77}, + [2844] = {.lex_state = 73}, [2845] = {.lex_state = 77}, [2846] = {.lex_state = 77}, - [2847] = {.lex_state = 77}, - [2848] = {.lex_state = 77}, + [2847] = {.lex_state = 73}, + [2848] = {.lex_state = 73}, [2849] = {.lex_state = 77}, - [2850] = {.lex_state = 33}, + [2850] = {.lex_state = 83}, [2851] = {.lex_state = 77}, [2852] = {.lex_state = 77}, - [2853] = {.lex_state = 33}, + [2853] = {.lex_state = 77}, [2854] = {.lex_state = 77}, - [2855] = {.lex_state = 73}, + [2855] = {.lex_state = 77}, [2856] = {.lex_state = 77}, [2857] = {.lex_state = 77}, - [2858] = {.lex_state = 73}, - [2859] = {.lex_state = 83}, - [2860] = {.lex_state = 73}, - [2861] = {.lex_state = 77}, + [2858] = {.lex_state = 77}, + [2859] = {.lex_state = 77}, + [2860] = {.lex_state = 83}, + [2861] = {.lex_state = 83}, [2862] = {.lex_state = 77}, - [2863] = {.lex_state = 83}, + [2863] = {.lex_state = 77}, [2864] = {.lex_state = 77}, - [2865] = {.lex_state = 77}, - [2866] = {.lex_state = 73}, + [2865] = {.lex_state = 73}, + [2866] = {.lex_state = 77}, [2867] = {.lex_state = 73}, - [2868] = {.lex_state = 77}, - [2869] = {.lex_state = 77}, - [2870] = {.lex_state = 77}, - [2871] = {.lex_state = 77}, - [2872] = {.lex_state = 73}, + [2868] = {.lex_state = 73}, + [2869] = {.lex_state = 73}, + [2870] = {.lex_state = 33}, + [2871] = {.lex_state = 33}, + [2872] = {.lex_state = 77}, [2873] = {.lex_state = 73}, - [2874] = {.lex_state = 73}, - [2875] = {.lex_state = 83}, - [2876] = {.lex_state = 73}, - [2877] = {.lex_state = 73}, + [2874] = {.lex_state = 77}, + [2875] = {.lex_state = 73}, + [2876] = {.lex_state = 77}, + [2877] = {.lex_state = 77}, [2878] = {.lex_state = 77}, [2879] = {.lex_state = 73}, [2880] = {.lex_state = 73}, - [2881] = {.lex_state = 33}, - [2882] = {.lex_state = 73}, + [2881] = {.lex_state = 77}, + [2882] = {.lex_state = 77}, [2883] = {.lex_state = 73}, [2884] = {.lex_state = 73}, [2885] = {.lex_state = 73}, @@ -17210,9 +17223,9 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [2954] = {.lex_state = 73}, [2955] = {.lex_state = 73}, [2956] = {.lex_state = 73}, - [2957] = {.lex_state = 83}, - [2958] = {.lex_state = 83}, - [2959] = {.lex_state = 83}, + [2957] = {.lex_state = 73}, + [2958] = {.lex_state = 73}, + [2959] = {.lex_state = 73}, [2960] = {.lex_state = 83}, [2961] = {.lex_state = 83}, [2962] = {.lex_state = 83}, @@ -17490,38 +17503,38 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [3234] = {.lex_state = 83}, [3235] = {.lex_state = 83}, [3236] = {.lex_state = 83}, - [3237] = {.lex_state = 87}, + [3237] = {.lex_state = 83}, [3238] = {.lex_state = 83}, - [3239] = {.lex_state = 83}, - [3240] = {.lex_state = 83}, - [3241] = {.lex_state = 87}, + [3239] = {.lex_state = 87}, + [3240] = {.lex_state = 87}, + [3241] = {.lex_state = 83}, [3242] = {.lex_state = 83}, [3243] = {.lex_state = 83}, [3244] = {.lex_state = 83}, - [3245] = {.lex_state = 85}, - [3246] = {.lex_state = 33}, - [3247] = {.lex_state = 33}, - [3248] = {.lex_state = 33}, + [3245] = {.lex_state = 83}, + [3246] = {.lex_state = 83}, + [3247] = {.lex_state = 83}, + [3248] = {.lex_state = 85}, [3249] = {.lex_state = 33}, [3250] = {.lex_state = 33}, - [3251] = {.lex_state = 185}, - [3252] = {.lex_state = 83}, - [3253] = {.lex_state = 87}, - [3254] = {.lex_state = 83}, - [3255] = {.lex_state = 84}, + [3251] = {.lex_state = 33}, + [3252] = {.lex_state = 33}, + [3253] = {.lex_state = 33}, + [3254] = {.lex_state = 185}, + [3255] = {.lex_state = 83}, [3256] = {.lex_state = 83}, [3257] = {.lex_state = 83}, - [3258] = {.lex_state = 83}, + [3258] = {.lex_state = 84}, [3259] = {.lex_state = 84}, - [3260] = {.lex_state = 84}, - [3261] = {.lex_state = 41}, - [3262] = {.lex_state = 41}, - [3263] = {.lex_state = 34}, - [3264] = {.lex_state = 83}, + [3260] = {.lex_state = 83}, + [3261] = {.lex_state = 87}, + [3262] = {.lex_state = 83}, + [3263] = {.lex_state = 84}, + [3264] = {.lex_state = 41}, [3265] = {.lex_state = 34}, - [3266] = {.lex_state = 41}, - [3267] = {.lex_state = 41}, - [3268] = {.lex_state = 83}, + [3266] = {.lex_state = 83}, + [3267] = {.lex_state = 34}, + [3268] = {.lex_state = 41}, [3269] = {.lex_state = 41}, [3270] = {.lex_state = 41}, [3271] = {.lex_state = 41}, @@ -17529,78 +17542,78 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [3273] = {.lex_state = 41}, [3274] = {.lex_state = 41}, [3275] = {.lex_state = 41}, - [3276] = {.lex_state = 85}, + [3276] = {.lex_state = 41}, [3277] = {.lex_state = 83}, - [3278] = {.lex_state = 83}, + [3278] = {.lex_state = 41}, [3279] = {.lex_state = 41}, [3280] = {.lex_state = 85}, - [3281] = {.lex_state = 85}, + [3281] = {.lex_state = 83}, [3282] = {.lex_state = 85}, - [3283] = {.lex_state = 85}, + [3283] = {.lex_state = 83}, [3284] = {.lex_state = 85}, - [3285] = {.lex_state = 84}, - [3286] = {.lex_state = 35}, - [3287] = {.lex_state = 84}, - [3288] = {.lex_state = 41}, + [3285] = {.lex_state = 85}, + [3286] = {.lex_state = 85}, + [3287] = {.lex_state = 85}, + [3288] = {.lex_state = 85}, [3289] = {.lex_state = 85}, [3290] = {.lex_state = 85}, - [3291] = {.lex_state = 35}, + [3291] = {.lex_state = 85}, [3292] = {.lex_state = 85}, [3293] = {.lex_state = 84}, - [3294] = {.lex_state = 85}, + [3294] = {.lex_state = 84}, [3295] = {.lex_state = 85}, [3296] = {.lex_state = 85}, [3297] = {.lex_state = 85}, - [3298] = {.lex_state = 85}, - [3299] = {.lex_state = 41}, + [3298] = {.lex_state = 84}, + [3299] = {.lex_state = 85}, [3300] = {.lex_state = 85}, - [3301] = {.lex_state = 85}, - [3302] = {.lex_state = 41}, - [3303] = {.lex_state = 84}, - [3304] = {.lex_state = 84}, - [3305] = {.lex_state = 85}, - [3306] = {.lex_state = 84}, - [3307] = {.lex_state = 85}, - [3308] = {.lex_state = 85}, - [3309] = {.lex_state = 85}, + [3301] = {.lex_state = 84}, + [3302] = {.lex_state = 85}, + [3303] = {.lex_state = 85}, + [3304] = {.lex_state = 85}, + [3305] = {.lex_state = 35}, + [3306] = {.lex_state = 41}, + [3307] = {.lex_state = 84}, + [3308] = {.lex_state = 84}, + [3309] = {.lex_state = 41}, [3310] = {.lex_state = 85}, [3311] = {.lex_state = 85}, - [3312] = {.lex_state = 85}, + [3312] = {.lex_state = 84}, [3313] = {.lex_state = 85}, [3314] = {.lex_state = 85}, - [3315] = {.lex_state = 85}, - [3316] = {.lex_state = 84}, - [3317] = {.lex_state = 41}, + [3315] = {.lex_state = 84}, + [3316] = {.lex_state = 85}, + [3317] = {.lex_state = 85}, [3318] = {.lex_state = 85}, - [3319] = {.lex_state = 35}, - [3320] = {.lex_state = 35}, - [3321] = {.lex_state = 85}, + [3319] = {.lex_state = 34}, + [3320] = {.lex_state = 85}, + [3321] = {.lex_state = 35}, [3322] = {.lex_state = 85}, - [3323] = {.lex_state = 84}, - [3324] = {.lex_state = 34}, - [3325] = {.lex_state = 85}, + [3323] = {.lex_state = 41}, + [3324] = {.lex_state = 85}, + [3325] = {.lex_state = 35}, [3326] = {.lex_state = 85}, - [3327] = {.lex_state = 85}, - [3328] = {.lex_state = 84}, - [3329] = {.lex_state = 84}, - [3330] = {.lex_state = 34}, - [3331] = {.lex_state = 34}, + [3327] = {.lex_state = 35}, + [3328] = {.lex_state = 85}, + [3329] = {.lex_state = 85}, + [3330] = {.lex_state = 41}, + [3331] = {.lex_state = 84}, [3332] = {.lex_state = 34}, - [3333] = {.lex_state = 84}, - [3334] = {.lex_state = 84}, - [3335] = {.lex_state = 34}, - [3336] = {.lex_state = 34}, + [3333] = {.lex_state = 34}, + [3334] = {.lex_state = 34}, + [3335] = {.lex_state = 84}, + [3336] = {.lex_state = 84}, [3337] = {.lex_state = 34}, - [3338] = {.lex_state = 34}, + [3338] = {.lex_state = 84}, [3339] = {.lex_state = 34}, [3340] = {.lex_state = 34}, [3341] = {.lex_state = 34}, [3342] = {.lex_state = 34}, [3343] = {.lex_state = 34}, - [3344] = {.lex_state = 34}, + [3344] = {.lex_state = 84}, [3345] = {.lex_state = 34}, [3346] = {.lex_state = 35}, - [3347] = {.lex_state = 84}, + [3347] = {.lex_state = 34}, [3348] = {.lex_state = 34}, [3349] = {.lex_state = 34}, [3350] = {.lex_state = 34}, @@ -17614,106 +17627,106 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [3358] = {.lex_state = 34}, [3359] = {.lex_state = 34}, [3360] = {.lex_state = 34}, - [3361] = {.lex_state = 85}, - [3362] = {.lex_state = 35}, - [3363] = {.lex_state = 85}, - [3364] = {.lex_state = 81}, - [3365] = {.lex_state = 81}, - [3366] = {.lex_state = 81}, - [3367] = {.lex_state = 34}, - [3368] = {.lex_state = 85}, + [3361] = {.lex_state = 34}, + [3362] = {.lex_state = 34}, + [3363] = {.lex_state = 34}, + [3364] = {.lex_state = 85}, + [3365] = {.lex_state = 35}, + [3366] = {.lex_state = 85}, + [3367] = {.lex_state = 81}, + [3368] = {.lex_state = 34}, [3369] = {.lex_state = 81}, - [3370] = {.lex_state = 81}, + [3370] = {.lex_state = 34}, [3371] = {.lex_state = 34}, - [3372] = {.lex_state = 81}, - [3373] = {.lex_state = 34}, - [3374] = {.lex_state = 81}, - [3375] = {.lex_state = 81}, - [3376] = {.lex_state = 85}, - [3377] = {.lex_state = 34}, + [3372] = {.lex_state = 85}, + [3373] = {.lex_state = 81}, + [3374] = {.lex_state = 85}, + [3375] = {.lex_state = 34}, + [3376] = {.lex_state = 81}, + [3377] = {.lex_state = 81}, [3378] = {.lex_state = 81}, [3379] = {.lex_state = 81}, [3380] = {.lex_state = 81}, [3381] = {.lex_state = 81}, - [3382] = {.lex_state = 34}, - [3383] = {.lex_state = 34}, - [3384] = {.lex_state = 85}, + [3382] = {.lex_state = 81}, + [3383] = {.lex_state = 81}, + [3384] = {.lex_state = 81}, [3385] = {.lex_state = 34}, [3386] = {.lex_state = 34}, - [3387] = {.lex_state = 24}, - [3388] = {.lex_state = 34}, + [3387] = {.lex_state = 34}, + [3388] = {.lex_state = 24}, [3389] = {.lex_state = 34}, [3390] = {.lex_state = 34}, [3391] = {.lex_state = 34}, - [3392] = {.lex_state = 24}, + [3392] = {.lex_state = 34}, [3393] = {.lex_state = 24}, [3394] = {.lex_state = 34}, [3395] = {.lex_state = 24}, [3396] = {.lex_state = 34}, - [3397] = {.lex_state = 34}, - [3398] = {.lex_state = 34}, - [3399] = {.lex_state = 81}, - [3400] = {.lex_state = 85}, - [3401] = {.lex_state = 81}, + [3397] = {.lex_state = 85}, + [3398] = {.lex_state = 24}, + [3399] = {.lex_state = 34}, + [3400] = {.lex_state = 34}, + [3401] = {.lex_state = 34}, [3402] = {.lex_state = 81}, [3403] = {.lex_state = 81}, [3404] = {.lex_state = 81}, - [3405] = {.lex_state = 81}, + [3405] = {.lex_state = 24}, [3406] = {.lex_state = 81}, [3407] = {.lex_state = 81}, [3408] = {.lex_state = 85}, - [3409] = {.lex_state = 24}, + [3409] = {.lex_state = 81}, [3410] = {.lex_state = 81}, - [3411] = {.lex_state = 81}, - [3412] = {.lex_state = 34}, + [3411] = {.lex_state = 85}, + [3412] = {.lex_state = 81}, [3413] = {.lex_state = 85}, [3414] = {.lex_state = 81}, [3415] = {.lex_state = 81}, - [3416] = {.lex_state = 24}, + [3416] = {.lex_state = 81}, [3417] = {.lex_state = 81}, [3418] = {.lex_state = 81}, - [3419] = {.lex_state = 85}, + [3419] = {.lex_state = 81}, [3420] = {.lex_state = 81}, [3421] = {.lex_state = 81}, - [3422] = {.lex_state = 81}, + [3422] = {.lex_state = 85}, [3423] = {.lex_state = 81}, [3424] = {.lex_state = 81}, [3425] = {.lex_state = 81}, - [3426] = {.lex_state = 85}, + [3426] = {.lex_state = 81}, [3427] = {.lex_state = 81}, - [3428] = {.lex_state = 85}, - [3429] = {.lex_state = 81}, + [3428] = {.lex_state = 34}, + [3429] = {.lex_state = 85}, [3430] = {.lex_state = 81}, - [3431] = {.lex_state = 81}, - [3432] = {.lex_state = 95}, - [3433] = {.lex_state = 95}, - [3434] = {.lex_state = 95}, + [3431] = {.lex_state = 85}, + [3432] = {.lex_state = 81}, + [3433] = {.lex_state = 81}, + [3434] = {.lex_state = 24}, [3435] = {.lex_state = 88}, - [3436] = {.lex_state = 95}, - [3437] = {.lex_state = 88}, - [3438] = {.lex_state = 95}, + [3436] = {.lex_state = 88}, + [3437] = {.lex_state = 194}, + [3438] = {.lex_state = 194}, [3439] = {.lex_state = 88}, [3440] = {.lex_state = 95}, - [3441] = {.lex_state = 90}, + [3441] = {.lex_state = 88}, [3442] = {.lex_state = 95}, - [3443] = {.lex_state = 88}, - [3444] = {.lex_state = 95}, - [3445] = {.lex_state = 88}, + [3443] = {.lex_state = 95}, + [3444] = {.lex_state = 88}, + [3445] = {.lex_state = 194}, [3446] = {.lex_state = 88}, [3447] = {.lex_state = 95}, [3448] = {.lex_state = 95}, - [3449] = {.lex_state = 88}, - [3450] = {.lex_state = 88}, - [3451] = {.lex_state = 95}, - [3452] = {.lex_state = 88}, - [3453] = {.lex_state = 95}, + [3449] = {.lex_state = 0}, + [3450] = {.lex_state = 95}, + [3451] = {.lex_state = 88}, + [3452] = {.lex_state = 95}, + [3453] = {.lex_state = 88}, [3454] = {.lex_state = 88}, - [3455] = {.lex_state = 194}, - [3456] = {.lex_state = 95}, - [3457] = {.lex_state = 85}, + [3455] = {.lex_state = 95}, + [3456] = {.lex_state = 88}, + [3457] = {.lex_state = 95}, [3458] = {.lex_state = 88}, - [3459] = {.lex_state = 95}, - [3460] = {.lex_state = 88}, + [3459] = {.lex_state = 88}, + [3460] = {.lex_state = 0}, [3461] = {.lex_state = 95}, [3462] = {.lex_state = 88}, [3463] = {.lex_state = 95}, @@ -17721,496 +17734,496 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [3465] = {.lex_state = 95}, [3466] = {.lex_state = 88}, [3467] = {.lex_state = 95}, - [3468] = {.lex_state = 88}, + [3468] = {.lex_state = 194}, [3469] = {.lex_state = 95}, - [3470] = {.lex_state = 194}, - [3471] = {.lex_state = 95}, - [3472] = {.lex_state = 88}, - [3473] = {.lex_state = 95}, - [3474] = {.lex_state = 95}, - [3475] = {.lex_state = 88}, - [3476] = {.lex_state = 88}, - [3477] = {.lex_state = 88}, - [3478] = {.lex_state = 95}, + [3470] = {.lex_state = 95}, + [3471] = {.lex_state = 88}, + [3472] = {.lex_state = 95}, + [3473] = {.lex_state = 88}, + [3474] = {.lex_state = 88}, + [3475] = {.lex_state = 95}, + [3476] = {.lex_state = 95}, + [3477] = {.lex_state = 90}, + [3478] = {.lex_state = 88}, [3479] = {.lex_state = 95}, [3480] = {.lex_state = 88}, [3481] = {.lex_state = 95}, [3482] = {.lex_state = 88}, - [3483] = {.lex_state = 95}, - [3484] = {.lex_state = 88}, - [3485] = {.lex_state = 95}, - [3486] = {.lex_state = 88}, - [3487] = {.lex_state = 95}, - [3488] = {.lex_state = 95}, - [3489] = {.lex_state = 95}, + [3483] = {.lex_state = 194}, + [3484] = {.lex_state = 95}, + [3485] = {.lex_state = 194}, + [3486] = {.lex_state = 95}, + [3487] = {.lex_state = 88}, + [3488] = {.lex_state = 88}, + [3489] = {.lex_state = 194}, [3490] = {.lex_state = 88}, [3491] = {.lex_state = 95}, - [3492] = {.lex_state = 88}, + [3492] = {.lex_state = 95}, [3493] = {.lex_state = 95}, - [3494] = {.lex_state = 194}, - [3495] = {.lex_state = 88}, + [3494] = {.lex_state = 88}, + [3495] = {.lex_state = 95}, [3496] = {.lex_state = 88}, - [3497] = {.lex_state = 95}, - [3498] = {.lex_state = 0}, - [3499] = {.lex_state = 194}, - [3500] = {.lex_state = 95}, - [3501] = {.lex_state = 88}, + [3497] = {.lex_state = 88}, + [3498] = {.lex_state = 88}, + [3499] = {.lex_state = 95}, + [3500] = {.lex_state = 88}, + [3501] = {.lex_state = 95}, [3502] = {.lex_state = 95}, - [3503] = {.lex_state = 88}, + [3503] = {.lex_state = 95}, [3504] = {.lex_state = 88}, [3505] = {.lex_state = 95}, [3506] = {.lex_state = 88}, [3507] = {.lex_state = 95}, [3508] = {.lex_state = 88}, [3509] = {.lex_state = 95}, - [3510] = {.lex_state = 194}, - [3511] = {.lex_state = 95}, + [3510] = {.lex_state = 95}, + [3511] = {.lex_state = 34}, [3512] = {.lex_state = 88}, - [3513] = {.lex_state = 88}, - [3514] = {.lex_state = 194}, - [3515] = {.lex_state = 88}, - [3516] = {.lex_state = 88}, - [3517] = {.lex_state = 34}, + [3513] = {.lex_state = 95}, + [3514] = {.lex_state = 88}, + [3515] = {.lex_state = 95}, + [3516] = {.lex_state = 95}, + [3517] = {.lex_state = 88}, [3518] = {.lex_state = 95}, [3519] = {.lex_state = 88}, [3520] = {.lex_state = 88}, [3521] = {.lex_state = 95}, [3522] = {.lex_state = 88}, [3523] = {.lex_state = 95}, - [3524] = {.lex_state = 95}, + [3524] = {.lex_state = 34}, [3525] = {.lex_state = 88}, - [3526] = {.lex_state = 194}, - [3527] = {.lex_state = 34}, - [3528] = {.lex_state = 88}, + [3526] = {.lex_state = 95}, + [3527] = {.lex_state = 88}, + [3528] = {.lex_state = 95}, [3529] = {.lex_state = 95}, - [3530] = {.lex_state = 95}, - [3531] = {.lex_state = 194}, - [3532] = {.lex_state = 88}, - [3533] = {.lex_state = 95}, - [3534] = {.lex_state = 88}, - [3535] = {.lex_state = 85}, + [3530] = {.lex_state = 88}, + [3531] = {.lex_state = 95}, + [3532] = {.lex_state = 95}, + [3533] = {.lex_state = 88}, + [3534] = {.lex_state = 95}, + [3535] = {.lex_state = 88}, [3536] = {.lex_state = 88}, - [3537] = {.lex_state = 95}, + [3537] = {.lex_state = 88}, [3538] = {.lex_state = 88}, - [3539] = {.lex_state = 95}, + [3539] = {.lex_state = 85}, [3540] = {.lex_state = 88}, - [3541] = {.lex_state = 0}, - [3542] = {.lex_state = 95}, - [3543] = {.lex_state = 88}, - [3544] = {.lex_state = 88}, - [3545] = {.lex_state = 81}, - [3546] = {.lex_state = 194}, - [3547] = {.lex_state = 81}, - [3548] = {.lex_state = 198}, - [3549] = {.lex_state = 194}, - [3550] = {.lex_state = 81}, - [3551] = {.lex_state = 81}, - [3552] = {.lex_state = 0}, - [3553] = {.lex_state = 85}, - [3554] = {.lex_state = 194}, - [3555] = {.lex_state = 34}, - [3556] = {.lex_state = 81}, + [3541] = {.lex_state = 95}, + [3542] = {.lex_state = 88}, + [3543] = {.lex_state = 194}, + [3544] = {.lex_state = 95}, + [3545] = {.lex_state = 88}, + [3546] = {.lex_state = 95}, + [3547] = {.lex_state = 85}, + [3548] = {.lex_state = 0}, + [3549] = {.lex_state = 34}, + [3550] = {.lex_state = 85}, + [3551] = {.lex_state = 85}, + [3552] = {.lex_state = 81}, + [3553] = {.lex_state = 81}, + [3554] = {.lex_state = 0}, + [3555] = {.lex_state = 194}, + [3556] = {.lex_state = 0}, [3557] = {.lex_state = 0}, - [3558] = {.lex_state = 85}, + [3558] = {.lex_state = 0}, [3559] = {.lex_state = 0}, - [3560] = {.lex_state = 0}, - [3561] = {.lex_state = 85}, + [3560] = {.lex_state = 194}, + [3561] = {.lex_state = 81}, [3562] = {.lex_state = 81}, - [3563] = {.lex_state = 81}, - [3564] = {.lex_state = 194}, - [3565] = {.lex_state = 0}, - [3566] = {.lex_state = 0}, - [3567] = {.lex_state = 81}, - [3568] = {.lex_state = 0}, - [3569] = {.lex_state = 194}, - [3570] = {.lex_state = 85}, - [3571] = {.lex_state = 34}, - [3572] = {.lex_state = 0}, - [3573] = {.lex_state = 194}, + [3563] = {.lex_state = 34}, + [3564] = {.lex_state = 0}, + [3565] = {.lex_state = 85}, + [3566] = {.lex_state = 194}, + [3567] = {.lex_state = 194}, + [3568] = {.lex_state = 85}, + [3569] = {.lex_state = 0}, + [3570] = {.lex_state = 81}, + [3571] = {.lex_state = 81}, + [3572] = {.lex_state = 198}, + [3573] = {.lex_state = 81}, [3574] = {.lex_state = 85}, - [3575] = {.lex_state = 34}, - [3576] = {.lex_state = 85}, - [3577] = {.lex_state = 85}, - [3578] = {.lex_state = 194}, - [3579] = {.lex_state = 85}, - [3580] = {.lex_state = 194}, + [3575] = {.lex_state = 85}, + [3576] = {.lex_state = 194}, + [3577] = {.lex_state = 194}, + [3578] = {.lex_state = 34}, + [3579] = {.lex_state = 81}, + [3580] = {.lex_state = 0}, [3581] = {.lex_state = 0}, - [3582] = {.lex_state = 194}, - [3583] = {.lex_state = 0}, - [3584] = {.lex_state = 194}, - [3585] = {.lex_state = 194}, + [3582] = {.lex_state = 0}, + [3583] = {.lex_state = 85}, + [3584] = {.lex_state = 0}, + [3585] = {.lex_state = 0}, [3586] = {.lex_state = 69}, [3587] = {.lex_state = 85}, - [3588] = {.lex_state = 0}, - [3589] = {.lex_state = 85}, - [3590] = {.lex_state = 88}, - [3591] = {.lex_state = 88}, - [3592] = {.lex_state = 194}, - [3593] = {.lex_state = 85}, - [3594] = {.lex_state = 69}, - [3595] = {.lex_state = 194}, - [3596] = {.lex_state = 194}, - [3597] = {.lex_state = 85}, - [3598] = {.lex_state = 81}, - [3599] = {.lex_state = 85}, - [3600] = {.lex_state = 85}, - [3601] = {.lex_state = 69}, - [3602] = {.lex_state = 0}, - [3603] = {.lex_state = 69}, - [3604] = {.lex_state = 194}, - [3605] = {.lex_state = 85}, - [3606] = {.lex_state = 0}, - [3607] = {.lex_state = 69}, - [3608] = {.lex_state = 0}, - [3609] = {.lex_state = 194}, - [3610] = {.lex_state = 0}, - [3611] = {.lex_state = 194}, + [3588] = {.lex_state = 69}, + [3589] = {.lex_state = 0}, + [3590] = {.lex_state = 69}, + [3591] = {.lex_state = 85}, + [3592] = {.lex_state = 85}, + [3593] = {.lex_state = 0}, + [3594] = {.lex_state = 194}, + [3595] = {.lex_state = 0}, + [3596] = {.lex_state = 85}, + [3597] = {.lex_state = 69}, + [3598] = {.lex_state = 0}, + [3599] = {.lex_state = 194}, + [3600] = {.lex_state = 0}, + [3601] = {.lex_state = 88}, + [3602] = {.lex_state = 69}, + [3603] = {.lex_state = 85}, + [3604] = {.lex_state = 69}, + [3605] = {.lex_state = 0}, + [3606] = {.lex_state = 90}, + [3607] = {.lex_state = 0}, + [3608] = {.lex_state = 85}, + [3609] = {.lex_state = 0}, + [3610] = {.lex_state = 85}, + [3611] = {.lex_state = 95}, [3612] = {.lex_state = 85}, [3613] = {.lex_state = 85}, [3614] = {.lex_state = 85}, - [3615] = {.lex_state = 85}, - [3616] = {.lex_state = 0}, - [3617] = {.lex_state = 0}, - [3618] = {.lex_state = 194}, - [3619] = {.lex_state = 0}, - [3620] = {.lex_state = 0}, - [3621] = {.lex_state = 194}, - [3622] = {.lex_state = 198}, + [3615] = {.lex_state = 0}, + [3616] = {.lex_state = 69}, + [3617] = {.lex_state = 194}, + [3618] = {.lex_state = 0}, + [3619] = {.lex_state = 69}, + [3620] = {.lex_state = 88}, + [3621] = {.lex_state = 95}, + [3622] = {.lex_state = 0}, [3623] = {.lex_state = 194}, - [3624] = {.lex_state = 69}, - [3625] = {.lex_state = 0}, - [3626] = {.lex_state = 69}, - [3627] = {.lex_state = 0}, - [3628] = {.lex_state = 95}, - [3629] = {.lex_state = 0}, - [3630] = {.lex_state = 85}, - [3631] = {.lex_state = 69}, - [3632] = {.lex_state = 194}, + [3624] = {.lex_state = 0}, + [3625] = {.lex_state = 194}, + [3626] = {.lex_state = 194}, + [3627] = {.lex_state = 69}, + [3628] = {.lex_state = 0}, + [3629] = {.lex_state = 69}, + [3630] = {.lex_state = 0}, + [3631] = {.lex_state = 85}, + [3632] = {.lex_state = 85}, [3633] = {.lex_state = 0}, - [3634] = {.lex_state = 69}, - [3635] = {.lex_state = 0}, + [3634] = {.lex_state = 85}, + [3635] = {.lex_state = 85}, [3636] = {.lex_state = 85}, [3637] = {.lex_state = 0}, - [3638] = {.lex_state = 85}, - [3639] = {.lex_state = 194}, - [3640] = {.lex_state = 194}, - [3641] = {.lex_state = 69}, - [3642] = {.lex_state = 85}, - [3643] = {.lex_state = 85}, - [3644] = {.lex_state = 69}, - [3645] = {.lex_state = 0}, - [3646] = {.lex_state = 69}, - [3647] = {.lex_state = 85}, - [3648] = {.lex_state = 85}, - [3649] = {.lex_state = 69}, - [3650] = {.lex_state = 85}, - [3651] = {.lex_state = 85}, + [3638] = {.lex_state = 0}, + [3639] = {.lex_state = 95}, + [3640] = {.lex_state = 69}, + [3641] = {.lex_state = 0}, + [3642] = {.lex_state = 194}, + [3643] = {.lex_state = 90}, + [3644] = {.lex_state = 198}, + [3645] = {.lex_state = 85}, + [3646] = {.lex_state = 0}, + [3647] = {.lex_state = 88}, + [3648] = {.lex_state = 194}, + [3649] = {.lex_state = 194}, + [3650] = {.lex_state = 69}, + [3651] = {.lex_state = 0}, [3652] = {.lex_state = 0}, - [3653] = {.lex_state = 0}, - [3654] = {.lex_state = 0}, + [3653] = {.lex_state = 194}, + [3654] = {.lex_state = 69}, [3655] = {.lex_state = 194}, - [3656] = {.lex_state = 85}, - [3657] = {.lex_state = 0}, + [3656] = {.lex_state = 69}, + [3657] = {.lex_state = 69}, [3658] = {.lex_state = 85}, - [3659] = {.lex_state = 0}, - [3660] = {.lex_state = 0}, - [3661] = {.lex_state = 0}, + [3659] = {.lex_state = 85}, + [3660] = {.lex_state = 85}, + [3661] = {.lex_state = 198}, [3662] = {.lex_state = 85}, - [3663] = {.lex_state = 69}, - [3664] = {.lex_state = 69}, - [3665] = {.lex_state = 90}, - [3666] = {.lex_state = 69}, - [3667] = {.lex_state = 85}, - [3668] = {.lex_state = 0}, - [3669] = {.lex_state = 69}, - [3670] = {.lex_state = 198}, + [3663] = {.lex_state = 0}, + [3664] = {.lex_state = 81}, + [3665] = {.lex_state = 85}, + [3666] = {.lex_state = 99}, + [3667] = {.lex_state = 95}, + [3668] = {.lex_state = 194}, + [3669] = {.lex_state = 0}, + [3670] = {.lex_state = 0}, [3671] = {.lex_state = 194}, - [3672] = {.lex_state = 99}, - [3673] = {.lex_state = 194}, - [3674] = {.lex_state = 85}, + [3672] = {.lex_state = 194}, + [3673] = {.lex_state = 0}, + [3674] = {.lex_state = 0}, [3675] = {.lex_state = 0}, [3676] = {.lex_state = 0}, - [3677] = {.lex_state = 0}, - [3678] = {.lex_state = 194}, - [3679] = {.lex_state = 194}, - [3680] = {.lex_state = 0}, - [3681] = {.lex_state = 0}, - [3682] = {.lex_state = 95}, - [3683] = {.lex_state = 0}, - [3684] = {.lex_state = 0}, + [3677] = {.lex_state = 194}, + [3678] = {.lex_state = 69}, + [3679] = {.lex_state = 0}, + [3680] = {.lex_state = 88}, + [3681] = {.lex_state = 194}, + [3682] = {.lex_state = 88}, + [3683] = {.lex_state = 85}, + [3684] = {.lex_state = 194}, [3685] = {.lex_state = 0}, - [3686] = {.lex_state = 0}, - [3687] = {.lex_state = 69}, - [3688] = {.lex_state = 0}, + [3686] = {.lex_state = 85}, + [3687] = {.lex_state = 194}, + [3688] = {.lex_state = 194}, [3689] = {.lex_state = 194}, - [3690] = {.lex_state = 0}, - [3691] = {.lex_state = 90}, - [3692] = {.lex_state = 85}, - [3693] = {.lex_state = 69}, + [3690] = {.lex_state = 99}, + [3691] = {.lex_state = 85}, + [3692] = {.lex_state = 0}, + [3693] = {.lex_state = 85}, [3694] = {.lex_state = 194}, - [3695] = {.lex_state = 0}, - [3696] = {.lex_state = 85}, - [3697] = {.lex_state = 0}, - [3698] = {.lex_state = 198}, - [3699] = {.lex_state = 0}, - [3700] = {.lex_state = 69}, - [3701] = {.lex_state = 69}, - [3702] = {.lex_state = 69}, - [3703] = {.lex_state = 0}, + [3695] = {.lex_state = 85}, + [3696] = {.lex_state = 69}, + [3697] = {.lex_state = 194}, + [3698] = {.lex_state = 0}, + [3699] = {.lex_state = 85}, + [3700] = {.lex_state = 85}, + [3701] = {.lex_state = 0}, + [3702] = {.lex_state = 194}, + [3703] = {.lex_state = 69}, [3704] = {.lex_state = 85}, - [3705] = {.lex_state = 85}, - [3706] = {.lex_state = 88}, - [3707] = {.lex_state = 95}, - [3708] = {.lex_state = 95}, - [3709] = {.lex_state = 99}, + [3705] = {.lex_state = 69}, + [3706] = {.lex_state = 69}, + [3707] = {.lex_state = 85}, + [3708] = {.lex_state = 85}, + [3709] = {.lex_state = 69}, [3710] = {.lex_state = 0}, - [3711] = {.lex_state = 85}, - [3712] = {.lex_state = 85}, - [3713] = {.lex_state = 88}, + [3711] = {.lex_state = 95}, + [3712] = {.lex_state = 0}, + [3713] = {.lex_state = 85}, [3714] = {.lex_state = 0}, - [3715] = {.lex_state = 85}, - [3716] = {.lex_state = 69}, - [3717] = {.lex_state = 0}, - [3718] = {.lex_state = 69}, - [3719] = {.lex_state = 85}, - [3720] = {.lex_state = 0}, - [3721] = {.lex_state = 95}, - [3722] = {.lex_state = 0}, - [3723] = {.lex_state = 194}, + [3715] = {.lex_state = 0}, + [3716] = {.lex_state = 85}, + [3717] = {.lex_state = 85}, + [3718] = {.lex_state = 0}, + [3719] = {.lex_state = 0}, + [3720] = {.lex_state = 85}, + [3721] = {.lex_state = 69}, + [3722] = {.lex_state = 194}, + [3723] = {.lex_state = 69}, [3724] = {.lex_state = 0}, - [3725] = {.lex_state = 0}, - [3726] = {.lex_state = 0}, - [3727] = {.lex_state = 0}, - [3728] = {.lex_state = 0}, - [3729] = {.lex_state = 0}, - [3730] = {.lex_state = 69}, - [3731] = {.lex_state = 81}, - [3732] = {.lex_state = 85}, + [3725] = {.lex_state = 69}, + [3726] = {.lex_state = 69}, + [3727] = {.lex_state = 85}, + [3728] = {.lex_state = 69}, + [3729] = {.lex_state = 194}, + [3730] = {.lex_state = 85}, + [3731] = {.lex_state = 85}, + [3732] = {.lex_state = 69}, [3733] = {.lex_state = 0}, - [3734] = {.lex_state = 69}, + [3734] = {.lex_state = 0}, [3735] = {.lex_state = 85}, - [3736] = {.lex_state = 85}, - [3737] = {.lex_state = 69}, - [3738] = {.lex_state = 81}, - [3739] = {.lex_state = 69}, - [3740] = {.lex_state = 85}, + [3736] = {.lex_state = 0}, + [3737] = {.lex_state = 0}, + [3738] = {.lex_state = 85}, + [3739] = {.lex_state = 99}, + [3740] = {.lex_state = 0}, [3741] = {.lex_state = 85}, - [3742] = {.lex_state = 0}, - [3743] = {.lex_state = 85}, + [3742] = {.lex_state = 81}, + [3743] = {.lex_state = 0}, [3744] = {.lex_state = 194}, - [3745] = {.lex_state = 99}, + [3745] = {.lex_state = 69}, [3746] = {.lex_state = 85}, [3747] = {.lex_state = 85}, - [3748] = {.lex_state = 69}, - [3749] = {.lex_state = 88}, + [3748] = {.lex_state = 0}, + [3749] = {.lex_state = 85}, [3750] = {.lex_state = 69}, - [3751] = {.lex_state = 85}, - [3752] = {.lex_state = 85}, - [3753] = {.lex_state = 89}, + [3751] = {.lex_state = 81}, + [3752] = {.lex_state = 0}, + [3753] = {.lex_state = 69}, [3754] = {.lex_state = 0}, - [3755] = {.lex_state = 0}, + [3755] = {.lex_state = 198}, [3756] = {.lex_state = 0}, - [3757] = {.lex_state = 81}, + [3757] = {.lex_state = 89}, [3758] = {.lex_state = 0}, [3759] = {.lex_state = 0}, [3760] = {.lex_state = 0}, - [3761] = {.lex_state = 0}, + [3761] = {.lex_state = 81}, [3762] = {.lex_state = 89}, [3763] = {.lex_state = 96}, [3764] = {.lex_state = 0}, - [3765] = {.lex_state = 85}, - [3766] = {.lex_state = 85}, + [3765] = {.lex_state = 0}, + [3766] = {.lex_state = 0}, [3767] = {.lex_state = 0}, [3768] = {.lex_state = 0}, - [3769] = {.lex_state = 96}, - [3770] = {.lex_state = 89}, - [3771] = {.lex_state = 0}, - [3772] = {.lex_state = 0}, + [3769] = {.lex_state = 85}, + [3770] = {.lex_state = 0}, + [3771] = {.lex_state = 89}, + [3772] = {.lex_state = 198}, [3773] = {.lex_state = 0}, - [3774] = {.lex_state = 85}, - [3775] = {.lex_state = 0}, - [3776] = {.lex_state = 198}, - [3777] = {.lex_state = 0}, + [3774] = {.lex_state = 96}, + [3775] = {.lex_state = 81}, + [3776] = {.lex_state = 0}, + [3777] = {.lex_state = 198}, [3778] = {.lex_state = 0}, - [3779] = {.lex_state = 85}, - [3780] = {.lex_state = 89}, + [3779] = {.lex_state = 0}, + [3780] = {.lex_state = 0}, [3781] = {.lex_state = 0}, - [3782] = {.lex_state = 96}, - [3783] = {.lex_state = 85}, + [3782] = {.lex_state = 0}, + [3783] = {.lex_state = 0}, [3784] = {.lex_state = 0}, - [3785] = {.lex_state = 89}, + [3785] = {.lex_state = 0}, [3786] = {.lex_state = 0}, - [3787] = {.lex_state = 96}, - [3788] = {.lex_state = 99}, - [3789] = {.lex_state = 0}, + [3787] = {.lex_state = 0}, + [3788] = {.lex_state = 0}, + [3789] = {.lex_state = 81}, [3790] = {.lex_state = 0}, [3791] = {.lex_state = 0}, [3792] = {.lex_state = 0}, [3793] = {.lex_state = 0}, - [3794] = {.lex_state = 0}, - [3795] = {.lex_state = 0}, + [3794] = {.lex_state = 89}, + [3795] = {.lex_state = 96}, [3796] = {.lex_state = 0}, [3797] = {.lex_state = 0}, - [3798] = {.lex_state = 0}, - [3799] = {.lex_state = 89}, - [3800] = {.lex_state = 96}, - [3801] = {.lex_state = 0}, + [3798] = {.lex_state = 96}, + [3799] = {.lex_state = 0}, + [3800] = {.lex_state = 0}, + [3801] = {.lex_state = 89}, [3802] = {.lex_state = 0}, [3803] = {.lex_state = 0}, [3804] = {.lex_state = 0}, [3805] = {.lex_state = 0}, - [3806] = {.lex_state = 81}, - [3807] = {.lex_state = 81}, + [3806] = {.lex_state = 85}, + [3807] = {.lex_state = 0}, [3808] = {.lex_state = 0}, [3809] = {.lex_state = 0}, - [3810] = {.lex_state = 85}, - [3811] = {.lex_state = 0}, - [3812] = {.lex_state = 89}, - [3813] = {.lex_state = 96}, - [3814] = {.lex_state = 89}, - [3815] = {.lex_state = 85}, + [3810] = {.lex_state = 0}, + [3811] = {.lex_state = 81}, + [3812] = {.lex_state = 0}, + [3813] = {.lex_state = 0}, + [3814] = {.lex_state = 0}, + [3815] = {.lex_state = 0}, [3816] = {.lex_state = 0}, - [3817] = {.lex_state = 89}, - [3818] = {.lex_state = 96}, + [3817] = {.lex_state = 0}, + [3818] = {.lex_state = 85}, [3819] = {.lex_state = 0}, - [3820] = {.lex_state = 89}, - [3821] = {.lex_state = 96}, + [3820] = {.lex_state = 0}, + [3821] = {.lex_state = 85}, [3822] = {.lex_state = 0}, - [3823] = {.lex_state = 0}, - [3824] = {.lex_state = 0}, - [3825] = {.lex_state = 85}, + [3823] = {.lex_state = 89}, + [3824] = {.lex_state = 96}, + [3825] = {.lex_state = 0}, [3826] = {.lex_state = 0}, - [3827] = {.lex_state = 0}, - [3828] = {.lex_state = 0}, - [3829] = {.lex_state = 69}, - [3830] = {.lex_state = 0}, - [3831] = {.lex_state = 0}, - [3832] = {.lex_state = 0}, - [3833] = {.lex_state = 89}, - [3834] = {.lex_state = 0}, - [3835] = {.lex_state = 96}, + [3827] = {.lex_state = 85}, + [3828] = {.lex_state = 96}, + [3829] = {.lex_state = 89}, + [3830] = {.lex_state = 96}, + [3831] = {.lex_state = 89}, + [3832] = {.lex_state = 96}, + [3833] = {.lex_state = 0}, + [3834] = {.lex_state = 89}, + [3835] = {.lex_state = 0}, [3836] = {.lex_state = 0}, [3837] = {.lex_state = 0}, - [3838] = {.lex_state = 85}, + [3838] = {.lex_state = 0}, [3839] = {.lex_state = 89}, [3840] = {.lex_state = 96}, - [3841] = {.lex_state = 89}, - [3842] = {.lex_state = 81}, + [3841] = {.lex_state = 0}, + [3842] = {.lex_state = 85}, [3843] = {.lex_state = 0}, - [3844] = {.lex_state = 96}, - [3845] = {.lex_state = 198}, + [3844] = {.lex_state = 0}, + [3845] = {.lex_state = 85}, [3846] = {.lex_state = 0}, - [3847] = {.lex_state = 96}, - [3848] = {.lex_state = 89}, - [3849] = {.lex_state = 89}, - [3850] = {.lex_state = 96}, + [3847] = {.lex_state = 0}, + [3848] = {.lex_state = 0}, + [3849] = {.lex_state = 0}, + [3850] = {.lex_state = 0}, [3851] = {.lex_state = 0}, - [3852] = {.lex_state = 0}, - [3853] = {.lex_state = 85}, - [3854] = {.lex_state = 85}, - [3855] = {.lex_state = 89}, - [3856] = {.lex_state = 96}, - [3857] = {.lex_state = 85}, - [3858] = {.lex_state = 0}, - [3859] = {.lex_state = 96}, - [3860] = {.lex_state = 0}, + [3852] = {.lex_state = 89}, + [3853] = {.lex_state = 96}, + [3854] = {.lex_state = 0}, + [3855] = {.lex_state = 85}, + [3856] = {.lex_state = 69}, + [3857] = {.lex_state = 0}, + [3858] = {.lex_state = 198}, + [3859] = {.lex_state = 85}, + [3860] = {.lex_state = 85}, [3861] = {.lex_state = 0}, [3862] = {.lex_state = 0}, [3863] = {.lex_state = 0}, [3864] = {.lex_state = 0}, [3865] = {.lex_state = 0}, - [3866] = {.lex_state = 0}, - [3867] = {.lex_state = 0}, - [3868] = {.lex_state = 0}, - [3869] = {.lex_state = 0}, - [3870] = {.lex_state = 89}, + [3866] = {.lex_state = 85}, + [3867] = {.lex_state = 89}, + [3868] = {.lex_state = 96}, + [3869] = {.lex_state = 85}, + [3870] = {.lex_state = 0}, [3871] = {.lex_state = 0}, - [3872] = {.lex_state = 0}, + [3872] = {.lex_state = 198}, [3873] = {.lex_state = 0}, - [3874] = {.lex_state = 96}, + [3874] = {.lex_state = 0}, [3875] = {.lex_state = 0}, [3876] = {.lex_state = 0}, - [3877] = {.lex_state = 69}, - [3878] = {.lex_state = 0}, + [3877] = {.lex_state = 0}, + [3878] = {.lex_state = 96}, [3879] = {.lex_state = 0}, - [3880] = {.lex_state = 0}, + [3880] = {.lex_state = 85}, [3881] = {.lex_state = 0}, - [3882] = {.lex_state = 0}, + [3882] = {.lex_state = 85}, [3883] = {.lex_state = 0}, - [3884] = {.lex_state = 85}, - [3885] = {.lex_state = 0}, - [3886] = {.lex_state = 0}, - [3887] = {.lex_state = 0}, + [3884] = {.lex_state = 89}, + [3885] = {.lex_state = 85}, + [3886] = {.lex_state = 96}, + [3887] = {.lex_state = 96}, [3888] = {.lex_state = 0}, [3889] = {.lex_state = 0}, - [3890] = {.lex_state = 198}, + [3890] = {.lex_state = 99}, [3891] = {.lex_state = 0}, - [3892] = {.lex_state = 0}, - [3893] = {.lex_state = 0}, - [3894] = {.lex_state = 0}, - [3895] = {.lex_state = 81}, - [3896] = {.lex_state = 85}, + [3892] = {.lex_state = 89}, + [3893] = {.lex_state = 96}, + [3894] = {.lex_state = 89}, + [3895] = {.lex_state = 0}, + [3896] = {.lex_state = 0}, [3897] = {.lex_state = 0}, - [3898] = {.lex_state = 85}, + [3898] = {.lex_state = 0}, [3899] = {.lex_state = 89}, [3900] = {.lex_state = 96}, - [3901] = {.lex_state = 0}, - [3902] = {.lex_state = 89}, + [3901] = {.lex_state = 85}, + [3902] = {.lex_state = 96}, [3903] = {.lex_state = 0}, - [3904] = {.lex_state = 198}, - [3905] = {.lex_state = 96}, + [3904] = {.lex_state = 69}, + [3905] = {.lex_state = 0}, [3906] = {.lex_state = 0}, - [3907] = {.lex_state = 85}, - [3908] = {.lex_state = 85}, - [3909] = {.lex_state = 0}, + [3907] = {.lex_state = 0}, + [3908] = {.lex_state = 0}, + [3909] = {.lex_state = 81}, [3910] = {.lex_state = 0}, - [3911] = {.lex_state = 89}, - [3912] = {.lex_state = 85}, - [3913] = {.lex_state = 96}, + [3911] = {.lex_state = 85}, + [3912] = {.lex_state = 0}, + [3913] = {.lex_state = 89}, [3914] = {.lex_state = 0}, - [3915] = {.lex_state = 0}, + [3915] = {.lex_state = 85}, [3916] = {.lex_state = 0}, - [3917] = {.lex_state = 89}, - [3918] = {.lex_state = 96}, + [3917] = {.lex_state = 0}, + [3918] = {.lex_state = 0}, [3919] = {.lex_state = 0}, - [3920] = {.lex_state = 0}, - [3921] = {.lex_state = 0}, + [3920] = {.lex_state = 89}, + [3921] = {.lex_state = 96}, [3922] = {.lex_state = 0}, [3923] = {.lex_state = 0}, [3924] = {.lex_state = 0}, - [3925] = {.lex_state = 0}, - [3926] = {.lex_state = 0}, - [3927] = {.lex_state = 85}, + [3925] = {.lex_state = 89}, + [3926] = {.lex_state = 96}, + [3927] = {.lex_state = 96}, [3928] = {.lex_state = 0}, [3929] = {.lex_state = 0}, - [3930] = {.lex_state = 0}, - [3931] = {.lex_state = 0}, - [3932] = {.lex_state = 85}, + [3930] = {.lex_state = 89}, + [3931] = {.lex_state = 96}, + [3932] = {.lex_state = 0}, [3933] = {.lex_state = 0}, - [3934] = {.lex_state = 89}, - [3935] = {.lex_state = 69}, - [3936] = {.lex_state = 198}, - [3937] = {.lex_state = 0}, - [3938] = {.lex_state = 96}, - [3939] = {.lex_state = 198}, + [3934] = {.lex_state = 0}, + [3935] = {.lex_state = 0}, + [3936] = {.lex_state = 0}, + [3937] = {.lex_state = 85}, + [3938] = {.lex_state = 0}, + [3939] = {.lex_state = 0}, [3940] = {.lex_state = 0}, - [3941] = {.lex_state = 89}, - [3942] = {.lex_state = 96}, - [3943] = {.lex_state = 85}, - [3944] = {.lex_state = 0}, - [3945] = {.lex_state = 0}, + [3941] = {.lex_state = 96}, + [3942] = {.lex_state = 0}, + [3943] = {.lex_state = 96}, + [3944] = {.lex_state = 85}, + [3945] = {.lex_state = 89}, [3946] = {.lex_state = 89}, - [3947] = {.lex_state = 96}, + [3947] = {.lex_state = 85}, [3948] = {.lex_state = 0}, - [3949] = {.lex_state = 0}, - [3950] = {.lex_state = 0}, - [3951] = {.lex_state = 0}, - [3952] = {.lex_state = 0}, + [3949] = {.lex_state = 89}, + [3950] = {.lex_state = 96}, + [3951] = {.lex_state = 89}, + [3952] = {.lex_state = 198}, [3953] = {.lex_state = 0}, - [3954] = {.lex_state = 0}, - [3955] = {.lex_state = 85}, - [3956] = {.lex_state = 96}, - [3957] = {.lex_state = 0}, + [3954] = {.lex_state = 198}, + [3955] = {.lex_state = 0}, + [3956] = {.lex_state = 0}, + [3957] = {.lex_state = 85}, [3958] = {.lex_state = 0}, [3959] = {.lex_state = 0}, [3960] = {.lex_state = 0}, @@ -18219,25 +18232,25 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [3963] = {.lex_state = 0}, [3964] = {.lex_state = 0}, [3965] = {.lex_state = 0}, - [3966] = {.lex_state = 0}, + [3966] = {.lex_state = 96}, [3967] = {.lex_state = 0}, [3968] = {.lex_state = 0}, [3969] = {.lex_state = 0}, - [3970] = {.lex_state = 81}, + [3970] = {.lex_state = 0}, [3971] = {.lex_state = 0}, [3972] = {.lex_state = 0}, - [3973] = {.lex_state = 89}, + [3973] = {.lex_state = 0}, [3974] = {.lex_state = 0}, [3975] = {.lex_state = 0}, [3976] = {.lex_state = 0}, - [3977] = {.lex_state = 0}, + [3977] = {.lex_state = 81}, [3978] = {.lex_state = 0}, - [3979] = {.lex_state = 96}, + [3979] = {.lex_state = 0}, [3980] = {.lex_state = 0}, [3981] = {.lex_state = 0}, [3982] = {.lex_state = 0}, [3983] = {.lex_state = 0}, - [3984] = {.lex_state = 0}, + [3984] = {.lex_state = 89}, [3985] = {.lex_state = 0}, [3986] = {.lex_state = 0}, [3987] = {.lex_state = 0}, @@ -18245,12 +18258,12 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [3989] = {.lex_state = 0}, [3990] = {.lex_state = 0}, [3991] = {.lex_state = 0}, - [3992] = {.lex_state = 0}, + [3992] = {.lex_state = 85}, [3993] = {.lex_state = 0}, [3994] = {.lex_state = 0}, - [3995] = {.lex_state = 85}, - [3996] = {.lex_state = 85}, - [3997] = {.lex_state = 0}, + [3995] = {.lex_state = 0}, + [3996] = {.lex_state = 0}, + [3997] = {.lex_state = 69}, [3998] = {.lex_state = 85}, [3999] = {.lex_state = 0}, [4000] = {.lex_state = 85}, @@ -18259,15 +18272,15 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [4003] = {.lex_state = 0}, [4004] = {.lex_state = 0}, [4005] = {.lex_state = 0}, - [4006] = {.lex_state = 0}, + [4006] = {.lex_state = 85}, [4007] = {.lex_state = 0}, - [4008] = {.lex_state = 0}, - [4009] = {.lex_state = 0}, - [4010] = {.lex_state = 85}, + [4008] = {.lex_state = 85}, + [4009] = {.lex_state = 85}, + [4010] = {.lex_state = 0}, [4011] = {.lex_state = 0}, [4012] = {.lex_state = 0}, - [4013] = {.lex_state = 0}, - [4014] = {.lex_state = 85}, + [4013] = {.lex_state = 85}, + [4014] = {.lex_state = 0}, [4015] = {.lex_state = 0}, [4016] = {.lex_state = 0}, [4017] = {.lex_state = 0}, @@ -18277,9 +18290,9 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [4021] = {.lex_state = 0}, [4022] = {.lex_state = 0}, [4023] = {.lex_state = 0}, - [4024] = {.lex_state = 85}, - [4025] = {.lex_state = 85}, - [4026] = {.lex_state = 85}, + [4024] = {.lex_state = 0}, + [4025] = {.lex_state = 0}, + [4026] = {.lex_state = 0}, [4027] = {.lex_state = 0}, [4028] = {.lex_state = 0}, [4029] = {.lex_state = 0}, @@ -18293,30 +18306,30 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [4037] = {.lex_state = 0}, [4038] = {.lex_state = 0}, [4039] = {.lex_state = 0}, - [4040] = {.lex_state = 85}, - [4041] = {.lex_state = 0}, + [4040] = {.lex_state = 0}, + [4041] = {.lex_state = 85}, [4042] = {.lex_state = 0}, - [4043] = {.lex_state = 85}, - [4044] = {.lex_state = 0}, + [4043] = {.lex_state = 0}, + [4044] = {.lex_state = 85}, [4045] = {.lex_state = 0}, - [4046] = {.lex_state = 85}, + [4046] = {.lex_state = 0}, [4047] = {.lex_state = 0}, [4048] = {.lex_state = 0}, [4049] = {.lex_state = 0}, [4050] = {.lex_state = 0}, - [4051] = {.lex_state = 0}, - [4052] = {.lex_state = 0}, + [4051] = {.lex_state = 85}, + [4052] = {.lex_state = 85}, [4053] = {.lex_state = 0}, [4054] = {.lex_state = 0}, [4055] = {.lex_state = 0}, [4056] = {.lex_state = 0}, [4057] = {.lex_state = 0}, [4058] = {.lex_state = 0}, - [4059] = {.lex_state = 85}, + [4059] = {.lex_state = 0}, [4060] = {.lex_state = 0}, [4061] = {.lex_state = 0}, [4062] = {.lex_state = 0}, - [4063] = {.lex_state = 0}, + [4063] = {.lex_state = 85}, [4064] = {.lex_state = 0}, [4065] = {.lex_state = 0}, [4066] = {.lex_state = 0}, @@ -18328,10 +18341,10 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [4072] = {.lex_state = 0}, [4073] = {.lex_state = 0}, [4074] = {.lex_state = 0}, - [4075] = {.lex_state = 85}, - [4076] = {.lex_state = 0}, + [4075] = {.lex_state = 0}, + [4076] = {.lex_state = 85}, [4077] = {.lex_state = 0}, - [4078] = {.lex_state = 0}, + [4078] = {.lex_state = 85}, [4079] = {.lex_state = 0}, [4080] = {.lex_state = 0}, [4081] = {.lex_state = 0}, @@ -18339,18 +18352,18 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [4083] = {.lex_state = 0}, [4084] = {.lex_state = 0}, [4085] = {.lex_state = 0}, - [4086] = {.lex_state = 85}, - [4087] = {.lex_state = 0}, - [4088] = {.lex_state = 0}, + [4086] = {.lex_state = 0}, + [4087] = {.lex_state = 85}, + [4088] = {.lex_state = 85}, [4089] = {.lex_state = 0}, [4090] = {.lex_state = 0}, - [4091] = {.lex_state = 85}, + [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 = 85}, - [4097] = {.lex_state = 85}, + [4096] = {.lex_state = 0}, + [4097] = {.lex_state = 0}, [4098] = {.lex_state = 0}, [4099] = {.lex_state = 0}, [4100] = {.lex_state = 0}, @@ -18364,7 +18377,7 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [4108] = {.lex_state = 85}, [4109] = {.lex_state = 0}, [4110] = {.lex_state = 0}, - [4111] = {.lex_state = 85}, + [4111] = {.lex_state = 0}, [4112] = {.lex_state = 0}, [4113] = {.lex_state = 0}, [4114] = {.lex_state = 0}, @@ -18373,26 +18386,26 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [4117] = {.lex_state = 0}, [4118] = {.lex_state = 0}, [4119] = {.lex_state = 0}, - [4120] = {.lex_state = 0}, + [4120] = {.lex_state = 85}, [4121] = {.lex_state = 0}, - [4122] = {.lex_state = 85}, - [4123] = {.lex_state = 85}, + [4122] = {.lex_state = 0}, + [4123] = {.lex_state = 0}, [4124] = {.lex_state = 0}, [4125] = {.lex_state = 0}, - [4126] = {.lex_state = 85}, + [4126] = {.lex_state = 0}, [4127] = {.lex_state = 0}, [4128] = {.lex_state = 0}, [4129] = {.lex_state = 0}, - [4130] = {.lex_state = 85}, - [4131] = {.lex_state = 0}, + [4130] = {.lex_state = 0}, + [4131] = {.lex_state = 85}, [4132] = {.lex_state = 0}, [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 = 69}, [4140] = {.lex_state = 0}, [4141] = {.lex_state = 0}, [4142] = {.lex_state = 0}, @@ -18402,8 +18415,8 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [4146] = {.lex_state = 0}, [4147] = {.lex_state = 0}, [4148] = {.lex_state = 0}, - [4149] = {.lex_state = 198}, - [4150] = {.lex_state = 69}, + [4149] = {.lex_state = 0}, + [4150] = {.lex_state = 0}, [4151] = {.lex_state = 0}, [4152] = {.lex_state = 0}, [4153] = {.lex_state = 0}, @@ -18423,53 +18436,53 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [4167] = {.lex_state = 0}, [4168] = {.lex_state = 0}, [4169] = {.lex_state = 0}, - [4170] = {.lex_state = 85}, + [4170] = {.lex_state = 0}, [4171] = {.lex_state = 0}, [4172] = {.lex_state = 0}, [4173] = {.lex_state = 0}, [4174] = {.lex_state = 0}, [4175] = {.lex_state = 0}, - [4176] = {.lex_state = 85}, + [4176] = {.lex_state = 0}, [4177] = {.lex_state = 0}, [4178] = {.lex_state = 0}, - [4179] = {.lex_state = 0}, + [4179] = {.lex_state = 85}, [4180] = {.lex_state = 0}, [4181] = {.lex_state = 0}, [4182] = {.lex_state = 0}, [4183] = {.lex_state = 0}, - [4184] = {.lex_state = 69}, + [4184] = {.lex_state = 0}, [4185] = {.lex_state = 0}, [4186] = {.lex_state = 0}, [4187] = {.lex_state = 0}, - [4188] = {.lex_state = 0}, + [4188] = {.lex_state = 85}, [4189] = {.lex_state = 0}, - [4190] = {.lex_state = 0}, + [4190] = {.lex_state = 85}, [4191] = {.lex_state = 0}, [4192] = {.lex_state = 0}, [4193] = {.lex_state = 0}, - [4194] = {.lex_state = 0}, + [4194] = {.lex_state = 85}, [4195] = {.lex_state = 0}, [4196] = {.lex_state = 0}, [4197] = {.lex_state = 0}, [4198] = {.lex_state = 0}, [4199] = {.lex_state = 0}, [4200] = {.lex_state = 0}, - [4201] = {.lex_state = 0}, + [4201] = {.lex_state = 85}, [4202] = {.lex_state = 0}, - [4203] = {.lex_state = 85}, + [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 = 85}, - [4211] = {.lex_state = 0}, - [4212] = {.lex_state = 85}, + [4210] = {.lex_state = 0}, + [4211] = {.lex_state = 85}, + [4212] = {.lex_state = 0}, [4213] = {.lex_state = 0}, - [4214] = {.lex_state = 85}, + [4214] = {.lex_state = 0}, [4215] = {.lex_state = 0}, - [4216] = {.lex_state = 85}, + [4216] = {.lex_state = 0}, [4217] = {.lex_state = 0}, [4218] = {.lex_state = 0}, [4219] = {.lex_state = 0}, @@ -18477,57 +18490,57 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [4221] = {.lex_state = 0}, [4222] = {.lex_state = 0}, [4223] = {.lex_state = 0}, - [4224] = {.lex_state = 0}, + [4224] = {.lex_state = 69}, [4225] = {.lex_state = 0}, [4226] = {.lex_state = 0}, [4227] = {.lex_state = 0}, [4228] = {.lex_state = 0}, [4229] = {.lex_state = 0}, [4230] = {.lex_state = 0}, - [4231] = {.lex_state = 0}, - [4232] = {.lex_state = 85}, - [4233] = {.lex_state = 85}, + [4231] = {.lex_state = 85}, + [4232] = {.lex_state = 0}, + [4233] = {.lex_state = 0}, [4234] = {.lex_state = 0}, [4235] = {.lex_state = 0}, [4236] = {.lex_state = 0}, - [4237] = {.lex_state = 0}, - [4238] = {.lex_state = 0}, - [4239] = {.lex_state = 85}, + [4237] = {.lex_state = 85}, + [4238] = {.lex_state = 85}, + [4239] = {.lex_state = 0}, [4240] = {.lex_state = 0}, - [4241] = {.lex_state = 0}, - [4242] = {.lex_state = 85}, + [4241] = {.lex_state = 85}, + [4242] = {.lex_state = 0}, [4243] = {.lex_state = 0}, [4244] = {.lex_state = 0}, [4245] = {.lex_state = 0}, - [4246] = {.lex_state = 0}, + [4246] = {.lex_state = 85}, [4247] = {.lex_state = 0}, [4248] = {.lex_state = 0}, [4249] = {.lex_state = 0}, - [4250] = {.lex_state = 0}, + [4250] = {.lex_state = 85}, [4251] = {.lex_state = 0}, [4252] = {.lex_state = 0}, - [4253] = {.lex_state = 0}, + [4253] = {.lex_state = 85}, [4254] = {.lex_state = 0}, [4255] = {.lex_state = 0}, [4256] = {.lex_state = 0}, [4257] = {.lex_state = 89}, [4258] = {.lex_state = 0}, - [4259] = {.lex_state = 85}, - [4260] = {.lex_state = 0}, - [4261] = {.lex_state = 85}, - [4262] = {.lex_state = 96}, + [4259] = {.lex_state = 0}, + [4260] = {.lex_state = 85}, + [4261] = {.lex_state = 0}, + [4262] = {.lex_state = 0}, [4263] = {.lex_state = 0}, - [4264] = {.lex_state = 85}, - [4265] = {.lex_state = 0}, + [4264] = {.lex_state = 198}, + [4265] = {.lex_state = 96}, [4266] = {.lex_state = 0}, [4267] = {.lex_state = 0}, - [4268] = {.lex_state = 0}, + [4268] = {.lex_state = 85}, [4269] = {.lex_state = 0}, [4270] = {.lex_state = 0}, [4271] = {.lex_state = 0}, [4272] = {.lex_state = 0}, [4273] = {.lex_state = 0}, - [4274] = {.lex_state = 85}, + [4274] = {.lex_state = 0}, [4275] = {.lex_state = 0}, [4276] = {.lex_state = 0}, [4277] = {.lex_state = 0}, @@ -18539,40 +18552,40 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [4283] = {.lex_state = 0}, [4284] = {.lex_state = 0}, [4285] = {.lex_state = 0}, - [4286] = {.lex_state = 0}, - [4287] = {.lex_state = 85}, - [4288] = {.lex_state = 0}, + [4286] = {.lex_state = 85}, + [4287] = {.lex_state = 0}, + [4288] = {.lex_state = 69}, [4289] = {.lex_state = 0}, [4290] = {.lex_state = 0}, - [4291] = {.lex_state = 85}, - [4292] = {.lex_state = 69}, + [4291] = {.lex_state = 0}, + [4292] = {.lex_state = 0}, [4293] = {.lex_state = 0}, [4294] = {.lex_state = 0}, [4295] = {.lex_state = 0}, [4296] = {.lex_state = 0}, [4297] = {.lex_state = 0}, - [4298] = {.lex_state = 0}, + [4298] = {.lex_state = 85}, [4299] = {.lex_state = 0}, [4300] = {.lex_state = 0}, [4301] = {.lex_state = 0}, [4302] = {.lex_state = 0}, [4303] = {.lex_state = 0}, [4304] = {.lex_state = 0}, - [4305] = {.lex_state = 85}, - [4306] = {.lex_state = 0}, + [4305] = {.lex_state = 0}, + [4306] = {.lex_state = 85}, [4307] = {.lex_state = 0}, - [4308] = {.lex_state = 0}, + [4308] = {.lex_state = 85}, [4309] = {.lex_state = 0}, [4310] = {.lex_state = 0}, - [4311] = {.lex_state = 0}, - [4312] = {.lex_state = 0}, - [4313] = {.lex_state = 0}, - [4314] = {.lex_state = 85}, + [4311] = {.lex_state = 85}, + [4312] = {.lex_state = 85}, + [4313] = {.lex_state = 85}, + [4314] = {.lex_state = 0}, [4315] = {.lex_state = 0}, - [4316] = {.lex_state = 0}, + [4316] = {.lex_state = 85}, [4317] = {.lex_state = 0}, - [4318] = {.lex_state = 0}, - [4319] = {.lex_state = 0}, + [4318] = {.lex_state = 85}, + [4319] = {.lex_state = 85}, [4320] = {.lex_state = 0}, [4321] = {.lex_state = 0}, [4322] = {.lex_state = 0}, @@ -18581,58 +18594,58 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [4325] = {.lex_state = 0}, [4326] = {.lex_state = 0}, [4327] = {.lex_state = 0}, - [4328] = {.lex_state = 107}, + [4328] = {.lex_state = 0}, [4329] = {.lex_state = 0}, [4330] = {.lex_state = 0}, [4331] = {.lex_state = 0}, [4332] = {.lex_state = 0}, - [4333] = {.lex_state = 0}, + [4333] = {.lex_state = 107}, [4334] = {.lex_state = 0}, [4335] = {.lex_state = 0}, [4336] = {.lex_state = 0}, [4337] = {.lex_state = 0}, - [4338] = {.lex_state = 0}, - [4339] = {.lex_state = 0}, - [4340] = {.lex_state = 0}, - [4341] = {.lex_state = 0}, - [4342] = {.lex_state = 0}, + [4338] = {.lex_state = 85}, + [4339] = {.lex_state = 85}, + [4340] = {.lex_state = 85}, + [4341] = {.lex_state = 107}, + [4342] = {.lex_state = 41}, [4343] = {.lex_state = 0}, [4344] = {.lex_state = 0}, [4345] = {.lex_state = 0}, - [4346] = {.lex_state = 107}, + [4346] = {.lex_state = 0}, [4347] = {.lex_state = 0}, - [4348] = {.lex_state = 0}, + [4348] = {.lex_state = 85}, [4349] = {.lex_state = 0}, [4350] = {.lex_state = 0}, [4351] = {.lex_state = 0}, [4352] = {.lex_state = 0}, [4353] = {.lex_state = 0}, - [4354] = {.lex_state = 0}, + [4354] = {.lex_state = 107}, [4355] = {.lex_state = 0}, - [4356] = {.lex_state = 0}, + [4356] = {.lex_state = 85}, [4357] = {.lex_state = 0}, [4358] = {.lex_state = 0}, - [4359] = {.lex_state = 107}, + [4359] = {.lex_state = 85}, [4360] = {.lex_state = 85}, - [4361] = {.lex_state = 85}, + [4361] = {.lex_state = 0}, [4362] = {.lex_state = 85}, [4363] = {.lex_state = 0}, [4364] = {.lex_state = 0}, [4365] = {.lex_state = 0}, [4366] = {.lex_state = 0}, [4367] = {.lex_state = 0}, - [4368] = {.lex_state = 107}, - [4369] = {.lex_state = 85}, - [4370] = {.lex_state = 85}, - [4371] = {.lex_state = 85}, - [4372] = {.lex_state = 85}, - [4373] = {.lex_state = 85}, + [4368] = {.lex_state = 0}, + [4369] = {.lex_state = 0}, + [4370] = {.lex_state = 0}, + [4371] = {.lex_state = 107}, + [4372] = {.lex_state = 0}, + [4373] = {.lex_state = 0}, [4374] = {.lex_state = 0}, - [4375] = {.lex_state = 0}, + [4375] = {.lex_state = 107}, [4376] = {.lex_state = 0}, [4377] = {.lex_state = 0}, [4378] = {.lex_state = 0}, - [4379] = {.lex_state = 107}, + [4379] = {.lex_state = 0}, [4380] = {.lex_state = 0}, [4381] = {.lex_state = 0}, [4382] = {.lex_state = 0}, @@ -18646,32 +18659,32 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [4390] = {.lex_state = 0}, [4391] = {.lex_state = 0}, [4392] = {.lex_state = 0}, - [4393] = {.lex_state = 107}, + [4393] = {.lex_state = 0}, [4394] = {.lex_state = 0}, [4395] = {.lex_state = 0}, - [4396] = {.lex_state = 0}, + [4396] = {.lex_state = 107}, [4397] = {.lex_state = 0}, - [4398] = {.lex_state = 0}, - [4399] = {.lex_state = 107}, + [4398] = {.lex_state = 107}, + [4399] = {.lex_state = 0}, [4400] = {.lex_state = 0}, [4401] = {.lex_state = 0}, - [4402] = {.lex_state = 85}, + [4402] = {.lex_state = 0}, [4403] = {.lex_state = 0}, [4404] = {.lex_state = 0}, - [4405] = {.lex_state = 198}, - [4406] = {.lex_state = 85}, + [4405] = {.lex_state = 85}, + [4406] = {.lex_state = 0}, [4407] = {.lex_state = 0}, [4408] = {.lex_state = 0}, - [4409] = {.lex_state = 0}, + [4409] = {.lex_state = 85}, [4410] = {.lex_state = 0}, [4411] = {.lex_state = 0}, [4412] = {.lex_state = 0}, [4413] = {.lex_state = 0}, - [4414] = {.lex_state = 107}, + [4414] = {.lex_state = 0}, [4415] = {.lex_state = 0}, [4416] = {.lex_state = 0}, - [4417] = {.lex_state = 0}, - [4418] = {.lex_state = 0}, + [4417] = {.lex_state = 107}, + [4418] = {.lex_state = 41}, [4419] = {.lex_state = 0}, [4420] = {.lex_state = 0}, [4421] = {.lex_state = 0}, @@ -18688,52 +18701,52 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [4432] = {.lex_state = 0}, [4433] = {.lex_state = 0}, [4434] = {.lex_state = 0}, - [4435] = {.lex_state = 107}, + [4435] = {.lex_state = 0}, [4436] = {.lex_state = 0}, [4437] = {.lex_state = 0}, - [4438] = {.lex_state = 0}, + [4438] = {.lex_state = 107}, [4439] = {.lex_state = 0}, - [4440] = {.lex_state = 69}, + [4440] = {.lex_state = 0}, [4441] = {.lex_state = 0}, - [4442] = {.lex_state = 85}, - [4443] = {.lex_state = 0}, - [4444] = {.lex_state = 107}, - [4445] = {.lex_state = 0}, + [4442] = {.lex_state = 0}, + [4443] = {.lex_state = 69}, + [4444] = {.lex_state = 0}, + [4445] = {.lex_state = 85}, [4446] = {.lex_state = 0}, [4447] = {.lex_state = 0}, [4448] = {.lex_state = 0}, [4449] = {.lex_state = 0}, [4450] = {.lex_state = 0}, [4451] = {.lex_state = 0}, - [4452] = {.lex_state = 0}, - [4453] = {.lex_state = 41}, + [4452] = {.lex_state = 85}, + [4453] = {.lex_state = 0}, [4454] = {.lex_state = 0}, [4455] = {.lex_state = 0}, - [4456] = {.lex_state = 107}, + [4456] = {.lex_state = 0}, [4457] = {.lex_state = 0}, [4458] = {.lex_state = 0}, - [4459] = {.lex_state = 0}, + [4459] = {.lex_state = 107}, [4460] = {.lex_state = 0}, - [4461] = {.lex_state = 107}, + [4461] = {.lex_state = 0}, [4462] = {.lex_state = 0}, [4463] = {.lex_state = 0}, - [4464] = {.lex_state = 0}, + [4464] = {.lex_state = 107}, [4465] = {.lex_state = 0}, [4466] = {.lex_state = 0}, [4467] = {.lex_state = 0}, [4468] = {.lex_state = 0}, - [4469] = {.lex_state = 85}, + [4469] = {.lex_state = 0}, [4470] = {.lex_state = 0}, [4471] = {.lex_state = 0}, - [4472] = {.lex_state = 107}, + [4472] = {.lex_state = 0}, [4473] = {.lex_state = 0}, [4474] = {.lex_state = 0}, - [4475] = {.lex_state = 0}, + [4475] = {.lex_state = 107}, [4476] = {.lex_state = 0}, - [4477] = {.lex_state = 107}, + [4477] = {.lex_state = 0}, [4478] = {.lex_state = 0}, [4479] = {.lex_state = 0}, - [4480] = {.lex_state = 0}, + [4480] = {.lex_state = 107}, [4481] = {.lex_state = 0}, [4482] = {.lex_state = 0}, [4483] = {.lex_state = 0}, @@ -18744,23 +18757,23 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [4488] = {.lex_state = 0}, [4489] = {.lex_state = 0}, [4490] = {.lex_state = 0}, - [4491] = {.lex_state = 0}, + [4491] = {.lex_state = 107}, [4492] = {.lex_state = 0}, - [4493] = {.lex_state = 0}, + [4493] = {.lex_state = 41}, [4494] = {.lex_state = 0}, [4495] = {.lex_state = 0}, [4496] = {.lex_state = 0}, [4497] = {.lex_state = 0}, [4498] = {.lex_state = 0}, [4499] = {.lex_state = 0}, - [4500] = {.lex_state = 108}, - [4501] = {.lex_state = 0}, + [4500] = {.lex_state = 0}, + [4501] = {.lex_state = 85}, [4502] = {.lex_state = 0}, [4503] = {.lex_state = 0}, [4504] = {.lex_state = 0}, [4505] = {.lex_state = 0}, [4506] = {.lex_state = 0}, - [4507] = {.lex_state = 41}, + [4507] = {.lex_state = 0}, [4508] = {.lex_state = 0}, [4509] = {.lex_state = 0}, [4510] = {.lex_state = 0}, @@ -18772,24 +18785,24 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [4516] = {.lex_state = 0}, [4517] = {.lex_state = 0}, [4518] = {.lex_state = 0}, - [4519] = {.lex_state = 205}, + [4519] = {.lex_state = 0}, [4520] = {.lex_state = 0}, [4521] = {.lex_state = 0}, - [4522] = {.lex_state = 0}, + [4522] = {.lex_state = 205}, [4523] = {.lex_state = 0}, [4524] = {.lex_state = 0}, [4525] = {.lex_state = 0}, - [4526] = {.lex_state = 85}, + [4526] = {.lex_state = 0}, [4527] = {.lex_state = 0}, [4528] = {.lex_state = 0}, [4529] = {.lex_state = 0}, - [4530] = {.lex_state = 85}, - [4531] = {.lex_state = 85}, - [4532] = {.lex_state = 85}, + [4530] = {.lex_state = 0}, + [4531] = {.lex_state = 0}, + [4532] = {.lex_state = 0}, [4533] = {.lex_state = 0}, [4534] = {.lex_state = 0}, [4535] = {.lex_state = 0}, - [4536] = {.lex_state = 85}, + [4536] = {.lex_state = 0}, [4537] = {.lex_state = 0}, [4538] = {.lex_state = 0}, [4539] = {.lex_state = 0}, @@ -18797,7 +18810,7 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [4541] = {.lex_state = 0}, [4542] = {.lex_state = 0}, [4543] = {.lex_state = 0}, - [4544] = {.lex_state = 0}, + [4544] = {.lex_state = 108}, [4545] = {.lex_state = 0}, [4546] = {.lex_state = 0}, [4547] = {.lex_state = 0}, @@ -18810,13 +18823,13 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [4554] = {.lex_state = 0}, [4555] = {.lex_state = 0}, [4556] = {.lex_state = 0}, - [4557] = {.lex_state = 85}, + [4557] = {.lex_state = 0}, [4558] = {.lex_state = 0}, [4559] = {.lex_state = 0}, [4560] = {.lex_state = 0}, [4561] = {.lex_state = 0}, [4562] = {.lex_state = 0}, - [4563] = {.lex_state = 85}, + [4563] = {.lex_state = 0}, [4564] = {.lex_state = 0}, [4565] = {.lex_state = 0}, [4566] = {.lex_state = 0}, @@ -18832,75 +18845,78 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [4576] = {.lex_state = 0}, [4577] = {.lex_state = 0}, [4578] = {.lex_state = 0}, - [4579] = {.lex_state = 0}, + [4579] = {.lex_state = 198}, [4580] = {.lex_state = 0}, [4581] = {.lex_state = 0}, [4582] = {.lex_state = 0}, [4583] = {.lex_state = 0}, - [4584] = {.lex_state = 0}, - [4585] = {.lex_state = 41}, + [4584] = {.lex_state = 85}, + [4585] = {.lex_state = 0}, [4586] = {.lex_state = 0}, - [4587] = {.lex_state = 0}, + [4587] = {.lex_state = 85}, [4588] = {.lex_state = 0}, [4589] = {.lex_state = 0}, [4590] = {.lex_state = 0}, - [4591] = {.lex_state = 85}, - [4592] = {.lex_state = 108}, - [4593] = {.lex_state = 0}, - [4594] = {.lex_state = 0}, - [4595] = {.lex_state = 0}, + [4591] = {.lex_state = 0}, + [4592] = {.lex_state = 0}, + [4593] = {.lex_state = 85}, + [4594] = {.lex_state = 85}, + [4595] = {.lex_state = 108}, [4596] = {.lex_state = 0}, [4597] = {.lex_state = 0}, [4598] = {.lex_state = 0}, [4599] = {.lex_state = 0}, - [4600] = {.lex_state = 0}, + [4600] = {.lex_state = 85}, [4601] = {.lex_state = 0}, [4602] = {.lex_state = 0}, [4603] = {.lex_state = 0}, - [4604] = {.lex_state = 0}, + [4604] = {.lex_state = 85}, [4605] = {.lex_state = 0}, [4606] = {.lex_state = 0}, [4607] = {.lex_state = 0}, - [4608] = {.lex_state = 0}, + [4608] = {.lex_state = 85}, [4609] = {.lex_state = 0}, [4610] = {.lex_state = 0}, [4611] = {.lex_state = 0}, [4612] = {.lex_state = 0}, [4613] = {.lex_state = 0}, [4614] = {.lex_state = 0}, - [4615] = {.lex_state = 85}, + [4615] = {.lex_state = 0}, [4616] = {.lex_state = 0}, - [4617] = {.lex_state = 85}, - [4618] = {.lex_state = 0}, + [4617] = {.lex_state = 0}, + [4618] = {.lex_state = 85}, [4619] = {.lex_state = 0}, - [4620] = {.lex_state = 0}, + [4620] = {.lex_state = 85}, [4621] = {.lex_state = 0}, [4622] = {.lex_state = 0}, - [4623] = {.lex_state = 85}, + [4623] = {.lex_state = 0}, [4624] = {.lex_state = 0}, [4625] = {.lex_state = 0}, - [4626] = {.lex_state = 0}, + [4626] = {.lex_state = 85}, [4627] = {.lex_state = 0}, [4628] = {.lex_state = 0}, - [4629] = {.lex_state = 85}, + [4629] = {.lex_state = 0}, [4630] = {.lex_state = 0}, [4631] = {.lex_state = 0}, - [4632] = {.lex_state = 0}, + [4632] = {.lex_state = 85}, [4633] = {.lex_state = 0}, [4634] = {.lex_state = 0}, [4635] = {.lex_state = 0}, [4636] = {.lex_state = 0}, [4637] = {.lex_state = 0}, [4638] = {.lex_state = 0}, - [4639] = {.lex_state = 85}, - [4640] = {.lex_state = 205}, + [4639] = {.lex_state = 0}, + [4640] = {.lex_state = 0}, [4641] = {.lex_state = 0}, - [4642] = {.lex_state = 0}, - [4643] = {.lex_state = 0}, + [4642] = {.lex_state = 85}, + [4643] = {.lex_state = 205}, [4644] = {.lex_state = 0}, - [4645] = {(TSStateId)(-1)}, - [4646] = {(TSStateId)(-1)}, - [4647] = {(TSStateId)(-1)}, + [4645] = {.lex_state = 0}, + [4646] = {.lex_state = 0}, + [4647] = {.lex_state = 0}, + [4648] = {(TSStateId)(-1)}, + [4649] = {(TSStateId)(-1)}, + [4650] = {(TSStateId)(-1)}, }; static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { @@ -19039,110 +19055,110 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym___r_single_quote] = ACTIONS(1), }, [1] = { - [sym_source_file] = STATE(4579), + [sym_source_file] = STATE(4582), [sym_shebang] = STATE(2), [sym_line_comment] = STATE(1), [sym_block_comment] = STATE(1), [sym_module_clause] = STATE(4), - [sym_import_list] = STATE(8), + [sym_import_list] = STATE(11), [sym_import_declaration] = STATE(1586), - [sym_const_declaration] = STATE(1483), - [sym_global_var_declaration] = STATE(1483), - [sym_type_declaration] = STATE(1483), - [sym_function_declaration] = STATE(1483), - [sym_static_method_declaration] = STATE(1483), - [sym_struct_declaration] = STATE(1483), - [sym_enum_declaration] = STATE(1483), - [sym_interface_declaration] = STATE(1483), - [sym__expression] = STATE(213), - [sym__expression_without_blocks] = STATE(442), - [sym__expression_with_blocks] = STATE(442), - [sym_strictly_expression_list] = STATE(1487), - [sym_inc_expression] = STATE(439), - [sym_dec_expression] = STATE(439), - [sym_or_block_expression] = STATE(439), - [sym_option_propagation_expression] = STATE(439), - [sym_result_propagation_expression] = STATE(439), - [sym_anon_struct_value_expression] = STATE(438), - [sym_go_expression] = STATE(439), - [sym_spawn_expression] = STATE(439), - [sym_parenthesized_expression] = STATE(439), - [sym_call_expression] = STATE(439), - [sym_type_initializer] = STATE(438), - [sym_function_literal] = STATE(439), - [sym_reference_expression] = STATE(437), - [sym_type_reference_expression] = STATE(3541), - [sym_unary_expression] = STATE(439), - [sym_receive_expression] = STATE(439), - [sym_binary_expression] = STATE(439), - [sym_as_type_cast_expression] = STATE(439), - [sym__max_group] = STATE(439), - [sym_literal] = STATE(495), - [sym_map_init_expression] = STATE(438), - [sym_array_creation] = STATE(439), - [sym_fixed_array_creation] = STATE(439), - [sym_selector_expression] = STATE(439), - [sym_index_expression] = STATE(439), - [sym_slice_expression] = STATE(439), - [sym_if_expression] = STATE(438), - [sym_compile_time_if_expression] = STATE(438), - [sym_is_expression] = STATE(439), - [sym_in_expression] = STATE(439), - [sym_enum_fetch] = STATE(439), - [sym_match_expression] = STATE(438), - [sym_select_expression] = STATE(438), - [sym_lock_expression] = STATE(438), - [sym_unsafe_expression] = STATE(438), - [sym_sql_expression] = STATE(438), - [sym_c_string_literal] = STATE(496), - [sym_raw_string_literal] = STATE(496), - [sym_interpreted_string_literal] = STATE(496), - [sym_visibility_modifiers] = STATE(3408), - [sym_mutability_modifiers] = STATE(781), - [sym_mutable_expression] = STATE(3275), - [sym_expression_list] = STATE(3317), - [sym_plain_type] = STATE(4049), - [sym__plain_type_without_special] = STATE(2302), - [sym_anon_struct_type] = STATE(2303), - [sym_multi_return_type] = STATE(2302), - [sym_result_type] = STATE(2302), - [sym_option_type] = STATE(2302), - [sym_qualified_type] = STATE(3541), - [sym_fixed_array_type] = STATE(2303), - [sym_array_type] = STATE(2303), - [sym_pointer_type] = STATE(2303), - [sym_wrong_pointer_type] = STATE(2303), - [sym_map_type] = STATE(2303), - [sym_channel_type] = STATE(2303), - [sym_shared_type] = STATE(2303), - [sym_thread_type] = STATE(2303), - [sym_atomic_type] = STATE(2303), - [sym_generic_type] = STATE(2303), - [sym_function_type] = STATE(2303), - [sym__statement] = STATE(1483), - [sym_simple_statement] = STATE(1493), - [sym_assert_statement] = STATE(1493), - [sym_append_statement] = STATE(1493), - [sym_send_statement] = STATE(1493), - [sym_var_declaration] = STATE(1487), - [sym_assignment_statement] = STATE(1487), - [sym_block] = STATE(1493), - [sym_defer_statement] = STATE(1493), - [sym_goto_statement] = STATE(1493), - [sym_break_statement] = STATE(1493), - [sym_continue_statement] = STATE(1493), - [sym_return_statement] = STATE(1493), - [sym_label_definition] = STATE(64), - [sym_labeled_statement] = STATE(1493), - [sym_compile_time_for_statement] = STATE(1493), - [sym_for_statement] = STATE(1493), - [sym_hash_statement] = STATE(1493), - [sym_asm_statement] = STATE(1493), - [sym_attributes] = STATE(3363), - [sym_attribute] = STATE(3324), - [aux_sym_source_file_repeat1] = STATE(10), - [aux_sym_import_list_repeat1] = STATE(1494), - [aux_sym_attributes_repeat1] = STATE(3329), + [sym_const_declaration] = STATE(1496), + [sym_global_var_declaration] = STATE(1496), + [sym_type_declaration] = STATE(1496), + [sym_function_declaration] = STATE(1496), + [sym_static_method_declaration] = STATE(1496), + [sym_struct_declaration] = STATE(1496), + [sym_enum_declaration] = STATE(1496), + [sym_interface_declaration] = STATE(1496), + [sym__expression] = STATE(216), + [sym__expression_without_blocks] = STATE(401), + [sym__expression_with_blocks] = STATE(401), + [sym_strictly_expression_list] = STATE(1497), + [sym_inc_expression] = STATE(399), + [sym_dec_expression] = STATE(399), + [sym_or_block_expression] = STATE(399), + [sym_option_propagation_expression] = STATE(399), + [sym_result_propagation_expression] = STATE(399), + [sym_anon_struct_value_expression] = STATE(395), + [sym_go_expression] = STATE(399), + [sym_spawn_expression] = STATE(399), + [sym_parenthesized_expression] = STATE(399), + [sym_call_expression] = STATE(399), + [sym_type_initializer] = STATE(395), + [sym_function_literal] = STATE(399), + [sym_reference_expression] = STATE(393), + [sym_type_reference_expression] = STATE(3460), + [sym_unary_expression] = STATE(399), + [sym_receive_expression] = STATE(399), + [sym_binary_expression] = STATE(399), + [sym_as_type_cast_expression] = STATE(399), + [sym__max_group] = STATE(399), + [sym_literal] = STATE(455), + [sym_map_init_expression] = STATE(395), + [sym_array_creation] = STATE(399), + [sym_fixed_array_creation] = STATE(399), + [sym_selector_expression] = STATE(399), + [sym_index_expression] = STATE(399), + [sym_slice_expression] = STATE(399), + [sym_if_expression] = STATE(395), + [sym_compile_time_if_expression] = STATE(395), + [sym_is_expression] = STATE(399), + [sym_in_expression] = STATE(399), + [sym_enum_fetch] = STATE(399), + [sym_match_expression] = STATE(395), + [sym_select_expression] = STATE(395), + [sym_lock_expression] = STATE(395), + [sym_unsafe_expression] = STATE(395), + [sym_sql_expression] = STATE(395), + [sym_c_string_literal] = STATE(479), + [sym_raw_string_literal] = STATE(479), + [sym_interpreted_string_literal] = STATE(479), + [sym_visibility_modifiers] = STATE(3431), + [sym_mutability_modifiers] = STATE(800), + [sym_mutable_expression] = STATE(3271), + [sym_expression_list] = STATE(3330), + [sym_plain_type] = STATE(4069), + [sym__plain_type_without_special] = STATE(2360), + [sym_anon_struct_type] = STATE(2362), + [sym_multi_return_type] = STATE(2360), + [sym_result_type] = STATE(2360), + [sym_option_type] = STATE(2360), + [sym_qualified_type] = STATE(3460), + [sym_fixed_array_type] = STATE(2362), + [sym_array_type] = STATE(2362), + [sym_pointer_type] = STATE(2362), + [sym_wrong_pointer_type] = STATE(2362), + [sym_map_type] = STATE(2362), + [sym_channel_type] = STATE(2362), + [sym_shared_type] = STATE(2362), + [sym_thread_type] = STATE(2362), + [sym_atomic_type] = STATE(2362), + [sym_generic_type] = STATE(2362), + [sym_function_type] = STATE(2362), + [sym__statement] = STATE(1496), + [sym_simple_statement] = STATE(1532), + [sym_assert_statement] = STATE(1532), + [sym_append_statement] = STATE(1532), + [sym_send_statement] = STATE(1532), + [sym_var_declaration] = STATE(1497), + [sym_assignment_statement] = STATE(1497), + [sym_block] = STATE(1532), + [sym_defer_statement] = STATE(1532), + [sym_goto_statement] = STATE(1532), + [sym_break_statement] = STATE(1532), + [sym_continue_statement] = STATE(1532), + [sym_return_statement] = STATE(1532), + [sym_label_definition] = STATE(65), + [sym_labeled_statement] = STATE(1532), + [sym_compile_time_for_statement] = STATE(1532), + [sym_for_statement] = STATE(1532), + [sym_hash_statement] = STATE(1532), + [sym_asm_statement] = STATE(1532), + [sym_attributes] = STATE(3366), + [sym_attribute] = STATE(3319), + [aux_sym_source_file_repeat1] = STATE(9), + [aux_sym_import_list_repeat1] = STATE(1535), + [aux_sym_attributes_repeat1] = STATE(3331), [ts_builtin_sym_end] = ACTIONS(7), [sym_identifier] = ACTIONS(9), [anon_sym_POUND_BANG] = ACTIONS(11), @@ -19219,105 +19235,105 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_line_comment] = STATE(2), [sym_block_comment] = STATE(2), [sym_module_clause] = STATE(3), - [sym_import_list] = STATE(7), + [sym_import_list] = STATE(6), [sym_import_declaration] = STATE(1586), - [sym_const_declaration] = STATE(1483), - [sym_global_var_declaration] = STATE(1483), - [sym_type_declaration] = STATE(1483), - [sym_function_declaration] = STATE(1483), - [sym_static_method_declaration] = STATE(1483), - [sym_struct_declaration] = STATE(1483), - [sym_enum_declaration] = STATE(1483), - [sym_interface_declaration] = STATE(1483), - [sym__expression] = STATE(213), - [sym__expression_without_blocks] = STATE(442), - [sym__expression_with_blocks] = STATE(442), - [sym_strictly_expression_list] = STATE(1487), - [sym_inc_expression] = STATE(439), - [sym_dec_expression] = STATE(439), - [sym_or_block_expression] = STATE(439), - [sym_option_propagation_expression] = STATE(439), - [sym_result_propagation_expression] = STATE(439), - [sym_anon_struct_value_expression] = STATE(438), - [sym_go_expression] = STATE(439), - [sym_spawn_expression] = STATE(439), - [sym_parenthesized_expression] = STATE(439), - [sym_call_expression] = STATE(439), - [sym_type_initializer] = STATE(438), - [sym_function_literal] = STATE(439), - [sym_reference_expression] = STATE(437), - [sym_type_reference_expression] = STATE(3541), - [sym_unary_expression] = STATE(439), - [sym_receive_expression] = STATE(439), - [sym_binary_expression] = STATE(439), - [sym_as_type_cast_expression] = STATE(439), - [sym__max_group] = STATE(439), - [sym_literal] = STATE(495), - [sym_map_init_expression] = STATE(438), - [sym_array_creation] = STATE(439), - [sym_fixed_array_creation] = STATE(439), - [sym_selector_expression] = STATE(439), - [sym_index_expression] = STATE(439), - [sym_slice_expression] = STATE(439), - [sym_if_expression] = STATE(438), - [sym_compile_time_if_expression] = STATE(438), - [sym_is_expression] = STATE(439), - [sym_in_expression] = STATE(439), - [sym_enum_fetch] = STATE(439), - [sym_match_expression] = STATE(438), - [sym_select_expression] = STATE(438), - [sym_lock_expression] = STATE(438), - [sym_unsafe_expression] = STATE(438), - [sym_sql_expression] = STATE(438), - [sym_c_string_literal] = STATE(496), - [sym_raw_string_literal] = STATE(496), - [sym_interpreted_string_literal] = STATE(496), - [sym_visibility_modifiers] = STATE(3408), - [sym_mutability_modifiers] = STATE(781), - [sym_mutable_expression] = STATE(3275), - [sym_expression_list] = STATE(3317), - [sym_plain_type] = STATE(4049), - [sym__plain_type_without_special] = STATE(2302), - [sym_anon_struct_type] = STATE(2303), - [sym_multi_return_type] = STATE(2302), - [sym_result_type] = STATE(2302), - [sym_option_type] = STATE(2302), - [sym_qualified_type] = STATE(3541), - [sym_fixed_array_type] = STATE(2303), - [sym_array_type] = STATE(2303), - [sym_pointer_type] = STATE(2303), - [sym_wrong_pointer_type] = STATE(2303), - [sym_map_type] = STATE(2303), - [sym_channel_type] = STATE(2303), - [sym_shared_type] = STATE(2303), - [sym_thread_type] = STATE(2303), - [sym_atomic_type] = STATE(2303), - [sym_generic_type] = STATE(2303), - [sym_function_type] = STATE(2303), - [sym__statement] = STATE(1483), - [sym_simple_statement] = STATE(1493), - [sym_assert_statement] = STATE(1493), - [sym_append_statement] = STATE(1493), - [sym_send_statement] = STATE(1493), - [sym_var_declaration] = STATE(1487), - [sym_assignment_statement] = STATE(1487), - [sym_block] = STATE(1493), - [sym_defer_statement] = STATE(1493), - [sym_goto_statement] = STATE(1493), - [sym_break_statement] = STATE(1493), - [sym_continue_statement] = STATE(1493), - [sym_return_statement] = STATE(1493), - [sym_label_definition] = STATE(64), - [sym_labeled_statement] = STATE(1493), - [sym_compile_time_for_statement] = STATE(1493), - [sym_for_statement] = STATE(1493), - [sym_hash_statement] = STATE(1493), - [sym_asm_statement] = STATE(1493), - [sym_attributes] = STATE(3363), - [sym_attribute] = STATE(3324), - [aux_sym_source_file_repeat1] = STATE(6), - [aux_sym_import_list_repeat1] = STATE(1494), - [aux_sym_attributes_repeat1] = STATE(3329), + [sym_const_declaration] = STATE(1496), + [sym_global_var_declaration] = STATE(1496), + [sym_type_declaration] = STATE(1496), + [sym_function_declaration] = STATE(1496), + [sym_static_method_declaration] = STATE(1496), + [sym_struct_declaration] = STATE(1496), + [sym_enum_declaration] = STATE(1496), + [sym_interface_declaration] = STATE(1496), + [sym__expression] = STATE(216), + [sym__expression_without_blocks] = STATE(401), + [sym__expression_with_blocks] = STATE(401), + [sym_strictly_expression_list] = STATE(1497), + [sym_inc_expression] = STATE(399), + [sym_dec_expression] = STATE(399), + [sym_or_block_expression] = STATE(399), + [sym_option_propagation_expression] = STATE(399), + [sym_result_propagation_expression] = STATE(399), + [sym_anon_struct_value_expression] = STATE(395), + [sym_go_expression] = STATE(399), + [sym_spawn_expression] = STATE(399), + [sym_parenthesized_expression] = STATE(399), + [sym_call_expression] = STATE(399), + [sym_type_initializer] = STATE(395), + [sym_function_literal] = STATE(399), + [sym_reference_expression] = STATE(393), + [sym_type_reference_expression] = STATE(3460), + [sym_unary_expression] = STATE(399), + [sym_receive_expression] = STATE(399), + [sym_binary_expression] = STATE(399), + [sym_as_type_cast_expression] = STATE(399), + [sym__max_group] = STATE(399), + [sym_literal] = STATE(455), + [sym_map_init_expression] = STATE(395), + [sym_array_creation] = STATE(399), + [sym_fixed_array_creation] = STATE(399), + [sym_selector_expression] = STATE(399), + [sym_index_expression] = STATE(399), + [sym_slice_expression] = STATE(399), + [sym_if_expression] = STATE(395), + [sym_compile_time_if_expression] = STATE(395), + [sym_is_expression] = STATE(399), + [sym_in_expression] = STATE(399), + [sym_enum_fetch] = STATE(399), + [sym_match_expression] = STATE(395), + [sym_select_expression] = STATE(395), + [sym_lock_expression] = STATE(395), + [sym_unsafe_expression] = STATE(395), + [sym_sql_expression] = STATE(395), + [sym_c_string_literal] = STATE(479), + [sym_raw_string_literal] = STATE(479), + [sym_interpreted_string_literal] = STATE(479), + [sym_visibility_modifiers] = STATE(3431), + [sym_mutability_modifiers] = STATE(800), + [sym_mutable_expression] = STATE(3271), + [sym_expression_list] = STATE(3330), + [sym_plain_type] = STATE(4069), + [sym__plain_type_without_special] = STATE(2360), + [sym_anon_struct_type] = STATE(2362), + [sym_multi_return_type] = STATE(2360), + [sym_result_type] = STATE(2360), + [sym_option_type] = STATE(2360), + [sym_qualified_type] = STATE(3460), + [sym_fixed_array_type] = STATE(2362), + [sym_array_type] = STATE(2362), + [sym_pointer_type] = STATE(2362), + [sym_wrong_pointer_type] = STATE(2362), + [sym_map_type] = STATE(2362), + [sym_channel_type] = STATE(2362), + [sym_shared_type] = STATE(2362), + [sym_thread_type] = STATE(2362), + [sym_atomic_type] = STATE(2362), + [sym_generic_type] = STATE(2362), + [sym_function_type] = STATE(2362), + [sym__statement] = STATE(1496), + [sym_simple_statement] = STATE(1532), + [sym_assert_statement] = STATE(1532), + [sym_append_statement] = STATE(1532), + [sym_send_statement] = STATE(1532), + [sym_var_declaration] = STATE(1497), + [sym_assignment_statement] = STATE(1497), + [sym_block] = STATE(1532), + [sym_defer_statement] = STATE(1532), + [sym_goto_statement] = STATE(1532), + [sym_break_statement] = STATE(1532), + [sym_continue_statement] = STATE(1532), + [sym_return_statement] = STATE(1532), + [sym_label_definition] = STATE(65), + [sym_labeled_statement] = STATE(1532), + [sym_compile_time_for_statement] = STATE(1532), + [sym_for_statement] = STATE(1532), + [sym_hash_statement] = STATE(1532), + [sym_asm_statement] = STATE(1532), + [sym_attributes] = STATE(3366), + [sym_attribute] = STATE(3319), + [aux_sym_source_file_repeat1] = STATE(7), + [aux_sym_import_list_repeat1] = STATE(1535), + [aux_sym_attributes_repeat1] = STATE(3331), [ts_builtin_sym_end] = ACTIONS(127), [sym_identifier] = ACTIONS(9), [anon_sym_SLASH_SLASH] = ACTIONS(3), @@ -19392,105 +19408,105 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [3] = { [sym_line_comment] = STATE(3), [sym_block_comment] = STATE(3), - [sym_import_list] = STATE(12), + [sym_import_list] = STATE(5), [sym_import_declaration] = STATE(1586), - [sym_const_declaration] = STATE(1483), - [sym_global_var_declaration] = STATE(1483), - [sym_type_declaration] = STATE(1483), - [sym_function_declaration] = STATE(1483), - [sym_static_method_declaration] = STATE(1483), - [sym_struct_declaration] = STATE(1483), - [sym_enum_declaration] = STATE(1483), - [sym_interface_declaration] = STATE(1483), - [sym__expression] = STATE(213), - [sym__expression_without_blocks] = STATE(442), - [sym__expression_with_blocks] = STATE(442), - [sym_strictly_expression_list] = STATE(1487), - [sym_inc_expression] = STATE(439), - [sym_dec_expression] = STATE(439), - [sym_or_block_expression] = STATE(439), - [sym_option_propagation_expression] = STATE(439), - [sym_result_propagation_expression] = STATE(439), - [sym_anon_struct_value_expression] = STATE(438), - [sym_go_expression] = STATE(439), - [sym_spawn_expression] = STATE(439), - [sym_parenthesized_expression] = STATE(439), - [sym_call_expression] = STATE(439), - [sym_type_initializer] = STATE(438), - [sym_function_literal] = STATE(439), - [sym_reference_expression] = STATE(437), - [sym_type_reference_expression] = STATE(3541), - [sym_unary_expression] = STATE(439), - [sym_receive_expression] = STATE(439), - [sym_binary_expression] = STATE(439), - [sym_as_type_cast_expression] = STATE(439), - [sym__max_group] = STATE(439), - [sym_literal] = STATE(495), - [sym_map_init_expression] = STATE(438), - [sym_array_creation] = STATE(439), - [sym_fixed_array_creation] = STATE(439), - [sym_selector_expression] = STATE(439), - [sym_index_expression] = STATE(439), - [sym_slice_expression] = STATE(439), - [sym_if_expression] = STATE(438), - [sym_compile_time_if_expression] = STATE(438), - [sym_is_expression] = STATE(439), - [sym_in_expression] = STATE(439), - [sym_enum_fetch] = STATE(439), - [sym_match_expression] = STATE(438), - [sym_select_expression] = STATE(438), - [sym_lock_expression] = STATE(438), - [sym_unsafe_expression] = STATE(438), - [sym_sql_expression] = STATE(438), - [sym_c_string_literal] = STATE(496), - [sym_raw_string_literal] = STATE(496), - [sym_interpreted_string_literal] = STATE(496), - [sym_visibility_modifiers] = STATE(3408), - [sym_mutability_modifiers] = STATE(781), - [sym_mutable_expression] = STATE(3275), - [sym_expression_list] = STATE(3317), - [sym_plain_type] = STATE(4049), - [sym__plain_type_without_special] = STATE(2302), - [sym_anon_struct_type] = STATE(2303), - [sym_multi_return_type] = STATE(2302), - [sym_result_type] = STATE(2302), - [sym_option_type] = STATE(2302), - [sym_qualified_type] = STATE(3541), - [sym_fixed_array_type] = STATE(2303), - [sym_array_type] = STATE(2303), - [sym_pointer_type] = STATE(2303), - [sym_wrong_pointer_type] = STATE(2303), - [sym_map_type] = STATE(2303), - [sym_channel_type] = STATE(2303), - [sym_shared_type] = STATE(2303), - [sym_thread_type] = STATE(2303), - [sym_atomic_type] = STATE(2303), - [sym_generic_type] = STATE(2303), - [sym_function_type] = STATE(2303), - [sym__statement] = STATE(1483), - [sym_simple_statement] = STATE(1493), - [sym_assert_statement] = STATE(1493), - [sym_append_statement] = STATE(1493), - [sym_send_statement] = STATE(1493), - [sym_var_declaration] = STATE(1487), - [sym_assignment_statement] = STATE(1487), - [sym_block] = STATE(1493), - [sym_defer_statement] = STATE(1493), - [sym_goto_statement] = STATE(1493), - [sym_break_statement] = STATE(1493), - [sym_continue_statement] = STATE(1493), - [sym_return_statement] = STATE(1493), - [sym_label_definition] = STATE(64), - [sym_labeled_statement] = STATE(1493), - [sym_compile_time_for_statement] = STATE(1493), - [sym_for_statement] = STATE(1493), - [sym_hash_statement] = STATE(1493), - [sym_asm_statement] = STATE(1493), - [sym_attributes] = STATE(3368), - [sym_attribute] = STATE(3324), - [aux_sym_source_file_repeat1] = STATE(11), - [aux_sym_import_list_repeat1] = STATE(1494), - [aux_sym_attributes_repeat1] = STATE(3329), + [sym_const_declaration] = STATE(1496), + [sym_global_var_declaration] = STATE(1496), + [sym_type_declaration] = STATE(1496), + [sym_function_declaration] = STATE(1496), + [sym_static_method_declaration] = STATE(1496), + [sym_struct_declaration] = STATE(1496), + [sym_enum_declaration] = STATE(1496), + [sym_interface_declaration] = STATE(1496), + [sym__expression] = STATE(216), + [sym__expression_without_blocks] = STATE(401), + [sym__expression_with_blocks] = STATE(401), + [sym_strictly_expression_list] = STATE(1497), + [sym_inc_expression] = STATE(399), + [sym_dec_expression] = STATE(399), + [sym_or_block_expression] = STATE(399), + [sym_option_propagation_expression] = STATE(399), + [sym_result_propagation_expression] = STATE(399), + [sym_anon_struct_value_expression] = STATE(395), + [sym_go_expression] = STATE(399), + [sym_spawn_expression] = STATE(399), + [sym_parenthesized_expression] = STATE(399), + [sym_call_expression] = STATE(399), + [sym_type_initializer] = STATE(395), + [sym_function_literal] = STATE(399), + [sym_reference_expression] = STATE(393), + [sym_type_reference_expression] = STATE(3460), + [sym_unary_expression] = STATE(399), + [sym_receive_expression] = STATE(399), + [sym_binary_expression] = STATE(399), + [sym_as_type_cast_expression] = STATE(399), + [sym__max_group] = STATE(399), + [sym_literal] = STATE(455), + [sym_map_init_expression] = STATE(395), + [sym_array_creation] = STATE(399), + [sym_fixed_array_creation] = STATE(399), + [sym_selector_expression] = STATE(399), + [sym_index_expression] = STATE(399), + [sym_slice_expression] = STATE(399), + [sym_if_expression] = STATE(395), + [sym_compile_time_if_expression] = STATE(395), + [sym_is_expression] = STATE(399), + [sym_in_expression] = STATE(399), + [sym_enum_fetch] = STATE(399), + [sym_match_expression] = STATE(395), + [sym_select_expression] = STATE(395), + [sym_lock_expression] = STATE(395), + [sym_unsafe_expression] = STATE(395), + [sym_sql_expression] = STATE(395), + [sym_c_string_literal] = STATE(479), + [sym_raw_string_literal] = STATE(479), + [sym_interpreted_string_literal] = STATE(479), + [sym_visibility_modifiers] = STATE(3431), + [sym_mutability_modifiers] = STATE(800), + [sym_mutable_expression] = STATE(3271), + [sym_expression_list] = STATE(3330), + [sym_plain_type] = STATE(4069), + [sym__plain_type_without_special] = STATE(2360), + [sym_anon_struct_type] = STATE(2362), + [sym_multi_return_type] = STATE(2360), + [sym_result_type] = STATE(2360), + [sym_option_type] = STATE(2360), + [sym_qualified_type] = STATE(3460), + [sym_fixed_array_type] = STATE(2362), + [sym_array_type] = STATE(2362), + [sym_pointer_type] = STATE(2362), + [sym_wrong_pointer_type] = STATE(2362), + [sym_map_type] = STATE(2362), + [sym_channel_type] = STATE(2362), + [sym_shared_type] = STATE(2362), + [sym_thread_type] = STATE(2362), + [sym_atomic_type] = STATE(2362), + [sym_generic_type] = STATE(2362), + [sym_function_type] = STATE(2362), + [sym__statement] = STATE(1496), + [sym_simple_statement] = STATE(1532), + [sym_assert_statement] = STATE(1532), + [sym_append_statement] = STATE(1532), + [sym_send_statement] = STATE(1532), + [sym_var_declaration] = STATE(1497), + [sym_assignment_statement] = STATE(1497), + [sym_block] = STATE(1532), + [sym_defer_statement] = STATE(1532), + [sym_goto_statement] = STATE(1532), + [sym_break_statement] = STATE(1532), + [sym_continue_statement] = STATE(1532), + [sym_return_statement] = STATE(1532), + [sym_label_definition] = STATE(65), + [sym_labeled_statement] = STATE(1532), + [sym_compile_time_for_statement] = STATE(1532), + [sym_for_statement] = STATE(1532), + [sym_hash_statement] = STATE(1532), + [sym_asm_statement] = STATE(1532), + [sym_attributes] = STATE(3374), + [sym_attribute] = STATE(3319), + [aux_sym_source_file_repeat1] = STATE(12), + [aux_sym_import_list_repeat1] = STATE(1535), + [aux_sym_attributes_repeat1] = STATE(3331), [ts_builtin_sym_end] = ACTIONS(131), [sym_identifier] = ACTIONS(9), [anon_sym_SLASH_SLASH] = ACTIONS(3), @@ -19564,105 +19580,105 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [4] = { [sym_line_comment] = STATE(4), [sym_block_comment] = STATE(4), - [sym_import_list] = STATE(7), + [sym_import_list] = STATE(6), [sym_import_declaration] = STATE(1586), - [sym_const_declaration] = STATE(1483), - [sym_global_var_declaration] = STATE(1483), - [sym_type_declaration] = STATE(1483), - [sym_function_declaration] = STATE(1483), - [sym_static_method_declaration] = STATE(1483), - [sym_struct_declaration] = STATE(1483), - [sym_enum_declaration] = STATE(1483), - [sym_interface_declaration] = STATE(1483), - [sym__expression] = STATE(213), - [sym__expression_without_blocks] = STATE(442), - [sym__expression_with_blocks] = STATE(442), - [sym_strictly_expression_list] = STATE(1487), - [sym_inc_expression] = STATE(439), - [sym_dec_expression] = STATE(439), - [sym_or_block_expression] = STATE(439), - [sym_option_propagation_expression] = STATE(439), - [sym_result_propagation_expression] = STATE(439), - [sym_anon_struct_value_expression] = STATE(438), - [sym_go_expression] = STATE(439), - [sym_spawn_expression] = STATE(439), - [sym_parenthesized_expression] = STATE(439), - [sym_call_expression] = STATE(439), - [sym_type_initializer] = STATE(438), - [sym_function_literal] = STATE(439), - [sym_reference_expression] = STATE(437), - [sym_type_reference_expression] = STATE(3541), - [sym_unary_expression] = STATE(439), - [sym_receive_expression] = STATE(439), - [sym_binary_expression] = STATE(439), - [sym_as_type_cast_expression] = STATE(439), - [sym__max_group] = STATE(439), - [sym_literal] = STATE(495), - [sym_map_init_expression] = STATE(438), - [sym_array_creation] = STATE(439), - [sym_fixed_array_creation] = STATE(439), - [sym_selector_expression] = STATE(439), - [sym_index_expression] = STATE(439), - [sym_slice_expression] = STATE(439), - [sym_if_expression] = STATE(438), - [sym_compile_time_if_expression] = STATE(438), - [sym_is_expression] = STATE(439), - [sym_in_expression] = STATE(439), - [sym_enum_fetch] = STATE(439), - [sym_match_expression] = STATE(438), - [sym_select_expression] = STATE(438), - [sym_lock_expression] = STATE(438), - [sym_unsafe_expression] = STATE(438), - [sym_sql_expression] = STATE(438), - [sym_c_string_literal] = STATE(496), - [sym_raw_string_literal] = STATE(496), - [sym_interpreted_string_literal] = STATE(496), - [sym_visibility_modifiers] = STATE(3408), - [sym_mutability_modifiers] = STATE(781), - [sym_mutable_expression] = STATE(3275), - [sym_expression_list] = STATE(3317), - [sym_plain_type] = STATE(4049), - [sym__plain_type_without_special] = STATE(2302), - [sym_anon_struct_type] = STATE(2303), - [sym_multi_return_type] = STATE(2302), - [sym_result_type] = STATE(2302), - [sym_option_type] = STATE(2302), - [sym_qualified_type] = STATE(3541), - [sym_fixed_array_type] = STATE(2303), - [sym_array_type] = STATE(2303), - [sym_pointer_type] = STATE(2303), - [sym_wrong_pointer_type] = STATE(2303), - [sym_map_type] = STATE(2303), - [sym_channel_type] = STATE(2303), - [sym_shared_type] = STATE(2303), - [sym_thread_type] = STATE(2303), - [sym_atomic_type] = STATE(2303), - [sym_generic_type] = STATE(2303), - [sym_function_type] = STATE(2303), - [sym__statement] = STATE(1483), - [sym_simple_statement] = STATE(1493), - [sym_assert_statement] = STATE(1493), - [sym_append_statement] = STATE(1493), - [sym_send_statement] = STATE(1493), - [sym_var_declaration] = STATE(1487), - [sym_assignment_statement] = STATE(1487), - [sym_block] = STATE(1493), - [sym_defer_statement] = STATE(1493), - [sym_goto_statement] = STATE(1493), - [sym_break_statement] = STATE(1493), - [sym_continue_statement] = STATE(1493), - [sym_return_statement] = STATE(1493), - [sym_label_definition] = STATE(64), - [sym_labeled_statement] = STATE(1493), - [sym_compile_time_for_statement] = STATE(1493), - [sym_for_statement] = STATE(1493), - [sym_hash_statement] = STATE(1493), - [sym_asm_statement] = STATE(1493), - [sym_attributes] = STATE(3368), - [sym_attribute] = STATE(3324), - [aux_sym_source_file_repeat1] = STATE(6), - [aux_sym_import_list_repeat1] = STATE(1494), - [aux_sym_attributes_repeat1] = STATE(3329), + [sym_const_declaration] = STATE(1496), + [sym_global_var_declaration] = STATE(1496), + [sym_type_declaration] = STATE(1496), + [sym_function_declaration] = STATE(1496), + [sym_static_method_declaration] = STATE(1496), + [sym_struct_declaration] = STATE(1496), + [sym_enum_declaration] = STATE(1496), + [sym_interface_declaration] = STATE(1496), + [sym__expression] = STATE(216), + [sym__expression_without_blocks] = STATE(401), + [sym__expression_with_blocks] = STATE(401), + [sym_strictly_expression_list] = STATE(1497), + [sym_inc_expression] = STATE(399), + [sym_dec_expression] = STATE(399), + [sym_or_block_expression] = STATE(399), + [sym_option_propagation_expression] = STATE(399), + [sym_result_propagation_expression] = STATE(399), + [sym_anon_struct_value_expression] = STATE(395), + [sym_go_expression] = STATE(399), + [sym_spawn_expression] = STATE(399), + [sym_parenthesized_expression] = STATE(399), + [sym_call_expression] = STATE(399), + [sym_type_initializer] = STATE(395), + [sym_function_literal] = STATE(399), + [sym_reference_expression] = STATE(393), + [sym_type_reference_expression] = STATE(3460), + [sym_unary_expression] = STATE(399), + [sym_receive_expression] = STATE(399), + [sym_binary_expression] = STATE(399), + [sym_as_type_cast_expression] = STATE(399), + [sym__max_group] = STATE(399), + [sym_literal] = STATE(455), + [sym_map_init_expression] = STATE(395), + [sym_array_creation] = STATE(399), + [sym_fixed_array_creation] = STATE(399), + [sym_selector_expression] = STATE(399), + [sym_index_expression] = STATE(399), + [sym_slice_expression] = STATE(399), + [sym_if_expression] = STATE(395), + [sym_compile_time_if_expression] = STATE(395), + [sym_is_expression] = STATE(399), + [sym_in_expression] = STATE(399), + [sym_enum_fetch] = STATE(399), + [sym_match_expression] = STATE(395), + [sym_select_expression] = STATE(395), + [sym_lock_expression] = STATE(395), + [sym_unsafe_expression] = STATE(395), + [sym_sql_expression] = STATE(395), + [sym_c_string_literal] = STATE(479), + [sym_raw_string_literal] = STATE(479), + [sym_interpreted_string_literal] = STATE(479), + [sym_visibility_modifiers] = STATE(3431), + [sym_mutability_modifiers] = STATE(800), + [sym_mutable_expression] = STATE(3271), + [sym_expression_list] = STATE(3330), + [sym_plain_type] = STATE(4069), + [sym__plain_type_without_special] = STATE(2360), + [sym_anon_struct_type] = STATE(2362), + [sym_multi_return_type] = STATE(2360), + [sym_result_type] = STATE(2360), + [sym_option_type] = STATE(2360), + [sym_qualified_type] = STATE(3460), + [sym_fixed_array_type] = STATE(2362), + [sym_array_type] = STATE(2362), + [sym_pointer_type] = STATE(2362), + [sym_wrong_pointer_type] = STATE(2362), + [sym_map_type] = STATE(2362), + [sym_channel_type] = STATE(2362), + [sym_shared_type] = STATE(2362), + [sym_thread_type] = STATE(2362), + [sym_atomic_type] = STATE(2362), + [sym_generic_type] = STATE(2362), + [sym_function_type] = STATE(2362), + [sym__statement] = STATE(1496), + [sym_simple_statement] = STATE(1532), + [sym_assert_statement] = STATE(1532), + [sym_append_statement] = STATE(1532), + [sym_send_statement] = STATE(1532), + [sym_var_declaration] = STATE(1497), + [sym_assignment_statement] = STATE(1497), + [sym_block] = STATE(1532), + [sym_defer_statement] = STATE(1532), + [sym_goto_statement] = STATE(1532), + [sym_break_statement] = STATE(1532), + [sym_continue_statement] = STATE(1532), + [sym_return_statement] = STATE(1532), + [sym_label_definition] = STATE(65), + [sym_labeled_statement] = STATE(1532), + [sym_compile_time_for_statement] = STATE(1532), + [sym_for_statement] = STATE(1532), + [sym_hash_statement] = STATE(1532), + [sym_asm_statement] = STATE(1532), + [sym_attributes] = STATE(3374), + [sym_attribute] = STATE(3319), + [aux_sym_source_file_repeat1] = STATE(7), + [aux_sym_import_list_repeat1] = STATE(1535), + [aux_sym_attributes_repeat1] = STATE(3331), [ts_builtin_sym_end] = ACTIONS(127), [sym_identifier] = ACTIONS(9), [anon_sym_SLASH_SLASH] = ACTIONS(3), @@ -19736,271 +19752,103 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [5] = { [sym_line_comment] = STATE(5), [sym_block_comment] = STATE(5), - [sym_const_declaration] = STATE(1483), - [sym_global_var_declaration] = STATE(1483), - [sym_type_declaration] = STATE(1483), - [sym_function_declaration] = STATE(1483), - [sym_static_method_declaration] = STATE(1483), - [sym_struct_declaration] = STATE(1483), - [sym_enum_declaration] = STATE(1483), - [sym_interface_declaration] = STATE(1483), - [sym__expression] = STATE(213), - [sym__expression_without_blocks] = STATE(442), - [sym__expression_with_blocks] = STATE(442), - [sym_strictly_expression_list] = STATE(1487), - [sym_inc_expression] = STATE(439), - [sym_dec_expression] = STATE(439), - [sym_or_block_expression] = STATE(439), - [sym_option_propagation_expression] = STATE(439), - [sym_result_propagation_expression] = STATE(439), - [sym_anon_struct_value_expression] = STATE(438), - [sym_go_expression] = STATE(439), - [sym_spawn_expression] = STATE(439), - [sym_parenthesized_expression] = STATE(439), - [sym_call_expression] = STATE(439), - [sym_type_initializer] = STATE(438), - [sym_function_literal] = STATE(439), - [sym_reference_expression] = STATE(437), - [sym_type_reference_expression] = STATE(3541), - [sym_unary_expression] = STATE(439), - [sym_receive_expression] = STATE(439), - [sym_binary_expression] = STATE(439), - [sym_as_type_cast_expression] = STATE(439), - [sym__max_group] = STATE(439), - [sym_literal] = STATE(495), - [sym_map_init_expression] = STATE(438), - [sym_array_creation] = STATE(439), - [sym_fixed_array_creation] = STATE(439), - [sym_selector_expression] = STATE(439), - [sym_index_expression] = STATE(439), - [sym_slice_expression] = STATE(439), - [sym_if_expression] = STATE(438), - [sym_compile_time_if_expression] = STATE(438), - [sym_is_expression] = STATE(439), - [sym_in_expression] = STATE(439), - [sym_enum_fetch] = STATE(439), - [sym_match_expression] = STATE(438), - [sym_select_expression] = STATE(438), - [sym_lock_expression] = STATE(438), - [sym_unsafe_expression] = STATE(438), - [sym_sql_expression] = STATE(438), - [sym_c_string_literal] = STATE(496), - [sym_raw_string_literal] = STATE(496), - [sym_interpreted_string_literal] = STATE(496), - [sym_visibility_modifiers] = STATE(3408), - [sym_mutability_modifiers] = STATE(781), - [sym_mutable_expression] = STATE(3275), - [sym_expression_list] = STATE(3317), - [sym_plain_type] = STATE(4049), - [sym__plain_type_without_special] = STATE(2302), - [sym_anon_struct_type] = STATE(2303), - [sym_multi_return_type] = STATE(2302), - [sym_result_type] = STATE(2302), - [sym_option_type] = STATE(2302), - [sym_qualified_type] = STATE(3541), - [sym_fixed_array_type] = STATE(2303), - [sym_array_type] = STATE(2303), - [sym_pointer_type] = STATE(2303), - [sym_wrong_pointer_type] = STATE(2303), - [sym_map_type] = STATE(2303), - [sym_channel_type] = STATE(2303), - [sym_shared_type] = STATE(2303), - [sym_thread_type] = STATE(2303), - [sym_atomic_type] = STATE(2303), - [sym_generic_type] = STATE(2303), - [sym_function_type] = STATE(2303), - [sym__statement] = STATE(1483), - [sym_simple_statement] = STATE(1493), - [sym_assert_statement] = STATE(1493), - [sym_append_statement] = STATE(1493), - [sym_send_statement] = STATE(1493), - [sym_var_declaration] = STATE(1487), - [sym_assignment_statement] = STATE(1487), - [sym_block] = STATE(1493), - [sym_defer_statement] = STATE(1493), - [sym_goto_statement] = STATE(1493), - [sym_break_statement] = STATE(1493), - [sym_continue_statement] = STATE(1493), - [sym_return_statement] = STATE(1493), - [sym_label_definition] = STATE(64), - [sym_labeled_statement] = STATE(1493), - [sym_compile_time_for_statement] = STATE(1493), - [sym_for_statement] = STATE(1493), - [sym_hash_statement] = STATE(1493), - [sym_asm_statement] = STATE(1493), - [sym_attributes] = STATE(3368), - [sym_attribute] = STATE(3324), - [aux_sym_source_file_repeat1] = STATE(5), - [aux_sym_attributes_repeat1] = STATE(3329), + [sym_const_declaration] = STATE(1496), + [sym_global_var_declaration] = STATE(1496), + [sym_type_declaration] = STATE(1496), + [sym_function_declaration] = STATE(1496), + [sym_static_method_declaration] = STATE(1496), + [sym_struct_declaration] = STATE(1496), + [sym_enum_declaration] = STATE(1496), + [sym_interface_declaration] = STATE(1496), + [sym__expression] = STATE(216), + [sym__expression_without_blocks] = STATE(401), + [sym__expression_with_blocks] = STATE(401), + [sym_strictly_expression_list] = STATE(1497), + [sym_inc_expression] = STATE(399), + [sym_dec_expression] = STATE(399), + [sym_or_block_expression] = STATE(399), + [sym_option_propagation_expression] = STATE(399), + [sym_result_propagation_expression] = STATE(399), + [sym_anon_struct_value_expression] = STATE(395), + [sym_go_expression] = STATE(399), + [sym_spawn_expression] = STATE(399), + [sym_parenthesized_expression] = STATE(399), + [sym_call_expression] = STATE(399), + [sym_type_initializer] = STATE(395), + [sym_function_literal] = STATE(399), + [sym_reference_expression] = STATE(393), + [sym_type_reference_expression] = STATE(3460), + [sym_unary_expression] = STATE(399), + [sym_receive_expression] = STATE(399), + [sym_binary_expression] = STATE(399), + [sym_as_type_cast_expression] = STATE(399), + [sym__max_group] = STATE(399), + [sym_literal] = STATE(455), + [sym_map_init_expression] = STATE(395), + [sym_array_creation] = STATE(399), + [sym_fixed_array_creation] = STATE(399), + [sym_selector_expression] = STATE(399), + [sym_index_expression] = STATE(399), + [sym_slice_expression] = STATE(399), + [sym_if_expression] = STATE(395), + [sym_compile_time_if_expression] = STATE(395), + [sym_is_expression] = STATE(399), + [sym_in_expression] = STATE(399), + [sym_enum_fetch] = STATE(399), + [sym_match_expression] = STATE(395), + [sym_select_expression] = STATE(395), + [sym_lock_expression] = STATE(395), + [sym_unsafe_expression] = STATE(395), + [sym_sql_expression] = STATE(395), + [sym_c_string_literal] = STATE(479), + [sym_raw_string_literal] = STATE(479), + [sym_interpreted_string_literal] = STATE(479), + [sym_visibility_modifiers] = STATE(3431), + [sym_mutability_modifiers] = STATE(800), + [sym_mutable_expression] = STATE(3271), + [sym_expression_list] = STATE(3330), + [sym_plain_type] = STATE(4069), + [sym__plain_type_without_special] = STATE(2360), + [sym_anon_struct_type] = STATE(2362), + [sym_multi_return_type] = STATE(2360), + [sym_result_type] = STATE(2360), + [sym_option_type] = STATE(2360), + [sym_qualified_type] = STATE(3460), + [sym_fixed_array_type] = STATE(2362), + [sym_array_type] = STATE(2362), + [sym_pointer_type] = STATE(2362), + [sym_wrong_pointer_type] = STATE(2362), + [sym_map_type] = STATE(2362), + [sym_channel_type] = STATE(2362), + [sym_shared_type] = STATE(2362), + [sym_thread_type] = STATE(2362), + [sym_atomic_type] = STATE(2362), + [sym_generic_type] = STATE(2362), + [sym_function_type] = STATE(2362), + [sym__statement] = STATE(1496), + [sym_simple_statement] = STATE(1532), + [sym_assert_statement] = STATE(1532), + [sym_append_statement] = STATE(1532), + [sym_send_statement] = STATE(1532), + [sym_var_declaration] = STATE(1497), + [sym_assignment_statement] = STATE(1497), + [sym_block] = STATE(1532), + [sym_defer_statement] = STATE(1532), + [sym_goto_statement] = STATE(1532), + [sym_break_statement] = STATE(1532), + [sym_continue_statement] = STATE(1532), + [sym_return_statement] = STATE(1532), + [sym_label_definition] = STATE(65), + [sym_labeled_statement] = STATE(1532), + [sym_compile_time_for_statement] = STATE(1532), + [sym_for_statement] = STATE(1532), + [sym_hash_statement] = STATE(1532), + [sym_asm_statement] = STATE(1532), + [sym_attributes] = STATE(3374), + [sym_attribute] = STATE(3319), + [aux_sym_source_file_repeat1] = STATE(10), + [aux_sym_attributes_repeat1] = STATE(3331), [ts_builtin_sym_end] = ACTIONS(133), - [sym_identifier] = ACTIONS(135), - [anon_sym_SLASH_SLASH] = ACTIONS(3), - [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(138), - [anon_sym_LBRACE] = ACTIONS(141), - [anon_sym_const] = ACTIONS(144), - [anon_sym_LPAREN] = ACTIONS(147), - [anon_sym___global] = ACTIONS(150), - [anon_sym_type] = ACTIONS(153), - [anon_sym_fn] = ACTIONS(156), - [anon_sym_PLUS] = ACTIONS(159), - [anon_sym_DASH] = ACTIONS(159), - [anon_sym_STAR] = ACTIONS(162), - [anon_sym_struct] = ACTIONS(165), - [anon_sym_union] = ACTIONS(168), - [anon_sym_pub] = ACTIONS(171), - [anon_sym_mut] = ACTIONS(174), - [anon_sym_enum] = ACTIONS(177), - [anon_sym_interface] = ACTIONS(180), - [anon_sym_QMARK] = ACTIONS(183), - [anon_sym_BANG] = ACTIONS(186), - [anon_sym_go] = ACTIONS(189), - [anon_sym_spawn] = ACTIONS(192), - [anon_sym_json_DOTdecode] = ACTIONS(195), - [anon_sym_LBRACK2] = ACTIONS(198), - [anon_sym_TILDE] = ACTIONS(159), - [anon_sym_CARET] = ACTIONS(159), - [anon_sym_AMP] = ACTIONS(201), - [anon_sym_LT_DASH] = ACTIONS(204), - [sym_none] = ACTIONS(207), - [sym_true] = ACTIONS(207), - [sym_false] = ACTIONS(207), - [sym_nil] = ACTIONS(207), - [anon_sym_if] = ACTIONS(210), - [anon_sym_DOLLARif] = ACTIONS(213), - [anon_sym_match] = ACTIONS(216), - [anon_sym_select] = ACTIONS(219), - [anon_sym_lock] = ACTIONS(222), - [anon_sym_rlock] = ACTIONS(222), - [anon_sym_unsafe] = ACTIONS(225), - [anon_sym_sql] = ACTIONS(228), - [sym_int_literal] = ACTIONS(207), - [sym_float_literal] = ACTIONS(231), - [sym_rune_literal] = ACTIONS(231), - [sym_pseudo_compile_time_identifier] = ACTIONS(234), - [anon_sym_shared] = ACTIONS(237), - [anon_sym_map_LBRACK] = ACTIONS(240), - [anon_sym_chan] = ACTIONS(243), - [anon_sym_thread] = ACTIONS(246), - [anon_sym_atomic] = ACTIONS(249), - [anon_sym_assert] = ACTIONS(252), - [anon_sym_defer] = ACTIONS(255), - [anon_sym_goto] = ACTIONS(258), - [anon_sym_break] = ACTIONS(261), - [anon_sym_continue] = ACTIONS(264), - [anon_sym_return] = ACTIONS(267), - [anon_sym_DOLLARfor] = ACTIONS(270), - [anon_sym_for] = ACTIONS(273), - [anon_sym_POUND] = ACTIONS(276), - [anon_sym_asm] = ACTIONS(279), - [anon_sym_AT_LBRACK] = ACTIONS(282), - [sym___double_quote] = ACTIONS(285), - [sym___single_quote] = ACTIONS(288), - [sym___c_double_quote] = ACTIONS(291), - [sym___c_single_quote] = ACTIONS(294), - [sym___r_double_quote] = ACTIONS(297), - [sym___r_single_quote] = ACTIONS(300), - }, - [6] = { - [sym_line_comment] = STATE(6), - [sym_block_comment] = STATE(6), - [sym_const_declaration] = STATE(1483), - [sym_global_var_declaration] = STATE(1483), - [sym_type_declaration] = STATE(1483), - [sym_function_declaration] = STATE(1483), - [sym_static_method_declaration] = STATE(1483), - [sym_struct_declaration] = STATE(1483), - [sym_enum_declaration] = STATE(1483), - [sym_interface_declaration] = STATE(1483), - [sym__expression] = STATE(213), - [sym__expression_without_blocks] = STATE(442), - [sym__expression_with_blocks] = STATE(442), - [sym_strictly_expression_list] = STATE(1487), - [sym_inc_expression] = STATE(439), - [sym_dec_expression] = STATE(439), - [sym_or_block_expression] = STATE(439), - [sym_option_propagation_expression] = STATE(439), - [sym_result_propagation_expression] = STATE(439), - [sym_anon_struct_value_expression] = STATE(438), - [sym_go_expression] = STATE(439), - [sym_spawn_expression] = STATE(439), - [sym_parenthesized_expression] = STATE(439), - [sym_call_expression] = STATE(439), - [sym_type_initializer] = STATE(438), - [sym_function_literal] = STATE(439), - [sym_reference_expression] = STATE(437), - [sym_type_reference_expression] = STATE(3541), - [sym_unary_expression] = STATE(439), - [sym_receive_expression] = STATE(439), - [sym_binary_expression] = STATE(439), - [sym_as_type_cast_expression] = STATE(439), - [sym__max_group] = STATE(439), - [sym_literal] = STATE(495), - [sym_map_init_expression] = STATE(438), - [sym_array_creation] = STATE(439), - [sym_fixed_array_creation] = STATE(439), - [sym_selector_expression] = STATE(439), - [sym_index_expression] = STATE(439), - [sym_slice_expression] = STATE(439), - [sym_if_expression] = STATE(438), - [sym_compile_time_if_expression] = STATE(438), - [sym_is_expression] = STATE(439), - [sym_in_expression] = STATE(439), - [sym_enum_fetch] = STATE(439), - [sym_match_expression] = STATE(438), - [sym_select_expression] = STATE(438), - [sym_lock_expression] = STATE(438), - [sym_unsafe_expression] = STATE(438), - [sym_sql_expression] = STATE(438), - [sym_c_string_literal] = STATE(496), - [sym_raw_string_literal] = STATE(496), - [sym_interpreted_string_literal] = STATE(496), - [sym_visibility_modifiers] = STATE(3408), - [sym_mutability_modifiers] = STATE(781), - [sym_mutable_expression] = STATE(3275), - [sym_expression_list] = STATE(3317), - [sym_plain_type] = STATE(4049), - [sym__plain_type_without_special] = STATE(2302), - [sym_anon_struct_type] = STATE(2303), - [sym_multi_return_type] = STATE(2302), - [sym_result_type] = STATE(2302), - [sym_option_type] = STATE(2302), - [sym_qualified_type] = STATE(3541), - [sym_fixed_array_type] = STATE(2303), - [sym_array_type] = STATE(2303), - [sym_pointer_type] = STATE(2303), - [sym_wrong_pointer_type] = STATE(2303), - [sym_map_type] = STATE(2303), - [sym_channel_type] = STATE(2303), - [sym_shared_type] = STATE(2303), - [sym_thread_type] = STATE(2303), - [sym_atomic_type] = STATE(2303), - [sym_generic_type] = STATE(2303), - [sym_function_type] = STATE(2303), - [sym__statement] = STATE(1483), - [sym_simple_statement] = STATE(1493), - [sym_assert_statement] = STATE(1493), - [sym_append_statement] = STATE(1493), - [sym_send_statement] = STATE(1493), - [sym_var_declaration] = STATE(1487), - [sym_assignment_statement] = STATE(1487), - [sym_block] = STATE(1493), - [sym_defer_statement] = STATE(1493), - [sym_goto_statement] = STATE(1493), - [sym_break_statement] = STATE(1493), - [sym_continue_statement] = STATE(1493), - [sym_return_statement] = STATE(1493), - [sym_label_definition] = STATE(64), - [sym_labeled_statement] = STATE(1493), - [sym_compile_time_for_statement] = STATE(1493), - [sym_for_statement] = STATE(1493), - [sym_hash_statement] = STATE(1493), - [sym_asm_statement] = STATE(1493), - [sym_attributes] = STATE(3368), - [sym_attribute] = STATE(3324), - [aux_sym_source_file_repeat1] = STATE(5), - [aux_sym_attributes_repeat1] = STATE(3329), - [ts_builtin_sym_end] = ACTIONS(131), [sym_identifier] = ACTIONS(9), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), @@ -20069,105 +19917,105 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym___r_double_quote] = ACTIONS(123), [sym___r_single_quote] = ACTIONS(125), }, - [7] = { - [sym_line_comment] = STATE(7), - [sym_block_comment] = STATE(7), - [sym_const_declaration] = STATE(1483), - [sym_global_var_declaration] = STATE(1483), - [sym_type_declaration] = STATE(1483), - [sym_function_declaration] = STATE(1483), - [sym_static_method_declaration] = STATE(1483), - [sym_struct_declaration] = STATE(1483), - [sym_enum_declaration] = STATE(1483), - [sym_interface_declaration] = STATE(1483), - [sym__expression] = STATE(213), - [sym__expression_without_blocks] = STATE(442), - [sym__expression_with_blocks] = STATE(442), - [sym_strictly_expression_list] = STATE(1487), - [sym_inc_expression] = STATE(439), - [sym_dec_expression] = STATE(439), - [sym_or_block_expression] = STATE(439), - [sym_option_propagation_expression] = STATE(439), - [sym_result_propagation_expression] = STATE(439), - [sym_anon_struct_value_expression] = STATE(438), - [sym_go_expression] = STATE(439), - [sym_spawn_expression] = STATE(439), - [sym_parenthesized_expression] = STATE(439), - [sym_call_expression] = STATE(439), - [sym_type_initializer] = STATE(438), - [sym_function_literal] = STATE(439), - [sym_reference_expression] = STATE(437), - [sym_type_reference_expression] = STATE(3541), - [sym_unary_expression] = STATE(439), - [sym_receive_expression] = STATE(439), - [sym_binary_expression] = STATE(439), - [sym_as_type_cast_expression] = STATE(439), - [sym__max_group] = STATE(439), - [sym_literal] = STATE(495), - [sym_map_init_expression] = STATE(438), - [sym_array_creation] = STATE(439), - [sym_fixed_array_creation] = STATE(439), - [sym_selector_expression] = STATE(439), - [sym_index_expression] = STATE(439), - [sym_slice_expression] = STATE(439), - [sym_if_expression] = STATE(438), - [sym_compile_time_if_expression] = STATE(438), - [sym_is_expression] = STATE(439), - [sym_in_expression] = STATE(439), - [sym_enum_fetch] = STATE(439), - [sym_match_expression] = STATE(438), - [sym_select_expression] = STATE(438), - [sym_lock_expression] = STATE(438), - [sym_unsafe_expression] = STATE(438), - [sym_sql_expression] = STATE(438), - [sym_c_string_literal] = STATE(496), - [sym_raw_string_literal] = STATE(496), - [sym_interpreted_string_literal] = STATE(496), - [sym_visibility_modifiers] = STATE(3408), - [sym_mutability_modifiers] = STATE(781), - [sym_mutable_expression] = STATE(3275), - [sym_expression_list] = STATE(3317), - [sym_plain_type] = STATE(4049), - [sym__plain_type_without_special] = STATE(2302), - [sym_anon_struct_type] = STATE(2303), - [sym_multi_return_type] = STATE(2302), - [sym_result_type] = STATE(2302), - [sym_option_type] = STATE(2302), - [sym_qualified_type] = STATE(3541), - [sym_fixed_array_type] = STATE(2303), - [sym_array_type] = STATE(2303), - [sym_pointer_type] = STATE(2303), - [sym_wrong_pointer_type] = STATE(2303), - [sym_map_type] = STATE(2303), - [sym_channel_type] = STATE(2303), - [sym_shared_type] = STATE(2303), - [sym_thread_type] = STATE(2303), - [sym_atomic_type] = STATE(2303), - [sym_generic_type] = STATE(2303), - [sym_function_type] = STATE(2303), - [sym__statement] = STATE(1483), - [sym_simple_statement] = STATE(1493), - [sym_assert_statement] = STATE(1493), - [sym_append_statement] = STATE(1493), - [sym_send_statement] = STATE(1493), - [sym_var_declaration] = STATE(1487), - [sym_assignment_statement] = STATE(1487), - [sym_block] = STATE(1493), - [sym_defer_statement] = STATE(1493), - [sym_goto_statement] = STATE(1493), - [sym_break_statement] = STATE(1493), - [sym_continue_statement] = STATE(1493), - [sym_return_statement] = STATE(1493), - [sym_label_definition] = STATE(64), - [sym_labeled_statement] = STATE(1493), - [sym_compile_time_for_statement] = STATE(1493), - [sym_for_statement] = STATE(1493), - [sym_hash_statement] = STATE(1493), - [sym_asm_statement] = STATE(1493), - [sym_attributes] = STATE(3368), - [sym_attribute] = STATE(3324), - [aux_sym_source_file_repeat1] = STATE(11), - [aux_sym_attributes_repeat1] = STATE(3329), + [6] = { + [sym_line_comment] = STATE(6), + [sym_block_comment] = STATE(6), + [sym_const_declaration] = STATE(1496), + [sym_global_var_declaration] = STATE(1496), + [sym_type_declaration] = STATE(1496), + [sym_function_declaration] = STATE(1496), + [sym_static_method_declaration] = STATE(1496), + [sym_struct_declaration] = STATE(1496), + [sym_enum_declaration] = STATE(1496), + [sym_interface_declaration] = STATE(1496), + [sym__expression] = STATE(216), + [sym__expression_without_blocks] = STATE(401), + [sym__expression_with_blocks] = STATE(401), + [sym_strictly_expression_list] = STATE(1497), + [sym_inc_expression] = STATE(399), + [sym_dec_expression] = STATE(399), + [sym_or_block_expression] = STATE(399), + [sym_option_propagation_expression] = STATE(399), + [sym_result_propagation_expression] = STATE(399), + [sym_anon_struct_value_expression] = STATE(395), + [sym_go_expression] = STATE(399), + [sym_spawn_expression] = STATE(399), + [sym_parenthesized_expression] = STATE(399), + [sym_call_expression] = STATE(399), + [sym_type_initializer] = STATE(395), + [sym_function_literal] = STATE(399), + [sym_reference_expression] = STATE(393), + [sym_type_reference_expression] = STATE(3460), + [sym_unary_expression] = STATE(399), + [sym_receive_expression] = STATE(399), + [sym_binary_expression] = STATE(399), + [sym_as_type_cast_expression] = STATE(399), + [sym__max_group] = STATE(399), + [sym_literal] = STATE(455), + [sym_map_init_expression] = STATE(395), + [sym_array_creation] = STATE(399), + [sym_fixed_array_creation] = STATE(399), + [sym_selector_expression] = STATE(399), + [sym_index_expression] = STATE(399), + [sym_slice_expression] = STATE(399), + [sym_if_expression] = STATE(395), + [sym_compile_time_if_expression] = STATE(395), + [sym_is_expression] = STATE(399), + [sym_in_expression] = STATE(399), + [sym_enum_fetch] = STATE(399), + [sym_match_expression] = STATE(395), + [sym_select_expression] = STATE(395), + [sym_lock_expression] = STATE(395), + [sym_unsafe_expression] = STATE(395), + [sym_sql_expression] = STATE(395), + [sym_c_string_literal] = STATE(479), + [sym_raw_string_literal] = STATE(479), + [sym_interpreted_string_literal] = STATE(479), + [sym_visibility_modifiers] = STATE(3431), + [sym_mutability_modifiers] = STATE(800), + [sym_mutable_expression] = STATE(3271), + [sym_expression_list] = STATE(3330), + [sym_plain_type] = STATE(4069), + [sym__plain_type_without_special] = STATE(2360), + [sym_anon_struct_type] = STATE(2362), + [sym_multi_return_type] = STATE(2360), + [sym_result_type] = STATE(2360), + [sym_option_type] = STATE(2360), + [sym_qualified_type] = STATE(3460), + [sym_fixed_array_type] = STATE(2362), + [sym_array_type] = STATE(2362), + [sym_pointer_type] = STATE(2362), + [sym_wrong_pointer_type] = STATE(2362), + [sym_map_type] = STATE(2362), + [sym_channel_type] = STATE(2362), + [sym_shared_type] = STATE(2362), + [sym_thread_type] = STATE(2362), + [sym_atomic_type] = STATE(2362), + [sym_generic_type] = STATE(2362), + [sym_function_type] = STATE(2362), + [sym__statement] = STATE(1496), + [sym_simple_statement] = STATE(1532), + [sym_assert_statement] = STATE(1532), + [sym_append_statement] = STATE(1532), + [sym_send_statement] = STATE(1532), + [sym_var_declaration] = STATE(1497), + [sym_assignment_statement] = STATE(1497), + [sym_block] = STATE(1532), + [sym_defer_statement] = STATE(1532), + [sym_goto_statement] = STATE(1532), + [sym_break_statement] = STATE(1532), + [sym_continue_statement] = STATE(1532), + [sym_return_statement] = STATE(1532), + [sym_label_definition] = STATE(65), + [sym_labeled_statement] = STATE(1532), + [sym_compile_time_for_statement] = STATE(1532), + [sym_for_statement] = STATE(1532), + [sym_hash_statement] = STATE(1532), + [sym_asm_statement] = STATE(1532), + [sym_attributes] = STATE(3374), + [sym_attribute] = STATE(3319), + [aux_sym_source_file_repeat1] = STATE(12), + [aux_sym_attributes_repeat1] = STATE(3331), [ts_builtin_sym_end] = ACTIONS(131), [sym_identifier] = ACTIONS(9), [anon_sym_SLASH_SLASH] = ACTIONS(3), @@ -20237,106 +20085,106 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym___r_double_quote] = ACTIONS(123), [sym___r_single_quote] = ACTIONS(125), }, - [8] = { - [sym_line_comment] = STATE(8), - [sym_block_comment] = STATE(8), - [sym_const_declaration] = STATE(1483), - [sym_global_var_declaration] = STATE(1483), - [sym_type_declaration] = STATE(1483), - [sym_function_declaration] = STATE(1483), - [sym_static_method_declaration] = STATE(1483), - [sym_struct_declaration] = STATE(1483), - [sym_enum_declaration] = STATE(1483), - [sym_interface_declaration] = STATE(1483), - [sym__expression] = STATE(213), - [sym__expression_without_blocks] = STATE(442), - [sym__expression_with_blocks] = STATE(442), - [sym_strictly_expression_list] = STATE(1487), - [sym_inc_expression] = STATE(439), - [sym_dec_expression] = STATE(439), - [sym_or_block_expression] = STATE(439), - [sym_option_propagation_expression] = STATE(439), - [sym_result_propagation_expression] = STATE(439), - [sym_anon_struct_value_expression] = STATE(438), - [sym_go_expression] = STATE(439), - [sym_spawn_expression] = STATE(439), - [sym_parenthesized_expression] = STATE(439), - [sym_call_expression] = STATE(439), - [sym_type_initializer] = STATE(438), - [sym_function_literal] = STATE(439), - [sym_reference_expression] = STATE(437), - [sym_type_reference_expression] = STATE(3541), - [sym_unary_expression] = STATE(439), - [sym_receive_expression] = STATE(439), - [sym_binary_expression] = STATE(439), - [sym_as_type_cast_expression] = STATE(439), - [sym__max_group] = STATE(439), - [sym_literal] = STATE(495), - [sym_map_init_expression] = STATE(438), - [sym_array_creation] = STATE(439), - [sym_fixed_array_creation] = STATE(439), - [sym_selector_expression] = STATE(439), - [sym_index_expression] = STATE(439), - [sym_slice_expression] = STATE(439), - [sym_if_expression] = STATE(438), - [sym_compile_time_if_expression] = STATE(438), - [sym_is_expression] = STATE(439), - [sym_in_expression] = STATE(439), - [sym_enum_fetch] = STATE(439), - [sym_match_expression] = STATE(438), - [sym_select_expression] = STATE(438), - [sym_lock_expression] = STATE(438), - [sym_unsafe_expression] = STATE(438), - [sym_sql_expression] = STATE(438), - [sym_c_string_literal] = STATE(496), - [sym_raw_string_literal] = STATE(496), - [sym_interpreted_string_literal] = STATE(496), - [sym_visibility_modifiers] = STATE(3408), - [sym_mutability_modifiers] = STATE(781), - [sym_mutable_expression] = STATE(3275), - [sym_expression_list] = STATE(3317), - [sym_plain_type] = STATE(4049), - [sym__plain_type_without_special] = STATE(2302), - [sym_anon_struct_type] = STATE(2303), - [sym_multi_return_type] = STATE(2302), - [sym_result_type] = STATE(2302), - [sym_option_type] = STATE(2302), - [sym_qualified_type] = STATE(3541), - [sym_fixed_array_type] = STATE(2303), - [sym_array_type] = STATE(2303), - [sym_pointer_type] = STATE(2303), - [sym_wrong_pointer_type] = STATE(2303), - [sym_map_type] = STATE(2303), - [sym_channel_type] = STATE(2303), - [sym_shared_type] = STATE(2303), - [sym_thread_type] = STATE(2303), - [sym_atomic_type] = STATE(2303), - [sym_generic_type] = STATE(2303), - [sym_function_type] = STATE(2303), - [sym__statement] = STATE(1483), - [sym_simple_statement] = STATE(1493), - [sym_assert_statement] = STATE(1493), - [sym_append_statement] = STATE(1493), - [sym_send_statement] = STATE(1493), - [sym_var_declaration] = STATE(1487), - [sym_assignment_statement] = STATE(1487), - [sym_block] = STATE(1493), - [sym_defer_statement] = STATE(1493), - [sym_goto_statement] = STATE(1493), - [sym_break_statement] = STATE(1493), - [sym_continue_statement] = STATE(1493), - [sym_return_statement] = STATE(1493), - [sym_label_definition] = STATE(64), - [sym_labeled_statement] = STATE(1493), - [sym_compile_time_for_statement] = STATE(1493), - [sym_for_statement] = STATE(1493), - [sym_hash_statement] = STATE(1493), - [sym_asm_statement] = STATE(1493), - [sym_attributes] = STATE(3368), - [sym_attribute] = STATE(3324), - [aux_sym_source_file_repeat1] = STATE(6), - [aux_sym_attributes_repeat1] = STATE(3329), - [ts_builtin_sym_end] = ACTIONS(127), + [7] = { + [sym_line_comment] = STATE(7), + [sym_block_comment] = STATE(7), + [sym_const_declaration] = STATE(1496), + [sym_global_var_declaration] = STATE(1496), + [sym_type_declaration] = STATE(1496), + [sym_function_declaration] = STATE(1496), + [sym_static_method_declaration] = STATE(1496), + [sym_struct_declaration] = STATE(1496), + [sym_enum_declaration] = STATE(1496), + [sym_interface_declaration] = STATE(1496), + [sym__expression] = STATE(216), + [sym__expression_without_blocks] = STATE(401), + [sym__expression_with_blocks] = STATE(401), + [sym_strictly_expression_list] = STATE(1497), + [sym_inc_expression] = STATE(399), + [sym_dec_expression] = STATE(399), + [sym_or_block_expression] = STATE(399), + [sym_option_propagation_expression] = STATE(399), + [sym_result_propagation_expression] = STATE(399), + [sym_anon_struct_value_expression] = STATE(395), + [sym_go_expression] = STATE(399), + [sym_spawn_expression] = STATE(399), + [sym_parenthesized_expression] = STATE(399), + [sym_call_expression] = STATE(399), + [sym_type_initializer] = STATE(395), + [sym_function_literal] = STATE(399), + [sym_reference_expression] = STATE(393), + [sym_type_reference_expression] = STATE(3460), + [sym_unary_expression] = STATE(399), + [sym_receive_expression] = STATE(399), + [sym_binary_expression] = STATE(399), + [sym_as_type_cast_expression] = STATE(399), + [sym__max_group] = STATE(399), + [sym_literal] = STATE(455), + [sym_map_init_expression] = STATE(395), + [sym_array_creation] = STATE(399), + [sym_fixed_array_creation] = STATE(399), + [sym_selector_expression] = STATE(399), + [sym_index_expression] = STATE(399), + [sym_slice_expression] = STATE(399), + [sym_if_expression] = STATE(395), + [sym_compile_time_if_expression] = STATE(395), + [sym_is_expression] = STATE(399), + [sym_in_expression] = STATE(399), + [sym_enum_fetch] = STATE(399), + [sym_match_expression] = STATE(395), + [sym_select_expression] = STATE(395), + [sym_lock_expression] = STATE(395), + [sym_unsafe_expression] = STATE(395), + [sym_sql_expression] = STATE(395), + [sym_c_string_literal] = STATE(479), + [sym_raw_string_literal] = STATE(479), + [sym_interpreted_string_literal] = STATE(479), + [sym_visibility_modifiers] = STATE(3431), + [sym_mutability_modifiers] = STATE(800), + [sym_mutable_expression] = STATE(3271), + [sym_expression_list] = STATE(3330), + [sym_plain_type] = STATE(4069), + [sym__plain_type_without_special] = STATE(2360), + [sym_anon_struct_type] = STATE(2362), + [sym_multi_return_type] = STATE(2360), + [sym_result_type] = STATE(2360), + [sym_option_type] = STATE(2360), + [sym_qualified_type] = STATE(3460), + [sym_fixed_array_type] = STATE(2362), + [sym_array_type] = STATE(2362), + [sym_pointer_type] = STATE(2362), + [sym_wrong_pointer_type] = STATE(2362), + [sym_map_type] = STATE(2362), + [sym_channel_type] = STATE(2362), + [sym_shared_type] = STATE(2362), + [sym_thread_type] = STATE(2362), + [sym_atomic_type] = STATE(2362), + [sym_generic_type] = STATE(2362), + [sym_function_type] = STATE(2362), + [sym__statement] = STATE(1496), + [sym_simple_statement] = STATE(1532), + [sym_assert_statement] = STATE(1532), + [sym_append_statement] = STATE(1532), + [sym_send_statement] = STATE(1532), + [sym_var_declaration] = STATE(1497), + [sym_assignment_statement] = STATE(1497), + [sym_block] = STATE(1532), + [sym_defer_statement] = STATE(1532), + [sym_goto_statement] = STATE(1532), + [sym_break_statement] = STATE(1532), + [sym_continue_statement] = STATE(1532), + [sym_return_statement] = STATE(1532), + [sym_label_definition] = STATE(65), + [sym_labeled_statement] = STATE(1532), + [sym_compile_time_for_statement] = STATE(1532), + [sym_for_statement] = STATE(1532), + [sym_hash_statement] = STATE(1532), + [sym_asm_statement] = STATE(1532), + [sym_attributes] = STATE(3374), + [sym_attribute] = STATE(3319), + [aux_sym_source_file_repeat1] = STATE(8), + [aux_sym_attributes_repeat1] = STATE(3331), + [ts_builtin_sym_end] = ACTIONS(131), [sym_identifier] = ACTIONS(9), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), @@ -20405,106 +20253,274 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym___r_double_quote] = ACTIONS(123), [sym___r_single_quote] = ACTIONS(125), }, + [8] = { + [sym_line_comment] = STATE(8), + [sym_block_comment] = STATE(8), + [sym_const_declaration] = STATE(1496), + [sym_global_var_declaration] = STATE(1496), + [sym_type_declaration] = STATE(1496), + [sym_function_declaration] = STATE(1496), + [sym_static_method_declaration] = STATE(1496), + [sym_struct_declaration] = STATE(1496), + [sym_enum_declaration] = STATE(1496), + [sym_interface_declaration] = STATE(1496), + [sym__expression] = STATE(216), + [sym__expression_without_blocks] = STATE(401), + [sym__expression_with_blocks] = STATE(401), + [sym_strictly_expression_list] = STATE(1497), + [sym_inc_expression] = STATE(399), + [sym_dec_expression] = STATE(399), + [sym_or_block_expression] = STATE(399), + [sym_option_propagation_expression] = STATE(399), + [sym_result_propagation_expression] = STATE(399), + [sym_anon_struct_value_expression] = STATE(395), + [sym_go_expression] = STATE(399), + [sym_spawn_expression] = STATE(399), + [sym_parenthesized_expression] = STATE(399), + [sym_call_expression] = STATE(399), + [sym_type_initializer] = STATE(395), + [sym_function_literal] = STATE(399), + [sym_reference_expression] = STATE(393), + [sym_type_reference_expression] = STATE(3460), + [sym_unary_expression] = STATE(399), + [sym_receive_expression] = STATE(399), + [sym_binary_expression] = STATE(399), + [sym_as_type_cast_expression] = STATE(399), + [sym__max_group] = STATE(399), + [sym_literal] = STATE(455), + [sym_map_init_expression] = STATE(395), + [sym_array_creation] = STATE(399), + [sym_fixed_array_creation] = STATE(399), + [sym_selector_expression] = STATE(399), + [sym_index_expression] = STATE(399), + [sym_slice_expression] = STATE(399), + [sym_if_expression] = STATE(395), + [sym_compile_time_if_expression] = STATE(395), + [sym_is_expression] = STATE(399), + [sym_in_expression] = STATE(399), + [sym_enum_fetch] = STATE(399), + [sym_match_expression] = STATE(395), + [sym_select_expression] = STATE(395), + [sym_lock_expression] = STATE(395), + [sym_unsafe_expression] = STATE(395), + [sym_sql_expression] = STATE(395), + [sym_c_string_literal] = STATE(479), + [sym_raw_string_literal] = STATE(479), + [sym_interpreted_string_literal] = STATE(479), + [sym_visibility_modifiers] = STATE(3431), + [sym_mutability_modifiers] = STATE(800), + [sym_mutable_expression] = STATE(3271), + [sym_expression_list] = STATE(3330), + [sym_plain_type] = STATE(4069), + [sym__plain_type_without_special] = STATE(2360), + [sym_anon_struct_type] = STATE(2362), + [sym_multi_return_type] = STATE(2360), + [sym_result_type] = STATE(2360), + [sym_option_type] = STATE(2360), + [sym_qualified_type] = STATE(3460), + [sym_fixed_array_type] = STATE(2362), + [sym_array_type] = STATE(2362), + [sym_pointer_type] = STATE(2362), + [sym_wrong_pointer_type] = STATE(2362), + [sym_map_type] = STATE(2362), + [sym_channel_type] = STATE(2362), + [sym_shared_type] = STATE(2362), + [sym_thread_type] = STATE(2362), + [sym_atomic_type] = STATE(2362), + [sym_generic_type] = STATE(2362), + [sym_function_type] = STATE(2362), + [sym__statement] = STATE(1496), + [sym_simple_statement] = STATE(1532), + [sym_assert_statement] = STATE(1532), + [sym_append_statement] = STATE(1532), + [sym_send_statement] = STATE(1532), + [sym_var_declaration] = STATE(1497), + [sym_assignment_statement] = STATE(1497), + [sym_block] = STATE(1532), + [sym_defer_statement] = STATE(1532), + [sym_goto_statement] = STATE(1532), + [sym_break_statement] = STATE(1532), + [sym_continue_statement] = STATE(1532), + [sym_return_statement] = STATE(1532), + [sym_label_definition] = STATE(65), + [sym_labeled_statement] = STATE(1532), + [sym_compile_time_for_statement] = STATE(1532), + [sym_for_statement] = STATE(1532), + [sym_hash_statement] = STATE(1532), + [sym_asm_statement] = STATE(1532), + [sym_attributes] = STATE(3374), + [sym_attribute] = STATE(3319), + [aux_sym_source_file_repeat1] = STATE(8), + [aux_sym_attributes_repeat1] = STATE(3331), + [ts_builtin_sym_end] = ACTIONS(135), + [sym_identifier] = ACTIONS(137), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(140), + [anon_sym_LBRACE] = ACTIONS(143), + [anon_sym_const] = ACTIONS(146), + [anon_sym_LPAREN] = ACTIONS(149), + [anon_sym___global] = ACTIONS(152), + [anon_sym_type] = ACTIONS(155), + [anon_sym_fn] = ACTIONS(158), + [anon_sym_PLUS] = ACTIONS(161), + [anon_sym_DASH] = ACTIONS(161), + [anon_sym_STAR] = ACTIONS(164), + [anon_sym_struct] = ACTIONS(167), + [anon_sym_union] = ACTIONS(170), + [anon_sym_pub] = ACTIONS(173), + [anon_sym_mut] = ACTIONS(176), + [anon_sym_enum] = ACTIONS(179), + [anon_sym_interface] = ACTIONS(182), + [anon_sym_QMARK] = ACTIONS(185), + [anon_sym_BANG] = ACTIONS(188), + [anon_sym_go] = ACTIONS(191), + [anon_sym_spawn] = ACTIONS(194), + [anon_sym_json_DOTdecode] = ACTIONS(197), + [anon_sym_LBRACK2] = ACTIONS(200), + [anon_sym_TILDE] = ACTIONS(161), + [anon_sym_CARET] = ACTIONS(161), + [anon_sym_AMP] = ACTIONS(203), + [anon_sym_LT_DASH] = ACTIONS(206), + [sym_none] = ACTIONS(209), + [sym_true] = ACTIONS(209), + [sym_false] = ACTIONS(209), + [sym_nil] = ACTIONS(209), + [anon_sym_if] = ACTIONS(212), + [anon_sym_DOLLARif] = ACTIONS(215), + [anon_sym_match] = ACTIONS(218), + [anon_sym_select] = ACTIONS(221), + [anon_sym_lock] = ACTIONS(224), + [anon_sym_rlock] = ACTIONS(224), + [anon_sym_unsafe] = ACTIONS(227), + [anon_sym_sql] = ACTIONS(230), + [sym_int_literal] = ACTIONS(209), + [sym_float_literal] = ACTIONS(233), + [sym_rune_literal] = ACTIONS(233), + [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), + }, [9] = { [sym_line_comment] = STATE(9), [sym_block_comment] = STATE(9), - [sym_const_declaration] = STATE(1483), - [sym_global_var_declaration] = STATE(1483), - [sym_type_declaration] = STATE(1483), - [sym_function_declaration] = STATE(1483), - [sym_static_method_declaration] = STATE(1483), - [sym_struct_declaration] = STATE(1483), - [sym_enum_declaration] = STATE(1483), - [sym_interface_declaration] = STATE(1483), - [sym__expression] = STATE(213), - [sym__expression_without_blocks] = STATE(442), - [sym__expression_with_blocks] = STATE(442), - [sym_strictly_expression_list] = STATE(1487), - [sym_inc_expression] = STATE(439), - [sym_dec_expression] = STATE(439), - [sym_or_block_expression] = STATE(439), - [sym_option_propagation_expression] = STATE(439), - [sym_result_propagation_expression] = STATE(439), - [sym_anon_struct_value_expression] = STATE(438), - [sym_go_expression] = STATE(439), - [sym_spawn_expression] = STATE(439), - [sym_parenthesized_expression] = STATE(439), - [sym_call_expression] = STATE(439), - [sym_type_initializer] = STATE(438), - [sym_function_literal] = STATE(439), - [sym_reference_expression] = STATE(437), - [sym_type_reference_expression] = STATE(3541), - [sym_unary_expression] = STATE(439), - [sym_receive_expression] = STATE(439), - [sym_binary_expression] = STATE(439), - [sym_as_type_cast_expression] = STATE(439), - [sym__max_group] = STATE(439), - [sym_literal] = STATE(495), - [sym_map_init_expression] = STATE(438), - [sym_array_creation] = STATE(439), - [sym_fixed_array_creation] = STATE(439), - [sym_selector_expression] = STATE(439), - [sym_index_expression] = STATE(439), - [sym_slice_expression] = STATE(439), - [sym_if_expression] = STATE(438), - [sym_compile_time_if_expression] = STATE(438), - [sym_is_expression] = STATE(439), - [sym_in_expression] = STATE(439), - [sym_enum_fetch] = STATE(439), - [sym_match_expression] = STATE(438), - [sym_select_expression] = STATE(438), - [sym_lock_expression] = STATE(438), - [sym_unsafe_expression] = STATE(438), - [sym_sql_expression] = STATE(438), - [sym_c_string_literal] = STATE(496), - [sym_raw_string_literal] = STATE(496), - [sym_interpreted_string_literal] = STATE(496), - [sym_visibility_modifiers] = STATE(3408), - [sym_mutability_modifiers] = STATE(781), - [sym_mutable_expression] = STATE(3275), - [sym_expression_list] = STATE(3317), - [sym_plain_type] = STATE(4049), - [sym__plain_type_without_special] = STATE(2302), - [sym_anon_struct_type] = STATE(2303), - [sym_multi_return_type] = STATE(2302), - [sym_result_type] = STATE(2302), - [sym_option_type] = STATE(2302), - [sym_qualified_type] = STATE(3541), - [sym_fixed_array_type] = STATE(2303), - [sym_array_type] = STATE(2303), - [sym_pointer_type] = STATE(2303), - [sym_wrong_pointer_type] = STATE(2303), - [sym_map_type] = STATE(2303), - [sym_channel_type] = STATE(2303), - [sym_shared_type] = STATE(2303), - [sym_thread_type] = STATE(2303), - [sym_atomic_type] = STATE(2303), - [sym_generic_type] = STATE(2303), - [sym_function_type] = STATE(2303), - [sym__statement] = STATE(1483), - [sym_simple_statement] = STATE(1493), - [sym_assert_statement] = STATE(1493), - [sym_append_statement] = STATE(1493), - [sym_send_statement] = STATE(1493), - [sym_var_declaration] = STATE(1487), - [sym_assignment_statement] = STATE(1487), - [sym_block] = STATE(1493), - [sym_defer_statement] = STATE(1493), - [sym_goto_statement] = STATE(1493), - [sym_break_statement] = STATE(1493), - [sym_continue_statement] = STATE(1493), - [sym_return_statement] = STATE(1493), - [sym_label_definition] = STATE(64), - [sym_labeled_statement] = STATE(1493), - [sym_compile_time_for_statement] = STATE(1493), - [sym_for_statement] = STATE(1493), - [sym_hash_statement] = STATE(1493), - [sym_asm_statement] = STATE(1493), - [sym_attributes] = STATE(3368), - [sym_attribute] = STATE(3324), - [aux_sym_source_file_repeat1] = STATE(5), - [aux_sym_attributes_repeat1] = STATE(3329), - [ts_builtin_sym_end] = ACTIONS(303), + [sym_const_declaration] = STATE(1496), + [sym_global_var_declaration] = STATE(1496), + [sym_type_declaration] = STATE(1496), + [sym_function_declaration] = STATE(1496), + [sym_static_method_declaration] = STATE(1496), + [sym_struct_declaration] = STATE(1496), + [sym_enum_declaration] = STATE(1496), + [sym_interface_declaration] = STATE(1496), + [sym__expression] = STATE(216), + [sym__expression_without_blocks] = STATE(401), + [sym__expression_with_blocks] = STATE(401), + [sym_strictly_expression_list] = STATE(1497), + [sym_inc_expression] = STATE(399), + [sym_dec_expression] = STATE(399), + [sym_or_block_expression] = STATE(399), + [sym_option_propagation_expression] = STATE(399), + [sym_result_propagation_expression] = STATE(399), + [sym_anon_struct_value_expression] = STATE(395), + [sym_go_expression] = STATE(399), + [sym_spawn_expression] = STATE(399), + [sym_parenthesized_expression] = STATE(399), + [sym_call_expression] = STATE(399), + [sym_type_initializer] = STATE(395), + [sym_function_literal] = STATE(399), + [sym_reference_expression] = STATE(393), + [sym_type_reference_expression] = STATE(3460), + [sym_unary_expression] = STATE(399), + [sym_receive_expression] = STATE(399), + [sym_binary_expression] = STATE(399), + [sym_as_type_cast_expression] = STATE(399), + [sym__max_group] = STATE(399), + [sym_literal] = STATE(455), + [sym_map_init_expression] = STATE(395), + [sym_array_creation] = STATE(399), + [sym_fixed_array_creation] = STATE(399), + [sym_selector_expression] = STATE(399), + [sym_index_expression] = STATE(399), + [sym_slice_expression] = STATE(399), + [sym_if_expression] = STATE(395), + [sym_compile_time_if_expression] = STATE(395), + [sym_is_expression] = STATE(399), + [sym_in_expression] = STATE(399), + [sym_enum_fetch] = STATE(399), + [sym_match_expression] = STATE(395), + [sym_select_expression] = STATE(395), + [sym_lock_expression] = STATE(395), + [sym_unsafe_expression] = STATE(395), + [sym_sql_expression] = STATE(395), + [sym_c_string_literal] = STATE(479), + [sym_raw_string_literal] = STATE(479), + [sym_interpreted_string_literal] = STATE(479), + [sym_visibility_modifiers] = STATE(3431), + [sym_mutability_modifiers] = STATE(800), + [sym_mutable_expression] = STATE(3271), + [sym_expression_list] = STATE(3330), + [sym_plain_type] = STATE(4069), + [sym__plain_type_without_special] = STATE(2360), + [sym_anon_struct_type] = STATE(2362), + [sym_multi_return_type] = STATE(2360), + [sym_result_type] = STATE(2360), + [sym_option_type] = STATE(2360), + [sym_qualified_type] = STATE(3460), + [sym_fixed_array_type] = STATE(2362), + [sym_array_type] = STATE(2362), + [sym_pointer_type] = STATE(2362), + [sym_wrong_pointer_type] = STATE(2362), + [sym_map_type] = STATE(2362), + [sym_channel_type] = STATE(2362), + [sym_shared_type] = STATE(2362), + [sym_thread_type] = STATE(2362), + [sym_atomic_type] = STATE(2362), + [sym_generic_type] = STATE(2362), + [sym_function_type] = STATE(2362), + [sym__statement] = STATE(1496), + [sym_simple_statement] = STATE(1532), + [sym_assert_statement] = STATE(1532), + [sym_append_statement] = STATE(1532), + [sym_send_statement] = STATE(1532), + [sym_var_declaration] = STATE(1497), + [sym_assignment_statement] = STATE(1497), + [sym_block] = STATE(1532), + [sym_defer_statement] = STATE(1532), + [sym_goto_statement] = STATE(1532), + [sym_break_statement] = STATE(1532), + [sym_continue_statement] = STATE(1532), + [sym_return_statement] = STATE(1532), + [sym_label_definition] = STATE(65), + [sym_labeled_statement] = STATE(1532), + [sym_compile_time_for_statement] = STATE(1532), + [sym_for_statement] = STATE(1532), + [sym_hash_statement] = STATE(1532), + [sym_asm_statement] = STATE(1532), + [sym_attributes] = STATE(3374), + [sym_attribute] = STATE(3319), + [aux_sym_source_file_repeat1] = STATE(8), + [aux_sym_attributes_repeat1] = STATE(3331), + [ts_builtin_sym_end] = ACTIONS(127), [sym_identifier] = ACTIONS(9), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), @@ -20576,103 +20592,103 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [10] = { [sym_line_comment] = STATE(10), [sym_block_comment] = STATE(10), - [sym_const_declaration] = STATE(1483), - [sym_global_var_declaration] = STATE(1483), - [sym_type_declaration] = STATE(1483), - [sym_function_declaration] = STATE(1483), - [sym_static_method_declaration] = STATE(1483), - [sym_struct_declaration] = STATE(1483), - [sym_enum_declaration] = STATE(1483), - [sym_interface_declaration] = STATE(1483), - [sym__expression] = STATE(213), - [sym__expression_without_blocks] = STATE(442), - [sym__expression_with_blocks] = STATE(442), - [sym_strictly_expression_list] = STATE(1487), - [sym_inc_expression] = STATE(439), - [sym_dec_expression] = STATE(439), - [sym_or_block_expression] = STATE(439), - [sym_option_propagation_expression] = STATE(439), - [sym_result_propagation_expression] = STATE(439), - [sym_anon_struct_value_expression] = STATE(438), - [sym_go_expression] = STATE(439), - [sym_spawn_expression] = STATE(439), - [sym_parenthesized_expression] = STATE(439), - [sym_call_expression] = STATE(439), - [sym_type_initializer] = STATE(438), - [sym_function_literal] = STATE(439), - [sym_reference_expression] = STATE(437), - [sym_type_reference_expression] = STATE(3541), - [sym_unary_expression] = STATE(439), - [sym_receive_expression] = STATE(439), - [sym_binary_expression] = STATE(439), - [sym_as_type_cast_expression] = STATE(439), - [sym__max_group] = STATE(439), - [sym_literal] = STATE(495), - [sym_map_init_expression] = STATE(438), - [sym_array_creation] = STATE(439), - [sym_fixed_array_creation] = STATE(439), - [sym_selector_expression] = STATE(439), - [sym_index_expression] = STATE(439), - [sym_slice_expression] = STATE(439), - [sym_if_expression] = STATE(438), - [sym_compile_time_if_expression] = STATE(438), - [sym_is_expression] = STATE(439), - [sym_in_expression] = STATE(439), - [sym_enum_fetch] = STATE(439), - [sym_match_expression] = STATE(438), - [sym_select_expression] = STATE(438), - [sym_lock_expression] = STATE(438), - [sym_unsafe_expression] = STATE(438), - [sym_sql_expression] = STATE(438), - [sym_c_string_literal] = STATE(496), - [sym_raw_string_literal] = STATE(496), - [sym_interpreted_string_literal] = STATE(496), - [sym_visibility_modifiers] = STATE(3408), - [sym_mutability_modifiers] = STATE(781), - [sym_mutable_expression] = STATE(3275), - [sym_expression_list] = STATE(3317), - [sym_plain_type] = STATE(4049), - [sym__plain_type_without_special] = STATE(2302), - [sym_anon_struct_type] = STATE(2303), - [sym_multi_return_type] = STATE(2302), - [sym_result_type] = STATE(2302), - [sym_option_type] = STATE(2302), - [sym_qualified_type] = STATE(3541), - [sym_fixed_array_type] = STATE(2303), - [sym_array_type] = STATE(2303), - [sym_pointer_type] = STATE(2303), - [sym_wrong_pointer_type] = STATE(2303), - [sym_map_type] = STATE(2303), - [sym_channel_type] = STATE(2303), - [sym_shared_type] = STATE(2303), - [sym_thread_type] = STATE(2303), - [sym_atomic_type] = STATE(2303), - [sym_generic_type] = STATE(2303), - [sym_function_type] = STATE(2303), - [sym__statement] = STATE(1483), - [sym_simple_statement] = STATE(1493), - [sym_assert_statement] = STATE(1493), - [sym_append_statement] = STATE(1493), - [sym_send_statement] = STATE(1493), - [sym_var_declaration] = STATE(1487), - [sym_assignment_statement] = STATE(1487), - [sym_block] = STATE(1493), - [sym_defer_statement] = STATE(1493), - [sym_goto_statement] = STATE(1493), - [sym_break_statement] = STATE(1493), - [sym_continue_statement] = STATE(1493), - [sym_return_statement] = STATE(1493), - [sym_label_definition] = STATE(64), - [sym_labeled_statement] = STATE(1493), - [sym_compile_time_for_statement] = STATE(1493), - [sym_for_statement] = STATE(1493), - [sym_hash_statement] = STATE(1493), - [sym_asm_statement] = STATE(1493), - [sym_attributes] = STATE(3368), - [sym_attribute] = STATE(3324), - [aux_sym_source_file_repeat1] = STATE(5), - [aux_sym_attributes_repeat1] = STATE(3329), - [ts_builtin_sym_end] = ACTIONS(127), + [sym_const_declaration] = STATE(1496), + [sym_global_var_declaration] = STATE(1496), + [sym_type_declaration] = STATE(1496), + [sym_function_declaration] = STATE(1496), + [sym_static_method_declaration] = STATE(1496), + [sym_struct_declaration] = STATE(1496), + [sym_enum_declaration] = STATE(1496), + [sym_interface_declaration] = STATE(1496), + [sym__expression] = STATE(216), + [sym__expression_without_blocks] = STATE(401), + [sym__expression_with_blocks] = STATE(401), + [sym_strictly_expression_list] = STATE(1497), + [sym_inc_expression] = STATE(399), + [sym_dec_expression] = STATE(399), + [sym_or_block_expression] = STATE(399), + [sym_option_propagation_expression] = STATE(399), + [sym_result_propagation_expression] = STATE(399), + [sym_anon_struct_value_expression] = STATE(395), + [sym_go_expression] = STATE(399), + [sym_spawn_expression] = STATE(399), + [sym_parenthesized_expression] = STATE(399), + [sym_call_expression] = STATE(399), + [sym_type_initializer] = STATE(395), + [sym_function_literal] = STATE(399), + [sym_reference_expression] = STATE(393), + [sym_type_reference_expression] = STATE(3460), + [sym_unary_expression] = STATE(399), + [sym_receive_expression] = STATE(399), + [sym_binary_expression] = STATE(399), + [sym_as_type_cast_expression] = STATE(399), + [sym__max_group] = STATE(399), + [sym_literal] = STATE(455), + [sym_map_init_expression] = STATE(395), + [sym_array_creation] = STATE(399), + [sym_fixed_array_creation] = STATE(399), + [sym_selector_expression] = STATE(399), + [sym_index_expression] = STATE(399), + [sym_slice_expression] = STATE(399), + [sym_if_expression] = STATE(395), + [sym_compile_time_if_expression] = STATE(395), + [sym_is_expression] = STATE(399), + [sym_in_expression] = STATE(399), + [sym_enum_fetch] = STATE(399), + [sym_match_expression] = STATE(395), + [sym_select_expression] = STATE(395), + [sym_lock_expression] = STATE(395), + [sym_unsafe_expression] = STATE(395), + [sym_sql_expression] = STATE(395), + [sym_c_string_literal] = STATE(479), + [sym_raw_string_literal] = STATE(479), + [sym_interpreted_string_literal] = STATE(479), + [sym_visibility_modifiers] = STATE(3431), + [sym_mutability_modifiers] = STATE(800), + [sym_mutable_expression] = STATE(3271), + [sym_expression_list] = STATE(3330), + [sym_plain_type] = STATE(4069), + [sym__plain_type_without_special] = STATE(2360), + [sym_anon_struct_type] = STATE(2362), + [sym_multi_return_type] = STATE(2360), + [sym_result_type] = STATE(2360), + [sym_option_type] = STATE(2360), + [sym_qualified_type] = STATE(3460), + [sym_fixed_array_type] = STATE(2362), + [sym_array_type] = STATE(2362), + [sym_pointer_type] = STATE(2362), + [sym_wrong_pointer_type] = STATE(2362), + [sym_map_type] = STATE(2362), + [sym_channel_type] = STATE(2362), + [sym_shared_type] = STATE(2362), + [sym_thread_type] = STATE(2362), + [sym_atomic_type] = STATE(2362), + [sym_generic_type] = STATE(2362), + [sym_function_type] = STATE(2362), + [sym__statement] = STATE(1496), + [sym_simple_statement] = STATE(1532), + [sym_assert_statement] = STATE(1532), + [sym_append_statement] = STATE(1532), + [sym_send_statement] = STATE(1532), + [sym_var_declaration] = STATE(1497), + [sym_assignment_statement] = STATE(1497), + [sym_block] = STATE(1532), + [sym_defer_statement] = STATE(1532), + [sym_goto_statement] = STATE(1532), + [sym_break_statement] = STATE(1532), + [sym_continue_statement] = STATE(1532), + [sym_return_statement] = STATE(1532), + [sym_label_definition] = STATE(65), + [sym_labeled_statement] = STATE(1532), + [sym_compile_time_for_statement] = STATE(1532), + [sym_for_statement] = STATE(1532), + [sym_hash_statement] = STATE(1532), + [sym_asm_statement] = STATE(1532), + [sym_attributes] = STATE(3374), + [sym_attribute] = STATE(3319), + [aux_sym_source_file_repeat1] = STATE(8), + [aux_sym_attributes_repeat1] = STATE(3331), + [ts_builtin_sym_end] = ACTIONS(305), [sym_identifier] = ACTIONS(9), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), @@ -20744,103 +20760,103 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [11] = { [sym_line_comment] = STATE(11), [sym_block_comment] = STATE(11), - [sym_const_declaration] = STATE(1483), - [sym_global_var_declaration] = STATE(1483), - [sym_type_declaration] = STATE(1483), - [sym_function_declaration] = STATE(1483), - [sym_static_method_declaration] = STATE(1483), - [sym_struct_declaration] = STATE(1483), - [sym_enum_declaration] = STATE(1483), - [sym_interface_declaration] = STATE(1483), - [sym__expression] = STATE(213), - [sym__expression_without_blocks] = STATE(442), - [sym__expression_with_blocks] = STATE(442), - [sym_strictly_expression_list] = STATE(1487), - [sym_inc_expression] = STATE(439), - [sym_dec_expression] = STATE(439), - [sym_or_block_expression] = STATE(439), - [sym_option_propagation_expression] = STATE(439), - [sym_result_propagation_expression] = STATE(439), - [sym_anon_struct_value_expression] = STATE(438), - [sym_go_expression] = STATE(439), - [sym_spawn_expression] = STATE(439), - [sym_parenthesized_expression] = STATE(439), - [sym_call_expression] = STATE(439), - [sym_type_initializer] = STATE(438), - [sym_function_literal] = STATE(439), - [sym_reference_expression] = STATE(437), - [sym_type_reference_expression] = STATE(3541), - [sym_unary_expression] = STATE(439), - [sym_receive_expression] = STATE(439), - [sym_binary_expression] = STATE(439), - [sym_as_type_cast_expression] = STATE(439), - [sym__max_group] = STATE(439), - [sym_literal] = STATE(495), - [sym_map_init_expression] = STATE(438), - [sym_array_creation] = STATE(439), - [sym_fixed_array_creation] = STATE(439), - [sym_selector_expression] = STATE(439), - [sym_index_expression] = STATE(439), - [sym_slice_expression] = STATE(439), - [sym_if_expression] = STATE(438), - [sym_compile_time_if_expression] = STATE(438), - [sym_is_expression] = STATE(439), - [sym_in_expression] = STATE(439), - [sym_enum_fetch] = STATE(439), - [sym_match_expression] = STATE(438), - [sym_select_expression] = STATE(438), - [sym_lock_expression] = STATE(438), - [sym_unsafe_expression] = STATE(438), - [sym_sql_expression] = STATE(438), - [sym_c_string_literal] = STATE(496), - [sym_raw_string_literal] = STATE(496), - [sym_interpreted_string_literal] = STATE(496), - [sym_visibility_modifiers] = STATE(3408), - [sym_mutability_modifiers] = STATE(781), - [sym_mutable_expression] = STATE(3275), - [sym_expression_list] = STATE(3317), - [sym_plain_type] = STATE(4049), - [sym__plain_type_without_special] = STATE(2302), - [sym_anon_struct_type] = STATE(2303), - [sym_multi_return_type] = STATE(2302), - [sym_result_type] = STATE(2302), - [sym_option_type] = STATE(2302), - [sym_qualified_type] = STATE(3541), - [sym_fixed_array_type] = STATE(2303), - [sym_array_type] = STATE(2303), - [sym_pointer_type] = STATE(2303), - [sym_wrong_pointer_type] = STATE(2303), - [sym_map_type] = STATE(2303), - [sym_channel_type] = STATE(2303), - [sym_shared_type] = STATE(2303), - [sym_thread_type] = STATE(2303), - [sym_atomic_type] = STATE(2303), - [sym_generic_type] = STATE(2303), - [sym_function_type] = STATE(2303), - [sym__statement] = STATE(1483), - [sym_simple_statement] = STATE(1493), - [sym_assert_statement] = STATE(1493), - [sym_append_statement] = STATE(1493), - [sym_send_statement] = STATE(1493), - [sym_var_declaration] = STATE(1487), - [sym_assignment_statement] = STATE(1487), - [sym_block] = STATE(1493), - [sym_defer_statement] = STATE(1493), - [sym_goto_statement] = STATE(1493), - [sym_break_statement] = STATE(1493), - [sym_continue_statement] = STATE(1493), - [sym_return_statement] = STATE(1493), - [sym_label_definition] = STATE(64), - [sym_labeled_statement] = STATE(1493), - [sym_compile_time_for_statement] = STATE(1493), - [sym_for_statement] = STATE(1493), - [sym_hash_statement] = STATE(1493), - [sym_asm_statement] = STATE(1493), - [sym_attributes] = STATE(3368), - [sym_attribute] = STATE(3324), - [aux_sym_source_file_repeat1] = STATE(5), - [aux_sym_attributes_repeat1] = STATE(3329), - [ts_builtin_sym_end] = ACTIONS(305), + [sym_const_declaration] = STATE(1496), + [sym_global_var_declaration] = STATE(1496), + [sym_type_declaration] = STATE(1496), + [sym_function_declaration] = STATE(1496), + [sym_static_method_declaration] = STATE(1496), + [sym_struct_declaration] = STATE(1496), + [sym_enum_declaration] = STATE(1496), + [sym_interface_declaration] = STATE(1496), + [sym__expression] = STATE(216), + [sym__expression_without_blocks] = STATE(401), + [sym__expression_with_blocks] = STATE(401), + [sym_strictly_expression_list] = STATE(1497), + [sym_inc_expression] = STATE(399), + [sym_dec_expression] = STATE(399), + [sym_or_block_expression] = STATE(399), + [sym_option_propagation_expression] = STATE(399), + [sym_result_propagation_expression] = STATE(399), + [sym_anon_struct_value_expression] = STATE(395), + [sym_go_expression] = STATE(399), + [sym_spawn_expression] = STATE(399), + [sym_parenthesized_expression] = STATE(399), + [sym_call_expression] = STATE(399), + [sym_type_initializer] = STATE(395), + [sym_function_literal] = STATE(399), + [sym_reference_expression] = STATE(393), + [sym_type_reference_expression] = STATE(3460), + [sym_unary_expression] = STATE(399), + [sym_receive_expression] = STATE(399), + [sym_binary_expression] = STATE(399), + [sym_as_type_cast_expression] = STATE(399), + [sym__max_group] = STATE(399), + [sym_literal] = STATE(455), + [sym_map_init_expression] = STATE(395), + [sym_array_creation] = STATE(399), + [sym_fixed_array_creation] = STATE(399), + [sym_selector_expression] = STATE(399), + [sym_index_expression] = STATE(399), + [sym_slice_expression] = STATE(399), + [sym_if_expression] = STATE(395), + [sym_compile_time_if_expression] = STATE(395), + [sym_is_expression] = STATE(399), + [sym_in_expression] = STATE(399), + [sym_enum_fetch] = STATE(399), + [sym_match_expression] = STATE(395), + [sym_select_expression] = STATE(395), + [sym_lock_expression] = STATE(395), + [sym_unsafe_expression] = STATE(395), + [sym_sql_expression] = STATE(395), + [sym_c_string_literal] = STATE(479), + [sym_raw_string_literal] = STATE(479), + [sym_interpreted_string_literal] = STATE(479), + [sym_visibility_modifiers] = STATE(3431), + [sym_mutability_modifiers] = STATE(800), + [sym_mutable_expression] = STATE(3271), + [sym_expression_list] = STATE(3330), + [sym_plain_type] = STATE(4069), + [sym__plain_type_without_special] = STATE(2360), + [sym_anon_struct_type] = STATE(2362), + [sym_multi_return_type] = STATE(2360), + [sym_result_type] = STATE(2360), + [sym_option_type] = STATE(2360), + [sym_qualified_type] = STATE(3460), + [sym_fixed_array_type] = STATE(2362), + [sym_array_type] = STATE(2362), + [sym_pointer_type] = STATE(2362), + [sym_wrong_pointer_type] = STATE(2362), + [sym_map_type] = STATE(2362), + [sym_channel_type] = STATE(2362), + [sym_shared_type] = STATE(2362), + [sym_thread_type] = STATE(2362), + [sym_atomic_type] = STATE(2362), + [sym_generic_type] = STATE(2362), + [sym_function_type] = STATE(2362), + [sym__statement] = STATE(1496), + [sym_simple_statement] = STATE(1532), + [sym_assert_statement] = STATE(1532), + [sym_append_statement] = STATE(1532), + [sym_send_statement] = STATE(1532), + [sym_var_declaration] = STATE(1497), + [sym_assignment_statement] = STATE(1497), + [sym_block] = STATE(1532), + [sym_defer_statement] = STATE(1532), + [sym_goto_statement] = STATE(1532), + [sym_break_statement] = STATE(1532), + [sym_continue_statement] = STATE(1532), + [sym_return_statement] = STATE(1532), + [sym_label_definition] = STATE(65), + [sym_labeled_statement] = STATE(1532), + [sym_compile_time_for_statement] = STATE(1532), + [sym_for_statement] = STATE(1532), + [sym_hash_statement] = STATE(1532), + [sym_asm_statement] = STATE(1532), + [sym_attributes] = STATE(3374), + [sym_attribute] = STATE(3319), + [aux_sym_source_file_repeat1] = STATE(7), + [aux_sym_attributes_repeat1] = STATE(3331), + [ts_builtin_sym_end] = ACTIONS(127), [sym_identifier] = ACTIONS(9), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), @@ -20912,103 +20928,103 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [12] = { [sym_line_comment] = STATE(12), [sym_block_comment] = STATE(12), - [sym_const_declaration] = STATE(1483), - [sym_global_var_declaration] = STATE(1483), - [sym_type_declaration] = STATE(1483), - [sym_function_declaration] = STATE(1483), - [sym_static_method_declaration] = STATE(1483), - [sym_struct_declaration] = STATE(1483), - [sym_enum_declaration] = STATE(1483), - [sym_interface_declaration] = STATE(1483), - [sym__expression] = STATE(213), - [sym__expression_without_blocks] = STATE(442), - [sym__expression_with_blocks] = STATE(442), - [sym_strictly_expression_list] = STATE(1487), - [sym_inc_expression] = STATE(439), - [sym_dec_expression] = STATE(439), - [sym_or_block_expression] = STATE(439), - [sym_option_propagation_expression] = STATE(439), - [sym_result_propagation_expression] = STATE(439), - [sym_anon_struct_value_expression] = STATE(438), - [sym_go_expression] = STATE(439), - [sym_spawn_expression] = STATE(439), - [sym_parenthesized_expression] = STATE(439), - [sym_call_expression] = STATE(439), - [sym_type_initializer] = STATE(438), - [sym_function_literal] = STATE(439), - [sym_reference_expression] = STATE(437), - [sym_type_reference_expression] = STATE(3541), - [sym_unary_expression] = STATE(439), - [sym_receive_expression] = STATE(439), - [sym_binary_expression] = STATE(439), - [sym_as_type_cast_expression] = STATE(439), - [sym__max_group] = STATE(439), - [sym_literal] = STATE(495), - [sym_map_init_expression] = STATE(438), - [sym_array_creation] = STATE(439), - [sym_fixed_array_creation] = STATE(439), - [sym_selector_expression] = STATE(439), - [sym_index_expression] = STATE(439), - [sym_slice_expression] = STATE(439), - [sym_if_expression] = STATE(438), - [sym_compile_time_if_expression] = STATE(438), - [sym_is_expression] = STATE(439), - [sym_in_expression] = STATE(439), - [sym_enum_fetch] = STATE(439), - [sym_match_expression] = STATE(438), - [sym_select_expression] = STATE(438), - [sym_lock_expression] = STATE(438), - [sym_unsafe_expression] = STATE(438), - [sym_sql_expression] = STATE(438), - [sym_c_string_literal] = STATE(496), - [sym_raw_string_literal] = STATE(496), - [sym_interpreted_string_literal] = STATE(496), - [sym_visibility_modifiers] = STATE(3408), - [sym_mutability_modifiers] = STATE(781), - [sym_mutable_expression] = STATE(3275), - [sym_expression_list] = STATE(3317), - [sym_plain_type] = STATE(4049), - [sym__plain_type_without_special] = STATE(2302), - [sym_anon_struct_type] = STATE(2303), - [sym_multi_return_type] = STATE(2302), - [sym_result_type] = STATE(2302), - [sym_option_type] = STATE(2302), - [sym_qualified_type] = STATE(3541), - [sym_fixed_array_type] = STATE(2303), - [sym_array_type] = STATE(2303), - [sym_pointer_type] = STATE(2303), - [sym_wrong_pointer_type] = STATE(2303), - [sym_map_type] = STATE(2303), - [sym_channel_type] = STATE(2303), - [sym_shared_type] = STATE(2303), - [sym_thread_type] = STATE(2303), - [sym_atomic_type] = STATE(2303), - [sym_generic_type] = STATE(2303), - [sym_function_type] = STATE(2303), - [sym__statement] = STATE(1483), - [sym_simple_statement] = STATE(1493), - [sym_assert_statement] = STATE(1493), - [sym_append_statement] = STATE(1493), - [sym_send_statement] = STATE(1493), - [sym_var_declaration] = STATE(1487), - [sym_assignment_statement] = STATE(1487), - [sym_block] = STATE(1493), - [sym_defer_statement] = STATE(1493), - [sym_goto_statement] = STATE(1493), - [sym_break_statement] = STATE(1493), - [sym_continue_statement] = STATE(1493), - [sym_return_statement] = STATE(1493), - [sym_label_definition] = STATE(64), - [sym_labeled_statement] = STATE(1493), - [sym_compile_time_for_statement] = STATE(1493), - [sym_for_statement] = STATE(1493), - [sym_hash_statement] = STATE(1493), - [sym_asm_statement] = STATE(1493), - [sym_attributes] = STATE(3368), - [sym_attribute] = STATE(3324), - [aux_sym_source_file_repeat1] = STATE(9), - [aux_sym_attributes_repeat1] = STATE(3329), - [ts_builtin_sym_end] = ACTIONS(305), + [sym_const_declaration] = STATE(1496), + [sym_global_var_declaration] = STATE(1496), + [sym_type_declaration] = STATE(1496), + [sym_function_declaration] = STATE(1496), + [sym_static_method_declaration] = STATE(1496), + [sym_struct_declaration] = STATE(1496), + [sym_enum_declaration] = STATE(1496), + [sym_interface_declaration] = STATE(1496), + [sym__expression] = STATE(216), + [sym__expression_without_blocks] = STATE(401), + [sym__expression_with_blocks] = STATE(401), + [sym_strictly_expression_list] = STATE(1497), + [sym_inc_expression] = STATE(399), + [sym_dec_expression] = STATE(399), + [sym_or_block_expression] = STATE(399), + [sym_option_propagation_expression] = STATE(399), + [sym_result_propagation_expression] = STATE(399), + [sym_anon_struct_value_expression] = STATE(395), + [sym_go_expression] = STATE(399), + [sym_spawn_expression] = STATE(399), + [sym_parenthesized_expression] = STATE(399), + [sym_call_expression] = STATE(399), + [sym_type_initializer] = STATE(395), + [sym_function_literal] = STATE(399), + [sym_reference_expression] = STATE(393), + [sym_type_reference_expression] = STATE(3460), + [sym_unary_expression] = STATE(399), + [sym_receive_expression] = STATE(399), + [sym_binary_expression] = STATE(399), + [sym_as_type_cast_expression] = STATE(399), + [sym__max_group] = STATE(399), + [sym_literal] = STATE(455), + [sym_map_init_expression] = STATE(395), + [sym_array_creation] = STATE(399), + [sym_fixed_array_creation] = STATE(399), + [sym_selector_expression] = STATE(399), + [sym_index_expression] = STATE(399), + [sym_slice_expression] = STATE(399), + [sym_if_expression] = STATE(395), + [sym_compile_time_if_expression] = STATE(395), + [sym_is_expression] = STATE(399), + [sym_in_expression] = STATE(399), + [sym_enum_fetch] = STATE(399), + [sym_match_expression] = STATE(395), + [sym_select_expression] = STATE(395), + [sym_lock_expression] = STATE(395), + [sym_unsafe_expression] = STATE(395), + [sym_sql_expression] = STATE(395), + [sym_c_string_literal] = STATE(479), + [sym_raw_string_literal] = STATE(479), + [sym_interpreted_string_literal] = STATE(479), + [sym_visibility_modifiers] = STATE(3431), + [sym_mutability_modifiers] = STATE(800), + [sym_mutable_expression] = STATE(3271), + [sym_expression_list] = STATE(3330), + [sym_plain_type] = STATE(4069), + [sym__plain_type_without_special] = STATE(2360), + [sym_anon_struct_type] = STATE(2362), + [sym_multi_return_type] = STATE(2360), + [sym_result_type] = STATE(2360), + [sym_option_type] = STATE(2360), + [sym_qualified_type] = STATE(3460), + [sym_fixed_array_type] = STATE(2362), + [sym_array_type] = STATE(2362), + [sym_pointer_type] = STATE(2362), + [sym_wrong_pointer_type] = STATE(2362), + [sym_map_type] = STATE(2362), + [sym_channel_type] = STATE(2362), + [sym_shared_type] = STATE(2362), + [sym_thread_type] = STATE(2362), + [sym_atomic_type] = STATE(2362), + [sym_generic_type] = STATE(2362), + [sym_function_type] = STATE(2362), + [sym__statement] = STATE(1496), + [sym_simple_statement] = STATE(1532), + [sym_assert_statement] = STATE(1532), + [sym_append_statement] = STATE(1532), + [sym_send_statement] = STATE(1532), + [sym_var_declaration] = STATE(1497), + [sym_assignment_statement] = STATE(1497), + [sym_block] = STATE(1532), + [sym_defer_statement] = STATE(1532), + [sym_goto_statement] = STATE(1532), + [sym_break_statement] = STATE(1532), + [sym_continue_statement] = STATE(1532), + [sym_return_statement] = STATE(1532), + [sym_label_definition] = STATE(65), + [sym_labeled_statement] = STATE(1532), + [sym_compile_time_for_statement] = STATE(1532), + [sym_for_statement] = STATE(1532), + [sym_hash_statement] = STATE(1532), + [sym_asm_statement] = STATE(1532), + [sym_attributes] = STATE(3374), + [sym_attribute] = STATE(3319), + [aux_sym_source_file_repeat1] = STATE(8), + [aux_sym_attributes_repeat1] = STATE(3331), + [ts_builtin_sym_end] = ACTIONS(133), [sym_identifier] = ACTIONS(9), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), @@ -21080,93 +21096,93 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [13] = { [sym_line_comment] = STATE(13), [sym_block_comment] = STATE(13), - [sym__expression] = STATE(1601), - [sym__expression_without_blocks] = STATE(1692), - [sym__expression_with_blocks] = STATE(1692), - [sym_strictly_expression_list] = STATE(3584), - [sym_inc_expression] = STATE(1684), - [sym_dec_expression] = STATE(1684), - [sym_or_block_expression] = STATE(1684), - [sym_option_propagation_expression] = STATE(1684), - [sym_result_propagation_expression] = STATE(1684), - [sym_anon_struct_value_expression] = STATE(1677), - [sym_go_expression] = STATE(1684), - [sym_spawn_expression] = STATE(1684), - [sym_parenthesized_expression] = STATE(1684), - [sym_call_expression] = STATE(1684), - [sym_type_initializer] = STATE(1677), - [sym_function_literal] = STATE(1684), - [sym_reference_expression] = STATE(1674), - [sym_type_reference_expression] = STATE(3541), - [sym_unary_expression] = STATE(1684), - [sym_receive_expression] = STATE(1684), - [sym_binary_expression] = STATE(1684), - [sym_as_type_cast_expression] = STATE(1684), - [sym__max_group] = STATE(1684), - [sym_literal] = STATE(1698), - [sym_map_init_expression] = STATE(1677), - [sym_map_keyed_element] = STATE(2001), - [sym_array_creation] = STATE(1684), - [sym_fixed_array_creation] = STATE(1684), - [sym_selector_expression] = STATE(1684), - [sym_index_expression] = STATE(1684), - [sym_slice_expression] = STATE(1684), - [sym_if_expression] = STATE(1677), - [sym_compile_time_if_expression] = STATE(1677), - [sym_is_expression] = STATE(1684), - [sym_in_expression] = STATE(1684), - [sym_enum_fetch] = STATE(1684), - [sym_match_expression] = STATE(1677), - [sym_select_expression] = STATE(1677), - [sym_lock_expression] = STATE(1677), - [sym_unsafe_expression] = STATE(1677), - [sym_sql_expression] = STATE(1677), - [sym_c_string_literal] = STATE(1705), - [sym_raw_string_literal] = STATE(1705), - [sym_interpreted_string_literal] = STATE(1705), - [sym_mutability_modifiers] = STATE(858), - [sym_mutable_expression] = STATE(3274), - [sym_expression_list] = STATE(3288), - [sym_plain_type] = STATE(4157), - [sym__plain_type_without_special] = STATE(2302), - [sym_anon_struct_type] = STATE(2303), - [sym_multi_return_type] = STATE(2302), - [sym_result_type] = STATE(2302), - [sym_option_type] = STATE(2302), - [sym_qualified_type] = STATE(3541), - [sym_fixed_array_type] = STATE(2303), - [sym_array_type] = STATE(2303), - [sym_pointer_type] = STATE(2303), - [sym_wrong_pointer_type] = STATE(2303), - [sym_map_type] = STATE(2303), - [sym_channel_type] = STATE(2303), - [sym_shared_type] = STATE(2303), - [sym_thread_type] = STATE(2303), - [sym_atomic_type] = STATE(2303), - [sym_generic_type] = STATE(2303), - [sym_function_type] = STATE(2303), - [sym__statement_list] = STATE(4419), - [sym__statement] = STATE(3549), - [sym_simple_statement] = STATE(3582), - [sym_assert_statement] = STATE(3582), - [sym_append_statement] = STATE(3582), - [sym_send_statement] = STATE(3582), - [sym_var_declaration] = STATE(3584), - [sym_assignment_statement] = STATE(3584), - [sym_block] = STATE(3582), - [sym_defer_statement] = STATE(3582), - [sym_goto_statement] = STATE(3582), - [sym_break_statement] = STATE(3582), - [sym_continue_statement] = STATE(3582), - [sym_return_statement] = STATE(3582), + [sym__expression] = STATE(1605), + [sym__expression_without_blocks] = STATE(1747), + [sym__expression_with_blocks] = STATE(1747), + [sym_strictly_expression_list] = STATE(3649), + [sym_inc_expression] = STATE(1749), + [sym_dec_expression] = STATE(1749), + [sym_or_block_expression] = STATE(1749), + [sym_option_propagation_expression] = STATE(1749), + [sym_result_propagation_expression] = STATE(1749), + [sym_anon_struct_value_expression] = STATE(1746), + [sym_go_expression] = STATE(1749), + [sym_spawn_expression] = STATE(1749), + [sym_parenthesized_expression] = STATE(1749), + [sym_call_expression] = STATE(1749), + [sym_type_initializer] = STATE(1746), + [sym_function_literal] = STATE(1749), + [sym_reference_expression] = STATE(1745), + [sym_type_reference_expression] = STATE(3460), + [sym_unary_expression] = STATE(1749), + [sym_receive_expression] = STATE(1749), + [sym_binary_expression] = STATE(1749), + [sym_as_type_cast_expression] = STATE(1749), + [sym__max_group] = STATE(1749), + [sym_literal] = STATE(1738), + [sym_map_init_expression] = STATE(1746), + [sym_map_keyed_element] = STATE(2004), + [sym_array_creation] = STATE(1749), + [sym_fixed_array_creation] = STATE(1749), + [sym_selector_expression] = STATE(1749), + [sym_index_expression] = STATE(1749), + [sym_slice_expression] = STATE(1749), + [sym_if_expression] = STATE(1746), + [sym_compile_time_if_expression] = STATE(1746), + [sym_is_expression] = STATE(1749), + [sym_in_expression] = STATE(1749), + [sym_enum_fetch] = STATE(1749), + [sym_match_expression] = STATE(1746), + [sym_select_expression] = STATE(1746), + [sym_lock_expression] = STATE(1746), + [sym_unsafe_expression] = STATE(1746), + [sym_sql_expression] = STATE(1746), + [sym_c_string_literal] = STATE(1733), + [sym_raw_string_literal] = STATE(1733), + [sym_interpreted_string_literal] = STATE(1733), + [sym_mutability_modifiers] = STATE(843), + [sym_mutable_expression] = STATE(3278), + [sym_expression_list] = STATE(3323), + [sym_plain_type] = STATE(4121), + [sym__plain_type_without_special] = STATE(2360), + [sym_anon_struct_type] = STATE(2362), + [sym_multi_return_type] = STATE(2360), + [sym_result_type] = STATE(2360), + [sym_option_type] = STATE(2360), + [sym_qualified_type] = STATE(3460), + [sym_fixed_array_type] = STATE(2362), + [sym_array_type] = STATE(2362), + [sym_pointer_type] = STATE(2362), + [sym_wrong_pointer_type] = STATE(2362), + [sym_map_type] = STATE(2362), + [sym_channel_type] = STATE(2362), + [sym_shared_type] = STATE(2362), + [sym_thread_type] = STATE(2362), + [sym_atomic_type] = STATE(2362), + [sym_generic_type] = STATE(2362), + [sym_function_type] = STATE(2362), + [sym__statement_list] = STATE(4504), + [sym__statement] = STATE(3566), + [sym_simple_statement] = STATE(3648), + [sym_assert_statement] = STATE(3648), + [sym_append_statement] = STATE(3648), + [sym_send_statement] = STATE(3648), + [sym_var_declaration] = STATE(3649), + [sym_assignment_statement] = STATE(3649), + [sym_block] = STATE(3648), + [sym_defer_statement] = STATE(3648), + [sym_goto_statement] = STATE(3648), + [sym_break_statement] = STATE(3648), + [sym_continue_statement] = STATE(3648), + [sym_return_statement] = STATE(3648), [sym_label_definition] = STATE(62), - [sym_labeled_statement] = STATE(3582), - [sym_empty_labeled_statement] = STATE(4544), - [sym_compile_time_for_statement] = STATE(3582), - [sym_for_statement] = STATE(3582), - [sym_hash_statement] = STATE(3582), - [sym_asm_statement] = STATE(3582), - [aux_sym_map_init_expression_repeat1] = STATE(274), + [sym_labeled_statement] = STATE(3648), + [sym_empty_labeled_statement] = STATE(4547), + [sym_compile_time_for_statement] = STATE(3648), + [sym_for_statement] = STATE(3648), + [sym_hash_statement] = STATE(3648), + [sym_asm_statement] = STATE(3648), + [aux_sym_map_init_expression_repeat1] = STATE(242), [sym_identifier] = ACTIONS(307), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), @@ -21231,93 +21247,93 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [14] = { [sym_line_comment] = STATE(14), [sym_block_comment] = STATE(14), - [sym__expression] = STATE(1601), - [sym__expression_without_blocks] = STATE(1692), - [sym__expression_with_blocks] = STATE(1692), - [sym_strictly_expression_list] = STATE(3584), - [sym_inc_expression] = STATE(1684), - [sym_dec_expression] = STATE(1684), - [sym_or_block_expression] = STATE(1684), - [sym_option_propagation_expression] = STATE(1684), - [sym_result_propagation_expression] = STATE(1684), - [sym_anon_struct_value_expression] = STATE(1677), - [sym_go_expression] = STATE(1684), - [sym_spawn_expression] = STATE(1684), - [sym_parenthesized_expression] = STATE(1684), - [sym_call_expression] = STATE(1684), - [sym_type_initializer] = STATE(1677), - [sym_function_literal] = STATE(1684), - [sym_reference_expression] = STATE(1674), - [sym_type_reference_expression] = STATE(3541), - [sym_unary_expression] = STATE(1684), - [sym_receive_expression] = STATE(1684), - [sym_binary_expression] = STATE(1684), - [sym_as_type_cast_expression] = STATE(1684), - [sym__max_group] = STATE(1684), - [sym_literal] = STATE(1698), - [sym_map_init_expression] = STATE(1677), - [sym_map_keyed_element] = STATE(2001), - [sym_array_creation] = STATE(1684), - [sym_fixed_array_creation] = STATE(1684), - [sym_selector_expression] = STATE(1684), - [sym_index_expression] = STATE(1684), - [sym_slice_expression] = STATE(1684), - [sym_if_expression] = STATE(1677), - [sym_compile_time_if_expression] = STATE(1677), - [sym_is_expression] = STATE(1684), - [sym_in_expression] = STATE(1684), - [sym_enum_fetch] = STATE(1684), - [sym_match_expression] = STATE(1677), - [sym_select_expression] = STATE(1677), - [sym_lock_expression] = STATE(1677), - [sym_unsafe_expression] = STATE(1677), - [sym_sql_expression] = STATE(1677), - [sym_c_string_literal] = STATE(1705), - [sym_raw_string_literal] = STATE(1705), - [sym_interpreted_string_literal] = STATE(1705), - [sym_mutability_modifiers] = STATE(858), - [sym_mutable_expression] = STATE(3274), - [sym_expression_list] = STATE(3288), - [sym_plain_type] = STATE(4157), - [sym__plain_type_without_special] = STATE(2302), - [sym_anon_struct_type] = STATE(2303), - [sym_multi_return_type] = STATE(2302), - [sym_result_type] = STATE(2302), - [sym_option_type] = STATE(2302), - [sym_qualified_type] = STATE(3541), - [sym_fixed_array_type] = STATE(2303), - [sym_array_type] = STATE(2303), - [sym_pointer_type] = STATE(2303), - [sym_wrong_pointer_type] = STATE(2303), - [sym_map_type] = STATE(2303), - [sym_channel_type] = STATE(2303), - [sym_shared_type] = STATE(2303), - [sym_thread_type] = STATE(2303), - [sym_atomic_type] = STATE(2303), - [sym_generic_type] = STATE(2303), - [sym_function_type] = STATE(2303), - [sym__statement_list] = STATE(4380), - [sym__statement] = STATE(3549), - [sym_simple_statement] = STATE(3582), - [sym_assert_statement] = STATE(3582), - [sym_append_statement] = STATE(3582), - [sym_send_statement] = STATE(3582), - [sym_var_declaration] = STATE(3584), - [sym_assignment_statement] = STATE(3584), - [sym_block] = STATE(3582), - [sym_defer_statement] = STATE(3582), - [sym_goto_statement] = STATE(3582), - [sym_break_statement] = STATE(3582), - [sym_continue_statement] = STATE(3582), - [sym_return_statement] = STATE(3582), + [sym__expression] = STATE(1605), + [sym__expression_without_blocks] = STATE(1747), + [sym__expression_with_blocks] = STATE(1747), + [sym_strictly_expression_list] = STATE(3649), + [sym_inc_expression] = STATE(1749), + [sym_dec_expression] = STATE(1749), + [sym_or_block_expression] = STATE(1749), + [sym_option_propagation_expression] = STATE(1749), + [sym_result_propagation_expression] = STATE(1749), + [sym_anon_struct_value_expression] = STATE(1746), + [sym_go_expression] = STATE(1749), + [sym_spawn_expression] = STATE(1749), + [sym_parenthesized_expression] = STATE(1749), + [sym_call_expression] = STATE(1749), + [sym_type_initializer] = STATE(1746), + [sym_function_literal] = STATE(1749), + [sym_reference_expression] = STATE(1745), + [sym_type_reference_expression] = STATE(3460), + [sym_unary_expression] = STATE(1749), + [sym_receive_expression] = STATE(1749), + [sym_binary_expression] = STATE(1749), + [sym_as_type_cast_expression] = STATE(1749), + [sym__max_group] = STATE(1749), + [sym_literal] = STATE(1738), + [sym_map_init_expression] = STATE(1746), + [sym_map_keyed_element] = STATE(2004), + [sym_array_creation] = STATE(1749), + [sym_fixed_array_creation] = STATE(1749), + [sym_selector_expression] = STATE(1749), + [sym_index_expression] = STATE(1749), + [sym_slice_expression] = STATE(1749), + [sym_if_expression] = STATE(1746), + [sym_compile_time_if_expression] = STATE(1746), + [sym_is_expression] = STATE(1749), + [sym_in_expression] = STATE(1749), + [sym_enum_fetch] = STATE(1749), + [sym_match_expression] = STATE(1746), + [sym_select_expression] = STATE(1746), + [sym_lock_expression] = STATE(1746), + [sym_unsafe_expression] = STATE(1746), + [sym_sql_expression] = STATE(1746), + [sym_c_string_literal] = STATE(1733), + [sym_raw_string_literal] = STATE(1733), + [sym_interpreted_string_literal] = STATE(1733), + [sym_mutability_modifiers] = STATE(843), + [sym_mutable_expression] = STATE(3278), + [sym_expression_list] = STATE(3323), + [sym_plain_type] = STATE(4121), + [sym__plain_type_without_special] = STATE(2360), + [sym_anon_struct_type] = STATE(2362), + [sym_multi_return_type] = STATE(2360), + [sym_result_type] = STATE(2360), + [sym_option_type] = STATE(2360), + [sym_qualified_type] = STATE(3460), + [sym_fixed_array_type] = STATE(2362), + [sym_array_type] = STATE(2362), + [sym_pointer_type] = STATE(2362), + [sym_wrong_pointer_type] = STATE(2362), + [sym_map_type] = STATE(2362), + [sym_channel_type] = STATE(2362), + [sym_shared_type] = STATE(2362), + [sym_thread_type] = STATE(2362), + [sym_atomic_type] = STATE(2362), + [sym_generic_type] = STATE(2362), + [sym_function_type] = STATE(2362), + [sym__statement_list] = STATE(4549), + [sym__statement] = STATE(3566), + [sym_simple_statement] = STATE(3648), + [sym_assert_statement] = STATE(3648), + [sym_append_statement] = STATE(3648), + [sym_send_statement] = STATE(3648), + [sym_var_declaration] = STATE(3649), + [sym_assignment_statement] = STATE(3649), + [sym_block] = STATE(3648), + [sym_defer_statement] = STATE(3648), + [sym_goto_statement] = STATE(3648), + [sym_break_statement] = STATE(3648), + [sym_continue_statement] = STATE(3648), + [sym_return_statement] = STATE(3648), [sym_label_definition] = STATE(62), - [sym_labeled_statement] = STATE(3582), - [sym_empty_labeled_statement] = STATE(4544), - [sym_compile_time_for_statement] = STATE(3582), - [sym_for_statement] = STATE(3582), - [sym_hash_statement] = STATE(3582), - [sym_asm_statement] = STATE(3582), - [aux_sym_map_init_expression_repeat1] = STATE(274), + [sym_labeled_statement] = STATE(3648), + [sym_empty_labeled_statement] = STATE(4547), + [sym_compile_time_for_statement] = STATE(3648), + [sym_for_statement] = STATE(3648), + [sym_hash_statement] = STATE(3648), + [sym_asm_statement] = STATE(3648), + [aux_sym_map_init_expression_repeat1] = STATE(289), [sym_identifier] = ACTIONS(307), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), @@ -21382,99 +21398,99 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [15] = { [sym_line_comment] = STATE(15), [sym_block_comment] = STATE(15), - [sym__expression] = STATE(1601), - [sym__expression_without_blocks] = STATE(1692), - [sym__expression_with_blocks] = STATE(1692), - [sym_strictly_expression_list] = STATE(3584), - [sym_inc_expression] = STATE(1684), - [sym_dec_expression] = STATE(1684), - [sym_or_block_expression] = STATE(1684), - [sym_option_propagation_expression] = STATE(1684), - [sym_result_propagation_expression] = STATE(1684), - [sym_anon_struct_value_expression] = STATE(1677), - [sym_go_expression] = STATE(1684), - [sym_spawn_expression] = STATE(1684), - [sym_parenthesized_expression] = STATE(1684), - [sym_call_expression] = STATE(1684), - [sym_type_initializer] = STATE(1677), - [sym_function_literal] = STATE(1684), - [sym_reference_expression] = STATE(1674), - [sym_type_reference_expression] = STATE(3541), - [sym_unary_expression] = STATE(1684), - [sym_receive_expression] = STATE(1684), - [sym_binary_expression] = STATE(1684), - [sym_as_type_cast_expression] = STATE(1684), - [sym__max_group] = STATE(1684), - [sym_literal] = STATE(1698), - [sym_map_init_expression] = STATE(1677), - [sym_map_keyed_element] = STATE(2001), - [sym_array_creation] = STATE(1684), - [sym_fixed_array_creation] = STATE(1684), - [sym_selector_expression] = STATE(1684), - [sym_index_expression] = STATE(1684), - [sym_slice_expression] = STATE(1684), - [sym_if_expression] = STATE(1677), - [sym_compile_time_if_expression] = STATE(1677), - [sym_is_expression] = STATE(1684), - [sym_in_expression] = STATE(1684), - [sym_enum_fetch] = STATE(1684), - [sym_match_expression] = STATE(1677), - [sym_select_expression] = STATE(1677), - [sym_lock_expression] = STATE(1677), - [sym_unsafe_expression] = STATE(1677), - [sym_sql_expression] = STATE(1677), - [sym_c_string_literal] = STATE(1705), - [sym_raw_string_literal] = STATE(1705), - [sym_interpreted_string_literal] = STATE(1705), - [sym_mutability_modifiers] = STATE(858), - [sym_mutable_expression] = STATE(3274), - [sym_expression_list] = STATE(3288), - [sym_plain_type] = STATE(4157), - [sym__plain_type_without_special] = STATE(2302), - [sym_anon_struct_type] = STATE(2303), - [sym_multi_return_type] = STATE(2302), - [sym_result_type] = STATE(2302), - [sym_option_type] = STATE(2302), - [sym_qualified_type] = STATE(3541), - [sym_fixed_array_type] = STATE(2303), - [sym_array_type] = STATE(2303), - [sym_pointer_type] = STATE(2303), - [sym_wrong_pointer_type] = STATE(2303), - [sym_map_type] = STATE(2303), - [sym_channel_type] = STATE(2303), - [sym_shared_type] = STATE(2303), - [sym_thread_type] = STATE(2303), - [sym_atomic_type] = STATE(2303), - [sym_generic_type] = STATE(2303), - [sym_function_type] = STATE(2303), - [sym__statement_list] = STATE(4525), - [sym__statement] = STATE(3549), - [sym_simple_statement] = STATE(3582), - [sym_assert_statement] = STATE(3582), - [sym_append_statement] = STATE(3582), - [sym_send_statement] = STATE(3582), - [sym_var_declaration] = STATE(3584), - [sym_assignment_statement] = STATE(3584), - [sym_block] = STATE(3582), - [sym_defer_statement] = STATE(3582), - [sym_goto_statement] = STATE(3582), - [sym_break_statement] = STATE(3582), - [sym_continue_statement] = STATE(3582), - [sym_return_statement] = STATE(3582), + [sym__expression] = STATE(1605), + [sym__expression_without_blocks] = STATE(1747), + [sym__expression_with_blocks] = STATE(1747), + [sym_strictly_expression_list] = STATE(3649), + [sym_inc_expression] = STATE(1749), + [sym_dec_expression] = STATE(1749), + [sym_or_block_expression] = STATE(1749), + [sym_option_propagation_expression] = STATE(1749), + [sym_result_propagation_expression] = STATE(1749), + [sym_anon_struct_value_expression] = STATE(1746), + [sym_go_expression] = STATE(1749), + [sym_spawn_expression] = STATE(1749), + [sym_parenthesized_expression] = STATE(1749), + [sym_call_expression] = STATE(1749), + [sym_type_initializer] = STATE(1746), + [sym_function_literal] = STATE(1749), + [sym_reference_expression] = STATE(1745), + [sym_type_reference_expression] = STATE(3460), + [sym_unary_expression] = STATE(1749), + [sym_receive_expression] = STATE(1749), + [sym_binary_expression] = STATE(1749), + [sym_as_type_cast_expression] = STATE(1749), + [sym__max_group] = STATE(1749), + [sym_literal] = STATE(1738), + [sym_map_init_expression] = STATE(1746), + [sym_map_keyed_element] = STATE(2004), + [sym_array_creation] = STATE(1749), + [sym_fixed_array_creation] = STATE(1749), + [sym_selector_expression] = STATE(1749), + [sym_index_expression] = STATE(1749), + [sym_slice_expression] = STATE(1749), + [sym_if_expression] = STATE(1746), + [sym_compile_time_if_expression] = STATE(1746), + [sym_is_expression] = STATE(1749), + [sym_in_expression] = STATE(1749), + [sym_enum_fetch] = STATE(1749), + [sym_match_expression] = STATE(1746), + [sym_select_expression] = STATE(1746), + [sym_lock_expression] = STATE(1746), + [sym_unsafe_expression] = STATE(1746), + [sym_sql_expression] = STATE(1746), + [sym_c_string_literal] = STATE(1733), + [sym_raw_string_literal] = STATE(1733), + [sym_interpreted_string_literal] = STATE(1733), + [sym_mutability_modifiers] = STATE(843), + [sym_mutable_expression] = STATE(3278), + [sym_expression_list] = STATE(3323), + [sym_plain_type] = STATE(4121), + [sym__plain_type_without_special] = STATE(2360), + [sym_anon_struct_type] = STATE(2362), + [sym_multi_return_type] = STATE(2360), + [sym_result_type] = STATE(2360), + [sym_option_type] = STATE(2360), + [sym_qualified_type] = STATE(3460), + [sym_fixed_array_type] = STATE(2362), + [sym_array_type] = STATE(2362), + [sym_pointer_type] = STATE(2362), + [sym_wrong_pointer_type] = STATE(2362), + [sym_map_type] = STATE(2362), + [sym_channel_type] = STATE(2362), + [sym_shared_type] = STATE(2362), + [sym_thread_type] = STATE(2362), + [sym_atomic_type] = STATE(2362), + [sym_generic_type] = STATE(2362), + [sym_function_type] = STATE(2362), + [sym__statement_list] = STATE(4549), + [sym__statement] = STATE(3566), + [sym_simple_statement] = STATE(3648), + [sym_assert_statement] = STATE(3648), + [sym_append_statement] = STATE(3648), + [sym_send_statement] = STATE(3648), + [sym_var_declaration] = STATE(3649), + [sym_assignment_statement] = STATE(3649), + [sym_block] = STATE(3648), + [sym_defer_statement] = STATE(3648), + [sym_goto_statement] = STATE(3648), + [sym_break_statement] = STATE(3648), + [sym_continue_statement] = STATE(3648), + [sym_return_statement] = STATE(3648), [sym_label_definition] = STATE(62), - [sym_labeled_statement] = STATE(3582), - [sym_empty_labeled_statement] = STATE(4544), - [sym_compile_time_for_statement] = STATE(3582), - [sym_for_statement] = STATE(3582), - [sym_hash_statement] = STATE(3582), - [sym_asm_statement] = STATE(3582), - [aux_sym_map_init_expression_repeat1] = STATE(274), + [sym_labeled_statement] = STATE(3648), + [sym_empty_labeled_statement] = STATE(4547), + [sym_compile_time_for_statement] = STATE(3648), + [sym_for_statement] = STATE(3648), + [sym_hash_statement] = STATE(3648), + [sym_asm_statement] = STATE(3648), + [aux_sym_map_init_expression_repeat1] = STATE(259), [sym_identifier] = ACTIONS(307), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), [anon_sym_DOT] = ACTIONS(309), [anon_sym_LBRACE] = ACTIONS(311), - [anon_sym_RBRACE] = ACTIONS(393), + [anon_sym_RBRACE] = ACTIONS(391), [anon_sym_LPAREN] = ACTIONS(315), [anon_sym_fn] = ACTIONS(317), [anon_sym_PLUS] = ACTIONS(319), @@ -21533,99 +21549,99 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [16] = { [sym_line_comment] = STATE(16), [sym_block_comment] = STATE(16), - [sym__expression] = STATE(1601), - [sym__expression_without_blocks] = STATE(1692), - [sym__expression_with_blocks] = STATE(1692), - [sym_strictly_expression_list] = STATE(3584), - [sym_inc_expression] = STATE(1684), - [sym_dec_expression] = STATE(1684), - [sym_or_block_expression] = STATE(1684), - [sym_option_propagation_expression] = STATE(1684), - [sym_result_propagation_expression] = STATE(1684), - [sym_anon_struct_value_expression] = STATE(1677), - [sym_go_expression] = STATE(1684), - [sym_spawn_expression] = STATE(1684), - [sym_parenthesized_expression] = STATE(1684), - [sym_call_expression] = STATE(1684), - [sym_type_initializer] = STATE(1677), - [sym_function_literal] = STATE(1684), - [sym_reference_expression] = STATE(1674), - [sym_type_reference_expression] = STATE(3541), - [sym_unary_expression] = STATE(1684), - [sym_receive_expression] = STATE(1684), - [sym_binary_expression] = STATE(1684), - [sym_as_type_cast_expression] = STATE(1684), - [sym__max_group] = STATE(1684), - [sym_literal] = STATE(1698), - [sym_map_init_expression] = STATE(1677), - [sym_map_keyed_element] = STATE(2001), - [sym_array_creation] = STATE(1684), - [sym_fixed_array_creation] = STATE(1684), - [sym_selector_expression] = STATE(1684), - [sym_index_expression] = STATE(1684), - [sym_slice_expression] = STATE(1684), - [sym_if_expression] = STATE(1677), - [sym_compile_time_if_expression] = STATE(1677), - [sym_is_expression] = STATE(1684), - [sym_in_expression] = STATE(1684), - [sym_enum_fetch] = STATE(1684), - [sym_match_expression] = STATE(1677), - [sym_select_expression] = STATE(1677), - [sym_lock_expression] = STATE(1677), - [sym_unsafe_expression] = STATE(1677), - [sym_sql_expression] = STATE(1677), - [sym_c_string_literal] = STATE(1705), - [sym_raw_string_literal] = STATE(1705), - [sym_interpreted_string_literal] = STATE(1705), - [sym_mutability_modifiers] = STATE(858), - [sym_mutable_expression] = STATE(3274), - [sym_expression_list] = STATE(3288), - [sym_plain_type] = STATE(4157), - [sym__plain_type_without_special] = STATE(2302), - [sym_anon_struct_type] = STATE(2303), - [sym_multi_return_type] = STATE(2302), - [sym_result_type] = STATE(2302), - [sym_option_type] = STATE(2302), - [sym_qualified_type] = STATE(3541), - [sym_fixed_array_type] = STATE(2303), - [sym_array_type] = STATE(2303), - [sym_pointer_type] = STATE(2303), - [sym_wrong_pointer_type] = STATE(2303), - [sym_map_type] = STATE(2303), - [sym_channel_type] = STATE(2303), - [sym_shared_type] = STATE(2303), - [sym_thread_type] = STATE(2303), - [sym_atomic_type] = STATE(2303), - [sym_generic_type] = STATE(2303), - [sym_function_type] = STATE(2303), - [sym__statement_list] = STATE(4493), - [sym__statement] = STATE(3549), - [sym_simple_statement] = STATE(3582), - [sym_assert_statement] = STATE(3582), - [sym_append_statement] = STATE(3582), - [sym_send_statement] = STATE(3582), - [sym_var_declaration] = STATE(3584), - [sym_assignment_statement] = STATE(3584), - [sym_block] = STATE(3582), - [sym_defer_statement] = STATE(3582), - [sym_goto_statement] = STATE(3582), - [sym_break_statement] = STATE(3582), - [sym_continue_statement] = STATE(3582), - [sym_return_statement] = STATE(3582), + [sym__expression] = STATE(1605), + [sym__expression_without_blocks] = STATE(1747), + [sym__expression_with_blocks] = STATE(1747), + [sym_strictly_expression_list] = STATE(3649), + [sym_inc_expression] = STATE(1749), + [sym_dec_expression] = STATE(1749), + [sym_or_block_expression] = STATE(1749), + [sym_option_propagation_expression] = STATE(1749), + [sym_result_propagation_expression] = STATE(1749), + [sym_anon_struct_value_expression] = STATE(1746), + [sym_go_expression] = STATE(1749), + [sym_spawn_expression] = STATE(1749), + [sym_parenthesized_expression] = STATE(1749), + [sym_call_expression] = STATE(1749), + [sym_type_initializer] = STATE(1746), + [sym_function_literal] = STATE(1749), + [sym_reference_expression] = STATE(1745), + [sym_type_reference_expression] = STATE(3460), + [sym_unary_expression] = STATE(1749), + [sym_receive_expression] = STATE(1749), + [sym_binary_expression] = STATE(1749), + [sym_as_type_cast_expression] = STATE(1749), + [sym__max_group] = STATE(1749), + [sym_literal] = STATE(1738), + [sym_map_init_expression] = STATE(1746), + [sym_map_keyed_element] = STATE(2004), + [sym_array_creation] = STATE(1749), + [sym_fixed_array_creation] = STATE(1749), + [sym_selector_expression] = STATE(1749), + [sym_index_expression] = STATE(1749), + [sym_slice_expression] = STATE(1749), + [sym_if_expression] = STATE(1746), + [sym_compile_time_if_expression] = STATE(1746), + [sym_is_expression] = STATE(1749), + [sym_in_expression] = STATE(1749), + [sym_enum_fetch] = STATE(1749), + [sym_match_expression] = STATE(1746), + [sym_select_expression] = STATE(1746), + [sym_lock_expression] = STATE(1746), + [sym_unsafe_expression] = STATE(1746), + [sym_sql_expression] = STATE(1746), + [sym_c_string_literal] = STATE(1733), + [sym_raw_string_literal] = STATE(1733), + [sym_interpreted_string_literal] = STATE(1733), + [sym_mutability_modifiers] = STATE(843), + [sym_mutable_expression] = STATE(3278), + [sym_expression_list] = STATE(3323), + [sym_plain_type] = STATE(4121), + [sym__plain_type_without_special] = STATE(2360), + [sym_anon_struct_type] = STATE(2362), + [sym_multi_return_type] = STATE(2360), + [sym_result_type] = STATE(2360), + [sym_option_type] = STATE(2360), + [sym_qualified_type] = STATE(3460), + [sym_fixed_array_type] = STATE(2362), + [sym_array_type] = STATE(2362), + [sym_pointer_type] = STATE(2362), + [sym_wrong_pointer_type] = STATE(2362), + [sym_map_type] = STATE(2362), + [sym_channel_type] = STATE(2362), + [sym_shared_type] = STATE(2362), + [sym_thread_type] = STATE(2362), + [sym_atomic_type] = STATE(2362), + [sym_generic_type] = STATE(2362), + [sym_function_type] = STATE(2362), + [sym__statement_list] = STATE(4504), + [sym__statement] = STATE(3566), + [sym_simple_statement] = STATE(3648), + [sym_assert_statement] = STATE(3648), + [sym_append_statement] = STATE(3648), + [sym_send_statement] = STATE(3648), + [sym_var_declaration] = STATE(3649), + [sym_assignment_statement] = STATE(3649), + [sym_block] = STATE(3648), + [sym_defer_statement] = STATE(3648), + [sym_goto_statement] = STATE(3648), + [sym_break_statement] = STATE(3648), + [sym_continue_statement] = STATE(3648), + [sym_return_statement] = STATE(3648), [sym_label_definition] = STATE(62), - [sym_labeled_statement] = STATE(3582), - [sym_empty_labeled_statement] = STATE(4544), - [sym_compile_time_for_statement] = STATE(3582), - [sym_for_statement] = STATE(3582), - [sym_hash_statement] = STATE(3582), - [sym_asm_statement] = STATE(3582), - [aux_sym_map_init_expression_repeat1] = STATE(274), + [sym_labeled_statement] = STATE(3648), + [sym_empty_labeled_statement] = STATE(4547), + [sym_compile_time_for_statement] = STATE(3648), + [sym_for_statement] = STATE(3648), + [sym_hash_statement] = STATE(3648), + [sym_asm_statement] = STATE(3648), + [aux_sym_map_init_expression_repeat1] = STATE(242), [sym_identifier] = ACTIONS(307), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), [anon_sym_DOT] = ACTIONS(309), [anon_sym_LBRACE] = ACTIONS(311), - [anon_sym_RBRACE] = ACTIONS(395), + [anon_sym_RBRACE] = ACTIONS(393), [anon_sym_LPAREN] = ACTIONS(315), [anon_sym_fn] = ACTIONS(317), [anon_sym_PLUS] = ACTIONS(319), @@ -21684,99 +21700,99 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [17] = { [sym_line_comment] = STATE(17), [sym_block_comment] = STATE(17), - [sym__expression] = STATE(1601), - [sym__expression_without_blocks] = STATE(1692), - [sym__expression_with_blocks] = STATE(1692), - [sym_strictly_expression_list] = STATE(3584), - [sym_inc_expression] = STATE(1684), - [sym_dec_expression] = STATE(1684), - [sym_or_block_expression] = STATE(1684), - [sym_option_propagation_expression] = STATE(1684), - [sym_result_propagation_expression] = STATE(1684), - [sym_anon_struct_value_expression] = STATE(1677), - [sym_go_expression] = STATE(1684), - [sym_spawn_expression] = STATE(1684), - [sym_parenthesized_expression] = STATE(1684), - [sym_call_expression] = STATE(1684), - [sym_type_initializer] = STATE(1677), - [sym_function_literal] = STATE(1684), - [sym_reference_expression] = STATE(1674), - [sym_type_reference_expression] = STATE(3541), - [sym_unary_expression] = STATE(1684), - [sym_receive_expression] = STATE(1684), - [sym_binary_expression] = STATE(1684), - [sym_as_type_cast_expression] = STATE(1684), - [sym__max_group] = STATE(1684), - [sym_literal] = STATE(1698), - [sym_map_init_expression] = STATE(1677), - [sym_map_keyed_element] = STATE(2001), - [sym_array_creation] = STATE(1684), - [sym_fixed_array_creation] = STATE(1684), - [sym_selector_expression] = STATE(1684), - [sym_index_expression] = STATE(1684), - [sym_slice_expression] = STATE(1684), - [sym_if_expression] = STATE(1677), - [sym_compile_time_if_expression] = STATE(1677), - [sym_is_expression] = STATE(1684), - [sym_in_expression] = STATE(1684), - [sym_enum_fetch] = STATE(1684), - [sym_match_expression] = STATE(1677), - [sym_select_expression] = STATE(1677), - [sym_lock_expression] = STATE(1677), - [sym_unsafe_expression] = STATE(1677), - [sym_sql_expression] = STATE(1677), - [sym_c_string_literal] = STATE(1705), - [sym_raw_string_literal] = STATE(1705), - [sym_interpreted_string_literal] = STATE(1705), - [sym_mutability_modifiers] = STATE(858), - [sym_mutable_expression] = STATE(3274), - [sym_expression_list] = STATE(3288), - [sym_plain_type] = STATE(4157), - [sym__plain_type_without_special] = STATE(2302), - [sym_anon_struct_type] = STATE(2303), - [sym_multi_return_type] = STATE(2302), - [sym_result_type] = STATE(2302), - [sym_option_type] = STATE(2302), - [sym_qualified_type] = STATE(3541), - [sym_fixed_array_type] = STATE(2303), - [sym_array_type] = STATE(2303), - [sym_pointer_type] = STATE(2303), - [sym_wrong_pointer_type] = STATE(2303), - [sym_map_type] = STATE(2303), - [sym_channel_type] = STATE(2303), - [sym_shared_type] = STATE(2303), - [sym_thread_type] = STATE(2303), - [sym_atomic_type] = STATE(2303), - [sym_generic_type] = STATE(2303), - [sym_function_type] = STATE(2303), - [sym__statement_list] = STATE(4479), - [sym__statement] = STATE(3549), - [sym_simple_statement] = STATE(3582), - [sym_assert_statement] = STATE(3582), - [sym_append_statement] = STATE(3582), - [sym_send_statement] = STATE(3582), - [sym_var_declaration] = STATE(3584), - [sym_assignment_statement] = STATE(3584), - [sym_block] = STATE(3582), - [sym_defer_statement] = STATE(3582), - [sym_goto_statement] = STATE(3582), - [sym_break_statement] = STATE(3582), - [sym_continue_statement] = STATE(3582), - [sym_return_statement] = STATE(3582), + [sym__expression] = STATE(1605), + [sym__expression_without_blocks] = STATE(1747), + [sym__expression_with_blocks] = STATE(1747), + [sym_strictly_expression_list] = STATE(3649), + [sym_inc_expression] = STATE(1749), + [sym_dec_expression] = STATE(1749), + [sym_or_block_expression] = STATE(1749), + [sym_option_propagation_expression] = STATE(1749), + [sym_result_propagation_expression] = STATE(1749), + [sym_anon_struct_value_expression] = STATE(1746), + [sym_go_expression] = STATE(1749), + [sym_spawn_expression] = STATE(1749), + [sym_parenthesized_expression] = STATE(1749), + [sym_call_expression] = STATE(1749), + [sym_type_initializer] = STATE(1746), + [sym_function_literal] = STATE(1749), + [sym_reference_expression] = STATE(1745), + [sym_type_reference_expression] = STATE(3460), + [sym_unary_expression] = STATE(1749), + [sym_receive_expression] = STATE(1749), + [sym_binary_expression] = STATE(1749), + [sym_as_type_cast_expression] = STATE(1749), + [sym__max_group] = STATE(1749), + [sym_literal] = STATE(1738), + [sym_map_init_expression] = STATE(1746), + [sym_map_keyed_element] = STATE(2004), + [sym_array_creation] = STATE(1749), + [sym_fixed_array_creation] = STATE(1749), + [sym_selector_expression] = STATE(1749), + [sym_index_expression] = STATE(1749), + [sym_slice_expression] = STATE(1749), + [sym_if_expression] = STATE(1746), + [sym_compile_time_if_expression] = STATE(1746), + [sym_is_expression] = STATE(1749), + [sym_in_expression] = STATE(1749), + [sym_enum_fetch] = STATE(1749), + [sym_match_expression] = STATE(1746), + [sym_select_expression] = STATE(1746), + [sym_lock_expression] = STATE(1746), + [sym_unsafe_expression] = STATE(1746), + [sym_sql_expression] = STATE(1746), + [sym_c_string_literal] = STATE(1733), + [sym_raw_string_literal] = STATE(1733), + [sym_interpreted_string_literal] = STATE(1733), + [sym_mutability_modifiers] = STATE(843), + [sym_mutable_expression] = STATE(3278), + [sym_expression_list] = STATE(3323), + [sym_plain_type] = STATE(4121), + [sym__plain_type_without_special] = STATE(2360), + [sym_anon_struct_type] = STATE(2362), + [sym_multi_return_type] = STATE(2360), + [sym_result_type] = STATE(2360), + [sym_option_type] = STATE(2360), + [sym_qualified_type] = STATE(3460), + [sym_fixed_array_type] = STATE(2362), + [sym_array_type] = STATE(2362), + [sym_pointer_type] = STATE(2362), + [sym_wrong_pointer_type] = STATE(2362), + [sym_map_type] = STATE(2362), + [sym_channel_type] = STATE(2362), + [sym_shared_type] = STATE(2362), + [sym_thread_type] = STATE(2362), + [sym_atomic_type] = STATE(2362), + [sym_generic_type] = STATE(2362), + [sym_function_type] = STATE(2362), + [sym__statement_list] = STATE(4528), + [sym__statement] = STATE(3566), + [sym_simple_statement] = STATE(3648), + [sym_assert_statement] = STATE(3648), + [sym_append_statement] = STATE(3648), + [sym_send_statement] = STATE(3648), + [sym_var_declaration] = STATE(3649), + [sym_assignment_statement] = STATE(3649), + [sym_block] = STATE(3648), + [sym_defer_statement] = STATE(3648), + [sym_goto_statement] = STATE(3648), + [sym_break_statement] = STATE(3648), + [sym_continue_statement] = STATE(3648), + [sym_return_statement] = STATE(3648), [sym_label_definition] = STATE(62), - [sym_labeled_statement] = STATE(3582), - [sym_empty_labeled_statement] = STATE(4544), - [sym_compile_time_for_statement] = STATE(3582), - [sym_for_statement] = STATE(3582), - [sym_hash_statement] = STATE(3582), - [sym_asm_statement] = STATE(3582), - [aux_sym_map_init_expression_repeat1] = STATE(254), + [sym_labeled_statement] = STATE(3648), + [sym_empty_labeled_statement] = STATE(4547), + [sym_compile_time_for_statement] = STATE(3648), + [sym_for_statement] = STATE(3648), + [sym_hash_statement] = STATE(3648), + [sym_asm_statement] = STATE(3648), + [aux_sym_map_init_expression_repeat1] = STATE(242), [sym_identifier] = ACTIONS(307), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), [anon_sym_DOT] = ACTIONS(309), [anon_sym_LBRACE] = ACTIONS(311), - [anon_sym_RBRACE] = ACTIONS(397), + [anon_sym_RBRACE] = ACTIONS(395), [anon_sym_LPAREN] = ACTIONS(315), [anon_sym_fn] = ACTIONS(317), [anon_sym_PLUS] = ACTIONS(319), @@ -21835,99 +21851,99 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [18] = { [sym_line_comment] = STATE(18), [sym_block_comment] = STATE(18), - [sym__expression] = STATE(1601), - [sym__expression_without_blocks] = STATE(1692), - [sym__expression_with_blocks] = STATE(1692), - [sym_strictly_expression_list] = STATE(3584), - [sym_inc_expression] = STATE(1684), - [sym_dec_expression] = STATE(1684), - [sym_or_block_expression] = STATE(1684), - [sym_option_propagation_expression] = STATE(1684), - [sym_result_propagation_expression] = STATE(1684), - [sym_anon_struct_value_expression] = STATE(1677), - [sym_go_expression] = STATE(1684), - [sym_spawn_expression] = STATE(1684), - [sym_parenthesized_expression] = STATE(1684), - [sym_call_expression] = STATE(1684), - [sym_type_initializer] = STATE(1677), - [sym_function_literal] = STATE(1684), - [sym_reference_expression] = STATE(1674), - [sym_type_reference_expression] = STATE(3541), - [sym_unary_expression] = STATE(1684), - [sym_receive_expression] = STATE(1684), - [sym_binary_expression] = STATE(1684), - [sym_as_type_cast_expression] = STATE(1684), - [sym__max_group] = STATE(1684), - [sym_literal] = STATE(1698), - [sym_map_init_expression] = STATE(1677), - [sym_map_keyed_element] = STATE(2001), - [sym_array_creation] = STATE(1684), - [sym_fixed_array_creation] = STATE(1684), - [sym_selector_expression] = STATE(1684), - [sym_index_expression] = STATE(1684), - [sym_slice_expression] = STATE(1684), - [sym_if_expression] = STATE(1677), - [sym_compile_time_if_expression] = STATE(1677), - [sym_is_expression] = STATE(1684), - [sym_in_expression] = STATE(1684), - [sym_enum_fetch] = STATE(1684), - [sym_match_expression] = STATE(1677), - [sym_select_expression] = STATE(1677), - [sym_lock_expression] = STATE(1677), - [sym_unsafe_expression] = STATE(1677), - [sym_sql_expression] = STATE(1677), - [sym_c_string_literal] = STATE(1705), - [sym_raw_string_literal] = STATE(1705), - [sym_interpreted_string_literal] = STATE(1705), - [sym_mutability_modifiers] = STATE(858), - [sym_mutable_expression] = STATE(3274), - [sym_expression_list] = STATE(3288), - [sym_plain_type] = STATE(4157), - [sym__plain_type_without_special] = STATE(2302), - [sym_anon_struct_type] = STATE(2303), - [sym_multi_return_type] = STATE(2302), - [sym_result_type] = STATE(2302), - [sym_option_type] = STATE(2302), - [sym_qualified_type] = STATE(3541), - [sym_fixed_array_type] = STATE(2303), - [sym_array_type] = STATE(2303), - [sym_pointer_type] = STATE(2303), - [sym_wrong_pointer_type] = STATE(2303), - [sym_map_type] = STATE(2303), - [sym_channel_type] = STATE(2303), - [sym_shared_type] = STATE(2303), - [sym_thread_type] = STATE(2303), - [sym_atomic_type] = STATE(2303), - [sym_generic_type] = STATE(2303), - [sym_function_type] = STATE(2303), - [sym__statement_list] = STATE(4380), - [sym__statement] = STATE(3549), - [sym_simple_statement] = STATE(3582), - [sym_assert_statement] = STATE(3582), - [sym_append_statement] = STATE(3582), - [sym_send_statement] = STATE(3582), - [sym_var_declaration] = STATE(3584), - [sym_assignment_statement] = STATE(3584), - [sym_block] = STATE(3582), - [sym_defer_statement] = STATE(3582), - [sym_goto_statement] = STATE(3582), - [sym_break_statement] = STATE(3582), - [sym_continue_statement] = STATE(3582), - [sym_return_statement] = STATE(3582), + [sym__expression] = STATE(1605), + [sym__expression_without_blocks] = STATE(1747), + [sym__expression_with_blocks] = STATE(1747), + [sym_strictly_expression_list] = STATE(3649), + [sym_inc_expression] = STATE(1749), + [sym_dec_expression] = STATE(1749), + [sym_or_block_expression] = STATE(1749), + [sym_option_propagation_expression] = STATE(1749), + [sym_result_propagation_expression] = STATE(1749), + [sym_anon_struct_value_expression] = STATE(1746), + [sym_go_expression] = STATE(1749), + [sym_spawn_expression] = STATE(1749), + [sym_parenthesized_expression] = STATE(1749), + [sym_call_expression] = STATE(1749), + [sym_type_initializer] = STATE(1746), + [sym_function_literal] = STATE(1749), + [sym_reference_expression] = STATE(1745), + [sym_type_reference_expression] = STATE(3460), + [sym_unary_expression] = STATE(1749), + [sym_receive_expression] = STATE(1749), + [sym_binary_expression] = STATE(1749), + [sym_as_type_cast_expression] = STATE(1749), + [sym__max_group] = STATE(1749), + [sym_literal] = STATE(1738), + [sym_map_init_expression] = STATE(1746), + [sym_map_keyed_element] = STATE(2004), + [sym_array_creation] = STATE(1749), + [sym_fixed_array_creation] = STATE(1749), + [sym_selector_expression] = STATE(1749), + [sym_index_expression] = STATE(1749), + [sym_slice_expression] = STATE(1749), + [sym_if_expression] = STATE(1746), + [sym_compile_time_if_expression] = STATE(1746), + [sym_is_expression] = STATE(1749), + [sym_in_expression] = STATE(1749), + [sym_enum_fetch] = STATE(1749), + [sym_match_expression] = STATE(1746), + [sym_select_expression] = STATE(1746), + [sym_lock_expression] = STATE(1746), + [sym_unsafe_expression] = STATE(1746), + [sym_sql_expression] = STATE(1746), + [sym_c_string_literal] = STATE(1733), + [sym_raw_string_literal] = STATE(1733), + [sym_interpreted_string_literal] = STATE(1733), + [sym_mutability_modifiers] = STATE(843), + [sym_mutable_expression] = STATE(3278), + [sym_expression_list] = STATE(3323), + [sym_plain_type] = STATE(4121), + [sym__plain_type_without_special] = STATE(2360), + [sym_anon_struct_type] = STATE(2362), + [sym_multi_return_type] = STATE(2360), + [sym_result_type] = STATE(2360), + [sym_option_type] = STATE(2360), + [sym_qualified_type] = STATE(3460), + [sym_fixed_array_type] = STATE(2362), + [sym_array_type] = STATE(2362), + [sym_pointer_type] = STATE(2362), + [sym_wrong_pointer_type] = STATE(2362), + [sym_map_type] = STATE(2362), + [sym_channel_type] = STATE(2362), + [sym_shared_type] = STATE(2362), + [sym_thread_type] = STATE(2362), + [sym_atomic_type] = STATE(2362), + [sym_generic_type] = STATE(2362), + [sym_function_type] = STATE(2362), + [sym__statement_list] = STATE(4363), + [sym__statement] = STATE(3566), + [sym_simple_statement] = STATE(3648), + [sym_assert_statement] = STATE(3648), + [sym_append_statement] = STATE(3648), + [sym_send_statement] = STATE(3648), + [sym_var_declaration] = STATE(3649), + [sym_assignment_statement] = STATE(3649), + [sym_block] = STATE(3648), + [sym_defer_statement] = STATE(3648), + [sym_goto_statement] = STATE(3648), + [sym_break_statement] = STATE(3648), + [sym_continue_statement] = STATE(3648), + [sym_return_statement] = STATE(3648), [sym_label_definition] = STATE(62), - [sym_labeled_statement] = STATE(3582), - [sym_empty_labeled_statement] = STATE(4544), - [sym_compile_time_for_statement] = STATE(3582), - [sym_for_statement] = STATE(3582), - [sym_hash_statement] = STATE(3582), - [sym_asm_statement] = STATE(3582), - [aux_sym_map_init_expression_repeat1] = STATE(274), + [sym_labeled_statement] = STATE(3648), + [sym_empty_labeled_statement] = STATE(4547), + [sym_compile_time_for_statement] = STATE(3648), + [sym_for_statement] = STATE(3648), + [sym_hash_statement] = STATE(3648), + [sym_asm_statement] = STATE(3648), + [aux_sym_map_init_expression_repeat1] = STATE(242), [sym_identifier] = ACTIONS(307), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), [anon_sym_DOT] = ACTIONS(309), [anon_sym_LBRACE] = ACTIONS(311), - [anon_sym_RBRACE] = ACTIONS(399), + [anon_sym_RBRACE] = ACTIONS(397), [anon_sym_LPAREN] = ACTIONS(315), [anon_sym_fn] = ACTIONS(317), [anon_sym_PLUS] = ACTIONS(319), @@ -21986,99 +22002,99 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [19] = { [sym_line_comment] = STATE(19), [sym_block_comment] = STATE(19), - [sym__expression] = STATE(1601), - [sym__expression_without_blocks] = STATE(1692), - [sym__expression_with_blocks] = STATE(1692), - [sym_strictly_expression_list] = STATE(3584), - [sym_inc_expression] = STATE(1684), - [sym_dec_expression] = STATE(1684), - [sym_or_block_expression] = STATE(1684), - [sym_option_propagation_expression] = STATE(1684), - [sym_result_propagation_expression] = STATE(1684), - [sym_anon_struct_value_expression] = STATE(1677), - [sym_go_expression] = STATE(1684), - [sym_spawn_expression] = STATE(1684), - [sym_parenthesized_expression] = STATE(1684), - [sym_call_expression] = STATE(1684), - [sym_type_initializer] = STATE(1677), - [sym_function_literal] = STATE(1684), - [sym_reference_expression] = STATE(1674), - [sym_type_reference_expression] = STATE(3541), - [sym_unary_expression] = STATE(1684), - [sym_receive_expression] = STATE(1684), - [sym_binary_expression] = STATE(1684), - [sym_as_type_cast_expression] = STATE(1684), - [sym__max_group] = STATE(1684), - [sym_literal] = STATE(1698), - [sym_map_init_expression] = STATE(1677), - [sym_map_keyed_element] = STATE(2001), - [sym_array_creation] = STATE(1684), - [sym_fixed_array_creation] = STATE(1684), - [sym_selector_expression] = STATE(1684), - [sym_index_expression] = STATE(1684), - [sym_slice_expression] = STATE(1684), - [sym_if_expression] = STATE(1677), - [sym_compile_time_if_expression] = STATE(1677), - [sym_is_expression] = STATE(1684), - [sym_in_expression] = STATE(1684), - [sym_enum_fetch] = STATE(1684), - [sym_match_expression] = STATE(1677), - [sym_select_expression] = STATE(1677), - [sym_lock_expression] = STATE(1677), - [sym_unsafe_expression] = STATE(1677), - [sym_sql_expression] = STATE(1677), - [sym_c_string_literal] = STATE(1705), - [sym_raw_string_literal] = STATE(1705), - [sym_interpreted_string_literal] = STATE(1705), - [sym_mutability_modifiers] = STATE(858), - [sym_mutable_expression] = STATE(3274), - [sym_expression_list] = STATE(3288), - [sym_plain_type] = STATE(4157), - [sym__plain_type_without_special] = STATE(2302), - [sym_anon_struct_type] = STATE(2303), - [sym_multi_return_type] = STATE(2302), - [sym_result_type] = STATE(2302), - [sym_option_type] = STATE(2302), - [sym_qualified_type] = STATE(3541), - [sym_fixed_array_type] = STATE(2303), - [sym_array_type] = STATE(2303), - [sym_pointer_type] = STATE(2303), - [sym_wrong_pointer_type] = STATE(2303), - [sym_map_type] = STATE(2303), - [sym_channel_type] = STATE(2303), - [sym_shared_type] = STATE(2303), - [sym_thread_type] = STATE(2303), - [sym_atomic_type] = STATE(2303), - [sym_generic_type] = STATE(2303), - [sym_function_type] = STATE(2303), - [sym__statement_list] = STATE(4516), - [sym__statement] = STATE(3549), - [sym_simple_statement] = STATE(3582), - [sym_assert_statement] = STATE(3582), - [sym_append_statement] = STATE(3582), - [sym_send_statement] = STATE(3582), - [sym_var_declaration] = STATE(3584), - [sym_assignment_statement] = STATE(3584), - [sym_block] = STATE(3582), - [sym_defer_statement] = STATE(3582), - [sym_goto_statement] = STATE(3582), - [sym_break_statement] = STATE(3582), - [sym_continue_statement] = STATE(3582), - [sym_return_statement] = STATE(3582), + [sym__expression] = STATE(1605), + [sym__expression_without_blocks] = STATE(1747), + [sym__expression_with_blocks] = STATE(1747), + [sym_strictly_expression_list] = STATE(3649), + [sym_inc_expression] = STATE(1749), + [sym_dec_expression] = STATE(1749), + [sym_or_block_expression] = STATE(1749), + [sym_option_propagation_expression] = STATE(1749), + [sym_result_propagation_expression] = STATE(1749), + [sym_anon_struct_value_expression] = STATE(1746), + [sym_go_expression] = STATE(1749), + [sym_spawn_expression] = STATE(1749), + [sym_parenthesized_expression] = STATE(1749), + [sym_call_expression] = STATE(1749), + [sym_type_initializer] = STATE(1746), + [sym_function_literal] = STATE(1749), + [sym_reference_expression] = STATE(1745), + [sym_type_reference_expression] = STATE(3460), + [sym_unary_expression] = STATE(1749), + [sym_receive_expression] = STATE(1749), + [sym_binary_expression] = STATE(1749), + [sym_as_type_cast_expression] = STATE(1749), + [sym__max_group] = STATE(1749), + [sym_literal] = STATE(1738), + [sym_map_init_expression] = STATE(1746), + [sym_map_keyed_element] = STATE(2004), + [sym_array_creation] = STATE(1749), + [sym_fixed_array_creation] = STATE(1749), + [sym_selector_expression] = STATE(1749), + [sym_index_expression] = STATE(1749), + [sym_slice_expression] = STATE(1749), + [sym_if_expression] = STATE(1746), + [sym_compile_time_if_expression] = STATE(1746), + [sym_is_expression] = STATE(1749), + [sym_in_expression] = STATE(1749), + [sym_enum_fetch] = STATE(1749), + [sym_match_expression] = STATE(1746), + [sym_select_expression] = STATE(1746), + [sym_lock_expression] = STATE(1746), + [sym_unsafe_expression] = STATE(1746), + [sym_sql_expression] = STATE(1746), + [sym_c_string_literal] = STATE(1733), + [sym_raw_string_literal] = STATE(1733), + [sym_interpreted_string_literal] = STATE(1733), + [sym_mutability_modifiers] = STATE(843), + [sym_mutable_expression] = STATE(3278), + [sym_expression_list] = STATE(3323), + [sym_plain_type] = STATE(4121), + [sym__plain_type_without_special] = STATE(2360), + [sym_anon_struct_type] = STATE(2362), + [sym_multi_return_type] = STATE(2360), + [sym_result_type] = STATE(2360), + [sym_option_type] = STATE(2360), + [sym_qualified_type] = STATE(3460), + [sym_fixed_array_type] = STATE(2362), + [sym_array_type] = STATE(2362), + [sym_pointer_type] = STATE(2362), + [sym_wrong_pointer_type] = STATE(2362), + [sym_map_type] = STATE(2362), + [sym_channel_type] = STATE(2362), + [sym_shared_type] = STATE(2362), + [sym_thread_type] = STATE(2362), + [sym_atomic_type] = STATE(2362), + [sym_generic_type] = STATE(2362), + [sym_function_type] = STATE(2362), + [sym__statement_list] = STATE(4514), + [sym__statement] = STATE(3566), + [sym_simple_statement] = STATE(3648), + [sym_assert_statement] = STATE(3648), + [sym_append_statement] = STATE(3648), + [sym_send_statement] = STATE(3648), + [sym_var_declaration] = STATE(3649), + [sym_assignment_statement] = STATE(3649), + [sym_block] = STATE(3648), + [sym_defer_statement] = STATE(3648), + [sym_goto_statement] = STATE(3648), + [sym_break_statement] = STATE(3648), + [sym_continue_statement] = STATE(3648), + [sym_return_statement] = STATE(3648), [sym_label_definition] = STATE(62), - [sym_labeled_statement] = STATE(3582), - [sym_empty_labeled_statement] = STATE(4544), - [sym_compile_time_for_statement] = STATE(3582), - [sym_for_statement] = STATE(3582), - [sym_hash_statement] = STATE(3582), - [sym_asm_statement] = STATE(3582), - [aux_sym_map_init_expression_repeat1] = STATE(274), + [sym_labeled_statement] = STATE(3648), + [sym_empty_labeled_statement] = STATE(4547), + [sym_compile_time_for_statement] = STATE(3648), + [sym_for_statement] = STATE(3648), + [sym_hash_statement] = STATE(3648), + [sym_asm_statement] = STATE(3648), + [aux_sym_map_init_expression_repeat1] = STATE(242), [sym_identifier] = ACTIONS(307), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), [anon_sym_DOT] = ACTIONS(309), [anon_sym_LBRACE] = ACTIONS(311), - [anon_sym_RBRACE] = ACTIONS(401), + [anon_sym_RBRACE] = ACTIONS(399), [anon_sym_LPAREN] = ACTIONS(315), [anon_sym_fn] = ACTIONS(317), [anon_sym_PLUS] = ACTIONS(319), @@ -22137,99 +22153,99 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [20] = { [sym_line_comment] = STATE(20), [sym_block_comment] = STATE(20), - [sym__expression] = STATE(1601), - [sym__expression_without_blocks] = STATE(1692), - [sym__expression_with_blocks] = STATE(1692), - [sym_strictly_expression_list] = STATE(3584), - [sym_inc_expression] = STATE(1684), - [sym_dec_expression] = STATE(1684), - [sym_or_block_expression] = STATE(1684), - [sym_option_propagation_expression] = STATE(1684), - [sym_result_propagation_expression] = STATE(1684), - [sym_anon_struct_value_expression] = STATE(1677), - [sym_go_expression] = STATE(1684), - [sym_spawn_expression] = STATE(1684), - [sym_parenthesized_expression] = STATE(1684), - [sym_call_expression] = STATE(1684), - [sym_type_initializer] = STATE(1677), - [sym_function_literal] = STATE(1684), - [sym_reference_expression] = STATE(1674), - [sym_type_reference_expression] = STATE(3541), - [sym_unary_expression] = STATE(1684), - [sym_receive_expression] = STATE(1684), - [sym_binary_expression] = STATE(1684), - [sym_as_type_cast_expression] = STATE(1684), - [sym__max_group] = STATE(1684), - [sym_literal] = STATE(1698), - [sym_map_init_expression] = STATE(1677), - [sym_map_keyed_element] = STATE(2001), - [sym_array_creation] = STATE(1684), - [sym_fixed_array_creation] = STATE(1684), - [sym_selector_expression] = STATE(1684), - [sym_index_expression] = STATE(1684), - [sym_slice_expression] = STATE(1684), - [sym_if_expression] = STATE(1677), - [sym_compile_time_if_expression] = STATE(1677), - [sym_is_expression] = STATE(1684), - [sym_in_expression] = STATE(1684), - [sym_enum_fetch] = STATE(1684), - [sym_match_expression] = STATE(1677), - [sym_select_expression] = STATE(1677), - [sym_lock_expression] = STATE(1677), - [sym_unsafe_expression] = STATE(1677), - [sym_sql_expression] = STATE(1677), - [sym_c_string_literal] = STATE(1705), - [sym_raw_string_literal] = STATE(1705), - [sym_interpreted_string_literal] = STATE(1705), - [sym_mutability_modifiers] = STATE(858), - [sym_mutable_expression] = STATE(3274), - [sym_expression_list] = STATE(3288), - [sym_plain_type] = STATE(4157), - [sym__plain_type_without_special] = STATE(2302), - [sym_anon_struct_type] = STATE(2303), - [sym_multi_return_type] = STATE(2302), - [sym_result_type] = STATE(2302), - [sym_option_type] = STATE(2302), - [sym_qualified_type] = STATE(3541), - [sym_fixed_array_type] = STATE(2303), - [sym_array_type] = STATE(2303), - [sym_pointer_type] = STATE(2303), - [sym_wrong_pointer_type] = STATE(2303), - [sym_map_type] = STATE(2303), - [sym_channel_type] = STATE(2303), - [sym_shared_type] = STATE(2303), - [sym_thread_type] = STATE(2303), - [sym_atomic_type] = STATE(2303), - [sym_generic_type] = STATE(2303), - [sym_function_type] = STATE(2303), - [sym__statement_list] = STATE(4390), - [sym__statement] = STATE(3549), - [sym_simple_statement] = STATE(3582), - [sym_assert_statement] = STATE(3582), - [sym_append_statement] = STATE(3582), - [sym_send_statement] = STATE(3582), - [sym_var_declaration] = STATE(3584), - [sym_assignment_statement] = STATE(3584), - [sym_block] = STATE(3582), - [sym_defer_statement] = STATE(3582), - [sym_goto_statement] = STATE(3582), - [sym_break_statement] = STATE(3582), - [sym_continue_statement] = STATE(3582), - [sym_return_statement] = STATE(3582), + [sym__expression] = STATE(1605), + [sym__expression_without_blocks] = STATE(1747), + [sym__expression_with_blocks] = STATE(1747), + [sym_strictly_expression_list] = STATE(3649), + [sym_inc_expression] = STATE(1749), + [sym_dec_expression] = STATE(1749), + [sym_or_block_expression] = STATE(1749), + [sym_option_propagation_expression] = STATE(1749), + [sym_result_propagation_expression] = STATE(1749), + [sym_anon_struct_value_expression] = STATE(1746), + [sym_go_expression] = STATE(1749), + [sym_spawn_expression] = STATE(1749), + [sym_parenthesized_expression] = STATE(1749), + [sym_call_expression] = STATE(1749), + [sym_type_initializer] = STATE(1746), + [sym_function_literal] = STATE(1749), + [sym_reference_expression] = STATE(1745), + [sym_type_reference_expression] = STATE(3460), + [sym_unary_expression] = STATE(1749), + [sym_receive_expression] = STATE(1749), + [sym_binary_expression] = STATE(1749), + [sym_as_type_cast_expression] = STATE(1749), + [sym__max_group] = STATE(1749), + [sym_literal] = STATE(1738), + [sym_map_init_expression] = STATE(1746), + [sym_map_keyed_element] = STATE(2004), + [sym_array_creation] = STATE(1749), + [sym_fixed_array_creation] = STATE(1749), + [sym_selector_expression] = STATE(1749), + [sym_index_expression] = STATE(1749), + [sym_slice_expression] = STATE(1749), + [sym_if_expression] = STATE(1746), + [sym_compile_time_if_expression] = STATE(1746), + [sym_is_expression] = STATE(1749), + [sym_in_expression] = STATE(1749), + [sym_enum_fetch] = STATE(1749), + [sym_match_expression] = STATE(1746), + [sym_select_expression] = STATE(1746), + [sym_lock_expression] = STATE(1746), + [sym_unsafe_expression] = STATE(1746), + [sym_sql_expression] = STATE(1746), + [sym_c_string_literal] = STATE(1733), + [sym_raw_string_literal] = STATE(1733), + [sym_interpreted_string_literal] = STATE(1733), + [sym_mutability_modifiers] = STATE(843), + [sym_mutable_expression] = STATE(3278), + [sym_expression_list] = STATE(3323), + [sym_plain_type] = STATE(4121), + [sym__plain_type_without_special] = STATE(2360), + [sym_anon_struct_type] = STATE(2362), + [sym_multi_return_type] = STATE(2360), + [sym_result_type] = STATE(2360), + [sym_option_type] = STATE(2360), + [sym_qualified_type] = STATE(3460), + [sym_fixed_array_type] = STATE(2362), + [sym_array_type] = STATE(2362), + [sym_pointer_type] = STATE(2362), + [sym_wrong_pointer_type] = STATE(2362), + [sym_map_type] = STATE(2362), + [sym_channel_type] = STATE(2362), + [sym_shared_type] = STATE(2362), + [sym_thread_type] = STATE(2362), + [sym_atomic_type] = STATE(2362), + [sym_generic_type] = STATE(2362), + [sym_function_type] = STATE(2362), + [sym__statement_list] = STATE(4533), + [sym__statement] = STATE(3566), + [sym_simple_statement] = STATE(3648), + [sym_assert_statement] = STATE(3648), + [sym_append_statement] = STATE(3648), + [sym_send_statement] = STATE(3648), + [sym_var_declaration] = STATE(3649), + [sym_assignment_statement] = STATE(3649), + [sym_block] = STATE(3648), + [sym_defer_statement] = STATE(3648), + [sym_goto_statement] = STATE(3648), + [sym_break_statement] = STATE(3648), + [sym_continue_statement] = STATE(3648), + [sym_return_statement] = STATE(3648), [sym_label_definition] = STATE(62), - [sym_labeled_statement] = STATE(3582), - [sym_empty_labeled_statement] = STATE(4544), - [sym_compile_time_for_statement] = STATE(3582), - [sym_for_statement] = STATE(3582), - [sym_hash_statement] = STATE(3582), - [sym_asm_statement] = STATE(3582), - [aux_sym_map_init_expression_repeat1] = STATE(274), + [sym_labeled_statement] = STATE(3648), + [sym_empty_labeled_statement] = STATE(4547), + [sym_compile_time_for_statement] = STATE(3648), + [sym_for_statement] = STATE(3648), + [sym_hash_statement] = STATE(3648), + [sym_asm_statement] = STATE(3648), + [aux_sym_map_init_expression_repeat1] = STATE(259), [sym_identifier] = ACTIONS(307), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), [anon_sym_DOT] = ACTIONS(309), [anon_sym_LBRACE] = ACTIONS(311), - [anon_sym_RBRACE] = ACTIONS(403), + [anon_sym_RBRACE] = ACTIONS(401), [anon_sym_LPAREN] = ACTIONS(315), [anon_sym_fn] = ACTIONS(317), [anon_sym_PLUS] = ACTIONS(319), @@ -22288,99 +22304,99 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [21] = { [sym_line_comment] = STATE(21), [sym_block_comment] = STATE(21), - [sym__expression] = STATE(1601), - [sym__expression_without_blocks] = STATE(1692), - [sym__expression_with_blocks] = STATE(1692), - [sym_strictly_expression_list] = STATE(3584), - [sym_inc_expression] = STATE(1684), - [sym_dec_expression] = STATE(1684), - [sym_or_block_expression] = STATE(1684), - [sym_option_propagation_expression] = STATE(1684), - [sym_result_propagation_expression] = STATE(1684), - [sym_anon_struct_value_expression] = STATE(1677), - [sym_go_expression] = STATE(1684), - [sym_spawn_expression] = STATE(1684), - [sym_parenthesized_expression] = STATE(1684), - [sym_call_expression] = STATE(1684), - [sym_type_initializer] = STATE(1677), - [sym_function_literal] = STATE(1684), - [sym_reference_expression] = STATE(1674), - [sym_type_reference_expression] = STATE(3541), - [sym_unary_expression] = STATE(1684), - [sym_receive_expression] = STATE(1684), - [sym_binary_expression] = STATE(1684), - [sym_as_type_cast_expression] = STATE(1684), - [sym__max_group] = STATE(1684), - [sym_literal] = STATE(1698), - [sym_map_init_expression] = STATE(1677), - [sym_map_keyed_element] = STATE(2001), - [sym_array_creation] = STATE(1684), - [sym_fixed_array_creation] = STATE(1684), - [sym_selector_expression] = STATE(1684), - [sym_index_expression] = STATE(1684), - [sym_slice_expression] = STATE(1684), - [sym_if_expression] = STATE(1677), - [sym_compile_time_if_expression] = STATE(1677), - [sym_is_expression] = STATE(1684), - [sym_in_expression] = STATE(1684), - [sym_enum_fetch] = STATE(1684), - [sym_match_expression] = STATE(1677), - [sym_select_expression] = STATE(1677), - [sym_lock_expression] = STATE(1677), - [sym_unsafe_expression] = STATE(1677), - [sym_sql_expression] = STATE(1677), - [sym_c_string_literal] = STATE(1705), - [sym_raw_string_literal] = STATE(1705), - [sym_interpreted_string_literal] = STATE(1705), - [sym_mutability_modifiers] = STATE(858), - [sym_mutable_expression] = STATE(3274), - [sym_expression_list] = STATE(3288), - [sym_plain_type] = STATE(4157), - [sym__plain_type_without_special] = STATE(2302), - [sym_anon_struct_type] = STATE(2303), - [sym_multi_return_type] = STATE(2302), - [sym_result_type] = STATE(2302), - [sym_option_type] = STATE(2302), - [sym_qualified_type] = STATE(3541), - [sym_fixed_array_type] = STATE(2303), - [sym_array_type] = STATE(2303), - [sym_pointer_type] = STATE(2303), - [sym_wrong_pointer_type] = STATE(2303), - [sym_map_type] = STATE(2303), - [sym_channel_type] = STATE(2303), - [sym_shared_type] = STATE(2303), - [sym_thread_type] = STATE(2303), - [sym_atomic_type] = STATE(2303), - [sym_generic_type] = STATE(2303), - [sym_function_type] = STATE(2303), - [sym__statement_list] = STATE(4501), - [sym__statement] = STATE(3549), - [sym_simple_statement] = STATE(3582), - [sym_assert_statement] = STATE(3582), - [sym_append_statement] = STATE(3582), - [sym_send_statement] = STATE(3582), - [sym_var_declaration] = STATE(3584), - [sym_assignment_statement] = STATE(3584), - [sym_block] = STATE(3582), - [sym_defer_statement] = STATE(3582), - [sym_goto_statement] = STATE(3582), - [sym_break_statement] = STATE(3582), - [sym_continue_statement] = STATE(3582), - [sym_return_statement] = STATE(3582), + [sym__expression] = STATE(1605), + [sym__expression_without_blocks] = STATE(1747), + [sym__expression_with_blocks] = STATE(1747), + [sym_strictly_expression_list] = STATE(3649), + [sym_inc_expression] = STATE(1749), + [sym_dec_expression] = STATE(1749), + [sym_or_block_expression] = STATE(1749), + [sym_option_propagation_expression] = STATE(1749), + [sym_result_propagation_expression] = STATE(1749), + [sym_anon_struct_value_expression] = STATE(1746), + [sym_go_expression] = STATE(1749), + [sym_spawn_expression] = STATE(1749), + [sym_parenthesized_expression] = STATE(1749), + [sym_call_expression] = STATE(1749), + [sym_type_initializer] = STATE(1746), + [sym_function_literal] = STATE(1749), + [sym_reference_expression] = STATE(1745), + [sym_type_reference_expression] = STATE(3460), + [sym_unary_expression] = STATE(1749), + [sym_receive_expression] = STATE(1749), + [sym_binary_expression] = STATE(1749), + [sym_as_type_cast_expression] = STATE(1749), + [sym__max_group] = STATE(1749), + [sym_literal] = STATE(1738), + [sym_map_init_expression] = STATE(1746), + [sym_map_keyed_element] = STATE(2004), + [sym_array_creation] = STATE(1749), + [sym_fixed_array_creation] = STATE(1749), + [sym_selector_expression] = STATE(1749), + [sym_index_expression] = STATE(1749), + [sym_slice_expression] = STATE(1749), + [sym_if_expression] = STATE(1746), + [sym_compile_time_if_expression] = STATE(1746), + [sym_is_expression] = STATE(1749), + [sym_in_expression] = STATE(1749), + [sym_enum_fetch] = STATE(1749), + [sym_match_expression] = STATE(1746), + [sym_select_expression] = STATE(1746), + [sym_lock_expression] = STATE(1746), + [sym_unsafe_expression] = STATE(1746), + [sym_sql_expression] = STATE(1746), + [sym_c_string_literal] = STATE(1733), + [sym_raw_string_literal] = STATE(1733), + [sym_interpreted_string_literal] = STATE(1733), + [sym_mutability_modifiers] = STATE(843), + [sym_mutable_expression] = STATE(3278), + [sym_expression_list] = STATE(3323), + [sym_plain_type] = STATE(4121), + [sym__plain_type_without_special] = STATE(2360), + [sym_anon_struct_type] = STATE(2362), + [sym_multi_return_type] = STATE(2360), + [sym_result_type] = STATE(2360), + [sym_option_type] = STATE(2360), + [sym_qualified_type] = STATE(3460), + [sym_fixed_array_type] = STATE(2362), + [sym_array_type] = STATE(2362), + [sym_pointer_type] = STATE(2362), + [sym_wrong_pointer_type] = STATE(2362), + [sym_map_type] = STATE(2362), + [sym_channel_type] = STATE(2362), + [sym_shared_type] = STATE(2362), + [sym_thread_type] = STATE(2362), + [sym_atomic_type] = STATE(2362), + [sym_generic_type] = STATE(2362), + [sym_function_type] = STATE(2362), + [sym__statement_list] = STATE(4364), + [sym__statement] = STATE(3566), + [sym_simple_statement] = STATE(3648), + [sym_assert_statement] = STATE(3648), + [sym_append_statement] = STATE(3648), + [sym_send_statement] = STATE(3648), + [sym_var_declaration] = STATE(3649), + [sym_assignment_statement] = STATE(3649), + [sym_block] = STATE(3648), + [sym_defer_statement] = STATE(3648), + [sym_goto_statement] = STATE(3648), + [sym_break_statement] = STATE(3648), + [sym_continue_statement] = STATE(3648), + [sym_return_statement] = STATE(3648), [sym_label_definition] = STATE(62), - [sym_labeled_statement] = STATE(3582), - [sym_empty_labeled_statement] = STATE(4544), - [sym_compile_time_for_statement] = STATE(3582), - [sym_for_statement] = STATE(3582), - [sym_hash_statement] = STATE(3582), - [sym_asm_statement] = STATE(3582), - [aux_sym_map_init_expression_repeat1] = STATE(274), + [sym_labeled_statement] = STATE(3648), + [sym_empty_labeled_statement] = STATE(4547), + [sym_compile_time_for_statement] = STATE(3648), + [sym_for_statement] = STATE(3648), + [sym_hash_statement] = STATE(3648), + [sym_asm_statement] = STATE(3648), + [aux_sym_map_init_expression_repeat1] = STATE(242), [sym_identifier] = ACTIONS(307), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), [anon_sym_DOT] = ACTIONS(309), [anon_sym_LBRACE] = ACTIONS(311), - [anon_sym_RBRACE] = ACTIONS(405), + [anon_sym_RBRACE] = ACTIONS(403), [anon_sym_LPAREN] = ACTIONS(315), [anon_sym_fn] = ACTIONS(317), [anon_sym_PLUS] = ACTIONS(319), @@ -22439,99 +22455,99 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [22] = { [sym_line_comment] = STATE(22), [sym_block_comment] = STATE(22), - [sym__expression] = STATE(1601), - [sym__expression_without_blocks] = STATE(1692), - [sym__expression_with_blocks] = STATE(1692), - [sym_strictly_expression_list] = STATE(3584), - [sym_inc_expression] = STATE(1684), - [sym_dec_expression] = STATE(1684), - [sym_or_block_expression] = STATE(1684), - [sym_option_propagation_expression] = STATE(1684), - [sym_result_propagation_expression] = STATE(1684), - [sym_anon_struct_value_expression] = STATE(1677), - [sym_go_expression] = STATE(1684), - [sym_spawn_expression] = STATE(1684), - [sym_parenthesized_expression] = STATE(1684), - [sym_call_expression] = STATE(1684), - [sym_type_initializer] = STATE(1677), - [sym_function_literal] = STATE(1684), - [sym_reference_expression] = STATE(1674), - [sym_type_reference_expression] = STATE(3541), - [sym_unary_expression] = STATE(1684), - [sym_receive_expression] = STATE(1684), - [sym_binary_expression] = STATE(1684), - [sym_as_type_cast_expression] = STATE(1684), - [sym__max_group] = STATE(1684), - [sym_literal] = STATE(1698), - [sym_map_init_expression] = STATE(1677), - [sym_map_keyed_element] = STATE(2001), - [sym_array_creation] = STATE(1684), - [sym_fixed_array_creation] = STATE(1684), - [sym_selector_expression] = STATE(1684), - [sym_index_expression] = STATE(1684), - [sym_slice_expression] = STATE(1684), - [sym_if_expression] = STATE(1677), - [sym_compile_time_if_expression] = STATE(1677), - [sym_is_expression] = STATE(1684), - [sym_in_expression] = STATE(1684), - [sym_enum_fetch] = STATE(1684), - [sym_match_expression] = STATE(1677), - [sym_select_expression] = STATE(1677), - [sym_lock_expression] = STATE(1677), - [sym_unsafe_expression] = STATE(1677), - [sym_sql_expression] = STATE(1677), - [sym_c_string_literal] = STATE(1705), - [sym_raw_string_literal] = STATE(1705), - [sym_interpreted_string_literal] = STATE(1705), - [sym_mutability_modifiers] = STATE(858), - [sym_mutable_expression] = STATE(3274), - [sym_expression_list] = STATE(3288), - [sym_plain_type] = STATE(4157), - [sym__plain_type_without_special] = STATE(2302), - [sym_anon_struct_type] = STATE(2303), - [sym_multi_return_type] = STATE(2302), - [sym_result_type] = STATE(2302), - [sym_option_type] = STATE(2302), - [sym_qualified_type] = STATE(3541), - [sym_fixed_array_type] = STATE(2303), - [sym_array_type] = STATE(2303), - [sym_pointer_type] = STATE(2303), - [sym_wrong_pointer_type] = STATE(2303), - [sym_map_type] = STATE(2303), - [sym_channel_type] = STATE(2303), - [sym_shared_type] = STATE(2303), - [sym_thread_type] = STATE(2303), - [sym_atomic_type] = STATE(2303), - [sym_generic_type] = STATE(2303), - [sym_function_type] = STATE(2303), - [sym__statement_list] = STATE(4551), - [sym__statement] = STATE(3549), - [sym_simple_statement] = STATE(3582), - [sym_assert_statement] = STATE(3582), - [sym_append_statement] = STATE(3582), - [sym_send_statement] = STATE(3582), - [sym_var_declaration] = STATE(3584), - [sym_assignment_statement] = STATE(3584), - [sym_block] = STATE(3582), - [sym_defer_statement] = STATE(3582), - [sym_goto_statement] = STATE(3582), - [sym_break_statement] = STATE(3582), - [sym_continue_statement] = STATE(3582), - [sym_return_statement] = STATE(3582), + [sym__expression] = STATE(1605), + [sym__expression_without_blocks] = STATE(1747), + [sym__expression_with_blocks] = STATE(1747), + [sym_strictly_expression_list] = STATE(3649), + [sym_inc_expression] = STATE(1749), + [sym_dec_expression] = STATE(1749), + [sym_or_block_expression] = STATE(1749), + [sym_option_propagation_expression] = STATE(1749), + [sym_result_propagation_expression] = STATE(1749), + [sym_anon_struct_value_expression] = STATE(1746), + [sym_go_expression] = STATE(1749), + [sym_spawn_expression] = STATE(1749), + [sym_parenthesized_expression] = STATE(1749), + [sym_call_expression] = STATE(1749), + [sym_type_initializer] = STATE(1746), + [sym_function_literal] = STATE(1749), + [sym_reference_expression] = STATE(1745), + [sym_type_reference_expression] = STATE(3460), + [sym_unary_expression] = STATE(1749), + [sym_receive_expression] = STATE(1749), + [sym_binary_expression] = STATE(1749), + [sym_as_type_cast_expression] = STATE(1749), + [sym__max_group] = STATE(1749), + [sym_literal] = STATE(1738), + [sym_map_init_expression] = STATE(1746), + [sym_map_keyed_element] = STATE(2004), + [sym_array_creation] = STATE(1749), + [sym_fixed_array_creation] = STATE(1749), + [sym_selector_expression] = STATE(1749), + [sym_index_expression] = STATE(1749), + [sym_slice_expression] = STATE(1749), + [sym_if_expression] = STATE(1746), + [sym_compile_time_if_expression] = STATE(1746), + [sym_is_expression] = STATE(1749), + [sym_in_expression] = STATE(1749), + [sym_enum_fetch] = STATE(1749), + [sym_match_expression] = STATE(1746), + [sym_select_expression] = STATE(1746), + [sym_lock_expression] = STATE(1746), + [sym_unsafe_expression] = STATE(1746), + [sym_sql_expression] = STATE(1746), + [sym_c_string_literal] = STATE(1733), + [sym_raw_string_literal] = STATE(1733), + [sym_interpreted_string_literal] = STATE(1733), + [sym_mutability_modifiers] = STATE(843), + [sym_mutable_expression] = STATE(3278), + [sym_expression_list] = STATE(3323), + [sym_plain_type] = STATE(4121), + [sym__plain_type_without_special] = STATE(2360), + [sym_anon_struct_type] = STATE(2362), + [sym_multi_return_type] = STATE(2360), + [sym_result_type] = STATE(2360), + [sym_option_type] = STATE(2360), + [sym_qualified_type] = STATE(3460), + [sym_fixed_array_type] = STATE(2362), + [sym_array_type] = STATE(2362), + [sym_pointer_type] = STATE(2362), + [sym_wrong_pointer_type] = STATE(2362), + [sym_map_type] = STATE(2362), + [sym_channel_type] = STATE(2362), + [sym_shared_type] = STATE(2362), + [sym_thread_type] = STATE(2362), + [sym_atomic_type] = STATE(2362), + [sym_generic_type] = STATE(2362), + [sym_function_type] = STATE(2362), + [sym__statement_list] = STATE(4514), + [sym__statement] = STATE(3566), + [sym_simple_statement] = STATE(3648), + [sym_assert_statement] = STATE(3648), + [sym_append_statement] = STATE(3648), + [sym_send_statement] = STATE(3648), + [sym_var_declaration] = STATE(3649), + [sym_assignment_statement] = STATE(3649), + [sym_block] = STATE(3648), + [sym_defer_statement] = STATE(3648), + [sym_goto_statement] = STATE(3648), + [sym_break_statement] = STATE(3648), + [sym_continue_statement] = STATE(3648), + [sym_return_statement] = STATE(3648), [sym_label_definition] = STATE(62), - [sym_labeled_statement] = STATE(3582), - [sym_empty_labeled_statement] = STATE(4544), - [sym_compile_time_for_statement] = STATE(3582), - [sym_for_statement] = STATE(3582), - [sym_hash_statement] = STATE(3582), - [sym_asm_statement] = STATE(3582), - [aux_sym_map_init_expression_repeat1] = STATE(274), + [sym_labeled_statement] = STATE(3648), + [sym_empty_labeled_statement] = STATE(4547), + [sym_compile_time_for_statement] = STATE(3648), + [sym_for_statement] = STATE(3648), + [sym_hash_statement] = STATE(3648), + [sym_asm_statement] = STATE(3648), + [aux_sym_map_init_expression_repeat1] = STATE(242), [sym_identifier] = ACTIONS(307), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), [anon_sym_DOT] = ACTIONS(309), [anon_sym_LBRACE] = ACTIONS(311), - [anon_sym_RBRACE] = ACTIONS(407), + [anon_sym_RBRACE] = ACTIONS(313), [anon_sym_LPAREN] = ACTIONS(315), [anon_sym_fn] = ACTIONS(317), [anon_sym_PLUS] = ACTIONS(319), @@ -22590,99 +22606,99 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [23] = { [sym_line_comment] = STATE(23), [sym_block_comment] = STATE(23), - [sym__expression] = STATE(1601), - [sym__expression_without_blocks] = STATE(1692), - [sym__expression_with_blocks] = STATE(1692), - [sym_strictly_expression_list] = STATE(3584), - [sym_inc_expression] = STATE(1684), - [sym_dec_expression] = STATE(1684), - [sym_or_block_expression] = STATE(1684), - [sym_option_propagation_expression] = STATE(1684), - [sym_result_propagation_expression] = STATE(1684), - [sym_anon_struct_value_expression] = STATE(1677), - [sym_go_expression] = STATE(1684), - [sym_spawn_expression] = STATE(1684), - [sym_parenthesized_expression] = STATE(1684), - [sym_call_expression] = STATE(1684), - [sym_type_initializer] = STATE(1677), - [sym_function_literal] = STATE(1684), - [sym_reference_expression] = STATE(1674), - [sym_type_reference_expression] = STATE(3541), - [sym_unary_expression] = STATE(1684), - [sym_receive_expression] = STATE(1684), - [sym_binary_expression] = STATE(1684), - [sym_as_type_cast_expression] = STATE(1684), - [sym__max_group] = STATE(1684), - [sym_literal] = STATE(1698), - [sym_map_init_expression] = STATE(1677), - [sym_map_keyed_element] = STATE(2001), - [sym_array_creation] = STATE(1684), - [sym_fixed_array_creation] = STATE(1684), - [sym_selector_expression] = STATE(1684), - [sym_index_expression] = STATE(1684), - [sym_slice_expression] = STATE(1684), - [sym_if_expression] = STATE(1677), - [sym_compile_time_if_expression] = STATE(1677), - [sym_is_expression] = STATE(1684), - [sym_in_expression] = STATE(1684), - [sym_enum_fetch] = STATE(1684), - [sym_match_expression] = STATE(1677), - [sym_select_expression] = STATE(1677), - [sym_lock_expression] = STATE(1677), - [sym_unsafe_expression] = STATE(1677), - [sym_sql_expression] = STATE(1677), - [sym_c_string_literal] = STATE(1705), - [sym_raw_string_literal] = STATE(1705), - [sym_interpreted_string_literal] = STATE(1705), - [sym_mutability_modifiers] = STATE(858), - [sym_mutable_expression] = STATE(3274), - [sym_expression_list] = STATE(3288), - [sym_plain_type] = STATE(4157), - [sym__plain_type_without_special] = STATE(2302), - [sym_anon_struct_type] = STATE(2303), - [sym_multi_return_type] = STATE(2302), - [sym_result_type] = STATE(2302), - [sym_option_type] = STATE(2302), - [sym_qualified_type] = STATE(3541), - [sym_fixed_array_type] = STATE(2303), - [sym_array_type] = STATE(2303), - [sym_pointer_type] = STATE(2303), - [sym_wrong_pointer_type] = STATE(2303), - [sym_map_type] = STATE(2303), - [sym_channel_type] = STATE(2303), - [sym_shared_type] = STATE(2303), - [sym_thread_type] = STATE(2303), - [sym_atomic_type] = STATE(2303), - [sym_generic_type] = STATE(2303), - [sym_function_type] = STATE(2303), - [sym__statement_list] = STATE(4551), - [sym__statement] = STATE(3549), - [sym_simple_statement] = STATE(3582), - [sym_assert_statement] = STATE(3582), - [sym_append_statement] = STATE(3582), - [sym_send_statement] = STATE(3582), - [sym_var_declaration] = STATE(3584), - [sym_assignment_statement] = STATE(3584), - [sym_block] = STATE(3582), - [sym_defer_statement] = STATE(3582), - [sym_goto_statement] = STATE(3582), - [sym_break_statement] = STATE(3582), - [sym_continue_statement] = STATE(3582), - [sym_return_statement] = STATE(3582), + [sym__expression] = STATE(1605), + [sym__expression_without_blocks] = STATE(1747), + [sym__expression_with_blocks] = STATE(1747), + [sym_strictly_expression_list] = STATE(3649), + [sym_inc_expression] = STATE(1749), + [sym_dec_expression] = STATE(1749), + [sym_or_block_expression] = STATE(1749), + [sym_option_propagation_expression] = STATE(1749), + [sym_result_propagation_expression] = STATE(1749), + [sym_anon_struct_value_expression] = STATE(1746), + [sym_go_expression] = STATE(1749), + [sym_spawn_expression] = STATE(1749), + [sym_parenthesized_expression] = STATE(1749), + [sym_call_expression] = STATE(1749), + [sym_type_initializer] = STATE(1746), + [sym_function_literal] = STATE(1749), + [sym_reference_expression] = STATE(1745), + [sym_type_reference_expression] = STATE(3460), + [sym_unary_expression] = STATE(1749), + [sym_receive_expression] = STATE(1749), + [sym_binary_expression] = STATE(1749), + [sym_as_type_cast_expression] = STATE(1749), + [sym__max_group] = STATE(1749), + [sym_literal] = STATE(1738), + [sym_map_init_expression] = STATE(1746), + [sym_map_keyed_element] = STATE(2004), + [sym_array_creation] = STATE(1749), + [sym_fixed_array_creation] = STATE(1749), + [sym_selector_expression] = STATE(1749), + [sym_index_expression] = STATE(1749), + [sym_slice_expression] = STATE(1749), + [sym_if_expression] = STATE(1746), + [sym_compile_time_if_expression] = STATE(1746), + [sym_is_expression] = STATE(1749), + [sym_in_expression] = STATE(1749), + [sym_enum_fetch] = STATE(1749), + [sym_match_expression] = STATE(1746), + [sym_select_expression] = STATE(1746), + [sym_lock_expression] = STATE(1746), + [sym_unsafe_expression] = STATE(1746), + [sym_sql_expression] = STATE(1746), + [sym_c_string_literal] = STATE(1733), + [sym_raw_string_literal] = STATE(1733), + [sym_interpreted_string_literal] = STATE(1733), + [sym_mutability_modifiers] = STATE(843), + [sym_mutable_expression] = STATE(3278), + [sym_expression_list] = STATE(3323), + [sym_plain_type] = STATE(4121), + [sym__plain_type_without_special] = STATE(2360), + [sym_anon_struct_type] = STATE(2362), + [sym_multi_return_type] = STATE(2360), + [sym_result_type] = STATE(2360), + [sym_option_type] = STATE(2360), + [sym_qualified_type] = STATE(3460), + [sym_fixed_array_type] = STATE(2362), + [sym_array_type] = STATE(2362), + [sym_pointer_type] = STATE(2362), + [sym_wrong_pointer_type] = STATE(2362), + [sym_map_type] = STATE(2362), + [sym_channel_type] = STATE(2362), + [sym_shared_type] = STATE(2362), + [sym_thread_type] = STATE(2362), + [sym_atomic_type] = STATE(2362), + [sym_generic_type] = STATE(2362), + [sym_function_type] = STATE(2362), + [sym__statement_list] = STATE(4512), + [sym__statement] = STATE(3566), + [sym_simple_statement] = STATE(3648), + [sym_assert_statement] = STATE(3648), + [sym_append_statement] = STATE(3648), + [sym_send_statement] = STATE(3648), + [sym_var_declaration] = STATE(3649), + [sym_assignment_statement] = STATE(3649), + [sym_block] = STATE(3648), + [sym_defer_statement] = STATE(3648), + [sym_goto_statement] = STATE(3648), + [sym_break_statement] = STATE(3648), + [sym_continue_statement] = STATE(3648), + [sym_return_statement] = STATE(3648), [sym_label_definition] = STATE(62), - [sym_labeled_statement] = STATE(3582), - [sym_empty_labeled_statement] = STATE(4544), - [sym_compile_time_for_statement] = STATE(3582), - [sym_for_statement] = STATE(3582), - [sym_hash_statement] = STATE(3582), - [sym_asm_statement] = STATE(3582), - [aux_sym_map_init_expression_repeat1] = STATE(274), + [sym_labeled_statement] = STATE(3648), + [sym_empty_labeled_statement] = STATE(4547), + [sym_compile_time_for_statement] = STATE(3648), + [sym_for_statement] = STATE(3648), + [sym_hash_statement] = STATE(3648), + [sym_asm_statement] = STATE(3648), + [aux_sym_map_init_expression_repeat1] = STATE(242), [sym_identifier] = ACTIONS(307), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), [anon_sym_DOT] = ACTIONS(309), [anon_sym_LBRACE] = ACTIONS(311), - [anon_sym_RBRACE] = ACTIONS(409), + [anon_sym_RBRACE] = ACTIONS(405), [anon_sym_LPAREN] = ACTIONS(315), [anon_sym_fn] = ACTIONS(317), [anon_sym_PLUS] = ACTIONS(319), @@ -22741,99 +22757,99 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [24] = { [sym_line_comment] = STATE(24), [sym_block_comment] = STATE(24), - [sym__expression] = STATE(1601), - [sym__expression_without_blocks] = STATE(1692), - [sym__expression_with_blocks] = STATE(1692), - [sym_strictly_expression_list] = STATE(3584), - [sym_inc_expression] = STATE(1684), - [sym_dec_expression] = STATE(1684), - [sym_or_block_expression] = STATE(1684), - [sym_option_propagation_expression] = STATE(1684), - [sym_result_propagation_expression] = STATE(1684), - [sym_anon_struct_value_expression] = STATE(1677), - [sym_go_expression] = STATE(1684), - [sym_spawn_expression] = STATE(1684), - [sym_parenthesized_expression] = STATE(1684), - [sym_call_expression] = STATE(1684), - [sym_type_initializer] = STATE(1677), - [sym_function_literal] = STATE(1684), - [sym_reference_expression] = STATE(1674), - [sym_type_reference_expression] = STATE(3541), - [sym_unary_expression] = STATE(1684), - [sym_receive_expression] = STATE(1684), - [sym_binary_expression] = STATE(1684), - [sym_as_type_cast_expression] = STATE(1684), - [sym__max_group] = STATE(1684), - [sym_literal] = STATE(1698), - [sym_map_init_expression] = STATE(1677), - [sym_map_keyed_element] = STATE(2001), - [sym_array_creation] = STATE(1684), - [sym_fixed_array_creation] = STATE(1684), - [sym_selector_expression] = STATE(1684), - [sym_index_expression] = STATE(1684), - [sym_slice_expression] = STATE(1684), - [sym_if_expression] = STATE(1677), - [sym_compile_time_if_expression] = STATE(1677), - [sym_is_expression] = STATE(1684), - [sym_in_expression] = STATE(1684), - [sym_enum_fetch] = STATE(1684), - [sym_match_expression] = STATE(1677), - [sym_select_expression] = STATE(1677), - [sym_lock_expression] = STATE(1677), - [sym_unsafe_expression] = STATE(1677), - [sym_sql_expression] = STATE(1677), - [sym_c_string_literal] = STATE(1705), - [sym_raw_string_literal] = STATE(1705), - [sym_interpreted_string_literal] = STATE(1705), - [sym_mutability_modifiers] = STATE(858), - [sym_mutable_expression] = STATE(3274), - [sym_expression_list] = STATE(3288), - [sym_plain_type] = STATE(4157), - [sym__plain_type_without_special] = STATE(2302), - [sym_anon_struct_type] = STATE(2303), - [sym_multi_return_type] = STATE(2302), - [sym_result_type] = STATE(2302), - [sym_option_type] = STATE(2302), - [sym_qualified_type] = STATE(3541), - [sym_fixed_array_type] = STATE(2303), - [sym_array_type] = STATE(2303), - [sym_pointer_type] = STATE(2303), - [sym_wrong_pointer_type] = STATE(2303), - [sym_map_type] = STATE(2303), - [sym_channel_type] = STATE(2303), - [sym_shared_type] = STATE(2303), - [sym_thread_type] = STATE(2303), - [sym_atomic_type] = STATE(2303), - [sym_generic_type] = STATE(2303), - [sym_function_type] = STATE(2303), - [sym__statement_list] = STATE(4380), - [sym__statement] = STATE(3549), - [sym_simple_statement] = STATE(3582), - [sym_assert_statement] = STATE(3582), - [sym_append_statement] = STATE(3582), - [sym_send_statement] = STATE(3582), - [sym_var_declaration] = STATE(3584), - [sym_assignment_statement] = STATE(3584), - [sym_block] = STATE(3582), - [sym_defer_statement] = STATE(3582), - [sym_goto_statement] = STATE(3582), - [sym_break_statement] = STATE(3582), - [sym_continue_statement] = STATE(3582), - [sym_return_statement] = STATE(3582), + [sym__expression] = STATE(1605), + [sym__expression_without_blocks] = STATE(1747), + [sym__expression_with_blocks] = STATE(1747), + [sym_strictly_expression_list] = STATE(3649), + [sym_inc_expression] = STATE(1749), + [sym_dec_expression] = STATE(1749), + [sym_or_block_expression] = STATE(1749), + [sym_option_propagation_expression] = STATE(1749), + [sym_result_propagation_expression] = STATE(1749), + [sym_anon_struct_value_expression] = STATE(1746), + [sym_go_expression] = STATE(1749), + [sym_spawn_expression] = STATE(1749), + [sym_parenthesized_expression] = STATE(1749), + [sym_call_expression] = STATE(1749), + [sym_type_initializer] = STATE(1746), + [sym_function_literal] = STATE(1749), + [sym_reference_expression] = STATE(1745), + [sym_type_reference_expression] = STATE(3460), + [sym_unary_expression] = STATE(1749), + [sym_receive_expression] = STATE(1749), + [sym_binary_expression] = STATE(1749), + [sym_as_type_cast_expression] = STATE(1749), + [sym__max_group] = STATE(1749), + [sym_literal] = STATE(1738), + [sym_map_init_expression] = STATE(1746), + [sym_map_keyed_element] = STATE(2004), + [sym_array_creation] = STATE(1749), + [sym_fixed_array_creation] = STATE(1749), + [sym_selector_expression] = STATE(1749), + [sym_index_expression] = STATE(1749), + [sym_slice_expression] = STATE(1749), + [sym_if_expression] = STATE(1746), + [sym_compile_time_if_expression] = STATE(1746), + [sym_is_expression] = STATE(1749), + [sym_in_expression] = STATE(1749), + [sym_enum_fetch] = STATE(1749), + [sym_match_expression] = STATE(1746), + [sym_select_expression] = STATE(1746), + [sym_lock_expression] = STATE(1746), + [sym_unsafe_expression] = STATE(1746), + [sym_sql_expression] = STATE(1746), + [sym_c_string_literal] = STATE(1733), + [sym_raw_string_literal] = STATE(1733), + [sym_interpreted_string_literal] = STATE(1733), + [sym_mutability_modifiers] = STATE(843), + [sym_mutable_expression] = STATE(3278), + [sym_expression_list] = STATE(3323), + [sym_plain_type] = STATE(4121), + [sym__plain_type_without_special] = STATE(2360), + [sym_anon_struct_type] = STATE(2362), + [sym_multi_return_type] = STATE(2360), + [sym_result_type] = STATE(2360), + [sym_option_type] = STATE(2360), + [sym_qualified_type] = STATE(3460), + [sym_fixed_array_type] = STATE(2362), + [sym_array_type] = STATE(2362), + [sym_pointer_type] = STATE(2362), + [sym_wrong_pointer_type] = STATE(2362), + [sym_map_type] = STATE(2362), + [sym_channel_type] = STATE(2362), + [sym_shared_type] = STATE(2362), + [sym_thread_type] = STATE(2362), + [sym_atomic_type] = STATE(2362), + [sym_generic_type] = STATE(2362), + [sym_function_type] = STATE(2362), + [sym__statement_list] = STATE(4384), + [sym__statement] = STATE(3566), + [sym_simple_statement] = STATE(3648), + [sym_assert_statement] = STATE(3648), + [sym_append_statement] = STATE(3648), + [sym_send_statement] = STATE(3648), + [sym_var_declaration] = STATE(3649), + [sym_assignment_statement] = STATE(3649), + [sym_block] = STATE(3648), + [sym_defer_statement] = STATE(3648), + [sym_goto_statement] = STATE(3648), + [sym_break_statement] = STATE(3648), + [sym_continue_statement] = STATE(3648), + [sym_return_statement] = STATE(3648), [sym_label_definition] = STATE(62), - [sym_labeled_statement] = STATE(3582), - [sym_empty_labeled_statement] = STATE(4544), - [sym_compile_time_for_statement] = STATE(3582), - [sym_for_statement] = STATE(3582), - [sym_hash_statement] = STATE(3582), - [sym_asm_statement] = STATE(3582), - [aux_sym_map_init_expression_repeat1] = STATE(274), + [sym_labeled_statement] = STATE(3648), + [sym_empty_labeled_statement] = STATE(4547), + [sym_compile_time_for_statement] = STATE(3648), + [sym_for_statement] = STATE(3648), + [sym_hash_statement] = STATE(3648), + [sym_asm_statement] = STATE(3648), + [aux_sym_map_init_expression_repeat1] = STATE(242), [sym_identifier] = ACTIONS(307), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), [anon_sym_DOT] = ACTIONS(309), [anon_sym_LBRACE] = ACTIONS(311), - [anon_sym_RBRACE] = ACTIONS(411), + [anon_sym_RBRACE] = ACTIONS(407), [anon_sym_LPAREN] = ACTIONS(315), [anon_sym_fn] = ACTIONS(317), [anon_sym_PLUS] = ACTIONS(319), @@ -22892,99 +22908,99 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [25] = { [sym_line_comment] = STATE(25), [sym_block_comment] = STATE(25), - [sym__expression] = STATE(1601), - [sym__expression_without_blocks] = STATE(1692), - [sym__expression_with_blocks] = STATE(1692), - [sym_strictly_expression_list] = STATE(3584), - [sym_inc_expression] = STATE(1684), - [sym_dec_expression] = STATE(1684), - [sym_or_block_expression] = STATE(1684), - [sym_option_propagation_expression] = STATE(1684), - [sym_result_propagation_expression] = STATE(1684), - [sym_anon_struct_value_expression] = STATE(1677), - [sym_go_expression] = STATE(1684), - [sym_spawn_expression] = STATE(1684), - [sym_parenthesized_expression] = STATE(1684), - [sym_call_expression] = STATE(1684), - [sym_type_initializer] = STATE(1677), - [sym_function_literal] = STATE(1684), - [sym_reference_expression] = STATE(1674), - [sym_type_reference_expression] = STATE(3541), - [sym_unary_expression] = STATE(1684), - [sym_receive_expression] = STATE(1684), - [sym_binary_expression] = STATE(1684), - [sym_as_type_cast_expression] = STATE(1684), - [sym__max_group] = STATE(1684), - [sym_literal] = STATE(1698), - [sym_map_init_expression] = STATE(1677), - [sym_map_keyed_element] = STATE(2001), - [sym_array_creation] = STATE(1684), - [sym_fixed_array_creation] = STATE(1684), - [sym_selector_expression] = STATE(1684), - [sym_index_expression] = STATE(1684), - [sym_slice_expression] = STATE(1684), - [sym_if_expression] = STATE(1677), - [sym_compile_time_if_expression] = STATE(1677), - [sym_is_expression] = STATE(1684), - [sym_in_expression] = STATE(1684), - [sym_enum_fetch] = STATE(1684), - [sym_match_expression] = STATE(1677), - [sym_select_expression] = STATE(1677), - [sym_lock_expression] = STATE(1677), - [sym_unsafe_expression] = STATE(1677), - [sym_sql_expression] = STATE(1677), - [sym_c_string_literal] = STATE(1705), - [sym_raw_string_literal] = STATE(1705), - [sym_interpreted_string_literal] = STATE(1705), - [sym_mutability_modifiers] = STATE(858), - [sym_mutable_expression] = STATE(3274), - [sym_expression_list] = STATE(3288), - [sym_plain_type] = STATE(4157), - [sym__plain_type_without_special] = STATE(2302), - [sym_anon_struct_type] = STATE(2303), - [sym_multi_return_type] = STATE(2302), - [sym_result_type] = STATE(2302), - [sym_option_type] = STATE(2302), - [sym_qualified_type] = STATE(3541), - [sym_fixed_array_type] = STATE(2303), - [sym_array_type] = STATE(2303), - [sym_pointer_type] = STATE(2303), - [sym_wrong_pointer_type] = STATE(2303), - [sym_map_type] = STATE(2303), - [sym_channel_type] = STATE(2303), - [sym_shared_type] = STATE(2303), - [sym_thread_type] = STATE(2303), - [sym_atomic_type] = STATE(2303), - [sym_generic_type] = STATE(2303), - [sym_function_type] = STATE(2303), - [sym__statement_list] = STATE(4415), - [sym__statement] = STATE(3549), - [sym_simple_statement] = STATE(3582), - [sym_assert_statement] = STATE(3582), - [sym_append_statement] = STATE(3582), - [sym_send_statement] = STATE(3582), - [sym_var_declaration] = STATE(3584), - [sym_assignment_statement] = STATE(3584), - [sym_block] = STATE(3582), - [sym_defer_statement] = STATE(3582), - [sym_goto_statement] = STATE(3582), - [sym_break_statement] = STATE(3582), - [sym_continue_statement] = STATE(3582), - [sym_return_statement] = STATE(3582), + [sym__expression] = STATE(1605), + [sym__expression_without_blocks] = STATE(1747), + [sym__expression_with_blocks] = STATE(1747), + [sym_strictly_expression_list] = STATE(3649), + [sym_inc_expression] = STATE(1749), + [sym_dec_expression] = STATE(1749), + [sym_or_block_expression] = STATE(1749), + [sym_option_propagation_expression] = STATE(1749), + [sym_result_propagation_expression] = STATE(1749), + [sym_anon_struct_value_expression] = STATE(1746), + [sym_go_expression] = STATE(1749), + [sym_spawn_expression] = STATE(1749), + [sym_parenthesized_expression] = STATE(1749), + [sym_call_expression] = STATE(1749), + [sym_type_initializer] = STATE(1746), + [sym_function_literal] = STATE(1749), + [sym_reference_expression] = STATE(1745), + [sym_type_reference_expression] = STATE(3460), + [sym_unary_expression] = STATE(1749), + [sym_receive_expression] = STATE(1749), + [sym_binary_expression] = STATE(1749), + [sym_as_type_cast_expression] = STATE(1749), + [sym__max_group] = STATE(1749), + [sym_literal] = STATE(1738), + [sym_map_init_expression] = STATE(1746), + [sym_map_keyed_element] = STATE(2004), + [sym_array_creation] = STATE(1749), + [sym_fixed_array_creation] = STATE(1749), + [sym_selector_expression] = STATE(1749), + [sym_index_expression] = STATE(1749), + [sym_slice_expression] = STATE(1749), + [sym_if_expression] = STATE(1746), + [sym_compile_time_if_expression] = STATE(1746), + [sym_is_expression] = STATE(1749), + [sym_in_expression] = STATE(1749), + [sym_enum_fetch] = STATE(1749), + [sym_match_expression] = STATE(1746), + [sym_select_expression] = STATE(1746), + [sym_lock_expression] = STATE(1746), + [sym_unsafe_expression] = STATE(1746), + [sym_sql_expression] = STATE(1746), + [sym_c_string_literal] = STATE(1733), + [sym_raw_string_literal] = STATE(1733), + [sym_interpreted_string_literal] = STATE(1733), + [sym_mutability_modifiers] = STATE(843), + [sym_mutable_expression] = STATE(3278), + [sym_expression_list] = STATE(3323), + [sym_plain_type] = STATE(4121), + [sym__plain_type_without_special] = STATE(2360), + [sym_anon_struct_type] = STATE(2362), + [sym_multi_return_type] = STATE(2360), + [sym_result_type] = STATE(2360), + [sym_option_type] = STATE(2360), + [sym_qualified_type] = STATE(3460), + [sym_fixed_array_type] = STATE(2362), + [sym_array_type] = STATE(2362), + [sym_pointer_type] = STATE(2362), + [sym_wrong_pointer_type] = STATE(2362), + [sym_map_type] = STATE(2362), + [sym_channel_type] = STATE(2362), + [sym_shared_type] = STATE(2362), + [sym_thread_type] = STATE(2362), + [sym_atomic_type] = STATE(2362), + [sym_generic_type] = STATE(2362), + [sym_function_type] = STATE(2362), + [sym__statement_list] = STATE(4514), + [sym__statement] = STATE(3566), + [sym_simple_statement] = STATE(3648), + [sym_assert_statement] = STATE(3648), + [sym_append_statement] = STATE(3648), + [sym_send_statement] = STATE(3648), + [sym_var_declaration] = STATE(3649), + [sym_assignment_statement] = STATE(3649), + [sym_block] = STATE(3648), + [sym_defer_statement] = STATE(3648), + [sym_goto_statement] = STATE(3648), + [sym_break_statement] = STATE(3648), + [sym_continue_statement] = STATE(3648), + [sym_return_statement] = STATE(3648), [sym_label_definition] = STATE(62), - [sym_labeled_statement] = STATE(3582), - [sym_empty_labeled_statement] = STATE(4544), - [sym_compile_time_for_statement] = STATE(3582), - [sym_for_statement] = STATE(3582), - [sym_hash_statement] = STATE(3582), - [sym_asm_statement] = STATE(3582), - [aux_sym_map_init_expression_repeat1] = STATE(274), + [sym_labeled_statement] = STATE(3648), + [sym_empty_labeled_statement] = STATE(4547), + [sym_compile_time_for_statement] = STATE(3648), + [sym_for_statement] = STATE(3648), + [sym_hash_statement] = STATE(3648), + [sym_asm_statement] = STATE(3648), + [aux_sym_map_init_expression_repeat1] = STATE(242), [sym_identifier] = ACTIONS(307), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), [anon_sym_DOT] = ACTIONS(309), [anon_sym_LBRACE] = ACTIONS(311), - [anon_sym_RBRACE] = ACTIONS(413), + [anon_sym_RBRACE] = ACTIONS(409), [anon_sym_LPAREN] = ACTIONS(315), [anon_sym_fn] = ACTIONS(317), [anon_sym_PLUS] = ACTIONS(319), @@ -23043,99 +23059,99 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [26] = { [sym_line_comment] = STATE(26), [sym_block_comment] = STATE(26), - [sym__expression] = STATE(1601), - [sym__expression_without_blocks] = STATE(1692), - [sym__expression_with_blocks] = STATE(1692), - [sym_strictly_expression_list] = STATE(3584), - [sym_inc_expression] = STATE(1684), - [sym_dec_expression] = STATE(1684), - [sym_or_block_expression] = STATE(1684), - [sym_option_propagation_expression] = STATE(1684), - [sym_result_propagation_expression] = STATE(1684), - [sym_anon_struct_value_expression] = STATE(1677), - [sym_go_expression] = STATE(1684), - [sym_spawn_expression] = STATE(1684), - [sym_parenthesized_expression] = STATE(1684), - [sym_call_expression] = STATE(1684), - [sym_type_initializer] = STATE(1677), - [sym_function_literal] = STATE(1684), - [sym_reference_expression] = STATE(1674), - [sym_type_reference_expression] = STATE(3541), - [sym_unary_expression] = STATE(1684), - [sym_receive_expression] = STATE(1684), - [sym_binary_expression] = STATE(1684), - [sym_as_type_cast_expression] = STATE(1684), - [sym__max_group] = STATE(1684), - [sym_literal] = STATE(1698), - [sym_map_init_expression] = STATE(1677), - [sym_map_keyed_element] = STATE(2001), - [sym_array_creation] = STATE(1684), - [sym_fixed_array_creation] = STATE(1684), - [sym_selector_expression] = STATE(1684), - [sym_index_expression] = STATE(1684), - [sym_slice_expression] = STATE(1684), - [sym_if_expression] = STATE(1677), - [sym_compile_time_if_expression] = STATE(1677), - [sym_is_expression] = STATE(1684), - [sym_in_expression] = STATE(1684), - [sym_enum_fetch] = STATE(1684), - [sym_match_expression] = STATE(1677), - [sym_select_expression] = STATE(1677), - [sym_lock_expression] = STATE(1677), - [sym_unsafe_expression] = STATE(1677), - [sym_sql_expression] = STATE(1677), - [sym_c_string_literal] = STATE(1705), - [sym_raw_string_literal] = STATE(1705), - [sym_interpreted_string_literal] = STATE(1705), - [sym_mutability_modifiers] = STATE(858), - [sym_mutable_expression] = STATE(3274), - [sym_expression_list] = STATE(3288), - [sym_plain_type] = STATE(4157), - [sym__plain_type_without_special] = STATE(2302), - [sym_anon_struct_type] = STATE(2303), - [sym_multi_return_type] = STATE(2302), - [sym_result_type] = STATE(2302), - [sym_option_type] = STATE(2302), - [sym_qualified_type] = STATE(3541), - [sym_fixed_array_type] = STATE(2303), - [sym_array_type] = STATE(2303), - [sym_pointer_type] = STATE(2303), - [sym_wrong_pointer_type] = STATE(2303), - [sym_map_type] = STATE(2303), - [sym_channel_type] = STATE(2303), - [sym_shared_type] = STATE(2303), - [sym_thread_type] = STATE(2303), - [sym_atomic_type] = STATE(2303), - [sym_generic_type] = STATE(2303), - [sym_function_type] = STATE(2303), - [sym__statement_list] = STATE(4340), - [sym__statement] = STATE(3549), - [sym_simple_statement] = STATE(3582), - [sym_assert_statement] = STATE(3582), - [sym_append_statement] = STATE(3582), - [sym_send_statement] = STATE(3582), - [sym_var_declaration] = STATE(3584), - [sym_assignment_statement] = STATE(3584), - [sym_block] = STATE(3582), - [sym_defer_statement] = STATE(3582), - [sym_goto_statement] = STATE(3582), - [sym_break_statement] = STATE(3582), - [sym_continue_statement] = STATE(3582), - [sym_return_statement] = STATE(3582), + [sym__expression] = STATE(1605), + [sym__expression_without_blocks] = STATE(1747), + [sym__expression_with_blocks] = STATE(1747), + [sym_strictly_expression_list] = STATE(3649), + [sym_inc_expression] = STATE(1749), + [sym_dec_expression] = STATE(1749), + [sym_or_block_expression] = STATE(1749), + [sym_option_propagation_expression] = STATE(1749), + [sym_result_propagation_expression] = STATE(1749), + [sym_anon_struct_value_expression] = STATE(1746), + [sym_go_expression] = STATE(1749), + [sym_spawn_expression] = STATE(1749), + [sym_parenthesized_expression] = STATE(1749), + [sym_call_expression] = STATE(1749), + [sym_type_initializer] = STATE(1746), + [sym_function_literal] = STATE(1749), + [sym_reference_expression] = STATE(1745), + [sym_type_reference_expression] = STATE(3460), + [sym_unary_expression] = STATE(1749), + [sym_receive_expression] = STATE(1749), + [sym_binary_expression] = STATE(1749), + [sym_as_type_cast_expression] = STATE(1749), + [sym__max_group] = STATE(1749), + [sym_literal] = STATE(1738), + [sym_map_init_expression] = STATE(1746), + [sym_map_keyed_element] = STATE(2004), + [sym_array_creation] = STATE(1749), + [sym_fixed_array_creation] = STATE(1749), + [sym_selector_expression] = STATE(1749), + [sym_index_expression] = STATE(1749), + [sym_slice_expression] = STATE(1749), + [sym_if_expression] = STATE(1746), + [sym_compile_time_if_expression] = STATE(1746), + [sym_is_expression] = STATE(1749), + [sym_in_expression] = STATE(1749), + [sym_enum_fetch] = STATE(1749), + [sym_match_expression] = STATE(1746), + [sym_select_expression] = STATE(1746), + [sym_lock_expression] = STATE(1746), + [sym_unsafe_expression] = STATE(1746), + [sym_sql_expression] = STATE(1746), + [sym_c_string_literal] = STATE(1733), + [sym_raw_string_literal] = STATE(1733), + [sym_interpreted_string_literal] = STATE(1733), + [sym_mutability_modifiers] = STATE(843), + [sym_mutable_expression] = STATE(3278), + [sym_expression_list] = STATE(3323), + [sym_plain_type] = STATE(4121), + [sym__plain_type_without_special] = STATE(2360), + [sym_anon_struct_type] = STATE(2362), + [sym_multi_return_type] = STATE(2360), + [sym_result_type] = STATE(2360), + [sym_option_type] = STATE(2360), + [sym_qualified_type] = STATE(3460), + [sym_fixed_array_type] = STATE(2362), + [sym_array_type] = STATE(2362), + [sym_pointer_type] = STATE(2362), + [sym_wrong_pointer_type] = STATE(2362), + [sym_map_type] = STATE(2362), + [sym_channel_type] = STATE(2362), + [sym_shared_type] = STATE(2362), + [sym_thread_type] = STATE(2362), + [sym_atomic_type] = STATE(2362), + [sym_generic_type] = STATE(2362), + [sym_function_type] = STATE(2362), + [sym__statement_list] = STATE(4504), + [sym__statement] = STATE(3566), + [sym_simple_statement] = STATE(3648), + [sym_assert_statement] = STATE(3648), + [sym_append_statement] = STATE(3648), + [sym_send_statement] = STATE(3648), + [sym_var_declaration] = STATE(3649), + [sym_assignment_statement] = STATE(3649), + [sym_block] = STATE(3648), + [sym_defer_statement] = STATE(3648), + [sym_goto_statement] = STATE(3648), + [sym_break_statement] = STATE(3648), + [sym_continue_statement] = STATE(3648), + [sym_return_statement] = STATE(3648), [sym_label_definition] = STATE(62), - [sym_labeled_statement] = STATE(3582), - [sym_empty_labeled_statement] = STATE(4544), - [sym_compile_time_for_statement] = STATE(3582), - [sym_for_statement] = STATE(3582), - [sym_hash_statement] = STATE(3582), - [sym_asm_statement] = STATE(3582), - [aux_sym_map_init_expression_repeat1] = STATE(274), + [sym_labeled_statement] = STATE(3648), + [sym_empty_labeled_statement] = STATE(4547), + [sym_compile_time_for_statement] = STATE(3648), + [sym_for_statement] = STATE(3648), + [sym_hash_statement] = STATE(3648), + [sym_asm_statement] = STATE(3648), + [aux_sym_map_init_expression_repeat1] = STATE(242), [sym_identifier] = ACTIONS(307), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), [anon_sym_DOT] = ACTIONS(309), [anon_sym_LBRACE] = ACTIONS(311), - [anon_sym_RBRACE] = ACTIONS(415), + [anon_sym_RBRACE] = ACTIONS(411), [anon_sym_LPAREN] = ACTIONS(315), [anon_sym_fn] = ACTIONS(317), [anon_sym_PLUS] = ACTIONS(319), @@ -23194,99 +23210,99 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [27] = { [sym_line_comment] = STATE(27), [sym_block_comment] = STATE(27), - [sym__expression] = STATE(1601), - [sym__expression_without_blocks] = STATE(1692), - [sym__expression_with_blocks] = STATE(1692), - [sym_strictly_expression_list] = STATE(3584), - [sym_inc_expression] = STATE(1684), - [sym_dec_expression] = STATE(1684), - [sym_or_block_expression] = STATE(1684), - [sym_option_propagation_expression] = STATE(1684), - [sym_result_propagation_expression] = STATE(1684), - [sym_anon_struct_value_expression] = STATE(1677), - [sym_go_expression] = STATE(1684), - [sym_spawn_expression] = STATE(1684), - [sym_parenthesized_expression] = STATE(1684), - [sym_call_expression] = STATE(1684), - [sym_type_initializer] = STATE(1677), - [sym_function_literal] = STATE(1684), - [sym_reference_expression] = STATE(1674), - [sym_type_reference_expression] = STATE(3541), - [sym_unary_expression] = STATE(1684), - [sym_receive_expression] = STATE(1684), - [sym_binary_expression] = STATE(1684), - [sym_as_type_cast_expression] = STATE(1684), - [sym__max_group] = STATE(1684), - [sym_literal] = STATE(1698), - [sym_map_init_expression] = STATE(1677), - [sym_map_keyed_element] = STATE(2001), - [sym_array_creation] = STATE(1684), - [sym_fixed_array_creation] = STATE(1684), - [sym_selector_expression] = STATE(1684), - [sym_index_expression] = STATE(1684), - [sym_slice_expression] = STATE(1684), - [sym_if_expression] = STATE(1677), - [sym_compile_time_if_expression] = STATE(1677), - [sym_is_expression] = STATE(1684), - [sym_in_expression] = STATE(1684), - [sym_enum_fetch] = STATE(1684), - [sym_match_expression] = STATE(1677), - [sym_select_expression] = STATE(1677), - [sym_lock_expression] = STATE(1677), - [sym_unsafe_expression] = STATE(1677), - [sym_sql_expression] = STATE(1677), - [sym_c_string_literal] = STATE(1705), - [sym_raw_string_literal] = STATE(1705), - [sym_interpreted_string_literal] = STATE(1705), - [sym_mutability_modifiers] = STATE(858), - [sym_mutable_expression] = STATE(3274), - [sym_expression_list] = STATE(3288), - [sym_plain_type] = STATE(4157), - [sym__plain_type_without_special] = STATE(2302), - [sym_anon_struct_type] = STATE(2303), - [sym_multi_return_type] = STATE(2302), - [sym_result_type] = STATE(2302), - [sym_option_type] = STATE(2302), - [sym_qualified_type] = STATE(3541), - [sym_fixed_array_type] = STATE(2303), - [sym_array_type] = STATE(2303), - [sym_pointer_type] = STATE(2303), - [sym_wrong_pointer_type] = STATE(2303), - [sym_map_type] = STATE(2303), - [sym_channel_type] = STATE(2303), - [sym_shared_type] = STATE(2303), - [sym_thread_type] = STATE(2303), - [sym_atomic_type] = STATE(2303), - [sym_generic_type] = STATE(2303), - [sym_function_type] = STATE(2303), - [sym__statement_list] = STATE(4501), - [sym__statement] = STATE(3549), - [sym_simple_statement] = STATE(3582), - [sym_assert_statement] = STATE(3582), - [sym_append_statement] = STATE(3582), - [sym_send_statement] = STATE(3582), - [sym_var_declaration] = STATE(3584), - [sym_assignment_statement] = STATE(3584), - [sym_block] = STATE(3582), - [sym_defer_statement] = STATE(3582), - [sym_goto_statement] = STATE(3582), - [sym_break_statement] = STATE(3582), - [sym_continue_statement] = STATE(3582), - [sym_return_statement] = STATE(3582), + [sym__expression] = STATE(1605), + [sym__expression_without_blocks] = STATE(1747), + [sym__expression_with_blocks] = STATE(1747), + [sym_strictly_expression_list] = STATE(3649), + [sym_inc_expression] = STATE(1749), + [sym_dec_expression] = STATE(1749), + [sym_or_block_expression] = STATE(1749), + [sym_option_propagation_expression] = STATE(1749), + [sym_result_propagation_expression] = STATE(1749), + [sym_anon_struct_value_expression] = STATE(1746), + [sym_go_expression] = STATE(1749), + [sym_spawn_expression] = STATE(1749), + [sym_parenthesized_expression] = STATE(1749), + [sym_call_expression] = STATE(1749), + [sym_type_initializer] = STATE(1746), + [sym_function_literal] = STATE(1749), + [sym_reference_expression] = STATE(1745), + [sym_type_reference_expression] = STATE(3460), + [sym_unary_expression] = STATE(1749), + [sym_receive_expression] = STATE(1749), + [sym_binary_expression] = STATE(1749), + [sym_as_type_cast_expression] = STATE(1749), + [sym__max_group] = STATE(1749), + [sym_literal] = STATE(1738), + [sym_map_init_expression] = STATE(1746), + [sym_map_keyed_element] = STATE(2004), + [sym_array_creation] = STATE(1749), + [sym_fixed_array_creation] = STATE(1749), + [sym_selector_expression] = STATE(1749), + [sym_index_expression] = STATE(1749), + [sym_slice_expression] = STATE(1749), + [sym_if_expression] = STATE(1746), + [sym_compile_time_if_expression] = STATE(1746), + [sym_is_expression] = STATE(1749), + [sym_in_expression] = STATE(1749), + [sym_enum_fetch] = STATE(1749), + [sym_match_expression] = STATE(1746), + [sym_select_expression] = STATE(1746), + [sym_lock_expression] = STATE(1746), + [sym_unsafe_expression] = STATE(1746), + [sym_sql_expression] = STATE(1746), + [sym_c_string_literal] = STATE(1733), + [sym_raw_string_literal] = STATE(1733), + [sym_interpreted_string_literal] = STATE(1733), + [sym_mutability_modifiers] = STATE(843), + [sym_mutable_expression] = STATE(3278), + [sym_expression_list] = STATE(3323), + [sym_plain_type] = STATE(4121), + [sym__plain_type_without_special] = STATE(2360), + [sym_anon_struct_type] = STATE(2362), + [sym_multi_return_type] = STATE(2360), + [sym_result_type] = STATE(2360), + [sym_option_type] = STATE(2360), + [sym_qualified_type] = STATE(3460), + [sym_fixed_array_type] = STATE(2362), + [sym_array_type] = STATE(2362), + [sym_pointer_type] = STATE(2362), + [sym_wrong_pointer_type] = STATE(2362), + [sym_map_type] = STATE(2362), + [sym_channel_type] = STATE(2362), + [sym_shared_type] = STATE(2362), + [sym_thread_type] = STATE(2362), + [sym_atomic_type] = STATE(2362), + [sym_generic_type] = STATE(2362), + [sym_function_type] = STATE(2362), + [sym__statement_list] = STATE(4533), + [sym__statement] = STATE(3566), + [sym_simple_statement] = STATE(3648), + [sym_assert_statement] = STATE(3648), + [sym_append_statement] = STATE(3648), + [sym_send_statement] = STATE(3648), + [sym_var_declaration] = STATE(3649), + [sym_assignment_statement] = STATE(3649), + [sym_block] = STATE(3648), + [sym_defer_statement] = STATE(3648), + [sym_goto_statement] = STATE(3648), + [sym_break_statement] = STATE(3648), + [sym_continue_statement] = STATE(3648), + [sym_return_statement] = STATE(3648), [sym_label_definition] = STATE(62), - [sym_labeled_statement] = STATE(3582), - [sym_empty_labeled_statement] = STATE(4544), - [sym_compile_time_for_statement] = STATE(3582), - [sym_for_statement] = STATE(3582), - [sym_hash_statement] = STATE(3582), - [sym_asm_statement] = STATE(3582), - [aux_sym_map_init_expression_repeat1] = STATE(274), + [sym_labeled_statement] = STATE(3648), + [sym_empty_labeled_statement] = STATE(4547), + [sym_compile_time_for_statement] = STATE(3648), + [sym_for_statement] = STATE(3648), + [sym_hash_statement] = STATE(3648), + [sym_asm_statement] = STATE(3648), + [aux_sym_map_init_expression_repeat1] = STATE(242), [sym_identifier] = ACTIONS(307), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), [anon_sym_DOT] = ACTIONS(309), [anon_sym_LBRACE] = ACTIONS(311), - [anon_sym_RBRACE] = ACTIONS(399), + [anon_sym_RBRACE] = ACTIONS(413), [anon_sym_LPAREN] = ACTIONS(315), [anon_sym_fn] = ACTIONS(317), [anon_sym_PLUS] = ACTIONS(319), @@ -23345,99 +23361,99 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [28] = { [sym_line_comment] = STATE(28), [sym_block_comment] = STATE(28), - [sym__expression] = STATE(1601), - [sym__expression_without_blocks] = STATE(1692), - [sym__expression_with_blocks] = STATE(1692), - [sym_strictly_expression_list] = STATE(3584), - [sym_inc_expression] = STATE(1684), - [sym_dec_expression] = STATE(1684), - [sym_or_block_expression] = STATE(1684), - [sym_option_propagation_expression] = STATE(1684), - [sym_result_propagation_expression] = STATE(1684), - [sym_anon_struct_value_expression] = STATE(1677), - [sym_go_expression] = STATE(1684), - [sym_spawn_expression] = STATE(1684), - [sym_parenthesized_expression] = STATE(1684), - [sym_call_expression] = STATE(1684), - [sym_type_initializer] = STATE(1677), - [sym_function_literal] = STATE(1684), - [sym_reference_expression] = STATE(1674), - [sym_type_reference_expression] = STATE(3541), - [sym_unary_expression] = STATE(1684), - [sym_receive_expression] = STATE(1684), - [sym_binary_expression] = STATE(1684), - [sym_as_type_cast_expression] = STATE(1684), - [sym__max_group] = STATE(1684), - [sym_literal] = STATE(1698), - [sym_map_init_expression] = STATE(1677), - [sym_map_keyed_element] = STATE(2001), - [sym_array_creation] = STATE(1684), - [sym_fixed_array_creation] = STATE(1684), - [sym_selector_expression] = STATE(1684), - [sym_index_expression] = STATE(1684), - [sym_slice_expression] = STATE(1684), - [sym_if_expression] = STATE(1677), - [sym_compile_time_if_expression] = STATE(1677), - [sym_is_expression] = STATE(1684), - [sym_in_expression] = STATE(1684), - [sym_enum_fetch] = STATE(1684), - [sym_match_expression] = STATE(1677), - [sym_select_expression] = STATE(1677), - [sym_lock_expression] = STATE(1677), - [sym_unsafe_expression] = STATE(1677), - [sym_sql_expression] = STATE(1677), - [sym_c_string_literal] = STATE(1705), - [sym_raw_string_literal] = STATE(1705), - [sym_interpreted_string_literal] = STATE(1705), - [sym_mutability_modifiers] = STATE(858), - [sym_mutable_expression] = STATE(3274), - [sym_expression_list] = STATE(3288), - [sym_plain_type] = STATE(4157), - [sym__plain_type_without_special] = STATE(2302), - [sym_anon_struct_type] = STATE(2303), - [sym_multi_return_type] = STATE(2302), - [sym_result_type] = STATE(2302), - [sym_option_type] = STATE(2302), - [sym_qualified_type] = STATE(3541), - [sym_fixed_array_type] = STATE(2303), - [sym_array_type] = STATE(2303), - [sym_pointer_type] = STATE(2303), - [sym_wrong_pointer_type] = STATE(2303), - [sym_map_type] = STATE(2303), - [sym_channel_type] = STATE(2303), - [sym_shared_type] = STATE(2303), - [sym_thread_type] = STATE(2303), - [sym_atomic_type] = STATE(2303), - [sym_generic_type] = STATE(2303), - [sym_function_type] = STATE(2303), - [sym__statement_list] = STATE(4479), - [sym__statement] = STATE(3549), - [sym_simple_statement] = STATE(3582), - [sym_assert_statement] = STATE(3582), - [sym_append_statement] = STATE(3582), - [sym_send_statement] = STATE(3582), - [sym_var_declaration] = STATE(3584), - [sym_assignment_statement] = STATE(3584), - [sym_block] = STATE(3582), - [sym_defer_statement] = STATE(3582), - [sym_goto_statement] = STATE(3582), - [sym_break_statement] = STATE(3582), - [sym_continue_statement] = STATE(3582), - [sym_return_statement] = STATE(3582), + [sym__expression] = STATE(1605), + [sym__expression_without_blocks] = STATE(1747), + [sym__expression_with_blocks] = STATE(1747), + [sym_strictly_expression_list] = STATE(3649), + [sym_inc_expression] = STATE(1749), + [sym_dec_expression] = STATE(1749), + [sym_or_block_expression] = STATE(1749), + [sym_option_propagation_expression] = STATE(1749), + [sym_result_propagation_expression] = STATE(1749), + [sym_anon_struct_value_expression] = STATE(1746), + [sym_go_expression] = STATE(1749), + [sym_spawn_expression] = STATE(1749), + [sym_parenthesized_expression] = STATE(1749), + [sym_call_expression] = STATE(1749), + [sym_type_initializer] = STATE(1746), + [sym_function_literal] = STATE(1749), + [sym_reference_expression] = STATE(1745), + [sym_type_reference_expression] = STATE(3460), + [sym_unary_expression] = STATE(1749), + [sym_receive_expression] = STATE(1749), + [sym_binary_expression] = STATE(1749), + [sym_as_type_cast_expression] = STATE(1749), + [sym__max_group] = STATE(1749), + [sym_literal] = STATE(1738), + [sym_map_init_expression] = STATE(1746), + [sym_map_keyed_element] = STATE(2004), + [sym_array_creation] = STATE(1749), + [sym_fixed_array_creation] = STATE(1749), + [sym_selector_expression] = STATE(1749), + [sym_index_expression] = STATE(1749), + [sym_slice_expression] = STATE(1749), + [sym_if_expression] = STATE(1746), + [sym_compile_time_if_expression] = STATE(1746), + [sym_is_expression] = STATE(1749), + [sym_in_expression] = STATE(1749), + [sym_enum_fetch] = STATE(1749), + [sym_match_expression] = STATE(1746), + [sym_select_expression] = STATE(1746), + [sym_lock_expression] = STATE(1746), + [sym_unsafe_expression] = STATE(1746), + [sym_sql_expression] = STATE(1746), + [sym_c_string_literal] = STATE(1733), + [sym_raw_string_literal] = STATE(1733), + [sym_interpreted_string_literal] = STATE(1733), + [sym_mutability_modifiers] = STATE(843), + [sym_mutable_expression] = STATE(3278), + [sym_expression_list] = STATE(3323), + [sym_plain_type] = STATE(4121), + [sym__plain_type_without_special] = STATE(2360), + [sym_anon_struct_type] = STATE(2362), + [sym_multi_return_type] = STATE(2360), + [sym_result_type] = STATE(2360), + [sym_option_type] = STATE(2360), + [sym_qualified_type] = STATE(3460), + [sym_fixed_array_type] = STATE(2362), + [sym_array_type] = STATE(2362), + [sym_pointer_type] = STATE(2362), + [sym_wrong_pointer_type] = STATE(2362), + [sym_map_type] = STATE(2362), + [sym_channel_type] = STATE(2362), + [sym_shared_type] = STATE(2362), + [sym_thread_type] = STATE(2362), + [sym_atomic_type] = STATE(2362), + [sym_generic_type] = STATE(2362), + [sym_function_type] = STATE(2362), + [sym__statement_list] = STATE(4528), + [sym__statement] = STATE(3566), + [sym_simple_statement] = STATE(3648), + [sym_assert_statement] = STATE(3648), + [sym_append_statement] = STATE(3648), + [sym_send_statement] = STATE(3648), + [sym_var_declaration] = STATE(3649), + [sym_assignment_statement] = STATE(3649), + [sym_block] = STATE(3648), + [sym_defer_statement] = STATE(3648), + [sym_goto_statement] = STATE(3648), + [sym_break_statement] = STATE(3648), + [sym_continue_statement] = STATE(3648), + [sym_return_statement] = STATE(3648), [sym_label_definition] = STATE(62), - [sym_labeled_statement] = STATE(3582), - [sym_empty_labeled_statement] = STATE(4544), - [sym_compile_time_for_statement] = STATE(3582), - [sym_for_statement] = STATE(3582), - [sym_hash_statement] = STATE(3582), - [sym_asm_statement] = STATE(3582), - [aux_sym_map_init_expression_repeat1] = STATE(274), + [sym_labeled_statement] = STATE(3648), + [sym_empty_labeled_statement] = STATE(4547), + [sym_compile_time_for_statement] = STATE(3648), + [sym_for_statement] = STATE(3648), + [sym_hash_statement] = STATE(3648), + [sym_asm_statement] = STATE(3648), + [aux_sym_map_init_expression_repeat1] = STATE(242), [sym_identifier] = ACTIONS(307), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), [anon_sym_DOT] = ACTIONS(309), [anon_sym_LBRACE] = ACTIONS(311), - [anon_sym_RBRACE] = ACTIONS(417), + [anon_sym_RBRACE] = ACTIONS(415), [anon_sym_LPAREN] = ACTIONS(315), [anon_sym_fn] = ACTIONS(317), [anon_sym_PLUS] = ACTIONS(319), @@ -23496,99 +23512,99 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [29] = { [sym_line_comment] = STATE(29), [sym_block_comment] = STATE(29), - [sym__expression] = STATE(1601), - [sym__expression_without_blocks] = STATE(1692), - [sym__expression_with_blocks] = STATE(1692), - [sym_strictly_expression_list] = STATE(3584), - [sym_inc_expression] = STATE(1684), - [sym_dec_expression] = STATE(1684), - [sym_or_block_expression] = STATE(1684), - [sym_option_propagation_expression] = STATE(1684), - [sym_result_propagation_expression] = STATE(1684), - [sym_anon_struct_value_expression] = STATE(1677), - [sym_go_expression] = STATE(1684), - [sym_spawn_expression] = STATE(1684), - [sym_parenthesized_expression] = STATE(1684), - [sym_call_expression] = STATE(1684), - [sym_type_initializer] = STATE(1677), - [sym_function_literal] = STATE(1684), - [sym_reference_expression] = STATE(1674), - [sym_type_reference_expression] = STATE(3541), - [sym_unary_expression] = STATE(1684), - [sym_receive_expression] = STATE(1684), - [sym_binary_expression] = STATE(1684), - [sym_as_type_cast_expression] = STATE(1684), - [sym__max_group] = STATE(1684), - [sym_literal] = STATE(1698), - [sym_map_init_expression] = STATE(1677), - [sym_map_keyed_element] = STATE(2001), - [sym_array_creation] = STATE(1684), - [sym_fixed_array_creation] = STATE(1684), - [sym_selector_expression] = STATE(1684), - [sym_index_expression] = STATE(1684), - [sym_slice_expression] = STATE(1684), - [sym_if_expression] = STATE(1677), - [sym_compile_time_if_expression] = STATE(1677), - [sym_is_expression] = STATE(1684), - [sym_in_expression] = STATE(1684), - [sym_enum_fetch] = STATE(1684), - [sym_match_expression] = STATE(1677), - [sym_select_expression] = STATE(1677), - [sym_lock_expression] = STATE(1677), - [sym_unsafe_expression] = STATE(1677), - [sym_sql_expression] = STATE(1677), - [sym_c_string_literal] = STATE(1705), - [sym_raw_string_literal] = STATE(1705), - [sym_interpreted_string_literal] = STATE(1705), - [sym_mutability_modifiers] = STATE(858), - [sym_mutable_expression] = STATE(3274), - [sym_expression_list] = STATE(3288), - [sym_plain_type] = STATE(4157), - [sym__plain_type_without_special] = STATE(2302), - [sym_anon_struct_type] = STATE(2303), - [sym_multi_return_type] = STATE(2302), - [sym_result_type] = STATE(2302), - [sym_option_type] = STATE(2302), - [sym_qualified_type] = STATE(3541), - [sym_fixed_array_type] = STATE(2303), - [sym_array_type] = STATE(2303), - [sym_pointer_type] = STATE(2303), - [sym_wrong_pointer_type] = STATE(2303), - [sym_map_type] = STATE(2303), - [sym_channel_type] = STATE(2303), - [sym_shared_type] = STATE(2303), - [sym_thread_type] = STATE(2303), - [sym_atomic_type] = STATE(2303), - [sym_generic_type] = STATE(2303), - [sym_function_type] = STATE(2303), - [sym__statement_list] = STATE(4501), - [sym__statement] = STATE(3549), - [sym_simple_statement] = STATE(3582), - [sym_assert_statement] = STATE(3582), - [sym_append_statement] = STATE(3582), - [sym_send_statement] = STATE(3582), - [sym_var_declaration] = STATE(3584), - [sym_assignment_statement] = STATE(3584), - [sym_block] = STATE(3582), - [sym_defer_statement] = STATE(3582), - [sym_goto_statement] = STATE(3582), - [sym_break_statement] = STATE(3582), - [sym_continue_statement] = STATE(3582), - [sym_return_statement] = STATE(3582), + [sym__expression] = STATE(1605), + [sym__expression_without_blocks] = STATE(1747), + [sym__expression_with_blocks] = STATE(1747), + [sym_strictly_expression_list] = STATE(3649), + [sym_inc_expression] = STATE(1749), + [sym_dec_expression] = STATE(1749), + [sym_or_block_expression] = STATE(1749), + [sym_option_propagation_expression] = STATE(1749), + [sym_result_propagation_expression] = STATE(1749), + [sym_anon_struct_value_expression] = STATE(1746), + [sym_go_expression] = STATE(1749), + [sym_spawn_expression] = STATE(1749), + [sym_parenthesized_expression] = STATE(1749), + [sym_call_expression] = STATE(1749), + [sym_type_initializer] = STATE(1746), + [sym_function_literal] = STATE(1749), + [sym_reference_expression] = STATE(1745), + [sym_type_reference_expression] = STATE(3460), + [sym_unary_expression] = STATE(1749), + [sym_receive_expression] = STATE(1749), + [sym_binary_expression] = STATE(1749), + [sym_as_type_cast_expression] = STATE(1749), + [sym__max_group] = STATE(1749), + [sym_literal] = STATE(1738), + [sym_map_init_expression] = STATE(1746), + [sym_map_keyed_element] = STATE(2004), + [sym_array_creation] = STATE(1749), + [sym_fixed_array_creation] = STATE(1749), + [sym_selector_expression] = STATE(1749), + [sym_index_expression] = STATE(1749), + [sym_slice_expression] = STATE(1749), + [sym_if_expression] = STATE(1746), + [sym_compile_time_if_expression] = STATE(1746), + [sym_is_expression] = STATE(1749), + [sym_in_expression] = STATE(1749), + [sym_enum_fetch] = STATE(1749), + [sym_match_expression] = STATE(1746), + [sym_select_expression] = STATE(1746), + [sym_lock_expression] = STATE(1746), + [sym_unsafe_expression] = STATE(1746), + [sym_sql_expression] = STATE(1746), + [sym_c_string_literal] = STATE(1733), + [sym_raw_string_literal] = STATE(1733), + [sym_interpreted_string_literal] = STATE(1733), + [sym_mutability_modifiers] = STATE(843), + [sym_mutable_expression] = STATE(3278), + [sym_expression_list] = STATE(3323), + [sym_plain_type] = STATE(4121), + [sym__plain_type_without_special] = STATE(2360), + [sym_anon_struct_type] = STATE(2362), + [sym_multi_return_type] = STATE(2360), + [sym_result_type] = STATE(2360), + [sym_option_type] = STATE(2360), + [sym_qualified_type] = STATE(3460), + [sym_fixed_array_type] = STATE(2362), + [sym_array_type] = STATE(2362), + [sym_pointer_type] = STATE(2362), + [sym_wrong_pointer_type] = STATE(2362), + [sym_map_type] = STATE(2362), + [sym_channel_type] = STATE(2362), + [sym_shared_type] = STATE(2362), + [sym_thread_type] = STATE(2362), + [sym_atomic_type] = STATE(2362), + [sym_generic_type] = STATE(2362), + [sym_function_type] = STATE(2362), + [sym__statement_list] = STATE(4572), + [sym__statement] = STATE(3566), + [sym_simple_statement] = STATE(3648), + [sym_assert_statement] = STATE(3648), + [sym_append_statement] = STATE(3648), + [sym_send_statement] = STATE(3648), + [sym_var_declaration] = STATE(3649), + [sym_assignment_statement] = STATE(3649), + [sym_block] = STATE(3648), + [sym_defer_statement] = STATE(3648), + [sym_goto_statement] = STATE(3648), + [sym_break_statement] = STATE(3648), + [sym_continue_statement] = STATE(3648), + [sym_return_statement] = STATE(3648), [sym_label_definition] = STATE(62), - [sym_labeled_statement] = STATE(3582), - [sym_empty_labeled_statement] = STATE(4544), - [sym_compile_time_for_statement] = STATE(3582), - [sym_for_statement] = STATE(3582), - [sym_hash_statement] = STATE(3582), - [sym_asm_statement] = STATE(3582), - [aux_sym_map_init_expression_repeat1] = STATE(274), + [sym_labeled_statement] = STATE(3648), + [sym_empty_labeled_statement] = STATE(4547), + [sym_compile_time_for_statement] = STATE(3648), + [sym_for_statement] = STATE(3648), + [sym_hash_statement] = STATE(3648), + [sym_asm_statement] = STATE(3648), + [aux_sym_map_init_expression_repeat1] = STATE(242), [sym_identifier] = ACTIONS(307), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), [anon_sym_DOT] = ACTIONS(309), [anon_sym_LBRACE] = ACTIONS(311), - [anon_sym_RBRACE] = ACTIONS(391), + [anon_sym_RBRACE] = ACTIONS(417), [anon_sym_LPAREN] = ACTIONS(315), [anon_sym_fn] = ACTIONS(317), [anon_sym_PLUS] = ACTIONS(319), @@ -23647,93 +23663,93 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [30] = { [sym_line_comment] = STATE(30), [sym_block_comment] = STATE(30), - [sym__expression] = STATE(1601), - [sym__expression_without_blocks] = STATE(1692), - [sym__expression_with_blocks] = STATE(1692), - [sym_strictly_expression_list] = STATE(3584), - [sym_inc_expression] = STATE(1684), - [sym_dec_expression] = STATE(1684), - [sym_or_block_expression] = STATE(1684), - [sym_option_propagation_expression] = STATE(1684), - [sym_result_propagation_expression] = STATE(1684), - [sym_anon_struct_value_expression] = STATE(1677), - [sym_go_expression] = STATE(1684), - [sym_spawn_expression] = STATE(1684), - [sym_parenthesized_expression] = STATE(1684), - [sym_call_expression] = STATE(1684), - [sym_type_initializer] = STATE(1677), - [sym_function_literal] = STATE(1684), - [sym_reference_expression] = STATE(1674), - [sym_type_reference_expression] = STATE(3541), - [sym_unary_expression] = STATE(1684), - [sym_receive_expression] = STATE(1684), - [sym_binary_expression] = STATE(1684), - [sym_as_type_cast_expression] = STATE(1684), - [sym__max_group] = STATE(1684), - [sym_literal] = STATE(1698), - [sym_map_init_expression] = STATE(1677), - [sym_map_keyed_element] = STATE(2001), - [sym_array_creation] = STATE(1684), - [sym_fixed_array_creation] = STATE(1684), - [sym_selector_expression] = STATE(1684), - [sym_index_expression] = STATE(1684), - [sym_slice_expression] = STATE(1684), - [sym_if_expression] = STATE(1677), - [sym_compile_time_if_expression] = STATE(1677), - [sym_is_expression] = STATE(1684), - [sym_in_expression] = STATE(1684), - [sym_enum_fetch] = STATE(1684), - [sym_match_expression] = STATE(1677), - [sym_select_expression] = STATE(1677), - [sym_lock_expression] = STATE(1677), - [sym_unsafe_expression] = STATE(1677), - [sym_sql_expression] = STATE(1677), - [sym_c_string_literal] = STATE(1705), - [sym_raw_string_literal] = STATE(1705), - [sym_interpreted_string_literal] = STATE(1705), - [sym_mutability_modifiers] = STATE(858), - [sym_mutable_expression] = STATE(3274), - [sym_expression_list] = STATE(3288), - [sym_plain_type] = STATE(4157), - [sym__plain_type_without_special] = STATE(2302), - [sym_anon_struct_type] = STATE(2303), - [sym_multi_return_type] = STATE(2302), - [sym_result_type] = STATE(2302), - [sym_option_type] = STATE(2302), - [sym_qualified_type] = STATE(3541), - [sym_fixed_array_type] = STATE(2303), - [sym_array_type] = STATE(2303), - [sym_pointer_type] = STATE(2303), - [sym_wrong_pointer_type] = STATE(2303), - [sym_map_type] = STATE(2303), - [sym_channel_type] = STATE(2303), - [sym_shared_type] = STATE(2303), - [sym_thread_type] = STATE(2303), - [sym_atomic_type] = STATE(2303), - [sym_generic_type] = STATE(2303), - [sym_function_type] = STATE(2303), - [sym__statement_list] = STATE(4415), - [sym__statement] = STATE(3549), - [sym_simple_statement] = STATE(3582), - [sym_assert_statement] = STATE(3582), - [sym_append_statement] = STATE(3582), - [sym_send_statement] = STATE(3582), - [sym_var_declaration] = STATE(3584), - [sym_assignment_statement] = STATE(3584), - [sym_block] = STATE(3582), - [sym_defer_statement] = STATE(3582), - [sym_goto_statement] = STATE(3582), - [sym_break_statement] = STATE(3582), - [sym_continue_statement] = STATE(3582), - [sym_return_statement] = STATE(3582), + [sym__expression] = STATE(1605), + [sym__expression_without_blocks] = STATE(1747), + [sym__expression_with_blocks] = STATE(1747), + [sym_strictly_expression_list] = STATE(3649), + [sym_inc_expression] = STATE(1749), + [sym_dec_expression] = STATE(1749), + [sym_or_block_expression] = STATE(1749), + [sym_option_propagation_expression] = STATE(1749), + [sym_result_propagation_expression] = STATE(1749), + [sym_anon_struct_value_expression] = STATE(1746), + [sym_go_expression] = STATE(1749), + [sym_spawn_expression] = STATE(1749), + [sym_parenthesized_expression] = STATE(1749), + [sym_call_expression] = STATE(1749), + [sym_type_initializer] = STATE(1746), + [sym_function_literal] = STATE(1749), + [sym_reference_expression] = STATE(1745), + [sym_type_reference_expression] = STATE(3460), + [sym_unary_expression] = STATE(1749), + [sym_receive_expression] = STATE(1749), + [sym_binary_expression] = STATE(1749), + [sym_as_type_cast_expression] = STATE(1749), + [sym__max_group] = STATE(1749), + [sym_literal] = STATE(1738), + [sym_map_init_expression] = STATE(1746), + [sym_map_keyed_element] = STATE(2004), + [sym_array_creation] = STATE(1749), + [sym_fixed_array_creation] = STATE(1749), + [sym_selector_expression] = STATE(1749), + [sym_index_expression] = STATE(1749), + [sym_slice_expression] = STATE(1749), + [sym_if_expression] = STATE(1746), + [sym_compile_time_if_expression] = STATE(1746), + [sym_is_expression] = STATE(1749), + [sym_in_expression] = STATE(1749), + [sym_enum_fetch] = STATE(1749), + [sym_match_expression] = STATE(1746), + [sym_select_expression] = STATE(1746), + [sym_lock_expression] = STATE(1746), + [sym_unsafe_expression] = STATE(1746), + [sym_sql_expression] = STATE(1746), + [sym_c_string_literal] = STATE(1733), + [sym_raw_string_literal] = STATE(1733), + [sym_interpreted_string_literal] = STATE(1733), + [sym_mutability_modifiers] = STATE(843), + [sym_mutable_expression] = STATE(3278), + [sym_expression_list] = STATE(3323), + [sym_plain_type] = STATE(4121), + [sym__plain_type_without_special] = STATE(2360), + [sym_anon_struct_type] = STATE(2362), + [sym_multi_return_type] = STATE(2360), + [sym_result_type] = STATE(2360), + [sym_option_type] = STATE(2360), + [sym_qualified_type] = STATE(3460), + [sym_fixed_array_type] = STATE(2362), + [sym_array_type] = STATE(2362), + [sym_pointer_type] = STATE(2362), + [sym_wrong_pointer_type] = STATE(2362), + [sym_map_type] = STATE(2362), + [sym_channel_type] = STATE(2362), + [sym_shared_type] = STATE(2362), + [sym_thread_type] = STATE(2362), + [sym_atomic_type] = STATE(2362), + [sym_generic_type] = STATE(2362), + [sym_function_type] = STATE(2362), + [sym__statement_list] = STATE(4517), + [sym__statement] = STATE(3566), + [sym_simple_statement] = STATE(3648), + [sym_assert_statement] = STATE(3648), + [sym_append_statement] = STATE(3648), + [sym_send_statement] = STATE(3648), + [sym_var_declaration] = STATE(3649), + [sym_assignment_statement] = STATE(3649), + [sym_block] = STATE(3648), + [sym_defer_statement] = STATE(3648), + [sym_goto_statement] = STATE(3648), + [sym_break_statement] = STATE(3648), + [sym_continue_statement] = STATE(3648), + [sym_return_statement] = STATE(3648), [sym_label_definition] = STATE(62), - [sym_labeled_statement] = STATE(3582), - [sym_empty_labeled_statement] = STATE(4544), - [sym_compile_time_for_statement] = STATE(3582), - [sym_for_statement] = STATE(3582), - [sym_hash_statement] = STATE(3582), - [sym_asm_statement] = STATE(3582), - [aux_sym_map_init_expression_repeat1] = STATE(274), + [sym_labeled_statement] = STATE(3648), + [sym_empty_labeled_statement] = STATE(4547), + [sym_compile_time_for_statement] = STATE(3648), + [sym_for_statement] = STATE(3648), + [sym_hash_statement] = STATE(3648), + [sym_asm_statement] = STATE(3648), + [aux_sym_map_init_expression_repeat1] = STATE(242), [sym_identifier] = ACTIONS(307), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), @@ -23798,93 +23814,93 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [31] = { [sym_line_comment] = STATE(31), [sym_block_comment] = STATE(31), - [sym__expression] = STATE(1601), - [sym__expression_without_blocks] = STATE(1692), - [sym__expression_with_blocks] = STATE(1692), - [sym_strictly_expression_list] = STATE(3584), - [sym_inc_expression] = STATE(1684), - [sym_dec_expression] = STATE(1684), - [sym_or_block_expression] = STATE(1684), - [sym_option_propagation_expression] = STATE(1684), - [sym_result_propagation_expression] = STATE(1684), - [sym_anon_struct_value_expression] = STATE(1677), - [sym_go_expression] = STATE(1684), - [sym_spawn_expression] = STATE(1684), - [sym_parenthesized_expression] = STATE(1684), - [sym_call_expression] = STATE(1684), - [sym_type_initializer] = STATE(1677), - [sym_function_literal] = STATE(1684), - [sym_reference_expression] = STATE(1674), - [sym_type_reference_expression] = STATE(3541), - [sym_unary_expression] = STATE(1684), - [sym_receive_expression] = STATE(1684), - [sym_binary_expression] = STATE(1684), - [sym_as_type_cast_expression] = STATE(1684), - [sym__max_group] = STATE(1684), - [sym_literal] = STATE(1698), - [sym_map_init_expression] = STATE(1677), - [sym_map_keyed_element] = STATE(2001), - [sym_array_creation] = STATE(1684), - [sym_fixed_array_creation] = STATE(1684), - [sym_selector_expression] = STATE(1684), - [sym_index_expression] = STATE(1684), - [sym_slice_expression] = STATE(1684), - [sym_if_expression] = STATE(1677), - [sym_compile_time_if_expression] = STATE(1677), - [sym_is_expression] = STATE(1684), - [sym_in_expression] = STATE(1684), - [sym_enum_fetch] = STATE(1684), - [sym_match_expression] = STATE(1677), - [sym_select_expression] = STATE(1677), - [sym_lock_expression] = STATE(1677), - [sym_unsafe_expression] = STATE(1677), - [sym_sql_expression] = STATE(1677), - [sym_c_string_literal] = STATE(1705), - [sym_raw_string_literal] = STATE(1705), - [sym_interpreted_string_literal] = STATE(1705), - [sym_mutability_modifiers] = STATE(858), - [sym_mutable_expression] = STATE(3274), - [sym_expression_list] = STATE(3288), - [sym_plain_type] = STATE(4157), - [sym__plain_type_without_special] = STATE(2302), - [sym_anon_struct_type] = STATE(2303), - [sym_multi_return_type] = STATE(2302), - [sym_result_type] = STATE(2302), - [sym_option_type] = STATE(2302), - [sym_qualified_type] = STATE(3541), - [sym_fixed_array_type] = STATE(2303), - [sym_array_type] = STATE(2303), - [sym_pointer_type] = STATE(2303), - [sym_wrong_pointer_type] = STATE(2303), - [sym_map_type] = STATE(2303), - [sym_channel_type] = STATE(2303), - [sym_shared_type] = STATE(2303), - [sym_thread_type] = STATE(2303), - [sym_atomic_type] = STATE(2303), - [sym_generic_type] = STATE(2303), - [sym_function_type] = STATE(2303), - [sym__statement_list] = STATE(4438), - [sym__statement] = STATE(3549), - [sym_simple_statement] = STATE(3582), - [sym_assert_statement] = STATE(3582), - [sym_append_statement] = STATE(3582), - [sym_send_statement] = STATE(3582), - [sym_var_declaration] = STATE(3584), - [sym_assignment_statement] = STATE(3584), - [sym_block] = STATE(3582), - [sym_defer_statement] = STATE(3582), - [sym_goto_statement] = STATE(3582), - [sym_break_statement] = STATE(3582), - [sym_continue_statement] = STATE(3582), - [sym_return_statement] = STATE(3582), + [sym__expression] = STATE(1605), + [sym__expression_without_blocks] = STATE(1747), + [sym__expression_with_blocks] = STATE(1747), + [sym_strictly_expression_list] = STATE(3649), + [sym_inc_expression] = STATE(1749), + [sym_dec_expression] = STATE(1749), + [sym_or_block_expression] = STATE(1749), + [sym_option_propagation_expression] = STATE(1749), + [sym_result_propagation_expression] = STATE(1749), + [sym_anon_struct_value_expression] = STATE(1746), + [sym_go_expression] = STATE(1749), + [sym_spawn_expression] = STATE(1749), + [sym_parenthesized_expression] = STATE(1749), + [sym_call_expression] = STATE(1749), + [sym_type_initializer] = STATE(1746), + [sym_function_literal] = STATE(1749), + [sym_reference_expression] = STATE(1745), + [sym_type_reference_expression] = STATE(3460), + [sym_unary_expression] = STATE(1749), + [sym_receive_expression] = STATE(1749), + [sym_binary_expression] = STATE(1749), + [sym_as_type_cast_expression] = STATE(1749), + [sym__max_group] = STATE(1749), + [sym_literal] = STATE(1738), + [sym_map_init_expression] = STATE(1746), + [sym_map_keyed_element] = STATE(2004), + [sym_array_creation] = STATE(1749), + [sym_fixed_array_creation] = STATE(1749), + [sym_selector_expression] = STATE(1749), + [sym_index_expression] = STATE(1749), + [sym_slice_expression] = STATE(1749), + [sym_if_expression] = STATE(1746), + [sym_compile_time_if_expression] = STATE(1746), + [sym_is_expression] = STATE(1749), + [sym_in_expression] = STATE(1749), + [sym_enum_fetch] = STATE(1749), + [sym_match_expression] = STATE(1746), + [sym_select_expression] = STATE(1746), + [sym_lock_expression] = STATE(1746), + [sym_unsafe_expression] = STATE(1746), + [sym_sql_expression] = STATE(1746), + [sym_c_string_literal] = STATE(1733), + [sym_raw_string_literal] = STATE(1733), + [sym_interpreted_string_literal] = STATE(1733), + [sym_mutability_modifiers] = STATE(843), + [sym_mutable_expression] = STATE(3278), + [sym_expression_list] = STATE(3323), + [sym_plain_type] = STATE(4121), + [sym__plain_type_without_special] = STATE(2360), + [sym_anon_struct_type] = STATE(2362), + [sym_multi_return_type] = STATE(2360), + [sym_result_type] = STATE(2360), + [sym_option_type] = STATE(2360), + [sym_qualified_type] = STATE(3460), + [sym_fixed_array_type] = STATE(2362), + [sym_array_type] = STATE(2362), + [sym_pointer_type] = STATE(2362), + [sym_wrong_pointer_type] = STATE(2362), + [sym_map_type] = STATE(2362), + [sym_channel_type] = STATE(2362), + [sym_shared_type] = STATE(2362), + [sym_thread_type] = STATE(2362), + [sym_atomic_type] = STATE(2362), + [sym_generic_type] = STATE(2362), + [sym_function_type] = STATE(2362), + [sym__statement_list] = STATE(4517), + [sym__statement] = STATE(3566), + [sym_simple_statement] = STATE(3648), + [sym_assert_statement] = STATE(3648), + [sym_append_statement] = STATE(3648), + [sym_send_statement] = STATE(3648), + [sym_var_declaration] = STATE(3649), + [sym_assignment_statement] = STATE(3649), + [sym_block] = STATE(3648), + [sym_defer_statement] = STATE(3648), + [sym_goto_statement] = STATE(3648), + [sym_break_statement] = STATE(3648), + [sym_continue_statement] = STATE(3648), + [sym_return_statement] = STATE(3648), [sym_label_definition] = STATE(62), - [sym_labeled_statement] = STATE(3582), - [sym_empty_labeled_statement] = STATE(4544), - [sym_compile_time_for_statement] = STATE(3582), - [sym_for_statement] = STATE(3582), - [sym_hash_statement] = STATE(3582), - [sym_asm_statement] = STATE(3582), - [aux_sym_map_init_expression_repeat1] = STATE(274), + [sym_labeled_statement] = STATE(3648), + [sym_empty_labeled_statement] = STATE(4547), + [sym_compile_time_for_statement] = STATE(3648), + [sym_for_statement] = STATE(3648), + [sym_hash_statement] = STATE(3648), + [sym_asm_statement] = STATE(3648), + [aux_sym_map_init_expression_repeat1] = STATE(242), [sym_identifier] = ACTIONS(307), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), @@ -23949,93 +23965,93 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [32] = { [sym_line_comment] = STATE(32), [sym_block_comment] = STATE(32), - [sym__expression] = STATE(1601), - [sym__expression_without_blocks] = STATE(1692), - [sym__expression_with_blocks] = STATE(1692), - [sym_strictly_expression_list] = STATE(3584), - [sym_inc_expression] = STATE(1684), - [sym_dec_expression] = STATE(1684), - [sym_or_block_expression] = STATE(1684), - [sym_option_propagation_expression] = STATE(1684), - [sym_result_propagation_expression] = STATE(1684), - [sym_anon_struct_value_expression] = STATE(1677), - [sym_go_expression] = STATE(1684), - [sym_spawn_expression] = STATE(1684), - [sym_parenthesized_expression] = STATE(1684), - [sym_call_expression] = STATE(1684), - [sym_type_initializer] = STATE(1677), - [sym_function_literal] = STATE(1684), - [sym_reference_expression] = STATE(1674), - [sym_type_reference_expression] = STATE(3541), - [sym_unary_expression] = STATE(1684), - [sym_receive_expression] = STATE(1684), - [sym_binary_expression] = STATE(1684), - [sym_as_type_cast_expression] = STATE(1684), - [sym__max_group] = STATE(1684), - [sym_literal] = STATE(1698), - [sym_map_init_expression] = STATE(1677), - [sym_map_keyed_element] = STATE(2001), - [sym_array_creation] = STATE(1684), - [sym_fixed_array_creation] = STATE(1684), - [sym_selector_expression] = STATE(1684), - [sym_index_expression] = STATE(1684), - [sym_slice_expression] = STATE(1684), - [sym_if_expression] = STATE(1677), - [sym_compile_time_if_expression] = STATE(1677), - [sym_is_expression] = STATE(1684), - [sym_in_expression] = STATE(1684), - [sym_enum_fetch] = STATE(1684), - [sym_match_expression] = STATE(1677), - [sym_select_expression] = STATE(1677), - [sym_lock_expression] = STATE(1677), - [sym_unsafe_expression] = STATE(1677), - [sym_sql_expression] = STATE(1677), - [sym_c_string_literal] = STATE(1705), - [sym_raw_string_literal] = STATE(1705), - [sym_interpreted_string_literal] = STATE(1705), - [sym_mutability_modifiers] = STATE(858), - [sym_mutable_expression] = STATE(3274), - [sym_expression_list] = STATE(3288), - [sym_plain_type] = STATE(4157), - [sym__plain_type_without_special] = STATE(2302), - [sym_anon_struct_type] = STATE(2303), - [sym_multi_return_type] = STATE(2302), - [sym_result_type] = STATE(2302), - [sym_option_type] = STATE(2302), - [sym_qualified_type] = STATE(3541), - [sym_fixed_array_type] = STATE(2303), - [sym_array_type] = STATE(2303), - [sym_pointer_type] = STATE(2303), - [sym_wrong_pointer_type] = STATE(2303), - [sym_map_type] = STATE(2303), - [sym_channel_type] = STATE(2303), - [sym_shared_type] = STATE(2303), - [sym_thread_type] = STATE(2303), - [sym_atomic_type] = STATE(2303), - [sym_generic_type] = STATE(2303), - [sym_function_type] = STATE(2303), - [sym__statement_list] = STATE(4479), - [sym__statement] = STATE(3549), - [sym_simple_statement] = STATE(3582), - [sym_assert_statement] = STATE(3582), - [sym_append_statement] = STATE(3582), - [sym_send_statement] = STATE(3582), - [sym_var_declaration] = STATE(3584), - [sym_assignment_statement] = STATE(3584), - [sym_block] = STATE(3582), - [sym_defer_statement] = STATE(3582), - [sym_goto_statement] = STATE(3582), - [sym_break_statement] = STATE(3582), - [sym_continue_statement] = STATE(3582), - [sym_return_statement] = STATE(3582), + [sym__expression] = STATE(1605), + [sym__expression_without_blocks] = STATE(1747), + [sym__expression_with_blocks] = STATE(1747), + [sym_strictly_expression_list] = STATE(3649), + [sym_inc_expression] = STATE(1749), + [sym_dec_expression] = STATE(1749), + [sym_or_block_expression] = STATE(1749), + [sym_option_propagation_expression] = STATE(1749), + [sym_result_propagation_expression] = STATE(1749), + [sym_anon_struct_value_expression] = STATE(1746), + [sym_go_expression] = STATE(1749), + [sym_spawn_expression] = STATE(1749), + [sym_parenthesized_expression] = STATE(1749), + [sym_call_expression] = STATE(1749), + [sym_type_initializer] = STATE(1746), + [sym_function_literal] = STATE(1749), + [sym_reference_expression] = STATE(1745), + [sym_type_reference_expression] = STATE(3460), + [sym_unary_expression] = STATE(1749), + [sym_receive_expression] = STATE(1749), + [sym_binary_expression] = STATE(1749), + [sym_as_type_cast_expression] = STATE(1749), + [sym__max_group] = STATE(1749), + [sym_literal] = STATE(1738), + [sym_map_init_expression] = STATE(1746), + [sym_map_keyed_element] = STATE(2004), + [sym_array_creation] = STATE(1749), + [sym_fixed_array_creation] = STATE(1749), + [sym_selector_expression] = STATE(1749), + [sym_index_expression] = STATE(1749), + [sym_slice_expression] = STATE(1749), + [sym_if_expression] = STATE(1746), + [sym_compile_time_if_expression] = STATE(1746), + [sym_is_expression] = STATE(1749), + [sym_in_expression] = STATE(1749), + [sym_enum_fetch] = STATE(1749), + [sym_match_expression] = STATE(1746), + [sym_select_expression] = STATE(1746), + [sym_lock_expression] = STATE(1746), + [sym_unsafe_expression] = STATE(1746), + [sym_sql_expression] = STATE(1746), + [sym_c_string_literal] = STATE(1733), + [sym_raw_string_literal] = STATE(1733), + [sym_interpreted_string_literal] = STATE(1733), + [sym_mutability_modifiers] = STATE(843), + [sym_mutable_expression] = STATE(3278), + [sym_expression_list] = STATE(3323), + [sym_plain_type] = STATE(4121), + [sym__plain_type_without_special] = STATE(2360), + [sym_anon_struct_type] = STATE(2362), + [sym_multi_return_type] = STATE(2360), + [sym_result_type] = STATE(2360), + [sym_option_type] = STATE(2360), + [sym_qualified_type] = STATE(3460), + [sym_fixed_array_type] = STATE(2362), + [sym_array_type] = STATE(2362), + [sym_pointer_type] = STATE(2362), + [sym_wrong_pointer_type] = STATE(2362), + [sym_map_type] = STATE(2362), + [sym_channel_type] = STATE(2362), + [sym_shared_type] = STATE(2362), + [sym_thread_type] = STATE(2362), + [sym_atomic_type] = STATE(2362), + [sym_generic_type] = STATE(2362), + [sym_function_type] = STATE(2362), + [sym__statement_list] = STATE(4533), + [sym__statement] = STATE(3566), + [sym_simple_statement] = STATE(3648), + [sym_assert_statement] = STATE(3648), + [sym_append_statement] = STATE(3648), + [sym_send_statement] = STATE(3648), + [sym_var_declaration] = STATE(3649), + [sym_assignment_statement] = STATE(3649), + [sym_block] = STATE(3648), + [sym_defer_statement] = STATE(3648), + [sym_goto_statement] = STATE(3648), + [sym_break_statement] = STATE(3648), + [sym_continue_statement] = STATE(3648), + [sym_return_statement] = STATE(3648), [sym_label_definition] = STATE(62), - [sym_labeled_statement] = STATE(3582), - [sym_empty_labeled_statement] = STATE(4544), - [sym_compile_time_for_statement] = STATE(3582), - [sym_for_statement] = STATE(3582), - [sym_hash_statement] = STATE(3582), - [sym_asm_statement] = STATE(3582), - [aux_sym_map_init_expression_repeat1] = STATE(246), + [sym_labeled_statement] = STATE(3648), + [sym_empty_labeled_statement] = STATE(4547), + [sym_compile_time_for_statement] = STATE(3648), + [sym_for_statement] = STATE(3648), + [sym_hash_statement] = STATE(3648), + [sym_asm_statement] = STATE(3648), + [aux_sym_map_init_expression_repeat1] = STATE(271), [sym_identifier] = ACTIONS(307), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), @@ -24100,93 +24116,93 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [33] = { [sym_line_comment] = STATE(33), [sym_block_comment] = STATE(33), - [sym__expression] = STATE(1601), - [sym__expression_without_blocks] = STATE(1692), - [sym__expression_with_blocks] = STATE(1692), - [sym_strictly_expression_list] = STATE(3584), - [sym_inc_expression] = STATE(1684), - [sym_dec_expression] = STATE(1684), - [sym_or_block_expression] = STATE(1684), - [sym_option_propagation_expression] = STATE(1684), - [sym_result_propagation_expression] = STATE(1684), - [sym_anon_struct_value_expression] = STATE(1677), - [sym_go_expression] = STATE(1684), - [sym_spawn_expression] = STATE(1684), - [sym_parenthesized_expression] = STATE(1684), - [sym_call_expression] = STATE(1684), - [sym_type_initializer] = STATE(1677), - [sym_function_literal] = STATE(1684), - [sym_reference_expression] = STATE(1674), - [sym_type_reference_expression] = STATE(3541), - [sym_unary_expression] = STATE(1684), - [sym_receive_expression] = STATE(1684), - [sym_binary_expression] = STATE(1684), - [sym_as_type_cast_expression] = STATE(1684), - [sym__max_group] = STATE(1684), - [sym_literal] = STATE(1698), - [sym_map_init_expression] = STATE(1677), - [sym_map_keyed_element] = STATE(2001), - [sym_array_creation] = STATE(1684), - [sym_fixed_array_creation] = STATE(1684), - [sym_selector_expression] = STATE(1684), - [sym_index_expression] = STATE(1684), - [sym_slice_expression] = STATE(1684), - [sym_if_expression] = STATE(1677), - [sym_compile_time_if_expression] = STATE(1677), - [sym_is_expression] = STATE(1684), - [sym_in_expression] = STATE(1684), - [sym_enum_fetch] = STATE(1684), - [sym_match_expression] = STATE(1677), - [sym_select_expression] = STATE(1677), - [sym_lock_expression] = STATE(1677), - [sym_unsafe_expression] = STATE(1677), - [sym_sql_expression] = STATE(1677), - [sym_c_string_literal] = STATE(1705), - [sym_raw_string_literal] = STATE(1705), - [sym_interpreted_string_literal] = STATE(1705), - [sym_mutability_modifiers] = STATE(858), - [sym_mutable_expression] = STATE(3274), - [sym_expression_list] = STATE(3288), - [sym_plain_type] = STATE(4157), - [sym__plain_type_without_special] = STATE(2302), - [sym_anon_struct_type] = STATE(2303), - [sym_multi_return_type] = STATE(2302), - [sym_result_type] = STATE(2302), - [sym_option_type] = STATE(2302), - [sym_qualified_type] = STATE(3541), - [sym_fixed_array_type] = STATE(2303), - [sym_array_type] = STATE(2303), - [sym_pointer_type] = STATE(2303), - [sym_wrong_pointer_type] = STATE(2303), - [sym_map_type] = STATE(2303), - [sym_channel_type] = STATE(2303), - [sym_shared_type] = STATE(2303), - [sym_thread_type] = STATE(2303), - [sym_atomic_type] = STATE(2303), - [sym_generic_type] = STATE(2303), - [sym_function_type] = STATE(2303), + [sym__expression] = STATE(1605), + [sym__expression_without_blocks] = STATE(1747), + [sym__expression_with_blocks] = STATE(1747), + [sym_strictly_expression_list] = STATE(3649), + [sym_inc_expression] = STATE(1749), + [sym_dec_expression] = STATE(1749), + [sym_or_block_expression] = STATE(1749), + [sym_option_propagation_expression] = STATE(1749), + [sym_result_propagation_expression] = STATE(1749), + [sym_anon_struct_value_expression] = STATE(1746), + [sym_go_expression] = STATE(1749), + [sym_spawn_expression] = STATE(1749), + [sym_parenthesized_expression] = STATE(1749), + [sym_call_expression] = STATE(1749), + [sym_type_initializer] = STATE(1746), + [sym_function_literal] = STATE(1749), + [sym_reference_expression] = STATE(1745), + [sym_type_reference_expression] = STATE(3460), + [sym_unary_expression] = STATE(1749), + [sym_receive_expression] = STATE(1749), + [sym_binary_expression] = STATE(1749), + [sym_as_type_cast_expression] = STATE(1749), + [sym__max_group] = STATE(1749), + [sym_literal] = STATE(1738), + [sym_map_init_expression] = STATE(1746), + [sym_map_keyed_element] = STATE(2004), + [sym_array_creation] = STATE(1749), + [sym_fixed_array_creation] = STATE(1749), + [sym_selector_expression] = STATE(1749), + [sym_index_expression] = STATE(1749), + [sym_slice_expression] = STATE(1749), + [sym_if_expression] = STATE(1746), + [sym_compile_time_if_expression] = STATE(1746), + [sym_is_expression] = STATE(1749), + [sym_in_expression] = STATE(1749), + [sym_enum_fetch] = STATE(1749), + [sym_match_expression] = STATE(1746), + [sym_select_expression] = STATE(1746), + [sym_lock_expression] = STATE(1746), + [sym_unsafe_expression] = STATE(1746), + [sym_sql_expression] = STATE(1746), + [sym_c_string_literal] = STATE(1733), + [sym_raw_string_literal] = STATE(1733), + [sym_interpreted_string_literal] = STATE(1733), + [sym_mutability_modifiers] = STATE(843), + [sym_mutable_expression] = STATE(3278), + [sym_expression_list] = STATE(3323), + [sym_plain_type] = STATE(4121), + [sym__plain_type_without_special] = STATE(2360), + [sym_anon_struct_type] = STATE(2362), + [sym_multi_return_type] = STATE(2360), + [sym_result_type] = STATE(2360), + [sym_option_type] = STATE(2360), + [sym_qualified_type] = STATE(3460), + [sym_fixed_array_type] = STATE(2362), + [sym_array_type] = STATE(2362), + [sym_pointer_type] = STATE(2362), + [sym_wrong_pointer_type] = STATE(2362), + [sym_map_type] = STATE(2362), + [sym_channel_type] = STATE(2362), + [sym_shared_type] = STATE(2362), + [sym_thread_type] = STATE(2362), + [sym_atomic_type] = STATE(2362), + [sym_generic_type] = STATE(2362), + [sym_function_type] = STATE(2362), [sym__statement_list] = STATE(4390), - [sym__statement] = STATE(3549), - [sym_simple_statement] = STATE(3582), - [sym_assert_statement] = STATE(3582), - [sym_append_statement] = STATE(3582), - [sym_send_statement] = STATE(3582), - [sym_var_declaration] = STATE(3584), - [sym_assignment_statement] = STATE(3584), - [sym_block] = STATE(3582), - [sym_defer_statement] = STATE(3582), - [sym_goto_statement] = STATE(3582), - [sym_break_statement] = STATE(3582), - [sym_continue_statement] = STATE(3582), - [sym_return_statement] = STATE(3582), + [sym__statement] = STATE(3566), + [sym_simple_statement] = STATE(3648), + [sym_assert_statement] = STATE(3648), + [sym_append_statement] = STATE(3648), + [sym_send_statement] = STATE(3648), + [sym_var_declaration] = STATE(3649), + [sym_assignment_statement] = STATE(3649), + [sym_block] = STATE(3648), + [sym_defer_statement] = STATE(3648), + [sym_goto_statement] = STATE(3648), + [sym_break_statement] = STATE(3648), + [sym_continue_statement] = STATE(3648), + [sym_return_statement] = STATE(3648), [sym_label_definition] = STATE(62), - [sym_labeled_statement] = STATE(3582), - [sym_empty_labeled_statement] = STATE(4544), - [sym_compile_time_for_statement] = STATE(3582), - [sym_for_statement] = STATE(3582), - [sym_hash_statement] = STATE(3582), - [sym_asm_statement] = STATE(3582), - [aux_sym_map_init_expression_repeat1] = STATE(274), + [sym_labeled_statement] = STATE(3648), + [sym_empty_labeled_statement] = STATE(4547), + [sym_compile_time_for_statement] = STATE(3648), + [sym_for_statement] = STATE(3648), + [sym_hash_statement] = STATE(3648), + [sym_asm_statement] = STATE(3648), + [aux_sym_map_init_expression_repeat1] = STATE(242), [sym_identifier] = ACTIONS(307), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), @@ -24251,93 +24267,93 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [34] = { [sym_line_comment] = STATE(34), [sym_block_comment] = STATE(34), - [sym__expression] = STATE(1601), - [sym__expression_without_blocks] = STATE(1692), - [sym__expression_with_blocks] = STATE(1692), - [sym_strictly_expression_list] = STATE(3584), - [sym_inc_expression] = STATE(1684), - [sym_dec_expression] = STATE(1684), - [sym_or_block_expression] = STATE(1684), - [sym_option_propagation_expression] = STATE(1684), - [sym_result_propagation_expression] = STATE(1684), - [sym_anon_struct_value_expression] = STATE(1677), - [sym_go_expression] = STATE(1684), - [sym_spawn_expression] = STATE(1684), - [sym_parenthesized_expression] = STATE(1684), - [sym_call_expression] = STATE(1684), - [sym_type_initializer] = STATE(1677), - [sym_function_literal] = STATE(1684), - [sym_reference_expression] = STATE(1674), - [sym_type_reference_expression] = STATE(3541), - [sym_unary_expression] = STATE(1684), - [sym_receive_expression] = STATE(1684), - [sym_binary_expression] = STATE(1684), - [sym_as_type_cast_expression] = STATE(1684), - [sym__max_group] = STATE(1684), - [sym_literal] = STATE(1698), - [sym_map_init_expression] = STATE(1677), - [sym_map_keyed_element] = STATE(2001), - [sym_array_creation] = STATE(1684), - [sym_fixed_array_creation] = STATE(1684), - [sym_selector_expression] = STATE(1684), - [sym_index_expression] = STATE(1684), - [sym_slice_expression] = STATE(1684), - [sym_if_expression] = STATE(1677), - [sym_compile_time_if_expression] = STATE(1677), - [sym_is_expression] = STATE(1684), - [sym_in_expression] = STATE(1684), - [sym_enum_fetch] = STATE(1684), - [sym_match_expression] = STATE(1677), - [sym_select_expression] = STATE(1677), - [sym_lock_expression] = STATE(1677), - [sym_unsafe_expression] = STATE(1677), - [sym_sql_expression] = STATE(1677), - [sym_c_string_literal] = STATE(1705), - [sym_raw_string_literal] = STATE(1705), - [sym_interpreted_string_literal] = STATE(1705), - [sym_mutability_modifiers] = STATE(858), - [sym_mutable_expression] = STATE(3274), - [sym_expression_list] = STATE(3288), - [sym_plain_type] = STATE(4157), - [sym__plain_type_without_special] = STATE(2302), - [sym_anon_struct_type] = STATE(2303), - [sym_multi_return_type] = STATE(2302), - [sym_result_type] = STATE(2302), - [sym_option_type] = STATE(2302), - [sym_qualified_type] = STATE(3541), - [sym_fixed_array_type] = STATE(2303), - [sym_array_type] = STATE(2303), - [sym_pointer_type] = STATE(2303), - [sym_wrong_pointer_type] = STATE(2303), - [sym_map_type] = STATE(2303), - [sym_channel_type] = STATE(2303), - [sym_shared_type] = STATE(2303), - [sym_thread_type] = STATE(2303), - [sym_atomic_type] = STATE(2303), - [sym_generic_type] = STATE(2303), - [sym_function_type] = STATE(2303), - [sym__statement_list] = STATE(4436), - [sym__statement] = STATE(3549), - [sym_simple_statement] = STATE(3582), - [sym_assert_statement] = STATE(3582), - [sym_append_statement] = STATE(3582), - [sym_send_statement] = STATE(3582), - [sym_var_declaration] = STATE(3584), - [sym_assignment_statement] = STATE(3584), - [sym_block] = STATE(3582), - [sym_defer_statement] = STATE(3582), - [sym_goto_statement] = STATE(3582), - [sym_break_statement] = STATE(3582), - [sym_continue_statement] = STATE(3582), - [sym_return_statement] = STATE(3582), + [sym__expression] = STATE(1605), + [sym__expression_without_blocks] = STATE(1747), + [sym__expression_with_blocks] = STATE(1747), + [sym_strictly_expression_list] = STATE(3649), + [sym_inc_expression] = STATE(1749), + [sym_dec_expression] = STATE(1749), + [sym_or_block_expression] = STATE(1749), + [sym_option_propagation_expression] = STATE(1749), + [sym_result_propagation_expression] = STATE(1749), + [sym_anon_struct_value_expression] = STATE(1746), + [sym_go_expression] = STATE(1749), + [sym_spawn_expression] = STATE(1749), + [sym_parenthesized_expression] = STATE(1749), + [sym_call_expression] = STATE(1749), + [sym_type_initializer] = STATE(1746), + [sym_function_literal] = STATE(1749), + [sym_reference_expression] = STATE(1745), + [sym_type_reference_expression] = STATE(3460), + [sym_unary_expression] = STATE(1749), + [sym_receive_expression] = STATE(1749), + [sym_binary_expression] = STATE(1749), + [sym_as_type_cast_expression] = STATE(1749), + [sym__max_group] = STATE(1749), + [sym_literal] = STATE(1738), + [sym_map_init_expression] = STATE(1746), + [sym_map_keyed_element] = STATE(2004), + [sym_array_creation] = STATE(1749), + [sym_fixed_array_creation] = STATE(1749), + [sym_selector_expression] = STATE(1749), + [sym_index_expression] = STATE(1749), + [sym_slice_expression] = STATE(1749), + [sym_if_expression] = STATE(1746), + [sym_compile_time_if_expression] = STATE(1746), + [sym_is_expression] = STATE(1749), + [sym_in_expression] = STATE(1749), + [sym_enum_fetch] = STATE(1749), + [sym_match_expression] = STATE(1746), + [sym_select_expression] = STATE(1746), + [sym_lock_expression] = STATE(1746), + [sym_unsafe_expression] = STATE(1746), + [sym_sql_expression] = STATE(1746), + [sym_c_string_literal] = STATE(1733), + [sym_raw_string_literal] = STATE(1733), + [sym_interpreted_string_literal] = STATE(1733), + [sym_mutability_modifiers] = STATE(843), + [sym_mutable_expression] = STATE(3278), + [sym_expression_list] = STATE(3323), + [sym_plain_type] = STATE(4121), + [sym__plain_type_without_special] = STATE(2360), + [sym_anon_struct_type] = STATE(2362), + [sym_multi_return_type] = STATE(2360), + [sym_result_type] = STATE(2360), + [sym_option_type] = STATE(2360), + [sym_qualified_type] = STATE(3460), + [sym_fixed_array_type] = STATE(2362), + [sym_array_type] = STATE(2362), + [sym_pointer_type] = STATE(2362), + [sym_wrong_pointer_type] = STATE(2362), + [sym_map_type] = STATE(2362), + [sym_channel_type] = STATE(2362), + [sym_shared_type] = STATE(2362), + [sym_thread_type] = STATE(2362), + [sym_atomic_type] = STATE(2362), + [sym_generic_type] = STATE(2362), + [sym_function_type] = STATE(2362), + [sym__statement_list] = STATE(4597), + [sym__statement] = STATE(3566), + [sym_simple_statement] = STATE(3648), + [sym_assert_statement] = STATE(3648), + [sym_append_statement] = STATE(3648), + [sym_send_statement] = STATE(3648), + [sym_var_declaration] = STATE(3649), + [sym_assignment_statement] = STATE(3649), + [sym_block] = STATE(3648), + [sym_defer_statement] = STATE(3648), + [sym_goto_statement] = STATE(3648), + [sym_break_statement] = STATE(3648), + [sym_continue_statement] = STATE(3648), + [sym_return_statement] = STATE(3648), [sym_label_definition] = STATE(62), - [sym_labeled_statement] = STATE(3582), - [sym_empty_labeled_statement] = STATE(4544), - [sym_compile_time_for_statement] = STATE(3582), - [sym_for_statement] = STATE(3582), - [sym_hash_statement] = STATE(3582), - [sym_asm_statement] = STATE(3582), - [aux_sym_map_init_expression_repeat1] = STATE(274), + [sym_labeled_statement] = STATE(3648), + [sym_empty_labeled_statement] = STATE(4547), + [sym_compile_time_for_statement] = STATE(3648), + [sym_for_statement] = STATE(3648), + [sym_hash_statement] = STATE(3648), + [sym_asm_statement] = STATE(3648), + [aux_sym_map_init_expression_repeat1] = STATE(242), [sym_identifier] = ACTIONS(307), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), @@ -24402,93 +24418,93 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [35] = { [sym_line_comment] = STATE(35), [sym_block_comment] = STATE(35), - [sym__expression] = STATE(1601), - [sym__expression_without_blocks] = STATE(1692), - [sym__expression_with_blocks] = STATE(1692), - [sym_strictly_expression_list] = STATE(3584), - [sym_inc_expression] = STATE(1684), - [sym_dec_expression] = STATE(1684), - [sym_or_block_expression] = STATE(1684), - [sym_option_propagation_expression] = STATE(1684), - [sym_result_propagation_expression] = STATE(1684), - [sym_anon_struct_value_expression] = STATE(1677), - [sym_go_expression] = STATE(1684), - [sym_spawn_expression] = STATE(1684), - [sym_parenthesized_expression] = STATE(1684), - [sym_call_expression] = STATE(1684), - [sym_type_initializer] = STATE(1677), - [sym_function_literal] = STATE(1684), - [sym_reference_expression] = STATE(1674), - [sym_type_reference_expression] = STATE(3541), - [sym_unary_expression] = STATE(1684), - [sym_receive_expression] = STATE(1684), - [sym_binary_expression] = STATE(1684), - [sym_as_type_cast_expression] = STATE(1684), - [sym__max_group] = STATE(1684), - [sym_literal] = STATE(1698), - [sym_map_init_expression] = STATE(1677), - [sym_map_keyed_element] = STATE(2001), - [sym_array_creation] = STATE(1684), - [sym_fixed_array_creation] = STATE(1684), - [sym_selector_expression] = STATE(1684), - [sym_index_expression] = STATE(1684), - [sym_slice_expression] = STATE(1684), - [sym_if_expression] = STATE(1677), - [sym_compile_time_if_expression] = STATE(1677), - [sym_is_expression] = STATE(1684), - [sym_in_expression] = STATE(1684), - [sym_enum_fetch] = STATE(1684), - [sym_match_expression] = STATE(1677), - [sym_select_expression] = STATE(1677), - [sym_lock_expression] = STATE(1677), - [sym_unsafe_expression] = STATE(1677), - [sym_sql_expression] = STATE(1677), - [sym_c_string_literal] = STATE(1705), - [sym_raw_string_literal] = STATE(1705), - [sym_interpreted_string_literal] = STATE(1705), - [sym_mutability_modifiers] = STATE(858), - [sym_mutable_expression] = STATE(3274), - [sym_expression_list] = STATE(3288), - [sym_plain_type] = STATE(4157), - [sym__plain_type_without_special] = STATE(2302), - [sym_anon_struct_type] = STATE(2303), - [sym_multi_return_type] = STATE(2302), - [sym_result_type] = STATE(2302), - [sym_option_type] = STATE(2302), - [sym_qualified_type] = STATE(3541), - [sym_fixed_array_type] = STATE(2303), - [sym_array_type] = STATE(2303), - [sym_pointer_type] = STATE(2303), - [sym_wrong_pointer_type] = STATE(2303), - [sym_map_type] = STATE(2303), - [sym_channel_type] = STATE(2303), - [sym_shared_type] = STATE(2303), - [sym_thread_type] = STATE(2303), - [sym_atomic_type] = STATE(2303), - [sym_generic_type] = STATE(2303), - [sym_function_type] = STATE(2303), - [sym__statement_list] = STATE(4516), - [sym__statement] = STATE(3549), - [sym_simple_statement] = STATE(3582), - [sym_assert_statement] = STATE(3582), - [sym_append_statement] = STATE(3582), - [sym_send_statement] = STATE(3582), - [sym_var_declaration] = STATE(3584), - [sym_assignment_statement] = STATE(3584), - [sym_block] = STATE(3582), - [sym_defer_statement] = STATE(3582), - [sym_goto_statement] = STATE(3582), - [sym_break_statement] = STATE(3582), - [sym_continue_statement] = STATE(3582), - [sym_return_statement] = STATE(3582), + [sym__expression] = STATE(1605), + [sym__expression_without_blocks] = STATE(1747), + [sym__expression_with_blocks] = STATE(1747), + [sym_strictly_expression_list] = STATE(3649), + [sym_inc_expression] = STATE(1749), + [sym_dec_expression] = STATE(1749), + [sym_or_block_expression] = STATE(1749), + [sym_option_propagation_expression] = STATE(1749), + [sym_result_propagation_expression] = STATE(1749), + [sym_anon_struct_value_expression] = STATE(1746), + [sym_go_expression] = STATE(1749), + [sym_spawn_expression] = STATE(1749), + [sym_parenthesized_expression] = STATE(1749), + [sym_call_expression] = STATE(1749), + [sym_type_initializer] = STATE(1746), + [sym_function_literal] = STATE(1749), + [sym_reference_expression] = STATE(1745), + [sym_type_reference_expression] = STATE(3460), + [sym_unary_expression] = STATE(1749), + [sym_receive_expression] = STATE(1749), + [sym_binary_expression] = STATE(1749), + [sym_as_type_cast_expression] = STATE(1749), + [sym__max_group] = STATE(1749), + [sym_literal] = STATE(1738), + [sym_map_init_expression] = STATE(1746), + [sym_map_keyed_element] = STATE(2004), + [sym_array_creation] = STATE(1749), + [sym_fixed_array_creation] = STATE(1749), + [sym_selector_expression] = STATE(1749), + [sym_index_expression] = STATE(1749), + [sym_slice_expression] = STATE(1749), + [sym_if_expression] = STATE(1746), + [sym_compile_time_if_expression] = STATE(1746), + [sym_is_expression] = STATE(1749), + [sym_in_expression] = STATE(1749), + [sym_enum_fetch] = STATE(1749), + [sym_match_expression] = STATE(1746), + [sym_select_expression] = STATE(1746), + [sym_lock_expression] = STATE(1746), + [sym_unsafe_expression] = STATE(1746), + [sym_sql_expression] = STATE(1746), + [sym_c_string_literal] = STATE(1733), + [sym_raw_string_literal] = STATE(1733), + [sym_interpreted_string_literal] = STATE(1733), + [sym_mutability_modifiers] = STATE(843), + [sym_mutable_expression] = STATE(3278), + [sym_expression_list] = STATE(3323), + [sym_plain_type] = STATE(4121), + [sym__plain_type_without_special] = STATE(2360), + [sym_anon_struct_type] = STATE(2362), + [sym_multi_return_type] = STATE(2360), + [sym_result_type] = STATE(2360), + [sym_option_type] = STATE(2360), + [sym_qualified_type] = STATE(3460), + [sym_fixed_array_type] = STATE(2362), + [sym_array_type] = STATE(2362), + [sym_pointer_type] = STATE(2362), + [sym_wrong_pointer_type] = STATE(2362), + [sym_map_type] = STATE(2362), + [sym_channel_type] = STATE(2362), + [sym_shared_type] = STATE(2362), + [sym_thread_type] = STATE(2362), + [sym_atomic_type] = STATE(2362), + [sym_generic_type] = STATE(2362), + [sym_function_type] = STATE(2362), + [sym__statement_list] = STATE(4390), + [sym__statement] = STATE(3566), + [sym_simple_statement] = STATE(3648), + [sym_assert_statement] = STATE(3648), + [sym_append_statement] = STATE(3648), + [sym_send_statement] = STATE(3648), + [sym_var_declaration] = STATE(3649), + [sym_assignment_statement] = STATE(3649), + [sym_block] = STATE(3648), + [sym_defer_statement] = STATE(3648), + [sym_goto_statement] = STATE(3648), + [sym_break_statement] = STATE(3648), + [sym_continue_statement] = STATE(3648), + [sym_return_statement] = STATE(3648), [sym_label_definition] = STATE(62), - [sym_labeled_statement] = STATE(3582), - [sym_empty_labeled_statement] = STATE(4544), - [sym_compile_time_for_statement] = STATE(3582), - [sym_for_statement] = STATE(3582), - [sym_hash_statement] = STATE(3582), - [sym_asm_statement] = STATE(3582), - [aux_sym_map_init_expression_repeat1] = STATE(274), + [sym_labeled_statement] = STATE(3648), + [sym_empty_labeled_statement] = STATE(4547), + [sym_compile_time_for_statement] = STATE(3648), + [sym_for_statement] = STATE(3648), + [sym_hash_statement] = STATE(3648), + [sym_asm_statement] = STATE(3648), + [aux_sym_map_init_expression_repeat1] = STATE(242), [sym_identifier] = ACTIONS(307), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), @@ -24553,93 +24569,93 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [36] = { [sym_line_comment] = STATE(36), [sym_block_comment] = STATE(36), - [sym__expression] = STATE(1601), - [sym__expression_without_blocks] = STATE(1692), - [sym__expression_with_blocks] = STATE(1692), - [sym_strictly_expression_list] = STATE(3584), - [sym_inc_expression] = STATE(1684), - [sym_dec_expression] = STATE(1684), - [sym_or_block_expression] = STATE(1684), - [sym_option_propagation_expression] = STATE(1684), - [sym_result_propagation_expression] = STATE(1684), - [sym_anon_struct_value_expression] = STATE(1677), - [sym_go_expression] = STATE(1684), - [sym_spawn_expression] = STATE(1684), - [sym_parenthesized_expression] = STATE(1684), - [sym_call_expression] = STATE(1684), - [sym_type_initializer] = STATE(1677), - [sym_function_literal] = STATE(1684), - [sym_reference_expression] = STATE(1674), - [sym_type_reference_expression] = STATE(3541), - [sym_unary_expression] = STATE(1684), - [sym_receive_expression] = STATE(1684), - [sym_binary_expression] = STATE(1684), - [sym_as_type_cast_expression] = STATE(1684), - [sym__max_group] = STATE(1684), - [sym_literal] = STATE(1698), - [sym_map_init_expression] = STATE(1677), - [sym_map_keyed_element] = STATE(2001), - [sym_array_creation] = STATE(1684), - [sym_fixed_array_creation] = STATE(1684), - [sym_selector_expression] = STATE(1684), - [sym_index_expression] = STATE(1684), - [sym_slice_expression] = STATE(1684), - [sym_if_expression] = STATE(1677), - [sym_compile_time_if_expression] = STATE(1677), - [sym_is_expression] = STATE(1684), - [sym_in_expression] = STATE(1684), - [sym_enum_fetch] = STATE(1684), - [sym_match_expression] = STATE(1677), - [sym_select_expression] = STATE(1677), - [sym_lock_expression] = STATE(1677), - [sym_unsafe_expression] = STATE(1677), - [sym_sql_expression] = STATE(1677), - [sym_c_string_literal] = STATE(1705), - [sym_raw_string_literal] = STATE(1705), - [sym_interpreted_string_literal] = STATE(1705), - [sym_mutability_modifiers] = STATE(858), - [sym_mutable_expression] = STATE(3274), - [sym_expression_list] = STATE(3288), - [sym_plain_type] = STATE(4157), - [sym__plain_type_without_special] = STATE(2302), - [sym_anon_struct_type] = STATE(2303), - [sym_multi_return_type] = STATE(2302), - [sym_result_type] = STATE(2302), - [sym_option_type] = STATE(2302), - [sym_qualified_type] = STATE(3541), - [sym_fixed_array_type] = STATE(2303), - [sym_array_type] = STATE(2303), - [sym_pointer_type] = STATE(2303), - [sym_wrong_pointer_type] = STATE(2303), - [sym_map_type] = STATE(2303), - [sym_channel_type] = STATE(2303), - [sym_shared_type] = STATE(2303), - [sym_thread_type] = STATE(2303), - [sym_atomic_type] = STATE(2303), - [sym_generic_type] = STATE(2303), - [sym_function_type] = STATE(2303), - [sym__statement_list] = STATE(4546), - [sym__statement] = STATE(3549), - [sym_simple_statement] = STATE(3582), - [sym_assert_statement] = STATE(3582), - [sym_append_statement] = STATE(3582), - [sym_send_statement] = STATE(3582), - [sym_var_declaration] = STATE(3584), - [sym_assignment_statement] = STATE(3584), - [sym_block] = STATE(3582), - [sym_defer_statement] = STATE(3582), - [sym_goto_statement] = STATE(3582), - [sym_break_statement] = STATE(3582), - [sym_continue_statement] = STATE(3582), - [sym_return_statement] = STATE(3582), + [sym__expression] = STATE(1605), + [sym__expression_without_blocks] = STATE(1747), + [sym__expression_with_blocks] = STATE(1747), + [sym_strictly_expression_list] = STATE(3649), + [sym_inc_expression] = STATE(1749), + [sym_dec_expression] = STATE(1749), + [sym_or_block_expression] = STATE(1749), + [sym_option_propagation_expression] = STATE(1749), + [sym_result_propagation_expression] = STATE(1749), + [sym_anon_struct_value_expression] = STATE(1746), + [sym_go_expression] = STATE(1749), + [sym_spawn_expression] = STATE(1749), + [sym_parenthesized_expression] = STATE(1749), + [sym_call_expression] = STATE(1749), + [sym_type_initializer] = STATE(1746), + [sym_function_literal] = STATE(1749), + [sym_reference_expression] = STATE(1745), + [sym_type_reference_expression] = STATE(3460), + [sym_unary_expression] = STATE(1749), + [sym_receive_expression] = STATE(1749), + [sym_binary_expression] = STATE(1749), + [sym_as_type_cast_expression] = STATE(1749), + [sym__max_group] = STATE(1749), + [sym_literal] = STATE(1738), + [sym_map_init_expression] = STATE(1746), + [sym_map_keyed_element] = STATE(2004), + [sym_array_creation] = STATE(1749), + [sym_fixed_array_creation] = STATE(1749), + [sym_selector_expression] = STATE(1749), + [sym_index_expression] = STATE(1749), + [sym_slice_expression] = STATE(1749), + [sym_if_expression] = STATE(1746), + [sym_compile_time_if_expression] = STATE(1746), + [sym_is_expression] = STATE(1749), + [sym_in_expression] = STATE(1749), + [sym_enum_fetch] = STATE(1749), + [sym_match_expression] = STATE(1746), + [sym_select_expression] = STATE(1746), + [sym_lock_expression] = STATE(1746), + [sym_unsafe_expression] = STATE(1746), + [sym_sql_expression] = STATE(1746), + [sym_c_string_literal] = STATE(1733), + [sym_raw_string_literal] = STATE(1733), + [sym_interpreted_string_literal] = STATE(1733), + [sym_mutability_modifiers] = STATE(843), + [sym_mutable_expression] = STATE(3278), + [sym_expression_list] = STATE(3323), + [sym_plain_type] = STATE(4121), + [sym__plain_type_without_special] = STATE(2360), + [sym_anon_struct_type] = STATE(2362), + [sym_multi_return_type] = STATE(2360), + [sym_result_type] = STATE(2360), + [sym_option_type] = STATE(2360), + [sym_qualified_type] = STATE(3460), + [sym_fixed_array_type] = STATE(2362), + [sym_array_type] = STATE(2362), + [sym_pointer_type] = STATE(2362), + [sym_wrong_pointer_type] = STATE(2362), + [sym_map_type] = STATE(2362), + [sym_channel_type] = STATE(2362), + [sym_shared_type] = STATE(2362), + [sym_thread_type] = STATE(2362), + [sym_atomic_type] = STATE(2362), + [sym_generic_type] = STATE(2362), + [sym_function_type] = STATE(2362), + [sym__statement_list] = STATE(4550), + [sym__statement] = STATE(3566), + [sym_simple_statement] = STATE(3648), + [sym_assert_statement] = STATE(3648), + [sym_append_statement] = STATE(3648), + [sym_send_statement] = STATE(3648), + [sym_var_declaration] = STATE(3649), + [sym_assignment_statement] = STATE(3649), + [sym_block] = STATE(3648), + [sym_defer_statement] = STATE(3648), + [sym_goto_statement] = STATE(3648), + [sym_break_statement] = STATE(3648), + [sym_continue_statement] = STATE(3648), + [sym_return_statement] = STATE(3648), [sym_label_definition] = STATE(62), - [sym_labeled_statement] = STATE(3582), - [sym_empty_labeled_statement] = STATE(4544), - [sym_compile_time_for_statement] = STATE(3582), - [sym_for_statement] = STATE(3582), - [sym_hash_statement] = STATE(3582), - [sym_asm_statement] = STATE(3582), - [aux_sym_map_init_expression_repeat1] = STATE(264), + [sym_labeled_statement] = STATE(3648), + [sym_empty_labeled_statement] = STATE(4547), + [sym_compile_time_for_statement] = STATE(3648), + [sym_for_statement] = STATE(3648), + [sym_hash_statement] = STATE(3648), + [sym_asm_statement] = STATE(3648), + [aux_sym_map_init_expression_repeat1] = STATE(242), [sym_identifier] = ACTIONS(307), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), @@ -24704,93 +24720,93 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [37] = { [sym_line_comment] = STATE(37), [sym_block_comment] = STATE(37), - [sym__expression] = STATE(1601), - [sym__expression_without_blocks] = STATE(1692), - [sym__expression_with_blocks] = STATE(1692), - [sym_strictly_expression_list] = STATE(3584), - [sym_inc_expression] = STATE(1684), - [sym_dec_expression] = STATE(1684), - [sym_or_block_expression] = STATE(1684), - [sym_option_propagation_expression] = STATE(1684), - [sym_result_propagation_expression] = STATE(1684), - [sym_anon_struct_value_expression] = STATE(1677), - [sym_go_expression] = STATE(1684), - [sym_spawn_expression] = STATE(1684), - [sym_parenthesized_expression] = STATE(1684), - [sym_call_expression] = STATE(1684), - [sym_type_initializer] = STATE(1677), - [sym_function_literal] = STATE(1684), - [sym_reference_expression] = STATE(1674), - [sym_type_reference_expression] = STATE(3541), - [sym_unary_expression] = STATE(1684), - [sym_receive_expression] = STATE(1684), - [sym_binary_expression] = STATE(1684), - [sym_as_type_cast_expression] = STATE(1684), - [sym__max_group] = STATE(1684), - [sym_literal] = STATE(1698), - [sym_map_init_expression] = STATE(1677), - [sym_map_keyed_element] = STATE(2001), - [sym_array_creation] = STATE(1684), - [sym_fixed_array_creation] = STATE(1684), - [sym_selector_expression] = STATE(1684), - [sym_index_expression] = STATE(1684), - [sym_slice_expression] = STATE(1684), - [sym_if_expression] = STATE(1677), - [sym_compile_time_if_expression] = STATE(1677), - [sym_is_expression] = STATE(1684), - [sym_in_expression] = STATE(1684), - [sym_enum_fetch] = STATE(1684), - [sym_match_expression] = STATE(1677), - [sym_select_expression] = STATE(1677), - [sym_lock_expression] = STATE(1677), - [sym_unsafe_expression] = STATE(1677), - [sym_sql_expression] = STATE(1677), - [sym_c_string_literal] = STATE(1705), - [sym_raw_string_literal] = STATE(1705), - [sym_interpreted_string_literal] = STATE(1705), - [sym_mutability_modifiers] = STATE(858), - [sym_mutable_expression] = STATE(3274), - [sym_expression_list] = STATE(3288), - [sym_plain_type] = STATE(4157), - [sym__plain_type_without_special] = STATE(2302), - [sym_anon_struct_type] = STATE(2303), - [sym_multi_return_type] = STATE(2302), - [sym_result_type] = STATE(2302), - [sym_option_type] = STATE(2302), - [sym_qualified_type] = STATE(3541), - [sym_fixed_array_type] = STATE(2303), - [sym_array_type] = STATE(2303), - [sym_pointer_type] = STATE(2303), - [sym_wrong_pointer_type] = STATE(2303), - [sym_map_type] = STATE(2303), - [sym_channel_type] = STATE(2303), - [sym_shared_type] = STATE(2303), - [sym_thread_type] = STATE(2303), - [sym_atomic_type] = STATE(2303), - [sym_generic_type] = STATE(2303), - [sym_function_type] = STATE(2303), - [sym__statement_list] = STATE(4380), - [sym__statement] = STATE(3549), - [sym_simple_statement] = STATE(3582), - [sym_assert_statement] = STATE(3582), - [sym_append_statement] = STATE(3582), - [sym_send_statement] = STATE(3582), - [sym_var_declaration] = STATE(3584), - [sym_assignment_statement] = STATE(3584), - [sym_block] = STATE(3582), - [sym_defer_statement] = STATE(3582), - [sym_goto_statement] = STATE(3582), - [sym_break_statement] = STATE(3582), - [sym_continue_statement] = STATE(3582), - [sym_return_statement] = STATE(3582), + [sym__expression] = STATE(1605), + [sym__expression_without_blocks] = STATE(1747), + [sym__expression_with_blocks] = STATE(1747), + [sym_strictly_expression_list] = STATE(3649), + [sym_inc_expression] = STATE(1749), + [sym_dec_expression] = STATE(1749), + [sym_or_block_expression] = STATE(1749), + [sym_option_propagation_expression] = STATE(1749), + [sym_result_propagation_expression] = STATE(1749), + [sym_anon_struct_value_expression] = STATE(1746), + [sym_go_expression] = STATE(1749), + [sym_spawn_expression] = STATE(1749), + [sym_parenthesized_expression] = STATE(1749), + [sym_call_expression] = STATE(1749), + [sym_type_initializer] = STATE(1746), + [sym_function_literal] = STATE(1749), + [sym_reference_expression] = STATE(1745), + [sym_type_reference_expression] = STATE(3460), + [sym_unary_expression] = STATE(1749), + [sym_receive_expression] = STATE(1749), + [sym_binary_expression] = STATE(1749), + [sym_as_type_cast_expression] = STATE(1749), + [sym__max_group] = STATE(1749), + [sym_literal] = STATE(1738), + [sym_map_init_expression] = STATE(1746), + [sym_map_keyed_element] = STATE(2004), + [sym_array_creation] = STATE(1749), + [sym_fixed_array_creation] = STATE(1749), + [sym_selector_expression] = STATE(1749), + [sym_index_expression] = STATE(1749), + [sym_slice_expression] = STATE(1749), + [sym_if_expression] = STATE(1746), + [sym_compile_time_if_expression] = STATE(1746), + [sym_is_expression] = STATE(1749), + [sym_in_expression] = STATE(1749), + [sym_enum_fetch] = STATE(1749), + [sym_match_expression] = STATE(1746), + [sym_select_expression] = STATE(1746), + [sym_lock_expression] = STATE(1746), + [sym_unsafe_expression] = STATE(1746), + [sym_sql_expression] = STATE(1746), + [sym_c_string_literal] = STATE(1733), + [sym_raw_string_literal] = STATE(1733), + [sym_interpreted_string_literal] = STATE(1733), + [sym_mutability_modifiers] = STATE(843), + [sym_mutable_expression] = STATE(3278), + [sym_expression_list] = STATE(3323), + [sym_plain_type] = STATE(4121), + [sym__plain_type_without_special] = STATE(2360), + [sym_anon_struct_type] = STATE(2362), + [sym_multi_return_type] = STATE(2360), + [sym_result_type] = STATE(2360), + [sym_option_type] = STATE(2360), + [sym_qualified_type] = STATE(3460), + [sym_fixed_array_type] = STATE(2362), + [sym_array_type] = STATE(2362), + [sym_pointer_type] = STATE(2362), + [sym_wrong_pointer_type] = STATE(2362), + [sym_map_type] = STATE(2362), + [sym_channel_type] = STATE(2362), + [sym_shared_type] = STATE(2362), + [sym_thread_type] = STATE(2362), + [sym_atomic_type] = STATE(2362), + [sym_generic_type] = STATE(2362), + [sym_function_type] = STATE(2362), + [sym__statement_list] = STATE(4384), + [sym__statement] = STATE(3566), + [sym_simple_statement] = STATE(3648), + [sym_assert_statement] = STATE(3648), + [sym_append_statement] = STATE(3648), + [sym_send_statement] = STATE(3648), + [sym_var_declaration] = STATE(3649), + [sym_assignment_statement] = STATE(3649), + [sym_block] = STATE(3648), + [sym_defer_statement] = STATE(3648), + [sym_goto_statement] = STATE(3648), + [sym_break_statement] = STATE(3648), + [sym_continue_statement] = STATE(3648), + [sym_return_statement] = STATE(3648), [sym_label_definition] = STATE(62), - [sym_labeled_statement] = STATE(3582), - [sym_empty_labeled_statement] = STATE(4544), - [sym_compile_time_for_statement] = STATE(3582), - [sym_for_statement] = STATE(3582), - [sym_hash_statement] = STATE(3582), - [sym_asm_statement] = STATE(3582), - [aux_sym_map_init_expression_repeat1] = STATE(274), + [sym_labeled_statement] = STATE(3648), + [sym_empty_labeled_statement] = STATE(4547), + [sym_compile_time_for_statement] = STATE(3648), + [sym_for_statement] = STATE(3648), + [sym_hash_statement] = STATE(3648), + [sym_asm_statement] = STATE(3648), + [aux_sym_map_init_expression_repeat1] = STATE(242), [sym_identifier] = ACTIONS(307), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), @@ -24855,99 +24871,99 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [38] = { [sym_line_comment] = STATE(38), [sym_block_comment] = STATE(38), - [sym__expression] = STATE(1601), - [sym__expression_without_blocks] = STATE(1692), - [sym__expression_with_blocks] = STATE(1692), - [sym_strictly_expression_list] = STATE(3584), - [sym_inc_expression] = STATE(1684), - [sym_dec_expression] = STATE(1684), - [sym_or_block_expression] = STATE(1684), - [sym_option_propagation_expression] = STATE(1684), - [sym_result_propagation_expression] = STATE(1684), - [sym_anon_struct_value_expression] = STATE(1677), - [sym_go_expression] = STATE(1684), - [sym_spawn_expression] = STATE(1684), - [sym_parenthesized_expression] = STATE(1684), - [sym_call_expression] = STATE(1684), - [sym_type_initializer] = STATE(1677), - [sym_function_literal] = STATE(1684), - [sym_reference_expression] = STATE(1674), - [sym_type_reference_expression] = STATE(3541), - [sym_unary_expression] = STATE(1684), - [sym_receive_expression] = STATE(1684), - [sym_binary_expression] = STATE(1684), - [sym_as_type_cast_expression] = STATE(1684), - [sym__max_group] = STATE(1684), - [sym_literal] = STATE(1698), - [sym_map_init_expression] = STATE(1677), - [sym_map_keyed_element] = STATE(2001), - [sym_array_creation] = STATE(1684), - [sym_fixed_array_creation] = STATE(1684), - [sym_selector_expression] = STATE(1684), - [sym_index_expression] = STATE(1684), - [sym_slice_expression] = STATE(1684), - [sym_if_expression] = STATE(1677), - [sym_compile_time_if_expression] = STATE(1677), - [sym_is_expression] = STATE(1684), - [sym_in_expression] = STATE(1684), - [sym_enum_fetch] = STATE(1684), - [sym_match_expression] = STATE(1677), - [sym_select_expression] = STATE(1677), - [sym_lock_expression] = STATE(1677), - [sym_unsafe_expression] = STATE(1677), - [sym_sql_expression] = STATE(1677), - [sym_c_string_literal] = STATE(1705), - [sym_raw_string_literal] = STATE(1705), - [sym_interpreted_string_literal] = STATE(1705), - [sym_mutability_modifiers] = STATE(858), - [sym_mutable_expression] = STATE(3274), - [sym_expression_list] = STATE(3288), - [sym_plain_type] = STATE(4157), - [sym__plain_type_without_special] = STATE(2302), - [sym_anon_struct_type] = STATE(2303), - [sym_multi_return_type] = STATE(2302), - [sym_result_type] = STATE(2302), - [sym_option_type] = STATE(2302), - [sym_qualified_type] = STATE(3541), - [sym_fixed_array_type] = STATE(2303), - [sym_array_type] = STATE(2303), - [sym_pointer_type] = STATE(2303), - [sym_wrong_pointer_type] = STATE(2303), - [sym_map_type] = STATE(2303), - [sym_channel_type] = STATE(2303), - [sym_shared_type] = STATE(2303), - [sym_thread_type] = STATE(2303), - [sym_atomic_type] = STATE(2303), - [sym_generic_type] = STATE(2303), - [sym_function_type] = STATE(2303), - [sym__statement_list] = STATE(4340), - [sym__statement] = STATE(3549), - [sym_simple_statement] = STATE(3582), - [sym_assert_statement] = STATE(3582), - [sym_append_statement] = STATE(3582), - [sym_send_statement] = STATE(3582), - [sym_var_declaration] = STATE(3584), - [sym_assignment_statement] = STATE(3584), - [sym_block] = STATE(3582), - [sym_defer_statement] = STATE(3582), - [sym_goto_statement] = STATE(3582), - [sym_break_statement] = STATE(3582), - [sym_continue_statement] = STATE(3582), - [sym_return_statement] = STATE(3582), + [sym__expression] = STATE(1605), + [sym__expression_without_blocks] = STATE(1747), + [sym__expression_with_blocks] = STATE(1747), + [sym_strictly_expression_list] = STATE(3649), + [sym_inc_expression] = STATE(1749), + [sym_dec_expression] = STATE(1749), + [sym_or_block_expression] = STATE(1749), + [sym_option_propagation_expression] = STATE(1749), + [sym_result_propagation_expression] = STATE(1749), + [sym_anon_struct_value_expression] = STATE(1746), + [sym_go_expression] = STATE(1749), + [sym_spawn_expression] = STATE(1749), + [sym_parenthesized_expression] = STATE(1749), + [sym_call_expression] = STATE(1749), + [sym_type_initializer] = STATE(1746), + [sym_function_literal] = STATE(1749), + [sym_reference_expression] = STATE(1745), + [sym_type_reference_expression] = STATE(3460), + [sym_unary_expression] = STATE(1749), + [sym_receive_expression] = STATE(1749), + [sym_binary_expression] = STATE(1749), + [sym_as_type_cast_expression] = STATE(1749), + [sym__max_group] = STATE(1749), + [sym_literal] = STATE(1738), + [sym_map_init_expression] = STATE(1746), + [sym_map_keyed_element] = STATE(2004), + [sym_array_creation] = STATE(1749), + [sym_fixed_array_creation] = STATE(1749), + [sym_selector_expression] = STATE(1749), + [sym_index_expression] = STATE(1749), + [sym_slice_expression] = STATE(1749), + [sym_if_expression] = STATE(1746), + [sym_compile_time_if_expression] = STATE(1746), + [sym_is_expression] = STATE(1749), + [sym_in_expression] = STATE(1749), + [sym_enum_fetch] = STATE(1749), + [sym_match_expression] = STATE(1746), + [sym_select_expression] = STATE(1746), + [sym_lock_expression] = STATE(1746), + [sym_unsafe_expression] = STATE(1746), + [sym_sql_expression] = STATE(1746), + [sym_c_string_literal] = STATE(1733), + [sym_raw_string_literal] = STATE(1733), + [sym_interpreted_string_literal] = STATE(1733), + [sym_mutability_modifiers] = STATE(843), + [sym_mutable_expression] = STATE(3278), + [sym_expression_list] = STATE(3323), + [sym_plain_type] = STATE(4121), + [sym__plain_type_without_special] = STATE(2360), + [sym_anon_struct_type] = STATE(2362), + [sym_multi_return_type] = STATE(2360), + [sym_result_type] = STATE(2360), + [sym_option_type] = STATE(2360), + [sym_qualified_type] = STATE(3460), + [sym_fixed_array_type] = STATE(2362), + [sym_array_type] = STATE(2362), + [sym_pointer_type] = STATE(2362), + [sym_wrong_pointer_type] = STATE(2362), + [sym_map_type] = STATE(2362), + [sym_channel_type] = STATE(2362), + [sym_shared_type] = STATE(2362), + [sym_thread_type] = STATE(2362), + [sym_atomic_type] = STATE(2362), + [sym_generic_type] = STATE(2362), + [sym_function_type] = STATE(2362), + [sym__statement_list] = STATE(4504), + [sym__statement] = STATE(3566), + [sym_simple_statement] = STATE(3648), + [sym_assert_statement] = STATE(3648), + [sym_append_statement] = STATE(3648), + [sym_send_statement] = STATE(3648), + [sym_var_declaration] = STATE(3649), + [sym_assignment_statement] = STATE(3649), + [sym_block] = STATE(3648), + [sym_defer_statement] = STATE(3648), + [sym_goto_statement] = STATE(3648), + [sym_break_statement] = STATE(3648), + [sym_continue_statement] = STATE(3648), + [sym_return_statement] = STATE(3648), [sym_label_definition] = STATE(62), - [sym_labeled_statement] = STATE(3582), - [sym_empty_labeled_statement] = STATE(4544), - [sym_compile_time_for_statement] = STATE(3582), - [sym_for_statement] = STATE(3582), - [sym_hash_statement] = STATE(3582), - [sym_asm_statement] = STATE(3582), - [aux_sym_map_init_expression_repeat1] = STATE(274), + [sym_labeled_statement] = STATE(3648), + [sym_empty_labeled_statement] = STATE(4547), + [sym_compile_time_for_statement] = STATE(3648), + [sym_for_statement] = STATE(3648), + [sym_hash_statement] = STATE(3648), + [sym_asm_statement] = STATE(3648), + [aux_sym_map_init_expression_repeat1] = STATE(242), [sym_identifier] = ACTIONS(307), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), [anon_sym_DOT] = ACTIONS(309), [anon_sym_LBRACE] = ACTIONS(311), - [anon_sym_RBRACE] = ACTIONS(435), + [anon_sym_RBRACE] = ACTIONS(399), [anon_sym_LPAREN] = ACTIONS(315), [anon_sym_fn] = ACTIONS(317), [anon_sym_PLUS] = ACTIONS(319), @@ -25006,99 +25022,99 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [39] = { [sym_line_comment] = STATE(39), [sym_block_comment] = STATE(39), - [sym__expression] = STATE(1601), - [sym__expression_without_blocks] = STATE(1692), - [sym__expression_with_blocks] = STATE(1692), - [sym_strictly_expression_list] = STATE(3584), - [sym_inc_expression] = STATE(1684), - [sym_dec_expression] = STATE(1684), - [sym_or_block_expression] = STATE(1684), - [sym_option_propagation_expression] = STATE(1684), - [sym_result_propagation_expression] = STATE(1684), - [sym_anon_struct_value_expression] = STATE(1677), - [sym_go_expression] = STATE(1684), - [sym_spawn_expression] = STATE(1684), - [sym_parenthesized_expression] = STATE(1684), - [sym_call_expression] = STATE(1684), - [sym_type_initializer] = STATE(1677), - [sym_function_literal] = STATE(1684), - [sym_reference_expression] = STATE(1674), - [sym_type_reference_expression] = STATE(3541), - [sym_unary_expression] = STATE(1684), - [sym_receive_expression] = STATE(1684), - [sym_binary_expression] = STATE(1684), - [sym_as_type_cast_expression] = STATE(1684), - [sym__max_group] = STATE(1684), - [sym_literal] = STATE(1698), - [sym_map_init_expression] = STATE(1677), - [sym_map_keyed_element] = STATE(2001), - [sym_array_creation] = STATE(1684), - [sym_fixed_array_creation] = STATE(1684), - [sym_selector_expression] = STATE(1684), - [sym_index_expression] = STATE(1684), - [sym_slice_expression] = STATE(1684), - [sym_if_expression] = STATE(1677), - [sym_compile_time_if_expression] = STATE(1677), - [sym_is_expression] = STATE(1684), - [sym_in_expression] = STATE(1684), - [sym_enum_fetch] = STATE(1684), - [sym_match_expression] = STATE(1677), - [sym_select_expression] = STATE(1677), - [sym_lock_expression] = STATE(1677), - [sym_unsafe_expression] = STATE(1677), - [sym_sql_expression] = STATE(1677), - [sym_c_string_literal] = STATE(1705), - [sym_raw_string_literal] = STATE(1705), - [sym_interpreted_string_literal] = STATE(1705), - [sym_mutability_modifiers] = STATE(858), - [sym_mutable_expression] = STATE(3274), - [sym_expression_list] = STATE(3288), - [sym_plain_type] = STATE(4157), - [sym__plain_type_without_special] = STATE(2302), - [sym_anon_struct_type] = STATE(2303), - [sym_multi_return_type] = STATE(2302), - [sym_result_type] = STATE(2302), - [sym_option_type] = STATE(2302), - [sym_qualified_type] = STATE(3541), - [sym_fixed_array_type] = STATE(2303), - [sym_array_type] = STATE(2303), - [sym_pointer_type] = STATE(2303), - [sym_wrong_pointer_type] = STATE(2303), - [sym_map_type] = STATE(2303), - [sym_channel_type] = STATE(2303), - [sym_shared_type] = STATE(2303), - [sym_thread_type] = STATE(2303), - [sym_atomic_type] = STATE(2303), - [sym_generic_type] = STATE(2303), - [sym_function_type] = STATE(2303), - [sym__statement_list] = STATE(4546), - [sym__statement] = STATE(3549), - [sym_simple_statement] = STATE(3582), - [sym_assert_statement] = STATE(3582), - [sym_append_statement] = STATE(3582), - [sym_send_statement] = STATE(3582), - [sym_var_declaration] = STATE(3584), - [sym_assignment_statement] = STATE(3584), - [sym_block] = STATE(3582), - [sym_defer_statement] = STATE(3582), - [sym_goto_statement] = STATE(3582), - [sym_break_statement] = STATE(3582), - [sym_continue_statement] = STATE(3582), - [sym_return_statement] = STATE(3582), + [sym__expression] = STATE(1605), + [sym__expression_without_blocks] = STATE(1747), + [sym__expression_with_blocks] = STATE(1747), + [sym_strictly_expression_list] = STATE(3649), + [sym_inc_expression] = STATE(1749), + [sym_dec_expression] = STATE(1749), + [sym_or_block_expression] = STATE(1749), + [sym_option_propagation_expression] = STATE(1749), + [sym_result_propagation_expression] = STATE(1749), + [sym_anon_struct_value_expression] = STATE(1746), + [sym_go_expression] = STATE(1749), + [sym_spawn_expression] = STATE(1749), + [sym_parenthesized_expression] = STATE(1749), + [sym_call_expression] = STATE(1749), + [sym_type_initializer] = STATE(1746), + [sym_function_literal] = STATE(1749), + [sym_reference_expression] = STATE(1745), + [sym_type_reference_expression] = STATE(3460), + [sym_unary_expression] = STATE(1749), + [sym_receive_expression] = STATE(1749), + [sym_binary_expression] = STATE(1749), + [sym_as_type_cast_expression] = STATE(1749), + [sym__max_group] = STATE(1749), + [sym_literal] = STATE(1738), + [sym_map_init_expression] = STATE(1746), + [sym_map_keyed_element] = STATE(2004), + [sym_array_creation] = STATE(1749), + [sym_fixed_array_creation] = STATE(1749), + [sym_selector_expression] = STATE(1749), + [sym_index_expression] = STATE(1749), + [sym_slice_expression] = STATE(1749), + [sym_if_expression] = STATE(1746), + [sym_compile_time_if_expression] = STATE(1746), + [sym_is_expression] = STATE(1749), + [sym_in_expression] = STATE(1749), + [sym_enum_fetch] = STATE(1749), + [sym_match_expression] = STATE(1746), + [sym_select_expression] = STATE(1746), + [sym_lock_expression] = STATE(1746), + [sym_unsafe_expression] = STATE(1746), + [sym_sql_expression] = STATE(1746), + [sym_c_string_literal] = STATE(1733), + [sym_raw_string_literal] = STATE(1733), + [sym_interpreted_string_literal] = STATE(1733), + [sym_mutability_modifiers] = STATE(843), + [sym_mutable_expression] = STATE(3278), + [sym_expression_list] = STATE(3323), + [sym_plain_type] = STATE(4121), + [sym__plain_type_without_special] = STATE(2360), + [sym_anon_struct_type] = STATE(2362), + [sym_multi_return_type] = STATE(2360), + [sym_result_type] = STATE(2360), + [sym_option_type] = STATE(2360), + [sym_qualified_type] = STATE(3460), + [sym_fixed_array_type] = STATE(2362), + [sym_array_type] = STATE(2362), + [sym_pointer_type] = STATE(2362), + [sym_wrong_pointer_type] = STATE(2362), + [sym_map_type] = STATE(2362), + [sym_channel_type] = STATE(2362), + [sym_shared_type] = STATE(2362), + [sym_thread_type] = STATE(2362), + [sym_atomic_type] = STATE(2362), + [sym_generic_type] = STATE(2362), + [sym_function_type] = STATE(2362), + [sym__statement_list] = STATE(4597), + [sym__statement] = STATE(3566), + [sym_simple_statement] = STATE(3648), + [sym_assert_statement] = STATE(3648), + [sym_append_statement] = STATE(3648), + [sym_send_statement] = STATE(3648), + [sym_var_declaration] = STATE(3649), + [sym_assignment_statement] = STATE(3649), + [sym_block] = STATE(3648), + [sym_defer_statement] = STATE(3648), + [sym_goto_statement] = STATE(3648), + [sym_break_statement] = STATE(3648), + [sym_continue_statement] = STATE(3648), + [sym_return_statement] = STATE(3648), [sym_label_definition] = STATE(62), - [sym_labeled_statement] = STATE(3582), - [sym_empty_labeled_statement] = STATE(4544), - [sym_compile_time_for_statement] = STATE(3582), - [sym_for_statement] = STATE(3582), - [sym_hash_statement] = STATE(3582), - [sym_asm_statement] = STATE(3582), - [aux_sym_map_init_expression_repeat1] = STATE(246), + [sym_labeled_statement] = STATE(3648), + [sym_empty_labeled_statement] = STATE(4547), + [sym_compile_time_for_statement] = STATE(3648), + [sym_for_statement] = STATE(3648), + [sym_hash_statement] = STATE(3648), + [sym_asm_statement] = STATE(3648), + [aux_sym_map_init_expression_repeat1] = STATE(242), [sym_identifier] = ACTIONS(307), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), [anon_sym_DOT] = ACTIONS(309), [anon_sym_LBRACE] = ACTIONS(311), - [anon_sym_RBRACE] = ACTIONS(431), + [anon_sym_RBRACE] = ACTIONS(435), [anon_sym_LPAREN] = ACTIONS(315), [anon_sym_fn] = ACTIONS(317), [anon_sym_PLUS] = ACTIONS(319), @@ -25157,91 +25173,91 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [40] = { [sym_line_comment] = STATE(40), [sym_block_comment] = STATE(40), - [sym__expression] = STATE(1609), - [sym__expression_without_blocks] = STATE(1692), - [sym__expression_with_blocks] = STATE(1692), - [sym_strictly_expression_list] = STATE(3584), - [sym_inc_expression] = STATE(1684), - [sym_dec_expression] = STATE(1684), - [sym_or_block_expression] = STATE(1684), - [sym_option_propagation_expression] = STATE(1684), - [sym_result_propagation_expression] = STATE(1684), - [sym_anon_struct_value_expression] = STATE(1677), - [sym_go_expression] = STATE(1684), - [sym_spawn_expression] = STATE(1684), - [sym_parenthesized_expression] = STATE(1684), - [sym_call_expression] = STATE(1684), - [sym_type_initializer] = STATE(1677), - [sym_function_literal] = STATE(1684), - [sym_reference_expression] = STATE(1674), - [sym_type_reference_expression] = STATE(3541), - [sym_unary_expression] = STATE(1684), - [sym_receive_expression] = STATE(1684), - [sym_binary_expression] = STATE(1684), - [sym_as_type_cast_expression] = STATE(1684), - [sym__max_group] = STATE(1684), - [sym_literal] = STATE(1698), - [sym_map_init_expression] = STATE(1677), - [sym_array_creation] = STATE(1684), - [sym_fixed_array_creation] = STATE(1684), - [sym_selector_expression] = STATE(1684), - [sym_index_expression] = STATE(1684), - [sym_slice_expression] = STATE(1684), - [sym_if_expression] = STATE(1677), - [sym_compile_time_if_expression] = STATE(1677), - [sym_is_expression] = STATE(1684), - [sym_in_expression] = STATE(1684), - [sym_enum_fetch] = STATE(1684), - [sym_match_expression] = STATE(1677), - [sym_select_expression] = STATE(1677), - [sym_lock_expression] = STATE(1677), - [sym_unsafe_expression] = STATE(1677), - [sym_sql_expression] = STATE(1677), - [sym_c_string_literal] = STATE(1705), - [sym_raw_string_literal] = STATE(1705), - [sym_interpreted_string_literal] = STATE(1705), - [sym_mutability_modifiers] = STATE(858), - [sym_mutable_expression] = STATE(3274), - [sym_expression_list] = STATE(3288), - [sym_plain_type] = STATE(4157), - [sym__plain_type_without_special] = STATE(2302), - [sym_anon_struct_type] = STATE(2303), - [sym_multi_return_type] = STATE(2302), - [sym_result_type] = STATE(2302), - [sym_option_type] = STATE(2302), - [sym_qualified_type] = STATE(3541), - [sym_fixed_array_type] = STATE(2303), - [sym_array_type] = STATE(2303), - [sym_pointer_type] = STATE(2303), - [sym_wrong_pointer_type] = STATE(2303), - [sym_map_type] = STATE(2303), - [sym_channel_type] = STATE(2303), - [sym_shared_type] = STATE(2303), - [sym_thread_type] = STATE(2303), - [sym_atomic_type] = STATE(2303), - [sym_generic_type] = STATE(2303), - [sym_function_type] = STATE(2303), - [sym__statement_list] = STATE(4636), - [sym__statement] = STATE(3549), - [sym_simple_statement] = STATE(3582), - [sym_assert_statement] = STATE(3582), - [sym_append_statement] = STATE(3582), - [sym_send_statement] = STATE(3582), - [sym_var_declaration] = STATE(3584), - [sym_assignment_statement] = STATE(3584), - [sym_block] = STATE(3582), - [sym_defer_statement] = STATE(3582), - [sym_goto_statement] = STATE(3582), - [sym_break_statement] = STATE(3582), - [sym_continue_statement] = STATE(3582), - [sym_return_statement] = STATE(3582), + [sym__expression] = STATE(1612), + [sym__expression_without_blocks] = STATE(1747), + [sym__expression_with_blocks] = STATE(1747), + [sym_strictly_expression_list] = STATE(3649), + [sym_inc_expression] = STATE(1749), + [sym_dec_expression] = STATE(1749), + [sym_or_block_expression] = STATE(1749), + [sym_option_propagation_expression] = STATE(1749), + [sym_result_propagation_expression] = STATE(1749), + [sym_anon_struct_value_expression] = STATE(1746), + [sym_go_expression] = STATE(1749), + [sym_spawn_expression] = STATE(1749), + [sym_parenthesized_expression] = STATE(1749), + [sym_call_expression] = STATE(1749), + [sym_type_initializer] = STATE(1746), + [sym_function_literal] = STATE(1749), + [sym_reference_expression] = STATE(1745), + [sym_type_reference_expression] = STATE(3460), + [sym_unary_expression] = STATE(1749), + [sym_receive_expression] = STATE(1749), + [sym_binary_expression] = STATE(1749), + [sym_as_type_cast_expression] = STATE(1749), + [sym__max_group] = STATE(1749), + [sym_literal] = STATE(1738), + [sym_map_init_expression] = STATE(1746), + [sym_array_creation] = STATE(1749), + [sym_fixed_array_creation] = STATE(1749), + [sym_selector_expression] = STATE(1749), + [sym_index_expression] = STATE(1749), + [sym_slice_expression] = STATE(1749), + [sym_if_expression] = STATE(1746), + [sym_compile_time_if_expression] = STATE(1746), + [sym_is_expression] = STATE(1749), + [sym_in_expression] = STATE(1749), + [sym_enum_fetch] = STATE(1749), + [sym_match_expression] = STATE(1746), + [sym_select_expression] = STATE(1746), + [sym_lock_expression] = STATE(1746), + [sym_unsafe_expression] = STATE(1746), + [sym_sql_expression] = STATE(1746), + [sym_c_string_literal] = STATE(1733), + [sym_raw_string_literal] = STATE(1733), + [sym_interpreted_string_literal] = STATE(1733), + [sym_mutability_modifiers] = STATE(843), + [sym_mutable_expression] = STATE(3278), + [sym_expression_list] = STATE(3323), + [sym_plain_type] = STATE(4121), + [sym__plain_type_without_special] = STATE(2360), + [sym_anon_struct_type] = STATE(2362), + [sym_multi_return_type] = STATE(2360), + [sym_result_type] = STATE(2360), + [sym_option_type] = STATE(2360), + [sym_qualified_type] = STATE(3460), + [sym_fixed_array_type] = STATE(2362), + [sym_array_type] = STATE(2362), + [sym_pointer_type] = STATE(2362), + [sym_wrong_pointer_type] = STATE(2362), + [sym_map_type] = STATE(2362), + [sym_channel_type] = STATE(2362), + [sym_shared_type] = STATE(2362), + [sym_thread_type] = STATE(2362), + [sym_atomic_type] = STATE(2362), + [sym_generic_type] = STATE(2362), + [sym_function_type] = STATE(2362), + [sym__statement_list] = STATE(4550), + [sym__statement] = STATE(3566), + [sym_simple_statement] = STATE(3648), + [sym_assert_statement] = STATE(3648), + [sym_append_statement] = STATE(3648), + [sym_send_statement] = STATE(3648), + [sym_var_declaration] = STATE(3649), + [sym_assignment_statement] = STATE(3649), + [sym_block] = STATE(3648), + [sym_defer_statement] = STATE(3648), + [sym_goto_statement] = STATE(3648), + [sym_break_statement] = STATE(3648), + [sym_continue_statement] = STATE(3648), + [sym_return_statement] = STATE(3648), [sym_label_definition] = STATE(62), - [sym_labeled_statement] = STATE(3582), - [sym_empty_labeled_statement] = STATE(4544), - [sym_compile_time_for_statement] = STATE(3582), - [sym_for_statement] = STATE(3582), - [sym_hash_statement] = STATE(3582), - [sym_asm_statement] = STATE(3582), + [sym_labeled_statement] = STATE(3648), + [sym_empty_labeled_statement] = STATE(4547), + [sym_compile_time_for_statement] = STATE(3648), + [sym_for_statement] = STATE(3648), + [sym_hash_statement] = STATE(3648), + [sym_asm_statement] = STATE(3648), [sym_identifier] = ACTIONS(437), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), @@ -25306,91 +25322,91 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [41] = { [sym_line_comment] = STATE(41), [sym_block_comment] = STATE(41), - [sym__expression] = STATE(1609), - [sym__expression_without_blocks] = STATE(1692), - [sym__expression_with_blocks] = STATE(1692), - [sym_strictly_expression_list] = STATE(3584), - [sym_inc_expression] = STATE(1684), - [sym_dec_expression] = STATE(1684), - [sym_or_block_expression] = STATE(1684), - [sym_option_propagation_expression] = STATE(1684), - [sym_result_propagation_expression] = STATE(1684), - [sym_anon_struct_value_expression] = STATE(1677), - [sym_go_expression] = STATE(1684), - [sym_spawn_expression] = STATE(1684), - [sym_parenthesized_expression] = STATE(1684), - [sym_call_expression] = STATE(1684), - [sym_type_initializer] = STATE(1677), - [sym_function_literal] = STATE(1684), - [sym_reference_expression] = STATE(1674), - [sym_type_reference_expression] = STATE(3541), - [sym_unary_expression] = STATE(1684), - [sym_receive_expression] = STATE(1684), - [sym_binary_expression] = STATE(1684), - [sym_as_type_cast_expression] = STATE(1684), - [sym__max_group] = STATE(1684), - [sym_literal] = STATE(1698), - [sym_map_init_expression] = STATE(1677), - [sym_array_creation] = STATE(1684), - [sym_fixed_array_creation] = STATE(1684), - [sym_selector_expression] = STATE(1684), - [sym_index_expression] = STATE(1684), - [sym_slice_expression] = STATE(1684), - [sym_if_expression] = STATE(1677), - [sym_compile_time_if_expression] = STATE(1677), - [sym_is_expression] = STATE(1684), - [sym_in_expression] = STATE(1684), - [sym_enum_fetch] = STATE(1684), - [sym_match_expression] = STATE(1677), - [sym_select_expression] = STATE(1677), - [sym_lock_expression] = STATE(1677), - [sym_unsafe_expression] = STATE(1677), - [sym_sql_expression] = STATE(1677), - [sym_c_string_literal] = STATE(1705), - [sym_raw_string_literal] = STATE(1705), - [sym_interpreted_string_literal] = STATE(1705), - [sym_mutability_modifiers] = STATE(858), - [sym_mutable_expression] = STATE(3274), - [sym_expression_list] = STATE(3288), - [sym_plain_type] = STATE(4157), - [sym__plain_type_without_special] = STATE(2302), - [sym_anon_struct_type] = STATE(2303), - [sym_multi_return_type] = STATE(2302), - [sym_result_type] = STATE(2302), - [sym_option_type] = STATE(2302), - [sym_qualified_type] = STATE(3541), - [sym_fixed_array_type] = STATE(2303), - [sym_array_type] = STATE(2303), - [sym_pointer_type] = STATE(2303), - [sym_wrong_pointer_type] = STATE(2303), - [sym_map_type] = STATE(2303), - [sym_channel_type] = STATE(2303), - [sym_shared_type] = STATE(2303), - [sym_thread_type] = STATE(2303), - [sym_atomic_type] = STATE(2303), - [sym_generic_type] = STATE(2303), - [sym_function_type] = STATE(2303), - [sym__statement_list] = STATE(4380), - [sym__statement] = STATE(3549), - [sym_simple_statement] = STATE(3582), - [sym_assert_statement] = STATE(3582), - [sym_append_statement] = STATE(3582), - [sym_send_statement] = STATE(3582), - [sym_var_declaration] = STATE(3584), - [sym_assignment_statement] = STATE(3584), - [sym_block] = STATE(3582), - [sym_defer_statement] = STATE(3582), - [sym_goto_statement] = STATE(3582), - [sym_break_statement] = STATE(3582), - [sym_continue_statement] = STATE(3582), - [sym_return_statement] = STATE(3582), + [sym__expression] = STATE(1612), + [sym__expression_without_blocks] = STATE(1747), + [sym__expression_with_blocks] = STATE(1747), + [sym_strictly_expression_list] = STATE(3649), + [sym_inc_expression] = STATE(1749), + [sym_dec_expression] = STATE(1749), + [sym_or_block_expression] = STATE(1749), + [sym_option_propagation_expression] = STATE(1749), + [sym_result_propagation_expression] = STATE(1749), + [sym_anon_struct_value_expression] = STATE(1746), + [sym_go_expression] = STATE(1749), + [sym_spawn_expression] = STATE(1749), + [sym_parenthesized_expression] = STATE(1749), + [sym_call_expression] = STATE(1749), + [sym_type_initializer] = STATE(1746), + [sym_function_literal] = STATE(1749), + [sym_reference_expression] = STATE(1745), + [sym_type_reference_expression] = STATE(3460), + [sym_unary_expression] = STATE(1749), + [sym_receive_expression] = STATE(1749), + [sym_binary_expression] = STATE(1749), + [sym_as_type_cast_expression] = STATE(1749), + [sym__max_group] = STATE(1749), + [sym_literal] = STATE(1738), + [sym_map_init_expression] = STATE(1746), + [sym_array_creation] = STATE(1749), + [sym_fixed_array_creation] = STATE(1749), + [sym_selector_expression] = STATE(1749), + [sym_index_expression] = STATE(1749), + [sym_slice_expression] = STATE(1749), + [sym_if_expression] = STATE(1746), + [sym_compile_time_if_expression] = STATE(1746), + [sym_is_expression] = STATE(1749), + [sym_in_expression] = STATE(1749), + [sym_enum_fetch] = STATE(1749), + [sym_match_expression] = STATE(1746), + [sym_select_expression] = STATE(1746), + [sym_lock_expression] = STATE(1746), + [sym_unsafe_expression] = STATE(1746), + [sym_sql_expression] = STATE(1746), + [sym_c_string_literal] = STATE(1733), + [sym_raw_string_literal] = STATE(1733), + [sym_interpreted_string_literal] = STATE(1733), + [sym_mutability_modifiers] = STATE(843), + [sym_mutable_expression] = STATE(3278), + [sym_expression_list] = STATE(3323), + [sym_plain_type] = STATE(4121), + [sym__plain_type_without_special] = STATE(2360), + [sym_anon_struct_type] = STATE(2362), + [sym_multi_return_type] = STATE(2360), + [sym_result_type] = STATE(2360), + [sym_option_type] = STATE(2360), + [sym_qualified_type] = STATE(3460), + [sym_fixed_array_type] = STATE(2362), + [sym_array_type] = STATE(2362), + [sym_pointer_type] = STATE(2362), + [sym_wrong_pointer_type] = STATE(2362), + [sym_map_type] = STATE(2362), + [sym_channel_type] = STATE(2362), + [sym_shared_type] = STATE(2362), + [sym_thread_type] = STATE(2362), + [sym_atomic_type] = STATE(2362), + [sym_generic_type] = STATE(2362), + [sym_function_type] = STATE(2362), + [sym__statement_list] = STATE(4512), + [sym__statement] = STATE(3566), + [sym_simple_statement] = STATE(3648), + [sym_assert_statement] = STATE(3648), + [sym_append_statement] = STATE(3648), + [sym_send_statement] = STATE(3648), + [sym_var_declaration] = STATE(3649), + [sym_assignment_statement] = STATE(3649), + [sym_block] = STATE(3648), + [sym_defer_statement] = STATE(3648), + [sym_goto_statement] = STATE(3648), + [sym_break_statement] = STATE(3648), + [sym_continue_statement] = STATE(3648), + [sym_return_statement] = STATE(3648), [sym_label_definition] = STATE(62), - [sym_labeled_statement] = STATE(3582), - [sym_empty_labeled_statement] = STATE(4544), - [sym_compile_time_for_statement] = STATE(3582), - [sym_for_statement] = STATE(3582), - [sym_hash_statement] = STATE(3582), - [sym_asm_statement] = STATE(3582), + [sym_labeled_statement] = STATE(3648), + [sym_empty_labeled_statement] = STATE(4547), + [sym_compile_time_for_statement] = STATE(3648), + [sym_for_statement] = STATE(3648), + [sym_hash_statement] = STATE(3648), + [sym_asm_statement] = STATE(3648), [sym_identifier] = ACTIONS(437), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), @@ -25455,91 +25471,91 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [42] = { [sym_line_comment] = STATE(42), [sym_block_comment] = STATE(42), - [sym__expression] = STATE(1609), - [sym__expression_without_blocks] = STATE(1692), - [sym__expression_with_blocks] = STATE(1692), - [sym_strictly_expression_list] = STATE(3584), - [sym_inc_expression] = STATE(1684), - [sym_dec_expression] = STATE(1684), - [sym_or_block_expression] = STATE(1684), - [sym_option_propagation_expression] = STATE(1684), - [sym_result_propagation_expression] = STATE(1684), - [sym_anon_struct_value_expression] = STATE(1677), - [sym_go_expression] = STATE(1684), - [sym_spawn_expression] = STATE(1684), - [sym_parenthesized_expression] = STATE(1684), - [sym_call_expression] = STATE(1684), - [sym_type_initializer] = STATE(1677), - [sym_function_literal] = STATE(1684), - [sym_reference_expression] = STATE(1674), - [sym_type_reference_expression] = STATE(3541), - [sym_unary_expression] = STATE(1684), - [sym_receive_expression] = STATE(1684), - [sym_binary_expression] = STATE(1684), - [sym_as_type_cast_expression] = STATE(1684), - [sym__max_group] = STATE(1684), - [sym_literal] = STATE(1698), - [sym_map_init_expression] = STATE(1677), - [sym_array_creation] = STATE(1684), - [sym_fixed_array_creation] = STATE(1684), - [sym_selector_expression] = STATE(1684), - [sym_index_expression] = STATE(1684), - [sym_slice_expression] = STATE(1684), - [sym_if_expression] = STATE(1677), - [sym_compile_time_if_expression] = STATE(1677), - [sym_is_expression] = STATE(1684), - [sym_in_expression] = STATE(1684), - [sym_enum_fetch] = STATE(1684), - [sym_match_expression] = STATE(1677), - [sym_select_expression] = STATE(1677), - [sym_lock_expression] = STATE(1677), - [sym_unsafe_expression] = STATE(1677), - [sym_sql_expression] = STATE(1677), - [sym_c_string_literal] = STATE(1705), - [sym_raw_string_literal] = STATE(1705), - [sym_interpreted_string_literal] = STATE(1705), - [sym_mutability_modifiers] = STATE(858), - [sym_mutable_expression] = STATE(3274), - [sym_expression_list] = STATE(3288), - [sym_plain_type] = STATE(4157), - [sym__plain_type_without_special] = STATE(2302), - [sym_anon_struct_type] = STATE(2303), - [sym_multi_return_type] = STATE(2302), - [sym_result_type] = STATE(2302), - [sym_option_type] = STATE(2302), - [sym_qualified_type] = STATE(3541), - [sym_fixed_array_type] = STATE(2303), - [sym_array_type] = STATE(2303), - [sym_pointer_type] = STATE(2303), - [sym_wrong_pointer_type] = STATE(2303), - [sym_map_type] = STATE(2303), - [sym_channel_type] = STATE(2303), - [sym_shared_type] = STATE(2303), - [sym_thread_type] = STATE(2303), - [sym_atomic_type] = STATE(2303), - [sym_generic_type] = STATE(2303), - [sym_function_type] = STATE(2303), - [sym__statement_list] = STATE(4493), - [sym__statement] = STATE(3549), - [sym_simple_statement] = STATE(3582), - [sym_assert_statement] = STATE(3582), - [sym_append_statement] = STATE(3582), - [sym_send_statement] = STATE(3582), - [sym_var_declaration] = STATE(3584), - [sym_assignment_statement] = STATE(3584), - [sym_block] = STATE(3582), - [sym_defer_statement] = STATE(3582), - [sym_goto_statement] = STATE(3582), - [sym_break_statement] = STATE(3582), - [sym_continue_statement] = STATE(3582), - [sym_return_statement] = STATE(3582), + [sym__expression] = STATE(1612), + [sym__expression_without_blocks] = STATE(1747), + [sym__expression_with_blocks] = STATE(1747), + [sym_strictly_expression_list] = STATE(3649), + [sym_inc_expression] = STATE(1749), + [sym_dec_expression] = STATE(1749), + [sym_or_block_expression] = STATE(1749), + [sym_option_propagation_expression] = STATE(1749), + [sym_result_propagation_expression] = STATE(1749), + [sym_anon_struct_value_expression] = STATE(1746), + [sym_go_expression] = STATE(1749), + [sym_spawn_expression] = STATE(1749), + [sym_parenthesized_expression] = STATE(1749), + [sym_call_expression] = STATE(1749), + [sym_type_initializer] = STATE(1746), + [sym_function_literal] = STATE(1749), + [sym_reference_expression] = STATE(1745), + [sym_type_reference_expression] = STATE(3460), + [sym_unary_expression] = STATE(1749), + [sym_receive_expression] = STATE(1749), + [sym_binary_expression] = STATE(1749), + [sym_as_type_cast_expression] = STATE(1749), + [sym__max_group] = STATE(1749), + [sym_literal] = STATE(1738), + [sym_map_init_expression] = STATE(1746), + [sym_array_creation] = STATE(1749), + [sym_fixed_array_creation] = STATE(1749), + [sym_selector_expression] = STATE(1749), + [sym_index_expression] = STATE(1749), + [sym_slice_expression] = STATE(1749), + [sym_if_expression] = STATE(1746), + [sym_compile_time_if_expression] = STATE(1746), + [sym_is_expression] = STATE(1749), + [sym_in_expression] = STATE(1749), + [sym_enum_fetch] = STATE(1749), + [sym_match_expression] = STATE(1746), + [sym_select_expression] = STATE(1746), + [sym_lock_expression] = STATE(1746), + [sym_unsafe_expression] = STATE(1746), + [sym_sql_expression] = STATE(1746), + [sym_c_string_literal] = STATE(1733), + [sym_raw_string_literal] = STATE(1733), + [sym_interpreted_string_literal] = STATE(1733), + [sym_mutability_modifiers] = STATE(843), + [sym_mutable_expression] = STATE(3278), + [sym_expression_list] = STATE(3323), + [sym_plain_type] = STATE(4121), + [sym__plain_type_without_special] = STATE(2360), + [sym_anon_struct_type] = STATE(2362), + [sym_multi_return_type] = STATE(2360), + [sym_result_type] = STATE(2360), + [sym_option_type] = STATE(2360), + [sym_qualified_type] = STATE(3460), + [sym_fixed_array_type] = STATE(2362), + [sym_array_type] = STATE(2362), + [sym_pointer_type] = STATE(2362), + [sym_wrong_pointer_type] = STATE(2362), + [sym_map_type] = STATE(2362), + [sym_channel_type] = STATE(2362), + [sym_shared_type] = STATE(2362), + [sym_thread_type] = STATE(2362), + [sym_atomic_type] = STATE(2362), + [sym_generic_type] = STATE(2362), + [sym_function_type] = STATE(2362), + [sym__statement_list] = STATE(4502), + [sym__statement] = STATE(3566), + [sym_simple_statement] = STATE(3648), + [sym_assert_statement] = STATE(3648), + [sym_append_statement] = STATE(3648), + [sym_send_statement] = STATE(3648), + [sym_var_declaration] = STATE(3649), + [sym_assignment_statement] = STATE(3649), + [sym_block] = STATE(3648), + [sym_defer_statement] = STATE(3648), + [sym_goto_statement] = STATE(3648), + [sym_break_statement] = STATE(3648), + [sym_continue_statement] = STATE(3648), + [sym_return_statement] = STATE(3648), [sym_label_definition] = STATE(62), - [sym_labeled_statement] = STATE(3582), - [sym_empty_labeled_statement] = STATE(4544), - [sym_compile_time_for_statement] = STATE(3582), - [sym_for_statement] = STATE(3582), - [sym_hash_statement] = STATE(3582), - [sym_asm_statement] = STATE(3582), + [sym_labeled_statement] = STATE(3648), + [sym_empty_labeled_statement] = STATE(4547), + [sym_compile_time_for_statement] = STATE(3648), + [sym_for_statement] = STATE(3648), + [sym_hash_statement] = STATE(3648), + [sym_asm_statement] = STATE(3648), [sym_identifier] = ACTIONS(437), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), @@ -25604,91 +25620,91 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [43] = { [sym_line_comment] = STATE(43), [sym_block_comment] = STATE(43), - [sym__expression] = STATE(1609), - [sym__expression_without_blocks] = STATE(1692), - [sym__expression_with_blocks] = STATE(1692), - [sym_strictly_expression_list] = STATE(3584), - [sym_inc_expression] = STATE(1684), - [sym_dec_expression] = STATE(1684), - [sym_or_block_expression] = STATE(1684), - [sym_option_propagation_expression] = STATE(1684), - [sym_result_propagation_expression] = STATE(1684), - [sym_anon_struct_value_expression] = STATE(1677), - [sym_go_expression] = STATE(1684), - [sym_spawn_expression] = STATE(1684), - [sym_parenthesized_expression] = STATE(1684), - [sym_call_expression] = STATE(1684), - [sym_type_initializer] = STATE(1677), - [sym_function_literal] = STATE(1684), - [sym_reference_expression] = STATE(1674), - [sym_type_reference_expression] = STATE(3541), - [sym_unary_expression] = STATE(1684), - [sym_receive_expression] = STATE(1684), - [sym_binary_expression] = STATE(1684), - [sym_as_type_cast_expression] = STATE(1684), - [sym__max_group] = STATE(1684), - [sym_literal] = STATE(1698), - [sym_map_init_expression] = STATE(1677), - [sym_array_creation] = STATE(1684), - [sym_fixed_array_creation] = STATE(1684), - [sym_selector_expression] = STATE(1684), - [sym_index_expression] = STATE(1684), - [sym_slice_expression] = STATE(1684), - [sym_if_expression] = STATE(1677), - [sym_compile_time_if_expression] = STATE(1677), - [sym_is_expression] = STATE(1684), - [sym_in_expression] = STATE(1684), - [sym_enum_fetch] = STATE(1684), - [sym_match_expression] = STATE(1677), - [sym_select_expression] = STATE(1677), - [sym_lock_expression] = STATE(1677), - [sym_unsafe_expression] = STATE(1677), - [sym_sql_expression] = STATE(1677), - [sym_c_string_literal] = STATE(1705), - [sym_raw_string_literal] = STATE(1705), - [sym_interpreted_string_literal] = STATE(1705), - [sym_mutability_modifiers] = STATE(858), - [sym_mutable_expression] = STATE(3274), - [sym_expression_list] = STATE(3288), - [sym_plain_type] = STATE(4157), - [sym__plain_type_without_special] = STATE(2302), - [sym_anon_struct_type] = STATE(2303), - [sym_multi_return_type] = STATE(2302), - [sym_result_type] = STATE(2302), - [sym_option_type] = STATE(2302), - [sym_qualified_type] = STATE(3541), - [sym_fixed_array_type] = STATE(2303), - [sym_array_type] = STATE(2303), - [sym_pointer_type] = STATE(2303), - [sym_wrong_pointer_type] = STATE(2303), - [sym_map_type] = STATE(2303), - [sym_channel_type] = STATE(2303), - [sym_shared_type] = STATE(2303), - [sym_thread_type] = STATE(2303), - [sym_atomic_type] = STATE(2303), - [sym_generic_type] = STATE(2303), - [sym_function_type] = STATE(2303), - [sym__statement_list] = STATE(4508), - [sym__statement] = STATE(3549), - [sym_simple_statement] = STATE(3582), - [sym_assert_statement] = STATE(3582), - [sym_append_statement] = STATE(3582), - [sym_send_statement] = STATE(3582), - [sym_var_declaration] = STATE(3584), - [sym_assignment_statement] = STATE(3584), - [sym_block] = STATE(3582), - [sym_defer_statement] = STATE(3582), - [sym_goto_statement] = STATE(3582), - [sym_break_statement] = STATE(3582), - [sym_continue_statement] = STATE(3582), - [sym_return_statement] = STATE(3582), + [sym__expression] = STATE(1612), + [sym__expression_without_blocks] = STATE(1747), + [sym__expression_with_blocks] = STATE(1747), + [sym_strictly_expression_list] = STATE(3649), + [sym_inc_expression] = STATE(1749), + [sym_dec_expression] = STATE(1749), + [sym_or_block_expression] = STATE(1749), + [sym_option_propagation_expression] = STATE(1749), + [sym_result_propagation_expression] = STATE(1749), + [sym_anon_struct_value_expression] = STATE(1746), + [sym_go_expression] = STATE(1749), + [sym_spawn_expression] = STATE(1749), + [sym_parenthesized_expression] = STATE(1749), + [sym_call_expression] = STATE(1749), + [sym_type_initializer] = STATE(1746), + [sym_function_literal] = STATE(1749), + [sym_reference_expression] = STATE(1745), + [sym_type_reference_expression] = STATE(3460), + [sym_unary_expression] = STATE(1749), + [sym_receive_expression] = STATE(1749), + [sym_binary_expression] = STATE(1749), + [sym_as_type_cast_expression] = STATE(1749), + [sym__max_group] = STATE(1749), + [sym_literal] = STATE(1738), + [sym_map_init_expression] = STATE(1746), + [sym_array_creation] = STATE(1749), + [sym_fixed_array_creation] = STATE(1749), + [sym_selector_expression] = STATE(1749), + [sym_index_expression] = STATE(1749), + [sym_slice_expression] = STATE(1749), + [sym_if_expression] = STATE(1746), + [sym_compile_time_if_expression] = STATE(1746), + [sym_is_expression] = STATE(1749), + [sym_in_expression] = STATE(1749), + [sym_enum_fetch] = STATE(1749), + [sym_match_expression] = STATE(1746), + [sym_select_expression] = STATE(1746), + [sym_lock_expression] = STATE(1746), + [sym_unsafe_expression] = STATE(1746), + [sym_sql_expression] = STATE(1746), + [sym_c_string_literal] = STATE(1733), + [sym_raw_string_literal] = STATE(1733), + [sym_interpreted_string_literal] = STATE(1733), + [sym_mutability_modifiers] = STATE(843), + [sym_mutable_expression] = STATE(3278), + [sym_expression_list] = STATE(3323), + [sym_plain_type] = STATE(4121), + [sym__plain_type_without_special] = STATE(2360), + [sym_anon_struct_type] = STATE(2362), + [sym_multi_return_type] = STATE(2360), + [sym_result_type] = STATE(2360), + [sym_option_type] = STATE(2360), + [sym_qualified_type] = STATE(3460), + [sym_fixed_array_type] = STATE(2362), + [sym_array_type] = STATE(2362), + [sym_pointer_type] = STATE(2362), + [sym_wrong_pointer_type] = STATE(2362), + [sym_map_type] = STATE(2362), + [sym_channel_type] = STATE(2362), + [sym_shared_type] = STATE(2362), + [sym_thread_type] = STATE(2362), + [sym_atomic_type] = STATE(2362), + [sym_generic_type] = STATE(2362), + [sym_function_type] = STATE(2362), + [sym__statement_list] = STATE(4514), + [sym__statement] = STATE(3566), + [sym_simple_statement] = STATE(3648), + [sym_assert_statement] = STATE(3648), + [sym_append_statement] = STATE(3648), + [sym_send_statement] = STATE(3648), + [sym_var_declaration] = STATE(3649), + [sym_assignment_statement] = STATE(3649), + [sym_block] = STATE(3648), + [sym_defer_statement] = STATE(3648), + [sym_goto_statement] = STATE(3648), + [sym_break_statement] = STATE(3648), + [sym_continue_statement] = STATE(3648), + [sym_return_statement] = STATE(3648), [sym_label_definition] = STATE(62), - [sym_labeled_statement] = STATE(3582), - [sym_empty_labeled_statement] = STATE(4544), - [sym_compile_time_for_statement] = STATE(3582), - [sym_for_statement] = STATE(3582), - [sym_hash_statement] = STATE(3582), - [sym_asm_statement] = STATE(3582), + [sym_labeled_statement] = STATE(3648), + [sym_empty_labeled_statement] = STATE(4547), + [sym_compile_time_for_statement] = STATE(3648), + [sym_for_statement] = STATE(3648), + [sym_hash_statement] = STATE(3648), + [sym_asm_statement] = STATE(3648), [sym_identifier] = ACTIONS(437), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), @@ -25753,91 +25769,91 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [44] = { [sym_line_comment] = STATE(44), [sym_block_comment] = STATE(44), - [sym__expression] = STATE(1609), - [sym__expression_without_blocks] = STATE(1692), - [sym__expression_with_blocks] = STATE(1692), - [sym_strictly_expression_list] = STATE(3584), - [sym_inc_expression] = STATE(1684), - [sym_dec_expression] = STATE(1684), - [sym_or_block_expression] = STATE(1684), - [sym_option_propagation_expression] = STATE(1684), - [sym_result_propagation_expression] = STATE(1684), - [sym_anon_struct_value_expression] = STATE(1677), - [sym_go_expression] = STATE(1684), - [sym_spawn_expression] = STATE(1684), - [sym_parenthesized_expression] = STATE(1684), - [sym_call_expression] = STATE(1684), - [sym_type_initializer] = STATE(1677), - [sym_function_literal] = STATE(1684), - [sym_reference_expression] = STATE(1674), - [sym_type_reference_expression] = STATE(3541), - [sym_unary_expression] = STATE(1684), - [sym_receive_expression] = STATE(1684), - [sym_binary_expression] = STATE(1684), - [sym_as_type_cast_expression] = STATE(1684), - [sym__max_group] = STATE(1684), - [sym_literal] = STATE(1698), - [sym_map_init_expression] = STATE(1677), - [sym_array_creation] = STATE(1684), - [sym_fixed_array_creation] = STATE(1684), - [sym_selector_expression] = STATE(1684), - [sym_index_expression] = STATE(1684), - [sym_slice_expression] = STATE(1684), - [sym_if_expression] = STATE(1677), - [sym_compile_time_if_expression] = STATE(1677), - [sym_is_expression] = STATE(1684), - [sym_in_expression] = STATE(1684), - [sym_enum_fetch] = STATE(1684), - [sym_match_expression] = STATE(1677), - [sym_select_expression] = STATE(1677), - [sym_lock_expression] = STATE(1677), - [sym_unsafe_expression] = STATE(1677), - [sym_sql_expression] = STATE(1677), - [sym_c_string_literal] = STATE(1705), - [sym_raw_string_literal] = STATE(1705), - [sym_interpreted_string_literal] = STATE(1705), - [sym_mutability_modifiers] = STATE(858), - [sym_mutable_expression] = STATE(3274), - [sym_expression_list] = STATE(3288), - [sym_plain_type] = STATE(4157), - [sym__plain_type_without_special] = STATE(2302), - [sym_anon_struct_type] = STATE(2303), - [sym_multi_return_type] = STATE(2302), - [sym_result_type] = STATE(2302), - [sym_option_type] = STATE(2302), - [sym_qualified_type] = STATE(3541), - [sym_fixed_array_type] = STATE(2303), - [sym_array_type] = STATE(2303), - [sym_pointer_type] = STATE(2303), - [sym_wrong_pointer_type] = STATE(2303), - [sym_map_type] = STATE(2303), - [sym_channel_type] = STATE(2303), - [sym_shared_type] = STATE(2303), - [sym_thread_type] = STATE(2303), - [sym_atomic_type] = STATE(2303), - [sym_generic_type] = STATE(2303), - [sym_function_type] = STATE(2303), - [sym__statement_list] = STATE(4516), - [sym__statement] = STATE(3549), - [sym_simple_statement] = STATE(3582), - [sym_assert_statement] = STATE(3582), - [sym_append_statement] = STATE(3582), - [sym_send_statement] = STATE(3582), - [sym_var_declaration] = STATE(3584), - [sym_assignment_statement] = STATE(3584), - [sym_block] = STATE(3582), - [sym_defer_statement] = STATE(3582), - [sym_goto_statement] = STATE(3582), - [sym_break_statement] = STATE(3582), - [sym_continue_statement] = STATE(3582), - [sym_return_statement] = STATE(3582), + [sym__expression] = STATE(1612), + [sym__expression_without_blocks] = STATE(1747), + [sym__expression_with_blocks] = STATE(1747), + [sym_strictly_expression_list] = STATE(3649), + [sym_inc_expression] = STATE(1749), + [sym_dec_expression] = STATE(1749), + [sym_or_block_expression] = STATE(1749), + [sym_option_propagation_expression] = STATE(1749), + [sym_result_propagation_expression] = STATE(1749), + [sym_anon_struct_value_expression] = STATE(1746), + [sym_go_expression] = STATE(1749), + [sym_spawn_expression] = STATE(1749), + [sym_parenthesized_expression] = STATE(1749), + [sym_call_expression] = STATE(1749), + [sym_type_initializer] = STATE(1746), + [sym_function_literal] = STATE(1749), + [sym_reference_expression] = STATE(1745), + [sym_type_reference_expression] = STATE(3460), + [sym_unary_expression] = STATE(1749), + [sym_receive_expression] = STATE(1749), + [sym_binary_expression] = STATE(1749), + [sym_as_type_cast_expression] = STATE(1749), + [sym__max_group] = STATE(1749), + [sym_literal] = STATE(1738), + [sym_map_init_expression] = STATE(1746), + [sym_array_creation] = STATE(1749), + [sym_fixed_array_creation] = STATE(1749), + [sym_selector_expression] = STATE(1749), + [sym_index_expression] = STATE(1749), + [sym_slice_expression] = STATE(1749), + [sym_if_expression] = STATE(1746), + [sym_compile_time_if_expression] = STATE(1746), + [sym_is_expression] = STATE(1749), + [sym_in_expression] = STATE(1749), + [sym_enum_fetch] = STATE(1749), + [sym_match_expression] = STATE(1746), + [sym_select_expression] = STATE(1746), + [sym_lock_expression] = STATE(1746), + [sym_unsafe_expression] = STATE(1746), + [sym_sql_expression] = STATE(1746), + [sym_c_string_literal] = STATE(1733), + [sym_raw_string_literal] = STATE(1733), + [sym_interpreted_string_literal] = STATE(1733), + [sym_mutability_modifiers] = STATE(843), + [sym_mutable_expression] = STATE(3278), + [sym_expression_list] = STATE(3323), + [sym_plain_type] = STATE(4121), + [sym__plain_type_without_special] = STATE(2360), + [sym_anon_struct_type] = STATE(2362), + [sym_multi_return_type] = STATE(2360), + [sym_result_type] = STATE(2360), + [sym_option_type] = STATE(2360), + [sym_qualified_type] = STATE(3460), + [sym_fixed_array_type] = STATE(2362), + [sym_array_type] = STATE(2362), + [sym_pointer_type] = STATE(2362), + [sym_wrong_pointer_type] = STATE(2362), + [sym_map_type] = STATE(2362), + [sym_channel_type] = STATE(2362), + [sym_shared_type] = STATE(2362), + [sym_thread_type] = STATE(2362), + [sym_atomic_type] = STATE(2362), + [sym_generic_type] = STATE(2362), + [sym_function_type] = STATE(2362), + [sym__statement_list] = STATE(4528), + [sym__statement] = STATE(3566), + [sym_simple_statement] = STATE(3648), + [sym_assert_statement] = STATE(3648), + [sym_append_statement] = STATE(3648), + [sym_send_statement] = STATE(3648), + [sym_var_declaration] = STATE(3649), + [sym_assignment_statement] = STATE(3649), + [sym_block] = STATE(3648), + [sym_defer_statement] = STATE(3648), + [sym_goto_statement] = STATE(3648), + [sym_break_statement] = STATE(3648), + [sym_continue_statement] = STATE(3648), + [sym_return_statement] = STATE(3648), [sym_label_definition] = STATE(62), - [sym_labeled_statement] = STATE(3582), - [sym_empty_labeled_statement] = STATE(4544), - [sym_compile_time_for_statement] = STATE(3582), - [sym_for_statement] = STATE(3582), - [sym_hash_statement] = STATE(3582), - [sym_asm_statement] = STATE(3582), + [sym_labeled_statement] = STATE(3648), + [sym_empty_labeled_statement] = STATE(4547), + [sym_compile_time_for_statement] = STATE(3648), + [sym_for_statement] = STATE(3648), + [sym_hash_statement] = STATE(3648), + [sym_asm_statement] = STATE(3648), [sym_identifier] = ACTIONS(437), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), @@ -25902,91 +25918,91 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [45] = { [sym_line_comment] = STATE(45), [sym_block_comment] = STATE(45), - [sym__expression] = STATE(1609), - [sym__expression_without_blocks] = STATE(1692), - [sym__expression_with_blocks] = STATE(1692), - [sym_strictly_expression_list] = STATE(3584), - [sym_inc_expression] = STATE(1684), - [sym_dec_expression] = STATE(1684), - [sym_or_block_expression] = STATE(1684), - [sym_option_propagation_expression] = STATE(1684), - [sym_result_propagation_expression] = STATE(1684), - [sym_anon_struct_value_expression] = STATE(1677), - [sym_go_expression] = STATE(1684), - [sym_spawn_expression] = STATE(1684), - [sym_parenthesized_expression] = STATE(1684), - [sym_call_expression] = STATE(1684), - [sym_type_initializer] = STATE(1677), - [sym_function_literal] = STATE(1684), - [sym_reference_expression] = STATE(1674), - [sym_type_reference_expression] = STATE(3541), - [sym_unary_expression] = STATE(1684), - [sym_receive_expression] = STATE(1684), - [sym_binary_expression] = STATE(1684), - [sym_as_type_cast_expression] = STATE(1684), - [sym__max_group] = STATE(1684), - [sym_literal] = STATE(1698), - [sym_map_init_expression] = STATE(1677), - [sym_array_creation] = STATE(1684), - [sym_fixed_array_creation] = STATE(1684), - [sym_selector_expression] = STATE(1684), - [sym_index_expression] = STATE(1684), - [sym_slice_expression] = STATE(1684), - [sym_if_expression] = STATE(1677), - [sym_compile_time_if_expression] = STATE(1677), - [sym_is_expression] = STATE(1684), - [sym_in_expression] = STATE(1684), - [sym_enum_fetch] = STATE(1684), - [sym_match_expression] = STATE(1677), - [sym_select_expression] = STATE(1677), - [sym_lock_expression] = STATE(1677), - [sym_unsafe_expression] = STATE(1677), - [sym_sql_expression] = STATE(1677), - [sym_c_string_literal] = STATE(1705), - [sym_raw_string_literal] = STATE(1705), - [sym_interpreted_string_literal] = STATE(1705), - [sym_mutability_modifiers] = STATE(858), - [sym_mutable_expression] = STATE(3274), - [sym_expression_list] = STATE(3288), - [sym_plain_type] = STATE(4157), - [sym__plain_type_without_special] = STATE(2302), - [sym_anon_struct_type] = STATE(2303), - [sym_multi_return_type] = STATE(2302), - [sym_result_type] = STATE(2302), - [sym_option_type] = STATE(2302), - [sym_qualified_type] = STATE(3541), - [sym_fixed_array_type] = STATE(2303), - [sym_array_type] = STATE(2303), - [sym_pointer_type] = STATE(2303), - [sym_wrong_pointer_type] = STATE(2303), - [sym_map_type] = STATE(2303), - [sym_channel_type] = STATE(2303), - [sym_shared_type] = STATE(2303), - [sym_thread_type] = STATE(2303), - [sym_atomic_type] = STATE(2303), - [sym_generic_type] = STATE(2303), - [sym_function_type] = STATE(2303), - [sym__statement_list] = STATE(4546), - [sym__statement] = STATE(3549), - [sym_simple_statement] = STATE(3582), - [sym_assert_statement] = STATE(3582), - [sym_append_statement] = STATE(3582), - [sym_send_statement] = STATE(3582), - [sym_var_declaration] = STATE(3584), - [sym_assignment_statement] = STATE(3584), - [sym_block] = STATE(3582), - [sym_defer_statement] = STATE(3582), - [sym_goto_statement] = STATE(3582), - [sym_break_statement] = STATE(3582), - [sym_continue_statement] = STATE(3582), - [sym_return_statement] = STATE(3582), + [sym__expression] = STATE(1612), + [sym__expression_without_blocks] = STATE(1747), + [sym__expression_with_blocks] = STATE(1747), + [sym_strictly_expression_list] = STATE(3649), + [sym_inc_expression] = STATE(1749), + [sym_dec_expression] = STATE(1749), + [sym_or_block_expression] = STATE(1749), + [sym_option_propagation_expression] = STATE(1749), + [sym_result_propagation_expression] = STATE(1749), + [sym_anon_struct_value_expression] = STATE(1746), + [sym_go_expression] = STATE(1749), + [sym_spawn_expression] = STATE(1749), + [sym_parenthesized_expression] = STATE(1749), + [sym_call_expression] = STATE(1749), + [sym_type_initializer] = STATE(1746), + [sym_function_literal] = STATE(1749), + [sym_reference_expression] = STATE(1745), + [sym_type_reference_expression] = STATE(3460), + [sym_unary_expression] = STATE(1749), + [sym_receive_expression] = STATE(1749), + [sym_binary_expression] = STATE(1749), + [sym_as_type_cast_expression] = STATE(1749), + [sym__max_group] = STATE(1749), + [sym_literal] = STATE(1738), + [sym_map_init_expression] = STATE(1746), + [sym_array_creation] = STATE(1749), + [sym_fixed_array_creation] = STATE(1749), + [sym_selector_expression] = STATE(1749), + [sym_index_expression] = STATE(1749), + [sym_slice_expression] = STATE(1749), + [sym_if_expression] = STATE(1746), + [sym_compile_time_if_expression] = STATE(1746), + [sym_is_expression] = STATE(1749), + [sym_in_expression] = STATE(1749), + [sym_enum_fetch] = STATE(1749), + [sym_match_expression] = STATE(1746), + [sym_select_expression] = STATE(1746), + [sym_lock_expression] = STATE(1746), + [sym_unsafe_expression] = STATE(1746), + [sym_sql_expression] = STATE(1746), + [sym_c_string_literal] = STATE(1733), + [sym_raw_string_literal] = STATE(1733), + [sym_interpreted_string_literal] = STATE(1733), + [sym_mutability_modifiers] = STATE(843), + [sym_mutable_expression] = STATE(3278), + [sym_expression_list] = STATE(3323), + [sym_plain_type] = STATE(4121), + [sym__plain_type_without_special] = STATE(2360), + [sym_anon_struct_type] = STATE(2362), + [sym_multi_return_type] = STATE(2360), + [sym_result_type] = STATE(2360), + [sym_option_type] = STATE(2360), + [sym_qualified_type] = STATE(3460), + [sym_fixed_array_type] = STATE(2362), + [sym_array_type] = STATE(2362), + [sym_pointer_type] = STATE(2362), + [sym_wrong_pointer_type] = STATE(2362), + [sym_map_type] = STATE(2362), + [sym_channel_type] = STATE(2362), + [sym_shared_type] = STATE(2362), + [sym_thread_type] = STATE(2362), + [sym_atomic_type] = STATE(2362), + [sym_generic_type] = STATE(2362), + [sym_function_type] = STATE(2362), + [sym__statement_list] = STATE(4504), + [sym__statement] = STATE(3566), + [sym_simple_statement] = STATE(3648), + [sym_assert_statement] = STATE(3648), + [sym_append_statement] = STATE(3648), + [sym_send_statement] = STATE(3648), + [sym_var_declaration] = STATE(3649), + [sym_assignment_statement] = STATE(3649), + [sym_block] = STATE(3648), + [sym_defer_statement] = STATE(3648), + [sym_goto_statement] = STATE(3648), + [sym_break_statement] = STATE(3648), + [sym_continue_statement] = STATE(3648), + [sym_return_statement] = STATE(3648), [sym_label_definition] = STATE(62), - [sym_labeled_statement] = STATE(3582), - [sym_empty_labeled_statement] = STATE(4544), - [sym_compile_time_for_statement] = STATE(3582), - [sym_for_statement] = STATE(3582), - [sym_hash_statement] = STATE(3582), - [sym_asm_statement] = STATE(3582), + [sym_labeled_statement] = STATE(3648), + [sym_empty_labeled_statement] = STATE(4547), + [sym_compile_time_for_statement] = STATE(3648), + [sym_for_statement] = STATE(3648), + [sym_hash_statement] = STATE(3648), + [sym_asm_statement] = STATE(3648), [sym_identifier] = ACTIONS(437), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), @@ -26051,91 +26067,91 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [46] = { [sym_line_comment] = STATE(46), [sym_block_comment] = STATE(46), - [sym__expression] = STATE(1609), - [sym__expression_without_blocks] = STATE(1692), - [sym__expression_with_blocks] = STATE(1692), - [sym_strictly_expression_list] = STATE(3584), - [sym_inc_expression] = STATE(1684), - [sym_dec_expression] = STATE(1684), - [sym_or_block_expression] = STATE(1684), - [sym_option_propagation_expression] = STATE(1684), - [sym_result_propagation_expression] = STATE(1684), - [sym_anon_struct_value_expression] = STATE(1677), - [sym_go_expression] = STATE(1684), - [sym_spawn_expression] = STATE(1684), - [sym_parenthesized_expression] = STATE(1684), - [sym_call_expression] = STATE(1684), - [sym_type_initializer] = STATE(1677), - [sym_function_literal] = STATE(1684), - [sym_reference_expression] = STATE(1674), - [sym_type_reference_expression] = STATE(3541), - [sym_unary_expression] = STATE(1684), - [sym_receive_expression] = STATE(1684), - [sym_binary_expression] = STATE(1684), - [sym_as_type_cast_expression] = STATE(1684), - [sym__max_group] = STATE(1684), - [sym_literal] = STATE(1698), - [sym_map_init_expression] = STATE(1677), - [sym_array_creation] = STATE(1684), - [sym_fixed_array_creation] = STATE(1684), - [sym_selector_expression] = STATE(1684), - [sym_index_expression] = STATE(1684), - [sym_slice_expression] = STATE(1684), - [sym_if_expression] = STATE(1677), - [sym_compile_time_if_expression] = STATE(1677), - [sym_is_expression] = STATE(1684), - [sym_in_expression] = STATE(1684), - [sym_enum_fetch] = STATE(1684), - [sym_match_expression] = STATE(1677), - [sym_select_expression] = STATE(1677), - [sym_lock_expression] = STATE(1677), - [sym_unsafe_expression] = STATE(1677), - [sym_sql_expression] = STATE(1677), - [sym_c_string_literal] = STATE(1705), - [sym_raw_string_literal] = STATE(1705), - [sym_interpreted_string_literal] = STATE(1705), - [sym_mutability_modifiers] = STATE(858), - [sym_mutable_expression] = STATE(3274), - [sym_expression_list] = STATE(3288), - [sym_plain_type] = STATE(4157), - [sym__plain_type_without_special] = STATE(2302), - [sym_anon_struct_type] = STATE(2303), - [sym_multi_return_type] = STATE(2302), - [sym_result_type] = STATE(2302), - [sym_option_type] = STATE(2302), - [sym_qualified_type] = STATE(3541), - [sym_fixed_array_type] = STATE(2303), - [sym_array_type] = STATE(2303), - [sym_pointer_type] = STATE(2303), - [sym_wrong_pointer_type] = STATE(2303), - [sym_map_type] = STATE(2303), - [sym_channel_type] = STATE(2303), - [sym_shared_type] = STATE(2303), - [sym_thread_type] = STATE(2303), - [sym_atomic_type] = STATE(2303), - [sym_generic_type] = STATE(2303), - [sym_function_type] = STATE(2303), - [sym__statement_list] = STATE(4438), - [sym__statement] = STATE(3549), - [sym_simple_statement] = STATE(3582), - [sym_assert_statement] = STATE(3582), - [sym_append_statement] = STATE(3582), - [sym_send_statement] = STATE(3582), - [sym_var_declaration] = STATE(3584), - [sym_assignment_statement] = STATE(3584), - [sym_block] = STATE(3582), - [sym_defer_statement] = STATE(3582), - [sym_goto_statement] = STATE(3582), - [sym_break_statement] = STATE(3582), - [sym_continue_statement] = STATE(3582), - [sym_return_statement] = STATE(3582), + [sym__expression] = STATE(1612), + [sym__expression_without_blocks] = STATE(1747), + [sym__expression_with_blocks] = STATE(1747), + [sym_strictly_expression_list] = STATE(3649), + [sym_inc_expression] = STATE(1749), + [sym_dec_expression] = STATE(1749), + [sym_or_block_expression] = STATE(1749), + [sym_option_propagation_expression] = STATE(1749), + [sym_result_propagation_expression] = STATE(1749), + [sym_anon_struct_value_expression] = STATE(1746), + [sym_go_expression] = STATE(1749), + [sym_spawn_expression] = STATE(1749), + [sym_parenthesized_expression] = STATE(1749), + [sym_call_expression] = STATE(1749), + [sym_type_initializer] = STATE(1746), + [sym_function_literal] = STATE(1749), + [sym_reference_expression] = STATE(1745), + [sym_type_reference_expression] = STATE(3460), + [sym_unary_expression] = STATE(1749), + [sym_receive_expression] = STATE(1749), + [sym_binary_expression] = STATE(1749), + [sym_as_type_cast_expression] = STATE(1749), + [sym__max_group] = STATE(1749), + [sym_literal] = STATE(1738), + [sym_map_init_expression] = STATE(1746), + [sym_array_creation] = STATE(1749), + [sym_fixed_array_creation] = STATE(1749), + [sym_selector_expression] = STATE(1749), + [sym_index_expression] = STATE(1749), + [sym_slice_expression] = STATE(1749), + [sym_if_expression] = STATE(1746), + [sym_compile_time_if_expression] = STATE(1746), + [sym_is_expression] = STATE(1749), + [sym_in_expression] = STATE(1749), + [sym_enum_fetch] = STATE(1749), + [sym_match_expression] = STATE(1746), + [sym_select_expression] = STATE(1746), + [sym_lock_expression] = STATE(1746), + [sym_unsafe_expression] = STATE(1746), + [sym_sql_expression] = STATE(1746), + [sym_c_string_literal] = STATE(1733), + [sym_raw_string_literal] = STATE(1733), + [sym_interpreted_string_literal] = STATE(1733), + [sym_mutability_modifiers] = STATE(843), + [sym_mutable_expression] = STATE(3278), + [sym_expression_list] = STATE(3323), + [sym_plain_type] = STATE(4121), + [sym__plain_type_without_special] = STATE(2360), + [sym_anon_struct_type] = STATE(2362), + [sym_multi_return_type] = STATE(2360), + [sym_result_type] = STATE(2360), + [sym_option_type] = STATE(2360), + [sym_qualified_type] = STATE(3460), + [sym_fixed_array_type] = STATE(2362), + [sym_array_type] = STATE(2362), + [sym_pointer_type] = STATE(2362), + [sym_wrong_pointer_type] = STATE(2362), + [sym_map_type] = STATE(2362), + [sym_channel_type] = STATE(2362), + [sym_shared_type] = STATE(2362), + [sym_thread_type] = STATE(2362), + [sym_atomic_type] = STATE(2362), + [sym_generic_type] = STATE(2362), + [sym_function_type] = STATE(2362), + [sym__statement_list] = STATE(4533), + [sym__statement] = STATE(3566), + [sym_simple_statement] = STATE(3648), + [sym_assert_statement] = STATE(3648), + [sym_append_statement] = STATE(3648), + [sym_send_statement] = STATE(3648), + [sym_var_declaration] = STATE(3649), + [sym_assignment_statement] = STATE(3649), + [sym_block] = STATE(3648), + [sym_defer_statement] = STATE(3648), + [sym_goto_statement] = STATE(3648), + [sym_break_statement] = STATE(3648), + [sym_continue_statement] = STATE(3648), + [sym_return_statement] = STATE(3648), [sym_label_definition] = STATE(62), - [sym_labeled_statement] = STATE(3582), - [sym_empty_labeled_statement] = STATE(4544), - [sym_compile_time_for_statement] = STATE(3582), - [sym_for_statement] = STATE(3582), - [sym_hash_statement] = STATE(3582), - [sym_asm_statement] = STATE(3582), + [sym_labeled_statement] = STATE(3648), + [sym_empty_labeled_statement] = STATE(4547), + [sym_compile_time_for_statement] = STATE(3648), + [sym_for_statement] = STATE(3648), + [sym_hash_statement] = STATE(3648), + [sym_asm_statement] = STATE(3648), [sym_identifier] = ACTIONS(437), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), @@ -26200,91 +26216,91 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [47] = { [sym_line_comment] = STATE(47), [sym_block_comment] = STATE(47), - [sym__expression] = STATE(1609), - [sym__expression_without_blocks] = STATE(1692), - [sym__expression_with_blocks] = STATE(1692), - [sym_strictly_expression_list] = STATE(3584), - [sym_inc_expression] = STATE(1684), - [sym_dec_expression] = STATE(1684), - [sym_or_block_expression] = STATE(1684), - [sym_option_propagation_expression] = STATE(1684), - [sym_result_propagation_expression] = STATE(1684), - [sym_anon_struct_value_expression] = STATE(1677), - [sym_go_expression] = STATE(1684), - [sym_spawn_expression] = STATE(1684), - [sym_parenthesized_expression] = STATE(1684), - [sym_call_expression] = STATE(1684), - [sym_type_initializer] = STATE(1677), - [sym_function_literal] = STATE(1684), - [sym_reference_expression] = STATE(1674), - [sym_type_reference_expression] = STATE(3541), - [sym_unary_expression] = STATE(1684), - [sym_receive_expression] = STATE(1684), - [sym_binary_expression] = STATE(1684), - [sym_as_type_cast_expression] = STATE(1684), - [sym__max_group] = STATE(1684), - [sym_literal] = STATE(1698), - [sym_map_init_expression] = STATE(1677), - [sym_array_creation] = STATE(1684), - [sym_fixed_array_creation] = STATE(1684), - [sym_selector_expression] = STATE(1684), - [sym_index_expression] = STATE(1684), - [sym_slice_expression] = STATE(1684), - [sym_if_expression] = STATE(1677), - [sym_compile_time_if_expression] = STATE(1677), - [sym_is_expression] = STATE(1684), - [sym_in_expression] = STATE(1684), - [sym_enum_fetch] = STATE(1684), - [sym_match_expression] = STATE(1677), - [sym_select_expression] = STATE(1677), - [sym_lock_expression] = STATE(1677), - [sym_unsafe_expression] = STATE(1677), - [sym_sql_expression] = STATE(1677), - [sym_c_string_literal] = STATE(1705), - [sym_raw_string_literal] = STATE(1705), - [sym_interpreted_string_literal] = STATE(1705), - [sym_mutability_modifiers] = STATE(858), - [sym_mutable_expression] = STATE(3274), - [sym_expression_list] = STATE(3288), - [sym_plain_type] = STATE(4157), - [sym__plain_type_without_special] = STATE(2302), - [sym_anon_struct_type] = STATE(2303), - [sym_multi_return_type] = STATE(2302), - [sym_result_type] = STATE(2302), - [sym_option_type] = STATE(2302), - [sym_qualified_type] = STATE(3541), - [sym_fixed_array_type] = STATE(2303), - [sym_array_type] = STATE(2303), - [sym_pointer_type] = STATE(2303), - [sym_wrong_pointer_type] = STATE(2303), - [sym_map_type] = STATE(2303), - [sym_channel_type] = STATE(2303), - [sym_shared_type] = STATE(2303), - [sym_thread_type] = STATE(2303), - [sym_atomic_type] = STATE(2303), - [sym_generic_type] = STATE(2303), - [sym_function_type] = STATE(2303), - [sym__statement_list] = STATE(4479), - [sym__statement] = STATE(3549), - [sym_simple_statement] = STATE(3582), - [sym_assert_statement] = STATE(3582), - [sym_append_statement] = STATE(3582), - [sym_send_statement] = STATE(3582), - [sym_var_declaration] = STATE(3584), - [sym_assignment_statement] = STATE(3584), - [sym_block] = STATE(3582), - [sym_defer_statement] = STATE(3582), - [sym_goto_statement] = STATE(3582), - [sym_break_statement] = STATE(3582), - [sym_continue_statement] = STATE(3582), - [sym_return_statement] = STATE(3582), + [sym__expression] = STATE(1612), + [sym__expression_without_blocks] = STATE(1747), + [sym__expression_with_blocks] = STATE(1747), + [sym_strictly_expression_list] = STATE(3649), + [sym_inc_expression] = STATE(1749), + [sym_dec_expression] = STATE(1749), + [sym_or_block_expression] = STATE(1749), + [sym_option_propagation_expression] = STATE(1749), + [sym_result_propagation_expression] = STATE(1749), + [sym_anon_struct_value_expression] = STATE(1746), + [sym_go_expression] = STATE(1749), + [sym_spawn_expression] = STATE(1749), + [sym_parenthesized_expression] = STATE(1749), + [sym_call_expression] = STATE(1749), + [sym_type_initializer] = STATE(1746), + [sym_function_literal] = STATE(1749), + [sym_reference_expression] = STATE(1745), + [sym_type_reference_expression] = STATE(3460), + [sym_unary_expression] = STATE(1749), + [sym_receive_expression] = STATE(1749), + [sym_binary_expression] = STATE(1749), + [sym_as_type_cast_expression] = STATE(1749), + [sym__max_group] = STATE(1749), + [sym_literal] = STATE(1738), + [sym_map_init_expression] = STATE(1746), + [sym_array_creation] = STATE(1749), + [sym_fixed_array_creation] = STATE(1749), + [sym_selector_expression] = STATE(1749), + [sym_index_expression] = STATE(1749), + [sym_slice_expression] = STATE(1749), + [sym_if_expression] = STATE(1746), + [sym_compile_time_if_expression] = STATE(1746), + [sym_is_expression] = STATE(1749), + [sym_in_expression] = STATE(1749), + [sym_enum_fetch] = STATE(1749), + [sym_match_expression] = STATE(1746), + [sym_select_expression] = STATE(1746), + [sym_lock_expression] = STATE(1746), + [sym_unsafe_expression] = STATE(1746), + [sym_sql_expression] = STATE(1746), + [sym_c_string_literal] = STATE(1733), + [sym_raw_string_literal] = STATE(1733), + [sym_interpreted_string_literal] = STATE(1733), + [sym_mutability_modifiers] = STATE(843), + [sym_mutable_expression] = STATE(3278), + [sym_expression_list] = STATE(3323), + [sym_plain_type] = STATE(4121), + [sym__plain_type_without_special] = STATE(2360), + [sym_anon_struct_type] = STATE(2362), + [sym_multi_return_type] = STATE(2360), + [sym_result_type] = STATE(2360), + [sym_option_type] = STATE(2360), + [sym_qualified_type] = STATE(3460), + [sym_fixed_array_type] = STATE(2362), + [sym_array_type] = STATE(2362), + [sym_pointer_type] = STATE(2362), + [sym_wrong_pointer_type] = STATE(2362), + [sym_map_type] = STATE(2362), + [sym_channel_type] = STATE(2362), + [sym_shared_type] = STATE(2362), + [sym_thread_type] = STATE(2362), + [sym_atomic_type] = STATE(2362), + [sym_generic_type] = STATE(2362), + [sym_function_type] = STATE(2362), + [sym__statement_list] = STATE(4364), + [sym__statement] = STATE(3566), + [sym_simple_statement] = STATE(3648), + [sym_assert_statement] = STATE(3648), + [sym_append_statement] = STATE(3648), + [sym_send_statement] = STATE(3648), + [sym_var_declaration] = STATE(3649), + [sym_assignment_statement] = STATE(3649), + [sym_block] = STATE(3648), + [sym_defer_statement] = STATE(3648), + [sym_goto_statement] = STATE(3648), + [sym_break_statement] = STATE(3648), + [sym_continue_statement] = STATE(3648), + [sym_return_statement] = STATE(3648), [sym_label_definition] = STATE(62), - [sym_labeled_statement] = STATE(3582), - [sym_empty_labeled_statement] = STATE(4544), - [sym_compile_time_for_statement] = STATE(3582), - [sym_for_statement] = STATE(3582), - [sym_hash_statement] = STATE(3582), - [sym_asm_statement] = STATE(3582), + [sym_labeled_statement] = STATE(3648), + [sym_empty_labeled_statement] = STATE(4547), + [sym_compile_time_for_statement] = STATE(3648), + [sym_for_statement] = STATE(3648), + [sym_hash_statement] = STATE(3648), + [sym_asm_statement] = STATE(3648), [sym_identifier] = ACTIONS(437), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), @@ -26349,91 +26365,91 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [48] = { [sym_line_comment] = STATE(48), [sym_block_comment] = STATE(48), - [sym__expression] = STATE(1609), - [sym__expression_without_blocks] = STATE(1692), - [sym__expression_with_blocks] = STATE(1692), - [sym_strictly_expression_list] = STATE(3584), - [sym_inc_expression] = STATE(1684), - [sym_dec_expression] = STATE(1684), - [sym_or_block_expression] = STATE(1684), - [sym_option_propagation_expression] = STATE(1684), - [sym_result_propagation_expression] = STATE(1684), - [sym_anon_struct_value_expression] = STATE(1677), - [sym_go_expression] = STATE(1684), - [sym_spawn_expression] = STATE(1684), - [sym_parenthesized_expression] = STATE(1684), - [sym_call_expression] = STATE(1684), - [sym_type_initializer] = STATE(1677), - [sym_function_literal] = STATE(1684), - [sym_reference_expression] = STATE(1674), - [sym_type_reference_expression] = STATE(3541), - [sym_unary_expression] = STATE(1684), - [sym_receive_expression] = STATE(1684), - [sym_binary_expression] = STATE(1684), - [sym_as_type_cast_expression] = STATE(1684), - [sym__max_group] = STATE(1684), - [sym_literal] = STATE(1698), - [sym_map_init_expression] = STATE(1677), - [sym_array_creation] = STATE(1684), - [sym_fixed_array_creation] = STATE(1684), - [sym_selector_expression] = STATE(1684), - [sym_index_expression] = STATE(1684), - [sym_slice_expression] = STATE(1684), - [sym_if_expression] = STATE(1677), - [sym_compile_time_if_expression] = STATE(1677), - [sym_is_expression] = STATE(1684), - [sym_in_expression] = STATE(1684), - [sym_enum_fetch] = STATE(1684), - [sym_match_expression] = STATE(1677), - [sym_select_expression] = STATE(1677), - [sym_lock_expression] = STATE(1677), - [sym_unsafe_expression] = STATE(1677), - [sym_sql_expression] = STATE(1677), - [sym_c_string_literal] = STATE(1705), - [sym_raw_string_literal] = STATE(1705), - [sym_interpreted_string_literal] = STATE(1705), - [sym_mutability_modifiers] = STATE(858), - [sym_mutable_expression] = STATE(3274), - [sym_expression_list] = STATE(3288), - [sym_plain_type] = STATE(4157), - [sym__plain_type_without_special] = STATE(2302), - [sym_anon_struct_type] = STATE(2303), - [sym_multi_return_type] = STATE(2302), - [sym_result_type] = STATE(2302), - [sym_option_type] = STATE(2302), - [sym_qualified_type] = STATE(3541), - [sym_fixed_array_type] = STATE(2303), - [sym_array_type] = STATE(2303), - [sym_pointer_type] = STATE(2303), - [sym_wrong_pointer_type] = STATE(2303), - [sym_map_type] = STATE(2303), - [sym_channel_type] = STATE(2303), - [sym_shared_type] = STATE(2303), - [sym_thread_type] = STATE(2303), - [sym_atomic_type] = STATE(2303), - [sym_generic_type] = STATE(2303), - [sym_function_type] = STATE(2303), - [sym__statement_list] = STATE(4525), - [sym__statement] = STATE(3549), - [sym_simple_statement] = STATE(3582), - [sym_assert_statement] = STATE(3582), - [sym_append_statement] = STATE(3582), - [sym_send_statement] = STATE(3582), - [sym_var_declaration] = STATE(3584), - [sym_assignment_statement] = STATE(3584), - [sym_block] = STATE(3582), - [sym_defer_statement] = STATE(3582), - [sym_goto_statement] = STATE(3582), - [sym_break_statement] = STATE(3582), - [sym_continue_statement] = STATE(3582), - [sym_return_statement] = STATE(3582), + [sym__expression] = STATE(1612), + [sym__expression_without_blocks] = STATE(1747), + [sym__expression_with_blocks] = STATE(1747), + [sym_strictly_expression_list] = STATE(3649), + [sym_inc_expression] = STATE(1749), + [sym_dec_expression] = STATE(1749), + [sym_or_block_expression] = STATE(1749), + [sym_option_propagation_expression] = STATE(1749), + [sym_result_propagation_expression] = STATE(1749), + [sym_anon_struct_value_expression] = STATE(1746), + [sym_go_expression] = STATE(1749), + [sym_spawn_expression] = STATE(1749), + [sym_parenthesized_expression] = STATE(1749), + [sym_call_expression] = STATE(1749), + [sym_type_initializer] = STATE(1746), + [sym_function_literal] = STATE(1749), + [sym_reference_expression] = STATE(1745), + [sym_type_reference_expression] = STATE(3460), + [sym_unary_expression] = STATE(1749), + [sym_receive_expression] = STATE(1749), + [sym_binary_expression] = STATE(1749), + [sym_as_type_cast_expression] = STATE(1749), + [sym__max_group] = STATE(1749), + [sym_literal] = STATE(1738), + [sym_map_init_expression] = STATE(1746), + [sym_array_creation] = STATE(1749), + [sym_fixed_array_creation] = STATE(1749), + [sym_selector_expression] = STATE(1749), + [sym_index_expression] = STATE(1749), + [sym_slice_expression] = STATE(1749), + [sym_if_expression] = STATE(1746), + [sym_compile_time_if_expression] = STATE(1746), + [sym_is_expression] = STATE(1749), + [sym_in_expression] = STATE(1749), + [sym_enum_fetch] = STATE(1749), + [sym_match_expression] = STATE(1746), + [sym_select_expression] = STATE(1746), + [sym_lock_expression] = STATE(1746), + [sym_unsafe_expression] = STATE(1746), + [sym_sql_expression] = STATE(1746), + [sym_c_string_literal] = STATE(1733), + [sym_raw_string_literal] = STATE(1733), + [sym_interpreted_string_literal] = STATE(1733), + [sym_mutability_modifiers] = STATE(843), + [sym_mutable_expression] = STATE(3278), + [sym_expression_list] = STATE(3323), + [sym_plain_type] = STATE(4121), + [sym__plain_type_without_special] = STATE(2360), + [sym_anon_struct_type] = STATE(2362), + [sym_multi_return_type] = STATE(2360), + [sym_result_type] = STATE(2360), + [sym_option_type] = STATE(2360), + [sym_qualified_type] = STATE(3460), + [sym_fixed_array_type] = STATE(2362), + [sym_array_type] = STATE(2362), + [sym_pointer_type] = STATE(2362), + [sym_wrong_pointer_type] = STATE(2362), + [sym_map_type] = STATE(2362), + [sym_channel_type] = STATE(2362), + [sym_shared_type] = STATE(2362), + [sym_thread_type] = STATE(2362), + [sym_atomic_type] = STATE(2362), + [sym_generic_type] = STATE(2362), + [sym_function_type] = STATE(2362), + [sym__statement_list] = STATE(4518), + [sym__statement] = STATE(3566), + [sym_simple_statement] = STATE(3648), + [sym_assert_statement] = STATE(3648), + [sym_append_statement] = STATE(3648), + [sym_send_statement] = STATE(3648), + [sym_var_declaration] = STATE(3649), + [sym_assignment_statement] = STATE(3649), + [sym_block] = STATE(3648), + [sym_defer_statement] = STATE(3648), + [sym_goto_statement] = STATE(3648), + [sym_break_statement] = STATE(3648), + [sym_continue_statement] = STATE(3648), + [sym_return_statement] = STATE(3648), [sym_label_definition] = STATE(62), - [sym_labeled_statement] = STATE(3582), - [sym_empty_labeled_statement] = STATE(4544), - [sym_compile_time_for_statement] = STATE(3582), - [sym_for_statement] = STATE(3582), - [sym_hash_statement] = STATE(3582), - [sym_asm_statement] = STATE(3582), + [sym_labeled_statement] = STATE(3648), + [sym_empty_labeled_statement] = STATE(4547), + [sym_compile_time_for_statement] = STATE(3648), + [sym_for_statement] = STATE(3648), + [sym_hash_statement] = STATE(3648), + [sym_asm_statement] = STATE(3648), [sym_identifier] = ACTIONS(437), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), @@ -26498,91 +26514,91 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [49] = { [sym_line_comment] = STATE(49), [sym_block_comment] = STATE(49), - [sym__expression] = STATE(1609), - [sym__expression_without_blocks] = STATE(1692), - [sym__expression_with_blocks] = STATE(1692), - [sym_strictly_expression_list] = STATE(3584), - [sym_inc_expression] = STATE(1684), - [sym_dec_expression] = STATE(1684), - [sym_or_block_expression] = STATE(1684), - [sym_option_propagation_expression] = STATE(1684), - [sym_result_propagation_expression] = STATE(1684), - [sym_anon_struct_value_expression] = STATE(1677), - [sym_go_expression] = STATE(1684), - [sym_spawn_expression] = STATE(1684), - [sym_parenthesized_expression] = STATE(1684), - [sym_call_expression] = STATE(1684), - [sym_type_initializer] = STATE(1677), - [sym_function_literal] = STATE(1684), - [sym_reference_expression] = STATE(1674), - [sym_type_reference_expression] = STATE(3541), - [sym_unary_expression] = STATE(1684), - [sym_receive_expression] = STATE(1684), - [sym_binary_expression] = STATE(1684), - [sym_as_type_cast_expression] = STATE(1684), - [sym__max_group] = STATE(1684), - [sym_literal] = STATE(1698), - [sym_map_init_expression] = STATE(1677), - [sym_array_creation] = STATE(1684), - [sym_fixed_array_creation] = STATE(1684), - [sym_selector_expression] = STATE(1684), - [sym_index_expression] = STATE(1684), - [sym_slice_expression] = STATE(1684), - [sym_if_expression] = STATE(1677), - [sym_compile_time_if_expression] = STATE(1677), - [sym_is_expression] = STATE(1684), - [sym_in_expression] = STATE(1684), - [sym_enum_fetch] = STATE(1684), - [sym_match_expression] = STATE(1677), - [sym_select_expression] = STATE(1677), - [sym_lock_expression] = STATE(1677), - [sym_unsafe_expression] = STATE(1677), - [sym_sql_expression] = STATE(1677), - [sym_c_string_literal] = STATE(1705), - [sym_raw_string_literal] = STATE(1705), - [sym_interpreted_string_literal] = STATE(1705), - [sym_mutability_modifiers] = STATE(858), - [sym_mutable_expression] = STATE(3274), - [sym_expression_list] = STATE(3288), - [sym_plain_type] = STATE(4157), - [sym__plain_type_without_special] = STATE(2302), - [sym_anon_struct_type] = STATE(2303), - [sym_multi_return_type] = STATE(2302), - [sym_result_type] = STATE(2302), - [sym_option_type] = STATE(2302), - [sym_qualified_type] = STATE(3541), - [sym_fixed_array_type] = STATE(2303), - [sym_array_type] = STATE(2303), - [sym_pointer_type] = STATE(2303), - [sym_wrong_pointer_type] = STATE(2303), - [sym_map_type] = STATE(2303), - [sym_channel_type] = STATE(2303), - [sym_shared_type] = STATE(2303), - [sym_thread_type] = STATE(2303), - [sym_atomic_type] = STATE(2303), - [sym_generic_type] = STATE(2303), - [sym_function_type] = STATE(2303), - [sym__statement_list] = STATE(4551), - [sym__statement] = STATE(3549), - [sym_simple_statement] = STATE(3582), - [sym_assert_statement] = STATE(3582), - [sym_append_statement] = STATE(3582), - [sym_send_statement] = STATE(3582), - [sym_var_declaration] = STATE(3584), - [sym_assignment_statement] = STATE(3584), - [sym_block] = STATE(3582), - [sym_defer_statement] = STATE(3582), - [sym_goto_statement] = STATE(3582), - [sym_break_statement] = STATE(3582), - [sym_continue_statement] = STATE(3582), - [sym_return_statement] = STATE(3582), + [sym__expression] = STATE(1612), + [sym__expression_without_blocks] = STATE(1747), + [sym__expression_with_blocks] = STATE(1747), + [sym_strictly_expression_list] = STATE(3649), + [sym_inc_expression] = STATE(1749), + [sym_dec_expression] = STATE(1749), + [sym_or_block_expression] = STATE(1749), + [sym_option_propagation_expression] = STATE(1749), + [sym_result_propagation_expression] = STATE(1749), + [sym_anon_struct_value_expression] = STATE(1746), + [sym_go_expression] = STATE(1749), + [sym_spawn_expression] = STATE(1749), + [sym_parenthesized_expression] = STATE(1749), + [sym_call_expression] = STATE(1749), + [sym_type_initializer] = STATE(1746), + [sym_function_literal] = STATE(1749), + [sym_reference_expression] = STATE(1745), + [sym_type_reference_expression] = STATE(3460), + [sym_unary_expression] = STATE(1749), + [sym_receive_expression] = STATE(1749), + [sym_binary_expression] = STATE(1749), + [sym_as_type_cast_expression] = STATE(1749), + [sym__max_group] = STATE(1749), + [sym_literal] = STATE(1738), + [sym_map_init_expression] = STATE(1746), + [sym_array_creation] = STATE(1749), + [sym_fixed_array_creation] = STATE(1749), + [sym_selector_expression] = STATE(1749), + [sym_index_expression] = STATE(1749), + [sym_slice_expression] = STATE(1749), + [sym_if_expression] = STATE(1746), + [sym_compile_time_if_expression] = STATE(1746), + [sym_is_expression] = STATE(1749), + [sym_in_expression] = STATE(1749), + [sym_enum_fetch] = STATE(1749), + [sym_match_expression] = STATE(1746), + [sym_select_expression] = STATE(1746), + [sym_lock_expression] = STATE(1746), + [sym_unsafe_expression] = STATE(1746), + [sym_sql_expression] = STATE(1746), + [sym_c_string_literal] = STATE(1733), + [sym_raw_string_literal] = STATE(1733), + [sym_interpreted_string_literal] = STATE(1733), + [sym_mutability_modifiers] = STATE(843), + [sym_mutable_expression] = STATE(3278), + [sym_expression_list] = STATE(3323), + [sym_plain_type] = STATE(4121), + [sym__plain_type_without_special] = STATE(2360), + [sym_anon_struct_type] = STATE(2362), + [sym_multi_return_type] = STATE(2360), + [sym_result_type] = STATE(2360), + [sym_option_type] = STATE(2360), + [sym_qualified_type] = STATE(3460), + [sym_fixed_array_type] = STATE(2362), + [sym_array_type] = STATE(2362), + [sym_pointer_type] = STATE(2362), + [sym_wrong_pointer_type] = STATE(2362), + [sym_map_type] = STATE(2362), + [sym_channel_type] = STATE(2362), + [sym_shared_type] = STATE(2362), + [sym_thread_type] = STATE(2362), + [sym_atomic_type] = STATE(2362), + [sym_generic_type] = STATE(2362), + [sym_function_type] = STATE(2362), + [sym__statement_list] = STATE(4572), + [sym__statement] = STATE(3566), + [sym_simple_statement] = STATE(3648), + [sym_assert_statement] = STATE(3648), + [sym_append_statement] = STATE(3648), + [sym_send_statement] = STATE(3648), + [sym_var_declaration] = STATE(3649), + [sym_assignment_statement] = STATE(3649), + [sym_block] = STATE(3648), + [sym_defer_statement] = STATE(3648), + [sym_goto_statement] = STATE(3648), + [sym_break_statement] = STATE(3648), + [sym_continue_statement] = STATE(3648), + [sym_return_statement] = STATE(3648), [sym_label_definition] = STATE(62), - [sym_labeled_statement] = STATE(3582), - [sym_empty_labeled_statement] = STATE(4544), - [sym_compile_time_for_statement] = STATE(3582), - [sym_for_statement] = STATE(3582), - [sym_hash_statement] = STATE(3582), - [sym_asm_statement] = STATE(3582), + [sym_labeled_statement] = STATE(3648), + [sym_empty_labeled_statement] = STATE(4547), + [sym_compile_time_for_statement] = STATE(3648), + [sym_for_statement] = STATE(3648), + [sym_hash_statement] = STATE(3648), + [sym_asm_statement] = STATE(3648), [sym_identifier] = ACTIONS(437), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), @@ -26647,91 +26663,91 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [50] = { [sym_line_comment] = STATE(50), [sym_block_comment] = STATE(50), - [sym__expression] = STATE(1609), - [sym__expression_without_blocks] = STATE(1692), - [sym__expression_with_blocks] = STATE(1692), - [sym_strictly_expression_list] = STATE(3584), - [sym_inc_expression] = STATE(1684), - [sym_dec_expression] = STATE(1684), - [sym_or_block_expression] = STATE(1684), - [sym_option_propagation_expression] = STATE(1684), - [sym_result_propagation_expression] = STATE(1684), - [sym_anon_struct_value_expression] = STATE(1677), - [sym_go_expression] = STATE(1684), - [sym_spawn_expression] = STATE(1684), - [sym_parenthesized_expression] = STATE(1684), - [sym_call_expression] = STATE(1684), - [sym_type_initializer] = STATE(1677), - [sym_function_literal] = STATE(1684), - [sym_reference_expression] = STATE(1674), - [sym_type_reference_expression] = STATE(3541), - [sym_unary_expression] = STATE(1684), - [sym_receive_expression] = STATE(1684), - [sym_binary_expression] = STATE(1684), - [sym_as_type_cast_expression] = STATE(1684), - [sym__max_group] = STATE(1684), - [sym_literal] = STATE(1698), - [sym_map_init_expression] = STATE(1677), - [sym_array_creation] = STATE(1684), - [sym_fixed_array_creation] = STATE(1684), - [sym_selector_expression] = STATE(1684), - [sym_index_expression] = STATE(1684), - [sym_slice_expression] = STATE(1684), - [sym_if_expression] = STATE(1677), - [sym_compile_time_if_expression] = STATE(1677), - [sym_is_expression] = STATE(1684), - [sym_in_expression] = STATE(1684), - [sym_enum_fetch] = STATE(1684), - [sym_match_expression] = STATE(1677), - [sym_select_expression] = STATE(1677), - [sym_lock_expression] = STATE(1677), - [sym_unsafe_expression] = STATE(1677), - [sym_sql_expression] = STATE(1677), - [sym_c_string_literal] = STATE(1705), - [sym_raw_string_literal] = STATE(1705), - [sym_interpreted_string_literal] = STATE(1705), - [sym_mutability_modifiers] = STATE(858), - [sym_mutable_expression] = STATE(3274), - [sym_expression_list] = STATE(3288), - [sym_plain_type] = STATE(4157), - [sym__plain_type_without_special] = STATE(2302), - [sym_anon_struct_type] = STATE(2303), - [sym_multi_return_type] = STATE(2302), - [sym_result_type] = STATE(2302), - [sym_option_type] = STATE(2302), - [sym_qualified_type] = STATE(3541), - [sym_fixed_array_type] = STATE(2303), - [sym_array_type] = STATE(2303), - [sym_pointer_type] = STATE(2303), - [sym_wrong_pointer_type] = STATE(2303), - [sym_map_type] = STATE(2303), - [sym_channel_type] = STATE(2303), - [sym_shared_type] = STATE(2303), - [sym_thread_type] = STATE(2303), - [sym_atomic_type] = STATE(2303), - [sym_generic_type] = STATE(2303), - [sym_function_type] = STATE(2303), - [sym__statement_list] = STATE(4556), - [sym__statement] = STATE(3549), - [sym_simple_statement] = STATE(3582), - [sym_assert_statement] = STATE(3582), - [sym_append_statement] = STATE(3582), - [sym_send_statement] = STATE(3582), - [sym_var_declaration] = STATE(3584), - [sym_assignment_statement] = STATE(3584), - [sym_block] = STATE(3582), - [sym_defer_statement] = STATE(3582), - [sym_goto_statement] = STATE(3582), - [sym_break_statement] = STATE(3582), - [sym_continue_statement] = STATE(3582), - [sym_return_statement] = STATE(3582), + [sym__expression] = STATE(1612), + [sym__expression_without_blocks] = STATE(1747), + [sym__expression_with_blocks] = STATE(1747), + [sym_strictly_expression_list] = STATE(3649), + [sym_inc_expression] = STATE(1749), + [sym_dec_expression] = STATE(1749), + [sym_or_block_expression] = STATE(1749), + [sym_option_propagation_expression] = STATE(1749), + [sym_result_propagation_expression] = STATE(1749), + [sym_anon_struct_value_expression] = STATE(1746), + [sym_go_expression] = STATE(1749), + [sym_spawn_expression] = STATE(1749), + [sym_parenthesized_expression] = STATE(1749), + [sym_call_expression] = STATE(1749), + [sym_type_initializer] = STATE(1746), + [sym_function_literal] = STATE(1749), + [sym_reference_expression] = STATE(1745), + [sym_type_reference_expression] = STATE(3460), + [sym_unary_expression] = STATE(1749), + [sym_receive_expression] = STATE(1749), + [sym_binary_expression] = STATE(1749), + [sym_as_type_cast_expression] = STATE(1749), + [sym__max_group] = STATE(1749), + [sym_literal] = STATE(1738), + [sym_map_init_expression] = STATE(1746), + [sym_array_creation] = STATE(1749), + [sym_fixed_array_creation] = STATE(1749), + [sym_selector_expression] = STATE(1749), + [sym_index_expression] = STATE(1749), + [sym_slice_expression] = STATE(1749), + [sym_if_expression] = STATE(1746), + [sym_compile_time_if_expression] = STATE(1746), + [sym_is_expression] = STATE(1749), + [sym_in_expression] = STATE(1749), + [sym_enum_fetch] = STATE(1749), + [sym_match_expression] = STATE(1746), + [sym_select_expression] = STATE(1746), + [sym_lock_expression] = STATE(1746), + [sym_unsafe_expression] = STATE(1746), + [sym_sql_expression] = STATE(1746), + [sym_c_string_literal] = STATE(1733), + [sym_raw_string_literal] = STATE(1733), + [sym_interpreted_string_literal] = STATE(1733), + [sym_mutability_modifiers] = STATE(843), + [sym_mutable_expression] = STATE(3278), + [sym_expression_list] = STATE(3323), + [sym_plain_type] = STATE(4121), + [sym__plain_type_without_special] = STATE(2360), + [sym_anon_struct_type] = STATE(2362), + [sym_multi_return_type] = STATE(2360), + [sym_result_type] = STATE(2360), + [sym_option_type] = STATE(2360), + [sym_qualified_type] = STATE(3460), + [sym_fixed_array_type] = STATE(2362), + [sym_array_type] = STATE(2362), + [sym_pointer_type] = STATE(2362), + [sym_wrong_pointer_type] = STATE(2362), + [sym_map_type] = STATE(2362), + [sym_channel_type] = STATE(2362), + [sym_shared_type] = STATE(2362), + [sym_thread_type] = STATE(2362), + [sym_atomic_type] = STATE(2362), + [sym_generic_type] = STATE(2362), + [sym_function_type] = STATE(2362), + [sym__statement_list] = STATE(4363), + [sym__statement] = STATE(3566), + [sym_simple_statement] = STATE(3648), + [sym_assert_statement] = STATE(3648), + [sym_append_statement] = STATE(3648), + [sym_send_statement] = STATE(3648), + [sym_var_declaration] = STATE(3649), + [sym_assignment_statement] = STATE(3649), + [sym_block] = STATE(3648), + [sym_defer_statement] = STATE(3648), + [sym_goto_statement] = STATE(3648), + [sym_break_statement] = STATE(3648), + [sym_continue_statement] = STATE(3648), + [sym_return_statement] = STATE(3648), [sym_label_definition] = STATE(62), - [sym_labeled_statement] = STATE(3582), - [sym_empty_labeled_statement] = STATE(4544), - [sym_compile_time_for_statement] = STATE(3582), - [sym_for_statement] = STATE(3582), - [sym_hash_statement] = STATE(3582), - [sym_asm_statement] = STATE(3582), + [sym_labeled_statement] = STATE(3648), + [sym_empty_labeled_statement] = STATE(4547), + [sym_compile_time_for_statement] = STATE(3648), + [sym_for_statement] = STATE(3648), + [sym_hash_statement] = STATE(3648), + [sym_asm_statement] = STATE(3648), [sym_identifier] = ACTIONS(437), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), @@ -26796,91 +26812,91 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [51] = { [sym_line_comment] = STATE(51), [sym_block_comment] = STATE(51), - [sym__expression] = STATE(1609), - [sym__expression_without_blocks] = STATE(1692), - [sym__expression_with_blocks] = STATE(1692), - [sym_strictly_expression_list] = STATE(3584), - [sym_inc_expression] = STATE(1684), - [sym_dec_expression] = STATE(1684), - [sym_or_block_expression] = STATE(1684), - [sym_option_propagation_expression] = STATE(1684), - [sym_result_propagation_expression] = STATE(1684), - [sym_anon_struct_value_expression] = STATE(1677), - [sym_go_expression] = STATE(1684), - [sym_spawn_expression] = STATE(1684), - [sym_parenthesized_expression] = STATE(1684), - [sym_call_expression] = STATE(1684), - [sym_type_initializer] = STATE(1677), - [sym_function_literal] = STATE(1684), - [sym_reference_expression] = STATE(1674), - [sym_type_reference_expression] = STATE(3541), - [sym_unary_expression] = STATE(1684), - [sym_receive_expression] = STATE(1684), - [sym_binary_expression] = STATE(1684), - [sym_as_type_cast_expression] = STATE(1684), - [sym__max_group] = STATE(1684), - [sym_literal] = STATE(1698), - [sym_map_init_expression] = STATE(1677), - [sym_array_creation] = STATE(1684), - [sym_fixed_array_creation] = STATE(1684), - [sym_selector_expression] = STATE(1684), - [sym_index_expression] = STATE(1684), - [sym_slice_expression] = STATE(1684), - [sym_if_expression] = STATE(1677), - [sym_compile_time_if_expression] = STATE(1677), - [sym_is_expression] = STATE(1684), - [sym_in_expression] = STATE(1684), - [sym_enum_fetch] = STATE(1684), - [sym_match_expression] = STATE(1677), - [sym_select_expression] = STATE(1677), - [sym_lock_expression] = STATE(1677), - [sym_unsafe_expression] = STATE(1677), - [sym_sql_expression] = STATE(1677), - [sym_c_string_literal] = STATE(1705), - [sym_raw_string_literal] = STATE(1705), - [sym_interpreted_string_literal] = STATE(1705), - [sym_mutability_modifiers] = STATE(858), - [sym_mutable_expression] = STATE(3274), - [sym_expression_list] = STATE(3288), - [sym_plain_type] = STATE(4157), - [sym__plain_type_without_special] = STATE(2302), - [sym_anon_struct_type] = STATE(2303), - [sym_multi_return_type] = STATE(2302), - [sym_result_type] = STATE(2302), - [sym_option_type] = STATE(2302), - [sym_qualified_type] = STATE(3541), - [sym_fixed_array_type] = STATE(2303), - [sym_array_type] = STATE(2303), - [sym_pointer_type] = STATE(2303), - [sym_wrong_pointer_type] = STATE(2303), - [sym_map_type] = STATE(2303), - [sym_channel_type] = STATE(2303), - [sym_shared_type] = STATE(2303), - [sym_thread_type] = STATE(2303), - [sym_atomic_type] = STATE(2303), - [sym_generic_type] = STATE(2303), - [sym_function_type] = STATE(2303), - [sym__statement_list] = STATE(4318), - [sym__statement] = STATE(3549), - [sym_simple_statement] = STATE(3582), - [sym_assert_statement] = STATE(3582), - [sym_append_statement] = STATE(3582), - [sym_send_statement] = STATE(3582), - [sym_var_declaration] = STATE(3584), - [sym_assignment_statement] = STATE(3584), - [sym_block] = STATE(3582), - [sym_defer_statement] = STATE(3582), - [sym_goto_statement] = STATE(3582), - [sym_break_statement] = STATE(3582), - [sym_continue_statement] = STATE(3582), - [sym_return_statement] = STATE(3582), + [sym__expression] = STATE(1612), + [sym__expression_without_blocks] = STATE(1747), + [sym__expression_with_blocks] = STATE(1747), + [sym_strictly_expression_list] = STATE(3649), + [sym_inc_expression] = STATE(1749), + [sym_dec_expression] = STATE(1749), + [sym_or_block_expression] = STATE(1749), + [sym_option_propagation_expression] = STATE(1749), + [sym_result_propagation_expression] = STATE(1749), + [sym_anon_struct_value_expression] = STATE(1746), + [sym_go_expression] = STATE(1749), + [sym_spawn_expression] = STATE(1749), + [sym_parenthesized_expression] = STATE(1749), + [sym_call_expression] = STATE(1749), + [sym_type_initializer] = STATE(1746), + [sym_function_literal] = STATE(1749), + [sym_reference_expression] = STATE(1745), + [sym_type_reference_expression] = STATE(3460), + [sym_unary_expression] = STATE(1749), + [sym_receive_expression] = STATE(1749), + [sym_binary_expression] = STATE(1749), + [sym_as_type_cast_expression] = STATE(1749), + [sym__max_group] = STATE(1749), + [sym_literal] = STATE(1738), + [sym_map_init_expression] = STATE(1746), + [sym_array_creation] = STATE(1749), + [sym_fixed_array_creation] = STATE(1749), + [sym_selector_expression] = STATE(1749), + [sym_index_expression] = STATE(1749), + [sym_slice_expression] = STATE(1749), + [sym_if_expression] = STATE(1746), + [sym_compile_time_if_expression] = STATE(1746), + [sym_is_expression] = STATE(1749), + [sym_in_expression] = STATE(1749), + [sym_enum_fetch] = STATE(1749), + [sym_match_expression] = STATE(1746), + [sym_select_expression] = STATE(1746), + [sym_lock_expression] = STATE(1746), + [sym_unsafe_expression] = STATE(1746), + [sym_sql_expression] = STATE(1746), + [sym_c_string_literal] = STATE(1733), + [sym_raw_string_literal] = STATE(1733), + [sym_interpreted_string_literal] = STATE(1733), + [sym_mutability_modifiers] = STATE(843), + [sym_mutable_expression] = STATE(3278), + [sym_expression_list] = STATE(3323), + [sym_plain_type] = STATE(4121), + [sym__plain_type_without_special] = STATE(2360), + [sym_anon_struct_type] = STATE(2362), + [sym_multi_return_type] = STATE(2360), + [sym_result_type] = STATE(2360), + [sym_option_type] = STATE(2360), + [sym_qualified_type] = STATE(3460), + [sym_fixed_array_type] = STATE(2362), + [sym_array_type] = STATE(2362), + [sym_pointer_type] = STATE(2362), + [sym_wrong_pointer_type] = STATE(2362), + [sym_map_type] = STATE(2362), + [sym_channel_type] = STATE(2362), + [sym_shared_type] = STATE(2362), + [sym_thread_type] = STATE(2362), + [sym_atomic_type] = STATE(2362), + [sym_generic_type] = STATE(2362), + [sym_function_type] = STATE(2362), + [sym__statement_list] = STATE(4402), + [sym__statement] = STATE(3566), + [sym_simple_statement] = STATE(3648), + [sym_assert_statement] = STATE(3648), + [sym_append_statement] = STATE(3648), + [sym_send_statement] = STATE(3648), + [sym_var_declaration] = STATE(3649), + [sym_assignment_statement] = STATE(3649), + [sym_block] = STATE(3648), + [sym_defer_statement] = STATE(3648), + [sym_goto_statement] = STATE(3648), + [sym_break_statement] = STATE(3648), + [sym_continue_statement] = STATE(3648), + [sym_return_statement] = STATE(3648), [sym_label_definition] = STATE(62), - [sym_labeled_statement] = STATE(3582), - [sym_empty_labeled_statement] = STATE(4544), - [sym_compile_time_for_statement] = STATE(3582), - [sym_for_statement] = STATE(3582), - [sym_hash_statement] = STATE(3582), - [sym_asm_statement] = STATE(3582), + [sym_labeled_statement] = STATE(3648), + [sym_empty_labeled_statement] = STATE(4547), + [sym_compile_time_for_statement] = STATE(3648), + [sym_for_statement] = STATE(3648), + [sym_hash_statement] = STATE(3648), + [sym_asm_statement] = STATE(3648), [sym_identifier] = ACTIONS(437), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), @@ -26945,91 +26961,91 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [52] = { [sym_line_comment] = STATE(52), [sym_block_comment] = STATE(52), - [sym__expression] = STATE(1609), - [sym__expression_without_blocks] = STATE(1692), - [sym__expression_with_blocks] = STATE(1692), - [sym_strictly_expression_list] = STATE(3584), - [sym_inc_expression] = STATE(1684), - [sym_dec_expression] = STATE(1684), - [sym_or_block_expression] = STATE(1684), - [sym_option_propagation_expression] = STATE(1684), - [sym_result_propagation_expression] = STATE(1684), - [sym_anon_struct_value_expression] = STATE(1677), - [sym_go_expression] = STATE(1684), - [sym_spawn_expression] = STATE(1684), - [sym_parenthesized_expression] = STATE(1684), - [sym_call_expression] = STATE(1684), - [sym_type_initializer] = STATE(1677), - [sym_function_literal] = STATE(1684), - [sym_reference_expression] = STATE(1674), - [sym_type_reference_expression] = STATE(3541), - [sym_unary_expression] = STATE(1684), - [sym_receive_expression] = STATE(1684), - [sym_binary_expression] = STATE(1684), - [sym_as_type_cast_expression] = STATE(1684), - [sym__max_group] = STATE(1684), - [sym_literal] = STATE(1698), - [sym_map_init_expression] = STATE(1677), - [sym_array_creation] = STATE(1684), - [sym_fixed_array_creation] = STATE(1684), - [sym_selector_expression] = STATE(1684), - [sym_index_expression] = STATE(1684), - [sym_slice_expression] = STATE(1684), - [sym_if_expression] = STATE(1677), - [sym_compile_time_if_expression] = STATE(1677), - [sym_is_expression] = STATE(1684), - [sym_in_expression] = STATE(1684), - [sym_enum_fetch] = STATE(1684), - [sym_match_expression] = STATE(1677), - [sym_select_expression] = STATE(1677), - [sym_lock_expression] = STATE(1677), - [sym_unsafe_expression] = STATE(1677), - [sym_sql_expression] = STATE(1677), - [sym_c_string_literal] = STATE(1705), - [sym_raw_string_literal] = STATE(1705), - [sym_interpreted_string_literal] = STATE(1705), - [sym_mutability_modifiers] = STATE(858), - [sym_mutable_expression] = STATE(3274), - [sym_expression_list] = STATE(3288), - [sym_plain_type] = STATE(4157), - [sym__plain_type_without_special] = STATE(2302), - [sym_anon_struct_type] = STATE(2303), - [sym_multi_return_type] = STATE(2302), - [sym_result_type] = STATE(2302), - [sym_option_type] = STATE(2302), - [sym_qualified_type] = STATE(3541), - [sym_fixed_array_type] = STATE(2303), - [sym_array_type] = STATE(2303), - [sym_pointer_type] = STATE(2303), - [sym_wrong_pointer_type] = STATE(2303), - [sym_map_type] = STATE(2303), - [sym_channel_type] = STATE(2303), - [sym_shared_type] = STATE(2303), - [sym_thread_type] = STATE(2303), - [sym_atomic_type] = STATE(2303), - [sym_generic_type] = STATE(2303), - [sym_function_type] = STATE(2303), - [sym__statement_list] = STATE(4340), - [sym__statement] = STATE(3549), - [sym_simple_statement] = STATE(3582), - [sym_assert_statement] = STATE(3582), - [sym_append_statement] = STATE(3582), - [sym_send_statement] = STATE(3582), - [sym_var_declaration] = STATE(3584), - [sym_assignment_statement] = STATE(3584), - [sym_block] = STATE(3582), - [sym_defer_statement] = STATE(3582), - [sym_goto_statement] = STATE(3582), - [sym_break_statement] = STATE(3582), - [sym_continue_statement] = STATE(3582), - [sym_return_statement] = STATE(3582), + [sym__expression] = STATE(1612), + [sym__expression_without_blocks] = STATE(1747), + [sym__expression_with_blocks] = STATE(1747), + [sym_strictly_expression_list] = STATE(3649), + [sym_inc_expression] = STATE(1749), + [sym_dec_expression] = STATE(1749), + [sym_or_block_expression] = STATE(1749), + [sym_option_propagation_expression] = STATE(1749), + [sym_result_propagation_expression] = STATE(1749), + [sym_anon_struct_value_expression] = STATE(1746), + [sym_go_expression] = STATE(1749), + [sym_spawn_expression] = STATE(1749), + [sym_parenthesized_expression] = STATE(1749), + [sym_call_expression] = STATE(1749), + [sym_type_initializer] = STATE(1746), + [sym_function_literal] = STATE(1749), + [sym_reference_expression] = STATE(1745), + [sym_type_reference_expression] = STATE(3460), + [sym_unary_expression] = STATE(1749), + [sym_receive_expression] = STATE(1749), + [sym_binary_expression] = STATE(1749), + [sym_as_type_cast_expression] = STATE(1749), + [sym__max_group] = STATE(1749), + [sym_literal] = STATE(1738), + [sym_map_init_expression] = STATE(1746), + [sym_array_creation] = STATE(1749), + [sym_fixed_array_creation] = STATE(1749), + [sym_selector_expression] = STATE(1749), + [sym_index_expression] = STATE(1749), + [sym_slice_expression] = STATE(1749), + [sym_if_expression] = STATE(1746), + [sym_compile_time_if_expression] = STATE(1746), + [sym_is_expression] = STATE(1749), + [sym_in_expression] = STATE(1749), + [sym_enum_fetch] = STATE(1749), + [sym_match_expression] = STATE(1746), + [sym_select_expression] = STATE(1746), + [sym_lock_expression] = STATE(1746), + [sym_unsafe_expression] = STATE(1746), + [sym_sql_expression] = STATE(1746), + [sym_c_string_literal] = STATE(1733), + [sym_raw_string_literal] = STATE(1733), + [sym_interpreted_string_literal] = STATE(1733), + [sym_mutability_modifiers] = STATE(843), + [sym_mutable_expression] = STATE(3278), + [sym_expression_list] = STATE(3323), + [sym_plain_type] = STATE(4121), + [sym__plain_type_without_special] = STATE(2360), + [sym_anon_struct_type] = STATE(2362), + [sym_multi_return_type] = STATE(2360), + [sym_result_type] = STATE(2360), + [sym_option_type] = STATE(2360), + [sym_qualified_type] = STATE(3460), + [sym_fixed_array_type] = STATE(2362), + [sym_array_type] = STATE(2362), + [sym_pointer_type] = STATE(2362), + [sym_wrong_pointer_type] = STATE(2362), + [sym_map_type] = STATE(2362), + [sym_channel_type] = STATE(2362), + [sym_shared_type] = STATE(2362), + [sym_thread_type] = STATE(2362), + [sym_atomic_type] = STATE(2362), + [sym_generic_type] = STATE(2362), + [sym_function_type] = STATE(2362), + [sym__statement_list] = STATE(4634), + [sym__statement] = STATE(3566), + [sym_simple_statement] = STATE(3648), + [sym_assert_statement] = STATE(3648), + [sym_append_statement] = STATE(3648), + [sym_send_statement] = STATE(3648), + [sym_var_declaration] = STATE(3649), + [sym_assignment_statement] = STATE(3649), + [sym_block] = STATE(3648), + [sym_defer_statement] = STATE(3648), + [sym_goto_statement] = STATE(3648), + [sym_break_statement] = STATE(3648), + [sym_continue_statement] = STATE(3648), + [sym_return_statement] = STATE(3648), [sym_label_definition] = STATE(62), - [sym_labeled_statement] = STATE(3582), - [sym_empty_labeled_statement] = STATE(4544), - [sym_compile_time_for_statement] = STATE(3582), - [sym_for_statement] = STATE(3582), - [sym_hash_statement] = STATE(3582), - [sym_asm_statement] = STATE(3582), + [sym_labeled_statement] = STATE(3648), + [sym_empty_labeled_statement] = STATE(4547), + [sym_compile_time_for_statement] = STATE(3648), + [sym_for_statement] = STATE(3648), + [sym_hash_statement] = STATE(3648), + [sym_asm_statement] = STATE(3648), [sym_identifier] = ACTIONS(437), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), @@ -27094,91 +27110,91 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [53] = { [sym_line_comment] = STATE(53), [sym_block_comment] = STATE(53), - [sym__expression] = STATE(1609), - [sym__expression_without_blocks] = STATE(1692), - [sym__expression_with_blocks] = STATE(1692), - [sym_strictly_expression_list] = STATE(3584), - [sym_inc_expression] = STATE(1684), - [sym_dec_expression] = STATE(1684), - [sym_or_block_expression] = STATE(1684), - [sym_option_propagation_expression] = STATE(1684), - [sym_result_propagation_expression] = STATE(1684), - [sym_anon_struct_value_expression] = STATE(1677), - [sym_go_expression] = STATE(1684), - [sym_spawn_expression] = STATE(1684), - [sym_parenthesized_expression] = STATE(1684), - [sym_call_expression] = STATE(1684), - [sym_type_initializer] = STATE(1677), - [sym_function_literal] = STATE(1684), - [sym_reference_expression] = STATE(1674), - [sym_type_reference_expression] = STATE(3541), - [sym_unary_expression] = STATE(1684), - [sym_receive_expression] = STATE(1684), - [sym_binary_expression] = STATE(1684), - [sym_as_type_cast_expression] = STATE(1684), - [sym__max_group] = STATE(1684), - [sym_literal] = STATE(1698), - [sym_map_init_expression] = STATE(1677), - [sym_array_creation] = STATE(1684), - [sym_fixed_array_creation] = STATE(1684), - [sym_selector_expression] = STATE(1684), - [sym_index_expression] = STATE(1684), - [sym_slice_expression] = STATE(1684), - [sym_if_expression] = STATE(1677), - [sym_compile_time_if_expression] = STATE(1677), - [sym_is_expression] = STATE(1684), - [sym_in_expression] = STATE(1684), - [sym_enum_fetch] = STATE(1684), - [sym_match_expression] = STATE(1677), - [sym_select_expression] = STATE(1677), - [sym_lock_expression] = STATE(1677), - [sym_unsafe_expression] = STATE(1677), - [sym_sql_expression] = STATE(1677), - [sym_c_string_literal] = STATE(1705), - [sym_raw_string_literal] = STATE(1705), - [sym_interpreted_string_literal] = STATE(1705), - [sym_mutability_modifiers] = STATE(858), - [sym_mutable_expression] = STATE(3274), - [sym_expression_list] = STATE(3288), - [sym_plain_type] = STATE(4157), - [sym__plain_type_without_special] = STATE(2302), - [sym_anon_struct_type] = STATE(2303), - [sym_multi_return_type] = STATE(2302), - [sym_result_type] = STATE(2302), - [sym_option_type] = STATE(2302), - [sym_qualified_type] = STATE(3541), - [sym_fixed_array_type] = STATE(2303), - [sym_array_type] = STATE(2303), - [sym_pointer_type] = STATE(2303), - [sym_wrong_pointer_type] = STATE(2303), - [sym_map_type] = STATE(2303), - [sym_channel_type] = STATE(2303), - [sym_shared_type] = STATE(2303), - [sym_thread_type] = STATE(2303), - [sym_atomic_type] = STATE(2303), - [sym_generic_type] = STATE(2303), - [sym_function_type] = STATE(2303), - [sym__statement_list] = STATE(4501), - [sym__statement] = STATE(3549), - [sym_simple_statement] = STATE(3582), - [sym_assert_statement] = STATE(3582), - [sym_append_statement] = STATE(3582), - [sym_send_statement] = STATE(3582), - [sym_var_declaration] = STATE(3584), - [sym_assignment_statement] = STATE(3584), - [sym_block] = STATE(3582), - [sym_defer_statement] = STATE(3582), - [sym_goto_statement] = STATE(3582), - [sym_break_statement] = STATE(3582), - [sym_continue_statement] = STATE(3582), - [sym_return_statement] = STATE(3582), + [sym__expression] = STATE(1612), + [sym__expression_without_blocks] = STATE(1747), + [sym__expression_with_blocks] = STATE(1747), + [sym_strictly_expression_list] = STATE(3649), + [sym_inc_expression] = STATE(1749), + [sym_dec_expression] = STATE(1749), + [sym_or_block_expression] = STATE(1749), + [sym_option_propagation_expression] = STATE(1749), + [sym_result_propagation_expression] = STATE(1749), + [sym_anon_struct_value_expression] = STATE(1746), + [sym_go_expression] = STATE(1749), + [sym_spawn_expression] = STATE(1749), + [sym_parenthesized_expression] = STATE(1749), + [sym_call_expression] = STATE(1749), + [sym_type_initializer] = STATE(1746), + [sym_function_literal] = STATE(1749), + [sym_reference_expression] = STATE(1745), + [sym_type_reference_expression] = STATE(3460), + [sym_unary_expression] = STATE(1749), + [sym_receive_expression] = STATE(1749), + [sym_binary_expression] = STATE(1749), + [sym_as_type_cast_expression] = STATE(1749), + [sym__max_group] = STATE(1749), + [sym_literal] = STATE(1738), + [sym_map_init_expression] = STATE(1746), + [sym_array_creation] = STATE(1749), + [sym_fixed_array_creation] = STATE(1749), + [sym_selector_expression] = STATE(1749), + [sym_index_expression] = STATE(1749), + [sym_slice_expression] = STATE(1749), + [sym_if_expression] = STATE(1746), + [sym_compile_time_if_expression] = STATE(1746), + [sym_is_expression] = STATE(1749), + [sym_in_expression] = STATE(1749), + [sym_enum_fetch] = STATE(1749), + [sym_match_expression] = STATE(1746), + [sym_select_expression] = STATE(1746), + [sym_lock_expression] = STATE(1746), + [sym_unsafe_expression] = STATE(1746), + [sym_sql_expression] = STATE(1746), + [sym_c_string_literal] = STATE(1733), + [sym_raw_string_literal] = STATE(1733), + [sym_interpreted_string_literal] = STATE(1733), + [sym_mutability_modifiers] = STATE(843), + [sym_mutable_expression] = STATE(3278), + [sym_expression_list] = STATE(3323), + [sym_plain_type] = STATE(4121), + [sym__plain_type_without_special] = STATE(2360), + [sym_anon_struct_type] = STATE(2362), + [sym_multi_return_type] = STATE(2360), + [sym_result_type] = STATE(2360), + [sym_option_type] = STATE(2360), + [sym_qualified_type] = STATE(3460), + [sym_fixed_array_type] = STATE(2362), + [sym_array_type] = STATE(2362), + [sym_pointer_type] = STATE(2362), + [sym_wrong_pointer_type] = STATE(2362), + [sym_map_type] = STATE(2362), + [sym_channel_type] = STATE(2362), + [sym_shared_type] = STATE(2362), + [sym_thread_type] = STATE(2362), + [sym_atomic_type] = STATE(2362), + [sym_generic_type] = STATE(2362), + [sym_function_type] = STATE(2362), + [sym__statement_list] = STATE(4384), + [sym__statement] = STATE(3566), + [sym_simple_statement] = STATE(3648), + [sym_assert_statement] = STATE(3648), + [sym_append_statement] = STATE(3648), + [sym_send_statement] = STATE(3648), + [sym_var_declaration] = STATE(3649), + [sym_assignment_statement] = STATE(3649), + [sym_block] = STATE(3648), + [sym_defer_statement] = STATE(3648), + [sym_goto_statement] = STATE(3648), + [sym_break_statement] = STATE(3648), + [sym_continue_statement] = STATE(3648), + [sym_return_statement] = STATE(3648), [sym_label_definition] = STATE(62), - [sym_labeled_statement] = STATE(3582), - [sym_empty_labeled_statement] = STATE(4544), - [sym_compile_time_for_statement] = STATE(3582), - [sym_for_statement] = STATE(3582), - [sym_hash_statement] = STATE(3582), - [sym_asm_statement] = STATE(3582), + [sym_labeled_statement] = STATE(3648), + [sym_empty_labeled_statement] = STATE(4547), + [sym_compile_time_for_statement] = STATE(3648), + [sym_for_statement] = STATE(3648), + [sym_hash_statement] = STATE(3648), + [sym_asm_statement] = STATE(3648), [sym_identifier] = ACTIONS(437), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), @@ -27243,91 +27259,91 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [54] = { [sym_line_comment] = STATE(54), [sym_block_comment] = STATE(54), - [sym__expression] = STATE(1609), - [sym__expression_without_blocks] = STATE(1692), - [sym__expression_with_blocks] = STATE(1692), - [sym_strictly_expression_list] = STATE(3584), - [sym_inc_expression] = STATE(1684), - [sym_dec_expression] = STATE(1684), - [sym_or_block_expression] = STATE(1684), - [sym_option_propagation_expression] = STATE(1684), - [sym_result_propagation_expression] = STATE(1684), - [sym_anon_struct_value_expression] = STATE(1677), - [sym_go_expression] = STATE(1684), - [sym_spawn_expression] = STATE(1684), - [sym_parenthesized_expression] = STATE(1684), - [sym_call_expression] = STATE(1684), - [sym_type_initializer] = STATE(1677), - [sym_function_literal] = STATE(1684), - [sym_reference_expression] = STATE(1674), - [sym_type_reference_expression] = STATE(3541), - [sym_unary_expression] = STATE(1684), - [sym_receive_expression] = STATE(1684), - [sym_binary_expression] = STATE(1684), - [sym_as_type_cast_expression] = STATE(1684), - [sym__max_group] = STATE(1684), - [sym_literal] = STATE(1698), - [sym_map_init_expression] = STATE(1677), - [sym_array_creation] = STATE(1684), - [sym_fixed_array_creation] = STATE(1684), - [sym_selector_expression] = STATE(1684), - [sym_index_expression] = STATE(1684), - [sym_slice_expression] = STATE(1684), - [sym_if_expression] = STATE(1677), - [sym_compile_time_if_expression] = STATE(1677), - [sym_is_expression] = STATE(1684), - [sym_in_expression] = STATE(1684), - [sym_enum_fetch] = STATE(1684), - [sym_match_expression] = STATE(1677), - [sym_select_expression] = STATE(1677), - [sym_lock_expression] = STATE(1677), - [sym_unsafe_expression] = STATE(1677), - [sym_sql_expression] = STATE(1677), - [sym_c_string_literal] = STATE(1705), - [sym_raw_string_literal] = STATE(1705), - [sym_interpreted_string_literal] = STATE(1705), - [sym_mutability_modifiers] = STATE(858), - [sym_mutable_expression] = STATE(3274), - [sym_expression_list] = STATE(3288), - [sym_plain_type] = STATE(4157), - [sym__plain_type_without_special] = STATE(2302), - [sym_anon_struct_type] = STATE(2303), - [sym_multi_return_type] = STATE(2302), - [sym_result_type] = STATE(2302), - [sym_option_type] = STATE(2302), - [sym_qualified_type] = STATE(3541), - [sym_fixed_array_type] = STATE(2303), - [sym_array_type] = STATE(2303), - [sym_pointer_type] = STATE(2303), - [sym_wrong_pointer_type] = STATE(2303), - [sym_map_type] = STATE(2303), - [sym_channel_type] = STATE(2303), - [sym_shared_type] = STATE(2303), - [sym_thread_type] = STATE(2303), - [sym_atomic_type] = STATE(2303), - [sym_generic_type] = STATE(2303), - [sym_function_type] = STATE(2303), - [sym__statement_list] = STATE(4415), - [sym__statement] = STATE(3549), - [sym_simple_statement] = STATE(3582), - [sym_assert_statement] = STATE(3582), - [sym_append_statement] = STATE(3582), - [sym_send_statement] = STATE(3582), - [sym_var_declaration] = STATE(3584), - [sym_assignment_statement] = STATE(3584), - [sym_block] = STATE(3582), - [sym_defer_statement] = STATE(3582), - [sym_goto_statement] = STATE(3582), - [sym_break_statement] = STATE(3582), - [sym_continue_statement] = STATE(3582), - [sym_return_statement] = STATE(3582), + [sym__expression] = STATE(1612), + [sym__expression_without_blocks] = STATE(1747), + [sym__expression_with_blocks] = STATE(1747), + [sym_strictly_expression_list] = STATE(3649), + [sym_inc_expression] = STATE(1749), + [sym_dec_expression] = STATE(1749), + [sym_or_block_expression] = STATE(1749), + [sym_option_propagation_expression] = STATE(1749), + [sym_result_propagation_expression] = STATE(1749), + [sym_anon_struct_value_expression] = STATE(1746), + [sym_go_expression] = STATE(1749), + [sym_spawn_expression] = STATE(1749), + [sym_parenthesized_expression] = STATE(1749), + [sym_call_expression] = STATE(1749), + [sym_type_initializer] = STATE(1746), + [sym_function_literal] = STATE(1749), + [sym_reference_expression] = STATE(1745), + [sym_type_reference_expression] = STATE(3460), + [sym_unary_expression] = STATE(1749), + [sym_receive_expression] = STATE(1749), + [sym_binary_expression] = STATE(1749), + [sym_as_type_cast_expression] = STATE(1749), + [sym__max_group] = STATE(1749), + [sym_literal] = STATE(1738), + [sym_map_init_expression] = STATE(1746), + [sym_array_creation] = STATE(1749), + [sym_fixed_array_creation] = STATE(1749), + [sym_selector_expression] = STATE(1749), + [sym_index_expression] = STATE(1749), + [sym_slice_expression] = STATE(1749), + [sym_if_expression] = STATE(1746), + [sym_compile_time_if_expression] = STATE(1746), + [sym_is_expression] = STATE(1749), + [sym_in_expression] = STATE(1749), + [sym_enum_fetch] = STATE(1749), + [sym_match_expression] = STATE(1746), + [sym_select_expression] = STATE(1746), + [sym_lock_expression] = STATE(1746), + [sym_unsafe_expression] = STATE(1746), + [sym_sql_expression] = STATE(1746), + [sym_c_string_literal] = STATE(1733), + [sym_raw_string_literal] = STATE(1733), + [sym_interpreted_string_literal] = STATE(1733), + [sym_mutability_modifiers] = STATE(843), + [sym_mutable_expression] = STATE(3278), + [sym_expression_list] = STATE(3323), + [sym_plain_type] = STATE(4121), + [sym__plain_type_without_special] = STATE(2360), + [sym_anon_struct_type] = STATE(2362), + [sym_multi_return_type] = STATE(2360), + [sym_result_type] = STATE(2360), + [sym_option_type] = STATE(2360), + [sym_qualified_type] = STATE(3460), + [sym_fixed_array_type] = STATE(2362), + [sym_array_type] = STATE(2362), + [sym_pointer_type] = STATE(2362), + [sym_wrong_pointer_type] = STATE(2362), + [sym_map_type] = STATE(2362), + [sym_channel_type] = STATE(2362), + [sym_shared_type] = STATE(2362), + [sym_thread_type] = STATE(2362), + [sym_atomic_type] = STATE(2362), + [sym_generic_type] = STATE(2362), + [sym_function_type] = STATE(2362), + [sym__statement_list] = STATE(4549), + [sym__statement] = STATE(3566), + [sym_simple_statement] = STATE(3648), + [sym_assert_statement] = STATE(3648), + [sym_append_statement] = STATE(3648), + [sym_send_statement] = STATE(3648), + [sym_var_declaration] = STATE(3649), + [sym_assignment_statement] = STATE(3649), + [sym_block] = STATE(3648), + [sym_defer_statement] = STATE(3648), + [sym_goto_statement] = STATE(3648), + [sym_break_statement] = STATE(3648), + [sym_continue_statement] = STATE(3648), + [sym_return_statement] = STATE(3648), [sym_label_definition] = STATE(62), - [sym_labeled_statement] = STATE(3582), - [sym_empty_labeled_statement] = STATE(4544), - [sym_compile_time_for_statement] = STATE(3582), - [sym_for_statement] = STATE(3582), - [sym_hash_statement] = STATE(3582), - [sym_asm_statement] = STATE(3582), + [sym_labeled_statement] = STATE(3648), + [sym_empty_labeled_statement] = STATE(4547), + [sym_compile_time_for_statement] = STATE(3648), + [sym_for_statement] = STATE(3648), + [sym_hash_statement] = STATE(3648), + [sym_asm_statement] = STATE(3648), [sym_identifier] = ACTIONS(437), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), @@ -27392,91 +27408,91 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [55] = { [sym_line_comment] = STATE(55), [sym_block_comment] = STATE(55), - [sym__expression] = STATE(1609), - [sym__expression_without_blocks] = STATE(1692), - [sym__expression_with_blocks] = STATE(1692), - [sym_strictly_expression_list] = STATE(3584), - [sym_inc_expression] = STATE(1684), - [sym_dec_expression] = STATE(1684), - [sym_or_block_expression] = STATE(1684), - [sym_option_propagation_expression] = STATE(1684), - [sym_result_propagation_expression] = STATE(1684), - [sym_anon_struct_value_expression] = STATE(1677), - [sym_go_expression] = STATE(1684), - [sym_spawn_expression] = STATE(1684), - [sym_parenthesized_expression] = STATE(1684), - [sym_call_expression] = STATE(1684), - [sym_type_initializer] = STATE(1677), - [sym_function_literal] = STATE(1684), - [sym_reference_expression] = STATE(1674), - [sym_type_reference_expression] = STATE(3541), - [sym_unary_expression] = STATE(1684), - [sym_receive_expression] = STATE(1684), - [sym_binary_expression] = STATE(1684), - [sym_as_type_cast_expression] = STATE(1684), - [sym__max_group] = STATE(1684), - [sym_literal] = STATE(1698), - [sym_map_init_expression] = STATE(1677), - [sym_array_creation] = STATE(1684), - [sym_fixed_array_creation] = STATE(1684), - [sym_selector_expression] = STATE(1684), - [sym_index_expression] = STATE(1684), - [sym_slice_expression] = STATE(1684), - [sym_if_expression] = STATE(1677), - [sym_compile_time_if_expression] = STATE(1677), - [sym_is_expression] = STATE(1684), - [sym_in_expression] = STATE(1684), - [sym_enum_fetch] = STATE(1684), - [sym_match_expression] = STATE(1677), - [sym_select_expression] = STATE(1677), - [sym_lock_expression] = STATE(1677), - [sym_unsafe_expression] = STATE(1677), - [sym_sql_expression] = STATE(1677), - [sym_c_string_literal] = STATE(1705), - [sym_raw_string_literal] = STATE(1705), - [sym_interpreted_string_literal] = STATE(1705), - [sym_mutability_modifiers] = STATE(858), - [sym_mutable_expression] = STATE(3274), - [sym_expression_list] = STATE(3288), - [sym_plain_type] = STATE(4157), - [sym__plain_type_without_special] = STATE(2302), - [sym_anon_struct_type] = STATE(2303), - [sym_multi_return_type] = STATE(2302), - [sym_result_type] = STATE(2302), - [sym_option_type] = STATE(2302), - [sym_qualified_type] = STATE(3541), - [sym_fixed_array_type] = STATE(2303), - [sym_array_type] = STATE(2303), - [sym_pointer_type] = STATE(2303), - [sym_wrong_pointer_type] = STATE(2303), - [sym_map_type] = STATE(2303), - [sym_channel_type] = STATE(2303), - [sym_shared_type] = STATE(2303), - [sym_thread_type] = STATE(2303), - [sym_atomic_type] = STATE(2303), - [sym_generic_type] = STATE(2303), - [sym_function_type] = STATE(2303), - [sym__statement_list] = STATE(4565), - [sym__statement] = STATE(3549), - [sym_simple_statement] = STATE(3582), - [sym_assert_statement] = STATE(3582), - [sym_append_statement] = STATE(3582), - [sym_send_statement] = STATE(3582), - [sym_var_declaration] = STATE(3584), - [sym_assignment_statement] = STATE(3584), - [sym_block] = STATE(3582), - [sym_defer_statement] = STATE(3582), - [sym_goto_statement] = STATE(3582), - [sym_break_statement] = STATE(3582), - [sym_continue_statement] = STATE(3582), - [sym_return_statement] = STATE(3582), + [sym__expression] = STATE(1612), + [sym__expression_without_blocks] = STATE(1747), + [sym__expression_with_blocks] = STATE(1747), + [sym_strictly_expression_list] = STATE(3649), + [sym_inc_expression] = STATE(1749), + [sym_dec_expression] = STATE(1749), + [sym_or_block_expression] = STATE(1749), + [sym_option_propagation_expression] = STATE(1749), + [sym_result_propagation_expression] = STATE(1749), + [sym_anon_struct_value_expression] = STATE(1746), + [sym_go_expression] = STATE(1749), + [sym_spawn_expression] = STATE(1749), + [sym_parenthesized_expression] = STATE(1749), + [sym_call_expression] = STATE(1749), + [sym_type_initializer] = STATE(1746), + [sym_function_literal] = STATE(1749), + [sym_reference_expression] = STATE(1745), + [sym_type_reference_expression] = STATE(3460), + [sym_unary_expression] = STATE(1749), + [sym_receive_expression] = STATE(1749), + [sym_binary_expression] = STATE(1749), + [sym_as_type_cast_expression] = STATE(1749), + [sym__max_group] = STATE(1749), + [sym_literal] = STATE(1738), + [sym_map_init_expression] = STATE(1746), + [sym_array_creation] = STATE(1749), + [sym_fixed_array_creation] = STATE(1749), + [sym_selector_expression] = STATE(1749), + [sym_index_expression] = STATE(1749), + [sym_slice_expression] = STATE(1749), + [sym_if_expression] = STATE(1746), + [sym_compile_time_if_expression] = STATE(1746), + [sym_is_expression] = STATE(1749), + [sym_in_expression] = STATE(1749), + [sym_enum_fetch] = STATE(1749), + [sym_match_expression] = STATE(1746), + [sym_select_expression] = STATE(1746), + [sym_lock_expression] = STATE(1746), + [sym_unsafe_expression] = STATE(1746), + [sym_sql_expression] = STATE(1746), + [sym_c_string_literal] = STATE(1733), + [sym_raw_string_literal] = STATE(1733), + [sym_interpreted_string_literal] = STATE(1733), + [sym_mutability_modifiers] = STATE(843), + [sym_mutable_expression] = STATE(3278), + [sym_expression_list] = STATE(3323), + [sym_plain_type] = STATE(4121), + [sym__plain_type_without_special] = STATE(2360), + [sym_anon_struct_type] = STATE(2362), + [sym_multi_return_type] = STATE(2360), + [sym_result_type] = STATE(2360), + [sym_option_type] = STATE(2360), + [sym_qualified_type] = STATE(3460), + [sym_fixed_array_type] = STATE(2362), + [sym_array_type] = STATE(2362), + [sym_pointer_type] = STATE(2362), + [sym_wrong_pointer_type] = STATE(2362), + [sym_map_type] = STATE(2362), + [sym_channel_type] = STATE(2362), + [sym_shared_type] = STATE(2362), + [sym_thread_type] = STATE(2362), + [sym_atomic_type] = STATE(2362), + [sym_generic_type] = STATE(2362), + [sym_function_type] = STATE(2362), + [sym__statement_list] = STATE(4597), + [sym__statement] = STATE(3566), + [sym_simple_statement] = STATE(3648), + [sym_assert_statement] = STATE(3648), + [sym_append_statement] = STATE(3648), + [sym_send_statement] = STATE(3648), + [sym_var_declaration] = STATE(3649), + [sym_assignment_statement] = STATE(3649), + [sym_block] = STATE(3648), + [sym_defer_statement] = STATE(3648), + [sym_goto_statement] = STATE(3648), + [sym_break_statement] = STATE(3648), + [sym_continue_statement] = STATE(3648), + [sym_return_statement] = STATE(3648), [sym_label_definition] = STATE(62), - [sym_labeled_statement] = STATE(3582), - [sym_empty_labeled_statement] = STATE(4544), - [sym_compile_time_for_statement] = STATE(3582), - [sym_for_statement] = STATE(3582), - [sym_hash_statement] = STATE(3582), - [sym_asm_statement] = STATE(3582), + [sym_labeled_statement] = STATE(3648), + [sym_empty_labeled_statement] = STATE(4547), + [sym_compile_time_for_statement] = STATE(3648), + [sym_for_statement] = STATE(3648), + [sym_hash_statement] = STATE(3648), + [sym_asm_statement] = STATE(3648), [sym_identifier] = ACTIONS(437), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), @@ -27541,91 +27557,91 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [56] = { [sym_line_comment] = STATE(56), [sym_block_comment] = STATE(56), - [sym__expression] = STATE(1609), - [sym__expression_without_blocks] = STATE(1692), - [sym__expression_with_blocks] = STATE(1692), - [sym_strictly_expression_list] = STATE(3584), - [sym_inc_expression] = STATE(1684), - [sym_dec_expression] = STATE(1684), - [sym_or_block_expression] = STATE(1684), - [sym_option_propagation_expression] = STATE(1684), - [sym_result_propagation_expression] = STATE(1684), - [sym_anon_struct_value_expression] = STATE(1677), - [sym_go_expression] = STATE(1684), - [sym_spawn_expression] = STATE(1684), - [sym_parenthesized_expression] = STATE(1684), - [sym_call_expression] = STATE(1684), - [sym_type_initializer] = STATE(1677), - [sym_function_literal] = STATE(1684), - [sym_reference_expression] = STATE(1674), - [sym_type_reference_expression] = STATE(3541), - [sym_unary_expression] = STATE(1684), - [sym_receive_expression] = STATE(1684), - [sym_binary_expression] = STATE(1684), - [sym_as_type_cast_expression] = STATE(1684), - [sym__max_group] = STATE(1684), - [sym_literal] = STATE(1698), - [sym_map_init_expression] = STATE(1677), - [sym_array_creation] = STATE(1684), - [sym_fixed_array_creation] = STATE(1684), - [sym_selector_expression] = STATE(1684), - [sym_index_expression] = STATE(1684), - [sym_slice_expression] = STATE(1684), - [sym_if_expression] = STATE(1677), - [sym_compile_time_if_expression] = STATE(1677), - [sym_is_expression] = STATE(1684), - [sym_in_expression] = STATE(1684), - [sym_enum_fetch] = STATE(1684), - [sym_match_expression] = STATE(1677), - [sym_select_expression] = STATE(1677), - [sym_lock_expression] = STATE(1677), - [sym_unsafe_expression] = STATE(1677), - [sym_sql_expression] = STATE(1677), - [sym_c_string_literal] = STATE(1705), - [sym_raw_string_literal] = STATE(1705), - [sym_interpreted_string_literal] = STATE(1705), - [sym_mutability_modifiers] = STATE(858), - [sym_mutable_expression] = STATE(3274), - [sym_expression_list] = STATE(3288), - [sym_plain_type] = STATE(4157), - [sym__plain_type_without_special] = STATE(2302), - [sym_anon_struct_type] = STATE(2303), - [sym_multi_return_type] = STATE(2302), - [sym_result_type] = STATE(2302), - [sym_option_type] = STATE(2302), - [sym_qualified_type] = STATE(3541), - [sym_fixed_array_type] = STATE(2303), - [sym_array_type] = STATE(2303), - [sym_pointer_type] = STATE(2303), - [sym_wrong_pointer_type] = STATE(2303), - [sym_map_type] = STATE(2303), - [sym_channel_type] = STATE(2303), - [sym_shared_type] = STATE(2303), - [sym_thread_type] = STATE(2303), - [sym_atomic_type] = STATE(2303), - [sym_generic_type] = STATE(2303), - [sym_function_type] = STATE(2303), - [sym__statement_list] = STATE(4390), - [sym__statement] = STATE(3549), - [sym_simple_statement] = STATE(3582), - [sym_assert_statement] = STATE(3582), - [sym_append_statement] = STATE(3582), - [sym_send_statement] = STATE(3582), - [sym_var_declaration] = STATE(3584), - [sym_assignment_statement] = STATE(3584), - [sym_block] = STATE(3582), - [sym_defer_statement] = STATE(3582), - [sym_goto_statement] = STATE(3582), - [sym_break_statement] = STATE(3582), - [sym_continue_statement] = STATE(3582), - [sym_return_statement] = STATE(3582), + [sym__expression] = STATE(1612), + [sym__expression_without_blocks] = STATE(1747), + [sym__expression_with_blocks] = STATE(1747), + [sym_strictly_expression_list] = STATE(3649), + [sym_inc_expression] = STATE(1749), + [sym_dec_expression] = STATE(1749), + [sym_or_block_expression] = STATE(1749), + [sym_option_propagation_expression] = STATE(1749), + [sym_result_propagation_expression] = STATE(1749), + [sym_anon_struct_value_expression] = STATE(1746), + [sym_go_expression] = STATE(1749), + [sym_spawn_expression] = STATE(1749), + [sym_parenthesized_expression] = STATE(1749), + [sym_call_expression] = STATE(1749), + [sym_type_initializer] = STATE(1746), + [sym_function_literal] = STATE(1749), + [sym_reference_expression] = STATE(1745), + [sym_type_reference_expression] = STATE(3460), + [sym_unary_expression] = STATE(1749), + [sym_receive_expression] = STATE(1749), + [sym_binary_expression] = STATE(1749), + [sym_as_type_cast_expression] = STATE(1749), + [sym__max_group] = STATE(1749), + [sym_literal] = STATE(1738), + [sym_map_init_expression] = STATE(1746), + [sym_array_creation] = STATE(1749), + [sym_fixed_array_creation] = STATE(1749), + [sym_selector_expression] = STATE(1749), + [sym_index_expression] = STATE(1749), + [sym_slice_expression] = STATE(1749), + [sym_if_expression] = STATE(1746), + [sym_compile_time_if_expression] = STATE(1746), + [sym_is_expression] = STATE(1749), + [sym_in_expression] = STATE(1749), + [sym_enum_fetch] = STATE(1749), + [sym_match_expression] = STATE(1746), + [sym_select_expression] = STATE(1746), + [sym_lock_expression] = STATE(1746), + [sym_unsafe_expression] = STATE(1746), + [sym_sql_expression] = STATE(1746), + [sym_c_string_literal] = STATE(1733), + [sym_raw_string_literal] = STATE(1733), + [sym_interpreted_string_literal] = STATE(1733), + [sym_mutability_modifiers] = STATE(843), + [sym_mutable_expression] = STATE(3278), + [sym_expression_list] = STATE(3323), + [sym_plain_type] = STATE(4121), + [sym__plain_type_without_special] = STATE(2360), + [sym_anon_struct_type] = STATE(2362), + [sym_multi_return_type] = STATE(2360), + [sym_result_type] = STATE(2360), + [sym_option_type] = STATE(2360), + [sym_qualified_type] = STATE(3460), + [sym_fixed_array_type] = STATE(2362), + [sym_array_type] = STATE(2362), + [sym_pointer_type] = STATE(2362), + [sym_wrong_pointer_type] = STATE(2362), + [sym_map_type] = STATE(2362), + [sym_channel_type] = STATE(2362), + [sym_shared_type] = STATE(2362), + [sym_thread_type] = STATE(2362), + [sym_atomic_type] = STATE(2362), + [sym_generic_type] = STATE(2362), + [sym_function_type] = STATE(2362), + [sym__statement_list] = STATE(4517), + [sym__statement] = STATE(3566), + [sym_simple_statement] = STATE(3648), + [sym_assert_statement] = STATE(3648), + [sym_append_statement] = STATE(3648), + [sym_send_statement] = STATE(3648), + [sym_var_declaration] = STATE(3649), + [sym_assignment_statement] = STATE(3649), + [sym_block] = STATE(3648), + [sym_defer_statement] = STATE(3648), + [sym_goto_statement] = STATE(3648), + [sym_break_statement] = STATE(3648), + [sym_continue_statement] = STATE(3648), + [sym_return_statement] = STATE(3648), [sym_label_definition] = STATE(62), - [sym_labeled_statement] = STATE(3582), - [sym_empty_labeled_statement] = STATE(4544), - [sym_compile_time_for_statement] = STATE(3582), - [sym_for_statement] = STATE(3582), - [sym_hash_statement] = STATE(3582), - [sym_asm_statement] = STATE(3582), + [sym_labeled_statement] = STATE(3648), + [sym_empty_labeled_statement] = STATE(4547), + [sym_compile_time_for_statement] = STATE(3648), + [sym_for_statement] = STATE(3648), + [sym_hash_statement] = STATE(3648), + [sym_asm_statement] = STATE(3648), [sym_identifier] = ACTIONS(437), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), @@ -27690,91 +27706,91 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [57] = { [sym_line_comment] = STATE(57), [sym_block_comment] = STATE(57), - [sym__expression] = STATE(1609), - [sym__expression_without_blocks] = STATE(1692), - [sym__expression_with_blocks] = STATE(1692), - [sym_strictly_expression_list] = STATE(3584), - [sym_inc_expression] = STATE(1684), - [sym_dec_expression] = STATE(1684), - [sym_or_block_expression] = STATE(1684), - [sym_option_propagation_expression] = STATE(1684), - [sym_result_propagation_expression] = STATE(1684), - [sym_anon_struct_value_expression] = STATE(1677), - [sym_go_expression] = STATE(1684), - [sym_spawn_expression] = STATE(1684), - [sym_parenthesized_expression] = STATE(1684), - [sym_call_expression] = STATE(1684), - [sym_type_initializer] = STATE(1677), - [sym_function_literal] = STATE(1684), - [sym_reference_expression] = STATE(1674), - [sym_type_reference_expression] = STATE(3541), - [sym_unary_expression] = STATE(1684), - [sym_receive_expression] = STATE(1684), - [sym_binary_expression] = STATE(1684), - [sym_as_type_cast_expression] = STATE(1684), - [sym__max_group] = STATE(1684), - [sym_literal] = STATE(1698), - [sym_map_init_expression] = STATE(1677), - [sym_array_creation] = STATE(1684), - [sym_fixed_array_creation] = STATE(1684), - [sym_selector_expression] = STATE(1684), - [sym_index_expression] = STATE(1684), - [sym_slice_expression] = STATE(1684), - [sym_if_expression] = STATE(1677), - [sym_compile_time_if_expression] = STATE(1677), - [sym_is_expression] = STATE(1684), - [sym_in_expression] = STATE(1684), - [sym_enum_fetch] = STATE(1684), - [sym_match_expression] = STATE(1677), - [sym_select_expression] = STATE(1677), - [sym_lock_expression] = STATE(1677), - [sym_unsafe_expression] = STATE(1677), - [sym_sql_expression] = STATE(1677), - [sym_c_string_literal] = STATE(1705), - [sym_raw_string_literal] = STATE(1705), - [sym_interpreted_string_literal] = STATE(1705), - [sym_mutability_modifiers] = STATE(858), - [sym_mutable_expression] = STATE(3274), - [sym_expression_list] = STATE(3288), - [sym_plain_type] = STATE(4157), - [sym__plain_type_without_special] = STATE(2302), - [sym_anon_struct_type] = STATE(2303), - [sym_multi_return_type] = STATE(2302), - [sym_result_type] = STATE(2302), - [sym_option_type] = STATE(2302), - [sym_qualified_type] = STATE(3541), - [sym_fixed_array_type] = STATE(2303), - [sym_array_type] = STATE(2303), - [sym_pointer_type] = STATE(2303), - [sym_wrong_pointer_type] = STATE(2303), - [sym_map_type] = STATE(2303), - [sym_channel_type] = STATE(2303), - [sym_shared_type] = STATE(2303), - [sym_thread_type] = STATE(2303), - [sym_atomic_type] = STATE(2303), - [sym_generic_type] = STATE(2303), - [sym_function_type] = STATE(2303), - [sym__statement_list] = STATE(4419), - [sym__statement] = STATE(3549), - [sym_simple_statement] = STATE(3582), - [sym_assert_statement] = STATE(3582), - [sym_append_statement] = STATE(3582), - [sym_send_statement] = STATE(3582), - [sym_var_declaration] = STATE(3584), - [sym_assignment_statement] = STATE(3584), - [sym_block] = STATE(3582), - [sym_defer_statement] = STATE(3582), - [sym_goto_statement] = STATE(3582), - [sym_break_statement] = STATE(3582), - [sym_continue_statement] = STATE(3582), - [sym_return_statement] = STATE(3582), + [sym__expression] = STATE(1612), + [sym__expression_without_blocks] = STATE(1747), + [sym__expression_with_blocks] = STATE(1747), + [sym_strictly_expression_list] = STATE(3649), + [sym_inc_expression] = STATE(1749), + [sym_dec_expression] = STATE(1749), + [sym_or_block_expression] = STATE(1749), + [sym_option_propagation_expression] = STATE(1749), + [sym_result_propagation_expression] = STATE(1749), + [sym_anon_struct_value_expression] = STATE(1746), + [sym_go_expression] = STATE(1749), + [sym_spawn_expression] = STATE(1749), + [sym_parenthesized_expression] = STATE(1749), + [sym_call_expression] = STATE(1749), + [sym_type_initializer] = STATE(1746), + [sym_function_literal] = STATE(1749), + [sym_reference_expression] = STATE(1745), + [sym_type_reference_expression] = STATE(3460), + [sym_unary_expression] = STATE(1749), + [sym_receive_expression] = STATE(1749), + [sym_binary_expression] = STATE(1749), + [sym_as_type_cast_expression] = STATE(1749), + [sym__max_group] = STATE(1749), + [sym_literal] = STATE(1738), + [sym_map_init_expression] = STATE(1746), + [sym_array_creation] = STATE(1749), + [sym_fixed_array_creation] = STATE(1749), + [sym_selector_expression] = STATE(1749), + [sym_index_expression] = STATE(1749), + [sym_slice_expression] = STATE(1749), + [sym_if_expression] = STATE(1746), + [sym_compile_time_if_expression] = STATE(1746), + [sym_is_expression] = STATE(1749), + [sym_in_expression] = STATE(1749), + [sym_enum_fetch] = STATE(1749), + [sym_match_expression] = STATE(1746), + [sym_select_expression] = STATE(1746), + [sym_lock_expression] = STATE(1746), + [sym_unsafe_expression] = STATE(1746), + [sym_sql_expression] = STATE(1746), + [sym_c_string_literal] = STATE(1733), + [sym_raw_string_literal] = STATE(1733), + [sym_interpreted_string_literal] = STATE(1733), + [sym_mutability_modifiers] = STATE(843), + [sym_mutable_expression] = STATE(3278), + [sym_expression_list] = STATE(3323), + [sym_plain_type] = STATE(4121), + [sym__plain_type_without_special] = STATE(2360), + [sym_anon_struct_type] = STATE(2362), + [sym_multi_return_type] = STATE(2360), + [sym_result_type] = STATE(2360), + [sym_option_type] = STATE(2360), + [sym_qualified_type] = STATE(3460), + [sym_fixed_array_type] = STATE(2362), + [sym_array_type] = STATE(2362), + [sym_pointer_type] = STATE(2362), + [sym_wrong_pointer_type] = STATE(2362), + [sym_map_type] = STATE(2362), + [sym_channel_type] = STATE(2362), + [sym_shared_type] = STATE(2362), + [sym_thread_type] = STATE(2362), + [sym_atomic_type] = STATE(2362), + [sym_generic_type] = STATE(2362), + [sym_function_type] = STATE(2362), + [sym__statement_list] = STATE(4508), + [sym__statement] = STATE(3566), + [sym_simple_statement] = STATE(3648), + [sym_assert_statement] = STATE(3648), + [sym_append_statement] = STATE(3648), + [sym_send_statement] = STATE(3648), + [sym_var_declaration] = STATE(3649), + [sym_assignment_statement] = STATE(3649), + [sym_block] = STATE(3648), + [sym_defer_statement] = STATE(3648), + [sym_goto_statement] = STATE(3648), + [sym_break_statement] = STATE(3648), + [sym_continue_statement] = STATE(3648), + [sym_return_statement] = STATE(3648), [sym_label_definition] = STATE(62), - [sym_labeled_statement] = STATE(3582), - [sym_empty_labeled_statement] = STATE(4544), - [sym_compile_time_for_statement] = STATE(3582), - [sym_for_statement] = STATE(3582), - [sym_hash_statement] = STATE(3582), - [sym_asm_statement] = STATE(3582), + [sym_labeled_statement] = STATE(3648), + [sym_empty_labeled_statement] = STATE(4547), + [sym_compile_time_for_statement] = STATE(3648), + [sym_for_statement] = STATE(3648), + [sym_hash_statement] = STATE(3648), + [sym_asm_statement] = STATE(3648), [sym_identifier] = ACTIONS(437), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), @@ -27839,91 +27855,91 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [58] = { [sym_line_comment] = STATE(58), [sym_block_comment] = STATE(58), - [sym__expression] = STATE(1609), - [sym__expression_without_blocks] = STATE(1692), - [sym__expression_with_blocks] = STATE(1692), - [sym_strictly_expression_list] = STATE(3584), - [sym_inc_expression] = STATE(1684), - [sym_dec_expression] = STATE(1684), - [sym_or_block_expression] = STATE(1684), - [sym_option_propagation_expression] = STATE(1684), - [sym_result_propagation_expression] = STATE(1684), - [sym_anon_struct_value_expression] = STATE(1677), - [sym_go_expression] = STATE(1684), - [sym_spawn_expression] = STATE(1684), - [sym_parenthesized_expression] = STATE(1684), - [sym_call_expression] = STATE(1684), - [sym_type_initializer] = STATE(1677), - [sym_function_literal] = STATE(1684), - [sym_reference_expression] = STATE(1674), - [sym_type_reference_expression] = STATE(3541), - [sym_unary_expression] = STATE(1684), - [sym_receive_expression] = STATE(1684), - [sym_binary_expression] = STATE(1684), - [sym_as_type_cast_expression] = STATE(1684), - [sym__max_group] = STATE(1684), - [sym_literal] = STATE(1698), - [sym_map_init_expression] = STATE(1677), - [sym_array_creation] = STATE(1684), - [sym_fixed_array_creation] = STATE(1684), - [sym_selector_expression] = STATE(1684), - [sym_index_expression] = STATE(1684), - [sym_slice_expression] = STATE(1684), - [sym_if_expression] = STATE(1677), - [sym_compile_time_if_expression] = STATE(1677), - [sym_is_expression] = STATE(1684), - [sym_in_expression] = STATE(1684), - [sym_enum_fetch] = STATE(1684), - [sym_match_expression] = STATE(1677), - [sym_select_expression] = STATE(1677), - [sym_lock_expression] = STATE(1677), - [sym_unsafe_expression] = STATE(1677), - [sym_sql_expression] = STATE(1677), - [sym_c_string_literal] = STATE(1705), - [sym_raw_string_literal] = STATE(1705), - [sym_interpreted_string_literal] = STATE(1705), - [sym_mutability_modifiers] = STATE(858), - [sym_mutable_expression] = STATE(3274), - [sym_expression_list] = STATE(3288), - [sym_plain_type] = STATE(4157), - [sym__plain_type_without_special] = STATE(2302), - [sym_anon_struct_type] = STATE(2303), - [sym_multi_return_type] = STATE(2302), - [sym_result_type] = STATE(2302), - [sym_option_type] = STATE(2302), - [sym_qualified_type] = STATE(3541), - [sym_fixed_array_type] = STATE(2303), - [sym_array_type] = STATE(2303), - [sym_pointer_type] = STATE(2303), - [sym_wrong_pointer_type] = STATE(2303), - [sym_map_type] = STATE(2303), - [sym_channel_type] = STATE(2303), - [sym_shared_type] = STATE(2303), - [sym_thread_type] = STATE(2303), - [sym_atomic_type] = STATE(2303), - [sym_generic_type] = STATE(2303), - [sym_function_type] = STATE(2303), - [sym__statement_list] = STATE(4491), - [sym__statement] = STATE(3549), - [sym_simple_statement] = STATE(3582), - [sym_assert_statement] = STATE(3582), - [sym_append_statement] = STATE(3582), - [sym_send_statement] = STATE(3582), - [sym_var_declaration] = STATE(3584), - [sym_assignment_statement] = STATE(3584), - [sym_block] = STATE(3582), - [sym_defer_statement] = STATE(3582), - [sym_goto_statement] = STATE(3582), - [sym_break_statement] = STATE(3582), - [sym_continue_statement] = STATE(3582), - [sym_return_statement] = STATE(3582), + [sym__expression] = STATE(1612), + [sym__expression_without_blocks] = STATE(1747), + [sym__expression_with_blocks] = STATE(1747), + [sym_strictly_expression_list] = STATE(3649), + [sym_inc_expression] = STATE(1749), + [sym_dec_expression] = STATE(1749), + [sym_or_block_expression] = STATE(1749), + [sym_option_propagation_expression] = STATE(1749), + [sym_result_propagation_expression] = STATE(1749), + [sym_anon_struct_value_expression] = STATE(1746), + [sym_go_expression] = STATE(1749), + [sym_spawn_expression] = STATE(1749), + [sym_parenthesized_expression] = STATE(1749), + [sym_call_expression] = STATE(1749), + [sym_type_initializer] = STATE(1746), + [sym_function_literal] = STATE(1749), + [sym_reference_expression] = STATE(1745), + [sym_type_reference_expression] = STATE(3460), + [sym_unary_expression] = STATE(1749), + [sym_receive_expression] = STATE(1749), + [sym_binary_expression] = STATE(1749), + [sym_as_type_cast_expression] = STATE(1749), + [sym__max_group] = STATE(1749), + [sym_literal] = STATE(1738), + [sym_map_init_expression] = STATE(1746), + [sym_array_creation] = STATE(1749), + [sym_fixed_array_creation] = STATE(1749), + [sym_selector_expression] = STATE(1749), + [sym_index_expression] = STATE(1749), + [sym_slice_expression] = STATE(1749), + [sym_if_expression] = STATE(1746), + [sym_compile_time_if_expression] = STATE(1746), + [sym_is_expression] = STATE(1749), + [sym_in_expression] = STATE(1749), + [sym_enum_fetch] = STATE(1749), + [sym_match_expression] = STATE(1746), + [sym_select_expression] = STATE(1746), + [sym_lock_expression] = STATE(1746), + [sym_unsafe_expression] = STATE(1746), + [sym_sql_expression] = STATE(1746), + [sym_c_string_literal] = STATE(1733), + [sym_raw_string_literal] = STATE(1733), + [sym_interpreted_string_literal] = STATE(1733), + [sym_mutability_modifiers] = STATE(843), + [sym_mutable_expression] = STATE(3278), + [sym_expression_list] = STATE(3323), + [sym_plain_type] = STATE(4121), + [sym__plain_type_without_special] = STATE(2360), + [sym_anon_struct_type] = STATE(2362), + [sym_multi_return_type] = STATE(2360), + [sym_result_type] = STATE(2360), + [sym_option_type] = STATE(2360), + [sym_qualified_type] = STATE(3460), + [sym_fixed_array_type] = STATE(2362), + [sym_array_type] = STATE(2362), + [sym_pointer_type] = STATE(2362), + [sym_wrong_pointer_type] = STATE(2362), + [sym_map_type] = STATE(2362), + [sym_channel_type] = STATE(2362), + [sym_shared_type] = STATE(2362), + [sym_thread_type] = STATE(2362), + [sym_atomic_type] = STATE(2362), + [sym_generic_type] = STATE(2362), + [sym_function_type] = STATE(2362), + [sym__statement_list] = STATE(4576), + [sym__statement] = STATE(3566), + [sym_simple_statement] = STATE(3648), + [sym_assert_statement] = STATE(3648), + [sym_append_statement] = STATE(3648), + [sym_send_statement] = STATE(3648), + [sym_var_declaration] = STATE(3649), + [sym_assignment_statement] = STATE(3649), + [sym_block] = STATE(3648), + [sym_defer_statement] = STATE(3648), + [sym_goto_statement] = STATE(3648), + [sym_break_statement] = STATE(3648), + [sym_continue_statement] = STATE(3648), + [sym_return_statement] = STATE(3648), [sym_label_definition] = STATE(62), - [sym_labeled_statement] = STATE(3582), - [sym_empty_labeled_statement] = STATE(4544), - [sym_compile_time_for_statement] = STATE(3582), - [sym_for_statement] = STATE(3582), - [sym_hash_statement] = STATE(3582), - [sym_asm_statement] = STATE(3582), + [sym_labeled_statement] = STATE(3648), + [sym_empty_labeled_statement] = STATE(4547), + [sym_compile_time_for_statement] = STATE(3648), + [sym_for_statement] = STATE(3648), + [sym_hash_statement] = STATE(3648), + [sym_asm_statement] = STATE(3648), [sym_identifier] = ACTIONS(437), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), @@ -27988,91 +28004,91 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [59] = { [sym_line_comment] = STATE(59), [sym_block_comment] = STATE(59), - [sym__expression] = STATE(1609), - [sym__expression_without_blocks] = STATE(1692), - [sym__expression_with_blocks] = STATE(1692), - [sym_strictly_expression_list] = STATE(3584), - [sym_inc_expression] = STATE(1684), - [sym_dec_expression] = STATE(1684), - [sym_or_block_expression] = STATE(1684), - [sym_option_propagation_expression] = STATE(1684), - [sym_result_propagation_expression] = STATE(1684), - [sym_anon_struct_value_expression] = STATE(1677), - [sym_go_expression] = STATE(1684), - [sym_spawn_expression] = STATE(1684), - [sym_parenthesized_expression] = STATE(1684), - [sym_call_expression] = STATE(1684), - [sym_type_initializer] = STATE(1677), - [sym_function_literal] = STATE(1684), - [sym_reference_expression] = STATE(1674), - [sym_type_reference_expression] = STATE(3541), - [sym_unary_expression] = STATE(1684), - [sym_receive_expression] = STATE(1684), - [sym_binary_expression] = STATE(1684), - [sym_as_type_cast_expression] = STATE(1684), - [sym__max_group] = STATE(1684), - [sym_literal] = STATE(1698), - [sym_map_init_expression] = STATE(1677), - [sym_array_creation] = STATE(1684), - [sym_fixed_array_creation] = STATE(1684), - [sym_selector_expression] = STATE(1684), - [sym_index_expression] = STATE(1684), - [sym_slice_expression] = STATE(1684), - [sym_if_expression] = STATE(1677), - [sym_compile_time_if_expression] = STATE(1677), - [sym_is_expression] = STATE(1684), - [sym_in_expression] = STATE(1684), - [sym_enum_fetch] = STATE(1684), - [sym_match_expression] = STATE(1677), - [sym_select_expression] = STATE(1677), - [sym_lock_expression] = STATE(1677), - [sym_unsafe_expression] = STATE(1677), - [sym_sql_expression] = STATE(1677), - [sym_c_string_literal] = STATE(1705), - [sym_raw_string_literal] = STATE(1705), - [sym_interpreted_string_literal] = STATE(1705), - [sym_mutability_modifiers] = STATE(858), - [sym_mutable_expression] = STATE(3274), - [sym_expression_list] = STATE(3288), - [sym_plain_type] = STATE(4157), - [sym__plain_type_without_special] = STATE(2302), - [sym_anon_struct_type] = STATE(2303), - [sym_multi_return_type] = STATE(2302), - [sym_result_type] = STATE(2302), - [sym_option_type] = STATE(2302), - [sym_qualified_type] = STATE(3541), - [sym_fixed_array_type] = STATE(2303), - [sym_array_type] = STATE(2303), - [sym_pointer_type] = STATE(2303), - [sym_wrong_pointer_type] = STATE(2303), - [sym_map_type] = STATE(2303), - [sym_channel_type] = STATE(2303), - [sym_shared_type] = STATE(2303), - [sym_thread_type] = STATE(2303), - [sym_atomic_type] = STATE(2303), - [sym_generic_type] = STATE(2303), - [sym_function_type] = STATE(2303), - [sym__statement_list] = STATE(4436), - [sym__statement] = STATE(3549), - [sym_simple_statement] = STATE(3582), - [sym_assert_statement] = STATE(3582), - [sym_append_statement] = STATE(3582), - [sym_send_statement] = STATE(3582), - [sym_var_declaration] = STATE(3584), - [sym_assignment_statement] = STATE(3584), - [sym_block] = STATE(3582), - [sym_defer_statement] = STATE(3582), - [sym_goto_statement] = STATE(3582), - [sym_break_statement] = STATE(3582), - [sym_continue_statement] = STATE(3582), - [sym_return_statement] = STATE(3582), + [sym__expression] = STATE(1612), + [sym__expression_without_blocks] = STATE(1747), + [sym__expression_with_blocks] = STATE(1747), + [sym_strictly_expression_list] = STATE(3649), + [sym_inc_expression] = STATE(1749), + [sym_dec_expression] = STATE(1749), + [sym_or_block_expression] = STATE(1749), + [sym_option_propagation_expression] = STATE(1749), + [sym_result_propagation_expression] = STATE(1749), + [sym_anon_struct_value_expression] = STATE(1746), + [sym_go_expression] = STATE(1749), + [sym_spawn_expression] = STATE(1749), + [sym_parenthesized_expression] = STATE(1749), + [sym_call_expression] = STATE(1749), + [sym_type_initializer] = STATE(1746), + [sym_function_literal] = STATE(1749), + [sym_reference_expression] = STATE(1745), + [sym_type_reference_expression] = STATE(3460), + [sym_unary_expression] = STATE(1749), + [sym_receive_expression] = STATE(1749), + [sym_binary_expression] = STATE(1749), + [sym_as_type_cast_expression] = STATE(1749), + [sym__max_group] = STATE(1749), + [sym_literal] = STATE(1738), + [sym_map_init_expression] = STATE(1746), + [sym_array_creation] = STATE(1749), + [sym_fixed_array_creation] = STATE(1749), + [sym_selector_expression] = STATE(1749), + [sym_index_expression] = STATE(1749), + [sym_slice_expression] = STATE(1749), + [sym_if_expression] = STATE(1746), + [sym_compile_time_if_expression] = STATE(1746), + [sym_is_expression] = STATE(1749), + [sym_in_expression] = STATE(1749), + [sym_enum_fetch] = STATE(1749), + [sym_match_expression] = STATE(1746), + [sym_select_expression] = STATE(1746), + [sym_lock_expression] = STATE(1746), + [sym_unsafe_expression] = STATE(1746), + [sym_sql_expression] = STATE(1746), + [sym_c_string_literal] = STATE(1733), + [sym_raw_string_literal] = STATE(1733), + [sym_interpreted_string_literal] = STATE(1733), + [sym_mutability_modifiers] = STATE(843), + [sym_mutable_expression] = STATE(3278), + [sym_expression_list] = STATE(3323), + [sym_plain_type] = STATE(4121), + [sym__plain_type_without_special] = STATE(2360), + [sym_anon_struct_type] = STATE(2362), + [sym_multi_return_type] = STATE(2360), + [sym_result_type] = STATE(2360), + [sym_option_type] = STATE(2360), + [sym_qualified_type] = STATE(3460), + [sym_fixed_array_type] = STATE(2362), + [sym_array_type] = STATE(2362), + [sym_pointer_type] = STATE(2362), + [sym_wrong_pointer_type] = STATE(2362), + [sym_map_type] = STATE(2362), + [sym_channel_type] = STATE(2362), + [sym_shared_type] = STATE(2362), + [sym_thread_type] = STATE(2362), + [sym_atomic_type] = STATE(2362), + [sym_generic_type] = STATE(2362), + [sym_function_type] = STATE(2362), + [sym__statement_list] = STATE(4390), + [sym__statement] = STATE(3566), + [sym_simple_statement] = STATE(3648), + [sym_assert_statement] = STATE(3648), + [sym_append_statement] = STATE(3648), + [sym_send_statement] = STATE(3648), + [sym_var_declaration] = STATE(3649), + [sym_assignment_statement] = STATE(3649), + [sym_block] = STATE(3648), + [sym_defer_statement] = STATE(3648), + [sym_goto_statement] = STATE(3648), + [sym_break_statement] = STATE(3648), + [sym_continue_statement] = STATE(3648), + [sym_return_statement] = STATE(3648), [sym_label_definition] = STATE(62), - [sym_labeled_statement] = STATE(3582), - [sym_empty_labeled_statement] = STATE(4544), - [sym_compile_time_for_statement] = STATE(3582), - [sym_for_statement] = STATE(3582), - [sym_hash_statement] = STATE(3582), - [sym_asm_statement] = STATE(3582), + [sym_labeled_statement] = STATE(3648), + [sym_empty_labeled_statement] = STATE(4547), + [sym_compile_time_for_statement] = STATE(3648), + [sym_for_statement] = STATE(3648), + [sym_hash_statement] = STATE(3648), + [sym_asm_statement] = STATE(3648), [sym_identifier] = ACTIONS(437), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), @@ -28137,90 +28153,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [60] = { [sym_line_comment] = STATE(60), [sym_block_comment] = STATE(60), - [sym__expression] = STATE(1609), - [sym__expression_without_blocks] = STATE(1692), - [sym__expression_with_blocks] = STATE(1692), - [sym_strictly_expression_list] = STATE(3584), - [sym_inc_expression] = STATE(1684), - [sym_dec_expression] = STATE(1684), - [sym_or_block_expression] = STATE(1684), - [sym_option_propagation_expression] = STATE(1684), - [sym_result_propagation_expression] = STATE(1684), - [sym_anon_struct_value_expression] = STATE(1677), - [sym_go_expression] = STATE(1684), - [sym_spawn_expression] = STATE(1684), - [sym_parenthesized_expression] = STATE(1684), - [sym_call_expression] = STATE(1684), - [sym_type_initializer] = STATE(1677), - [sym_function_literal] = STATE(1684), - [sym_reference_expression] = STATE(1674), - [sym_type_reference_expression] = STATE(3541), - [sym_unary_expression] = STATE(1684), - [sym_receive_expression] = STATE(1684), - [sym_binary_expression] = STATE(1684), - [sym_as_type_cast_expression] = STATE(1684), - [sym__max_group] = STATE(1684), - [sym_literal] = STATE(1698), - [sym_map_init_expression] = STATE(1677), - [sym_array_creation] = STATE(1684), - [sym_fixed_array_creation] = STATE(1684), - [sym_selector_expression] = STATE(1684), - [sym_index_expression] = STATE(1684), - [sym_slice_expression] = STATE(1684), - [sym_if_expression] = STATE(1677), - [sym_compile_time_if_expression] = STATE(1677), - [sym_is_expression] = STATE(1684), - [sym_in_expression] = STATE(1684), - [sym_enum_fetch] = STATE(1684), - [sym_match_expression] = STATE(1677), - [sym_select_expression] = STATE(1677), - [sym_lock_expression] = STATE(1677), - [sym_unsafe_expression] = STATE(1677), - [sym_sql_expression] = STATE(1677), - [sym_c_string_literal] = STATE(1705), - [sym_raw_string_literal] = STATE(1705), - [sym_interpreted_string_literal] = STATE(1705), - [sym_mutability_modifiers] = STATE(858), - [sym_mutable_expression] = STATE(3274), - [sym_expression_list] = STATE(3288), - [sym_plain_type] = STATE(4157), - [sym__plain_type_without_special] = STATE(2302), - [sym_anon_struct_type] = STATE(2303), - [sym_multi_return_type] = STATE(2302), - [sym_result_type] = STATE(2302), - [sym_option_type] = STATE(2302), - [sym_qualified_type] = STATE(3541), - [sym_fixed_array_type] = STATE(2303), - [sym_array_type] = STATE(2303), - [sym_pointer_type] = STATE(2303), - [sym_wrong_pointer_type] = STATE(2303), - [sym_map_type] = STATE(2303), - [sym_channel_type] = STATE(2303), - [sym_shared_type] = STATE(2303), - [sym_thread_type] = STATE(2303), - [sym_atomic_type] = STATE(2303), - [sym_generic_type] = STATE(2303), - [sym_function_type] = STATE(2303), - [sym__statement] = STATE(3639), - [sym_simple_statement] = STATE(3582), - [sym_assert_statement] = STATE(3582), - [sym_append_statement] = STATE(3582), - [sym_send_statement] = STATE(3582), - [sym_var_declaration] = STATE(3584), - [sym_assignment_statement] = STATE(3584), - [sym_block] = STATE(3582), - [sym_defer_statement] = STATE(3582), - [sym_goto_statement] = STATE(3582), - [sym_break_statement] = STATE(3582), - [sym_continue_statement] = STATE(3582), - [sym_return_statement] = STATE(3582), + [sym__expression] = STATE(1612), + [sym__expression_without_blocks] = STATE(1747), + [sym__expression_with_blocks] = STATE(1747), + [sym_strictly_expression_list] = STATE(3649), + [sym_inc_expression] = STATE(1749), + [sym_dec_expression] = STATE(1749), + [sym_or_block_expression] = STATE(1749), + [sym_option_propagation_expression] = STATE(1749), + [sym_result_propagation_expression] = STATE(1749), + [sym_anon_struct_value_expression] = STATE(1746), + [sym_go_expression] = STATE(1749), + [sym_spawn_expression] = STATE(1749), + [sym_parenthesized_expression] = STATE(1749), + [sym_call_expression] = STATE(1749), + [sym_type_initializer] = STATE(1746), + [sym_function_literal] = STATE(1749), + [sym_reference_expression] = STATE(1745), + [sym_type_reference_expression] = STATE(3460), + [sym_unary_expression] = STATE(1749), + [sym_receive_expression] = STATE(1749), + [sym_binary_expression] = STATE(1749), + [sym_as_type_cast_expression] = STATE(1749), + [sym__max_group] = STATE(1749), + [sym_literal] = STATE(1738), + [sym_map_init_expression] = STATE(1746), + [sym_array_creation] = STATE(1749), + [sym_fixed_array_creation] = STATE(1749), + [sym_selector_expression] = STATE(1749), + [sym_index_expression] = STATE(1749), + [sym_slice_expression] = STATE(1749), + [sym_if_expression] = STATE(1746), + [sym_compile_time_if_expression] = STATE(1746), + [sym_is_expression] = STATE(1749), + [sym_in_expression] = STATE(1749), + [sym_enum_fetch] = STATE(1749), + [sym_match_expression] = STATE(1746), + [sym_select_expression] = STATE(1746), + [sym_lock_expression] = STATE(1746), + [sym_unsafe_expression] = STATE(1746), + [sym_sql_expression] = STATE(1746), + [sym_c_string_literal] = STATE(1733), + [sym_raw_string_literal] = STATE(1733), + [sym_interpreted_string_literal] = STATE(1733), + [sym_mutability_modifiers] = STATE(843), + [sym_mutable_expression] = STATE(3278), + [sym_expression_list] = STATE(3323), + [sym_plain_type] = STATE(4121), + [sym__plain_type_without_special] = STATE(2360), + [sym_anon_struct_type] = STATE(2362), + [sym_multi_return_type] = STATE(2360), + [sym_result_type] = STATE(2360), + [sym_option_type] = STATE(2360), + [sym_qualified_type] = STATE(3460), + [sym_fixed_array_type] = STATE(2362), + [sym_array_type] = STATE(2362), + [sym_pointer_type] = STATE(2362), + [sym_wrong_pointer_type] = STATE(2362), + [sym_map_type] = STATE(2362), + [sym_channel_type] = STATE(2362), + [sym_shared_type] = STATE(2362), + [sym_thread_type] = STATE(2362), + [sym_atomic_type] = STATE(2362), + [sym_generic_type] = STATE(2362), + [sym_function_type] = STATE(2362), + [sym__statement] = STATE(3594), + [sym_simple_statement] = STATE(3648), + [sym_assert_statement] = STATE(3648), + [sym_append_statement] = STATE(3648), + [sym_send_statement] = STATE(3648), + [sym_var_declaration] = STATE(3649), + [sym_assignment_statement] = STATE(3649), + [sym_block] = STATE(3648), + [sym_defer_statement] = STATE(3648), + [sym_goto_statement] = STATE(3648), + [sym_break_statement] = STATE(3648), + [sym_continue_statement] = STATE(3648), + [sym_return_statement] = STATE(3648), [sym_label_definition] = STATE(62), - [sym_labeled_statement] = STATE(3582), - [sym_empty_labeled_statement] = STATE(4561), - [sym_compile_time_for_statement] = STATE(3582), - [sym_for_statement] = STATE(3582), - [sym_hash_statement] = STATE(3582), - [sym_asm_statement] = STATE(3582), + [sym_labeled_statement] = STATE(3648), + [sym_empty_labeled_statement] = STATE(4563), + [sym_compile_time_for_statement] = STATE(3648), + [sym_for_statement] = STATE(3648), + [sym_hash_statement] = STATE(3648), + [sym_asm_statement] = STATE(3648), [sym_identifier] = ACTIONS(437), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), @@ -28285,90 +28301,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [61] = { [sym_line_comment] = STATE(61), [sym_block_comment] = STATE(61), - [sym__expression] = STATE(1609), - [sym__expression_without_blocks] = STATE(1692), - [sym__expression_with_blocks] = STATE(1692), - [sym_strictly_expression_list] = STATE(3584), - [sym_inc_expression] = STATE(1684), - [sym_dec_expression] = STATE(1684), - [sym_or_block_expression] = STATE(1684), - [sym_option_propagation_expression] = STATE(1684), - [sym_result_propagation_expression] = STATE(1684), - [sym_anon_struct_value_expression] = STATE(1677), - [sym_go_expression] = STATE(1684), - [sym_spawn_expression] = STATE(1684), - [sym_parenthesized_expression] = STATE(1684), - [sym_call_expression] = STATE(1684), - [sym_type_initializer] = STATE(1677), - [sym_function_literal] = STATE(1684), - [sym_reference_expression] = STATE(1674), - [sym_type_reference_expression] = STATE(3541), - [sym_unary_expression] = STATE(1684), - [sym_receive_expression] = STATE(1684), - [sym_binary_expression] = STATE(1684), - [sym_as_type_cast_expression] = STATE(1684), - [sym__max_group] = STATE(1684), - [sym_literal] = STATE(1698), - [sym_map_init_expression] = STATE(1677), - [sym_array_creation] = STATE(1684), - [sym_fixed_array_creation] = STATE(1684), - [sym_selector_expression] = STATE(1684), - [sym_index_expression] = STATE(1684), - [sym_slice_expression] = STATE(1684), - [sym_if_expression] = STATE(1677), - [sym_compile_time_if_expression] = STATE(1677), - [sym_is_expression] = STATE(1684), - [sym_in_expression] = STATE(1684), - [sym_enum_fetch] = STATE(1684), - [sym_match_expression] = STATE(1677), - [sym_select_expression] = STATE(1677), - [sym_lock_expression] = STATE(1677), - [sym_unsafe_expression] = STATE(1677), - [sym_sql_expression] = STATE(1677), - [sym_c_string_literal] = STATE(1705), - [sym_raw_string_literal] = STATE(1705), - [sym_interpreted_string_literal] = STATE(1705), - [sym_mutability_modifiers] = STATE(858), - [sym_mutable_expression] = STATE(3274), - [sym_expression_list] = STATE(3288), - [sym_plain_type] = STATE(4157), - [sym__plain_type_without_special] = STATE(2302), - [sym_anon_struct_type] = STATE(2303), - [sym_multi_return_type] = STATE(2302), - [sym_result_type] = STATE(2302), - [sym_option_type] = STATE(2302), - [sym_qualified_type] = STATE(3541), - [sym_fixed_array_type] = STATE(2303), - [sym_array_type] = STATE(2303), - [sym_pointer_type] = STATE(2303), - [sym_wrong_pointer_type] = STATE(2303), - [sym_map_type] = STATE(2303), - [sym_channel_type] = STATE(2303), - [sym_shared_type] = STATE(2303), - [sym_thread_type] = STATE(2303), - [sym_atomic_type] = STATE(2303), - [sym_generic_type] = STATE(2303), - [sym_function_type] = STATE(2303), - [sym__statement] = STATE(3639), - [sym_simple_statement] = STATE(3582), - [sym_assert_statement] = STATE(3582), - [sym_append_statement] = STATE(3582), - [sym_send_statement] = STATE(3582), - [sym_var_declaration] = STATE(3584), - [sym_assignment_statement] = STATE(3584), - [sym_block] = STATE(3582), - [sym_defer_statement] = STATE(3582), - [sym_goto_statement] = STATE(3582), - [sym_break_statement] = STATE(3582), - [sym_continue_statement] = STATE(3582), - [sym_return_statement] = STATE(3582), + [sym__expression] = STATE(1612), + [sym__expression_without_blocks] = STATE(1747), + [sym__expression_with_blocks] = STATE(1747), + [sym_strictly_expression_list] = STATE(3649), + [sym_inc_expression] = STATE(1749), + [sym_dec_expression] = STATE(1749), + [sym_or_block_expression] = STATE(1749), + [sym_option_propagation_expression] = STATE(1749), + [sym_result_propagation_expression] = STATE(1749), + [sym_anon_struct_value_expression] = STATE(1746), + [sym_go_expression] = STATE(1749), + [sym_spawn_expression] = STATE(1749), + [sym_parenthesized_expression] = STATE(1749), + [sym_call_expression] = STATE(1749), + [sym_type_initializer] = STATE(1746), + [sym_function_literal] = STATE(1749), + [sym_reference_expression] = STATE(1745), + [sym_type_reference_expression] = STATE(3460), + [sym_unary_expression] = STATE(1749), + [sym_receive_expression] = STATE(1749), + [sym_binary_expression] = STATE(1749), + [sym_as_type_cast_expression] = STATE(1749), + [sym__max_group] = STATE(1749), + [sym_literal] = STATE(1738), + [sym_map_init_expression] = STATE(1746), + [sym_array_creation] = STATE(1749), + [sym_fixed_array_creation] = STATE(1749), + [sym_selector_expression] = STATE(1749), + [sym_index_expression] = STATE(1749), + [sym_slice_expression] = STATE(1749), + [sym_if_expression] = STATE(1746), + [sym_compile_time_if_expression] = STATE(1746), + [sym_is_expression] = STATE(1749), + [sym_in_expression] = STATE(1749), + [sym_enum_fetch] = STATE(1749), + [sym_match_expression] = STATE(1746), + [sym_select_expression] = STATE(1746), + [sym_lock_expression] = STATE(1746), + [sym_unsafe_expression] = STATE(1746), + [sym_sql_expression] = STATE(1746), + [sym_c_string_literal] = STATE(1733), + [sym_raw_string_literal] = STATE(1733), + [sym_interpreted_string_literal] = STATE(1733), + [sym_mutability_modifiers] = STATE(843), + [sym_mutable_expression] = STATE(3278), + [sym_expression_list] = STATE(3323), + [sym_plain_type] = STATE(4121), + [sym__plain_type_without_special] = STATE(2360), + [sym_anon_struct_type] = STATE(2362), + [sym_multi_return_type] = STATE(2360), + [sym_result_type] = STATE(2360), + [sym_option_type] = STATE(2360), + [sym_qualified_type] = STATE(3460), + [sym_fixed_array_type] = STATE(2362), + [sym_array_type] = STATE(2362), + [sym_pointer_type] = STATE(2362), + [sym_wrong_pointer_type] = STATE(2362), + [sym_map_type] = STATE(2362), + [sym_channel_type] = STATE(2362), + [sym_shared_type] = STATE(2362), + [sym_thread_type] = STATE(2362), + [sym_atomic_type] = STATE(2362), + [sym_generic_type] = STATE(2362), + [sym_function_type] = STATE(2362), + [sym__statement] = STATE(3594), + [sym_simple_statement] = STATE(3648), + [sym_assert_statement] = STATE(3648), + [sym_append_statement] = STATE(3648), + [sym_send_statement] = STATE(3648), + [sym_var_declaration] = STATE(3649), + [sym_assignment_statement] = STATE(3649), + [sym_block] = STATE(3648), + [sym_defer_statement] = STATE(3648), + [sym_goto_statement] = STATE(3648), + [sym_break_statement] = STATE(3648), + [sym_continue_statement] = STATE(3648), + [sym_return_statement] = STATE(3648), [sym_label_definition] = STATE(62), - [sym_labeled_statement] = STATE(3582), - [sym_empty_labeled_statement] = STATE(4411), - [sym_compile_time_for_statement] = STATE(3582), - [sym_for_statement] = STATE(3582), - [sym_hash_statement] = STATE(3582), - [sym_asm_statement] = STATE(3582), + [sym_labeled_statement] = STATE(3648), + [sym_empty_labeled_statement] = STATE(4637), + [sym_compile_time_for_statement] = STATE(3648), + [sym_for_statement] = STATE(3648), + [sym_hash_statement] = STATE(3648), + [sym_asm_statement] = STATE(3648), [sym_identifier] = ACTIONS(437), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), @@ -28433,89 +28449,89 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [62] = { [sym_line_comment] = STATE(62), [sym_block_comment] = STATE(62), - [sym__expression] = STATE(1609), - [sym__expression_without_blocks] = STATE(1692), - [sym__expression_with_blocks] = STATE(1692), - [sym_strictly_expression_list] = STATE(3584), - [sym_inc_expression] = STATE(1684), - [sym_dec_expression] = STATE(1684), - [sym_or_block_expression] = STATE(1684), - [sym_option_propagation_expression] = STATE(1684), - [sym_result_propagation_expression] = STATE(1684), - [sym_anon_struct_value_expression] = STATE(1677), - [sym_go_expression] = STATE(1684), - [sym_spawn_expression] = STATE(1684), - [sym_parenthesized_expression] = STATE(1684), - [sym_call_expression] = STATE(1684), - [sym_type_initializer] = STATE(1677), - [sym_function_literal] = STATE(1684), - [sym_reference_expression] = STATE(1674), - [sym_type_reference_expression] = STATE(3541), - [sym_unary_expression] = STATE(1684), - [sym_receive_expression] = STATE(1684), - [sym_binary_expression] = STATE(1684), - [sym_as_type_cast_expression] = STATE(1684), - [sym__max_group] = STATE(1684), - [sym_literal] = STATE(1698), - [sym_map_init_expression] = STATE(1677), - [sym_array_creation] = STATE(1684), - [sym_fixed_array_creation] = STATE(1684), - [sym_selector_expression] = STATE(1684), - [sym_index_expression] = STATE(1684), - [sym_slice_expression] = STATE(1684), - [sym_if_expression] = STATE(1677), - [sym_compile_time_if_expression] = STATE(1677), - [sym_is_expression] = STATE(1684), - [sym_in_expression] = STATE(1684), - [sym_enum_fetch] = STATE(1684), - [sym_match_expression] = STATE(1677), - [sym_select_expression] = STATE(1677), - [sym_lock_expression] = STATE(1677), - [sym_unsafe_expression] = STATE(1677), - [sym_sql_expression] = STATE(1677), - [sym_c_string_literal] = STATE(1705), - [sym_raw_string_literal] = STATE(1705), - [sym_interpreted_string_literal] = STATE(1705), - [sym_mutability_modifiers] = STATE(858), - [sym_mutable_expression] = STATE(3274), - [sym_expression_list] = STATE(3288), - [sym_plain_type] = STATE(4157), - [sym__plain_type_without_special] = STATE(2302), - [sym_anon_struct_type] = STATE(2303), - [sym_multi_return_type] = STATE(2302), - [sym_result_type] = STATE(2302), - [sym_option_type] = STATE(2302), - [sym_qualified_type] = STATE(3541), - [sym_fixed_array_type] = STATE(2303), - [sym_array_type] = STATE(2303), - [sym_pointer_type] = STATE(2303), - [sym_wrong_pointer_type] = STATE(2303), - [sym_map_type] = STATE(2303), - [sym_channel_type] = STATE(2303), - [sym_shared_type] = STATE(2303), - [sym_thread_type] = STATE(2303), - [sym_atomic_type] = STATE(2303), - [sym_generic_type] = STATE(2303), - [sym_function_type] = STATE(2303), - [sym__statement] = STATE(3621), - [sym_simple_statement] = STATE(3582), - [sym_assert_statement] = STATE(3582), - [sym_append_statement] = STATE(3582), - [sym_send_statement] = STATE(3582), - [sym_var_declaration] = STATE(3584), - [sym_assignment_statement] = STATE(3584), - [sym_block] = STATE(3582), - [sym_defer_statement] = STATE(3582), - [sym_goto_statement] = STATE(3582), - [sym_break_statement] = STATE(3582), - [sym_continue_statement] = STATE(3582), - [sym_return_statement] = STATE(3582), - [sym_label_definition] = STATE(65), - [sym_labeled_statement] = STATE(3582), - [sym_compile_time_for_statement] = STATE(3582), - [sym_for_statement] = STATE(3582), - [sym_hash_statement] = STATE(3582), - [sym_asm_statement] = STATE(3582), + [sym__expression] = STATE(1612), + [sym__expression_without_blocks] = STATE(1747), + [sym__expression_with_blocks] = STATE(1747), + [sym_strictly_expression_list] = STATE(3649), + [sym_inc_expression] = STATE(1749), + [sym_dec_expression] = STATE(1749), + [sym_or_block_expression] = STATE(1749), + [sym_option_propagation_expression] = STATE(1749), + [sym_result_propagation_expression] = STATE(1749), + [sym_anon_struct_value_expression] = STATE(1746), + [sym_go_expression] = STATE(1749), + [sym_spawn_expression] = STATE(1749), + [sym_parenthesized_expression] = STATE(1749), + [sym_call_expression] = STATE(1749), + [sym_type_initializer] = STATE(1746), + [sym_function_literal] = STATE(1749), + [sym_reference_expression] = STATE(1745), + [sym_type_reference_expression] = STATE(3460), + [sym_unary_expression] = STATE(1749), + [sym_receive_expression] = STATE(1749), + [sym_binary_expression] = STATE(1749), + [sym_as_type_cast_expression] = STATE(1749), + [sym__max_group] = STATE(1749), + [sym_literal] = STATE(1738), + [sym_map_init_expression] = STATE(1746), + [sym_array_creation] = STATE(1749), + [sym_fixed_array_creation] = STATE(1749), + [sym_selector_expression] = STATE(1749), + [sym_index_expression] = STATE(1749), + [sym_slice_expression] = STATE(1749), + [sym_if_expression] = STATE(1746), + [sym_compile_time_if_expression] = STATE(1746), + [sym_is_expression] = STATE(1749), + [sym_in_expression] = STATE(1749), + [sym_enum_fetch] = STATE(1749), + [sym_match_expression] = STATE(1746), + [sym_select_expression] = STATE(1746), + [sym_lock_expression] = STATE(1746), + [sym_unsafe_expression] = STATE(1746), + [sym_sql_expression] = STATE(1746), + [sym_c_string_literal] = STATE(1733), + [sym_raw_string_literal] = STATE(1733), + [sym_interpreted_string_literal] = STATE(1733), + [sym_mutability_modifiers] = STATE(843), + [sym_mutable_expression] = STATE(3278), + [sym_expression_list] = STATE(3323), + [sym_plain_type] = STATE(4121), + [sym__plain_type_without_special] = STATE(2360), + [sym_anon_struct_type] = STATE(2362), + [sym_multi_return_type] = STATE(2360), + [sym_result_type] = STATE(2360), + [sym_option_type] = STATE(2360), + [sym_qualified_type] = STATE(3460), + [sym_fixed_array_type] = STATE(2362), + [sym_array_type] = STATE(2362), + [sym_pointer_type] = STATE(2362), + [sym_wrong_pointer_type] = STATE(2362), + [sym_map_type] = STATE(2362), + [sym_channel_type] = STATE(2362), + [sym_shared_type] = STATE(2362), + [sym_thread_type] = STATE(2362), + [sym_atomic_type] = STATE(2362), + [sym_generic_type] = STATE(2362), + [sym_function_type] = STATE(2362), + [sym__statement] = STATE(3688), + [sym_simple_statement] = STATE(3648), + [sym_assert_statement] = STATE(3648), + [sym_append_statement] = STATE(3648), + [sym_send_statement] = STATE(3648), + [sym_var_declaration] = STATE(3649), + [sym_assignment_statement] = STATE(3649), + [sym_block] = STATE(3648), + [sym_defer_statement] = STATE(3648), + [sym_goto_statement] = STATE(3648), + [sym_break_statement] = STATE(3648), + [sym_continue_statement] = STATE(3648), + [sym_return_statement] = STATE(3648), + [sym_label_definition] = STATE(63), + [sym_labeled_statement] = STATE(3648), + [sym_compile_time_for_statement] = STATE(3648), + [sym_for_statement] = STATE(3648), + [sym_hash_statement] = STATE(3648), + [sym_asm_statement] = STATE(3648), [sym_identifier] = ACTIONS(437), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), @@ -28580,89 +28596,89 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [63] = { [sym_line_comment] = STATE(63), [sym_block_comment] = STATE(63), - [sym__expression] = STATE(1609), - [sym__expression_without_blocks] = STATE(1692), - [sym__expression_with_blocks] = STATE(1692), - [sym_strictly_expression_list] = STATE(3584), - [sym_inc_expression] = STATE(1684), - [sym_dec_expression] = STATE(1684), - [sym_or_block_expression] = STATE(1684), - [sym_option_propagation_expression] = STATE(1684), - [sym_result_propagation_expression] = STATE(1684), - [sym_anon_struct_value_expression] = STATE(1677), - [sym_go_expression] = STATE(1684), - [sym_spawn_expression] = STATE(1684), - [sym_parenthesized_expression] = STATE(1684), - [sym_call_expression] = STATE(1684), - [sym_type_initializer] = STATE(1677), - [sym_function_literal] = STATE(1684), - [sym_reference_expression] = STATE(1674), - [sym_type_reference_expression] = STATE(3541), - [sym_unary_expression] = STATE(1684), - [sym_receive_expression] = STATE(1684), - [sym_binary_expression] = STATE(1684), - [sym_as_type_cast_expression] = STATE(1684), - [sym__max_group] = STATE(1684), - [sym_literal] = STATE(1698), - [sym_map_init_expression] = STATE(1677), - [sym_array_creation] = STATE(1684), - [sym_fixed_array_creation] = STATE(1684), - [sym_selector_expression] = STATE(1684), - [sym_index_expression] = STATE(1684), - [sym_slice_expression] = STATE(1684), - [sym_if_expression] = STATE(1677), - [sym_compile_time_if_expression] = STATE(1677), - [sym_is_expression] = STATE(1684), - [sym_in_expression] = STATE(1684), - [sym_enum_fetch] = STATE(1684), - [sym_match_expression] = STATE(1677), - [sym_select_expression] = STATE(1677), - [sym_lock_expression] = STATE(1677), - [sym_unsafe_expression] = STATE(1677), - [sym_sql_expression] = STATE(1677), - [sym_c_string_literal] = STATE(1705), - [sym_raw_string_literal] = STATE(1705), - [sym_interpreted_string_literal] = STATE(1705), - [sym_mutability_modifiers] = STATE(858), - [sym_mutable_expression] = STATE(3274), - [sym_expression_list] = STATE(3288), - [sym_plain_type] = STATE(4157), - [sym__plain_type_without_special] = STATE(2302), - [sym_anon_struct_type] = STATE(2303), - [sym_multi_return_type] = STATE(2302), - [sym_result_type] = STATE(2302), - [sym_option_type] = STATE(2302), - [sym_qualified_type] = STATE(3541), - [sym_fixed_array_type] = STATE(2303), - [sym_array_type] = STATE(2303), - [sym_pointer_type] = STATE(2303), - [sym_wrong_pointer_type] = STATE(2303), - [sym_map_type] = STATE(2303), - [sym_channel_type] = STATE(2303), - [sym_shared_type] = STATE(2303), - [sym_thread_type] = STATE(2303), - [sym_atomic_type] = STATE(2303), - [sym_generic_type] = STATE(2303), - [sym_function_type] = STATE(2303), - [sym__statement] = STATE(3639), - [sym_simple_statement] = STATE(3582), - [sym_assert_statement] = STATE(3582), - [sym_append_statement] = STATE(3582), - [sym_send_statement] = STATE(3582), - [sym_var_declaration] = STATE(3584), - [sym_assignment_statement] = STATE(3584), - [sym_block] = STATE(3582), - [sym_defer_statement] = STATE(3582), - [sym_goto_statement] = STATE(3582), - [sym_break_statement] = STATE(3582), - [sym_continue_statement] = STATE(3582), - [sym_return_statement] = STATE(3582), - [sym_label_definition] = STATE(65), - [sym_labeled_statement] = STATE(3582), - [sym_compile_time_for_statement] = STATE(3582), - [sym_for_statement] = STATE(3582), - [sym_hash_statement] = STATE(3582), - [sym_asm_statement] = STATE(3582), + [sym__expression] = STATE(1612), + [sym__expression_without_blocks] = STATE(1747), + [sym__expression_with_blocks] = STATE(1747), + [sym_strictly_expression_list] = STATE(3649), + [sym_inc_expression] = STATE(1749), + [sym_dec_expression] = STATE(1749), + [sym_or_block_expression] = STATE(1749), + [sym_option_propagation_expression] = STATE(1749), + [sym_result_propagation_expression] = STATE(1749), + [sym_anon_struct_value_expression] = STATE(1746), + [sym_go_expression] = STATE(1749), + [sym_spawn_expression] = STATE(1749), + [sym_parenthesized_expression] = STATE(1749), + [sym_call_expression] = STATE(1749), + [sym_type_initializer] = STATE(1746), + [sym_function_literal] = STATE(1749), + [sym_reference_expression] = STATE(1745), + [sym_type_reference_expression] = STATE(3460), + [sym_unary_expression] = STATE(1749), + [sym_receive_expression] = STATE(1749), + [sym_binary_expression] = STATE(1749), + [sym_as_type_cast_expression] = STATE(1749), + [sym__max_group] = STATE(1749), + [sym_literal] = STATE(1738), + [sym_map_init_expression] = STATE(1746), + [sym_array_creation] = STATE(1749), + [sym_fixed_array_creation] = STATE(1749), + [sym_selector_expression] = STATE(1749), + [sym_index_expression] = STATE(1749), + [sym_slice_expression] = STATE(1749), + [sym_if_expression] = STATE(1746), + [sym_compile_time_if_expression] = STATE(1746), + [sym_is_expression] = STATE(1749), + [sym_in_expression] = STATE(1749), + [sym_enum_fetch] = STATE(1749), + [sym_match_expression] = STATE(1746), + [sym_select_expression] = STATE(1746), + [sym_lock_expression] = STATE(1746), + [sym_unsafe_expression] = STATE(1746), + [sym_sql_expression] = STATE(1746), + [sym_c_string_literal] = STATE(1733), + [sym_raw_string_literal] = STATE(1733), + [sym_interpreted_string_literal] = STATE(1733), + [sym_mutability_modifiers] = STATE(843), + [sym_mutable_expression] = STATE(3278), + [sym_expression_list] = STATE(3323), + [sym_plain_type] = STATE(4121), + [sym__plain_type_without_special] = STATE(2360), + [sym_anon_struct_type] = STATE(2362), + [sym_multi_return_type] = STATE(2360), + [sym_result_type] = STATE(2360), + [sym_option_type] = STATE(2360), + [sym_qualified_type] = STATE(3460), + [sym_fixed_array_type] = STATE(2362), + [sym_array_type] = STATE(2362), + [sym_pointer_type] = STATE(2362), + [sym_wrong_pointer_type] = STATE(2362), + [sym_map_type] = STATE(2362), + [sym_channel_type] = STATE(2362), + [sym_shared_type] = STATE(2362), + [sym_thread_type] = STATE(2362), + [sym_atomic_type] = STATE(2362), + [sym_generic_type] = STATE(2362), + [sym_function_type] = STATE(2362), + [sym__statement] = STATE(3688), + [sym_simple_statement] = STATE(3648), + [sym_assert_statement] = STATE(3648), + [sym_append_statement] = STATE(3648), + [sym_send_statement] = STATE(3648), + [sym_var_declaration] = STATE(3649), + [sym_assignment_statement] = STATE(3649), + [sym_block] = STATE(3648), + [sym_defer_statement] = STATE(3648), + [sym_goto_statement] = STATE(3648), + [sym_break_statement] = STATE(3648), + [sym_continue_statement] = STATE(3648), + [sym_return_statement] = STATE(3648), + [sym_label_definition] = STATE(63), + [sym_labeled_statement] = STATE(3648), + [sym_compile_time_for_statement] = STATE(3648), + [sym_for_statement] = STATE(3648), + [sym_hash_statement] = STATE(3648), + [sym_asm_statement] = STATE(3648), [sym_identifier] = ACTIONS(437), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), @@ -28726,89 +28742,235 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [64] = { [sym_line_comment] = STATE(64), [sym_block_comment] = STATE(64), - [sym__expression] = STATE(213), - [sym__expression_without_blocks] = STATE(442), - [sym__expression_with_blocks] = STATE(442), - [sym_strictly_expression_list] = STATE(1487), - [sym_inc_expression] = STATE(439), - [sym_dec_expression] = STATE(439), - [sym_or_block_expression] = STATE(439), - [sym_option_propagation_expression] = STATE(439), - [sym_result_propagation_expression] = STATE(439), - [sym_anon_struct_value_expression] = STATE(438), - [sym_go_expression] = STATE(439), - [sym_spawn_expression] = STATE(439), - [sym_parenthesized_expression] = STATE(439), - [sym_call_expression] = STATE(439), - [sym_type_initializer] = STATE(438), - [sym_function_literal] = STATE(439), - [sym_reference_expression] = STATE(437), - [sym_type_reference_expression] = STATE(3541), - [sym_unary_expression] = STATE(439), - [sym_receive_expression] = STATE(439), - [sym_binary_expression] = STATE(439), - [sym_as_type_cast_expression] = STATE(439), - [sym__max_group] = STATE(439), - [sym_literal] = STATE(495), - [sym_map_init_expression] = STATE(438), - [sym_array_creation] = STATE(439), - [sym_fixed_array_creation] = STATE(439), - [sym_selector_expression] = STATE(439), - [sym_index_expression] = STATE(439), - [sym_slice_expression] = STATE(439), - [sym_if_expression] = STATE(438), - [sym_compile_time_if_expression] = STATE(438), - [sym_is_expression] = STATE(439), - [sym_in_expression] = STATE(439), - [sym_enum_fetch] = STATE(439), - [sym_match_expression] = STATE(438), - [sym_select_expression] = STATE(438), - [sym_lock_expression] = STATE(438), - [sym_unsafe_expression] = STATE(438), - [sym_sql_expression] = STATE(438), - [sym_c_string_literal] = STATE(496), - [sym_raw_string_literal] = STATE(496), - [sym_interpreted_string_literal] = STATE(496), - [sym_mutability_modifiers] = STATE(781), - [sym_mutable_expression] = STATE(3275), - [sym_expression_list] = STATE(3317), - [sym_plain_type] = STATE(4049), - [sym__plain_type_without_special] = STATE(2302), - [sym_anon_struct_type] = STATE(2303), - [sym_multi_return_type] = STATE(2302), - [sym_result_type] = STATE(2302), - [sym_option_type] = STATE(2302), - [sym_qualified_type] = STATE(3541), - [sym_fixed_array_type] = STATE(2303), - [sym_array_type] = STATE(2303), - [sym_pointer_type] = STATE(2303), - [sym_wrong_pointer_type] = STATE(2303), - [sym_map_type] = STATE(2303), - [sym_channel_type] = STATE(2303), - [sym_shared_type] = STATE(2303), - [sym_thread_type] = STATE(2303), - [sym_atomic_type] = STATE(2303), - [sym_generic_type] = STATE(2303), - [sym_function_type] = STATE(2303), - [sym__statement] = STATE(1491), - [sym_simple_statement] = STATE(1493), - [sym_assert_statement] = STATE(1493), - [sym_append_statement] = STATE(1493), - [sym_send_statement] = STATE(1493), - [sym_var_declaration] = STATE(1487), - [sym_assignment_statement] = STATE(1487), - [sym_block] = STATE(1493), - [sym_defer_statement] = STATE(1493), - [sym_goto_statement] = STATE(1493), - [sym_break_statement] = STATE(1493), - [sym_continue_statement] = STATE(1493), - [sym_return_statement] = STATE(1493), - [sym_label_definition] = STATE(64), - [sym_labeled_statement] = STATE(1493), - [sym_compile_time_for_statement] = STATE(1493), - [sym_for_statement] = STATE(1493), - [sym_hash_statement] = STATE(1493), - [sym_asm_statement] = STATE(1493), + [sym__expression] = STATE(1612), + [sym__expression_without_blocks] = STATE(1747), + [sym__expression_with_blocks] = STATE(1747), + [sym_strictly_expression_list] = STATE(3649), + [sym_inc_expression] = STATE(1749), + [sym_dec_expression] = STATE(1749), + [sym_or_block_expression] = STATE(1749), + [sym_option_propagation_expression] = STATE(1749), + [sym_result_propagation_expression] = STATE(1749), + [sym_anon_struct_value_expression] = STATE(1746), + [sym_go_expression] = STATE(1749), + [sym_spawn_expression] = STATE(1749), + [sym_parenthesized_expression] = STATE(1749), + [sym_call_expression] = STATE(1749), + [sym_type_initializer] = STATE(1746), + [sym_function_literal] = STATE(1749), + [sym_reference_expression] = STATE(1745), + [sym_type_reference_expression] = STATE(3460), + [sym_unary_expression] = STATE(1749), + [sym_receive_expression] = STATE(1749), + [sym_binary_expression] = STATE(1749), + [sym_as_type_cast_expression] = STATE(1749), + [sym__max_group] = STATE(1749), + [sym_literal] = STATE(1738), + [sym_map_init_expression] = STATE(1746), + [sym_array_creation] = STATE(1749), + [sym_fixed_array_creation] = STATE(1749), + [sym_selector_expression] = STATE(1749), + [sym_index_expression] = STATE(1749), + [sym_slice_expression] = STATE(1749), + [sym_if_expression] = STATE(1746), + [sym_compile_time_if_expression] = STATE(1746), + [sym_is_expression] = STATE(1749), + [sym_in_expression] = STATE(1749), + [sym_enum_fetch] = STATE(1749), + [sym_match_expression] = STATE(1746), + [sym_select_expression] = STATE(1746), + [sym_lock_expression] = STATE(1746), + [sym_unsafe_expression] = STATE(1746), + [sym_sql_expression] = STATE(1746), + [sym_c_string_literal] = STATE(1733), + [sym_raw_string_literal] = STATE(1733), + [sym_interpreted_string_literal] = STATE(1733), + [sym_mutability_modifiers] = STATE(843), + [sym_mutable_expression] = STATE(3278), + [sym_expression_list] = STATE(3323), + [sym_plain_type] = STATE(4121), + [sym__plain_type_without_special] = STATE(2360), + [sym_anon_struct_type] = STATE(2362), + [sym_multi_return_type] = STATE(2360), + [sym_result_type] = STATE(2360), + [sym_option_type] = STATE(2360), + [sym_qualified_type] = STATE(3460), + [sym_fixed_array_type] = STATE(2362), + [sym_array_type] = STATE(2362), + [sym_pointer_type] = STATE(2362), + [sym_wrong_pointer_type] = STATE(2362), + [sym_map_type] = STATE(2362), + [sym_channel_type] = STATE(2362), + [sym_shared_type] = STATE(2362), + [sym_thread_type] = STATE(2362), + [sym_atomic_type] = STATE(2362), + [sym_generic_type] = STATE(2362), + [sym_function_type] = STATE(2362), + [sym__statement] = STATE(3594), + [sym_simple_statement] = STATE(3648), + [sym_assert_statement] = STATE(3648), + [sym_append_statement] = STATE(3648), + [sym_send_statement] = STATE(3648), + [sym_var_declaration] = STATE(3649), + [sym_assignment_statement] = STATE(3649), + [sym_block] = STATE(3648), + [sym_defer_statement] = STATE(3648), + [sym_goto_statement] = STATE(3648), + [sym_break_statement] = STATE(3648), + [sym_continue_statement] = STATE(3648), + [sym_return_statement] = STATE(3648), + [sym_label_definition] = STATE(63), + [sym_labeled_statement] = STATE(3648), + [sym_compile_time_for_statement] = STATE(3648), + [sym_for_statement] = STATE(3648), + [sym_hash_statement] = STATE(3648), + [sym_asm_statement] = STATE(3648), + [sym_identifier] = ACTIONS(437), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(309), + [anon_sym_LBRACE] = ACTIONS(311), + [anon_sym_LPAREN] = ACTIONS(315), + [anon_sym_fn] = ACTIONS(317), + [anon_sym_PLUS] = ACTIONS(319), + [anon_sym_DASH] = ACTIONS(319), + [anon_sym_STAR] = ACTIONS(321), + [anon_sym_struct] = ACTIONS(323), + [anon_sym_mut] = ACTIONS(41), + [anon_sym_QMARK] = ACTIONS(47), + [anon_sym_BANG] = ACTIONS(325), + [anon_sym_go] = ACTIONS(327), + [anon_sym_spawn] = ACTIONS(329), + [anon_sym_json_DOTdecode] = ACTIONS(331), + [anon_sym_LBRACK2] = ACTIONS(333), + [anon_sym_TILDE] = ACTIONS(319), + [anon_sym_CARET] = ACTIONS(319), + [anon_sym_AMP] = ACTIONS(335), + [anon_sym_LT_DASH] = ACTIONS(337), + [sym_none] = ACTIONS(339), + [sym_true] = ACTIONS(339), + [sym_false] = ACTIONS(339), + [sym_nil] = ACTIONS(339), + [anon_sym_if] = ACTIONS(341), + [anon_sym_DOLLARif] = ACTIONS(343), + [anon_sym_match] = ACTIONS(345), + [anon_sym_select] = ACTIONS(347), + [anon_sym_lock] = ACTIONS(349), + [anon_sym_rlock] = ACTIONS(349), + [anon_sym_unsafe] = ACTIONS(351), + [anon_sym_sql] = ACTIONS(353), + [sym_int_literal] = ACTIONS(339), + [sym_float_literal] = ACTIONS(355), + [sym_rune_literal] = ACTIONS(355), + [sym_pseudo_compile_time_identifier] = ACTIONS(357), + [anon_sym_shared] = ACTIONS(83), + [anon_sym_map_LBRACK] = ACTIONS(85), + [anon_sym_chan] = ACTIONS(87), + [anon_sym_thread] = ACTIONS(89), + [anon_sym_atomic] = ACTIONS(91), + [anon_sym_assert] = ACTIONS(359), + [anon_sym_defer] = ACTIONS(361), + [anon_sym_goto] = ACTIONS(363), + [anon_sym_break] = ACTIONS(365), + [anon_sym_continue] = ACTIONS(367), + [anon_sym_return] = ACTIONS(369), + [anon_sym_DOLLARfor] = ACTIONS(371), + [anon_sym_for] = ACTIONS(373), + [anon_sym_POUND] = ACTIONS(375), + [anon_sym_asm] = ACTIONS(377), + [sym___double_quote] = ACTIONS(379), + [sym___single_quote] = ACTIONS(381), + [sym___c_double_quote] = ACTIONS(383), + [sym___c_single_quote] = ACTIONS(385), + [sym___r_double_quote] = ACTIONS(387), + [sym___r_single_quote] = ACTIONS(389), + }, + [65] = { + [sym_line_comment] = STATE(65), + [sym_block_comment] = STATE(65), + [sym__expression] = STATE(216), + [sym__expression_without_blocks] = STATE(401), + [sym__expression_with_blocks] = STATE(401), + [sym_strictly_expression_list] = STATE(1497), + [sym_inc_expression] = STATE(399), + [sym_dec_expression] = STATE(399), + [sym_or_block_expression] = STATE(399), + [sym_option_propagation_expression] = STATE(399), + [sym_result_propagation_expression] = STATE(399), + [sym_anon_struct_value_expression] = STATE(395), + [sym_go_expression] = STATE(399), + [sym_spawn_expression] = STATE(399), + [sym_parenthesized_expression] = STATE(399), + [sym_call_expression] = STATE(399), + [sym_type_initializer] = STATE(395), + [sym_function_literal] = STATE(399), + [sym_reference_expression] = STATE(393), + [sym_type_reference_expression] = STATE(3460), + [sym_unary_expression] = STATE(399), + [sym_receive_expression] = STATE(399), + [sym_binary_expression] = STATE(399), + [sym_as_type_cast_expression] = STATE(399), + [sym__max_group] = STATE(399), + [sym_literal] = STATE(455), + [sym_map_init_expression] = STATE(395), + [sym_array_creation] = STATE(399), + [sym_fixed_array_creation] = STATE(399), + [sym_selector_expression] = STATE(399), + [sym_index_expression] = STATE(399), + [sym_slice_expression] = STATE(399), + [sym_if_expression] = STATE(395), + [sym_compile_time_if_expression] = STATE(395), + [sym_is_expression] = STATE(399), + [sym_in_expression] = STATE(399), + [sym_enum_fetch] = STATE(399), + [sym_match_expression] = STATE(395), + [sym_select_expression] = STATE(395), + [sym_lock_expression] = STATE(395), + [sym_unsafe_expression] = STATE(395), + [sym_sql_expression] = STATE(395), + [sym_c_string_literal] = STATE(479), + [sym_raw_string_literal] = STATE(479), + [sym_interpreted_string_literal] = STATE(479), + [sym_mutability_modifiers] = STATE(800), + [sym_mutable_expression] = STATE(3271), + [sym_expression_list] = STATE(3330), + [sym_plain_type] = STATE(4069), + [sym__plain_type_without_special] = STATE(2360), + [sym_anon_struct_type] = STATE(2362), + [sym_multi_return_type] = STATE(2360), + [sym_result_type] = STATE(2360), + [sym_option_type] = STATE(2360), + [sym_qualified_type] = STATE(3460), + [sym_fixed_array_type] = STATE(2362), + [sym_array_type] = STATE(2362), + [sym_pointer_type] = STATE(2362), + [sym_wrong_pointer_type] = STATE(2362), + [sym_map_type] = STATE(2362), + [sym_channel_type] = STATE(2362), + [sym_shared_type] = STATE(2362), + [sym_thread_type] = STATE(2362), + [sym_atomic_type] = STATE(2362), + [sym_generic_type] = STATE(2362), + [sym_function_type] = STATE(2362), + [sym__statement] = STATE(1518), + [sym_simple_statement] = STATE(1532), + [sym_assert_statement] = STATE(1532), + [sym_append_statement] = STATE(1532), + [sym_send_statement] = STATE(1532), + [sym_var_declaration] = STATE(1497), + [sym_assignment_statement] = STATE(1497), + [sym_block] = STATE(1532), + [sym_defer_statement] = STATE(1532), + [sym_goto_statement] = STATE(1532), + [sym_break_statement] = STATE(1532), + [sym_continue_statement] = STATE(1532), + [sym_return_statement] = STATE(1532), + [sym_label_definition] = STATE(65), + [sym_labeled_statement] = STATE(1532), + [sym_compile_time_for_statement] = STATE(1532), + [sym_for_statement] = STATE(1532), + [sym_hash_statement] = STATE(1532), + [sym_asm_statement] = STATE(1532), [sym_identifier] = ACTIONS(9), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), @@ -28869,218 +29031,72 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym___r_double_quote] = ACTIONS(123), [sym___r_single_quote] = ACTIONS(125), }, - [65] = { - [sym_line_comment] = STATE(65), - [sym_block_comment] = STATE(65), - [sym__expression] = STATE(1609), - [sym__expression_without_blocks] = STATE(1692), - [sym__expression_with_blocks] = STATE(1692), - [sym_strictly_expression_list] = STATE(3584), - [sym_inc_expression] = STATE(1684), - [sym_dec_expression] = STATE(1684), - [sym_or_block_expression] = STATE(1684), - [sym_option_propagation_expression] = STATE(1684), - [sym_result_propagation_expression] = STATE(1684), - [sym_anon_struct_value_expression] = STATE(1677), - [sym_go_expression] = STATE(1684), - [sym_spawn_expression] = STATE(1684), - [sym_parenthesized_expression] = STATE(1684), - [sym_call_expression] = STATE(1684), - [sym_type_initializer] = STATE(1677), - [sym_function_literal] = STATE(1684), - [sym_reference_expression] = STATE(1674), - [sym_type_reference_expression] = STATE(3541), - [sym_unary_expression] = STATE(1684), - [sym_receive_expression] = STATE(1684), - [sym_binary_expression] = STATE(1684), - [sym_as_type_cast_expression] = STATE(1684), - [sym__max_group] = STATE(1684), - [sym_literal] = STATE(1698), - [sym_map_init_expression] = STATE(1677), - [sym_array_creation] = STATE(1684), - [sym_fixed_array_creation] = STATE(1684), - [sym_selector_expression] = STATE(1684), - [sym_index_expression] = STATE(1684), - [sym_slice_expression] = STATE(1684), - [sym_if_expression] = STATE(1677), - [sym_compile_time_if_expression] = STATE(1677), - [sym_is_expression] = STATE(1684), - [sym_in_expression] = STATE(1684), - [sym_enum_fetch] = STATE(1684), - [sym_match_expression] = STATE(1677), - [sym_select_expression] = STATE(1677), - [sym_lock_expression] = STATE(1677), - [sym_unsafe_expression] = STATE(1677), - [sym_sql_expression] = STATE(1677), - [sym_c_string_literal] = STATE(1705), - [sym_raw_string_literal] = STATE(1705), - [sym_interpreted_string_literal] = STATE(1705), - [sym_mutability_modifiers] = STATE(858), - [sym_mutable_expression] = STATE(3274), - [sym_expression_list] = STATE(3288), - [sym_plain_type] = STATE(4157), - [sym__plain_type_without_special] = STATE(2302), - [sym_anon_struct_type] = STATE(2303), - [sym_multi_return_type] = STATE(2302), - [sym_result_type] = STATE(2302), - [sym_option_type] = STATE(2302), - [sym_qualified_type] = STATE(3541), - [sym_fixed_array_type] = STATE(2303), - [sym_array_type] = STATE(2303), - [sym_pointer_type] = STATE(2303), - [sym_wrong_pointer_type] = STATE(2303), - [sym_map_type] = STATE(2303), - [sym_channel_type] = STATE(2303), - [sym_shared_type] = STATE(2303), - [sym_thread_type] = STATE(2303), - [sym_atomic_type] = STATE(2303), - [sym_generic_type] = STATE(2303), - [sym_function_type] = STATE(2303), - [sym__statement] = STATE(3621), - [sym_simple_statement] = STATE(3582), - [sym_assert_statement] = STATE(3582), - [sym_append_statement] = STATE(3582), - [sym_send_statement] = STATE(3582), - [sym_var_declaration] = STATE(3584), - [sym_assignment_statement] = STATE(3584), - [sym_block] = STATE(3582), - [sym_defer_statement] = STATE(3582), - [sym_goto_statement] = STATE(3582), - [sym_break_statement] = STATE(3582), - [sym_continue_statement] = STATE(3582), - [sym_return_statement] = STATE(3582), - [sym_label_definition] = STATE(65), - [sym_labeled_statement] = STATE(3582), - [sym_compile_time_for_statement] = STATE(3582), - [sym_for_statement] = STATE(3582), - [sym_hash_statement] = STATE(3582), - [sym_asm_statement] = STATE(3582), - [sym_identifier] = ACTIONS(437), - [anon_sym_SLASH_SLASH] = ACTIONS(3), - [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(309), - [anon_sym_LBRACE] = ACTIONS(311), - [anon_sym_LPAREN] = ACTIONS(315), - [anon_sym_fn] = ACTIONS(317), - [anon_sym_PLUS] = ACTIONS(319), - [anon_sym_DASH] = ACTIONS(319), - [anon_sym_STAR] = ACTIONS(321), - [anon_sym_struct] = ACTIONS(323), - [anon_sym_mut] = ACTIONS(41), - [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(325), - [anon_sym_go] = ACTIONS(327), - [anon_sym_spawn] = ACTIONS(329), - [anon_sym_json_DOTdecode] = ACTIONS(331), - [anon_sym_LBRACK2] = ACTIONS(333), - [anon_sym_TILDE] = ACTIONS(319), - [anon_sym_CARET] = ACTIONS(319), - [anon_sym_AMP] = ACTIONS(335), - [anon_sym_LT_DASH] = ACTIONS(337), - [sym_none] = ACTIONS(339), - [sym_true] = ACTIONS(339), - [sym_false] = ACTIONS(339), - [sym_nil] = ACTIONS(339), - [anon_sym_if] = ACTIONS(341), - [anon_sym_DOLLARif] = ACTIONS(343), - [anon_sym_match] = ACTIONS(345), - [anon_sym_select] = ACTIONS(347), - [anon_sym_lock] = ACTIONS(349), - [anon_sym_rlock] = ACTIONS(349), - [anon_sym_unsafe] = ACTIONS(351), - [anon_sym_sql] = ACTIONS(353), - [sym_int_literal] = ACTIONS(339), - [sym_float_literal] = ACTIONS(355), - [sym_rune_literal] = ACTIONS(355), - [sym_pseudo_compile_time_identifier] = ACTIONS(357), - [anon_sym_shared] = ACTIONS(83), - [anon_sym_map_LBRACK] = ACTIONS(85), - [anon_sym_chan] = ACTIONS(87), - [anon_sym_thread] = ACTIONS(89), - [anon_sym_atomic] = ACTIONS(91), - [anon_sym_assert] = ACTIONS(359), - [anon_sym_defer] = ACTIONS(361), - [anon_sym_goto] = ACTIONS(363), - [anon_sym_break] = ACTIONS(365), - [anon_sym_continue] = ACTIONS(367), - [anon_sym_return] = ACTIONS(369), - [anon_sym_DOLLARfor] = ACTIONS(371), - [anon_sym_for] = ACTIONS(373), - [anon_sym_POUND] = ACTIONS(375), - [anon_sym_asm] = ACTIONS(377), - [sym___double_quote] = ACTIONS(379), - [sym___single_quote] = ACTIONS(381), - [sym___c_double_quote] = ACTIONS(383), - [sym___c_single_quote] = ACTIONS(385), - [sym___r_double_quote] = ACTIONS(387), - [sym___r_single_quote] = ACTIONS(389), - }, [66] = { [sym_line_comment] = STATE(66), [sym_block_comment] = STATE(66), - [sym__expression] = STATE(952), - [sym__expression_without_blocks] = STATE(1017), - [sym__expression_with_blocks] = STATE(1017), - [sym_inc_expression] = STATE(1018), - [sym_dec_expression] = STATE(1018), - [sym_or_block_expression] = STATE(1018), - [sym_option_propagation_expression] = STATE(1018), - [sym_result_propagation_expression] = STATE(1018), - [sym_anon_struct_value_expression] = STATE(993), - [sym_go_expression] = STATE(1018), - [sym_spawn_expression] = STATE(1018), - [sym_parenthesized_expression] = STATE(1018), - [sym_call_expression] = STATE(1018), - [sym_type_initializer] = STATE(993), - [sym_function_literal] = STATE(1018), - [sym_reference_expression] = STATE(1046), - [sym_type_reference_expression] = STATE(3541), - [sym_unary_expression] = STATE(1018), - [sym_receive_expression] = STATE(1018), - [sym_binary_expression] = STATE(1018), - [sym_as_type_cast_expression] = STATE(1018), - [sym__max_group] = STATE(1018), - [sym_literal] = STATE(1014), - [sym_map_init_expression] = STATE(993), - [sym_array_creation] = STATE(1018), - [sym_fixed_array_creation] = STATE(1018), - [sym_selector_expression] = STATE(1018), - [sym_index_expression] = STATE(1018), - [sym_slice_expression] = STATE(1018), - [sym_if_expression] = STATE(993), - [sym_compile_time_if_expression] = STATE(993), - [sym_is_expression] = STATE(1018), - [sym_in_expression] = STATE(1018), - [sym_enum_fetch] = STATE(1018), - [sym_match_expression] = STATE(993), - [sym_select_expression] = STATE(993), - [sym_lock_expression] = STATE(993), - [sym_unsafe_expression] = STATE(993), - [sym_sql_expression] = STATE(993), - [sym_c_string_literal] = STATE(1006), - [sym_raw_string_literal] = STATE(1006), - [sym_interpreted_string_literal] = STATE(1006), - [sym_mutability_modifiers] = STATE(872), - [sym_mutable_expression] = STATE(1404), - [sym_expression_list] = STATE(1486), - [sym_plain_type] = STATE(4296), - [sym__plain_type_without_special] = STATE(2302), - [sym_anon_struct_type] = STATE(2303), - [sym_multi_return_type] = STATE(2302), - [sym_result_type] = STATE(2302), - [sym_option_type] = STATE(2302), - [sym_qualified_type] = STATE(3541), - [sym_fixed_array_type] = STATE(2303), - [sym_array_type] = STATE(2303), - [sym_pointer_type] = STATE(2303), - [sym_wrong_pointer_type] = STATE(2303), - [sym_map_type] = STATE(2303), - [sym_channel_type] = STATE(2303), - [sym_shared_type] = STATE(2303), - [sym_thread_type] = STATE(2303), - [sym_atomic_type] = STATE(2303), - [sym_generic_type] = STATE(2303), - [sym_function_type] = STATE(2303), + [sym__expression] = STATE(953), + [sym__expression_without_blocks] = STATE(1086), + [sym__expression_with_blocks] = STATE(1086), + [sym_inc_expression] = STATE(1088), + [sym_dec_expression] = STATE(1088), + [sym_or_block_expression] = STATE(1088), + [sym_option_propagation_expression] = STATE(1088), + [sym_result_propagation_expression] = STATE(1088), + [sym_anon_struct_value_expression] = STATE(1025), + [sym_go_expression] = STATE(1088), + [sym_spawn_expression] = STATE(1088), + [sym_parenthesized_expression] = STATE(1088), + [sym_call_expression] = STATE(1088), + [sym_type_initializer] = STATE(1025), + [sym_function_literal] = STATE(1088), + [sym_reference_expression] = STATE(1024), + [sym_type_reference_expression] = STATE(3460), + [sym_unary_expression] = STATE(1088), + [sym_receive_expression] = STATE(1088), + [sym_binary_expression] = STATE(1088), + [sym_as_type_cast_expression] = STATE(1088), + [sym__max_group] = STATE(1088), + [sym_literal] = STATE(1078), + [sym_map_init_expression] = STATE(1025), + [sym_array_creation] = STATE(1088), + [sym_fixed_array_creation] = STATE(1088), + [sym_selector_expression] = STATE(1088), + [sym_index_expression] = STATE(1088), + [sym_slice_expression] = STATE(1088), + [sym_if_expression] = STATE(1025), + [sym_compile_time_if_expression] = STATE(1025), + [sym_is_expression] = STATE(1088), + [sym_in_expression] = STATE(1088), + [sym_enum_fetch] = STATE(1088), + [sym_match_expression] = STATE(1025), + [sym_select_expression] = STATE(1025), + [sym_lock_expression] = STATE(1025), + [sym_unsafe_expression] = STATE(1025), + [sym_sql_expression] = STATE(1025), + [sym_c_string_literal] = STATE(993), + [sym_raw_string_literal] = STATE(993), + [sym_interpreted_string_literal] = STATE(993), + [sym_mutability_modifiers] = STATE(855), + [sym_mutable_expression] = STATE(1413), + [sym_expression_list] = STATE(1524), + [sym_plain_type] = STATE(4090), + [sym__plain_type_without_special] = STATE(2360), + [sym_anon_struct_type] = STATE(2362), + [sym_multi_return_type] = STATE(2360), + [sym_result_type] = STATE(2360), + [sym_option_type] = STATE(2360), + [sym_qualified_type] = STATE(3460), + [sym_fixed_array_type] = STATE(2362), + [sym_array_type] = STATE(2362), + [sym_pointer_type] = STATE(2362), + [sym_wrong_pointer_type] = STATE(2362), + [sym_map_type] = STATE(2362), + [sym_channel_type] = STATE(2362), + [sym_shared_type] = STATE(2362), + [sym_thread_type] = STATE(2362), + [sym_atomic_type] = STATE(2362), + [sym_generic_type] = STATE(2362), + [sym_function_type] = STATE(2362), [ts_builtin_sym_end] = ACTIONS(491), [sym_identifier] = ACTIONS(493), [anon_sym_LF] = ACTIONS(495), @@ -29156,26 +29172,26 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [67] = { [sym_line_comment] = STATE(67), [sym_block_comment] = STATE(67), - [sym_reference_expression] = STATE(4403), - [sym_type_reference_expression] = STATE(252), - [sym_plain_type] = STATE(412), - [sym__plain_type_without_special] = STATE(445), - [sym_anon_struct_type] = STATE(448), - [sym_multi_return_type] = STATE(445), - [sym_result_type] = STATE(445), - [sym_option_type] = STATE(445), - [sym_qualified_type] = STATE(252), - [sym_fixed_array_type] = STATE(448), - [sym_array_type] = STATE(448), - [sym_pointer_type] = STATE(448), - [sym_wrong_pointer_type] = STATE(448), - [sym_map_type] = STATE(448), - [sym_channel_type] = STATE(448), - [sym_shared_type] = STATE(448), - [sym_thread_type] = STATE(448), - [sym_atomic_type] = STATE(448), - [sym_generic_type] = STATE(448), - [sym_function_type] = STATE(448), + [sym_reference_expression] = STATE(4498), + [sym_type_reference_expression] = STATE(3460), + [sym_plain_type] = STATE(2320), + [sym__plain_type_without_special] = STATE(2360), + [sym_anon_struct_type] = STATE(2362), + [sym_multi_return_type] = STATE(2360), + [sym_result_type] = STATE(2360), + [sym_option_type] = STATE(2360), + [sym_qualified_type] = STATE(3460), + [sym_fixed_array_type] = STATE(2362), + [sym_array_type] = STATE(2362), + [sym_pointer_type] = STATE(2362), + [sym_wrong_pointer_type] = STATE(2362), + [sym_map_type] = STATE(2362), + [sym_channel_type] = STATE(2362), + [sym_shared_type] = STATE(2362), + [sym_thread_type] = STATE(2362), + [sym_atomic_type] = STATE(2362), + [sym_generic_type] = STATE(2362), + [sym_function_type] = STATE(2362), [ts_builtin_sym_end] = ACTIONS(563), [sym_identifier] = ACTIONS(565), [anon_sym_LF] = ACTIONS(567), @@ -29214,15 +29230,15 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_interface] = ACTIONS(567), [anon_sym_PLUS_PLUS] = ACTIONS(567), [anon_sym_DASH_DASH] = ACTIONS(567), - [anon_sym_QMARK] = ACTIONS(577), - [anon_sym_BANG] = ACTIONS(579), + [anon_sym_QMARK] = ACTIONS(515), + [anon_sym_BANG] = ACTIONS(577), [anon_sym_go] = ACTIONS(567), [anon_sym_spawn] = ACTIONS(567), [anon_sym_json_DOTdecode] = ACTIONS(567), - [anon_sym_LBRACK2] = ACTIONS(581), + [anon_sym_LBRACK2] = ACTIONS(579), [anon_sym_TILDE] = ACTIONS(567), [anon_sym_CARET] = ACTIONS(567), - [anon_sym_AMP] = ACTIONS(583), + [anon_sym_AMP] = ACTIONS(581), [anon_sym_LT_DASH] = ACTIONS(567), [anon_sym_LT_LT] = ACTIONS(567), [anon_sym_GT_GT] = ACTIONS(567), @@ -29266,11 +29282,11 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(567), [sym_rune_literal] = ACTIONS(567), [sym_pseudo_compile_time_identifier] = ACTIONS(567), - [anon_sym_shared] = ACTIONS(585), - [anon_sym_map_LBRACK] = ACTIONS(587), - [anon_sym_chan] = ACTIONS(589), - [anon_sym_thread] = ACTIONS(591), - [anon_sym_atomic] = ACTIONS(593), + [anon_sym_shared] = ACTIONS(583), + [anon_sym_map_LBRACK] = ACTIONS(549), + [anon_sym_chan] = ACTIONS(87), + [anon_sym_thread] = ACTIONS(89), + [anon_sym_atomic] = ACTIONS(91), [anon_sym_assert] = ACTIONS(567), [anon_sym_defer] = ACTIONS(567), [anon_sym_goto] = ACTIONS(567), @@ -29292,164 +29308,164 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [68] = { [sym_line_comment] = STATE(68), [sym_block_comment] = STATE(68), - [sym_reference_expression] = STATE(4495), - [sym_type_reference_expression] = STATE(3541), - [sym_plain_type] = STATE(2386), - [sym__plain_type_without_special] = STATE(2302), - [sym_anon_struct_type] = STATE(2303), - [sym_multi_return_type] = STATE(2302), - [sym_result_type] = STATE(2302), - [sym_option_type] = STATE(2302), - [sym_qualified_type] = STATE(3541), - [sym_fixed_array_type] = STATE(2303), - [sym_array_type] = STATE(2303), - [sym_pointer_type] = STATE(2303), - [sym_wrong_pointer_type] = STATE(2303), - [sym_map_type] = STATE(2303), - [sym_channel_type] = STATE(2303), - [sym_shared_type] = STATE(2303), - [sym_thread_type] = STATE(2303), - [sym_atomic_type] = STATE(2303), - [sym_generic_type] = STATE(2303), - [sym_function_type] = STATE(2303), - [ts_builtin_sym_end] = ACTIONS(595), - [sym_identifier] = ACTIONS(597), - [anon_sym_LF] = ACTIONS(599), - [anon_sym_CR] = ACTIONS(599), - [anon_sym_CR_LF] = ACTIONS(599), + [sym_reference_expression] = STATE(4403), + [sym_type_reference_expression] = STATE(244), + [sym_plain_type] = STATE(409), + [sym__plain_type_without_special] = STATE(387), + [sym_anon_struct_type] = STATE(388), + [sym_multi_return_type] = STATE(387), + [sym_result_type] = STATE(387), + [sym_option_type] = STATE(387), + [sym_qualified_type] = STATE(244), + [sym_fixed_array_type] = STATE(388), + [sym_array_type] = STATE(388), + [sym_pointer_type] = STATE(388), + [sym_wrong_pointer_type] = STATE(388), + [sym_map_type] = STATE(388), + [sym_channel_type] = STATE(388), + [sym_shared_type] = STATE(388), + [sym_thread_type] = STATE(388), + [sym_atomic_type] = STATE(388), + [sym_generic_type] = STATE(388), + [sym_function_type] = STATE(388), + [ts_builtin_sym_end] = ACTIONS(585), + [sym_identifier] = ACTIONS(587), + [anon_sym_LF] = ACTIONS(589), + [anon_sym_CR] = ACTIONS(589), + [anon_sym_CR_LF] = ACTIONS(589), [anon_sym_SLASH_SLASH] = ACTIONS(497), [anon_sym_SLASH_STAR] = ACTIONS(499), - [anon_sym_DOT] = ACTIONS(599), - [anon_sym_as] = ACTIONS(599), - [anon_sym_LBRACE] = ACTIONS(599), - [anon_sym_COMMA] = ACTIONS(599), - [anon_sym_const] = ACTIONS(599), - [anon_sym_LPAREN] = ACTIONS(601), - [anon_sym_EQ] = ACTIONS(599), - [anon_sym___global] = ACTIONS(599), - [anon_sym_type] = ACTIONS(599), - [anon_sym_PIPE] = ACTIONS(599), - [anon_sym_fn] = ACTIONS(603), - [anon_sym_PLUS] = ACTIONS(599), - [anon_sym_DASH] = ACTIONS(599), - [anon_sym_STAR] = ACTIONS(605), - [anon_sym_SLASH] = ACTIONS(599), - [anon_sym_PERCENT] = ACTIONS(599), - [anon_sym_LT] = ACTIONS(599), - [anon_sym_GT] = ACTIONS(599), - [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(595), - [anon_sym_struct] = ACTIONS(607), - [anon_sym_union] = ACTIONS(599), - [anon_sym_pub] = ACTIONS(599), - [anon_sym_mut] = ACTIONS(599), - [anon_sym_enum] = ACTIONS(599), - [anon_sym_interface] = ACTIONS(599), - [anon_sym_PLUS_PLUS] = ACTIONS(599), - [anon_sym_DASH_DASH] = ACTIONS(599), - [anon_sym_QMARK] = ACTIONS(515), - [anon_sym_BANG] = ACTIONS(609), - [anon_sym_go] = ACTIONS(599), - [anon_sym_spawn] = ACTIONS(599), - [anon_sym_json_DOTdecode] = ACTIONS(599), - [anon_sym_LBRACK2] = ACTIONS(611), - [anon_sym_TILDE] = ACTIONS(599), - [anon_sym_CARET] = ACTIONS(599), - [anon_sym_AMP] = ACTIONS(613), - [anon_sym_LT_DASH] = ACTIONS(599), - [anon_sym_LT_LT] = ACTIONS(599), - [anon_sym_GT_GT] = ACTIONS(599), - [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(599), - [sym_none] = ACTIONS(599), - [sym_true] = ACTIONS(599), - [sym_false] = ACTIONS(599), - [sym_nil] = ACTIONS(599), - [anon_sym_QMARK_DOT] = ACTIONS(599), - [anon_sym_POUND_LBRACK] = ACTIONS(599), - [anon_sym_if] = ACTIONS(599), - [anon_sym_DOLLARif] = ACTIONS(599), - [anon_sym_is] = ACTIONS(599), - [anon_sym_BANGis] = ACTIONS(599), - [anon_sym_in] = ACTIONS(599), - [anon_sym_BANGin] = ACTIONS(599), - [anon_sym_match] = ACTIONS(599), - [anon_sym_select] = 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_lock] = ACTIONS(599), - [anon_sym_rlock] = ACTIONS(599), - [anon_sym_unsafe] = ACTIONS(599), - [anon_sym_sql] = ACTIONS(599), - [sym_int_literal] = ACTIONS(599), - [sym_float_literal] = ACTIONS(599), - [sym_rune_literal] = ACTIONS(599), - [sym_pseudo_compile_time_identifier] = ACTIONS(599), - [anon_sym_shared] = ACTIONS(615), - [anon_sym_map_LBRACK] = ACTIONS(549), - [anon_sym_chan] = ACTIONS(87), - [anon_sym_thread] = ACTIONS(89), - [anon_sym_atomic] = ACTIONS(91), - [anon_sym_assert] = ACTIONS(599), - [anon_sym_defer] = ACTIONS(599), - [anon_sym_goto] = ACTIONS(599), - [anon_sym_break] = ACTIONS(599), - [anon_sym_continue] = ACTIONS(599), - [anon_sym_return] = ACTIONS(599), - [anon_sym_DOLLARfor] = ACTIONS(599), - [anon_sym_for] = ACTIONS(599), - [anon_sym_POUND] = ACTIONS(599), - [anon_sym_asm] = ACTIONS(599), - [anon_sym_AT_LBRACK] = ACTIONS(599), - [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(589), + [anon_sym_as] = ACTIONS(589), + [anon_sym_LBRACE] = ACTIONS(589), + [anon_sym_COMMA] = ACTIONS(589), + [anon_sym_const] = ACTIONS(589), + [anon_sym_LPAREN] = ACTIONS(591), + [anon_sym_EQ] = ACTIONS(589), + [anon_sym___global] = ACTIONS(589), + [anon_sym_type] = ACTIONS(589), + [anon_sym_PIPE] = ACTIONS(589), + [anon_sym_fn] = ACTIONS(593), + [anon_sym_PLUS] = ACTIONS(589), + [anon_sym_DASH] = ACTIONS(589), + [anon_sym_STAR] = ACTIONS(595), + [anon_sym_SLASH] = ACTIONS(589), + [anon_sym_PERCENT] = ACTIONS(589), + [anon_sym_LT] = ACTIONS(589), + [anon_sym_GT] = ACTIONS(589), + [anon_sym_EQ_EQ] = ACTIONS(589), + [anon_sym_BANG_EQ] = ACTIONS(589), + [anon_sym_LT_EQ] = ACTIONS(589), + [anon_sym_GT_EQ] = ACTIONS(589), + [anon_sym_LBRACK] = ACTIONS(585), + [anon_sym_struct] = ACTIONS(597), + [anon_sym_union] = ACTIONS(589), + [anon_sym_pub] = ACTIONS(589), + [anon_sym_mut] = ACTIONS(589), + [anon_sym_enum] = ACTIONS(589), + [anon_sym_interface] = ACTIONS(589), + [anon_sym_PLUS_PLUS] = ACTIONS(589), + [anon_sym_DASH_DASH] = ACTIONS(589), + [anon_sym_QMARK] = ACTIONS(599), + [anon_sym_BANG] = ACTIONS(601), + [anon_sym_go] = ACTIONS(589), + [anon_sym_spawn] = ACTIONS(589), + [anon_sym_json_DOTdecode] = ACTIONS(589), + [anon_sym_LBRACK2] = ACTIONS(603), + [anon_sym_TILDE] = ACTIONS(589), + [anon_sym_CARET] = ACTIONS(589), + [anon_sym_AMP] = ACTIONS(605), + [anon_sym_LT_DASH] = ACTIONS(589), + [anon_sym_LT_LT] = ACTIONS(589), + [anon_sym_GT_GT] = ACTIONS(589), + [anon_sym_GT_GT_GT] = ACTIONS(589), + [anon_sym_AMP_CARET] = ACTIONS(589), + [anon_sym_AMP_AMP] = ACTIONS(589), + [anon_sym_PIPE_PIPE] = ACTIONS(589), + [anon_sym_or] = ACTIONS(589), + [sym_none] = ACTIONS(589), + [sym_true] = ACTIONS(589), + [sym_false] = ACTIONS(589), + [sym_nil] = ACTIONS(589), + [anon_sym_QMARK_DOT] = ACTIONS(589), + [anon_sym_POUND_LBRACK] = ACTIONS(589), + [anon_sym_if] = ACTIONS(589), + [anon_sym_DOLLARif] = ACTIONS(589), + [anon_sym_is] = ACTIONS(589), + [anon_sym_BANGis] = ACTIONS(589), + [anon_sym_in] = ACTIONS(589), + [anon_sym_BANGin] = ACTIONS(589), + [anon_sym_match] = ACTIONS(589), + [anon_sym_select] = ACTIONS(589), + [anon_sym_STAR_EQ] = ACTIONS(589), + [anon_sym_SLASH_EQ] = ACTIONS(589), + [anon_sym_PERCENT_EQ] = ACTIONS(589), + [anon_sym_LT_LT_EQ] = ACTIONS(589), + [anon_sym_GT_GT_EQ] = ACTIONS(589), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(589), + [anon_sym_AMP_EQ] = ACTIONS(589), + [anon_sym_AMP_CARET_EQ] = ACTIONS(589), + [anon_sym_PLUS_EQ] = ACTIONS(589), + [anon_sym_DASH_EQ] = ACTIONS(589), + [anon_sym_PIPE_EQ] = ACTIONS(589), + [anon_sym_CARET_EQ] = ACTIONS(589), + [anon_sym_COLON_EQ] = ACTIONS(589), + [anon_sym_lock] = ACTIONS(589), + [anon_sym_rlock] = ACTIONS(589), + [anon_sym_unsafe] = ACTIONS(589), + [anon_sym_sql] = ACTIONS(589), + [sym_int_literal] = ACTIONS(589), + [sym_float_literal] = ACTIONS(589), + [sym_rune_literal] = ACTIONS(589), + [sym_pseudo_compile_time_identifier] = ACTIONS(589), + [anon_sym_shared] = ACTIONS(607), + [anon_sym_map_LBRACK] = ACTIONS(609), + [anon_sym_chan] = ACTIONS(611), + [anon_sym_thread] = ACTIONS(613), + [anon_sym_atomic] = ACTIONS(615), + [anon_sym_assert] = ACTIONS(589), + [anon_sym_defer] = ACTIONS(589), + [anon_sym_goto] = ACTIONS(589), + [anon_sym_break] = ACTIONS(589), + [anon_sym_continue] = ACTIONS(589), + [anon_sym_return] = ACTIONS(589), + [anon_sym_DOLLARfor] = ACTIONS(589), + [anon_sym_for] = ACTIONS(589), + [anon_sym_POUND] = ACTIONS(589), + [anon_sym_asm] = ACTIONS(589), + [anon_sym_AT_LBRACK] = ACTIONS(589), + [sym___double_quote] = ACTIONS(589), + [sym___single_quote] = ACTIONS(589), + [sym___c_double_quote] = ACTIONS(589), + [sym___c_single_quote] = ACTIONS(589), + [sym___r_double_quote] = ACTIONS(589), + [sym___r_single_quote] = ACTIONS(589), }, [69] = { [sym_line_comment] = STATE(69), [sym_block_comment] = STATE(69), [sym_reference_expression] = STATE(4403), - [sym_type_reference_expression] = STATE(252), - [sym_plain_type] = STATE(440), - [sym__plain_type_without_special] = STATE(445), - [sym_anon_struct_type] = STATE(448), - [sym_multi_return_type] = STATE(445), - [sym_result_type] = STATE(445), - [sym_option_type] = STATE(445), - [sym_qualified_type] = STATE(252), - [sym_fixed_array_type] = STATE(448), - [sym_array_type] = STATE(448), - [sym_pointer_type] = STATE(448), - [sym_wrong_pointer_type] = STATE(448), - [sym_map_type] = STATE(448), - [sym_channel_type] = STATE(448), - [sym_shared_type] = STATE(448), - [sym_thread_type] = STATE(448), - [sym_atomic_type] = STATE(448), - [sym_generic_type] = STATE(448), - [sym_function_type] = STATE(448), + [sym_type_reference_expression] = STATE(244), + [sym_plain_type] = STATE(421), + [sym__plain_type_without_special] = STATE(387), + [sym_anon_struct_type] = STATE(388), + [sym_multi_return_type] = STATE(387), + [sym_result_type] = STATE(387), + [sym_option_type] = STATE(387), + [sym_qualified_type] = STATE(244), + [sym_fixed_array_type] = STATE(388), + [sym_array_type] = STATE(388), + [sym_pointer_type] = STATE(388), + [sym_wrong_pointer_type] = STATE(388), + [sym_map_type] = STATE(388), + [sym_channel_type] = STATE(388), + [sym_shared_type] = STATE(388), + [sym_thread_type] = STATE(388), + [sym_atomic_type] = STATE(388), + [sym_generic_type] = STATE(388), + [sym_function_type] = STATE(388), [ts_builtin_sym_end] = ACTIONS(617), - [sym_identifier] = ACTIONS(565), + [sym_identifier] = ACTIONS(587), [anon_sym_LF] = ACTIONS(619), [anon_sym_CR] = ACTIONS(619), [anon_sym_CR_LF] = ACTIONS(619), @@ -29460,15 +29476,15 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACE] = ACTIONS(619), [anon_sym_COMMA] = ACTIONS(619), [anon_sym_const] = ACTIONS(619), - [anon_sym_LPAREN] = ACTIONS(569), + [anon_sym_LPAREN] = ACTIONS(591), [anon_sym_EQ] = ACTIONS(619), [anon_sym___global] = ACTIONS(619), [anon_sym_type] = ACTIONS(619), [anon_sym_PIPE] = ACTIONS(619), - [anon_sym_fn] = ACTIONS(571), + [anon_sym_fn] = ACTIONS(593), [anon_sym_PLUS] = ACTIONS(619), [anon_sym_DASH] = ACTIONS(619), - [anon_sym_STAR] = ACTIONS(573), + [anon_sym_STAR] = ACTIONS(595), [anon_sym_SLASH] = ACTIONS(619), [anon_sym_PERCENT] = ACTIONS(619), [anon_sym_LT] = ACTIONS(619), @@ -29478,7 +29494,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT_EQ] = ACTIONS(619), [anon_sym_GT_EQ] = ACTIONS(619), [anon_sym_LBRACK] = ACTIONS(617), - [anon_sym_struct] = ACTIONS(575), + [anon_sym_struct] = ACTIONS(597), [anon_sym_union] = ACTIONS(619), [anon_sym_pub] = ACTIONS(619), [anon_sym_mut] = ACTIONS(619), @@ -29486,15 +29502,15 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_interface] = ACTIONS(619), [anon_sym_PLUS_PLUS] = ACTIONS(619), [anon_sym_DASH_DASH] = ACTIONS(619), - [anon_sym_QMARK] = ACTIONS(577), - [anon_sym_BANG] = ACTIONS(579), + [anon_sym_QMARK] = ACTIONS(599), + [anon_sym_BANG] = ACTIONS(601), [anon_sym_go] = ACTIONS(619), [anon_sym_spawn] = ACTIONS(619), [anon_sym_json_DOTdecode] = ACTIONS(619), - [anon_sym_LBRACK2] = ACTIONS(581), + [anon_sym_LBRACK2] = ACTIONS(603), [anon_sym_TILDE] = ACTIONS(619), [anon_sym_CARET] = ACTIONS(619), - [anon_sym_AMP] = ACTIONS(583), + [anon_sym_AMP] = ACTIONS(605), [anon_sym_LT_DASH] = ACTIONS(619), [anon_sym_LT_LT] = ACTIONS(619), [anon_sym_GT_GT] = ACTIONS(619), @@ -29538,11 +29554,11 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(619), [sym_rune_literal] = ACTIONS(619), [sym_pseudo_compile_time_identifier] = ACTIONS(619), - [anon_sym_shared] = ACTIONS(585), - [anon_sym_map_LBRACK] = ACTIONS(587), - [anon_sym_chan] = ACTIONS(589), - [anon_sym_thread] = ACTIONS(591), - [anon_sym_atomic] = ACTIONS(593), + [anon_sym_shared] = ACTIONS(607), + [anon_sym_map_LBRACK] = ACTIONS(609), + [anon_sym_chan] = ACTIONS(611), + [anon_sym_thread] = ACTIONS(613), + [anon_sym_atomic] = ACTIONS(615), [anon_sym_assert] = ACTIONS(619), [anon_sym_defer] = ACTIONS(619), [anon_sym_goto] = ACTIONS(619), @@ -29564,28 +29580,28 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [70] = { [sym_line_comment] = STATE(70), [sym_block_comment] = STATE(70), - [sym_reference_expression] = STATE(4495), - [sym_type_reference_expression] = STATE(3541), - [sym_plain_type] = STATE(2391), - [sym__plain_type_without_special] = STATE(2302), - [sym_anon_struct_type] = STATE(2303), - [sym_multi_return_type] = STATE(2302), - [sym_result_type] = STATE(2302), - [sym_option_type] = STATE(2302), - [sym_qualified_type] = STATE(3541), - [sym_fixed_array_type] = STATE(2303), - [sym_array_type] = STATE(2303), - [sym_pointer_type] = STATE(2303), - [sym_wrong_pointer_type] = STATE(2303), - [sym_map_type] = STATE(2303), - [sym_channel_type] = STATE(2303), - [sym_shared_type] = STATE(2303), - [sym_thread_type] = STATE(2303), - [sym_atomic_type] = STATE(2303), - [sym_generic_type] = STATE(2303), - [sym_function_type] = STATE(2303), + [sym_reference_expression] = STATE(4403), + [sym_type_reference_expression] = STATE(244), + [sym_plain_type] = STATE(431), + [sym__plain_type_without_special] = STATE(387), + [sym_anon_struct_type] = STATE(388), + [sym_multi_return_type] = STATE(387), + [sym_result_type] = STATE(387), + [sym_option_type] = STATE(387), + [sym_qualified_type] = STATE(244), + [sym_fixed_array_type] = STATE(388), + [sym_array_type] = STATE(388), + [sym_pointer_type] = STATE(388), + [sym_wrong_pointer_type] = STATE(388), + [sym_map_type] = STATE(388), + [sym_channel_type] = STATE(388), + [sym_shared_type] = STATE(388), + [sym_thread_type] = STATE(388), + [sym_atomic_type] = STATE(388), + [sym_generic_type] = STATE(388), + [sym_function_type] = STATE(388), [ts_builtin_sym_end] = ACTIONS(621), - [sym_identifier] = ACTIONS(623), + [sym_identifier] = ACTIONS(587), [anon_sym_LF] = ACTIONS(623), [anon_sym_CR] = ACTIONS(623), [anon_sym_CR_LF] = ACTIONS(623), @@ -29596,15 +29612,15 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACE] = ACTIONS(623), [anon_sym_COMMA] = ACTIONS(623), [anon_sym_const] = ACTIONS(623), - [anon_sym_LPAREN] = ACTIONS(623), + [anon_sym_LPAREN] = ACTIONS(591), [anon_sym_EQ] = ACTIONS(623), [anon_sym___global] = ACTIONS(623), [anon_sym_type] = ACTIONS(623), [anon_sym_PIPE] = ACTIONS(623), - [anon_sym_fn] = ACTIONS(623), + [anon_sym_fn] = ACTIONS(593), [anon_sym_PLUS] = ACTIONS(623), [anon_sym_DASH] = ACTIONS(623), - [anon_sym_STAR] = ACTIONS(623), + [anon_sym_STAR] = ACTIONS(595), [anon_sym_SLASH] = ACTIONS(623), [anon_sym_PERCENT] = ACTIONS(623), [anon_sym_LT] = ACTIONS(623), @@ -29614,7 +29630,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT_EQ] = ACTIONS(623), [anon_sym_GT_EQ] = ACTIONS(623), [anon_sym_LBRACK] = ACTIONS(621), - [anon_sym_struct] = ACTIONS(623), + [anon_sym_struct] = ACTIONS(597), [anon_sym_union] = ACTIONS(623), [anon_sym_pub] = ACTIONS(623), [anon_sym_mut] = ACTIONS(623), @@ -29622,15 +29638,15 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_interface] = ACTIONS(623), [anon_sym_PLUS_PLUS] = ACTIONS(623), [anon_sym_DASH_DASH] = ACTIONS(623), - [anon_sym_QMARK] = ACTIONS(623), - [anon_sym_BANG] = ACTIONS(623), + [anon_sym_QMARK] = ACTIONS(599), + [anon_sym_BANG] = ACTIONS(601), [anon_sym_go] = ACTIONS(623), [anon_sym_spawn] = ACTIONS(623), [anon_sym_json_DOTdecode] = ACTIONS(623), - [anon_sym_LBRACK2] = ACTIONS(623), + [anon_sym_LBRACK2] = ACTIONS(603), [anon_sym_TILDE] = ACTIONS(623), [anon_sym_CARET] = ACTIONS(623), - [anon_sym_AMP] = ACTIONS(623), + [anon_sym_AMP] = ACTIONS(605), [anon_sym_LT_DASH] = ACTIONS(623), [anon_sym_LT_LT] = ACTIONS(623), [anon_sym_GT_GT] = ACTIONS(623), @@ -29674,11 +29690,11 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(623), [sym_rune_literal] = ACTIONS(623), [sym_pseudo_compile_time_identifier] = ACTIONS(623), - [anon_sym_shared] = ACTIONS(623), - [anon_sym_map_LBRACK] = ACTIONS(623), - [anon_sym_chan] = ACTIONS(623), - [anon_sym_thread] = ACTIONS(623), - [anon_sym_atomic] = ACTIONS(623), + [anon_sym_shared] = ACTIONS(607), + [anon_sym_map_LBRACK] = ACTIONS(609), + [anon_sym_chan] = ACTIONS(611), + [anon_sym_thread] = ACTIONS(613), + [anon_sym_atomic] = ACTIONS(615), [anon_sym_assert] = ACTIONS(623), [anon_sym_defer] = ACTIONS(623), [anon_sym_goto] = ACTIONS(623), @@ -29700,28 +29716,28 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [71] = { [sym_line_comment] = STATE(71), [sym_block_comment] = STATE(71), - [sym_reference_expression] = STATE(4403), - [sym_type_reference_expression] = STATE(252), - [sym_plain_type] = STATE(456), - [sym__plain_type_without_special] = STATE(445), - [sym_anon_struct_type] = STATE(448), - [sym_multi_return_type] = STATE(445), - [sym_result_type] = STATE(445), - [sym_option_type] = STATE(445), - [sym_qualified_type] = STATE(252), - [sym_fixed_array_type] = STATE(448), - [sym_array_type] = STATE(448), - [sym_pointer_type] = STATE(448), - [sym_wrong_pointer_type] = STATE(448), - [sym_map_type] = STATE(448), - [sym_channel_type] = STATE(448), - [sym_shared_type] = STATE(448), - [sym_thread_type] = STATE(448), - [sym_atomic_type] = STATE(448), - [sym_generic_type] = STATE(448), - [sym_function_type] = STATE(448), + [sym_reference_expression] = STATE(4498), + [sym_type_reference_expression] = STATE(3460), + [sym_plain_type] = STATE(2345), + [sym__plain_type_without_special] = STATE(2360), + [sym_anon_struct_type] = STATE(2362), + [sym_multi_return_type] = STATE(2360), + [sym_result_type] = STATE(2360), + [sym_option_type] = STATE(2360), + [sym_qualified_type] = STATE(3460), + [sym_fixed_array_type] = STATE(2362), + [sym_array_type] = STATE(2362), + [sym_pointer_type] = STATE(2362), + [sym_wrong_pointer_type] = STATE(2362), + [sym_map_type] = STATE(2362), + [sym_channel_type] = STATE(2362), + [sym_shared_type] = STATE(2362), + [sym_thread_type] = STATE(2362), + [sym_atomic_type] = STATE(2362), + [sym_generic_type] = STATE(2362), + [sym_function_type] = STATE(2362), [ts_builtin_sym_end] = ACTIONS(625), - [sym_identifier] = ACTIONS(565), + [sym_identifier] = ACTIONS(627), [anon_sym_LF] = ACTIONS(627), [anon_sym_CR] = ACTIONS(627), [anon_sym_CR_LF] = ACTIONS(627), @@ -29732,15 +29748,15 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACE] = ACTIONS(627), [anon_sym_COMMA] = ACTIONS(627), [anon_sym_const] = ACTIONS(627), - [anon_sym_LPAREN] = ACTIONS(569), + [anon_sym_LPAREN] = ACTIONS(627), [anon_sym_EQ] = ACTIONS(627), [anon_sym___global] = ACTIONS(627), [anon_sym_type] = ACTIONS(627), [anon_sym_PIPE] = ACTIONS(627), - [anon_sym_fn] = ACTIONS(571), + [anon_sym_fn] = ACTIONS(627), [anon_sym_PLUS] = ACTIONS(627), [anon_sym_DASH] = ACTIONS(627), - [anon_sym_STAR] = ACTIONS(573), + [anon_sym_STAR] = ACTIONS(627), [anon_sym_SLASH] = ACTIONS(627), [anon_sym_PERCENT] = ACTIONS(627), [anon_sym_LT] = ACTIONS(627), @@ -29750,7 +29766,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT_EQ] = ACTIONS(627), [anon_sym_GT_EQ] = ACTIONS(627), [anon_sym_LBRACK] = ACTIONS(625), - [anon_sym_struct] = ACTIONS(575), + [anon_sym_struct] = ACTIONS(627), [anon_sym_union] = ACTIONS(627), [anon_sym_pub] = ACTIONS(627), [anon_sym_mut] = ACTIONS(627), @@ -29758,15 +29774,15 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_interface] = ACTIONS(627), [anon_sym_PLUS_PLUS] = ACTIONS(627), [anon_sym_DASH_DASH] = ACTIONS(627), - [anon_sym_QMARK] = ACTIONS(577), - [anon_sym_BANG] = ACTIONS(579), + [anon_sym_QMARK] = ACTIONS(627), + [anon_sym_BANG] = ACTIONS(627), [anon_sym_go] = ACTIONS(627), [anon_sym_spawn] = ACTIONS(627), [anon_sym_json_DOTdecode] = ACTIONS(627), - [anon_sym_LBRACK2] = ACTIONS(581), + [anon_sym_LBRACK2] = ACTIONS(627), [anon_sym_TILDE] = ACTIONS(627), [anon_sym_CARET] = ACTIONS(627), - [anon_sym_AMP] = ACTIONS(583), + [anon_sym_AMP] = ACTIONS(627), [anon_sym_LT_DASH] = ACTIONS(627), [anon_sym_LT_LT] = ACTIONS(627), [anon_sym_GT_GT] = ACTIONS(627), @@ -29810,11 +29826,11 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(627), [sym_rune_literal] = ACTIONS(627), [sym_pseudo_compile_time_identifier] = ACTIONS(627), - [anon_sym_shared] = ACTIONS(585), - [anon_sym_map_LBRACK] = ACTIONS(587), - [anon_sym_chan] = ACTIONS(589), - [anon_sym_thread] = ACTIONS(591), - [anon_sym_atomic] = ACTIONS(593), + [anon_sym_shared] = ACTIONS(627), + [anon_sym_map_LBRACK] = ACTIONS(627), + [anon_sym_chan] = ACTIONS(627), + [anon_sym_thread] = ACTIONS(627), + [anon_sym_atomic] = ACTIONS(627), [anon_sym_assert] = ACTIONS(627), [anon_sym_defer] = ACTIONS(627), [anon_sym_goto] = ACTIONS(627), @@ -29836,78 +29852,78 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [72] = { [sym_line_comment] = STATE(72), [sym_block_comment] = STATE(72), - [sym_struct_field_scope] = STATE(3389), - [sym_struct_field_declaration] = STATE(3389), + [sym_struct_field_scope] = STATE(3390), + [sym_struct_field_declaration] = STATE(3390), [sym__struct_field_definition] = STATE(3391), - [sym_embedded_definition] = STATE(3396), - [sym__expression] = STATE(1133), - [sym__expression_without_blocks] = STATE(1141), - [sym__expression_with_blocks] = STATE(1141), - [sym_inc_expression] = STATE(1140), - [sym_dec_expression] = STATE(1140), - [sym_or_block_expression] = STATE(1140), - [sym_option_propagation_expression] = STATE(1140), - [sym_result_propagation_expression] = STATE(1140), - [sym_anon_struct_value_expression] = STATE(1199), - [sym_go_expression] = STATE(1140), - [sym_spawn_expression] = STATE(1140), - [sym_parenthesized_expression] = STATE(1140), - [sym_call_expression] = STATE(1140), - [sym_type_initializer] = STATE(1199), - [sym_element_list] = STATE(4381), - [sym_short_element_list] = STATE(4343), - [sym_keyed_element] = STATE(3398), - [sym_function_literal] = STATE(1140), - [sym_reference_expression] = STATE(1200), + [sym_embedded_definition] = STATE(3392), + [sym__expression] = STATE(1128), + [sym__expression_without_blocks] = STATE(1210), + [sym__expression_with_blocks] = STATE(1210), + [sym_inc_expression] = STATE(1211), + [sym_dec_expression] = STATE(1211), + [sym_or_block_expression] = STATE(1211), + [sym_option_propagation_expression] = STATE(1211), + [sym_result_propagation_expression] = STATE(1211), + [sym_anon_struct_value_expression] = STATE(1212), + [sym_go_expression] = STATE(1211), + [sym_spawn_expression] = STATE(1211), + [sym_parenthesized_expression] = STATE(1211), + [sym_call_expression] = STATE(1211), + [sym_type_initializer] = STATE(1212), + [sym_element_list] = STATE(4444), + [sym_short_element_list] = STATE(4448), + [sym_keyed_element] = STATE(3387), + [sym_function_literal] = STATE(1211), + [sym_reference_expression] = STATE(1220), [sym_type_reference_expression] = STATE(3346), - [sym_unary_expression] = STATE(1140), - [sym_receive_expression] = STATE(1140), - [sym_binary_expression] = STATE(1140), - [sym_as_type_cast_expression] = STATE(1140), - [sym__max_group] = STATE(1140), - [sym_literal] = STATE(1146), - [sym_spread_expression] = STATE(3398), - [sym_map_init_expression] = STATE(1199), - [sym_array_creation] = STATE(1140), - [sym_fixed_array_creation] = STATE(1140), - [sym_selector_expression] = STATE(1140), - [sym_index_expression] = STATE(1140), - [sym_slice_expression] = STATE(1140), - [sym_if_expression] = STATE(1199), - [sym_compile_time_if_expression] = STATE(1199), - [sym_is_expression] = STATE(1140), - [sym_in_expression] = STATE(1140), - [sym_enum_fetch] = STATE(1140), - [sym_match_expression] = STATE(1199), - [sym_select_expression] = STATE(1199), - [sym_lock_expression] = STATE(1199), - [sym_unsafe_expression] = STATE(1199), - [sym_sql_expression] = STATE(1199), - [sym_c_string_literal] = STATE(1147), - [sym_raw_string_literal] = STATE(1147), - [sym_interpreted_string_literal] = STATE(1147), - [sym_mutability_modifiers] = STATE(638), - [sym_plain_type] = STATE(4234), - [sym__plain_type_without_special] = STATE(2302), - [sym_anon_struct_type] = STATE(2303), - [sym_multi_return_type] = STATE(2302), - [sym_result_type] = STATE(2302), - [sym_option_type] = STATE(2302), + [sym_unary_expression] = STATE(1211), + [sym_receive_expression] = STATE(1211), + [sym_binary_expression] = STATE(1211), + [sym_as_type_cast_expression] = STATE(1211), + [sym__max_group] = STATE(1211), + [sym_literal] = STATE(1209), + [sym_spread_expression] = STATE(3387), + [sym_map_init_expression] = STATE(1212), + [sym_array_creation] = STATE(1211), + [sym_fixed_array_creation] = STATE(1211), + [sym_selector_expression] = STATE(1211), + [sym_index_expression] = STATE(1211), + [sym_slice_expression] = STATE(1211), + [sym_if_expression] = STATE(1212), + [sym_compile_time_if_expression] = STATE(1212), + [sym_is_expression] = STATE(1211), + [sym_in_expression] = STATE(1211), + [sym_enum_fetch] = STATE(1211), + [sym_match_expression] = STATE(1212), + [sym_select_expression] = STATE(1212), + [sym_lock_expression] = STATE(1212), + [sym_unsafe_expression] = STATE(1212), + [sym_sql_expression] = STATE(1212), + [sym_c_string_literal] = STATE(1201), + [sym_raw_string_literal] = STATE(1201), + [sym_interpreted_string_literal] = STATE(1201), + [sym_mutability_modifiers] = STATE(589), + [sym_plain_type] = STATE(4123), + [sym__plain_type_without_special] = STATE(2360), + [sym_anon_struct_type] = STATE(2362), + [sym_multi_return_type] = STATE(2360), + [sym_result_type] = STATE(2360), + [sym_option_type] = STATE(2360), [sym_qualified_type] = STATE(3346), - [sym_fixed_array_type] = STATE(2303), - [sym_array_type] = STATE(2303), - [sym_pointer_type] = STATE(2303), - [sym_wrong_pointer_type] = STATE(2303), - [sym_map_type] = STATE(2303), - [sym_channel_type] = STATE(2303), - [sym_shared_type] = STATE(2303), - [sym_thread_type] = STATE(2303), - [sym_atomic_type] = STATE(2303), - [sym_generic_type] = STATE(3377), - [sym_function_type] = STATE(2303), - [aux_sym__struct_body_repeat1] = STATE(3313), - [aux_sym_element_list_repeat1] = STATE(3400), - [aux_sym_short_element_list_repeat1] = STATE(374), + [sym_fixed_array_type] = STATE(2362), + [sym_array_type] = STATE(2362), + [sym_pointer_type] = STATE(2362), + [sym_wrong_pointer_type] = STATE(2362), + [sym_map_type] = STATE(2362), + [sym_channel_type] = STATE(2362), + [sym_shared_type] = STATE(2362), + [sym_thread_type] = STATE(2362), + [sym_atomic_type] = STATE(2362), + [sym_generic_type] = STATE(3371), + [sym_function_type] = STATE(2362), + [aux_sym__struct_body_repeat1] = STATE(3324), + [aux_sym_element_list_repeat1] = STATE(3413), + [aux_sym_short_element_list_repeat1] = STATE(375), [sym_identifier] = ACTIONS(629), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), @@ -29965,78 +29981,78 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [73] = { [sym_line_comment] = STATE(73), [sym_block_comment] = STATE(73), - [sym_struct_field_scope] = STATE(3389), - [sym_struct_field_declaration] = STATE(3389), + [sym_struct_field_scope] = STATE(3390), + [sym_struct_field_declaration] = STATE(3390), [sym__struct_field_definition] = STATE(3391), - [sym_embedded_definition] = STATE(3396), - [sym__expression] = STATE(1133), - [sym__expression_without_blocks] = STATE(1141), - [sym__expression_with_blocks] = STATE(1141), - [sym_inc_expression] = STATE(1140), - [sym_dec_expression] = STATE(1140), - [sym_or_block_expression] = STATE(1140), - [sym_option_propagation_expression] = STATE(1140), - [sym_result_propagation_expression] = STATE(1140), - [sym_anon_struct_value_expression] = STATE(1199), - [sym_go_expression] = STATE(1140), - [sym_spawn_expression] = STATE(1140), - [sym_parenthesized_expression] = STATE(1140), - [sym_call_expression] = STATE(1140), - [sym_type_initializer] = STATE(1199), - [sym_element_list] = STATE(4550), - [sym_short_element_list] = STATE(4559), - [sym_keyed_element] = STATE(3398), - [sym_function_literal] = STATE(1140), - [sym_reference_expression] = STATE(1200), + [sym_embedded_definition] = STATE(3392), + [sym__expression] = STATE(1128), + [sym__expression_without_blocks] = STATE(1210), + [sym__expression_with_blocks] = STATE(1210), + [sym_inc_expression] = STATE(1211), + [sym_dec_expression] = STATE(1211), + [sym_or_block_expression] = STATE(1211), + [sym_option_propagation_expression] = STATE(1211), + [sym_result_propagation_expression] = STATE(1211), + [sym_anon_struct_value_expression] = STATE(1212), + [sym_go_expression] = STATE(1211), + [sym_spawn_expression] = STATE(1211), + [sym_parenthesized_expression] = STATE(1211), + [sym_call_expression] = STATE(1211), + [sym_type_initializer] = STATE(1212), + [sym_element_list] = STATE(4578), + [sym_short_element_list] = STATE(4583), + [sym_keyed_element] = STATE(3387), + [sym_function_literal] = STATE(1211), + [sym_reference_expression] = STATE(1220), [sym_type_reference_expression] = STATE(3346), - [sym_unary_expression] = STATE(1140), - [sym_receive_expression] = STATE(1140), - [sym_binary_expression] = STATE(1140), - [sym_as_type_cast_expression] = STATE(1140), - [sym__max_group] = STATE(1140), - [sym_literal] = STATE(1146), - [sym_spread_expression] = STATE(3398), - [sym_map_init_expression] = STATE(1199), - [sym_array_creation] = STATE(1140), - [sym_fixed_array_creation] = STATE(1140), - [sym_selector_expression] = STATE(1140), - [sym_index_expression] = STATE(1140), - [sym_slice_expression] = STATE(1140), - [sym_if_expression] = STATE(1199), - [sym_compile_time_if_expression] = STATE(1199), - [sym_is_expression] = STATE(1140), - [sym_in_expression] = STATE(1140), - [sym_enum_fetch] = STATE(1140), - [sym_match_expression] = STATE(1199), - [sym_select_expression] = STATE(1199), - [sym_lock_expression] = STATE(1199), - [sym_unsafe_expression] = STATE(1199), - [sym_sql_expression] = STATE(1199), - [sym_c_string_literal] = STATE(1147), - [sym_raw_string_literal] = STATE(1147), - [sym_interpreted_string_literal] = STATE(1147), - [sym_mutability_modifiers] = STATE(638), - [sym_plain_type] = STATE(4234), - [sym__plain_type_without_special] = STATE(2302), - [sym_anon_struct_type] = STATE(2303), - [sym_multi_return_type] = STATE(2302), - [sym_result_type] = STATE(2302), - [sym_option_type] = STATE(2302), + [sym_unary_expression] = STATE(1211), + [sym_receive_expression] = STATE(1211), + [sym_binary_expression] = STATE(1211), + [sym_as_type_cast_expression] = STATE(1211), + [sym__max_group] = STATE(1211), + [sym_literal] = STATE(1209), + [sym_spread_expression] = STATE(3387), + [sym_map_init_expression] = STATE(1212), + [sym_array_creation] = STATE(1211), + [sym_fixed_array_creation] = STATE(1211), + [sym_selector_expression] = STATE(1211), + [sym_index_expression] = STATE(1211), + [sym_slice_expression] = STATE(1211), + [sym_if_expression] = STATE(1212), + [sym_compile_time_if_expression] = STATE(1212), + [sym_is_expression] = STATE(1211), + [sym_in_expression] = STATE(1211), + [sym_enum_fetch] = STATE(1211), + [sym_match_expression] = STATE(1212), + [sym_select_expression] = STATE(1212), + [sym_lock_expression] = STATE(1212), + [sym_unsafe_expression] = STATE(1212), + [sym_sql_expression] = STATE(1212), + [sym_c_string_literal] = STATE(1201), + [sym_raw_string_literal] = STATE(1201), + [sym_interpreted_string_literal] = STATE(1201), + [sym_mutability_modifiers] = STATE(589), + [sym_plain_type] = STATE(4123), + [sym__plain_type_without_special] = STATE(2360), + [sym_anon_struct_type] = STATE(2362), + [sym_multi_return_type] = STATE(2360), + [sym_result_type] = STATE(2360), + [sym_option_type] = STATE(2360), [sym_qualified_type] = STATE(3346), - [sym_fixed_array_type] = STATE(2303), - [sym_array_type] = STATE(2303), - [sym_pointer_type] = STATE(2303), - [sym_wrong_pointer_type] = STATE(2303), - [sym_map_type] = STATE(2303), - [sym_channel_type] = STATE(2303), - [sym_shared_type] = STATE(2303), - [sym_thread_type] = STATE(2303), - [sym_atomic_type] = STATE(2303), - [sym_generic_type] = STATE(3377), - [sym_function_type] = STATE(2303), - [aux_sym__struct_body_repeat1] = STATE(3313), - [aux_sym_element_list_repeat1] = STATE(3400), - [aux_sym_short_element_list_repeat1] = STATE(374), + [sym_fixed_array_type] = STATE(2362), + [sym_array_type] = STATE(2362), + [sym_pointer_type] = STATE(2362), + [sym_wrong_pointer_type] = STATE(2362), + [sym_map_type] = STATE(2362), + [sym_channel_type] = STATE(2362), + [sym_shared_type] = STATE(2362), + [sym_thread_type] = STATE(2362), + [sym_atomic_type] = STATE(2362), + [sym_generic_type] = STATE(3371), + [sym_function_type] = STATE(2362), + [aux_sym__struct_body_repeat1] = STATE(3324), + [aux_sym_element_list_repeat1] = STATE(3413), + [aux_sym_short_element_list_repeat1] = STATE(375), [sym_identifier] = ACTIONS(629), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), @@ -30094,78 +30110,78 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [74] = { [sym_line_comment] = STATE(74), [sym_block_comment] = STATE(74), - [sym_struct_field_scope] = STATE(3389), - [sym_struct_field_declaration] = STATE(3389), + [sym_struct_field_scope] = STATE(3390), + [sym_struct_field_declaration] = STATE(3390), [sym__struct_field_definition] = STATE(3391), - [sym_embedded_definition] = STATE(3396), - [sym__expression] = STATE(1133), - [sym__expression_without_blocks] = STATE(1141), - [sym__expression_with_blocks] = STATE(1141), - [sym_inc_expression] = STATE(1140), - [sym_dec_expression] = STATE(1140), - [sym_or_block_expression] = STATE(1140), - [sym_option_propagation_expression] = STATE(1140), - [sym_result_propagation_expression] = STATE(1140), - [sym_anon_struct_value_expression] = STATE(1199), - [sym_go_expression] = STATE(1140), - [sym_spawn_expression] = STATE(1140), - [sym_parenthesized_expression] = STATE(1140), - [sym_call_expression] = STATE(1140), - [sym_type_initializer] = STATE(1199), - [sym_element_list] = STATE(4509), - [sym_short_element_list] = STATE(4506), - [sym_keyed_element] = STATE(3398), - [sym_function_literal] = STATE(1140), - [sym_reference_expression] = STATE(1200), + [sym_embedded_definition] = STATE(3392), + [sym__expression] = STATE(1128), + [sym__expression_without_blocks] = STATE(1210), + [sym__expression_with_blocks] = STATE(1210), + [sym_inc_expression] = STATE(1211), + [sym_dec_expression] = STATE(1211), + [sym_or_block_expression] = STATE(1211), + [sym_option_propagation_expression] = STATE(1211), + [sym_result_propagation_expression] = STATE(1211), + [sym_anon_struct_value_expression] = STATE(1212), + [sym_go_expression] = STATE(1211), + [sym_spawn_expression] = STATE(1211), + [sym_parenthesized_expression] = STATE(1211), + [sym_call_expression] = STATE(1211), + [sym_type_initializer] = STATE(1212), + [sym_element_list] = STATE(4484), + [sym_short_element_list] = STATE(4446), + [sym_keyed_element] = STATE(3387), + [sym_function_literal] = STATE(1211), + [sym_reference_expression] = STATE(1220), [sym_type_reference_expression] = STATE(3346), - [sym_unary_expression] = STATE(1140), - [sym_receive_expression] = STATE(1140), - [sym_binary_expression] = STATE(1140), - [sym_as_type_cast_expression] = STATE(1140), - [sym__max_group] = STATE(1140), - [sym_literal] = STATE(1146), - [sym_spread_expression] = STATE(3398), - [sym_map_init_expression] = STATE(1199), - [sym_array_creation] = STATE(1140), - [sym_fixed_array_creation] = STATE(1140), - [sym_selector_expression] = STATE(1140), - [sym_index_expression] = STATE(1140), - [sym_slice_expression] = STATE(1140), - [sym_if_expression] = STATE(1199), - [sym_compile_time_if_expression] = STATE(1199), - [sym_is_expression] = STATE(1140), - [sym_in_expression] = STATE(1140), - [sym_enum_fetch] = STATE(1140), - [sym_match_expression] = STATE(1199), - [sym_select_expression] = STATE(1199), - [sym_lock_expression] = STATE(1199), - [sym_unsafe_expression] = STATE(1199), - [sym_sql_expression] = STATE(1199), - [sym_c_string_literal] = STATE(1147), - [sym_raw_string_literal] = STATE(1147), - [sym_interpreted_string_literal] = STATE(1147), - [sym_mutability_modifiers] = STATE(638), - [sym_plain_type] = STATE(4234), - [sym__plain_type_without_special] = STATE(2302), - [sym_anon_struct_type] = STATE(2303), - [sym_multi_return_type] = STATE(2302), - [sym_result_type] = STATE(2302), - [sym_option_type] = STATE(2302), + [sym_unary_expression] = STATE(1211), + [sym_receive_expression] = STATE(1211), + [sym_binary_expression] = STATE(1211), + [sym_as_type_cast_expression] = STATE(1211), + [sym__max_group] = STATE(1211), + [sym_literal] = STATE(1209), + [sym_spread_expression] = STATE(3387), + [sym_map_init_expression] = STATE(1212), + [sym_array_creation] = STATE(1211), + [sym_fixed_array_creation] = STATE(1211), + [sym_selector_expression] = STATE(1211), + [sym_index_expression] = STATE(1211), + [sym_slice_expression] = STATE(1211), + [sym_if_expression] = STATE(1212), + [sym_compile_time_if_expression] = STATE(1212), + [sym_is_expression] = STATE(1211), + [sym_in_expression] = STATE(1211), + [sym_enum_fetch] = STATE(1211), + [sym_match_expression] = STATE(1212), + [sym_select_expression] = STATE(1212), + [sym_lock_expression] = STATE(1212), + [sym_unsafe_expression] = STATE(1212), + [sym_sql_expression] = STATE(1212), + [sym_c_string_literal] = STATE(1201), + [sym_raw_string_literal] = STATE(1201), + [sym_interpreted_string_literal] = STATE(1201), + [sym_mutability_modifiers] = STATE(589), + [sym_plain_type] = STATE(4123), + [sym__plain_type_without_special] = STATE(2360), + [sym_anon_struct_type] = STATE(2362), + [sym_multi_return_type] = STATE(2360), + [sym_result_type] = STATE(2360), + [sym_option_type] = STATE(2360), [sym_qualified_type] = STATE(3346), - [sym_fixed_array_type] = STATE(2303), - [sym_array_type] = STATE(2303), - [sym_pointer_type] = STATE(2303), - [sym_wrong_pointer_type] = STATE(2303), - [sym_map_type] = STATE(2303), - [sym_channel_type] = STATE(2303), - [sym_shared_type] = STATE(2303), - [sym_thread_type] = STATE(2303), - [sym_atomic_type] = STATE(2303), - [sym_generic_type] = STATE(3377), - [sym_function_type] = STATE(2303), - [aux_sym__struct_body_repeat1] = STATE(3313), - [aux_sym_element_list_repeat1] = STATE(3400), - [aux_sym_short_element_list_repeat1] = STATE(374), + [sym_fixed_array_type] = STATE(2362), + [sym_array_type] = STATE(2362), + [sym_pointer_type] = STATE(2362), + [sym_wrong_pointer_type] = STATE(2362), + [sym_map_type] = STATE(2362), + [sym_channel_type] = STATE(2362), + [sym_shared_type] = STATE(2362), + [sym_thread_type] = STATE(2362), + [sym_atomic_type] = STATE(2362), + [sym_generic_type] = STATE(3371), + [sym_function_type] = STATE(2362), + [aux_sym__struct_body_repeat1] = STATE(3324), + [aux_sym_element_list_repeat1] = STATE(3413), + [aux_sym_short_element_list_repeat1] = STATE(375), [sym_identifier] = ACTIONS(629), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), @@ -30223,78 +30239,78 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [75] = { [sym_line_comment] = STATE(75), [sym_block_comment] = STATE(75), - [sym_struct_field_scope] = STATE(3389), - [sym_struct_field_declaration] = STATE(3389), + [sym_struct_field_scope] = STATE(3390), + [sym_struct_field_declaration] = STATE(3390), [sym__struct_field_definition] = STATE(3391), - [sym_embedded_definition] = STATE(3396), - [sym__expression] = STATE(1133), - [sym__expression_without_blocks] = STATE(1141), - [sym__expression_with_blocks] = STATE(1141), - [sym_inc_expression] = STATE(1140), - [sym_dec_expression] = STATE(1140), - [sym_or_block_expression] = STATE(1140), - [sym_option_propagation_expression] = STATE(1140), - [sym_result_propagation_expression] = STATE(1140), - [sym_anon_struct_value_expression] = STATE(1199), - [sym_go_expression] = STATE(1140), - [sym_spawn_expression] = STATE(1140), - [sym_parenthesized_expression] = STATE(1140), - [sym_call_expression] = STATE(1140), - [sym_type_initializer] = STATE(1199), - [sym_element_list] = STATE(4351), - [sym_short_element_list] = STATE(4350), - [sym_keyed_element] = STATE(3398), - [sym_function_literal] = STATE(1140), - [sym_reference_expression] = STATE(1200), + [sym_embedded_definition] = STATE(3392), + [sym__expression] = STATE(1128), + [sym__expression_without_blocks] = STATE(1210), + [sym__expression_with_blocks] = STATE(1210), + [sym_inc_expression] = STATE(1211), + [sym_dec_expression] = STATE(1211), + [sym_or_block_expression] = STATE(1211), + [sym_option_propagation_expression] = STATE(1211), + [sym_result_propagation_expression] = STATE(1211), + [sym_anon_struct_value_expression] = STATE(1212), + [sym_go_expression] = STATE(1211), + [sym_spawn_expression] = STATE(1211), + [sym_parenthesized_expression] = STATE(1211), + [sym_call_expression] = STATE(1211), + [sym_type_initializer] = STATE(1212), + [sym_element_list] = STATE(4357), + [sym_short_element_list] = STATE(4347), + [sym_keyed_element] = STATE(3387), + [sym_function_literal] = STATE(1211), + [sym_reference_expression] = STATE(1220), [sym_type_reference_expression] = STATE(3346), - [sym_unary_expression] = STATE(1140), - [sym_receive_expression] = STATE(1140), - [sym_binary_expression] = STATE(1140), - [sym_as_type_cast_expression] = STATE(1140), - [sym__max_group] = STATE(1140), - [sym_literal] = STATE(1146), - [sym_spread_expression] = STATE(3398), - [sym_map_init_expression] = STATE(1199), - [sym_array_creation] = STATE(1140), - [sym_fixed_array_creation] = STATE(1140), - [sym_selector_expression] = STATE(1140), - [sym_index_expression] = STATE(1140), - [sym_slice_expression] = STATE(1140), - [sym_if_expression] = STATE(1199), - [sym_compile_time_if_expression] = STATE(1199), - [sym_is_expression] = STATE(1140), - [sym_in_expression] = STATE(1140), - [sym_enum_fetch] = STATE(1140), - [sym_match_expression] = STATE(1199), - [sym_select_expression] = STATE(1199), - [sym_lock_expression] = STATE(1199), - [sym_unsafe_expression] = STATE(1199), - [sym_sql_expression] = STATE(1199), - [sym_c_string_literal] = STATE(1147), - [sym_raw_string_literal] = STATE(1147), - [sym_interpreted_string_literal] = STATE(1147), - [sym_mutability_modifiers] = STATE(638), - [sym_plain_type] = STATE(4234), - [sym__plain_type_without_special] = STATE(2302), - [sym_anon_struct_type] = STATE(2303), - [sym_multi_return_type] = STATE(2302), - [sym_result_type] = STATE(2302), - [sym_option_type] = STATE(2302), + [sym_unary_expression] = STATE(1211), + [sym_receive_expression] = STATE(1211), + [sym_binary_expression] = STATE(1211), + [sym_as_type_cast_expression] = STATE(1211), + [sym__max_group] = STATE(1211), + [sym_literal] = STATE(1209), + [sym_spread_expression] = STATE(3387), + [sym_map_init_expression] = STATE(1212), + [sym_array_creation] = STATE(1211), + [sym_fixed_array_creation] = STATE(1211), + [sym_selector_expression] = STATE(1211), + [sym_index_expression] = STATE(1211), + [sym_slice_expression] = STATE(1211), + [sym_if_expression] = STATE(1212), + [sym_compile_time_if_expression] = STATE(1212), + [sym_is_expression] = STATE(1211), + [sym_in_expression] = STATE(1211), + [sym_enum_fetch] = STATE(1211), + [sym_match_expression] = STATE(1212), + [sym_select_expression] = STATE(1212), + [sym_lock_expression] = STATE(1212), + [sym_unsafe_expression] = STATE(1212), + [sym_sql_expression] = STATE(1212), + [sym_c_string_literal] = STATE(1201), + [sym_raw_string_literal] = STATE(1201), + [sym_interpreted_string_literal] = STATE(1201), + [sym_mutability_modifiers] = STATE(589), + [sym_plain_type] = STATE(4123), + [sym__plain_type_without_special] = STATE(2360), + [sym_anon_struct_type] = STATE(2362), + [sym_multi_return_type] = STATE(2360), + [sym_result_type] = STATE(2360), + [sym_option_type] = STATE(2360), [sym_qualified_type] = STATE(3346), - [sym_fixed_array_type] = STATE(2303), - [sym_array_type] = STATE(2303), - [sym_pointer_type] = STATE(2303), - [sym_wrong_pointer_type] = STATE(2303), - [sym_map_type] = STATE(2303), - [sym_channel_type] = STATE(2303), - [sym_shared_type] = STATE(2303), - [sym_thread_type] = STATE(2303), - [sym_atomic_type] = STATE(2303), - [sym_generic_type] = STATE(3377), - [sym_function_type] = STATE(2303), - [aux_sym__struct_body_repeat1] = STATE(3313), - [aux_sym_element_list_repeat1] = STATE(3400), - [aux_sym_short_element_list_repeat1] = STATE(374), + [sym_fixed_array_type] = STATE(2362), + [sym_array_type] = STATE(2362), + [sym_pointer_type] = STATE(2362), + [sym_wrong_pointer_type] = STATE(2362), + [sym_map_type] = STATE(2362), + [sym_channel_type] = STATE(2362), + [sym_shared_type] = STATE(2362), + [sym_thread_type] = STATE(2362), + [sym_atomic_type] = STATE(2362), + [sym_generic_type] = STATE(3371), + [sym_function_type] = STATE(2362), + [aux_sym__struct_body_repeat1] = STATE(3324), + [aux_sym_element_list_repeat1] = STATE(3413), + [aux_sym_short_element_list_repeat1] = STATE(375), [sym_identifier] = ACTIONS(629), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), @@ -30352,78 +30368,78 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [76] = { [sym_line_comment] = STATE(76), [sym_block_comment] = STATE(76), - [sym_struct_field_scope] = STATE(3389), - [sym_struct_field_declaration] = STATE(3389), + [sym_struct_field_scope] = STATE(3390), + [sym_struct_field_declaration] = STATE(3390), [sym__struct_field_definition] = STATE(3391), - [sym_embedded_definition] = STATE(3396), - [sym__expression] = STATE(1133), - [sym__expression_without_blocks] = STATE(1141), - [sym__expression_with_blocks] = STATE(1141), - [sym_inc_expression] = STATE(1140), - [sym_dec_expression] = STATE(1140), - [sym_or_block_expression] = STATE(1140), - [sym_option_propagation_expression] = STATE(1140), - [sym_result_propagation_expression] = STATE(1140), - [sym_anon_struct_value_expression] = STATE(1199), - [sym_go_expression] = STATE(1140), - [sym_spawn_expression] = STATE(1140), - [sym_parenthesized_expression] = STATE(1140), - [sym_call_expression] = STATE(1140), - [sym_type_initializer] = STATE(1199), - [sym_element_list] = STATE(4432), - [sym_short_element_list] = STATE(4437), - [sym_keyed_element] = STATE(3398), - [sym_function_literal] = STATE(1140), - [sym_reference_expression] = STATE(1200), + [sym_embedded_definition] = STATE(3392), + [sym__expression] = STATE(1128), + [sym__expression_without_blocks] = STATE(1210), + [sym__expression_with_blocks] = STATE(1210), + [sym_inc_expression] = STATE(1211), + [sym_dec_expression] = STATE(1211), + [sym_or_block_expression] = STATE(1211), + [sym_option_propagation_expression] = STATE(1211), + [sym_result_propagation_expression] = STATE(1211), + [sym_anon_struct_value_expression] = STATE(1212), + [sym_go_expression] = STATE(1211), + [sym_spawn_expression] = STATE(1211), + [sym_parenthesized_expression] = STATE(1211), + [sym_call_expression] = STATE(1211), + [sym_type_initializer] = STATE(1212), + [sym_element_list] = STATE(4610), + [sym_short_element_list] = STATE(4609), + [sym_keyed_element] = STATE(3387), + [sym_function_literal] = STATE(1211), + [sym_reference_expression] = STATE(1220), [sym_type_reference_expression] = STATE(3346), - [sym_unary_expression] = STATE(1140), - [sym_receive_expression] = STATE(1140), - [sym_binary_expression] = STATE(1140), - [sym_as_type_cast_expression] = STATE(1140), - [sym__max_group] = STATE(1140), - [sym_literal] = STATE(1146), - [sym_spread_expression] = STATE(3398), - [sym_map_init_expression] = STATE(1199), - [sym_array_creation] = STATE(1140), - [sym_fixed_array_creation] = STATE(1140), - [sym_selector_expression] = STATE(1140), - [sym_index_expression] = STATE(1140), - [sym_slice_expression] = STATE(1140), - [sym_if_expression] = STATE(1199), - [sym_compile_time_if_expression] = STATE(1199), - [sym_is_expression] = STATE(1140), - [sym_in_expression] = STATE(1140), - [sym_enum_fetch] = STATE(1140), - [sym_match_expression] = STATE(1199), - [sym_select_expression] = STATE(1199), - [sym_lock_expression] = STATE(1199), - [sym_unsafe_expression] = STATE(1199), - [sym_sql_expression] = STATE(1199), - [sym_c_string_literal] = STATE(1147), - [sym_raw_string_literal] = STATE(1147), - [sym_interpreted_string_literal] = STATE(1147), - [sym_mutability_modifiers] = STATE(638), - [sym_plain_type] = STATE(4234), - [sym__plain_type_without_special] = STATE(2302), - [sym_anon_struct_type] = STATE(2303), - [sym_multi_return_type] = STATE(2302), - [sym_result_type] = STATE(2302), - [sym_option_type] = STATE(2302), + [sym_unary_expression] = STATE(1211), + [sym_receive_expression] = STATE(1211), + [sym_binary_expression] = STATE(1211), + [sym_as_type_cast_expression] = STATE(1211), + [sym__max_group] = STATE(1211), + [sym_literal] = STATE(1209), + [sym_spread_expression] = STATE(3387), + [sym_map_init_expression] = STATE(1212), + [sym_array_creation] = STATE(1211), + [sym_fixed_array_creation] = STATE(1211), + [sym_selector_expression] = STATE(1211), + [sym_index_expression] = STATE(1211), + [sym_slice_expression] = STATE(1211), + [sym_if_expression] = STATE(1212), + [sym_compile_time_if_expression] = STATE(1212), + [sym_is_expression] = STATE(1211), + [sym_in_expression] = STATE(1211), + [sym_enum_fetch] = STATE(1211), + [sym_match_expression] = STATE(1212), + [sym_select_expression] = STATE(1212), + [sym_lock_expression] = STATE(1212), + [sym_unsafe_expression] = STATE(1212), + [sym_sql_expression] = STATE(1212), + [sym_c_string_literal] = STATE(1201), + [sym_raw_string_literal] = STATE(1201), + [sym_interpreted_string_literal] = STATE(1201), + [sym_mutability_modifiers] = STATE(589), + [sym_plain_type] = STATE(4123), + [sym__plain_type_without_special] = STATE(2360), + [sym_anon_struct_type] = STATE(2362), + [sym_multi_return_type] = STATE(2360), + [sym_result_type] = STATE(2360), + [sym_option_type] = STATE(2360), [sym_qualified_type] = STATE(3346), - [sym_fixed_array_type] = STATE(2303), - [sym_array_type] = STATE(2303), - [sym_pointer_type] = STATE(2303), - [sym_wrong_pointer_type] = STATE(2303), - [sym_map_type] = STATE(2303), - [sym_channel_type] = STATE(2303), - [sym_shared_type] = STATE(2303), - [sym_thread_type] = STATE(2303), - [sym_atomic_type] = STATE(2303), - [sym_generic_type] = STATE(3377), - [sym_function_type] = STATE(2303), - [aux_sym__struct_body_repeat1] = STATE(3313), - [aux_sym_element_list_repeat1] = STATE(3400), - [aux_sym_short_element_list_repeat1] = STATE(374), + [sym_fixed_array_type] = STATE(2362), + [sym_array_type] = STATE(2362), + [sym_pointer_type] = STATE(2362), + [sym_wrong_pointer_type] = STATE(2362), + [sym_map_type] = STATE(2362), + [sym_channel_type] = STATE(2362), + [sym_shared_type] = STATE(2362), + [sym_thread_type] = STATE(2362), + [sym_atomic_type] = STATE(2362), + [sym_generic_type] = STATE(3371), + [sym_function_type] = STATE(2362), + [aux_sym__struct_body_repeat1] = STATE(3324), + [aux_sym_element_list_repeat1] = STATE(3413), + [aux_sym_short_element_list_repeat1] = STATE(375), [sym_identifier] = ACTIONS(629), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), @@ -30481,78 +30497,78 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [77] = { [sym_line_comment] = STATE(77), [sym_block_comment] = STATE(77), - [sym_struct_field_scope] = STATE(3389), - [sym_struct_field_declaration] = STATE(3389), + [sym_struct_field_scope] = STATE(3390), + [sym_struct_field_declaration] = STATE(3390), [sym__struct_field_definition] = STATE(3391), - [sym_embedded_definition] = STATE(3396), - [sym__expression] = STATE(1133), - [sym__expression_without_blocks] = STATE(1141), - [sym__expression_with_blocks] = STATE(1141), - [sym_inc_expression] = STATE(1140), - [sym_dec_expression] = STATE(1140), - [sym_or_block_expression] = STATE(1140), - [sym_option_propagation_expression] = STATE(1140), - [sym_result_propagation_expression] = STATE(1140), - [sym_anon_struct_value_expression] = STATE(1199), - [sym_go_expression] = STATE(1140), - [sym_spawn_expression] = STATE(1140), - [sym_parenthesized_expression] = STATE(1140), - [sym_call_expression] = STATE(1140), - [sym_type_initializer] = STATE(1199), - [sym_element_list] = STATE(4539), - [sym_short_element_list] = STATE(4549), - [sym_keyed_element] = STATE(3398), - [sym_function_literal] = STATE(1140), - [sym_reference_expression] = STATE(1200), + [sym_embedded_definition] = STATE(3392), + [sym__expression] = STATE(1128), + [sym__expression_without_blocks] = STATE(1210), + [sym__expression_with_blocks] = STATE(1210), + [sym_inc_expression] = STATE(1211), + [sym_dec_expression] = STATE(1211), + [sym_or_block_expression] = STATE(1211), + [sym_option_propagation_expression] = STATE(1211), + [sym_result_propagation_expression] = STATE(1211), + [sym_anon_struct_value_expression] = STATE(1212), + [sym_go_expression] = STATE(1211), + [sym_spawn_expression] = STATE(1211), + [sym_parenthesized_expression] = STATE(1211), + [sym_call_expression] = STATE(1211), + [sym_type_initializer] = STATE(1212), + [sym_element_list] = STATE(4441), + [sym_short_element_list] = STATE(4442), + [sym_keyed_element] = STATE(3387), + [sym_function_literal] = STATE(1211), + [sym_reference_expression] = STATE(1220), [sym_type_reference_expression] = STATE(3346), - [sym_unary_expression] = STATE(1140), - [sym_receive_expression] = STATE(1140), - [sym_binary_expression] = STATE(1140), - [sym_as_type_cast_expression] = STATE(1140), - [sym__max_group] = STATE(1140), - [sym_literal] = STATE(1146), - [sym_spread_expression] = STATE(3398), - [sym_map_init_expression] = STATE(1199), - [sym_array_creation] = STATE(1140), - [sym_fixed_array_creation] = STATE(1140), - [sym_selector_expression] = STATE(1140), - [sym_index_expression] = STATE(1140), - [sym_slice_expression] = STATE(1140), - [sym_if_expression] = STATE(1199), - [sym_compile_time_if_expression] = STATE(1199), - [sym_is_expression] = STATE(1140), - [sym_in_expression] = STATE(1140), - [sym_enum_fetch] = STATE(1140), - [sym_match_expression] = STATE(1199), - [sym_select_expression] = STATE(1199), - [sym_lock_expression] = STATE(1199), - [sym_unsafe_expression] = STATE(1199), - [sym_sql_expression] = STATE(1199), - [sym_c_string_literal] = STATE(1147), - [sym_raw_string_literal] = STATE(1147), - [sym_interpreted_string_literal] = STATE(1147), - [sym_mutability_modifiers] = STATE(638), - [sym_plain_type] = STATE(4234), - [sym__plain_type_without_special] = STATE(2302), - [sym_anon_struct_type] = STATE(2303), - [sym_multi_return_type] = STATE(2302), - [sym_result_type] = STATE(2302), - [sym_option_type] = STATE(2302), + [sym_unary_expression] = STATE(1211), + [sym_receive_expression] = STATE(1211), + [sym_binary_expression] = STATE(1211), + [sym_as_type_cast_expression] = STATE(1211), + [sym__max_group] = STATE(1211), + [sym_literal] = STATE(1209), + [sym_spread_expression] = STATE(3387), + [sym_map_init_expression] = STATE(1212), + [sym_array_creation] = STATE(1211), + [sym_fixed_array_creation] = STATE(1211), + [sym_selector_expression] = STATE(1211), + [sym_index_expression] = STATE(1211), + [sym_slice_expression] = STATE(1211), + [sym_if_expression] = STATE(1212), + [sym_compile_time_if_expression] = STATE(1212), + [sym_is_expression] = STATE(1211), + [sym_in_expression] = STATE(1211), + [sym_enum_fetch] = STATE(1211), + [sym_match_expression] = STATE(1212), + [sym_select_expression] = STATE(1212), + [sym_lock_expression] = STATE(1212), + [sym_unsafe_expression] = STATE(1212), + [sym_sql_expression] = STATE(1212), + [sym_c_string_literal] = STATE(1201), + [sym_raw_string_literal] = STATE(1201), + [sym_interpreted_string_literal] = STATE(1201), + [sym_mutability_modifiers] = STATE(589), + [sym_plain_type] = STATE(4123), + [sym__plain_type_without_special] = STATE(2360), + [sym_anon_struct_type] = STATE(2362), + [sym_multi_return_type] = STATE(2360), + [sym_result_type] = STATE(2360), + [sym_option_type] = STATE(2360), [sym_qualified_type] = STATE(3346), - [sym_fixed_array_type] = STATE(2303), - [sym_array_type] = STATE(2303), - [sym_pointer_type] = STATE(2303), - [sym_wrong_pointer_type] = STATE(2303), - [sym_map_type] = STATE(2303), - [sym_channel_type] = STATE(2303), - [sym_shared_type] = STATE(2303), - [sym_thread_type] = STATE(2303), - [sym_atomic_type] = STATE(2303), - [sym_generic_type] = STATE(3377), - [sym_function_type] = STATE(2303), - [aux_sym__struct_body_repeat1] = STATE(3313), - [aux_sym_element_list_repeat1] = STATE(3400), - [aux_sym_short_element_list_repeat1] = STATE(374), + [sym_fixed_array_type] = STATE(2362), + [sym_array_type] = STATE(2362), + [sym_pointer_type] = STATE(2362), + [sym_wrong_pointer_type] = STATE(2362), + [sym_map_type] = STATE(2362), + [sym_channel_type] = STATE(2362), + [sym_shared_type] = STATE(2362), + [sym_thread_type] = STATE(2362), + [sym_atomic_type] = STATE(2362), + [sym_generic_type] = STATE(3371), + [sym_function_type] = STATE(2362), + [aux_sym__struct_body_repeat1] = STATE(3324), + [aux_sym_element_list_repeat1] = STATE(3413), + [aux_sym_short_element_list_repeat1] = STATE(375), [sym_identifier] = ACTIONS(629), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), @@ -30610,78 +30626,78 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [78] = { [sym_line_comment] = STATE(78), [sym_block_comment] = STATE(78), - [sym_struct_field_scope] = STATE(3389), - [sym_struct_field_declaration] = STATE(3389), + [sym_struct_field_scope] = STATE(3390), + [sym_struct_field_declaration] = STATE(3390), [sym__struct_field_definition] = STATE(3391), - [sym_embedded_definition] = STATE(3396), - [sym__expression] = STATE(1133), - [sym__expression_without_blocks] = STATE(1141), - [sym__expression_with_blocks] = STATE(1141), - [sym_inc_expression] = STATE(1140), - [sym_dec_expression] = STATE(1140), - [sym_or_block_expression] = STATE(1140), - [sym_option_propagation_expression] = STATE(1140), - [sym_result_propagation_expression] = STATE(1140), - [sym_anon_struct_value_expression] = STATE(1199), - [sym_go_expression] = STATE(1140), - [sym_spawn_expression] = STATE(1140), - [sym_parenthesized_expression] = STATE(1140), - [sym_call_expression] = STATE(1140), - [sym_type_initializer] = STATE(1199), - [sym_element_list] = STATE(4353), - [sym_short_element_list] = STATE(4352), - [sym_keyed_element] = STATE(3398), - [sym_function_literal] = STATE(1140), - [sym_reference_expression] = STATE(1200), + [sym_embedded_definition] = STATE(3392), + [sym__expression] = STATE(1128), + [sym__expression_without_blocks] = STATE(1210), + [sym__expression_with_blocks] = STATE(1210), + [sym_inc_expression] = STATE(1211), + [sym_dec_expression] = STATE(1211), + [sym_or_block_expression] = STATE(1211), + [sym_option_propagation_expression] = STATE(1211), + [sym_result_propagation_expression] = STATE(1211), + [sym_anon_struct_value_expression] = STATE(1212), + [sym_go_expression] = STATE(1211), + [sym_spawn_expression] = STATE(1211), + [sym_parenthesized_expression] = STATE(1211), + [sym_call_expression] = STATE(1211), + [sym_type_initializer] = STATE(1212), + [sym_element_list] = STATE(4467), + [sym_short_element_list] = STATE(4463), + [sym_keyed_element] = STATE(3387), + [sym_function_literal] = STATE(1211), + [sym_reference_expression] = STATE(1220), [sym_type_reference_expression] = STATE(3346), - [sym_unary_expression] = STATE(1140), - [sym_receive_expression] = STATE(1140), - [sym_binary_expression] = STATE(1140), - [sym_as_type_cast_expression] = STATE(1140), - [sym__max_group] = STATE(1140), - [sym_literal] = STATE(1146), - [sym_spread_expression] = STATE(3398), - [sym_map_init_expression] = STATE(1199), - [sym_array_creation] = STATE(1140), - [sym_fixed_array_creation] = STATE(1140), - [sym_selector_expression] = STATE(1140), - [sym_index_expression] = STATE(1140), - [sym_slice_expression] = STATE(1140), - [sym_if_expression] = STATE(1199), - [sym_compile_time_if_expression] = STATE(1199), - [sym_is_expression] = STATE(1140), - [sym_in_expression] = STATE(1140), - [sym_enum_fetch] = STATE(1140), - [sym_match_expression] = STATE(1199), - [sym_select_expression] = STATE(1199), - [sym_lock_expression] = STATE(1199), - [sym_unsafe_expression] = STATE(1199), - [sym_sql_expression] = STATE(1199), - [sym_c_string_literal] = STATE(1147), - [sym_raw_string_literal] = STATE(1147), - [sym_interpreted_string_literal] = STATE(1147), - [sym_mutability_modifiers] = STATE(638), - [sym_plain_type] = STATE(4234), - [sym__plain_type_without_special] = STATE(2302), - [sym_anon_struct_type] = STATE(2303), - [sym_multi_return_type] = STATE(2302), - [sym_result_type] = STATE(2302), - [sym_option_type] = STATE(2302), + [sym_unary_expression] = STATE(1211), + [sym_receive_expression] = STATE(1211), + [sym_binary_expression] = STATE(1211), + [sym_as_type_cast_expression] = STATE(1211), + [sym__max_group] = STATE(1211), + [sym_literal] = STATE(1209), + [sym_spread_expression] = STATE(3387), + [sym_map_init_expression] = STATE(1212), + [sym_array_creation] = STATE(1211), + [sym_fixed_array_creation] = STATE(1211), + [sym_selector_expression] = STATE(1211), + [sym_index_expression] = STATE(1211), + [sym_slice_expression] = STATE(1211), + [sym_if_expression] = STATE(1212), + [sym_compile_time_if_expression] = STATE(1212), + [sym_is_expression] = STATE(1211), + [sym_in_expression] = STATE(1211), + [sym_enum_fetch] = STATE(1211), + [sym_match_expression] = STATE(1212), + [sym_select_expression] = STATE(1212), + [sym_lock_expression] = STATE(1212), + [sym_unsafe_expression] = STATE(1212), + [sym_sql_expression] = STATE(1212), + [sym_c_string_literal] = STATE(1201), + [sym_raw_string_literal] = STATE(1201), + [sym_interpreted_string_literal] = STATE(1201), + [sym_mutability_modifiers] = STATE(589), + [sym_plain_type] = STATE(4123), + [sym__plain_type_without_special] = STATE(2360), + [sym_anon_struct_type] = STATE(2362), + [sym_multi_return_type] = STATE(2360), + [sym_result_type] = STATE(2360), + [sym_option_type] = STATE(2360), [sym_qualified_type] = STATE(3346), - [sym_fixed_array_type] = STATE(2303), - [sym_array_type] = STATE(2303), - [sym_pointer_type] = STATE(2303), - [sym_wrong_pointer_type] = STATE(2303), - [sym_map_type] = STATE(2303), - [sym_channel_type] = STATE(2303), - [sym_shared_type] = STATE(2303), - [sym_thread_type] = STATE(2303), - [sym_atomic_type] = STATE(2303), - [sym_generic_type] = STATE(3377), - [sym_function_type] = STATE(2303), - [aux_sym__struct_body_repeat1] = STATE(3313), - [aux_sym_element_list_repeat1] = STATE(3400), - [aux_sym_short_element_list_repeat1] = STATE(374), + [sym_fixed_array_type] = STATE(2362), + [sym_array_type] = STATE(2362), + [sym_pointer_type] = STATE(2362), + [sym_wrong_pointer_type] = STATE(2362), + [sym_map_type] = STATE(2362), + [sym_channel_type] = STATE(2362), + [sym_shared_type] = STATE(2362), + [sym_thread_type] = STATE(2362), + [sym_atomic_type] = STATE(2362), + [sym_generic_type] = STATE(3371), + [sym_function_type] = STATE(2362), + [aux_sym__struct_body_repeat1] = STATE(3324), + [aux_sym_element_list_repeat1] = STATE(3413), + [aux_sym_short_element_list_repeat1] = STATE(375), [sym_identifier] = ACTIONS(629), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), @@ -30739,78 +30755,78 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [79] = { [sym_line_comment] = STATE(79), [sym_block_comment] = STATE(79), - [sym_struct_field_scope] = STATE(3389), - [sym_struct_field_declaration] = STATE(3389), + [sym_struct_field_scope] = STATE(3390), + [sym_struct_field_declaration] = STATE(3390), [sym__struct_field_definition] = STATE(3391), - [sym_embedded_definition] = STATE(3396), - [sym__expression] = STATE(1133), - [sym__expression_without_blocks] = STATE(1141), - [sym__expression_with_blocks] = STATE(1141), - [sym_inc_expression] = STATE(1140), - [sym_dec_expression] = STATE(1140), - [sym_or_block_expression] = STATE(1140), - [sym_option_propagation_expression] = STATE(1140), - [sym_result_propagation_expression] = STATE(1140), - [sym_anon_struct_value_expression] = STATE(1199), - [sym_go_expression] = STATE(1140), - [sym_spawn_expression] = STATE(1140), - [sym_parenthesized_expression] = STATE(1140), - [sym_call_expression] = STATE(1140), - [sym_type_initializer] = STATE(1199), - [sym_element_list] = STATE(4375), - [sym_short_element_list] = STATE(4374), - [sym_keyed_element] = STATE(3398), - [sym_function_literal] = STATE(1140), - [sym_reference_expression] = STATE(1200), + [sym_embedded_definition] = STATE(3392), + [sym__expression] = STATE(1128), + [sym__expression_without_blocks] = STATE(1210), + [sym__expression_with_blocks] = STATE(1210), + [sym_inc_expression] = STATE(1211), + [sym_dec_expression] = STATE(1211), + [sym_or_block_expression] = STATE(1211), + [sym_option_propagation_expression] = STATE(1211), + [sym_result_propagation_expression] = STATE(1211), + [sym_anon_struct_value_expression] = STATE(1212), + [sym_go_expression] = STATE(1211), + [sym_spawn_expression] = STATE(1211), + [sym_parenthesized_expression] = STATE(1211), + [sym_call_expression] = STATE(1211), + [sym_type_initializer] = STATE(1212), + [sym_element_list] = STATE(4596), + [sym_short_element_list] = STATE(4601), + [sym_keyed_element] = STATE(3387), + [sym_function_literal] = STATE(1211), + [sym_reference_expression] = STATE(1220), [sym_type_reference_expression] = STATE(3346), - [sym_unary_expression] = STATE(1140), - [sym_receive_expression] = STATE(1140), - [sym_binary_expression] = STATE(1140), - [sym_as_type_cast_expression] = STATE(1140), - [sym__max_group] = STATE(1140), - [sym_literal] = STATE(1146), - [sym_spread_expression] = STATE(3398), - [sym_map_init_expression] = STATE(1199), - [sym_array_creation] = STATE(1140), - [sym_fixed_array_creation] = STATE(1140), - [sym_selector_expression] = STATE(1140), - [sym_index_expression] = STATE(1140), - [sym_slice_expression] = STATE(1140), - [sym_if_expression] = STATE(1199), - [sym_compile_time_if_expression] = STATE(1199), - [sym_is_expression] = STATE(1140), - [sym_in_expression] = STATE(1140), - [sym_enum_fetch] = STATE(1140), - [sym_match_expression] = STATE(1199), - [sym_select_expression] = STATE(1199), - [sym_lock_expression] = STATE(1199), - [sym_unsafe_expression] = STATE(1199), - [sym_sql_expression] = STATE(1199), - [sym_c_string_literal] = STATE(1147), - [sym_raw_string_literal] = STATE(1147), - [sym_interpreted_string_literal] = STATE(1147), - [sym_mutability_modifiers] = STATE(638), - [sym_plain_type] = STATE(4234), - [sym__plain_type_without_special] = STATE(2302), - [sym_anon_struct_type] = STATE(2303), - [sym_multi_return_type] = STATE(2302), - [sym_result_type] = STATE(2302), - [sym_option_type] = STATE(2302), + [sym_unary_expression] = STATE(1211), + [sym_receive_expression] = STATE(1211), + [sym_binary_expression] = STATE(1211), + [sym_as_type_cast_expression] = STATE(1211), + [sym__max_group] = STATE(1211), + [sym_literal] = STATE(1209), + [sym_spread_expression] = STATE(3387), + [sym_map_init_expression] = STATE(1212), + [sym_array_creation] = STATE(1211), + [sym_fixed_array_creation] = STATE(1211), + [sym_selector_expression] = STATE(1211), + [sym_index_expression] = STATE(1211), + [sym_slice_expression] = STATE(1211), + [sym_if_expression] = STATE(1212), + [sym_compile_time_if_expression] = STATE(1212), + [sym_is_expression] = STATE(1211), + [sym_in_expression] = STATE(1211), + [sym_enum_fetch] = STATE(1211), + [sym_match_expression] = STATE(1212), + [sym_select_expression] = STATE(1212), + [sym_lock_expression] = STATE(1212), + [sym_unsafe_expression] = STATE(1212), + [sym_sql_expression] = STATE(1212), + [sym_c_string_literal] = STATE(1201), + [sym_raw_string_literal] = STATE(1201), + [sym_interpreted_string_literal] = STATE(1201), + [sym_mutability_modifiers] = STATE(589), + [sym_plain_type] = STATE(4123), + [sym__plain_type_without_special] = STATE(2360), + [sym_anon_struct_type] = STATE(2362), + [sym_multi_return_type] = STATE(2360), + [sym_result_type] = STATE(2360), + [sym_option_type] = STATE(2360), [sym_qualified_type] = STATE(3346), - [sym_fixed_array_type] = STATE(2303), - [sym_array_type] = STATE(2303), - [sym_pointer_type] = STATE(2303), - [sym_wrong_pointer_type] = STATE(2303), - [sym_map_type] = STATE(2303), - [sym_channel_type] = STATE(2303), - [sym_shared_type] = STATE(2303), - [sym_thread_type] = STATE(2303), - [sym_atomic_type] = STATE(2303), - [sym_generic_type] = STATE(3377), - [sym_function_type] = STATE(2303), - [aux_sym__struct_body_repeat1] = STATE(3313), - [aux_sym_element_list_repeat1] = STATE(3400), - [aux_sym_short_element_list_repeat1] = STATE(374), + [sym_fixed_array_type] = STATE(2362), + [sym_array_type] = STATE(2362), + [sym_pointer_type] = STATE(2362), + [sym_wrong_pointer_type] = STATE(2362), + [sym_map_type] = STATE(2362), + [sym_channel_type] = STATE(2362), + [sym_shared_type] = STATE(2362), + [sym_thread_type] = STATE(2362), + [sym_atomic_type] = STATE(2362), + [sym_generic_type] = STATE(3371), + [sym_function_type] = STATE(2362), + [aux_sym__struct_body_repeat1] = STATE(3324), + [aux_sym_element_list_repeat1] = STATE(3413), + [aux_sym_short_element_list_repeat1] = STATE(375), [sym_identifier] = ACTIONS(629), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), @@ -30868,78 +30884,78 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [80] = { [sym_line_comment] = STATE(80), [sym_block_comment] = STATE(80), - [sym_struct_field_scope] = STATE(3389), - [sym_struct_field_declaration] = STATE(3389), + [sym_struct_field_scope] = STATE(3390), + [sym_struct_field_declaration] = STATE(3390), [sym__struct_field_definition] = STATE(3391), - [sym_embedded_definition] = STATE(3396), - [sym__expression] = STATE(1133), - [sym__expression_without_blocks] = STATE(1141), - [sym__expression_with_blocks] = STATE(1141), - [sym_inc_expression] = STATE(1140), - [sym_dec_expression] = STATE(1140), - [sym_or_block_expression] = STATE(1140), - [sym_option_propagation_expression] = STATE(1140), - [sym_result_propagation_expression] = STATE(1140), - [sym_anon_struct_value_expression] = STATE(1199), - [sym_go_expression] = STATE(1140), - [sym_spawn_expression] = STATE(1140), - [sym_parenthesized_expression] = STATE(1140), - [sym_call_expression] = STATE(1140), - [sym_type_initializer] = STATE(1199), - [sym_element_list] = STATE(4613), - [sym_short_element_list] = STATE(4611), - [sym_keyed_element] = STATE(3398), - [sym_function_literal] = STATE(1140), - [sym_reference_expression] = STATE(1200), + [sym_embedded_definition] = STATE(3392), + [sym__expression] = STATE(1128), + [sym__expression_without_blocks] = STATE(1210), + [sym__expression_with_blocks] = STATE(1210), + [sym_inc_expression] = STATE(1211), + [sym_dec_expression] = STATE(1211), + [sym_or_block_expression] = STATE(1211), + [sym_option_propagation_expression] = STATE(1211), + [sym_result_propagation_expression] = STATE(1211), + [sym_anon_struct_value_expression] = STATE(1212), + [sym_go_expression] = STATE(1211), + [sym_spawn_expression] = STATE(1211), + [sym_parenthesized_expression] = STATE(1211), + [sym_call_expression] = STATE(1211), + [sym_type_initializer] = STATE(1212), + [sym_element_list] = STATE(4570), + [sym_short_element_list] = STATE(4568), + [sym_keyed_element] = STATE(3387), + [sym_function_literal] = STATE(1211), + [sym_reference_expression] = STATE(1220), [sym_type_reference_expression] = STATE(3346), - [sym_unary_expression] = STATE(1140), - [sym_receive_expression] = STATE(1140), - [sym_binary_expression] = STATE(1140), - [sym_as_type_cast_expression] = STATE(1140), - [sym__max_group] = STATE(1140), - [sym_literal] = STATE(1146), - [sym_spread_expression] = STATE(3398), - [sym_map_init_expression] = STATE(1199), - [sym_array_creation] = STATE(1140), - [sym_fixed_array_creation] = STATE(1140), - [sym_selector_expression] = STATE(1140), - [sym_index_expression] = STATE(1140), - [sym_slice_expression] = STATE(1140), - [sym_if_expression] = STATE(1199), - [sym_compile_time_if_expression] = STATE(1199), - [sym_is_expression] = STATE(1140), - [sym_in_expression] = STATE(1140), - [sym_enum_fetch] = STATE(1140), - [sym_match_expression] = STATE(1199), - [sym_select_expression] = STATE(1199), - [sym_lock_expression] = STATE(1199), - [sym_unsafe_expression] = STATE(1199), - [sym_sql_expression] = STATE(1199), - [sym_c_string_literal] = STATE(1147), - [sym_raw_string_literal] = STATE(1147), - [sym_interpreted_string_literal] = STATE(1147), - [sym_mutability_modifiers] = STATE(638), - [sym_plain_type] = STATE(4234), - [sym__plain_type_without_special] = STATE(2302), - [sym_anon_struct_type] = STATE(2303), - [sym_multi_return_type] = STATE(2302), - [sym_result_type] = STATE(2302), - [sym_option_type] = STATE(2302), + [sym_unary_expression] = STATE(1211), + [sym_receive_expression] = STATE(1211), + [sym_binary_expression] = STATE(1211), + [sym_as_type_cast_expression] = STATE(1211), + [sym__max_group] = STATE(1211), + [sym_literal] = STATE(1209), + [sym_spread_expression] = STATE(3387), + [sym_map_init_expression] = STATE(1212), + [sym_array_creation] = STATE(1211), + [sym_fixed_array_creation] = STATE(1211), + [sym_selector_expression] = STATE(1211), + [sym_index_expression] = STATE(1211), + [sym_slice_expression] = STATE(1211), + [sym_if_expression] = STATE(1212), + [sym_compile_time_if_expression] = STATE(1212), + [sym_is_expression] = STATE(1211), + [sym_in_expression] = STATE(1211), + [sym_enum_fetch] = STATE(1211), + [sym_match_expression] = STATE(1212), + [sym_select_expression] = STATE(1212), + [sym_lock_expression] = STATE(1212), + [sym_unsafe_expression] = STATE(1212), + [sym_sql_expression] = STATE(1212), + [sym_c_string_literal] = STATE(1201), + [sym_raw_string_literal] = STATE(1201), + [sym_interpreted_string_literal] = STATE(1201), + [sym_mutability_modifiers] = STATE(589), + [sym_plain_type] = STATE(4123), + [sym__plain_type_without_special] = STATE(2360), + [sym_anon_struct_type] = STATE(2362), + [sym_multi_return_type] = STATE(2360), + [sym_result_type] = STATE(2360), + [sym_option_type] = STATE(2360), [sym_qualified_type] = STATE(3346), - [sym_fixed_array_type] = STATE(2303), - [sym_array_type] = STATE(2303), - [sym_pointer_type] = STATE(2303), - [sym_wrong_pointer_type] = STATE(2303), - [sym_map_type] = STATE(2303), - [sym_channel_type] = STATE(2303), - [sym_shared_type] = STATE(2303), - [sym_thread_type] = STATE(2303), - [sym_atomic_type] = STATE(2303), - [sym_generic_type] = STATE(3377), - [sym_function_type] = STATE(2303), - [aux_sym__struct_body_repeat1] = STATE(3313), - [aux_sym_element_list_repeat1] = STATE(3400), - [aux_sym_short_element_list_repeat1] = STATE(374), + [sym_fixed_array_type] = STATE(2362), + [sym_array_type] = STATE(2362), + [sym_pointer_type] = STATE(2362), + [sym_wrong_pointer_type] = STATE(2362), + [sym_map_type] = STATE(2362), + [sym_channel_type] = STATE(2362), + [sym_shared_type] = STATE(2362), + [sym_thread_type] = STATE(2362), + [sym_atomic_type] = STATE(2362), + [sym_generic_type] = STATE(3371), + [sym_function_type] = STATE(2362), + [aux_sym__struct_body_repeat1] = STATE(3324), + [aux_sym_element_list_repeat1] = STATE(3413), + [aux_sym_short_element_list_repeat1] = STATE(375), [sym_identifier] = ACTIONS(629), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), @@ -30997,78 +31013,78 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [81] = { [sym_line_comment] = STATE(81), [sym_block_comment] = STATE(81), - [sym_struct_field_scope] = STATE(3389), - [sym_struct_field_declaration] = STATE(3389), + [sym_struct_field_scope] = STATE(3390), + [sym_struct_field_declaration] = STATE(3390), [sym__struct_field_definition] = STATE(3391), - [sym_embedded_definition] = STATE(3396), - [sym__expression] = STATE(1133), - [sym__expression_without_blocks] = STATE(1141), - [sym__expression_with_blocks] = STATE(1141), - [sym_inc_expression] = STATE(1140), - [sym_dec_expression] = STATE(1140), - [sym_or_block_expression] = STATE(1140), - [sym_option_propagation_expression] = STATE(1140), - [sym_result_propagation_expression] = STATE(1140), - [sym_anon_struct_value_expression] = STATE(1199), - [sym_go_expression] = STATE(1140), - [sym_spawn_expression] = STATE(1140), - [sym_parenthesized_expression] = STATE(1140), - [sym_call_expression] = STATE(1140), - [sym_type_initializer] = STATE(1199), - [sym_element_list] = STATE(4533), - [sym_short_element_list] = STATE(4534), - [sym_keyed_element] = STATE(3398), - [sym_function_literal] = STATE(1140), - [sym_reference_expression] = STATE(1200), + [sym_embedded_definition] = STATE(3392), + [sym__expression] = STATE(1128), + [sym__expression_without_blocks] = STATE(1210), + [sym__expression_with_blocks] = STATE(1210), + [sym_inc_expression] = STATE(1211), + [sym_dec_expression] = STATE(1211), + [sym_or_block_expression] = STATE(1211), + [sym_option_propagation_expression] = STATE(1211), + [sym_result_propagation_expression] = STATE(1211), + [sym_anon_struct_value_expression] = STATE(1212), + [sym_go_expression] = STATE(1211), + [sym_spawn_expression] = STATE(1211), + [sym_parenthesized_expression] = STATE(1211), + [sym_call_expression] = STATE(1211), + [sym_type_initializer] = STATE(1212), + [sym_element_list] = STATE(4552), + [sym_short_element_list] = STATE(4556), + [sym_keyed_element] = STATE(3387), + [sym_function_literal] = STATE(1211), + [sym_reference_expression] = STATE(1220), [sym_type_reference_expression] = STATE(3346), - [sym_unary_expression] = STATE(1140), - [sym_receive_expression] = STATE(1140), - [sym_binary_expression] = STATE(1140), - [sym_as_type_cast_expression] = STATE(1140), - [sym__max_group] = STATE(1140), - [sym_literal] = STATE(1146), - [sym_spread_expression] = STATE(3398), - [sym_map_init_expression] = STATE(1199), - [sym_array_creation] = STATE(1140), - [sym_fixed_array_creation] = STATE(1140), - [sym_selector_expression] = STATE(1140), - [sym_index_expression] = STATE(1140), - [sym_slice_expression] = STATE(1140), - [sym_if_expression] = STATE(1199), - [sym_compile_time_if_expression] = STATE(1199), - [sym_is_expression] = STATE(1140), - [sym_in_expression] = STATE(1140), - [sym_enum_fetch] = STATE(1140), - [sym_match_expression] = STATE(1199), - [sym_select_expression] = STATE(1199), - [sym_lock_expression] = STATE(1199), - [sym_unsafe_expression] = STATE(1199), - [sym_sql_expression] = STATE(1199), - [sym_c_string_literal] = STATE(1147), - [sym_raw_string_literal] = STATE(1147), - [sym_interpreted_string_literal] = STATE(1147), - [sym_mutability_modifiers] = STATE(638), - [sym_plain_type] = STATE(4234), - [sym__plain_type_without_special] = STATE(2302), - [sym_anon_struct_type] = STATE(2303), - [sym_multi_return_type] = STATE(2302), - [sym_result_type] = STATE(2302), - [sym_option_type] = STATE(2302), + [sym_unary_expression] = STATE(1211), + [sym_receive_expression] = STATE(1211), + [sym_binary_expression] = STATE(1211), + [sym_as_type_cast_expression] = STATE(1211), + [sym__max_group] = STATE(1211), + [sym_literal] = STATE(1209), + [sym_spread_expression] = STATE(3387), + [sym_map_init_expression] = STATE(1212), + [sym_array_creation] = STATE(1211), + [sym_fixed_array_creation] = STATE(1211), + [sym_selector_expression] = STATE(1211), + [sym_index_expression] = STATE(1211), + [sym_slice_expression] = STATE(1211), + [sym_if_expression] = STATE(1212), + [sym_compile_time_if_expression] = STATE(1212), + [sym_is_expression] = STATE(1211), + [sym_in_expression] = STATE(1211), + [sym_enum_fetch] = STATE(1211), + [sym_match_expression] = STATE(1212), + [sym_select_expression] = STATE(1212), + [sym_lock_expression] = STATE(1212), + [sym_unsafe_expression] = STATE(1212), + [sym_sql_expression] = STATE(1212), + [sym_c_string_literal] = STATE(1201), + [sym_raw_string_literal] = STATE(1201), + [sym_interpreted_string_literal] = STATE(1201), + [sym_mutability_modifiers] = STATE(589), + [sym_plain_type] = STATE(4123), + [sym__plain_type_without_special] = STATE(2360), + [sym_anon_struct_type] = STATE(2362), + [sym_multi_return_type] = STATE(2360), + [sym_result_type] = STATE(2360), + [sym_option_type] = STATE(2360), [sym_qualified_type] = STATE(3346), - [sym_fixed_array_type] = STATE(2303), - [sym_array_type] = STATE(2303), - [sym_pointer_type] = STATE(2303), - [sym_wrong_pointer_type] = STATE(2303), - [sym_map_type] = STATE(2303), - [sym_channel_type] = STATE(2303), - [sym_shared_type] = STATE(2303), - [sym_thread_type] = STATE(2303), - [sym_atomic_type] = STATE(2303), - [sym_generic_type] = STATE(3377), - [sym_function_type] = STATE(2303), - [aux_sym__struct_body_repeat1] = STATE(3313), - [aux_sym_element_list_repeat1] = STATE(3400), - [aux_sym_short_element_list_repeat1] = STATE(374), + [sym_fixed_array_type] = STATE(2362), + [sym_array_type] = STATE(2362), + [sym_pointer_type] = STATE(2362), + [sym_wrong_pointer_type] = STATE(2362), + [sym_map_type] = STATE(2362), + [sym_channel_type] = STATE(2362), + [sym_shared_type] = STATE(2362), + [sym_thread_type] = STATE(2362), + [sym_atomic_type] = STATE(2362), + [sym_generic_type] = STATE(3371), + [sym_function_type] = STATE(2362), + [aux_sym__struct_body_repeat1] = STATE(3324), + [aux_sym_element_list_repeat1] = STATE(3413), + [aux_sym_short_element_list_repeat1] = STATE(375), [sym_identifier] = ACTIONS(629), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), @@ -31126,78 +31142,78 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [82] = { [sym_line_comment] = STATE(82), [sym_block_comment] = STATE(82), - [sym_struct_field_scope] = STATE(3389), - [sym_struct_field_declaration] = STATE(3389), + [sym_struct_field_scope] = STATE(3390), + [sym_struct_field_declaration] = STATE(3390), [sym__struct_field_definition] = STATE(3391), - [sym_embedded_definition] = STATE(3396), - [sym__expression] = STATE(1133), - [sym__expression_without_blocks] = STATE(1141), - [sym__expression_with_blocks] = STATE(1141), - [sym_inc_expression] = STATE(1140), - [sym_dec_expression] = STATE(1140), - [sym_or_block_expression] = STATE(1140), - [sym_option_propagation_expression] = STATE(1140), - [sym_result_propagation_expression] = STATE(1140), - [sym_anon_struct_value_expression] = STATE(1199), - [sym_go_expression] = STATE(1140), - [sym_spawn_expression] = STATE(1140), - [sym_parenthesized_expression] = STATE(1140), - [sym_call_expression] = STATE(1140), - [sym_type_initializer] = STATE(1199), - [sym_element_list] = STATE(4599), - [sym_short_element_list] = STATE(4594), - [sym_keyed_element] = STATE(3398), - [sym_function_literal] = STATE(1140), - [sym_reference_expression] = STATE(1200), + [sym_embedded_definition] = STATE(3392), + [sym__expression] = STATE(1128), + [sym__expression_without_blocks] = STATE(1210), + [sym__expression_with_blocks] = STATE(1210), + [sym_inc_expression] = STATE(1211), + [sym_dec_expression] = STATE(1211), + [sym_or_block_expression] = STATE(1211), + [sym_option_propagation_expression] = STATE(1211), + [sym_result_propagation_expression] = STATE(1211), + [sym_anon_struct_value_expression] = STATE(1212), + [sym_go_expression] = STATE(1211), + [sym_spawn_expression] = STATE(1211), + [sym_parenthesized_expression] = STATE(1211), + [sym_call_expression] = STATE(1211), + [sym_type_initializer] = STATE(1212), + [sym_element_list] = STATE(4519), + [sym_short_element_list] = STATE(4520), + [sym_keyed_element] = STATE(3387), + [sym_function_literal] = STATE(1211), + [sym_reference_expression] = STATE(1220), [sym_type_reference_expression] = STATE(3346), - [sym_unary_expression] = STATE(1140), - [sym_receive_expression] = STATE(1140), - [sym_binary_expression] = STATE(1140), - [sym_as_type_cast_expression] = STATE(1140), - [sym__max_group] = STATE(1140), - [sym_literal] = STATE(1146), - [sym_spread_expression] = STATE(3398), - [sym_map_init_expression] = STATE(1199), - [sym_array_creation] = STATE(1140), - [sym_fixed_array_creation] = STATE(1140), - [sym_selector_expression] = STATE(1140), - [sym_index_expression] = STATE(1140), - [sym_slice_expression] = STATE(1140), - [sym_if_expression] = STATE(1199), - [sym_compile_time_if_expression] = STATE(1199), - [sym_is_expression] = STATE(1140), - [sym_in_expression] = STATE(1140), - [sym_enum_fetch] = STATE(1140), - [sym_match_expression] = STATE(1199), - [sym_select_expression] = STATE(1199), - [sym_lock_expression] = STATE(1199), - [sym_unsafe_expression] = STATE(1199), - [sym_sql_expression] = STATE(1199), - [sym_c_string_literal] = STATE(1147), - [sym_raw_string_literal] = STATE(1147), - [sym_interpreted_string_literal] = STATE(1147), - [sym_mutability_modifiers] = STATE(638), - [sym_plain_type] = STATE(4234), - [sym__plain_type_without_special] = STATE(2302), - [sym_anon_struct_type] = STATE(2303), - [sym_multi_return_type] = STATE(2302), - [sym_result_type] = STATE(2302), - [sym_option_type] = STATE(2302), + [sym_unary_expression] = STATE(1211), + [sym_receive_expression] = STATE(1211), + [sym_binary_expression] = STATE(1211), + [sym_as_type_cast_expression] = STATE(1211), + [sym__max_group] = STATE(1211), + [sym_literal] = STATE(1209), + [sym_spread_expression] = STATE(3387), + [sym_map_init_expression] = STATE(1212), + [sym_array_creation] = STATE(1211), + [sym_fixed_array_creation] = STATE(1211), + [sym_selector_expression] = STATE(1211), + [sym_index_expression] = STATE(1211), + [sym_slice_expression] = STATE(1211), + [sym_if_expression] = STATE(1212), + [sym_compile_time_if_expression] = STATE(1212), + [sym_is_expression] = STATE(1211), + [sym_in_expression] = STATE(1211), + [sym_enum_fetch] = STATE(1211), + [sym_match_expression] = STATE(1212), + [sym_select_expression] = STATE(1212), + [sym_lock_expression] = STATE(1212), + [sym_unsafe_expression] = STATE(1212), + [sym_sql_expression] = STATE(1212), + [sym_c_string_literal] = STATE(1201), + [sym_raw_string_literal] = STATE(1201), + [sym_interpreted_string_literal] = STATE(1201), + [sym_mutability_modifiers] = STATE(589), + [sym_plain_type] = STATE(4123), + [sym__plain_type_without_special] = STATE(2360), + [sym_anon_struct_type] = STATE(2362), + [sym_multi_return_type] = STATE(2360), + [sym_result_type] = STATE(2360), + [sym_option_type] = STATE(2360), [sym_qualified_type] = STATE(3346), - [sym_fixed_array_type] = STATE(2303), - [sym_array_type] = STATE(2303), - [sym_pointer_type] = STATE(2303), - [sym_wrong_pointer_type] = STATE(2303), - [sym_map_type] = STATE(2303), - [sym_channel_type] = STATE(2303), - [sym_shared_type] = STATE(2303), - [sym_thread_type] = STATE(2303), - [sym_atomic_type] = STATE(2303), - [sym_generic_type] = STATE(3377), - [sym_function_type] = STATE(2303), - [aux_sym__struct_body_repeat1] = STATE(3313), - [aux_sym_element_list_repeat1] = STATE(3400), - [aux_sym_short_element_list_repeat1] = STATE(374), + [sym_fixed_array_type] = STATE(2362), + [sym_array_type] = STATE(2362), + [sym_pointer_type] = STATE(2362), + [sym_wrong_pointer_type] = STATE(2362), + [sym_map_type] = STATE(2362), + [sym_channel_type] = STATE(2362), + [sym_shared_type] = STATE(2362), + [sym_thread_type] = STATE(2362), + [sym_atomic_type] = STATE(2362), + [sym_generic_type] = STATE(3371), + [sym_function_type] = STATE(2362), + [aux_sym__struct_body_repeat1] = STATE(3324), + [aux_sym_element_list_repeat1] = STATE(3413), + [aux_sym_short_element_list_repeat1] = STATE(375), [sym_identifier] = ACTIONS(629), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), @@ -31255,78 +31271,78 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [83] = { [sym_line_comment] = STATE(83), [sym_block_comment] = STATE(83), - [sym_struct_field_scope] = STATE(3389), - [sym_struct_field_declaration] = STATE(3389), + [sym_struct_field_scope] = STATE(3390), + [sym_struct_field_declaration] = STATE(3390), [sym__struct_field_definition] = STATE(3391), - [sym_embedded_definition] = STATE(3396), - [sym__expression] = STATE(1133), - [sym__expression_without_blocks] = STATE(1141), - [sym__expression_with_blocks] = STATE(1141), - [sym_inc_expression] = STATE(1140), - [sym_dec_expression] = STATE(1140), - [sym_or_block_expression] = STATE(1140), - [sym_option_propagation_expression] = STATE(1140), - [sym_result_propagation_expression] = STATE(1140), - [sym_anon_struct_value_expression] = STATE(1199), - [sym_go_expression] = STATE(1140), - [sym_spawn_expression] = STATE(1140), - [sym_parenthesized_expression] = STATE(1140), - [sym_call_expression] = STATE(1140), - [sym_type_initializer] = STATE(1199), - [sym_element_list] = STATE(4416), - [sym_short_element_list] = STATE(4417), - [sym_keyed_element] = STATE(3398), - [sym_function_literal] = STATE(1140), - [sym_reference_expression] = STATE(1200), + [sym_embedded_definition] = STATE(3392), + [sym__expression] = STATE(1128), + [sym__expression_without_blocks] = STATE(1210), + [sym__expression_with_blocks] = STATE(1210), + [sym_inc_expression] = STATE(1211), + [sym_dec_expression] = STATE(1211), + [sym_or_block_expression] = STATE(1211), + [sym_option_propagation_expression] = STATE(1211), + [sym_result_propagation_expression] = STATE(1211), + [sym_anon_struct_value_expression] = STATE(1212), + [sym_go_expression] = STATE(1211), + [sym_spawn_expression] = STATE(1211), + [sym_parenthesized_expression] = STATE(1211), + [sym_call_expression] = STATE(1211), + [sym_type_initializer] = STATE(1212), + [sym_element_list] = STATE(4431), + [sym_short_element_list] = STATE(4425), + [sym_keyed_element] = STATE(3387), + [sym_function_literal] = STATE(1211), + [sym_reference_expression] = STATE(1220), [sym_type_reference_expression] = STATE(3346), - [sym_unary_expression] = STATE(1140), - [sym_receive_expression] = STATE(1140), - [sym_binary_expression] = STATE(1140), - [sym_as_type_cast_expression] = STATE(1140), - [sym__max_group] = STATE(1140), - [sym_literal] = STATE(1146), - [sym_spread_expression] = STATE(3398), - [sym_map_init_expression] = STATE(1199), - [sym_array_creation] = STATE(1140), - [sym_fixed_array_creation] = STATE(1140), - [sym_selector_expression] = STATE(1140), - [sym_index_expression] = STATE(1140), - [sym_slice_expression] = STATE(1140), - [sym_if_expression] = STATE(1199), - [sym_compile_time_if_expression] = STATE(1199), - [sym_is_expression] = STATE(1140), - [sym_in_expression] = STATE(1140), - [sym_enum_fetch] = STATE(1140), - [sym_match_expression] = STATE(1199), - [sym_select_expression] = STATE(1199), - [sym_lock_expression] = STATE(1199), - [sym_unsafe_expression] = STATE(1199), - [sym_sql_expression] = STATE(1199), - [sym_c_string_literal] = STATE(1147), - [sym_raw_string_literal] = STATE(1147), - [sym_interpreted_string_literal] = STATE(1147), - [sym_mutability_modifiers] = STATE(638), - [sym_plain_type] = STATE(4234), - [sym__plain_type_without_special] = STATE(2302), - [sym_anon_struct_type] = STATE(2303), - [sym_multi_return_type] = STATE(2302), - [sym_result_type] = STATE(2302), - [sym_option_type] = STATE(2302), + [sym_unary_expression] = STATE(1211), + [sym_receive_expression] = STATE(1211), + [sym_binary_expression] = STATE(1211), + [sym_as_type_cast_expression] = STATE(1211), + [sym__max_group] = STATE(1211), + [sym_literal] = STATE(1209), + [sym_spread_expression] = STATE(3387), + [sym_map_init_expression] = STATE(1212), + [sym_array_creation] = STATE(1211), + [sym_fixed_array_creation] = STATE(1211), + [sym_selector_expression] = STATE(1211), + [sym_index_expression] = STATE(1211), + [sym_slice_expression] = STATE(1211), + [sym_if_expression] = STATE(1212), + [sym_compile_time_if_expression] = STATE(1212), + [sym_is_expression] = STATE(1211), + [sym_in_expression] = STATE(1211), + [sym_enum_fetch] = STATE(1211), + [sym_match_expression] = STATE(1212), + [sym_select_expression] = STATE(1212), + [sym_lock_expression] = STATE(1212), + [sym_unsafe_expression] = STATE(1212), + [sym_sql_expression] = STATE(1212), + [sym_c_string_literal] = STATE(1201), + [sym_raw_string_literal] = STATE(1201), + [sym_interpreted_string_literal] = STATE(1201), + [sym_mutability_modifiers] = STATE(589), + [sym_plain_type] = STATE(4123), + [sym__plain_type_without_special] = STATE(2360), + [sym_anon_struct_type] = STATE(2362), + [sym_multi_return_type] = STATE(2360), + [sym_result_type] = STATE(2360), + [sym_option_type] = STATE(2360), [sym_qualified_type] = STATE(3346), - [sym_fixed_array_type] = STATE(2303), - [sym_array_type] = STATE(2303), - [sym_pointer_type] = STATE(2303), - [sym_wrong_pointer_type] = STATE(2303), - [sym_map_type] = STATE(2303), - [sym_channel_type] = STATE(2303), - [sym_shared_type] = STATE(2303), - [sym_thread_type] = STATE(2303), - [sym_atomic_type] = STATE(2303), - [sym_generic_type] = STATE(3377), - [sym_function_type] = STATE(2303), - [aux_sym__struct_body_repeat1] = STATE(3313), - [aux_sym_element_list_repeat1] = STATE(3400), - [aux_sym_short_element_list_repeat1] = STATE(374), + [sym_fixed_array_type] = STATE(2362), + [sym_array_type] = STATE(2362), + [sym_pointer_type] = STATE(2362), + [sym_wrong_pointer_type] = STATE(2362), + [sym_map_type] = STATE(2362), + [sym_channel_type] = STATE(2362), + [sym_shared_type] = STATE(2362), + [sym_thread_type] = STATE(2362), + [sym_atomic_type] = STATE(2362), + [sym_generic_type] = STATE(3371), + [sym_function_type] = STATE(2362), + [aux_sym__struct_body_repeat1] = STATE(3324), + [aux_sym_element_list_repeat1] = STATE(3413), + [aux_sym_short_element_list_repeat1] = STATE(375), [sym_identifier] = ACTIONS(629), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), @@ -31384,78 +31400,78 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [84] = { [sym_line_comment] = STATE(84), [sym_block_comment] = STATE(84), - [sym_struct_field_scope] = STATE(3389), - [sym_struct_field_declaration] = STATE(3389), + [sym_struct_field_scope] = STATE(3390), + [sym_struct_field_declaration] = STATE(3390), [sym__struct_field_definition] = STATE(3391), - [sym_embedded_definition] = STATE(3396), - [sym__expression] = STATE(1133), - [sym__expression_without_blocks] = STATE(1141), - [sym__expression_with_blocks] = STATE(1141), - [sym_inc_expression] = STATE(1140), - [sym_dec_expression] = STATE(1140), - [sym_or_block_expression] = STATE(1140), - [sym_option_propagation_expression] = STATE(1140), - [sym_result_propagation_expression] = STATE(1140), - [sym_anon_struct_value_expression] = STATE(1199), - [sym_go_expression] = STATE(1140), - [sym_spawn_expression] = STATE(1140), - [sym_parenthesized_expression] = STATE(1140), - [sym_call_expression] = STATE(1140), - [sym_type_initializer] = STATE(1199), - [sym_element_list] = STATE(4609), - [sym_short_element_list] = STATE(4597), - [sym_keyed_element] = STATE(3398), - [sym_function_literal] = STATE(1140), - [sym_reference_expression] = STATE(1200), + [sym_embedded_definition] = STATE(3392), + [sym__expression] = STATE(1128), + [sym__expression_without_blocks] = STATE(1210), + [sym__expression_with_blocks] = STATE(1210), + [sym_inc_expression] = STATE(1211), + [sym_dec_expression] = STATE(1211), + [sym_or_block_expression] = STATE(1211), + [sym_option_propagation_expression] = STATE(1211), + [sym_result_propagation_expression] = STATE(1211), + [sym_anon_struct_value_expression] = STATE(1212), + [sym_go_expression] = STATE(1211), + [sym_spawn_expression] = STATE(1211), + [sym_parenthesized_expression] = STATE(1211), + [sym_call_expression] = STATE(1211), + [sym_type_initializer] = STATE(1212), + [sym_element_list] = STATE(4401), + [sym_short_element_list] = STATE(4404), + [sym_keyed_element] = STATE(3387), + [sym_function_literal] = STATE(1211), + [sym_reference_expression] = STATE(1220), [sym_type_reference_expression] = STATE(3346), - [sym_unary_expression] = STATE(1140), - [sym_receive_expression] = STATE(1140), - [sym_binary_expression] = STATE(1140), - [sym_as_type_cast_expression] = STATE(1140), - [sym__max_group] = STATE(1140), - [sym_literal] = STATE(1146), - [sym_spread_expression] = STATE(3398), - [sym_map_init_expression] = STATE(1199), - [sym_array_creation] = STATE(1140), - [sym_fixed_array_creation] = STATE(1140), - [sym_selector_expression] = STATE(1140), - [sym_index_expression] = STATE(1140), - [sym_slice_expression] = STATE(1140), - [sym_if_expression] = STATE(1199), - [sym_compile_time_if_expression] = STATE(1199), - [sym_is_expression] = STATE(1140), - [sym_in_expression] = STATE(1140), - [sym_enum_fetch] = STATE(1140), - [sym_match_expression] = STATE(1199), - [sym_select_expression] = STATE(1199), - [sym_lock_expression] = STATE(1199), - [sym_unsafe_expression] = STATE(1199), - [sym_sql_expression] = STATE(1199), - [sym_c_string_literal] = STATE(1147), - [sym_raw_string_literal] = STATE(1147), - [sym_interpreted_string_literal] = STATE(1147), - [sym_mutability_modifiers] = STATE(638), - [sym_plain_type] = STATE(4234), - [sym__plain_type_without_special] = STATE(2302), - [sym_anon_struct_type] = STATE(2303), - [sym_multi_return_type] = STATE(2302), - [sym_result_type] = STATE(2302), - [sym_option_type] = STATE(2302), + [sym_unary_expression] = STATE(1211), + [sym_receive_expression] = STATE(1211), + [sym_binary_expression] = STATE(1211), + [sym_as_type_cast_expression] = STATE(1211), + [sym__max_group] = STATE(1211), + [sym_literal] = STATE(1209), + [sym_spread_expression] = STATE(3387), + [sym_map_init_expression] = STATE(1212), + [sym_array_creation] = STATE(1211), + [sym_fixed_array_creation] = STATE(1211), + [sym_selector_expression] = STATE(1211), + [sym_index_expression] = STATE(1211), + [sym_slice_expression] = STATE(1211), + [sym_if_expression] = STATE(1212), + [sym_compile_time_if_expression] = STATE(1212), + [sym_is_expression] = STATE(1211), + [sym_in_expression] = STATE(1211), + [sym_enum_fetch] = STATE(1211), + [sym_match_expression] = STATE(1212), + [sym_select_expression] = STATE(1212), + [sym_lock_expression] = STATE(1212), + [sym_unsafe_expression] = STATE(1212), + [sym_sql_expression] = STATE(1212), + [sym_c_string_literal] = STATE(1201), + [sym_raw_string_literal] = STATE(1201), + [sym_interpreted_string_literal] = STATE(1201), + [sym_mutability_modifiers] = STATE(589), + [sym_plain_type] = STATE(4123), + [sym__plain_type_without_special] = STATE(2360), + [sym_anon_struct_type] = STATE(2362), + [sym_multi_return_type] = STATE(2360), + [sym_result_type] = STATE(2360), + [sym_option_type] = STATE(2360), [sym_qualified_type] = STATE(3346), - [sym_fixed_array_type] = STATE(2303), - [sym_array_type] = STATE(2303), - [sym_pointer_type] = STATE(2303), - [sym_wrong_pointer_type] = STATE(2303), - [sym_map_type] = STATE(2303), - [sym_channel_type] = STATE(2303), - [sym_shared_type] = STATE(2303), - [sym_thread_type] = STATE(2303), - [sym_atomic_type] = STATE(2303), - [sym_generic_type] = STATE(3377), - [sym_function_type] = STATE(2303), - [aux_sym__struct_body_repeat1] = STATE(3313), - [aux_sym_element_list_repeat1] = STATE(3400), - [aux_sym_short_element_list_repeat1] = STATE(374), + [sym_fixed_array_type] = STATE(2362), + [sym_array_type] = STATE(2362), + [sym_pointer_type] = STATE(2362), + [sym_wrong_pointer_type] = STATE(2362), + [sym_map_type] = STATE(2362), + [sym_channel_type] = STATE(2362), + [sym_shared_type] = STATE(2362), + [sym_thread_type] = STATE(2362), + [sym_atomic_type] = STATE(2362), + [sym_generic_type] = STATE(3371), + [sym_function_type] = STATE(2362), + [aux_sym__struct_body_repeat1] = STATE(3324), + [aux_sym_element_list_repeat1] = STATE(3413), + [aux_sym_short_element_list_repeat1] = STATE(375), [sym_identifier] = ACTIONS(629), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), @@ -31513,107 +31529,107 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [85] = { [sym_line_comment] = STATE(85), [sym_block_comment] = STATE(85), - [sym__expression] = STATE(2588), - [sym__expression_without_blocks] = STATE(1902), - [sym__expression_with_blocks] = STATE(2870), - [sym_inc_expression] = STATE(2032), - [sym_dec_expression] = STATE(2032), - [sym_or_block_expression] = STATE(2032), - [sym_option_propagation_expression] = STATE(2032), - [sym_result_propagation_expression] = STATE(2032), - [sym_anon_struct_value_expression] = STATE(2868), - [sym_go_expression] = STATE(2032), - [sym_spawn_expression] = STATE(2032), - [sym_parenthesized_expression] = STATE(2032), - [sym_call_expression] = STATE(2032), - [sym_type_initializer] = STATE(2868), - [sym_function_literal] = STATE(2032), - [sym_reference_expression] = STATE(1914), - [sym_type_reference_expression] = STATE(3541), - [sym_unary_expression] = STATE(2032), - [sym_receive_expression] = STATE(2032), - [sym_binary_expression] = STATE(2032), - [sym_as_type_cast_expression] = STATE(2032), - [sym__max_group] = STATE(2032), - [sym_literal] = STATE(2027), - [sym_map_init_expression] = STATE(2868), - [sym_map_keyed_element] = STATE(2001), - [sym_array_creation] = STATE(2032), - [sym_fixed_array_creation] = STATE(2032), - [sym_selector_expression] = STATE(2032), - [sym_index_expression] = STATE(2032), - [sym_slice_expression] = STATE(2032), - [sym_if_expression] = STATE(2868), - [sym_compile_time_if_expression] = STATE(2868), - [sym_is_expression] = STATE(2032), - [sym_in_expression] = STATE(2032), - [sym_enum_fetch] = STATE(2032), - [sym_match_expression] = STATE(2868), - [sym_select_expression] = STATE(2868), - [sym_select_arm] = STATE(2139), - [sym_select_arm_statement] = STATE(4161), - [sym_select_var_declaration] = STATE(4478), - [sym_select_else_arn_clause] = STATE(4348), - [sym_lock_expression] = STATE(2868), - [sym_unsafe_expression] = STATE(2868), - [sym_sql_expression] = STATE(2868), - [sym_c_string_literal] = STATE(2026), - [sym_raw_string_literal] = STATE(2026), - [sym_interpreted_string_literal] = STATE(2026), - [sym_mutability_modifiers] = STATE(635), - [sym_mutable_identifier] = STATE(3928), - [sym_identifier_list] = STATE(4484), - [sym_expression_without_blocks_list] = STATE(3279), - [sym_plain_type] = STATE(4094), - [sym__plain_type_without_special] = STATE(2302), - [sym_anon_struct_type] = STATE(2303), - [sym_multi_return_type] = STATE(2302), - [sym_result_type] = STATE(2302), - [sym_option_type] = STATE(2302), - [sym_qualified_type] = STATE(3541), - [sym_fixed_array_type] = STATE(2303), - [sym_array_type] = STATE(2303), - [sym_pointer_type] = STATE(2303), - [sym_wrong_pointer_type] = STATE(2303), - [sym_map_type] = STATE(2303), - [sym_channel_type] = STATE(2303), - [sym_shared_type] = STATE(2303), - [sym_thread_type] = STATE(2303), - [sym_atomic_type] = STATE(2303), - [sym_generic_type] = STATE(2303), - [sym_function_type] = STATE(2303), - [sym_send_statement] = STATE(4478), - [aux_sym_map_init_expression_repeat1] = STATE(274), - [aux_sym_select_expression_repeat1] = STATE(111), + [sym__expression] = STATE(1630), + [sym__expression_without_blocks] = STATE(1953), + [sym__expression_with_blocks] = STATE(1953), + [sym_strictly_expression_list] = STATE(4047), + [sym_inc_expression] = STATE(1955), + [sym_dec_expression] = STATE(1955), + [sym_or_block_expression] = STATE(1955), + [sym_option_propagation_expression] = STATE(1955), + [sym_result_propagation_expression] = STATE(1955), + [sym_anon_struct_value_expression] = STATE(1958), + [sym_go_expression] = STATE(1955), + [sym_spawn_expression] = STATE(1955), + [sym_parenthesized_expression] = STATE(1955), + [sym_call_expression] = STATE(1955), + [sym_type_initializer] = STATE(1958), + [sym_function_literal] = STATE(1955), + [sym_reference_expression] = STATE(1956), + [sym_type_reference_expression] = STATE(3460), + [sym_unary_expression] = STATE(1955), + [sym_receive_expression] = STATE(1955), + [sym_binary_expression] = STATE(1955), + [sym_as_type_cast_expression] = STATE(1955), + [sym__max_group] = STATE(1955), + [sym_literal] = STATE(1943), + [sym_map_init_expression] = STATE(1958), + [sym_array_creation] = STATE(1955), + [sym_fixed_array_creation] = STATE(1955), + [sym_selector_expression] = STATE(1955), + [sym_index_expression] = STATE(1955), + [sym_slice_expression] = STATE(1955), + [sym_if_expression] = STATE(1958), + [sym_compile_time_if_expression] = STATE(1958), + [sym_is_expression] = STATE(2099), + [sym_in_expression] = STATE(1955), + [sym_enum_fetch] = STATE(1955), + [sym_match_expression] = STATE(1958), + [sym_select_expression] = STATE(1958), + [sym_lock_expression] = STATE(1958), + [sym_unsafe_expression] = STATE(1958), + [sym_sql_expression] = STATE(1958), + [sym_c_string_literal] = STATE(1942), + [sym_raw_string_literal] = STATE(1942), + [sym_interpreted_string_literal] = STATE(1942), + [sym_mutability_modifiers] = STATE(652), + [sym_mutable_expression] = STATE(3275), + [sym_expression_list] = STATE(3309), + [sym_plain_type] = STATE(4266), + [sym__plain_type_without_special] = STATE(2360), + [sym_anon_struct_type] = STATE(2362), + [sym_multi_return_type] = STATE(2360), + [sym_result_type] = STATE(2360), + [sym_option_type] = STATE(2360), + [sym_qualified_type] = STATE(3460), + [sym_fixed_array_type] = STATE(2362), + [sym_array_type] = STATE(2362), + [sym_pointer_type] = STATE(2362), + [sym_wrong_pointer_type] = STATE(2362), + [sym_map_type] = STATE(2362), + [sym_channel_type] = STATE(2362), + [sym_shared_type] = STATE(2362), + [sym_thread_type] = STATE(2362), + [sym_atomic_type] = STATE(2362), + [sym_generic_type] = STATE(2362), + [sym_function_type] = STATE(2362), + [sym_simple_statement] = STATE(4426), + [sym_var_declaration] = STATE(4047), + [sym_var_definition_list] = STATE(4443), + [sym_var_definition] = STATE(3997), + [sym_assignment_statement] = STATE(4047), + [sym_block] = STATE(1523), + [sym_is_clause] = STATE(4233), + [sym_range_clause] = STATE(4233), + [sym_for_clause] = STATE(4233), [sym_identifier] = ACTIONS(701), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(703), - [anon_sym_LBRACE] = ACTIONS(705), - [anon_sym_RBRACE] = ACTIONS(707), + [anon_sym_SEMI] = ACTIONS(703), + [anon_sym_DOT] = ACTIONS(705), + [anon_sym_LBRACE] = ACTIONS(707), [anon_sym_LPAREN] = ACTIONS(709), [anon_sym_fn] = ACTIONS(711), [anon_sym_PLUS] = ACTIONS(713), [anon_sym_DASH] = ACTIONS(713), [anon_sym_STAR] = ACTIONS(715), [anon_sym_struct] = ACTIONS(717), - [anon_sym_mut] = ACTIONS(41), + [anon_sym_mut] = ACTIONS(719), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(719), - [anon_sym_go] = ACTIONS(721), - [anon_sym_spawn] = ACTIONS(723), - [anon_sym_json_DOTdecode] = ACTIONS(725), - [anon_sym_LBRACK2] = ACTIONS(727), + [anon_sym_BANG] = ACTIONS(721), + [anon_sym_go] = ACTIONS(723), + [anon_sym_spawn] = ACTIONS(725), + [anon_sym_json_DOTdecode] = ACTIONS(727), + [anon_sym_LBRACK2] = ACTIONS(729), [anon_sym_TILDE] = ACTIONS(713), [anon_sym_CARET] = ACTIONS(713), - [anon_sym_AMP] = ACTIONS(729), - [anon_sym_LT_DASH] = ACTIONS(731), - [sym_none] = ACTIONS(733), - [sym_true] = ACTIONS(733), - [sym_false] = ACTIONS(733), - [sym_nil] = ACTIONS(733), - [anon_sym_if] = ACTIONS(735), - [anon_sym_else] = ACTIONS(737), + [anon_sym_AMP] = ACTIONS(731), + [anon_sym_LT_DASH] = ACTIONS(733), + [sym_none] = ACTIONS(735), + [sym_true] = ACTIONS(735), + [sym_false] = ACTIONS(735), + [sym_nil] = ACTIONS(735), + [anon_sym_if] = ACTIONS(737), [anon_sym_DOLLARif] = ACTIONS(739), [anon_sym_match] = ACTIONS(741), [anon_sym_select] = ACTIONS(743), @@ -31621,7 +31637,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_rlock] = ACTIONS(745), [anon_sym_unsafe] = ACTIONS(747), [anon_sym_sql] = ACTIONS(749), - [sym_int_literal] = ACTIONS(733), + [sym_int_literal] = ACTIONS(735), [sym_float_literal] = ACTIONS(751), [sym_rune_literal] = ACTIONS(751), [sym_pseudo_compile_time_identifier] = ACTIONS(753), @@ -31640,107 +31656,1631 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [86] = { [sym_line_comment] = STATE(86), [sym_block_comment] = STATE(86), - [sym__expression] = STATE(2588), - [sym__expression_without_blocks] = STATE(1902), - [sym__expression_with_blocks] = STATE(2870), - [sym_inc_expression] = STATE(2032), - [sym_dec_expression] = STATE(2032), - [sym_or_block_expression] = STATE(2032), - [sym_option_propagation_expression] = STATE(2032), - [sym_result_propagation_expression] = STATE(2032), - [sym_anon_struct_value_expression] = STATE(2868), - [sym_go_expression] = STATE(2032), - [sym_spawn_expression] = STATE(2032), - [sym_parenthesized_expression] = STATE(2032), - [sym_call_expression] = STATE(2032), - [sym_type_initializer] = STATE(2868), - [sym_function_literal] = STATE(2032), - [sym_reference_expression] = STATE(1914), - [sym_type_reference_expression] = STATE(3541), - [sym_unary_expression] = STATE(2032), - [sym_receive_expression] = STATE(2032), - [sym_binary_expression] = STATE(2032), - [sym_as_type_cast_expression] = STATE(2032), - [sym__max_group] = STATE(2032), - [sym_literal] = STATE(2027), - [sym_map_init_expression] = STATE(2868), - [sym_map_keyed_element] = STATE(2001), - [sym_array_creation] = STATE(2032), - [sym_fixed_array_creation] = STATE(2032), - [sym_selector_expression] = STATE(2032), - [sym_index_expression] = STATE(2032), - [sym_slice_expression] = STATE(2032), - [sym_if_expression] = STATE(2868), - [sym_compile_time_if_expression] = STATE(2868), - [sym_is_expression] = STATE(2032), - [sym_in_expression] = STATE(2032), - [sym_enum_fetch] = STATE(2032), - [sym_match_expression] = STATE(2868), - [sym_select_expression] = STATE(2868), - [sym_select_arm] = STATE(2139), - [sym_select_arm_statement] = STATE(4161), - [sym_select_var_declaration] = STATE(4478), - [sym_select_else_arn_clause] = STATE(4548), - [sym_lock_expression] = STATE(2868), - [sym_unsafe_expression] = STATE(2868), - [sym_sql_expression] = STATE(2868), - [sym_c_string_literal] = STATE(2026), - [sym_raw_string_literal] = STATE(2026), - [sym_interpreted_string_literal] = STATE(2026), - [sym_mutability_modifiers] = STATE(635), - [sym_mutable_identifier] = STATE(3928), - [sym_identifier_list] = STATE(4484), + [sym__expression] = STATE(2586), + [sym__expression_without_blocks] = STATE(1903), + [sym__expression_with_blocks] = STATE(2882), + [sym_inc_expression] = STATE(2035), + [sym_dec_expression] = STATE(2035), + [sym_or_block_expression] = STATE(2035), + [sym_option_propagation_expression] = STATE(2035), + [sym_result_propagation_expression] = STATE(2035), + [sym_anon_struct_value_expression] = STATE(2877), + [sym_go_expression] = STATE(2035), + [sym_spawn_expression] = STATE(2035), + [sym_parenthesized_expression] = STATE(2035), + [sym_call_expression] = STATE(2035), + [sym_type_initializer] = STATE(2877), + [sym_function_literal] = STATE(2035), + [sym_reference_expression] = STATE(1944), + [sym_type_reference_expression] = STATE(3460), + [sym_unary_expression] = STATE(2035), + [sym_receive_expression] = STATE(2035), + [sym_binary_expression] = STATE(2035), + [sym_as_type_cast_expression] = STATE(2035), + [sym__max_group] = STATE(2035), + [sym_literal] = STATE(2030), + [sym_map_init_expression] = STATE(2877), + [sym_map_keyed_element] = STATE(2004), + [sym_array_creation] = STATE(2035), + [sym_fixed_array_creation] = STATE(2035), + [sym_selector_expression] = STATE(2035), + [sym_index_expression] = STATE(2035), + [sym_slice_expression] = STATE(2035), + [sym_if_expression] = STATE(2877), + [sym_compile_time_if_expression] = STATE(2877), + [sym_is_expression] = STATE(2035), + [sym_in_expression] = STATE(2035), + [sym_enum_fetch] = STATE(2035), + [sym_match_expression] = STATE(2877), + [sym_select_expression] = STATE(2877), + [sym_select_arm] = STATE(2140), + [sym_select_arm_statement] = STATE(4150), + [sym_select_var_declaration] = STATE(4507), + [sym_select_else_arn_clause] = STATE(4509), + [sym_lock_expression] = STATE(2877), + [sym_unsafe_expression] = STATE(2877), + [sym_sql_expression] = STATE(2877), + [sym_c_string_literal] = STATE(2029), + [sym_raw_string_literal] = STATE(2029), + [sym_interpreted_string_literal] = STATE(2029), + [sym_mutability_modifiers] = STATE(641), + [sym_mutable_identifier] = STATE(3847), + [sym_identifier_list] = STATE(4511), [sym_expression_without_blocks_list] = STATE(3279), - [sym_plain_type] = STATE(4094), - [sym__plain_type_without_special] = STATE(2302), - [sym_anon_struct_type] = STATE(2303), - [sym_multi_return_type] = STATE(2302), - [sym_result_type] = STATE(2302), - [sym_option_type] = STATE(2302), - [sym_qualified_type] = STATE(3541), - [sym_fixed_array_type] = STATE(2303), - [sym_array_type] = STATE(2303), - [sym_pointer_type] = STATE(2303), - [sym_wrong_pointer_type] = STATE(2303), - [sym_map_type] = STATE(2303), - [sym_channel_type] = STATE(2303), - [sym_shared_type] = STATE(2303), - [sym_thread_type] = STATE(2303), - [sym_atomic_type] = STATE(2303), - [sym_generic_type] = STATE(2303), - [sym_function_type] = STATE(2303), - [sym_send_statement] = STATE(4478), - [aux_sym_map_init_expression_repeat1] = STATE(274), - [aux_sym_select_expression_repeat1] = STATE(118), + [sym_plain_type] = STATE(4297), + [sym__plain_type_without_special] = STATE(2360), + [sym_anon_struct_type] = STATE(2362), + [sym_multi_return_type] = STATE(2360), + [sym_result_type] = STATE(2360), + [sym_option_type] = STATE(2360), + [sym_qualified_type] = STATE(3460), + [sym_fixed_array_type] = STATE(2362), + [sym_array_type] = STATE(2362), + [sym_pointer_type] = STATE(2362), + [sym_wrong_pointer_type] = STATE(2362), + [sym_map_type] = STATE(2362), + [sym_channel_type] = STATE(2362), + [sym_shared_type] = STATE(2362), + [sym_thread_type] = STATE(2362), + [sym_atomic_type] = STATE(2362), + [sym_generic_type] = STATE(2362), + [sym_function_type] = STATE(2362), + [sym_send_statement] = STATE(4507), + [aux_sym_map_init_expression_repeat1] = STATE(242), + [aux_sym_select_expression_repeat1] = STATE(111), + [sym_identifier] = ACTIONS(767), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(769), + [anon_sym_LBRACE] = ACTIONS(771), + [anon_sym_RBRACE] = ACTIONS(773), + [anon_sym_LPAREN] = ACTIONS(775), + [anon_sym_fn] = ACTIONS(777), + [anon_sym_PLUS] = ACTIONS(779), + [anon_sym_DASH] = ACTIONS(779), + [anon_sym_STAR] = ACTIONS(781), + [anon_sym_struct] = ACTIONS(783), + [anon_sym_mut] = ACTIONS(41), + [anon_sym_QMARK] = ACTIONS(47), + [anon_sym_BANG] = ACTIONS(785), + [anon_sym_go] = ACTIONS(787), + [anon_sym_spawn] = ACTIONS(789), + [anon_sym_json_DOTdecode] = ACTIONS(791), + [anon_sym_LBRACK2] = ACTIONS(793), + [anon_sym_TILDE] = ACTIONS(779), + [anon_sym_CARET] = ACTIONS(779), + [anon_sym_AMP] = ACTIONS(795), + [anon_sym_LT_DASH] = ACTIONS(797), + [sym_none] = ACTIONS(799), + [sym_true] = ACTIONS(799), + [sym_false] = ACTIONS(799), + [sym_nil] = ACTIONS(799), + [anon_sym_if] = ACTIONS(801), + [anon_sym_else] = ACTIONS(803), + [anon_sym_DOLLARif] = ACTIONS(805), + [anon_sym_match] = ACTIONS(807), + [anon_sym_select] = ACTIONS(809), + [anon_sym_lock] = ACTIONS(811), + [anon_sym_rlock] = ACTIONS(811), + [anon_sym_unsafe] = ACTIONS(813), + [anon_sym_sql] = ACTIONS(815), + [sym_int_literal] = ACTIONS(799), + [sym_float_literal] = ACTIONS(817), + [sym_rune_literal] = ACTIONS(817), + [sym_pseudo_compile_time_identifier] = ACTIONS(819), + [anon_sym_shared] = ACTIONS(83), + [anon_sym_map_LBRACK] = ACTIONS(85), + [anon_sym_chan] = ACTIONS(87), + [anon_sym_thread] = ACTIONS(89), + [anon_sym_atomic] = ACTIONS(91), + [sym___double_quote] = ACTIONS(821), + [sym___single_quote] = ACTIONS(823), + [sym___c_double_quote] = ACTIONS(825), + [sym___c_single_quote] = ACTIONS(827), + [sym___r_double_quote] = ACTIONS(829), + [sym___r_single_quote] = ACTIONS(831), + }, + [87] = { + [sym_line_comment] = STATE(87), + [sym_block_comment] = STATE(87), + [sym__expression] = STATE(2586), + [sym__expression_without_blocks] = STATE(1903), + [sym__expression_with_blocks] = STATE(2882), + [sym_inc_expression] = STATE(2035), + [sym_dec_expression] = STATE(2035), + [sym_or_block_expression] = STATE(2035), + [sym_option_propagation_expression] = STATE(2035), + [sym_result_propagation_expression] = STATE(2035), + [sym_anon_struct_value_expression] = STATE(2877), + [sym_go_expression] = STATE(2035), + [sym_spawn_expression] = STATE(2035), + [sym_parenthesized_expression] = STATE(2035), + [sym_call_expression] = STATE(2035), + [sym_type_initializer] = STATE(2877), + [sym_function_literal] = STATE(2035), + [sym_reference_expression] = STATE(1944), + [sym_type_reference_expression] = STATE(3460), + [sym_unary_expression] = STATE(2035), + [sym_receive_expression] = STATE(2035), + [sym_binary_expression] = STATE(2035), + [sym_as_type_cast_expression] = STATE(2035), + [sym__max_group] = STATE(2035), + [sym_literal] = STATE(2030), + [sym_map_init_expression] = STATE(2877), + [sym_map_keyed_element] = STATE(2004), + [sym_array_creation] = STATE(2035), + [sym_fixed_array_creation] = STATE(2035), + [sym_selector_expression] = STATE(2035), + [sym_index_expression] = STATE(2035), + [sym_slice_expression] = STATE(2035), + [sym_if_expression] = STATE(2877), + [sym_compile_time_if_expression] = STATE(2877), + [sym_is_expression] = STATE(2035), + [sym_in_expression] = STATE(2035), + [sym_enum_fetch] = STATE(2035), + [sym_match_expression] = STATE(2877), + [sym_select_expression] = STATE(2877), + [sym_select_arm] = STATE(2140), + [sym_select_arm_statement] = STATE(4150), + [sym_select_var_declaration] = STATE(4507), + [sym_select_else_arn_clause] = STATE(4455), + [sym_lock_expression] = STATE(2877), + [sym_unsafe_expression] = STATE(2877), + [sym_sql_expression] = STATE(2877), + [sym_c_string_literal] = STATE(2029), + [sym_raw_string_literal] = STATE(2029), + [sym_interpreted_string_literal] = STATE(2029), + [sym_mutability_modifiers] = STATE(641), + [sym_mutable_identifier] = STATE(3847), + [sym_identifier_list] = STATE(4511), + [sym_expression_without_blocks_list] = STATE(3279), + [sym_plain_type] = STATE(4297), + [sym__plain_type_without_special] = STATE(2360), + [sym_anon_struct_type] = STATE(2362), + [sym_multi_return_type] = STATE(2360), + [sym_result_type] = STATE(2360), + [sym_option_type] = STATE(2360), + [sym_qualified_type] = STATE(3460), + [sym_fixed_array_type] = STATE(2362), + [sym_array_type] = STATE(2362), + [sym_pointer_type] = STATE(2362), + [sym_wrong_pointer_type] = STATE(2362), + [sym_map_type] = STATE(2362), + [sym_channel_type] = STATE(2362), + [sym_shared_type] = STATE(2362), + [sym_thread_type] = STATE(2362), + [sym_atomic_type] = STATE(2362), + [sym_generic_type] = STATE(2362), + [sym_function_type] = STATE(2362), + [sym_send_statement] = STATE(4507), + [aux_sym_map_init_expression_repeat1] = STATE(242), + [aux_sym_select_expression_repeat1] = STATE(137), + [sym_identifier] = ACTIONS(767), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(769), + [anon_sym_LBRACE] = ACTIONS(771), + [anon_sym_RBRACE] = ACTIONS(833), + [anon_sym_LPAREN] = ACTIONS(775), + [anon_sym_fn] = ACTIONS(777), + [anon_sym_PLUS] = ACTIONS(779), + [anon_sym_DASH] = ACTIONS(779), + [anon_sym_STAR] = ACTIONS(781), + [anon_sym_struct] = ACTIONS(783), + [anon_sym_mut] = ACTIONS(41), + [anon_sym_QMARK] = ACTIONS(47), + [anon_sym_BANG] = ACTIONS(785), + [anon_sym_go] = ACTIONS(787), + [anon_sym_spawn] = ACTIONS(789), + [anon_sym_json_DOTdecode] = ACTIONS(791), + [anon_sym_LBRACK2] = ACTIONS(793), + [anon_sym_TILDE] = ACTIONS(779), + [anon_sym_CARET] = ACTIONS(779), + [anon_sym_AMP] = ACTIONS(795), + [anon_sym_LT_DASH] = ACTIONS(797), + [sym_none] = ACTIONS(799), + [sym_true] = ACTIONS(799), + [sym_false] = ACTIONS(799), + [sym_nil] = ACTIONS(799), + [anon_sym_if] = ACTIONS(801), + [anon_sym_else] = ACTIONS(803), + [anon_sym_DOLLARif] = ACTIONS(805), + [anon_sym_match] = ACTIONS(807), + [anon_sym_select] = ACTIONS(809), + [anon_sym_lock] = ACTIONS(811), + [anon_sym_rlock] = ACTIONS(811), + [anon_sym_unsafe] = ACTIONS(813), + [anon_sym_sql] = ACTIONS(815), + [sym_int_literal] = ACTIONS(799), + [sym_float_literal] = ACTIONS(817), + [sym_rune_literal] = ACTIONS(817), + [sym_pseudo_compile_time_identifier] = ACTIONS(819), + [anon_sym_shared] = ACTIONS(83), + [anon_sym_map_LBRACK] = ACTIONS(85), + [anon_sym_chan] = ACTIONS(87), + [anon_sym_thread] = ACTIONS(89), + [anon_sym_atomic] = ACTIONS(91), + [sym___double_quote] = ACTIONS(821), + [sym___single_quote] = ACTIONS(823), + [sym___c_double_quote] = ACTIONS(825), + [sym___c_single_quote] = ACTIONS(827), + [sym___r_double_quote] = ACTIONS(829), + [sym___r_single_quote] = ACTIONS(831), + }, + [88] = { + [sym_line_comment] = STATE(88), + [sym_block_comment] = STATE(88), + [sym__expression] = STATE(2586), + [sym__expression_without_blocks] = STATE(1903), + [sym__expression_with_blocks] = STATE(2882), + [sym_inc_expression] = STATE(2035), + [sym_dec_expression] = STATE(2035), + [sym_or_block_expression] = STATE(2035), + [sym_option_propagation_expression] = STATE(2035), + [sym_result_propagation_expression] = STATE(2035), + [sym_anon_struct_value_expression] = STATE(2877), + [sym_go_expression] = STATE(2035), + [sym_spawn_expression] = STATE(2035), + [sym_parenthesized_expression] = STATE(2035), + [sym_call_expression] = STATE(2035), + [sym_type_initializer] = STATE(2877), + [sym_function_literal] = STATE(2035), + [sym_reference_expression] = STATE(1944), + [sym_type_reference_expression] = STATE(3460), + [sym_unary_expression] = STATE(2035), + [sym_receive_expression] = STATE(2035), + [sym_binary_expression] = STATE(2035), + [sym_as_type_cast_expression] = STATE(2035), + [sym__max_group] = STATE(2035), + [sym_literal] = STATE(2030), + [sym_map_init_expression] = STATE(2877), + [sym_map_keyed_element] = STATE(2004), + [sym_array_creation] = STATE(2035), + [sym_fixed_array_creation] = STATE(2035), + [sym_selector_expression] = STATE(2035), + [sym_index_expression] = STATE(2035), + [sym_slice_expression] = STATE(2035), + [sym_if_expression] = STATE(2877), + [sym_compile_time_if_expression] = STATE(2877), + [sym_is_expression] = STATE(2035), + [sym_in_expression] = STATE(2035), + [sym_enum_fetch] = STATE(2035), + [sym_match_expression] = STATE(2877), + [sym_select_expression] = STATE(2877), + [sym_select_arm] = STATE(2140), + [sym_select_arm_statement] = STATE(4150), + [sym_select_var_declaration] = STATE(4507), + [sym_select_else_arn_clause] = STATE(4566), + [sym_lock_expression] = STATE(2877), + [sym_unsafe_expression] = STATE(2877), + [sym_sql_expression] = STATE(2877), + [sym_c_string_literal] = STATE(2029), + [sym_raw_string_literal] = STATE(2029), + [sym_interpreted_string_literal] = STATE(2029), + [sym_mutability_modifiers] = STATE(641), + [sym_mutable_identifier] = STATE(3847), + [sym_identifier_list] = STATE(4511), + [sym_expression_without_blocks_list] = STATE(3279), + [sym_plain_type] = STATE(4297), + [sym__plain_type_without_special] = STATE(2360), + [sym_anon_struct_type] = STATE(2362), + [sym_multi_return_type] = STATE(2360), + [sym_result_type] = STATE(2360), + [sym_option_type] = STATE(2360), + [sym_qualified_type] = STATE(3460), + [sym_fixed_array_type] = STATE(2362), + [sym_array_type] = STATE(2362), + [sym_pointer_type] = STATE(2362), + [sym_wrong_pointer_type] = STATE(2362), + [sym_map_type] = STATE(2362), + [sym_channel_type] = STATE(2362), + [sym_shared_type] = STATE(2362), + [sym_thread_type] = STATE(2362), + [sym_atomic_type] = STATE(2362), + [sym_generic_type] = STATE(2362), + [sym_function_type] = STATE(2362), + [sym_send_statement] = STATE(4507), + [aux_sym_map_init_expression_repeat1] = STATE(242), + [aux_sym_select_expression_repeat1] = STATE(114), + [sym_identifier] = ACTIONS(767), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(769), + [anon_sym_LBRACE] = ACTIONS(771), + [anon_sym_RBRACE] = ACTIONS(835), + [anon_sym_LPAREN] = ACTIONS(775), + [anon_sym_fn] = ACTIONS(777), + [anon_sym_PLUS] = ACTIONS(779), + [anon_sym_DASH] = ACTIONS(779), + [anon_sym_STAR] = ACTIONS(781), + [anon_sym_struct] = ACTIONS(783), + [anon_sym_mut] = ACTIONS(41), + [anon_sym_QMARK] = ACTIONS(47), + [anon_sym_BANG] = ACTIONS(785), + [anon_sym_go] = ACTIONS(787), + [anon_sym_spawn] = ACTIONS(789), + [anon_sym_json_DOTdecode] = ACTIONS(791), + [anon_sym_LBRACK2] = ACTIONS(793), + [anon_sym_TILDE] = ACTIONS(779), + [anon_sym_CARET] = ACTIONS(779), + [anon_sym_AMP] = ACTIONS(795), + [anon_sym_LT_DASH] = ACTIONS(797), + [sym_none] = ACTIONS(799), + [sym_true] = ACTIONS(799), + [sym_false] = ACTIONS(799), + [sym_nil] = ACTIONS(799), + [anon_sym_if] = ACTIONS(801), + [anon_sym_else] = ACTIONS(803), + [anon_sym_DOLLARif] = ACTIONS(805), + [anon_sym_match] = ACTIONS(807), + [anon_sym_select] = ACTIONS(809), + [anon_sym_lock] = ACTIONS(811), + [anon_sym_rlock] = ACTIONS(811), + [anon_sym_unsafe] = ACTIONS(813), + [anon_sym_sql] = ACTIONS(815), + [sym_int_literal] = ACTIONS(799), + [sym_float_literal] = ACTIONS(817), + [sym_rune_literal] = ACTIONS(817), + [sym_pseudo_compile_time_identifier] = ACTIONS(819), + [anon_sym_shared] = ACTIONS(83), + [anon_sym_map_LBRACK] = ACTIONS(85), + [anon_sym_chan] = ACTIONS(87), + [anon_sym_thread] = ACTIONS(89), + [anon_sym_atomic] = ACTIONS(91), + [sym___double_quote] = ACTIONS(821), + [sym___single_quote] = ACTIONS(823), + [sym___c_double_quote] = ACTIONS(825), + [sym___c_single_quote] = ACTIONS(827), + [sym___r_double_quote] = ACTIONS(829), + [sym___r_single_quote] = ACTIONS(831), + }, + [89] = { + [sym_line_comment] = STATE(89), + [sym_block_comment] = STATE(89), + [sym__expression] = STATE(2586), + [sym__expression_without_blocks] = STATE(1903), + [sym__expression_with_blocks] = STATE(2882), + [sym_inc_expression] = STATE(2035), + [sym_dec_expression] = STATE(2035), + [sym_or_block_expression] = STATE(2035), + [sym_option_propagation_expression] = STATE(2035), + [sym_result_propagation_expression] = STATE(2035), + [sym_anon_struct_value_expression] = STATE(2877), + [sym_go_expression] = STATE(2035), + [sym_spawn_expression] = STATE(2035), + [sym_parenthesized_expression] = STATE(2035), + [sym_call_expression] = STATE(2035), + [sym_type_initializer] = STATE(2877), + [sym_function_literal] = STATE(2035), + [sym_reference_expression] = STATE(1944), + [sym_type_reference_expression] = STATE(3460), + [sym_unary_expression] = STATE(2035), + [sym_receive_expression] = STATE(2035), + [sym_binary_expression] = STATE(2035), + [sym_as_type_cast_expression] = STATE(2035), + [sym__max_group] = STATE(2035), + [sym_literal] = STATE(2030), + [sym_map_init_expression] = STATE(2877), + [sym_map_keyed_element] = STATE(2004), + [sym_array_creation] = STATE(2035), + [sym_fixed_array_creation] = STATE(2035), + [sym_selector_expression] = STATE(2035), + [sym_index_expression] = STATE(2035), + [sym_slice_expression] = STATE(2035), + [sym_if_expression] = STATE(2877), + [sym_compile_time_if_expression] = STATE(2877), + [sym_is_expression] = STATE(2035), + [sym_in_expression] = STATE(2035), + [sym_enum_fetch] = STATE(2035), + [sym_match_expression] = STATE(2877), + [sym_select_expression] = STATE(2877), + [sym_select_arm] = STATE(2140), + [sym_select_arm_statement] = STATE(4150), + [sym_select_var_declaration] = STATE(4507), + [sym_select_else_arn_clause] = STATE(4612), + [sym_lock_expression] = STATE(2877), + [sym_unsafe_expression] = STATE(2877), + [sym_sql_expression] = STATE(2877), + [sym_c_string_literal] = STATE(2029), + [sym_raw_string_literal] = STATE(2029), + [sym_interpreted_string_literal] = STATE(2029), + [sym_mutability_modifiers] = STATE(641), + [sym_mutable_identifier] = STATE(3847), + [sym_identifier_list] = STATE(4511), + [sym_expression_without_blocks_list] = STATE(3279), + [sym_plain_type] = STATE(4297), + [sym__plain_type_without_special] = STATE(2360), + [sym_anon_struct_type] = STATE(2362), + [sym_multi_return_type] = STATE(2360), + [sym_result_type] = STATE(2360), + [sym_option_type] = STATE(2360), + [sym_qualified_type] = STATE(3460), + [sym_fixed_array_type] = STATE(2362), + [sym_array_type] = STATE(2362), + [sym_pointer_type] = STATE(2362), + [sym_wrong_pointer_type] = STATE(2362), + [sym_map_type] = STATE(2362), + [sym_channel_type] = STATE(2362), + [sym_shared_type] = STATE(2362), + [sym_thread_type] = STATE(2362), + [sym_atomic_type] = STATE(2362), + [sym_generic_type] = STATE(2362), + [sym_function_type] = STATE(2362), + [sym_send_statement] = STATE(4507), + [aux_sym_map_init_expression_repeat1] = STATE(242), + [aux_sym_select_expression_repeat1] = STATE(147), + [sym_identifier] = ACTIONS(767), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(769), + [anon_sym_LBRACE] = ACTIONS(771), + [anon_sym_RBRACE] = ACTIONS(837), + [anon_sym_LPAREN] = ACTIONS(775), + [anon_sym_fn] = ACTIONS(777), + [anon_sym_PLUS] = ACTIONS(779), + [anon_sym_DASH] = ACTIONS(779), + [anon_sym_STAR] = ACTIONS(781), + [anon_sym_struct] = ACTIONS(783), + [anon_sym_mut] = ACTIONS(41), + [anon_sym_QMARK] = ACTIONS(47), + [anon_sym_BANG] = ACTIONS(785), + [anon_sym_go] = ACTIONS(787), + [anon_sym_spawn] = ACTIONS(789), + [anon_sym_json_DOTdecode] = ACTIONS(791), + [anon_sym_LBRACK2] = ACTIONS(793), + [anon_sym_TILDE] = ACTIONS(779), + [anon_sym_CARET] = ACTIONS(779), + [anon_sym_AMP] = ACTIONS(795), + [anon_sym_LT_DASH] = ACTIONS(797), + [sym_none] = ACTIONS(799), + [sym_true] = ACTIONS(799), + [sym_false] = ACTIONS(799), + [sym_nil] = ACTIONS(799), + [anon_sym_if] = ACTIONS(801), + [anon_sym_else] = ACTIONS(803), + [anon_sym_DOLLARif] = ACTIONS(805), + [anon_sym_match] = ACTIONS(807), + [anon_sym_select] = ACTIONS(809), + [anon_sym_lock] = ACTIONS(811), + [anon_sym_rlock] = ACTIONS(811), + [anon_sym_unsafe] = ACTIONS(813), + [anon_sym_sql] = ACTIONS(815), + [sym_int_literal] = ACTIONS(799), + [sym_float_literal] = ACTIONS(817), + [sym_rune_literal] = ACTIONS(817), + [sym_pseudo_compile_time_identifier] = ACTIONS(819), + [anon_sym_shared] = ACTIONS(83), + [anon_sym_map_LBRACK] = ACTIONS(85), + [anon_sym_chan] = ACTIONS(87), + [anon_sym_thread] = ACTIONS(89), + [anon_sym_atomic] = ACTIONS(91), + [sym___double_quote] = ACTIONS(821), + [sym___single_quote] = ACTIONS(823), + [sym___c_double_quote] = ACTIONS(825), + [sym___c_single_quote] = ACTIONS(827), + [sym___r_double_quote] = ACTIONS(829), + [sym___r_single_quote] = ACTIONS(831), + }, + [90] = { + [sym_line_comment] = STATE(90), + [sym_block_comment] = STATE(90), + [sym__expression] = STATE(2586), + [sym__expression_without_blocks] = STATE(1903), + [sym__expression_with_blocks] = STATE(2882), + [sym_inc_expression] = STATE(2035), + [sym_dec_expression] = STATE(2035), + [sym_or_block_expression] = STATE(2035), + [sym_option_propagation_expression] = STATE(2035), + [sym_result_propagation_expression] = STATE(2035), + [sym_anon_struct_value_expression] = STATE(2877), + [sym_go_expression] = STATE(2035), + [sym_spawn_expression] = STATE(2035), + [sym_parenthesized_expression] = STATE(2035), + [sym_call_expression] = STATE(2035), + [sym_type_initializer] = STATE(2877), + [sym_function_literal] = STATE(2035), + [sym_reference_expression] = STATE(1944), + [sym_type_reference_expression] = STATE(3460), + [sym_unary_expression] = STATE(2035), + [sym_receive_expression] = STATE(2035), + [sym_binary_expression] = STATE(2035), + [sym_as_type_cast_expression] = STATE(2035), + [sym__max_group] = STATE(2035), + [sym_literal] = STATE(2030), + [sym_map_init_expression] = STATE(2877), + [sym_map_keyed_element] = STATE(2004), + [sym_array_creation] = STATE(2035), + [sym_fixed_array_creation] = STATE(2035), + [sym_selector_expression] = STATE(2035), + [sym_index_expression] = STATE(2035), + [sym_slice_expression] = STATE(2035), + [sym_if_expression] = STATE(2877), + [sym_compile_time_if_expression] = STATE(2877), + [sym_is_expression] = STATE(2035), + [sym_in_expression] = STATE(2035), + [sym_enum_fetch] = STATE(2035), + [sym_match_expression] = STATE(2877), + [sym_select_expression] = STATE(2877), + [sym_select_arm] = STATE(2140), + [sym_select_arm_statement] = STATE(4150), + [sym_select_var_declaration] = STATE(4507), + [sym_select_else_arn_clause] = STATE(4435), + [sym_lock_expression] = STATE(2877), + [sym_unsafe_expression] = STATE(2877), + [sym_sql_expression] = STATE(2877), + [sym_c_string_literal] = STATE(2029), + [sym_raw_string_literal] = STATE(2029), + [sym_interpreted_string_literal] = STATE(2029), + [sym_mutability_modifiers] = STATE(641), + [sym_mutable_identifier] = STATE(3847), + [sym_identifier_list] = STATE(4511), + [sym_expression_without_blocks_list] = STATE(3279), + [sym_plain_type] = STATE(4297), + [sym__plain_type_without_special] = STATE(2360), + [sym_anon_struct_type] = STATE(2362), + [sym_multi_return_type] = STATE(2360), + [sym_result_type] = STATE(2360), + [sym_option_type] = STATE(2360), + [sym_qualified_type] = STATE(3460), + [sym_fixed_array_type] = STATE(2362), + [sym_array_type] = STATE(2362), + [sym_pointer_type] = STATE(2362), + [sym_wrong_pointer_type] = STATE(2362), + [sym_map_type] = STATE(2362), + [sym_channel_type] = STATE(2362), + [sym_shared_type] = STATE(2362), + [sym_thread_type] = STATE(2362), + [sym_atomic_type] = STATE(2362), + [sym_generic_type] = STATE(2362), + [sym_function_type] = STATE(2362), + [sym_send_statement] = STATE(4507), + [aux_sym_map_init_expression_repeat1] = STATE(242), + [aux_sym_select_expression_repeat1] = STATE(121), + [sym_identifier] = ACTIONS(767), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(769), + [anon_sym_LBRACE] = ACTIONS(771), + [anon_sym_RBRACE] = ACTIONS(839), + [anon_sym_LPAREN] = ACTIONS(775), + [anon_sym_fn] = ACTIONS(777), + [anon_sym_PLUS] = ACTIONS(779), + [anon_sym_DASH] = ACTIONS(779), + [anon_sym_STAR] = ACTIONS(781), + [anon_sym_struct] = ACTIONS(783), + [anon_sym_mut] = ACTIONS(41), + [anon_sym_QMARK] = ACTIONS(47), + [anon_sym_BANG] = ACTIONS(785), + [anon_sym_go] = ACTIONS(787), + [anon_sym_spawn] = ACTIONS(789), + [anon_sym_json_DOTdecode] = ACTIONS(791), + [anon_sym_LBRACK2] = ACTIONS(793), + [anon_sym_TILDE] = ACTIONS(779), + [anon_sym_CARET] = ACTIONS(779), + [anon_sym_AMP] = ACTIONS(795), + [anon_sym_LT_DASH] = ACTIONS(797), + [sym_none] = ACTIONS(799), + [sym_true] = ACTIONS(799), + [sym_false] = ACTIONS(799), + [sym_nil] = ACTIONS(799), + [anon_sym_if] = ACTIONS(801), + [anon_sym_else] = ACTIONS(803), + [anon_sym_DOLLARif] = ACTIONS(805), + [anon_sym_match] = ACTIONS(807), + [anon_sym_select] = ACTIONS(809), + [anon_sym_lock] = ACTIONS(811), + [anon_sym_rlock] = ACTIONS(811), + [anon_sym_unsafe] = ACTIONS(813), + [anon_sym_sql] = ACTIONS(815), + [sym_int_literal] = ACTIONS(799), + [sym_float_literal] = ACTIONS(817), + [sym_rune_literal] = ACTIONS(817), + [sym_pseudo_compile_time_identifier] = ACTIONS(819), + [anon_sym_shared] = ACTIONS(83), + [anon_sym_map_LBRACK] = ACTIONS(85), + [anon_sym_chan] = ACTIONS(87), + [anon_sym_thread] = ACTIONS(89), + [anon_sym_atomic] = ACTIONS(91), + [sym___double_quote] = ACTIONS(821), + [sym___single_quote] = ACTIONS(823), + [sym___c_double_quote] = ACTIONS(825), + [sym___c_single_quote] = ACTIONS(827), + [sym___r_double_quote] = ACTIONS(829), + [sym___r_single_quote] = ACTIONS(831), + }, + [91] = { + [sym_line_comment] = STATE(91), + [sym_block_comment] = STATE(91), + [sym__expression] = STATE(2586), + [sym__expression_without_blocks] = STATE(1903), + [sym__expression_with_blocks] = STATE(2882), + [sym_inc_expression] = STATE(2035), + [sym_dec_expression] = STATE(2035), + [sym_or_block_expression] = STATE(2035), + [sym_option_propagation_expression] = STATE(2035), + [sym_result_propagation_expression] = STATE(2035), + [sym_anon_struct_value_expression] = STATE(2877), + [sym_go_expression] = STATE(2035), + [sym_spawn_expression] = STATE(2035), + [sym_parenthesized_expression] = STATE(2035), + [sym_call_expression] = STATE(2035), + [sym_type_initializer] = STATE(2877), + [sym_function_literal] = STATE(2035), + [sym_reference_expression] = STATE(1944), + [sym_type_reference_expression] = STATE(3460), + [sym_unary_expression] = STATE(2035), + [sym_receive_expression] = STATE(2035), + [sym_binary_expression] = STATE(2035), + [sym_as_type_cast_expression] = STATE(2035), + [sym__max_group] = STATE(2035), + [sym_literal] = STATE(2030), + [sym_map_init_expression] = STATE(2877), + [sym_map_keyed_element] = STATE(2004), + [sym_array_creation] = STATE(2035), + [sym_fixed_array_creation] = STATE(2035), + [sym_selector_expression] = STATE(2035), + [sym_index_expression] = STATE(2035), + [sym_slice_expression] = STATE(2035), + [sym_if_expression] = STATE(2877), + [sym_compile_time_if_expression] = STATE(2877), + [sym_is_expression] = STATE(2035), + [sym_in_expression] = STATE(2035), + [sym_enum_fetch] = STATE(2035), + [sym_match_expression] = STATE(2877), + [sym_select_expression] = STATE(2877), + [sym_select_arm] = STATE(2140), + [sym_select_arm_statement] = STATE(4150), + [sym_select_var_declaration] = STATE(4507), + [sym_select_else_arn_clause] = STATE(4529), + [sym_lock_expression] = STATE(2877), + [sym_unsafe_expression] = STATE(2877), + [sym_sql_expression] = STATE(2877), + [sym_c_string_literal] = STATE(2029), + [sym_raw_string_literal] = STATE(2029), + [sym_interpreted_string_literal] = STATE(2029), + [sym_mutability_modifiers] = STATE(641), + [sym_mutable_identifier] = STATE(3847), + [sym_identifier_list] = STATE(4511), + [sym_expression_without_blocks_list] = STATE(3279), + [sym_plain_type] = STATE(4297), + [sym__plain_type_without_special] = STATE(2360), + [sym_anon_struct_type] = STATE(2362), + [sym_multi_return_type] = STATE(2360), + [sym_result_type] = STATE(2360), + [sym_option_type] = STATE(2360), + [sym_qualified_type] = STATE(3460), + [sym_fixed_array_type] = STATE(2362), + [sym_array_type] = STATE(2362), + [sym_pointer_type] = STATE(2362), + [sym_wrong_pointer_type] = STATE(2362), + [sym_map_type] = STATE(2362), + [sym_channel_type] = STATE(2362), + [sym_shared_type] = STATE(2362), + [sym_thread_type] = STATE(2362), + [sym_atomic_type] = STATE(2362), + [sym_generic_type] = STATE(2362), + [sym_function_type] = STATE(2362), + [sym_send_statement] = STATE(4507), + [aux_sym_map_init_expression_repeat1] = STATE(242), + [aux_sym_select_expression_repeat1] = STATE(125), + [sym_identifier] = ACTIONS(767), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(769), + [anon_sym_LBRACE] = ACTIONS(771), + [anon_sym_RBRACE] = ACTIONS(841), + [anon_sym_LPAREN] = ACTIONS(775), + [anon_sym_fn] = ACTIONS(777), + [anon_sym_PLUS] = ACTIONS(779), + [anon_sym_DASH] = ACTIONS(779), + [anon_sym_STAR] = ACTIONS(781), + [anon_sym_struct] = ACTIONS(783), + [anon_sym_mut] = ACTIONS(41), + [anon_sym_QMARK] = ACTIONS(47), + [anon_sym_BANG] = ACTIONS(785), + [anon_sym_go] = ACTIONS(787), + [anon_sym_spawn] = ACTIONS(789), + [anon_sym_json_DOTdecode] = ACTIONS(791), + [anon_sym_LBRACK2] = ACTIONS(793), + [anon_sym_TILDE] = ACTIONS(779), + [anon_sym_CARET] = ACTIONS(779), + [anon_sym_AMP] = ACTIONS(795), + [anon_sym_LT_DASH] = ACTIONS(797), + [sym_none] = ACTIONS(799), + [sym_true] = ACTIONS(799), + [sym_false] = ACTIONS(799), + [sym_nil] = ACTIONS(799), + [anon_sym_if] = ACTIONS(801), + [anon_sym_else] = ACTIONS(803), + [anon_sym_DOLLARif] = ACTIONS(805), + [anon_sym_match] = ACTIONS(807), + [anon_sym_select] = ACTIONS(809), + [anon_sym_lock] = ACTIONS(811), + [anon_sym_rlock] = ACTIONS(811), + [anon_sym_unsafe] = ACTIONS(813), + [anon_sym_sql] = ACTIONS(815), + [sym_int_literal] = ACTIONS(799), + [sym_float_literal] = ACTIONS(817), + [sym_rune_literal] = ACTIONS(817), + [sym_pseudo_compile_time_identifier] = ACTIONS(819), + [anon_sym_shared] = ACTIONS(83), + [anon_sym_map_LBRACK] = ACTIONS(85), + [anon_sym_chan] = ACTIONS(87), + [anon_sym_thread] = ACTIONS(89), + [anon_sym_atomic] = ACTIONS(91), + [sym___double_quote] = ACTIONS(821), + [sym___single_quote] = ACTIONS(823), + [sym___c_double_quote] = ACTIONS(825), + [sym___c_single_quote] = ACTIONS(827), + [sym___r_double_quote] = ACTIONS(829), + [sym___r_single_quote] = ACTIONS(831), + }, + [92] = { + [sym_line_comment] = STATE(92), + [sym_block_comment] = STATE(92), + [sym__expression] = STATE(2586), + [sym__expression_without_blocks] = STATE(1903), + [sym__expression_with_blocks] = STATE(2882), + [sym_inc_expression] = STATE(2035), + [sym_dec_expression] = STATE(2035), + [sym_or_block_expression] = STATE(2035), + [sym_option_propagation_expression] = STATE(2035), + [sym_result_propagation_expression] = STATE(2035), + [sym_anon_struct_value_expression] = STATE(2877), + [sym_go_expression] = STATE(2035), + [sym_spawn_expression] = STATE(2035), + [sym_parenthesized_expression] = STATE(2035), + [sym_call_expression] = STATE(2035), + [sym_type_initializer] = STATE(2877), + [sym_function_literal] = STATE(2035), + [sym_reference_expression] = STATE(1944), + [sym_type_reference_expression] = STATE(3460), + [sym_unary_expression] = STATE(2035), + [sym_receive_expression] = STATE(2035), + [sym_binary_expression] = STATE(2035), + [sym_as_type_cast_expression] = STATE(2035), + [sym__max_group] = STATE(2035), + [sym_literal] = STATE(2030), + [sym_map_init_expression] = STATE(2877), + [sym_map_keyed_element] = STATE(2004), + [sym_array_creation] = STATE(2035), + [sym_fixed_array_creation] = STATE(2035), + [sym_selector_expression] = STATE(2035), + [sym_index_expression] = STATE(2035), + [sym_slice_expression] = STATE(2035), + [sym_if_expression] = STATE(2877), + [sym_compile_time_if_expression] = STATE(2877), + [sym_is_expression] = STATE(2035), + [sym_in_expression] = STATE(2035), + [sym_enum_fetch] = STATE(2035), + [sym_match_expression] = STATE(2877), + [sym_select_expression] = STATE(2877), + [sym_select_arm] = STATE(2140), + [sym_select_arm_statement] = STATE(4150), + [sym_select_var_declaration] = STATE(4507), + [sym_select_else_arn_clause] = STATE(4562), + [sym_lock_expression] = STATE(2877), + [sym_unsafe_expression] = STATE(2877), + [sym_sql_expression] = STATE(2877), + [sym_c_string_literal] = STATE(2029), + [sym_raw_string_literal] = STATE(2029), + [sym_interpreted_string_literal] = STATE(2029), + [sym_mutability_modifiers] = STATE(641), + [sym_mutable_identifier] = STATE(3847), + [sym_identifier_list] = STATE(4511), + [sym_expression_without_blocks_list] = STATE(3279), + [sym_plain_type] = STATE(4297), + [sym__plain_type_without_special] = STATE(2360), + [sym_anon_struct_type] = STATE(2362), + [sym_multi_return_type] = STATE(2360), + [sym_result_type] = STATE(2360), + [sym_option_type] = STATE(2360), + [sym_qualified_type] = STATE(3460), + [sym_fixed_array_type] = STATE(2362), + [sym_array_type] = STATE(2362), + [sym_pointer_type] = STATE(2362), + [sym_wrong_pointer_type] = STATE(2362), + [sym_map_type] = STATE(2362), + [sym_channel_type] = STATE(2362), + [sym_shared_type] = STATE(2362), + [sym_thread_type] = STATE(2362), + [sym_atomic_type] = STATE(2362), + [sym_generic_type] = STATE(2362), + [sym_function_type] = STATE(2362), + [sym_send_statement] = STATE(4507), + [aux_sym_map_init_expression_repeat1] = STATE(242), + [aux_sym_select_expression_repeat1] = STATE(123), + [sym_identifier] = ACTIONS(767), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(769), + [anon_sym_LBRACE] = ACTIONS(771), + [anon_sym_RBRACE] = ACTIONS(843), + [anon_sym_LPAREN] = ACTIONS(775), + [anon_sym_fn] = ACTIONS(777), + [anon_sym_PLUS] = ACTIONS(779), + [anon_sym_DASH] = ACTIONS(779), + [anon_sym_STAR] = ACTIONS(781), + [anon_sym_struct] = ACTIONS(783), + [anon_sym_mut] = ACTIONS(41), + [anon_sym_QMARK] = ACTIONS(47), + [anon_sym_BANG] = ACTIONS(785), + [anon_sym_go] = ACTIONS(787), + [anon_sym_spawn] = ACTIONS(789), + [anon_sym_json_DOTdecode] = ACTIONS(791), + [anon_sym_LBRACK2] = ACTIONS(793), + [anon_sym_TILDE] = ACTIONS(779), + [anon_sym_CARET] = ACTIONS(779), + [anon_sym_AMP] = ACTIONS(795), + [anon_sym_LT_DASH] = ACTIONS(797), + [sym_none] = ACTIONS(799), + [sym_true] = ACTIONS(799), + [sym_false] = ACTIONS(799), + [sym_nil] = ACTIONS(799), + [anon_sym_if] = ACTIONS(801), + [anon_sym_else] = ACTIONS(803), + [anon_sym_DOLLARif] = ACTIONS(805), + [anon_sym_match] = ACTIONS(807), + [anon_sym_select] = ACTIONS(809), + [anon_sym_lock] = ACTIONS(811), + [anon_sym_rlock] = ACTIONS(811), + [anon_sym_unsafe] = ACTIONS(813), + [anon_sym_sql] = ACTIONS(815), + [sym_int_literal] = ACTIONS(799), + [sym_float_literal] = ACTIONS(817), + [sym_rune_literal] = ACTIONS(817), + [sym_pseudo_compile_time_identifier] = ACTIONS(819), + [anon_sym_shared] = ACTIONS(83), + [anon_sym_map_LBRACK] = ACTIONS(85), + [anon_sym_chan] = ACTIONS(87), + [anon_sym_thread] = ACTIONS(89), + [anon_sym_atomic] = ACTIONS(91), + [sym___double_quote] = ACTIONS(821), + [sym___single_quote] = ACTIONS(823), + [sym___c_double_quote] = ACTIONS(825), + [sym___c_single_quote] = ACTIONS(827), + [sym___r_double_quote] = ACTIONS(829), + [sym___r_single_quote] = ACTIONS(831), + }, + [93] = { + [sym_line_comment] = STATE(93), + [sym_block_comment] = STATE(93), + [sym__expression] = STATE(2586), + [sym__expression_without_blocks] = STATE(1903), + [sym__expression_with_blocks] = STATE(2882), + [sym_inc_expression] = STATE(2035), + [sym_dec_expression] = STATE(2035), + [sym_or_block_expression] = STATE(2035), + [sym_option_propagation_expression] = STATE(2035), + [sym_result_propagation_expression] = STATE(2035), + [sym_anon_struct_value_expression] = STATE(2877), + [sym_go_expression] = STATE(2035), + [sym_spawn_expression] = STATE(2035), + [sym_parenthesized_expression] = STATE(2035), + [sym_call_expression] = STATE(2035), + [sym_type_initializer] = STATE(2877), + [sym_function_literal] = STATE(2035), + [sym_reference_expression] = STATE(1944), + [sym_type_reference_expression] = STATE(3460), + [sym_unary_expression] = STATE(2035), + [sym_receive_expression] = STATE(2035), + [sym_binary_expression] = STATE(2035), + [sym_as_type_cast_expression] = STATE(2035), + [sym__max_group] = STATE(2035), + [sym_literal] = STATE(2030), + [sym_map_init_expression] = STATE(2877), + [sym_map_keyed_element] = STATE(2004), + [sym_array_creation] = STATE(2035), + [sym_fixed_array_creation] = STATE(2035), + [sym_selector_expression] = STATE(2035), + [sym_index_expression] = STATE(2035), + [sym_slice_expression] = STATE(2035), + [sym_if_expression] = STATE(2877), + [sym_compile_time_if_expression] = STATE(2877), + [sym_is_expression] = STATE(2035), + [sym_in_expression] = STATE(2035), + [sym_enum_fetch] = STATE(2035), + [sym_match_expression] = STATE(2877), + [sym_select_expression] = STATE(2877), + [sym_select_arm] = STATE(2140), + [sym_select_arm_statement] = STATE(4150), + [sym_select_var_declaration] = STATE(4507), + [sym_select_else_arn_clause] = STATE(4562), + [sym_lock_expression] = STATE(2877), + [sym_unsafe_expression] = STATE(2877), + [sym_sql_expression] = STATE(2877), + [sym_c_string_literal] = STATE(2029), + [sym_raw_string_literal] = STATE(2029), + [sym_interpreted_string_literal] = STATE(2029), + [sym_mutability_modifiers] = STATE(641), + [sym_mutable_identifier] = STATE(3847), + [sym_identifier_list] = STATE(4511), + [sym_expression_without_blocks_list] = STATE(3279), + [sym_plain_type] = STATE(4297), + [sym__plain_type_without_special] = STATE(2360), + [sym_anon_struct_type] = STATE(2362), + [sym_multi_return_type] = STATE(2360), + [sym_result_type] = STATE(2360), + [sym_option_type] = STATE(2360), + [sym_qualified_type] = STATE(3460), + [sym_fixed_array_type] = STATE(2362), + [sym_array_type] = STATE(2362), + [sym_pointer_type] = STATE(2362), + [sym_wrong_pointer_type] = STATE(2362), + [sym_map_type] = STATE(2362), + [sym_channel_type] = STATE(2362), + [sym_shared_type] = STATE(2362), + [sym_thread_type] = STATE(2362), + [sym_atomic_type] = STATE(2362), + [sym_generic_type] = STATE(2362), + [sym_function_type] = STATE(2362), + [sym_send_statement] = STATE(4507), + [aux_sym_map_init_expression_repeat1] = STATE(242), + [aux_sym_select_expression_repeat1] = STATE(123), + [sym_identifier] = ACTIONS(767), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(769), + [anon_sym_LBRACE] = ACTIONS(771), + [anon_sym_RBRACE] = ACTIONS(845), + [anon_sym_LPAREN] = ACTIONS(775), + [anon_sym_fn] = ACTIONS(777), + [anon_sym_PLUS] = ACTIONS(779), + [anon_sym_DASH] = ACTIONS(779), + [anon_sym_STAR] = ACTIONS(781), + [anon_sym_struct] = ACTIONS(783), + [anon_sym_mut] = ACTIONS(41), + [anon_sym_QMARK] = ACTIONS(47), + [anon_sym_BANG] = ACTIONS(785), + [anon_sym_go] = ACTIONS(787), + [anon_sym_spawn] = ACTIONS(789), + [anon_sym_json_DOTdecode] = ACTIONS(791), + [anon_sym_LBRACK2] = ACTIONS(793), + [anon_sym_TILDE] = ACTIONS(779), + [anon_sym_CARET] = ACTIONS(779), + [anon_sym_AMP] = ACTIONS(795), + [anon_sym_LT_DASH] = ACTIONS(797), + [sym_none] = ACTIONS(799), + [sym_true] = ACTIONS(799), + [sym_false] = ACTIONS(799), + [sym_nil] = ACTIONS(799), + [anon_sym_if] = ACTIONS(801), + [anon_sym_else] = ACTIONS(803), + [anon_sym_DOLLARif] = ACTIONS(805), + [anon_sym_match] = ACTIONS(807), + [anon_sym_select] = ACTIONS(809), + [anon_sym_lock] = ACTIONS(811), + [anon_sym_rlock] = ACTIONS(811), + [anon_sym_unsafe] = ACTIONS(813), + [anon_sym_sql] = ACTIONS(815), + [sym_int_literal] = ACTIONS(799), + [sym_float_literal] = ACTIONS(817), + [sym_rune_literal] = ACTIONS(817), + [sym_pseudo_compile_time_identifier] = ACTIONS(819), + [anon_sym_shared] = ACTIONS(83), + [anon_sym_map_LBRACK] = ACTIONS(85), + [anon_sym_chan] = ACTIONS(87), + [anon_sym_thread] = ACTIONS(89), + [anon_sym_atomic] = ACTIONS(91), + [sym___double_quote] = ACTIONS(821), + [sym___single_quote] = ACTIONS(823), + [sym___c_double_quote] = ACTIONS(825), + [sym___c_single_quote] = ACTIONS(827), + [sym___r_double_quote] = ACTIONS(829), + [sym___r_single_quote] = ACTIONS(831), + }, + [94] = { + [sym_line_comment] = STATE(94), + [sym_block_comment] = STATE(94), + [sym__expression] = STATE(2586), + [sym__expression_without_blocks] = STATE(1903), + [sym__expression_with_blocks] = STATE(2882), + [sym_inc_expression] = STATE(2035), + [sym_dec_expression] = STATE(2035), + [sym_or_block_expression] = STATE(2035), + [sym_option_propagation_expression] = STATE(2035), + [sym_result_propagation_expression] = STATE(2035), + [sym_anon_struct_value_expression] = STATE(2877), + [sym_go_expression] = STATE(2035), + [sym_spawn_expression] = STATE(2035), + [sym_parenthesized_expression] = STATE(2035), + [sym_call_expression] = STATE(2035), + [sym_type_initializer] = STATE(2877), + [sym_function_literal] = STATE(2035), + [sym_reference_expression] = STATE(1944), + [sym_type_reference_expression] = STATE(3460), + [sym_unary_expression] = STATE(2035), + [sym_receive_expression] = STATE(2035), + [sym_binary_expression] = STATE(2035), + [sym_as_type_cast_expression] = STATE(2035), + [sym__max_group] = STATE(2035), + [sym_literal] = STATE(2030), + [sym_map_init_expression] = STATE(2877), + [sym_map_keyed_element] = STATE(2004), + [sym_array_creation] = STATE(2035), + [sym_fixed_array_creation] = STATE(2035), + [sym_selector_expression] = STATE(2035), + [sym_index_expression] = STATE(2035), + [sym_slice_expression] = STATE(2035), + [sym_if_expression] = STATE(2877), + [sym_compile_time_if_expression] = STATE(2877), + [sym_is_expression] = STATE(2035), + [sym_in_expression] = STATE(2035), + [sym_enum_fetch] = STATE(2035), + [sym_match_expression] = STATE(2877), + [sym_select_expression] = STATE(2877), + [sym_select_arm] = STATE(2140), + [sym_select_arm_statement] = STATE(4150), + [sym_select_var_declaration] = STATE(4507), + [sym_select_else_arn_clause] = STATE(4411), + [sym_lock_expression] = STATE(2877), + [sym_unsafe_expression] = STATE(2877), + [sym_sql_expression] = STATE(2877), + [sym_c_string_literal] = STATE(2029), + [sym_raw_string_literal] = STATE(2029), + [sym_interpreted_string_literal] = STATE(2029), + [sym_mutability_modifiers] = STATE(641), + [sym_mutable_identifier] = STATE(3847), + [sym_identifier_list] = STATE(4511), + [sym_expression_without_blocks_list] = STATE(3279), + [sym_plain_type] = STATE(4297), + [sym__plain_type_without_special] = STATE(2360), + [sym_anon_struct_type] = STATE(2362), + [sym_multi_return_type] = STATE(2360), + [sym_result_type] = STATE(2360), + [sym_option_type] = STATE(2360), + [sym_qualified_type] = STATE(3460), + [sym_fixed_array_type] = STATE(2362), + [sym_array_type] = STATE(2362), + [sym_pointer_type] = STATE(2362), + [sym_wrong_pointer_type] = STATE(2362), + [sym_map_type] = STATE(2362), + [sym_channel_type] = STATE(2362), + [sym_shared_type] = STATE(2362), + [sym_thread_type] = STATE(2362), + [sym_atomic_type] = STATE(2362), + [sym_generic_type] = STATE(2362), + [sym_function_type] = STATE(2362), + [sym_send_statement] = STATE(4507), + [aux_sym_map_init_expression_repeat1] = STATE(242), + [aux_sym_select_expression_repeat1] = STATE(133), + [sym_identifier] = ACTIONS(767), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(769), + [anon_sym_LBRACE] = ACTIONS(771), + [anon_sym_RBRACE] = ACTIONS(847), + [anon_sym_LPAREN] = ACTIONS(775), + [anon_sym_fn] = ACTIONS(777), + [anon_sym_PLUS] = ACTIONS(779), + [anon_sym_DASH] = ACTIONS(779), + [anon_sym_STAR] = ACTIONS(781), + [anon_sym_struct] = ACTIONS(783), + [anon_sym_mut] = ACTIONS(41), + [anon_sym_QMARK] = ACTIONS(47), + [anon_sym_BANG] = ACTIONS(785), + [anon_sym_go] = ACTIONS(787), + [anon_sym_spawn] = ACTIONS(789), + [anon_sym_json_DOTdecode] = ACTIONS(791), + [anon_sym_LBRACK2] = ACTIONS(793), + [anon_sym_TILDE] = ACTIONS(779), + [anon_sym_CARET] = ACTIONS(779), + [anon_sym_AMP] = ACTIONS(795), + [anon_sym_LT_DASH] = ACTIONS(797), + [sym_none] = ACTIONS(799), + [sym_true] = ACTIONS(799), + [sym_false] = ACTIONS(799), + [sym_nil] = ACTIONS(799), + [anon_sym_if] = ACTIONS(801), + [anon_sym_else] = ACTIONS(803), + [anon_sym_DOLLARif] = ACTIONS(805), + [anon_sym_match] = ACTIONS(807), + [anon_sym_select] = ACTIONS(809), + [anon_sym_lock] = ACTIONS(811), + [anon_sym_rlock] = ACTIONS(811), + [anon_sym_unsafe] = ACTIONS(813), + [anon_sym_sql] = ACTIONS(815), + [sym_int_literal] = ACTIONS(799), + [sym_float_literal] = ACTIONS(817), + [sym_rune_literal] = ACTIONS(817), + [sym_pseudo_compile_time_identifier] = ACTIONS(819), + [anon_sym_shared] = ACTIONS(83), + [anon_sym_map_LBRACK] = ACTIONS(85), + [anon_sym_chan] = ACTIONS(87), + [anon_sym_thread] = ACTIONS(89), + [anon_sym_atomic] = ACTIONS(91), + [sym___double_quote] = ACTIONS(821), + [sym___single_quote] = ACTIONS(823), + [sym___c_double_quote] = ACTIONS(825), + [sym___c_single_quote] = ACTIONS(827), + [sym___r_double_quote] = ACTIONS(829), + [sym___r_single_quote] = ACTIONS(831), + }, + [95] = { + [sym_line_comment] = STATE(95), + [sym_block_comment] = STATE(95), + [sym__expression] = STATE(2586), + [sym__expression_without_blocks] = STATE(1903), + [sym__expression_with_blocks] = STATE(2882), + [sym_inc_expression] = STATE(2035), + [sym_dec_expression] = STATE(2035), + [sym_or_block_expression] = STATE(2035), + [sym_option_propagation_expression] = STATE(2035), + [sym_result_propagation_expression] = STATE(2035), + [sym_anon_struct_value_expression] = STATE(2877), + [sym_go_expression] = STATE(2035), + [sym_spawn_expression] = STATE(2035), + [sym_parenthesized_expression] = STATE(2035), + [sym_call_expression] = STATE(2035), + [sym_type_initializer] = STATE(2877), + [sym_function_literal] = STATE(2035), + [sym_reference_expression] = STATE(1944), + [sym_type_reference_expression] = STATE(3460), + [sym_unary_expression] = STATE(2035), + [sym_receive_expression] = STATE(2035), + [sym_binary_expression] = STATE(2035), + [sym_as_type_cast_expression] = STATE(2035), + [sym__max_group] = STATE(2035), + [sym_literal] = STATE(2030), + [sym_map_init_expression] = STATE(2877), + [sym_map_keyed_element] = STATE(2004), + [sym_array_creation] = STATE(2035), + [sym_fixed_array_creation] = STATE(2035), + [sym_selector_expression] = STATE(2035), + [sym_index_expression] = STATE(2035), + [sym_slice_expression] = STATE(2035), + [sym_if_expression] = STATE(2877), + [sym_compile_time_if_expression] = STATE(2877), + [sym_is_expression] = STATE(2035), + [sym_in_expression] = STATE(2035), + [sym_enum_fetch] = STATE(2035), + [sym_match_expression] = STATE(2877), + [sym_select_expression] = STATE(2877), + [sym_select_arm] = STATE(2140), + [sym_select_arm_statement] = STATE(4150), + [sym_select_var_declaration] = STATE(4507), + [sym_select_else_arn_clause] = STATE(4407), + [sym_lock_expression] = STATE(2877), + [sym_unsafe_expression] = STATE(2877), + [sym_sql_expression] = STATE(2877), + [sym_c_string_literal] = STATE(2029), + [sym_raw_string_literal] = STATE(2029), + [sym_interpreted_string_literal] = STATE(2029), + [sym_mutability_modifiers] = STATE(641), + [sym_mutable_identifier] = STATE(3847), + [sym_identifier_list] = STATE(4511), + [sym_expression_without_blocks_list] = STATE(3279), + [sym_plain_type] = STATE(4297), + [sym__plain_type_without_special] = STATE(2360), + [sym_anon_struct_type] = STATE(2362), + [sym_multi_return_type] = STATE(2360), + [sym_result_type] = STATE(2360), + [sym_option_type] = STATE(2360), + [sym_qualified_type] = STATE(3460), + [sym_fixed_array_type] = STATE(2362), + [sym_array_type] = STATE(2362), + [sym_pointer_type] = STATE(2362), + [sym_wrong_pointer_type] = STATE(2362), + [sym_map_type] = STATE(2362), + [sym_channel_type] = STATE(2362), + [sym_shared_type] = STATE(2362), + [sym_thread_type] = STATE(2362), + [sym_atomic_type] = STATE(2362), + [sym_generic_type] = STATE(2362), + [sym_function_type] = STATE(2362), + [sym_send_statement] = STATE(4507), + [aux_sym_map_init_expression_repeat1] = STATE(242), + [aux_sym_select_expression_repeat1] = STATE(131), + [sym_identifier] = ACTIONS(767), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(769), + [anon_sym_LBRACE] = ACTIONS(771), + [anon_sym_RBRACE] = ACTIONS(849), + [anon_sym_LPAREN] = ACTIONS(775), + [anon_sym_fn] = ACTIONS(777), + [anon_sym_PLUS] = ACTIONS(779), + [anon_sym_DASH] = ACTIONS(779), + [anon_sym_STAR] = ACTIONS(781), + [anon_sym_struct] = ACTIONS(783), + [anon_sym_mut] = ACTIONS(41), + [anon_sym_QMARK] = ACTIONS(47), + [anon_sym_BANG] = ACTIONS(785), + [anon_sym_go] = ACTIONS(787), + [anon_sym_spawn] = ACTIONS(789), + [anon_sym_json_DOTdecode] = ACTIONS(791), + [anon_sym_LBRACK2] = ACTIONS(793), + [anon_sym_TILDE] = ACTIONS(779), + [anon_sym_CARET] = ACTIONS(779), + [anon_sym_AMP] = ACTIONS(795), + [anon_sym_LT_DASH] = ACTIONS(797), + [sym_none] = ACTIONS(799), + [sym_true] = ACTIONS(799), + [sym_false] = ACTIONS(799), + [sym_nil] = ACTIONS(799), + [anon_sym_if] = ACTIONS(801), + [anon_sym_else] = ACTIONS(803), + [anon_sym_DOLLARif] = ACTIONS(805), + [anon_sym_match] = ACTIONS(807), + [anon_sym_select] = ACTIONS(809), + [anon_sym_lock] = ACTIONS(811), + [anon_sym_rlock] = ACTIONS(811), + [anon_sym_unsafe] = ACTIONS(813), + [anon_sym_sql] = ACTIONS(815), + [sym_int_literal] = ACTIONS(799), + [sym_float_literal] = ACTIONS(817), + [sym_rune_literal] = ACTIONS(817), + [sym_pseudo_compile_time_identifier] = ACTIONS(819), + [anon_sym_shared] = ACTIONS(83), + [anon_sym_map_LBRACK] = ACTIONS(85), + [anon_sym_chan] = ACTIONS(87), + [anon_sym_thread] = ACTIONS(89), + [anon_sym_atomic] = ACTIONS(91), + [sym___double_quote] = ACTIONS(821), + [sym___single_quote] = ACTIONS(823), + [sym___c_double_quote] = ACTIONS(825), + [sym___c_single_quote] = ACTIONS(827), + [sym___r_double_quote] = ACTIONS(829), + [sym___r_single_quote] = ACTIONS(831), + }, + [96] = { + [sym_line_comment] = STATE(96), + [sym_block_comment] = STATE(96), + [sym__expression] = STATE(2586), + [sym__expression_without_blocks] = STATE(1903), + [sym__expression_with_blocks] = STATE(2882), + [sym_inc_expression] = STATE(2035), + [sym_dec_expression] = STATE(2035), + [sym_or_block_expression] = STATE(2035), + [sym_option_propagation_expression] = STATE(2035), + [sym_result_propagation_expression] = STATE(2035), + [sym_anon_struct_value_expression] = STATE(2877), + [sym_go_expression] = STATE(2035), + [sym_spawn_expression] = STATE(2035), + [sym_parenthesized_expression] = STATE(2035), + [sym_call_expression] = STATE(2035), + [sym_type_initializer] = STATE(2877), + [sym_function_literal] = STATE(2035), + [sym_reference_expression] = STATE(1944), + [sym_type_reference_expression] = STATE(3460), + [sym_unary_expression] = STATE(2035), + [sym_receive_expression] = STATE(2035), + [sym_binary_expression] = STATE(2035), + [sym_as_type_cast_expression] = STATE(2035), + [sym__max_group] = STATE(2035), + [sym_literal] = STATE(2030), + [sym_map_init_expression] = STATE(2877), + [sym_map_keyed_element] = STATE(2004), + [sym_array_creation] = STATE(2035), + [sym_fixed_array_creation] = STATE(2035), + [sym_selector_expression] = STATE(2035), + [sym_index_expression] = STATE(2035), + [sym_slice_expression] = STATE(2035), + [sym_if_expression] = STATE(2877), + [sym_compile_time_if_expression] = STATE(2877), + [sym_is_expression] = STATE(2035), + [sym_in_expression] = STATE(2035), + [sym_enum_fetch] = STATE(2035), + [sym_match_expression] = STATE(2877), + [sym_select_expression] = STATE(2877), + [sym_select_arm] = STATE(2140), + [sym_select_arm_statement] = STATE(4150), + [sym_select_var_declaration] = STATE(4507), + [sym_select_else_arn_clause] = STATE(4343), + [sym_lock_expression] = STATE(2877), + [sym_unsafe_expression] = STATE(2877), + [sym_sql_expression] = STATE(2877), + [sym_c_string_literal] = STATE(2029), + [sym_raw_string_literal] = STATE(2029), + [sym_interpreted_string_literal] = STATE(2029), + [sym_mutability_modifiers] = STATE(641), + [sym_mutable_identifier] = STATE(3847), + [sym_identifier_list] = STATE(4511), + [sym_expression_without_blocks_list] = STATE(3279), + [sym_plain_type] = STATE(4297), + [sym__plain_type_without_special] = STATE(2360), + [sym_anon_struct_type] = STATE(2362), + [sym_multi_return_type] = STATE(2360), + [sym_result_type] = STATE(2360), + [sym_option_type] = STATE(2360), + [sym_qualified_type] = STATE(3460), + [sym_fixed_array_type] = STATE(2362), + [sym_array_type] = STATE(2362), + [sym_pointer_type] = STATE(2362), + [sym_wrong_pointer_type] = STATE(2362), + [sym_map_type] = STATE(2362), + [sym_channel_type] = STATE(2362), + [sym_shared_type] = STATE(2362), + [sym_thread_type] = STATE(2362), + [sym_atomic_type] = STATE(2362), + [sym_generic_type] = STATE(2362), + [sym_function_type] = STATE(2362), + [sym_send_statement] = STATE(4507), + [aux_sym_map_init_expression_repeat1] = STATE(242), + [aux_sym_select_expression_repeat1] = STATE(127), + [sym_identifier] = ACTIONS(767), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(769), + [anon_sym_LBRACE] = ACTIONS(771), + [anon_sym_RBRACE] = ACTIONS(851), + [anon_sym_LPAREN] = ACTIONS(775), + [anon_sym_fn] = ACTIONS(777), + [anon_sym_PLUS] = ACTIONS(779), + [anon_sym_DASH] = ACTIONS(779), + [anon_sym_STAR] = ACTIONS(781), + [anon_sym_struct] = ACTIONS(783), + [anon_sym_mut] = ACTIONS(41), + [anon_sym_QMARK] = ACTIONS(47), + [anon_sym_BANG] = ACTIONS(785), + [anon_sym_go] = ACTIONS(787), + [anon_sym_spawn] = ACTIONS(789), + [anon_sym_json_DOTdecode] = ACTIONS(791), + [anon_sym_LBRACK2] = ACTIONS(793), + [anon_sym_TILDE] = ACTIONS(779), + [anon_sym_CARET] = ACTIONS(779), + [anon_sym_AMP] = ACTIONS(795), + [anon_sym_LT_DASH] = ACTIONS(797), + [sym_none] = ACTIONS(799), + [sym_true] = ACTIONS(799), + [sym_false] = ACTIONS(799), + [sym_nil] = ACTIONS(799), + [anon_sym_if] = ACTIONS(801), + [anon_sym_else] = ACTIONS(803), + [anon_sym_DOLLARif] = ACTIONS(805), + [anon_sym_match] = ACTIONS(807), + [anon_sym_select] = ACTIONS(809), + [anon_sym_lock] = ACTIONS(811), + [anon_sym_rlock] = ACTIONS(811), + [anon_sym_unsafe] = ACTIONS(813), + [anon_sym_sql] = ACTIONS(815), + [sym_int_literal] = ACTIONS(799), + [sym_float_literal] = ACTIONS(817), + [sym_rune_literal] = ACTIONS(817), + [sym_pseudo_compile_time_identifier] = ACTIONS(819), + [anon_sym_shared] = ACTIONS(83), + [anon_sym_map_LBRACK] = ACTIONS(85), + [anon_sym_chan] = ACTIONS(87), + [anon_sym_thread] = ACTIONS(89), + [anon_sym_atomic] = ACTIONS(91), + [sym___double_quote] = ACTIONS(821), + [sym___single_quote] = ACTIONS(823), + [sym___c_double_quote] = ACTIONS(825), + [sym___c_single_quote] = ACTIONS(827), + [sym___r_double_quote] = ACTIONS(829), + [sym___r_single_quote] = ACTIONS(831), + }, + [97] = { + [sym_line_comment] = STATE(97), + [sym_block_comment] = STATE(97), + [sym__expression] = STATE(2586), + [sym__expression_without_blocks] = STATE(1903), + [sym__expression_with_blocks] = STATE(2882), + [sym_inc_expression] = STATE(2035), + [sym_dec_expression] = STATE(2035), + [sym_or_block_expression] = STATE(2035), + [sym_option_propagation_expression] = STATE(2035), + [sym_result_propagation_expression] = STATE(2035), + [sym_anon_struct_value_expression] = STATE(2877), + [sym_go_expression] = STATE(2035), + [sym_spawn_expression] = STATE(2035), + [sym_parenthesized_expression] = STATE(2035), + [sym_call_expression] = STATE(2035), + [sym_type_initializer] = STATE(2877), + [sym_function_literal] = STATE(2035), + [sym_reference_expression] = STATE(1944), + [sym_type_reference_expression] = STATE(3460), + [sym_unary_expression] = STATE(2035), + [sym_receive_expression] = STATE(2035), + [sym_binary_expression] = STATE(2035), + [sym_as_type_cast_expression] = STATE(2035), + [sym__max_group] = STATE(2035), + [sym_literal] = STATE(2030), + [sym_map_init_expression] = STATE(2877), + [sym_map_keyed_element] = STATE(2004), + [sym_array_creation] = STATE(2035), + [sym_fixed_array_creation] = STATE(2035), + [sym_selector_expression] = STATE(2035), + [sym_index_expression] = STATE(2035), + [sym_slice_expression] = STATE(2035), + [sym_if_expression] = STATE(2877), + [sym_compile_time_if_expression] = STATE(2877), + [sym_is_expression] = STATE(2035), + [sym_in_expression] = STATE(2035), + [sym_enum_fetch] = STATE(2035), + [sym_match_expression] = STATE(2877), + [sym_select_expression] = STATE(2877), + [sym_select_arm] = STATE(2140), + [sym_select_arm_statement] = STATE(4150), + [sym_select_var_declaration] = STATE(4507), + [sym_select_else_arn_clause] = STATE(4455), + [sym_lock_expression] = STATE(2877), + [sym_unsafe_expression] = STATE(2877), + [sym_sql_expression] = STATE(2877), + [sym_c_string_literal] = STATE(2029), + [sym_raw_string_literal] = STATE(2029), + [sym_interpreted_string_literal] = STATE(2029), + [sym_mutability_modifiers] = STATE(641), + [sym_mutable_identifier] = STATE(3847), + [sym_identifier_list] = STATE(4511), + [sym_expression_without_blocks_list] = STATE(3279), + [sym_plain_type] = STATE(4297), + [sym__plain_type_without_special] = STATE(2360), + [sym_anon_struct_type] = STATE(2362), + [sym_multi_return_type] = STATE(2360), + [sym_result_type] = STATE(2360), + [sym_option_type] = STATE(2360), + [sym_qualified_type] = STATE(3460), + [sym_fixed_array_type] = STATE(2362), + [sym_array_type] = STATE(2362), + [sym_pointer_type] = STATE(2362), + [sym_wrong_pointer_type] = STATE(2362), + [sym_map_type] = STATE(2362), + [sym_channel_type] = STATE(2362), + [sym_shared_type] = STATE(2362), + [sym_thread_type] = STATE(2362), + [sym_atomic_type] = STATE(2362), + [sym_generic_type] = STATE(2362), + [sym_function_type] = STATE(2362), + [sym_send_statement] = STATE(4507), + [aux_sym_map_init_expression_repeat1] = STATE(242), + [aux_sym_select_expression_repeat1] = STATE(137), + [sym_identifier] = ACTIONS(767), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(769), + [anon_sym_LBRACE] = ACTIONS(771), + [anon_sym_RBRACE] = ACTIONS(853), + [anon_sym_LPAREN] = ACTIONS(775), + [anon_sym_fn] = ACTIONS(777), + [anon_sym_PLUS] = ACTIONS(779), + [anon_sym_DASH] = ACTIONS(779), + [anon_sym_STAR] = ACTIONS(781), + [anon_sym_struct] = ACTIONS(783), + [anon_sym_mut] = ACTIONS(41), + [anon_sym_QMARK] = ACTIONS(47), + [anon_sym_BANG] = ACTIONS(785), + [anon_sym_go] = ACTIONS(787), + [anon_sym_spawn] = ACTIONS(789), + [anon_sym_json_DOTdecode] = ACTIONS(791), + [anon_sym_LBRACK2] = ACTIONS(793), + [anon_sym_TILDE] = ACTIONS(779), + [anon_sym_CARET] = ACTIONS(779), + [anon_sym_AMP] = ACTIONS(795), + [anon_sym_LT_DASH] = ACTIONS(797), + [sym_none] = ACTIONS(799), + [sym_true] = ACTIONS(799), + [sym_false] = ACTIONS(799), + [sym_nil] = ACTIONS(799), + [anon_sym_if] = ACTIONS(801), + [anon_sym_else] = ACTIONS(803), + [anon_sym_DOLLARif] = ACTIONS(805), + [anon_sym_match] = ACTIONS(807), + [anon_sym_select] = ACTIONS(809), + [anon_sym_lock] = ACTIONS(811), + [anon_sym_rlock] = ACTIONS(811), + [anon_sym_unsafe] = ACTIONS(813), + [anon_sym_sql] = ACTIONS(815), + [sym_int_literal] = ACTIONS(799), + [sym_float_literal] = ACTIONS(817), + [sym_rune_literal] = ACTIONS(817), + [sym_pseudo_compile_time_identifier] = ACTIONS(819), + [anon_sym_shared] = ACTIONS(83), + [anon_sym_map_LBRACK] = ACTIONS(85), + [anon_sym_chan] = ACTIONS(87), + [anon_sym_thread] = ACTIONS(89), + [anon_sym_atomic] = ACTIONS(91), + [sym___double_quote] = ACTIONS(821), + [sym___single_quote] = ACTIONS(823), + [sym___c_double_quote] = ACTIONS(825), + [sym___c_single_quote] = ACTIONS(827), + [sym___r_double_quote] = ACTIONS(829), + [sym___r_single_quote] = ACTIONS(831), + }, + [98] = { + [sym_line_comment] = STATE(98), + [sym_block_comment] = STATE(98), + [sym__expression] = STATE(1636), + [sym__expression_without_blocks] = STATE(1953), + [sym__expression_with_blocks] = STATE(1953), + [sym_strictly_expression_list] = STATE(4047), + [sym_inc_expression] = STATE(1955), + [sym_dec_expression] = STATE(1955), + [sym_or_block_expression] = STATE(1955), + [sym_option_propagation_expression] = STATE(1955), + [sym_result_propagation_expression] = STATE(1955), + [sym_anon_struct_value_expression] = STATE(1958), + [sym_go_expression] = STATE(1955), + [sym_spawn_expression] = STATE(1955), + [sym_parenthesized_expression] = STATE(1955), + [sym_call_expression] = STATE(1955), + [sym_type_initializer] = STATE(1958), + [sym_function_literal] = STATE(1955), + [sym_reference_expression] = STATE(1956), + [sym_type_reference_expression] = STATE(3460), + [sym_unary_expression] = STATE(1955), + [sym_receive_expression] = STATE(1955), + [sym_binary_expression] = STATE(1955), + [sym_as_type_cast_expression] = STATE(1955), + [sym__max_group] = STATE(1955), + [sym_literal] = STATE(1943), + [sym_map_init_expression] = STATE(1958), + [sym_array_creation] = STATE(1955), + [sym_fixed_array_creation] = STATE(1955), + [sym_selector_expression] = STATE(1955), + [sym_index_expression] = STATE(1955), + [sym_slice_expression] = STATE(1955), + [sym_if_expression] = STATE(1958), + [sym_compile_time_if_expression] = STATE(1958), + [sym_is_expression] = STATE(2099), + [sym_in_expression] = STATE(1955), + [sym_enum_fetch] = STATE(1955), + [sym_match_expression] = STATE(1958), + [sym_select_expression] = STATE(1958), + [sym_lock_expression] = STATE(1958), + [sym_unsafe_expression] = STATE(1958), + [sym_sql_expression] = STATE(1958), + [sym_c_string_literal] = STATE(1942), + [sym_raw_string_literal] = STATE(1942), + [sym_interpreted_string_literal] = STATE(1942), + [sym_mutability_modifiers] = STATE(652), + [sym_mutable_expression] = STATE(3275), + [sym_expression_list] = STATE(3309), + [sym_plain_type] = STATE(4266), + [sym__plain_type_without_special] = STATE(2360), + [sym_anon_struct_type] = STATE(2362), + [sym_multi_return_type] = STATE(2360), + [sym_result_type] = STATE(2360), + [sym_option_type] = STATE(2360), + [sym_qualified_type] = STATE(3460), + [sym_fixed_array_type] = STATE(2362), + [sym_array_type] = STATE(2362), + [sym_pointer_type] = STATE(2362), + [sym_wrong_pointer_type] = STATE(2362), + [sym_map_type] = STATE(2362), + [sym_channel_type] = STATE(2362), + [sym_shared_type] = STATE(2362), + [sym_thread_type] = STATE(2362), + [sym_atomic_type] = STATE(2362), + [sym_generic_type] = STATE(2362), + [sym_function_type] = STATE(2362), + [sym_simple_statement] = STATE(4426), + [sym_var_declaration] = STATE(4047), + [sym_var_definition_list] = STATE(4443), + [sym_var_definition] = STATE(3997), + [sym_assignment_statement] = STATE(4047), + [sym_block] = STATE(3702), + [sym_is_clause] = STATE(4171), + [sym_range_clause] = STATE(4171), + [sym_for_clause] = STATE(4171), [sym_identifier] = ACTIONS(701), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(703), - [anon_sym_LBRACE] = ACTIONS(705), - [anon_sym_RBRACE] = ACTIONS(767), + [anon_sym_SEMI] = ACTIONS(703), + [anon_sym_DOT] = ACTIONS(705), + [anon_sym_LBRACE] = ACTIONS(855), [anon_sym_LPAREN] = ACTIONS(709), [anon_sym_fn] = ACTIONS(711), [anon_sym_PLUS] = ACTIONS(713), [anon_sym_DASH] = ACTIONS(713), [anon_sym_STAR] = ACTIONS(715), [anon_sym_struct] = ACTIONS(717), - [anon_sym_mut] = ACTIONS(41), + [anon_sym_mut] = ACTIONS(719), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(719), - [anon_sym_go] = ACTIONS(721), - [anon_sym_spawn] = ACTIONS(723), - [anon_sym_json_DOTdecode] = ACTIONS(725), - [anon_sym_LBRACK2] = ACTIONS(727), + [anon_sym_BANG] = ACTIONS(721), + [anon_sym_go] = ACTIONS(723), + [anon_sym_spawn] = ACTIONS(725), + [anon_sym_json_DOTdecode] = ACTIONS(727), + [anon_sym_LBRACK2] = ACTIONS(729), [anon_sym_TILDE] = ACTIONS(713), [anon_sym_CARET] = ACTIONS(713), - [anon_sym_AMP] = ACTIONS(729), - [anon_sym_LT_DASH] = ACTIONS(731), - [sym_none] = ACTIONS(733), - [sym_true] = ACTIONS(733), - [sym_false] = ACTIONS(733), - [sym_nil] = ACTIONS(733), - [anon_sym_if] = ACTIONS(735), - [anon_sym_else] = ACTIONS(737), + [anon_sym_AMP] = ACTIONS(731), + [anon_sym_LT_DASH] = ACTIONS(733), + [sym_none] = ACTIONS(735), + [sym_true] = ACTIONS(735), + [sym_false] = ACTIONS(735), + [sym_nil] = ACTIONS(735), + [anon_sym_if] = ACTIONS(737), [anon_sym_DOLLARif] = ACTIONS(739), [anon_sym_match] = ACTIONS(741), [anon_sym_select] = ACTIONS(743), @@ -31748,7 +33288,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_rlock] = ACTIONS(745), [anon_sym_unsafe] = ACTIONS(747), [anon_sym_sql] = ACTIONS(749), - [sym_int_literal] = ACTIONS(733), + [sym_int_literal] = ACTIONS(735), [sym_float_literal] = ACTIONS(751), [sym_rune_literal] = ACTIONS(751), [sym_pseudo_compile_time_identifier] = ACTIONS(753), @@ -31764,7871 +33304,6349 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym___r_double_quote] = ACTIONS(763), [sym___r_single_quote] = ACTIONS(765), }, - [87] = { - [sym_line_comment] = STATE(87), - [sym_block_comment] = STATE(87), - [sym__expression] = STATE(2588), - [sym__expression_without_blocks] = STATE(1902), - [sym__expression_with_blocks] = STATE(2870), - [sym_inc_expression] = STATE(2032), - [sym_dec_expression] = STATE(2032), - [sym_or_block_expression] = STATE(2032), - [sym_option_propagation_expression] = STATE(2032), - [sym_result_propagation_expression] = STATE(2032), - [sym_anon_struct_value_expression] = STATE(2868), - [sym_go_expression] = STATE(2032), - [sym_spawn_expression] = STATE(2032), - [sym_parenthesized_expression] = STATE(2032), - [sym_call_expression] = STATE(2032), - [sym_type_initializer] = STATE(2868), - [sym_function_literal] = STATE(2032), - [sym_reference_expression] = STATE(1914), - [sym_type_reference_expression] = STATE(3541), - [sym_unary_expression] = STATE(2032), - [sym_receive_expression] = STATE(2032), - [sym_binary_expression] = STATE(2032), - [sym_as_type_cast_expression] = STATE(2032), - [sym__max_group] = STATE(2032), - [sym_literal] = STATE(2027), - [sym_map_init_expression] = STATE(2868), - [sym_map_keyed_element] = STATE(2001), - [sym_array_creation] = STATE(2032), - [sym_fixed_array_creation] = STATE(2032), - [sym_selector_expression] = STATE(2032), - [sym_index_expression] = STATE(2032), - [sym_slice_expression] = STATE(2032), - [sym_if_expression] = STATE(2868), - [sym_compile_time_if_expression] = STATE(2868), - [sym_is_expression] = STATE(2032), - [sym_in_expression] = STATE(2032), - [sym_enum_fetch] = STATE(2032), - [sym_match_expression] = STATE(2868), - [sym_select_expression] = STATE(2868), - [sym_select_arm] = STATE(2139), - [sym_select_arm_statement] = STATE(4161), - [sym_select_var_declaration] = STATE(4478), - [sym_select_else_arn_clause] = STATE(4485), - [sym_lock_expression] = STATE(2868), - [sym_unsafe_expression] = STATE(2868), - [sym_sql_expression] = STATE(2868), - [sym_c_string_literal] = STATE(2026), - [sym_raw_string_literal] = STATE(2026), - [sym_interpreted_string_literal] = STATE(2026), - [sym_mutability_modifiers] = STATE(635), - [sym_mutable_identifier] = STATE(3928), - [sym_identifier_list] = STATE(4484), + [99] = { + [sym_line_comment] = STATE(99), + [sym_block_comment] = STATE(99), + [sym__expression] = STATE(2586), + [sym__expression_without_blocks] = STATE(1903), + [sym__expression_with_blocks] = STATE(2882), + [sym_inc_expression] = STATE(2035), + [sym_dec_expression] = STATE(2035), + [sym_or_block_expression] = STATE(2035), + [sym_option_propagation_expression] = STATE(2035), + [sym_result_propagation_expression] = STATE(2035), + [sym_anon_struct_value_expression] = STATE(2877), + [sym_go_expression] = STATE(2035), + [sym_spawn_expression] = STATE(2035), + [sym_parenthesized_expression] = STATE(2035), + [sym_call_expression] = STATE(2035), + [sym_type_initializer] = STATE(2877), + [sym_function_literal] = STATE(2035), + [sym_reference_expression] = STATE(1944), + [sym_type_reference_expression] = STATE(3460), + [sym_unary_expression] = STATE(2035), + [sym_receive_expression] = STATE(2035), + [sym_binary_expression] = STATE(2035), + [sym_as_type_cast_expression] = STATE(2035), + [sym__max_group] = STATE(2035), + [sym_literal] = STATE(2030), + [sym_map_init_expression] = STATE(2877), + [sym_map_keyed_element] = STATE(2004), + [sym_array_creation] = STATE(2035), + [sym_fixed_array_creation] = STATE(2035), + [sym_selector_expression] = STATE(2035), + [sym_index_expression] = STATE(2035), + [sym_slice_expression] = STATE(2035), + [sym_if_expression] = STATE(2877), + [sym_compile_time_if_expression] = STATE(2877), + [sym_is_expression] = STATE(2035), + [sym_in_expression] = STATE(2035), + [sym_enum_fetch] = STATE(2035), + [sym_match_expression] = STATE(2877), + [sym_select_expression] = STATE(2877), + [sym_select_arm] = STATE(2140), + [sym_select_arm_statement] = STATE(4150), + [sym_select_var_declaration] = STATE(4507), + [sym_select_else_arn_clause] = STATE(4455), + [sym_lock_expression] = STATE(2877), + [sym_unsafe_expression] = STATE(2877), + [sym_sql_expression] = STATE(2877), + [sym_c_string_literal] = STATE(2029), + [sym_raw_string_literal] = STATE(2029), + [sym_interpreted_string_literal] = STATE(2029), + [sym_mutability_modifiers] = STATE(641), + [sym_mutable_identifier] = STATE(3847), + [sym_identifier_list] = STATE(4511), [sym_expression_without_blocks_list] = STATE(3279), - [sym_plain_type] = STATE(4094), - [sym__plain_type_without_special] = STATE(2302), - [sym_anon_struct_type] = STATE(2303), - [sym_multi_return_type] = STATE(2302), - [sym_result_type] = STATE(2302), - [sym_option_type] = STATE(2302), - [sym_qualified_type] = STATE(3541), - [sym_fixed_array_type] = STATE(2303), - [sym_array_type] = STATE(2303), - [sym_pointer_type] = STATE(2303), - [sym_wrong_pointer_type] = STATE(2303), - [sym_map_type] = STATE(2303), - [sym_channel_type] = STATE(2303), - [sym_shared_type] = STATE(2303), - [sym_thread_type] = STATE(2303), - [sym_atomic_type] = STATE(2303), - [sym_generic_type] = STATE(2303), - [sym_function_type] = STATE(2303), - [sym_send_statement] = STATE(4478), - [aux_sym_map_init_expression_repeat1] = STATE(274), - [aux_sym_select_expression_repeat1] = STATE(127), - [sym_identifier] = ACTIONS(701), + [sym_plain_type] = STATE(4297), + [sym__plain_type_without_special] = STATE(2360), + [sym_anon_struct_type] = STATE(2362), + [sym_multi_return_type] = STATE(2360), + [sym_result_type] = STATE(2360), + [sym_option_type] = STATE(2360), + [sym_qualified_type] = STATE(3460), + [sym_fixed_array_type] = STATE(2362), + [sym_array_type] = STATE(2362), + [sym_pointer_type] = STATE(2362), + [sym_wrong_pointer_type] = STATE(2362), + [sym_map_type] = STATE(2362), + [sym_channel_type] = STATE(2362), + [sym_shared_type] = STATE(2362), + [sym_thread_type] = STATE(2362), + [sym_atomic_type] = STATE(2362), + [sym_generic_type] = STATE(2362), + [sym_function_type] = STATE(2362), + [sym_send_statement] = STATE(4507), + [aux_sym_map_init_expression_repeat1] = STATE(242), + [aux_sym_select_expression_repeat1] = STATE(137), + [sym_identifier] = ACTIONS(767), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(703), - [anon_sym_LBRACE] = ACTIONS(705), - [anon_sym_RBRACE] = ACTIONS(769), - [anon_sym_LPAREN] = ACTIONS(709), - [anon_sym_fn] = ACTIONS(711), - [anon_sym_PLUS] = ACTIONS(713), - [anon_sym_DASH] = ACTIONS(713), - [anon_sym_STAR] = ACTIONS(715), - [anon_sym_struct] = ACTIONS(717), + [anon_sym_DOT] = ACTIONS(769), + [anon_sym_LBRACE] = ACTIONS(771), + [anon_sym_RBRACE] = ACTIONS(857), + [anon_sym_LPAREN] = ACTIONS(775), + [anon_sym_fn] = ACTIONS(777), + [anon_sym_PLUS] = ACTIONS(779), + [anon_sym_DASH] = ACTIONS(779), + [anon_sym_STAR] = ACTIONS(781), + [anon_sym_struct] = ACTIONS(783), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(719), - [anon_sym_go] = ACTIONS(721), - [anon_sym_spawn] = ACTIONS(723), - [anon_sym_json_DOTdecode] = ACTIONS(725), - [anon_sym_LBRACK2] = ACTIONS(727), - [anon_sym_TILDE] = ACTIONS(713), - [anon_sym_CARET] = ACTIONS(713), - [anon_sym_AMP] = ACTIONS(729), - [anon_sym_LT_DASH] = ACTIONS(731), - [sym_none] = ACTIONS(733), - [sym_true] = ACTIONS(733), - [sym_false] = ACTIONS(733), - [sym_nil] = ACTIONS(733), - [anon_sym_if] = ACTIONS(735), - [anon_sym_else] = ACTIONS(737), - [anon_sym_DOLLARif] = ACTIONS(739), - [anon_sym_match] = ACTIONS(741), - [anon_sym_select] = ACTIONS(743), - [anon_sym_lock] = ACTIONS(745), - [anon_sym_rlock] = ACTIONS(745), - [anon_sym_unsafe] = ACTIONS(747), - [anon_sym_sql] = ACTIONS(749), - [sym_int_literal] = ACTIONS(733), - [sym_float_literal] = ACTIONS(751), - [sym_rune_literal] = ACTIONS(751), - [sym_pseudo_compile_time_identifier] = ACTIONS(753), + [anon_sym_BANG] = ACTIONS(785), + [anon_sym_go] = ACTIONS(787), + [anon_sym_spawn] = ACTIONS(789), + [anon_sym_json_DOTdecode] = ACTIONS(791), + [anon_sym_LBRACK2] = ACTIONS(793), + [anon_sym_TILDE] = ACTIONS(779), + [anon_sym_CARET] = ACTIONS(779), + [anon_sym_AMP] = ACTIONS(795), + [anon_sym_LT_DASH] = ACTIONS(797), + [sym_none] = ACTIONS(799), + [sym_true] = ACTIONS(799), + [sym_false] = ACTIONS(799), + [sym_nil] = ACTIONS(799), + [anon_sym_if] = ACTIONS(801), + [anon_sym_else] = ACTIONS(803), + [anon_sym_DOLLARif] = ACTIONS(805), + [anon_sym_match] = ACTIONS(807), + [anon_sym_select] = ACTIONS(809), + [anon_sym_lock] = ACTIONS(811), + [anon_sym_rlock] = ACTIONS(811), + [anon_sym_unsafe] = ACTIONS(813), + [anon_sym_sql] = ACTIONS(815), + [sym_int_literal] = ACTIONS(799), + [sym_float_literal] = ACTIONS(817), + [sym_rune_literal] = ACTIONS(817), + [sym_pseudo_compile_time_identifier] = ACTIONS(819), [anon_sym_shared] = ACTIONS(83), [anon_sym_map_LBRACK] = ACTIONS(85), [anon_sym_chan] = ACTIONS(87), [anon_sym_thread] = ACTIONS(89), [anon_sym_atomic] = ACTIONS(91), - [sym___double_quote] = ACTIONS(755), - [sym___single_quote] = ACTIONS(757), - [sym___c_double_quote] = ACTIONS(759), - [sym___c_single_quote] = ACTIONS(761), - [sym___r_double_quote] = ACTIONS(763), - [sym___r_single_quote] = ACTIONS(765), + [sym___double_quote] = ACTIONS(821), + [sym___single_quote] = ACTIONS(823), + [sym___c_double_quote] = ACTIONS(825), + [sym___c_single_quote] = ACTIONS(827), + [sym___r_double_quote] = ACTIONS(829), + [sym___r_single_quote] = ACTIONS(831), }, - [88] = { - [sym_line_comment] = STATE(88), - [sym_block_comment] = STATE(88), - [sym__expression] = STATE(2588), - [sym__expression_without_blocks] = STATE(1902), - [sym__expression_with_blocks] = STATE(2870), - [sym_inc_expression] = STATE(2032), - [sym_dec_expression] = STATE(2032), - [sym_or_block_expression] = STATE(2032), - [sym_option_propagation_expression] = STATE(2032), - [sym_result_propagation_expression] = STATE(2032), - [sym_anon_struct_value_expression] = STATE(2868), - [sym_go_expression] = STATE(2032), - [sym_spawn_expression] = STATE(2032), - [sym_parenthesized_expression] = STATE(2032), - [sym_call_expression] = STATE(2032), - [sym_type_initializer] = STATE(2868), - [sym_function_literal] = STATE(2032), - [sym_reference_expression] = STATE(1914), - [sym_type_reference_expression] = STATE(3541), - [sym_unary_expression] = STATE(2032), - [sym_receive_expression] = STATE(2032), - [sym_binary_expression] = STATE(2032), - [sym_as_type_cast_expression] = STATE(2032), - [sym__max_group] = STATE(2032), - [sym_literal] = STATE(2027), - [sym_map_init_expression] = STATE(2868), - [sym_map_keyed_element] = STATE(2001), - [sym_array_creation] = STATE(2032), - [sym_fixed_array_creation] = STATE(2032), - [sym_selector_expression] = STATE(2032), - [sym_index_expression] = STATE(2032), - [sym_slice_expression] = STATE(2032), - [sym_if_expression] = STATE(2868), - [sym_compile_time_if_expression] = STATE(2868), - [sym_is_expression] = STATE(2032), - [sym_in_expression] = STATE(2032), - [sym_enum_fetch] = STATE(2032), - [sym_match_expression] = STATE(2868), - [sym_select_expression] = STATE(2868), - [sym_select_arm] = STATE(2139), - [sym_select_arm_statement] = STATE(4161), - [sym_select_var_declaration] = STATE(4478), - [sym_select_else_arn_clause] = STATE(4590), - [sym_lock_expression] = STATE(2868), - [sym_unsafe_expression] = STATE(2868), - [sym_sql_expression] = STATE(2868), - [sym_c_string_literal] = STATE(2026), - [sym_raw_string_literal] = STATE(2026), - [sym_interpreted_string_literal] = STATE(2026), - [sym_mutability_modifiers] = STATE(635), - [sym_mutable_identifier] = STATE(3928), - [sym_identifier_list] = STATE(4484), + [100] = { + [sym_line_comment] = STATE(100), + [sym_block_comment] = STATE(100), + [sym__expression] = STATE(2586), + [sym__expression_without_blocks] = STATE(1903), + [sym__expression_with_blocks] = STATE(2882), + [sym_inc_expression] = STATE(2035), + [sym_dec_expression] = STATE(2035), + [sym_or_block_expression] = STATE(2035), + [sym_option_propagation_expression] = STATE(2035), + [sym_result_propagation_expression] = STATE(2035), + [sym_anon_struct_value_expression] = STATE(2877), + [sym_go_expression] = STATE(2035), + [sym_spawn_expression] = STATE(2035), + [sym_parenthesized_expression] = STATE(2035), + [sym_call_expression] = STATE(2035), + [sym_type_initializer] = STATE(2877), + [sym_function_literal] = STATE(2035), + [sym_reference_expression] = STATE(1944), + [sym_type_reference_expression] = STATE(3460), + [sym_unary_expression] = STATE(2035), + [sym_receive_expression] = STATE(2035), + [sym_binary_expression] = STATE(2035), + [sym_as_type_cast_expression] = STATE(2035), + [sym__max_group] = STATE(2035), + [sym_literal] = STATE(2030), + [sym_map_init_expression] = STATE(2877), + [sym_map_keyed_element] = STATE(2004), + [sym_array_creation] = STATE(2035), + [sym_fixed_array_creation] = STATE(2035), + [sym_selector_expression] = STATE(2035), + [sym_index_expression] = STATE(2035), + [sym_slice_expression] = STATE(2035), + [sym_if_expression] = STATE(2877), + [sym_compile_time_if_expression] = STATE(2877), + [sym_is_expression] = STATE(2035), + [sym_in_expression] = STATE(2035), + [sym_enum_fetch] = STATE(2035), + [sym_match_expression] = STATE(2877), + [sym_select_expression] = STATE(2877), + [sym_select_arm] = STATE(2140), + [sym_select_arm_statement] = STATE(4150), + [sym_select_var_declaration] = STATE(4507), + [sym_select_else_arn_clause] = STATE(4407), + [sym_lock_expression] = STATE(2877), + [sym_unsafe_expression] = STATE(2877), + [sym_sql_expression] = STATE(2877), + [sym_c_string_literal] = STATE(2029), + [sym_raw_string_literal] = STATE(2029), + [sym_interpreted_string_literal] = STATE(2029), + [sym_mutability_modifiers] = STATE(641), + [sym_mutable_identifier] = STATE(3847), + [sym_identifier_list] = STATE(4511), [sym_expression_without_blocks_list] = STATE(3279), - [sym_plain_type] = STATE(4094), - [sym__plain_type_without_special] = STATE(2302), - [sym_anon_struct_type] = STATE(2303), - [sym_multi_return_type] = STATE(2302), - [sym_result_type] = STATE(2302), - [sym_option_type] = STATE(2302), - [sym_qualified_type] = STATE(3541), - [sym_fixed_array_type] = STATE(2303), - [sym_array_type] = STATE(2303), - [sym_pointer_type] = STATE(2303), - [sym_wrong_pointer_type] = STATE(2303), - [sym_map_type] = STATE(2303), - [sym_channel_type] = STATE(2303), - [sym_shared_type] = STATE(2303), - [sym_thread_type] = STATE(2303), - [sym_atomic_type] = STATE(2303), - [sym_generic_type] = STATE(2303), - [sym_function_type] = STATE(2303), - [sym_send_statement] = STATE(4478), - [aux_sym_map_init_expression_repeat1] = STATE(274), - [aux_sym_select_expression_repeat1] = STATE(133), - [sym_identifier] = ACTIONS(701), + [sym_plain_type] = STATE(4297), + [sym__plain_type_without_special] = STATE(2360), + [sym_anon_struct_type] = STATE(2362), + [sym_multi_return_type] = STATE(2360), + [sym_result_type] = STATE(2360), + [sym_option_type] = STATE(2360), + [sym_qualified_type] = STATE(3460), + [sym_fixed_array_type] = STATE(2362), + [sym_array_type] = STATE(2362), + [sym_pointer_type] = STATE(2362), + [sym_wrong_pointer_type] = STATE(2362), + [sym_map_type] = STATE(2362), + [sym_channel_type] = STATE(2362), + [sym_shared_type] = STATE(2362), + [sym_thread_type] = STATE(2362), + [sym_atomic_type] = STATE(2362), + [sym_generic_type] = STATE(2362), + [sym_function_type] = STATE(2362), + [sym_send_statement] = STATE(4507), + [aux_sym_map_init_expression_repeat1] = STATE(242), + [aux_sym_select_expression_repeat1] = STATE(131), + [sym_identifier] = ACTIONS(767), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(703), - [anon_sym_LBRACE] = ACTIONS(705), - [anon_sym_RBRACE] = ACTIONS(767), - [anon_sym_LPAREN] = ACTIONS(709), - [anon_sym_fn] = ACTIONS(711), - [anon_sym_PLUS] = ACTIONS(713), - [anon_sym_DASH] = ACTIONS(713), - [anon_sym_STAR] = ACTIONS(715), - [anon_sym_struct] = ACTIONS(717), + [anon_sym_DOT] = ACTIONS(769), + [anon_sym_LBRACE] = ACTIONS(771), + [anon_sym_RBRACE] = ACTIONS(859), + [anon_sym_LPAREN] = ACTIONS(775), + [anon_sym_fn] = ACTIONS(777), + [anon_sym_PLUS] = ACTIONS(779), + [anon_sym_DASH] = ACTIONS(779), + [anon_sym_STAR] = ACTIONS(781), + [anon_sym_struct] = ACTIONS(783), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(719), - [anon_sym_go] = ACTIONS(721), - [anon_sym_spawn] = ACTIONS(723), - [anon_sym_json_DOTdecode] = ACTIONS(725), - [anon_sym_LBRACK2] = ACTIONS(727), - [anon_sym_TILDE] = ACTIONS(713), - [anon_sym_CARET] = ACTIONS(713), - [anon_sym_AMP] = ACTIONS(729), - [anon_sym_LT_DASH] = ACTIONS(731), - [sym_none] = ACTIONS(733), - [sym_true] = ACTIONS(733), - [sym_false] = ACTIONS(733), - [sym_nil] = ACTIONS(733), - [anon_sym_if] = ACTIONS(735), - [anon_sym_else] = ACTIONS(737), - [anon_sym_DOLLARif] = ACTIONS(739), - [anon_sym_match] = ACTIONS(741), - [anon_sym_select] = ACTIONS(743), - [anon_sym_lock] = ACTIONS(745), - [anon_sym_rlock] = ACTIONS(745), - [anon_sym_unsafe] = ACTIONS(747), - [anon_sym_sql] = ACTIONS(749), - [sym_int_literal] = ACTIONS(733), - [sym_float_literal] = ACTIONS(751), - [sym_rune_literal] = ACTIONS(751), - [sym_pseudo_compile_time_identifier] = ACTIONS(753), + [anon_sym_BANG] = ACTIONS(785), + [anon_sym_go] = ACTIONS(787), + [anon_sym_spawn] = ACTIONS(789), + [anon_sym_json_DOTdecode] = ACTIONS(791), + [anon_sym_LBRACK2] = ACTIONS(793), + [anon_sym_TILDE] = ACTIONS(779), + [anon_sym_CARET] = ACTIONS(779), + [anon_sym_AMP] = ACTIONS(795), + [anon_sym_LT_DASH] = ACTIONS(797), + [sym_none] = ACTIONS(799), + [sym_true] = ACTIONS(799), + [sym_false] = ACTIONS(799), + [sym_nil] = ACTIONS(799), + [anon_sym_if] = ACTIONS(801), + [anon_sym_else] = ACTIONS(803), + [anon_sym_DOLLARif] = ACTIONS(805), + [anon_sym_match] = ACTIONS(807), + [anon_sym_select] = ACTIONS(809), + [anon_sym_lock] = ACTIONS(811), + [anon_sym_rlock] = ACTIONS(811), + [anon_sym_unsafe] = ACTIONS(813), + [anon_sym_sql] = ACTIONS(815), + [sym_int_literal] = ACTIONS(799), + [sym_float_literal] = ACTIONS(817), + [sym_rune_literal] = ACTIONS(817), + [sym_pseudo_compile_time_identifier] = ACTIONS(819), [anon_sym_shared] = ACTIONS(83), [anon_sym_map_LBRACK] = ACTIONS(85), [anon_sym_chan] = ACTIONS(87), [anon_sym_thread] = ACTIONS(89), [anon_sym_atomic] = ACTIONS(91), - [sym___double_quote] = ACTIONS(755), - [sym___single_quote] = ACTIONS(757), - [sym___c_double_quote] = ACTIONS(759), - [sym___c_single_quote] = ACTIONS(761), - [sym___r_double_quote] = ACTIONS(763), - [sym___r_single_quote] = ACTIONS(765), + [sym___double_quote] = ACTIONS(821), + [sym___single_quote] = ACTIONS(823), + [sym___c_double_quote] = ACTIONS(825), + [sym___c_single_quote] = ACTIONS(827), + [sym___r_double_quote] = ACTIONS(829), + [sym___r_single_quote] = ACTIONS(831), }, - [89] = { - [sym_line_comment] = STATE(89), - [sym_block_comment] = STATE(89), - [sym__expression] = STATE(2588), - [sym__expression_without_blocks] = STATE(1902), - [sym__expression_with_blocks] = STATE(2870), - [sym_inc_expression] = STATE(2032), - [sym_dec_expression] = STATE(2032), - [sym_or_block_expression] = STATE(2032), - [sym_option_propagation_expression] = STATE(2032), - [sym_result_propagation_expression] = STATE(2032), - [sym_anon_struct_value_expression] = STATE(2868), - [sym_go_expression] = STATE(2032), - [sym_spawn_expression] = STATE(2032), - [sym_parenthesized_expression] = STATE(2032), - [sym_call_expression] = STATE(2032), - [sym_type_initializer] = STATE(2868), - [sym_function_literal] = STATE(2032), - [sym_reference_expression] = STATE(1914), - [sym_type_reference_expression] = STATE(3541), - [sym_unary_expression] = STATE(2032), - [sym_receive_expression] = STATE(2032), - [sym_binary_expression] = STATE(2032), - [sym_as_type_cast_expression] = STATE(2032), - [sym__max_group] = STATE(2032), - [sym_literal] = STATE(2027), - [sym_map_init_expression] = STATE(2868), - [sym_map_keyed_element] = STATE(2001), - [sym_array_creation] = STATE(2032), - [sym_fixed_array_creation] = STATE(2032), - [sym_selector_expression] = STATE(2032), - [sym_index_expression] = STATE(2032), - [sym_slice_expression] = STATE(2032), - [sym_if_expression] = STATE(2868), - [sym_compile_time_if_expression] = STATE(2868), - [sym_is_expression] = STATE(2032), - [sym_in_expression] = STATE(2032), - [sym_enum_fetch] = STATE(2032), - [sym_match_expression] = STATE(2868), - [sym_select_expression] = STATE(2868), - [sym_select_arm] = STATE(2139), - [sym_select_arm_statement] = STATE(4161), - [sym_select_var_declaration] = STATE(4478), - [sym_select_else_arn_clause] = STATE(4485), - [sym_lock_expression] = STATE(2868), - [sym_unsafe_expression] = STATE(2868), - [sym_sql_expression] = STATE(2868), - [sym_c_string_literal] = STATE(2026), - [sym_raw_string_literal] = STATE(2026), - [sym_interpreted_string_literal] = STATE(2026), - [sym_mutability_modifiers] = STATE(635), - [sym_mutable_identifier] = STATE(3928), - [sym_identifier_list] = STATE(4484), + [101] = { + [sym_line_comment] = STATE(101), + [sym_block_comment] = STATE(101), + [sym__expression] = STATE(2586), + [sym__expression_without_blocks] = STATE(1903), + [sym__expression_with_blocks] = STATE(2882), + [sym_inc_expression] = STATE(2035), + [sym_dec_expression] = STATE(2035), + [sym_or_block_expression] = STATE(2035), + [sym_option_propagation_expression] = STATE(2035), + [sym_result_propagation_expression] = STATE(2035), + [sym_anon_struct_value_expression] = STATE(2877), + [sym_go_expression] = STATE(2035), + [sym_spawn_expression] = STATE(2035), + [sym_parenthesized_expression] = STATE(2035), + [sym_call_expression] = STATE(2035), + [sym_type_initializer] = STATE(2877), + [sym_function_literal] = STATE(2035), + [sym_reference_expression] = STATE(1944), + [sym_type_reference_expression] = STATE(3460), + [sym_unary_expression] = STATE(2035), + [sym_receive_expression] = STATE(2035), + [sym_binary_expression] = STATE(2035), + [sym_as_type_cast_expression] = STATE(2035), + [sym__max_group] = STATE(2035), + [sym_literal] = STATE(2030), + [sym_map_init_expression] = STATE(2877), + [sym_map_keyed_element] = STATE(2004), + [sym_array_creation] = STATE(2035), + [sym_fixed_array_creation] = STATE(2035), + [sym_selector_expression] = STATE(2035), + [sym_index_expression] = STATE(2035), + [sym_slice_expression] = STATE(2035), + [sym_if_expression] = STATE(2877), + [sym_compile_time_if_expression] = STATE(2877), + [sym_is_expression] = STATE(2035), + [sym_in_expression] = STATE(2035), + [sym_enum_fetch] = STATE(2035), + [sym_match_expression] = STATE(2877), + [sym_select_expression] = STATE(2877), + [sym_select_arm] = STATE(2140), + [sym_select_arm_statement] = STATE(4150), + [sym_select_var_declaration] = STATE(4507), + [sym_select_else_arn_clause] = STATE(4602), + [sym_lock_expression] = STATE(2877), + [sym_unsafe_expression] = STATE(2877), + [sym_sql_expression] = STATE(2877), + [sym_c_string_literal] = STATE(2029), + [sym_raw_string_literal] = STATE(2029), + [sym_interpreted_string_literal] = STATE(2029), + [sym_mutability_modifiers] = STATE(641), + [sym_mutable_identifier] = STATE(3847), + [sym_identifier_list] = STATE(4511), [sym_expression_without_blocks_list] = STATE(3279), - [sym_plain_type] = STATE(4094), - [sym__plain_type_without_special] = STATE(2302), - [sym_anon_struct_type] = STATE(2303), - [sym_multi_return_type] = STATE(2302), - [sym_result_type] = STATE(2302), - [sym_option_type] = STATE(2302), - [sym_qualified_type] = STATE(3541), - [sym_fixed_array_type] = STATE(2303), - [sym_array_type] = STATE(2303), - [sym_pointer_type] = STATE(2303), - [sym_wrong_pointer_type] = STATE(2303), - [sym_map_type] = STATE(2303), - [sym_channel_type] = STATE(2303), - [sym_shared_type] = STATE(2303), - [sym_thread_type] = STATE(2303), - [sym_atomic_type] = STATE(2303), - [sym_generic_type] = STATE(2303), - [sym_function_type] = STATE(2303), - [sym_send_statement] = STATE(4478), - [aux_sym_map_init_expression_repeat1] = STATE(274), - [aux_sym_select_expression_repeat1] = STATE(127), - [sym_identifier] = ACTIONS(701), + [sym_plain_type] = STATE(4297), + [sym__plain_type_without_special] = STATE(2360), + [sym_anon_struct_type] = STATE(2362), + [sym_multi_return_type] = STATE(2360), + [sym_result_type] = STATE(2360), + [sym_option_type] = STATE(2360), + [sym_qualified_type] = STATE(3460), + [sym_fixed_array_type] = STATE(2362), + [sym_array_type] = STATE(2362), + [sym_pointer_type] = STATE(2362), + [sym_wrong_pointer_type] = STATE(2362), + [sym_map_type] = STATE(2362), + [sym_channel_type] = STATE(2362), + [sym_shared_type] = STATE(2362), + [sym_thread_type] = STATE(2362), + [sym_atomic_type] = STATE(2362), + [sym_generic_type] = STATE(2362), + [sym_function_type] = STATE(2362), + [sym_send_statement] = STATE(4507), + [aux_sym_map_init_expression_repeat1] = STATE(242), + [aux_sym_select_expression_repeat1] = STATE(141), + [sym_identifier] = ACTIONS(767), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(703), - [anon_sym_LBRACE] = ACTIONS(705), - [anon_sym_RBRACE] = ACTIONS(771), - [anon_sym_LPAREN] = ACTIONS(709), - [anon_sym_fn] = ACTIONS(711), - [anon_sym_PLUS] = ACTIONS(713), - [anon_sym_DASH] = ACTIONS(713), - [anon_sym_STAR] = ACTIONS(715), - [anon_sym_struct] = ACTIONS(717), + [anon_sym_DOT] = ACTIONS(769), + [anon_sym_LBRACE] = ACTIONS(771), + [anon_sym_RBRACE] = ACTIONS(861), + [anon_sym_LPAREN] = ACTIONS(775), + [anon_sym_fn] = ACTIONS(777), + [anon_sym_PLUS] = ACTIONS(779), + [anon_sym_DASH] = ACTIONS(779), + [anon_sym_STAR] = ACTIONS(781), + [anon_sym_struct] = ACTIONS(783), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(719), - [anon_sym_go] = ACTIONS(721), - [anon_sym_spawn] = ACTIONS(723), - [anon_sym_json_DOTdecode] = ACTIONS(725), - [anon_sym_LBRACK2] = ACTIONS(727), - [anon_sym_TILDE] = ACTIONS(713), - [anon_sym_CARET] = ACTIONS(713), - [anon_sym_AMP] = ACTIONS(729), - [anon_sym_LT_DASH] = ACTIONS(731), - [sym_none] = ACTIONS(733), - [sym_true] = ACTIONS(733), - [sym_false] = ACTIONS(733), - [sym_nil] = ACTIONS(733), - [anon_sym_if] = ACTIONS(735), - [anon_sym_else] = ACTIONS(737), - [anon_sym_DOLLARif] = ACTIONS(739), - [anon_sym_match] = ACTIONS(741), - [anon_sym_select] = ACTIONS(743), - [anon_sym_lock] = ACTIONS(745), - [anon_sym_rlock] = ACTIONS(745), - [anon_sym_unsafe] = ACTIONS(747), - [anon_sym_sql] = ACTIONS(749), - [sym_int_literal] = ACTIONS(733), - [sym_float_literal] = ACTIONS(751), - [sym_rune_literal] = ACTIONS(751), - [sym_pseudo_compile_time_identifier] = ACTIONS(753), + [anon_sym_BANG] = ACTIONS(785), + [anon_sym_go] = ACTIONS(787), + [anon_sym_spawn] = ACTIONS(789), + [anon_sym_json_DOTdecode] = ACTIONS(791), + [anon_sym_LBRACK2] = ACTIONS(793), + [anon_sym_TILDE] = ACTIONS(779), + [anon_sym_CARET] = ACTIONS(779), + [anon_sym_AMP] = ACTIONS(795), + [anon_sym_LT_DASH] = ACTIONS(797), + [sym_none] = ACTIONS(799), + [sym_true] = ACTIONS(799), + [sym_false] = ACTIONS(799), + [sym_nil] = ACTIONS(799), + [anon_sym_if] = ACTIONS(801), + [anon_sym_else] = ACTIONS(803), + [anon_sym_DOLLARif] = ACTIONS(805), + [anon_sym_match] = ACTIONS(807), + [anon_sym_select] = ACTIONS(809), + [anon_sym_lock] = ACTIONS(811), + [anon_sym_rlock] = ACTIONS(811), + [anon_sym_unsafe] = ACTIONS(813), + [anon_sym_sql] = ACTIONS(815), + [sym_int_literal] = ACTIONS(799), + [sym_float_literal] = ACTIONS(817), + [sym_rune_literal] = ACTIONS(817), + [sym_pseudo_compile_time_identifier] = ACTIONS(819), [anon_sym_shared] = ACTIONS(83), [anon_sym_map_LBRACK] = ACTIONS(85), [anon_sym_chan] = ACTIONS(87), [anon_sym_thread] = ACTIONS(89), [anon_sym_atomic] = ACTIONS(91), - [sym___double_quote] = ACTIONS(755), - [sym___single_quote] = ACTIONS(757), - [sym___c_double_quote] = ACTIONS(759), - [sym___c_single_quote] = ACTIONS(761), - [sym___r_double_quote] = ACTIONS(763), - [sym___r_single_quote] = ACTIONS(765), + [sym___double_quote] = ACTIONS(821), + [sym___single_quote] = ACTIONS(823), + [sym___c_double_quote] = ACTIONS(825), + [sym___c_single_quote] = ACTIONS(827), + [sym___r_double_quote] = ACTIONS(829), + [sym___r_single_quote] = ACTIONS(831), }, - [90] = { - [sym_line_comment] = STATE(90), - [sym_block_comment] = STATE(90), - [sym__expression] = STATE(2588), - [sym__expression_without_blocks] = STATE(1902), - [sym__expression_with_blocks] = STATE(2870), - [sym_inc_expression] = STATE(2032), - [sym_dec_expression] = STATE(2032), - [sym_or_block_expression] = STATE(2032), - [sym_option_propagation_expression] = STATE(2032), - [sym_result_propagation_expression] = STATE(2032), - [sym_anon_struct_value_expression] = STATE(2868), - [sym_go_expression] = STATE(2032), - [sym_spawn_expression] = STATE(2032), - [sym_parenthesized_expression] = STATE(2032), - [sym_call_expression] = STATE(2032), - [sym_type_initializer] = STATE(2868), - [sym_function_literal] = STATE(2032), - [sym_reference_expression] = STATE(1914), - [sym_type_reference_expression] = STATE(3541), - [sym_unary_expression] = STATE(2032), - [sym_receive_expression] = STATE(2032), - [sym_binary_expression] = STATE(2032), - [sym_as_type_cast_expression] = STATE(2032), - [sym__max_group] = STATE(2032), - [sym_literal] = STATE(2027), - [sym_map_init_expression] = STATE(2868), - [sym_map_keyed_element] = STATE(2001), - [sym_array_creation] = STATE(2032), - [sym_fixed_array_creation] = STATE(2032), - [sym_selector_expression] = STATE(2032), - [sym_index_expression] = STATE(2032), - [sym_slice_expression] = STATE(2032), - [sym_if_expression] = STATE(2868), - [sym_compile_time_if_expression] = STATE(2868), - [sym_is_expression] = STATE(2032), - [sym_in_expression] = STATE(2032), - [sym_enum_fetch] = STATE(2032), - [sym_match_expression] = STATE(2868), - [sym_select_expression] = STATE(2868), - [sym_select_arm] = STATE(2139), - [sym_select_arm_statement] = STATE(4161), - [sym_select_var_declaration] = STATE(4478), - [sym_select_else_arn_clause] = STATE(4607), - [sym_lock_expression] = STATE(2868), - [sym_unsafe_expression] = STATE(2868), - [sym_sql_expression] = STATE(2868), - [sym_c_string_literal] = STATE(2026), - [sym_raw_string_literal] = STATE(2026), - [sym_interpreted_string_literal] = STATE(2026), - [sym_mutability_modifiers] = STATE(635), - [sym_mutable_identifier] = STATE(3928), - [sym_identifier_list] = STATE(4484), + [102] = { + [sym_line_comment] = STATE(102), + [sym_block_comment] = STATE(102), + [sym__expression] = STATE(2586), + [sym__expression_without_blocks] = STATE(1903), + [sym__expression_with_blocks] = STATE(2882), + [sym_inc_expression] = STATE(2035), + [sym_dec_expression] = STATE(2035), + [sym_or_block_expression] = STATE(2035), + [sym_option_propagation_expression] = STATE(2035), + [sym_result_propagation_expression] = STATE(2035), + [sym_anon_struct_value_expression] = STATE(2877), + [sym_go_expression] = STATE(2035), + [sym_spawn_expression] = STATE(2035), + [sym_parenthesized_expression] = STATE(2035), + [sym_call_expression] = STATE(2035), + [sym_type_initializer] = STATE(2877), + [sym_function_literal] = STATE(2035), + [sym_reference_expression] = STATE(1944), + [sym_type_reference_expression] = STATE(3460), + [sym_unary_expression] = STATE(2035), + [sym_receive_expression] = STATE(2035), + [sym_binary_expression] = STATE(2035), + [sym_as_type_cast_expression] = STATE(2035), + [sym__max_group] = STATE(2035), + [sym_literal] = STATE(2030), + [sym_map_init_expression] = STATE(2877), + [sym_map_keyed_element] = STATE(2004), + [sym_array_creation] = STATE(2035), + [sym_fixed_array_creation] = STATE(2035), + [sym_selector_expression] = STATE(2035), + [sym_index_expression] = STATE(2035), + [sym_slice_expression] = STATE(2035), + [sym_if_expression] = STATE(2877), + [sym_compile_time_if_expression] = STATE(2877), + [sym_is_expression] = STATE(2035), + [sym_in_expression] = STATE(2035), + [sym_enum_fetch] = STATE(2035), + [sym_match_expression] = STATE(2877), + [sym_select_expression] = STATE(2877), + [sym_select_arm] = STATE(2140), + [sym_select_arm_statement] = STATE(4150), + [sym_select_var_declaration] = STATE(4507), + [sym_select_else_arn_clause] = STATE(4606), + [sym_lock_expression] = STATE(2877), + [sym_unsafe_expression] = STATE(2877), + [sym_sql_expression] = STATE(2877), + [sym_c_string_literal] = STATE(2029), + [sym_raw_string_literal] = STATE(2029), + [sym_interpreted_string_literal] = STATE(2029), + [sym_mutability_modifiers] = STATE(641), + [sym_mutable_identifier] = STATE(3847), + [sym_identifier_list] = STATE(4511), [sym_expression_without_blocks_list] = STATE(3279), - [sym_plain_type] = STATE(4094), - [sym__plain_type_without_special] = STATE(2302), - [sym_anon_struct_type] = STATE(2303), - [sym_multi_return_type] = STATE(2302), - [sym_result_type] = STATE(2302), - [sym_option_type] = STATE(2302), - [sym_qualified_type] = STATE(3541), - [sym_fixed_array_type] = STATE(2303), - [sym_array_type] = STATE(2303), - [sym_pointer_type] = STATE(2303), - [sym_wrong_pointer_type] = STATE(2303), - [sym_map_type] = STATE(2303), - [sym_channel_type] = STATE(2303), - [sym_shared_type] = STATE(2303), - [sym_thread_type] = STATE(2303), - [sym_atomic_type] = STATE(2303), - [sym_generic_type] = STATE(2303), - [sym_function_type] = STATE(2303), - [sym_send_statement] = STATE(4478), - [aux_sym_map_init_expression_repeat1] = STATE(274), - [aux_sym_select_expression_repeat1] = STATE(119), - [sym_identifier] = ACTIONS(701), + [sym_plain_type] = STATE(4297), + [sym__plain_type_without_special] = STATE(2360), + [sym_anon_struct_type] = STATE(2362), + [sym_multi_return_type] = STATE(2360), + [sym_result_type] = STATE(2360), + [sym_option_type] = STATE(2360), + [sym_qualified_type] = STATE(3460), + [sym_fixed_array_type] = STATE(2362), + [sym_array_type] = STATE(2362), + [sym_pointer_type] = STATE(2362), + [sym_wrong_pointer_type] = STATE(2362), + [sym_map_type] = STATE(2362), + [sym_channel_type] = STATE(2362), + [sym_shared_type] = STATE(2362), + [sym_thread_type] = STATE(2362), + [sym_atomic_type] = STATE(2362), + [sym_generic_type] = STATE(2362), + [sym_function_type] = STATE(2362), + [sym_send_statement] = STATE(4507), + [aux_sym_map_init_expression_repeat1] = STATE(242), + [aux_sym_select_expression_repeat1] = STATE(145), + [sym_identifier] = ACTIONS(767), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(703), - [anon_sym_LBRACE] = ACTIONS(705), - [anon_sym_RBRACE] = ACTIONS(773), - [anon_sym_LPAREN] = ACTIONS(709), - [anon_sym_fn] = ACTIONS(711), - [anon_sym_PLUS] = ACTIONS(713), - [anon_sym_DASH] = ACTIONS(713), - [anon_sym_STAR] = ACTIONS(715), - [anon_sym_struct] = ACTIONS(717), + [anon_sym_DOT] = ACTIONS(769), + [anon_sym_LBRACE] = ACTIONS(771), + [anon_sym_RBRACE] = ACTIONS(863), + [anon_sym_LPAREN] = ACTIONS(775), + [anon_sym_fn] = ACTIONS(777), + [anon_sym_PLUS] = ACTIONS(779), + [anon_sym_DASH] = ACTIONS(779), + [anon_sym_STAR] = ACTIONS(781), + [anon_sym_struct] = ACTIONS(783), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(719), - [anon_sym_go] = ACTIONS(721), - [anon_sym_spawn] = ACTIONS(723), - [anon_sym_json_DOTdecode] = ACTIONS(725), - [anon_sym_LBRACK2] = ACTIONS(727), - [anon_sym_TILDE] = ACTIONS(713), - [anon_sym_CARET] = ACTIONS(713), - [anon_sym_AMP] = ACTIONS(729), - [anon_sym_LT_DASH] = ACTIONS(731), - [sym_none] = ACTIONS(733), - [sym_true] = ACTIONS(733), - [sym_false] = ACTIONS(733), - [sym_nil] = ACTIONS(733), - [anon_sym_if] = ACTIONS(735), - [anon_sym_else] = ACTIONS(737), - [anon_sym_DOLLARif] = ACTIONS(739), - [anon_sym_match] = ACTIONS(741), - [anon_sym_select] = ACTIONS(743), - [anon_sym_lock] = ACTIONS(745), - [anon_sym_rlock] = ACTIONS(745), - [anon_sym_unsafe] = ACTIONS(747), - [anon_sym_sql] = ACTIONS(749), - [sym_int_literal] = ACTIONS(733), - [sym_float_literal] = ACTIONS(751), - [sym_rune_literal] = ACTIONS(751), - [sym_pseudo_compile_time_identifier] = ACTIONS(753), + [anon_sym_BANG] = ACTIONS(785), + [anon_sym_go] = ACTIONS(787), + [anon_sym_spawn] = ACTIONS(789), + [anon_sym_json_DOTdecode] = ACTIONS(791), + [anon_sym_LBRACK2] = ACTIONS(793), + [anon_sym_TILDE] = ACTIONS(779), + [anon_sym_CARET] = ACTIONS(779), + [anon_sym_AMP] = ACTIONS(795), + [anon_sym_LT_DASH] = ACTIONS(797), + [sym_none] = ACTIONS(799), + [sym_true] = ACTIONS(799), + [sym_false] = ACTIONS(799), + [sym_nil] = ACTIONS(799), + [anon_sym_if] = ACTIONS(801), + [anon_sym_else] = ACTIONS(803), + [anon_sym_DOLLARif] = ACTIONS(805), + [anon_sym_match] = ACTIONS(807), + [anon_sym_select] = ACTIONS(809), + [anon_sym_lock] = ACTIONS(811), + [anon_sym_rlock] = ACTIONS(811), + [anon_sym_unsafe] = ACTIONS(813), + [anon_sym_sql] = ACTIONS(815), + [sym_int_literal] = ACTIONS(799), + [sym_float_literal] = ACTIONS(817), + [sym_rune_literal] = ACTIONS(817), + [sym_pseudo_compile_time_identifier] = ACTIONS(819), [anon_sym_shared] = ACTIONS(83), [anon_sym_map_LBRACK] = ACTIONS(85), [anon_sym_chan] = ACTIONS(87), [anon_sym_thread] = ACTIONS(89), [anon_sym_atomic] = ACTIONS(91), - [sym___double_quote] = ACTIONS(755), - [sym___single_quote] = ACTIONS(757), - [sym___c_double_quote] = ACTIONS(759), - [sym___c_single_quote] = ACTIONS(761), - [sym___r_double_quote] = ACTIONS(763), - [sym___r_single_quote] = ACTIONS(765), + [sym___double_quote] = ACTIONS(821), + [sym___single_quote] = ACTIONS(823), + [sym___c_double_quote] = ACTIONS(825), + [sym___c_single_quote] = ACTIONS(827), + [sym___r_double_quote] = ACTIONS(829), + [sym___r_single_quote] = ACTIONS(831), }, - [91] = { - [sym_line_comment] = STATE(91), - [sym_block_comment] = STATE(91), - [sym__expression] = STATE(2588), - [sym__expression_without_blocks] = STATE(1902), - [sym__expression_with_blocks] = STATE(2870), - [sym_inc_expression] = STATE(2032), - [sym_dec_expression] = STATE(2032), - [sym_or_block_expression] = STATE(2032), - [sym_option_propagation_expression] = STATE(2032), - [sym_result_propagation_expression] = STATE(2032), - [sym_anon_struct_value_expression] = STATE(2868), - [sym_go_expression] = STATE(2032), - [sym_spawn_expression] = STATE(2032), - [sym_parenthesized_expression] = STATE(2032), - [sym_call_expression] = STATE(2032), - [sym_type_initializer] = STATE(2868), - [sym_function_literal] = STATE(2032), - [sym_reference_expression] = STATE(1914), - [sym_type_reference_expression] = STATE(3541), - [sym_unary_expression] = STATE(2032), - [sym_receive_expression] = STATE(2032), - [sym_binary_expression] = STATE(2032), - [sym_as_type_cast_expression] = STATE(2032), - [sym__max_group] = STATE(2032), - [sym_literal] = STATE(2027), - [sym_map_init_expression] = STATE(2868), - [sym_map_keyed_element] = STATE(2001), - [sym_array_creation] = STATE(2032), - [sym_fixed_array_creation] = STATE(2032), - [sym_selector_expression] = STATE(2032), - [sym_index_expression] = STATE(2032), - [sym_slice_expression] = STATE(2032), - [sym_if_expression] = STATE(2868), - [sym_compile_time_if_expression] = STATE(2868), - [sym_is_expression] = STATE(2032), - [sym_in_expression] = STATE(2032), - [sym_enum_fetch] = STATE(2032), - [sym_match_expression] = STATE(2868), - [sym_select_expression] = STATE(2868), - [sym_select_arm] = STATE(2139), - [sym_select_arm_statement] = STATE(4161), - [sym_select_var_declaration] = STATE(4478), - [sym_select_else_arn_clause] = STATE(4441), - [sym_lock_expression] = STATE(2868), - [sym_unsafe_expression] = STATE(2868), - [sym_sql_expression] = STATE(2868), - [sym_c_string_literal] = STATE(2026), - [sym_raw_string_literal] = STATE(2026), - [sym_interpreted_string_literal] = STATE(2026), - [sym_mutability_modifiers] = STATE(635), - [sym_mutable_identifier] = STATE(3928), - [sym_identifier_list] = STATE(4484), + [103] = { + [sym_line_comment] = STATE(103), + [sym_block_comment] = STATE(103), + [sym__expression] = STATE(2586), + [sym__expression_without_blocks] = STATE(1903), + [sym__expression_with_blocks] = STATE(2882), + [sym_inc_expression] = STATE(2035), + [sym_dec_expression] = STATE(2035), + [sym_or_block_expression] = STATE(2035), + [sym_option_propagation_expression] = STATE(2035), + [sym_result_propagation_expression] = STATE(2035), + [sym_anon_struct_value_expression] = STATE(2877), + [sym_go_expression] = STATE(2035), + [sym_spawn_expression] = STATE(2035), + [sym_parenthesized_expression] = STATE(2035), + [sym_call_expression] = STATE(2035), + [sym_type_initializer] = STATE(2877), + [sym_function_literal] = STATE(2035), + [sym_reference_expression] = STATE(1944), + [sym_type_reference_expression] = STATE(3460), + [sym_unary_expression] = STATE(2035), + [sym_receive_expression] = STATE(2035), + [sym_binary_expression] = STATE(2035), + [sym_as_type_cast_expression] = STATE(2035), + [sym__max_group] = STATE(2035), + [sym_literal] = STATE(2030), + [sym_map_init_expression] = STATE(2877), + [sym_map_keyed_element] = STATE(2004), + [sym_array_creation] = STATE(2035), + [sym_fixed_array_creation] = STATE(2035), + [sym_selector_expression] = STATE(2035), + [sym_index_expression] = STATE(2035), + [sym_slice_expression] = STATE(2035), + [sym_if_expression] = STATE(2877), + [sym_compile_time_if_expression] = STATE(2877), + [sym_is_expression] = STATE(2035), + [sym_in_expression] = STATE(2035), + [sym_enum_fetch] = STATE(2035), + [sym_match_expression] = STATE(2877), + [sym_select_expression] = STATE(2877), + [sym_select_arm] = STATE(2140), + [sym_select_arm_statement] = STATE(4150), + [sym_select_var_declaration] = STATE(4507), + [sym_select_else_arn_clause] = STATE(4456), + [sym_lock_expression] = STATE(2877), + [sym_unsafe_expression] = STATE(2877), + [sym_sql_expression] = STATE(2877), + [sym_c_string_literal] = STATE(2029), + [sym_raw_string_literal] = STATE(2029), + [sym_interpreted_string_literal] = STATE(2029), + [sym_mutability_modifiers] = STATE(641), + [sym_mutable_identifier] = STATE(3847), + [sym_identifier_list] = STATE(4511), [sym_expression_without_blocks_list] = STATE(3279), - [sym_plain_type] = STATE(4094), - [sym__plain_type_without_special] = STATE(2302), - [sym_anon_struct_type] = STATE(2303), - [sym_multi_return_type] = STATE(2302), - [sym_result_type] = STATE(2302), - [sym_option_type] = STATE(2302), - [sym_qualified_type] = STATE(3541), - [sym_fixed_array_type] = STATE(2303), - [sym_array_type] = STATE(2303), - [sym_pointer_type] = STATE(2303), - [sym_wrong_pointer_type] = STATE(2303), - [sym_map_type] = STATE(2303), - [sym_channel_type] = STATE(2303), - [sym_shared_type] = STATE(2303), - [sym_thread_type] = STATE(2303), - [sym_atomic_type] = STATE(2303), - [sym_generic_type] = STATE(2303), - [sym_function_type] = STATE(2303), - [sym_send_statement] = STATE(4478), - [aux_sym_map_init_expression_repeat1] = STATE(274), - [aux_sym_select_expression_repeat1] = STATE(145), - [sym_identifier] = ACTIONS(701), + [sym_plain_type] = STATE(4297), + [sym__plain_type_without_special] = STATE(2360), + [sym_anon_struct_type] = STATE(2362), + [sym_multi_return_type] = STATE(2360), + [sym_result_type] = STATE(2360), + [sym_option_type] = STATE(2360), + [sym_qualified_type] = STATE(3460), + [sym_fixed_array_type] = STATE(2362), + [sym_array_type] = STATE(2362), + [sym_pointer_type] = STATE(2362), + [sym_wrong_pointer_type] = STATE(2362), + [sym_map_type] = STATE(2362), + [sym_channel_type] = STATE(2362), + [sym_shared_type] = STATE(2362), + [sym_thread_type] = STATE(2362), + [sym_atomic_type] = STATE(2362), + [sym_generic_type] = STATE(2362), + [sym_function_type] = STATE(2362), + [sym_send_statement] = STATE(4507), + [aux_sym_map_init_expression_repeat1] = STATE(242), + [aux_sym_select_expression_repeat1] = STATE(116), + [sym_identifier] = ACTIONS(767), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(703), - [anon_sym_LBRACE] = ACTIONS(705), - [anon_sym_RBRACE] = ACTIONS(775), - [anon_sym_LPAREN] = ACTIONS(709), - [anon_sym_fn] = ACTIONS(711), - [anon_sym_PLUS] = ACTIONS(713), - [anon_sym_DASH] = ACTIONS(713), - [anon_sym_STAR] = ACTIONS(715), - [anon_sym_struct] = ACTIONS(717), + [anon_sym_DOT] = ACTIONS(769), + [anon_sym_LBRACE] = ACTIONS(771), + [anon_sym_RBRACE] = ACTIONS(865), + [anon_sym_LPAREN] = ACTIONS(775), + [anon_sym_fn] = ACTIONS(777), + [anon_sym_PLUS] = ACTIONS(779), + [anon_sym_DASH] = ACTIONS(779), + [anon_sym_STAR] = ACTIONS(781), + [anon_sym_struct] = ACTIONS(783), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(719), - [anon_sym_go] = ACTIONS(721), - [anon_sym_spawn] = ACTIONS(723), - [anon_sym_json_DOTdecode] = ACTIONS(725), - [anon_sym_LBRACK2] = ACTIONS(727), - [anon_sym_TILDE] = ACTIONS(713), - [anon_sym_CARET] = ACTIONS(713), - [anon_sym_AMP] = ACTIONS(729), - [anon_sym_LT_DASH] = ACTIONS(731), - [sym_none] = ACTIONS(733), - [sym_true] = ACTIONS(733), - [sym_false] = ACTIONS(733), - [sym_nil] = ACTIONS(733), - [anon_sym_if] = ACTIONS(735), - [anon_sym_else] = ACTIONS(737), - [anon_sym_DOLLARif] = ACTIONS(739), - [anon_sym_match] = ACTIONS(741), - [anon_sym_select] = ACTIONS(743), - [anon_sym_lock] = ACTIONS(745), - [anon_sym_rlock] = ACTIONS(745), - [anon_sym_unsafe] = ACTIONS(747), - [anon_sym_sql] = ACTIONS(749), - [sym_int_literal] = ACTIONS(733), - [sym_float_literal] = ACTIONS(751), - [sym_rune_literal] = ACTIONS(751), - [sym_pseudo_compile_time_identifier] = ACTIONS(753), + [anon_sym_BANG] = ACTIONS(785), + [anon_sym_go] = ACTIONS(787), + [anon_sym_spawn] = ACTIONS(789), + [anon_sym_json_DOTdecode] = ACTIONS(791), + [anon_sym_LBRACK2] = ACTIONS(793), + [anon_sym_TILDE] = ACTIONS(779), + [anon_sym_CARET] = ACTIONS(779), + [anon_sym_AMP] = ACTIONS(795), + [anon_sym_LT_DASH] = ACTIONS(797), + [sym_none] = ACTIONS(799), + [sym_true] = ACTIONS(799), + [sym_false] = ACTIONS(799), + [sym_nil] = ACTIONS(799), + [anon_sym_if] = ACTIONS(801), + [anon_sym_else] = ACTIONS(803), + [anon_sym_DOLLARif] = ACTIONS(805), + [anon_sym_match] = ACTIONS(807), + [anon_sym_select] = ACTIONS(809), + [anon_sym_lock] = ACTIONS(811), + [anon_sym_rlock] = ACTIONS(811), + [anon_sym_unsafe] = ACTIONS(813), + [anon_sym_sql] = ACTIONS(815), + [sym_int_literal] = ACTIONS(799), + [sym_float_literal] = ACTIONS(817), + [sym_rune_literal] = ACTIONS(817), + [sym_pseudo_compile_time_identifier] = ACTIONS(819), [anon_sym_shared] = ACTIONS(83), [anon_sym_map_LBRACK] = ACTIONS(85), [anon_sym_chan] = ACTIONS(87), [anon_sym_thread] = ACTIONS(89), [anon_sym_atomic] = ACTIONS(91), - [sym___double_quote] = ACTIONS(755), - [sym___single_quote] = ACTIONS(757), - [sym___c_double_quote] = ACTIONS(759), - [sym___c_single_quote] = ACTIONS(761), - [sym___r_double_quote] = ACTIONS(763), - [sym___r_single_quote] = ACTIONS(765), + [sym___double_quote] = ACTIONS(821), + [sym___single_quote] = ACTIONS(823), + [sym___c_double_quote] = ACTIONS(825), + [sym___c_single_quote] = ACTIONS(827), + [sym___r_double_quote] = ACTIONS(829), + [sym___r_single_quote] = ACTIONS(831), }, - [92] = { - [sym_line_comment] = STATE(92), - [sym_block_comment] = STATE(92), - [sym__expression] = STATE(2588), - [sym__expression_without_blocks] = STATE(1902), - [sym__expression_with_blocks] = STATE(2870), - [sym_inc_expression] = STATE(2032), - [sym_dec_expression] = STATE(2032), - [sym_or_block_expression] = STATE(2032), - [sym_option_propagation_expression] = STATE(2032), - [sym_result_propagation_expression] = STATE(2032), - [sym_anon_struct_value_expression] = STATE(2868), - [sym_go_expression] = STATE(2032), - [sym_spawn_expression] = STATE(2032), - [sym_parenthesized_expression] = STATE(2032), - [sym_call_expression] = STATE(2032), - [sym_type_initializer] = STATE(2868), - [sym_function_literal] = STATE(2032), - [sym_reference_expression] = STATE(1914), - [sym_type_reference_expression] = STATE(3541), - [sym_unary_expression] = STATE(2032), - [sym_receive_expression] = STATE(2032), - [sym_binary_expression] = STATE(2032), - [sym_as_type_cast_expression] = STATE(2032), - [sym__max_group] = STATE(2032), - [sym_literal] = STATE(2027), - [sym_map_init_expression] = STATE(2868), - [sym_map_keyed_element] = STATE(2001), - [sym_array_creation] = STATE(2032), - [sym_fixed_array_creation] = STATE(2032), - [sym_selector_expression] = STATE(2032), - [sym_index_expression] = STATE(2032), - [sym_slice_expression] = STATE(2032), - [sym_if_expression] = STATE(2868), - [sym_compile_time_if_expression] = STATE(2868), - [sym_is_expression] = STATE(2032), - [sym_in_expression] = STATE(2032), - [sym_enum_fetch] = STATE(2032), - [sym_match_expression] = STATE(2868), - [sym_select_expression] = STATE(2868), - [sym_select_arm] = STATE(2139), - [sym_select_arm_statement] = STATE(4161), - [sym_select_var_declaration] = STATE(4478), - [sym_select_else_arn_clause] = STATE(4363), - [sym_lock_expression] = STATE(2868), - [sym_unsafe_expression] = STATE(2868), - [sym_sql_expression] = STATE(2868), - [sym_c_string_literal] = STATE(2026), - [sym_raw_string_literal] = STATE(2026), - [sym_interpreted_string_literal] = STATE(2026), - [sym_mutability_modifiers] = STATE(635), - [sym_mutable_identifier] = STATE(3928), - [sym_identifier_list] = STATE(4484), + [104] = { + [sym_line_comment] = STATE(104), + [sym_block_comment] = STATE(104), + [sym__expression] = STATE(2586), + [sym__expression_without_blocks] = STATE(1903), + [sym__expression_with_blocks] = STATE(2882), + [sym_inc_expression] = STATE(2035), + [sym_dec_expression] = STATE(2035), + [sym_or_block_expression] = STATE(2035), + [sym_option_propagation_expression] = STATE(2035), + [sym_result_propagation_expression] = STATE(2035), + [sym_anon_struct_value_expression] = STATE(2877), + [sym_go_expression] = STATE(2035), + [sym_spawn_expression] = STATE(2035), + [sym_parenthesized_expression] = STATE(2035), + [sym_call_expression] = STATE(2035), + [sym_type_initializer] = STATE(2877), + [sym_function_literal] = STATE(2035), + [sym_reference_expression] = STATE(1944), + [sym_type_reference_expression] = STATE(3460), + [sym_unary_expression] = STATE(2035), + [sym_receive_expression] = STATE(2035), + [sym_binary_expression] = STATE(2035), + [sym_as_type_cast_expression] = STATE(2035), + [sym__max_group] = STATE(2035), + [sym_literal] = STATE(2030), + [sym_map_init_expression] = STATE(2877), + [sym_map_keyed_element] = STATE(2004), + [sym_array_creation] = STATE(2035), + [sym_fixed_array_creation] = STATE(2035), + [sym_selector_expression] = STATE(2035), + [sym_index_expression] = STATE(2035), + [sym_slice_expression] = STATE(2035), + [sym_if_expression] = STATE(2877), + [sym_compile_time_if_expression] = STATE(2877), + [sym_is_expression] = STATE(2035), + [sym_in_expression] = STATE(2035), + [sym_enum_fetch] = STATE(2035), + [sym_match_expression] = STATE(2877), + [sym_select_expression] = STATE(2877), + [sym_select_arm] = STATE(2140), + [sym_select_arm_statement] = STATE(4150), + [sym_select_var_declaration] = STATE(4507), + [sym_select_else_arn_clause] = STATE(4612), + [sym_lock_expression] = STATE(2877), + [sym_unsafe_expression] = STATE(2877), + [sym_sql_expression] = STATE(2877), + [sym_c_string_literal] = STATE(2029), + [sym_raw_string_literal] = STATE(2029), + [sym_interpreted_string_literal] = STATE(2029), + [sym_mutability_modifiers] = STATE(641), + [sym_mutable_identifier] = STATE(3847), + [sym_identifier_list] = STATE(4511), [sym_expression_without_blocks_list] = STATE(3279), - [sym_plain_type] = STATE(4094), - [sym__plain_type_without_special] = STATE(2302), - [sym_anon_struct_type] = STATE(2303), - [sym_multi_return_type] = STATE(2302), - [sym_result_type] = STATE(2302), - [sym_option_type] = STATE(2302), - [sym_qualified_type] = STATE(3541), - [sym_fixed_array_type] = STATE(2303), - [sym_array_type] = STATE(2303), - [sym_pointer_type] = STATE(2303), - [sym_wrong_pointer_type] = STATE(2303), - [sym_map_type] = STATE(2303), - [sym_channel_type] = STATE(2303), - [sym_shared_type] = STATE(2303), - [sym_thread_type] = STATE(2303), - [sym_atomic_type] = STATE(2303), - [sym_generic_type] = STATE(2303), - [sym_function_type] = STATE(2303), - [sym_send_statement] = STATE(4478), - [aux_sym_map_init_expression_repeat1] = STATE(274), - [aux_sym_select_expression_repeat1] = STATE(124), - [sym_identifier] = ACTIONS(701), + [sym_plain_type] = STATE(4297), + [sym__plain_type_without_special] = STATE(2360), + [sym_anon_struct_type] = STATE(2362), + [sym_multi_return_type] = STATE(2360), + [sym_result_type] = STATE(2360), + [sym_option_type] = STATE(2360), + [sym_qualified_type] = STATE(3460), + [sym_fixed_array_type] = STATE(2362), + [sym_array_type] = STATE(2362), + [sym_pointer_type] = STATE(2362), + [sym_wrong_pointer_type] = STATE(2362), + [sym_map_type] = STATE(2362), + [sym_channel_type] = STATE(2362), + [sym_shared_type] = STATE(2362), + [sym_thread_type] = STATE(2362), + [sym_atomic_type] = STATE(2362), + [sym_generic_type] = STATE(2362), + [sym_function_type] = STATE(2362), + [sym_send_statement] = STATE(4507), + [aux_sym_map_init_expression_repeat1] = STATE(242), + [aux_sym_select_expression_repeat1] = STATE(147), + [sym_identifier] = ACTIONS(767), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(703), - [anon_sym_LBRACE] = ACTIONS(705), - [anon_sym_RBRACE] = ACTIONS(777), - [anon_sym_LPAREN] = ACTIONS(709), - [anon_sym_fn] = ACTIONS(711), - [anon_sym_PLUS] = ACTIONS(713), - [anon_sym_DASH] = ACTIONS(713), - [anon_sym_STAR] = ACTIONS(715), - [anon_sym_struct] = ACTIONS(717), + [anon_sym_DOT] = ACTIONS(769), + [anon_sym_LBRACE] = ACTIONS(771), + [anon_sym_RBRACE] = ACTIONS(867), + [anon_sym_LPAREN] = ACTIONS(775), + [anon_sym_fn] = ACTIONS(777), + [anon_sym_PLUS] = ACTIONS(779), + [anon_sym_DASH] = ACTIONS(779), + [anon_sym_STAR] = ACTIONS(781), + [anon_sym_struct] = ACTIONS(783), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(719), - [anon_sym_go] = ACTIONS(721), - [anon_sym_spawn] = ACTIONS(723), - [anon_sym_json_DOTdecode] = ACTIONS(725), - [anon_sym_LBRACK2] = ACTIONS(727), - [anon_sym_TILDE] = ACTIONS(713), - [anon_sym_CARET] = ACTIONS(713), - [anon_sym_AMP] = ACTIONS(729), - [anon_sym_LT_DASH] = ACTIONS(731), - [sym_none] = ACTIONS(733), - [sym_true] = ACTIONS(733), - [sym_false] = ACTIONS(733), - [sym_nil] = ACTIONS(733), - [anon_sym_if] = ACTIONS(735), - [anon_sym_else] = ACTIONS(737), - [anon_sym_DOLLARif] = ACTIONS(739), - [anon_sym_match] = ACTIONS(741), - [anon_sym_select] = ACTIONS(743), - [anon_sym_lock] = ACTIONS(745), - [anon_sym_rlock] = ACTIONS(745), - [anon_sym_unsafe] = ACTIONS(747), - [anon_sym_sql] = ACTIONS(749), - [sym_int_literal] = ACTIONS(733), - [sym_float_literal] = ACTIONS(751), - [sym_rune_literal] = ACTIONS(751), - [sym_pseudo_compile_time_identifier] = ACTIONS(753), + [anon_sym_BANG] = ACTIONS(785), + [anon_sym_go] = ACTIONS(787), + [anon_sym_spawn] = ACTIONS(789), + [anon_sym_json_DOTdecode] = ACTIONS(791), + [anon_sym_LBRACK2] = ACTIONS(793), + [anon_sym_TILDE] = ACTIONS(779), + [anon_sym_CARET] = ACTIONS(779), + [anon_sym_AMP] = ACTIONS(795), + [anon_sym_LT_DASH] = ACTIONS(797), + [sym_none] = ACTIONS(799), + [sym_true] = ACTIONS(799), + [sym_false] = ACTIONS(799), + [sym_nil] = ACTIONS(799), + [anon_sym_if] = ACTIONS(801), + [anon_sym_else] = ACTIONS(803), + [anon_sym_DOLLARif] = ACTIONS(805), + [anon_sym_match] = ACTIONS(807), + [anon_sym_select] = ACTIONS(809), + [anon_sym_lock] = ACTIONS(811), + [anon_sym_rlock] = ACTIONS(811), + [anon_sym_unsafe] = ACTIONS(813), + [anon_sym_sql] = ACTIONS(815), + [sym_int_literal] = ACTIONS(799), + [sym_float_literal] = ACTIONS(817), + [sym_rune_literal] = ACTIONS(817), + [sym_pseudo_compile_time_identifier] = ACTIONS(819), [anon_sym_shared] = ACTIONS(83), [anon_sym_map_LBRACK] = ACTIONS(85), [anon_sym_chan] = ACTIONS(87), [anon_sym_thread] = ACTIONS(89), [anon_sym_atomic] = ACTIONS(91), - [sym___double_quote] = ACTIONS(755), - [sym___single_quote] = ACTIONS(757), - [sym___c_double_quote] = ACTIONS(759), - [sym___c_single_quote] = ACTIONS(761), - [sym___r_double_quote] = ACTIONS(763), - [sym___r_single_quote] = ACTIONS(765), + [sym___double_quote] = ACTIONS(821), + [sym___single_quote] = ACTIONS(823), + [sym___c_double_quote] = ACTIONS(825), + [sym___c_single_quote] = ACTIONS(827), + [sym___r_double_quote] = ACTIONS(829), + [sym___r_single_quote] = ACTIONS(831), }, - [93] = { - [sym_line_comment] = STATE(93), - [sym_block_comment] = STATE(93), - [sym__expression] = STATE(2588), - [sym__expression_without_blocks] = STATE(1902), - [sym__expression_with_blocks] = STATE(2870), - [sym_inc_expression] = STATE(2032), - [sym_dec_expression] = STATE(2032), - [sym_or_block_expression] = STATE(2032), - [sym_option_propagation_expression] = STATE(2032), - [sym_result_propagation_expression] = STATE(2032), - [sym_anon_struct_value_expression] = STATE(2868), - [sym_go_expression] = STATE(2032), - [sym_spawn_expression] = STATE(2032), - [sym_parenthesized_expression] = STATE(2032), - [sym_call_expression] = STATE(2032), - [sym_type_initializer] = STATE(2868), - [sym_function_literal] = STATE(2032), - [sym_reference_expression] = STATE(1914), - [sym_type_reference_expression] = STATE(3541), - [sym_unary_expression] = STATE(2032), - [sym_receive_expression] = STATE(2032), - [sym_binary_expression] = STATE(2032), - [sym_as_type_cast_expression] = STATE(2032), - [sym__max_group] = STATE(2032), - [sym_literal] = STATE(2027), - [sym_map_init_expression] = STATE(2868), - [sym_map_keyed_element] = STATE(2001), - [sym_array_creation] = STATE(2032), - [sym_fixed_array_creation] = STATE(2032), - [sym_selector_expression] = STATE(2032), - [sym_index_expression] = STATE(2032), - [sym_slice_expression] = STATE(2032), - [sym_if_expression] = STATE(2868), - [sym_compile_time_if_expression] = STATE(2868), - [sym_is_expression] = STATE(2032), - [sym_in_expression] = STATE(2032), - [sym_enum_fetch] = STATE(2032), - [sym_match_expression] = STATE(2868), - [sym_select_expression] = STATE(2868), - [sym_select_arm] = STATE(2139), - [sym_select_arm_statement] = STATE(4161), - [sym_select_var_declaration] = STATE(4478), - [sym_select_else_arn_clause] = STATE(4548), - [sym_lock_expression] = STATE(2868), - [sym_unsafe_expression] = STATE(2868), - [sym_sql_expression] = STATE(2868), - [sym_c_string_literal] = STATE(2026), - [sym_raw_string_literal] = STATE(2026), - [sym_interpreted_string_literal] = STATE(2026), - [sym_mutability_modifiers] = STATE(635), - [sym_mutable_identifier] = STATE(3928), - [sym_identifier_list] = STATE(4484), + [105] = { + [sym_line_comment] = STATE(105), + [sym_block_comment] = STATE(105), + [sym__expression] = STATE(2586), + [sym__expression_without_blocks] = STATE(1903), + [sym__expression_with_blocks] = STATE(2882), + [sym_inc_expression] = STATE(2035), + [sym_dec_expression] = STATE(2035), + [sym_or_block_expression] = STATE(2035), + [sym_option_propagation_expression] = STATE(2035), + [sym_result_propagation_expression] = STATE(2035), + [sym_anon_struct_value_expression] = STATE(2877), + [sym_go_expression] = STATE(2035), + [sym_spawn_expression] = STATE(2035), + [sym_parenthesized_expression] = STATE(2035), + [sym_call_expression] = STATE(2035), + [sym_type_initializer] = STATE(2877), + [sym_function_literal] = STATE(2035), + [sym_reference_expression] = STATE(1944), + [sym_type_reference_expression] = STATE(3460), + [sym_unary_expression] = STATE(2035), + [sym_receive_expression] = STATE(2035), + [sym_binary_expression] = STATE(2035), + [sym_as_type_cast_expression] = STATE(2035), + [sym__max_group] = STATE(2035), + [sym_literal] = STATE(2030), + [sym_map_init_expression] = STATE(2877), + [sym_map_keyed_element] = STATE(2004), + [sym_array_creation] = STATE(2035), + [sym_fixed_array_creation] = STATE(2035), + [sym_selector_expression] = STATE(2035), + [sym_index_expression] = STATE(2035), + [sym_slice_expression] = STATE(2035), + [sym_if_expression] = STATE(2877), + [sym_compile_time_if_expression] = STATE(2877), + [sym_is_expression] = STATE(2035), + [sym_in_expression] = STATE(2035), + [sym_enum_fetch] = STATE(2035), + [sym_match_expression] = STATE(2877), + [sym_select_expression] = STATE(2877), + [sym_select_arm] = STATE(2140), + [sym_select_arm_statement] = STATE(4150), + [sym_select_var_declaration] = STATE(4507), + [sym_select_else_arn_clause] = STATE(4612), + [sym_lock_expression] = STATE(2877), + [sym_unsafe_expression] = STATE(2877), + [sym_sql_expression] = STATE(2877), + [sym_c_string_literal] = STATE(2029), + [sym_raw_string_literal] = STATE(2029), + [sym_interpreted_string_literal] = STATE(2029), + [sym_mutability_modifiers] = STATE(641), + [sym_mutable_identifier] = STATE(3847), + [sym_identifier_list] = STATE(4511), [sym_expression_without_blocks_list] = STATE(3279), - [sym_plain_type] = STATE(4094), - [sym__plain_type_without_special] = STATE(2302), - [sym_anon_struct_type] = STATE(2303), - [sym_multi_return_type] = STATE(2302), - [sym_result_type] = STATE(2302), - [sym_option_type] = STATE(2302), - [sym_qualified_type] = STATE(3541), - [sym_fixed_array_type] = STATE(2303), - [sym_array_type] = STATE(2303), - [sym_pointer_type] = STATE(2303), - [sym_wrong_pointer_type] = STATE(2303), - [sym_map_type] = STATE(2303), - [sym_channel_type] = STATE(2303), - [sym_shared_type] = STATE(2303), - [sym_thread_type] = STATE(2303), - [sym_atomic_type] = STATE(2303), - [sym_generic_type] = STATE(2303), - [sym_function_type] = STATE(2303), - [sym_send_statement] = STATE(4478), - [aux_sym_map_init_expression_repeat1] = STATE(274), - [aux_sym_select_expression_repeat1] = STATE(118), - [sym_identifier] = ACTIONS(701), + [sym_plain_type] = STATE(4297), + [sym__plain_type_without_special] = STATE(2360), + [sym_anon_struct_type] = STATE(2362), + [sym_multi_return_type] = STATE(2360), + [sym_result_type] = STATE(2360), + [sym_option_type] = STATE(2360), + [sym_qualified_type] = STATE(3460), + [sym_fixed_array_type] = STATE(2362), + [sym_array_type] = STATE(2362), + [sym_pointer_type] = STATE(2362), + [sym_wrong_pointer_type] = STATE(2362), + [sym_map_type] = STATE(2362), + [sym_channel_type] = STATE(2362), + [sym_shared_type] = STATE(2362), + [sym_thread_type] = STATE(2362), + [sym_atomic_type] = STATE(2362), + [sym_generic_type] = STATE(2362), + [sym_function_type] = STATE(2362), + [sym_send_statement] = STATE(4507), + [aux_sym_map_init_expression_repeat1] = STATE(242), + [aux_sym_select_expression_repeat1] = STATE(147), + [sym_identifier] = ACTIONS(767), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(703), - [anon_sym_LBRACE] = ACTIONS(705), - [anon_sym_RBRACE] = ACTIONS(779), - [anon_sym_LPAREN] = ACTIONS(709), - [anon_sym_fn] = ACTIONS(711), - [anon_sym_PLUS] = ACTIONS(713), - [anon_sym_DASH] = ACTIONS(713), - [anon_sym_STAR] = ACTIONS(715), - [anon_sym_struct] = ACTIONS(717), + [anon_sym_DOT] = ACTIONS(769), + [anon_sym_LBRACE] = ACTIONS(771), + [anon_sym_RBRACE] = ACTIONS(857), + [anon_sym_LPAREN] = ACTIONS(775), + [anon_sym_fn] = ACTIONS(777), + [anon_sym_PLUS] = ACTIONS(779), + [anon_sym_DASH] = ACTIONS(779), + [anon_sym_STAR] = ACTIONS(781), + [anon_sym_struct] = ACTIONS(783), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(719), - [anon_sym_go] = ACTIONS(721), - [anon_sym_spawn] = ACTIONS(723), - [anon_sym_json_DOTdecode] = ACTIONS(725), - [anon_sym_LBRACK2] = ACTIONS(727), - [anon_sym_TILDE] = ACTIONS(713), - [anon_sym_CARET] = ACTIONS(713), - [anon_sym_AMP] = ACTIONS(729), - [anon_sym_LT_DASH] = ACTIONS(731), - [sym_none] = ACTIONS(733), - [sym_true] = ACTIONS(733), - [sym_false] = ACTIONS(733), - [sym_nil] = ACTIONS(733), - [anon_sym_if] = ACTIONS(735), - [anon_sym_else] = ACTIONS(737), - [anon_sym_DOLLARif] = ACTIONS(739), - [anon_sym_match] = ACTIONS(741), - [anon_sym_select] = ACTIONS(743), - [anon_sym_lock] = ACTIONS(745), - [anon_sym_rlock] = ACTIONS(745), - [anon_sym_unsafe] = ACTIONS(747), - [anon_sym_sql] = ACTIONS(749), - [sym_int_literal] = ACTIONS(733), - [sym_float_literal] = ACTIONS(751), - [sym_rune_literal] = ACTIONS(751), - [sym_pseudo_compile_time_identifier] = ACTIONS(753), + [anon_sym_BANG] = ACTIONS(785), + [anon_sym_go] = ACTIONS(787), + [anon_sym_spawn] = ACTIONS(789), + [anon_sym_json_DOTdecode] = ACTIONS(791), + [anon_sym_LBRACK2] = ACTIONS(793), + [anon_sym_TILDE] = ACTIONS(779), + [anon_sym_CARET] = ACTIONS(779), + [anon_sym_AMP] = ACTIONS(795), + [anon_sym_LT_DASH] = ACTIONS(797), + [sym_none] = ACTIONS(799), + [sym_true] = ACTIONS(799), + [sym_false] = ACTIONS(799), + [sym_nil] = ACTIONS(799), + [anon_sym_if] = ACTIONS(801), + [anon_sym_else] = ACTIONS(803), + [anon_sym_DOLLARif] = ACTIONS(805), + [anon_sym_match] = ACTIONS(807), + [anon_sym_select] = ACTIONS(809), + [anon_sym_lock] = ACTIONS(811), + [anon_sym_rlock] = ACTIONS(811), + [anon_sym_unsafe] = ACTIONS(813), + [anon_sym_sql] = ACTIONS(815), + [sym_int_literal] = ACTIONS(799), + [sym_float_literal] = ACTIONS(817), + [sym_rune_literal] = ACTIONS(817), + [sym_pseudo_compile_time_identifier] = ACTIONS(819), [anon_sym_shared] = ACTIONS(83), [anon_sym_map_LBRACK] = ACTIONS(85), [anon_sym_chan] = ACTIONS(87), [anon_sym_thread] = ACTIONS(89), [anon_sym_atomic] = ACTIONS(91), - [sym___double_quote] = ACTIONS(755), - [sym___single_quote] = ACTIONS(757), - [sym___c_double_quote] = ACTIONS(759), - [sym___c_single_quote] = ACTIONS(761), - [sym___r_double_quote] = ACTIONS(763), - [sym___r_single_quote] = ACTIONS(765), + [sym___double_quote] = ACTIONS(821), + [sym___single_quote] = ACTIONS(823), + [sym___c_double_quote] = ACTIONS(825), + [sym___c_single_quote] = ACTIONS(827), + [sym___r_double_quote] = ACTIONS(829), + [sym___r_single_quote] = ACTIONS(831), }, - [94] = { - [sym_line_comment] = STATE(94), - [sym_block_comment] = STATE(94), - [sym__expression] = STATE(2588), - [sym__expression_without_blocks] = STATE(1902), - [sym__expression_with_blocks] = STATE(2870), - [sym_inc_expression] = STATE(2032), - [sym_dec_expression] = STATE(2032), - [sym_or_block_expression] = STATE(2032), - [sym_option_propagation_expression] = STATE(2032), - [sym_result_propagation_expression] = STATE(2032), - [sym_anon_struct_value_expression] = STATE(2868), - [sym_go_expression] = STATE(2032), - [sym_spawn_expression] = STATE(2032), - [sym_parenthesized_expression] = STATE(2032), - [sym_call_expression] = STATE(2032), - [sym_type_initializer] = STATE(2868), - [sym_function_literal] = STATE(2032), - [sym_reference_expression] = STATE(1914), - [sym_type_reference_expression] = STATE(3541), - [sym_unary_expression] = STATE(2032), - [sym_receive_expression] = STATE(2032), - [sym_binary_expression] = STATE(2032), - [sym_as_type_cast_expression] = STATE(2032), - [sym__max_group] = STATE(2032), - [sym_literal] = STATE(2027), - [sym_map_init_expression] = STATE(2868), - [sym_map_keyed_element] = STATE(2001), - [sym_array_creation] = STATE(2032), - [sym_fixed_array_creation] = STATE(2032), - [sym_selector_expression] = STATE(2032), - [sym_index_expression] = STATE(2032), - [sym_slice_expression] = STATE(2032), - [sym_if_expression] = STATE(2868), - [sym_compile_time_if_expression] = STATE(2868), - [sym_is_expression] = STATE(2032), - [sym_in_expression] = STATE(2032), - [sym_enum_fetch] = STATE(2032), - [sym_match_expression] = STATE(2868), - [sym_select_expression] = STATE(2868), - [sym_select_arm] = STATE(2139), - [sym_select_arm_statement] = STATE(4161), - [sym_select_var_declaration] = STATE(4478), - [sym_select_else_arn_clause] = STATE(4498), - [sym_lock_expression] = STATE(2868), - [sym_unsafe_expression] = STATE(2868), - [sym_sql_expression] = STATE(2868), - [sym_c_string_literal] = STATE(2026), - [sym_raw_string_literal] = STATE(2026), - [sym_interpreted_string_literal] = STATE(2026), - [sym_mutability_modifiers] = STATE(635), - [sym_mutable_identifier] = STATE(3928), - [sym_identifier_list] = STATE(4484), + [106] = { + [sym_line_comment] = STATE(106), + [sym_block_comment] = STATE(106), + [sym__expression] = STATE(2586), + [sym__expression_without_blocks] = STATE(1903), + [sym__expression_with_blocks] = STATE(2882), + [sym_inc_expression] = STATE(2035), + [sym_dec_expression] = STATE(2035), + [sym_or_block_expression] = STATE(2035), + [sym_option_propagation_expression] = STATE(2035), + [sym_result_propagation_expression] = STATE(2035), + [sym_anon_struct_value_expression] = STATE(2877), + [sym_go_expression] = STATE(2035), + [sym_spawn_expression] = STATE(2035), + [sym_parenthesized_expression] = STATE(2035), + [sym_call_expression] = STATE(2035), + [sym_type_initializer] = STATE(2877), + [sym_function_literal] = STATE(2035), + [sym_reference_expression] = STATE(1944), + [sym_type_reference_expression] = STATE(3460), + [sym_unary_expression] = STATE(2035), + [sym_receive_expression] = STATE(2035), + [sym_binary_expression] = STATE(2035), + [sym_as_type_cast_expression] = STATE(2035), + [sym__max_group] = STATE(2035), + [sym_literal] = STATE(2030), + [sym_map_init_expression] = STATE(2877), + [sym_map_keyed_element] = STATE(2004), + [sym_array_creation] = STATE(2035), + [sym_fixed_array_creation] = STATE(2035), + [sym_selector_expression] = STATE(2035), + [sym_index_expression] = STATE(2035), + [sym_slice_expression] = STATE(2035), + [sym_if_expression] = STATE(2877), + [sym_compile_time_if_expression] = STATE(2877), + [sym_is_expression] = STATE(2035), + [sym_in_expression] = STATE(2035), + [sym_enum_fetch] = STATE(2035), + [sym_match_expression] = STATE(2877), + [sym_select_expression] = STATE(2877), + [sym_select_arm] = STATE(2140), + [sym_select_arm_statement] = STATE(4150), + [sym_select_var_declaration] = STATE(4507), + [sym_select_else_arn_clause] = STATE(4455), + [sym_lock_expression] = STATE(2877), + [sym_unsafe_expression] = STATE(2877), + [sym_sql_expression] = STATE(2877), + [sym_c_string_literal] = STATE(2029), + [sym_raw_string_literal] = STATE(2029), + [sym_interpreted_string_literal] = STATE(2029), + [sym_mutability_modifiers] = STATE(641), + [sym_mutable_identifier] = STATE(3847), + [sym_identifier_list] = STATE(4511), [sym_expression_without_blocks_list] = STATE(3279), - [sym_plain_type] = STATE(4094), - [sym__plain_type_without_special] = STATE(2302), - [sym_anon_struct_type] = STATE(2303), - [sym_multi_return_type] = STATE(2302), - [sym_result_type] = STATE(2302), - [sym_option_type] = STATE(2302), - [sym_qualified_type] = STATE(3541), - [sym_fixed_array_type] = STATE(2303), - [sym_array_type] = STATE(2303), - [sym_pointer_type] = STATE(2303), - [sym_wrong_pointer_type] = STATE(2303), - [sym_map_type] = STATE(2303), - [sym_channel_type] = STATE(2303), - [sym_shared_type] = STATE(2303), - [sym_thread_type] = STATE(2303), - [sym_atomic_type] = STATE(2303), - [sym_generic_type] = STATE(2303), - [sym_function_type] = STATE(2303), - [sym_send_statement] = STATE(4478), - [aux_sym_map_init_expression_repeat1] = STATE(274), - [aux_sym_select_expression_repeat1] = STATE(146), - [sym_identifier] = ACTIONS(701), + [sym_plain_type] = STATE(4297), + [sym__plain_type_without_special] = STATE(2360), + [sym_anon_struct_type] = STATE(2362), + [sym_multi_return_type] = STATE(2360), + [sym_result_type] = STATE(2360), + [sym_option_type] = STATE(2360), + [sym_qualified_type] = STATE(3460), + [sym_fixed_array_type] = STATE(2362), + [sym_array_type] = STATE(2362), + [sym_pointer_type] = STATE(2362), + [sym_wrong_pointer_type] = STATE(2362), + [sym_map_type] = STATE(2362), + [sym_channel_type] = STATE(2362), + [sym_shared_type] = STATE(2362), + [sym_thread_type] = STATE(2362), + [sym_atomic_type] = STATE(2362), + [sym_generic_type] = STATE(2362), + [sym_function_type] = STATE(2362), + [sym_send_statement] = STATE(4507), + [aux_sym_map_init_expression_repeat1] = STATE(242), + [aux_sym_select_expression_repeat1] = STATE(137), + [sym_identifier] = ACTIONS(767), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(703), - [anon_sym_LBRACE] = ACTIONS(705), - [anon_sym_RBRACE] = ACTIONS(781), - [anon_sym_LPAREN] = ACTIONS(709), - [anon_sym_fn] = ACTIONS(711), - [anon_sym_PLUS] = ACTIONS(713), - [anon_sym_DASH] = ACTIONS(713), - [anon_sym_STAR] = ACTIONS(715), - [anon_sym_struct] = ACTIONS(717), + [anon_sym_DOT] = ACTIONS(769), + [anon_sym_LBRACE] = ACTIONS(771), + [anon_sym_RBRACE] = ACTIONS(867), + [anon_sym_LPAREN] = ACTIONS(775), + [anon_sym_fn] = ACTIONS(777), + [anon_sym_PLUS] = ACTIONS(779), + [anon_sym_DASH] = ACTIONS(779), + [anon_sym_STAR] = ACTIONS(781), + [anon_sym_struct] = ACTIONS(783), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(719), - [anon_sym_go] = ACTIONS(721), - [anon_sym_spawn] = ACTIONS(723), - [anon_sym_json_DOTdecode] = ACTIONS(725), - [anon_sym_LBRACK2] = ACTIONS(727), - [anon_sym_TILDE] = ACTIONS(713), - [anon_sym_CARET] = ACTIONS(713), - [anon_sym_AMP] = ACTIONS(729), - [anon_sym_LT_DASH] = ACTIONS(731), - [sym_none] = ACTIONS(733), - [sym_true] = ACTIONS(733), - [sym_false] = ACTIONS(733), - [sym_nil] = ACTIONS(733), - [anon_sym_if] = ACTIONS(735), - [anon_sym_else] = ACTIONS(737), - [anon_sym_DOLLARif] = ACTIONS(739), - [anon_sym_match] = ACTIONS(741), - [anon_sym_select] = ACTIONS(743), - [anon_sym_lock] = ACTIONS(745), - [anon_sym_rlock] = ACTIONS(745), - [anon_sym_unsafe] = ACTIONS(747), - [anon_sym_sql] = ACTIONS(749), - [sym_int_literal] = ACTIONS(733), - [sym_float_literal] = ACTIONS(751), - [sym_rune_literal] = ACTIONS(751), - [sym_pseudo_compile_time_identifier] = ACTIONS(753), + [anon_sym_BANG] = ACTIONS(785), + [anon_sym_go] = ACTIONS(787), + [anon_sym_spawn] = ACTIONS(789), + [anon_sym_json_DOTdecode] = ACTIONS(791), + [anon_sym_LBRACK2] = ACTIONS(793), + [anon_sym_TILDE] = ACTIONS(779), + [anon_sym_CARET] = ACTIONS(779), + [anon_sym_AMP] = ACTIONS(795), + [anon_sym_LT_DASH] = ACTIONS(797), + [sym_none] = ACTIONS(799), + [sym_true] = ACTIONS(799), + [sym_false] = ACTIONS(799), + [sym_nil] = ACTIONS(799), + [anon_sym_if] = ACTIONS(801), + [anon_sym_else] = ACTIONS(803), + [anon_sym_DOLLARif] = ACTIONS(805), + [anon_sym_match] = ACTIONS(807), + [anon_sym_select] = ACTIONS(809), + [anon_sym_lock] = ACTIONS(811), + [anon_sym_rlock] = ACTIONS(811), + [anon_sym_unsafe] = ACTIONS(813), + [anon_sym_sql] = ACTIONS(815), + [sym_int_literal] = ACTIONS(799), + [sym_float_literal] = ACTIONS(817), + [sym_rune_literal] = ACTIONS(817), + [sym_pseudo_compile_time_identifier] = ACTIONS(819), [anon_sym_shared] = ACTIONS(83), [anon_sym_map_LBRACK] = ACTIONS(85), [anon_sym_chan] = ACTIONS(87), [anon_sym_thread] = ACTIONS(89), [anon_sym_atomic] = ACTIONS(91), - [sym___double_quote] = ACTIONS(755), - [sym___single_quote] = ACTIONS(757), - [sym___c_double_quote] = ACTIONS(759), - [sym___c_single_quote] = ACTIONS(761), - [sym___r_double_quote] = ACTIONS(763), - [sym___r_single_quote] = ACTIONS(765), + [sym___double_quote] = ACTIONS(821), + [sym___single_quote] = ACTIONS(823), + [sym___c_double_quote] = ACTIONS(825), + [sym___c_single_quote] = ACTIONS(827), + [sym___r_double_quote] = ACTIONS(829), + [sym___r_single_quote] = ACTIONS(831), }, - [95] = { - [sym_line_comment] = STATE(95), - [sym_block_comment] = STATE(95), - [sym__expression] = STATE(2588), - [sym__expression_without_blocks] = STATE(1902), - [sym__expression_with_blocks] = STATE(2870), - [sym_inc_expression] = STATE(2032), - [sym_dec_expression] = STATE(2032), - [sym_or_block_expression] = STATE(2032), - [sym_option_propagation_expression] = STATE(2032), - [sym_result_propagation_expression] = STATE(2032), - [sym_anon_struct_value_expression] = STATE(2868), - [sym_go_expression] = STATE(2032), - [sym_spawn_expression] = STATE(2032), - [sym_parenthesized_expression] = STATE(2032), - [sym_call_expression] = STATE(2032), - [sym_type_initializer] = STATE(2868), - [sym_function_literal] = STATE(2032), - [sym_reference_expression] = STATE(1914), - [sym_type_reference_expression] = STATE(3541), - [sym_unary_expression] = STATE(2032), - [sym_receive_expression] = STATE(2032), - [sym_binary_expression] = STATE(2032), - [sym_as_type_cast_expression] = STATE(2032), - [sym__max_group] = STATE(2032), - [sym_literal] = STATE(2027), - [sym_map_init_expression] = STATE(2868), - [sym_map_keyed_element] = STATE(2001), - [sym_array_creation] = STATE(2032), - [sym_fixed_array_creation] = STATE(2032), - [sym_selector_expression] = STATE(2032), - [sym_index_expression] = STATE(2032), - [sym_slice_expression] = STATE(2032), - [sym_if_expression] = STATE(2868), - [sym_compile_time_if_expression] = STATE(2868), - [sym_is_expression] = STATE(2032), - [sym_in_expression] = STATE(2032), - [sym_enum_fetch] = STATE(2032), - [sym_match_expression] = STATE(2868), - [sym_select_expression] = STATE(2868), - [sym_select_arm] = STATE(2139), - [sym_select_arm_statement] = STATE(4161), - [sym_select_var_declaration] = STATE(4478), - [sym_select_else_arn_clause] = STATE(4605), - [sym_lock_expression] = STATE(2868), - [sym_unsafe_expression] = STATE(2868), - [sym_sql_expression] = STATE(2868), - [sym_c_string_literal] = STATE(2026), - [sym_raw_string_literal] = STATE(2026), - [sym_interpreted_string_literal] = STATE(2026), - [sym_mutability_modifiers] = STATE(635), - [sym_mutable_identifier] = STATE(3928), - [sym_identifier_list] = STATE(4484), + [107] = { + [sym_line_comment] = STATE(107), + [sym_block_comment] = STATE(107), + [sym__expression] = STATE(2586), + [sym__expression_without_blocks] = STATE(1903), + [sym__expression_with_blocks] = STATE(2882), + [sym_inc_expression] = STATE(2035), + [sym_dec_expression] = STATE(2035), + [sym_or_block_expression] = STATE(2035), + [sym_option_propagation_expression] = STATE(2035), + [sym_result_propagation_expression] = STATE(2035), + [sym_anon_struct_value_expression] = STATE(2877), + [sym_go_expression] = STATE(2035), + [sym_spawn_expression] = STATE(2035), + [sym_parenthesized_expression] = STATE(2035), + [sym_call_expression] = STATE(2035), + [sym_type_initializer] = STATE(2877), + [sym_function_literal] = STATE(2035), + [sym_reference_expression] = STATE(1944), + [sym_type_reference_expression] = STATE(3460), + [sym_unary_expression] = STATE(2035), + [sym_receive_expression] = STATE(2035), + [sym_binary_expression] = STATE(2035), + [sym_as_type_cast_expression] = STATE(2035), + [sym__max_group] = STATE(2035), + [sym_literal] = STATE(2030), + [sym_map_init_expression] = STATE(2877), + [sym_map_keyed_element] = STATE(2004), + [sym_array_creation] = STATE(2035), + [sym_fixed_array_creation] = STATE(2035), + [sym_selector_expression] = STATE(2035), + [sym_index_expression] = STATE(2035), + [sym_slice_expression] = STATE(2035), + [sym_if_expression] = STATE(2877), + [sym_compile_time_if_expression] = STATE(2877), + [sym_is_expression] = STATE(2035), + [sym_in_expression] = STATE(2035), + [sym_enum_fetch] = STATE(2035), + [sym_match_expression] = STATE(2877), + [sym_select_expression] = STATE(2877), + [sym_select_arm] = STATE(2140), + [sym_select_arm_statement] = STATE(4150), + [sym_select_var_declaration] = STATE(4507), + [sym_select_else_arn_clause] = STATE(4566), + [sym_lock_expression] = STATE(2877), + [sym_unsafe_expression] = STATE(2877), + [sym_sql_expression] = STATE(2877), + [sym_c_string_literal] = STATE(2029), + [sym_raw_string_literal] = STATE(2029), + [sym_interpreted_string_literal] = STATE(2029), + [sym_mutability_modifiers] = STATE(641), + [sym_mutable_identifier] = STATE(3847), + [sym_identifier_list] = STATE(4511), [sym_expression_without_blocks_list] = STATE(3279), - [sym_plain_type] = STATE(4094), - [sym__plain_type_without_special] = STATE(2302), - [sym_anon_struct_type] = STATE(2303), - [sym_multi_return_type] = STATE(2302), - [sym_result_type] = STATE(2302), - [sym_option_type] = STATE(2302), - [sym_qualified_type] = STATE(3541), - [sym_fixed_array_type] = STATE(2303), - [sym_array_type] = STATE(2303), - [sym_pointer_type] = STATE(2303), - [sym_wrong_pointer_type] = STATE(2303), - [sym_map_type] = STATE(2303), - [sym_channel_type] = STATE(2303), - [sym_shared_type] = STATE(2303), - [sym_thread_type] = STATE(2303), - [sym_atomic_type] = STATE(2303), - [sym_generic_type] = STATE(2303), - [sym_function_type] = STATE(2303), - [sym_send_statement] = STATE(4478), - [aux_sym_map_init_expression_repeat1] = STATE(274), - [aux_sym_select_expression_repeat1] = STATE(132), - [sym_identifier] = ACTIONS(701), + [sym_plain_type] = STATE(4297), + [sym__plain_type_without_special] = STATE(2360), + [sym_anon_struct_type] = STATE(2362), + [sym_multi_return_type] = STATE(2360), + [sym_result_type] = STATE(2360), + [sym_option_type] = STATE(2360), + [sym_qualified_type] = STATE(3460), + [sym_fixed_array_type] = STATE(2362), + [sym_array_type] = STATE(2362), + [sym_pointer_type] = STATE(2362), + [sym_wrong_pointer_type] = STATE(2362), + [sym_map_type] = STATE(2362), + [sym_channel_type] = STATE(2362), + [sym_shared_type] = STATE(2362), + [sym_thread_type] = STATE(2362), + [sym_atomic_type] = STATE(2362), + [sym_generic_type] = STATE(2362), + [sym_function_type] = STATE(2362), + [sym_send_statement] = STATE(4507), + [aux_sym_map_init_expression_repeat1] = STATE(242), + [aux_sym_select_expression_repeat1] = STATE(114), + [sym_identifier] = ACTIONS(767), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(703), - [anon_sym_LBRACE] = ACTIONS(705), - [anon_sym_RBRACE] = ACTIONS(783), - [anon_sym_LPAREN] = ACTIONS(709), - [anon_sym_fn] = ACTIONS(711), - [anon_sym_PLUS] = ACTIONS(713), - [anon_sym_DASH] = ACTIONS(713), - [anon_sym_STAR] = ACTIONS(715), - [anon_sym_struct] = ACTIONS(717), + [anon_sym_DOT] = ACTIONS(769), + [anon_sym_LBRACE] = ACTIONS(771), + [anon_sym_RBRACE] = ACTIONS(869), + [anon_sym_LPAREN] = ACTIONS(775), + [anon_sym_fn] = ACTIONS(777), + [anon_sym_PLUS] = ACTIONS(779), + [anon_sym_DASH] = ACTIONS(779), + [anon_sym_STAR] = ACTIONS(781), + [anon_sym_struct] = ACTIONS(783), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(719), - [anon_sym_go] = ACTIONS(721), - [anon_sym_spawn] = ACTIONS(723), - [anon_sym_json_DOTdecode] = ACTIONS(725), - [anon_sym_LBRACK2] = ACTIONS(727), - [anon_sym_TILDE] = ACTIONS(713), - [anon_sym_CARET] = ACTIONS(713), - [anon_sym_AMP] = ACTIONS(729), - [anon_sym_LT_DASH] = ACTIONS(731), - [sym_none] = ACTIONS(733), - [sym_true] = ACTIONS(733), - [sym_false] = ACTIONS(733), - [sym_nil] = ACTIONS(733), - [anon_sym_if] = ACTIONS(735), - [anon_sym_else] = ACTIONS(737), - [anon_sym_DOLLARif] = ACTIONS(739), - [anon_sym_match] = ACTIONS(741), - [anon_sym_select] = ACTIONS(743), - [anon_sym_lock] = ACTIONS(745), - [anon_sym_rlock] = ACTIONS(745), - [anon_sym_unsafe] = ACTIONS(747), - [anon_sym_sql] = ACTIONS(749), - [sym_int_literal] = ACTIONS(733), - [sym_float_literal] = ACTIONS(751), - [sym_rune_literal] = ACTIONS(751), - [sym_pseudo_compile_time_identifier] = ACTIONS(753), + [anon_sym_BANG] = ACTIONS(785), + [anon_sym_go] = ACTIONS(787), + [anon_sym_spawn] = ACTIONS(789), + [anon_sym_json_DOTdecode] = ACTIONS(791), + [anon_sym_LBRACK2] = ACTIONS(793), + [anon_sym_TILDE] = ACTIONS(779), + [anon_sym_CARET] = ACTIONS(779), + [anon_sym_AMP] = ACTIONS(795), + [anon_sym_LT_DASH] = ACTIONS(797), + [sym_none] = ACTIONS(799), + [sym_true] = ACTIONS(799), + [sym_false] = ACTIONS(799), + [sym_nil] = ACTIONS(799), + [anon_sym_if] = ACTIONS(801), + [anon_sym_else] = ACTIONS(803), + [anon_sym_DOLLARif] = ACTIONS(805), + [anon_sym_match] = ACTIONS(807), + [anon_sym_select] = ACTIONS(809), + [anon_sym_lock] = ACTIONS(811), + [anon_sym_rlock] = ACTIONS(811), + [anon_sym_unsafe] = ACTIONS(813), + [anon_sym_sql] = ACTIONS(815), + [sym_int_literal] = ACTIONS(799), + [sym_float_literal] = ACTIONS(817), + [sym_rune_literal] = ACTIONS(817), + [sym_pseudo_compile_time_identifier] = ACTIONS(819), [anon_sym_shared] = ACTIONS(83), [anon_sym_map_LBRACK] = ACTIONS(85), [anon_sym_chan] = ACTIONS(87), [anon_sym_thread] = ACTIONS(89), [anon_sym_atomic] = ACTIONS(91), - [sym___double_quote] = ACTIONS(755), - [sym___single_quote] = ACTIONS(757), - [sym___c_double_quote] = ACTIONS(759), - [sym___c_single_quote] = ACTIONS(761), - [sym___r_double_quote] = ACTIONS(763), - [sym___r_single_quote] = ACTIONS(765), + [sym___double_quote] = ACTIONS(821), + [sym___single_quote] = ACTIONS(823), + [sym___c_double_quote] = ACTIONS(825), + [sym___c_single_quote] = ACTIONS(827), + [sym___r_double_quote] = ACTIONS(829), + [sym___r_single_quote] = ACTIONS(831), }, - [96] = { - [sym_line_comment] = STATE(96), - [sym_block_comment] = STATE(96), - [sym__expression] = STATE(2588), - [sym__expression_without_blocks] = STATE(1902), - [sym__expression_with_blocks] = STATE(2870), - [sym_inc_expression] = STATE(2032), - [sym_dec_expression] = STATE(2032), - [sym_or_block_expression] = STATE(2032), - [sym_option_propagation_expression] = STATE(2032), - [sym_result_propagation_expression] = STATE(2032), - [sym_anon_struct_value_expression] = STATE(2868), - [sym_go_expression] = STATE(2032), - [sym_spawn_expression] = STATE(2032), - [sym_parenthesized_expression] = STATE(2032), - [sym_call_expression] = STATE(2032), - [sym_type_initializer] = STATE(2868), - [sym_function_literal] = STATE(2032), - [sym_reference_expression] = STATE(1914), - [sym_type_reference_expression] = STATE(3541), - [sym_unary_expression] = STATE(2032), - [sym_receive_expression] = STATE(2032), - [sym_binary_expression] = STATE(2032), - [sym_as_type_cast_expression] = STATE(2032), - [sym__max_group] = STATE(2032), - [sym_literal] = STATE(2027), - [sym_map_init_expression] = STATE(2868), - [sym_map_keyed_element] = STATE(2001), - [sym_array_creation] = STATE(2032), - [sym_fixed_array_creation] = STATE(2032), - [sym_selector_expression] = STATE(2032), - [sym_index_expression] = STATE(2032), - [sym_slice_expression] = STATE(2032), - [sym_if_expression] = STATE(2868), - [sym_compile_time_if_expression] = STATE(2868), - [sym_is_expression] = STATE(2032), - [sym_in_expression] = STATE(2032), - [sym_enum_fetch] = STATE(2032), - [sym_match_expression] = STATE(2868), - [sym_select_expression] = STATE(2868), - [sym_select_arm] = STATE(2139), - [sym_select_arm_statement] = STATE(4161), - [sym_select_var_declaration] = STATE(4478), - [sym_select_else_arn_clause] = STATE(4587), - [sym_lock_expression] = STATE(2868), - [sym_unsafe_expression] = STATE(2868), - [sym_sql_expression] = STATE(2868), - [sym_c_string_literal] = STATE(2026), - [sym_raw_string_literal] = STATE(2026), - [sym_interpreted_string_literal] = STATE(2026), - [sym_mutability_modifiers] = STATE(635), - [sym_mutable_identifier] = STATE(3928), - [sym_identifier_list] = STATE(4484), + [108] = { + [sym_line_comment] = STATE(108), + [sym_block_comment] = STATE(108), + [sym__expression] = STATE(2586), + [sym__expression_without_blocks] = STATE(1903), + [sym__expression_with_blocks] = STATE(2882), + [sym_inc_expression] = STATE(2035), + [sym_dec_expression] = STATE(2035), + [sym_or_block_expression] = STATE(2035), + [sym_option_propagation_expression] = STATE(2035), + [sym_result_propagation_expression] = STATE(2035), + [sym_anon_struct_value_expression] = STATE(2877), + [sym_go_expression] = STATE(2035), + [sym_spawn_expression] = STATE(2035), + [sym_parenthesized_expression] = STATE(2035), + [sym_call_expression] = STATE(2035), + [sym_type_initializer] = STATE(2877), + [sym_function_literal] = STATE(2035), + [sym_reference_expression] = STATE(1944), + [sym_type_reference_expression] = STATE(3460), + [sym_unary_expression] = STATE(2035), + [sym_receive_expression] = STATE(2035), + [sym_binary_expression] = STATE(2035), + [sym_as_type_cast_expression] = STATE(2035), + [sym__max_group] = STATE(2035), + [sym_literal] = STATE(2030), + [sym_map_init_expression] = STATE(2877), + [sym_map_keyed_element] = STATE(2004), + [sym_array_creation] = STATE(2035), + [sym_fixed_array_creation] = STATE(2035), + [sym_selector_expression] = STATE(2035), + [sym_index_expression] = STATE(2035), + [sym_slice_expression] = STATE(2035), + [sym_if_expression] = STATE(2877), + [sym_compile_time_if_expression] = STATE(2877), + [sym_is_expression] = STATE(2035), + [sym_in_expression] = STATE(2035), + [sym_enum_fetch] = STATE(2035), + [sym_match_expression] = STATE(2877), + [sym_select_expression] = STATE(2877), + [sym_select_arm] = STATE(2140), + [sym_select_arm_statement] = STATE(4150), + [sym_select_var_declaration] = STATE(4507), + [sym_select_else_arn_clause] = STATE(4529), + [sym_lock_expression] = STATE(2877), + [sym_unsafe_expression] = STATE(2877), + [sym_sql_expression] = STATE(2877), + [sym_c_string_literal] = STATE(2029), + [sym_raw_string_literal] = STATE(2029), + [sym_interpreted_string_literal] = STATE(2029), + [sym_mutability_modifiers] = STATE(641), + [sym_mutable_identifier] = STATE(3847), + [sym_identifier_list] = STATE(4511), [sym_expression_without_blocks_list] = STATE(3279), - [sym_plain_type] = STATE(4094), - [sym__plain_type_without_special] = STATE(2302), - [sym_anon_struct_type] = STATE(2303), - [sym_multi_return_type] = STATE(2302), - [sym_result_type] = STATE(2302), - [sym_option_type] = STATE(2302), - [sym_qualified_type] = STATE(3541), - [sym_fixed_array_type] = STATE(2303), - [sym_array_type] = STATE(2303), - [sym_pointer_type] = STATE(2303), - [sym_wrong_pointer_type] = STATE(2303), - [sym_map_type] = STATE(2303), - [sym_channel_type] = STATE(2303), - [sym_shared_type] = STATE(2303), - [sym_thread_type] = STATE(2303), - [sym_atomic_type] = STATE(2303), - [sym_generic_type] = STATE(2303), - [sym_function_type] = STATE(2303), - [sym_send_statement] = STATE(4478), - [aux_sym_map_init_expression_repeat1] = STATE(274), - [aux_sym_select_expression_repeat1] = STATE(112), - [sym_identifier] = ACTIONS(701), + [sym_plain_type] = STATE(4297), + [sym__plain_type_without_special] = STATE(2360), + [sym_anon_struct_type] = STATE(2362), + [sym_multi_return_type] = STATE(2360), + [sym_result_type] = STATE(2360), + [sym_option_type] = STATE(2360), + [sym_qualified_type] = STATE(3460), + [sym_fixed_array_type] = STATE(2362), + [sym_array_type] = STATE(2362), + [sym_pointer_type] = STATE(2362), + [sym_wrong_pointer_type] = STATE(2362), + [sym_map_type] = STATE(2362), + [sym_channel_type] = STATE(2362), + [sym_shared_type] = STATE(2362), + [sym_thread_type] = STATE(2362), + [sym_atomic_type] = STATE(2362), + [sym_generic_type] = STATE(2362), + [sym_function_type] = STATE(2362), + [sym_send_statement] = STATE(4507), + [aux_sym_map_init_expression_repeat1] = STATE(242), + [aux_sym_select_expression_repeat1] = STATE(125), + [sym_identifier] = ACTIONS(767), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(703), - [anon_sym_LBRACE] = ACTIONS(705), - [anon_sym_RBRACE] = ACTIONS(785), - [anon_sym_LPAREN] = ACTIONS(709), - [anon_sym_fn] = ACTIONS(711), - [anon_sym_PLUS] = ACTIONS(713), - [anon_sym_DASH] = ACTIONS(713), - [anon_sym_STAR] = ACTIONS(715), - [anon_sym_struct] = ACTIONS(717), + [anon_sym_DOT] = ACTIONS(769), + [anon_sym_LBRACE] = ACTIONS(771), + [anon_sym_RBRACE] = ACTIONS(871), + [anon_sym_LPAREN] = ACTIONS(775), + [anon_sym_fn] = ACTIONS(777), + [anon_sym_PLUS] = ACTIONS(779), + [anon_sym_DASH] = ACTIONS(779), + [anon_sym_STAR] = ACTIONS(781), + [anon_sym_struct] = ACTIONS(783), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(719), - [anon_sym_go] = ACTIONS(721), - [anon_sym_spawn] = ACTIONS(723), - [anon_sym_json_DOTdecode] = ACTIONS(725), - [anon_sym_LBRACK2] = ACTIONS(727), - [anon_sym_TILDE] = ACTIONS(713), - [anon_sym_CARET] = ACTIONS(713), - [anon_sym_AMP] = ACTIONS(729), - [anon_sym_LT_DASH] = ACTIONS(731), - [sym_none] = ACTIONS(733), - [sym_true] = ACTIONS(733), - [sym_false] = ACTIONS(733), - [sym_nil] = ACTIONS(733), - [anon_sym_if] = ACTIONS(735), - [anon_sym_else] = ACTIONS(737), - [anon_sym_DOLLARif] = ACTIONS(739), - [anon_sym_match] = ACTIONS(741), - [anon_sym_select] = ACTIONS(743), - [anon_sym_lock] = ACTIONS(745), - [anon_sym_rlock] = ACTIONS(745), - [anon_sym_unsafe] = ACTIONS(747), - [anon_sym_sql] = ACTIONS(749), - [sym_int_literal] = ACTIONS(733), - [sym_float_literal] = ACTIONS(751), - [sym_rune_literal] = ACTIONS(751), - [sym_pseudo_compile_time_identifier] = ACTIONS(753), + [anon_sym_BANG] = ACTIONS(785), + [anon_sym_go] = ACTIONS(787), + [anon_sym_spawn] = ACTIONS(789), + [anon_sym_json_DOTdecode] = ACTIONS(791), + [anon_sym_LBRACK2] = ACTIONS(793), + [anon_sym_TILDE] = ACTIONS(779), + [anon_sym_CARET] = ACTIONS(779), + [anon_sym_AMP] = ACTIONS(795), + [anon_sym_LT_DASH] = ACTIONS(797), + [sym_none] = ACTIONS(799), + [sym_true] = ACTIONS(799), + [sym_false] = ACTIONS(799), + [sym_nil] = ACTIONS(799), + [anon_sym_if] = ACTIONS(801), + [anon_sym_else] = ACTIONS(803), + [anon_sym_DOLLARif] = ACTIONS(805), + [anon_sym_match] = ACTIONS(807), + [anon_sym_select] = ACTIONS(809), + [anon_sym_lock] = ACTIONS(811), + [anon_sym_rlock] = ACTIONS(811), + [anon_sym_unsafe] = ACTIONS(813), + [anon_sym_sql] = ACTIONS(815), + [sym_int_literal] = ACTIONS(799), + [sym_float_literal] = ACTIONS(817), + [sym_rune_literal] = ACTIONS(817), + [sym_pseudo_compile_time_identifier] = ACTIONS(819), [anon_sym_shared] = ACTIONS(83), [anon_sym_map_LBRACK] = ACTIONS(85), [anon_sym_chan] = ACTIONS(87), [anon_sym_thread] = ACTIONS(89), [anon_sym_atomic] = ACTIONS(91), - [sym___double_quote] = ACTIONS(755), - [sym___single_quote] = ACTIONS(757), - [sym___c_double_quote] = ACTIONS(759), - [sym___c_single_quote] = ACTIONS(761), - [sym___r_double_quote] = ACTIONS(763), - [sym___r_single_quote] = ACTIONS(765), + [sym___double_quote] = ACTIONS(821), + [sym___single_quote] = ACTIONS(823), + [sym___c_double_quote] = ACTIONS(825), + [sym___c_single_quote] = ACTIONS(827), + [sym___r_double_quote] = ACTIONS(829), + [sym___r_single_quote] = ACTIONS(831), }, - [97] = { - [sym_line_comment] = STATE(97), - [sym_block_comment] = STATE(97), - [sym__expression] = STATE(2588), - [sym__expression_without_blocks] = STATE(1902), - [sym__expression_with_blocks] = STATE(2870), - [sym_inc_expression] = STATE(2032), - [sym_dec_expression] = STATE(2032), - [sym_or_block_expression] = STATE(2032), - [sym_option_propagation_expression] = STATE(2032), - [sym_result_propagation_expression] = STATE(2032), - [sym_anon_struct_value_expression] = STATE(2868), - [sym_go_expression] = STATE(2032), - [sym_spawn_expression] = STATE(2032), - [sym_parenthesized_expression] = STATE(2032), - [sym_call_expression] = STATE(2032), - [sym_type_initializer] = STATE(2868), - [sym_function_literal] = STATE(2032), - [sym_reference_expression] = STATE(1914), - [sym_type_reference_expression] = STATE(3541), - [sym_unary_expression] = STATE(2032), - [sym_receive_expression] = STATE(2032), - [sym_binary_expression] = STATE(2032), - [sym_as_type_cast_expression] = STATE(2032), - [sym__max_group] = STATE(2032), - [sym_literal] = STATE(2027), - [sym_map_init_expression] = STATE(2868), - [sym_map_keyed_element] = STATE(2001), - [sym_array_creation] = STATE(2032), - [sym_fixed_array_creation] = STATE(2032), - [sym_selector_expression] = STATE(2032), - [sym_index_expression] = STATE(2032), - [sym_slice_expression] = STATE(2032), - [sym_if_expression] = STATE(2868), - [sym_compile_time_if_expression] = STATE(2868), - [sym_is_expression] = STATE(2032), - [sym_in_expression] = STATE(2032), - [sym_enum_fetch] = STATE(2032), - [sym_match_expression] = STATE(2868), - [sym_select_expression] = STATE(2868), - [sym_select_arm] = STATE(2139), - [sym_select_arm_statement] = STATE(4161), - [sym_select_var_declaration] = STATE(4478), - [sym_select_else_arn_clause] = STATE(4348), - [sym_lock_expression] = STATE(2868), - [sym_unsafe_expression] = STATE(2868), - [sym_sql_expression] = STATE(2868), - [sym_c_string_literal] = STATE(2026), - [sym_raw_string_literal] = STATE(2026), - [sym_interpreted_string_literal] = STATE(2026), - [sym_mutability_modifiers] = STATE(635), - [sym_mutable_identifier] = STATE(3928), - [sym_identifier_list] = STATE(4484), + [109] = { + [sym_line_comment] = STATE(109), + [sym_block_comment] = STATE(109), + [sym__expression] = STATE(2586), + [sym__expression_without_blocks] = STATE(1903), + [sym__expression_with_blocks] = STATE(2882), + [sym_inc_expression] = STATE(2035), + [sym_dec_expression] = STATE(2035), + [sym_or_block_expression] = STATE(2035), + [sym_option_propagation_expression] = STATE(2035), + [sym_result_propagation_expression] = STATE(2035), + [sym_anon_struct_value_expression] = STATE(2877), + [sym_go_expression] = STATE(2035), + [sym_spawn_expression] = STATE(2035), + [sym_parenthesized_expression] = STATE(2035), + [sym_call_expression] = STATE(2035), + [sym_type_initializer] = STATE(2877), + [sym_function_literal] = STATE(2035), + [sym_reference_expression] = STATE(1944), + [sym_type_reference_expression] = STATE(3460), + [sym_unary_expression] = STATE(2035), + [sym_receive_expression] = STATE(2035), + [sym_binary_expression] = STATE(2035), + [sym_as_type_cast_expression] = STATE(2035), + [sym__max_group] = STATE(2035), + [sym_literal] = STATE(2030), + [sym_map_init_expression] = STATE(2877), + [sym_map_keyed_element] = STATE(2004), + [sym_array_creation] = STATE(2035), + [sym_fixed_array_creation] = STATE(2035), + [sym_selector_expression] = STATE(2035), + [sym_index_expression] = STATE(2035), + [sym_slice_expression] = STATE(2035), + [sym_if_expression] = STATE(2877), + [sym_compile_time_if_expression] = STATE(2877), + [sym_is_expression] = STATE(2035), + [sym_in_expression] = STATE(2035), + [sym_enum_fetch] = STATE(2035), + [sym_match_expression] = STATE(2877), + [sym_select_expression] = STATE(2877), + [sym_select_arm] = STATE(2140), + [sym_select_arm_statement] = STATE(4150), + [sym_select_var_declaration] = STATE(4507), + [sym_select_else_arn_clause] = STATE(4606), + [sym_lock_expression] = STATE(2877), + [sym_unsafe_expression] = STATE(2877), + [sym_sql_expression] = STATE(2877), + [sym_c_string_literal] = STATE(2029), + [sym_raw_string_literal] = STATE(2029), + [sym_interpreted_string_literal] = STATE(2029), + [sym_mutability_modifiers] = STATE(641), + [sym_mutable_identifier] = STATE(3847), + [sym_identifier_list] = STATE(4511), [sym_expression_without_blocks_list] = STATE(3279), - [sym_plain_type] = STATE(4094), - [sym__plain_type_without_special] = STATE(2302), - [sym_anon_struct_type] = STATE(2303), - [sym_multi_return_type] = STATE(2302), - [sym_result_type] = STATE(2302), - [sym_option_type] = STATE(2302), - [sym_qualified_type] = STATE(3541), - [sym_fixed_array_type] = STATE(2303), - [sym_array_type] = STATE(2303), - [sym_pointer_type] = STATE(2303), - [sym_wrong_pointer_type] = STATE(2303), - [sym_map_type] = STATE(2303), - [sym_channel_type] = STATE(2303), - [sym_shared_type] = STATE(2303), - [sym_thread_type] = STATE(2303), - [sym_atomic_type] = STATE(2303), - [sym_generic_type] = STATE(2303), - [sym_function_type] = STATE(2303), - [sym_send_statement] = STATE(4478), - [aux_sym_map_init_expression_repeat1] = STATE(274), - [aux_sym_select_expression_repeat1] = STATE(111), - [sym_identifier] = ACTIONS(701), + [sym_plain_type] = STATE(4297), + [sym__plain_type_without_special] = STATE(2360), + [sym_anon_struct_type] = STATE(2362), + [sym_multi_return_type] = STATE(2360), + [sym_result_type] = STATE(2360), + [sym_option_type] = STATE(2360), + [sym_qualified_type] = STATE(3460), + [sym_fixed_array_type] = STATE(2362), + [sym_array_type] = STATE(2362), + [sym_pointer_type] = STATE(2362), + [sym_wrong_pointer_type] = STATE(2362), + [sym_map_type] = STATE(2362), + [sym_channel_type] = STATE(2362), + [sym_shared_type] = STATE(2362), + [sym_thread_type] = STATE(2362), + [sym_atomic_type] = STATE(2362), + [sym_generic_type] = STATE(2362), + [sym_function_type] = STATE(2362), + [sym_send_statement] = STATE(4507), + [aux_sym_map_init_expression_repeat1] = STATE(242), + [aux_sym_select_expression_repeat1] = STATE(145), + [sym_identifier] = ACTIONS(767), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(703), - [anon_sym_LBRACE] = ACTIONS(705), - [anon_sym_RBRACE] = ACTIONS(787), - [anon_sym_LPAREN] = ACTIONS(709), - [anon_sym_fn] = ACTIONS(711), - [anon_sym_PLUS] = ACTIONS(713), - [anon_sym_DASH] = ACTIONS(713), - [anon_sym_STAR] = ACTIONS(715), - [anon_sym_struct] = ACTIONS(717), + [anon_sym_DOT] = ACTIONS(769), + [anon_sym_LBRACE] = ACTIONS(771), + [anon_sym_RBRACE] = ACTIONS(873), + [anon_sym_LPAREN] = ACTIONS(775), + [anon_sym_fn] = ACTIONS(777), + [anon_sym_PLUS] = ACTIONS(779), + [anon_sym_DASH] = ACTIONS(779), + [anon_sym_STAR] = ACTIONS(781), + [anon_sym_struct] = ACTIONS(783), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(719), - [anon_sym_go] = ACTIONS(721), - [anon_sym_spawn] = ACTIONS(723), - [anon_sym_json_DOTdecode] = ACTIONS(725), - [anon_sym_LBRACK2] = ACTIONS(727), - [anon_sym_TILDE] = ACTIONS(713), - [anon_sym_CARET] = ACTIONS(713), - [anon_sym_AMP] = ACTIONS(729), - [anon_sym_LT_DASH] = ACTIONS(731), - [sym_none] = ACTIONS(733), - [sym_true] = ACTIONS(733), - [sym_false] = ACTIONS(733), - [sym_nil] = ACTIONS(733), - [anon_sym_if] = ACTIONS(735), - [anon_sym_else] = ACTIONS(737), - [anon_sym_DOLLARif] = ACTIONS(739), - [anon_sym_match] = ACTIONS(741), - [anon_sym_select] = ACTIONS(743), - [anon_sym_lock] = ACTIONS(745), - [anon_sym_rlock] = ACTIONS(745), - [anon_sym_unsafe] = ACTIONS(747), - [anon_sym_sql] = ACTIONS(749), - [sym_int_literal] = ACTIONS(733), - [sym_float_literal] = ACTIONS(751), - [sym_rune_literal] = ACTIONS(751), - [sym_pseudo_compile_time_identifier] = ACTIONS(753), + [anon_sym_BANG] = ACTIONS(785), + [anon_sym_go] = ACTIONS(787), + [anon_sym_spawn] = ACTIONS(789), + [anon_sym_json_DOTdecode] = ACTIONS(791), + [anon_sym_LBRACK2] = ACTIONS(793), + [anon_sym_TILDE] = ACTIONS(779), + [anon_sym_CARET] = ACTIONS(779), + [anon_sym_AMP] = ACTIONS(795), + [anon_sym_LT_DASH] = ACTIONS(797), + [sym_none] = ACTIONS(799), + [sym_true] = ACTIONS(799), + [sym_false] = ACTIONS(799), + [sym_nil] = ACTIONS(799), + [anon_sym_if] = ACTIONS(801), + [anon_sym_else] = ACTIONS(803), + [anon_sym_DOLLARif] = ACTIONS(805), + [anon_sym_match] = ACTIONS(807), + [anon_sym_select] = ACTIONS(809), + [anon_sym_lock] = ACTIONS(811), + [anon_sym_rlock] = ACTIONS(811), + [anon_sym_unsafe] = ACTIONS(813), + [anon_sym_sql] = ACTIONS(815), + [sym_int_literal] = ACTIONS(799), + [sym_float_literal] = ACTIONS(817), + [sym_rune_literal] = ACTIONS(817), + [sym_pseudo_compile_time_identifier] = ACTIONS(819), [anon_sym_shared] = ACTIONS(83), [anon_sym_map_LBRACK] = ACTIONS(85), [anon_sym_chan] = ACTIONS(87), [anon_sym_thread] = ACTIONS(89), [anon_sym_atomic] = ACTIONS(91), - [sym___double_quote] = ACTIONS(755), - [sym___single_quote] = ACTIONS(757), - [sym___c_double_quote] = ACTIONS(759), - [sym___c_single_quote] = ACTIONS(761), - [sym___r_double_quote] = ACTIONS(763), - [sym___r_single_quote] = ACTIONS(765), + [sym___double_quote] = ACTIONS(821), + [sym___single_quote] = ACTIONS(823), + [sym___c_double_quote] = ACTIONS(825), + [sym___c_single_quote] = ACTIONS(827), + [sym___r_double_quote] = ACTIONS(829), + [sym___r_single_quote] = ACTIONS(831), }, - [98] = { - [sym_line_comment] = STATE(98), - [sym_block_comment] = STATE(98), - [sym__expression] = STATE(2588), - [sym__expression_without_blocks] = STATE(1902), - [sym__expression_with_blocks] = STATE(2870), - [sym_inc_expression] = STATE(2032), - [sym_dec_expression] = STATE(2032), - [sym_or_block_expression] = STATE(2032), - [sym_option_propagation_expression] = STATE(2032), - [sym_result_propagation_expression] = STATE(2032), - [sym_anon_struct_value_expression] = STATE(2868), - [sym_go_expression] = STATE(2032), - [sym_spawn_expression] = STATE(2032), - [sym_parenthesized_expression] = STATE(2032), - [sym_call_expression] = STATE(2032), - [sym_type_initializer] = STATE(2868), - [sym_function_literal] = STATE(2032), - [sym_reference_expression] = STATE(1914), - [sym_type_reference_expression] = STATE(3541), - [sym_unary_expression] = STATE(2032), - [sym_receive_expression] = STATE(2032), - [sym_binary_expression] = STATE(2032), - [sym_as_type_cast_expression] = STATE(2032), - [sym__max_group] = STATE(2032), - [sym_literal] = STATE(2027), - [sym_map_init_expression] = STATE(2868), - [sym_map_keyed_element] = STATE(2001), - [sym_array_creation] = STATE(2032), - [sym_fixed_array_creation] = STATE(2032), - [sym_selector_expression] = STATE(2032), - [sym_index_expression] = STATE(2032), - [sym_slice_expression] = STATE(2032), - [sym_if_expression] = STATE(2868), - [sym_compile_time_if_expression] = STATE(2868), - [sym_is_expression] = STATE(2032), - [sym_in_expression] = STATE(2032), - [sym_enum_fetch] = STATE(2032), - [sym_match_expression] = STATE(2868), - [sym_select_expression] = STATE(2868), - [sym_select_arm] = STATE(2139), - [sym_select_arm_statement] = STATE(4161), - [sym_select_var_declaration] = STATE(4478), - [sym_select_else_arn_clause] = STATE(4548), - [sym_lock_expression] = STATE(2868), - [sym_unsafe_expression] = STATE(2868), - [sym_sql_expression] = STATE(2868), - [sym_c_string_literal] = STATE(2026), - [sym_raw_string_literal] = STATE(2026), - [sym_interpreted_string_literal] = STATE(2026), - [sym_mutability_modifiers] = STATE(635), - [sym_mutable_identifier] = STATE(3928), - [sym_identifier_list] = STATE(4484), + [110] = { + [sym_line_comment] = STATE(110), + [sym_block_comment] = STATE(110), + [sym__expression] = STATE(2780), + [sym__expression_without_blocks] = STATE(1903), + [sym__expression_with_blocks] = STATE(2882), + [sym_inc_expression] = STATE(2035), + [sym_dec_expression] = STATE(2035), + [sym_or_block_expression] = STATE(2035), + [sym_option_propagation_expression] = STATE(2035), + [sym_result_propagation_expression] = STATE(2035), + [sym_anon_struct_value_expression] = STATE(2877), + [sym_go_expression] = STATE(2035), + [sym_spawn_expression] = STATE(2035), + [sym_parenthesized_expression] = STATE(2035), + [sym_call_expression] = STATE(2035), + [sym_type_initializer] = STATE(2877), + [sym_function_literal] = STATE(2035), + [sym_reference_expression] = STATE(1944), + [sym_type_reference_expression] = STATE(3460), + [sym_unary_expression] = STATE(2035), + [sym_receive_expression] = STATE(2035), + [sym_binary_expression] = STATE(2035), + [sym_as_type_cast_expression] = STATE(2035), + [sym__max_group] = STATE(2035), + [sym_literal] = STATE(2030), + [sym_map_init_expression] = STATE(2877), + [sym_array_creation] = STATE(2035), + [sym_fixed_array_creation] = STATE(2035), + [sym_selector_expression] = STATE(2035), + [sym_index_expression] = STATE(2035), + [sym_slice_expression] = STATE(2035), + [sym_if_expression] = STATE(2877), + [sym_compile_time_if_expression] = STATE(2877), + [sym_is_expression] = STATE(2035), + [sym_in_expression] = STATE(2035), + [sym_enum_fetch] = STATE(2035), + [sym_match_expression] = STATE(2877), + [sym_select_expression] = STATE(2877), + [sym_select_arm] = STATE(2140), + [sym_select_arm_statement] = STATE(4150), + [sym_select_var_declaration] = STATE(4507), + [sym_select_else_arn_clause] = STATE(4326), + [sym_lock_expression] = STATE(2877), + [sym_unsafe_expression] = STATE(2877), + [sym_sql_expression] = STATE(2877), + [sym_c_string_literal] = STATE(2029), + [sym_raw_string_literal] = STATE(2029), + [sym_interpreted_string_literal] = STATE(2029), + [sym_mutability_modifiers] = STATE(641), + [sym_mutable_identifier] = STATE(3847), + [sym_identifier_list] = STATE(4511), [sym_expression_without_blocks_list] = STATE(3279), - [sym_plain_type] = STATE(4094), - [sym__plain_type_without_special] = STATE(2302), - [sym_anon_struct_type] = STATE(2303), - [sym_multi_return_type] = STATE(2302), - [sym_result_type] = STATE(2302), - [sym_option_type] = STATE(2302), - [sym_qualified_type] = STATE(3541), - [sym_fixed_array_type] = STATE(2303), - [sym_array_type] = STATE(2303), - [sym_pointer_type] = STATE(2303), - [sym_wrong_pointer_type] = STATE(2303), - [sym_map_type] = STATE(2303), - [sym_channel_type] = STATE(2303), - [sym_shared_type] = STATE(2303), - [sym_thread_type] = STATE(2303), - [sym_atomic_type] = STATE(2303), - [sym_generic_type] = STATE(2303), - [sym_function_type] = STATE(2303), - [sym_send_statement] = STATE(4478), - [aux_sym_map_init_expression_repeat1] = STATE(274), - [aux_sym_select_expression_repeat1] = STATE(118), - [sym_identifier] = ACTIONS(701), + [sym_plain_type] = STATE(4297), + [sym__plain_type_without_special] = STATE(2360), + [sym_anon_struct_type] = STATE(2362), + [sym_multi_return_type] = STATE(2360), + [sym_result_type] = STATE(2360), + [sym_option_type] = STATE(2360), + [sym_qualified_type] = STATE(3460), + [sym_fixed_array_type] = STATE(2362), + [sym_array_type] = STATE(2362), + [sym_pointer_type] = STATE(2362), + [sym_wrong_pointer_type] = STATE(2362), + [sym_map_type] = STATE(2362), + [sym_channel_type] = STATE(2362), + [sym_shared_type] = STATE(2362), + [sym_thread_type] = STATE(2362), + [sym_atomic_type] = STATE(2362), + [sym_generic_type] = STATE(2362), + [sym_function_type] = STATE(2362), + [sym_send_statement] = STATE(4507), + [aux_sym_select_expression_repeat1] = STATE(128), + [sym_identifier] = ACTIONS(767), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(703), - [anon_sym_LBRACE] = ACTIONS(705), - [anon_sym_RBRACE] = ACTIONS(789), - [anon_sym_LPAREN] = ACTIONS(709), - [anon_sym_fn] = ACTIONS(711), - [anon_sym_PLUS] = ACTIONS(713), - [anon_sym_DASH] = ACTIONS(713), - [anon_sym_STAR] = ACTIONS(715), - [anon_sym_struct] = ACTIONS(717), + [anon_sym_DOT] = ACTIONS(769), + [anon_sym_LBRACE] = ACTIONS(771), + [anon_sym_RBRACE] = ACTIONS(875), + [anon_sym_LPAREN] = ACTIONS(775), + [anon_sym_fn] = ACTIONS(777), + [anon_sym_PLUS] = ACTIONS(779), + [anon_sym_DASH] = ACTIONS(779), + [anon_sym_STAR] = ACTIONS(781), + [anon_sym_struct] = ACTIONS(783), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(719), - [anon_sym_go] = ACTIONS(721), - [anon_sym_spawn] = ACTIONS(723), - [anon_sym_json_DOTdecode] = ACTIONS(725), - [anon_sym_LBRACK2] = ACTIONS(727), - [anon_sym_TILDE] = ACTIONS(713), - [anon_sym_CARET] = ACTIONS(713), - [anon_sym_AMP] = ACTIONS(729), - [anon_sym_LT_DASH] = ACTIONS(731), - [sym_none] = ACTIONS(733), - [sym_true] = ACTIONS(733), - [sym_false] = ACTIONS(733), - [sym_nil] = ACTIONS(733), - [anon_sym_if] = ACTIONS(735), - [anon_sym_else] = ACTIONS(737), - [anon_sym_DOLLARif] = ACTIONS(739), - [anon_sym_match] = ACTIONS(741), - [anon_sym_select] = ACTIONS(743), - [anon_sym_lock] = ACTIONS(745), - [anon_sym_rlock] = ACTIONS(745), - [anon_sym_unsafe] = ACTIONS(747), - [anon_sym_sql] = ACTIONS(749), - [sym_int_literal] = ACTIONS(733), - [sym_float_literal] = ACTIONS(751), - [sym_rune_literal] = ACTIONS(751), - [sym_pseudo_compile_time_identifier] = ACTIONS(753), + [anon_sym_BANG] = ACTIONS(785), + [anon_sym_go] = ACTIONS(787), + [anon_sym_spawn] = ACTIONS(789), + [anon_sym_json_DOTdecode] = ACTIONS(791), + [anon_sym_LBRACK2] = ACTIONS(793), + [anon_sym_TILDE] = ACTIONS(779), + [anon_sym_CARET] = ACTIONS(779), + [anon_sym_AMP] = ACTIONS(795), + [anon_sym_LT_DASH] = ACTIONS(797), + [sym_none] = ACTIONS(799), + [sym_true] = ACTIONS(799), + [sym_false] = ACTIONS(799), + [sym_nil] = ACTIONS(799), + [anon_sym_if] = ACTIONS(801), + [anon_sym_else] = ACTIONS(803), + [anon_sym_DOLLARif] = ACTIONS(805), + [anon_sym_match] = ACTIONS(807), + [anon_sym_select] = ACTIONS(809), + [anon_sym_lock] = ACTIONS(811), + [anon_sym_rlock] = ACTIONS(811), + [anon_sym_unsafe] = ACTIONS(813), + [anon_sym_sql] = ACTIONS(815), + [sym_int_literal] = ACTIONS(799), + [sym_float_literal] = ACTIONS(817), + [sym_rune_literal] = ACTIONS(817), + [sym_pseudo_compile_time_identifier] = ACTIONS(819), [anon_sym_shared] = ACTIONS(83), [anon_sym_map_LBRACK] = ACTIONS(85), [anon_sym_chan] = ACTIONS(87), [anon_sym_thread] = ACTIONS(89), [anon_sym_atomic] = ACTIONS(91), - [sym___double_quote] = ACTIONS(755), - [sym___single_quote] = ACTIONS(757), - [sym___c_double_quote] = ACTIONS(759), - [sym___c_single_quote] = ACTIONS(761), - [sym___r_double_quote] = ACTIONS(763), - [sym___r_single_quote] = ACTIONS(765), + [sym___double_quote] = ACTIONS(821), + [sym___single_quote] = ACTIONS(823), + [sym___c_double_quote] = ACTIONS(825), + [sym___c_single_quote] = ACTIONS(827), + [sym___r_double_quote] = ACTIONS(829), + [sym___r_single_quote] = ACTIONS(831), }, - [99] = { - [sym_line_comment] = STATE(99), - [sym_block_comment] = STATE(99), - [sym__expression] = STATE(2588), - [sym__expression_without_blocks] = STATE(1902), - [sym__expression_with_blocks] = STATE(2870), - [sym_inc_expression] = STATE(2032), - [sym_dec_expression] = STATE(2032), - [sym_or_block_expression] = STATE(2032), - [sym_option_propagation_expression] = STATE(2032), - [sym_result_propagation_expression] = STATE(2032), - [sym_anon_struct_value_expression] = STATE(2868), - [sym_go_expression] = STATE(2032), - [sym_spawn_expression] = STATE(2032), - [sym_parenthesized_expression] = STATE(2032), - [sym_call_expression] = STATE(2032), - [sym_type_initializer] = STATE(2868), - [sym_function_literal] = STATE(2032), - [sym_reference_expression] = STATE(1914), - [sym_type_reference_expression] = STATE(3541), - [sym_unary_expression] = STATE(2032), - [sym_receive_expression] = STATE(2032), - [sym_binary_expression] = STATE(2032), - [sym_as_type_cast_expression] = STATE(2032), - [sym__max_group] = STATE(2032), - [sym_literal] = STATE(2027), - [sym_map_init_expression] = STATE(2868), - [sym_map_keyed_element] = STATE(2001), - [sym_array_creation] = STATE(2032), - [sym_fixed_array_creation] = STATE(2032), - [sym_selector_expression] = STATE(2032), - [sym_index_expression] = STATE(2032), - [sym_slice_expression] = STATE(2032), - [sym_if_expression] = STATE(2868), - [sym_compile_time_if_expression] = STATE(2868), - [sym_is_expression] = STATE(2032), - [sym_in_expression] = STATE(2032), - [sym_enum_fetch] = STATE(2032), - [sym_match_expression] = STATE(2868), - [sym_select_expression] = STATE(2868), - [sym_select_arm] = STATE(2139), - [sym_select_arm_statement] = STATE(4161), - [sym_select_var_declaration] = STATE(4478), - [sym_select_else_arn_clause] = STATE(4590), - [sym_lock_expression] = STATE(2868), - [sym_unsafe_expression] = STATE(2868), - [sym_sql_expression] = STATE(2868), - [sym_c_string_literal] = STATE(2026), - [sym_raw_string_literal] = STATE(2026), - [sym_interpreted_string_literal] = STATE(2026), - [sym_mutability_modifiers] = STATE(635), - [sym_mutable_identifier] = STATE(3928), - [sym_identifier_list] = STATE(4484), + [111] = { + [sym_line_comment] = STATE(111), + [sym_block_comment] = STATE(111), + [sym__expression] = STATE(2780), + [sym__expression_without_blocks] = STATE(1903), + [sym__expression_with_blocks] = STATE(2882), + [sym_inc_expression] = STATE(2035), + [sym_dec_expression] = STATE(2035), + [sym_or_block_expression] = STATE(2035), + [sym_option_propagation_expression] = STATE(2035), + [sym_result_propagation_expression] = STATE(2035), + [sym_anon_struct_value_expression] = STATE(2877), + [sym_go_expression] = STATE(2035), + [sym_spawn_expression] = STATE(2035), + [sym_parenthesized_expression] = STATE(2035), + [sym_call_expression] = STATE(2035), + [sym_type_initializer] = STATE(2877), + [sym_function_literal] = STATE(2035), + [sym_reference_expression] = STATE(1944), + [sym_type_reference_expression] = STATE(3460), + [sym_unary_expression] = STATE(2035), + [sym_receive_expression] = STATE(2035), + [sym_binary_expression] = STATE(2035), + [sym_as_type_cast_expression] = STATE(2035), + [sym__max_group] = STATE(2035), + [sym_literal] = STATE(2030), + [sym_map_init_expression] = STATE(2877), + [sym_array_creation] = STATE(2035), + [sym_fixed_array_creation] = STATE(2035), + [sym_selector_expression] = STATE(2035), + [sym_index_expression] = STATE(2035), + [sym_slice_expression] = STATE(2035), + [sym_if_expression] = STATE(2877), + [sym_compile_time_if_expression] = STATE(2877), + [sym_is_expression] = STATE(2035), + [sym_in_expression] = STATE(2035), + [sym_enum_fetch] = STATE(2035), + [sym_match_expression] = STATE(2877), + [sym_select_expression] = STATE(2877), + [sym_select_arm] = STATE(2140), + [sym_select_arm_statement] = STATE(4150), + [sym_select_var_declaration] = STATE(4507), + [sym_select_else_arn_clause] = STATE(4335), + [sym_lock_expression] = STATE(2877), + [sym_unsafe_expression] = STATE(2877), + [sym_sql_expression] = STATE(2877), + [sym_c_string_literal] = STATE(2029), + [sym_raw_string_literal] = STATE(2029), + [sym_interpreted_string_literal] = STATE(2029), + [sym_mutability_modifiers] = STATE(641), + [sym_mutable_identifier] = STATE(3847), + [sym_identifier_list] = STATE(4511), [sym_expression_without_blocks_list] = STATE(3279), - [sym_plain_type] = STATE(4094), - [sym__plain_type_without_special] = STATE(2302), - [sym_anon_struct_type] = STATE(2303), - [sym_multi_return_type] = STATE(2302), - [sym_result_type] = STATE(2302), - [sym_option_type] = STATE(2302), - [sym_qualified_type] = STATE(3541), - [sym_fixed_array_type] = STATE(2303), - [sym_array_type] = STATE(2303), - [sym_pointer_type] = STATE(2303), - [sym_wrong_pointer_type] = STATE(2303), - [sym_map_type] = STATE(2303), - [sym_channel_type] = STATE(2303), - [sym_shared_type] = STATE(2303), - [sym_thread_type] = STATE(2303), - [sym_atomic_type] = STATE(2303), - [sym_generic_type] = STATE(2303), - [sym_function_type] = STATE(2303), - [sym_send_statement] = STATE(4478), - [aux_sym_map_init_expression_repeat1] = STATE(274), - [aux_sym_select_expression_repeat1] = STATE(133), - [sym_identifier] = ACTIONS(701), + [sym_plain_type] = STATE(4297), + [sym__plain_type_without_special] = STATE(2360), + [sym_anon_struct_type] = STATE(2362), + [sym_multi_return_type] = STATE(2360), + [sym_result_type] = STATE(2360), + [sym_option_type] = STATE(2360), + [sym_qualified_type] = STATE(3460), + [sym_fixed_array_type] = STATE(2362), + [sym_array_type] = STATE(2362), + [sym_pointer_type] = STATE(2362), + [sym_wrong_pointer_type] = STATE(2362), + [sym_map_type] = STATE(2362), + [sym_channel_type] = STATE(2362), + [sym_shared_type] = STATE(2362), + [sym_thread_type] = STATE(2362), + [sym_atomic_type] = STATE(2362), + [sym_generic_type] = STATE(2362), + [sym_function_type] = STATE(2362), + [sym_send_statement] = STATE(4507), + [aux_sym_select_expression_repeat1] = STATE(149), + [sym_identifier] = ACTIONS(767), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(703), - [anon_sym_LBRACE] = ACTIONS(705), - [anon_sym_RBRACE] = ACTIONS(791), - [anon_sym_LPAREN] = ACTIONS(709), - [anon_sym_fn] = ACTIONS(711), - [anon_sym_PLUS] = ACTIONS(713), - [anon_sym_DASH] = ACTIONS(713), - [anon_sym_STAR] = ACTIONS(715), - [anon_sym_struct] = ACTIONS(717), + [anon_sym_DOT] = ACTIONS(769), + [anon_sym_LBRACE] = ACTIONS(771), + [anon_sym_RBRACE] = ACTIONS(877), + [anon_sym_LPAREN] = ACTIONS(775), + [anon_sym_fn] = ACTIONS(777), + [anon_sym_PLUS] = ACTIONS(779), + [anon_sym_DASH] = ACTIONS(779), + [anon_sym_STAR] = ACTIONS(781), + [anon_sym_struct] = ACTIONS(783), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(719), - [anon_sym_go] = ACTIONS(721), - [anon_sym_spawn] = ACTIONS(723), - [anon_sym_json_DOTdecode] = ACTIONS(725), - [anon_sym_LBRACK2] = ACTIONS(727), - [anon_sym_TILDE] = ACTIONS(713), - [anon_sym_CARET] = ACTIONS(713), - [anon_sym_AMP] = ACTIONS(729), - [anon_sym_LT_DASH] = ACTIONS(731), - [sym_none] = ACTIONS(733), - [sym_true] = ACTIONS(733), - [sym_false] = ACTIONS(733), - [sym_nil] = ACTIONS(733), - [anon_sym_if] = ACTIONS(735), - [anon_sym_else] = ACTIONS(737), - [anon_sym_DOLLARif] = ACTIONS(739), - [anon_sym_match] = ACTIONS(741), - [anon_sym_select] = ACTIONS(743), - [anon_sym_lock] = ACTIONS(745), - [anon_sym_rlock] = ACTIONS(745), - [anon_sym_unsafe] = ACTIONS(747), - [anon_sym_sql] = ACTIONS(749), - [sym_int_literal] = ACTIONS(733), - [sym_float_literal] = ACTIONS(751), - [sym_rune_literal] = ACTIONS(751), - [sym_pseudo_compile_time_identifier] = ACTIONS(753), + [anon_sym_BANG] = ACTIONS(785), + [anon_sym_go] = ACTIONS(787), + [anon_sym_spawn] = ACTIONS(789), + [anon_sym_json_DOTdecode] = ACTIONS(791), + [anon_sym_LBRACK2] = ACTIONS(793), + [anon_sym_TILDE] = ACTIONS(779), + [anon_sym_CARET] = ACTIONS(779), + [anon_sym_AMP] = ACTIONS(795), + [anon_sym_LT_DASH] = ACTIONS(797), + [sym_none] = ACTIONS(799), + [sym_true] = ACTIONS(799), + [sym_false] = ACTIONS(799), + [sym_nil] = ACTIONS(799), + [anon_sym_if] = ACTIONS(801), + [anon_sym_else] = ACTIONS(803), + [anon_sym_DOLLARif] = ACTIONS(805), + [anon_sym_match] = ACTIONS(807), + [anon_sym_select] = ACTIONS(809), + [anon_sym_lock] = ACTIONS(811), + [anon_sym_rlock] = ACTIONS(811), + [anon_sym_unsafe] = ACTIONS(813), + [anon_sym_sql] = ACTIONS(815), + [sym_int_literal] = ACTIONS(799), + [sym_float_literal] = ACTIONS(817), + [sym_rune_literal] = ACTIONS(817), + [sym_pseudo_compile_time_identifier] = ACTIONS(819), [anon_sym_shared] = ACTIONS(83), [anon_sym_map_LBRACK] = ACTIONS(85), [anon_sym_chan] = ACTIONS(87), [anon_sym_thread] = ACTIONS(89), [anon_sym_atomic] = ACTIONS(91), - [sym___double_quote] = ACTIONS(755), - [sym___single_quote] = ACTIONS(757), - [sym___c_double_quote] = ACTIONS(759), - [sym___c_single_quote] = ACTIONS(761), - [sym___r_double_quote] = ACTIONS(763), - [sym___r_single_quote] = ACTIONS(765), + [sym___double_quote] = ACTIONS(821), + [sym___single_quote] = ACTIONS(823), + [sym___c_double_quote] = ACTIONS(825), + [sym___c_single_quote] = ACTIONS(827), + [sym___r_double_quote] = ACTIONS(829), + [sym___r_single_quote] = ACTIONS(831), }, - [100] = { - [sym_line_comment] = STATE(100), - [sym_block_comment] = STATE(100), - [sym__expression] = STATE(2588), - [sym__expression_without_blocks] = STATE(1902), - [sym__expression_with_blocks] = STATE(2870), - [sym_inc_expression] = STATE(2032), - [sym_dec_expression] = STATE(2032), - [sym_or_block_expression] = STATE(2032), - [sym_option_propagation_expression] = STATE(2032), - [sym_result_propagation_expression] = STATE(2032), - [sym_anon_struct_value_expression] = STATE(2868), - [sym_go_expression] = STATE(2032), - [sym_spawn_expression] = STATE(2032), - [sym_parenthesized_expression] = STATE(2032), - [sym_call_expression] = STATE(2032), - [sym_type_initializer] = STATE(2868), - [sym_function_literal] = STATE(2032), - [sym_reference_expression] = STATE(1914), - [sym_type_reference_expression] = STATE(3541), - [sym_unary_expression] = STATE(2032), - [sym_receive_expression] = STATE(2032), - [sym_binary_expression] = STATE(2032), - [sym_as_type_cast_expression] = STATE(2032), - [sym__max_group] = STATE(2032), - [sym_literal] = STATE(2027), - [sym_map_init_expression] = STATE(2868), - [sym_map_keyed_element] = STATE(2001), - [sym_array_creation] = STATE(2032), - [sym_fixed_array_creation] = STATE(2032), - [sym_selector_expression] = STATE(2032), - [sym_index_expression] = STATE(2032), - [sym_slice_expression] = STATE(2032), - [sym_if_expression] = STATE(2868), - [sym_compile_time_if_expression] = STATE(2868), - [sym_is_expression] = STATE(2032), - [sym_in_expression] = STATE(2032), - [sym_enum_fetch] = STATE(2032), - [sym_match_expression] = STATE(2868), - [sym_select_expression] = STATE(2868), - [sym_select_arm] = STATE(2139), - [sym_select_arm_statement] = STATE(4161), - [sym_select_var_declaration] = STATE(4478), - [sym_select_else_arn_clause] = STATE(4334), - [sym_lock_expression] = STATE(2868), - [sym_unsafe_expression] = STATE(2868), - [sym_sql_expression] = STATE(2868), - [sym_c_string_literal] = STATE(2026), - [sym_raw_string_literal] = STATE(2026), - [sym_interpreted_string_literal] = STATE(2026), - [sym_mutability_modifiers] = STATE(635), - [sym_mutable_identifier] = STATE(3928), - [sym_identifier_list] = STATE(4484), + [112] = { + [sym_line_comment] = STATE(112), + [sym_block_comment] = STATE(112), + [sym__expression] = STATE(2780), + [sym__expression_without_blocks] = STATE(1903), + [sym__expression_with_blocks] = STATE(2882), + [sym_inc_expression] = STATE(2035), + [sym_dec_expression] = STATE(2035), + [sym_or_block_expression] = STATE(2035), + [sym_option_propagation_expression] = STATE(2035), + [sym_result_propagation_expression] = STATE(2035), + [sym_anon_struct_value_expression] = STATE(2877), + [sym_go_expression] = STATE(2035), + [sym_spawn_expression] = STATE(2035), + [sym_parenthesized_expression] = STATE(2035), + [sym_call_expression] = STATE(2035), + [sym_type_initializer] = STATE(2877), + [sym_function_literal] = STATE(2035), + [sym_reference_expression] = STATE(1944), + [sym_type_reference_expression] = STATE(3460), + [sym_unary_expression] = STATE(2035), + [sym_receive_expression] = STATE(2035), + [sym_binary_expression] = STATE(2035), + [sym_as_type_cast_expression] = STATE(2035), + [sym__max_group] = STATE(2035), + [sym_literal] = STATE(2030), + [sym_map_init_expression] = STATE(2877), + [sym_array_creation] = STATE(2035), + [sym_fixed_array_creation] = STATE(2035), + [sym_selector_expression] = STATE(2035), + [sym_index_expression] = STATE(2035), + [sym_slice_expression] = STATE(2035), + [sym_if_expression] = STATE(2877), + [sym_compile_time_if_expression] = STATE(2877), + [sym_is_expression] = STATE(2035), + [sym_in_expression] = STATE(2035), + [sym_enum_fetch] = STATE(2035), + [sym_match_expression] = STATE(2877), + [sym_select_expression] = STATE(2877), + [sym_select_arm] = STATE(2140), + [sym_select_arm_statement] = STATE(4150), + [sym_select_var_declaration] = STATE(4507), + [sym_select_else_arn_clause] = STATE(4639), + [sym_lock_expression] = STATE(2877), + [sym_unsafe_expression] = STATE(2877), + [sym_sql_expression] = STATE(2877), + [sym_c_string_literal] = STATE(2029), + [sym_raw_string_literal] = STATE(2029), + [sym_interpreted_string_literal] = STATE(2029), + [sym_mutability_modifiers] = STATE(641), + [sym_mutable_identifier] = STATE(3847), + [sym_identifier_list] = STATE(4511), [sym_expression_without_blocks_list] = STATE(3279), - [sym_plain_type] = STATE(4094), - [sym__plain_type_without_special] = STATE(2302), - [sym_anon_struct_type] = STATE(2303), - [sym_multi_return_type] = STATE(2302), - [sym_result_type] = STATE(2302), - [sym_option_type] = STATE(2302), - [sym_qualified_type] = STATE(3541), - [sym_fixed_array_type] = STATE(2303), - [sym_array_type] = STATE(2303), - [sym_pointer_type] = STATE(2303), - [sym_wrong_pointer_type] = STATE(2303), - [sym_map_type] = STATE(2303), - [sym_channel_type] = STATE(2303), - [sym_shared_type] = STATE(2303), - [sym_thread_type] = STATE(2303), - [sym_atomic_type] = STATE(2303), - [sym_generic_type] = STATE(2303), - [sym_function_type] = STATE(2303), - [sym_send_statement] = STATE(4478), - [aux_sym_map_init_expression_repeat1] = STATE(274), - [aux_sym_select_expression_repeat1] = STATE(121), - [sym_identifier] = ACTIONS(701), + [sym_plain_type] = STATE(4297), + [sym__plain_type_without_special] = STATE(2360), + [sym_anon_struct_type] = STATE(2362), + [sym_multi_return_type] = STATE(2360), + [sym_result_type] = STATE(2360), + [sym_option_type] = STATE(2360), + [sym_qualified_type] = STATE(3460), + [sym_fixed_array_type] = STATE(2362), + [sym_array_type] = STATE(2362), + [sym_pointer_type] = STATE(2362), + [sym_wrong_pointer_type] = STATE(2362), + [sym_map_type] = STATE(2362), + [sym_channel_type] = STATE(2362), + [sym_shared_type] = STATE(2362), + [sym_thread_type] = STATE(2362), + [sym_atomic_type] = STATE(2362), + [sym_generic_type] = STATE(2362), + [sym_function_type] = STATE(2362), + [sym_send_statement] = STATE(4507), + [aux_sym_select_expression_repeat1] = STATE(129), + [sym_identifier] = ACTIONS(767), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(703), - [anon_sym_LBRACE] = ACTIONS(705), - [anon_sym_RBRACE] = ACTIONS(793), - [anon_sym_LPAREN] = ACTIONS(709), - [anon_sym_fn] = ACTIONS(711), - [anon_sym_PLUS] = ACTIONS(713), - [anon_sym_DASH] = ACTIONS(713), - [anon_sym_STAR] = ACTIONS(715), - [anon_sym_struct] = ACTIONS(717), + [anon_sym_DOT] = ACTIONS(769), + [anon_sym_LBRACE] = ACTIONS(771), + [anon_sym_RBRACE] = ACTIONS(879), + [anon_sym_LPAREN] = ACTIONS(775), + [anon_sym_fn] = ACTIONS(777), + [anon_sym_PLUS] = ACTIONS(779), + [anon_sym_DASH] = ACTIONS(779), + [anon_sym_STAR] = ACTIONS(781), + [anon_sym_struct] = ACTIONS(783), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(719), - [anon_sym_go] = ACTIONS(721), - [anon_sym_spawn] = ACTIONS(723), - [anon_sym_json_DOTdecode] = ACTIONS(725), - [anon_sym_LBRACK2] = ACTIONS(727), - [anon_sym_TILDE] = ACTIONS(713), - [anon_sym_CARET] = ACTIONS(713), - [anon_sym_AMP] = ACTIONS(729), - [anon_sym_LT_DASH] = ACTIONS(731), - [sym_none] = ACTIONS(733), - [sym_true] = ACTIONS(733), - [sym_false] = ACTIONS(733), - [sym_nil] = ACTIONS(733), - [anon_sym_if] = ACTIONS(735), - [anon_sym_else] = ACTIONS(737), - [anon_sym_DOLLARif] = ACTIONS(739), - [anon_sym_match] = ACTIONS(741), - [anon_sym_select] = ACTIONS(743), - [anon_sym_lock] = ACTIONS(745), - [anon_sym_rlock] = ACTIONS(745), - [anon_sym_unsafe] = ACTIONS(747), - [anon_sym_sql] = ACTIONS(749), - [sym_int_literal] = ACTIONS(733), - [sym_float_literal] = ACTIONS(751), - [sym_rune_literal] = ACTIONS(751), - [sym_pseudo_compile_time_identifier] = ACTIONS(753), + [anon_sym_BANG] = ACTIONS(785), + [anon_sym_go] = ACTIONS(787), + [anon_sym_spawn] = ACTIONS(789), + [anon_sym_json_DOTdecode] = ACTIONS(791), + [anon_sym_LBRACK2] = ACTIONS(793), + [anon_sym_TILDE] = ACTIONS(779), + [anon_sym_CARET] = ACTIONS(779), + [anon_sym_AMP] = ACTIONS(795), + [anon_sym_LT_DASH] = ACTIONS(797), + [sym_none] = ACTIONS(799), + [sym_true] = ACTIONS(799), + [sym_false] = ACTIONS(799), + [sym_nil] = ACTIONS(799), + [anon_sym_if] = ACTIONS(801), + [anon_sym_else] = ACTIONS(803), + [anon_sym_DOLLARif] = ACTIONS(805), + [anon_sym_match] = ACTIONS(807), + [anon_sym_select] = ACTIONS(809), + [anon_sym_lock] = ACTIONS(811), + [anon_sym_rlock] = ACTIONS(811), + [anon_sym_unsafe] = ACTIONS(813), + [anon_sym_sql] = ACTIONS(815), + [sym_int_literal] = ACTIONS(799), + [sym_float_literal] = ACTIONS(817), + [sym_rune_literal] = ACTIONS(817), + [sym_pseudo_compile_time_identifier] = ACTIONS(819), [anon_sym_shared] = ACTIONS(83), [anon_sym_map_LBRACK] = ACTIONS(85), [anon_sym_chan] = ACTIONS(87), [anon_sym_thread] = ACTIONS(89), [anon_sym_atomic] = ACTIONS(91), - [sym___double_quote] = ACTIONS(755), - [sym___single_quote] = ACTIONS(757), - [sym___c_double_quote] = ACTIONS(759), - [sym___c_single_quote] = ACTIONS(761), - [sym___r_double_quote] = ACTIONS(763), - [sym___r_single_quote] = ACTIONS(765), + [sym___double_quote] = ACTIONS(821), + [sym___single_quote] = ACTIONS(823), + [sym___c_double_quote] = ACTIONS(825), + [sym___c_single_quote] = ACTIONS(827), + [sym___r_double_quote] = ACTIONS(829), + [sym___r_single_quote] = ACTIONS(831), }, - [101] = { - [sym_line_comment] = STATE(101), - [sym_block_comment] = STATE(101), - [sym__expression] = STATE(2588), - [sym__expression_without_blocks] = STATE(1902), - [sym__expression_with_blocks] = STATE(2870), - [sym_inc_expression] = STATE(2032), - [sym_dec_expression] = STATE(2032), - [sym_or_block_expression] = STATE(2032), - [sym_option_propagation_expression] = STATE(2032), - [sym_result_propagation_expression] = STATE(2032), - [sym_anon_struct_value_expression] = STATE(2868), - [sym_go_expression] = STATE(2032), - [sym_spawn_expression] = STATE(2032), - [sym_parenthesized_expression] = STATE(2032), - [sym_call_expression] = STATE(2032), - [sym_type_initializer] = STATE(2868), - [sym_function_literal] = STATE(2032), - [sym_reference_expression] = STATE(1914), - [sym_type_reference_expression] = STATE(3541), - [sym_unary_expression] = STATE(2032), - [sym_receive_expression] = STATE(2032), - [sym_binary_expression] = STATE(2032), - [sym_as_type_cast_expression] = STATE(2032), - [sym__max_group] = STATE(2032), - [sym_literal] = STATE(2027), - [sym_map_init_expression] = STATE(2868), - [sym_map_keyed_element] = STATE(2001), - [sym_array_creation] = STATE(2032), - [sym_fixed_array_creation] = STATE(2032), - [sym_selector_expression] = STATE(2032), - [sym_index_expression] = STATE(2032), - [sym_slice_expression] = STATE(2032), - [sym_if_expression] = STATE(2868), - [sym_compile_time_if_expression] = STATE(2868), - [sym_is_expression] = STATE(2032), - [sym_in_expression] = STATE(2032), - [sym_enum_fetch] = STATE(2032), - [sym_match_expression] = STATE(2868), - [sym_select_expression] = STATE(2868), - [sym_select_arm] = STATE(2139), - [sym_select_arm_statement] = STATE(4161), - [sym_select_var_declaration] = STATE(4478), - [sym_select_else_arn_clause] = STATE(4590), - [sym_lock_expression] = STATE(2868), - [sym_unsafe_expression] = STATE(2868), - [sym_sql_expression] = STATE(2868), - [sym_c_string_literal] = STATE(2026), - [sym_raw_string_literal] = STATE(2026), - [sym_interpreted_string_literal] = STATE(2026), - [sym_mutability_modifiers] = STATE(635), - [sym_mutable_identifier] = STATE(3928), - [sym_identifier_list] = STATE(4484), + [113] = { + [sym_line_comment] = STATE(113), + [sym_block_comment] = STATE(113), + [sym__expression] = STATE(2780), + [sym__expression_without_blocks] = STATE(1903), + [sym__expression_with_blocks] = STATE(2882), + [sym_inc_expression] = STATE(2035), + [sym_dec_expression] = STATE(2035), + [sym_or_block_expression] = STATE(2035), + [sym_option_propagation_expression] = STATE(2035), + [sym_result_propagation_expression] = STATE(2035), + [sym_anon_struct_value_expression] = STATE(2877), + [sym_go_expression] = STATE(2035), + [sym_spawn_expression] = STATE(2035), + [sym_parenthesized_expression] = STATE(2035), + [sym_call_expression] = STATE(2035), + [sym_type_initializer] = STATE(2877), + [sym_function_literal] = STATE(2035), + [sym_reference_expression] = STATE(1944), + [sym_type_reference_expression] = STATE(3460), + [sym_unary_expression] = STATE(2035), + [sym_receive_expression] = STATE(2035), + [sym_binary_expression] = STATE(2035), + [sym_as_type_cast_expression] = STATE(2035), + [sym__max_group] = STATE(2035), + [sym_literal] = STATE(2030), + [sym_map_init_expression] = STATE(2877), + [sym_array_creation] = STATE(2035), + [sym_fixed_array_creation] = STATE(2035), + [sym_selector_expression] = STATE(2035), + [sym_index_expression] = STATE(2035), + [sym_slice_expression] = STATE(2035), + [sym_if_expression] = STATE(2877), + [sym_compile_time_if_expression] = STATE(2877), + [sym_is_expression] = STATE(2035), + [sym_in_expression] = STATE(2035), + [sym_enum_fetch] = STATE(2035), + [sym_match_expression] = STATE(2877), + [sym_select_expression] = STATE(2877), + [sym_select_arm] = STATE(2140), + [sym_select_arm_statement] = STATE(4150), + [sym_select_var_declaration] = STATE(4507), + [sym_select_else_arn_clause] = STATE(4377), + [sym_lock_expression] = STATE(2877), + [sym_unsafe_expression] = STATE(2877), + [sym_sql_expression] = STATE(2877), + [sym_c_string_literal] = STATE(2029), + [sym_raw_string_literal] = STATE(2029), + [sym_interpreted_string_literal] = STATE(2029), + [sym_mutability_modifiers] = STATE(641), + [sym_mutable_identifier] = STATE(3847), + [sym_identifier_list] = STATE(4511), [sym_expression_without_blocks_list] = STATE(3279), - [sym_plain_type] = STATE(4094), - [sym__plain_type_without_special] = STATE(2302), - [sym_anon_struct_type] = STATE(2303), - [sym_multi_return_type] = STATE(2302), - [sym_result_type] = STATE(2302), - [sym_option_type] = STATE(2302), - [sym_qualified_type] = STATE(3541), - [sym_fixed_array_type] = STATE(2303), - [sym_array_type] = STATE(2303), - [sym_pointer_type] = STATE(2303), - [sym_wrong_pointer_type] = STATE(2303), - [sym_map_type] = STATE(2303), - [sym_channel_type] = STATE(2303), - [sym_shared_type] = STATE(2303), - [sym_thread_type] = STATE(2303), - [sym_atomic_type] = STATE(2303), - [sym_generic_type] = STATE(2303), - [sym_function_type] = STATE(2303), - [sym_send_statement] = STATE(4478), - [aux_sym_map_init_expression_repeat1] = STATE(274), - [aux_sym_select_expression_repeat1] = STATE(133), - [sym_identifier] = ACTIONS(701), + [sym_plain_type] = STATE(4297), + [sym__plain_type_without_special] = STATE(2360), + [sym_anon_struct_type] = STATE(2362), + [sym_multi_return_type] = STATE(2360), + [sym_result_type] = STATE(2360), + [sym_option_type] = STATE(2360), + [sym_qualified_type] = STATE(3460), + [sym_fixed_array_type] = STATE(2362), + [sym_array_type] = STATE(2362), + [sym_pointer_type] = STATE(2362), + [sym_wrong_pointer_type] = STATE(2362), + [sym_map_type] = STATE(2362), + [sym_channel_type] = STATE(2362), + [sym_shared_type] = STATE(2362), + [sym_thread_type] = STATE(2362), + [sym_atomic_type] = STATE(2362), + [sym_generic_type] = STATE(2362), + [sym_function_type] = STATE(2362), + [sym_send_statement] = STATE(4507), + [aux_sym_select_expression_repeat1] = STATE(149), + [sym_identifier] = ACTIONS(767), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(703), - [anon_sym_LBRACE] = ACTIONS(705), - [anon_sym_RBRACE] = ACTIONS(779), - [anon_sym_LPAREN] = ACTIONS(709), - [anon_sym_fn] = ACTIONS(711), - [anon_sym_PLUS] = ACTIONS(713), - [anon_sym_DASH] = ACTIONS(713), - [anon_sym_STAR] = ACTIONS(715), - [anon_sym_struct] = ACTIONS(717), + [anon_sym_DOT] = ACTIONS(769), + [anon_sym_LBRACE] = ACTIONS(771), + [anon_sym_RBRACE] = ACTIONS(881), + [anon_sym_LPAREN] = ACTIONS(775), + [anon_sym_fn] = ACTIONS(777), + [anon_sym_PLUS] = ACTIONS(779), + [anon_sym_DASH] = ACTIONS(779), + [anon_sym_STAR] = ACTIONS(781), + [anon_sym_struct] = ACTIONS(783), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(719), - [anon_sym_go] = ACTIONS(721), - [anon_sym_spawn] = ACTIONS(723), - [anon_sym_json_DOTdecode] = ACTIONS(725), - [anon_sym_LBRACK2] = ACTIONS(727), - [anon_sym_TILDE] = ACTIONS(713), - [anon_sym_CARET] = ACTIONS(713), - [anon_sym_AMP] = ACTIONS(729), - [anon_sym_LT_DASH] = ACTIONS(731), - [sym_none] = ACTIONS(733), - [sym_true] = ACTIONS(733), - [sym_false] = ACTIONS(733), - [sym_nil] = ACTIONS(733), - [anon_sym_if] = ACTIONS(735), - [anon_sym_else] = ACTIONS(737), - [anon_sym_DOLLARif] = ACTIONS(739), - [anon_sym_match] = ACTIONS(741), - [anon_sym_select] = ACTIONS(743), - [anon_sym_lock] = ACTIONS(745), - [anon_sym_rlock] = ACTIONS(745), - [anon_sym_unsafe] = ACTIONS(747), - [anon_sym_sql] = ACTIONS(749), - [sym_int_literal] = ACTIONS(733), - [sym_float_literal] = ACTIONS(751), - [sym_rune_literal] = ACTIONS(751), - [sym_pseudo_compile_time_identifier] = ACTIONS(753), + [anon_sym_BANG] = ACTIONS(785), + [anon_sym_go] = ACTIONS(787), + [anon_sym_spawn] = ACTIONS(789), + [anon_sym_json_DOTdecode] = ACTIONS(791), + [anon_sym_LBRACK2] = ACTIONS(793), + [anon_sym_TILDE] = ACTIONS(779), + [anon_sym_CARET] = ACTIONS(779), + [anon_sym_AMP] = ACTIONS(795), + [anon_sym_LT_DASH] = ACTIONS(797), + [sym_none] = ACTIONS(799), + [sym_true] = ACTIONS(799), + [sym_false] = ACTIONS(799), + [sym_nil] = ACTIONS(799), + [anon_sym_if] = ACTIONS(801), + [anon_sym_else] = ACTIONS(803), + [anon_sym_DOLLARif] = ACTIONS(805), + [anon_sym_match] = ACTIONS(807), + [anon_sym_select] = ACTIONS(809), + [anon_sym_lock] = ACTIONS(811), + [anon_sym_rlock] = ACTIONS(811), + [anon_sym_unsafe] = ACTIONS(813), + [anon_sym_sql] = ACTIONS(815), + [sym_int_literal] = ACTIONS(799), + [sym_float_literal] = ACTIONS(817), + [sym_rune_literal] = ACTIONS(817), + [sym_pseudo_compile_time_identifier] = ACTIONS(819), [anon_sym_shared] = ACTIONS(83), [anon_sym_map_LBRACK] = ACTIONS(85), [anon_sym_chan] = ACTIONS(87), [anon_sym_thread] = ACTIONS(89), [anon_sym_atomic] = ACTIONS(91), - [sym___double_quote] = ACTIONS(755), - [sym___single_quote] = ACTIONS(757), - [sym___c_double_quote] = ACTIONS(759), - [sym___c_single_quote] = ACTIONS(761), - [sym___r_double_quote] = ACTIONS(763), - [sym___r_single_quote] = ACTIONS(765), + [sym___double_quote] = ACTIONS(821), + [sym___single_quote] = ACTIONS(823), + [sym___c_double_quote] = ACTIONS(825), + [sym___c_single_quote] = ACTIONS(827), + [sym___r_double_quote] = ACTIONS(829), + [sym___r_single_quote] = ACTIONS(831), }, - [102] = { - [sym_line_comment] = STATE(102), - [sym_block_comment] = STATE(102), - [sym__expression] = STATE(2588), - [sym__expression_without_blocks] = STATE(1902), - [sym__expression_with_blocks] = STATE(2870), - [sym_inc_expression] = STATE(2032), - [sym_dec_expression] = STATE(2032), - [sym_or_block_expression] = STATE(2032), - [sym_option_propagation_expression] = STATE(2032), - [sym_result_propagation_expression] = STATE(2032), - [sym_anon_struct_value_expression] = STATE(2868), - [sym_go_expression] = STATE(2032), - [sym_spawn_expression] = STATE(2032), - [sym_parenthesized_expression] = STATE(2032), - [sym_call_expression] = STATE(2032), - [sym_type_initializer] = STATE(2868), - [sym_function_literal] = STATE(2032), - [sym_reference_expression] = STATE(1914), - [sym_type_reference_expression] = STATE(3541), - [sym_unary_expression] = STATE(2032), - [sym_receive_expression] = STATE(2032), - [sym_binary_expression] = STATE(2032), - [sym_as_type_cast_expression] = STATE(2032), - [sym__max_group] = STATE(2032), - [sym_literal] = STATE(2027), - [sym_map_init_expression] = STATE(2868), - [sym_map_keyed_element] = STATE(2001), - [sym_array_creation] = STATE(2032), - [sym_fixed_array_creation] = STATE(2032), - [sym_selector_expression] = STATE(2032), - [sym_index_expression] = STATE(2032), - [sym_slice_expression] = STATE(2032), - [sym_if_expression] = STATE(2868), - [sym_compile_time_if_expression] = STATE(2868), - [sym_is_expression] = STATE(2032), - [sym_in_expression] = STATE(2032), - [sym_enum_fetch] = STATE(2032), - [sym_match_expression] = STATE(2868), - [sym_select_expression] = STATE(2868), - [sym_select_arm] = STATE(2139), - [sym_select_arm_statement] = STATE(4161), - [sym_select_var_declaration] = STATE(4478), - [sym_select_else_arn_clause] = STATE(4537), - [sym_lock_expression] = STATE(2868), - [sym_unsafe_expression] = STATE(2868), - [sym_sql_expression] = STATE(2868), - [sym_c_string_literal] = STATE(2026), - [sym_raw_string_literal] = STATE(2026), - [sym_interpreted_string_literal] = STATE(2026), - [sym_mutability_modifiers] = STATE(635), - [sym_mutable_identifier] = STATE(3928), - [sym_identifier_list] = STATE(4484), + [114] = { + [sym_line_comment] = STATE(114), + [sym_block_comment] = STATE(114), + [sym__expression] = STATE(2780), + [sym__expression_without_blocks] = STATE(1903), + [sym__expression_with_blocks] = STATE(2882), + [sym_inc_expression] = STATE(2035), + [sym_dec_expression] = STATE(2035), + [sym_or_block_expression] = STATE(2035), + [sym_option_propagation_expression] = STATE(2035), + [sym_result_propagation_expression] = STATE(2035), + [sym_anon_struct_value_expression] = STATE(2877), + [sym_go_expression] = STATE(2035), + [sym_spawn_expression] = STATE(2035), + [sym_parenthesized_expression] = STATE(2035), + [sym_call_expression] = STATE(2035), + [sym_type_initializer] = STATE(2877), + [sym_function_literal] = STATE(2035), + [sym_reference_expression] = STATE(1944), + [sym_type_reference_expression] = STATE(3460), + [sym_unary_expression] = STATE(2035), + [sym_receive_expression] = STATE(2035), + [sym_binary_expression] = STATE(2035), + [sym_as_type_cast_expression] = STATE(2035), + [sym__max_group] = STATE(2035), + [sym_literal] = STATE(2030), + [sym_map_init_expression] = STATE(2877), + [sym_array_creation] = STATE(2035), + [sym_fixed_array_creation] = STATE(2035), + [sym_selector_expression] = STATE(2035), + [sym_index_expression] = STATE(2035), + [sym_slice_expression] = STATE(2035), + [sym_if_expression] = STATE(2877), + [sym_compile_time_if_expression] = STATE(2877), + [sym_is_expression] = STATE(2035), + [sym_in_expression] = STATE(2035), + [sym_enum_fetch] = STATE(2035), + [sym_match_expression] = STATE(2877), + [sym_select_expression] = STATE(2877), + [sym_select_arm] = STATE(2140), + [sym_select_arm_statement] = STATE(4150), + [sym_select_var_declaration] = STATE(4507), + [sym_select_else_arn_clause] = STATE(4641), + [sym_lock_expression] = STATE(2877), + [sym_unsafe_expression] = STATE(2877), + [sym_sql_expression] = STATE(2877), + [sym_c_string_literal] = STATE(2029), + [sym_raw_string_literal] = STATE(2029), + [sym_interpreted_string_literal] = STATE(2029), + [sym_mutability_modifiers] = STATE(641), + [sym_mutable_identifier] = STATE(3847), + [sym_identifier_list] = STATE(4511), [sym_expression_without_blocks_list] = STATE(3279), - [sym_plain_type] = STATE(4094), - [sym__plain_type_without_special] = STATE(2302), - [sym_anon_struct_type] = STATE(2303), - [sym_multi_return_type] = STATE(2302), - [sym_result_type] = STATE(2302), - [sym_option_type] = STATE(2302), - [sym_qualified_type] = STATE(3541), - [sym_fixed_array_type] = STATE(2303), - [sym_array_type] = STATE(2303), - [sym_pointer_type] = STATE(2303), - [sym_wrong_pointer_type] = STATE(2303), - [sym_map_type] = STATE(2303), - [sym_channel_type] = STATE(2303), - [sym_shared_type] = STATE(2303), - [sym_thread_type] = STATE(2303), - [sym_atomic_type] = STATE(2303), - [sym_generic_type] = STATE(2303), - [sym_function_type] = STATE(2303), - [sym_send_statement] = STATE(4478), - [aux_sym_map_init_expression_repeat1] = STATE(274), - [aux_sym_select_expression_repeat1] = STATE(128), - [sym_identifier] = ACTIONS(701), + [sym_plain_type] = STATE(4297), + [sym__plain_type_without_special] = STATE(2360), + [sym_anon_struct_type] = STATE(2362), + [sym_multi_return_type] = STATE(2360), + [sym_result_type] = STATE(2360), + [sym_option_type] = STATE(2360), + [sym_qualified_type] = STATE(3460), + [sym_fixed_array_type] = STATE(2362), + [sym_array_type] = STATE(2362), + [sym_pointer_type] = STATE(2362), + [sym_wrong_pointer_type] = STATE(2362), + [sym_map_type] = STATE(2362), + [sym_channel_type] = STATE(2362), + [sym_shared_type] = STATE(2362), + [sym_thread_type] = STATE(2362), + [sym_atomic_type] = STATE(2362), + [sym_generic_type] = STATE(2362), + [sym_function_type] = STATE(2362), + [sym_send_statement] = STATE(4507), + [aux_sym_select_expression_repeat1] = STATE(149), + [sym_identifier] = ACTIONS(767), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(703), - [anon_sym_LBRACE] = ACTIONS(705), - [anon_sym_RBRACE] = ACTIONS(795), - [anon_sym_LPAREN] = ACTIONS(709), - [anon_sym_fn] = ACTIONS(711), - [anon_sym_PLUS] = ACTIONS(713), - [anon_sym_DASH] = ACTIONS(713), - [anon_sym_STAR] = ACTIONS(715), - [anon_sym_struct] = ACTIONS(717), + [anon_sym_DOT] = ACTIONS(769), + [anon_sym_LBRACE] = ACTIONS(771), + [anon_sym_RBRACE] = ACTIONS(883), + [anon_sym_LPAREN] = ACTIONS(775), + [anon_sym_fn] = ACTIONS(777), + [anon_sym_PLUS] = ACTIONS(779), + [anon_sym_DASH] = ACTIONS(779), + [anon_sym_STAR] = ACTIONS(781), + [anon_sym_struct] = ACTIONS(783), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(719), - [anon_sym_go] = ACTIONS(721), - [anon_sym_spawn] = ACTIONS(723), - [anon_sym_json_DOTdecode] = ACTIONS(725), - [anon_sym_LBRACK2] = ACTIONS(727), - [anon_sym_TILDE] = ACTIONS(713), - [anon_sym_CARET] = ACTIONS(713), - [anon_sym_AMP] = ACTIONS(729), - [anon_sym_LT_DASH] = ACTIONS(731), - [sym_none] = ACTIONS(733), - [sym_true] = ACTIONS(733), - [sym_false] = ACTIONS(733), - [sym_nil] = ACTIONS(733), - [anon_sym_if] = ACTIONS(735), - [anon_sym_else] = ACTIONS(737), - [anon_sym_DOLLARif] = ACTIONS(739), - [anon_sym_match] = ACTIONS(741), - [anon_sym_select] = ACTIONS(743), - [anon_sym_lock] = ACTIONS(745), - [anon_sym_rlock] = ACTIONS(745), - [anon_sym_unsafe] = ACTIONS(747), - [anon_sym_sql] = ACTIONS(749), - [sym_int_literal] = ACTIONS(733), - [sym_float_literal] = ACTIONS(751), - [sym_rune_literal] = ACTIONS(751), - [sym_pseudo_compile_time_identifier] = ACTIONS(753), + [anon_sym_BANG] = ACTIONS(785), + [anon_sym_go] = ACTIONS(787), + [anon_sym_spawn] = ACTIONS(789), + [anon_sym_json_DOTdecode] = ACTIONS(791), + [anon_sym_LBRACK2] = ACTIONS(793), + [anon_sym_TILDE] = ACTIONS(779), + [anon_sym_CARET] = ACTIONS(779), + [anon_sym_AMP] = ACTIONS(795), + [anon_sym_LT_DASH] = ACTIONS(797), + [sym_none] = ACTIONS(799), + [sym_true] = ACTIONS(799), + [sym_false] = ACTIONS(799), + [sym_nil] = ACTIONS(799), + [anon_sym_if] = ACTIONS(801), + [anon_sym_else] = ACTIONS(803), + [anon_sym_DOLLARif] = ACTIONS(805), + [anon_sym_match] = ACTIONS(807), + [anon_sym_select] = ACTIONS(809), + [anon_sym_lock] = ACTIONS(811), + [anon_sym_rlock] = ACTIONS(811), + [anon_sym_unsafe] = ACTIONS(813), + [anon_sym_sql] = ACTIONS(815), + [sym_int_literal] = ACTIONS(799), + [sym_float_literal] = ACTIONS(817), + [sym_rune_literal] = ACTIONS(817), + [sym_pseudo_compile_time_identifier] = ACTIONS(819), [anon_sym_shared] = ACTIONS(83), [anon_sym_map_LBRACK] = ACTIONS(85), [anon_sym_chan] = ACTIONS(87), [anon_sym_thread] = ACTIONS(89), [anon_sym_atomic] = ACTIONS(91), - [sym___double_quote] = ACTIONS(755), - [sym___single_quote] = ACTIONS(757), - [sym___c_double_quote] = ACTIONS(759), - [sym___c_single_quote] = ACTIONS(761), - [sym___r_double_quote] = ACTIONS(763), - [sym___r_single_quote] = ACTIONS(765), + [sym___double_quote] = ACTIONS(821), + [sym___single_quote] = ACTIONS(823), + [sym___c_double_quote] = ACTIONS(825), + [sym___c_single_quote] = ACTIONS(827), + [sym___r_double_quote] = ACTIONS(829), + [sym___r_single_quote] = ACTIONS(831), }, - [103] = { - [sym_line_comment] = STATE(103), - [sym_block_comment] = STATE(103), - [sym__expression] = STATE(2588), - [sym__expression_without_blocks] = STATE(1902), - [sym__expression_with_blocks] = STATE(2870), - [sym_inc_expression] = STATE(2032), - [sym_dec_expression] = STATE(2032), - [sym_or_block_expression] = STATE(2032), - [sym_option_propagation_expression] = STATE(2032), - [sym_result_propagation_expression] = STATE(2032), - [sym_anon_struct_value_expression] = STATE(2868), - [sym_go_expression] = STATE(2032), - [sym_spawn_expression] = STATE(2032), - [sym_parenthesized_expression] = STATE(2032), - [sym_call_expression] = STATE(2032), - [sym_type_initializer] = STATE(2868), - [sym_function_literal] = STATE(2032), - [sym_reference_expression] = STATE(1914), - [sym_type_reference_expression] = STATE(3541), - [sym_unary_expression] = STATE(2032), - [sym_receive_expression] = STATE(2032), - [sym_binary_expression] = STATE(2032), - [sym_as_type_cast_expression] = STATE(2032), - [sym__max_group] = STATE(2032), - [sym_literal] = STATE(2027), - [sym_map_init_expression] = STATE(2868), - [sym_map_keyed_element] = STATE(2001), - [sym_array_creation] = STATE(2032), - [sym_fixed_array_creation] = STATE(2032), - [sym_selector_expression] = STATE(2032), - [sym_index_expression] = STATE(2032), - [sym_slice_expression] = STATE(2032), - [sym_if_expression] = STATE(2868), - [sym_compile_time_if_expression] = STATE(2868), - [sym_is_expression] = STATE(2032), - [sym_in_expression] = STATE(2032), - [sym_enum_fetch] = STATE(2032), - [sym_match_expression] = STATE(2868), - [sym_select_expression] = STATE(2868), - [sym_select_arm] = STATE(2139), - [sym_select_arm_statement] = STATE(4161), - [sym_select_var_declaration] = STATE(4478), - [sym_select_else_arn_clause] = STATE(4605), - [sym_lock_expression] = STATE(2868), - [sym_unsafe_expression] = STATE(2868), - [sym_sql_expression] = STATE(2868), - [sym_c_string_literal] = STATE(2026), - [sym_raw_string_literal] = STATE(2026), - [sym_interpreted_string_literal] = STATE(2026), - [sym_mutability_modifiers] = STATE(635), - [sym_mutable_identifier] = STATE(3928), - [sym_identifier_list] = STATE(4484), + [115] = { + [sym_line_comment] = STATE(115), + [sym_block_comment] = STATE(115), + [sym__expression] = STATE(2780), + [sym__expression_without_blocks] = STATE(1903), + [sym__expression_with_blocks] = STATE(2882), + [sym_inc_expression] = STATE(2035), + [sym_dec_expression] = STATE(2035), + [sym_or_block_expression] = STATE(2035), + [sym_option_propagation_expression] = STATE(2035), + [sym_result_propagation_expression] = STATE(2035), + [sym_anon_struct_value_expression] = STATE(2877), + [sym_go_expression] = STATE(2035), + [sym_spawn_expression] = STATE(2035), + [sym_parenthesized_expression] = STATE(2035), + [sym_call_expression] = STATE(2035), + [sym_type_initializer] = STATE(2877), + [sym_function_literal] = STATE(2035), + [sym_reference_expression] = STATE(1944), + [sym_type_reference_expression] = STATE(3460), + [sym_unary_expression] = STATE(2035), + [sym_receive_expression] = STATE(2035), + [sym_binary_expression] = STATE(2035), + [sym_as_type_cast_expression] = STATE(2035), + [sym__max_group] = STATE(2035), + [sym_literal] = STATE(2030), + [sym_map_init_expression] = STATE(2877), + [sym_array_creation] = STATE(2035), + [sym_fixed_array_creation] = STATE(2035), + [sym_selector_expression] = STATE(2035), + [sym_index_expression] = STATE(2035), + [sym_slice_expression] = STATE(2035), + [sym_if_expression] = STATE(2877), + [sym_compile_time_if_expression] = STATE(2877), + [sym_is_expression] = STATE(2035), + [sym_in_expression] = STATE(2035), + [sym_enum_fetch] = STATE(2035), + [sym_match_expression] = STATE(2877), + [sym_select_expression] = STATE(2877), + [sym_select_arm] = STATE(2140), + [sym_select_arm_statement] = STATE(4150), + [sym_select_var_declaration] = STATE(4507), + [sym_select_else_arn_clause] = STATE(4419), + [sym_lock_expression] = STATE(2877), + [sym_unsafe_expression] = STATE(2877), + [sym_sql_expression] = STATE(2877), + [sym_c_string_literal] = STATE(2029), + [sym_raw_string_literal] = STATE(2029), + [sym_interpreted_string_literal] = STATE(2029), + [sym_mutability_modifiers] = STATE(641), + [sym_mutable_identifier] = STATE(3847), + [sym_identifier_list] = STATE(4511), [sym_expression_without_blocks_list] = STATE(3279), - [sym_plain_type] = STATE(4094), - [sym__plain_type_without_special] = STATE(2302), - [sym_anon_struct_type] = STATE(2303), - [sym_multi_return_type] = STATE(2302), - [sym_result_type] = STATE(2302), - [sym_option_type] = STATE(2302), - [sym_qualified_type] = STATE(3541), - [sym_fixed_array_type] = STATE(2303), - [sym_array_type] = STATE(2303), - [sym_pointer_type] = STATE(2303), - [sym_wrong_pointer_type] = STATE(2303), - [sym_map_type] = STATE(2303), - [sym_channel_type] = STATE(2303), - [sym_shared_type] = STATE(2303), - [sym_thread_type] = STATE(2303), - [sym_atomic_type] = STATE(2303), - [sym_generic_type] = STATE(2303), - [sym_function_type] = STATE(2303), - [sym_send_statement] = STATE(4478), - [aux_sym_map_init_expression_repeat1] = STATE(274), - [aux_sym_select_expression_repeat1] = STATE(132), - [sym_identifier] = ACTIONS(701), + [sym_plain_type] = STATE(4297), + [sym__plain_type_without_special] = STATE(2360), + [sym_anon_struct_type] = STATE(2362), + [sym_multi_return_type] = STATE(2360), + [sym_result_type] = STATE(2360), + [sym_option_type] = STATE(2360), + [sym_qualified_type] = STATE(3460), + [sym_fixed_array_type] = STATE(2362), + [sym_array_type] = STATE(2362), + [sym_pointer_type] = STATE(2362), + [sym_wrong_pointer_type] = STATE(2362), + [sym_map_type] = STATE(2362), + [sym_channel_type] = STATE(2362), + [sym_shared_type] = STATE(2362), + [sym_thread_type] = STATE(2362), + [sym_atomic_type] = STATE(2362), + [sym_generic_type] = STATE(2362), + [sym_function_type] = STATE(2362), + [sym_send_statement] = STATE(4507), + [aux_sym_select_expression_repeat1] = STATE(117), + [sym_identifier] = ACTIONS(767), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(703), - [anon_sym_LBRACE] = ACTIONS(705), - [anon_sym_RBRACE] = ACTIONS(797), - [anon_sym_LPAREN] = ACTIONS(709), - [anon_sym_fn] = ACTIONS(711), - [anon_sym_PLUS] = ACTIONS(713), - [anon_sym_DASH] = ACTIONS(713), - [anon_sym_STAR] = ACTIONS(715), - [anon_sym_struct] = ACTIONS(717), + [anon_sym_DOT] = ACTIONS(769), + [anon_sym_LBRACE] = ACTIONS(771), + [anon_sym_RBRACE] = ACTIONS(885), + [anon_sym_LPAREN] = ACTIONS(775), + [anon_sym_fn] = ACTIONS(777), + [anon_sym_PLUS] = ACTIONS(779), + [anon_sym_DASH] = ACTIONS(779), + [anon_sym_STAR] = ACTIONS(781), + [anon_sym_struct] = ACTIONS(783), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(719), - [anon_sym_go] = ACTIONS(721), - [anon_sym_spawn] = ACTIONS(723), - [anon_sym_json_DOTdecode] = ACTIONS(725), - [anon_sym_LBRACK2] = ACTIONS(727), - [anon_sym_TILDE] = ACTIONS(713), - [anon_sym_CARET] = ACTIONS(713), - [anon_sym_AMP] = ACTIONS(729), - [anon_sym_LT_DASH] = ACTIONS(731), - [sym_none] = ACTIONS(733), - [sym_true] = ACTIONS(733), - [sym_false] = ACTIONS(733), - [sym_nil] = ACTIONS(733), - [anon_sym_if] = ACTIONS(735), - [anon_sym_else] = ACTIONS(737), - [anon_sym_DOLLARif] = ACTIONS(739), - [anon_sym_match] = ACTIONS(741), - [anon_sym_select] = ACTIONS(743), - [anon_sym_lock] = ACTIONS(745), - [anon_sym_rlock] = ACTIONS(745), - [anon_sym_unsafe] = ACTIONS(747), - [anon_sym_sql] = ACTIONS(749), - [sym_int_literal] = ACTIONS(733), - [sym_float_literal] = ACTIONS(751), - [sym_rune_literal] = ACTIONS(751), - [sym_pseudo_compile_time_identifier] = ACTIONS(753), + [anon_sym_BANG] = ACTIONS(785), + [anon_sym_go] = ACTIONS(787), + [anon_sym_spawn] = ACTIONS(789), + [anon_sym_json_DOTdecode] = ACTIONS(791), + [anon_sym_LBRACK2] = ACTIONS(793), + [anon_sym_TILDE] = ACTIONS(779), + [anon_sym_CARET] = ACTIONS(779), + [anon_sym_AMP] = ACTIONS(795), + [anon_sym_LT_DASH] = ACTIONS(797), + [sym_none] = ACTIONS(799), + [sym_true] = ACTIONS(799), + [sym_false] = ACTIONS(799), + [sym_nil] = ACTIONS(799), + [anon_sym_if] = ACTIONS(801), + [anon_sym_else] = ACTIONS(803), + [anon_sym_DOLLARif] = ACTIONS(805), + [anon_sym_match] = ACTIONS(807), + [anon_sym_select] = ACTIONS(809), + [anon_sym_lock] = ACTIONS(811), + [anon_sym_rlock] = ACTIONS(811), + [anon_sym_unsafe] = ACTIONS(813), + [anon_sym_sql] = ACTIONS(815), + [sym_int_literal] = ACTIONS(799), + [sym_float_literal] = ACTIONS(817), + [sym_rune_literal] = ACTIONS(817), + [sym_pseudo_compile_time_identifier] = ACTIONS(819), [anon_sym_shared] = ACTIONS(83), [anon_sym_map_LBRACK] = ACTIONS(85), [anon_sym_chan] = ACTIONS(87), [anon_sym_thread] = ACTIONS(89), [anon_sym_atomic] = ACTIONS(91), - [sym___double_quote] = ACTIONS(755), - [sym___single_quote] = ACTIONS(757), - [sym___c_double_quote] = ACTIONS(759), - [sym___c_single_quote] = ACTIONS(761), - [sym___r_double_quote] = ACTIONS(763), - [sym___r_single_quote] = ACTIONS(765), + [sym___double_quote] = ACTIONS(821), + [sym___single_quote] = ACTIONS(823), + [sym___c_double_quote] = ACTIONS(825), + [sym___c_single_quote] = ACTIONS(827), + [sym___r_double_quote] = ACTIONS(829), + [sym___r_single_quote] = ACTIONS(831), }, - [104] = { - [sym_line_comment] = STATE(104), - [sym_block_comment] = STATE(104), - [sym__expression] = STATE(2588), - [sym__expression_without_blocks] = STATE(1902), - [sym__expression_with_blocks] = STATE(2870), - [sym_inc_expression] = STATE(2032), - [sym_dec_expression] = STATE(2032), - [sym_or_block_expression] = STATE(2032), - [sym_option_propagation_expression] = STATE(2032), - [sym_result_propagation_expression] = STATE(2032), - [sym_anon_struct_value_expression] = STATE(2868), - [sym_go_expression] = STATE(2032), - [sym_spawn_expression] = STATE(2032), - [sym_parenthesized_expression] = STATE(2032), - [sym_call_expression] = STATE(2032), - [sym_type_initializer] = STATE(2868), - [sym_function_literal] = STATE(2032), - [sym_reference_expression] = STATE(1914), - [sym_type_reference_expression] = STATE(3541), - [sym_unary_expression] = STATE(2032), - [sym_receive_expression] = STATE(2032), - [sym_binary_expression] = STATE(2032), - [sym_as_type_cast_expression] = STATE(2032), - [sym__max_group] = STATE(2032), - [sym_literal] = STATE(2027), - [sym_map_init_expression] = STATE(2868), - [sym_map_keyed_element] = STATE(2001), - [sym_array_creation] = STATE(2032), - [sym_fixed_array_creation] = STATE(2032), - [sym_selector_expression] = STATE(2032), - [sym_index_expression] = STATE(2032), - [sym_slice_expression] = STATE(2032), - [sym_if_expression] = STATE(2868), - [sym_compile_time_if_expression] = STATE(2868), - [sym_is_expression] = STATE(2032), - [sym_in_expression] = STATE(2032), - [sym_enum_fetch] = STATE(2032), - [sym_match_expression] = STATE(2868), - [sym_select_expression] = STATE(2868), - [sym_select_arm] = STATE(2139), - [sym_select_arm_statement] = STATE(4161), - [sym_select_var_declaration] = STATE(4478), - [sym_select_else_arn_clause] = STATE(4334), - [sym_lock_expression] = STATE(2868), - [sym_unsafe_expression] = STATE(2868), - [sym_sql_expression] = STATE(2868), - [sym_c_string_literal] = STATE(2026), - [sym_raw_string_literal] = STATE(2026), - [sym_interpreted_string_literal] = STATE(2026), - [sym_mutability_modifiers] = STATE(635), - [sym_mutable_identifier] = STATE(3928), - [sym_identifier_list] = STATE(4484), + [116] = { + [sym_line_comment] = STATE(116), + [sym_block_comment] = STATE(116), + [sym__expression] = STATE(2780), + [sym__expression_without_blocks] = STATE(1903), + [sym__expression_with_blocks] = STATE(2882), + [sym_inc_expression] = STATE(2035), + [sym_dec_expression] = STATE(2035), + [sym_or_block_expression] = STATE(2035), + [sym_option_propagation_expression] = STATE(2035), + [sym_result_propagation_expression] = STATE(2035), + [sym_anon_struct_value_expression] = STATE(2877), + [sym_go_expression] = STATE(2035), + [sym_spawn_expression] = STATE(2035), + [sym_parenthesized_expression] = STATE(2035), + [sym_call_expression] = STATE(2035), + [sym_type_initializer] = STATE(2877), + [sym_function_literal] = STATE(2035), + [sym_reference_expression] = STATE(1944), + [sym_type_reference_expression] = STATE(3460), + [sym_unary_expression] = STATE(2035), + [sym_receive_expression] = STATE(2035), + [sym_binary_expression] = STATE(2035), + [sym_as_type_cast_expression] = STATE(2035), + [sym__max_group] = STATE(2035), + [sym_literal] = STATE(2030), + [sym_map_init_expression] = STATE(2877), + [sym_array_creation] = STATE(2035), + [sym_fixed_array_creation] = STATE(2035), + [sym_selector_expression] = STATE(2035), + [sym_index_expression] = STATE(2035), + [sym_slice_expression] = STATE(2035), + [sym_if_expression] = STATE(2877), + [sym_compile_time_if_expression] = STATE(2877), + [sym_is_expression] = STATE(2035), + [sym_in_expression] = STATE(2035), + [sym_enum_fetch] = STATE(2035), + [sym_match_expression] = STATE(2877), + [sym_select_expression] = STATE(2877), + [sym_select_arm] = STATE(2140), + [sym_select_arm_statement] = STATE(4150), + [sym_select_var_declaration] = STATE(4507), + [sym_select_else_arn_clause] = STATE(4421), + [sym_lock_expression] = STATE(2877), + [sym_unsafe_expression] = STATE(2877), + [sym_sql_expression] = STATE(2877), + [sym_c_string_literal] = STATE(2029), + [sym_raw_string_literal] = STATE(2029), + [sym_interpreted_string_literal] = STATE(2029), + [sym_mutability_modifiers] = STATE(641), + [sym_mutable_identifier] = STATE(3847), + [sym_identifier_list] = STATE(4511), [sym_expression_without_blocks_list] = STATE(3279), - [sym_plain_type] = STATE(4094), - [sym__plain_type_without_special] = STATE(2302), - [sym_anon_struct_type] = STATE(2303), - [sym_multi_return_type] = STATE(2302), - [sym_result_type] = STATE(2302), - [sym_option_type] = STATE(2302), - [sym_qualified_type] = STATE(3541), - [sym_fixed_array_type] = STATE(2303), - [sym_array_type] = STATE(2303), - [sym_pointer_type] = STATE(2303), - [sym_wrong_pointer_type] = STATE(2303), - [sym_map_type] = STATE(2303), - [sym_channel_type] = STATE(2303), - [sym_shared_type] = STATE(2303), - [sym_thread_type] = STATE(2303), - [sym_atomic_type] = STATE(2303), - [sym_generic_type] = STATE(2303), - [sym_function_type] = STATE(2303), - [sym_send_statement] = STATE(4478), - [aux_sym_map_init_expression_repeat1] = STATE(274), - [aux_sym_select_expression_repeat1] = STATE(121), - [sym_identifier] = ACTIONS(701), + [sym_plain_type] = STATE(4297), + [sym__plain_type_without_special] = STATE(2360), + [sym_anon_struct_type] = STATE(2362), + [sym_multi_return_type] = STATE(2360), + [sym_result_type] = STATE(2360), + [sym_option_type] = STATE(2360), + [sym_qualified_type] = STATE(3460), + [sym_fixed_array_type] = STATE(2362), + [sym_array_type] = STATE(2362), + [sym_pointer_type] = STATE(2362), + [sym_wrong_pointer_type] = STATE(2362), + [sym_map_type] = STATE(2362), + [sym_channel_type] = STATE(2362), + [sym_shared_type] = STATE(2362), + [sym_thread_type] = STATE(2362), + [sym_atomic_type] = STATE(2362), + [sym_generic_type] = STATE(2362), + [sym_function_type] = STATE(2362), + [sym_send_statement] = STATE(4507), + [aux_sym_select_expression_repeat1] = STATE(149), + [sym_identifier] = ACTIONS(767), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(703), - [anon_sym_LBRACE] = ACTIONS(705), - [anon_sym_RBRACE] = ACTIONS(799), - [anon_sym_LPAREN] = ACTIONS(709), - [anon_sym_fn] = ACTIONS(711), - [anon_sym_PLUS] = ACTIONS(713), - [anon_sym_DASH] = ACTIONS(713), - [anon_sym_STAR] = ACTIONS(715), - [anon_sym_struct] = ACTIONS(717), + [anon_sym_DOT] = ACTIONS(769), + [anon_sym_LBRACE] = ACTIONS(771), + [anon_sym_RBRACE] = ACTIONS(887), + [anon_sym_LPAREN] = ACTIONS(775), + [anon_sym_fn] = ACTIONS(777), + [anon_sym_PLUS] = ACTIONS(779), + [anon_sym_DASH] = ACTIONS(779), + [anon_sym_STAR] = ACTIONS(781), + [anon_sym_struct] = ACTIONS(783), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(719), - [anon_sym_go] = ACTIONS(721), - [anon_sym_spawn] = ACTIONS(723), - [anon_sym_json_DOTdecode] = ACTIONS(725), - [anon_sym_LBRACK2] = ACTIONS(727), - [anon_sym_TILDE] = ACTIONS(713), - [anon_sym_CARET] = ACTIONS(713), - [anon_sym_AMP] = ACTIONS(729), - [anon_sym_LT_DASH] = ACTIONS(731), - [sym_none] = ACTIONS(733), - [sym_true] = ACTIONS(733), - [sym_false] = ACTIONS(733), - [sym_nil] = ACTIONS(733), - [anon_sym_if] = ACTIONS(735), - [anon_sym_else] = ACTIONS(737), - [anon_sym_DOLLARif] = ACTIONS(739), - [anon_sym_match] = ACTIONS(741), - [anon_sym_select] = ACTIONS(743), - [anon_sym_lock] = ACTIONS(745), - [anon_sym_rlock] = ACTIONS(745), - [anon_sym_unsafe] = ACTIONS(747), - [anon_sym_sql] = ACTIONS(749), - [sym_int_literal] = ACTIONS(733), - [sym_float_literal] = ACTIONS(751), - [sym_rune_literal] = ACTIONS(751), - [sym_pseudo_compile_time_identifier] = ACTIONS(753), + [anon_sym_BANG] = ACTIONS(785), + [anon_sym_go] = ACTIONS(787), + [anon_sym_spawn] = ACTIONS(789), + [anon_sym_json_DOTdecode] = ACTIONS(791), + [anon_sym_LBRACK2] = ACTIONS(793), + [anon_sym_TILDE] = ACTIONS(779), + [anon_sym_CARET] = ACTIONS(779), + [anon_sym_AMP] = ACTIONS(795), + [anon_sym_LT_DASH] = ACTIONS(797), + [sym_none] = ACTIONS(799), + [sym_true] = ACTIONS(799), + [sym_false] = ACTIONS(799), + [sym_nil] = ACTIONS(799), + [anon_sym_if] = ACTIONS(801), + [anon_sym_else] = ACTIONS(803), + [anon_sym_DOLLARif] = ACTIONS(805), + [anon_sym_match] = ACTIONS(807), + [anon_sym_select] = ACTIONS(809), + [anon_sym_lock] = ACTIONS(811), + [anon_sym_rlock] = ACTIONS(811), + [anon_sym_unsafe] = ACTIONS(813), + [anon_sym_sql] = ACTIONS(815), + [sym_int_literal] = ACTIONS(799), + [sym_float_literal] = ACTIONS(817), + [sym_rune_literal] = ACTIONS(817), + [sym_pseudo_compile_time_identifier] = ACTIONS(819), [anon_sym_shared] = ACTIONS(83), [anon_sym_map_LBRACK] = ACTIONS(85), [anon_sym_chan] = ACTIONS(87), [anon_sym_thread] = ACTIONS(89), [anon_sym_atomic] = ACTIONS(91), - [sym___double_quote] = ACTIONS(755), - [sym___single_quote] = ACTIONS(757), - [sym___c_double_quote] = ACTIONS(759), - [sym___c_single_quote] = ACTIONS(761), - [sym___r_double_quote] = ACTIONS(763), - [sym___r_single_quote] = ACTIONS(765), + [sym___double_quote] = ACTIONS(821), + [sym___single_quote] = ACTIONS(823), + [sym___c_double_quote] = ACTIONS(825), + [sym___c_single_quote] = ACTIONS(827), + [sym___r_double_quote] = ACTIONS(829), + [sym___r_single_quote] = ACTIONS(831), }, - [105] = { - [sym_line_comment] = STATE(105), - [sym_block_comment] = STATE(105), - [sym__expression] = STATE(2588), - [sym__expression_without_blocks] = STATE(1902), - [sym__expression_with_blocks] = STATE(2870), - [sym_inc_expression] = STATE(2032), - [sym_dec_expression] = STATE(2032), - [sym_or_block_expression] = STATE(2032), - [sym_option_propagation_expression] = STATE(2032), - [sym_result_propagation_expression] = STATE(2032), - [sym_anon_struct_value_expression] = STATE(2868), - [sym_go_expression] = STATE(2032), - [sym_spawn_expression] = STATE(2032), - [sym_parenthesized_expression] = STATE(2032), - [sym_call_expression] = STATE(2032), - [sym_type_initializer] = STATE(2868), - [sym_function_literal] = STATE(2032), - [sym_reference_expression] = STATE(1914), - [sym_type_reference_expression] = STATE(3541), - [sym_unary_expression] = STATE(2032), - [sym_receive_expression] = STATE(2032), - [sym_binary_expression] = STATE(2032), - [sym_as_type_cast_expression] = STATE(2032), - [sym__max_group] = STATE(2032), - [sym_literal] = STATE(2027), - [sym_map_init_expression] = STATE(2868), - [sym_map_keyed_element] = STATE(2001), - [sym_array_creation] = STATE(2032), - [sym_fixed_array_creation] = STATE(2032), - [sym_selector_expression] = STATE(2032), - [sym_index_expression] = STATE(2032), - [sym_slice_expression] = STATE(2032), - [sym_if_expression] = STATE(2868), - [sym_compile_time_if_expression] = STATE(2868), - [sym_is_expression] = STATE(2032), - [sym_in_expression] = STATE(2032), - [sym_enum_fetch] = STATE(2032), - [sym_match_expression] = STATE(2868), - [sym_select_expression] = STATE(2868), - [sym_select_arm] = STATE(2139), - [sym_select_arm_statement] = STATE(4161), - [sym_select_var_declaration] = STATE(4478), - [sym_select_else_arn_clause] = STATE(4590), - [sym_lock_expression] = STATE(2868), - [sym_unsafe_expression] = STATE(2868), - [sym_sql_expression] = STATE(2868), - [sym_c_string_literal] = STATE(2026), - [sym_raw_string_literal] = STATE(2026), - [sym_interpreted_string_literal] = STATE(2026), - [sym_mutability_modifiers] = STATE(635), - [sym_mutable_identifier] = STATE(3928), - [sym_identifier_list] = STATE(4484), + [117] = { + [sym_line_comment] = STATE(117), + [sym_block_comment] = STATE(117), + [sym__expression] = STATE(2780), + [sym__expression_without_blocks] = STATE(1903), + [sym__expression_with_blocks] = STATE(2882), + [sym_inc_expression] = STATE(2035), + [sym_dec_expression] = STATE(2035), + [sym_or_block_expression] = STATE(2035), + [sym_option_propagation_expression] = STATE(2035), + [sym_result_propagation_expression] = STATE(2035), + [sym_anon_struct_value_expression] = STATE(2877), + [sym_go_expression] = STATE(2035), + [sym_spawn_expression] = STATE(2035), + [sym_parenthesized_expression] = STATE(2035), + [sym_call_expression] = STATE(2035), + [sym_type_initializer] = STATE(2877), + [sym_function_literal] = STATE(2035), + [sym_reference_expression] = STATE(1944), + [sym_type_reference_expression] = STATE(3460), + [sym_unary_expression] = STATE(2035), + [sym_receive_expression] = STATE(2035), + [sym_binary_expression] = STATE(2035), + [sym_as_type_cast_expression] = STATE(2035), + [sym__max_group] = STATE(2035), + [sym_literal] = STATE(2030), + [sym_map_init_expression] = STATE(2877), + [sym_array_creation] = STATE(2035), + [sym_fixed_array_creation] = STATE(2035), + [sym_selector_expression] = STATE(2035), + [sym_index_expression] = STATE(2035), + [sym_slice_expression] = STATE(2035), + [sym_if_expression] = STATE(2877), + [sym_compile_time_if_expression] = STATE(2877), + [sym_is_expression] = STATE(2035), + [sym_in_expression] = STATE(2035), + [sym_enum_fetch] = STATE(2035), + [sym_match_expression] = STATE(2877), + [sym_select_expression] = STATE(2877), + [sym_select_arm] = STATE(2140), + [sym_select_arm_statement] = STATE(4150), + [sym_select_var_declaration] = STATE(4507), + [sym_select_else_arn_clause] = STATE(4410), + [sym_lock_expression] = STATE(2877), + [sym_unsafe_expression] = STATE(2877), + [sym_sql_expression] = STATE(2877), + [sym_c_string_literal] = STATE(2029), + [sym_raw_string_literal] = STATE(2029), + [sym_interpreted_string_literal] = STATE(2029), + [sym_mutability_modifiers] = STATE(641), + [sym_mutable_identifier] = STATE(3847), + [sym_identifier_list] = STATE(4511), [sym_expression_without_blocks_list] = STATE(3279), - [sym_plain_type] = STATE(4094), - [sym__plain_type_without_special] = STATE(2302), - [sym_anon_struct_type] = STATE(2303), - [sym_multi_return_type] = STATE(2302), - [sym_result_type] = STATE(2302), - [sym_option_type] = STATE(2302), - [sym_qualified_type] = STATE(3541), - [sym_fixed_array_type] = STATE(2303), - [sym_array_type] = STATE(2303), - [sym_pointer_type] = STATE(2303), - [sym_wrong_pointer_type] = STATE(2303), - [sym_map_type] = STATE(2303), - [sym_channel_type] = STATE(2303), - [sym_shared_type] = STATE(2303), - [sym_thread_type] = STATE(2303), - [sym_atomic_type] = STATE(2303), - [sym_generic_type] = STATE(2303), - [sym_function_type] = STATE(2303), - [sym_send_statement] = STATE(4478), - [aux_sym_map_init_expression_repeat1] = STATE(274), - [aux_sym_select_expression_repeat1] = STATE(133), - [sym_identifier] = ACTIONS(701), + [sym_plain_type] = STATE(4297), + [sym__plain_type_without_special] = STATE(2360), + [sym_anon_struct_type] = STATE(2362), + [sym_multi_return_type] = STATE(2360), + [sym_result_type] = STATE(2360), + [sym_option_type] = STATE(2360), + [sym_qualified_type] = STATE(3460), + [sym_fixed_array_type] = STATE(2362), + [sym_array_type] = STATE(2362), + [sym_pointer_type] = STATE(2362), + [sym_wrong_pointer_type] = STATE(2362), + [sym_map_type] = STATE(2362), + [sym_channel_type] = STATE(2362), + [sym_shared_type] = STATE(2362), + [sym_thread_type] = STATE(2362), + [sym_atomic_type] = STATE(2362), + [sym_generic_type] = STATE(2362), + [sym_function_type] = STATE(2362), + [sym_send_statement] = STATE(4507), + [aux_sym_select_expression_repeat1] = STATE(149), + [sym_identifier] = ACTIONS(767), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(703), - [anon_sym_LBRACE] = ACTIONS(705), - [anon_sym_RBRACE] = ACTIONS(801), - [anon_sym_LPAREN] = ACTIONS(709), - [anon_sym_fn] = ACTIONS(711), - [anon_sym_PLUS] = ACTIONS(713), - [anon_sym_DASH] = ACTIONS(713), - [anon_sym_STAR] = ACTIONS(715), - [anon_sym_struct] = ACTIONS(717), + [anon_sym_DOT] = ACTIONS(769), + [anon_sym_LBRACE] = ACTIONS(771), + [anon_sym_RBRACE] = ACTIONS(889), + [anon_sym_LPAREN] = ACTIONS(775), + [anon_sym_fn] = ACTIONS(777), + [anon_sym_PLUS] = ACTIONS(779), + [anon_sym_DASH] = ACTIONS(779), + [anon_sym_STAR] = ACTIONS(781), + [anon_sym_struct] = ACTIONS(783), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(719), - [anon_sym_go] = ACTIONS(721), - [anon_sym_spawn] = ACTIONS(723), - [anon_sym_json_DOTdecode] = ACTIONS(725), - [anon_sym_LBRACK2] = ACTIONS(727), - [anon_sym_TILDE] = ACTIONS(713), - [anon_sym_CARET] = ACTIONS(713), - [anon_sym_AMP] = ACTIONS(729), - [anon_sym_LT_DASH] = ACTIONS(731), - [sym_none] = ACTIONS(733), - [sym_true] = ACTIONS(733), - [sym_false] = ACTIONS(733), - [sym_nil] = ACTIONS(733), - [anon_sym_if] = ACTIONS(735), - [anon_sym_else] = ACTIONS(737), - [anon_sym_DOLLARif] = ACTIONS(739), - [anon_sym_match] = ACTIONS(741), - [anon_sym_select] = ACTIONS(743), - [anon_sym_lock] = ACTIONS(745), - [anon_sym_rlock] = ACTIONS(745), - [anon_sym_unsafe] = ACTIONS(747), - [anon_sym_sql] = ACTIONS(749), - [sym_int_literal] = ACTIONS(733), - [sym_float_literal] = ACTIONS(751), - [sym_rune_literal] = ACTIONS(751), - [sym_pseudo_compile_time_identifier] = ACTIONS(753), + [anon_sym_BANG] = ACTIONS(785), + [anon_sym_go] = ACTIONS(787), + [anon_sym_spawn] = ACTIONS(789), + [anon_sym_json_DOTdecode] = ACTIONS(791), + [anon_sym_LBRACK2] = ACTIONS(793), + [anon_sym_TILDE] = ACTIONS(779), + [anon_sym_CARET] = ACTIONS(779), + [anon_sym_AMP] = ACTIONS(795), + [anon_sym_LT_DASH] = ACTIONS(797), + [sym_none] = ACTIONS(799), + [sym_true] = ACTIONS(799), + [sym_false] = ACTIONS(799), + [sym_nil] = ACTIONS(799), + [anon_sym_if] = ACTIONS(801), + [anon_sym_else] = ACTIONS(803), + [anon_sym_DOLLARif] = ACTIONS(805), + [anon_sym_match] = ACTIONS(807), + [anon_sym_select] = ACTIONS(809), + [anon_sym_lock] = ACTIONS(811), + [anon_sym_rlock] = ACTIONS(811), + [anon_sym_unsafe] = ACTIONS(813), + [anon_sym_sql] = ACTIONS(815), + [sym_int_literal] = ACTIONS(799), + [sym_float_literal] = ACTIONS(817), + [sym_rune_literal] = ACTIONS(817), + [sym_pseudo_compile_time_identifier] = ACTIONS(819), [anon_sym_shared] = ACTIONS(83), [anon_sym_map_LBRACK] = ACTIONS(85), [anon_sym_chan] = ACTIONS(87), [anon_sym_thread] = ACTIONS(89), [anon_sym_atomic] = ACTIONS(91), - [sym___double_quote] = ACTIONS(755), - [sym___single_quote] = ACTIONS(757), - [sym___c_double_quote] = ACTIONS(759), - [sym___c_single_quote] = ACTIONS(761), - [sym___r_double_quote] = ACTIONS(763), - [sym___r_single_quote] = ACTIONS(765), + [sym___double_quote] = ACTIONS(821), + [sym___single_quote] = ACTIONS(823), + [sym___c_double_quote] = ACTIONS(825), + [sym___c_single_quote] = ACTIONS(827), + [sym___r_double_quote] = ACTIONS(829), + [sym___r_single_quote] = ACTIONS(831), }, - [106] = { - [sym_line_comment] = STATE(106), - [sym_block_comment] = STATE(106), - [sym__expression] = STATE(2588), - [sym__expression_without_blocks] = STATE(1902), - [sym__expression_with_blocks] = STATE(2870), - [sym_inc_expression] = STATE(2032), - [sym_dec_expression] = STATE(2032), - [sym_or_block_expression] = STATE(2032), - [sym_option_propagation_expression] = STATE(2032), - [sym_result_propagation_expression] = STATE(2032), - [sym_anon_struct_value_expression] = STATE(2868), - [sym_go_expression] = STATE(2032), - [sym_spawn_expression] = STATE(2032), - [sym_parenthesized_expression] = STATE(2032), - [sym_call_expression] = STATE(2032), - [sym_type_initializer] = STATE(2868), - [sym_function_literal] = STATE(2032), - [sym_reference_expression] = STATE(1914), - [sym_type_reference_expression] = STATE(3541), - [sym_unary_expression] = STATE(2032), - [sym_receive_expression] = STATE(2032), - [sym_binary_expression] = STATE(2032), - [sym_as_type_cast_expression] = STATE(2032), - [sym__max_group] = STATE(2032), - [sym_literal] = STATE(2027), - [sym_map_init_expression] = STATE(2868), - [sym_map_keyed_element] = STATE(2001), - [sym_array_creation] = STATE(2032), - [sym_fixed_array_creation] = STATE(2032), - [sym_selector_expression] = STATE(2032), - [sym_index_expression] = STATE(2032), - [sym_slice_expression] = STATE(2032), - [sym_if_expression] = STATE(2868), - [sym_compile_time_if_expression] = STATE(2868), - [sym_is_expression] = STATE(2032), - [sym_in_expression] = STATE(2032), - [sym_enum_fetch] = STATE(2032), - [sym_match_expression] = STATE(2868), - [sym_select_expression] = STATE(2868), - [sym_select_arm] = STATE(2139), - [sym_select_arm_statement] = STATE(4161), - [sym_select_var_declaration] = STATE(4478), - [sym_select_else_arn_clause] = STATE(4498), - [sym_lock_expression] = STATE(2868), - [sym_unsafe_expression] = STATE(2868), - [sym_sql_expression] = STATE(2868), - [sym_c_string_literal] = STATE(2026), - [sym_raw_string_literal] = STATE(2026), - [sym_interpreted_string_literal] = STATE(2026), - [sym_mutability_modifiers] = STATE(635), - [sym_mutable_identifier] = STATE(3928), - [sym_identifier_list] = STATE(4484), + [118] = { + [sym_line_comment] = STATE(118), + [sym_block_comment] = STATE(118), + [sym__expression] = STATE(2780), + [sym__expression_without_blocks] = STATE(1903), + [sym__expression_with_blocks] = STATE(2882), + [sym_inc_expression] = STATE(2035), + [sym_dec_expression] = STATE(2035), + [sym_or_block_expression] = STATE(2035), + [sym_option_propagation_expression] = STATE(2035), + [sym_result_propagation_expression] = STATE(2035), + [sym_anon_struct_value_expression] = STATE(2877), + [sym_go_expression] = STATE(2035), + [sym_spawn_expression] = STATE(2035), + [sym_parenthesized_expression] = STATE(2035), + [sym_call_expression] = STATE(2035), + [sym_type_initializer] = STATE(2877), + [sym_function_literal] = STATE(2035), + [sym_reference_expression] = STATE(1944), + [sym_type_reference_expression] = STATE(3460), + [sym_unary_expression] = STATE(2035), + [sym_receive_expression] = STATE(2035), + [sym_binary_expression] = STATE(2035), + [sym_as_type_cast_expression] = STATE(2035), + [sym__max_group] = STATE(2035), + [sym_literal] = STATE(2030), + [sym_map_init_expression] = STATE(2877), + [sym_array_creation] = STATE(2035), + [sym_fixed_array_creation] = STATE(2035), + [sym_selector_expression] = STATE(2035), + [sym_index_expression] = STATE(2035), + [sym_slice_expression] = STATE(2035), + [sym_if_expression] = STATE(2877), + [sym_compile_time_if_expression] = STATE(2877), + [sym_is_expression] = STATE(2035), + [sym_in_expression] = STATE(2035), + [sym_enum_fetch] = STATE(2035), + [sym_match_expression] = STATE(2877), + [sym_select_expression] = STATE(2877), + [sym_select_arm] = STATE(2140), + [sym_select_arm_statement] = STATE(4150), + [sym_select_var_declaration] = STATE(4507), + [sym_select_else_arn_clause] = STATE(4536), + [sym_lock_expression] = STATE(2877), + [sym_unsafe_expression] = STATE(2877), + [sym_sql_expression] = STATE(2877), + [sym_c_string_literal] = STATE(2029), + [sym_raw_string_literal] = STATE(2029), + [sym_interpreted_string_literal] = STATE(2029), + [sym_mutability_modifiers] = STATE(641), + [sym_mutable_identifier] = STATE(3847), + [sym_identifier_list] = STATE(4511), [sym_expression_without_blocks_list] = STATE(3279), - [sym_plain_type] = STATE(4094), - [sym__plain_type_without_special] = STATE(2302), - [sym_anon_struct_type] = STATE(2303), - [sym_multi_return_type] = STATE(2302), - [sym_result_type] = STATE(2302), - [sym_option_type] = STATE(2302), - [sym_qualified_type] = STATE(3541), - [sym_fixed_array_type] = STATE(2303), - [sym_array_type] = STATE(2303), - [sym_pointer_type] = STATE(2303), - [sym_wrong_pointer_type] = STATE(2303), - [sym_map_type] = STATE(2303), - [sym_channel_type] = STATE(2303), - [sym_shared_type] = STATE(2303), - [sym_thread_type] = STATE(2303), - [sym_atomic_type] = STATE(2303), - [sym_generic_type] = STATE(2303), - [sym_function_type] = STATE(2303), - [sym_send_statement] = STATE(4478), - [aux_sym_map_init_expression_repeat1] = STATE(274), - [aux_sym_select_expression_repeat1] = STATE(146), - [sym_identifier] = ACTIONS(701), + [sym_plain_type] = STATE(4297), + [sym__plain_type_without_special] = STATE(2360), + [sym_anon_struct_type] = STATE(2362), + [sym_multi_return_type] = STATE(2360), + [sym_result_type] = STATE(2360), + [sym_option_type] = STATE(2360), + [sym_qualified_type] = STATE(3460), + [sym_fixed_array_type] = STATE(2362), + [sym_array_type] = STATE(2362), + [sym_pointer_type] = STATE(2362), + [sym_wrong_pointer_type] = STATE(2362), + [sym_map_type] = STATE(2362), + [sym_channel_type] = STATE(2362), + [sym_shared_type] = STATE(2362), + [sym_thread_type] = STATE(2362), + [sym_atomic_type] = STATE(2362), + [sym_generic_type] = STATE(2362), + [sym_function_type] = STATE(2362), + [sym_send_statement] = STATE(4507), + [aux_sym_select_expression_repeat1] = STATE(149), + [sym_identifier] = ACTIONS(767), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(703), - [anon_sym_LBRACE] = ACTIONS(705), - [anon_sym_RBRACE] = ACTIONS(803), - [anon_sym_LPAREN] = ACTIONS(709), - [anon_sym_fn] = ACTIONS(711), - [anon_sym_PLUS] = ACTIONS(713), - [anon_sym_DASH] = ACTIONS(713), - [anon_sym_STAR] = ACTIONS(715), - [anon_sym_struct] = ACTIONS(717), + [anon_sym_DOT] = ACTIONS(769), + [anon_sym_LBRACE] = ACTIONS(771), + [anon_sym_RBRACE] = ACTIONS(891), + [anon_sym_LPAREN] = ACTIONS(775), + [anon_sym_fn] = ACTIONS(777), + [anon_sym_PLUS] = ACTIONS(779), + [anon_sym_DASH] = ACTIONS(779), + [anon_sym_STAR] = ACTIONS(781), + [anon_sym_struct] = ACTIONS(783), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(719), - [anon_sym_go] = ACTIONS(721), - [anon_sym_spawn] = ACTIONS(723), - [anon_sym_json_DOTdecode] = ACTIONS(725), - [anon_sym_LBRACK2] = ACTIONS(727), - [anon_sym_TILDE] = ACTIONS(713), - [anon_sym_CARET] = ACTIONS(713), - [anon_sym_AMP] = ACTIONS(729), - [anon_sym_LT_DASH] = ACTIONS(731), - [sym_none] = ACTIONS(733), - [sym_true] = ACTIONS(733), - [sym_false] = ACTIONS(733), - [sym_nil] = ACTIONS(733), - [anon_sym_if] = ACTIONS(735), - [anon_sym_else] = ACTIONS(737), - [anon_sym_DOLLARif] = ACTIONS(739), - [anon_sym_match] = ACTIONS(741), - [anon_sym_select] = ACTIONS(743), - [anon_sym_lock] = ACTIONS(745), - [anon_sym_rlock] = ACTIONS(745), - [anon_sym_unsafe] = ACTIONS(747), - [anon_sym_sql] = ACTIONS(749), - [sym_int_literal] = ACTIONS(733), - [sym_float_literal] = ACTIONS(751), - [sym_rune_literal] = ACTIONS(751), - [sym_pseudo_compile_time_identifier] = ACTIONS(753), + [anon_sym_BANG] = ACTIONS(785), + [anon_sym_go] = ACTIONS(787), + [anon_sym_spawn] = ACTIONS(789), + [anon_sym_json_DOTdecode] = ACTIONS(791), + [anon_sym_LBRACK2] = ACTIONS(793), + [anon_sym_TILDE] = ACTIONS(779), + [anon_sym_CARET] = ACTIONS(779), + [anon_sym_AMP] = ACTIONS(795), + [anon_sym_LT_DASH] = ACTIONS(797), + [sym_none] = ACTIONS(799), + [sym_true] = ACTIONS(799), + [sym_false] = ACTIONS(799), + [sym_nil] = ACTIONS(799), + [anon_sym_if] = ACTIONS(801), + [anon_sym_else] = ACTIONS(803), + [anon_sym_DOLLARif] = ACTIONS(805), + [anon_sym_match] = ACTIONS(807), + [anon_sym_select] = ACTIONS(809), + [anon_sym_lock] = ACTIONS(811), + [anon_sym_rlock] = ACTIONS(811), + [anon_sym_unsafe] = ACTIONS(813), + [anon_sym_sql] = ACTIONS(815), + [sym_int_literal] = ACTIONS(799), + [sym_float_literal] = ACTIONS(817), + [sym_rune_literal] = ACTIONS(817), + [sym_pseudo_compile_time_identifier] = ACTIONS(819), [anon_sym_shared] = ACTIONS(83), [anon_sym_map_LBRACK] = ACTIONS(85), [anon_sym_chan] = ACTIONS(87), [anon_sym_thread] = ACTIONS(89), [anon_sym_atomic] = ACTIONS(91), - [sym___double_quote] = ACTIONS(755), - [sym___single_quote] = ACTIONS(757), - [sym___c_double_quote] = ACTIONS(759), - [sym___c_single_quote] = ACTIONS(761), - [sym___r_double_quote] = ACTIONS(763), - [sym___r_single_quote] = ACTIONS(765), + [sym___double_quote] = ACTIONS(821), + [sym___single_quote] = ACTIONS(823), + [sym___c_double_quote] = ACTIONS(825), + [sym___c_single_quote] = ACTIONS(827), + [sym___r_double_quote] = ACTIONS(829), + [sym___r_single_quote] = ACTIONS(831), }, - [107] = { - [sym_line_comment] = STATE(107), - [sym_block_comment] = STATE(107), - [sym__expression] = STATE(2588), - [sym__expression_without_blocks] = STATE(1902), - [sym__expression_with_blocks] = STATE(2870), - [sym_inc_expression] = STATE(2032), - [sym_dec_expression] = STATE(2032), - [sym_or_block_expression] = STATE(2032), - [sym_option_propagation_expression] = STATE(2032), - [sym_result_propagation_expression] = STATE(2032), - [sym_anon_struct_value_expression] = STATE(2868), - [sym_go_expression] = STATE(2032), - [sym_spawn_expression] = STATE(2032), - [sym_parenthesized_expression] = STATE(2032), - [sym_call_expression] = STATE(2032), - [sym_type_initializer] = STATE(2868), - [sym_function_literal] = STATE(2032), - [sym_reference_expression] = STATE(1914), - [sym_type_reference_expression] = STATE(3541), - [sym_unary_expression] = STATE(2032), - [sym_receive_expression] = STATE(2032), - [sym_binary_expression] = STATE(2032), - [sym_as_type_cast_expression] = STATE(2032), - [sym__max_group] = STATE(2032), - [sym_literal] = STATE(2027), - [sym_map_init_expression] = STATE(2868), - [sym_map_keyed_element] = STATE(2001), - [sym_array_creation] = STATE(2032), - [sym_fixed_array_creation] = STATE(2032), - [sym_selector_expression] = STATE(2032), - [sym_index_expression] = STATE(2032), - [sym_slice_expression] = STATE(2032), - [sym_if_expression] = STATE(2868), - [sym_compile_time_if_expression] = STATE(2868), - [sym_is_expression] = STATE(2032), - [sym_in_expression] = STATE(2032), - [sym_enum_fetch] = STATE(2032), - [sym_match_expression] = STATE(2868), - [sym_select_expression] = STATE(2868), - [sym_select_arm] = STATE(2139), - [sym_select_arm_statement] = STATE(4161), - [sym_select_var_declaration] = STATE(4478), - [sym_select_else_arn_clause] = STATE(4317), - [sym_lock_expression] = STATE(2868), - [sym_unsafe_expression] = STATE(2868), - [sym_sql_expression] = STATE(2868), - [sym_c_string_literal] = STATE(2026), - [sym_raw_string_literal] = STATE(2026), - [sym_interpreted_string_literal] = STATE(2026), - [sym_mutability_modifiers] = STATE(635), - [sym_mutable_identifier] = STATE(3928), - [sym_identifier_list] = STATE(4484), + [119] = { + [sym_line_comment] = STATE(119), + [sym_block_comment] = STATE(119), + [sym__expression] = STATE(2780), + [sym__expression_without_blocks] = STATE(1903), + [sym__expression_with_blocks] = STATE(2882), + [sym_inc_expression] = STATE(2035), + [sym_dec_expression] = STATE(2035), + [sym_or_block_expression] = STATE(2035), + [sym_option_propagation_expression] = STATE(2035), + [sym_result_propagation_expression] = STATE(2035), + [sym_anon_struct_value_expression] = STATE(2877), + [sym_go_expression] = STATE(2035), + [sym_spawn_expression] = STATE(2035), + [sym_parenthesized_expression] = STATE(2035), + [sym_call_expression] = STATE(2035), + [sym_type_initializer] = STATE(2877), + [sym_function_literal] = STATE(2035), + [sym_reference_expression] = STATE(1944), + [sym_type_reference_expression] = STATE(3460), + [sym_unary_expression] = STATE(2035), + [sym_receive_expression] = STATE(2035), + [sym_binary_expression] = STATE(2035), + [sym_as_type_cast_expression] = STATE(2035), + [sym__max_group] = STATE(2035), + [sym_literal] = STATE(2030), + [sym_map_init_expression] = STATE(2877), + [sym_array_creation] = STATE(2035), + [sym_fixed_array_creation] = STATE(2035), + [sym_selector_expression] = STATE(2035), + [sym_index_expression] = STATE(2035), + [sym_slice_expression] = STATE(2035), + [sym_if_expression] = STATE(2877), + [sym_compile_time_if_expression] = STATE(2877), + [sym_is_expression] = STATE(2035), + [sym_in_expression] = STATE(2035), + [sym_enum_fetch] = STATE(2035), + [sym_match_expression] = STATE(2877), + [sym_select_expression] = STATE(2877), + [sym_select_arm] = STATE(2140), + [sym_select_arm_statement] = STATE(4150), + [sym_select_var_declaration] = STATE(4507), + [sym_select_else_arn_clause] = STATE(4506), + [sym_lock_expression] = STATE(2877), + [sym_unsafe_expression] = STATE(2877), + [sym_sql_expression] = STATE(2877), + [sym_c_string_literal] = STATE(2029), + [sym_raw_string_literal] = STATE(2029), + [sym_interpreted_string_literal] = STATE(2029), + [sym_mutability_modifiers] = STATE(641), + [sym_mutable_identifier] = STATE(3847), + [sym_identifier_list] = STATE(4511), [sym_expression_without_blocks_list] = STATE(3279), - [sym_plain_type] = STATE(4094), - [sym__plain_type_without_special] = STATE(2302), - [sym_anon_struct_type] = STATE(2303), - [sym_multi_return_type] = STATE(2302), - [sym_result_type] = STATE(2302), - [sym_option_type] = STATE(2302), - [sym_qualified_type] = STATE(3541), - [sym_fixed_array_type] = STATE(2303), - [sym_array_type] = STATE(2303), - [sym_pointer_type] = STATE(2303), - [sym_wrong_pointer_type] = STATE(2303), - [sym_map_type] = STATE(2303), - [sym_channel_type] = STATE(2303), - [sym_shared_type] = STATE(2303), - [sym_thread_type] = STATE(2303), - [sym_atomic_type] = STATE(2303), - [sym_generic_type] = STATE(2303), - [sym_function_type] = STATE(2303), - [sym_send_statement] = STATE(4478), - [aux_sym_map_init_expression_repeat1] = STATE(274), - [aux_sym_select_expression_repeat1] = STATE(141), - [sym_identifier] = ACTIONS(701), + [sym_plain_type] = STATE(4297), + [sym__plain_type_without_special] = STATE(2360), + [sym_anon_struct_type] = STATE(2362), + [sym_multi_return_type] = STATE(2360), + [sym_result_type] = STATE(2360), + [sym_option_type] = STATE(2360), + [sym_qualified_type] = STATE(3460), + [sym_fixed_array_type] = STATE(2362), + [sym_array_type] = STATE(2362), + [sym_pointer_type] = STATE(2362), + [sym_wrong_pointer_type] = STATE(2362), + [sym_map_type] = STATE(2362), + [sym_channel_type] = STATE(2362), + [sym_shared_type] = STATE(2362), + [sym_thread_type] = STATE(2362), + [sym_atomic_type] = STATE(2362), + [sym_generic_type] = STATE(2362), + [sym_function_type] = STATE(2362), + [sym_send_statement] = STATE(4507), + [aux_sym_select_expression_repeat1] = STATE(149), + [sym_identifier] = ACTIONS(767), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(703), - [anon_sym_LBRACE] = ACTIONS(705), - [anon_sym_RBRACE] = ACTIONS(805), - [anon_sym_LPAREN] = ACTIONS(709), - [anon_sym_fn] = ACTIONS(711), - [anon_sym_PLUS] = ACTIONS(713), - [anon_sym_DASH] = ACTIONS(713), - [anon_sym_STAR] = ACTIONS(715), - [anon_sym_struct] = ACTIONS(717), + [anon_sym_DOT] = ACTIONS(769), + [anon_sym_LBRACE] = ACTIONS(771), + [anon_sym_RBRACE] = ACTIONS(893), + [anon_sym_LPAREN] = ACTIONS(775), + [anon_sym_fn] = ACTIONS(777), + [anon_sym_PLUS] = ACTIONS(779), + [anon_sym_DASH] = ACTIONS(779), + [anon_sym_STAR] = ACTIONS(781), + [anon_sym_struct] = ACTIONS(783), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(719), - [anon_sym_go] = ACTIONS(721), - [anon_sym_spawn] = ACTIONS(723), - [anon_sym_json_DOTdecode] = ACTIONS(725), - [anon_sym_LBRACK2] = ACTIONS(727), - [anon_sym_TILDE] = ACTIONS(713), - [anon_sym_CARET] = ACTIONS(713), - [anon_sym_AMP] = ACTIONS(729), - [anon_sym_LT_DASH] = ACTIONS(731), - [sym_none] = ACTIONS(733), - [sym_true] = ACTIONS(733), - [sym_false] = ACTIONS(733), - [sym_nil] = ACTIONS(733), - [anon_sym_if] = ACTIONS(735), - [anon_sym_else] = ACTIONS(737), - [anon_sym_DOLLARif] = ACTIONS(739), - [anon_sym_match] = ACTIONS(741), - [anon_sym_select] = ACTIONS(743), - [anon_sym_lock] = ACTIONS(745), - [anon_sym_rlock] = ACTIONS(745), - [anon_sym_unsafe] = ACTIONS(747), - [anon_sym_sql] = ACTIONS(749), - [sym_int_literal] = ACTIONS(733), - [sym_float_literal] = ACTIONS(751), - [sym_rune_literal] = ACTIONS(751), - [sym_pseudo_compile_time_identifier] = ACTIONS(753), + [anon_sym_BANG] = ACTIONS(785), + [anon_sym_go] = ACTIONS(787), + [anon_sym_spawn] = ACTIONS(789), + [anon_sym_json_DOTdecode] = ACTIONS(791), + [anon_sym_LBRACK2] = ACTIONS(793), + [anon_sym_TILDE] = ACTIONS(779), + [anon_sym_CARET] = ACTIONS(779), + [anon_sym_AMP] = ACTIONS(795), + [anon_sym_LT_DASH] = ACTIONS(797), + [sym_none] = ACTIONS(799), + [sym_true] = ACTIONS(799), + [sym_false] = ACTIONS(799), + [sym_nil] = ACTIONS(799), + [anon_sym_if] = ACTIONS(801), + [anon_sym_else] = ACTIONS(803), + [anon_sym_DOLLARif] = ACTIONS(805), + [anon_sym_match] = ACTIONS(807), + [anon_sym_select] = ACTIONS(809), + [anon_sym_lock] = ACTIONS(811), + [anon_sym_rlock] = ACTIONS(811), + [anon_sym_unsafe] = ACTIONS(813), + [anon_sym_sql] = ACTIONS(815), + [sym_int_literal] = ACTIONS(799), + [sym_float_literal] = ACTIONS(817), + [sym_rune_literal] = ACTIONS(817), + [sym_pseudo_compile_time_identifier] = ACTIONS(819), [anon_sym_shared] = ACTIONS(83), [anon_sym_map_LBRACK] = ACTIONS(85), [anon_sym_chan] = ACTIONS(87), [anon_sym_thread] = ACTIONS(89), [anon_sym_atomic] = ACTIONS(91), - [sym___double_quote] = ACTIONS(755), - [sym___single_quote] = ACTIONS(757), - [sym___c_double_quote] = ACTIONS(759), - [sym___c_single_quote] = ACTIONS(761), - [sym___r_double_quote] = ACTIONS(763), - [sym___r_single_quote] = ACTIONS(765), + [sym___double_quote] = ACTIONS(821), + [sym___single_quote] = ACTIONS(823), + [sym___c_double_quote] = ACTIONS(825), + [sym___c_single_quote] = ACTIONS(827), + [sym___r_double_quote] = ACTIONS(829), + [sym___r_single_quote] = ACTIONS(831), }, - [108] = { - [sym_line_comment] = STATE(108), - [sym_block_comment] = STATE(108), - [sym__expression] = STATE(1648), - [sym__expression_without_blocks] = STATE(2044), - [sym__expression_with_blocks] = STATE(2044), - [sym_strictly_expression_list] = STATE(4156), - [sym_inc_expression] = STATE(2045), - [sym_dec_expression] = STATE(2045), - [sym_or_block_expression] = STATE(2045), - [sym_option_propagation_expression] = STATE(2045), - [sym_result_propagation_expression] = STATE(2045), - [sym_anon_struct_value_expression] = STATE(2046), - [sym_go_expression] = STATE(2045), - [sym_spawn_expression] = STATE(2045), - [sym_parenthesized_expression] = STATE(2045), - [sym_call_expression] = STATE(2045), - [sym_type_initializer] = STATE(2046), - [sym_function_literal] = STATE(2045), - [sym_reference_expression] = STATE(1912), - [sym_type_reference_expression] = STATE(3541), - [sym_unary_expression] = STATE(2045), - [sym_receive_expression] = STATE(2045), - [sym_binary_expression] = STATE(2045), - [sym_as_type_cast_expression] = STATE(2045), - [sym__max_group] = STATE(2045), - [sym_literal] = STATE(2043), - [sym_map_init_expression] = STATE(2046), - [sym_array_creation] = STATE(2045), - [sym_fixed_array_creation] = STATE(2045), - [sym_selector_expression] = STATE(2045), - [sym_index_expression] = STATE(2045), - [sym_slice_expression] = STATE(2045), - [sym_if_expression] = STATE(2046), - [sym_compile_time_if_expression] = STATE(2046), - [sym_is_expression] = STATE(2045), - [sym_in_expression] = STATE(2045), - [sym_enum_fetch] = STATE(2045), - [sym_match_expression] = STATE(2046), - [sym_select_expression] = STATE(2046), - [sym_lock_expression] = STATE(2046), - [sym_unsafe_expression] = STATE(2046), - [sym_sql_expression] = STATE(2046), - [sym_c_string_literal] = STATE(2041), - [sym_raw_string_literal] = STATE(2041), - [sym_interpreted_string_literal] = STATE(2041), - [sym_mutability_modifiers] = STATE(702), - [sym_mutable_expression] = STATE(3273), - [sym_expression_list] = STATE(3299), - [sym_plain_type] = STATE(4052), - [sym__plain_type_without_special] = STATE(2302), - [sym_anon_struct_type] = STATE(2303), - [sym_multi_return_type] = STATE(2302), - [sym_result_type] = STATE(2302), - [sym_option_type] = STATE(2302), - [sym_qualified_type] = STATE(3541), - [sym_fixed_array_type] = STATE(2303), - [sym_array_type] = STATE(2303), - [sym_pointer_type] = STATE(2303), - [sym_wrong_pointer_type] = STATE(2303), - [sym_map_type] = STATE(2303), - [sym_channel_type] = STATE(2303), - [sym_shared_type] = STATE(2303), - [sym_thread_type] = STATE(2303), - [sym_atomic_type] = STATE(2303), - [sym_generic_type] = STATE(2303), - [sym_function_type] = STATE(2303), - [sym_simple_statement] = STATE(4423), - [sym_var_declaration] = STATE(4156), - [sym_var_definition_list] = STATE(4440), - [sym_var_definition] = STATE(3829), - [sym_assignment_statement] = STATE(4156), - [sym_block] = STATE(1488), - [sym_range_clause] = STATE(4198), - [sym_for_clause] = STATE(4198), - [sym_identifier] = ACTIONS(807), + [120] = { + [sym_line_comment] = STATE(120), + [sym_block_comment] = STATE(120), + [sym__expression] = STATE(2780), + [sym__expression_without_blocks] = STATE(1903), + [sym__expression_with_blocks] = STATE(2882), + [sym_inc_expression] = STATE(2035), + [sym_dec_expression] = STATE(2035), + [sym_or_block_expression] = STATE(2035), + [sym_option_propagation_expression] = STATE(2035), + [sym_result_propagation_expression] = STATE(2035), + [sym_anon_struct_value_expression] = STATE(2877), + [sym_go_expression] = STATE(2035), + [sym_spawn_expression] = STATE(2035), + [sym_parenthesized_expression] = STATE(2035), + [sym_call_expression] = STATE(2035), + [sym_type_initializer] = STATE(2877), + [sym_function_literal] = STATE(2035), + [sym_reference_expression] = STATE(1944), + [sym_type_reference_expression] = STATE(3460), + [sym_unary_expression] = STATE(2035), + [sym_receive_expression] = STATE(2035), + [sym_binary_expression] = STATE(2035), + [sym_as_type_cast_expression] = STATE(2035), + [sym__max_group] = STATE(2035), + [sym_literal] = STATE(2030), + [sym_map_init_expression] = STATE(2877), + [sym_array_creation] = STATE(2035), + [sym_fixed_array_creation] = STATE(2035), + [sym_selector_expression] = STATE(2035), + [sym_index_expression] = STATE(2035), + [sym_slice_expression] = STATE(2035), + [sym_if_expression] = STATE(2877), + [sym_compile_time_if_expression] = STATE(2877), + [sym_is_expression] = STATE(2035), + [sym_in_expression] = STATE(2035), + [sym_enum_fetch] = STATE(2035), + [sym_match_expression] = STATE(2877), + [sym_select_expression] = STATE(2877), + [sym_select_arm] = STATE(2140), + [sym_select_arm_statement] = STATE(4150), + [sym_select_var_declaration] = STATE(4507), + [sym_select_else_arn_clause] = STATE(4539), + [sym_lock_expression] = STATE(2877), + [sym_unsafe_expression] = STATE(2877), + [sym_sql_expression] = STATE(2877), + [sym_c_string_literal] = STATE(2029), + [sym_raw_string_literal] = STATE(2029), + [sym_interpreted_string_literal] = STATE(2029), + [sym_mutability_modifiers] = STATE(641), + [sym_mutable_identifier] = STATE(3847), + [sym_identifier_list] = STATE(4511), + [sym_expression_without_blocks_list] = STATE(3279), + [sym_plain_type] = STATE(4297), + [sym__plain_type_without_special] = STATE(2360), + [sym_anon_struct_type] = STATE(2362), + [sym_multi_return_type] = STATE(2360), + [sym_result_type] = STATE(2360), + [sym_option_type] = STATE(2360), + [sym_qualified_type] = STATE(3460), + [sym_fixed_array_type] = STATE(2362), + [sym_array_type] = STATE(2362), + [sym_pointer_type] = STATE(2362), + [sym_wrong_pointer_type] = STATE(2362), + [sym_map_type] = STATE(2362), + [sym_channel_type] = STATE(2362), + [sym_shared_type] = STATE(2362), + [sym_thread_type] = STATE(2362), + [sym_atomic_type] = STATE(2362), + [sym_generic_type] = STATE(2362), + [sym_function_type] = STATE(2362), + [sym_send_statement] = STATE(4507), + [aux_sym_select_expression_repeat1] = STATE(118), + [sym_identifier] = ACTIONS(767), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_SEMI] = ACTIONS(809), - [anon_sym_DOT] = ACTIONS(811), - [anon_sym_LBRACE] = ACTIONS(813), - [anon_sym_LPAREN] = ACTIONS(815), - [anon_sym_fn] = ACTIONS(817), - [anon_sym_PLUS] = ACTIONS(819), - [anon_sym_DASH] = ACTIONS(819), - [anon_sym_STAR] = ACTIONS(821), - [anon_sym_struct] = ACTIONS(823), - [anon_sym_mut] = ACTIONS(825), + [anon_sym_DOT] = ACTIONS(769), + [anon_sym_LBRACE] = ACTIONS(771), + [anon_sym_RBRACE] = ACTIONS(895), + [anon_sym_LPAREN] = ACTIONS(775), + [anon_sym_fn] = ACTIONS(777), + [anon_sym_PLUS] = ACTIONS(779), + [anon_sym_DASH] = ACTIONS(779), + [anon_sym_STAR] = ACTIONS(781), + [anon_sym_struct] = ACTIONS(783), + [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(827), - [anon_sym_go] = ACTIONS(829), - [anon_sym_spawn] = ACTIONS(831), - [anon_sym_json_DOTdecode] = ACTIONS(833), - [anon_sym_LBRACK2] = ACTIONS(835), - [anon_sym_TILDE] = ACTIONS(819), - [anon_sym_CARET] = ACTIONS(819), - [anon_sym_AMP] = ACTIONS(837), - [anon_sym_LT_DASH] = ACTIONS(839), - [sym_none] = ACTIONS(841), - [sym_true] = ACTIONS(841), - [sym_false] = ACTIONS(841), - [sym_nil] = ACTIONS(841), - [anon_sym_if] = ACTIONS(843), - [anon_sym_DOLLARif] = ACTIONS(845), - [anon_sym_match] = ACTIONS(847), - [anon_sym_select] = ACTIONS(849), - [anon_sym_lock] = ACTIONS(851), - [anon_sym_rlock] = ACTIONS(851), - [anon_sym_unsafe] = ACTIONS(853), - [anon_sym_sql] = ACTIONS(855), - [sym_int_literal] = ACTIONS(841), - [sym_float_literal] = ACTIONS(857), - [sym_rune_literal] = ACTIONS(857), - [sym_pseudo_compile_time_identifier] = ACTIONS(859), + [anon_sym_BANG] = ACTIONS(785), + [anon_sym_go] = ACTIONS(787), + [anon_sym_spawn] = ACTIONS(789), + [anon_sym_json_DOTdecode] = ACTIONS(791), + [anon_sym_LBRACK2] = ACTIONS(793), + [anon_sym_TILDE] = ACTIONS(779), + [anon_sym_CARET] = ACTIONS(779), + [anon_sym_AMP] = ACTIONS(795), + [anon_sym_LT_DASH] = ACTIONS(797), + [sym_none] = ACTIONS(799), + [sym_true] = ACTIONS(799), + [sym_false] = ACTIONS(799), + [sym_nil] = ACTIONS(799), + [anon_sym_if] = ACTIONS(801), + [anon_sym_else] = ACTIONS(803), + [anon_sym_DOLLARif] = ACTIONS(805), + [anon_sym_match] = ACTIONS(807), + [anon_sym_select] = ACTIONS(809), + [anon_sym_lock] = ACTIONS(811), + [anon_sym_rlock] = ACTIONS(811), + [anon_sym_unsafe] = ACTIONS(813), + [anon_sym_sql] = ACTIONS(815), + [sym_int_literal] = ACTIONS(799), + [sym_float_literal] = ACTIONS(817), + [sym_rune_literal] = ACTIONS(817), + [sym_pseudo_compile_time_identifier] = ACTIONS(819), [anon_sym_shared] = ACTIONS(83), [anon_sym_map_LBRACK] = ACTIONS(85), [anon_sym_chan] = ACTIONS(87), [anon_sym_thread] = ACTIONS(89), [anon_sym_atomic] = ACTIONS(91), - [sym___double_quote] = ACTIONS(861), - [sym___single_quote] = ACTIONS(863), - [sym___c_double_quote] = ACTIONS(865), - [sym___c_single_quote] = ACTIONS(867), - [sym___r_double_quote] = ACTIONS(869), - [sym___r_single_quote] = ACTIONS(871), + [sym___double_quote] = ACTIONS(821), + [sym___single_quote] = ACTIONS(823), + [sym___c_double_quote] = ACTIONS(825), + [sym___c_single_quote] = ACTIONS(827), + [sym___r_double_quote] = ACTIONS(829), + [sym___r_single_quote] = ACTIONS(831), }, - [109] = { - [sym_line_comment] = STATE(109), - [sym_block_comment] = STATE(109), - [sym__expression] = STATE(1656), - [sym__expression_without_blocks] = STATE(2044), - [sym__expression_with_blocks] = STATE(2044), - [sym_strictly_expression_list] = STATE(4156), - [sym_inc_expression] = STATE(2045), - [sym_dec_expression] = STATE(2045), - [sym_or_block_expression] = STATE(2045), - [sym_option_propagation_expression] = STATE(2045), - [sym_result_propagation_expression] = STATE(2045), - [sym_anon_struct_value_expression] = STATE(2046), - [sym_go_expression] = STATE(2045), - [sym_spawn_expression] = STATE(2045), - [sym_parenthesized_expression] = STATE(2045), - [sym_call_expression] = STATE(2045), - [sym_type_initializer] = STATE(2046), - [sym_function_literal] = STATE(2045), - [sym_reference_expression] = STATE(1912), - [sym_type_reference_expression] = STATE(3541), - [sym_unary_expression] = STATE(2045), - [sym_receive_expression] = STATE(2045), - [sym_binary_expression] = STATE(2045), - [sym_as_type_cast_expression] = STATE(2045), - [sym__max_group] = STATE(2045), - [sym_literal] = STATE(2043), - [sym_map_init_expression] = STATE(2046), - [sym_array_creation] = STATE(2045), - [sym_fixed_array_creation] = STATE(2045), - [sym_selector_expression] = STATE(2045), - [sym_index_expression] = STATE(2045), - [sym_slice_expression] = STATE(2045), - [sym_if_expression] = STATE(2046), - [sym_compile_time_if_expression] = STATE(2046), - [sym_is_expression] = STATE(2045), - [sym_in_expression] = STATE(2045), - [sym_enum_fetch] = STATE(2045), - [sym_match_expression] = STATE(2046), - [sym_select_expression] = STATE(2046), - [sym_lock_expression] = STATE(2046), - [sym_unsafe_expression] = STATE(2046), - [sym_sql_expression] = STATE(2046), - [sym_c_string_literal] = STATE(2041), - [sym_raw_string_literal] = STATE(2041), - [sym_interpreted_string_literal] = STATE(2041), - [sym_mutability_modifiers] = STATE(702), - [sym_mutable_expression] = STATE(3273), - [sym_expression_list] = STATE(3299), - [sym_plain_type] = STATE(4052), - [sym__plain_type_without_special] = STATE(2302), - [sym_anon_struct_type] = STATE(2303), - [sym_multi_return_type] = STATE(2302), - [sym_result_type] = STATE(2302), - [sym_option_type] = STATE(2302), - [sym_qualified_type] = STATE(3541), - [sym_fixed_array_type] = STATE(2303), - [sym_array_type] = STATE(2303), - [sym_pointer_type] = STATE(2303), - [sym_wrong_pointer_type] = STATE(2303), - [sym_map_type] = STATE(2303), - [sym_channel_type] = STATE(2303), - [sym_shared_type] = STATE(2303), - [sym_thread_type] = STATE(2303), - [sym_atomic_type] = STATE(2303), - [sym_generic_type] = STATE(2303), - [sym_function_type] = STATE(2303), - [sym_simple_statement] = STATE(4423), - [sym_var_declaration] = STATE(4156), - [sym_var_definition_list] = STATE(4440), - [sym_var_definition] = STATE(3829), - [sym_assignment_statement] = STATE(4156), - [sym_block] = STATE(3611), - [sym_range_clause] = STATE(4185), - [sym_for_clause] = STATE(4185), - [sym_identifier] = ACTIONS(807), + [121] = { + [sym_line_comment] = STATE(121), + [sym_block_comment] = STATE(121), + [sym__expression] = STATE(2780), + [sym__expression_without_blocks] = STATE(1903), + [sym__expression_with_blocks] = STATE(2882), + [sym_inc_expression] = STATE(2035), + [sym_dec_expression] = STATE(2035), + [sym_or_block_expression] = STATE(2035), + [sym_option_propagation_expression] = STATE(2035), + [sym_result_propagation_expression] = STATE(2035), + [sym_anon_struct_value_expression] = STATE(2877), + [sym_go_expression] = STATE(2035), + [sym_spawn_expression] = STATE(2035), + [sym_parenthesized_expression] = STATE(2035), + [sym_call_expression] = STATE(2035), + [sym_type_initializer] = STATE(2877), + [sym_function_literal] = STATE(2035), + [sym_reference_expression] = STATE(1944), + [sym_type_reference_expression] = STATE(3460), + [sym_unary_expression] = STATE(2035), + [sym_receive_expression] = STATE(2035), + [sym_binary_expression] = STATE(2035), + [sym_as_type_cast_expression] = STATE(2035), + [sym__max_group] = STATE(2035), + [sym_literal] = STATE(2030), + [sym_map_init_expression] = STATE(2877), + [sym_array_creation] = STATE(2035), + [sym_fixed_array_creation] = STATE(2035), + [sym_selector_expression] = STATE(2035), + [sym_index_expression] = STATE(2035), + [sym_slice_expression] = STATE(2035), + [sym_if_expression] = STATE(2877), + [sym_compile_time_if_expression] = STATE(2877), + [sym_is_expression] = STATE(2035), + [sym_in_expression] = STATE(2035), + [sym_enum_fetch] = STATE(2035), + [sym_match_expression] = STATE(2877), + [sym_select_expression] = STATE(2877), + [sym_select_arm] = STATE(2140), + [sym_select_arm_statement] = STATE(4150), + [sym_select_var_declaration] = STATE(4507), + [sym_select_else_arn_clause] = STATE(4386), + [sym_lock_expression] = STATE(2877), + [sym_unsafe_expression] = STATE(2877), + [sym_sql_expression] = STATE(2877), + [sym_c_string_literal] = STATE(2029), + [sym_raw_string_literal] = STATE(2029), + [sym_interpreted_string_literal] = STATE(2029), + [sym_mutability_modifiers] = STATE(641), + [sym_mutable_identifier] = STATE(3847), + [sym_identifier_list] = STATE(4511), + [sym_expression_without_blocks_list] = STATE(3279), + [sym_plain_type] = STATE(4297), + [sym__plain_type_without_special] = STATE(2360), + [sym_anon_struct_type] = STATE(2362), + [sym_multi_return_type] = STATE(2360), + [sym_result_type] = STATE(2360), + [sym_option_type] = STATE(2360), + [sym_qualified_type] = STATE(3460), + [sym_fixed_array_type] = STATE(2362), + [sym_array_type] = STATE(2362), + [sym_pointer_type] = STATE(2362), + [sym_wrong_pointer_type] = STATE(2362), + [sym_map_type] = STATE(2362), + [sym_channel_type] = STATE(2362), + [sym_shared_type] = STATE(2362), + [sym_thread_type] = STATE(2362), + [sym_atomic_type] = STATE(2362), + [sym_generic_type] = STATE(2362), + [sym_function_type] = STATE(2362), + [sym_send_statement] = STATE(4507), + [aux_sym_select_expression_repeat1] = STATE(149), + [sym_identifier] = ACTIONS(767), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_SEMI] = ACTIONS(809), - [anon_sym_DOT] = ACTIONS(811), - [anon_sym_LBRACE] = ACTIONS(873), - [anon_sym_LPAREN] = ACTIONS(815), - [anon_sym_fn] = ACTIONS(817), - [anon_sym_PLUS] = ACTIONS(819), - [anon_sym_DASH] = ACTIONS(819), - [anon_sym_STAR] = ACTIONS(821), - [anon_sym_struct] = ACTIONS(823), - [anon_sym_mut] = ACTIONS(825), + [anon_sym_DOT] = ACTIONS(769), + [anon_sym_LBRACE] = ACTIONS(771), + [anon_sym_RBRACE] = ACTIONS(897), + [anon_sym_LPAREN] = ACTIONS(775), + [anon_sym_fn] = ACTIONS(777), + [anon_sym_PLUS] = ACTIONS(779), + [anon_sym_DASH] = ACTIONS(779), + [anon_sym_STAR] = ACTIONS(781), + [anon_sym_struct] = ACTIONS(783), + [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(827), - [anon_sym_go] = ACTIONS(829), - [anon_sym_spawn] = ACTIONS(831), - [anon_sym_json_DOTdecode] = ACTIONS(833), - [anon_sym_LBRACK2] = ACTIONS(835), - [anon_sym_TILDE] = ACTIONS(819), - [anon_sym_CARET] = ACTIONS(819), - [anon_sym_AMP] = ACTIONS(837), - [anon_sym_LT_DASH] = ACTIONS(839), - [sym_none] = ACTIONS(841), - [sym_true] = ACTIONS(841), - [sym_false] = ACTIONS(841), - [sym_nil] = ACTIONS(841), - [anon_sym_if] = ACTIONS(843), - [anon_sym_DOLLARif] = ACTIONS(845), - [anon_sym_match] = ACTIONS(847), - [anon_sym_select] = ACTIONS(849), - [anon_sym_lock] = ACTIONS(851), - [anon_sym_rlock] = ACTIONS(851), - [anon_sym_unsafe] = ACTIONS(853), - [anon_sym_sql] = ACTIONS(855), - [sym_int_literal] = ACTIONS(841), - [sym_float_literal] = ACTIONS(857), - [sym_rune_literal] = ACTIONS(857), - [sym_pseudo_compile_time_identifier] = ACTIONS(859), + [anon_sym_BANG] = ACTIONS(785), + [anon_sym_go] = ACTIONS(787), + [anon_sym_spawn] = ACTIONS(789), + [anon_sym_json_DOTdecode] = ACTIONS(791), + [anon_sym_LBRACK2] = ACTIONS(793), + [anon_sym_TILDE] = ACTIONS(779), + [anon_sym_CARET] = ACTIONS(779), + [anon_sym_AMP] = ACTIONS(795), + [anon_sym_LT_DASH] = ACTIONS(797), + [sym_none] = ACTIONS(799), + [sym_true] = ACTIONS(799), + [sym_false] = ACTIONS(799), + [sym_nil] = ACTIONS(799), + [anon_sym_if] = ACTIONS(801), + [anon_sym_else] = ACTIONS(803), + [anon_sym_DOLLARif] = ACTIONS(805), + [anon_sym_match] = ACTIONS(807), + [anon_sym_select] = ACTIONS(809), + [anon_sym_lock] = ACTIONS(811), + [anon_sym_rlock] = ACTIONS(811), + [anon_sym_unsafe] = ACTIONS(813), + [anon_sym_sql] = ACTIONS(815), + [sym_int_literal] = ACTIONS(799), + [sym_float_literal] = ACTIONS(817), + [sym_rune_literal] = ACTIONS(817), + [sym_pseudo_compile_time_identifier] = ACTIONS(819), [anon_sym_shared] = ACTIONS(83), [anon_sym_map_LBRACK] = ACTIONS(85), [anon_sym_chan] = ACTIONS(87), [anon_sym_thread] = ACTIONS(89), [anon_sym_atomic] = ACTIONS(91), - [sym___double_quote] = ACTIONS(861), - [sym___single_quote] = ACTIONS(863), - [sym___c_double_quote] = ACTIONS(865), - [sym___c_single_quote] = ACTIONS(867), - [sym___r_double_quote] = ACTIONS(869), - [sym___r_single_quote] = ACTIONS(871), + [sym___double_quote] = ACTIONS(821), + [sym___single_quote] = ACTIONS(823), + [sym___c_double_quote] = ACTIONS(825), + [sym___c_single_quote] = ACTIONS(827), + [sym___r_double_quote] = ACTIONS(829), + [sym___r_single_quote] = ACTIONS(831), }, - [110] = { - [sym_line_comment] = STATE(110), - [sym_block_comment] = STATE(110), - [sym__expression] = STATE(2731), - [sym__expression_without_blocks] = STATE(1902), - [sym__expression_with_blocks] = STATE(2870), - [sym_inc_expression] = STATE(2032), - [sym_dec_expression] = STATE(2032), - [sym_or_block_expression] = STATE(2032), - [sym_option_propagation_expression] = STATE(2032), - [sym_result_propagation_expression] = STATE(2032), - [sym_anon_struct_value_expression] = STATE(2868), - [sym_go_expression] = STATE(2032), - [sym_spawn_expression] = STATE(2032), - [sym_parenthesized_expression] = STATE(2032), - [sym_call_expression] = STATE(2032), - [sym_type_initializer] = STATE(2868), - [sym_function_literal] = STATE(2032), - [sym_reference_expression] = STATE(1914), - [sym_type_reference_expression] = STATE(3541), - [sym_unary_expression] = STATE(2032), - [sym_receive_expression] = STATE(2032), - [sym_binary_expression] = STATE(2032), - [sym_as_type_cast_expression] = STATE(2032), - [sym__max_group] = STATE(2032), - [sym_literal] = STATE(2027), - [sym_map_init_expression] = STATE(2868), - [sym_array_creation] = STATE(2032), - [sym_fixed_array_creation] = STATE(2032), - [sym_selector_expression] = STATE(2032), - [sym_index_expression] = STATE(2032), - [sym_slice_expression] = STATE(2032), - [sym_if_expression] = STATE(2868), - [sym_compile_time_if_expression] = STATE(2868), - [sym_is_expression] = STATE(2032), - [sym_in_expression] = STATE(2032), - [sym_enum_fetch] = STATE(2032), - [sym_match_expression] = STATE(2868), - [sym_select_expression] = STATE(2868), - [sym_select_arm] = STATE(2139), - [sym_select_arm_statement] = STATE(4161), - [sym_select_var_declaration] = STATE(4478), - [sym_select_else_arn_clause] = STATE(4322), - [sym_lock_expression] = STATE(2868), - [sym_unsafe_expression] = STATE(2868), - [sym_sql_expression] = STATE(2868), - [sym_c_string_literal] = STATE(2026), - [sym_raw_string_literal] = STATE(2026), - [sym_interpreted_string_literal] = STATE(2026), - [sym_mutability_modifiers] = STATE(635), - [sym_mutable_identifier] = STATE(3928), - [sym_identifier_list] = STATE(4484), + [122] = { + [sym_line_comment] = STATE(122), + [sym_block_comment] = STATE(122), + [sym__expression] = STATE(2780), + [sym__expression_without_blocks] = STATE(1903), + [sym__expression_with_blocks] = STATE(2882), + [sym_inc_expression] = STATE(2035), + [sym_dec_expression] = STATE(2035), + [sym_or_block_expression] = STATE(2035), + [sym_option_propagation_expression] = STATE(2035), + [sym_result_propagation_expression] = STATE(2035), + [sym_anon_struct_value_expression] = STATE(2877), + [sym_go_expression] = STATE(2035), + [sym_spawn_expression] = STATE(2035), + [sym_parenthesized_expression] = STATE(2035), + [sym_call_expression] = STATE(2035), + [sym_type_initializer] = STATE(2877), + [sym_function_literal] = STATE(2035), + [sym_reference_expression] = STATE(1944), + [sym_type_reference_expression] = STATE(3460), + [sym_unary_expression] = STATE(2035), + [sym_receive_expression] = STATE(2035), + [sym_binary_expression] = STATE(2035), + [sym_as_type_cast_expression] = STATE(2035), + [sym__max_group] = STATE(2035), + [sym_literal] = STATE(2030), + [sym_map_init_expression] = STATE(2877), + [sym_array_creation] = STATE(2035), + [sym_fixed_array_creation] = STATE(2035), + [sym_selector_expression] = STATE(2035), + [sym_index_expression] = STATE(2035), + [sym_slice_expression] = STATE(2035), + [sym_if_expression] = STATE(2877), + [sym_compile_time_if_expression] = STATE(2877), + [sym_is_expression] = STATE(2035), + [sym_in_expression] = STATE(2035), + [sym_enum_fetch] = STATE(2035), + [sym_match_expression] = STATE(2877), + [sym_select_expression] = STATE(2877), + [sym_select_arm] = STATE(2140), + [sym_select_arm_statement] = STATE(4150), + [sym_select_var_declaration] = STATE(4507), + [sym_select_else_arn_clause] = STATE(4385), + [sym_lock_expression] = STATE(2877), + [sym_unsafe_expression] = STATE(2877), + [sym_sql_expression] = STATE(2877), + [sym_c_string_literal] = STATE(2029), + [sym_raw_string_literal] = STATE(2029), + [sym_interpreted_string_literal] = STATE(2029), + [sym_mutability_modifiers] = STATE(641), + [sym_mutable_identifier] = STATE(3847), + [sym_identifier_list] = STATE(4511), [sym_expression_without_blocks_list] = STATE(3279), - [sym_plain_type] = STATE(4094), - [sym__plain_type_without_special] = STATE(2302), - [sym_anon_struct_type] = STATE(2303), - [sym_multi_return_type] = STATE(2302), - [sym_result_type] = STATE(2302), - [sym_option_type] = STATE(2302), - [sym_qualified_type] = STATE(3541), - [sym_fixed_array_type] = STATE(2303), - [sym_array_type] = STATE(2303), - [sym_pointer_type] = STATE(2303), - [sym_wrong_pointer_type] = STATE(2303), - [sym_map_type] = STATE(2303), - [sym_channel_type] = STATE(2303), - [sym_shared_type] = STATE(2303), - [sym_thread_type] = STATE(2303), - [sym_atomic_type] = STATE(2303), - [sym_generic_type] = STATE(2303), - [sym_function_type] = STATE(2303), - [sym_send_statement] = STATE(4478), - [aux_sym_select_expression_repeat1] = STATE(122), - [sym_identifier] = ACTIONS(701), + [sym_plain_type] = STATE(4297), + [sym__plain_type_without_special] = STATE(2360), + [sym_anon_struct_type] = STATE(2362), + [sym_multi_return_type] = STATE(2360), + [sym_result_type] = STATE(2360), + [sym_option_type] = STATE(2360), + [sym_qualified_type] = STATE(3460), + [sym_fixed_array_type] = STATE(2362), + [sym_array_type] = STATE(2362), + [sym_pointer_type] = STATE(2362), + [sym_wrong_pointer_type] = STATE(2362), + [sym_map_type] = STATE(2362), + [sym_channel_type] = STATE(2362), + [sym_shared_type] = STATE(2362), + [sym_thread_type] = STATE(2362), + [sym_atomic_type] = STATE(2362), + [sym_generic_type] = STATE(2362), + [sym_function_type] = STATE(2362), + [sym_send_statement] = STATE(4507), + [aux_sym_select_expression_repeat1] = STATE(113), + [sym_identifier] = ACTIONS(767), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(703), - [anon_sym_LBRACE] = ACTIONS(705), - [anon_sym_RBRACE] = ACTIONS(875), - [anon_sym_LPAREN] = ACTIONS(709), - [anon_sym_fn] = ACTIONS(711), - [anon_sym_PLUS] = ACTIONS(713), - [anon_sym_DASH] = ACTIONS(713), - [anon_sym_STAR] = ACTIONS(715), - [anon_sym_struct] = ACTIONS(717), + [anon_sym_DOT] = ACTIONS(769), + [anon_sym_LBRACE] = ACTIONS(771), + [anon_sym_RBRACE] = ACTIONS(899), + [anon_sym_LPAREN] = ACTIONS(775), + [anon_sym_fn] = ACTIONS(777), + [anon_sym_PLUS] = ACTIONS(779), + [anon_sym_DASH] = ACTIONS(779), + [anon_sym_STAR] = ACTIONS(781), + [anon_sym_struct] = ACTIONS(783), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(719), - [anon_sym_go] = ACTIONS(721), - [anon_sym_spawn] = ACTIONS(723), - [anon_sym_json_DOTdecode] = ACTIONS(725), - [anon_sym_LBRACK2] = ACTIONS(727), - [anon_sym_TILDE] = ACTIONS(713), - [anon_sym_CARET] = ACTIONS(713), - [anon_sym_AMP] = ACTIONS(729), - [anon_sym_LT_DASH] = ACTIONS(731), - [sym_none] = ACTIONS(733), - [sym_true] = ACTIONS(733), - [sym_false] = ACTIONS(733), - [sym_nil] = ACTIONS(733), - [anon_sym_if] = ACTIONS(735), - [anon_sym_else] = ACTIONS(737), - [anon_sym_DOLLARif] = ACTIONS(739), - [anon_sym_match] = ACTIONS(741), - [anon_sym_select] = ACTIONS(743), - [anon_sym_lock] = ACTIONS(745), - [anon_sym_rlock] = ACTIONS(745), - [anon_sym_unsafe] = ACTIONS(747), - [anon_sym_sql] = ACTIONS(749), - [sym_int_literal] = ACTIONS(733), - [sym_float_literal] = ACTIONS(751), - [sym_rune_literal] = ACTIONS(751), - [sym_pseudo_compile_time_identifier] = ACTIONS(753), + [anon_sym_BANG] = ACTIONS(785), + [anon_sym_go] = ACTIONS(787), + [anon_sym_spawn] = ACTIONS(789), + [anon_sym_json_DOTdecode] = ACTIONS(791), + [anon_sym_LBRACK2] = ACTIONS(793), + [anon_sym_TILDE] = ACTIONS(779), + [anon_sym_CARET] = ACTIONS(779), + [anon_sym_AMP] = ACTIONS(795), + [anon_sym_LT_DASH] = ACTIONS(797), + [sym_none] = ACTIONS(799), + [sym_true] = ACTIONS(799), + [sym_false] = ACTIONS(799), + [sym_nil] = ACTIONS(799), + [anon_sym_if] = ACTIONS(801), + [anon_sym_else] = ACTIONS(803), + [anon_sym_DOLLARif] = ACTIONS(805), + [anon_sym_match] = ACTIONS(807), + [anon_sym_select] = ACTIONS(809), + [anon_sym_lock] = ACTIONS(811), + [anon_sym_rlock] = ACTIONS(811), + [anon_sym_unsafe] = ACTIONS(813), + [anon_sym_sql] = ACTIONS(815), + [sym_int_literal] = ACTIONS(799), + [sym_float_literal] = ACTIONS(817), + [sym_rune_literal] = ACTIONS(817), + [sym_pseudo_compile_time_identifier] = ACTIONS(819), [anon_sym_shared] = ACTIONS(83), [anon_sym_map_LBRACK] = ACTIONS(85), [anon_sym_chan] = ACTIONS(87), [anon_sym_thread] = ACTIONS(89), [anon_sym_atomic] = ACTIONS(91), - [sym___double_quote] = ACTIONS(755), - [sym___single_quote] = ACTIONS(757), - [sym___c_double_quote] = ACTIONS(759), - [sym___c_single_quote] = ACTIONS(761), - [sym___r_double_quote] = ACTIONS(763), - [sym___r_single_quote] = ACTIONS(765), + [sym___double_quote] = ACTIONS(821), + [sym___single_quote] = ACTIONS(823), + [sym___c_double_quote] = ACTIONS(825), + [sym___c_single_quote] = ACTIONS(827), + [sym___r_double_quote] = ACTIONS(829), + [sym___r_single_quote] = ACTIONS(831), }, - [111] = { - [sym_line_comment] = STATE(111), - [sym_block_comment] = STATE(111), - [sym__expression] = STATE(2731), - [sym__expression_without_blocks] = STATE(1902), - [sym__expression_with_blocks] = STATE(2870), - [sym_inc_expression] = STATE(2032), - [sym_dec_expression] = STATE(2032), - [sym_or_block_expression] = STATE(2032), - [sym_option_propagation_expression] = STATE(2032), - [sym_result_propagation_expression] = STATE(2032), - [sym_anon_struct_value_expression] = STATE(2868), - [sym_go_expression] = STATE(2032), - [sym_spawn_expression] = STATE(2032), - [sym_parenthesized_expression] = STATE(2032), - [sym_call_expression] = STATE(2032), - [sym_type_initializer] = STATE(2868), - [sym_function_literal] = STATE(2032), - [sym_reference_expression] = STATE(1914), - [sym_type_reference_expression] = STATE(3541), - [sym_unary_expression] = STATE(2032), - [sym_receive_expression] = STATE(2032), - [sym_binary_expression] = STATE(2032), - [sym_as_type_cast_expression] = STATE(2032), - [sym__max_group] = STATE(2032), - [sym_literal] = STATE(2027), - [sym_map_init_expression] = STATE(2868), - [sym_array_creation] = STATE(2032), - [sym_fixed_array_creation] = STATE(2032), - [sym_selector_expression] = STATE(2032), - [sym_index_expression] = STATE(2032), - [sym_slice_expression] = STATE(2032), - [sym_if_expression] = STATE(2868), - [sym_compile_time_if_expression] = STATE(2868), - [sym_is_expression] = STATE(2032), - [sym_in_expression] = STATE(2032), - [sym_enum_fetch] = STATE(2032), - [sym_match_expression] = STATE(2868), - [sym_select_expression] = STATE(2868), - [sym_select_arm] = STATE(2139), - [sym_select_arm_statement] = STATE(4161), - [sym_select_var_declaration] = STATE(4478), - [sym_select_else_arn_clause] = STATE(4319), - [sym_lock_expression] = STATE(2868), - [sym_unsafe_expression] = STATE(2868), - [sym_sql_expression] = STATE(2868), - [sym_c_string_literal] = STATE(2026), - [sym_raw_string_literal] = STATE(2026), - [sym_interpreted_string_literal] = STATE(2026), - [sym_mutability_modifiers] = STATE(635), - [sym_mutable_identifier] = STATE(3928), - [sym_identifier_list] = STATE(4484), + [123] = { + [sym_line_comment] = STATE(123), + [sym_block_comment] = STATE(123), + [sym__expression] = STATE(2780), + [sym__expression_without_blocks] = STATE(1903), + [sym__expression_with_blocks] = STATE(2882), + [sym_inc_expression] = STATE(2035), + [sym_dec_expression] = STATE(2035), + [sym_or_block_expression] = STATE(2035), + [sym_option_propagation_expression] = STATE(2035), + [sym_result_propagation_expression] = STATE(2035), + [sym_anon_struct_value_expression] = STATE(2877), + [sym_go_expression] = STATE(2035), + [sym_spawn_expression] = STATE(2035), + [sym_parenthesized_expression] = STATE(2035), + [sym_call_expression] = STATE(2035), + [sym_type_initializer] = STATE(2877), + [sym_function_literal] = STATE(2035), + [sym_reference_expression] = STATE(1944), + [sym_type_reference_expression] = STATE(3460), + [sym_unary_expression] = STATE(2035), + [sym_receive_expression] = STATE(2035), + [sym_binary_expression] = STATE(2035), + [sym_as_type_cast_expression] = STATE(2035), + [sym__max_group] = STATE(2035), + [sym_literal] = STATE(2030), + [sym_map_init_expression] = STATE(2877), + [sym_array_creation] = STATE(2035), + [sym_fixed_array_creation] = STATE(2035), + [sym_selector_expression] = STATE(2035), + [sym_index_expression] = STATE(2035), + [sym_slice_expression] = STATE(2035), + [sym_if_expression] = STATE(2877), + [sym_compile_time_if_expression] = STATE(2877), + [sym_is_expression] = STATE(2035), + [sym_in_expression] = STATE(2035), + [sym_enum_fetch] = STATE(2035), + [sym_match_expression] = STATE(2877), + [sym_select_expression] = STATE(2877), + [sym_select_arm] = STATE(2140), + [sym_select_arm_statement] = STATE(4150), + [sym_select_var_declaration] = STATE(4507), + [sym_select_else_arn_clause] = STATE(4540), + [sym_lock_expression] = STATE(2877), + [sym_unsafe_expression] = STATE(2877), + [sym_sql_expression] = STATE(2877), + [sym_c_string_literal] = STATE(2029), + [sym_raw_string_literal] = STATE(2029), + [sym_interpreted_string_literal] = STATE(2029), + [sym_mutability_modifiers] = STATE(641), + [sym_mutable_identifier] = STATE(3847), + [sym_identifier_list] = STATE(4511), [sym_expression_without_blocks_list] = STATE(3279), - [sym_plain_type] = STATE(4094), - [sym__plain_type_without_special] = STATE(2302), - [sym_anon_struct_type] = STATE(2303), - [sym_multi_return_type] = STATE(2302), - [sym_result_type] = STATE(2302), - [sym_option_type] = STATE(2302), - [sym_qualified_type] = STATE(3541), - [sym_fixed_array_type] = STATE(2303), - [sym_array_type] = STATE(2303), - [sym_pointer_type] = STATE(2303), - [sym_wrong_pointer_type] = STATE(2303), - [sym_map_type] = STATE(2303), - [sym_channel_type] = STATE(2303), - [sym_shared_type] = STATE(2303), - [sym_thread_type] = STATE(2303), - [sym_atomic_type] = STATE(2303), - [sym_generic_type] = STATE(2303), - [sym_function_type] = STATE(2303), - [sym_send_statement] = STATE(4478), + [sym_plain_type] = STATE(4297), + [sym__plain_type_without_special] = STATE(2360), + [sym_anon_struct_type] = STATE(2362), + [sym_multi_return_type] = STATE(2360), + [sym_result_type] = STATE(2360), + [sym_option_type] = STATE(2360), + [sym_qualified_type] = STATE(3460), + [sym_fixed_array_type] = STATE(2362), + [sym_array_type] = STATE(2362), + [sym_pointer_type] = STATE(2362), + [sym_wrong_pointer_type] = STATE(2362), + [sym_map_type] = STATE(2362), + [sym_channel_type] = STATE(2362), + [sym_shared_type] = STATE(2362), + [sym_thread_type] = STATE(2362), + [sym_atomic_type] = STATE(2362), + [sym_generic_type] = STATE(2362), + [sym_function_type] = STATE(2362), + [sym_send_statement] = STATE(4507), [aux_sym_select_expression_repeat1] = STATE(149), - [sym_identifier] = ACTIONS(701), + [sym_identifier] = ACTIONS(767), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(703), - [anon_sym_LBRACE] = ACTIONS(705), - [anon_sym_RBRACE] = ACTIONS(877), - [anon_sym_LPAREN] = ACTIONS(709), - [anon_sym_fn] = ACTIONS(711), - [anon_sym_PLUS] = ACTIONS(713), - [anon_sym_DASH] = ACTIONS(713), - [anon_sym_STAR] = ACTIONS(715), - [anon_sym_struct] = ACTIONS(717), + [anon_sym_DOT] = ACTIONS(769), + [anon_sym_LBRACE] = ACTIONS(771), + [anon_sym_RBRACE] = ACTIONS(901), + [anon_sym_LPAREN] = ACTIONS(775), + [anon_sym_fn] = ACTIONS(777), + [anon_sym_PLUS] = ACTIONS(779), + [anon_sym_DASH] = ACTIONS(779), + [anon_sym_STAR] = ACTIONS(781), + [anon_sym_struct] = ACTIONS(783), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(719), - [anon_sym_go] = ACTIONS(721), - [anon_sym_spawn] = ACTIONS(723), - [anon_sym_json_DOTdecode] = ACTIONS(725), - [anon_sym_LBRACK2] = ACTIONS(727), - [anon_sym_TILDE] = ACTIONS(713), - [anon_sym_CARET] = ACTIONS(713), - [anon_sym_AMP] = ACTIONS(729), - [anon_sym_LT_DASH] = ACTIONS(731), - [sym_none] = ACTIONS(733), - [sym_true] = ACTIONS(733), - [sym_false] = ACTIONS(733), - [sym_nil] = ACTIONS(733), - [anon_sym_if] = ACTIONS(735), - [anon_sym_else] = ACTIONS(737), - [anon_sym_DOLLARif] = ACTIONS(739), - [anon_sym_match] = ACTIONS(741), - [anon_sym_select] = ACTIONS(743), - [anon_sym_lock] = ACTIONS(745), - [anon_sym_rlock] = ACTIONS(745), - [anon_sym_unsafe] = ACTIONS(747), - [anon_sym_sql] = ACTIONS(749), - [sym_int_literal] = ACTIONS(733), - [sym_float_literal] = ACTIONS(751), - [sym_rune_literal] = ACTIONS(751), - [sym_pseudo_compile_time_identifier] = ACTIONS(753), + [anon_sym_BANG] = ACTIONS(785), + [anon_sym_go] = ACTIONS(787), + [anon_sym_spawn] = ACTIONS(789), + [anon_sym_json_DOTdecode] = ACTIONS(791), + [anon_sym_LBRACK2] = ACTIONS(793), + [anon_sym_TILDE] = ACTIONS(779), + [anon_sym_CARET] = ACTIONS(779), + [anon_sym_AMP] = ACTIONS(795), + [anon_sym_LT_DASH] = ACTIONS(797), + [sym_none] = ACTIONS(799), + [sym_true] = ACTIONS(799), + [sym_false] = ACTIONS(799), + [sym_nil] = ACTIONS(799), + [anon_sym_if] = ACTIONS(801), + [anon_sym_else] = ACTIONS(803), + [anon_sym_DOLLARif] = ACTIONS(805), + [anon_sym_match] = ACTIONS(807), + [anon_sym_select] = ACTIONS(809), + [anon_sym_lock] = ACTIONS(811), + [anon_sym_rlock] = ACTIONS(811), + [anon_sym_unsafe] = ACTIONS(813), + [anon_sym_sql] = ACTIONS(815), + [sym_int_literal] = ACTIONS(799), + [sym_float_literal] = ACTIONS(817), + [sym_rune_literal] = ACTIONS(817), + [sym_pseudo_compile_time_identifier] = ACTIONS(819), [anon_sym_shared] = ACTIONS(83), [anon_sym_map_LBRACK] = ACTIONS(85), [anon_sym_chan] = ACTIONS(87), [anon_sym_thread] = ACTIONS(89), [anon_sym_atomic] = ACTIONS(91), - [sym___double_quote] = ACTIONS(755), - [sym___single_quote] = ACTIONS(757), - [sym___c_double_quote] = ACTIONS(759), - [sym___c_single_quote] = ACTIONS(761), - [sym___r_double_quote] = ACTIONS(763), - [sym___r_single_quote] = ACTIONS(765), + [sym___double_quote] = ACTIONS(821), + [sym___single_quote] = ACTIONS(823), + [sym___c_double_quote] = ACTIONS(825), + [sym___c_single_quote] = ACTIONS(827), + [sym___r_double_quote] = ACTIONS(829), + [sym___r_single_quote] = ACTIONS(831), }, - [112] = { - [sym_line_comment] = STATE(112), - [sym_block_comment] = STATE(112), - [sym__expression] = STATE(2731), - [sym__expression_without_blocks] = STATE(1902), - [sym__expression_with_blocks] = STATE(2870), - [sym_inc_expression] = STATE(2032), - [sym_dec_expression] = STATE(2032), - [sym_or_block_expression] = STATE(2032), - [sym_option_propagation_expression] = STATE(2032), - [sym_result_propagation_expression] = STATE(2032), - [sym_anon_struct_value_expression] = STATE(2868), - [sym_go_expression] = STATE(2032), - [sym_spawn_expression] = STATE(2032), - [sym_parenthesized_expression] = STATE(2032), - [sym_call_expression] = STATE(2032), - [sym_type_initializer] = STATE(2868), - [sym_function_literal] = STATE(2032), - [sym_reference_expression] = STATE(1914), - [sym_type_reference_expression] = STATE(3541), - [sym_unary_expression] = STATE(2032), - [sym_receive_expression] = STATE(2032), - [sym_binary_expression] = STATE(2032), - [sym_as_type_cast_expression] = STATE(2032), - [sym__max_group] = STATE(2032), - [sym_literal] = STATE(2027), - [sym_map_init_expression] = STATE(2868), - [sym_array_creation] = STATE(2032), - [sym_fixed_array_creation] = STATE(2032), - [sym_selector_expression] = STATE(2032), - [sym_index_expression] = STATE(2032), - [sym_slice_expression] = STATE(2032), - [sym_if_expression] = STATE(2868), - [sym_compile_time_if_expression] = STATE(2868), - [sym_is_expression] = STATE(2032), - [sym_in_expression] = STATE(2032), - [sym_enum_fetch] = STATE(2032), - [sym_match_expression] = STATE(2868), - [sym_select_expression] = STATE(2868), - [sym_select_arm] = STATE(2139), - [sym_select_arm_statement] = STATE(4161), - [sym_select_var_declaration] = STATE(4478), + [124] = { + [sym_line_comment] = STATE(124), + [sym_block_comment] = STATE(124), + [sym__expression] = STATE(2780), + [sym__expression_without_blocks] = STATE(1903), + [sym__expression_with_blocks] = STATE(2882), + [sym_inc_expression] = STATE(2035), + [sym_dec_expression] = STATE(2035), + [sym_or_block_expression] = STATE(2035), + [sym_option_propagation_expression] = STATE(2035), + [sym_result_propagation_expression] = STATE(2035), + [sym_anon_struct_value_expression] = STATE(2877), + [sym_go_expression] = STATE(2035), + [sym_spawn_expression] = STATE(2035), + [sym_parenthesized_expression] = STATE(2035), + [sym_call_expression] = STATE(2035), + [sym_type_initializer] = STATE(2877), + [sym_function_literal] = STATE(2035), + [sym_reference_expression] = STATE(1944), + [sym_type_reference_expression] = STATE(3460), + [sym_unary_expression] = STATE(2035), + [sym_receive_expression] = STATE(2035), + [sym_binary_expression] = STATE(2035), + [sym_as_type_cast_expression] = STATE(2035), + [sym__max_group] = STATE(2035), + [sym_literal] = STATE(2030), + [sym_map_init_expression] = STATE(2877), + [sym_array_creation] = STATE(2035), + [sym_fixed_array_creation] = STATE(2035), + [sym_selector_expression] = STATE(2035), + [sym_index_expression] = STATE(2035), + [sym_slice_expression] = STATE(2035), + [sym_if_expression] = STATE(2877), + [sym_compile_time_if_expression] = STATE(2877), + [sym_is_expression] = STATE(2035), + [sym_in_expression] = STATE(2035), + [sym_enum_fetch] = STATE(2035), + [sym_match_expression] = STATE(2877), + [sym_select_expression] = STATE(2877), + [sym_select_arm] = STATE(2140), + [sym_select_arm_statement] = STATE(4150), + [sym_select_var_declaration] = STATE(4507), [sym_select_else_arn_clause] = STATE(4560), - [sym_lock_expression] = STATE(2868), - [sym_unsafe_expression] = STATE(2868), - [sym_sql_expression] = STATE(2868), - [sym_c_string_literal] = STATE(2026), - [sym_raw_string_literal] = STATE(2026), - [sym_interpreted_string_literal] = STATE(2026), - [sym_mutability_modifiers] = STATE(635), - [sym_mutable_identifier] = STATE(3928), - [sym_identifier_list] = STATE(4484), + [sym_lock_expression] = STATE(2877), + [sym_unsafe_expression] = STATE(2877), + [sym_sql_expression] = STATE(2877), + [sym_c_string_literal] = STATE(2029), + [sym_raw_string_literal] = STATE(2029), + [sym_interpreted_string_literal] = STATE(2029), + [sym_mutability_modifiers] = STATE(641), + [sym_mutable_identifier] = STATE(3847), + [sym_identifier_list] = STATE(4511), [sym_expression_without_blocks_list] = STATE(3279), - [sym_plain_type] = STATE(4094), - [sym__plain_type_without_special] = STATE(2302), - [sym_anon_struct_type] = STATE(2303), - [sym_multi_return_type] = STATE(2302), - [sym_result_type] = STATE(2302), - [sym_option_type] = STATE(2302), - [sym_qualified_type] = STATE(3541), - [sym_fixed_array_type] = STATE(2303), - [sym_array_type] = STATE(2303), - [sym_pointer_type] = STATE(2303), - [sym_wrong_pointer_type] = STATE(2303), - [sym_map_type] = STATE(2303), - [sym_channel_type] = STATE(2303), - [sym_shared_type] = STATE(2303), - [sym_thread_type] = STATE(2303), - [sym_atomic_type] = STATE(2303), - [sym_generic_type] = STATE(2303), - [sym_function_type] = STATE(2303), - [sym_send_statement] = STATE(4478), - [aux_sym_select_expression_repeat1] = STATE(149), - [sym_identifier] = ACTIONS(701), + [sym_plain_type] = STATE(4297), + [sym__plain_type_without_special] = STATE(2360), + [sym_anon_struct_type] = STATE(2362), + [sym_multi_return_type] = STATE(2360), + [sym_result_type] = STATE(2360), + [sym_option_type] = STATE(2360), + [sym_qualified_type] = STATE(3460), + [sym_fixed_array_type] = STATE(2362), + [sym_array_type] = STATE(2362), + [sym_pointer_type] = STATE(2362), + [sym_wrong_pointer_type] = STATE(2362), + [sym_map_type] = STATE(2362), + [sym_channel_type] = STATE(2362), + [sym_shared_type] = STATE(2362), + [sym_thread_type] = STATE(2362), + [sym_atomic_type] = STATE(2362), + [sym_generic_type] = STATE(2362), + [sym_function_type] = STATE(2362), + [sym_send_statement] = STATE(4507), + [aux_sym_select_expression_repeat1] = STATE(148), + [sym_identifier] = ACTIONS(767), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(703), - [anon_sym_LBRACE] = ACTIONS(705), - [anon_sym_RBRACE] = ACTIONS(879), - [anon_sym_LPAREN] = ACTIONS(709), - [anon_sym_fn] = ACTIONS(711), - [anon_sym_PLUS] = ACTIONS(713), - [anon_sym_DASH] = ACTIONS(713), - [anon_sym_STAR] = ACTIONS(715), - [anon_sym_struct] = ACTIONS(717), + [anon_sym_DOT] = ACTIONS(769), + [anon_sym_LBRACE] = ACTIONS(771), + [anon_sym_RBRACE] = ACTIONS(903), + [anon_sym_LPAREN] = ACTIONS(775), + [anon_sym_fn] = ACTIONS(777), + [anon_sym_PLUS] = ACTIONS(779), + [anon_sym_DASH] = ACTIONS(779), + [anon_sym_STAR] = ACTIONS(781), + [anon_sym_struct] = ACTIONS(783), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(719), - [anon_sym_go] = ACTIONS(721), - [anon_sym_spawn] = ACTIONS(723), - [anon_sym_json_DOTdecode] = ACTIONS(725), - [anon_sym_LBRACK2] = ACTIONS(727), - [anon_sym_TILDE] = ACTIONS(713), - [anon_sym_CARET] = ACTIONS(713), - [anon_sym_AMP] = ACTIONS(729), - [anon_sym_LT_DASH] = ACTIONS(731), - [sym_none] = ACTIONS(733), - [sym_true] = ACTIONS(733), - [sym_false] = ACTIONS(733), - [sym_nil] = ACTIONS(733), - [anon_sym_if] = ACTIONS(735), - [anon_sym_else] = ACTIONS(737), - [anon_sym_DOLLARif] = ACTIONS(739), - [anon_sym_match] = ACTIONS(741), - [anon_sym_select] = ACTIONS(743), - [anon_sym_lock] = ACTIONS(745), - [anon_sym_rlock] = ACTIONS(745), - [anon_sym_unsafe] = ACTIONS(747), - [anon_sym_sql] = ACTIONS(749), - [sym_int_literal] = ACTIONS(733), - [sym_float_literal] = ACTIONS(751), - [sym_rune_literal] = ACTIONS(751), - [sym_pseudo_compile_time_identifier] = ACTIONS(753), + [anon_sym_BANG] = ACTIONS(785), + [anon_sym_go] = ACTIONS(787), + [anon_sym_spawn] = ACTIONS(789), + [anon_sym_json_DOTdecode] = ACTIONS(791), + [anon_sym_LBRACK2] = ACTIONS(793), + [anon_sym_TILDE] = ACTIONS(779), + [anon_sym_CARET] = ACTIONS(779), + [anon_sym_AMP] = ACTIONS(795), + [anon_sym_LT_DASH] = ACTIONS(797), + [sym_none] = ACTIONS(799), + [sym_true] = ACTIONS(799), + [sym_false] = ACTIONS(799), + [sym_nil] = ACTIONS(799), + [anon_sym_if] = ACTIONS(801), + [anon_sym_else] = ACTIONS(803), + [anon_sym_DOLLARif] = ACTIONS(805), + [anon_sym_match] = ACTIONS(807), + [anon_sym_select] = ACTIONS(809), + [anon_sym_lock] = ACTIONS(811), + [anon_sym_rlock] = ACTIONS(811), + [anon_sym_unsafe] = ACTIONS(813), + [anon_sym_sql] = ACTIONS(815), + [sym_int_literal] = ACTIONS(799), + [sym_float_literal] = ACTIONS(817), + [sym_rune_literal] = ACTIONS(817), + [sym_pseudo_compile_time_identifier] = ACTIONS(819), [anon_sym_shared] = ACTIONS(83), [anon_sym_map_LBRACK] = ACTIONS(85), [anon_sym_chan] = ACTIONS(87), [anon_sym_thread] = ACTIONS(89), [anon_sym_atomic] = ACTIONS(91), - [sym___double_quote] = ACTIONS(755), - [sym___single_quote] = ACTIONS(757), - [sym___c_double_quote] = ACTIONS(759), - [sym___c_single_quote] = ACTIONS(761), - [sym___r_double_quote] = ACTIONS(763), - [sym___r_single_quote] = ACTIONS(765), + [sym___double_quote] = ACTIONS(821), + [sym___single_quote] = ACTIONS(823), + [sym___c_double_quote] = ACTIONS(825), + [sym___c_single_quote] = ACTIONS(827), + [sym___r_double_quote] = ACTIONS(829), + [sym___r_single_quote] = ACTIONS(831), }, - [113] = { - [sym_line_comment] = STATE(113), - [sym_block_comment] = STATE(113), - [sym__expression] = STATE(2731), - [sym__expression_without_blocks] = STATE(1902), - [sym__expression_with_blocks] = STATE(2870), - [sym_inc_expression] = STATE(2032), - [sym_dec_expression] = STATE(2032), - [sym_or_block_expression] = STATE(2032), - [sym_option_propagation_expression] = STATE(2032), - [sym_result_propagation_expression] = STATE(2032), - [sym_anon_struct_value_expression] = STATE(2868), - [sym_go_expression] = STATE(2032), - [sym_spawn_expression] = STATE(2032), - [sym_parenthesized_expression] = STATE(2032), - [sym_call_expression] = STATE(2032), - [sym_type_initializer] = STATE(2868), - [sym_function_literal] = STATE(2032), - [sym_reference_expression] = STATE(1914), - [sym_type_reference_expression] = STATE(3541), - [sym_unary_expression] = STATE(2032), - [sym_receive_expression] = STATE(2032), - [sym_binary_expression] = STATE(2032), - [sym_as_type_cast_expression] = STATE(2032), - [sym__max_group] = STATE(2032), - [sym_literal] = STATE(2027), - [sym_map_init_expression] = STATE(2868), - [sym_array_creation] = STATE(2032), - [sym_fixed_array_creation] = STATE(2032), - [sym_selector_expression] = STATE(2032), - [sym_index_expression] = STATE(2032), - [sym_slice_expression] = STATE(2032), - [sym_if_expression] = STATE(2868), - [sym_compile_time_if_expression] = STATE(2868), - [sym_is_expression] = STATE(2032), - [sym_in_expression] = STATE(2032), - [sym_enum_fetch] = STATE(2032), - [sym_match_expression] = STATE(2868), - [sym_select_expression] = STATE(2868), - [sym_select_arm] = STATE(2139), - [sym_select_arm_statement] = STATE(4161), - [sym_select_var_declaration] = STATE(4478), - [sym_select_else_arn_clause] = STATE(4555), - [sym_lock_expression] = STATE(2868), - [sym_unsafe_expression] = STATE(2868), - [sym_sql_expression] = STATE(2868), - [sym_c_string_literal] = STATE(2026), - [sym_raw_string_literal] = STATE(2026), - [sym_interpreted_string_literal] = STATE(2026), - [sym_mutability_modifiers] = STATE(635), - [sym_mutable_identifier] = STATE(3928), - [sym_identifier_list] = STATE(4484), + [125] = { + [sym_line_comment] = STATE(125), + [sym_block_comment] = STATE(125), + [sym__expression] = STATE(2780), + [sym__expression_without_blocks] = STATE(1903), + [sym__expression_with_blocks] = STATE(2882), + [sym_inc_expression] = STATE(2035), + [sym_dec_expression] = STATE(2035), + [sym_or_block_expression] = STATE(2035), + [sym_option_propagation_expression] = STATE(2035), + [sym_result_propagation_expression] = STATE(2035), + [sym_anon_struct_value_expression] = STATE(2877), + [sym_go_expression] = STATE(2035), + [sym_spawn_expression] = STATE(2035), + [sym_parenthesized_expression] = STATE(2035), + [sym_call_expression] = STATE(2035), + [sym_type_initializer] = STATE(2877), + [sym_function_literal] = STATE(2035), + [sym_reference_expression] = STATE(1944), + [sym_type_reference_expression] = STATE(3460), + [sym_unary_expression] = STATE(2035), + [sym_receive_expression] = STATE(2035), + [sym_binary_expression] = STATE(2035), + [sym_as_type_cast_expression] = STATE(2035), + [sym__max_group] = STATE(2035), + [sym_literal] = STATE(2030), + [sym_map_init_expression] = STATE(2877), + [sym_array_creation] = STATE(2035), + [sym_fixed_array_creation] = STATE(2035), + [sym_selector_expression] = STATE(2035), + [sym_index_expression] = STATE(2035), + [sym_slice_expression] = STATE(2035), + [sym_if_expression] = STATE(2877), + [sym_compile_time_if_expression] = STATE(2877), + [sym_is_expression] = STATE(2035), + [sym_in_expression] = STATE(2035), + [sym_enum_fetch] = STATE(2035), + [sym_match_expression] = STATE(2877), + [sym_select_expression] = STATE(2877), + [sym_select_arm] = STATE(2140), + [sym_select_arm_statement] = STATE(4150), + [sym_select_var_declaration] = STATE(4507), + [sym_select_else_arn_clause] = STATE(4557), + [sym_lock_expression] = STATE(2877), + [sym_unsafe_expression] = STATE(2877), + [sym_sql_expression] = STATE(2877), + [sym_c_string_literal] = STATE(2029), + [sym_raw_string_literal] = STATE(2029), + [sym_interpreted_string_literal] = STATE(2029), + [sym_mutability_modifiers] = STATE(641), + [sym_mutable_identifier] = STATE(3847), + [sym_identifier_list] = STATE(4511), [sym_expression_without_blocks_list] = STATE(3279), - [sym_plain_type] = STATE(4094), - [sym__plain_type_without_special] = STATE(2302), - [sym_anon_struct_type] = STATE(2303), - [sym_multi_return_type] = STATE(2302), - [sym_result_type] = STATE(2302), - [sym_option_type] = STATE(2302), - [sym_qualified_type] = STATE(3541), - [sym_fixed_array_type] = STATE(2303), - [sym_array_type] = STATE(2303), - [sym_pointer_type] = STATE(2303), - [sym_wrong_pointer_type] = STATE(2303), - [sym_map_type] = STATE(2303), - [sym_channel_type] = STATE(2303), - [sym_shared_type] = STATE(2303), - [sym_thread_type] = STATE(2303), - [sym_atomic_type] = STATE(2303), - [sym_generic_type] = STATE(2303), - [sym_function_type] = STATE(2303), - [sym_send_statement] = STATE(4478), - [aux_sym_select_expression_repeat1] = STATE(117), - [sym_identifier] = ACTIONS(701), + [sym_plain_type] = STATE(4297), + [sym__plain_type_without_special] = STATE(2360), + [sym_anon_struct_type] = STATE(2362), + [sym_multi_return_type] = STATE(2360), + [sym_result_type] = STATE(2360), + [sym_option_type] = STATE(2360), + [sym_qualified_type] = STATE(3460), + [sym_fixed_array_type] = STATE(2362), + [sym_array_type] = STATE(2362), + [sym_pointer_type] = STATE(2362), + [sym_wrong_pointer_type] = STATE(2362), + [sym_map_type] = STATE(2362), + [sym_channel_type] = STATE(2362), + [sym_shared_type] = STATE(2362), + [sym_thread_type] = STATE(2362), + [sym_atomic_type] = STATE(2362), + [sym_generic_type] = STATE(2362), + [sym_function_type] = STATE(2362), + [sym_send_statement] = STATE(4507), + [aux_sym_select_expression_repeat1] = STATE(149), + [sym_identifier] = ACTIONS(767), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(703), - [anon_sym_LBRACE] = ACTIONS(705), - [anon_sym_RBRACE] = ACTIONS(881), - [anon_sym_LPAREN] = ACTIONS(709), - [anon_sym_fn] = ACTIONS(711), - [anon_sym_PLUS] = ACTIONS(713), - [anon_sym_DASH] = ACTIONS(713), - [anon_sym_STAR] = ACTIONS(715), - [anon_sym_struct] = ACTIONS(717), + [anon_sym_DOT] = ACTIONS(769), + [anon_sym_LBRACE] = ACTIONS(771), + [anon_sym_RBRACE] = ACTIONS(905), + [anon_sym_LPAREN] = ACTIONS(775), + [anon_sym_fn] = ACTIONS(777), + [anon_sym_PLUS] = ACTIONS(779), + [anon_sym_DASH] = ACTIONS(779), + [anon_sym_STAR] = ACTIONS(781), + [anon_sym_struct] = ACTIONS(783), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(719), - [anon_sym_go] = ACTIONS(721), - [anon_sym_spawn] = ACTIONS(723), - [anon_sym_json_DOTdecode] = ACTIONS(725), - [anon_sym_LBRACK2] = ACTIONS(727), - [anon_sym_TILDE] = ACTIONS(713), - [anon_sym_CARET] = ACTIONS(713), - [anon_sym_AMP] = ACTIONS(729), - [anon_sym_LT_DASH] = ACTIONS(731), - [sym_none] = ACTIONS(733), - [sym_true] = ACTIONS(733), - [sym_false] = ACTIONS(733), - [sym_nil] = ACTIONS(733), - [anon_sym_if] = ACTIONS(735), - [anon_sym_else] = ACTIONS(737), - [anon_sym_DOLLARif] = ACTIONS(739), - [anon_sym_match] = ACTIONS(741), - [anon_sym_select] = ACTIONS(743), - [anon_sym_lock] = ACTIONS(745), - [anon_sym_rlock] = ACTIONS(745), - [anon_sym_unsafe] = ACTIONS(747), - [anon_sym_sql] = ACTIONS(749), - [sym_int_literal] = ACTIONS(733), - [sym_float_literal] = ACTIONS(751), - [sym_rune_literal] = ACTIONS(751), - [sym_pseudo_compile_time_identifier] = ACTIONS(753), + [anon_sym_BANG] = ACTIONS(785), + [anon_sym_go] = ACTIONS(787), + [anon_sym_spawn] = ACTIONS(789), + [anon_sym_json_DOTdecode] = ACTIONS(791), + [anon_sym_LBRACK2] = ACTIONS(793), + [anon_sym_TILDE] = ACTIONS(779), + [anon_sym_CARET] = ACTIONS(779), + [anon_sym_AMP] = ACTIONS(795), + [anon_sym_LT_DASH] = ACTIONS(797), + [sym_none] = ACTIONS(799), + [sym_true] = ACTIONS(799), + [sym_false] = ACTIONS(799), + [sym_nil] = ACTIONS(799), + [anon_sym_if] = ACTIONS(801), + [anon_sym_else] = ACTIONS(803), + [anon_sym_DOLLARif] = ACTIONS(805), + [anon_sym_match] = ACTIONS(807), + [anon_sym_select] = ACTIONS(809), + [anon_sym_lock] = ACTIONS(811), + [anon_sym_rlock] = ACTIONS(811), + [anon_sym_unsafe] = ACTIONS(813), + [anon_sym_sql] = ACTIONS(815), + [sym_int_literal] = ACTIONS(799), + [sym_float_literal] = ACTIONS(817), + [sym_rune_literal] = ACTIONS(817), + [sym_pseudo_compile_time_identifier] = ACTIONS(819), [anon_sym_shared] = ACTIONS(83), [anon_sym_map_LBRACK] = ACTIONS(85), [anon_sym_chan] = ACTIONS(87), [anon_sym_thread] = ACTIONS(89), [anon_sym_atomic] = ACTIONS(91), - [sym___double_quote] = ACTIONS(755), - [sym___single_quote] = ACTIONS(757), - [sym___c_double_quote] = ACTIONS(759), - [sym___c_single_quote] = ACTIONS(761), - [sym___r_double_quote] = ACTIONS(763), - [sym___r_single_quote] = ACTIONS(765), + [sym___double_quote] = ACTIONS(821), + [sym___single_quote] = ACTIONS(823), + [sym___c_double_quote] = ACTIONS(825), + [sym___c_single_quote] = ACTIONS(827), + [sym___r_double_quote] = ACTIONS(829), + [sym___r_single_quote] = ACTIONS(831), }, - [114] = { - [sym_line_comment] = STATE(114), - [sym_block_comment] = STATE(114), - [sym__expression] = STATE(2731), - [sym__expression_without_blocks] = STATE(1902), - [sym__expression_with_blocks] = STATE(2870), - [sym_inc_expression] = STATE(2032), - [sym_dec_expression] = STATE(2032), - [sym_or_block_expression] = STATE(2032), - [sym_option_propagation_expression] = STATE(2032), - [sym_result_propagation_expression] = STATE(2032), - [sym_anon_struct_value_expression] = STATE(2868), - [sym_go_expression] = STATE(2032), - [sym_spawn_expression] = STATE(2032), - [sym_parenthesized_expression] = STATE(2032), - [sym_call_expression] = STATE(2032), - [sym_type_initializer] = STATE(2868), - [sym_function_literal] = STATE(2032), - [sym_reference_expression] = STATE(1914), - [sym_type_reference_expression] = STATE(3541), - [sym_unary_expression] = STATE(2032), - [sym_receive_expression] = STATE(2032), - [sym_binary_expression] = STATE(2032), - [sym_as_type_cast_expression] = STATE(2032), - [sym__max_group] = STATE(2032), - [sym_literal] = STATE(2027), - [sym_map_init_expression] = STATE(2868), - [sym_array_creation] = STATE(2032), - [sym_fixed_array_creation] = STATE(2032), - [sym_selector_expression] = STATE(2032), - [sym_index_expression] = STATE(2032), - [sym_slice_expression] = STATE(2032), - [sym_if_expression] = STATE(2868), - [sym_compile_time_if_expression] = STATE(2868), - [sym_is_expression] = STATE(2032), - [sym_in_expression] = STATE(2032), - [sym_enum_fetch] = STATE(2032), - [sym_match_expression] = STATE(2868), - [sym_select_expression] = STATE(2868), - [sym_select_arm] = STATE(2139), - [sym_select_arm_statement] = STATE(4161), - [sym_select_var_declaration] = STATE(4478), - [sym_select_else_arn_clause] = STATE(4481), - [sym_lock_expression] = STATE(2868), - [sym_unsafe_expression] = STATE(2868), - [sym_sql_expression] = STATE(2868), - [sym_c_string_literal] = STATE(2026), - [sym_raw_string_literal] = STATE(2026), - [sym_interpreted_string_literal] = STATE(2026), - [sym_mutability_modifiers] = STATE(635), - [sym_mutable_identifier] = STATE(3928), - [sym_identifier_list] = STATE(4484), + [126] = { + [sym_line_comment] = STATE(126), + [sym_block_comment] = STATE(126), + [sym__expression] = STATE(2780), + [sym__expression_without_blocks] = STATE(1903), + [sym__expression_with_blocks] = STATE(2882), + [sym_inc_expression] = STATE(2035), + [sym_dec_expression] = STATE(2035), + [sym_or_block_expression] = STATE(2035), + [sym_option_propagation_expression] = STATE(2035), + [sym_result_propagation_expression] = STATE(2035), + [sym_anon_struct_value_expression] = STATE(2877), + [sym_go_expression] = STATE(2035), + [sym_spawn_expression] = STATE(2035), + [sym_parenthesized_expression] = STATE(2035), + [sym_call_expression] = STATE(2035), + [sym_type_initializer] = STATE(2877), + [sym_function_literal] = STATE(2035), + [sym_reference_expression] = STATE(1944), + [sym_type_reference_expression] = STATE(3460), + [sym_unary_expression] = STATE(2035), + [sym_receive_expression] = STATE(2035), + [sym_binary_expression] = STATE(2035), + [sym_as_type_cast_expression] = STATE(2035), + [sym__max_group] = STATE(2035), + [sym_literal] = STATE(2030), + [sym_map_init_expression] = STATE(2877), + [sym_array_creation] = STATE(2035), + [sym_fixed_array_creation] = STATE(2035), + [sym_selector_expression] = STATE(2035), + [sym_index_expression] = STATE(2035), + [sym_slice_expression] = STATE(2035), + [sym_if_expression] = STATE(2877), + [sym_compile_time_if_expression] = STATE(2877), + [sym_is_expression] = STATE(2035), + [sym_in_expression] = STATE(2035), + [sym_enum_fetch] = STATE(2035), + [sym_match_expression] = STATE(2877), + [sym_select_expression] = STATE(2877), + [sym_select_arm] = STATE(2140), + [sym_select_arm_statement] = STATE(4150), + [sym_select_var_declaration] = STATE(4507), + [sym_select_else_arn_clause] = STATE(4329), + [sym_lock_expression] = STATE(2877), + [sym_unsafe_expression] = STATE(2877), + [sym_sql_expression] = STATE(2877), + [sym_c_string_literal] = STATE(2029), + [sym_raw_string_literal] = STATE(2029), + [sym_interpreted_string_literal] = STATE(2029), + [sym_mutability_modifiers] = STATE(641), + [sym_mutable_identifier] = STATE(3847), + [sym_identifier_list] = STATE(4511), [sym_expression_without_blocks_list] = STATE(3279), - [sym_plain_type] = STATE(4094), - [sym__plain_type_without_special] = STATE(2302), - [sym_anon_struct_type] = STATE(2303), - [sym_multi_return_type] = STATE(2302), - [sym_result_type] = STATE(2302), - [sym_option_type] = STATE(2302), - [sym_qualified_type] = STATE(3541), - [sym_fixed_array_type] = STATE(2303), - [sym_array_type] = STATE(2303), - [sym_pointer_type] = STATE(2303), - [sym_wrong_pointer_type] = STATE(2303), - [sym_map_type] = STATE(2303), - [sym_channel_type] = STATE(2303), - [sym_shared_type] = STATE(2303), - [sym_thread_type] = STATE(2303), - [sym_atomic_type] = STATE(2303), - [sym_generic_type] = STATE(2303), - [sym_function_type] = STATE(2303), - [sym_send_statement] = STATE(4478), - [aux_sym_select_expression_repeat1] = STATE(140), - [sym_identifier] = ACTIONS(701), + [sym_plain_type] = STATE(4297), + [sym__plain_type_without_special] = STATE(2360), + [sym_anon_struct_type] = STATE(2362), + [sym_multi_return_type] = STATE(2360), + [sym_result_type] = STATE(2360), + [sym_option_type] = STATE(2360), + [sym_qualified_type] = STATE(3460), + [sym_fixed_array_type] = STATE(2362), + [sym_array_type] = STATE(2362), + [sym_pointer_type] = STATE(2362), + [sym_wrong_pointer_type] = STATE(2362), + [sym_map_type] = STATE(2362), + [sym_channel_type] = STATE(2362), + [sym_shared_type] = STATE(2362), + [sym_thread_type] = STATE(2362), + [sym_atomic_type] = STATE(2362), + [sym_generic_type] = STATE(2362), + [sym_function_type] = STATE(2362), + [sym_send_statement] = STATE(4507), + [aux_sym_select_expression_repeat1] = STATE(149), + [sym_identifier] = ACTIONS(767), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(703), - [anon_sym_LBRACE] = ACTIONS(705), - [anon_sym_RBRACE] = ACTIONS(883), - [anon_sym_LPAREN] = ACTIONS(709), - [anon_sym_fn] = ACTIONS(711), - [anon_sym_PLUS] = ACTIONS(713), - [anon_sym_DASH] = ACTIONS(713), - [anon_sym_STAR] = ACTIONS(715), - [anon_sym_struct] = ACTIONS(717), + [anon_sym_DOT] = ACTIONS(769), + [anon_sym_LBRACE] = ACTIONS(771), + [anon_sym_RBRACE] = ACTIONS(907), + [anon_sym_LPAREN] = ACTIONS(775), + [anon_sym_fn] = ACTIONS(777), + [anon_sym_PLUS] = ACTIONS(779), + [anon_sym_DASH] = ACTIONS(779), + [anon_sym_STAR] = ACTIONS(781), + [anon_sym_struct] = ACTIONS(783), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(719), - [anon_sym_go] = ACTIONS(721), - [anon_sym_spawn] = ACTIONS(723), - [anon_sym_json_DOTdecode] = ACTIONS(725), - [anon_sym_LBRACK2] = ACTIONS(727), - [anon_sym_TILDE] = ACTIONS(713), - [anon_sym_CARET] = ACTIONS(713), - [anon_sym_AMP] = ACTIONS(729), - [anon_sym_LT_DASH] = ACTIONS(731), - [sym_none] = ACTIONS(733), - [sym_true] = ACTIONS(733), - [sym_false] = ACTIONS(733), - [sym_nil] = ACTIONS(733), - [anon_sym_if] = ACTIONS(735), - [anon_sym_else] = ACTIONS(737), - [anon_sym_DOLLARif] = ACTIONS(739), - [anon_sym_match] = ACTIONS(741), - [anon_sym_select] = ACTIONS(743), - [anon_sym_lock] = ACTIONS(745), - [anon_sym_rlock] = ACTIONS(745), - [anon_sym_unsafe] = ACTIONS(747), - [anon_sym_sql] = ACTIONS(749), - [sym_int_literal] = ACTIONS(733), - [sym_float_literal] = ACTIONS(751), - [sym_rune_literal] = ACTIONS(751), - [sym_pseudo_compile_time_identifier] = ACTIONS(753), + [anon_sym_BANG] = ACTIONS(785), + [anon_sym_go] = ACTIONS(787), + [anon_sym_spawn] = ACTIONS(789), + [anon_sym_json_DOTdecode] = ACTIONS(791), + [anon_sym_LBRACK2] = ACTIONS(793), + [anon_sym_TILDE] = ACTIONS(779), + [anon_sym_CARET] = ACTIONS(779), + [anon_sym_AMP] = ACTIONS(795), + [anon_sym_LT_DASH] = ACTIONS(797), + [sym_none] = ACTIONS(799), + [sym_true] = ACTIONS(799), + [sym_false] = ACTIONS(799), + [sym_nil] = ACTIONS(799), + [anon_sym_if] = ACTIONS(801), + [anon_sym_else] = ACTIONS(803), + [anon_sym_DOLLARif] = ACTIONS(805), + [anon_sym_match] = ACTIONS(807), + [anon_sym_select] = ACTIONS(809), + [anon_sym_lock] = ACTIONS(811), + [anon_sym_rlock] = ACTIONS(811), + [anon_sym_unsafe] = ACTIONS(813), + [anon_sym_sql] = ACTIONS(815), + [sym_int_literal] = ACTIONS(799), + [sym_float_literal] = ACTIONS(817), + [sym_rune_literal] = ACTIONS(817), + [sym_pseudo_compile_time_identifier] = ACTIONS(819), [anon_sym_shared] = ACTIONS(83), [anon_sym_map_LBRACK] = ACTIONS(85), [anon_sym_chan] = ACTIONS(87), [anon_sym_thread] = ACTIONS(89), [anon_sym_atomic] = ACTIONS(91), - [sym___double_quote] = ACTIONS(755), - [sym___single_quote] = ACTIONS(757), - [sym___c_double_quote] = ACTIONS(759), - [sym___c_single_quote] = ACTIONS(761), - [sym___r_double_quote] = ACTIONS(763), - [sym___r_single_quote] = ACTIONS(765), + [sym___double_quote] = ACTIONS(821), + [sym___single_quote] = ACTIONS(823), + [sym___c_double_quote] = ACTIONS(825), + [sym___c_single_quote] = ACTIONS(827), + [sym___r_double_quote] = ACTIONS(829), + [sym___r_single_quote] = ACTIONS(831), }, - [115] = { - [sym_line_comment] = STATE(115), - [sym_block_comment] = STATE(115), - [sym__expression] = STATE(2731), - [sym__expression_without_blocks] = STATE(1902), - [sym__expression_with_blocks] = STATE(2870), - [sym_inc_expression] = STATE(2032), - [sym_dec_expression] = STATE(2032), - [sym_or_block_expression] = STATE(2032), - [sym_option_propagation_expression] = STATE(2032), - [sym_result_propagation_expression] = STATE(2032), - [sym_anon_struct_value_expression] = STATE(2868), - [sym_go_expression] = STATE(2032), - [sym_spawn_expression] = STATE(2032), - [sym_parenthesized_expression] = STATE(2032), - [sym_call_expression] = STATE(2032), - [sym_type_initializer] = STATE(2868), - [sym_function_literal] = STATE(2032), - [sym_reference_expression] = STATE(1914), - [sym_type_reference_expression] = STATE(3541), - [sym_unary_expression] = STATE(2032), - [sym_receive_expression] = STATE(2032), - [sym_binary_expression] = STATE(2032), - [sym_as_type_cast_expression] = STATE(2032), - [sym__max_group] = STATE(2032), - [sym_literal] = STATE(2027), - [sym_map_init_expression] = STATE(2868), - [sym_array_creation] = STATE(2032), - [sym_fixed_array_creation] = STATE(2032), - [sym_selector_expression] = STATE(2032), - [sym_index_expression] = STATE(2032), - [sym_slice_expression] = STATE(2032), - [sym_if_expression] = STATE(2868), - [sym_compile_time_if_expression] = STATE(2868), - [sym_is_expression] = STATE(2032), - [sym_in_expression] = STATE(2032), - [sym_enum_fetch] = STATE(2032), - [sym_match_expression] = STATE(2868), - [sym_select_expression] = STATE(2868), - [sym_select_arm] = STATE(2139), - [sym_select_arm_statement] = STATE(4161), - [sym_select_var_declaration] = STATE(4478), - [sym_select_else_arn_clause] = STATE(4427), - [sym_lock_expression] = STATE(2868), - [sym_unsafe_expression] = STATE(2868), - [sym_sql_expression] = STATE(2868), - [sym_c_string_literal] = STATE(2026), - [sym_raw_string_literal] = STATE(2026), - [sym_interpreted_string_literal] = STATE(2026), - [sym_mutability_modifiers] = STATE(635), - [sym_mutable_identifier] = STATE(3928), - [sym_identifier_list] = STATE(4484), + [127] = { + [sym_line_comment] = STATE(127), + [sym_block_comment] = STATE(127), + [sym__expression] = STATE(2780), + [sym__expression_without_blocks] = STATE(1903), + [sym__expression_with_blocks] = STATE(2882), + [sym_inc_expression] = STATE(2035), + [sym_dec_expression] = STATE(2035), + [sym_or_block_expression] = STATE(2035), + [sym_option_propagation_expression] = STATE(2035), + [sym_result_propagation_expression] = STATE(2035), + [sym_anon_struct_value_expression] = STATE(2877), + [sym_go_expression] = STATE(2035), + [sym_spawn_expression] = STATE(2035), + [sym_parenthesized_expression] = STATE(2035), + [sym_call_expression] = STATE(2035), + [sym_type_initializer] = STATE(2877), + [sym_function_literal] = STATE(2035), + [sym_reference_expression] = STATE(1944), + [sym_type_reference_expression] = STATE(3460), + [sym_unary_expression] = STATE(2035), + [sym_receive_expression] = STATE(2035), + [sym_binary_expression] = STATE(2035), + [sym_as_type_cast_expression] = STATE(2035), + [sym__max_group] = STATE(2035), + [sym_literal] = STATE(2030), + [sym_map_init_expression] = STATE(2877), + [sym_array_creation] = STATE(2035), + [sym_fixed_array_creation] = STATE(2035), + [sym_selector_expression] = STATE(2035), + [sym_index_expression] = STATE(2035), + [sym_slice_expression] = STATE(2035), + [sym_if_expression] = STATE(2877), + [sym_compile_time_if_expression] = STATE(2877), + [sym_is_expression] = STATE(2035), + [sym_in_expression] = STATE(2035), + [sym_enum_fetch] = STATE(2035), + [sym_match_expression] = STATE(2877), + [sym_select_expression] = STATE(2877), + [sym_select_arm] = STATE(2140), + [sym_select_arm_statement] = STATE(4150), + [sym_select_var_declaration] = STATE(4507), + [sym_select_else_arn_clause] = STATE(4485), + [sym_lock_expression] = STATE(2877), + [sym_unsafe_expression] = STATE(2877), + [sym_sql_expression] = STATE(2877), + [sym_c_string_literal] = STATE(2029), + [sym_raw_string_literal] = STATE(2029), + [sym_interpreted_string_literal] = STATE(2029), + [sym_mutability_modifiers] = STATE(641), + [sym_mutable_identifier] = STATE(3847), + [sym_identifier_list] = STATE(4511), [sym_expression_without_blocks_list] = STATE(3279), - [sym_plain_type] = STATE(4094), - [sym__plain_type_without_special] = STATE(2302), - [sym_anon_struct_type] = STATE(2303), - [sym_multi_return_type] = STATE(2302), - [sym_result_type] = STATE(2302), - [sym_option_type] = STATE(2302), - [sym_qualified_type] = STATE(3541), - [sym_fixed_array_type] = STATE(2303), - [sym_array_type] = STATE(2303), - [sym_pointer_type] = STATE(2303), - [sym_wrong_pointer_type] = STATE(2303), - [sym_map_type] = STATE(2303), - [sym_channel_type] = STATE(2303), - [sym_shared_type] = STATE(2303), - [sym_thread_type] = STATE(2303), - [sym_atomic_type] = STATE(2303), - [sym_generic_type] = STATE(2303), - [sym_function_type] = STATE(2303), - [sym_send_statement] = STATE(4478), + [sym_plain_type] = STATE(4297), + [sym__plain_type_without_special] = STATE(2360), + [sym_anon_struct_type] = STATE(2362), + [sym_multi_return_type] = STATE(2360), + [sym_result_type] = STATE(2360), + [sym_option_type] = STATE(2360), + [sym_qualified_type] = STATE(3460), + [sym_fixed_array_type] = STATE(2362), + [sym_array_type] = STATE(2362), + [sym_pointer_type] = STATE(2362), + [sym_wrong_pointer_type] = STATE(2362), + [sym_map_type] = STATE(2362), + [sym_channel_type] = STATE(2362), + [sym_shared_type] = STATE(2362), + [sym_thread_type] = STATE(2362), + [sym_atomic_type] = STATE(2362), + [sym_generic_type] = STATE(2362), + [sym_function_type] = STATE(2362), + [sym_send_statement] = STATE(4507), [aux_sym_select_expression_repeat1] = STATE(149), - [sym_identifier] = ACTIONS(701), + [sym_identifier] = ACTIONS(767), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(703), - [anon_sym_LBRACE] = ACTIONS(705), - [anon_sym_RBRACE] = ACTIONS(885), - [anon_sym_LPAREN] = ACTIONS(709), - [anon_sym_fn] = ACTIONS(711), - [anon_sym_PLUS] = ACTIONS(713), - [anon_sym_DASH] = ACTIONS(713), - [anon_sym_STAR] = ACTIONS(715), - [anon_sym_struct] = ACTIONS(717), + [anon_sym_DOT] = ACTIONS(769), + [anon_sym_LBRACE] = ACTIONS(771), + [anon_sym_RBRACE] = ACTIONS(909), + [anon_sym_LPAREN] = ACTIONS(775), + [anon_sym_fn] = ACTIONS(777), + [anon_sym_PLUS] = ACTIONS(779), + [anon_sym_DASH] = ACTIONS(779), + [anon_sym_STAR] = ACTIONS(781), + [anon_sym_struct] = ACTIONS(783), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(719), - [anon_sym_go] = ACTIONS(721), - [anon_sym_spawn] = ACTIONS(723), - [anon_sym_json_DOTdecode] = ACTIONS(725), - [anon_sym_LBRACK2] = ACTIONS(727), - [anon_sym_TILDE] = ACTIONS(713), - [anon_sym_CARET] = ACTIONS(713), - [anon_sym_AMP] = ACTIONS(729), - [anon_sym_LT_DASH] = ACTIONS(731), - [sym_none] = ACTIONS(733), - [sym_true] = ACTIONS(733), - [sym_false] = ACTIONS(733), - [sym_nil] = ACTIONS(733), - [anon_sym_if] = ACTIONS(735), - [anon_sym_else] = ACTIONS(737), - [anon_sym_DOLLARif] = ACTIONS(739), - [anon_sym_match] = ACTIONS(741), - [anon_sym_select] = ACTIONS(743), - [anon_sym_lock] = ACTIONS(745), - [anon_sym_rlock] = ACTIONS(745), - [anon_sym_unsafe] = ACTIONS(747), - [anon_sym_sql] = ACTIONS(749), - [sym_int_literal] = ACTIONS(733), - [sym_float_literal] = ACTIONS(751), - [sym_rune_literal] = ACTIONS(751), - [sym_pseudo_compile_time_identifier] = ACTIONS(753), + [anon_sym_BANG] = ACTIONS(785), + [anon_sym_go] = ACTIONS(787), + [anon_sym_spawn] = ACTIONS(789), + [anon_sym_json_DOTdecode] = ACTIONS(791), + [anon_sym_LBRACK2] = ACTIONS(793), + [anon_sym_TILDE] = ACTIONS(779), + [anon_sym_CARET] = ACTIONS(779), + [anon_sym_AMP] = ACTIONS(795), + [anon_sym_LT_DASH] = ACTIONS(797), + [sym_none] = ACTIONS(799), + [sym_true] = ACTIONS(799), + [sym_false] = ACTIONS(799), + [sym_nil] = ACTIONS(799), + [anon_sym_if] = ACTIONS(801), + [anon_sym_else] = ACTIONS(803), + [anon_sym_DOLLARif] = ACTIONS(805), + [anon_sym_match] = ACTIONS(807), + [anon_sym_select] = ACTIONS(809), + [anon_sym_lock] = ACTIONS(811), + [anon_sym_rlock] = ACTIONS(811), + [anon_sym_unsafe] = ACTIONS(813), + [anon_sym_sql] = ACTIONS(815), + [sym_int_literal] = ACTIONS(799), + [sym_float_literal] = ACTIONS(817), + [sym_rune_literal] = ACTIONS(817), + [sym_pseudo_compile_time_identifier] = ACTIONS(819), [anon_sym_shared] = ACTIONS(83), [anon_sym_map_LBRACK] = ACTIONS(85), [anon_sym_chan] = ACTIONS(87), [anon_sym_thread] = ACTIONS(89), [anon_sym_atomic] = ACTIONS(91), - [sym___double_quote] = ACTIONS(755), - [sym___single_quote] = ACTIONS(757), - [sym___c_double_quote] = ACTIONS(759), - [sym___c_single_quote] = ACTIONS(761), - [sym___r_double_quote] = ACTIONS(763), - [sym___r_single_quote] = ACTIONS(765), + [sym___double_quote] = ACTIONS(821), + [sym___single_quote] = ACTIONS(823), + [sym___c_double_quote] = ACTIONS(825), + [sym___c_single_quote] = ACTIONS(827), + [sym___r_double_quote] = ACTIONS(829), + [sym___r_single_quote] = ACTIONS(831), }, - [116] = { - [sym_line_comment] = STATE(116), - [sym_block_comment] = STATE(116), - [sym__expression] = STATE(2731), - [sym__expression_without_blocks] = STATE(1902), - [sym__expression_with_blocks] = STATE(2870), - [sym_inc_expression] = STATE(2032), - [sym_dec_expression] = STATE(2032), - [sym_or_block_expression] = STATE(2032), - [sym_option_propagation_expression] = STATE(2032), - [sym_result_propagation_expression] = STATE(2032), - [sym_anon_struct_value_expression] = STATE(2868), - [sym_go_expression] = STATE(2032), - [sym_spawn_expression] = STATE(2032), - [sym_parenthesized_expression] = STATE(2032), - [sym_call_expression] = STATE(2032), - [sym_type_initializer] = STATE(2868), - [sym_function_literal] = STATE(2032), - [sym_reference_expression] = STATE(1914), - [sym_type_reference_expression] = STATE(3541), - [sym_unary_expression] = STATE(2032), - [sym_receive_expression] = STATE(2032), - [sym_binary_expression] = STATE(2032), - [sym_as_type_cast_expression] = STATE(2032), - [sym__max_group] = STATE(2032), - [sym_literal] = STATE(2027), - [sym_map_init_expression] = STATE(2868), - [sym_array_creation] = STATE(2032), - [sym_fixed_array_creation] = STATE(2032), - [sym_selector_expression] = STATE(2032), - [sym_index_expression] = STATE(2032), - [sym_slice_expression] = STATE(2032), - [sym_if_expression] = STATE(2868), - [sym_compile_time_if_expression] = STATE(2868), - [sym_is_expression] = STATE(2032), - [sym_in_expression] = STATE(2032), - [sym_enum_fetch] = STATE(2032), - [sym_match_expression] = STATE(2868), - [sym_select_expression] = STATE(2868), - [sym_select_arm] = STATE(2139), - [sym_select_arm_statement] = STATE(4161), - [sym_select_var_declaration] = STATE(4478), - [sym_select_else_arn_clause] = STATE(4578), - [sym_lock_expression] = STATE(2868), - [sym_unsafe_expression] = STATE(2868), - [sym_sql_expression] = STATE(2868), - [sym_c_string_literal] = STATE(2026), - [sym_raw_string_literal] = STATE(2026), - [sym_interpreted_string_literal] = STATE(2026), - [sym_mutability_modifiers] = STATE(635), - [sym_mutable_identifier] = STATE(3928), - [sym_identifier_list] = STATE(4484), + [128] = { + [sym_line_comment] = STATE(128), + [sym_block_comment] = STATE(128), + [sym__expression] = STATE(2780), + [sym__expression_without_blocks] = STATE(1903), + [sym__expression_with_blocks] = STATE(2882), + [sym_inc_expression] = STATE(2035), + [sym_dec_expression] = STATE(2035), + [sym_or_block_expression] = STATE(2035), + [sym_option_propagation_expression] = STATE(2035), + [sym_result_propagation_expression] = STATE(2035), + [sym_anon_struct_value_expression] = STATE(2877), + [sym_go_expression] = STATE(2035), + [sym_spawn_expression] = STATE(2035), + [sym_parenthesized_expression] = STATE(2035), + [sym_call_expression] = STATE(2035), + [sym_type_initializer] = STATE(2877), + [sym_function_literal] = STATE(2035), + [sym_reference_expression] = STATE(1944), + [sym_type_reference_expression] = STATE(3460), + [sym_unary_expression] = STATE(2035), + [sym_receive_expression] = STATE(2035), + [sym_binary_expression] = STATE(2035), + [sym_as_type_cast_expression] = STATE(2035), + [sym__max_group] = STATE(2035), + [sym_literal] = STATE(2030), + [sym_map_init_expression] = STATE(2877), + [sym_array_creation] = STATE(2035), + [sym_fixed_array_creation] = STATE(2035), + [sym_selector_expression] = STATE(2035), + [sym_index_expression] = STATE(2035), + [sym_slice_expression] = STATE(2035), + [sym_if_expression] = STATE(2877), + [sym_compile_time_if_expression] = STATE(2877), + [sym_is_expression] = STATE(2035), + [sym_in_expression] = STATE(2035), + [sym_enum_fetch] = STATE(2035), + [sym_match_expression] = STATE(2877), + [sym_select_expression] = STATE(2877), + [sym_select_arm] = STATE(2140), + [sym_select_arm_statement] = STATE(4150), + [sym_select_var_declaration] = STATE(4507), + [sym_select_else_arn_clause] = STATE(4336), + [sym_lock_expression] = STATE(2877), + [sym_unsafe_expression] = STATE(2877), + [sym_sql_expression] = STATE(2877), + [sym_c_string_literal] = STATE(2029), + [sym_raw_string_literal] = STATE(2029), + [sym_interpreted_string_literal] = STATE(2029), + [sym_mutability_modifiers] = STATE(641), + [sym_mutable_identifier] = STATE(3847), + [sym_identifier_list] = STATE(4511), [sym_expression_without_blocks_list] = STATE(3279), - [sym_plain_type] = STATE(4094), - [sym__plain_type_without_special] = STATE(2302), - [sym_anon_struct_type] = STATE(2303), - [sym_multi_return_type] = STATE(2302), - [sym_result_type] = STATE(2302), - [sym_option_type] = STATE(2302), - [sym_qualified_type] = STATE(3541), - [sym_fixed_array_type] = STATE(2303), - [sym_array_type] = STATE(2303), - [sym_pointer_type] = STATE(2303), - [sym_wrong_pointer_type] = STATE(2303), - [sym_map_type] = STATE(2303), - [sym_channel_type] = STATE(2303), - [sym_shared_type] = STATE(2303), - [sym_thread_type] = STATE(2303), - [sym_atomic_type] = STATE(2303), - [sym_generic_type] = STATE(2303), - [sym_function_type] = STATE(2303), - [sym_send_statement] = STATE(4478), + [sym_plain_type] = STATE(4297), + [sym__plain_type_without_special] = STATE(2360), + [sym_anon_struct_type] = STATE(2362), + [sym_multi_return_type] = STATE(2360), + [sym_result_type] = STATE(2360), + [sym_option_type] = STATE(2360), + [sym_qualified_type] = STATE(3460), + [sym_fixed_array_type] = STATE(2362), + [sym_array_type] = STATE(2362), + [sym_pointer_type] = STATE(2362), + [sym_wrong_pointer_type] = STATE(2362), + [sym_map_type] = STATE(2362), + [sym_channel_type] = STATE(2362), + [sym_shared_type] = STATE(2362), + [sym_thread_type] = STATE(2362), + [sym_atomic_type] = STATE(2362), + [sym_generic_type] = STATE(2362), + [sym_function_type] = STATE(2362), + [sym_send_statement] = STATE(4507), [aux_sym_select_expression_repeat1] = STATE(149), - [sym_identifier] = ACTIONS(701), + [sym_identifier] = ACTIONS(767), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(703), - [anon_sym_LBRACE] = ACTIONS(705), - [anon_sym_RBRACE] = ACTIONS(887), - [anon_sym_LPAREN] = ACTIONS(709), - [anon_sym_fn] = ACTIONS(711), - [anon_sym_PLUS] = ACTIONS(713), - [anon_sym_DASH] = ACTIONS(713), - [anon_sym_STAR] = ACTIONS(715), - [anon_sym_struct] = ACTIONS(717), + [anon_sym_DOT] = ACTIONS(769), + [anon_sym_LBRACE] = ACTIONS(771), + [anon_sym_RBRACE] = ACTIONS(911), + [anon_sym_LPAREN] = ACTIONS(775), + [anon_sym_fn] = ACTIONS(777), + [anon_sym_PLUS] = ACTIONS(779), + [anon_sym_DASH] = ACTIONS(779), + [anon_sym_STAR] = ACTIONS(781), + [anon_sym_struct] = ACTIONS(783), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(719), - [anon_sym_go] = ACTIONS(721), - [anon_sym_spawn] = ACTIONS(723), - [anon_sym_json_DOTdecode] = ACTIONS(725), - [anon_sym_LBRACK2] = ACTIONS(727), - [anon_sym_TILDE] = ACTIONS(713), - [anon_sym_CARET] = ACTIONS(713), - [anon_sym_AMP] = ACTIONS(729), - [anon_sym_LT_DASH] = ACTIONS(731), - [sym_none] = ACTIONS(733), - [sym_true] = ACTIONS(733), - [sym_false] = ACTIONS(733), - [sym_nil] = ACTIONS(733), - [anon_sym_if] = ACTIONS(735), - [anon_sym_else] = ACTIONS(737), - [anon_sym_DOLLARif] = ACTIONS(739), - [anon_sym_match] = ACTIONS(741), - [anon_sym_select] = ACTIONS(743), - [anon_sym_lock] = ACTIONS(745), - [anon_sym_rlock] = ACTIONS(745), - [anon_sym_unsafe] = ACTIONS(747), - [anon_sym_sql] = ACTIONS(749), - [sym_int_literal] = ACTIONS(733), - [sym_float_literal] = ACTIONS(751), - [sym_rune_literal] = ACTIONS(751), - [sym_pseudo_compile_time_identifier] = ACTIONS(753), + [anon_sym_BANG] = ACTIONS(785), + [anon_sym_go] = ACTIONS(787), + [anon_sym_spawn] = ACTIONS(789), + [anon_sym_json_DOTdecode] = ACTIONS(791), + [anon_sym_LBRACK2] = ACTIONS(793), + [anon_sym_TILDE] = ACTIONS(779), + [anon_sym_CARET] = ACTIONS(779), + [anon_sym_AMP] = ACTIONS(795), + [anon_sym_LT_DASH] = ACTIONS(797), + [sym_none] = ACTIONS(799), + [sym_true] = ACTIONS(799), + [sym_false] = ACTIONS(799), + [sym_nil] = ACTIONS(799), + [anon_sym_if] = ACTIONS(801), + [anon_sym_else] = ACTIONS(803), + [anon_sym_DOLLARif] = ACTIONS(805), + [anon_sym_match] = ACTIONS(807), + [anon_sym_select] = ACTIONS(809), + [anon_sym_lock] = ACTIONS(811), + [anon_sym_rlock] = ACTIONS(811), + [anon_sym_unsafe] = ACTIONS(813), + [anon_sym_sql] = ACTIONS(815), + [sym_int_literal] = ACTIONS(799), + [sym_float_literal] = ACTIONS(817), + [sym_rune_literal] = ACTIONS(817), + [sym_pseudo_compile_time_identifier] = ACTIONS(819), [anon_sym_shared] = ACTIONS(83), [anon_sym_map_LBRACK] = ACTIONS(85), [anon_sym_chan] = ACTIONS(87), [anon_sym_thread] = ACTIONS(89), [anon_sym_atomic] = ACTIONS(91), - [sym___double_quote] = ACTIONS(755), - [sym___single_quote] = ACTIONS(757), - [sym___c_double_quote] = ACTIONS(759), - [sym___c_single_quote] = ACTIONS(761), - [sym___r_double_quote] = ACTIONS(763), - [sym___r_single_quote] = ACTIONS(765), - }, - [117] = { - [sym_line_comment] = STATE(117), - [sym_block_comment] = STATE(117), - [sym__expression] = STATE(2731), - [sym__expression_without_blocks] = STATE(1902), - [sym__expression_with_blocks] = STATE(2870), - [sym_inc_expression] = STATE(2032), - [sym_dec_expression] = STATE(2032), - [sym_or_block_expression] = STATE(2032), - [sym_option_propagation_expression] = STATE(2032), - [sym_result_propagation_expression] = STATE(2032), - [sym_anon_struct_value_expression] = STATE(2868), - [sym_go_expression] = STATE(2032), - [sym_spawn_expression] = STATE(2032), - [sym_parenthesized_expression] = STATE(2032), - [sym_call_expression] = STATE(2032), - [sym_type_initializer] = STATE(2868), - [sym_function_literal] = STATE(2032), - [sym_reference_expression] = STATE(1914), - [sym_type_reference_expression] = STATE(3541), - [sym_unary_expression] = STATE(2032), - [sym_receive_expression] = STATE(2032), - [sym_binary_expression] = STATE(2032), - [sym_as_type_cast_expression] = STATE(2032), - [sym__max_group] = STATE(2032), - [sym_literal] = STATE(2027), - [sym_map_init_expression] = STATE(2868), - [sym_array_creation] = STATE(2032), - [sym_fixed_array_creation] = STATE(2032), - [sym_selector_expression] = STATE(2032), - [sym_index_expression] = STATE(2032), - [sym_slice_expression] = STATE(2032), - [sym_if_expression] = STATE(2868), - [sym_compile_time_if_expression] = STATE(2868), - [sym_is_expression] = STATE(2032), - [sym_in_expression] = STATE(2032), - [sym_enum_fetch] = STATE(2032), - [sym_match_expression] = STATE(2868), - [sym_select_expression] = STATE(2868), - [sym_select_arm] = STATE(2139), - [sym_select_arm_statement] = STATE(4161), - [sym_select_var_declaration] = STATE(4478), - [sym_select_else_arn_clause] = STATE(4540), - [sym_lock_expression] = STATE(2868), - [sym_unsafe_expression] = STATE(2868), - [sym_sql_expression] = STATE(2868), - [sym_c_string_literal] = STATE(2026), - [sym_raw_string_literal] = STATE(2026), - [sym_interpreted_string_literal] = STATE(2026), - [sym_mutability_modifiers] = STATE(635), - [sym_mutable_identifier] = STATE(3928), - [sym_identifier_list] = STATE(4484), - [sym_expression_without_blocks_list] = STATE(3279), - [sym_plain_type] = STATE(4094), - [sym__plain_type_without_special] = STATE(2302), - [sym_anon_struct_type] = STATE(2303), - [sym_multi_return_type] = STATE(2302), - [sym_result_type] = STATE(2302), - [sym_option_type] = STATE(2302), - [sym_qualified_type] = STATE(3541), - [sym_fixed_array_type] = STATE(2303), - [sym_array_type] = STATE(2303), - [sym_pointer_type] = STATE(2303), - [sym_wrong_pointer_type] = STATE(2303), - [sym_map_type] = STATE(2303), - [sym_channel_type] = STATE(2303), - [sym_shared_type] = STATE(2303), - [sym_thread_type] = STATE(2303), - [sym_atomic_type] = STATE(2303), - [sym_generic_type] = STATE(2303), - [sym_function_type] = STATE(2303), - [sym_send_statement] = STATE(4478), - [aux_sym_select_expression_repeat1] = STATE(149), - [sym_identifier] = ACTIONS(701), - [anon_sym_SLASH_SLASH] = ACTIONS(3), - [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(703), - [anon_sym_LBRACE] = ACTIONS(705), - [anon_sym_RBRACE] = ACTIONS(889), - [anon_sym_LPAREN] = ACTIONS(709), - [anon_sym_fn] = ACTIONS(711), - [anon_sym_PLUS] = ACTIONS(713), - [anon_sym_DASH] = ACTIONS(713), - [anon_sym_STAR] = ACTIONS(715), - [anon_sym_struct] = ACTIONS(717), - [anon_sym_mut] = ACTIONS(41), - [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(719), - [anon_sym_go] = ACTIONS(721), - [anon_sym_spawn] = ACTIONS(723), - [anon_sym_json_DOTdecode] = ACTIONS(725), - [anon_sym_LBRACK2] = ACTIONS(727), - [anon_sym_TILDE] = ACTIONS(713), - [anon_sym_CARET] = ACTIONS(713), - [anon_sym_AMP] = ACTIONS(729), - [anon_sym_LT_DASH] = ACTIONS(731), - [sym_none] = ACTIONS(733), - [sym_true] = ACTIONS(733), - [sym_false] = ACTIONS(733), - [sym_nil] = ACTIONS(733), - [anon_sym_if] = ACTIONS(735), - [anon_sym_else] = ACTIONS(737), - [anon_sym_DOLLARif] = ACTIONS(739), - [anon_sym_match] = ACTIONS(741), - [anon_sym_select] = ACTIONS(743), - [anon_sym_lock] = ACTIONS(745), - [anon_sym_rlock] = ACTIONS(745), - [anon_sym_unsafe] = ACTIONS(747), - [anon_sym_sql] = ACTIONS(749), - [sym_int_literal] = ACTIONS(733), - [sym_float_literal] = ACTIONS(751), - [sym_rune_literal] = ACTIONS(751), - [sym_pseudo_compile_time_identifier] = ACTIONS(753), - [anon_sym_shared] = ACTIONS(83), - [anon_sym_map_LBRACK] = ACTIONS(85), - [anon_sym_chan] = ACTIONS(87), - [anon_sym_thread] = ACTIONS(89), - [anon_sym_atomic] = ACTIONS(91), - [sym___double_quote] = ACTIONS(755), - [sym___single_quote] = ACTIONS(757), - [sym___c_double_quote] = ACTIONS(759), - [sym___c_single_quote] = ACTIONS(761), - [sym___r_double_quote] = ACTIONS(763), - [sym___r_single_quote] = ACTIONS(765), - }, - [118] = { - [sym_line_comment] = STATE(118), - [sym_block_comment] = STATE(118), - [sym__expression] = STATE(2731), - [sym__expression_without_blocks] = STATE(1902), - [sym__expression_with_blocks] = STATE(2870), - [sym_inc_expression] = STATE(2032), - [sym_dec_expression] = STATE(2032), - [sym_or_block_expression] = STATE(2032), - [sym_option_propagation_expression] = STATE(2032), - [sym_result_propagation_expression] = STATE(2032), - [sym_anon_struct_value_expression] = STATE(2868), - [sym_go_expression] = STATE(2032), - [sym_spawn_expression] = STATE(2032), - [sym_parenthesized_expression] = STATE(2032), - [sym_call_expression] = STATE(2032), - [sym_type_initializer] = STATE(2868), - [sym_function_literal] = STATE(2032), - [sym_reference_expression] = STATE(1914), - [sym_type_reference_expression] = STATE(3541), - [sym_unary_expression] = STATE(2032), - [sym_receive_expression] = STATE(2032), - [sym_binary_expression] = STATE(2032), - [sym_as_type_cast_expression] = STATE(2032), - [sym__max_group] = STATE(2032), - [sym_literal] = STATE(2027), - [sym_map_init_expression] = STATE(2868), - [sym_array_creation] = STATE(2032), - [sym_fixed_array_creation] = STATE(2032), - [sym_selector_expression] = STATE(2032), - [sym_index_expression] = STATE(2032), - [sym_slice_expression] = STATE(2032), - [sym_if_expression] = STATE(2868), - [sym_compile_time_if_expression] = STATE(2868), - [sym_is_expression] = STATE(2032), - [sym_in_expression] = STATE(2032), - [sym_enum_fetch] = STATE(2032), - [sym_match_expression] = STATE(2868), - [sym_select_expression] = STATE(2868), - [sym_select_arm] = STATE(2139), - [sym_select_arm_statement] = STATE(4161), - [sym_select_var_declaration] = STATE(4478), - [sym_select_else_arn_clause] = STATE(4618), - [sym_lock_expression] = STATE(2868), - [sym_unsafe_expression] = STATE(2868), - [sym_sql_expression] = STATE(2868), - [sym_c_string_literal] = STATE(2026), - [sym_raw_string_literal] = STATE(2026), - [sym_interpreted_string_literal] = STATE(2026), - [sym_mutability_modifiers] = STATE(635), - [sym_mutable_identifier] = STATE(3928), - [sym_identifier_list] = STATE(4484), - [sym_expression_without_blocks_list] = STATE(3279), - [sym_plain_type] = STATE(4094), - [sym__plain_type_without_special] = STATE(2302), - [sym_anon_struct_type] = STATE(2303), - [sym_multi_return_type] = STATE(2302), - [sym_result_type] = STATE(2302), - [sym_option_type] = STATE(2302), - [sym_qualified_type] = STATE(3541), - [sym_fixed_array_type] = STATE(2303), - [sym_array_type] = STATE(2303), - [sym_pointer_type] = STATE(2303), - [sym_wrong_pointer_type] = STATE(2303), - [sym_map_type] = STATE(2303), - [sym_channel_type] = STATE(2303), - [sym_shared_type] = STATE(2303), - [sym_thread_type] = STATE(2303), - [sym_atomic_type] = STATE(2303), - [sym_generic_type] = STATE(2303), - [sym_function_type] = STATE(2303), - [sym_send_statement] = STATE(4478), - [aux_sym_select_expression_repeat1] = STATE(149), - [sym_identifier] = ACTIONS(701), - [anon_sym_SLASH_SLASH] = ACTIONS(3), - [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(703), - [anon_sym_LBRACE] = ACTIONS(705), - [anon_sym_RBRACE] = ACTIONS(891), - [anon_sym_LPAREN] = ACTIONS(709), - [anon_sym_fn] = ACTIONS(711), - [anon_sym_PLUS] = ACTIONS(713), - [anon_sym_DASH] = ACTIONS(713), - [anon_sym_STAR] = ACTIONS(715), - [anon_sym_struct] = ACTIONS(717), - [anon_sym_mut] = ACTIONS(41), - [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(719), - [anon_sym_go] = ACTIONS(721), - [anon_sym_spawn] = ACTIONS(723), - [anon_sym_json_DOTdecode] = ACTIONS(725), - [anon_sym_LBRACK2] = ACTIONS(727), - [anon_sym_TILDE] = ACTIONS(713), - [anon_sym_CARET] = ACTIONS(713), - [anon_sym_AMP] = ACTIONS(729), - [anon_sym_LT_DASH] = ACTIONS(731), - [sym_none] = ACTIONS(733), - [sym_true] = ACTIONS(733), - [sym_false] = ACTIONS(733), - [sym_nil] = ACTIONS(733), - [anon_sym_if] = ACTIONS(735), - [anon_sym_else] = ACTIONS(737), - [anon_sym_DOLLARif] = ACTIONS(739), - [anon_sym_match] = ACTIONS(741), - [anon_sym_select] = ACTIONS(743), - [anon_sym_lock] = ACTIONS(745), - [anon_sym_rlock] = ACTIONS(745), - [anon_sym_unsafe] = ACTIONS(747), - [anon_sym_sql] = ACTIONS(749), - [sym_int_literal] = ACTIONS(733), - [sym_float_literal] = ACTIONS(751), - [sym_rune_literal] = ACTIONS(751), - [sym_pseudo_compile_time_identifier] = ACTIONS(753), - [anon_sym_shared] = ACTIONS(83), - [anon_sym_map_LBRACK] = ACTIONS(85), - [anon_sym_chan] = ACTIONS(87), - [anon_sym_thread] = ACTIONS(89), - [anon_sym_atomic] = ACTIONS(91), - [sym___double_quote] = ACTIONS(755), - [sym___single_quote] = ACTIONS(757), - [sym___c_double_quote] = ACTIONS(759), - [sym___c_single_quote] = ACTIONS(761), - [sym___r_double_quote] = ACTIONS(763), - [sym___r_single_quote] = ACTIONS(765), - }, - [119] = { - [sym_line_comment] = STATE(119), - [sym_block_comment] = STATE(119), - [sym__expression] = STATE(2731), - [sym__expression_without_blocks] = STATE(1902), - [sym__expression_with_blocks] = STATE(2870), - [sym_inc_expression] = STATE(2032), - [sym_dec_expression] = STATE(2032), - [sym_or_block_expression] = STATE(2032), - [sym_option_propagation_expression] = STATE(2032), - [sym_result_propagation_expression] = STATE(2032), - [sym_anon_struct_value_expression] = STATE(2868), - [sym_go_expression] = STATE(2032), - [sym_spawn_expression] = STATE(2032), - [sym_parenthesized_expression] = STATE(2032), - [sym_call_expression] = STATE(2032), - [sym_type_initializer] = STATE(2868), - [sym_function_literal] = STATE(2032), - [sym_reference_expression] = STATE(1914), - [sym_type_reference_expression] = STATE(3541), - [sym_unary_expression] = STATE(2032), - [sym_receive_expression] = STATE(2032), - [sym_binary_expression] = STATE(2032), - [sym_as_type_cast_expression] = STATE(2032), - [sym__max_group] = STATE(2032), - [sym_literal] = STATE(2027), - [sym_map_init_expression] = STATE(2868), - [sym_array_creation] = STATE(2032), - [sym_fixed_array_creation] = STATE(2032), - [sym_selector_expression] = STATE(2032), - [sym_index_expression] = STATE(2032), - [sym_slice_expression] = STATE(2032), - [sym_if_expression] = STATE(2868), - [sym_compile_time_if_expression] = STATE(2868), - [sym_is_expression] = STATE(2032), - [sym_in_expression] = STATE(2032), - [sym_enum_fetch] = STATE(2032), - [sym_match_expression] = STATE(2868), - [sym_select_expression] = STATE(2868), - [sym_select_arm] = STATE(2139), - [sym_select_arm_statement] = STATE(4161), - [sym_select_var_declaration] = STATE(4478), - [sym_select_else_arn_clause] = STATE(4570), - [sym_lock_expression] = STATE(2868), - [sym_unsafe_expression] = STATE(2868), - [sym_sql_expression] = STATE(2868), - [sym_c_string_literal] = STATE(2026), - [sym_raw_string_literal] = STATE(2026), - [sym_interpreted_string_literal] = STATE(2026), - [sym_mutability_modifiers] = STATE(635), - [sym_mutable_identifier] = STATE(3928), - [sym_identifier_list] = STATE(4484), - [sym_expression_without_blocks_list] = STATE(3279), - [sym_plain_type] = STATE(4094), - [sym__plain_type_without_special] = STATE(2302), - [sym_anon_struct_type] = STATE(2303), - [sym_multi_return_type] = STATE(2302), - [sym_result_type] = STATE(2302), - [sym_option_type] = STATE(2302), - [sym_qualified_type] = STATE(3541), - [sym_fixed_array_type] = STATE(2303), - [sym_array_type] = STATE(2303), - [sym_pointer_type] = STATE(2303), - [sym_wrong_pointer_type] = STATE(2303), - [sym_map_type] = STATE(2303), - [sym_channel_type] = STATE(2303), - [sym_shared_type] = STATE(2303), - [sym_thread_type] = STATE(2303), - [sym_atomic_type] = STATE(2303), - [sym_generic_type] = STATE(2303), - [sym_function_type] = STATE(2303), - [sym_send_statement] = STATE(4478), - [aux_sym_select_expression_repeat1] = STATE(149), - [sym_identifier] = ACTIONS(701), - [anon_sym_SLASH_SLASH] = ACTIONS(3), - [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(703), - [anon_sym_LBRACE] = ACTIONS(705), - [anon_sym_RBRACE] = ACTIONS(893), - [anon_sym_LPAREN] = ACTIONS(709), - [anon_sym_fn] = ACTIONS(711), - [anon_sym_PLUS] = ACTIONS(713), - [anon_sym_DASH] = ACTIONS(713), - [anon_sym_STAR] = ACTIONS(715), - [anon_sym_struct] = ACTIONS(717), - [anon_sym_mut] = ACTIONS(41), - [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(719), - [anon_sym_go] = ACTIONS(721), - [anon_sym_spawn] = ACTIONS(723), - [anon_sym_json_DOTdecode] = ACTIONS(725), - [anon_sym_LBRACK2] = ACTIONS(727), - [anon_sym_TILDE] = ACTIONS(713), - [anon_sym_CARET] = ACTIONS(713), - [anon_sym_AMP] = ACTIONS(729), - [anon_sym_LT_DASH] = ACTIONS(731), - [sym_none] = ACTIONS(733), - [sym_true] = ACTIONS(733), - [sym_false] = ACTIONS(733), - [sym_nil] = ACTIONS(733), - [anon_sym_if] = ACTIONS(735), - [anon_sym_else] = ACTIONS(737), - [anon_sym_DOLLARif] = ACTIONS(739), - [anon_sym_match] = ACTIONS(741), - [anon_sym_select] = ACTIONS(743), - [anon_sym_lock] = ACTIONS(745), - [anon_sym_rlock] = ACTIONS(745), - [anon_sym_unsafe] = ACTIONS(747), - [anon_sym_sql] = ACTIONS(749), - [sym_int_literal] = ACTIONS(733), - [sym_float_literal] = ACTIONS(751), - [sym_rune_literal] = ACTIONS(751), - [sym_pseudo_compile_time_identifier] = ACTIONS(753), - [anon_sym_shared] = ACTIONS(83), - [anon_sym_map_LBRACK] = ACTIONS(85), - [anon_sym_chan] = ACTIONS(87), - [anon_sym_thread] = ACTIONS(89), - [anon_sym_atomic] = ACTIONS(91), - [sym___double_quote] = ACTIONS(755), - [sym___single_quote] = ACTIONS(757), - [sym___c_double_quote] = ACTIONS(759), - [sym___c_single_quote] = ACTIONS(761), - [sym___r_double_quote] = ACTIONS(763), - [sym___r_single_quote] = ACTIONS(765), - }, - [120] = { - [sym_line_comment] = STATE(120), - [sym_block_comment] = STATE(120), - [sym__expression] = STATE(2731), - [sym__expression_without_blocks] = STATE(1902), - [sym__expression_with_blocks] = STATE(2870), - [sym_inc_expression] = STATE(2032), - [sym_dec_expression] = STATE(2032), - [sym_or_block_expression] = STATE(2032), - [sym_option_propagation_expression] = STATE(2032), - [sym_result_propagation_expression] = STATE(2032), - [sym_anon_struct_value_expression] = STATE(2868), - [sym_go_expression] = STATE(2032), - [sym_spawn_expression] = STATE(2032), - [sym_parenthesized_expression] = STATE(2032), - [sym_call_expression] = STATE(2032), - [sym_type_initializer] = STATE(2868), - [sym_function_literal] = STATE(2032), - [sym_reference_expression] = STATE(1914), - [sym_type_reference_expression] = STATE(3541), - [sym_unary_expression] = STATE(2032), - [sym_receive_expression] = STATE(2032), - [sym_binary_expression] = STATE(2032), - [sym_as_type_cast_expression] = STATE(2032), - [sym__max_group] = STATE(2032), - [sym_literal] = STATE(2027), - [sym_map_init_expression] = STATE(2868), - [sym_array_creation] = STATE(2032), - [sym_fixed_array_creation] = STATE(2032), - [sym_selector_expression] = STATE(2032), - [sym_index_expression] = STATE(2032), - [sym_slice_expression] = STATE(2032), - [sym_if_expression] = STATE(2868), - [sym_compile_time_if_expression] = STATE(2868), - [sym_is_expression] = STATE(2032), - [sym_in_expression] = STATE(2032), - [sym_enum_fetch] = STATE(2032), - [sym_match_expression] = STATE(2868), - [sym_select_expression] = STATE(2868), - [sym_select_arm] = STATE(2139), - [sym_select_arm_statement] = STATE(4161), - [sym_select_var_declaration] = STATE(4478), - [sym_select_else_arn_clause] = STATE(4408), - [sym_lock_expression] = STATE(2868), - [sym_unsafe_expression] = STATE(2868), - [sym_sql_expression] = STATE(2868), - [sym_c_string_literal] = STATE(2026), - [sym_raw_string_literal] = STATE(2026), - [sym_interpreted_string_literal] = STATE(2026), - [sym_mutability_modifiers] = STATE(635), - [sym_mutable_identifier] = STATE(3928), - [sym_identifier_list] = STATE(4484), - [sym_expression_without_blocks_list] = STATE(3279), - [sym_plain_type] = STATE(4094), - [sym__plain_type_without_special] = STATE(2302), - [sym_anon_struct_type] = STATE(2303), - [sym_multi_return_type] = STATE(2302), - [sym_result_type] = STATE(2302), - [sym_option_type] = STATE(2302), - [sym_qualified_type] = STATE(3541), - [sym_fixed_array_type] = STATE(2303), - [sym_array_type] = STATE(2303), - [sym_pointer_type] = STATE(2303), - [sym_wrong_pointer_type] = STATE(2303), - [sym_map_type] = STATE(2303), - [sym_channel_type] = STATE(2303), - [sym_shared_type] = STATE(2303), - [sym_thread_type] = STATE(2303), - [sym_atomic_type] = STATE(2303), - [sym_generic_type] = STATE(2303), - [sym_function_type] = STATE(2303), - [sym_send_statement] = STATE(4478), - [aux_sym_select_expression_repeat1] = STATE(149), - [sym_identifier] = ACTIONS(701), - [anon_sym_SLASH_SLASH] = ACTIONS(3), - [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(703), - [anon_sym_LBRACE] = ACTIONS(705), - [anon_sym_RBRACE] = ACTIONS(895), - [anon_sym_LPAREN] = ACTIONS(709), - [anon_sym_fn] = ACTIONS(711), - [anon_sym_PLUS] = ACTIONS(713), - [anon_sym_DASH] = ACTIONS(713), - [anon_sym_STAR] = ACTIONS(715), - [anon_sym_struct] = ACTIONS(717), - [anon_sym_mut] = ACTIONS(41), - [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(719), - [anon_sym_go] = ACTIONS(721), - [anon_sym_spawn] = ACTIONS(723), - [anon_sym_json_DOTdecode] = ACTIONS(725), - [anon_sym_LBRACK2] = ACTIONS(727), - [anon_sym_TILDE] = ACTIONS(713), - [anon_sym_CARET] = ACTIONS(713), - [anon_sym_AMP] = ACTIONS(729), - [anon_sym_LT_DASH] = ACTIONS(731), - [sym_none] = ACTIONS(733), - [sym_true] = ACTIONS(733), - [sym_false] = ACTIONS(733), - [sym_nil] = ACTIONS(733), - [anon_sym_if] = ACTIONS(735), - [anon_sym_else] = ACTIONS(737), - [anon_sym_DOLLARif] = ACTIONS(739), - [anon_sym_match] = ACTIONS(741), - [anon_sym_select] = ACTIONS(743), - [anon_sym_lock] = ACTIONS(745), - [anon_sym_rlock] = ACTIONS(745), - [anon_sym_unsafe] = ACTIONS(747), - [anon_sym_sql] = ACTIONS(749), - [sym_int_literal] = ACTIONS(733), - [sym_float_literal] = ACTIONS(751), - [sym_rune_literal] = ACTIONS(751), - [sym_pseudo_compile_time_identifier] = ACTIONS(753), - [anon_sym_shared] = ACTIONS(83), - [anon_sym_map_LBRACK] = ACTIONS(85), - [anon_sym_chan] = ACTIONS(87), - [anon_sym_thread] = ACTIONS(89), - [anon_sym_atomic] = ACTIONS(91), - [sym___double_quote] = ACTIONS(755), - [sym___single_quote] = ACTIONS(757), - [sym___c_double_quote] = ACTIONS(759), - [sym___c_single_quote] = ACTIONS(761), - [sym___r_double_quote] = ACTIONS(763), - [sym___r_single_quote] = ACTIONS(765), - }, - [121] = { - [sym_line_comment] = STATE(121), - [sym_block_comment] = STATE(121), - [sym__expression] = STATE(2731), - [sym__expression_without_blocks] = STATE(1902), - [sym__expression_with_blocks] = STATE(2870), - [sym_inc_expression] = STATE(2032), - [sym_dec_expression] = STATE(2032), - [sym_or_block_expression] = STATE(2032), - [sym_option_propagation_expression] = STATE(2032), - [sym_result_propagation_expression] = STATE(2032), - [sym_anon_struct_value_expression] = STATE(2868), - [sym_go_expression] = STATE(2032), - [sym_spawn_expression] = STATE(2032), - [sym_parenthesized_expression] = STATE(2032), - [sym_call_expression] = STATE(2032), - [sym_type_initializer] = STATE(2868), - [sym_function_literal] = STATE(2032), - [sym_reference_expression] = STATE(1914), - [sym_type_reference_expression] = STATE(3541), - [sym_unary_expression] = STATE(2032), - [sym_receive_expression] = STATE(2032), - [sym_binary_expression] = STATE(2032), - [sym_as_type_cast_expression] = STATE(2032), - [sym__max_group] = STATE(2032), - [sym_literal] = STATE(2027), - [sym_map_init_expression] = STATE(2868), - [sym_array_creation] = STATE(2032), - [sym_fixed_array_creation] = STATE(2032), - [sym_selector_expression] = STATE(2032), - [sym_index_expression] = STATE(2032), - [sym_slice_expression] = STATE(2032), - [sym_if_expression] = STATE(2868), - [sym_compile_time_if_expression] = STATE(2868), - [sym_is_expression] = STATE(2032), - [sym_in_expression] = STATE(2032), - [sym_enum_fetch] = STATE(2032), - [sym_match_expression] = STATE(2868), - [sym_select_expression] = STATE(2868), - [sym_select_arm] = STATE(2139), - [sym_select_arm_statement] = STATE(4161), - [sym_select_var_declaration] = STATE(4478), - [sym_select_else_arn_clause] = STATE(4395), - [sym_lock_expression] = STATE(2868), - [sym_unsafe_expression] = STATE(2868), - [sym_sql_expression] = STATE(2868), - [sym_c_string_literal] = STATE(2026), - [sym_raw_string_literal] = STATE(2026), - [sym_interpreted_string_literal] = STATE(2026), - [sym_mutability_modifiers] = STATE(635), - [sym_mutable_identifier] = STATE(3928), - [sym_identifier_list] = STATE(4484), - [sym_expression_without_blocks_list] = STATE(3279), - [sym_plain_type] = STATE(4094), - [sym__plain_type_without_special] = STATE(2302), - [sym_anon_struct_type] = STATE(2303), - [sym_multi_return_type] = STATE(2302), - [sym_result_type] = STATE(2302), - [sym_option_type] = STATE(2302), - [sym_qualified_type] = STATE(3541), - [sym_fixed_array_type] = STATE(2303), - [sym_array_type] = STATE(2303), - [sym_pointer_type] = STATE(2303), - [sym_wrong_pointer_type] = STATE(2303), - [sym_map_type] = STATE(2303), - [sym_channel_type] = STATE(2303), - [sym_shared_type] = STATE(2303), - [sym_thread_type] = STATE(2303), - [sym_atomic_type] = STATE(2303), - [sym_generic_type] = STATE(2303), - [sym_function_type] = STATE(2303), - [sym_send_statement] = STATE(4478), - [aux_sym_select_expression_repeat1] = STATE(149), - [sym_identifier] = ACTIONS(701), - [anon_sym_SLASH_SLASH] = ACTIONS(3), - [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(703), - [anon_sym_LBRACE] = ACTIONS(705), - [anon_sym_RBRACE] = ACTIONS(897), - [anon_sym_LPAREN] = ACTIONS(709), - [anon_sym_fn] = ACTIONS(711), - [anon_sym_PLUS] = ACTIONS(713), - [anon_sym_DASH] = ACTIONS(713), - [anon_sym_STAR] = ACTIONS(715), - [anon_sym_struct] = ACTIONS(717), - [anon_sym_mut] = ACTIONS(41), - [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(719), - [anon_sym_go] = ACTIONS(721), - [anon_sym_spawn] = ACTIONS(723), - [anon_sym_json_DOTdecode] = ACTIONS(725), - [anon_sym_LBRACK2] = ACTIONS(727), - [anon_sym_TILDE] = ACTIONS(713), - [anon_sym_CARET] = ACTIONS(713), - [anon_sym_AMP] = ACTIONS(729), - [anon_sym_LT_DASH] = ACTIONS(731), - [sym_none] = ACTIONS(733), - [sym_true] = ACTIONS(733), - [sym_false] = ACTIONS(733), - [sym_nil] = ACTIONS(733), - [anon_sym_if] = ACTIONS(735), - [anon_sym_else] = ACTIONS(737), - [anon_sym_DOLLARif] = ACTIONS(739), - [anon_sym_match] = ACTIONS(741), - [anon_sym_select] = ACTIONS(743), - [anon_sym_lock] = ACTIONS(745), - [anon_sym_rlock] = ACTIONS(745), - [anon_sym_unsafe] = ACTIONS(747), - [anon_sym_sql] = ACTIONS(749), - [sym_int_literal] = ACTIONS(733), - [sym_float_literal] = ACTIONS(751), - [sym_rune_literal] = ACTIONS(751), - [sym_pseudo_compile_time_identifier] = ACTIONS(753), - [anon_sym_shared] = ACTIONS(83), - [anon_sym_map_LBRACK] = ACTIONS(85), - [anon_sym_chan] = ACTIONS(87), - [anon_sym_thread] = ACTIONS(89), - [anon_sym_atomic] = ACTIONS(91), - [sym___double_quote] = ACTIONS(755), - [sym___single_quote] = ACTIONS(757), - [sym___c_double_quote] = ACTIONS(759), - [sym___c_single_quote] = ACTIONS(761), - [sym___r_double_quote] = ACTIONS(763), - [sym___r_single_quote] = ACTIONS(765), - }, - [122] = { - [sym_line_comment] = STATE(122), - [sym_block_comment] = STATE(122), - [sym__expression] = STATE(2731), - [sym__expression_without_blocks] = STATE(1902), - [sym__expression_with_blocks] = STATE(2870), - [sym_inc_expression] = STATE(2032), - [sym_dec_expression] = STATE(2032), - [sym_or_block_expression] = STATE(2032), - [sym_option_propagation_expression] = STATE(2032), - [sym_result_propagation_expression] = STATE(2032), - [sym_anon_struct_value_expression] = STATE(2868), - [sym_go_expression] = STATE(2032), - [sym_spawn_expression] = STATE(2032), - [sym_parenthesized_expression] = STATE(2032), - [sym_call_expression] = STATE(2032), - [sym_type_initializer] = STATE(2868), - [sym_function_literal] = STATE(2032), - [sym_reference_expression] = STATE(1914), - [sym_type_reference_expression] = STATE(3541), - [sym_unary_expression] = STATE(2032), - [sym_receive_expression] = STATE(2032), - [sym_binary_expression] = STATE(2032), - [sym_as_type_cast_expression] = STATE(2032), - [sym__max_group] = STATE(2032), - [sym_literal] = STATE(2027), - [sym_map_init_expression] = STATE(2868), - [sym_array_creation] = STATE(2032), - [sym_fixed_array_creation] = STATE(2032), - [sym_selector_expression] = STATE(2032), - [sym_index_expression] = STATE(2032), - [sym_slice_expression] = STATE(2032), - [sym_if_expression] = STATE(2868), - [sym_compile_time_if_expression] = STATE(2868), - [sym_is_expression] = STATE(2032), - [sym_in_expression] = STATE(2032), - [sym_enum_fetch] = STATE(2032), - [sym_match_expression] = STATE(2868), - [sym_select_expression] = STATE(2868), - [sym_select_arm] = STATE(2139), - [sym_select_arm_statement] = STATE(4161), - [sym_select_var_declaration] = STATE(4478), - [sym_select_else_arn_clause] = STATE(4387), - [sym_lock_expression] = STATE(2868), - [sym_unsafe_expression] = STATE(2868), - [sym_sql_expression] = STATE(2868), - [sym_c_string_literal] = STATE(2026), - [sym_raw_string_literal] = STATE(2026), - [sym_interpreted_string_literal] = STATE(2026), - [sym_mutability_modifiers] = STATE(635), - [sym_mutable_identifier] = STATE(3928), - [sym_identifier_list] = STATE(4484), - [sym_expression_without_blocks_list] = STATE(3279), - [sym_plain_type] = STATE(4094), - [sym__plain_type_without_special] = STATE(2302), - [sym_anon_struct_type] = STATE(2303), - [sym_multi_return_type] = STATE(2302), - [sym_result_type] = STATE(2302), - [sym_option_type] = STATE(2302), - [sym_qualified_type] = STATE(3541), - [sym_fixed_array_type] = STATE(2303), - [sym_array_type] = STATE(2303), - [sym_pointer_type] = STATE(2303), - [sym_wrong_pointer_type] = STATE(2303), - [sym_map_type] = STATE(2303), - [sym_channel_type] = STATE(2303), - [sym_shared_type] = STATE(2303), - [sym_thread_type] = STATE(2303), - [sym_atomic_type] = STATE(2303), - [sym_generic_type] = STATE(2303), - [sym_function_type] = STATE(2303), - [sym_send_statement] = STATE(4478), - [aux_sym_select_expression_repeat1] = STATE(149), - [sym_identifier] = ACTIONS(701), - [anon_sym_SLASH_SLASH] = ACTIONS(3), - [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(703), - [anon_sym_LBRACE] = ACTIONS(705), - [anon_sym_RBRACE] = ACTIONS(899), - [anon_sym_LPAREN] = ACTIONS(709), - [anon_sym_fn] = ACTIONS(711), - [anon_sym_PLUS] = ACTIONS(713), - [anon_sym_DASH] = ACTIONS(713), - [anon_sym_STAR] = ACTIONS(715), - [anon_sym_struct] = ACTIONS(717), - [anon_sym_mut] = ACTIONS(41), - [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(719), - [anon_sym_go] = ACTIONS(721), - [anon_sym_spawn] = ACTIONS(723), - [anon_sym_json_DOTdecode] = ACTIONS(725), - [anon_sym_LBRACK2] = ACTIONS(727), - [anon_sym_TILDE] = ACTIONS(713), - [anon_sym_CARET] = ACTIONS(713), - [anon_sym_AMP] = ACTIONS(729), - [anon_sym_LT_DASH] = ACTIONS(731), - [sym_none] = ACTIONS(733), - [sym_true] = ACTIONS(733), - [sym_false] = ACTIONS(733), - [sym_nil] = ACTIONS(733), - [anon_sym_if] = ACTIONS(735), - [anon_sym_else] = ACTIONS(737), - [anon_sym_DOLLARif] = ACTIONS(739), - [anon_sym_match] = ACTIONS(741), - [anon_sym_select] = ACTIONS(743), - [anon_sym_lock] = ACTIONS(745), - [anon_sym_rlock] = ACTIONS(745), - [anon_sym_unsafe] = ACTIONS(747), - [anon_sym_sql] = ACTIONS(749), - [sym_int_literal] = ACTIONS(733), - [sym_float_literal] = ACTIONS(751), - [sym_rune_literal] = ACTIONS(751), - [sym_pseudo_compile_time_identifier] = ACTIONS(753), - [anon_sym_shared] = ACTIONS(83), - [anon_sym_map_LBRACK] = ACTIONS(85), - [anon_sym_chan] = ACTIONS(87), - [anon_sym_thread] = ACTIONS(89), - [anon_sym_atomic] = ACTIONS(91), - [sym___double_quote] = ACTIONS(755), - [sym___single_quote] = ACTIONS(757), - [sym___c_double_quote] = ACTIONS(759), - [sym___c_single_quote] = ACTIONS(761), - [sym___r_double_quote] = ACTIONS(763), - [sym___r_single_quote] = ACTIONS(765), - }, - [123] = { - [sym_line_comment] = STATE(123), - [sym_block_comment] = STATE(123), - [sym__expression] = STATE(2731), - [sym__expression_without_blocks] = STATE(1902), - [sym__expression_with_blocks] = STATE(2870), - [sym_inc_expression] = STATE(2032), - [sym_dec_expression] = STATE(2032), - [sym_or_block_expression] = STATE(2032), - [sym_option_propagation_expression] = STATE(2032), - [sym_result_propagation_expression] = STATE(2032), - [sym_anon_struct_value_expression] = STATE(2868), - [sym_go_expression] = STATE(2032), - [sym_spawn_expression] = STATE(2032), - [sym_parenthesized_expression] = STATE(2032), - [sym_call_expression] = STATE(2032), - [sym_type_initializer] = STATE(2868), - [sym_function_literal] = STATE(2032), - [sym_reference_expression] = STATE(1914), - [sym_type_reference_expression] = STATE(3541), - [sym_unary_expression] = STATE(2032), - [sym_receive_expression] = STATE(2032), - [sym_binary_expression] = STATE(2032), - [sym_as_type_cast_expression] = STATE(2032), - [sym__max_group] = STATE(2032), - [sym_literal] = STATE(2027), - [sym_map_init_expression] = STATE(2868), - [sym_array_creation] = STATE(2032), - [sym_fixed_array_creation] = STATE(2032), - [sym_selector_expression] = STATE(2032), - [sym_index_expression] = STATE(2032), - [sym_slice_expression] = STATE(2032), - [sym_if_expression] = STATE(2868), - [sym_compile_time_if_expression] = STATE(2868), - [sym_is_expression] = STATE(2032), - [sym_in_expression] = STATE(2032), - [sym_enum_fetch] = STATE(2032), - [sym_match_expression] = STATE(2868), - [sym_select_expression] = STATE(2868), - [sym_select_arm] = STATE(2139), - [sym_select_arm_statement] = STATE(4161), - [sym_select_var_declaration] = STATE(4478), - [sym_select_else_arn_clause] = STATE(4422), - [sym_lock_expression] = STATE(2868), - [sym_unsafe_expression] = STATE(2868), - [sym_sql_expression] = STATE(2868), - [sym_c_string_literal] = STATE(2026), - [sym_raw_string_literal] = STATE(2026), - [sym_interpreted_string_literal] = STATE(2026), - [sym_mutability_modifiers] = STATE(635), - [sym_mutable_identifier] = STATE(3928), - [sym_identifier_list] = STATE(4484), - [sym_expression_without_blocks_list] = STATE(3279), - [sym_plain_type] = STATE(4094), - [sym__plain_type_without_special] = STATE(2302), - [sym_anon_struct_type] = STATE(2303), - [sym_multi_return_type] = STATE(2302), - [sym_result_type] = STATE(2302), - [sym_option_type] = STATE(2302), - [sym_qualified_type] = STATE(3541), - [sym_fixed_array_type] = STATE(2303), - [sym_array_type] = STATE(2303), - [sym_pointer_type] = STATE(2303), - [sym_wrong_pointer_type] = STATE(2303), - [sym_map_type] = STATE(2303), - [sym_channel_type] = STATE(2303), - [sym_shared_type] = STATE(2303), - [sym_thread_type] = STATE(2303), - [sym_atomic_type] = STATE(2303), - [sym_generic_type] = STATE(2303), - [sym_function_type] = STATE(2303), - [sym_send_statement] = STATE(4478), - [aux_sym_select_expression_repeat1] = STATE(120), - [sym_identifier] = ACTIONS(701), - [anon_sym_SLASH_SLASH] = ACTIONS(3), - [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(703), - [anon_sym_LBRACE] = ACTIONS(705), - [anon_sym_RBRACE] = ACTIONS(901), - [anon_sym_LPAREN] = ACTIONS(709), - [anon_sym_fn] = ACTIONS(711), - [anon_sym_PLUS] = ACTIONS(713), - [anon_sym_DASH] = ACTIONS(713), - [anon_sym_STAR] = ACTIONS(715), - [anon_sym_struct] = ACTIONS(717), - [anon_sym_mut] = ACTIONS(41), - [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(719), - [anon_sym_go] = ACTIONS(721), - [anon_sym_spawn] = ACTIONS(723), - [anon_sym_json_DOTdecode] = ACTIONS(725), - [anon_sym_LBRACK2] = ACTIONS(727), - [anon_sym_TILDE] = ACTIONS(713), - [anon_sym_CARET] = ACTIONS(713), - [anon_sym_AMP] = ACTIONS(729), - [anon_sym_LT_DASH] = ACTIONS(731), - [sym_none] = ACTIONS(733), - [sym_true] = ACTIONS(733), - [sym_false] = ACTIONS(733), - [sym_nil] = ACTIONS(733), - [anon_sym_if] = ACTIONS(735), - [anon_sym_else] = ACTIONS(737), - [anon_sym_DOLLARif] = ACTIONS(739), - [anon_sym_match] = ACTIONS(741), - [anon_sym_select] = ACTIONS(743), - [anon_sym_lock] = ACTIONS(745), - [anon_sym_rlock] = ACTIONS(745), - [anon_sym_unsafe] = ACTIONS(747), - [anon_sym_sql] = ACTIONS(749), - [sym_int_literal] = ACTIONS(733), - [sym_float_literal] = ACTIONS(751), - [sym_rune_literal] = ACTIONS(751), - [sym_pseudo_compile_time_identifier] = ACTIONS(753), - [anon_sym_shared] = ACTIONS(83), - [anon_sym_map_LBRACK] = ACTIONS(85), - [anon_sym_chan] = ACTIONS(87), - [anon_sym_thread] = ACTIONS(89), - [anon_sym_atomic] = ACTIONS(91), - [sym___double_quote] = ACTIONS(755), - [sym___single_quote] = ACTIONS(757), - [sym___c_double_quote] = ACTIONS(759), - [sym___c_single_quote] = ACTIONS(761), - [sym___r_double_quote] = ACTIONS(763), - [sym___r_single_quote] = ACTIONS(765), - }, - [124] = { - [sym_line_comment] = STATE(124), - [sym_block_comment] = STATE(124), - [sym__expression] = STATE(2731), - [sym__expression_without_blocks] = STATE(1902), - [sym__expression_with_blocks] = STATE(2870), - [sym_inc_expression] = STATE(2032), - [sym_dec_expression] = STATE(2032), - [sym_or_block_expression] = STATE(2032), - [sym_option_propagation_expression] = STATE(2032), - [sym_result_propagation_expression] = STATE(2032), - [sym_anon_struct_value_expression] = STATE(2868), - [sym_go_expression] = STATE(2032), - [sym_spawn_expression] = STATE(2032), - [sym_parenthesized_expression] = STATE(2032), - [sym_call_expression] = STATE(2032), - [sym_type_initializer] = STATE(2868), - [sym_function_literal] = STATE(2032), - [sym_reference_expression] = STATE(1914), - [sym_type_reference_expression] = STATE(3541), - [sym_unary_expression] = STATE(2032), - [sym_receive_expression] = STATE(2032), - [sym_binary_expression] = STATE(2032), - [sym_as_type_cast_expression] = STATE(2032), - [sym__max_group] = STATE(2032), - [sym_literal] = STATE(2027), - [sym_map_init_expression] = STATE(2868), - [sym_array_creation] = STATE(2032), - [sym_fixed_array_creation] = STATE(2032), - [sym_selector_expression] = STATE(2032), - [sym_index_expression] = STATE(2032), - [sym_slice_expression] = STATE(2032), - [sym_if_expression] = STATE(2868), - [sym_compile_time_if_expression] = STATE(2868), - [sym_is_expression] = STATE(2032), - [sym_in_expression] = STATE(2032), - [sym_enum_fetch] = STATE(2032), - [sym_match_expression] = STATE(2868), - [sym_select_expression] = STATE(2868), - [sym_select_arm] = STATE(2139), - [sym_select_arm_statement] = STATE(4161), - [sym_select_var_declaration] = STATE(4478), - [sym_select_else_arn_clause] = STATE(4324), - [sym_lock_expression] = STATE(2868), - [sym_unsafe_expression] = STATE(2868), - [sym_sql_expression] = STATE(2868), - [sym_c_string_literal] = STATE(2026), - [sym_raw_string_literal] = STATE(2026), - [sym_interpreted_string_literal] = STATE(2026), - [sym_mutability_modifiers] = STATE(635), - [sym_mutable_identifier] = STATE(3928), - [sym_identifier_list] = STATE(4484), - [sym_expression_without_blocks_list] = STATE(3279), - [sym_plain_type] = STATE(4094), - [sym__plain_type_without_special] = STATE(2302), - [sym_anon_struct_type] = STATE(2303), - [sym_multi_return_type] = STATE(2302), - [sym_result_type] = STATE(2302), - [sym_option_type] = STATE(2302), - [sym_qualified_type] = STATE(3541), - [sym_fixed_array_type] = STATE(2303), - [sym_array_type] = STATE(2303), - [sym_pointer_type] = STATE(2303), - [sym_wrong_pointer_type] = STATE(2303), - [sym_map_type] = STATE(2303), - [sym_channel_type] = STATE(2303), - [sym_shared_type] = STATE(2303), - [sym_thread_type] = STATE(2303), - [sym_atomic_type] = STATE(2303), - [sym_generic_type] = STATE(2303), - [sym_function_type] = STATE(2303), - [sym_send_statement] = STATE(4478), - [aux_sym_select_expression_repeat1] = STATE(149), - [sym_identifier] = ACTIONS(701), - [anon_sym_SLASH_SLASH] = ACTIONS(3), - [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(703), - [anon_sym_LBRACE] = ACTIONS(705), - [anon_sym_RBRACE] = ACTIONS(903), - [anon_sym_LPAREN] = ACTIONS(709), - [anon_sym_fn] = ACTIONS(711), - [anon_sym_PLUS] = ACTIONS(713), - [anon_sym_DASH] = ACTIONS(713), - [anon_sym_STAR] = ACTIONS(715), - [anon_sym_struct] = ACTIONS(717), - [anon_sym_mut] = ACTIONS(41), - [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(719), - [anon_sym_go] = ACTIONS(721), - [anon_sym_spawn] = ACTIONS(723), - [anon_sym_json_DOTdecode] = ACTIONS(725), - [anon_sym_LBRACK2] = ACTIONS(727), - [anon_sym_TILDE] = ACTIONS(713), - [anon_sym_CARET] = ACTIONS(713), - [anon_sym_AMP] = ACTIONS(729), - [anon_sym_LT_DASH] = ACTIONS(731), - [sym_none] = ACTIONS(733), - [sym_true] = ACTIONS(733), - [sym_false] = ACTIONS(733), - [sym_nil] = ACTIONS(733), - [anon_sym_if] = ACTIONS(735), - [anon_sym_else] = ACTIONS(737), - [anon_sym_DOLLARif] = ACTIONS(739), - [anon_sym_match] = ACTIONS(741), - [anon_sym_select] = ACTIONS(743), - [anon_sym_lock] = ACTIONS(745), - [anon_sym_rlock] = ACTIONS(745), - [anon_sym_unsafe] = ACTIONS(747), - [anon_sym_sql] = ACTIONS(749), - [sym_int_literal] = ACTIONS(733), - [sym_float_literal] = ACTIONS(751), - [sym_rune_literal] = ACTIONS(751), - [sym_pseudo_compile_time_identifier] = ACTIONS(753), - [anon_sym_shared] = ACTIONS(83), - [anon_sym_map_LBRACK] = ACTIONS(85), - [anon_sym_chan] = ACTIONS(87), - [anon_sym_thread] = ACTIONS(89), - [anon_sym_atomic] = ACTIONS(91), - [sym___double_quote] = ACTIONS(755), - [sym___single_quote] = ACTIONS(757), - [sym___c_double_quote] = ACTIONS(759), - [sym___c_single_quote] = ACTIONS(761), - [sym___r_double_quote] = ACTIONS(763), - [sym___r_single_quote] = ACTIONS(765), - }, - [125] = { - [sym_line_comment] = STATE(125), - [sym_block_comment] = STATE(125), - [sym__expression] = STATE(2731), - [sym__expression_without_blocks] = STATE(1902), - [sym__expression_with_blocks] = STATE(2870), - [sym_inc_expression] = STATE(2032), - [sym_dec_expression] = STATE(2032), - [sym_or_block_expression] = STATE(2032), - [sym_option_propagation_expression] = STATE(2032), - [sym_result_propagation_expression] = STATE(2032), - [sym_anon_struct_value_expression] = STATE(2868), - [sym_go_expression] = STATE(2032), - [sym_spawn_expression] = STATE(2032), - [sym_parenthesized_expression] = STATE(2032), - [sym_call_expression] = STATE(2032), - [sym_type_initializer] = STATE(2868), - [sym_function_literal] = STATE(2032), - [sym_reference_expression] = STATE(1914), - [sym_type_reference_expression] = STATE(3541), - [sym_unary_expression] = STATE(2032), - [sym_receive_expression] = STATE(2032), - [sym_binary_expression] = STATE(2032), - [sym_as_type_cast_expression] = STATE(2032), - [sym__max_group] = STATE(2032), - [sym_literal] = STATE(2027), - [sym_map_init_expression] = STATE(2868), - [sym_array_creation] = STATE(2032), - [sym_fixed_array_creation] = STATE(2032), - [sym_selector_expression] = STATE(2032), - [sym_index_expression] = STATE(2032), - [sym_slice_expression] = STATE(2032), - [sym_if_expression] = STATE(2868), - [sym_compile_time_if_expression] = STATE(2868), - [sym_is_expression] = STATE(2032), - [sym_in_expression] = STATE(2032), - [sym_enum_fetch] = STATE(2032), - [sym_match_expression] = STATE(2868), - [sym_select_expression] = STATE(2868), - [sym_select_arm] = STATE(2139), - [sym_select_arm_statement] = STATE(4161), - [sym_select_var_declaration] = STATE(4478), - [sym_select_else_arn_clause] = STATE(4396), - [sym_lock_expression] = STATE(2868), - [sym_unsafe_expression] = STATE(2868), - [sym_sql_expression] = STATE(2868), - [sym_c_string_literal] = STATE(2026), - [sym_raw_string_literal] = STATE(2026), - [sym_interpreted_string_literal] = STATE(2026), - [sym_mutability_modifiers] = STATE(635), - [sym_mutable_identifier] = STATE(3928), - [sym_identifier_list] = STATE(4484), - [sym_expression_without_blocks_list] = STATE(3279), - [sym_plain_type] = STATE(4094), - [sym__plain_type_without_special] = STATE(2302), - [sym_anon_struct_type] = STATE(2303), - [sym_multi_return_type] = STATE(2302), - [sym_result_type] = STATE(2302), - [sym_option_type] = STATE(2302), - [sym_qualified_type] = STATE(3541), - [sym_fixed_array_type] = STATE(2303), - [sym_array_type] = STATE(2303), - [sym_pointer_type] = STATE(2303), - [sym_wrong_pointer_type] = STATE(2303), - [sym_map_type] = STATE(2303), - [sym_channel_type] = STATE(2303), - [sym_shared_type] = STATE(2303), - [sym_thread_type] = STATE(2303), - [sym_atomic_type] = STATE(2303), - [sym_generic_type] = STATE(2303), - [sym_function_type] = STATE(2303), - [sym_send_statement] = STATE(4478), - [aux_sym_select_expression_repeat1] = STATE(148), - [sym_identifier] = ACTIONS(701), - [anon_sym_SLASH_SLASH] = ACTIONS(3), - [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(703), - [anon_sym_LBRACE] = ACTIONS(705), - [anon_sym_RBRACE] = ACTIONS(905), - [anon_sym_LPAREN] = ACTIONS(709), - [anon_sym_fn] = ACTIONS(711), - [anon_sym_PLUS] = ACTIONS(713), - [anon_sym_DASH] = ACTIONS(713), - [anon_sym_STAR] = ACTIONS(715), - [anon_sym_struct] = ACTIONS(717), - [anon_sym_mut] = ACTIONS(41), - [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(719), - [anon_sym_go] = ACTIONS(721), - [anon_sym_spawn] = ACTIONS(723), - [anon_sym_json_DOTdecode] = ACTIONS(725), - [anon_sym_LBRACK2] = ACTIONS(727), - [anon_sym_TILDE] = ACTIONS(713), - [anon_sym_CARET] = ACTIONS(713), - [anon_sym_AMP] = ACTIONS(729), - [anon_sym_LT_DASH] = ACTIONS(731), - [sym_none] = ACTIONS(733), - [sym_true] = ACTIONS(733), - [sym_false] = ACTIONS(733), - [sym_nil] = ACTIONS(733), - [anon_sym_if] = ACTIONS(735), - [anon_sym_else] = ACTIONS(737), - [anon_sym_DOLLARif] = ACTIONS(739), - [anon_sym_match] = ACTIONS(741), - [anon_sym_select] = ACTIONS(743), - [anon_sym_lock] = ACTIONS(745), - [anon_sym_rlock] = ACTIONS(745), - [anon_sym_unsafe] = ACTIONS(747), - [anon_sym_sql] = ACTIONS(749), - [sym_int_literal] = ACTIONS(733), - [sym_float_literal] = ACTIONS(751), - [sym_rune_literal] = ACTIONS(751), - [sym_pseudo_compile_time_identifier] = ACTIONS(753), - [anon_sym_shared] = ACTIONS(83), - [anon_sym_map_LBRACK] = ACTIONS(85), - [anon_sym_chan] = ACTIONS(87), - [anon_sym_thread] = ACTIONS(89), - [anon_sym_atomic] = ACTIONS(91), - [sym___double_quote] = ACTIONS(755), - [sym___single_quote] = ACTIONS(757), - [sym___c_double_quote] = ACTIONS(759), - [sym___c_single_quote] = ACTIONS(761), - [sym___r_double_quote] = ACTIONS(763), - [sym___r_single_quote] = ACTIONS(765), - }, - [126] = { - [sym_line_comment] = STATE(126), - [sym_block_comment] = STATE(126), - [sym__expression] = STATE(2731), - [sym__expression_without_blocks] = STATE(1902), - [sym__expression_with_blocks] = STATE(2870), - [sym_inc_expression] = STATE(2032), - [sym_dec_expression] = STATE(2032), - [sym_or_block_expression] = STATE(2032), - [sym_option_propagation_expression] = STATE(2032), - [sym_result_propagation_expression] = STATE(2032), - [sym_anon_struct_value_expression] = STATE(2868), - [sym_go_expression] = STATE(2032), - [sym_spawn_expression] = STATE(2032), - [sym_parenthesized_expression] = STATE(2032), - [sym_call_expression] = STATE(2032), - [sym_type_initializer] = STATE(2868), - [sym_function_literal] = STATE(2032), - [sym_reference_expression] = STATE(1914), - [sym_type_reference_expression] = STATE(3541), - [sym_unary_expression] = STATE(2032), - [sym_receive_expression] = STATE(2032), - [sym_binary_expression] = STATE(2032), - [sym_as_type_cast_expression] = STATE(2032), - [sym__max_group] = STATE(2032), - [sym_literal] = STATE(2027), - [sym_map_init_expression] = STATE(2868), - [sym_array_creation] = STATE(2032), - [sym_fixed_array_creation] = STATE(2032), - [sym_selector_expression] = STATE(2032), - [sym_index_expression] = STATE(2032), - [sym_slice_expression] = STATE(2032), - [sym_if_expression] = STATE(2868), - [sym_compile_time_if_expression] = STATE(2868), - [sym_is_expression] = STATE(2032), - [sym_in_expression] = STATE(2032), - [sym_enum_fetch] = STATE(2032), - [sym_match_expression] = STATE(2868), - [sym_select_expression] = STATE(2868), - [sym_select_arm] = STATE(2139), - [sym_select_arm_statement] = STATE(4161), - [sym_select_var_declaration] = STATE(4478), - [sym_select_else_arn_clause] = STATE(4389), - [sym_lock_expression] = STATE(2868), - [sym_unsafe_expression] = STATE(2868), - [sym_sql_expression] = STATE(2868), - [sym_c_string_literal] = STATE(2026), - [sym_raw_string_literal] = STATE(2026), - [sym_interpreted_string_literal] = STATE(2026), - [sym_mutability_modifiers] = STATE(635), - [sym_mutable_identifier] = STATE(3928), - [sym_identifier_list] = STATE(4484), - [sym_expression_without_blocks_list] = STATE(3279), - [sym_plain_type] = STATE(4094), - [sym__plain_type_without_special] = STATE(2302), - [sym_anon_struct_type] = STATE(2303), - [sym_multi_return_type] = STATE(2302), - [sym_result_type] = STATE(2302), - [sym_option_type] = STATE(2302), - [sym_qualified_type] = STATE(3541), - [sym_fixed_array_type] = STATE(2303), - [sym_array_type] = STATE(2303), - [sym_pointer_type] = STATE(2303), - [sym_wrong_pointer_type] = STATE(2303), - [sym_map_type] = STATE(2303), - [sym_channel_type] = STATE(2303), - [sym_shared_type] = STATE(2303), - [sym_thread_type] = STATE(2303), - [sym_atomic_type] = STATE(2303), - [sym_generic_type] = STATE(2303), - [sym_function_type] = STATE(2303), - [sym_send_statement] = STATE(4478), - [aux_sym_select_expression_repeat1] = STATE(129), - [sym_identifier] = ACTIONS(701), - [anon_sym_SLASH_SLASH] = ACTIONS(3), - [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(703), - [anon_sym_LBRACE] = ACTIONS(705), - [anon_sym_RBRACE] = ACTIONS(907), - [anon_sym_LPAREN] = ACTIONS(709), - [anon_sym_fn] = ACTIONS(711), - [anon_sym_PLUS] = ACTIONS(713), - [anon_sym_DASH] = ACTIONS(713), - [anon_sym_STAR] = ACTIONS(715), - [anon_sym_struct] = ACTIONS(717), - [anon_sym_mut] = ACTIONS(41), - [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(719), - [anon_sym_go] = ACTIONS(721), - [anon_sym_spawn] = ACTIONS(723), - [anon_sym_json_DOTdecode] = ACTIONS(725), - [anon_sym_LBRACK2] = ACTIONS(727), - [anon_sym_TILDE] = ACTIONS(713), - [anon_sym_CARET] = ACTIONS(713), - [anon_sym_AMP] = ACTIONS(729), - [anon_sym_LT_DASH] = ACTIONS(731), - [sym_none] = ACTIONS(733), - [sym_true] = ACTIONS(733), - [sym_false] = ACTIONS(733), - [sym_nil] = ACTIONS(733), - [anon_sym_if] = ACTIONS(735), - [anon_sym_else] = ACTIONS(737), - [anon_sym_DOLLARif] = ACTIONS(739), - [anon_sym_match] = ACTIONS(741), - [anon_sym_select] = ACTIONS(743), - [anon_sym_lock] = ACTIONS(745), - [anon_sym_rlock] = ACTIONS(745), - [anon_sym_unsafe] = ACTIONS(747), - [anon_sym_sql] = ACTIONS(749), - [sym_int_literal] = ACTIONS(733), - [sym_float_literal] = ACTIONS(751), - [sym_rune_literal] = ACTIONS(751), - [sym_pseudo_compile_time_identifier] = ACTIONS(753), - [anon_sym_shared] = ACTIONS(83), - [anon_sym_map_LBRACK] = ACTIONS(85), - [anon_sym_chan] = ACTIONS(87), - [anon_sym_thread] = ACTIONS(89), - [anon_sym_atomic] = ACTIONS(91), - [sym___double_quote] = ACTIONS(755), - [sym___single_quote] = ACTIONS(757), - [sym___c_double_quote] = ACTIONS(759), - [sym___c_single_quote] = ACTIONS(761), - [sym___r_double_quote] = ACTIONS(763), - [sym___r_single_quote] = ACTIONS(765), - }, - [127] = { - [sym_line_comment] = STATE(127), - [sym_block_comment] = STATE(127), - [sym__expression] = STATE(2731), - [sym__expression_without_blocks] = STATE(1902), - [sym__expression_with_blocks] = STATE(2870), - [sym_inc_expression] = STATE(2032), - [sym_dec_expression] = STATE(2032), - [sym_or_block_expression] = STATE(2032), - [sym_option_propagation_expression] = STATE(2032), - [sym_result_propagation_expression] = STATE(2032), - [sym_anon_struct_value_expression] = STATE(2868), - [sym_go_expression] = STATE(2032), - [sym_spawn_expression] = STATE(2032), - [sym_parenthesized_expression] = STATE(2032), - [sym_call_expression] = STATE(2032), - [sym_type_initializer] = STATE(2868), - [sym_function_literal] = STATE(2032), - [sym_reference_expression] = STATE(1914), - [sym_type_reference_expression] = STATE(3541), - [sym_unary_expression] = STATE(2032), - [sym_receive_expression] = STATE(2032), - [sym_binary_expression] = STATE(2032), - [sym_as_type_cast_expression] = STATE(2032), - [sym__max_group] = STATE(2032), - [sym_literal] = STATE(2027), - [sym_map_init_expression] = STATE(2868), - [sym_array_creation] = STATE(2032), - [sym_fixed_array_creation] = STATE(2032), - [sym_selector_expression] = STATE(2032), - [sym_index_expression] = STATE(2032), - [sym_slice_expression] = STATE(2032), - [sym_if_expression] = STATE(2868), - [sym_compile_time_if_expression] = STATE(2868), - [sym_is_expression] = STATE(2032), - [sym_in_expression] = STATE(2032), - [sym_enum_fetch] = STATE(2032), - [sym_match_expression] = STATE(2868), - [sym_select_expression] = STATE(2868), - [sym_select_arm] = STATE(2139), - [sym_select_arm_statement] = STATE(4161), - [sym_select_var_declaration] = STATE(4478), - [sym_select_else_arn_clause] = STATE(4554), - [sym_lock_expression] = STATE(2868), - [sym_unsafe_expression] = STATE(2868), - [sym_sql_expression] = STATE(2868), - [sym_c_string_literal] = STATE(2026), - [sym_raw_string_literal] = STATE(2026), - [sym_interpreted_string_literal] = STATE(2026), - [sym_mutability_modifiers] = STATE(635), - [sym_mutable_identifier] = STATE(3928), - [sym_identifier_list] = STATE(4484), - [sym_expression_without_blocks_list] = STATE(3279), - [sym_plain_type] = STATE(4094), - [sym__plain_type_without_special] = STATE(2302), - [sym_anon_struct_type] = STATE(2303), - [sym_multi_return_type] = STATE(2302), - [sym_result_type] = STATE(2302), - [sym_option_type] = STATE(2302), - [sym_qualified_type] = STATE(3541), - [sym_fixed_array_type] = STATE(2303), - [sym_array_type] = STATE(2303), - [sym_pointer_type] = STATE(2303), - [sym_wrong_pointer_type] = STATE(2303), - [sym_map_type] = STATE(2303), - [sym_channel_type] = STATE(2303), - [sym_shared_type] = STATE(2303), - [sym_thread_type] = STATE(2303), - [sym_atomic_type] = STATE(2303), - [sym_generic_type] = STATE(2303), - [sym_function_type] = STATE(2303), - [sym_send_statement] = STATE(4478), - [aux_sym_select_expression_repeat1] = STATE(149), - [sym_identifier] = ACTIONS(701), - [anon_sym_SLASH_SLASH] = ACTIONS(3), - [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(703), - [anon_sym_LBRACE] = ACTIONS(705), - [anon_sym_RBRACE] = ACTIONS(909), - [anon_sym_LPAREN] = ACTIONS(709), - [anon_sym_fn] = ACTIONS(711), - [anon_sym_PLUS] = ACTIONS(713), - [anon_sym_DASH] = ACTIONS(713), - [anon_sym_STAR] = ACTIONS(715), - [anon_sym_struct] = ACTIONS(717), - [anon_sym_mut] = ACTIONS(41), - [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(719), - [anon_sym_go] = ACTIONS(721), - [anon_sym_spawn] = ACTIONS(723), - [anon_sym_json_DOTdecode] = ACTIONS(725), - [anon_sym_LBRACK2] = ACTIONS(727), - [anon_sym_TILDE] = ACTIONS(713), - [anon_sym_CARET] = ACTIONS(713), - [anon_sym_AMP] = ACTIONS(729), - [anon_sym_LT_DASH] = ACTIONS(731), - [sym_none] = ACTIONS(733), - [sym_true] = ACTIONS(733), - [sym_false] = ACTIONS(733), - [sym_nil] = ACTIONS(733), - [anon_sym_if] = ACTIONS(735), - [anon_sym_else] = ACTIONS(737), - [anon_sym_DOLLARif] = ACTIONS(739), - [anon_sym_match] = ACTIONS(741), - [anon_sym_select] = ACTIONS(743), - [anon_sym_lock] = ACTIONS(745), - [anon_sym_rlock] = ACTIONS(745), - [anon_sym_unsafe] = ACTIONS(747), - [anon_sym_sql] = ACTIONS(749), - [sym_int_literal] = ACTIONS(733), - [sym_float_literal] = ACTIONS(751), - [sym_rune_literal] = ACTIONS(751), - [sym_pseudo_compile_time_identifier] = ACTIONS(753), - [anon_sym_shared] = ACTIONS(83), - [anon_sym_map_LBRACK] = ACTIONS(85), - [anon_sym_chan] = ACTIONS(87), - [anon_sym_thread] = ACTIONS(89), - [anon_sym_atomic] = ACTIONS(91), - [sym___double_quote] = ACTIONS(755), - [sym___single_quote] = ACTIONS(757), - [sym___c_double_quote] = ACTIONS(759), - [sym___c_single_quote] = ACTIONS(761), - [sym___r_double_quote] = ACTIONS(763), - [sym___r_single_quote] = ACTIONS(765), - }, - [128] = { - [sym_line_comment] = STATE(128), - [sym_block_comment] = STATE(128), - [sym__expression] = STATE(2731), - [sym__expression_without_blocks] = STATE(1902), - [sym__expression_with_blocks] = STATE(2870), - [sym_inc_expression] = STATE(2032), - [sym_dec_expression] = STATE(2032), - [sym_or_block_expression] = STATE(2032), - [sym_option_propagation_expression] = STATE(2032), - [sym_result_propagation_expression] = STATE(2032), - [sym_anon_struct_value_expression] = STATE(2868), - [sym_go_expression] = STATE(2032), - [sym_spawn_expression] = STATE(2032), - [sym_parenthesized_expression] = STATE(2032), - [sym_call_expression] = STATE(2032), - [sym_type_initializer] = STATE(2868), - [sym_function_literal] = STATE(2032), - [sym_reference_expression] = STATE(1914), - [sym_type_reference_expression] = STATE(3541), - [sym_unary_expression] = STATE(2032), - [sym_receive_expression] = STATE(2032), - [sym_binary_expression] = STATE(2032), - [sym_as_type_cast_expression] = STATE(2032), - [sym__max_group] = STATE(2032), - [sym_literal] = STATE(2027), - [sym_map_init_expression] = STATE(2868), - [sym_array_creation] = STATE(2032), - [sym_fixed_array_creation] = STATE(2032), - [sym_selector_expression] = STATE(2032), - [sym_index_expression] = STATE(2032), - [sym_slice_expression] = STATE(2032), - [sym_if_expression] = STATE(2868), - [sym_compile_time_if_expression] = STATE(2868), - [sym_is_expression] = STATE(2032), - [sym_in_expression] = STATE(2032), - [sym_enum_fetch] = STATE(2032), - [sym_match_expression] = STATE(2868), - [sym_select_expression] = STATE(2868), - [sym_select_arm] = STATE(2139), - [sym_select_arm_statement] = STATE(4161), - [sym_select_var_declaration] = STATE(4478), - [sym_select_else_arn_clause] = STATE(4424), - [sym_lock_expression] = STATE(2868), - [sym_unsafe_expression] = STATE(2868), - [sym_sql_expression] = STATE(2868), - [sym_c_string_literal] = STATE(2026), - [sym_raw_string_literal] = STATE(2026), - [sym_interpreted_string_literal] = STATE(2026), - [sym_mutability_modifiers] = STATE(635), - [sym_mutable_identifier] = STATE(3928), - [sym_identifier_list] = STATE(4484), - [sym_expression_without_blocks_list] = STATE(3279), - [sym_plain_type] = STATE(4094), - [sym__plain_type_without_special] = STATE(2302), - [sym_anon_struct_type] = STATE(2303), - [sym_multi_return_type] = STATE(2302), - [sym_result_type] = STATE(2302), - [sym_option_type] = STATE(2302), - [sym_qualified_type] = STATE(3541), - [sym_fixed_array_type] = STATE(2303), - [sym_array_type] = STATE(2303), - [sym_pointer_type] = STATE(2303), - [sym_wrong_pointer_type] = STATE(2303), - [sym_map_type] = STATE(2303), - [sym_channel_type] = STATE(2303), - [sym_shared_type] = STATE(2303), - [sym_thread_type] = STATE(2303), - [sym_atomic_type] = STATE(2303), - [sym_generic_type] = STATE(2303), - [sym_function_type] = STATE(2303), - [sym_send_statement] = STATE(4478), - [aux_sym_select_expression_repeat1] = STATE(149), - [sym_identifier] = ACTIONS(701), - [anon_sym_SLASH_SLASH] = ACTIONS(3), - [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(703), - [anon_sym_LBRACE] = ACTIONS(705), - [anon_sym_RBRACE] = ACTIONS(911), - [anon_sym_LPAREN] = ACTIONS(709), - [anon_sym_fn] = ACTIONS(711), - [anon_sym_PLUS] = ACTIONS(713), - [anon_sym_DASH] = ACTIONS(713), - [anon_sym_STAR] = ACTIONS(715), - [anon_sym_struct] = ACTIONS(717), - [anon_sym_mut] = ACTIONS(41), - [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(719), - [anon_sym_go] = ACTIONS(721), - [anon_sym_spawn] = ACTIONS(723), - [anon_sym_json_DOTdecode] = ACTIONS(725), - [anon_sym_LBRACK2] = ACTIONS(727), - [anon_sym_TILDE] = ACTIONS(713), - [anon_sym_CARET] = ACTIONS(713), - [anon_sym_AMP] = ACTIONS(729), - [anon_sym_LT_DASH] = ACTIONS(731), - [sym_none] = ACTIONS(733), - [sym_true] = ACTIONS(733), - [sym_false] = ACTIONS(733), - [sym_nil] = ACTIONS(733), - [anon_sym_if] = ACTIONS(735), - [anon_sym_else] = ACTIONS(737), - [anon_sym_DOLLARif] = ACTIONS(739), - [anon_sym_match] = ACTIONS(741), - [anon_sym_select] = ACTIONS(743), - [anon_sym_lock] = ACTIONS(745), - [anon_sym_rlock] = ACTIONS(745), - [anon_sym_unsafe] = ACTIONS(747), - [anon_sym_sql] = ACTIONS(749), - [sym_int_literal] = ACTIONS(733), - [sym_float_literal] = ACTIONS(751), - [sym_rune_literal] = ACTIONS(751), - [sym_pseudo_compile_time_identifier] = ACTIONS(753), - [anon_sym_shared] = ACTIONS(83), - [anon_sym_map_LBRACK] = ACTIONS(85), - [anon_sym_chan] = ACTIONS(87), - [anon_sym_thread] = ACTIONS(89), - [anon_sym_atomic] = ACTIONS(91), - [sym___double_quote] = ACTIONS(755), - [sym___single_quote] = ACTIONS(757), - [sym___c_double_quote] = ACTIONS(759), - [sym___c_single_quote] = ACTIONS(761), - [sym___r_double_quote] = ACTIONS(763), - [sym___r_single_quote] = ACTIONS(765), + [sym___double_quote] = ACTIONS(821), + [sym___single_quote] = ACTIONS(823), + [sym___c_double_quote] = ACTIONS(825), + [sym___c_single_quote] = ACTIONS(827), + [sym___r_double_quote] = ACTIONS(829), + [sym___r_single_quote] = ACTIONS(831), }, [129] = { [sym_line_comment] = STATE(129), [sym_block_comment] = STATE(129), - [sym__expression] = STATE(2731), - [sym__expression_without_blocks] = STATE(1902), - [sym__expression_with_blocks] = STATE(2870), - [sym_inc_expression] = STATE(2032), - [sym_dec_expression] = STATE(2032), - [sym_or_block_expression] = STATE(2032), - [sym_option_propagation_expression] = STATE(2032), - [sym_result_propagation_expression] = STATE(2032), - [sym_anon_struct_value_expression] = STATE(2868), - [sym_go_expression] = STATE(2032), - [sym_spawn_expression] = STATE(2032), - [sym_parenthesized_expression] = STATE(2032), - [sym_call_expression] = STATE(2032), - [sym_type_initializer] = STATE(2868), - [sym_function_literal] = STATE(2032), - [sym_reference_expression] = STATE(1914), - [sym_type_reference_expression] = STATE(3541), - [sym_unary_expression] = STATE(2032), - [sym_receive_expression] = STATE(2032), - [sym_binary_expression] = STATE(2032), - [sym_as_type_cast_expression] = STATE(2032), - [sym__max_group] = STATE(2032), - [sym_literal] = STATE(2027), - [sym_map_init_expression] = STATE(2868), - [sym_array_creation] = STATE(2032), - [sym_fixed_array_creation] = STATE(2032), - [sym_selector_expression] = STATE(2032), - [sym_index_expression] = STATE(2032), - [sym_slice_expression] = STATE(2032), - [sym_if_expression] = STATE(2868), - [sym_compile_time_if_expression] = STATE(2868), - [sym_is_expression] = STATE(2032), - [sym_in_expression] = STATE(2032), - [sym_enum_fetch] = STATE(2032), - [sym_match_expression] = STATE(2868), - [sym_select_expression] = STATE(2868), - [sym_select_arm] = STATE(2139), - [sym_select_arm_statement] = STATE(4161), - [sym_select_var_declaration] = STATE(4478), - [sym_select_else_arn_clause] = STATE(4513), - [sym_lock_expression] = STATE(2868), - [sym_unsafe_expression] = STATE(2868), - [sym_sql_expression] = STATE(2868), - [sym_c_string_literal] = STATE(2026), - [sym_raw_string_literal] = STATE(2026), - [sym_interpreted_string_literal] = STATE(2026), - [sym_mutability_modifiers] = STATE(635), - [sym_mutable_identifier] = STATE(3928), - [sym_identifier_list] = STATE(4484), + [sym__expression] = STATE(2780), + [sym__expression_without_blocks] = STATE(1903), + [sym__expression_with_blocks] = STATE(2882), + [sym_inc_expression] = STATE(2035), + [sym_dec_expression] = STATE(2035), + [sym_or_block_expression] = STATE(2035), + [sym_option_propagation_expression] = STATE(2035), + [sym_result_propagation_expression] = STATE(2035), + [sym_anon_struct_value_expression] = STATE(2877), + [sym_go_expression] = STATE(2035), + [sym_spawn_expression] = STATE(2035), + [sym_parenthesized_expression] = STATE(2035), + [sym_call_expression] = STATE(2035), + [sym_type_initializer] = STATE(2877), + [sym_function_literal] = STATE(2035), + [sym_reference_expression] = STATE(1944), + [sym_type_reference_expression] = STATE(3460), + [sym_unary_expression] = STATE(2035), + [sym_receive_expression] = STATE(2035), + [sym_binary_expression] = STATE(2035), + [sym_as_type_cast_expression] = STATE(2035), + [sym__max_group] = STATE(2035), + [sym_literal] = STATE(2030), + [sym_map_init_expression] = STATE(2877), + [sym_array_creation] = STATE(2035), + [sym_fixed_array_creation] = STATE(2035), + [sym_selector_expression] = STATE(2035), + [sym_index_expression] = STATE(2035), + [sym_slice_expression] = STATE(2035), + [sym_if_expression] = STATE(2877), + [sym_compile_time_if_expression] = STATE(2877), + [sym_is_expression] = STATE(2035), + [sym_in_expression] = STATE(2035), + [sym_enum_fetch] = STATE(2035), + [sym_match_expression] = STATE(2877), + [sym_select_expression] = STATE(2877), + [sym_select_arm] = STATE(2140), + [sym_select_arm_statement] = STATE(4150), + [sym_select_var_declaration] = STATE(4507), + [sym_select_else_arn_clause] = STATE(4636), + [sym_lock_expression] = STATE(2877), + [sym_unsafe_expression] = STATE(2877), + [sym_sql_expression] = STATE(2877), + [sym_c_string_literal] = STATE(2029), + [sym_raw_string_literal] = STATE(2029), + [sym_interpreted_string_literal] = STATE(2029), + [sym_mutability_modifiers] = STATE(641), + [sym_mutable_identifier] = STATE(3847), + [sym_identifier_list] = STATE(4511), [sym_expression_without_blocks_list] = STATE(3279), - [sym_plain_type] = STATE(4094), - [sym__plain_type_without_special] = STATE(2302), - [sym_anon_struct_type] = STATE(2303), - [sym_multi_return_type] = STATE(2302), - [sym_result_type] = STATE(2302), - [sym_option_type] = STATE(2302), - [sym_qualified_type] = STATE(3541), - [sym_fixed_array_type] = STATE(2303), - [sym_array_type] = STATE(2303), - [sym_pointer_type] = STATE(2303), - [sym_wrong_pointer_type] = STATE(2303), - [sym_map_type] = STATE(2303), - [sym_channel_type] = STATE(2303), - [sym_shared_type] = STATE(2303), - [sym_thread_type] = STATE(2303), - [sym_atomic_type] = STATE(2303), - [sym_generic_type] = STATE(2303), - [sym_function_type] = STATE(2303), - [sym_send_statement] = STATE(4478), + [sym_plain_type] = STATE(4297), + [sym__plain_type_without_special] = STATE(2360), + [sym_anon_struct_type] = STATE(2362), + [sym_multi_return_type] = STATE(2360), + [sym_result_type] = STATE(2360), + [sym_option_type] = STATE(2360), + [sym_qualified_type] = STATE(3460), + [sym_fixed_array_type] = STATE(2362), + [sym_array_type] = STATE(2362), + [sym_pointer_type] = STATE(2362), + [sym_wrong_pointer_type] = STATE(2362), + [sym_map_type] = STATE(2362), + [sym_channel_type] = STATE(2362), + [sym_shared_type] = STATE(2362), + [sym_thread_type] = STATE(2362), + [sym_atomic_type] = STATE(2362), + [sym_generic_type] = STATE(2362), + [sym_function_type] = STATE(2362), + [sym_send_statement] = STATE(4507), [aux_sym_select_expression_repeat1] = STATE(149), - [sym_identifier] = ACTIONS(701), + [sym_identifier] = ACTIONS(767), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(703), - [anon_sym_LBRACE] = ACTIONS(705), + [anon_sym_DOT] = ACTIONS(769), + [anon_sym_LBRACE] = ACTIONS(771), [anon_sym_RBRACE] = ACTIONS(913), - [anon_sym_LPAREN] = ACTIONS(709), - [anon_sym_fn] = ACTIONS(711), - [anon_sym_PLUS] = ACTIONS(713), - [anon_sym_DASH] = ACTIONS(713), - [anon_sym_STAR] = ACTIONS(715), - [anon_sym_struct] = ACTIONS(717), + [anon_sym_LPAREN] = ACTIONS(775), + [anon_sym_fn] = ACTIONS(777), + [anon_sym_PLUS] = ACTIONS(779), + [anon_sym_DASH] = ACTIONS(779), + [anon_sym_STAR] = ACTIONS(781), + [anon_sym_struct] = ACTIONS(783), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(719), - [anon_sym_go] = ACTIONS(721), - [anon_sym_spawn] = ACTIONS(723), - [anon_sym_json_DOTdecode] = ACTIONS(725), - [anon_sym_LBRACK2] = ACTIONS(727), - [anon_sym_TILDE] = ACTIONS(713), - [anon_sym_CARET] = ACTIONS(713), - [anon_sym_AMP] = ACTIONS(729), - [anon_sym_LT_DASH] = ACTIONS(731), - [sym_none] = ACTIONS(733), - [sym_true] = ACTIONS(733), - [sym_false] = ACTIONS(733), - [sym_nil] = ACTIONS(733), - [anon_sym_if] = ACTIONS(735), - [anon_sym_else] = ACTIONS(737), - [anon_sym_DOLLARif] = ACTIONS(739), - [anon_sym_match] = ACTIONS(741), - [anon_sym_select] = ACTIONS(743), - [anon_sym_lock] = ACTIONS(745), - [anon_sym_rlock] = ACTIONS(745), - [anon_sym_unsafe] = ACTIONS(747), - [anon_sym_sql] = ACTIONS(749), - [sym_int_literal] = ACTIONS(733), - [sym_float_literal] = ACTIONS(751), - [sym_rune_literal] = ACTIONS(751), - [sym_pseudo_compile_time_identifier] = ACTIONS(753), + [anon_sym_BANG] = ACTIONS(785), + [anon_sym_go] = ACTIONS(787), + [anon_sym_spawn] = ACTIONS(789), + [anon_sym_json_DOTdecode] = ACTIONS(791), + [anon_sym_LBRACK2] = ACTIONS(793), + [anon_sym_TILDE] = ACTIONS(779), + [anon_sym_CARET] = ACTIONS(779), + [anon_sym_AMP] = ACTIONS(795), + [anon_sym_LT_DASH] = ACTIONS(797), + [sym_none] = ACTIONS(799), + [sym_true] = ACTIONS(799), + [sym_false] = ACTIONS(799), + [sym_nil] = ACTIONS(799), + [anon_sym_if] = ACTIONS(801), + [anon_sym_else] = ACTIONS(803), + [anon_sym_DOLLARif] = ACTIONS(805), + [anon_sym_match] = ACTIONS(807), + [anon_sym_select] = ACTIONS(809), + [anon_sym_lock] = ACTIONS(811), + [anon_sym_rlock] = ACTIONS(811), + [anon_sym_unsafe] = ACTIONS(813), + [anon_sym_sql] = ACTIONS(815), + [sym_int_literal] = ACTIONS(799), + [sym_float_literal] = ACTIONS(817), + [sym_rune_literal] = ACTIONS(817), + [sym_pseudo_compile_time_identifier] = ACTIONS(819), [anon_sym_shared] = ACTIONS(83), [anon_sym_map_LBRACK] = ACTIONS(85), [anon_sym_chan] = ACTIONS(87), [anon_sym_thread] = ACTIONS(89), [anon_sym_atomic] = ACTIONS(91), - [sym___double_quote] = ACTIONS(755), - [sym___single_quote] = ACTIONS(757), - [sym___c_double_quote] = ACTIONS(759), - [sym___c_single_quote] = ACTIONS(761), - [sym___r_double_quote] = ACTIONS(763), - [sym___r_single_quote] = ACTIONS(765), + [sym___double_quote] = ACTIONS(821), + [sym___single_quote] = ACTIONS(823), + [sym___c_double_quote] = ACTIONS(825), + [sym___c_single_quote] = ACTIONS(827), + [sym___r_double_quote] = ACTIONS(829), + [sym___r_single_quote] = ACTIONS(831), }, [130] = { [sym_line_comment] = STATE(130), [sym_block_comment] = STATE(130), - [sym__expression] = STATE(2731), - [sym__expression_without_blocks] = STATE(1902), - [sym__expression_with_blocks] = STATE(2870), - [sym_inc_expression] = STATE(2032), - [sym_dec_expression] = STATE(2032), - [sym_or_block_expression] = STATE(2032), - [sym_option_propagation_expression] = STATE(2032), - [sym_result_propagation_expression] = STATE(2032), - [sym_anon_struct_value_expression] = STATE(2868), - [sym_go_expression] = STATE(2032), - [sym_spawn_expression] = STATE(2032), - [sym_parenthesized_expression] = STATE(2032), - [sym_call_expression] = STATE(2032), - [sym_type_initializer] = STATE(2868), - [sym_function_literal] = STATE(2032), - [sym_reference_expression] = STATE(1914), - [sym_type_reference_expression] = STATE(3541), - [sym_unary_expression] = STATE(2032), - [sym_receive_expression] = STATE(2032), - [sym_binary_expression] = STATE(2032), - [sym_as_type_cast_expression] = STATE(2032), - [sym__max_group] = STATE(2032), - [sym_literal] = STATE(2027), - [sym_map_init_expression] = STATE(2868), - [sym_array_creation] = STATE(2032), - [sym_fixed_array_creation] = STATE(2032), - [sym_selector_expression] = STATE(2032), - [sym_index_expression] = STATE(2032), - [sym_slice_expression] = STATE(2032), - [sym_if_expression] = STATE(2868), - [sym_compile_time_if_expression] = STATE(2868), - [sym_is_expression] = STATE(2032), - [sym_in_expression] = STATE(2032), - [sym_enum_fetch] = STATE(2032), - [sym_match_expression] = STATE(2868), - [sym_select_expression] = STATE(2868), - [sym_select_arm] = STATE(2139), - [sym_select_arm_statement] = STATE(4161), - [sym_select_var_declaration] = STATE(4478), - [sym_select_else_arn_clause] = STATE(4569), - [sym_lock_expression] = STATE(2868), - [sym_unsafe_expression] = STATE(2868), - [sym_sql_expression] = STATE(2868), - [sym_c_string_literal] = STATE(2026), - [sym_raw_string_literal] = STATE(2026), - [sym_interpreted_string_literal] = STATE(2026), - [sym_mutability_modifiers] = STATE(635), - [sym_mutable_identifier] = STATE(3928), - [sym_identifier_list] = STATE(4484), + [sym__expression] = STATE(2780), + [sym__expression_without_blocks] = STATE(1903), + [sym__expression_with_blocks] = STATE(2882), + [sym_inc_expression] = STATE(2035), + [sym_dec_expression] = STATE(2035), + [sym_or_block_expression] = STATE(2035), + [sym_option_propagation_expression] = STATE(2035), + [sym_result_propagation_expression] = STATE(2035), + [sym_anon_struct_value_expression] = STATE(2877), + [sym_go_expression] = STATE(2035), + [sym_spawn_expression] = STATE(2035), + [sym_parenthesized_expression] = STATE(2035), + [sym_call_expression] = STATE(2035), + [sym_type_initializer] = STATE(2877), + [sym_function_literal] = STATE(2035), + [sym_reference_expression] = STATE(1944), + [sym_type_reference_expression] = STATE(3460), + [sym_unary_expression] = STATE(2035), + [sym_receive_expression] = STATE(2035), + [sym_binary_expression] = STATE(2035), + [sym_as_type_cast_expression] = STATE(2035), + [sym__max_group] = STATE(2035), + [sym_literal] = STATE(2030), + [sym_map_init_expression] = STATE(2877), + [sym_array_creation] = STATE(2035), + [sym_fixed_array_creation] = STATE(2035), + [sym_selector_expression] = STATE(2035), + [sym_index_expression] = STATE(2035), + [sym_slice_expression] = STATE(2035), + [sym_if_expression] = STATE(2877), + [sym_compile_time_if_expression] = STATE(2877), + [sym_is_expression] = STATE(2035), + [sym_in_expression] = STATE(2035), + [sym_enum_fetch] = STATE(2035), + [sym_match_expression] = STATE(2877), + [sym_select_expression] = STATE(2877), + [sym_select_arm] = STATE(2140), + [sym_select_arm_statement] = STATE(4150), + [sym_select_var_declaration] = STATE(4507), + [sym_select_else_arn_clause] = STATE(4350), + [sym_lock_expression] = STATE(2877), + [sym_unsafe_expression] = STATE(2877), + [sym_sql_expression] = STATE(2877), + [sym_c_string_literal] = STATE(2029), + [sym_raw_string_literal] = STATE(2029), + [sym_interpreted_string_literal] = STATE(2029), + [sym_mutability_modifiers] = STATE(641), + [sym_mutable_identifier] = STATE(3847), + [sym_identifier_list] = STATE(4511), [sym_expression_without_blocks_list] = STATE(3279), - [sym_plain_type] = STATE(4094), - [sym__plain_type_without_special] = STATE(2302), - [sym_anon_struct_type] = STATE(2303), - [sym_multi_return_type] = STATE(2302), - [sym_result_type] = STATE(2302), - [sym_option_type] = STATE(2302), - [sym_qualified_type] = STATE(3541), - [sym_fixed_array_type] = STATE(2303), - [sym_array_type] = STATE(2303), - [sym_pointer_type] = STATE(2303), - [sym_wrong_pointer_type] = STATE(2303), - [sym_map_type] = STATE(2303), - [sym_channel_type] = STATE(2303), - [sym_shared_type] = STATE(2303), - [sym_thread_type] = STATE(2303), - [sym_atomic_type] = STATE(2303), - [sym_generic_type] = STATE(2303), - [sym_function_type] = STATE(2303), - [sym_send_statement] = STATE(4478), - [aux_sym_select_expression_repeat1] = STATE(137), - [sym_identifier] = ACTIONS(701), + [sym_plain_type] = STATE(4297), + [sym__plain_type_without_special] = STATE(2360), + [sym_anon_struct_type] = STATE(2362), + [sym_multi_return_type] = STATE(2360), + [sym_result_type] = STATE(2360), + [sym_option_type] = STATE(2360), + [sym_qualified_type] = STATE(3460), + [sym_fixed_array_type] = STATE(2362), + [sym_array_type] = STATE(2362), + [sym_pointer_type] = STATE(2362), + [sym_wrong_pointer_type] = STATE(2362), + [sym_map_type] = STATE(2362), + [sym_channel_type] = STATE(2362), + [sym_shared_type] = STATE(2362), + [sym_thread_type] = STATE(2362), + [sym_atomic_type] = STATE(2362), + [sym_generic_type] = STATE(2362), + [sym_function_type] = STATE(2362), + [sym_send_statement] = STATE(4507), + [aux_sym_select_expression_repeat1] = STATE(126), + [sym_identifier] = ACTIONS(767), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(703), - [anon_sym_LBRACE] = ACTIONS(705), + [anon_sym_DOT] = ACTIONS(769), + [anon_sym_LBRACE] = ACTIONS(771), [anon_sym_RBRACE] = ACTIONS(915), - [anon_sym_LPAREN] = ACTIONS(709), - [anon_sym_fn] = ACTIONS(711), - [anon_sym_PLUS] = ACTIONS(713), - [anon_sym_DASH] = ACTIONS(713), - [anon_sym_STAR] = ACTIONS(715), - [anon_sym_struct] = ACTIONS(717), + [anon_sym_LPAREN] = ACTIONS(775), + [anon_sym_fn] = ACTIONS(777), + [anon_sym_PLUS] = ACTIONS(779), + [anon_sym_DASH] = ACTIONS(779), + [anon_sym_STAR] = ACTIONS(781), + [anon_sym_struct] = ACTIONS(783), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(719), - [anon_sym_go] = ACTIONS(721), - [anon_sym_spawn] = ACTIONS(723), - [anon_sym_json_DOTdecode] = ACTIONS(725), - [anon_sym_LBRACK2] = ACTIONS(727), - [anon_sym_TILDE] = ACTIONS(713), - [anon_sym_CARET] = ACTIONS(713), - [anon_sym_AMP] = ACTIONS(729), - [anon_sym_LT_DASH] = ACTIONS(731), - [sym_none] = ACTIONS(733), - [sym_true] = ACTIONS(733), - [sym_false] = ACTIONS(733), - [sym_nil] = ACTIONS(733), - [anon_sym_if] = ACTIONS(735), - [anon_sym_else] = ACTIONS(737), - [anon_sym_DOLLARif] = ACTIONS(739), - [anon_sym_match] = ACTIONS(741), - [anon_sym_select] = ACTIONS(743), - [anon_sym_lock] = ACTIONS(745), - [anon_sym_rlock] = ACTIONS(745), - [anon_sym_unsafe] = ACTIONS(747), - [anon_sym_sql] = ACTIONS(749), - [sym_int_literal] = ACTIONS(733), - [sym_float_literal] = ACTIONS(751), - [sym_rune_literal] = ACTIONS(751), - [sym_pseudo_compile_time_identifier] = ACTIONS(753), + [anon_sym_BANG] = ACTIONS(785), + [anon_sym_go] = ACTIONS(787), + [anon_sym_spawn] = ACTIONS(789), + [anon_sym_json_DOTdecode] = ACTIONS(791), + [anon_sym_LBRACK2] = ACTIONS(793), + [anon_sym_TILDE] = ACTIONS(779), + [anon_sym_CARET] = ACTIONS(779), + [anon_sym_AMP] = ACTIONS(795), + [anon_sym_LT_DASH] = ACTIONS(797), + [sym_none] = ACTIONS(799), + [sym_true] = ACTIONS(799), + [sym_false] = ACTIONS(799), + [sym_nil] = ACTIONS(799), + [anon_sym_if] = ACTIONS(801), + [anon_sym_else] = ACTIONS(803), + [anon_sym_DOLLARif] = ACTIONS(805), + [anon_sym_match] = ACTIONS(807), + [anon_sym_select] = ACTIONS(809), + [anon_sym_lock] = ACTIONS(811), + [anon_sym_rlock] = ACTIONS(811), + [anon_sym_unsafe] = ACTIONS(813), + [anon_sym_sql] = ACTIONS(815), + [sym_int_literal] = ACTIONS(799), + [sym_float_literal] = ACTIONS(817), + [sym_rune_literal] = ACTIONS(817), + [sym_pseudo_compile_time_identifier] = ACTIONS(819), [anon_sym_shared] = ACTIONS(83), [anon_sym_map_LBRACK] = ACTIONS(85), [anon_sym_chan] = ACTIONS(87), [anon_sym_thread] = ACTIONS(89), [anon_sym_atomic] = ACTIONS(91), - [sym___double_quote] = ACTIONS(755), - [sym___single_quote] = ACTIONS(757), - [sym___c_double_quote] = ACTIONS(759), - [sym___c_single_quote] = ACTIONS(761), - [sym___r_double_quote] = ACTIONS(763), - [sym___r_single_quote] = ACTIONS(765), + [sym___double_quote] = ACTIONS(821), + [sym___single_quote] = ACTIONS(823), + [sym___c_double_quote] = ACTIONS(825), + [sym___c_single_quote] = ACTIONS(827), + [sym___r_double_quote] = ACTIONS(829), + [sym___r_single_quote] = ACTIONS(831), }, [131] = { [sym_line_comment] = STATE(131), [sym_block_comment] = STATE(131), - [sym__expression] = STATE(2731), - [sym__expression_without_blocks] = STATE(1902), - [sym__expression_with_blocks] = STATE(2870), - [sym_inc_expression] = STATE(2032), - [sym_dec_expression] = STATE(2032), - [sym_or_block_expression] = STATE(2032), - [sym_option_propagation_expression] = STATE(2032), - [sym_result_propagation_expression] = STATE(2032), - [sym_anon_struct_value_expression] = STATE(2868), - [sym_go_expression] = STATE(2032), - [sym_spawn_expression] = STATE(2032), - [sym_parenthesized_expression] = STATE(2032), - [sym_call_expression] = STATE(2032), - [sym_type_initializer] = STATE(2868), - [sym_function_literal] = STATE(2032), - [sym_reference_expression] = STATE(1914), - [sym_type_reference_expression] = STATE(3541), - [sym_unary_expression] = STATE(2032), - [sym_receive_expression] = STATE(2032), - [sym_binary_expression] = STATE(2032), - [sym_as_type_cast_expression] = STATE(2032), - [sym__max_group] = STATE(2032), - [sym_literal] = STATE(2027), - [sym_map_init_expression] = STATE(2868), - [sym_array_creation] = STATE(2032), - [sym_fixed_array_creation] = STATE(2032), - [sym_selector_expression] = STATE(2032), - [sym_index_expression] = STATE(2032), - [sym_slice_expression] = STATE(2032), - [sym_if_expression] = STATE(2868), - [sym_compile_time_if_expression] = STATE(2868), - [sym_is_expression] = STATE(2032), - [sym_in_expression] = STATE(2032), - [sym_enum_fetch] = STATE(2032), - [sym_match_expression] = STATE(2868), - [sym_select_expression] = STATE(2868), - [sym_select_arm] = STATE(2139), - [sym_select_arm_statement] = STATE(4161), - [sym_select_var_declaration] = STATE(4478), - [sym_select_else_arn_clause] = STATE(4385), - [sym_lock_expression] = STATE(2868), - [sym_unsafe_expression] = STATE(2868), - [sym_sql_expression] = STATE(2868), - [sym_c_string_literal] = STATE(2026), - [sym_raw_string_literal] = STATE(2026), - [sym_interpreted_string_literal] = STATE(2026), - [sym_mutability_modifiers] = STATE(635), - [sym_mutable_identifier] = STATE(3928), - [sym_identifier_list] = STATE(4484), + [sym__expression] = STATE(2780), + [sym__expression_without_blocks] = STATE(1903), + [sym__expression_with_blocks] = STATE(2882), + [sym_inc_expression] = STATE(2035), + [sym_dec_expression] = STATE(2035), + [sym_or_block_expression] = STATE(2035), + [sym_option_propagation_expression] = STATE(2035), + [sym_result_propagation_expression] = STATE(2035), + [sym_anon_struct_value_expression] = STATE(2877), + [sym_go_expression] = STATE(2035), + [sym_spawn_expression] = STATE(2035), + [sym_parenthesized_expression] = STATE(2035), + [sym_call_expression] = STATE(2035), + [sym_type_initializer] = STATE(2877), + [sym_function_literal] = STATE(2035), + [sym_reference_expression] = STATE(1944), + [sym_type_reference_expression] = STATE(3460), + [sym_unary_expression] = STATE(2035), + [sym_receive_expression] = STATE(2035), + [sym_binary_expression] = STATE(2035), + [sym_as_type_cast_expression] = STATE(2035), + [sym__max_group] = STATE(2035), + [sym_literal] = STATE(2030), + [sym_map_init_expression] = STATE(2877), + [sym_array_creation] = STATE(2035), + [sym_fixed_array_creation] = STATE(2035), + [sym_selector_expression] = STATE(2035), + [sym_index_expression] = STATE(2035), + [sym_slice_expression] = STATE(2035), + [sym_if_expression] = STATE(2877), + [sym_compile_time_if_expression] = STATE(2877), + [sym_is_expression] = STATE(2035), + [sym_in_expression] = STATE(2035), + [sym_enum_fetch] = STATE(2035), + [sym_match_expression] = STATE(2877), + [sym_select_expression] = STATE(2877), + [sym_select_arm] = STATE(2140), + [sym_select_arm_statement] = STATE(4150), + [sym_select_var_declaration] = STATE(4507), + [sym_select_else_arn_clause] = STATE(4358), + [sym_lock_expression] = STATE(2877), + [sym_unsafe_expression] = STATE(2877), + [sym_sql_expression] = STATE(2877), + [sym_c_string_literal] = STATE(2029), + [sym_raw_string_literal] = STATE(2029), + [sym_interpreted_string_literal] = STATE(2029), + [sym_mutability_modifiers] = STATE(641), + [sym_mutable_identifier] = STATE(3847), + [sym_identifier_list] = STATE(4511), [sym_expression_without_blocks_list] = STATE(3279), - [sym_plain_type] = STATE(4094), - [sym__plain_type_without_special] = STATE(2302), - [sym_anon_struct_type] = STATE(2303), - [sym_multi_return_type] = STATE(2302), - [sym_result_type] = STATE(2302), - [sym_option_type] = STATE(2302), - [sym_qualified_type] = STATE(3541), - [sym_fixed_array_type] = STATE(2303), - [sym_array_type] = STATE(2303), - [sym_pointer_type] = STATE(2303), - [sym_wrong_pointer_type] = STATE(2303), - [sym_map_type] = STATE(2303), - [sym_channel_type] = STATE(2303), - [sym_shared_type] = STATE(2303), - [sym_thread_type] = STATE(2303), - [sym_atomic_type] = STATE(2303), - [sym_generic_type] = STATE(2303), - [sym_function_type] = STATE(2303), - [sym_send_statement] = STATE(4478), - [aux_sym_select_expression_repeat1] = STATE(135), - [sym_identifier] = ACTIONS(701), + [sym_plain_type] = STATE(4297), + [sym__plain_type_without_special] = STATE(2360), + [sym_anon_struct_type] = STATE(2362), + [sym_multi_return_type] = STATE(2360), + [sym_result_type] = STATE(2360), + [sym_option_type] = STATE(2360), + [sym_qualified_type] = STATE(3460), + [sym_fixed_array_type] = STATE(2362), + [sym_array_type] = STATE(2362), + [sym_pointer_type] = STATE(2362), + [sym_wrong_pointer_type] = STATE(2362), + [sym_map_type] = STATE(2362), + [sym_channel_type] = STATE(2362), + [sym_shared_type] = STATE(2362), + [sym_thread_type] = STATE(2362), + [sym_atomic_type] = STATE(2362), + [sym_generic_type] = STATE(2362), + [sym_function_type] = STATE(2362), + [sym_send_statement] = STATE(4507), + [aux_sym_select_expression_repeat1] = STATE(149), + [sym_identifier] = ACTIONS(767), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(703), - [anon_sym_LBRACE] = ACTIONS(705), + [anon_sym_DOT] = ACTIONS(769), + [anon_sym_LBRACE] = ACTIONS(771), [anon_sym_RBRACE] = ACTIONS(917), - [anon_sym_LPAREN] = ACTIONS(709), - [anon_sym_fn] = ACTIONS(711), - [anon_sym_PLUS] = ACTIONS(713), - [anon_sym_DASH] = ACTIONS(713), - [anon_sym_STAR] = ACTIONS(715), - [anon_sym_struct] = ACTIONS(717), + [anon_sym_LPAREN] = ACTIONS(775), + [anon_sym_fn] = ACTIONS(777), + [anon_sym_PLUS] = ACTIONS(779), + [anon_sym_DASH] = ACTIONS(779), + [anon_sym_STAR] = ACTIONS(781), + [anon_sym_struct] = ACTIONS(783), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(719), - [anon_sym_go] = ACTIONS(721), - [anon_sym_spawn] = ACTIONS(723), - [anon_sym_json_DOTdecode] = ACTIONS(725), - [anon_sym_LBRACK2] = ACTIONS(727), - [anon_sym_TILDE] = ACTIONS(713), - [anon_sym_CARET] = ACTIONS(713), - [anon_sym_AMP] = ACTIONS(729), - [anon_sym_LT_DASH] = ACTIONS(731), - [sym_none] = ACTIONS(733), - [sym_true] = ACTIONS(733), - [sym_false] = ACTIONS(733), - [sym_nil] = ACTIONS(733), - [anon_sym_if] = ACTIONS(735), - [anon_sym_else] = ACTIONS(737), - [anon_sym_DOLLARif] = ACTIONS(739), - [anon_sym_match] = ACTIONS(741), - [anon_sym_select] = ACTIONS(743), - [anon_sym_lock] = ACTIONS(745), - [anon_sym_rlock] = ACTIONS(745), - [anon_sym_unsafe] = ACTIONS(747), - [anon_sym_sql] = ACTIONS(749), - [sym_int_literal] = ACTIONS(733), - [sym_float_literal] = ACTIONS(751), - [sym_rune_literal] = ACTIONS(751), - [sym_pseudo_compile_time_identifier] = ACTIONS(753), + [anon_sym_BANG] = ACTIONS(785), + [anon_sym_go] = ACTIONS(787), + [anon_sym_spawn] = ACTIONS(789), + [anon_sym_json_DOTdecode] = ACTIONS(791), + [anon_sym_LBRACK2] = ACTIONS(793), + [anon_sym_TILDE] = ACTIONS(779), + [anon_sym_CARET] = ACTIONS(779), + [anon_sym_AMP] = ACTIONS(795), + [anon_sym_LT_DASH] = ACTIONS(797), + [sym_none] = ACTIONS(799), + [sym_true] = ACTIONS(799), + [sym_false] = ACTIONS(799), + [sym_nil] = ACTIONS(799), + [anon_sym_if] = ACTIONS(801), + [anon_sym_else] = ACTIONS(803), + [anon_sym_DOLLARif] = ACTIONS(805), + [anon_sym_match] = ACTIONS(807), + [anon_sym_select] = ACTIONS(809), + [anon_sym_lock] = ACTIONS(811), + [anon_sym_rlock] = ACTIONS(811), + [anon_sym_unsafe] = ACTIONS(813), + [anon_sym_sql] = ACTIONS(815), + [sym_int_literal] = ACTIONS(799), + [sym_float_literal] = ACTIONS(817), + [sym_rune_literal] = ACTIONS(817), + [sym_pseudo_compile_time_identifier] = ACTIONS(819), [anon_sym_shared] = ACTIONS(83), [anon_sym_map_LBRACK] = ACTIONS(85), [anon_sym_chan] = ACTIONS(87), [anon_sym_thread] = ACTIONS(89), [anon_sym_atomic] = ACTIONS(91), - [sym___double_quote] = ACTIONS(755), - [sym___single_quote] = ACTIONS(757), - [sym___c_double_quote] = ACTIONS(759), - [sym___c_single_quote] = ACTIONS(761), - [sym___r_double_quote] = ACTIONS(763), - [sym___r_single_quote] = ACTIONS(765), + [sym___double_quote] = ACTIONS(821), + [sym___single_quote] = ACTIONS(823), + [sym___c_double_quote] = ACTIONS(825), + [sym___c_single_quote] = ACTIONS(827), + [sym___r_double_quote] = ACTIONS(829), + [sym___r_single_quote] = ACTIONS(831), }, [132] = { [sym_line_comment] = STATE(132), [sym_block_comment] = STATE(132), - [sym__expression] = STATE(2731), - [sym__expression_without_blocks] = STATE(1902), - [sym__expression_with_blocks] = STATE(2870), - [sym_inc_expression] = STATE(2032), - [sym_dec_expression] = STATE(2032), - [sym_or_block_expression] = STATE(2032), - [sym_option_propagation_expression] = STATE(2032), - [sym_result_propagation_expression] = STATE(2032), - [sym_anon_struct_value_expression] = STATE(2868), - [sym_go_expression] = STATE(2032), - [sym_spawn_expression] = STATE(2032), - [sym_parenthesized_expression] = STATE(2032), - [sym_call_expression] = STATE(2032), - [sym_type_initializer] = STATE(2868), - [sym_function_literal] = STATE(2032), - [sym_reference_expression] = STATE(1914), - [sym_type_reference_expression] = STATE(3541), - [sym_unary_expression] = STATE(2032), - [sym_receive_expression] = STATE(2032), - [sym_binary_expression] = STATE(2032), - [sym_as_type_cast_expression] = STATE(2032), - [sym__max_group] = STATE(2032), - [sym_literal] = STATE(2027), - [sym_map_init_expression] = STATE(2868), - [sym_array_creation] = STATE(2032), - [sym_fixed_array_creation] = STATE(2032), - [sym_selector_expression] = STATE(2032), - [sym_index_expression] = STATE(2032), - [sym_slice_expression] = STATE(2032), - [sym_if_expression] = STATE(2868), - [sym_compile_time_if_expression] = STATE(2868), - [sym_is_expression] = STATE(2032), - [sym_in_expression] = STATE(2032), - [sym_enum_fetch] = STATE(2032), - [sym_match_expression] = STATE(2868), - [sym_select_expression] = STATE(2868), - [sym_select_arm] = STATE(2139), - [sym_select_arm_statement] = STATE(4161), - [sym_select_var_declaration] = STATE(4478), - [sym_select_else_arn_clause] = STATE(4621), - [sym_lock_expression] = STATE(2868), - [sym_unsafe_expression] = STATE(2868), - [sym_sql_expression] = STATE(2868), - [sym_c_string_literal] = STATE(2026), - [sym_raw_string_literal] = STATE(2026), - [sym_interpreted_string_literal] = STATE(2026), - [sym_mutability_modifiers] = STATE(635), - [sym_mutable_identifier] = STATE(3928), - [sym_identifier_list] = STATE(4484), + [sym__expression] = STATE(2780), + [sym__expression_without_blocks] = STATE(1903), + [sym__expression_with_blocks] = STATE(2882), + [sym_inc_expression] = STATE(2035), + [sym_dec_expression] = STATE(2035), + [sym_or_block_expression] = STATE(2035), + [sym_option_propagation_expression] = STATE(2035), + [sym_result_propagation_expression] = STATE(2035), + [sym_anon_struct_value_expression] = STATE(2877), + [sym_go_expression] = STATE(2035), + [sym_spawn_expression] = STATE(2035), + [sym_parenthesized_expression] = STATE(2035), + [sym_call_expression] = STATE(2035), + [sym_type_initializer] = STATE(2877), + [sym_function_literal] = STATE(2035), + [sym_reference_expression] = STATE(1944), + [sym_type_reference_expression] = STATE(3460), + [sym_unary_expression] = STATE(2035), + [sym_receive_expression] = STATE(2035), + [sym_binary_expression] = STATE(2035), + [sym_as_type_cast_expression] = STATE(2035), + [sym__max_group] = STATE(2035), + [sym_literal] = STATE(2030), + [sym_map_init_expression] = STATE(2877), + [sym_array_creation] = STATE(2035), + [sym_fixed_array_creation] = STATE(2035), + [sym_selector_expression] = STATE(2035), + [sym_index_expression] = STATE(2035), + [sym_slice_expression] = STATE(2035), + [sym_if_expression] = STATE(2877), + [sym_compile_time_if_expression] = STATE(2877), + [sym_is_expression] = STATE(2035), + [sym_in_expression] = STATE(2035), + [sym_enum_fetch] = STATE(2035), + [sym_match_expression] = STATE(2877), + [sym_select_expression] = STATE(2877), + [sym_select_arm] = STATE(2140), + [sym_select_arm_statement] = STATE(4150), + [sym_select_var_declaration] = STATE(4507), + [sym_select_else_arn_clause] = STATE(4337), + [sym_lock_expression] = STATE(2877), + [sym_unsafe_expression] = STATE(2877), + [sym_sql_expression] = STATE(2877), + [sym_c_string_literal] = STATE(2029), + [sym_raw_string_literal] = STATE(2029), + [sym_interpreted_string_literal] = STATE(2029), + [sym_mutability_modifiers] = STATE(641), + [sym_mutable_identifier] = STATE(3847), + [sym_identifier_list] = STATE(4511), [sym_expression_without_blocks_list] = STATE(3279), - [sym_plain_type] = STATE(4094), - [sym__plain_type_without_special] = STATE(2302), - [sym_anon_struct_type] = STATE(2303), - [sym_multi_return_type] = STATE(2302), - [sym_result_type] = STATE(2302), - [sym_option_type] = STATE(2302), - [sym_qualified_type] = STATE(3541), - [sym_fixed_array_type] = STATE(2303), - [sym_array_type] = STATE(2303), - [sym_pointer_type] = STATE(2303), - [sym_wrong_pointer_type] = STATE(2303), - [sym_map_type] = STATE(2303), - [sym_channel_type] = STATE(2303), - [sym_shared_type] = STATE(2303), - [sym_thread_type] = STATE(2303), - [sym_atomic_type] = STATE(2303), - [sym_generic_type] = STATE(2303), - [sym_function_type] = STATE(2303), - [sym_send_statement] = STATE(4478), - [aux_sym_select_expression_repeat1] = STATE(149), - [sym_identifier] = ACTIONS(701), + [sym_plain_type] = STATE(4297), + [sym__plain_type_without_special] = STATE(2360), + [sym_anon_struct_type] = STATE(2362), + [sym_multi_return_type] = STATE(2360), + [sym_result_type] = STATE(2360), + [sym_option_type] = STATE(2360), + [sym_qualified_type] = STATE(3460), + [sym_fixed_array_type] = STATE(2362), + [sym_array_type] = STATE(2362), + [sym_pointer_type] = STATE(2362), + [sym_wrong_pointer_type] = STATE(2362), + [sym_map_type] = STATE(2362), + [sym_channel_type] = STATE(2362), + [sym_shared_type] = STATE(2362), + [sym_thread_type] = STATE(2362), + [sym_atomic_type] = STATE(2362), + [sym_generic_type] = STATE(2362), + [sym_function_type] = STATE(2362), + [sym_send_statement] = STATE(4507), + [aux_sym_select_expression_repeat1] = STATE(119), + [sym_identifier] = ACTIONS(767), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(703), - [anon_sym_LBRACE] = ACTIONS(705), + [anon_sym_DOT] = ACTIONS(769), + [anon_sym_LBRACE] = ACTIONS(771), [anon_sym_RBRACE] = ACTIONS(919), - [anon_sym_LPAREN] = ACTIONS(709), - [anon_sym_fn] = ACTIONS(711), - [anon_sym_PLUS] = ACTIONS(713), - [anon_sym_DASH] = ACTIONS(713), - [anon_sym_STAR] = ACTIONS(715), - [anon_sym_struct] = ACTIONS(717), + [anon_sym_LPAREN] = ACTIONS(775), + [anon_sym_fn] = ACTIONS(777), + [anon_sym_PLUS] = ACTIONS(779), + [anon_sym_DASH] = ACTIONS(779), + [anon_sym_STAR] = ACTIONS(781), + [anon_sym_struct] = ACTIONS(783), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(719), - [anon_sym_go] = ACTIONS(721), - [anon_sym_spawn] = ACTIONS(723), - [anon_sym_json_DOTdecode] = ACTIONS(725), - [anon_sym_LBRACK2] = ACTIONS(727), - [anon_sym_TILDE] = ACTIONS(713), - [anon_sym_CARET] = ACTIONS(713), - [anon_sym_AMP] = ACTIONS(729), - [anon_sym_LT_DASH] = ACTIONS(731), - [sym_none] = ACTIONS(733), - [sym_true] = ACTIONS(733), - [sym_false] = ACTIONS(733), - [sym_nil] = ACTIONS(733), - [anon_sym_if] = ACTIONS(735), - [anon_sym_else] = ACTIONS(737), - [anon_sym_DOLLARif] = ACTIONS(739), - [anon_sym_match] = ACTIONS(741), - [anon_sym_select] = ACTIONS(743), - [anon_sym_lock] = ACTIONS(745), - [anon_sym_rlock] = ACTIONS(745), - [anon_sym_unsafe] = ACTIONS(747), - [anon_sym_sql] = ACTIONS(749), - [sym_int_literal] = ACTIONS(733), - [sym_float_literal] = ACTIONS(751), - [sym_rune_literal] = ACTIONS(751), - [sym_pseudo_compile_time_identifier] = ACTIONS(753), + [anon_sym_BANG] = ACTIONS(785), + [anon_sym_go] = ACTIONS(787), + [anon_sym_spawn] = ACTIONS(789), + [anon_sym_json_DOTdecode] = ACTIONS(791), + [anon_sym_LBRACK2] = ACTIONS(793), + [anon_sym_TILDE] = ACTIONS(779), + [anon_sym_CARET] = ACTIONS(779), + [anon_sym_AMP] = ACTIONS(795), + [anon_sym_LT_DASH] = ACTIONS(797), + [sym_none] = ACTIONS(799), + [sym_true] = ACTIONS(799), + [sym_false] = ACTIONS(799), + [sym_nil] = ACTIONS(799), + [anon_sym_if] = ACTIONS(801), + [anon_sym_else] = ACTIONS(803), + [anon_sym_DOLLARif] = ACTIONS(805), + [anon_sym_match] = ACTIONS(807), + [anon_sym_select] = ACTIONS(809), + [anon_sym_lock] = ACTIONS(811), + [anon_sym_rlock] = ACTIONS(811), + [anon_sym_unsafe] = ACTIONS(813), + [anon_sym_sql] = ACTIONS(815), + [sym_int_literal] = ACTIONS(799), + [sym_float_literal] = ACTIONS(817), + [sym_rune_literal] = ACTIONS(817), + [sym_pseudo_compile_time_identifier] = ACTIONS(819), [anon_sym_shared] = ACTIONS(83), [anon_sym_map_LBRACK] = ACTIONS(85), [anon_sym_chan] = ACTIONS(87), [anon_sym_thread] = ACTIONS(89), [anon_sym_atomic] = ACTIONS(91), - [sym___double_quote] = ACTIONS(755), - [sym___single_quote] = ACTIONS(757), - [sym___c_double_quote] = ACTIONS(759), - [sym___c_single_quote] = ACTIONS(761), - [sym___r_double_quote] = ACTIONS(763), - [sym___r_single_quote] = ACTIONS(765), + [sym___double_quote] = ACTIONS(821), + [sym___single_quote] = ACTIONS(823), + [sym___c_double_quote] = ACTIONS(825), + [sym___c_single_quote] = ACTIONS(827), + [sym___r_double_quote] = ACTIONS(829), + [sym___r_single_quote] = ACTIONS(831), }, [133] = { [sym_line_comment] = STATE(133), [sym_block_comment] = STATE(133), - [sym__expression] = STATE(2731), - [sym__expression_without_blocks] = STATE(1902), - [sym__expression_with_blocks] = STATE(2870), - [sym_inc_expression] = STATE(2032), - [sym_dec_expression] = STATE(2032), - [sym_or_block_expression] = STATE(2032), - [sym_option_propagation_expression] = STATE(2032), - [sym_result_propagation_expression] = STATE(2032), - [sym_anon_struct_value_expression] = STATE(2868), - [sym_go_expression] = STATE(2032), - [sym_spawn_expression] = STATE(2032), - [sym_parenthesized_expression] = STATE(2032), - [sym_call_expression] = STATE(2032), - [sym_type_initializer] = STATE(2868), - [sym_function_literal] = STATE(2032), - [sym_reference_expression] = STATE(1914), - [sym_type_reference_expression] = STATE(3541), - [sym_unary_expression] = STATE(2032), - [sym_receive_expression] = STATE(2032), - [sym_binary_expression] = STATE(2032), - [sym_as_type_cast_expression] = STATE(2032), - [sym__max_group] = STATE(2032), - [sym_literal] = STATE(2027), - [sym_map_init_expression] = STATE(2868), - [sym_array_creation] = STATE(2032), - [sym_fixed_array_creation] = STATE(2032), - [sym_selector_expression] = STATE(2032), - [sym_index_expression] = STATE(2032), - [sym_slice_expression] = STATE(2032), - [sym_if_expression] = STATE(2868), - [sym_compile_time_if_expression] = STATE(2868), - [sym_is_expression] = STATE(2032), - [sym_in_expression] = STATE(2032), - [sym_enum_fetch] = STATE(2032), - [sym_match_expression] = STATE(2868), - [sym_select_expression] = STATE(2868), - [sym_select_arm] = STATE(2139), - [sym_select_arm_statement] = STATE(4161), - [sym_select_var_declaration] = STATE(4478), - [sym_select_else_arn_clause] = STATE(4566), - [sym_lock_expression] = STATE(2868), - [sym_unsafe_expression] = STATE(2868), - [sym_sql_expression] = STATE(2868), - [sym_c_string_literal] = STATE(2026), - [sym_raw_string_literal] = STATE(2026), - [sym_interpreted_string_literal] = STATE(2026), - [sym_mutability_modifiers] = STATE(635), - [sym_mutable_identifier] = STATE(3928), - [sym_identifier_list] = STATE(4484), + [sym__expression] = STATE(2780), + [sym__expression_without_blocks] = STATE(1903), + [sym__expression_with_blocks] = STATE(2882), + [sym_inc_expression] = STATE(2035), + [sym_dec_expression] = STATE(2035), + [sym_or_block_expression] = STATE(2035), + [sym_option_propagation_expression] = STATE(2035), + [sym_result_propagation_expression] = STATE(2035), + [sym_anon_struct_value_expression] = STATE(2877), + [sym_go_expression] = STATE(2035), + [sym_spawn_expression] = STATE(2035), + [sym_parenthesized_expression] = STATE(2035), + [sym_call_expression] = STATE(2035), + [sym_type_initializer] = STATE(2877), + [sym_function_literal] = STATE(2035), + [sym_reference_expression] = STATE(1944), + [sym_type_reference_expression] = STATE(3460), + [sym_unary_expression] = STATE(2035), + [sym_receive_expression] = STATE(2035), + [sym_binary_expression] = STATE(2035), + [sym_as_type_cast_expression] = STATE(2035), + [sym__max_group] = STATE(2035), + [sym_literal] = STATE(2030), + [sym_map_init_expression] = STATE(2877), + [sym_array_creation] = STATE(2035), + [sym_fixed_array_creation] = STATE(2035), + [sym_selector_expression] = STATE(2035), + [sym_index_expression] = STATE(2035), + [sym_slice_expression] = STATE(2035), + [sym_if_expression] = STATE(2877), + [sym_compile_time_if_expression] = STATE(2877), + [sym_is_expression] = STATE(2035), + [sym_in_expression] = STATE(2035), + [sym_enum_fetch] = STATE(2035), + [sym_match_expression] = STATE(2877), + [sym_select_expression] = STATE(2877), + [sym_select_arm] = STATE(2140), + [sym_select_arm_statement] = STATE(4150), + [sym_select_var_declaration] = STATE(4507), + [sym_select_else_arn_clause] = STATE(4478), + [sym_lock_expression] = STATE(2877), + [sym_unsafe_expression] = STATE(2877), + [sym_sql_expression] = STATE(2877), + [sym_c_string_literal] = STATE(2029), + [sym_raw_string_literal] = STATE(2029), + [sym_interpreted_string_literal] = STATE(2029), + [sym_mutability_modifiers] = STATE(641), + [sym_mutable_identifier] = STATE(3847), + [sym_identifier_list] = STATE(4511), [sym_expression_without_blocks_list] = STATE(3279), - [sym_plain_type] = STATE(4094), - [sym__plain_type_without_special] = STATE(2302), - [sym_anon_struct_type] = STATE(2303), - [sym_multi_return_type] = STATE(2302), - [sym_result_type] = STATE(2302), - [sym_option_type] = STATE(2302), - [sym_qualified_type] = STATE(3541), - [sym_fixed_array_type] = STATE(2303), - [sym_array_type] = STATE(2303), - [sym_pointer_type] = STATE(2303), - [sym_wrong_pointer_type] = STATE(2303), - [sym_map_type] = STATE(2303), - [sym_channel_type] = STATE(2303), - [sym_shared_type] = STATE(2303), - [sym_thread_type] = STATE(2303), - [sym_atomic_type] = STATE(2303), - [sym_generic_type] = STATE(2303), - [sym_function_type] = STATE(2303), - [sym_send_statement] = STATE(4478), + [sym_plain_type] = STATE(4297), + [sym__plain_type_without_special] = STATE(2360), + [sym_anon_struct_type] = STATE(2362), + [sym_multi_return_type] = STATE(2360), + [sym_result_type] = STATE(2360), + [sym_option_type] = STATE(2360), + [sym_qualified_type] = STATE(3460), + [sym_fixed_array_type] = STATE(2362), + [sym_array_type] = STATE(2362), + [sym_pointer_type] = STATE(2362), + [sym_wrong_pointer_type] = STATE(2362), + [sym_map_type] = STATE(2362), + [sym_channel_type] = STATE(2362), + [sym_shared_type] = STATE(2362), + [sym_thread_type] = STATE(2362), + [sym_atomic_type] = STATE(2362), + [sym_generic_type] = STATE(2362), + [sym_function_type] = STATE(2362), + [sym_send_statement] = STATE(4507), [aux_sym_select_expression_repeat1] = STATE(149), - [sym_identifier] = ACTIONS(701), + [sym_identifier] = ACTIONS(767), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(703), - [anon_sym_LBRACE] = ACTIONS(705), + [anon_sym_DOT] = ACTIONS(769), + [anon_sym_LBRACE] = ACTIONS(771), [anon_sym_RBRACE] = ACTIONS(921), - [anon_sym_LPAREN] = ACTIONS(709), - [anon_sym_fn] = ACTIONS(711), - [anon_sym_PLUS] = ACTIONS(713), - [anon_sym_DASH] = ACTIONS(713), - [anon_sym_STAR] = ACTIONS(715), - [anon_sym_struct] = ACTIONS(717), + [anon_sym_LPAREN] = ACTIONS(775), + [anon_sym_fn] = ACTIONS(777), + [anon_sym_PLUS] = ACTIONS(779), + [anon_sym_DASH] = ACTIONS(779), + [anon_sym_STAR] = ACTIONS(781), + [anon_sym_struct] = ACTIONS(783), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(719), - [anon_sym_go] = ACTIONS(721), - [anon_sym_spawn] = ACTIONS(723), - [anon_sym_json_DOTdecode] = ACTIONS(725), - [anon_sym_LBRACK2] = ACTIONS(727), - [anon_sym_TILDE] = ACTIONS(713), - [anon_sym_CARET] = ACTIONS(713), - [anon_sym_AMP] = ACTIONS(729), - [anon_sym_LT_DASH] = ACTIONS(731), - [sym_none] = ACTIONS(733), - [sym_true] = ACTIONS(733), - [sym_false] = ACTIONS(733), - [sym_nil] = ACTIONS(733), - [anon_sym_if] = ACTIONS(735), - [anon_sym_else] = ACTIONS(737), - [anon_sym_DOLLARif] = ACTIONS(739), - [anon_sym_match] = ACTIONS(741), - [anon_sym_select] = ACTIONS(743), - [anon_sym_lock] = ACTIONS(745), - [anon_sym_rlock] = ACTIONS(745), - [anon_sym_unsafe] = ACTIONS(747), - [anon_sym_sql] = ACTIONS(749), - [sym_int_literal] = ACTIONS(733), - [sym_float_literal] = ACTIONS(751), - [sym_rune_literal] = ACTIONS(751), - [sym_pseudo_compile_time_identifier] = ACTIONS(753), + [anon_sym_BANG] = ACTIONS(785), + [anon_sym_go] = ACTIONS(787), + [anon_sym_spawn] = ACTIONS(789), + [anon_sym_json_DOTdecode] = ACTIONS(791), + [anon_sym_LBRACK2] = ACTIONS(793), + [anon_sym_TILDE] = ACTIONS(779), + [anon_sym_CARET] = ACTIONS(779), + [anon_sym_AMP] = ACTIONS(795), + [anon_sym_LT_DASH] = ACTIONS(797), + [sym_none] = ACTIONS(799), + [sym_true] = ACTIONS(799), + [sym_false] = ACTIONS(799), + [sym_nil] = ACTIONS(799), + [anon_sym_if] = ACTIONS(801), + [anon_sym_else] = ACTIONS(803), + [anon_sym_DOLLARif] = ACTIONS(805), + [anon_sym_match] = ACTIONS(807), + [anon_sym_select] = ACTIONS(809), + [anon_sym_lock] = ACTIONS(811), + [anon_sym_rlock] = ACTIONS(811), + [anon_sym_unsafe] = ACTIONS(813), + [anon_sym_sql] = ACTIONS(815), + [sym_int_literal] = ACTIONS(799), + [sym_float_literal] = ACTIONS(817), + [sym_rune_literal] = ACTIONS(817), + [sym_pseudo_compile_time_identifier] = ACTIONS(819), [anon_sym_shared] = ACTIONS(83), [anon_sym_map_LBRACK] = ACTIONS(85), [anon_sym_chan] = ACTIONS(87), [anon_sym_thread] = ACTIONS(89), [anon_sym_atomic] = ACTIONS(91), - [sym___double_quote] = ACTIONS(755), - [sym___single_quote] = ACTIONS(757), - [sym___c_double_quote] = ACTIONS(759), - [sym___c_single_quote] = ACTIONS(761), - [sym___r_double_quote] = ACTIONS(763), - [sym___r_single_quote] = ACTIONS(765), + [sym___double_quote] = ACTIONS(821), + [sym___single_quote] = ACTIONS(823), + [sym___c_double_quote] = ACTIONS(825), + [sym___c_single_quote] = ACTIONS(827), + [sym___r_double_quote] = ACTIONS(829), + [sym___r_single_quote] = ACTIONS(831), }, [134] = { [sym_line_comment] = STATE(134), [sym_block_comment] = STATE(134), - [sym__expression] = STATE(2731), - [sym__expression_without_blocks] = STATE(1902), - [sym__expression_with_blocks] = STATE(2870), - [sym_inc_expression] = STATE(2032), - [sym_dec_expression] = STATE(2032), - [sym_or_block_expression] = STATE(2032), - [sym_option_propagation_expression] = STATE(2032), - [sym_result_propagation_expression] = STATE(2032), - [sym_anon_struct_value_expression] = STATE(2868), - [sym_go_expression] = STATE(2032), - [sym_spawn_expression] = STATE(2032), - [sym_parenthesized_expression] = STATE(2032), - [sym_call_expression] = STATE(2032), - [sym_type_initializer] = STATE(2868), - [sym_function_literal] = STATE(2032), - [sym_reference_expression] = STATE(1914), - [sym_type_reference_expression] = STATE(3541), - [sym_unary_expression] = STATE(2032), - [sym_receive_expression] = STATE(2032), - [sym_binary_expression] = STATE(2032), - [sym_as_type_cast_expression] = STATE(2032), - [sym__max_group] = STATE(2032), - [sym_literal] = STATE(2027), - [sym_map_init_expression] = STATE(2868), - [sym_array_creation] = STATE(2032), - [sym_fixed_array_creation] = STATE(2032), - [sym_selector_expression] = STATE(2032), - [sym_index_expression] = STATE(2032), - [sym_slice_expression] = STATE(2032), - [sym_if_expression] = STATE(2868), - [sym_compile_time_if_expression] = STATE(2868), - [sym_is_expression] = STATE(2032), - [sym_in_expression] = STATE(2032), - [sym_enum_fetch] = STATE(2032), - [sym_match_expression] = STATE(2868), - [sym_select_expression] = STATE(2868), - [sym_select_arm] = STATE(2139), - [sym_select_arm_statement] = STATE(4161), - [sym_select_var_declaration] = STATE(4478), - [sym_select_else_arn_clause] = STATE(4522), - [sym_lock_expression] = STATE(2868), - [sym_unsafe_expression] = STATE(2868), - [sym_sql_expression] = STATE(2868), - [sym_c_string_literal] = STATE(2026), - [sym_raw_string_literal] = STATE(2026), - [sym_interpreted_string_literal] = STATE(2026), - [sym_mutability_modifiers] = STATE(635), - [sym_mutable_identifier] = STATE(3928), - [sym_identifier_list] = STATE(4484), + [sym__expression] = STATE(2780), + [sym__expression_without_blocks] = STATE(1903), + [sym__expression_with_blocks] = STATE(2882), + [sym_inc_expression] = STATE(2035), + [sym_dec_expression] = STATE(2035), + [sym_or_block_expression] = STATE(2035), + [sym_option_propagation_expression] = STATE(2035), + [sym_result_propagation_expression] = STATE(2035), + [sym_anon_struct_value_expression] = STATE(2877), + [sym_go_expression] = STATE(2035), + [sym_spawn_expression] = STATE(2035), + [sym_parenthesized_expression] = STATE(2035), + [sym_call_expression] = STATE(2035), + [sym_type_initializer] = STATE(2877), + [sym_function_literal] = STATE(2035), + [sym_reference_expression] = STATE(1944), + [sym_type_reference_expression] = STATE(3460), + [sym_unary_expression] = STATE(2035), + [sym_receive_expression] = STATE(2035), + [sym_binary_expression] = STATE(2035), + [sym_as_type_cast_expression] = STATE(2035), + [sym__max_group] = STATE(2035), + [sym_literal] = STATE(2030), + [sym_map_init_expression] = STATE(2877), + [sym_array_creation] = STATE(2035), + [sym_fixed_array_creation] = STATE(2035), + [sym_selector_expression] = STATE(2035), + [sym_index_expression] = STATE(2035), + [sym_slice_expression] = STATE(2035), + [sym_if_expression] = STATE(2877), + [sym_compile_time_if_expression] = STATE(2877), + [sym_is_expression] = STATE(2035), + [sym_in_expression] = STATE(2035), + [sym_enum_fetch] = STATE(2035), + [sym_match_expression] = STATE(2877), + [sym_select_expression] = STATE(2877), + [sym_select_arm] = STATE(2140), + [sym_select_arm_statement] = STATE(4150), + [sym_select_var_declaration] = STATE(4507), + [sym_select_else_arn_clause] = STATE(4481), + [sym_lock_expression] = STATE(2877), + [sym_unsafe_expression] = STATE(2877), + [sym_sql_expression] = STATE(2877), + [sym_c_string_literal] = STATE(2029), + [sym_raw_string_literal] = STATE(2029), + [sym_interpreted_string_literal] = STATE(2029), + [sym_mutability_modifiers] = STATE(641), + [sym_mutable_identifier] = STATE(3847), + [sym_identifier_list] = STATE(4511), [sym_expression_without_blocks_list] = STATE(3279), - [sym_plain_type] = STATE(4094), - [sym__plain_type_without_special] = STATE(2302), - [sym_anon_struct_type] = STATE(2303), - [sym_multi_return_type] = STATE(2302), - [sym_result_type] = STATE(2302), - [sym_option_type] = STATE(2302), - [sym_qualified_type] = STATE(3541), - [sym_fixed_array_type] = STATE(2303), - [sym_array_type] = STATE(2303), - [sym_pointer_type] = STATE(2303), - [sym_wrong_pointer_type] = STATE(2303), - [sym_map_type] = STATE(2303), - [sym_channel_type] = STATE(2303), - [sym_shared_type] = STATE(2303), - [sym_thread_type] = STATE(2303), - [sym_atomic_type] = STATE(2303), - [sym_generic_type] = STATE(2303), - [sym_function_type] = STATE(2303), - [sym_send_statement] = STATE(4478), - [aux_sym_select_expression_repeat1] = STATE(136), - [sym_identifier] = ACTIONS(701), + [sym_plain_type] = STATE(4297), + [sym__plain_type_without_special] = STATE(2360), + [sym_anon_struct_type] = STATE(2362), + [sym_multi_return_type] = STATE(2360), + [sym_result_type] = STATE(2360), + [sym_option_type] = STATE(2360), + [sym_qualified_type] = STATE(3460), + [sym_fixed_array_type] = STATE(2362), + [sym_array_type] = STATE(2362), + [sym_pointer_type] = STATE(2362), + [sym_wrong_pointer_type] = STATE(2362), + [sym_map_type] = STATE(2362), + [sym_channel_type] = STATE(2362), + [sym_shared_type] = STATE(2362), + [sym_thread_type] = STATE(2362), + [sym_atomic_type] = STATE(2362), + [sym_generic_type] = STATE(2362), + [sym_function_type] = STATE(2362), + [sym_send_statement] = STATE(4507), + [aux_sym_select_expression_repeat1] = STATE(135), + [sym_identifier] = ACTIONS(767), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(703), - [anon_sym_LBRACE] = ACTIONS(705), + [anon_sym_DOT] = ACTIONS(769), + [anon_sym_LBRACE] = ACTIONS(771), [anon_sym_RBRACE] = ACTIONS(923), - [anon_sym_LPAREN] = ACTIONS(709), - [anon_sym_fn] = ACTIONS(711), - [anon_sym_PLUS] = ACTIONS(713), - [anon_sym_DASH] = ACTIONS(713), - [anon_sym_STAR] = ACTIONS(715), - [anon_sym_struct] = ACTIONS(717), + [anon_sym_LPAREN] = ACTIONS(775), + [anon_sym_fn] = ACTIONS(777), + [anon_sym_PLUS] = ACTIONS(779), + [anon_sym_DASH] = ACTIONS(779), + [anon_sym_STAR] = ACTIONS(781), + [anon_sym_struct] = ACTIONS(783), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(719), - [anon_sym_go] = ACTIONS(721), - [anon_sym_spawn] = ACTIONS(723), - [anon_sym_json_DOTdecode] = ACTIONS(725), - [anon_sym_LBRACK2] = ACTIONS(727), - [anon_sym_TILDE] = ACTIONS(713), - [anon_sym_CARET] = ACTIONS(713), - [anon_sym_AMP] = ACTIONS(729), - [anon_sym_LT_DASH] = ACTIONS(731), - [sym_none] = ACTIONS(733), - [sym_true] = ACTIONS(733), - [sym_false] = ACTIONS(733), - [sym_nil] = ACTIONS(733), - [anon_sym_if] = ACTIONS(735), - [anon_sym_else] = ACTIONS(737), - [anon_sym_DOLLARif] = ACTIONS(739), - [anon_sym_match] = ACTIONS(741), - [anon_sym_select] = ACTIONS(743), - [anon_sym_lock] = ACTIONS(745), - [anon_sym_rlock] = ACTIONS(745), - [anon_sym_unsafe] = ACTIONS(747), - [anon_sym_sql] = ACTIONS(749), - [sym_int_literal] = ACTIONS(733), - [sym_float_literal] = ACTIONS(751), - [sym_rune_literal] = ACTIONS(751), - [sym_pseudo_compile_time_identifier] = ACTIONS(753), + [anon_sym_BANG] = ACTIONS(785), + [anon_sym_go] = ACTIONS(787), + [anon_sym_spawn] = ACTIONS(789), + [anon_sym_json_DOTdecode] = ACTIONS(791), + [anon_sym_LBRACK2] = ACTIONS(793), + [anon_sym_TILDE] = ACTIONS(779), + [anon_sym_CARET] = ACTIONS(779), + [anon_sym_AMP] = ACTIONS(795), + [anon_sym_LT_DASH] = ACTIONS(797), + [sym_none] = ACTIONS(799), + [sym_true] = ACTIONS(799), + [sym_false] = ACTIONS(799), + [sym_nil] = ACTIONS(799), + [anon_sym_if] = ACTIONS(801), + [anon_sym_else] = ACTIONS(803), + [anon_sym_DOLLARif] = ACTIONS(805), + [anon_sym_match] = ACTIONS(807), + [anon_sym_select] = ACTIONS(809), + [anon_sym_lock] = ACTIONS(811), + [anon_sym_rlock] = ACTIONS(811), + [anon_sym_unsafe] = ACTIONS(813), + [anon_sym_sql] = ACTIONS(815), + [sym_int_literal] = ACTIONS(799), + [sym_float_literal] = ACTIONS(817), + [sym_rune_literal] = ACTIONS(817), + [sym_pseudo_compile_time_identifier] = ACTIONS(819), [anon_sym_shared] = ACTIONS(83), [anon_sym_map_LBRACK] = ACTIONS(85), [anon_sym_chan] = ACTIONS(87), [anon_sym_thread] = ACTIONS(89), [anon_sym_atomic] = ACTIONS(91), - [sym___double_quote] = ACTIONS(755), - [sym___single_quote] = ACTIONS(757), - [sym___c_double_quote] = ACTIONS(759), - [sym___c_single_quote] = ACTIONS(761), - [sym___r_double_quote] = ACTIONS(763), - [sym___r_single_quote] = ACTIONS(765), + [sym___double_quote] = ACTIONS(821), + [sym___single_quote] = ACTIONS(823), + [sym___c_double_quote] = ACTIONS(825), + [sym___c_single_quote] = ACTIONS(827), + [sym___r_double_quote] = ACTIONS(829), + [sym___r_single_quote] = ACTIONS(831), }, [135] = { [sym_line_comment] = STATE(135), [sym_block_comment] = STATE(135), - [sym__expression] = STATE(2731), - [sym__expression_without_blocks] = STATE(1902), - [sym__expression_with_blocks] = STATE(2870), - [sym_inc_expression] = STATE(2032), - [sym_dec_expression] = STATE(2032), - [sym_or_block_expression] = STATE(2032), - [sym_option_propagation_expression] = STATE(2032), - [sym_result_propagation_expression] = STATE(2032), - [sym_anon_struct_value_expression] = STATE(2868), - [sym_go_expression] = STATE(2032), - [sym_spawn_expression] = STATE(2032), - [sym_parenthesized_expression] = STATE(2032), - [sym_call_expression] = STATE(2032), - [sym_type_initializer] = STATE(2868), - [sym_function_literal] = STATE(2032), - [sym_reference_expression] = STATE(1914), - [sym_type_reference_expression] = STATE(3541), - [sym_unary_expression] = STATE(2032), - [sym_receive_expression] = STATE(2032), - [sym_binary_expression] = STATE(2032), - [sym_as_type_cast_expression] = STATE(2032), - [sym__max_group] = STATE(2032), - [sym_literal] = STATE(2027), - [sym_map_init_expression] = STATE(2868), - [sym_array_creation] = STATE(2032), - [sym_fixed_array_creation] = STATE(2032), - [sym_selector_expression] = STATE(2032), - [sym_index_expression] = STATE(2032), - [sym_slice_expression] = STATE(2032), - [sym_if_expression] = STATE(2868), - [sym_compile_time_if_expression] = STATE(2868), - [sym_is_expression] = STATE(2032), - [sym_in_expression] = STATE(2032), - [sym_enum_fetch] = STATE(2032), - [sym_match_expression] = STATE(2868), - [sym_select_expression] = STATE(2868), - [sym_select_arm] = STATE(2139), - [sym_select_arm_statement] = STATE(4161), - [sym_select_var_declaration] = STATE(4478), - [sym_select_else_arn_clause] = STATE(4418), - [sym_lock_expression] = STATE(2868), - [sym_unsafe_expression] = STATE(2868), - [sym_sql_expression] = STATE(2868), - [sym_c_string_literal] = STATE(2026), - [sym_raw_string_literal] = STATE(2026), - [sym_interpreted_string_literal] = STATE(2026), - [sym_mutability_modifiers] = STATE(635), - [sym_mutable_identifier] = STATE(3928), - [sym_identifier_list] = STATE(4484), + [sym__expression] = STATE(2780), + [sym__expression_without_blocks] = STATE(1903), + [sym__expression_with_blocks] = STATE(2882), + [sym_inc_expression] = STATE(2035), + [sym_dec_expression] = STATE(2035), + [sym_or_block_expression] = STATE(2035), + [sym_option_propagation_expression] = STATE(2035), + [sym_result_propagation_expression] = STATE(2035), + [sym_anon_struct_value_expression] = STATE(2877), + [sym_go_expression] = STATE(2035), + [sym_spawn_expression] = STATE(2035), + [sym_parenthesized_expression] = STATE(2035), + [sym_call_expression] = STATE(2035), + [sym_type_initializer] = STATE(2877), + [sym_function_literal] = STATE(2035), + [sym_reference_expression] = STATE(1944), + [sym_type_reference_expression] = STATE(3460), + [sym_unary_expression] = STATE(2035), + [sym_receive_expression] = STATE(2035), + [sym_binary_expression] = STATE(2035), + [sym_as_type_cast_expression] = STATE(2035), + [sym__max_group] = STATE(2035), + [sym_literal] = STATE(2030), + [sym_map_init_expression] = STATE(2877), + [sym_array_creation] = STATE(2035), + [sym_fixed_array_creation] = STATE(2035), + [sym_selector_expression] = STATE(2035), + [sym_index_expression] = STATE(2035), + [sym_slice_expression] = STATE(2035), + [sym_if_expression] = STATE(2877), + [sym_compile_time_if_expression] = STATE(2877), + [sym_is_expression] = STATE(2035), + [sym_in_expression] = STATE(2035), + [sym_enum_fetch] = STATE(2035), + [sym_match_expression] = STATE(2877), + [sym_select_expression] = STATE(2877), + [sym_select_arm] = STATE(2140), + [sym_select_arm_statement] = STATE(4150), + [sym_select_var_declaration] = STATE(4507), + [sym_select_else_arn_clause] = STATE(4487), + [sym_lock_expression] = STATE(2877), + [sym_unsafe_expression] = STATE(2877), + [sym_sql_expression] = STATE(2877), + [sym_c_string_literal] = STATE(2029), + [sym_raw_string_literal] = STATE(2029), + [sym_interpreted_string_literal] = STATE(2029), + [sym_mutability_modifiers] = STATE(641), + [sym_mutable_identifier] = STATE(3847), + [sym_identifier_list] = STATE(4511), [sym_expression_without_blocks_list] = STATE(3279), - [sym_plain_type] = STATE(4094), - [sym__plain_type_without_special] = STATE(2302), - [sym_anon_struct_type] = STATE(2303), - [sym_multi_return_type] = STATE(2302), - [sym_result_type] = STATE(2302), - [sym_option_type] = STATE(2302), - [sym_qualified_type] = STATE(3541), - [sym_fixed_array_type] = STATE(2303), - [sym_array_type] = STATE(2303), - [sym_pointer_type] = STATE(2303), - [sym_wrong_pointer_type] = STATE(2303), - [sym_map_type] = STATE(2303), - [sym_channel_type] = STATE(2303), - [sym_shared_type] = STATE(2303), - [sym_thread_type] = STATE(2303), - [sym_atomic_type] = STATE(2303), - [sym_generic_type] = STATE(2303), - [sym_function_type] = STATE(2303), - [sym_send_statement] = STATE(4478), + [sym_plain_type] = STATE(4297), + [sym__plain_type_without_special] = STATE(2360), + [sym_anon_struct_type] = STATE(2362), + [sym_multi_return_type] = STATE(2360), + [sym_result_type] = STATE(2360), + [sym_option_type] = STATE(2360), + [sym_qualified_type] = STATE(3460), + [sym_fixed_array_type] = STATE(2362), + [sym_array_type] = STATE(2362), + [sym_pointer_type] = STATE(2362), + [sym_wrong_pointer_type] = STATE(2362), + [sym_map_type] = STATE(2362), + [sym_channel_type] = STATE(2362), + [sym_shared_type] = STATE(2362), + [sym_thread_type] = STATE(2362), + [sym_atomic_type] = STATE(2362), + [sym_generic_type] = STATE(2362), + [sym_function_type] = STATE(2362), + [sym_send_statement] = STATE(4507), [aux_sym_select_expression_repeat1] = STATE(149), - [sym_identifier] = ACTIONS(701), + [sym_identifier] = ACTIONS(767), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(703), - [anon_sym_LBRACE] = ACTIONS(705), + [anon_sym_DOT] = ACTIONS(769), + [anon_sym_LBRACE] = ACTIONS(771), [anon_sym_RBRACE] = ACTIONS(925), - [anon_sym_LPAREN] = ACTIONS(709), - [anon_sym_fn] = ACTIONS(711), - [anon_sym_PLUS] = ACTIONS(713), - [anon_sym_DASH] = ACTIONS(713), - [anon_sym_STAR] = ACTIONS(715), - [anon_sym_struct] = ACTIONS(717), + [anon_sym_LPAREN] = ACTIONS(775), + [anon_sym_fn] = ACTIONS(777), + [anon_sym_PLUS] = ACTIONS(779), + [anon_sym_DASH] = ACTIONS(779), + [anon_sym_STAR] = ACTIONS(781), + [anon_sym_struct] = ACTIONS(783), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(719), - [anon_sym_go] = ACTIONS(721), - [anon_sym_spawn] = ACTIONS(723), - [anon_sym_json_DOTdecode] = ACTIONS(725), - [anon_sym_LBRACK2] = ACTIONS(727), - [anon_sym_TILDE] = ACTIONS(713), - [anon_sym_CARET] = ACTIONS(713), - [anon_sym_AMP] = ACTIONS(729), - [anon_sym_LT_DASH] = ACTIONS(731), - [sym_none] = ACTIONS(733), - [sym_true] = ACTIONS(733), - [sym_false] = ACTIONS(733), - [sym_nil] = ACTIONS(733), - [anon_sym_if] = ACTIONS(735), - [anon_sym_else] = ACTIONS(737), - [anon_sym_DOLLARif] = ACTIONS(739), - [anon_sym_match] = ACTIONS(741), - [anon_sym_select] = ACTIONS(743), - [anon_sym_lock] = ACTIONS(745), - [anon_sym_rlock] = ACTIONS(745), - [anon_sym_unsafe] = ACTIONS(747), - [anon_sym_sql] = ACTIONS(749), - [sym_int_literal] = ACTIONS(733), - [sym_float_literal] = ACTIONS(751), - [sym_rune_literal] = ACTIONS(751), - [sym_pseudo_compile_time_identifier] = ACTIONS(753), + [anon_sym_BANG] = ACTIONS(785), + [anon_sym_go] = ACTIONS(787), + [anon_sym_spawn] = ACTIONS(789), + [anon_sym_json_DOTdecode] = ACTIONS(791), + [anon_sym_LBRACK2] = ACTIONS(793), + [anon_sym_TILDE] = ACTIONS(779), + [anon_sym_CARET] = ACTIONS(779), + [anon_sym_AMP] = ACTIONS(795), + [anon_sym_LT_DASH] = ACTIONS(797), + [sym_none] = ACTIONS(799), + [sym_true] = ACTIONS(799), + [sym_false] = ACTIONS(799), + [sym_nil] = ACTIONS(799), + [anon_sym_if] = ACTIONS(801), + [anon_sym_else] = ACTIONS(803), + [anon_sym_DOLLARif] = ACTIONS(805), + [anon_sym_match] = ACTIONS(807), + [anon_sym_select] = ACTIONS(809), + [anon_sym_lock] = ACTIONS(811), + [anon_sym_rlock] = ACTIONS(811), + [anon_sym_unsafe] = ACTIONS(813), + [anon_sym_sql] = ACTIONS(815), + [sym_int_literal] = ACTIONS(799), + [sym_float_literal] = ACTIONS(817), + [sym_rune_literal] = ACTIONS(817), + [sym_pseudo_compile_time_identifier] = ACTIONS(819), [anon_sym_shared] = ACTIONS(83), [anon_sym_map_LBRACK] = ACTIONS(85), [anon_sym_chan] = ACTIONS(87), [anon_sym_thread] = ACTIONS(89), [anon_sym_atomic] = ACTIONS(91), - [sym___double_quote] = ACTIONS(755), - [sym___single_quote] = ACTIONS(757), - [sym___c_double_quote] = ACTIONS(759), - [sym___c_single_quote] = ACTIONS(761), - [sym___r_double_quote] = ACTIONS(763), - [sym___r_single_quote] = ACTIONS(765), + [sym___double_quote] = ACTIONS(821), + [sym___single_quote] = ACTIONS(823), + [sym___c_double_quote] = ACTIONS(825), + [sym___c_single_quote] = ACTIONS(827), + [sym___r_double_quote] = ACTIONS(829), + [sym___r_single_quote] = ACTIONS(831), }, [136] = { [sym_line_comment] = STATE(136), [sym_block_comment] = STATE(136), - [sym__expression] = STATE(2731), - [sym__expression_without_blocks] = STATE(1902), - [sym__expression_with_blocks] = STATE(2870), - [sym_inc_expression] = STATE(2032), - [sym_dec_expression] = STATE(2032), - [sym_or_block_expression] = STATE(2032), - [sym_option_propagation_expression] = STATE(2032), - [sym_result_propagation_expression] = STATE(2032), - [sym_anon_struct_value_expression] = STATE(2868), - [sym_go_expression] = STATE(2032), - [sym_spawn_expression] = STATE(2032), - [sym_parenthesized_expression] = STATE(2032), - [sym_call_expression] = STATE(2032), - [sym_type_initializer] = STATE(2868), - [sym_function_literal] = STATE(2032), - [sym_reference_expression] = STATE(1914), - [sym_type_reference_expression] = STATE(3541), - [sym_unary_expression] = STATE(2032), - [sym_receive_expression] = STATE(2032), - [sym_binary_expression] = STATE(2032), - [sym_as_type_cast_expression] = STATE(2032), - [sym__max_group] = STATE(2032), - [sym_literal] = STATE(2027), - [sym_map_init_expression] = STATE(2868), - [sym_array_creation] = STATE(2032), - [sym_fixed_array_creation] = STATE(2032), - [sym_selector_expression] = STATE(2032), - [sym_index_expression] = STATE(2032), - [sym_slice_expression] = STATE(2032), - [sym_if_expression] = STATE(2868), - [sym_compile_time_if_expression] = STATE(2868), - [sym_is_expression] = STATE(2032), - [sym_in_expression] = STATE(2032), - [sym_enum_fetch] = STATE(2032), - [sym_match_expression] = STATE(2868), - [sym_select_expression] = STATE(2868), - [sym_select_arm] = STATE(2139), - [sym_select_arm_statement] = STATE(4161), - [sym_select_var_declaration] = STATE(4478), - [sym_select_else_arn_clause] = STATE(4547), - [sym_lock_expression] = STATE(2868), - [sym_unsafe_expression] = STATE(2868), - [sym_sql_expression] = STATE(2868), - [sym_c_string_literal] = STATE(2026), - [sym_raw_string_literal] = STATE(2026), - [sym_interpreted_string_literal] = STATE(2026), - [sym_mutability_modifiers] = STATE(635), - [sym_mutable_identifier] = STATE(3928), - [sym_identifier_list] = STATE(4484), + [sym__expression] = STATE(2780), + [sym__expression_without_blocks] = STATE(1903), + [sym__expression_with_blocks] = STATE(2882), + [sym_inc_expression] = STATE(2035), + [sym_dec_expression] = STATE(2035), + [sym_or_block_expression] = STATE(2035), + [sym_option_propagation_expression] = STATE(2035), + [sym_result_propagation_expression] = STATE(2035), + [sym_anon_struct_value_expression] = STATE(2877), + [sym_go_expression] = STATE(2035), + [sym_spawn_expression] = STATE(2035), + [sym_parenthesized_expression] = STATE(2035), + [sym_call_expression] = STATE(2035), + [sym_type_initializer] = STATE(2877), + [sym_function_literal] = STATE(2035), + [sym_reference_expression] = STATE(1944), + [sym_type_reference_expression] = STATE(3460), + [sym_unary_expression] = STATE(2035), + [sym_receive_expression] = STATE(2035), + [sym_binary_expression] = STATE(2035), + [sym_as_type_cast_expression] = STATE(2035), + [sym__max_group] = STATE(2035), + [sym_literal] = STATE(2030), + [sym_map_init_expression] = STATE(2877), + [sym_array_creation] = STATE(2035), + [sym_fixed_array_creation] = STATE(2035), + [sym_selector_expression] = STATE(2035), + [sym_index_expression] = STATE(2035), + [sym_slice_expression] = STATE(2035), + [sym_if_expression] = STATE(2877), + [sym_compile_time_if_expression] = STATE(2877), + [sym_is_expression] = STATE(2035), + [sym_in_expression] = STATE(2035), + [sym_enum_fetch] = STATE(2035), + [sym_match_expression] = STATE(2877), + [sym_select_expression] = STATE(2877), + [sym_select_arm] = STATE(2140), + [sym_select_arm_statement] = STATE(4150), + [sym_select_var_declaration] = STATE(4507), + [sym_select_else_arn_clause] = STATE(4486), + [sym_lock_expression] = STATE(2877), + [sym_unsafe_expression] = STATE(2877), + [sym_sql_expression] = STATE(2877), + [sym_c_string_literal] = STATE(2029), + [sym_raw_string_literal] = STATE(2029), + [sym_interpreted_string_literal] = STATE(2029), + [sym_mutability_modifiers] = STATE(641), + [sym_mutable_identifier] = STATE(3847), + [sym_identifier_list] = STATE(4511), [sym_expression_without_blocks_list] = STATE(3279), - [sym_plain_type] = STATE(4094), - [sym__plain_type_without_special] = STATE(2302), - [sym_anon_struct_type] = STATE(2303), - [sym_multi_return_type] = STATE(2302), - [sym_result_type] = STATE(2302), - [sym_option_type] = STATE(2302), - [sym_qualified_type] = STATE(3541), - [sym_fixed_array_type] = STATE(2303), - [sym_array_type] = STATE(2303), - [sym_pointer_type] = STATE(2303), - [sym_wrong_pointer_type] = STATE(2303), - [sym_map_type] = STATE(2303), - [sym_channel_type] = STATE(2303), - [sym_shared_type] = STATE(2303), - [sym_thread_type] = STATE(2303), - [sym_atomic_type] = STATE(2303), - [sym_generic_type] = STATE(2303), - [sym_function_type] = STATE(2303), - [sym_send_statement] = STATE(4478), + [sym_plain_type] = STATE(4297), + [sym__plain_type_without_special] = STATE(2360), + [sym_anon_struct_type] = STATE(2362), + [sym_multi_return_type] = STATE(2360), + [sym_result_type] = STATE(2360), + [sym_option_type] = STATE(2360), + [sym_qualified_type] = STATE(3460), + [sym_fixed_array_type] = STATE(2362), + [sym_array_type] = STATE(2362), + [sym_pointer_type] = STATE(2362), + [sym_wrong_pointer_type] = STATE(2362), + [sym_map_type] = STATE(2362), + [sym_channel_type] = STATE(2362), + [sym_shared_type] = STATE(2362), + [sym_thread_type] = STATE(2362), + [sym_atomic_type] = STATE(2362), + [sym_generic_type] = STATE(2362), + [sym_function_type] = STATE(2362), + [sym_send_statement] = STATE(4507), [aux_sym_select_expression_repeat1] = STATE(149), - [sym_identifier] = ACTIONS(701), + [sym_identifier] = ACTIONS(767), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(703), - [anon_sym_LBRACE] = ACTIONS(705), + [anon_sym_DOT] = ACTIONS(769), + [anon_sym_LBRACE] = ACTIONS(771), [anon_sym_RBRACE] = ACTIONS(927), - [anon_sym_LPAREN] = ACTIONS(709), - [anon_sym_fn] = ACTIONS(711), - [anon_sym_PLUS] = ACTIONS(713), - [anon_sym_DASH] = ACTIONS(713), - [anon_sym_STAR] = ACTIONS(715), - [anon_sym_struct] = ACTIONS(717), + [anon_sym_LPAREN] = ACTIONS(775), + [anon_sym_fn] = ACTIONS(777), + [anon_sym_PLUS] = ACTIONS(779), + [anon_sym_DASH] = ACTIONS(779), + [anon_sym_STAR] = ACTIONS(781), + [anon_sym_struct] = ACTIONS(783), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(719), - [anon_sym_go] = ACTIONS(721), - [anon_sym_spawn] = ACTIONS(723), - [anon_sym_json_DOTdecode] = ACTIONS(725), - [anon_sym_LBRACK2] = ACTIONS(727), - [anon_sym_TILDE] = ACTIONS(713), - [anon_sym_CARET] = ACTIONS(713), - [anon_sym_AMP] = ACTIONS(729), - [anon_sym_LT_DASH] = ACTIONS(731), - [sym_none] = ACTIONS(733), - [sym_true] = ACTIONS(733), - [sym_false] = ACTIONS(733), - [sym_nil] = ACTIONS(733), - [anon_sym_if] = ACTIONS(735), - [anon_sym_else] = ACTIONS(737), - [anon_sym_DOLLARif] = ACTIONS(739), - [anon_sym_match] = ACTIONS(741), - [anon_sym_select] = ACTIONS(743), - [anon_sym_lock] = ACTIONS(745), - [anon_sym_rlock] = ACTIONS(745), - [anon_sym_unsafe] = ACTIONS(747), - [anon_sym_sql] = ACTIONS(749), - [sym_int_literal] = ACTIONS(733), - [sym_float_literal] = ACTIONS(751), - [sym_rune_literal] = ACTIONS(751), - [sym_pseudo_compile_time_identifier] = ACTIONS(753), + [anon_sym_BANG] = ACTIONS(785), + [anon_sym_go] = ACTIONS(787), + [anon_sym_spawn] = ACTIONS(789), + [anon_sym_json_DOTdecode] = ACTIONS(791), + [anon_sym_LBRACK2] = ACTIONS(793), + [anon_sym_TILDE] = ACTIONS(779), + [anon_sym_CARET] = ACTIONS(779), + [anon_sym_AMP] = ACTIONS(795), + [anon_sym_LT_DASH] = ACTIONS(797), + [sym_none] = ACTIONS(799), + [sym_true] = ACTIONS(799), + [sym_false] = ACTIONS(799), + [sym_nil] = ACTIONS(799), + [anon_sym_if] = ACTIONS(801), + [anon_sym_else] = ACTIONS(803), + [anon_sym_DOLLARif] = ACTIONS(805), + [anon_sym_match] = ACTIONS(807), + [anon_sym_select] = ACTIONS(809), + [anon_sym_lock] = ACTIONS(811), + [anon_sym_rlock] = ACTIONS(811), + [anon_sym_unsafe] = ACTIONS(813), + [anon_sym_sql] = ACTIONS(815), + [sym_int_literal] = ACTIONS(799), + [sym_float_literal] = ACTIONS(817), + [sym_rune_literal] = ACTIONS(817), + [sym_pseudo_compile_time_identifier] = ACTIONS(819), [anon_sym_shared] = ACTIONS(83), [anon_sym_map_LBRACK] = ACTIONS(85), [anon_sym_chan] = ACTIONS(87), [anon_sym_thread] = ACTIONS(89), [anon_sym_atomic] = ACTIONS(91), - [sym___double_quote] = ACTIONS(755), - [sym___single_quote] = ACTIONS(757), - [sym___c_double_quote] = ACTIONS(759), - [sym___c_single_quote] = ACTIONS(761), - [sym___r_double_quote] = ACTIONS(763), - [sym___r_single_quote] = ACTIONS(765), + [sym___double_quote] = ACTIONS(821), + [sym___single_quote] = ACTIONS(823), + [sym___c_double_quote] = ACTIONS(825), + [sym___c_single_quote] = ACTIONS(827), + [sym___r_double_quote] = ACTIONS(829), + [sym___r_single_quote] = ACTIONS(831), }, [137] = { [sym_line_comment] = STATE(137), [sym_block_comment] = STATE(137), - [sym__expression] = STATE(2731), - [sym__expression_without_blocks] = STATE(1902), - [sym__expression_with_blocks] = STATE(2870), - [sym_inc_expression] = STATE(2032), - [sym_dec_expression] = STATE(2032), - [sym_or_block_expression] = STATE(2032), - [sym_option_propagation_expression] = STATE(2032), - [sym_result_propagation_expression] = STATE(2032), - [sym_anon_struct_value_expression] = STATE(2868), - [sym_go_expression] = STATE(2032), - [sym_spawn_expression] = STATE(2032), - [sym_parenthesized_expression] = STATE(2032), - [sym_call_expression] = STATE(2032), - [sym_type_initializer] = STATE(2868), - [sym_function_literal] = STATE(2032), - [sym_reference_expression] = STATE(1914), - [sym_type_reference_expression] = STATE(3541), - [sym_unary_expression] = STATE(2032), - [sym_receive_expression] = STATE(2032), - [sym_binary_expression] = STATE(2032), - [sym_as_type_cast_expression] = STATE(2032), - [sym__max_group] = STATE(2032), - [sym_literal] = STATE(2027), - [sym_map_init_expression] = STATE(2868), - [sym_array_creation] = STATE(2032), - [sym_fixed_array_creation] = STATE(2032), - [sym_selector_expression] = STATE(2032), - [sym_index_expression] = STATE(2032), - [sym_slice_expression] = STATE(2032), - [sym_if_expression] = STATE(2868), - [sym_compile_time_if_expression] = STATE(2868), - [sym_is_expression] = STATE(2032), - [sym_in_expression] = STATE(2032), - [sym_enum_fetch] = STATE(2032), - [sym_match_expression] = STATE(2868), - [sym_select_expression] = STATE(2868), - [sym_select_arm] = STATE(2139), - [sym_select_arm_statement] = STATE(4161), - [sym_select_var_declaration] = STATE(4478), - [sym_select_else_arn_clause] = STATE(4567), - [sym_lock_expression] = STATE(2868), - [sym_unsafe_expression] = STATE(2868), - [sym_sql_expression] = STATE(2868), - [sym_c_string_literal] = STATE(2026), - [sym_raw_string_literal] = STATE(2026), - [sym_interpreted_string_literal] = STATE(2026), - [sym_mutability_modifiers] = STATE(635), - [sym_mutable_identifier] = STATE(3928), - [sym_identifier_list] = STATE(4484), + [sym__expression] = STATE(2780), + [sym__expression_without_blocks] = STATE(1903), + [sym__expression_with_blocks] = STATE(2882), + [sym_inc_expression] = STATE(2035), + [sym_dec_expression] = STATE(2035), + [sym_or_block_expression] = STATE(2035), + [sym_option_propagation_expression] = STATE(2035), + [sym_result_propagation_expression] = STATE(2035), + [sym_anon_struct_value_expression] = STATE(2877), + [sym_go_expression] = STATE(2035), + [sym_spawn_expression] = STATE(2035), + [sym_parenthesized_expression] = STATE(2035), + [sym_call_expression] = STATE(2035), + [sym_type_initializer] = STATE(2877), + [sym_function_literal] = STATE(2035), + [sym_reference_expression] = STATE(1944), + [sym_type_reference_expression] = STATE(3460), + [sym_unary_expression] = STATE(2035), + [sym_receive_expression] = STATE(2035), + [sym_binary_expression] = STATE(2035), + [sym_as_type_cast_expression] = STATE(2035), + [sym__max_group] = STATE(2035), + [sym_literal] = STATE(2030), + [sym_map_init_expression] = STATE(2877), + [sym_array_creation] = STATE(2035), + [sym_fixed_array_creation] = STATE(2035), + [sym_selector_expression] = STATE(2035), + [sym_index_expression] = STATE(2035), + [sym_slice_expression] = STATE(2035), + [sym_if_expression] = STATE(2877), + [sym_compile_time_if_expression] = STATE(2877), + [sym_is_expression] = STATE(2035), + [sym_in_expression] = STATE(2035), + [sym_enum_fetch] = STATE(2035), + [sym_match_expression] = STATE(2877), + [sym_select_expression] = STATE(2877), + [sym_select_arm] = STATE(2140), + [sym_select_arm_statement] = STATE(4150), + [sym_select_var_declaration] = STATE(4507), + [sym_select_else_arn_clause] = STATE(4320), + [sym_lock_expression] = STATE(2877), + [sym_unsafe_expression] = STATE(2877), + [sym_sql_expression] = STATE(2877), + [sym_c_string_literal] = STATE(2029), + [sym_raw_string_literal] = STATE(2029), + [sym_interpreted_string_literal] = STATE(2029), + [sym_mutability_modifiers] = STATE(641), + [sym_mutable_identifier] = STATE(3847), + [sym_identifier_list] = STATE(4511), [sym_expression_without_blocks_list] = STATE(3279), - [sym_plain_type] = STATE(4094), - [sym__plain_type_without_special] = STATE(2302), - [sym_anon_struct_type] = STATE(2303), - [sym_multi_return_type] = STATE(2302), - [sym_result_type] = STATE(2302), - [sym_option_type] = STATE(2302), - [sym_qualified_type] = STATE(3541), - [sym_fixed_array_type] = STATE(2303), - [sym_array_type] = STATE(2303), - [sym_pointer_type] = STATE(2303), - [sym_wrong_pointer_type] = STATE(2303), - [sym_map_type] = STATE(2303), - [sym_channel_type] = STATE(2303), - [sym_shared_type] = STATE(2303), - [sym_thread_type] = STATE(2303), - [sym_atomic_type] = STATE(2303), - [sym_generic_type] = STATE(2303), - [sym_function_type] = STATE(2303), - [sym_send_statement] = STATE(4478), + [sym_plain_type] = STATE(4297), + [sym__plain_type_without_special] = STATE(2360), + [sym_anon_struct_type] = STATE(2362), + [sym_multi_return_type] = STATE(2360), + [sym_result_type] = STATE(2360), + [sym_option_type] = STATE(2360), + [sym_qualified_type] = STATE(3460), + [sym_fixed_array_type] = STATE(2362), + [sym_array_type] = STATE(2362), + [sym_pointer_type] = STATE(2362), + [sym_wrong_pointer_type] = STATE(2362), + [sym_map_type] = STATE(2362), + [sym_channel_type] = STATE(2362), + [sym_shared_type] = STATE(2362), + [sym_thread_type] = STATE(2362), + [sym_atomic_type] = STATE(2362), + [sym_generic_type] = STATE(2362), + [sym_function_type] = STATE(2362), + [sym_send_statement] = STATE(4507), [aux_sym_select_expression_repeat1] = STATE(149), - [sym_identifier] = ACTIONS(701), + [sym_identifier] = ACTIONS(767), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(703), - [anon_sym_LBRACE] = ACTIONS(705), + [anon_sym_DOT] = ACTIONS(769), + [anon_sym_LBRACE] = ACTIONS(771), [anon_sym_RBRACE] = ACTIONS(929), - [anon_sym_LPAREN] = ACTIONS(709), - [anon_sym_fn] = ACTIONS(711), - [anon_sym_PLUS] = ACTIONS(713), - [anon_sym_DASH] = ACTIONS(713), - [anon_sym_STAR] = ACTIONS(715), - [anon_sym_struct] = ACTIONS(717), + [anon_sym_LPAREN] = ACTIONS(775), + [anon_sym_fn] = ACTIONS(777), + [anon_sym_PLUS] = ACTIONS(779), + [anon_sym_DASH] = ACTIONS(779), + [anon_sym_STAR] = ACTIONS(781), + [anon_sym_struct] = ACTIONS(783), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(719), - [anon_sym_go] = ACTIONS(721), - [anon_sym_spawn] = ACTIONS(723), - [anon_sym_json_DOTdecode] = ACTIONS(725), - [anon_sym_LBRACK2] = ACTIONS(727), - [anon_sym_TILDE] = ACTIONS(713), - [anon_sym_CARET] = ACTIONS(713), - [anon_sym_AMP] = ACTIONS(729), - [anon_sym_LT_DASH] = ACTIONS(731), - [sym_none] = ACTIONS(733), - [sym_true] = ACTIONS(733), - [sym_false] = ACTIONS(733), - [sym_nil] = ACTIONS(733), - [anon_sym_if] = ACTIONS(735), - [anon_sym_else] = ACTIONS(737), - [anon_sym_DOLLARif] = ACTIONS(739), - [anon_sym_match] = ACTIONS(741), - [anon_sym_select] = ACTIONS(743), - [anon_sym_lock] = ACTIONS(745), - [anon_sym_rlock] = ACTIONS(745), - [anon_sym_unsafe] = ACTIONS(747), - [anon_sym_sql] = ACTIONS(749), - [sym_int_literal] = ACTIONS(733), - [sym_float_literal] = ACTIONS(751), - [sym_rune_literal] = ACTIONS(751), - [sym_pseudo_compile_time_identifier] = ACTIONS(753), + [anon_sym_BANG] = ACTIONS(785), + [anon_sym_go] = ACTIONS(787), + [anon_sym_spawn] = ACTIONS(789), + [anon_sym_json_DOTdecode] = ACTIONS(791), + [anon_sym_LBRACK2] = ACTIONS(793), + [anon_sym_TILDE] = ACTIONS(779), + [anon_sym_CARET] = ACTIONS(779), + [anon_sym_AMP] = ACTIONS(795), + [anon_sym_LT_DASH] = ACTIONS(797), + [sym_none] = ACTIONS(799), + [sym_true] = ACTIONS(799), + [sym_false] = ACTIONS(799), + [sym_nil] = ACTIONS(799), + [anon_sym_if] = ACTIONS(801), + [anon_sym_else] = ACTIONS(803), + [anon_sym_DOLLARif] = ACTIONS(805), + [anon_sym_match] = ACTIONS(807), + [anon_sym_select] = ACTIONS(809), + [anon_sym_lock] = ACTIONS(811), + [anon_sym_rlock] = ACTIONS(811), + [anon_sym_unsafe] = ACTIONS(813), + [anon_sym_sql] = ACTIONS(815), + [sym_int_literal] = ACTIONS(799), + [sym_float_literal] = ACTIONS(817), + [sym_rune_literal] = ACTIONS(817), + [sym_pseudo_compile_time_identifier] = ACTIONS(819), [anon_sym_shared] = ACTIONS(83), [anon_sym_map_LBRACK] = ACTIONS(85), [anon_sym_chan] = ACTIONS(87), [anon_sym_thread] = ACTIONS(89), [anon_sym_atomic] = ACTIONS(91), - [sym___double_quote] = ACTIONS(755), - [sym___single_quote] = ACTIONS(757), - [sym___c_double_quote] = ACTIONS(759), - [sym___c_single_quote] = ACTIONS(761), - [sym___r_double_quote] = ACTIONS(763), - [sym___r_single_quote] = ACTIONS(765), + [sym___double_quote] = ACTIONS(821), + [sym___single_quote] = ACTIONS(823), + [sym___c_double_quote] = ACTIONS(825), + [sym___c_single_quote] = ACTIONS(827), + [sym___r_double_quote] = ACTIONS(829), + [sym___r_single_quote] = ACTIONS(831), }, [138] = { [sym_line_comment] = STATE(138), [sym_block_comment] = STATE(138), - [sym__expression] = STATE(2731), - [sym__expression_without_blocks] = STATE(1902), - [sym__expression_with_blocks] = STATE(2870), - [sym_inc_expression] = STATE(2032), - [sym_dec_expression] = STATE(2032), - [sym_or_block_expression] = STATE(2032), - [sym_option_propagation_expression] = STATE(2032), - [sym_result_propagation_expression] = STATE(2032), - [sym_anon_struct_value_expression] = STATE(2868), - [sym_go_expression] = STATE(2032), - [sym_spawn_expression] = STATE(2032), - [sym_parenthesized_expression] = STATE(2032), - [sym_call_expression] = STATE(2032), - [sym_type_initializer] = STATE(2868), - [sym_function_literal] = STATE(2032), - [sym_reference_expression] = STATE(1914), - [sym_type_reference_expression] = STATE(3541), - [sym_unary_expression] = STATE(2032), - [sym_receive_expression] = STATE(2032), - [sym_binary_expression] = STATE(2032), - [sym_as_type_cast_expression] = STATE(2032), - [sym__max_group] = STATE(2032), - [sym_literal] = STATE(2027), - [sym_map_init_expression] = STATE(2868), - [sym_array_creation] = STATE(2032), - [sym_fixed_array_creation] = STATE(2032), - [sym_selector_expression] = STATE(2032), - [sym_index_expression] = STATE(2032), - [sym_slice_expression] = STATE(2032), - [sym_if_expression] = STATE(2868), - [sym_compile_time_if_expression] = STATE(2868), - [sym_is_expression] = STATE(2032), - [sym_in_expression] = STATE(2032), - [sym_enum_fetch] = STATE(2032), - [sym_match_expression] = STATE(2868), - [sym_select_expression] = STATE(2868), - [sym_select_arm] = STATE(2139), - [sym_select_arm_statement] = STATE(4161), - [sym_select_var_declaration] = STATE(4478), - [sym_select_else_arn_clause] = STATE(4619), - [sym_lock_expression] = STATE(2868), - [sym_unsafe_expression] = STATE(2868), - [sym_sql_expression] = STATE(2868), - [sym_c_string_literal] = STATE(2026), - [sym_raw_string_literal] = STATE(2026), - [sym_interpreted_string_literal] = STATE(2026), - [sym_mutability_modifiers] = STATE(635), - [sym_mutable_identifier] = STATE(3928), - [sym_identifier_list] = STATE(4484), + [sym__expression] = STATE(2780), + [sym__expression_without_blocks] = STATE(1903), + [sym__expression_with_blocks] = STATE(2882), + [sym_inc_expression] = STATE(2035), + [sym_dec_expression] = STATE(2035), + [sym_or_block_expression] = STATE(2035), + [sym_option_propagation_expression] = STATE(2035), + [sym_result_propagation_expression] = STATE(2035), + [sym_anon_struct_value_expression] = STATE(2877), + [sym_go_expression] = STATE(2035), + [sym_spawn_expression] = STATE(2035), + [sym_parenthesized_expression] = STATE(2035), + [sym_call_expression] = STATE(2035), + [sym_type_initializer] = STATE(2877), + [sym_function_literal] = STATE(2035), + [sym_reference_expression] = STATE(1944), + [sym_type_reference_expression] = STATE(3460), + [sym_unary_expression] = STATE(2035), + [sym_receive_expression] = STATE(2035), + [sym_binary_expression] = STATE(2035), + [sym_as_type_cast_expression] = STATE(2035), + [sym__max_group] = STATE(2035), + [sym_literal] = STATE(2030), + [sym_map_init_expression] = STATE(2877), + [sym_array_creation] = STATE(2035), + [sym_fixed_array_creation] = STATE(2035), + [sym_selector_expression] = STATE(2035), + [sym_index_expression] = STATE(2035), + [sym_slice_expression] = STATE(2035), + [sym_if_expression] = STATE(2877), + [sym_compile_time_if_expression] = STATE(2877), + [sym_is_expression] = STATE(2035), + [sym_in_expression] = STATE(2035), + [sym_enum_fetch] = STATE(2035), + [sym_match_expression] = STATE(2877), + [sym_select_expression] = STATE(2877), + [sym_select_arm] = STATE(2140), + [sym_select_arm_statement] = STATE(4150), + [sym_select_var_declaration] = STATE(4507), + [sym_select_else_arn_clause] = STATE(4605), + [sym_lock_expression] = STATE(2877), + [sym_unsafe_expression] = STATE(2877), + [sym_sql_expression] = STATE(2877), + [sym_c_string_literal] = STATE(2029), + [sym_raw_string_literal] = STATE(2029), + [sym_interpreted_string_literal] = STATE(2029), + [sym_mutability_modifiers] = STATE(641), + [sym_mutable_identifier] = STATE(3847), + [sym_identifier_list] = STATE(4511), [sym_expression_without_blocks_list] = STATE(3279), - [sym_plain_type] = STATE(4094), - [sym__plain_type_without_special] = STATE(2302), - [sym_anon_struct_type] = STATE(2303), - [sym_multi_return_type] = STATE(2302), - [sym_result_type] = STATE(2302), - [sym_option_type] = STATE(2302), - [sym_qualified_type] = STATE(3541), - [sym_fixed_array_type] = STATE(2303), - [sym_array_type] = STATE(2303), - [sym_pointer_type] = STATE(2303), - [sym_wrong_pointer_type] = STATE(2303), - [sym_map_type] = STATE(2303), - [sym_channel_type] = STATE(2303), - [sym_shared_type] = STATE(2303), - [sym_thread_type] = STATE(2303), - [sym_atomic_type] = STATE(2303), - [sym_generic_type] = STATE(2303), - [sym_function_type] = STATE(2303), - [sym_send_statement] = STATE(4478), - [aux_sym_select_expression_repeat1] = STATE(147), - [sym_identifier] = ACTIONS(701), + [sym_plain_type] = STATE(4297), + [sym__plain_type_without_special] = STATE(2360), + [sym_anon_struct_type] = STATE(2362), + [sym_multi_return_type] = STATE(2360), + [sym_result_type] = STATE(2360), + [sym_option_type] = STATE(2360), + [sym_qualified_type] = STATE(3460), + [sym_fixed_array_type] = STATE(2362), + [sym_array_type] = STATE(2362), + [sym_pointer_type] = STATE(2362), + [sym_wrong_pointer_type] = STATE(2362), + [sym_map_type] = STATE(2362), + [sym_channel_type] = STATE(2362), + [sym_shared_type] = STATE(2362), + [sym_thread_type] = STATE(2362), + [sym_atomic_type] = STATE(2362), + [sym_generic_type] = STATE(2362), + [sym_function_type] = STATE(2362), + [sym_send_statement] = STATE(4507), + [aux_sym_select_expression_repeat1] = STATE(149), + [sym_identifier] = ACTIONS(767), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(703), - [anon_sym_LBRACE] = ACTIONS(705), + [anon_sym_DOT] = ACTIONS(769), + [anon_sym_LBRACE] = ACTIONS(771), [anon_sym_RBRACE] = ACTIONS(931), - [anon_sym_LPAREN] = ACTIONS(709), - [anon_sym_fn] = ACTIONS(711), - [anon_sym_PLUS] = ACTIONS(713), - [anon_sym_DASH] = ACTIONS(713), - [anon_sym_STAR] = ACTIONS(715), - [anon_sym_struct] = ACTIONS(717), + [anon_sym_LPAREN] = ACTIONS(775), + [anon_sym_fn] = ACTIONS(777), + [anon_sym_PLUS] = ACTIONS(779), + [anon_sym_DASH] = ACTIONS(779), + [anon_sym_STAR] = ACTIONS(781), + [anon_sym_struct] = ACTIONS(783), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(719), - [anon_sym_go] = ACTIONS(721), - [anon_sym_spawn] = ACTIONS(723), - [anon_sym_json_DOTdecode] = ACTIONS(725), - [anon_sym_LBRACK2] = ACTIONS(727), - [anon_sym_TILDE] = ACTIONS(713), - [anon_sym_CARET] = ACTIONS(713), - [anon_sym_AMP] = ACTIONS(729), - [anon_sym_LT_DASH] = ACTIONS(731), - [sym_none] = ACTIONS(733), - [sym_true] = ACTIONS(733), - [sym_false] = ACTIONS(733), - [sym_nil] = ACTIONS(733), - [anon_sym_if] = ACTIONS(735), - [anon_sym_else] = ACTIONS(737), - [anon_sym_DOLLARif] = ACTIONS(739), - [anon_sym_match] = ACTIONS(741), - [anon_sym_select] = ACTIONS(743), - [anon_sym_lock] = ACTIONS(745), - [anon_sym_rlock] = ACTIONS(745), - [anon_sym_unsafe] = ACTIONS(747), - [anon_sym_sql] = ACTIONS(749), - [sym_int_literal] = ACTIONS(733), - [sym_float_literal] = ACTIONS(751), - [sym_rune_literal] = ACTIONS(751), - [sym_pseudo_compile_time_identifier] = ACTIONS(753), + [anon_sym_BANG] = ACTIONS(785), + [anon_sym_go] = ACTIONS(787), + [anon_sym_spawn] = ACTIONS(789), + [anon_sym_json_DOTdecode] = ACTIONS(791), + [anon_sym_LBRACK2] = ACTIONS(793), + [anon_sym_TILDE] = ACTIONS(779), + [anon_sym_CARET] = ACTIONS(779), + [anon_sym_AMP] = ACTIONS(795), + [anon_sym_LT_DASH] = ACTIONS(797), + [sym_none] = ACTIONS(799), + [sym_true] = ACTIONS(799), + [sym_false] = ACTIONS(799), + [sym_nil] = ACTIONS(799), + [anon_sym_if] = ACTIONS(801), + [anon_sym_else] = ACTIONS(803), + [anon_sym_DOLLARif] = ACTIONS(805), + [anon_sym_match] = ACTIONS(807), + [anon_sym_select] = ACTIONS(809), + [anon_sym_lock] = ACTIONS(811), + [anon_sym_rlock] = ACTIONS(811), + [anon_sym_unsafe] = ACTIONS(813), + [anon_sym_sql] = ACTIONS(815), + [sym_int_literal] = ACTIONS(799), + [sym_float_literal] = ACTIONS(817), + [sym_rune_literal] = ACTIONS(817), + [sym_pseudo_compile_time_identifier] = ACTIONS(819), [anon_sym_shared] = ACTIONS(83), [anon_sym_map_LBRACK] = ACTIONS(85), [anon_sym_chan] = ACTIONS(87), [anon_sym_thread] = ACTIONS(89), [anon_sym_atomic] = ACTIONS(91), - [sym___double_quote] = ACTIONS(755), - [sym___single_quote] = ACTIONS(757), - [sym___c_double_quote] = ACTIONS(759), - [sym___c_single_quote] = ACTIONS(761), - [sym___r_double_quote] = ACTIONS(763), - [sym___r_single_quote] = ACTIONS(765), + [sym___double_quote] = ACTIONS(821), + [sym___single_quote] = ACTIONS(823), + [sym___c_double_quote] = ACTIONS(825), + [sym___c_single_quote] = ACTIONS(827), + [sym___r_double_quote] = ACTIONS(829), + [sym___r_single_quote] = ACTIONS(831), }, [139] = { [sym_line_comment] = STATE(139), [sym_block_comment] = STATE(139), - [sym__expression] = STATE(2731), - [sym__expression_without_blocks] = STATE(1902), - [sym__expression_with_blocks] = STATE(2870), - [sym_inc_expression] = STATE(2032), - [sym_dec_expression] = STATE(2032), - [sym_or_block_expression] = STATE(2032), - [sym_option_propagation_expression] = STATE(2032), - [sym_result_propagation_expression] = STATE(2032), - [sym_anon_struct_value_expression] = STATE(2868), - [sym_go_expression] = STATE(2032), - [sym_spawn_expression] = STATE(2032), - [sym_parenthesized_expression] = STATE(2032), - [sym_call_expression] = STATE(2032), - [sym_type_initializer] = STATE(2868), - [sym_function_literal] = STATE(2032), - [sym_reference_expression] = STATE(1914), - [sym_type_reference_expression] = STATE(3541), - [sym_unary_expression] = STATE(2032), - [sym_receive_expression] = STATE(2032), - [sym_binary_expression] = STATE(2032), - [sym_as_type_cast_expression] = STATE(2032), - [sym__max_group] = STATE(2032), - [sym_literal] = STATE(2027), - [sym_map_init_expression] = STATE(2868), - [sym_array_creation] = STATE(2032), - [sym_fixed_array_creation] = STATE(2032), - [sym_selector_expression] = STATE(2032), - [sym_index_expression] = STATE(2032), - [sym_slice_expression] = STATE(2032), - [sym_if_expression] = STATE(2868), - [sym_compile_time_if_expression] = STATE(2868), - [sym_is_expression] = STATE(2032), - [sym_in_expression] = STATE(2032), - [sym_enum_fetch] = STATE(2032), - [sym_match_expression] = STATE(2868), - [sym_select_expression] = STATE(2868), - [sym_select_arm] = STATE(2139), - [sym_select_arm_statement] = STATE(4161), - [sym_select_var_declaration] = STATE(4478), - [sym_select_else_arn_clause] = STATE(4429), - [sym_lock_expression] = STATE(2868), - [sym_unsafe_expression] = STATE(2868), - [sym_sql_expression] = STATE(2868), - [sym_c_string_literal] = STATE(2026), - [sym_raw_string_literal] = STATE(2026), - [sym_interpreted_string_literal] = STATE(2026), - [sym_mutability_modifiers] = STATE(635), - [sym_mutable_identifier] = STATE(3928), - [sym_identifier_list] = STATE(4484), + [sym__expression] = STATE(2780), + [sym__expression_without_blocks] = STATE(1903), + [sym__expression_with_blocks] = STATE(2882), + [sym_inc_expression] = STATE(2035), + [sym_dec_expression] = STATE(2035), + [sym_or_block_expression] = STATE(2035), + [sym_option_propagation_expression] = STATE(2035), + [sym_result_propagation_expression] = STATE(2035), + [sym_anon_struct_value_expression] = STATE(2877), + [sym_go_expression] = STATE(2035), + [sym_spawn_expression] = STATE(2035), + [sym_parenthesized_expression] = STATE(2035), + [sym_call_expression] = STATE(2035), + [sym_type_initializer] = STATE(2877), + [sym_function_literal] = STATE(2035), + [sym_reference_expression] = STATE(1944), + [sym_type_reference_expression] = STATE(3460), + [sym_unary_expression] = STATE(2035), + [sym_receive_expression] = STATE(2035), + [sym_binary_expression] = STATE(2035), + [sym_as_type_cast_expression] = STATE(2035), + [sym__max_group] = STATE(2035), + [sym_literal] = STATE(2030), + [sym_map_init_expression] = STATE(2877), + [sym_array_creation] = STATE(2035), + [sym_fixed_array_creation] = STATE(2035), + [sym_selector_expression] = STATE(2035), + [sym_index_expression] = STATE(2035), + [sym_slice_expression] = STATE(2035), + [sym_if_expression] = STATE(2877), + [sym_compile_time_if_expression] = STATE(2877), + [sym_is_expression] = STATE(2035), + [sym_in_expression] = STATE(2035), + [sym_enum_fetch] = STATE(2035), + [sym_match_expression] = STATE(2877), + [sym_select_expression] = STATE(2877), + [sym_select_arm] = STATE(2140), + [sym_select_arm_statement] = STATE(4150), + [sym_select_var_declaration] = STATE(4507), + [sym_select_else_arn_clause] = STATE(4585), + [sym_lock_expression] = STATE(2877), + [sym_unsafe_expression] = STATE(2877), + [sym_sql_expression] = STATE(2877), + [sym_c_string_literal] = STATE(2029), + [sym_raw_string_literal] = STATE(2029), + [sym_interpreted_string_literal] = STATE(2029), + [sym_mutability_modifiers] = STATE(641), + [sym_mutable_identifier] = STATE(3847), + [sym_identifier_list] = STATE(4511), [sym_expression_without_blocks_list] = STATE(3279), - [sym_plain_type] = STATE(4094), - [sym__plain_type_without_special] = STATE(2302), - [sym_anon_struct_type] = STATE(2303), - [sym_multi_return_type] = STATE(2302), - [sym_result_type] = STATE(2302), - [sym_option_type] = STATE(2302), - [sym_qualified_type] = STATE(3541), - [sym_fixed_array_type] = STATE(2303), - [sym_array_type] = STATE(2303), - [sym_pointer_type] = STATE(2303), - [sym_wrong_pointer_type] = STATE(2303), - [sym_map_type] = STATE(2303), - [sym_channel_type] = STATE(2303), - [sym_shared_type] = STATE(2303), - [sym_thread_type] = STATE(2303), - [sym_atomic_type] = STATE(2303), - [sym_generic_type] = STATE(2303), - [sym_function_type] = STATE(2303), - [sym_send_statement] = STATE(4478), - [aux_sym_select_expression_repeat1] = STATE(115), - [sym_identifier] = ACTIONS(701), + [sym_plain_type] = STATE(4297), + [sym__plain_type_without_special] = STATE(2360), + [sym_anon_struct_type] = STATE(2362), + [sym_multi_return_type] = STATE(2360), + [sym_result_type] = STATE(2360), + [sym_option_type] = STATE(2360), + [sym_qualified_type] = STATE(3460), + [sym_fixed_array_type] = STATE(2362), + [sym_array_type] = STATE(2362), + [sym_pointer_type] = STATE(2362), + [sym_wrong_pointer_type] = STATE(2362), + [sym_map_type] = STATE(2362), + [sym_channel_type] = STATE(2362), + [sym_shared_type] = STATE(2362), + [sym_thread_type] = STATE(2362), + [sym_atomic_type] = STATE(2362), + [sym_generic_type] = STATE(2362), + [sym_function_type] = STATE(2362), + [sym_send_statement] = STATE(4507), + [aux_sym_select_expression_repeat1] = STATE(142), + [sym_identifier] = ACTIONS(767), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(703), - [anon_sym_LBRACE] = ACTIONS(705), + [anon_sym_DOT] = ACTIONS(769), + [anon_sym_LBRACE] = ACTIONS(771), [anon_sym_RBRACE] = ACTIONS(933), - [anon_sym_LPAREN] = ACTIONS(709), - [anon_sym_fn] = ACTIONS(711), - [anon_sym_PLUS] = ACTIONS(713), - [anon_sym_DASH] = ACTIONS(713), - [anon_sym_STAR] = ACTIONS(715), - [anon_sym_struct] = ACTIONS(717), + [anon_sym_LPAREN] = ACTIONS(775), + [anon_sym_fn] = ACTIONS(777), + [anon_sym_PLUS] = ACTIONS(779), + [anon_sym_DASH] = ACTIONS(779), + [anon_sym_STAR] = ACTIONS(781), + [anon_sym_struct] = ACTIONS(783), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(719), - [anon_sym_go] = ACTIONS(721), - [anon_sym_spawn] = ACTIONS(723), - [anon_sym_json_DOTdecode] = ACTIONS(725), - [anon_sym_LBRACK2] = ACTIONS(727), - [anon_sym_TILDE] = ACTIONS(713), - [anon_sym_CARET] = ACTIONS(713), - [anon_sym_AMP] = ACTIONS(729), - [anon_sym_LT_DASH] = ACTIONS(731), - [sym_none] = ACTIONS(733), - [sym_true] = ACTIONS(733), - [sym_false] = ACTIONS(733), - [sym_nil] = ACTIONS(733), - [anon_sym_if] = ACTIONS(735), - [anon_sym_else] = ACTIONS(737), - [anon_sym_DOLLARif] = ACTIONS(739), - [anon_sym_match] = ACTIONS(741), - [anon_sym_select] = ACTIONS(743), - [anon_sym_lock] = ACTIONS(745), - [anon_sym_rlock] = ACTIONS(745), - [anon_sym_unsafe] = ACTIONS(747), - [anon_sym_sql] = ACTIONS(749), - [sym_int_literal] = ACTIONS(733), - [sym_float_literal] = ACTIONS(751), - [sym_rune_literal] = ACTIONS(751), - [sym_pseudo_compile_time_identifier] = ACTIONS(753), + [anon_sym_BANG] = ACTIONS(785), + [anon_sym_go] = ACTIONS(787), + [anon_sym_spawn] = ACTIONS(789), + [anon_sym_json_DOTdecode] = ACTIONS(791), + [anon_sym_LBRACK2] = ACTIONS(793), + [anon_sym_TILDE] = ACTIONS(779), + [anon_sym_CARET] = ACTIONS(779), + [anon_sym_AMP] = ACTIONS(795), + [anon_sym_LT_DASH] = ACTIONS(797), + [sym_none] = ACTIONS(799), + [sym_true] = ACTIONS(799), + [sym_false] = ACTIONS(799), + [sym_nil] = ACTIONS(799), + [anon_sym_if] = ACTIONS(801), + [anon_sym_else] = ACTIONS(803), + [anon_sym_DOLLARif] = ACTIONS(805), + [anon_sym_match] = ACTIONS(807), + [anon_sym_select] = ACTIONS(809), + [anon_sym_lock] = ACTIONS(811), + [anon_sym_rlock] = ACTIONS(811), + [anon_sym_unsafe] = ACTIONS(813), + [anon_sym_sql] = ACTIONS(815), + [sym_int_literal] = ACTIONS(799), + [sym_float_literal] = ACTIONS(817), + [sym_rune_literal] = ACTIONS(817), + [sym_pseudo_compile_time_identifier] = ACTIONS(819), [anon_sym_shared] = ACTIONS(83), [anon_sym_map_LBRACK] = ACTIONS(85), [anon_sym_chan] = ACTIONS(87), [anon_sym_thread] = ACTIONS(89), [anon_sym_atomic] = ACTIONS(91), - [sym___double_quote] = ACTIONS(755), - [sym___single_quote] = ACTIONS(757), - [sym___c_double_quote] = ACTIONS(759), - [sym___c_single_quote] = ACTIONS(761), - [sym___r_double_quote] = ACTIONS(763), - [sym___r_single_quote] = ACTIONS(765), + [sym___double_quote] = ACTIONS(821), + [sym___single_quote] = ACTIONS(823), + [sym___c_double_quote] = ACTIONS(825), + [sym___c_single_quote] = ACTIONS(827), + [sym___r_double_quote] = ACTIONS(829), + [sym___r_single_quote] = ACTIONS(831), }, [140] = { [sym_line_comment] = STATE(140), [sym_block_comment] = STATE(140), - [sym__expression] = STATE(2731), - [sym__expression_without_blocks] = STATE(1902), - [sym__expression_with_blocks] = STATE(2870), - [sym_inc_expression] = STATE(2032), - [sym_dec_expression] = STATE(2032), - [sym_or_block_expression] = STATE(2032), - [sym_option_propagation_expression] = STATE(2032), - [sym_result_propagation_expression] = STATE(2032), - [sym_anon_struct_value_expression] = STATE(2868), - [sym_go_expression] = STATE(2032), - [sym_spawn_expression] = STATE(2032), - [sym_parenthesized_expression] = STATE(2032), - [sym_call_expression] = STATE(2032), - [sym_type_initializer] = STATE(2868), - [sym_function_literal] = STATE(2032), - [sym_reference_expression] = STATE(1914), - [sym_type_reference_expression] = STATE(3541), - [sym_unary_expression] = STATE(2032), - [sym_receive_expression] = STATE(2032), - [sym_binary_expression] = STATE(2032), - [sym_as_type_cast_expression] = STATE(2032), - [sym__max_group] = STATE(2032), - [sym_literal] = STATE(2027), - [sym_map_init_expression] = STATE(2868), - [sym_array_creation] = STATE(2032), - [sym_fixed_array_creation] = STATE(2032), - [sym_selector_expression] = STATE(2032), - [sym_index_expression] = STATE(2032), - [sym_slice_expression] = STATE(2032), - [sym_if_expression] = STATE(2868), - [sym_compile_time_if_expression] = STATE(2868), - [sym_is_expression] = STATE(2032), - [sym_in_expression] = STATE(2032), - [sym_enum_fetch] = STATE(2032), - [sym_match_expression] = STATE(2868), - [sym_select_expression] = STATE(2868), - [sym_select_arm] = STATE(2139), - [sym_select_arm_statement] = STATE(4161), - [sym_select_var_declaration] = STATE(4478), - [sym_select_else_arn_clause] = STATE(4354), - [sym_lock_expression] = STATE(2868), - [sym_unsafe_expression] = STATE(2868), - [sym_sql_expression] = STATE(2868), - [sym_c_string_literal] = STATE(2026), - [sym_raw_string_literal] = STATE(2026), - [sym_interpreted_string_literal] = STATE(2026), - [sym_mutability_modifiers] = STATE(635), - [sym_mutable_identifier] = STATE(3928), - [sym_identifier_list] = STATE(4484), + [sym__expression] = STATE(2780), + [sym__expression_without_blocks] = STATE(1903), + [sym__expression_with_blocks] = STATE(2882), + [sym_inc_expression] = STATE(2035), + [sym_dec_expression] = STATE(2035), + [sym_or_block_expression] = STATE(2035), + [sym_option_propagation_expression] = STATE(2035), + [sym_result_propagation_expression] = STATE(2035), + [sym_anon_struct_value_expression] = STATE(2877), + [sym_go_expression] = STATE(2035), + [sym_spawn_expression] = STATE(2035), + [sym_parenthesized_expression] = STATE(2035), + [sym_call_expression] = STATE(2035), + [sym_type_initializer] = STATE(2877), + [sym_function_literal] = STATE(2035), + [sym_reference_expression] = STATE(1944), + [sym_type_reference_expression] = STATE(3460), + [sym_unary_expression] = STATE(2035), + [sym_receive_expression] = STATE(2035), + [sym_binary_expression] = STATE(2035), + [sym_as_type_cast_expression] = STATE(2035), + [sym__max_group] = STATE(2035), + [sym_literal] = STATE(2030), + [sym_map_init_expression] = STATE(2877), + [sym_array_creation] = STATE(2035), + [sym_fixed_array_creation] = STATE(2035), + [sym_selector_expression] = STATE(2035), + [sym_index_expression] = STATE(2035), + [sym_slice_expression] = STATE(2035), + [sym_if_expression] = STATE(2877), + [sym_compile_time_if_expression] = STATE(2877), + [sym_is_expression] = STATE(2035), + [sym_in_expression] = STATE(2035), + [sym_enum_fetch] = STATE(2035), + [sym_match_expression] = STATE(2877), + [sym_select_expression] = STATE(2877), + [sym_select_arm] = STATE(2140), + [sym_select_arm_statement] = STATE(4150), + [sym_select_var_declaration] = STATE(4507), + [sym_select_else_arn_clause] = STATE(4588), + [sym_lock_expression] = STATE(2877), + [sym_unsafe_expression] = STATE(2877), + [sym_sql_expression] = STATE(2877), + [sym_c_string_literal] = STATE(2029), + [sym_raw_string_literal] = STATE(2029), + [sym_interpreted_string_literal] = STATE(2029), + [sym_mutability_modifiers] = STATE(641), + [sym_mutable_identifier] = STATE(3847), + [sym_identifier_list] = STATE(4511), [sym_expression_without_blocks_list] = STATE(3279), - [sym_plain_type] = STATE(4094), - [sym__plain_type_without_special] = STATE(2302), - [sym_anon_struct_type] = STATE(2303), - [sym_multi_return_type] = STATE(2302), - [sym_result_type] = STATE(2302), - [sym_option_type] = STATE(2302), - [sym_qualified_type] = STATE(3541), - [sym_fixed_array_type] = STATE(2303), - [sym_array_type] = STATE(2303), - [sym_pointer_type] = STATE(2303), - [sym_wrong_pointer_type] = STATE(2303), - [sym_map_type] = STATE(2303), - [sym_channel_type] = STATE(2303), - [sym_shared_type] = STATE(2303), - [sym_thread_type] = STATE(2303), - [sym_atomic_type] = STATE(2303), - [sym_generic_type] = STATE(2303), - [sym_function_type] = STATE(2303), - [sym_send_statement] = STATE(4478), - [aux_sym_select_expression_repeat1] = STATE(149), - [sym_identifier] = ACTIONS(701), + [sym_plain_type] = STATE(4297), + [sym__plain_type_without_special] = STATE(2360), + [sym_anon_struct_type] = STATE(2362), + [sym_multi_return_type] = STATE(2360), + [sym_result_type] = STATE(2360), + [sym_option_type] = STATE(2360), + [sym_qualified_type] = STATE(3460), + [sym_fixed_array_type] = STATE(2362), + [sym_array_type] = STATE(2362), + [sym_pointer_type] = STATE(2362), + [sym_wrong_pointer_type] = STATE(2362), + [sym_map_type] = STATE(2362), + [sym_channel_type] = STATE(2362), + [sym_shared_type] = STATE(2362), + [sym_thread_type] = STATE(2362), + [sym_atomic_type] = STATE(2362), + [sym_generic_type] = STATE(2362), + [sym_function_type] = STATE(2362), + [sym_send_statement] = STATE(4507), + [aux_sym_select_expression_repeat1] = STATE(136), + [sym_identifier] = ACTIONS(767), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(703), - [anon_sym_LBRACE] = ACTIONS(705), + [anon_sym_DOT] = ACTIONS(769), + [anon_sym_LBRACE] = ACTIONS(771), [anon_sym_RBRACE] = ACTIONS(935), - [anon_sym_LPAREN] = ACTIONS(709), - [anon_sym_fn] = ACTIONS(711), - [anon_sym_PLUS] = ACTIONS(713), - [anon_sym_DASH] = ACTIONS(713), - [anon_sym_STAR] = ACTIONS(715), - [anon_sym_struct] = ACTIONS(717), + [anon_sym_LPAREN] = ACTIONS(775), + [anon_sym_fn] = ACTIONS(777), + [anon_sym_PLUS] = ACTIONS(779), + [anon_sym_DASH] = ACTIONS(779), + [anon_sym_STAR] = ACTIONS(781), + [anon_sym_struct] = ACTIONS(783), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(719), - [anon_sym_go] = ACTIONS(721), - [anon_sym_spawn] = ACTIONS(723), - [anon_sym_json_DOTdecode] = ACTIONS(725), - [anon_sym_LBRACK2] = ACTIONS(727), - [anon_sym_TILDE] = ACTIONS(713), - [anon_sym_CARET] = ACTIONS(713), - [anon_sym_AMP] = ACTIONS(729), - [anon_sym_LT_DASH] = ACTIONS(731), - [sym_none] = ACTIONS(733), - [sym_true] = ACTIONS(733), - [sym_false] = ACTIONS(733), - [sym_nil] = ACTIONS(733), - [anon_sym_if] = ACTIONS(735), - [anon_sym_else] = ACTIONS(737), - [anon_sym_DOLLARif] = ACTIONS(739), - [anon_sym_match] = ACTIONS(741), - [anon_sym_select] = ACTIONS(743), - [anon_sym_lock] = ACTIONS(745), - [anon_sym_rlock] = ACTIONS(745), - [anon_sym_unsafe] = ACTIONS(747), - [anon_sym_sql] = ACTIONS(749), - [sym_int_literal] = ACTIONS(733), - [sym_float_literal] = ACTIONS(751), - [sym_rune_literal] = ACTIONS(751), - [sym_pseudo_compile_time_identifier] = ACTIONS(753), + [anon_sym_BANG] = ACTIONS(785), + [anon_sym_go] = ACTIONS(787), + [anon_sym_spawn] = ACTIONS(789), + [anon_sym_json_DOTdecode] = ACTIONS(791), + [anon_sym_LBRACK2] = ACTIONS(793), + [anon_sym_TILDE] = ACTIONS(779), + [anon_sym_CARET] = ACTIONS(779), + [anon_sym_AMP] = ACTIONS(795), + [anon_sym_LT_DASH] = ACTIONS(797), + [sym_none] = ACTIONS(799), + [sym_true] = ACTIONS(799), + [sym_false] = ACTIONS(799), + [sym_nil] = ACTIONS(799), + [anon_sym_if] = ACTIONS(801), + [anon_sym_else] = ACTIONS(803), + [anon_sym_DOLLARif] = ACTIONS(805), + [anon_sym_match] = ACTIONS(807), + [anon_sym_select] = ACTIONS(809), + [anon_sym_lock] = ACTIONS(811), + [anon_sym_rlock] = ACTIONS(811), + [anon_sym_unsafe] = ACTIONS(813), + [anon_sym_sql] = ACTIONS(815), + [sym_int_literal] = ACTIONS(799), + [sym_float_literal] = ACTIONS(817), + [sym_rune_literal] = ACTIONS(817), + [sym_pseudo_compile_time_identifier] = ACTIONS(819), [anon_sym_shared] = ACTIONS(83), [anon_sym_map_LBRACK] = ACTIONS(85), [anon_sym_chan] = ACTIONS(87), [anon_sym_thread] = ACTIONS(89), [anon_sym_atomic] = ACTIONS(91), - [sym___double_quote] = ACTIONS(755), - [sym___single_quote] = ACTIONS(757), - [sym___c_double_quote] = ACTIONS(759), - [sym___c_single_quote] = ACTIONS(761), - [sym___r_double_quote] = ACTIONS(763), - [sym___r_single_quote] = ACTIONS(765), + [sym___double_quote] = ACTIONS(821), + [sym___single_quote] = ACTIONS(823), + [sym___c_double_quote] = ACTIONS(825), + [sym___c_single_quote] = ACTIONS(827), + [sym___r_double_quote] = ACTIONS(829), + [sym___r_single_quote] = ACTIONS(831), }, [141] = { [sym_line_comment] = STATE(141), [sym_block_comment] = STATE(141), - [sym__expression] = STATE(2731), - [sym__expression_without_blocks] = STATE(1902), - [sym__expression_with_blocks] = STATE(2870), - [sym_inc_expression] = STATE(2032), - [sym_dec_expression] = STATE(2032), - [sym_or_block_expression] = STATE(2032), - [sym_option_propagation_expression] = STATE(2032), - [sym_result_propagation_expression] = STATE(2032), - [sym_anon_struct_value_expression] = STATE(2868), - [sym_go_expression] = STATE(2032), - [sym_spawn_expression] = STATE(2032), - [sym_parenthesized_expression] = STATE(2032), - [sym_call_expression] = STATE(2032), - [sym_type_initializer] = STATE(2868), - [sym_function_literal] = STATE(2032), - [sym_reference_expression] = STATE(1914), - [sym_type_reference_expression] = STATE(3541), - [sym_unary_expression] = STATE(2032), - [sym_receive_expression] = STATE(2032), - [sym_binary_expression] = STATE(2032), - [sym_as_type_cast_expression] = STATE(2032), - [sym__max_group] = STATE(2032), - [sym_literal] = STATE(2027), - [sym_map_init_expression] = STATE(2868), - [sym_array_creation] = STATE(2032), - [sym_fixed_array_creation] = STATE(2032), - [sym_selector_expression] = STATE(2032), - [sym_index_expression] = STATE(2032), - [sym_slice_expression] = STATE(2032), - [sym_if_expression] = STATE(2868), - [sym_compile_time_if_expression] = STATE(2868), - [sym_is_expression] = STATE(2032), - [sym_in_expression] = STATE(2032), - [sym_enum_fetch] = STATE(2032), - [sym_match_expression] = STATE(2868), - [sym_select_expression] = STATE(2868), - [sym_select_arm] = STATE(2139), - [sym_select_arm_statement] = STATE(4161), - [sym_select_var_declaration] = STATE(4478), - [sym_select_else_arn_clause] = STATE(4545), - [sym_lock_expression] = STATE(2868), - [sym_unsafe_expression] = STATE(2868), - [sym_sql_expression] = STATE(2868), - [sym_c_string_literal] = STATE(2026), - [sym_raw_string_literal] = STATE(2026), - [sym_interpreted_string_literal] = STATE(2026), - [sym_mutability_modifiers] = STATE(635), - [sym_mutable_identifier] = STATE(3928), - [sym_identifier_list] = STATE(4484), + [sym__expression] = STATE(2780), + [sym__expression_without_blocks] = STATE(1903), + [sym__expression_with_blocks] = STATE(2882), + [sym_inc_expression] = STATE(2035), + [sym_dec_expression] = STATE(2035), + [sym_or_block_expression] = STATE(2035), + [sym_option_propagation_expression] = STATE(2035), + [sym_result_propagation_expression] = STATE(2035), + [sym_anon_struct_value_expression] = STATE(2877), + [sym_go_expression] = STATE(2035), + [sym_spawn_expression] = STATE(2035), + [sym_parenthesized_expression] = STATE(2035), + [sym_call_expression] = STATE(2035), + [sym_type_initializer] = STATE(2877), + [sym_function_literal] = STATE(2035), + [sym_reference_expression] = STATE(1944), + [sym_type_reference_expression] = STATE(3460), + [sym_unary_expression] = STATE(2035), + [sym_receive_expression] = STATE(2035), + [sym_binary_expression] = STATE(2035), + [sym_as_type_cast_expression] = STATE(2035), + [sym__max_group] = STATE(2035), + [sym_literal] = STATE(2030), + [sym_map_init_expression] = STATE(2877), + [sym_array_creation] = STATE(2035), + [sym_fixed_array_creation] = STATE(2035), + [sym_selector_expression] = STATE(2035), + [sym_index_expression] = STATE(2035), + [sym_slice_expression] = STATE(2035), + [sym_if_expression] = STATE(2877), + [sym_compile_time_if_expression] = STATE(2877), + [sym_is_expression] = STATE(2035), + [sym_in_expression] = STATE(2035), + [sym_enum_fetch] = STATE(2035), + [sym_match_expression] = STATE(2877), + [sym_select_expression] = STATE(2877), + [sym_select_arm] = STATE(2140), + [sym_select_arm_statement] = STATE(4150), + [sym_select_var_declaration] = STATE(4507), + [sym_select_else_arn_clause] = STATE(4589), + [sym_lock_expression] = STATE(2877), + [sym_unsafe_expression] = STATE(2877), + [sym_sql_expression] = STATE(2877), + [sym_c_string_literal] = STATE(2029), + [sym_raw_string_literal] = STATE(2029), + [sym_interpreted_string_literal] = STATE(2029), + [sym_mutability_modifiers] = STATE(641), + [sym_mutable_identifier] = STATE(3847), + [sym_identifier_list] = STATE(4511), [sym_expression_without_blocks_list] = STATE(3279), - [sym_plain_type] = STATE(4094), - [sym__plain_type_without_special] = STATE(2302), - [sym_anon_struct_type] = STATE(2303), - [sym_multi_return_type] = STATE(2302), - [sym_result_type] = STATE(2302), - [sym_option_type] = STATE(2302), - [sym_qualified_type] = STATE(3541), - [sym_fixed_array_type] = STATE(2303), - [sym_array_type] = STATE(2303), - [sym_pointer_type] = STATE(2303), - [sym_wrong_pointer_type] = STATE(2303), - [sym_map_type] = STATE(2303), - [sym_channel_type] = STATE(2303), - [sym_shared_type] = STATE(2303), - [sym_thread_type] = STATE(2303), - [sym_atomic_type] = STATE(2303), - [sym_generic_type] = STATE(2303), - [sym_function_type] = STATE(2303), - [sym_send_statement] = STATE(4478), + [sym_plain_type] = STATE(4297), + [sym__plain_type_without_special] = STATE(2360), + [sym_anon_struct_type] = STATE(2362), + [sym_multi_return_type] = STATE(2360), + [sym_result_type] = STATE(2360), + [sym_option_type] = STATE(2360), + [sym_qualified_type] = STATE(3460), + [sym_fixed_array_type] = STATE(2362), + [sym_array_type] = STATE(2362), + [sym_pointer_type] = STATE(2362), + [sym_wrong_pointer_type] = STATE(2362), + [sym_map_type] = STATE(2362), + [sym_channel_type] = STATE(2362), + [sym_shared_type] = STATE(2362), + [sym_thread_type] = STATE(2362), + [sym_atomic_type] = STATE(2362), + [sym_generic_type] = STATE(2362), + [sym_function_type] = STATE(2362), + [sym_send_statement] = STATE(4507), [aux_sym_select_expression_repeat1] = STATE(149), - [sym_identifier] = ACTIONS(701), + [sym_identifier] = ACTIONS(767), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(703), - [anon_sym_LBRACE] = ACTIONS(705), + [anon_sym_DOT] = ACTIONS(769), + [anon_sym_LBRACE] = ACTIONS(771), [anon_sym_RBRACE] = ACTIONS(937), - [anon_sym_LPAREN] = ACTIONS(709), - [anon_sym_fn] = ACTIONS(711), - [anon_sym_PLUS] = ACTIONS(713), - [anon_sym_DASH] = ACTIONS(713), - [anon_sym_STAR] = ACTIONS(715), - [anon_sym_struct] = ACTIONS(717), + [anon_sym_LPAREN] = ACTIONS(775), + [anon_sym_fn] = ACTIONS(777), + [anon_sym_PLUS] = ACTIONS(779), + [anon_sym_DASH] = ACTIONS(779), + [anon_sym_STAR] = ACTIONS(781), + [anon_sym_struct] = ACTIONS(783), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(719), - [anon_sym_go] = ACTIONS(721), - [anon_sym_spawn] = ACTIONS(723), - [anon_sym_json_DOTdecode] = ACTIONS(725), - [anon_sym_LBRACK2] = ACTIONS(727), - [anon_sym_TILDE] = ACTIONS(713), - [anon_sym_CARET] = ACTIONS(713), - [anon_sym_AMP] = ACTIONS(729), - [anon_sym_LT_DASH] = ACTIONS(731), - [sym_none] = ACTIONS(733), - [sym_true] = ACTIONS(733), - [sym_false] = ACTIONS(733), - [sym_nil] = ACTIONS(733), - [anon_sym_if] = ACTIONS(735), - [anon_sym_else] = ACTIONS(737), - [anon_sym_DOLLARif] = ACTIONS(739), - [anon_sym_match] = ACTIONS(741), - [anon_sym_select] = ACTIONS(743), - [anon_sym_lock] = ACTIONS(745), - [anon_sym_rlock] = ACTIONS(745), - [anon_sym_unsafe] = ACTIONS(747), - [anon_sym_sql] = ACTIONS(749), - [sym_int_literal] = ACTIONS(733), - [sym_float_literal] = ACTIONS(751), - [sym_rune_literal] = ACTIONS(751), - [sym_pseudo_compile_time_identifier] = ACTIONS(753), + [anon_sym_BANG] = ACTIONS(785), + [anon_sym_go] = ACTIONS(787), + [anon_sym_spawn] = ACTIONS(789), + [anon_sym_json_DOTdecode] = ACTIONS(791), + [anon_sym_LBRACK2] = ACTIONS(793), + [anon_sym_TILDE] = ACTIONS(779), + [anon_sym_CARET] = ACTIONS(779), + [anon_sym_AMP] = ACTIONS(795), + [anon_sym_LT_DASH] = ACTIONS(797), + [sym_none] = ACTIONS(799), + [sym_true] = ACTIONS(799), + [sym_false] = ACTIONS(799), + [sym_nil] = ACTIONS(799), + [anon_sym_if] = ACTIONS(801), + [anon_sym_else] = ACTIONS(803), + [anon_sym_DOLLARif] = ACTIONS(805), + [anon_sym_match] = ACTIONS(807), + [anon_sym_select] = ACTIONS(809), + [anon_sym_lock] = ACTIONS(811), + [anon_sym_rlock] = ACTIONS(811), + [anon_sym_unsafe] = ACTIONS(813), + [anon_sym_sql] = ACTIONS(815), + [sym_int_literal] = ACTIONS(799), + [sym_float_literal] = ACTIONS(817), + [sym_rune_literal] = ACTIONS(817), + [sym_pseudo_compile_time_identifier] = ACTIONS(819), [anon_sym_shared] = ACTIONS(83), [anon_sym_map_LBRACK] = ACTIONS(85), [anon_sym_chan] = ACTIONS(87), [anon_sym_thread] = ACTIONS(89), [anon_sym_atomic] = ACTIONS(91), - [sym___double_quote] = ACTIONS(755), - [sym___single_quote] = ACTIONS(757), - [sym___c_double_quote] = ACTIONS(759), - [sym___c_single_quote] = ACTIONS(761), - [sym___r_double_quote] = ACTIONS(763), - [sym___r_single_quote] = ACTIONS(765), + [sym___double_quote] = ACTIONS(821), + [sym___single_quote] = ACTIONS(823), + [sym___c_double_quote] = ACTIONS(825), + [sym___c_single_quote] = ACTIONS(827), + [sym___r_double_quote] = ACTIONS(829), + [sym___r_single_quote] = ACTIONS(831), }, [142] = { [sym_line_comment] = STATE(142), [sym_block_comment] = STATE(142), - [sym__expression] = STATE(2731), - [sym__expression_without_blocks] = STATE(1902), - [sym__expression_with_blocks] = STATE(2870), - [sym_inc_expression] = STATE(2032), - [sym_dec_expression] = STATE(2032), - [sym_or_block_expression] = STATE(2032), - [sym_option_propagation_expression] = STATE(2032), - [sym_result_propagation_expression] = STATE(2032), - [sym_anon_struct_value_expression] = STATE(2868), - [sym_go_expression] = STATE(2032), - [sym_spawn_expression] = STATE(2032), - [sym_parenthesized_expression] = STATE(2032), - [sym_call_expression] = STATE(2032), - [sym_type_initializer] = STATE(2868), - [sym_function_literal] = STATE(2032), - [sym_reference_expression] = STATE(1914), - [sym_type_reference_expression] = STATE(3541), - [sym_unary_expression] = STATE(2032), - [sym_receive_expression] = STATE(2032), - [sym_binary_expression] = STATE(2032), - [sym_as_type_cast_expression] = STATE(2032), - [sym__max_group] = STATE(2032), - [sym_literal] = STATE(2027), - [sym_map_init_expression] = STATE(2868), - [sym_array_creation] = STATE(2032), - [sym_fixed_array_creation] = STATE(2032), - [sym_selector_expression] = STATE(2032), - [sym_index_expression] = STATE(2032), - [sym_slice_expression] = STATE(2032), - [sym_if_expression] = STATE(2868), - [sym_compile_time_if_expression] = STATE(2868), - [sym_is_expression] = STATE(2032), - [sym_in_expression] = STATE(2032), - [sym_enum_fetch] = STATE(2032), - [sym_match_expression] = STATE(2868), - [sym_select_expression] = STATE(2868), - [sym_select_arm] = STATE(2139), - [sym_select_arm_statement] = STATE(4161), - [sym_select_var_declaration] = STATE(4478), - [sym_select_else_arn_clause] = STATE(4428), - [sym_lock_expression] = STATE(2868), - [sym_unsafe_expression] = STATE(2868), - [sym_sql_expression] = STATE(2868), - [sym_c_string_literal] = STATE(2026), - [sym_raw_string_literal] = STATE(2026), - [sym_interpreted_string_literal] = STATE(2026), - [sym_mutability_modifiers] = STATE(635), - [sym_mutable_identifier] = STATE(3928), - [sym_identifier_list] = STATE(4484), + [sym__expression] = STATE(2780), + [sym__expression_without_blocks] = STATE(1903), + [sym__expression_with_blocks] = STATE(2882), + [sym_inc_expression] = STATE(2035), + [sym_dec_expression] = STATE(2035), + [sym_or_block_expression] = STATE(2035), + [sym_option_propagation_expression] = STATE(2035), + [sym_result_propagation_expression] = STATE(2035), + [sym_anon_struct_value_expression] = STATE(2877), + [sym_go_expression] = STATE(2035), + [sym_spawn_expression] = STATE(2035), + [sym_parenthesized_expression] = STATE(2035), + [sym_call_expression] = STATE(2035), + [sym_type_initializer] = STATE(2877), + [sym_function_literal] = STATE(2035), + [sym_reference_expression] = STATE(1944), + [sym_type_reference_expression] = STATE(3460), + [sym_unary_expression] = STATE(2035), + [sym_receive_expression] = STATE(2035), + [sym_binary_expression] = STATE(2035), + [sym_as_type_cast_expression] = STATE(2035), + [sym__max_group] = STATE(2035), + [sym_literal] = STATE(2030), + [sym_map_init_expression] = STATE(2877), + [sym_array_creation] = STATE(2035), + [sym_fixed_array_creation] = STATE(2035), + [sym_selector_expression] = STATE(2035), + [sym_index_expression] = STATE(2035), + [sym_slice_expression] = STATE(2035), + [sym_if_expression] = STATE(2877), + [sym_compile_time_if_expression] = STATE(2877), + [sym_is_expression] = STATE(2035), + [sym_in_expression] = STATE(2035), + [sym_enum_fetch] = STATE(2035), + [sym_match_expression] = STATE(2877), + [sym_select_expression] = STATE(2877), + [sym_select_arm] = STATE(2140), + [sym_select_arm_statement] = STATE(4150), + [sym_select_var_declaration] = STATE(4507), + [sym_select_else_arn_clause] = STATE(4490), + [sym_lock_expression] = STATE(2877), + [sym_unsafe_expression] = STATE(2877), + [sym_sql_expression] = STATE(2877), + [sym_c_string_literal] = STATE(2029), + [sym_raw_string_literal] = STATE(2029), + [sym_interpreted_string_literal] = STATE(2029), + [sym_mutability_modifiers] = STATE(641), + [sym_mutable_identifier] = STATE(3847), + [sym_identifier_list] = STATE(4511), [sym_expression_without_blocks_list] = STATE(3279), - [sym_plain_type] = STATE(4094), - [sym__plain_type_without_special] = STATE(2302), - [sym_anon_struct_type] = STATE(2303), - [sym_multi_return_type] = STATE(2302), - [sym_result_type] = STATE(2302), - [sym_option_type] = STATE(2302), - [sym_qualified_type] = STATE(3541), - [sym_fixed_array_type] = STATE(2303), - [sym_array_type] = STATE(2303), - [sym_pointer_type] = STATE(2303), - [sym_wrong_pointer_type] = STATE(2303), - [sym_map_type] = STATE(2303), - [sym_channel_type] = STATE(2303), - [sym_shared_type] = STATE(2303), - [sym_thread_type] = STATE(2303), - [sym_atomic_type] = STATE(2303), - [sym_generic_type] = STATE(2303), - [sym_function_type] = STATE(2303), - [sym_send_statement] = STATE(4478), - [aux_sym_select_expression_repeat1] = STATE(116), - [sym_identifier] = ACTIONS(701), + [sym_plain_type] = STATE(4297), + [sym__plain_type_without_special] = STATE(2360), + [sym_anon_struct_type] = STATE(2362), + [sym_multi_return_type] = STATE(2360), + [sym_result_type] = STATE(2360), + [sym_option_type] = STATE(2360), + [sym_qualified_type] = STATE(3460), + [sym_fixed_array_type] = STATE(2362), + [sym_array_type] = STATE(2362), + [sym_pointer_type] = STATE(2362), + [sym_wrong_pointer_type] = STATE(2362), + [sym_map_type] = STATE(2362), + [sym_channel_type] = STATE(2362), + [sym_shared_type] = STATE(2362), + [sym_thread_type] = STATE(2362), + [sym_atomic_type] = STATE(2362), + [sym_generic_type] = STATE(2362), + [sym_function_type] = STATE(2362), + [sym_send_statement] = STATE(4507), + [aux_sym_select_expression_repeat1] = STATE(149), + [sym_identifier] = ACTIONS(767), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(703), - [anon_sym_LBRACE] = ACTIONS(705), + [anon_sym_DOT] = ACTIONS(769), + [anon_sym_LBRACE] = ACTIONS(771), [anon_sym_RBRACE] = ACTIONS(939), - [anon_sym_LPAREN] = ACTIONS(709), - [anon_sym_fn] = ACTIONS(711), - [anon_sym_PLUS] = ACTIONS(713), - [anon_sym_DASH] = ACTIONS(713), - [anon_sym_STAR] = ACTIONS(715), - [anon_sym_struct] = ACTIONS(717), + [anon_sym_LPAREN] = ACTIONS(775), + [anon_sym_fn] = ACTIONS(777), + [anon_sym_PLUS] = ACTIONS(779), + [anon_sym_DASH] = ACTIONS(779), + [anon_sym_STAR] = ACTIONS(781), + [anon_sym_struct] = ACTIONS(783), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(719), - [anon_sym_go] = ACTIONS(721), - [anon_sym_spawn] = ACTIONS(723), - [anon_sym_json_DOTdecode] = ACTIONS(725), - [anon_sym_LBRACK2] = ACTIONS(727), - [anon_sym_TILDE] = ACTIONS(713), - [anon_sym_CARET] = ACTIONS(713), - [anon_sym_AMP] = ACTIONS(729), - [anon_sym_LT_DASH] = ACTIONS(731), - [sym_none] = ACTIONS(733), - [sym_true] = ACTIONS(733), - [sym_false] = ACTIONS(733), - [sym_nil] = ACTIONS(733), - [anon_sym_if] = ACTIONS(735), - [anon_sym_else] = ACTIONS(737), - [anon_sym_DOLLARif] = ACTIONS(739), - [anon_sym_match] = ACTIONS(741), - [anon_sym_select] = ACTIONS(743), - [anon_sym_lock] = ACTIONS(745), - [anon_sym_rlock] = ACTIONS(745), - [anon_sym_unsafe] = ACTIONS(747), - [anon_sym_sql] = ACTIONS(749), - [sym_int_literal] = ACTIONS(733), - [sym_float_literal] = ACTIONS(751), - [sym_rune_literal] = ACTIONS(751), - [sym_pseudo_compile_time_identifier] = ACTIONS(753), + [anon_sym_BANG] = ACTIONS(785), + [anon_sym_go] = ACTIONS(787), + [anon_sym_spawn] = ACTIONS(789), + [anon_sym_json_DOTdecode] = ACTIONS(791), + [anon_sym_LBRACK2] = ACTIONS(793), + [anon_sym_TILDE] = ACTIONS(779), + [anon_sym_CARET] = ACTIONS(779), + [anon_sym_AMP] = ACTIONS(795), + [anon_sym_LT_DASH] = ACTIONS(797), + [sym_none] = ACTIONS(799), + [sym_true] = ACTIONS(799), + [sym_false] = ACTIONS(799), + [sym_nil] = ACTIONS(799), + [anon_sym_if] = ACTIONS(801), + [anon_sym_else] = ACTIONS(803), + [anon_sym_DOLLARif] = ACTIONS(805), + [anon_sym_match] = ACTIONS(807), + [anon_sym_select] = ACTIONS(809), + [anon_sym_lock] = ACTIONS(811), + [anon_sym_rlock] = ACTIONS(811), + [anon_sym_unsafe] = ACTIONS(813), + [anon_sym_sql] = ACTIONS(815), + [sym_int_literal] = ACTIONS(799), + [sym_float_literal] = ACTIONS(817), + [sym_rune_literal] = ACTIONS(817), + [sym_pseudo_compile_time_identifier] = ACTIONS(819), [anon_sym_shared] = ACTIONS(83), [anon_sym_map_LBRACK] = ACTIONS(85), [anon_sym_chan] = ACTIONS(87), [anon_sym_thread] = ACTIONS(89), [anon_sym_atomic] = ACTIONS(91), - [sym___double_quote] = ACTIONS(755), - [sym___single_quote] = ACTIONS(757), - [sym___c_double_quote] = ACTIONS(759), - [sym___c_single_quote] = ACTIONS(761), - [sym___r_double_quote] = ACTIONS(763), - [sym___r_single_quote] = ACTIONS(765), + [sym___double_quote] = ACTIONS(821), + [sym___single_quote] = ACTIONS(823), + [sym___c_double_quote] = ACTIONS(825), + [sym___c_single_quote] = ACTIONS(827), + [sym___r_double_quote] = ACTIONS(829), + [sym___r_single_quote] = ACTIONS(831), }, [143] = { [sym_line_comment] = STATE(143), [sym_block_comment] = STATE(143), - [sym__expression] = STATE(2731), - [sym__expression_without_blocks] = STATE(1902), - [sym__expression_with_blocks] = STATE(2870), - [sym_inc_expression] = STATE(2032), - [sym_dec_expression] = STATE(2032), - [sym_or_block_expression] = STATE(2032), - [sym_option_propagation_expression] = STATE(2032), - [sym_result_propagation_expression] = STATE(2032), - [sym_anon_struct_value_expression] = STATE(2868), - [sym_go_expression] = STATE(2032), - [sym_spawn_expression] = STATE(2032), - [sym_parenthesized_expression] = STATE(2032), - [sym_call_expression] = STATE(2032), - [sym_type_initializer] = STATE(2868), - [sym_function_literal] = STATE(2032), - [sym_reference_expression] = STATE(1914), - [sym_type_reference_expression] = STATE(3541), - [sym_unary_expression] = STATE(2032), - [sym_receive_expression] = STATE(2032), - [sym_binary_expression] = STATE(2032), - [sym_as_type_cast_expression] = STATE(2032), - [sym__max_group] = STATE(2032), - [sym_literal] = STATE(2027), - [sym_map_init_expression] = STATE(2868), - [sym_array_creation] = STATE(2032), - [sym_fixed_array_creation] = STATE(2032), - [sym_selector_expression] = STATE(2032), - [sym_index_expression] = STATE(2032), - [sym_slice_expression] = STATE(2032), - [sym_if_expression] = STATE(2868), - [sym_compile_time_if_expression] = STATE(2868), - [sym_is_expression] = STATE(2032), - [sym_in_expression] = STATE(2032), - [sym_enum_fetch] = STATE(2032), - [sym_match_expression] = STATE(2868), - [sym_select_expression] = STATE(2868), - [sym_select_arm] = STATE(2139), - [sym_select_arm_statement] = STATE(4161), - [sym_select_var_declaration] = STATE(4478), - [sym_select_else_arn_clause] = STATE(4515), - [sym_lock_expression] = STATE(2868), - [sym_unsafe_expression] = STATE(2868), - [sym_sql_expression] = STATE(2868), - [sym_c_string_literal] = STATE(2026), - [sym_raw_string_literal] = STATE(2026), - [sym_interpreted_string_literal] = STATE(2026), - [sym_mutability_modifiers] = STATE(635), - [sym_mutable_identifier] = STATE(3928), - [sym_identifier_list] = STATE(4484), + [sym__expression] = STATE(2780), + [sym__expression_without_blocks] = STATE(1903), + [sym__expression_with_blocks] = STATE(2882), + [sym_inc_expression] = STATE(2035), + [sym_dec_expression] = STATE(2035), + [sym_or_block_expression] = STATE(2035), + [sym_option_propagation_expression] = STATE(2035), + [sym_result_propagation_expression] = STATE(2035), + [sym_anon_struct_value_expression] = STATE(2877), + [sym_go_expression] = STATE(2035), + [sym_spawn_expression] = STATE(2035), + [sym_parenthesized_expression] = STATE(2035), + [sym_call_expression] = STATE(2035), + [sym_type_initializer] = STATE(2877), + [sym_function_literal] = STATE(2035), + [sym_reference_expression] = STATE(1944), + [sym_type_reference_expression] = STATE(3460), + [sym_unary_expression] = STATE(2035), + [sym_receive_expression] = STATE(2035), + [sym_binary_expression] = STATE(2035), + [sym_as_type_cast_expression] = STATE(2035), + [sym__max_group] = STATE(2035), + [sym_literal] = STATE(2030), + [sym_map_init_expression] = STATE(2877), + [sym_array_creation] = STATE(2035), + [sym_fixed_array_creation] = STATE(2035), + [sym_selector_expression] = STATE(2035), + [sym_index_expression] = STATE(2035), + [sym_slice_expression] = STATE(2035), + [sym_if_expression] = STATE(2877), + [sym_compile_time_if_expression] = STATE(2877), + [sym_is_expression] = STATE(2035), + [sym_in_expression] = STATE(2035), + [sym_enum_fetch] = STATE(2035), + [sym_match_expression] = STATE(2877), + [sym_select_expression] = STATE(2877), + [sym_select_arm] = STATE(2140), + [sym_select_arm_statement] = STATE(4150), + [sym_select_var_declaration] = STATE(4507), + [sym_select_else_arn_clause] = STATE(4617), + [sym_lock_expression] = STATE(2877), + [sym_unsafe_expression] = STATE(2877), + [sym_sql_expression] = STATE(2877), + [sym_c_string_literal] = STATE(2029), + [sym_raw_string_literal] = STATE(2029), + [sym_interpreted_string_literal] = STATE(2029), + [sym_mutability_modifiers] = STATE(641), + [sym_mutable_identifier] = STATE(3847), + [sym_identifier_list] = STATE(4511), [sym_expression_without_blocks_list] = STATE(3279), - [sym_plain_type] = STATE(4094), - [sym__plain_type_without_special] = STATE(2302), - [sym_anon_struct_type] = STATE(2303), - [sym_multi_return_type] = STATE(2302), - [sym_result_type] = STATE(2302), - [sym_option_type] = STATE(2302), - [sym_qualified_type] = STATE(3541), - [sym_fixed_array_type] = STATE(2303), - [sym_array_type] = STATE(2303), - [sym_pointer_type] = STATE(2303), - [sym_wrong_pointer_type] = STATE(2303), - [sym_map_type] = STATE(2303), - [sym_channel_type] = STATE(2303), - [sym_shared_type] = STATE(2303), - [sym_thread_type] = STATE(2303), - [sym_atomic_type] = STATE(2303), - [sym_generic_type] = STATE(2303), - [sym_function_type] = STATE(2303), - [sym_send_statement] = STATE(4478), - [aux_sym_select_expression_repeat1] = STATE(149), - [sym_identifier] = ACTIONS(701), + [sym_plain_type] = STATE(4297), + [sym__plain_type_without_special] = STATE(2360), + [sym_anon_struct_type] = STATE(2362), + [sym_multi_return_type] = STATE(2360), + [sym_result_type] = STATE(2360), + [sym_option_type] = STATE(2360), + [sym_qualified_type] = STATE(3460), + [sym_fixed_array_type] = STATE(2362), + [sym_array_type] = STATE(2362), + [sym_pointer_type] = STATE(2362), + [sym_wrong_pointer_type] = STATE(2362), + [sym_map_type] = STATE(2362), + [sym_channel_type] = STATE(2362), + [sym_shared_type] = STATE(2362), + [sym_thread_type] = STATE(2362), + [sym_atomic_type] = STATE(2362), + [sym_generic_type] = STATE(2362), + [sym_function_type] = STATE(2362), + [sym_send_statement] = STATE(4507), + [aux_sym_select_expression_repeat1] = STATE(138), + [sym_identifier] = ACTIONS(767), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(703), - [anon_sym_LBRACE] = ACTIONS(705), + [anon_sym_DOT] = ACTIONS(769), + [anon_sym_LBRACE] = ACTIONS(771), [anon_sym_RBRACE] = ACTIONS(941), - [anon_sym_LPAREN] = ACTIONS(709), - [anon_sym_fn] = ACTIONS(711), - [anon_sym_PLUS] = ACTIONS(713), - [anon_sym_DASH] = ACTIONS(713), - [anon_sym_STAR] = ACTIONS(715), - [anon_sym_struct] = ACTIONS(717), + [anon_sym_LPAREN] = ACTIONS(775), + [anon_sym_fn] = ACTIONS(777), + [anon_sym_PLUS] = ACTIONS(779), + [anon_sym_DASH] = ACTIONS(779), + [anon_sym_STAR] = ACTIONS(781), + [anon_sym_struct] = ACTIONS(783), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(719), - [anon_sym_go] = ACTIONS(721), - [anon_sym_spawn] = ACTIONS(723), - [anon_sym_json_DOTdecode] = ACTIONS(725), - [anon_sym_LBRACK2] = ACTIONS(727), - [anon_sym_TILDE] = ACTIONS(713), - [anon_sym_CARET] = ACTIONS(713), - [anon_sym_AMP] = ACTIONS(729), - [anon_sym_LT_DASH] = ACTIONS(731), - [sym_none] = ACTIONS(733), - [sym_true] = ACTIONS(733), - [sym_false] = ACTIONS(733), - [sym_nil] = ACTIONS(733), - [anon_sym_if] = ACTIONS(735), - [anon_sym_else] = ACTIONS(737), - [anon_sym_DOLLARif] = ACTIONS(739), - [anon_sym_match] = ACTIONS(741), - [anon_sym_select] = ACTIONS(743), - [anon_sym_lock] = ACTIONS(745), - [anon_sym_rlock] = ACTIONS(745), - [anon_sym_unsafe] = ACTIONS(747), - [anon_sym_sql] = ACTIONS(749), - [sym_int_literal] = ACTIONS(733), - [sym_float_literal] = ACTIONS(751), - [sym_rune_literal] = ACTIONS(751), - [sym_pseudo_compile_time_identifier] = ACTIONS(753), + [anon_sym_BANG] = ACTIONS(785), + [anon_sym_go] = ACTIONS(787), + [anon_sym_spawn] = ACTIONS(789), + [anon_sym_json_DOTdecode] = ACTIONS(791), + [anon_sym_LBRACK2] = ACTIONS(793), + [anon_sym_TILDE] = ACTIONS(779), + [anon_sym_CARET] = ACTIONS(779), + [anon_sym_AMP] = ACTIONS(795), + [anon_sym_LT_DASH] = ACTIONS(797), + [sym_none] = ACTIONS(799), + [sym_true] = ACTIONS(799), + [sym_false] = ACTIONS(799), + [sym_nil] = ACTIONS(799), + [anon_sym_if] = ACTIONS(801), + [anon_sym_else] = ACTIONS(803), + [anon_sym_DOLLARif] = ACTIONS(805), + [anon_sym_match] = ACTIONS(807), + [anon_sym_select] = ACTIONS(809), + [anon_sym_lock] = ACTIONS(811), + [anon_sym_rlock] = ACTIONS(811), + [anon_sym_unsafe] = ACTIONS(813), + [anon_sym_sql] = ACTIONS(815), + [sym_int_literal] = ACTIONS(799), + [sym_float_literal] = ACTIONS(817), + [sym_rune_literal] = ACTIONS(817), + [sym_pseudo_compile_time_identifier] = ACTIONS(819), [anon_sym_shared] = ACTIONS(83), [anon_sym_map_LBRACK] = ACTIONS(85), [anon_sym_chan] = ACTIONS(87), [anon_sym_thread] = ACTIONS(89), [anon_sym_atomic] = ACTIONS(91), - [sym___double_quote] = ACTIONS(755), - [sym___single_quote] = ACTIONS(757), - [sym___c_double_quote] = ACTIONS(759), - [sym___c_single_quote] = ACTIONS(761), - [sym___r_double_quote] = ACTIONS(763), - [sym___r_single_quote] = ACTIONS(765), + [sym___double_quote] = ACTIONS(821), + [sym___single_quote] = ACTIONS(823), + [sym___c_double_quote] = ACTIONS(825), + [sym___c_single_quote] = ACTIONS(827), + [sym___r_double_quote] = ACTIONS(829), + [sym___r_single_quote] = ACTIONS(831), }, [144] = { [sym_line_comment] = STATE(144), [sym_block_comment] = STATE(144), - [sym__expression] = STATE(2731), - [sym__expression_without_blocks] = STATE(1902), - [sym__expression_with_blocks] = STATE(2870), - [sym_inc_expression] = STATE(2032), - [sym_dec_expression] = STATE(2032), - [sym_or_block_expression] = STATE(2032), - [sym_option_propagation_expression] = STATE(2032), - [sym_result_propagation_expression] = STATE(2032), - [sym_anon_struct_value_expression] = STATE(2868), - [sym_go_expression] = STATE(2032), - [sym_spawn_expression] = STATE(2032), - [sym_parenthesized_expression] = STATE(2032), - [sym_call_expression] = STATE(2032), - [sym_type_initializer] = STATE(2868), - [sym_function_literal] = STATE(2032), - [sym_reference_expression] = STATE(1914), - [sym_type_reference_expression] = STATE(3541), - [sym_unary_expression] = STATE(2032), - [sym_receive_expression] = STATE(2032), - [sym_binary_expression] = STATE(2032), - [sym_as_type_cast_expression] = STATE(2032), - [sym__max_group] = STATE(2032), - [sym_literal] = STATE(2027), - [sym_map_init_expression] = STATE(2868), - [sym_array_creation] = STATE(2032), - [sym_fixed_array_creation] = STATE(2032), - [sym_selector_expression] = STATE(2032), - [sym_index_expression] = STATE(2032), - [sym_slice_expression] = STATE(2032), - [sym_if_expression] = STATE(2868), - [sym_compile_time_if_expression] = STATE(2868), - [sym_is_expression] = STATE(2032), - [sym_in_expression] = STATE(2032), - [sym_enum_fetch] = STATE(2032), - [sym_match_expression] = STATE(2868), - [sym_select_expression] = STATE(2868), - [sym_select_arm] = STATE(2139), - [sym_select_arm_statement] = STATE(4161), - [sym_select_var_declaration] = STATE(4478), - [sym_select_else_arn_clause] = STATE(4504), - [sym_lock_expression] = STATE(2868), - [sym_unsafe_expression] = STATE(2868), - [sym_sql_expression] = STATE(2868), - [sym_c_string_literal] = STATE(2026), - [sym_raw_string_literal] = STATE(2026), - [sym_interpreted_string_literal] = STATE(2026), - [sym_mutability_modifiers] = STATE(635), - [sym_mutable_identifier] = STATE(3928), - [sym_identifier_list] = STATE(4484), + [sym__expression] = STATE(2780), + [sym__expression_without_blocks] = STATE(1903), + [sym__expression_with_blocks] = STATE(2882), + [sym_inc_expression] = STATE(2035), + [sym_dec_expression] = STATE(2035), + [sym_or_block_expression] = STATE(2035), + [sym_option_propagation_expression] = STATE(2035), + [sym_result_propagation_expression] = STATE(2035), + [sym_anon_struct_value_expression] = STATE(2877), + [sym_go_expression] = STATE(2035), + [sym_spawn_expression] = STATE(2035), + [sym_parenthesized_expression] = STATE(2035), + [sym_call_expression] = STATE(2035), + [sym_type_initializer] = STATE(2877), + [sym_function_literal] = STATE(2035), + [sym_reference_expression] = STATE(1944), + [sym_type_reference_expression] = STATE(3460), + [sym_unary_expression] = STATE(2035), + [sym_receive_expression] = STATE(2035), + [sym_binary_expression] = STATE(2035), + [sym_as_type_cast_expression] = STATE(2035), + [sym__max_group] = STATE(2035), + [sym_literal] = STATE(2030), + [sym_map_init_expression] = STATE(2877), + [sym_array_creation] = STATE(2035), + [sym_fixed_array_creation] = STATE(2035), + [sym_selector_expression] = STATE(2035), + [sym_index_expression] = STATE(2035), + [sym_slice_expression] = STATE(2035), + [sym_if_expression] = STATE(2877), + [sym_compile_time_if_expression] = STATE(2877), + [sym_is_expression] = STATE(2035), + [sym_in_expression] = STATE(2035), + [sym_enum_fetch] = STATE(2035), + [sym_match_expression] = STATE(2877), + [sym_select_expression] = STATE(2877), + [sym_select_arm] = STATE(2140), + [sym_select_arm_statement] = STATE(4150), + [sym_select_var_declaration] = STATE(4507), + [sym_select_else_arn_clause] = STATE(4638), + [sym_lock_expression] = STATE(2877), + [sym_unsafe_expression] = STATE(2877), + [sym_sql_expression] = STATE(2877), + [sym_c_string_literal] = STATE(2029), + [sym_raw_string_literal] = STATE(2029), + [sym_interpreted_string_literal] = STATE(2029), + [sym_mutability_modifiers] = STATE(641), + [sym_mutable_identifier] = STATE(3847), + [sym_identifier_list] = STATE(4511), [sym_expression_without_blocks_list] = STATE(3279), - [sym_plain_type] = STATE(4094), - [sym__plain_type_without_special] = STATE(2302), - [sym_anon_struct_type] = STATE(2303), - [sym_multi_return_type] = STATE(2302), - [sym_result_type] = STATE(2302), - [sym_option_type] = STATE(2302), - [sym_qualified_type] = STATE(3541), - [sym_fixed_array_type] = STATE(2303), - [sym_array_type] = STATE(2303), - [sym_pointer_type] = STATE(2303), - [sym_wrong_pointer_type] = STATE(2303), - [sym_map_type] = STATE(2303), - [sym_channel_type] = STATE(2303), - [sym_shared_type] = STATE(2303), - [sym_thread_type] = STATE(2303), - [sym_atomic_type] = STATE(2303), - [sym_generic_type] = STATE(2303), - [sym_function_type] = STATE(2303), - [sym_send_statement] = STATE(4478), - [aux_sym_select_expression_repeat1] = STATE(143), - [sym_identifier] = ACTIONS(701), + [sym_plain_type] = STATE(4297), + [sym__plain_type_without_special] = STATE(2360), + [sym_anon_struct_type] = STATE(2362), + [sym_multi_return_type] = STATE(2360), + [sym_result_type] = STATE(2360), + [sym_option_type] = STATE(2360), + [sym_qualified_type] = STATE(3460), + [sym_fixed_array_type] = STATE(2362), + [sym_array_type] = STATE(2362), + [sym_pointer_type] = STATE(2362), + [sym_wrong_pointer_type] = STATE(2362), + [sym_map_type] = STATE(2362), + [sym_channel_type] = STATE(2362), + [sym_shared_type] = STATE(2362), + [sym_thread_type] = STATE(2362), + [sym_atomic_type] = STATE(2362), + [sym_generic_type] = STATE(2362), + [sym_function_type] = STATE(2362), + [sym_send_statement] = STATE(4507), + [aux_sym_select_expression_repeat1] = STATE(149), + [sym_identifier] = ACTIONS(767), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(703), - [anon_sym_LBRACE] = ACTIONS(705), + [anon_sym_DOT] = ACTIONS(769), + [anon_sym_LBRACE] = ACTIONS(771), [anon_sym_RBRACE] = ACTIONS(943), - [anon_sym_LPAREN] = ACTIONS(709), - [anon_sym_fn] = ACTIONS(711), - [anon_sym_PLUS] = ACTIONS(713), - [anon_sym_DASH] = ACTIONS(713), - [anon_sym_STAR] = ACTIONS(715), - [anon_sym_struct] = ACTIONS(717), + [anon_sym_LPAREN] = ACTIONS(775), + [anon_sym_fn] = ACTIONS(777), + [anon_sym_PLUS] = ACTIONS(779), + [anon_sym_DASH] = ACTIONS(779), + [anon_sym_STAR] = ACTIONS(781), + [anon_sym_struct] = ACTIONS(783), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(719), - [anon_sym_go] = ACTIONS(721), - [anon_sym_spawn] = ACTIONS(723), - [anon_sym_json_DOTdecode] = ACTIONS(725), - [anon_sym_LBRACK2] = ACTIONS(727), - [anon_sym_TILDE] = ACTIONS(713), - [anon_sym_CARET] = ACTIONS(713), - [anon_sym_AMP] = ACTIONS(729), - [anon_sym_LT_DASH] = ACTIONS(731), - [sym_none] = ACTIONS(733), - [sym_true] = ACTIONS(733), - [sym_false] = ACTIONS(733), - [sym_nil] = ACTIONS(733), - [anon_sym_if] = ACTIONS(735), - [anon_sym_else] = ACTIONS(737), - [anon_sym_DOLLARif] = ACTIONS(739), - [anon_sym_match] = ACTIONS(741), - [anon_sym_select] = ACTIONS(743), - [anon_sym_lock] = ACTIONS(745), - [anon_sym_rlock] = ACTIONS(745), - [anon_sym_unsafe] = ACTIONS(747), - [anon_sym_sql] = ACTIONS(749), - [sym_int_literal] = ACTIONS(733), - [sym_float_literal] = ACTIONS(751), - [sym_rune_literal] = ACTIONS(751), - [sym_pseudo_compile_time_identifier] = ACTIONS(753), + [anon_sym_BANG] = ACTIONS(785), + [anon_sym_go] = ACTIONS(787), + [anon_sym_spawn] = ACTIONS(789), + [anon_sym_json_DOTdecode] = ACTIONS(791), + [anon_sym_LBRACK2] = ACTIONS(793), + [anon_sym_TILDE] = ACTIONS(779), + [anon_sym_CARET] = ACTIONS(779), + [anon_sym_AMP] = ACTIONS(795), + [anon_sym_LT_DASH] = ACTIONS(797), + [sym_none] = ACTIONS(799), + [sym_true] = ACTIONS(799), + [sym_false] = ACTIONS(799), + [sym_nil] = ACTIONS(799), + [anon_sym_if] = ACTIONS(801), + [anon_sym_else] = ACTIONS(803), + [anon_sym_DOLLARif] = ACTIONS(805), + [anon_sym_match] = ACTIONS(807), + [anon_sym_select] = ACTIONS(809), + [anon_sym_lock] = ACTIONS(811), + [anon_sym_rlock] = ACTIONS(811), + [anon_sym_unsafe] = ACTIONS(813), + [anon_sym_sql] = ACTIONS(815), + [sym_int_literal] = ACTIONS(799), + [sym_float_literal] = ACTIONS(817), + [sym_rune_literal] = ACTIONS(817), + [sym_pseudo_compile_time_identifier] = ACTIONS(819), [anon_sym_shared] = ACTIONS(83), [anon_sym_map_LBRACK] = ACTIONS(85), [anon_sym_chan] = ACTIONS(87), [anon_sym_thread] = ACTIONS(89), [anon_sym_atomic] = ACTIONS(91), - [sym___double_quote] = ACTIONS(755), - [sym___single_quote] = ACTIONS(757), - [sym___c_double_quote] = ACTIONS(759), - [sym___c_single_quote] = ACTIONS(761), - [sym___r_double_quote] = ACTIONS(763), - [sym___r_single_quote] = ACTIONS(765), + [sym___double_quote] = ACTIONS(821), + [sym___single_quote] = ACTIONS(823), + [sym___c_double_quote] = ACTIONS(825), + [sym___c_single_quote] = ACTIONS(827), + [sym___r_double_quote] = ACTIONS(829), + [sym___r_single_quote] = ACTIONS(831), }, [145] = { [sym_line_comment] = STATE(145), [sym_block_comment] = STATE(145), - [sym__expression] = STATE(2731), - [sym__expression_without_blocks] = STATE(1902), - [sym__expression_with_blocks] = STATE(2870), - [sym_inc_expression] = STATE(2032), - [sym_dec_expression] = STATE(2032), - [sym_or_block_expression] = STATE(2032), - [sym_option_propagation_expression] = STATE(2032), - [sym_result_propagation_expression] = STATE(2032), - [sym_anon_struct_value_expression] = STATE(2868), - [sym_go_expression] = STATE(2032), - [sym_spawn_expression] = STATE(2032), - [sym_parenthesized_expression] = STATE(2032), - [sym_call_expression] = STATE(2032), - [sym_type_initializer] = STATE(2868), - [sym_function_literal] = STATE(2032), - [sym_reference_expression] = STATE(1914), - [sym_type_reference_expression] = STATE(3541), - [sym_unary_expression] = STATE(2032), - [sym_receive_expression] = STATE(2032), - [sym_binary_expression] = STATE(2032), - [sym_as_type_cast_expression] = STATE(2032), - [sym__max_group] = STATE(2032), - [sym_literal] = STATE(2027), - [sym_map_init_expression] = STATE(2868), - [sym_array_creation] = STATE(2032), - [sym_fixed_array_creation] = STATE(2032), - [sym_selector_expression] = STATE(2032), - [sym_index_expression] = STATE(2032), - [sym_slice_expression] = STATE(2032), - [sym_if_expression] = STATE(2868), - [sym_compile_time_if_expression] = STATE(2868), - [sym_is_expression] = STATE(2032), - [sym_in_expression] = STATE(2032), - [sym_enum_fetch] = STATE(2032), - [sym_match_expression] = STATE(2868), - [sym_select_expression] = STATE(2868), - [sym_select_arm] = STATE(2139), - [sym_select_arm_statement] = STATE(4161), - [sym_select_var_declaration] = STATE(4478), - [sym_select_else_arn_clause] = STATE(4635), - [sym_lock_expression] = STATE(2868), - [sym_unsafe_expression] = STATE(2868), - [sym_sql_expression] = STATE(2868), - [sym_c_string_literal] = STATE(2026), - [sym_raw_string_literal] = STATE(2026), - [sym_interpreted_string_literal] = STATE(2026), - [sym_mutability_modifiers] = STATE(635), - [sym_mutable_identifier] = STATE(3928), - [sym_identifier_list] = STATE(4484), + [sym__expression] = STATE(2780), + [sym__expression_without_blocks] = STATE(1903), + [sym__expression_with_blocks] = STATE(2882), + [sym_inc_expression] = STATE(2035), + [sym_dec_expression] = STATE(2035), + [sym_or_block_expression] = STATE(2035), + [sym_option_propagation_expression] = STATE(2035), + [sym_result_propagation_expression] = STATE(2035), + [sym_anon_struct_value_expression] = STATE(2877), + [sym_go_expression] = STATE(2035), + [sym_spawn_expression] = STATE(2035), + [sym_parenthesized_expression] = STATE(2035), + [sym_call_expression] = STATE(2035), + [sym_type_initializer] = STATE(2877), + [sym_function_literal] = STATE(2035), + [sym_reference_expression] = STATE(1944), + [sym_type_reference_expression] = STATE(3460), + [sym_unary_expression] = STATE(2035), + [sym_receive_expression] = STATE(2035), + [sym_binary_expression] = STATE(2035), + [sym_as_type_cast_expression] = STATE(2035), + [sym__max_group] = STATE(2035), + [sym_literal] = STATE(2030), + [sym_map_init_expression] = STATE(2877), + [sym_array_creation] = STATE(2035), + [sym_fixed_array_creation] = STATE(2035), + [sym_selector_expression] = STATE(2035), + [sym_index_expression] = STATE(2035), + [sym_slice_expression] = STATE(2035), + [sym_if_expression] = STATE(2877), + [sym_compile_time_if_expression] = STATE(2877), + [sym_is_expression] = STATE(2035), + [sym_in_expression] = STATE(2035), + [sym_enum_fetch] = STATE(2035), + [sym_match_expression] = STATE(2877), + [sym_select_expression] = STATE(2877), + [sym_select_arm] = STATE(2140), + [sym_select_arm_statement] = STATE(4150), + [sym_select_var_declaration] = STATE(4507), + [sym_select_else_arn_clause] = STATE(4625), + [sym_lock_expression] = STATE(2877), + [sym_unsafe_expression] = STATE(2877), + [sym_sql_expression] = STATE(2877), + [sym_c_string_literal] = STATE(2029), + [sym_raw_string_literal] = STATE(2029), + [sym_interpreted_string_literal] = STATE(2029), + [sym_mutability_modifiers] = STATE(641), + [sym_mutable_identifier] = STATE(3847), + [sym_identifier_list] = STATE(4511), [sym_expression_without_blocks_list] = STATE(3279), - [sym_plain_type] = STATE(4094), - [sym__plain_type_without_special] = STATE(2302), - [sym_anon_struct_type] = STATE(2303), - [sym_multi_return_type] = STATE(2302), - [sym_result_type] = STATE(2302), - [sym_option_type] = STATE(2302), - [sym_qualified_type] = STATE(3541), - [sym_fixed_array_type] = STATE(2303), - [sym_array_type] = STATE(2303), - [sym_pointer_type] = STATE(2303), - [sym_wrong_pointer_type] = STATE(2303), - [sym_map_type] = STATE(2303), - [sym_channel_type] = STATE(2303), - [sym_shared_type] = STATE(2303), - [sym_thread_type] = STATE(2303), - [sym_atomic_type] = STATE(2303), - [sym_generic_type] = STATE(2303), - [sym_function_type] = STATE(2303), - [sym_send_statement] = STATE(4478), + [sym_plain_type] = STATE(4297), + [sym__plain_type_without_special] = STATE(2360), + [sym_anon_struct_type] = STATE(2362), + [sym_multi_return_type] = STATE(2360), + [sym_result_type] = STATE(2360), + [sym_option_type] = STATE(2360), + [sym_qualified_type] = STATE(3460), + [sym_fixed_array_type] = STATE(2362), + [sym_array_type] = STATE(2362), + [sym_pointer_type] = STATE(2362), + [sym_wrong_pointer_type] = STATE(2362), + [sym_map_type] = STATE(2362), + [sym_channel_type] = STATE(2362), + [sym_shared_type] = STATE(2362), + [sym_thread_type] = STATE(2362), + [sym_atomic_type] = STATE(2362), + [sym_generic_type] = STATE(2362), + [sym_function_type] = STATE(2362), + [sym_send_statement] = STATE(4507), [aux_sym_select_expression_repeat1] = STATE(149), - [sym_identifier] = ACTIONS(701), + [sym_identifier] = ACTIONS(767), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(703), - [anon_sym_LBRACE] = ACTIONS(705), + [anon_sym_DOT] = ACTIONS(769), + [anon_sym_LBRACE] = ACTIONS(771), [anon_sym_RBRACE] = ACTIONS(945), - [anon_sym_LPAREN] = ACTIONS(709), - [anon_sym_fn] = ACTIONS(711), - [anon_sym_PLUS] = ACTIONS(713), - [anon_sym_DASH] = ACTIONS(713), - [anon_sym_STAR] = ACTIONS(715), - [anon_sym_struct] = ACTIONS(717), + [anon_sym_LPAREN] = ACTIONS(775), + [anon_sym_fn] = ACTIONS(777), + [anon_sym_PLUS] = ACTIONS(779), + [anon_sym_DASH] = ACTIONS(779), + [anon_sym_STAR] = ACTIONS(781), + [anon_sym_struct] = ACTIONS(783), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(719), - [anon_sym_go] = ACTIONS(721), - [anon_sym_spawn] = ACTIONS(723), - [anon_sym_json_DOTdecode] = ACTIONS(725), - [anon_sym_LBRACK2] = ACTIONS(727), - [anon_sym_TILDE] = ACTIONS(713), - [anon_sym_CARET] = ACTIONS(713), - [anon_sym_AMP] = ACTIONS(729), - [anon_sym_LT_DASH] = ACTIONS(731), - [sym_none] = ACTIONS(733), - [sym_true] = ACTIONS(733), - [sym_false] = ACTIONS(733), - [sym_nil] = ACTIONS(733), - [anon_sym_if] = ACTIONS(735), - [anon_sym_else] = ACTIONS(737), - [anon_sym_DOLLARif] = ACTIONS(739), - [anon_sym_match] = ACTIONS(741), - [anon_sym_select] = ACTIONS(743), - [anon_sym_lock] = ACTIONS(745), - [anon_sym_rlock] = ACTIONS(745), - [anon_sym_unsafe] = ACTIONS(747), - [anon_sym_sql] = ACTIONS(749), - [sym_int_literal] = ACTIONS(733), - [sym_float_literal] = ACTIONS(751), - [sym_rune_literal] = ACTIONS(751), - [sym_pseudo_compile_time_identifier] = ACTIONS(753), + [anon_sym_BANG] = ACTIONS(785), + [anon_sym_go] = ACTIONS(787), + [anon_sym_spawn] = ACTIONS(789), + [anon_sym_json_DOTdecode] = ACTIONS(791), + [anon_sym_LBRACK2] = ACTIONS(793), + [anon_sym_TILDE] = ACTIONS(779), + [anon_sym_CARET] = ACTIONS(779), + [anon_sym_AMP] = ACTIONS(795), + [anon_sym_LT_DASH] = ACTIONS(797), + [sym_none] = ACTIONS(799), + [sym_true] = ACTIONS(799), + [sym_false] = ACTIONS(799), + [sym_nil] = ACTIONS(799), + [anon_sym_if] = ACTIONS(801), + [anon_sym_else] = ACTIONS(803), + [anon_sym_DOLLARif] = ACTIONS(805), + [anon_sym_match] = ACTIONS(807), + [anon_sym_select] = ACTIONS(809), + [anon_sym_lock] = ACTIONS(811), + [anon_sym_rlock] = ACTIONS(811), + [anon_sym_unsafe] = ACTIONS(813), + [anon_sym_sql] = ACTIONS(815), + [sym_int_literal] = ACTIONS(799), + [sym_float_literal] = ACTIONS(817), + [sym_rune_literal] = ACTIONS(817), + [sym_pseudo_compile_time_identifier] = ACTIONS(819), [anon_sym_shared] = ACTIONS(83), [anon_sym_map_LBRACK] = ACTIONS(85), [anon_sym_chan] = ACTIONS(87), [anon_sym_thread] = ACTIONS(89), [anon_sym_atomic] = ACTIONS(91), - [sym___double_quote] = ACTIONS(755), - [sym___single_quote] = ACTIONS(757), - [sym___c_double_quote] = ACTIONS(759), - [sym___c_single_quote] = ACTIONS(761), - [sym___r_double_quote] = ACTIONS(763), - [sym___r_single_quote] = ACTIONS(765), + [sym___double_quote] = ACTIONS(821), + [sym___single_quote] = ACTIONS(823), + [sym___c_double_quote] = ACTIONS(825), + [sym___c_single_quote] = ACTIONS(827), + [sym___r_double_quote] = ACTIONS(829), + [sym___r_single_quote] = ACTIONS(831), }, [146] = { [sym_line_comment] = STATE(146), [sym_block_comment] = STATE(146), - [sym__expression] = STATE(2731), - [sym__expression_without_blocks] = STATE(1902), - [sym__expression_with_blocks] = STATE(2870), - [sym_inc_expression] = STATE(2032), - [sym_dec_expression] = STATE(2032), - [sym_or_block_expression] = STATE(2032), - [sym_option_propagation_expression] = STATE(2032), - [sym_result_propagation_expression] = STATE(2032), - [sym_anon_struct_value_expression] = STATE(2868), - [sym_go_expression] = STATE(2032), - [sym_spawn_expression] = STATE(2032), - [sym_parenthesized_expression] = STATE(2032), - [sym_call_expression] = STATE(2032), - [sym_type_initializer] = STATE(2868), - [sym_function_literal] = STATE(2032), - [sym_reference_expression] = STATE(1914), - [sym_type_reference_expression] = STATE(3541), - [sym_unary_expression] = STATE(2032), - [sym_receive_expression] = STATE(2032), - [sym_binary_expression] = STATE(2032), - [sym_as_type_cast_expression] = STATE(2032), - [sym__max_group] = STATE(2032), - [sym_literal] = STATE(2027), - [sym_map_init_expression] = STATE(2868), - [sym_array_creation] = STATE(2032), - [sym_fixed_array_creation] = STATE(2032), - [sym_selector_expression] = STATE(2032), - [sym_index_expression] = STATE(2032), - [sym_slice_expression] = STATE(2032), - [sym_if_expression] = STATE(2868), - [sym_compile_time_if_expression] = STATE(2868), - [sym_is_expression] = STATE(2032), - [sym_in_expression] = STATE(2032), - [sym_enum_fetch] = STATE(2032), - [sym_match_expression] = STATE(2868), - [sym_select_expression] = STATE(2868), - [sym_select_arm] = STATE(2139), - [sym_select_arm_statement] = STATE(4161), - [sym_select_var_declaration] = STATE(4478), - [sym_select_else_arn_clause] = STATE(4431), - [sym_lock_expression] = STATE(2868), - [sym_unsafe_expression] = STATE(2868), - [sym_sql_expression] = STATE(2868), - [sym_c_string_literal] = STATE(2026), - [sym_raw_string_literal] = STATE(2026), - [sym_interpreted_string_literal] = STATE(2026), - [sym_mutability_modifiers] = STATE(635), - [sym_mutable_identifier] = STATE(3928), - [sym_identifier_list] = STATE(4484), + [sym__expression] = STATE(2780), + [sym__expression_without_blocks] = STATE(1903), + [sym__expression_with_blocks] = STATE(2882), + [sym_inc_expression] = STATE(2035), + [sym_dec_expression] = STATE(2035), + [sym_or_block_expression] = STATE(2035), + [sym_option_propagation_expression] = STATE(2035), + [sym_result_propagation_expression] = STATE(2035), + [sym_anon_struct_value_expression] = STATE(2877), + [sym_go_expression] = STATE(2035), + [sym_spawn_expression] = STATE(2035), + [sym_parenthesized_expression] = STATE(2035), + [sym_call_expression] = STATE(2035), + [sym_type_initializer] = STATE(2877), + [sym_function_literal] = STATE(2035), + [sym_reference_expression] = STATE(1944), + [sym_type_reference_expression] = STATE(3460), + [sym_unary_expression] = STATE(2035), + [sym_receive_expression] = STATE(2035), + [sym_binary_expression] = STATE(2035), + [sym_as_type_cast_expression] = STATE(2035), + [sym__max_group] = STATE(2035), + [sym_literal] = STATE(2030), + [sym_map_init_expression] = STATE(2877), + [sym_array_creation] = STATE(2035), + [sym_fixed_array_creation] = STATE(2035), + [sym_selector_expression] = STATE(2035), + [sym_index_expression] = STATE(2035), + [sym_slice_expression] = STATE(2035), + [sym_if_expression] = STATE(2877), + [sym_compile_time_if_expression] = STATE(2877), + [sym_is_expression] = STATE(2035), + [sym_in_expression] = STATE(2035), + [sym_enum_fetch] = STATE(2035), + [sym_match_expression] = STATE(2877), + [sym_select_expression] = STATE(2877), + [sym_select_arm] = STATE(2140), + [sym_select_arm_statement] = STATE(4150), + [sym_select_var_declaration] = STATE(4507), + [sym_select_else_arn_clause] = STATE(4640), + [sym_lock_expression] = STATE(2877), + [sym_unsafe_expression] = STATE(2877), + [sym_sql_expression] = STATE(2877), + [sym_c_string_literal] = STATE(2029), + [sym_raw_string_literal] = STATE(2029), + [sym_interpreted_string_literal] = STATE(2029), + [sym_mutability_modifiers] = STATE(641), + [sym_mutable_identifier] = STATE(3847), + [sym_identifier_list] = STATE(4511), [sym_expression_without_blocks_list] = STATE(3279), - [sym_plain_type] = STATE(4094), - [sym__plain_type_without_special] = STATE(2302), - [sym_anon_struct_type] = STATE(2303), - [sym_multi_return_type] = STATE(2302), - [sym_result_type] = STATE(2302), - [sym_option_type] = STATE(2302), - [sym_qualified_type] = STATE(3541), - [sym_fixed_array_type] = STATE(2303), - [sym_array_type] = STATE(2303), - [sym_pointer_type] = STATE(2303), - [sym_wrong_pointer_type] = STATE(2303), - [sym_map_type] = STATE(2303), - [sym_channel_type] = STATE(2303), - [sym_shared_type] = STATE(2303), - [sym_thread_type] = STATE(2303), - [sym_atomic_type] = STATE(2303), - [sym_generic_type] = STATE(2303), - [sym_function_type] = STATE(2303), - [sym_send_statement] = STATE(4478), - [aux_sym_select_expression_repeat1] = STATE(149), - [sym_identifier] = ACTIONS(701), + [sym_plain_type] = STATE(4297), + [sym__plain_type_without_special] = STATE(2360), + [sym_anon_struct_type] = STATE(2362), + [sym_multi_return_type] = STATE(2360), + [sym_result_type] = STATE(2360), + [sym_option_type] = STATE(2360), + [sym_qualified_type] = STATE(3460), + [sym_fixed_array_type] = STATE(2362), + [sym_array_type] = STATE(2362), + [sym_pointer_type] = STATE(2362), + [sym_wrong_pointer_type] = STATE(2362), + [sym_map_type] = STATE(2362), + [sym_channel_type] = STATE(2362), + [sym_shared_type] = STATE(2362), + [sym_thread_type] = STATE(2362), + [sym_atomic_type] = STATE(2362), + [sym_generic_type] = STATE(2362), + [sym_function_type] = STATE(2362), + [sym_send_statement] = STATE(4507), + [aux_sym_select_expression_repeat1] = STATE(144), + [sym_identifier] = ACTIONS(767), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(703), - [anon_sym_LBRACE] = ACTIONS(705), + [anon_sym_DOT] = ACTIONS(769), + [anon_sym_LBRACE] = ACTIONS(771), [anon_sym_RBRACE] = ACTIONS(947), - [anon_sym_LPAREN] = ACTIONS(709), - [anon_sym_fn] = ACTIONS(711), - [anon_sym_PLUS] = ACTIONS(713), - [anon_sym_DASH] = ACTIONS(713), - [anon_sym_STAR] = ACTIONS(715), - [anon_sym_struct] = ACTIONS(717), + [anon_sym_LPAREN] = ACTIONS(775), + [anon_sym_fn] = ACTIONS(777), + [anon_sym_PLUS] = ACTIONS(779), + [anon_sym_DASH] = ACTIONS(779), + [anon_sym_STAR] = ACTIONS(781), + [anon_sym_struct] = ACTIONS(783), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(719), - [anon_sym_go] = ACTIONS(721), - [anon_sym_spawn] = ACTIONS(723), - [anon_sym_json_DOTdecode] = ACTIONS(725), - [anon_sym_LBRACK2] = ACTIONS(727), - [anon_sym_TILDE] = ACTIONS(713), - [anon_sym_CARET] = ACTIONS(713), - [anon_sym_AMP] = ACTIONS(729), - [anon_sym_LT_DASH] = ACTIONS(731), - [sym_none] = ACTIONS(733), - [sym_true] = ACTIONS(733), - [sym_false] = ACTIONS(733), - [sym_nil] = ACTIONS(733), - [anon_sym_if] = ACTIONS(735), - [anon_sym_else] = ACTIONS(737), - [anon_sym_DOLLARif] = ACTIONS(739), - [anon_sym_match] = ACTIONS(741), - [anon_sym_select] = ACTIONS(743), - [anon_sym_lock] = ACTIONS(745), - [anon_sym_rlock] = ACTIONS(745), - [anon_sym_unsafe] = ACTIONS(747), - [anon_sym_sql] = ACTIONS(749), - [sym_int_literal] = ACTIONS(733), - [sym_float_literal] = ACTIONS(751), - [sym_rune_literal] = ACTIONS(751), - [sym_pseudo_compile_time_identifier] = ACTIONS(753), + [anon_sym_BANG] = ACTIONS(785), + [anon_sym_go] = ACTIONS(787), + [anon_sym_spawn] = ACTIONS(789), + [anon_sym_json_DOTdecode] = ACTIONS(791), + [anon_sym_LBRACK2] = ACTIONS(793), + [anon_sym_TILDE] = ACTIONS(779), + [anon_sym_CARET] = ACTIONS(779), + [anon_sym_AMP] = ACTIONS(795), + [anon_sym_LT_DASH] = ACTIONS(797), + [sym_none] = ACTIONS(799), + [sym_true] = ACTIONS(799), + [sym_false] = ACTIONS(799), + [sym_nil] = ACTIONS(799), + [anon_sym_if] = ACTIONS(801), + [anon_sym_else] = ACTIONS(803), + [anon_sym_DOLLARif] = ACTIONS(805), + [anon_sym_match] = ACTIONS(807), + [anon_sym_select] = ACTIONS(809), + [anon_sym_lock] = ACTIONS(811), + [anon_sym_rlock] = ACTIONS(811), + [anon_sym_unsafe] = ACTIONS(813), + [anon_sym_sql] = ACTIONS(815), + [sym_int_literal] = ACTIONS(799), + [sym_float_literal] = ACTIONS(817), + [sym_rune_literal] = ACTIONS(817), + [sym_pseudo_compile_time_identifier] = ACTIONS(819), [anon_sym_shared] = ACTIONS(83), [anon_sym_map_LBRACK] = ACTIONS(85), [anon_sym_chan] = ACTIONS(87), [anon_sym_thread] = ACTIONS(89), [anon_sym_atomic] = ACTIONS(91), - [sym___double_quote] = ACTIONS(755), - [sym___single_quote] = ACTIONS(757), - [sym___c_double_quote] = ACTIONS(759), - [sym___c_single_quote] = ACTIONS(761), - [sym___r_double_quote] = ACTIONS(763), - [sym___r_single_quote] = ACTIONS(765), + [sym___double_quote] = ACTIONS(821), + [sym___single_quote] = ACTIONS(823), + [sym___c_double_quote] = ACTIONS(825), + [sym___c_single_quote] = ACTIONS(827), + [sym___r_double_quote] = ACTIONS(829), + [sym___r_single_quote] = ACTIONS(831), }, [147] = { [sym_line_comment] = STATE(147), [sym_block_comment] = STATE(147), - [sym__expression] = STATE(2731), - [sym__expression_without_blocks] = STATE(1902), - [sym__expression_with_blocks] = STATE(2870), - [sym_inc_expression] = STATE(2032), - [sym_dec_expression] = STATE(2032), - [sym_or_block_expression] = STATE(2032), - [sym_option_propagation_expression] = STATE(2032), - [sym_result_propagation_expression] = STATE(2032), - [sym_anon_struct_value_expression] = STATE(2868), - [sym_go_expression] = STATE(2032), - [sym_spawn_expression] = STATE(2032), - [sym_parenthesized_expression] = STATE(2032), - [sym_call_expression] = STATE(2032), - [sym_type_initializer] = STATE(2868), - [sym_function_literal] = STATE(2032), - [sym_reference_expression] = STATE(1914), - [sym_type_reference_expression] = STATE(3541), - [sym_unary_expression] = STATE(2032), - [sym_receive_expression] = STATE(2032), - [sym_binary_expression] = STATE(2032), - [sym_as_type_cast_expression] = STATE(2032), - [sym__max_group] = STATE(2032), - [sym_literal] = STATE(2027), - [sym_map_init_expression] = STATE(2868), - [sym_array_creation] = STATE(2032), - [sym_fixed_array_creation] = STATE(2032), - [sym_selector_expression] = STATE(2032), - [sym_index_expression] = STATE(2032), - [sym_slice_expression] = STATE(2032), - [sym_if_expression] = STATE(2868), - [sym_compile_time_if_expression] = STATE(2868), - [sym_is_expression] = STATE(2032), - [sym_in_expression] = STATE(2032), - [sym_enum_fetch] = STATE(2032), - [sym_match_expression] = STATE(2868), - [sym_select_expression] = STATE(2868), - [sym_select_arm] = STATE(2139), - [sym_select_arm_statement] = STATE(4161), - [sym_select_var_declaration] = STATE(4478), - [sym_select_else_arn_clause] = STATE(4603), - [sym_lock_expression] = STATE(2868), - [sym_unsafe_expression] = STATE(2868), - [sym_sql_expression] = STATE(2868), - [sym_c_string_literal] = STATE(2026), - [sym_raw_string_literal] = STATE(2026), - [sym_interpreted_string_literal] = STATE(2026), - [sym_mutability_modifiers] = STATE(635), - [sym_mutable_identifier] = STATE(3928), - [sym_identifier_list] = STATE(4484), + [sym__expression] = STATE(2780), + [sym__expression_without_blocks] = STATE(1903), + [sym__expression_with_blocks] = STATE(2882), + [sym_inc_expression] = STATE(2035), + [sym_dec_expression] = STATE(2035), + [sym_or_block_expression] = STATE(2035), + [sym_option_propagation_expression] = STATE(2035), + [sym_result_propagation_expression] = STATE(2035), + [sym_anon_struct_value_expression] = STATE(2877), + [sym_go_expression] = STATE(2035), + [sym_spawn_expression] = STATE(2035), + [sym_parenthesized_expression] = STATE(2035), + [sym_call_expression] = STATE(2035), + [sym_type_initializer] = STATE(2877), + [sym_function_literal] = STATE(2035), + [sym_reference_expression] = STATE(1944), + [sym_type_reference_expression] = STATE(3460), + [sym_unary_expression] = STATE(2035), + [sym_receive_expression] = STATE(2035), + [sym_binary_expression] = STATE(2035), + [sym_as_type_cast_expression] = STATE(2035), + [sym__max_group] = STATE(2035), + [sym_literal] = STATE(2030), + [sym_map_init_expression] = STATE(2877), + [sym_array_creation] = STATE(2035), + [sym_fixed_array_creation] = STATE(2035), + [sym_selector_expression] = STATE(2035), + [sym_index_expression] = STATE(2035), + [sym_slice_expression] = STATE(2035), + [sym_if_expression] = STATE(2877), + [sym_compile_time_if_expression] = STATE(2877), + [sym_is_expression] = STATE(2035), + [sym_in_expression] = STATE(2035), + [sym_enum_fetch] = STATE(2035), + [sym_match_expression] = STATE(2877), + [sym_select_expression] = STATE(2877), + [sym_select_arm] = STATE(2140), + [sym_select_arm_statement] = STATE(4150), + [sym_select_var_declaration] = STATE(4507), + [sym_select_else_arn_clause] = STATE(4645), + [sym_lock_expression] = STATE(2877), + [sym_unsafe_expression] = STATE(2877), + [sym_sql_expression] = STATE(2877), + [sym_c_string_literal] = STATE(2029), + [sym_raw_string_literal] = STATE(2029), + [sym_interpreted_string_literal] = STATE(2029), + [sym_mutability_modifiers] = STATE(641), + [sym_mutable_identifier] = STATE(3847), + [sym_identifier_list] = STATE(4511), [sym_expression_without_blocks_list] = STATE(3279), - [sym_plain_type] = STATE(4094), - [sym__plain_type_without_special] = STATE(2302), - [sym_anon_struct_type] = STATE(2303), - [sym_multi_return_type] = STATE(2302), - [sym_result_type] = STATE(2302), - [sym_option_type] = STATE(2302), - [sym_qualified_type] = STATE(3541), - [sym_fixed_array_type] = STATE(2303), - [sym_array_type] = STATE(2303), - [sym_pointer_type] = STATE(2303), - [sym_wrong_pointer_type] = STATE(2303), - [sym_map_type] = STATE(2303), - [sym_channel_type] = STATE(2303), - [sym_shared_type] = STATE(2303), - [sym_thread_type] = STATE(2303), - [sym_atomic_type] = STATE(2303), - [sym_generic_type] = STATE(2303), - [sym_function_type] = STATE(2303), - [sym_send_statement] = STATE(4478), + [sym_plain_type] = STATE(4297), + [sym__plain_type_without_special] = STATE(2360), + [sym_anon_struct_type] = STATE(2362), + [sym_multi_return_type] = STATE(2360), + [sym_result_type] = STATE(2360), + [sym_option_type] = STATE(2360), + [sym_qualified_type] = STATE(3460), + [sym_fixed_array_type] = STATE(2362), + [sym_array_type] = STATE(2362), + [sym_pointer_type] = STATE(2362), + [sym_wrong_pointer_type] = STATE(2362), + [sym_map_type] = STATE(2362), + [sym_channel_type] = STATE(2362), + [sym_shared_type] = STATE(2362), + [sym_thread_type] = STATE(2362), + [sym_atomic_type] = STATE(2362), + [sym_generic_type] = STATE(2362), + [sym_function_type] = STATE(2362), + [sym_send_statement] = STATE(4507), [aux_sym_select_expression_repeat1] = STATE(149), - [sym_identifier] = ACTIONS(701), + [sym_identifier] = ACTIONS(767), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(703), - [anon_sym_LBRACE] = ACTIONS(705), + [anon_sym_DOT] = ACTIONS(769), + [anon_sym_LBRACE] = ACTIONS(771), [anon_sym_RBRACE] = ACTIONS(949), - [anon_sym_LPAREN] = ACTIONS(709), - [anon_sym_fn] = ACTIONS(711), - [anon_sym_PLUS] = ACTIONS(713), - [anon_sym_DASH] = ACTIONS(713), - [anon_sym_STAR] = ACTIONS(715), - [anon_sym_struct] = ACTIONS(717), + [anon_sym_LPAREN] = ACTIONS(775), + [anon_sym_fn] = ACTIONS(777), + [anon_sym_PLUS] = ACTIONS(779), + [anon_sym_DASH] = ACTIONS(779), + [anon_sym_STAR] = ACTIONS(781), + [anon_sym_struct] = ACTIONS(783), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(719), - [anon_sym_go] = ACTIONS(721), - [anon_sym_spawn] = ACTIONS(723), - [anon_sym_json_DOTdecode] = ACTIONS(725), - [anon_sym_LBRACK2] = ACTIONS(727), - [anon_sym_TILDE] = ACTIONS(713), - [anon_sym_CARET] = ACTIONS(713), - [anon_sym_AMP] = ACTIONS(729), - [anon_sym_LT_DASH] = ACTIONS(731), - [sym_none] = ACTIONS(733), - [sym_true] = ACTIONS(733), - [sym_false] = ACTIONS(733), - [sym_nil] = ACTIONS(733), - [anon_sym_if] = ACTIONS(735), - [anon_sym_else] = ACTIONS(737), - [anon_sym_DOLLARif] = ACTIONS(739), - [anon_sym_match] = ACTIONS(741), - [anon_sym_select] = ACTIONS(743), - [anon_sym_lock] = ACTIONS(745), - [anon_sym_rlock] = ACTIONS(745), - [anon_sym_unsafe] = ACTIONS(747), - [anon_sym_sql] = ACTIONS(749), - [sym_int_literal] = ACTIONS(733), - [sym_float_literal] = ACTIONS(751), - [sym_rune_literal] = ACTIONS(751), - [sym_pseudo_compile_time_identifier] = ACTIONS(753), + [anon_sym_BANG] = ACTIONS(785), + [anon_sym_go] = ACTIONS(787), + [anon_sym_spawn] = ACTIONS(789), + [anon_sym_json_DOTdecode] = ACTIONS(791), + [anon_sym_LBRACK2] = ACTIONS(793), + [anon_sym_TILDE] = ACTIONS(779), + [anon_sym_CARET] = ACTIONS(779), + [anon_sym_AMP] = ACTIONS(795), + [anon_sym_LT_DASH] = ACTIONS(797), + [sym_none] = ACTIONS(799), + [sym_true] = ACTIONS(799), + [sym_false] = ACTIONS(799), + [sym_nil] = ACTIONS(799), + [anon_sym_if] = ACTIONS(801), + [anon_sym_else] = ACTIONS(803), + [anon_sym_DOLLARif] = ACTIONS(805), + [anon_sym_match] = ACTIONS(807), + [anon_sym_select] = ACTIONS(809), + [anon_sym_lock] = ACTIONS(811), + [anon_sym_rlock] = ACTIONS(811), + [anon_sym_unsafe] = ACTIONS(813), + [anon_sym_sql] = ACTIONS(815), + [sym_int_literal] = ACTIONS(799), + [sym_float_literal] = ACTIONS(817), + [sym_rune_literal] = ACTIONS(817), + [sym_pseudo_compile_time_identifier] = ACTIONS(819), [anon_sym_shared] = ACTIONS(83), [anon_sym_map_LBRACK] = ACTIONS(85), [anon_sym_chan] = ACTIONS(87), [anon_sym_thread] = ACTIONS(89), [anon_sym_atomic] = ACTIONS(91), - [sym___double_quote] = ACTIONS(755), - [sym___single_quote] = ACTIONS(757), - [sym___c_double_quote] = ACTIONS(759), - [sym___c_single_quote] = ACTIONS(761), - [sym___r_double_quote] = ACTIONS(763), - [sym___r_single_quote] = ACTIONS(765), + [sym___double_quote] = ACTIONS(821), + [sym___single_quote] = ACTIONS(823), + [sym___c_double_quote] = ACTIONS(825), + [sym___c_single_quote] = ACTIONS(827), + [sym___r_double_quote] = ACTIONS(829), + [sym___r_single_quote] = ACTIONS(831), }, [148] = { [sym_line_comment] = STATE(148), [sym_block_comment] = STATE(148), - [sym__expression] = STATE(2731), - [sym__expression_without_blocks] = STATE(1902), - [sym__expression_with_blocks] = STATE(2870), - [sym_inc_expression] = STATE(2032), - [sym_dec_expression] = STATE(2032), - [sym_or_block_expression] = STATE(2032), - [sym_option_propagation_expression] = STATE(2032), - [sym_result_propagation_expression] = STATE(2032), - [sym_anon_struct_value_expression] = STATE(2868), - [sym_go_expression] = STATE(2032), - [sym_spawn_expression] = STATE(2032), - [sym_parenthesized_expression] = STATE(2032), - [sym_call_expression] = STATE(2032), - [sym_type_initializer] = STATE(2868), - [sym_function_literal] = STATE(2032), - [sym_reference_expression] = STATE(1914), - [sym_type_reference_expression] = STATE(3541), - [sym_unary_expression] = STATE(2032), - [sym_receive_expression] = STATE(2032), - [sym_binary_expression] = STATE(2032), - [sym_as_type_cast_expression] = STATE(2032), - [sym__max_group] = STATE(2032), - [sym_literal] = STATE(2027), - [sym_map_init_expression] = STATE(2868), - [sym_array_creation] = STATE(2032), - [sym_fixed_array_creation] = STATE(2032), - [sym_selector_expression] = STATE(2032), - [sym_index_expression] = STATE(2032), - [sym_slice_expression] = STATE(2032), - [sym_if_expression] = STATE(2868), - [sym_compile_time_if_expression] = STATE(2868), - [sym_is_expression] = STATE(2032), - [sym_in_expression] = STATE(2032), - [sym_enum_fetch] = STATE(2032), - [sym_match_expression] = STATE(2868), - [sym_select_expression] = STATE(2868), - [sym_select_arm] = STATE(2139), - [sym_select_arm_statement] = STATE(4161), - [sym_select_var_declaration] = STATE(4478), - [sym_select_else_arn_clause] = STATE(4404), - [sym_lock_expression] = STATE(2868), - [sym_unsafe_expression] = STATE(2868), - [sym_sql_expression] = STATE(2868), - [sym_c_string_literal] = STATE(2026), - [sym_raw_string_literal] = STATE(2026), - [sym_interpreted_string_literal] = STATE(2026), - [sym_mutability_modifiers] = STATE(635), - [sym_mutable_identifier] = STATE(3928), - [sym_identifier_list] = STATE(4484), + [sym__expression] = STATE(2780), + [sym__expression_without_blocks] = STATE(1903), + [sym__expression_with_blocks] = STATE(2882), + [sym_inc_expression] = STATE(2035), + [sym_dec_expression] = STATE(2035), + [sym_or_block_expression] = STATE(2035), + [sym_option_propagation_expression] = STATE(2035), + [sym_result_propagation_expression] = STATE(2035), + [sym_anon_struct_value_expression] = STATE(2877), + [sym_go_expression] = STATE(2035), + [sym_spawn_expression] = STATE(2035), + [sym_parenthesized_expression] = STATE(2035), + [sym_call_expression] = STATE(2035), + [sym_type_initializer] = STATE(2877), + [sym_function_literal] = STATE(2035), + [sym_reference_expression] = STATE(1944), + [sym_type_reference_expression] = STATE(3460), + [sym_unary_expression] = STATE(2035), + [sym_receive_expression] = STATE(2035), + [sym_binary_expression] = STATE(2035), + [sym_as_type_cast_expression] = STATE(2035), + [sym__max_group] = STATE(2035), + [sym_literal] = STATE(2030), + [sym_map_init_expression] = STATE(2877), + [sym_array_creation] = STATE(2035), + [sym_fixed_array_creation] = STATE(2035), + [sym_selector_expression] = STATE(2035), + [sym_index_expression] = STATE(2035), + [sym_slice_expression] = STATE(2035), + [sym_if_expression] = STATE(2877), + [sym_compile_time_if_expression] = STATE(2877), + [sym_is_expression] = STATE(2035), + [sym_in_expression] = STATE(2035), + [sym_enum_fetch] = STATE(2035), + [sym_match_expression] = STATE(2877), + [sym_select_expression] = STATE(2877), + [sym_select_arm] = STATE(2140), + [sym_select_arm_statement] = STATE(4150), + [sym_select_var_declaration] = STATE(4507), + [sym_select_else_arn_clause] = STATE(4564), + [sym_lock_expression] = STATE(2877), + [sym_unsafe_expression] = STATE(2877), + [sym_sql_expression] = STATE(2877), + [sym_c_string_literal] = STATE(2029), + [sym_raw_string_literal] = STATE(2029), + [sym_interpreted_string_literal] = STATE(2029), + [sym_mutability_modifiers] = STATE(641), + [sym_mutable_identifier] = STATE(3847), + [sym_identifier_list] = STATE(4511), [sym_expression_without_blocks_list] = STATE(3279), - [sym_plain_type] = STATE(4094), - [sym__plain_type_without_special] = STATE(2302), - [sym_anon_struct_type] = STATE(2303), - [sym_multi_return_type] = STATE(2302), - [sym_result_type] = STATE(2302), - [sym_option_type] = STATE(2302), - [sym_qualified_type] = STATE(3541), - [sym_fixed_array_type] = STATE(2303), - [sym_array_type] = STATE(2303), - [sym_pointer_type] = STATE(2303), - [sym_wrong_pointer_type] = STATE(2303), - [sym_map_type] = STATE(2303), - [sym_channel_type] = STATE(2303), - [sym_shared_type] = STATE(2303), - [sym_thread_type] = STATE(2303), - [sym_atomic_type] = STATE(2303), - [sym_generic_type] = STATE(2303), - [sym_function_type] = STATE(2303), - [sym_send_statement] = STATE(4478), + [sym_plain_type] = STATE(4297), + [sym__plain_type_without_special] = STATE(2360), + [sym_anon_struct_type] = STATE(2362), + [sym_multi_return_type] = STATE(2360), + [sym_result_type] = STATE(2360), + [sym_option_type] = STATE(2360), + [sym_qualified_type] = STATE(3460), + [sym_fixed_array_type] = STATE(2362), + [sym_array_type] = STATE(2362), + [sym_pointer_type] = STATE(2362), + [sym_wrong_pointer_type] = STATE(2362), + [sym_map_type] = STATE(2362), + [sym_channel_type] = STATE(2362), + [sym_shared_type] = STATE(2362), + [sym_thread_type] = STATE(2362), + [sym_atomic_type] = STATE(2362), + [sym_generic_type] = STATE(2362), + [sym_function_type] = STATE(2362), + [sym_send_statement] = STATE(4507), [aux_sym_select_expression_repeat1] = STATE(149), - [sym_identifier] = ACTIONS(701), + [sym_identifier] = ACTIONS(767), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(703), - [anon_sym_LBRACE] = ACTIONS(705), + [anon_sym_DOT] = ACTIONS(769), + [anon_sym_LBRACE] = ACTIONS(771), [anon_sym_RBRACE] = ACTIONS(951), - [anon_sym_LPAREN] = ACTIONS(709), - [anon_sym_fn] = ACTIONS(711), - [anon_sym_PLUS] = ACTIONS(713), - [anon_sym_DASH] = ACTIONS(713), - [anon_sym_STAR] = ACTIONS(715), - [anon_sym_struct] = ACTIONS(717), + [anon_sym_LPAREN] = ACTIONS(775), + [anon_sym_fn] = ACTIONS(777), + [anon_sym_PLUS] = ACTIONS(779), + [anon_sym_DASH] = ACTIONS(779), + [anon_sym_STAR] = ACTIONS(781), + [anon_sym_struct] = ACTIONS(783), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(719), - [anon_sym_go] = ACTIONS(721), - [anon_sym_spawn] = ACTIONS(723), - [anon_sym_json_DOTdecode] = ACTIONS(725), - [anon_sym_LBRACK2] = ACTIONS(727), - [anon_sym_TILDE] = ACTIONS(713), - [anon_sym_CARET] = ACTIONS(713), - [anon_sym_AMP] = ACTIONS(729), - [anon_sym_LT_DASH] = ACTIONS(731), - [sym_none] = ACTIONS(733), - [sym_true] = ACTIONS(733), - [sym_false] = ACTIONS(733), - [sym_nil] = ACTIONS(733), - [anon_sym_if] = ACTIONS(735), - [anon_sym_else] = ACTIONS(737), - [anon_sym_DOLLARif] = ACTIONS(739), - [anon_sym_match] = ACTIONS(741), - [anon_sym_select] = ACTIONS(743), - [anon_sym_lock] = ACTIONS(745), - [anon_sym_rlock] = ACTIONS(745), - [anon_sym_unsafe] = ACTIONS(747), - [anon_sym_sql] = ACTIONS(749), - [sym_int_literal] = ACTIONS(733), - [sym_float_literal] = ACTIONS(751), - [sym_rune_literal] = ACTIONS(751), - [sym_pseudo_compile_time_identifier] = ACTIONS(753), + [anon_sym_BANG] = ACTIONS(785), + [anon_sym_go] = ACTIONS(787), + [anon_sym_spawn] = ACTIONS(789), + [anon_sym_json_DOTdecode] = ACTIONS(791), + [anon_sym_LBRACK2] = ACTIONS(793), + [anon_sym_TILDE] = ACTIONS(779), + [anon_sym_CARET] = ACTIONS(779), + [anon_sym_AMP] = ACTIONS(795), + [anon_sym_LT_DASH] = ACTIONS(797), + [sym_none] = ACTIONS(799), + [sym_true] = ACTIONS(799), + [sym_false] = ACTIONS(799), + [sym_nil] = ACTIONS(799), + [anon_sym_if] = ACTIONS(801), + [anon_sym_else] = ACTIONS(803), + [anon_sym_DOLLARif] = ACTIONS(805), + [anon_sym_match] = ACTIONS(807), + [anon_sym_select] = ACTIONS(809), + [anon_sym_lock] = ACTIONS(811), + [anon_sym_rlock] = ACTIONS(811), + [anon_sym_unsafe] = ACTIONS(813), + [anon_sym_sql] = ACTIONS(815), + [sym_int_literal] = ACTIONS(799), + [sym_float_literal] = ACTIONS(817), + [sym_rune_literal] = ACTIONS(817), + [sym_pseudo_compile_time_identifier] = ACTIONS(819), [anon_sym_shared] = ACTIONS(83), [anon_sym_map_LBRACK] = ACTIONS(85), [anon_sym_chan] = ACTIONS(87), [anon_sym_thread] = ACTIONS(89), [anon_sym_atomic] = ACTIONS(91), - [sym___double_quote] = ACTIONS(755), - [sym___single_quote] = ACTIONS(757), - [sym___c_double_quote] = ACTIONS(759), - [sym___c_single_quote] = ACTIONS(761), - [sym___r_double_quote] = ACTIONS(763), - [sym___r_single_quote] = ACTIONS(765), + [sym___double_quote] = ACTIONS(821), + [sym___single_quote] = ACTIONS(823), + [sym___c_double_quote] = ACTIONS(825), + [sym___c_single_quote] = ACTIONS(827), + [sym___r_double_quote] = ACTIONS(829), + [sym___r_single_quote] = ACTIONS(831), }, [149] = { [sym_line_comment] = STATE(149), [sym_block_comment] = STATE(149), - [sym__expression] = STATE(2731), - [sym__expression_without_blocks] = STATE(1902), - [sym__expression_with_blocks] = STATE(2870), - [sym_inc_expression] = STATE(2032), - [sym_dec_expression] = STATE(2032), - [sym_or_block_expression] = STATE(2032), - [sym_option_propagation_expression] = STATE(2032), - [sym_result_propagation_expression] = STATE(2032), - [sym_anon_struct_value_expression] = STATE(2868), - [sym_go_expression] = STATE(2032), - [sym_spawn_expression] = STATE(2032), - [sym_parenthesized_expression] = STATE(2032), - [sym_call_expression] = STATE(2032), - [sym_type_initializer] = STATE(2868), - [sym_function_literal] = STATE(2032), - [sym_reference_expression] = STATE(1914), - [sym_type_reference_expression] = STATE(3541), - [sym_unary_expression] = STATE(2032), - [sym_receive_expression] = STATE(2032), - [sym_binary_expression] = STATE(2032), - [sym_as_type_cast_expression] = STATE(2032), - [sym__max_group] = STATE(2032), - [sym_literal] = STATE(2027), - [sym_map_init_expression] = STATE(2868), - [sym_array_creation] = STATE(2032), - [sym_fixed_array_creation] = STATE(2032), - [sym_selector_expression] = STATE(2032), - [sym_index_expression] = STATE(2032), - [sym_slice_expression] = STATE(2032), - [sym_if_expression] = STATE(2868), - [sym_compile_time_if_expression] = STATE(2868), - [sym_is_expression] = STATE(2032), - [sym_in_expression] = STATE(2032), - [sym_enum_fetch] = STATE(2032), - [sym_match_expression] = STATE(2868), - [sym_select_expression] = STATE(2868), - [sym_select_arm] = STATE(2139), - [sym_select_arm_statement] = STATE(4161), - [sym_select_var_declaration] = STATE(4478), - [sym_lock_expression] = STATE(2868), - [sym_unsafe_expression] = STATE(2868), - [sym_sql_expression] = STATE(2868), - [sym_c_string_literal] = STATE(2026), - [sym_raw_string_literal] = STATE(2026), - [sym_interpreted_string_literal] = STATE(2026), - [sym_mutability_modifiers] = STATE(635), - [sym_mutable_identifier] = STATE(3928), - [sym_identifier_list] = STATE(4484), + [sym__expression] = STATE(2780), + [sym__expression_without_blocks] = STATE(1903), + [sym__expression_with_blocks] = STATE(2882), + [sym_inc_expression] = STATE(2035), + [sym_dec_expression] = STATE(2035), + [sym_or_block_expression] = STATE(2035), + [sym_option_propagation_expression] = STATE(2035), + [sym_result_propagation_expression] = STATE(2035), + [sym_anon_struct_value_expression] = STATE(2877), + [sym_go_expression] = STATE(2035), + [sym_spawn_expression] = STATE(2035), + [sym_parenthesized_expression] = STATE(2035), + [sym_call_expression] = STATE(2035), + [sym_type_initializer] = STATE(2877), + [sym_function_literal] = STATE(2035), + [sym_reference_expression] = STATE(1944), + [sym_type_reference_expression] = STATE(3460), + [sym_unary_expression] = STATE(2035), + [sym_receive_expression] = STATE(2035), + [sym_binary_expression] = STATE(2035), + [sym_as_type_cast_expression] = STATE(2035), + [sym__max_group] = STATE(2035), + [sym_literal] = STATE(2030), + [sym_map_init_expression] = STATE(2877), + [sym_array_creation] = STATE(2035), + [sym_fixed_array_creation] = STATE(2035), + [sym_selector_expression] = STATE(2035), + [sym_index_expression] = STATE(2035), + [sym_slice_expression] = STATE(2035), + [sym_if_expression] = STATE(2877), + [sym_compile_time_if_expression] = STATE(2877), + [sym_is_expression] = STATE(2035), + [sym_in_expression] = STATE(2035), + [sym_enum_fetch] = STATE(2035), + [sym_match_expression] = STATE(2877), + [sym_select_expression] = STATE(2877), + [sym_select_arm] = STATE(2140), + [sym_select_arm_statement] = STATE(4150), + [sym_select_var_declaration] = STATE(4507), + [sym_lock_expression] = STATE(2877), + [sym_unsafe_expression] = STATE(2877), + [sym_sql_expression] = STATE(2877), + [sym_c_string_literal] = STATE(2029), + [sym_raw_string_literal] = STATE(2029), + [sym_interpreted_string_literal] = STATE(2029), + [sym_mutability_modifiers] = STATE(641), + [sym_mutable_identifier] = STATE(3847), + [sym_identifier_list] = STATE(4511), [sym_expression_without_blocks_list] = STATE(3279), - [sym_plain_type] = STATE(4094), - [sym__plain_type_without_special] = STATE(2302), - [sym_anon_struct_type] = STATE(2303), - [sym_multi_return_type] = STATE(2302), - [sym_result_type] = STATE(2302), - [sym_option_type] = STATE(2302), - [sym_qualified_type] = STATE(3541), - [sym_fixed_array_type] = STATE(2303), - [sym_array_type] = STATE(2303), - [sym_pointer_type] = STATE(2303), - [sym_wrong_pointer_type] = STATE(2303), - [sym_map_type] = STATE(2303), - [sym_channel_type] = STATE(2303), - [sym_shared_type] = STATE(2303), - [sym_thread_type] = STATE(2303), - [sym_atomic_type] = STATE(2303), - [sym_generic_type] = STATE(2303), - [sym_function_type] = STATE(2303), - [sym_send_statement] = STATE(4478), + [sym_plain_type] = STATE(4297), + [sym__plain_type_without_special] = STATE(2360), + [sym_anon_struct_type] = STATE(2362), + [sym_multi_return_type] = STATE(2360), + [sym_result_type] = STATE(2360), + [sym_option_type] = STATE(2360), + [sym_qualified_type] = STATE(3460), + [sym_fixed_array_type] = STATE(2362), + [sym_array_type] = STATE(2362), + [sym_pointer_type] = STATE(2362), + [sym_wrong_pointer_type] = STATE(2362), + [sym_map_type] = STATE(2362), + [sym_channel_type] = STATE(2362), + [sym_shared_type] = STATE(2362), + [sym_thread_type] = STATE(2362), + [sym_atomic_type] = STATE(2362), + [sym_generic_type] = STATE(2362), + [sym_function_type] = STATE(2362), + [sym_send_statement] = STATE(4507), [aux_sym_select_expression_repeat1] = STATE(149), [sym_identifier] = ACTIONS(953), [anon_sym_SLASH_SLASH] = ACTIONS(3), @@ -39685,86 +39703,332 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [150] = { [sym_line_comment] = STATE(150), [sym_block_comment] = STATE(150), - [sym__expression] = STATE(1117), - [sym__expression_without_blocks] = STATE(1141), - [sym__expression_with_blocks] = STATE(1141), - [sym_inc_expression] = STATE(1140), - [sym_dec_expression] = STATE(1140), - [sym_or_block_expression] = STATE(1140), - [sym_option_propagation_expression] = STATE(1140), - [sym_result_propagation_expression] = STATE(1140), - [sym_anon_struct_value_expression] = STATE(1199), - [sym_go_expression] = STATE(1140), - [sym_spawn_expression] = STATE(1140), - [sym_parenthesized_expression] = STATE(1140), - [sym_call_expression] = STATE(1140), - [sym_short_lambda] = STATE(4631), - [sym_argument] = STATE(1903), - [sym_type_initializer] = STATE(1199), + [sym__expression] = STATE(2585), + [sym__expression_without_blocks] = STATE(2584), + [sym__expression_with_blocks] = STATE(2638), + [sym_inc_expression] = STATE(2765), + [sym_dec_expression] = STATE(2765), + [sym_or_block_expression] = STATE(2765), + [sym_option_propagation_expression] = STATE(2765), + [sym_result_propagation_expression] = STATE(2765), + [sym_anon_struct_value_expression] = STATE(2637), + [sym_go_expression] = STATE(2765), + [sym_spawn_expression] = STATE(2765), + [sym_parenthesized_expression] = STATE(2765), + [sym_call_expression] = STATE(2765), + [sym_type_initializer] = STATE(2637), + [sym_function_literal] = STATE(2765), + [sym_reference_expression] = STATE(2764), + [sym_type_reference_expression] = STATE(3460), + [sym_unary_expression] = STATE(2765), + [sym_receive_expression] = STATE(2765), + [sym_binary_expression] = STATE(2765), + [sym_as_type_cast_expression] = STATE(2765), + [sym__max_group] = STATE(2765), + [sym_literal] = STATE(2771), + [sym_map_init_expression] = STATE(2637), + [sym_array_creation] = STATE(2765), + [sym_fixed_array_creation] = STATE(2765), + [sym_selector_expression] = STATE(2765), + [sym_index_expression] = STATE(2765), + [sym_slice_expression] = STATE(2765), + [sym_if_expression] = STATE(2637), + [sym_compile_time_if_expression] = STATE(2637), + [sym_is_expression] = STATE(2765), + [sym_in_expression] = STATE(2765), + [sym_enum_fetch] = STATE(2765), + [sym_match_expression] = STATE(2637), + [sym_match_arms] = STATE(4644), + [sym_match_arm] = STATE(2141), + [sym_match_expression_list] = STATE(4299), + [sym_match_arm_type] = STATE(3851), + [sym_match_else_arm_clause] = STATE(2141), + [sym_select_expression] = STATE(2637), + [sym_lock_expression] = STATE(2637), + [sym_unsafe_expression] = STATE(2637), + [sym_sql_expression] = STATE(2637), + [sym_c_string_literal] = STATE(2762), + [sym_raw_string_literal] = STATE(2762), + [sym_interpreted_string_literal] = STATE(2762), + [sym_mutability_modifiers] = STATE(822), + [sym_plain_type] = STATE(3848), + [sym__plain_type_without_special] = STATE(2360), + [sym_anon_struct_type] = STATE(2362), + [sym_multi_return_type] = STATE(2360), + [sym_result_type] = STATE(2360), + [sym_option_type] = STATE(2360), + [sym_qualified_type] = STATE(3460), + [sym_fixed_array_type] = STATE(2362), + [sym_array_type] = STATE(2362), + [sym_pointer_type] = STATE(2362), + [sym_wrong_pointer_type] = STATE(2362), + [sym_map_type] = STATE(2362), + [sym_channel_type] = STATE(2362), + [sym_shared_type] = STATE(2362), + [sym_thread_type] = STATE(2362), + [sym_atomic_type] = STATE(2362), + [sym_generic_type] = STATE(2362), + [sym_function_type] = STATE(2362), + [sym__definite_range] = STATE(3816), + [aux_sym_match_arms_repeat1] = STATE(188), + [sym_identifier] = ACTIONS(1071), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(1073), + [anon_sym_LBRACE] = ACTIONS(1075), + [anon_sym_RBRACE] = ACTIONS(1077), + [anon_sym_LPAREN] = ACTIONS(1079), + [anon_sym_fn] = ACTIONS(1081), + [anon_sym_PLUS] = ACTIONS(1083), + [anon_sym_DASH] = ACTIONS(1083), + [anon_sym_STAR] = ACTIONS(1085), + [anon_sym_struct] = ACTIONS(1087), + [anon_sym_mut] = ACTIONS(41), + [anon_sym_QMARK] = ACTIONS(47), + [anon_sym_BANG] = ACTIONS(1089), + [anon_sym_go] = ACTIONS(1091), + [anon_sym_spawn] = ACTIONS(1093), + [anon_sym_json_DOTdecode] = ACTIONS(1095), + [anon_sym_LBRACK2] = ACTIONS(1097), + [anon_sym_TILDE] = ACTIONS(1083), + [anon_sym_CARET] = ACTIONS(1083), + [anon_sym_AMP] = ACTIONS(1099), + [anon_sym_LT_DASH] = ACTIONS(1101), + [sym_none] = ACTIONS(1103), + [sym_true] = ACTIONS(1103), + [sym_false] = ACTIONS(1103), + [sym_nil] = ACTIONS(1103), + [anon_sym_if] = ACTIONS(1105), + [anon_sym_else] = ACTIONS(1107), + [anon_sym_DOLLARif] = ACTIONS(1109), + [anon_sym_match] = ACTIONS(1111), + [anon_sym_select] = ACTIONS(1113), + [anon_sym_lock] = ACTIONS(1115), + [anon_sym_rlock] = ACTIONS(1115), + [anon_sym_unsafe] = ACTIONS(1117), + [anon_sym_sql] = ACTIONS(1119), + [sym_int_literal] = ACTIONS(1103), + [sym_float_literal] = ACTIONS(1121), + [sym_rune_literal] = ACTIONS(1121), + [sym_pseudo_compile_time_identifier] = ACTIONS(1123), + [anon_sym_shared] = ACTIONS(83), + [anon_sym_map_LBRACK] = ACTIONS(85), + [anon_sym_chan] = ACTIONS(87), + [anon_sym_thread] = ACTIONS(89), + [anon_sym_atomic] = ACTIONS(91), + [sym___double_quote] = ACTIONS(1125), + [sym___single_quote] = ACTIONS(1127), + [sym___c_double_quote] = ACTIONS(1129), + [sym___c_single_quote] = ACTIONS(1131), + [sym___r_double_quote] = ACTIONS(1133), + [sym___r_single_quote] = ACTIONS(1135), + }, + [151] = { + [sym_line_comment] = STATE(151), + [sym_block_comment] = STATE(151), + [sym__expression] = STATE(2585), + [sym__expression_without_blocks] = STATE(2584), + [sym__expression_with_blocks] = STATE(2638), + [sym_inc_expression] = STATE(2765), + [sym_dec_expression] = STATE(2765), + [sym_or_block_expression] = STATE(2765), + [sym_option_propagation_expression] = STATE(2765), + [sym_result_propagation_expression] = STATE(2765), + [sym_anon_struct_value_expression] = STATE(2637), + [sym_go_expression] = STATE(2765), + [sym_spawn_expression] = STATE(2765), + [sym_parenthesized_expression] = STATE(2765), + [sym_call_expression] = STATE(2765), + [sym_type_initializer] = STATE(2637), + [sym_function_literal] = STATE(2765), + [sym_reference_expression] = STATE(2764), + [sym_type_reference_expression] = STATE(3460), + [sym_unary_expression] = STATE(2765), + [sym_receive_expression] = STATE(2765), + [sym_binary_expression] = STATE(2765), + [sym_as_type_cast_expression] = STATE(2765), + [sym__max_group] = STATE(2765), + [sym_literal] = STATE(2771), + [sym_map_init_expression] = STATE(2637), + [sym_array_creation] = STATE(2765), + [sym_fixed_array_creation] = STATE(2765), + [sym_selector_expression] = STATE(2765), + [sym_index_expression] = STATE(2765), + [sym_slice_expression] = STATE(2765), + [sym_if_expression] = STATE(2637), + [sym_compile_time_if_expression] = STATE(2637), + [sym_is_expression] = STATE(2765), + [sym_in_expression] = STATE(2765), + [sym_enum_fetch] = STATE(2765), + [sym_match_expression] = STATE(2637), + [sym_match_arms] = STATE(4590), + [sym_match_arm] = STATE(2141), + [sym_match_expression_list] = STATE(4299), + [sym_match_arm_type] = STATE(3851), + [sym_match_else_arm_clause] = STATE(2141), + [sym_select_expression] = STATE(2637), + [sym_lock_expression] = STATE(2637), + [sym_unsafe_expression] = STATE(2637), + [sym_sql_expression] = STATE(2637), + [sym_c_string_literal] = STATE(2762), + [sym_raw_string_literal] = STATE(2762), + [sym_interpreted_string_literal] = STATE(2762), + [sym_mutability_modifiers] = STATE(822), + [sym_plain_type] = STATE(3848), + [sym__plain_type_without_special] = STATE(2360), + [sym_anon_struct_type] = STATE(2362), + [sym_multi_return_type] = STATE(2360), + [sym_result_type] = STATE(2360), + [sym_option_type] = STATE(2360), + [sym_qualified_type] = STATE(3460), + [sym_fixed_array_type] = STATE(2362), + [sym_array_type] = STATE(2362), + [sym_pointer_type] = STATE(2362), + [sym_wrong_pointer_type] = STATE(2362), + [sym_map_type] = STATE(2362), + [sym_channel_type] = STATE(2362), + [sym_shared_type] = STATE(2362), + [sym_thread_type] = STATE(2362), + [sym_atomic_type] = STATE(2362), + [sym_generic_type] = STATE(2362), + [sym_function_type] = STATE(2362), + [sym__definite_range] = STATE(3816), + [aux_sym_match_arms_repeat1] = STATE(188), + [sym_identifier] = ACTIONS(1071), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(1073), + [anon_sym_LBRACE] = ACTIONS(1075), + [anon_sym_RBRACE] = ACTIONS(1137), + [anon_sym_LPAREN] = ACTIONS(1079), + [anon_sym_fn] = ACTIONS(1081), + [anon_sym_PLUS] = ACTIONS(1083), + [anon_sym_DASH] = ACTIONS(1083), + [anon_sym_STAR] = ACTIONS(1085), + [anon_sym_struct] = ACTIONS(1087), + [anon_sym_mut] = ACTIONS(41), + [anon_sym_QMARK] = ACTIONS(47), + [anon_sym_BANG] = ACTIONS(1089), + [anon_sym_go] = ACTIONS(1091), + [anon_sym_spawn] = ACTIONS(1093), + [anon_sym_json_DOTdecode] = ACTIONS(1095), + [anon_sym_LBRACK2] = ACTIONS(1097), + [anon_sym_TILDE] = ACTIONS(1083), + [anon_sym_CARET] = ACTIONS(1083), + [anon_sym_AMP] = ACTIONS(1099), + [anon_sym_LT_DASH] = ACTIONS(1101), + [sym_none] = ACTIONS(1103), + [sym_true] = ACTIONS(1103), + [sym_false] = ACTIONS(1103), + [sym_nil] = ACTIONS(1103), + [anon_sym_if] = ACTIONS(1105), + [anon_sym_else] = ACTIONS(1107), + [anon_sym_DOLLARif] = ACTIONS(1109), + [anon_sym_match] = ACTIONS(1111), + [anon_sym_select] = ACTIONS(1113), + [anon_sym_lock] = ACTIONS(1115), + [anon_sym_rlock] = ACTIONS(1115), + [anon_sym_unsafe] = ACTIONS(1117), + [anon_sym_sql] = ACTIONS(1119), + [sym_int_literal] = ACTIONS(1103), + [sym_float_literal] = ACTIONS(1121), + [sym_rune_literal] = ACTIONS(1121), + [sym_pseudo_compile_time_identifier] = ACTIONS(1123), + [anon_sym_shared] = ACTIONS(83), + [anon_sym_map_LBRACK] = ACTIONS(85), + [anon_sym_chan] = ACTIONS(87), + [anon_sym_thread] = ACTIONS(89), + [anon_sym_atomic] = ACTIONS(91), + [sym___double_quote] = ACTIONS(1125), + [sym___single_quote] = ACTIONS(1127), + [sym___c_double_quote] = ACTIONS(1129), + [sym___c_single_quote] = ACTIONS(1131), + [sym___r_double_quote] = ACTIONS(1133), + [sym___r_single_quote] = ACTIONS(1135), + }, + [152] = { + [sym_line_comment] = STATE(152), + [sym_block_comment] = STATE(152), + [sym__expression] = STATE(1126), + [sym__expression_without_blocks] = STATE(1210), + [sym__expression_with_blocks] = STATE(1210), + [sym_inc_expression] = STATE(1211), + [sym_dec_expression] = STATE(1211), + [sym_or_block_expression] = STATE(1211), + [sym_option_propagation_expression] = STATE(1211), + [sym_result_propagation_expression] = STATE(1211), + [sym_anon_struct_value_expression] = STATE(1212), + [sym_go_expression] = STATE(1211), + [sym_spawn_expression] = STATE(1211), + [sym_parenthesized_expression] = STATE(1211), + [sym_call_expression] = STATE(1211), + [sym_short_lambda] = STATE(4432), + [sym_argument] = STATE(1907), + [sym_type_initializer] = STATE(1212), [sym_keyed_element] = STATE(1904), - [sym_function_literal] = STATE(1140), - [sym_reference_expression] = STATE(1236), - [sym_type_reference_expression] = STATE(3541), - [sym_unary_expression] = STATE(1140), - [sym_receive_expression] = STATE(1140), - [sym_binary_expression] = STATE(1140), - [sym_as_type_cast_expression] = STATE(1140), - [sym__max_group] = STATE(1140), - [sym_literal] = STATE(1146), + [sym_function_literal] = STATE(1211), + [sym_reference_expression] = STATE(1252), + [sym_type_reference_expression] = STATE(3460), + [sym_unary_expression] = STATE(1211), + [sym_receive_expression] = STATE(1211), + [sym_binary_expression] = STATE(1211), + [sym_as_type_cast_expression] = STATE(1211), + [sym__max_group] = STATE(1211), + [sym_literal] = STATE(1209), [sym_spread_expression] = STATE(1904), - [sym_map_init_expression] = STATE(1199), - [sym_array_creation] = STATE(1140), - [sym_fixed_array_creation] = STATE(1140), - [sym_selector_expression] = STATE(1140), - [sym_index_expression] = STATE(1140), - [sym_slice_expression] = STATE(1140), - [sym_if_expression] = STATE(1199), - [sym_compile_time_if_expression] = STATE(1199), - [sym_is_expression] = STATE(1140), - [sym_in_expression] = STATE(1140), - [sym_enum_fetch] = STATE(1140), - [sym_match_expression] = STATE(1199), - [sym_select_expression] = STATE(1199), - [sym_lock_expression] = STATE(1199), - [sym_unsafe_expression] = STATE(1199), - [sym_sql_expression] = STATE(1199), - [sym_c_string_literal] = STATE(1147), - [sym_raw_string_literal] = STATE(1147), - [sym_interpreted_string_literal] = STATE(1147), - [sym_mutability_modifiers] = STATE(789), + [sym_map_init_expression] = STATE(1212), + [sym_array_creation] = STATE(1211), + [sym_fixed_array_creation] = STATE(1211), + [sym_selector_expression] = STATE(1211), + [sym_index_expression] = STATE(1211), + [sym_slice_expression] = STATE(1211), + [sym_if_expression] = STATE(1212), + [sym_compile_time_if_expression] = STATE(1212), + [sym_is_expression] = STATE(1211), + [sym_in_expression] = STATE(1211), + [sym_enum_fetch] = STATE(1211), + [sym_match_expression] = STATE(1212), + [sym_select_expression] = STATE(1212), + [sym_lock_expression] = STATE(1212), + [sym_unsafe_expression] = STATE(1212), + [sym_sql_expression] = STATE(1212), + [sym_c_string_literal] = STATE(1201), + [sym_raw_string_literal] = STATE(1201), + [sym_interpreted_string_literal] = STATE(1201), + [sym_mutability_modifiers] = STATE(769), [sym_mutable_expression] = STATE(1904), - [sym_plain_type] = STATE(4234), - [sym__plain_type_without_special] = STATE(2302), - [sym_anon_struct_type] = STATE(2303), - [sym_multi_return_type] = STATE(2302), - [sym_result_type] = STATE(2302), - [sym_option_type] = STATE(2302), - [sym_qualified_type] = STATE(3541), - [sym_fixed_array_type] = STATE(2303), - [sym_array_type] = STATE(2303), - [sym_pointer_type] = STATE(2303), - [sym_wrong_pointer_type] = STATE(2303), - [sym_map_type] = STATE(2303), - [sym_channel_type] = STATE(2303), - [sym_shared_type] = STATE(2303), - [sym_thread_type] = STATE(2303), - [sym_atomic_type] = STATE(2303), - [sym_generic_type] = STATE(2303), - [sym_function_type] = STATE(2303), - [aux_sym_argument_list_repeat1] = STATE(204), - [sym_identifier] = ACTIONS(1071), + [sym_plain_type] = STATE(4123), + [sym__plain_type_without_special] = STATE(2360), + [sym_anon_struct_type] = STATE(2362), + [sym_multi_return_type] = STATE(2360), + [sym_result_type] = STATE(2360), + [sym_option_type] = STATE(2360), + [sym_qualified_type] = STATE(3460), + [sym_fixed_array_type] = STATE(2362), + [sym_array_type] = STATE(2362), + [sym_pointer_type] = STATE(2362), + [sym_wrong_pointer_type] = STATE(2362), + [sym_map_type] = STATE(2362), + [sym_channel_type] = STATE(2362), + [sym_shared_type] = STATE(2362), + [sym_thread_type] = STATE(2362), + [sym_atomic_type] = STATE(2362), + [sym_generic_type] = STATE(2362), + [sym_function_type] = STATE(2362), + [aux_sym_argument_list_repeat1] = STATE(201), + [sym_identifier] = ACTIONS(1139), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), [anon_sym_DOT] = ACTIONS(631), [anon_sym_LBRACE] = ACTIONS(633), [anon_sym_LPAREN] = ACTIONS(637), - [anon_sym_RPAREN] = ACTIONS(1073), - [anon_sym_PIPE] = ACTIONS(1075), + [anon_sym_RPAREN] = ACTIONS(1141), + [anon_sym_PIPE] = ACTIONS(1143), [anon_sym_fn] = ACTIONS(641), [anon_sym_PLUS] = ACTIONS(643), [anon_sym_DASH] = ACTIONS(643), [anon_sym_STAR] = ACTIONS(645), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1077), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1145), [anon_sym_struct] = ACTIONS(649), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), @@ -39805,212 +40069,335 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym___r_double_quote] = ACTIONS(697), [sym___r_single_quote] = ACTIONS(699), }, - [151] = { - [sym_line_comment] = STATE(151), - [sym_block_comment] = STATE(151), - [sym__expression] = STATE(2611), - [sym__expression_without_blocks] = STATE(2579), - [sym__expression_with_blocks] = STATE(2625), + [153] = { + [sym_line_comment] = STATE(153), + [sym_block_comment] = STATE(153), + [sym__expression] = STATE(1126), + [sym__expression_without_blocks] = STATE(1210), + [sym__expression_with_blocks] = STATE(1210), + [sym_inc_expression] = STATE(1211), + [sym_dec_expression] = STATE(1211), + [sym_or_block_expression] = STATE(1211), + [sym_option_propagation_expression] = STATE(1211), + [sym_result_propagation_expression] = STATE(1211), + [sym_anon_struct_value_expression] = STATE(1212), + [sym_go_expression] = STATE(1211), + [sym_spawn_expression] = STATE(1211), + [sym_parenthesized_expression] = STATE(1211), + [sym_call_expression] = STATE(1211), + [sym_short_lambda] = STATE(4388), + [sym_argument] = STATE(1907), + [sym_type_initializer] = STATE(1212), + [sym_keyed_element] = STATE(1904), + [sym_function_literal] = STATE(1211), + [sym_reference_expression] = STATE(1252), + [sym_type_reference_expression] = STATE(3460), + [sym_unary_expression] = STATE(1211), + [sym_receive_expression] = STATE(1211), + [sym_binary_expression] = STATE(1211), + [sym_as_type_cast_expression] = STATE(1211), + [sym__max_group] = STATE(1211), + [sym_literal] = STATE(1209), + [sym_spread_expression] = STATE(1904), + [sym_map_init_expression] = STATE(1212), + [sym_array_creation] = STATE(1211), + [sym_fixed_array_creation] = STATE(1211), + [sym_selector_expression] = STATE(1211), + [sym_index_expression] = STATE(1211), + [sym_slice_expression] = STATE(1211), + [sym_if_expression] = STATE(1212), + [sym_compile_time_if_expression] = STATE(1212), + [sym_is_expression] = STATE(1211), + [sym_in_expression] = STATE(1211), + [sym_enum_fetch] = STATE(1211), + [sym_match_expression] = STATE(1212), + [sym_select_expression] = STATE(1212), + [sym_lock_expression] = STATE(1212), + [sym_unsafe_expression] = STATE(1212), + [sym_sql_expression] = STATE(1212), + [sym_c_string_literal] = STATE(1201), + [sym_raw_string_literal] = STATE(1201), + [sym_interpreted_string_literal] = STATE(1201), + [sym_mutability_modifiers] = STATE(769), + [sym_mutable_expression] = STATE(1904), + [sym_plain_type] = STATE(4123), + [sym__plain_type_without_special] = STATE(2360), + [sym_anon_struct_type] = STATE(2362), + [sym_multi_return_type] = STATE(2360), + [sym_result_type] = STATE(2360), + [sym_option_type] = STATE(2360), + [sym_qualified_type] = STATE(3460), + [sym_fixed_array_type] = STATE(2362), + [sym_array_type] = STATE(2362), + [sym_pointer_type] = STATE(2362), + [sym_wrong_pointer_type] = STATE(2362), + [sym_map_type] = STATE(2362), + [sym_channel_type] = STATE(2362), + [sym_shared_type] = STATE(2362), + [sym_thread_type] = STATE(2362), + [sym_atomic_type] = STATE(2362), + [sym_generic_type] = STATE(2362), + [sym_function_type] = STATE(2362), + [aux_sym_argument_list_repeat1] = STATE(205), + [sym_identifier] = ACTIONS(1139), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(631), + [anon_sym_LBRACE] = ACTIONS(633), + [anon_sym_LPAREN] = ACTIONS(637), + [anon_sym_RPAREN] = ACTIONS(1147), + [anon_sym_PIPE] = ACTIONS(1143), + [anon_sym_fn] = ACTIONS(641), + [anon_sym_PLUS] = ACTIONS(643), + [anon_sym_DASH] = ACTIONS(643), + [anon_sym_STAR] = ACTIONS(645), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1145), + [anon_sym_struct] = ACTIONS(649), + [anon_sym_mut] = ACTIONS(41), + [anon_sym_QMARK] = ACTIONS(47), + [anon_sym_BANG] = ACTIONS(655), + [anon_sym_go] = ACTIONS(657), + [anon_sym_spawn] = ACTIONS(659), + [anon_sym_json_DOTdecode] = ACTIONS(661), + [anon_sym_LBRACK2] = ACTIONS(663), + [anon_sym_TILDE] = ACTIONS(643), + [anon_sym_CARET] = ACTIONS(643), + [anon_sym_AMP] = ACTIONS(665), + [anon_sym_LT_DASH] = ACTIONS(667), + [sym_none] = ACTIONS(669), + [sym_true] = ACTIONS(669), + [sym_false] = ACTIONS(669), + [sym_nil] = ACTIONS(669), + [anon_sym_if] = ACTIONS(671), + [anon_sym_DOLLARif] = ACTIONS(673), + [anon_sym_match] = ACTIONS(675), + [anon_sym_select] = ACTIONS(677), + [anon_sym_lock] = ACTIONS(679), + [anon_sym_rlock] = ACTIONS(679), + [anon_sym_unsafe] = ACTIONS(681), + [anon_sym_sql] = ACTIONS(683), + [sym_int_literal] = ACTIONS(669), + [sym_float_literal] = ACTIONS(685), + [sym_rune_literal] = ACTIONS(685), + [sym_pseudo_compile_time_identifier] = ACTIONS(687), + [anon_sym_shared] = ACTIONS(83), + [anon_sym_map_LBRACK] = ACTIONS(85), + [anon_sym_chan] = ACTIONS(87), + [anon_sym_thread] = ACTIONS(89), + [anon_sym_atomic] = ACTIONS(91), + [sym___double_quote] = ACTIONS(689), + [sym___single_quote] = ACTIONS(691), + [sym___c_double_quote] = ACTIONS(693), + [sym___c_single_quote] = ACTIONS(695), + [sym___r_double_quote] = ACTIONS(697), + [sym___r_single_quote] = ACTIONS(699), + }, + [154] = { + [sym_line_comment] = STATE(154), + [sym_block_comment] = STATE(154), + [sym__expression] = STATE(2585), + [sym__expression_without_blocks] = STATE(2584), + [sym__expression_with_blocks] = STATE(2638), [sym_inc_expression] = STATE(2765), [sym_dec_expression] = STATE(2765), [sym_or_block_expression] = STATE(2765), [sym_option_propagation_expression] = STATE(2765), [sym_result_propagation_expression] = STATE(2765), - [sym_anon_struct_value_expression] = STATE(2619), + [sym_anon_struct_value_expression] = STATE(2637), [sym_go_expression] = STATE(2765), [sym_spawn_expression] = STATE(2765), [sym_parenthesized_expression] = STATE(2765), [sym_call_expression] = STATE(2765), - [sym_type_initializer] = STATE(2619), + [sym_type_initializer] = STATE(2637), [sym_function_literal] = STATE(2765), [sym_reference_expression] = STATE(2764), - [sym_type_reference_expression] = STATE(3541), + [sym_type_reference_expression] = STATE(3460), [sym_unary_expression] = STATE(2765), [sym_receive_expression] = STATE(2765), [sym_binary_expression] = STATE(2765), [sym_as_type_cast_expression] = STATE(2765), [sym__max_group] = STATE(2765), - [sym_literal] = STATE(2769), - [sym_map_init_expression] = STATE(2619), + [sym_literal] = STATE(2771), + [sym_map_init_expression] = STATE(2637), [sym_array_creation] = STATE(2765), [sym_fixed_array_creation] = STATE(2765), [sym_selector_expression] = STATE(2765), [sym_index_expression] = STATE(2765), [sym_slice_expression] = STATE(2765), - [sym_if_expression] = STATE(2619), - [sym_compile_time_if_expression] = STATE(2619), + [sym_if_expression] = STATE(2637), + [sym_compile_time_if_expression] = STATE(2637), [sym_is_expression] = STATE(2765), [sym_in_expression] = STATE(2765), [sym_enum_fetch] = STATE(2765), - [sym_match_expression] = STATE(2619), - [sym_match_arms] = STATE(4383), - [sym_match_arm] = STATE(2132), - [sym_match_expression_list] = STATE(4087), - [sym_match_arm_type] = STATE(3795), - [sym_match_else_arm_clause] = STATE(2132), - [sym_select_expression] = STATE(2619), - [sym_lock_expression] = STATE(2619), - [sym_unsafe_expression] = STATE(2619), - [sym_sql_expression] = STATE(2619), - [sym_c_string_literal] = STATE(2660), - [sym_raw_string_literal] = STATE(2660), - [sym_interpreted_string_literal] = STATE(2660), - [sym_mutability_modifiers] = STATE(567), - [sym_plain_type] = STATE(3784), - [sym__plain_type_without_special] = STATE(2302), - [sym_anon_struct_type] = STATE(2303), - [sym_multi_return_type] = STATE(2302), - [sym_result_type] = STATE(2302), - [sym_option_type] = STATE(2302), - [sym_qualified_type] = STATE(3541), - [sym_fixed_array_type] = STATE(2303), - [sym_array_type] = STATE(2303), - [sym_pointer_type] = STATE(2303), - [sym_wrong_pointer_type] = STATE(2303), - [sym_map_type] = STATE(2303), - [sym_channel_type] = STATE(2303), - [sym_shared_type] = STATE(2303), - [sym_thread_type] = STATE(2303), - [sym_atomic_type] = STATE(2303), - [sym_generic_type] = STATE(2303), - [sym_function_type] = STATE(2303), - [sym__definite_range] = STATE(3781), - [aux_sym_match_arms_repeat1] = STATE(184), - [sym_identifier] = ACTIONS(1079), + [sym_match_expression] = STATE(2637), + [sym_match_arms] = STATE(4541), + [sym_match_arm] = STATE(2141), + [sym_match_expression_list] = STATE(4299), + [sym_match_arm_type] = STATE(3851), + [sym_match_else_arm_clause] = STATE(2141), + [sym_select_expression] = STATE(2637), + [sym_lock_expression] = STATE(2637), + [sym_unsafe_expression] = STATE(2637), + [sym_sql_expression] = STATE(2637), + [sym_c_string_literal] = STATE(2762), + [sym_raw_string_literal] = STATE(2762), + [sym_interpreted_string_literal] = STATE(2762), + [sym_mutability_modifiers] = STATE(822), + [sym_plain_type] = STATE(3848), + [sym__plain_type_without_special] = STATE(2360), + [sym_anon_struct_type] = STATE(2362), + [sym_multi_return_type] = STATE(2360), + [sym_result_type] = STATE(2360), + [sym_option_type] = STATE(2360), + [sym_qualified_type] = STATE(3460), + [sym_fixed_array_type] = STATE(2362), + [sym_array_type] = STATE(2362), + [sym_pointer_type] = STATE(2362), + [sym_wrong_pointer_type] = STATE(2362), + [sym_map_type] = STATE(2362), + [sym_channel_type] = STATE(2362), + [sym_shared_type] = STATE(2362), + [sym_thread_type] = STATE(2362), + [sym_atomic_type] = STATE(2362), + [sym_generic_type] = STATE(2362), + [sym_function_type] = STATE(2362), + [sym__definite_range] = STATE(3816), + [aux_sym_match_arms_repeat1] = STATE(188), + [sym_identifier] = ACTIONS(1071), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1081), - [anon_sym_LBRACE] = ACTIONS(1083), - [anon_sym_RBRACE] = ACTIONS(1085), - [anon_sym_LPAREN] = ACTIONS(1087), - [anon_sym_fn] = ACTIONS(1089), - [anon_sym_PLUS] = ACTIONS(1091), - [anon_sym_DASH] = ACTIONS(1091), - [anon_sym_STAR] = ACTIONS(1093), - [anon_sym_struct] = ACTIONS(1095), + [anon_sym_DOT] = ACTIONS(1073), + [anon_sym_LBRACE] = ACTIONS(1075), + [anon_sym_RBRACE] = ACTIONS(1149), + [anon_sym_LPAREN] = ACTIONS(1079), + [anon_sym_fn] = ACTIONS(1081), + [anon_sym_PLUS] = ACTIONS(1083), + [anon_sym_DASH] = ACTIONS(1083), + [anon_sym_STAR] = ACTIONS(1085), + [anon_sym_struct] = ACTIONS(1087), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(1097), - [anon_sym_go] = ACTIONS(1099), - [anon_sym_spawn] = ACTIONS(1101), - [anon_sym_json_DOTdecode] = ACTIONS(1103), - [anon_sym_LBRACK2] = ACTIONS(1105), - [anon_sym_TILDE] = ACTIONS(1091), - [anon_sym_CARET] = ACTIONS(1091), - [anon_sym_AMP] = ACTIONS(1107), - [anon_sym_LT_DASH] = ACTIONS(1109), - [sym_none] = ACTIONS(1111), - [sym_true] = ACTIONS(1111), - [sym_false] = ACTIONS(1111), - [sym_nil] = ACTIONS(1111), - [anon_sym_if] = ACTIONS(1113), - [anon_sym_else] = ACTIONS(1115), - [anon_sym_DOLLARif] = ACTIONS(1117), - [anon_sym_match] = ACTIONS(1119), - [anon_sym_select] = ACTIONS(1121), - [anon_sym_lock] = ACTIONS(1123), - [anon_sym_rlock] = ACTIONS(1123), - [anon_sym_unsafe] = ACTIONS(1125), - [anon_sym_sql] = ACTIONS(1127), - [sym_int_literal] = ACTIONS(1111), - [sym_float_literal] = ACTIONS(1129), - [sym_rune_literal] = ACTIONS(1129), - [sym_pseudo_compile_time_identifier] = ACTIONS(1131), + [anon_sym_BANG] = ACTIONS(1089), + [anon_sym_go] = ACTIONS(1091), + [anon_sym_spawn] = ACTIONS(1093), + [anon_sym_json_DOTdecode] = ACTIONS(1095), + [anon_sym_LBRACK2] = ACTIONS(1097), + [anon_sym_TILDE] = ACTIONS(1083), + [anon_sym_CARET] = ACTIONS(1083), + [anon_sym_AMP] = ACTIONS(1099), + [anon_sym_LT_DASH] = ACTIONS(1101), + [sym_none] = ACTIONS(1103), + [sym_true] = ACTIONS(1103), + [sym_false] = ACTIONS(1103), + [sym_nil] = ACTIONS(1103), + [anon_sym_if] = ACTIONS(1105), + [anon_sym_else] = ACTIONS(1107), + [anon_sym_DOLLARif] = ACTIONS(1109), + [anon_sym_match] = ACTIONS(1111), + [anon_sym_select] = ACTIONS(1113), + [anon_sym_lock] = ACTIONS(1115), + [anon_sym_rlock] = ACTIONS(1115), + [anon_sym_unsafe] = ACTIONS(1117), + [anon_sym_sql] = ACTIONS(1119), + [sym_int_literal] = ACTIONS(1103), + [sym_float_literal] = ACTIONS(1121), + [sym_rune_literal] = ACTIONS(1121), + [sym_pseudo_compile_time_identifier] = ACTIONS(1123), [anon_sym_shared] = ACTIONS(83), [anon_sym_map_LBRACK] = ACTIONS(85), [anon_sym_chan] = ACTIONS(87), [anon_sym_thread] = ACTIONS(89), [anon_sym_atomic] = ACTIONS(91), - [sym___double_quote] = ACTIONS(1133), - [sym___single_quote] = ACTIONS(1135), - [sym___c_double_quote] = ACTIONS(1137), - [sym___c_single_quote] = ACTIONS(1139), - [sym___r_double_quote] = ACTIONS(1141), - [sym___r_single_quote] = ACTIONS(1143), + [sym___double_quote] = ACTIONS(1125), + [sym___single_quote] = ACTIONS(1127), + [sym___c_double_quote] = ACTIONS(1129), + [sym___c_single_quote] = ACTIONS(1131), + [sym___r_double_quote] = ACTIONS(1133), + [sym___r_single_quote] = ACTIONS(1135), }, - [152] = { - [sym_line_comment] = STATE(152), - [sym_block_comment] = STATE(152), - [sym__expression] = STATE(1117), - [sym__expression_without_blocks] = STATE(1141), - [sym__expression_with_blocks] = STATE(1141), - [sym_inc_expression] = STATE(1140), - [sym_dec_expression] = STATE(1140), - [sym_or_block_expression] = STATE(1140), - [sym_option_propagation_expression] = STATE(1140), - [sym_result_propagation_expression] = STATE(1140), - [sym_anon_struct_value_expression] = STATE(1199), - [sym_go_expression] = STATE(1140), - [sym_spawn_expression] = STATE(1140), - [sym_parenthesized_expression] = STATE(1140), - [sym_call_expression] = STATE(1140), - [sym_short_lambda] = STATE(4462), - [sym_argument] = STATE(1903), - [sym_type_initializer] = STATE(1199), + [155] = { + [sym_line_comment] = STATE(155), + [sym_block_comment] = STATE(155), + [sym__expression] = STATE(1126), + [sym__expression_without_blocks] = STATE(1210), + [sym__expression_with_blocks] = STATE(1210), + [sym_inc_expression] = STATE(1211), + [sym_dec_expression] = STATE(1211), + [sym_or_block_expression] = STATE(1211), + [sym_option_propagation_expression] = STATE(1211), + [sym_result_propagation_expression] = STATE(1211), + [sym_anon_struct_value_expression] = STATE(1212), + [sym_go_expression] = STATE(1211), + [sym_spawn_expression] = STATE(1211), + [sym_parenthesized_expression] = STATE(1211), + [sym_call_expression] = STATE(1211), + [sym_short_lambda] = STATE(4327), + [sym_argument] = STATE(1907), + [sym_type_initializer] = STATE(1212), [sym_keyed_element] = STATE(1904), - [sym_function_literal] = STATE(1140), - [sym_reference_expression] = STATE(1236), - [sym_type_reference_expression] = STATE(3541), - [sym_unary_expression] = STATE(1140), - [sym_receive_expression] = STATE(1140), - [sym_binary_expression] = STATE(1140), - [sym_as_type_cast_expression] = STATE(1140), - [sym__max_group] = STATE(1140), - [sym_literal] = STATE(1146), + [sym_function_literal] = STATE(1211), + [sym_reference_expression] = STATE(1252), + [sym_type_reference_expression] = STATE(3460), + [sym_unary_expression] = STATE(1211), + [sym_receive_expression] = STATE(1211), + [sym_binary_expression] = STATE(1211), + [sym_as_type_cast_expression] = STATE(1211), + [sym__max_group] = STATE(1211), + [sym_literal] = STATE(1209), [sym_spread_expression] = STATE(1904), - [sym_map_init_expression] = STATE(1199), - [sym_array_creation] = STATE(1140), - [sym_fixed_array_creation] = STATE(1140), - [sym_selector_expression] = STATE(1140), - [sym_index_expression] = STATE(1140), - [sym_slice_expression] = STATE(1140), - [sym_if_expression] = STATE(1199), - [sym_compile_time_if_expression] = STATE(1199), - [sym_is_expression] = STATE(1140), - [sym_in_expression] = STATE(1140), - [sym_enum_fetch] = STATE(1140), - [sym_match_expression] = STATE(1199), - [sym_select_expression] = STATE(1199), - [sym_lock_expression] = STATE(1199), - [sym_unsafe_expression] = STATE(1199), - [sym_sql_expression] = STATE(1199), - [sym_c_string_literal] = STATE(1147), - [sym_raw_string_literal] = STATE(1147), - [sym_interpreted_string_literal] = STATE(1147), - [sym_mutability_modifiers] = STATE(789), + [sym_map_init_expression] = STATE(1212), + [sym_array_creation] = STATE(1211), + [sym_fixed_array_creation] = STATE(1211), + [sym_selector_expression] = STATE(1211), + [sym_index_expression] = STATE(1211), + [sym_slice_expression] = STATE(1211), + [sym_if_expression] = STATE(1212), + [sym_compile_time_if_expression] = STATE(1212), + [sym_is_expression] = STATE(1211), + [sym_in_expression] = STATE(1211), + [sym_enum_fetch] = STATE(1211), + [sym_match_expression] = STATE(1212), + [sym_select_expression] = STATE(1212), + [sym_lock_expression] = STATE(1212), + [sym_unsafe_expression] = STATE(1212), + [sym_sql_expression] = STATE(1212), + [sym_c_string_literal] = STATE(1201), + [sym_raw_string_literal] = STATE(1201), + [sym_interpreted_string_literal] = STATE(1201), + [sym_mutability_modifiers] = STATE(769), [sym_mutable_expression] = STATE(1904), - [sym_plain_type] = STATE(4234), - [sym__plain_type_without_special] = STATE(2302), - [sym_anon_struct_type] = STATE(2303), - [sym_multi_return_type] = STATE(2302), - [sym_result_type] = STATE(2302), - [sym_option_type] = STATE(2302), - [sym_qualified_type] = STATE(3541), - [sym_fixed_array_type] = STATE(2303), - [sym_array_type] = STATE(2303), - [sym_pointer_type] = STATE(2303), - [sym_wrong_pointer_type] = STATE(2303), - [sym_map_type] = STATE(2303), - [sym_channel_type] = STATE(2303), - [sym_shared_type] = STATE(2303), - [sym_thread_type] = STATE(2303), - [sym_atomic_type] = STATE(2303), - [sym_generic_type] = STATE(2303), - [sym_function_type] = STATE(2303), - [aux_sym_argument_list_repeat1] = STATE(205), - [sym_identifier] = ACTIONS(1071), + [sym_plain_type] = STATE(4123), + [sym__plain_type_without_special] = STATE(2360), + [sym_anon_struct_type] = STATE(2362), + [sym_multi_return_type] = STATE(2360), + [sym_result_type] = STATE(2360), + [sym_option_type] = STATE(2360), + [sym_qualified_type] = STATE(3460), + [sym_fixed_array_type] = STATE(2362), + [sym_array_type] = STATE(2362), + [sym_pointer_type] = STATE(2362), + [sym_wrong_pointer_type] = STATE(2362), + [sym_map_type] = STATE(2362), + [sym_channel_type] = STATE(2362), + [sym_shared_type] = STATE(2362), + [sym_thread_type] = STATE(2362), + [sym_atomic_type] = STATE(2362), + [sym_generic_type] = STATE(2362), + [sym_function_type] = STATE(2362), + [aux_sym_argument_list_repeat1] = STATE(208), + [sym_identifier] = ACTIONS(1139), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), [anon_sym_DOT] = ACTIONS(631), [anon_sym_LBRACE] = ACTIONS(633), [anon_sym_LPAREN] = ACTIONS(637), - [anon_sym_RPAREN] = ACTIONS(1145), - [anon_sym_PIPE] = ACTIONS(1075), + [anon_sym_RPAREN] = ACTIONS(1151), + [anon_sym_PIPE] = ACTIONS(1143), [anon_sym_fn] = ACTIONS(641), [anon_sym_PLUS] = ACTIONS(643), [anon_sym_DASH] = ACTIONS(643), [anon_sym_STAR] = ACTIONS(645), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1077), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1145), [anon_sym_struct] = ACTIONS(649), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), @@ -40051,212 +40438,212 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym___r_double_quote] = ACTIONS(697), [sym___r_single_quote] = ACTIONS(699), }, - [153] = { - [sym_line_comment] = STATE(153), - [sym_block_comment] = STATE(153), - [sym__expression] = STATE(2611), - [sym__expression_without_blocks] = STATE(2579), - [sym__expression_with_blocks] = STATE(2625), + [156] = { + [sym_line_comment] = STATE(156), + [sym_block_comment] = STATE(156), + [sym__expression] = STATE(2585), + [sym__expression_without_blocks] = STATE(2584), + [sym__expression_with_blocks] = STATE(2638), [sym_inc_expression] = STATE(2765), [sym_dec_expression] = STATE(2765), [sym_or_block_expression] = STATE(2765), [sym_option_propagation_expression] = STATE(2765), [sym_result_propagation_expression] = STATE(2765), - [sym_anon_struct_value_expression] = STATE(2619), + [sym_anon_struct_value_expression] = STATE(2637), [sym_go_expression] = STATE(2765), [sym_spawn_expression] = STATE(2765), [sym_parenthesized_expression] = STATE(2765), [sym_call_expression] = STATE(2765), - [sym_type_initializer] = STATE(2619), + [sym_type_initializer] = STATE(2637), [sym_function_literal] = STATE(2765), [sym_reference_expression] = STATE(2764), - [sym_type_reference_expression] = STATE(3541), + [sym_type_reference_expression] = STATE(3460), [sym_unary_expression] = STATE(2765), [sym_receive_expression] = STATE(2765), [sym_binary_expression] = STATE(2765), [sym_as_type_cast_expression] = STATE(2765), [sym__max_group] = STATE(2765), - [sym_literal] = STATE(2769), - [sym_map_init_expression] = STATE(2619), + [sym_literal] = STATE(2771), + [sym_map_init_expression] = STATE(2637), [sym_array_creation] = STATE(2765), [sym_fixed_array_creation] = STATE(2765), [sym_selector_expression] = STATE(2765), [sym_index_expression] = STATE(2765), [sym_slice_expression] = STATE(2765), - [sym_if_expression] = STATE(2619), - [sym_compile_time_if_expression] = STATE(2619), + [sym_if_expression] = STATE(2637), + [sym_compile_time_if_expression] = STATE(2637), [sym_is_expression] = STATE(2765), [sym_in_expression] = STATE(2765), [sym_enum_fetch] = STATE(2765), - [sym_match_expression] = STATE(2619), - [sym_match_arms] = STATE(4496), - [sym_match_arm] = STATE(2132), - [sym_match_expression_list] = STATE(4087), - [sym_match_arm_type] = STATE(3795), - [sym_match_else_arm_clause] = STATE(2132), - [sym_select_expression] = STATE(2619), - [sym_lock_expression] = STATE(2619), - [sym_unsafe_expression] = STATE(2619), - [sym_sql_expression] = STATE(2619), - [sym_c_string_literal] = STATE(2660), - [sym_raw_string_literal] = STATE(2660), - [sym_interpreted_string_literal] = STATE(2660), - [sym_mutability_modifiers] = STATE(567), - [sym_plain_type] = STATE(3784), - [sym__plain_type_without_special] = STATE(2302), - [sym_anon_struct_type] = STATE(2303), - [sym_multi_return_type] = STATE(2302), - [sym_result_type] = STATE(2302), - [sym_option_type] = STATE(2302), - [sym_qualified_type] = STATE(3541), - [sym_fixed_array_type] = STATE(2303), - [sym_array_type] = STATE(2303), - [sym_pointer_type] = STATE(2303), - [sym_wrong_pointer_type] = STATE(2303), - [sym_map_type] = STATE(2303), - [sym_channel_type] = STATE(2303), - [sym_shared_type] = STATE(2303), - [sym_thread_type] = STATE(2303), - [sym_atomic_type] = STATE(2303), - [sym_generic_type] = STATE(2303), - [sym_function_type] = STATE(2303), - [sym__definite_range] = STATE(3781), - [aux_sym_match_arms_repeat1] = STATE(184), - [sym_identifier] = ACTIONS(1079), + [sym_match_expression] = STATE(2637), + [sym_match_arms] = STATE(4366), + [sym_match_arm] = STATE(2141), + [sym_match_expression_list] = STATE(4299), + [sym_match_arm_type] = STATE(3851), + [sym_match_else_arm_clause] = STATE(2141), + [sym_select_expression] = STATE(2637), + [sym_lock_expression] = STATE(2637), + [sym_unsafe_expression] = STATE(2637), + [sym_sql_expression] = STATE(2637), + [sym_c_string_literal] = STATE(2762), + [sym_raw_string_literal] = STATE(2762), + [sym_interpreted_string_literal] = STATE(2762), + [sym_mutability_modifiers] = STATE(822), + [sym_plain_type] = STATE(3848), + [sym__plain_type_without_special] = STATE(2360), + [sym_anon_struct_type] = STATE(2362), + [sym_multi_return_type] = STATE(2360), + [sym_result_type] = STATE(2360), + [sym_option_type] = STATE(2360), + [sym_qualified_type] = STATE(3460), + [sym_fixed_array_type] = STATE(2362), + [sym_array_type] = STATE(2362), + [sym_pointer_type] = STATE(2362), + [sym_wrong_pointer_type] = STATE(2362), + [sym_map_type] = STATE(2362), + [sym_channel_type] = STATE(2362), + [sym_shared_type] = STATE(2362), + [sym_thread_type] = STATE(2362), + [sym_atomic_type] = STATE(2362), + [sym_generic_type] = STATE(2362), + [sym_function_type] = STATE(2362), + [sym__definite_range] = STATE(3816), + [aux_sym_match_arms_repeat1] = STATE(188), + [sym_identifier] = ACTIONS(1071), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1081), - [anon_sym_LBRACE] = ACTIONS(1083), - [anon_sym_RBRACE] = ACTIONS(1147), - [anon_sym_LPAREN] = ACTIONS(1087), - [anon_sym_fn] = ACTIONS(1089), - [anon_sym_PLUS] = ACTIONS(1091), - [anon_sym_DASH] = ACTIONS(1091), - [anon_sym_STAR] = ACTIONS(1093), - [anon_sym_struct] = ACTIONS(1095), + [anon_sym_DOT] = ACTIONS(1073), + [anon_sym_LBRACE] = ACTIONS(1075), + [anon_sym_RBRACE] = ACTIONS(1153), + [anon_sym_LPAREN] = ACTIONS(1079), + [anon_sym_fn] = ACTIONS(1081), + [anon_sym_PLUS] = ACTIONS(1083), + [anon_sym_DASH] = ACTIONS(1083), + [anon_sym_STAR] = ACTIONS(1085), + [anon_sym_struct] = ACTIONS(1087), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(1097), - [anon_sym_go] = ACTIONS(1099), - [anon_sym_spawn] = ACTIONS(1101), - [anon_sym_json_DOTdecode] = ACTIONS(1103), - [anon_sym_LBRACK2] = ACTIONS(1105), - [anon_sym_TILDE] = ACTIONS(1091), - [anon_sym_CARET] = ACTIONS(1091), - [anon_sym_AMP] = ACTIONS(1107), - [anon_sym_LT_DASH] = ACTIONS(1109), - [sym_none] = ACTIONS(1111), - [sym_true] = ACTIONS(1111), - [sym_false] = ACTIONS(1111), - [sym_nil] = ACTIONS(1111), - [anon_sym_if] = ACTIONS(1113), - [anon_sym_else] = ACTIONS(1115), - [anon_sym_DOLLARif] = ACTIONS(1117), - [anon_sym_match] = ACTIONS(1119), - [anon_sym_select] = ACTIONS(1121), - [anon_sym_lock] = ACTIONS(1123), - [anon_sym_rlock] = ACTIONS(1123), - [anon_sym_unsafe] = ACTIONS(1125), - [anon_sym_sql] = ACTIONS(1127), - [sym_int_literal] = ACTIONS(1111), - [sym_float_literal] = ACTIONS(1129), - [sym_rune_literal] = ACTIONS(1129), - [sym_pseudo_compile_time_identifier] = ACTIONS(1131), + [anon_sym_BANG] = ACTIONS(1089), + [anon_sym_go] = ACTIONS(1091), + [anon_sym_spawn] = ACTIONS(1093), + [anon_sym_json_DOTdecode] = ACTIONS(1095), + [anon_sym_LBRACK2] = ACTIONS(1097), + [anon_sym_TILDE] = ACTIONS(1083), + [anon_sym_CARET] = ACTIONS(1083), + [anon_sym_AMP] = ACTIONS(1099), + [anon_sym_LT_DASH] = ACTIONS(1101), + [sym_none] = ACTIONS(1103), + [sym_true] = ACTIONS(1103), + [sym_false] = ACTIONS(1103), + [sym_nil] = ACTIONS(1103), + [anon_sym_if] = ACTIONS(1105), + [anon_sym_else] = ACTIONS(1107), + [anon_sym_DOLLARif] = ACTIONS(1109), + [anon_sym_match] = ACTIONS(1111), + [anon_sym_select] = ACTIONS(1113), + [anon_sym_lock] = ACTIONS(1115), + [anon_sym_rlock] = ACTIONS(1115), + [anon_sym_unsafe] = ACTIONS(1117), + [anon_sym_sql] = ACTIONS(1119), + [sym_int_literal] = ACTIONS(1103), + [sym_float_literal] = ACTIONS(1121), + [sym_rune_literal] = ACTIONS(1121), + [sym_pseudo_compile_time_identifier] = ACTIONS(1123), [anon_sym_shared] = ACTIONS(83), [anon_sym_map_LBRACK] = ACTIONS(85), [anon_sym_chan] = ACTIONS(87), [anon_sym_thread] = ACTIONS(89), [anon_sym_atomic] = ACTIONS(91), - [sym___double_quote] = ACTIONS(1133), - [sym___single_quote] = ACTIONS(1135), - [sym___c_double_quote] = ACTIONS(1137), - [sym___c_single_quote] = ACTIONS(1139), - [sym___r_double_quote] = ACTIONS(1141), - [sym___r_single_quote] = ACTIONS(1143), + [sym___double_quote] = ACTIONS(1125), + [sym___single_quote] = ACTIONS(1127), + [sym___c_double_quote] = ACTIONS(1129), + [sym___c_single_quote] = ACTIONS(1131), + [sym___r_double_quote] = ACTIONS(1133), + [sym___r_single_quote] = ACTIONS(1135), }, - [154] = { - [sym_line_comment] = STATE(154), - [sym_block_comment] = STATE(154), - [sym__expression] = STATE(1117), - [sym__expression_without_blocks] = STATE(1141), - [sym__expression_with_blocks] = STATE(1141), - [sym_inc_expression] = STATE(1140), - [sym_dec_expression] = STATE(1140), - [sym_or_block_expression] = STATE(1140), - [sym_option_propagation_expression] = STATE(1140), - [sym_result_propagation_expression] = STATE(1140), - [sym_anon_struct_value_expression] = STATE(1199), - [sym_go_expression] = STATE(1140), - [sym_spawn_expression] = STATE(1140), - [sym_parenthesized_expression] = STATE(1140), - [sym_call_expression] = STATE(1140), - [sym_short_lambda] = STATE(4527), - [sym_argument] = STATE(1903), - [sym_type_initializer] = STATE(1199), + [157] = { + [sym_line_comment] = STATE(157), + [sym_block_comment] = STATE(157), + [sym__expression] = STATE(1126), + [sym__expression_without_blocks] = STATE(1210), + [sym__expression_with_blocks] = STATE(1210), + [sym_inc_expression] = STATE(1211), + [sym_dec_expression] = STATE(1211), + [sym_or_block_expression] = STATE(1211), + [sym_option_propagation_expression] = STATE(1211), + [sym_result_propagation_expression] = STATE(1211), + [sym_anon_struct_value_expression] = STATE(1212), + [sym_go_expression] = STATE(1211), + [sym_spawn_expression] = STATE(1211), + [sym_parenthesized_expression] = STATE(1211), + [sym_call_expression] = STATE(1211), + [sym_short_lambda] = STATE(4424), + [sym_argument] = STATE(1907), + [sym_type_initializer] = STATE(1212), [sym_keyed_element] = STATE(1904), - [sym_function_literal] = STATE(1140), - [sym_reference_expression] = STATE(1236), - [sym_type_reference_expression] = STATE(3541), - [sym_unary_expression] = STATE(1140), - [sym_receive_expression] = STATE(1140), - [sym_binary_expression] = STATE(1140), - [sym_as_type_cast_expression] = STATE(1140), - [sym__max_group] = STATE(1140), - [sym_literal] = STATE(1146), + [sym_function_literal] = STATE(1211), + [sym_reference_expression] = STATE(1252), + [sym_type_reference_expression] = STATE(3460), + [sym_unary_expression] = STATE(1211), + [sym_receive_expression] = STATE(1211), + [sym_binary_expression] = STATE(1211), + [sym_as_type_cast_expression] = STATE(1211), + [sym__max_group] = STATE(1211), + [sym_literal] = STATE(1209), [sym_spread_expression] = STATE(1904), - [sym_map_init_expression] = STATE(1199), - [sym_array_creation] = STATE(1140), - [sym_fixed_array_creation] = STATE(1140), - [sym_selector_expression] = STATE(1140), - [sym_index_expression] = STATE(1140), - [sym_slice_expression] = STATE(1140), - [sym_if_expression] = STATE(1199), - [sym_compile_time_if_expression] = STATE(1199), - [sym_is_expression] = STATE(1140), - [sym_in_expression] = STATE(1140), - [sym_enum_fetch] = STATE(1140), - [sym_match_expression] = STATE(1199), - [sym_select_expression] = STATE(1199), - [sym_lock_expression] = STATE(1199), - [sym_unsafe_expression] = STATE(1199), - [sym_sql_expression] = STATE(1199), - [sym_c_string_literal] = STATE(1147), - [sym_raw_string_literal] = STATE(1147), - [sym_interpreted_string_literal] = STATE(1147), - [sym_mutability_modifiers] = STATE(789), + [sym_map_init_expression] = STATE(1212), + [sym_array_creation] = STATE(1211), + [sym_fixed_array_creation] = STATE(1211), + [sym_selector_expression] = STATE(1211), + [sym_index_expression] = STATE(1211), + [sym_slice_expression] = STATE(1211), + [sym_if_expression] = STATE(1212), + [sym_compile_time_if_expression] = STATE(1212), + [sym_is_expression] = STATE(1211), + [sym_in_expression] = STATE(1211), + [sym_enum_fetch] = STATE(1211), + [sym_match_expression] = STATE(1212), + [sym_select_expression] = STATE(1212), + [sym_lock_expression] = STATE(1212), + [sym_unsafe_expression] = STATE(1212), + [sym_sql_expression] = STATE(1212), + [sym_c_string_literal] = STATE(1201), + [sym_raw_string_literal] = STATE(1201), + [sym_interpreted_string_literal] = STATE(1201), + [sym_mutability_modifiers] = STATE(769), [sym_mutable_expression] = STATE(1904), - [sym_plain_type] = STATE(4234), - [sym__plain_type_without_special] = STATE(2302), - [sym_anon_struct_type] = STATE(2303), - [sym_multi_return_type] = STATE(2302), - [sym_result_type] = STATE(2302), - [sym_option_type] = STATE(2302), - [sym_qualified_type] = STATE(3541), - [sym_fixed_array_type] = STATE(2303), - [sym_array_type] = STATE(2303), - [sym_pointer_type] = STATE(2303), - [sym_wrong_pointer_type] = STATE(2303), - [sym_map_type] = STATE(2303), - [sym_channel_type] = STATE(2303), - [sym_shared_type] = STATE(2303), - [sym_thread_type] = STATE(2303), - [sym_atomic_type] = STATE(2303), - [sym_generic_type] = STATE(2303), - [sym_function_type] = STATE(2303), - [aux_sym_argument_list_repeat1] = STATE(206), - [sym_identifier] = ACTIONS(1071), + [sym_plain_type] = STATE(4123), + [sym__plain_type_without_special] = STATE(2360), + [sym_anon_struct_type] = STATE(2362), + [sym_multi_return_type] = STATE(2360), + [sym_result_type] = STATE(2360), + [sym_option_type] = STATE(2360), + [sym_qualified_type] = STATE(3460), + [sym_fixed_array_type] = STATE(2362), + [sym_array_type] = STATE(2362), + [sym_pointer_type] = STATE(2362), + [sym_wrong_pointer_type] = STATE(2362), + [sym_map_type] = STATE(2362), + [sym_channel_type] = STATE(2362), + [sym_shared_type] = STATE(2362), + [sym_thread_type] = STATE(2362), + [sym_atomic_type] = STATE(2362), + [sym_generic_type] = STATE(2362), + [sym_function_type] = STATE(2362), + [aux_sym_argument_list_repeat1] = STATE(197), + [sym_identifier] = ACTIONS(1139), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), [anon_sym_DOT] = ACTIONS(631), [anon_sym_LBRACE] = ACTIONS(633), [anon_sym_LPAREN] = ACTIONS(637), - [anon_sym_RPAREN] = ACTIONS(1149), - [anon_sym_PIPE] = ACTIONS(1075), + [anon_sym_RPAREN] = ACTIONS(1155), + [anon_sym_PIPE] = ACTIONS(1143), [anon_sym_fn] = ACTIONS(641), [anon_sym_PLUS] = ACTIONS(643), [anon_sym_DASH] = ACTIONS(643), [anon_sym_STAR] = ACTIONS(645), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1077), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1145), [anon_sym_struct] = ACTIONS(649), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), @@ -40297,89 +40684,89 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym___r_double_quote] = ACTIONS(697), [sym___r_single_quote] = ACTIONS(699), }, - [155] = { - [sym_line_comment] = STATE(155), - [sym_block_comment] = STATE(155), - [sym__expression] = STATE(1117), - [sym__expression_without_blocks] = STATE(1141), - [sym__expression_with_blocks] = STATE(1141), - [sym_inc_expression] = STATE(1140), - [sym_dec_expression] = STATE(1140), - [sym_or_block_expression] = STATE(1140), - [sym_option_propagation_expression] = STATE(1140), - [sym_result_propagation_expression] = STATE(1140), - [sym_anon_struct_value_expression] = STATE(1199), - [sym_go_expression] = STATE(1140), - [sym_spawn_expression] = STATE(1140), - [sym_parenthesized_expression] = STATE(1140), - [sym_call_expression] = STATE(1140), - [sym_short_lambda] = STATE(4589), - [sym_argument] = STATE(1903), - [sym_type_initializer] = STATE(1199), + [158] = { + [sym_line_comment] = STATE(158), + [sym_block_comment] = STATE(158), + [sym__expression] = STATE(1126), + [sym__expression_without_blocks] = STATE(1210), + [sym__expression_with_blocks] = STATE(1210), + [sym_inc_expression] = STATE(1211), + [sym_dec_expression] = STATE(1211), + [sym_or_block_expression] = STATE(1211), + [sym_option_propagation_expression] = STATE(1211), + [sym_result_propagation_expression] = STATE(1211), + [sym_anon_struct_value_expression] = STATE(1212), + [sym_go_expression] = STATE(1211), + [sym_spawn_expression] = STATE(1211), + [sym_parenthesized_expression] = STATE(1211), + [sym_call_expression] = STATE(1211), + [sym_short_lambda] = STATE(4624), + [sym_argument] = STATE(1907), + [sym_type_initializer] = STATE(1212), [sym_keyed_element] = STATE(1904), - [sym_function_literal] = STATE(1140), - [sym_reference_expression] = STATE(1236), - [sym_type_reference_expression] = STATE(3541), - [sym_unary_expression] = STATE(1140), - [sym_receive_expression] = STATE(1140), - [sym_binary_expression] = STATE(1140), - [sym_as_type_cast_expression] = STATE(1140), - [sym__max_group] = STATE(1140), - [sym_literal] = STATE(1146), + [sym_function_literal] = STATE(1211), + [sym_reference_expression] = STATE(1252), + [sym_type_reference_expression] = STATE(3460), + [sym_unary_expression] = STATE(1211), + [sym_receive_expression] = STATE(1211), + [sym_binary_expression] = STATE(1211), + [sym_as_type_cast_expression] = STATE(1211), + [sym__max_group] = STATE(1211), + [sym_literal] = STATE(1209), [sym_spread_expression] = STATE(1904), - [sym_map_init_expression] = STATE(1199), - [sym_array_creation] = STATE(1140), - [sym_fixed_array_creation] = STATE(1140), - [sym_selector_expression] = STATE(1140), - [sym_index_expression] = STATE(1140), - [sym_slice_expression] = STATE(1140), - [sym_if_expression] = STATE(1199), - [sym_compile_time_if_expression] = STATE(1199), - [sym_is_expression] = STATE(1140), - [sym_in_expression] = STATE(1140), - [sym_enum_fetch] = STATE(1140), - [sym_match_expression] = STATE(1199), - [sym_select_expression] = STATE(1199), - [sym_lock_expression] = STATE(1199), - [sym_unsafe_expression] = STATE(1199), - [sym_sql_expression] = STATE(1199), - [sym_c_string_literal] = STATE(1147), - [sym_raw_string_literal] = STATE(1147), - [sym_interpreted_string_literal] = STATE(1147), - [sym_mutability_modifiers] = STATE(789), + [sym_map_init_expression] = STATE(1212), + [sym_array_creation] = STATE(1211), + [sym_fixed_array_creation] = STATE(1211), + [sym_selector_expression] = STATE(1211), + [sym_index_expression] = STATE(1211), + [sym_slice_expression] = STATE(1211), + [sym_if_expression] = STATE(1212), + [sym_compile_time_if_expression] = STATE(1212), + [sym_is_expression] = STATE(1211), + [sym_in_expression] = STATE(1211), + [sym_enum_fetch] = STATE(1211), + [sym_match_expression] = STATE(1212), + [sym_select_expression] = STATE(1212), + [sym_lock_expression] = STATE(1212), + [sym_unsafe_expression] = STATE(1212), + [sym_sql_expression] = STATE(1212), + [sym_c_string_literal] = STATE(1201), + [sym_raw_string_literal] = STATE(1201), + [sym_interpreted_string_literal] = STATE(1201), + [sym_mutability_modifiers] = STATE(769), [sym_mutable_expression] = STATE(1904), - [sym_plain_type] = STATE(4234), - [sym__plain_type_without_special] = STATE(2302), - [sym_anon_struct_type] = STATE(2303), - [sym_multi_return_type] = STATE(2302), - [sym_result_type] = STATE(2302), - [sym_option_type] = STATE(2302), - [sym_qualified_type] = STATE(3541), - [sym_fixed_array_type] = STATE(2303), - [sym_array_type] = STATE(2303), - [sym_pointer_type] = STATE(2303), - [sym_wrong_pointer_type] = STATE(2303), - [sym_map_type] = STATE(2303), - [sym_channel_type] = STATE(2303), - [sym_shared_type] = STATE(2303), - [sym_thread_type] = STATE(2303), - [sym_atomic_type] = STATE(2303), - [sym_generic_type] = STATE(2303), - [sym_function_type] = STATE(2303), - [aux_sym_argument_list_repeat1] = STATE(198), - [sym_identifier] = ACTIONS(1071), + [sym_plain_type] = STATE(4123), + [sym__plain_type_without_special] = STATE(2360), + [sym_anon_struct_type] = STATE(2362), + [sym_multi_return_type] = STATE(2360), + [sym_result_type] = STATE(2360), + [sym_option_type] = STATE(2360), + [sym_qualified_type] = STATE(3460), + [sym_fixed_array_type] = STATE(2362), + [sym_array_type] = STATE(2362), + [sym_pointer_type] = STATE(2362), + [sym_wrong_pointer_type] = STATE(2362), + [sym_map_type] = STATE(2362), + [sym_channel_type] = STATE(2362), + [sym_shared_type] = STATE(2362), + [sym_thread_type] = STATE(2362), + [sym_atomic_type] = STATE(2362), + [sym_generic_type] = STATE(2362), + [sym_function_type] = STATE(2362), + [aux_sym_argument_list_repeat1] = STATE(203), + [sym_identifier] = ACTIONS(1139), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), [anon_sym_DOT] = ACTIONS(631), [anon_sym_LBRACE] = ACTIONS(633), [anon_sym_LPAREN] = ACTIONS(637), - [anon_sym_RPAREN] = ACTIONS(1151), - [anon_sym_PIPE] = ACTIONS(1075), + [anon_sym_RPAREN] = ACTIONS(1157), + [anon_sym_PIPE] = ACTIONS(1143), [anon_sym_fn] = ACTIONS(641), [anon_sym_PLUS] = ACTIONS(643), [anon_sym_DASH] = ACTIONS(643), [anon_sym_STAR] = ACTIONS(645), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1077), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1145), [anon_sym_struct] = ACTIONS(649), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), @@ -40420,212 +40807,212 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym___r_double_quote] = ACTIONS(697), [sym___r_single_quote] = ACTIONS(699), }, - [156] = { - [sym_line_comment] = STATE(156), - [sym_block_comment] = STATE(156), - [sym__expression] = STATE(2611), - [sym__expression_without_blocks] = STATE(2579), - [sym__expression_with_blocks] = STATE(2625), + [159] = { + [sym_line_comment] = STATE(159), + [sym_block_comment] = STATE(159), + [sym__expression] = STATE(2585), + [sym__expression_without_blocks] = STATE(2584), + [sym__expression_with_blocks] = STATE(2638), [sym_inc_expression] = STATE(2765), [sym_dec_expression] = STATE(2765), [sym_or_block_expression] = STATE(2765), [sym_option_propagation_expression] = STATE(2765), [sym_result_propagation_expression] = STATE(2765), - [sym_anon_struct_value_expression] = STATE(2619), + [sym_anon_struct_value_expression] = STATE(2637), [sym_go_expression] = STATE(2765), [sym_spawn_expression] = STATE(2765), [sym_parenthesized_expression] = STATE(2765), [sym_call_expression] = STATE(2765), - [sym_type_initializer] = STATE(2619), + [sym_type_initializer] = STATE(2637), [sym_function_literal] = STATE(2765), [sym_reference_expression] = STATE(2764), - [sym_type_reference_expression] = STATE(3541), + [sym_type_reference_expression] = STATE(3460), [sym_unary_expression] = STATE(2765), [sym_receive_expression] = STATE(2765), [sym_binary_expression] = STATE(2765), [sym_as_type_cast_expression] = STATE(2765), [sym__max_group] = STATE(2765), - [sym_literal] = STATE(2769), - [sym_map_init_expression] = STATE(2619), + [sym_literal] = STATE(2771), + [sym_map_init_expression] = STATE(2637), [sym_array_creation] = STATE(2765), [sym_fixed_array_creation] = STATE(2765), [sym_selector_expression] = STATE(2765), [sym_index_expression] = STATE(2765), [sym_slice_expression] = STATE(2765), - [sym_if_expression] = STATE(2619), - [sym_compile_time_if_expression] = STATE(2619), + [sym_if_expression] = STATE(2637), + [sym_compile_time_if_expression] = STATE(2637), [sym_is_expression] = STATE(2765), [sym_in_expression] = STATE(2765), [sym_enum_fetch] = STATE(2765), - [sym_match_expression] = STATE(2619), - [sym_match_arms] = STATE(4614), - [sym_match_arm] = STATE(2132), - [sym_match_expression_list] = STATE(4087), - [sym_match_arm_type] = STATE(3795), - [sym_match_else_arm_clause] = STATE(2132), - [sym_select_expression] = STATE(2619), - [sym_lock_expression] = STATE(2619), - [sym_unsafe_expression] = STATE(2619), - [sym_sql_expression] = STATE(2619), - [sym_c_string_literal] = STATE(2660), - [sym_raw_string_literal] = STATE(2660), - [sym_interpreted_string_literal] = STATE(2660), - [sym_mutability_modifiers] = STATE(567), - [sym_plain_type] = STATE(3784), - [sym__plain_type_without_special] = STATE(2302), - [sym_anon_struct_type] = STATE(2303), - [sym_multi_return_type] = STATE(2302), - [sym_result_type] = STATE(2302), - [sym_option_type] = STATE(2302), - [sym_qualified_type] = STATE(3541), - [sym_fixed_array_type] = STATE(2303), - [sym_array_type] = STATE(2303), - [sym_pointer_type] = STATE(2303), - [sym_wrong_pointer_type] = STATE(2303), - [sym_map_type] = STATE(2303), - [sym_channel_type] = STATE(2303), - [sym_shared_type] = STATE(2303), - [sym_thread_type] = STATE(2303), - [sym_atomic_type] = STATE(2303), - [sym_generic_type] = STATE(2303), - [sym_function_type] = STATE(2303), - [sym__definite_range] = STATE(3781), - [aux_sym_match_arms_repeat1] = STATE(184), - [sym_identifier] = ACTIONS(1079), + [sym_match_expression] = STATE(2637), + [sym_match_arms] = STATE(4477), + [sym_match_arm] = STATE(2141), + [sym_match_expression_list] = STATE(4299), + [sym_match_arm_type] = STATE(3851), + [sym_match_else_arm_clause] = STATE(2141), + [sym_select_expression] = STATE(2637), + [sym_lock_expression] = STATE(2637), + [sym_unsafe_expression] = STATE(2637), + [sym_sql_expression] = STATE(2637), + [sym_c_string_literal] = STATE(2762), + [sym_raw_string_literal] = STATE(2762), + [sym_interpreted_string_literal] = STATE(2762), + [sym_mutability_modifiers] = STATE(822), + [sym_plain_type] = STATE(3848), + [sym__plain_type_without_special] = STATE(2360), + [sym_anon_struct_type] = STATE(2362), + [sym_multi_return_type] = STATE(2360), + [sym_result_type] = STATE(2360), + [sym_option_type] = STATE(2360), + [sym_qualified_type] = STATE(3460), + [sym_fixed_array_type] = STATE(2362), + [sym_array_type] = STATE(2362), + [sym_pointer_type] = STATE(2362), + [sym_wrong_pointer_type] = STATE(2362), + [sym_map_type] = STATE(2362), + [sym_channel_type] = STATE(2362), + [sym_shared_type] = STATE(2362), + [sym_thread_type] = STATE(2362), + [sym_atomic_type] = STATE(2362), + [sym_generic_type] = STATE(2362), + [sym_function_type] = STATE(2362), + [sym__definite_range] = STATE(3816), + [aux_sym_match_arms_repeat1] = STATE(188), + [sym_identifier] = ACTIONS(1071), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1081), - [anon_sym_LBRACE] = ACTIONS(1083), - [anon_sym_RBRACE] = ACTIONS(1153), - [anon_sym_LPAREN] = ACTIONS(1087), - [anon_sym_fn] = ACTIONS(1089), - [anon_sym_PLUS] = ACTIONS(1091), - [anon_sym_DASH] = ACTIONS(1091), - [anon_sym_STAR] = ACTIONS(1093), - [anon_sym_struct] = ACTIONS(1095), + [anon_sym_DOT] = ACTIONS(1073), + [anon_sym_LBRACE] = ACTIONS(1075), + [anon_sym_RBRACE] = ACTIONS(1159), + [anon_sym_LPAREN] = ACTIONS(1079), + [anon_sym_fn] = ACTIONS(1081), + [anon_sym_PLUS] = ACTIONS(1083), + [anon_sym_DASH] = ACTIONS(1083), + [anon_sym_STAR] = ACTIONS(1085), + [anon_sym_struct] = ACTIONS(1087), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(1097), - [anon_sym_go] = ACTIONS(1099), - [anon_sym_spawn] = ACTIONS(1101), - [anon_sym_json_DOTdecode] = ACTIONS(1103), - [anon_sym_LBRACK2] = ACTIONS(1105), - [anon_sym_TILDE] = ACTIONS(1091), - [anon_sym_CARET] = ACTIONS(1091), - [anon_sym_AMP] = ACTIONS(1107), - [anon_sym_LT_DASH] = ACTIONS(1109), - [sym_none] = ACTIONS(1111), - [sym_true] = ACTIONS(1111), - [sym_false] = ACTIONS(1111), - [sym_nil] = ACTIONS(1111), - [anon_sym_if] = ACTIONS(1113), - [anon_sym_else] = ACTIONS(1115), - [anon_sym_DOLLARif] = ACTIONS(1117), - [anon_sym_match] = ACTIONS(1119), - [anon_sym_select] = ACTIONS(1121), - [anon_sym_lock] = ACTIONS(1123), - [anon_sym_rlock] = ACTIONS(1123), - [anon_sym_unsafe] = ACTIONS(1125), - [anon_sym_sql] = ACTIONS(1127), - [sym_int_literal] = ACTIONS(1111), - [sym_float_literal] = ACTIONS(1129), - [sym_rune_literal] = ACTIONS(1129), - [sym_pseudo_compile_time_identifier] = ACTIONS(1131), + [anon_sym_BANG] = ACTIONS(1089), + [anon_sym_go] = ACTIONS(1091), + [anon_sym_spawn] = ACTIONS(1093), + [anon_sym_json_DOTdecode] = ACTIONS(1095), + [anon_sym_LBRACK2] = ACTIONS(1097), + [anon_sym_TILDE] = ACTIONS(1083), + [anon_sym_CARET] = ACTIONS(1083), + [anon_sym_AMP] = ACTIONS(1099), + [anon_sym_LT_DASH] = ACTIONS(1101), + [sym_none] = ACTIONS(1103), + [sym_true] = ACTIONS(1103), + [sym_false] = ACTIONS(1103), + [sym_nil] = ACTIONS(1103), + [anon_sym_if] = ACTIONS(1105), + [anon_sym_else] = ACTIONS(1107), + [anon_sym_DOLLARif] = ACTIONS(1109), + [anon_sym_match] = ACTIONS(1111), + [anon_sym_select] = ACTIONS(1113), + [anon_sym_lock] = ACTIONS(1115), + [anon_sym_rlock] = ACTIONS(1115), + [anon_sym_unsafe] = ACTIONS(1117), + [anon_sym_sql] = ACTIONS(1119), + [sym_int_literal] = ACTIONS(1103), + [sym_float_literal] = ACTIONS(1121), + [sym_rune_literal] = ACTIONS(1121), + [sym_pseudo_compile_time_identifier] = ACTIONS(1123), [anon_sym_shared] = ACTIONS(83), [anon_sym_map_LBRACK] = ACTIONS(85), [anon_sym_chan] = ACTIONS(87), [anon_sym_thread] = ACTIONS(89), [anon_sym_atomic] = ACTIONS(91), - [sym___double_quote] = ACTIONS(1133), - [sym___single_quote] = ACTIONS(1135), - [sym___c_double_quote] = ACTIONS(1137), - [sym___c_single_quote] = ACTIONS(1139), - [sym___r_double_quote] = ACTIONS(1141), - [sym___r_single_quote] = ACTIONS(1143), + [sym___double_quote] = ACTIONS(1125), + [sym___single_quote] = ACTIONS(1127), + [sym___c_double_quote] = ACTIONS(1129), + [sym___c_single_quote] = ACTIONS(1131), + [sym___r_double_quote] = ACTIONS(1133), + [sym___r_single_quote] = ACTIONS(1135), }, - [157] = { - [sym_line_comment] = STATE(157), - [sym_block_comment] = STATE(157), - [sym__expression] = STATE(1117), - [sym__expression_without_blocks] = STATE(1141), - [sym__expression_with_blocks] = STATE(1141), - [sym_inc_expression] = STATE(1140), - [sym_dec_expression] = STATE(1140), - [sym_or_block_expression] = STATE(1140), - [sym_option_propagation_expression] = STATE(1140), - [sym_result_propagation_expression] = STATE(1140), - [sym_anon_struct_value_expression] = STATE(1199), - [sym_go_expression] = STATE(1140), - [sym_spawn_expression] = STATE(1140), - [sym_parenthesized_expression] = STATE(1140), - [sym_call_expression] = STATE(1140), - [sym_short_lambda] = STATE(4329), - [sym_argument] = STATE(1903), - [sym_type_initializer] = STATE(1199), + [160] = { + [sym_line_comment] = STATE(160), + [sym_block_comment] = STATE(160), + [sym__expression] = STATE(1126), + [sym__expression_without_blocks] = STATE(1210), + [sym__expression_with_blocks] = STATE(1210), + [sym_inc_expression] = STATE(1211), + [sym_dec_expression] = STATE(1211), + [sym_or_block_expression] = STATE(1211), + [sym_option_propagation_expression] = STATE(1211), + [sym_result_propagation_expression] = STATE(1211), + [sym_anon_struct_value_expression] = STATE(1212), + [sym_go_expression] = STATE(1211), + [sym_spawn_expression] = STATE(1211), + [sym_parenthesized_expression] = STATE(1211), + [sym_call_expression] = STATE(1211), + [sym_short_lambda] = STATE(4322), + [sym_argument] = STATE(1907), + [sym_type_initializer] = STATE(1212), [sym_keyed_element] = STATE(1904), - [sym_function_literal] = STATE(1140), - [sym_reference_expression] = STATE(1236), - [sym_type_reference_expression] = STATE(3541), - [sym_unary_expression] = STATE(1140), - [sym_receive_expression] = STATE(1140), - [sym_binary_expression] = STATE(1140), - [sym_as_type_cast_expression] = STATE(1140), - [sym__max_group] = STATE(1140), - [sym_literal] = STATE(1146), + [sym_function_literal] = STATE(1211), + [sym_reference_expression] = STATE(1252), + [sym_type_reference_expression] = STATE(3460), + [sym_unary_expression] = STATE(1211), + [sym_receive_expression] = STATE(1211), + [sym_binary_expression] = STATE(1211), + [sym_as_type_cast_expression] = STATE(1211), + [sym__max_group] = STATE(1211), + [sym_literal] = STATE(1209), [sym_spread_expression] = STATE(1904), - [sym_map_init_expression] = STATE(1199), - [sym_array_creation] = STATE(1140), - [sym_fixed_array_creation] = STATE(1140), - [sym_selector_expression] = STATE(1140), - [sym_index_expression] = STATE(1140), - [sym_slice_expression] = STATE(1140), - [sym_if_expression] = STATE(1199), - [sym_compile_time_if_expression] = STATE(1199), - [sym_is_expression] = STATE(1140), - [sym_in_expression] = STATE(1140), - [sym_enum_fetch] = STATE(1140), - [sym_match_expression] = STATE(1199), - [sym_select_expression] = STATE(1199), - [sym_lock_expression] = STATE(1199), - [sym_unsafe_expression] = STATE(1199), - [sym_sql_expression] = STATE(1199), - [sym_c_string_literal] = STATE(1147), - [sym_raw_string_literal] = STATE(1147), - [sym_interpreted_string_literal] = STATE(1147), - [sym_mutability_modifiers] = STATE(789), + [sym_map_init_expression] = STATE(1212), + [sym_array_creation] = STATE(1211), + [sym_fixed_array_creation] = STATE(1211), + [sym_selector_expression] = STATE(1211), + [sym_index_expression] = STATE(1211), + [sym_slice_expression] = STATE(1211), + [sym_if_expression] = STATE(1212), + [sym_compile_time_if_expression] = STATE(1212), + [sym_is_expression] = STATE(1211), + [sym_in_expression] = STATE(1211), + [sym_enum_fetch] = STATE(1211), + [sym_match_expression] = STATE(1212), + [sym_select_expression] = STATE(1212), + [sym_lock_expression] = STATE(1212), + [sym_unsafe_expression] = STATE(1212), + [sym_sql_expression] = STATE(1212), + [sym_c_string_literal] = STATE(1201), + [sym_raw_string_literal] = STATE(1201), + [sym_interpreted_string_literal] = STATE(1201), + [sym_mutability_modifiers] = STATE(769), [sym_mutable_expression] = STATE(1904), - [sym_plain_type] = STATE(4234), - [sym__plain_type_without_special] = STATE(2302), - [sym_anon_struct_type] = STATE(2303), - [sym_multi_return_type] = STATE(2302), - [sym_result_type] = STATE(2302), - [sym_option_type] = STATE(2302), - [sym_qualified_type] = STATE(3541), - [sym_fixed_array_type] = STATE(2303), - [sym_array_type] = STATE(2303), - [sym_pointer_type] = STATE(2303), - [sym_wrong_pointer_type] = STATE(2303), - [sym_map_type] = STATE(2303), - [sym_channel_type] = STATE(2303), - [sym_shared_type] = STATE(2303), - [sym_thread_type] = STATE(2303), - [sym_atomic_type] = STATE(2303), - [sym_generic_type] = STATE(2303), - [sym_function_type] = STATE(2303), - [aux_sym_argument_list_repeat1] = STATE(207), - [sym_identifier] = ACTIONS(1071), + [sym_plain_type] = STATE(4123), + [sym__plain_type_without_special] = STATE(2360), + [sym_anon_struct_type] = STATE(2362), + [sym_multi_return_type] = STATE(2360), + [sym_result_type] = STATE(2360), + [sym_option_type] = STATE(2360), + [sym_qualified_type] = STATE(3460), + [sym_fixed_array_type] = STATE(2362), + [sym_array_type] = STATE(2362), + [sym_pointer_type] = STATE(2362), + [sym_wrong_pointer_type] = STATE(2362), + [sym_map_type] = STATE(2362), + [sym_channel_type] = STATE(2362), + [sym_shared_type] = STATE(2362), + [sym_thread_type] = STATE(2362), + [sym_atomic_type] = STATE(2362), + [sym_generic_type] = STATE(2362), + [sym_function_type] = STATE(2362), + [aux_sym_argument_list_repeat1] = STATE(209), + [sym_identifier] = ACTIONS(1139), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), [anon_sym_DOT] = ACTIONS(631), [anon_sym_LBRACE] = ACTIONS(633), [anon_sym_LPAREN] = ACTIONS(637), - [anon_sym_RPAREN] = ACTIONS(1155), - [anon_sym_PIPE] = ACTIONS(1075), + [anon_sym_RPAREN] = ACTIONS(1161), + [anon_sym_PIPE] = ACTIONS(1143), [anon_sym_fn] = ACTIONS(641), [anon_sym_PLUS] = ACTIONS(643), [anon_sym_DASH] = ACTIONS(643), [anon_sym_STAR] = ACTIONS(645), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1077), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1145), [anon_sym_struct] = ACTIONS(649), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), @@ -40666,704 +41053,335 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym___r_double_quote] = ACTIONS(697), [sym___r_single_quote] = ACTIONS(699), }, - [158] = { - [sym_line_comment] = STATE(158), - [sym_block_comment] = STATE(158), - [sym__expression] = STATE(2611), - [sym__expression_without_blocks] = STATE(2579), - [sym__expression_with_blocks] = STATE(2625), + [161] = { + [sym_line_comment] = STATE(161), + [sym_block_comment] = STATE(161), + [sym__expression] = STATE(2585), + [sym__expression_without_blocks] = STATE(2584), + [sym__expression_with_blocks] = STATE(2638), [sym_inc_expression] = STATE(2765), [sym_dec_expression] = STATE(2765), [sym_or_block_expression] = STATE(2765), [sym_option_propagation_expression] = STATE(2765), [sym_result_propagation_expression] = STATE(2765), - [sym_anon_struct_value_expression] = STATE(2619), + [sym_anon_struct_value_expression] = STATE(2637), [sym_go_expression] = STATE(2765), [sym_spawn_expression] = STATE(2765), [sym_parenthesized_expression] = STATE(2765), [sym_call_expression] = STATE(2765), - [sym_type_initializer] = STATE(2619), + [sym_type_initializer] = STATE(2637), [sym_function_literal] = STATE(2765), [sym_reference_expression] = STATE(2764), - [sym_type_reference_expression] = STATE(3541), + [sym_type_reference_expression] = STATE(3460), [sym_unary_expression] = STATE(2765), [sym_receive_expression] = STATE(2765), [sym_binary_expression] = STATE(2765), [sym_as_type_cast_expression] = STATE(2765), [sym__max_group] = STATE(2765), - [sym_literal] = STATE(2769), - [sym_map_init_expression] = STATE(2619), + [sym_literal] = STATE(2771), + [sym_map_init_expression] = STATE(2637), [sym_array_creation] = STATE(2765), [sym_fixed_array_creation] = STATE(2765), [sym_selector_expression] = STATE(2765), [sym_index_expression] = STATE(2765), [sym_slice_expression] = STATE(2765), - [sym_if_expression] = STATE(2619), - [sym_compile_time_if_expression] = STATE(2619), + [sym_if_expression] = STATE(2637), + [sym_compile_time_if_expression] = STATE(2637), [sym_is_expression] = STATE(2765), [sym_in_expression] = STATE(2765), [sym_enum_fetch] = STATE(2765), - [sym_match_expression] = STATE(2619), - [sym_match_arms] = STATE(4627), - [sym_match_arm] = STATE(2132), - [sym_match_expression_list] = STATE(4087), - [sym_match_arm_type] = STATE(3795), - [sym_match_else_arm_clause] = STATE(2132), - [sym_select_expression] = STATE(2619), - [sym_lock_expression] = STATE(2619), - [sym_unsafe_expression] = STATE(2619), - [sym_sql_expression] = STATE(2619), - [sym_c_string_literal] = STATE(2660), - [sym_raw_string_literal] = STATE(2660), - [sym_interpreted_string_literal] = STATE(2660), - [sym_mutability_modifiers] = STATE(567), - [sym_plain_type] = STATE(3784), - [sym__plain_type_without_special] = STATE(2302), - [sym_anon_struct_type] = STATE(2303), - [sym_multi_return_type] = STATE(2302), - [sym_result_type] = STATE(2302), - [sym_option_type] = STATE(2302), - [sym_qualified_type] = STATE(3541), - [sym_fixed_array_type] = STATE(2303), - [sym_array_type] = STATE(2303), - [sym_pointer_type] = STATE(2303), - [sym_wrong_pointer_type] = STATE(2303), - [sym_map_type] = STATE(2303), - [sym_channel_type] = STATE(2303), - [sym_shared_type] = STATE(2303), - [sym_thread_type] = STATE(2303), - [sym_atomic_type] = STATE(2303), - [sym_generic_type] = STATE(2303), - [sym_function_type] = STATE(2303), - [sym__definite_range] = STATE(3781), - [aux_sym_match_arms_repeat1] = STATE(184), - [sym_identifier] = ACTIONS(1079), - [anon_sym_SLASH_SLASH] = ACTIONS(3), - [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1081), - [anon_sym_LBRACE] = ACTIONS(1083), - [anon_sym_RBRACE] = ACTIONS(1157), - [anon_sym_LPAREN] = ACTIONS(1087), - [anon_sym_fn] = ACTIONS(1089), - [anon_sym_PLUS] = ACTIONS(1091), - [anon_sym_DASH] = ACTIONS(1091), - [anon_sym_STAR] = ACTIONS(1093), - [anon_sym_struct] = ACTIONS(1095), - [anon_sym_mut] = ACTIONS(41), - [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(1097), - [anon_sym_go] = ACTIONS(1099), - [anon_sym_spawn] = ACTIONS(1101), - [anon_sym_json_DOTdecode] = ACTIONS(1103), - [anon_sym_LBRACK2] = ACTIONS(1105), - [anon_sym_TILDE] = ACTIONS(1091), - [anon_sym_CARET] = ACTIONS(1091), - [anon_sym_AMP] = ACTIONS(1107), - [anon_sym_LT_DASH] = ACTIONS(1109), - [sym_none] = ACTIONS(1111), - [sym_true] = ACTIONS(1111), - [sym_false] = ACTIONS(1111), - [sym_nil] = ACTIONS(1111), - [anon_sym_if] = ACTIONS(1113), - [anon_sym_else] = ACTIONS(1115), - [anon_sym_DOLLARif] = ACTIONS(1117), - [anon_sym_match] = ACTIONS(1119), - [anon_sym_select] = ACTIONS(1121), - [anon_sym_lock] = ACTIONS(1123), - [anon_sym_rlock] = ACTIONS(1123), - [anon_sym_unsafe] = ACTIONS(1125), - [anon_sym_sql] = ACTIONS(1127), - [sym_int_literal] = ACTIONS(1111), - [sym_float_literal] = ACTIONS(1129), - [sym_rune_literal] = ACTIONS(1129), - [sym_pseudo_compile_time_identifier] = ACTIONS(1131), - [anon_sym_shared] = ACTIONS(83), - [anon_sym_map_LBRACK] = ACTIONS(85), - [anon_sym_chan] = ACTIONS(87), - [anon_sym_thread] = ACTIONS(89), - [anon_sym_atomic] = ACTIONS(91), - [sym___double_quote] = ACTIONS(1133), - [sym___single_quote] = ACTIONS(1135), - [sym___c_double_quote] = ACTIONS(1137), - [sym___c_single_quote] = ACTIONS(1139), - [sym___r_double_quote] = ACTIONS(1141), - [sym___r_single_quote] = ACTIONS(1143), - }, - [159] = { - [sym_line_comment] = STATE(159), - [sym_block_comment] = STATE(159), - [sym__expression] = STATE(1117), - [sym__expression_without_blocks] = STATE(1141), - [sym__expression_with_blocks] = STATE(1141), - [sym_inc_expression] = STATE(1140), - [sym_dec_expression] = STATE(1140), - [sym_or_block_expression] = STATE(1140), - [sym_option_propagation_expression] = STATE(1140), - [sym_result_propagation_expression] = STATE(1140), - [sym_anon_struct_value_expression] = STATE(1199), - [sym_go_expression] = STATE(1140), - [sym_spawn_expression] = STATE(1140), - [sym_parenthesized_expression] = STATE(1140), - [sym_call_expression] = STATE(1140), - [sym_short_lambda] = STATE(4528), - [sym_argument] = STATE(1903), - [sym_type_initializer] = STATE(1199), - [sym_keyed_element] = STATE(1904), - [sym_function_literal] = STATE(1140), - [sym_reference_expression] = STATE(1236), - [sym_type_reference_expression] = STATE(3541), - [sym_unary_expression] = STATE(1140), - [sym_receive_expression] = STATE(1140), - [sym_binary_expression] = STATE(1140), - [sym_as_type_cast_expression] = STATE(1140), - [sym__max_group] = STATE(1140), - [sym_literal] = STATE(1146), - [sym_spread_expression] = STATE(1904), - [sym_map_init_expression] = STATE(1199), - [sym_array_creation] = STATE(1140), - [sym_fixed_array_creation] = STATE(1140), - [sym_selector_expression] = STATE(1140), - [sym_index_expression] = STATE(1140), - [sym_slice_expression] = STATE(1140), - [sym_if_expression] = STATE(1199), - [sym_compile_time_if_expression] = STATE(1199), - [sym_is_expression] = STATE(1140), - [sym_in_expression] = STATE(1140), - [sym_enum_fetch] = STATE(1140), - [sym_match_expression] = STATE(1199), - [sym_select_expression] = STATE(1199), - [sym_lock_expression] = STATE(1199), - [sym_unsafe_expression] = STATE(1199), - [sym_sql_expression] = STATE(1199), - [sym_c_string_literal] = STATE(1147), - [sym_raw_string_literal] = STATE(1147), - [sym_interpreted_string_literal] = STATE(1147), - [sym_mutability_modifiers] = STATE(789), - [sym_mutable_expression] = STATE(1904), - [sym_plain_type] = STATE(4234), - [sym__plain_type_without_special] = STATE(2302), - [sym_anon_struct_type] = STATE(2303), - [sym_multi_return_type] = STATE(2302), - [sym_result_type] = STATE(2302), - [sym_option_type] = STATE(2302), - [sym_qualified_type] = STATE(3541), - [sym_fixed_array_type] = STATE(2303), - [sym_array_type] = STATE(2303), - [sym_pointer_type] = STATE(2303), - [sym_wrong_pointer_type] = STATE(2303), - [sym_map_type] = STATE(2303), - [sym_channel_type] = STATE(2303), - [sym_shared_type] = STATE(2303), - [sym_thread_type] = STATE(2303), - [sym_atomic_type] = STATE(2303), - [sym_generic_type] = STATE(2303), - [sym_function_type] = STATE(2303), - [aux_sym_argument_list_repeat1] = STATE(197), + [sym_match_expression] = STATE(2637), + [sym_match_arms] = STATE(4482), + [sym_match_arm] = STATE(2141), + [sym_match_expression_list] = STATE(4299), + [sym_match_arm_type] = STATE(3851), + [sym_match_else_arm_clause] = STATE(2141), + [sym_select_expression] = STATE(2637), + [sym_lock_expression] = STATE(2637), + [sym_unsafe_expression] = STATE(2637), + [sym_sql_expression] = STATE(2637), + [sym_c_string_literal] = STATE(2762), + [sym_raw_string_literal] = STATE(2762), + [sym_interpreted_string_literal] = STATE(2762), + [sym_mutability_modifiers] = STATE(822), + [sym_plain_type] = STATE(3848), + [sym__plain_type_without_special] = STATE(2360), + [sym_anon_struct_type] = STATE(2362), + [sym_multi_return_type] = STATE(2360), + [sym_result_type] = STATE(2360), + [sym_option_type] = STATE(2360), + [sym_qualified_type] = STATE(3460), + [sym_fixed_array_type] = STATE(2362), + [sym_array_type] = STATE(2362), + [sym_pointer_type] = STATE(2362), + [sym_wrong_pointer_type] = STATE(2362), + [sym_map_type] = STATE(2362), + [sym_channel_type] = STATE(2362), + [sym_shared_type] = STATE(2362), + [sym_thread_type] = STATE(2362), + [sym_atomic_type] = STATE(2362), + [sym_generic_type] = STATE(2362), + [sym_function_type] = STATE(2362), + [sym__definite_range] = STATE(3816), + [aux_sym_match_arms_repeat1] = STATE(188), [sym_identifier] = ACTIONS(1071), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(631), - [anon_sym_LBRACE] = ACTIONS(633), - [anon_sym_LPAREN] = ACTIONS(637), - [anon_sym_RPAREN] = ACTIONS(1159), - [anon_sym_PIPE] = ACTIONS(1075), - [anon_sym_fn] = ACTIONS(641), - [anon_sym_PLUS] = ACTIONS(643), - [anon_sym_DASH] = ACTIONS(643), - [anon_sym_STAR] = ACTIONS(645), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1077), - [anon_sym_struct] = ACTIONS(649), + [anon_sym_DOT] = ACTIONS(1073), + [anon_sym_LBRACE] = ACTIONS(1075), + [anon_sym_RBRACE] = ACTIONS(1163), + [anon_sym_LPAREN] = ACTIONS(1079), + [anon_sym_fn] = ACTIONS(1081), + [anon_sym_PLUS] = ACTIONS(1083), + [anon_sym_DASH] = ACTIONS(1083), + [anon_sym_STAR] = ACTIONS(1085), + [anon_sym_struct] = ACTIONS(1087), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(655), - [anon_sym_go] = ACTIONS(657), - [anon_sym_spawn] = ACTIONS(659), - [anon_sym_json_DOTdecode] = ACTIONS(661), - [anon_sym_LBRACK2] = ACTIONS(663), - [anon_sym_TILDE] = ACTIONS(643), - [anon_sym_CARET] = ACTIONS(643), - [anon_sym_AMP] = ACTIONS(665), - [anon_sym_LT_DASH] = ACTIONS(667), - [sym_none] = ACTIONS(669), - [sym_true] = ACTIONS(669), - [sym_false] = ACTIONS(669), - [sym_nil] = ACTIONS(669), - [anon_sym_if] = ACTIONS(671), - [anon_sym_DOLLARif] = ACTIONS(673), - [anon_sym_match] = ACTIONS(675), - [anon_sym_select] = ACTIONS(677), - [anon_sym_lock] = ACTIONS(679), - [anon_sym_rlock] = ACTIONS(679), - [anon_sym_unsafe] = ACTIONS(681), - [anon_sym_sql] = ACTIONS(683), - [sym_int_literal] = ACTIONS(669), - [sym_float_literal] = ACTIONS(685), - [sym_rune_literal] = ACTIONS(685), - [sym_pseudo_compile_time_identifier] = ACTIONS(687), + [anon_sym_BANG] = ACTIONS(1089), + [anon_sym_go] = ACTIONS(1091), + [anon_sym_spawn] = ACTIONS(1093), + [anon_sym_json_DOTdecode] = ACTIONS(1095), + [anon_sym_LBRACK2] = ACTIONS(1097), + [anon_sym_TILDE] = ACTIONS(1083), + [anon_sym_CARET] = ACTIONS(1083), + [anon_sym_AMP] = ACTIONS(1099), + [anon_sym_LT_DASH] = ACTIONS(1101), + [sym_none] = ACTIONS(1103), + [sym_true] = ACTIONS(1103), + [sym_false] = ACTIONS(1103), + [sym_nil] = ACTIONS(1103), + [anon_sym_if] = ACTIONS(1105), + [anon_sym_else] = ACTIONS(1107), + [anon_sym_DOLLARif] = ACTIONS(1109), + [anon_sym_match] = ACTIONS(1111), + [anon_sym_select] = ACTIONS(1113), + [anon_sym_lock] = ACTIONS(1115), + [anon_sym_rlock] = ACTIONS(1115), + [anon_sym_unsafe] = ACTIONS(1117), + [anon_sym_sql] = ACTIONS(1119), + [sym_int_literal] = ACTIONS(1103), + [sym_float_literal] = ACTIONS(1121), + [sym_rune_literal] = ACTIONS(1121), + [sym_pseudo_compile_time_identifier] = ACTIONS(1123), [anon_sym_shared] = ACTIONS(83), [anon_sym_map_LBRACK] = ACTIONS(85), [anon_sym_chan] = ACTIONS(87), [anon_sym_thread] = ACTIONS(89), [anon_sym_atomic] = ACTIONS(91), - [sym___double_quote] = ACTIONS(689), - [sym___single_quote] = ACTIONS(691), - [sym___c_double_quote] = ACTIONS(693), - [sym___c_single_quote] = ACTIONS(695), - [sym___r_double_quote] = ACTIONS(697), - [sym___r_single_quote] = ACTIONS(699), + [sym___double_quote] = ACTIONS(1125), + [sym___single_quote] = ACTIONS(1127), + [sym___c_double_quote] = ACTIONS(1129), + [sym___c_single_quote] = ACTIONS(1131), + [sym___r_double_quote] = ACTIONS(1133), + [sym___r_single_quote] = ACTIONS(1135), }, - [160] = { - [sym_line_comment] = STATE(160), - [sym_block_comment] = STATE(160), - [sym__expression] = STATE(2611), - [sym__expression_without_blocks] = STATE(2579), - [sym__expression_with_blocks] = STATE(2625), + [162] = { + [sym_line_comment] = STATE(162), + [sym_block_comment] = STATE(162), + [sym__expression] = STATE(2585), + [sym__expression_without_blocks] = STATE(2584), + [sym__expression_with_blocks] = STATE(2638), [sym_inc_expression] = STATE(2765), [sym_dec_expression] = STATE(2765), [sym_or_block_expression] = STATE(2765), [sym_option_propagation_expression] = STATE(2765), [sym_result_propagation_expression] = STATE(2765), - [sym_anon_struct_value_expression] = STATE(2619), + [sym_anon_struct_value_expression] = STATE(2637), [sym_go_expression] = STATE(2765), [sym_spawn_expression] = STATE(2765), [sym_parenthesized_expression] = STATE(2765), [sym_call_expression] = STATE(2765), - [sym_type_initializer] = STATE(2619), + [sym_type_initializer] = STATE(2637), [sym_function_literal] = STATE(2765), [sym_reference_expression] = STATE(2764), - [sym_type_reference_expression] = STATE(3541), + [sym_type_reference_expression] = STATE(3460), [sym_unary_expression] = STATE(2765), [sym_receive_expression] = STATE(2765), [sym_binary_expression] = STATE(2765), [sym_as_type_cast_expression] = STATE(2765), [sym__max_group] = STATE(2765), - [sym_literal] = STATE(2769), - [sym_map_init_expression] = STATE(2619), + [sym_literal] = STATE(2771), + [sym_map_init_expression] = STATE(2637), [sym_array_creation] = STATE(2765), [sym_fixed_array_creation] = STATE(2765), [sym_selector_expression] = STATE(2765), [sym_index_expression] = STATE(2765), [sym_slice_expression] = STATE(2765), - [sym_if_expression] = STATE(2619), - [sym_compile_time_if_expression] = STATE(2619), + [sym_if_expression] = STATE(2637), + [sym_compile_time_if_expression] = STATE(2637), [sym_is_expression] = STATE(2765), [sym_in_expression] = STATE(2765), [sym_enum_fetch] = STATE(2765), - [sym_match_expression] = STATE(2619), - [sym_match_arms] = STATE(4564), - [sym_match_arm] = STATE(2132), - [sym_match_expression_list] = STATE(4087), - [sym_match_arm_type] = STATE(3795), - [sym_match_else_arm_clause] = STATE(2132), - [sym_select_expression] = STATE(2619), - [sym_lock_expression] = STATE(2619), - [sym_unsafe_expression] = STATE(2619), - [sym_sql_expression] = STATE(2619), - [sym_c_string_literal] = STATE(2660), - [sym_raw_string_literal] = STATE(2660), - [sym_interpreted_string_literal] = STATE(2660), - [sym_mutability_modifiers] = STATE(567), - [sym_plain_type] = STATE(3784), - [sym__plain_type_without_special] = STATE(2302), - [sym_anon_struct_type] = STATE(2303), - [sym_multi_return_type] = STATE(2302), - [sym_result_type] = STATE(2302), - [sym_option_type] = STATE(2302), - [sym_qualified_type] = STATE(3541), - [sym_fixed_array_type] = STATE(2303), - [sym_array_type] = STATE(2303), - [sym_pointer_type] = STATE(2303), - [sym_wrong_pointer_type] = STATE(2303), - [sym_map_type] = STATE(2303), - [sym_channel_type] = STATE(2303), - [sym_shared_type] = STATE(2303), - [sym_thread_type] = STATE(2303), - [sym_atomic_type] = STATE(2303), - [sym_generic_type] = STATE(2303), - [sym_function_type] = STATE(2303), - [sym__definite_range] = STATE(3781), - [aux_sym_match_arms_repeat1] = STATE(184), - [sym_identifier] = ACTIONS(1079), - [anon_sym_SLASH_SLASH] = ACTIONS(3), - [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1081), - [anon_sym_LBRACE] = ACTIONS(1083), - [anon_sym_RBRACE] = ACTIONS(1161), - [anon_sym_LPAREN] = ACTIONS(1087), - [anon_sym_fn] = ACTIONS(1089), - [anon_sym_PLUS] = ACTIONS(1091), - [anon_sym_DASH] = ACTIONS(1091), - [anon_sym_STAR] = ACTIONS(1093), - [anon_sym_struct] = ACTIONS(1095), - [anon_sym_mut] = ACTIONS(41), - [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(1097), - [anon_sym_go] = ACTIONS(1099), - [anon_sym_spawn] = ACTIONS(1101), - [anon_sym_json_DOTdecode] = ACTIONS(1103), - [anon_sym_LBRACK2] = ACTIONS(1105), - [anon_sym_TILDE] = ACTIONS(1091), - [anon_sym_CARET] = ACTIONS(1091), - [anon_sym_AMP] = ACTIONS(1107), - [anon_sym_LT_DASH] = ACTIONS(1109), - [sym_none] = ACTIONS(1111), - [sym_true] = ACTIONS(1111), - [sym_false] = ACTIONS(1111), - [sym_nil] = ACTIONS(1111), - [anon_sym_if] = ACTIONS(1113), - [anon_sym_else] = ACTIONS(1115), - [anon_sym_DOLLARif] = ACTIONS(1117), - [anon_sym_match] = ACTIONS(1119), - [anon_sym_select] = ACTIONS(1121), - [anon_sym_lock] = ACTIONS(1123), - [anon_sym_rlock] = ACTIONS(1123), - [anon_sym_unsafe] = ACTIONS(1125), - [anon_sym_sql] = ACTIONS(1127), - [sym_int_literal] = ACTIONS(1111), - [sym_float_literal] = ACTIONS(1129), - [sym_rune_literal] = ACTIONS(1129), - [sym_pseudo_compile_time_identifier] = ACTIONS(1131), - [anon_sym_shared] = ACTIONS(83), - [anon_sym_map_LBRACK] = ACTIONS(85), - [anon_sym_chan] = ACTIONS(87), - [anon_sym_thread] = ACTIONS(89), - [anon_sym_atomic] = ACTIONS(91), - [sym___double_quote] = ACTIONS(1133), - [sym___single_quote] = ACTIONS(1135), - [sym___c_double_quote] = ACTIONS(1137), - [sym___c_single_quote] = ACTIONS(1139), - [sym___r_double_quote] = ACTIONS(1141), - [sym___r_single_quote] = ACTIONS(1143), - }, - [161] = { - [sym_line_comment] = STATE(161), - [sym_block_comment] = STATE(161), - [sym__expression] = STATE(1117), - [sym__expression_without_blocks] = STATE(1141), - [sym__expression_with_blocks] = STATE(1141), - [sym_inc_expression] = STATE(1140), - [sym_dec_expression] = STATE(1140), - [sym_or_block_expression] = STATE(1140), - [sym_option_propagation_expression] = STATE(1140), - [sym_result_propagation_expression] = STATE(1140), - [sym_anon_struct_value_expression] = STATE(1199), - [sym_go_expression] = STATE(1140), - [sym_spawn_expression] = STATE(1140), - [sym_parenthesized_expression] = STATE(1140), - [sym_call_expression] = STATE(1140), - [sym_short_lambda] = STATE(4502), - [sym_argument] = STATE(1903), - [sym_type_initializer] = STATE(1199), - [sym_keyed_element] = STATE(1904), - [sym_function_literal] = STATE(1140), - [sym_reference_expression] = STATE(1236), - [sym_type_reference_expression] = STATE(3541), - [sym_unary_expression] = STATE(1140), - [sym_receive_expression] = STATE(1140), - [sym_binary_expression] = STATE(1140), - [sym_as_type_cast_expression] = STATE(1140), - [sym__max_group] = STATE(1140), - [sym_literal] = STATE(1146), - [sym_spread_expression] = STATE(1904), - [sym_map_init_expression] = STATE(1199), - [sym_array_creation] = STATE(1140), - [sym_fixed_array_creation] = STATE(1140), - [sym_selector_expression] = STATE(1140), - [sym_index_expression] = STATE(1140), - [sym_slice_expression] = STATE(1140), - [sym_if_expression] = STATE(1199), - [sym_compile_time_if_expression] = STATE(1199), - [sym_is_expression] = STATE(1140), - [sym_in_expression] = STATE(1140), - [sym_enum_fetch] = STATE(1140), - [sym_match_expression] = STATE(1199), - [sym_select_expression] = STATE(1199), - [sym_lock_expression] = STATE(1199), - [sym_unsafe_expression] = STATE(1199), - [sym_sql_expression] = STATE(1199), - [sym_c_string_literal] = STATE(1147), - [sym_raw_string_literal] = STATE(1147), - [sym_interpreted_string_literal] = STATE(1147), - [sym_mutability_modifiers] = STATE(789), - [sym_mutable_expression] = STATE(1904), - [sym_plain_type] = STATE(4234), - [sym__plain_type_without_special] = STATE(2302), - [sym_anon_struct_type] = STATE(2303), - [sym_multi_return_type] = STATE(2302), - [sym_result_type] = STATE(2302), - [sym_option_type] = STATE(2302), - [sym_qualified_type] = STATE(3541), - [sym_fixed_array_type] = STATE(2303), - [sym_array_type] = STATE(2303), - [sym_pointer_type] = STATE(2303), - [sym_wrong_pointer_type] = STATE(2303), - [sym_map_type] = STATE(2303), - [sym_channel_type] = STATE(2303), - [sym_shared_type] = STATE(2303), - [sym_thread_type] = STATE(2303), - [sym_atomic_type] = STATE(2303), - [sym_generic_type] = STATE(2303), - [sym_function_type] = STATE(2303), - [aux_sym_argument_list_repeat1] = STATE(209), - [sym_identifier] = ACTIONS(1071), - [anon_sym_SLASH_SLASH] = ACTIONS(3), - [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(631), - [anon_sym_LBRACE] = ACTIONS(633), - [anon_sym_LPAREN] = ACTIONS(637), - [anon_sym_RPAREN] = ACTIONS(1163), - [anon_sym_PIPE] = ACTIONS(1075), - [anon_sym_fn] = ACTIONS(641), - [anon_sym_PLUS] = ACTIONS(643), - [anon_sym_DASH] = ACTIONS(643), - [anon_sym_STAR] = ACTIONS(645), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1077), - [anon_sym_struct] = ACTIONS(649), - [anon_sym_mut] = ACTIONS(41), - [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(655), - [anon_sym_go] = ACTIONS(657), - [anon_sym_spawn] = ACTIONS(659), - [anon_sym_json_DOTdecode] = ACTIONS(661), - [anon_sym_LBRACK2] = ACTIONS(663), - [anon_sym_TILDE] = ACTIONS(643), - [anon_sym_CARET] = ACTIONS(643), - [anon_sym_AMP] = ACTIONS(665), - [anon_sym_LT_DASH] = ACTIONS(667), - [sym_none] = ACTIONS(669), - [sym_true] = ACTIONS(669), - [sym_false] = ACTIONS(669), - [sym_nil] = ACTIONS(669), - [anon_sym_if] = ACTIONS(671), - [anon_sym_DOLLARif] = ACTIONS(673), - [anon_sym_match] = ACTIONS(675), - [anon_sym_select] = ACTIONS(677), - [anon_sym_lock] = ACTIONS(679), - [anon_sym_rlock] = ACTIONS(679), - [anon_sym_unsafe] = ACTIONS(681), - [anon_sym_sql] = ACTIONS(683), - [sym_int_literal] = ACTIONS(669), - [sym_float_literal] = ACTIONS(685), - [sym_rune_literal] = ACTIONS(685), - [sym_pseudo_compile_time_identifier] = ACTIONS(687), - [anon_sym_shared] = ACTIONS(83), - [anon_sym_map_LBRACK] = ACTIONS(85), - [anon_sym_chan] = ACTIONS(87), - [anon_sym_thread] = ACTIONS(89), - [anon_sym_atomic] = ACTIONS(91), - [sym___double_quote] = ACTIONS(689), - [sym___single_quote] = ACTIONS(691), - [sym___c_double_quote] = ACTIONS(693), - [sym___c_single_quote] = ACTIONS(695), - [sym___r_double_quote] = ACTIONS(697), - [sym___r_single_quote] = ACTIONS(699), - }, - [162] = { - [sym_line_comment] = STATE(162), - [sym_block_comment] = STATE(162), - [sym__expression] = STATE(1117), - [sym__expression_without_blocks] = STATE(1141), - [sym__expression_with_blocks] = STATE(1141), - [sym_inc_expression] = STATE(1140), - [sym_dec_expression] = STATE(1140), - [sym_or_block_expression] = STATE(1140), - [sym_option_propagation_expression] = STATE(1140), - [sym_result_propagation_expression] = STATE(1140), - [sym_anon_struct_value_expression] = STATE(1199), - [sym_go_expression] = STATE(1140), - [sym_spawn_expression] = STATE(1140), - [sym_parenthesized_expression] = STATE(1140), - [sym_call_expression] = STATE(1140), - [sym_short_lambda] = STATE(4580), - [sym_argument] = STATE(1903), - [sym_type_initializer] = STATE(1199), - [sym_keyed_element] = STATE(1904), - [sym_function_literal] = STATE(1140), - [sym_reference_expression] = STATE(1236), - [sym_type_reference_expression] = STATE(3541), - [sym_unary_expression] = STATE(1140), - [sym_receive_expression] = STATE(1140), - [sym_binary_expression] = STATE(1140), - [sym_as_type_cast_expression] = STATE(1140), - [sym__max_group] = STATE(1140), - [sym_literal] = STATE(1146), - [sym_spread_expression] = STATE(1904), - [sym_map_init_expression] = STATE(1199), - [sym_array_creation] = STATE(1140), - [sym_fixed_array_creation] = STATE(1140), - [sym_selector_expression] = STATE(1140), - [sym_index_expression] = STATE(1140), - [sym_slice_expression] = STATE(1140), - [sym_if_expression] = STATE(1199), - [sym_compile_time_if_expression] = STATE(1199), - [sym_is_expression] = STATE(1140), - [sym_in_expression] = STATE(1140), - [sym_enum_fetch] = STATE(1140), - [sym_match_expression] = STATE(1199), - [sym_select_expression] = STATE(1199), - [sym_lock_expression] = STATE(1199), - [sym_unsafe_expression] = STATE(1199), - [sym_sql_expression] = STATE(1199), - [sym_c_string_literal] = STATE(1147), - [sym_raw_string_literal] = STATE(1147), - [sym_interpreted_string_literal] = STATE(1147), - [sym_mutability_modifiers] = STATE(789), - [sym_mutable_expression] = STATE(1904), - [sym_plain_type] = STATE(4234), - [sym__plain_type_without_special] = STATE(2302), - [sym_anon_struct_type] = STATE(2303), - [sym_multi_return_type] = STATE(2302), - [sym_result_type] = STATE(2302), - [sym_option_type] = STATE(2302), - [sym_qualified_type] = STATE(3541), - [sym_fixed_array_type] = STATE(2303), - [sym_array_type] = STATE(2303), - [sym_pointer_type] = STATE(2303), - [sym_wrong_pointer_type] = STATE(2303), - [sym_map_type] = STATE(2303), - [sym_channel_type] = STATE(2303), - [sym_shared_type] = STATE(2303), - [sym_thread_type] = STATE(2303), - [sym_atomic_type] = STATE(2303), - [sym_generic_type] = STATE(2303), - [sym_function_type] = STATE(2303), - [aux_sym_argument_list_repeat1] = STATE(208), + [sym_match_expression] = STATE(2637), + [sym_match_arms] = STATE(4365), + [sym_match_arm] = STATE(2141), + [sym_match_expression_list] = STATE(4299), + [sym_match_arm_type] = STATE(3851), + [sym_match_else_arm_clause] = STATE(2141), + [sym_select_expression] = STATE(2637), + [sym_lock_expression] = STATE(2637), + [sym_unsafe_expression] = STATE(2637), + [sym_sql_expression] = STATE(2637), + [sym_c_string_literal] = STATE(2762), + [sym_raw_string_literal] = STATE(2762), + [sym_interpreted_string_literal] = STATE(2762), + [sym_mutability_modifiers] = STATE(822), + [sym_plain_type] = STATE(3848), + [sym__plain_type_without_special] = STATE(2360), + [sym_anon_struct_type] = STATE(2362), + [sym_multi_return_type] = STATE(2360), + [sym_result_type] = STATE(2360), + [sym_option_type] = STATE(2360), + [sym_qualified_type] = STATE(3460), + [sym_fixed_array_type] = STATE(2362), + [sym_array_type] = STATE(2362), + [sym_pointer_type] = STATE(2362), + [sym_wrong_pointer_type] = STATE(2362), + [sym_map_type] = STATE(2362), + [sym_channel_type] = STATE(2362), + [sym_shared_type] = STATE(2362), + [sym_thread_type] = STATE(2362), + [sym_atomic_type] = STATE(2362), + [sym_generic_type] = STATE(2362), + [sym_function_type] = STATE(2362), + [sym__definite_range] = STATE(3816), + [aux_sym_match_arms_repeat1] = STATE(188), [sym_identifier] = ACTIONS(1071), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(631), - [anon_sym_LBRACE] = ACTIONS(633), - [anon_sym_LPAREN] = ACTIONS(637), - [anon_sym_RPAREN] = ACTIONS(1165), - [anon_sym_PIPE] = ACTIONS(1075), - [anon_sym_fn] = ACTIONS(641), - [anon_sym_PLUS] = ACTIONS(643), - [anon_sym_DASH] = ACTIONS(643), - [anon_sym_STAR] = ACTIONS(645), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1077), - [anon_sym_struct] = ACTIONS(649), + [anon_sym_DOT] = ACTIONS(1073), + [anon_sym_LBRACE] = ACTIONS(1075), + [anon_sym_RBRACE] = ACTIONS(1165), + [anon_sym_LPAREN] = ACTIONS(1079), + [anon_sym_fn] = ACTIONS(1081), + [anon_sym_PLUS] = ACTIONS(1083), + [anon_sym_DASH] = ACTIONS(1083), + [anon_sym_STAR] = ACTIONS(1085), + [anon_sym_struct] = ACTIONS(1087), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(655), - [anon_sym_go] = ACTIONS(657), - [anon_sym_spawn] = ACTIONS(659), - [anon_sym_json_DOTdecode] = ACTIONS(661), - [anon_sym_LBRACK2] = ACTIONS(663), - [anon_sym_TILDE] = ACTIONS(643), - [anon_sym_CARET] = ACTIONS(643), - [anon_sym_AMP] = ACTIONS(665), - [anon_sym_LT_DASH] = ACTIONS(667), - [sym_none] = ACTIONS(669), - [sym_true] = ACTIONS(669), - [sym_false] = ACTIONS(669), - [sym_nil] = ACTIONS(669), - [anon_sym_if] = ACTIONS(671), - [anon_sym_DOLLARif] = ACTIONS(673), - [anon_sym_match] = ACTIONS(675), - [anon_sym_select] = ACTIONS(677), - [anon_sym_lock] = ACTIONS(679), - [anon_sym_rlock] = ACTIONS(679), - [anon_sym_unsafe] = ACTIONS(681), - [anon_sym_sql] = ACTIONS(683), - [sym_int_literal] = ACTIONS(669), - [sym_float_literal] = ACTIONS(685), - [sym_rune_literal] = ACTIONS(685), - [sym_pseudo_compile_time_identifier] = ACTIONS(687), + [anon_sym_BANG] = ACTIONS(1089), + [anon_sym_go] = ACTIONS(1091), + [anon_sym_spawn] = ACTIONS(1093), + [anon_sym_json_DOTdecode] = ACTIONS(1095), + [anon_sym_LBRACK2] = ACTIONS(1097), + [anon_sym_TILDE] = ACTIONS(1083), + [anon_sym_CARET] = ACTIONS(1083), + [anon_sym_AMP] = ACTIONS(1099), + [anon_sym_LT_DASH] = ACTIONS(1101), + [sym_none] = ACTIONS(1103), + [sym_true] = ACTIONS(1103), + [sym_false] = ACTIONS(1103), + [sym_nil] = ACTIONS(1103), + [anon_sym_if] = ACTIONS(1105), + [anon_sym_else] = ACTIONS(1107), + [anon_sym_DOLLARif] = ACTIONS(1109), + [anon_sym_match] = ACTIONS(1111), + [anon_sym_select] = ACTIONS(1113), + [anon_sym_lock] = ACTIONS(1115), + [anon_sym_rlock] = ACTIONS(1115), + [anon_sym_unsafe] = ACTIONS(1117), + [anon_sym_sql] = ACTIONS(1119), + [sym_int_literal] = ACTIONS(1103), + [sym_float_literal] = ACTIONS(1121), + [sym_rune_literal] = ACTIONS(1121), + [sym_pseudo_compile_time_identifier] = ACTIONS(1123), [anon_sym_shared] = ACTIONS(83), [anon_sym_map_LBRACK] = ACTIONS(85), [anon_sym_chan] = ACTIONS(87), [anon_sym_thread] = ACTIONS(89), [anon_sym_atomic] = ACTIONS(91), - [sym___double_quote] = ACTIONS(689), - [sym___single_quote] = ACTIONS(691), - [sym___c_double_quote] = ACTIONS(693), - [sym___c_single_quote] = ACTIONS(695), - [sym___r_double_quote] = ACTIONS(697), - [sym___r_single_quote] = ACTIONS(699), + [sym___double_quote] = ACTIONS(1125), + [sym___single_quote] = ACTIONS(1127), + [sym___c_double_quote] = ACTIONS(1129), + [sym___c_single_quote] = ACTIONS(1131), + [sym___r_double_quote] = ACTIONS(1133), + [sym___r_single_quote] = ACTIONS(1135), }, [163] = { [sym_line_comment] = STATE(163), [sym_block_comment] = STATE(163), - [sym__expression] = STATE(1117), - [sym__expression_without_blocks] = STATE(1141), - [sym__expression_with_blocks] = STATE(1141), - [sym_inc_expression] = STATE(1140), - [sym_dec_expression] = STATE(1140), - [sym_or_block_expression] = STATE(1140), - [sym_option_propagation_expression] = STATE(1140), - [sym_result_propagation_expression] = STATE(1140), - [sym_anon_struct_value_expression] = STATE(1199), - [sym_go_expression] = STATE(1140), - [sym_spawn_expression] = STATE(1140), - [sym_parenthesized_expression] = STATE(1140), - [sym_call_expression] = STATE(1140), - [sym_short_lambda] = STATE(4473), - [sym_argument] = STATE(1903), - [sym_type_initializer] = STATE(1199), + [sym__expression] = STATE(1126), + [sym__expression_without_blocks] = STATE(1210), + [sym__expression_with_blocks] = STATE(1210), + [sym_inc_expression] = STATE(1211), + [sym_dec_expression] = STATE(1211), + [sym_or_block_expression] = STATE(1211), + [sym_option_propagation_expression] = STATE(1211), + [sym_result_propagation_expression] = STATE(1211), + [sym_anon_struct_value_expression] = STATE(1212), + [sym_go_expression] = STATE(1211), + [sym_spawn_expression] = STATE(1211), + [sym_parenthesized_expression] = STATE(1211), + [sym_call_expression] = STATE(1211), + [sym_short_lambda] = STATE(4558), + [sym_argument] = STATE(1907), + [sym_type_initializer] = STATE(1212), [sym_keyed_element] = STATE(1904), - [sym_function_literal] = STATE(1140), - [sym_reference_expression] = STATE(1236), - [sym_type_reference_expression] = STATE(3541), - [sym_unary_expression] = STATE(1140), - [sym_receive_expression] = STATE(1140), - [sym_binary_expression] = STATE(1140), - [sym_as_type_cast_expression] = STATE(1140), - [sym__max_group] = STATE(1140), - [sym_literal] = STATE(1146), + [sym_function_literal] = STATE(1211), + [sym_reference_expression] = STATE(1252), + [sym_type_reference_expression] = STATE(3460), + [sym_unary_expression] = STATE(1211), + [sym_receive_expression] = STATE(1211), + [sym_binary_expression] = STATE(1211), + [sym_as_type_cast_expression] = STATE(1211), + [sym__max_group] = STATE(1211), + [sym_literal] = STATE(1209), [sym_spread_expression] = STATE(1904), - [sym_map_init_expression] = STATE(1199), - [sym_array_creation] = STATE(1140), - [sym_fixed_array_creation] = STATE(1140), - [sym_selector_expression] = STATE(1140), - [sym_index_expression] = STATE(1140), - [sym_slice_expression] = STATE(1140), - [sym_if_expression] = STATE(1199), - [sym_compile_time_if_expression] = STATE(1199), - [sym_is_expression] = STATE(1140), - [sym_in_expression] = STATE(1140), - [sym_enum_fetch] = STATE(1140), - [sym_match_expression] = STATE(1199), - [sym_select_expression] = STATE(1199), - [sym_lock_expression] = STATE(1199), - [sym_unsafe_expression] = STATE(1199), - [sym_sql_expression] = STATE(1199), - [sym_c_string_literal] = STATE(1147), - [sym_raw_string_literal] = STATE(1147), - [sym_interpreted_string_literal] = STATE(1147), - [sym_mutability_modifiers] = STATE(789), + [sym_map_init_expression] = STATE(1212), + [sym_array_creation] = STATE(1211), + [sym_fixed_array_creation] = STATE(1211), + [sym_selector_expression] = STATE(1211), + [sym_index_expression] = STATE(1211), + [sym_slice_expression] = STATE(1211), + [sym_if_expression] = STATE(1212), + [sym_compile_time_if_expression] = STATE(1212), + [sym_is_expression] = STATE(1211), + [sym_in_expression] = STATE(1211), + [sym_enum_fetch] = STATE(1211), + [sym_match_expression] = STATE(1212), + [sym_select_expression] = STATE(1212), + [sym_lock_expression] = STATE(1212), + [sym_unsafe_expression] = STATE(1212), + [sym_sql_expression] = STATE(1212), + [sym_c_string_literal] = STATE(1201), + [sym_raw_string_literal] = STATE(1201), + [sym_interpreted_string_literal] = STATE(1201), + [sym_mutability_modifiers] = STATE(769), [sym_mutable_expression] = STATE(1904), - [sym_plain_type] = STATE(4234), - [sym__plain_type_without_special] = STATE(2302), - [sym_anon_struct_type] = STATE(2303), - [sym_multi_return_type] = STATE(2302), - [sym_result_type] = STATE(2302), - [sym_option_type] = STATE(2302), - [sym_qualified_type] = STATE(3541), - [sym_fixed_array_type] = STATE(2303), - [sym_array_type] = STATE(2303), - [sym_pointer_type] = STATE(2303), - [sym_wrong_pointer_type] = STATE(2303), - [sym_map_type] = STATE(2303), - [sym_channel_type] = STATE(2303), - [sym_shared_type] = STATE(2303), - [sym_thread_type] = STATE(2303), - [sym_atomic_type] = STATE(2303), - [sym_generic_type] = STATE(2303), - [sym_function_type] = STATE(2303), - [aux_sym_argument_list_repeat1] = STATE(203), - [sym_identifier] = ACTIONS(1071), + [sym_plain_type] = STATE(4123), + [sym__plain_type_without_special] = STATE(2360), + [sym_anon_struct_type] = STATE(2362), + [sym_multi_return_type] = STATE(2360), + [sym_result_type] = STATE(2360), + [sym_option_type] = STATE(2360), + [sym_qualified_type] = STATE(3460), + [sym_fixed_array_type] = STATE(2362), + [sym_array_type] = STATE(2362), + [sym_pointer_type] = STATE(2362), + [sym_wrong_pointer_type] = STATE(2362), + [sym_map_type] = STATE(2362), + [sym_channel_type] = STATE(2362), + [sym_shared_type] = STATE(2362), + [sym_thread_type] = STATE(2362), + [sym_atomic_type] = STATE(2362), + [sym_generic_type] = STATE(2362), + [sym_function_type] = STATE(2362), + [aux_sym_argument_list_repeat1] = STATE(206), + [sym_identifier] = ACTIONS(1139), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), [anon_sym_DOT] = ACTIONS(631), [anon_sym_LBRACE] = ACTIONS(633), [anon_sym_LPAREN] = ACTIONS(637), [anon_sym_RPAREN] = ACTIONS(1167), - [anon_sym_PIPE] = ACTIONS(1075), + [anon_sym_PIPE] = ACTIONS(1143), [anon_sym_fn] = ACTIONS(641), [anon_sym_PLUS] = ACTIONS(643), [anon_sym_DASH] = ACTIONS(643), [anon_sym_STAR] = ACTIONS(645), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1077), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1145), [anon_sym_struct] = ACTIONS(649), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), @@ -41407,824 +41425,824 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [164] = { [sym_line_comment] = STATE(164), [sym_block_comment] = STATE(164), - [sym__expression] = STATE(2611), - [sym__expression_without_blocks] = STATE(2579), - [sym__expression_with_blocks] = STATE(2625), + [sym__expression] = STATE(2585), + [sym__expression_without_blocks] = STATE(2584), + [sym__expression_with_blocks] = STATE(2638), [sym_inc_expression] = STATE(2765), [sym_dec_expression] = STATE(2765), [sym_or_block_expression] = STATE(2765), [sym_option_propagation_expression] = STATE(2765), [sym_result_propagation_expression] = STATE(2765), - [sym_anon_struct_value_expression] = STATE(2619), + [sym_anon_struct_value_expression] = STATE(2637), [sym_go_expression] = STATE(2765), [sym_spawn_expression] = STATE(2765), [sym_parenthesized_expression] = STATE(2765), [sym_call_expression] = STATE(2765), - [sym_type_initializer] = STATE(2619), + [sym_type_initializer] = STATE(2637), [sym_function_literal] = STATE(2765), [sym_reference_expression] = STATE(2764), - [sym_type_reference_expression] = STATE(3541), + [sym_type_reference_expression] = STATE(3460), [sym_unary_expression] = STATE(2765), [sym_receive_expression] = STATE(2765), [sym_binary_expression] = STATE(2765), [sym_as_type_cast_expression] = STATE(2765), [sym__max_group] = STATE(2765), - [sym_literal] = STATE(2769), - [sym_map_init_expression] = STATE(2619), + [sym_literal] = STATE(2771), + [sym_map_init_expression] = STATE(2637), [sym_array_creation] = STATE(2765), [sym_fixed_array_creation] = STATE(2765), [sym_selector_expression] = STATE(2765), [sym_index_expression] = STATE(2765), [sym_slice_expression] = STATE(2765), - [sym_if_expression] = STATE(2619), - [sym_compile_time_if_expression] = STATE(2619), + [sym_if_expression] = STATE(2637), + [sym_compile_time_if_expression] = STATE(2637), [sym_is_expression] = STATE(2765), [sym_in_expression] = STATE(2765), [sym_enum_fetch] = STATE(2765), - [sym_match_expression] = STATE(2619), - [sym_match_arms] = STATE(4643), - [sym_match_arm] = STATE(2132), - [sym_match_expression_list] = STATE(4087), - [sym_match_arm_type] = STATE(3795), - [sym_match_else_arm_clause] = STATE(2132), - [sym_select_expression] = STATE(2619), - [sym_lock_expression] = STATE(2619), - [sym_unsafe_expression] = STATE(2619), - [sym_sql_expression] = STATE(2619), - [sym_c_string_literal] = STATE(2660), - [sym_raw_string_literal] = STATE(2660), - [sym_interpreted_string_literal] = STATE(2660), - [sym_mutability_modifiers] = STATE(567), - [sym_plain_type] = STATE(3784), - [sym__plain_type_without_special] = STATE(2302), - [sym_anon_struct_type] = STATE(2303), - [sym_multi_return_type] = STATE(2302), - [sym_result_type] = STATE(2302), - [sym_option_type] = STATE(2302), - [sym_qualified_type] = STATE(3541), - [sym_fixed_array_type] = STATE(2303), - [sym_array_type] = STATE(2303), - [sym_pointer_type] = STATE(2303), - [sym_wrong_pointer_type] = STATE(2303), - [sym_map_type] = STATE(2303), - [sym_channel_type] = STATE(2303), - [sym_shared_type] = STATE(2303), - [sym_thread_type] = STATE(2303), - [sym_atomic_type] = STATE(2303), - [sym_generic_type] = STATE(2303), - [sym_function_type] = STATE(2303), - [sym__definite_range] = STATE(3781), - [aux_sym_match_arms_repeat1] = STATE(184), - [sym_identifier] = ACTIONS(1079), + [sym_match_expression] = STATE(2637), + [sym_match_arms] = STATE(4554), + [sym_match_arm] = STATE(2141), + [sym_match_expression_list] = STATE(4299), + [sym_match_arm_type] = STATE(3851), + [sym_match_else_arm_clause] = STATE(2141), + [sym_select_expression] = STATE(2637), + [sym_lock_expression] = STATE(2637), + [sym_unsafe_expression] = STATE(2637), + [sym_sql_expression] = STATE(2637), + [sym_c_string_literal] = STATE(2762), + [sym_raw_string_literal] = STATE(2762), + [sym_interpreted_string_literal] = STATE(2762), + [sym_mutability_modifiers] = STATE(822), + [sym_plain_type] = STATE(3848), + [sym__plain_type_without_special] = STATE(2360), + [sym_anon_struct_type] = STATE(2362), + [sym_multi_return_type] = STATE(2360), + [sym_result_type] = STATE(2360), + [sym_option_type] = STATE(2360), + [sym_qualified_type] = STATE(3460), + [sym_fixed_array_type] = STATE(2362), + [sym_array_type] = STATE(2362), + [sym_pointer_type] = STATE(2362), + [sym_wrong_pointer_type] = STATE(2362), + [sym_map_type] = STATE(2362), + [sym_channel_type] = STATE(2362), + [sym_shared_type] = STATE(2362), + [sym_thread_type] = STATE(2362), + [sym_atomic_type] = STATE(2362), + [sym_generic_type] = STATE(2362), + [sym_function_type] = STATE(2362), + [sym__definite_range] = STATE(3816), + [aux_sym_match_arms_repeat1] = STATE(188), + [sym_identifier] = ACTIONS(1071), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1081), - [anon_sym_LBRACE] = ACTIONS(1083), + [anon_sym_DOT] = ACTIONS(1073), + [anon_sym_LBRACE] = ACTIONS(1075), [anon_sym_RBRACE] = ACTIONS(1169), - [anon_sym_LPAREN] = ACTIONS(1087), - [anon_sym_fn] = ACTIONS(1089), - [anon_sym_PLUS] = ACTIONS(1091), - [anon_sym_DASH] = ACTIONS(1091), - [anon_sym_STAR] = ACTIONS(1093), - [anon_sym_struct] = ACTIONS(1095), + [anon_sym_LPAREN] = ACTIONS(1079), + [anon_sym_fn] = ACTIONS(1081), + [anon_sym_PLUS] = ACTIONS(1083), + [anon_sym_DASH] = ACTIONS(1083), + [anon_sym_STAR] = ACTIONS(1085), + [anon_sym_struct] = ACTIONS(1087), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(1097), - [anon_sym_go] = ACTIONS(1099), - [anon_sym_spawn] = ACTIONS(1101), - [anon_sym_json_DOTdecode] = ACTIONS(1103), - [anon_sym_LBRACK2] = ACTIONS(1105), - [anon_sym_TILDE] = ACTIONS(1091), - [anon_sym_CARET] = ACTIONS(1091), - [anon_sym_AMP] = ACTIONS(1107), - [anon_sym_LT_DASH] = ACTIONS(1109), - [sym_none] = ACTIONS(1111), - [sym_true] = ACTIONS(1111), - [sym_false] = ACTIONS(1111), - [sym_nil] = ACTIONS(1111), - [anon_sym_if] = ACTIONS(1113), - [anon_sym_else] = ACTIONS(1115), - [anon_sym_DOLLARif] = ACTIONS(1117), - [anon_sym_match] = ACTIONS(1119), - [anon_sym_select] = ACTIONS(1121), - [anon_sym_lock] = ACTIONS(1123), - [anon_sym_rlock] = ACTIONS(1123), - [anon_sym_unsafe] = ACTIONS(1125), - [anon_sym_sql] = ACTIONS(1127), - [sym_int_literal] = ACTIONS(1111), - [sym_float_literal] = ACTIONS(1129), - [sym_rune_literal] = ACTIONS(1129), - [sym_pseudo_compile_time_identifier] = ACTIONS(1131), + [anon_sym_BANG] = ACTIONS(1089), + [anon_sym_go] = ACTIONS(1091), + [anon_sym_spawn] = ACTIONS(1093), + [anon_sym_json_DOTdecode] = ACTIONS(1095), + [anon_sym_LBRACK2] = ACTIONS(1097), + [anon_sym_TILDE] = ACTIONS(1083), + [anon_sym_CARET] = ACTIONS(1083), + [anon_sym_AMP] = ACTIONS(1099), + [anon_sym_LT_DASH] = ACTIONS(1101), + [sym_none] = ACTIONS(1103), + [sym_true] = ACTIONS(1103), + [sym_false] = ACTIONS(1103), + [sym_nil] = ACTIONS(1103), + [anon_sym_if] = ACTIONS(1105), + [anon_sym_else] = ACTIONS(1107), + [anon_sym_DOLLARif] = ACTIONS(1109), + [anon_sym_match] = ACTIONS(1111), + [anon_sym_select] = ACTIONS(1113), + [anon_sym_lock] = ACTIONS(1115), + [anon_sym_rlock] = ACTIONS(1115), + [anon_sym_unsafe] = ACTIONS(1117), + [anon_sym_sql] = ACTIONS(1119), + [sym_int_literal] = ACTIONS(1103), + [sym_float_literal] = ACTIONS(1121), + [sym_rune_literal] = ACTIONS(1121), + [sym_pseudo_compile_time_identifier] = ACTIONS(1123), [anon_sym_shared] = ACTIONS(83), [anon_sym_map_LBRACK] = ACTIONS(85), [anon_sym_chan] = ACTIONS(87), [anon_sym_thread] = ACTIONS(89), [anon_sym_atomic] = ACTIONS(91), - [sym___double_quote] = ACTIONS(1133), - [sym___single_quote] = ACTIONS(1135), - [sym___c_double_quote] = ACTIONS(1137), - [sym___c_single_quote] = ACTIONS(1139), - [sym___r_double_quote] = ACTIONS(1141), - [sym___r_single_quote] = ACTIONS(1143), + [sym___double_quote] = ACTIONS(1125), + [sym___single_quote] = ACTIONS(1127), + [sym___c_double_quote] = ACTIONS(1129), + [sym___c_single_quote] = ACTIONS(1131), + [sym___r_double_quote] = ACTIONS(1133), + [sym___r_single_quote] = ACTIONS(1135), }, [165] = { [sym_line_comment] = STATE(165), [sym_block_comment] = STATE(165), - [sym__expression] = STATE(1117), - [sym__expression_without_blocks] = STATE(1141), - [sym__expression_with_blocks] = STATE(1141), - [sym_inc_expression] = STATE(1140), - [sym_dec_expression] = STATE(1140), - [sym_or_block_expression] = STATE(1140), - [sym_option_propagation_expression] = STATE(1140), - [sym_result_propagation_expression] = STATE(1140), - [sym_anon_struct_value_expression] = STATE(1199), - [sym_go_expression] = STATE(1140), - [sym_spawn_expression] = STATE(1140), - [sym_parenthesized_expression] = STATE(1140), - [sym_call_expression] = STATE(1140), - [sym_short_lambda] = STATE(4349), - [sym_argument] = STATE(1903), - [sym_type_initializer] = STATE(1199), - [sym_keyed_element] = STATE(1904), - [sym_function_literal] = STATE(1140), - [sym_reference_expression] = STATE(1236), - [sym_type_reference_expression] = STATE(3541), - [sym_unary_expression] = STATE(1140), - [sym_receive_expression] = STATE(1140), - [sym_binary_expression] = STATE(1140), - [sym_as_type_cast_expression] = STATE(1140), - [sym__max_group] = STATE(1140), - [sym_literal] = STATE(1146), - [sym_spread_expression] = STATE(1904), - [sym_map_init_expression] = STATE(1199), - [sym_array_creation] = STATE(1140), - [sym_fixed_array_creation] = STATE(1140), - [sym_selector_expression] = STATE(1140), - [sym_index_expression] = STATE(1140), - [sym_slice_expression] = STATE(1140), - [sym_if_expression] = STATE(1199), - [sym_compile_time_if_expression] = STATE(1199), - [sym_is_expression] = STATE(1140), - [sym_in_expression] = STATE(1140), - [sym_enum_fetch] = STATE(1140), - [sym_match_expression] = STATE(1199), - [sym_select_expression] = STATE(1199), - [sym_lock_expression] = STATE(1199), - [sym_unsafe_expression] = STATE(1199), - [sym_sql_expression] = STATE(1199), - [sym_c_string_literal] = STATE(1147), - [sym_raw_string_literal] = STATE(1147), - [sym_interpreted_string_literal] = STATE(1147), - [sym_mutability_modifiers] = STATE(789), - [sym_mutable_expression] = STATE(1904), - [sym_plain_type] = STATE(4234), - [sym__plain_type_without_special] = STATE(2302), - [sym_anon_struct_type] = STATE(2303), - [sym_multi_return_type] = STATE(2302), - [sym_result_type] = STATE(2302), - [sym_option_type] = STATE(2302), - [sym_qualified_type] = STATE(3541), - [sym_fixed_array_type] = STATE(2303), - [sym_array_type] = STATE(2303), - [sym_pointer_type] = STATE(2303), - [sym_wrong_pointer_type] = STATE(2303), - [sym_map_type] = STATE(2303), - [sym_channel_type] = STATE(2303), - [sym_shared_type] = STATE(2303), - [sym_thread_type] = STATE(2303), - [sym_atomic_type] = STATE(2303), - [sym_generic_type] = STATE(2303), - [sym_function_type] = STATE(2303), - [aux_sym_argument_list_repeat1] = STATE(200), - [sym_identifier] = ACTIONS(1071), - [anon_sym_SLASH_SLASH] = ACTIONS(3), - [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(631), - [anon_sym_LBRACE] = ACTIONS(633), - [anon_sym_LPAREN] = ACTIONS(637), - [anon_sym_RPAREN] = ACTIONS(1171), - [anon_sym_PIPE] = ACTIONS(1075), - [anon_sym_fn] = ACTIONS(641), - [anon_sym_PLUS] = ACTIONS(643), - [anon_sym_DASH] = ACTIONS(643), - [anon_sym_STAR] = ACTIONS(645), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1077), - [anon_sym_struct] = ACTIONS(649), - [anon_sym_mut] = ACTIONS(41), - [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(655), - [anon_sym_go] = ACTIONS(657), - [anon_sym_spawn] = ACTIONS(659), - [anon_sym_json_DOTdecode] = ACTIONS(661), - [anon_sym_LBRACK2] = ACTIONS(663), - [anon_sym_TILDE] = ACTIONS(643), - [anon_sym_CARET] = ACTIONS(643), - [anon_sym_AMP] = ACTIONS(665), - [anon_sym_LT_DASH] = ACTIONS(667), - [sym_none] = ACTIONS(669), - [sym_true] = ACTIONS(669), - [sym_false] = ACTIONS(669), - [sym_nil] = ACTIONS(669), - [anon_sym_if] = ACTIONS(671), - [anon_sym_DOLLARif] = ACTIONS(673), - [anon_sym_match] = ACTIONS(675), - [anon_sym_select] = ACTIONS(677), - [anon_sym_lock] = ACTIONS(679), - [anon_sym_rlock] = ACTIONS(679), - [anon_sym_unsafe] = ACTIONS(681), - [anon_sym_sql] = ACTIONS(683), - [sym_int_literal] = ACTIONS(669), - [sym_float_literal] = ACTIONS(685), - [sym_rune_literal] = ACTIONS(685), - [sym_pseudo_compile_time_identifier] = ACTIONS(687), - [anon_sym_shared] = ACTIONS(83), - [anon_sym_map_LBRACK] = ACTIONS(85), - [anon_sym_chan] = ACTIONS(87), - [anon_sym_thread] = ACTIONS(89), - [anon_sym_atomic] = ACTIONS(91), - [sym___double_quote] = ACTIONS(689), - [sym___single_quote] = ACTIONS(691), - [sym___c_double_quote] = ACTIONS(693), - [sym___c_single_quote] = ACTIONS(695), - [sym___r_double_quote] = ACTIONS(697), - [sym___r_single_quote] = ACTIONS(699), - }, - [166] = { - [sym_line_comment] = STATE(166), - [sym_block_comment] = STATE(166), - [sym__expression] = STATE(2611), - [sym__expression_without_blocks] = STATE(2579), - [sym__expression_with_blocks] = STATE(2625), + [sym__expression] = STATE(2585), + [sym__expression_without_blocks] = STATE(2584), + [sym__expression_with_blocks] = STATE(2638), [sym_inc_expression] = STATE(2765), [sym_dec_expression] = STATE(2765), [sym_or_block_expression] = STATE(2765), [sym_option_propagation_expression] = STATE(2765), [sym_result_propagation_expression] = STATE(2765), - [sym_anon_struct_value_expression] = STATE(2619), + [sym_anon_struct_value_expression] = STATE(2637), [sym_go_expression] = STATE(2765), [sym_spawn_expression] = STATE(2765), [sym_parenthesized_expression] = STATE(2765), [sym_call_expression] = STATE(2765), - [sym_type_initializer] = STATE(2619), + [sym_type_initializer] = STATE(2637), [sym_function_literal] = STATE(2765), [sym_reference_expression] = STATE(2764), - [sym_type_reference_expression] = STATE(3541), + [sym_type_reference_expression] = STATE(3460), [sym_unary_expression] = STATE(2765), [sym_receive_expression] = STATE(2765), [sym_binary_expression] = STATE(2765), [sym_as_type_cast_expression] = STATE(2765), [sym__max_group] = STATE(2765), - [sym_literal] = STATE(2769), - [sym_map_init_expression] = STATE(2619), + [sym_literal] = STATE(2771), + [sym_map_init_expression] = STATE(2637), [sym_array_creation] = STATE(2765), [sym_fixed_array_creation] = STATE(2765), [sym_selector_expression] = STATE(2765), [sym_index_expression] = STATE(2765), [sym_slice_expression] = STATE(2765), - [sym_if_expression] = STATE(2619), - [sym_compile_time_if_expression] = STATE(2619), + [sym_if_expression] = STATE(2637), + [sym_compile_time_if_expression] = STATE(2637), [sym_is_expression] = STATE(2765), [sym_in_expression] = STATE(2765), [sym_enum_fetch] = STATE(2765), - [sym_match_expression] = STATE(2619), - [sym_match_arms] = STATE(4425), - [sym_match_arm] = STATE(2132), - [sym_match_expression_list] = STATE(4087), - [sym_match_arm_type] = STATE(3795), - [sym_match_else_arm_clause] = STATE(2132), - [sym_select_expression] = STATE(2619), - [sym_lock_expression] = STATE(2619), - [sym_unsafe_expression] = STATE(2619), - [sym_sql_expression] = STATE(2619), - [sym_c_string_literal] = STATE(2660), - [sym_raw_string_literal] = STATE(2660), - [sym_interpreted_string_literal] = STATE(2660), - [sym_mutability_modifiers] = STATE(567), - [sym_plain_type] = STATE(3784), - [sym__plain_type_without_special] = STATE(2302), - [sym_anon_struct_type] = STATE(2303), - [sym_multi_return_type] = STATE(2302), - [sym_result_type] = STATE(2302), - [sym_option_type] = STATE(2302), - [sym_qualified_type] = STATE(3541), - [sym_fixed_array_type] = STATE(2303), - [sym_array_type] = STATE(2303), - [sym_pointer_type] = STATE(2303), - [sym_wrong_pointer_type] = STATE(2303), - [sym_map_type] = STATE(2303), - [sym_channel_type] = STATE(2303), - [sym_shared_type] = STATE(2303), - [sym_thread_type] = STATE(2303), - [sym_atomic_type] = STATE(2303), - [sym_generic_type] = STATE(2303), - [sym_function_type] = STATE(2303), - [sym__definite_range] = STATE(3781), - [aux_sym_match_arms_repeat1] = STATE(184), - [sym_identifier] = ACTIONS(1079), + [sym_match_expression] = STATE(2637), + [sym_match_arms] = STATE(4392), + [sym_match_arm] = STATE(2141), + [sym_match_expression_list] = STATE(4299), + [sym_match_arm_type] = STATE(3851), + [sym_match_else_arm_clause] = STATE(2141), + [sym_select_expression] = STATE(2637), + [sym_lock_expression] = STATE(2637), + [sym_unsafe_expression] = STATE(2637), + [sym_sql_expression] = STATE(2637), + [sym_c_string_literal] = STATE(2762), + [sym_raw_string_literal] = STATE(2762), + [sym_interpreted_string_literal] = STATE(2762), + [sym_mutability_modifiers] = STATE(822), + [sym_plain_type] = STATE(3848), + [sym__plain_type_without_special] = STATE(2360), + [sym_anon_struct_type] = STATE(2362), + [sym_multi_return_type] = STATE(2360), + [sym_result_type] = STATE(2360), + [sym_option_type] = STATE(2360), + [sym_qualified_type] = STATE(3460), + [sym_fixed_array_type] = STATE(2362), + [sym_array_type] = STATE(2362), + [sym_pointer_type] = STATE(2362), + [sym_wrong_pointer_type] = STATE(2362), + [sym_map_type] = STATE(2362), + [sym_channel_type] = STATE(2362), + [sym_shared_type] = STATE(2362), + [sym_thread_type] = STATE(2362), + [sym_atomic_type] = STATE(2362), + [sym_generic_type] = STATE(2362), + [sym_function_type] = STATE(2362), + [sym__definite_range] = STATE(3816), + [aux_sym_match_arms_repeat1] = STATE(188), + [sym_identifier] = ACTIONS(1071), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1081), - [anon_sym_LBRACE] = ACTIONS(1083), - [anon_sym_RBRACE] = ACTIONS(1173), - [anon_sym_LPAREN] = ACTIONS(1087), - [anon_sym_fn] = ACTIONS(1089), - [anon_sym_PLUS] = ACTIONS(1091), - [anon_sym_DASH] = ACTIONS(1091), - [anon_sym_STAR] = ACTIONS(1093), - [anon_sym_struct] = ACTIONS(1095), + [anon_sym_DOT] = ACTIONS(1073), + [anon_sym_LBRACE] = ACTIONS(1075), + [anon_sym_RBRACE] = ACTIONS(1171), + [anon_sym_LPAREN] = ACTIONS(1079), + [anon_sym_fn] = ACTIONS(1081), + [anon_sym_PLUS] = ACTIONS(1083), + [anon_sym_DASH] = ACTIONS(1083), + [anon_sym_STAR] = ACTIONS(1085), + [anon_sym_struct] = ACTIONS(1087), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(1097), - [anon_sym_go] = ACTIONS(1099), - [anon_sym_spawn] = ACTIONS(1101), - [anon_sym_json_DOTdecode] = ACTIONS(1103), - [anon_sym_LBRACK2] = ACTIONS(1105), - [anon_sym_TILDE] = ACTIONS(1091), - [anon_sym_CARET] = ACTIONS(1091), - [anon_sym_AMP] = ACTIONS(1107), - [anon_sym_LT_DASH] = ACTIONS(1109), - [sym_none] = ACTIONS(1111), - [sym_true] = ACTIONS(1111), - [sym_false] = ACTIONS(1111), - [sym_nil] = ACTIONS(1111), - [anon_sym_if] = ACTIONS(1113), - [anon_sym_else] = ACTIONS(1115), - [anon_sym_DOLLARif] = ACTIONS(1117), - [anon_sym_match] = ACTIONS(1119), - [anon_sym_select] = ACTIONS(1121), - [anon_sym_lock] = ACTIONS(1123), - [anon_sym_rlock] = ACTIONS(1123), - [anon_sym_unsafe] = ACTIONS(1125), - [anon_sym_sql] = ACTIONS(1127), - [sym_int_literal] = ACTIONS(1111), - [sym_float_literal] = ACTIONS(1129), - [sym_rune_literal] = ACTIONS(1129), - [sym_pseudo_compile_time_identifier] = ACTIONS(1131), + [anon_sym_BANG] = ACTIONS(1089), + [anon_sym_go] = ACTIONS(1091), + [anon_sym_spawn] = ACTIONS(1093), + [anon_sym_json_DOTdecode] = ACTIONS(1095), + [anon_sym_LBRACK2] = ACTIONS(1097), + [anon_sym_TILDE] = ACTIONS(1083), + [anon_sym_CARET] = ACTIONS(1083), + [anon_sym_AMP] = ACTIONS(1099), + [anon_sym_LT_DASH] = ACTIONS(1101), + [sym_none] = ACTIONS(1103), + [sym_true] = ACTIONS(1103), + [sym_false] = ACTIONS(1103), + [sym_nil] = ACTIONS(1103), + [anon_sym_if] = ACTIONS(1105), + [anon_sym_else] = ACTIONS(1107), + [anon_sym_DOLLARif] = ACTIONS(1109), + [anon_sym_match] = ACTIONS(1111), + [anon_sym_select] = ACTIONS(1113), + [anon_sym_lock] = ACTIONS(1115), + [anon_sym_rlock] = ACTIONS(1115), + [anon_sym_unsafe] = ACTIONS(1117), + [anon_sym_sql] = ACTIONS(1119), + [sym_int_literal] = ACTIONS(1103), + [sym_float_literal] = ACTIONS(1121), + [sym_rune_literal] = ACTIONS(1121), + [sym_pseudo_compile_time_identifier] = ACTIONS(1123), [anon_sym_shared] = ACTIONS(83), [anon_sym_map_LBRACK] = ACTIONS(85), [anon_sym_chan] = ACTIONS(87), [anon_sym_thread] = ACTIONS(89), [anon_sym_atomic] = ACTIONS(91), - [sym___double_quote] = ACTIONS(1133), - [sym___single_quote] = ACTIONS(1135), - [sym___c_double_quote] = ACTIONS(1137), - [sym___c_single_quote] = ACTIONS(1139), - [sym___r_double_quote] = ACTIONS(1141), - [sym___r_single_quote] = ACTIONS(1143), + [sym___double_quote] = ACTIONS(1125), + [sym___single_quote] = ACTIONS(1127), + [sym___c_double_quote] = ACTIONS(1129), + [sym___c_single_quote] = ACTIONS(1131), + [sym___r_double_quote] = ACTIONS(1133), + [sym___r_single_quote] = ACTIONS(1135), }, - [167] = { - [sym_line_comment] = STATE(167), - [sym_block_comment] = STATE(167), - [sym__expression] = STATE(2611), - [sym__expression_without_blocks] = STATE(2579), - [sym__expression_with_blocks] = STATE(2625), + [166] = { + [sym_line_comment] = STATE(166), + [sym_block_comment] = STATE(166), + [sym__expression] = STATE(2585), + [sym__expression_without_blocks] = STATE(2584), + [sym__expression_with_blocks] = STATE(2638), [sym_inc_expression] = STATE(2765), [sym_dec_expression] = STATE(2765), [sym_or_block_expression] = STATE(2765), [sym_option_propagation_expression] = STATE(2765), [sym_result_propagation_expression] = STATE(2765), - [sym_anon_struct_value_expression] = STATE(2619), + [sym_anon_struct_value_expression] = STATE(2637), [sym_go_expression] = STATE(2765), [sym_spawn_expression] = STATE(2765), [sym_parenthesized_expression] = STATE(2765), [sym_call_expression] = STATE(2765), - [sym_type_initializer] = STATE(2619), + [sym_type_initializer] = STATE(2637), [sym_function_literal] = STATE(2765), [sym_reference_expression] = STATE(2764), - [sym_type_reference_expression] = STATE(3541), + [sym_type_reference_expression] = STATE(3460), [sym_unary_expression] = STATE(2765), [sym_receive_expression] = STATE(2765), [sym_binary_expression] = STATE(2765), [sym_as_type_cast_expression] = STATE(2765), [sym__max_group] = STATE(2765), - [sym_literal] = STATE(2769), - [sym_map_init_expression] = STATE(2619), + [sym_literal] = STATE(2771), + [sym_map_init_expression] = STATE(2637), [sym_array_creation] = STATE(2765), [sym_fixed_array_creation] = STATE(2765), [sym_selector_expression] = STATE(2765), [sym_index_expression] = STATE(2765), [sym_slice_expression] = STATE(2765), - [sym_if_expression] = STATE(2619), - [sym_compile_time_if_expression] = STATE(2619), + [sym_if_expression] = STATE(2637), + [sym_compile_time_if_expression] = STATE(2637), [sym_is_expression] = STATE(2765), [sym_in_expression] = STATE(2765), [sym_enum_fetch] = STATE(2765), - [sym_match_expression] = STATE(2619), - [sym_match_arms] = STATE(4558), - [sym_match_arm] = STATE(2132), - [sym_match_expression_list] = STATE(4087), - [sym_match_arm_type] = STATE(3795), - [sym_match_else_arm_clause] = STATE(2132), - [sym_select_expression] = STATE(2619), - [sym_lock_expression] = STATE(2619), - [sym_unsafe_expression] = STATE(2619), - [sym_sql_expression] = STATE(2619), - [sym_c_string_literal] = STATE(2660), - [sym_raw_string_literal] = STATE(2660), - [sym_interpreted_string_literal] = STATE(2660), - [sym_mutability_modifiers] = STATE(567), - [sym_plain_type] = STATE(3784), - [sym__plain_type_without_special] = STATE(2302), - [sym_anon_struct_type] = STATE(2303), - [sym_multi_return_type] = STATE(2302), - [sym_result_type] = STATE(2302), - [sym_option_type] = STATE(2302), - [sym_qualified_type] = STATE(3541), - [sym_fixed_array_type] = STATE(2303), - [sym_array_type] = STATE(2303), - [sym_pointer_type] = STATE(2303), - [sym_wrong_pointer_type] = STATE(2303), - [sym_map_type] = STATE(2303), - [sym_channel_type] = STATE(2303), - [sym_shared_type] = STATE(2303), - [sym_thread_type] = STATE(2303), - [sym_atomic_type] = STATE(2303), - [sym_generic_type] = STATE(2303), - [sym_function_type] = STATE(2303), - [sym__definite_range] = STATE(3781), - [aux_sym_match_arms_repeat1] = STATE(184), - [sym_identifier] = ACTIONS(1079), + [sym_match_expression] = STATE(2637), + [sym_match_arms] = STATE(4422), + [sym_match_arm] = STATE(2141), + [sym_match_expression_list] = STATE(4299), + [sym_match_arm_type] = STATE(3851), + [sym_match_else_arm_clause] = STATE(2141), + [sym_select_expression] = STATE(2637), + [sym_lock_expression] = STATE(2637), + [sym_unsafe_expression] = STATE(2637), + [sym_sql_expression] = STATE(2637), + [sym_c_string_literal] = STATE(2762), + [sym_raw_string_literal] = STATE(2762), + [sym_interpreted_string_literal] = STATE(2762), + [sym_mutability_modifiers] = STATE(822), + [sym_plain_type] = STATE(3848), + [sym__plain_type_without_special] = STATE(2360), + [sym_anon_struct_type] = STATE(2362), + [sym_multi_return_type] = STATE(2360), + [sym_result_type] = STATE(2360), + [sym_option_type] = STATE(2360), + [sym_qualified_type] = STATE(3460), + [sym_fixed_array_type] = STATE(2362), + [sym_array_type] = STATE(2362), + [sym_pointer_type] = STATE(2362), + [sym_wrong_pointer_type] = STATE(2362), + [sym_map_type] = STATE(2362), + [sym_channel_type] = STATE(2362), + [sym_shared_type] = STATE(2362), + [sym_thread_type] = STATE(2362), + [sym_atomic_type] = STATE(2362), + [sym_generic_type] = STATE(2362), + [sym_function_type] = STATE(2362), + [sym__definite_range] = STATE(3816), + [aux_sym_match_arms_repeat1] = STATE(188), + [sym_identifier] = ACTIONS(1071), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1081), - [anon_sym_LBRACE] = ACTIONS(1083), - [anon_sym_RBRACE] = ACTIONS(1175), - [anon_sym_LPAREN] = ACTIONS(1087), - [anon_sym_fn] = ACTIONS(1089), - [anon_sym_PLUS] = ACTIONS(1091), - [anon_sym_DASH] = ACTIONS(1091), - [anon_sym_STAR] = ACTIONS(1093), - [anon_sym_struct] = ACTIONS(1095), + [anon_sym_DOT] = ACTIONS(1073), + [anon_sym_LBRACE] = ACTIONS(1075), + [anon_sym_RBRACE] = ACTIONS(1173), + [anon_sym_LPAREN] = ACTIONS(1079), + [anon_sym_fn] = ACTIONS(1081), + [anon_sym_PLUS] = ACTIONS(1083), + [anon_sym_DASH] = ACTIONS(1083), + [anon_sym_STAR] = ACTIONS(1085), + [anon_sym_struct] = ACTIONS(1087), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(1097), - [anon_sym_go] = ACTIONS(1099), - [anon_sym_spawn] = ACTIONS(1101), - [anon_sym_json_DOTdecode] = ACTIONS(1103), - [anon_sym_LBRACK2] = ACTIONS(1105), - [anon_sym_TILDE] = ACTIONS(1091), - [anon_sym_CARET] = ACTIONS(1091), - [anon_sym_AMP] = ACTIONS(1107), - [anon_sym_LT_DASH] = ACTIONS(1109), - [sym_none] = ACTIONS(1111), - [sym_true] = ACTIONS(1111), - [sym_false] = ACTIONS(1111), - [sym_nil] = ACTIONS(1111), - [anon_sym_if] = ACTIONS(1113), - [anon_sym_else] = ACTIONS(1115), - [anon_sym_DOLLARif] = ACTIONS(1117), - [anon_sym_match] = ACTIONS(1119), - [anon_sym_select] = ACTIONS(1121), - [anon_sym_lock] = ACTIONS(1123), - [anon_sym_rlock] = ACTIONS(1123), - [anon_sym_unsafe] = ACTIONS(1125), - [anon_sym_sql] = ACTIONS(1127), - [sym_int_literal] = ACTIONS(1111), - [sym_float_literal] = ACTIONS(1129), - [sym_rune_literal] = ACTIONS(1129), - [sym_pseudo_compile_time_identifier] = ACTIONS(1131), + [anon_sym_BANG] = ACTIONS(1089), + [anon_sym_go] = ACTIONS(1091), + [anon_sym_spawn] = ACTIONS(1093), + [anon_sym_json_DOTdecode] = ACTIONS(1095), + [anon_sym_LBRACK2] = ACTIONS(1097), + [anon_sym_TILDE] = ACTIONS(1083), + [anon_sym_CARET] = ACTIONS(1083), + [anon_sym_AMP] = ACTIONS(1099), + [anon_sym_LT_DASH] = ACTIONS(1101), + [sym_none] = ACTIONS(1103), + [sym_true] = ACTIONS(1103), + [sym_false] = ACTIONS(1103), + [sym_nil] = ACTIONS(1103), + [anon_sym_if] = ACTIONS(1105), + [anon_sym_else] = ACTIONS(1107), + [anon_sym_DOLLARif] = ACTIONS(1109), + [anon_sym_match] = ACTIONS(1111), + [anon_sym_select] = ACTIONS(1113), + [anon_sym_lock] = ACTIONS(1115), + [anon_sym_rlock] = ACTIONS(1115), + [anon_sym_unsafe] = ACTIONS(1117), + [anon_sym_sql] = ACTIONS(1119), + [sym_int_literal] = ACTIONS(1103), + [sym_float_literal] = ACTIONS(1121), + [sym_rune_literal] = ACTIONS(1121), + [sym_pseudo_compile_time_identifier] = ACTIONS(1123), [anon_sym_shared] = ACTIONS(83), [anon_sym_map_LBRACK] = ACTIONS(85), [anon_sym_chan] = ACTIONS(87), [anon_sym_thread] = ACTIONS(89), [anon_sym_atomic] = ACTIONS(91), - [sym___double_quote] = ACTIONS(1133), - [sym___single_quote] = ACTIONS(1135), - [sym___c_double_quote] = ACTIONS(1137), - [sym___c_single_quote] = ACTIONS(1139), - [sym___r_double_quote] = ACTIONS(1141), - [sym___r_single_quote] = ACTIONS(1143), + [sym___double_quote] = ACTIONS(1125), + [sym___single_quote] = ACTIONS(1127), + [sym___c_double_quote] = ACTIONS(1129), + [sym___c_single_quote] = ACTIONS(1131), + [sym___r_double_quote] = ACTIONS(1133), + [sym___r_single_quote] = ACTIONS(1135), }, - [168] = { - [sym_line_comment] = STATE(168), - [sym_block_comment] = STATE(168), - [sym__expression] = STATE(2611), - [sym__expression_without_blocks] = STATE(2579), - [sym__expression_with_blocks] = STATE(2625), + [167] = { + [sym_line_comment] = STATE(167), + [sym_block_comment] = STATE(167), + [sym__expression] = STATE(2585), + [sym__expression_without_blocks] = STATE(2584), + [sym__expression_with_blocks] = STATE(2638), [sym_inc_expression] = STATE(2765), [sym_dec_expression] = STATE(2765), [sym_or_block_expression] = STATE(2765), [sym_option_propagation_expression] = STATE(2765), [sym_result_propagation_expression] = STATE(2765), - [sym_anon_struct_value_expression] = STATE(2619), + [sym_anon_struct_value_expression] = STATE(2637), [sym_go_expression] = STATE(2765), [sym_spawn_expression] = STATE(2765), [sym_parenthesized_expression] = STATE(2765), [sym_call_expression] = STATE(2765), - [sym_type_initializer] = STATE(2619), + [sym_type_initializer] = STATE(2637), [sym_function_literal] = STATE(2765), [sym_reference_expression] = STATE(2764), - [sym_type_reference_expression] = STATE(3541), + [sym_type_reference_expression] = STATE(3460), [sym_unary_expression] = STATE(2765), [sym_receive_expression] = STATE(2765), [sym_binary_expression] = STATE(2765), [sym_as_type_cast_expression] = STATE(2765), [sym__max_group] = STATE(2765), - [sym_literal] = STATE(2769), - [sym_map_init_expression] = STATE(2619), + [sym_literal] = STATE(2771), + [sym_map_init_expression] = STATE(2637), [sym_array_creation] = STATE(2765), [sym_fixed_array_creation] = STATE(2765), [sym_selector_expression] = STATE(2765), [sym_index_expression] = STATE(2765), [sym_slice_expression] = STATE(2765), - [sym_if_expression] = STATE(2619), - [sym_compile_time_if_expression] = STATE(2619), + [sym_if_expression] = STATE(2637), + [sym_compile_time_if_expression] = STATE(2637), [sym_is_expression] = STATE(2765), [sym_in_expression] = STATE(2765), [sym_enum_fetch] = STATE(2765), - [sym_match_expression] = STATE(2619), - [sym_match_arms] = STATE(4439), - [sym_match_arm] = STATE(2132), - [sym_match_expression_list] = STATE(4087), - [sym_match_arm_type] = STATE(3795), - [sym_match_else_arm_clause] = STATE(2132), - [sym_select_expression] = STATE(2619), - [sym_lock_expression] = STATE(2619), - [sym_unsafe_expression] = STATE(2619), - [sym_sql_expression] = STATE(2619), - [sym_c_string_literal] = STATE(2660), - [sym_raw_string_literal] = STATE(2660), - [sym_interpreted_string_literal] = STATE(2660), - [sym_mutability_modifiers] = STATE(567), - [sym_plain_type] = STATE(3784), - [sym__plain_type_without_special] = STATE(2302), - [sym_anon_struct_type] = STATE(2303), - [sym_multi_return_type] = STATE(2302), - [sym_result_type] = STATE(2302), - [sym_option_type] = STATE(2302), - [sym_qualified_type] = STATE(3541), - [sym_fixed_array_type] = STATE(2303), - [sym_array_type] = STATE(2303), - [sym_pointer_type] = STATE(2303), - [sym_wrong_pointer_type] = STATE(2303), - [sym_map_type] = STATE(2303), - [sym_channel_type] = STATE(2303), - [sym_shared_type] = STATE(2303), - [sym_thread_type] = STATE(2303), - [sym_atomic_type] = STATE(2303), - [sym_generic_type] = STATE(2303), - [sym_function_type] = STATE(2303), - [sym__definite_range] = STATE(3781), - [aux_sym_match_arms_repeat1] = STATE(184), - [sym_identifier] = ACTIONS(1079), + [sym_match_expression] = STATE(2637), + [sym_match_arms] = STATE(4447), + [sym_match_arm] = STATE(2141), + [sym_match_expression_list] = STATE(4299), + [sym_match_arm_type] = STATE(3851), + [sym_match_else_arm_clause] = STATE(2141), + [sym_select_expression] = STATE(2637), + [sym_lock_expression] = STATE(2637), + [sym_unsafe_expression] = STATE(2637), + [sym_sql_expression] = STATE(2637), + [sym_c_string_literal] = STATE(2762), + [sym_raw_string_literal] = STATE(2762), + [sym_interpreted_string_literal] = STATE(2762), + [sym_mutability_modifiers] = STATE(822), + [sym_plain_type] = STATE(3848), + [sym__plain_type_without_special] = STATE(2360), + [sym_anon_struct_type] = STATE(2362), + [sym_multi_return_type] = STATE(2360), + [sym_result_type] = STATE(2360), + [sym_option_type] = STATE(2360), + [sym_qualified_type] = STATE(3460), + [sym_fixed_array_type] = STATE(2362), + [sym_array_type] = STATE(2362), + [sym_pointer_type] = STATE(2362), + [sym_wrong_pointer_type] = STATE(2362), + [sym_map_type] = STATE(2362), + [sym_channel_type] = STATE(2362), + [sym_shared_type] = STATE(2362), + [sym_thread_type] = STATE(2362), + [sym_atomic_type] = STATE(2362), + [sym_generic_type] = STATE(2362), + [sym_function_type] = STATE(2362), + [sym__definite_range] = STATE(3816), + [aux_sym_match_arms_repeat1] = STATE(188), + [sym_identifier] = ACTIONS(1071), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(1073), + [anon_sym_LBRACE] = ACTIONS(1075), + [anon_sym_RBRACE] = ACTIONS(1175), + [anon_sym_LPAREN] = ACTIONS(1079), + [anon_sym_fn] = ACTIONS(1081), + [anon_sym_PLUS] = ACTIONS(1083), + [anon_sym_DASH] = ACTIONS(1083), + [anon_sym_STAR] = ACTIONS(1085), + [anon_sym_struct] = ACTIONS(1087), + [anon_sym_mut] = ACTIONS(41), + [anon_sym_QMARK] = ACTIONS(47), + [anon_sym_BANG] = ACTIONS(1089), + [anon_sym_go] = ACTIONS(1091), + [anon_sym_spawn] = ACTIONS(1093), + [anon_sym_json_DOTdecode] = ACTIONS(1095), + [anon_sym_LBRACK2] = ACTIONS(1097), + [anon_sym_TILDE] = ACTIONS(1083), + [anon_sym_CARET] = ACTIONS(1083), + [anon_sym_AMP] = ACTIONS(1099), + [anon_sym_LT_DASH] = ACTIONS(1101), + [sym_none] = ACTIONS(1103), + [sym_true] = ACTIONS(1103), + [sym_false] = ACTIONS(1103), + [sym_nil] = ACTIONS(1103), + [anon_sym_if] = ACTIONS(1105), + [anon_sym_else] = ACTIONS(1107), + [anon_sym_DOLLARif] = ACTIONS(1109), + [anon_sym_match] = ACTIONS(1111), + [anon_sym_select] = ACTIONS(1113), + [anon_sym_lock] = ACTIONS(1115), + [anon_sym_rlock] = ACTIONS(1115), + [anon_sym_unsafe] = ACTIONS(1117), + [anon_sym_sql] = ACTIONS(1119), + [sym_int_literal] = ACTIONS(1103), + [sym_float_literal] = ACTIONS(1121), + [sym_rune_literal] = ACTIONS(1121), + [sym_pseudo_compile_time_identifier] = ACTIONS(1123), + [anon_sym_shared] = ACTIONS(83), + [anon_sym_map_LBRACK] = ACTIONS(85), + [anon_sym_chan] = ACTIONS(87), + [anon_sym_thread] = ACTIONS(89), + [anon_sym_atomic] = ACTIONS(91), + [sym___double_quote] = ACTIONS(1125), + [sym___single_quote] = ACTIONS(1127), + [sym___c_double_quote] = ACTIONS(1129), + [sym___c_single_quote] = ACTIONS(1131), + [sym___r_double_quote] = ACTIONS(1133), + [sym___r_single_quote] = ACTIONS(1135), + }, + [168] = { + [sym_line_comment] = STATE(168), + [sym_block_comment] = STATE(168), + [sym__expression] = STATE(1126), + [sym__expression_without_blocks] = STATE(1210), + [sym__expression_with_blocks] = STATE(1210), + [sym_inc_expression] = STATE(1211), + [sym_dec_expression] = STATE(1211), + [sym_or_block_expression] = STATE(1211), + [sym_option_propagation_expression] = STATE(1211), + [sym_result_propagation_expression] = STATE(1211), + [sym_anon_struct_value_expression] = STATE(1212), + [sym_go_expression] = STATE(1211), + [sym_spawn_expression] = STATE(1211), + [sym_parenthesized_expression] = STATE(1211), + [sym_call_expression] = STATE(1211), + [sym_short_lambda] = STATE(4614), + [sym_argument] = STATE(1907), + [sym_type_initializer] = STATE(1212), + [sym_keyed_element] = STATE(1904), + [sym_function_literal] = STATE(1211), + [sym_reference_expression] = STATE(1252), + [sym_type_reference_expression] = STATE(3460), + [sym_unary_expression] = STATE(1211), + [sym_receive_expression] = STATE(1211), + [sym_binary_expression] = STATE(1211), + [sym_as_type_cast_expression] = STATE(1211), + [sym__max_group] = STATE(1211), + [sym_literal] = STATE(1209), + [sym_spread_expression] = STATE(1904), + [sym_map_init_expression] = STATE(1212), + [sym_array_creation] = STATE(1211), + [sym_fixed_array_creation] = STATE(1211), + [sym_selector_expression] = STATE(1211), + [sym_index_expression] = STATE(1211), + [sym_slice_expression] = STATE(1211), + [sym_if_expression] = STATE(1212), + [sym_compile_time_if_expression] = STATE(1212), + [sym_is_expression] = STATE(1211), + [sym_in_expression] = STATE(1211), + [sym_enum_fetch] = STATE(1211), + [sym_match_expression] = STATE(1212), + [sym_select_expression] = STATE(1212), + [sym_lock_expression] = STATE(1212), + [sym_unsafe_expression] = STATE(1212), + [sym_sql_expression] = STATE(1212), + [sym_c_string_literal] = STATE(1201), + [sym_raw_string_literal] = STATE(1201), + [sym_interpreted_string_literal] = STATE(1201), + [sym_mutability_modifiers] = STATE(769), + [sym_mutable_expression] = STATE(1904), + [sym_plain_type] = STATE(4123), + [sym__plain_type_without_special] = STATE(2360), + [sym_anon_struct_type] = STATE(2362), + [sym_multi_return_type] = STATE(2360), + [sym_result_type] = STATE(2360), + [sym_option_type] = STATE(2360), + [sym_qualified_type] = STATE(3460), + [sym_fixed_array_type] = STATE(2362), + [sym_array_type] = STATE(2362), + [sym_pointer_type] = STATE(2362), + [sym_wrong_pointer_type] = STATE(2362), + [sym_map_type] = STATE(2362), + [sym_channel_type] = STATE(2362), + [sym_shared_type] = STATE(2362), + [sym_thread_type] = STATE(2362), + [sym_atomic_type] = STATE(2362), + [sym_generic_type] = STATE(2362), + [sym_function_type] = STATE(2362), + [aux_sym_argument_list_repeat1] = STATE(204), + [sym_identifier] = ACTIONS(1139), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1081), - [anon_sym_LBRACE] = ACTIONS(1083), - [anon_sym_RBRACE] = ACTIONS(1177), - [anon_sym_LPAREN] = ACTIONS(1087), - [anon_sym_fn] = ACTIONS(1089), - [anon_sym_PLUS] = ACTIONS(1091), - [anon_sym_DASH] = ACTIONS(1091), - [anon_sym_STAR] = ACTIONS(1093), - [anon_sym_struct] = ACTIONS(1095), + [anon_sym_DOT] = ACTIONS(631), + [anon_sym_LBRACE] = ACTIONS(633), + [anon_sym_LPAREN] = ACTIONS(637), + [anon_sym_RPAREN] = ACTIONS(1177), + [anon_sym_PIPE] = ACTIONS(1143), + [anon_sym_fn] = ACTIONS(641), + [anon_sym_PLUS] = ACTIONS(643), + [anon_sym_DASH] = ACTIONS(643), + [anon_sym_STAR] = ACTIONS(645), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1145), + [anon_sym_struct] = ACTIONS(649), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(1097), - [anon_sym_go] = ACTIONS(1099), - [anon_sym_spawn] = ACTIONS(1101), - [anon_sym_json_DOTdecode] = ACTIONS(1103), - [anon_sym_LBRACK2] = ACTIONS(1105), - [anon_sym_TILDE] = ACTIONS(1091), - [anon_sym_CARET] = ACTIONS(1091), - [anon_sym_AMP] = ACTIONS(1107), - [anon_sym_LT_DASH] = ACTIONS(1109), - [sym_none] = ACTIONS(1111), - [sym_true] = ACTIONS(1111), - [sym_false] = ACTIONS(1111), - [sym_nil] = ACTIONS(1111), - [anon_sym_if] = ACTIONS(1113), - [anon_sym_else] = ACTIONS(1115), - [anon_sym_DOLLARif] = ACTIONS(1117), - [anon_sym_match] = ACTIONS(1119), - [anon_sym_select] = ACTIONS(1121), - [anon_sym_lock] = ACTIONS(1123), - [anon_sym_rlock] = ACTIONS(1123), - [anon_sym_unsafe] = ACTIONS(1125), - [anon_sym_sql] = ACTIONS(1127), - [sym_int_literal] = ACTIONS(1111), - [sym_float_literal] = ACTIONS(1129), - [sym_rune_literal] = ACTIONS(1129), - [sym_pseudo_compile_time_identifier] = ACTIONS(1131), + [anon_sym_BANG] = ACTIONS(655), + [anon_sym_go] = ACTIONS(657), + [anon_sym_spawn] = ACTIONS(659), + [anon_sym_json_DOTdecode] = ACTIONS(661), + [anon_sym_LBRACK2] = ACTIONS(663), + [anon_sym_TILDE] = ACTIONS(643), + [anon_sym_CARET] = ACTIONS(643), + [anon_sym_AMP] = ACTIONS(665), + [anon_sym_LT_DASH] = ACTIONS(667), + [sym_none] = ACTIONS(669), + [sym_true] = ACTIONS(669), + [sym_false] = ACTIONS(669), + [sym_nil] = ACTIONS(669), + [anon_sym_if] = ACTIONS(671), + [anon_sym_DOLLARif] = ACTIONS(673), + [anon_sym_match] = ACTIONS(675), + [anon_sym_select] = ACTIONS(677), + [anon_sym_lock] = ACTIONS(679), + [anon_sym_rlock] = ACTIONS(679), + [anon_sym_unsafe] = ACTIONS(681), + [anon_sym_sql] = ACTIONS(683), + [sym_int_literal] = ACTIONS(669), + [sym_float_literal] = ACTIONS(685), + [sym_rune_literal] = ACTIONS(685), + [sym_pseudo_compile_time_identifier] = ACTIONS(687), [anon_sym_shared] = ACTIONS(83), [anon_sym_map_LBRACK] = ACTIONS(85), [anon_sym_chan] = ACTIONS(87), [anon_sym_thread] = ACTIONS(89), [anon_sym_atomic] = ACTIONS(91), - [sym___double_quote] = ACTIONS(1133), - [sym___single_quote] = ACTIONS(1135), - [sym___c_double_quote] = ACTIONS(1137), - [sym___c_single_quote] = ACTIONS(1139), - [sym___r_double_quote] = ACTIONS(1141), - [sym___r_single_quote] = ACTIONS(1143), + [sym___double_quote] = ACTIONS(689), + [sym___single_quote] = ACTIONS(691), + [sym___c_double_quote] = ACTIONS(693), + [sym___c_single_quote] = ACTIONS(695), + [sym___r_double_quote] = ACTIONS(697), + [sym___r_single_quote] = ACTIONS(699), }, [169] = { [sym_line_comment] = STATE(169), [sym_block_comment] = STATE(169), - [sym__expression] = STATE(2611), - [sym__expression_without_blocks] = STATE(2579), - [sym__expression_with_blocks] = STATE(2625), + [sym__expression] = STATE(2585), + [sym__expression_without_blocks] = STATE(2584), + [sym__expression_with_blocks] = STATE(2638), [sym_inc_expression] = STATE(2765), [sym_dec_expression] = STATE(2765), [sym_or_block_expression] = STATE(2765), [sym_option_propagation_expression] = STATE(2765), [sym_result_propagation_expression] = STATE(2765), - [sym_anon_struct_value_expression] = STATE(2619), + [sym_anon_struct_value_expression] = STATE(2637), [sym_go_expression] = STATE(2765), [sym_spawn_expression] = STATE(2765), [sym_parenthesized_expression] = STATE(2765), [sym_call_expression] = STATE(2765), - [sym_type_initializer] = STATE(2619), + [sym_type_initializer] = STATE(2637), [sym_function_literal] = STATE(2765), [sym_reference_expression] = STATE(2764), - [sym_type_reference_expression] = STATE(3541), + [sym_type_reference_expression] = STATE(3460), [sym_unary_expression] = STATE(2765), [sym_receive_expression] = STATE(2765), [sym_binary_expression] = STATE(2765), [sym_as_type_cast_expression] = STATE(2765), [sym__max_group] = STATE(2765), - [sym_literal] = STATE(2769), - [sym_map_init_expression] = STATE(2619), + [sym_literal] = STATE(2771), + [sym_map_init_expression] = STATE(2637), [sym_array_creation] = STATE(2765), [sym_fixed_array_creation] = STATE(2765), [sym_selector_expression] = STATE(2765), [sym_index_expression] = STATE(2765), [sym_slice_expression] = STATE(2765), - [sym_if_expression] = STATE(2619), - [sym_compile_time_if_expression] = STATE(2619), + [sym_if_expression] = STATE(2637), + [sym_compile_time_if_expression] = STATE(2637), [sym_is_expression] = STATE(2765), [sym_in_expression] = STATE(2765), [sym_enum_fetch] = STATE(2765), - [sym_match_expression] = STATE(2619), - [sym_match_arms] = STATE(4331), - [sym_match_arm] = STATE(2132), - [sym_match_expression_list] = STATE(4087), - [sym_match_arm_type] = STATE(3795), - [sym_match_else_arm_clause] = STATE(2132), - [sym_select_expression] = STATE(2619), - [sym_lock_expression] = STATE(2619), - [sym_unsafe_expression] = STATE(2619), - [sym_sql_expression] = STATE(2619), - [sym_c_string_literal] = STATE(2660), - [sym_raw_string_literal] = STATE(2660), - [sym_interpreted_string_literal] = STATE(2660), - [sym_mutability_modifiers] = STATE(567), - [sym_plain_type] = STATE(3784), - [sym__plain_type_without_special] = STATE(2302), - [sym_anon_struct_type] = STATE(2303), - [sym_multi_return_type] = STATE(2302), - [sym_result_type] = STATE(2302), - [sym_option_type] = STATE(2302), - [sym_qualified_type] = STATE(3541), - [sym_fixed_array_type] = STATE(2303), - [sym_array_type] = STATE(2303), - [sym_pointer_type] = STATE(2303), - [sym_wrong_pointer_type] = STATE(2303), - [sym_map_type] = STATE(2303), - [sym_channel_type] = STATE(2303), - [sym_shared_type] = STATE(2303), - [sym_thread_type] = STATE(2303), - [sym_atomic_type] = STATE(2303), - [sym_generic_type] = STATE(2303), - [sym_function_type] = STATE(2303), - [sym__definite_range] = STATE(3781), - [aux_sym_match_arms_repeat1] = STATE(184), - [sym_identifier] = ACTIONS(1079), + [sym_match_expression] = STATE(2637), + [sym_match_arms] = STATE(4488), + [sym_match_arm] = STATE(2141), + [sym_match_expression_list] = STATE(4299), + [sym_match_arm_type] = STATE(3851), + [sym_match_else_arm_clause] = STATE(2141), + [sym_select_expression] = STATE(2637), + [sym_lock_expression] = STATE(2637), + [sym_unsafe_expression] = STATE(2637), + [sym_sql_expression] = STATE(2637), + [sym_c_string_literal] = STATE(2762), + [sym_raw_string_literal] = STATE(2762), + [sym_interpreted_string_literal] = STATE(2762), + [sym_mutability_modifiers] = STATE(822), + [sym_plain_type] = STATE(3848), + [sym__plain_type_without_special] = STATE(2360), + [sym_anon_struct_type] = STATE(2362), + [sym_multi_return_type] = STATE(2360), + [sym_result_type] = STATE(2360), + [sym_option_type] = STATE(2360), + [sym_qualified_type] = STATE(3460), + [sym_fixed_array_type] = STATE(2362), + [sym_array_type] = STATE(2362), + [sym_pointer_type] = STATE(2362), + [sym_wrong_pointer_type] = STATE(2362), + [sym_map_type] = STATE(2362), + [sym_channel_type] = STATE(2362), + [sym_shared_type] = STATE(2362), + [sym_thread_type] = STATE(2362), + [sym_atomic_type] = STATE(2362), + [sym_generic_type] = STATE(2362), + [sym_function_type] = STATE(2362), + [sym__definite_range] = STATE(3816), + [aux_sym_match_arms_repeat1] = STATE(188), + [sym_identifier] = ACTIONS(1071), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1081), - [anon_sym_LBRACE] = ACTIONS(1083), + [anon_sym_DOT] = ACTIONS(1073), + [anon_sym_LBRACE] = ACTIONS(1075), [anon_sym_RBRACE] = ACTIONS(1179), - [anon_sym_LPAREN] = ACTIONS(1087), - [anon_sym_fn] = ACTIONS(1089), - [anon_sym_PLUS] = ACTIONS(1091), - [anon_sym_DASH] = ACTIONS(1091), - [anon_sym_STAR] = ACTIONS(1093), - [anon_sym_struct] = ACTIONS(1095), + [anon_sym_LPAREN] = ACTIONS(1079), + [anon_sym_fn] = ACTIONS(1081), + [anon_sym_PLUS] = ACTIONS(1083), + [anon_sym_DASH] = ACTIONS(1083), + [anon_sym_STAR] = ACTIONS(1085), + [anon_sym_struct] = ACTIONS(1087), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(1097), - [anon_sym_go] = ACTIONS(1099), - [anon_sym_spawn] = ACTIONS(1101), - [anon_sym_json_DOTdecode] = ACTIONS(1103), - [anon_sym_LBRACK2] = ACTIONS(1105), - [anon_sym_TILDE] = ACTIONS(1091), - [anon_sym_CARET] = ACTIONS(1091), - [anon_sym_AMP] = ACTIONS(1107), - [anon_sym_LT_DASH] = ACTIONS(1109), - [sym_none] = ACTIONS(1111), - [sym_true] = ACTIONS(1111), - [sym_false] = ACTIONS(1111), - [sym_nil] = ACTIONS(1111), - [anon_sym_if] = ACTIONS(1113), - [anon_sym_else] = ACTIONS(1115), - [anon_sym_DOLLARif] = ACTIONS(1117), - [anon_sym_match] = ACTIONS(1119), - [anon_sym_select] = ACTIONS(1121), - [anon_sym_lock] = ACTIONS(1123), - [anon_sym_rlock] = ACTIONS(1123), - [anon_sym_unsafe] = ACTIONS(1125), - [anon_sym_sql] = ACTIONS(1127), - [sym_int_literal] = ACTIONS(1111), - [sym_float_literal] = ACTIONS(1129), - [sym_rune_literal] = ACTIONS(1129), - [sym_pseudo_compile_time_identifier] = ACTIONS(1131), + [anon_sym_BANG] = ACTIONS(1089), + [anon_sym_go] = ACTIONS(1091), + [anon_sym_spawn] = ACTIONS(1093), + [anon_sym_json_DOTdecode] = ACTIONS(1095), + [anon_sym_LBRACK2] = ACTIONS(1097), + [anon_sym_TILDE] = ACTIONS(1083), + [anon_sym_CARET] = ACTIONS(1083), + [anon_sym_AMP] = ACTIONS(1099), + [anon_sym_LT_DASH] = ACTIONS(1101), + [sym_none] = ACTIONS(1103), + [sym_true] = ACTIONS(1103), + [sym_false] = ACTIONS(1103), + [sym_nil] = ACTIONS(1103), + [anon_sym_if] = ACTIONS(1105), + [anon_sym_else] = ACTIONS(1107), + [anon_sym_DOLLARif] = ACTIONS(1109), + [anon_sym_match] = ACTIONS(1111), + [anon_sym_select] = ACTIONS(1113), + [anon_sym_lock] = ACTIONS(1115), + [anon_sym_rlock] = ACTIONS(1115), + [anon_sym_unsafe] = ACTIONS(1117), + [anon_sym_sql] = ACTIONS(1119), + [sym_int_literal] = ACTIONS(1103), + [sym_float_literal] = ACTIONS(1121), + [sym_rune_literal] = ACTIONS(1121), + [sym_pseudo_compile_time_identifier] = ACTIONS(1123), [anon_sym_shared] = ACTIONS(83), [anon_sym_map_LBRACK] = ACTIONS(85), [anon_sym_chan] = ACTIONS(87), [anon_sym_thread] = ACTIONS(89), [anon_sym_atomic] = ACTIONS(91), - [sym___double_quote] = ACTIONS(1133), - [sym___single_quote] = ACTIONS(1135), - [sym___c_double_quote] = ACTIONS(1137), - [sym___c_single_quote] = ACTIONS(1139), - [sym___r_double_quote] = ACTIONS(1141), - [sym___r_single_quote] = ACTIONS(1143), + [sym___double_quote] = ACTIONS(1125), + [sym___single_quote] = ACTIONS(1127), + [sym___c_double_quote] = ACTIONS(1129), + [sym___c_single_quote] = ACTIONS(1131), + [sym___r_double_quote] = ACTIONS(1133), + [sym___r_single_quote] = ACTIONS(1135), }, [170] = { [sym_line_comment] = STATE(170), [sym_block_comment] = STATE(170), - [sym__expression] = STATE(1117), - [sym__expression_without_blocks] = STATE(1141), - [sym__expression_with_blocks] = STATE(1141), - [sym_inc_expression] = STATE(1140), - [sym_dec_expression] = STATE(1140), - [sym_or_block_expression] = STATE(1140), - [sym_option_propagation_expression] = STATE(1140), - [sym_result_propagation_expression] = STATE(1140), - [sym_anon_struct_value_expression] = STATE(1199), - [sym_go_expression] = STATE(1140), - [sym_spawn_expression] = STATE(1140), - [sym_parenthesized_expression] = STATE(1140), - [sym_call_expression] = STATE(1140), - [sym_short_lambda] = STATE(4622), - [sym_argument] = STATE(1903), - [sym_type_initializer] = STATE(1199), + [sym__expression] = STATE(1126), + [sym__expression_without_blocks] = STATE(1210), + [sym__expression_with_blocks] = STATE(1210), + [sym_inc_expression] = STATE(1211), + [sym_dec_expression] = STATE(1211), + [sym_or_block_expression] = STATE(1211), + [sym_option_propagation_expression] = STATE(1211), + [sym_result_propagation_expression] = STATE(1211), + [sym_anon_struct_value_expression] = STATE(1212), + [sym_go_expression] = STATE(1211), + [sym_spawn_expression] = STATE(1211), + [sym_parenthesized_expression] = STATE(1211), + [sym_call_expression] = STATE(1211), + [sym_short_lambda] = STATE(4450), + [sym_argument] = STATE(1907), + [sym_type_initializer] = STATE(1212), [sym_keyed_element] = STATE(1904), - [sym_function_literal] = STATE(1140), - [sym_reference_expression] = STATE(1236), - [sym_type_reference_expression] = STATE(3541), - [sym_unary_expression] = STATE(1140), - [sym_receive_expression] = STATE(1140), - [sym_binary_expression] = STATE(1140), - [sym_as_type_cast_expression] = STATE(1140), - [sym__max_group] = STATE(1140), - [sym_literal] = STATE(1146), + [sym_function_literal] = STATE(1211), + [sym_reference_expression] = STATE(1252), + [sym_type_reference_expression] = STATE(3460), + [sym_unary_expression] = STATE(1211), + [sym_receive_expression] = STATE(1211), + [sym_binary_expression] = STATE(1211), + [sym_as_type_cast_expression] = STATE(1211), + [sym__max_group] = STATE(1211), + [sym_literal] = STATE(1209), [sym_spread_expression] = STATE(1904), - [sym_map_init_expression] = STATE(1199), - [sym_array_creation] = STATE(1140), - [sym_fixed_array_creation] = STATE(1140), - [sym_selector_expression] = STATE(1140), - [sym_index_expression] = STATE(1140), - [sym_slice_expression] = STATE(1140), - [sym_if_expression] = STATE(1199), - [sym_compile_time_if_expression] = STATE(1199), - [sym_is_expression] = STATE(1140), - [sym_in_expression] = STATE(1140), - [sym_enum_fetch] = STATE(1140), - [sym_match_expression] = STATE(1199), - [sym_select_expression] = STATE(1199), - [sym_lock_expression] = STATE(1199), - [sym_unsafe_expression] = STATE(1199), - [sym_sql_expression] = STATE(1199), - [sym_c_string_literal] = STATE(1147), - [sym_raw_string_literal] = STATE(1147), - [sym_interpreted_string_literal] = STATE(1147), - [sym_mutability_modifiers] = STATE(789), + [sym_map_init_expression] = STATE(1212), + [sym_array_creation] = STATE(1211), + [sym_fixed_array_creation] = STATE(1211), + [sym_selector_expression] = STATE(1211), + [sym_index_expression] = STATE(1211), + [sym_slice_expression] = STATE(1211), + [sym_if_expression] = STATE(1212), + [sym_compile_time_if_expression] = STATE(1212), + [sym_is_expression] = STATE(1211), + [sym_in_expression] = STATE(1211), + [sym_enum_fetch] = STATE(1211), + [sym_match_expression] = STATE(1212), + [sym_select_expression] = STATE(1212), + [sym_lock_expression] = STATE(1212), + [sym_unsafe_expression] = STATE(1212), + [sym_sql_expression] = STATE(1212), + [sym_c_string_literal] = STATE(1201), + [sym_raw_string_literal] = STATE(1201), + [sym_interpreted_string_literal] = STATE(1201), + [sym_mutability_modifiers] = STATE(769), [sym_mutable_expression] = STATE(1904), - [sym_plain_type] = STATE(4234), - [sym__plain_type_without_special] = STATE(2302), - [sym_anon_struct_type] = STATE(2303), - [sym_multi_return_type] = STATE(2302), - [sym_result_type] = STATE(2302), - [sym_option_type] = STATE(2302), - [sym_qualified_type] = STATE(3541), - [sym_fixed_array_type] = STATE(2303), - [sym_array_type] = STATE(2303), - [sym_pointer_type] = STATE(2303), - [sym_wrong_pointer_type] = STATE(2303), - [sym_map_type] = STATE(2303), - [sym_channel_type] = STATE(2303), - [sym_shared_type] = STATE(2303), - [sym_thread_type] = STATE(2303), - [sym_atomic_type] = STATE(2303), - [sym_generic_type] = STATE(2303), - [sym_function_type] = STATE(2303), - [aux_sym_argument_list_repeat1] = STATE(201), - [sym_identifier] = ACTIONS(1071), + [sym_plain_type] = STATE(4123), + [sym__plain_type_without_special] = STATE(2360), + [sym_anon_struct_type] = STATE(2362), + [sym_multi_return_type] = STATE(2360), + [sym_result_type] = STATE(2360), + [sym_option_type] = STATE(2360), + [sym_qualified_type] = STATE(3460), + [sym_fixed_array_type] = STATE(2362), + [sym_array_type] = STATE(2362), + [sym_pointer_type] = STATE(2362), + [sym_wrong_pointer_type] = STATE(2362), + [sym_map_type] = STATE(2362), + [sym_channel_type] = STATE(2362), + [sym_shared_type] = STATE(2362), + [sym_thread_type] = STATE(2362), + [sym_atomic_type] = STATE(2362), + [sym_generic_type] = STATE(2362), + [sym_function_type] = STATE(2362), + [aux_sym_argument_list_repeat1] = STATE(199), + [sym_identifier] = ACTIONS(1139), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), [anon_sym_DOT] = ACTIONS(631), [anon_sym_LBRACE] = ACTIONS(633), [anon_sym_LPAREN] = ACTIONS(637), [anon_sym_RPAREN] = ACTIONS(1181), - [anon_sym_PIPE] = ACTIONS(1075), + [anon_sym_PIPE] = ACTIONS(1143), [anon_sym_fn] = ACTIONS(641), [anon_sym_PLUS] = ACTIONS(643), [anon_sym_DASH] = ACTIONS(643), [anon_sym_STAR] = ACTIONS(645), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1077), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1145), [anon_sym_struct] = ACTIONS(649), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), @@ -42268,332 +42286,209 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [171] = { [sym_line_comment] = STATE(171), [sym_block_comment] = STATE(171), - [sym__expression] = STATE(2611), - [sym__expression_without_blocks] = STATE(2579), - [sym__expression_with_blocks] = STATE(2625), + [sym__expression] = STATE(2585), + [sym__expression_without_blocks] = STATE(2584), + [sym__expression_with_blocks] = STATE(2638), [sym_inc_expression] = STATE(2765), [sym_dec_expression] = STATE(2765), [sym_or_block_expression] = STATE(2765), [sym_option_propagation_expression] = STATE(2765), [sym_result_propagation_expression] = STATE(2765), - [sym_anon_struct_value_expression] = STATE(2619), + [sym_anon_struct_value_expression] = STATE(2637), [sym_go_expression] = STATE(2765), [sym_spawn_expression] = STATE(2765), [sym_parenthesized_expression] = STATE(2765), [sym_call_expression] = STATE(2765), - [sym_type_initializer] = STATE(2619), + [sym_type_initializer] = STATE(2637), [sym_function_literal] = STATE(2765), [sym_reference_expression] = STATE(2764), - [sym_type_reference_expression] = STATE(3541), + [sym_type_reference_expression] = STATE(3460), [sym_unary_expression] = STATE(2765), [sym_receive_expression] = STATE(2765), [sym_binary_expression] = STATE(2765), [sym_as_type_cast_expression] = STATE(2765), [sym__max_group] = STATE(2765), - [sym_literal] = STATE(2769), - [sym_map_init_expression] = STATE(2619), + [sym_literal] = STATE(2771), + [sym_map_init_expression] = STATE(2637), [sym_array_creation] = STATE(2765), [sym_fixed_array_creation] = STATE(2765), [sym_selector_expression] = STATE(2765), [sym_index_expression] = STATE(2765), [sym_slice_expression] = STATE(2765), - [sym_if_expression] = STATE(2619), - [sym_compile_time_if_expression] = STATE(2619), + [sym_if_expression] = STATE(2637), + [sym_compile_time_if_expression] = STATE(2637), [sym_is_expression] = STATE(2765), [sym_in_expression] = STATE(2765), [sym_enum_fetch] = STATE(2765), - [sym_match_expression] = STATE(2619), - [sym_match_arms] = STATE(4320), - [sym_match_arm] = STATE(2132), - [sym_match_expression_list] = STATE(4087), - [sym_match_arm_type] = STATE(3795), - [sym_match_else_arm_clause] = STATE(2132), - [sym_select_expression] = STATE(2619), - [sym_lock_expression] = STATE(2619), - [sym_unsafe_expression] = STATE(2619), - [sym_sql_expression] = STATE(2619), - [sym_c_string_literal] = STATE(2660), - [sym_raw_string_literal] = STATE(2660), - [sym_interpreted_string_literal] = STATE(2660), - [sym_mutability_modifiers] = STATE(567), - [sym_plain_type] = STATE(3784), - [sym__plain_type_without_special] = STATE(2302), - [sym_anon_struct_type] = STATE(2303), - [sym_multi_return_type] = STATE(2302), - [sym_result_type] = STATE(2302), - [sym_option_type] = STATE(2302), - [sym_qualified_type] = STATE(3541), - [sym_fixed_array_type] = STATE(2303), - [sym_array_type] = STATE(2303), - [sym_pointer_type] = STATE(2303), - [sym_wrong_pointer_type] = STATE(2303), - [sym_map_type] = STATE(2303), - [sym_channel_type] = STATE(2303), - [sym_shared_type] = STATE(2303), - [sym_thread_type] = STATE(2303), - [sym_atomic_type] = STATE(2303), - [sym_generic_type] = STATE(2303), - [sym_function_type] = STATE(2303), - [sym__definite_range] = STATE(3781), - [aux_sym_match_arms_repeat1] = STATE(184), - [sym_identifier] = ACTIONS(1079), + [sym_match_expression] = STATE(2637), + [sym_match_arms] = STATE(4646), + [sym_match_arm] = STATE(2141), + [sym_match_expression_list] = STATE(4299), + [sym_match_arm_type] = STATE(3851), + [sym_match_else_arm_clause] = STATE(2141), + [sym_select_expression] = STATE(2637), + [sym_lock_expression] = STATE(2637), + [sym_unsafe_expression] = STATE(2637), + [sym_sql_expression] = STATE(2637), + [sym_c_string_literal] = STATE(2762), + [sym_raw_string_literal] = STATE(2762), + [sym_interpreted_string_literal] = STATE(2762), + [sym_mutability_modifiers] = STATE(822), + [sym_plain_type] = STATE(3848), + [sym__plain_type_without_special] = STATE(2360), + [sym_anon_struct_type] = STATE(2362), + [sym_multi_return_type] = STATE(2360), + [sym_result_type] = STATE(2360), + [sym_option_type] = STATE(2360), + [sym_qualified_type] = STATE(3460), + [sym_fixed_array_type] = STATE(2362), + [sym_array_type] = STATE(2362), + [sym_pointer_type] = STATE(2362), + [sym_wrong_pointer_type] = STATE(2362), + [sym_map_type] = STATE(2362), + [sym_channel_type] = STATE(2362), + [sym_shared_type] = STATE(2362), + [sym_thread_type] = STATE(2362), + [sym_atomic_type] = STATE(2362), + [sym_generic_type] = STATE(2362), + [sym_function_type] = STATE(2362), + [sym__definite_range] = STATE(3816), + [aux_sym_match_arms_repeat1] = STATE(188), + [sym_identifier] = ACTIONS(1071), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1081), - [anon_sym_LBRACE] = ACTIONS(1083), + [anon_sym_DOT] = ACTIONS(1073), + [anon_sym_LBRACE] = ACTIONS(1075), [anon_sym_RBRACE] = ACTIONS(1183), - [anon_sym_LPAREN] = ACTIONS(1087), - [anon_sym_fn] = ACTIONS(1089), - [anon_sym_PLUS] = ACTIONS(1091), - [anon_sym_DASH] = ACTIONS(1091), - [anon_sym_STAR] = ACTIONS(1093), - [anon_sym_struct] = ACTIONS(1095), + [anon_sym_LPAREN] = ACTIONS(1079), + [anon_sym_fn] = ACTIONS(1081), + [anon_sym_PLUS] = ACTIONS(1083), + [anon_sym_DASH] = ACTIONS(1083), + [anon_sym_STAR] = ACTIONS(1085), + [anon_sym_struct] = ACTIONS(1087), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(1097), - [anon_sym_go] = ACTIONS(1099), - [anon_sym_spawn] = ACTIONS(1101), - [anon_sym_json_DOTdecode] = ACTIONS(1103), - [anon_sym_LBRACK2] = ACTIONS(1105), - [anon_sym_TILDE] = ACTIONS(1091), - [anon_sym_CARET] = ACTIONS(1091), - [anon_sym_AMP] = ACTIONS(1107), - [anon_sym_LT_DASH] = ACTIONS(1109), - [sym_none] = ACTIONS(1111), - [sym_true] = ACTIONS(1111), - [sym_false] = ACTIONS(1111), - [sym_nil] = ACTIONS(1111), - [anon_sym_if] = ACTIONS(1113), - [anon_sym_else] = ACTIONS(1115), - [anon_sym_DOLLARif] = ACTIONS(1117), - [anon_sym_match] = ACTIONS(1119), - [anon_sym_select] = ACTIONS(1121), - [anon_sym_lock] = ACTIONS(1123), - [anon_sym_rlock] = ACTIONS(1123), - [anon_sym_unsafe] = ACTIONS(1125), - [anon_sym_sql] = ACTIONS(1127), - [sym_int_literal] = ACTIONS(1111), - [sym_float_literal] = ACTIONS(1129), - [sym_rune_literal] = ACTIONS(1129), - [sym_pseudo_compile_time_identifier] = ACTIONS(1131), + [anon_sym_BANG] = ACTIONS(1089), + [anon_sym_go] = ACTIONS(1091), + [anon_sym_spawn] = ACTIONS(1093), + [anon_sym_json_DOTdecode] = ACTIONS(1095), + [anon_sym_LBRACK2] = ACTIONS(1097), + [anon_sym_TILDE] = ACTIONS(1083), + [anon_sym_CARET] = ACTIONS(1083), + [anon_sym_AMP] = ACTIONS(1099), + [anon_sym_LT_DASH] = ACTIONS(1101), + [sym_none] = ACTIONS(1103), + [sym_true] = ACTIONS(1103), + [sym_false] = ACTIONS(1103), + [sym_nil] = ACTIONS(1103), + [anon_sym_if] = ACTIONS(1105), + [anon_sym_else] = ACTIONS(1107), + [anon_sym_DOLLARif] = ACTIONS(1109), + [anon_sym_match] = ACTIONS(1111), + [anon_sym_select] = ACTIONS(1113), + [anon_sym_lock] = ACTIONS(1115), + [anon_sym_rlock] = ACTIONS(1115), + [anon_sym_unsafe] = ACTIONS(1117), + [anon_sym_sql] = ACTIONS(1119), + [sym_int_literal] = ACTIONS(1103), + [sym_float_literal] = ACTIONS(1121), + [sym_rune_literal] = ACTIONS(1121), + [sym_pseudo_compile_time_identifier] = ACTIONS(1123), [anon_sym_shared] = ACTIONS(83), [anon_sym_map_LBRACK] = ACTIONS(85), [anon_sym_chan] = ACTIONS(87), [anon_sym_thread] = ACTIONS(89), [anon_sym_atomic] = ACTIONS(91), - [sym___double_quote] = ACTIONS(1133), - [sym___single_quote] = ACTIONS(1135), - [sym___c_double_quote] = ACTIONS(1137), - [sym___c_single_quote] = ACTIONS(1139), - [sym___r_double_quote] = ACTIONS(1141), - [sym___r_single_quote] = ACTIONS(1143), + [sym___double_quote] = ACTIONS(1125), + [sym___single_quote] = ACTIONS(1127), + [sym___c_double_quote] = ACTIONS(1129), + [sym___c_single_quote] = ACTIONS(1131), + [sym___r_double_quote] = ACTIONS(1133), + [sym___r_single_quote] = ACTIONS(1135), }, [172] = { [sym_line_comment] = STATE(172), [sym_block_comment] = STATE(172), - [sym__expression] = STATE(2611), - [sym__expression_without_blocks] = STATE(2579), - [sym__expression_with_blocks] = STATE(2625), - [sym_inc_expression] = STATE(2765), - [sym_dec_expression] = STATE(2765), - [sym_or_block_expression] = STATE(2765), - [sym_option_propagation_expression] = STATE(2765), - [sym_result_propagation_expression] = STATE(2765), - [sym_anon_struct_value_expression] = STATE(2619), - [sym_go_expression] = STATE(2765), - [sym_spawn_expression] = STATE(2765), - [sym_parenthesized_expression] = STATE(2765), - [sym_call_expression] = STATE(2765), - [sym_type_initializer] = STATE(2619), - [sym_function_literal] = STATE(2765), - [sym_reference_expression] = STATE(2764), - [sym_type_reference_expression] = STATE(3541), - [sym_unary_expression] = STATE(2765), - [sym_receive_expression] = STATE(2765), - [sym_binary_expression] = STATE(2765), - [sym_as_type_cast_expression] = STATE(2765), - [sym__max_group] = STATE(2765), - [sym_literal] = STATE(2769), - [sym_map_init_expression] = STATE(2619), - [sym_array_creation] = STATE(2765), - [sym_fixed_array_creation] = STATE(2765), - [sym_selector_expression] = STATE(2765), - [sym_index_expression] = STATE(2765), - [sym_slice_expression] = STATE(2765), - [sym_if_expression] = STATE(2619), - [sym_compile_time_if_expression] = STATE(2619), - [sym_is_expression] = STATE(2765), - [sym_in_expression] = STATE(2765), - [sym_enum_fetch] = STATE(2765), - [sym_match_expression] = STATE(2619), - [sym_match_arms] = STATE(4529), - [sym_match_arm] = STATE(2132), - [sym_match_expression_list] = STATE(4087), - [sym_match_arm_type] = STATE(3795), - [sym_match_else_arm_clause] = STATE(2132), - [sym_select_expression] = STATE(2619), - [sym_lock_expression] = STATE(2619), - [sym_unsafe_expression] = STATE(2619), - [sym_sql_expression] = STATE(2619), - [sym_c_string_literal] = STATE(2660), - [sym_raw_string_literal] = STATE(2660), - [sym_interpreted_string_literal] = STATE(2660), - [sym_mutability_modifiers] = STATE(567), - [sym_plain_type] = STATE(3784), - [sym__plain_type_without_special] = STATE(2302), - [sym_anon_struct_type] = STATE(2303), - [sym_multi_return_type] = STATE(2302), - [sym_result_type] = STATE(2302), - [sym_option_type] = STATE(2302), - [sym_qualified_type] = STATE(3541), - [sym_fixed_array_type] = STATE(2303), - [sym_array_type] = STATE(2303), - [sym_pointer_type] = STATE(2303), - [sym_wrong_pointer_type] = STATE(2303), - [sym_map_type] = STATE(2303), - [sym_channel_type] = STATE(2303), - [sym_shared_type] = STATE(2303), - [sym_thread_type] = STATE(2303), - [sym_atomic_type] = STATE(2303), - [sym_generic_type] = STATE(2303), - [sym_function_type] = STATE(2303), - [sym__definite_range] = STATE(3781), - [aux_sym_match_arms_repeat1] = STATE(184), - [sym_identifier] = ACTIONS(1079), - [anon_sym_SLASH_SLASH] = ACTIONS(3), - [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1081), - [anon_sym_LBRACE] = ACTIONS(1083), - [anon_sym_RBRACE] = ACTIONS(1185), - [anon_sym_LPAREN] = ACTIONS(1087), - [anon_sym_fn] = ACTIONS(1089), - [anon_sym_PLUS] = ACTIONS(1091), - [anon_sym_DASH] = ACTIONS(1091), - [anon_sym_STAR] = ACTIONS(1093), - [anon_sym_struct] = ACTIONS(1095), - [anon_sym_mut] = ACTIONS(41), - [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(1097), - [anon_sym_go] = ACTIONS(1099), - [anon_sym_spawn] = ACTIONS(1101), - [anon_sym_json_DOTdecode] = ACTIONS(1103), - [anon_sym_LBRACK2] = ACTIONS(1105), - [anon_sym_TILDE] = ACTIONS(1091), - [anon_sym_CARET] = ACTIONS(1091), - [anon_sym_AMP] = ACTIONS(1107), - [anon_sym_LT_DASH] = ACTIONS(1109), - [sym_none] = ACTIONS(1111), - [sym_true] = ACTIONS(1111), - [sym_false] = ACTIONS(1111), - [sym_nil] = ACTIONS(1111), - [anon_sym_if] = ACTIONS(1113), - [anon_sym_else] = ACTIONS(1115), - [anon_sym_DOLLARif] = ACTIONS(1117), - [anon_sym_match] = ACTIONS(1119), - [anon_sym_select] = ACTIONS(1121), - [anon_sym_lock] = ACTIONS(1123), - [anon_sym_rlock] = ACTIONS(1123), - [anon_sym_unsafe] = ACTIONS(1125), - [anon_sym_sql] = ACTIONS(1127), - [sym_int_literal] = ACTIONS(1111), - [sym_float_literal] = ACTIONS(1129), - [sym_rune_literal] = ACTIONS(1129), - [sym_pseudo_compile_time_identifier] = ACTIONS(1131), - [anon_sym_shared] = ACTIONS(83), - [anon_sym_map_LBRACK] = ACTIONS(85), - [anon_sym_chan] = ACTIONS(87), - [anon_sym_thread] = ACTIONS(89), - [anon_sym_atomic] = ACTIONS(91), - [sym___double_quote] = ACTIONS(1133), - [sym___single_quote] = ACTIONS(1135), - [sym___c_double_quote] = ACTIONS(1137), - [sym___c_single_quote] = ACTIONS(1139), - [sym___r_double_quote] = ACTIONS(1141), - [sym___r_single_quote] = ACTIONS(1143), - }, - [173] = { - [sym_line_comment] = STATE(173), - [sym_block_comment] = STATE(173), - [sym__expression] = STATE(1117), - [sym__expression_without_blocks] = STATE(1141), - [sym__expression_with_blocks] = STATE(1141), - [sym_inc_expression] = STATE(1140), - [sym_dec_expression] = STATE(1140), - [sym_or_block_expression] = STATE(1140), - [sym_option_propagation_expression] = STATE(1140), - [sym_result_propagation_expression] = STATE(1140), - [sym_anon_struct_value_expression] = STATE(1199), - [sym_go_expression] = STATE(1140), - [sym_spawn_expression] = STATE(1140), - [sym_parenthesized_expression] = STATE(1140), - [sym_call_expression] = STATE(1140), - [sym_short_lambda] = STATE(4338), - [sym_argument] = STATE(1903), - [sym_type_initializer] = STATE(1199), + [sym__expression] = STATE(1126), + [sym__expression_without_blocks] = STATE(1210), + [sym__expression_with_blocks] = STATE(1210), + [sym_inc_expression] = STATE(1211), + [sym_dec_expression] = STATE(1211), + [sym_or_block_expression] = STATE(1211), + [sym_option_propagation_expression] = STATE(1211), + [sym_result_propagation_expression] = STATE(1211), + [sym_anon_struct_value_expression] = STATE(1212), + [sym_go_expression] = STATE(1211), + [sym_spawn_expression] = STATE(1211), + [sym_parenthesized_expression] = STATE(1211), + [sym_call_expression] = STATE(1211), + [sym_short_lambda] = STATE(4535), + [sym_argument] = STATE(1907), + [sym_type_initializer] = STATE(1212), [sym_keyed_element] = STATE(1904), - [sym_function_literal] = STATE(1140), - [sym_reference_expression] = STATE(1236), - [sym_type_reference_expression] = STATE(3541), - [sym_unary_expression] = STATE(1140), - [sym_receive_expression] = STATE(1140), - [sym_binary_expression] = STATE(1140), - [sym_as_type_cast_expression] = STATE(1140), - [sym__max_group] = STATE(1140), - [sym_literal] = STATE(1146), + [sym_function_literal] = STATE(1211), + [sym_reference_expression] = STATE(1252), + [sym_type_reference_expression] = STATE(3460), + [sym_unary_expression] = STATE(1211), + [sym_receive_expression] = STATE(1211), + [sym_binary_expression] = STATE(1211), + [sym_as_type_cast_expression] = STATE(1211), + [sym__max_group] = STATE(1211), + [sym_literal] = STATE(1209), [sym_spread_expression] = STATE(1904), - [sym_map_init_expression] = STATE(1199), - [sym_array_creation] = STATE(1140), - [sym_fixed_array_creation] = STATE(1140), - [sym_selector_expression] = STATE(1140), - [sym_index_expression] = STATE(1140), - [sym_slice_expression] = STATE(1140), - [sym_if_expression] = STATE(1199), - [sym_compile_time_if_expression] = STATE(1199), - [sym_is_expression] = STATE(1140), - [sym_in_expression] = STATE(1140), - [sym_enum_fetch] = STATE(1140), - [sym_match_expression] = STATE(1199), - [sym_select_expression] = STATE(1199), - [sym_lock_expression] = STATE(1199), - [sym_unsafe_expression] = STATE(1199), - [sym_sql_expression] = STATE(1199), - [sym_c_string_literal] = STATE(1147), - [sym_raw_string_literal] = STATE(1147), - [sym_interpreted_string_literal] = STATE(1147), - [sym_mutability_modifiers] = STATE(789), + [sym_map_init_expression] = STATE(1212), + [sym_array_creation] = STATE(1211), + [sym_fixed_array_creation] = STATE(1211), + [sym_selector_expression] = STATE(1211), + [sym_index_expression] = STATE(1211), + [sym_slice_expression] = STATE(1211), + [sym_if_expression] = STATE(1212), + [sym_compile_time_if_expression] = STATE(1212), + [sym_is_expression] = STATE(1211), + [sym_in_expression] = STATE(1211), + [sym_enum_fetch] = STATE(1211), + [sym_match_expression] = STATE(1212), + [sym_select_expression] = STATE(1212), + [sym_lock_expression] = STATE(1212), + [sym_unsafe_expression] = STATE(1212), + [sym_sql_expression] = STATE(1212), + [sym_c_string_literal] = STATE(1201), + [sym_raw_string_literal] = STATE(1201), + [sym_interpreted_string_literal] = STATE(1201), + [sym_mutability_modifiers] = STATE(769), [sym_mutable_expression] = STATE(1904), - [sym_plain_type] = STATE(4234), - [sym__plain_type_without_special] = STATE(2302), - [sym_anon_struct_type] = STATE(2303), - [sym_multi_return_type] = STATE(2302), - [sym_result_type] = STATE(2302), - [sym_option_type] = STATE(2302), - [sym_qualified_type] = STATE(3541), - [sym_fixed_array_type] = STATE(2303), - [sym_array_type] = STATE(2303), - [sym_pointer_type] = STATE(2303), - [sym_wrong_pointer_type] = STATE(2303), - [sym_map_type] = STATE(2303), - [sym_channel_type] = STATE(2303), - [sym_shared_type] = STATE(2303), - [sym_thread_type] = STATE(2303), - [sym_atomic_type] = STATE(2303), - [sym_generic_type] = STATE(2303), - [sym_function_type] = STATE(2303), - [aux_sym_argument_list_repeat1] = STATE(202), - [sym_identifier] = ACTIONS(1071), + [sym_plain_type] = STATE(4123), + [sym__plain_type_without_special] = STATE(2360), + [sym_anon_struct_type] = STATE(2362), + [sym_multi_return_type] = STATE(2360), + [sym_result_type] = STATE(2360), + [sym_option_type] = STATE(2360), + [sym_qualified_type] = STATE(3460), + [sym_fixed_array_type] = STATE(2362), + [sym_array_type] = STATE(2362), + [sym_pointer_type] = STATE(2362), + [sym_wrong_pointer_type] = STATE(2362), + [sym_map_type] = STATE(2362), + [sym_channel_type] = STATE(2362), + [sym_shared_type] = STATE(2362), + [sym_thread_type] = STATE(2362), + [sym_atomic_type] = STATE(2362), + [sym_generic_type] = STATE(2362), + [sym_function_type] = STATE(2362), + [aux_sym_argument_list_repeat1] = STATE(207), + [sym_identifier] = ACTIONS(1139), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), [anon_sym_DOT] = ACTIONS(631), [anon_sym_LBRACE] = ACTIONS(633), [anon_sym_LPAREN] = ACTIONS(637), - [anon_sym_RPAREN] = ACTIONS(1187), - [anon_sym_PIPE] = ACTIONS(1075), + [anon_sym_RPAREN] = ACTIONS(1185), + [anon_sym_PIPE] = ACTIONS(1143), [anon_sym_fn] = ACTIONS(641), [anon_sym_PLUS] = ACTIONS(643), [anon_sym_DASH] = ACTIONS(643), [anon_sym_STAR] = ACTIONS(645), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1077), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1145), [anon_sym_struct] = ACTIONS(649), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), @@ -42634,333 +42529,89 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym___r_double_quote] = ACTIONS(697), [sym___r_single_quote] = ACTIONS(699), }, - [174] = { - [sym_line_comment] = STATE(174), - [sym_block_comment] = STATE(174), - [sym__expression] = STATE(2611), - [sym__expression_without_blocks] = STATE(2579), - [sym__expression_with_blocks] = STATE(2625), - [sym_inc_expression] = STATE(2765), - [sym_dec_expression] = STATE(2765), - [sym_or_block_expression] = STATE(2765), - [sym_option_propagation_expression] = STATE(2765), - [sym_result_propagation_expression] = STATE(2765), - [sym_anon_struct_value_expression] = STATE(2619), - [sym_go_expression] = STATE(2765), - [sym_spawn_expression] = STATE(2765), - [sym_parenthesized_expression] = STATE(2765), - [sym_call_expression] = STATE(2765), - [sym_type_initializer] = STATE(2619), - [sym_function_literal] = STATE(2765), - [sym_reference_expression] = STATE(2764), - [sym_type_reference_expression] = STATE(3541), - [sym_unary_expression] = STATE(2765), - [sym_receive_expression] = STATE(2765), - [sym_binary_expression] = STATE(2765), - [sym_as_type_cast_expression] = STATE(2765), - [sym__max_group] = STATE(2765), - [sym_literal] = STATE(2769), - [sym_map_init_expression] = STATE(2619), - [sym_array_creation] = STATE(2765), - [sym_fixed_array_creation] = STATE(2765), - [sym_selector_expression] = STATE(2765), - [sym_index_expression] = STATE(2765), - [sym_slice_expression] = STATE(2765), - [sym_if_expression] = STATE(2619), - [sym_compile_time_if_expression] = STATE(2619), - [sym_is_expression] = STATE(2765), - [sym_in_expression] = STATE(2765), - [sym_enum_fetch] = STATE(2765), - [sym_match_expression] = STATE(2619), - [sym_match_arms] = STATE(4574), - [sym_match_arm] = STATE(2132), - [sym_match_expression_list] = STATE(4087), - [sym_match_arm_type] = STATE(3795), - [sym_match_else_arm_clause] = STATE(2132), - [sym_select_expression] = STATE(2619), - [sym_lock_expression] = STATE(2619), - [sym_unsafe_expression] = STATE(2619), - [sym_sql_expression] = STATE(2619), - [sym_c_string_literal] = STATE(2660), - [sym_raw_string_literal] = STATE(2660), - [sym_interpreted_string_literal] = STATE(2660), - [sym_mutability_modifiers] = STATE(567), - [sym_plain_type] = STATE(3784), - [sym__plain_type_without_special] = STATE(2302), - [sym_anon_struct_type] = STATE(2303), - [sym_multi_return_type] = STATE(2302), - [sym_result_type] = STATE(2302), - [sym_option_type] = STATE(2302), - [sym_qualified_type] = STATE(3541), - [sym_fixed_array_type] = STATE(2303), - [sym_array_type] = STATE(2303), - [sym_pointer_type] = STATE(2303), - [sym_wrong_pointer_type] = STATE(2303), - [sym_map_type] = STATE(2303), - [sym_channel_type] = STATE(2303), - [sym_shared_type] = STATE(2303), - [sym_thread_type] = STATE(2303), - [sym_atomic_type] = STATE(2303), - [sym_generic_type] = STATE(2303), - [sym_function_type] = STATE(2303), - [sym__definite_range] = STATE(3781), - [aux_sym_match_arms_repeat1] = STATE(184), - [sym_identifier] = ACTIONS(1079), - [anon_sym_SLASH_SLASH] = ACTIONS(3), - [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1081), - [anon_sym_LBRACE] = ACTIONS(1083), - [anon_sym_RBRACE] = ACTIONS(1189), - [anon_sym_LPAREN] = ACTIONS(1087), - [anon_sym_fn] = ACTIONS(1089), - [anon_sym_PLUS] = ACTIONS(1091), - [anon_sym_DASH] = ACTIONS(1091), - [anon_sym_STAR] = ACTIONS(1093), - [anon_sym_struct] = ACTIONS(1095), - [anon_sym_mut] = ACTIONS(41), - [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(1097), - [anon_sym_go] = ACTIONS(1099), - [anon_sym_spawn] = ACTIONS(1101), - [anon_sym_json_DOTdecode] = ACTIONS(1103), - [anon_sym_LBRACK2] = ACTIONS(1105), - [anon_sym_TILDE] = ACTIONS(1091), - [anon_sym_CARET] = ACTIONS(1091), - [anon_sym_AMP] = ACTIONS(1107), - [anon_sym_LT_DASH] = ACTIONS(1109), - [sym_none] = ACTIONS(1111), - [sym_true] = ACTIONS(1111), - [sym_false] = ACTIONS(1111), - [sym_nil] = ACTIONS(1111), - [anon_sym_if] = ACTIONS(1113), - [anon_sym_else] = ACTIONS(1115), - [anon_sym_DOLLARif] = ACTIONS(1117), - [anon_sym_match] = ACTIONS(1119), - [anon_sym_select] = ACTIONS(1121), - [anon_sym_lock] = ACTIONS(1123), - [anon_sym_rlock] = ACTIONS(1123), - [anon_sym_unsafe] = ACTIONS(1125), - [anon_sym_sql] = ACTIONS(1127), - [sym_int_literal] = ACTIONS(1111), - [sym_float_literal] = ACTIONS(1129), - [sym_rune_literal] = ACTIONS(1129), - [sym_pseudo_compile_time_identifier] = ACTIONS(1131), - [anon_sym_shared] = ACTIONS(83), - [anon_sym_map_LBRACK] = ACTIONS(85), - [anon_sym_chan] = ACTIONS(87), - [anon_sym_thread] = ACTIONS(89), - [anon_sym_atomic] = ACTIONS(91), - [sym___double_quote] = ACTIONS(1133), - [sym___single_quote] = ACTIONS(1135), - [sym___c_double_quote] = ACTIONS(1137), - [sym___c_single_quote] = ACTIONS(1139), - [sym___r_double_quote] = ACTIONS(1141), - [sym___r_single_quote] = ACTIONS(1143), - }, - [175] = { - [sym_line_comment] = STATE(175), - [sym_block_comment] = STATE(175), - [sym_reference_expression] = STATE(4365), - [sym_type_reference_expression] = STATE(990), - [sym_plain_type] = STATE(1011), - [sym__plain_type_without_special] = STATE(1020), - [sym_anon_struct_type] = STATE(1019), - [sym_multi_return_type] = STATE(1020), - [sym_result_type] = STATE(1020), - [sym_option_type] = STATE(1020), - [sym_qualified_type] = STATE(990), - [sym_fixed_array_type] = STATE(1019), - [sym_array_type] = STATE(1019), - [sym_pointer_type] = STATE(1019), - [sym_wrong_pointer_type] = STATE(1019), - [sym_map_type] = STATE(1019), - [sym_channel_type] = STATE(1019), - [sym_shared_type] = STATE(1019), - [sym_thread_type] = STATE(1019), - [sym_atomic_type] = STATE(1019), - [sym_generic_type] = STATE(1019), - [sym_function_type] = STATE(1019), - [ts_builtin_sym_end] = ACTIONS(625), - [sym_identifier] = ACTIONS(1191), - [anon_sym_LF] = ACTIONS(627), - [anon_sym_CR] = ACTIONS(627), - [anon_sym_CR_LF] = ACTIONS(627), - [anon_sym_SLASH_SLASH] = ACTIONS(497), - [anon_sym_SLASH_STAR] = ACTIONS(499), - [anon_sym_DOT] = ACTIONS(627), - [anon_sym_as] = ACTIONS(627), - [anon_sym_LBRACE] = ACTIONS(627), - [anon_sym_COMMA] = ACTIONS(627), - [anon_sym_const] = ACTIONS(627), - [anon_sym_LPAREN] = ACTIONS(1193), - [anon_sym___global] = ACTIONS(627), - [anon_sym_type] = ACTIONS(627), - [anon_sym_PIPE] = ACTIONS(627), - [anon_sym_fn] = ACTIONS(1195), - [anon_sym_PLUS] = ACTIONS(627), - [anon_sym_DASH] = ACTIONS(627), - [anon_sym_STAR] = ACTIONS(1197), - [anon_sym_SLASH] = ACTIONS(627), - [anon_sym_PERCENT] = ACTIONS(627), - [anon_sym_LT] = ACTIONS(627), - [anon_sym_GT] = ACTIONS(627), - [anon_sym_EQ_EQ] = ACTIONS(627), - [anon_sym_BANG_EQ] = ACTIONS(627), - [anon_sym_LT_EQ] = ACTIONS(627), - [anon_sym_GT_EQ] = ACTIONS(627), - [anon_sym_LBRACK] = ACTIONS(625), - [anon_sym_struct] = ACTIONS(1199), - [anon_sym_union] = ACTIONS(627), - [anon_sym_pub] = ACTIONS(627), - [anon_sym_mut] = ACTIONS(627), - [anon_sym_enum] = ACTIONS(627), - [anon_sym_interface] = ACTIONS(627), - [anon_sym_PLUS_PLUS] = ACTIONS(627), - [anon_sym_DASH_DASH] = ACTIONS(627), - [anon_sym_QMARK] = ACTIONS(1201), - [anon_sym_BANG] = ACTIONS(1203), - [anon_sym_go] = ACTIONS(627), - [anon_sym_spawn] = ACTIONS(627), - [anon_sym_json_DOTdecode] = ACTIONS(627), - [anon_sym_LBRACK2] = ACTIONS(1205), - [anon_sym_TILDE] = ACTIONS(627), - [anon_sym_CARET] = ACTIONS(627), - [anon_sym_AMP] = ACTIONS(1207), - [anon_sym_LT_DASH] = ACTIONS(627), - [anon_sym_LT_LT] = ACTIONS(627), - [anon_sym_GT_GT] = ACTIONS(627), - [anon_sym_GT_GT_GT] = ACTIONS(627), - [anon_sym_AMP_CARET] = ACTIONS(627), - [anon_sym_AMP_AMP] = ACTIONS(627), - [anon_sym_PIPE_PIPE] = ACTIONS(627), - [anon_sym_or] = ACTIONS(627), - [sym_none] = ACTIONS(627), - [sym_true] = ACTIONS(627), - [sym_false] = ACTIONS(627), - [sym_nil] = ACTIONS(627), - [anon_sym_QMARK_DOT] = ACTIONS(627), - [anon_sym_POUND_LBRACK] = ACTIONS(627), - [anon_sym_if] = ACTIONS(627), - [anon_sym_DOLLARif] = ACTIONS(627), - [anon_sym_is] = ACTIONS(627), - [anon_sym_BANGis] = ACTIONS(627), - [anon_sym_in] = ACTIONS(627), - [anon_sym_BANGin] = ACTIONS(627), - [anon_sym_match] = ACTIONS(627), - [anon_sym_select] = ACTIONS(627), - [anon_sym_lock] = ACTIONS(627), - [anon_sym_rlock] = ACTIONS(627), - [anon_sym_unsafe] = ACTIONS(627), - [anon_sym_sql] = ACTIONS(627), - [sym_int_literal] = ACTIONS(627), - [sym_float_literal] = ACTIONS(627), - [sym_rune_literal] = ACTIONS(627), - [sym_pseudo_compile_time_identifier] = ACTIONS(627), - [anon_sym_shared] = ACTIONS(1209), - [anon_sym_map_LBRACK] = ACTIONS(1211), - [anon_sym_chan] = ACTIONS(1213), - [anon_sym_thread] = ACTIONS(1215), - [anon_sym_atomic] = ACTIONS(1217), - [anon_sym_assert] = ACTIONS(627), - [anon_sym_defer] = ACTIONS(627), - [anon_sym_goto] = ACTIONS(627), - [anon_sym_break] = ACTIONS(627), - [anon_sym_continue] = ACTIONS(627), - [anon_sym_return] = ACTIONS(627), - [anon_sym_DOLLARfor] = ACTIONS(627), - [anon_sym_for] = ACTIONS(627), - [anon_sym_POUND] = ACTIONS(627), - [anon_sym_asm] = ACTIONS(627), - [anon_sym_AT_LBRACK] = ACTIONS(627), - [sym___double_quote] = ACTIONS(627), - [sym___single_quote] = ACTIONS(627), - [sym___c_double_quote] = ACTIONS(627), - [sym___c_single_quote] = ACTIONS(627), - [sym___r_double_quote] = ACTIONS(627), - [sym___r_single_quote] = ACTIONS(627), - }, - [176] = { - [sym_line_comment] = STATE(176), - [sym_block_comment] = STATE(176), - [sym__expression] = STATE(1133), - [sym__expression_without_blocks] = STATE(1141), - [sym__expression_with_blocks] = STATE(1141), - [sym_inc_expression] = STATE(1140), - [sym_dec_expression] = STATE(1140), - [sym_or_block_expression] = STATE(1140), - [sym_option_propagation_expression] = STATE(1140), - [sym_result_propagation_expression] = STATE(1140), - [sym_anon_struct_value_expression] = STATE(1199), - [sym_go_expression] = STATE(1140), - [sym_spawn_expression] = STATE(1140), - [sym_parenthesized_expression] = STATE(1140), - [sym_call_expression] = STATE(1140), - [sym_type_initializer] = STATE(1199), - [sym_element_list] = STATE(4644), - [sym_short_element_list] = STATE(4642), - [sym_keyed_element] = STATE(3398), - [sym_function_literal] = STATE(1140), - [sym_reference_expression] = STATE(1185), - [sym_type_reference_expression] = STATE(3541), - [sym_unary_expression] = STATE(1140), - [sym_receive_expression] = STATE(1140), - [sym_binary_expression] = STATE(1140), - [sym_as_type_cast_expression] = STATE(1140), - [sym__max_group] = STATE(1140), - [sym_literal] = STATE(1146), - [sym_spread_expression] = STATE(3398), - [sym_map_init_expression] = STATE(1199), - [sym_array_creation] = STATE(1140), - [sym_fixed_array_creation] = STATE(1140), - [sym_selector_expression] = STATE(1140), - [sym_index_expression] = STATE(1140), - [sym_slice_expression] = STATE(1140), - [sym_if_expression] = STATE(1199), - [sym_compile_time_if_expression] = STATE(1199), - [sym_is_expression] = STATE(1140), - [sym_in_expression] = STATE(1140), - [sym_enum_fetch] = STATE(1140), - [sym_match_expression] = STATE(1199), - [sym_select_expression] = STATE(1199), - [sym_lock_expression] = STATE(1199), - [sym_unsafe_expression] = STATE(1199), - [sym_sql_expression] = STATE(1199), - [sym_c_string_literal] = STATE(1147), - [sym_raw_string_literal] = STATE(1147), - [sym_interpreted_string_literal] = STATE(1147), - [sym_mutability_modifiers] = STATE(638), - [sym_plain_type] = STATE(4234), - [sym__plain_type_without_special] = STATE(2302), - [sym_anon_struct_type] = STATE(2303), - [sym_multi_return_type] = STATE(2302), - [sym_result_type] = STATE(2302), - [sym_option_type] = STATE(2302), - [sym_qualified_type] = STATE(3541), - [sym_fixed_array_type] = STATE(2303), - [sym_array_type] = STATE(2303), - [sym_pointer_type] = STATE(2303), - [sym_wrong_pointer_type] = STATE(2303), - [sym_map_type] = STATE(2303), - [sym_channel_type] = STATE(2303), - [sym_shared_type] = STATE(2303), - [sym_thread_type] = STATE(2303), - [sym_atomic_type] = STATE(2303), - [sym_generic_type] = STATE(2303), - [sym_function_type] = STATE(2303), - [aux_sym_element_list_repeat1] = STATE(3400), - [aux_sym_short_element_list_repeat1] = STATE(374), - [sym_identifier] = ACTIONS(1071), + [173] = { + [sym_line_comment] = STATE(173), + [sym_block_comment] = STATE(173), + [sym__expression] = STATE(1126), + [sym__expression_without_blocks] = STATE(1210), + [sym__expression_with_blocks] = STATE(1210), + [sym_inc_expression] = STATE(1211), + [sym_dec_expression] = STATE(1211), + [sym_or_block_expression] = STATE(1211), + [sym_option_propagation_expression] = STATE(1211), + [sym_result_propagation_expression] = STATE(1211), + [sym_anon_struct_value_expression] = STATE(1212), + [sym_go_expression] = STATE(1211), + [sym_spawn_expression] = STATE(1211), + [sym_parenthesized_expression] = STATE(1211), + [sym_call_expression] = STATE(1211), + [sym_short_lambda] = STATE(4465), + [sym_argument] = STATE(1907), + [sym_type_initializer] = STATE(1212), + [sym_keyed_element] = STATE(1904), + [sym_function_literal] = STATE(1211), + [sym_reference_expression] = STATE(1252), + [sym_type_reference_expression] = STATE(3460), + [sym_unary_expression] = STATE(1211), + [sym_receive_expression] = STATE(1211), + [sym_binary_expression] = STATE(1211), + [sym_as_type_cast_expression] = STATE(1211), + [sym__max_group] = STATE(1211), + [sym_literal] = STATE(1209), + [sym_spread_expression] = STATE(1904), + [sym_map_init_expression] = STATE(1212), + [sym_array_creation] = STATE(1211), + [sym_fixed_array_creation] = STATE(1211), + [sym_selector_expression] = STATE(1211), + [sym_index_expression] = STATE(1211), + [sym_slice_expression] = STATE(1211), + [sym_if_expression] = STATE(1212), + [sym_compile_time_if_expression] = STATE(1212), + [sym_is_expression] = STATE(1211), + [sym_in_expression] = STATE(1211), + [sym_enum_fetch] = STATE(1211), + [sym_match_expression] = STATE(1212), + [sym_select_expression] = STATE(1212), + [sym_lock_expression] = STATE(1212), + [sym_unsafe_expression] = STATE(1212), + [sym_sql_expression] = STATE(1212), + [sym_c_string_literal] = STATE(1201), + [sym_raw_string_literal] = STATE(1201), + [sym_interpreted_string_literal] = STATE(1201), + [sym_mutability_modifiers] = STATE(769), + [sym_mutable_expression] = STATE(1904), + [sym_plain_type] = STATE(4123), + [sym__plain_type_without_special] = STATE(2360), + [sym_anon_struct_type] = STATE(2362), + [sym_multi_return_type] = STATE(2360), + [sym_result_type] = STATE(2360), + [sym_option_type] = STATE(2360), + [sym_qualified_type] = STATE(3460), + [sym_fixed_array_type] = STATE(2362), + [sym_array_type] = STATE(2362), + [sym_pointer_type] = STATE(2362), + [sym_wrong_pointer_type] = STATE(2362), + [sym_map_type] = STATE(2362), + [sym_channel_type] = STATE(2362), + [sym_shared_type] = STATE(2362), + [sym_thread_type] = STATE(2362), + [sym_atomic_type] = STATE(2362), + [sym_generic_type] = STATE(2362), + [sym_function_type] = STATE(2362), + [aux_sym_argument_list_repeat1] = STATE(198), + [sym_identifier] = ACTIONS(1139), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), [anon_sym_DOT] = ACTIONS(631), [anon_sym_LBRACE] = ACTIONS(633), - [anon_sym_RBRACE] = ACTIONS(1219), [anon_sym_LPAREN] = ACTIONS(637), + [anon_sym_RPAREN] = ACTIONS(1187), + [anon_sym_PIPE] = ACTIONS(1143), [anon_sym_fn] = ACTIONS(641), [anon_sym_PLUS] = ACTIONS(643), [anon_sym_DASH] = ACTIONS(643), [anon_sym_STAR] = ACTIONS(645), - [anon_sym_DOT_DOT_DOT] = ACTIONS(647), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1145), [anon_sym_struct] = ACTIONS(649), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), @@ -43001,210 +42652,89 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym___r_double_quote] = ACTIONS(697), [sym___r_single_quote] = ACTIONS(699), }, - [177] = { - [sym_line_comment] = STATE(177), - [sym_block_comment] = STATE(177), - [sym__expression] = STATE(2611), - [sym__expression_without_blocks] = STATE(2579), - [sym__expression_with_blocks] = STATE(2625), - [sym_inc_expression] = STATE(2765), - [sym_dec_expression] = STATE(2765), - [sym_or_block_expression] = STATE(2765), - [sym_option_propagation_expression] = STATE(2765), - [sym_result_propagation_expression] = STATE(2765), - [sym_anon_struct_value_expression] = STATE(2619), - [sym_go_expression] = STATE(2765), - [sym_spawn_expression] = STATE(2765), - [sym_parenthesized_expression] = STATE(2765), - [sym_call_expression] = STATE(2765), - [sym_type_initializer] = STATE(2619), - [sym_function_literal] = STATE(2765), - [sym_reference_expression] = STATE(2764), - [sym_type_reference_expression] = STATE(3541), - [sym_unary_expression] = STATE(2765), - [sym_receive_expression] = STATE(2765), - [sym_binary_expression] = STATE(2765), - [sym_as_type_cast_expression] = STATE(2765), - [sym__max_group] = STATE(2765), - [sym_literal] = STATE(2769), - [sym_map_init_expression] = STATE(2619), - [sym_array_creation] = STATE(2765), - [sym_fixed_array_creation] = STATE(2765), - [sym_selector_expression] = STATE(2765), - [sym_index_expression] = STATE(2765), - [sym_slice_expression] = STATE(2765), - [sym_if_expression] = STATE(2619), - [sym_compile_time_if_expression] = STATE(2619), - [sym_is_expression] = STATE(2765), - [sym_in_expression] = STATE(2765), - [sym_enum_fetch] = STATE(2765), - [sym_match_expression] = STATE(2619), - [sym_match_arm] = STATE(2132), - [sym_match_expression_list] = STATE(4087), - [sym_match_arm_type] = STATE(3795), - [sym_match_else_arm_clause] = STATE(2132), - [sym_select_expression] = STATE(2619), - [sym_lock_expression] = STATE(2619), - [sym_unsafe_expression] = STATE(2619), - [sym_sql_expression] = STATE(2619), - [sym_c_string_literal] = STATE(2660), - [sym_raw_string_literal] = STATE(2660), - [sym_interpreted_string_literal] = STATE(2660), - [sym_mutability_modifiers] = STATE(567), - [sym_plain_type] = STATE(3784), - [sym__plain_type_without_special] = STATE(2302), - [sym_anon_struct_type] = STATE(2303), - [sym_multi_return_type] = STATE(2302), - [sym_result_type] = STATE(2302), - [sym_option_type] = STATE(2302), - [sym_qualified_type] = STATE(3541), - [sym_fixed_array_type] = STATE(2303), - [sym_array_type] = STATE(2303), - [sym_pointer_type] = STATE(2303), - [sym_wrong_pointer_type] = STATE(2303), - [sym_map_type] = STATE(2303), - [sym_channel_type] = STATE(2303), - [sym_shared_type] = STATE(2303), - [sym_thread_type] = STATE(2303), - [sym_atomic_type] = STATE(2303), - [sym_generic_type] = STATE(2303), - [sym_function_type] = STATE(2303), - [sym__definite_range] = STATE(3781), - [aux_sym_match_arms_repeat1] = STATE(177), - [sym_identifier] = ACTIONS(1221), - [anon_sym_SLASH_SLASH] = ACTIONS(3), - [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1224), - [anon_sym_LBRACE] = ACTIONS(1227), - [anon_sym_RBRACE] = ACTIONS(1230), - [anon_sym_LPAREN] = ACTIONS(1232), - [anon_sym_fn] = ACTIONS(1235), - [anon_sym_PLUS] = ACTIONS(1238), - [anon_sym_DASH] = ACTIONS(1238), - [anon_sym_STAR] = ACTIONS(1241), - [anon_sym_struct] = ACTIONS(1244), - [anon_sym_mut] = ACTIONS(1247), - [anon_sym_QMARK] = ACTIONS(1250), - [anon_sym_BANG] = ACTIONS(1253), - [anon_sym_go] = ACTIONS(1256), - [anon_sym_spawn] = ACTIONS(1259), - [anon_sym_json_DOTdecode] = ACTIONS(1262), - [anon_sym_LBRACK2] = ACTIONS(1265), - [anon_sym_TILDE] = ACTIONS(1238), - [anon_sym_CARET] = ACTIONS(1238), - [anon_sym_AMP] = ACTIONS(1268), - [anon_sym_LT_DASH] = ACTIONS(1271), - [sym_none] = ACTIONS(1274), - [sym_true] = ACTIONS(1274), - [sym_false] = ACTIONS(1274), - [sym_nil] = ACTIONS(1274), - [anon_sym_if] = ACTIONS(1277), - [anon_sym_else] = ACTIONS(1280), - [anon_sym_DOLLARif] = ACTIONS(1283), - [anon_sym_match] = ACTIONS(1286), - [anon_sym_select] = ACTIONS(1289), - [anon_sym_lock] = ACTIONS(1292), - [anon_sym_rlock] = ACTIONS(1292), - [anon_sym_unsafe] = ACTIONS(1295), - [anon_sym_sql] = ACTIONS(1298), - [sym_int_literal] = ACTIONS(1274), - [sym_float_literal] = ACTIONS(1301), - [sym_rune_literal] = ACTIONS(1301), - [sym_pseudo_compile_time_identifier] = ACTIONS(1304), - [anon_sym_shared] = ACTIONS(1307), - [anon_sym_map_LBRACK] = ACTIONS(1310), - [anon_sym_chan] = ACTIONS(1313), - [anon_sym_thread] = ACTIONS(1316), - [anon_sym_atomic] = ACTIONS(1319), - [sym___double_quote] = ACTIONS(1322), - [sym___single_quote] = ACTIONS(1325), - [sym___c_double_quote] = ACTIONS(1328), - [sym___c_single_quote] = ACTIONS(1331), - [sym___r_double_quote] = ACTIONS(1334), - [sym___r_single_quote] = ACTIONS(1337), - }, - [178] = { - [sym_line_comment] = STATE(178), - [sym_block_comment] = STATE(178), - [sym__expression] = STATE(1133), - [sym__expression_without_blocks] = STATE(1141), - [sym__expression_with_blocks] = STATE(1141), - [sym_inc_expression] = STATE(1140), - [sym_dec_expression] = STATE(1140), - [sym_or_block_expression] = STATE(1140), - [sym_option_propagation_expression] = STATE(1140), - [sym_result_propagation_expression] = STATE(1140), - [sym_anon_struct_value_expression] = STATE(1199), - [sym_go_expression] = STATE(1140), - [sym_spawn_expression] = STATE(1140), - [sym_parenthesized_expression] = STATE(1140), - [sym_call_expression] = STATE(1140), - [sym_type_initializer] = STATE(1199), - [sym_element_list] = STATE(4596), - [sym_short_element_list] = STATE(4593), - [sym_keyed_element] = STATE(3398), - [sym_function_literal] = STATE(1140), - [sym_reference_expression] = STATE(1185), - [sym_type_reference_expression] = STATE(3541), - [sym_unary_expression] = STATE(1140), - [sym_receive_expression] = STATE(1140), - [sym_binary_expression] = STATE(1140), - [sym_as_type_cast_expression] = STATE(1140), - [sym__max_group] = STATE(1140), - [sym_literal] = STATE(1146), - [sym_spread_expression] = STATE(3398), - [sym_map_init_expression] = STATE(1199), - [sym_array_creation] = STATE(1140), - [sym_fixed_array_creation] = STATE(1140), - [sym_selector_expression] = STATE(1140), - [sym_index_expression] = STATE(1140), - [sym_slice_expression] = STATE(1140), - [sym_if_expression] = STATE(1199), - [sym_compile_time_if_expression] = STATE(1199), - [sym_is_expression] = STATE(1140), - [sym_in_expression] = STATE(1140), - [sym_enum_fetch] = STATE(1140), - [sym_match_expression] = STATE(1199), - [sym_select_expression] = STATE(1199), - [sym_lock_expression] = STATE(1199), - [sym_unsafe_expression] = STATE(1199), - [sym_sql_expression] = STATE(1199), - [sym_c_string_literal] = STATE(1147), - [sym_raw_string_literal] = STATE(1147), - [sym_interpreted_string_literal] = STATE(1147), - [sym_mutability_modifiers] = STATE(638), - [sym_plain_type] = STATE(4234), - [sym__plain_type_without_special] = STATE(2302), - [sym_anon_struct_type] = STATE(2303), - [sym_multi_return_type] = STATE(2302), - [sym_result_type] = STATE(2302), - [sym_option_type] = STATE(2302), - [sym_qualified_type] = STATE(3541), - [sym_fixed_array_type] = STATE(2303), - [sym_array_type] = STATE(2303), - [sym_pointer_type] = STATE(2303), - [sym_wrong_pointer_type] = STATE(2303), - [sym_map_type] = STATE(2303), - [sym_channel_type] = STATE(2303), - [sym_shared_type] = STATE(2303), - [sym_thread_type] = STATE(2303), - [sym_atomic_type] = STATE(2303), - [sym_generic_type] = STATE(2303), - [sym_function_type] = STATE(2303), - [aux_sym_element_list_repeat1] = STATE(3400), - [aux_sym_short_element_list_repeat1] = STATE(374), - [sym_identifier] = ACTIONS(1071), + [174] = { + [sym_line_comment] = STATE(174), + [sym_block_comment] = STATE(174), + [sym__expression] = STATE(1126), + [sym__expression_without_blocks] = STATE(1210), + [sym__expression_with_blocks] = STATE(1210), + [sym_inc_expression] = STATE(1211), + [sym_dec_expression] = STATE(1211), + [sym_or_block_expression] = STATE(1211), + [sym_option_propagation_expression] = STATE(1211), + [sym_result_propagation_expression] = STATE(1211), + [sym_anon_struct_value_expression] = STATE(1212), + [sym_go_expression] = STATE(1211), + [sym_spawn_expression] = STATE(1211), + [sym_parenthesized_expression] = STATE(1211), + [sym_call_expression] = STATE(1211), + [sym_short_lambda] = STATE(4527), + [sym_argument] = STATE(1907), + [sym_type_initializer] = STATE(1212), + [sym_keyed_element] = STATE(1904), + [sym_function_literal] = STATE(1211), + [sym_reference_expression] = STATE(1252), + [sym_type_reference_expression] = STATE(3460), + [sym_unary_expression] = STATE(1211), + [sym_receive_expression] = STATE(1211), + [sym_binary_expression] = STATE(1211), + [sym_as_type_cast_expression] = STATE(1211), + [sym__max_group] = STATE(1211), + [sym_literal] = STATE(1209), + [sym_spread_expression] = STATE(1904), + [sym_map_init_expression] = STATE(1212), + [sym_array_creation] = STATE(1211), + [sym_fixed_array_creation] = STATE(1211), + [sym_selector_expression] = STATE(1211), + [sym_index_expression] = STATE(1211), + [sym_slice_expression] = STATE(1211), + [sym_if_expression] = STATE(1212), + [sym_compile_time_if_expression] = STATE(1212), + [sym_is_expression] = STATE(1211), + [sym_in_expression] = STATE(1211), + [sym_enum_fetch] = STATE(1211), + [sym_match_expression] = STATE(1212), + [sym_select_expression] = STATE(1212), + [sym_lock_expression] = STATE(1212), + [sym_unsafe_expression] = STATE(1212), + [sym_sql_expression] = STATE(1212), + [sym_c_string_literal] = STATE(1201), + [sym_raw_string_literal] = STATE(1201), + [sym_interpreted_string_literal] = STATE(1201), + [sym_mutability_modifiers] = STATE(769), + [sym_mutable_expression] = STATE(1904), + [sym_plain_type] = STATE(4123), + [sym__plain_type_without_special] = STATE(2360), + [sym_anon_struct_type] = STATE(2362), + [sym_multi_return_type] = STATE(2360), + [sym_result_type] = STATE(2360), + [sym_option_type] = STATE(2360), + [sym_qualified_type] = STATE(3460), + [sym_fixed_array_type] = STATE(2362), + [sym_array_type] = STATE(2362), + [sym_pointer_type] = STATE(2362), + [sym_wrong_pointer_type] = STATE(2362), + [sym_map_type] = STATE(2362), + [sym_channel_type] = STATE(2362), + [sym_shared_type] = STATE(2362), + [sym_thread_type] = STATE(2362), + [sym_atomic_type] = STATE(2362), + [sym_generic_type] = STATE(2362), + [sym_function_type] = STATE(2362), + [aux_sym_argument_list_repeat1] = STATE(202), + [sym_identifier] = ACTIONS(1139), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), [anon_sym_DOT] = ACTIONS(631), [anon_sym_LBRACE] = ACTIONS(633), - [anon_sym_RBRACE] = ACTIONS(1340), [anon_sym_LPAREN] = ACTIONS(637), + [anon_sym_RPAREN] = ACTIONS(1189), + [anon_sym_PIPE] = ACTIONS(1143), [anon_sym_fn] = ACTIONS(641), [anon_sym_PLUS] = ACTIONS(643), [anon_sym_DASH] = ACTIONS(643), [anon_sym_STAR] = ACTIONS(645), - [anon_sym_DOT_DOT_DOT] = ACTIONS(647), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1145), [anon_sym_struct] = ACTIONS(649), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), @@ -43245,82 +42775,82 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym___r_double_quote] = ACTIONS(697), [sym___r_single_quote] = ACTIONS(699), }, - [179] = { - [sym_line_comment] = STATE(179), - [sym_block_comment] = STATE(179), - [sym__expression] = STATE(1133), - [sym__expression_without_blocks] = STATE(1141), - [sym__expression_with_blocks] = STATE(1141), - [sym_inc_expression] = STATE(1140), - [sym_dec_expression] = STATE(1140), - [sym_or_block_expression] = STATE(1140), - [sym_option_propagation_expression] = STATE(1140), - [sym_result_propagation_expression] = STATE(1140), - [sym_anon_struct_value_expression] = STATE(1199), - [sym_go_expression] = STATE(1140), - [sym_spawn_expression] = STATE(1140), - [sym_parenthesized_expression] = STATE(1140), - [sym_call_expression] = STATE(1140), - [sym_type_initializer] = STATE(1199), - [sym_element_list] = STATE(4486), - [sym_short_element_list] = STATE(4488), - [sym_keyed_element] = STATE(3398), - [sym_function_literal] = STATE(1140), - [sym_reference_expression] = STATE(1185), - [sym_type_reference_expression] = STATE(3541), - [sym_unary_expression] = STATE(1140), - [sym_receive_expression] = STATE(1140), - [sym_binary_expression] = STATE(1140), - [sym_as_type_cast_expression] = STATE(1140), - [sym__max_group] = STATE(1140), - [sym_literal] = STATE(1146), - [sym_spread_expression] = STATE(3398), - [sym_map_init_expression] = STATE(1199), - [sym_array_creation] = STATE(1140), - [sym_fixed_array_creation] = STATE(1140), - [sym_selector_expression] = STATE(1140), - [sym_index_expression] = STATE(1140), - [sym_slice_expression] = STATE(1140), - [sym_if_expression] = STATE(1199), - [sym_compile_time_if_expression] = STATE(1199), - [sym_is_expression] = STATE(1140), - [sym_in_expression] = STATE(1140), - [sym_enum_fetch] = STATE(1140), - [sym_match_expression] = STATE(1199), - [sym_select_expression] = STATE(1199), - [sym_lock_expression] = STATE(1199), - [sym_unsafe_expression] = STATE(1199), - [sym_sql_expression] = STATE(1199), - [sym_c_string_literal] = STATE(1147), - [sym_raw_string_literal] = STATE(1147), - [sym_interpreted_string_literal] = STATE(1147), - [sym_mutability_modifiers] = STATE(638), - [sym_plain_type] = STATE(4234), - [sym__plain_type_without_special] = STATE(2302), - [sym_anon_struct_type] = STATE(2303), - [sym_multi_return_type] = STATE(2302), - [sym_result_type] = STATE(2302), - [sym_option_type] = STATE(2302), - [sym_qualified_type] = STATE(3541), - [sym_fixed_array_type] = STATE(2303), - [sym_array_type] = STATE(2303), - [sym_pointer_type] = STATE(2303), - [sym_wrong_pointer_type] = STATE(2303), - [sym_map_type] = STATE(2303), - [sym_channel_type] = STATE(2303), - [sym_shared_type] = STATE(2303), - [sym_thread_type] = STATE(2303), - [sym_atomic_type] = STATE(2303), - [sym_generic_type] = STATE(2303), - [sym_function_type] = STATE(2303), - [aux_sym_element_list_repeat1] = STATE(3400), - [aux_sym_short_element_list_repeat1] = STATE(374), - [sym_identifier] = ACTIONS(1071), + [175] = { + [sym_line_comment] = STATE(175), + [sym_block_comment] = STATE(175), + [sym__expression] = STATE(1128), + [sym__expression_without_blocks] = STATE(1210), + [sym__expression_with_blocks] = STATE(1210), + [sym_inc_expression] = STATE(1211), + [sym_dec_expression] = STATE(1211), + [sym_or_block_expression] = STATE(1211), + [sym_option_propagation_expression] = STATE(1211), + [sym_result_propagation_expression] = STATE(1211), + [sym_anon_struct_value_expression] = STATE(1212), + [sym_go_expression] = STATE(1211), + [sym_spawn_expression] = STATE(1211), + [sym_parenthesized_expression] = STATE(1211), + [sym_call_expression] = STATE(1211), + [sym_type_initializer] = STATE(1212), + [sym_element_list] = STATE(4592), + [sym_short_element_list] = STATE(4591), + [sym_keyed_element] = STATE(3387), + [sym_function_literal] = STATE(1211), + [sym_reference_expression] = STATE(1154), + [sym_type_reference_expression] = STATE(3460), + [sym_unary_expression] = STATE(1211), + [sym_receive_expression] = STATE(1211), + [sym_binary_expression] = STATE(1211), + [sym_as_type_cast_expression] = STATE(1211), + [sym__max_group] = STATE(1211), + [sym_literal] = STATE(1209), + [sym_spread_expression] = STATE(3387), + [sym_map_init_expression] = STATE(1212), + [sym_array_creation] = STATE(1211), + [sym_fixed_array_creation] = STATE(1211), + [sym_selector_expression] = STATE(1211), + [sym_index_expression] = STATE(1211), + [sym_slice_expression] = STATE(1211), + [sym_if_expression] = STATE(1212), + [sym_compile_time_if_expression] = STATE(1212), + [sym_is_expression] = STATE(1211), + [sym_in_expression] = STATE(1211), + [sym_enum_fetch] = STATE(1211), + [sym_match_expression] = STATE(1212), + [sym_select_expression] = STATE(1212), + [sym_lock_expression] = STATE(1212), + [sym_unsafe_expression] = STATE(1212), + [sym_sql_expression] = STATE(1212), + [sym_c_string_literal] = STATE(1201), + [sym_raw_string_literal] = STATE(1201), + [sym_interpreted_string_literal] = STATE(1201), + [sym_mutability_modifiers] = STATE(589), + [sym_plain_type] = STATE(4123), + [sym__plain_type_without_special] = STATE(2360), + [sym_anon_struct_type] = STATE(2362), + [sym_multi_return_type] = STATE(2360), + [sym_result_type] = STATE(2360), + [sym_option_type] = STATE(2360), + [sym_qualified_type] = STATE(3460), + [sym_fixed_array_type] = STATE(2362), + [sym_array_type] = STATE(2362), + [sym_pointer_type] = STATE(2362), + [sym_wrong_pointer_type] = STATE(2362), + [sym_map_type] = STATE(2362), + [sym_channel_type] = STATE(2362), + [sym_shared_type] = STATE(2362), + [sym_thread_type] = STATE(2362), + [sym_atomic_type] = STATE(2362), + [sym_generic_type] = STATE(2362), + [sym_function_type] = STATE(2362), + [aux_sym_element_list_repeat1] = STATE(3413), + [aux_sym_short_element_list_repeat1] = STATE(375), + [sym_identifier] = ACTIONS(1139), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), [anon_sym_DOT] = ACTIONS(631), [anon_sym_LBRACE] = ACTIONS(633), - [anon_sym_RBRACE] = ACTIONS(1342), + [anon_sym_RBRACE] = ACTIONS(1191), [anon_sym_LPAREN] = ACTIONS(637), [anon_sym_fn] = ACTIONS(641), [anon_sym_PLUS] = ACTIONS(643), @@ -43367,82 +42897,82 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym___r_double_quote] = ACTIONS(697), [sym___r_single_quote] = ACTIONS(699), }, - [180] = { - [sym_line_comment] = STATE(180), - [sym_block_comment] = STATE(180), - [sym__expression] = STATE(1133), - [sym__expression_without_blocks] = STATE(1141), - [sym__expression_with_blocks] = STATE(1141), - [sym_inc_expression] = STATE(1140), - [sym_dec_expression] = STATE(1140), - [sym_or_block_expression] = STATE(1140), - [sym_option_propagation_expression] = STATE(1140), - [sym_result_propagation_expression] = STATE(1140), - [sym_anon_struct_value_expression] = STATE(1199), - [sym_go_expression] = STATE(1140), - [sym_spawn_expression] = STATE(1140), - [sym_parenthesized_expression] = STATE(1140), - [sym_call_expression] = STATE(1140), - [sym_type_initializer] = STATE(1199), - [sym_element_list] = STATE(4602), - [sym_short_element_list] = STATE(4606), - [sym_keyed_element] = STATE(3398), - [sym_function_literal] = STATE(1140), - [sym_reference_expression] = STATE(1185), - [sym_type_reference_expression] = STATE(3541), - [sym_unary_expression] = STATE(1140), - [sym_receive_expression] = STATE(1140), - [sym_binary_expression] = STATE(1140), - [sym_as_type_cast_expression] = STATE(1140), - [sym__max_group] = STATE(1140), - [sym_literal] = STATE(1146), - [sym_spread_expression] = STATE(3398), - [sym_map_init_expression] = STATE(1199), - [sym_array_creation] = STATE(1140), - [sym_fixed_array_creation] = STATE(1140), - [sym_selector_expression] = STATE(1140), - [sym_index_expression] = STATE(1140), - [sym_slice_expression] = STATE(1140), - [sym_if_expression] = STATE(1199), - [sym_compile_time_if_expression] = STATE(1199), - [sym_is_expression] = STATE(1140), - [sym_in_expression] = STATE(1140), - [sym_enum_fetch] = STATE(1140), - [sym_match_expression] = STATE(1199), - [sym_select_expression] = STATE(1199), - [sym_lock_expression] = STATE(1199), - [sym_unsafe_expression] = STATE(1199), - [sym_sql_expression] = STATE(1199), - [sym_c_string_literal] = STATE(1147), - [sym_raw_string_literal] = STATE(1147), - [sym_interpreted_string_literal] = STATE(1147), - [sym_mutability_modifiers] = STATE(638), - [sym_plain_type] = STATE(4234), - [sym__plain_type_without_special] = STATE(2302), - [sym_anon_struct_type] = STATE(2303), - [sym_multi_return_type] = STATE(2302), - [sym_result_type] = STATE(2302), - [sym_option_type] = STATE(2302), - [sym_qualified_type] = STATE(3541), - [sym_fixed_array_type] = STATE(2303), - [sym_array_type] = STATE(2303), - [sym_pointer_type] = STATE(2303), - [sym_wrong_pointer_type] = STATE(2303), - [sym_map_type] = STATE(2303), - [sym_channel_type] = STATE(2303), - [sym_shared_type] = STATE(2303), - [sym_thread_type] = STATE(2303), - [sym_atomic_type] = STATE(2303), - [sym_generic_type] = STATE(2303), - [sym_function_type] = STATE(2303), - [aux_sym_element_list_repeat1] = STATE(3400), - [aux_sym_short_element_list_repeat1] = STATE(374), - [sym_identifier] = ACTIONS(1071), + [176] = { + [sym_line_comment] = STATE(176), + [sym_block_comment] = STATE(176), + [sym__expression] = STATE(1128), + [sym__expression_without_blocks] = STATE(1210), + [sym__expression_with_blocks] = STATE(1210), + [sym_inc_expression] = STATE(1211), + [sym_dec_expression] = STATE(1211), + [sym_or_block_expression] = STATE(1211), + [sym_option_propagation_expression] = STATE(1211), + [sym_result_propagation_expression] = STATE(1211), + [sym_anon_struct_value_expression] = STATE(1212), + [sym_go_expression] = STATE(1211), + [sym_spawn_expression] = STATE(1211), + [sym_parenthesized_expression] = STATE(1211), + [sym_call_expression] = STATE(1211), + [sym_type_initializer] = STATE(1212), + [sym_element_list] = STATE(4324), + [sym_short_element_list] = STATE(4323), + [sym_keyed_element] = STATE(3387), + [sym_function_literal] = STATE(1211), + [sym_reference_expression] = STATE(1154), + [sym_type_reference_expression] = STATE(3460), + [sym_unary_expression] = STATE(1211), + [sym_receive_expression] = STATE(1211), + [sym_binary_expression] = STATE(1211), + [sym_as_type_cast_expression] = STATE(1211), + [sym__max_group] = STATE(1211), + [sym_literal] = STATE(1209), + [sym_spread_expression] = STATE(3387), + [sym_map_init_expression] = STATE(1212), + [sym_array_creation] = STATE(1211), + [sym_fixed_array_creation] = STATE(1211), + [sym_selector_expression] = STATE(1211), + [sym_index_expression] = STATE(1211), + [sym_slice_expression] = STATE(1211), + [sym_if_expression] = STATE(1212), + [sym_compile_time_if_expression] = STATE(1212), + [sym_is_expression] = STATE(1211), + [sym_in_expression] = STATE(1211), + [sym_enum_fetch] = STATE(1211), + [sym_match_expression] = STATE(1212), + [sym_select_expression] = STATE(1212), + [sym_lock_expression] = STATE(1212), + [sym_unsafe_expression] = STATE(1212), + [sym_sql_expression] = STATE(1212), + [sym_c_string_literal] = STATE(1201), + [sym_raw_string_literal] = STATE(1201), + [sym_interpreted_string_literal] = STATE(1201), + [sym_mutability_modifiers] = STATE(589), + [sym_plain_type] = STATE(4123), + [sym__plain_type_without_special] = STATE(2360), + [sym_anon_struct_type] = STATE(2362), + [sym_multi_return_type] = STATE(2360), + [sym_result_type] = STATE(2360), + [sym_option_type] = STATE(2360), + [sym_qualified_type] = STATE(3460), + [sym_fixed_array_type] = STATE(2362), + [sym_array_type] = STATE(2362), + [sym_pointer_type] = STATE(2362), + [sym_wrong_pointer_type] = STATE(2362), + [sym_map_type] = STATE(2362), + [sym_channel_type] = STATE(2362), + [sym_shared_type] = STATE(2362), + [sym_thread_type] = STATE(2362), + [sym_atomic_type] = STATE(2362), + [sym_generic_type] = STATE(2362), + [sym_function_type] = STATE(2362), + [aux_sym_element_list_repeat1] = STATE(3413), + [aux_sym_short_element_list_repeat1] = STATE(375), + [sym_identifier] = ACTIONS(1139), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), [anon_sym_DOT] = ACTIONS(631), [anon_sym_LBRACE] = ACTIONS(633), - [anon_sym_RBRACE] = ACTIONS(1344), + [anon_sym_RBRACE] = ACTIONS(1193), [anon_sym_LPAREN] = ACTIONS(637), [anon_sym_fn] = ACTIONS(641), [anon_sym_PLUS] = ACTIONS(643), @@ -43489,204 +43019,204 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym___r_double_quote] = ACTIONS(697), [sym___r_single_quote] = ACTIONS(699), }, - [181] = { - [sym_line_comment] = STATE(181), - [sym_block_comment] = STATE(181), - [sym_reference_expression] = STATE(4495), - [sym_type_reference_expression] = STATE(3541), - [sym_plain_type] = STATE(2391), - [sym__plain_type_without_special] = STATE(2302), - [sym_anon_struct_type] = STATE(2303), - [sym_multi_return_type] = STATE(2302), - [sym_result_type] = STATE(2302), - [sym_option_type] = STATE(2302), - [sym_qualified_type] = STATE(3541), - [sym_fixed_array_type] = STATE(2303), - [sym_array_type] = STATE(2303), - [sym_pointer_type] = STATE(2303), - [sym_wrong_pointer_type] = STATE(2303), - [sym_map_type] = STATE(2303), - [sym_channel_type] = STATE(2303), - [sym_shared_type] = STATE(2303), - [sym_thread_type] = STATE(2303), - [sym_atomic_type] = STATE(2303), - [sym_generic_type] = STATE(2303), - [sym_function_type] = STATE(2303), - [ts_builtin_sym_end] = ACTIONS(621), - [sym_identifier] = ACTIONS(623), - [anon_sym_LF] = ACTIONS(623), - [anon_sym_CR] = ACTIONS(623), - [anon_sym_CR_LF] = ACTIONS(623), + [177] = { + [sym_line_comment] = STATE(177), + [sym_block_comment] = STATE(177), + [sym_reference_expression] = STATE(4349), + [sym_type_reference_expression] = STATE(985), + [sym_plain_type] = STATE(1058), + [sym__plain_type_without_special] = STATE(1066), + [sym_anon_struct_type] = STATE(1030), + [sym_multi_return_type] = STATE(1066), + [sym_result_type] = STATE(1066), + [sym_option_type] = STATE(1066), + [sym_qualified_type] = STATE(985), + [sym_fixed_array_type] = STATE(1030), + [sym_array_type] = STATE(1030), + [sym_pointer_type] = STATE(1030), + [sym_wrong_pointer_type] = STATE(1030), + [sym_map_type] = STATE(1030), + [sym_channel_type] = STATE(1030), + [sym_shared_type] = STATE(1030), + [sym_thread_type] = STATE(1030), + [sym_atomic_type] = STATE(1030), + [sym_generic_type] = STATE(1030), + [sym_function_type] = STATE(1030), + [ts_builtin_sym_end] = ACTIONS(585), + [sym_identifier] = ACTIONS(1195), + [anon_sym_LF] = ACTIONS(589), + [anon_sym_CR] = ACTIONS(589), + [anon_sym_CR_LF] = ACTIONS(589), [anon_sym_SLASH_SLASH] = ACTIONS(497), [anon_sym_SLASH_STAR] = ACTIONS(499), - [anon_sym_DOT] = ACTIONS(623), - [anon_sym_as] = ACTIONS(623), - [anon_sym_LBRACE] = ACTIONS(623), - [anon_sym_COMMA] = ACTIONS(623), - [anon_sym_const] = ACTIONS(623), - [anon_sym_LPAREN] = ACTIONS(623), - [anon_sym___global] = ACTIONS(623), - [anon_sym_type] = ACTIONS(623), - [anon_sym_PIPE] = ACTIONS(623), - [anon_sym_fn] = ACTIONS(623), - [anon_sym_PLUS] = ACTIONS(623), - [anon_sym_DASH] = ACTIONS(623), - [anon_sym_STAR] = ACTIONS(623), - [anon_sym_SLASH] = ACTIONS(623), - [anon_sym_PERCENT] = ACTIONS(623), - [anon_sym_LT] = ACTIONS(623), - [anon_sym_GT] = ACTIONS(623), - [anon_sym_EQ_EQ] = ACTIONS(623), - [anon_sym_BANG_EQ] = ACTIONS(623), - [anon_sym_LT_EQ] = ACTIONS(623), - [anon_sym_GT_EQ] = ACTIONS(623), - [anon_sym_LBRACK] = ACTIONS(621), - [anon_sym_struct] = ACTIONS(623), - [anon_sym_union] = ACTIONS(623), - [anon_sym_pub] = ACTIONS(623), - [anon_sym_mut] = ACTIONS(623), - [anon_sym_enum] = ACTIONS(623), - [anon_sym_interface] = ACTIONS(623), - [anon_sym_PLUS_PLUS] = ACTIONS(623), - [anon_sym_DASH_DASH] = ACTIONS(623), - [anon_sym_QMARK] = ACTIONS(623), - [anon_sym_BANG] = ACTIONS(623), - [anon_sym_go] = ACTIONS(623), - [anon_sym_spawn] = ACTIONS(623), - [anon_sym_json_DOTdecode] = ACTIONS(623), - [anon_sym_LBRACK2] = ACTIONS(623), - [anon_sym_TILDE] = ACTIONS(623), - [anon_sym_CARET] = ACTIONS(623), - [anon_sym_AMP] = ACTIONS(623), - [anon_sym_LT_DASH] = ACTIONS(623), - [anon_sym_LT_LT] = ACTIONS(623), - [anon_sym_GT_GT] = ACTIONS(623), - [anon_sym_GT_GT_GT] = ACTIONS(623), - [anon_sym_AMP_CARET] = ACTIONS(623), - [anon_sym_AMP_AMP] = ACTIONS(623), - [anon_sym_PIPE_PIPE] = ACTIONS(623), - [anon_sym_or] = ACTIONS(623), - [sym_none] = ACTIONS(623), - [sym_true] = ACTIONS(623), - [sym_false] = ACTIONS(623), - [sym_nil] = ACTIONS(623), - [anon_sym_QMARK_DOT] = ACTIONS(623), - [anon_sym_POUND_LBRACK] = ACTIONS(623), - [anon_sym_if] = ACTIONS(623), - [anon_sym_DOLLARif] = ACTIONS(623), - [anon_sym_is] = ACTIONS(623), - [anon_sym_BANGis] = ACTIONS(623), - [anon_sym_in] = ACTIONS(623), - [anon_sym_BANGin] = ACTIONS(623), - [anon_sym_match] = ACTIONS(623), - [anon_sym_select] = ACTIONS(623), - [anon_sym_lock] = ACTIONS(623), - [anon_sym_rlock] = ACTIONS(623), - [anon_sym_unsafe] = ACTIONS(623), - [anon_sym_sql] = ACTIONS(623), - [sym_int_literal] = ACTIONS(623), - [sym_float_literal] = ACTIONS(623), - [sym_rune_literal] = ACTIONS(623), - [sym_pseudo_compile_time_identifier] = ACTIONS(623), - [anon_sym_shared] = ACTIONS(623), - [anon_sym_map_LBRACK] = ACTIONS(623), - [anon_sym_chan] = ACTIONS(623), - [anon_sym_thread] = ACTIONS(623), - [anon_sym_atomic] = ACTIONS(623), - [anon_sym_assert] = ACTIONS(623), - [anon_sym_defer] = ACTIONS(623), - [anon_sym_goto] = ACTIONS(623), - [anon_sym_break] = ACTIONS(623), - [anon_sym_continue] = ACTIONS(623), - [anon_sym_return] = ACTIONS(623), - [anon_sym_DOLLARfor] = ACTIONS(623), - [anon_sym_for] = ACTIONS(623), - [anon_sym_POUND] = ACTIONS(623), - [anon_sym_asm] = ACTIONS(623), - [anon_sym_AT_LBRACK] = ACTIONS(623), - [sym___double_quote] = ACTIONS(623), - [sym___single_quote] = ACTIONS(623), - [sym___c_double_quote] = ACTIONS(623), - [sym___c_single_quote] = ACTIONS(623), - [sym___r_double_quote] = ACTIONS(623), - [sym___r_single_quote] = ACTIONS(623), + [anon_sym_DOT] = ACTIONS(589), + [anon_sym_as] = ACTIONS(589), + [anon_sym_LBRACE] = ACTIONS(589), + [anon_sym_COMMA] = ACTIONS(589), + [anon_sym_const] = ACTIONS(589), + [anon_sym_LPAREN] = ACTIONS(1197), + [anon_sym___global] = ACTIONS(589), + [anon_sym_type] = ACTIONS(589), + [anon_sym_PIPE] = ACTIONS(589), + [anon_sym_fn] = ACTIONS(1199), + [anon_sym_PLUS] = ACTIONS(589), + [anon_sym_DASH] = ACTIONS(589), + [anon_sym_STAR] = ACTIONS(1201), + [anon_sym_SLASH] = ACTIONS(589), + [anon_sym_PERCENT] = ACTIONS(589), + [anon_sym_LT] = ACTIONS(589), + [anon_sym_GT] = ACTIONS(589), + [anon_sym_EQ_EQ] = ACTIONS(589), + [anon_sym_BANG_EQ] = ACTIONS(589), + [anon_sym_LT_EQ] = ACTIONS(589), + [anon_sym_GT_EQ] = ACTIONS(589), + [anon_sym_LBRACK] = ACTIONS(585), + [anon_sym_struct] = ACTIONS(1203), + [anon_sym_union] = ACTIONS(589), + [anon_sym_pub] = ACTIONS(589), + [anon_sym_mut] = ACTIONS(589), + [anon_sym_enum] = ACTIONS(589), + [anon_sym_interface] = ACTIONS(589), + [anon_sym_PLUS_PLUS] = ACTIONS(589), + [anon_sym_DASH_DASH] = ACTIONS(589), + [anon_sym_QMARK] = ACTIONS(1205), + [anon_sym_BANG] = ACTIONS(1207), + [anon_sym_go] = ACTIONS(589), + [anon_sym_spawn] = ACTIONS(589), + [anon_sym_json_DOTdecode] = ACTIONS(589), + [anon_sym_LBRACK2] = ACTIONS(1209), + [anon_sym_TILDE] = ACTIONS(589), + [anon_sym_CARET] = ACTIONS(589), + [anon_sym_AMP] = ACTIONS(1211), + [anon_sym_LT_DASH] = ACTIONS(589), + [anon_sym_LT_LT] = ACTIONS(589), + [anon_sym_GT_GT] = ACTIONS(589), + [anon_sym_GT_GT_GT] = ACTIONS(589), + [anon_sym_AMP_CARET] = ACTIONS(589), + [anon_sym_AMP_AMP] = ACTIONS(589), + [anon_sym_PIPE_PIPE] = ACTIONS(589), + [anon_sym_or] = ACTIONS(589), + [sym_none] = ACTIONS(589), + [sym_true] = ACTIONS(589), + [sym_false] = ACTIONS(589), + [sym_nil] = ACTIONS(589), + [anon_sym_QMARK_DOT] = ACTIONS(589), + [anon_sym_POUND_LBRACK] = ACTIONS(589), + [anon_sym_if] = ACTIONS(589), + [anon_sym_DOLLARif] = ACTIONS(589), + [anon_sym_is] = ACTIONS(589), + [anon_sym_BANGis] = ACTIONS(589), + [anon_sym_in] = ACTIONS(589), + [anon_sym_BANGin] = ACTIONS(589), + [anon_sym_match] = ACTIONS(589), + [anon_sym_select] = ACTIONS(589), + [anon_sym_lock] = ACTIONS(589), + [anon_sym_rlock] = ACTIONS(589), + [anon_sym_unsafe] = ACTIONS(589), + [anon_sym_sql] = ACTIONS(589), + [sym_int_literal] = ACTIONS(589), + [sym_float_literal] = ACTIONS(589), + [sym_rune_literal] = ACTIONS(589), + [sym_pseudo_compile_time_identifier] = ACTIONS(589), + [anon_sym_shared] = ACTIONS(1213), + [anon_sym_map_LBRACK] = ACTIONS(1215), + [anon_sym_chan] = ACTIONS(1217), + [anon_sym_thread] = ACTIONS(1219), + [anon_sym_atomic] = ACTIONS(1221), + [anon_sym_assert] = ACTIONS(589), + [anon_sym_defer] = ACTIONS(589), + [anon_sym_goto] = ACTIONS(589), + [anon_sym_break] = ACTIONS(589), + [anon_sym_continue] = ACTIONS(589), + [anon_sym_return] = ACTIONS(589), + [anon_sym_DOLLARfor] = ACTIONS(589), + [anon_sym_for] = ACTIONS(589), + [anon_sym_POUND] = ACTIONS(589), + [anon_sym_asm] = ACTIONS(589), + [anon_sym_AT_LBRACK] = ACTIONS(589), + [sym___double_quote] = ACTIONS(589), + [sym___single_quote] = ACTIONS(589), + [sym___c_double_quote] = ACTIONS(589), + [sym___c_single_quote] = ACTIONS(589), + [sym___r_double_quote] = ACTIONS(589), + [sym___r_single_quote] = ACTIONS(589), }, - [182] = { - [sym_line_comment] = STATE(182), - [sym_block_comment] = STATE(182), - [sym__expression] = STATE(1133), - [sym__expression_without_blocks] = STATE(1141), - [sym__expression_with_blocks] = STATE(1141), - [sym_inc_expression] = STATE(1140), - [sym_dec_expression] = STATE(1140), - [sym_or_block_expression] = STATE(1140), - [sym_option_propagation_expression] = STATE(1140), - [sym_result_propagation_expression] = STATE(1140), - [sym_anon_struct_value_expression] = STATE(1199), - [sym_go_expression] = STATE(1140), - [sym_spawn_expression] = STATE(1140), - [sym_parenthesized_expression] = STATE(1140), - [sym_call_expression] = STATE(1140), - [sym_type_initializer] = STATE(1199), - [sym_element_list] = STATE(4517), - [sym_short_element_list] = STATE(4518), - [sym_keyed_element] = STATE(3398), - [sym_function_literal] = STATE(1140), - [sym_reference_expression] = STATE(1185), - [sym_type_reference_expression] = STATE(3541), - [sym_unary_expression] = STATE(1140), - [sym_receive_expression] = STATE(1140), - [sym_binary_expression] = STATE(1140), - [sym_as_type_cast_expression] = STATE(1140), - [sym__max_group] = STATE(1140), - [sym_literal] = STATE(1146), - [sym_spread_expression] = STATE(3398), - [sym_map_init_expression] = STATE(1199), - [sym_array_creation] = STATE(1140), - [sym_fixed_array_creation] = STATE(1140), - [sym_selector_expression] = STATE(1140), - [sym_index_expression] = STATE(1140), - [sym_slice_expression] = STATE(1140), - [sym_if_expression] = STATE(1199), - [sym_compile_time_if_expression] = STATE(1199), - [sym_is_expression] = STATE(1140), - [sym_in_expression] = STATE(1140), - [sym_enum_fetch] = STATE(1140), - [sym_match_expression] = STATE(1199), - [sym_select_expression] = STATE(1199), - [sym_lock_expression] = STATE(1199), - [sym_unsafe_expression] = STATE(1199), - [sym_sql_expression] = STATE(1199), - [sym_c_string_literal] = STATE(1147), - [sym_raw_string_literal] = STATE(1147), - [sym_interpreted_string_literal] = STATE(1147), - [sym_mutability_modifiers] = STATE(638), - [sym_plain_type] = STATE(4234), - [sym__plain_type_without_special] = STATE(2302), - [sym_anon_struct_type] = STATE(2303), - [sym_multi_return_type] = STATE(2302), - [sym_result_type] = STATE(2302), - [sym_option_type] = STATE(2302), - [sym_qualified_type] = STATE(3541), - [sym_fixed_array_type] = STATE(2303), - [sym_array_type] = STATE(2303), - [sym_pointer_type] = STATE(2303), - [sym_wrong_pointer_type] = STATE(2303), - [sym_map_type] = STATE(2303), - [sym_channel_type] = STATE(2303), - [sym_shared_type] = STATE(2303), - [sym_thread_type] = STATE(2303), - [sym_atomic_type] = STATE(2303), - [sym_generic_type] = STATE(2303), - [sym_function_type] = STATE(2303), - [aux_sym_element_list_repeat1] = STATE(3400), - [aux_sym_short_element_list_repeat1] = STATE(374), - [sym_identifier] = ACTIONS(1071), + [178] = { + [sym_line_comment] = STATE(178), + [sym_block_comment] = STATE(178), + [sym__expression] = STATE(1128), + [sym__expression_without_blocks] = STATE(1210), + [sym__expression_with_blocks] = STATE(1210), + [sym_inc_expression] = STATE(1211), + [sym_dec_expression] = STATE(1211), + [sym_or_block_expression] = STATE(1211), + [sym_option_propagation_expression] = STATE(1211), + [sym_result_propagation_expression] = STATE(1211), + [sym_anon_struct_value_expression] = STATE(1212), + [sym_go_expression] = STATE(1211), + [sym_spawn_expression] = STATE(1211), + [sym_parenthesized_expression] = STATE(1211), + [sym_call_expression] = STATE(1211), + [sym_type_initializer] = STATE(1212), + [sym_element_list] = STATE(4472), + [sym_short_element_list] = STATE(4476), + [sym_keyed_element] = STATE(3387), + [sym_function_literal] = STATE(1211), + [sym_reference_expression] = STATE(1154), + [sym_type_reference_expression] = STATE(3460), + [sym_unary_expression] = STATE(1211), + [sym_receive_expression] = STATE(1211), + [sym_binary_expression] = STATE(1211), + [sym_as_type_cast_expression] = STATE(1211), + [sym__max_group] = STATE(1211), + [sym_literal] = STATE(1209), + [sym_spread_expression] = STATE(3387), + [sym_map_init_expression] = STATE(1212), + [sym_array_creation] = STATE(1211), + [sym_fixed_array_creation] = STATE(1211), + [sym_selector_expression] = STATE(1211), + [sym_index_expression] = STATE(1211), + [sym_slice_expression] = STATE(1211), + [sym_if_expression] = STATE(1212), + [sym_compile_time_if_expression] = STATE(1212), + [sym_is_expression] = STATE(1211), + [sym_in_expression] = STATE(1211), + [sym_enum_fetch] = STATE(1211), + [sym_match_expression] = STATE(1212), + [sym_select_expression] = STATE(1212), + [sym_lock_expression] = STATE(1212), + [sym_unsafe_expression] = STATE(1212), + [sym_sql_expression] = STATE(1212), + [sym_c_string_literal] = STATE(1201), + [sym_raw_string_literal] = STATE(1201), + [sym_interpreted_string_literal] = STATE(1201), + [sym_mutability_modifiers] = STATE(589), + [sym_plain_type] = STATE(4123), + [sym__plain_type_without_special] = STATE(2360), + [sym_anon_struct_type] = STATE(2362), + [sym_multi_return_type] = STATE(2360), + [sym_result_type] = STATE(2360), + [sym_option_type] = STATE(2360), + [sym_qualified_type] = STATE(3460), + [sym_fixed_array_type] = STATE(2362), + [sym_array_type] = STATE(2362), + [sym_pointer_type] = STATE(2362), + [sym_wrong_pointer_type] = STATE(2362), + [sym_map_type] = STATE(2362), + [sym_channel_type] = STATE(2362), + [sym_shared_type] = STATE(2362), + [sym_thread_type] = STATE(2362), + [sym_atomic_type] = STATE(2362), + [sym_generic_type] = STATE(2362), + [sym_function_type] = STATE(2362), + [aux_sym_element_list_repeat1] = STATE(3413), + [aux_sym_short_element_list_repeat1] = STATE(375), + [sym_identifier] = ACTIONS(1139), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), [anon_sym_DOT] = ACTIONS(631), [anon_sym_LBRACE] = ACTIONS(633), - [anon_sym_RBRACE] = ACTIONS(1346), + [anon_sym_RBRACE] = ACTIONS(1223), [anon_sym_LPAREN] = ACTIONS(637), [anon_sym_fn] = ACTIONS(641), [anon_sym_PLUS] = ACTIONS(643), @@ -43733,82 +43263,82 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym___r_double_quote] = ACTIONS(697), [sym___r_single_quote] = ACTIONS(699), }, - [183] = { - [sym_line_comment] = STATE(183), - [sym_block_comment] = STATE(183), - [sym__expression] = STATE(1133), - [sym__expression_without_blocks] = STATE(1141), - [sym__expression_with_blocks] = STATE(1141), - [sym_inc_expression] = STATE(1140), - [sym_dec_expression] = STATE(1140), - [sym_or_block_expression] = STATE(1140), - [sym_option_propagation_expression] = STATE(1140), - [sym_result_propagation_expression] = STATE(1140), - [sym_anon_struct_value_expression] = STATE(1199), - [sym_go_expression] = STATE(1140), - [sym_spawn_expression] = STATE(1140), - [sym_parenthesized_expression] = STATE(1140), - [sym_call_expression] = STATE(1140), - [sym_type_initializer] = STATE(1199), - [sym_element_list] = STATE(4482), - [sym_short_element_list] = STATE(4386), - [sym_keyed_element] = STATE(3398), - [sym_function_literal] = STATE(1140), - [sym_reference_expression] = STATE(1185), - [sym_type_reference_expression] = STATE(3541), - [sym_unary_expression] = STATE(1140), - [sym_receive_expression] = STATE(1140), - [sym_binary_expression] = STATE(1140), - [sym_as_type_cast_expression] = STATE(1140), - [sym__max_group] = STATE(1140), - [sym_literal] = STATE(1146), - [sym_spread_expression] = STATE(3398), - [sym_map_init_expression] = STATE(1199), - [sym_array_creation] = STATE(1140), - [sym_fixed_array_creation] = STATE(1140), - [sym_selector_expression] = STATE(1140), - [sym_index_expression] = STATE(1140), - [sym_slice_expression] = STATE(1140), - [sym_if_expression] = STATE(1199), - [sym_compile_time_if_expression] = STATE(1199), - [sym_is_expression] = STATE(1140), - [sym_in_expression] = STATE(1140), - [sym_enum_fetch] = STATE(1140), - [sym_match_expression] = STATE(1199), - [sym_select_expression] = STATE(1199), - [sym_lock_expression] = STATE(1199), - [sym_unsafe_expression] = STATE(1199), - [sym_sql_expression] = STATE(1199), - [sym_c_string_literal] = STATE(1147), - [sym_raw_string_literal] = STATE(1147), - [sym_interpreted_string_literal] = STATE(1147), - [sym_mutability_modifiers] = STATE(638), - [sym_plain_type] = STATE(4234), - [sym__plain_type_without_special] = STATE(2302), - [sym_anon_struct_type] = STATE(2303), - [sym_multi_return_type] = STATE(2302), - [sym_result_type] = STATE(2302), - [sym_option_type] = STATE(2302), - [sym_qualified_type] = STATE(3541), - [sym_fixed_array_type] = STATE(2303), - [sym_array_type] = STATE(2303), - [sym_pointer_type] = STATE(2303), - [sym_wrong_pointer_type] = STATE(2303), - [sym_map_type] = STATE(2303), - [sym_channel_type] = STATE(2303), - [sym_shared_type] = STATE(2303), - [sym_thread_type] = STATE(2303), - [sym_atomic_type] = STATE(2303), - [sym_generic_type] = STATE(2303), - [sym_function_type] = STATE(2303), - [aux_sym_element_list_repeat1] = STATE(3400), - [aux_sym_short_element_list_repeat1] = STATE(374), - [sym_identifier] = ACTIONS(1071), + [179] = { + [sym_line_comment] = STATE(179), + [sym_block_comment] = STATE(179), + [sym__expression] = STATE(1128), + [sym__expression_without_blocks] = STATE(1210), + [sym__expression_with_blocks] = STATE(1210), + [sym_inc_expression] = STATE(1211), + [sym_dec_expression] = STATE(1211), + [sym_or_block_expression] = STATE(1211), + [sym_option_propagation_expression] = STATE(1211), + [sym_result_propagation_expression] = STATE(1211), + [sym_anon_struct_value_expression] = STATE(1212), + [sym_go_expression] = STATE(1211), + [sym_spawn_expression] = STATE(1211), + [sym_parenthesized_expression] = STATE(1211), + [sym_call_expression] = STATE(1211), + [sym_type_initializer] = STATE(1212), + [sym_element_list] = STATE(4561), + [sym_short_element_list] = STATE(4574), + [sym_keyed_element] = STATE(3387), + [sym_function_literal] = STATE(1211), + [sym_reference_expression] = STATE(1154), + [sym_type_reference_expression] = STATE(3460), + [sym_unary_expression] = STATE(1211), + [sym_receive_expression] = STATE(1211), + [sym_binary_expression] = STATE(1211), + [sym_as_type_cast_expression] = STATE(1211), + [sym__max_group] = STATE(1211), + [sym_literal] = STATE(1209), + [sym_spread_expression] = STATE(3387), + [sym_map_init_expression] = STATE(1212), + [sym_array_creation] = STATE(1211), + [sym_fixed_array_creation] = STATE(1211), + [sym_selector_expression] = STATE(1211), + [sym_index_expression] = STATE(1211), + [sym_slice_expression] = STATE(1211), + [sym_if_expression] = STATE(1212), + [sym_compile_time_if_expression] = STATE(1212), + [sym_is_expression] = STATE(1211), + [sym_in_expression] = STATE(1211), + [sym_enum_fetch] = STATE(1211), + [sym_match_expression] = STATE(1212), + [sym_select_expression] = STATE(1212), + [sym_lock_expression] = STATE(1212), + [sym_unsafe_expression] = STATE(1212), + [sym_sql_expression] = STATE(1212), + [sym_c_string_literal] = STATE(1201), + [sym_raw_string_literal] = STATE(1201), + [sym_interpreted_string_literal] = STATE(1201), + [sym_mutability_modifiers] = STATE(589), + [sym_plain_type] = STATE(4123), + [sym__plain_type_without_special] = STATE(2360), + [sym_anon_struct_type] = STATE(2362), + [sym_multi_return_type] = STATE(2360), + [sym_result_type] = STATE(2360), + [sym_option_type] = STATE(2360), + [sym_qualified_type] = STATE(3460), + [sym_fixed_array_type] = STATE(2362), + [sym_array_type] = STATE(2362), + [sym_pointer_type] = STATE(2362), + [sym_wrong_pointer_type] = STATE(2362), + [sym_map_type] = STATE(2362), + [sym_channel_type] = STATE(2362), + [sym_shared_type] = STATE(2362), + [sym_thread_type] = STATE(2362), + [sym_atomic_type] = STATE(2362), + [sym_generic_type] = STATE(2362), + [sym_function_type] = STATE(2362), + [aux_sym_element_list_repeat1] = STATE(3413), + [aux_sym_short_element_list_repeat1] = STATE(375), + [sym_identifier] = ACTIONS(1139), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), [anon_sym_DOT] = ACTIONS(631), [anon_sym_LBRACE] = ACTIONS(633), - [anon_sym_RBRACE] = ACTIONS(1348), + [anon_sym_RBRACE] = ACTIONS(1225), [anon_sym_LPAREN] = ACTIONS(637), [anon_sym_fn] = ACTIONS(641), [anon_sym_PLUS] = ACTIONS(643), @@ -43855,204 +43385,82 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym___r_double_quote] = ACTIONS(697), [sym___r_single_quote] = ACTIONS(699), }, - [184] = { - [sym_line_comment] = STATE(184), - [sym_block_comment] = STATE(184), - [sym__expression] = STATE(2611), - [sym__expression_without_blocks] = STATE(2579), - [sym__expression_with_blocks] = STATE(2625), - [sym_inc_expression] = STATE(2765), - [sym_dec_expression] = STATE(2765), - [sym_or_block_expression] = STATE(2765), - [sym_option_propagation_expression] = STATE(2765), - [sym_result_propagation_expression] = STATE(2765), - [sym_anon_struct_value_expression] = STATE(2619), - [sym_go_expression] = STATE(2765), - [sym_spawn_expression] = STATE(2765), - [sym_parenthesized_expression] = STATE(2765), - [sym_call_expression] = STATE(2765), - [sym_type_initializer] = STATE(2619), - [sym_function_literal] = STATE(2765), - [sym_reference_expression] = STATE(2764), - [sym_type_reference_expression] = STATE(3541), - [sym_unary_expression] = STATE(2765), - [sym_receive_expression] = STATE(2765), - [sym_binary_expression] = STATE(2765), - [sym_as_type_cast_expression] = STATE(2765), - [sym__max_group] = STATE(2765), - [sym_literal] = STATE(2769), - [sym_map_init_expression] = STATE(2619), - [sym_array_creation] = STATE(2765), - [sym_fixed_array_creation] = STATE(2765), - [sym_selector_expression] = STATE(2765), - [sym_index_expression] = STATE(2765), - [sym_slice_expression] = STATE(2765), - [sym_if_expression] = STATE(2619), - [sym_compile_time_if_expression] = STATE(2619), - [sym_is_expression] = STATE(2765), - [sym_in_expression] = STATE(2765), - [sym_enum_fetch] = STATE(2765), - [sym_match_expression] = STATE(2619), - [sym_match_arm] = STATE(2132), - [sym_match_expression_list] = STATE(4087), - [sym_match_arm_type] = STATE(3795), - [sym_match_else_arm_clause] = STATE(2132), - [sym_select_expression] = STATE(2619), - [sym_lock_expression] = STATE(2619), - [sym_unsafe_expression] = STATE(2619), - [sym_sql_expression] = STATE(2619), - [sym_c_string_literal] = STATE(2660), - [sym_raw_string_literal] = STATE(2660), - [sym_interpreted_string_literal] = STATE(2660), - [sym_mutability_modifiers] = STATE(567), - [sym_plain_type] = STATE(3784), - [sym__plain_type_without_special] = STATE(2302), - [sym_anon_struct_type] = STATE(2303), - [sym_multi_return_type] = STATE(2302), - [sym_result_type] = STATE(2302), - [sym_option_type] = STATE(2302), - [sym_qualified_type] = STATE(3541), - [sym_fixed_array_type] = STATE(2303), - [sym_array_type] = STATE(2303), - [sym_pointer_type] = STATE(2303), - [sym_wrong_pointer_type] = STATE(2303), - [sym_map_type] = STATE(2303), - [sym_channel_type] = STATE(2303), - [sym_shared_type] = STATE(2303), - [sym_thread_type] = STATE(2303), - [sym_atomic_type] = STATE(2303), - [sym_generic_type] = STATE(2303), - [sym_function_type] = STATE(2303), - [sym__definite_range] = STATE(3781), - [aux_sym_match_arms_repeat1] = STATE(177), - [sym_identifier] = ACTIONS(1079), - [anon_sym_SLASH_SLASH] = ACTIONS(3), - [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1081), - [anon_sym_LBRACE] = ACTIONS(1083), - [anon_sym_RBRACE] = ACTIONS(1350), - [anon_sym_LPAREN] = ACTIONS(1087), - [anon_sym_fn] = ACTIONS(1089), - [anon_sym_PLUS] = ACTIONS(1091), - [anon_sym_DASH] = ACTIONS(1091), - [anon_sym_STAR] = ACTIONS(1093), - [anon_sym_struct] = ACTIONS(1095), - [anon_sym_mut] = ACTIONS(41), - [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(1097), - [anon_sym_go] = ACTIONS(1099), - [anon_sym_spawn] = ACTIONS(1101), - [anon_sym_json_DOTdecode] = ACTIONS(1103), - [anon_sym_LBRACK2] = ACTIONS(1105), - [anon_sym_TILDE] = ACTIONS(1091), - [anon_sym_CARET] = ACTIONS(1091), - [anon_sym_AMP] = ACTIONS(1107), - [anon_sym_LT_DASH] = ACTIONS(1109), - [sym_none] = ACTIONS(1111), - [sym_true] = ACTIONS(1111), - [sym_false] = ACTIONS(1111), - [sym_nil] = ACTIONS(1111), - [anon_sym_if] = ACTIONS(1113), - [anon_sym_else] = ACTIONS(1115), - [anon_sym_DOLLARif] = ACTIONS(1117), - [anon_sym_match] = ACTIONS(1119), - [anon_sym_select] = ACTIONS(1121), - [anon_sym_lock] = ACTIONS(1123), - [anon_sym_rlock] = ACTIONS(1123), - [anon_sym_unsafe] = ACTIONS(1125), - [anon_sym_sql] = ACTIONS(1127), - [sym_int_literal] = ACTIONS(1111), - [sym_float_literal] = ACTIONS(1129), - [sym_rune_literal] = ACTIONS(1129), - [sym_pseudo_compile_time_identifier] = ACTIONS(1131), - [anon_sym_shared] = ACTIONS(83), - [anon_sym_map_LBRACK] = ACTIONS(85), - [anon_sym_chan] = ACTIONS(87), - [anon_sym_thread] = ACTIONS(89), - [anon_sym_atomic] = ACTIONS(91), - [sym___double_quote] = ACTIONS(1133), - [sym___single_quote] = ACTIONS(1135), - [sym___c_double_quote] = ACTIONS(1137), - [sym___c_single_quote] = ACTIONS(1139), - [sym___r_double_quote] = ACTIONS(1141), - [sym___r_single_quote] = ACTIONS(1143), - }, - [185] = { - [sym_line_comment] = STATE(185), - [sym_block_comment] = STATE(185), - [sym__expression] = STATE(1133), - [sym__expression_without_blocks] = STATE(1141), - [sym__expression_with_blocks] = STATE(1141), - [sym_inc_expression] = STATE(1140), - [sym_dec_expression] = STATE(1140), - [sym_or_block_expression] = STATE(1140), - [sym_option_propagation_expression] = STATE(1140), - [sym_result_propagation_expression] = STATE(1140), - [sym_anon_struct_value_expression] = STATE(1199), - [sym_go_expression] = STATE(1140), - [sym_spawn_expression] = STATE(1140), - [sym_parenthesized_expression] = STATE(1140), - [sym_call_expression] = STATE(1140), - [sym_type_initializer] = STATE(1199), - [sym_element_list] = STATE(4474), - [sym_short_element_list] = STATE(4458), - [sym_keyed_element] = STATE(3398), - [sym_function_literal] = STATE(1140), - [sym_reference_expression] = STATE(1185), - [sym_type_reference_expression] = STATE(3541), - [sym_unary_expression] = STATE(1140), - [sym_receive_expression] = STATE(1140), - [sym_binary_expression] = STATE(1140), - [sym_as_type_cast_expression] = STATE(1140), - [sym__max_group] = STATE(1140), - [sym_literal] = STATE(1146), - [sym_spread_expression] = STATE(3398), - [sym_map_init_expression] = STATE(1199), - [sym_array_creation] = STATE(1140), - [sym_fixed_array_creation] = STATE(1140), - [sym_selector_expression] = STATE(1140), - [sym_index_expression] = STATE(1140), - [sym_slice_expression] = STATE(1140), - [sym_if_expression] = STATE(1199), - [sym_compile_time_if_expression] = STATE(1199), - [sym_is_expression] = STATE(1140), - [sym_in_expression] = STATE(1140), - [sym_enum_fetch] = STATE(1140), - [sym_match_expression] = STATE(1199), - [sym_select_expression] = STATE(1199), - [sym_lock_expression] = STATE(1199), - [sym_unsafe_expression] = STATE(1199), - [sym_sql_expression] = STATE(1199), - [sym_c_string_literal] = STATE(1147), - [sym_raw_string_literal] = STATE(1147), - [sym_interpreted_string_literal] = STATE(1147), - [sym_mutability_modifiers] = STATE(638), - [sym_plain_type] = STATE(4234), - [sym__plain_type_without_special] = STATE(2302), - [sym_anon_struct_type] = STATE(2303), - [sym_multi_return_type] = STATE(2302), - [sym_result_type] = STATE(2302), - [sym_option_type] = STATE(2302), - [sym_qualified_type] = STATE(3541), - [sym_fixed_array_type] = STATE(2303), - [sym_array_type] = STATE(2303), - [sym_pointer_type] = STATE(2303), - [sym_wrong_pointer_type] = STATE(2303), - [sym_map_type] = STATE(2303), - [sym_channel_type] = STATE(2303), - [sym_shared_type] = STATE(2303), - [sym_thread_type] = STATE(2303), - [sym_atomic_type] = STATE(2303), - [sym_generic_type] = STATE(2303), - [sym_function_type] = STATE(2303), - [aux_sym_element_list_repeat1] = STATE(3400), - [aux_sym_short_element_list_repeat1] = STATE(374), - [sym_identifier] = ACTIONS(1071), + [180] = { + [sym_line_comment] = STATE(180), + [sym_block_comment] = STATE(180), + [sym__expression] = STATE(1128), + [sym__expression_without_blocks] = STATE(1210), + [sym__expression_with_blocks] = STATE(1210), + [sym_inc_expression] = STATE(1211), + [sym_dec_expression] = STATE(1211), + [sym_or_block_expression] = STATE(1211), + [sym_option_propagation_expression] = STATE(1211), + [sym_result_propagation_expression] = STATE(1211), + [sym_anon_struct_value_expression] = STATE(1212), + [sym_go_expression] = STATE(1211), + [sym_spawn_expression] = STATE(1211), + [sym_parenthesized_expression] = STATE(1211), + [sym_call_expression] = STATE(1211), + [sym_type_initializer] = STATE(1212), + [sym_element_list] = STATE(4543), + [sym_short_element_list] = STATE(4551), + [sym_keyed_element] = STATE(3387), + [sym_function_literal] = STATE(1211), + [sym_reference_expression] = STATE(1154), + [sym_type_reference_expression] = STATE(3460), + [sym_unary_expression] = STATE(1211), + [sym_receive_expression] = STATE(1211), + [sym_binary_expression] = STATE(1211), + [sym_as_type_cast_expression] = STATE(1211), + [sym__max_group] = STATE(1211), + [sym_literal] = STATE(1209), + [sym_spread_expression] = STATE(3387), + [sym_map_init_expression] = STATE(1212), + [sym_array_creation] = STATE(1211), + [sym_fixed_array_creation] = STATE(1211), + [sym_selector_expression] = STATE(1211), + [sym_index_expression] = STATE(1211), + [sym_slice_expression] = STATE(1211), + [sym_if_expression] = STATE(1212), + [sym_compile_time_if_expression] = STATE(1212), + [sym_is_expression] = STATE(1211), + [sym_in_expression] = STATE(1211), + [sym_enum_fetch] = STATE(1211), + [sym_match_expression] = STATE(1212), + [sym_select_expression] = STATE(1212), + [sym_lock_expression] = STATE(1212), + [sym_unsafe_expression] = STATE(1212), + [sym_sql_expression] = STATE(1212), + [sym_c_string_literal] = STATE(1201), + [sym_raw_string_literal] = STATE(1201), + [sym_interpreted_string_literal] = STATE(1201), + [sym_mutability_modifiers] = STATE(589), + [sym_plain_type] = STATE(4123), + [sym__plain_type_without_special] = STATE(2360), + [sym_anon_struct_type] = STATE(2362), + [sym_multi_return_type] = STATE(2360), + [sym_result_type] = STATE(2360), + [sym_option_type] = STATE(2360), + [sym_qualified_type] = STATE(3460), + [sym_fixed_array_type] = STATE(2362), + [sym_array_type] = STATE(2362), + [sym_pointer_type] = STATE(2362), + [sym_wrong_pointer_type] = STATE(2362), + [sym_map_type] = STATE(2362), + [sym_channel_type] = STATE(2362), + [sym_shared_type] = STATE(2362), + [sym_thread_type] = STATE(2362), + [sym_atomic_type] = STATE(2362), + [sym_generic_type] = STATE(2362), + [sym_function_type] = STATE(2362), + [aux_sym_element_list_repeat1] = STATE(3413), + [aux_sym_short_element_list_repeat1] = STATE(375), + [sym_identifier] = ACTIONS(1139), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), [anon_sym_DOT] = ACTIONS(631), [anon_sym_LBRACE] = ACTIONS(633), - [anon_sym_RBRACE] = ACTIONS(1352), + [anon_sym_RBRACE] = ACTIONS(1227), [anon_sym_LPAREN] = ACTIONS(637), [anon_sym_fn] = ACTIONS(641), [anon_sym_PLUS] = ACTIONS(643), @@ -44099,153 +43507,31 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym___r_double_quote] = ACTIONS(697), [sym___r_single_quote] = ACTIONS(699), }, - [186] = { - [sym_line_comment] = STATE(186), - [sym_block_comment] = STATE(186), - [sym__expression] = STATE(1268), - [sym__expression_without_blocks] = STATE(1312), - [sym__expression_with_blocks] = STATE(1312), - [sym_inc_expression] = STATE(1313), - [sym_dec_expression] = STATE(1313), - [sym_or_block_expression] = STATE(1313), - [sym_option_propagation_expression] = STATE(1313), - [sym_result_propagation_expression] = STATE(1313), - [sym_anon_struct_value_expression] = STATE(1314), - [sym_go_expression] = STATE(1313), - [sym_spawn_expression] = STATE(1313), - [sym_parenthesized_expression] = STATE(1313), - [sym_call_expression] = STATE(1313), - [sym_type_initializer] = STATE(1314), - [sym_function_literal] = STATE(1313), - [sym_reference_expression] = STATE(1294), - [sym_type_reference_expression] = STATE(3541), - [sym_unary_expression] = STATE(1313), - [sym_receive_expression] = STATE(1313), - [sym_binary_expression] = STATE(1313), - [sym_as_type_cast_expression] = STATE(1313), - [sym__max_group] = STATE(1313), - [sym_literal] = STATE(1388), - [sym_map_init_expression] = STATE(1314), - [sym_array_creation] = STATE(1313), - [sym_fixed_array_creation] = STATE(1313), - [sym_selector_expression] = STATE(1393), - [sym_index_expression] = STATE(1313), - [sym_slice_expression] = STATE(1313), - [sym_if_expression] = STATE(1314), - [sym_compile_time_if_expression] = STATE(1314), - [sym_is_expression] = STATE(1313), - [sym_in_expression] = STATE(1313), - [sym_enum_fetch] = STATE(1313), - [sym_match_expression] = STATE(1314), - [sym_select_expression] = STATE(1314), - [sym_lock_expression] = STATE(1314), - [sym_unsafe_expression] = STATE(1314), - [sym_sql_expression] = STATE(1314), - [sym_c_string_literal] = STATE(1286), - [sym_raw_string_literal] = STATE(1286), - [sym_interpreted_string_literal] = STATE(1286), - [sym_mutability_modifiers] = STATE(699), - [sym_plain_type] = STATE(4192), - [sym__plain_type_without_special] = STATE(2302), - [sym_anon_struct_type] = STATE(2303), - [sym_multi_return_type] = STATE(2302), - [sym_result_type] = STATE(2302), - [sym_option_type] = STATE(2302), - [sym_qualified_type] = STATE(3541), - [sym_fixed_array_type] = STATE(2303), - [sym_array_type] = STATE(2303), - [sym_pointer_type] = STATE(2303), - [sym_wrong_pointer_type] = STATE(2303), - [sym_map_type] = STATE(2303), - [sym_channel_type] = STATE(2303), - [sym_shared_type] = STATE(2303), - [sym_thread_type] = STATE(2303), - [sym_atomic_type] = STATE(2303), - [sym_generic_type] = STATE(2303), - [sym_function_type] = STATE(2303), - [sym_attribute_expression] = STATE(3819), - [sym_if_attribute] = STATE(4152), - [sym__plain_attribute] = STATE(4152), - [sym_literal_attribute] = STATE(4153), - [sym_value_attribute] = STATE(3822), - [sym_key_value_attribute] = STATE(4153), - [aux_sym__array_repeat1] = STATE(317), - [sym_identifier] = ACTIONS(1354), - [anon_sym_SLASH_SLASH] = ACTIONS(3), - [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1356), - [anon_sym_LBRACE] = ACTIONS(1358), - [anon_sym_LPAREN] = ACTIONS(1360), - [anon_sym_fn] = ACTIONS(1362), - [anon_sym_PLUS] = ACTIONS(1364), - [anon_sym_DASH] = ACTIONS(1364), - [anon_sym_STAR] = ACTIONS(1366), - [anon_sym_RBRACK] = ACTIONS(1368), - [anon_sym_struct] = ACTIONS(1370), - [anon_sym_mut] = ACTIONS(41), - [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(1372), - [anon_sym_go] = ACTIONS(1374), - [anon_sym_spawn] = ACTIONS(1376), - [anon_sym_json_DOTdecode] = ACTIONS(1378), - [anon_sym_LBRACK2] = ACTIONS(1380), - [anon_sym_TILDE] = ACTIONS(1364), - [anon_sym_CARET] = ACTIONS(1364), - [anon_sym_AMP] = ACTIONS(1382), - [anon_sym_LT_DASH] = ACTIONS(1384), - [sym_none] = ACTIONS(1386), - [sym_true] = ACTIONS(1386), - [sym_false] = ACTIONS(1386), - [sym_nil] = ACTIONS(1386), - [anon_sym_if] = ACTIONS(1388), - [anon_sym_DOLLARif] = ACTIONS(1390), - [anon_sym_match] = ACTIONS(1392), - [anon_sym_select] = ACTIONS(1394), - [anon_sym_lock] = ACTIONS(1396), - [anon_sym_rlock] = ACTIONS(1396), - [anon_sym_unsafe] = ACTIONS(1398), - [anon_sym_sql] = ACTIONS(1400), - [sym_int_literal] = ACTIONS(1402), - [sym_float_literal] = ACTIONS(1404), - [sym_rune_literal] = ACTIONS(1404), - [sym_pseudo_compile_time_identifier] = ACTIONS(1406), - [anon_sym_shared] = ACTIONS(83), - [anon_sym_map_LBRACK] = ACTIONS(85), - [anon_sym_chan] = ACTIONS(87), - [anon_sym_thread] = ACTIONS(89), - [anon_sym_atomic] = ACTIONS(91), - [sym___double_quote] = ACTIONS(1408), - [sym___single_quote] = ACTIONS(1410), - [sym___c_double_quote] = ACTIONS(1412), - [sym___c_single_quote] = ACTIONS(1414), - [sym___r_double_quote] = ACTIONS(1416), - [sym___r_single_quote] = ACTIONS(1418), - }, - [187] = { - [sym_line_comment] = STATE(187), - [sym_block_comment] = STATE(187), - [sym_reference_expression] = STATE(4365), - [sym_type_reference_expression] = STATE(990), - [sym_plain_type] = STATE(1073), - [sym__plain_type_without_special] = STATE(1020), - [sym_anon_struct_type] = STATE(1019), - [sym_multi_return_type] = STATE(1020), - [sym_result_type] = STATE(1020), - [sym_option_type] = STATE(1020), - [sym_qualified_type] = STATE(990), - [sym_fixed_array_type] = STATE(1019), - [sym_array_type] = STATE(1019), - [sym_pointer_type] = STATE(1019), - [sym_wrong_pointer_type] = STATE(1019), - [sym_map_type] = STATE(1019), - [sym_channel_type] = STATE(1019), - [sym_shared_type] = STATE(1019), - [sym_thread_type] = STATE(1019), - [sym_atomic_type] = STATE(1019), - [sym_generic_type] = STATE(1019), - [sym_function_type] = STATE(1019), + [181] = { + [sym_line_comment] = STATE(181), + [sym_block_comment] = STATE(181), + [sym_reference_expression] = STATE(4349), + [sym_type_reference_expression] = STATE(985), + [sym_plain_type] = STATE(1005), + [sym__plain_type_without_special] = STATE(1066), + [sym_anon_struct_type] = STATE(1030), + [sym_multi_return_type] = STATE(1066), + [sym_result_type] = STATE(1066), + [sym_option_type] = STATE(1066), + [sym_qualified_type] = STATE(985), + [sym_fixed_array_type] = STATE(1030), + [sym_array_type] = STATE(1030), + [sym_pointer_type] = STATE(1030), + [sym_wrong_pointer_type] = STATE(1030), + [sym_map_type] = STATE(1030), + [sym_channel_type] = STATE(1030), + [sym_shared_type] = STATE(1030), + [sym_thread_type] = STATE(1030), + [sym_atomic_type] = STATE(1030), + [sym_generic_type] = STATE(1030), + [sym_function_type] = STATE(1030), [ts_builtin_sym_end] = ACTIONS(617), - [sym_identifier] = ACTIONS(1191), + [sym_identifier] = ACTIONS(1195), [anon_sym_LF] = ACTIONS(619), [anon_sym_CR] = ACTIONS(619), [anon_sym_CR_LF] = ACTIONS(619), @@ -44256,14 +43542,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACE] = ACTIONS(619), [anon_sym_COMMA] = ACTIONS(619), [anon_sym_const] = ACTIONS(619), - [anon_sym_LPAREN] = ACTIONS(1193), + [anon_sym_LPAREN] = ACTIONS(1197), [anon_sym___global] = ACTIONS(619), [anon_sym_type] = ACTIONS(619), [anon_sym_PIPE] = ACTIONS(619), - [anon_sym_fn] = ACTIONS(1195), + [anon_sym_fn] = ACTIONS(1199), [anon_sym_PLUS] = ACTIONS(619), [anon_sym_DASH] = ACTIONS(619), - [anon_sym_STAR] = ACTIONS(1197), + [anon_sym_STAR] = ACTIONS(1201), [anon_sym_SLASH] = ACTIONS(619), [anon_sym_PERCENT] = ACTIONS(619), [anon_sym_LT] = ACTIONS(619), @@ -44273,7 +43559,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT_EQ] = ACTIONS(619), [anon_sym_GT_EQ] = ACTIONS(619), [anon_sym_LBRACK] = ACTIONS(617), - [anon_sym_struct] = ACTIONS(1199), + [anon_sym_struct] = ACTIONS(1203), [anon_sym_union] = ACTIONS(619), [anon_sym_pub] = ACTIONS(619), [anon_sym_mut] = ACTIONS(619), @@ -44281,15 +43567,15 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_interface] = ACTIONS(619), [anon_sym_PLUS_PLUS] = ACTIONS(619), [anon_sym_DASH_DASH] = ACTIONS(619), - [anon_sym_QMARK] = ACTIONS(1201), - [anon_sym_BANG] = ACTIONS(1203), + [anon_sym_QMARK] = ACTIONS(1205), + [anon_sym_BANG] = ACTIONS(1207), [anon_sym_go] = ACTIONS(619), [anon_sym_spawn] = ACTIONS(619), [anon_sym_json_DOTdecode] = ACTIONS(619), - [anon_sym_LBRACK2] = ACTIONS(1205), + [anon_sym_LBRACK2] = ACTIONS(1209), [anon_sym_TILDE] = ACTIONS(619), [anon_sym_CARET] = ACTIONS(619), - [anon_sym_AMP] = ACTIONS(1207), + [anon_sym_AMP] = ACTIONS(1211), [anon_sym_LT_DASH] = ACTIONS(619), [anon_sym_LT_LT] = ACTIONS(619), [anon_sym_GT_GT] = ACTIONS(619), @@ -44320,11 +43606,11 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(619), [sym_rune_literal] = ACTIONS(619), [sym_pseudo_compile_time_identifier] = ACTIONS(619), - [anon_sym_shared] = ACTIONS(1209), - [anon_sym_map_LBRACK] = ACTIONS(1211), - [anon_sym_chan] = ACTIONS(1213), - [anon_sym_thread] = ACTIONS(1215), - [anon_sym_atomic] = ACTIONS(1217), + [anon_sym_shared] = ACTIONS(1213), + [anon_sym_map_LBRACK] = ACTIONS(1215), + [anon_sym_chan] = ACTIONS(1217), + [anon_sym_thread] = ACTIONS(1219), + [anon_sym_atomic] = ACTIONS(1221), [anon_sym_assert] = ACTIONS(619), [anon_sym_defer] = ACTIONS(619), [anon_sym_goto] = ACTIONS(619), @@ -44343,82 +43629,82 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym___r_double_quote] = ACTIONS(619), [sym___r_single_quote] = ACTIONS(619), }, - [188] = { - [sym_line_comment] = STATE(188), - [sym_block_comment] = STATE(188), - [sym__expression] = STATE(1133), - [sym__expression_without_blocks] = STATE(1141), - [sym__expression_with_blocks] = STATE(1141), - [sym_inc_expression] = STATE(1140), - [sym_dec_expression] = STATE(1140), - [sym_or_block_expression] = STATE(1140), - [sym_option_propagation_expression] = STATE(1140), - [sym_result_propagation_expression] = STATE(1140), - [sym_anon_struct_value_expression] = STATE(1199), - [sym_go_expression] = STATE(1140), - [sym_spawn_expression] = STATE(1140), - [sym_parenthesized_expression] = STATE(1140), - [sym_call_expression] = STATE(1140), - [sym_type_initializer] = STATE(1199), - [sym_element_list] = STATE(4572), - [sym_short_element_list] = STATE(4571), - [sym_keyed_element] = STATE(3398), - [sym_function_literal] = STATE(1140), - [sym_reference_expression] = STATE(1185), - [sym_type_reference_expression] = STATE(3541), - [sym_unary_expression] = STATE(1140), - [sym_receive_expression] = STATE(1140), - [sym_binary_expression] = STATE(1140), - [sym_as_type_cast_expression] = STATE(1140), - [sym__max_group] = STATE(1140), - [sym_literal] = STATE(1146), - [sym_spread_expression] = STATE(3398), - [sym_map_init_expression] = STATE(1199), - [sym_array_creation] = STATE(1140), - [sym_fixed_array_creation] = STATE(1140), - [sym_selector_expression] = STATE(1140), - [sym_index_expression] = STATE(1140), - [sym_slice_expression] = STATE(1140), - [sym_if_expression] = STATE(1199), - [sym_compile_time_if_expression] = STATE(1199), - [sym_is_expression] = STATE(1140), - [sym_in_expression] = STATE(1140), - [sym_enum_fetch] = STATE(1140), - [sym_match_expression] = STATE(1199), - [sym_select_expression] = STATE(1199), - [sym_lock_expression] = STATE(1199), - [sym_unsafe_expression] = STATE(1199), - [sym_sql_expression] = STATE(1199), - [sym_c_string_literal] = STATE(1147), - [sym_raw_string_literal] = STATE(1147), - [sym_interpreted_string_literal] = STATE(1147), - [sym_mutability_modifiers] = STATE(638), - [sym_plain_type] = STATE(4234), - [sym__plain_type_without_special] = STATE(2302), - [sym_anon_struct_type] = STATE(2303), - [sym_multi_return_type] = STATE(2302), - [sym_result_type] = STATE(2302), - [sym_option_type] = STATE(2302), - [sym_qualified_type] = STATE(3541), - [sym_fixed_array_type] = STATE(2303), - [sym_array_type] = STATE(2303), - [sym_pointer_type] = STATE(2303), - [sym_wrong_pointer_type] = STATE(2303), - [sym_map_type] = STATE(2303), - [sym_channel_type] = STATE(2303), - [sym_shared_type] = STATE(2303), - [sym_thread_type] = STATE(2303), - [sym_atomic_type] = STATE(2303), - [sym_generic_type] = STATE(2303), - [sym_function_type] = STATE(2303), - [aux_sym_element_list_repeat1] = STATE(3400), - [aux_sym_short_element_list_repeat1] = STATE(374), - [sym_identifier] = ACTIONS(1071), + [182] = { + [sym_line_comment] = STATE(182), + [sym_block_comment] = STATE(182), + [sym__expression] = STATE(1128), + [sym__expression_without_blocks] = STATE(1210), + [sym__expression_with_blocks] = STATE(1210), + [sym_inc_expression] = STATE(1211), + [sym_dec_expression] = STATE(1211), + [sym_or_block_expression] = STATE(1211), + [sym_option_propagation_expression] = STATE(1211), + [sym_result_propagation_expression] = STATE(1211), + [sym_anon_struct_value_expression] = STATE(1212), + [sym_go_expression] = STATE(1211), + [sym_spawn_expression] = STATE(1211), + [sym_parenthesized_expression] = STATE(1211), + [sym_call_expression] = STATE(1211), + [sym_type_initializer] = STATE(1212), + [sym_element_list] = STATE(4461), + [sym_short_element_list] = STATE(4470), + [sym_keyed_element] = STATE(3387), + [sym_function_literal] = STATE(1211), + [sym_reference_expression] = STATE(1154), + [sym_type_reference_expression] = STATE(3460), + [sym_unary_expression] = STATE(1211), + [sym_receive_expression] = STATE(1211), + [sym_binary_expression] = STATE(1211), + [sym_as_type_cast_expression] = STATE(1211), + [sym__max_group] = STATE(1211), + [sym_literal] = STATE(1209), + [sym_spread_expression] = STATE(3387), + [sym_map_init_expression] = STATE(1212), + [sym_array_creation] = STATE(1211), + [sym_fixed_array_creation] = STATE(1211), + [sym_selector_expression] = STATE(1211), + [sym_index_expression] = STATE(1211), + [sym_slice_expression] = STATE(1211), + [sym_if_expression] = STATE(1212), + [sym_compile_time_if_expression] = STATE(1212), + [sym_is_expression] = STATE(1211), + [sym_in_expression] = STATE(1211), + [sym_enum_fetch] = STATE(1211), + [sym_match_expression] = STATE(1212), + [sym_select_expression] = STATE(1212), + [sym_lock_expression] = STATE(1212), + [sym_unsafe_expression] = STATE(1212), + [sym_sql_expression] = STATE(1212), + [sym_c_string_literal] = STATE(1201), + [sym_raw_string_literal] = STATE(1201), + [sym_interpreted_string_literal] = STATE(1201), + [sym_mutability_modifiers] = STATE(589), + [sym_plain_type] = STATE(4123), + [sym__plain_type_without_special] = STATE(2360), + [sym_anon_struct_type] = STATE(2362), + [sym_multi_return_type] = STATE(2360), + [sym_result_type] = STATE(2360), + [sym_option_type] = STATE(2360), + [sym_qualified_type] = STATE(3460), + [sym_fixed_array_type] = STATE(2362), + [sym_array_type] = STATE(2362), + [sym_pointer_type] = STATE(2362), + [sym_wrong_pointer_type] = STATE(2362), + [sym_map_type] = STATE(2362), + [sym_channel_type] = STATE(2362), + [sym_shared_type] = STATE(2362), + [sym_thread_type] = STATE(2362), + [sym_atomic_type] = STATE(2362), + [sym_generic_type] = STATE(2362), + [sym_function_type] = STATE(2362), + [aux_sym_element_list_repeat1] = STATE(3413), + [aux_sym_short_element_list_repeat1] = STATE(375), + [sym_identifier] = ACTIONS(1139), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), [anon_sym_DOT] = ACTIONS(631), [anon_sym_LBRACE] = ACTIONS(633), - [anon_sym_RBRACE] = ACTIONS(1420), + [anon_sym_RBRACE] = ACTIONS(1229), [anon_sym_LPAREN] = ACTIONS(637), [anon_sym_fn] = ACTIONS(641), [anon_sym_PLUS] = ACTIONS(643), @@ -44465,82 +43751,204 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym___r_double_quote] = ACTIONS(697), [sym___r_single_quote] = ACTIONS(699), }, - [189] = { - [sym_line_comment] = STATE(189), - [sym_block_comment] = STATE(189), - [sym__expression] = STATE(1133), - [sym__expression_without_blocks] = STATE(1141), - [sym__expression_with_blocks] = STATE(1141), - [sym_inc_expression] = STATE(1140), - [sym_dec_expression] = STATE(1140), - [sym_or_block_expression] = STATE(1140), - [sym_option_propagation_expression] = STATE(1140), - [sym_result_propagation_expression] = STATE(1140), - [sym_anon_struct_value_expression] = STATE(1199), - [sym_go_expression] = STATE(1140), - [sym_spawn_expression] = STATE(1140), - [sym_parenthesized_expression] = STATE(1140), - [sym_call_expression] = STATE(1140), - [sym_type_initializer] = STATE(1199), - [sym_element_list] = STATE(4333), - [sym_short_element_list] = STATE(4332), - [sym_keyed_element] = STATE(3398), - [sym_function_literal] = STATE(1140), - [sym_reference_expression] = STATE(1185), - [sym_type_reference_expression] = STATE(3541), - [sym_unary_expression] = STATE(1140), - [sym_receive_expression] = STATE(1140), - [sym_binary_expression] = STATE(1140), - [sym_as_type_cast_expression] = STATE(1140), - [sym__max_group] = STATE(1140), - [sym_literal] = STATE(1146), - [sym_spread_expression] = STATE(3398), - [sym_map_init_expression] = STATE(1199), - [sym_array_creation] = STATE(1140), - [sym_fixed_array_creation] = STATE(1140), - [sym_selector_expression] = STATE(1140), - [sym_index_expression] = STATE(1140), - [sym_slice_expression] = STATE(1140), - [sym_if_expression] = STATE(1199), - [sym_compile_time_if_expression] = STATE(1199), - [sym_is_expression] = STATE(1140), - [sym_in_expression] = STATE(1140), - [sym_enum_fetch] = STATE(1140), - [sym_match_expression] = STATE(1199), - [sym_select_expression] = STATE(1199), - [sym_lock_expression] = STATE(1199), - [sym_unsafe_expression] = STATE(1199), - [sym_sql_expression] = STATE(1199), - [sym_c_string_literal] = STATE(1147), - [sym_raw_string_literal] = STATE(1147), - [sym_interpreted_string_literal] = STATE(1147), - [sym_mutability_modifiers] = STATE(638), - [sym_plain_type] = STATE(4234), - [sym__plain_type_without_special] = STATE(2302), - [sym_anon_struct_type] = STATE(2303), - [sym_multi_return_type] = STATE(2302), - [sym_result_type] = STATE(2302), - [sym_option_type] = STATE(2302), - [sym_qualified_type] = STATE(3541), - [sym_fixed_array_type] = STATE(2303), - [sym_array_type] = STATE(2303), - [sym_pointer_type] = STATE(2303), - [sym_wrong_pointer_type] = STATE(2303), - [sym_map_type] = STATE(2303), - [sym_channel_type] = STATE(2303), - [sym_shared_type] = STATE(2303), - [sym_thread_type] = STATE(2303), - [sym_atomic_type] = STATE(2303), - [sym_generic_type] = STATE(2303), - [sym_function_type] = STATE(2303), - [aux_sym_element_list_repeat1] = STATE(3400), - [aux_sym_short_element_list_repeat1] = STATE(374), - [sym_identifier] = ACTIONS(1071), + [183] = { + [sym_line_comment] = STATE(183), + [sym_block_comment] = STATE(183), + [sym_reference_expression] = STATE(4498), + [sym_type_reference_expression] = STATE(3460), + [sym_plain_type] = STATE(2320), + [sym__plain_type_without_special] = STATE(2360), + [sym_anon_struct_type] = STATE(2362), + [sym_multi_return_type] = STATE(2360), + [sym_result_type] = STATE(2360), + [sym_option_type] = STATE(2360), + [sym_qualified_type] = STATE(3460), + [sym_fixed_array_type] = STATE(2362), + [sym_array_type] = STATE(2362), + [sym_pointer_type] = STATE(2362), + [sym_wrong_pointer_type] = STATE(2362), + [sym_map_type] = STATE(2362), + [sym_channel_type] = STATE(2362), + [sym_shared_type] = STATE(2362), + [sym_thread_type] = STATE(2362), + [sym_atomic_type] = STATE(2362), + [sym_generic_type] = STATE(2362), + [sym_function_type] = STATE(2362), + [ts_builtin_sym_end] = ACTIONS(563), + [sym_identifier] = ACTIONS(565), + [anon_sym_LF] = ACTIONS(567), + [anon_sym_CR] = ACTIONS(567), + [anon_sym_CR_LF] = ACTIONS(567), + [anon_sym_SLASH_SLASH] = ACTIONS(497), + [anon_sym_SLASH_STAR] = ACTIONS(499), + [anon_sym_DOT] = ACTIONS(567), + [anon_sym_as] = ACTIONS(567), + [anon_sym_LBRACE] = ACTIONS(567), + [anon_sym_COMMA] = ACTIONS(567), + [anon_sym_const] = ACTIONS(567), + [anon_sym_LPAREN] = ACTIONS(569), + [anon_sym___global] = ACTIONS(567), + [anon_sym_type] = ACTIONS(567), + [anon_sym_PIPE] = ACTIONS(567), + [anon_sym_fn] = ACTIONS(571), + [anon_sym_PLUS] = ACTIONS(567), + [anon_sym_DASH] = ACTIONS(567), + [anon_sym_STAR] = ACTIONS(573), + [anon_sym_SLASH] = ACTIONS(567), + [anon_sym_PERCENT] = ACTIONS(567), + [anon_sym_LT] = ACTIONS(567), + [anon_sym_GT] = ACTIONS(567), + [anon_sym_EQ_EQ] = ACTIONS(567), + [anon_sym_BANG_EQ] = ACTIONS(567), + [anon_sym_LT_EQ] = ACTIONS(567), + [anon_sym_GT_EQ] = ACTIONS(567), + [anon_sym_LBRACK] = ACTIONS(563), + [anon_sym_struct] = ACTIONS(575), + [anon_sym_union] = ACTIONS(567), + [anon_sym_pub] = ACTIONS(567), + [anon_sym_mut] = ACTIONS(567), + [anon_sym_enum] = ACTIONS(567), + [anon_sym_interface] = ACTIONS(567), + [anon_sym_PLUS_PLUS] = ACTIONS(567), + [anon_sym_DASH_DASH] = ACTIONS(567), + [anon_sym_QMARK] = ACTIONS(515), + [anon_sym_BANG] = ACTIONS(1231), + [anon_sym_go] = ACTIONS(567), + [anon_sym_spawn] = ACTIONS(567), + [anon_sym_json_DOTdecode] = ACTIONS(567), + [anon_sym_LBRACK2] = ACTIONS(579), + [anon_sym_TILDE] = ACTIONS(567), + [anon_sym_CARET] = ACTIONS(567), + [anon_sym_AMP] = ACTIONS(581), + [anon_sym_LT_DASH] = ACTIONS(567), + [anon_sym_LT_LT] = ACTIONS(567), + [anon_sym_GT_GT] = ACTIONS(567), + [anon_sym_GT_GT_GT] = ACTIONS(567), + [anon_sym_AMP_CARET] = ACTIONS(567), + [anon_sym_AMP_AMP] = ACTIONS(567), + [anon_sym_PIPE_PIPE] = ACTIONS(567), + [anon_sym_or] = ACTIONS(567), + [sym_none] = ACTIONS(567), + [sym_true] = ACTIONS(567), + [sym_false] = ACTIONS(567), + [sym_nil] = ACTIONS(567), + [anon_sym_QMARK_DOT] = ACTIONS(567), + [anon_sym_POUND_LBRACK] = ACTIONS(567), + [anon_sym_if] = ACTIONS(567), + [anon_sym_DOLLARif] = ACTIONS(567), + [anon_sym_is] = ACTIONS(567), + [anon_sym_BANGis] = ACTIONS(567), + [anon_sym_in] = ACTIONS(567), + [anon_sym_BANGin] = ACTIONS(567), + [anon_sym_match] = ACTIONS(567), + [anon_sym_select] = ACTIONS(567), + [anon_sym_lock] = ACTIONS(567), + [anon_sym_rlock] = ACTIONS(567), + [anon_sym_unsafe] = ACTIONS(567), + [anon_sym_sql] = ACTIONS(567), + [sym_int_literal] = ACTIONS(567), + [sym_float_literal] = ACTIONS(567), + [sym_rune_literal] = ACTIONS(567), + [sym_pseudo_compile_time_identifier] = ACTIONS(567), + [anon_sym_shared] = ACTIONS(583), + [anon_sym_map_LBRACK] = ACTIONS(549), + [anon_sym_chan] = ACTIONS(87), + [anon_sym_thread] = ACTIONS(89), + [anon_sym_atomic] = ACTIONS(91), + [anon_sym_assert] = ACTIONS(567), + [anon_sym_defer] = ACTIONS(567), + [anon_sym_goto] = ACTIONS(567), + [anon_sym_break] = ACTIONS(567), + [anon_sym_continue] = ACTIONS(567), + [anon_sym_return] = ACTIONS(567), + [anon_sym_DOLLARfor] = ACTIONS(567), + [anon_sym_for] = ACTIONS(567), + [anon_sym_POUND] = ACTIONS(567), + [anon_sym_asm] = ACTIONS(567), + [anon_sym_AT_LBRACK] = ACTIONS(567), + [sym___double_quote] = ACTIONS(567), + [sym___single_quote] = ACTIONS(567), + [sym___c_double_quote] = ACTIONS(567), + [sym___c_single_quote] = ACTIONS(567), + [sym___r_double_quote] = ACTIONS(567), + [sym___r_single_quote] = ACTIONS(567), + }, + [184] = { + [sym_line_comment] = STATE(184), + [sym_block_comment] = STATE(184), + [sym__expression] = STATE(1128), + [sym__expression_without_blocks] = STATE(1210), + [sym__expression_with_blocks] = STATE(1210), + [sym_inc_expression] = STATE(1211), + [sym_dec_expression] = STATE(1211), + [sym_or_block_expression] = STATE(1211), + [sym_option_propagation_expression] = STATE(1211), + [sym_result_propagation_expression] = STATE(1211), + [sym_anon_struct_value_expression] = STATE(1212), + [sym_go_expression] = STATE(1211), + [sym_spawn_expression] = STATE(1211), + [sym_parenthesized_expression] = STATE(1211), + [sym_call_expression] = STATE(1211), + [sym_type_initializer] = STATE(1212), + [sym_element_list] = STATE(4629), + [sym_short_element_list] = STATE(4630), + [sym_keyed_element] = STATE(3387), + [sym_function_literal] = STATE(1211), + [sym_reference_expression] = STATE(1154), + [sym_type_reference_expression] = STATE(3460), + [sym_unary_expression] = STATE(1211), + [sym_receive_expression] = STATE(1211), + [sym_binary_expression] = STATE(1211), + [sym_as_type_cast_expression] = STATE(1211), + [sym__max_group] = STATE(1211), + [sym_literal] = STATE(1209), + [sym_spread_expression] = STATE(3387), + [sym_map_init_expression] = STATE(1212), + [sym_array_creation] = STATE(1211), + [sym_fixed_array_creation] = STATE(1211), + [sym_selector_expression] = STATE(1211), + [sym_index_expression] = STATE(1211), + [sym_slice_expression] = STATE(1211), + [sym_if_expression] = STATE(1212), + [sym_compile_time_if_expression] = STATE(1212), + [sym_is_expression] = STATE(1211), + [sym_in_expression] = STATE(1211), + [sym_enum_fetch] = STATE(1211), + [sym_match_expression] = STATE(1212), + [sym_select_expression] = STATE(1212), + [sym_lock_expression] = STATE(1212), + [sym_unsafe_expression] = STATE(1212), + [sym_sql_expression] = STATE(1212), + [sym_c_string_literal] = STATE(1201), + [sym_raw_string_literal] = STATE(1201), + [sym_interpreted_string_literal] = STATE(1201), + [sym_mutability_modifiers] = STATE(589), + [sym_plain_type] = STATE(4123), + [sym__plain_type_without_special] = STATE(2360), + [sym_anon_struct_type] = STATE(2362), + [sym_multi_return_type] = STATE(2360), + [sym_result_type] = STATE(2360), + [sym_option_type] = STATE(2360), + [sym_qualified_type] = STATE(3460), + [sym_fixed_array_type] = STATE(2362), + [sym_array_type] = STATE(2362), + [sym_pointer_type] = STATE(2362), + [sym_wrong_pointer_type] = STATE(2362), + [sym_map_type] = STATE(2362), + [sym_channel_type] = STATE(2362), + [sym_shared_type] = STATE(2362), + [sym_thread_type] = STATE(2362), + [sym_atomic_type] = STATE(2362), + [sym_generic_type] = STATE(2362), + [sym_function_type] = STATE(2362), + [aux_sym_element_list_repeat1] = STATE(3413), + [aux_sym_short_element_list_repeat1] = STATE(375), + [sym_identifier] = ACTIONS(1139), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), [anon_sym_DOT] = ACTIONS(631), [anon_sym_LBRACE] = ACTIONS(633), - [anon_sym_RBRACE] = ACTIONS(1422), + [anon_sym_RBRACE] = ACTIONS(1233), [anon_sym_LPAREN] = ACTIONS(637), [anon_sym_fn] = ACTIONS(641), [anon_sym_PLUS] = ACTIONS(643), @@ -44587,82 +43995,82 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym___r_double_quote] = ACTIONS(697), [sym___r_single_quote] = ACTIONS(699), }, - [190] = { - [sym_line_comment] = STATE(190), - [sym_block_comment] = STATE(190), - [sym__expression] = STATE(1133), - [sym__expression_without_blocks] = STATE(1141), - [sym__expression_with_blocks] = STATE(1141), - [sym_inc_expression] = STATE(1140), - [sym_dec_expression] = STATE(1140), - [sym_or_block_expression] = STATE(1140), - [sym_option_propagation_expression] = STATE(1140), - [sym_result_propagation_expression] = STATE(1140), - [sym_anon_struct_value_expression] = STATE(1199), - [sym_go_expression] = STATE(1140), - [sym_spawn_expression] = STATE(1140), - [sym_parenthesized_expression] = STATE(1140), - [sym_call_expression] = STATE(1140), - [sym_type_initializer] = STATE(1199), - [sym_element_list] = STATE(4342), - [sym_short_element_list] = STATE(4337), - [sym_keyed_element] = STATE(3398), - [sym_function_literal] = STATE(1140), - [sym_reference_expression] = STATE(1185), - [sym_type_reference_expression] = STATE(3541), - [sym_unary_expression] = STATE(1140), - [sym_receive_expression] = STATE(1140), - [sym_binary_expression] = STATE(1140), - [sym_as_type_cast_expression] = STATE(1140), - [sym__max_group] = STATE(1140), - [sym_literal] = STATE(1146), - [sym_spread_expression] = STATE(3398), - [sym_map_init_expression] = STATE(1199), - [sym_array_creation] = STATE(1140), - [sym_fixed_array_creation] = STATE(1140), - [sym_selector_expression] = STATE(1140), - [sym_index_expression] = STATE(1140), - [sym_slice_expression] = STATE(1140), - [sym_if_expression] = STATE(1199), - [sym_compile_time_if_expression] = STATE(1199), - [sym_is_expression] = STATE(1140), - [sym_in_expression] = STATE(1140), - [sym_enum_fetch] = STATE(1140), - [sym_match_expression] = STATE(1199), - [sym_select_expression] = STATE(1199), - [sym_lock_expression] = STATE(1199), - [sym_unsafe_expression] = STATE(1199), - [sym_sql_expression] = STATE(1199), - [sym_c_string_literal] = STATE(1147), - [sym_raw_string_literal] = STATE(1147), - [sym_interpreted_string_literal] = STATE(1147), - [sym_mutability_modifiers] = STATE(638), - [sym_plain_type] = STATE(4234), - [sym__plain_type_without_special] = STATE(2302), - [sym_anon_struct_type] = STATE(2303), - [sym_multi_return_type] = STATE(2302), - [sym_result_type] = STATE(2302), - [sym_option_type] = STATE(2302), - [sym_qualified_type] = STATE(3541), - [sym_fixed_array_type] = STATE(2303), - [sym_array_type] = STATE(2303), - [sym_pointer_type] = STATE(2303), - [sym_wrong_pointer_type] = STATE(2303), - [sym_map_type] = STATE(2303), - [sym_channel_type] = STATE(2303), - [sym_shared_type] = STATE(2303), - [sym_thread_type] = STATE(2303), - [sym_atomic_type] = STATE(2303), - [sym_generic_type] = STATE(2303), - [sym_function_type] = STATE(2303), - [aux_sym_element_list_repeat1] = STATE(3400), - [aux_sym_short_element_list_repeat1] = STATE(374), - [sym_identifier] = ACTIONS(1071), + [185] = { + [sym_line_comment] = STATE(185), + [sym_block_comment] = STATE(185), + [sym__expression] = STATE(1128), + [sym__expression_without_blocks] = STATE(1210), + [sym__expression_with_blocks] = STATE(1210), + [sym_inc_expression] = STATE(1211), + [sym_dec_expression] = STATE(1211), + [sym_or_block_expression] = STATE(1211), + [sym_option_propagation_expression] = STATE(1211), + [sym_result_propagation_expression] = STATE(1211), + [sym_anon_struct_value_expression] = STATE(1212), + [sym_go_expression] = STATE(1211), + [sym_spawn_expression] = STATE(1211), + [sym_parenthesized_expression] = STATE(1211), + [sym_call_expression] = STATE(1211), + [sym_type_initializer] = STATE(1212), + [sym_element_list] = STATE(4430), + [sym_short_element_list] = STATE(4428), + [sym_keyed_element] = STATE(3387), + [sym_function_literal] = STATE(1211), + [sym_reference_expression] = STATE(1154), + [sym_type_reference_expression] = STATE(3460), + [sym_unary_expression] = STATE(1211), + [sym_receive_expression] = STATE(1211), + [sym_binary_expression] = STATE(1211), + [sym_as_type_cast_expression] = STATE(1211), + [sym__max_group] = STATE(1211), + [sym_literal] = STATE(1209), + [sym_spread_expression] = STATE(3387), + [sym_map_init_expression] = STATE(1212), + [sym_array_creation] = STATE(1211), + [sym_fixed_array_creation] = STATE(1211), + [sym_selector_expression] = STATE(1211), + [sym_index_expression] = STATE(1211), + [sym_slice_expression] = STATE(1211), + [sym_if_expression] = STATE(1212), + [sym_compile_time_if_expression] = STATE(1212), + [sym_is_expression] = STATE(1211), + [sym_in_expression] = STATE(1211), + [sym_enum_fetch] = STATE(1211), + [sym_match_expression] = STATE(1212), + [sym_select_expression] = STATE(1212), + [sym_lock_expression] = STATE(1212), + [sym_unsafe_expression] = STATE(1212), + [sym_sql_expression] = STATE(1212), + [sym_c_string_literal] = STATE(1201), + [sym_raw_string_literal] = STATE(1201), + [sym_interpreted_string_literal] = STATE(1201), + [sym_mutability_modifiers] = STATE(589), + [sym_plain_type] = STATE(4123), + [sym__plain_type_without_special] = STATE(2360), + [sym_anon_struct_type] = STATE(2362), + [sym_multi_return_type] = STATE(2360), + [sym_result_type] = STATE(2360), + [sym_option_type] = STATE(2360), + [sym_qualified_type] = STATE(3460), + [sym_fixed_array_type] = STATE(2362), + [sym_array_type] = STATE(2362), + [sym_pointer_type] = STATE(2362), + [sym_wrong_pointer_type] = STATE(2362), + [sym_map_type] = STATE(2362), + [sym_channel_type] = STATE(2362), + [sym_shared_type] = STATE(2362), + [sym_thread_type] = STATE(2362), + [sym_atomic_type] = STATE(2362), + [sym_generic_type] = STATE(2362), + [sym_function_type] = STATE(2362), + [aux_sym_element_list_repeat1] = STATE(3413), + [aux_sym_short_element_list_repeat1] = STATE(375), + [sym_identifier] = ACTIONS(1139), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), [anon_sym_DOT] = ACTIONS(631), [anon_sym_LBRACE] = ACTIONS(633), - [anon_sym_RBRACE] = ACTIONS(1424), + [anon_sym_RBRACE] = ACTIONS(1235), [anon_sym_LPAREN] = ACTIONS(637), [anon_sym_fn] = ACTIONS(641), [anon_sym_PLUS] = ACTIONS(643), @@ -44709,204 +44117,82 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym___r_double_quote] = ACTIONS(697), [sym___r_single_quote] = ACTIONS(699), }, - [191] = { - [sym_line_comment] = STATE(191), - [sym_block_comment] = STATE(191), - [sym__expression] = STATE(2617), - [sym__expression_without_blocks] = STATE(2300), - [sym__expression_with_blocks] = STATE(2300), - [sym_inc_expression] = STATE(2307), - [sym_dec_expression] = STATE(2307), - [sym_or_block_expression] = STATE(2307), - [sym_option_propagation_expression] = STATE(2307), - [sym_result_propagation_expression] = STATE(2307), - [sym_anon_struct_value_expression] = STATE(2380), - [sym_go_expression] = STATE(2307), - [sym_spawn_expression] = STATE(2307), - [sym_parenthesized_expression] = STATE(2307), - [sym_call_expression] = STATE(2307), - [sym_type_initializer] = STATE(2380), - [sym_function_literal] = STATE(2307), - [sym_reference_expression] = STATE(2791), - [sym_type_reference_expression] = STATE(3541), - [sym_unary_expression] = STATE(2307), - [sym_receive_expression] = STATE(2307), - [sym_binary_expression] = STATE(2307), - [sym_as_type_cast_expression] = STATE(2307), - [sym__max_group] = STATE(2307), - [sym_literal] = STATE(2830), - [sym_map_init_expression] = STATE(2380), - [sym_array_creation] = STATE(2307), - [sym_fixed_array_creation] = STATE(2307), - [sym_selector_expression] = STATE(2307), - [sym_index_expression] = STATE(2307), - [sym_slice_expression] = STATE(2307), - [sym_if_expression] = STATE(2380), - [sym_compile_time_if_expression] = STATE(2380), - [sym_is_expression] = STATE(2307), - [sym_in_expression] = STATE(2307), - [sym_enum_fetch] = STATE(2307), - [sym_match_expression] = STATE(2380), - [sym_select_expression] = STATE(2380), - [sym_lock_expression] = STATE(2380), - [sym_unsafe_expression] = STATE(2380), - [sym_sql_expression] = STATE(2380), - [sym_c_string_literal] = STATE(2308), - [sym_raw_string_literal] = STATE(2308), - [sym_interpreted_string_literal] = STATE(2308), - [sym_mutability_modifiers] = STATE(939), - [sym_plain_type] = STATE(4297), - [sym__plain_type_without_special] = STATE(2302), - [sym_anon_struct_type] = STATE(2303), - [sym_multi_return_type] = STATE(2302), - [sym_result_type] = STATE(2302), - [sym_option_type] = STATE(2302), - [sym_qualified_type] = STATE(3541), - [sym_fixed_array_type] = STATE(2303), - [sym_array_type] = STATE(2303), - [sym_pointer_type] = STATE(2303), - [sym_wrong_pointer_type] = STATE(2303), - [sym_map_type] = STATE(2303), - [sym_channel_type] = STATE(2303), - [sym_shared_type] = STATE(2303), - [sym_thread_type] = STATE(2303), - [sym_atomic_type] = STATE(2303), - [sym_generic_type] = STATE(2303), - [sym_function_type] = STATE(2303), - [sym_range] = STATE(4321), - [sym_attribute_expression] = STATE(3819), - [sym_if_attribute] = STATE(4152), - [sym__plain_attribute] = STATE(4152), - [sym_literal_attribute] = STATE(4153), - [sym_value_attribute] = STATE(3822), - [sym_key_value_attribute] = STATE(4153), - [sym_identifier] = ACTIONS(1426), - [anon_sym_SLASH_SLASH] = ACTIONS(3), - [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1428), - [anon_sym_LBRACE] = ACTIONS(1430), - [anon_sym_LPAREN] = ACTIONS(1432), - [anon_sym_fn] = ACTIONS(1434), - [anon_sym_PLUS] = ACTIONS(1436), - [anon_sym_DASH] = ACTIONS(1436), - [anon_sym_STAR] = ACTIONS(1438), - [anon_sym_struct] = ACTIONS(1440), - [anon_sym_mut] = ACTIONS(41), - [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(1442), - [anon_sym_go] = ACTIONS(1444), - [anon_sym_spawn] = ACTIONS(1446), - [anon_sym_json_DOTdecode] = ACTIONS(1448), - [anon_sym_LBRACK2] = ACTIONS(1450), - [anon_sym_TILDE] = ACTIONS(1436), - [anon_sym_CARET] = ACTIONS(1436), - [anon_sym_AMP] = ACTIONS(1452), - [anon_sym_LT_DASH] = ACTIONS(1454), - [sym_none] = ACTIONS(1456), - [sym_true] = ACTIONS(1456), - [sym_false] = ACTIONS(1456), - [sym_nil] = ACTIONS(1456), - [anon_sym_if] = ACTIONS(1458), - [anon_sym_DOLLARif] = ACTIONS(1460), - [anon_sym_match] = ACTIONS(1462), - [anon_sym_select] = ACTIONS(1464), - [anon_sym_lock] = ACTIONS(1466), - [anon_sym_rlock] = ACTIONS(1466), - [anon_sym_unsafe] = ACTIONS(1468), - [anon_sym_sql] = ACTIONS(1470), - [sym_int_literal] = ACTIONS(1456), - [sym_float_literal] = ACTIONS(1472), - [sym_rune_literal] = ACTIONS(1472), - [sym_pseudo_compile_time_identifier] = ACTIONS(1474), - [anon_sym_shared] = ACTIONS(83), - [anon_sym_map_LBRACK] = ACTIONS(85), - [anon_sym_chan] = ACTIONS(87), - [anon_sym_thread] = ACTIONS(89), - [anon_sym_atomic] = ACTIONS(91), - [anon_sym_DOT_DOT] = ACTIONS(1476), - [sym___double_quote] = ACTIONS(1478), - [sym___single_quote] = ACTIONS(1480), - [sym___c_double_quote] = ACTIONS(1482), - [sym___c_single_quote] = ACTIONS(1484), - [sym___r_double_quote] = ACTIONS(1486), - [sym___r_single_quote] = ACTIONS(1488), - }, - [192] = { - [sym_line_comment] = STATE(192), - [sym_block_comment] = STATE(192), - [sym__expression] = STATE(1133), - [sym__expression_without_blocks] = STATE(1141), - [sym__expression_with_blocks] = STATE(1141), - [sym_inc_expression] = STATE(1140), - [sym_dec_expression] = STATE(1140), - [sym_or_block_expression] = STATE(1140), - [sym_option_propagation_expression] = STATE(1140), - [sym_result_propagation_expression] = STATE(1140), - [sym_anon_struct_value_expression] = STATE(1199), - [sym_go_expression] = STATE(1140), - [sym_spawn_expression] = STATE(1140), - [sym_parenthesized_expression] = STATE(1140), - [sym_call_expression] = STATE(1140), - [sym_type_initializer] = STATE(1199), - [sym_element_list] = STATE(4457), - [sym_short_element_list] = STATE(4449), - [sym_keyed_element] = STATE(3398), - [sym_function_literal] = STATE(1140), - [sym_reference_expression] = STATE(1185), - [sym_type_reference_expression] = STATE(3541), - [sym_unary_expression] = STATE(1140), - [sym_receive_expression] = STATE(1140), - [sym_binary_expression] = STATE(1140), - [sym_as_type_cast_expression] = STATE(1140), - [sym__max_group] = STATE(1140), - [sym_literal] = STATE(1146), - [sym_spread_expression] = STATE(3398), - [sym_map_init_expression] = STATE(1199), - [sym_array_creation] = STATE(1140), - [sym_fixed_array_creation] = STATE(1140), - [sym_selector_expression] = STATE(1140), - [sym_index_expression] = STATE(1140), - [sym_slice_expression] = STATE(1140), - [sym_if_expression] = STATE(1199), - [sym_compile_time_if_expression] = STATE(1199), - [sym_is_expression] = STATE(1140), - [sym_in_expression] = STATE(1140), - [sym_enum_fetch] = STATE(1140), - [sym_match_expression] = STATE(1199), - [sym_select_expression] = STATE(1199), - [sym_lock_expression] = STATE(1199), - [sym_unsafe_expression] = STATE(1199), - [sym_sql_expression] = STATE(1199), - [sym_c_string_literal] = STATE(1147), - [sym_raw_string_literal] = STATE(1147), - [sym_interpreted_string_literal] = STATE(1147), - [sym_mutability_modifiers] = STATE(638), - [sym_plain_type] = STATE(4234), - [sym__plain_type_without_special] = STATE(2302), - [sym_anon_struct_type] = STATE(2303), - [sym_multi_return_type] = STATE(2302), - [sym_result_type] = STATE(2302), - [sym_option_type] = STATE(2302), - [sym_qualified_type] = STATE(3541), - [sym_fixed_array_type] = STATE(2303), - [sym_array_type] = STATE(2303), - [sym_pointer_type] = STATE(2303), - [sym_wrong_pointer_type] = STATE(2303), - [sym_map_type] = STATE(2303), - [sym_channel_type] = STATE(2303), - [sym_shared_type] = STATE(2303), - [sym_thread_type] = STATE(2303), - [sym_atomic_type] = STATE(2303), - [sym_generic_type] = STATE(2303), - [sym_function_type] = STATE(2303), - [aux_sym_element_list_repeat1] = STATE(3400), - [aux_sym_short_element_list_repeat1] = STATE(374), - [sym_identifier] = ACTIONS(1071), + [186] = { + [sym_line_comment] = STATE(186), + [sym_block_comment] = STATE(186), + [sym__expression] = STATE(1128), + [sym__expression_without_blocks] = STATE(1210), + [sym__expression_with_blocks] = STATE(1210), + [sym_inc_expression] = STATE(1211), + [sym_dec_expression] = STATE(1211), + [sym_or_block_expression] = STATE(1211), + [sym_option_propagation_expression] = STATE(1211), + [sym_result_propagation_expression] = STATE(1211), + [sym_anon_struct_value_expression] = STATE(1212), + [sym_go_expression] = STATE(1211), + [sym_spawn_expression] = STATE(1211), + [sym_parenthesized_expression] = STATE(1211), + [sym_call_expression] = STATE(1211), + [sym_type_initializer] = STATE(1212), + [sym_element_list] = STATE(4633), + [sym_short_element_list] = STATE(4575), + [sym_keyed_element] = STATE(3387), + [sym_function_literal] = STATE(1211), + [sym_reference_expression] = STATE(1154), + [sym_type_reference_expression] = STATE(3460), + [sym_unary_expression] = STATE(1211), + [sym_receive_expression] = STATE(1211), + [sym_binary_expression] = STATE(1211), + [sym_as_type_cast_expression] = STATE(1211), + [sym__max_group] = STATE(1211), + [sym_literal] = STATE(1209), + [sym_spread_expression] = STATE(3387), + [sym_map_init_expression] = STATE(1212), + [sym_array_creation] = STATE(1211), + [sym_fixed_array_creation] = STATE(1211), + [sym_selector_expression] = STATE(1211), + [sym_index_expression] = STATE(1211), + [sym_slice_expression] = STATE(1211), + [sym_if_expression] = STATE(1212), + [sym_compile_time_if_expression] = STATE(1212), + [sym_is_expression] = STATE(1211), + [sym_in_expression] = STATE(1211), + [sym_enum_fetch] = STATE(1211), + [sym_match_expression] = STATE(1212), + [sym_select_expression] = STATE(1212), + [sym_lock_expression] = STATE(1212), + [sym_unsafe_expression] = STATE(1212), + [sym_sql_expression] = STATE(1212), + [sym_c_string_literal] = STATE(1201), + [sym_raw_string_literal] = STATE(1201), + [sym_interpreted_string_literal] = STATE(1201), + [sym_mutability_modifiers] = STATE(589), + [sym_plain_type] = STATE(4123), + [sym__plain_type_without_special] = STATE(2360), + [sym_anon_struct_type] = STATE(2362), + [sym_multi_return_type] = STATE(2360), + [sym_result_type] = STATE(2360), + [sym_option_type] = STATE(2360), + [sym_qualified_type] = STATE(3460), + [sym_fixed_array_type] = STATE(2362), + [sym_array_type] = STATE(2362), + [sym_pointer_type] = STATE(2362), + [sym_wrong_pointer_type] = STATE(2362), + [sym_map_type] = STATE(2362), + [sym_channel_type] = STATE(2362), + [sym_shared_type] = STATE(2362), + [sym_thread_type] = STATE(2362), + [sym_atomic_type] = STATE(2362), + [sym_generic_type] = STATE(2362), + [sym_function_type] = STATE(2362), + [aux_sym_element_list_repeat1] = STATE(3413), + [aux_sym_short_element_list_repeat1] = STATE(375), + [sym_identifier] = ACTIONS(1139), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), [anon_sym_DOT] = ACTIONS(631), [anon_sym_LBRACE] = ACTIONS(633), - [anon_sym_RBRACE] = ACTIONS(1490), + [anon_sym_RBRACE] = ACTIONS(1237), [anon_sym_LPAREN] = ACTIONS(637), [anon_sym_fn] = ACTIONS(641), [anon_sym_PLUS] = ACTIONS(643), @@ -44953,223 +44239,833 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym___r_double_quote] = ACTIONS(697), [sym___r_single_quote] = ACTIONS(699), }, - [193] = { - [sym_line_comment] = STATE(193), - [sym_block_comment] = STATE(193), - [sym__expression] = STATE(1133), - [sym__expression_without_blocks] = STATE(1141), - [sym__expression_with_blocks] = STATE(1141), - [sym_inc_expression] = STATE(1140), - [sym_dec_expression] = STATE(1140), - [sym_or_block_expression] = STATE(1140), - [sym_option_propagation_expression] = STATE(1140), - [sym_result_propagation_expression] = STATE(1140), - [sym_anon_struct_value_expression] = STATE(1199), - [sym_go_expression] = STATE(1140), - [sym_spawn_expression] = STATE(1140), - [sym_parenthesized_expression] = STATE(1140), - [sym_call_expression] = STATE(1140), - [sym_type_initializer] = STATE(1199), - [sym_element_list] = STATE(4633), - [sym_short_element_list] = STATE(4634), - [sym_keyed_element] = STATE(3398), - [sym_function_literal] = STATE(1140), - [sym_reference_expression] = STATE(1185), - [sym_type_reference_expression] = STATE(3541), - [sym_unary_expression] = STATE(1140), - [sym_receive_expression] = STATE(1140), - [sym_binary_expression] = STATE(1140), - [sym_as_type_cast_expression] = STATE(1140), - [sym__max_group] = STATE(1140), - [sym_literal] = STATE(1146), - [sym_spread_expression] = STATE(3398), - [sym_map_init_expression] = STATE(1199), - [sym_array_creation] = STATE(1140), - [sym_fixed_array_creation] = STATE(1140), - [sym_selector_expression] = STATE(1140), - [sym_index_expression] = STATE(1140), - [sym_slice_expression] = STATE(1140), - [sym_if_expression] = STATE(1199), - [sym_compile_time_if_expression] = STATE(1199), - [sym_is_expression] = STATE(1140), - [sym_in_expression] = STATE(1140), - [sym_enum_fetch] = STATE(1140), - [sym_match_expression] = STATE(1199), - [sym_select_expression] = STATE(1199), - [sym_lock_expression] = STATE(1199), - [sym_unsafe_expression] = STATE(1199), - [sym_sql_expression] = STATE(1199), - [sym_c_string_literal] = STATE(1147), - [sym_raw_string_literal] = STATE(1147), - [sym_interpreted_string_literal] = STATE(1147), - [sym_mutability_modifiers] = STATE(638), - [sym_plain_type] = STATE(4234), - [sym__plain_type_without_special] = STATE(2302), - [sym_anon_struct_type] = STATE(2303), - [sym_multi_return_type] = STATE(2302), - [sym_result_type] = STATE(2302), - [sym_option_type] = STATE(2302), - [sym_qualified_type] = STATE(3541), - [sym_fixed_array_type] = STATE(2303), - [sym_array_type] = STATE(2303), - [sym_pointer_type] = STATE(2303), - [sym_wrong_pointer_type] = STATE(2303), - [sym_map_type] = STATE(2303), - [sym_channel_type] = STATE(2303), - [sym_shared_type] = STATE(2303), - [sym_thread_type] = STATE(2303), - [sym_atomic_type] = STATE(2303), - [sym_generic_type] = STATE(2303), - [sym_function_type] = STATE(2303), - [aux_sym_element_list_repeat1] = STATE(3400), - [aux_sym_short_element_list_repeat1] = STATE(374), + [187] = { + [sym_line_comment] = STATE(187), + [sym_block_comment] = STATE(187), + [sym__expression] = STATE(2585), + [sym__expression_without_blocks] = STATE(2584), + [sym__expression_with_blocks] = STATE(2638), + [sym_inc_expression] = STATE(2765), + [sym_dec_expression] = STATE(2765), + [sym_or_block_expression] = STATE(2765), + [sym_option_propagation_expression] = STATE(2765), + [sym_result_propagation_expression] = STATE(2765), + [sym_anon_struct_value_expression] = STATE(2637), + [sym_go_expression] = STATE(2765), + [sym_spawn_expression] = STATE(2765), + [sym_parenthesized_expression] = STATE(2765), + [sym_call_expression] = STATE(2765), + [sym_type_initializer] = STATE(2637), + [sym_function_literal] = STATE(2765), + [sym_reference_expression] = STATE(2764), + [sym_type_reference_expression] = STATE(3460), + [sym_unary_expression] = STATE(2765), + [sym_receive_expression] = STATE(2765), + [sym_binary_expression] = STATE(2765), + [sym_as_type_cast_expression] = STATE(2765), + [sym__max_group] = STATE(2765), + [sym_literal] = STATE(2771), + [sym_map_init_expression] = STATE(2637), + [sym_array_creation] = STATE(2765), + [sym_fixed_array_creation] = STATE(2765), + [sym_selector_expression] = STATE(2765), + [sym_index_expression] = STATE(2765), + [sym_slice_expression] = STATE(2765), + [sym_if_expression] = STATE(2637), + [sym_compile_time_if_expression] = STATE(2637), + [sym_is_expression] = STATE(2765), + [sym_in_expression] = STATE(2765), + [sym_enum_fetch] = STATE(2765), + [sym_match_expression] = STATE(2637), + [sym_match_arm] = STATE(2141), + [sym_match_expression_list] = STATE(4299), + [sym_match_arm_type] = STATE(3851), + [sym_match_else_arm_clause] = STATE(2141), + [sym_select_expression] = STATE(2637), + [sym_lock_expression] = STATE(2637), + [sym_unsafe_expression] = STATE(2637), + [sym_sql_expression] = STATE(2637), + [sym_c_string_literal] = STATE(2762), + [sym_raw_string_literal] = STATE(2762), + [sym_interpreted_string_literal] = STATE(2762), + [sym_mutability_modifiers] = STATE(822), + [sym_plain_type] = STATE(3848), + [sym__plain_type_without_special] = STATE(2360), + [sym_anon_struct_type] = STATE(2362), + [sym_multi_return_type] = STATE(2360), + [sym_result_type] = STATE(2360), + [sym_option_type] = STATE(2360), + [sym_qualified_type] = STATE(3460), + [sym_fixed_array_type] = STATE(2362), + [sym_array_type] = STATE(2362), + [sym_pointer_type] = STATE(2362), + [sym_wrong_pointer_type] = STATE(2362), + [sym_map_type] = STATE(2362), + [sym_channel_type] = STATE(2362), + [sym_shared_type] = STATE(2362), + [sym_thread_type] = STATE(2362), + [sym_atomic_type] = STATE(2362), + [sym_generic_type] = STATE(2362), + [sym_function_type] = STATE(2362), + [sym__definite_range] = STATE(3816), + [aux_sym_match_arms_repeat1] = STATE(187), + [sym_identifier] = ACTIONS(1239), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(1242), + [anon_sym_LBRACE] = ACTIONS(1245), + [anon_sym_RBRACE] = ACTIONS(1248), + [anon_sym_LPAREN] = ACTIONS(1250), + [anon_sym_fn] = ACTIONS(1253), + [anon_sym_PLUS] = ACTIONS(1256), + [anon_sym_DASH] = ACTIONS(1256), + [anon_sym_STAR] = ACTIONS(1259), + [anon_sym_struct] = ACTIONS(1262), + [anon_sym_mut] = ACTIONS(1265), + [anon_sym_QMARK] = ACTIONS(1268), + [anon_sym_BANG] = ACTIONS(1271), + [anon_sym_go] = ACTIONS(1274), + [anon_sym_spawn] = ACTIONS(1277), + [anon_sym_json_DOTdecode] = ACTIONS(1280), + [anon_sym_LBRACK2] = ACTIONS(1283), + [anon_sym_TILDE] = ACTIONS(1256), + [anon_sym_CARET] = ACTIONS(1256), + [anon_sym_AMP] = ACTIONS(1286), + [anon_sym_LT_DASH] = ACTIONS(1289), + [sym_none] = ACTIONS(1292), + [sym_true] = ACTIONS(1292), + [sym_false] = ACTIONS(1292), + [sym_nil] = ACTIONS(1292), + [anon_sym_if] = ACTIONS(1295), + [anon_sym_else] = ACTIONS(1298), + [anon_sym_DOLLARif] = ACTIONS(1301), + [anon_sym_match] = ACTIONS(1304), + [anon_sym_select] = ACTIONS(1307), + [anon_sym_lock] = ACTIONS(1310), + [anon_sym_rlock] = ACTIONS(1310), + [anon_sym_unsafe] = ACTIONS(1313), + [anon_sym_sql] = ACTIONS(1316), + [sym_int_literal] = ACTIONS(1292), + [sym_float_literal] = ACTIONS(1319), + [sym_rune_literal] = ACTIONS(1319), + [sym_pseudo_compile_time_identifier] = ACTIONS(1322), + [anon_sym_shared] = ACTIONS(1325), + [anon_sym_map_LBRACK] = ACTIONS(1328), + [anon_sym_chan] = ACTIONS(1331), + [anon_sym_thread] = ACTIONS(1334), + [anon_sym_atomic] = ACTIONS(1337), + [sym___double_quote] = ACTIONS(1340), + [sym___single_quote] = ACTIONS(1343), + [sym___c_double_quote] = ACTIONS(1346), + [sym___c_single_quote] = ACTIONS(1349), + [sym___r_double_quote] = ACTIONS(1352), + [sym___r_single_quote] = ACTIONS(1355), + }, + [188] = { + [sym_line_comment] = STATE(188), + [sym_block_comment] = STATE(188), + [sym__expression] = STATE(2585), + [sym__expression_without_blocks] = STATE(2584), + [sym__expression_with_blocks] = STATE(2638), + [sym_inc_expression] = STATE(2765), + [sym_dec_expression] = STATE(2765), + [sym_or_block_expression] = STATE(2765), + [sym_option_propagation_expression] = STATE(2765), + [sym_result_propagation_expression] = STATE(2765), + [sym_anon_struct_value_expression] = STATE(2637), + [sym_go_expression] = STATE(2765), + [sym_spawn_expression] = STATE(2765), + [sym_parenthesized_expression] = STATE(2765), + [sym_call_expression] = STATE(2765), + [sym_type_initializer] = STATE(2637), + [sym_function_literal] = STATE(2765), + [sym_reference_expression] = STATE(2764), + [sym_type_reference_expression] = STATE(3460), + [sym_unary_expression] = STATE(2765), + [sym_receive_expression] = STATE(2765), + [sym_binary_expression] = STATE(2765), + [sym_as_type_cast_expression] = STATE(2765), + [sym__max_group] = STATE(2765), + [sym_literal] = STATE(2771), + [sym_map_init_expression] = STATE(2637), + [sym_array_creation] = STATE(2765), + [sym_fixed_array_creation] = STATE(2765), + [sym_selector_expression] = STATE(2765), + [sym_index_expression] = STATE(2765), + [sym_slice_expression] = STATE(2765), + [sym_if_expression] = STATE(2637), + [sym_compile_time_if_expression] = STATE(2637), + [sym_is_expression] = STATE(2765), + [sym_in_expression] = STATE(2765), + [sym_enum_fetch] = STATE(2765), + [sym_match_expression] = STATE(2637), + [sym_match_arm] = STATE(2141), + [sym_match_expression_list] = STATE(4299), + [sym_match_arm_type] = STATE(3851), + [sym_match_else_arm_clause] = STATE(2141), + [sym_select_expression] = STATE(2637), + [sym_lock_expression] = STATE(2637), + [sym_unsafe_expression] = STATE(2637), + [sym_sql_expression] = STATE(2637), + [sym_c_string_literal] = STATE(2762), + [sym_raw_string_literal] = STATE(2762), + [sym_interpreted_string_literal] = STATE(2762), + [sym_mutability_modifiers] = STATE(822), + [sym_plain_type] = STATE(3848), + [sym__plain_type_without_special] = STATE(2360), + [sym_anon_struct_type] = STATE(2362), + [sym_multi_return_type] = STATE(2360), + [sym_result_type] = STATE(2360), + [sym_option_type] = STATE(2360), + [sym_qualified_type] = STATE(3460), + [sym_fixed_array_type] = STATE(2362), + [sym_array_type] = STATE(2362), + [sym_pointer_type] = STATE(2362), + [sym_wrong_pointer_type] = STATE(2362), + [sym_map_type] = STATE(2362), + [sym_channel_type] = STATE(2362), + [sym_shared_type] = STATE(2362), + [sym_thread_type] = STATE(2362), + [sym_atomic_type] = STATE(2362), + [sym_generic_type] = STATE(2362), + [sym_function_type] = STATE(2362), + [sym__definite_range] = STATE(3816), + [aux_sym_match_arms_repeat1] = STATE(187), [sym_identifier] = ACTIONS(1071), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(631), - [anon_sym_LBRACE] = ACTIONS(633), - [anon_sym_RBRACE] = ACTIONS(1492), - [anon_sym_LPAREN] = ACTIONS(637), - [anon_sym_fn] = ACTIONS(641), - [anon_sym_PLUS] = ACTIONS(643), - [anon_sym_DASH] = ACTIONS(643), - [anon_sym_STAR] = ACTIONS(645), - [anon_sym_DOT_DOT_DOT] = ACTIONS(647), - [anon_sym_struct] = ACTIONS(649), + [anon_sym_DOT] = ACTIONS(1073), + [anon_sym_LBRACE] = ACTIONS(1075), + [anon_sym_RBRACE] = ACTIONS(1358), + [anon_sym_LPAREN] = ACTIONS(1079), + [anon_sym_fn] = ACTIONS(1081), + [anon_sym_PLUS] = ACTIONS(1083), + [anon_sym_DASH] = ACTIONS(1083), + [anon_sym_STAR] = ACTIONS(1085), + [anon_sym_struct] = ACTIONS(1087), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(655), - [anon_sym_go] = ACTIONS(657), - [anon_sym_spawn] = ACTIONS(659), - [anon_sym_json_DOTdecode] = ACTIONS(661), - [anon_sym_LBRACK2] = ACTIONS(663), - [anon_sym_TILDE] = ACTIONS(643), - [anon_sym_CARET] = ACTIONS(643), - [anon_sym_AMP] = ACTIONS(665), - [anon_sym_LT_DASH] = ACTIONS(667), - [sym_none] = ACTIONS(669), - [sym_true] = ACTIONS(669), - [sym_false] = ACTIONS(669), - [sym_nil] = ACTIONS(669), - [anon_sym_if] = ACTIONS(671), - [anon_sym_DOLLARif] = ACTIONS(673), - [anon_sym_match] = ACTIONS(675), - [anon_sym_select] = ACTIONS(677), - [anon_sym_lock] = ACTIONS(679), - [anon_sym_rlock] = ACTIONS(679), - [anon_sym_unsafe] = ACTIONS(681), - [anon_sym_sql] = ACTIONS(683), - [sym_int_literal] = ACTIONS(669), - [sym_float_literal] = ACTIONS(685), - [sym_rune_literal] = ACTIONS(685), - [sym_pseudo_compile_time_identifier] = ACTIONS(687), + [anon_sym_BANG] = ACTIONS(1089), + [anon_sym_go] = ACTIONS(1091), + [anon_sym_spawn] = ACTIONS(1093), + [anon_sym_json_DOTdecode] = ACTIONS(1095), + [anon_sym_LBRACK2] = ACTIONS(1097), + [anon_sym_TILDE] = ACTIONS(1083), + [anon_sym_CARET] = ACTIONS(1083), + [anon_sym_AMP] = ACTIONS(1099), + [anon_sym_LT_DASH] = ACTIONS(1101), + [sym_none] = ACTIONS(1103), + [sym_true] = ACTIONS(1103), + [sym_false] = ACTIONS(1103), + [sym_nil] = ACTIONS(1103), + [anon_sym_if] = ACTIONS(1105), + [anon_sym_else] = ACTIONS(1107), + [anon_sym_DOLLARif] = ACTIONS(1109), + [anon_sym_match] = ACTIONS(1111), + [anon_sym_select] = ACTIONS(1113), + [anon_sym_lock] = ACTIONS(1115), + [anon_sym_rlock] = ACTIONS(1115), + [anon_sym_unsafe] = ACTIONS(1117), + [anon_sym_sql] = ACTIONS(1119), + [sym_int_literal] = ACTIONS(1103), + [sym_float_literal] = ACTIONS(1121), + [sym_rune_literal] = ACTIONS(1121), + [sym_pseudo_compile_time_identifier] = ACTIONS(1123), [anon_sym_shared] = ACTIONS(83), [anon_sym_map_LBRACK] = ACTIONS(85), [anon_sym_chan] = ACTIONS(87), [anon_sym_thread] = ACTIONS(89), [anon_sym_atomic] = ACTIONS(91), - [sym___double_quote] = ACTIONS(689), - [sym___single_quote] = ACTIONS(691), - [sym___c_double_quote] = ACTIONS(693), - [sym___c_single_quote] = ACTIONS(695), - [sym___r_double_quote] = ACTIONS(697), - [sym___r_single_quote] = ACTIONS(699), + [sym___double_quote] = ACTIONS(1125), + [sym___single_quote] = ACTIONS(1127), + [sym___c_double_quote] = ACTIONS(1129), + [sym___c_single_quote] = ACTIONS(1131), + [sym___r_double_quote] = ACTIONS(1133), + [sym___r_single_quote] = ACTIONS(1135), }, - [194] = { - [sym_line_comment] = STATE(194), - [sym_block_comment] = STATE(194), - [sym__expression] = STATE(1133), - [sym__expression_without_blocks] = STATE(1141), - [sym__expression_with_blocks] = STATE(1141), - [sym_inc_expression] = STATE(1140), - [sym_dec_expression] = STATE(1140), - [sym_or_block_expression] = STATE(1140), - [sym_option_propagation_expression] = STATE(1140), - [sym_result_propagation_expression] = STATE(1140), - [sym_anon_struct_value_expression] = STATE(1199), - [sym_go_expression] = STATE(1140), - [sym_spawn_expression] = STATE(1140), - [sym_parenthesized_expression] = STATE(1140), - [sym_call_expression] = STATE(1140), - [sym_type_initializer] = STATE(1199), - [sym_element_list] = STATE(4641), - [sym_short_element_list] = STATE(4637), - [sym_keyed_element] = STATE(3398), - [sym_function_literal] = STATE(1140), - [sym_reference_expression] = STATE(1185), - [sym_type_reference_expression] = STATE(3541), - [sym_unary_expression] = STATE(1140), - [sym_receive_expression] = STATE(1140), - [sym_binary_expression] = STATE(1140), - [sym_as_type_cast_expression] = STATE(1140), - [sym__max_group] = STATE(1140), - [sym_literal] = STATE(1146), - [sym_spread_expression] = STATE(3398), - [sym_map_init_expression] = STATE(1199), - [sym_array_creation] = STATE(1140), - [sym_fixed_array_creation] = STATE(1140), - [sym_selector_expression] = STATE(1140), - [sym_index_expression] = STATE(1140), - [sym_slice_expression] = STATE(1140), - [sym_if_expression] = STATE(1199), - [sym_compile_time_if_expression] = STATE(1199), - [sym_is_expression] = STATE(1140), - [sym_in_expression] = STATE(1140), - [sym_enum_fetch] = STATE(1140), - [sym_match_expression] = STATE(1199), - [sym_select_expression] = STATE(1199), - [sym_lock_expression] = STATE(1199), - [sym_unsafe_expression] = STATE(1199), - [sym_sql_expression] = STATE(1199), - [sym_c_string_literal] = STATE(1147), - [sym_raw_string_literal] = STATE(1147), - [sym_interpreted_string_literal] = STATE(1147), - [sym_mutability_modifiers] = STATE(638), - [sym_plain_type] = STATE(4234), - [sym__plain_type_without_special] = STATE(2302), - [sym_anon_struct_type] = STATE(2303), - [sym_multi_return_type] = STATE(2302), - [sym_result_type] = STATE(2302), - [sym_option_type] = STATE(2302), - [sym_qualified_type] = STATE(3541), - [sym_fixed_array_type] = STATE(2303), - [sym_array_type] = STATE(2303), - [sym_pointer_type] = STATE(2303), - [sym_wrong_pointer_type] = STATE(2303), - [sym_map_type] = STATE(2303), - [sym_channel_type] = STATE(2303), - [sym_shared_type] = STATE(2303), - [sym_thread_type] = STATE(2303), - [sym_atomic_type] = STATE(2303), - [sym_generic_type] = STATE(2303), - [sym_function_type] = STATE(2303), - [aux_sym_element_list_repeat1] = STATE(3400), - [aux_sym_short_element_list_repeat1] = STATE(374), - [sym_identifier] = ACTIONS(1071), + [189] = { + [sym_line_comment] = STATE(189), + [sym_block_comment] = STATE(189), + [sym__expression] = STATE(1273), + [sym__expression_without_blocks] = STATE(1318), + [sym__expression_with_blocks] = STATE(1318), + [sym_inc_expression] = STATE(1319), + [sym_dec_expression] = STATE(1319), + [sym_or_block_expression] = STATE(1319), + [sym_option_propagation_expression] = STATE(1319), + [sym_result_propagation_expression] = STATE(1319), + [sym_anon_struct_value_expression] = STATE(1320), + [sym_go_expression] = STATE(1319), + [sym_spawn_expression] = STATE(1319), + [sym_parenthesized_expression] = STATE(1319), + [sym_call_expression] = STATE(1319), + [sym_type_initializer] = STATE(1320), + [sym_function_literal] = STATE(1319), + [sym_reference_expression] = STATE(1369), + [sym_type_reference_expression] = STATE(3460), + [sym_unary_expression] = STATE(1319), + [sym_receive_expression] = STATE(1319), + [sym_binary_expression] = STATE(1319), + [sym_as_type_cast_expression] = STATE(1319), + [sym__max_group] = STATE(1319), + [sym_literal] = STATE(1390), + [sym_map_init_expression] = STATE(1320), + [sym_array_creation] = STATE(1319), + [sym_fixed_array_creation] = STATE(1319), + [sym_selector_expression] = STATE(1399), + [sym_index_expression] = STATE(1319), + [sym_slice_expression] = STATE(1319), + [sym_if_expression] = STATE(1320), + [sym_compile_time_if_expression] = STATE(1320), + [sym_is_expression] = STATE(1319), + [sym_in_expression] = STATE(1319), + [sym_enum_fetch] = STATE(1319), + [sym_match_expression] = STATE(1320), + [sym_select_expression] = STATE(1320), + [sym_lock_expression] = STATE(1320), + [sym_unsafe_expression] = STATE(1320), + [sym_sql_expression] = STATE(1320), + [sym_c_string_literal] = STATE(1291), + [sym_raw_string_literal] = STATE(1291), + [sym_interpreted_string_literal] = STATE(1291), + [sym_mutability_modifiers] = STATE(639), + [sym_plain_type] = STATE(4307), + [sym__plain_type_without_special] = STATE(2360), + [sym_anon_struct_type] = STATE(2362), + [sym_multi_return_type] = STATE(2360), + [sym_result_type] = STATE(2360), + [sym_option_type] = STATE(2360), + [sym_qualified_type] = STATE(3460), + [sym_fixed_array_type] = STATE(2362), + [sym_array_type] = STATE(2362), + [sym_pointer_type] = STATE(2362), + [sym_wrong_pointer_type] = STATE(2362), + [sym_map_type] = STATE(2362), + [sym_channel_type] = STATE(2362), + [sym_shared_type] = STATE(2362), + [sym_thread_type] = STATE(2362), + [sym_atomic_type] = STATE(2362), + [sym_generic_type] = STATE(2362), + [sym_function_type] = STATE(2362), + [sym_attribute_expression] = STATE(3861), + [sym_if_attribute] = STATE(4192), + [sym__plain_attribute] = STATE(4192), + [sym_literal_attribute] = STATE(4193), + [sym_value_attribute] = STATE(3862), + [sym_key_value_attribute] = STATE(4193), + [aux_sym__array_repeat1] = STATE(424), + [sym_identifier] = ACTIONS(1360), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(631), - [anon_sym_LBRACE] = ACTIONS(633), - [anon_sym_RBRACE] = ACTIONS(1494), - [anon_sym_LPAREN] = ACTIONS(637), - [anon_sym_fn] = ACTIONS(641), - [anon_sym_PLUS] = ACTIONS(643), - [anon_sym_DASH] = ACTIONS(643), - [anon_sym_STAR] = ACTIONS(645), - [anon_sym_DOT_DOT_DOT] = ACTIONS(647), - [anon_sym_struct] = ACTIONS(649), + [anon_sym_DOT] = ACTIONS(1362), + [anon_sym_LBRACE] = ACTIONS(1364), + [anon_sym_LPAREN] = ACTIONS(1366), + [anon_sym_fn] = ACTIONS(1368), + [anon_sym_PLUS] = ACTIONS(1370), + [anon_sym_DASH] = ACTIONS(1370), + [anon_sym_STAR] = ACTIONS(1372), + [anon_sym_RBRACK] = ACTIONS(1374), + [anon_sym_struct] = ACTIONS(1376), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(655), - [anon_sym_go] = ACTIONS(657), - [anon_sym_spawn] = ACTIONS(659), - [anon_sym_json_DOTdecode] = ACTIONS(661), - [anon_sym_LBRACK2] = ACTIONS(663), - [anon_sym_TILDE] = ACTIONS(643), - [anon_sym_CARET] = ACTIONS(643), - [anon_sym_AMP] = ACTIONS(665), - [anon_sym_LT_DASH] = ACTIONS(667), - [sym_none] = ACTIONS(669), + [anon_sym_BANG] = ACTIONS(1378), + [anon_sym_go] = ACTIONS(1380), + [anon_sym_spawn] = ACTIONS(1382), + [anon_sym_json_DOTdecode] = ACTIONS(1384), + [anon_sym_LBRACK2] = ACTIONS(1386), + [anon_sym_TILDE] = ACTIONS(1370), + [anon_sym_CARET] = ACTIONS(1370), + [anon_sym_AMP] = ACTIONS(1388), + [anon_sym_LT_DASH] = ACTIONS(1390), + [sym_none] = ACTIONS(1392), + [sym_true] = ACTIONS(1392), + [sym_false] = ACTIONS(1392), + [sym_nil] = ACTIONS(1392), + [anon_sym_if] = ACTIONS(1394), + [anon_sym_DOLLARif] = ACTIONS(1396), + [anon_sym_match] = ACTIONS(1398), + [anon_sym_select] = ACTIONS(1400), + [anon_sym_lock] = ACTIONS(1402), + [anon_sym_rlock] = ACTIONS(1402), + [anon_sym_unsafe] = ACTIONS(1404), + [anon_sym_sql] = ACTIONS(1406), + [sym_int_literal] = ACTIONS(1408), + [sym_float_literal] = ACTIONS(1410), + [sym_rune_literal] = ACTIONS(1410), + [sym_pseudo_compile_time_identifier] = ACTIONS(1412), + [anon_sym_shared] = ACTIONS(83), + [anon_sym_map_LBRACK] = ACTIONS(85), + [anon_sym_chan] = ACTIONS(87), + [anon_sym_thread] = ACTIONS(89), + [anon_sym_atomic] = ACTIONS(91), + [sym___double_quote] = ACTIONS(1414), + [sym___single_quote] = ACTIONS(1416), + [sym___c_double_quote] = ACTIONS(1418), + [sym___c_single_quote] = ACTIONS(1420), + [sym___r_double_quote] = ACTIONS(1422), + [sym___r_single_quote] = ACTIONS(1424), + }, + [190] = { + [sym_line_comment] = STATE(190), + [sym_block_comment] = STATE(190), + [sym_reference_expression] = STATE(4498), + [sym_type_reference_expression] = STATE(3460), + [sym_plain_type] = STATE(2345), + [sym__plain_type_without_special] = STATE(2360), + [sym_anon_struct_type] = STATE(2362), + [sym_multi_return_type] = STATE(2360), + [sym_result_type] = STATE(2360), + [sym_option_type] = STATE(2360), + [sym_qualified_type] = STATE(3460), + [sym_fixed_array_type] = STATE(2362), + [sym_array_type] = STATE(2362), + [sym_pointer_type] = STATE(2362), + [sym_wrong_pointer_type] = STATE(2362), + [sym_map_type] = STATE(2362), + [sym_channel_type] = STATE(2362), + [sym_shared_type] = STATE(2362), + [sym_thread_type] = STATE(2362), + [sym_atomic_type] = STATE(2362), + [sym_generic_type] = STATE(2362), + [sym_function_type] = STATE(2362), + [ts_builtin_sym_end] = ACTIONS(625), + [sym_identifier] = ACTIONS(627), + [anon_sym_LF] = ACTIONS(627), + [anon_sym_CR] = ACTIONS(627), + [anon_sym_CR_LF] = ACTIONS(627), + [anon_sym_SLASH_SLASH] = ACTIONS(497), + [anon_sym_SLASH_STAR] = ACTIONS(499), + [anon_sym_DOT] = ACTIONS(627), + [anon_sym_as] = ACTIONS(627), + [anon_sym_LBRACE] = ACTIONS(627), + [anon_sym_COMMA] = ACTIONS(627), + [anon_sym_const] = ACTIONS(627), + [anon_sym_LPAREN] = ACTIONS(627), + [anon_sym___global] = ACTIONS(627), + [anon_sym_type] = ACTIONS(627), + [anon_sym_PIPE] = ACTIONS(627), + [anon_sym_fn] = ACTIONS(627), + [anon_sym_PLUS] = ACTIONS(627), + [anon_sym_DASH] = ACTIONS(627), + [anon_sym_STAR] = ACTIONS(627), + [anon_sym_SLASH] = ACTIONS(627), + [anon_sym_PERCENT] = ACTIONS(627), + [anon_sym_LT] = ACTIONS(627), + [anon_sym_GT] = ACTIONS(627), + [anon_sym_EQ_EQ] = ACTIONS(627), + [anon_sym_BANG_EQ] = ACTIONS(627), + [anon_sym_LT_EQ] = ACTIONS(627), + [anon_sym_GT_EQ] = ACTIONS(627), + [anon_sym_LBRACK] = ACTIONS(625), + [anon_sym_struct] = ACTIONS(627), + [anon_sym_union] = ACTIONS(627), + [anon_sym_pub] = ACTIONS(627), + [anon_sym_mut] = ACTIONS(627), + [anon_sym_enum] = ACTIONS(627), + [anon_sym_interface] = ACTIONS(627), + [anon_sym_PLUS_PLUS] = ACTIONS(627), + [anon_sym_DASH_DASH] = ACTIONS(627), + [anon_sym_QMARK] = ACTIONS(627), + [anon_sym_BANG] = ACTIONS(627), + [anon_sym_go] = ACTIONS(627), + [anon_sym_spawn] = ACTIONS(627), + [anon_sym_json_DOTdecode] = ACTIONS(627), + [anon_sym_LBRACK2] = ACTIONS(627), + [anon_sym_TILDE] = ACTIONS(627), + [anon_sym_CARET] = ACTIONS(627), + [anon_sym_AMP] = ACTIONS(627), + [anon_sym_LT_DASH] = ACTIONS(627), + [anon_sym_LT_LT] = ACTIONS(627), + [anon_sym_GT_GT] = ACTIONS(627), + [anon_sym_GT_GT_GT] = ACTIONS(627), + [anon_sym_AMP_CARET] = ACTIONS(627), + [anon_sym_AMP_AMP] = ACTIONS(627), + [anon_sym_PIPE_PIPE] = ACTIONS(627), + [anon_sym_or] = ACTIONS(627), + [sym_none] = ACTIONS(627), + [sym_true] = ACTIONS(627), + [sym_false] = ACTIONS(627), + [sym_nil] = ACTIONS(627), + [anon_sym_QMARK_DOT] = ACTIONS(627), + [anon_sym_POUND_LBRACK] = ACTIONS(627), + [anon_sym_if] = ACTIONS(627), + [anon_sym_DOLLARif] = ACTIONS(627), + [anon_sym_is] = ACTIONS(627), + [anon_sym_BANGis] = ACTIONS(627), + [anon_sym_in] = ACTIONS(627), + [anon_sym_BANGin] = ACTIONS(627), + [anon_sym_match] = ACTIONS(627), + [anon_sym_select] = ACTIONS(627), + [anon_sym_lock] = ACTIONS(627), + [anon_sym_rlock] = ACTIONS(627), + [anon_sym_unsafe] = ACTIONS(627), + [anon_sym_sql] = ACTIONS(627), + [sym_int_literal] = ACTIONS(627), + [sym_float_literal] = ACTIONS(627), + [sym_rune_literal] = ACTIONS(627), + [sym_pseudo_compile_time_identifier] = ACTIONS(627), + [anon_sym_shared] = ACTIONS(627), + [anon_sym_map_LBRACK] = ACTIONS(627), + [anon_sym_chan] = ACTIONS(627), + [anon_sym_thread] = ACTIONS(627), + [anon_sym_atomic] = ACTIONS(627), + [anon_sym_assert] = ACTIONS(627), + [anon_sym_defer] = ACTIONS(627), + [anon_sym_goto] = ACTIONS(627), + [anon_sym_break] = ACTIONS(627), + [anon_sym_continue] = ACTIONS(627), + [anon_sym_return] = ACTIONS(627), + [anon_sym_DOLLARfor] = ACTIONS(627), + [anon_sym_for] = ACTIONS(627), + [anon_sym_POUND] = ACTIONS(627), + [anon_sym_asm] = ACTIONS(627), + [anon_sym_AT_LBRACK] = ACTIONS(627), + [sym___double_quote] = ACTIONS(627), + [sym___single_quote] = ACTIONS(627), + [sym___c_double_quote] = ACTIONS(627), + [sym___c_single_quote] = ACTIONS(627), + [sym___r_double_quote] = ACTIONS(627), + [sym___r_single_quote] = ACTIONS(627), + }, + [191] = { + [sym_line_comment] = STATE(191), + [sym_block_comment] = STATE(191), + [sym__expression] = STATE(1128), + [sym__expression_without_blocks] = STATE(1210), + [sym__expression_with_blocks] = STATE(1210), + [sym_inc_expression] = STATE(1211), + [sym_dec_expression] = STATE(1211), + [sym_or_block_expression] = STATE(1211), + [sym_option_propagation_expression] = STATE(1211), + [sym_result_propagation_expression] = STATE(1211), + [sym_anon_struct_value_expression] = STATE(1212), + [sym_go_expression] = STATE(1211), + [sym_spawn_expression] = STATE(1211), + [sym_parenthesized_expression] = STATE(1211), + [sym_call_expression] = STATE(1211), + [sym_type_initializer] = STATE(1212), + [sym_element_list] = STATE(4420), + [sym_short_element_list] = STATE(4414), + [sym_keyed_element] = STATE(3387), + [sym_function_literal] = STATE(1211), + [sym_reference_expression] = STATE(1154), + [sym_type_reference_expression] = STATE(3460), + [sym_unary_expression] = STATE(1211), + [sym_receive_expression] = STATE(1211), + [sym_binary_expression] = STATE(1211), + [sym_as_type_cast_expression] = STATE(1211), + [sym__max_group] = STATE(1211), + [sym_literal] = STATE(1209), + [sym_spread_expression] = STATE(3387), + [sym_map_init_expression] = STATE(1212), + [sym_array_creation] = STATE(1211), + [sym_fixed_array_creation] = STATE(1211), + [sym_selector_expression] = STATE(1211), + [sym_index_expression] = STATE(1211), + [sym_slice_expression] = STATE(1211), + [sym_if_expression] = STATE(1212), + [sym_compile_time_if_expression] = STATE(1212), + [sym_is_expression] = STATE(1211), + [sym_in_expression] = STATE(1211), + [sym_enum_fetch] = STATE(1211), + [sym_match_expression] = STATE(1212), + [sym_select_expression] = STATE(1212), + [sym_lock_expression] = STATE(1212), + [sym_unsafe_expression] = STATE(1212), + [sym_sql_expression] = STATE(1212), + [sym_c_string_literal] = STATE(1201), + [sym_raw_string_literal] = STATE(1201), + [sym_interpreted_string_literal] = STATE(1201), + [sym_mutability_modifiers] = STATE(589), + [sym_plain_type] = STATE(4123), + [sym__plain_type_without_special] = STATE(2360), + [sym_anon_struct_type] = STATE(2362), + [sym_multi_return_type] = STATE(2360), + [sym_result_type] = STATE(2360), + [sym_option_type] = STATE(2360), + [sym_qualified_type] = STATE(3460), + [sym_fixed_array_type] = STATE(2362), + [sym_array_type] = STATE(2362), + [sym_pointer_type] = STATE(2362), + [sym_wrong_pointer_type] = STATE(2362), + [sym_map_type] = STATE(2362), + [sym_channel_type] = STATE(2362), + [sym_shared_type] = STATE(2362), + [sym_thread_type] = STATE(2362), + [sym_atomic_type] = STATE(2362), + [sym_generic_type] = STATE(2362), + [sym_function_type] = STATE(2362), + [aux_sym_element_list_repeat1] = STATE(3413), + [aux_sym_short_element_list_repeat1] = STATE(375), + [sym_identifier] = ACTIONS(1139), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(631), + [anon_sym_LBRACE] = ACTIONS(633), + [anon_sym_RBRACE] = ACTIONS(1426), + [anon_sym_LPAREN] = ACTIONS(637), + [anon_sym_fn] = ACTIONS(641), + [anon_sym_PLUS] = ACTIONS(643), + [anon_sym_DASH] = ACTIONS(643), + [anon_sym_STAR] = ACTIONS(645), + [anon_sym_DOT_DOT_DOT] = ACTIONS(647), + [anon_sym_struct] = ACTIONS(649), + [anon_sym_mut] = ACTIONS(41), + [anon_sym_QMARK] = ACTIONS(47), + [anon_sym_BANG] = ACTIONS(655), + [anon_sym_go] = ACTIONS(657), + [anon_sym_spawn] = ACTIONS(659), + [anon_sym_json_DOTdecode] = ACTIONS(661), + [anon_sym_LBRACK2] = ACTIONS(663), + [anon_sym_TILDE] = ACTIONS(643), + [anon_sym_CARET] = ACTIONS(643), + [anon_sym_AMP] = ACTIONS(665), + [anon_sym_LT_DASH] = ACTIONS(667), + [sym_none] = ACTIONS(669), + [sym_true] = ACTIONS(669), + [sym_false] = ACTIONS(669), + [sym_nil] = ACTIONS(669), + [anon_sym_if] = ACTIONS(671), + [anon_sym_DOLLARif] = ACTIONS(673), + [anon_sym_match] = ACTIONS(675), + [anon_sym_select] = ACTIONS(677), + [anon_sym_lock] = ACTIONS(679), + [anon_sym_rlock] = ACTIONS(679), + [anon_sym_unsafe] = ACTIONS(681), + [anon_sym_sql] = ACTIONS(683), + [sym_int_literal] = ACTIONS(669), + [sym_float_literal] = ACTIONS(685), + [sym_rune_literal] = ACTIONS(685), + [sym_pseudo_compile_time_identifier] = ACTIONS(687), + [anon_sym_shared] = ACTIONS(83), + [anon_sym_map_LBRACK] = ACTIONS(85), + [anon_sym_chan] = ACTIONS(87), + [anon_sym_thread] = ACTIONS(89), + [anon_sym_atomic] = ACTIONS(91), + [sym___double_quote] = ACTIONS(689), + [sym___single_quote] = ACTIONS(691), + [sym___c_double_quote] = ACTIONS(693), + [sym___c_single_quote] = ACTIONS(695), + [sym___r_double_quote] = ACTIONS(697), + [sym___r_single_quote] = ACTIONS(699), + }, + [192] = { + [sym_line_comment] = STATE(192), + [sym_block_comment] = STATE(192), + [sym__expression] = STATE(2602), + [sym__expression_without_blocks] = STATE(2347), + [sym__expression_with_blocks] = STATE(2347), + [sym_inc_expression] = STATE(2379), + [sym_dec_expression] = STATE(2379), + [sym_or_block_expression] = STATE(2379), + [sym_option_propagation_expression] = STATE(2379), + [sym_result_propagation_expression] = STATE(2379), + [sym_anon_struct_value_expression] = STATE(2378), + [sym_go_expression] = STATE(2379), + [sym_spawn_expression] = STATE(2379), + [sym_parenthesized_expression] = STATE(2379), + [sym_call_expression] = STATE(2379), + [sym_type_initializer] = STATE(2378), + [sym_function_literal] = STATE(2379), + [sym_reference_expression] = STATE(2623), + [sym_type_reference_expression] = STATE(3460), + [sym_unary_expression] = STATE(2379), + [sym_receive_expression] = STATE(2379), + [sym_binary_expression] = STATE(2379), + [sym_as_type_cast_expression] = STATE(2379), + [sym__max_group] = STATE(2379), + [sym_literal] = STATE(2813), + [sym_map_init_expression] = STATE(2378), + [sym_array_creation] = STATE(2379), + [sym_fixed_array_creation] = STATE(2379), + [sym_selector_expression] = STATE(2379), + [sym_index_expression] = STATE(2379), + [sym_slice_expression] = STATE(2379), + [sym_if_expression] = STATE(2378), + [sym_compile_time_if_expression] = STATE(2378), + [sym_is_expression] = STATE(2379), + [sym_in_expression] = STATE(2379), + [sym_enum_fetch] = STATE(2379), + [sym_match_expression] = STATE(2378), + [sym_select_expression] = STATE(2378), + [sym_lock_expression] = STATE(2378), + [sym_unsafe_expression] = STATE(2378), + [sym_sql_expression] = STATE(2378), + [sym_c_string_literal] = STATE(2401), + [sym_raw_string_literal] = STATE(2401), + [sym_interpreted_string_literal] = STATE(2401), + [sym_mutability_modifiers] = STATE(939), + [sym_plain_type] = STATE(4160), + [sym__plain_type_without_special] = STATE(2360), + [sym_anon_struct_type] = STATE(2362), + [sym_multi_return_type] = STATE(2360), + [sym_result_type] = STATE(2360), + [sym_option_type] = STATE(2360), + [sym_qualified_type] = STATE(3460), + [sym_fixed_array_type] = STATE(2362), + [sym_array_type] = STATE(2362), + [sym_pointer_type] = STATE(2362), + [sym_wrong_pointer_type] = STATE(2362), + [sym_map_type] = STATE(2362), + [sym_channel_type] = STATE(2362), + [sym_shared_type] = STATE(2362), + [sym_thread_type] = STATE(2362), + [sym_atomic_type] = STATE(2362), + [sym_generic_type] = STATE(2362), + [sym_function_type] = STATE(2362), + [sym_range] = STATE(4542), + [sym_attribute_expression] = STATE(3861), + [sym_if_attribute] = STATE(4192), + [sym__plain_attribute] = STATE(4192), + [sym_literal_attribute] = STATE(4193), + [sym_value_attribute] = STATE(3862), + [sym_key_value_attribute] = STATE(4193), + [sym_identifier] = ACTIONS(1428), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(1430), + [anon_sym_LBRACE] = ACTIONS(1432), + [anon_sym_LPAREN] = ACTIONS(1434), + [anon_sym_fn] = ACTIONS(1436), + [anon_sym_PLUS] = ACTIONS(1438), + [anon_sym_DASH] = ACTIONS(1438), + [anon_sym_STAR] = ACTIONS(1440), + [anon_sym_struct] = ACTIONS(1442), + [anon_sym_mut] = ACTIONS(41), + [anon_sym_QMARK] = ACTIONS(47), + [anon_sym_BANG] = ACTIONS(1444), + [anon_sym_go] = ACTIONS(1446), + [anon_sym_spawn] = ACTIONS(1448), + [anon_sym_json_DOTdecode] = ACTIONS(1450), + [anon_sym_LBRACK2] = ACTIONS(1452), + [anon_sym_TILDE] = ACTIONS(1438), + [anon_sym_CARET] = ACTIONS(1438), + [anon_sym_AMP] = ACTIONS(1454), + [anon_sym_LT_DASH] = ACTIONS(1456), + [sym_none] = ACTIONS(1458), + [sym_true] = ACTIONS(1458), + [sym_false] = ACTIONS(1458), + [sym_nil] = ACTIONS(1458), + [anon_sym_if] = ACTIONS(1460), + [anon_sym_DOLLARif] = ACTIONS(1462), + [anon_sym_match] = ACTIONS(1464), + [anon_sym_select] = ACTIONS(1466), + [anon_sym_lock] = ACTIONS(1468), + [anon_sym_rlock] = ACTIONS(1468), + [anon_sym_unsafe] = ACTIONS(1470), + [anon_sym_sql] = ACTIONS(1472), + [sym_int_literal] = ACTIONS(1458), + [sym_float_literal] = ACTIONS(1474), + [sym_rune_literal] = ACTIONS(1474), + [sym_pseudo_compile_time_identifier] = ACTIONS(1476), + [anon_sym_shared] = ACTIONS(83), + [anon_sym_map_LBRACK] = ACTIONS(85), + [anon_sym_chan] = ACTIONS(87), + [anon_sym_thread] = ACTIONS(89), + [anon_sym_atomic] = ACTIONS(91), + [anon_sym_DOT_DOT] = ACTIONS(1478), + [sym___double_quote] = ACTIONS(1480), + [sym___single_quote] = ACTIONS(1482), + [sym___c_double_quote] = ACTIONS(1484), + [sym___c_single_quote] = ACTIONS(1486), + [sym___r_double_quote] = ACTIONS(1488), + [sym___r_single_quote] = ACTIONS(1490), + }, + [193] = { + [sym_line_comment] = STATE(193), + [sym_block_comment] = STATE(193), + [sym__expression] = STATE(1128), + [sym__expression_without_blocks] = STATE(1210), + [sym__expression_with_blocks] = STATE(1210), + [sym_inc_expression] = STATE(1211), + [sym_dec_expression] = STATE(1211), + [sym_or_block_expression] = STATE(1211), + [sym_option_propagation_expression] = STATE(1211), + [sym_result_propagation_expression] = STATE(1211), + [sym_anon_struct_value_expression] = STATE(1212), + [sym_go_expression] = STATE(1211), + [sym_spawn_expression] = STATE(1211), + [sym_parenthesized_expression] = STATE(1211), + [sym_call_expression] = STATE(1211), + [sym_type_initializer] = STATE(1212), + [sym_element_list] = STATE(4389), + [sym_short_element_list] = STATE(4379), + [sym_keyed_element] = STATE(3387), + [sym_function_literal] = STATE(1211), + [sym_reference_expression] = STATE(1154), + [sym_type_reference_expression] = STATE(3460), + [sym_unary_expression] = STATE(1211), + [sym_receive_expression] = STATE(1211), + [sym_binary_expression] = STATE(1211), + [sym_as_type_cast_expression] = STATE(1211), + [sym__max_group] = STATE(1211), + [sym_literal] = STATE(1209), + [sym_spread_expression] = STATE(3387), + [sym_map_init_expression] = STATE(1212), + [sym_array_creation] = STATE(1211), + [sym_fixed_array_creation] = STATE(1211), + [sym_selector_expression] = STATE(1211), + [sym_index_expression] = STATE(1211), + [sym_slice_expression] = STATE(1211), + [sym_if_expression] = STATE(1212), + [sym_compile_time_if_expression] = STATE(1212), + [sym_is_expression] = STATE(1211), + [sym_in_expression] = STATE(1211), + [sym_enum_fetch] = STATE(1211), + [sym_match_expression] = STATE(1212), + [sym_select_expression] = STATE(1212), + [sym_lock_expression] = STATE(1212), + [sym_unsafe_expression] = STATE(1212), + [sym_sql_expression] = STATE(1212), + [sym_c_string_literal] = STATE(1201), + [sym_raw_string_literal] = STATE(1201), + [sym_interpreted_string_literal] = STATE(1201), + [sym_mutability_modifiers] = STATE(589), + [sym_plain_type] = STATE(4123), + [sym__plain_type_without_special] = STATE(2360), + [sym_anon_struct_type] = STATE(2362), + [sym_multi_return_type] = STATE(2360), + [sym_result_type] = STATE(2360), + [sym_option_type] = STATE(2360), + [sym_qualified_type] = STATE(3460), + [sym_fixed_array_type] = STATE(2362), + [sym_array_type] = STATE(2362), + [sym_pointer_type] = STATE(2362), + [sym_wrong_pointer_type] = STATE(2362), + [sym_map_type] = STATE(2362), + [sym_channel_type] = STATE(2362), + [sym_shared_type] = STATE(2362), + [sym_thread_type] = STATE(2362), + [sym_atomic_type] = STATE(2362), + [sym_generic_type] = STATE(2362), + [sym_function_type] = STATE(2362), + [aux_sym_element_list_repeat1] = STATE(3413), + [aux_sym_short_element_list_repeat1] = STATE(375), + [sym_identifier] = ACTIONS(1139), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(631), + [anon_sym_LBRACE] = ACTIONS(633), + [anon_sym_RBRACE] = ACTIONS(1492), + [anon_sym_LPAREN] = ACTIONS(637), + [anon_sym_fn] = ACTIONS(641), + [anon_sym_PLUS] = ACTIONS(643), + [anon_sym_DASH] = ACTIONS(643), + [anon_sym_STAR] = ACTIONS(645), + [anon_sym_DOT_DOT_DOT] = ACTIONS(647), + [anon_sym_struct] = ACTIONS(649), + [anon_sym_mut] = ACTIONS(41), + [anon_sym_QMARK] = ACTIONS(47), + [anon_sym_BANG] = ACTIONS(655), + [anon_sym_go] = ACTIONS(657), + [anon_sym_spawn] = ACTIONS(659), + [anon_sym_json_DOTdecode] = ACTIONS(661), + [anon_sym_LBRACK2] = ACTIONS(663), + [anon_sym_TILDE] = ACTIONS(643), + [anon_sym_CARET] = ACTIONS(643), + [anon_sym_AMP] = ACTIONS(665), + [anon_sym_LT_DASH] = ACTIONS(667), + [sym_none] = ACTIONS(669), [sym_true] = ACTIONS(669), [sym_false] = ACTIONS(669), [sym_nil] = ACTIONS(669), @@ -45197,320 +45093,442 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym___r_double_quote] = ACTIONS(697), [sym___r_single_quote] = ACTIONS(699), }, + [194] = { + [sym_line_comment] = STATE(194), + [sym_block_comment] = STATE(194), + [sym_reference_expression] = STATE(4349), + [sym_type_reference_expression] = STATE(985), + [sym_plain_type] = STATE(1090), + [sym__plain_type_without_special] = STATE(1066), + [sym_anon_struct_type] = STATE(1030), + [sym_multi_return_type] = STATE(1066), + [sym_result_type] = STATE(1066), + [sym_option_type] = STATE(1066), + [sym_qualified_type] = STATE(985), + [sym_fixed_array_type] = STATE(1030), + [sym_array_type] = STATE(1030), + [sym_pointer_type] = STATE(1030), + [sym_wrong_pointer_type] = STATE(1030), + [sym_map_type] = STATE(1030), + [sym_channel_type] = STATE(1030), + [sym_shared_type] = STATE(1030), + [sym_thread_type] = STATE(1030), + [sym_atomic_type] = STATE(1030), + [sym_generic_type] = STATE(1030), + [sym_function_type] = STATE(1030), + [ts_builtin_sym_end] = ACTIONS(621), + [sym_identifier] = ACTIONS(1195), + [anon_sym_LF] = ACTIONS(623), + [anon_sym_CR] = ACTIONS(623), + [anon_sym_CR_LF] = ACTIONS(623), + [anon_sym_SLASH_SLASH] = ACTIONS(497), + [anon_sym_SLASH_STAR] = ACTIONS(499), + [anon_sym_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(1197), + [anon_sym___global] = ACTIONS(623), + [anon_sym_type] = ACTIONS(623), + [anon_sym_PIPE] = ACTIONS(623), + [anon_sym_fn] = ACTIONS(1199), + [anon_sym_PLUS] = ACTIONS(623), + [anon_sym_DASH] = ACTIONS(623), + [anon_sym_STAR] = ACTIONS(1201), + [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(1203), + [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(1205), + [anon_sym_BANG] = ACTIONS(1207), + [anon_sym_go] = ACTIONS(623), + [anon_sym_spawn] = ACTIONS(623), + [anon_sym_json_DOTdecode] = ACTIONS(623), + [anon_sym_LBRACK2] = ACTIONS(1209), + [anon_sym_TILDE] = ACTIONS(623), + [anon_sym_CARET] = ACTIONS(623), + [anon_sym_AMP] = ACTIONS(1211), + [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(1213), + [anon_sym_map_LBRACK] = ACTIONS(1215), + [anon_sym_chan] = ACTIONS(1217), + [anon_sym_thread] = ACTIONS(1219), + [anon_sym_atomic] = ACTIONS(1221), + [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), + }, [195] = { [sym_line_comment] = STATE(195), [sym_block_comment] = STATE(195), - [sym_reference_expression] = STATE(4495), - [sym_type_reference_expression] = STATE(3541), - [sym_plain_type] = STATE(2386), - [sym__plain_type_without_special] = STATE(2302), - [sym_anon_struct_type] = STATE(2303), - [sym_multi_return_type] = STATE(2302), - [sym_result_type] = STATE(2302), - [sym_option_type] = STATE(2302), - [sym_qualified_type] = STATE(3541), - [sym_fixed_array_type] = STATE(2303), - [sym_array_type] = STATE(2303), - [sym_pointer_type] = STATE(2303), - [sym_wrong_pointer_type] = STATE(2303), - [sym_map_type] = STATE(2303), - [sym_channel_type] = STATE(2303), - [sym_shared_type] = STATE(2303), - [sym_thread_type] = STATE(2303), - [sym_atomic_type] = STATE(2303), - [sym_generic_type] = STATE(2303), - [sym_function_type] = STATE(2303), - [ts_builtin_sym_end] = ACTIONS(595), - [sym_identifier] = ACTIONS(597), - [anon_sym_LF] = ACTIONS(599), - [anon_sym_CR] = ACTIONS(599), - [anon_sym_CR_LF] = ACTIONS(599), - [anon_sym_SLASH_SLASH] = ACTIONS(497), - [anon_sym_SLASH_STAR] = ACTIONS(499), - [anon_sym_DOT] = ACTIONS(599), - [anon_sym_as] = ACTIONS(599), - [anon_sym_LBRACE] = ACTIONS(599), - [anon_sym_COMMA] = ACTIONS(599), - [anon_sym_const] = ACTIONS(599), - [anon_sym_LPAREN] = ACTIONS(601), - [anon_sym___global] = ACTIONS(599), - [anon_sym_type] = ACTIONS(599), - [anon_sym_PIPE] = ACTIONS(599), - [anon_sym_fn] = ACTIONS(603), - [anon_sym_PLUS] = ACTIONS(599), - [anon_sym_DASH] = ACTIONS(599), - [anon_sym_STAR] = ACTIONS(605), - [anon_sym_SLASH] = ACTIONS(599), - [anon_sym_PERCENT] = ACTIONS(599), - [anon_sym_LT] = ACTIONS(599), - [anon_sym_GT] = ACTIONS(599), - [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(595), - [anon_sym_struct] = ACTIONS(607), - [anon_sym_union] = ACTIONS(599), - [anon_sym_pub] = ACTIONS(599), - [anon_sym_mut] = ACTIONS(599), - [anon_sym_enum] = ACTIONS(599), - [anon_sym_interface] = ACTIONS(599), - [anon_sym_PLUS_PLUS] = ACTIONS(599), - [anon_sym_DASH_DASH] = ACTIONS(599), - [anon_sym_QMARK] = ACTIONS(515), - [anon_sym_BANG] = ACTIONS(1496), - [anon_sym_go] = ACTIONS(599), - [anon_sym_spawn] = ACTIONS(599), - [anon_sym_json_DOTdecode] = ACTIONS(599), - [anon_sym_LBRACK2] = ACTIONS(611), - [anon_sym_TILDE] = ACTIONS(599), - [anon_sym_CARET] = ACTIONS(599), - [anon_sym_AMP] = ACTIONS(613), - [anon_sym_LT_DASH] = ACTIONS(599), - [anon_sym_LT_LT] = ACTIONS(599), - [anon_sym_GT_GT] = ACTIONS(599), - [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(599), - [sym_none] = ACTIONS(599), - [sym_true] = ACTIONS(599), - [sym_false] = ACTIONS(599), - [sym_nil] = ACTIONS(599), - [anon_sym_QMARK_DOT] = ACTIONS(599), - [anon_sym_POUND_LBRACK] = ACTIONS(599), - [anon_sym_if] = ACTIONS(599), - [anon_sym_DOLLARif] = ACTIONS(599), - [anon_sym_is] = ACTIONS(599), - [anon_sym_BANGis] = ACTIONS(599), - [anon_sym_in] = ACTIONS(599), - [anon_sym_BANGin] = ACTIONS(599), - [anon_sym_match] = ACTIONS(599), - [anon_sym_select] = ACTIONS(599), - [anon_sym_lock] = ACTIONS(599), - [anon_sym_rlock] = ACTIONS(599), - [anon_sym_unsafe] = ACTIONS(599), - [anon_sym_sql] = ACTIONS(599), - [sym_int_literal] = ACTIONS(599), - [sym_float_literal] = ACTIONS(599), - [sym_rune_literal] = ACTIONS(599), - [sym_pseudo_compile_time_identifier] = ACTIONS(599), - [anon_sym_shared] = ACTIONS(615), - [anon_sym_map_LBRACK] = ACTIONS(549), + [sym__expression] = STATE(1128), + [sym__expression_without_blocks] = STATE(1210), + [sym__expression_with_blocks] = STATE(1210), + [sym_inc_expression] = STATE(1211), + [sym_dec_expression] = STATE(1211), + [sym_or_block_expression] = STATE(1211), + [sym_option_propagation_expression] = STATE(1211), + [sym_result_propagation_expression] = STATE(1211), + [sym_anon_struct_value_expression] = STATE(1212), + [sym_go_expression] = STATE(1211), + [sym_spawn_expression] = STATE(1211), + [sym_parenthesized_expression] = STATE(1211), + [sym_call_expression] = STATE(1211), + [sym_type_initializer] = STATE(1212), + [sym_element_list] = STATE(4571), + [sym_short_element_list] = STATE(4647), + [sym_keyed_element] = STATE(3387), + [sym_function_literal] = STATE(1211), + [sym_reference_expression] = STATE(1154), + [sym_type_reference_expression] = STATE(3460), + [sym_unary_expression] = STATE(1211), + [sym_receive_expression] = STATE(1211), + [sym_binary_expression] = STATE(1211), + [sym_as_type_cast_expression] = STATE(1211), + [sym__max_group] = STATE(1211), + [sym_literal] = STATE(1209), + [sym_spread_expression] = STATE(3387), + [sym_map_init_expression] = STATE(1212), + [sym_array_creation] = STATE(1211), + [sym_fixed_array_creation] = STATE(1211), + [sym_selector_expression] = STATE(1211), + [sym_index_expression] = STATE(1211), + [sym_slice_expression] = STATE(1211), + [sym_if_expression] = STATE(1212), + [sym_compile_time_if_expression] = STATE(1212), + [sym_is_expression] = STATE(1211), + [sym_in_expression] = STATE(1211), + [sym_enum_fetch] = STATE(1211), + [sym_match_expression] = STATE(1212), + [sym_select_expression] = STATE(1212), + [sym_lock_expression] = STATE(1212), + [sym_unsafe_expression] = STATE(1212), + [sym_sql_expression] = STATE(1212), + [sym_c_string_literal] = STATE(1201), + [sym_raw_string_literal] = STATE(1201), + [sym_interpreted_string_literal] = STATE(1201), + [sym_mutability_modifiers] = STATE(589), + [sym_plain_type] = STATE(4123), + [sym__plain_type_without_special] = STATE(2360), + [sym_anon_struct_type] = STATE(2362), + [sym_multi_return_type] = STATE(2360), + [sym_result_type] = STATE(2360), + [sym_option_type] = STATE(2360), + [sym_qualified_type] = STATE(3460), + [sym_fixed_array_type] = STATE(2362), + [sym_array_type] = STATE(2362), + [sym_pointer_type] = STATE(2362), + [sym_wrong_pointer_type] = STATE(2362), + [sym_map_type] = STATE(2362), + [sym_channel_type] = STATE(2362), + [sym_shared_type] = STATE(2362), + [sym_thread_type] = STATE(2362), + [sym_atomic_type] = STATE(2362), + [sym_generic_type] = STATE(2362), + [sym_function_type] = STATE(2362), + [aux_sym_element_list_repeat1] = STATE(3413), + [aux_sym_short_element_list_repeat1] = STATE(375), + [sym_identifier] = ACTIONS(1139), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(631), + [anon_sym_LBRACE] = ACTIONS(633), + [anon_sym_RBRACE] = ACTIONS(1494), + [anon_sym_LPAREN] = ACTIONS(637), + [anon_sym_fn] = ACTIONS(641), + [anon_sym_PLUS] = ACTIONS(643), + [anon_sym_DASH] = ACTIONS(643), + [anon_sym_STAR] = ACTIONS(645), + [anon_sym_DOT_DOT_DOT] = ACTIONS(647), + [anon_sym_struct] = ACTIONS(649), + [anon_sym_mut] = ACTIONS(41), + [anon_sym_QMARK] = ACTIONS(47), + [anon_sym_BANG] = ACTIONS(655), + [anon_sym_go] = ACTIONS(657), + [anon_sym_spawn] = ACTIONS(659), + [anon_sym_json_DOTdecode] = ACTIONS(661), + [anon_sym_LBRACK2] = ACTIONS(663), + [anon_sym_TILDE] = ACTIONS(643), + [anon_sym_CARET] = ACTIONS(643), + [anon_sym_AMP] = ACTIONS(665), + [anon_sym_LT_DASH] = ACTIONS(667), + [sym_none] = ACTIONS(669), + [sym_true] = ACTIONS(669), + [sym_false] = ACTIONS(669), + [sym_nil] = ACTIONS(669), + [anon_sym_if] = ACTIONS(671), + [anon_sym_DOLLARif] = ACTIONS(673), + [anon_sym_match] = ACTIONS(675), + [anon_sym_select] = ACTIONS(677), + [anon_sym_lock] = ACTIONS(679), + [anon_sym_rlock] = ACTIONS(679), + [anon_sym_unsafe] = ACTIONS(681), + [anon_sym_sql] = ACTIONS(683), + [sym_int_literal] = ACTIONS(669), + [sym_float_literal] = ACTIONS(685), + [sym_rune_literal] = ACTIONS(685), + [sym_pseudo_compile_time_identifier] = ACTIONS(687), + [anon_sym_shared] = ACTIONS(83), + [anon_sym_map_LBRACK] = ACTIONS(85), [anon_sym_chan] = ACTIONS(87), [anon_sym_thread] = ACTIONS(89), [anon_sym_atomic] = ACTIONS(91), - [anon_sym_assert] = ACTIONS(599), - [anon_sym_defer] = ACTIONS(599), - [anon_sym_goto] = ACTIONS(599), - [anon_sym_break] = ACTIONS(599), - [anon_sym_continue] = ACTIONS(599), - [anon_sym_return] = ACTIONS(599), - [anon_sym_DOLLARfor] = ACTIONS(599), - [anon_sym_for] = ACTIONS(599), - [anon_sym_POUND] = ACTIONS(599), - [anon_sym_asm] = ACTIONS(599), - [anon_sym_AT_LBRACK] = ACTIONS(599), - [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), + [sym___double_quote] = ACTIONS(689), + [sym___single_quote] = ACTIONS(691), + [sym___c_double_quote] = ACTIONS(693), + [sym___c_single_quote] = ACTIONS(695), + [sym___r_double_quote] = ACTIONS(697), + [sym___r_single_quote] = ACTIONS(699), }, [196] = { [sym_line_comment] = STATE(196), [sym_block_comment] = STATE(196), - [sym_reference_expression] = STATE(4365), - [sym_type_reference_expression] = STATE(990), - [sym_plain_type] = STATE(1094), - [sym__plain_type_without_special] = STATE(1020), - [sym_anon_struct_type] = STATE(1019), - [sym_multi_return_type] = STATE(1020), - [sym_result_type] = STATE(1020), - [sym_option_type] = STATE(1020), - [sym_qualified_type] = STATE(990), - [sym_fixed_array_type] = STATE(1019), - [sym_array_type] = STATE(1019), - [sym_pointer_type] = STATE(1019), - [sym_wrong_pointer_type] = STATE(1019), - [sym_map_type] = STATE(1019), - [sym_channel_type] = STATE(1019), - [sym_shared_type] = STATE(1019), - [sym_thread_type] = STATE(1019), - [sym_atomic_type] = STATE(1019), - [sym_generic_type] = STATE(1019), - [sym_function_type] = STATE(1019), - [ts_builtin_sym_end] = ACTIONS(563), - [sym_identifier] = ACTIONS(1191), - [anon_sym_LF] = ACTIONS(567), - [anon_sym_CR] = ACTIONS(567), - [anon_sym_CR_LF] = ACTIONS(567), - [anon_sym_SLASH_SLASH] = ACTIONS(497), - [anon_sym_SLASH_STAR] = ACTIONS(499), - [anon_sym_DOT] = ACTIONS(567), - [anon_sym_as] = ACTIONS(567), - [anon_sym_LBRACE] = ACTIONS(567), - [anon_sym_COMMA] = ACTIONS(567), - [anon_sym_const] = ACTIONS(567), - [anon_sym_LPAREN] = ACTIONS(1193), - [anon_sym___global] = ACTIONS(567), - [anon_sym_type] = ACTIONS(567), - [anon_sym_PIPE] = ACTIONS(567), - [anon_sym_fn] = ACTIONS(1195), - [anon_sym_PLUS] = ACTIONS(567), - [anon_sym_DASH] = ACTIONS(567), - [anon_sym_STAR] = ACTIONS(1197), - [anon_sym_SLASH] = ACTIONS(567), - [anon_sym_PERCENT] = ACTIONS(567), - [anon_sym_LT] = ACTIONS(567), - [anon_sym_GT] = ACTIONS(567), - [anon_sym_EQ_EQ] = ACTIONS(567), - [anon_sym_BANG_EQ] = ACTIONS(567), - [anon_sym_LT_EQ] = ACTIONS(567), - [anon_sym_GT_EQ] = ACTIONS(567), - [anon_sym_LBRACK] = ACTIONS(563), - [anon_sym_struct] = ACTIONS(1199), - [anon_sym_union] = ACTIONS(567), - [anon_sym_pub] = ACTIONS(567), - [anon_sym_mut] = ACTIONS(567), - [anon_sym_enum] = ACTIONS(567), - [anon_sym_interface] = ACTIONS(567), - [anon_sym_PLUS_PLUS] = ACTIONS(567), - [anon_sym_DASH_DASH] = ACTIONS(567), - [anon_sym_QMARK] = ACTIONS(1201), - [anon_sym_BANG] = ACTIONS(1203), - [anon_sym_go] = ACTIONS(567), - [anon_sym_spawn] = ACTIONS(567), - [anon_sym_json_DOTdecode] = ACTIONS(567), - [anon_sym_LBRACK2] = ACTIONS(1205), - [anon_sym_TILDE] = ACTIONS(567), - [anon_sym_CARET] = ACTIONS(567), - [anon_sym_AMP] = ACTIONS(1207), - [anon_sym_LT_DASH] = ACTIONS(567), - [anon_sym_LT_LT] = ACTIONS(567), - [anon_sym_GT_GT] = ACTIONS(567), - [anon_sym_GT_GT_GT] = ACTIONS(567), - [anon_sym_AMP_CARET] = ACTIONS(567), - [anon_sym_AMP_AMP] = ACTIONS(567), - [anon_sym_PIPE_PIPE] = ACTIONS(567), - [anon_sym_or] = ACTIONS(567), - [sym_none] = ACTIONS(567), - [sym_true] = ACTIONS(567), - [sym_false] = ACTIONS(567), - [sym_nil] = ACTIONS(567), - [anon_sym_QMARK_DOT] = ACTIONS(567), - [anon_sym_POUND_LBRACK] = ACTIONS(567), - [anon_sym_if] = ACTIONS(567), - [anon_sym_DOLLARif] = ACTIONS(567), - [anon_sym_is] = ACTIONS(567), - [anon_sym_BANGis] = ACTIONS(567), - [anon_sym_in] = ACTIONS(567), - [anon_sym_BANGin] = ACTIONS(567), - [anon_sym_match] = ACTIONS(567), - [anon_sym_select] = ACTIONS(567), - [anon_sym_lock] = ACTIONS(567), - [anon_sym_rlock] = ACTIONS(567), - [anon_sym_unsafe] = ACTIONS(567), - [anon_sym_sql] = ACTIONS(567), - [sym_int_literal] = ACTIONS(567), - [sym_float_literal] = ACTIONS(567), - [sym_rune_literal] = ACTIONS(567), - [sym_pseudo_compile_time_identifier] = ACTIONS(567), - [anon_sym_shared] = ACTIONS(1209), - [anon_sym_map_LBRACK] = ACTIONS(1211), - [anon_sym_chan] = ACTIONS(1213), - [anon_sym_thread] = ACTIONS(1215), - [anon_sym_atomic] = ACTIONS(1217), - [anon_sym_assert] = ACTIONS(567), - [anon_sym_defer] = ACTIONS(567), - [anon_sym_goto] = ACTIONS(567), - [anon_sym_break] = ACTIONS(567), - [anon_sym_continue] = ACTIONS(567), - [anon_sym_return] = ACTIONS(567), - [anon_sym_DOLLARfor] = ACTIONS(567), - [anon_sym_for] = ACTIONS(567), - [anon_sym_POUND] = ACTIONS(567), - [anon_sym_asm] = ACTIONS(567), - [anon_sym_AT_LBRACK] = ACTIONS(567), - [sym___double_quote] = ACTIONS(567), - [sym___single_quote] = ACTIONS(567), - [sym___c_double_quote] = ACTIONS(567), - [sym___c_single_quote] = ACTIONS(567), - [sym___r_double_quote] = ACTIONS(567), - [sym___r_single_quote] = ACTIONS(567), + [sym__expression] = STATE(1128), + [sym__expression_without_blocks] = STATE(1210), + [sym__expression_with_blocks] = STATE(1210), + [sym_inc_expression] = STATE(1211), + [sym_dec_expression] = STATE(1211), + [sym_or_block_expression] = STATE(1211), + [sym_option_propagation_expression] = STATE(1211), + [sym_result_propagation_expression] = STATE(1211), + [sym_anon_struct_value_expression] = STATE(1212), + [sym_go_expression] = STATE(1211), + [sym_spawn_expression] = STATE(1211), + [sym_parenthesized_expression] = STATE(1211), + [sym_call_expression] = STATE(1211), + [sym_type_initializer] = STATE(1212), + [sym_element_list] = STATE(4548), + [sym_short_element_list] = STATE(4546), + [sym_keyed_element] = STATE(3387), + [sym_function_literal] = STATE(1211), + [sym_reference_expression] = STATE(1154), + [sym_type_reference_expression] = STATE(3460), + [sym_unary_expression] = STATE(1211), + [sym_receive_expression] = STATE(1211), + [sym_binary_expression] = STATE(1211), + [sym_as_type_cast_expression] = STATE(1211), + [sym__max_group] = STATE(1211), + [sym_literal] = STATE(1209), + [sym_spread_expression] = STATE(3387), + [sym_map_init_expression] = STATE(1212), + [sym_array_creation] = STATE(1211), + [sym_fixed_array_creation] = STATE(1211), + [sym_selector_expression] = STATE(1211), + [sym_index_expression] = STATE(1211), + [sym_slice_expression] = STATE(1211), + [sym_if_expression] = STATE(1212), + [sym_compile_time_if_expression] = STATE(1212), + [sym_is_expression] = STATE(1211), + [sym_in_expression] = STATE(1211), + [sym_enum_fetch] = STATE(1211), + [sym_match_expression] = STATE(1212), + [sym_select_expression] = STATE(1212), + [sym_lock_expression] = STATE(1212), + [sym_unsafe_expression] = STATE(1212), + [sym_sql_expression] = STATE(1212), + [sym_c_string_literal] = STATE(1201), + [sym_raw_string_literal] = STATE(1201), + [sym_interpreted_string_literal] = STATE(1201), + [sym_mutability_modifiers] = STATE(589), + [sym_plain_type] = STATE(4123), + [sym__plain_type_without_special] = STATE(2360), + [sym_anon_struct_type] = STATE(2362), + [sym_multi_return_type] = STATE(2360), + [sym_result_type] = STATE(2360), + [sym_option_type] = STATE(2360), + [sym_qualified_type] = STATE(3460), + [sym_fixed_array_type] = STATE(2362), + [sym_array_type] = STATE(2362), + [sym_pointer_type] = STATE(2362), + [sym_wrong_pointer_type] = STATE(2362), + [sym_map_type] = STATE(2362), + [sym_channel_type] = STATE(2362), + [sym_shared_type] = STATE(2362), + [sym_thread_type] = STATE(2362), + [sym_atomic_type] = STATE(2362), + [sym_generic_type] = STATE(2362), + [sym_function_type] = STATE(2362), + [aux_sym_element_list_repeat1] = STATE(3413), + [aux_sym_short_element_list_repeat1] = STATE(375), + [sym_identifier] = ACTIONS(1139), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(631), + [anon_sym_LBRACE] = ACTIONS(633), + [anon_sym_RBRACE] = ACTIONS(1496), + [anon_sym_LPAREN] = ACTIONS(637), + [anon_sym_fn] = ACTIONS(641), + [anon_sym_PLUS] = ACTIONS(643), + [anon_sym_DASH] = ACTIONS(643), + [anon_sym_STAR] = ACTIONS(645), + [anon_sym_DOT_DOT_DOT] = ACTIONS(647), + [anon_sym_struct] = ACTIONS(649), + [anon_sym_mut] = ACTIONS(41), + [anon_sym_QMARK] = ACTIONS(47), + [anon_sym_BANG] = ACTIONS(655), + [anon_sym_go] = ACTIONS(657), + [anon_sym_spawn] = ACTIONS(659), + [anon_sym_json_DOTdecode] = ACTIONS(661), + [anon_sym_LBRACK2] = ACTIONS(663), + [anon_sym_TILDE] = ACTIONS(643), + [anon_sym_CARET] = ACTIONS(643), + [anon_sym_AMP] = ACTIONS(665), + [anon_sym_LT_DASH] = ACTIONS(667), + [sym_none] = ACTIONS(669), + [sym_true] = ACTIONS(669), + [sym_false] = ACTIONS(669), + [sym_nil] = ACTIONS(669), + [anon_sym_if] = ACTIONS(671), + [anon_sym_DOLLARif] = ACTIONS(673), + [anon_sym_match] = ACTIONS(675), + [anon_sym_select] = ACTIONS(677), + [anon_sym_lock] = ACTIONS(679), + [anon_sym_rlock] = ACTIONS(679), + [anon_sym_unsafe] = ACTIONS(681), + [anon_sym_sql] = ACTIONS(683), + [sym_int_literal] = ACTIONS(669), + [sym_float_literal] = ACTIONS(685), + [sym_rune_literal] = ACTIONS(685), + [sym_pseudo_compile_time_identifier] = ACTIONS(687), + [anon_sym_shared] = ACTIONS(83), + [anon_sym_map_LBRACK] = ACTIONS(85), + [anon_sym_chan] = ACTIONS(87), + [anon_sym_thread] = ACTIONS(89), + [anon_sym_atomic] = ACTIONS(91), + [sym___double_quote] = ACTIONS(689), + [sym___single_quote] = ACTIONS(691), + [sym___c_double_quote] = ACTIONS(693), + [sym___c_single_quote] = ACTIONS(695), + [sym___r_double_quote] = ACTIONS(697), + [sym___r_single_quote] = ACTIONS(699), }, [197] = { [sym_line_comment] = STATE(197), [sym_block_comment] = STATE(197), - [sym__expression] = STATE(1117), - [sym__expression_without_blocks] = STATE(1141), - [sym__expression_with_blocks] = STATE(1141), - [sym_inc_expression] = STATE(1140), - [sym_dec_expression] = STATE(1140), - [sym_or_block_expression] = STATE(1140), - [sym_option_propagation_expression] = STATE(1140), - [sym_result_propagation_expression] = STATE(1140), - [sym_anon_struct_value_expression] = STATE(1199), - [sym_go_expression] = STATE(1140), - [sym_spawn_expression] = STATE(1140), - [sym_parenthesized_expression] = STATE(1140), - [sym_call_expression] = STATE(1140), - [sym_argument] = STATE(1903), - [sym_type_initializer] = STATE(1199), + [sym__expression] = STATE(1126), + [sym__expression_without_blocks] = STATE(1210), + [sym__expression_with_blocks] = STATE(1210), + [sym_inc_expression] = STATE(1211), + [sym_dec_expression] = STATE(1211), + [sym_or_block_expression] = STATE(1211), + [sym_option_propagation_expression] = STATE(1211), + [sym_result_propagation_expression] = STATE(1211), + [sym_anon_struct_value_expression] = STATE(1212), + [sym_go_expression] = STATE(1211), + [sym_spawn_expression] = STATE(1211), + [sym_parenthesized_expression] = STATE(1211), + [sym_call_expression] = STATE(1211), + [sym_argument] = STATE(1907), + [sym_type_initializer] = STATE(1212), [sym_keyed_element] = STATE(1904), - [sym_function_literal] = STATE(1140), - [sym_reference_expression] = STATE(1236), - [sym_type_reference_expression] = STATE(3541), - [sym_unary_expression] = STATE(1140), - [sym_receive_expression] = STATE(1140), - [sym_binary_expression] = STATE(1140), - [sym_as_type_cast_expression] = STATE(1140), - [sym__max_group] = STATE(1140), - [sym_literal] = STATE(1146), + [sym_function_literal] = STATE(1211), + [sym_reference_expression] = STATE(1252), + [sym_type_reference_expression] = STATE(3460), + [sym_unary_expression] = STATE(1211), + [sym_receive_expression] = STATE(1211), + [sym_binary_expression] = STATE(1211), + [sym_as_type_cast_expression] = STATE(1211), + [sym__max_group] = STATE(1211), + [sym_literal] = STATE(1209), [sym_spread_expression] = STATE(1904), - [sym_map_init_expression] = STATE(1199), - [sym_array_creation] = STATE(1140), - [sym_fixed_array_creation] = STATE(1140), - [sym_selector_expression] = STATE(1140), - [sym_index_expression] = STATE(1140), - [sym_slice_expression] = STATE(1140), - [sym_if_expression] = STATE(1199), - [sym_compile_time_if_expression] = STATE(1199), - [sym_is_expression] = STATE(1140), - [sym_in_expression] = STATE(1140), - [sym_enum_fetch] = STATE(1140), - [sym_match_expression] = STATE(1199), - [sym_select_expression] = STATE(1199), - [sym_lock_expression] = STATE(1199), - [sym_unsafe_expression] = STATE(1199), - [sym_sql_expression] = STATE(1199), - [sym_c_string_literal] = STATE(1147), - [sym_raw_string_literal] = STATE(1147), - [sym_interpreted_string_literal] = STATE(1147), - [sym_mutability_modifiers] = STATE(789), + [sym_map_init_expression] = STATE(1212), + [sym_array_creation] = STATE(1211), + [sym_fixed_array_creation] = STATE(1211), + [sym_selector_expression] = STATE(1211), + [sym_index_expression] = STATE(1211), + [sym_slice_expression] = STATE(1211), + [sym_if_expression] = STATE(1212), + [sym_compile_time_if_expression] = STATE(1212), + [sym_is_expression] = STATE(1211), + [sym_in_expression] = STATE(1211), + [sym_enum_fetch] = STATE(1211), + [sym_match_expression] = STATE(1212), + [sym_select_expression] = STATE(1212), + [sym_lock_expression] = STATE(1212), + [sym_unsafe_expression] = STATE(1212), + [sym_sql_expression] = STATE(1212), + [sym_c_string_literal] = STATE(1201), + [sym_raw_string_literal] = STATE(1201), + [sym_interpreted_string_literal] = STATE(1201), + [sym_mutability_modifiers] = STATE(769), [sym_mutable_expression] = STATE(1904), - [sym_plain_type] = STATE(4234), - [sym__plain_type_without_special] = STATE(2302), - [sym_anon_struct_type] = STATE(2303), - [sym_multi_return_type] = STATE(2302), - [sym_result_type] = STATE(2302), - [sym_option_type] = STATE(2302), - [sym_qualified_type] = STATE(3541), - [sym_fixed_array_type] = STATE(2303), - [sym_array_type] = STATE(2303), - [sym_pointer_type] = STATE(2303), - [sym_wrong_pointer_type] = STATE(2303), - [sym_map_type] = STATE(2303), - [sym_channel_type] = STATE(2303), - [sym_shared_type] = STATE(2303), - [sym_thread_type] = STATE(2303), - [sym_atomic_type] = STATE(2303), - [sym_generic_type] = STATE(2303), - [sym_function_type] = STATE(2303), - [aux_sym_argument_list_repeat1] = STATE(199), - [sym_identifier] = ACTIONS(1071), + [sym_plain_type] = STATE(4123), + [sym__plain_type_without_special] = STATE(2360), + [sym_anon_struct_type] = STATE(2362), + [sym_multi_return_type] = STATE(2360), + [sym_result_type] = STATE(2360), + [sym_option_type] = STATE(2360), + [sym_qualified_type] = STATE(3460), + [sym_fixed_array_type] = STATE(2362), + [sym_array_type] = STATE(2362), + [sym_pointer_type] = STATE(2362), + [sym_wrong_pointer_type] = STATE(2362), + [sym_map_type] = STATE(2362), + [sym_channel_type] = STATE(2362), + [sym_shared_type] = STATE(2362), + [sym_thread_type] = STATE(2362), + [sym_atomic_type] = STATE(2362), + [sym_generic_type] = STATE(2362), + [sym_function_type] = STATE(2362), + [aux_sym_argument_list_repeat1] = STATE(200), + [sym_identifier] = ACTIONS(1139), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), [anon_sym_DOT] = ACTIONS(631), @@ -45521,7 +45539,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS] = ACTIONS(643), [anon_sym_DASH] = ACTIONS(643), [anon_sym_STAR] = ACTIONS(645), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1077), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1145), [anon_sym_struct] = ACTIONS(649), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), @@ -45565,73 +45583,73 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [198] = { [sym_line_comment] = STATE(198), [sym_block_comment] = STATE(198), - [sym__expression] = STATE(1117), - [sym__expression_without_blocks] = STATE(1141), - [sym__expression_with_blocks] = STATE(1141), - [sym_inc_expression] = STATE(1140), - [sym_dec_expression] = STATE(1140), - [sym_or_block_expression] = STATE(1140), - [sym_option_propagation_expression] = STATE(1140), - [sym_result_propagation_expression] = STATE(1140), - [sym_anon_struct_value_expression] = STATE(1199), - [sym_go_expression] = STATE(1140), - [sym_spawn_expression] = STATE(1140), - [sym_parenthesized_expression] = STATE(1140), - [sym_call_expression] = STATE(1140), - [sym_argument] = STATE(1903), - [sym_type_initializer] = STATE(1199), + [sym__expression] = STATE(1126), + [sym__expression_without_blocks] = STATE(1210), + [sym__expression_with_blocks] = STATE(1210), + [sym_inc_expression] = STATE(1211), + [sym_dec_expression] = STATE(1211), + [sym_or_block_expression] = STATE(1211), + [sym_option_propagation_expression] = STATE(1211), + [sym_result_propagation_expression] = STATE(1211), + [sym_anon_struct_value_expression] = STATE(1212), + [sym_go_expression] = STATE(1211), + [sym_spawn_expression] = STATE(1211), + [sym_parenthesized_expression] = STATE(1211), + [sym_call_expression] = STATE(1211), + [sym_argument] = STATE(1907), + [sym_type_initializer] = STATE(1212), [sym_keyed_element] = STATE(1904), - [sym_function_literal] = STATE(1140), - [sym_reference_expression] = STATE(1236), - [sym_type_reference_expression] = STATE(3541), - [sym_unary_expression] = STATE(1140), - [sym_receive_expression] = STATE(1140), - [sym_binary_expression] = STATE(1140), - [sym_as_type_cast_expression] = STATE(1140), - [sym__max_group] = STATE(1140), - [sym_literal] = STATE(1146), + [sym_function_literal] = STATE(1211), + [sym_reference_expression] = STATE(1252), + [sym_type_reference_expression] = STATE(3460), + [sym_unary_expression] = STATE(1211), + [sym_receive_expression] = STATE(1211), + [sym_binary_expression] = STATE(1211), + [sym_as_type_cast_expression] = STATE(1211), + [sym__max_group] = STATE(1211), + [sym_literal] = STATE(1209), [sym_spread_expression] = STATE(1904), - [sym_map_init_expression] = STATE(1199), - [sym_array_creation] = STATE(1140), - [sym_fixed_array_creation] = STATE(1140), - [sym_selector_expression] = STATE(1140), - [sym_index_expression] = STATE(1140), - [sym_slice_expression] = STATE(1140), - [sym_if_expression] = STATE(1199), - [sym_compile_time_if_expression] = STATE(1199), - [sym_is_expression] = STATE(1140), - [sym_in_expression] = STATE(1140), - [sym_enum_fetch] = STATE(1140), - [sym_match_expression] = STATE(1199), - [sym_select_expression] = STATE(1199), - [sym_lock_expression] = STATE(1199), - [sym_unsafe_expression] = STATE(1199), - [sym_sql_expression] = STATE(1199), - [sym_c_string_literal] = STATE(1147), - [sym_raw_string_literal] = STATE(1147), - [sym_interpreted_string_literal] = STATE(1147), - [sym_mutability_modifiers] = STATE(789), + [sym_map_init_expression] = STATE(1212), + [sym_array_creation] = STATE(1211), + [sym_fixed_array_creation] = STATE(1211), + [sym_selector_expression] = STATE(1211), + [sym_index_expression] = STATE(1211), + [sym_slice_expression] = STATE(1211), + [sym_if_expression] = STATE(1212), + [sym_compile_time_if_expression] = STATE(1212), + [sym_is_expression] = STATE(1211), + [sym_in_expression] = STATE(1211), + [sym_enum_fetch] = STATE(1211), + [sym_match_expression] = STATE(1212), + [sym_select_expression] = STATE(1212), + [sym_lock_expression] = STATE(1212), + [sym_unsafe_expression] = STATE(1212), + [sym_sql_expression] = STATE(1212), + [sym_c_string_literal] = STATE(1201), + [sym_raw_string_literal] = STATE(1201), + [sym_interpreted_string_literal] = STATE(1201), + [sym_mutability_modifiers] = STATE(769), [sym_mutable_expression] = STATE(1904), - [sym_plain_type] = STATE(4234), - [sym__plain_type_without_special] = STATE(2302), - [sym_anon_struct_type] = STATE(2303), - [sym_multi_return_type] = STATE(2302), - [sym_result_type] = STATE(2302), - [sym_option_type] = STATE(2302), - [sym_qualified_type] = STATE(3541), - [sym_fixed_array_type] = STATE(2303), - [sym_array_type] = STATE(2303), - [sym_pointer_type] = STATE(2303), - [sym_wrong_pointer_type] = STATE(2303), - [sym_map_type] = STATE(2303), - [sym_channel_type] = STATE(2303), - [sym_shared_type] = STATE(2303), - [sym_thread_type] = STATE(2303), - [sym_atomic_type] = STATE(2303), - [sym_generic_type] = STATE(2303), - [sym_function_type] = STATE(2303), - [aux_sym_argument_list_repeat1] = STATE(199), - [sym_identifier] = ACTIONS(1071), + [sym_plain_type] = STATE(4123), + [sym__plain_type_without_special] = STATE(2360), + [sym_anon_struct_type] = STATE(2362), + [sym_multi_return_type] = STATE(2360), + [sym_result_type] = STATE(2360), + [sym_option_type] = STATE(2360), + [sym_qualified_type] = STATE(3460), + [sym_fixed_array_type] = STATE(2362), + [sym_array_type] = STATE(2362), + [sym_pointer_type] = STATE(2362), + [sym_wrong_pointer_type] = STATE(2362), + [sym_map_type] = STATE(2362), + [sym_channel_type] = STATE(2362), + [sym_shared_type] = STATE(2362), + [sym_thread_type] = STATE(2362), + [sym_atomic_type] = STATE(2362), + [sym_generic_type] = STATE(2362), + [sym_function_type] = STATE(2362), + [aux_sym_argument_list_repeat1] = STATE(200), + [sym_identifier] = ACTIONS(1139), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), [anon_sym_DOT] = ACTIONS(631), @@ -45642,7 +45660,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS] = ACTIONS(643), [anon_sym_DASH] = ACTIONS(643), [anon_sym_STAR] = ACTIONS(645), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1077), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1145), [anon_sym_struct] = ACTIONS(649), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), @@ -45686,205 +45704,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [199] = { [sym_line_comment] = STATE(199), [sym_block_comment] = STATE(199), - [sym__expression] = STATE(1117), - [sym__expression_without_blocks] = STATE(1141), - [sym__expression_with_blocks] = STATE(1141), - [sym_inc_expression] = STATE(1140), - [sym_dec_expression] = STATE(1140), - [sym_or_block_expression] = STATE(1140), - [sym_option_propagation_expression] = STATE(1140), - [sym_result_propagation_expression] = STATE(1140), - [sym_anon_struct_value_expression] = STATE(1199), - [sym_go_expression] = STATE(1140), - [sym_spawn_expression] = STATE(1140), - [sym_parenthesized_expression] = STATE(1140), - [sym_call_expression] = STATE(1140), - [sym_argument] = STATE(1903), - [sym_type_initializer] = STATE(1199), - [sym_keyed_element] = STATE(1904), - [sym_function_literal] = STATE(1140), - [sym_reference_expression] = STATE(1236), - [sym_type_reference_expression] = STATE(3541), - [sym_unary_expression] = STATE(1140), - [sym_receive_expression] = STATE(1140), - [sym_binary_expression] = STATE(1140), - [sym_as_type_cast_expression] = STATE(1140), - [sym__max_group] = STATE(1140), - [sym_literal] = STATE(1146), - [sym_spread_expression] = STATE(1904), - [sym_map_init_expression] = STATE(1199), - [sym_array_creation] = STATE(1140), - [sym_fixed_array_creation] = STATE(1140), - [sym_selector_expression] = STATE(1140), - [sym_index_expression] = STATE(1140), - [sym_slice_expression] = STATE(1140), - [sym_if_expression] = STATE(1199), - [sym_compile_time_if_expression] = STATE(1199), - [sym_is_expression] = STATE(1140), - [sym_in_expression] = STATE(1140), - [sym_enum_fetch] = STATE(1140), - [sym_match_expression] = STATE(1199), - [sym_select_expression] = STATE(1199), - [sym_lock_expression] = STATE(1199), - [sym_unsafe_expression] = STATE(1199), - [sym_sql_expression] = STATE(1199), - [sym_c_string_literal] = STATE(1147), - [sym_raw_string_literal] = STATE(1147), - [sym_interpreted_string_literal] = STATE(1147), - [sym_mutability_modifiers] = STATE(789), - [sym_mutable_expression] = STATE(1904), - [sym_plain_type] = STATE(4234), - [sym__plain_type_without_special] = STATE(2302), - [sym_anon_struct_type] = STATE(2303), - [sym_multi_return_type] = STATE(2302), - [sym_result_type] = STATE(2302), - [sym_option_type] = STATE(2302), - [sym_qualified_type] = STATE(3541), - [sym_fixed_array_type] = STATE(2303), - [sym_array_type] = STATE(2303), - [sym_pointer_type] = STATE(2303), - [sym_wrong_pointer_type] = STATE(2303), - [sym_map_type] = STATE(2303), - [sym_channel_type] = STATE(2303), - [sym_shared_type] = STATE(2303), - [sym_thread_type] = STATE(2303), - [sym_atomic_type] = STATE(2303), - [sym_generic_type] = STATE(2303), - [sym_function_type] = STATE(2303), - [aux_sym_argument_list_repeat1] = STATE(199), - [sym_identifier] = ACTIONS(1502), - [anon_sym_SLASH_SLASH] = ACTIONS(3), - [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1505), - [anon_sym_LBRACE] = ACTIONS(1508), - [anon_sym_LPAREN] = ACTIONS(1511), - [anon_sym_RPAREN] = ACTIONS(1514), - [anon_sym_fn] = ACTIONS(1516), - [anon_sym_PLUS] = ACTIONS(1519), - [anon_sym_DASH] = ACTIONS(1519), - [anon_sym_STAR] = ACTIONS(1522), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1525), - [anon_sym_struct] = ACTIONS(1528), - [anon_sym_mut] = ACTIONS(1531), - [anon_sym_QMARK] = ACTIONS(1534), - [anon_sym_BANG] = ACTIONS(1537), - [anon_sym_go] = ACTIONS(1540), - [anon_sym_spawn] = ACTIONS(1543), - [anon_sym_json_DOTdecode] = ACTIONS(1546), - [anon_sym_LBRACK2] = ACTIONS(1549), - [anon_sym_TILDE] = ACTIONS(1519), - [anon_sym_CARET] = ACTIONS(1519), - [anon_sym_AMP] = ACTIONS(1552), - [anon_sym_LT_DASH] = ACTIONS(1555), - [sym_none] = ACTIONS(1558), - [sym_true] = ACTIONS(1558), - [sym_false] = ACTIONS(1558), - [sym_nil] = ACTIONS(1558), - [anon_sym_if] = ACTIONS(1561), - [anon_sym_DOLLARif] = ACTIONS(1564), - [anon_sym_match] = ACTIONS(1567), - [anon_sym_select] = ACTIONS(1570), - [anon_sym_lock] = ACTIONS(1573), - [anon_sym_rlock] = ACTIONS(1573), - [anon_sym_unsafe] = ACTIONS(1576), - [anon_sym_sql] = ACTIONS(1579), - [sym_int_literal] = ACTIONS(1558), - [sym_float_literal] = ACTIONS(1582), - [sym_rune_literal] = ACTIONS(1582), - [sym_pseudo_compile_time_identifier] = ACTIONS(1585), - [anon_sym_shared] = ACTIONS(1588), - [anon_sym_map_LBRACK] = ACTIONS(1591), - [anon_sym_chan] = ACTIONS(1594), - [anon_sym_thread] = ACTIONS(1597), - [anon_sym_atomic] = ACTIONS(1600), - [sym___double_quote] = ACTIONS(1603), - [sym___single_quote] = ACTIONS(1606), - [sym___c_double_quote] = ACTIONS(1609), - [sym___c_single_quote] = ACTIONS(1612), - [sym___r_double_quote] = ACTIONS(1615), - [sym___r_single_quote] = ACTIONS(1618), - }, - [200] = { - [sym_line_comment] = STATE(200), - [sym_block_comment] = STATE(200), - [sym__expression] = STATE(1117), - [sym__expression_without_blocks] = STATE(1141), - [sym__expression_with_blocks] = STATE(1141), - [sym_inc_expression] = STATE(1140), - [sym_dec_expression] = STATE(1140), - [sym_or_block_expression] = STATE(1140), - [sym_option_propagation_expression] = STATE(1140), - [sym_result_propagation_expression] = STATE(1140), - [sym_anon_struct_value_expression] = STATE(1199), - [sym_go_expression] = STATE(1140), - [sym_spawn_expression] = STATE(1140), - [sym_parenthesized_expression] = STATE(1140), - [sym_call_expression] = STATE(1140), - [sym_argument] = STATE(1903), - [sym_type_initializer] = STATE(1199), + [sym__expression] = STATE(1126), + [sym__expression_without_blocks] = STATE(1210), + [sym__expression_with_blocks] = STATE(1210), + [sym_inc_expression] = STATE(1211), + [sym_dec_expression] = STATE(1211), + [sym_or_block_expression] = STATE(1211), + [sym_option_propagation_expression] = STATE(1211), + [sym_result_propagation_expression] = STATE(1211), + [sym_anon_struct_value_expression] = STATE(1212), + [sym_go_expression] = STATE(1211), + [sym_spawn_expression] = STATE(1211), + [sym_parenthesized_expression] = STATE(1211), + [sym_call_expression] = STATE(1211), + [sym_argument] = STATE(1907), + [sym_type_initializer] = STATE(1212), [sym_keyed_element] = STATE(1904), - [sym_function_literal] = STATE(1140), - [sym_reference_expression] = STATE(1236), - [sym_type_reference_expression] = STATE(3541), - [sym_unary_expression] = STATE(1140), - [sym_receive_expression] = STATE(1140), - [sym_binary_expression] = STATE(1140), - [sym_as_type_cast_expression] = STATE(1140), - [sym__max_group] = STATE(1140), - [sym_literal] = STATE(1146), + [sym_function_literal] = STATE(1211), + [sym_reference_expression] = STATE(1252), + [sym_type_reference_expression] = STATE(3460), + [sym_unary_expression] = STATE(1211), + [sym_receive_expression] = STATE(1211), + [sym_binary_expression] = STATE(1211), + [sym_as_type_cast_expression] = STATE(1211), + [sym__max_group] = STATE(1211), + [sym_literal] = STATE(1209), [sym_spread_expression] = STATE(1904), - [sym_map_init_expression] = STATE(1199), - [sym_array_creation] = STATE(1140), - [sym_fixed_array_creation] = STATE(1140), - [sym_selector_expression] = STATE(1140), - [sym_index_expression] = STATE(1140), - [sym_slice_expression] = STATE(1140), - [sym_if_expression] = STATE(1199), - [sym_compile_time_if_expression] = STATE(1199), - [sym_is_expression] = STATE(1140), - [sym_in_expression] = STATE(1140), - [sym_enum_fetch] = STATE(1140), - [sym_match_expression] = STATE(1199), - [sym_select_expression] = STATE(1199), - [sym_lock_expression] = STATE(1199), - [sym_unsafe_expression] = STATE(1199), - [sym_sql_expression] = STATE(1199), - [sym_c_string_literal] = STATE(1147), - [sym_raw_string_literal] = STATE(1147), - [sym_interpreted_string_literal] = STATE(1147), - [sym_mutability_modifiers] = STATE(789), + [sym_map_init_expression] = STATE(1212), + [sym_array_creation] = STATE(1211), + [sym_fixed_array_creation] = STATE(1211), + [sym_selector_expression] = STATE(1211), + [sym_index_expression] = STATE(1211), + [sym_slice_expression] = STATE(1211), + [sym_if_expression] = STATE(1212), + [sym_compile_time_if_expression] = STATE(1212), + [sym_is_expression] = STATE(1211), + [sym_in_expression] = STATE(1211), + [sym_enum_fetch] = STATE(1211), + [sym_match_expression] = STATE(1212), + [sym_select_expression] = STATE(1212), + [sym_lock_expression] = STATE(1212), + [sym_unsafe_expression] = STATE(1212), + [sym_sql_expression] = STATE(1212), + [sym_c_string_literal] = STATE(1201), + [sym_raw_string_literal] = STATE(1201), + [sym_interpreted_string_literal] = STATE(1201), + [sym_mutability_modifiers] = STATE(769), [sym_mutable_expression] = STATE(1904), - [sym_plain_type] = STATE(4234), - [sym__plain_type_without_special] = STATE(2302), - [sym_anon_struct_type] = STATE(2303), - [sym_multi_return_type] = STATE(2302), - [sym_result_type] = STATE(2302), - [sym_option_type] = STATE(2302), - [sym_qualified_type] = STATE(3541), - [sym_fixed_array_type] = STATE(2303), - [sym_array_type] = STATE(2303), - [sym_pointer_type] = STATE(2303), - [sym_wrong_pointer_type] = STATE(2303), - [sym_map_type] = STATE(2303), - [sym_channel_type] = STATE(2303), - [sym_shared_type] = STATE(2303), - [sym_thread_type] = STATE(2303), - [sym_atomic_type] = STATE(2303), - [sym_generic_type] = STATE(2303), - [sym_function_type] = STATE(2303), - [aux_sym_argument_list_repeat1] = STATE(199), - [sym_identifier] = ACTIONS(1071), + [sym_plain_type] = STATE(4123), + [sym__plain_type_without_special] = STATE(2360), + [sym_anon_struct_type] = STATE(2362), + [sym_multi_return_type] = STATE(2360), + [sym_result_type] = STATE(2360), + [sym_option_type] = STATE(2360), + [sym_qualified_type] = STATE(3460), + [sym_fixed_array_type] = STATE(2362), + [sym_array_type] = STATE(2362), + [sym_pointer_type] = STATE(2362), + [sym_wrong_pointer_type] = STATE(2362), + [sym_map_type] = STATE(2362), + [sym_channel_type] = STATE(2362), + [sym_shared_type] = STATE(2362), + [sym_thread_type] = STATE(2362), + [sym_atomic_type] = STATE(2362), + [sym_generic_type] = STATE(2362), + [sym_function_type] = STATE(2362), + [aux_sym_argument_list_repeat1] = STATE(200), + [sym_identifier] = ACTIONS(1139), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), [anon_sym_DOT] = ACTIONS(631), [anon_sym_LBRACE] = ACTIONS(633), [anon_sym_LPAREN] = ACTIONS(637), - [anon_sym_RPAREN] = ACTIONS(1621), + [anon_sym_RPAREN] = ACTIONS(1502), [anon_sym_fn] = ACTIONS(641), [anon_sym_PLUS] = ACTIONS(643), [anon_sym_DASH] = ACTIONS(643), [anon_sym_STAR] = ACTIONS(645), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1077), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1145), [anon_sym_struct] = ACTIONS(649), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), @@ -45925,76 +45822,197 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym___r_double_quote] = ACTIONS(697), [sym___r_single_quote] = ACTIONS(699), }, + [200] = { + [sym_line_comment] = STATE(200), + [sym_block_comment] = STATE(200), + [sym__expression] = STATE(1126), + [sym__expression_without_blocks] = STATE(1210), + [sym__expression_with_blocks] = STATE(1210), + [sym_inc_expression] = STATE(1211), + [sym_dec_expression] = STATE(1211), + [sym_or_block_expression] = STATE(1211), + [sym_option_propagation_expression] = STATE(1211), + [sym_result_propagation_expression] = STATE(1211), + [sym_anon_struct_value_expression] = STATE(1212), + [sym_go_expression] = STATE(1211), + [sym_spawn_expression] = STATE(1211), + [sym_parenthesized_expression] = STATE(1211), + [sym_call_expression] = STATE(1211), + [sym_argument] = STATE(1907), + [sym_type_initializer] = STATE(1212), + [sym_keyed_element] = STATE(1904), + [sym_function_literal] = STATE(1211), + [sym_reference_expression] = STATE(1252), + [sym_type_reference_expression] = STATE(3460), + [sym_unary_expression] = STATE(1211), + [sym_receive_expression] = STATE(1211), + [sym_binary_expression] = STATE(1211), + [sym_as_type_cast_expression] = STATE(1211), + [sym__max_group] = STATE(1211), + [sym_literal] = STATE(1209), + [sym_spread_expression] = STATE(1904), + [sym_map_init_expression] = STATE(1212), + [sym_array_creation] = STATE(1211), + [sym_fixed_array_creation] = STATE(1211), + [sym_selector_expression] = STATE(1211), + [sym_index_expression] = STATE(1211), + [sym_slice_expression] = STATE(1211), + [sym_if_expression] = STATE(1212), + [sym_compile_time_if_expression] = STATE(1212), + [sym_is_expression] = STATE(1211), + [sym_in_expression] = STATE(1211), + [sym_enum_fetch] = STATE(1211), + [sym_match_expression] = STATE(1212), + [sym_select_expression] = STATE(1212), + [sym_lock_expression] = STATE(1212), + [sym_unsafe_expression] = STATE(1212), + [sym_sql_expression] = STATE(1212), + [sym_c_string_literal] = STATE(1201), + [sym_raw_string_literal] = STATE(1201), + [sym_interpreted_string_literal] = STATE(1201), + [sym_mutability_modifiers] = STATE(769), + [sym_mutable_expression] = STATE(1904), + [sym_plain_type] = STATE(4123), + [sym__plain_type_without_special] = STATE(2360), + [sym_anon_struct_type] = STATE(2362), + [sym_multi_return_type] = STATE(2360), + [sym_result_type] = STATE(2360), + [sym_option_type] = STATE(2360), + [sym_qualified_type] = STATE(3460), + [sym_fixed_array_type] = STATE(2362), + [sym_array_type] = STATE(2362), + [sym_pointer_type] = STATE(2362), + [sym_wrong_pointer_type] = STATE(2362), + [sym_map_type] = STATE(2362), + [sym_channel_type] = STATE(2362), + [sym_shared_type] = STATE(2362), + [sym_thread_type] = STATE(2362), + [sym_atomic_type] = STATE(2362), + [sym_generic_type] = STATE(2362), + [sym_function_type] = STATE(2362), + [aux_sym_argument_list_repeat1] = STATE(200), + [sym_identifier] = ACTIONS(1504), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(1507), + [anon_sym_LBRACE] = ACTIONS(1510), + [anon_sym_LPAREN] = ACTIONS(1513), + [anon_sym_RPAREN] = ACTIONS(1516), + [anon_sym_fn] = ACTIONS(1518), + [anon_sym_PLUS] = ACTIONS(1521), + [anon_sym_DASH] = ACTIONS(1521), + [anon_sym_STAR] = ACTIONS(1524), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1527), + [anon_sym_struct] = ACTIONS(1530), + [anon_sym_mut] = ACTIONS(1533), + [anon_sym_QMARK] = ACTIONS(1536), + [anon_sym_BANG] = ACTIONS(1539), + [anon_sym_go] = ACTIONS(1542), + [anon_sym_spawn] = ACTIONS(1545), + [anon_sym_json_DOTdecode] = ACTIONS(1548), + [anon_sym_LBRACK2] = ACTIONS(1551), + [anon_sym_TILDE] = ACTIONS(1521), + [anon_sym_CARET] = ACTIONS(1521), + [anon_sym_AMP] = ACTIONS(1554), + [anon_sym_LT_DASH] = ACTIONS(1557), + [sym_none] = ACTIONS(1560), + [sym_true] = ACTIONS(1560), + [sym_false] = ACTIONS(1560), + [sym_nil] = ACTIONS(1560), + [anon_sym_if] = ACTIONS(1563), + [anon_sym_DOLLARif] = ACTIONS(1566), + [anon_sym_match] = ACTIONS(1569), + [anon_sym_select] = ACTIONS(1572), + [anon_sym_lock] = ACTIONS(1575), + [anon_sym_rlock] = ACTIONS(1575), + [anon_sym_unsafe] = ACTIONS(1578), + [anon_sym_sql] = ACTIONS(1581), + [sym_int_literal] = ACTIONS(1560), + [sym_float_literal] = ACTIONS(1584), + [sym_rune_literal] = ACTIONS(1584), + [sym_pseudo_compile_time_identifier] = ACTIONS(1587), + [anon_sym_shared] = ACTIONS(1590), + [anon_sym_map_LBRACK] = ACTIONS(1593), + [anon_sym_chan] = ACTIONS(1596), + [anon_sym_thread] = ACTIONS(1599), + [anon_sym_atomic] = ACTIONS(1602), + [sym___double_quote] = ACTIONS(1605), + [sym___single_quote] = ACTIONS(1608), + [sym___c_double_quote] = ACTIONS(1611), + [sym___c_single_quote] = ACTIONS(1614), + [sym___r_double_quote] = ACTIONS(1617), + [sym___r_single_quote] = ACTIONS(1620), + }, [201] = { [sym_line_comment] = STATE(201), [sym_block_comment] = STATE(201), - [sym__expression] = STATE(1117), - [sym__expression_without_blocks] = STATE(1141), - [sym__expression_with_blocks] = STATE(1141), - [sym_inc_expression] = STATE(1140), - [sym_dec_expression] = STATE(1140), - [sym_or_block_expression] = STATE(1140), - [sym_option_propagation_expression] = STATE(1140), - [sym_result_propagation_expression] = STATE(1140), - [sym_anon_struct_value_expression] = STATE(1199), - [sym_go_expression] = STATE(1140), - [sym_spawn_expression] = STATE(1140), - [sym_parenthesized_expression] = STATE(1140), - [sym_call_expression] = STATE(1140), - [sym_argument] = STATE(1903), - [sym_type_initializer] = STATE(1199), + [sym__expression] = STATE(1126), + [sym__expression_without_blocks] = STATE(1210), + [sym__expression_with_blocks] = STATE(1210), + [sym_inc_expression] = STATE(1211), + [sym_dec_expression] = STATE(1211), + [sym_or_block_expression] = STATE(1211), + [sym_option_propagation_expression] = STATE(1211), + [sym_result_propagation_expression] = STATE(1211), + [sym_anon_struct_value_expression] = STATE(1212), + [sym_go_expression] = STATE(1211), + [sym_spawn_expression] = STATE(1211), + [sym_parenthesized_expression] = STATE(1211), + [sym_call_expression] = STATE(1211), + [sym_argument] = STATE(1907), + [sym_type_initializer] = STATE(1212), [sym_keyed_element] = STATE(1904), - [sym_function_literal] = STATE(1140), - [sym_reference_expression] = STATE(1236), - [sym_type_reference_expression] = STATE(3541), - [sym_unary_expression] = STATE(1140), - [sym_receive_expression] = STATE(1140), - [sym_binary_expression] = STATE(1140), - [sym_as_type_cast_expression] = STATE(1140), - [sym__max_group] = STATE(1140), - [sym_literal] = STATE(1146), + [sym_function_literal] = STATE(1211), + [sym_reference_expression] = STATE(1252), + [sym_type_reference_expression] = STATE(3460), + [sym_unary_expression] = STATE(1211), + [sym_receive_expression] = STATE(1211), + [sym_binary_expression] = STATE(1211), + [sym_as_type_cast_expression] = STATE(1211), + [sym__max_group] = STATE(1211), + [sym_literal] = STATE(1209), [sym_spread_expression] = STATE(1904), - [sym_map_init_expression] = STATE(1199), - [sym_array_creation] = STATE(1140), - [sym_fixed_array_creation] = STATE(1140), - [sym_selector_expression] = STATE(1140), - [sym_index_expression] = STATE(1140), - [sym_slice_expression] = STATE(1140), - [sym_if_expression] = STATE(1199), - [sym_compile_time_if_expression] = STATE(1199), - [sym_is_expression] = STATE(1140), - [sym_in_expression] = STATE(1140), - [sym_enum_fetch] = STATE(1140), - [sym_match_expression] = STATE(1199), - [sym_select_expression] = STATE(1199), - [sym_lock_expression] = STATE(1199), - [sym_unsafe_expression] = STATE(1199), - [sym_sql_expression] = STATE(1199), - [sym_c_string_literal] = STATE(1147), - [sym_raw_string_literal] = STATE(1147), - [sym_interpreted_string_literal] = STATE(1147), - [sym_mutability_modifiers] = STATE(789), + [sym_map_init_expression] = STATE(1212), + [sym_array_creation] = STATE(1211), + [sym_fixed_array_creation] = STATE(1211), + [sym_selector_expression] = STATE(1211), + [sym_index_expression] = STATE(1211), + [sym_slice_expression] = STATE(1211), + [sym_if_expression] = STATE(1212), + [sym_compile_time_if_expression] = STATE(1212), + [sym_is_expression] = STATE(1211), + [sym_in_expression] = STATE(1211), + [sym_enum_fetch] = STATE(1211), + [sym_match_expression] = STATE(1212), + [sym_select_expression] = STATE(1212), + [sym_lock_expression] = STATE(1212), + [sym_unsafe_expression] = STATE(1212), + [sym_sql_expression] = STATE(1212), + [sym_c_string_literal] = STATE(1201), + [sym_raw_string_literal] = STATE(1201), + [sym_interpreted_string_literal] = STATE(1201), + [sym_mutability_modifiers] = STATE(769), [sym_mutable_expression] = STATE(1904), - [sym_plain_type] = STATE(4234), - [sym__plain_type_without_special] = STATE(2302), - [sym_anon_struct_type] = STATE(2303), - [sym_multi_return_type] = STATE(2302), - [sym_result_type] = STATE(2302), - [sym_option_type] = STATE(2302), - [sym_qualified_type] = STATE(3541), - [sym_fixed_array_type] = STATE(2303), - [sym_array_type] = STATE(2303), - [sym_pointer_type] = STATE(2303), - [sym_wrong_pointer_type] = STATE(2303), - [sym_map_type] = STATE(2303), - [sym_channel_type] = STATE(2303), - [sym_shared_type] = STATE(2303), - [sym_thread_type] = STATE(2303), - [sym_atomic_type] = STATE(2303), - [sym_generic_type] = STATE(2303), - [sym_function_type] = STATE(2303), - [aux_sym_argument_list_repeat1] = STATE(199), - [sym_identifier] = ACTIONS(1071), + [sym_plain_type] = STATE(4123), + [sym__plain_type_without_special] = STATE(2360), + [sym_anon_struct_type] = STATE(2362), + [sym_multi_return_type] = STATE(2360), + [sym_result_type] = STATE(2360), + [sym_option_type] = STATE(2360), + [sym_qualified_type] = STATE(3460), + [sym_fixed_array_type] = STATE(2362), + [sym_array_type] = STATE(2362), + [sym_pointer_type] = STATE(2362), + [sym_wrong_pointer_type] = STATE(2362), + [sym_map_type] = STATE(2362), + [sym_channel_type] = STATE(2362), + [sym_shared_type] = STATE(2362), + [sym_thread_type] = STATE(2362), + [sym_atomic_type] = STATE(2362), + [sym_generic_type] = STATE(2362), + [sym_function_type] = STATE(2362), + [aux_sym_argument_list_repeat1] = STATE(200), + [sym_identifier] = ACTIONS(1139), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), [anon_sym_DOT] = ACTIONS(631), @@ -46005,7 +46023,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS] = ACTIONS(643), [anon_sym_DASH] = ACTIONS(643), [anon_sym_STAR] = ACTIONS(645), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1077), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1145), [anon_sym_struct] = ACTIONS(649), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), @@ -46049,73 +46067,73 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [202] = { [sym_line_comment] = STATE(202), [sym_block_comment] = STATE(202), - [sym__expression] = STATE(1117), - [sym__expression_without_blocks] = STATE(1141), - [sym__expression_with_blocks] = STATE(1141), - [sym_inc_expression] = STATE(1140), - [sym_dec_expression] = STATE(1140), - [sym_or_block_expression] = STATE(1140), - [sym_option_propagation_expression] = STATE(1140), - [sym_result_propagation_expression] = STATE(1140), - [sym_anon_struct_value_expression] = STATE(1199), - [sym_go_expression] = STATE(1140), - [sym_spawn_expression] = STATE(1140), - [sym_parenthesized_expression] = STATE(1140), - [sym_call_expression] = STATE(1140), - [sym_argument] = STATE(1903), - [sym_type_initializer] = STATE(1199), + [sym__expression] = STATE(1126), + [sym__expression_without_blocks] = STATE(1210), + [sym__expression_with_blocks] = STATE(1210), + [sym_inc_expression] = STATE(1211), + [sym_dec_expression] = STATE(1211), + [sym_or_block_expression] = STATE(1211), + [sym_option_propagation_expression] = STATE(1211), + [sym_result_propagation_expression] = STATE(1211), + [sym_anon_struct_value_expression] = STATE(1212), + [sym_go_expression] = STATE(1211), + [sym_spawn_expression] = STATE(1211), + [sym_parenthesized_expression] = STATE(1211), + [sym_call_expression] = STATE(1211), + [sym_argument] = STATE(1907), + [sym_type_initializer] = STATE(1212), [sym_keyed_element] = STATE(1904), - [sym_function_literal] = STATE(1140), - [sym_reference_expression] = STATE(1236), - [sym_type_reference_expression] = STATE(3541), - [sym_unary_expression] = STATE(1140), - [sym_receive_expression] = STATE(1140), - [sym_binary_expression] = STATE(1140), - [sym_as_type_cast_expression] = STATE(1140), - [sym__max_group] = STATE(1140), - [sym_literal] = STATE(1146), + [sym_function_literal] = STATE(1211), + [sym_reference_expression] = STATE(1252), + [sym_type_reference_expression] = STATE(3460), + [sym_unary_expression] = STATE(1211), + [sym_receive_expression] = STATE(1211), + [sym_binary_expression] = STATE(1211), + [sym_as_type_cast_expression] = STATE(1211), + [sym__max_group] = STATE(1211), + [sym_literal] = STATE(1209), [sym_spread_expression] = STATE(1904), - [sym_map_init_expression] = STATE(1199), - [sym_array_creation] = STATE(1140), - [sym_fixed_array_creation] = STATE(1140), - [sym_selector_expression] = STATE(1140), - [sym_index_expression] = STATE(1140), - [sym_slice_expression] = STATE(1140), - [sym_if_expression] = STATE(1199), - [sym_compile_time_if_expression] = STATE(1199), - [sym_is_expression] = STATE(1140), - [sym_in_expression] = STATE(1140), - [sym_enum_fetch] = STATE(1140), - [sym_match_expression] = STATE(1199), - [sym_select_expression] = STATE(1199), - [sym_lock_expression] = STATE(1199), - [sym_unsafe_expression] = STATE(1199), - [sym_sql_expression] = STATE(1199), - [sym_c_string_literal] = STATE(1147), - [sym_raw_string_literal] = STATE(1147), - [sym_interpreted_string_literal] = STATE(1147), - [sym_mutability_modifiers] = STATE(789), + [sym_map_init_expression] = STATE(1212), + [sym_array_creation] = STATE(1211), + [sym_fixed_array_creation] = STATE(1211), + [sym_selector_expression] = STATE(1211), + [sym_index_expression] = STATE(1211), + [sym_slice_expression] = STATE(1211), + [sym_if_expression] = STATE(1212), + [sym_compile_time_if_expression] = STATE(1212), + [sym_is_expression] = STATE(1211), + [sym_in_expression] = STATE(1211), + [sym_enum_fetch] = STATE(1211), + [sym_match_expression] = STATE(1212), + [sym_select_expression] = STATE(1212), + [sym_lock_expression] = STATE(1212), + [sym_unsafe_expression] = STATE(1212), + [sym_sql_expression] = STATE(1212), + [sym_c_string_literal] = STATE(1201), + [sym_raw_string_literal] = STATE(1201), + [sym_interpreted_string_literal] = STATE(1201), + [sym_mutability_modifiers] = STATE(769), [sym_mutable_expression] = STATE(1904), - [sym_plain_type] = STATE(4234), - [sym__plain_type_without_special] = STATE(2302), - [sym_anon_struct_type] = STATE(2303), - [sym_multi_return_type] = STATE(2302), - [sym_result_type] = STATE(2302), - [sym_option_type] = STATE(2302), - [sym_qualified_type] = STATE(3541), - [sym_fixed_array_type] = STATE(2303), - [sym_array_type] = STATE(2303), - [sym_pointer_type] = STATE(2303), - [sym_wrong_pointer_type] = STATE(2303), - [sym_map_type] = STATE(2303), - [sym_channel_type] = STATE(2303), - [sym_shared_type] = STATE(2303), - [sym_thread_type] = STATE(2303), - [sym_atomic_type] = STATE(2303), - [sym_generic_type] = STATE(2303), - [sym_function_type] = STATE(2303), - [aux_sym_argument_list_repeat1] = STATE(199), - [sym_identifier] = ACTIONS(1071), + [sym_plain_type] = STATE(4123), + [sym__plain_type_without_special] = STATE(2360), + [sym_anon_struct_type] = STATE(2362), + [sym_multi_return_type] = STATE(2360), + [sym_result_type] = STATE(2360), + [sym_option_type] = STATE(2360), + [sym_qualified_type] = STATE(3460), + [sym_fixed_array_type] = STATE(2362), + [sym_array_type] = STATE(2362), + [sym_pointer_type] = STATE(2362), + [sym_wrong_pointer_type] = STATE(2362), + [sym_map_type] = STATE(2362), + [sym_channel_type] = STATE(2362), + [sym_shared_type] = STATE(2362), + [sym_thread_type] = STATE(2362), + [sym_atomic_type] = STATE(2362), + [sym_generic_type] = STATE(2362), + [sym_function_type] = STATE(2362), + [aux_sym_argument_list_repeat1] = STATE(200), + [sym_identifier] = ACTIONS(1139), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), [anon_sym_DOT] = ACTIONS(631), @@ -46126,7 +46144,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS] = ACTIONS(643), [anon_sym_DASH] = ACTIONS(643), [anon_sym_STAR] = ACTIONS(645), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1077), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1145), [anon_sym_struct] = ACTIONS(649), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), @@ -46170,73 +46188,73 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [203] = { [sym_line_comment] = STATE(203), [sym_block_comment] = STATE(203), - [sym__expression] = STATE(1117), - [sym__expression_without_blocks] = STATE(1141), - [sym__expression_with_blocks] = STATE(1141), - [sym_inc_expression] = STATE(1140), - [sym_dec_expression] = STATE(1140), - [sym_or_block_expression] = STATE(1140), - [sym_option_propagation_expression] = STATE(1140), - [sym_result_propagation_expression] = STATE(1140), - [sym_anon_struct_value_expression] = STATE(1199), - [sym_go_expression] = STATE(1140), - [sym_spawn_expression] = STATE(1140), - [sym_parenthesized_expression] = STATE(1140), - [sym_call_expression] = STATE(1140), - [sym_argument] = STATE(1903), - [sym_type_initializer] = STATE(1199), + [sym__expression] = STATE(1126), + [sym__expression_without_blocks] = STATE(1210), + [sym__expression_with_blocks] = STATE(1210), + [sym_inc_expression] = STATE(1211), + [sym_dec_expression] = STATE(1211), + [sym_or_block_expression] = STATE(1211), + [sym_option_propagation_expression] = STATE(1211), + [sym_result_propagation_expression] = STATE(1211), + [sym_anon_struct_value_expression] = STATE(1212), + [sym_go_expression] = STATE(1211), + [sym_spawn_expression] = STATE(1211), + [sym_parenthesized_expression] = STATE(1211), + [sym_call_expression] = STATE(1211), + [sym_argument] = STATE(1907), + [sym_type_initializer] = STATE(1212), [sym_keyed_element] = STATE(1904), - [sym_function_literal] = STATE(1140), - [sym_reference_expression] = STATE(1236), - [sym_type_reference_expression] = STATE(3541), - [sym_unary_expression] = STATE(1140), - [sym_receive_expression] = STATE(1140), - [sym_binary_expression] = STATE(1140), - [sym_as_type_cast_expression] = STATE(1140), - [sym__max_group] = STATE(1140), - [sym_literal] = STATE(1146), + [sym_function_literal] = STATE(1211), + [sym_reference_expression] = STATE(1252), + [sym_type_reference_expression] = STATE(3460), + [sym_unary_expression] = STATE(1211), + [sym_receive_expression] = STATE(1211), + [sym_binary_expression] = STATE(1211), + [sym_as_type_cast_expression] = STATE(1211), + [sym__max_group] = STATE(1211), + [sym_literal] = STATE(1209), [sym_spread_expression] = STATE(1904), - [sym_map_init_expression] = STATE(1199), - [sym_array_creation] = STATE(1140), - [sym_fixed_array_creation] = STATE(1140), - [sym_selector_expression] = STATE(1140), - [sym_index_expression] = STATE(1140), - [sym_slice_expression] = STATE(1140), - [sym_if_expression] = STATE(1199), - [sym_compile_time_if_expression] = STATE(1199), - [sym_is_expression] = STATE(1140), - [sym_in_expression] = STATE(1140), - [sym_enum_fetch] = STATE(1140), - [sym_match_expression] = STATE(1199), - [sym_select_expression] = STATE(1199), - [sym_lock_expression] = STATE(1199), - [sym_unsafe_expression] = STATE(1199), - [sym_sql_expression] = STATE(1199), - [sym_c_string_literal] = STATE(1147), - [sym_raw_string_literal] = STATE(1147), - [sym_interpreted_string_literal] = STATE(1147), - [sym_mutability_modifiers] = STATE(789), + [sym_map_init_expression] = STATE(1212), + [sym_array_creation] = STATE(1211), + [sym_fixed_array_creation] = STATE(1211), + [sym_selector_expression] = STATE(1211), + [sym_index_expression] = STATE(1211), + [sym_slice_expression] = STATE(1211), + [sym_if_expression] = STATE(1212), + [sym_compile_time_if_expression] = STATE(1212), + [sym_is_expression] = STATE(1211), + [sym_in_expression] = STATE(1211), + [sym_enum_fetch] = STATE(1211), + [sym_match_expression] = STATE(1212), + [sym_select_expression] = STATE(1212), + [sym_lock_expression] = STATE(1212), + [sym_unsafe_expression] = STATE(1212), + [sym_sql_expression] = STATE(1212), + [sym_c_string_literal] = STATE(1201), + [sym_raw_string_literal] = STATE(1201), + [sym_interpreted_string_literal] = STATE(1201), + [sym_mutability_modifiers] = STATE(769), [sym_mutable_expression] = STATE(1904), - [sym_plain_type] = STATE(4234), - [sym__plain_type_without_special] = STATE(2302), - [sym_anon_struct_type] = STATE(2303), - [sym_multi_return_type] = STATE(2302), - [sym_result_type] = STATE(2302), - [sym_option_type] = STATE(2302), - [sym_qualified_type] = STATE(3541), - [sym_fixed_array_type] = STATE(2303), - [sym_array_type] = STATE(2303), - [sym_pointer_type] = STATE(2303), - [sym_wrong_pointer_type] = STATE(2303), - [sym_map_type] = STATE(2303), - [sym_channel_type] = STATE(2303), - [sym_shared_type] = STATE(2303), - [sym_thread_type] = STATE(2303), - [sym_atomic_type] = STATE(2303), - [sym_generic_type] = STATE(2303), - [sym_function_type] = STATE(2303), - [aux_sym_argument_list_repeat1] = STATE(199), - [sym_identifier] = ACTIONS(1071), + [sym_plain_type] = STATE(4123), + [sym__plain_type_without_special] = STATE(2360), + [sym_anon_struct_type] = STATE(2362), + [sym_multi_return_type] = STATE(2360), + [sym_result_type] = STATE(2360), + [sym_option_type] = STATE(2360), + [sym_qualified_type] = STATE(3460), + [sym_fixed_array_type] = STATE(2362), + [sym_array_type] = STATE(2362), + [sym_pointer_type] = STATE(2362), + [sym_wrong_pointer_type] = STATE(2362), + [sym_map_type] = STATE(2362), + [sym_channel_type] = STATE(2362), + [sym_shared_type] = STATE(2362), + [sym_thread_type] = STATE(2362), + [sym_atomic_type] = STATE(2362), + [sym_generic_type] = STATE(2362), + [sym_function_type] = STATE(2362), + [aux_sym_argument_list_repeat1] = STATE(200), + [sym_identifier] = ACTIONS(1139), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), [anon_sym_DOT] = ACTIONS(631), @@ -46247,7 +46265,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS] = ACTIONS(643), [anon_sym_DASH] = ACTIONS(643), [anon_sym_STAR] = ACTIONS(645), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1077), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1145), [anon_sym_struct] = ACTIONS(649), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), @@ -46291,73 +46309,73 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [204] = { [sym_line_comment] = STATE(204), [sym_block_comment] = STATE(204), - [sym__expression] = STATE(1117), - [sym__expression_without_blocks] = STATE(1141), - [sym__expression_with_blocks] = STATE(1141), - [sym_inc_expression] = STATE(1140), - [sym_dec_expression] = STATE(1140), - [sym_or_block_expression] = STATE(1140), - [sym_option_propagation_expression] = STATE(1140), - [sym_result_propagation_expression] = STATE(1140), - [sym_anon_struct_value_expression] = STATE(1199), - [sym_go_expression] = STATE(1140), - [sym_spawn_expression] = STATE(1140), - [sym_parenthesized_expression] = STATE(1140), - [sym_call_expression] = STATE(1140), - [sym_argument] = STATE(1903), - [sym_type_initializer] = STATE(1199), + [sym__expression] = STATE(1126), + [sym__expression_without_blocks] = STATE(1210), + [sym__expression_with_blocks] = STATE(1210), + [sym_inc_expression] = STATE(1211), + [sym_dec_expression] = STATE(1211), + [sym_or_block_expression] = STATE(1211), + [sym_option_propagation_expression] = STATE(1211), + [sym_result_propagation_expression] = STATE(1211), + [sym_anon_struct_value_expression] = STATE(1212), + [sym_go_expression] = STATE(1211), + [sym_spawn_expression] = STATE(1211), + [sym_parenthesized_expression] = STATE(1211), + [sym_call_expression] = STATE(1211), + [sym_argument] = STATE(1907), + [sym_type_initializer] = STATE(1212), [sym_keyed_element] = STATE(1904), - [sym_function_literal] = STATE(1140), - [sym_reference_expression] = STATE(1236), - [sym_type_reference_expression] = STATE(3541), - [sym_unary_expression] = STATE(1140), - [sym_receive_expression] = STATE(1140), - [sym_binary_expression] = STATE(1140), - [sym_as_type_cast_expression] = STATE(1140), - [sym__max_group] = STATE(1140), - [sym_literal] = STATE(1146), + [sym_function_literal] = STATE(1211), + [sym_reference_expression] = STATE(1252), + [sym_type_reference_expression] = STATE(3460), + [sym_unary_expression] = STATE(1211), + [sym_receive_expression] = STATE(1211), + [sym_binary_expression] = STATE(1211), + [sym_as_type_cast_expression] = STATE(1211), + [sym__max_group] = STATE(1211), + [sym_literal] = STATE(1209), [sym_spread_expression] = STATE(1904), - [sym_map_init_expression] = STATE(1199), - [sym_array_creation] = STATE(1140), - [sym_fixed_array_creation] = STATE(1140), - [sym_selector_expression] = STATE(1140), - [sym_index_expression] = STATE(1140), - [sym_slice_expression] = STATE(1140), - [sym_if_expression] = STATE(1199), - [sym_compile_time_if_expression] = STATE(1199), - [sym_is_expression] = STATE(1140), - [sym_in_expression] = STATE(1140), - [sym_enum_fetch] = STATE(1140), - [sym_match_expression] = STATE(1199), - [sym_select_expression] = STATE(1199), - [sym_lock_expression] = STATE(1199), - [sym_unsafe_expression] = STATE(1199), - [sym_sql_expression] = STATE(1199), - [sym_c_string_literal] = STATE(1147), - [sym_raw_string_literal] = STATE(1147), - [sym_interpreted_string_literal] = STATE(1147), - [sym_mutability_modifiers] = STATE(789), + [sym_map_init_expression] = STATE(1212), + [sym_array_creation] = STATE(1211), + [sym_fixed_array_creation] = STATE(1211), + [sym_selector_expression] = STATE(1211), + [sym_index_expression] = STATE(1211), + [sym_slice_expression] = STATE(1211), + [sym_if_expression] = STATE(1212), + [sym_compile_time_if_expression] = STATE(1212), + [sym_is_expression] = STATE(1211), + [sym_in_expression] = STATE(1211), + [sym_enum_fetch] = STATE(1211), + [sym_match_expression] = STATE(1212), + [sym_select_expression] = STATE(1212), + [sym_lock_expression] = STATE(1212), + [sym_unsafe_expression] = STATE(1212), + [sym_sql_expression] = STATE(1212), + [sym_c_string_literal] = STATE(1201), + [sym_raw_string_literal] = STATE(1201), + [sym_interpreted_string_literal] = STATE(1201), + [sym_mutability_modifiers] = STATE(769), [sym_mutable_expression] = STATE(1904), - [sym_plain_type] = STATE(4234), - [sym__plain_type_without_special] = STATE(2302), - [sym_anon_struct_type] = STATE(2303), - [sym_multi_return_type] = STATE(2302), - [sym_result_type] = STATE(2302), - [sym_option_type] = STATE(2302), - [sym_qualified_type] = STATE(3541), - [sym_fixed_array_type] = STATE(2303), - [sym_array_type] = STATE(2303), - [sym_pointer_type] = STATE(2303), - [sym_wrong_pointer_type] = STATE(2303), - [sym_map_type] = STATE(2303), - [sym_channel_type] = STATE(2303), - [sym_shared_type] = STATE(2303), - [sym_thread_type] = STATE(2303), - [sym_atomic_type] = STATE(2303), - [sym_generic_type] = STATE(2303), - [sym_function_type] = STATE(2303), - [aux_sym_argument_list_repeat1] = STATE(199), - [sym_identifier] = ACTIONS(1071), + [sym_plain_type] = STATE(4123), + [sym__plain_type_without_special] = STATE(2360), + [sym_anon_struct_type] = STATE(2362), + [sym_multi_return_type] = STATE(2360), + [sym_result_type] = STATE(2360), + [sym_option_type] = STATE(2360), + [sym_qualified_type] = STATE(3460), + [sym_fixed_array_type] = STATE(2362), + [sym_array_type] = STATE(2362), + [sym_pointer_type] = STATE(2362), + [sym_wrong_pointer_type] = STATE(2362), + [sym_map_type] = STATE(2362), + [sym_channel_type] = STATE(2362), + [sym_shared_type] = STATE(2362), + [sym_thread_type] = STATE(2362), + [sym_atomic_type] = STATE(2362), + [sym_generic_type] = STATE(2362), + [sym_function_type] = STATE(2362), + [aux_sym_argument_list_repeat1] = STATE(200), + [sym_identifier] = ACTIONS(1139), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), [anon_sym_DOT] = ACTIONS(631), @@ -46368,7 +46386,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS] = ACTIONS(643), [anon_sym_DASH] = ACTIONS(643), [anon_sym_STAR] = ACTIONS(645), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1077), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1145), [anon_sym_struct] = ACTIONS(649), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), @@ -46412,73 +46430,73 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [205] = { [sym_line_comment] = STATE(205), [sym_block_comment] = STATE(205), - [sym__expression] = STATE(1117), - [sym__expression_without_blocks] = STATE(1141), - [sym__expression_with_blocks] = STATE(1141), - [sym_inc_expression] = STATE(1140), - [sym_dec_expression] = STATE(1140), - [sym_or_block_expression] = STATE(1140), - [sym_option_propagation_expression] = STATE(1140), - [sym_result_propagation_expression] = STATE(1140), - [sym_anon_struct_value_expression] = STATE(1199), - [sym_go_expression] = STATE(1140), - [sym_spawn_expression] = STATE(1140), - [sym_parenthesized_expression] = STATE(1140), - [sym_call_expression] = STATE(1140), - [sym_argument] = STATE(1903), - [sym_type_initializer] = STATE(1199), + [sym__expression] = STATE(1126), + [sym__expression_without_blocks] = STATE(1210), + [sym__expression_with_blocks] = STATE(1210), + [sym_inc_expression] = STATE(1211), + [sym_dec_expression] = STATE(1211), + [sym_or_block_expression] = STATE(1211), + [sym_option_propagation_expression] = STATE(1211), + [sym_result_propagation_expression] = STATE(1211), + [sym_anon_struct_value_expression] = STATE(1212), + [sym_go_expression] = STATE(1211), + [sym_spawn_expression] = STATE(1211), + [sym_parenthesized_expression] = STATE(1211), + [sym_call_expression] = STATE(1211), + [sym_argument] = STATE(1907), + [sym_type_initializer] = STATE(1212), [sym_keyed_element] = STATE(1904), - [sym_function_literal] = STATE(1140), - [sym_reference_expression] = STATE(1236), - [sym_type_reference_expression] = STATE(3541), - [sym_unary_expression] = STATE(1140), - [sym_receive_expression] = STATE(1140), - [sym_binary_expression] = STATE(1140), - [sym_as_type_cast_expression] = STATE(1140), - [sym__max_group] = STATE(1140), - [sym_literal] = STATE(1146), + [sym_function_literal] = STATE(1211), + [sym_reference_expression] = STATE(1252), + [sym_type_reference_expression] = STATE(3460), + [sym_unary_expression] = STATE(1211), + [sym_receive_expression] = STATE(1211), + [sym_binary_expression] = STATE(1211), + [sym_as_type_cast_expression] = STATE(1211), + [sym__max_group] = STATE(1211), + [sym_literal] = STATE(1209), [sym_spread_expression] = STATE(1904), - [sym_map_init_expression] = STATE(1199), - [sym_array_creation] = STATE(1140), - [sym_fixed_array_creation] = STATE(1140), - [sym_selector_expression] = STATE(1140), - [sym_index_expression] = STATE(1140), - [sym_slice_expression] = STATE(1140), - [sym_if_expression] = STATE(1199), - [sym_compile_time_if_expression] = STATE(1199), - [sym_is_expression] = STATE(1140), - [sym_in_expression] = STATE(1140), - [sym_enum_fetch] = STATE(1140), - [sym_match_expression] = STATE(1199), - [sym_select_expression] = STATE(1199), - [sym_lock_expression] = STATE(1199), - [sym_unsafe_expression] = STATE(1199), - [sym_sql_expression] = STATE(1199), - [sym_c_string_literal] = STATE(1147), - [sym_raw_string_literal] = STATE(1147), - [sym_interpreted_string_literal] = STATE(1147), - [sym_mutability_modifiers] = STATE(789), + [sym_map_init_expression] = STATE(1212), + [sym_array_creation] = STATE(1211), + [sym_fixed_array_creation] = STATE(1211), + [sym_selector_expression] = STATE(1211), + [sym_index_expression] = STATE(1211), + [sym_slice_expression] = STATE(1211), + [sym_if_expression] = STATE(1212), + [sym_compile_time_if_expression] = STATE(1212), + [sym_is_expression] = STATE(1211), + [sym_in_expression] = STATE(1211), + [sym_enum_fetch] = STATE(1211), + [sym_match_expression] = STATE(1212), + [sym_select_expression] = STATE(1212), + [sym_lock_expression] = STATE(1212), + [sym_unsafe_expression] = STATE(1212), + [sym_sql_expression] = STATE(1212), + [sym_c_string_literal] = STATE(1201), + [sym_raw_string_literal] = STATE(1201), + [sym_interpreted_string_literal] = STATE(1201), + [sym_mutability_modifiers] = STATE(769), [sym_mutable_expression] = STATE(1904), - [sym_plain_type] = STATE(4234), - [sym__plain_type_without_special] = STATE(2302), - [sym_anon_struct_type] = STATE(2303), - [sym_multi_return_type] = STATE(2302), - [sym_result_type] = STATE(2302), - [sym_option_type] = STATE(2302), - [sym_qualified_type] = STATE(3541), - [sym_fixed_array_type] = STATE(2303), - [sym_array_type] = STATE(2303), - [sym_pointer_type] = STATE(2303), - [sym_wrong_pointer_type] = STATE(2303), - [sym_map_type] = STATE(2303), - [sym_channel_type] = STATE(2303), - [sym_shared_type] = STATE(2303), - [sym_thread_type] = STATE(2303), - [sym_atomic_type] = STATE(2303), - [sym_generic_type] = STATE(2303), - [sym_function_type] = STATE(2303), - [aux_sym_argument_list_repeat1] = STATE(199), - [sym_identifier] = ACTIONS(1071), + [sym_plain_type] = STATE(4123), + [sym__plain_type_without_special] = STATE(2360), + [sym_anon_struct_type] = STATE(2362), + [sym_multi_return_type] = STATE(2360), + [sym_result_type] = STATE(2360), + [sym_option_type] = STATE(2360), + [sym_qualified_type] = STATE(3460), + [sym_fixed_array_type] = STATE(2362), + [sym_array_type] = STATE(2362), + [sym_pointer_type] = STATE(2362), + [sym_wrong_pointer_type] = STATE(2362), + [sym_map_type] = STATE(2362), + [sym_channel_type] = STATE(2362), + [sym_shared_type] = STATE(2362), + [sym_thread_type] = STATE(2362), + [sym_atomic_type] = STATE(2362), + [sym_generic_type] = STATE(2362), + [sym_function_type] = STATE(2362), + [aux_sym_argument_list_repeat1] = STATE(200), + [sym_identifier] = ACTIONS(1139), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), [anon_sym_DOT] = ACTIONS(631), @@ -46489,7 +46507,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS] = ACTIONS(643), [anon_sym_DASH] = ACTIONS(643), [anon_sym_STAR] = ACTIONS(645), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1077), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1145), [anon_sym_struct] = ACTIONS(649), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), @@ -46533,73 +46551,73 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [206] = { [sym_line_comment] = STATE(206), [sym_block_comment] = STATE(206), - [sym__expression] = STATE(1117), - [sym__expression_without_blocks] = STATE(1141), - [sym__expression_with_blocks] = STATE(1141), - [sym_inc_expression] = STATE(1140), - [sym_dec_expression] = STATE(1140), - [sym_or_block_expression] = STATE(1140), - [sym_option_propagation_expression] = STATE(1140), - [sym_result_propagation_expression] = STATE(1140), - [sym_anon_struct_value_expression] = STATE(1199), - [sym_go_expression] = STATE(1140), - [sym_spawn_expression] = STATE(1140), - [sym_parenthesized_expression] = STATE(1140), - [sym_call_expression] = STATE(1140), - [sym_argument] = STATE(1903), - [sym_type_initializer] = STATE(1199), + [sym__expression] = STATE(1126), + [sym__expression_without_blocks] = STATE(1210), + [sym__expression_with_blocks] = STATE(1210), + [sym_inc_expression] = STATE(1211), + [sym_dec_expression] = STATE(1211), + [sym_or_block_expression] = STATE(1211), + [sym_option_propagation_expression] = STATE(1211), + [sym_result_propagation_expression] = STATE(1211), + [sym_anon_struct_value_expression] = STATE(1212), + [sym_go_expression] = STATE(1211), + [sym_spawn_expression] = STATE(1211), + [sym_parenthesized_expression] = STATE(1211), + [sym_call_expression] = STATE(1211), + [sym_argument] = STATE(1907), + [sym_type_initializer] = STATE(1212), [sym_keyed_element] = STATE(1904), - [sym_function_literal] = STATE(1140), - [sym_reference_expression] = STATE(1236), - [sym_type_reference_expression] = STATE(3541), - [sym_unary_expression] = STATE(1140), - [sym_receive_expression] = STATE(1140), - [sym_binary_expression] = STATE(1140), - [sym_as_type_cast_expression] = STATE(1140), - [sym__max_group] = STATE(1140), - [sym_literal] = STATE(1146), + [sym_function_literal] = STATE(1211), + [sym_reference_expression] = STATE(1252), + [sym_type_reference_expression] = STATE(3460), + [sym_unary_expression] = STATE(1211), + [sym_receive_expression] = STATE(1211), + [sym_binary_expression] = STATE(1211), + [sym_as_type_cast_expression] = STATE(1211), + [sym__max_group] = STATE(1211), + [sym_literal] = STATE(1209), [sym_spread_expression] = STATE(1904), - [sym_map_init_expression] = STATE(1199), - [sym_array_creation] = STATE(1140), - [sym_fixed_array_creation] = STATE(1140), - [sym_selector_expression] = STATE(1140), - [sym_index_expression] = STATE(1140), - [sym_slice_expression] = STATE(1140), - [sym_if_expression] = STATE(1199), - [sym_compile_time_if_expression] = STATE(1199), - [sym_is_expression] = STATE(1140), - [sym_in_expression] = STATE(1140), - [sym_enum_fetch] = STATE(1140), - [sym_match_expression] = STATE(1199), - [sym_select_expression] = STATE(1199), - [sym_lock_expression] = STATE(1199), - [sym_unsafe_expression] = STATE(1199), - [sym_sql_expression] = STATE(1199), - [sym_c_string_literal] = STATE(1147), - [sym_raw_string_literal] = STATE(1147), - [sym_interpreted_string_literal] = STATE(1147), - [sym_mutability_modifiers] = STATE(789), + [sym_map_init_expression] = STATE(1212), + [sym_array_creation] = STATE(1211), + [sym_fixed_array_creation] = STATE(1211), + [sym_selector_expression] = STATE(1211), + [sym_index_expression] = STATE(1211), + [sym_slice_expression] = STATE(1211), + [sym_if_expression] = STATE(1212), + [sym_compile_time_if_expression] = STATE(1212), + [sym_is_expression] = STATE(1211), + [sym_in_expression] = STATE(1211), + [sym_enum_fetch] = STATE(1211), + [sym_match_expression] = STATE(1212), + [sym_select_expression] = STATE(1212), + [sym_lock_expression] = STATE(1212), + [sym_unsafe_expression] = STATE(1212), + [sym_sql_expression] = STATE(1212), + [sym_c_string_literal] = STATE(1201), + [sym_raw_string_literal] = STATE(1201), + [sym_interpreted_string_literal] = STATE(1201), + [sym_mutability_modifiers] = STATE(769), [sym_mutable_expression] = STATE(1904), - [sym_plain_type] = STATE(4234), - [sym__plain_type_without_special] = STATE(2302), - [sym_anon_struct_type] = STATE(2303), - [sym_multi_return_type] = STATE(2302), - [sym_result_type] = STATE(2302), - [sym_option_type] = STATE(2302), - [sym_qualified_type] = STATE(3541), - [sym_fixed_array_type] = STATE(2303), - [sym_array_type] = STATE(2303), - [sym_pointer_type] = STATE(2303), - [sym_wrong_pointer_type] = STATE(2303), - [sym_map_type] = STATE(2303), - [sym_channel_type] = STATE(2303), - [sym_shared_type] = STATE(2303), - [sym_thread_type] = STATE(2303), - [sym_atomic_type] = STATE(2303), - [sym_generic_type] = STATE(2303), - [sym_function_type] = STATE(2303), - [aux_sym_argument_list_repeat1] = STATE(199), - [sym_identifier] = ACTIONS(1071), + [sym_plain_type] = STATE(4123), + [sym__plain_type_without_special] = STATE(2360), + [sym_anon_struct_type] = STATE(2362), + [sym_multi_return_type] = STATE(2360), + [sym_result_type] = STATE(2360), + [sym_option_type] = STATE(2360), + [sym_qualified_type] = STATE(3460), + [sym_fixed_array_type] = STATE(2362), + [sym_array_type] = STATE(2362), + [sym_pointer_type] = STATE(2362), + [sym_wrong_pointer_type] = STATE(2362), + [sym_map_type] = STATE(2362), + [sym_channel_type] = STATE(2362), + [sym_shared_type] = STATE(2362), + [sym_thread_type] = STATE(2362), + [sym_atomic_type] = STATE(2362), + [sym_generic_type] = STATE(2362), + [sym_function_type] = STATE(2362), + [aux_sym_argument_list_repeat1] = STATE(200), + [sym_identifier] = ACTIONS(1139), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), [anon_sym_DOT] = ACTIONS(631), @@ -46610,7 +46628,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS] = ACTIONS(643), [anon_sym_DASH] = ACTIONS(643), [anon_sym_STAR] = ACTIONS(645), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1077), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1145), [anon_sym_struct] = ACTIONS(649), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), @@ -46654,73 +46672,73 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [207] = { [sym_line_comment] = STATE(207), [sym_block_comment] = STATE(207), - [sym__expression] = STATE(1117), - [sym__expression_without_blocks] = STATE(1141), - [sym__expression_with_blocks] = STATE(1141), - [sym_inc_expression] = STATE(1140), - [sym_dec_expression] = STATE(1140), - [sym_or_block_expression] = STATE(1140), - [sym_option_propagation_expression] = STATE(1140), - [sym_result_propagation_expression] = STATE(1140), - [sym_anon_struct_value_expression] = STATE(1199), - [sym_go_expression] = STATE(1140), - [sym_spawn_expression] = STATE(1140), - [sym_parenthesized_expression] = STATE(1140), - [sym_call_expression] = STATE(1140), - [sym_argument] = STATE(1903), - [sym_type_initializer] = STATE(1199), + [sym__expression] = STATE(1126), + [sym__expression_without_blocks] = STATE(1210), + [sym__expression_with_blocks] = STATE(1210), + [sym_inc_expression] = STATE(1211), + [sym_dec_expression] = STATE(1211), + [sym_or_block_expression] = STATE(1211), + [sym_option_propagation_expression] = STATE(1211), + [sym_result_propagation_expression] = STATE(1211), + [sym_anon_struct_value_expression] = STATE(1212), + [sym_go_expression] = STATE(1211), + [sym_spawn_expression] = STATE(1211), + [sym_parenthesized_expression] = STATE(1211), + [sym_call_expression] = STATE(1211), + [sym_argument] = STATE(1907), + [sym_type_initializer] = STATE(1212), [sym_keyed_element] = STATE(1904), - [sym_function_literal] = STATE(1140), - [sym_reference_expression] = STATE(1236), - [sym_type_reference_expression] = STATE(3541), - [sym_unary_expression] = STATE(1140), - [sym_receive_expression] = STATE(1140), - [sym_binary_expression] = STATE(1140), - [sym_as_type_cast_expression] = STATE(1140), - [sym__max_group] = STATE(1140), - [sym_literal] = STATE(1146), + [sym_function_literal] = STATE(1211), + [sym_reference_expression] = STATE(1252), + [sym_type_reference_expression] = STATE(3460), + [sym_unary_expression] = STATE(1211), + [sym_receive_expression] = STATE(1211), + [sym_binary_expression] = STATE(1211), + [sym_as_type_cast_expression] = STATE(1211), + [sym__max_group] = STATE(1211), + [sym_literal] = STATE(1209), [sym_spread_expression] = STATE(1904), - [sym_map_init_expression] = STATE(1199), - [sym_array_creation] = STATE(1140), - [sym_fixed_array_creation] = STATE(1140), - [sym_selector_expression] = STATE(1140), - [sym_index_expression] = STATE(1140), - [sym_slice_expression] = STATE(1140), - [sym_if_expression] = STATE(1199), - [sym_compile_time_if_expression] = STATE(1199), - [sym_is_expression] = STATE(1140), - [sym_in_expression] = STATE(1140), - [sym_enum_fetch] = STATE(1140), - [sym_match_expression] = STATE(1199), - [sym_select_expression] = STATE(1199), - [sym_lock_expression] = STATE(1199), - [sym_unsafe_expression] = STATE(1199), - [sym_sql_expression] = STATE(1199), - [sym_c_string_literal] = STATE(1147), - [sym_raw_string_literal] = STATE(1147), - [sym_interpreted_string_literal] = STATE(1147), - [sym_mutability_modifiers] = STATE(789), + [sym_map_init_expression] = STATE(1212), + [sym_array_creation] = STATE(1211), + [sym_fixed_array_creation] = STATE(1211), + [sym_selector_expression] = STATE(1211), + [sym_index_expression] = STATE(1211), + [sym_slice_expression] = STATE(1211), + [sym_if_expression] = STATE(1212), + [sym_compile_time_if_expression] = STATE(1212), + [sym_is_expression] = STATE(1211), + [sym_in_expression] = STATE(1211), + [sym_enum_fetch] = STATE(1211), + [sym_match_expression] = STATE(1212), + [sym_select_expression] = STATE(1212), + [sym_lock_expression] = STATE(1212), + [sym_unsafe_expression] = STATE(1212), + [sym_sql_expression] = STATE(1212), + [sym_c_string_literal] = STATE(1201), + [sym_raw_string_literal] = STATE(1201), + [sym_interpreted_string_literal] = STATE(1201), + [sym_mutability_modifiers] = STATE(769), [sym_mutable_expression] = STATE(1904), - [sym_plain_type] = STATE(4234), - [sym__plain_type_without_special] = STATE(2302), - [sym_anon_struct_type] = STATE(2303), - [sym_multi_return_type] = STATE(2302), - [sym_result_type] = STATE(2302), - [sym_option_type] = STATE(2302), - [sym_qualified_type] = STATE(3541), - [sym_fixed_array_type] = STATE(2303), - [sym_array_type] = STATE(2303), - [sym_pointer_type] = STATE(2303), - [sym_wrong_pointer_type] = STATE(2303), - [sym_map_type] = STATE(2303), - [sym_channel_type] = STATE(2303), - [sym_shared_type] = STATE(2303), - [sym_thread_type] = STATE(2303), - [sym_atomic_type] = STATE(2303), - [sym_generic_type] = STATE(2303), - [sym_function_type] = STATE(2303), - [aux_sym_argument_list_repeat1] = STATE(199), - [sym_identifier] = ACTIONS(1071), + [sym_plain_type] = STATE(4123), + [sym__plain_type_without_special] = STATE(2360), + [sym_anon_struct_type] = STATE(2362), + [sym_multi_return_type] = STATE(2360), + [sym_result_type] = STATE(2360), + [sym_option_type] = STATE(2360), + [sym_qualified_type] = STATE(3460), + [sym_fixed_array_type] = STATE(2362), + [sym_array_type] = STATE(2362), + [sym_pointer_type] = STATE(2362), + [sym_wrong_pointer_type] = STATE(2362), + [sym_map_type] = STATE(2362), + [sym_channel_type] = STATE(2362), + [sym_shared_type] = STATE(2362), + [sym_thread_type] = STATE(2362), + [sym_atomic_type] = STATE(2362), + [sym_generic_type] = STATE(2362), + [sym_function_type] = STATE(2362), + [aux_sym_argument_list_repeat1] = STATE(200), + [sym_identifier] = ACTIONS(1139), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), [anon_sym_DOT] = ACTIONS(631), @@ -46731,7 +46749,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS] = ACTIONS(643), [anon_sym_DASH] = ACTIONS(643), [anon_sym_STAR] = ACTIONS(645), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1077), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1145), [anon_sym_struct] = ACTIONS(649), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), @@ -46775,73 +46793,73 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [208] = { [sym_line_comment] = STATE(208), [sym_block_comment] = STATE(208), - [sym__expression] = STATE(1117), - [sym__expression_without_blocks] = STATE(1141), - [sym__expression_with_blocks] = STATE(1141), - [sym_inc_expression] = STATE(1140), - [sym_dec_expression] = STATE(1140), - [sym_or_block_expression] = STATE(1140), - [sym_option_propagation_expression] = STATE(1140), - [sym_result_propagation_expression] = STATE(1140), - [sym_anon_struct_value_expression] = STATE(1199), - [sym_go_expression] = STATE(1140), - [sym_spawn_expression] = STATE(1140), - [sym_parenthesized_expression] = STATE(1140), - [sym_call_expression] = STATE(1140), - [sym_argument] = STATE(1903), - [sym_type_initializer] = STATE(1199), + [sym__expression] = STATE(1126), + [sym__expression_without_blocks] = STATE(1210), + [sym__expression_with_blocks] = STATE(1210), + [sym_inc_expression] = STATE(1211), + [sym_dec_expression] = STATE(1211), + [sym_or_block_expression] = STATE(1211), + [sym_option_propagation_expression] = STATE(1211), + [sym_result_propagation_expression] = STATE(1211), + [sym_anon_struct_value_expression] = STATE(1212), + [sym_go_expression] = STATE(1211), + [sym_spawn_expression] = STATE(1211), + [sym_parenthesized_expression] = STATE(1211), + [sym_call_expression] = STATE(1211), + [sym_argument] = STATE(1907), + [sym_type_initializer] = STATE(1212), [sym_keyed_element] = STATE(1904), - [sym_function_literal] = STATE(1140), - [sym_reference_expression] = STATE(1236), - [sym_type_reference_expression] = STATE(3541), - [sym_unary_expression] = STATE(1140), - [sym_receive_expression] = STATE(1140), - [sym_binary_expression] = STATE(1140), - [sym_as_type_cast_expression] = STATE(1140), - [sym__max_group] = STATE(1140), - [sym_literal] = STATE(1146), + [sym_function_literal] = STATE(1211), + [sym_reference_expression] = STATE(1252), + [sym_type_reference_expression] = STATE(3460), + [sym_unary_expression] = STATE(1211), + [sym_receive_expression] = STATE(1211), + [sym_binary_expression] = STATE(1211), + [sym_as_type_cast_expression] = STATE(1211), + [sym__max_group] = STATE(1211), + [sym_literal] = STATE(1209), [sym_spread_expression] = STATE(1904), - [sym_map_init_expression] = STATE(1199), - [sym_array_creation] = STATE(1140), - [sym_fixed_array_creation] = STATE(1140), - [sym_selector_expression] = STATE(1140), - [sym_index_expression] = STATE(1140), - [sym_slice_expression] = STATE(1140), - [sym_if_expression] = STATE(1199), - [sym_compile_time_if_expression] = STATE(1199), - [sym_is_expression] = STATE(1140), - [sym_in_expression] = STATE(1140), - [sym_enum_fetch] = STATE(1140), - [sym_match_expression] = STATE(1199), - [sym_select_expression] = STATE(1199), - [sym_lock_expression] = STATE(1199), - [sym_unsafe_expression] = STATE(1199), - [sym_sql_expression] = STATE(1199), - [sym_c_string_literal] = STATE(1147), - [sym_raw_string_literal] = STATE(1147), - [sym_interpreted_string_literal] = STATE(1147), - [sym_mutability_modifiers] = STATE(789), + [sym_map_init_expression] = STATE(1212), + [sym_array_creation] = STATE(1211), + [sym_fixed_array_creation] = STATE(1211), + [sym_selector_expression] = STATE(1211), + [sym_index_expression] = STATE(1211), + [sym_slice_expression] = STATE(1211), + [sym_if_expression] = STATE(1212), + [sym_compile_time_if_expression] = STATE(1212), + [sym_is_expression] = STATE(1211), + [sym_in_expression] = STATE(1211), + [sym_enum_fetch] = STATE(1211), + [sym_match_expression] = STATE(1212), + [sym_select_expression] = STATE(1212), + [sym_lock_expression] = STATE(1212), + [sym_unsafe_expression] = STATE(1212), + [sym_sql_expression] = STATE(1212), + [sym_c_string_literal] = STATE(1201), + [sym_raw_string_literal] = STATE(1201), + [sym_interpreted_string_literal] = STATE(1201), + [sym_mutability_modifiers] = STATE(769), [sym_mutable_expression] = STATE(1904), - [sym_plain_type] = STATE(4234), - [sym__plain_type_without_special] = STATE(2302), - [sym_anon_struct_type] = STATE(2303), - [sym_multi_return_type] = STATE(2302), - [sym_result_type] = STATE(2302), - [sym_option_type] = STATE(2302), - [sym_qualified_type] = STATE(3541), - [sym_fixed_array_type] = STATE(2303), - [sym_array_type] = STATE(2303), - [sym_pointer_type] = STATE(2303), - [sym_wrong_pointer_type] = STATE(2303), - [sym_map_type] = STATE(2303), - [sym_channel_type] = STATE(2303), - [sym_shared_type] = STATE(2303), - [sym_thread_type] = STATE(2303), - [sym_atomic_type] = STATE(2303), - [sym_generic_type] = STATE(2303), - [sym_function_type] = STATE(2303), - [aux_sym_argument_list_repeat1] = STATE(199), - [sym_identifier] = ACTIONS(1071), + [sym_plain_type] = STATE(4123), + [sym__plain_type_without_special] = STATE(2360), + [sym_anon_struct_type] = STATE(2362), + [sym_multi_return_type] = STATE(2360), + [sym_result_type] = STATE(2360), + [sym_option_type] = STATE(2360), + [sym_qualified_type] = STATE(3460), + [sym_fixed_array_type] = STATE(2362), + [sym_array_type] = STATE(2362), + [sym_pointer_type] = STATE(2362), + [sym_wrong_pointer_type] = STATE(2362), + [sym_map_type] = STATE(2362), + [sym_channel_type] = STATE(2362), + [sym_shared_type] = STATE(2362), + [sym_thread_type] = STATE(2362), + [sym_atomic_type] = STATE(2362), + [sym_generic_type] = STATE(2362), + [sym_function_type] = STATE(2362), + [aux_sym_argument_list_repeat1] = STATE(200), + [sym_identifier] = ACTIONS(1139), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), [anon_sym_DOT] = ACTIONS(631), @@ -46852,7 +46870,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS] = ACTIONS(643), [anon_sym_DASH] = ACTIONS(643), [anon_sym_STAR] = ACTIONS(645), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1077), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1145), [anon_sym_struct] = ACTIONS(649), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), @@ -46896,73 +46914,73 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [209] = { [sym_line_comment] = STATE(209), [sym_block_comment] = STATE(209), - [sym__expression] = STATE(1117), - [sym__expression_without_blocks] = STATE(1141), - [sym__expression_with_blocks] = STATE(1141), - [sym_inc_expression] = STATE(1140), - [sym_dec_expression] = STATE(1140), - [sym_or_block_expression] = STATE(1140), - [sym_option_propagation_expression] = STATE(1140), - [sym_result_propagation_expression] = STATE(1140), - [sym_anon_struct_value_expression] = STATE(1199), - [sym_go_expression] = STATE(1140), - [sym_spawn_expression] = STATE(1140), - [sym_parenthesized_expression] = STATE(1140), - [sym_call_expression] = STATE(1140), - [sym_argument] = STATE(1903), - [sym_type_initializer] = STATE(1199), + [sym__expression] = STATE(1126), + [sym__expression_without_blocks] = STATE(1210), + [sym__expression_with_blocks] = STATE(1210), + [sym_inc_expression] = STATE(1211), + [sym_dec_expression] = STATE(1211), + [sym_or_block_expression] = STATE(1211), + [sym_option_propagation_expression] = STATE(1211), + [sym_result_propagation_expression] = STATE(1211), + [sym_anon_struct_value_expression] = STATE(1212), + [sym_go_expression] = STATE(1211), + [sym_spawn_expression] = STATE(1211), + [sym_parenthesized_expression] = STATE(1211), + [sym_call_expression] = STATE(1211), + [sym_argument] = STATE(1907), + [sym_type_initializer] = STATE(1212), [sym_keyed_element] = STATE(1904), - [sym_function_literal] = STATE(1140), - [sym_reference_expression] = STATE(1236), - [sym_type_reference_expression] = STATE(3541), - [sym_unary_expression] = STATE(1140), - [sym_receive_expression] = STATE(1140), - [sym_binary_expression] = STATE(1140), - [sym_as_type_cast_expression] = STATE(1140), - [sym__max_group] = STATE(1140), - [sym_literal] = STATE(1146), + [sym_function_literal] = STATE(1211), + [sym_reference_expression] = STATE(1252), + [sym_type_reference_expression] = STATE(3460), + [sym_unary_expression] = STATE(1211), + [sym_receive_expression] = STATE(1211), + [sym_binary_expression] = STATE(1211), + [sym_as_type_cast_expression] = STATE(1211), + [sym__max_group] = STATE(1211), + [sym_literal] = STATE(1209), [sym_spread_expression] = STATE(1904), - [sym_map_init_expression] = STATE(1199), - [sym_array_creation] = STATE(1140), - [sym_fixed_array_creation] = STATE(1140), - [sym_selector_expression] = STATE(1140), - [sym_index_expression] = STATE(1140), - [sym_slice_expression] = STATE(1140), - [sym_if_expression] = STATE(1199), - [sym_compile_time_if_expression] = STATE(1199), - [sym_is_expression] = STATE(1140), - [sym_in_expression] = STATE(1140), - [sym_enum_fetch] = STATE(1140), - [sym_match_expression] = STATE(1199), - [sym_select_expression] = STATE(1199), - [sym_lock_expression] = STATE(1199), - [sym_unsafe_expression] = STATE(1199), - [sym_sql_expression] = STATE(1199), - [sym_c_string_literal] = STATE(1147), - [sym_raw_string_literal] = STATE(1147), - [sym_interpreted_string_literal] = STATE(1147), - [sym_mutability_modifiers] = STATE(789), + [sym_map_init_expression] = STATE(1212), + [sym_array_creation] = STATE(1211), + [sym_fixed_array_creation] = STATE(1211), + [sym_selector_expression] = STATE(1211), + [sym_index_expression] = STATE(1211), + [sym_slice_expression] = STATE(1211), + [sym_if_expression] = STATE(1212), + [sym_compile_time_if_expression] = STATE(1212), + [sym_is_expression] = STATE(1211), + [sym_in_expression] = STATE(1211), + [sym_enum_fetch] = STATE(1211), + [sym_match_expression] = STATE(1212), + [sym_select_expression] = STATE(1212), + [sym_lock_expression] = STATE(1212), + [sym_unsafe_expression] = STATE(1212), + [sym_sql_expression] = STATE(1212), + [sym_c_string_literal] = STATE(1201), + [sym_raw_string_literal] = STATE(1201), + [sym_interpreted_string_literal] = STATE(1201), + [sym_mutability_modifiers] = STATE(769), [sym_mutable_expression] = STATE(1904), - [sym_plain_type] = STATE(4234), - [sym__plain_type_without_special] = STATE(2302), - [sym_anon_struct_type] = STATE(2303), - [sym_multi_return_type] = STATE(2302), - [sym_result_type] = STATE(2302), - [sym_option_type] = STATE(2302), - [sym_qualified_type] = STATE(3541), - [sym_fixed_array_type] = STATE(2303), - [sym_array_type] = STATE(2303), - [sym_pointer_type] = STATE(2303), - [sym_wrong_pointer_type] = STATE(2303), - [sym_map_type] = STATE(2303), - [sym_channel_type] = STATE(2303), - [sym_shared_type] = STATE(2303), - [sym_thread_type] = STATE(2303), - [sym_atomic_type] = STATE(2303), - [sym_generic_type] = STATE(2303), - [sym_function_type] = STATE(2303), - [aux_sym_argument_list_repeat1] = STATE(199), - [sym_identifier] = ACTIONS(1071), + [sym_plain_type] = STATE(4123), + [sym__plain_type_without_special] = STATE(2360), + [sym_anon_struct_type] = STATE(2362), + [sym_multi_return_type] = STATE(2360), + [sym_result_type] = STATE(2360), + [sym_option_type] = STATE(2360), + [sym_qualified_type] = STATE(3460), + [sym_fixed_array_type] = STATE(2362), + [sym_array_type] = STATE(2362), + [sym_pointer_type] = STATE(2362), + [sym_wrong_pointer_type] = STATE(2362), + [sym_map_type] = STATE(2362), + [sym_channel_type] = STATE(2362), + [sym_shared_type] = STATE(2362), + [sym_thread_type] = STATE(2362), + [sym_atomic_type] = STATE(2362), + [sym_generic_type] = STATE(2362), + [sym_function_type] = STATE(2362), + [aux_sym_argument_list_repeat1] = STATE(200), + [sym_identifier] = ACTIONS(1139), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), [anon_sym_DOT] = ACTIONS(631), @@ -46973,7 +46991,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS] = ACTIONS(643), [anon_sym_DASH] = ACTIONS(643), [anon_sym_STAR] = ACTIONS(645), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1077), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1145), [anon_sym_struct] = ACTIONS(649), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), @@ -47017,849 +47035,849 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [210] = { [sym_line_comment] = STATE(210), [sym_block_comment] = STATE(210), - [sym__expression] = STATE(1757), - [sym__expression_without_blocks] = STATE(2044), - [sym__expression_with_blocks] = STATE(2044), - [sym_strictly_expression_list] = STATE(4156), - [sym_inc_expression] = STATE(2045), - [sym_dec_expression] = STATE(2045), - [sym_or_block_expression] = STATE(2045), - [sym_option_propagation_expression] = STATE(2045), - [sym_result_propagation_expression] = STATE(2045), - [sym_anon_struct_value_expression] = STATE(2046), - [sym_go_expression] = STATE(2045), - [sym_spawn_expression] = STATE(2045), - [sym_parenthesized_expression] = STATE(2045), - [sym_call_expression] = STATE(2045), - [sym_type_initializer] = STATE(2046), - [sym_function_literal] = STATE(2045), - [sym_reference_expression] = STATE(1912), - [sym_type_reference_expression] = STATE(3541), - [sym_unary_expression] = STATE(2045), - [sym_receive_expression] = STATE(2045), - [sym_binary_expression] = STATE(2045), - [sym_as_type_cast_expression] = STATE(2045), - [sym__max_group] = STATE(2045), - [sym_literal] = STATE(2043), - [sym_map_init_expression] = STATE(2046), - [sym_array_creation] = STATE(2045), - [sym_fixed_array_creation] = STATE(2045), - [sym_selector_expression] = STATE(2045), - [sym_index_expression] = STATE(2045), - [sym_slice_expression] = STATE(2045), - [sym_if_expression] = STATE(2046), - [sym_compile_time_if_expression] = STATE(2046), - [sym_is_expression] = STATE(2045), - [sym_in_expression] = STATE(2045), - [sym_enum_fetch] = STATE(2045), - [sym_match_expression] = STATE(2046), - [sym_select_expression] = STATE(2046), - [sym_lock_expression] = STATE(2046), - [sym_unsafe_expression] = STATE(2046), - [sym_sql_expression] = STATE(2046), - [sym_c_string_literal] = STATE(2041), - [sym_raw_string_literal] = STATE(2041), - [sym_interpreted_string_literal] = STATE(2041), - [sym_mutability_modifiers] = STATE(702), - [sym_mutable_expression] = STATE(3267), - [sym_expression_list] = STATE(3302), - [sym_plain_type] = STATE(4052), - [sym__plain_type_without_special] = STATE(2302), - [sym_anon_struct_type] = STATE(2303), - [sym_multi_return_type] = STATE(2302), - [sym_result_type] = STATE(2302), - [sym_option_type] = STATE(2302), - [sym_qualified_type] = STATE(3541), - [sym_fixed_array_type] = STATE(2303), - [sym_array_type] = STATE(2303), - [sym_pointer_type] = STATE(2303), - [sym_wrong_pointer_type] = STATE(2303), - [sym_map_type] = STATE(2303), - [sym_channel_type] = STATE(2303), - [sym_shared_type] = STATE(2303), - [sym_thread_type] = STATE(2303), - [sym_atomic_type] = STATE(2303), - [sym_generic_type] = STATE(2303), - [sym_function_type] = STATE(2303), - [sym_simple_statement] = STATE(4407), - [sym_var_declaration] = STATE(4156), - [sym_assignment_statement] = STATE(4156), - [sym_identifier] = ACTIONS(1641), - [anon_sym_SLASH_SLASH] = ACTIONS(3), - [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(811), + [sym_type_parameters] = STATE(4275), + [sym_argument_list] = STATE(360), + [sym_or_block] = STATE(356), + [aux_sym_strictly_expression_list_repeat1] = STATE(1416), + [ts_builtin_sym_end] = ACTIONS(1641), + [sym_identifier] = ACTIONS(1643), + [anon_sym_LF] = ACTIONS(1643), + [anon_sym_CR] = ACTIONS(1643), + [anon_sym_CR_LF] = ACTIONS(1643), + [anon_sym_SLASH_SLASH] = ACTIONS(497), + [anon_sym_SLASH_STAR] = ACTIONS(499), + [anon_sym_DOT] = ACTIONS(1645), + [anon_sym_as] = ACTIONS(1647), [anon_sym_LBRACE] = ACTIONS(1643), - [anon_sym_LPAREN] = ACTIONS(815), - [anon_sym_fn] = ACTIONS(817), - [anon_sym_PLUS] = ACTIONS(819), - [anon_sym_DASH] = ACTIONS(819), - [anon_sym_STAR] = ACTIONS(821), - [anon_sym_struct] = ACTIONS(823), - [anon_sym_mut] = ACTIONS(41), - [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(827), - [anon_sym_go] = ACTIONS(829), - [anon_sym_spawn] = ACTIONS(831), - [anon_sym_json_DOTdecode] = ACTIONS(833), - [anon_sym_LBRACK2] = ACTIONS(835), - [anon_sym_TILDE] = ACTIONS(819), - [anon_sym_CARET] = ACTIONS(819), - [anon_sym_AMP] = ACTIONS(837), - [anon_sym_LT_DASH] = ACTIONS(839), - [sym_none] = ACTIONS(841), - [sym_true] = ACTIONS(841), - [sym_false] = ACTIONS(841), - [sym_nil] = ACTIONS(841), - [anon_sym_if] = ACTIONS(843), - [anon_sym_DOLLARif] = ACTIONS(845), - [anon_sym_match] = ACTIONS(847), - [anon_sym_select] = ACTIONS(849), - [anon_sym_lock] = ACTIONS(851), - [anon_sym_rlock] = ACTIONS(851), - [anon_sym_unsafe] = ACTIONS(853), - [anon_sym_sql] = ACTIONS(855), - [sym_int_literal] = ACTIONS(841), - [sym_float_literal] = ACTIONS(857), - [sym_rune_literal] = ACTIONS(857), - [sym_pseudo_compile_time_identifier] = ACTIONS(859), - [anon_sym_shared] = ACTIONS(83), - [anon_sym_map_LBRACK] = ACTIONS(85), - [anon_sym_chan] = ACTIONS(87), - [anon_sym_thread] = ACTIONS(89), - [anon_sym_atomic] = ACTIONS(91), - [sym___double_quote] = ACTIONS(861), - [sym___single_quote] = ACTIONS(863), - [sym___c_double_quote] = ACTIONS(865), - [sym___c_single_quote] = ACTIONS(867), - [sym___r_double_quote] = ACTIONS(869), - [sym___r_single_quote] = ACTIONS(871), + [anon_sym_COMMA] = ACTIONS(1649), + [anon_sym_const] = ACTIONS(1643), + [anon_sym_LPAREN] = ACTIONS(1651), + [anon_sym_EQ] = ACTIONS(1649), + [anon_sym___global] = ACTIONS(1643), + [anon_sym_type] = ACTIONS(1643), + [anon_sym_PIPE] = ACTIONS(1653), + [anon_sym_fn] = ACTIONS(1643), + [anon_sym_PLUS] = ACTIONS(1653), + [anon_sym_DASH] = ACTIONS(1653), + [anon_sym_STAR] = ACTIONS(1655), + [anon_sym_SLASH] = ACTIONS(1655), + [anon_sym_PERCENT] = ACTIONS(1655), + [anon_sym_LT] = ACTIONS(1657), + [anon_sym_GT] = ACTIONS(1657), + [anon_sym_EQ_EQ] = ACTIONS(1657), + [anon_sym_BANG_EQ] = ACTIONS(1657), + [anon_sym_LT_EQ] = ACTIONS(1657), + [anon_sym_GT_EQ] = ACTIONS(1657), + [anon_sym_LBRACK] = ACTIONS(1659), + [anon_sym_struct] = ACTIONS(1643), + [anon_sym_union] = ACTIONS(1643), + [anon_sym_pub] = ACTIONS(1643), + [anon_sym_mut] = ACTIONS(1643), + [anon_sym_enum] = ACTIONS(1643), + [anon_sym_interface] = ACTIONS(1643), + [anon_sym_PLUS_PLUS] = ACTIONS(1661), + [anon_sym_DASH_DASH] = ACTIONS(1663), + [anon_sym_QMARK] = ACTIONS(1665), + [anon_sym_BANG] = ACTIONS(1667), + [anon_sym_go] = ACTIONS(1643), + [anon_sym_spawn] = ACTIONS(1643), + [anon_sym_json_DOTdecode] = ACTIONS(1643), + [anon_sym_LBRACK2] = ACTIONS(1669), + [anon_sym_TILDE] = ACTIONS(1643), + [anon_sym_CARET] = ACTIONS(1653), + [anon_sym_AMP] = ACTIONS(1655), + [anon_sym_LT_DASH] = ACTIONS(1643), + [anon_sym_LT_LT] = ACTIONS(1655), + [anon_sym_GT_GT] = ACTIONS(1655), + [anon_sym_GT_GT_GT] = ACTIONS(1655), + [anon_sym_AMP_CARET] = ACTIONS(1655), + [anon_sym_AMP_AMP] = ACTIONS(1671), + [anon_sym_PIPE_PIPE] = ACTIONS(1673), + [anon_sym_or] = ACTIONS(1675), + [sym_none] = ACTIONS(1643), + [sym_true] = ACTIONS(1643), + [sym_false] = ACTIONS(1643), + [sym_nil] = ACTIONS(1643), + [anon_sym_QMARK_DOT] = ACTIONS(1645), + [anon_sym_POUND_LBRACK] = ACTIONS(1669), + [anon_sym_if] = ACTIONS(1643), + [anon_sym_DOLLARif] = ACTIONS(1643), + [anon_sym_is] = ACTIONS(1677), + [anon_sym_BANGis] = ACTIONS(1677), + [anon_sym_in] = ACTIONS(1679), + [anon_sym_BANGin] = ACTIONS(1679), + [anon_sym_match] = ACTIONS(1643), + [anon_sym_select] = ACTIONS(1643), + [anon_sym_STAR_EQ] = ACTIONS(1649), + [anon_sym_SLASH_EQ] = ACTIONS(1649), + [anon_sym_PERCENT_EQ] = ACTIONS(1649), + [anon_sym_LT_LT_EQ] = ACTIONS(1649), + [anon_sym_GT_GT_EQ] = ACTIONS(1649), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(1649), + [anon_sym_AMP_EQ] = ACTIONS(1649), + [anon_sym_AMP_CARET_EQ] = ACTIONS(1649), + [anon_sym_PLUS_EQ] = ACTIONS(1649), + [anon_sym_DASH_EQ] = ACTIONS(1649), + [anon_sym_PIPE_EQ] = ACTIONS(1649), + [anon_sym_CARET_EQ] = ACTIONS(1649), + [anon_sym_COLON_EQ] = ACTIONS(1649), + [anon_sym_lock] = ACTIONS(1643), + [anon_sym_rlock] = ACTIONS(1643), + [anon_sym_unsafe] = ACTIONS(1643), + [anon_sym_sql] = ACTIONS(1643), + [sym_int_literal] = ACTIONS(1643), + [sym_float_literal] = ACTIONS(1643), + [sym_rune_literal] = ACTIONS(1643), + [sym_pseudo_compile_time_identifier] = ACTIONS(1643), + [anon_sym_shared] = ACTIONS(1643), + [anon_sym_map_LBRACK] = ACTIONS(1643), + [anon_sym_chan] = ACTIONS(1643), + [anon_sym_thread] = ACTIONS(1643), + [anon_sym_atomic] = ACTIONS(1643), + [anon_sym_assert] = ACTIONS(1643), + [anon_sym_defer] = ACTIONS(1643), + [anon_sym_goto] = ACTIONS(1643), + [anon_sym_break] = ACTIONS(1643), + [anon_sym_continue] = ACTIONS(1643), + [anon_sym_return] = ACTIONS(1643), + [anon_sym_DOLLARfor] = ACTIONS(1643), + [anon_sym_for] = ACTIONS(1643), + [anon_sym_POUND] = ACTIONS(1643), + [anon_sym_asm] = ACTIONS(1643), + [anon_sym_AT_LBRACK] = ACTIONS(1643), + [sym___double_quote] = ACTIONS(1643), + [sym___single_quote] = ACTIONS(1643), + [sym___c_double_quote] = ACTIONS(1643), + [sym___c_single_quote] = ACTIONS(1643), + [sym___r_double_quote] = ACTIONS(1643), + [sym___r_single_quote] = ACTIONS(1643), }, [211] = { [sym_line_comment] = STATE(211), [sym_block_comment] = STATE(211), - [sym__expression] = STATE(1757), - [sym__expression_without_blocks] = STATE(2044), - [sym__expression_with_blocks] = STATE(2044), - [sym_strictly_expression_list] = STATE(4156), - [sym_inc_expression] = STATE(2045), - [sym_dec_expression] = STATE(2045), - [sym_or_block_expression] = STATE(2045), - [sym_option_propagation_expression] = STATE(2045), - [sym_result_propagation_expression] = STATE(2045), - [sym_anon_struct_value_expression] = STATE(2046), - [sym_go_expression] = STATE(2045), - [sym_spawn_expression] = STATE(2045), - [sym_parenthesized_expression] = STATE(2045), - [sym_call_expression] = STATE(2045), - [sym_type_initializer] = STATE(2046), - [sym_function_literal] = STATE(2045), - [sym_reference_expression] = STATE(1912), - [sym_type_reference_expression] = STATE(3541), - [sym_unary_expression] = STATE(2045), - [sym_receive_expression] = STATE(2045), - [sym_binary_expression] = STATE(2045), - [sym_as_type_cast_expression] = STATE(2045), - [sym__max_group] = STATE(2045), - [sym_literal] = STATE(2043), - [sym_map_init_expression] = STATE(2046), - [sym_array_creation] = STATE(2045), - [sym_fixed_array_creation] = STATE(2045), - [sym_selector_expression] = STATE(2045), - [sym_index_expression] = STATE(2045), - [sym_slice_expression] = STATE(2045), - [sym_if_expression] = STATE(2046), - [sym_compile_time_if_expression] = STATE(2046), - [sym_is_expression] = STATE(2045), - [sym_in_expression] = STATE(2045), - [sym_enum_fetch] = STATE(2045), - [sym_match_expression] = STATE(2046), - [sym_select_expression] = STATE(2046), - [sym_lock_expression] = STATE(2046), - [sym_unsafe_expression] = STATE(2046), - [sym_sql_expression] = STATE(2046), - [sym_c_string_literal] = STATE(2041), - [sym_raw_string_literal] = STATE(2041), - [sym_interpreted_string_literal] = STATE(2041), - [sym_mutability_modifiers] = STATE(702), - [sym_mutable_expression] = STATE(3267), - [sym_expression_list] = STATE(3302), - [sym_plain_type] = STATE(4052), - [sym__plain_type_without_special] = STATE(2302), - [sym_anon_struct_type] = STATE(2303), - [sym_multi_return_type] = STATE(2302), - [sym_result_type] = STATE(2302), - [sym_option_type] = STATE(2302), - [sym_qualified_type] = STATE(3541), - [sym_fixed_array_type] = STATE(2303), - [sym_array_type] = STATE(2303), - [sym_pointer_type] = STATE(2303), - [sym_wrong_pointer_type] = STATE(2303), - [sym_map_type] = STATE(2303), - [sym_channel_type] = STATE(2303), - [sym_shared_type] = STATE(2303), - [sym_thread_type] = STATE(2303), - [sym_atomic_type] = STATE(2303), - [sym_generic_type] = STATE(2303), - [sym_function_type] = STATE(2303), - [sym_simple_statement] = STATE(4325), - [sym_var_declaration] = STATE(4156), - [sym_assignment_statement] = STATE(4156), - [sym_identifier] = ACTIONS(1641), + [sym__expression] = STATE(1762), + [sym__expression_without_blocks] = STATE(1953), + [sym__expression_with_blocks] = STATE(1953), + [sym_strictly_expression_list] = STATE(4047), + [sym_inc_expression] = STATE(1955), + [sym_dec_expression] = STATE(1955), + [sym_or_block_expression] = STATE(1955), + [sym_option_propagation_expression] = STATE(1955), + [sym_result_propagation_expression] = STATE(1955), + [sym_anon_struct_value_expression] = STATE(1958), + [sym_go_expression] = STATE(1955), + [sym_spawn_expression] = STATE(1955), + [sym_parenthesized_expression] = STATE(1955), + [sym_call_expression] = STATE(1955), + [sym_type_initializer] = STATE(1958), + [sym_function_literal] = STATE(1955), + [sym_reference_expression] = STATE(1956), + [sym_type_reference_expression] = STATE(3460), + [sym_unary_expression] = STATE(1955), + [sym_receive_expression] = STATE(1955), + [sym_binary_expression] = STATE(1955), + [sym_as_type_cast_expression] = STATE(1955), + [sym__max_group] = STATE(1955), + [sym_literal] = STATE(1943), + [sym_map_init_expression] = STATE(1958), + [sym_array_creation] = STATE(1955), + [sym_fixed_array_creation] = STATE(1955), + [sym_selector_expression] = STATE(1955), + [sym_index_expression] = STATE(1955), + [sym_slice_expression] = STATE(1955), + [sym_if_expression] = STATE(1958), + [sym_compile_time_if_expression] = STATE(1958), + [sym_is_expression] = STATE(1955), + [sym_in_expression] = STATE(1955), + [sym_enum_fetch] = STATE(1955), + [sym_match_expression] = STATE(1958), + [sym_select_expression] = STATE(1958), + [sym_lock_expression] = STATE(1958), + [sym_unsafe_expression] = STATE(1958), + [sym_sql_expression] = STATE(1958), + [sym_c_string_literal] = STATE(1942), + [sym_raw_string_literal] = STATE(1942), + [sym_interpreted_string_literal] = STATE(1942), + [sym_mutability_modifiers] = STATE(652), + [sym_mutable_expression] = STATE(3276), + [sym_expression_list] = STATE(3306), + [sym_plain_type] = STATE(4266), + [sym__plain_type_without_special] = STATE(2360), + [sym_anon_struct_type] = STATE(2362), + [sym_multi_return_type] = STATE(2360), + [sym_result_type] = STATE(2360), + [sym_option_type] = STATE(2360), + [sym_qualified_type] = STATE(3460), + [sym_fixed_array_type] = STATE(2362), + [sym_array_type] = STATE(2362), + [sym_pointer_type] = STATE(2362), + [sym_wrong_pointer_type] = STATE(2362), + [sym_map_type] = STATE(2362), + [sym_channel_type] = STATE(2362), + [sym_shared_type] = STATE(2362), + [sym_thread_type] = STATE(2362), + [sym_atomic_type] = STATE(2362), + [sym_generic_type] = STATE(2362), + [sym_function_type] = STATE(2362), + [sym_simple_statement] = STATE(4516), + [sym_var_declaration] = STATE(4047), + [sym_assignment_statement] = STATE(4047), + [sym_identifier] = ACTIONS(1681), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(811), - [anon_sym_LBRACE] = ACTIONS(1645), - [anon_sym_LPAREN] = ACTIONS(815), - [anon_sym_fn] = ACTIONS(817), - [anon_sym_PLUS] = ACTIONS(819), - [anon_sym_DASH] = ACTIONS(819), - [anon_sym_STAR] = ACTIONS(821), - [anon_sym_struct] = ACTIONS(823), + [anon_sym_DOT] = ACTIONS(705), + [anon_sym_LBRACE] = ACTIONS(1683), + [anon_sym_LPAREN] = ACTIONS(709), + [anon_sym_fn] = ACTIONS(711), + [anon_sym_PLUS] = ACTIONS(713), + [anon_sym_DASH] = ACTIONS(713), + [anon_sym_STAR] = ACTIONS(715), + [anon_sym_struct] = ACTIONS(717), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(827), - [anon_sym_go] = ACTIONS(829), - [anon_sym_spawn] = ACTIONS(831), - [anon_sym_json_DOTdecode] = ACTIONS(833), - [anon_sym_LBRACK2] = ACTIONS(835), - [anon_sym_TILDE] = ACTIONS(819), - [anon_sym_CARET] = ACTIONS(819), - [anon_sym_AMP] = ACTIONS(837), - [anon_sym_LT_DASH] = ACTIONS(839), - [sym_none] = ACTIONS(841), - [sym_true] = ACTIONS(841), - [sym_false] = ACTIONS(841), - [sym_nil] = ACTIONS(841), - [anon_sym_if] = ACTIONS(843), - [anon_sym_DOLLARif] = ACTIONS(845), - [anon_sym_match] = ACTIONS(847), - [anon_sym_select] = ACTIONS(849), - [anon_sym_lock] = ACTIONS(851), - [anon_sym_rlock] = ACTIONS(851), - [anon_sym_unsafe] = ACTIONS(853), - [anon_sym_sql] = ACTIONS(855), - [sym_int_literal] = ACTIONS(841), - [sym_float_literal] = ACTIONS(857), - [sym_rune_literal] = ACTIONS(857), - [sym_pseudo_compile_time_identifier] = ACTIONS(859), + [anon_sym_BANG] = ACTIONS(721), + [anon_sym_go] = ACTIONS(723), + [anon_sym_spawn] = ACTIONS(725), + [anon_sym_json_DOTdecode] = ACTIONS(727), + [anon_sym_LBRACK2] = ACTIONS(729), + [anon_sym_TILDE] = ACTIONS(713), + [anon_sym_CARET] = ACTIONS(713), + [anon_sym_AMP] = ACTIONS(731), + [anon_sym_LT_DASH] = ACTIONS(733), + [sym_none] = ACTIONS(735), + [sym_true] = ACTIONS(735), + [sym_false] = ACTIONS(735), + [sym_nil] = ACTIONS(735), + [anon_sym_if] = ACTIONS(737), + [anon_sym_DOLLARif] = ACTIONS(739), + [anon_sym_match] = ACTIONS(741), + [anon_sym_select] = ACTIONS(743), + [anon_sym_lock] = ACTIONS(745), + [anon_sym_rlock] = ACTIONS(745), + [anon_sym_unsafe] = ACTIONS(747), + [anon_sym_sql] = ACTIONS(749), + [sym_int_literal] = ACTIONS(735), + [sym_float_literal] = ACTIONS(751), + [sym_rune_literal] = ACTIONS(751), + [sym_pseudo_compile_time_identifier] = ACTIONS(753), [anon_sym_shared] = ACTIONS(83), [anon_sym_map_LBRACK] = ACTIONS(85), [anon_sym_chan] = ACTIONS(87), [anon_sym_thread] = ACTIONS(89), [anon_sym_atomic] = ACTIONS(91), - [sym___double_quote] = ACTIONS(861), - [sym___single_quote] = ACTIONS(863), - [sym___c_double_quote] = ACTIONS(865), - [sym___c_single_quote] = ACTIONS(867), - [sym___r_double_quote] = ACTIONS(869), - [sym___r_single_quote] = ACTIONS(871), + [sym___double_quote] = ACTIONS(755), + [sym___single_quote] = ACTIONS(757), + [sym___c_double_quote] = ACTIONS(759), + [sym___c_single_quote] = ACTIONS(761), + [sym___r_double_quote] = ACTIONS(763), + [sym___r_single_quote] = ACTIONS(765), }, [212] = { [sym_line_comment] = STATE(212), [sym_block_comment] = STATE(212), - [sym__expression] = STATE(1757), - [sym__expression_without_blocks] = STATE(2044), - [sym__expression_with_blocks] = STATE(2044), - [sym_strictly_expression_list] = STATE(4156), - [sym_inc_expression] = STATE(2045), - [sym_dec_expression] = STATE(2045), - [sym_or_block_expression] = STATE(2045), - [sym_option_propagation_expression] = STATE(2045), - [sym_result_propagation_expression] = STATE(2045), - [sym_anon_struct_value_expression] = STATE(2046), - [sym_go_expression] = STATE(2045), - [sym_spawn_expression] = STATE(2045), - [sym_parenthesized_expression] = STATE(2045), - [sym_call_expression] = STATE(2045), - [sym_type_initializer] = STATE(2046), - [sym_function_literal] = STATE(2045), - [sym_reference_expression] = STATE(1912), - [sym_type_reference_expression] = STATE(3541), - [sym_unary_expression] = STATE(2045), - [sym_receive_expression] = STATE(2045), - [sym_binary_expression] = STATE(2045), - [sym_as_type_cast_expression] = STATE(2045), - [sym__max_group] = STATE(2045), - [sym_literal] = STATE(2043), - [sym_map_init_expression] = STATE(2046), - [sym_array_creation] = STATE(2045), - [sym_fixed_array_creation] = STATE(2045), - [sym_selector_expression] = STATE(2045), - [sym_index_expression] = STATE(2045), - [sym_slice_expression] = STATE(2045), - [sym_if_expression] = STATE(2046), - [sym_compile_time_if_expression] = STATE(2046), - [sym_is_expression] = STATE(2045), - [sym_in_expression] = STATE(2045), - [sym_enum_fetch] = STATE(2045), - [sym_match_expression] = STATE(2046), - [sym_select_expression] = STATE(2046), - [sym_lock_expression] = STATE(2046), - [sym_unsafe_expression] = STATE(2046), - [sym_sql_expression] = STATE(2046), - [sym_c_string_literal] = STATE(2041), - [sym_raw_string_literal] = STATE(2041), - [sym_interpreted_string_literal] = STATE(2041), - [sym_mutability_modifiers] = STATE(702), - [sym_mutable_expression] = STATE(3267), - [sym_expression_list] = STATE(3302), - [sym_plain_type] = STATE(4052), - [sym__plain_type_without_special] = STATE(2302), - [sym_anon_struct_type] = STATE(2303), - [sym_multi_return_type] = STATE(2302), - [sym_result_type] = STATE(2302), - [sym_option_type] = STATE(2302), - [sym_qualified_type] = STATE(3541), - [sym_fixed_array_type] = STATE(2303), - [sym_array_type] = STATE(2303), - [sym_pointer_type] = STATE(2303), - [sym_wrong_pointer_type] = STATE(2303), - [sym_map_type] = STATE(2303), - [sym_channel_type] = STATE(2303), - [sym_shared_type] = STATE(2303), - [sym_thread_type] = STATE(2303), - [sym_atomic_type] = STATE(2303), - [sym_generic_type] = STATE(2303), - [sym_function_type] = STATE(2303), - [sym_simple_statement] = STATE(4583), - [sym_var_declaration] = STATE(4156), - [sym_assignment_statement] = STATE(4156), - [sym_identifier] = ACTIONS(1641), + [sym__expression] = STATE(1762), + [sym__expression_without_blocks] = STATE(1953), + [sym__expression_with_blocks] = STATE(1953), + [sym_strictly_expression_list] = STATE(4047), + [sym_inc_expression] = STATE(1955), + [sym_dec_expression] = STATE(1955), + [sym_or_block_expression] = STATE(1955), + [sym_option_propagation_expression] = STATE(1955), + [sym_result_propagation_expression] = STATE(1955), + [sym_anon_struct_value_expression] = STATE(1958), + [sym_go_expression] = STATE(1955), + [sym_spawn_expression] = STATE(1955), + [sym_parenthesized_expression] = STATE(1955), + [sym_call_expression] = STATE(1955), + [sym_type_initializer] = STATE(1958), + [sym_function_literal] = STATE(1955), + [sym_reference_expression] = STATE(1956), + [sym_type_reference_expression] = STATE(3460), + [sym_unary_expression] = STATE(1955), + [sym_receive_expression] = STATE(1955), + [sym_binary_expression] = STATE(1955), + [sym_as_type_cast_expression] = STATE(1955), + [sym__max_group] = STATE(1955), + [sym_literal] = STATE(1943), + [sym_map_init_expression] = STATE(1958), + [sym_array_creation] = STATE(1955), + [sym_fixed_array_creation] = STATE(1955), + [sym_selector_expression] = STATE(1955), + [sym_index_expression] = STATE(1955), + [sym_slice_expression] = STATE(1955), + [sym_if_expression] = STATE(1958), + [sym_compile_time_if_expression] = STATE(1958), + [sym_is_expression] = STATE(1955), + [sym_in_expression] = STATE(1955), + [sym_enum_fetch] = STATE(1955), + [sym_match_expression] = STATE(1958), + [sym_select_expression] = STATE(1958), + [sym_lock_expression] = STATE(1958), + [sym_unsafe_expression] = STATE(1958), + [sym_sql_expression] = STATE(1958), + [sym_c_string_literal] = STATE(1942), + [sym_raw_string_literal] = STATE(1942), + [sym_interpreted_string_literal] = STATE(1942), + [sym_mutability_modifiers] = STATE(652), + [sym_mutable_expression] = STATE(3276), + [sym_expression_list] = STATE(3306), + [sym_plain_type] = STATE(4266), + [sym__plain_type_without_special] = STATE(2360), + [sym_anon_struct_type] = STATE(2362), + [sym_multi_return_type] = STATE(2360), + [sym_result_type] = STATE(2360), + [sym_option_type] = STATE(2360), + [sym_qualified_type] = STATE(3460), + [sym_fixed_array_type] = STATE(2362), + [sym_array_type] = STATE(2362), + [sym_pointer_type] = STATE(2362), + [sym_wrong_pointer_type] = STATE(2362), + [sym_map_type] = STATE(2362), + [sym_channel_type] = STATE(2362), + [sym_shared_type] = STATE(2362), + [sym_thread_type] = STATE(2362), + [sym_atomic_type] = STATE(2362), + [sym_generic_type] = STATE(2362), + [sym_function_type] = STATE(2362), + [sym_simple_statement] = STATE(4567), + [sym_var_declaration] = STATE(4047), + [sym_assignment_statement] = STATE(4047), + [sym_identifier] = ACTIONS(1681), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(811), - [anon_sym_LBRACE] = ACTIONS(1647), - [anon_sym_LPAREN] = ACTIONS(815), - [anon_sym_fn] = ACTIONS(817), - [anon_sym_PLUS] = ACTIONS(819), - [anon_sym_DASH] = ACTIONS(819), - [anon_sym_STAR] = ACTIONS(821), - [anon_sym_struct] = ACTIONS(823), + [anon_sym_DOT] = ACTIONS(705), + [anon_sym_LBRACE] = ACTIONS(1685), + [anon_sym_LPAREN] = ACTIONS(709), + [anon_sym_fn] = ACTIONS(711), + [anon_sym_PLUS] = ACTIONS(713), + [anon_sym_DASH] = ACTIONS(713), + [anon_sym_STAR] = ACTIONS(715), + [anon_sym_struct] = ACTIONS(717), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(827), - [anon_sym_go] = ACTIONS(829), - [anon_sym_spawn] = ACTIONS(831), - [anon_sym_json_DOTdecode] = ACTIONS(833), - [anon_sym_LBRACK2] = ACTIONS(835), - [anon_sym_TILDE] = ACTIONS(819), - [anon_sym_CARET] = ACTIONS(819), - [anon_sym_AMP] = ACTIONS(837), - [anon_sym_LT_DASH] = ACTIONS(839), - [sym_none] = ACTIONS(841), - [sym_true] = ACTIONS(841), - [sym_false] = ACTIONS(841), - [sym_nil] = ACTIONS(841), - [anon_sym_if] = ACTIONS(843), - [anon_sym_DOLLARif] = ACTIONS(845), - [anon_sym_match] = ACTIONS(847), - [anon_sym_select] = ACTIONS(849), - [anon_sym_lock] = ACTIONS(851), - [anon_sym_rlock] = ACTIONS(851), - [anon_sym_unsafe] = ACTIONS(853), - [anon_sym_sql] = ACTIONS(855), - [sym_int_literal] = ACTIONS(841), - [sym_float_literal] = ACTIONS(857), - [sym_rune_literal] = ACTIONS(857), - [sym_pseudo_compile_time_identifier] = ACTIONS(859), + [anon_sym_BANG] = ACTIONS(721), + [anon_sym_go] = ACTIONS(723), + [anon_sym_spawn] = ACTIONS(725), + [anon_sym_json_DOTdecode] = ACTIONS(727), + [anon_sym_LBRACK2] = ACTIONS(729), + [anon_sym_TILDE] = ACTIONS(713), + [anon_sym_CARET] = ACTIONS(713), + [anon_sym_AMP] = ACTIONS(731), + [anon_sym_LT_DASH] = ACTIONS(733), + [sym_none] = ACTIONS(735), + [sym_true] = ACTIONS(735), + [sym_false] = ACTIONS(735), + [sym_nil] = ACTIONS(735), + [anon_sym_if] = ACTIONS(737), + [anon_sym_DOLLARif] = ACTIONS(739), + [anon_sym_match] = ACTIONS(741), + [anon_sym_select] = ACTIONS(743), + [anon_sym_lock] = ACTIONS(745), + [anon_sym_rlock] = ACTIONS(745), + [anon_sym_unsafe] = ACTIONS(747), + [anon_sym_sql] = ACTIONS(749), + [sym_int_literal] = ACTIONS(735), + [sym_float_literal] = ACTIONS(751), + [sym_rune_literal] = ACTIONS(751), + [sym_pseudo_compile_time_identifier] = ACTIONS(753), [anon_sym_shared] = ACTIONS(83), [anon_sym_map_LBRACK] = ACTIONS(85), [anon_sym_chan] = ACTIONS(87), [anon_sym_thread] = ACTIONS(89), [anon_sym_atomic] = ACTIONS(91), - [sym___double_quote] = ACTIONS(861), - [sym___single_quote] = ACTIONS(863), - [sym___c_double_quote] = ACTIONS(865), - [sym___c_single_quote] = ACTIONS(867), - [sym___r_double_quote] = ACTIONS(869), - [sym___r_single_quote] = ACTIONS(871), + [sym___double_quote] = ACTIONS(755), + [sym___single_quote] = ACTIONS(757), + [sym___c_double_quote] = ACTIONS(759), + [sym___c_single_quote] = ACTIONS(761), + [sym___r_double_quote] = ACTIONS(763), + [sym___r_single_quote] = ACTIONS(765), }, [213] = { [sym_line_comment] = STATE(213), [sym_block_comment] = STATE(213), - [sym_type_parameters] = STATE(4280), - [sym_argument_list] = STATE(401), - [sym_or_block] = STATE(400), - [aux_sym_strictly_expression_list_repeat1] = STATE(3270), - [ts_builtin_sym_end] = ACTIONS(1649), - [sym_identifier] = ACTIONS(1651), - [anon_sym_LF] = ACTIONS(1651), - [anon_sym_CR] = ACTIONS(1651), - [anon_sym_CR_LF] = ACTIONS(1651), - [anon_sym_SLASH_SLASH] = ACTIONS(497), - [anon_sym_SLASH_STAR] = ACTIONS(499), - [anon_sym_DOT] = ACTIONS(1653), - [anon_sym_as] = ACTIONS(1655), - [anon_sym_LBRACE] = ACTIONS(1651), - [anon_sym_COMMA] = ACTIONS(1657), - [anon_sym_const] = ACTIONS(1651), - [anon_sym_LPAREN] = ACTIONS(1659), - [anon_sym_EQ] = ACTIONS(1661), - [anon_sym___global] = ACTIONS(1651), - [anon_sym_type] = ACTIONS(1651), - [anon_sym_PIPE] = ACTIONS(1663), - [anon_sym_fn] = ACTIONS(1651), - [anon_sym_PLUS] = ACTIONS(1663), - [anon_sym_DASH] = ACTIONS(1663), - [anon_sym_STAR] = ACTIONS(1665), - [anon_sym_SLASH] = ACTIONS(1665), - [anon_sym_PERCENT] = ACTIONS(1665), - [anon_sym_LT] = ACTIONS(1667), - [anon_sym_GT] = ACTIONS(1667), - [anon_sym_EQ_EQ] = ACTIONS(1667), - [anon_sym_BANG_EQ] = ACTIONS(1667), - [anon_sym_LT_EQ] = ACTIONS(1667), - [anon_sym_GT_EQ] = ACTIONS(1667), - [anon_sym_LBRACK] = ACTIONS(1669), - [anon_sym_struct] = ACTIONS(1651), - [anon_sym_union] = ACTIONS(1651), - [anon_sym_pub] = ACTIONS(1651), - [anon_sym_mut] = ACTIONS(1651), - [anon_sym_enum] = ACTIONS(1651), - [anon_sym_interface] = ACTIONS(1651), - [anon_sym_PLUS_PLUS] = ACTIONS(1671), - [anon_sym_DASH_DASH] = ACTIONS(1673), - [anon_sym_QMARK] = ACTIONS(1675), - [anon_sym_BANG] = ACTIONS(1677), - [anon_sym_go] = ACTIONS(1651), - [anon_sym_spawn] = ACTIONS(1651), - [anon_sym_json_DOTdecode] = ACTIONS(1651), - [anon_sym_LBRACK2] = ACTIONS(1679), - [anon_sym_TILDE] = ACTIONS(1651), - [anon_sym_CARET] = ACTIONS(1663), - [anon_sym_AMP] = ACTIONS(1665), - [anon_sym_LT_DASH] = ACTIONS(1681), - [anon_sym_LT_LT] = ACTIONS(1683), - [anon_sym_GT_GT] = ACTIONS(1665), - [anon_sym_GT_GT_GT] = ACTIONS(1665), - [anon_sym_AMP_CARET] = ACTIONS(1665), - [anon_sym_AMP_AMP] = ACTIONS(1685), - [anon_sym_PIPE_PIPE] = ACTIONS(1687), - [anon_sym_or] = ACTIONS(1689), - [sym_none] = ACTIONS(1651), - [sym_true] = ACTIONS(1651), - [sym_false] = ACTIONS(1651), - [sym_nil] = ACTIONS(1651), - [anon_sym_QMARK_DOT] = ACTIONS(1653), - [anon_sym_POUND_LBRACK] = ACTIONS(1679), - [anon_sym_if] = ACTIONS(1651), - [anon_sym_DOLLARif] = ACTIONS(1651), - [anon_sym_is] = ACTIONS(1691), - [anon_sym_BANGis] = ACTIONS(1691), - [anon_sym_in] = ACTIONS(1693), - [anon_sym_BANGin] = ACTIONS(1693), - [anon_sym_match] = ACTIONS(1651), - [anon_sym_select] = ACTIONS(1651), - [anon_sym_STAR_EQ] = ACTIONS(1661), - [anon_sym_SLASH_EQ] = ACTIONS(1661), - [anon_sym_PERCENT_EQ] = ACTIONS(1661), - [anon_sym_LT_LT_EQ] = ACTIONS(1661), - [anon_sym_GT_GT_EQ] = ACTIONS(1661), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(1661), - [anon_sym_AMP_EQ] = ACTIONS(1661), - [anon_sym_AMP_CARET_EQ] = ACTIONS(1661), - [anon_sym_PLUS_EQ] = ACTIONS(1661), - [anon_sym_DASH_EQ] = ACTIONS(1661), - [anon_sym_PIPE_EQ] = ACTIONS(1661), - [anon_sym_CARET_EQ] = ACTIONS(1661), - [anon_sym_COLON_EQ] = ACTIONS(1661), - [anon_sym_lock] = ACTIONS(1651), - [anon_sym_rlock] = ACTIONS(1651), - [anon_sym_unsafe] = ACTIONS(1651), - [anon_sym_sql] = ACTIONS(1651), - [sym_int_literal] = ACTIONS(1651), - [sym_float_literal] = ACTIONS(1651), - [sym_rune_literal] = ACTIONS(1651), - [sym_pseudo_compile_time_identifier] = ACTIONS(1651), - [anon_sym_shared] = ACTIONS(1651), - [anon_sym_map_LBRACK] = ACTIONS(1651), - [anon_sym_chan] = ACTIONS(1651), - [anon_sym_thread] = ACTIONS(1651), - [anon_sym_atomic] = ACTIONS(1651), - [anon_sym_assert] = ACTIONS(1651), - [anon_sym_defer] = ACTIONS(1651), - [anon_sym_goto] = ACTIONS(1651), - [anon_sym_break] = ACTIONS(1651), - [anon_sym_continue] = ACTIONS(1651), - [anon_sym_return] = ACTIONS(1651), - [anon_sym_DOLLARfor] = ACTIONS(1651), - [anon_sym_for] = ACTIONS(1651), - [anon_sym_POUND] = ACTIONS(1651), - [anon_sym_asm] = ACTIONS(1651), - [anon_sym_AT_LBRACK] = ACTIONS(1651), - [sym___double_quote] = ACTIONS(1651), - [sym___single_quote] = ACTIONS(1651), - [sym___c_double_quote] = ACTIONS(1651), - [sym___c_single_quote] = ACTIONS(1651), - [sym___r_double_quote] = ACTIONS(1651), - [sym___r_single_quote] = ACTIONS(1651), + [sym__expression] = STATE(1762), + [sym__expression_without_blocks] = STATE(1953), + [sym__expression_with_blocks] = STATE(1953), + [sym_strictly_expression_list] = STATE(4047), + [sym_inc_expression] = STATE(1955), + [sym_dec_expression] = STATE(1955), + [sym_or_block_expression] = STATE(1955), + [sym_option_propagation_expression] = STATE(1955), + [sym_result_propagation_expression] = STATE(1955), + [sym_anon_struct_value_expression] = STATE(1958), + [sym_go_expression] = STATE(1955), + [sym_spawn_expression] = STATE(1955), + [sym_parenthesized_expression] = STATE(1955), + [sym_call_expression] = STATE(1955), + [sym_type_initializer] = STATE(1958), + [sym_function_literal] = STATE(1955), + [sym_reference_expression] = STATE(1956), + [sym_type_reference_expression] = STATE(3460), + [sym_unary_expression] = STATE(1955), + [sym_receive_expression] = STATE(1955), + [sym_binary_expression] = STATE(1955), + [sym_as_type_cast_expression] = STATE(1955), + [sym__max_group] = STATE(1955), + [sym_literal] = STATE(1943), + [sym_map_init_expression] = STATE(1958), + [sym_array_creation] = STATE(1955), + [sym_fixed_array_creation] = STATE(1955), + [sym_selector_expression] = STATE(1955), + [sym_index_expression] = STATE(1955), + [sym_slice_expression] = STATE(1955), + [sym_if_expression] = STATE(1958), + [sym_compile_time_if_expression] = STATE(1958), + [sym_is_expression] = STATE(1955), + [sym_in_expression] = STATE(1955), + [sym_enum_fetch] = STATE(1955), + [sym_match_expression] = STATE(1958), + [sym_select_expression] = STATE(1958), + [sym_lock_expression] = STATE(1958), + [sym_unsafe_expression] = STATE(1958), + [sym_sql_expression] = STATE(1958), + [sym_c_string_literal] = STATE(1942), + [sym_raw_string_literal] = STATE(1942), + [sym_interpreted_string_literal] = STATE(1942), + [sym_mutability_modifiers] = STATE(652), + [sym_mutable_expression] = STATE(3276), + [sym_expression_list] = STATE(3306), + [sym_plain_type] = STATE(4266), + [sym__plain_type_without_special] = STATE(2360), + [sym_anon_struct_type] = STATE(2362), + [sym_multi_return_type] = STATE(2360), + [sym_result_type] = STATE(2360), + [sym_option_type] = STATE(2360), + [sym_qualified_type] = STATE(3460), + [sym_fixed_array_type] = STATE(2362), + [sym_array_type] = STATE(2362), + [sym_pointer_type] = STATE(2362), + [sym_wrong_pointer_type] = STATE(2362), + [sym_map_type] = STATE(2362), + [sym_channel_type] = STATE(2362), + [sym_shared_type] = STATE(2362), + [sym_thread_type] = STATE(2362), + [sym_atomic_type] = STATE(2362), + [sym_generic_type] = STATE(2362), + [sym_function_type] = STATE(2362), + [sym_simple_statement] = STATE(4449), + [sym_var_declaration] = STATE(4047), + [sym_assignment_statement] = STATE(4047), + [sym_identifier] = ACTIONS(1681), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(705), + [anon_sym_LBRACE] = ACTIONS(1687), + [anon_sym_LPAREN] = ACTIONS(709), + [anon_sym_fn] = ACTIONS(711), + [anon_sym_PLUS] = ACTIONS(713), + [anon_sym_DASH] = ACTIONS(713), + [anon_sym_STAR] = ACTIONS(715), + [anon_sym_struct] = ACTIONS(717), + [anon_sym_mut] = ACTIONS(41), + [anon_sym_QMARK] = ACTIONS(47), + [anon_sym_BANG] = ACTIONS(721), + [anon_sym_go] = ACTIONS(723), + [anon_sym_spawn] = ACTIONS(725), + [anon_sym_json_DOTdecode] = ACTIONS(727), + [anon_sym_LBRACK2] = ACTIONS(729), + [anon_sym_TILDE] = ACTIONS(713), + [anon_sym_CARET] = ACTIONS(713), + [anon_sym_AMP] = ACTIONS(731), + [anon_sym_LT_DASH] = ACTIONS(733), + [sym_none] = ACTIONS(735), + [sym_true] = ACTIONS(735), + [sym_false] = ACTIONS(735), + [sym_nil] = ACTIONS(735), + [anon_sym_if] = ACTIONS(737), + [anon_sym_DOLLARif] = ACTIONS(739), + [anon_sym_match] = ACTIONS(741), + [anon_sym_select] = ACTIONS(743), + [anon_sym_lock] = ACTIONS(745), + [anon_sym_rlock] = ACTIONS(745), + [anon_sym_unsafe] = ACTIONS(747), + [anon_sym_sql] = ACTIONS(749), + [sym_int_literal] = ACTIONS(735), + [sym_float_literal] = ACTIONS(751), + [sym_rune_literal] = ACTIONS(751), + [sym_pseudo_compile_time_identifier] = ACTIONS(753), + [anon_sym_shared] = ACTIONS(83), + [anon_sym_map_LBRACK] = ACTIONS(85), + [anon_sym_chan] = ACTIONS(87), + [anon_sym_thread] = ACTIONS(89), + [anon_sym_atomic] = ACTIONS(91), + [sym___double_quote] = ACTIONS(755), + [sym___single_quote] = ACTIONS(757), + [sym___c_double_quote] = ACTIONS(759), + [sym___c_single_quote] = ACTIONS(761), + [sym___r_double_quote] = ACTIONS(763), + [sym___r_single_quote] = ACTIONS(765), }, [214] = { [sym_line_comment] = STATE(214), [sym_block_comment] = STATE(214), - [sym__expression] = STATE(2278), - [sym__expression_without_blocks] = STATE(2489), - [sym__expression_with_blocks] = STATE(2489), - [sym_inc_expression] = STATE(2479), - [sym_dec_expression] = STATE(2479), - [sym_or_block_expression] = STATE(2479), - [sym_option_propagation_expression] = STATE(2479), - [sym_result_propagation_expression] = STATE(2479), - [sym_anon_struct_value_expression] = STATE(2491), - [sym_go_expression] = STATE(2479), - [sym_spawn_expression] = STATE(2479), - [sym_parenthesized_expression] = STATE(2479), - [sym_call_expression] = STATE(2479), - [sym_type_initializer] = STATE(2491), - [sym_function_literal] = STATE(2479), - [sym_reference_expression] = STATE(2542), - [sym_type_reference_expression] = STATE(3541), - [sym_unary_expression] = STATE(2479), - [sym_receive_expression] = STATE(2479), - [sym_binary_expression] = STATE(2479), - [sym_as_type_cast_expression] = STATE(2479), - [sym__max_group] = STATE(2479), - [sym_literal] = STATE(2454), - [sym_map_init_expression] = STATE(2491), - [sym_array_creation] = STATE(2479), - [sym_fixed_array_creation] = STATE(2479), - [sym_selector_expression] = STATE(2479), - [sym_index_expression] = STATE(2479), - [sym_slice_expression] = STATE(2479), - [sym_if_expression] = STATE(2491), - [sym_compile_time_if_expression] = STATE(2491), - [sym_is_expression] = STATE(2479), - [sym_in_expression] = STATE(2479), - [sym_enum_fetch] = STATE(2479), - [sym_match_expression] = STATE(2491), - [sym_select_expression] = STATE(2491), - [sym_lock_expression] = STATE(2491), - [sym_unsafe_expression] = STATE(2491), - [sym_sql_expression] = STATE(2491), - [sym_c_string_literal] = STATE(2469), - [sym_raw_string_literal] = STATE(2469), - [sym_interpreted_string_literal] = STATE(2469), - [sym_mutability_modifiers] = STATE(831), - [sym_mutable_expression] = STATE(3510), - [sym_expression_list] = STATE(3609), - [sym_plain_type] = STATE(4255), - [sym__plain_type_without_special] = STATE(2302), - [sym_anon_struct_type] = STATE(2303), - [sym_multi_return_type] = STATE(2302), - [sym_result_type] = STATE(2302), - [sym_option_type] = STATE(2302), - [sym_qualified_type] = STATE(3541), - [sym_fixed_array_type] = STATE(2303), - [sym_array_type] = STATE(2303), - [sym_pointer_type] = STATE(2303), - [sym_wrong_pointer_type] = STATE(2303), - [sym_map_type] = STATE(2303), - [sym_channel_type] = STATE(2303), - [sym_shared_type] = STATE(2303), - [sym_thread_type] = STATE(2303), - [sym_atomic_type] = STATE(2303), - [sym_generic_type] = STATE(2303), - [sym_function_type] = STATE(2303), - [sym_identifier] = ACTIONS(1695), - [anon_sym_LF] = ACTIONS(495), - [anon_sym_CR] = ACTIONS(495), - [anon_sym_CR_LF] = ACTIONS(495), - [anon_sym_SLASH_SLASH] = ACTIONS(497), - [anon_sym_SLASH_STAR] = ACTIONS(499), - [anon_sym_DOT] = ACTIONS(1697), - [anon_sym_LBRACE] = ACTIONS(1699), - [anon_sym_RBRACE] = ACTIONS(495), - [anon_sym_LPAREN] = ACTIONS(1701), - [anon_sym_fn] = ACTIONS(1703), - [anon_sym_PLUS] = ACTIONS(1705), - [anon_sym_DASH] = ACTIONS(1705), - [anon_sym_STAR] = ACTIONS(1707), - [anon_sym_struct] = ACTIONS(1709), + [sym__expression] = STATE(1762), + [sym__expression_without_blocks] = STATE(1953), + [sym__expression_with_blocks] = STATE(1953), + [sym_strictly_expression_list] = STATE(4047), + [sym_inc_expression] = STATE(1955), + [sym_dec_expression] = STATE(1955), + [sym_or_block_expression] = STATE(1955), + [sym_option_propagation_expression] = STATE(1955), + [sym_result_propagation_expression] = STATE(1955), + [sym_anon_struct_value_expression] = STATE(1958), + [sym_go_expression] = STATE(1955), + [sym_spawn_expression] = STATE(1955), + [sym_parenthesized_expression] = STATE(1955), + [sym_call_expression] = STATE(1955), + [sym_type_initializer] = STATE(1958), + [sym_function_literal] = STATE(1955), + [sym_reference_expression] = STATE(1956), + [sym_type_reference_expression] = STATE(3460), + [sym_unary_expression] = STATE(1955), + [sym_receive_expression] = STATE(1955), + [sym_binary_expression] = STATE(1955), + [sym_as_type_cast_expression] = STATE(1955), + [sym__max_group] = STATE(1955), + [sym_literal] = STATE(1943), + [sym_map_init_expression] = STATE(1958), + [sym_array_creation] = STATE(1955), + [sym_fixed_array_creation] = STATE(1955), + [sym_selector_expression] = STATE(1955), + [sym_index_expression] = STATE(1955), + [sym_slice_expression] = STATE(1955), + [sym_if_expression] = STATE(1958), + [sym_compile_time_if_expression] = STATE(1958), + [sym_is_expression] = STATE(1955), + [sym_in_expression] = STATE(1955), + [sym_enum_fetch] = STATE(1955), + [sym_match_expression] = STATE(1958), + [sym_select_expression] = STATE(1958), + [sym_lock_expression] = STATE(1958), + [sym_unsafe_expression] = STATE(1958), + [sym_sql_expression] = STATE(1958), + [sym_c_string_literal] = STATE(1942), + [sym_raw_string_literal] = STATE(1942), + [sym_interpreted_string_literal] = STATE(1942), + [sym_mutability_modifiers] = STATE(652), + [sym_mutable_expression] = STATE(3276), + [sym_expression_list] = STATE(3306), + [sym_plain_type] = STATE(4266), + [sym__plain_type_without_special] = STATE(2360), + [sym_anon_struct_type] = STATE(2362), + [sym_multi_return_type] = STATE(2360), + [sym_result_type] = STATE(2360), + [sym_option_type] = STATE(2360), + [sym_qualified_type] = STATE(3460), + [sym_fixed_array_type] = STATE(2362), + [sym_array_type] = STATE(2362), + [sym_pointer_type] = STATE(2362), + [sym_wrong_pointer_type] = STATE(2362), + [sym_map_type] = STATE(2362), + [sym_channel_type] = STATE(2362), + [sym_shared_type] = STATE(2362), + [sym_thread_type] = STATE(2362), + [sym_atomic_type] = STATE(2362), + [sym_generic_type] = STATE(2362), + [sym_function_type] = STATE(2362), + [sym_simple_statement] = STATE(4382), + [sym_var_declaration] = STATE(4047), + [sym_assignment_statement] = STATE(4047), + [sym_identifier] = ACTIONS(1681), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(705), + [anon_sym_LBRACE] = ACTIONS(1689), + [anon_sym_LPAREN] = ACTIONS(709), + [anon_sym_fn] = ACTIONS(711), + [anon_sym_PLUS] = ACTIONS(713), + [anon_sym_DASH] = ACTIONS(713), + [anon_sym_STAR] = ACTIONS(715), + [anon_sym_struct] = ACTIONS(717), [anon_sym_mut] = ACTIONS(41), - [anon_sym_QMARK] = ACTIONS(515), - [anon_sym_BANG] = ACTIONS(1711), - [anon_sym_go] = ACTIONS(1713), - [anon_sym_spawn] = ACTIONS(1715), - [anon_sym_json_DOTdecode] = ACTIONS(1717), - [anon_sym_LBRACK2] = ACTIONS(1719), - [anon_sym_TILDE] = ACTIONS(1705), - [anon_sym_CARET] = ACTIONS(1705), - [anon_sym_AMP] = ACTIONS(1721), - [anon_sym_LT_DASH] = ACTIONS(1723), - [sym_none] = ACTIONS(1725), - [sym_true] = ACTIONS(1725), - [sym_false] = ACTIONS(1725), - [sym_nil] = ACTIONS(1725), - [anon_sym_if] = ACTIONS(1727), - [anon_sym_DOLLARif] = ACTIONS(1729), - [anon_sym_match] = ACTIONS(1731), - [anon_sym_select] = ACTIONS(1733), - [anon_sym_lock] = ACTIONS(1735), - [anon_sym_rlock] = ACTIONS(1735), - [anon_sym_unsafe] = ACTIONS(1737), - [anon_sym_sql] = ACTIONS(1739), - [sym_int_literal] = ACTIONS(1725), - [sym_float_literal] = ACTIONS(1725), - [sym_rune_literal] = ACTIONS(1725), - [sym_pseudo_compile_time_identifier] = ACTIONS(1741), + [anon_sym_QMARK] = ACTIONS(47), + [anon_sym_BANG] = ACTIONS(721), + [anon_sym_go] = ACTIONS(723), + [anon_sym_spawn] = ACTIONS(725), + [anon_sym_json_DOTdecode] = ACTIONS(727), + [anon_sym_LBRACK2] = ACTIONS(729), + [anon_sym_TILDE] = ACTIONS(713), + [anon_sym_CARET] = ACTIONS(713), + [anon_sym_AMP] = ACTIONS(731), + [anon_sym_LT_DASH] = ACTIONS(733), + [sym_none] = ACTIONS(735), + [sym_true] = ACTIONS(735), + [sym_false] = ACTIONS(735), + [sym_nil] = ACTIONS(735), + [anon_sym_if] = ACTIONS(737), + [anon_sym_DOLLARif] = ACTIONS(739), + [anon_sym_match] = ACTIONS(741), + [anon_sym_select] = ACTIONS(743), + [anon_sym_lock] = ACTIONS(745), + [anon_sym_rlock] = ACTIONS(745), + [anon_sym_unsafe] = ACTIONS(747), + [anon_sym_sql] = ACTIONS(749), + [sym_int_literal] = ACTIONS(735), + [sym_float_literal] = ACTIONS(751), + [sym_rune_literal] = ACTIONS(751), + [sym_pseudo_compile_time_identifier] = ACTIONS(753), [anon_sym_shared] = ACTIONS(83), - [anon_sym_map_LBRACK] = ACTIONS(549), + [anon_sym_map_LBRACK] = ACTIONS(85), [anon_sym_chan] = ACTIONS(87), [anon_sym_thread] = ACTIONS(89), [anon_sym_atomic] = ACTIONS(91), - [sym___double_quote] = ACTIONS(1743), - [sym___single_quote] = ACTIONS(1745), - [sym___c_double_quote] = ACTIONS(1747), - [sym___c_single_quote] = ACTIONS(1749), - [sym___r_double_quote] = ACTIONS(1751), - [sym___r_single_quote] = ACTIONS(1753), + [sym___double_quote] = ACTIONS(755), + [sym___single_quote] = ACTIONS(757), + [sym___c_double_quote] = ACTIONS(759), + [sym___c_single_quote] = ACTIONS(761), + [sym___r_double_quote] = ACTIONS(763), + [sym___r_single_quote] = ACTIONS(765), }, [215] = { [sym_line_comment] = STATE(215), [sym_block_comment] = STATE(215), - [sym__expression] = STATE(1757), - [sym__expression_without_blocks] = STATE(2044), - [sym__expression_with_blocks] = STATE(2044), - [sym_strictly_expression_list] = STATE(4156), - [sym_inc_expression] = STATE(2045), - [sym_dec_expression] = STATE(2045), - [sym_or_block_expression] = STATE(2045), - [sym_option_propagation_expression] = STATE(2045), - [sym_result_propagation_expression] = STATE(2045), - [sym_anon_struct_value_expression] = STATE(2046), - [sym_go_expression] = STATE(2045), - [sym_spawn_expression] = STATE(2045), - [sym_parenthesized_expression] = STATE(2045), - [sym_call_expression] = STATE(2045), - [sym_type_initializer] = STATE(2046), - [sym_function_literal] = STATE(2045), - [sym_reference_expression] = STATE(1912), - [sym_type_reference_expression] = STATE(3541), - [sym_unary_expression] = STATE(2045), - [sym_receive_expression] = STATE(2045), - [sym_binary_expression] = STATE(2045), - [sym_as_type_cast_expression] = STATE(2045), - [sym__max_group] = STATE(2045), - [sym_literal] = STATE(2043), - [sym_map_init_expression] = STATE(2046), - [sym_array_creation] = STATE(2045), - [sym_fixed_array_creation] = STATE(2045), - [sym_selector_expression] = STATE(2045), - [sym_index_expression] = STATE(2045), - [sym_slice_expression] = STATE(2045), - [sym_if_expression] = STATE(2046), - [sym_compile_time_if_expression] = STATE(2046), - [sym_is_expression] = STATE(2045), - [sym_in_expression] = STATE(2045), - [sym_enum_fetch] = STATE(2045), - [sym_match_expression] = STATE(2046), - [sym_select_expression] = STATE(2046), - [sym_lock_expression] = STATE(2046), - [sym_unsafe_expression] = STATE(2046), - [sym_sql_expression] = STATE(2046), - [sym_c_string_literal] = STATE(2041), - [sym_raw_string_literal] = STATE(2041), - [sym_interpreted_string_literal] = STATE(2041), - [sym_mutability_modifiers] = STATE(702), - [sym_mutable_expression] = STATE(3267), - [sym_expression_list] = STATE(3302), - [sym_plain_type] = STATE(4052), - [sym__plain_type_without_special] = STATE(2302), - [sym_anon_struct_type] = STATE(2303), - [sym_multi_return_type] = STATE(2302), - [sym_result_type] = STATE(2302), - [sym_option_type] = STATE(2302), - [sym_qualified_type] = STATE(3541), - [sym_fixed_array_type] = STATE(2303), - [sym_array_type] = STATE(2303), - [sym_pointer_type] = STATE(2303), - [sym_wrong_pointer_type] = STATE(2303), - [sym_map_type] = STATE(2303), - [sym_channel_type] = STATE(2303), - [sym_shared_type] = STATE(2303), - [sym_thread_type] = STATE(2303), - [sym_atomic_type] = STATE(2303), - [sym_generic_type] = STATE(2303), - [sym_function_type] = STATE(2303), - [sym_simple_statement] = STATE(4584), - [sym_var_declaration] = STATE(4156), - [sym_assignment_statement] = STATE(4156), - [sym_identifier] = ACTIONS(1641), - [anon_sym_SLASH_SLASH] = ACTIONS(3), - [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(811), - [anon_sym_LBRACE] = ACTIONS(1755), - [anon_sym_LPAREN] = ACTIONS(815), - [anon_sym_fn] = ACTIONS(817), - [anon_sym_PLUS] = ACTIONS(819), - [anon_sym_DASH] = ACTIONS(819), - [anon_sym_STAR] = ACTIONS(821), - [anon_sym_struct] = ACTIONS(823), + [sym__expression] = STATE(2282), + [sym__expression_without_blocks] = STATE(2468), + [sym__expression_with_blocks] = STATE(2468), + [sym_inc_expression] = STATE(2469), + [sym_dec_expression] = STATE(2469), + [sym_or_block_expression] = STATE(2469), + [sym_option_propagation_expression] = STATE(2469), + [sym_result_propagation_expression] = STATE(2469), + [sym_anon_struct_value_expression] = STATE(2470), + [sym_go_expression] = STATE(2469), + [sym_spawn_expression] = STATE(2469), + [sym_parenthesized_expression] = STATE(2469), + [sym_call_expression] = STATE(2469), + [sym_type_initializer] = STATE(2470), + [sym_function_literal] = STATE(2469), + [sym_reference_expression] = STATE(2487), + [sym_type_reference_expression] = STATE(3460), + [sym_unary_expression] = STATE(2469), + [sym_receive_expression] = STATE(2469), + [sym_binary_expression] = STATE(2469), + [sym_as_type_cast_expression] = STATE(2469), + [sym__max_group] = STATE(2469), + [sym_literal] = STATE(2465), + [sym_map_init_expression] = STATE(2470), + [sym_array_creation] = STATE(2469), + [sym_fixed_array_creation] = STATE(2469), + [sym_selector_expression] = STATE(2469), + [sym_index_expression] = STATE(2469), + [sym_slice_expression] = STATE(2469), + [sym_if_expression] = STATE(2470), + [sym_compile_time_if_expression] = STATE(2470), + [sym_is_expression] = STATE(2469), + [sym_in_expression] = STATE(2469), + [sym_enum_fetch] = STATE(2469), + [sym_match_expression] = STATE(2470), + [sym_select_expression] = STATE(2470), + [sym_lock_expression] = STATE(2470), + [sym_unsafe_expression] = STATE(2470), + [sym_sql_expression] = STATE(2470), + [sym_c_string_literal] = STATE(2464), + [sym_raw_string_literal] = STATE(2464), + [sym_interpreted_string_literal] = STATE(2464), + [sym_mutability_modifiers] = STATE(805), + [sym_mutable_expression] = STATE(3438), + [sym_expression_list] = STATE(3694), + [sym_plain_type] = STATE(4038), + [sym__plain_type_without_special] = STATE(2360), + [sym_anon_struct_type] = STATE(2362), + [sym_multi_return_type] = STATE(2360), + [sym_result_type] = STATE(2360), + [sym_option_type] = STATE(2360), + [sym_qualified_type] = STATE(3460), + [sym_fixed_array_type] = STATE(2362), + [sym_array_type] = STATE(2362), + [sym_pointer_type] = STATE(2362), + [sym_wrong_pointer_type] = STATE(2362), + [sym_map_type] = STATE(2362), + [sym_channel_type] = STATE(2362), + [sym_shared_type] = STATE(2362), + [sym_thread_type] = STATE(2362), + [sym_atomic_type] = STATE(2362), + [sym_generic_type] = STATE(2362), + [sym_function_type] = STATE(2362), + [sym_identifier] = ACTIONS(1691), + [anon_sym_LF] = ACTIONS(495), + [anon_sym_CR] = ACTIONS(495), + [anon_sym_CR_LF] = ACTIONS(495), + [anon_sym_SLASH_SLASH] = ACTIONS(497), + [anon_sym_SLASH_STAR] = ACTIONS(499), + [anon_sym_DOT] = ACTIONS(1693), + [anon_sym_LBRACE] = ACTIONS(1695), + [anon_sym_RBRACE] = ACTIONS(495), + [anon_sym_LPAREN] = ACTIONS(1697), + [anon_sym_fn] = ACTIONS(1699), + [anon_sym_PLUS] = ACTIONS(1701), + [anon_sym_DASH] = ACTIONS(1701), + [anon_sym_STAR] = ACTIONS(1703), + [anon_sym_struct] = ACTIONS(1705), [anon_sym_mut] = ACTIONS(41), - [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(827), - [anon_sym_go] = ACTIONS(829), - [anon_sym_spawn] = ACTIONS(831), - [anon_sym_json_DOTdecode] = ACTIONS(833), - [anon_sym_LBRACK2] = ACTIONS(835), - [anon_sym_TILDE] = ACTIONS(819), - [anon_sym_CARET] = ACTIONS(819), - [anon_sym_AMP] = ACTIONS(837), - [anon_sym_LT_DASH] = ACTIONS(839), - [sym_none] = ACTIONS(841), - [sym_true] = ACTIONS(841), - [sym_false] = ACTIONS(841), - [sym_nil] = ACTIONS(841), - [anon_sym_if] = ACTIONS(843), - [anon_sym_DOLLARif] = ACTIONS(845), - [anon_sym_match] = ACTIONS(847), - [anon_sym_select] = ACTIONS(849), - [anon_sym_lock] = ACTIONS(851), - [anon_sym_rlock] = ACTIONS(851), - [anon_sym_unsafe] = ACTIONS(853), - [anon_sym_sql] = ACTIONS(855), - [sym_int_literal] = ACTIONS(841), - [sym_float_literal] = ACTIONS(857), - [sym_rune_literal] = ACTIONS(857), - [sym_pseudo_compile_time_identifier] = ACTIONS(859), + [anon_sym_QMARK] = ACTIONS(515), + [anon_sym_BANG] = ACTIONS(1707), + [anon_sym_go] = ACTIONS(1709), + [anon_sym_spawn] = ACTIONS(1711), + [anon_sym_json_DOTdecode] = ACTIONS(1713), + [anon_sym_LBRACK2] = ACTIONS(1715), + [anon_sym_TILDE] = ACTIONS(1701), + [anon_sym_CARET] = ACTIONS(1701), + [anon_sym_AMP] = ACTIONS(1717), + [anon_sym_LT_DASH] = ACTIONS(1719), + [sym_none] = ACTIONS(1721), + [sym_true] = ACTIONS(1721), + [sym_false] = ACTIONS(1721), + [sym_nil] = ACTIONS(1721), + [anon_sym_if] = ACTIONS(1723), + [anon_sym_DOLLARif] = ACTIONS(1725), + [anon_sym_match] = ACTIONS(1727), + [anon_sym_select] = ACTIONS(1729), + [anon_sym_lock] = ACTIONS(1731), + [anon_sym_rlock] = ACTIONS(1731), + [anon_sym_unsafe] = ACTIONS(1733), + [anon_sym_sql] = ACTIONS(1735), + [sym_int_literal] = ACTIONS(1721), + [sym_float_literal] = ACTIONS(1721), + [sym_rune_literal] = ACTIONS(1721), + [sym_pseudo_compile_time_identifier] = ACTIONS(1737), [anon_sym_shared] = ACTIONS(83), - [anon_sym_map_LBRACK] = ACTIONS(85), + [anon_sym_map_LBRACK] = ACTIONS(549), [anon_sym_chan] = ACTIONS(87), [anon_sym_thread] = ACTIONS(89), [anon_sym_atomic] = ACTIONS(91), - [sym___double_quote] = ACTIONS(861), - [sym___single_quote] = ACTIONS(863), - [sym___c_double_quote] = ACTIONS(865), - [sym___c_single_quote] = ACTIONS(867), - [sym___r_double_quote] = ACTIONS(869), - [sym___r_single_quote] = ACTIONS(871), + [sym___double_quote] = ACTIONS(1739), + [sym___single_quote] = ACTIONS(1741), + [sym___c_double_quote] = ACTIONS(1743), + [sym___c_single_quote] = ACTIONS(1745), + [sym___r_double_quote] = ACTIONS(1747), + [sym___r_single_quote] = ACTIONS(1749), }, [216] = { [sym_line_comment] = STATE(216), [sym_block_comment] = STATE(216), - [sym_type_parameters] = STATE(4280), - [sym_argument_list] = STATE(401), - [sym_or_block] = STATE(400), - [aux_sym_strictly_expression_list_repeat1] = STATE(1411), - [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_type_parameters] = STATE(4275), + [sym_argument_list] = STATE(360), + [sym_or_block] = STATE(356), + [aux_sym_strictly_expression_list_repeat1] = STATE(3270), + [ts_builtin_sym_end] = ACTIONS(1751), + [sym_identifier] = ACTIONS(1753), + [anon_sym_LF] = ACTIONS(1753), + [anon_sym_CR] = ACTIONS(1753), + [anon_sym_CR_LF] = ACTIONS(1753), [anon_sym_SLASH_SLASH] = ACTIONS(497), [anon_sym_SLASH_STAR] = ACTIONS(499), - [anon_sym_DOT] = ACTIONS(1653), - [anon_sym_as] = ACTIONS(1655), - [anon_sym_LBRACE] = ACTIONS(1759), - [anon_sym_COMMA] = ACTIONS(1761), - [anon_sym_const] = ACTIONS(1759), - [anon_sym_LPAREN] = ACTIONS(1659), - [anon_sym_EQ] = ACTIONS(1761), - [anon_sym___global] = ACTIONS(1759), - [anon_sym_type] = ACTIONS(1759), - [anon_sym_PIPE] = ACTIONS(1663), - [anon_sym_fn] = ACTIONS(1759), - [anon_sym_PLUS] = ACTIONS(1663), - [anon_sym_DASH] = ACTIONS(1663), - [anon_sym_STAR] = ACTIONS(1665), - [anon_sym_SLASH] = ACTIONS(1665), - [anon_sym_PERCENT] = ACTIONS(1665), - [anon_sym_LT] = ACTIONS(1667), - [anon_sym_GT] = ACTIONS(1667), - [anon_sym_EQ_EQ] = ACTIONS(1667), - [anon_sym_BANG_EQ] = ACTIONS(1667), - [anon_sym_LT_EQ] = ACTIONS(1667), - [anon_sym_GT_EQ] = ACTIONS(1667), - [anon_sym_LBRACK] = ACTIONS(1669), - [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(1671), - [anon_sym_DASH_DASH] = ACTIONS(1673), - [anon_sym_QMARK] = ACTIONS(1675), - [anon_sym_BANG] = ACTIONS(1677), - [anon_sym_go] = ACTIONS(1759), - [anon_sym_spawn] = ACTIONS(1759), - [anon_sym_json_DOTdecode] = ACTIONS(1759), - [anon_sym_LBRACK2] = ACTIONS(1679), - [anon_sym_TILDE] = ACTIONS(1759), - [anon_sym_CARET] = ACTIONS(1663), - [anon_sym_AMP] = ACTIONS(1665), + [anon_sym_DOT] = ACTIONS(1645), + [anon_sym_as] = ACTIONS(1647), + [anon_sym_LBRACE] = ACTIONS(1753), + [anon_sym_COMMA] = ACTIONS(1755), + [anon_sym_const] = ACTIONS(1753), + [anon_sym_LPAREN] = ACTIONS(1651), + [anon_sym_EQ] = ACTIONS(1757), + [anon_sym___global] = ACTIONS(1753), + [anon_sym_type] = ACTIONS(1753), + [anon_sym_PIPE] = ACTIONS(1653), + [anon_sym_fn] = ACTIONS(1753), + [anon_sym_PLUS] = ACTIONS(1653), + [anon_sym_DASH] = ACTIONS(1653), + [anon_sym_STAR] = ACTIONS(1655), + [anon_sym_SLASH] = ACTIONS(1655), + [anon_sym_PERCENT] = ACTIONS(1655), + [anon_sym_LT] = ACTIONS(1657), + [anon_sym_GT] = ACTIONS(1657), + [anon_sym_EQ_EQ] = ACTIONS(1657), + [anon_sym_BANG_EQ] = ACTIONS(1657), + [anon_sym_LT_EQ] = ACTIONS(1657), + [anon_sym_GT_EQ] = ACTIONS(1657), + [anon_sym_LBRACK] = ACTIONS(1659), + [anon_sym_struct] = ACTIONS(1753), + [anon_sym_union] = ACTIONS(1753), + [anon_sym_pub] = ACTIONS(1753), + [anon_sym_mut] = ACTIONS(1753), + [anon_sym_enum] = ACTIONS(1753), + [anon_sym_interface] = ACTIONS(1753), + [anon_sym_PLUS_PLUS] = ACTIONS(1661), + [anon_sym_DASH_DASH] = ACTIONS(1663), + [anon_sym_QMARK] = ACTIONS(1665), + [anon_sym_BANG] = ACTIONS(1667), + [anon_sym_go] = ACTIONS(1753), + [anon_sym_spawn] = ACTIONS(1753), + [anon_sym_json_DOTdecode] = ACTIONS(1753), + [anon_sym_LBRACK2] = ACTIONS(1669), + [anon_sym_TILDE] = ACTIONS(1753), + [anon_sym_CARET] = ACTIONS(1653), + [anon_sym_AMP] = ACTIONS(1655), [anon_sym_LT_DASH] = ACTIONS(1759), - [anon_sym_LT_LT] = ACTIONS(1665), - [anon_sym_GT_GT] = ACTIONS(1665), - [anon_sym_GT_GT_GT] = ACTIONS(1665), - [anon_sym_AMP_CARET] = ACTIONS(1665), - [anon_sym_AMP_AMP] = ACTIONS(1685), - [anon_sym_PIPE_PIPE] = ACTIONS(1687), - [anon_sym_or] = ACTIONS(1689), - [sym_none] = ACTIONS(1759), - [sym_true] = ACTIONS(1759), - [sym_false] = ACTIONS(1759), - [sym_nil] = ACTIONS(1759), - [anon_sym_QMARK_DOT] = ACTIONS(1653), - [anon_sym_POUND_LBRACK] = ACTIONS(1679), - [anon_sym_if] = ACTIONS(1759), - [anon_sym_DOLLARif] = ACTIONS(1759), - [anon_sym_is] = ACTIONS(1691), - [anon_sym_BANGis] = ACTIONS(1691), - [anon_sym_in] = ACTIONS(1693), - [anon_sym_BANGin] = ACTIONS(1693), - [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), + [anon_sym_LT_LT] = ACTIONS(1761), + [anon_sym_GT_GT] = ACTIONS(1655), + [anon_sym_GT_GT_GT] = ACTIONS(1655), + [anon_sym_AMP_CARET] = ACTIONS(1655), + [anon_sym_AMP_AMP] = ACTIONS(1671), + [anon_sym_PIPE_PIPE] = ACTIONS(1673), + [anon_sym_or] = ACTIONS(1675), + [sym_none] = ACTIONS(1753), + [sym_true] = ACTIONS(1753), + [sym_false] = ACTIONS(1753), + [sym_nil] = ACTIONS(1753), + [anon_sym_QMARK_DOT] = ACTIONS(1645), + [anon_sym_POUND_LBRACK] = ACTIONS(1669), + [anon_sym_if] = ACTIONS(1753), + [anon_sym_DOLLARif] = ACTIONS(1753), + [anon_sym_is] = ACTIONS(1677), + [anon_sym_BANGis] = ACTIONS(1677), + [anon_sym_in] = ACTIONS(1679), + [anon_sym_BANGin] = ACTIONS(1679), + [anon_sym_match] = ACTIONS(1753), + [anon_sym_select] = ACTIONS(1753), + [anon_sym_STAR_EQ] = ACTIONS(1757), + [anon_sym_SLASH_EQ] = ACTIONS(1757), + [anon_sym_PERCENT_EQ] = ACTIONS(1757), + [anon_sym_LT_LT_EQ] = ACTIONS(1757), + [anon_sym_GT_GT_EQ] = ACTIONS(1757), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(1757), + [anon_sym_AMP_EQ] = ACTIONS(1757), + [anon_sym_AMP_CARET_EQ] = ACTIONS(1757), + [anon_sym_PLUS_EQ] = ACTIONS(1757), + [anon_sym_DASH_EQ] = ACTIONS(1757), + [anon_sym_PIPE_EQ] = ACTIONS(1757), + [anon_sym_CARET_EQ] = ACTIONS(1757), + [anon_sym_COLON_EQ] = ACTIONS(1757), + [anon_sym_lock] = ACTIONS(1753), + [anon_sym_rlock] = ACTIONS(1753), + [anon_sym_unsafe] = ACTIONS(1753), + [anon_sym_sql] = ACTIONS(1753), + [sym_int_literal] = ACTIONS(1753), + [sym_float_literal] = ACTIONS(1753), + [sym_rune_literal] = ACTIONS(1753), + [sym_pseudo_compile_time_identifier] = ACTIONS(1753), + [anon_sym_shared] = ACTIONS(1753), + [anon_sym_map_LBRACK] = ACTIONS(1753), + [anon_sym_chan] = ACTIONS(1753), + [anon_sym_thread] = ACTIONS(1753), + [anon_sym_atomic] = ACTIONS(1753), + [anon_sym_assert] = ACTIONS(1753), + [anon_sym_defer] = ACTIONS(1753), + [anon_sym_goto] = ACTIONS(1753), + [anon_sym_break] = ACTIONS(1753), + [anon_sym_continue] = ACTIONS(1753), + [anon_sym_return] = ACTIONS(1753), + [anon_sym_DOLLARfor] = ACTIONS(1753), + [anon_sym_for] = ACTIONS(1753), + [anon_sym_POUND] = ACTIONS(1753), + [anon_sym_asm] = ACTIONS(1753), + [anon_sym_AT_LBRACK] = ACTIONS(1753), + [sym___double_quote] = ACTIONS(1753), + [sym___single_quote] = ACTIONS(1753), + [sym___c_double_quote] = ACTIONS(1753), + [sym___c_single_quote] = ACTIONS(1753), + [sym___r_double_quote] = ACTIONS(1753), + [sym___r_single_quote] = ACTIONS(1753), }, [217] = { [sym_line_comment] = STATE(217), [sym_block_comment] = STATE(217), - [sym_type_parameters] = STATE(4280), - [sym_argument_list] = STATE(401), - [sym_or_block] = STATE(400), + [sym_type_parameters] = STATE(4275), + [sym_argument_list] = STATE(360), + [sym_or_block] = STATE(356), [ts_builtin_sym_end] = ACTIONS(1763), [sym_identifier] = ACTIONS(1765), [anon_sym_LF] = ACTIONS(1765), @@ -47867,12 +47885,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_CR_LF] = ACTIONS(1765), [anon_sym_SLASH_SLASH] = ACTIONS(497), [anon_sym_SLASH_STAR] = ACTIONS(499), - [anon_sym_DOT] = ACTIONS(1653), + [anon_sym_DOT] = ACTIONS(1645), [anon_sym_as] = ACTIONS(1765), [anon_sym_LBRACE] = ACTIONS(1765), [anon_sym_COMMA] = ACTIONS(1765), [anon_sym_const] = ACTIONS(1765), - [anon_sym_LPAREN] = ACTIONS(1659), + [anon_sym_LPAREN] = ACTIONS(1651), [anon_sym_EQ] = ACTIONS(1765), [anon_sym___global] = ACTIONS(1765), [anon_sym_type] = ACTIONS(1765), @@ -47880,16 +47898,16 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_fn] = ACTIONS(1765), [anon_sym_PLUS] = ACTIONS(1765), [anon_sym_DASH] = ACTIONS(1765), - [anon_sym_STAR] = ACTIONS(1765), - [anon_sym_SLASH] = ACTIONS(1765), - [anon_sym_PERCENT] = ACTIONS(1765), + [anon_sym_STAR] = ACTIONS(1655), + [anon_sym_SLASH] = ACTIONS(1655), + [anon_sym_PERCENT] = ACTIONS(1655), [anon_sym_LT] = ACTIONS(1765), [anon_sym_GT] = ACTIONS(1765), [anon_sym_EQ_EQ] = ACTIONS(1765), [anon_sym_BANG_EQ] = ACTIONS(1765), [anon_sym_LT_EQ] = ACTIONS(1765), [anon_sym_GT_EQ] = ACTIONS(1765), - [anon_sym_LBRACK] = ACTIONS(1669), + [anon_sym_LBRACK] = ACTIONS(1659), [anon_sym_struct] = ACTIONS(1765), [anon_sym_union] = ACTIONS(1765), [anon_sym_pub] = ACTIONS(1765), @@ -47898,20 +47916,20 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_interface] = ACTIONS(1765), [anon_sym_PLUS_PLUS] = ACTIONS(1765), [anon_sym_DASH_DASH] = ACTIONS(1765), - [anon_sym_QMARK] = ACTIONS(1675), - [anon_sym_BANG] = ACTIONS(1677), + [anon_sym_QMARK] = ACTIONS(1665), + [anon_sym_BANG] = ACTIONS(1667), [anon_sym_go] = ACTIONS(1765), [anon_sym_spawn] = ACTIONS(1765), [anon_sym_json_DOTdecode] = ACTIONS(1765), - [anon_sym_LBRACK2] = ACTIONS(1679), + [anon_sym_LBRACK2] = ACTIONS(1669), [anon_sym_TILDE] = ACTIONS(1765), [anon_sym_CARET] = ACTIONS(1765), - [anon_sym_AMP] = ACTIONS(1765), + [anon_sym_AMP] = ACTIONS(1655), [anon_sym_LT_DASH] = ACTIONS(1765), - [anon_sym_LT_LT] = ACTIONS(1765), - [anon_sym_GT_GT] = ACTIONS(1765), - [anon_sym_GT_GT_GT] = ACTIONS(1765), - [anon_sym_AMP_CARET] = ACTIONS(1765), + [anon_sym_LT_LT] = ACTIONS(1655), + [anon_sym_GT_GT] = ACTIONS(1655), + [anon_sym_GT_GT_GT] = ACTIONS(1655), + [anon_sym_AMP_CARET] = ACTIONS(1655), [anon_sym_AMP_AMP] = ACTIONS(1765), [anon_sym_PIPE_PIPE] = ACTIONS(1765), [anon_sym_or] = ACTIONS(1765), @@ -47919,8 +47937,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_true] = ACTIONS(1765), [sym_false] = ACTIONS(1765), [sym_nil] = ACTIONS(1765), - [anon_sym_QMARK_DOT] = ACTIONS(1653), - [anon_sym_POUND_LBRACK] = ACTIONS(1679), + [anon_sym_QMARK_DOT] = ACTIONS(1645), + [anon_sym_POUND_LBRACK] = ACTIONS(1669), [anon_sym_if] = ACTIONS(1765), [anon_sym_DOLLARif] = ACTIONS(1765), [anon_sym_is] = ACTIONS(1765), @@ -47976,9 +47994,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [218] = { [sym_line_comment] = STATE(218), [sym_block_comment] = STATE(218), - [sym_type_parameters] = STATE(4280), - [sym_argument_list] = STATE(401), - [sym_or_block] = STATE(400), + [sym_type_parameters] = STATE(4275), + [sym_argument_list] = STATE(360), + [sym_or_block] = STATE(356), [ts_builtin_sym_end] = ACTIONS(1767), [sym_identifier] = ACTIONS(1769), [anon_sym_LF] = ACTIONS(1769), @@ -47986,29 +48004,29 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_CR_LF] = ACTIONS(1769), [anon_sym_SLASH_SLASH] = ACTIONS(497), [anon_sym_SLASH_STAR] = ACTIONS(499), - [anon_sym_DOT] = ACTIONS(1653), + [anon_sym_DOT] = ACTIONS(1645), [anon_sym_as] = ACTIONS(1769), [anon_sym_LBRACE] = ACTIONS(1769), [anon_sym_COMMA] = ACTIONS(1769), [anon_sym_const] = ACTIONS(1769), - [anon_sym_LPAREN] = ACTIONS(1659), + [anon_sym_LPAREN] = ACTIONS(1651), [anon_sym_EQ] = ACTIONS(1769), [anon_sym___global] = ACTIONS(1769), [anon_sym_type] = ACTIONS(1769), - [anon_sym_PIPE] = ACTIONS(1663), + [anon_sym_PIPE] = ACTIONS(1769), [anon_sym_fn] = ACTIONS(1769), - [anon_sym_PLUS] = ACTIONS(1663), - [anon_sym_DASH] = ACTIONS(1663), - [anon_sym_STAR] = ACTIONS(1665), - [anon_sym_SLASH] = ACTIONS(1665), - [anon_sym_PERCENT] = ACTIONS(1665), + [anon_sym_PLUS] = ACTIONS(1769), + [anon_sym_DASH] = ACTIONS(1769), + [anon_sym_STAR] = ACTIONS(1769), + [anon_sym_SLASH] = ACTIONS(1769), + [anon_sym_PERCENT] = ACTIONS(1769), [anon_sym_LT] = ACTIONS(1769), [anon_sym_GT] = ACTIONS(1769), [anon_sym_EQ_EQ] = ACTIONS(1769), [anon_sym_BANG_EQ] = ACTIONS(1769), [anon_sym_LT_EQ] = ACTIONS(1769), [anon_sym_GT_EQ] = ACTIONS(1769), - [anon_sym_LBRACK] = ACTIONS(1669), + [anon_sym_LBRACK] = ACTIONS(1659), [anon_sym_struct] = ACTIONS(1769), [anon_sym_union] = ACTIONS(1769), [anon_sym_pub] = ACTIONS(1769), @@ -48017,20 +48035,20 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_interface] = ACTIONS(1769), [anon_sym_PLUS_PLUS] = ACTIONS(1769), [anon_sym_DASH_DASH] = ACTIONS(1769), - [anon_sym_QMARK] = ACTIONS(1675), - [anon_sym_BANG] = ACTIONS(1677), + [anon_sym_QMARK] = ACTIONS(1665), + [anon_sym_BANG] = ACTIONS(1667), [anon_sym_go] = ACTIONS(1769), [anon_sym_spawn] = ACTIONS(1769), [anon_sym_json_DOTdecode] = ACTIONS(1769), - [anon_sym_LBRACK2] = ACTIONS(1679), + [anon_sym_LBRACK2] = ACTIONS(1669), [anon_sym_TILDE] = ACTIONS(1769), - [anon_sym_CARET] = ACTIONS(1663), - [anon_sym_AMP] = ACTIONS(1665), + [anon_sym_CARET] = ACTIONS(1769), + [anon_sym_AMP] = ACTIONS(1769), [anon_sym_LT_DASH] = ACTIONS(1769), - [anon_sym_LT_LT] = ACTIONS(1665), - [anon_sym_GT_GT] = ACTIONS(1665), - [anon_sym_GT_GT_GT] = ACTIONS(1665), - [anon_sym_AMP_CARET] = ACTIONS(1665), + [anon_sym_LT_LT] = ACTIONS(1769), + [anon_sym_GT_GT] = ACTIONS(1769), + [anon_sym_GT_GT_GT] = ACTIONS(1769), + [anon_sym_AMP_CARET] = ACTIONS(1769), [anon_sym_AMP_AMP] = ACTIONS(1769), [anon_sym_PIPE_PIPE] = ACTIONS(1769), [anon_sym_or] = ACTIONS(1769), @@ -48038,8 +48056,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_true] = ACTIONS(1769), [sym_false] = ACTIONS(1769), [sym_nil] = ACTIONS(1769), - [anon_sym_QMARK_DOT] = ACTIONS(1653), - [anon_sym_POUND_LBRACK] = ACTIONS(1679), + [anon_sym_QMARK_DOT] = ACTIONS(1645), + [anon_sym_POUND_LBRACK] = ACTIONS(1669), [anon_sym_if] = ACTIONS(1769), [anon_sym_DOLLARif] = ACTIONS(1769), [anon_sym_is] = ACTIONS(1769), @@ -48095,9 +48113,247 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [219] = { [sym_line_comment] = STATE(219), [sym_block_comment] = STATE(219), - [sym_type_parameters] = STATE(4280), - [sym_argument_list] = STATE(401), - [sym_or_block] = STATE(400), + [sym_type_parameters] = STATE(4275), + [sym_argument_list] = STATE(360), + [sym_or_block] = STATE(356), + [ts_builtin_sym_end] = ACTIONS(1763), + [sym_identifier] = ACTIONS(1765), + [anon_sym_LF] = ACTIONS(1765), + [anon_sym_CR] = ACTIONS(1765), + [anon_sym_CR_LF] = ACTIONS(1765), + [anon_sym_SLASH_SLASH] = ACTIONS(497), + [anon_sym_SLASH_STAR] = ACTIONS(499), + [anon_sym_DOT] = ACTIONS(1645), + [anon_sym_as] = ACTIONS(1765), + [anon_sym_LBRACE] = ACTIONS(1765), + [anon_sym_COMMA] = ACTIONS(1765), + [anon_sym_const] = ACTIONS(1765), + [anon_sym_LPAREN] = ACTIONS(1651), + [anon_sym_EQ] = ACTIONS(1765), + [anon_sym___global] = ACTIONS(1765), + [anon_sym_type] = ACTIONS(1765), + [anon_sym_PIPE] = ACTIONS(1653), + [anon_sym_fn] = ACTIONS(1765), + [anon_sym_PLUS] = ACTIONS(1653), + [anon_sym_DASH] = ACTIONS(1653), + [anon_sym_STAR] = ACTIONS(1655), + [anon_sym_SLASH] = ACTIONS(1655), + [anon_sym_PERCENT] = ACTIONS(1655), + [anon_sym_LT] = ACTIONS(1765), + [anon_sym_GT] = ACTIONS(1765), + [anon_sym_EQ_EQ] = ACTIONS(1765), + [anon_sym_BANG_EQ] = ACTIONS(1765), + [anon_sym_LT_EQ] = ACTIONS(1765), + [anon_sym_GT_EQ] = ACTIONS(1765), + [anon_sym_LBRACK] = ACTIONS(1659), + [anon_sym_struct] = ACTIONS(1765), + [anon_sym_union] = ACTIONS(1765), + [anon_sym_pub] = ACTIONS(1765), + [anon_sym_mut] = ACTIONS(1765), + [anon_sym_enum] = ACTIONS(1765), + [anon_sym_interface] = ACTIONS(1765), + [anon_sym_PLUS_PLUS] = ACTIONS(1765), + [anon_sym_DASH_DASH] = ACTIONS(1765), + [anon_sym_QMARK] = ACTIONS(1665), + [anon_sym_BANG] = ACTIONS(1667), + [anon_sym_go] = ACTIONS(1765), + [anon_sym_spawn] = ACTIONS(1765), + [anon_sym_json_DOTdecode] = ACTIONS(1765), + [anon_sym_LBRACK2] = ACTIONS(1669), + [anon_sym_TILDE] = ACTIONS(1765), + [anon_sym_CARET] = ACTIONS(1653), + [anon_sym_AMP] = ACTIONS(1655), + [anon_sym_LT_DASH] = ACTIONS(1765), + [anon_sym_LT_LT] = ACTIONS(1655), + [anon_sym_GT_GT] = ACTIONS(1655), + [anon_sym_GT_GT_GT] = ACTIONS(1655), + [anon_sym_AMP_CARET] = ACTIONS(1655), + [anon_sym_AMP_AMP] = ACTIONS(1765), + [anon_sym_PIPE_PIPE] = ACTIONS(1765), + [anon_sym_or] = ACTIONS(1765), + [sym_none] = ACTIONS(1765), + [sym_true] = ACTIONS(1765), + [sym_false] = ACTIONS(1765), + [sym_nil] = ACTIONS(1765), + [anon_sym_QMARK_DOT] = ACTIONS(1645), + [anon_sym_POUND_LBRACK] = ACTIONS(1669), + [anon_sym_if] = ACTIONS(1765), + [anon_sym_DOLLARif] = ACTIONS(1765), + [anon_sym_is] = ACTIONS(1765), + [anon_sym_BANGis] = ACTIONS(1765), + [anon_sym_in] = ACTIONS(1765), + [anon_sym_BANGin] = ACTIONS(1765), + [anon_sym_match] = ACTIONS(1765), + [anon_sym_select] = ACTIONS(1765), + [anon_sym_STAR_EQ] = ACTIONS(1765), + [anon_sym_SLASH_EQ] = ACTIONS(1765), + [anon_sym_PERCENT_EQ] = ACTIONS(1765), + [anon_sym_LT_LT_EQ] = ACTIONS(1765), + [anon_sym_GT_GT_EQ] = ACTIONS(1765), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(1765), + [anon_sym_AMP_EQ] = ACTIONS(1765), + [anon_sym_AMP_CARET_EQ] = ACTIONS(1765), + [anon_sym_PLUS_EQ] = ACTIONS(1765), + [anon_sym_DASH_EQ] = ACTIONS(1765), + [anon_sym_PIPE_EQ] = ACTIONS(1765), + [anon_sym_CARET_EQ] = ACTIONS(1765), + [anon_sym_COLON_EQ] = ACTIONS(1765), + [anon_sym_lock] = ACTIONS(1765), + [anon_sym_rlock] = ACTIONS(1765), + [anon_sym_unsafe] = ACTIONS(1765), + [anon_sym_sql] = ACTIONS(1765), + [sym_int_literal] = ACTIONS(1765), + [sym_float_literal] = ACTIONS(1765), + [sym_rune_literal] = ACTIONS(1765), + [sym_pseudo_compile_time_identifier] = ACTIONS(1765), + [anon_sym_shared] = ACTIONS(1765), + [anon_sym_map_LBRACK] = ACTIONS(1765), + [anon_sym_chan] = ACTIONS(1765), + [anon_sym_thread] = ACTIONS(1765), + [anon_sym_atomic] = ACTIONS(1765), + [anon_sym_assert] = ACTIONS(1765), + [anon_sym_defer] = ACTIONS(1765), + [anon_sym_goto] = ACTIONS(1765), + [anon_sym_break] = ACTIONS(1765), + [anon_sym_continue] = ACTIONS(1765), + [anon_sym_return] = ACTIONS(1765), + [anon_sym_DOLLARfor] = ACTIONS(1765), + [anon_sym_for] = ACTIONS(1765), + [anon_sym_POUND] = ACTIONS(1765), + [anon_sym_asm] = ACTIONS(1765), + [anon_sym_AT_LBRACK] = ACTIONS(1765), + [sym___double_quote] = ACTIONS(1765), + [sym___single_quote] = ACTIONS(1765), + [sym___c_double_quote] = ACTIONS(1765), + [sym___c_single_quote] = ACTIONS(1765), + [sym___r_double_quote] = ACTIONS(1765), + [sym___r_single_quote] = ACTIONS(1765), + }, + [220] = { + [sym_line_comment] = STATE(220), + [sym_block_comment] = STATE(220), + [sym_type_parameters] = STATE(4275), + [sym_argument_list] = STATE(360), + [sym_or_block] = STATE(356), + [ts_builtin_sym_end] = ACTIONS(1763), + [sym_identifier] = ACTIONS(1765), + [anon_sym_LF] = ACTIONS(1765), + [anon_sym_CR] = ACTIONS(1765), + [anon_sym_CR_LF] = ACTIONS(1765), + [anon_sym_SLASH_SLASH] = ACTIONS(497), + [anon_sym_SLASH_STAR] = ACTIONS(499), + [anon_sym_DOT] = ACTIONS(1645), + [anon_sym_as] = ACTIONS(1765), + [anon_sym_LBRACE] = ACTIONS(1765), + [anon_sym_COMMA] = ACTIONS(1765), + [anon_sym_const] = ACTIONS(1765), + [anon_sym_LPAREN] = ACTIONS(1651), + [anon_sym_EQ] = ACTIONS(1765), + [anon_sym___global] = ACTIONS(1765), + [anon_sym_type] = ACTIONS(1765), + [anon_sym_PIPE] = ACTIONS(1765), + [anon_sym_fn] = ACTIONS(1765), + [anon_sym_PLUS] = ACTIONS(1765), + [anon_sym_DASH] = ACTIONS(1765), + [anon_sym_STAR] = ACTIONS(1765), + [anon_sym_SLASH] = ACTIONS(1765), + [anon_sym_PERCENT] = ACTIONS(1765), + [anon_sym_LT] = ACTIONS(1765), + [anon_sym_GT] = ACTIONS(1765), + [anon_sym_EQ_EQ] = ACTIONS(1765), + [anon_sym_BANG_EQ] = ACTIONS(1765), + [anon_sym_LT_EQ] = ACTIONS(1765), + [anon_sym_GT_EQ] = ACTIONS(1765), + [anon_sym_LBRACK] = ACTIONS(1659), + [anon_sym_struct] = ACTIONS(1765), + [anon_sym_union] = ACTIONS(1765), + [anon_sym_pub] = ACTIONS(1765), + [anon_sym_mut] = ACTIONS(1765), + [anon_sym_enum] = ACTIONS(1765), + [anon_sym_interface] = ACTIONS(1765), + [anon_sym_PLUS_PLUS] = ACTIONS(1765), + [anon_sym_DASH_DASH] = ACTIONS(1765), + [anon_sym_QMARK] = ACTIONS(1665), + [anon_sym_BANG] = ACTIONS(1667), + [anon_sym_go] = ACTIONS(1765), + [anon_sym_spawn] = ACTIONS(1765), + [anon_sym_json_DOTdecode] = ACTIONS(1765), + [anon_sym_LBRACK2] = ACTIONS(1669), + [anon_sym_TILDE] = ACTIONS(1765), + [anon_sym_CARET] = ACTIONS(1765), + [anon_sym_AMP] = ACTIONS(1765), + [anon_sym_LT_DASH] = ACTIONS(1765), + [anon_sym_LT_LT] = ACTIONS(1765), + [anon_sym_GT_GT] = ACTIONS(1765), + [anon_sym_GT_GT_GT] = ACTIONS(1765), + [anon_sym_AMP_CARET] = ACTIONS(1765), + [anon_sym_AMP_AMP] = ACTIONS(1765), + [anon_sym_PIPE_PIPE] = ACTIONS(1765), + [anon_sym_or] = ACTIONS(1765), + [sym_none] = ACTIONS(1765), + [sym_true] = ACTIONS(1765), + [sym_false] = ACTIONS(1765), + [sym_nil] = ACTIONS(1765), + [anon_sym_QMARK_DOT] = ACTIONS(1645), + [anon_sym_POUND_LBRACK] = ACTIONS(1669), + [anon_sym_if] = ACTIONS(1765), + [anon_sym_DOLLARif] = ACTIONS(1765), + [anon_sym_is] = ACTIONS(1765), + [anon_sym_BANGis] = ACTIONS(1765), + [anon_sym_in] = ACTIONS(1765), + [anon_sym_BANGin] = ACTIONS(1765), + [anon_sym_match] = ACTIONS(1765), + [anon_sym_select] = ACTIONS(1765), + [anon_sym_STAR_EQ] = ACTIONS(1765), + [anon_sym_SLASH_EQ] = ACTIONS(1765), + [anon_sym_PERCENT_EQ] = ACTIONS(1765), + [anon_sym_LT_LT_EQ] = ACTIONS(1765), + [anon_sym_GT_GT_EQ] = ACTIONS(1765), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(1765), + [anon_sym_AMP_EQ] = ACTIONS(1765), + [anon_sym_AMP_CARET_EQ] = ACTIONS(1765), + [anon_sym_PLUS_EQ] = ACTIONS(1765), + [anon_sym_DASH_EQ] = ACTIONS(1765), + [anon_sym_PIPE_EQ] = ACTIONS(1765), + [anon_sym_CARET_EQ] = ACTIONS(1765), + [anon_sym_COLON_EQ] = ACTIONS(1765), + [anon_sym_lock] = ACTIONS(1765), + [anon_sym_rlock] = ACTIONS(1765), + [anon_sym_unsafe] = ACTIONS(1765), + [anon_sym_sql] = ACTIONS(1765), + [sym_int_literal] = ACTIONS(1765), + [sym_float_literal] = ACTIONS(1765), + [sym_rune_literal] = ACTIONS(1765), + [sym_pseudo_compile_time_identifier] = ACTIONS(1765), + [anon_sym_shared] = ACTIONS(1765), + [anon_sym_map_LBRACK] = ACTIONS(1765), + [anon_sym_chan] = ACTIONS(1765), + [anon_sym_thread] = ACTIONS(1765), + [anon_sym_atomic] = ACTIONS(1765), + [anon_sym_assert] = ACTIONS(1765), + [anon_sym_defer] = ACTIONS(1765), + [anon_sym_goto] = ACTIONS(1765), + [anon_sym_break] = ACTIONS(1765), + [anon_sym_continue] = ACTIONS(1765), + [anon_sym_return] = ACTIONS(1765), + [anon_sym_DOLLARfor] = ACTIONS(1765), + [anon_sym_for] = ACTIONS(1765), + [anon_sym_POUND] = ACTIONS(1765), + [anon_sym_asm] = ACTIONS(1765), + [anon_sym_AT_LBRACK] = ACTIONS(1765), + [sym___double_quote] = ACTIONS(1765), + [sym___single_quote] = ACTIONS(1765), + [sym___c_double_quote] = ACTIONS(1765), + [sym___c_single_quote] = ACTIONS(1765), + [sym___r_double_quote] = ACTIONS(1765), + [sym___r_single_quote] = ACTIONS(1765), + }, + [221] = { + [sym_line_comment] = STATE(221), + [sym_block_comment] = STATE(221), + [sym_type_parameters] = STATE(4275), + [sym_argument_list] = STATE(360), + [sym_or_block] = STATE(356), [ts_builtin_sym_end] = ACTIONS(1771), [sym_identifier] = ACTIONS(1773), [anon_sym_LF] = ACTIONS(1773), @@ -48105,66 +48361,66 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_CR_LF] = ACTIONS(1773), [anon_sym_SLASH_SLASH] = ACTIONS(497), [anon_sym_SLASH_STAR] = ACTIONS(499), - [anon_sym_DOT] = ACTIONS(1653), - [anon_sym_as] = ACTIONS(1655), + [anon_sym_DOT] = ACTIONS(1645), + [anon_sym_as] = ACTIONS(1647), [anon_sym_LBRACE] = ACTIONS(1773), [anon_sym_COMMA] = ACTIONS(1773), [anon_sym_const] = ACTIONS(1773), - [anon_sym_LPAREN] = ACTIONS(1659), + [anon_sym_LPAREN] = ACTIONS(1651), [anon_sym_EQ] = ACTIONS(1773), [anon_sym___global] = ACTIONS(1773), [anon_sym_type] = ACTIONS(1773), - [anon_sym_PIPE] = ACTIONS(1663), + [anon_sym_PIPE] = ACTIONS(1653), [anon_sym_fn] = ACTIONS(1773), - [anon_sym_PLUS] = ACTIONS(1663), - [anon_sym_DASH] = ACTIONS(1663), - [anon_sym_STAR] = ACTIONS(1665), - [anon_sym_SLASH] = ACTIONS(1665), - [anon_sym_PERCENT] = ACTIONS(1665), - [anon_sym_LT] = ACTIONS(1667), - [anon_sym_GT] = ACTIONS(1667), - [anon_sym_EQ_EQ] = ACTIONS(1667), - [anon_sym_BANG_EQ] = ACTIONS(1667), - [anon_sym_LT_EQ] = ACTIONS(1667), - [anon_sym_GT_EQ] = ACTIONS(1667), - [anon_sym_LBRACK] = ACTIONS(1669), + [anon_sym_PLUS] = ACTIONS(1653), + [anon_sym_DASH] = ACTIONS(1653), + [anon_sym_STAR] = ACTIONS(1655), + [anon_sym_SLASH] = ACTIONS(1655), + [anon_sym_PERCENT] = ACTIONS(1655), + [anon_sym_LT] = ACTIONS(1657), + [anon_sym_GT] = ACTIONS(1657), + [anon_sym_EQ_EQ] = ACTIONS(1657), + [anon_sym_BANG_EQ] = ACTIONS(1657), + [anon_sym_LT_EQ] = ACTIONS(1657), + [anon_sym_GT_EQ] = ACTIONS(1657), + [anon_sym_LBRACK] = ACTIONS(1659), [anon_sym_struct] = ACTIONS(1773), [anon_sym_union] = ACTIONS(1773), [anon_sym_pub] = ACTIONS(1773), [anon_sym_mut] = ACTIONS(1773), [anon_sym_enum] = ACTIONS(1773), [anon_sym_interface] = ACTIONS(1773), - [anon_sym_PLUS_PLUS] = ACTIONS(1671), - [anon_sym_DASH_DASH] = ACTIONS(1673), - [anon_sym_QMARK] = ACTIONS(1675), - [anon_sym_BANG] = ACTIONS(1677), + [anon_sym_PLUS_PLUS] = ACTIONS(1661), + [anon_sym_DASH_DASH] = ACTIONS(1663), + [anon_sym_QMARK] = ACTIONS(1665), + [anon_sym_BANG] = ACTIONS(1667), [anon_sym_go] = ACTIONS(1773), [anon_sym_spawn] = ACTIONS(1773), [anon_sym_json_DOTdecode] = ACTIONS(1773), - [anon_sym_LBRACK2] = ACTIONS(1679), + [anon_sym_LBRACK2] = ACTIONS(1669), [anon_sym_TILDE] = ACTIONS(1773), - [anon_sym_CARET] = ACTIONS(1663), - [anon_sym_AMP] = ACTIONS(1665), + [anon_sym_CARET] = ACTIONS(1653), + [anon_sym_AMP] = ACTIONS(1655), [anon_sym_LT_DASH] = ACTIONS(1773), - [anon_sym_LT_LT] = ACTIONS(1665), - [anon_sym_GT_GT] = ACTIONS(1665), - [anon_sym_GT_GT_GT] = ACTIONS(1665), - [anon_sym_AMP_CARET] = ACTIONS(1665), - [anon_sym_AMP_AMP] = ACTIONS(1685), - [anon_sym_PIPE_PIPE] = ACTIONS(1687), - [anon_sym_or] = ACTIONS(1689), + [anon_sym_LT_LT] = ACTIONS(1655), + [anon_sym_GT_GT] = ACTIONS(1655), + [anon_sym_GT_GT_GT] = ACTIONS(1655), + [anon_sym_AMP_CARET] = ACTIONS(1655), + [anon_sym_AMP_AMP] = ACTIONS(1671), + [anon_sym_PIPE_PIPE] = ACTIONS(1673), + [anon_sym_or] = ACTIONS(1675), [sym_none] = ACTIONS(1773), [sym_true] = ACTIONS(1773), [sym_false] = ACTIONS(1773), [sym_nil] = ACTIONS(1773), - [anon_sym_QMARK_DOT] = ACTIONS(1653), - [anon_sym_POUND_LBRACK] = ACTIONS(1679), + [anon_sym_QMARK_DOT] = ACTIONS(1645), + [anon_sym_POUND_LBRACK] = ACTIONS(1669), [anon_sym_if] = ACTIONS(1773), [anon_sym_DOLLARif] = ACTIONS(1773), - [anon_sym_is] = ACTIONS(1691), - [anon_sym_BANGis] = ACTIONS(1691), - [anon_sym_in] = ACTIONS(1693), - [anon_sym_BANGin] = ACTIONS(1693), + [anon_sym_is] = ACTIONS(1677), + [anon_sym_BANGis] = ACTIONS(1677), + [anon_sym_in] = ACTIONS(1679), + [anon_sym_BANGin] = ACTIONS(1679), [anon_sym_match] = ACTIONS(1773), [anon_sym_select] = ACTIONS(1773), [anon_sym_STAR_EQ] = ACTIONS(1773), @@ -48211,12 +48467,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym___r_double_quote] = ACTIONS(1773), [sym___r_single_quote] = ACTIONS(1773), }, - [220] = { - [sym_line_comment] = STATE(220), - [sym_block_comment] = STATE(220), - [sym_type_parameters] = STATE(4280), - [sym_argument_list] = STATE(401), - [sym_or_block] = STATE(400), + [222] = { + [sym_line_comment] = STATE(222), + [sym_block_comment] = STATE(222), + [sym_type_parameters] = STATE(4275), + [sym_argument_list] = STATE(360), + [sym_or_block] = STATE(356), [ts_builtin_sym_end] = ACTIONS(1775), [sym_identifier] = ACTIONS(1777), [anon_sym_LF] = ACTIONS(1777), @@ -48224,81 +48480,81 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_CR_LF] = ACTIONS(1777), [anon_sym_SLASH_SLASH] = ACTIONS(497), [anon_sym_SLASH_STAR] = ACTIONS(499), - [anon_sym_DOT] = ACTIONS(1653), - [anon_sym_as] = ACTIONS(1777), + [anon_sym_DOT] = ACTIONS(1645), + [anon_sym_as] = ACTIONS(1765), [anon_sym_LBRACE] = ACTIONS(1777), - [anon_sym_COMMA] = ACTIONS(1777), + [anon_sym_COMMA] = ACTIONS(1765), [anon_sym_const] = ACTIONS(1777), - [anon_sym_LPAREN] = ACTIONS(1659), - [anon_sym_EQ] = ACTIONS(1777), + [anon_sym_LPAREN] = ACTIONS(1651), + [anon_sym_EQ] = ACTIONS(1765), [anon_sym___global] = ACTIONS(1777), [anon_sym_type] = ACTIONS(1777), - [anon_sym_PIPE] = ACTIONS(1777), + [anon_sym_PIPE] = ACTIONS(1765), [anon_sym_fn] = ACTIONS(1777), [anon_sym_PLUS] = ACTIONS(1777), [anon_sym_DASH] = ACTIONS(1777), [anon_sym_STAR] = ACTIONS(1777), - [anon_sym_SLASH] = ACTIONS(1777), - [anon_sym_PERCENT] = ACTIONS(1777), - [anon_sym_LT] = ACTIONS(1777), - [anon_sym_GT] = ACTIONS(1777), - [anon_sym_EQ_EQ] = ACTIONS(1777), - [anon_sym_BANG_EQ] = ACTIONS(1777), - [anon_sym_LT_EQ] = ACTIONS(1777), - [anon_sym_GT_EQ] = ACTIONS(1777), - [anon_sym_LBRACK] = ACTIONS(1669), + [anon_sym_SLASH] = ACTIONS(1765), + [anon_sym_PERCENT] = ACTIONS(1765), + [anon_sym_LT] = ACTIONS(1765), + [anon_sym_GT] = ACTIONS(1765), + [anon_sym_EQ_EQ] = ACTIONS(1765), + [anon_sym_BANG_EQ] = ACTIONS(1765), + [anon_sym_LT_EQ] = ACTIONS(1765), + [anon_sym_GT_EQ] = ACTIONS(1765), + [anon_sym_LBRACK] = ACTIONS(1659), [anon_sym_struct] = ACTIONS(1777), [anon_sym_union] = ACTIONS(1777), [anon_sym_pub] = ACTIONS(1777), [anon_sym_mut] = ACTIONS(1777), [anon_sym_enum] = ACTIONS(1777), [anon_sym_interface] = ACTIONS(1777), - [anon_sym_PLUS_PLUS] = ACTIONS(1777), - [anon_sym_DASH_DASH] = ACTIONS(1777), - [anon_sym_QMARK] = ACTIONS(1675), - [anon_sym_BANG] = ACTIONS(1677), + [anon_sym_PLUS_PLUS] = ACTIONS(1765), + [anon_sym_DASH_DASH] = ACTIONS(1765), + [anon_sym_QMARK] = ACTIONS(1665), + [anon_sym_BANG] = ACTIONS(1667), [anon_sym_go] = ACTIONS(1777), [anon_sym_spawn] = ACTIONS(1777), [anon_sym_json_DOTdecode] = ACTIONS(1777), - [anon_sym_LBRACK2] = ACTIONS(1679), + [anon_sym_LBRACK2] = ACTIONS(1669), [anon_sym_TILDE] = ACTIONS(1777), [anon_sym_CARET] = ACTIONS(1777), [anon_sym_AMP] = ACTIONS(1777), [anon_sym_LT_DASH] = ACTIONS(1777), - [anon_sym_LT_LT] = ACTIONS(1777), - [anon_sym_GT_GT] = ACTIONS(1777), - [anon_sym_GT_GT_GT] = ACTIONS(1777), - [anon_sym_AMP_CARET] = ACTIONS(1777), - [anon_sym_AMP_AMP] = ACTIONS(1777), - [anon_sym_PIPE_PIPE] = ACTIONS(1777), - [anon_sym_or] = ACTIONS(1777), + [anon_sym_LT_LT] = ACTIONS(1765), + [anon_sym_GT_GT] = ACTIONS(1765), + [anon_sym_GT_GT_GT] = ACTIONS(1765), + [anon_sym_AMP_CARET] = ACTIONS(1765), + [anon_sym_AMP_AMP] = ACTIONS(1765), + [anon_sym_PIPE_PIPE] = ACTIONS(1765), + [anon_sym_or] = ACTIONS(1765), [sym_none] = ACTIONS(1777), [sym_true] = ACTIONS(1777), [sym_false] = ACTIONS(1777), [sym_nil] = ACTIONS(1777), - [anon_sym_QMARK_DOT] = ACTIONS(1653), - [anon_sym_POUND_LBRACK] = ACTIONS(1679), + [anon_sym_QMARK_DOT] = ACTIONS(1645), + [anon_sym_POUND_LBRACK] = ACTIONS(1669), [anon_sym_if] = ACTIONS(1777), [anon_sym_DOLLARif] = ACTIONS(1777), - [anon_sym_is] = ACTIONS(1777), - [anon_sym_BANGis] = ACTIONS(1777), - [anon_sym_in] = ACTIONS(1777), - [anon_sym_BANGin] = ACTIONS(1777), + [anon_sym_is] = ACTIONS(1765), + [anon_sym_BANGis] = ACTIONS(1765), + [anon_sym_in] = ACTIONS(1765), + [anon_sym_BANGin] = ACTIONS(1765), [anon_sym_match] = ACTIONS(1777), [anon_sym_select] = ACTIONS(1777), - [anon_sym_STAR_EQ] = ACTIONS(1777), - [anon_sym_SLASH_EQ] = ACTIONS(1777), - [anon_sym_PERCENT_EQ] = ACTIONS(1777), - [anon_sym_LT_LT_EQ] = ACTIONS(1777), - [anon_sym_GT_GT_EQ] = ACTIONS(1777), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(1777), - [anon_sym_AMP_EQ] = ACTIONS(1777), - [anon_sym_AMP_CARET_EQ] = ACTIONS(1777), - [anon_sym_PLUS_EQ] = ACTIONS(1777), - [anon_sym_DASH_EQ] = ACTIONS(1777), - [anon_sym_PIPE_EQ] = ACTIONS(1777), - [anon_sym_CARET_EQ] = ACTIONS(1777), - [anon_sym_COLON_EQ] = ACTIONS(1777), + [anon_sym_STAR_EQ] = ACTIONS(1765), + [anon_sym_SLASH_EQ] = ACTIONS(1765), + [anon_sym_PERCENT_EQ] = ACTIONS(1765), + [anon_sym_LT_LT_EQ] = ACTIONS(1765), + [anon_sym_GT_GT_EQ] = ACTIONS(1765), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(1765), + [anon_sym_AMP_EQ] = ACTIONS(1765), + [anon_sym_AMP_CARET_EQ] = ACTIONS(1765), + [anon_sym_PLUS_EQ] = ACTIONS(1765), + [anon_sym_DASH_EQ] = ACTIONS(1765), + [anon_sym_PIPE_EQ] = ACTIONS(1765), + [anon_sym_CARET_EQ] = ACTIONS(1765), + [anon_sym_COLON_EQ] = ACTIONS(1765), [anon_sym_lock] = ACTIONS(1777), [anon_sym_rlock] = ACTIONS(1777), [anon_sym_unsafe] = ACTIONS(1777), @@ -48330,106 +48586,344 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym___r_double_quote] = ACTIONS(1777), [sym___r_single_quote] = ACTIONS(1777), }, - [221] = { - [sym_line_comment] = STATE(221), - [sym_block_comment] = STATE(221), - [sym_type_parameters] = STATE(4280), - [sym_argument_list] = STATE(401), - [sym_or_block] = STATE(400), - [ts_builtin_sym_end] = ACTIONS(1779), - [sym_identifier] = ACTIONS(1781), - [anon_sym_LF] = ACTIONS(1781), - [anon_sym_CR] = ACTIONS(1781), - [anon_sym_CR_LF] = ACTIONS(1781), + [223] = { + [sym_line_comment] = STATE(223), + [sym_block_comment] = STATE(223), + [sym_type_parameters] = STATE(4275), + [sym_argument_list] = STATE(360), + [sym_or_block] = STATE(356), + [ts_builtin_sym_end] = ACTIONS(1763), + [sym_identifier] = ACTIONS(1765), + [anon_sym_LF] = ACTIONS(1765), + [anon_sym_CR] = ACTIONS(1765), + [anon_sym_CR_LF] = ACTIONS(1765), [anon_sym_SLASH_SLASH] = ACTIONS(497), [anon_sym_SLASH_STAR] = ACTIONS(499), - [anon_sym_DOT] = ACTIONS(1653), - [anon_sym_as] = ACTIONS(1655), - [anon_sym_LBRACE] = ACTIONS(1781), - [anon_sym_COMMA] = ACTIONS(1781), - [anon_sym_const] = ACTIONS(1781), - [anon_sym_LPAREN] = ACTIONS(1659), - [anon_sym_EQ] = ACTIONS(1781), - [anon_sym___global] = ACTIONS(1781), - [anon_sym_type] = ACTIONS(1781), - [anon_sym_PIPE] = ACTIONS(1663), - [anon_sym_fn] = ACTIONS(1781), - [anon_sym_PLUS] = ACTIONS(1663), - [anon_sym_DASH] = ACTIONS(1663), - [anon_sym_STAR] = ACTIONS(1665), - [anon_sym_SLASH] = ACTIONS(1665), - [anon_sym_PERCENT] = ACTIONS(1665), - [anon_sym_LT] = ACTIONS(1667), - [anon_sym_GT] = ACTIONS(1667), - [anon_sym_EQ_EQ] = ACTIONS(1667), - [anon_sym_BANG_EQ] = ACTIONS(1667), - [anon_sym_LT_EQ] = ACTIONS(1667), - [anon_sym_GT_EQ] = ACTIONS(1667), - [anon_sym_LBRACK] = ACTIONS(1669), - [anon_sym_struct] = ACTIONS(1781), - [anon_sym_union] = ACTIONS(1781), - [anon_sym_pub] = ACTIONS(1781), - [anon_sym_mut] = ACTIONS(1781), - [anon_sym_enum] = ACTIONS(1781), - [anon_sym_interface] = ACTIONS(1781), - [anon_sym_PLUS_PLUS] = ACTIONS(1671), - [anon_sym_DASH_DASH] = ACTIONS(1673), - [anon_sym_QMARK] = ACTIONS(1675), - [anon_sym_BANG] = ACTIONS(1677), - [anon_sym_go] = ACTIONS(1781), - [anon_sym_spawn] = ACTIONS(1781), - [anon_sym_json_DOTdecode] = ACTIONS(1781), - [anon_sym_LBRACK2] = ACTIONS(1679), - [anon_sym_TILDE] = ACTIONS(1781), - [anon_sym_CARET] = ACTIONS(1663), - [anon_sym_AMP] = ACTIONS(1665), - [anon_sym_LT_DASH] = ACTIONS(1781), - [anon_sym_LT_LT] = ACTIONS(1665), - [anon_sym_GT_GT] = ACTIONS(1665), - [anon_sym_GT_GT_GT] = ACTIONS(1665), - [anon_sym_AMP_CARET] = ACTIONS(1665), - [anon_sym_AMP_AMP] = ACTIONS(1685), - [anon_sym_PIPE_PIPE] = ACTIONS(1687), - [anon_sym_or] = ACTIONS(1689), - [sym_none] = ACTIONS(1781), - [sym_true] = ACTIONS(1781), - [sym_false] = ACTIONS(1781), - [sym_nil] = ACTIONS(1781), - [anon_sym_QMARK_DOT] = ACTIONS(1653), - [anon_sym_POUND_LBRACK] = ACTIONS(1679), - [anon_sym_if] = ACTIONS(1781), - [anon_sym_DOLLARif] = ACTIONS(1781), - [anon_sym_is] = ACTIONS(1691), - [anon_sym_BANGis] = ACTIONS(1691), - [anon_sym_in] = ACTIONS(1693), - [anon_sym_BANGin] = ACTIONS(1693), - [anon_sym_match] = ACTIONS(1781), - [anon_sym_select] = ACTIONS(1781), - [anon_sym_STAR_EQ] = ACTIONS(1781), - [anon_sym_SLASH_EQ] = ACTIONS(1781), - [anon_sym_PERCENT_EQ] = ACTIONS(1781), - [anon_sym_LT_LT_EQ] = ACTIONS(1781), - [anon_sym_GT_GT_EQ] = ACTIONS(1781), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(1781), - [anon_sym_AMP_EQ] = ACTIONS(1781), - [anon_sym_AMP_CARET_EQ] = ACTIONS(1781), - [anon_sym_PLUS_EQ] = ACTIONS(1781), - [anon_sym_DASH_EQ] = ACTIONS(1781), - [anon_sym_PIPE_EQ] = ACTIONS(1781), - [anon_sym_CARET_EQ] = ACTIONS(1781), - [anon_sym_COLON_EQ] = ACTIONS(1781), - [anon_sym_lock] = ACTIONS(1781), - [anon_sym_rlock] = ACTIONS(1781), - [anon_sym_unsafe] = ACTIONS(1781), - [anon_sym_sql] = ACTIONS(1781), - [sym_int_literal] = ACTIONS(1781), - [sym_float_literal] = ACTIONS(1781), - [sym_rune_literal] = ACTIONS(1781), - [sym_pseudo_compile_time_identifier] = ACTIONS(1781), - [anon_sym_shared] = ACTIONS(1781), - [anon_sym_map_LBRACK] = ACTIONS(1781), - [anon_sym_chan] = ACTIONS(1781), - [anon_sym_thread] = ACTIONS(1781), + [anon_sym_DOT] = ACTIONS(1645), + [anon_sym_as] = ACTIONS(1765), + [anon_sym_LBRACE] = ACTIONS(1765), + [anon_sym_COMMA] = ACTIONS(1765), + [anon_sym_const] = ACTIONS(1765), + [anon_sym_LPAREN] = ACTIONS(1651), + [anon_sym_EQ] = ACTIONS(1765), + [anon_sym___global] = ACTIONS(1765), + [anon_sym_type] = ACTIONS(1765), + [anon_sym_PIPE] = ACTIONS(1653), + [anon_sym_fn] = ACTIONS(1765), + [anon_sym_PLUS] = ACTIONS(1653), + [anon_sym_DASH] = ACTIONS(1653), + [anon_sym_STAR] = ACTIONS(1655), + [anon_sym_SLASH] = ACTIONS(1655), + [anon_sym_PERCENT] = ACTIONS(1655), + [anon_sym_LT] = ACTIONS(1657), + [anon_sym_GT] = ACTIONS(1657), + [anon_sym_EQ_EQ] = ACTIONS(1657), + [anon_sym_BANG_EQ] = ACTIONS(1657), + [anon_sym_LT_EQ] = ACTIONS(1657), + [anon_sym_GT_EQ] = ACTIONS(1657), + [anon_sym_LBRACK] = ACTIONS(1659), + [anon_sym_struct] = ACTIONS(1765), + [anon_sym_union] = ACTIONS(1765), + [anon_sym_pub] = ACTIONS(1765), + [anon_sym_mut] = ACTIONS(1765), + [anon_sym_enum] = ACTIONS(1765), + [anon_sym_interface] = ACTIONS(1765), + [anon_sym_PLUS_PLUS] = ACTIONS(1765), + [anon_sym_DASH_DASH] = ACTIONS(1765), + [anon_sym_QMARK] = ACTIONS(1665), + [anon_sym_BANG] = ACTIONS(1667), + [anon_sym_go] = ACTIONS(1765), + [anon_sym_spawn] = ACTIONS(1765), + [anon_sym_json_DOTdecode] = ACTIONS(1765), + [anon_sym_LBRACK2] = ACTIONS(1669), + [anon_sym_TILDE] = ACTIONS(1765), + [anon_sym_CARET] = ACTIONS(1653), + [anon_sym_AMP] = ACTIONS(1655), + [anon_sym_LT_DASH] = ACTIONS(1765), + [anon_sym_LT_LT] = ACTIONS(1655), + [anon_sym_GT_GT] = ACTIONS(1655), + [anon_sym_GT_GT_GT] = ACTIONS(1655), + [anon_sym_AMP_CARET] = ACTIONS(1655), + [anon_sym_AMP_AMP] = ACTIONS(1765), + [anon_sym_PIPE_PIPE] = ACTIONS(1765), + [anon_sym_or] = ACTIONS(1765), + [sym_none] = ACTIONS(1765), + [sym_true] = ACTIONS(1765), + [sym_false] = ACTIONS(1765), + [sym_nil] = ACTIONS(1765), + [anon_sym_QMARK_DOT] = ACTIONS(1645), + [anon_sym_POUND_LBRACK] = ACTIONS(1669), + [anon_sym_if] = ACTIONS(1765), + [anon_sym_DOLLARif] = ACTIONS(1765), + [anon_sym_is] = ACTIONS(1765), + [anon_sym_BANGis] = ACTIONS(1765), + [anon_sym_in] = ACTIONS(1679), + [anon_sym_BANGin] = ACTIONS(1679), + [anon_sym_match] = ACTIONS(1765), + [anon_sym_select] = ACTIONS(1765), + [anon_sym_STAR_EQ] = ACTIONS(1765), + [anon_sym_SLASH_EQ] = ACTIONS(1765), + [anon_sym_PERCENT_EQ] = ACTIONS(1765), + [anon_sym_LT_LT_EQ] = ACTIONS(1765), + [anon_sym_GT_GT_EQ] = ACTIONS(1765), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(1765), + [anon_sym_AMP_EQ] = ACTIONS(1765), + [anon_sym_AMP_CARET_EQ] = ACTIONS(1765), + [anon_sym_PLUS_EQ] = ACTIONS(1765), + [anon_sym_DASH_EQ] = ACTIONS(1765), + [anon_sym_PIPE_EQ] = ACTIONS(1765), + [anon_sym_CARET_EQ] = ACTIONS(1765), + [anon_sym_COLON_EQ] = ACTIONS(1765), + [anon_sym_lock] = ACTIONS(1765), + [anon_sym_rlock] = ACTIONS(1765), + [anon_sym_unsafe] = ACTIONS(1765), + [anon_sym_sql] = ACTIONS(1765), + [sym_int_literal] = ACTIONS(1765), + [sym_float_literal] = ACTIONS(1765), + [sym_rune_literal] = ACTIONS(1765), + [sym_pseudo_compile_time_identifier] = ACTIONS(1765), + [anon_sym_shared] = ACTIONS(1765), + [anon_sym_map_LBRACK] = ACTIONS(1765), + [anon_sym_chan] = ACTIONS(1765), + [anon_sym_thread] = ACTIONS(1765), + [anon_sym_atomic] = ACTIONS(1765), + [anon_sym_assert] = ACTIONS(1765), + [anon_sym_defer] = ACTIONS(1765), + [anon_sym_goto] = ACTIONS(1765), + [anon_sym_break] = ACTIONS(1765), + [anon_sym_continue] = ACTIONS(1765), + [anon_sym_return] = ACTIONS(1765), + [anon_sym_DOLLARfor] = ACTIONS(1765), + [anon_sym_for] = ACTIONS(1765), + [anon_sym_POUND] = ACTIONS(1765), + [anon_sym_asm] = ACTIONS(1765), + [anon_sym_AT_LBRACK] = ACTIONS(1765), + [sym___double_quote] = ACTIONS(1765), + [sym___single_quote] = ACTIONS(1765), + [sym___c_double_quote] = ACTIONS(1765), + [sym___c_single_quote] = ACTIONS(1765), + [sym___r_double_quote] = ACTIONS(1765), + [sym___r_single_quote] = ACTIONS(1765), + }, + [224] = { + [sym_line_comment] = STATE(224), + [sym_block_comment] = STATE(224), + [sym_type_parameters] = STATE(4275), + [sym_argument_list] = STATE(360), + [sym_or_block] = STATE(356), + [ts_builtin_sym_end] = ACTIONS(1763), + [sym_identifier] = ACTIONS(1765), + [anon_sym_LF] = ACTIONS(1765), + [anon_sym_CR] = ACTIONS(1765), + [anon_sym_CR_LF] = ACTIONS(1765), + [anon_sym_SLASH_SLASH] = ACTIONS(497), + [anon_sym_SLASH_STAR] = ACTIONS(499), + [anon_sym_DOT] = ACTIONS(1645), + [anon_sym_as] = ACTIONS(1765), + [anon_sym_LBRACE] = ACTIONS(1765), + [anon_sym_COMMA] = ACTIONS(1765), + [anon_sym_const] = ACTIONS(1765), + [anon_sym_LPAREN] = ACTIONS(1651), + [anon_sym_EQ] = ACTIONS(1765), + [anon_sym___global] = ACTIONS(1765), + [anon_sym_type] = ACTIONS(1765), + [anon_sym_PIPE] = ACTIONS(1653), + [anon_sym_fn] = ACTIONS(1765), + [anon_sym_PLUS] = ACTIONS(1653), + [anon_sym_DASH] = ACTIONS(1653), + [anon_sym_STAR] = ACTIONS(1655), + [anon_sym_SLASH] = ACTIONS(1655), + [anon_sym_PERCENT] = ACTIONS(1655), + [anon_sym_LT] = ACTIONS(1657), + [anon_sym_GT] = ACTIONS(1657), + [anon_sym_EQ_EQ] = ACTIONS(1657), + [anon_sym_BANG_EQ] = ACTIONS(1657), + [anon_sym_LT_EQ] = ACTIONS(1657), + [anon_sym_GT_EQ] = ACTIONS(1657), + [anon_sym_LBRACK] = ACTIONS(1659), + [anon_sym_struct] = ACTIONS(1765), + [anon_sym_union] = ACTIONS(1765), + [anon_sym_pub] = ACTIONS(1765), + [anon_sym_mut] = ACTIONS(1765), + [anon_sym_enum] = ACTIONS(1765), + [anon_sym_interface] = ACTIONS(1765), + [anon_sym_PLUS_PLUS] = ACTIONS(1765), + [anon_sym_DASH_DASH] = ACTIONS(1765), + [anon_sym_QMARK] = ACTIONS(1665), + [anon_sym_BANG] = ACTIONS(1667), + [anon_sym_go] = ACTIONS(1765), + [anon_sym_spawn] = ACTIONS(1765), + [anon_sym_json_DOTdecode] = ACTIONS(1765), + [anon_sym_LBRACK2] = ACTIONS(1669), + [anon_sym_TILDE] = ACTIONS(1765), + [anon_sym_CARET] = ACTIONS(1653), + [anon_sym_AMP] = ACTIONS(1655), + [anon_sym_LT_DASH] = ACTIONS(1765), + [anon_sym_LT_LT] = ACTIONS(1655), + [anon_sym_GT_GT] = ACTIONS(1655), + [anon_sym_GT_GT_GT] = ACTIONS(1655), + [anon_sym_AMP_CARET] = ACTIONS(1655), + [anon_sym_AMP_AMP] = ACTIONS(1671), + [anon_sym_PIPE_PIPE] = ACTIONS(1765), + [anon_sym_or] = ACTIONS(1765), + [sym_none] = ACTIONS(1765), + [sym_true] = ACTIONS(1765), + [sym_false] = ACTIONS(1765), + [sym_nil] = ACTIONS(1765), + [anon_sym_QMARK_DOT] = ACTIONS(1645), + [anon_sym_POUND_LBRACK] = ACTIONS(1669), + [anon_sym_if] = ACTIONS(1765), + [anon_sym_DOLLARif] = ACTIONS(1765), + [anon_sym_is] = ACTIONS(1765), + [anon_sym_BANGis] = ACTIONS(1765), + [anon_sym_in] = ACTIONS(1679), + [anon_sym_BANGin] = ACTIONS(1679), + [anon_sym_match] = ACTIONS(1765), + [anon_sym_select] = ACTIONS(1765), + [anon_sym_STAR_EQ] = ACTIONS(1765), + [anon_sym_SLASH_EQ] = ACTIONS(1765), + [anon_sym_PERCENT_EQ] = ACTIONS(1765), + [anon_sym_LT_LT_EQ] = ACTIONS(1765), + [anon_sym_GT_GT_EQ] = ACTIONS(1765), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(1765), + [anon_sym_AMP_EQ] = ACTIONS(1765), + [anon_sym_AMP_CARET_EQ] = ACTIONS(1765), + [anon_sym_PLUS_EQ] = ACTIONS(1765), + [anon_sym_DASH_EQ] = ACTIONS(1765), + [anon_sym_PIPE_EQ] = ACTIONS(1765), + [anon_sym_CARET_EQ] = ACTIONS(1765), + [anon_sym_COLON_EQ] = ACTIONS(1765), + [anon_sym_lock] = ACTIONS(1765), + [anon_sym_rlock] = ACTIONS(1765), + [anon_sym_unsafe] = ACTIONS(1765), + [anon_sym_sql] = ACTIONS(1765), + [sym_int_literal] = ACTIONS(1765), + [sym_float_literal] = ACTIONS(1765), + [sym_rune_literal] = ACTIONS(1765), + [sym_pseudo_compile_time_identifier] = ACTIONS(1765), + [anon_sym_shared] = ACTIONS(1765), + [anon_sym_map_LBRACK] = ACTIONS(1765), + [anon_sym_chan] = ACTIONS(1765), + [anon_sym_thread] = ACTIONS(1765), + [anon_sym_atomic] = ACTIONS(1765), + [anon_sym_assert] = ACTIONS(1765), + [anon_sym_defer] = ACTIONS(1765), + [anon_sym_goto] = ACTIONS(1765), + [anon_sym_break] = ACTIONS(1765), + [anon_sym_continue] = ACTIONS(1765), + [anon_sym_return] = ACTIONS(1765), + [anon_sym_DOLLARfor] = ACTIONS(1765), + [anon_sym_for] = ACTIONS(1765), + [anon_sym_POUND] = ACTIONS(1765), + [anon_sym_asm] = ACTIONS(1765), + [anon_sym_AT_LBRACK] = ACTIONS(1765), + [sym___double_quote] = ACTIONS(1765), + [sym___single_quote] = ACTIONS(1765), + [sym___c_double_quote] = ACTIONS(1765), + [sym___c_single_quote] = ACTIONS(1765), + [sym___r_double_quote] = ACTIONS(1765), + [sym___r_single_quote] = ACTIONS(1765), + }, + [225] = { + [sym_line_comment] = STATE(225), + [sym_block_comment] = STATE(225), + [sym_type_parameters] = STATE(4275), + [sym_argument_list] = STATE(360), + [sym_or_block] = STATE(356), + [ts_builtin_sym_end] = ACTIONS(1779), + [sym_identifier] = ACTIONS(1781), + [anon_sym_LF] = ACTIONS(1781), + [anon_sym_CR] = ACTIONS(1781), + [anon_sym_CR_LF] = ACTIONS(1781), + [anon_sym_SLASH_SLASH] = ACTIONS(497), + [anon_sym_SLASH_STAR] = ACTIONS(499), + [anon_sym_DOT] = ACTIONS(1645), + [anon_sym_as] = ACTIONS(1781), + [anon_sym_LBRACE] = ACTIONS(1781), + [anon_sym_COMMA] = ACTIONS(1781), + [anon_sym_const] = ACTIONS(1781), + [anon_sym_LPAREN] = ACTIONS(1651), + [anon_sym_EQ] = ACTIONS(1781), + [anon_sym___global] = ACTIONS(1781), + [anon_sym_type] = ACTIONS(1781), + [anon_sym_PIPE] = ACTIONS(1653), + [anon_sym_fn] = ACTIONS(1781), + [anon_sym_PLUS] = ACTIONS(1653), + [anon_sym_DASH] = ACTIONS(1653), + [anon_sym_STAR] = ACTIONS(1655), + [anon_sym_SLASH] = ACTIONS(1655), + [anon_sym_PERCENT] = ACTIONS(1655), + [anon_sym_LT] = ACTIONS(1781), + [anon_sym_GT] = ACTIONS(1781), + [anon_sym_EQ_EQ] = ACTIONS(1781), + [anon_sym_BANG_EQ] = ACTIONS(1781), + [anon_sym_LT_EQ] = ACTIONS(1781), + [anon_sym_GT_EQ] = ACTIONS(1781), + [anon_sym_LBRACK] = ACTIONS(1659), + [anon_sym_struct] = ACTIONS(1781), + [anon_sym_union] = ACTIONS(1781), + [anon_sym_pub] = ACTIONS(1781), + [anon_sym_mut] = ACTIONS(1781), + [anon_sym_enum] = ACTIONS(1781), + [anon_sym_interface] = ACTIONS(1781), + [anon_sym_PLUS_PLUS] = ACTIONS(1781), + [anon_sym_DASH_DASH] = ACTIONS(1781), + [anon_sym_QMARK] = ACTIONS(1665), + [anon_sym_BANG] = ACTIONS(1667), + [anon_sym_go] = ACTIONS(1781), + [anon_sym_spawn] = ACTIONS(1781), + [anon_sym_json_DOTdecode] = ACTIONS(1781), + [anon_sym_LBRACK2] = ACTIONS(1669), + [anon_sym_TILDE] = ACTIONS(1781), + [anon_sym_CARET] = ACTIONS(1653), + [anon_sym_AMP] = ACTIONS(1655), + [anon_sym_LT_DASH] = ACTIONS(1781), + [anon_sym_LT_LT] = ACTIONS(1655), + [anon_sym_GT_GT] = ACTIONS(1655), + [anon_sym_GT_GT_GT] = ACTIONS(1655), + [anon_sym_AMP_CARET] = ACTIONS(1655), + [anon_sym_AMP_AMP] = ACTIONS(1781), + [anon_sym_PIPE_PIPE] = ACTIONS(1781), + [anon_sym_or] = ACTIONS(1781), + [sym_none] = ACTIONS(1781), + [sym_true] = ACTIONS(1781), + [sym_false] = ACTIONS(1781), + [sym_nil] = ACTIONS(1781), + [anon_sym_QMARK_DOT] = ACTIONS(1645), + [anon_sym_POUND_LBRACK] = ACTIONS(1669), + [anon_sym_if] = ACTIONS(1781), + [anon_sym_DOLLARif] = ACTIONS(1781), + [anon_sym_is] = ACTIONS(1781), + [anon_sym_BANGis] = ACTIONS(1781), + [anon_sym_in] = ACTIONS(1781), + [anon_sym_BANGin] = ACTIONS(1781), + [anon_sym_match] = ACTIONS(1781), + [anon_sym_select] = ACTIONS(1781), + [anon_sym_STAR_EQ] = ACTIONS(1781), + [anon_sym_SLASH_EQ] = ACTIONS(1781), + [anon_sym_PERCENT_EQ] = ACTIONS(1781), + [anon_sym_LT_LT_EQ] = ACTIONS(1781), + [anon_sym_GT_GT_EQ] = ACTIONS(1781), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(1781), + [anon_sym_AMP_EQ] = ACTIONS(1781), + [anon_sym_AMP_CARET_EQ] = ACTIONS(1781), + [anon_sym_PLUS_EQ] = ACTIONS(1781), + [anon_sym_DASH_EQ] = ACTIONS(1781), + [anon_sym_PIPE_EQ] = ACTIONS(1781), + [anon_sym_CARET_EQ] = ACTIONS(1781), + [anon_sym_COLON_EQ] = ACTIONS(1781), + [anon_sym_lock] = ACTIONS(1781), + [anon_sym_rlock] = ACTIONS(1781), + [anon_sym_unsafe] = ACTIONS(1781), + [anon_sym_sql] = ACTIONS(1781), + [sym_int_literal] = ACTIONS(1781), + [sym_float_literal] = ACTIONS(1781), + [sym_rune_literal] = ACTIONS(1781), + [sym_pseudo_compile_time_identifier] = ACTIONS(1781), + [anon_sym_shared] = ACTIONS(1781), + [anon_sym_map_LBRACK] = ACTIONS(1781), + [anon_sym_chan] = ACTIONS(1781), + [anon_sym_thread] = ACTIONS(1781), [anon_sym_atomic] = ACTIONS(1781), [anon_sym_assert] = ACTIONS(1781), [anon_sym_defer] = ACTIONS(1781), @@ -48449,12 +48943,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym___r_double_quote] = ACTIONS(1781), [sym___r_single_quote] = ACTIONS(1781), }, - [222] = { - [sym_line_comment] = STATE(222), - [sym_block_comment] = STATE(222), - [sym_type_parameters] = STATE(4280), - [sym_argument_list] = STATE(401), - [sym_or_block] = STATE(400), + [226] = { + [sym_line_comment] = STATE(226), + [sym_block_comment] = STATE(226), + [sym_type_parameters] = STATE(4275), + [sym_argument_list] = STATE(360), + [sym_or_block] = STATE(356), [ts_builtin_sym_end] = ACTIONS(1783), [sym_identifier] = ACTIONS(1785), [anon_sym_LF] = ACTIONS(1785), @@ -48462,29 +48956,29 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_CR_LF] = ACTIONS(1785), [anon_sym_SLASH_SLASH] = ACTIONS(497), [anon_sym_SLASH_STAR] = ACTIONS(499), - [anon_sym_DOT] = ACTIONS(1653), + [anon_sym_DOT] = ACTIONS(1645), [anon_sym_as] = ACTIONS(1785), [anon_sym_LBRACE] = ACTIONS(1785), [anon_sym_COMMA] = ACTIONS(1785), [anon_sym_const] = ACTIONS(1785), - [anon_sym_LPAREN] = ACTIONS(1659), + [anon_sym_LPAREN] = ACTIONS(1651), [anon_sym_EQ] = ACTIONS(1785), [anon_sym___global] = ACTIONS(1785), [anon_sym_type] = ACTIONS(1785), - [anon_sym_PIPE] = ACTIONS(1663), + [anon_sym_PIPE] = ACTIONS(1785), [anon_sym_fn] = ACTIONS(1785), - [anon_sym_PLUS] = ACTIONS(1663), - [anon_sym_DASH] = ACTIONS(1663), - [anon_sym_STAR] = ACTIONS(1665), - [anon_sym_SLASH] = ACTIONS(1665), - [anon_sym_PERCENT] = ACTIONS(1665), - [anon_sym_LT] = ACTIONS(1667), - [anon_sym_GT] = ACTIONS(1667), - [anon_sym_EQ_EQ] = ACTIONS(1667), - [anon_sym_BANG_EQ] = ACTIONS(1667), - [anon_sym_LT_EQ] = ACTIONS(1667), - [anon_sym_GT_EQ] = ACTIONS(1667), - [anon_sym_LBRACK] = ACTIONS(1669), + [anon_sym_PLUS] = ACTIONS(1785), + [anon_sym_DASH] = ACTIONS(1785), + [anon_sym_STAR] = ACTIONS(1785), + [anon_sym_SLASH] = ACTIONS(1785), + [anon_sym_PERCENT] = ACTIONS(1785), + [anon_sym_LT] = ACTIONS(1785), + [anon_sym_GT] = ACTIONS(1785), + [anon_sym_EQ_EQ] = ACTIONS(1785), + [anon_sym_BANG_EQ] = ACTIONS(1785), + [anon_sym_LT_EQ] = ACTIONS(1785), + [anon_sym_GT_EQ] = ACTIONS(1785), + [anon_sym_LBRACK] = ACTIONS(1659), [anon_sym_struct] = ACTIONS(1785), [anon_sym_union] = ACTIONS(1785), [anon_sym_pub] = ACTIONS(1785), @@ -48493,35 +48987,35 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_interface] = ACTIONS(1785), [anon_sym_PLUS_PLUS] = ACTIONS(1785), [anon_sym_DASH_DASH] = ACTIONS(1785), - [anon_sym_QMARK] = ACTIONS(1675), - [anon_sym_BANG] = ACTIONS(1677), + [anon_sym_QMARK] = ACTIONS(1665), + [anon_sym_BANG] = ACTIONS(1667), [anon_sym_go] = ACTIONS(1785), [anon_sym_spawn] = ACTIONS(1785), [anon_sym_json_DOTdecode] = ACTIONS(1785), - [anon_sym_LBRACK2] = ACTIONS(1679), + [anon_sym_LBRACK2] = ACTIONS(1669), [anon_sym_TILDE] = ACTIONS(1785), - [anon_sym_CARET] = ACTIONS(1663), - [anon_sym_AMP] = ACTIONS(1665), + [anon_sym_CARET] = ACTIONS(1785), + [anon_sym_AMP] = ACTIONS(1785), [anon_sym_LT_DASH] = ACTIONS(1785), - [anon_sym_LT_LT] = ACTIONS(1665), - [anon_sym_GT_GT] = ACTIONS(1665), - [anon_sym_GT_GT_GT] = ACTIONS(1665), - [anon_sym_AMP_CARET] = ACTIONS(1665), - [anon_sym_AMP_AMP] = ACTIONS(1685), + [anon_sym_LT_LT] = ACTIONS(1785), + [anon_sym_GT_GT] = ACTIONS(1785), + [anon_sym_GT_GT_GT] = ACTIONS(1785), + [anon_sym_AMP_CARET] = ACTIONS(1785), + [anon_sym_AMP_AMP] = ACTIONS(1785), [anon_sym_PIPE_PIPE] = ACTIONS(1785), [anon_sym_or] = ACTIONS(1785), [sym_none] = ACTIONS(1785), [sym_true] = ACTIONS(1785), [sym_false] = ACTIONS(1785), [sym_nil] = ACTIONS(1785), - [anon_sym_QMARK_DOT] = ACTIONS(1653), - [anon_sym_POUND_LBRACK] = ACTIONS(1679), + [anon_sym_QMARK_DOT] = ACTIONS(1645), + [anon_sym_POUND_LBRACK] = ACTIONS(1669), [anon_sym_if] = ACTIONS(1785), [anon_sym_DOLLARif] = ACTIONS(1785), [anon_sym_is] = ACTIONS(1785), [anon_sym_BANGis] = ACTIONS(1785), - [anon_sym_in] = ACTIONS(1693), - [anon_sym_BANGin] = ACTIONS(1693), + [anon_sym_in] = ACTIONS(1785), + [anon_sym_BANGin] = ACTIONS(1785), [anon_sym_match] = ACTIONS(1785), [anon_sym_select] = ACTIONS(1785), [anon_sym_STAR_EQ] = ACTIONS(1785), @@ -48568,12 +49062,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym___r_double_quote] = ACTIONS(1785), [sym___r_single_quote] = ACTIONS(1785), }, - [223] = { - [sym_line_comment] = STATE(223), - [sym_block_comment] = STATE(223), - [sym_type_parameters] = STATE(4280), - [sym_argument_list] = STATE(401), - [sym_or_block] = STATE(400), + [227] = { + [sym_line_comment] = STATE(227), + [sym_block_comment] = STATE(227), + [sym_type_parameters] = STATE(4275), + [sym_argument_list] = STATE(360), + [sym_or_block] = STATE(356), [ts_builtin_sym_end] = ACTIONS(1787), [sym_identifier] = ACTIONS(1789), [anon_sym_LF] = ACTIONS(1789), @@ -48581,66 +49075,66 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_CR_LF] = ACTIONS(1789), [anon_sym_SLASH_SLASH] = ACTIONS(497), [anon_sym_SLASH_STAR] = ACTIONS(499), - [anon_sym_DOT] = ACTIONS(1653), - [anon_sym_as] = ACTIONS(1655), + [anon_sym_DOT] = ACTIONS(1645), + [anon_sym_as] = ACTIONS(1647), [anon_sym_LBRACE] = ACTIONS(1789), [anon_sym_COMMA] = ACTIONS(1789), [anon_sym_const] = ACTIONS(1789), - [anon_sym_LPAREN] = ACTIONS(1659), + [anon_sym_LPAREN] = ACTIONS(1651), [anon_sym_EQ] = ACTIONS(1789), [anon_sym___global] = ACTIONS(1789), [anon_sym_type] = ACTIONS(1789), - [anon_sym_PIPE] = ACTIONS(1663), + [anon_sym_PIPE] = ACTIONS(1653), [anon_sym_fn] = ACTIONS(1789), - [anon_sym_PLUS] = ACTIONS(1663), - [anon_sym_DASH] = ACTIONS(1663), - [anon_sym_STAR] = ACTIONS(1665), - [anon_sym_SLASH] = ACTIONS(1665), - [anon_sym_PERCENT] = ACTIONS(1665), - [anon_sym_LT] = ACTIONS(1667), - [anon_sym_GT] = ACTIONS(1667), - [anon_sym_EQ_EQ] = ACTIONS(1667), - [anon_sym_BANG_EQ] = ACTIONS(1667), - [anon_sym_LT_EQ] = ACTIONS(1667), - [anon_sym_GT_EQ] = ACTIONS(1667), - [anon_sym_LBRACK] = ACTIONS(1669), + [anon_sym_PLUS] = ACTIONS(1653), + [anon_sym_DASH] = ACTIONS(1653), + [anon_sym_STAR] = ACTIONS(1655), + [anon_sym_SLASH] = ACTIONS(1655), + [anon_sym_PERCENT] = ACTIONS(1655), + [anon_sym_LT] = ACTIONS(1657), + [anon_sym_GT] = ACTIONS(1657), + [anon_sym_EQ_EQ] = ACTIONS(1657), + [anon_sym_BANG_EQ] = ACTIONS(1657), + [anon_sym_LT_EQ] = ACTIONS(1657), + [anon_sym_GT_EQ] = ACTIONS(1657), + [anon_sym_LBRACK] = ACTIONS(1659), [anon_sym_struct] = ACTIONS(1789), [anon_sym_union] = ACTIONS(1789), [anon_sym_pub] = ACTIONS(1789), [anon_sym_mut] = ACTIONS(1789), [anon_sym_enum] = ACTIONS(1789), [anon_sym_interface] = ACTIONS(1789), - [anon_sym_PLUS_PLUS] = ACTIONS(1671), - [anon_sym_DASH_DASH] = ACTIONS(1673), - [anon_sym_QMARK] = ACTIONS(1675), - [anon_sym_BANG] = ACTIONS(1677), + [anon_sym_PLUS_PLUS] = ACTIONS(1661), + [anon_sym_DASH_DASH] = ACTIONS(1663), + [anon_sym_QMARK] = ACTIONS(1665), + [anon_sym_BANG] = ACTIONS(1667), [anon_sym_go] = ACTIONS(1789), [anon_sym_spawn] = ACTIONS(1789), [anon_sym_json_DOTdecode] = ACTIONS(1789), - [anon_sym_LBRACK2] = ACTIONS(1679), + [anon_sym_LBRACK2] = ACTIONS(1669), [anon_sym_TILDE] = ACTIONS(1789), - [anon_sym_CARET] = ACTIONS(1663), - [anon_sym_AMP] = ACTIONS(1665), + [anon_sym_CARET] = ACTIONS(1653), + [anon_sym_AMP] = ACTIONS(1655), [anon_sym_LT_DASH] = ACTIONS(1789), - [anon_sym_LT_LT] = ACTIONS(1665), - [anon_sym_GT_GT] = ACTIONS(1665), - [anon_sym_GT_GT_GT] = ACTIONS(1665), - [anon_sym_AMP_CARET] = ACTIONS(1665), - [anon_sym_AMP_AMP] = ACTIONS(1685), - [anon_sym_PIPE_PIPE] = ACTIONS(1687), - [anon_sym_or] = ACTIONS(1689), + [anon_sym_LT_LT] = ACTIONS(1655), + [anon_sym_GT_GT] = ACTIONS(1655), + [anon_sym_GT_GT_GT] = ACTIONS(1655), + [anon_sym_AMP_CARET] = ACTIONS(1655), + [anon_sym_AMP_AMP] = ACTIONS(1671), + [anon_sym_PIPE_PIPE] = ACTIONS(1673), + [anon_sym_or] = ACTIONS(1675), [sym_none] = ACTIONS(1789), [sym_true] = ACTIONS(1789), [sym_false] = ACTIONS(1789), [sym_nil] = ACTIONS(1789), - [anon_sym_QMARK_DOT] = ACTIONS(1653), - [anon_sym_POUND_LBRACK] = ACTIONS(1679), + [anon_sym_QMARK_DOT] = ACTIONS(1645), + [anon_sym_POUND_LBRACK] = ACTIONS(1669), [anon_sym_if] = ACTIONS(1789), [anon_sym_DOLLARif] = ACTIONS(1789), [anon_sym_is] = ACTIONS(1791), [anon_sym_BANGis] = ACTIONS(1791), - [anon_sym_in] = ACTIONS(1693), - [anon_sym_BANGin] = ACTIONS(1693), + [anon_sym_in] = ACTIONS(1679), + [anon_sym_BANGin] = ACTIONS(1679), [anon_sym_match] = ACTIONS(1789), [anon_sym_select] = ACTIONS(1789), [anon_sym_STAR_EQ] = ACTIONS(1789), @@ -48687,131 +49181,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym___r_double_quote] = ACTIONS(1789), [sym___r_single_quote] = ACTIONS(1789), }, - [224] = { - [sym_line_comment] = STATE(224), - [sym_block_comment] = STATE(224), - [sym_type_parameters] = STATE(4280), - [sym_argument_list] = STATE(401), - [sym_or_block] = STATE(400), - [ts_builtin_sym_end] = ACTIONS(1783), - [sym_identifier] = ACTIONS(1785), - [anon_sym_LF] = ACTIONS(1785), - [anon_sym_CR] = ACTIONS(1785), - [anon_sym_CR_LF] = ACTIONS(1785), - [anon_sym_SLASH_SLASH] = ACTIONS(497), - [anon_sym_SLASH_STAR] = ACTIONS(499), - [anon_sym_DOT] = ACTIONS(1653), - [anon_sym_as] = ACTIONS(1785), - [anon_sym_LBRACE] = ACTIONS(1785), - [anon_sym_COMMA] = ACTIONS(1785), - [anon_sym_const] = ACTIONS(1785), - [anon_sym_LPAREN] = ACTIONS(1659), - [anon_sym_EQ] = ACTIONS(1785), - [anon_sym___global] = ACTIONS(1785), - [anon_sym_type] = ACTIONS(1785), - [anon_sym_PIPE] = ACTIONS(1663), - [anon_sym_fn] = ACTIONS(1785), - [anon_sym_PLUS] = ACTIONS(1663), - [anon_sym_DASH] = ACTIONS(1663), - [anon_sym_STAR] = ACTIONS(1665), - [anon_sym_SLASH] = ACTIONS(1665), - [anon_sym_PERCENT] = ACTIONS(1665), - [anon_sym_LT] = ACTIONS(1667), - [anon_sym_GT] = ACTIONS(1667), - [anon_sym_EQ_EQ] = ACTIONS(1667), - [anon_sym_BANG_EQ] = ACTIONS(1667), - [anon_sym_LT_EQ] = ACTIONS(1667), - [anon_sym_GT_EQ] = ACTIONS(1667), - [anon_sym_LBRACK] = ACTIONS(1669), - [anon_sym_struct] = ACTIONS(1785), - [anon_sym_union] = ACTIONS(1785), - [anon_sym_pub] = ACTIONS(1785), - [anon_sym_mut] = ACTIONS(1785), - [anon_sym_enum] = ACTIONS(1785), - [anon_sym_interface] = ACTIONS(1785), - [anon_sym_PLUS_PLUS] = ACTIONS(1785), - [anon_sym_DASH_DASH] = ACTIONS(1785), - [anon_sym_QMARK] = ACTIONS(1675), - [anon_sym_BANG] = ACTIONS(1677), - [anon_sym_go] = ACTIONS(1785), - [anon_sym_spawn] = ACTIONS(1785), - [anon_sym_json_DOTdecode] = ACTIONS(1785), - [anon_sym_LBRACK2] = ACTIONS(1679), - [anon_sym_TILDE] = ACTIONS(1785), - [anon_sym_CARET] = ACTIONS(1663), - [anon_sym_AMP] = ACTIONS(1665), - [anon_sym_LT_DASH] = ACTIONS(1785), - [anon_sym_LT_LT] = ACTIONS(1665), - [anon_sym_GT_GT] = ACTIONS(1665), - [anon_sym_GT_GT_GT] = ACTIONS(1665), - [anon_sym_AMP_CARET] = ACTIONS(1665), - [anon_sym_AMP_AMP] = ACTIONS(1785), - [anon_sym_PIPE_PIPE] = ACTIONS(1785), - [anon_sym_or] = ACTIONS(1785), - [sym_none] = ACTIONS(1785), - [sym_true] = ACTIONS(1785), - [sym_false] = ACTIONS(1785), - [sym_nil] = ACTIONS(1785), - [anon_sym_QMARK_DOT] = ACTIONS(1653), - [anon_sym_POUND_LBRACK] = ACTIONS(1679), - [anon_sym_if] = ACTIONS(1785), - [anon_sym_DOLLARif] = ACTIONS(1785), - [anon_sym_is] = ACTIONS(1785), - [anon_sym_BANGis] = ACTIONS(1785), - [anon_sym_in] = ACTIONS(1693), - [anon_sym_BANGin] = ACTIONS(1693), - [anon_sym_match] = ACTIONS(1785), - [anon_sym_select] = ACTIONS(1785), - [anon_sym_STAR_EQ] = ACTIONS(1785), - [anon_sym_SLASH_EQ] = ACTIONS(1785), - [anon_sym_PERCENT_EQ] = ACTIONS(1785), - [anon_sym_LT_LT_EQ] = ACTIONS(1785), - [anon_sym_GT_GT_EQ] = ACTIONS(1785), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(1785), - [anon_sym_AMP_EQ] = ACTIONS(1785), - [anon_sym_AMP_CARET_EQ] = ACTIONS(1785), - [anon_sym_PLUS_EQ] = ACTIONS(1785), - [anon_sym_DASH_EQ] = ACTIONS(1785), - [anon_sym_PIPE_EQ] = ACTIONS(1785), - [anon_sym_CARET_EQ] = ACTIONS(1785), - [anon_sym_COLON_EQ] = ACTIONS(1785), - [anon_sym_lock] = ACTIONS(1785), - [anon_sym_rlock] = ACTIONS(1785), - [anon_sym_unsafe] = ACTIONS(1785), - [anon_sym_sql] = ACTIONS(1785), - [sym_int_literal] = ACTIONS(1785), - [sym_float_literal] = ACTIONS(1785), - [sym_rune_literal] = ACTIONS(1785), - [sym_pseudo_compile_time_identifier] = ACTIONS(1785), - [anon_sym_shared] = ACTIONS(1785), - [anon_sym_map_LBRACK] = ACTIONS(1785), - [anon_sym_chan] = ACTIONS(1785), - [anon_sym_thread] = ACTIONS(1785), - [anon_sym_atomic] = ACTIONS(1785), - [anon_sym_assert] = ACTIONS(1785), - [anon_sym_defer] = ACTIONS(1785), - [anon_sym_goto] = ACTIONS(1785), - [anon_sym_break] = ACTIONS(1785), - [anon_sym_continue] = ACTIONS(1785), - [anon_sym_return] = ACTIONS(1785), - [anon_sym_DOLLARfor] = ACTIONS(1785), - [anon_sym_for] = ACTIONS(1785), - [anon_sym_POUND] = ACTIONS(1785), - [anon_sym_asm] = ACTIONS(1785), - [anon_sym_AT_LBRACK] = ACTIONS(1785), - [sym___double_quote] = ACTIONS(1785), - [sym___single_quote] = ACTIONS(1785), - [sym___c_double_quote] = ACTIONS(1785), - [sym___c_single_quote] = ACTIONS(1785), - [sym___r_double_quote] = ACTIONS(1785), - [sym___r_single_quote] = ACTIONS(1785), - }, - [225] = { - [sym_line_comment] = STATE(225), - [sym_block_comment] = STATE(225), - [sym_type_parameters] = STATE(4280), - [sym_argument_list] = STATE(401), - [sym_or_block] = STATE(400), + [228] = { + [sym_line_comment] = STATE(228), + [sym_block_comment] = STATE(228), + [sym_type_parameters] = STATE(4275), + [sym_argument_list] = STATE(360), + [sym_or_block] = STATE(356), [ts_builtin_sym_end] = ACTIONS(1793), [sym_identifier] = ACTIONS(1795), [anon_sym_LF] = ACTIONS(1795), @@ -48819,81 +49194,81 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_CR_LF] = ACTIONS(1795), [anon_sym_SLASH_SLASH] = ACTIONS(497), [anon_sym_SLASH_STAR] = ACTIONS(499), - [anon_sym_DOT] = ACTIONS(1653), - [anon_sym_as] = ACTIONS(1785), + [anon_sym_DOT] = ACTIONS(1645), + [anon_sym_as] = ACTIONS(1647), [anon_sym_LBRACE] = ACTIONS(1795), - [anon_sym_COMMA] = ACTIONS(1785), + [anon_sym_COMMA] = ACTIONS(1795), [anon_sym_const] = ACTIONS(1795), - [anon_sym_LPAREN] = ACTIONS(1659), - [anon_sym_EQ] = ACTIONS(1785), + [anon_sym_LPAREN] = ACTIONS(1651), + [anon_sym_EQ] = ACTIONS(1795), [anon_sym___global] = ACTIONS(1795), [anon_sym_type] = ACTIONS(1795), - [anon_sym_PIPE] = ACTIONS(1785), + [anon_sym_PIPE] = ACTIONS(1653), [anon_sym_fn] = ACTIONS(1795), - [anon_sym_PLUS] = ACTIONS(1795), - [anon_sym_DASH] = ACTIONS(1795), - [anon_sym_STAR] = ACTIONS(1795), - [anon_sym_SLASH] = ACTIONS(1785), - [anon_sym_PERCENT] = ACTIONS(1785), - [anon_sym_LT] = ACTIONS(1785), - [anon_sym_GT] = ACTIONS(1785), - [anon_sym_EQ_EQ] = ACTIONS(1785), - [anon_sym_BANG_EQ] = ACTIONS(1785), - [anon_sym_LT_EQ] = ACTIONS(1785), - [anon_sym_GT_EQ] = ACTIONS(1785), - [anon_sym_LBRACK] = ACTIONS(1669), + [anon_sym_PLUS] = ACTIONS(1653), + [anon_sym_DASH] = ACTIONS(1653), + [anon_sym_STAR] = ACTIONS(1655), + [anon_sym_SLASH] = ACTIONS(1655), + [anon_sym_PERCENT] = ACTIONS(1655), + [anon_sym_LT] = ACTIONS(1657), + [anon_sym_GT] = ACTIONS(1657), + [anon_sym_EQ_EQ] = ACTIONS(1657), + [anon_sym_BANG_EQ] = ACTIONS(1657), + [anon_sym_LT_EQ] = ACTIONS(1657), + [anon_sym_GT_EQ] = ACTIONS(1657), + [anon_sym_LBRACK] = ACTIONS(1659), [anon_sym_struct] = ACTIONS(1795), [anon_sym_union] = ACTIONS(1795), [anon_sym_pub] = ACTIONS(1795), [anon_sym_mut] = ACTIONS(1795), [anon_sym_enum] = ACTIONS(1795), [anon_sym_interface] = ACTIONS(1795), - [anon_sym_PLUS_PLUS] = ACTIONS(1785), - [anon_sym_DASH_DASH] = ACTIONS(1785), - [anon_sym_QMARK] = ACTIONS(1675), - [anon_sym_BANG] = ACTIONS(1677), + [anon_sym_PLUS_PLUS] = ACTIONS(1661), + [anon_sym_DASH_DASH] = ACTIONS(1663), + [anon_sym_QMARK] = ACTIONS(1665), + [anon_sym_BANG] = ACTIONS(1667), [anon_sym_go] = ACTIONS(1795), [anon_sym_spawn] = ACTIONS(1795), [anon_sym_json_DOTdecode] = ACTIONS(1795), - [anon_sym_LBRACK2] = ACTIONS(1679), + [anon_sym_LBRACK2] = ACTIONS(1669), [anon_sym_TILDE] = ACTIONS(1795), - [anon_sym_CARET] = ACTIONS(1795), - [anon_sym_AMP] = ACTIONS(1795), + [anon_sym_CARET] = ACTIONS(1653), + [anon_sym_AMP] = ACTIONS(1655), [anon_sym_LT_DASH] = ACTIONS(1795), - [anon_sym_LT_LT] = ACTIONS(1785), - [anon_sym_GT_GT] = ACTIONS(1785), - [anon_sym_GT_GT_GT] = ACTIONS(1785), - [anon_sym_AMP_CARET] = ACTIONS(1785), - [anon_sym_AMP_AMP] = ACTIONS(1785), - [anon_sym_PIPE_PIPE] = ACTIONS(1785), - [anon_sym_or] = ACTIONS(1785), + [anon_sym_LT_LT] = ACTIONS(1655), + [anon_sym_GT_GT] = ACTIONS(1655), + [anon_sym_GT_GT_GT] = ACTIONS(1655), + [anon_sym_AMP_CARET] = ACTIONS(1655), + [anon_sym_AMP_AMP] = ACTIONS(1671), + [anon_sym_PIPE_PIPE] = ACTIONS(1673), + [anon_sym_or] = ACTIONS(1675), [sym_none] = ACTIONS(1795), [sym_true] = ACTIONS(1795), [sym_false] = ACTIONS(1795), [sym_nil] = ACTIONS(1795), - [anon_sym_QMARK_DOT] = ACTIONS(1653), - [anon_sym_POUND_LBRACK] = ACTIONS(1679), + [anon_sym_QMARK_DOT] = ACTIONS(1645), + [anon_sym_POUND_LBRACK] = ACTIONS(1669), [anon_sym_if] = ACTIONS(1795), [anon_sym_DOLLARif] = ACTIONS(1795), - [anon_sym_is] = ACTIONS(1785), - [anon_sym_BANGis] = ACTIONS(1785), - [anon_sym_in] = ACTIONS(1785), - [anon_sym_BANGin] = ACTIONS(1785), + [anon_sym_is] = ACTIONS(1677), + [anon_sym_BANGis] = ACTIONS(1677), + [anon_sym_in] = ACTIONS(1679), + [anon_sym_BANGin] = ACTIONS(1679), [anon_sym_match] = ACTIONS(1795), [anon_sym_select] = ACTIONS(1795), - [anon_sym_STAR_EQ] = ACTIONS(1785), - [anon_sym_SLASH_EQ] = ACTIONS(1785), - [anon_sym_PERCENT_EQ] = ACTIONS(1785), - [anon_sym_LT_LT_EQ] = ACTIONS(1785), - [anon_sym_GT_GT_EQ] = ACTIONS(1785), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(1785), - [anon_sym_AMP_EQ] = ACTIONS(1785), - [anon_sym_AMP_CARET_EQ] = ACTIONS(1785), - [anon_sym_PLUS_EQ] = ACTIONS(1785), - [anon_sym_DASH_EQ] = ACTIONS(1785), - [anon_sym_PIPE_EQ] = ACTIONS(1785), - [anon_sym_CARET_EQ] = ACTIONS(1785), - [anon_sym_COLON_EQ] = ACTIONS(1785), + [anon_sym_STAR_EQ] = ACTIONS(1795), + [anon_sym_SLASH_EQ] = ACTIONS(1795), + [anon_sym_PERCENT_EQ] = ACTIONS(1795), + [anon_sym_LT_LT_EQ] = ACTIONS(1795), + [anon_sym_GT_GT_EQ] = ACTIONS(1795), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(1795), + [anon_sym_AMP_EQ] = ACTIONS(1795), + [anon_sym_AMP_CARET_EQ] = ACTIONS(1795), + [anon_sym_PLUS_EQ] = ACTIONS(1795), + [anon_sym_DASH_EQ] = ACTIONS(1795), + [anon_sym_PIPE_EQ] = ACTIONS(1795), + [anon_sym_CARET_EQ] = ACTIONS(1795), + [anon_sym_COLON_EQ] = ACTIONS(1795), [anon_sym_lock] = ACTIONS(1795), [anon_sym_rlock] = ACTIONS(1795), [anon_sym_unsafe] = ACTIONS(1795), @@ -48925,367 +49300,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym___r_double_quote] = ACTIONS(1795), [sym___r_single_quote] = ACTIONS(1795), }, - [226] = { - [sym_line_comment] = STATE(226), - [sym_block_comment] = STATE(226), - [sym_type_parameters] = STATE(4280), - [sym_argument_list] = STATE(401), - [sym_or_block] = STATE(400), - [ts_builtin_sym_end] = ACTIONS(1783), - [sym_identifier] = ACTIONS(1785), - [anon_sym_LF] = ACTIONS(1785), - [anon_sym_CR] = ACTIONS(1785), - [anon_sym_CR_LF] = ACTIONS(1785), - [anon_sym_SLASH_SLASH] = ACTIONS(497), - [anon_sym_SLASH_STAR] = ACTIONS(499), - [anon_sym_DOT] = ACTIONS(1653), - [anon_sym_as] = ACTIONS(1785), - [anon_sym_LBRACE] = ACTIONS(1785), - [anon_sym_COMMA] = ACTIONS(1785), - [anon_sym_const] = ACTIONS(1785), - [anon_sym_LPAREN] = ACTIONS(1659), - [anon_sym_EQ] = ACTIONS(1785), - [anon_sym___global] = ACTIONS(1785), - [anon_sym_type] = ACTIONS(1785), - [anon_sym_PIPE] = ACTIONS(1663), - [anon_sym_fn] = ACTIONS(1785), - [anon_sym_PLUS] = ACTIONS(1663), - [anon_sym_DASH] = ACTIONS(1663), - [anon_sym_STAR] = ACTIONS(1665), - [anon_sym_SLASH] = ACTIONS(1665), - [anon_sym_PERCENT] = ACTIONS(1665), - [anon_sym_LT] = ACTIONS(1785), - [anon_sym_GT] = ACTIONS(1785), - [anon_sym_EQ_EQ] = ACTIONS(1785), - [anon_sym_BANG_EQ] = ACTIONS(1785), - [anon_sym_LT_EQ] = ACTIONS(1785), - [anon_sym_GT_EQ] = ACTIONS(1785), - [anon_sym_LBRACK] = ACTIONS(1669), - [anon_sym_struct] = ACTIONS(1785), - [anon_sym_union] = ACTIONS(1785), - [anon_sym_pub] = ACTIONS(1785), - [anon_sym_mut] = ACTIONS(1785), - [anon_sym_enum] = ACTIONS(1785), - [anon_sym_interface] = ACTIONS(1785), - [anon_sym_PLUS_PLUS] = ACTIONS(1785), - [anon_sym_DASH_DASH] = ACTIONS(1785), - [anon_sym_QMARK] = ACTIONS(1675), - [anon_sym_BANG] = ACTIONS(1677), - [anon_sym_go] = ACTIONS(1785), - [anon_sym_spawn] = ACTIONS(1785), - [anon_sym_json_DOTdecode] = ACTIONS(1785), - [anon_sym_LBRACK2] = ACTIONS(1679), - [anon_sym_TILDE] = ACTIONS(1785), - [anon_sym_CARET] = ACTIONS(1663), - [anon_sym_AMP] = ACTIONS(1665), - [anon_sym_LT_DASH] = ACTIONS(1785), - [anon_sym_LT_LT] = ACTIONS(1665), - [anon_sym_GT_GT] = ACTIONS(1665), - [anon_sym_GT_GT_GT] = ACTIONS(1665), - [anon_sym_AMP_CARET] = ACTIONS(1665), - [anon_sym_AMP_AMP] = ACTIONS(1785), - [anon_sym_PIPE_PIPE] = ACTIONS(1785), - [anon_sym_or] = ACTIONS(1785), - [sym_none] = ACTIONS(1785), - [sym_true] = ACTIONS(1785), - [sym_false] = ACTIONS(1785), - [sym_nil] = ACTIONS(1785), - [anon_sym_QMARK_DOT] = ACTIONS(1653), - [anon_sym_POUND_LBRACK] = ACTIONS(1679), - [anon_sym_if] = ACTIONS(1785), - [anon_sym_DOLLARif] = ACTIONS(1785), - [anon_sym_is] = ACTIONS(1785), - [anon_sym_BANGis] = ACTIONS(1785), - [anon_sym_in] = ACTIONS(1785), - [anon_sym_BANGin] = ACTIONS(1785), - [anon_sym_match] = ACTIONS(1785), - [anon_sym_select] = ACTIONS(1785), - [anon_sym_STAR_EQ] = ACTIONS(1785), - [anon_sym_SLASH_EQ] = ACTIONS(1785), - [anon_sym_PERCENT_EQ] = ACTIONS(1785), - [anon_sym_LT_LT_EQ] = ACTIONS(1785), - [anon_sym_GT_GT_EQ] = ACTIONS(1785), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(1785), - [anon_sym_AMP_EQ] = ACTIONS(1785), - [anon_sym_AMP_CARET_EQ] = ACTIONS(1785), - [anon_sym_PLUS_EQ] = ACTIONS(1785), - [anon_sym_DASH_EQ] = ACTIONS(1785), - [anon_sym_PIPE_EQ] = ACTIONS(1785), - [anon_sym_CARET_EQ] = ACTIONS(1785), - [anon_sym_COLON_EQ] = ACTIONS(1785), - [anon_sym_lock] = ACTIONS(1785), - [anon_sym_rlock] = ACTIONS(1785), - [anon_sym_unsafe] = ACTIONS(1785), - [anon_sym_sql] = ACTIONS(1785), - [sym_int_literal] = ACTIONS(1785), - [sym_float_literal] = ACTIONS(1785), - [sym_rune_literal] = ACTIONS(1785), - [sym_pseudo_compile_time_identifier] = ACTIONS(1785), - [anon_sym_shared] = ACTIONS(1785), - [anon_sym_map_LBRACK] = ACTIONS(1785), - [anon_sym_chan] = ACTIONS(1785), - [anon_sym_thread] = ACTIONS(1785), - [anon_sym_atomic] = ACTIONS(1785), - [anon_sym_assert] = ACTIONS(1785), - [anon_sym_defer] = ACTIONS(1785), - [anon_sym_goto] = ACTIONS(1785), - [anon_sym_break] = ACTIONS(1785), - [anon_sym_continue] = ACTIONS(1785), - [anon_sym_return] = ACTIONS(1785), - [anon_sym_DOLLARfor] = ACTIONS(1785), - [anon_sym_for] = ACTIONS(1785), - [anon_sym_POUND] = ACTIONS(1785), - [anon_sym_asm] = ACTIONS(1785), - [anon_sym_AT_LBRACK] = ACTIONS(1785), - [sym___double_quote] = ACTIONS(1785), - [sym___single_quote] = ACTIONS(1785), - [sym___c_double_quote] = ACTIONS(1785), - [sym___c_single_quote] = ACTIONS(1785), - [sym___r_double_quote] = ACTIONS(1785), - [sym___r_single_quote] = ACTIONS(1785), - }, - [227] = { - [sym_line_comment] = STATE(227), - [sym_block_comment] = STATE(227), - [sym_type_parameters] = STATE(4280), - [sym_argument_list] = STATE(401), - [sym_or_block] = STATE(400), - [ts_builtin_sym_end] = ACTIONS(1783), - [sym_identifier] = ACTIONS(1785), - [anon_sym_LF] = ACTIONS(1785), - [anon_sym_CR] = ACTIONS(1785), - [anon_sym_CR_LF] = ACTIONS(1785), - [anon_sym_SLASH_SLASH] = ACTIONS(497), - [anon_sym_SLASH_STAR] = ACTIONS(499), - [anon_sym_DOT] = ACTIONS(1653), - [anon_sym_as] = ACTIONS(1785), - [anon_sym_LBRACE] = ACTIONS(1785), - [anon_sym_COMMA] = ACTIONS(1785), - [anon_sym_const] = ACTIONS(1785), - [anon_sym_LPAREN] = ACTIONS(1659), - [anon_sym_EQ] = ACTIONS(1785), - [anon_sym___global] = ACTIONS(1785), - [anon_sym_type] = ACTIONS(1785), - [anon_sym_PIPE] = ACTIONS(1785), - [anon_sym_fn] = ACTIONS(1785), - [anon_sym_PLUS] = ACTIONS(1785), - [anon_sym_DASH] = ACTIONS(1785), - [anon_sym_STAR] = ACTIONS(1785), - [anon_sym_SLASH] = ACTIONS(1785), - [anon_sym_PERCENT] = ACTIONS(1785), - [anon_sym_LT] = ACTIONS(1785), - [anon_sym_GT] = ACTIONS(1785), - [anon_sym_EQ_EQ] = ACTIONS(1785), - [anon_sym_BANG_EQ] = ACTIONS(1785), - [anon_sym_LT_EQ] = ACTIONS(1785), - [anon_sym_GT_EQ] = ACTIONS(1785), - [anon_sym_LBRACK] = ACTIONS(1669), - [anon_sym_struct] = ACTIONS(1785), - [anon_sym_union] = ACTIONS(1785), - [anon_sym_pub] = ACTIONS(1785), - [anon_sym_mut] = ACTIONS(1785), - [anon_sym_enum] = ACTIONS(1785), - [anon_sym_interface] = ACTIONS(1785), - [anon_sym_PLUS_PLUS] = ACTIONS(1785), - [anon_sym_DASH_DASH] = ACTIONS(1785), - [anon_sym_QMARK] = ACTIONS(1675), - [anon_sym_BANG] = ACTIONS(1677), - [anon_sym_go] = ACTIONS(1785), - [anon_sym_spawn] = ACTIONS(1785), - [anon_sym_json_DOTdecode] = ACTIONS(1785), - [anon_sym_LBRACK2] = ACTIONS(1679), - [anon_sym_TILDE] = ACTIONS(1785), - [anon_sym_CARET] = ACTIONS(1785), - [anon_sym_AMP] = ACTIONS(1785), - [anon_sym_LT_DASH] = ACTIONS(1785), - [anon_sym_LT_LT] = ACTIONS(1785), - [anon_sym_GT_GT] = ACTIONS(1785), - [anon_sym_GT_GT_GT] = ACTIONS(1785), - [anon_sym_AMP_CARET] = ACTIONS(1785), - [anon_sym_AMP_AMP] = ACTIONS(1785), - [anon_sym_PIPE_PIPE] = ACTIONS(1785), - [anon_sym_or] = ACTIONS(1785), - [sym_none] = ACTIONS(1785), - [sym_true] = ACTIONS(1785), - [sym_false] = ACTIONS(1785), - [sym_nil] = ACTIONS(1785), - [anon_sym_QMARK_DOT] = ACTIONS(1653), - [anon_sym_POUND_LBRACK] = ACTIONS(1679), - [anon_sym_if] = ACTIONS(1785), - [anon_sym_DOLLARif] = ACTIONS(1785), - [anon_sym_is] = ACTIONS(1785), - [anon_sym_BANGis] = ACTIONS(1785), - [anon_sym_in] = ACTIONS(1785), - [anon_sym_BANGin] = ACTIONS(1785), - [anon_sym_match] = ACTIONS(1785), - [anon_sym_select] = ACTIONS(1785), - [anon_sym_STAR_EQ] = ACTIONS(1785), - [anon_sym_SLASH_EQ] = ACTIONS(1785), - [anon_sym_PERCENT_EQ] = ACTIONS(1785), - [anon_sym_LT_LT_EQ] = ACTIONS(1785), - [anon_sym_GT_GT_EQ] = ACTIONS(1785), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(1785), - [anon_sym_AMP_EQ] = ACTIONS(1785), - [anon_sym_AMP_CARET_EQ] = ACTIONS(1785), - [anon_sym_PLUS_EQ] = ACTIONS(1785), - [anon_sym_DASH_EQ] = ACTIONS(1785), - [anon_sym_PIPE_EQ] = ACTIONS(1785), - [anon_sym_CARET_EQ] = ACTIONS(1785), - [anon_sym_COLON_EQ] = ACTIONS(1785), - [anon_sym_lock] = ACTIONS(1785), - [anon_sym_rlock] = ACTIONS(1785), - [anon_sym_unsafe] = ACTIONS(1785), - [anon_sym_sql] = ACTIONS(1785), - [sym_int_literal] = ACTIONS(1785), - [sym_float_literal] = ACTIONS(1785), - [sym_rune_literal] = ACTIONS(1785), - [sym_pseudo_compile_time_identifier] = ACTIONS(1785), - [anon_sym_shared] = ACTIONS(1785), - [anon_sym_map_LBRACK] = ACTIONS(1785), - [anon_sym_chan] = ACTIONS(1785), - [anon_sym_thread] = ACTIONS(1785), - [anon_sym_atomic] = ACTIONS(1785), - [anon_sym_assert] = ACTIONS(1785), - [anon_sym_defer] = ACTIONS(1785), - [anon_sym_goto] = ACTIONS(1785), - [anon_sym_break] = ACTIONS(1785), - [anon_sym_continue] = ACTIONS(1785), - [anon_sym_return] = ACTIONS(1785), - [anon_sym_DOLLARfor] = ACTIONS(1785), - [anon_sym_for] = ACTIONS(1785), - [anon_sym_POUND] = ACTIONS(1785), - [anon_sym_asm] = ACTIONS(1785), - [anon_sym_AT_LBRACK] = ACTIONS(1785), - [sym___double_quote] = ACTIONS(1785), - [sym___single_quote] = ACTIONS(1785), - [sym___c_double_quote] = ACTIONS(1785), - [sym___c_single_quote] = ACTIONS(1785), - [sym___r_double_quote] = ACTIONS(1785), - [sym___r_single_quote] = ACTIONS(1785), - }, - [228] = { - [sym_line_comment] = STATE(228), - [sym_block_comment] = STATE(228), - [sym_type_parameters] = STATE(4280), - [sym_argument_list] = STATE(401), - [sym_or_block] = STATE(400), - [ts_builtin_sym_end] = ACTIONS(1783), - [sym_identifier] = ACTIONS(1785), - [anon_sym_LF] = ACTIONS(1785), - [anon_sym_CR] = ACTIONS(1785), - [anon_sym_CR_LF] = ACTIONS(1785), - [anon_sym_SLASH_SLASH] = ACTIONS(497), - [anon_sym_SLASH_STAR] = ACTIONS(499), - [anon_sym_DOT] = ACTIONS(1653), - [anon_sym_as] = ACTIONS(1785), - [anon_sym_LBRACE] = ACTIONS(1785), - [anon_sym_COMMA] = ACTIONS(1785), - [anon_sym_const] = ACTIONS(1785), - [anon_sym_LPAREN] = ACTIONS(1659), - [anon_sym_EQ] = ACTIONS(1785), - [anon_sym___global] = ACTIONS(1785), - [anon_sym_type] = ACTIONS(1785), - [anon_sym_PIPE] = ACTIONS(1785), - [anon_sym_fn] = ACTIONS(1785), - [anon_sym_PLUS] = ACTIONS(1785), - [anon_sym_DASH] = ACTIONS(1785), - [anon_sym_STAR] = ACTIONS(1665), - [anon_sym_SLASH] = ACTIONS(1665), - [anon_sym_PERCENT] = ACTIONS(1665), - [anon_sym_LT] = ACTIONS(1785), - [anon_sym_GT] = ACTIONS(1785), - [anon_sym_EQ_EQ] = ACTIONS(1785), - [anon_sym_BANG_EQ] = ACTIONS(1785), - [anon_sym_LT_EQ] = ACTIONS(1785), - [anon_sym_GT_EQ] = ACTIONS(1785), - [anon_sym_LBRACK] = ACTIONS(1669), - [anon_sym_struct] = ACTIONS(1785), - [anon_sym_union] = ACTIONS(1785), - [anon_sym_pub] = ACTIONS(1785), - [anon_sym_mut] = ACTIONS(1785), - [anon_sym_enum] = ACTIONS(1785), - [anon_sym_interface] = ACTIONS(1785), - [anon_sym_PLUS_PLUS] = ACTIONS(1785), - [anon_sym_DASH_DASH] = ACTIONS(1785), - [anon_sym_QMARK] = ACTIONS(1675), - [anon_sym_BANG] = ACTIONS(1677), - [anon_sym_go] = ACTIONS(1785), - [anon_sym_spawn] = ACTIONS(1785), - [anon_sym_json_DOTdecode] = ACTIONS(1785), - [anon_sym_LBRACK2] = ACTIONS(1679), - [anon_sym_TILDE] = ACTIONS(1785), - [anon_sym_CARET] = ACTIONS(1785), - [anon_sym_AMP] = ACTIONS(1665), - [anon_sym_LT_DASH] = ACTIONS(1785), - [anon_sym_LT_LT] = ACTIONS(1665), - [anon_sym_GT_GT] = ACTIONS(1665), - [anon_sym_GT_GT_GT] = ACTIONS(1665), - [anon_sym_AMP_CARET] = ACTIONS(1665), - [anon_sym_AMP_AMP] = ACTIONS(1785), - [anon_sym_PIPE_PIPE] = ACTIONS(1785), - [anon_sym_or] = ACTIONS(1785), - [sym_none] = ACTIONS(1785), - [sym_true] = ACTIONS(1785), - [sym_false] = ACTIONS(1785), - [sym_nil] = ACTIONS(1785), - [anon_sym_QMARK_DOT] = ACTIONS(1653), - [anon_sym_POUND_LBRACK] = ACTIONS(1679), - [anon_sym_if] = ACTIONS(1785), - [anon_sym_DOLLARif] = ACTIONS(1785), - [anon_sym_is] = ACTIONS(1785), - [anon_sym_BANGis] = ACTIONS(1785), - [anon_sym_in] = ACTIONS(1785), - [anon_sym_BANGin] = ACTIONS(1785), - [anon_sym_match] = ACTIONS(1785), - [anon_sym_select] = ACTIONS(1785), - [anon_sym_STAR_EQ] = ACTIONS(1785), - [anon_sym_SLASH_EQ] = ACTIONS(1785), - [anon_sym_PERCENT_EQ] = ACTIONS(1785), - [anon_sym_LT_LT_EQ] = ACTIONS(1785), - [anon_sym_GT_GT_EQ] = ACTIONS(1785), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(1785), - [anon_sym_AMP_EQ] = ACTIONS(1785), - [anon_sym_AMP_CARET_EQ] = ACTIONS(1785), - [anon_sym_PLUS_EQ] = ACTIONS(1785), - [anon_sym_DASH_EQ] = ACTIONS(1785), - [anon_sym_PIPE_EQ] = ACTIONS(1785), - [anon_sym_CARET_EQ] = ACTIONS(1785), - [anon_sym_COLON_EQ] = ACTIONS(1785), - [anon_sym_lock] = ACTIONS(1785), - [anon_sym_rlock] = ACTIONS(1785), - [anon_sym_unsafe] = ACTIONS(1785), - [anon_sym_sql] = ACTIONS(1785), - [sym_int_literal] = ACTIONS(1785), - [sym_float_literal] = ACTIONS(1785), - [sym_rune_literal] = ACTIONS(1785), - [sym_pseudo_compile_time_identifier] = ACTIONS(1785), - [anon_sym_shared] = ACTIONS(1785), - [anon_sym_map_LBRACK] = ACTIONS(1785), - [anon_sym_chan] = ACTIONS(1785), - [anon_sym_thread] = ACTIONS(1785), - [anon_sym_atomic] = ACTIONS(1785), - [anon_sym_assert] = ACTIONS(1785), - [anon_sym_defer] = ACTIONS(1785), - [anon_sym_goto] = ACTIONS(1785), - [anon_sym_break] = ACTIONS(1785), - [anon_sym_continue] = ACTIONS(1785), - [anon_sym_return] = ACTIONS(1785), - [anon_sym_DOLLARfor] = ACTIONS(1785), - [anon_sym_for] = ACTIONS(1785), - [anon_sym_POUND] = ACTIONS(1785), - [anon_sym_asm] = ACTIONS(1785), - [anon_sym_AT_LBRACK] = ACTIONS(1785), - [sym___double_quote] = ACTIONS(1785), - [sym___single_quote] = ACTIONS(1785), - [sym___c_double_quote] = ACTIONS(1785), - [sym___c_single_quote] = ACTIONS(1785), - [sym___r_double_quote] = ACTIONS(1785), - [sym___r_single_quote] = ACTIONS(1785), - }, [229] = { [sym_line_comment] = STATE(229), [sym_block_comment] = STATE(229), - [sym_else_branch] = STATE(466), + [sym_else_branch] = STATE(463), [ts_builtin_sym_end] = ACTIONS(1797), [sym_identifier] = ACTIONS(1799), [anon_sym_LF] = ACTIONS(1799), @@ -49403,7 +49421,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [230] = { [sym_line_comment] = STATE(230), [sym_block_comment] = STATE(230), - [sym_else_branch] = STATE(465), + [sym_else_branch] = STATE(452), [ts_builtin_sym_end] = ACTIONS(1803), [sym_identifier] = ACTIONS(1805), [anon_sym_LF] = ACTIONS(1805), @@ -49521,12844 +49539,12960 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [231] = { [sym_line_comment] = STATE(231), [sym_block_comment] = STATE(231), - [sym__expression] = STATE(2455), - [sym__expression_without_blocks] = STATE(2300), - [sym__expression_with_blocks] = STATE(2300), - [sym_inc_expression] = STATE(2307), - [sym_dec_expression] = STATE(2307), - [sym_or_block_expression] = STATE(2307), - [sym_option_propagation_expression] = STATE(2307), - [sym_result_propagation_expression] = STATE(2307), - [sym_anon_struct_value_expression] = STATE(2380), - [sym_go_expression] = STATE(2307), - [sym_spawn_expression] = STATE(2307), - [sym_parenthesized_expression] = STATE(2307), - [sym_call_expression] = STATE(2307), - [sym_type_initializer] = STATE(2380), - [sym_function_literal] = STATE(2307), - [sym_reference_expression] = STATE(2311), - [sym_type_reference_expression] = STATE(3541), - [sym_unary_expression] = STATE(2307), - [sym_receive_expression] = STATE(2307), - [sym_binary_expression] = STATE(2307), - [sym_as_type_cast_expression] = STATE(2307), - [sym__max_group] = STATE(2307), - [sym_literal] = STATE(2292), - [sym_map_init_expression] = STATE(2380), - [sym_array_creation] = STATE(2307), - [sym_fixed_array_creation] = STATE(2307), - [sym_selector_expression] = STATE(2307), - [sym_index_expression] = STATE(2307), - [sym_slice_expression] = STATE(2307), - [sym_if_expression] = STATE(2380), - [sym_compile_time_if_expression] = STATE(2380), - [sym_is_expression] = STATE(2307), - [sym_in_expression] = STATE(2307), - [sym_enum_fetch] = STATE(2307), - [sym_match_expression] = STATE(2380), - [sym_select_expression] = STATE(2380), - [sym_lock_expression] = STATE(2380), - [sym_unsafe_expression] = STATE(2380), - [sym_sql_expression] = STATE(2380), - [sym_c_string_literal] = STATE(2308), - [sym_raw_string_literal] = STATE(2308), - [sym_interpreted_string_literal] = STATE(2308), - [sym_mutability_modifiers] = STATE(824), - [sym_mutable_expression] = STATE(3922), - [sym_expression_list] = STATE(4231), - [sym_plain_type] = STATE(4297), - [sym__plain_type_without_special] = STATE(2302), - [sym_anon_struct_type] = STATE(2303), - [sym_multi_return_type] = STATE(2302), - [sym_result_type] = STATE(2302), - [sym_option_type] = STATE(2302), - [sym_qualified_type] = STATE(3541), - [sym_fixed_array_type] = STATE(2303), - [sym_array_type] = STATE(2303), - [sym_pointer_type] = STATE(2303), - [sym_wrong_pointer_type] = STATE(2303), - [sym_map_type] = STATE(2303), - [sym_channel_type] = STATE(2303), - [sym_shared_type] = STATE(2303), - [sym_thread_type] = STATE(2303), - [sym_atomic_type] = STATE(2303), - [sym_generic_type] = STATE(2303), - [sym_function_type] = STATE(2303), - [sym_block] = STATE(1001), - [sym_identifier] = ACTIONS(1807), - [anon_sym_SLASH_SLASH] = ACTIONS(3), - [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1428), + [ts_builtin_sym_end] = ACTIONS(1807), + [sym_identifier] = ACTIONS(1809), + [anon_sym_LF] = ACTIONS(1809), + [anon_sym_CR] = ACTIONS(1809), + [anon_sym_CR_LF] = ACTIONS(1809), + [anon_sym_SLASH_SLASH] = ACTIONS(497), + [anon_sym_SLASH_STAR] = ACTIONS(499), + [anon_sym_DOT] = ACTIONS(1809), + [anon_sym_as] = ACTIONS(1809), [anon_sym_LBRACE] = ACTIONS(1809), - [anon_sym_LPAREN] = ACTIONS(1432), - [anon_sym_fn] = ACTIONS(1434), - [anon_sym_PLUS] = ACTIONS(1811), - [anon_sym_DASH] = ACTIONS(1811), - [anon_sym_STAR] = ACTIONS(1813), - [anon_sym_struct] = ACTIONS(1440), - [anon_sym_mut] = ACTIONS(41), - [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(1815), - [anon_sym_go] = ACTIONS(1817), - [anon_sym_spawn] = ACTIONS(1819), - [anon_sym_json_DOTdecode] = ACTIONS(1448), - [anon_sym_LBRACK2] = ACTIONS(1821), - [anon_sym_TILDE] = ACTIONS(1811), - [anon_sym_CARET] = ACTIONS(1811), - [anon_sym_AMP] = ACTIONS(1823), - [anon_sym_LT_DASH] = ACTIONS(1825), - [sym_none] = ACTIONS(1456), - [sym_true] = ACTIONS(1456), - [sym_false] = ACTIONS(1456), - [sym_nil] = ACTIONS(1456), - [anon_sym_if] = ACTIONS(1827), - [anon_sym_DOLLARif] = ACTIONS(1460), - [anon_sym_match] = ACTIONS(1462), - [anon_sym_select] = ACTIONS(1829), - [anon_sym_lock] = ACTIONS(1831), - [anon_sym_rlock] = ACTIONS(1831), - [anon_sym_unsafe] = ACTIONS(1833), - [anon_sym_sql] = ACTIONS(1470), - [sym_int_literal] = ACTIONS(1456), - [sym_float_literal] = ACTIONS(1472), - [sym_rune_literal] = ACTIONS(1472), - [sym_pseudo_compile_time_identifier] = ACTIONS(1474), - [anon_sym_shared] = ACTIONS(83), - [anon_sym_map_LBRACK] = ACTIONS(85), - [anon_sym_chan] = ACTIONS(87), - [anon_sym_thread] = ACTIONS(89), - [anon_sym_atomic] = ACTIONS(91), - [sym___double_quote] = ACTIONS(1478), - [sym___single_quote] = ACTIONS(1480), - [sym___c_double_quote] = ACTIONS(1482), - [sym___c_single_quote] = ACTIONS(1484), - [sym___r_double_quote] = ACTIONS(1486), - [sym___r_single_quote] = ACTIONS(1488), + [anon_sym_COMMA] = ACTIONS(1809), + [anon_sym_const] = ACTIONS(1809), + [anon_sym_LPAREN] = ACTIONS(1809), + [anon_sym_EQ] = ACTIONS(1809), + [anon_sym___global] = ACTIONS(1809), + [anon_sym_type] = ACTIONS(1809), + [anon_sym_PIPE] = ACTIONS(1809), + [anon_sym_fn] = ACTIONS(1809), + [anon_sym_PLUS] = ACTIONS(1809), + [anon_sym_DASH] = ACTIONS(1809), + [anon_sym_STAR] = ACTIONS(1809), + [anon_sym_SLASH] = ACTIONS(1809), + [anon_sym_PERCENT] = ACTIONS(1809), + [anon_sym_LT] = ACTIONS(1809), + [anon_sym_GT] = ACTIONS(1809), + [anon_sym_EQ_EQ] = ACTIONS(1809), + [anon_sym_BANG_EQ] = ACTIONS(1809), + [anon_sym_LT_EQ] = ACTIONS(1809), + [anon_sym_GT_EQ] = ACTIONS(1809), + [anon_sym_LBRACK] = ACTIONS(1807), + [anon_sym_struct] = ACTIONS(1809), + [anon_sym_union] = ACTIONS(1809), + [anon_sym_pub] = ACTIONS(1809), + [anon_sym_mut] = ACTIONS(1809), + [anon_sym_enum] = ACTIONS(1809), + [anon_sym_interface] = ACTIONS(1809), + [anon_sym_PLUS_PLUS] = ACTIONS(1809), + [anon_sym_DASH_DASH] = ACTIONS(1809), + [anon_sym_QMARK] = ACTIONS(1809), + [anon_sym_BANG] = ACTIONS(1809), + [anon_sym_go] = ACTIONS(1809), + [anon_sym_spawn] = ACTIONS(1809), + [anon_sym_json_DOTdecode] = ACTIONS(1809), + [anon_sym_LBRACK2] = ACTIONS(1809), + [anon_sym_TILDE] = ACTIONS(1809), + [anon_sym_CARET] = ACTIONS(1809), + [anon_sym_AMP] = ACTIONS(1809), + [anon_sym_LT_DASH] = ACTIONS(1809), + [anon_sym_LT_LT] = ACTIONS(1809), + [anon_sym_GT_GT] = ACTIONS(1809), + [anon_sym_GT_GT_GT] = ACTIONS(1809), + [anon_sym_AMP_CARET] = ACTIONS(1809), + [anon_sym_AMP_AMP] = ACTIONS(1809), + [anon_sym_PIPE_PIPE] = ACTIONS(1809), + [anon_sym_or] = ACTIONS(1809), + [sym_none] = ACTIONS(1809), + [sym_true] = ACTIONS(1809), + [sym_false] = ACTIONS(1809), + [sym_nil] = ACTIONS(1809), + [anon_sym_QMARK_DOT] = ACTIONS(1809), + [anon_sym_POUND_LBRACK] = ACTIONS(1809), + [anon_sym_if] = ACTIONS(1809), + [anon_sym_else] = ACTIONS(1809), + [anon_sym_DOLLARif] = ACTIONS(1809), + [anon_sym_is] = ACTIONS(1809), + [anon_sym_BANGis] = ACTIONS(1809), + [anon_sym_in] = ACTIONS(1809), + [anon_sym_BANGin] = ACTIONS(1809), + [anon_sym_match] = ACTIONS(1809), + [anon_sym_select] = ACTIONS(1809), + [anon_sym_STAR_EQ] = ACTIONS(1809), + [anon_sym_SLASH_EQ] = ACTIONS(1809), + [anon_sym_PERCENT_EQ] = ACTIONS(1809), + [anon_sym_LT_LT_EQ] = ACTIONS(1809), + [anon_sym_GT_GT_EQ] = ACTIONS(1809), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(1809), + [anon_sym_AMP_EQ] = ACTIONS(1809), + [anon_sym_AMP_CARET_EQ] = ACTIONS(1809), + [anon_sym_PLUS_EQ] = ACTIONS(1809), + [anon_sym_DASH_EQ] = ACTIONS(1809), + [anon_sym_PIPE_EQ] = ACTIONS(1809), + [anon_sym_CARET_EQ] = ACTIONS(1809), + [anon_sym_COLON_EQ] = ACTIONS(1809), + [anon_sym_lock] = ACTIONS(1809), + [anon_sym_rlock] = ACTIONS(1809), + [anon_sym_unsafe] = ACTIONS(1809), + [anon_sym_sql] = ACTIONS(1809), + [sym_int_literal] = ACTIONS(1809), + [sym_float_literal] = ACTIONS(1809), + [sym_rune_literal] = ACTIONS(1809), + [sym_pseudo_compile_time_identifier] = ACTIONS(1809), + [anon_sym_shared] = ACTIONS(1809), + [anon_sym_map_LBRACK] = ACTIONS(1809), + [anon_sym_chan] = ACTIONS(1809), + [anon_sym_thread] = ACTIONS(1809), + [anon_sym_atomic] = ACTIONS(1809), + [anon_sym_assert] = ACTIONS(1809), + [anon_sym_defer] = ACTIONS(1809), + [anon_sym_goto] = ACTIONS(1809), + [anon_sym_break] = ACTIONS(1809), + [anon_sym_continue] = ACTIONS(1809), + [anon_sym_return] = ACTIONS(1809), + [anon_sym_DOLLARfor] = ACTIONS(1809), + [anon_sym_for] = ACTIONS(1809), + [anon_sym_POUND] = ACTIONS(1809), + [anon_sym_asm] = ACTIONS(1809), + [anon_sym_AT_LBRACK] = ACTIONS(1809), + [sym___double_quote] = ACTIONS(1809), + [sym___single_quote] = ACTIONS(1809), + [sym___c_double_quote] = ACTIONS(1809), + [sym___c_single_quote] = ACTIONS(1809), + [sym___r_double_quote] = ACTIONS(1809), + [sym___r_single_quote] = ACTIONS(1809), }, [232] = { [sym_line_comment] = STATE(232), [sym_block_comment] = STATE(232), - [sym__expression] = STATE(2716), - [sym__expression_without_blocks] = STATE(2300), - [sym__expression_with_blocks] = STATE(2300), - [sym_inc_expression] = STATE(2307), - [sym_dec_expression] = STATE(2307), - [sym_or_block_expression] = STATE(2307), - [sym_option_propagation_expression] = STATE(2307), - [sym_result_propagation_expression] = STATE(2307), - [sym_anon_struct_value_expression] = STATE(2380), - [sym_go_expression] = STATE(2307), - [sym_spawn_expression] = STATE(2307), - [sym_parenthesized_expression] = STATE(2307), - [sym_call_expression] = STATE(2307), - [sym_type_initializer] = STATE(2380), - [sym_function_literal] = STATE(2307), - [sym_reference_expression] = STATE(2311), - [sym_type_reference_expression] = STATE(3541), - [sym_unary_expression] = STATE(2307), - [sym_receive_expression] = STATE(2307), - [sym_binary_expression] = STATE(2307), - [sym_as_type_cast_expression] = STATE(2307), - [sym__max_group] = STATE(2307), - [sym_literal] = STATE(2292), - [sym_map_init_expression] = STATE(2380), - [sym_map_keyed_element] = STATE(2001), - [sym_array_creation] = STATE(2307), - [sym_fixed_array_creation] = STATE(2307), - [sym_selector_expression] = STATE(2307), - [sym_index_expression] = STATE(2307), - [sym_slice_expression] = STATE(2307), - [sym_if_expression] = STATE(2380), - [sym_compile_time_if_expression] = STATE(2380), - [sym_is_expression] = STATE(2307), - [sym_in_expression] = STATE(2307), - [sym_enum_fetch] = STATE(2307), - [sym_match_expression] = STATE(2380), - [sym_select_expression] = STATE(2380), - [sym_lock_expression] = STATE(2380), - [sym_unsafe_expression] = STATE(2380), - [sym_sql_expression] = STATE(2380), - [sym_c_string_literal] = STATE(2308), - [sym_raw_string_literal] = STATE(2308), - [sym_interpreted_string_literal] = STATE(2308), - [sym_mutability_modifiers] = STATE(939), - [sym_plain_type] = STATE(4297), - [sym__plain_type_without_special] = STATE(2302), - [sym_anon_struct_type] = STATE(2303), - [sym_multi_return_type] = STATE(2302), - [sym_result_type] = STATE(2302), - [sym_option_type] = STATE(2302), - [sym_qualified_type] = STATE(3541), - [sym_fixed_array_type] = STATE(2303), - [sym_array_type] = STATE(2303), - [sym_pointer_type] = STATE(2303), - [sym_wrong_pointer_type] = STATE(2303), - [sym_map_type] = STATE(2303), - [sym_channel_type] = STATE(2303), - [sym_shared_type] = STATE(2303), - [sym_thread_type] = STATE(2303), - [sym_atomic_type] = STATE(2303), - [sym_generic_type] = STATE(2303), - [sym_function_type] = STATE(2303), - [aux_sym_map_init_expression_repeat1] = STATE(307), - [sym_identifier] = ACTIONS(1426), - [anon_sym_SLASH_SLASH] = ACTIONS(3), - [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1428), - [anon_sym_LBRACE] = ACTIONS(1430), - [anon_sym_RBRACE] = ACTIONS(1835), - [anon_sym_LPAREN] = ACTIONS(1432), - [anon_sym_fn] = ACTIONS(1434), - [anon_sym_PLUS] = ACTIONS(1436), - [anon_sym_DASH] = ACTIONS(1436), - [anon_sym_STAR] = ACTIONS(1438), - [anon_sym_struct] = ACTIONS(1440), - [anon_sym_mut] = ACTIONS(41), - [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(1442), - [anon_sym_go] = ACTIONS(1444), - [anon_sym_spawn] = ACTIONS(1446), - [anon_sym_json_DOTdecode] = ACTIONS(1448), - [anon_sym_LBRACK2] = ACTIONS(1450), - [anon_sym_TILDE] = ACTIONS(1436), - [anon_sym_CARET] = ACTIONS(1436), - [anon_sym_AMP] = ACTIONS(1452), - [anon_sym_LT_DASH] = ACTIONS(1454), - [sym_none] = ACTIONS(1456), - [sym_true] = ACTIONS(1456), - [sym_false] = ACTIONS(1456), - [sym_nil] = ACTIONS(1456), - [anon_sym_if] = ACTIONS(1827), - [anon_sym_DOLLARif] = ACTIONS(1460), - [anon_sym_match] = ACTIONS(1462), - [anon_sym_select] = ACTIONS(1464), - [anon_sym_lock] = ACTIONS(1466), - [anon_sym_rlock] = ACTIONS(1466), - [anon_sym_unsafe] = ACTIONS(1833), - [anon_sym_sql] = ACTIONS(1470), - [sym_int_literal] = ACTIONS(1456), - [sym_float_literal] = ACTIONS(1472), - [sym_rune_literal] = ACTIONS(1472), - [sym_pseudo_compile_time_identifier] = ACTIONS(1474), - [anon_sym_shared] = ACTIONS(83), - [anon_sym_map_LBRACK] = ACTIONS(85), - [anon_sym_chan] = ACTIONS(87), - [anon_sym_thread] = ACTIONS(89), - [anon_sym_atomic] = ACTIONS(91), - [sym___double_quote] = ACTIONS(1478), - [sym___single_quote] = ACTIONS(1480), - [sym___c_double_quote] = ACTIONS(1482), - [sym___c_single_quote] = ACTIONS(1484), - [sym___r_double_quote] = ACTIONS(1486), - [sym___r_single_quote] = ACTIONS(1488), + [ts_builtin_sym_end] = ACTIONS(1807), + [sym_identifier] = ACTIONS(1809), + [anon_sym_LF] = ACTIONS(1809), + [anon_sym_CR] = ACTIONS(1809), + [anon_sym_CR_LF] = ACTIONS(1809), + [anon_sym_SLASH_SLASH] = ACTIONS(497), + [anon_sym_SLASH_STAR] = ACTIONS(499), + [anon_sym_DOT] = ACTIONS(1809), + [anon_sym_as] = ACTIONS(1809), + [anon_sym_LBRACE] = ACTIONS(1809), + [anon_sym_COMMA] = ACTIONS(1809), + [anon_sym_const] = ACTIONS(1809), + [anon_sym_LPAREN] = ACTIONS(1809), + [anon_sym_EQ] = ACTIONS(1809), + [anon_sym___global] = ACTIONS(1809), + [anon_sym_type] = ACTIONS(1809), + [anon_sym_PIPE] = ACTIONS(1809), + [anon_sym_fn] = ACTIONS(1809), + [anon_sym_PLUS] = ACTIONS(1809), + [anon_sym_DASH] = ACTIONS(1809), + [anon_sym_STAR] = ACTIONS(1809), + [anon_sym_SLASH] = ACTIONS(1809), + [anon_sym_PERCENT] = ACTIONS(1809), + [anon_sym_LT] = ACTIONS(1809), + [anon_sym_GT] = ACTIONS(1809), + [anon_sym_EQ_EQ] = ACTIONS(1809), + [anon_sym_BANG_EQ] = ACTIONS(1809), + [anon_sym_LT_EQ] = ACTIONS(1809), + [anon_sym_GT_EQ] = ACTIONS(1809), + [anon_sym_LBRACK] = ACTIONS(1807), + [anon_sym_struct] = ACTIONS(1809), + [anon_sym_union] = ACTIONS(1809), + [anon_sym_pub] = ACTIONS(1809), + [anon_sym_mut] = ACTIONS(1809), + [anon_sym_enum] = ACTIONS(1809), + [anon_sym_interface] = ACTIONS(1809), + [anon_sym_PLUS_PLUS] = ACTIONS(1809), + [anon_sym_DASH_DASH] = ACTIONS(1809), + [anon_sym_QMARK] = ACTIONS(1809), + [anon_sym_BANG] = ACTIONS(1809), + [anon_sym_go] = ACTIONS(1809), + [anon_sym_spawn] = ACTIONS(1809), + [anon_sym_json_DOTdecode] = ACTIONS(1809), + [anon_sym_LBRACK2] = ACTIONS(1809), + [anon_sym_TILDE] = ACTIONS(1809), + [anon_sym_CARET] = ACTIONS(1809), + [anon_sym_AMP] = ACTIONS(1809), + [anon_sym_LT_DASH] = ACTIONS(1809), + [anon_sym_LT_LT] = ACTIONS(1809), + [anon_sym_GT_GT] = ACTIONS(1809), + [anon_sym_GT_GT_GT] = ACTIONS(1809), + [anon_sym_AMP_CARET] = ACTIONS(1809), + [anon_sym_AMP_AMP] = ACTIONS(1809), + [anon_sym_PIPE_PIPE] = ACTIONS(1809), + [anon_sym_or] = ACTIONS(1809), + [sym_none] = ACTIONS(1809), + [sym_true] = ACTIONS(1809), + [sym_false] = ACTIONS(1809), + [sym_nil] = ACTIONS(1809), + [anon_sym_QMARK_DOT] = ACTIONS(1809), + [anon_sym_POUND_LBRACK] = ACTIONS(1809), + [anon_sym_if] = ACTIONS(1809), + [anon_sym_DOLLARif] = ACTIONS(1809), + [anon_sym_DOLLARelse] = ACTIONS(1809), + [anon_sym_is] = ACTIONS(1809), + [anon_sym_BANGis] = ACTIONS(1809), + [anon_sym_in] = ACTIONS(1809), + [anon_sym_BANGin] = ACTIONS(1809), + [anon_sym_match] = ACTIONS(1809), + [anon_sym_select] = ACTIONS(1809), + [anon_sym_STAR_EQ] = ACTIONS(1809), + [anon_sym_SLASH_EQ] = ACTIONS(1809), + [anon_sym_PERCENT_EQ] = ACTIONS(1809), + [anon_sym_LT_LT_EQ] = ACTIONS(1809), + [anon_sym_GT_GT_EQ] = ACTIONS(1809), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(1809), + [anon_sym_AMP_EQ] = ACTIONS(1809), + [anon_sym_AMP_CARET_EQ] = ACTIONS(1809), + [anon_sym_PLUS_EQ] = ACTIONS(1809), + [anon_sym_DASH_EQ] = ACTIONS(1809), + [anon_sym_PIPE_EQ] = ACTIONS(1809), + [anon_sym_CARET_EQ] = ACTIONS(1809), + [anon_sym_COLON_EQ] = ACTIONS(1809), + [anon_sym_lock] = ACTIONS(1809), + [anon_sym_rlock] = ACTIONS(1809), + [anon_sym_unsafe] = ACTIONS(1809), + [anon_sym_sql] = ACTIONS(1809), + [sym_int_literal] = ACTIONS(1809), + [sym_float_literal] = ACTIONS(1809), + [sym_rune_literal] = ACTIONS(1809), + [sym_pseudo_compile_time_identifier] = ACTIONS(1809), + [anon_sym_shared] = ACTIONS(1809), + [anon_sym_map_LBRACK] = ACTIONS(1809), + [anon_sym_chan] = ACTIONS(1809), + [anon_sym_thread] = ACTIONS(1809), + [anon_sym_atomic] = ACTIONS(1809), + [anon_sym_assert] = ACTIONS(1809), + [anon_sym_defer] = ACTIONS(1809), + [anon_sym_goto] = ACTIONS(1809), + [anon_sym_break] = ACTIONS(1809), + [anon_sym_continue] = ACTIONS(1809), + [anon_sym_return] = ACTIONS(1809), + [anon_sym_DOLLARfor] = ACTIONS(1809), + [anon_sym_for] = ACTIONS(1809), + [anon_sym_POUND] = ACTIONS(1809), + [anon_sym_asm] = ACTIONS(1809), + [anon_sym_AT_LBRACK] = ACTIONS(1809), + [sym___double_quote] = ACTIONS(1809), + [sym___single_quote] = ACTIONS(1809), + [sym___c_double_quote] = ACTIONS(1809), + [sym___c_single_quote] = ACTIONS(1809), + [sym___r_double_quote] = ACTIONS(1809), + [sym___r_single_quote] = ACTIONS(1809), }, [233] = { [sym_line_comment] = STATE(233), [sym_block_comment] = STATE(233), - [sym__expression] = STATE(2716), - [sym__expression_without_blocks] = STATE(2300), - [sym__expression_with_blocks] = STATE(2300), - [sym_inc_expression] = STATE(2307), - [sym_dec_expression] = STATE(2307), - [sym_or_block_expression] = STATE(2307), - [sym_option_propagation_expression] = STATE(2307), - [sym_result_propagation_expression] = STATE(2307), - [sym_anon_struct_value_expression] = STATE(2380), - [sym_go_expression] = STATE(2307), - [sym_spawn_expression] = STATE(2307), - [sym_parenthesized_expression] = STATE(2307), - [sym_call_expression] = STATE(2307), - [sym_type_initializer] = STATE(2380), - [sym_function_literal] = STATE(2307), - [sym_reference_expression] = STATE(2311), - [sym_type_reference_expression] = STATE(3541), - [sym_unary_expression] = STATE(2307), - [sym_receive_expression] = STATE(2307), - [sym_binary_expression] = STATE(2307), - [sym_as_type_cast_expression] = STATE(2307), - [sym__max_group] = STATE(2307), - [sym_literal] = STATE(2292), - [sym_map_init_expression] = STATE(2380), - [sym_map_keyed_element] = STATE(2001), - [sym_array_creation] = STATE(2307), - [sym_fixed_array_creation] = STATE(2307), - [sym_selector_expression] = STATE(2307), - [sym_index_expression] = STATE(2307), - [sym_slice_expression] = STATE(2307), - [sym_if_expression] = STATE(2380), - [sym_compile_time_if_expression] = STATE(2380), - [sym_is_expression] = STATE(2307), - [sym_in_expression] = STATE(2307), - [sym_enum_fetch] = STATE(2307), - [sym_match_expression] = STATE(2380), - [sym_select_expression] = STATE(2380), - [sym_lock_expression] = STATE(2380), - [sym_unsafe_expression] = STATE(2380), - [sym_sql_expression] = STATE(2380), - [sym_c_string_literal] = STATE(2308), - [sym_raw_string_literal] = STATE(2308), - [sym_interpreted_string_literal] = STATE(2308), - [sym_mutability_modifiers] = STATE(939), - [sym_plain_type] = STATE(4297), - [sym__plain_type_without_special] = STATE(2302), - [sym_anon_struct_type] = STATE(2303), - [sym_multi_return_type] = STATE(2302), - [sym_result_type] = STATE(2302), - [sym_option_type] = STATE(2302), - [sym_qualified_type] = STATE(3541), - [sym_fixed_array_type] = STATE(2303), - [sym_array_type] = STATE(2303), - [sym_pointer_type] = STATE(2303), - [sym_wrong_pointer_type] = STATE(2303), - [sym_map_type] = STATE(2303), - [sym_channel_type] = STATE(2303), - [sym_shared_type] = STATE(2303), - [sym_thread_type] = STATE(2303), - [sym_atomic_type] = STATE(2303), - [sym_generic_type] = STATE(2303), - [sym_function_type] = STATE(2303), - [aux_sym_map_init_expression_repeat1] = STATE(234), - [sym_identifier] = ACTIONS(1426), - [anon_sym_SLASH_SLASH] = ACTIONS(3), - [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1428), - [anon_sym_LBRACE] = ACTIONS(1430), - [anon_sym_RBRACE] = ACTIONS(1837), - [anon_sym_LPAREN] = ACTIONS(1432), - [anon_sym_fn] = ACTIONS(1434), - [anon_sym_PLUS] = ACTIONS(1436), - [anon_sym_DASH] = ACTIONS(1436), - [anon_sym_STAR] = ACTIONS(1438), - [anon_sym_struct] = ACTIONS(1440), - [anon_sym_mut] = ACTIONS(41), - [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(1442), - [anon_sym_go] = ACTIONS(1444), - [anon_sym_spawn] = ACTIONS(1446), - [anon_sym_json_DOTdecode] = ACTIONS(1448), - [anon_sym_LBRACK2] = ACTIONS(1450), - [anon_sym_TILDE] = ACTIONS(1436), - [anon_sym_CARET] = ACTIONS(1436), - [anon_sym_AMP] = ACTIONS(1452), - [anon_sym_LT_DASH] = ACTIONS(1454), - [sym_none] = ACTIONS(1456), - [sym_true] = ACTIONS(1456), - [sym_false] = ACTIONS(1456), - [sym_nil] = ACTIONS(1456), - [anon_sym_if] = ACTIONS(1827), - [anon_sym_DOLLARif] = ACTIONS(1460), - [anon_sym_match] = ACTIONS(1462), - [anon_sym_select] = ACTIONS(1464), - [anon_sym_lock] = ACTIONS(1466), - [anon_sym_rlock] = ACTIONS(1466), - [anon_sym_unsafe] = ACTIONS(1833), - [anon_sym_sql] = ACTIONS(1470), - [sym_int_literal] = ACTIONS(1456), - [sym_float_literal] = ACTIONS(1472), - [sym_rune_literal] = ACTIONS(1472), - [sym_pseudo_compile_time_identifier] = ACTIONS(1474), - [anon_sym_shared] = ACTIONS(83), - [anon_sym_map_LBRACK] = ACTIONS(85), - [anon_sym_chan] = ACTIONS(87), - [anon_sym_thread] = ACTIONS(89), - [anon_sym_atomic] = ACTIONS(91), - [sym___double_quote] = ACTIONS(1478), - [sym___single_quote] = ACTIONS(1480), - [sym___c_double_quote] = ACTIONS(1482), - [sym___c_single_quote] = ACTIONS(1484), - [sym___r_double_quote] = ACTIONS(1486), - [sym___r_single_quote] = ACTIONS(1488), + [ts_builtin_sym_end] = ACTIONS(1811), + [sym_identifier] = ACTIONS(1813), + [anon_sym_LF] = ACTIONS(1813), + [anon_sym_CR] = ACTIONS(1813), + [anon_sym_CR_LF] = ACTIONS(1813), + [anon_sym_SLASH_SLASH] = ACTIONS(497), + [anon_sym_SLASH_STAR] = ACTIONS(499), + [anon_sym_DOT] = ACTIONS(1813), + [anon_sym_as] = ACTIONS(1813), + [anon_sym_LBRACE] = ACTIONS(1813), + [anon_sym_COMMA] = ACTIONS(1813), + [anon_sym_const] = ACTIONS(1813), + [anon_sym_LPAREN] = ACTIONS(1813), + [anon_sym_EQ] = ACTIONS(1813), + [anon_sym___global] = ACTIONS(1813), + [anon_sym_type] = ACTIONS(1813), + [anon_sym_PIPE] = ACTIONS(1813), + [anon_sym_fn] = ACTIONS(1813), + [anon_sym_PLUS] = ACTIONS(1813), + [anon_sym_DASH] = ACTIONS(1813), + [anon_sym_STAR] = ACTIONS(1813), + [anon_sym_SLASH] = ACTIONS(1813), + [anon_sym_PERCENT] = ACTIONS(1813), + [anon_sym_LT] = ACTIONS(1813), + [anon_sym_GT] = ACTIONS(1813), + [anon_sym_EQ_EQ] = ACTIONS(1813), + [anon_sym_BANG_EQ] = ACTIONS(1813), + [anon_sym_LT_EQ] = ACTIONS(1813), + [anon_sym_GT_EQ] = ACTIONS(1813), + [anon_sym_LBRACK] = ACTIONS(1811), + [anon_sym_struct] = ACTIONS(1813), + [anon_sym_union] = ACTIONS(1813), + [anon_sym_pub] = ACTIONS(1813), + [anon_sym_mut] = ACTIONS(1813), + [anon_sym_enum] = ACTIONS(1813), + [anon_sym_interface] = ACTIONS(1813), + [anon_sym_PLUS_PLUS] = ACTIONS(1813), + [anon_sym_DASH_DASH] = ACTIONS(1813), + [anon_sym_QMARK] = ACTIONS(1813), + [anon_sym_BANG] = ACTIONS(1813), + [anon_sym_go] = ACTIONS(1813), + [anon_sym_spawn] = ACTIONS(1813), + [anon_sym_json_DOTdecode] = ACTIONS(1813), + [anon_sym_LBRACK2] = ACTIONS(1813), + [anon_sym_TILDE] = ACTIONS(1813), + [anon_sym_CARET] = ACTIONS(1813), + [anon_sym_AMP] = ACTIONS(1813), + [anon_sym_LT_DASH] = ACTIONS(1813), + [anon_sym_LT_LT] = ACTIONS(1813), + [anon_sym_GT_GT] = ACTIONS(1813), + [anon_sym_GT_GT_GT] = ACTIONS(1813), + [anon_sym_AMP_CARET] = ACTIONS(1813), + [anon_sym_AMP_AMP] = ACTIONS(1813), + [anon_sym_PIPE_PIPE] = ACTIONS(1813), + [anon_sym_or] = ACTIONS(1813), + [sym_none] = ACTIONS(1813), + [sym_true] = ACTIONS(1813), + [sym_false] = ACTIONS(1813), + [sym_nil] = ACTIONS(1813), + [anon_sym_QMARK_DOT] = ACTIONS(1813), + [anon_sym_POUND_LBRACK] = ACTIONS(1813), + [anon_sym_if] = ACTIONS(1813), + [anon_sym_else] = ACTIONS(1813), + [anon_sym_DOLLARif] = ACTIONS(1813), + [anon_sym_is] = ACTIONS(1813), + [anon_sym_BANGis] = ACTIONS(1813), + [anon_sym_in] = ACTIONS(1813), + [anon_sym_BANGin] = ACTIONS(1813), + [anon_sym_match] = ACTIONS(1813), + [anon_sym_select] = ACTIONS(1813), + [anon_sym_STAR_EQ] = ACTIONS(1813), + [anon_sym_SLASH_EQ] = ACTIONS(1813), + [anon_sym_PERCENT_EQ] = ACTIONS(1813), + [anon_sym_LT_LT_EQ] = ACTIONS(1813), + [anon_sym_GT_GT_EQ] = ACTIONS(1813), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(1813), + [anon_sym_AMP_EQ] = ACTIONS(1813), + [anon_sym_AMP_CARET_EQ] = ACTIONS(1813), + [anon_sym_PLUS_EQ] = ACTIONS(1813), + [anon_sym_DASH_EQ] = ACTIONS(1813), + [anon_sym_PIPE_EQ] = ACTIONS(1813), + [anon_sym_CARET_EQ] = ACTIONS(1813), + [anon_sym_COLON_EQ] = ACTIONS(1813), + [anon_sym_lock] = ACTIONS(1813), + [anon_sym_rlock] = ACTIONS(1813), + [anon_sym_unsafe] = ACTIONS(1813), + [anon_sym_sql] = ACTIONS(1813), + [sym_int_literal] = ACTIONS(1813), + [sym_float_literal] = ACTIONS(1813), + [sym_rune_literal] = ACTIONS(1813), + [sym_pseudo_compile_time_identifier] = ACTIONS(1813), + [anon_sym_shared] = ACTIONS(1813), + [anon_sym_map_LBRACK] = ACTIONS(1813), + [anon_sym_chan] = ACTIONS(1813), + [anon_sym_thread] = ACTIONS(1813), + [anon_sym_atomic] = ACTIONS(1813), + [anon_sym_assert] = ACTIONS(1813), + [anon_sym_defer] = ACTIONS(1813), + [anon_sym_goto] = ACTIONS(1813), + [anon_sym_break] = ACTIONS(1813), + [anon_sym_continue] = ACTIONS(1813), + [anon_sym_return] = ACTIONS(1813), + [anon_sym_DOLLARfor] = ACTIONS(1813), + [anon_sym_for] = ACTIONS(1813), + [anon_sym_POUND] = ACTIONS(1813), + [anon_sym_asm] = ACTIONS(1813), + [anon_sym_AT_LBRACK] = ACTIONS(1813), + [sym___double_quote] = ACTIONS(1813), + [sym___single_quote] = ACTIONS(1813), + [sym___c_double_quote] = ACTIONS(1813), + [sym___c_single_quote] = ACTIONS(1813), + [sym___r_double_quote] = ACTIONS(1813), + [sym___r_single_quote] = ACTIONS(1813), }, [234] = { [sym_line_comment] = STATE(234), [sym_block_comment] = STATE(234), - [sym__expression] = STATE(2716), - [sym__expression_without_blocks] = STATE(2300), - [sym__expression_with_blocks] = STATE(2300), - [sym_inc_expression] = STATE(2307), - [sym_dec_expression] = STATE(2307), - [sym_or_block_expression] = STATE(2307), - [sym_option_propagation_expression] = STATE(2307), - [sym_result_propagation_expression] = STATE(2307), - [sym_anon_struct_value_expression] = STATE(2380), - [sym_go_expression] = STATE(2307), - [sym_spawn_expression] = STATE(2307), - [sym_parenthesized_expression] = STATE(2307), - [sym_call_expression] = STATE(2307), - [sym_type_initializer] = STATE(2380), - [sym_function_literal] = STATE(2307), - [sym_reference_expression] = STATE(2311), - [sym_type_reference_expression] = STATE(3541), - [sym_unary_expression] = STATE(2307), - [sym_receive_expression] = STATE(2307), - [sym_binary_expression] = STATE(2307), - [sym_as_type_cast_expression] = STATE(2307), - [sym__max_group] = STATE(2307), - [sym_literal] = STATE(2292), - [sym_map_init_expression] = STATE(2380), - [sym_map_keyed_element] = STATE(2001), - [sym_array_creation] = STATE(2307), - [sym_fixed_array_creation] = STATE(2307), - [sym_selector_expression] = STATE(2307), - [sym_index_expression] = STATE(2307), - [sym_slice_expression] = STATE(2307), - [sym_if_expression] = STATE(2380), - [sym_compile_time_if_expression] = STATE(2380), - [sym_is_expression] = STATE(2307), - [sym_in_expression] = STATE(2307), - [sym_enum_fetch] = STATE(2307), - [sym_match_expression] = STATE(2380), - [sym_select_expression] = STATE(2380), - [sym_lock_expression] = STATE(2380), - [sym_unsafe_expression] = STATE(2380), - [sym_sql_expression] = STATE(2380), - [sym_c_string_literal] = STATE(2308), - [sym_raw_string_literal] = STATE(2308), - [sym_interpreted_string_literal] = STATE(2308), - [sym_mutability_modifiers] = STATE(939), - [sym_plain_type] = STATE(4297), - [sym__plain_type_without_special] = STATE(2302), - [sym_anon_struct_type] = STATE(2303), - [sym_multi_return_type] = STATE(2302), - [sym_result_type] = STATE(2302), - [sym_option_type] = STATE(2302), - [sym_qualified_type] = STATE(3541), - [sym_fixed_array_type] = STATE(2303), - [sym_array_type] = STATE(2303), - [sym_pointer_type] = STATE(2303), - [sym_wrong_pointer_type] = STATE(2303), - [sym_map_type] = STATE(2303), - [sym_channel_type] = STATE(2303), - [sym_shared_type] = STATE(2303), - [sym_thread_type] = STATE(2303), - [sym_atomic_type] = STATE(2303), - [sym_generic_type] = STATE(2303), - [sym_function_type] = STATE(2303), - [aux_sym_map_init_expression_repeat1] = STATE(295), - [sym_identifier] = ACTIONS(1426), + [sym__expression] = STATE(2363), + [sym__expression_without_blocks] = STATE(2347), + [sym__expression_with_blocks] = STATE(2347), + [sym_inc_expression] = STATE(2379), + [sym_dec_expression] = STATE(2379), + [sym_or_block_expression] = STATE(2379), + [sym_option_propagation_expression] = STATE(2379), + [sym_result_propagation_expression] = STATE(2379), + [sym_anon_struct_value_expression] = STATE(2378), + [sym_go_expression] = STATE(2379), + [sym_spawn_expression] = STATE(2379), + [sym_parenthesized_expression] = STATE(2379), + [sym_call_expression] = STATE(2379), + [sym_type_initializer] = STATE(2378), + [sym_function_literal] = STATE(2379), + [sym_reference_expression] = STATE(2377), + [sym_type_reference_expression] = STATE(3460), + [sym_unary_expression] = STATE(2379), + [sym_receive_expression] = STATE(2379), + [sym_binary_expression] = STATE(2379), + [sym_as_type_cast_expression] = STATE(2379), + [sym__max_group] = STATE(2379), + [sym_literal] = STATE(2392), + [sym_map_init_expression] = STATE(2378), + [sym_array_creation] = STATE(2379), + [sym_fixed_array_creation] = STATE(2379), + [sym_selector_expression] = STATE(2379), + [sym_index_expression] = STATE(2379), + [sym_slice_expression] = STATE(2379), + [sym_if_expression] = STATE(2378), + [sym_compile_time_if_expression] = STATE(2378), + [sym_is_expression] = STATE(2379), + [sym_in_expression] = STATE(2379), + [sym_enum_fetch] = STATE(2379), + [sym_match_expression] = STATE(2378), + [sym_select_expression] = STATE(2378), + [sym_lock_expression] = STATE(2378), + [sym_unsafe_expression] = STATE(2378), + [sym_sql_expression] = STATE(2378), + [sym_c_string_literal] = STATE(2401), + [sym_raw_string_literal] = STATE(2401), + [sym_interpreted_string_literal] = STATE(2401), + [sym_mutability_modifiers] = STATE(893), + [sym_mutable_expression] = STATE(3871), + [sym_expression_list] = STATE(4483), + [sym_plain_type] = STATE(4160), + [sym__plain_type_without_special] = STATE(2360), + [sym_anon_struct_type] = STATE(2362), + [sym_multi_return_type] = STATE(2360), + [sym_result_type] = STATE(2360), + [sym_option_type] = STATE(2360), + [sym_qualified_type] = STATE(3460), + [sym_fixed_array_type] = STATE(2362), + [sym_array_type] = STATE(2362), + [sym_pointer_type] = STATE(2362), + [sym_wrong_pointer_type] = STATE(2362), + [sym_map_type] = STATE(2362), + [sym_channel_type] = STATE(2362), + [sym_shared_type] = STATE(2362), + [sym_thread_type] = STATE(2362), + [sym_atomic_type] = STATE(2362), + [sym_generic_type] = STATE(2362), + [sym_function_type] = STATE(2362), + [sym_var_declaration] = STATE(4282), + [sym_identifier] = ACTIONS(1815), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1428), - [anon_sym_LBRACE] = ACTIONS(1430), - [anon_sym_RBRACE] = ACTIONS(1839), - [anon_sym_LPAREN] = ACTIONS(1432), - [anon_sym_fn] = ACTIONS(1434), - [anon_sym_PLUS] = ACTIONS(1436), - [anon_sym_DASH] = ACTIONS(1436), - [anon_sym_STAR] = ACTIONS(1438), - [anon_sym_struct] = ACTIONS(1440), + [anon_sym_DOT] = ACTIONS(1430), + [anon_sym_LBRACE] = ACTIONS(1432), + [anon_sym_LPAREN] = ACTIONS(1434), + [anon_sym_fn] = ACTIONS(1436), + [anon_sym_PLUS] = ACTIONS(1817), + [anon_sym_DASH] = ACTIONS(1817), + [anon_sym_STAR] = ACTIONS(1819), + [anon_sym_struct] = ACTIONS(1442), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(1442), - [anon_sym_go] = ACTIONS(1444), - [anon_sym_spawn] = ACTIONS(1446), - [anon_sym_json_DOTdecode] = ACTIONS(1448), - [anon_sym_LBRACK2] = ACTIONS(1450), - [anon_sym_TILDE] = ACTIONS(1436), - [anon_sym_CARET] = ACTIONS(1436), - [anon_sym_AMP] = ACTIONS(1452), - [anon_sym_LT_DASH] = ACTIONS(1454), - [sym_none] = ACTIONS(1456), - [sym_true] = ACTIONS(1456), - [sym_false] = ACTIONS(1456), - [sym_nil] = ACTIONS(1456), - [anon_sym_if] = ACTIONS(1827), - [anon_sym_DOLLARif] = ACTIONS(1460), - [anon_sym_match] = ACTIONS(1462), - [anon_sym_select] = ACTIONS(1464), - [anon_sym_lock] = ACTIONS(1466), - [anon_sym_rlock] = ACTIONS(1466), - [anon_sym_unsafe] = ACTIONS(1833), - [anon_sym_sql] = ACTIONS(1470), - [sym_int_literal] = ACTIONS(1456), - [sym_float_literal] = ACTIONS(1472), - [sym_rune_literal] = ACTIONS(1472), - [sym_pseudo_compile_time_identifier] = ACTIONS(1474), + [anon_sym_BANG] = ACTIONS(1821), + [anon_sym_go] = ACTIONS(1823), + [anon_sym_spawn] = ACTIONS(1825), + [anon_sym_json_DOTdecode] = ACTIONS(1450), + [anon_sym_LBRACK2] = ACTIONS(1827), + [anon_sym_TILDE] = ACTIONS(1817), + [anon_sym_CARET] = ACTIONS(1817), + [anon_sym_AMP] = ACTIONS(1829), + [anon_sym_LT_DASH] = ACTIONS(1831), + [sym_none] = ACTIONS(1458), + [sym_true] = ACTIONS(1458), + [sym_false] = ACTIONS(1458), + [sym_nil] = ACTIONS(1458), + [anon_sym_if] = ACTIONS(1833), + [anon_sym_DOLLARif] = ACTIONS(1462), + [anon_sym_match] = ACTIONS(1464), + [anon_sym_select] = ACTIONS(1835), + [anon_sym_lock] = ACTIONS(1837), + [anon_sym_rlock] = ACTIONS(1837), + [anon_sym_unsafe] = ACTIONS(1839), + [anon_sym_sql] = ACTIONS(1472), + [sym_int_literal] = ACTIONS(1458), + [sym_float_literal] = ACTIONS(1474), + [sym_rune_literal] = ACTIONS(1474), + [sym_pseudo_compile_time_identifier] = ACTIONS(1476), [anon_sym_shared] = ACTIONS(83), [anon_sym_map_LBRACK] = ACTIONS(85), [anon_sym_chan] = ACTIONS(87), [anon_sym_thread] = ACTIONS(89), [anon_sym_atomic] = ACTIONS(91), - [sym___double_quote] = ACTIONS(1478), - [sym___single_quote] = ACTIONS(1480), - [sym___c_double_quote] = ACTIONS(1482), - [sym___c_single_quote] = ACTIONS(1484), - [sym___r_double_quote] = ACTIONS(1486), - [sym___r_single_quote] = ACTIONS(1488), + [sym___double_quote] = ACTIONS(1480), + [sym___single_quote] = ACTIONS(1482), + [sym___c_double_quote] = ACTIONS(1484), + [sym___c_single_quote] = ACTIONS(1486), + [sym___r_double_quote] = ACTIONS(1488), + [sym___r_single_quote] = ACTIONS(1490), }, [235] = { [sym_line_comment] = STATE(235), [sym_block_comment] = STATE(235), - [sym__expression] = STATE(2455), - [sym__expression_without_blocks] = STATE(2300), - [sym__expression_with_blocks] = STATE(2300), - [sym_inc_expression] = STATE(2307), - [sym_dec_expression] = STATE(2307), - [sym_or_block_expression] = STATE(2307), - [sym_option_propagation_expression] = STATE(2307), - [sym_result_propagation_expression] = STATE(2307), - [sym_anon_struct_value_expression] = STATE(2380), - [sym_go_expression] = STATE(2307), - [sym_spawn_expression] = STATE(2307), - [sym_parenthesized_expression] = STATE(2307), - [sym_call_expression] = STATE(2307), - [sym_type_initializer] = STATE(2380), - [sym_function_literal] = STATE(2307), - [sym_reference_expression] = STATE(2311), - [sym_type_reference_expression] = STATE(3541), - [sym_unary_expression] = STATE(2307), - [sym_receive_expression] = STATE(2307), - [sym_binary_expression] = STATE(2307), - [sym_as_type_cast_expression] = STATE(2307), - [sym__max_group] = STATE(2307), - [sym_literal] = STATE(2292), - [sym_map_init_expression] = STATE(2380), - [sym_array_creation] = STATE(2307), - [sym_fixed_array_creation] = STATE(2307), - [sym_selector_expression] = STATE(2307), - [sym_index_expression] = STATE(2307), - [sym_slice_expression] = STATE(2307), - [sym_if_expression] = STATE(2380), - [sym_compile_time_if_expression] = STATE(2380), - [sym_is_expression] = STATE(2307), - [sym_in_expression] = STATE(2307), - [sym_enum_fetch] = STATE(2307), - [sym_match_expression] = STATE(2380), - [sym_select_expression] = STATE(2380), - [sym_lock_expression] = STATE(2380), - [sym_unsafe_expression] = STATE(2380), - [sym_sql_expression] = STATE(2380), - [sym_c_string_literal] = STATE(2308), - [sym_raw_string_literal] = STATE(2308), - [sym_interpreted_string_literal] = STATE(2308), - [sym_mutability_modifiers] = STATE(824), - [sym_mutable_expression] = STATE(3922), - [sym_expression_list] = STATE(4147), - [sym_plain_type] = STATE(4297), - [sym__plain_type_without_special] = STATE(2302), - [sym_anon_struct_type] = STATE(2303), - [sym_multi_return_type] = STATE(2302), - [sym_result_type] = STATE(2302), - [sym_option_type] = STATE(2302), - [sym_qualified_type] = STATE(3541), - [sym_fixed_array_type] = STATE(2303), - [sym_array_type] = STATE(2303), - [sym_pointer_type] = STATE(2303), - [sym_wrong_pointer_type] = STATE(2303), - [sym_map_type] = STATE(2303), - [sym_channel_type] = STATE(2303), - [sym_shared_type] = STATE(2303), - [sym_thread_type] = STATE(2303), - [sym_atomic_type] = STATE(2303), - [sym_generic_type] = STATE(2303), - [sym_function_type] = STATE(2303), - [sym_block] = STATE(2633), - [sym_identifier] = ACTIONS(1807), - [anon_sym_SLASH_SLASH] = ACTIONS(3), - [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1428), - [anon_sym_LBRACE] = ACTIONS(1841), - [anon_sym_LPAREN] = ACTIONS(1432), - [anon_sym_fn] = ACTIONS(1434), - [anon_sym_PLUS] = ACTIONS(1811), - [anon_sym_DASH] = ACTIONS(1811), - [anon_sym_STAR] = ACTIONS(1813), - [anon_sym_struct] = ACTIONS(1440), - [anon_sym_mut] = ACTIONS(41), - [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(1815), - [anon_sym_go] = ACTIONS(1817), - [anon_sym_spawn] = ACTIONS(1819), - [anon_sym_json_DOTdecode] = ACTIONS(1448), - [anon_sym_LBRACK2] = ACTIONS(1821), - [anon_sym_TILDE] = ACTIONS(1811), - [anon_sym_CARET] = ACTIONS(1811), - [anon_sym_AMP] = ACTIONS(1823), - [anon_sym_LT_DASH] = ACTIONS(1825), - [sym_none] = ACTIONS(1456), - [sym_true] = ACTIONS(1456), - [sym_false] = ACTIONS(1456), - [sym_nil] = ACTIONS(1456), - [anon_sym_if] = ACTIONS(1827), - [anon_sym_DOLLARif] = ACTIONS(1460), - [anon_sym_match] = ACTIONS(1462), - [anon_sym_select] = ACTIONS(1829), - [anon_sym_lock] = ACTIONS(1831), - [anon_sym_rlock] = ACTIONS(1831), - [anon_sym_unsafe] = ACTIONS(1833), - [anon_sym_sql] = ACTIONS(1470), - [sym_int_literal] = ACTIONS(1456), - [sym_float_literal] = ACTIONS(1472), - [sym_rune_literal] = ACTIONS(1472), - [sym_pseudo_compile_time_identifier] = ACTIONS(1474), - [anon_sym_shared] = ACTIONS(83), - [anon_sym_map_LBRACK] = ACTIONS(85), - [anon_sym_chan] = ACTIONS(87), - [anon_sym_thread] = ACTIONS(89), - [anon_sym_atomic] = ACTIONS(91), - [sym___double_quote] = ACTIONS(1478), - [sym___single_quote] = ACTIONS(1480), - [sym___c_double_quote] = ACTIONS(1482), - [sym___c_single_quote] = ACTIONS(1484), - [sym___r_double_quote] = ACTIONS(1486), - [sym___r_single_quote] = ACTIONS(1488), + [ts_builtin_sym_end] = ACTIONS(1841), + [sym_identifier] = ACTIONS(1843), + [anon_sym_LF] = ACTIONS(1843), + [anon_sym_CR] = ACTIONS(1843), + [anon_sym_CR_LF] = ACTIONS(1843), + [anon_sym_SLASH_SLASH] = ACTIONS(497), + [anon_sym_SLASH_STAR] = ACTIONS(499), + [anon_sym_DOT] = ACTIONS(1843), + [anon_sym_as] = ACTIONS(1843), + [anon_sym_LBRACE] = ACTIONS(1843), + [anon_sym_COMMA] = ACTIONS(1843), + [anon_sym_const] = ACTIONS(1843), + [anon_sym_LPAREN] = ACTIONS(1843), + [anon_sym_EQ] = ACTIONS(1843), + [anon_sym___global] = ACTIONS(1843), + [anon_sym_type] = ACTIONS(1843), + [anon_sym_PIPE] = ACTIONS(1843), + [anon_sym_fn] = ACTIONS(1843), + [anon_sym_PLUS] = ACTIONS(1843), + [anon_sym_DASH] = ACTIONS(1843), + [anon_sym_STAR] = ACTIONS(1843), + [anon_sym_SLASH] = ACTIONS(1843), + [anon_sym_PERCENT] = ACTIONS(1843), + [anon_sym_LT] = ACTIONS(1843), + [anon_sym_GT] = ACTIONS(1843), + [anon_sym_EQ_EQ] = ACTIONS(1843), + [anon_sym_BANG_EQ] = ACTIONS(1843), + [anon_sym_LT_EQ] = ACTIONS(1843), + [anon_sym_GT_EQ] = ACTIONS(1843), + [anon_sym_LBRACK] = ACTIONS(1841), + [anon_sym_struct] = ACTIONS(1843), + [anon_sym_union] = ACTIONS(1843), + [anon_sym_pub] = ACTIONS(1843), + [anon_sym_mut] = ACTIONS(1843), + [anon_sym_enum] = ACTIONS(1843), + [anon_sym_interface] = ACTIONS(1843), + [anon_sym_PLUS_PLUS] = ACTIONS(1843), + [anon_sym_DASH_DASH] = ACTIONS(1843), + [anon_sym_QMARK] = ACTIONS(1843), + [anon_sym_BANG] = ACTIONS(1843), + [anon_sym_go] = ACTIONS(1843), + [anon_sym_spawn] = ACTIONS(1843), + [anon_sym_json_DOTdecode] = ACTIONS(1843), + [anon_sym_LBRACK2] = ACTIONS(1843), + [anon_sym_TILDE] = ACTIONS(1843), + [anon_sym_CARET] = ACTIONS(1843), + [anon_sym_AMP] = ACTIONS(1843), + [anon_sym_LT_DASH] = ACTIONS(1843), + [anon_sym_LT_LT] = ACTIONS(1843), + [anon_sym_GT_GT] = ACTIONS(1843), + [anon_sym_GT_GT_GT] = ACTIONS(1843), + [anon_sym_AMP_CARET] = ACTIONS(1843), + [anon_sym_AMP_AMP] = ACTIONS(1843), + [anon_sym_PIPE_PIPE] = ACTIONS(1843), + [anon_sym_or] = ACTIONS(1843), + [sym_none] = ACTIONS(1843), + [sym_true] = ACTIONS(1843), + [sym_false] = ACTIONS(1843), + [sym_nil] = ACTIONS(1843), + [anon_sym_QMARK_DOT] = ACTIONS(1843), + [anon_sym_POUND_LBRACK] = ACTIONS(1843), + [anon_sym_if] = ACTIONS(1843), + [anon_sym_DOLLARif] = ACTIONS(1843), + [anon_sym_DOLLARelse] = ACTIONS(1845), + [anon_sym_is] = ACTIONS(1843), + [anon_sym_BANGis] = ACTIONS(1843), + [anon_sym_in] = ACTIONS(1843), + [anon_sym_BANGin] = ACTIONS(1843), + [anon_sym_match] = ACTIONS(1843), + [anon_sym_select] = ACTIONS(1843), + [anon_sym_STAR_EQ] = ACTIONS(1843), + [anon_sym_SLASH_EQ] = ACTIONS(1843), + [anon_sym_PERCENT_EQ] = ACTIONS(1843), + [anon_sym_LT_LT_EQ] = ACTIONS(1843), + [anon_sym_GT_GT_EQ] = ACTIONS(1843), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(1843), + [anon_sym_AMP_EQ] = ACTIONS(1843), + [anon_sym_AMP_CARET_EQ] = ACTIONS(1843), + [anon_sym_PLUS_EQ] = ACTIONS(1843), + [anon_sym_DASH_EQ] = ACTIONS(1843), + [anon_sym_PIPE_EQ] = ACTIONS(1843), + [anon_sym_CARET_EQ] = ACTIONS(1843), + [anon_sym_COLON_EQ] = ACTIONS(1843), + [anon_sym_lock] = ACTIONS(1843), + [anon_sym_rlock] = ACTIONS(1843), + [anon_sym_unsafe] = ACTIONS(1843), + [anon_sym_sql] = ACTIONS(1843), + [sym_int_literal] = ACTIONS(1843), + [sym_float_literal] = ACTIONS(1843), + [sym_rune_literal] = ACTIONS(1843), + [sym_pseudo_compile_time_identifier] = ACTIONS(1843), + [anon_sym_shared] = ACTIONS(1843), + [anon_sym_map_LBRACK] = ACTIONS(1843), + [anon_sym_chan] = ACTIONS(1843), + [anon_sym_thread] = ACTIONS(1843), + [anon_sym_atomic] = ACTIONS(1843), + [anon_sym_assert] = ACTIONS(1843), + [anon_sym_defer] = ACTIONS(1843), + [anon_sym_goto] = ACTIONS(1843), + [anon_sym_break] = ACTIONS(1843), + [anon_sym_continue] = ACTIONS(1843), + [anon_sym_return] = ACTIONS(1843), + [anon_sym_DOLLARfor] = ACTIONS(1843), + [anon_sym_for] = ACTIONS(1843), + [anon_sym_POUND] = ACTIONS(1843), + [anon_sym_asm] = ACTIONS(1843), + [anon_sym_AT_LBRACK] = ACTIONS(1843), + [sym___double_quote] = ACTIONS(1843), + [sym___single_quote] = ACTIONS(1843), + [sym___c_double_quote] = ACTIONS(1843), + [sym___c_single_quote] = ACTIONS(1843), + [sym___r_double_quote] = ACTIONS(1843), + [sym___r_single_quote] = ACTIONS(1843), }, [236] = { [sym_line_comment] = STATE(236), [sym_block_comment] = STATE(236), - [sym__expression] = STATE(2301), - [sym__expression_without_blocks] = STATE(2300), - [sym__expression_with_blocks] = STATE(2300), - [sym_inc_expression] = STATE(2307), - [sym_dec_expression] = STATE(2307), - [sym_or_block_expression] = STATE(2307), - [sym_option_propagation_expression] = STATE(2307), - [sym_result_propagation_expression] = STATE(2307), - [sym_anon_struct_value_expression] = STATE(2380), - [sym_go_expression] = STATE(2307), - [sym_spawn_expression] = STATE(2307), - [sym_parenthesized_expression] = STATE(2307), - [sym_call_expression] = STATE(2307), - [sym_type_initializer] = STATE(2380), - [sym_function_literal] = STATE(2307), - [sym_reference_expression] = STATE(2311), - [sym_type_reference_expression] = STATE(3541), - [sym_unary_expression] = STATE(2307), - [sym_receive_expression] = STATE(2307), - [sym_binary_expression] = STATE(2307), - [sym_as_type_cast_expression] = STATE(2307), - [sym__max_group] = STATE(2307), - [sym_literal] = STATE(2292), - [sym_map_init_expression] = STATE(2380), - [sym_array_creation] = STATE(2307), - [sym_fixed_array_creation] = STATE(2307), - [sym_selector_expression] = STATE(2307), - [sym_index_expression] = STATE(2307), - [sym_slice_expression] = STATE(2307), - [sym_if_expression] = STATE(2380), - [sym_compile_time_if_expression] = STATE(2380), - [sym_is_expression] = STATE(2307), - [sym_in_expression] = STATE(2307), - [sym_enum_fetch] = STATE(2307), - [sym_match_expression] = STATE(2380), - [sym_select_expression] = STATE(2380), - [sym_lock_expression] = STATE(2380), - [sym_unsafe_expression] = STATE(2380), - [sym_sql_expression] = STATE(2380), - [sym_c_string_literal] = STATE(2308), - [sym_raw_string_literal] = STATE(2308), - [sym_interpreted_string_literal] = STATE(2308), - [sym_mutability_modifiers] = STATE(765), - [sym_mutable_expression] = STATE(3823), - [sym_expression_list] = STATE(4480), - [sym_plain_type] = STATE(4297), - [sym__plain_type_without_special] = STATE(2302), - [sym_anon_struct_type] = STATE(2303), - [sym_multi_return_type] = STATE(2302), - [sym_result_type] = STATE(2302), - [sym_option_type] = STATE(2302), - [sym_qualified_type] = STATE(3541), - [sym_fixed_array_type] = STATE(2303), - [sym_array_type] = STATE(2303), - [sym_pointer_type] = STATE(2303), - [sym_wrong_pointer_type] = STATE(2303), - [sym_map_type] = STATE(2303), - [sym_channel_type] = STATE(2303), - [sym_shared_type] = STATE(2303), - [sym_thread_type] = STATE(2303), - [sym_atomic_type] = STATE(2303), - [sym_generic_type] = STATE(2303), - [sym_function_type] = STATE(2303), - [sym_var_declaration] = STATE(4159), - [sym_identifier] = ACTIONS(1807), + [sym__expression] = STATE(2632), + [sym__expression_without_blocks] = STATE(2347), + [sym__expression_with_blocks] = STATE(2347), + [sym_inc_expression] = STATE(2379), + [sym_dec_expression] = STATE(2379), + [sym_or_block_expression] = STATE(2379), + [sym_option_propagation_expression] = STATE(2379), + [sym_result_propagation_expression] = STATE(2379), + [sym_anon_struct_value_expression] = STATE(2378), + [sym_go_expression] = STATE(2379), + [sym_spawn_expression] = STATE(2379), + [sym_parenthesized_expression] = STATE(2379), + [sym_call_expression] = STATE(2379), + [sym_type_initializer] = STATE(2378), + [sym_function_literal] = STATE(2379), + [sym_reference_expression] = STATE(2377), + [sym_type_reference_expression] = STATE(3460), + [sym_unary_expression] = STATE(2379), + [sym_receive_expression] = STATE(2379), + [sym_binary_expression] = STATE(2379), + [sym_as_type_cast_expression] = STATE(2379), + [sym__max_group] = STATE(2379), + [sym_literal] = STATE(2392), + [sym_map_init_expression] = STATE(2378), + [sym_map_keyed_element] = STATE(2004), + [sym_array_creation] = STATE(2379), + [sym_fixed_array_creation] = STATE(2379), + [sym_selector_expression] = STATE(2379), + [sym_index_expression] = STATE(2379), + [sym_slice_expression] = STATE(2379), + [sym_if_expression] = STATE(2378), + [sym_compile_time_if_expression] = STATE(2378), + [sym_is_expression] = STATE(2379), + [sym_in_expression] = STATE(2379), + [sym_enum_fetch] = STATE(2379), + [sym_match_expression] = STATE(2378), + [sym_select_expression] = STATE(2378), + [sym_lock_expression] = STATE(2378), + [sym_unsafe_expression] = STATE(2378), + [sym_sql_expression] = STATE(2378), + [sym_c_string_literal] = STATE(2401), + [sym_raw_string_literal] = STATE(2401), + [sym_interpreted_string_literal] = STATE(2401), + [sym_mutability_modifiers] = STATE(939), + [sym_plain_type] = STATE(4160), + [sym__plain_type_without_special] = STATE(2360), + [sym_anon_struct_type] = STATE(2362), + [sym_multi_return_type] = STATE(2360), + [sym_result_type] = STATE(2360), + [sym_option_type] = STATE(2360), + [sym_qualified_type] = STATE(3460), + [sym_fixed_array_type] = STATE(2362), + [sym_array_type] = STATE(2362), + [sym_pointer_type] = STATE(2362), + [sym_wrong_pointer_type] = STATE(2362), + [sym_map_type] = STATE(2362), + [sym_channel_type] = STATE(2362), + [sym_shared_type] = STATE(2362), + [sym_thread_type] = STATE(2362), + [sym_atomic_type] = STATE(2362), + [sym_generic_type] = STATE(2362), + [sym_function_type] = STATE(2362), + [aux_sym_map_init_expression_repeat1] = STATE(303), + [sym_identifier] = ACTIONS(1428), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1428), - [anon_sym_LBRACE] = ACTIONS(1430), - [anon_sym_LPAREN] = ACTIONS(1432), - [anon_sym_fn] = ACTIONS(1434), - [anon_sym_PLUS] = ACTIONS(1811), - [anon_sym_DASH] = ACTIONS(1811), - [anon_sym_STAR] = ACTIONS(1813), - [anon_sym_struct] = ACTIONS(1440), + [anon_sym_DOT] = ACTIONS(1430), + [anon_sym_LBRACE] = ACTIONS(1432), + [anon_sym_RBRACE] = ACTIONS(1847), + [anon_sym_LPAREN] = ACTIONS(1434), + [anon_sym_fn] = ACTIONS(1436), + [anon_sym_PLUS] = ACTIONS(1438), + [anon_sym_DASH] = ACTIONS(1438), + [anon_sym_STAR] = ACTIONS(1440), + [anon_sym_struct] = ACTIONS(1442), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(1815), - [anon_sym_go] = ACTIONS(1817), - [anon_sym_spawn] = ACTIONS(1819), - [anon_sym_json_DOTdecode] = ACTIONS(1448), - [anon_sym_LBRACK2] = ACTIONS(1821), - [anon_sym_TILDE] = ACTIONS(1811), - [anon_sym_CARET] = ACTIONS(1811), - [anon_sym_AMP] = ACTIONS(1823), - [anon_sym_LT_DASH] = ACTIONS(1825), - [sym_none] = ACTIONS(1456), - [sym_true] = ACTIONS(1456), - [sym_false] = ACTIONS(1456), - [sym_nil] = ACTIONS(1456), - [anon_sym_if] = ACTIONS(1827), - [anon_sym_DOLLARif] = ACTIONS(1460), - [anon_sym_match] = ACTIONS(1462), - [anon_sym_select] = ACTIONS(1829), - [anon_sym_lock] = ACTIONS(1831), - [anon_sym_rlock] = ACTIONS(1831), - [anon_sym_unsafe] = ACTIONS(1833), - [anon_sym_sql] = ACTIONS(1470), - [sym_int_literal] = ACTIONS(1456), - [sym_float_literal] = ACTIONS(1472), - [sym_rune_literal] = ACTIONS(1472), - [sym_pseudo_compile_time_identifier] = ACTIONS(1474), + [anon_sym_BANG] = ACTIONS(1444), + [anon_sym_go] = ACTIONS(1446), + [anon_sym_spawn] = ACTIONS(1448), + [anon_sym_json_DOTdecode] = ACTIONS(1450), + [anon_sym_LBRACK2] = ACTIONS(1452), + [anon_sym_TILDE] = ACTIONS(1438), + [anon_sym_CARET] = ACTIONS(1438), + [anon_sym_AMP] = ACTIONS(1454), + [anon_sym_LT_DASH] = ACTIONS(1456), + [sym_none] = ACTIONS(1458), + [sym_true] = ACTIONS(1458), + [sym_false] = ACTIONS(1458), + [sym_nil] = ACTIONS(1458), + [anon_sym_if] = ACTIONS(1833), + [anon_sym_DOLLARif] = ACTIONS(1462), + [anon_sym_match] = ACTIONS(1464), + [anon_sym_select] = ACTIONS(1466), + [anon_sym_lock] = ACTIONS(1468), + [anon_sym_rlock] = ACTIONS(1468), + [anon_sym_unsafe] = ACTIONS(1839), + [anon_sym_sql] = ACTIONS(1472), + [sym_int_literal] = ACTIONS(1458), + [sym_float_literal] = ACTIONS(1474), + [sym_rune_literal] = ACTIONS(1474), + [sym_pseudo_compile_time_identifier] = ACTIONS(1476), [anon_sym_shared] = ACTIONS(83), [anon_sym_map_LBRACK] = ACTIONS(85), [anon_sym_chan] = ACTIONS(87), [anon_sym_thread] = ACTIONS(89), [anon_sym_atomic] = ACTIONS(91), - [sym___double_quote] = ACTIONS(1478), - [sym___single_quote] = ACTIONS(1480), - [sym___c_double_quote] = ACTIONS(1482), - [sym___c_single_quote] = ACTIONS(1484), - [sym___r_double_quote] = ACTIONS(1486), - [sym___r_single_quote] = ACTIONS(1488), + [sym___double_quote] = ACTIONS(1480), + [sym___single_quote] = ACTIONS(1482), + [sym___c_double_quote] = ACTIONS(1484), + [sym___c_single_quote] = ACTIONS(1486), + [sym___r_double_quote] = ACTIONS(1488), + [sym___r_single_quote] = ACTIONS(1490), }, [237] = { [sym_line_comment] = STATE(237), [sym_block_comment] = STATE(237), - [sym__expression] = STATE(2399), - [sym__expression_without_blocks] = STATE(2300), - [sym__expression_with_blocks] = STATE(2300), - [sym_inc_expression] = STATE(2307), - [sym_dec_expression] = STATE(2307), - [sym_or_block_expression] = STATE(2307), - [sym_option_propagation_expression] = STATE(2307), - [sym_result_propagation_expression] = STATE(2307), - [sym_anon_struct_value_expression] = STATE(2380), - [sym_go_expression] = STATE(2307), - [sym_spawn_expression] = STATE(2307), - [sym_parenthesized_expression] = STATE(2307), - [sym_call_expression] = STATE(2307), - [sym_type_initializer] = STATE(2380), - [sym_function_literal] = STATE(2307), - [sym_reference_expression] = STATE(2311), - [sym_type_reference_expression] = STATE(3541), - [sym_unary_expression] = STATE(2307), - [sym_receive_expression] = STATE(2307), - [sym_binary_expression] = STATE(2307), - [sym_as_type_cast_expression] = STATE(2307), - [sym__max_group] = STATE(2307), - [sym_literal] = STATE(2292), - [sym_map_init_expression] = STATE(2380), - [sym_array_creation] = STATE(2307), - [sym_fixed_array_creation] = STATE(2307), - [sym_selector_expression] = STATE(2307), - [sym_index_expression] = STATE(2307), - [sym_slice_expression] = STATE(2307), - [sym_if_expression] = STATE(2380), - [sym_compile_time_if_expression] = STATE(2380), - [sym_is_expression] = STATE(2307), - [sym_in_expression] = STATE(2307), - [sym_enum_fetch] = STATE(2307), - [sym_match_expression] = STATE(2380), - [sym_select_expression] = STATE(2380), - [sym_lock_expression] = STATE(2380), - [sym_unsafe_expression] = STATE(2380), - [sym_sql_expression] = STATE(2380), - [sym_c_string_literal] = STATE(2308), - [sym_raw_string_literal] = STATE(2308), - [sym_interpreted_string_literal] = STATE(2308), - [sym_mutability_modifiers] = STATE(765), - [sym_mutable_expression] = STATE(3823), - [sym_expression_list] = STATE(4480), - [sym_plain_type] = STATE(4297), - [sym__plain_type_without_special] = STATE(2302), - [sym_anon_struct_type] = STATE(2303), - [sym_multi_return_type] = STATE(2302), - [sym_result_type] = STATE(2302), - [sym_option_type] = STATE(2302), - [sym_qualified_type] = STATE(3541), - [sym_fixed_array_type] = STATE(2303), - [sym_array_type] = STATE(2303), - [sym_pointer_type] = STATE(2303), - [sym_wrong_pointer_type] = STATE(2303), - [sym_map_type] = STATE(2303), - [sym_channel_type] = STATE(2303), - [sym_shared_type] = STATE(2303), - [sym_thread_type] = STATE(2303), - [sym_atomic_type] = STATE(2303), - [sym_generic_type] = STATE(2303), - [sym_function_type] = STATE(2303), - [sym_var_declaration] = STATE(4221), - [sym_identifier] = ACTIONS(1807), + [sym__expression] = STATE(2303), + [sym__expression_without_blocks] = STATE(2347), + [sym__expression_with_blocks] = STATE(2347), + [sym_inc_expression] = STATE(2379), + [sym_dec_expression] = STATE(2379), + [sym_or_block_expression] = STATE(2379), + [sym_option_propagation_expression] = STATE(2379), + [sym_result_propagation_expression] = STATE(2379), + [sym_anon_struct_value_expression] = STATE(2378), + [sym_go_expression] = STATE(2379), + [sym_spawn_expression] = STATE(2379), + [sym_parenthesized_expression] = STATE(2379), + [sym_call_expression] = STATE(2379), + [sym_type_initializer] = STATE(2378), + [sym_function_literal] = STATE(2379), + [sym_reference_expression] = STATE(2377), + [sym_type_reference_expression] = STATE(3460), + [sym_unary_expression] = STATE(2379), + [sym_receive_expression] = STATE(2379), + [sym_binary_expression] = STATE(2379), + [sym_as_type_cast_expression] = STATE(2379), + [sym__max_group] = STATE(2379), + [sym_literal] = STATE(2392), + [sym_map_init_expression] = STATE(2378), + [sym_array_creation] = STATE(2379), + [sym_fixed_array_creation] = STATE(2379), + [sym_selector_expression] = STATE(2379), + [sym_index_expression] = STATE(2379), + [sym_slice_expression] = STATE(2379), + [sym_if_expression] = STATE(2378), + [sym_compile_time_if_expression] = STATE(2378), + [sym_is_expression] = STATE(2379), + [sym_in_expression] = STATE(2379), + [sym_enum_fetch] = STATE(2379), + [sym_match_expression] = STATE(2378), + [sym_select_expression] = STATE(2378), + [sym_lock_expression] = STATE(2378), + [sym_unsafe_expression] = STATE(2378), + [sym_sql_expression] = STATE(2378), + [sym_c_string_literal] = STATE(2401), + [sym_raw_string_literal] = STATE(2401), + [sym_interpreted_string_literal] = STATE(2401), + [sym_mutability_modifiers] = STATE(893), + [sym_mutable_expression] = STATE(3871), + [sym_expression_list] = STATE(4483), + [sym_plain_type] = STATE(4160), + [sym__plain_type_without_special] = STATE(2360), + [sym_anon_struct_type] = STATE(2362), + [sym_multi_return_type] = STATE(2360), + [sym_result_type] = STATE(2360), + [sym_option_type] = STATE(2360), + [sym_qualified_type] = STATE(3460), + [sym_fixed_array_type] = STATE(2362), + [sym_array_type] = STATE(2362), + [sym_pointer_type] = STATE(2362), + [sym_wrong_pointer_type] = STATE(2362), + [sym_map_type] = STATE(2362), + [sym_channel_type] = STATE(2362), + [sym_shared_type] = STATE(2362), + [sym_thread_type] = STATE(2362), + [sym_atomic_type] = STATE(2362), + [sym_generic_type] = STATE(2362), + [sym_function_type] = STATE(2362), + [sym_var_declaration] = STATE(4136), + [sym_identifier] = ACTIONS(1815), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1428), - [anon_sym_LBRACE] = ACTIONS(1430), - [anon_sym_LPAREN] = ACTIONS(1432), - [anon_sym_fn] = ACTIONS(1434), - [anon_sym_PLUS] = ACTIONS(1811), - [anon_sym_DASH] = ACTIONS(1811), - [anon_sym_STAR] = ACTIONS(1813), - [anon_sym_struct] = ACTIONS(1440), + [anon_sym_DOT] = ACTIONS(1430), + [anon_sym_LBRACE] = ACTIONS(1432), + [anon_sym_LPAREN] = ACTIONS(1434), + [anon_sym_fn] = ACTIONS(1436), + [anon_sym_PLUS] = ACTIONS(1817), + [anon_sym_DASH] = ACTIONS(1817), + [anon_sym_STAR] = ACTIONS(1819), + [anon_sym_struct] = ACTIONS(1442), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(1815), - [anon_sym_go] = ACTIONS(1817), - [anon_sym_spawn] = ACTIONS(1819), - [anon_sym_json_DOTdecode] = ACTIONS(1448), - [anon_sym_LBRACK2] = ACTIONS(1821), - [anon_sym_TILDE] = ACTIONS(1811), - [anon_sym_CARET] = ACTIONS(1811), - [anon_sym_AMP] = ACTIONS(1823), - [anon_sym_LT_DASH] = ACTIONS(1825), - [sym_none] = ACTIONS(1456), - [sym_true] = ACTIONS(1456), - [sym_false] = ACTIONS(1456), - [sym_nil] = ACTIONS(1456), - [anon_sym_if] = ACTIONS(1827), - [anon_sym_DOLLARif] = ACTIONS(1460), - [anon_sym_match] = ACTIONS(1462), - [anon_sym_select] = ACTIONS(1829), - [anon_sym_lock] = ACTIONS(1831), - [anon_sym_rlock] = ACTIONS(1831), - [anon_sym_unsafe] = ACTIONS(1833), - [anon_sym_sql] = ACTIONS(1470), - [sym_int_literal] = ACTIONS(1456), - [sym_float_literal] = ACTIONS(1472), - [sym_rune_literal] = ACTIONS(1472), - [sym_pseudo_compile_time_identifier] = ACTIONS(1474), + [anon_sym_BANG] = ACTIONS(1821), + [anon_sym_go] = ACTIONS(1823), + [anon_sym_spawn] = ACTIONS(1825), + [anon_sym_json_DOTdecode] = ACTIONS(1450), + [anon_sym_LBRACK2] = ACTIONS(1827), + [anon_sym_TILDE] = ACTIONS(1817), + [anon_sym_CARET] = ACTIONS(1817), + [anon_sym_AMP] = ACTIONS(1829), + [anon_sym_LT_DASH] = ACTIONS(1831), + [sym_none] = ACTIONS(1458), + [sym_true] = ACTIONS(1458), + [sym_false] = ACTIONS(1458), + [sym_nil] = ACTIONS(1458), + [anon_sym_if] = ACTIONS(1833), + [anon_sym_DOLLARif] = ACTIONS(1462), + [anon_sym_match] = ACTIONS(1464), + [anon_sym_select] = ACTIONS(1835), + [anon_sym_lock] = ACTIONS(1837), + [anon_sym_rlock] = ACTIONS(1837), + [anon_sym_unsafe] = ACTIONS(1839), + [anon_sym_sql] = ACTIONS(1472), + [sym_int_literal] = ACTIONS(1458), + [sym_float_literal] = ACTIONS(1474), + [sym_rune_literal] = ACTIONS(1474), + [sym_pseudo_compile_time_identifier] = ACTIONS(1476), [anon_sym_shared] = ACTIONS(83), [anon_sym_map_LBRACK] = ACTIONS(85), [anon_sym_chan] = ACTIONS(87), [anon_sym_thread] = ACTIONS(89), [anon_sym_atomic] = ACTIONS(91), - [sym___double_quote] = ACTIONS(1478), - [sym___single_quote] = ACTIONS(1480), - [sym___c_double_quote] = ACTIONS(1482), - [sym___c_single_quote] = ACTIONS(1484), - [sym___r_double_quote] = ACTIONS(1486), - [sym___r_single_quote] = ACTIONS(1488), + [sym___double_quote] = ACTIONS(1480), + [sym___single_quote] = ACTIONS(1482), + [sym___c_double_quote] = ACTIONS(1484), + [sym___c_single_quote] = ACTIONS(1486), + [sym___r_double_quote] = ACTIONS(1488), + [sym___r_single_quote] = ACTIONS(1490), }, [238] = { [sym_line_comment] = STATE(238), [sym_block_comment] = STATE(238), - [ts_builtin_sym_end] = ACTIONS(1843), - [sym_identifier] = ACTIONS(1845), - [anon_sym_LF] = ACTIONS(1845), - [anon_sym_CR] = ACTIONS(1845), - [anon_sym_CR_LF] = ACTIONS(1845), - [anon_sym_SLASH_SLASH] = ACTIONS(497), - [anon_sym_SLASH_STAR] = ACTIONS(499), - [anon_sym_DOT] = ACTIONS(1845), - [anon_sym_as] = ACTIONS(1845), - [anon_sym_LBRACE] = ACTIONS(1845), - [anon_sym_COMMA] = ACTIONS(1845), - [anon_sym_const] = ACTIONS(1845), - [anon_sym_LPAREN] = ACTIONS(1845), - [anon_sym_EQ] = ACTIONS(1845), - [anon_sym___global] = ACTIONS(1845), - [anon_sym_type] = ACTIONS(1845), - [anon_sym_PIPE] = ACTIONS(1845), - [anon_sym_fn] = ACTIONS(1845), - [anon_sym_PLUS] = ACTIONS(1845), - [anon_sym_DASH] = ACTIONS(1845), - [anon_sym_STAR] = ACTIONS(1845), - [anon_sym_SLASH] = ACTIONS(1845), - [anon_sym_PERCENT] = ACTIONS(1845), - [anon_sym_LT] = ACTIONS(1845), - [anon_sym_GT] = ACTIONS(1845), - [anon_sym_EQ_EQ] = ACTIONS(1845), - [anon_sym_BANG_EQ] = ACTIONS(1845), - [anon_sym_LT_EQ] = ACTIONS(1845), - [anon_sym_GT_EQ] = ACTIONS(1845), - [anon_sym_LBRACK] = ACTIONS(1843), - [anon_sym_struct] = ACTIONS(1845), - [anon_sym_union] = ACTIONS(1845), - [anon_sym_pub] = ACTIONS(1845), - [anon_sym_mut] = ACTIONS(1845), - [anon_sym_enum] = ACTIONS(1845), - [anon_sym_interface] = ACTIONS(1845), - [anon_sym_PLUS_PLUS] = ACTIONS(1845), - [anon_sym_DASH_DASH] = ACTIONS(1845), - [anon_sym_QMARK] = ACTIONS(1845), - [anon_sym_BANG] = ACTIONS(1845), - [anon_sym_go] = ACTIONS(1845), - [anon_sym_spawn] = ACTIONS(1845), - [anon_sym_json_DOTdecode] = ACTIONS(1845), - [anon_sym_LBRACK2] = ACTIONS(1845), - [anon_sym_TILDE] = ACTIONS(1845), - [anon_sym_CARET] = ACTIONS(1845), - [anon_sym_AMP] = ACTIONS(1845), - [anon_sym_LT_DASH] = ACTIONS(1845), - [anon_sym_LT_LT] = ACTIONS(1845), - [anon_sym_GT_GT] = ACTIONS(1845), - [anon_sym_GT_GT_GT] = ACTIONS(1845), - [anon_sym_AMP_CARET] = ACTIONS(1845), - [anon_sym_AMP_AMP] = ACTIONS(1845), - [anon_sym_PIPE_PIPE] = ACTIONS(1845), - [anon_sym_or] = ACTIONS(1845), - [sym_none] = ACTIONS(1845), - [sym_true] = ACTIONS(1845), - [sym_false] = ACTIONS(1845), - [sym_nil] = ACTIONS(1845), - [anon_sym_QMARK_DOT] = ACTIONS(1845), - [anon_sym_POUND_LBRACK] = ACTIONS(1845), - [anon_sym_if] = ACTIONS(1845), - [anon_sym_else] = ACTIONS(1845), - [anon_sym_DOLLARif] = ACTIONS(1845), - [anon_sym_is] = ACTIONS(1845), - [anon_sym_BANGis] = ACTIONS(1845), - [anon_sym_in] = ACTIONS(1845), - [anon_sym_BANGin] = ACTIONS(1845), - [anon_sym_match] = ACTIONS(1845), - [anon_sym_select] = ACTIONS(1845), - [anon_sym_STAR_EQ] = ACTIONS(1845), - [anon_sym_SLASH_EQ] = ACTIONS(1845), - [anon_sym_PERCENT_EQ] = ACTIONS(1845), - [anon_sym_LT_LT_EQ] = ACTIONS(1845), - [anon_sym_GT_GT_EQ] = ACTIONS(1845), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(1845), - [anon_sym_AMP_EQ] = ACTIONS(1845), - [anon_sym_AMP_CARET_EQ] = ACTIONS(1845), - [anon_sym_PLUS_EQ] = ACTIONS(1845), - [anon_sym_DASH_EQ] = ACTIONS(1845), - [anon_sym_PIPE_EQ] = ACTIONS(1845), - [anon_sym_CARET_EQ] = ACTIONS(1845), - [anon_sym_COLON_EQ] = ACTIONS(1845), - [anon_sym_lock] = ACTIONS(1845), - [anon_sym_rlock] = ACTIONS(1845), - [anon_sym_unsafe] = ACTIONS(1845), - [anon_sym_sql] = ACTIONS(1845), - [sym_int_literal] = ACTIONS(1845), - [sym_float_literal] = ACTIONS(1845), - [sym_rune_literal] = ACTIONS(1845), - [sym_pseudo_compile_time_identifier] = ACTIONS(1845), - [anon_sym_shared] = ACTIONS(1845), - [anon_sym_map_LBRACK] = ACTIONS(1845), - [anon_sym_chan] = ACTIONS(1845), - [anon_sym_thread] = ACTIONS(1845), - [anon_sym_atomic] = ACTIONS(1845), - [anon_sym_assert] = ACTIONS(1845), - [anon_sym_defer] = ACTIONS(1845), - [anon_sym_goto] = ACTIONS(1845), - [anon_sym_break] = ACTIONS(1845), - [anon_sym_continue] = ACTIONS(1845), - [anon_sym_return] = ACTIONS(1845), - [anon_sym_DOLLARfor] = ACTIONS(1845), - [anon_sym_for] = ACTIONS(1845), - [anon_sym_POUND] = ACTIONS(1845), - [anon_sym_asm] = ACTIONS(1845), - [anon_sym_AT_LBRACK] = ACTIONS(1845), - [sym___double_quote] = ACTIONS(1845), - [sym___single_quote] = ACTIONS(1845), - [sym___c_double_quote] = ACTIONS(1845), - [sym___c_single_quote] = ACTIONS(1845), - [sym___r_double_quote] = ACTIONS(1845), - [sym___r_single_quote] = ACTIONS(1845), + [sym__expression] = STATE(1259), + [sym__expression_without_blocks] = STATE(1318), + [sym__expression_with_blocks] = STATE(1318), + [sym_inc_expression] = STATE(1319), + [sym_dec_expression] = STATE(1319), + [sym_or_block_expression] = STATE(1319), + [sym_option_propagation_expression] = STATE(1319), + [sym_result_propagation_expression] = STATE(1319), + [sym_anon_struct_value_expression] = STATE(1320), + [sym_go_expression] = STATE(1319), + [sym_spawn_expression] = STATE(1319), + [sym_parenthesized_expression] = STATE(1319), + [sym_call_expression] = STATE(1319), + [sym_type_initializer] = STATE(1320), + [sym_function_literal] = STATE(1319), + [sym_reference_expression] = STATE(1298), + [sym_type_reference_expression] = STATE(3460), + [sym_unary_expression] = STATE(1319), + [sym_receive_expression] = STATE(1319), + [sym_binary_expression] = STATE(1319), + [sym_as_type_cast_expression] = STATE(1319), + [sym__max_group] = STATE(1319), + [sym_literal] = STATE(1314), + [sym_map_init_expression] = STATE(1320), + [sym_array_creation] = STATE(1319), + [sym_fixed_array_creation] = STATE(1319), + [sym_selector_expression] = STATE(1319), + [sym_index_expression] = STATE(1319), + [sym_slice_expression] = STATE(1319), + [sym_if_expression] = STATE(1320), + [sym_compile_time_if_expression] = STATE(1320), + [sym_is_expression] = STATE(1319), + [sym_in_expression] = STATE(1319), + [sym_enum_fetch] = STATE(1319), + [sym_match_expression] = STATE(1320), + [sym_select_expression] = STATE(1320), + [sym_lock_expression] = STATE(1320), + [sym_unsafe_expression] = STATE(1320), + [sym_sql_expression] = STATE(1320), + [sym_c_string_literal] = STATE(1291), + [sym_raw_string_literal] = STATE(1291), + [sym_interpreted_string_literal] = STATE(1291), + [sym_mutability_modifiers] = STATE(639), + [sym_plain_type] = STATE(4307), + [sym__plain_type_without_special] = STATE(2360), + [sym_anon_struct_type] = STATE(2362), + [sym_multi_return_type] = STATE(2360), + [sym_result_type] = STATE(2360), + [sym_option_type] = STATE(2360), + [sym_qualified_type] = STATE(3460), + [sym_fixed_array_type] = STATE(2362), + [sym_array_type] = STATE(2362), + [sym_pointer_type] = STATE(2362), + [sym_wrong_pointer_type] = STATE(2362), + [sym_map_type] = STATE(2362), + [sym_channel_type] = STATE(2362), + [sym_shared_type] = STATE(2362), + [sym_thread_type] = STATE(2362), + [sym_atomic_type] = STATE(2362), + [sym_generic_type] = STATE(2362), + [sym_function_type] = STATE(2362), + [sym___rcbr] = STATE(3680), + [aux_sym_string_interpolation_repeat1] = STATE(256), + [sym_identifier] = ACTIONS(1360), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(1362), + [anon_sym_LBRACE] = ACTIONS(1364), + [anon_sym_RBRACE] = ACTIONS(1849), + [anon_sym_LPAREN] = ACTIONS(1366), + [anon_sym_fn] = ACTIONS(1368), + [anon_sym_PLUS] = ACTIONS(1851), + [anon_sym_DASH] = ACTIONS(1851), + [anon_sym_STAR] = ACTIONS(1853), + [anon_sym_struct] = ACTIONS(1376), + [anon_sym_mut] = ACTIONS(41), + [anon_sym_QMARK] = ACTIONS(47), + [anon_sym_BANG] = ACTIONS(1855), + [anon_sym_go] = ACTIONS(1857), + [anon_sym_spawn] = ACTIONS(1859), + [anon_sym_json_DOTdecode] = ACTIONS(1384), + [anon_sym_LBRACK2] = ACTIONS(1386), + [anon_sym_TILDE] = ACTIONS(1851), + [anon_sym_CARET] = ACTIONS(1851), + [anon_sym_AMP] = ACTIONS(1861), + [anon_sym_LT_DASH] = ACTIONS(1863), + [sym_none] = ACTIONS(1392), + [sym_true] = ACTIONS(1392), + [sym_false] = ACTIONS(1392), + [sym_nil] = ACTIONS(1392), + [anon_sym_if] = ACTIONS(1865), + [anon_sym_DOLLARif] = ACTIONS(1396), + [anon_sym_match] = ACTIONS(1398), + [anon_sym_select] = ACTIONS(1867), + [anon_sym_lock] = ACTIONS(1869), + [anon_sym_rlock] = ACTIONS(1869), + [anon_sym_unsafe] = ACTIONS(1871), + [anon_sym_sql] = ACTIONS(1406), + [sym_int_literal] = ACTIONS(1392), + [sym_float_literal] = ACTIONS(1410), + [sym_rune_literal] = ACTIONS(1410), + [sym_pseudo_compile_time_identifier] = ACTIONS(1412), + [anon_sym_shared] = ACTIONS(83), + [anon_sym_map_LBRACK] = ACTIONS(85), + [anon_sym_chan] = ACTIONS(87), + [anon_sym_thread] = ACTIONS(89), + [anon_sym_atomic] = ACTIONS(91), + [sym___double_quote] = ACTIONS(1414), + [sym___single_quote] = ACTIONS(1416), + [sym___c_double_quote] = ACTIONS(1418), + [sym___c_single_quote] = ACTIONS(1420), + [sym___r_double_quote] = ACTIONS(1422), + [sym___r_single_quote] = ACTIONS(1424), }, [239] = { [sym_line_comment] = STATE(239), [sym_block_comment] = STATE(239), - [sym__expression] = STATE(2455), - [sym__expression_without_blocks] = STATE(2300), - [sym__expression_with_blocks] = STATE(2300), - [sym_inc_expression] = STATE(2307), - [sym_dec_expression] = STATE(2307), - [sym_or_block_expression] = STATE(2307), - [sym_option_propagation_expression] = STATE(2307), - [sym_result_propagation_expression] = STATE(2307), - [sym_anon_struct_value_expression] = STATE(2380), - [sym_go_expression] = STATE(2307), - [sym_spawn_expression] = STATE(2307), - [sym_parenthesized_expression] = STATE(2307), - [sym_call_expression] = STATE(2307), - [sym_type_initializer] = STATE(2380), - [sym_function_literal] = STATE(2307), - [sym_reference_expression] = STATE(2311), - [sym_type_reference_expression] = STATE(3541), - [sym_unary_expression] = STATE(2307), - [sym_receive_expression] = STATE(2307), - [sym_binary_expression] = STATE(2307), - [sym_as_type_cast_expression] = STATE(2307), - [sym__max_group] = STATE(2307), - [sym_literal] = STATE(2292), - [sym_map_init_expression] = STATE(2380), - [sym_array_creation] = STATE(2307), - [sym_fixed_array_creation] = STATE(2307), - [sym_selector_expression] = STATE(2307), - [sym_index_expression] = STATE(2307), - [sym_slice_expression] = STATE(2307), - [sym_if_expression] = STATE(2380), - [sym_compile_time_if_expression] = STATE(2380), - [sym_is_expression] = STATE(2307), - [sym_in_expression] = STATE(2307), - [sym_enum_fetch] = STATE(2307), - [sym_match_expression] = STATE(2380), - [sym_select_expression] = STATE(2380), - [sym_lock_expression] = STATE(2380), - [sym_unsafe_expression] = STATE(2380), - [sym_sql_expression] = STATE(2380), - [sym_c_string_literal] = STATE(2308), - [sym_raw_string_literal] = STATE(2308), - [sym_interpreted_string_literal] = STATE(2308), - [sym_mutability_modifiers] = STATE(824), - [sym_mutable_expression] = STATE(3922), - [sym_expression_list] = STATE(4171), - [sym_plain_type] = STATE(4297), - [sym__plain_type_without_special] = STATE(2302), - [sym_anon_struct_type] = STATE(2303), - [sym_multi_return_type] = STATE(2302), - [sym_result_type] = STATE(2302), - [sym_option_type] = STATE(2302), - [sym_qualified_type] = STATE(3541), - [sym_fixed_array_type] = STATE(2303), - [sym_array_type] = STATE(2303), - [sym_pointer_type] = STATE(2303), - [sym_wrong_pointer_type] = STATE(2303), - [sym_map_type] = STATE(2303), - [sym_channel_type] = STATE(2303), - [sym_shared_type] = STATE(2303), - [sym_thread_type] = STATE(2303), - [sym_atomic_type] = STATE(2303), - [sym_generic_type] = STATE(2303), - [sym_function_type] = STATE(2303), - [sym_block] = STATE(381), - [sym_identifier] = ACTIONS(1807), + [sym__expression] = STATE(2314), + [sym__expression_without_blocks] = STATE(2347), + [sym__expression_with_blocks] = STATE(2347), + [sym_inc_expression] = STATE(2379), + [sym_dec_expression] = STATE(2379), + [sym_or_block_expression] = STATE(2379), + [sym_option_propagation_expression] = STATE(2379), + [sym_result_propagation_expression] = STATE(2379), + [sym_anon_struct_value_expression] = STATE(2378), + [sym_go_expression] = STATE(2379), + [sym_spawn_expression] = STATE(2379), + [sym_parenthesized_expression] = STATE(2379), + [sym_call_expression] = STATE(2379), + [sym_type_initializer] = STATE(2378), + [sym_function_literal] = STATE(2379), + [sym_reference_expression] = STATE(2377), + [sym_type_reference_expression] = STATE(3460), + [sym_unary_expression] = STATE(2379), + [sym_receive_expression] = STATE(2379), + [sym_binary_expression] = STATE(2379), + [sym_as_type_cast_expression] = STATE(2379), + [sym__max_group] = STATE(2379), + [sym_literal] = STATE(2392), + [sym_map_init_expression] = STATE(2378), + [sym_array_creation] = STATE(2379), + [sym_fixed_array_creation] = STATE(2379), + [sym_selector_expression] = STATE(2379), + [sym_index_expression] = STATE(2379), + [sym_slice_expression] = STATE(2379), + [sym_if_expression] = STATE(2378), + [sym_compile_time_if_expression] = STATE(2378), + [sym_is_expression] = STATE(2379), + [sym_in_expression] = STATE(2379), + [sym_enum_fetch] = STATE(2379), + [sym_match_expression] = STATE(2378), + [sym_select_expression] = STATE(2378), + [sym_lock_expression] = STATE(2378), + [sym_unsafe_expression] = STATE(2378), + [sym_sql_expression] = STATE(2378), + [sym_c_string_literal] = STATE(2401), + [sym_raw_string_literal] = STATE(2401), + [sym_interpreted_string_literal] = STATE(2401), + [sym_mutability_modifiers] = STATE(893), + [sym_mutable_expression] = STATE(3871), + [sym_expression_list] = STATE(4483), + [sym_plain_type] = STATE(4160), + [sym__plain_type_without_special] = STATE(2360), + [sym_anon_struct_type] = STATE(2362), + [sym_multi_return_type] = STATE(2360), + [sym_result_type] = STATE(2360), + [sym_option_type] = STATE(2360), + [sym_qualified_type] = STATE(3460), + [sym_fixed_array_type] = STATE(2362), + [sym_array_type] = STATE(2362), + [sym_pointer_type] = STATE(2362), + [sym_wrong_pointer_type] = STATE(2362), + [sym_map_type] = STATE(2362), + [sym_channel_type] = STATE(2362), + [sym_shared_type] = STATE(2362), + [sym_thread_type] = STATE(2362), + [sym_atomic_type] = STATE(2362), + [sym_generic_type] = STATE(2362), + [sym_function_type] = STATE(2362), + [sym_var_declaration] = STATE(4143), + [sym_identifier] = ACTIONS(1815), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1428), - [anon_sym_LBRACE] = ACTIONS(1847), - [anon_sym_LPAREN] = ACTIONS(1432), - [anon_sym_fn] = ACTIONS(1434), - [anon_sym_PLUS] = ACTIONS(1811), - [anon_sym_DASH] = ACTIONS(1811), - [anon_sym_STAR] = ACTIONS(1813), - [anon_sym_struct] = ACTIONS(1440), + [anon_sym_DOT] = ACTIONS(1430), + [anon_sym_LBRACE] = ACTIONS(1432), + [anon_sym_LPAREN] = ACTIONS(1434), + [anon_sym_fn] = ACTIONS(1436), + [anon_sym_PLUS] = ACTIONS(1817), + [anon_sym_DASH] = ACTIONS(1817), + [anon_sym_STAR] = ACTIONS(1819), + [anon_sym_struct] = ACTIONS(1442), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(1815), - [anon_sym_go] = ACTIONS(1817), - [anon_sym_spawn] = ACTIONS(1819), - [anon_sym_json_DOTdecode] = ACTIONS(1448), - [anon_sym_LBRACK2] = ACTIONS(1821), - [anon_sym_TILDE] = ACTIONS(1811), - [anon_sym_CARET] = ACTIONS(1811), - [anon_sym_AMP] = ACTIONS(1823), - [anon_sym_LT_DASH] = ACTIONS(1825), - [sym_none] = ACTIONS(1456), - [sym_true] = ACTIONS(1456), - [sym_false] = ACTIONS(1456), - [sym_nil] = ACTIONS(1456), - [anon_sym_if] = ACTIONS(1827), - [anon_sym_DOLLARif] = ACTIONS(1460), - [anon_sym_match] = ACTIONS(1462), - [anon_sym_select] = ACTIONS(1829), - [anon_sym_lock] = ACTIONS(1831), - [anon_sym_rlock] = ACTIONS(1831), - [anon_sym_unsafe] = ACTIONS(1833), - [anon_sym_sql] = ACTIONS(1470), - [sym_int_literal] = ACTIONS(1456), - [sym_float_literal] = ACTIONS(1472), - [sym_rune_literal] = ACTIONS(1472), - [sym_pseudo_compile_time_identifier] = ACTIONS(1474), + [anon_sym_BANG] = ACTIONS(1821), + [anon_sym_go] = ACTIONS(1823), + [anon_sym_spawn] = ACTIONS(1825), + [anon_sym_json_DOTdecode] = ACTIONS(1450), + [anon_sym_LBRACK2] = ACTIONS(1827), + [anon_sym_TILDE] = ACTIONS(1817), + [anon_sym_CARET] = ACTIONS(1817), + [anon_sym_AMP] = ACTIONS(1829), + [anon_sym_LT_DASH] = ACTIONS(1831), + [sym_none] = ACTIONS(1458), + [sym_true] = ACTIONS(1458), + [sym_false] = ACTIONS(1458), + [sym_nil] = ACTIONS(1458), + [anon_sym_if] = ACTIONS(1833), + [anon_sym_DOLLARif] = ACTIONS(1462), + [anon_sym_match] = ACTIONS(1464), + [anon_sym_select] = ACTIONS(1835), + [anon_sym_lock] = ACTIONS(1837), + [anon_sym_rlock] = ACTIONS(1837), + [anon_sym_unsafe] = ACTIONS(1839), + [anon_sym_sql] = ACTIONS(1472), + [sym_int_literal] = ACTIONS(1458), + [sym_float_literal] = ACTIONS(1474), + [sym_rune_literal] = ACTIONS(1474), + [sym_pseudo_compile_time_identifier] = ACTIONS(1476), [anon_sym_shared] = ACTIONS(83), [anon_sym_map_LBRACK] = ACTIONS(85), [anon_sym_chan] = ACTIONS(87), [anon_sym_thread] = ACTIONS(89), [anon_sym_atomic] = ACTIONS(91), - [sym___double_quote] = ACTIONS(1478), - [sym___single_quote] = ACTIONS(1480), - [sym___c_double_quote] = ACTIONS(1482), - [sym___c_single_quote] = ACTIONS(1484), - [sym___r_double_quote] = ACTIONS(1486), - [sym___r_single_quote] = ACTIONS(1488), + [sym___double_quote] = ACTIONS(1480), + [sym___single_quote] = ACTIONS(1482), + [sym___c_double_quote] = ACTIONS(1484), + [sym___c_single_quote] = ACTIONS(1486), + [sym___r_double_quote] = ACTIONS(1488), + [sym___r_single_quote] = ACTIONS(1490), }, [240] = { [sym_line_comment] = STATE(240), [sym_block_comment] = STATE(240), - [ts_builtin_sym_end] = ACTIONS(1849), - [sym_identifier] = ACTIONS(1851), - [anon_sym_LF] = ACTIONS(1851), - [anon_sym_CR] = ACTIONS(1851), - [anon_sym_CR_LF] = ACTIONS(1851), - [anon_sym_SLASH_SLASH] = ACTIONS(497), - [anon_sym_SLASH_STAR] = ACTIONS(499), - [anon_sym_DOT] = ACTIONS(1851), - [anon_sym_as] = ACTIONS(1851), - [anon_sym_LBRACE] = ACTIONS(1853), - [anon_sym_COMMA] = ACTIONS(1851), - [anon_sym_const] = ACTIONS(1851), - [anon_sym_LPAREN] = ACTIONS(1851), - [anon_sym_EQ] = ACTIONS(1851), - [anon_sym___global] = ACTIONS(1851), - [anon_sym_type] = ACTIONS(1851), - [anon_sym_PIPE] = ACTIONS(1851), - [anon_sym_fn] = ACTIONS(1851), - [anon_sym_PLUS] = ACTIONS(1851), - [anon_sym_DASH] = ACTIONS(1851), - [anon_sym_STAR] = ACTIONS(1851), - [anon_sym_SLASH] = ACTIONS(1851), - [anon_sym_PERCENT] = ACTIONS(1851), - [anon_sym_LT] = ACTIONS(1851), - [anon_sym_GT] = ACTIONS(1851), - [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(1856), - [anon_sym_struct] = ACTIONS(1851), - [anon_sym_union] = ACTIONS(1851), - [anon_sym_pub] = ACTIONS(1851), - [anon_sym_mut] = ACTIONS(1851), - [anon_sym_COLON] = ACTIONS(1859), - [anon_sym_enum] = ACTIONS(1851), - [anon_sym_interface] = ACTIONS(1851), - [anon_sym_PLUS_PLUS] = ACTIONS(1851), - [anon_sym_DASH_DASH] = ACTIONS(1851), - [anon_sym_QMARK] = ACTIONS(1851), - [anon_sym_BANG] = ACTIONS(1851), - [anon_sym_go] = ACTIONS(1851), - [anon_sym_spawn] = ACTIONS(1851), - [anon_sym_json_DOTdecode] = ACTIONS(1851), - [anon_sym_LBRACK2] = ACTIONS(1851), - [anon_sym_TILDE] = ACTIONS(1851), - [anon_sym_CARET] = ACTIONS(1851), - [anon_sym_AMP] = ACTIONS(1851), - [anon_sym_LT_DASH] = ACTIONS(1851), - [anon_sym_LT_LT] = ACTIONS(1851), - [anon_sym_GT_GT] = ACTIONS(1851), - [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(1851), - [sym_none] = ACTIONS(1851), - [sym_true] = ACTIONS(1851), - [sym_false] = ACTIONS(1851), - [sym_nil] = ACTIONS(1851), - [anon_sym_QMARK_DOT] = ACTIONS(1851), - [anon_sym_POUND_LBRACK] = ACTIONS(1851), - [anon_sym_if] = ACTIONS(1851), - [anon_sym_DOLLARif] = ACTIONS(1851), - [anon_sym_is] = ACTIONS(1851), - [anon_sym_BANGis] = ACTIONS(1851), - [anon_sym_in] = ACTIONS(1851), - [anon_sym_BANGin] = ACTIONS(1851), - [anon_sym_match] = ACTIONS(1851), - [anon_sym_select] = ACTIONS(1851), - [anon_sym_STAR_EQ] = ACTIONS(1851), - [anon_sym_SLASH_EQ] = ACTIONS(1851), - [anon_sym_PERCENT_EQ] = ACTIONS(1851), - [anon_sym_LT_LT_EQ] = ACTIONS(1851), - [anon_sym_GT_GT_EQ] = ACTIONS(1851), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(1851), - [anon_sym_AMP_EQ] = ACTIONS(1851), - [anon_sym_AMP_CARET_EQ] = ACTIONS(1851), - [anon_sym_PLUS_EQ] = ACTIONS(1851), - [anon_sym_DASH_EQ] = ACTIONS(1851), - [anon_sym_PIPE_EQ] = ACTIONS(1851), - [anon_sym_CARET_EQ] = ACTIONS(1851), - [anon_sym_COLON_EQ] = ACTIONS(1851), - [anon_sym_lock] = ACTIONS(1851), - [anon_sym_rlock] = ACTIONS(1851), - [anon_sym_unsafe] = ACTIONS(1851), - [anon_sym_sql] = ACTIONS(1851), - [sym_int_literal] = ACTIONS(1851), - [sym_float_literal] = ACTIONS(1851), - [sym_rune_literal] = ACTIONS(1851), - [sym_pseudo_compile_time_identifier] = ACTIONS(1851), - [anon_sym_shared] = ACTIONS(1851), - [anon_sym_map_LBRACK] = ACTIONS(1851), - [anon_sym_chan] = ACTIONS(1851), - [anon_sym_thread] = ACTIONS(1851), - [anon_sym_atomic] = ACTIONS(1851), - [anon_sym_assert] = ACTIONS(1851), - [anon_sym_defer] = ACTIONS(1851), - [anon_sym_goto] = ACTIONS(1851), - [anon_sym_break] = ACTIONS(1851), - [anon_sym_continue] = ACTIONS(1851), - [anon_sym_return] = ACTIONS(1851), - [anon_sym_DOLLARfor] = ACTIONS(1851), - [anon_sym_for] = ACTIONS(1851), - [anon_sym_POUND] = ACTIONS(1851), - [anon_sym_asm] = ACTIONS(1851), - [anon_sym_AT_LBRACK] = ACTIONS(1851), - [sym___double_quote] = ACTIONS(1851), - [sym___single_quote] = ACTIONS(1851), - [sym___c_double_quote] = ACTIONS(1851), - [sym___c_single_quote] = ACTIONS(1851), - [sym___r_double_quote] = ACTIONS(1851), - [sym___r_single_quote] = ACTIONS(1851), + [sym__expression] = STATE(2408), + [sym__expression_without_blocks] = STATE(2347), + [sym__expression_with_blocks] = STATE(2347), + [sym_inc_expression] = STATE(2379), + [sym_dec_expression] = STATE(2379), + [sym_or_block_expression] = STATE(2379), + [sym_option_propagation_expression] = STATE(2379), + [sym_result_propagation_expression] = STATE(2379), + [sym_anon_struct_value_expression] = STATE(2378), + [sym_go_expression] = STATE(2379), + [sym_spawn_expression] = STATE(2379), + [sym_parenthesized_expression] = STATE(2379), + [sym_call_expression] = STATE(2379), + [sym_type_initializer] = STATE(2378), + [sym_function_literal] = STATE(2379), + [sym_reference_expression] = STATE(2614), + [sym_type_reference_expression] = STATE(3460), + [sym_unary_expression] = STATE(2379), + [sym_receive_expression] = STATE(2379), + [sym_binary_expression] = STATE(2379), + [sym_as_type_cast_expression] = STATE(2379), + [sym__max_group] = STATE(2379), + [sym_literal] = STATE(2392), + [sym_map_init_expression] = STATE(2378), + [sym_array_creation] = STATE(2379), + [sym_fixed_array_creation] = STATE(2379), + [sym_selector_expression] = STATE(2379), + [sym_index_expression] = STATE(2379), + [sym_slice_expression] = STATE(2379), + [sym_if_expression] = STATE(2378), + [sym_compile_time_if_expression] = STATE(2378), + [sym_is_expression] = STATE(2379), + [sym_in_expression] = STATE(2379), + [sym_enum_fetch] = STATE(2379), + [sym_match_expression] = STATE(2378), + [sym_select_expression] = STATE(2378), + [sym_lock_expression] = STATE(2378), + [sym_unsafe_expression] = STATE(2378), + [sym_sql_expression] = STATE(2378), + [sym_c_string_literal] = STATE(2401), + [sym_raw_string_literal] = STATE(2401), + [sym_interpreted_string_literal] = STATE(2401), + [sym_mutability_modifiers] = STATE(893), + [sym_mutable_expression] = STATE(3871), + [sym_expression_list] = STATE(4483), + [sym_plain_type] = STATE(4160), + [sym__plain_type_without_special] = STATE(2360), + [sym_anon_struct_type] = STATE(2362), + [sym_multi_return_type] = STATE(2360), + [sym_result_type] = STATE(2360), + [sym_option_type] = STATE(2360), + [sym_qualified_type] = STATE(3460), + [sym_fixed_array_type] = STATE(2362), + [sym_array_type] = STATE(2362), + [sym_pointer_type] = STATE(2362), + [sym_wrong_pointer_type] = STATE(2362), + [sym_map_type] = STATE(2362), + [sym_channel_type] = STATE(2362), + [sym_shared_type] = STATE(2362), + [sym_thread_type] = STATE(2362), + [sym_atomic_type] = STATE(2362), + [sym_generic_type] = STATE(2362), + [sym_function_type] = STATE(2362), + [sym_var_declaration] = STATE(4284), + [sym_identifier] = ACTIONS(1815), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(1430), + [anon_sym_LBRACE] = ACTIONS(1432), + [anon_sym_LPAREN] = ACTIONS(1434), + [anon_sym_fn] = ACTIONS(1436), + [anon_sym_PLUS] = ACTIONS(1817), + [anon_sym_DASH] = ACTIONS(1817), + [anon_sym_STAR] = ACTIONS(1819), + [anon_sym_struct] = ACTIONS(1442), + [anon_sym_mut] = ACTIONS(41), + [anon_sym_QMARK] = ACTIONS(47), + [anon_sym_BANG] = ACTIONS(1821), + [anon_sym_go] = ACTIONS(1823), + [anon_sym_spawn] = ACTIONS(1825), + [anon_sym_json_DOTdecode] = ACTIONS(1450), + [anon_sym_LBRACK2] = ACTIONS(1827), + [anon_sym_TILDE] = ACTIONS(1817), + [anon_sym_CARET] = ACTIONS(1817), + [anon_sym_AMP] = ACTIONS(1829), + [anon_sym_LT_DASH] = ACTIONS(1831), + [sym_none] = ACTIONS(1458), + [sym_true] = ACTIONS(1458), + [sym_false] = ACTIONS(1458), + [sym_nil] = ACTIONS(1458), + [anon_sym_if] = ACTIONS(1833), + [anon_sym_DOLLARif] = ACTIONS(1462), + [anon_sym_match] = ACTIONS(1464), + [anon_sym_select] = ACTIONS(1835), + [anon_sym_lock] = ACTIONS(1837), + [anon_sym_rlock] = ACTIONS(1837), + [anon_sym_unsafe] = ACTIONS(1839), + [anon_sym_sql] = ACTIONS(1472), + [sym_int_literal] = ACTIONS(1458), + [sym_float_literal] = ACTIONS(1474), + [sym_rune_literal] = ACTIONS(1474), + [sym_pseudo_compile_time_identifier] = ACTIONS(1476), + [anon_sym_shared] = ACTIONS(83), + [anon_sym_map_LBRACK] = ACTIONS(85), + [anon_sym_chan] = ACTIONS(87), + [anon_sym_thread] = ACTIONS(89), + [anon_sym_atomic] = ACTIONS(91), + [sym___double_quote] = ACTIONS(1480), + [sym___single_quote] = ACTIONS(1482), + [sym___c_double_quote] = ACTIONS(1484), + [sym___c_single_quote] = ACTIONS(1486), + [sym___r_double_quote] = ACTIONS(1488), + [sym___r_single_quote] = ACTIONS(1490), }, [241] = { [sym_line_comment] = STATE(241), [sym_block_comment] = STATE(241), - [sym__expression] = STATE(1258), - [sym__expression_without_blocks] = STATE(1312), - [sym__expression_with_blocks] = STATE(1312), - [sym_inc_expression] = STATE(1313), - [sym_dec_expression] = STATE(1313), - [sym_or_block_expression] = STATE(1313), - [sym_option_propagation_expression] = STATE(1313), - [sym_result_propagation_expression] = STATE(1313), - [sym_anon_struct_value_expression] = STATE(1314), - [sym_go_expression] = STATE(1313), - [sym_spawn_expression] = STATE(1313), - [sym_parenthesized_expression] = STATE(1313), - [sym_call_expression] = STATE(1313), - [sym_type_initializer] = STATE(1314), - [sym_function_literal] = STATE(1313), - [sym_reference_expression] = STATE(1334), - [sym_type_reference_expression] = STATE(3541), - [sym_unary_expression] = STATE(1313), - [sym_receive_expression] = STATE(1313), - [sym_binary_expression] = STATE(1313), - [sym_as_type_cast_expression] = STATE(1313), - [sym__max_group] = STATE(1313), - [sym_literal] = STATE(1308), - [sym_map_init_expression] = STATE(1314), - [sym_array_creation] = STATE(1313), - [sym_fixed_array_creation] = STATE(1313), - [sym_selector_expression] = STATE(1313), - [sym_index_expression] = STATE(1313), - [sym_slice_expression] = STATE(1313), - [sym_if_expression] = STATE(1314), - [sym_compile_time_if_expression] = STATE(1314), - [sym_is_expression] = STATE(1313), - [sym_in_expression] = STATE(1313), - [sym_enum_fetch] = STATE(1313), - [sym_match_expression] = STATE(1314), - [sym_select_expression] = STATE(1314), - [sym_lock_expression] = STATE(1314), - [sym_unsafe_expression] = STATE(1314), - [sym_sql_expression] = STATE(1314), - [sym_c_string_literal] = STATE(1286), - [sym_raw_string_literal] = STATE(1286), - [sym_interpreted_string_literal] = STATE(1286), - [sym_mutability_modifiers] = STATE(699), - [sym_plain_type] = STATE(4192), - [sym__plain_type_without_special] = STATE(2302), - [sym_anon_struct_type] = STATE(2303), - [sym_multi_return_type] = STATE(2302), - [sym_result_type] = STATE(2302), - [sym_option_type] = STATE(2302), - [sym_qualified_type] = STATE(3541), - [sym_fixed_array_type] = STATE(2303), - [sym_array_type] = STATE(2303), - [sym_pointer_type] = STATE(2303), - [sym_wrong_pointer_type] = STATE(2303), - [sym_map_type] = STATE(2303), - [sym_channel_type] = STATE(2303), - [sym_shared_type] = STATE(2303), - [sym_thread_type] = STATE(2303), - [sym_atomic_type] = STATE(2303), - [sym_generic_type] = STATE(2303), - [sym_function_type] = STATE(2303), - [sym___rcbr] = STATE(3591), - [aux_sym_string_interpolation_repeat1] = STATE(251), - [sym_identifier] = ACTIONS(1354), + [sym__expression] = STATE(2632), + [sym__expression_without_blocks] = STATE(2347), + [sym__expression_with_blocks] = STATE(2347), + [sym_inc_expression] = STATE(2379), + [sym_dec_expression] = STATE(2379), + [sym_or_block_expression] = STATE(2379), + [sym_option_propagation_expression] = STATE(2379), + [sym_result_propagation_expression] = STATE(2379), + [sym_anon_struct_value_expression] = STATE(2378), + [sym_go_expression] = STATE(2379), + [sym_spawn_expression] = STATE(2379), + [sym_parenthesized_expression] = STATE(2379), + [sym_call_expression] = STATE(2379), + [sym_type_initializer] = STATE(2378), + [sym_function_literal] = STATE(2379), + [sym_reference_expression] = STATE(2377), + [sym_type_reference_expression] = STATE(3460), + [sym_unary_expression] = STATE(2379), + [sym_receive_expression] = STATE(2379), + [sym_binary_expression] = STATE(2379), + [sym_as_type_cast_expression] = STATE(2379), + [sym__max_group] = STATE(2379), + [sym_literal] = STATE(2392), + [sym_map_init_expression] = STATE(2378), + [sym_map_keyed_element] = STATE(2004), + [sym_array_creation] = STATE(2379), + [sym_fixed_array_creation] = STATE(2379), + [sym_selector_expression] = STATE(2379), + [sym_index_expression] = STATE(2379), + [sym_slice_expression] = STATE(2379), + [sym_if_expression] = STATE(2378), + [sym_compile_time_if_expression] = STATE(2378), + [sym_is_expression] = STATE(2379), + [sym_in_expression] = STATE(2379), + [sym_enum_fetch] = STATE(2379), + [sym_match_expression] = STATE(2378), + [sym_select_expression] = STATE(2378), + [sym_lock_expression] = STATE(2378), + [sym_unsafe_expression] = STATE(2378), + [sym_sql_expression] = STATE(2378), + [sym_c_string_literal] = STATE(2401), + [sym_raw_string_literal] = STATE(2401), + [sym_interpreted_string_literal] = STATE(2401), + [sym_mutability_modifiers] = STATE(939), + [sym_plain_type] = STATE(4160), + [sym__plain_type_without_special] = STATE(2360), + [sym_anon_struct_type] = STATE(2362), + [sym_multi_return_type] = STATE(2360), + [sym_result_type] = STATE(2360), + [sym_option_type] = STATE(2360), + [sym_qualified_type] = STATE(3460), + [sym_fixed_array_type] = STATE(2362), + [sym_array_type] = STATE(2362), + [sym_pointer_type] = STATE(2362), + [sym_wrong_pointer_type] = STATE(2362), + [sym_map_type] = STATE(2362), + [sym_channel_type] = STATE(2362), + [sym_shared_type] = STATE(2362), + [sym_thread_type] = STATE(2362), + [sym_atomic_type] = STATE(2362), + [sym_generic_type] = STATE(2362), + [sym_function_type] = STATE(2362), + [aux_sym_map_init_expression_repeat1] = STATE(236), + [sym_identifier] = ACTIONS(1428), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1356), - [anon_sym_LBRACE] = ACTIONS(1358), - [anon_sym_RBRACE] = ACTIONS(1861), - [anon_sym_LPAREN] = ACTIONS(1360), - [anon_sym_fn] = ACTIONS(1362), - [anon_sym_PLUS] = ACTIONS(1863), - [anon_sym_DASH] = ACTIONS(1863), - [anon_sym_STAR] = ACTIONS(1865), - [anon_sym_struct] = ACTIONS(1370), + [anon_sym_DOT] = ACTIONS(1430), + [anon_sym_LBRACE] = ACTIONS(1432), + [anon_sym_RBRACE] = ACTIONS(1873), + [anon_sym_LPAREN] = ACTIONS(1434), + [anon_sym_fn] = ACTIONS(1436), + [anon_sym_PLUS] = ACTIONS(1438), + [anon_sym_DASH] = ACTIONS(1438), + [anon_sym_STAR] = ACTIONS(1440), + [anon_sym_struct] = ACTIONS(1442), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(1867), - [anon_sym_go] = ACTIONS(1869), - [anon_sym_spawn] = ACTIONS(1871), - [anon_sym_json_DOTdecode] = ACTIONS(1378), - [anon_sym_LBRACK2] = ACTIONS(1380), - [anon_sym_TILDE] = ACTIONS(1863), - [anon_sym_CARET] = ACTIONS(1863), - [anon_sym_AMP] = ACTIONS(1873), - [anon_sym_LT_DASH] = ACTIONS(1875), - [sym_none] = ACTIONS(1386), - [sym_true] = ACTIONS(1386), - [sym_false] = ACTIONS(1386), - [sym_nil] = ACTIONS(1386), - [anon_sym_if] = ACTIONS(1877), - [anon_sym_DOLLARif] = ACTIONS(1390), - [anon_sym_match] = ACTIONS(1392), - [anon_sym_select] = ACTIONS(1879), - [anon_sym_lock] = ACTIONS(1881), - [anon_sym_rlock] = ACTIONS(1881), - [anon_sym_unsafe] = ACTIONS(1883), - [anon_sym_sql] = ACTIONS(1400), - [sym_int_literal] = ACTIONS(1386), - [sym_float_literal] = ACTIONS(1404), - [sym_rune_literal] = ACTIONS(1404), - [sym_pseudo_compile_time_identifier] = ACTIONS(1406), + [anon_sym_BANG] = ACTIONS(1444), + [anon_sym_go] = ACTIONS(1446), + [anon_sym_spawn] = ACTIONS(1448), + [anon_sym_json_DOTdecode] = ACTIONS(1450), + [anon_sym_LBRACK2] = ACTIONS(1452), + [anon_sym_TILDE] = ACTIONS(1438), + [anon_sym_CARET] = ACTIONS(1438), + [anon_sym_AMP] = ACTIONS(1454), + [anon_sym_LT_DASH] = ACTIONS(1456), + [sym_none] = ACTIONS(1458), + [sym_true] = ACTIONS(1458), + [sym_false] = ACTIONS(1458), + [sym_nil] = ACTIONS(1458), + [anon_sym_if] = ACTIONS(1833), + [anon_sym_DOLLARif] = ACTIONS(1462), + [anon_sym_match] = ACTIONS(1464), + [anon_sym_select] = ACTIONS(1466), + [anon_sym_lock] = ACTIONS(1468), + [anon_sym_rlock] = ACTIONS(1468), + [anon_sym_unsafe] = ACTIONS(1839), + [anon_sym_sql] = ACTIONS(1472), + [sym_int_literal] = ACTIONS(1458), + [sym_float_literal] = ACTIONS(1474), + [sym_rune_literal] = ACTIONS(1474), + [sym_pseudo_compile_time_identifier] = ACTIONS(1476), [anon_sym_shared] = ACTIONS(83), [anon_sym_map_LBRACK] = ACTIONS(85), [anon_sym_chan] = ACTIONS(87), [anon_sym_thread] = ACTIONS(89), [anon_sym_atomic] = ACTIONS(91), - [sym___double_quote] = ACTIONS(1408), - [sym___single_quote] = ACTIONS(1410), - [sym___c_double_quote] = ACTIONS(1412), - [sym___c_single_quote] = ACTIONS(1414), - [sym___r_double_quote] = ACTIONS(1416), - [sym___r_single_quote] = ACTIONS(1418), + [sym___double_quote] = ACTIONS(1480), + [sym___single_quote] = ACTIONS(1482), + [sym___c_double_quote] = ACTIONS(1484), + [sym___c_single_quote] = ACTIONS(1486), + [sym___r_double_quote] = ACTIONS(1488), + [sym___r_single_quote] = ACTIONS(1490), }, [242] = { [sym_line_comment] = STATE(242), [sym_block_comment] = STATE(242), - [sym__expression] = STATE(2716), - [sym__expression_without_blocks] = STATE(2300), - [sym__expression_with_blocks] = STATE(2300), - [sym_inc_expression] = STATE(2307), - [sym_dec_expression] = STATE(2307), - [sym_or_block_expression] = STATE(2307), - [sym_option_propagation_expression] = STATE(2307), - [sym_result_propagation_expression] = STATE(2307), - [sym_anon_struct_value_expression] = STATE(2380), - [sym_go_expression] = STATE(2307), - [sym_spawn_expression] = STATE(2307), - [sym_parenthesized_expression] = STATE(2307), - [sym_call_expression] = STATE(2307), - [sym_type_initializer] = STATE(2380), - [sym_function_literal] = STATE(2307), - [sym_reference_expression] = STATE(2311), - [sym_type_reference_expression] = STATE(3541), - [sym_unary_expression] = STATE(2307), - [sym_receive_expression] = STATE(2307), - [sym_binary_expression] = STATE(2307), - [sym_as_type_cast_expression] = STATE(2307), - [sym__max_group] = STATE(2307), - [sym_literal] = STATE(2292), - [sym_map_init_expression] = STATE(2380), - [sym_map_keyed_element] = STATE(2001), - [sym_array_creation] = STATE(2307), - [sym_fixed_array_creation] = STATE(2307), - [sym_selector_expression] = STATE(2307), - [sym_index_expression] = STATE(2307), - [sym_slice_expression] = STATE(2307), - [sym_if_expression] = STATE(2380), - [sym_compile_time_if_expression] = STATE(2380), - [sym_is_expression] = STATE(2307), - [sym_in_expression] = STATE(2307), - [sym_enum_fetch] = STATE(2307), - [sym_match_expression] = STATE(2380), - [sym_select_expression] = STATE(2380), - [sym_lock_expression] = STATE(2380), - [sym_unsafe_expression] = STATE(2380), - [sym_sql_expression] = STATE(2380), - [sym_c_string_literal] = STATE(2308), - [sym_raw_string_literal] = STATE(2308), - [sym_interpreted_string_literal] = STATE(2308), + [sym__expression] = STATE(2632), + [sym__expression_without_blocks] = STATE(2347), + [sym__expression_with_blocks] = STATE(2347), + [sym_inc_expression] = STATE(2379), + [sym_dec_expression] = STATE(2379), + [sym_or_block_expression] = STATE(2379), + [sym_option_propagation_expression] = STATE(2379), + [sym_result_propagation_expression] = STATE(2379), + [sym_anon_struct_value_expression] = STATE(2378), + [sym_go_expression] = STATE(2379), + [sym_spawn_expression] = STATE(2379), + [sym_parenthesized_expression] = STATE(2379), + [sym_call_expression] = STATE(2379), + [sym_type_initializer] = STATE(2378), + [sym_function_literal] = STATE(2379), + [sym_reference_expression] = STATE(2377), + [sym_type_reference_expression] = STATE(3460), + [sym_unary_expression] = STATE(2379), + [sym_receive_expression] = STATE(2379), + [sym_binary_expression] = STATE(2379), + [sym_as_type_cast_expression] = STATE(2379), + [sym__max_group] = STATE(2379), + [sym_literal] = STATE(2392), + [sym_map_init_expression] = STATE(2378), + [sym_map_keyed_element] = STATE(2004), + [sym_array_creation] = STATE(2379), + [sym_fixed_array_creation] = STATE(2379), + [sym_selector_expression] = STATE(2379), + [sym_index_expression] = STATE(2379), + [sym_slice_expression] = STATE(2379), + [sym_if_expression] = STATE(2378), + [sym_compile_time_if_expression] = STATE(2378), + [sym_is_expression] = STATE(2379), + [sym_in_expression] = STATE(2379), + [sym_enum_fetch] = STATE(2379), + [sym_match_expression] = STATE(2378), + [sym_select_expression] = STATE(2378), + [sym_lock_expression] = STATE(2378), + [sym_unsafe_expression] = STATE(2378), + [sym_sql_expression] = STATE(2378), + [sym_c_string_literal] = STATE(2401), + [sym_raw_string_literal] = STATE(2401), + [sym_interpreted_string_literal] = STATE(2401), [sym_mutability_modifiers] = STATE(939), - [sym_plain_type] = STATE(4297), - [sym__plain_type_without_special] = STATE(2302), - [sym_anon_struct_type] = STATE(2303), - [sym_multi_return_type] = STATE(2302), - [sym_result_type] = STATE(2302), - [sym_option_type] = STATE(2302), - [sym_qualified_type] = STATE(3541), - [sym_fixed_array_type] = STATE(2303), - [sym_array_type] = STATE(2303), - [sym_pointer_type] = STATE(2303), - [sym_wrong_pointer_type] = STATE(2303), - [sym_map_type] = STATE(2303), - [sym_channel_type] = STATE(2303), - [sym_shared_type] = STATE(2303), - [sym_thread_type] = STATE(2303), - [sym_atomic_type] = STATE(2303), - [sym_generic_type] = STATE(2303), - [sym_function_type] = STATE(2303), - [aux_sym_map_init_expression_repeat1] = STATE(243), - [sym_identifier] = ACTIONS(1426), + [sym_plain_type] = STATE(4160), + [sym__plain_type_without_special] = STATE(2360), + [sym_anon_struct_type] = STATE(2362), + [sym_multi_return_type] = STATE(2360), + [sym_result_type] = STATE(2360), + [sym_option_type] = STATE(2360), + [sym_qualified_type] = STATE(3460), + [sym_fixed_array_type] = STATE(2362), + [sym_array_type] = STATE(2362), + [sym_pointer_type] = STATE(2362), + [sym_wrong_pointer_type] = STATE(2362), + [sym_map_type] = STATE(2362), + [sym_channel_type] = STATE(2362), + [sym_shared_type] = STATE(2362), + [sym_thread_type] = STATE(2362), + [sym_atomic_type] = STATE(2362), + [sym_generic_type] = STATE(2362), + [sym_function_type] = STATE(2362), + [aux_sym_map_init_expression_repeat1] = STATE(303), + [sym_identifier] = ACTIONS(1428), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1428), - [anon_sym_LBRACE] = ACTIONS(1430), - [anon_sym_RBRACE] = ACTIONS(1885), - [anon_sym_LPAREN] = ACTIONS(1432), - [anon_sym_fn] = ACTIONS(1434), - [anon_sym_PLUS] = ACTIONS(1436), - [anon_sym_DASH] = ACTIONS(1436), - [anon_sym_STAR] = ACTIONS(1438), - [anon_sym_struct] = ACTIONS(1440), + [anon_sym_DOT] = ACTIONS(1430), + [anon_sym_LBRACE] = ACTIONS(1432), + [anon_sym_RBRACE] = ACTIONS(1875), + [anon_sym_LPAREN] = ACTIONS(1434), + [anon_sym_fn] = ACTIONS(1436), + [anon_sym_PLUS] = ACTIONS(1438), + [anon_sym_DASH] = ACTIONS(1438), + [anon_sym_STAR] = ACTIONS(1440), + [anon_sym_struct] = ACTIONS(1442), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(1442), - [anon_sym_go] = ACTIONS(1444), - [anon_sym_spawn] = ACTIONS(1446), - [anon_sym_json_DOTdecode] = ACTIONS(1448), - [anon_sym_LBRACK2] = ACTIONS(1450), - [anon_sym_TILDE] = ACTIONS(1436), - [anon_sym_CARET] = ACTIONS(1436), - [anon_sym_AMP] = ACTIONS(1452), - [anon_sym_LT_DASH] = ACTIONS(1454), - [sym_none] = ACTIONS(1456), - [sym_true] = ACTIONS(1456), - [sym_false] = ACTIONS(1456), - [sym_nil] = ACTIONS(1456), - [anon_sym_if] = ACTIONS(1827), - [anon_sym_DOLLARif] = ACTIONS(1460), - [anon_sym_match] = ACTIONS(1462), - [anon_sym_select] = ACTIONS(1464), - [anon_sym_lock] = ACTIONS(1466), - [anon_sym_rlock] = ACTIONS(1466), - [anon_sym_unsafe] = ACTIONS(1833), - [anon_sym_sql] = ACTIONS(1470), - [sym_int_literal] = ACTIONS(1456), - [sym_float_literal] = ACTIONS(1472), - [sym_rune_literal] = ACTIONS(1472), - [sym_pseudo_compile_time_identifier] = ACTIONS(1474), + [anon_sym_BANG] = ACTIONS(1444), + [anon_sym_go] = ACTIONS(1446), + [anon_sym_spawn] = ACTIONS(1448), + [anon_sym_json_DOTdecode] = ACTIONS(1450), + [anon_sym_LBRACK2] = ACTIONS(1452), + [anon_sym_TILDE] = ACTIONS(1438), + [anon_sym_CARET] = ACTIONS(1438), + [anon_sym_AMP] = ACTIONS(1454), + [anon_sym_LT_DASH] = ACTIONS(1456), + [sym_none] = ACTIONS(1458), + [sym_true] = ACTIONS(1458), + [sym_false] = ACTIONS(1458), + [sym_nil] = ACTIONS(1458), + [anon_sym_if] = ACTIONS(1833), + [anon_sym_DOLLARif] = ACTIONS(1462), + [anon_sym_match] = ACTIONS(1464), + [anon_sym_select] = ACTIONS(1466), + [anon_sym_lock] = ACTIONS(1468), + [anon_sym_rlock] = ACTIONS(1468), + [anon_sym_unsafe] = ACTIONS(1839), + [anon_sym_sql] = ACTIONS(1472), + [sym_int_literal] = ACTIONS(1458), + [sym_float_literal] = ACTIONS(1474), + [sym_rune_literal] = ACTIONS(1474), + [sym_pseudo_compile_time_identifier] = ACTIONS(1476), [anon_sym_shared] = ACTIONS(83), [anon_sym_map_LBRACK] = ACTIONS(85), [anon_sym_chan] = ACTIONS(87), [anon_sym_thread] = ACTIONS(89), [anon_sym_atomic] = ACTIONS(91), - [sym___double_quote] = ACTIONS(1478), - [sym___single_quote] = ACTIONS(1480), - [sym___c_double_quote] = ACTIONS(1482), - [sym___c_single_quote] = ACTIONS(1484), - [sym___r_double_quote] = ACTIONS(1486), - [sym___r_single_quote] = ACTIONS(1488), + [sym___double_quote] = ACTIONS(1480), + [sym___single_quote] = ACTIONS(1482), + [sym___c_double_quote] = ACTIONS(1484), + [sym___c_single_quote] = ACTIONS(1486), + [sym___r_double_quote] = ACTIONS(1488), + [sym___r_single_quote] = ACTIONS(1490), }, [243] = { [sym_line_comment] = STATE(243), [sym_block_comment] = STATE(243), - [sym__expression] = STATE(2716), - [sym__expression_without_blocks] = STATE(2300), - [sym__expression_with_blocks] = STATE(2300), - [sym_inc_expression] = STATE(2307), - [sym_dec_expression] = STATE(2307), - [sym_or_block_expression] = STATE(2307), - [sym_option_propagation_expression] = STATE(2307), - [sym_result_propagation_expression] = STATE(2307), - [sym_anon_struct_value_expression] = STATE(2380), - [sym_go_expression] = STATE(2307), - [sym_spawn_expression] = STATE(2307), - [sym_parenthesized_expression] = STATE(2307), - [sym_call_expression] = STATE(2307), - [sym_type_initializer] = STATE(2380), - [sym_function_literal] = STATE(2307), - [sym_reference_expression] = STATE(2311), - [sym_type_reference_expression] = STATE(3541), - [sym_unary_expression] = STATE(2307), - [sym_receive_expression] = STATE(2307), - [sym_binary_expression] = STATE(2307), - [sym_as_type_cast_expression] = STATE(2307), - [sym__max_group] = STATE(2307), - [sym_literal] = STATE(2292), - [sym_map_init_expression] = STATE(2380), - [sym_map_keyed_element] = STATE(2001), - [sym_array_creation] = STATE(2307), - [sym_fixed_array_creation] = STATE(2307), - [sym_selector_expression] = STATE(2307), - [sym_index_expression] = STATE(2307), - [sym_slice_expression] = STATE(2307), - [sym_if_expression] = STATE(2380), - [sym_compile_time_if_expression] = STATE(2380), - [sym_is_expression] = STATE(2307), - [sym_in_expression] = STATE(2307), - [sym_enum_fetch] = STATE(2307), - [sym_match_expression] = STATE(2380), - [sym_select_expression] = STATE(2380), - [sym_lock_expression] = STATE(2380), - [sym_unsafe_expression] = STATE(2380), - [sym_sql_expression] = STATE(2380), - [sym_c_string_literal] = STATE(2308), - [sym_raw_string_literal] = STATE(2308), - [sym_interpreted_string_literal] = STATE(2308), - [sym_mutability_modifiers] = STATE(939), - [sym_plain_type] = STATE(4297), - [sym__plain_type_without_special] = STATE(2302), - [sym_anon_struct_type] = STATE(2303), - [sym_multi_return_type] = STATE(2302), - [sym_result_type] = STATE(2302), - [sym_option_type] = STATE(2302), - [sym_qualified_type] = STATE(3541), - [sym_fixed_array_type] = STATE(2303), - [sym_array_type] = STATE(2303), - [sym_pointer_type] = STATE(2303), - [sym_wrong_pointer_type] = STATE(2303), - [sym_map_type] = STATE(2303), - [sym_channel_type] = STATE(2303), - [sym_shared_type] = STATE(2303), - [sym_thread_type] = STATE(2303), - [sym_atomic_type] = STATE(2303), - [sym_generic_type] = STATE(2303), - [sym_function_type] = STATE(2303), - [aux_sym_map_init_expression_repeat1] = STATE(295), - [sym_identifier] = ACTIONS(1426), + [sym__expression] = STATE(2558), + [sym__expression_without_blocks] = STATE(2347), + [sym__expression_with_blocks] = STATE(2347), + [sym_inc_expression] = STATE(2379), + [sym_dec_expression] = STATE(2379), + [sym_or_block_expression] = STATE(2379), + [sym_option_propagation_expression] = STATE(2379), + [sym_result_propagation_expression] = STATE(2379), + [sym_anon_struct_value_expression] = STATE(2378), + [sym_go_expression] = STATE(2379), + [sym_spawn_expression] = STATE(2379), + [sym_parenthesized_expression] = STATE(2379), + [sym_call_expression] = STATE(2379), + [sym_type_initializer] = STATE(2378), + [sym_function_literal] = STATE(2379), + [sym_reference_expression] = STATE(2377), + [sym_type_reference_expression] = STATE(3460), + [sym_unary_expression] = STATE(2379), + [sym_receive_expression] = STATE(2379), + [sym_binary_expression] = STATE(2379), + [sym_as_type_cast_expression] = STATE(2379), + [sym__max_group] = STATE(2379), + [sym_literal] = STATE(2392), + [sym_map_init_expression] = STATE(2378), + [sym_array_creation] = STATE(2379), + [sym_fixed_array_creation] = STATE(2379), + [sym_selector_expression] = STATE(2379), + [sym_index_expression] = STATE(2379), + [sym_slice_expression] = STATE(2379), + [sym_if_expression] = STATE(2378), + [sym_compile_time_if_expression] = STATE(2378), + [sym_is_expression] = STATE(2379), + [sym_in_expression] = STATE(2379), + [sym_enum_fetch] = STATE(2379), + [sym_match_expression] = STATE(2378), + [sym_select_expression] = STATE(2378), + [sym_lock_expression] = STATE(2378), + [sym_unsafe_expression] = STATE(2378), + [sym_sql_expression] = STATE(2378), + [sym_c_string_literal] = STATE(2401), + [sym_raw_string_literal] = STATE(2401), + [sym_interpreted_string_literal] = STATE(2401), + [sym_mutability_modifiers] = STATE(900), + [sym_mutable_expression] = STATE(3813), + [sym_expression_list] = STATE(4279), + [sym_plain_type] = STATE(4160), + [sym__plain_type_without_special] = STATE(2360), + [sym_anon_struct_type] = STATE(2362), + [sym_multi_return_type] = STATE(2360), + [sym_result_type] = STATE(2360), + [sym_option_type] = STATE(2360), + [sym_qualified_type] = STATE(3460), + [sym_fixed_array_type] = STATE(2362), + [sym_array_type] = STATE(2362), + [sym_pointer_type] = STATE(2362), + [sym_wrong_pointer_type] = STATE(2362), + [sym_map_type] = STATE(2362), + [sym_channel_type] = STATE(2362), + [sym_shared_type] = STATE(2362), + [sym_thread_type] = STATE(2362), + [sym_atomic_type] = STATE(2362), + [sym_generic_type] = STATE(2362), + [sym_function_type] = STATE(2362), + [sym_block] = STATE(1821), + [sym_identifier] = ACTIONS(1815), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1428), - [anon_sym_LBRACE] = ACTIONS(1430), - [anon_sym_RBRACE] = ACTIONS(1887), - [anon_sym_LPAREN] = ACTIONS(1432), - [anon_sym_fn] = ACTIONS(1434), - [anon_sym_PLUS] = ACTIONS(1436), - [anon_sym_DASH] = ACTIONS(1436), - [anon_sym_STAR] = ACTIONS(1438), - [anon_sym_struct] = ACTIONS(1440), + [anon_sym_DOT] = ACTIONS(1430), + [anon_sym_LBRACE] = ACTIONS(1877), + [anon_sym_LPAREN] = ACTIONS(1434), + [anon_sym_fn] = ACTIONS(1436), + [anon_sym_PLUS] = ACTIONS(1817), + [anon_sym_DASH] = ACTIONS(1817), + [anon_sym_STAR] = ACTIONS(1819), + [anon_sym_struct] = ACTIONS(1442), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(1442), - [anon_sym_go] = ACTIONS(1444), - [anon_sym_spawn] = ACTIONS(1446), - [anon_sym_json_DOTdecode] = ACTIONS(1448), - [anon_sym_LBRACK2] = ACTIONS(1450), - [anon_sym_TILDE] = ACTIONS(1436), - [anon_sym_CARET] = ACTIONS(1436), - [anon_sym_AMP] = ACTIONS(1452), - [anon_sym_LT_DASH] = ACTIONS(1454), - [sym_none] = ACTIONS(1456), - [sym_true] = ACTIONS(1456), - [sym_false] = ACTIONS(1456), - [sym_nil] = ACTIONS(1456), - [anon_sym_if] = ACTIONS(1827), - [anon_sym_DOLLARif] = ACTIONS(1460), - [anon_sym_match] = ACTIONS(1462), - [anon_sym_select] = ACTIONS(1464), - [anon_sym_lock] = ACTIONS(1466), - [anon_sym_rlock] = ACTIONS(1466), - [anon_sym_unsafe] = ACTIONS(1833), - [anon_sym_sql] = ACTIONS(1470), - [sym_int_literal] = ACTIONS(1456), - [sym_float_literal] = ACTIONS(1472), - [sym_rune_literal] = ACTIONS(1472), - [sym_pseudo_compile_time_identifier] = ACTIONS(1474), + [anon_sym_BANG] = ACTIONS(1821), + [anon_sym_go] = ACTIONS(1823), + [anon_sym_spawn] = ACTIONS(1825), + [anon_sym_json_DOTdecode] = ACTIONS(1450), + [anon_sym_LBRACK2] = ACTIONS(1827), + [anon_sym_TILDE] = ACTIONS(1817), + [anon_sym_CARET] = ACTIONS(1817), + [anon_sym_AMP] = ACTIONS(1829), + [anon_sym_LT_DASH] = ACTIONS(1831), + [sym_none] = ACTIONS(1458), + [sym_true] = ACTIONS(1458), + [sym_false] = ACTIONS(1458), + [sym_nil] = ACTIONS(1458), + [anon_sym_if] = ACTIONS(1833), + [anon_sym_DOLLARif] = ACTIONS(1462), + [anon_sym_match] = ACTIONS(1464), + [anon_sym_select] = ACTIONS(1835), + [anon_sym_lock] = ACTIONS(1837), + [anon_sym_rlock] = ACTIONS(1837), + [anon_sym_unsafe] = ACTIONS(1839), + [anon_sym_sql] = ACTIONS(1472), + [sym_int_literal] = ACTIONS(1458), + [sym_float_literal] = ACTIONS(1474), + [sym_rune_literal] = ACTIONS(1474), + [sym_pseudo_compile_time_identifier] = ACTIONS(1476), [anon_sym_shared] = ACTIONS(83), [anon_sym_map_LBRACK] = ACTIONS(85), [anon_sym_chan] = ACTIONS(87), [anon_sym_thread] = ACTIONS(89), [anon_sym_atomic] = ACTIONS(91), - [sym___double_quote] = ACTIONS(1478), - [sym___single_quote] = ACTIONS(1480), - [sym___c_double_quote] = ACTIONS(1482), - [sym___c_single_quote] = ACTIONS(1484), - [sym___r_double_quote] = ACTIONS(1486), - [sym___r_single_quote] = ACTIONS(1488), + [sym___double_quote] = ACTIONS(1480), + [sym___single_quote] = ACTIONS(1482), + [sym___c_double_quote] = ACTIONS(1484), + [sym___c_single_quote] = ACTIONS(1486), + [sym___r_double_quote] = ACTIONS(1488), + [sym___r_single_quote] = ACTIONS(1490), }, [244] = { [sym_line_comment] = STATE(244), [sym_block_comment] = STATE(244), - [sym__expression] = STATE(2345), - [sym__expression_without_blocks] = STATE(2300), - [sym__expression_with_blocks] = STATE(2300), - [sym_inc_expression] = STATE(2307), - [sym_dec_expression] = STATE(2307), - [sym_or_block_expression] = STATE(2307), - [sym_option_propagation_expression] = STATE(2307), - [sym_result_propagation_expression] = STATE(2307), - [sym_anon_struct_value_expression] = STATE(2380), - [sym_go_expression] = STATE(2307), - [sym_spawn_expression] = STATE(2307), - [sym_parenthesized_expression] = STATE(2307), - [sym_call_expression] = STATE(2307), - [sym_type_initializer] = STATE(2380), - [sym_function_literal] = STATE(2307), - [sym_reference_expression] = STATE(2311), - [sym_type_reference_expression] = STATE(3541), - [sym_unary_expression] = STATE(2307), - [sym_receive_expression] = STATE(2307), - [sym_binary_expression] = STATE(2307), - [sym_as_type_cast_expression] = STATE(2307), - [sym__max_group] = STATE(2307), - [sym_literal] = STATE(2292), - [sym_map_init_expression] = STATE(2380), - [sym_array_creation] = STATE(2307), - [sym_fixed_array_creation] = STATE(2307), - [sym_selector_expression] = STATE(2307), - [sym_index_expression] = STATE(2307), - [sym_slice_expression] = STATE(2307), - [sym_if_expression] = STATE(2380), - [sym_compile_time_if_expression] = STATE(2380), - [sym_is_expression] = STATE(2307), - [sym_in_expression] = STATE(2307), - [sym_enum_fetch] = STATE(2307), - [sym_match_expression] = STATE(2380), - [sym_select_expression] = STATE(2380), - [sym_lock_expression] = STATE(2380), - [sym_unsafe_expression] = STATE(2380), - [sym_sql_expression] = STATE(2380), - [sym_c_string_literal] = STATE(2308), - [sym_raw_string_literal] = STATE(2308), - [sym_interpreted_string_literal] = STATE(2308), - [sym_mutability_modifiers] = STATE(765), - [sym_mutable_expression] = STATE(3823), - [sym_expression_list] = STATE(4480), - [sym_plain_type] = STATE(4297), - [sym__plain_type_without_special] = STATE(2302), - [sym_anon_struct_type] = STATE(2303), - [sym_multi_return_type] = STATE(2302), - [sym_result_type] = STATE(2302), - [sym_option_type] = STATE(2302), - [sym_qualified_type] = STATE(3541), - [sym_fixed_array_type] = STATE(2303), - [sym_array_type] = STATE(2303), - [sym_pointer_type] = STATE(2303), - [sym_wrong_pointer_type] = STATE(2303), - [sym_map_type] = STATE(2303), - [sym_channel_type] = STATE(2303), - [sym_shared_type] = STATE(2303), - [sym_thread_type] = STATE(2303), - [sym_atomic_type] = STATE(2303), - [sym_generic_type] = STATE(2303), - [sym_function_type] = STATE(2303), - [sym_var_declaration] = STATE(4098), - [sym_identifier] = ACTIONS(1807), - [anon_sym_SLASH_SLASH] = ACTIONS(3), - [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1428), - [anon_sym_LBRACE] = ACTIONS(1430), - [anon_sym_LPAREN] = ACTIONS(1432), - [anon_sym_fn] = ACTIONS(1434), - [anon_sym_PLUS] = ACTIONS(1811), - [anon_sym_DASH] = ACTIONS(1811), - [anon_sym_STAR] = ACTIONS(1813), - [anon_sym_struct] = ACTIONS(1440), - [anon_sym_mut] = ACTIONS(41), - [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(1815), - [anon_sym_go] = ACTIONS(1817), - [anon_sym_spawn] = ACTIONS(1819), - [anon_sym_json_DOTdecode] = ACTIONS(1448), - [anon_sym_LBRACK2] = ACTIONS(1821), - [anon_sym_TILDE] = ACTIONS(1811), - [anon_sym_CARET] = ACTIONS(1811), - [anon_sym_AMP] = ACTIONS(1823), - [anon_sym_LT_DASH] = ACTIONS(1825), - [sym_none] = ACTIONS(1456), - [sym_true] = ACTIONS(1456), - [sym_false] = ACTIONS(1456), - [sym_nil] = ACTIONS(1456), - [anon_sym_if] = ACTIONS(1827), - [anon_sym_DOLLARif] = ACTIONS(1460), - [anon_sym_match] = ACTIONS(1462), - [anon_sym_select] = ACTIONS(1829), - [anon_sym_lock] = ACTIONS(1831), - [anon_sym_rlock] = ACTIONS(1831), - [anon_sym_unsafe] = ACTIONS(1833), - [anon_sym_sql] = ACTIONS(1470), - [sym_int_literal] = ACTIONS(1456), - [sym_float_literal] = ACTIONS(1472), - [sym_rune_literal] = ACTIONS(1472), - [sym_pseudo_compile_time_identifier] = ACTIONS(1474), - [anon_sym_shared] = ACTIONS(83), - [anon_sym_map_LBRACK] = ACTIONS(85), - [anon_sym_chan] = ACTIONS(87), - [anon_sym_thread] = ACTIONS(89), - [anon_sym_atomic] = ACTIONS(91), - [sym___double_quote] = ACTIONS(1478), - [sym___single_quote] = ACTIONS(1480), - [sym___c_double_quote] = ACTIONS(1482), - [sym___c_single_quote] = ACTIONS(1484), - [sym___r_double_quote] = ACTIONS(1486), - [sym___r_single_quote] = ACTIONS(1488), + [sym_type_parameters] = STATE(465), + [ts_builtin_sym_end] = ACTIONS(1879), + [sym_identifier] = ACTIONS(1881), + [anon_sym_LF] = ACTIONS(1881), + [anon_sym_CR] = ACTIONS(1881), + [anon_sym_CR_LF] = ACTIONS(1881), + [anon_sym_SLASH_SLASH] = ACTIONS(497), + [anon_sym_SLASH_STAR] = ACTIONS(499), + [anon_sym_DOT] = ACTIONS(1881), + [anon_sym_as] = ACTIONS(1881), + [anon_sym_LBRACE] = ACTIONS(1881), + [anon_sym_COMMA] = ACTIONS(1881), + [anon_sym_const] = ACTIONS(1881), + [anon_sym_LPAREN] = ACTIONS(1881), + [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(1879), + [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(1881), + [anon_sym_BANG] = ACTIONS(1881), + [anon_sym_go] = ACTIONS(1881), + [anon_sym_spawn] = ACTIONS(1881), + [anon_sym_json_DOTdecode] = ACTIONS(1881), + [anon_sym_LBRACK2] = ACTIONS(1881), + [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(1881), + [anon_sym_POUND_LBRACK] = ACTIONS(1881), + [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), }, [245] = { [sym_line_comment] = STATE(245), [sym_block_comment] = STATE(245), - [sym__expression] = STATE(2716), - [sym__expression_without_blocks] = STATE(2300), - [sym__expression_with_blocks] = STATE(2300), - [sym_inc_expression] = STATE(2307), - [sym_dec_expression] = STATE(2307), - [sym_or_block_expression] = STATE(2307), - [sym_option_propagation_expression] = STATE(2307), - [sym_result_propagation_expression] = STATE(2307), - [sym_anon_struct_value_expression] = STATE(2380), - [sym_go_expression] = STATE(2307), - [sym_spawn_expression] = STATE(2307), - [sym_parenthesized_expression] = STATE(2307), - [sym_call_expression] = STATE(2307), - [sym_type_initializer] = STATE(2380), - [sym_function_literal] = STATE(2307), - [sym_reference_expression] = STATE(2311), - [sym_type_reference_expression] = STATE(3541), - [sym_unary_expression] = STATE(2307), - [sym_receive_expression] = STATE(2307), - [sym_binary_expression] = STATE(2307), - [sym_as_type_cast_expression] = STATE(2307), - [sym__max_group] = STATE(2307), - [sym_literal] = STATE(2292), - [sym_map_init_expression] = STATE(2380), - [sym_map_keyed_element] = STATE(2001), - [sym_array_creation] = STATE(2307), - [sym_fixed_array_creation] = STATE(2307), - [sym_selector_expression] = STATE(2307), - [sym_index_expression] = STATE(2307), - [sym_slice_expression] = STATE(2307), - [sym_if_expression] = STATE(2380), - [sym_compile_time_if_expression] = STATE(2380), - [sym_is_expression] = STATE(2307), - [sym_in_expression] = STATE(2307), - [sym_enum_fetch] = STATE(2307), - [sym_match_expression] = STATE(2380), - [sym_select_expression] = STATE(2380), - [sym_lock_expression] = STATE(2380), - [sym_unsafe_expression] = STATE(2380), - [sym_sql_expression] = STATE(2380), - [sym_c_string_literal] = STATE(2308), - [sym_raw_string_literal] = STATE(2308), - [sym_interpreted_string_literal] = STATE(2308), - [sym_mutability_modifiers] = STATE(939), - [sym_plain_type] = STATE(4297), - [sym__plain_type_without_special] = STATE(2302), - [sym_anon_struct_type] = STATE(2303), - [sym_multi_return_type] = STATE(2302), - [sym_result_type] = STATE(2302), - [sym_option_type] = STATE(2302), - [sym_qualified_type] = STATE(3541), - [sym_fixed_array_type] = STATE(2303), - [sym_array_type] = STATE(2303), - [sym_pointer_type] = STATE(2303), - [sym_wrong_pointer_type] = STATE(2303), - [sym_map_type] = STATE(2303), - [sym_channel_type] = STATE(2303), - [sym_shared_type] = STATE(2303), - [sym_thread_type] = STATE(2303), - [sym_atomic_type] = STATE(2303), - [sym_generic_type] = STATE(2303), - [sym_function_type] = STATE(2303), - [aux_sym_map_init_expression_repeat1] = STATE(274), - [sym_identifier] = ACTIONS(1426), + [sym__expression] = STATE(2306), + [sym__expression_without_blocks] = STATE(2347), + [sym__expression_with_blocks] = STATE(2347), + [sym_inc_expression] = STATE(2379), + [sym_dec_expression] = STATE(2379), + [sym_or_block_expression] = STATE(2379), + [sym_option_propagation_expression] = STATE(2379), + [sym_result_propagation_expression] = STATE(2379), + [sym_anon_struct_value_expression] = STATE(2378), + [sym_go_expression] = STATE(2379), + [sym_spawn_expression] = STATE(2379), + [sym_parenthesized_expression] = STATE(2379), + [sym_call_expression] = STATE(2379), + [sym_type_initializer] = STATE(2378), + [sym_function_literal] = STATE(2379), + [sym_reference_expression] = STATE(2377), + [sym_type_reference_expression] = STATE(3460), + [sym_unary_expression] = STATE(2379), + [sym_receive_expression] = STATE(2379), + [sym_binary_expression] = STATE(2379), + [sym_as_type_cast_expression] = STATE(2379), + [sym__max_group] = STATE(2379), + [sym_literal] = STATE(2392), + [sym_map_init_expression] = STATE(2378), + [sym_array_creation] = STATE(2379), + [sym_fixed_array_creation] = STATE(2379), + [sym_selector_expression] = STATE(2379), + [sym_index_expression] = STATE(2379), + [sym_slice_expression] = STATE(2379), + [sym_if_expression] = STATE(2378), + [sym_compile_time_if_expression] = STATE(2378), + [sym_is_expression] = STATE(2379), + [sym_in_expression] = STATE(2379), + [sym_enum_fetch] = STATE(2379), + [sym_match_expression] = STATE(2378), + [sym_select_expression] = STATE(2378), + [sym_lock_expression] = STATE(2378), + [sym_unsafe_expression] = STATE(2378), + [sym_sql_expression] = STATE(2378), + [sym_c_string_literal] = STATE(2401), + [sym_raw_string_literal] = STATE(2401), + [sym_interpreted_string_literal] = STATE(2401), + [sym_mutability_modifiers] = STATE(893), + [sym_mutable_expression] = STATE(3871), + [sym_expression_list] = STATE(4483), + [sym_plain_type] = STATE(4160), + [sym__plain_type_without_special] = STATE(2360), + [sym_anon_struct_type] = STATE(2362), + [sym_multi_return_type] = STATE(2360), + [sym_result_type] = STATE(2360), + [sym_option_type] = STATE(2360), + [sym_qualified_type] = STATE(3460), + [sym_fixed_array_type] = STATE(2362), + [sym_array_type] = STATE(2362), + [sym_pointer_type] = STATE(2362), + [sym_wrong_pointer_type] = STATE(2362), + [sym_map_type] = STATE(2362), + [sym_channel_type] = STATE(2362), + [sym_shared_type] = STATE(2362), + [sym_thread_type] = STATE(2362), + [sym_atomic_type] = STATE(2362), + [sym_generic_type] = STATE(2362), + [sym_function_type] = STATE(2362), + [sym_var_declaration] = STATE(4283), + [sym_identifier] = ACTIONS(1815), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1428), - [anon_sym_LBRACE] = ACTIONS(1430), - [anon_sym_RBRACE] = ACTIONS(1889), - [anon_sym_LPAREN] = ACTIONS(1432), - [anon_sym_fn] = ACTIONS(1434), - [anon_sym_PLUS] = ACTIONS(1436), - [anon_sym_DASH] = ACTIONS(1436), - [anon_sym_STAR] = ACTIONS(1438), - [anon_sym_struct] = ACTIONS(1440), + [anon_sym_DOT] = ACTIONS(1430), + [anon_sym_LBRACE] = ACTIONS(1432), + [anon_sym_LPAREN] = ACTIONS(1434), + [anon_sym_fn] = ACTIONS(1436), + [anon_sym_PLUS] = ACTIONS(1817), + [anon_sym_DASH] = ACTIONS(1817), + [anon_sym_STAR] = ACTIONS(1819), + [anon_sym_struct] = ACTIONS(1442), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(1442), - [anon_sym_go] = ACTIONS(1444), - [anon_sym_spawn] = ACTIONS(1446), - [anon_sym_json_DOTdecode] = ACTIONS(1448), - [anon_sym_LBRACK2] = ACTIONS(1450), - [anon_sym_TILDE] = ACTIONS(1436), - [anon_sym_CARET] = ACTIONS(1436), - [anon_sym_AMP] = ACTIONS(1452), - [anon_sym_LT_DASH] = ACTIONS(1454), - [sym_none] = ACTIONS(1456), - [sym_true] = ACTIONS(1456), - [sym_false] = ACTIONS(1456), - [sym_nil] = ACTIONS(1456), - [anon_sym_if] = ACTIONS(1827), - [anon_sym_DOLLARif] = ACTIONS(1460), - [anon_sym_match] = ACTIONS(1462), - [anon_sym_select] = ACTIONS(1464), - [anon_sym_lock] = ACTIONS(1466), - [anon_sym_rlock] = ACTIONS(1466), - [anon_sym_unsafe] = ACTIONS(1833), - [anon_sym_sql] = ACTIONS(1470), - [sym_int_literal] = ACTIONS(1456), - [sym_float_literal] = ACTIONS(1472), - [sym_rune_literal] = ACTIONS(1472), - [sym_pseudo_compile_time_identifier] = ACTIONS(1474), + [anon_sym_BANG] = ACTIONS(1821), + [anon_sym_go] = ACTIONS(1823), + [anon_sym_spawn] = ACTIONS(1825), + [anon_sym_json_DOTdecode] = ACTIONS(1450), + [anon_sym_LBRACK2] = ACTIONS(1827), + [anon_sym_TILDE] = ACTIONS(1817), + [anon_sym_CARET] = ACTIONS(1817), + [anon_sym_AMP] = ACTIONS(1829), + [anon_sym_LT_DASH] = ACTIONS(1831), + [sym_none] = ACTIONS(1458), + [sym_true] = ACTIONS(1458), + [sym_false] = ACTIONS(1458), + [sym_nil] = ACTIONS(1458), + [anon_sym_if] = ACTIONS(1833), + [anon_sym_DOLLARif] = ACTIONS(1462), + [anon_sym_match] = ACTIONS(1464), + [anon_sym_select] = ACTIONS(1835), + [anon_sym_lock] = ACTIONS(1837), + [anon_sym_rlock] = ACTIONS(1837), + [anon_sym_unsafe] = ACTIONS(1839), + [anon_sym_sql] = ACTIONS(1472), + [sym_int_literal] = ACTIONS(1458), + [sym_float_literal] = ACTIONS(1474), + [sym_rune_literal] = ACTIONS(1474), + [sym_pseudo_compile_time_identifier] = ACTIONS(1476), [anon_sym_shared] = ACTIONS(83), [anon_sym_map_LBRACK] = ACTIONS(85), [anon_sym_chan] = ACTIONS(87), [anon_sym_thread] = ACTIONS(89), [anon_sym_atomic] = ACTIONS(91), - [sym___double_quote] = ACTIONS(1478), - [sym___single_quote] = ACTIONS(1480), - [sym___c_double_quote] = ACTIONS(1482), - [sym___c_single_quote] = ACTIONS(1484), - [sym___r_double_quote] = ACTIONS(1486), - [sym___r_single_quote] = ACTIONS(1488), + [sym___double_quote] = ACTIONS(1480), + [sym___single_quote] = ACTIONS(1482), + [sym___c_double_quote] = ACTIONS(1484), + [sym___c_single_quote] = ACTIONS(1486), + [sym___r_double_quote] = ACTIONS(1488), + [sym___r_single_quote] = ACTIONS(1490), }, [246] = { [sym_line_comment] = STATE(246), [sym_block_comment] = STATE(246), - [sym__expression] = STATE(2716), - [sym__expression_without_blocks] = STATE(2300), - [sym__expression_with_blocks] = STATE(2300), - [sym_inc_expression] = STATE(2307), - [sym_dec_expression] = STATE(2307), - [sym_or_block_expression] = STATE(2307), - [sym_option_propagation_expression] = STATE(2307), - [sym_result_propagation_expression] = STATE(2307), - [sym_anon_struct_value_expression] = STATE(2380), - [sym_go_expression] = STATE(2307), - [sym_spawn_expression] = STATE(2307), - [sym_parenthesized_expression] = STATE(2307), - [sym_call_expression] = STATE(2307), - [sym_type_initializer] = STATE(2380), - [sym_function_literal] = STATE(2307), - [sym_reference_expression] = STATE(2311), - [sym_type_reference_expression] = STATE(3541), - [sym_unary_expression] = STATE(2307), - [sym_receive_expression] = STATE(2307), - [sym_binary_expression] = STATE(2307), - [sym_as_type_cast_expression] = STATE(2307), - [sym__max_group] = STATE(2307), - [sym_literal] = STATE(2292), - [sym_map_init_expression] = STATE(2380), - [sym_map_keyed_element] = STATE(2001), - [sym_array_creation] = STATE(2307), - [sym_fixed_array_creation] = STATE(2307), - [sym_selector_expression] = STATE(2307), - [sym_index_expression] = STATE(2307), - [sym_slice_expression] = STATE(2307), - [sym_if_expression] = STATE(2380), - [sym_compile_time_if_expression] = STATE(2380), - [sym_is_expression] = STATE(2307), - [sym_in_expression] = STATE(2307), - [sym_enum_fetch] = STATE(2307), - [sym_match_expression] = STATE(2380), - [sym_select_expression] = STATE(2380), - [sym_lock_expression] = STATE(2380), - [sym_unsafe_expression] = STATE(2380), - [sym_sql_expression] = STATE(2380), - [sym_c_string_literal] = STATE(2308), - [sym_raw_string_literal] = STATE(2308), - [sym_interpreted_string_literal] = STATE(2308), + [sym__expression] = STATE(2632), + [sym__expression_without_blocks] = STATE(2347), + [sym__expression_with_blocks] = STATE(2347), + [sym_inc_expression] = STATE(2379), + [sym_dec_expression] = STATE(2379), + [sym_or_block_expression] = STATE(2379), + [sym_option_propagation_expression] = STATE(2379), + [sym_result_propagation_expression] = STATE(2379), + [sym_anon_struct_value_expression] = STATE(2378), + [sym_go_expression] = STATE(2379), + [sym_spawn_expression] = STATE(2379), + [sym_parenthesized_expression] = STATE(2379), + [sym_call_expression] = STATE(2379), + [sym_type_initializer] = STATE(2378), + [sym_function_literal] = STATE(2379), + [sym_reference_expression] = STATE(2377), + [sym_type_reference_expression] = STATE(3460), + [sym_unary_expression] = STATE(2379), + [sym_receive_expression] = STATE(2379), + [sym_binary_expression] = STATE(2379), + [sym_as_type_cast_expression] = STATE(2379), + [sym__max_group] = STATE(2379), + [sym_literal] = STATE(2392), + [sym_map_init_expression] = STATE(2378), + [sym_map_keyed_element] = STATE(2004), + [sym_array_creation] = STATE(2379), + [sym_fixed_array_creation] = STATE(2379), + [sym_selector_expression] = STATE(2379), + [sym_index_expression] = STATE(2379), + [sym_slice_expression] = STATE(2379), + [sym_if_expression] = STATE(2378), + [sym_compile_time_if_expression] = STATE(2378), + [sym_is_expression] = STATE(2379), + [sym_in_expression] = STATE(2379), + [sym_enum_fetch] = STATE(2379), + [sym_match_expression] = STATE(2378), + [sym_select_expression] = STATE(2378), + [sym_lock_expression] = STATE(2378), + [sym_unsafe_expression] = STATE(2378), + [sym_sql_expression] = STATE(2378), + [sym_c_string_literal] = STATE(2401), + [sym_raw_string_literal] = STATE(2401), + [sym_interpreted_string_literal] = STATE(2401), [sym_mutability_modifiers] = STATE(939), - [sym_plain_type] = STATE(4297), - [sym__plain_type_without_special] = STATE(2302), - [sym_anon_struct_type] = STATE(2303), - [sym_multi_return_type] = STATE(2302), - [sym_result_type] = STATE(2302), - [sym_option_type] = STATE(2302), - [sym_qualified_type] = STATE(3541), - [sym_fixed_array_type] = STATE(2303), - [sym_array_type] = STATE(2303), - [sym_pointer_type] = STATE(2303), - [sym_wrong_pointer_type] = STATE(2303), - [sym_map_type] = STATE(2303), - [sym_channel_type] = STATE(2303), - [sym_shared_type] = STATE(2303), - [sym_thread_type] = STATE(2303), - [sym_atomic_type] = STATE(2303), - [sym_generic_type] = STATE(2303), - [sym_function_type] = STATE(2303), - [aux_sym_map_init_expression_repeat1] = STATE(295), - [sym_identifier] = ACTIONS(1426), + [sym_plain_type] = STATE(4160), + [sym__plain_type_without_special] = STATE(2360), + [sym_anon_struct_type] = STATE(2362), + [sym_multi_return_type] = STATE(2360), + [sym_result_type] = STATE(2360), + [sym_option_type] = STATE(2360), + [sym_qualified_type] = STATE(3460), + [sym_fixed_array_type] = STATE(2362), + [sym_array_type] = STATE(2362), + [sym_pointer_type] = STATE(2362), + [sym_wrong_pointer_type] = STATE(2362), + [sym_map_type] = STATE(2362), + [sym_channel_type] = STATE(2362), + [sym_shared_type] = STATE(2362), + [sym_thread_type] = STATE(2362), + [sym_atomic_type] = STATE(2362), + [sym_generic_type] = STATE(2362), + [sym_function_type] = STATE(2362), + [aux_sym_map_init_expression_repeat1] = STATE(303), + [sym_identifier] = ACTIONS(1428), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1428), - [anon_sym_LBRACE] = ACTIONS(1430), - [anon_sym_RBRACE] = ACTIONS(1891), - [anon_sym_LPAREN] = ACTIONS(1432), - [anon_sym_fn] = ACTIONS(1434), - [anon_sym_PLUS] = ACTIONS(1436), - [anon_sym_DASH] = ACTIONS(1436), - [anon_sym_STAR] = ACTIONS(1438), - [anon_sym_struct] = ACTIONS(1440), + [anon_sym_DOT] = ACTIONS(1430), + [anon_sym_LBRACE] = ACTIONS(1432), + [anon_sym_RBRACE] = ACTIONS(1883), + [anon_sym_LPAREN] = ACTIONS(1434), + [anon_sym_fn] = ACTIONS(1436), + [anon_sym_PLUS] = ACTIONS(1438), + [anon_sym_DASH] = ACTIONS(1438), + [anon_sym_STAR] = ACTIONS(1440), + [anon_sym_struct] = ACTIONS(1442), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(1442), - [anon_sym_go] = ACTIONS(1444), - [anon_sym_spawn] = ACTIONS(1446), - [anon_sym_json_DOTdecode] = ACTIONS(1448), - [anon_sym_LBRACK2] = ACTIONS(1450), - [anon_sym_TILDE] = ACTIONS(1436), - [anon_sym_CARET] = ACTIONS(1436), - [anon_sym_AMP] = ACTIONS(1452), - [anon_sym_LT_DASH] = ACTIONS(1454), - [sym_none] = ACTIONS(1456), - [sym_true] = ACTIONS(1456), - [sym_false] = ACTIONS(1456), - [sym_nil] = ACTIONS(1456), - [anon_sym_if] = ACTIONS(1827), - [anon_sym_DOLLARif] = ACTIONS(1460), - [anon_sym_match] = ACTIONS(1462), - [anon_sym_select] = ACTIONS(1464), - [anon_sym_lock] = ACTIONS(1466), - [anon_sym_rlock] = ACTIONS(1466), - [anon_sym_unsafe] = ACTIONS(1833), - [anon_sym_sql] = ACTIONS(1470), - [sym_int_literal] = ACTIONS(1456), - [sym_float_literal] = ACTIONS(1472), - [sym_rune_literal] = ACTIONS(1472), - [sym_pseudo_compile_time_identifier] = ACTIONS(1474), + [anon_sym_BANG] = ACTIONS(1444), + [anon_sym_go] = ACTIONS(1446), + [anon_sym_spawn] = ACTIONS(1448), + [anon_sym_json_DOTdecode] = ACTIONS(1450), + [anon_sym_LBRACK2] = ACTIONS(1452), + [anon_sym_TILDE] = ACTIONS(1438), + [anon_sym_CARET] = ACTIONS(1438), + [anon_sym_AMP] = ACTIONS(1454), + [anon_sym_LT_DASH] = ACTIONS(1456), + [sym_none] = ACTIONS(1458), + [sym_true] = ACTIONS(1458), + [sym_false] = ACTIONS(1458), + [sym_nil] = ACTIONS(1458), + [anon_sym_if] = ACTIONS(1833), + [anon_sym_DOLLARif] = ACTIONS(1462), + [anon_sym_match] = ACTIONS(1464), + [anon_sym_select] = ACTIONS(1466), + [anon_sym_lock] = ACTIONS(1468), + [anon_sym_rlock] = ACTIONS(1468), + [anon_sym_unsafe] = ACTIONS(1839), + [anon_sym_sql] = ACTIONS(1472), + [sym_int_literal] = ACTIONS(1458), + [sym_float_literal] = ACTIONS(1474), + [sym_rune_literal] = ACTIONS(1474), + [sym_pseudo_compile_time_identifier] = ACTIONS(1476), [anon_sym_shared] = ACTIONS(83), [anon_sym_map_LBRACK] = ACTIONS(85), [anon_sym_chan] = ACTIONS(87), [anon_sym_thread] = ACTIONS(89), [anon_sym_atomic] = ACTIONS(91), - [sym___double_quote] = ACTIONS(1478), - [sym___single_quote] = ACTIONS(1480), - [sym___c_double_quote] = ACTIONS(1482), - [sym___c_single_quote] = ACTIONS(1484), - [sym___r_double_quote] = ACTIONS(1486), - [sym___r_single_quote] = ACTIONS(1488), + [sym___double_quote] = ACTIONS(1480), + [sym___single_quote] = ACTIONS(1482), + [sym___c_double_quote] = ACTIONS(1484), + [sym___c_single_quote] = ACTIONS(1486), + [sym___r_double_quote] = ACTIONS(1488), + [sym___r_single_quote] = ACTIONS(1490), }, [247] = { [sym_line_comment] = STATE(247), [sym_block_comment] = STATE(247), - [sym__expression] = STATE(2716), - [sym__expression_without_blocks] = STATE(2300), - [sym__expression_with_blocks] = STATE(2300), - [sym_inc_expression] = STATE(2307), - [sym_dec_expression] = STATE(2307), - [sym_or_block_expression] = STATE(2307), - [sym_option_propagation_expression] = STATE(2307), - [sym_result_propagation_expression] = STATE(2307), - [sym_anon_struct_value_expression] = STATE(2380), - [sym_go_expression] = STATE(2307), - [sym_spawn_expression] = STATE(2307), - [sym_parenthesized_expression] = STATE(2307), - [sym_call_expression] = STATE(2307), - [sym_type_initializer] = STATE(2380), - [sym_function_literal] = STATE(2307), - [sym_reference_expression] = STATE(2311), - [sym_type_reference_expression] = STATE(3541), - [sym_unary_expression] = STATE(2307), - [sym_receive_expression] = STATE(2307), - [sym_binary_expression] = STATE(2307), - [sym_as_type_cast_expression] = STATE(2307), - [sym__max_group] = STATE(2307), - [sym_literal] = STATE(2292), - [sym_map_init_expression] = STATE(2380), - [sym_map_keyed_element] = STATE(2001), - [sym_array_creation] = STATE(2307), - [sym_fixed_array_creation] = STATE(2307), - [sym_selector_expression] = STATE(2307), - [sym_index_expression] = STATE(2307), - [sym_slice_expression] = STATE(2307), - [sym_if_expression] = STATE(2380), - [sym_compile_time_if_expression] = STATE(2380), - [sym_is_expression] = STATE(2307), - [sym_in_expression] = STATE(2307), - [sym_enum_fetch] = STATE(2307), - [sym_match_expression] = STATE(2380), - [sym_select_expression] = STATE(2380), - [sym_lock_expression] = STATE(2380), - [sym_unsafe_expression] = STATE(2380), - [sym_sql_expression] = STATE(2380), - [sym_c_string_literal] = STATE(2308), - [sym_raw_string_literal] = STATE(2308), - [sym_interpreted_string_literal] = STATE(2308), + [sym__expression] = STATE(2632), + [sym__expression_without_blocks] = STATE(2347), + [sym__expression_with_blocks] = STATE(2347), + [sym_inc_expression] = STATE(2379), + [sym_dec_expression] = STATE(2379), + [sym_or_block_expression] = STATE(2379), + [sym_option_propagation_expression] = STATE(2379), + [sym_result_propagation_expression] = STATE(2379), + [sym_anon_struct_value_expression] = STATE(2378), + [sym_go_expression] = STATE(2379), + [sym_spawn_expression] = STATE(2379), + [sym_parenthesized_expression] = STATE(2379), + [sym_call_expression] = STATE(2379), + [sym_type_initializer] = STATE(2378), + [sym_function_literal] = STATE(2379), + [sym_reference_expression] = STATE(2377), + [sym_type_reference_expression] = STATE(3460), + [sym_unary_expression] = STATE(2379), + [sym_receive_expression] = STATE(2379), + [sym_binary_expression] = STATE(2379), + [sym_as_type_cast_expression] = STATE(2379), + [sym__max_group] = STATE(2379), + [sym_literal] = STATE(2392), + [sym_map_init_expression] = STATE(2378), + [sym_map_keyed_element] = STATE(2004), + [sym_array_creation] = STATE(2379), + [sym_fixed_array_creation] = STATE(2379), + [sym_selector_expression] = STATE(2379), + [sym_index_expression] = STATE(2379), + [sym_slice_expression] = STATE(2379), + [sym_if_expression] = STATE(2378), + [sym_compile_time_if_expression] = STATE(2378), + [sym_is_expression] = STATE(2379), + [sym_in_expression] = STATE(2379), + [sym_enum_fetch] = STATE(2379), + [sym_match_expression] = STATE(2378), + [sym_select_expression] = STATE(2378), + [sym_lock_expression] = STATE(2378), + [sym_unsafe_expression] = STATE(2378), + [sym_sql_expression] = STATE(2378), + [sym_c_string_literal] = STATE(2401), + [sym_raw_string_literal] = STATE(2401), + [sym_interpreted_string_literal] = STATE(2401), [sym_mutability_modifiers] = STATE(939), - [sym_plain_type] = STATE(4297), - [sym__plain_type_without_special] = STATE(2302), - [sym_anon_struct_type] = STATE(2303), - [sym_multi_return_type] = STATE(2302), - [sym_result_type] = STATE(2302), - [sym_option_type] = STATE(2302), - [sym_qualified_type] = STATE(3541), - [sym_fixed_array_type] = STATE(2303), - [sym_array_type] = STATE(2303), - [sym_pointer_type] = STATE(2303), - [sym_wrong_pointer_type] = STATE(2303), - [sym_map_type] = STATE(2303), - [sym_channel_type] = STATE(2303), - [sym_shared_type] = STATE(2303), - [sym_thread_type] = STATE(2303), - [sym_atomic_type] = STATE(2303), - [sym_generic_type] = STATE(2303), - [sym_function_type] = STATE(2303), - [aux_sym_map_init_expression_repeat1] = STATE(254), - [sym_identifier] = ACTIONS(1426), + [sym_plain_type] = STATE(4160), + [sym__plain_type_without_special] = STATE(2360), + [sym_anon_struct_type] = STATE(2362), + [sym_multi_return_type] = STATE(2360), + [sym_result_type] = STATE(2360), + [sym_option_type] = STATE(2360), + [sym_qualified_type] = STATE(3460), + [sym_fixed_array_type] = STATE(2362), + [sym_array_type] = STATE(2362), + [sym_pointer_type] = STATE(2362), + [sym_wrong_pointer_type] = STATE(2362), + [sym_map_type] = STATE(2362), + [sym_channel_type] = STATE(2362), + [sym_shared_type] = STATE(2362), + [sym_thread_type] = STATE(2362), + [sym_atomic_type] = STATE(2362), + [sym_generic_type] = STATE(2362), + [sym_function_type] = STATE(2362), + [aux_sym_map_init_expression_repeat1] = STATE(246), + [sym_identifier] = ACTIONS(1428), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1428), - [anon_sym_LBRACE] = ACTIONS(1430), - [anon_sym_RBRACE] = ACTIONS(1893), - [anon_sym_LPAREN] = ACTIONS(1432), - [anon_sym_fn] = ACTIONS(1434), - [anon_sym_PLUS] = ACTIONS(1436), - [anon_sym_DASH] = ACTIONS(1436), - [anon_sym_STAR] = ACTIONS(1438), - [anon_sym_struct] = ACTIONS(1440), + [anon_sym_DOT] = ACTIONS(1430), + [anon_sym_LBRACE] = ACTIONS(1432), + [anon_sym_RBRACE] = ACTIONS(1885), + [anon_sym_LPAREN] = ACTIONS(1434), + [anon_sym_fn] = ACTIONS(1436), + [anon_sym_PLUS] = ACTIONS(1438), + [anon_sym_DASH] = ACTIONS(1438), + [anon_sym_STAR] = ACTIONS(1440), + [anon_sym_struct] = ACTIONS(1442), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(1442), - [anon_sym_go] = ACTIONS(1444), - [anon_sym_spawn] = ACTIONS(1446), - [anon_sym_json_DOTdecode] = ACTIONS(1448), - [anon_sym_LBRACK2] = ACTIONS(1450), - [anon_sym_TILDE] = ACTIONS(1436), - [anon_sym_CARET] = ACTIONS(1436), - [anon_sym_AMP] = ACTIONS(1452), - [anon_sym_LT_DASH] = ACTIONS(1454), - [sym_none] = ACTIONS(1456), - [sym_true] = ACTIONS(1456), - [sym_false] = ACTIONS(1456), - [sym_nil] = ACTIONS(1456), - [anon_sym_if] = ACTIONS(1827), - [anon_sym_DOLLARif] = ACTIONS(1460), - [anon_sym_match] = ACTIONS(1462), - [anon_sym_select] = ACTIONS(1464), - [anon_sym_lock] = ACTIONS(1466), - [anon_sym_rlock] = ACTIONS(1466), - [anon_sym_unsafe] = ACTIONS(1833), - [anon_sym_sql] = ACTIONS(1470), - [sym_int_literal] = ACTIONS(1456), - [sym_float_literal] = ACTIONS(1472), - [sym_rune_literal] = ACTIONS(1472), - [sym_pseudo_compile_time_identifier] = ACTIONS(1474), + [anon_sym_BANG] = ACTIONS(1444), + [anon_sym_go] = ACTIONS(1446), + [anon_sym_spawn] = ACTIONS(1448), + [anon_sym_json_DOTdecode] = ACTIONS(1450), + [anon_sym_LBRACK2] = ACTIONS(1452), + [anon_sym_TILDE] = ACTIONS(1438), + [anon_sym_CARET] = ACTIONS(1438), + [anon_sym_AMP] = ACTIONS(1454), + [anon_sym_LT_DASH] = ACTIONS(1456), + [sym_none] = ACTIONS(1458), + [sym_true] = ACTIONS(1458), + [sym_false] = ACTIONS(1458), + [sym_nil] = ACTIONS(1458), + [anon_sym_if] = ACTIONS(1833), + [anon_sym_DOLLARif] = ACTIONS(1462), + [anon_sym_match] = ACTIONS(1464), + [anon_sym_select] = ACTIONS(1466), + [anon_sym_lock] = ACTIONS(1468), + [anon_sym_rlock] = ACTIONS(1468), + [anon_sym_unsafe] = ACTIONS(1839), + [anon_sym_sql] = ACTIONS(1472), + [sym_int_literal] = ACTIONS(1458), + [sym_float_literal] = ACTIONS(1474), + [sym_rune_literal] = ACTIONS(1474), + [sym_pseudo_compile_time_identifier] = ACTIONS(1476), [anon_sym_shared] = ACTIONS(83), [anon_sym_map_LBRACK] = ACTIONS(85), [anon_sym_chan] = ACTIONS(87), [anon_sym_thread] = ACTIONS(89), [anon_sym_atomic] = ACTIONS(91), - [sym___double_quote] = ACTIONS(1478), - [sym___single_quote] = ACTIONS(1480), - [sym___c_double_quote] = ACTIONS(1482), - [sym___c_single_quote] = ACTIONS(1484), - [sym___r_double_quote] = ACTIONS(1486), - [sym___r_single_quote] = ACTIONS(1488), + [sym___double_quote] = ACTIONS(1480), + [sym___single_quote] = ACTIONS(1482), + [sym___c_double_quote] = ACTIONS(1484), + [sym___c_single_quote] = ACTIONS(1486), + [sym___r_double_quote] = ACTIONS(1488), + [sym___r_single_quote] = ACTIONS(1490), }, [248] = { [sym_line_comment] = STATE(248), [sym_block_comment] = STATE(248), - [sym__expression] = STATE(2325), - [sym__expression_without_blocks] = STATE(2300), - [sym__expression_with_blocks] = STATE(2300), - [sym_inc_expression] = STATE(2307), - [sym_dec_expression] = STATE(2307), - [sym_or_block_expression] = STATE(2307), - [sym_option_propagation_expression] = STATE(2307), - [sym_result_propagation_expression] = STATE(2307), - [sym_anon_struct_value_expression] = STATE(2380), - [sym_go_expression] = STATE(2307), - [sym_spawn_expression] = STATE(2307), - [sym_parenthesized_expression] = STATE(2307), - [sym_call_expression] = STATE(2307), - [sym_type_initializer] = STATE(2380), - [sym_function_literal] = STATE(2307), - [sym_reference_expression] = STATE(2311), - [sym_type_reference_expression] = STATE(3541), - [sym_unary_expression] = STATE(2307), - [sym_receive_expression] = STATE(2307), - [sym_binary_expression] = STATE(2307), - [sym_as_type_cast_expression] = STATE(2307), - [sym__max_group] = STATE(2307), - [sym_literal] = STATE(2292), - [sym_map_init_expression] = STATE(2380), - [sym_array_creation] = STATE(2307), - [sym_fixed_array_creation] = STATE(2307), - [sym_selector_expression] = STATE(2307), - [sym_index_expression] = STATE(2307), - [sym_slice_expression] = STATE(2307), - [sym_if_expression] = STATE(2380), - [sym_compile_time_if_expression] = STATE(2380), - [sym_is_expression] = STATE(2307), - [sym_in_expression] = STATE(2307), - [sym_enum_fetch] = STATE(2307), - [sym_match_expression] = STATE(2380), - [sym_select_expression] = STATE(2380), - [sym_lock_expression] = STATE(2380), - [sym_unsafe_expression] = STATE(2380), - [sym_sql_expression] = STATE(2380), - [sym_c_string_literal] = STATE(2308), - [sym_raw_string_literal] = STATE(2308), - [sym_interpreted_string_literal] = STATE(2308), - [sym_mutability_modifiers] = STATE(765), - [sym_mutable_expression] = STATE(3823), - [sym_expression_list] = STATE(4480), - [sym_plain_type] = STATE(4297), - [sym__plain_type_without_special] = STATE(2302), - [sym_anon_struct_type] = STATE(2303), - [sym_multi_return_type] = STATE(2302), - [sym_result_type] = STATE(2302), - [sym_option_type] = STATE(2302), - [sym_qualified_type] = STATE(3541), - [sym_fixed_array_type] = STATE(2303), - [sym_array_type] = STATE(2303), - [sym_pointer_type] = STATE(2303), - [sym_wrong_pointer_type] = STATE(2303), - [sym_map_type] = STATE(2303), - [sym_channel_type] = STATE(2303), - [sym_shared_type] = STATE(2303), - [sym_thread_type] = STATE(2303), - [sym_atomic_type] = STATE(2303), - [sym_generic_type] = STATE(2303), - [sym_function_type] = STATE(2303), - [sym_var_declaration] = STATE(4060), - [sym_identifier] = ACTIONS(1807), + [ts_builtin_sym_end] = ACTIONS(1887), + [sym_identifier] = ACTIONS(1889), + [anon_sym_LF] = ACTIONS(1889), + [anon_sym_CR] = ACTIONS(1889), + [anon_sym_CR_LF] = ACTIONS(1889), + [anon_sym_SLASH_SLASH] = ACTIONS(497), + [anon_sym_SLASH_STAR] = ACTIONS(499), + [anon_sym_DOT] = ACTIONS(1889), + [anon_sym_as] = ACTIONS(1889), + [anon_sym_LBRACE] = ACTIONS(1891), + [anon_sym_COMMA] = ACTIONS(1889), + [anon_sym_const] = ACTIONS(1889), + [anon_sym_LPAREN] = ACTIONS(1889), + [anon_sym_EQ] = ACTIONS(1889), + [anon_sym___global] = ACTIONS(1889), + [anon_sym_type] = ACTIONS(1889), + [anon_sym_PIPE] = ACTIONS(1889), + [anon_sym_fn] = ACTIONS(1889), + [anon_sym_PLUS] = ACTIONS(1889), + [anon_sym_DASH] = ACTIONS(1889), + [anon_sym_STAR] = ACTIONS(1889), + [anon_sym_SLASH] = ACTIONS(1889), + [anon_sym_PERCENT] = ACTIONS(1889), + [anon_sym_LT] = ACTIONS(1889), + [anon_sym_GT] = ACTIONS(1889), + [anon_sym_EQ_EQ] = ACTIONS(1889), + [anon_sym_BANG_EQ] = ACTIONS(1889), + [anon_sym_LT_EQ] = ACTIONS(1889), + [anon_sym_GT_EQ] = ACTIONS(1889), + [anon_sym_LBRACK] = ACTIONS(1894), + [anon_sym_struct] = ACTIONS(1889), + [anon_sym_union] = ACTIONS(1889), + [anon_sym_pub] = ACTIONS(1889), + [anon_sym_mut] = ACTIONS(1889), + [anon_sym_COLON] = ACTIONS(1897), + [anon_sym_enum] = ACTIONS(1889), + [anon_sym_interface] = ACTIONS(1889), + [anon_sym_PLUS_PLUS] = ACTIONS(1889), + [anon_sym_DASH_DASH] = ACTIONS(1889), + [anon_sym_QMARK] = ACTIONS(1889), + [anon_sym_BANG] = ACTIONS(1889), + [anon_sym_go] = ACTIONS(1889), + [anon_sym_spawn] = ACTIONS(1889), + [anon_sym_json_DOTdecode] = ACTIONS(1889), + [anon_sym_LBRACK2] = ACTIONS(1889), + [anon_sym_TILDE] = ACTIONS(1889), + [anon_sym_CARET] = ACTIONS(1889), + [anon_sym_AMP] = ACTIONS(1889), + [anon_sym_LT_DASH] = ACTIONS(1889), + [anon_sym_LT_LT] = ACTIONS(1889), + [anon_sym_GT_GT] = ACTIONS(1889), + [anon_sym_GT_GT_GT] = ACTIONS(1889), + [anon_sym_AMP_CARET] = ACTIONS(1889), + [anon_sym_AMP_AMP] = ACTIONS(1889), + [anon_sym_PIPE_PIPE] = ACTIONS(1889), + [anon_sym_or] = ACTIONS(1889), + [sym_none] = ACTIONS(1889), + [sym_true] = ACTIONS(1889), + [sym_false] = ACTIONS(1889), + [sym_nil] = ACTIONS(1889), + [anon_sym_QMARK_DOT] = ACTIONS(1889), + [anon_sym_POUND_LBRACK] = ACTIONS(1889), + [anon_sym_if] = ACTIONS(1889), + [anon_sym_DOLLARif] = ACTIONS(1889), + [anon_sym_is] = ACTIONS(1889), + [anon_sym_BANGis] = ACTIONS(1889), + [anon_sym_in] = ACTIONS(1889), + [anon_sym_BANGin] = ACTIONS(1889), + [anon_sym_match] = ACTIONS(1889), + [anon_sym_select] = ACTIONS(1889), + [anon_sym_STAR_EQ] = ACTIONS(1889), + [anon_sym_SLASH_EQ] = ACTIONS(1889), + [anon_sym_PERCENT_EQ] = ACTIONS(1889), + [anon_sym_LT_LT_EQ] = ACTIONS(1889), + [anon_sym_GT_GT_EQ] = ACTIONS(1889), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(1889), + [anon_sym_AMP_EQ] = ACTIONS(1889), + [anon_sym_AMP_CARET_EQ] = ACTIONS(1889), + [anon_sym_PLUS_EQ] = ACTIONS(1889), + [anon_sym_DASH_EQ] = ACTIONS(1889), + [anon_sym_PIPE_EQ] = ACTIONS(1889), + [anon_sym_CARET_EQ] = ACTIONS(1889), + [anon_sym_COLON_EQ] = ACTIONS(1889), + [anon_sym_lock] = ACTIONS(1889), + [anon_sym_rlock] = ACTIONS(1889), + [anon_sym_unsafe] = ACTIONS(1889), + [anon_sym_sql] = ACTIONS(1889), + [sym_int_literal] = ACTIONS(1889), + [sym_float_literal] = ACTIONS(1889), + [sym_rune_literal] = ACTIONS(1889), + [sym_pseudo_compile_time_identifier] = ACTIONS(1889), + [anon_sym_shared] = ACTIONS(1889), + [anon_sym_map_LBRACK] = ACTIONS(1889), + [anon_sym_chan] = ACTIONS(1889), + [anon_sym_thread] = ACTIONS(1889), + [anon_sym_atomic] = ACTIONS(1889), + [anon_sym_assert] = ACTIONS(1889), + [anon_sym_defer] = ACTIONS(1889), + [anon_sym_goto] = ACTIONS(1889), + [anon_sym_break] = ACTIONS(1889), + [anon_sym_continue] = ACTIONS(1889), + [anon_sym_return] = ACTIONS(1889), + [anon_sym_DOLLARfor] = ACTIONS(1889), + [anon_sym_for] = ACTIONS(1889), + [anon_sym_POUND] = ACTIONS(1889), + [anon_sym_asm] = ACTIONS(1889), + [anon_sym_AT_LBRACK] = ACTIONS(1889), + [sym___double_quote] = ACTIONS(1889), + [sym___single_quote] = ACTIONS(1889), + [sym___c_double_quote] = ACTIONS(1889), + [sym___c_single_quote] = ACTIONS(1889), + [sym___r_double_quote] = ACTIONS(1889), + [sym___r_single_quote] = ACTIONS(1889), + }, + [249] = { + [sym_line_comment] = STATE(249), + [sym_block_comment] = STATE(249), + [sym__expression] = STATE(2352), + [sym__expression_without_blocks] = STATE(2347), + [sym__expression_with_blocks] = STATE(2347), + [sym_inc_expression] = STATE(2379), + [sym_dec_expression] = STATE(2379), + [sym_or_block_expression] = STATE(2379), + [sym_option_propagation_expression] = STATE(2379), + [sym_result_propagation_expression] = STATE(2379), + [sym_anon_struct_value_expression] = STATE(2378), + [sym_go_expression] = STATE(2379), + [sym_spawn_expression] = STATE(2379), + [sym_parenthesized_expression] = STATE(2379), + [sym_call_expression] = STATE(2379), + [sym_type_initializer] = STATE(2378), + [sym_function_literal] = STATE(2379), + [sym_reference_expression] = STATE(2377), + [sym_type_reference_expression] = STATE(3460), + [sym_unary_expression] = STATE(2379), + [sym_receive_expression] = STATE(2379), + [sym_binary_expression] = STATE(2379), + [sym_as_type_cast_expression] = STATE(2379), + [sym__max_group] = STATE(2379), + [sym_literal] = STATE(2392), + [sym_map_init_expression] = STATE(2378), + [sym_array_creation] = STATE(2379), + [sym_fixed_array_creation] = STATE(2379), + [sym_selector_expression] = STATE(2379), + [sym_index_expression] = STATE(2379), + [sym_slice_expression] = STATE(2379), + [sym_if_expression] = STATE(2378), + [sym_compile_time_if_expression] = STATE(2378), + [sym_is_expression] = STATE(2379), + [sym_in_expression] = STATE(2379), + [sym_enum_fetch] = STATE(2379), + [sym_match_expression] = STATE(2378), + [sym_select_expression] = STATE(2378), + [sym_lock_expression] = STATE(2378), + [sym_unsafe_expression] = STATE(2378), + [sym_sql_expression] = STATE(2378), + [sym_c_string_literal] = STATE(2401), + [sym_raw_string_literal] = STATE(2401), + [sym_interpreted_string_literal] = STATE(2401), + [sym_mutability_modifiers] = STATE(893), + [sym_mutable_expression] = STATE(3871), + [sym_expression_list] = STATE(4483), + [sym_plain_type] = STATE(4160), + [sym__plain_type_without_special] = STATE(2360), + [sym_anon_struct_type] = STATE(2362), + [sym_multi_return_type] = STATE(2360), + [sym_result_type] = STATE(2360), + [sym_option_type] = STATE(2360), + [sym_qualified_type] = STATE(3460), + [sym_fixed_array_type] = STATE(2362), + [sym_array_type] = STATE(2362), + [sym_pointer_type] = STATE(2362), + [sym_wrong_pointer_type] = STATE(2362), + [sym_map_type] = STATE(2362), + [sym_channel_type] = STATE(2362), + [sym_shared_type] = STATE(2362), + [sym_thread_type] = STATE(2362), + [sym_atomic_type] = STATE(2362), + [sym_generic_type] = STATE(2362), + [sym_function_type] = STATE(2362), + [sym_var_declaration] = STATE(4163), + [sym_identifier] = ACTIONS(1815), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1428), - [anon_sym_LBRACE] = ACTIONS(1430), - [anon_sym_LPAREN] = ACTIONS(1432), - [anon_sym_fn] = ACTIONS(1434), - [anon_sym_PLUS] = ACTIONS(1811), - [anon_sym_DASH] = ACTIONS(1811), - [anon_sym_STAR] = ACTIONS(1813), - [anon_sym_struct] = ACTIONS(1440), + [anon_sym_DOT] = ACTIONS(1430), + [anon_sym_LBRACE] = ACTIONS(1432), + [anon_sym_LPAREN] = ACTIONS(1434), + [anon_sym_fn] = ACTIONS(1436), + [anon_sym_PLUS] = ACTIONS(1817), + [anon_sym_DASH] = ACTIONS(1817), + [anon_sym_STAR] = ACTIONS(1819), + [anon_sym_struct] = ACTIONS(1442), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(1815), - [anon_sym_go] = ACTIONS(1817), - [anon_sym_spawn] = ACTIONS(1819), - [anon_sym_json_DOTdecode] = ACTIONS(1448), - [anon_sym_LBRACK2] = ACTIONS(1821), - [anon_sym_TILDE] = ACTIONS(1811), - [anon_sym_CARET] = ACTIONS(1811), - [anon_sym_AMP] = ACTIONS(1823), - [anon_sym_LT_DASH] = ACTIONS(1825), - [sym_none] = ACTIONS(1456), - [sym_true] = ACTIONS(1456), - [sym_false] = ACTIONS(1456), - [sym_nil] = ACTIONS(1456), - [anon_sym_if] = ACTIONS(1827), - [anon_sym_DOLLARif] = ACTIONS(1460), - [anon_sym_match] = ACTIONS(1462), - [anon_sym_select] = ACTIONS(1829), - [anon_sym_lock] = ACTIONS(1831), - [anon_sym_rlock] = ACTIONS(1831), - [anon_sym_unsafe] = ACTIONS(1833), - [anon_sym_sql] = ACTIONS(1470), - [sym_int_literal] = ACTIONS(1456), - [sym_float_literal] = ACTIONS(1472), - [sym_rune_literal] = ACTIONS(1472), - [sym_pseudo_compile_time_identifier] = ACTIONS(1474), + [anon_sym_BANG] = ACTIONS(1821), + [anon_sym_go] = ACTIONS(1823), + [anon_sym_spawn] = ACTIONS(1825), + [anon_sym_json_DOTdecode] = ACTIONS(1450), + [anon_sym_LBRACK2] = ACTIONS(1827), + [anon_sym_TILDE] = ACTIONS(1817), + [anon_sym_CARET] = ACTIONS(1817), + [anon_sym_AMP] = ACTIONS(1829), + [anon_sym_LT_DASH] = ACTIONS(1831), + [sym_none] = ACTIONS(1458), + [sym_true] = ACTIONS(1458), + [sym_false] = ACTIONS(1458), + [sym_nil] = ACTIONS(1458), + [anon_sym_if] = ACTIONS(1833), + [anon_sym_DOLLARif] = ACTIONS(1462), + [anon_sym_match] = ACTIONS(1464), + [anon_sym_select] = ACTIONS(1835), + [anon_sym_lock] = ACTIONS(1837), + [anon_sym_rlock] = ACTIONS(1837), + [anon_sym_unsafe] = ACTIONS(1839), + [anon_sym_sql] = ACTIONS(1472), + [sym_int_literal] = ACTIONS(1458), + [sym_float_literal] = ACTIONS(1474), + [sym_rune_literal] = ACTIONS(1474), + [sym_pseudo_compile_time_identifier] = ACTIONS(1476), [anon_sym_shared] = ACTIONS(83), [anon_sym_map_LBRACK] = ACTIONS(85), [anon_sym_chan] = ACTIONS(87), [anon_sym_thread] = ACTIONS(89), [anon_sym_atomic] = ACTIONS(91), - [sym___double_quote] = ACTIONS(1478), - [sym___single_quote] = ACTIONS(1480), - [sym___c_double_quote] = ACTIONS(1482), - [sym___c_single_quote] = ACTIONS(1484), - [sym___r_double_quote] = ACTIONS(1486), - [sym___r_single_quote] = ACTIONS(1488), + [sym___double_quote] = ACTIONS(1480), + [sym___single_quote] = ACTIONS(1482), + [sym___c_double_quote] = ACTIONS(1484), + [sym___c_single_quote] = ACTIONS(1486), + [sym___r_double_quote] = ACTIONS(1488), + [sym___r_single_quote] = ACTIONS(1490), }, - [249] = { - [sym_line_comment] = STATE(249), - [sym_block_comment] = STATE(249), - [sym__expression] = STATE(2455), - [sym__expression_without_blocks] = STATE(2300), - [sym__expression_with_blocks] = STATE(2300), - [sym_inc_expression] = STATE(2307), - [sym_dec_expression] = STATE(2307), - [sym_or_block_expression] = STATE(2307), - [sym_option_propagation_expression] = STATE(2307), - [sym_result_propagation_expression] = STATE(2307), - [sym_anon_struct_value_expression] = STATE(2380), - [sym_go_expression] = STATE(2307), - [sym_spawn_expression] = STATE(2307), - [sym_parenthesized_expression] = STATE(2307), - [sym_call_expression] = STATE(2307), - [sym_type_initializer] = STATE(2380), - [sym_function_literal] = STATE(2307), - [sym_reference_expression] = STATE(2311), - [sym_type_reference_expression] = STATE(3541), - [sym_unary_expression] = STATE(2307), - [sym_receive_expression] = STATE(2307), - [sym_binary_expression] = STATE(2307), - [sym_as_type_cast_expression] = STATE(2307), - [sym__max_group] = STATE(2307), - [sym_literal] = STATE(2292), - [sym_map_init_expression] = STATE(2380), - [sym_array_creation] = STATE(2307), - [sym_fixed_array_creation] = STATE(2307), - [sym_selector_expression] = STATE(2307), - [sym_index_expression] = STATE(2307), - [sym_slice_expression] = STATE(2307), - [sym_if_expression] = STATE(2380), - [sym_compile_time_if_expression] = STATE(2380), - [sym_is_expression] = STATE(2307), - [sym_in_expression] = STATE(2307), - [sym_enum_fetch] = STATE(2307), - [sym_match_expression] = STATE(2380), - [sym_select_expression] = STATE(2380), - [sym_lock_expression] = STATE(2380), - [sym_unsafe_expression] = STATE(2380), - [sym_sql_expression] = STATE(2380), - [sym_c_string_literal] = STATE(2308), - [sym_raw_string_literal] = STATE(2308), - [sym_interpreted_string_literal] = STATE(2308), - [sym_mutability_modifiers] = STATE(824), - [sym_mutable_expression] = STATE(3922), - [sym_expression_list] = STATE(4254), - [sym_plain_type] = STATE(4297), - [sym__plain_type_without_special] = STATE(2302), - [sym_anon_struct_type] = STATE(2303), - [sym_multi_return_type] = STATE(2302), - [sym_result_type] = STATE(2302), - [sym_option_type] = STATE(2302), - [sym_qualified_type] = STATE(3541), - [sym_fixed_array_type] = STATE(2303), - [sym_array_type] = STATE(2303), - [sym_pointer_type] = STATE(2303), - [sym_wrong_pointer_type] = STATE(2303), - [sym_map_type] = STATE(2303), - [sym_channel_type] = STATE(2303), - [sym_shared_type] = STATE(2303), - [sym_thread_type] = STATE(2303), - [sym_atomic_type] = STATE(2303), - [sym_generic_type] = STATE(2303), - [sym_function_type] = STATE(2303), - [sym_block] = STATE(2251), - [sym_identifier] = ACTIONS(1807), + [250] = { + [sym_line_comment] = STATE(250), + [sym_block_comment] = STATE(250), + [sym__expression] = STATE(1340), + [sym__expression_without_blocks] = STATE(1318), + [sym__expression_with_blocks] = STATE(1318), + [sym_inc_expression] = STATE(1319), + [sym_dec_expression] = STATE(1319), + [sym_or_block_expression] = STATE(1319), + [sym_option_propagation_expression] = STATE(1319), + [sym_result_propagation_expression] = STATE(1319), + [sym_anon_struct_value_expression] = STATE(1320), + [sym_go_expression] = STATE(1319), + [sym_spawn_expression] = STATE(1319), + [sym_parenthesized_expression] = STATE(1319), + [sym_call_expression] = STATE(1319), + [sym_type_initializer] = STATE(1320), + [sym_function_literal] = STATE(1319), + [sym_reference_expression] = STATE(1298), + [sym_type_reference_expression] = STATE(3460), + [sym_unary_expression] = STATE(1319), + [sym_receive_expression] = STATE(1319), + [sym_binary_expression] = STATE(1319), + [sym_as_type_cast_expression] = STATE(1319), + [sym__max_group] = STATE(1319), + [sym_literal] = STATE(1314), + [sym_map_init_expression] = STATE(1320), + [sym_array_creation] = STATE(1319), + [sym_fixed_array_creation] = STATE(1319), + [sym_selector_expression] = STATE(1319), + [sym_index_expression] = STATE(1319), + [sym_slice_expression] = STATE(1319), + [sym_if_expression] = STATE(1320), + [sym_compile_time_if_expression] = STATE(1320), + [sym_is_expression] = STATE(1319), + [sym_in_expression] = STATE(1319), + [sym_enum_fetch] = STATE(1319), + [sym_match_expression] = STATE(1320), + [sym_select_expression] = STATE(1320), + [sym_lock_expression] = STATE(1320), + [sym_unsafe_expression] = STATE(1320), + [sym_sql_expression] = STATE(1320), + [sym_c_string_literal] = STATE(1291), + [sym_raw_string_literal] = STATE(1291), + [sym_interpreted_string_literal] = STATE(1291), + [sym_mutability_modifiers] = STATE(639), + [sym_plain_type] = STATE(4307), + [sym__plain_type_without_special] = STATE(2360), + [sym_anon_struct_type] = STATE(2362), + [sym_multi_return_type] = STATE(2360), + [sym_result_type] = STATE(2360), + [sym_option_type] = STATE(2360), + [sym_qualified_type] = STATE(3460), + [sym_fixed_array_type] = STATE(2362), + [sym_array_type] = STATE(2362), + [sym_pointer_type] = STATE(2362), + [sym_wrong_pointer_type] = STATE(2362), + [sym_map_type] = STATE(2362), + [sym_channel_type] = STATE(2362), + [sym_shared_type] = STATE(2362), + [sym_thread_type] = STATE(2362), + [sym_atomic_type] = STATE(2362), + [sym_generic_type] = STATE(2362), + [sym_function_type] = STATE(2362), + [sym___rcbr] = STATE(3639), + [aux_sym_string_interpolation_repeat1] = STATE(365), + [sym_identifier] = ACTIONS(1360), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1428), - [anon_sym_LBRACE] = ACTIONS(1895), - [anon_sym_LPAREN] = ACTIONS(1432), - [anon_sym_fn] = ACTIONS(1434), - [anon_sym_PLUS] = ACTIONS(1811), - [anon_sym_DASH] = ACTIONS(1811), - [anon_sym_STAR] = ACTIONS(1813), - [anon_sym_struct] = ACTIONS(1440), + [anon_sym_DOT] = ACTIONS(1362), + [anon_sym_LBRACE] = ACTIONS(1364), + [anon_sym_RBRACE] = ACTIONS(1899), + [anon_sym_LPAREN] = ACTIONS(1366), + [anon_sym_fn] = ACTIONS(1368), + [anon_sym_PLUS] = ACTIONS(1851), + [anon_sym_DASH] = ACTIONS(1851), + [anon_sym_STAR] = ACTIONS(1853), + [anon_sym_struct] = ACTIONS(1376), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(1815), - [anon_sym_go] = ACTIONS(1817), - [anon_sym_spawn] = ACTIONS(1819), - [anon_sym_json_DOTdecode] = ACTIONS(1448), - [anon_sym_LBRACK2] = ACTIONS(1821), - [anon_sym_TILDE] = ACTIONS(1811), - [anon_sym_CARET] = ACTIONS(1811), - [anon_sym_AMP] = ACTIONS(1823), - [anon_sym_LT_DASH] = ACTIONS(1825), - [sym_none] = ACTIONS(1456), - [sym_true] = ACTIONS(1456), - [sym_false] = ACTIONS(1456), - [sym_nil] = ACTIONS(1456), - [anon_sym_if] = ACTIONS(1827), - [anon_sym_DOLLARif] = ACTIONS(1460), - [anon_sym_match] = ACTIONS(1462), - [anon_sym_select] = ACTIONS(1829), - [anon_sym_lock] = ACTIONS(1831), - [anon_sym_rlock] = ACTIONS(1831), - [anon_sym_unsafe] = ACTIONS(1833), - [anon_sym_sql] = ACTIONS(1470), - [sym_int_literal] = ACTIONS(1456), - [sym_float_literal] = ACTIONS(1472), - [sym_rune_literal] = ACTIONS(1472), - [sym_pseudo_compile_time_identifier] = ACTIONS(1474), + [anon_sym_BANG] = ACTIONS(1855), + [anon_sym_go] = ACTIONS(1857), + [anon_sym_spawn] = ACTIONS(1859), + [anon_sym_json_DOTdecode] = ACTIONS(1384), + [anon_sym_LBRACK2] = ACTIONS(1386), + [anon_sym_TILDE] = ACTIONS(1851), + [anon_sym_CARET] = ACTIONS(1851), + [anon_sym_AMP] = ACTIONS(1861), + [anon_sym_LT_DASH] = ACTIONS(1863), + [sym_none] = ACTIONS(1392), + [sym_true] = ACTIONS(1392), + [sym_false] = ACTIONS(1392), + [sym_nil] = ACTIONS(1392), + [anon_sym_if] = ACTIONS(1865), + [anon_sym_DOLLARif] = ACTIONS(1396), + [anon_sym_match] = ACTIONS(1398), + [anon_sym_select] = ACTIONS(1867), + [anon_sym_lock] = ACTIONS(1869), + [anon_sym_rlock] = ACTIONS(1869), + [anon_sym_unsafe] = ACTIONS(1871), + [anon_sym_sql] = ACTIONS(1406), + [sym_int_literal] = ACTIONS(1392), + [sym_float_literal] = ACTIONS(1410), + [sym_rune_literal] = ACTIONS(1410), + [sym_pseudo_compile_time_identifier] = ACTIONS(1412), [anon_sym_shared] = ACTIONS(83), [anon_sym_map_LBRACK] = ACTIONS(85), [anon_sym_chan] = ACTIONS(87), [anon_sym_thread] = ACTIONS(89), [anon_sym_atomic] = ACTIONS(91), - [sym___double_quote] = ACTIONS(1478), - [sym___single_quote] = ACTIONS(1480), - [sym___c_double_quote] = ACTIONS(1482), - [sym___c_single_quote] = ACTIONS(1484), - [sym___r_double_quote] = ACTIONS(1486), - [sym___r_single_quote] = ACTIONS(1488), - }, - [250] = { - [sym_line_comment] = STATE(250), - [sym_block_comment] = STATE(250), - [ts_builtin_sym_end] = ACTIONS(1897), - [sym_identifier] = ACTIONS(1899), - [anon_sym_LF] = ACTIONS(1899), - [anon_sym_CR] = ACTIONS(1899), - [anon_sym_CR_LF] = ACTIONS(1899), - [anon_sym_SLASH_SLASH] = ACTIONS(497), - [anon_sym_SLASH_STAR] = ACTIONS(499), - [anon_sym_DOT] = ACTIONS(1899), - [anon_sym_as] = ACTIONS(1899), - [anon_sym_LBRACE] = ACTIONS(1899), - [anon_sym_COMMA] = ACTIONS(1899), - [anon_sym_const] = ACTIONS(1899), - [anon_sym_LPAREN] = ACTIONS(1899), - [anon_sym_EQ] = ACTIONS(1899), - [anon_sym___global] = ACTIONS(1899), - [anon_sym_type] = ACTIONS(1899), - [anon_sym_PIPE] = ACTIONS(1899), - [anon_sym_fn] = ACTIONS(1899), - [anon_sym_PLUS] = ACTIONS(1899), - [anon_sym_DASH] = ACTIONS(1899), - [anon_sym_STAR] = ACTIONS(1899), - [anon_sym_SLASH] = ACTIONS(1899), - [anon_sym_PERCENT] = ACTIONS(1899), - [anon_sym_LT] = ACTIONS(1899), - [anon_sym_GT] = ACTIONS(1899), - [anon_sym_EQ_EQ] = ACTIONS(1899), - [anon_sym_BANG_EQ] = ACTIONS(1899), - [anon_sym_LT_EQ] = ACTIONS(1899), - [anon_sym_GT_EQ] = ACTIONS(1899), - [anon_sym_LBRACK] = ACTIONS(1897), - [anon_sym_struct] = ACTIONS(1899), - [anon_sym_union] = ACTIONS(1899), - [anon_sym_pub] = ACTIONS(1899), - [anon_sym_mut] = ACTIONS(1899), - [anon_sym_enum] = ACTIONS(1899), - [anon_sym_interface] = ACTIONS(1899), - [anon_sym_PLUS_PLUS] = ACTIONS(1899), - [anon_sym_DASH_DASH] = ACTIONS(1899), - [anon_sym_QMARK] = ACTIONS(1899), - [anon_sym_BANG] = ACTIONS(1899), - [anon_sym_go] = ACTIONS(1899), - [anon_sym_spawn] = ACTIONS(1899), - [anon_sym_json_DOTdecode] = ACTIONS(1899), - [anon_sym_LBRACK2] = ACTIONS(1899), - [anon_sym_TILDE] = ACTIONS(1899), - [anon_sym_CARET] = ACTIONS(1899), - [anon_sym_AMP] = ACTIONS(1899), - [anon_sym_LT_DASH] = ACTIONS(1899), - [anon_sym_LT_LT] = ACTIONS(1899), - [anon_sym_GT_GT] = ACTIONS(1899), - [anon_sym_GT_GT_GT] = ACTIONS(1899), - [anon_sym_AMP_CARET] = ACTIONS(1899), - [anon_sym_AMP_AMP] = ACTIONS(1899), - [anon_sym_PIPE_PIPE] = ACTIONS(1899), - [anon_sym_or] = ACTIONS(1899), - [sym_none] = ACTIONS(1899), - [sym_true] = ACTIONS(1899), - [sym_false] = ACTIONS(1899), - [sym_nil] = ACTIONS(1899), - [anon_sym_QMARK_DOT] = ACTIONS(1899), - [anon_sym_POUND_LBRACK] = ACTIONS(1899), - [anon_sym_if] = ACTIONS(1899), - [anon_sym_DOLLARif] = ACTIONS(1899), - [anon_sym_DOLLARelse] = ACTIONS(1901), - [anon_sym_is] = ACTIONS(1899), - [anon_sym_BANGis] = ACTIONS(1899), - [anon_sym_in] = ACTIONS(1899), - [anon_sym_BANGin] = ACTIONS(1899), - [anon_sym_match] = ACTIONS(1899), - [anon_sym_select] = ACTIONS(1899), - [anon_sym_STAR_EQ] = ACTIONS(1899), - [anon_sym_SLASH_EQ] = ACTIONS(1899), - [anon_sym_PERCENT_EQ] = ACTIONS(1899), - [anon_sym_LT_LT_EQ] = ACTIONS(1899), - [anon_sym_GT_GT_EQ] = ACTIONS(1899), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(1899), - [anon_sym_AMP_EQ] = ACTIONS(1899), - [anon_sym_AMP_CARET_EQ] = ACTIONS(1899), - [anon_sym_PLUS_EQ] = ACTIONS(1899), - [anon_sym_DASH_EQ] = ACTIONS(1899), - [anon_sym_PIPE_EQ] = ACTIONS(1899), - [anon_sym_CARET_EQ] = ACTIONS(1899), - [anon_sym_COLON_EQ] = ACTIONS(1899), - [anon_sym_lock] = ACTIONS(1899), - [anon_sym_rlock] = ACTIONS(1899), - [anon_sym_unsafe] = ACTIONS(1899), - [anon_sym_sql] = ACTIONS(1899), - [sym_int_literal] = ACTIONS(1899), - [sym_float_literal] = ACTIONS(1899), - [sym_rune_literal] = ACTIONS(1899), - [sym_pseudo_compile_time_identifier] = ACTIONS(1899), - [anon_sym_shared] = ACTIONS(1899), - [anon_sym_map_LBRACK] = ACTIONS(1899), - [anon_sym_chan] = ACTIONS(1899), - [anon_sym_thread] = ACTIONS(1899), - [anon_sym_atomic] = ACTIONS(1899), - [anon_sym_assert] = ACTIONS(1899), - [anon_sym_defer] = ACTIONS(1899), - [anon_sym_goto] = ACTIONS(1899), - [anon_sym_break] = ACTIONS(1899), - [anon_sym_continue] = ACTIONS(1899), - [anon_sym_return] = ACTIONS(1899), - [anon_sym_DOLLARfor] = ACTIONS(1899), - [anon_sym_for] = ACTIONS(1899), - [anon_sym_POUND] = ACTIONS(1899), - [anon_sym_asm] = ACTIONS(1899), - [anon_sym_AT_LBRACK] = ACTIONS(1899), - [sym___double_quote] = ACTIONS(1899), - [sym___single_quote] = ACTIONS(1899), - [sym___c_double_quote] = ACTIONS(1899), - [sym___c_single_quote] = ACTIONS(1899), - [sym___r_double_quote] = ACTIONS(1899), - [sym___r_single_quote] = ACTIONS(1899), + [sym___double_quote] = ACTIONS(1414), + [sym___single_quote] = ACTIONS(1416), + [sym___c_double_quote] = ACTIONS(1418), + [sym___c_single_quote] = ACTIONS(1420), + [sym___r_double_quote] = ACTIONS(1422), + [sym___r_single_quote] = ACTIONS(1424), }, [251] = { [sym_line_comment] = STATE(251), [sym_block_comment] = STATE(251), - [sym__expression] = STATE(1323), - [sym__expression_without_blocks] = STATE(1312), - [sym__expression_with_blocks] = STATE(1312), - [sym_inc_expression] = STATE(1313), - [sym_dec_expression] = STATE(1313), - [sym_or_block_expression] = STATE(1313), - [sym_option_propagation_expression] = STATE(1313), - [sym_result_propagation_expression] = STATE(1313), - [sym_anon_struct_value_expression] = STATE(1314), - [sym_go_expression] = STATE(1313), - [sym_spawn_expression] = STATE(1313), - [sym_parenthesized_expression] = STATE(1313), - [sym_call_expression] = STATE(1313), - [sym_type_initializer] = STATE(1314), - [sym_function_literal] = STATE(1313), - [sym_reference_expression] = STATE(1334), - [sym_type_reference_expression] = STATE(3541), - [sym_unary_expression] = STATE(1313), - [sym_receive_expression] = STATE(1313), - [sym_binary_expression] = STATE(1313), - [sym_as_type_cast_expression] = STATE(1313), - [sym__max_group] = STATE(1313), - [sym_literal] = STATE(1308), - [sym_map_init_expression] = STATE(1314), - [sym_array_creation] = STATE(1313), - [sym_fixed_array_creation] = STATE(1313), - [sym_selector_expression] = STATE(1313), - [sym_index_expression] = STATE(1313), - [sym_slice_expression] = STATE(1313), - [sym_if_expression] = STATE(1314), - [sym_compile_time_if_expression] = STATE(1314), - [sym_is_expression] = STATE(1313), - [sym_in_expression] = STATE(1313), - [sym_enum_fetch] = STATE(1313), - [sym_match_expression] = STATE(1314), - [sym_select_expression] = STATE(1314), - [sym_lock_expression] = STATE(1314), - [sym_unsafe_expression] = STATE(1314), - [sym_sql_expression] = STATE(1314), - [sym_c_string_literal] = STATE(1286), - [sym_raw_string_literal] = STATE(1286), - [sym_interpreted_string_literal] = STATE(1286), - [sym_mutability_modifiers] = STATE(699), - [sym_plain_type] = STATE(4192), - [sym__plain_type_without_special] = STATE(2302), - [sym_anon_struct_type] = STATE(2303), - [sym_multi_return_type] = STATE(2302), - [sym_result_type] = STATE(2302), - [sym_option_type] = STATE(2302), - [sym_qualified_type] = STATE(3541), - [sym_fixed_array_type] = STATE(2303), - [sym_array_type] = STATE(2303), - [sym_pointer_type] = STATE(2303), - [sym_wrong_pointer_type] = STATE(2303), - [sym_map_type] = STATE(2303), - [sym_channel_type] = STATE(2303), - [sym_shared_type] = STATE(2303), - [sym_thread_type] = STATE(2303), - [sym_atomic_type] = STATE(2303), - [sym_generic_type] = STATE(2303), - [sym_function_type] = STATE(2303), - [sym___rcbr] = STATE(3706), - [aux_sym_string_interpolation_repeat1] = STATE(382), - [sym_identifier] = ACTIONS(1354), + [sym__expression] = STATE(2558), + [sym__expression_without_blocks] = STATE(2347), + [sym__expression_with_blocks] = STATE(2347), + [sym_inc_expression] = STATE(2379), + [sym_dec_expression] = STATE(2379), + [sym_or_block_expression] = STATE(2379), + [sym_option_propagation_expression] = STATE(2379), + [sym_result_propagation_expression] = STATE(2379), + [sym_anon_struct_value_expression] = STATE(2378), + [sym_go_expression] = STATE(2379), + [sym_spawn_expression] = STATE(2379), + [sym_parenthesized_expression] = STATE(2379), + [sym_call_expression] = STATE(2379), + [sym_type_initializer] = STATE(2378), + [sym_function_literal] = STATE(2379), + [sym_reference_expression] = STATE(2377), + [sym_type_reference_expression] = STATE(3460), + [sym_unary_expression] = STATE(2379), + [sym_receive_expression] = STATE(2379), + [sym_binary_expression] = STATE(2379), + [sym_as_type_cast_expression] = STATE(2379), + [sym__max_group] = STATE(2379), + [sym_literal] = STATE(2392), + [sym_map_init_expression] = STATE(2378), + [sym_array_creation] = STATE(2379), + [sym_fixed_array_creation] = STATE(2379), + [sym_selector_expression] = STATE(2379), + [sym_index_expression] = STATE(2379), + [sym_slice_expression] = STATE(2379), + [sym_if_expression] = STATE(2378), + [sym_compile_time_if_expression] = STATE(2378), + [sym_is_expression] = STATE(2379), + [sym_in_expression] = STATE(2379), + [sym_enum_fetch] = STATE(2379), + [sym_match_expression] = STATE(2378), + [sym_select_expression] = STATE(2378), + [sym_lock_expression] = STATE(2378), + [sym_unsafe_expression] = STATE(2378), + [sym_sql_expression] = STATE(2378), + [sym_c_string_literal] = STATE(2401), + [sym_raw_string_literal] = STATE(2401), + [sym_interpreted_string_literal] = STATE(2401), + [sym_mutability_modifiers] = STATE(900), + [sym_mutable_expression] = STATE(3813), + [sym_expression_list] = STATE(4225), + [sym_plain_type] = STATE(4160), + [sym__plain_type_without_special] = STATE(2360), + [sym_anon_struct_type] = STATE(2362), + [sym_multi_return_type] = STATE(2360), + [sym_result_type] = STATE(2360), + [sym_option_type] = STATE(2360), + [sym_qualified_type] = STATE(3460), + [sym_fixed_array_type] = STATE(2362), + [sym_array_type] = STATE(2362), + [sym_pointer_type] = STATE(2362), + [sym_wrong_pointer_type] = STATE(2362), + [sym_map_type] = STATE(2362), + [sym_channel_type] = STATE(2362), + [sym_shared_type] = STATE(2362), + [sym_thread_type] = STATE(2362), + [sym_atomic_type] = STATE(2362), + [sym_generic_type] = STATE(2362), + [sym_function_type] = STATE(2362), + [sym_block] = STATE(2008), + [sym_identifier] = ACTIONS(1815), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1356), - [anon_sym_LBRACE] = ACTIONS(1358), - [anon_sym_RBRACE] = ACTIONS(1861), - [anon_sym_LPAREN] = ACTIONS(1360), - [anon_sym_fn] = ACTIONS(1362), - [anon_sym_PLUS] = ACTIONS(1863), - [anon_sym_DASH] = ACTIONS(1863), - [anon_sym_STAR] = ACTIONS(1865), - [anon_sym_struct] = ACTIONS(1370), + [anon_sym_DOT] = ACTIONS(1430), + [anon_sym_LBRACE] = ACTIONS(1901), + [anon_sym_LPAREN] = ACTIONS(1434), + [anon_sym_fn] = ACTIONS(1436), + [anon_sym_PLUS] = ACTIONS(1817), + [anon_sym_DASH] = ACTIONS(1817), + [anon_sym_STAR] = ACTIONS(1819), + [anon_sym_struct] = ACTIONS(1442), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(1867), - [anon_sym_go] = ACTIONS(1869), - [anon_sym_spawn] = ACTIONS(1871), - [anon_sym_json_DOTdecode] = ACTIONS(1378), - [anon_sym_LBRACK2] = ACTIONS(1380), - [anon_sym_TILDE] = ACTIONS(1863), - [anon_sym_CARET] = ACTIONS(1863), - [anon_sym_AMP] = ACTIONS(1873), - [anon_sym_LT_DASH] = ACTIONS(1875), - [sym_none] = ACTIONS(1386), - [sym_true] = ACTIONS(1386), - [sym_false] = ACTIONS(1386), - [sym_nil] = ACTIONS(1386), - [anon_sym_if] = ACTIONS(1877), - [anon_sym_DOLLARif] = ACTIONS(1390), - [anon_sym_match] = ACTIONS(1392), - [anon_sym_select] = ACTIONS(1879), - [anon_sym_lock] = ACTIONS(1881), - [anon_sym_rlock] = ACTIONS(1881), - [anon_sym_unsafe] = ACTIONS(1883), - [anon_sym_sql] = ACTIONS(1400), - [sym_int_literal] = ACTIONS(1386), - [sym_float_literal] = ACTIONS(1404), - [sym_rune_literal] = ACTIONS(1404), - [sym_pseudo_compile_time_identifier] = ACTIONS(1406), + [anon_sym_BANG] = ACTIONS(1821), + [anon_sym_go] = ACTIONS(1823), + [anon_sym_spawn] = ACTIONS(1825), + [anon_sym_json_DOTdecode] = ACTIONS(1450), + [anon_sym_LBRACK2] = ACTIONS(1827), + [anon_sym_TILDE] = ACTIONS(1817), + [anon_sym_CARET] = ACTIONS(1817), + [anon_sym_AMP] = ACTIONS(1829), + [anon_sym_LT_DASH] = ACTIONS(1831), + [sym_none] = ACTIONS(1458), + [sym_true] = ACTIONS(1458), + [sym_false] = ACTIONS(1458), + [sym_nil] = ACTIONS(1458), + [anon_sym_if] = ACTIONS(1833), + [anon_sym_DOLLARif] = ACTIONS(1462), + [anon_sym_match] = ACTIONS(1464), + [anon_sym_select] = ACTIONS(1835), + [anon_sym_lock] = ACTIONS(1837), + [anon_sym_rlock] = ACTIONS(1837), + [anon_sym_unsafe] = ACTIONS(1839), + [anon_sym_sql] = ACTIONS(1472), + [sym_int_literal] = ACTIONS(1458), + [sym_float_literal] = ACTIONS(1474), + [sym_rune_literal] = ACTIONS(1474), + [sym_pseudo_compile_time_identifier] = ACTIONS(1476), [anon_sym_shared] = ACTIONS(83), [anon_sym_map_LBRACK] = ACTIONS(85), [anon_sym_chan] = ACTIONS(87), [anon_sym_thread] = ACTIONS(89), [anon_sym_atomic] = ACTIONS(91), - [sym___double_quote] = ACTIONS(1408), - [sym___single_quote] = ACTIONS(1410), - [sym___c_double_quote] = ACTIONS(1412), - [sym___c_single_quote] = ACTIONS(1414), - [sym___r_double_quote] = ACTIONS(1416), - [sym___r_single_quote] = ACTIONS(1418), + [sym___double_quote] = ACTIONS(1480), + [sym___single_quote] = ACTIONS(1482), + [sym___c_double_quote] = ACTIONS(1484), + [sym___c_single_quote] = ACTIONS(1486), + [sym___r_double_quote] = ACTIONS(1488), + [sym___r_single_quote] = ACTIONS(1490), }, [252] = { [sym_line_comment] = STATE(252), [sym_block_comment] = STATE(252), - [sym_type_parameters] = STATE(397), - [ts_builtin_sym_end] = ACTIONS(1903), - [sym_identifier] = ACTIONS(1905), - [anon_sym_LF] = ACTIONS(1905), - [anon_sym_CR] = ACTIONS(1905), - [anon_sym_CR_LF] = ACTIONS(1905), - [anon_sym_SLASH_SLASH] = ACTIONS(497), - [anon_sym_SLASH_STAR] = ACTIONS(499), - [anon_sym_DOT] = ACTIONS(1905), - [anon_sym_as] = ACTIONS(1905), - [anon_sym_LBRACE] = ACTIONS(1905), - [anon_sym_COMMA] = ACTIONS(1905), - [anon_sym_const] = ACTIONS(1905), - [anon_sym_LPAREN] = ACTIONS(1905), - [anon_sym_EQ] = ACTIONS(1905), - [anon_sym___global] = ACTIONS(1905), - [anon_sym_type] = ACTIONS(1905), - [anon_sym_PIPE] = ACTIONS(1905), - [anon_sym_fn] = ACTIONS(1905), - [anon_sym_PLUS] = ACTIONS(1905), - [anon_sym_DASH] = ACTIONS(1905), - [anon_sym_STAR] = ACTIONS(1905), - [anon_sym_SLASH] = ACTIONS(1905), - [anon_sym_PERCENT] = ACTIONS(1905), - [anon_sym_LT] = ACTIONS(1905), - [anon_sym_GT] = ACTIONS(1905), - [anon_sym_EQ_EQ] = ACTIONS(1905), - [anon_sym_BANG_EQ] = ACTIONS(1905), - [anon_sym_LT_EQ] = ACTIONS(1905), - [anon_sym_GT_EQ] = ACTIONS(1905), - [anon_sym_LBRACK] = ACTIONS(1903), - [anon_sym_struct] = ACTIONS(1905), - [anon_sym_union] = ACTIONS(1905), - [anon_sym_pub] = ACTIONS(1905), - [anon_sym_mut] = ACTIONS(1905), - [anon_sym_enum] = ACTIONS(1905), - [anon_sym_interface] = ACTIONS(1905), - [anon_sym_PLUS_PLUS] = ACTIONS(1905), - [anon_sym_DASH_DASH] = ACTIONS(1905), - [anon_sym_QMARK] = ACTIONS(1905), - [anon_sym_BANG] = ACTIONS(1905), - [anon_sym_go] = ACTIONS(1905), - [anon_sym_spawn] = ACTIONS(1905), - [anon_sym_json_DOTdecode] = ACTIONS(1905), - [anon_sym_LBRACK2] = ACTIONS(1905), - [anon_sym_TILDE] = ACTIONS(1905), - [anon_sym_CARET] = ACTIONS(1905), - [anon_sym_AMP] = ACTIONS(1905), - [anon_sym_LT_DASH] = ACTIONS(1905), - [anon_sym_LT_LT] = ACTIONS(1905), - [anon_sym_GT_GT] = ACTIONS(1905), - [anon_sym_GT_GT_GT] = ACTIONS(1905), - [anon_sym_AMP_CARET] = ACTIONS(1905), - [anon_sym_AMP_AMP] = ACTIONS(1905), - [anon_sym_PIPE_PIPE] = ACTIONS(1905), - [anon_sym_or] = ACTIONS(1905), - [sym_none] = ACTIONS(1905), - [sym_true] = ACTIONS(1905), - [sym_false] = ACTIONS(1905), - [sym_nil] = ACTIONS(1905), - [anon_sym_QMARK_DOT] = ACTIONS(1905), - [anon_sym_POUND_LBRACK] = ACTIONS(1905), - [anon_sym_if] = ACTIONS(1905), - [anon_sym_DOLLARif] = ACTIONS(1905), - [anon_sym_is] = ACTIONS(1905), - [anon_sym_BANGis] = ACTIONS(1905), - [anon_sym_in] = ACTIONS(1905), - [anon_sym_BANGin] = ACTIONS(1905), - [anon_sym_match] = ACTIONS(1905), - [anon_sym_select] = ACTIONS(1905), - [anon_sym_STAR_EQ] = ACTIONS(1905), - [anon_sym_SLASH_EQ] = ACTIONS(1905), - [anon_sym_PERCENT_EQ] = ACTIONS(1905), - [anon_sym_LT_LT_EQ] = ACTIONS(1905), - [anon_sym_GT_GT_EQ] = ACTIONS(1905), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(1905), - [anon_sym_AMP_EQ] = ACTIONS(1905), - [anon_sym_AMP_CARET_EQ] = ACTIONS(1905), - [anon_sym_PLUS_EQ] = ACTIONS(1905), - [anon_sym_DASH_EQ] = ACTIONS(1905), - [anon_sym_PIPE_EQ] = ACTIONS(1905), - [anon_sym_CARET_EQ] = ACTIONS(1905), - [anon_sym_COLON_EQ] = ACTIONS(1905), - [anon_sym_lock] = ACTIONS(1905), - [anon_sym_rlock] = ACTIONS(1905), - [anon_sym_unsafe] = ACTIONS(1905), - [anon_sym_sql] = ACTIONS(1905), - [sym_int_literal] = ACTIONS(1905), - [sym_float_literal] = ACTIONS(1905), - [sym_rune_literal] = ACTIONS(1905), - [sym_pseudo_compile_time_identifier] = ACTIONS(1905), - [anon_sym_shared] = ACTIONS(1905), - [anon_sym_map_LBRACK] = ACTIONS(1905), - [anon_sym_chan] = ACTIONS(1905), - [anon_sym_thread] = ACTIONS(1905), - [anon_sym_atomic] = ACTIONS(1905), - [anon_sym_assert] = ACTIONS(1905), - [anon_sym_defer] = ACTIONS(1905), - [anon_sym_goto] = ACTIONS(1905), - [anon_sym_break] = ACTIONS(1905), - [anon_sym_continue] = ACTIONS(1905), - [anon_sym_return] = ACTIONS(1905), - [anon_sym_DOLLARfor] = ACTIONS(1905), - [anon_sym_for] = ACTIONS(1905), - [anon_sym_POUND] = ACTIONS(1905), - [anon_sym_asm] = ACTIONS(1905), - [anon_sym_AT_LBRACK] = ACTIONS(1905), - [sym___double_quote] = ACTIONS(1905), - [sym___single_quote] = ACTIONS(1905), - [sym___c_double_quote] = ACTIONS(1905), - [sym___c_single_quote] = ACTIONS(1905), - [sym___r_double_quote] = ACTIONS(1905), - [sym___r_single_quote] = ACTIONS(1905), + [sym__expression] = STATE(2558), + [sym__expression_without_blocks] = STATE(2347), + [sym__expression_with_blocks] = STATE(2347), + [sym_inc_expression] = STATE(2379), + [sym_dec_expression] = STATE(2379), + [sym_or_block_expression] = STATE(2379), + [sym_option_propagation_expression] = STATE(2379), + [sym_result_propagation_expression] = STATE(2379), + [sym_anon_struct_value_expression] = STATE(2378), + [sym_go_expression] = STATE(2379), + [sym_spawn_expression] = STATE(2379), + [sym_parenthesized_expression] = STATE(2379), + [sym_call_expression] = STATE(2379), + [sym_type_initializer] = STATE(2378), + [sym_function_literal] = STATE(2379), + [sym_reference_expression] = STATE(2377), + [sym_type_reference_expression] = STATE(3460), + [sym_unary_expression] = STATE(2379), + [sym_receive_expression] = STATE(2379), + [sym_binary_expression] = STATE(2379), + [sym_as_type_cast_expression] = STATE(2379), + [sym__max_group] = STATE(2379), + [sym_literal] = STATE(2392), + [sym_map_init_expression] = STATE(2378), + [sym_array_creation] = STATE(2379), + [sym_fixed_array_creation] = STATE(2379), + [sym_selector_expression] = STATE(2379), + [sym_index_expression] = STATE(2379), + [sym_slice_expression] = STATE(2379), + [sym_if_expression] = STATE(2378), + [sym_compile_time_if_expression] = STATE(2378), + [sym_is_expression] = STATE(2379), + [sym_in_expression] = STATE(2379), + [sym_enum_fetch] = STATE(2379), + [sym_match_expression] = STATE(2378), + [sym_select_expression] = STATE(2378), + [sym_lock_expression] = STATE(2378), + [sym_unsafe_expression] = STATE(2378), + [sym_sql_expression] = STATE(2378), + [sym_c_string_literal] = STATE(2401), + [sym_raw_string_literal] = STATE(2401), + [sym_interpreted_string_literal] = STATE(2401), + [sym_mutability_modifiers] = STATE(900), + [sym_mutable_expression] = STATE(3813), + [sym_expression_list] = STATE(4278), + [sym_plain_type] = STATE(4160), + [sym__plain_type_without_special] = STATE(2360), + [sym_anon_struct_type] = STATE(2362), + [sym_multi_return_type] = STATE(2360), + [sym_result_type] = STATE(2360), + [sym_option_type] = STATE(2360), + [sym_qualified_type] = STATE(3460), + [sym_fixed_array_type] = STATE(2362), + [sym_array_type] = STATE(2362), + [sym_pointer_type] = STATE(2362), + [sym_wrong_pointer_type] = STATE(2362), + [sym_map_type] = STATE(2362), + [sym_channel_type] = STATE(2362), + [sym_shared_type] = STATE(2362), + [sym_thread_type] = STATE(2362), + [sym_atomic_type] = STATE(2362), + [sym_generic_type] = STATE(2362), + [sym_function_type] = STATE(2362), + [sym_block] = STATE(2333), + [sym_identifier] = ACTIONS(1815), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(1430), + [anon_sym_LBRACE] = ACTIONS(1903), + [anon_sym_LPAREN] = ACTIONS(1434), + [anon_sym_fn] = ACTIONS(1436), + [anon_sym_PLUS] = ACTIONS(1817), + [anon_sym_DASH] = ACTIONS(1817), + [anon_sym_STAR] = ACTIONS(1819), + [anon_sym_struct] = ACTIONS(1442), + [anon_sym_mut] = ACTIONS(41), + [anon_sym_QMARK] = ACTIONS(47), + [anon_sym_BANG] = ACTIONS(1821), + [anon_sym_go] = ACTIONS(1823), + [anon_sym_spawn] = ACTIONS(1825), + [anon_sym_json_DOTdecode] = ACTIONS(1450), + [anon_sym_LBRACK2] = ACTIONS(1827), + [anon_sym_TILDE] = ACTIONS(1817), + [anon_sym_CARET] = ACTIONS(1817), + [anon_sym_AMP] = ACTIONS(1829), + [anon_sym_LT_DASH] = ACTIONS(1831), + [sym_none] = ACTIONS(1458), + [sym_true] = ACTIONS(1458), + [sym_false] = ACTIONS(1458), + [sym_nil] = ACTIONS(1458), + [anon_sym_if] = ACTIONS(1833), + [anon_sym_DOLLARif] = ACTIONS(1462), + [anon_sym_match] = ACTIONS(1464), + [anon_sym_select] = ACTIONS(1835), + [anon_sym_lock] = ACTIONS(1837), + [anon_sym_rlock] = ACTIONS(1837), + [anon_sym_unsafe] = ACTIONS(1839), + [anon_sym_sql] = ACTIONS(1472), + [sym_int_literal] = ACTIONS(1458), + [sym_float_literal] = ACTIONS(1474), + [sym_rune_literal] = ACTIONS(1474), + [sym_pseudo_compile_time_identifier] = ACTIONS(1476), + [anon_sym_shared] = ACTIONS(83), + [anon_sym_map_LBRACK] = ACTIONS(85), + [anon_sym_chan] = ACTIONS(87), + [anon_sym_thread] = ACTIONS(89), + [anon_sym_atomic] = ACTIONS(91), + [sym___double_quote] = ACTIONS(1480), + [sym___single_quote] = ACTIONS(1482), + [sym___c_double_quote] = ACTIONS(1484), + [sym___c_single_quote] = ACTIONS(1486), + [sym___r_double_quote] = ACTIONS(1488), + [sym___r_single_quote] = ACTIONS(1490), }, [253] = { [sym_line_comment] = STATE(253), [sym_block_comment] = STATE(253), - [sym__expression] = STATE(2455), - [sym__expression_without_blocks] = STATE(2300), - [sym__expression_with_blocks] = STATE(2300), - [sym_inc_expression] = STATE(2307), - [sym_dec_expression] = STATE(2307), - [sym_or_block_expression] = STATE(2307), - [sym_option_propagation_expression] = STATE(2307), - [sym_result_propagation_expression] = STATE(2307), - [sym_anon_struct_value_expression] = STATE(2380), - [sym_go_expression] = STATE(2307), - [sym_spawn_expression] = STATE(2307), - [sym_parenthesized_expression] = STATE(2307), - [sym_call_expression] = STATE(2307), - [sym_type_initializer] = STATE(2380), - [sym_function_literal] = STATE(2307), - [sym_reference_expression] = STATE(2311), - [sym_type_reference_expression] = STATE(3541), - [sym_unary_expression] = STATE(2307), - [sym_receive_expression] = STATE(2307), - [sym_binary_expression] = STATE(2307), - [sym_as_type_cast_expression] = STATE(2307), - [sym__max_group] = STATE(2307), - [sym_literal] = STATE(2292), - [sym_map_init_expression] = STATE(2380), - [sym_array_creation] = STATE(2307), - [sym_fixed_array_creation] = STATE(2307), - [sym_selector_expression] = STATE(2307), - [sym_index_expression] = STATE(2307), - [sym_slice_expression] = STATE(2307), - [sym_if_expression] = STATE(2380), - [sym_compile_time_if_expression] = STATE(2380), - [sym_is_expression] = STATE(2307), - [sym_in_expression] = STATE(2307), - [sym_enum_fetch] = STATE(2307), - [sym_match_expression] = STATE(2380), - [sym_select_expression] = STATE(2380), - [sym_lock_expression] = STATE(2380), - [sym_unsafe_expression] = STATE(2380), - [sym_sql_expression] = STATE(2380), - [sym_c_string_literal] = STATE(2308), - [sym_raw_string_literal] = STATE(2308), - [sym_interpreted_string_literal] = STATE(2308), - [sym_mutability_modifiers] = STATE(824), - [sym_mutable_expression] = STATE(3922), - [sym_expression_list] = STATE(4177), - [sym_plain_type] = STATE(4297), - [sym__plain_type_without_special] = STATE(2302), - [sym_anon_struct_type] = STATE(2303), - [sym_multi_return_type] = STATE(2302), - [sym_result_type] = STATE(2302), - [sym_option_type] = STATE(2302), - [sym_qualified_type] = STATE(3541), - [sym_fixed_array_type] = STATE(2303), - [sym_array_type] = STATE(2303), - [sym_pointer_type] = STATE(2303), - [sym_wrong_pointer_type] = STATE(2303), - [sym_map_type] = STATE(2303), - [sym_channel_type] = STATE(2303), - [sym_shared_type] = STATE(2303), - [sym_thread_type] = STATE(2303), - [sym_atomic_type] = STATE(2303), - [sym_generic_type] = STATE(2303), - [sym_function_type] = STATE(2303), - [sym_block] = STATE(1716), - [sym_identifier] = ACTIONS(1807), + [sym__expression] = STATE(2558), + [sym__expression_without_blocks] = STATE(2347), + [sym__expression_with_blocks] = STATE(2347), + [sym_inc_expression] = STATE(2379), + [sym_dec_expression] = STATE(2379), + [sym_or_block_expression] = STATE(2379), + [sym_option_propagation_expression] = STATE(2379), + [sym_result_propagation_expression] = STATE(2379), + [sym_anon_struct_value_expression] = STATE(2378), + [sym_go_expression] = STATE(2379), + [sym_spawn_expression] = STATE(2379), + [sym_parenthesized_expression] = STATE(2379), + [sym_call_expression] = STATE(2379), + [sym_type_initializer] = STATE(2378), + [sym_function_literal] = STATE(2379), + [sym_reference_expression] = STATE(2377), + [sym_type_reference_expression] = STATE(3460), + [sym_unary_expression] = STATE(2379), + [sym_receive_expression] = STATE(2379), + [sym_binary_expression] = STATE(2379), + [sym_as_type_cast_expression] = STATE(2379), + [sym__max_group] = STATE(2379), + [sym_literal] = STATE(2392), + [sym_map_init_expression] = STATE(2378), + [sym_array_creation] = STATE(2379), + [sym_fixed_array_creation] = STATE(2379), + [sym_selector_expression] = STATE(2379), + [sym_index_expression] = STATE(2379), + [sym_slice_expression] = STATE(2379), + [sym_if_expression] = STATE(2378), + [sym_compile_time_if_expression] = STATE(2378), + [sym_is_expression] = STATE(2379), + [sym_in_expression] = STATE(2379), + [sym_enum_fetch] = STATE(2379), + [sym_match_expression] = STATE(2378), + [sym_select_expression] = STATE(2378), + [sym_lock_expression] = STATE(2378), + [sym_unsafe_expression] = STATE(2378), + [sym_sql_expression] = STATE(2378), + [sym_c_string_literal] = STATE(2401), + [sym_raw_string_literal] = STATE(2401), + [sym_interpreted_string_literal] = STATE(2401), + [sym_mutability_modifiers] = STATE(900), + [sym_mutable_expression] = STATE(3813), + [sym_expression_list] = STATE(4134), + [sym_plain_type] = STATE(4160), + [sym__plain_type_without_special] = STATE(2360), + [sym_anon_struct_type] = STATE(2362), + [sym_multi_return_type] = STATE(2360), + [sym_result_type] = STATE(2360), + [sym_option_type] = STATE(2360), + [sym_qualified_type] = STATE(3460), + [sym_fixed_array_type] = STATE(2362), + [sym_array_type] = STATE(2362), + [sym_pointer_type] = STATE(2362), + [sym_wrong_pointer_type] = STATE(2362), + [sym_map_type] = STATE(2362), + [sym_channel_type] = STATE(2362), + [sym_shared_type] = STATE(2362), + [sym_thread_type] = STATE(2362), + [sym_atomic_type] = STATE(2362), + [sym_generic_type] = STATE(2362), + [sym_function_type] = STATE(2362), + [sym_block] = STATE(1341), + [sym_identifier] = ACTIONS(1815), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1428), - [anon_sym_LBRACE] = ACTIONS(1907), - [anon_sym_LPAREN] = ACTIONS(1432), - [anon_sym_fn] = ACTIONS(1434), - [anon_sym_PLUS] = ACTIONS(1811), - [anon_sym_DASH] = ACTIONS(1811), - [anon_sym_STAR] = ACTIONS(1813), - [anon_sym_struct] = ACTIONS(1440), + [anon_sym_DOT] = ACTIONS(1430), + [anon_sym_LBRACE] = ACTIONS(1905), + [anon_sym_LPAREN] = ACTIONS(1434), + [anon_sym_fn] = ACTIONS(1436), + [anon_sym_PLUS] = ACTIONS(1817), + [anon_sym_DASH] = ACTIONS(1817), + [anon_sym_STAR] = ACTIONS(1819), + [anon_sym_struct] = ACTIONS(1442), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(1815), - [anon_sym_go] = ACTIONS(1817), - [anon_sym_spawn] = ACTIONS(1819), - [anon_sym_json_DOTdecode] = ACTIONS(1448), - [anon_sym_LBRACK2] = ACTIONS(1821), - [anon_sym_TILDE] = ACTIONS(1811), - [anon_sym_CARET] = ACTIONS(1811), - [anon_sym_AMP] = ACTIONS(1823), - [anon_sym_LT_DASH] = ACTIONS(1825), - [sym_none] = ACTIONS(1456), - [sym_true] = ACTIONS(1456), - [sym_false] = ACTIONS(1456), - [sym_nil] = ACTIONS(1456), - [anon_sym_if] = ACTIONS(1827), - [anon_sym_DOLLARif] = ACTIONS(1460), - [anon_sym_match] = ACTIONS(1462), - [anon_sym_select] = ACTIONS(1829), - [anon_sym_lock] = ACTIONS(1831), - [anon_sym_rlock] = ACTIONS(1831), - [anon_sym_unsafe] = ACTIONS(1833), - [anon_sym_sql] = ACTIONS(1470), - [sym_int_literal] = ACTIONS(1456), - [sym_float_literal] = ACTIONS(1472), - [sym_rune_literal] = ACTIONS(1472), - [sym_pseudo_compile_time_identifier] = ACTIONS(1474), + [anon_sym_BANG] = ACTIONS(1821), + [anon_sym_go] = ACTIONS(1823), + [anon_sym_spawn] = ACTIONS(1825), + [anon_sym_json_DOTdecode] = ACTIONS(1450), + [anon_sym_LBRACK2] = ACTIONS(1827), + [anon_sym_TILDE] = ACTIONS(1817), + [anon_sym_CARET] = ACTIONS(1817), + [anon_sym_AMP] = ACTIONS(1829), + [anon_sym_LT_DASH] = ACTIONS(1831), + [sym_none] = ACTIONS(1458), + [sym_true] = ACTIONS(1458), + [sym_false] = ACTIONS(1458), + [sym_nil] = ACTIONS(1458), + [anon_sym_if] = ACTIONS(1833), + [anon_sym_DOLLARif] = ACTIONS(1462), + [anon_sym_match] = ACTIONS(1464), + [anon_sym_select] = ACTIONS(1835), + [anon_sym_lock] = ACTIONS(1837), + [anon_sym_rlock] = ACTIONS(1837), + [anon_sym_unsafe] = ACTIONS(1839), + [anon_sym_sql] = ACTIONS(1472), + [sym_int_literal] = ACTIONS(1458), + [sym_float_literal] = ACTIONS(1474), + [sym_rune_literal] = ACTIONS(1474), + [sym_pseudo_compile_time_identifier] = ACTIONS(1476), [anon_sym_shared] = ACTIONS(83), [anon_sym_map_LBRACK] = ACTIONS(85), [anon_sym_chan] = ACTIONS(87), [anon_sym_thread] = ACTIONS(89), [anon_sym_atomic] = ACTIONS(91), - [sym___double_quote] = ACTIONS(1478), - [sym___single_quote] = ACTIONS(1480), - [sym___c_double_quote] = ACTIONS(1482), - [sym___c_single_quote] = ACTIONS(1484), - [sym___r_double_quote] = ACTIONS(1486), - [sym___r_single_quote] = ACTIONS(1488), + [sym___double_quote] = ACTIONS(1480), + [sym___single_quote] = ACTIONS(1482), + [sym___c_double_quote] = ACTIONS(1484), + [sym___c_single_quote] = ACTIONS(1486), + [sym___r_double_quote] = ACTIONS(1488), + [sym___r_single_quote] = ACTIONS(1490), }, [254] = { [sym_line_comment] = STATE(254), [sym_block_comment] = STATE(254), - [sym__expression] = STATE(2716), - [sym__expression_without_blocks] = STATE(2300), - [sym__expression_with_blocks] = STATE(2300), - [sym_inc_expression] = STATE(2307), - [sym_dec_expression] = STATE(2307), - [sym_or_block_expression] = STATE(2307), - [sym_option_propagation_expression] = STATE(2307), - [sym_result_propagation_expression] = STATE(2307), - [sym_anon_struct_value_expression] = STATE(2380), - [sym_go_expression] = STATE(2307), - [sym_spawn_expression] = STATE(2307), - [sym_parenthesized_expression] = STATE(2307), - [sym_call_expression] = STATE(2307), - [sym_type_initializer] = STATE(2380), - [sym_function_literal] = STATE(2307), - [sym_reference_expression] = STATE(2311), - [sym_type_reference_expression] = STATE(3541), - [sym_unary_expression] = STATE(2307), - [sym_receive_expression] = STATE(2307), - [sym_binary_expression] = STATE(2307), - [sym_as_type_cast_expression] = STATE(2307), - [sym__max_group] = STATE(2307), - [sym_literal] = STATE(2292), - [sym_map_init_expression] = STATE(2380), - [sym_map_keyed_element] = STATE(2001), - [sym_array_creation] = STATE(2307), - [sym_fixed_array_creation] = STATE(2307), - [sym_selector_expression] = STATE(2307), - [sym_index_expression] = STATE(2307), - [sym_slice_expression] = STATE(2307), - [sym_if_expression] = STATE(2380), - [sym_compile_time_if_expression] = STATE(2380), - [sym_is_expression] = STATE(2307), - [sym_in_expression] = STATE(2307), - [sym_enum_fetch] = STATE(2307), - [sym_match_expression] = STATE(2380), - [sym_select_expression] = STATE(2380), - [sym_lock_expression] = STATE(2380), - [sym_unsafe_expression] = STATE(2380), - [sym_sql_expression] = STATE(2380), - [sym_c_string_literal] = STATE(2308), - [sym_raw_string_literal] = STATE(2308), - [sym_interpreted_string_literal] = STATE(2308), - [sym_mutability_modifiers] = STATE(939), - [sym_plain_type] = STATE(4297), - [sym__plain_type_without_special] = STATE(2302), - [sym_anon_struct_type] = STATE(2303), - [sym_multi_return_type] = STATE(2302), - [sym_result_type] = STATE(2302), - [sym_option_type] = STATE(2302), - [sym_qualified_type] = STATE(3541), - [sym_fixed_array_type] = STATE(2303), - [sym_array_type] = STATE(2303), - [sym_pointer_type] = STATE(2303), - [sym_wrong_pointer_type] = STATE(2303), - [sym_map_type] = STATE(2303), - [sym_channel_type] = STATE(2303), - [sym_shared_type] = STATE(2303), - [sym_thread_type] = STATE(2303), - [sym_atomic_type] = STATE(2303), - [sym_generic_type] = STATE(2303), - [sym_function_type] = STATE(2303), - [aux_sym_map_init_expression_repeat1] = STATE(295), - [sym_identifier] = ACTIONS(1426), + [sym__expression] = STATE(2558), + [sym__expression_without_blocks] = STATE(2347), + [sym__expression_with_blocks] = STATE(2347), + [sym_inc_expression] = STATE(2379), + [sym_dec_expression] = STATE(2379), + [sym_or_block_expression] = STATE(2379), + [sym_option_propagation_expression] = STATE(2379), + [sym_result_propagation_expression] = STATE(2379), + [sym_anon_struct_value_expression] = STATE(2378), + [sym_go_expression] = STATE(2379), + [sym_spawn_expression] = STATE(2379), + [sym_parenthesized_expression] = STATE(2379), + [sym_call_expression] = STATE(2379), + [sym_type_initializer] = STATE(2378), + [sym_function_literal] = STATE(2379), + [sym_reference_expression] = STATE(2377), + [sym_type_reference_expression] = STATE(3460), + [sym_unary_expression] = STATE(2379), + [sym_receive_expression] = STATE(2379), + [sym_binary_expression] = STATE(2379), + [sym_as_type_cast_expression] = STATE(2379), + [sym__max_group] = STATE(2379), + [sym_literal] = STATE(2392), + [sym_map_init_expression] = STATE(2378), + [sym_array_creation] = STATE(2379), + [sym_fixed_array_creation] = STATE(2379), + [sym_selector_expression] = STATE(2379), + [sym_index_expression] = STATE(2379), + [sym_slice_expression] = STATE(2379), + [sym_if_expression] = STATE(2378), + [sym_compile_time_if_expression] = STATE(2378), + [sym_is_expression] = STATE(2379), + [sym_in_expression] = STATE(2379), + [sym_enum_fetch] = STATE(2379), + [sym_match_expression] = STATE(2378), + [sym_select_expression] = STATE(2378), + [sym_lock_expression] = STATE(2378), + [sym_unsafe_expression] = STATE(2378), + [sym_sql_expression] = STATE(2378), + [sym_c_string_literal] = STATE(2401), + [sym_raw_string_literal] = STATE(2401), + [sym_interpreted_string_literal] = STATE(2401), + [sym_mutability_modifiers] = STATE(900), + [sym_mutable_expression] = STATE(3813), + [sym_expression_list] = STATE(4145), + [sym_plain_type] = STATE(4160), + [sym__plain_type_without_special] = STATE(2360), + [sym_anon_struct_type] = STATE(2362), + [sym_multi_return_type] = STATE(2360), + [sym_result_type] = STATE(2360), + [sym_option_type] = STATE(2360), + [sym_qualified_type] = STATE(3460), + [sym_fixed_array_type] = STATE(2362), + [sym_array_type] = STATE(2362), + [sym_pointer_type] = STATE(2362), + [sym_wrong_pointer_type] = STATE(2362), + [sym_map_type] = STATE(2362), + [sym_channel_type] = STATE(2362), + [sym_shared_type] = STATE(2362), + [sym_thread_type] = STATE(2362), + [sym_atomic_type] = STATE(2362), + [sym_generic_type] = STATE(2362), + [sym_function_type] = STATE(2362), + [sym_block] = STATE(1095), + [sym_identifier] = ACTIONS(1815), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1428), - [anon_sym_LBRACE] = ACTIONS(1430), - [anon_sym_RBRACE] = ACTIONS(1909), - [anon_sym_LPAREN] = ACTIONS(1432), - [anon_sym_fn] = ACTIONS(1434), - [anon_sym_PLUS] = ACTIONS(1436), - [anon_sym_DASH] = ACTIONS(1436), - [anon_sym_STAR] = ACTIONS(1438), - [anon_sym_struct] = ACTIONS(1440), + [anon_sym_DOT] = ACTIONS(1430), + [anon_sym_LBRACE] = ACTIONS(1907), + [anon_sym_LPAREN] = ACTIONS(1434), + [anon_sym_fn] = ACTIONS(1436), + [anon_sym_PLUS] = ACTIONS(1817), + [anon_sym_DASH] = ACTIONS(1817), + [anon_sym_STAR] = ACTIONS(1819), + [anon_sym_struct] = ACTIONS(1442), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(1442), - [anon_sym_go] = ACTIONS(1444), - [anon_sym_spawn] = ACTIONS(1446), - [anon_sym_json_DOTdecode] = ACTIONS(1448), - [anon_sym_LBRACK2] = ACTIONS(1450), - [anon_sym_TILDE] = ACTIONS(1436), - [anon_sym_CARET] = ACTIONS(1436), - [anon_sym_AMP] = ACTIONS(1452), - [anon_sym_LT_DASH] = ACTIONS(1454), - [sym_none] = ACTIONS(1456), - [sym_true] = ACTIONS(1456), - [sym_false] = ACTIONS(1456), - [sym_nil] = ACTIONS(1456), - [anon_sym_if] = ACTIONS(1827), - [anon_sym_DOLLARif] = ACTIONS(1460), - [anon_sym_match] = ACTIONS(1462), - [anon_sym_select] = ACTIONS(1464), - [anon_sym_lock] = ACTIONS(1466), - [anon_sym_rlock] = ACTIONS(1466), - [anon_sym_unsafe] = ACTIONS(1833), - [anon_sym_sql] = ACTIONS(1470), - [sym_int_literal] = ACTIONS(1456), - [sym_float_literal] = ACTIONS(1472), - [sym_rune_literal] = ACTIONS(1472), - [sym_pseudo_compile_time_identifier] = ACTIONS(1474), + [anon_sym_BANG] = ACTIONS(1821), + [anon_sym_go] = ACTIONS(1823), + [anon_sym_spawn] = ACTIONS(1825), + [anon_sym_json_DOTdecode] = ACTIONS(1450), + [anon_sym_LBRACK2] = ACTIONS(1827), + [anon_sym_TILDE] = ACTIONS(1817), + [anon_sym_CARET] = ACTIONS(1817), + [anon_sym_AMP] = ACTIONS(1829), + [anon_sym_LT_DASH] = ACTIONS(1831), + [sym_none] = ACTIONS(1458), + [sym_true] = ACTIONS(1458), + [sym_false] = ACTIONS(1458), + [sym_nil] = ACTIONS(1458), + [anon_sym_if] = ACTIONS(1833), + [anon_sym_DOLLARif] = ACTIONS(1462), + [anon_sym_match] = ACTIONS(1464), + [anon_sym_select] = ACTIONS(1835), + [anon_sym_lock] = ACTIONS(1837), + [anon_sym_rlock] = ACTIONS(1837), + [anon_sym_unsafe] = ACTIONS(1839), + [anon_sym_sql] = ACTIONS(1472), + [sym_int_literal] = ACTIONS(1458), + [sym_float_literal] = ACTIONS(1474), + [sym_rune_literal] = ACTIONS(1474), + [sym_pseudo_compile_time_identifier] = ACTIONS(1476), [anon_sym_shared] = ACTIONS(83), [anon_sym_map_LBRACK] = ACTIONS(85), [anon_sym_chan] = ACTIONS(87), [anon_sym_thread] = ACTIONS(89), [anon_sym_atomic] = ACTIONS(91), - [sym___double_quote] = ACTIONS(1478), - [sym___single_quote] = ACTIONS(1480), - [sym___c_double_quote] = ACTIONS(1482), - [sym___c_single_quote] = ACTIONS(1484), - [sym___r_double_quote] = ACTIONS(1486), - [sym___r_single_quote] = ACTIONS(1488), + [sym___double_quote] = ACTIONS(1480), + [sym___single_quote] = ACTIONS(1482), + [sym___c_double_quote] = ACTIONS(1484), + [sym___c_single_quote] = ACTIONS(1486), + [sym___r_double_quote] = ACTIONS(1488), + [sym___r_single_quote] = ACTIONS(1490), }, [255] = { [sym_line_comment] = STATE(255), [sym_block_comment] = STATE(255), - [sym__expression] = STATE(2716), - [sym__expression_without_blocks] = STATE(2300), - [sym__expression_with_blocks] = STATE(2300), - [sym_inc_expression] = STATE(2307), - [sym_dec_expression] = STATE(2307), - [sym_or_block_expression] = STATE(2307), - [sym_option_propagation_expression] = STATE(2307), - [sym_result_propagation_expression] = STATE(2307), - [sym_anon_struct_value_expression] = STATE(2380), - [sym_go_expression] = STATE(2307), - [sym_spawn_expression] = STATE(2307), - [sym_parenthesized_expression] = STATE(2307), - [sym_call_expression] = STATE(2307), - [sym_type_initializer] = STATE(2380), - [sym_function_literal] = STATE(2307), - [sym_reference_expression] = STATE(2311), - [sym_type_reference_expression] = STATE(3541), - [sym_unary_expression] = STATE(2307), - [sym_receive_expression] = STATE(2307), - [sym_binary_expression] = STATE(2307), - [sym_as_type_cast_expression] = STATE(2307), - [sym__max_group] = STATE(2307), - [sym_literal] = STATE(2292), - [sym_map_init_expression] = STATE(2380), - [sym_map_keyed_element] = STATE(2001), - [sym_array_creation] = STATE(2307), - [sym_fixed_array_creation] = STATE(2307), - [sym_selector_expression] = STATE(2307), - [sym_index_expression] = STATE(2307), - [sym_slice_expression] = STATE(2307), - [sym_if_expression] = STATE(2380), - [sym_compile_time_if_expression] = STATE(2380), - [sym_is_expression] = STATE(2307), - [sym_in_expression] = STATE(2307), - [sym_enum_fetch] = STATE(2307), - [sym_match_expression] = STATE(2380), - [sym_select_expression] = STATE(2380), - [sym_lock_expression] = STATE(2380), - [sym_unsafe_expression] = STATE(2380), - [sym_sql_expression] = STATE(2380), - [sym_c_string_literal] = STATE(2308), - [sym_raw_string_literal] = STATE(2308), - [sym_interpreted_string_literal] = STATE(2308), + [sym__expression] = STATE(2632), + [sym__expression_without_blocks] = STATE(2347), + [sym__expression_with_blocks] = STATE(2347), + [sym_inc_expression] = STATE(2379), + [sym_dec_expression] = STATE(2379), + [sym_or_block_expression] = STATE(2379), + [sym_option_propagation_expression] = STATE(2379), + [sym_result_propagation_expression] = STATE(2379), + [sym_anon_struct_value_expression] = STATE(2378), + [sym_go_expression] = STATE(2379), + [sym_spawn_expression] = STATE(2379), + [sym_parenthesized_expression] = STATE(2379), + [sym_call_expression] = STATE(2379), + [sym_type_initializer] = STATE(2378), + [sym_function_literal] = STATE(2379), + [sym_reference_expression] = STATE(2377), + [sym_type_reference_expression] = STATE(3460), + [sym_unary_expression] = STATE(2379), + [sym_receive_expression] = STATE(2379), + [sym_binary_expression] = STATE(2379), + [sym_as_type_cast_expression] = STATE(2379), + [sym__max_group] = STATE(2379), + [sym_literal] = STATE(2392), + [sym_map_init_expression] = STATE(2378), + [sym_map_keyed_element] = STATE(2004), + [sym_array_creation] = STATE(2379), + [sym_fixed_array_creation] = STATE(2379), + [sym_selector_expression] = STATE(2379), + [sym_index_expression] = STATE(2379), + [sym_slice_expression] = STATE(2379), + [sym_if_expression] = STATE(2378), + [sym_compile_time_if_expression] = STATE(2378), + [sym_is_expression] = STATE(2379), + [sym_in_expression] = STATE(2379), + [sym_enum_fetch] = STATE(2379), + [sym_match_expression] = STATE(2378), + [sym_select_expression] = STATE(2378), + [sym_lock_expression] = STATE(2378), + [sym_unsafe_expression] = STATE(2378), + [sym_sql_expression] = STATE(2378), + [sym_c_string_literal] = STATE(2401), + [sym_raw_string_literal] = STATE(2401), + [sym_interpreted_string_literal] = STATE(2401), [sym_mutability_modifiers] = STATE(939), - [sym_plain_type] = STATE(4297), - [sym__plain_type_without_special] = STATE(2302), - [sym_anon_struct_type] = STATE(2303), - [sym_multi_return_type] = STATE(2302), - [sym_result_type] = STATE(2302), - [sym_option_type] = STATE(2302), - [sym_qualified_type] = STATE(3541), - [sym_fixed_array_type] = STATE(2303), - [sym_array_type] = STATE(2303), - [sym_pointer_type] = STATE(2303), - [sym_wrong_pointer_type] = STATE(2303), - [sym_map_type] = STATE(2303), - [sym_channel_type] = STATE(2303), - [sym_shared_type] = STATE(2303), - [sym_thread_type] = STATE(2303), - [sym_atomic_type] = STATE(2303), - [sym_generic_type] = STATE(2303), - [sym_function_type] = STATE(2303), - [aux_sym_map_init_expression_repeat1] = STATE(264), - [sym_identifier] = ACTIONS(1426), + [sym_plain_type] = STATE(4160), + [sym__plain_type_without_special] = STATE(2360), + [sym_anon_struct_type] = STATE(2362), + [sym_multi_return_type] = STATE(2360), + [sym_result_type] = STATE(2360), + [sym_option_type] = STATE(2360), + [sym_qualified_type] = STATE(3460), + [sym_fixed_array_type] = STATE(2362), + [sym_array_type] = STATE(2362), + [sym_pointer_type] = STATE(2362), + [sym_wrong_pointer_type] = STATE(2362), + [sym_map_type] = STATE(2362), + [sym_channel_type] = STATE(2362), + [sym_shared_type] = STATE(2362), + [sym_thread_type] = STATE(2362), + [sym_atomic_type] = STATE(2362), + [sym_generic_type] = STATE(2362), + [sym_function_type] = STATE(2362), + [aux_sym_map_init_expression_repeat1] = STATE(258), + [sym_identifier] = ACTIONS(1428), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1428), - [anon_sym_LBRACE] = ACTIONS(1430), - [anon_sym_RBRACE] = ACTIONS(1911), - [anon_sym_LPAREN] = ACTIONS(1432), - [anon_sym_fn] = ACTIONS(1434), - [anon_sym_PLUS] = ACTIONS(1436), - [anon_sym_DASH] = ACTIONS(1436), - [anon_sym_STAR] = ACTIONS(1438), - [anon_sym_struct] = ACTIONS(1440), + [anon_sym_DOT] = ACTIONS(1430), + [anon_sym_LBRACE] = ACTIONS(1432), + [anon_sym_RBRACE] = ACTIONS(1909), + [anon_sym_LPAREN] = ACTIONS(1434), + [anon_sym_fn] = ACTIONS(1436), + [anon_sym_PLUS] = ACTIONS(1438), + [anon_sym_DASH] = ACTIONS(1438), + [anon_sym_STAR] = ACTIONS(1440), + [anon_sym_struct] = ACTIONS(1442), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(1442), - [anon_sym_go] = ACTIONS(1444), - [anon_sym_spawn] = ACTIONS(1446), - [anon_sym_json_DOTdecode] = ACTIONS(1448), - [anon_sym_LBRACK2] = ACTIONS(1450), - [anon_sym_TILDE] = ACTIONS(1436), - [anon_sym_CARET] = ACTIONS(1436), - [anon_sym_AMP] = ACTIONS(1452), - [anon_sym_LT_DASH] = ACTIONS(1454), - [sym_none] = ACTIONS(1456), - [sym_true] = ACTIONS(1456), - [sym_false] = ACTIONS(1456), - [sym_nil] = ACTIONS(1456), - [anon_sym_if] = ACTIONS(1827), - [anon_sym_DOLLARif] = ACTIONS(1460), - [anon_sym_match] = ACTIONS(1462), - [anon_sym_select] = ACTIONS(1464), - [anon_sym_lock] = ACTIONS(1466), - [anon_sym_rlock] = ACTIONS(1466), - [anon_sym_unsafe] = ACTIONS(1833), - [anon_sym_sql] = ACTIONS(1470), - [sym_int_literal] = ACTIONS(1456), - [sym_float_literal] = ACTIONS(1472), - [sym_rune_literal] = ACTIONS(1472), - [sym_pseudo_compile_time_identifier] = ACTIONS(1474), + [anon_sym_BANG] = ACTIONS(1444), + [anon_sym_go] = ACTIONS(1446), + [anon_sym_spawn] = ACTIONS(1448), + [anon_sym_json_DOTdecode] = ACTIONS(1450), + [anon_sym_LBRACK2] = ACTIONS(1452), + [anon_sym_TILDE] = ACTIONS(1438), + [anon_sym_CARET] = ACTIONS(1438), + [anon_sym_AMP] = ACTIONS(1454), + [anon_sym_LT_DASH] = ACTIONS(1456), + [sym_none] = ACTIONS(1458), + [sym_true] = ACTIONS(1458), + [sym_false] = ACTIONS(1458), + [sym_nil] = ACTIONS(1458), + [anon_sym_if] = ACTIONS(1833), + [anon_sym_DOLLARif] = ACTIONS(1462), + [anon_sym_match] = ACTIONS(1464), + [anon_sym_select] = ACTIONS(1466), + [anon_sym_lock] = ACTIONS(1468), + [anon_sym_rlock] = ACTIONS(1468), + [anon_sym_unsafe] = ACTIONS(1839), + [anon_sym_sql] = ACTIONS(1472), + [sym_int_literal] = ACTIONS(1458), + [sym_float_literal] = ACTIONS(1474), + [sym_rune_literal] = ACTIONS(1474), + [sym_pseudo_compile_time_identifier] = ACTIONS(1476), [anon_sym_shared] = ACTIONS(83), [anon_sym_map_LBRACK] = ACTIONS(85), [anon_sym_chan] = ACTIONS(87), [anon_sym_thread] = ACTIONS(89), [anon_sym_atomic] = ACTIONS(91), - [sym___double_quote] = ACTIONS(1478), - [sym___single_quote] = ACTIONS(1480), - [sym___c_double_quote] = ACTIONS(1482), - [sym___c_single_quote] = ACTIONS(1484), - [sym___r_double_quote] = ACTIONS(1486), - [sym___r_single_quote] = ACTIONS(1488), + [sym___double_quote] = ACTIONS(1480), + [sym___single_quote] = ACTIONS(1482), + [sym___c_double_quote] = ACTIONS(1484), + [sym___c_single_quote] = ACTIONS(1486), + [sym___r_double_quote] = ACTIONS(1488), + [sym___r_single_quote] = ACTIONS(1490), }, [256] = { [sym_line_comment] = STATE(256), [sym_block_comment] = STATE(256), - [sym__expression] = STATE(1259), - [sym__expression_without_blocks] = STATE(1312), - [sym__expression_with_blocks] = STATE(1312), - [sym_inc_expression] = STATE(1313), - [sym_dec_expression] = STATE(1313), - [sym_or_block_expression] = STATE(1313), - [sym_option_propagation_expression] = STATE(1313), - [sym_result_propagation_expression] = STATE(1313), - [sym_anon_struct_value_expression] = STATE(1314), - [sym_go_expression] = STATE(1313), - [sym_spawn_expression] = STATE(1313), - [sym_parenthesized_expression] = STATE(1313), - [sym_call_expression] = STATE(1313), - [sym_type_initializer] = STATE(1314), - [sym_function_literal] = STATE(1313), - [sym_reference_expression] = STATE(1334), - [sym_type_reference_expression] = STATE(3541), - [sym_unary_expression] = STATE(1313), - [sym_receive_expression] = STATE(1313), - [sym_binary_expression] = STATE(1313), - [sym_as_type_cast_expression] = STATE(1313), - [sym__max_group] = STATE(1313), - [sym_literal] = STATE(1308), - [sym_map_init_expression] = STATE(1314), - [sym_array_creation] = STATE(1313), - [sym_fixed_array_creation] = STATE(1313), - [sym_selector_expression] = STATE(1313), - [sym_index_expression] = STATE(1313), - [sym_slice_expression] = STATE(1313), - [sym_if_expression] = STATE(1314), - [sym_compile_time_if_expression] = STATE(1314), - [sym_is_expression] = STATE(1313), - [sym_in_expression] = STATE(1313), - [sym_enum_fetch] = STATE(1313), - [sym_match_expression] = STATE(1314), - [sym_select_expression] = STATE(1314), - [sym_lock_expression] = STATE(1314), - [sym_unsafe_expression] = STATE(1314), - [sym_sql_expression] = STATE(1314), - [sym_c_string_literal] = STATE(1286), - [sym_raw_string_literal] = STATE(1286), - [sym_interpreted_string_literal] = STATE(1286), - [sym_mutability_modifiers] = STATE(699), - [sym_plain_type] = STATE(4192), - [sym__plain_type_without_special] = STATE(2302), - [sym_anon_struct_type] = STATE(2303), - [sym_multi_return_type] = STATE(2302), - [sym_result_type] = STATE(2302), - [sym_option_type] = STATE(2302), - [sym_qualified_type] = STATE(3541), - [sym_fixed_array_type] = STATE(2303), - [sym_array_type] = STATE(2303), - [sym_pointer_type] = STATE(2303), - [sym_wrong_pointer_type] = STATE(2303), - [sym_map_type] = STATE(2303), - [sym_channel_type] = STATE(2303), - [sym_shared_type] = STATE(2303), - [sym_thread_type] = STATE(2303), - [sym_atomic_type] = STATE(2303), - [sym_generic_type] = STATE(2303), - [sym_function_type] = STATE(2303), - [sym___rcbr] = STATE(3628), - [aux_sym_string_interpolation_repeat1] = STATE(258), - [sym_identifier] = ACTIONS(1354), + [sym__expression] = STATE(1340), + [sym__expression_without_blocks] = STATE(1318), + [sym__expression_with_blocks] = STATE(1318), + [sym_inc_expression] = STATE(1319), + [sym_dec_expression] = STATE(1319), + [sym_or_block_expression] = STATE(1319), + [sym_option_propagation_expression] = STATE(1319), + [sym_result_propagation_expression] = STATE(1319), + [sym_anon_struct_value_expression] = STATE(1320), + [sym_go_expression] = STATE(1319), + [sym_spawn_expression] = STATE(1319), + [sym_parenthesized_expression] = STATE(1319), + [sym_call_expression] = STATE(1319), + [sym_type_initializer] = STATE(1320), + [sym_function_literal] = STATE(1319), + [sym_reference_expression] = STATE(1298), + [sym_type_reference_expression] = STATE(3460), + [sym_unary_expression] = STATE(1319), + [sym_receive_expression] = STATE(1319), + [sym_binary_expression] = STATE(1319), + [sym_as_type_cast_expression] = STATE(1319), + [sym__max_group] = STATE(1319), + [sym_literal] = STATE(1314), + [sym_map_init_expression] = STATE(1320), + [sym_array_creation] = STATE(1319), + [sym_fixed_array_creation] = STATE(1319), + [sym_selector_expression] = STATE(1319), + [sym_index_expression] = STATE(1319), + [sym_slice_expression] = STATE(1319), + [sym_if_expression] = STATE(1320), + [sym_compile_time_if_expression] = STATE(1320), + [sym_is_expression] = STATE(1319), + [sym_in_expression] = STATE(1319), + [sym_enum_fetch] = STATE(1319), + [sym_match_expression] = STATE(1320), + [sym_select_expression] = STATE(1320), + [sym_lock_expression] = STATE(1320), + [sym_unsafe_expression] = STATE(1320), + [sym_sql_expression] = STATE(1320), + [sym_c_string_literal] = STATE(1291), + [sym_raw_string_literal] = STATE(1291), + [sym_interpreted_string_literal] = STATE(1291), + [sym_mutability_modifiers] = STATE(639), + [sym_plain_type] = STATE(4307), + [sym__plain_type_without_special] = STATE(2360), + [sym_anon_struct_type] = STATE(2362), + [sym_multi_return_type] = STATE(2360), + [sym_result_type] = STATE(2360), + [sym_option_type] = STATE(2360), + [sym_qualified_type] = STATE(3460), + [sym_fixed_array_type] = STATE(2362), + [sym_array_type] = STATE(2362), + [sym_pointer_type] = STATE(2362), + [sym_wrong_pointer_type] = STATE(2362), + [sym_map_type] = STATE(2362), + [sym_channel_type] = STATE(2362), + [sym_shared_type] = STATE(2362), + [sym_thread_type] = STATE(2362), + [sym_atomic_type] = STATE(2362), + [sym_generic_type] = STATE(2362), + [sym_function_type] = STATE(2362), + [sym___rcbr] = STATE(3620), + [aux_sym_string_interpolation_repeat1] = STATE(365), + [sym_identifier] = ACTIONS(1360), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1356), - [anon_sym_LBRACE] = ACTIONS(1358), - [anon_sym_RBRACE] = ACTIONS(1913), - [anon_sym_LPAREN] = ACTIONS(1360), - [anon_sym_fn] = ACTIONS(1362), - [anon_sym_PLUS] = ACTIONS(1863), - [anon_sym_DASH] = ACTIONS(1863), - [anon_sym_STAR] = ACTIONS(1865), - [anon_sym_struct] = ACTIONS(1370), + [anon_sym_DOT] = ACTIONS(1362), + [anon_sym_LBRACE] = ACTIONS(1364), + [anon_sym_RBRACE] = ACTIONS(1849), + [anon_sym_LPAREN] = ACTIONS(1366), + [anon_sym_fn] = ACTIONS(1368), + [anon_sym_PLUS] = ACTIONS(1851), + [anon_sym_DASH] = ACTIONS(1851), + [anon_sym_STAR] = ACTIONS(1853), + [anon_sym_struct] = ACTIONS(1376), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(1867), - [anon_sym_go] = ACTIONS(1869), - [anon_sym_spawn] = ACTIONS(1871), - [anon_sym_json_DOTdecode] = ACTIONS(1378), - [anon_sym_LBRACK2] = ACTIONS(1380), - [anon_sym_TILDE] = ACTIONS(1863), - [anon_sym_CARET] = ACTIONS(1863), - [anon_sym_AMP] = ACTIONS(1873), - [anon_sym_LT_DASH] = ACTIONS(1875), - [sym_none] = ACTIONS(1386), - [sym_true] = ACTIONS(1386), - [sym_false] = ACTIONS(1386), - [sym_nil] = ACTIONS(1386), - [anon_sym_if] = ACTIONS(1877), - [anon_sym_DOLLARif] = ACTIONS(1390), - [anon_sym_match] = ACTIONS(1392), - [anon_sym_select] = ACTIONS(1879), - [anon_sym_lock] = ACTIONS(1881), - [anon_sym_rlock] = ACTIONS(1881), - [anon_sym_unsafe] = ACTIONS(1883), - [anon_sym_sql] = ACTIONS(1400), - [sym_int_literal] = ACTIONS(1386), - [sym_float_literal] = ACTIONS(1404), - [sym_rune_literal] = ACTIONS(1404), - [sym_pseudo_compile_time_identifier] = ACTIONS(1406), + [anon_sym_BANG] = ACTIONS(1855), + [anon_sym_go] = ACTIONS(1857), + [anon_sym_spawn] = ACTIONS(1859), + [anon_sym_json_DOTdecode] = ACTIONS(1384), + [anon_sym_LBRACK2] = ACTIONS(1386), + [anon_sym_TILDE] = ACTIONS(1851), + [anon_sym_CARET] = ACTIONS(1851), + [anon_sym_AMP] = ACTIONS(1861), + [anon_sym_LT_DASH] = ACTIONS(1863), + [sym_none] = ACTIONS(1392), + [sym_true] = ACTIONS(1392), + [sym_false] = ACTIONS(1392), + [sym_nil] = ACTIONS(1392), + [anon_sym_if] = ACTIONS(1865), + [anon_sym_DOLLARif] = ACTIONS(1396), + [anon_sym_match] = ACTIONS(1398), + [anon_sym_select] = ACTIONS(1867), + [anon_sym_lock] = ACTIONS(1869), + [anon_sym_rlock] = ACTIONS(1869), + [anon_sym_unsafe] = ACTIONS(1871), + [anon_sym_sql] = ACTIONS(1406), + [sym_int_literal] = ACTIONS(1392), + [sym_float_literal] = ACTIONS(1410), + [sym_rune_literal] = ACTIONS(1410), + [sym_pseudo_compile_time_identifier] = ACTIONS(1412), [anon_sym_shared] = ACTIONS(83), [anon_sym_map_LBRACK] = ACTIONS(85), [anon_sym_chan] = ACTIONS(87), [anon_sym_thread] = ACTIONS(89), [anon_sym_atomic] = ACTIONS(91), - [sym___double_quote] = ACTIONS(1408), - [sym___single_quote] = ACTIONS(1410), - [sym___c_double_quote] = ACTIONS(1412), - [sym___c_single_quote] = ACTIONS(1414), - [sym___r_double_quote] = ACTIONS(1416), - [sym___r_single_quote] = ACTIONS(1418), + [sym___double_quote] = ACTIONS(1414), + [sym___single_quote] = ACTIONS(1416), + [sym___c_double_quote] = ACTIONS(1418), + [sym___c_single_quote] = ACTIONS(1420), + [sym___r_double_quote] = ACTIONS(1422), + [sym___r_single_quote] = ACTIONS(1424), }, [257] = { [sym_line_comment] = STATE(257), [sym_block_comment] = STATE(257), - [ts_builtin_sym_end] = ACTIONS(1915), - [sym_identifier] = ACTIONS(1917), - [anon_sym_LF] = ACTIONS(1917), - [anon_sym_CR] = ACTIONS(1917), - [anon_sym_CR_LF] = ACTIONS(1917), + [ts_builtin_sym_end] = ACTIONS(1911), + [sym_identifier] = ACTIONS(1913), + [anon_sym_LF] = ACTIONS(1913), + [anon_sym_CR] = ACTIONS(1913), + [anon_sym_CR_LF] = ACTIONS(1913), [anon_sym_SLASH_SLASH] = ACTIONS(497), [anon_sym_SLASH_STAR] = ACTIONS(499), - [anon_sym_DOT] = ACTIONS(1917), - [anon_sym_as] = ACTIONS(1917), - [anon_sym_LBRACE] = ACTIONS(1917), - [anon_sym_COMMA] = ACTIONS(1917), - [anon_sym_const] = ACTIONS(1917), - [anon_sym_LPAREN] = ACTIONS(1917), - [anon_sym_EQ] = ACTIONS(1917), - [anon_sym___global] = ACTIONS(1917), - [anon_sym_type] = ACTIONS(1917), - [anon_sym_PIPE] = ACTIONS(1917), - [anon_sym_fn] = ACTIONS(1917), - [anon_sym_PLUS] = ACTIONS(1917), - [anon_sym_DASH] = ACTIONS(1917), - [anon_sym_STAR] = ACTIONS(1917), - [anon_sym_SLASH] = ACTIONS(1917), - [anon_sym_PERCENT] = ACTIONS(1917), - [anon_sym_LT] = ACTIONS(1917), - [anon_sym_GT] = ACTIONS(1917), - [anon_sym_EQ_EQ] = ACTIONS(1917), - [anon_sym_BANG_EQ] = ACTIONS(1917), - [anon_sym_LT_EQ] = ACTIONS(1917), - [anon_sym_GT_EQ] = ACTIONS(1917), - [anon_sym_LBRACK] = ACTIONS(1915), - [anon_sym_struct] = ACTIONS(1917), - [anon_sym_union] = ACTIONS(1917), - [anon_sym_pub] = ACTIONS(1917), - [anon_sym_mut] = ACTIONS(1917), - [anon_sym_enum] = ACTIONS(1917), - [anon_sym_interface] = ACTIONS(1917), - [anon_sym_PLUS_PLUS] = ACTIONS(1917), - [anon_sym_DASH_DASH] = ACTIONS(1917), - [anon_sym_QMARK] = ACTIONS(1917), - [anon_sym_BANG] = ACTIONS(1917), - [anon_sym_go] = ACTIONS(1917), - [anon_sym_spawn] = ACTIONS(1917), - [anon_sym_json_DOTdecode] = ACTIONS(1917), - [anon_sym_LBRACK2] = ACTIONS(1917), - [anon_sym_TILDE] = ACTIONS(1917), - [anon_sym_CARET] = ACTIONS(1917), - [anon_sym_AMP] = ACTIONS(1917), - [anon_sym_LT_DASH] = ACTIONS(1917), - [anon_sym_LT_LT] = ACTIONS(1917), - [anon_sym_GT_GT] = ACTIONS(1917), - [anon_sym_GT_GT_GT] = ACTIONS(1917), - [anon_sym_AMP_CARET] = ACTIONS(1917), - [anon_sym_AMP_AMP] = ACTIONS(1917), - [anon_sym_PIPE_PIPE] = ACTIONS(1917), - [anon_sym_or] = ACTIONS(1917), - [sym_none] = ACTIONS(1917), - [sym_true] = ACTIONS(1917), - [sym_false] = ACTIONS(1917), - [sym_nil] = ACTIONS(1917), - [anon_sym_QMARK_DOT] = ACTIONS(1917), - [anon_sym_POUND_LBRACK] = ACTIONS(1917), - [anon_sym_if] = ACTIONS(1917), - [anon_sym_else] = ACTIONS(1917), - [anon_sym_DOLLARif] = ACTIONS(1917), - [anon_sym_is] = ACTIONS(1917), - [anon_sym_BANGis] = ACTIONS(1917), - [anon_sym_in] = ACTIONS(1917), - [anon_sym_BANGin] = ACTIONS(1917), - [anon_sym_match] = ACTIONS(1917), - [anon_sym_select] = ACTIONS(1917), - [anon_sym_STAR_EQ] = ACTIONS(1917), - [anon_sym_SLASH_EQ] = ACTIONS(1917), - [anon_sym_PERCENT_EQ] = ACTIONS(1917), - [anon_sym_LT_LT_EQ] = ACTIONS(1917), - [anon_sym_GT_GT_EQ] = ACTIONS(1917), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(1917), - [anon_sym_AMP_EQ] = ACTIONS(1917), - [anon_sym_AMP_CARET_EQ] = ACTIONS(1917), - [anon_sym_PLUS_EQ] = ACTIONS(1917), - [anon_sym_DASH_EQ] = ACTIONS(1917), - [anon_sym_PIPE_EQ] = ACTIONS(1917), - [anon_sym_CARET_EQ] = ACTIONS(1917), - [anon_sym_COLON_EQ] = ACTIONS(1917), - [anon_sym_lock] = ACTIONS(1917), - [anon_sym_rlock] = ACTIONS(1917), - [anon_sym_unsafe] = ACTIONS(1917), - [anon_sym_sql] = ACTIONS(1917), - [sym_int_literal] = ACTIONS(1917), - [sym_float_literal] = ACTIONS(1917), - [sym_rune_literal] = ACTIONS(1917), - [sym_pseudo_compile_time_identifier] = ACTIONS(1917), - [anon_sym_shared] = ACTIONS(1917), - [anon_sym_map_LBRACK] = ACTIONS(1917), - [anon_sym_chan] = ACTIONS(1917), - [anon_sym_thread] = ACTIONS(1917), - [anon_sym_atomic] = ACTIONS(1917), - [anon_sym_assert] = ACTIONS(1917), - [anon_sym_defer] = ACTIONS(1917), - [anon_sym_goto] = ACTIONS(1917), - [anon_sym_break] = ACTIONS(1917), - [anon_sym_continue] = ACTIONS(1917), - [anon_sym_return] = ACTIONS(1917), - [anon_sym_DOLLARfor] = ACTIONS(1917), - [anon_sym_for] = ACTIONS(1917), - [anon_sym_POUND] = ACTIONS(1917), - [anon_sym_asm] = ACTIONS(1917), - [anon_sym_AT_LBRACK] = ACTIONS(1917), - [sym___double_quote] = ACTIONS(1917), - [sym___single_quote] = ACTIONS(1917), - [sym___c_double_quote] = ACTIONS(1917), - [sym___c_single_quote] = ACTIONS(1917), - [sym___r_double_quote] = ACTIONS(1917), - [sym___r_single_quote] = ACTIONS(1917), + [anon_sym_DOT] = ACTIONS(1913), + [anon_sym_as] = ACTIONS(1913), + [anon_sym_LBRACE] = ACTIONS(1913), + [anon_sym_COMMA] = ACTIONS(1913), + [anon_sym_const] = ACTIONS(1913), + [anon_sym_LPAREN] = ACTIONS(1913), + [anon_sym_EQ] = ACTIONS(1913), + [anon_sym___global] = ACTIONS(1913), + [anon_sym_type] = ACTIONS(1913), + [anon_sym_PIPE] = ACTIONS(1913), + [anon_sym_fn] = ACTIONS(1913), + [anon_sym_PLUS] = ACTIONS(1913), + [anon_sym_DASH] = ACTIONS(1913), + [anon_sym_STAR] = ACTIONS(1913), + [anon_sym_SLASH] = ACTIONS(1913), + [anon_sym_PERCENT] = ACTIONS(1913), + [anon_sym_LT] = ACTIONS(1913), + [anon_sym_GT] = ACTIONS(1913), + [anon_sym_EQ_EQ] = ACTIONS(1913), + [anon_sym_BANG_EQ] = ACTIONS(1913), + [anon_sym_LT_EQ] = ACTIONS(1913), + [anon_sym_GT_EQ] = ACTIONS(1913), + [anon_sym_LBRACK] = ACTIONS(1911), + [anon_sym_struct] = ACTIONS(1913), + [anon_sym_union] = ACTIONS(1913), + [anon_sym_pub] = ACTIONS(1913), + [anon_sym_mut] = ACTIONS(1913), + [anon_sym_enum] = ACTIONS(1913), + [anon_sym_interface] = ACTIONS(1913), + [anon_sym_PLUS_PLUS] = ACTIONS(1913), + [anon_sym_DASH_DASH] = ACTIONS(1913), + [anon_sym_QMARK] = ACTIONS(1913), + [anon_sym_BANG] = ACTIONS(1913), + [anon_sym_go] = ACTIONS(1913), + [anon_sym_spawn] = ACTIONS(1913), + [anon_sym_json_DOTdecode] = ACTIONS(1913), + [anon_sym_LBRACK2] = ACTIONS(1913), + [anon_sym_TILDE] = ACTIONS(1913), + [anon_sym_CARET] = ACTIONS(1913), + [anon_sym_AMP] = ACTIONS(1913), + [anon_sym_LT_DASH] = ACTIONS(1913), + [anon_sym_LT_LT] = ACTIONS(1913), + [anon_sym_GT_GT] = ACTIONS(1913), + [anon_sym_GT_GT_GT] = ACTIONS(1913), + [anon_sym_AMP_CARET] = ACTIONS(1913), + [anon_sym_AMP_AMP] = ACTIONS(1913), + [anon_sym_PIPE_PIPE] = ACTIONS(1913), + [anon_sym_or] = ACTIONS(1913), + [sym_none] = ACTIONS(1913), + [sym_true] = ACTIONS(1913), + [sym_false] = ACTIONS(1913), + [sym_nil] = ACTIONS(1913), + [anon_sym_QMARK_DOT] = ACTIONS(1913), + [anon_sym_POUND_LBRACK] = ACTIONS(1913), + [anon_sym_if] = ACTIONS(1913), + [anon_sym_DOLLARif] = ACTIONS(1913), + [anon_sym_DOLLARelse] = ACTIONS(1915), + [anon_sym_is] = ACTIONS(1913), + [anon_sym_BANGis] = ACTIONS(1913), + [anon_sym_in] = ACTIONS(1913), + [anon_sym_BANGin] = ACTIONS(1913), + [anon_sym_match] = ACTIONS(1913), + [anon_sym_select] = ACTIONS(1913), + [anon_sym_STAR_EQ] = ACTIONS(1913), + [anon_sym_SLASH_EQ] = ACTIONS(1913), + [anon_sym_PERCENT_EQ] = ACTIONS(1913), + [anon_sym_LT_LT_EQ] = ACTIONS(1913), + [anon_sym_GT_GT_EQ] = ACTIONS(1913), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(1913), + [anon_sym_AMP_EQ] = ACTIONS(1913), + [anon_sym_AMP_CARET_EQ] = ACTIONS(1913), + [anon_sym_PLUS_EQ] = ACTIONS(1913), + [anon_sym_DASH_EQ] = ACTIONS(1913), + [anon_sym_PIPE_EQ] = ACTIONS(1913), + [anon_sym_CARET_EQ] = ACTIONS(1913), + [anon_sym_COLON_EQ] = ACTIONS(1913), + [anon_sym_lock] = ACTIONS(1913), + [anon_sym_rlock] = ACTIONS(1913), + [anon_sym_unsafe] = ACTIONS(1913), + [anon_sym_sql] = ACTIONS(1913), + [sym_int_literal] = ACTIONS(1913), + [sym_float_literal] = ACTIONS(1913), + [sym_rune_literal] = ACTIONS(1913), + [sym_pseudo_compile_time_identifier] = ACTIONS(1913), + [anon_sym_shared] = ACTIONS(1913), + [anon_sym_map_LBRACK] = ACTIONS(1913), + [anon_sym_chan] = ACTIONS(1913), + [anon_sym_thread] = ACTIONS(1913), + [anon_sym_atomic] = ACTIONS(1913), + [anon_sym_assert] = ACTIONS(1913), + [anon_sym_defer] = ACTIONS(1913), + [anon_sym_goto] = ACTIONS(1913), + [anon_sym_break] = ACTIONS(1913), + [anon_sym_continue] = ACTIONS(1913), + [anon_sym_return] = ACTIONS(1913), + [anon_sym_DOLLARfor] = ACTIONS(1913), + [anon_sym_for] = ACTIONS(1913), + [anon_sym_POUND] = ACTIONS(1913), + [anon_sym_asm] = ACTIONS(1913), + [anon_sym_AT_LBRACK] = ACTIONS(1913), + [sym___double_quote] = ACTIONS(1913), + [sym___single_quote] = ACTIONS(1913), + [sym___c_double_quote] = ACTIONS(1913), + [sym___c_single_quote] = ACTIONS(1913), + [sym___r_double_quote] = ACTIONS(1913), + [sym___r_single_quote] = ACTIONS(1913), }, [258] = { [sym_line_comment] = STATE(258), [sym_block_comment] = STATE(258), - [sym__expression] = STATE(1323), - [sym__expression_without_blocks] = STATE(1312), - [sym__expression_with_blocks] = STATE(1312), - [sym_inc_expression] = STATE(1313), - [sym_dec_expression] = STATE(1313), - [sym_or_block_expression] = STATE(1313), - [sym_option_propagation_expression] = STATE(1313), - [sym_result_propagation_expression] = STATE(1313), - [sym_anon_struct_value_expression] = STATE(1314), - [sym_go_expression] = STATE(1313), - [sym_spawn_expression] = STATE(1313), - [sym_parenthesized_expression] = STATE(1313), - [sym_call_expression] = STATE(1313), - [sym_type_initializer] = STATE(1314), - [sym_function_literal] = STATE(1313), - [sym_reference_expression] = STATE(1334), - [sym_type_reference_expression] = STATE(3541), - [sym_unary_expression] = STATE(1313), - [sym_receive_expression] = STATE(1313), - [sym_binary_expression] = STATE(1313), - [sym_as_type_cast_expression] = STATE(1313), - [sym__max_group] = STATE(1313), - [sym_literal] = STATE(1308), - [sym_map_init_expression] = STATE(1314), - [sym_array_creation] = STATE(1313), - [sym_fixed_array_creation] = STATE(1313), - [sym_selector_expression] = STATE(1313), - [sym_index_expression] = STATE(1313), - [sym_slice_expression] = STATE(1313), - [sym_if_expression] = STATE(1314), - [sym_compile_time_if_expression] = STATE(1314), - [sym_is_expression] = STATE(1313), - [sym_in_expression] = STATE(1313), - [sym_enum_fetch] = STATE(1313), - [sym_match_expression] = STATE(1314), - [sym_select_expression] = STATE(1314), - [sym_lock_expression] = STATE(1314), - [sym_unsafe_expression] = STATE(1314), - [sym_sql_expression] = STATE(1314), - [sym_c_string_literal] = STATE(1286), - [sym_raw_string_literal] = STATE(1286), - [sym_interpreted_string_literal] = STATE(1286), - [sym_mutability_modifiers] = STATE(699), - [sym_plain_type] = STATE(4192), - [sym__plain_type_without_special] = STATE(2302), - [sym_anon_struct_type] = STATE(2303), - [sym_multi_return_type] = STATE(2302), - [sym_result_type] = STATE(2302), - [sym_option_type] = STATE(2302), - [sym_qualified_type] = STATE(3541), - [sym_fixed_array_type] = STATE(2303), - [sym_array_type] = STATE(2303), - [sym_pointer_type] = STATE(2303), - [sym_wrong_pointer_type] = STATE(2303), - [sym_map_type] = STATE(2303), - [sym_channel_type] = STATE(2303), - [sym_shared_type] = STATE(2303), - [sym_thread_type] = STATE(2303), - [sym_atomic_type] = STATE(2303), - [sym_generic_type] = STATE(2303), - [sym_function_type] = STATE(2303), - [sym___rcbr] = STATE(3708), - [aux_sym_string_interpolation_repeat1] = STATE(382), - [sym_identifier] = ACTIONS(1354), + [sym__expression] = STATE(2632), + [sym__expression_without_blocks] = STATE(2347), + [sym__expression_with_blocks] = STATE(2347), + [sym_inc_expression] = STATE(2379), + [sym_dec_expression] = STATE(2379), + [sym_or_block_expression] = STATE(2379), + [sym_option_propagation_expression] = STATE(2379), + [sym_result_propagation_expression] = STATE(2379), + [sym_anon_struct_value_expression] = STATE(2378), + [sym_go_expression] = STATE(2379), + [sym_spawn_expression] = STATE(2379), + [sym_parenthesized_expression] = STATE(2379), + [sym_call_expression] = STATE(2379), + [sym_type_initializer] = STATE(2378), + [sym_function_literal] = STATE(2379), + [sym_reference_expression] = STATE(2377), + [sym_type_reference_expression] = STATE(3460), + [sym_unary_expression] = STATE(2379), + [sym_receive_expression] = STATE(2379), + [sym_binary_expression] = STATE(2379), + [sym_as_type_cast_expression] = STATE(2379), + [sym__max_group] = STATE(2379), + [sym_literal] = STATE(2392), + [sym_map_init_expression] = STATE(2378), + [sym_map_keyed_element] = STATE(2004), + [sym_array_creation] = STATE(2379), + [sym_fixed_array_creation] = STATE(2379), + [sym_selector_expression] = STATE(2379), + [sym_index_expression] = STATE(2379), + [sym_slice_expression] = STATE(2379), + [sym_if_expression] = STATE(2378), + [sym_compile_time_if_expression] = STATE(2378), + [sym_is_expression] = STATE(2379), + [sym_in_expression] = STATE(2379), + [sym_enum_fetch] = STATE(2379), + [sym_match_expression] = STATE(2378), + [sym_select_expression] = STATE(2378), + [sym_lock_expression] = STATE(2378), + [sym_unsafe_expression] = STATE(2378), + [sym_sql_expression] = STATE(2378), + [sym_c_string_literal] = STATE(2401), + [sym_raw_string_literal] = STATE(2401), + [sym_interpreted_string_literal] = STATE(2401), + [sym_mutability_modifiers] = STATE(939), + [sym_plain_type] = STATE(4160), + [sym__plain_type_without_special] = STATE(2360), + [sym_anon_struct_type] = STATE(2362), + [sym_multi_return_type] = STATE(2360), + [sym_result_type] = STATE(2360), + [sym_option_type] = STATE(2360), + [sym_qualified_type] = STATE(3460), + [sym_fixed_array_type] = STATE(2362), + [sym_array_type] = STATE(2362), + [sym_pointer_type] = STATE(2362), + [sym_wrong_pointer_type] = STATE(2362), + [sym_map_type] = STATE(2362), + [sym_channel_type] = STATE(2362), + [sym_shared_type] = STATE(2362), + [sym_thread_type] = STATE(2362), + [sym_atomic_type] = STATE(2362), + [sym_generic_type] = STATE(2362), + [sym_function_type] = STATE(2362), + [aux_sym_map_init_expression_repeat1] = STATE(303), + [sym_identifier] = ACTIONS(1428), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1356), - [anon_sym_LBRACE] = ACTIONS(1358), - [anon_sym_RBRACE] = ACTIONS(1913), - [anon_sym_LPAREN] = ACTIONS(1360), - [anon_sym_fn] = ACTIONS(1362), - [anon_sym_PLUS] = ACTIONS(1863), - [anon_sym_DASH] = ACTIONS(1863), - [anon_sym_STAR] = ACTIONS(1865), - [anon_sym_struct] = ACTIONS(1370), + [anon_sym_DOT] = ACTIONS(1430), + [anon_sym_LBRACE] = ACTIONS(1432), + [anon_sym_RBRACE] = ACTIONS(1917), + [anon_sym_LPAREN] = ACTIONS(1434), + [anon_sym_fn] = ACTIONS(1436), + [anon_sym_PLUS] = ACTIONS(1438), + [anon_sym_DASH] = ACTIONS(1438), + [anon_sym_STAR] = ACTIONS(1440), + [anon_sym_struct] = ACTIONS(1442), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(1867), - [anon_sym_go] = ACTIONS(1869), - [anon_sym_spawn] = ACTIONS(1871), - [anon_sym_json_DOTdecode] = ACTIONS(1378), - [anon_sym_LBRACK2] = ACTIONS(1380), - [anon_sym_TILDE] = ACTIONS(1863), - [anon_sym_CARET] = ACTIONS(1863), - [anon_sym_AMP] = ACTIONS(1873), - [anon_sym_LT_DASH] = ACTIONS(1875), - [sym_none] = ACTIONS(1386), - [sym_true] = ACTIONS(1386), - [sym_false] = ACTIONS(1386), - [sym_nil] = ACTIONS(1386), - [anon_sym_if] = ACTIONS(1877), - [anon_sym_DOLLARif] = ACTIONS(1390), - [anon_sym_match] = ACTIONS(1392), - [anon_sym_select] = ACTIONS(1879), - [anon_sym_lock] = ACTIONS(1881), - [anon_sym_rlock] = ACTIONS(1881), - [anon_sym_unsafe] = ACTIONS(1883), - [anon_sym_sql] = ACTIONS(1400), - [sym_int_literal] = ACTIONS(1386), - [sym_float_literal] = ACTIONS(1404), - [sym_rune_literal] = ACTIONS(1404), - [sym_pseudo_compile_time_identifier] = ACTIONS(1406), + [anon_sym_BANG] = ACTIONS(1444), + [anon_sym_go] = ACTIONS(1446), + [anon_sym_spawn] = ACTIONS(1448), + [anon_sym_json_DOTdecode] = ACTIONS(1450), + [anon_sym_LBRACK2] = ACTIONS(1452), + [anon_sym_TILDE] = ACTIONS(1438), + [anon_sym_CARET] = ACTIONS(1438), + [anon_sym_AMP] = ACTIONS(1454), + [anon_sym_LT_DASH] = ACTIONS(1456), + [sym_none] = ACTIONS(1458), + [sym_true] = ACTIONS(1458), + [sym_false] = ACTIONS(1458), + [sym_nil] = ACTIONS(1458), + [anon_sym_if] = ACTIONS(1833), + [anon_sym_DOLLARif] = ACTIONS(1462), + [anon_sym_match] = ACTIONS(1464), + [anon_sym_select] = ACTIONS(1466), + [anon_sym_lock] = ACTIONS(1468), + [anon_sym_rlock] = ACTIONS(1468), + [anon_sym_unsafe] = ACTIONS(1839), + [anon_sym_sql] = ACTIONS(1472), + [sym_int_literal] = ACTIONS(1458), + [sym_float_literal] = ACTIONS(1474), + [sym_rune_literal] = ACTIONS(1474), + [sym_pseudo_compile_time_identifier] = ACTIONS(1476), [anon_sym_shared] = ACTIONS(83), [anon_sym_map_LBRACK] = ACTIONS(85), [anon_sym_chan] = ACTIONS(87), [anon_sym_thread] = ACTIONS(89), [anon_sym_atomic] = ACTIONS(91), - [sym___double_quote] = ACTIONS(1408), - [sym___single_quote] = ACTIONS(1410), - [sym___c_double_quote] = ACTIONS(1412), - [sym___c_single_quote] = ACTIONS(1414), - [sym___r_double_quote] = ACTIONS(1416), - [sym___r_single_quote] = ACTIONS(1418), + [sym___double_quote] = ACTIONS(1480), + [sym___single_quote] = ACTIONS(1482), + [sym___c_double_quote] = ACTIONS(1484), + [sym___c_single_quote] = ACTIONS(1486), + [sym___r_double_quote] = ACTIONS(1488), + [sym___r_single_quote] = ACTIONS(1490), }, [259] = { [sym_line_comment] = STATE(259), [sym_block_comment] = STATE(259), - [ts_builtin_sym_end] = ACTIONS(1843), - [sym_identifier] = ACTIONS(1845), - [anon_sym_LF] = ACTIONS(1845), - [anon_sym_CR] = ACTIONS(1845), - [anon_sym_CR_LF] = ACTIONS(1845), - [anon_sym_SLASH_SLASH] = ACTIONS(497), - [anon_sym_SLASH_STAR] = ACTIONS(499), - [anon_sym_DOT] = ACTIONS(1845), - [anon_sym_as] = ACTIONS(1845), - [anon_sym_LBRACE] = ACTIONS(1845), - [anon_sym_COMMA] = ACTIONS(1845), - [anon_sym_const] = ACTIONS(1845), - [anon_sym_LPAREN] = ACTIONS(1845), - [anon_sym_EQ] = ACTIONS(1845), - [anon_sym___global] = ACTIONS(1845), - [anon_sym_type] = ACTIONS(1845), - [anon_sym_PIPE] = ACTIONS(1845), - [anon_sym_fn] = ACTIONS(1845), - [anon_sym_PLUS] = ACTIONS(1845), - [anon_sym_DASH] = ACTIONS(1845), - [anon_sym_STAR] = ACTIONS(1845), - [anon_sym_SLASH] = ACTIONS(1845), - [anon_sym_PERCENT] = ACTIONS(1845), - [anon_sym_LT] = ACTIONS(1845), - [anon_sym_GT] = ACTIONS(1845), - [anon_sym_EQ_EQ] = ACTIONS(1845), - [anon_sym_BANG_EQ] = ACTIONS(1845), - [anon_sym_LT_EQ] = ACTIONS(1845), - [anon_sym_GT_EQ] = ACTIONS(1845), - [anon_sym_LBRACK] = ACTIONS(1843), - [anon_sym_struct] = ACTIONS(1845), - [anon_sym_union] = ACTIONS(1845), - [anon_sym_pub] = ACTIONS(1845), - [anon_sym_mut] = ACTIONS(1845), - [anon_sym_enum] = ACTIONS(1845), - [anon_sym_interface] = ACTIONS(1845), - [anon_sym_PLUS_PLUS] = ACTIONS(1845), - [anon_sym_DASH_DASH] = ACTIONS(1845), - [anon_sym_QMARK] = ACTIONS(1845), - [anon_sym_BANG] = ACTIONS(1845), - [anon_sym_go] = ACTIONS(1845), - [anon_sym_spawn] = ACTIONS(1845), - [anon_sym_json_DOTdecode] = ACTIONS(1845), - [anon_sym_LBRACK2] = ACTIONS(1845), - [anon_sym_TILDE] = ACTIONS(1845), - [anon_sym_CARET] = ACTIONS(1845), - [anon_sym_AMP] = ACTIONS(1845), - [anon_sym_LT_DASH] = ACTIONS(1845), - [anon_sym_LT_LT] = ACTIONS(1845), - [anon_sym_GT_GT] = ACTIONS(1845), - [anon_sym_GT_GT_GT] = ACTIONS(1845), - [anon_sym_AMP_CARET] = ACTIONS(1845), - [anon_sym_AMP_AMP] = ACTIONS(1845), - [anon_sym_PIPE_PIPE] = ACTIONS(1845), - [anon_sym_or] = ACTIONS(1845), - [sym_none] = ACTIONS(1845), - [sym_true] = ACTIONS(1845), - [sym_false] = ACTIONS(1845), - [sym_nil] = ACTIONS(1845), - [anon_sym_QMARK_DOT] = ACTIONS(1845), - [anon_sym_POUND_LBRACK] = ACTIONS(1845), - [anon_sym_if] = ACTIONS(1845), - [anon_sym_DOLLARif] = ACTIONS(1845), - [anon_sym_DOLLARelse] = ACTIONS(1845), - [anon_sym_is] = ACTIONS(1845), - [anon_sym_BANGis] = ACTIONS(1845), - [anon_sym_in] = ACTIONS(1845), - [anon_sym_BANGin] = ACTIONS(1845), - [anon_sym_match] = ACTIONS(1845), - [anon_sym_select] = ACTIONS(1845), - [anon_sym_STAR_EQ] = ACTIONS(1845), - [anon_sym_SLASH_EQ] = ACTIONS(1845), - [anon_sym_PERCENT_EQ] = ACTIONS(1845), - [anon_sym_LT_LT_EQ] = ACTIONS(1845), - [anon_sym_GT_GT_EQ] = ACTIONS(1845), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(1845), - [anon_sym_AMP_EQ] = ACTIONS(1845), - [anon_sym_AMP_CARET_EQ] = ACTIONS(1845), - [anon_sym_PLUS_EQ] = ACTIONS(1845), - [anon_sym_DASH_EQ] = ACTIONS(1845), - [anon_sym_PIPE_EQ] = ACTIONS(1845), - [anon_sym_CARET_EQ] = ACTIONS(1845), - [anon_sym_COLON_EQ] = ACTIONS(1845), - [anon_sym_lock] = ACTIONS(1845), - [anon_sym_rlock] = ACTIONS(1845), - [anon_sym_unsafe] = ACTIONS(1845), - [anon_sym_sql] = ACTIONS(1845), - [sym_int_literal] = ACTIONS(1845), - [sym_float_literal] = ACTIONS(1845), - [sym_rune_literal] = ACTIONS(1845), - [sym_pseudo_compile_time_identifier] = ACTIONS(1845), - [anon_sym_shared] = ACTIONS(1845), - [anon_sym_map_LBRACK] = ACTIONS(1845), - [anon_sym_chan] = ACTIONS(1845), - [anon_sym_thread] = ACTIONS(1845), - [anon_sym_atomic] = ACTIONS(1845), - [anon_sym_assert] = ACTIONS(1845), - [anon_sym_defer] = ACTIONS(1845), - [anon_sym_goto] = ACTIONS(1845), - [anon_sym_break] = ACTIONS(1845), - [anon_sym_continue] = ACTIONS(1845), - [anon_sym_return] = ACTIONS(1845), - [anon_sym_DOLLARfor] = ACTIONS(1845), - [anon_sym_for] = ACTIONS(1845), - [anon_sym_POUND] = ACTIONS(1845), - [anon_sym_asm] = ACTIONS(1845), - [anon_sym_AT_LBRACK] = ACTIONS(1845), - [sym___double_quote] = ACTIONS(1845), - [sym___single_quote] = ACTIONS(1845), - [sym___c_double_quote] = ACTIONS(1845), - [sym___c_single_quote] = ACTIONS(1845), - [sym___r_double_quote] = ACTIONS(1845), - [sym___r_single_quote] = ACTIONS(1845), + [sym__expression] = STATE(2632), + [sym__expression_without_blocks] = STATE(2347), + [sym__expression_with_blocks] = STATE(2347), + [sym_inc_expression] = STATE(2379), + [sym_dec_expression] = STATE(2379), + [sym_or_block_expression] = STATE(2379), + [sym_option_propagation_expression] = STATE(2379), + [sym_result_propagation_expression] = STATE(2379), + [sym_anon_struct_value_expression] = STATE(2378), + [sym_go_expression] = STATE(2379), + [sym_spawn_expression] = STATE(2379), + [sym_parenthesized_expression] = STATE(2379), + [sym_call_expression] = STATE(2379), + [sym_type_initializer] = STATE(2378), + [sym_function_literal] = STATE(2379), + [sym_reference_expression] = STATE(2377), + [sym_type_reference_expression] = STATE(3460), + [sym_unary_expression] = STATE(2379), + [sym_receive_expression] = STATE(2379), + [sym_binary_expression] = STATE(2379), + [sym_as_type_cast_expression] = STATE(2379), + [sym__max_group] = STATE(2379), + [sym_literal] = STATE(2392), + [sym_map_init_expression] = STATE(2378), + [sym_map_keyed_element] = STATE(2004), + [sym_array_creation] = STATE(2379), + [sym_fixed_array_creation] = STATE(2379), + [sym_selector_expression] = STATE(2379), + [sym_index_expression] = STATE(2379), + [sym_slice_expression] = STATE(2379), + [sym_if_expression] = STATE(2378), + [sym_compile_time_if_expression] = STATE(2378), + [sym_is_expression] = STATE(2379), + [sym_in_expression] = STATE(2379), + [sym_enum_fetch] = STATE(2379), + [sym_match_expression] = STATE(2378), + [sym_select_expression] = STATE(2378), + [sym_lock_expression] = STATE(2378), + [sym_unsafe_expression] = STATE(2378), + [sym_sql_expression] = STATE(2378), + [sym_c_string_literal] = STATE(2401), + [sym_raw_string_literal] = STATE(2401), + [sym_interpreted_string_literal] = STATE(2401), + [sym_mutability_modifiers] = STATE(939), + [sym_plain_type] = STATE(4160), + [sym__plain_type_without_special] = STATE(2360), + [sym_anon_struct_type] = STATE(2362), + [sym_multi_return_type] = STATE(2360), + [sym_result_type] = STATE(2360), + [sym_option_type] = STATE(2360), + [sym_qualified_type] = STATE(3460), + [sym_fixed_array_type] = STATE(2362), + [sym_array_type] = STATE(2362), + [sym_pointer_type] = STATE(2362), + [sym_wrong_pointer_type] = STATE(2362), + [sym_map_type] = STATE(2362), + [sym_channel_type] = STATE(2362), + [sym_shared_type] = STATE(2362), + [sym_thread_type] = STATE(2362), + [sym_atomic_type] = STATE(2362), + [sym_generic_type] = STATE(2362), + [sym_function_type] = STATE(2362), + [aux_sym_map_init_expression_repeat1] = STATE(303), + [sym_identifier] = ACTIONS(1428), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(1430), + [anon_sym_LBRACE] = ACTIONS(1432), + [anon_sym_RBRACE] = ACTIONS(1919), + [anon_sym_LPAREN] = ACTIONS(1434), + [anon_sym_fn] = ACTIONS(1436), + [anon_sym_PLUS] = ACTIONS(1438), + [anon_sym_DASH] = ACTIONS(1438), + [anon_sym_STAR] = ACTIONS(1440), + [anon_sym_struct] = ACTIONS(1442), + [anon_sym_mut] = ACTIONS(41), + [anon_sym_QMARK] = ACTIONS(47), + [anon_sym_BANG] = ACTIONS(1444), + [anon_sym_go] = ACTIONS(1446), + [anon_sym_spawn] = ACTIONS(1448), + [anon_sym_json_DOTdecode] = ACTIONS(1450), + [anon_sym_LBRACK2] = ACTIONS(1452), + [anon_sym_TILDE] = ACTIONS(1438), + [anon_sym_CARET] = ACTIONS(1438), + [anon_sym_AMP] = ACTIONS(1454), + [anon_sym_LT_DASH] = ACTIONS(1456), + [sym_none] = ACTIONS(1458), + [sym_true] = ACTIONS(1458), + [sym_false] = ACTIONS(1458), + [sym_nil] = ACTIONS(1458), + [anon_sym_if] = ACTIONS(1833), + [anon_sym_DOLLARif] = ACTIONS(1462), + [anon_sym_match] = ACTIONS(1464), + [anon_sym_select] = ACTIONS(1466), + [anon_sym_lock] = ACTIONS(1468), + [anon_sym_rlock] = ACTIONS(1468), + [anon_sym_unsafe] = ACTIONS(1839), + [anon_sym_sql] = ACTIONS(1472), + [sym_int_literal] = ACTIONS(1458), + [sym_float_literal] = ACTIONS(1474), + [sym_rune_literal] = ACTIONS(1474), + [sym_pseudo_compile_time_identifier] = ACTIONS(1476), + [anon_sym_shared] = ACTIONS(83), + [anon_sym_map_LBRACK] = ACTIONS(85), + [anon_sym_chan] = ACTIONS(87), + [anon_sym_thread] = ACTIONS(89), + [anon_sym_atomic] = ACTIONS(91), + [sym___double_quote] = ACTIONS(1480), + [sym___single_quote] = ACTIONS(1482), + [sym___c_double_quote] = ACTIONS(1484), + [sym___c_single_quote] = ACTIONS(1486), + [sym___r_double_quote] = ACTIONS(1488), + [sym___r_single_quote] = ACTIONS(1490), }, [260] = { [sym_line_comment] = STATE(260), [sym_block_comment] = STATE(260), - [sym__expression] = STATE(2290), - [sym__expression_without_blocks] = STATE(2300), - [sym__expression_with_blocks] = STATE(2300), - [sym_inc_expression] = STATE(2307), - [sym_dec_expression] = STATE(2307), - [sym_or_block_expression] = STATE(2307), - [sym_option_propagation_expression] = STATE(2307), - [sym_result_propagation_expression] = STATE(2307), - [sym_anon_struct_value_expression] = STATE(2380), - [sym_go_expression] = STATE(2307), - [sym_spawn_expression] = STATE(2307), - [sym_parenthesized_expression] = STATE(2307), - [sym_call_expression] = STATE(2307), - [sym_type_initializer] = STATE(2380), - [sym_function_literal] = STATE(2307), - [sym_reference_expression] = STATE(2311), - [sym_type_reference_expression] = STATE(3541), - [sym_unary_expression] = STATE(2307), - [sym_receive_expression] = STATE(2307), - [sym_binary_expression] = STATE(2307), - [sym_as_type_cast_expression] = STATE(2307), - [sym__max_group] = STATE(2307), - [sym_literal] = STATE(2292), - [sym_map_init_expression] = STATE(2380), - [sym_array_creation] = STATE(2307), - [sym_fixed_array_creation] = STATE(2307), - [sym_selector_expression] = STATE(2307), - [sym_index_expression] = STATE(2307), - [sym_slice_expression] = STATE(2307), - [sym_if_expression] = STATE(2380), - [sym_compile_time_if_expression] = STATE(2380), - [sym_is_expression] = STATE(2307), - [sym_in_expression] = STATE(2307), - [sym_enum_fetch] = STATE(2307), - [sym_match_expression] = STATE(2380), - [sym_select_expression] = STATE(2380), - [sym_lock_expression] = STATE(2380), - [sym_unsafe_expression] = STATE(2380), - [sym_sql_expression] = STATE(2380), - [sym_c_string_literal] = STATE(2308), - [sym_raw_string_literal] = STATE(2308), - [sym_interpreted_string_literal] = STATE(2308), - [sym_mutability_modifiers] = STATE(765), - [sym_mutable_expression] = STATE(3823), - [sym_expression_list] = STATE(4480), - [sym_plain_type] = STATE(4297), - [sym__plain_type_without_special] = STATE(2302), - [sym_anon_struct_type] = STATE(2303), - [sym_multi_return_type] = STATE(2302), - [sym_result_type] = STATE(2302), - [sym_option_type] = STATE(2302), - [sym_qualified_type] = STATE(3541), - [sym_fixed_array_type] = STATE(2303), - [sym_array_type] = STATE(2303), - [sym_pointer_type] = STATE(2303), - [sym_wrong_pointer_type] = STATE(2303), - [sym_map_type] = STATE(2303), - [sym_channel_type] = STATE(2303), - [sym_shared_type] = STATE(2303), - [sym_thread_type] = STATE(2303), - [sym_atomic_type] = STATE(2303), - [sym_generic_type] = STATE(2303), - [sym_function_type] = STATE(2303), - [sym_var_declaration] = STATE(4174), - [sym_identifier] = ACTIONS(1807), + [sym__expression] = STATE(2632), + [sym__expression_without_blocks] = STATE(2347), + [sym__expression_with_blocks] = STATE(2347), + [sym_inc_expression] = STATE(2379), + [sym_dec_expression] = STATE(2379), + [sym_or_block_expression] = STATE(2379), + [sym_option_propagation_expression] = STATE(2379), + [sym_result_propagation_expression] = STATE(2379), + [sym_anon_struct_value_expression] = STATE(2378), + [sym_go_expression] = STATE(2379), + [sym_spawn_expression] = STATE(2379), + [sym_parenthesized_expression] = STATE(2379), + [sym_call_expression] = STATE(2379), + [sym_type_initializer] = STATE(2378), + [sym_function_literal] = STATE(2379), + [sym_reference_expression] = STATE(2377), + [sym_type_reference_expression] = STATE(3460), + [sym_unary_expression] = STATE(2379), + [sym_receive_expression] = STATE(2379), + [sym_binary_expression] = STATE(2379), + [sym_as_type_cast_expression] = STATE(2379), + [sym__max_group] = STATE(2379), + [sym_literal] = STATE(2392), + [sym_map_init_expression] = STATE(2378), + [sym_map_keyed_element] = STATE(2004), + [sym_array_creation] = STATE(2379), + [sym_fixed_array_creation] = STATE(2379), + [sym_selector_expression] = STATE(2379), + [sym_index_expression] = STATE(2379), + [sym_slice_expression] = STATE(2379), + [sym_if_expression] = STATE(2378), + [sym_compile_time_if_expression] = STATE(2378), + [sym_is_expression] = STATE(2379), + [sym_in_expression] = STATE(2379), + [sym_enum_fetch] = STATE(2379), + [sym_match_expression] = STATE(2378), + [sym_select_expression] = STATE(2378), + [sym_lock_expression] = STATE(2378), + [sym_unsafe_expression] = STATE(2378), + [sym_sql_expression] = STATE(2378), + [sym_c_string_literal] = STATE(2401), + [sym_raw_string_literal] = STATE(2401), + [sym_interpreted_string_literal] = STATE(2401), + [sym_mutability_modifiers] = STATE(939), + [sym_plain_type] = STATE(4160), + [sym__plain_type_without_special] = STATE(2360), + [sym_anon_struct_type] = STATE(2362), + [sym_multi_return_type] = STATE(2360), + [sym_result_type] = STATE(2360), + [sym_option_type] = STATE(2360), + [sym_qualified_type] = STATE(3460), + [sym_fixed_array_type] = STATE(2362), + [sym_array_type] = STATE(2362), + [sym_pointer_type] = STATE(2362), + [sym_wrong_pointer_type] = STATE(2362), + [sym_map_type] = STATE(2362), + [sym_channel_type] = STATE(2362), + [sym_shared_type] = STATE(2362), + [sym_thread_type] = STATE(2362), + [sym_atomic_type] = STATE(2362), + [sym_generic_type] = STATE(2362), + [sym_function_type] = STATE(2362), + [aux_sym_map_init_expression_repeat1] = STATE(271), + [sym_identifier] = ACTIONS(1428), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1428), - [anon_sym_LBRACE] = ACTIONS(1430), - [anon_sym_LPAREN] = ACTIONS(1432), - [anon_sym_fn] = ACTIONS(1434), - [anon_sym_PLUS] = ACTIONS(1811), - [anon_sym_DASH] = ACTIONS(1811), - [anon_sym_STAR] = ACTIONS(1813), - [anon_sym_struct] = ACTIONS(1440), + [anon_sym_DOT] = ACTIONS(1430), + [anon_sym_LBRACE] = ACTIONS(1432), + [anon_sym_RBRACE] = ACTIONS(1921), + [anon_sym_LPAREN] = ACTIONS(1434), + [anon_sym_fn] = ACTIONS(1436), + [anon_sym_PLUS] = ACTIONS(1438), + [anon_sym_DASH] = ACTIONS(1438), + [anon_sym_STAR] = ACTIONS(1440), + [anon_sym_struct] = ACTIONS(1442), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(1815), - [anon_sym_go] = ACTIONS(1817), - [anon_sym_spawn] = ACTIONS(1819), - [anon_sym_json_DOTdecode] = ACTIONS(1448), - [anon_sym_LBRACK2] = ACTIONS(1821), - [anon_sym_TILDE] = ACTIONS(1811), - [anon_sym_CARET] = ACTIONS(1811), - [anon_sym_AMP] = ACTIONS(1823), - [anon_sym_LT_DASH] = ACTIONS(1825), - [sym_none] = ACTIONS(1456), - [sym_true] = ACTIONS(1456), - [sym_false] = ACTIONS(1456), - [sym_nil] = ACTIONS(1456), - [anon_sym_if] = ACTIONS(1827), - [anon_sym_DOLLARif] = ACTIONS(1460), - [anon_sym_match] = ACTIONS(1462), - [anon_sym_select] = ACTIONS(1829), - [anon_sym_lock] = ACTIONS(1831), - [anon_sym_rlock] = ACTIONS(1831), - [anon_sym_unsafe] = ACTIONS(1833), - [anon_sym_sql] = ACTIONS(1470), - [sym_int_literal] = ACTIONS(1456), - [sym_float_literal] = ACTIONS(1472), - [sym_rune_literal] = ACTIONS(1472), - [sym_pseudo_compile_time_identifier] = ACTIONS(1474), + [anon_sym_BANG] = ACTIONS(1444), + [anon_sym_go] = ACTIONS(1446), + [anon_sym_spawn] = ACTIONS(1448), + [anon_sym_json_DOTdecode] = ACTIONS(1450), + [anon_sym_LBRACK2] = ACTIONS(1452), + [anon_sym_TILDE] = ACTIONS(1438), + [anon_sym_CARET] = ACTIONS(1438), + [anon_sym_AMP] = ACTIONS(1454), + [anon_sym_LT_DASH] = ACTIONS(1456), + [sym_none] = ACTIONS(1458), + [sym_true] = ACTIONS(1458), + [sym_false] = ACTIONS(1458), + [sym_nil] = ACTIONS(1458), + [anon_sym_if] = ACTIONS(1833), + [anon_sym_DOLLARif] = ACTIONS(1462), + [anon_sym_match] = ACTIONS(1464), + [anon_sym_select] = ACTIONS(1466), + [anon_sym_lock] = ACTIONS(1468), + [anon_sym_rlock] = ACTIONS(1468), + [anon_sym_unsafe] = ACTIONS(1839), + [anon_sym_sql] = ACTIONS(1472), + [sym_int_literal] = ACTIONS(1458), + [sym_float_literal] = ACTIONS(1474), + [sym_rune_literal] = ACTIONS(1474), + [sym_pseudo_compile_time_identifier] = ACTIONS(1476), [anon_sym_shared] = ACTIONS(83), [anon_sym_map_LBRACK] = ACTIONS(85), [anon_sym_chan] = ACTIONS(87), [anon_sym_thread] = ACTIONS(89), [anon_sym_atomic] = ACTIONS(91), - [sym___double_quote] = ACTIONS(1478), - [sym___single_quote] = ACTIONS(1480), - [sym___c_double_quote] = ACTIONS(1482), - [sym___c_single_quote] = ACTIONS(1484), - [sym___r_double_quote] = ACTIONS(1486), - [sym___r_single_quote] = ACTIONS(1488), + [sym___double_quote] = ACTIONS(1480), + [sym___single_quote] = ACTIONS(1482), + [sym___c_double_quote] = ACTIONS(1484), + [sym___c_single_quote] = ACTIONS(1486), + [sym___r_double_quote] = ACTIONS(1488), + [sym___r_single_quote] = ACTIONS(1490), }, [261] = { [sym_line_comment] = STATE(261), [sym_block_comment] = STATE(261), - [ts_builtin_sym_end] = ACTIONS(1919), - [sym_identifier] = ACTIONS(1921), - [anon_sym_LF] = ACTIONS(1921), - [anon_sym_CR] = ACTIONS(1921), - [anon_sym_CR_LF] = ACTIONS(1921), - [anon_sym_SLASH_SLASH] = ACTIONS(497), - [anon_sym_SLASH_STAR] = ACTIONS(499), - [anon_sym_DOT] = ACTIONS(1921), - [anon_sym_as] = ACTIONS(1921), - [anon_sym_LBRACE] = ACTIONS(1921), - [anon_sym_COMMA] = ACTIONS(1921), - [anon_sym_const] = ACTIONS(1921), - [anon_sym_LPAREN] = ACTIONS(1921), - [anon_sym_EQ] = ACTIONS(1921), - [anon_sym___global] = ACTIONS(1921), - [anon_sym_type] = ACTIONS(1921), - [anon_sym_PIPE] = ACTIONS(1921), - [anon_sym_fn] = ACTIONS(1921), - [anon_sym_PLUS] = ACTIONS(1921), - [anon_sym_DASH] = ACTIONS(1921), - [anon_sym_STAR] = ACTIONS(1921), - [anon_sym_SLASH] = ACTIONS(1921), - [anon_sym_PERCENT] = ACTIONS(1921), - [anon_sym_LT] = ACTIONS(1921), - [anon_sym_GT] = ACTIONS(1921), - [anon_sym_EQ_EQ] = ACTIONS(1921), - [anon_sym_BANG_EQ] = ACTIONS(1921), - [anon_sym_LT_EQ] = ACTIONS(1921), - [anon_sym_GT_EQ] = ACTIONS(1921), - [anon_sym_LBRACK] = ACTIONS(1919), - [anon_sym_struct] = ACTIONS(1921), - [anon_sym_union] = ACTIONS(1921), - [anon_sym_pub] = ACTIONS(1921), - [anon_sym_mut] = ACTIONS(1921), - [anon_sym_enum] = ACTIONS(1921), - [anon_sym_interface] = ACTIONS(1921), - [anon_sym_PLUS_PLUS] = ACTIONS(1921), - [anon_sym_DASH_DASH] = ACTIONS(1921), - [anon_sym_QMARK] = ACTIONS(1921), - [anon_sym_BANG] = ACTIONS(1921), - [anon_sym_go] = ACTIONS(1921), - [anon_sym_spawn] = ACTIONS(1921), - [anon_sym_json_DOTdecode] = ACTIONS(1921), - [anon_sym_LBRACK2] = ACTIONS(1921), - [anon_sym_TILDE] = ACTIONS(1921), - [anon_sym_CARET] = ACTIONS(1921), - [anon_sym_AMP] = ACTIONS(1921), - [anon_sym_LT_DASH] = ACTIONS(1921), - [anon_sym_LT_LT] = ACTIONS(1921), - [anon_sym_GT_GT] = ACTIONS(1921), - [anon_sym_GT_GT_GT] = ACTIONS(1921), - [anon_sym_AMP_CARET] = ACTIONS(1921), - [anon_sym_AMP_AMP] = ACTIONS(1921), - [anon_sym_PIPE_PIPE] = ACTIONS(1921), - [anon_sym_or] = ACTIONS(1921), - [sym_none] = ACTIONS(1921), - [sym_true] = ACTIONS(1921), - [sym_false] = ACTIONS(1921), - [sym_nil] = ACTIONS(1921), - [anon_sym_QMARK_DOT] = ACTIONS(1921), - [anon_sym_POUND_LBRACK] = ACTIONS(1921), - [anon_sym_if] = ACTIONS(1921), - [anon_sym_DOLLARif] = ACTIONS(1921), - [anon_sym_DOLLARelse] = ACTIONS(1923), - [anon_sym_is] = ACTIONS(1921), - [anon_sym_BANGis] = ACTIONS(1921), - [anon_sym_in] = ACTIONS(1921), - [anon_sym_BANGin] = ACTIONS(1921), - [anon_sym_match] = ACTIONS(1921), - [anon_sym_select] = ACTIONS(1921), - [anon_sym_STAR_EQ] = ACTIONS(1921), - [anon_sym_SLASH_EQ] = ACTIONS(1921), - [anon_sym_PERCENT_EQ] = ACTIONS(1921), - [anon_sym_LT_LT_EQ] = ACTIONS(1921), - [anon_sym_GT_GT_EQ] = ACTIONS(1921), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(1921), - [anon_sym_AMP_EQ] = ACTIONS(1921), - [anon_sym_AMP_CARET_EQ] = ACTIONS(1921), - [anon_sym_PLUS_EQ] = ACTIONS(1921), - [anon_sym_DASH_EQ] = ACTIONS(1921), - [anon_sym_PIPE_EQ] = ACTIONS(1921), - [anon_sym_CARET_EQ] = ACTIONS(1921), - [anon_sym_COLON_EQ] = ACTIONS(1921), - [anon_sym_lock] = ACTIONS(1921), - [anon_sym_rlock] = ACTIONS(1921), - [anon_sym_unsafe] = ACTIONS(1921), - [anon_sym_sql] = ACTIONS(1921), - [sym_int_literal] = ACTIONS(1921), - [sym_float_literal] = ACTIONS(1921), - [sym_rune_literal] = ACTIONS(1921), - [sym_pseudo_compile_time_identifier] = ACTIONS(1921), - [anon_sym_shared] = ACTIONS(1921), - [anon_sym_map_LBRACK] = ACTIONS(1921), - [anon_sym_chan] = ACTIONS(1921), - [anon_sym_thread] = ACTIONS(1921), - [anon_sym_atomic] = ACTIONS(1921), - [anon_sym_assert] = ACTIONS(1921), - [anon_sym_defer] = ACTIONS(1921), - [anon_sym_goto] = ACTIONS(1921), - [anon_sym_break] = ACTIONS(1921), - [anon_sym_continue] = ACTIONS(1921), - [anon_sym_return] = ACTIONS(1921), - [anon_sym_DOLLARfor] = ACTIONS(1921), - [anon_sym_for] = ACTIONS(1921), - [anon_sym_POUND] = ACTIONS(1921), - [anon_sym_asm] = ACTIONS(1921), - [anon_sym_AT_LBRACK] = ACTIONS(1921), - [sym___double_quote] = ACTIONS(1921), - [sym___single_quote] = ACTIONS(1921), - [sym___c_double_quote] = ACTIONS(1921), - [sym___c_single_quote] = ACTIONS(1921), - [sym___r_double_quote] = ACTIONS(1921), - [sym___r_single_quote] = ACTIONS(1921), + [sym__expression] = STATE(2558), + [sym__expression_without_blocks] = STATE(2347), + [sym__expression_with_blocks] = STATE(2347), + [sym_inc_expression] = STATE(2379), + [sym_dec_expression] = STATE(2379), + [sym_or_block_expression] = STATE(2379), + [sym_option_propagation_expression] = STATE(2379), + [sym_result_propagation_expression] = STATE(2379), + [sym_anon_struct_value_expression] = STATE(2378), + [sym_go_expression] = STATE(2379), + [sym_spawn_expression] = STATE(2379), + [sym_parenthesized_expression] = STATE(2379), + [sym_call_expression] = STATE(2379), + [sym_type_initializer] = STATE(2378), + [sym_function_literal] = STATE(2379), + [sym_reference_expression] = STATE(2377), + [sym_type_reference_expression] = STATE(3460), + [sym_unary_expression] = STATE(2379), + [sym_receive_expression] = STATE(2379), + [sym_binary_expression] = STATE(2379), + [sym_as_type_cast_expression] = STATE(2379), + [sym__max_group] = STATE(2379), + [sym_literal] = STATE(2392), + [sym_map_init_expression] = STATE(2378), + [sym_array_creation] = STATE(2379), + [sym_fixed_array_creation] = STATE(2379), + [sym_selector_expression] = STATE(2379), + [sym_index_expression] = STATE(2379), + [sym_slice_expression] = STATE(2379), + [sym_if_expression] = STATE(2378), + [sym_compile_time_if_expression] = STATE(2378), + [sym_is_expression] = STATE(2379), + [sym_in_expression] = STATE(2379), + [sym_enum_fetch] = STATE(2379), + [sym_match_expression] = STATE(2378), + [sym_select_expression] = STATE(2378), + [sym_lock_expression] = STATE(2378), + [sym_unsafe_expression] = STATE(2378), + [sym_sql_expression] = STATE(2378), + [sym_c_string_literal] = STATE(2401), + [sym_raw_string_literal] = STATE(2401), + [sym_interpreted_string_literal] = STATE(2401), + [sym_mutability_modifiers] = STATE(900), + [sym_mutable_expression] = STATE(3813), + [sym_expression_list] = STATE(4287), + [sym_plain_type] = STATE(4160), + [sym__plain_type_without_special] = STATE(2360), + [sym_anon_struct_type] = STATE(2362), + [sym_multi_return_type] = STATE(2360), + [sym_result_type] = STATE(2360), + [sym_option_type] = STATE(2360), + [sym_qualified_type] = STATE(3460), + [sym_fixed_array_type] = STATE(2362), + [sym_array_type] = STATE(2362), + [sym_pointer_type] = STATE(2362), + [sym_wrong_pointer_type] = STATE(2362), + [sym_map_type] = STATE(2362), + [sym_channel_type] = STATE(2362), + [sym_shared_type] = STATE(2362), + [sym_thread_type] = STATE(2362), + [sym_atomic_type] = STATE(2362), + [sym_generic_type] = STATE(2362), + [sym_function_type] = STATE(2362), + [sym_block] = STATE(2856), + [sym_identifier] = ACTIONS(1815), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(1430), + [anon_sym_LBRACE] = ACTIONS(1923), + [anon_sym_LPAREN] = ACTIONS(1434), + [anon_sym_fn] = ACTIONS(1436), + [anon_sym_PLUS] = ACTIONS(1817), + [anon_sym_DASH] = ACTIONS(1817), + [anon_sym_STAR] = ACTIONS(1819), + [anon_sym_struct] = ACTIONS(1442), + [anon_sym_mut] = ACTIONS(41), + [anon_sym_QMARK] = ACTIONS(47), + [anon_sym_BANG] = ACTIONS(1821), + [anon_sym_go] = ACTIONS(1823), + [anon_sym_spawn] = ACTIONS(1825), + [anon_sym_json_DOTdecode] = ACTIONS(1450), + [anon_sym_LBRACK2] = ACTIONS(1827), + [anon_sym_TILDE] = ACTIONS(1817), + [anon_sym_CARET] = ACTIONS(1817), + [anon_sym_AMP] = ACTIONS(1829), + [anon_sym_LT_DASH] = ACTIONS(1831), + [sym_none] = ACTIONS(1458), + [sym_true] = ACTIONS(1458), + [sym_false] = ACTIONS(1458), + [sym_nil] = ACTIONS(1458), + [anon_sym_if] = ACTIONS(1833), + [anon_sym_DOLLARif] = ACTIONS(1462), + [anon_sym_match] = ACTIONS(1464), + [anon_sym_select] = ACTIONS(1835), + [anon_sym_lock] = ACTIONS(1837), + [anon_sym_rlock] = ACTIONS(1837), + [anon_sym_unsafe] = ACTIONS(1839), + [anon_sym_sql] = ACTIONS(1472), + [sym_int_literal] = ACTIONS(1458), + [sym_float_literal] = ACTIONS(1474), + [sym_rune_literal] = ACTIONS(1474), + [sym_pseudo_compile_time_identifier] = ACTIONS(1476), + [anon_sym_shared] = ACTIONS(83), + [anon_sym_map_LBRACK] = ACTIONS(85), + [anon_sym_chan] = ACTIONS(87), + [anon_sym_thread] = ACTIONS(89), + [anon_sym_atomic] = ACTIONS(91), + [sym___double_quote] = ACTIONS(1480), + [sym___single_quote] = ACTIONS(1482), + [sym___c_double_quote] = ACTIONS(1484), + [sym___c_single_quote] = ACTIONS(1486), + [sym___r_double_quote] = ACTIONS(1488), + [sym___r_single_quote] = ACTIONS(1490), }, [262] = { [sym_line_comment] = STATE(262), [sym_block_comment] = STATE(262), - [sym__expression] = STATE(2716), - [sym__expression_without_blocks] = STATE(2300), - [sym__expression_with_blocks] = STATE(2300), - [sym_inc_expression] = STATE(2307), - [sym_dec_expression] = STATE(2307), - [sym_or_block_expression] = STATE(2307), - [sym_option_propagation_expression] = STATE(2307), - [sym_result_propagation_expression] = STATE(2307), - [sym_anon_struct_value_expression] = STATE(2380), - [sym_go_expression] = STATE(2307), - [sym_spawn_expression] = STATE(2307), - [sym_parenthesized_expression] = STATE(2307), - [sym_call_expression] = STATE(2307), - [sym_type_initializer] = STATE(2380), - [sym_function_literal] = STATE(2307), - [sym_reference_expression] = STATE(2311), - [sym_type_reference_expression] = STATE(3541), - [sym_unary_expression] = STATE(2307), - [sym_receive_expression] = STATE(2307), - [sym_binary_expression] = STATE(2307), - [sym_as_type_cast_expression] = STATE(2307), - [sym__max_group] = STATE(2307), - [sym_literal] = STATE(2292), - [sym_map_init_expression] = STATE(2380), - [sym_map_keyed_element] = STATE(2001), - [sym_array_creation] = STATE(2307), - [sym_fixed_array_creation] = STATE(2307), - [sym_selector_expression] = STATE(2307), - [sym_index_expression] = STATE(2307), - [sym_slice_expression] = STATE(2307), - [sym_if_expression] = STATE(2380), - [sym_compile_time_if_expression] = STATE(2380), - [sym_is_expression] = STATE(2307), - [sym_in_expression] = STATE(2307), - [sym_enum_fetch] = STATE(2307), - [sym_match_expression] = STATE(2380), - [sym_select_expression] = STATE(2380), - [sym_lock_expression] = STATE(2380), - [sym_unsafe_expression] = STATE(2380), - [sym_sql_expression] = STATE(2380), - [sym_c_string_literal] = STATE(2308), - [sym_raw_string_literal] = STATE(2308), - [sym_interpreted_string_literal] = STATE(2308), - [sym_mutability_modifiers] = STATE(939), - [sym_plain_type] = STATE(4297), - [sym__plain_type_without_special] = STATE(2302), - [sym_anon_struct_type] = STATE(2303), - [sym_multi_return_type] = STATE(2302), - [sym_result_type] = STATE(2302), - [sym_option_type] = STATE(2302), - [sym_qualified_type] = STATE(3541), - [sym_fixed_array_type] = STATE(2303), - [sym_array_type] = STATE(2303), - [sym_pointer_type] = STATE(2303), - [sym_wrong_pointer_type] = STATE(2303), - [sym_map_type] = STATE(2303), - [sym_channel_type] = STATE(2303), - [sym_shared_type] = STATE(2303), - [sym_thread_type] = STATE(2303), - [sym_atomic_type] = STATE(2303), - [sym_generic_type] = STATE(2303), - [sym_function_type] = STATE(2303), - [aux_sym_map_init_expression_repeat1] = STATE(295), - [sym_identifier] = ACTIONS(1426), + [sym__expression] = STATE(2558), + [sym__expression_without_blocks] = STATE(2347), + [sym__expression_with_blocks] = STATE(2347), + [sym_inc_expression] = STATE(2379), + [sym_dec_expression] = STATE(2379), + [sym_or_block_expression] = STATE(2379), + [sym_option_propagation_expression] = STATE(2379), + [sym_result_propagation_expression] = STATE(2379), + [sym_anon_struct_value_expression] = STATE(2378), + [sym_go_expression] = STATE(2379), + [sym_spawn_expression] = STATE(2379), + [sym_parenthesized_expression] = STATE(2379), + [sym_call_expression] = STATE(2379), + [sym_type_initializer] = STATE(2378), + [sym_function_literal] = STATE(2379), + [sym_reference_expression] = STATE(2377), + [sym_type_reference_expression] = STATE(3460), + [sym_unary_expression] = STATE(2379), + [sym_receive_expression] = STATE(2379), + [sym_binary_expression] = STATE(2379), + [sym_as_type_cast_expression] = STATE(2379), + [sym__max_group] = STATE(2379), + [sym_literal] = STATE(2392), + [sym_map_init_expression] = STATE(2378), + [sym_array_creation] = STATE(2379), + [sym_fixed_array_creation] = STATE(2379), + [sym_selector_expression] = STATE(2379), + [sym_index_expression] = STATE(2379), + [sym_slice_expression] = STATE(2379), + [sym_if_expression] = STATE(2378), + [sym_compile_time_if_expression] = STATE(2378), + [sym_is_expression] = STATE(2379), + [sym_in_expression] = STATE(2379), + [sym_enum_fetch] = STATE(2379), + [sym_match_expression] = STATE(2378), + [sym_select_expression] = STATE(2378), + [sym_lock_expression] = STATE(2378), + [sym_unsafe_expression] = STATE(2378), + [sym_sql_expression] = STATE(2378), + [sym_c_string_literal] = STATE(2401), + [sym_raw_string_literal] = STATE(2401), + [sym_interpreted_string_literal] = STATE(2401), + [sym_mutability_modifiers] = STATE(900), + [sym_mutable_expression] = STATE(3813), + [sym_expression_list] = STATE(4225), + [sym_plain_type] = STATE(4160), + [sym__plain_type_without_special] = STATE(2360), + [sym_anon_struct_type] = STATE(2362), + [sym_multi_return_type] = STATE(2360), + [sym_result_type] = STATE(2360), + [sym_option_type] = STATE(2360), + [sym_qualified_type] = STATE(3460), + [sym_fixed_array_type] = STATE(2362), + [sym_array_type] = STATE(2362), + [sym_pointer_type] = STATE(2362), + [sym_wrong_pointer_type] = STATE(2362), + [sym_map_type] = STATE(2362), + [sym_channel_type] = STATE(2362), + [sym_shared_type] = STATE(2362), + [sym_thread_type] = STATE(2362), + [sym_atomic_type] = STATE(2362), + [sym_generic_type] = STATE(2362), + [sym_function_type] = STATE(2362), + [sym_block] = STATE(2008), + [sym_identifier] = ACTIONS(1815), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1428), - [anon_sym_LBRACE] = ACTIONS(1430), - [anon_sym_RBRACE] = ACTIONS(1925), - [anon_sym_LPAREN] = ACTIONS(1432), - [anon_sym_fn] = ACTIONS(1434), - [anon_sym_PLUS] = ACTIONS(1436), - [anon_sym_DASH] = ACTIONS(1436), - [anon_sym_STAR] = ACTIONS(1438), - [anon_sym_struct] = ACTIONS(1440), + [anon_sym_DOT] = ACTIONS(1430), + [anon_sym_LBRACE] = ACTIONS(1925), + [anon_sym_LPAREN] = ACTIONS(1434), + [anon_sym_fn] = ACTIONS(1436), + [anon_sym_PLUS] = ACTIONS(1817), + [anon_sym_DASH] = ACTIONS(1817), + [anon_sym_STAR] = ACTIONS(1819), + [anon_sym_struct] = ACTIONS(1442), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(1442), - [anon_sym_go] = ACTIONS(1444), - [anon_sym_spawn] = ACTIONS(1446), - [anon_sym_json_DOTdecode] = ACTIONS(1448), - [anon_sym_LBRACK2] = ACTIONS(1450), - [anon_sym_TILDE] = ACTIONS(1436), - [anon_sym_CARET] = ACTIONS(1436), - [anon_sym_AMP] = ACTIONS(1452), - [anon_sym_LT_DASH] = ACTIONS(1454), - [sym_none] = ACTIONS(1456), - [sym_true] = ACTIONS(1456), - [sym_false] = ACTIONS(1456), - [sym_nil] = ACTIONS(1456), - [anon_sym_if] = ACTIONS(1827), - [anon_sym_DOLLARif] = ACTIONS(1460), - [anon_sym_match] = ACTIONS(1462), - [anon_sym_select] = ACTIONS(1464), - [anon_sym_lock] = ACTIONS(1466), - [anon_sym_rlock] = ACTIONS(1466), - [anon_sym_unsafe] = ACTIONS(1833), - [anon_sym_sql] = ACTIONS(1470), - [sym_int_literal] = ACTIONS(1456), - [sym_float_literal] = ACTIONS(1472), - [sym_rune_literal] = ACTIONS(1472), - [sym_pseudo_compile_time_identifier] = ACTIONS(1474), + [anon_sym_BANG] = ACTIONS(1821), + [anon_sym_go] = ACTIONS(1823), + [anon_sym_spawn] = ACTIONS(1825), + [anon_sym_json_DOTdecode] = ACTIONS(1450), + [anon_sym_LBRACK2] = ACTIONS(1827), + [anon_sym_TILDE] = ACTIONS(1817), + [anon_sym_CARET] = ACTIONS(1817), + [anon_sym_AMP] = ACTIONS(1829), + [anon_sym_LT_DASH] = ACTIONS(1831), + [sym_none] = ACTIONS(1458), + [sym_true] = ACTIONS(1458), + [sym_false] = ACTIONS(1458), + [sym_nil] = ACTIONS(1458), + [anon_sym_if] = ACTIONS(1833), + [anon_sym_DOLLARif] = ACTIONS(1462), + [anon_sym_match] = ACTIONS(1464), + [anon_sym_select] = ACTIONS(1835), + [anon_sym_lock] = ACTIONS(1837), + [anon_sym_rlock] = ACTIONS(1837), + [anon_sym_unsafe] = ACTIONS(1839), + [anon_sym_sql] = ACTIONS(1472), + [sym_int_literal] = ACTIONS(1458), + [sym_float_literal] = ACTIONS(1474), + [sym_rune_literal] = ACTIONS(1474), + [sym_pseudo_compile_time_identifier] = ACTIONS(1476), [anon_sym_shared] = ACTIONS(83), [anon_sym_map_LBRACK] = ACTIONS(85), [anon_sym_chan] = ACTIONS(87), [anon_sym_thread] = ACTIONS(89), [anon_sym_atomic] = ACTIONS(91), - [sym___double_quote] = ACTIONS(1478), - [sym___single_quote] = ACTIONS(1480), - [sym___c_double_quote] = ACTIONS(1482), - [sym___c_single_quote] = ACTIONS(1484), - [sym___r_double_quote] = ACTIONS(1486), - [sym___r_single_quote] = ACTIONS(1488), + [sym___double_quote] = ACTIONS(1480), + [sym___single_quote] = ACTIONS(1482), + [sym___c_double_quote] = ACTIONS(1484), + [sym___c_single_quote] = ACTIONS(1486), + [sym___r_double_quote] = ACTIONS(1488), + [sym___r_single_quote] = ACTIONS(1490), }, [263] = { [sym_line_comment] = STATE(263), [sym_block_comment] = STATE(263), - [sym__expression] = STATE(2373), - [sym__expression_without_blocks] = STATE(2300), - [sym__expression_with_blocks] = STATE(2300), - [sym_inc_expression] = STATE(2307), - [sym_dec_expression] = STATE(2307), - [sym_or_block_expression] = STATE(2307), - [sym_option_propagation_expression] = STATE(2307), - [sym_result_propagation_expression] = STATE(2307), - [sym_anon_struct_value_expression] = STATE(2380), - [sym_go_expression] = STATE(2307), - [sym_spawn_expression] = STATE(2307), - [sym_parenthesized_expression] = STATE(2307), - [sym_call_expression] = STATE(2307), - [sym_type_initializer] = STATE(2380), - [sym_function_literal] = STATE(2307), - [sym_reference_expression] = STATE(2311), - [sym_type_reference_expression] = STATE(3541), - [sym_unary_expression] = STATE(2307), - [sym_receive_expression] = STATE(2307), - [sym_binary_expression] = STATE(2307), - [sym_as_type_cast_expression] = STATE(2307), - [sym__max_group] = STATE(2307), - [sym_literal] = STATE(2292), - [sym_map_init_expression] = STATE(2380), - [sym_array_creation] = STATE(2307), - [sym_fixed_array_creation] = STATE(2307), - [sym_selector_expression] = STATE(2307), - [sym_index_expression] = STATE(2307), - [sym_slice_expression] = STATE(2307), - [sym_if_expression] = STATE(2380), - [sym_compile_time_if_expression] = STATE(2380), - [sym_is_expression] = STATE(2307), - [sym_in_expression] = STATE(2307), - [sym_enum_fetch] = STATE(2307), - [sym_match_expression] = STATE(2380), - [sym_select_expression] = STATE(2380), - [sym_lock_expression] = STATE(2380), - [sym_unsafe_expression] = STATE(2380), - [sym_sql_expression] = STATE(2380), - [sym_c_string_literal] = STATE(2308), - [sym_raw_string_literal] = STATE(2308), - [sym_interpreted_string_literal] = STATE(2308), - [sym_mutability_modifiers] = STATE(765), - [sym_mutable_expression] = STATE(3823), - [sym_expression_list] = STATE(4480), - [sym_plain_type] = STATE(4297), - [sym__plain_type_without_special] = STATE(2302), - [sym_anon_struct_type] = STATE(2303), - [sym_multi_return_type] = STATE(2302), - [sym_result_type] = STATE(2302), - [sym_option_type] = STATE(2302), - [sym_qualified_type] = STATE(3541), - [sym_fixed_array_type] = STATE(2303), - [sym_array_type] = STATE(2303), - [sym_pointer_type] = STATE(2303), - [sym_wrong_pointer_type] = STATE(2303), - [sym_map_type] = STATE(2303), - [sym_channel_type] = STATE(2303), - [sym_shared_type] = STATE(2303), - [sym_thread_type] = STATE(2303), - [sym_atomic_type] = STATE(2303), - [sym_generic_type] = STATE(2303), - [sym_function_type] = STATE(2303), - [sym_var_declaration] = STATE(4166), - [sym_identifier] = ACTIONS(1807), + [sym__expression] = STATE(2558), + [sym__expression_without_blocks] = STATE(2347), + [sym__expression_with_blocks] = STATE(2347), + [sym_inc_expression] = STATE(2379), + [sym_dec_expression] = STATE(2379), + [sym_or_block_expression] = STATE(2379), + [sym_option_propagation_expression] = STATE(2379), + [sym_result_propagation_expression] = STATE(2379), + [sym_anon_struct_value_expression] = STATE(2378), + [sym_go_expression] = STATE(2379), + [sym_spawn_expression] = STATE(2379), + [sym_parenthesized_expression] = STATE(2379), + [sym_call_expression] = STATE(2379), + [sym_type_initializer] = STATE(2378), + [sym_function_literal] = STATE(2379), + [sym_reference_expression] = STATE(2377), + [sym_type_reference_expression] = STATE(3460), + [sym_unary_expression] = STATE(2379), + [sym_receive_expression] = STATE(2379), + [sym_binary_expression] = STATE(2379), + [sym_as_type_cast_expression] = STATE(2379), + [sym__max_group] = STATE(2379), + [sym_literal] = STATE(2392), + [sym_map_init_expression] = STATE(2378), + [sym_array_creation] = STATE(2379), + [sym_fixed_array_creation] = STATE(2379), + [sym_selector_expression] = STATE(2379), + [sym_index_expression] = STATE(2379), + [sym_slice_expression] = STATE(2379), + [sym_if_expression] = STATE(2378), + [sym_compile_time_if_expression] = STATE(2378), + [sym_is_expression] = STATE(2379), + [sym_in_expression] = STATE(2379), + [sym_enum_fetch] = STATE(2379), + [sym_match_expression] = STATE(2378), + [sym_select_expression] = STATE(2378), + [sym_lock_expression] = STATE(2378), + [sym_unsafe_expression] = STATE(2378), + [sym_sql_expression] = STATE(2378), + [sym_c_string_literal] = STATE(2401), + [sym_raw_string_literal] = STATE(2401), + [sym_interpreted_string_literal] = STATE(2401), + [sym_mutability_modifiers] = STATE(900), + [sym_mutable_expression] = STATE(3813), + [sym_expression_list] = STATE(4062), + [sym_plain_type] = STATE(4160), + [sym__plain_type_without_special] = STATE(2360), + [sym_anon_struct_type] = STATE(2362), + [sym_multi_return_type] = STATE(2360), + [sym_result_type] = STATE(2360), + [sym_option_type] = STATE(2360), + [sym_qualified_type] = STATE(3460), + [sym_fixed_array_type] = STATE(2362), + [sym_array_type] = STATE(2362), + [sym_pointer_type] = STATE(2362), + [sym_wrong_pointer_type] = STATE(2362), + [sym_map_type] = STATE(2362), + [sym_channel_type] = STATE(2362), + [sym_shared_type] = STATE(2362), + [sym_thread_type] = STATE(2362), + [sym_atomic_type] = STATE(2362), + [sym_generic_type] = STATE(2362), + [sym_function_type] = STATE(2362), + [sym_block] = STATE(2528), + [sym_identifier] = ACTIONS(1815), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1428), - [anon_sym_LBRACE] = ACTIONS(1430), - [anon_sym_LPAREN] = ACTIONS(1432), - [anon_sym_fn] = ACTIONS(1434), - [anon_sym_PLUS] = ACTIONS(1811), - [anon_sym_DASH] = ACTIONS(1811), - [anon_sym_STAR] = ACTIONS(1813), - [anon_sym_struct] = ACTIONS(1440), + [anon_sym_DOT] = ACTIONS(1430), + [anon_sym_LBRACE] = ACTIONS(1927), + [anon_sym_LPAREN] = ACTIONS(1434), + [anon_sym_fn] = ACTIONS(1436), + [anon_sym_PLUS] = ACTIONS(1817), + [anon_sym_DASH] = ACTIONS(1817), + [anon_sym_STAR] = ACTIONS(1819), + [anon_sym_struct] = ACTIONS(1442), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(1815), - [anon_sym_go] = ACTIONS(1817), - [anon_sym_spawn] = ACTIONS(1819), - [anon_sym_json_DOTdecode] = ACTIONS(1448), - [anon_sym_LBRACK2] = ACTIONS(1821), - [anon_sym_TILDE] = ACTIONS(1811), - [anon_sym_CARET] = ACTIONS(1811), - [anon_sym_AMP] = ACTIONS(1823), - [anon_sym_LT_DASH] = ACTIONS(1825), - [sym_none] = ACTIONS(1456), - [sym_true] = ACTIONS(1456), - [sym_false] = ACTIONS(1456), - [sym_nil] = ACTIONS(1456), - [anon_sym_if] = ACTIONS(1827), - [anon_sym_DOLLARif] = ACTIONS(1460), - [anon_sym_match] = ACTIONS(1462), - [anon_sym_select] = ACTIONS(1829), - [anon_sym_lock] = ACTIONS(1831), - [anon_sym_rlock] = ACTIONS(1831), - [anon_sym_unsafe] = ACTIONS(1833), - [anon_sym_sql] = ACTIONS(1470), - [sym_int_literal] = ACTIONS(1456), - [sym_float_literal] = ACTIONS(1472), - [sym_rune_literal] = ACTIONS(1472), - [sym_pseudo_compile_time_identifier] = ACTIONS(1474), + [anon_sym_BANG] = ACTIONS(1821), + [anon_sym_go] = ACTIONS(1823), + [anon_sym_spawn] = ACTIONS(1825), + [anon_sym_json_DOTdecode] = ACTIONS(1450), + [anon_sym_LBRACK2] = ACTIONS(1827), + [anon_sym_TILDE] = ACTIONS(1817), + [anon_sym_CARET] = ACTIONS(1817), + [anon_sym_AMP] = ACTIONS(1829), + [anon_sym_LT_DASH] = ACTIONS(1831), + [sym_none] = ACTIONS(1458), + [sym_true] = ACTIONS(1458), + [sym_false] = ACTIONS(1458), + [sym_nil] = ACTIONS(1458), + [anon_sym_if] = ACTIONS(1833), + [anon_sym_DOLLARif] = ACTIONS(1462), + [anon_sym_match] = ACTIONS(1464), + [anon_sym_select] = ACTIONS(1835), + [anon_sym_lock] = ACTIONS(1837), + [anon_sym_rlock] = ACTIONS(1837), + [anon_sym_unsafe] = ACTIONS(1839), + [anon_sym_sql] = ACTIONS(1472), + [sym_int_literal] = ACTIONS(1458), + [sym_float_literal] = ACTIONS(1474), + [sym_rune_literal] = ACTIONS(1474), + [sym_pseudo_compile_time_identifier] = ACTIONS(1476), [anon_sym_shared] = ACTIONS(83), [anon_sym_map_LBRACK] = ACTIONS(85), [anon_sym_chan] = ACTIONS(87), [anon_sym_thread] = ACTIONS(89), [anon_sym_atomic] = ACTIONS(91), - [sym___double_quote] = ACTIONS(1478), - [sym___single_quote] = ACTIONS(1480), - [sym___c_double_quote] = ACTIONS(1482), - [sym___c_single_quote] = ACTIONS(1484), - [sym___r_double_quote] = ACTIONS(1486), - [sym___r_single_quote] = ACTIONS(1488), + [sym___double_quote] = ACTIONS(1480), + [sym___single_quote] = ACTIONS(1482), + [sym___c_double_quote] = ACTIONS(1484), + [sym___c_single_quote] = ACTIONS(1486), + [sym___r_double_quote] = ACTIONS(1488), + [sym___r_single_quote] = ACTIONS(1490), }, [264] = { [sym_line_comment] = STATE(264), [sym_block_comment] = STATE(264), - [sym__expression] = STATE(2716), - [sym__expression_without_blocks] = STATE(2300), - [sym__expression_with_blocks] = STATE(2300), - [sym_inc_expression] = STATE(2307), - [sym_dec_expression] = STATE(2307), - [sym_or_block_expression] = STATE(2307), - [sym_option_propagation_expression] = STATE(2307), - [sym_result_propagation_expression] = STATE(2307), - [sym_anon_struct_value_expression] = STATE(2380), - [sym_go_expression] = STATE(2307), - [sym_spawn_expression] = STATE(2307), - [sym_parenthesized_expression] = STATE(2307), - [sym_call_expression] = STATE(2307), - [sym_type_initializer] = STATE(2380), - [sym_function_literal] = STATE(2307), - [sym_reference_expression] = STATE(2311), - [sym_type_reference_expression] = STATE(3541), - [sym_unary_expression] = STATE(2307), - [sym_receive_expression] = STATE(2307), - [sym_binary_expression] = STATE(2307), - [sym_as_type_cast_expression] = STATE(2307), - [sym__max_group] = STATE(2307), - [sym_literal] = STATE(2292), - [sym_map_init_expression] = STATE(2380), - [sym_map_keyed_element] = STATE(2001), - [sym_array_creation] = STATE(2307), - [sym_fixed_array_creation] = STATE(2307), - [sym_selector_expression] = STATE(2307), - [sym_index_expression] = STATE(2307), - [sym_slice_expression] = STATE(2307), - [sym_if_expression] = STATE(2380), - [sym_compile_time_if_expression] = STATE(2380), - [sym_is_expression] = STATE(2307), - [sym_in_expression] = STATE(2307), - [sym_enum_fetch] = STATE(2307), - [sym_match_expression] = STATE(2380), - [sym_select_expression] = STATE(2380), - [sym_lock_expression] = STATE(2380), - [sym_unsafe_expression] = STATE(2380), - [sym_sql_expression] = STATE(2380), - [sym_c_string_literal] = STATE(2308), - [sym_raw_string_literal] = STATE(2308), - [sym_interpreted_string_literal] = STATE(2308), - [sym_mutability_modifiers] = STATE(939), - [sym_plain_type] = STATE(4297), - [sym__plain_type_without_special] = STATE(2302), - [sym_anon_struct_type] = STATE(2303), - [sym_multi_return_type] = STATE(2302), - [sym_result_type] = STATE(2302), - [sym_option_type] = STATE(2302), - [sym_qualified_type] = STATE(3541), - [sym_fixed_array_type] = STATE(2303), - [sym_array_type] = STATE(2303), - [sym_pointer_type] = STATE(2303), - [sym_wrong_pointer_type] = STATE(2303), - [sym_map_type] = STATE(2303), - [sym_channel_type] = STATE(2303), - [sym_shared_type] = STATE(2303), - [sym_thread_type] = STATE(2303), - [sym_atomic_type] = STATE(2303), - [sym_generic_type] = STATE(2303), - [sym_function_type] = STATE(2303), - [aux_sym_map_init_expression_repeat1] = STATE(295), - [sym_identifier] = ACTIONS(1426), + [sym__expression] = STATE(2558), + [sym__expression_without_blocks] = STATE(2347), + [sym__expression_with_blocks] = STATE(2347), + [sym_inc_expression] = STATE(2379), + [sym_dec_expression] = STATE(2379), + [sym_or_block_expression] = STATE(2379), + [sym_option_propagation_expression] = STATE(2379), + [sym_result_propagation_expression] = STATE(2379), + [sym_anon_struct_value_expression] = STATE(2378), + [sym_go_expression] = STATE(2379), + [sym_spawn_expression] = STATE(2379), + [sym_parenthesized_expression] = STATE(2379), + [sym_call_expression] = STATE(2379), + [sym_type_initializer] = STATE(2378), + [sym_function_literal] = STATE(2379), + [sym_reference_expression] = STATE(2377), + [sym_type_reference_expression] = STATE(3460), + [sym_unary_expression] = STATE(2379), + [sym_receive_expression] = STATE(2379), + [sym_binary_expression] = STATE(2379), + [sym_as_type_cast_expression] = STATE(2379), + [sym__max_group] = STATE(2379), + [sym_literal] = STATE(2392), + [sym_map_init_expression] = STATE(2378), + [sym_array_creation] = STATE(2379), + [sym_fixed_array_creation] = STATE(2379), + [sym_selector_expression] = STATE(2379), + [sym_index_expression] = STATE(2379), + [sym_slice_expression] = STATE(2379), + [sym_if_expression] = STATE(2378), + [sym_compile_time_if_expression] = STATE(2378), + [sym_is_expression] = STATE(2379), + [sym_in_expression] = STATE(2379), + [sym_enum_fetch] = STATE(2379), + [sym_match_expression] = STATE(2378), + [sym_select_expression] = STATE(2378), + [sym_lock_expression] = STATE(2378), + [sym_unsafe_expression] = STATE(2378), + [sym_sql_expression] = STATE(2378), + [sym_c_string_literal] = STATE(2401), + [sym_raw_string_literal] = STATE(2401), + [sym_interpreted_string_literal] = STATE(2401), + [sym_mutability_modifiers] = STATE(900), + [sym_mutable_expression] = STATE(3813), + [sym_expression_list] = STATE(4213), + [sym_plain_type] = STATE(4160), + [sym__plain_type_without_special] = STATE(2360), + [sym_anon_struct_type] = STATE(2362), + [sym_multi_return_type] = STATE(2360), + [sym_result_type] = STATE(2360), + [sym_option_type] = STATE(2360), + [sym_qualified_type] = STATE(3460), + [sym_fixed_array_type] = STATE(2362), + [sym_array_type] = STATE(2362), + [sym_pointer_type] = STATE(2362), + [sym_wrong_pointer_type] = STATE(2362), + [sym_map_type] = STATE(2362), + [sym_channel_type] = STATE(2362), + [sym_shared_type] = STATE(2362), + [sym_thread_type] = STATE(2362), + [sym_atomic_type] = STATE(2362), + [sym_generic_type] = STATE(2362), + [sym_function_type] = STATE(2362), + [sym_block] = STATE(498), + [sym_identifier] = ACTIONS(1815), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1428), - [anon_sym_LBRACE] = ACTIONS(1430), - [anon_sym_RBRACE] = ACTIONS(1927), - [anon_sym_LPAREN] = ACTIONS(1432), - [anon_sym_fn] = ACTIONS(1434), - [anon_sym_PLUS] = ACTIONS(1436), - [anon_sym_DASH] = ACTIONS(1436), - [anon_sym_STAR] = ACTIONS(1438), - [anon_sym_struct] = ACTIONS(1440), + [anon_sym_DOT] = ACTIONS(1430), + [anon_sym_LBRACE] = ACTIONS(1929), + [anon_sym_LPAREN] = ACTIONS(1434), + [anon_sym_fn] = ACTIONS(1436), + [anon_sym_PLUS] = ACTIONS(1817), + [anon_sym_DASH] = ACTIONS(1817), + [anon_sym_STAR] = ACTIONS(1819), + [anon_sym_struct] = ACTIONS(1442), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(1442), - [anon_sym_go] = ACTIONS(1444), - [anon_sym_spawn] = ACTIONS(1446), - [anon_sym_json_DOTdecode] = ACTIONS(1448), - [anon_sym_LBRACK2] = ACTIONS(1450), - [anon_sym_TILDE] = ACTIONS(1436), - [anon_sym_CARET] = ACTIONS(1436), - [anon_sym_AMP] = ACTIONS(1452), - [anon_sym_LT_DASH] = ACTIONS(1454), - [sym_none] = ACTIONS(1456), - [sym_true] = ACTIONS(1456), - [sym_false] = ACTIONS(1456), - [sym_nil] = ACTIONS(1456), - [anon_sym_if] = ACTIONS(1827), - [anon_sym_DOLLARif] = ACTIONS(1460), - [anon_sym_match] = ACTIONS(1462), - [anon_sym_select] = ACTIONS(1464), - [anon_sym_lock] = ACTIONS(1466), - [anon_sym_rlock] = ACTIONS(1466), - [anon_sym_unsafe] = ACTIONS(1833), - [anon_sym_sql] = ACTIONS(1470), - [sym_int_literal] = ACTIONS(1456), - [sym_float_literal] = ACTIONS(1472), - [sym_rune_literal] = ACTIONS(1472), - [sym_pseudo_compile_time_identifier] = ACTIONS(1474), + [anon_sym_BANG] = ACTIONS(1821), + [anon_sym_go] = ACTIONS(1823), + [anon_sym_spawn] = ACTIONS(1825), + [anon_sym_json_DOTdecode] = ACTIONS(1450), + [anon_sym_LBRACK2] = ACTIONS(1827), + [anon_sym_TILDE] = ACTIONS(1817), + [anon_sym_CARET] = ACTIONS(1817), + [anon_sym_AMP] = ACTIONS(1829), + [anon_sym_LT_DASH] = ACTIONS(1831), + [sym_none] = ACTIONS(1458), + [sym_true] = ACTIONS(1458), + [sym_false] = ACTIONS(1458), + [sym_nil] = ACTIONS(1458), + [anon_sym_if] = ACTIONS(1833), + [anon_sym_DOLLARif] = ACTIONS(1462), + [anon_sym_match] = ACTIONS(1464), + [anon_sym_select] = ACTIONS(1835), + [anon_sym_lock] = ACTIONS(1837), + [anon_sym_rlock] = ACTIONS(1837), + [anon_sym_unsafe] = ACTIONS(1839), + [anon_sym_sql] = ACTIONS(1472), + [sym_int_literal] = ACTIONS(1458), + [sym_float_literal] = ACTIONS(1474), + [sym_rune_literal] = ACTIONS(1474), + [sym_pseudo_compile_time_identifier] = ACTIONS(1476), [anon_sym_shared] = ACTIONS(83), [anon_sym_map_LBRACK] = ACTIONS(85), [anon_sym_chan] = ACTIONS(87), [anon_sym_thread] = ACTIONS(89), [anon_sym_atomic] = ACTIONS(91), - [sym___double_quote] = ACTIONS(1478), - [sym___single_quote] = ACTIONS(1480), - [sym___c_double_quote] = ACTIONS(1482), - [sym___c_single_quote] = ACTIONS(1484), - [sym___r_double_quote] = ACTIONS(1486), - [sym___r_single_quote] = ACTIONS(1488), + [sym___double_quote] = ACTIONS(1480), + [sym___single_quote] = ACTIONS(1482), + [sym___c_double_quote] = ACTIONS(1484), + [sym___c_single_quote] = ACTIONS(1486), + [sym___r_double_quote] = ACTIONS(1488), + [sym___r_single_quote] = ACTIONS(1490), }, [265] = { [sym_line_comment] = STATE(265), [sym_block_comment] = STATE(265), - [sym__expression] = STATE(2373), - [sym__expression_without_blocks] = STATE(2300), - [sym__expression_with_blocks] = STATE(2300), - [sym_inc_expression] = STATE(2307), - [sym_dec_expression] = STATE(2307), - [sym_or_block_expression] = STATE(2307), - [sym_option_propagation_expression] = STATE(2307), - [sym_result_propagation_expression] = STATE(2307), - [sym_anon_struct_value_expression] = STATE(2380), - [sym_go_expression] = STATE(2307), - [sym_spawn_expression] = STATE(2307), - [sym_parenthesized_expression] = STATE(2307), - [sym_call_expression] = STATE(2307), - [sym_type_initializer] = STATE(2380), - [sym_function_literal] = STATE(2307), - [sym_reference_expression] = STATE(2578), - [sym_type_reference_expression] = STATE(3541), - [sym_unary_expression] = STATE(2307), - [sym_receive_expression] = STATE(2307), - [sym_binary_expression] = STATE(2307), - [sym_as_type_cast_expression] = STATE(2307), - [sym__max_group] = STATE(2307), - [sym_literal] = STATE(2292), - [sym_map_init_expression] = STATE(2380), - [sym_array_creation] = STATE(2307), - [sym_fixed_array_creation] = STATE(2307), - [sym_selector_expression] = STATE(2307), - [sym_index_expression] = STATE(2307), - [sym_slice_expression] = STATE(2307), - [sym_if_expression] = STATE(2380), - [sym_compile_time_if_expression] = STATE(2380), - [sym_is_expression] = STATE(2307), - [sym_in_expression] = STATE(2307), - [sym_enum_fetch] = STATE(2307), - [sym_match_expression] = STATE(2380), - [sym_select_expression] = STATE(2380), - [sym_lock_expression] = STATE(2380), - [sym_unsafe_expression] = STATE(2380), - [sym_sql_expression] = STATE(2380), - [sym_c_string_literal] = STATE(2308), - [sym_raw_string_literal] = STATE(2308), - [sym_interpreted_string_literal] = STATE(2308), - [sym_mutability_modifiers] = STATE(765), - [sym_mutable_expression] = STATE(3823), - [sym_expression_list] = STATE(4480), - [sym_plain_type] = STATE(4297), - [sym__plain_type_without_special] = STATE(2302), - [sym_anon_struct_type] = STATE(2303), - [sym_multi_return_type] = STATE(2302), - [sym_result_type] = STATE(2302), - [sym_option_type] = STATE(2302), - [sym_qualified_type] = STATE(3541), - [sym_fixed_array_type] = STATE(2303), - [sym_array_type] = STATE(2303), - [sym_pointer_type] = STATE(2303), - [sym_wrong_pointer_type] = STATE(2303), - [sym_map_type] = STATE(2303), - [sym_channel_type] = STATE(2303), - [sym_shared_type] = STATE(2303), - [sym_thread_type] = STATE(2303), - [sym_atomic_type] = STATE(2303), - [sym_generic_type] = STATE(2303), - [sym_function_type] = STATE(2303), - [sym_var_declaration] = STATE(4166), - [sym_identifier] = ACTIONS(1807), + [sym__expression] = STATE(2632), + [sym__expression_without_blocks] = STATE(2347), + [sym__expression_with_blocks] = STATE(2347), + [sym_inc_expression] = STATE(2379), + [sym_dec_expression] = STATE(2379), + [sym_or_block_expression] = STATE(2379), + [sym_option_propagation_expression] = STATE(2379), + [sym_result_propagation_expression] = STATE(2379), + [sym_anon_struct_value_expression] = STATE(2378), + [sym_go_expression] = STATE(2379), + [sym_spawn_expression] = STATE(2379), + [sym_parenthesized_expression] = STATE(2379), + [sym_call_expression] = STATE(2379), + [sym_type_initializer] = STATE(2378), + [sym_function_literal] = STATE(2379), + [sym_reference_expression] = STATE(2377), + [sym_type_reference_expression] = STATE(3460), + [sym_unary_expression] = STATE(2379), + [sym_receive_expression] = STATE(2379), + [sym_binary_expression] = STATE(2379), + [sym_as_type_cast_expression] = STATE(2379), + [sym__max_group] = STATE(2379), + [sym_literal] = STATE(2392), + [sym_map_init_expression] = STATE(2378), + [sym_map_keyed_element] = STATE(2004), + [sym_array_creation] = STATE(2379), + [sym_fixed_array_creation] = STATE(2379), + [sym_selector_expression] = STATE(2379), + [sym_index_expression] = STATE(2379), + [sym_slice_expression] = STATE(2379), + [sym_if_expression] = STATE(2378), + [sym_compile_time_if_expression] = STATE(2378), + [sym_is_expression] = STATE(2379), + [sym_in_expression] = STATE(2379), + [sym_enum_fetch] = STATE(2379), + [sym_match_expression] = STATE(2378), + [sym_select_expression] = STATE(2378), + [sym_lock_expression] = STATE(2378), + [sym_unsafe_expression] = STATE(2378), + [sym_sql_expression] = STATE(2378), + [sym_c_string_literal] = STATE(2401), + [sym_raw_string_literal] = STATE(2401), + [sym_interpreted_string_literal] = STATE(2401), + [sym_mutability_modifiers] = STATE(939), + [sym_plain_type] = STATE(4160), + [sym__plain_type_without_special] = STATE(2360), + [sym_anon_struct_type] = STATE(2362), + [sym_multi_return_type] = STATE(2360), + [sym_result_type] = STATE(2360), + [sym_option_type] = STATE(2360), + [sym_qualified_type] = STATE(3460), + [sym_fixed_array_type] = STATE(2362), + [sym_array_type] = STATE(2362), + [sym_pointer_type] = STATE(2362), + [sym_wrong_pointer_type] = STATE(2362), + [sym_map_type] = STATE(2362), + [sym_channel_type] = STATE(2362), + [sym_shared_type] = STATE(2362), + [sym_thread_type] = STATE(2362), + [sym_atomic_type] = STATE(2362), + [sym_generic_type] = STATE(2362), + [sym_function_type] = STATE(2362), + [aux_sym_map_init_expression_repeat1] = STATE(259), + [sym_identifier] = ACTIONS(1428), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1428), - [anon_sym_LBRACE] = ACTIONS(1430), - [anon_sym_LPAREN] = ACTIONS(1432), - [anon_sym_fn] = ACTIONS(1434), - [anon_sym_PLUS] = ACTIONS(1811), - [anon_sym_DASH] = ACTIONS(1811), - [anon_sym_STAR] = ACTIONS(1813), - [anon_sym_struct] = ACTIONS(1440), + [anon_sym_DOT] = ACTIONS(1430), + [anon_sym_LBRACE] = ACTIONS(1432), + [anon_sym_RBRACE] = ACTIONS(1931), + [anon_sym_LPAREN] = ACTIONS(1434), + [anon_sym_fn] = ACTIONS(1436), + [anon_sym_PLUS] = ACTIONS(1438), + [anon_sym_DASH] = ACTIONS(1438), + [anon_sym_STAR] = ACTIONS(1440), + [anon_sym_struct] = ACTIONS(1442), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(1815), - [anon_sym_go] = ACTIONS(1817), - [anon_sym_spawn] = ACTIONS(1819), - [anon_sym_json_DOTdecode] = ACTIONS(1448), - [anon_sym_LBRACK2] = ACTIONS(1821), - [anon_sym_TILDE] = ACTIONS(1811), - [anon_sym_CARET] = ACTIONS(1811), - [anon_sym_AMP] = ACTIONS(1823), - [anon_sym_LT_DASH] = ACTIONS(1825), - [sym_none] = ACTIONS(1456), - [sym_true] = ACTIONS(1456), - [sym_false] = ACTIONS(1456), - [sym_nil] = ACTIONS(1456), - [anon_sym_if] = ACTIONS(1827), - [anon_sym_DOLLARif] = ACTIONS(1460), - [anon_sym_match] = ACTIONS(1462), - [anon_sym_select] = ACTIONS(1829), - [anon_sym_lock] = ACTIONS(1831), - [anon_sym_rlock] = ACTIONS(1831), - [anon_sym_unsafe] = ACTIONS(1833), - [anon_sym_sql] = ACTIONS(1470), - [sym_int_literal] = ACTIONS(1456), - [sym_float_literal] = ACTIONS(1472), - [sym_rune_literal] = ACTIONS(1472), - [sym_pseudo_compile_time_identifier] = ACTIONS(1474), + [anon_sym_BANG] = ACTIONS(1444), + [anon_sym_go] = ACTIONS(1446), + [anon_sym_spawn] = ACTIONS(1448), + [anon_sym_json_DOTdecode] = ACTIONS(1450), + [anon_sym_LBRACK2] = ACTIONS(1452), + [anon_sym_TILDE] = ACTIONS(1438), + [anon_sym_CARET] = ACTIONS(1438), + [anon_sym_AMP] = ACTIONS(1454), + [anon_sym_LT_DASH] = ACTIONS(1456), + [sym_none] = ACTIONS(1458), + [sym_true] = ACTIONS(1458), + [sym_false] = ACTIONS(1458), + [sym_nil] = ACTIONS(1458), + [anon_sym_if] = ACTIONS(1833), + [anon_sym_DOLLARif] = ACTIONS(1462), + [anon_sym_match] = ACTIONS(1464), + [anon_sym_select] = ACTIONS(1466), + [anon_sym_lock] = ACTIONS(1468), + [anon_sym_rlock] = ACTIONS(1468), + [anon_sym_unsafe] = ACTIONS(1839), + [anon_sym_sql] = ACTIONS(1472), + [sym_int_literal] = ACTIONS(1458), + [sym_float_literal] = ACTIONS(1474), + [sym_rune_literal] = ACTIONS(1474), + [sym_pseudo_compile_time_identifier] = ACTIONS(1476), [anon_sym_shared] = ACTIONS(83), [anon_sym_map_LBRACK] = ACTIONS(85), [anon_sym_chan] = ACTIONS(87), [anon_sym_thread] = ACTIONS(89), [anon_sym_atomic] = ACTIONS(91), - [sym___double_quote] = ACTIONS(1478), - [sym___single_quote] = ACTIONS(1480), - [sym___c_double_quote] = ACTIONS(1482), - [sym___c_single_quote] = ACTIONS(1484), - [sym___r_double_quote] = ACTIONS(1486), - [sym___r_single_quote] = ACTIONS(1488), + [sym___double_quote] = ACTIONS(1480), + [sym___single_quote] = ACTIONS(1482), + [sym___c_double_quote] = ACTIONS(1484), + [sym___c_single_quote] = ACTIONS(1486), + [sym___r_double_quote] = ACTIONS(1488), + [sym___r_single_quote] = ACTIONS(1490), }, [266] = { [sym_line_comment] = STATE(266), [sym_block_comment] = STATE(266), - [sym__expression] = STATE(2716), - [sym__expression_without_blocks] = STATE(2300), - [sym__expression_with_blocks] = STATE(2300), - [sym_inc_expression] = STATE(2307), - [sym_dec_expression] = STATE(2307), - [sym_or_block_expression] = STATE(2307), - [sym_option_propagation_expression] = STATE(2307), - [sym_result_propagation_expression] = STATE(2307), - [sym_anon_struct_value_expression] = STATE(2380), - [sym_go_expression] = STATE(2307), - [sym_spawn_expression] = STATE(2307), - [sym_parenthesized_expression] = STATE(2307), - [sym_call_expression] = STATE(2307), - [sym_type_initializer] = STATE(2380), - [sym_function_literal] = STATE(2307), - [sym_reference_expression] = STATE(2311), - [sym_type_reference_expression] = STATE(3541), - [sym_unary_expression] = STATE(2307), - [sym_receive_expression] = STATE(2307), - [sym_binary_expression] = STATE(2307), - [sym_as_type_cast_expression] = STATE(2307), - [sym__max_group] = STATE(2307), - [sym_literal] = STATE(2292), - [sym_map_init_expression] = STATE(2380), - [sym_map_keyed_element] = STATE(2001), - [sym_array_creation] = STATE(2307), - [sym_fixed_array_creation] = STATE(2307), - [sym_selector_expression] = STATE(2307), - [sym_index_expression] = STATE(2307), - [sym_slice_expression] = STATE(2307), - [sym_if_expression] = STATE(2380), - [sym_compile_time_if_expression] = STATE(2380), - [sym_is_expression] = STATE(2307), - [sym_in_expression] = STATE(2307), - [sym_enum_fetch] = STATE(2307), - [sym_match_expression] = STATE(2380), - [sym_select_expression] = STATE(2380), - [sym_lock_expression] = STATE(2380), - [sym_unsafe_expression] = STATE(2380), - [sym_sql_expression] = STATE(2380), - [sym_c_string_literal] = STATE(2308), - [sym_raw_string_literal] = STATE(2308), - [sym_interpreted_string_literal] = STATE(2308), - [sym_mutability_modifiers] = STATE(939), - [sym_plain_type] = STATE(4297), - [sym__plain_type_without_special] = STATE(2302), - [sym_anon_struct_type] = STATE(2303), - [sym_multi_return_type] = STATE(2302), - [sym_result_type] = STATE(2302), - [sym_option_type] = STATE(2302), - [sym_qualified_type] = STATE(3541), - [sym_fixed_array_type] = STATE(2303), - [sym_array_type] = STATE(2303), - [sym_pointer_type] = STATE(2303), - [sym_wrong_pointer_type] = STATE(2303), - [sym_map_type] = STATE(2303), - [sym_channel_type] = STATE(2303), - [sym_shared_type] = STATE(2303), - [sym_thread_type] = STATE(2303), - [sym_atomic_type] = STATE(2303), - [sym_generic_type] = STATE(2303), - [sym_function_type] = STATE(2303), - [aux_sym_map_init_expression_repeat1] = STATE(267), - [sym_identifier] = ACTIONS(1426), + [sym__expression] = STATE(2558), + [sym__expression_without_blocks] = STATE(2347), + [sym__expression_with_blocks] = STATE(2347), + [sym_inc_expression] = STATE(2379), + [sym_dec_expression] = STATE(2379), + [sym_or_block_expression] = STATE(2379), + [sym_option_propagation_expression] = STATE(2379), + [sym_result_propagation_expression] = STATE(2379), + [sym_anon_struct_value_expression] = STATE(2378), + [sym_go_expression] = STATE(2379), + [sym_spawn_expression] = STATE(2379), + [sym_parenthesized_expression] = STATE(2379), + [sym_call_expression] = STATE(2379), + [sym_type_initializer] = STATE(2378), + [sym_function_literal] = STATE(2379), + [sym_reference_expression] = STATE(2377), + [sym_type_reference_expression] = STATE(3460), + [sym_unary_expression] = STATE(2379), + [sym_receive_expression] = STATE(2379), + [sym_binary_expression] = STATE(2379), + [sym_as_type_cast_expression] = STATE(2379), + [sym__max_group] = STATE(2379), + [sym_literal] = STATE(2392), + [sym_map_init_expression] = STATE(2378), + [sym_array_creation] = STATE(2379), + [sym_fixed_array_creation] = STATE(2379), + [sym_selector_expression] = STATE(2379), + [sym_index_expression] = STATE(2379), + [sym_slice_expression] = STATE(2379), + [sym_if_expression] = STATE(2378), + [sym_compile_time_if_expression] = STATE(2378), + [sym_is_expression] = STATE(2379), + [sym_in_expression] = STATE(2379), + [sym_enum_fetch] = STATE(2379), + [sym_match_expression] = STATE(2378), + [sym_select_expression] = STATE(2378), + [sym_lock_expression] = STATE(2378), + [sym_unsafe_expression] = STATE(2378), + [sym_sql_expression] = STATE(2378), + [sym_c_string_literal] = STATE(2401), + [sym_raw_string_literal] = STATE(2401), + [sym_interpreted_string_literal] = STATE(2401), + [sym_mutability_modifiers] = STATE(900), + [sym_mutable_expression] = STATE(3813), + [sym_expression_list] = STATE(4144), + [sym_plain_type] = STATE(4160), + [sym__plain_type_without_special] = STATE(2360), + [sym_anon_struct_type] = STATE(2362), + [sym_multi_return_type] = STATE(2360), + [sym_result_type] = STATE(2360), + [sym_option_type] = STATE(2360), + [sym_qualified_type] = STATE(3460), + [sym_fixed_array_type] = STATE(2362), + [sym_array_type] = STATE(2362), + [sym_pointer_type] = STATE(2362), + [sym_wrong_pointer_type] = STATE(2362), + [sym_map_type] = STATE(2362), + [sym_channel_type] = STATE(2362), + [sym_shared_type] = STATE(2362), + [sym_thread_type] = STATE(2362), + [sym_atomic_type] = STATE(2362), + [sym_generic_type] = STATE(2362), + [sym_function_type] = STATE(2362), + [sym_block] = STATE(1709), + [sym_identifier] = ACTIONS(1815), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1428), - [anon_sym_LBRACE] = ACTIONS(1430), - [anon_sym_RBRACE] = ACTIONS(1929), - [anon_sym_LPAREN] = ACTIONS(1432), - [anon_sym_fn] = ACTIONS(1434), - [anon_sym_PLUS] = ACTIONS(1436), - [anon_sym_DASH] = ACTIONS(1436), - [anon_sym_STAR] = ACTIONS(1438), - [anon_sym_struct] = ACTIONS(1440), + [anon_sym_DOT] = ACTIONS(1430), + [anon_sym_LBRACE] = ACTIONS(1933), + [anon_sym_LPAREN] = ACTIONS(1434), + [anon_sym_fn] = ACTIONS(1436), + [anon_sym_PLUS] = ACTIONS(1817), + [anon_sym_DASH] = ACTIONS(1817), + [anon_sym_STAR] = ACTIONS(1819), + [anon_sym_struct] = ACTIONS(1442), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(1442), - [anon_sym_go] = ACTIONS(1444), - [anon_sym_spawn] = ACTIONS(1446), - [anon_sym_json_DOTdecode] = ACTIONS(1448), - [anon_sym_LBRACK2] = ACTIONS(1450), - [anon_sym_TILDE] = ACTIONS(1436), - [anon_sym_CARET] = ACTIONS(1436), - [anon_sym_AMP] = ACTIONS(1452), - [anon_sym_LT_DASH] = ACTIONS(1454), - [sym_none] = ACTIONS(1456), - [sym_true] = ACTIONS(1456), - [sym_false] = ACTIONS(1456), - [sym_nil] = ACTIONS(1456), - [anon_sym_if] = ACTIONS(1827), - [anon_sym_DOLLARif] = ACTIONS(1460), - [anon_sym_match] = ACTIONS(1462), - [anon_sym_select] = ACTIONS(1464), - [anon_sym_lock] = ACTIONS(1466), - [anon_sym_rlock] = ACTIONS(1466), - [anon_sym_unsafe] = ACTIONS(1833), - [anon_sym_sql] = ACTIONS(1470), - [sym_int_literal] = ACTIONS(1456), - [sym_float_literal] = ACTIONS(1472), - [sym_rune_literal] = ACTIONS(1472), - [sym_pseudo_compile_time_identifier] = ACTIONS(1474), + [anon_sym_BANG] = ACTIONS(1821), + [anon_sym_go] = ACTIONS(1823), + [anon_sym_spawn] = ACTIONS(1825), + [anon_sym_json_DOTdecode] = ACTIONS(1450), + [anon_sym_LBRACK2] = ACTIONS(1827), + [anon_sym_TILDE] = ACTIONS(1817), + [anon_sym_CARET] = ACTIONS(1817), + [anon_sym_AMP] = ACTIONS(1829), + [anon_sym_LT_DASH] = ACTIONS(1831), + [sym_none] = ACTIONS(1458), + [sym_true] = ACTIONS(1458), + [sym_false] = ACTIONS(1458), + [sym_nil] = ACTIONS(1458), + [anon_sym_if] = ACTIONS(1833), + [anon_sym_DOLLARif] = ACTIONS(1462), + [anon_sym_match] = ACTIONS(1464), + [anon_sym_select] = ACTIONS(1835), + [anon_sym_lock] = ACTIONS(1837), + [anon_sym_rlock] = ACTIONS(1837), + [anon_sym_unsafe] = ACTIONS(1839), + [anon_sym_sql] = ACTIONS(1472), + [sym_int_literal] = ACTIONS(1458), + [sym_float_literal] = ACTIONS(1474), + [sym_rune_literal] = ACTIONS(1474), + [sym_pseudo_compile_time_identifier] = ACTIONS(1476), [anon_sym_shared] = ACTIONS(83), [anon_sym_map_LBRACK] = ACTIONS(85), [anon_sym_chan] = ACTIONS(87), [anon_sym_thread] = ACTIONS(89), [anon_sym_atomic] = ACTIONS(91), - [sym___double_quote] = ACTIONS(1478), - [sym___single_quote] = ACTIONS(1480), - [sym___c_double_quote] = ACTIONS(1482), - [sym___c_single_quote] = ACTIONS(1484), - [sym___r_double_quote] = ACTIONS(1486), - [sym___r_single_quote] = ACTIONS(1488), + [sym___double_quote] = ACTIONS(1480), + [sym___single_quote] = ACTIONS(1482), + [sym___c_double_quote] = ACTIONS(1484), + [sym___c_single_quote] = ACTIONS(1486), + [sym___r_double_quote] = ACTIONS(1488), + [sym___r_single_quote] = ACTIONS(1490), }, [267] = { [sym_line_comment] = STATE(267), [sym_block_comment] = STATE(267), - [sym__expression] = STATE(2716), - [sym__expression_without_blocks] = STATE(2300), - [sym__expression_with_blocks] = STATE(2300), - [sym_inc_expression] = STATE(2307), - [sym_dec_expression] = STATE(2307), - [sym_or_block_expression] = STATE(2307), - [sym_option_propagation_expression] = STATE(2307), - [sym_result_propagation_expression] = STATE(2307), - [sym_anon_struct_value_expression] = STATE(2380), - [sym_go_expression] = STATE(2307), - [sym_spawn_expression] = STATE(2307), - [sym_parenthesized_expression] = STATE(2307), - [sym_call_expression] = STATE(2307), - [sym_type_initializer] = STATE(2380), - [sym_function_literal] = STATE(2307), - [sym_reference_expression] = STATE(2311), - [sym_type_reference_expression] = STATE(3541), - [sym_unary_expression] = STATE(2307), - [sym_receive_expression] = STATE(2307), - [sym_binary_expression] = STATE(2307), - [sym_as_type_cast_expression] = STATE(2307), - [sym__max_group] = STATE(2307), - [sym_literal] = STATE(2292), - [sym_map_init_expression] = STATE(2380), - [sym_map_keyed_element] = STATE(2001), - [sym_array_creation] = STATE(2307), - [sym_fixed_array_creation] = STATE(2307), - [sym_selector_expression] = STATE(2307), - [sym_index_expression] = STATE(2307), - [sym_slice_expression] = STATE(2307), - [sym_if_expression] = STATE(2380), - [sym_compile_time_if_expression] = STATE(2380), - [sym_is_expression] = STATE(2307), - [sym_in_expression] = STATE(2307), - [sym_enum_fetch] = STATE(2307), - [sym_match_expression] = STATE(2380), - [sym_select_expression] = STATE(2380), - [sym_lock_expression] = STATE(2380), - [sym_unsafe_expression] = STATE(2380), - [sym_sql_expression] = STATE(2380), - [sym_c_string_literal] = STATE(2308), - [sym_raw_string_literal] = STATE(2308), - [sym_interpreted_string_literal] = STATE(2308), + [sym__expression] = STATE(2632), + [sym__expression_without_blocks] = STATE(2347), + [sym__expression_with_blocks] = STATE(2347), + [sym_inc_expression] = STATE(2379), + [sym_dec_expression] = STATE(2379), + [sym_or_block_expression] = STATE(2379), + [sym_option_propagation_expression] = STATE(2379), + [sym_result_propagation_expression] = STATE(2379), + [sym_anon_struct_value_expression] = STATE(2378), + [sym_go_expression] = STATE(2379), + [sym_spawn_expression] = STATE(2379), + [sym_parenthesized_expression] = STATE(2379), + [sym_call_expression] = STATE(2379), + [sym_type_initializer] = STATE(2378), + [sym_function_literal] = STATE(2379), + [sym_reference_expression] = STATE(2377), + [sym_type_reference_expression] = STATE(3460), + [sym_unary_expression] = STATE(2379), + [sym_receive_expression] = STATE(2379), + [sym_binary_expression] = STATE(2379), + [sym_as_type_cast_expression] = STATE(2379), + [sym__max_group] = STATE(2379), + [sym_literal] = STATE(2392), + [sym_map_init_expression] = STATE(2378), + [sym_map_keyed_element] = STATE(2004), + [sym_array_creation] = STATE(2379), + [sym_fixed_array_creation] = STATE(2379), + [sym_selector_expression] = STATE(2379), + [sym_index_expression] = STATE(2379), + [sym_slice_expression] = STATE(2379), + [sym_if_expression] = STATE(2378), + [sym_compile_time_if_expression] = STATE(2378), + [sym_is_expression] = STATE(2379), + [sym_in_expression] = STATE(2379), + [sym_enum_fetch] = STATE(2379), + [sym_match_expression] = STATE(2378), + [sym_select_expression] = STATE(2378), + [sym_lock_expression] = STATE(2378), + [sym_unsafe_expression] = STATE(2378), + [sym_sql_expression] = STATE(2378), + [sym_c_string_literal] = STATE(2401), + [sym_raw_string_literal] = STATE(2401), + [sym_interpreted_string_literal] = STATE(2401), [sym_mutability_modifiers] = STATE(939), - [sym_plain_type] = STATE(4297), - [sym__plain_type_without_special] = STATE(2302), - [sym_anon_struct_type] = STATE(2303), - [sym_multi_return_type] = STATE(2302), - [sym_result_type] = STATE(2302), - [sym_option_type] = STATE(2302), - [sym_qualified_type] = STATE(3541), - [sym_fixed_array_type] = STATE(2303), - [sym_array_type] = STATE(2303), - [sym_pointer_type] = STATE(2303), - [sym_wrong_pointer_type] = STATE(2303), - [sym_map_type] = STATE(2303), - [sym_channel_type] = STATE(2303), - [sym_shared_type] = STATE(2303), - [sym_thread_type] = STATE(2303), - [sym_atomic_type] = STATE(2303), - [sym_generic_type] = STATE(2303), - [sym_function_type] = STATE(2303), - [aux_sym_map_init_expression_repeat1] = STATE(295), - [sym_identifier] = ACTIONS(1426), + [sym_plain_type] = STATE(4160), + [sym__plain_type_without_special] = STATE(2360), + [sym_anon_struct_type] = STATE(2362), + [sym_multi_return_type] = STATE(2360), + [sym_result_type] = STATE(2360), + [sym_option_type] = STATE(2360), + [sym_qualified_type] = STATE(3460), + [sym_fixed_array_type] = STATE(2362), + [sym_array_type] = STATE(2362), + [sym_pointer_type] = STATE(2362), + [sym_wrong_pointer_type] = STATE(2362), + [sym_map_type] = STATE(2362), + [sym_channel_type] = STATE(2362), + [sym_shared_type] = STATE(2362), + [sym_thread_type] = STATE(2362), + [sym_atomic_type] = STATE(2362), + [sym_generic_type] = STATE(2362), + [sym_function_type] = STATE(2362), + [aux_sym_map_init_expression_repeat1] = STATE(303), + [sym_identifier] = ACTIONS(1428), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1428), - [anon_sym_LBRACE] = ACTIONS(1430), - [anon_sym_RBRACE] = ACTIONS(1931), - [anon_sym_LPAREN] = ACTIONS(1432), - [anon_sym_fn] = ACTIONS(1434), - [anon_sym_PLUS] = ACTIONS(1436), - [anon_sym_DASH] = ACTIONS(1436), - [anon_sym_STAR] = ACTIONS(1438), - [anon_sym_struct] = ACTIONS(1440), + [anon_sym_DOT] = ACTIONS(1430), + [anon_sym_LBRACE] = ACTIONS(1432), + [anon_sym_RBRACE] = ACTIONS(1935), + [anon_sym_LPAREN] = ACTIONS(1434), + [anon_sym_fn] = ACTIONS(1436), + [anon_sym_PLUS] = ACTIONS(1438), + [anon_sym_DASH] = ACTIONS(1438), + [anon_sym_STAR] = ACTIONS(1440), + [anon_sym_struct] = ACTIONS(1442), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(1442), - [anon_sym_go] = ACTIONS(1444), - [anon_sym_spawn] = ACTIONS(1446), - [anon_sym_json_DOTdecode] = ACTIONS(1448), - [anon_sym_LBRACK2] = ACTIONS(1450), - [anon_sym_TILDE] = ACTIONS(1436), - [anon_sym_CARET] = ACTIONS(1436), - [anon_sym_AMP] = ACTIONS(1452), - [anon_sym_LT_DASH] = ACTIONS(1454), - [sym_none] = ACTIONS(1456), - [sym_true] = ACTIONS(1456), - [sym_false] = ACTIONS(1456), - [sym_nil] = ACTIONS(1456), - [anon_sym_if] = ACTIONS(1827), - [anon_sym_DOLLARif] = ACTIONS(1460), - [anon_sym_match] = ACTIONS(1462), - [anon_sym_select] = ACTIONS(1464), - [anon_sym_lock] = ACTIONS(1466), - [anon_sym_rlock] = ACTIONS(1466), - [anon_sym_unsafe] = ACTIONS(1833), - [anon_sym_sql] = ACTIONS(1470), - [sym_int_literal] = ACTIONS(1456), - [sym_float_literal] = ACTIONS(1472), - [sym_rune_literal] = ACTIONS(1472), - [sym_pseudo_compile_time_identifier] = ACTIONS(1474), + [anon_sym_BANG] = ACTIONS(1444), + [anon_sym_go] = ACTIONS(1446), + [anon_sym_spawn] = ACTIONS(1448), + [anon_sym_json_DOTdecode] = ACTIONS(1450), + [anon_sym_LBRACK2] = ACTIONS(1452), + [anon_sym_TILDE] = ACTIONS(1438), + [anon_sym_CARET] = ACTIONS(1438), + [anon_sym_AMP] = ACTIONS(1454), + [anon_sym_LT_DASH] = ACTIONS(1456), + [sym_none] = ACTIONS(1458), + [sym_true] = ACTIONS(1458), + [sym_false] = ACTIONS(1458), + [sym_nil] = ACTIONS(1458), + [anon_sym_if] = ACTIONS(1833), + [anon_sym_DOLLARif] = ACTIONS(1462), + [anon_sym_match] = ACTIONS(1464), + [anon_sym_select] = ACTIONS(1466), + [anon_sym_lock] = ACTIONS(1468), + [anon_sym_rlock] = ACTIONS(1468), + [anon_sym_unsafe] = ACTIONS(1839), + [anon_sym_sql] = ACTIONS(1472), + [sym_int_literal] = ACTIONS(1458), + [sym_float_literal] = ACTIONS(1474), + [sym_rune_literal] = ACTIONS(1474), + [sym_pseudo_compile_time_identifier] = ACTIONS(1476), [anon_sym_shared] = ACTIONS(83), [anon_sym_map_LBRACK] = ACTIONS(85), [anon_sym_chan] = ACTIONS(87), [anon_sym_thread] = ACTIONS(89), [anon_sym_atomic] = ACTIONS(91), - [sym___double_quote] = ACTIONS(1478), - [sym___single_quote] = ACTIONS(1480), - [sym___c_double_quote] = ACTIONS(1482), - [sym___c_single_quote] = ACTIONS(1484), - [sym___r_double_quote] = ACTIONS(1486), - [sym___r_single_quote] = ACTIONS(1488), + [sym___double_quote] = ACTIONS(1480), + [sym___single_quote] = ACTIONS(1482), + [sym___c_double_quote] = ACTIONS(1484), + [sym___c_single_quote] = ACTIONS(1486), + [sym___r_double_quote] = ACTIONS(1488), + [sym___r_single_quote] = ACTIONS(1490), }, [268] = { [sym_line_comment] = STATE(268), [sym_block_comment] = STATE(268), - [sym__expression] = STATE(2455), - [sym__expression_without_blocks] = STATE(2300), - [sym__expression_with_blocks] = STATE(2300), - [sym_inc_expression] = STATE(2307), - [sym_dec_expression] = STATE(2307), - [sym_or_block_expression] = STATE(2307), - [sym_option_propagation_expression] = STATE(2307), - [sym_result_propagation_expression] = STATE(2307), - [sym_anon_struct_value_expression] = STATE(2380), - [sym_go_expression] = STATE(2307), - [sym_spawn_expression] = STATE(2307), - [sym_parenthesized_expression] = STATE(2307), - [sym_call_expression] = STATE(2307), - [sym_type_initializer] = STATE(2380), - [sym_function_literal] = STATE(2307), - [sym_reference_expression] = STATE(2311), - [sym_type_reference_expression] = STATE(3541), - [sym_unary_expression] = STATE(2307), - [sym_receive_expression] = STATE(2307), - [sym_binary_expression] = STATE(2307), - [sym_as_type_cast_expression] = STATE(2307), - [sym__max_group] = STATE(2307), - [sym_literal] = STATE(2292), - [sym_map_init_expression] = STATE(2380), - [sym_array_creation] = STATE(2307), - [sym_fixed_array_creation] = STATE(2307), - [sym_selector_expression] = STATE(2307), - [sym_index_expression] = STATE(2307), - [sym_slice_expression] = STATE(2307), - [sym_if_expression] = STATE(2380), - [sym_compile_time_if_expression] = STATE(2380), - [sym_is_expression] = STATE(2307), - [sym_in_expression] = STATE(2307), - [sym_enum_fetch] = STATE(2307), - [sym_match_expression] = STATE(2380), - [sym_select_expression] = STATE(2380), - [sym_lock_expression] = STATE(2380), - [sym_unsafe_expression] = STATE(2380), - [sym_sql_expression] = STATE(2380), - [sym_c_string_literal] = STATE(2308), - [sym_raw_string_literal] = STATE(2308), - [sym_interpreted_string_literal] = STATE(2308), - [sym_mutability_modifiers] = STATE(824), - [sym_mutable_expression] = STATE(3922), - [sym_expression_list] = STATE(4021), - [sym_plain_type] = STATE(4297), - [sym__plain_type_without_special] = STATE(2302), - [sym_anon_struct_type] = STATE(2303), - [sym_multi_return_type] = STATE(2302), - [sym_result_type] = STATE(2302), - [sym_option_type] = STATE(2302), - [sym_qualified_type] = STATE(3541), - [sym_fixed_array_type] = STATE(2303), - [sym_array_type] = STATE(2303), - [sym_pointer_type] = STATE(2303), - [sym_wrong_pointer_type] = STATE(2303), - [sym_map_type] = STATE(2303), - [sym_channel_type] = STATE(2303), - [sym_shared_type] = STATE(2303), - [sym_thread_type] = STATE(2303), - [sym_atomic_type] = STATE(2303), - [sym_generic_type] = STATE(2303), - [sym_function_type] = STATE(2303), - [sym_block] = STATE(1995), - [sym_identifier] = ACTIONS(1807), + [sym__expression] = STATE(2558), + [sym__expression_without_blocks] = STATE(2347), + [sym__expression_with_blocks] = STATE(2347), + [sym_inc_expression] = STATE(2379), + [sym_dec_expression] = STATE(2379), + [sym_or_block_expression] = STATE(2379), + [sym_option_propagation_expression] = STATE(2379), + [sym_result_propagation_expression] = STATE(2379), + [sym_anon_struct_value_expression] = STATE(2378), + [sym_go_expression] = STATE(2379), + [sym_spawn_expression] = STATE(2379), + [sym_parenthesized_expression] = STATE(2379), + [sym_call_expression] = STATE(2379), + [sym_type_initializer] = STATE(2378), + [sym_function_literal] = STATE(2379), + [sym_reference_expression] = STATE(2377), + [sym_type_reference_expression] = STATE(3460), + [sym_unary_expression] = STATE(2379), + [sym_receive_expression] = STATE(2379), + [sym_binary_expression] = STATE(2379), + [sym_as_type_cast_expression] = STATE(2379), + [sym__max_group] = STATE(2379), + [sym_literal] = STATE(2392), + [sym_map_init_expression] = STATE(2378), + [sym_array_creation] = STATE(2379), + [sym_fixed_array_creation] = STATE(2379), + [sym_selector_expression] = STATE(2379), + [sym_index_expression] = STATE(2379), + [sym_slice_expression] = STATE(2379), + [sym_if_expression] = STATE(2378), + [sym_compile_time_if_expression] = STATE(2378), + [sym_is_expression] = STATE(2379), + [sym_in_expression] = STATE(2379), + [sym_enum_fetch] = STATE(2379), + [sym_match_expression] = STATE(2378), + [sym_select_expression] = STATE(2378), + [sym_lock_expression] = STATE(2378), + [sym_unsafe_expression] = STATE(2378), + [sym_sql_expression] = STATE(2378), + [sym_c_string_literal] = STATE(2401), + [sym_raw_string_literal] = STATE(2401), + [sym_interpreted_string_literal] = STATE(2401), + [sym_mutability_modifiers] = STATE(900), + [sym_mutable_expression] = STATE(3813), + [sym_expression_list] = STATE(4154), + [sym_plain_type] = STATE(4160), + [sym__plain_type_without_special] = STATE(2360), + [sym_anon_struct_type] = STATE(2362), + [sym_multi_return_type] = STATE(2360), + [sym_result_type] = STATE(2360), + [sym_option_type] = STATE(2360), + [sym_qualified_type] = STATE(3460), + [sym_fixed_array_type] = STATE(2362), + [sym_array_type] = STATE(2362), + [sym_pointer_type] = STATE(2362), + [sym_wrong_pointer_type] = STATE(2362), + [sym_map_type] = STATE(2362), + [sym_channel_type] = STATE(2362), + [sym_shared_type] = STATE(2362), + [sym_thread_type] = STATE(2362), + [sym_atomic_type] = STATE(2362), + [sym_generic_type] = STATE(2362), + [sym_function_type] = STATE(2362), + [sym_block] = STATE(2151), + [sym_identifier] = ACTIONS(1815), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1428), - [anon_sym_LBRACE] = ACTIONS(1933), - [anon_sym_LPAREN] = ACTIONS(1432), - [anon_sym_fn] = ACTIONS(1434), - [anon_sym_PLUS] = ACTIONS(1811), - [anon_sym_DASH] = ACTIONS(1811), - [anon_sym_STAR] = ACTIONS(1813), - [anon_sym_struct] = ACTIONS(1440), + [anon_sym_DOT] = ACTIONS(1430), + [anon_sym_LBRACE] = ACTIONS(1937), + [anon_sym_LPAREN] = ACTIONS(1434), + [anon_sym_fn] = ACTIONS(1436), + [anon_sym_PLUS] = ACTIONS(1817), + [anon_sym_DASH] = ACTIONS(1817), + [anon_sym_STAR] = ACTIONS(1819), + [anon_sym_struct] = ACTIONS(1442), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(1815), - [anon_sym_go] = ACTIONS(1817), - [anon_sym_spawn] = ACTIONS(1819), - [anon_sym_json_DOTdecode] = ACTIONS(1448), - [anon_sym_LBRACK2] = ACTIONS(1821), - [anon_sym_TILDE] = ACTIONS(1811), - [anon_sym_CARET] = ACTIONS(1811), - [anon_sym_AMP] = ACTIONS(1823), - [anon_sym_LT_DASH] = ACTIONS(1825), - [sym_none] = ACTIONS(1456), - [sym_true] = ACTIONS(1456), - [sym_false] = ACTIONS(1456), - [sym_nil] = ACTIONS(1456), - [anon_sym_if] = ACTIONS(1827), - [anon_sym_DOLLARif] = ACTIONS(1460), - [anon_sym_match] = ACTIONS(1462), - [anon_sym_select] = ACTIONS(1829), - [anon_sym_lock] = ACTIONS(1831), - [anon_sym_rlock] = ACTIONS(1831), - [anon_sym_unsafe] = ACTIONS(1833), - [anon_sym_sql] = ACTIONS(1470), - [sym_int_literal] = ACTIONS(1456), - [sym_float_literal] = ACTIONS(1472), - [sym_rune_literal] = ACTIONS(1472), - [sym_pseudo_compile_time_identifier] = ACTIONS(1474), + [anon_sym_BANG] = ACTIONS(1821), + [anon_sym_go] = ACTIONS(1823), + [anon_sym_spawn] = ACTIONS(1825), + [anon_sym_json_DOTdecode] = ACTIONS(1450), + [anon_sym_LBRACK2] = ACTIONS(1827), + [anon_sym_TILDE] = ACTIONS(1817), + [anon_sym_CARET] = ACTIONS(1817), + [anon_sym_AMP] = ACTIONS(1829), + [anon_sym_LT_DASH] = ACTIONS(1831), + [sym_none] = ACTIONS(1458), + [sym_true] = ACTIONS(1458), + [sym_false] = ACTIONS(1458), + [sym_nil] = ACTIONS(1458), + [anon_sym_if] = ACTIONS(1833), + [anon_sym_DOLLARif] = ACTIONS(1462), + [anon_sym_match] = ACTIONS(1464), + [anon_sym_select] = ACTIONS(1835), + [anon_sym_lock] = ACTIONS(1837), + [anon_sym_rlock] = ACTIONS(1837), + [anon_sym_unsafe] = ACTIONS(1839), + [anon_sym_sql] = ACTIONS(1472), + [sym_int_literal] = ACTIONS(1458), + [sym_float_literal] = ACTIONS(1474), + [sym_rune_literal] = ACTIONS(1474), + [sym_pseudo_compile_time_identifier] = ACTIONS(1476), [anon_sym_shared] = ACTIONS(83), [anon_sym_map_LBRACK] = ACTIONS(85), [anon_sym_chan] = ACTIONS(87), [anon_sym_thread] = ACTIONS(89), [anon_sym_atomic] = ACTIONS(91), - [sym___double_quote] = ACTIONS(1478), - [sym___single_quote] = ACTIONS(1480), - [sym___c_double_quote] = ACTIONS(1482), - [sym___c_single_quote] = ACTIONS(1484), - [sym___r_double_quote] = ACTIONS(1486), - [sym___r_single_quote] = ACTIONS(1488), + [sym___double_quote] = ACTIONS(1480), + [sym___single_quote] = ACTIONS(1482), + [sym___c_double_quote] = ACTIONS(1484), + [sym___c_single_quote] = ACTIONS(1486), + [sym___r_double_quote] = ACTIONS(1488), + [sym___r_single_quote] = ACTIONS(1490), }, [269] = { [sym_line_comment] = STATE(269), [sym_block_comment] = STATE(269), - [sym__expression] = STATE(2455), - [sym__expression_without_blocks] = STATE(2300), - [sym__expression_with_blocks] = STATE(2300), - [sym_inc_expression] = STATE(2307), - [sym_dec_expression] = STATE(2307), - [sym_or_block_expression] = STATE(2307), - [sym_option_propagation_expression] = STATE(2307), - [sym_result_propagation_expression] = STATE(2307), - [sym_anon_struct_value_expression] = STATE(2380), - [sym_go_expression] = STATE(2307), - [sym_spawn_expression] = STATE(2307), - [sym_parenthesized_expression] = STATE(2307), - [sym_call_expression] = STATE(2307), - [sym_type_initializer] = STATE(2380), - [sym_function_literal] = STATE(2307), - [sym_reference_expression] = STATE(2311), - [sym_type_reference_expression] = STATE(3541), - [sym_unary_expression] = STATE(2307), - [sym_receive_expression] = STATE(2307), - [sym_binary_expression] = STATE(2307), - [sym_as_type_cast_expression] = STATE(2307), - [sym__max_group] = STATE(2307), - [sym_literal] = STATE(2292), - [sym_map_init_expression] = STATE(2380), - [sym_array_creation] = STATE(2307), - [sym_fixed_array_creation] = STATE(2307), - [sym_selector_expression] = STATE(2307), - [sym_index_expression] = STATE(2307), - [sym_slice_expression] = STATE(2307), - [sym_if_expression] = STATE(2380), - [sym_compile_time_if_expression] = STATE(2380), - [sym_is_expression] = STATE(2307), - [sym_in_expression] = STATE(2307), - [sym_enum_fetch] = STATE(2307), - [sym_match_expression] = STATE(2380), - [sym_select_expression] = STATE(2380), - [sym_lock_expression] = STATE(2380), - [sym_unsafe_expression] = STATE(2380), - [sym_sql_expression] = STATE(2380), - [sym_c_string_literal] = STATE(2308), - [sym_raw_string_literal] = STATE(2308), - [sym_interpreted_string_literal] = STATE(2308), - [sym_mutability_modifiers] = STATE(824), - [sym_mutable_expression] = STATE(3922), - [sym_expression_list] = STATE(4081), - [sym_plain_type] = STATE(4297), - [sym__plain_type_without_special] = STATE(2302), - [sym_anon_struct_type] = STATE(2303), - [sym_multi_return_type] = STATE(2302), - [sym_result_type] = STATE(2302), - [sym_option_type] = STATE(2302), - [sym_qualified_type] = STATE(3541), - [sym_fixed_array_type] = STATE(2303), - [sym_array_type] = STATE(2303), - [sym_pointer_type] = STATE(2303), - [sym_wrong_pointer_type] = STATE(2303), - [sym_map_type] = STATE(2303), - [sym_channel_type] = STATE(2303), - [sym_shared_type] = STATE(2303), - [sym_thread_type] = STATE(2303), - [sym_atomic_type] = STATE(2303), - [sym_generic_type] = STATE(2303), - [sym_function_type] = STATE(2303), - [sym_block] = STATE(2049), - [sym_identifier] = ACTIONS(1807), + [sym__expression] = STATE(2558), + [sym__expression_without_blocks] = STATE(2347), + [sym__expression_with_blocks] = STATE(2347), + [sym_inc_expression] = STATE(2379), + [sym_dec_expression] = STATE(2379), + [sym_or_block_expression] = STATE(2379), + [sym_option_propagation_expression] = STATE(2379), + [sym_result_propagation_expression] = STATE(2379), + [sym_anon_struct_value_expression] = STATE(2378), + [sym_go_expression] = STATE(2379), + [sym_spawn_expression] = STATE(2379), + [sym_parenthesized_expression] = STATE(2379), + [sym_call_expression] = STATE(2379), + [sym_type_initializer] = STATE(2378), + [sym_function_literal] = STATE(2379), + [sym_reference_expression] = STATE(2377), + [sym_type_reference_expression] = STATE(3460), + [sym_unary_expression] = STATE(2379), + [sym_receive_expression] = STATE(2379), + [sym_binary_expression] = STATE(2379), + [sym_as_type_cast_expression] = STATE(2379), + [sym__max_group] = STATE(2379), + [sym_literal] = STATE(2392), + [sym_map_init_expression] = STATE(2378), + [sym_array_creation] = STATE(2379), + [sym_fixed_array_creation] = STATE(2379), + [sym_selector_expression] = STATE(2379), + [sym_index_expression] = STATE(2379), + [sym_slice_expression] = STATE(2379), + [sym_if_expression] = STATE(2378), + [sym_compile_time_if_expression] = STATE(2378), + [sym_is_expression] = STATE(2379), + [sym_in_expression] = STATE(2379), + [sym_enum_fetch] = STATE(2379), + [sym_match_expression] = STATE(2378), + [sym_select_expression] = STATE(2378), + [sym_lock_expression] = STATE(2378), + [sym_unsafe_expression] = STATE(2378), + [sym_sql_expression] = STATE(2378), + [sym_c_string_literal] = STATE(2401), + [sym_raw_string_literal] = STATE(2401), + [sym_interpreted_string_literal] = STATE(2401), + [sym_mutability_modifiers] = STATE(900), + [sym_mutable_expression] = STATE(3813), + [sym_expression_list] = STATE(4278), + [sym_plain_type] = STATE(4160), + [sym__plain_type_without_special] = STATE(2360), + [sym_anon_struct_type] = STATE(2362), + [sym_multi_return_type] = STATE(2360), + [sym_result_type] = STATE(2360), + [sym_option_type] = STATE(2360), + [sym_qualified_type] = STATE(3460), + [sym_fixed_array_type] = STATE(2362), + [sym_array_type] = STATE(2362), + [sym_pointer_type] = STATE(2362), + [sym_wrong_pointer_type] = STATE(2362), + [sym_map_type] = STATE(2362), + [sym_channel_type] = STATE(2362), + [sym_shared_type] = STATE(2362), + [sym_thread_type] = STATE(2362), + [sym_atomic_type] = STATE(2362), + [sym_generic_type] = STATE(2362), + [sym_function_type] = STATE(2362), + [sym_block] = STATE(2333), + [sym_identifier] = ACTIONS(1815), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1428), - [anon_sym_LBRACE] = ACTIONS(1935), - [anon_sym_LPAREN] = ACTIONS(1432), - [anon_sym_fn] = ACTIONS(1434), - [anon_sym_PLUS] = ACTIONS(1811), - [anon_sym_DASH] = ACTIONS(1811), - [anon_sym_STAR] = ACTIONS(1813), - [anon_sym_struct] = ACTIONS(1440), + [anon_sym_DOT] = ACTIONS(1430), + [anon_sym_LBRACE] = ACTIONS(1939), + [anon_sym_LPAREN] = ACTIONS(1434), + [anon_sym_fn] = ACTIONS(1436), + [anon_sym_PLUS] = ACTIONS(1817), + [anon_sym_DASH] = ACTIONS(1817), + [anon_sym_STAR] = ACTIONS(1819), + [anon_sym_struct] = ACTIONS(1442), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(1815), - [anon_sym_go] = ACTIONS(1817), - [anon_sym_spawn] = ACTIONS(1819), - [anon_sym_json_DOTdecode] = ACTIONS(1448), - [anon_sym_LBRACK2] = ACTIONS(1821), - [anon_sym_TILDE] = ACTIONS(1811), - [anon_sym_CARET] = ACTIONS(1811), - [anon_sym_AMP] = ACTIONS(1823), - [anon_sym_LT_DASH] = ACTIONS(1825), - [sym_none] = ACTIONS(1456), - [sym_true] = ACTIONS(1456), - [sym_false] = ACTIONS(1456), - [sym_nil] = ACTIONS(1456), - [anon_sym_if] = ACTIONS(1827), - [anon_sym_DOLLARif] = ACTIONS(1460), - [anon_sym_match] = ACTIONS(1462), - [anon_sym_select] = ACTIONS(1829), - [anon_sym_lock] = ACTIONS(1831), - [anon_sym_rlock] = ACTIONS(1831), - [anon_sym_unsafe] = ACTIONS(1833), - [anon_sym_sql] = ACTIONS(1470), - [sym_int_literal] = ACTIONS(1456), - [sym_float_literal] = ACTIONS(1472), - [sym_rune_literal] = ACTIONS(1472), - [sym_pseudo_compile_time_identifier] = ACTIONS(1474), + [anon_sym_BANG] = ACTIONS(1821), + [anon_sym_go] = ACTIONS(1823), + [anon_sym_spawn] = ACTIONS(1825), + [anon_sym_json_DOTdecode] = ACTIONS(1450), + [anon_sym_LBRACK2] = ACTIONS(1827), + [anon_sym_TILDE] = ACTIONS(1817), + [anon_sym_CARET] = ACTIONS(1817), + [anon_sym_AMP] = ACTIONS(1829), + [anon_sym_LT_DASH] = ACTIONS(1831), + [sym_none] = ACTIONS(1458), + [sym_true] = ACTIONS(1458), + [sym_false] = ACTIONS(1458), + [sym_nil] = ACTIONS(1458), + [anon_sym_if] = ACTIONS(1833), + [anon_sym_DOLLARif] = ACTIONS(1462), + [anon_sym_match] = ACTIONS(1464), + [anon_sym_select] = ACTIONS(1835), + [anon_sym_lock] = ACTIONS(1837), + [anon_sym_rlock] = ACTIONS(1837), + [anon_sym_unsafe] = ACTIONS(1839), + [anon_sym_sql] = ACTIONS(1472), + [sym_int_literal] = ACTIONS(1458), + [sym_float_literal] = ACTIONS(1474), + [sym_rune_literal] = ACTIONS(1474), + [sym_pseudo_compile_time_identifier] = ACTIONS(1476), [anon_sym_shared] = ACTIONS(83), [anon_sym_map_LBRACK] = ACTIONS(85), [anon_sym_chan] = ACTIONS(87), [anon_sym_thread] = ACTIONS(89), [anon_sym_atomic] = ACTIONS(91), - [sym___double_quote] = ACTIONS(1478), - [sym___single_quote] = ACTIONS(1480), - [sym___c_double_quote] = ACTIONS(1482), - [sym___c_single_quote] = ACTIONS(1484), - [sym___r_double_quote] = ACTIONS(1486), - [sym___r_single_quote] = ACTIONS(1488), + [sym___double_quote] = ACTIONS(1480), + [sym___single_quote] = ACTIONS(1482), + [sym___c_double_quote] = ACTIONS(1484), + [sym___c_single_quote] = ACTIONS(1486), + [sym___r_double_quote] = ACTIONS(1488), + [sym___r_single_quote] = ACTIONS(1490), }, [270] = { [sym_line_comment] = STATE(270), [sym_block_comment] = STATE(270), - [sym__expression] = STATE(2716), - [sym__expression_without_blocks] = STATE(2300), - [sym__expression_with_blocks] = STATE(2300), - [sym_inc_expression] = STATE(2307), - [sym_dec_expression] = STATE(2307), - [sym_or_block_expression] = STATE(2307), - [sym_option_propagation_expression] = STATE(2307), - [sym_result_propagation_expression] = STATE(2307), - [sym_anon_struct_value_expression] = STATE(2380), - [sym_go_expression] = STATE(2307), - [sym_spawn_expression] = STATE(2307), - [sym_parenthesized_expression] = STATE(2307), - [sym_call_expression] = STATE(2307), - [sym_type_initializer] = STATE(2380), - [sym_function_literal] = STATE(2307), - [sym_reference_expression] = STATE(2311), - [sym_type_reference_expression] = STATE(3541), - [sym_unary_expression] = STATE(2307), - [sym_receive_expression] = STATE(2307), - [sym_binary_expression] = STATE(2307), - [sym_as_type_cast_expression] = STATE(2307), - [sym__max_group] = STATE(2307), - [sym_literal] = STATE(2292), - [sym_map_init_expression] = STATE(2380), - [sym_map_keyed_element] = STATE(2001), - [sym_array_creation] = STATE(2307), - [sym_fixed_array_creation] = STATE(2307), - [sym_selector_expression] = STATE(2307), - [sym_index_expression] = STATE(2307), - [sym_slice_expression] = STATE(2307), - [sym_if_expression] = STATE(2380), - [sym_compile_time_if_expression] = STATE(2380), - [sym_is_expression] = STATE(2307), - [sym_in_expression] = STATE(2307), - [sym_enum_fetch] = STATE(2307), - [sym_match_expression] = STATE(2380), - [sym_select_expression] = STATE(2380), - [sym_lock_expression] = STATE(2380), - [sym_unsafe_expression] = STATE(2380), - [sym_sql_expression] = STATE(2380), - [sym_c_string_literal] = STATE(2308), - [sym_raw_string_literal] = STATE(2308), - [sym_interpreted_string_literal] = STATE(2308), - [sym_mutability_modifiers] = STATE(939), - [sym_plain_type] = STATE(4297), - [sym__plain_type_without_special] = STATE(2302), - [sym_anon_struct_type] = STATE(2303), - [sym_multi_return_type] = STATE(2302), - [sym_result_type] = STATE(2302), - [sym_option_type] = STATE(2302), - [sym_qualified_type] = STATE(3541), - [sym_fixed_array_type] = STATE(2303), - [sym_array_type] = STATE(2303), - [sym_pointer_type] = STATE(2303), - [sym_wrong_pointer_type] = STATE(2303), - [sym_map_type] = STATE(2303), - [sym_channel_type] = STATE(2303), - [sym_shared_type] = STATE(2303), - [sym_thread_type] = STATE(2303), - [sym_atomic_type] = STATE(2303), - [sym_generic_type] = STATE(2303), - [sym_function_type] = STATE(2303), - [aux_sym_map_init_expression_repeat1] = STATE(262), - [sym_identifier] = ACTIONS(1426), + [sym__expression] = STATE(2558), + [sym__expression_without_blocks] = STATE(2347), + [sym__expression_with_blocks] = STATE(2347), + [sym_inc_expression] = STATE(2379), + [sym_dec_expression] = STATE(2379), + [sym_or_block_expression] = STATE(2379), + [sym_option_propagation_expression] = STATE(2379), + [sym_result_propagation_expression] = STATE(2379), + [sym_anon_struct_value_expression] = STATE(2378), + [sym_go_expression] = STATE(2379), + [sym_spawn_expression] = STATE(2379), + [sym_parenthesized_expression] = STATE(2379), + [sym_call_expression] = STATE(2379), + [sym_type_initializer] = STATE(2378), + [sym_function_literal] = STATE(2379), + [sym_reference_expression] = STATE(2377), + [sym_type_reference_expression] = STATE(3460), + [sym_unary_expression] = STATE(2379), + [sym_receive_expression] = STATE(2379), + [sym_binary_expression] = STATE(2379), + [sym_as_type_cast_expression] = STATE(2379), + [sym__max_group] = STATE(2379), + [sym_literal] = STATE(2392), + [sym_map_init_expression] = STATE(2378), + [sym_array_creation] = STATE(2379), + [sym_fixed_array_creation] = STATE(2379), + [sym_selector_expression] = STATE(2379), + [sym_index_expression] = STATE(2379), + [sym_slice_expression] = STATE(2379), + [sym_if_expression] = STATE(2378), + [sym_compile_time_if_expression] = STATE(2378), + [sym_is_expression] = STATE(2379), + [sym_in_expression] = STATE(2379), + [sym_enum_fetch] = STATE(2379), + [sym_match_expression] = STATE(2378), + [sym_select_expression] = STATE(2378), + [sym_lock_expression] = STATE(2378), + [sym_unsafe_expression] = STATE(2378), + [sym_sql_expression] = STATE(2378), + [sym_c_string_literal] = STATE(2401), + [sym_raw_string_literal] = STATE(2401), + [sym_interpreted_string_literal] = STATE(2401), + [sym_mutability_modifiers] = STATE(900), + [sym_mutable_expression] = STATE(3813), + [sym_expression_list] = STATE(4068), + [sym_plain_type] = STATE(4160), + [sym__plain_type_without_special] = STATE(2360), + [sym_anon_struct_type] = STATE(2362), + [sym_multi_return_type] = STATE(2360), + [sym_result_type] = STATE(2360), + [sym_option_type] = STATE(2360), + [sym_qualified_type] = STATE(3460), + [sym_fixed_array_type] = STATE(2362), + [sym_array_type] = STATE(2362), + [sym_pointer_type] = STATE(2362), + [sym_wrong_pointer_type] = STATE(2362), + [sym_map_type] = STATE(2362), + [sym_channel_type] = STATE(2362), + [sym_shared_type] = STATE(2362), + [sym_thread_type] = STATE(2362), + [sym_atomic_type] = STATE(2362), + [sym_generic_type] = STATE(2362), + [sym_function_type] = STATE(2362), + [sym_block] = STATE(2626), + [sym_identifier] = ACTIONS(1815), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1428), - [anon_sym_LBRACE] = ACTIONS(1430), - [anon_sym_RBRACE] = ACTIONS(1937), - [anon_sym_LPAREN] = ACTIONS(1432), - [anon_sym_fn] = ACTIONS(1434), - [anon_sym_PLUS] = ACTIONS(1436), - [anon_sym_DASH] = ACTIONS(1436), - [anon_sym_STAR] = ACTIONS(1438), - [anon_sym_struct] = ACTIONS(1440), + [anon_sym_DOT] = ACTIONS(1430), + [anon_sym_LBRACE] = ACTIONS(1941), + [anon_sym_LPAREN] = ACTIONS(1434), + [anon_sym_fn] = ACTIONS(1436), + [anon_sym_PLUS] = ACTIONS(1817), + [anon_sym_DASH] = ACTIONS(1817), + [anon_sym_STAR] = ACTIONS(1819), + [anon_sym_struct] = ACTIONS(1442), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(1442), - [anon_sym_go] = ACTIONS(1444), - [anon_sym_spawn] = ACTIONS(1446), - [anon_sym_json_DOTdecode] = ACTIONS(1448), - [anon_sym_LBRACK2] = ACTIONS(1450), - [anon_sym_TILDE] = ACTIONS(1436), - [anon_sym_CARET] = ACTIONS(1436), - [anon_sym_AMP] = ACTIONS(1452), - [anon_sym_LT_DASH] = ACTIONS(1454), - [sym_none] = ACTIONS(1456), - [sym_true] = ACTIONS(1456), - [sym_false] = ACTIONS(1456), - [sym_nil] = ACTIONS(1456), - [anon_sym_if] = ACTIONS(1827), - [anon_sym_DOLLARif] = ACTIONS(1460), - [anon_sym_match] = ACTIONS(1462), - [anon_sym_select] = ACTIONS(1464), - [anon_sym_lock] = ACTIONS(1466), - [anon_sym_rlock] = ACTIONS(1466), - [anon_sym_unsafe] = ACTIONS(1833), - [anon_sym_sql] = ACTIONS(1470), - [sym_int_literal] = ACTIONS(1456), - [sym_float_literal] = ACTIONS(1472), - [sym_rune_literal] = ACTIONS(1472), - [sym_pseudo_compile_time_identifier] = ACTIONS(1474), + [anon_sym_BANG] = ACTIONS(1821), + [anon_sym_go] = ACTIONS(1823), + [anon_sym_spawn] = ACTIONS(1825), + [anon_sym_json_DOTdecode] = ACTIONS(1450), + [anon_sym_LBRACK2] = ACTIONS(1827), + [anon_sym_TILDE] = ACTIONS(1817), + [anon_sym_CARET] = ACTIONS(1817), + [anon_sym_AMP] = ACTIONS(1829), + [anon_sym_LT_DASH] = ACTIONS(1831), + [sym_none] = ACTIONS(1458), + [sym_true] = ACTIONS(1458), + [sym_false] = ACTIONS(1458), + [sym_nil] = ACTIONS(1458), + [anon_sym_if] = ACTIONS(1833), + [anon_sym_DOLLARif] = ACTIONS(1462), + [anon_sym_match] = ACTIONS(1464), + [anon_sym_select] = ACTIONS(1835), + [anon_sym_lock] = ACTIONS(1837), + [anon_sym_rlock] = ACTIONS(1837), + [anon_sym_unsafe] = ACTIONS(1839), + [anon_sym_sql] = ACTIONS(1472), + [sym_int_literal] = ACTIONS(1458), + [sym_float_literal] = ACTIONS(1474), + [sym_rune_literal] = ACTIONS(1474), + [sym_pseudo_compile_time_identifier] = ACTIONS(1476), [anon_sym_shared] = ACTIONS(83), [anon_sym_map_LBRACK] = ACTIONS(85), [anon_sym_chan] = ACTIONS(87), [anon_sym_thread] = ACTIONS(89), [anon_sym_atomic] = ACTIONS(91), - [sym___double_quote] = ACTIONS(1478), - [sym___single_quote] = ACTIONS(1480), - [sym___c_double_quote] = ACTIONS(1482), - [sym___c_single_quote] = ACTIONS(1484), - [sym___r_double_quote] = ACTIONS(1486), - [sym___r_single_quote] = ACTIONS(1488), + [sym___double_quote] = ACTIONS(1480), + [sym___single_quote] = ACTIONS(1482), + [sym___c_double_quote] = ACTIONS(1484), + [sym___c_single_quote] = ACTIONS(1486), + [sym___r_double_quote] = ACTIONS(1488), + [sym___r_single_quote] = ACTIONS(1490), }, [271] = { [sym_line_comment] = STATE(271), [sym_block_comment] = STATE(271), - [sym__expression] = STATE(2365), - [sym__expression_without_blocks] = STATE(2300), - [sym__expression_with_blocks] = STATE(2300), - [sym_inc_expression] = STATE(2307), - [sym_dec_expression] = STATE(2307), - [sym_or_block_expression] = STATE(2307), - [sym_option_propagation_expression] = STATE(2307), - [sym_result_propagation_expression] = STATE(2307), - [sym_anon_struct_value_expression] = STATE(2380), - [sym_go_expression] = STATE(2307), - [sym_spawn_expression] = STATE(2307), - [sym_parenthesized_expression] = STATE(2307), - [sym_call_expression] = STATE(2307), - [sym_type_initializer] = STATE(2380), - [sym_function_literal] = STATE(2307), - [sym_reference_expression] = STATE(2311), - [sym_type_reference_expression] = STATE(3541), - [sym_unary_expression] = STATE(2307), - [sym_receive_expression] = STATE(2307), - [sym_binary_expression] = STATE(2307), - [sym_as_type_cast_expression] = STATE(2307), - [sym__max_group] = STATE(2307), - [sym_literal] = STATE(2292), - [sym_map_init_expression] = STATE(2380), - [sym_array_creation] = STATE(2307), - [sym_fixed_array_creation] = STATE(2307), - [sym_selector_expression] = STATE(2307), - [sym_index_expression] = STATE(2307), - [sym_slice_expression] = STATE(2307), - [sym_if_expression] = STATE(2380), - [sym_compile_time_if_expression] = STATE(2380), - [sym_is_expression] = STATE(2307), - [sym_in_expression] = STATE(2307), - [sym_enum_fetch] = STATE(2307), - [sym_match_expression] = STATE(2380), - [sym_select_expression] = STATE(2380), - [sym_lock_expression] = STATE(2380), - [sym_unsafe_expression] = STATE(2380), - [sym_sql_expression] = STATE(2380), - [sym_c_string_literal] = STATE(2308), - [sym_raw_string_literal] = STATE(2308), - [sym_interpreted_string_literal] = STATE(2308), - [sym_mutability_modifiers] = STATE(765), - [sym_mutable_expression] = STATE(3823), - [sym_expression_list] = STATE(4480), - [sym_plain_type] = STATE(4297), - [sym__plain_type_without_special] = STATE(2302), - [sym_anon_struct_type] = STATE(2303), - [sym_multi_return_type] = STATE(2302), - [sym_result_type] = STATE(2302), - [sym_option_type] = STATE(2302), - [sym_qualified_type] = STATE(3541), - [sym_fixed_array_type] = STATE(2303), - [sym_array_type] = STATE(2303), - [sym_pointer_type] = STATE(2303), - [sym_wrong_pointer_type] = STATE(2303), - [sym_map_type] = STATE(2303), - [sym_channel_type] = STATE(2303), - [sym_shared_type] = STATE(2303), - [sym_thread_type] = STATE(2303), - [sym_atomic_type] = STATE(2303), - [sym_generic_type] = STATE(2303), - [sym_function_type] = STATE(2303), - [sym_var_declaration] = STATE(4245), - [sym_identifier] = ACTIONS(1807), + [sym__expression] = STATE(2632), + [sym__expression_without_blocks] = STATE(2347), + [sym__expression_with_blocks] = STATE(2347), + [sym_inc_expression] = STATE(2379), + [sym_dec_expression] = STATE(2379), + [sym_or_block_expression] = STATE(2379), + [sym_option_propagation_expression] = STATE(2379), + [sym_result_propagation_expression] = STATE(2379), + [sym_anon_struct_value_expression] = STATE(2378), + [sym_go_expression] = STATE(2379), + [sym_spawn_expression] = STATE(2379), + [sym_parenthesized_expression] = STATE(2379), + [sym_call_expression] = STATE(2379), + [sym_type_initializer] = STATE(2378), + [sym_function_literal] = STATE(2379), + [sym_reference_expression] = STATE(2377), + [sym_type_reference_expression] = STATE(3460), + [sym_unary_expression] = STATE(2379), + [sym_receive_expression] = STATE(2379), + [sym_binary_expression] = STATE(2379), + [sym_as_type_cast_expression] = STATE(2379), + [sym__max_group] = STATE(2379), + [sym_literal] = STATE(2392), + [sym_map_init_expression] = STATE(2378), + [sym_map_keyed_element] = STATE(2004), + [sym_array_creation] = STATE(2379), + [sym_fixed_array_creation] = STATE(2379), + [sym_selector_expression] = STATE(2379), + [sym_index_expression] = STATE(2379), + [sym_slice_expression] = STATE(2379), + [sym_if_expression] = STATE(2378), + [sym_compile_time_if_expression] = STATE(2378), + [sym_is_expression] = STATE(2379), + [sym_in_expression] = STATE(2379), + [sym_enum_fetch] = STATE(2379), + [sym_match_expression] = STATE(2378), + [sym_select_expression] = STATE(2378), + [sym_lock_expression] = STATE(2378), + [sym_unsafe_expression] = STATE(2378), + [sym_sql_expression] = STATE(2378), + [sym_c_string_literal] = STATE(2401), + [sym_raw_string_literal] = STATE(2401), + [sym_interpreted_string_literal] = STATE(2401), + [sym_mutability_modifiers] = STATE(939), + [sym_plain_type] = STATE(4160), + [sym__plain_type_without_special] = STATE(2360), + [sym_anon_struct_type] = STATE(2362), + [sym_multi_return_type] = STATE(2360), + [sym_result_type] = STATE(2360), + [sym_option_type] = STATE(2360), + [sym_qualified_type] = STATE(3460), + [sym_fixed_array_type] = STATE(2362), + [sym_array_type] = STATE(2362), + [sym_pointer_type] = STATE(2362), + [sym_wrong_pointer_type] = STATE(2362), + [sym_map_type] = STATE(2362), + [sym_channel_type] = STATE(2362), + [sym_shared_type] = STATE(2362), + [sym_thread_type] = STATE(2362), + [sym_atomic_type] = STATE(2362), + [sym_generic_type] = STATE(2362), + [sym_function_type] = STATE(2362), + [aux_sym_map_init_expression_repeat1] = STATE(303), + [sym_identifier] = ACTIONS(1428), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1428), - [anon_sym_LBRACE] = ACTIONS(1430), - [anon_sym_LPAREN] = ACTIONS(1432), - [anon_sym_fn] = ACTIONS(1434), - [anon_sym_PLUS] = ACTIONS(1811), - [anon_sym_DASH] = ACTIONS(1811), - [anon_sym_STAR] = ACTIONS(1813), - [anon_sym_struct] = ACTIONS(1440), + [anon_sym_DOT] = ACTIONS(1430), + [anon_sym_LBRACE] = ACTIONS(1432), + [anon_sym_RBRACE] = ACTIONS(1943), + [anon_sym_LPAREN] = ACTIONS(1434), + [anon_sym_fn] = ACTIONS(1436), + [anon_sym_PLUS] = ACTIONS(1438), + [anon_sym_DASH] = ACTIONS(1438), + [anon_sym_STAR] = ACTIONS(1440), + [anon_sym_struct] = ACTIONS(1442), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(1815), - [anon_sym_go] = ACTIONS(1817), - [anon_sym_spawn] = ACTIONS(1819), - [anon_sym_json_DOTdecode] = ACTIONS(1448), - [anon_sym_LBRACK2] = ACTIONS(1821), - [anon_sym_TILDE] = ACTIONS(1811), - [anon_sym_CARET] = ACTIONS(1811), - [anon_sym_AMP] = ACTIONS(1823), - [anon_sym_LT_DASH] = ACTIONS(1825), - [sym_none] = ACTIONS(1456), - [sym_true] = ACTIONS(1456), - [sym_false] = ACTIONS(1456), - [sym_nil] = ACTIONS(1456), - [anon_sym_if] = ACTIONS(1827), - [anon_sym_DOLLARif] = ACTIONS(1460), - [anon_sym_match] = ACTIONS(1462), - [anon_sym_select] = ACTIONS(1829), - [anon_sym_lock] = ACTIONS(1831), - [anon_sym_rlock] = ACTIONS(1831), - [anon_sym_unsafe] = ACTIONS(1833), - [anon_sym_sql] = ACTIONS(1470), - [sym_int_literal] = ACTIONS(1456), - [sym_float_literal] = ACTIONS(1472), - [sym_rune_literal] = ACTIONS(1472), - [sym_pseudo_compile_time_identifier] = ACTIONS(1474), + [anon_sym_BANG] = ACTIONS(1444), + [anon_sym_go] = ACTIONS(1446), + [anon_sym_spawn] = ACTIONS(1448), + [anon_sym_json_DOTdecode] = ACTIONS(1450), + [anon_sym_LBRACK2] = ACTIONS(1452), + [anon_sym_TILDE] = ACTIONS(1438), + [anon_sym_CARET] = ACTIONS(1438), + [anon_sym_AMP] = ACTIONS(1454), + [anon_sym_LT_DASH] = ACTIONS(1456), + [sym_none] = ACTIONS(1458), + [sym_true] = ACTIONS(1458), + [sym_false] = ACTIONS(1458), + [sym_nil] = ACTIONS(1458), + [anon_sym_if] = ACTIONS(1833), + [anon_sym_DOLLARif] = ACTIONS(1462), + [anon_sym_match] = ACTIONS(1464), + [anon_sym_select] = ACTIONS(1466), + [anon_sym_lock] = ACTIONS(1468), + [anon_sym_rlock] = ACTIONS(1468), + [anon_sym_unsafe] = ACTIONS(1839), + [anon_sym_sql] = ACTIONS(1472), + [sym_int_literal] = ACTIONS(1458), + [sym_float_literal] = ACTIONS(1474), + [sym_rune_literal] = ACTIONS(1474), + [sym_pseudo_compile_time_identifier] = ACTIONS(1476), [anon_sym_shared] = ACTIONS(83), [anon_sym_map_LBRACK] = ACTIONS(85), [anon_sym_chan] = ACTIONS(87), [anon_sym_thread] = ACTIONS(89), [anon_sym_atomic] = ACTIONS(91), - [sym___double_quote] = ACTIONS(1478), - [sym___single_quote] = ACTIONS(1480), - [sym___c_double_quote] = ACTIONS(1482), - [sym___c_single_quote] = ACTIONS(1484), - [sym___r_double_quote] = ACTIONS(1486), - [sym___r_single_quote] = ACTIONS(1488), + [sym___double_quote] = ACTIONS(1480), + [sym___single_quote] = ACTIONS(1482), + [sym___c_double_quote] = ACTIONS(1484), + [sym___c_single_quote] = ACTIONS(1486), + [sym___r_double_quote] = ACTIONS(1488), + [sym___r_single_quote] = ACTIONS(1490), }, [272] = { [sym_line_comment] = STATE(272), [sym_block_comment] = STATE(272), - [sym__expression] = STATE(2455), - [sym__expression_without_blocks] = STATE(2300), - [sym__expression_with_blocks] = STATE(2300), - [sym_inc_expression] = STATE(2307), - [sym_dec_expression] = STATE(2307), - [sym_or_block_expression] = STATE(2307), - [sym_option_propagation_expression] = STATE(2307), - [sym_result_propagation_expression] = STATE(2307), - [sym_anon_struct_value_expression] = STATE(2380), - [sym_go_expression] = STATE(2307), - [sym_spawn_expression] = STATE(2307), - [sym_parenthesized_expression] = STATE(2307), - [sym_call_expression] = STATE(2307), - [sym_type_initializer] = STATE(2380), - [sym_function_literal] = STATE(2307), - [sym_reference_expression] = STATE(2311), - [sym_type_reference_expression] = STATE(3541), - [sym_unary_expression] = STATE(2307), - [sym_receive_expression] = STATE(2307), - [sym_binary_expression] = STATE(2307), - [sym_as_type_cast_expression] = STATE(2307), - [sym__max_group] = STATE(2307), - [sym_literal] = STATE(2292), - [sym_map_init_expression] = STATE(2380), - [sym_array_creation] = STATE(2307), - [sym_fixed_array_creation] = STATE(2307), - [sym_selector_expression] = STATE(2307), - [sym_index_expression] = STATE(2307), - [sym_slice_expression] = STATE(2307), - [sym_if_expression] = STATE(2380), - [sym_compile_time_if_expression] = STATE(2380), - [sym_is_expression] = STATE(2307), - [sym_in_expression] = STATE(2307), - [sym_enum_fetch] = STATE(2307), - [sym_match_expression] = STATE(2380), - [sym_select_expression] = STATE(2380), - [sym_lock_expression] = STATE(2380), - [sym_unsafe_expression] = STATE(2380), - [sym_sql_expression] = STATE(2380), - [sym_c_string_literal] = STATE(2308), - [sym_raw_string_literal] = STATE(2308), - [sym_interpreted_string_literal] = STATE(2308), - [sym_mutability_modifiers] = STATE(824), - [sym_mutable_expression] = STATE(3922), - [sym_expression_list] = STATE(3999), - [sym_plain_type] = STATE(4297), - [sym__plain_type_without_special] = STATE(2302), - [sym_anon_struct_type] = STATE(2303), - [sym_multi_return_type] = STATE(2302), - [sym_result_type] = STATE(2302), - [sym_option_type] = STATE(2302), - [sym_qualified_type] = STATE(3541), - [sym_fixed_array_type] = STATE(2303), - [sym_array_type] = STATE(2303), - [sym_pointer_type] = STATE(2303), - [sym_wrong_pointer_type] = STATE(2303), - [sym_map_type] = STATE(2303), - [sym_channel_type] = STATE(2303), - [sym_shared_type] = STATE(2303), - [sym_thread_type] = STATE(2303), - [sym_atomic_type] = STATE(2303), - [sym_generic_type] = STATE(2303), - [sym_function_type] = STATE(2303), - [sym_block] = STATE(1802), - [sym_identifier] = ACTIONS(1807), + [sym__expression] = STATE(2292), + [sym__expression_without_blocks] = STATE(2347), + [sym__expression_with_blocks] = STATE(2347), + [sym_inc_expression] = STATE(2379), + [sym_dec_expression] = STATE(2379), + [sym_or_block_expression] = STATE(2379), + [sym_option_propagation_expression] = STATE(2379), + [sym_result_propagation_expression] = STATE(2379), + [sym_anon_struct_value_expression] = STATE(2378), + [sym_go_expression] = STATE(2379), + [sym_spawn_expression] = STATE(2379), + [sym_parenthesized_expression] = STATE(2379), + [sym_call_expression] = STATE(2379), + [sym_type_initializer] = STATE(2378), + [sym_function_literal] = STATE(2379), + [sym_reference_expression] = STATE(2377), + [sym_type_reference_expression] = STATE(3460), + [sym_unary_expression] = STATE(2379), + [sym_receive_expression] = STATE(2379), + [sym_binary_expression] = STATE(2379), + [sym_as_type_cast_expression] = STATE(2379), + [sym__max_group] = STATE(2379), + [sym_literal] = STATE(2392), + [sym_map_init_expression] = STATE(2378), + [sym_array_creation] = STATE(2379), + [sym_fixed_array_creation] = STATE(2379), + [sym_selector_expression] = STATE(2379), + [sym_index_expression] = STATE(2379), + [sym_slice_expression] = STATE(2379), + [sym_if_expression] = STATE(2378), + [sym_compile_time_if_expression] = STATE(2378), + [sym_is_expression] = STATE(2379), + [sym_in_expression] = STATE(2379), + [sym_enum_fetch] = STATE(2379), + [sym_match_expression] = STATE(2378), + [sym_select_expression] = STATE(2378), + [sym_lock_expression] = STATE(2378), + [sym_unsafe_expression] = STATE(2378), + [sym_sql_expression] = STATE(2378), + [sym_c_string_literal] = STATE(2401), + [sym_raw_string_literal] = STATE(2401), + [sym_interpreted_string_literal] = STATE(2401), + [sym_mutability_modifiers] = STATE(893), + [sym_mutable_expression] = STATE(3871), + [sym_expression_list] = STATE(4483), + [sym_plain_type] = STATE(4160), + [sym__plain_type_without_special] = STATE(2360), + [sym_anon_struct_type] = STATE(2362), + [sym_multi_return_type] = STATE(2360), + [sym_result_type] = STATE(2360), + [sym_option_type] = STATE(2360), + [sym_qualified_type] = STATE(3460), + [sym_fixed_array_type] = STATE(2362), + [sym_array_type] = STATE(2362), + [sym_pointer_type] = STATE(2362), + [sym_wrong_pointer_type] = STATE(2362), + [sym_map_type] = STATE(2362), + [sym_channel_type] = STATE(2362), + [sym_shared_type] = STATE(2362), + [sym_thread_type] = STATE(2362), + [sym_atomic_type] = STATE(2362), + [sym_generic_type] = STATE(2362), + [sym_function_type] = STATE(2362), + [sym_var_declaration] = STATE(4178), + [sym_identifier] = ACTIONS(1815), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1428), - [anon_sym_LBRACE] = ACTIONS(1939), - [anon_sym_LPAREN] = ACTIONS(1432), - [anon_sym_fn] = ACTIONS(1434), - [anon_sym_PLUS] = ACTIONS(1811), - [anon_sym_DASH] = ACTIONS(1811), - [anon_sym_STAR] = ACTIONS(1813), - [anon_sym_struct] = ACTIONS(1440), + [anon_sym_DOT] = ACTIONS(1430), + [anon_sym_LBRACE] = ACTIONS(1432), + [anon_sym_LPAREN] = ACTIONS(1434), + [anon_sym_fn] = ACTIONS(1436), + [anon_sym_PLUS] = ACTIONS(1817), + [anon_sym_DASH] = ACTIONS(1817), + [anon_sym_STAR] = ACTIONS(1819), + [anon_sym_struct] = ACTIONS(1442), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(1815), - [anon_sym_go] = ACTIONS(1817), - [anon_sym_spawn] = ACTIONS(1819), - [anon_sym_json_DOTdecode] = ACTIONS(1448), - [anon_sym_LBRACK2] = ACTIONS(1821), - [anon_sym_TILDE] = ACTIONS(1811), - [anon_sym_CARET] = ACTIONS(1811), - [anon_sym_AMP] = ACTIONS(1823), - [anon_sym_LT_DASH] = ACTIONS(1825), - [sym_none] = ACTIONS(1456), - [sym_true] = ACTIONS(1456), - [sym_false] = ACTIONS(1456), - [sym_nil] = ACTIONS(1456), - [anon_sym_if] = ACTIONS(1827), - [anon_sym_DOLLARif] = ACTIONS(1460), - [anon_sym_match] = ACTIONS(1462), - [anon_sym_select] = ACTIONS(1829), - [anon_sym_lock] = ACTIONS(1831), - [anon_sym_rlock] = ACTIONS(1831), - [anon_sym_unsafe] = ACTIONS(1833), - [anon_sym_sql] = ACTIONS(1470), - [sym_int_literal] = ACTIONS(1456), - [sym_float_literal] = ACTIONS(1472), - [sym_rune_literal] = ACTIONS(1472), - [sym_pseudo_compile_time_identifier] = ACTIONS(1474), + [anon_sym_BANG] = ACTIONS(1821), + [anon_sym_go] = ACTIONS(1823), + [anon_sym_spawn] = ACTIONS(1825), + [anon_sym_json_DOTdecode] = ACTIONS(1450), + [anon_sym_LBRACK2] = ACTIONS(1827), + [anon_sym_TILDE] = ACTIONS(1817), + [anon_sym_CARET] = ACTIONS(1817), + [anon_sym_AMP] = ACTIONS(1829), + [anon_sym_LT_DASH] = ACTIONS(1831), + [sym_none] = ACTIONS(1458), + [sym_true] = ACTIONS(1458), + [sym_false] = ACTIONS(1458), + [sym_nil] = ACTIONS(1458), + [anon_sym_if] = ACTIONS(1833), + [anon_sym_DOLLARif] = ACTIONS(1462), + [anon_sym_match] = ACTIONS(1464), + [anon_sym_select] = ACTIONS(1835), + [anon_sym_lock] = ACTIONS(1837), + [anon_sym_rlock] = ACTIONS(1837), + [anon_sym_unsafe] = ACTIONS(1839), + [anon_sym_sql] = ACTIONS(1472), + [sym_int_literal] = ACTIONS(1458), + [sym_float_literal] = ACTIONS(1474), + [sym_rune_literal] = ACTIONS(1474), + [sym_pseudo_compile_time_identifier] = ACTIONS(1476), [anon_sym_shared] = ACTIONS(83), [anon_sym_map_LBRACK] = ACTIONS(85), [anon_sym_chan] = ACTIONS(87), [anon_sym_thread] = ACTIONS(89), [anon_sym_atomic] = ACTIONS(91), - [sym___double_quote] = ACTIONS(1478), - [sym___single_quote] = ACTIONS(1480), - [sym___c_double_quote] = ACTIONS(1482), - [sym___c_single_quote] = ACTIONS(1484), - [sym___r_double_quote] = ACTIONS(1486), - [sym___r_single_quote] = ACTIONS(1488), + [sym___double_quote] = ACTIONS(1480), + [sym___single_quote] = ACTIONS(1482), + [sym___c_double_quote] = ACTIONS(1484), + [sym___c_single_quote] = ACTIONS(1486), + [sym___r_double_quote] = ACTIONS(1488), + [sym___r_single_quote] = ACTIONS(1490), }, [273] = { [sym_line_comment] = STATE(273), [sym_block_comment] = STATE(273), - [sym__expression] = STATE(2455), - [sym__expression_without_blocks] = STATE(2300), - [sym__expression_with_blocks] = STATE(2300), - [sym_inc_expression] = STATE(2307), - [sym_dec_expression] = STATE(2307), - [sym_or_block_expression] = STATE(2307), - [sym_option_propagation_expression] = STATE(2307), - [sym_result_propagation_expression] = STATE(2307), - [sym_anon_struct_value_expression] = STATE(2380), - [sym_go_expression] = STATE(2307), - [sym_spawn_expression] = STATE(2307), - [sym_parenthesized_expression] = STATE(2307), - [sym_call_expression] = STATE(2307), - [sym_type_initializer] = STATE(2380), - [sym_function_literal] = STATE(2307), - [sym_reference_expression] = STATE(2311), - [sym_type_reference_expression] = STATE(3541), - [sym_unary_expression] = STATE(2307), - [sym_receive_expression] = STATE(2307), - [sym_binary_expression] = STATE(2307), - [sym_as_type_cast_expression] = STATE(2307), - [sym__max_group] = STATE(2307), - [sym_literal] = STATE(2292), - [sym_map_init_expression] = STATE(2380), - [sym_array_creation] = STATE(2307), - [sym_fixed_array_creation] = STATE(2307), - [sym_selector_expression] = STATE(2307), - [sym_index_expression] = STATE(2307), - [sym_slice_expression] = STATE(2307), - [sym_if_expression] = STATE(2380), - [sym_compile_time_if_expression] = STATE(2380), - [sym_is_expression] = STATE(2307), - [sym_in_expression] = STATE(2307), - [sym_enum_fetch] = STATE(2307), - [sym_match_expression] = STATE(2380), - [sym_select_expression] = STATE(2380), - [sym_lock_expression] = STATE(2380), - [sym_unsafe_expression] = STATE(2380), - [sym_sql_expression] = STATE(2380), - [sym_c_string_literal] = STATE(2308), - [sym_raw_string_literal] = STATE(2308), - [sym_interpreted_string_literal] = STATE(2308), - [sym_mutability_modifiers] = STATE(824), - [sym_mutable_expression] = STATE(3922), - [sym_expression_list] = STATE(4163), - [sym_plain_type] = STATE(4297), - [sym__plain_type_without_special] = STATE(2302), - [sym_anon_struct_type] = STATE(2303), - [sym_multi_return_type] = STATE(2302), - [sym_result_type] = STATE(2302), - [sym_option_type] = STATE(2302), - [sym_qualified_type] = STATE(3541), - [sym_fixed_array_type] = STATE(2303), - [sym_array_type] = STATE(2303), - [sym_pointer_type] = STATE(2303), - [sym_wrong_pointer_type] = STATE(2303), - [sym_map_type] = STATE(2303), - [sym_channel_type] = STATE(2303), - [sym_shared_type] = STATE(2303), - [sym_thread_type] = STATE(2303), - [sym_atomic_type] = STATE(2303), - [sym_generic_type] = STATE(2303), - [sym_function_type] = STATE(2303), - [sym_block] = STATE(2387), - [sym_identifier] = ACTIONS(1807), + [sym__expression] = STATE(2326), + [sym__expression_without_blocks] = STATE(2347), + [sym__expression_with_blocks] = STATE(2347), + [sym_inc_expression] = STATE(2379), + [sym_dec_expression] = STATE(2379), + [sym_or_block_expression] = STATE(2379), + [sym_option_propagation_expression] = STATE(2379), + [sym_result_propagation_expression] = STATE(2379), + [sym_anon_struct_value_expression] = STATE(2378), + [sym_go_expression] = STATE(2379), + [sym_spawn_expression] = STATE(2379), + [sym_parenthesized_expression] = STATE(2379), + [sym_call_expression] = STATE(2379), + [sym_type_initializer] = STATE(2378), + [sym_function_literal] = STATE(2379), + [sym_reference_expression] = STATE(2377), + [sym_type_reference_expression] = STATE(3460), + [sym_unary_expression] = STATE(2379), + [sym_receive_expression] = STATE(2379), + [sym_binary_expression] = STATE(2379), + [sym_as_type_cast_expression] = STATE(2379), + [sym__max_group] = STATE(2379), + [sym_literal] = STATE(2392), + [sym_map_init_expression] = STATE(2378), + [sym_array_creation] = STATE(2379), + [sym_fixed_array_creation] = STATE(2379), + [sym_selector_expression] = STATE(2379), + [sym_index_expression] = STATE(2379), + [sym_slice_expression] = STATE(2379), + [sym_if_expression] = STATE(2378), + [sym_compile_time_if_expression] = STATE(2378), + [sym_is_expression] = STATE(2379), + [sym_in_expression] = STATE(2379), + [sym_enum_fetch] = STATE(2379), + [sym_match_expression] = STATE(2378), + [sym_select_expression] = STATE(2378), + [sym_lock_expression] = STATE(2378), + [sym_unsafe_expression] = STATE(2378), + [sym_sql_expression] = STATE(2378), + [sym_c_string_literal] = STATE(2401), + [sym_raw_string_literal] = STATE(2401), + [sym_interpreted_string_literal] = STATE(2401), + [sym_mutability_modifiers] = STATE(893), + [sym_mutable_expression] = STATE(3871), + [sym_expression_list] = STATE(4483), + [sym_plain_type] = STATE(4160), + [sym__plain_type_without_special] = STATE(2360), + [sym_anon_struct_type] = STATE(2362), + [sym_multi_return_type] = STATE(2360), + [sym_result_type] = STATE(2360), + [sym_option_type] = STATE(2360), + [sym_qualified_type] = STATE(3460), + [sym_fixed_array_type] = STATE(2362), + [sym_array_type] = STATE(2362), + [sym_pointer_type] = STATE(2362), + [sym_wrong_pointer_type] = STATE(2362), + [sym_map_type] = STATE(2362), + [sym_channel_type] = STATE(2362), + [sym_shared_type] = STATE(2362), + [sym_thread_type] = STATE(2362), + [sym_atomic_type] = STATE(2362), + [sym_generic_type] = STATE(2362), + [sym_function_type] = STATE(2362), + [sym_var_declaration] = STATE(4200), + [sym_identifier] = ACTIONS(1815), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1428), - [anon_sym_LBRACE] = ACTIONS(1941), - [anon_sym_LPAREN] = ACTIONS(1432), - [anon_sym_fn] = ACTIONS(1434), - [anon_sym_PLUS] = ACTIONS(1811), - [anon_sym_DASH] = ACTIONS(1811), - [anon_sym_STAR] = ACTIONS(1813), - [anon_sym_struct] = ACTIONS(1440), + [anon_sym_DOT] = ACTIONS(1430), + [anon_sym_LBRACE] = ACTIONS(1432), + [anon_sym_LPAREN] = ACTIONS(1434), + [anon_sym_fn] = ACTIONS(1436), + [anon_sym_PLUS] = ACTIONS(1817), + [anon_sym_DASH] = ACTIONS(1817), + [anon_sym_STAR] = ACTIONS(1819), + [anon_sym_struct] = ACTIONS(1442), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(1815), - [anon_sym_go] = ACTIONS(1817), - [anon_sym_spawn] = ACTIONS(1819), - [anon_sym_json_DOTdecode] = ACTIONS(1448), - [anon_sym_LBRACK2] = ACTIONS(1821), - [anon_sym_TILDE] = ACTIONS(1811), - [anon_sym_CARET] = ACTIONS(1811), - [anon_sym_AMP] = ACTIONS(1823), - [anon_sym_LT_DASH] = ACTIONS(1825), - [sym_none] = ACTIONS(1456), - [sym_true] = ACTIONS(1456), - [sym_false] = ACTIONS(1456), - [sym_nil] = ACTIONS(1456), - [anon_sym_if] = ACTIONS(1827), - [anon_sym_DOLLARif] = ACTIONS(1460), - [anon_sym_match] = ACTIONS(1462), - [anon_sym_select] = ACTIONS(1829), - [anon_sym_lock] = ACTIONS(1831), - [anon_sym_rlock] = ACTIONS(1831), - [anon_sym_unsafe] = ACTIONS(1833), - [anon_sym_sql] = ACTIONS(1470), - [sym_int_literal] = ACTIONS(1456), - [sym_float_literal] = ACTIONS(1472), - [sym_rune_literal] = ACTIONS(1472), - [sym_pseudo_compile_time_identifier] = ACTIONS(1474), + [anon_sym_BANG] = ACTIONS(1821), + [anon_sym_go] = ACTIONS(1823), + [anon_sym_spawn] = ACTIONS(1825), + [anon_sym_json_DOTdecode] = ACTIONS(1450), + [anon_sym_LBRACK2] = ACTIONS(1827), + [anon_sym_TILDE] = ACTIONS(1817), + [anon_sym_CARET] = ACTIONS(1817), + [anon_sym_AMP] = ACTIONS(1829), + [anon_sym_LT_DASH] = ACTIONS(1831), + [sym_none] = ACTIONS(1458), + [sym_true] = ACTIONS(1458), + [sym_false] = ACTIONS(1458), + [sym_nil] = ACTIONS(1458), + [anon_sym_if] = ACTIONS(1833), + [anon_sym_DOLLARif] = ACTIONS(1462), + [anon_sym_match] = ACTIONS(1464), + [anon_sym_select] = ACTIONS(1835), + [anon_sym_lock] = ACTIONS(1837), + [anon_sym_rlock] = ACTIONS(1837), + [anon_sym_unsafe] = ACTIONS(1839), + [anon_sym_sql] = ACTIONS(1472), + [sym_int_literal] = ACTIONS(1458), + [sym_float_literal] = ACTIONS(1474), + [sym_rune_literal] = ACTIONS(1474), + [sym_pseudo_compile_time_identifier] = ACTIONS(1476), [anon_sym_shared] = ACTIONS(83), [anon_sym_map_LBRACK] = ACTIONS(85), [anon_sym_chan] = ACTIONS(87), [anon_sym_thread] = ACTIONS(89), [anon_sym_atomic] = ACTIONS(91), - [sym___double_quote] = ACTIONS(1478), - [sym___single_quote] = ACTIONS(1480), - [sym___c_double_quote] = ACTIONS(1482), - [sym___c_single_quote] = ACTIONS(1484), - [sym___r_double_quote] = ACTIONS(1486), - [sym___r_single_quote] = ACTIONS(1488), + [sym___double_quote] = ACTIONS(1480), + [sym___single_quote] = ACTIONS(1482), + [sym___c_double_quote] = ACTIONS(1484), + [sym___c_single_quote] = ACTIONS(1486), + [sym___r_double_quote] = ACTIONS(1488), + [sym___r_single_quote] = ACTIONS(1490), }, [274] = { [sym_line_comment] = STATE(274), [sym_block_comment] = STATE(274), - [sym__expression] = STATE(2716), - [sym__expression_without_blocks] = STATE(2300), - [sym__expression_with_blocks] = STATE(2300), - [sym_inc_expression] = STATE(2307), - [sym_dec_expression] = STATE(2307), - [sym_or_block_expression] = STATE(2307), - [sym_option_propagation_expression] = STATE(2307), - [sym_result_propagation_expression] = STATE(2307), - [sym_anon_struct_value_expression] = STATE(2380), - [sym_go_expression] = STATE(2307), - [sym_spawn_expression] = STATE(2307), - [sym_parenthesized_expression] = STATE(2307), - [sym_call_expression] = STATE(2307), - [sym_type_initializer] = STATE(2380), - [sym_function_literal] = STATE(2307), - [sym_reference_expression] = STATE(2311), - [sym_type_reference_expression] = STATE(3541), - [sym_unary_expression] = STATE(2307), - [sym_receive_expression] = STATE(2307), - [sym_binary_expression] = STATE(2307), - [sym_as_type_cast_expression] = STATE(2307), - [sym__max_group] = STATE(2307), - [sym_literal] = STATE(2292), - [sym_map_init_expression] = STATE(2380), - [sym_map_keyed_element] = STATE(2001), - [sym_array_creation] = STATE(2307), - [sym_fixed_array_creation] = STATE(2307), - [sym_selector_expression] = STATE(2307), - [sym_index_expression] = STATE(2307), - [sym_slice_expression] = STATE(2307), - [sym_if_expression] = STATE(2380), - [sym_compile_time_if_expression] = STATE(2380), - [sym_is_expression] = STATE(2307), - [sym_in_expression] = STATE(2307), - [sym_enum_fetch] = STATE(2307), - [sym_match_expression] = STATE(2380), - [sym_select_expression] = STATE(2380), - [sym_lock_expression] = STATE(2380), - [sym_unsafe_expression] = STATE(2380), - [sym_sql_expression] = STATE(2380), - [sym_c_string_literal] = STATE(2308), - [sym_raw_string_literal] = STATE(2308), - [sym_interpreted_string_literal] = STATE(2308), - [sym_mutability_modifiers] = STATE(939), - [sym_plain_type] = STATE(4297), - [sym__plain_type_without_special] = STATE(2302), - [sym_anon_struct_type] = STATE(2303), - [sym_multi_return_type] = STATE(2302), - [sym_result_type] = STATE(2302), - [sym_option_type] = STATE(2302), - [sym_qualified_type] = STATE(3541), - [sym_fixed_array_type] = STATE(2303), - [sym_array_type] = STATE(2303), - [sym_pointer_type] = STATE(2303), - [sym_wrong_pointer_type] = STATE(2303), - [sym_map_type] = STATE(2303), - [sym_channel_type] = STATE(2303), - [sym_shared_type] = STATE(2303), - [sym_thread_type] = STATE(2303), - [sym_atomic_type] = STATE(2303), - [sym_generic_type] = STATE(2303), - [sym_function_type] = STATE(2303), - [aux_sym_map_init_expression_repeat1] = STATE(295), - [sym_identifier] = ACTIONS(1426), + [sym__expression] = STATE(2558), + [sym__expression_without_blocks] = STATE(2347), + [sym__expression_with_blocks] = STATE(2347), + [sym_inc_expression] = STATE(2379), + [sym_dec_expression] = STATE(2379), + [sym_or_block_expression] = STATE(2379), + [sym_option_propagation_expression] = STATE(2379), + [sym_result_propagation_expression] = STATE(2379), + [sym_anon_struct_value_expression] = STATE(2378), + [sym_go_expression] = STATE(2379), + [sym_spawn_expression] = STATE(2379), + [sym_parenthesized_expression] = STATE(2379), + [sym_call_expression] = STATE(2379), + [sym_type_initializer] = STATE(2378), + [sym_function_literal] = STATE(2379), + [sym_reference_expression] = STATE(2377), + [sym_type_reference_expression] = STATE(3460), + [sym_unary_expression] = STATE(2379), + [sym_receive_expression] = STATE(2379), + [sym_binary_expression] = STATE(2379), + [sym_as_type_cast_expression] = STATE(2379), + [sym__max_group] = STATE(2379), + [sym_literal] = STATE(2392), + [sym_map_init_expression] = STATE(2378), + [sym_array_creation] = STATE(2379), + [sym_fixed_array_creation] = STATE(2379), + [sym_selector_expression] = STATE(2379), + [sym_index_expression] = STATE(2379), + [sym_slice_expression] = STATE(2379), + [sym_if_expression] = STATE(2378), + [sym_compile_time_if_expression] = STATE(2378), + [sym_is_expression] = STATE(2379), + [sym_in_expression] = STATE(2379), + [sym_enum_fetch] = STATE(2379), + [sym_match_expression] = STATE(2378), + [sym_select_expression] = STATE(2378), + [sym_lock_expression] = STATE(2378), + [sym_unsafe_expression] = STATE(2378), + [sym_sql_expression] = STATE(2378), + [sym_c_string_literal] = STATE(2401), + [sym_raw_string_literal] = STATE(2401), + [sym_interpreted_string_literal] = STATE(2401), + [sym_mutability_modifiers] = STATE(900), + [sym_mutable_expression] = STATE(3813), + [sym_expression_list] = STATE(4145), + [sym_plain_type] = STATE(4160), + [sym__plain_type_without_special] = STATE(2360), + [sym_anon_struct_type] = STATE(2362), + [sym_multi_return_type] = STATE(2360), + [sym_result_type] = STATE(2360), + [sym_option_type] = STATE(2360), + [sym_qualified_type] = STATE(3460), + [sym_fixed_array_type] = STATE(2362), + [sym_array_type] = STATE(2362), + [sym_pointer_type] = STATE(2362), + [sym_wrong_pointer_type] = STATE(2362), + [sym_map_type] = STATE(2362), + [sym_channel_type] = STATE(2362), + [sym_shared_type] = STATE(2362), + [sym_thread_type] = STATE(2362), + [sym_atomic_type] = STATE(2362), + [sym_generic_type] = STATE(2362), + [sym_function_type] = STATE(2362), + [sym_block] = STATE(1095), + [sym_identifier] = ACTIONS(1815), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1428), - [anon_sym_LBRACE] = ACTIONS(1430), - [anon_sym_RBRACE] = ACTIONS(1943), - [anon_sym_LPAREN] = ACTIONS(1432), - [anon_sym_fn] = ACTIONS(1434), - [anon_sym_PLUS] = ACTIONS(1436), - [anon_sym_DASH] = ACTIONS(1436), - [anon_sym_STAR] = ACTIONS(1438), - [anon_sym_struct] = ACTIONS(1440), + [anon_sym_DOT] = ACTIONS(1430), + [anon_sym_LBRACE] = ACTIONS(1945), + [anon_sym_LPAREN] = ACTIONS(1434), + [anon_sym_fn] = ACTIONS(1436), + [anon_sym_PLUS] = ACTIONS(1817), + [anon_sym_DASH] = ACTIONS(1817), + [anon_sym_STAR] = ACTIONS(1819), + [anon_sym_struct] = ACTIONS(1442), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(1442), - [anon_sym_go] = ACTIONS(1444), - [anon_sym_spawn] = ACTIONS(1446), - [anon_sym_json_DOTdecode] = ACTIONS(1448), - [anon_sym_LBRACK2] = ACTIONS(1450), - [anon_sym_TILDE] = ACTIONS(1436), - [anon_sym_CARET] = ACTIONS(1436), - [anon_sym_AMP] = ACTIONS(1452), - [anon_sym_LT_DASH] = ACTIONS(1454), - [sym_none] = ACTIONS(1456), - [sym_true] = ACTIONS(1456), - [sym_false] = ACTIONS(1456), - [sym_nil] = ACTIONS(1456), - [anon_sym_if] = ACTIONS(1827), - [anon_sym_DOLLARif] = ACTIONS(1460), - [anon_sym_match] = ACTIONS(1462), - [anon_sym_select] = ACTIONS(1464), - [anon_sym_lock] = ACTIONS(1466), - [anon_sym_rlock] = ACTIONS(1466), - [anon_sym_unsafe] = ACTIONS(1833), - [anon_sym_sql] = ACTIONS(1470), - [sym_int_literal] = ACTIONS(1456), - [sym_float_literal] = ACTIONS(1472), - [sym_rune_literal] = ACTIONS(1472), - [sym_pseudo_compile_time_identifier] = ACTIONS(1474), + [anon_sym_BANG] = ACTIONS(1821), + [anon_sym_go] = ACTIONS(1823), + [anon_sym_spawn] = ACTIONS(1825), + [anon_sym_json_DOTdecode] = ACTIONS(1450), + [anon_sym_LBRACK2] = ACTIONS(1827), + [anon_sym_TILDE] = ACTIONS(1817), + [anon_sym_CARET] = ACTIONS(1817), + [anon_sym_AMP] = ACTIONS(1829), + [anon_sym_LT_DASH] = ACTIONS(1831), + [sym_none] = ACTIONS(1458), + [sym_true] = ACTIONS(1458), + [sym_false] = ACTIONS(1458), + [sym_nil] = ACTIONS(1458), + [anon_sym_if] = ACTIONS(1833), + [anon_sym_DOLLARif] = ACTIONS(1462), + [anon_sym_match] = ACTIONS(1464), + [anon_sym_select] = ACTIONS(1835), + [anon_sym_lock] = ACTIONS(1837), + [anon_sym_rlock] = ACTIONS(1837), + [anon_sym_unsafe] = ACTIONS(1839), + [anon_sym_sql] = ACTIONS(1472), + [sym_int_literal] = ACTIONS(1458), + [sym_float_literal] = ACTIONS(1474), + [sym_rune_literal] = ACTIONS(1474), + [sym_pseudo_compile_time_identifier] = ACTIONS(1476), [anon_sym_shared] = ACTIONS(83), [anon_sym_map_LBRACK] = ACTIONS(85), [anon_sym_chan] = ACTIONS(87), [anon_sym_thread] = ACTIONS(89), [anon_sym_atomic] = ACTIONS(91), - [sym___double_quote] = ACTIONS(1478), - [sym___single_quote] = ACTIONS(1480), - [sym___c_double_quote] = ACTIONS(1482), - [sym___c_single_quote] = ACTIONS(1484), - [sym___r_double_quote] = ACTIONS(1486), - [sym___r_single_quote] = ACTIONS(1488), + [sym___double_quote] = ACTIONS(1480), + [sym___single_quote] = ACTIONS(1482), + [sym___c_double_quote] = ACTIONS(1484), + [sym___c_single_quote] = ACTIONS(1486), + [sym___r_double_quote] = ACTIONS(1488), + [sym___r_single_quote] = ACTIONS(1490), }, [275] = { [sym_line_comment] = STATE(275), [sym_block_comment] = STATE(275), - [ts_builtin_sym_end] = ACTIONS(1915), - [sym_identifier] = ACTIONS(1917), - [anon_sym_LF] = ACTIONS(1917), - [anon_sym_CR] = ACTIONS(1917), - [anon_sym_CR_LF] = ACTIONS(1917), - [anon_sym_SLASH_SLASH] = ACTIONS(497), - [anon_sym_SLASH_STAR] = ACTIONS(499), - [anon_sym_DOT] = ACTIONS(1917), - [anon_sym_as] = ACTIONS(1917), - [anon_sym_LBRACE] = ACTIONS(1917), - [anon_sym_COMMA] = ACTIONS(1917), - [anon_sym_const] = ACTIONS(1917), - [anon_sym_LPAREN] = ACTIONS(1917), - [anon_sym_EQ] = ACTIONS(1917), - [anon_sym___global] = ACTIONS(1917), - [anon_sym_type] = ACTIONS(1917), - [anon_sym_PIPE] = ACTIONS(1917), - [anon_sym_fn] = ACTIONS(1917), - [anon_sym_PLUS] = ACTIONS(1917), - [anon_sym_DASH] = ACTIONS(1917), - [anon_sym_STAR] = ACTIONS(1917), - [anon_sym_SLASH] = ACTIONS(1917), - [anon_sym_PERCENT] = ACTIONS(1917), - [anon_sym_LT] = ACTIONS(1917), - [anon_sym_GT] = ACTIONS(1917), - [anon_sym_EQ_EQ] = ACTIONS(1917), - [anon_sym_BANG_EQ] = ACTIONS(1917), - [anon_sym_LT_EQ] = ACTIONS(1917), - [anon_sym_GT_EQ] = ACTIONS(1917), - [anon_sym_LBRACK] = ACTIONS(1915), - [anon_sym_struct] = ACTIONS(1917), - [anon_sym_union] = ACTIONS(1917), - [anon_sym_pub] = ACTIONS(1917), - [anon_sym_mut] = ACTIONS(1917), - [anon_sym_enum] = ACTIONS(1917), - [anon_sym_interface] = ACTIONS(1917), - [anon_sym_PLUS_PLUS] = ACTIONS(1917), - [anon_sym_DASH_DASH] = ACTIONS(1917), - [anon_sym_QMARK] = ACTIONS(1917), - [anon_sym_BANG] = ACTIONS(1917), - [anon_sym_go] = ACTIONS(1917), - [anon_sym_spawn] = ACTIONS(1917), - [anon_sym_json_DOTdecode] = ACTIONS(1917), - [anon_sym_LBRACK2] = ACTIONS(1917), - [anon_sym_TILDE] = ACTIONS(1917), - [anon_sym_CARET] = ACTIONS(1917), - [anon_sym_AMP] = ACTIONS(1917), - [anon_sym_LT_DASH] = ACTIONS(1917), - [anon_sym_LT_LT] = ACTIONS(1917), - [anon_sym_GT_GT] = ACTIONS(1917), - [anon_sym_GT_GT_GT] = ACTIONS(1917), - [anon_sym_AMP_CARET] = ACTIONS(1917), - [anon_sym_AMP_AMP] = ACTIONS(1917), - [anon_sym_PIPE_PIPE] = ACTIONS(1917), - [anon_sym_or] = ACTIONS(1917), - [sym_none] = ACTIONS(1917), - [sym_true] = ACTIONS(1917), - [sym_false] = ACTIONS(1917), - [sym_nil] = ACTIONS(1917), - [anon_sym_QMARK_DOT] = ACTIONS(1917), - [anon_sym_POUND_LBRACK] = ACTIONS(1917), - [anon_sym_if] = ACTIONS(1917), - [anon_sym_DOLLARif] = ACTIONS(1917), - [anon_sym_DOLLARelse] = ACTIONS(1917), - [anon_sym_is] = ACTIONS(1917), - [anon_sym_BANGis] = ACTIONS(1917), - [anon_sym_in] = ACTIONS(1917), - [anon_sym_BANGin] = ACTIONS(1917), - [anon_sym_match] = ACTIONS(1917), - [anon_sym_select] = ACTIONS(1917), - [anon_sym_STAR_EQ] = ACTIONS(1917), - [anon_sym_SLASH_EQ] = ACTIONS(1917), - [anon_sym_PERCENT_EQ] = ACTIONS(1917), - [anon_sym_LT_LT_EQ] = ACTIONS(1917), - [anon_sym_GT_GT_EQ] = ACTIONS(1917), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(1917), - [anon_sym_AMP_EQ] = ACTIONS(1917), - [anon_sym_AMP_CARET_EQ] = ACTIONS(1917), - [anon_sym_PLUS_EQ] = ACTIONS(1917), - [anon_sym_DASH_EQ] = ACTIONS(1917), - [anon_sym_PIPE_EQ] = ACTIONS(1917), - [anon_sym_CARET_EQ] = ACTIONS(1917), - [anon_sym_COLON_EQ] = ACTIONS(1917), - [anon_sym_lock] = ACTIONS(1917), - [anon_sym_rlock] = ACTIONS(1917), - [anon_sym_unsafe] = ACTIONS(1917), - [anon_sym_sql] = ACTIONS(1917), - [sym_int_literal] = ACTIONS(1917), - [sym_float_literal] = ACTIONS(1917), - [sym_rune_literal] = ACTIONS(1917), - [sym_pseudo_compile_time_identifier] = ACTIONS(1917), - [anon_sym_shared] = ACTIONS(1917), - [anon_sym_map_LBRACK] = ACTIONS(1917), - [anon_sym_chan] = ACTIONS(1917), - [anon_sym_thread] = ACTIONS(1917), - [anon_sym_atomic] = ACTIONS(1917), - [anon_sym_assert] = ACTIONS(1917), - [anon_sym_defer] = ACTIONS(1917), - [anon_sym_goto] = ACTIONS(1917), - [anon_sym_break] = ACTIONS(1917), - [anon_sym_continue] = ACTIONS(1917), - [anon_sym_return] = ACTIONS(1917), - [anon_sym_DOLLARfor] = ACTIONS(1917), - [anon_sym_for] = ACTIONS(1917), - [anon_sym_POUND] = ACTIONS(1917), - [anon_sym_asm] = ACTIONS(1917), - [anon_sym_AT_LBRACK] = ACTIONS(1917), - [sym___double_quote] = ACTIONS(1917), - [sym___single_quote] = ACTIONS(1917), - [sym___c_double_quote] = ACTIONS(1917), - [sym___c_single_quote] = ACTIONS(1917), - [sym___r_double_quote] = ACTIONS(1917), - [sym___r_single_quote] = ACTIONS(1917), + [sym__expression] = STATE(2288), + [sym__expression_without_blocks] = STATE(2347), + [sym__expression_with_blocks] = STATE(2347), + [sym_inc_expression] = STATE(2379), + [sym_dec_expression] = STATE(2379), + [sym_or_block_expression] = STATE(2379), + [sym_option_propagation_expression] = STATE(2379), + [sym_result_propagation_expression] = STATE(2379), + [sym_anon_struct_value_expression] = STATE(2378), + [sym_go_expression] = STATE(2379), + [sym_spawn_expression] = STATE(2379), + [sym_parenthesized_expression] = STATE(2379), + [sym_call_expression] = STATE(2379), + [sym_type_initializer] = STATE(2378), + [sym_function_literal] = STATE(2379), + [sym_reference_expression] = STATE(2377), + [sym_type_reference_expression] = STATE(3460), + [sym_unary_expression] = STATE(2379), + [sym_receive_expression] = STATE(2379), + [sym_binary_expression] = STATE(2379), + [sym_as_type_cast_expression] = STATE(2379), + [sym__max_group] = STATE(2379), + [sym_literal] = STATE(2392), + [sym_map_init_expression] = STATE(2378), + [sym_array_creation] = STATE(2379), + [sym_fixed_array_creation] = STATE(2379), + [sym_selector_expression] = STATE(2379), + [sym_index_expression] = STATE(2379), + [sym_slice_expression] = STATE(2379), + [sym_if_expression] = STATE(2378), + [sym_compile_time_if_expression] = STATE(2378), + [sym_is_expression] = STATE(2379), + [sym_in_expression] = STATE(2379), + [sym_enum_fetch] = STATE(2379), + [sym_match_expression] = STATE(2378), + [sym_select_expression] = STATE(2378), + [sym_lock_expression] = STATE(2378), + [sym_unsafe_expression] = STATE(2378), + [sym_sql_expression] = STATE(2378), + [sym_c_string_literal] = STATE(2401), + [sym_raw_string_literal] = STATE(2401), + [sym_interpreted_string_literal] = STATE(2401), + [sym_mutability_modifiers] = STATE(893), + [sym_mutable_expression] = STATE(3871), + [sym_expression_list] = STATE(4483), + [sym_plain_type] = STATE(4160), + [sym__plain_type_without_special] = STATE(2360), + [sym_anon_struct_type] = STATE(2362), + [sym_multi_return_type] = STATE(2360), + [sym_result_type] = STATE(2360), + [sym_option_type] = STATE(2360), + [sym_qualified_type] = STATE(3460), + [sym_fixed_array_type] = STATE(2362), + [sym_array_type] = STATE(2362), + [sym_pointer_type] = STATE(2362), + [sym_wrong_pointer_type] = STATE(2362), + [sym_map_type] = STATE(2362), + [sym_channel_type] = STATE(2362), + [sym_shared_type] = STATE(2362), + [sym_thread_type] = STATE(2362), + [sym_atomic_type] = STATE(2362), + [sym_generic_type] = STATE(2362), + [sym_function_type] = STATE(2362), + [sym_var_declaration] = STATE(4075), + [sym_identifier] = ACTIONS(1815), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(1430), + [anon_sym_LBRACE] = ACTIONS(1432), + [anon_sym_LPAREN] = ACTIONS(1434), + [anon_sym_fn] = ACTIONS(1436), + [anon_sym_PLUS] = ACTIONS(1817), + [anon_sym_DASH] = ACTIONS(1817), + [anon_sym_STAR] = ACTIONS(1819), + [anon_sym_struct] = ACTIONS(1442), + [anon_sym_mut] = ACTIONS(41), + [anon_sym_QMARK] = ACTIONS(47), + [anon_sym_BANG] = ACTIONS(1821), + [anon_sym_go] = ACTIONS(1823), + [anon_sym_spawn] = ACTIONS(1825), + [anon_sym_json_DOTdecode] = ACTIONS(1450), + [anon_sym_LBRACK2] = ACTIONS(1827), + [anon_sym_TILDE] = ACTIONS(1817), + [anon_sym_CARET] = ACTIONS(1817), + [anon_sym_AMP] = ACTIONS(1829), + [anon_sym_LT_DASH] = ACTIONS(1831), + [sym_none] = ACTIONS(1458), + [sym_true] = ACTIONS(1458), + [sym_false] = ACTIONS(1458), + [sym_nil] = ACTIONS(1458), + [anon_sym_if] = ACTIONS(1833), + [anon_sym_DOLLARif] = ACTIONS(1462), + [anon_sym_match] = ACTIONS(1464), + [anon_sym_select] = ACTIONS(1835), + [anon_sym_lock] = ACTIONS(1837), + [anon_sym_rlock] = ACTIONS(1837), + [anon_sym_unsafe] = ACTIONS(1839), + [anon_sym_sql] = ACTIONS(1472), + [sym_int_literal] = ACTIONS(1458), + [sym_float_literal] = ACTIONS(1474), + [sym_rune_literal] = ACTIONS(1474), + [sym_pseudo_compile_time_identifier] = ACTIONS(1476), + [anon_sym_shared] = ACTIONS(83), + [anon_sym_map_LBRACK] = ACTIONS(85), + [anon_sym_chan] = ACTIONS(87), + [anon_sym_thread] = ACTIONS(89), + [anon_sym_atomic] = ACTIONS(91), + [sym___double_quote] = ACTIONS(1480), + [sym___single_quote] = ACTIONS(1482), + [sym___c_double_quote] = ACTIONS(1484), + [sym___c_single_quote] = ACTIONS(1486), + [sym___r_double_quote] = ACTIONS(1488), + [sym___r_single_quote] = ACTIONS(1490), }, [276] = { [sym_line_comment] = STATE(276), [sym_block_comment] = STATE(276), - [sym__expression] = STATE(2455), - [sym__expression_without_blocks] = STATE(2300), - [sym__expression_with_blocks] = STATE(2300), - [sym_inc_expression] = STATE(2307), - [sym_dec_expression] = STATE(2307), - [sym_or_block_expression] = STATE(2307), - [sym_option_propagation_expression] = STATE(2307), - [sym_result_propagation_expression] = STATE(2307), - [sym_anon_struct_value_expression] = STATE(2380), - [sym_go_expression] = STATE(2307), - [sym_spawn_expression] = STATE(2307), - [sym_parenthesized_expression] = STATE(2307), - [sym_call_expression] = STATE(2307), - [sym_type_initializer] = STATE(2380), - [sym_function_literal] = STATE(2307), - [sym_reference_expression] = STATE(2311), - [sym_type_reference_expression] = STATE(3541), - [sym_unary_expression] = STATE(2307), - [sym_receive_expression] = STATE(2307), - [sym_binary_expression] = STATE(2307), - [sym_as_type_cast_expression] = STATE(2307), - [sym__max_group] = STATE(2307), - [sym_literal] = STATE(2292), - [sym_map_init_expression] = STATE(2380), - [sym_array_creation] = STATE(2307), - [sym_fixed_array_creation] = STATE(2307), - [sym_selector_expression] = STATE(2307), - [sym_index_expression] = STATE(2307), - [sym_slice_expression] = STATE(2307), - [sym_if_expression] = STATE(2380), - [sym_compile_time_if_expression] = STATE(2380), - [sym_is_expression] = STATE(2307), - [sym_in_expression] = STATE(2307), - [sym_enum_fetch] = STATE(2307), - [sym_match_expression] = STATE(2380), - [sym_select_expression] = STATE(2380), - [sym_lock_expression] = STATE(2380), - [sym_unsafe_expression] = STATE(2380), - [sym_sql_expression] = STATE(2380), - [sym_c_string_literal] = STATE(2308), - [sym_raw_string_literal] = STATE(2308), - [sym_interpreted_string_literal] = STATE(2308), - [sym_mutability_modifiers] = STATE(824), - [sym_mutable_expression] = STATE(3922), - [sym_expression_list] = STATE(4163), - [sym_plain_type] = STATE(4297), - [sym__plain_type_without_special] = STATE(2302), - [sym_anon_struct_type] = STATE(2303), - [sym_multi_return_type] = STATE(2302), - [sym_result_type] = STATE(2302), - [sym_option_type] = STATE(2302), - [sym_qualified_type] = STATE(3541), - [sym_fixed_array_type] = STATE(2303), - [sym_array_type] = STATE(2303), - [sym_pointer_type] = STATE(2303), - [sym_wrong_pointer_type] = STATE(2303), - [sym_map_type] = STATE(2303), - [sym_channel_type] = STATE(2303), - [sym_shared_type] = STATE(2303), - [sym_thread_type] = STATE(2303), - [sym_atomic_type] = STATE(2303), - [sym_generic_type] = STATE(2303), - [sym_function_type] = STATE(2303), - [sym_block] = STATE(2387), - [sym_identifier] = ACTIONS(1807), + [sym__expression] = STATE(2558), + [sym__expression_without_blocks] = STATE(2347), + [sym__expression_with_blocks] = STATE(2347), + [sym_inc_expression] = STATE(2379), + [sym_dec_expression] = STATE(2379), + [sym_or_block_expression] = STATE(2379), + [sym_option_propagation_expression] = STATE(2379), + [sym_result_propagation_expression] = STATE(2379), + [sym_anon_struct_value_expression] = STATE(2378), + [sym_go_expression] = STATE(2379), + [sym_spawn_expression] = STATE(2379), + [sym_parenthesized_expression] = STATE(2379), + [sym_call_expression] = STATE(2379), + [sym_type_initializer] = STATE(2378), + [sym_function_literal] = STATE(2379), + [sym_reference_expression] = STATE(2377), + [sym_type_reference_expression] = STATE(3460), + [sym_unary_expression] = STATE(2379), + [sym_receive_expression] = STATE(2379), + [sym_binary_expression] = STATE(2379), + [sym_as_type_cast_expression] = STATE(2379), + [sym__max_group] = STATE(2379), + [sym_literal] = STATE(2392), + [sym_map_init_expression] = STATE(2378), + [sym_array_creation] = STATE(2379), + [sym_fixed_array_creation] = STATE(2379), + [sym_selector_expression] = STATE(2379), + [sym_index_expression] = STATE(2379), + [sym_slice_expression] = STATE(2379), + [sym_if_expression] = STATE(2378), + [sym_compile_time_if_expression] = STATE(2378), + [sym_is_expression] = STATE(2379), + [sym_in_expression] = STATE(2379), + [sym_enum_fetch] = STATE(2379), + [sym_match_expression] = STATE(2378), + [sym_select_expression] = STATE(2378), + [sym_lock_expression] = STATE(2378), + [sym_unsafe_expression] = STATE(2378), + [sym_sql_expression] = STATE(2378), + [sym_c_string_literal] = STATE(2401), + [sym_raw_string_literal] = STATE(2401), + [sym_interpreted_string_literal] = STATE(2401), + [sym_mutability_modifiers] = STATE(900), + [sym_mutable_expression] = STATE(3813), + [sym_expression_list] = STATE(4154), + [sym_plain_type] = STATE(4160), + [sym__plain_type_without_special] = STATE(2360), + [sym_anon_struct_type] = STATE(2362), + [sym_multi_return_type] = STATE(2360), + [sym_result_type] = STATE(2360), + [sym_option_type] = STATE(2360), + [sym_qualified_type] = STATE(3460), + [sym_fixed_array_type] = STATE(2362), + [sym_array_type] = STATE(2362), + [sym_pointer_type] = STATE(2362), + [sym_wrong_pointer_type] = STATE(2362), + [sym_map_type] = STATE(2362), + [sym_channel_type] = STATE(2362), + [sym_shared_type] = STATE(2362), + [sym_thread_type] = STATE(2362), + [sym_atomic_type] = STATE(2362), + [sym_generic_type] = STATE(2362), + [sym_function_type] = STATE(2362), + [sym_block] = STATE(2151), + [sym_identifier] = ACTIONS(1815), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1428), - [anon_sym_LBRACE] = ACTIONS(1945), - [anon_sym_LPAREN] = ACTIONS(1432), - [anon_sym_fn] = ACTIONS(1434), - [anon_sym_PLUS] = ACTIONS(1811), - [anon_sym_DASH] = ACTIONS(1811), - [anon_sym_STAR] = ACTIONS(1813), - [anon_sym_struct] = ACTIONS(1440), + [anon_sym_DOT] = ACTIONS(1430), + [anon_sym_LBRACE] = ACTIONS(1947), + [anon_sym_LPAREN] = ACTIONS(1434), + [anon_sym_fn] = ACTIONS(1436), + [anon_sym_PLUS] = ACTIONS(1817), + [anon_sym_DASH] = ACTIONS(1817), + [anon_sym_STAR] = ACTIONS(1819), + [anon_sym_struct] = ACTIONS(1442), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(1815), - [anon_sym_go] = ACTIONS(1817), - [anon_sym_spawn] = ACTIONS(1819), - [anon_sym_json_DOTdecode] = ACTIONS(1448), - [anon_sym_LBRACK2] = ACTIONS(1821), - [anon_sym_TILDE] = ACTIONS(1811), - [anon_sym_CARET] = ACTIONS(1811), - [anon_sym_AMP] = ACTIONS(1823), - [anon_sym_LT_DASH] = ACTIONS(1825), - [sym_none] = ACTIONS(1456), - [sym_true] = ACTIONS(1456), - [sym_false] = ACTIONS(1456), - [sym_nil] = ACTIONS(1456), - [anon_sym_if] = ACTIONS(1827), - [anon_sym_DOLLARif] = ACTIONS(1460), - [anon_sym_match] = ACTIONS(1462), - [anon_sym_select] = ACTIONS(1829), - [anon_sym_lock] = ACTIONS(1831), - [anon_sym_rlock] = ACTIONS(1831), - [anon_sym_unsafe] = ACTIONS(1833), - [anon_sym_sql] = ACTIONS(1470), - [sym_int_literal] = ACTIONS(1456), - [sym_float_literal] = ACTIONS(1472), - [sym_rune_literal] = ACTIONS(1472), - [sym_pseudo_compile_time_identifier] = ACTIONS(1474), + [anon_sym_BANG] = ACTIONS(1821), + [anon_sym_go] = ACTIONS(1823), + [anon_sym_spawn] = ACTIONS(1825), + [anon_sym_json_DOTdecode] = ACTIONS(1450), + [anon_sym_LBRACK2] = ACTIONS(1827), + [anon_sym_TILDE] = ACTIONS(1817), + [anon_sym_CARET] = ACTIONS(1817), + [anon_sym_AMP] = ACTIONS(1829), + [anon_sym_LT_DASH] = ACTIONS(1831), + [sym_none] = ACTIONS(1458), + [sym_true] = ACTIONS(1458), + [sym_false] = ACTIONS(1458), + [sym_nil] = ACTIONS(1458), + [anon_sym_if] = ACTIONS(1833), + [anon_sym_DOLLARif] = ACTIONS(1462), + [anon_sym_match] = ACTIONS(1464), + [anon_sym_select] = ACTIONS(1835), + [anon_sym_lock] = ACTIONS(1837), + [anon_sym_rlock] = ACTIONS(1837), + [anon_sym_unsafe] = ACTIONS(1839), + [anon_sym_sql] = ACTIONS(1472), + [sym_int_literal] = ACTIONS(1458), + [sym_float_literal] = ACTIONS(1474), + [sym_rune_literal] = ACTIONS(1474), + [sym_pseudo_compile_time_identifier] = ACTIONS(1476), [anon_sym_shared] = ACTIONS(83), [anon_sym_map_LBRACK] = ACTIONS(85), [anon_sym_chan] = ACTIONS(87), [anon_sym_thread] = ACTIONS(89), [anon_sym_atomic] = ACTIONS(91), - [sym___double_quote] = ACTIONS(1478), - [sym___single_quote] = ACTIONS(1480), - [sym___c_double_quote] = ACTIONS(1482), - [sym___c_single_quote] = ACTIONS(1484), - [sym___r_double_quote] = ACTIONS(1486), - [sym___r_single_quote] = ACTIONS(1488), + [sym___double_quote] = ACTIONS(1480), + [sym___single_quote] = ACTIONS(1482), + [sym___c_double_quote] = ACTIONS(1484), + [sym___c_single_quote] = ACTIONS(1486), + [sym___r_double_quote] = ACTIONS(1488), + [sym___r_single_quote] = ACTIONS(1490), }, [277] = { [sym_line_comment] = STATE(277), [sym_block_comment] = STATE(277), - [sym__expression] = STATE(2455), - [sym__expression_without_blocks] = STATE(2300), - [sym__expression_with_blocks] = STATE(2300), - [sym_inc_expression] = STATE(2307), - [sym_dec_expression] = STATE(2307), - [sym_or_block_expression] = STATE(2307), - [sym_option_propagation_expression] = STATE(2307), - [sym_result_propagation_expression] = STATE(2307), - [sym_anon_struct_value_expression] = STATE(2380), - [sym_go_expression] = STATE(2307), - [sym_spawn_expression] = STATE(2307), - [sym_parenthesized_expression] = STATE(2307), - [sym_call_expression] = STATE(2307), - [sym_type_initializer] = STATE(2380), - [sym_function_literal] = STATE(2307), - [sym_reference_expression] = STATE(2311), - [sym_type_reference_expression] = STATE(3541), - [sym_unary_expression] = STATE(2307), - [sym_receive_expression] = STATE(2307), - [sym_binary_expression] = STATE(2307), - [sym_as_type_cast_expression] = STATE(2307), - [sym__max_group] = STATE(2307), - [sym_literal] = STATE(2292), - [sym_map_init_expression] = STATE(2380), - [sym_array_creation] = STATE(2307), - [sym_fixed_array_creation] = STATE(2307), - [sym_selector_expression] = STATE(2307), - [sym_index_expression] = STATE(2307), - [sym_slice_expression] = STATE(2307), - [sym_if_expression] = STATE(2380), - [sym_compile_time_if_expression] = STATE(2380), - [sym_is_expression] = STATE(2307), - [sym_in_expression] = STATE(2307), - [sym_enum_fetch] = STATE(2307), - [sym_match_expression] = STATE(2380), - [sym_select_expression] = STATE(2380), - [sym_lock_expression] = STATE(2380), - [sym_unsafe_expression] = STATE(2380), - [sym_sql_expression] = STATE(2380), - [sym_c_string_literal] = STATE(2308), - [sym_raw_string_literal] = STATE(2308), - [sym_interpreted_string_literal] = STATE(2308), - [sym_mutability_modifiers] = STATE(824), - [sym_mutable_expression] = STATE(3922), - [sym_expression_list] = STATE(4089), - [sym_plain_type] = STATE(4297), - [sym__plain_type_without_special] = STATE(2302), - [sym_anon_struct_type] = STATE(2303), - [sym_multi_return_type] = STATE(2302), - [sym_result_type] = STATE(2302), - [sym_option_type] = STATE(2302), - [sym_qualified_type] = STATE(3541), - [sym_fixed_array_type] = STATE(2303), - [sym_array_type] = STATE(2303), - [sym_pointer_type] = STATE(2303), - [sym_wrong_pointer_type] = STATE(2303), - [sym_map_type] = STATE(2303), - [sym_channel_type] = STATE(2303), - [sym_shared_type] = STATE(2303), - [sym_thread_type] = STATE(2303), - [sym_atomic_type] = STATE(2303), - [sym_generic_type] = STATE(2303), - [sym_function_type] = STATE(2303), - [sym_block] = STATE(1338), - [sym_identifier] = ACTIONS(1807), + [sym__expression] = STATE(2632), + [sym__expression_without_blocks] = STATE(2347), + [sym__expression_with_blocks] = STATE(2347), + [sym_inc_expression] = STATE(2379), + [sym_dec_expression] = STATE(2379), + [sym_or_block_expression] = STATE(2379), + [sym_option_propagation_expression] = STATE(2379), + [sym_result_propagation_expression] = STATE(2379), + [sym_anon_struct_value_expression] = STATE(2378), + [sym_go_expression] = STATE(2379), + [sym_spawn_expression] = STATE(2379), + [sym_parenthesized_expression] = STATE(2379), + [sym_call_expression] = STATE(2379), + [sym_type_initializer] = STATE(2378), + [sym_function_literal] = STATE(2379), + [sym_reference_expression] = STATE(2377), + [sym_type_reference_expression] = STATE(3460), + [sym_unary_expression] = STATE(2379), + [sym_receive_expression] = STATE(2379), + [sym_binary_expression] = STATE(2379), + [sym_as_type_cast_expression] = STATE(2379), + [sym__max_group] = STATE(2379), + [sym_literal] = STATE(2392), + [sym_map_init_expression] = STATE(2378), + [sym_map_keyed_element] = STATE(2004), + [sym_array_creation] = STATE(2379), + [sym_fixed_array_creation] = STATE(2379), + [sym_selector_expression] = STATE(2379), + [sym_index_expression] = STATE(2379), + [sym_slice_expression] = STATE(2379), + [sym_if_expression] = STATE(2378), + [sym_compile_time_if_expression] = STATE(2378), + [sym_is_expression] = STATE(2379), + [sym_in_expression] = STATE(2379), + [sym_enum_fetch] = STATE(2379), + [sym_match_expression] = STATE(2378), + [sym_select_expression] = STATE(2378), + [sym_lock_expression] = STATE(2378), + [sym_unsafe_expression] = STATE(2378), + [sym_sql_expression] = STATE(2378), + [sym_c_string_literal] = STATE(2401), + [sym_raw_string_literal] = STATE(2401), + [sym_interpreted_string_literal] = STATE(2401), + [sym_mutability_modifiers] = STATE(939), + [sym_plain_type] = STATE(4160), + [sym__plain_type_without_special] = STATE(2360), + [sym_anon_struct_type] = STATE(2362), + [sym_multi_return_type] = STATE(2360), + [sym_result_type] = STATE(2360), + [sym_option_type] = STATE(2360), + [sym_qualified_type] = STATE(3460), + [sym_fixed_array_type] = STATE(2362), + [sym_array_type] = STATE(2362), + [sym_pointer_type] = STATE(2362), + [sym_wrong_pointer_type] = STATE(2362), + [sym_map_type] = STATE(2362), + [sym_channel_type] = STATE(2362), + [sym_shared_type] = STATE(2362), + [sym_thread_type] = STATE(2362), + [sym_atomic_type] = STATE(2362), + [sym_generic_type] = STATE(2362), + [sym_function_type] = STATE(2362), + [aux_sym_map_init_expression_repeat1] = STATE(303), + [sym_identifier] = ACTIONS(1428), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1428), - [anon_sym_LBRACE] = ACTIONS(1947), - [anon_sym_LPAREN] = ACTIONS(1432), - [anon_sym_fn] = ACTIONS(1434), - [anon_sym_PLUS] = ACTIONS(1811), - [anon_sym_DASH] = ACTIONS(1811), - [anon_sym_STAR] = ACTIONS(1813), - [anon_sym_struct] = ACTIONS(1440), + [anon_sym_DOT] = ACTIONS(1430), + [anon_sym_LBRACE] = ACTIONS(1432), + [anon_sym_RBRACE] = ACTIONS(1949), + [anon_sym_LPAREN] = ACTIONS(1434), + [anon_sym_fn] = ACTIONS(1436), + [anon_sym_PLUS] = ACTIONS(1438), + [anon_sym_DASH] = ACTIONS(1438), + [anon_sym_STAR] = ACTIONS(1440), + [anon_sym_struct] = ACTIONS(1442), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(1815), - [anon_sym_go] = ACTIONS(1817), - [anon_sym_spawn] = ACTIONS(1819), - [anon_sym_json_DOTdecode] = ACTIONS(1448), - [anon_sym_LBRACK2] = ACTIONS(1821), - [anon_sym_TILDE] = ACTIONS(1811), - [anon_sym_CARET] = ACTIONS(1811), - [anon_sym_AMP] = ACTIONS(1823), - [anon_sym_LT_DASH] = ACTIONS(1825), - [sym_none] = ACTIONS(1456), - [sym_true] = ACTIONS(1456), - [sym_false] = ACTIONS(1456), - [sym_nil] = ACTIONS(1456), - [anon_sym_if] = ACTIONS(1827), - [anon_sym_DOLLARif] = ACTIONS(1460), - [anon_sym_match] = ACTIONS(1462), - [anon_sym_select] = ACTIONS(1829), - [anon_sym_lock] = ACTIONS(1831), - [anon_sym_rlock] = ACTIONS(1831), - [anon_sym_unsafe] = ACTIONS(1833), - [anon_sym_sql] = ACTIONS(1470), - [sym_int_literal] = ACTIONS(1456), - [sym_float_literal] = ACTIONS(1472), - [sym_rune_literal] = ACTIONS(1472), - [sym_pseudo_compile_time_identifier] = ACTIONS(1474), + [anon_sym_BANG] = ACTIONS(1444), + [anon_sym_go] = ACTIONS(1446), + [anon_sym_spawn] = ACTIONS(1448), + [anon_sym_json_DOTdecode] = ACTIONS(1450), + [anon_sym_LBRACK2] = ACTIONS(1452), + [anon_sym_TILDE] = ACTIONS(1438), + [anon_sym_CARET] = ACTIONS(1438), + [anon_sym_AMP] = ACTIONS(1454), + [anon_sym_LT_DASH] = ACTIONS(1456), + [sym_none] = ACTIONS(1458), + [sym_true] = ACTIONS(1458), + [sym_false] = ACTIONS(1458), + [sym_nil] = ACTIONS(1458), + [anon_sym_if] = ACTIONS(1833), + [anon_sym_DOLLARif] = ACTIONS(1462), + [anon_sym_match] = ACTIONS(1464), + [anon_sym_select] = ACTIONS(1466), + [anon_sym_lock] = ACTIONS(1468), + [anon_sym_rlock] = ACTIONS(1468), + [anon_sym_unsafe] = ACTIONS(1839), + [anon_sym_sql] = ACTIONS(1472), + [sym_int_literal] = ACTIONS(1458), + [sym_float_literal] = ACTIONS(1474), + [sym_rune_literal] = ACTIONS(1474), + [sym_pseudo_compile_time_identifier] = ACTIONS(1476), [anon_sym_shared] = ACTIONS(83), [anon_sym_map_LBRACK] = ACTIONS(85), [anon_sym_chan] = ACTIONS(87), [anon_sym_thread] = ACTIONS(89), [anon_sym_atomic] = ACTIONS(91), - [sym___double_quote] = ACTIONS(1478), - [sym___single_quote] = ACTIONS(1480), - [sym___c_double_quote] = ACTIONS(1482), - [sym___c_single_quote] = ACTIONS(1484), - [sym___r_double_quote] = ACTIONS(1486), - [sym___r_single_quote] = ACTIONS(1488), + [sym___double_quote] = ACTIONS(1480), + [sym___single_quote] = ACTIONS(1482), + [sym___c_double_quote] = ACTIONS(1484), + [sym___c_single_quote] = ACTIONS(1486), + [sym___r_double_quote] = ACTIONS(1488), + [sym___r_single_quote] = ACTIONS(1490), }, [278] = { [sym_line_comment] = STATE(278), [sym_block_comment] = STATE(278), - [sym__expression] = STATE(2455), - [sym__expression_without_blocks] = STATE(2300), - [sym__expression_with_blocks] = STATE(2300), - [sym_inc_expression] = STATE(2307), - [sym_dec_expression] = STATE(2307), - [sym_or_block_expression] = STATE(2307), - [sym_option_propagation_expression] = STATE(2307), - [sym_result_propagation_expression] = STATE(2307), - [sym_anon_struct_value_expression] = STATE(2380), - [sym_go_expression] = STATE(2307), - [sym_spawn_expression] = STATE(2307), - [sym_parenthesized_expression] = STATE(2307), - [sym_call_expression] = STATE(2307), - [sym_type_initializer] = STATE(2380), - [sym_function_literal] = STATE(2307), - [sym_reference_expression] = STATE(2311), - [sym_type_reference_expression] = STATE(3541), - [sym_unary_expression] = STATE(2307), - [sym_receive_expression] = STATE(2307), - [sym_binary_expression] = STATE(2307), - [sym_as_type_cast_expression] = STATE(2307), - [sym__max_group] = STATE(2307), - [sym_literal] = STATE(2292), - [sym_map_init_expression] = STATE(2380), - [sym_array_creation] = STATE(2307), - [sym_fixed_array_creation] = STATE(2307), - [sym_selector_expression] = STATE(2307), - [sym_index_expression] = STATE(2307), - [sym_slice_expression] = STATE(2307), - [sym_if_expression] = STATE(2380), - [sym_compile_time_if_expression] = STATE(2380), - [sym_is_expression] = STATE(2307), - [sym_in_expression] = STATE(2307), - [sym_enum_fetch] = STATE(2307), - [sym_match_expression] = STATE(2380), - [sym_select_expression] = STATE(2380), - [sym_lock_expression] = STATE(2380), - [sym_unsafe_expression] = STATE(2380), - [sym_sql_expression] = STATE(2380), - [sym_c_string_literal] = STATE(2308), - [sym_raw_string_literal] = STATE(2308), - [sym_interpreted_string_literal] = STATE(2308), - [sym_mutability_modifiers] = STATE(824), - [sym_mutable_expression] = STATE(3922), - [sym_expression_list] = STATE(4231), - [sym_plain_type] = STATE(4297), - [sym__plain_type_without_special] = STATE(2302), - [sym_anon_struct_type] = STATE(2303), - [sym_multi_return_type] = STATE(2302), - [sym_result_type] = STATE(2302), - [sym_option_type] = STATE(2302), - [sym_qualified_type] = STATE(3541), - [sym_fixed_array_type] = STATE(2303), - [sym_array_type] = STATE(2303), - [sym_pointer_type] = STATE(2303), - [sym_wrong_pointer_type] = STATE(2303), - [sym_map_type] = STATE(2303), - [sym_channel_type] = STATE(2303), - [sym_shared_type] = STATE(2303), - [sym_thread_type] = STATE(2303), - [sym_atomic_type] = STATE(2303), - [sym_generic_type] = STATE(2303), - [sym_function_type] = STATE(2303), - [sym_block] = STATE(1001), - [sym_identifier] = ACTIONS(1807), + [sym__expression] = STATE(2354), + [sym__expression_without_blocks] = STATE(2347), + [sym__expression_with_blocks] = STATE(2347), + [sym_inc_expression] = STATE(2379), + [sym_dec_expression] = STATE(2379), + [sym_or_block_expression] = STATE(2379), + [sym_option_propagation_expression] = STATE(2379), + [sym_result_propagation_expression] = STATE(2379), + [sym_anon_struct_value_expression] = STATE(2378), + [sym_go_expression] = STATE(2379), + [sym_spawn_expression] = STATE(2379), + [sym_parenthesized_expression] = STATE(2379), + [sym_call_expression] = STATE(2379), + [sym_type_initializer] = STATE(2378), + [sym_function_literal] = STATE(2379), + [sym_reference_expression] = STATE(2377), + [sym_type_reference_expression] = STATE(3460), + [sym_unary_expression] = STATE(2379), + [sym_receive_expression] = STATE(2379), + [sym_binary_expression] = STATE(2379), + [sym_as_type_cast_expression] = STATE(2379), + [sym__max_group] = STATE(2379), + [sym_literal] = STATE(2392), + [sym_map_init_expression] = STATE(2378), + [sym_array_creation] = STATE(2379), + [sym_fixed_array_creation] = STATE(2379), + [sym_selector_expression] = STATE(2379), + [sym_index_expression] = STATE(2379), + [sym_slice_expression] = STATE(2379), + [sym_if_expression] = STATE(2378), + [sym_compile_time_if_expression] = STATE(2378), + [sym_is_expression] = STATE(2379), + [sym_in_expression] = STATE(2379), + [sym_enum_fetch] = STATE(2379), + [sym_match_expression] = STATE(2378), + [sym_select_expression] = STATE(2378), + [sym_lock_expression] = STATE(2378), + [sym_unsafe_expression] = STATE(2378), + [sym_sql_expression] = STATE(2378), + [sym_c_string_literal] = STATE(2401), + [sym_raw_string_literal] = STATE(2401), + [sym_interpreted_string_literal] = STATE(2401), + [sym_mutability_modifiers] = STATE(893), + [sym_mutable_expression] = STATE(3871), + [sym_expression_list] = STATE(4483), + [sym_plain_type] = STATE(4160), + [sym__plain_type_without_special] = STATE(2360), + [sym_anon_struct_type] = STATE(2362), + [sym_multi_return_type] = STATE(2360), + [sym_result_type] = STATE(2360), + [sym_option_type] = STATE(2360), + [sym_qualified_type] = STATE(3460), + [sym_fixed_array_type] = STATE(2362), + [sym_array_type] = STATE(2362), + [sym_pointer_type] = STATE(2362), + [sym_wrong_pointer_type] = STATE(2362), + [sym_map_type] = STATE(2362), + [sym_channel_type] = STATE(2362), + [sym_shared_type] = STATE(2362), + [sym_thread_type] = STATE(2362), + [sym_atomic_type] = STATE(2362), + [sym_generic_type] = STATE(2362), + [sym_function_type] = STATE(2362), + [sym_var_declaration] = STATE(4021), + [sym_identifier] = ACTIONS(1815), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1428), - [anon_sym_LBRACE] = ACTIONS(1949), - [anon_sym_LPAREN] = ACTIONS(1432), - [anon_sym_fn] = ACTIONS(1434), - [anon_sym_PLUS] = ACTIONS(1811), - [anon_sym_DASH] = ACTIONS(1811), - [anon_sym_STAR] = ACTIONS(1813), - [anon_sym_struct] = ACTIONS(1440), + [anon_sym_DOT] = ACTIONS(1430), + [anon_sym_LBRACE] = ACTIONS(1432), + [anon_sym_LPAREN] = ACTIONS(1434), + [anon_sym_fn] = ACTIONS(1436), + [anon_sym_PLUS] = ACTIONS(1817), + [anon_sym_DASH] = ACTIONS(1817), + [anon_sym_STAR] = ACTIONS(1819), + [anon_sym_struct] = ACTIONS(1442), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(1815), - [anon_sym_go] = ACTIONS(1817), - [anon_sym_spawn] = ACTIONS(1819), - [anon_sym_json_DOTdecode] = ACTIONS(1448), - [anon_sym_LBRACK2] = ACTIONS(1821), - [anon_sym_TILDE] = ACTIONS(1811), - [anon_sym_CARET] = ACTIONS(1811), - [anon_sym_AMP] = ACTIONS(1823), - [anon_sym_LT_DASH] = ACTIONS(1825), - [sym_none] = ACTIONS(1456), - [sym_true] = ACTIONS(1456), - [sym_false] = ACTIONS(1456), - [sym_nil] = ACTIONS(1456), - [anon_sym_if] = ACTIONS(1827), - [anon_sym_DOLLARif] = ACTIONS(1460), - [anon_sym_match] = ACTIONS(1462), - [anon_sym_select] = ACTIONS(1829), - [anon_sym_lock] = ACTIONS(1831), - [anon_sym_rlock] = ACTIONS(1831), - [anon_sym_unsafe] = ACTIONS(1833), - [anon_sym_sql] = ACTIONS(1470), - [sym_int_literal] = ACTIONS(1456), - [sym_float_literal] = ACTIONS(1472), - [sym_rune_literal] = ACTIONS(1472), - [sym_pseudo_compile_time_identifier] = ACTIONS(1474), + [anon_sym_BANG] = ACTIONS(1821), + [anon_sym_go] = ACTIONS(1823), + [anon_sym_spawn] = ACTIONS(1825), + [anon_sym_json_DOTdecode] = ACTIONS(1450), + [anon_sym_LBRACK2] = ACTIONS(1827), + [anon_sym_TILDE] = ACTIONS(1817), + [anon_sym_CARET] = ACTIONS(1817), + [anon_sym_AMP] = ACTIONS(1829), + [anon_sym_LT_DASH] = ACTIONS(1831), + [sym_none] = ACTIONS(1458), + [sym_true] = ACTIONS(1458), + [sym_false] = ACTIONS(1458), + [sym_nil] = ACTIONS(1458), + [anon_sym_if] = ACTIONS(1833), + [anon_sym_DOLLARif] = ACTIONS(1462), + [anon_sym_match] = ACTIONS(1464), + [anon_sym_select] = ACTIONS(1835), + [anon_sym_lock] = ACTIONS(1837), + [anon_sym_rlock] = ACTIONS(1837), + [anon_sym_unsafe] = ACTIONS(1839), + [anon_sym_sql] = ACTIONS(1472), + [sym_int_literal] = ACTIONS(1458), + [sym_float_literal] = ACTIONS(1474), + [sym_rune_literal] = ACTIONS(1474), + [sym_pseudo_compile_time_identifier] = ACTIONS(1476), [anon_sym_shared] = ACTIONS(83), [anon_sym_map_LBRACK] = ACTIONS(85), [anon_sym_chan] = ACTIONS(87), [anon_sym_thread] = ACTIONS(89), [anon_sym_atomic] = ACTIONS(91), - [sym___double_quote] = ACTIONS(1478), - [sym___single_quote] = ACTIONS(1480), - [sym___c_double_quote] = ACTIONS(1482), - [sym___c_single_quote] = ACTIONS(1484), - [sym___r_double_quote] = ACTIONS(1486), - [sym___r_single_quote] = ACTIONS(1488), + [sym___double_quote] = ACTIONS(1480), + [sym___single_quote] = ACTIONS(1482), + [sym___c_double_quote] = ACTIONS(1484), + [sym___c_single_quote] = ACTIONS(1486), + [sym___r_double_quote] = ACTIONS(1488), + [sym___r_single_quote] = ACTIONS(1490), }, [279] = { [sym_line_comment] = STATE(279), [sym_block_comment] = STATE(279), - [ts_builtin_sym_end] = ACTIONS(1915), - [sym_identifier] = ACTIONS(1917), - [anon_sym_LF] = ACTIONS(1917), - [anon_sym_CR] = ACTIONS(1917), - [anon_sym_CR_LF] = ACTIONS(1917), - [anon_sym_SLASH_SLASH] = ACTIONS(497), - [anon_sym_SLASH_STAR] = ACTIONS(499), - [anon_sym_SEMI] = ACTIONS(1951), - [anon_sym_DOT] = ACTIONS(1917), - [anon_sym_as] = ACTIONS(1951), - [anon_sym_LBRACE] = ACTIONS(1917), - [anon_sym_COMMA] = ACTIONS(1951), - [anon_sym_const] = ACTIONS(1917), - [anon_sym_LPAREN] = ACTIONS(1917), - [anon_sym_EQ] = ACTIONS(1951), - [anon_sym___global] = ACTIONS(1917), - [anon_sym_type] = ACTIONS(1917), - [anon_sym_PIPE] = ACTIONS(1951), - [anon_sym_fn] = ACTIONS(1917), - [anon_sym_PLUS] = ACTIONS(1917), - [anon_sym_DASH] = ACTIONS(1917), - [anon_sym_STAR] = ACTIONS(1917), - [anon_sym_SLASH] = ACTIONS(1951), - [anon_sym_PERCENT] = ACTIONS(1951), - [anon_sym_LT] = ACTIONS(1951), - [anon_sym_GT] = ACTIONS(1951), - [anon_sym_EQ_EQ] = ACTIONS(1951), - [anon_sym_BANG_EQ] = ACTIONS(1951), - [anon_sym_LT_EQ] = ACTIONS(1951), - [anon_sym_GT_EQ] = ACTIONS(1951), - [anon_sym_LBRACK] = ACTIONS(1953), - [anon_sym_struct] = ACTIONS(1917), - [anon_sym_union] = ACTIONS(1917), - [anon_sym_pub] = ACTIONS(1917), - [anon_sym_mut] = ACTIONS(1917), - [anon_sym_enum] = ACTIONS(1917), - [anon_sym_interface] = ACTIONS(1917), - [anon_sym_PLUS_PLUS] = ACTIONS(1951), - [anon_sym_DASH_DASH] = ACTIONS(1951), - [anon_sym_QMARK] = ACTIONS(1917), - [anon_sym_BANG] = ACTIONS(1917), - [anon_sym_go] = ACTIONS(1917), - [anon_sym_spawn] = ACTIONS(1917), - [anon_sym_json_DOTdecode] = ACTIONS(1917), - [anon_sym_LBRACK2] = ACTIONS(1917), - [anon_sym_TILDE] = ACTIONS(1917), - [anon_sym_CARET] = ACTIONS(1917), - [anon_sym_AMP] = ACTIONS(1917), - [anon_sym_LT_DASH] = ACTIONS(1917), - [anon_sym_LT_LT] = ACTIONS(1951), - [anon_sym_GT_GT] = ACTIONS(1951), - [anon_sym_GT_GT_GT] = ACTIONS(1951), - [anon_sym_AMP_CARET] = ACTIONS(1951), - [anon_sym_AMP_AMP] = ACTIONS(1951), - [anon_sym_PIPE_PIPE] = ACTIONS(1951), - [anon_sym_or] = ACTIONS(1951), - [sym_none] = ACTIONS(1917), - [sym_true] = ACTIONS(1917), - [sym_false] = ACTIONS(1917), - [sym_nil] = ACTIONS(1917), - [anon_sym_QMARK_DOT] = ACTIONS(1951), - [anon_sym_POUND_LBRACK] = ACTIONS(1951), - [anon_sym_if] = ACTIONS(1917), - [anon_sym_DOLLARif] = ACTIONS(1917), - [anon_sym_is] = ACTIONS(1951), - [anon_sym_BANGis] = ACTIONS(1951), - [anon_sym_in] = ACTIONS(1951), - [anon_sym_BANGin] = ACTIONS(1951), - [anon_sym_match] = ACTIONS(1917), - [anon_sym_select] = ACTIONS(1917), - [anon_sym_STAR_EQ] = ACTIONS(1951), - [anon_sym_SLASH_EQ] = ACTIONS(1951), - [anon_sym_PERCENT_EQ] = ACTIONS(1951), - [anon_sym_LT_LT_EQ] = ACTIONS(1951), - [anon_sym_GT_GT_EQ] = ACTIONS(1951), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(1951), - [anon_sym_AMP_EQ] = ACTIONS(1951), - [anon_sym_AMP_CARET_EQ] = ACTIONS(1951), - [anon_sym_PLUS_EQ] = ACTIONS(1951), - [anon_sym_DASH_EQ] = ACTIONS(1951), - [anon_sym_PIPE_EQ] = ACTIONS(1951), - [anon_sym_CARET_EQ] = ACTIONS(1951), - [anon_sym_COLON_EQ] = ACTIONS(1951), - [anon_sym_lock] = ACTIONS(1917), - [anon_sym_rlock] = ACTIONS(1917), - [anon_sym_unsafe] = ACTIONS(1917), - [anon_sym_sql] = ACTIONS(1917), - [sym_int_literal] = ACTIONS(1917), - [sym_float_literal] = ACTIONS(1917), - [sym_rune_literal] = ACTIONS(1917), - [sym_pseudo_compile_time_identifier] = ACTIONS(1917), - [anon_sym_shared] = ACTIONS(1917), - [anon_sym_map_LBRACK] = ACTIONS(1917), - [anon_sym_chan] = ACTIONS(1917), - [anon_sym_thread] = ACTIONS(1917), - [anon_sym_atomic] = ACTIONS(1917), - [anon_sym_assert] = ACTIONS(1917), - [anon_sym_defer] = ACTIONS(1917), - [anon_sym_goto] = ACTIONS(1917), - [anon_sym_break] = ACTIONS(1917), - [anon_sym_continue] = ACTIONS(1917), - [anon_sym_return] = ACTIONS(1917), - [anon_sym_DOLLARfor] = ACTIONS(1917), - [anon_sym_for] = ACTIONS(1917), - [anon_sym_POUND] = ACTIONS(1917), - [anon_sym_asm] = ACTIONS(1917), - [anon_sym_AT_LBRACK] = ACTIONS(1917), - [sym___double_quote] = ACTIONS(1917), - [sym___single_quote] = ACTIONS(1917), - [sym___c_double_quote] = ACTIONS(1917), - [sym___c_single_quote] = ACTIONS(1917), - [sym___r_double_quote] = ACTIONS(1917), - [sym___r_single_quote] = ACTIONS(1917), + [sym__expression] = STATE(2632), + [sym__expression_without_blocks] = STATE(2347), + [sym__expression_with_blocks] = STATE(2347), + [sym_inc_expression] = STATE(2379), + [sym_dec_expression] = STATE(2379), + [sym_or_block_expression] = STATE(2379), + [sym_option_propagation_expression] = STATE(2379), + [sym_result_propagation_expression] = STATE(2379), + [sym_anon_struct_value_expression] = STATE(2378), + [sym_go_expression] = STATE(2379), + [sym_spawn_expression] = STATE(2379), + [sym_parenthesized_expression] = STATE(2379), + [sym_call_expression] = STATE(2379), + [sym_type_initializer] = STATE(2378), + [sym_function_literal] = STATE(2379), + [sym_reference_expression] = STATE(2377), + [sym_type_reference_expression] = STATE(3460), + [sym_unary_expression] = STATE(2379), + [sym_receive_expression] = STATE(2379), + [sym_binary_expression] = STATE(2379), + [sym_as_type_cast_expression] = STATE(2379), + [sym__max_group] = STATE(2379), + [sym_literal] = STATE(2392), + [sym_map_init_expression] = STATE(2378), + [sym_map_keyed_element] = STATE(2004), + [sym_array_creation] = STATE(2379), + [sym_fixed_array_creation] = STATE(2379), + [sym_selector_expression] = STATE(2379), + [sym_index_expression] = STATE(2379), + [sym_slice_expression] = STATE(2379), + [sym_if_expression] = STATE(2378), + [sym_compile_time_if_expression] = STATE(2378), + [sym_is_expression] = STATE(2379), + [sym_in_expression] = STATE(2379), + [sym_enum_fetch] = STATE(2379), + [sym_match_expression] = STATE(2378), + [sym_select_expression] = STATE(2378), + [sym_lock_expression] = STATE(2378), + [sym_unsafe_expression] = STATE(2378), + [sym_sql_expression] = STATE(2378), + [sym_c_string_literal] = STATE(2401), + [sym_raw_string_literal] = STATE(2401), + [sym_interpreted_string_literal] = STATE(2401), + [sym_mutability_modifiers] = STATE(939), + [sym_plain_type] = STATE(4160), + [sym__plain_type_without_special] = STATE(2360), + [sym_anon_struct_type] = STATE(2362), + [sym_multi_return_type] = STATE(2360), + [sym_result_type] = STATE(2360), + [sym_option_type] = STATE(2360), + [sym_qualified_type] = STATE(3460), + [sym_fixed_array_type] = STATE(2362), + [sym_array_type] = STATE(2362), + [sym_pointer_type] = STATE(2362), + [sym_wrong_pointer_type] = STATE(2362), + [sym_map_type] = STATE(2362), + [sym_channel_type] = STATE(2362), + [sym_shared_type] = STATE(2362), + [sym_thread_type] = STATE(2362), + [sym_atomic_type] = STATE(2362), + [sym_generic_type] = STATE(2362), + [sym_function_type] = STATE(2362), + [aux_sym_map_init_expression_repeat1] = STATE(277), + [sym_identifier] = ACTIONS(1428), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(1430), + [anon_sym_LBRACE] = ACTIONS(1432), + [anon_sym_RBRACE] = ACTIONS(1951), + [anon_sym_LPAREN] = ACTIONS(1434), + [anon_sym_fn] = ACTIONS(1436), + [anon_sym_PLUS] = ACTIONS(1438), + [anon_sym_DASH] = ACTIONS(1438), + [anon_sym_STAR] = ACTIONS(1440), + [anon_sym_struct] = ACTIONS(1442), + [anon_sym_mut] = ACTIONS(41), + [anon_sym_QMARK] = ACTIONS(47), + [anon_sym_BANG] = ACTIONS(1444), + [anon_sym_go] = ACTIONS(1446), + [anon_sym_spawn] = ACTIONS(1448), + [anon_sym_json_DOTdecode] = ACTIONS(1450), + [anon_sym_LBRACK2] = ACTIONS(1452), + [anon_sym_TILDE] = ACTIONS(1438), + [anon_sym_CARET] = ACTIONS(1438), + [anon_sym_AMP] = ACTIONS(1454), + [anon_sym_LT_DASH] = ACTIONS(1456), + [sym_none] = ACTIONS(1458), + [sym_true] = ACTIONS(1458), + [sym_false] = ACTIONS(1458), + [sym_nil] = ACTIONS(1458), + [anon_sym_if] = ACTIONS(1833), + [anon_sym_DOLLARif] = ACTIONS(1462), + [anon_sym_match] = ACTIONS(1464), + [anon_sym_select] = ACTIONS(1466), + [anon_sym_lock] = ACTIONS(1468), + [anon_sym_rlock] = ACTIONS(1468), + [anon_sym_unsafe] = ACTIONS(1839), + [anon_sym_sql] = ACTIONS(1472), + [sym_int_literal] = ACTIONS(1458), + [sym_float_literal] = ACTIONS(1474), + [sym_rune_literal] = ACTIONS(1474), + [sym_pseudo_compile_time_identifier] = ACTIONS(1476), + [anon_sym_shared] = ACTIONS(83), + [anon_sym_map_LBRACK] = ACTIONS(85), + [anon_sym_chan] = ACTIONS(87), + [anon_sym_thread] = ACTIONS(89), + [anon_sym_atomic] = ACTIONS(91), + [sym___double_quote] = ACTIONS(1480), + [sym___single_quote] = ACTIONS(1482), + [sym___c_double_quote] = ACTIONS(1484), + [sym___c_single_quote] = ACTIONS(1486), + [sym___r_double_quote] = ACTIONS(1488), + [sym___r_single_quote] = ACTIONS(1490), }, [280] = { [sym_line_comment] = STATE(280), [sym_block_comment] = STATE(280), - [sym__expression] = STATE(2324), - [sym__expression_without_blocks] = STATE(2300), - [sym__expression_with_blocks] = STATE(2300), - [sym_inc_expression] = STATE(2307), - [sym_dec_expression] = STATE(2307), - [sym_or_block_expression] = STATE(2307), - [sym_option_propagation_expression] = STATE(2307), - [sym_result_propagation_expression] = STATE(2307), - [sym_anon_struct_value_expression] = STATE(2380), - [sym_go_expression] = STATE(2307), - [sym_spawn_expression] = STATE(2307), - [sym_parenthesized_expression] = STATE(2307), - [sym_call_expression] = STATE(2307), - [sym_type_initializer] = STATE(2380), - [sym_function_literal] = STATE(2307), - [sym_reference_expression] = STATE(2311), - [sym_type_reference_expression] = STATE(3541), - [sym_unary_expression] = STATE(2307), - [sym_receive_expression] = STATE(2307), - [sym_binary_expression] = STATE(2307), - [sym_as_type_cast_expression] = STATE(2307), - [sym__max_group] = STATE(2307), - [sym_literal] = STATE(2292), - [sym_map_init_expression] = STATE(2380), - [sym_array_creation] = STATE(2307), - [sym_fixed_array_creation] = STATE(2307), - [sym_selector_expression] = STATE(2307), - [sym_index_expression] = STATE(2307), - [sym_slice_expression] = STATE(2307), - [sym_if_expression] = STATE(2380), - [sym_compile_time_if_expression] = STATE(2380), - [sym_is_expression] = STATE(2307), - [sym_in_expression] = STATE(2307), - [sym_enum_fetch] = STATE(2307), - [sym_match_expression] = STATE(2380), - [sym_select_expression] = STATE(2380), - [sym_lock_expression] = STATE(2380), - [sym_unsafe_expression] = STATE(2380), - [sym_sql_expression] = STATE(2380), - [sym_c_string_literal] = STATE(2308), - [sym_raw_string_literal] = STATE(2308), - [sym_interpreted_string_literal] = STATE(2308), - [sym_mutability_modifiers] = STATE(765), - [sym_mutable_expression] = STATE(3823), - [sym_expression_list] = STATE(4480), - [sym_plain_type] = STATE(4297), - [sym__plain_type_without_special] = STATE(2302), - [sym_anon_struct_type] = STATE(2303), - [sym_multi_return_type] = STATE(2302), - [sym_result_type] = STATE(2302), - [sym_option_type] = STATE(2302), - [sym_qualified_type] = STATE(3541), - [sym_fixed_array_type] = STATE(2303), - [sym_array_type] = STATE(2303), - [sym_pointer_type] = STATE(2303), - [sym_wrong_pointer_type] = STATE(2303), - [sym_map_type] = STATE(2303), - [sym_channel_type] = STATE(2303), - [sym_shared_type] = STATE(2303), - [sym_thread_type] = STATE(2303), - [sym_atomic_type] = STATE(2303), - [sym_generic_type] = STATE(2303), - [sym_function_type] = STATE(2303), - [sym_var_declaration] = STATE(4018), - [sym_identifier] = ACTIONS(1807), + [sym__expression] = STATE(2632), + [sym__expression_without_blocks] = STATE(2347), + [sym__expression_with_blocks] = STATE(2347), + [sym_inc_expression] = STATE(2379), + [sym_dec_expression] = STATE(2379), + [sym_or_block_expression] = STATE(2379), + [sym_option_propagation_expression] = STATE(2379), + [sym_result_propagation_expression] = STATE(2379), + [sym_anon_struct_value_expression] = STATE(2378), + [sym_go_expression] = STATE(2379), + [sym_spawn_expression] = STATE(2379), + [sym_parenthesized_expression] = STATE(2379), + [sym_call_expression] = STATE(2379), + [sym_type_initializer] = STATE(2378), + [sym_function_literal] = STATE(2379), + [sym_reference_expression] = STATE(2377), + [sym_type_reference_expression] = STATE(3460), + [sym_unary_expression] = STATE(2379), + [sym_receive_expression] = STATE(2379), + [sym_binary_expression] = STATE(2379), + [sym_as_type_cast_expression] = STATE(2379), + [sym__max_group] = STATE(2379), + [sym_literal] = STATE(2392), + [sym_map_init_expression] = STATE(2378), + [sym_map_keyed_element] = STATE(2004), + [sym_array_creation] = STATE(2379), + [sym_fixed_array_creation] = STATE(2379), + [sym_selector_expression] = STATE(2379), + [sym_index_expression] = STATE(2379), + [sym_slice_expression] = STATE(2379), + [sym_if_expression] = STATE(2378), + [sym_compile_time_if_expression] = STATE(2378), + [sym_is_expression] = STATE(2379), + [sym_in_expression] = STATE(2379), + [sym_enum_fetch] = STATE(2379), + [sym_match_expression] = STATE(2378), + [sym_select_expression] = STATE(2378), + [sym_lock_expression] = STATE(2378), + [sym_unsafe_expression] = STATE(2378), + [sym_sql_expression] = STATE(2378), + [sym_c_string_literal] = STATE(2401), + [sym_raw_string_literal] = STATE(2401), + [sym_interpreted_string_literal] = STATE(2401), + [sym_mutability_modifiers] = STATE(939), + [sym_plain_type] = STATE(4160), + [sym__plain_type_without_special] = STATE(2360), + [sym_anon_struct_type] = STATE(2362), + [sym_multi_return_type] = STATE(2360), + [sym_result_type] = STATE(2360), + [sym_option_type] = STATE(2360), + [sym_qualified_type] = STATE(3460), + [sym_fixed_array_type] = STATE(2362), + [sym_array_type] = STATE(2362), + [sym_pointer_type] = STATE(2362), + [sym_wrong_pointer_type] = STATE(2362), + [sym_map_type] = STATE(2362), + [sym_channel_type] = STATE(2362), + [sym_shared_type] = STATE(2362), + [sym_thread_type] = STATE(2362), + [sym_atomic_type] = STATE(2362), + [sym_generic_type] = STATE(2362), + [sym_function_type] = STATE(2362), + [aux_sym_map_init_expression_repeat1] = STATE(289), + [sym_identifier] = ACTIONS(1428), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1428), - [anon_sym_LBRACE] = ACTIONS(1430), - [anon_sym_LPAREN] = ACTIONS(1432), - [anon_sym_fn] = ACTIONS(1434), - [anon_sym_PLUS] = ACTIONS(1811), - [anon_sym_DASH] = ACTIONS(1811), - [anon_sym_STAR] = ACTIONS(1813), - [anon_sym_struct] = ACTIONS(1440), + [anon_sym_DOT] = ACTIONS(1430), + [anon_sym_LBRACE] = ACTIONS(1432), + [anon_sym_RBRACE] = ACTIONS(1953), + [anon_sym_LPAREN] = ACTIONS(1434), + [anon_sym_fn] = ACTIONS(1436), + [anon_sym_PLUS] = ACTIONS(1438), + [anon_sym_DASH] = ACTIONS(1438), + [anon_sym_STAR] = ACTIONS(1440), + [anon_sym_struct] = ACTIONS(1442), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(1815), - [anon_sym_go] = ACTIONS(1817), - [anon_sym_spawn] = ACTIONS(1819), - [anon_sym_json_DOTdecode] = ACTIONS(1448), - [anon_sym_LBRACK2] = ACTIONS(1821), - [anon_sym_TILDE] = ACTIONS(1811), - [anon_sym_CARET] = ACTIONS(1811), - [anon_sym_AMP] = ACTIONS(1823), - [anon_sym_LT_DASH] = ACTIONS(1825), - [sym_none] = ACTIONS(1456), - [sym_true] = ACTIONS(1456), - [sym_false] = ACTIONS(1456), - [sym_nil] = ACTIONS(1456), - [anon_sym_if] = ACTIONS(1827), - [anon_sym_DOLLARif] = ACTIONS(1460), - [anon_sym_match] = ACTIONS(1462), - [anon_sym_select] = ACTIONS(1829), - [anon_sym_lock] = ACTIONS(1831), - [anon_sym_rlock] = ACTIONS(1831), - [anon_sym_unsafe] = ACTIONS(1833), - [anon_sym_sql] = ACTIONS(1470), - [sym_int_literal] = ACTIONS(1456), - [sym_float_literal] = ACTIONS(1472), - [sym_rune_literal] = ACTIONS(1472), - [sym_pseudo_compile_time_identifier] = ACTIONS(1474), + [anon_sym_BANG] = ACTIONS(1444), + [anon_sym_go] = ACTIONS(1446), + [anon_sym_spawn] = ACTIONS(1448), + [anon_sym_json_DOTdecode] = ACTIONS(1450), + [anon_sym_LBRACK2] = ACTIONS(1452), + [anon_sym_TILDE] = ACTIONS(1438), + [anon_sym_CARET] = ACTIONS(1438), + [anon_sym_AMP] = ACTIONS(1454), + [anon_sym_LT_DASH] = ACTIONS(1456), + [sym_none] = ACTIONS(1458), + [sym_true] = ACTIONS(1458), + [sym_false] = ACTIONS(1458), + [sym_nil] = ACTIONS(1458), + [anon_sym_if] = ACTIONS(1833), + [anon_sym_DOLLARif] = ACTIONS(1462), + [anon_sym_match] = ACTIONS(1464), + [anon_sym_select] = ACTIONS(1466), + [anon_sym_lock] = ACTIONS(1468), + [anon_sym_rlock] = ACTIONS(1468), + [anon_sym_unsafe] = ACTIONS(1839), + [anon_sym_sql] = ACTIONS(1472), + [sym_int_literal] = ACTIONS(1458), + [sym_float_literal] = ACTIONS(1474), + [sym_rune_literal] = ACTIONS(1474), + [sym_pseudo_compile_time_identifier] = ACTIONS(1476), [anon_sym_shared] = ACTIONS(83), [anon_sym_map_LBRACK] = ACTIONS(85), [anon_sym_chan] = ACTIONS(87), [anon_sym_thread] = ACTIONS(89), [anon_sym_atomic] = ACTIONS(91), - [sym___double_quote] = ACTIONS(1478), - [sym___single_quote] = ACTIONS(1480), - [sym___c_double_quote] = ACTIONS(1482), - [sym___c_single_quote] = ACTIONS(1484), - [sym___r_double_quote] = ACTIONS(1486), - [sym___r_single_quote] = ACTIONS(1488), + [sym___double_quote] = ACTIONS(1480), + [sym___single_quote] = ACTIONS(1482), + [sym___c_double_quote] = ACTIONS(1484), + [sym___c_single_quote] = ACTIONS(1486), + [sym___r_double_quote] = ACTIONS(1488), + [sym___r_single_quote] = ACTIONS(1490), }, [281] = { [sym_line_comment] = STATE(281), [sym_block_comment] = STATE(281), - [sym__expression] = STATE(2455), - [sym__expression_without_blocks] = STATE(2300), - [sym__expression_with_blocks] = STATE(2300), - [sym_inc_expression] = STATE(2307), - [sym_dec_expression] = STATE(2307), - [sym_or_block_expression] = STATE(2307), - [sym_option_propagation_expression] = STATE(2307), - [sym_result_propagation_expression] = STATE(2307), - [sym_anon_struct_value_expression] = STATE(2380), - [sym_go_expression] = STATE(2307), - [sym_spawn_expression] = STATE(2307), - [sym_parenthesized_expression] = STATE(2307), - [sym_call_expression] = STATE(2307), - [sym_type_initializer] = STATE(2380), - [sym_function_literal] = STATE(2307), - [sym_reference_expression] = STATE(2311), - [sym_type_reference_expression] = STATE(3541), - [sym_unary_expression] = STATE(2307), - [sym_receive_expression] = STATE(2307), - [sym_binary_expression] = STATE(2307), - [sym_as_type_cast_expression] = STATE(2307), - [sym__max_group] = STATE(2307), - [sym_literal] = STATE(2292), - [sym_map_init_expression] = STATE(2380), - [sym_array_creation] = STATE(2307), - [sym_fixed_array_creation] = STATE(2307), - [sym_selector_expression] = STATE(2307), - [sym_index_expression] = STATE(2307), - [sym_slice_expression] = STATE(2307), - [sym_if_expression] = STATE(2380), - [sym_compile_time_if_expression] = STATE(2380), - [sym_is_expression] = STATE(2307), - [sym_in_expression] = STATE(2307), - [sym_enum_fetch] = STATE(2307), - [sym_match_expression] = STATE(2380), - [sym_select_expression] = STATE(2380), - [sym_lock_expression] = STATE(2380), - [sym_unsafe_expression] = STATE(2380), - [sym_sql_expression] = STATE(2380), - [sym_c_string_literal] = STATE(2308), - [sym_raw_string_literal] = STATE(2308), - [sym_interpreted_string_literal] = STATE(2308), - [sym_mutability_modifiers] = STATE(824), - [sym_mutable_expression] = STATE(3922), - [sym_expression_list] = STATE(4081), - [sym_plain_type] = STATE(4297), - [sym__plain_type_without_special] = STATE(2302), - [sym_anon_struct_type] = STATE(2303), - [sym_multi_return_type] = STATE(2302), - [sym_result_type] = STATE(2302), - [sym_option_type] = STATE(2302), - [sym_qualified_type] = STATE(3541), - [sym_fixed_array_type] = STATE(2303), - [sym_array_type] = STATE(2303), - [sym_pointer_type] = STATE(2303), - [sym_wrong_pointer_type] = STATE(2303), - [sym_map_type] = STATE(2303), - [sym_channel_type] = STATE(2303), - [sym_shared_type] = STATE(2303), - [sym_thread_type] = STATE(2303), - [sym_atomic_type] = STATE(2303), - [sym_generic_type] = STATE(2303), - [sym_function_type] = STATE(2303), - [sym_block] = STATE(2049), - [sym_identifier] = ACTIONS(1807), + [sym__expression] = STATE(2558), + [sym__expression_without_blocks] = STATE(2347), + [sym__expression_with_blocks] = STATE(2347), + [sym_inc_expression] = STATE(2379), + [sym_dec_expression] = STATE(2379), + [sym_or_block_expression] = STATE(2379), + [sym_option_propagation_expression] = STATE(2379), + [sym_result_propagation_expression] = STATE(2379), + [sym_anon_struct_value_expression] = STATE(2378), + [sym_go_expression] = STATE(2379), + [sym_spawn_expression] = STATE(2379), + [sym_parenthesized_expression] = STATE(2379), + [sym_call_expression] = STATE(2379), + [sym_type_initializer] = STATE(2378), + [sym_function_literal] = STATE(2379), + [sym_reference_expression] = STATE(2377), + [sym_type_reference_expression] = STATE(3460), + [sym_unary_expression] = STATE(2379), + [sym_receive_expression] = STATE(2379), + [sym_binary_expression] = STATE(2379), + [sym_as_type_cast_expression] = STATE(2379), + [sym__max_group] = STATE(2379), + [sym_literal] = STATE(2392), + [sym_map_init_expression] = STATE(2378), + [sym_array_creation] = STATE(2379), + [sym_fixed_array_creation] = STATE(2379), + [sym_selector_expression] = STATE(2379), + [sym_index_expression] = STATE(2379), + [sym_slice_expression] = STATE(2379), + [sym_if_expression] = STATE(2378), + [sym_compile_time_if_expression] = STATE(2378), + [sym_is_expression] = STATE(2379), + [sym_in_expression] = STATE(2379), + [sym_enum_fetch] = STATE(2379), + [sym_match_expression] = STATE(2378), + [sym_select_expression] = STATE(2378), + [sym_lock_expression] = STATE(2378), + [sym_unsafe_expression] = STATE(2378), + [sym_sql_expression] = STATE(2378), + [sym_c_string_literal] = STATE(2401), + [sym_raw_string_literal] = STATE(2401), + [sym_interpreted_string_literal] = STATE(2401), + [sym_mutability_modifiers] = STATE(900), + [sym_mutable_expression] = STATE(3813), + [sym_expression_list] = STATE(4134), + [sym_plain_type] = STATE(4160), + [sym__plain_type_without_special] = STATE(2360), + [sym_anon_struct_type] = STATE(2362), + [sym_multi_return_type] = STATE(2360), + [sym_result_type] = STATE(2360), + [sym_option_type] = STATE(2360), + [sym_qualified_type] = STATE(3460), + [sym_fixed_array_type] = STATE(2362), + [sym_array_type] = STATE(2362), + [sym_pointer_type] = STATE(2362), + [sym_wrong_pointer_type] = STATE(2362), + [sym_map_type] = STATE(2362), + [sym_channel_type] = STATE(2362), + [sym_shared_type] = STATE(2362), + [sym_thread_type] = STATE(2362), + [sym_atomic_type] = STATE(2362), + [sym_generic_type] = STATE(2362), + [sym_function_type] = STATE(2362), + [sym_block] = STATE(1341), + [sym_identifier] = ACTIONS(1815), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1428), + [anon_sym_DOT] = ACTIONS(1430), [anon_sym_LBRACE] = ACTIONS(1955), - [anon_sym_LPAREN] = ACTIONS(1432), - [anon_sym_fn] = ACTIONS(1434), - [anon_sym_PLUS] = ACTIONS(1811), - [anon_sym_DASH] = ACTIONS(1811), - [anon_sym_STAR] = ACTIONS(1813), - [anon_sym_struct] = ACTIONS(1440), + [anon_sym_LPAREN] = ACTIONS(1434), + [anon_sym_fn] = ACTIONS(1436), + [anon_sym_PLUS] = ACTIONS(1817), + [anon_sym_DASH] = ACTIONS(1817), + [anon_sym_STAR] = ACTIONS(1819), + [anon_sym_struct] = ACTIONS(1442), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(1815), - [anon_sym_go] = ACTIONS(1817), - [anon_sym_spawn] = ACTIONS(1819), - [anon_sym_json_DOTdecode] = ACTIONS(1448), - [anon_sym_LBRACK2] = ACTIONS(1821), - [anon_sym_TILDE] = ACTIONS(1811), - [anon_sym_CARET] = ACTIONS(1811), - [anon_sym_AMP] = ACTIONS(1823), - [anon_sym_LT_DASH] = ACTIONS(1825), - [sym_none] = ACTIONS(1456), - [sym_true] = ACTIONS(1456), - [sym_false] = ACTIONS(1456), - [sym_nil] = ACTIONS(1456), - [anon_sym_if] = ACTIONS(1827), - [anon_sym_DOLLARif] = ACTIONS(1460), - [anon_sym_match] = ACTIONS(1462), - [anon_sym_select] = ACTIONS(1829), - [anon_sym_lock] = ACTIONS(1831), - [anon_sym_rlock] = ACTIONS(1831), - [anon_sym_unsafe] = ACTIONS(1833), - [anon_sym_sql] = ACTIONS(1470), - [sym_int_literal] = ACTIONS(1456), - [sym_float_literal] = ACTIONS(1472), - [sym_rune_literal] = ACTIONS(1472), - [sym_pseudo_compile_time_identifier] = ACTIONS(1474), + [anon_sym_BANG] = ACTIONS(1821), + [anon_sym_go] = ACTIONS(1823), + [anon_sym_spawn] = ACTIONS(1825), + [anon_sym_json_DOTdecode] = ACTIONS(1450), + [anon_sym_LBRACK2] = ACTIONS(1827), + [anon_sym_TILDE] = ACTIONS(1817), + [anon_sym_CARET] = ACTIONS(1817), + [anon_sym_AMP] = ACTIONS(1829), + [anon_sym_LT_DASH] = ACTIONS(1831), + [sym_none] = ACTIONS(1458), + [sym_true] = ACTIONS(1458), + [sym_false] = ACTIONS(1458), + [sym_nil] = ACTIONS(1458), + [anon_sym_if] = ACTIONS(1833), + [anon_sym_DOLLARif] = ACTIONS(1462), + [anon_sym_match] = ACTIONS(1464), + [anon_sym_select] = ACTIONS(1835), + [anon_sym_lock] = ACTIONS(1837), + [anon_sym_rlock] = ACTIONS(1837), + [anon_sym_unsafe] = ACTIONS(1839), + [anon_sym_sql] = ACTIONS(1472), + [sym_int_literal] = ACTIONS(1458), + [sym_float_literal] = ACTIONS(1474), + [sym_rune_literal] = ACTIONS(1474), + [sym_pseudo_compile_time_identifier] = ACTIONS(1476), [anon_sym_shared] = ACTIONS(83), [anon_sym_map_LBRACK] = ACTIONS(85), [anon_sym_chan] = ACTIONS(87), [anon_sym_thread] = ACTIONS(89), [anon_sym_atomic] = ACTIONS(91), - [sym___double_quote] = ACTIONS(1478), - [sym___single_quote] = ACTIONS(1480), - [sym___c_double_quote] = ACTIONS(1482), - [sym___c_single_quote] = ACTIONS(1484), - [sym___r_double_quote] = ACTIONS(1486), - [sym___r_single_quote] = ACTIONS(1488), + [sym___double_quote] = ACTIONS(1480), + [sym___single_quote] = ACTIONS(1482), + [sym___c_double_quote] = ACTIONS(1484), + [sym___c_single_quote] = ACTIONS(1486), + [sym___r_double_quote] = ACTIONS(1488), + [sym___r_single_quote] = ACTIONS(1490), }, [282] = { [sym_line_comment] = STATE(282), [sym_block_comment] = STATE(282), - [sym__expression] = STATE(2455), - [sym__expression_without_blocks] = STATE(2300), - [sym__expression_with_blocks] = STATE(2300), - [sym_inc_expression] = STATE(2307), - [sym_dec_expression] = STATE(2307), - [sym_or_block_expression] = STATE(2307), - [sym_option_propagation_expression] = STATE(2307), - [sym_result_propagation_expression] = STATE(2307), - [sym_anon_struct_value_expression] = STATE(2380), - [sym_go_expression] = STATE(2307), - [sym_spawn_expression] = STATE(2307), - [sym_parenthesized_expression] = STATE(2307), - [sym_call_expression] = STATE(2307), - [sym_type_initializer] = STATE(2380), - [sym_function_literal] = STATE(2307), - [sym_reference_expression] = STATE(2311), - [sym_type_reference_expression] = STATE(3541), - [sym_unary_expression] = STATE(2307), - [sym_receive_expression] = STATE(2307), - [sym_binary_expression] = STATE(2307), - [sym_as_type_cast_expression] = STATE(2307), - [sym__max_group] = STATE(2307), - [sym_literal] = STATE(2292), - [sym_map_init_expression] = STATE(2380), - [sym_array_creation] = STATE(2307), - [sym_fixed_array_creation] = STATE(2307), - [sym_selector_expression] = STATE(2307), - [sym_index_expression] = STATE(2307), - [sym_slice_expression] = STATE(2307), - [sym_if_expression] = STATE(2380), - [sym_compile_time_if_expression] = STATE(2380), - [sym_is_expression] = STATE(2307), - [sym_in_expression] = STATE(2307), - [sym_enum_fetch] = STATE(2307), - [sym_match_expression] = STATE(2380), - [sym_select_expression] = STATE(2380), - [sym_lock_expression] = STATE(2380), - [sym_unsafe_expression] = STATE(2380), - [sym_sql_expression] = STATE(2380), - [sym_c_string_literal] = STATE(2308), - [sym_raw_string_literal] = STATE(2308), - [sym_interpreted_string_literal] = STATE(2308), - [sym_mutability_modifiers] = STATE(824), - [sym_mutable_expression] = STATE(3922), - [sym_expression_list] = STATE(4286), - [sym_plain_type] = STATE(4297), - [sym__plain_type_without_special] = STATE(2302), - [sym_anon_struct_type] = STATE(2303), - [sym_multi_return_type] = STATE(2302), - [sym_result_type] = STATE(2302), - [sym_option_type] = STATE(2302), - [sym_qualified_type] = STATE(3541), - [sym_fixed_array_type] = STATE(2303), - [sym_array_type] = STATE(2303), - [sym_pointer_type] = STATE(2303), - [sym_wrong_pointer_type] = STATE(2303), - [sym_map_type] = STATE(2303), - [sym_channel_type] = STATE(2303), - [sym_shared_type] = STATE(2303), - [sym_thread_type] = STATE(2303), - [sym_atomic_type] = STATE(2303), - [sym_generic_type] = STATE(2303), - [sym_function_type] = STATE(2303), - [sym_block] = STATE(2521), - [sym_identifier] = ACTIONS(1807), + [sym__expression] = STATE(2408), + [sym__expression_without_blocks] = STATE(2347), + [sym__expression_with_blocks] = STATE(2347), + [sym_inc_expression] = STATE(2379), + [sym_dec_expression] = STATE(2379), + [sym_or_block_expression] = STATE(2379), + [sym_option_propagation_expression] = STATE(2379), + [sym_result_propagation_expression] = STATE(2379), + [sym_anon_struct_value_expression] = STATE(2378), + [sym_go_expression] = STATE(2379), + [sym_spawn_expression] = STATE(2379), + [sym_parenthesized_expression] = STATE(2379), + [sym_call_expression] = STATE(2379), + [sym_type_initializer] = STATE(2378), + [sym_function_literal] = STATE(2379), + [sym_reference_expression] = STATE(2377), + [sym_type_reference_expression] = STATE(3460), + [sym_unary_expression] = STATE(2379), + [sym_receive_expression] = STATE(2379), + [sym_binary_expression] = STATE(2379), + [sym_as_type_cast_expression] = STATE(2379), + [sym__max_group] = STATE(2379), + [sym_literal] = STATE(2392), + [sym_map_init_expression] = STATE(2378), + [sym_array_creation] = STATE(2379), + [sym_fixed_array_creation] = STATE(2379), + [sym_selector_expression] = STATE(2379), + [sym_index_expression] = STATE(2379), + [sym_slice_expression] = STATE(2379), + [sym_if_expression] = STATE(2378), + [sym_compile_time_if_expression] = STATE(2378), + [sym_is_expression] = STATE(2379), + [sym_in_expression] = STATE(2379), + [sym_enum_fetch] = STATE(2379), + [sym_match_expression] = STATE(2378), + [sym_select_expression] = STATE(2378), + [sym_lock_expression] = STATE(2378), + [sym_unsafe_expression] = STATE(2378), + [sym_sql_expression] = STATE(2378), + [sym_c_string_literal] = STATE(2401), + [sym_raw_string_literal] = STATE(2401), + [sym_interpreted_string_literal] = STATE(2401), + [sym_mutability_modifiers] = STATE(893), + [sym_mutable_expression] = STATE(3871), + [sym_expression_list] = STATE(4483), + [sym_plain_type] = STATE(4160), + [sym__plain_type_without_special] = STATE(2360), + [sym_anon_struct_type] = STATE(2362), + [sym_multi_return_type] = STATE(2360), + [sym_result_type] = STATE(2360), + [sym_option_type] = STATE(2360), + [sym_qualified_type] = STATE(3460), + [sym_fixed_array_type] = STATE(2362), + [sym_array_type] = STATE(2362), + [sym_pointer_type] = STATE(2362), + [sym_wrong_pointer_type] = STATE(2362), + [sym_map_type] = STATE(2362), + [sym_channel_type] = STATE(2362), + [sym_shared_type] = STATE(2362), + [sym_thread_type] = STATE(2362), + [sym_atomic_type] = STATE(2362), + [sym_generic_type] = STATE(2362), + [sym_function_type] = STATE(2362), + [sym_var_declaration] = STATE(4284), + [sym_identifier] = ACTIONS(1815), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1428), - [anon_sym_LBRACE] = ACTIONS(1957), - [anon_sym_LPAREN] = ACTIONS(1432), - [anon_sym_fn] = ACTIONS(1434), - [anon_sym_PLUS] = ACTIONS(1811), - [anon_sym_DASH] = ACTIONS(1811), - [anon_sym_STAR] = ACTIONS(1813), - [anon_sym_struct] = ACTIONS(1440), + [anon_sym_DOT] = ACTIONS(1430), + [anon_sym_LBRACE] = ACTIONS(1432), + [anon_sym_LPAREN] = ACTIONS(1434), + [anon_sym_fn] = ACTIONS(1436), + [anon_sym_PLUS] = ACTIONS(1817), + [anon_sym_DASH] = ACTIONS(1817), + [anon_sym_STAR] = ACTIONS(1819), + [anon_sym_struct] = ACTIONS(1442), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(1815), - [anon_sym_go] = ACTIONS(1817), - [anon_sym_spawn] = ACTIONS(1819), - [anon_sym_json_DOTdecode] = ACTIONS(1448), - [anon_sym_LBRACK2] = ACTIONS(1821), - [anon_sym_TILDE] = ACTIONS(1811), - [anon_sym_CARET] = ACTIONS(1811), - [anon_sym_AMP] = ACTIONS(1823), - [anon_sym_LT_DASH] = ACTIONS(1825), - [sym_none] = ACTIONS(1456), - [sym_true] = ACTIONS(1456), - [sym_false] = ACTIONS(1456), - [sym_nil] = ACTIONS(1456), - [anon_sym_if] = ACTIONS(1827), - [anon_sym_DOLLARif] = ACTIONS(1460), - [anon_sym_match] = ACTIONS(1462), - [anon_sym_select] = ACTIONS(1829), - [anon_sym_lock] = ACTIONS(1831), - [anon_sym_rlock] = ACTIONS(1831), - [anon_sym_unsafe] = ACTIONS(1833), - [anon_sym_sql] = ACTIONS(1470), - [sym_int_literal] = ACTIONS(1456), - [sym_float_literal] = ACTIONS(1472), - [sym_rune_literal] = ACTIONS(1472), - [sym_pseudo_compile_time_identifier] = ACTIONS(1474), + [anon_sym_BANG] = ACTIONS(1821), + [anon_sym_go] = ACTIONS(1823), + [anon_sym_spawn] = ACTIONS(1825), + [anon_sym_json_DOTdecode] = ACTIONS(1450), + [anon_sym_LBRACK2] = ACTIONS(1827), + [anon_sym_TILDE] = ACTIONS(1817), + [anon_sym_CARET] = ACTIONS(1817), + [anon_sym_AMP] = ACTIONS(1829), + [anon_sym_LT_DASH] = ACTIONS(1831), + [sym_none] = ACTIONS(1458), + [sym_true] = ACTIONS(1458), + [sym_false] = ACTIONS(1458), + [sym_nil] = ACTIONS(1458), + [anon_sym_if] = ACTIONS(1833), + [anon_sym_DOLLARif] = ACTIONS(1462), + [anon_sym_match] = ACTIONS(1464), + [anon_sym_select] = ACTIONS(1835), + [anon_sym_lock] = ACTIONS(1837), + [anon_sym_rlock] = ACTIONS(1837), + [anon_sym_unsafe] = ACTIONS(1839), + [anon_sym_sql] = ACTIONS(1472), + [sym_int_literal] = ACTIONS(1458), + [sym_float_literal] = ACTIONS(1474), + [sym_rune_literal] = ACTIONS(1474), + [sym_pseudo_compile_time_identifier] = ACTIONS(1476), [anon_sym_shared] = ACTIONS(83), [anon_sym_map_LBRACK] = ACTIONS(85), [anon_sym_chan] = ACTIONS(87), [anon_sym_thread] = ACTIONS(89), [anon_sym_atomic] = ACTIONS(91), - [sym___double_quote] = ACTIONS(1478), - [sym___single_quote] = ACTIONS(1480), - [sym___c_double_quote] = ACTIONS(1482), - [sym___c_single_quote] = ACTIONS(1484), - [sym___r_double_quote] = ACTIONS(1486), - [sym___r_single_quote] = ACTIONS(1488), + [sym___double_quote] = ACTIONS(1480), + [sym___single_quote] = ACTIONS(1482), + [sym___c_double_quote] = ACTIONS(1484), + [sym___c_single_quote] = ACTIONS(1486), + [sym___r_double_quote] = ACTIONS(1488), + [sym___r_single_quote] = ACTIONS(1490), }, [283] = { [sym_line_comment] = STATE(283), [sym_block_comment] = STATE(283), - [sym__expression] = STATE(2455), - [sym__expression_without_blocks] = STATE(2300), - [sym__expression_with_blocks] = STATE(2300), - [sym_inc_expression] = STATE(2307), - [sym_dec_expression] = STATE(2307), - [sym_or_block_expression] = STATE(2307), - [sym_option_propagation_expression] = STATE(2307), - [sym_result_propagation_expression] = STATE(2307), - [sym_anon_struct_value_expression] = STATE(2380), - [sym_go_expression] = STATE(2307), - [sym_spawn_expression] = STATE(2307), - [sym_parenthesized_expression] = STATE(2307), - [sym_call_expression] = STATE(2307), - [sym_type_initializer] = STATE(2380), - [sym_function_literal] = STATE(2307), - [sym_reference_expression] = STATE(2311), - [sym_type_reference_expression] = STATE(3541), - [sym_unary_expression] = STATE(2307), - [sym_receive_expression] = STATE(2307), - [sym_binary_expression] = STATE(2307), - [sym_as_type_cast_expression] = STATE(2307), - [sym__max_group] = STATE(2307), - [sym_literal] = STATE(2292), - [sym_map_init_expression] = STATE(2380), - [sym_array_creation] = STATE(2307), - [sym_fixed_array_creation] = STATE(2307), - [sym_selector_expression] = STATE(2307), - [sym_index_expression] = STATE(2307), - [sym_slice_expression] = STATE(2307), - [sym_if_expression] = STATE(2380), - [sym_compile_time_if_expression] = STATE(2380), - [sym_is_expression] = STATE(2307), - [sym_in_expression] = STATE(2307), - [sym_enum_fetch] = STATE(2307), - [sym_match_expression] = STATE(2380), - [sym_select_expression] = STATE(2380), - [sym_lock_expression] = STATE(2380), - [sym_unsafe_expression] = STATE(2380), - [sym_sql_expression] = STATE(2380), - [sym_c_string_literal] = STATE(2308), - [sym_raw_string_literal] = STATE(2308), - [sym_interpreted_string_literal] = STATE(2308), - [sym_mutability_modifiers] = STATE(824), - [sym_mutable_expression] = STATE(3922), - [sym_expression_list] = STATE(4089), - [sym_plain_type] = STATE(4297), - [sym__plain_type_without_special] = STATE(2302), - [sym_anon_struct_type] = STATE(2303), - [sym_multi_return_type] = STATE(2302), - [sym_result_type] = STATE(2302), - [sym_option_type] = STATE(2302), - [sym_qualified_type] = STATE(3541), - [sym_fixed_array_type] = STATE(2303), - [sym_array_type] = STATE(2303), - [sym_pointer_type] = STATE(2303), - [sym_wrong_pointer_type] = STATE(2303), - [sym_map_type] = STATE(2303), - [sym_channel_type] = STATE(2303), - [sym_shared_type] = STATE(2303), - [sym_thread_type] = STATE(2303), - [sym_atomic_type] = STATE(2303), - [sym_generic_type] = STATE(2303), - [sym_function_type] = STATE(2303), - [sym_block] = STATE(1338), - [sym_identifier] = ACTIONS(1807), + [sym__expression] = STATE(2632), + [sym__expression_without_blocks] = STATE(2347), + [sym__expression_with_blocks] = STATE(2347), + [sym_inc_expression] = STATE(2379), + [sym_dec_expression] = STATE(2379), + [sym_or_block_expression] = STATE(2379), + [sym_option_propagation_expression] = STATE(2379), + [sym_result_propagation_expression] = STATE(2379), + [sym_anon_struct_value_expression] = STATE(2378), + [sym_go_expression] = STATE(2379), + [sym_spawn_expression] = STATE(2379), + [sym_parenthesized_expression] = STATE(2379), + [sym_call_expression] = STATE(2379), + [sym_type_initializer] = STATE(2378), + [sym_function_literal] = STATE(2379), + [sym_reference_expression] = STATE(2377), + [sym_type_reference_expression] = STATE(3460), + [sym_unary_expression] = STATE(2379), + [sym_receive_expression] = STATE(2379), + [sym_binary_expression] = STATE(2379), + [sym_as_type_cast_expression] = STATE(2379), + [sym__max_group] = STATE(2379), + [sym_literal] = STATE(2392), + [sym_map_init_expression] = STATE(2378), + [sym_map_keyed_element] = STATE(2004), + [sym_array_creation] = STATE(2379), + [sym_fixed_array_creation] = STATE(2379), + [sym_selector_expression] = STATE(2379), + [sym_index_expression] = STATE(2379), + [sym_slice_expression] = STATE(2379), + [sym_if_expression] = STATE(2378), + [sym_compile_time_if_expression] = STATE(2378), + [sym_is_expression] = STATE(2379), + [sym_in_expression] = STATE(2379), + [sym_enum_fetch] = STATE(2379), + [sym_match_expression] = STATE(2378), + [sym_select_expression] = STATE(2378), + [sym_lock_expression] = STATE(2378), + [sym_unsafe_expression] = STATE(2378), + [sym_sql_expression] = STATE(2378), + [sym_c_string_literal] = STATE(2401), + [sym_raw_string_literal] = STATE(2401), + [sym_interpreted_string_literal] = STATE(2401), + [sym_mutability_modifiers] = STATE(939), + [sym_plain_type] = STATE(4160), + [sym__plain_type_without_special] = STATE(2360), + [sym_anon_struct_type] = STATE(2362), + [sym_multi_return_type] = STATE(2360), + [sym_result_type] = STATE(2360), + [sym_option_type] = STATE(2360), + [sym_qualified_type] = STATE(3460), + [sym_fixed_array_type] = STATE(2362), + [sym_array_type] = STATE(2362), + [sym_pointer_type] = STATE(2362), + [sym_wrong_pointer_type] = STATE(2362), + [sym_map_type] = STATE(2362), + [sym_channel_type] = STATE(2362), + [sym_shared_type] = STATE(2362), + [sym_thread_type] = STATE(2362), + [sym_atomic_type] = STATE(2362), + [sym_generic_type] = STATE(2362), + [sym_function_type] = STATE(2362), + [aux_sym_map_init_expression_repeat1] = STATE(242), + [sym_identifier] = ACTIONS(1428), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1428), - [anon_sym_LBRACE] = ACTIONS(1959), - [anon_sym_LPAREN] = ACTIONS(1432), - [anon_sym_fn] = ACTIONS(1434), - [anon_sym_PLUS] = ACTIONS(1811), - [anon_sym_DASH] = ACTIONS(1811), - [anon_sym_STAR] = ACTIONS(1813), - [anon_sym_struct] = ACTIONS(1440), + [anon_sym_DOT] = ACTIONS(1430), + [anon_sym_LBRACE] = ACTIONS(1432), + [anon_sym_RBRACE] = ACTIONS(1957), + [anon_sym_LPAREN] = ACTIONS(1434), + [anon_sym_fn] = ACTIONS(1436), + [anon_sym_PLUS] = ACTIONS(1438), + [anon_sym_DASH] = ACTIONS(1438), + [anon_sym_STAR] = ACTIONS(1440), + [anon_sym_struct] = ACTIONS(1442), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(1815), - [anon_sym_go] = ACTIONS(1817), - [anon_sym_spawn] = ACTIONS(1819), - [anon_sym_json_DOTdecode] = ACTIONS(1448), - [anon_sym_LBRACK2] = ACTIONS(1821), - [anon_sym_TILDE] = ACTIONS(1811), - [anon_sym_CARET] = ACTIONS(1811), - [anon_sym_AMP] = ACTIONS(1823), - [anon_sym_LT_DASH] = ACTIONS(1825), - [sym_none] = ACTIONS(1456), - [sym_true] = ACTIONS(1456), - [sym_false] = ACTIONS(1456), - [sym_nil] = ACTIONS(1456), - [anon_sym_if] = ACTIONS(1827), - [anon_sym_DOLLARif] = ACTIONS(1460), - [anon_sym_match] = ACTIONS(1462), - [anon_sym_select] = ACTIONS(1829), - [anon_sym_lock] = ACTIONS(1831), - [anon_sym_rlock] = ACTIONS(1831), - [anon_sym_unsafe] = ACTIONS(1833), - [anon_sym_sql] = ACTIONS(1470), - [sym_int_literal] = ACTIONS(1456), - [sym_float_literal] = ACTIONS(1472), - [sym_rune_literal] = ACTIONS(1472), - [sym_pseudo_compile_time_identifier] = ACTIONS(1474), + [anon_sym_BANG] = ACTIONS(1444), + [anon_sym_go] = ACTIONS(1446), + [anon_sym_spawn] = ACTIONS(1448), + [anon_sym_json_DOTdecode] = ACTIONS(1450), + [anon_sym_LBRACK2] = ACTIONS(1452), + [anon_sym_TILDE] = ACTIONS(1438), + [anon_sym_CARET] = ACTIONS(1438), + [anon_sym_AMP] = ACTIONS(1454), + [anon_sym_LT_DASH] = ACTIONS(1456), + [sym_none] = ACTIONS(1458), + [sym_true] = ACTIONS(1458), + [sym_false] = ACTIONS(1458), + [sym_nil] = ACTIONS(1458), + [anon_sym_if] = ACTIONS(1833), + [anon_sym_DOLLARif] = ACTIONS(1462), + [anon_sym_match] = ACTIONS(1464), + [anon_sym_select] = ACTIONS(1466), + [anon_sym_lock] = ACTIONS(1468), + [anon_sym_rlock] = ACTIONS(1468), + [anon_sym_unsafe] = ACTIONS(1839), + [anon_sym_sql] = ACTIONS(1472), + [sym_int_literal] = ACTIONS(1458), + [sym_float_literal] = ACTIONS(1474), + [sym_rune_literal] = ACTIONS(1474), + [sym_pseudo_compile_time_identifier] = ACTIONS(1476), [anon_sym_shared] = ACTIONS(83), [anon_sym_map_LBRACK] = ACTIONS(85), [anon_sym_chan] = ACTIONS(87), [anon_sym_thread] = ACTIONS(89), [anon_sym_atomic] = ACTIONS(91), - [sym___double_quote] = ACTIONS(1478), - [sym___single_quote] = ACTIONS(1480), - [sym___c_double_quote] = ACTIONS(1482), - [sym___c_single_quote] = ACTIONS(1484), - [sym___r_double_quote] = ACTIONS(1486), - [sym___r_single_quote] = ACTIONS(1488), + [sym___double_quote] = ACTIONS(1480), + [sym___single_quote] = ACTIONS(1482), + [sym___c_double_quote] = ACTIONS(1484), + [sym___c_single_quote] = ACTIONS(1486), + [sym___r_double_quote] = ACTIONS(1488), + [sym___r_single_quote] = ACTIONS(1490), }, [284] = { [sym_line_comment] = STATE(284), [sym_block_comment] = STATE(284), - [sym__expression] = STATE(2716), - [sym__expression_without_blocks] = STATE(2300), - [sym__expression_with_blocks] = STATE(2300), - [sym_inc_expression] = STATE(2307), - [sym_dec_expression] = STATE(2307), - [sym_or_block_expression] = STATE(2307), - [sym_option_propagation_expression] = STATE(2307), - [sym_result_propagation_expression] = STATE(2307), - [sym_anon_struct_value_expression] = STATE(2380), - [sym_go_expression] = STATE(2307), - [sym_spawn_expression] = STATE(2307), - [sym_parenthesized_expression] = STATE(2307), - [sym_call_expression] = STATE(2307), - [sym_type_initializer] = STATE(2380), - [sym_function_literal] = STATE(2307), - [sym_reference_expression] = STATE(2311), - [sym_type_reference_expression] = STATE(3541), - [sym_unary_expression] = STATE(2307), - [sym_receive_expression] = STATE(2307), - [sym_binary_expression] = STATE(2307), - [sym_as_type_cast_expression] = STATE(2307), - [sym__max_group] = STATE(2307), - [sym_literal] = STATE(2292), - [sym_map_init_expression] = STATE(2380), - [sym_map_keyed_element] = STATE(2001), - [sym_array_creation] = STATE(2307), - [sym_fixed_array_creation] = STATE(2307), - [sym_selector_expression] = STATE(2307), - [sym_index_expression] = STATE(2307), - [sym_slice_expression] = STATE(2307), - [sym_if_expression] = STATE(2380), - [sym_compile_time_if_expression] = STATE(2380), - [sym_is_expression] = STATE(2307), - [sym_in_expression] = STATE(2307), - [sym_enum_fetch] = STATE(2307), - [sym_match_expression] = STATE(2380), - [sym_select_expression] = STATE(2380), - [sym_lock_expression] = STATE(2380), - [sym_unsafe_expression] = STATE(2380), - [sym_sql_expression] = STATE(2380), - [sym_c_string_literal] = STATE(2308), - [sym_raw_string_literal] = STATE(2308), - [sym_interpreted_string_literal] = STATE(2308), - [sym_mutability_modifiers] = STATE(939), - [sym_plain_type] = STATE(4297), - [sym__plain_type_without_special] = STATE(2302), - [sym_anon_struct_type] = STATE(2303), - [sym_multi_return_type] = STATE(2302), - [sym_result_type] = STATE(2302), - [sym_option_type] = STATE(2302), - [sym_qualified_type] = STATE(3541), - [sym_fixed_array_type] = STATE(2303), - [sym_array_type] = STATE(2303), - [sym_pointer_type] = STATE(2303), - [sym_wrong_pointer_type] = STATE(2303), - [sym_map_type] = STATE(2303), - [sym_channel_type] = STATE(2303), - [sym_shared_type] = STATE(2303), - [sym_thread_type] = STATE(2303), - [sym_atomic_type] = STATE(2303), - [sym_generic_type] = STATE(2303), - [sym_function_type] = STATE(2303), - [aux_sym_map_init_expression_repeat1] = STATE(285), - [sym_identifier] = ACTIONS(1426), + [sym__expression] = STATE(2558), + [sym__expression_without_blocks] = STATE(2347), + [sym__expression_with_blocks] = STATE(2347), + [sym_inc_expression] = STATE(2379), + [sym_dec_expression] = STATE(2379), + [sym_or_block_expression] = STATE(2379), + [sym_option_propagation_expression] = STATE(2379), + [sym_result_propagation_expression] = STATE(2379), + [sym_anon_struct_value_expression] = STATE(2378), + [sym_go_expression] = STATE(2379), + [sym_spawn_expression] = STATE(2379), + [sym_parenthesized_expression] = STATE(2379), + [sym_call_expression] = STATE(2379), + [sym_type_initializer] = STATE(2378), + [sym_function_literal] = STATE(2379), + [sym_reference_expression] = STATE(2377), + [sym_type_reference_expression] = STATE(3460), + [sym_unary_expression] = STATE(2379), + [sym_receive_expression] = STATE(2379), + [sym_binary_expression] = STATE(2379), + [sym_as_type_cast_expression] = STATE(2379), + [sym__max_group] = STATE(2379), + [sym_literal] = STATE(2392), + [sym_map_init_expression] = STATE(2378), + [sym_array_creation] = STATE(2379), + [sym_fixed_array_creation] = STATE(2379), + [sym_selector_expression] = STATE(2379), + [sym_index_expression] = STATE(2379), + [sym_slice_expression] = STATE(2379), + [sym_if_expression] = STATE(2378), + [sym_compile_time_if_expression] = STATE(2378), + [sym_is_expression] = STATE(2379), + [sym_in_expression] = STATE(2379), + [sym_enum_fetch] = STATE(2379), + [sym_match_expression] = STATE(2378), + [sym_select_expression] = STATE(2378), + [sym_lock_expression] = STATE(2378), + [sym_unsafe_expression] = STATE(2378), + [sym_sql_expression] = STATE(2378), + [sym_c_string_literal] = STATE(2401), + [sym_raw_string_literal] = STATE(2401), + [sym_interpreted_string_literal] = STATE(2401), + [sym_mutability_modifiers] = STATE(900), + [sym_mutable_expression] = STATE(3813), + [sym_expression_list] = STATE(4278), + [sym_plain_type] = STATE(4160), + [sym__plain_type_without_special] = STATE(2360), + [sym_anon_struct_type] = STATE(2362), + [sym_multi_return_type] = STATE(2360), + [sym_result_type] = STATE(2360), + [sym_option_type] = STATE(2360), + [sym_qualified_type] = STATE(3460), + [sym_fixed_array_type] = STATE(2362), + [sym_array_type] = STATE(2362), + [sym_pointer_type] = STATE(2362), + [sym_wrong_pointer_type] = STATE(2362), + [sym_map_type] = STATE(2362), + [sym_channel_type] = STATE(2362), + [sym_shared_type] = STATE(2362), + [sym_thread_type] = STATE(2362), + [sym_atomic_type] = STATE(2362), + [sym_generic_type] = STATE(2362), + [sym_function_type] = STATE(2362), + [sym_block] = STATE(2333), + [sym_identifier] = ACTIONS(1815), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1428), - [anon_sym_LBRACE] = ACTIONS(1430), - [anon_sym_RBRACE] = ACTIONS(1961), - [anon_sym_LPAREN] = ACTIONS(1432), - [anon_sym_fn] = ACTIONS(1434), - [anon_sym_PLUS] = ACTIONS(1436), - [anon_sym_DASH] = ACTIONS(1436), - [anon_sym_STAR] = ACTIONS(1438), - [anon_sym_struct] = ACTIONS(1440), + [anon_sym_DOT] = ACTIONS(1430), + [anon_sym_LBRACE] = ACTIONS(1959), + [anon_sym_LPAREN] = ACTIONS(1434), + [anon_sym_fn] = ACTIONS(1436), + [anon_sym_PLUS] = ACTIONS(1817), + [anon_sym_DASH] = ACTIONS(1817), + [anon_sym_STAR] = ACTIONS(1819), + [anon_sym_struct] = ACTIONS(1442), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(1442), - [anon_sym_go] = ACTIONS(1444), - [anon_sym_spawn] = ACTIONS(1446), - [anon_sym_json_DOTdecode] = ACTIONS(1448), - [anon_sym_LBRACK2] = ACTIONS(1450), - [anon_sym_TILDE] = ACTIONS(1436), - [anon_sym_CARET] = ACTIONS(1436), - [anon_sym_AMP] = ACTIONS(1452), - [anon_sym_LT_DASH] = ACTIONS(1454), - [sym_none] = ACTIONS(1456), - [sym_true] = ACTIONS(1456), - [sym_false] = ACTIONS(1456), - [sym_nil] = ACTIONS(1456), - [anon_sym_if] = ACTIONS(1827), - [anon_sym_DOLLARif] = ACTIONS(1460), - [anon_sym_match] = ACTIONS(1462), - [anon_sym_select] = ACTIONS(1464), - [anon_sym_lock] = ACTIONS(1466), - [anon_sym_rlock] = ACTIONS(1466), - [anon_sym_unsafe] = ACTIONS(1833), - [anon_sym_sql] = ACTIONS(1470), - [sym_int_literal] = ACTIONS(1456), - [sym_float_literal] = ACTIONS(1472), - [sym_rune_literal] = ACTIONS(1472), - [sym_pseudo_compile_time_identifier] = ACTIONS(1474), + [anon_sym_BANG] = ACTIONS(1821), + [anon_sym_go] = ACTIONS(1823), + [anon_sym_spawn] = ACTIONS(1825), + [anon_sym_json_DOTdecode] = ACTIONS(1450), + [anon_sym_LBRACK2] = ACTIONS(1827), + [anon_sym_TILDE] = ACTIONS(1817), + [anon_sym_CARET] = ACTIONS(1817), + [anon_sym_AMP] = ACTIONS(1829), + [anon_sym_LT_DASH] = ACTIONS(1831), + [sym_none] = ACTIONS(1458), + [sym_true] = ACTIONS(1458), + [sym_false] = ACTIONS(1458), + [sym_nil] = ACTIONS(1458), + [anon_sym_if] = ACTIONS(1833), + [anon_sym_DOLLARif] = ACTIONS(1462), + [anon_sym_match] = ACTIONS(1464), + [anon_sym_select] = ACTIONS(1835), + [anon_sym_lock] = ACTIONS(1837), + [anon_sym_rlock] = ACTIONS(1837), + [anon_sym_unsafe] = ACTIONS(1839), + [anon_sym_sql] = ACTIONS(1472), + [sym_int_literal] = ACTIONS(1458), + [sym_float_literal] = ACTIONS(1474), + [sym_rune_literal] = ACTIONS(1474), + [sym_pseudo_compile_time_identifier] = ACTIONS(1476), [anon_sym_shared] = ACTIONS(83), [anon_sym_map_LBRACK] = ACTIONS(85), [anon_sym_chan] = ACTIONS(87), [anon_sym_thread] = ACTIONS(89), [anon_sym_atomic] = ACTIONS(91), - [sym___double_quote] = ACTIONS(1478), - [sym___single_quote] = ACTIONS(1480), - [sym___c_double_quote] = ACTIONS(1482), - [sym___c_single_quote] = ACTIONS(1484), - [sym___r_double_quote] = ACTIONS(1486), - [sym___r_single_quote] = ACTIONS(1488), + [sym___double_quote] = ACTIONS(1480), + [sym___single_quote] = ACTIONS(1482), + [sym___c_double_quote] = ACTIONS(1484), + [sym___c_single_quote] = ACTIONS(1486), + [sym___r_double_quote] = ACTIONS(1488), + [sym___r_single_quote] = ACTIONS(1490), }, [285] = { [sym_line_comment] = STATE(285), [sym_block_comment] = STATE(285), - [sym__expression] = STATE(2716), - [sym__expression_without_blocks] = STATE(2300), - [sym__expression_with_blocks] = STATE(2300), - [sym_inc_expression] = STATE(2307), - [sym_dec_expression] = STATE(2307), - [sym_or_block_expression] = STATE(2307), - [sym_option_propagation_expression] = STATE(2307), - [sym_result_propagation_expression] = STATE(2307), - [sym_anon_struct_value_expression] = STATE(2380), - [sym_go_expression] = STATE(2307), - [sym_spawn_expression] = STATE(2307), - [sym_parenthesized_expression] = STATE(2307), - [sym_call_expression] = STATE(2307), - [sym_type_initializer] = STATE(2380), - [sym_function_literal] = STATE(2307), - [sym_reference_expression] = STATE(2311), - [sym_type_reference_expression] = STATE(3541), - [sym_unary_expression] = STATE(2307), - [sym_receive_expression] = STATE(2307), - [sym_binary_expression] = STATE(2307), - [sym_as_type_cast_expression] = STATE(2307), - [sym__max_group] = STATE(2307), - [sym_literal] = STATE(2292), - [sym_map_init_expression] = STATE(2380), - [sym_map_keyed_element] = STATE(2001), - [sym_array_creation] = STATE(2307), - [sym_fixed_array_creation] = STATE(2307), - [sym_selector_expression] = STATE(2307), - [sym_index_expression] = STATE(2307), - [sym_slice_expression] = STATE(2307), - [sym_if_expression] = STATE(2380), - [sym_compile_time_if_expression] = STATE(2380), - [sym_is_expression] = STATE(2307), - [sym_in_expression] = STATE(2307), - [sym_enum_fetch] = STATE(2307), - [sym_match_expression] = STATE(2380), - [sym_select_expression] = STATE(2380), - [sym_lock_expression] = STATE(2380), - [sym_unsafe_expression] = STATE(2380), - [sym_sql_expression] = STATE(2380), - [sym_c_string_literal] = STATE(2308), - [sym_raw_string_literal] = STATE(2308), - [sym_interpreted_string_literal] = STATE(2308), - [sym_mutability_modifiers] = STATE(939), - [sym_plain_type] = STATE(4297), - [sym__plain_type_without_special] = STATE(2302), - [sym_anon_struct_type] = STATE(2303), - [sym_multi_return_type] = STATE(2302), - [sym_result_type] = STATE(2302), - [sym_option_type] = STATE(2302), - [sym_qualified_type] = STATE(3541), - [sym_fixed_array_type] = STATE(2303), - [sym_array_type] = STATE(2303), - [sym_pointer_type] = STATE(2303), - [sym_wrong_pointer_type] = STATE(2303), - [sym_map_type] = STATE(2303), - [sym_channel_type] = STATE(2303), - [sym_shared_type] = STATE(2303), - [sym_thread_type] = STATE(2303), - [sym_atomic_type] = STATE(2303), - [sym_generic_type] = STATE(2303), - [sym_function_type] = STATE(2303), - [aux_sym_map_init_expression_repeat1] = STATE(295), - [sym_identifier] = ACTIONS(1426), + [sym__expression] = STATE(2558), + [sym__expression_without_blocks] = STATE(2347), + [sym__expression_with_blocks] = STATE(2347), + [sym_inc_expression] = STATE(2379), + [sym_dec_expression] = STATE(2379), + [sym_or_block_expression] = STATE(2379), + [sym_option_propagation_expression] = STATE(2379), + [sym_result_propagation_expression] = STATE(2379), + [sym_anon_struct_value_expression] = STATE(2378), + [sym_go_expression] = STATE(2379), + [sym_spawn_expression] = STATE(2379), + [sym_parenthesized_expression] = STATE(2379), + [sym_call_expression] = STATE(2379), + [sym_type_initializer] = STATE(2378), + [sym_function_literal] = STATE(2379), + [sym_reference_expression] = STATE(2377), + [sym_type_reference_expression] = STATE(3460), + [sym_unary_expression] = STATE(2379), + [sym_receive_expression] = STATE(2379), + [sym_binary_expression] = STATE(2379), + [sym_as_type_cast_expression] = STATE(2379), + [sym__max_group] = STATE(2379), + [sym_literal] = STATE(2392), + [sym_map_init_expression] = STATE(2378), + [sym_array_creation] = STATE(2379), + [sym_fixed_array_creation] = STATE(2379), + [sym_selector_expression] = STATE(2379), + [sym_index_expression] = STATE(2379), + [sym_slice_expression] = STATE(2379), + [sym_if_expression] = STATE(2378), + [sym_compile_time_if_expression] = STATE(2378), + [sym_is_expression] = STATE(2379), + [sym_in_expression] = STATE(2379), + [sym_enum_fetch] = STATE(2379), + [sym_match_expression] = STATE(2378), + [sym_select_expression] = STATE(2378), + [sym_lock_expression] = STATE(2378), + [sym_unsafe_expression] = STATE(2378), + [sym_sql_expression] = STATE(2378), + [sym_c_string_literal] = STATE(2401), + [sym_raw_string_literal] = STATE(2401), + [sym_interpreted_string_literal] = STATE(2401), + [sym_mutability_modifiers] = STATE(900), + [sym_mutable_expression] = STATE(3813), + [sym_expression_list] = STATE(4068), + [sym_plain_type] = STATE(4160), + [sym__plain_type_without_special] = STATE(2360), + [sym_anon_struct_type] = STATE(2362), + [sym_multi_return_type] = STATE(2360), + [sym_result_type] = STATE(2360), + [sym_option_type] = STATE(2360), + [sym_qualified_type] = STATE(3460), + [sym_fixed_array_type] = STATE(2362), + [sym_array_type] = STATE(2362), + [sym_pointer_type] = STATE(2362), + [sym_wrong_pointer_type] = STATE(2362), + [sym_map_type] = STATE(2362), + [sym_channel_type] = STATE(2362), + [sym_shared_type] = STATE(2362), + [sym_thread_type] = STATE(2362), + [sym_atomic_type] = STATE(2362), + [sym_generic_type] = STATE(2362), + [sym_function_type] = STATE(2362), + [sym_block] = STATE(2626), + [sym_identifier] = ACTIONS(1815), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1428), - [anon_sym_LBRACE] = ACTIONS(1430), - [anon_sym_RBRACE] = ACTIONS(1963), - [anon_sym_LPAREN] = ACTIONS(1432), - [anon_sym_fn] = ACTIONS(1434), - [anon_sym_PLUS] = ACTIONS(1436), - [anon_sym_DASH] = ACTIONS(1436), - [anon_sym_STAR] = ACTIONS(1438), - [anon_sym_struct] = ACTIONS(1440), + [anon_sym_DOT] = ACTIONS(1430), + [anon_sym_LBRACE] = ACTIONS(1961), + [anon_sym_LPAREN] = ACTIONS(1434), + [anon_sym_fn] = ACTIONS(1436), + [anon_sym_PLUS] = ACTIONS(1817), + [anon_sym_DASH] = ACTIONS(1817), + [anon_sym_STAR] = ACTIONS(1819), + [anon_sym_struct] = ACTIONS(1442), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(1442), - [anon_sym_go] = ACTIONS(1444), - [anon_sym_spawn] = ACTIONS(1446), - [anon_sym_json_DOTdecode] = ACTIONS(1448), - [anon_sym_LBRACK2] = ACTIONS(1450), - [anon_sym_TILDE] = ACTIONS(1436), - [anon_sym_CARET] = ACTIONS(1436), - [anon_sym_AMP] = ACTIONS(1452), - [anon_sym_LT_DASH] = ACTIONS(1454), - [sym_none] = ACTIONS(1456), - [sym_true] = ACTIONS(1456), - [sym_false] = ACTIONS(1456), - [sym_nil] = ACTIONS(1456), - [anon_sym_if] = ACTIONS(1827), - [anon_sym_DOLLARif] = ACTIONS(1460), - [anon_sym_match] = ACTIONS(1462), - [anon_sym_select] = ACTIONS(1464), - [anon_sym_lock] = ACTIONS(1466), - [anon_sym_rlock] = ACTIONS(1466), - [anon_sym_unsafe] = ACTIONS(1833), - [anon_sym_sql] = ACTIONS(1470), - [sym_int_literal] = ACTIONS(1456), - [sym_float_literal] = ACTIONS(1472), - [sym_rune_literal] = ACTIONS(1472), - [sym_pseudo_compile_time_identifier] = ACTIONS(1474), + [anon_sym_BANG] = ACTIONS(1821), + [anon_sym_go] = ACTIONS(1823), + [anon_sym_spawn] = ACTIONS(1825), + [anon_sym_json_DOTdecode] = ACTIONS(1450), + [anon_sym_LBRACK2] = ACTIONS(1827), + [anon_sym_TILDE] = ACTIONS(1817), + [anon_sym_CARET] = ACTIONS(1817), + [anon_sym_AMP] = ACTIONS(1829), + [anon_sym_LT_DASH] = ACTIONS(1831), + [sym_none] = ACTIONS(1458), + [sym_true] = ACTIONS(1458), + [sym_false] = ACTIONS(1458), + [sym_nil] = ACTIONS(1458), + [anon_sym_if] = ACTIONS(1833), + [anon_sym_DOLLARif] = ACTIONS(1462), + [anon_sym_match] = ACTIONS(1464), + [anon_sym_select] = ACTIONS(1835), + [anon_sym_lock] = ACTIONS(1837), + [anon_sym_rlock] = ACTIONS(1837), + [anon_sym_unsafe] = ACTIONS(1839), + [anon_sym_sql] = ACTIONS(1472), + [sym_int_literal] = ACTIONS(1458), + [sym_float_literal] = ACTIONS(1474), + [sym_rune_literal] = ACTIONS(1474), + [sym_pseudo_compile_time_identifier] = ACTIONS(1476), [anon_sym_shared] = ACTIONS(83), [anon_sym_map_LBRACK] = ACTIONS(85), [anon_sym_chan] = ACTIONS(87), [anon_sym_thread] = ACTIONS(89), [anon_sym_atomic] = ACTIONS(91), - [sym___double_quote] = ACTIONS(1478), - [sym___single_quote] = ACTIONS(1480), - [sym___c_double_quote] = ACTIONS(1482), - [sym___c_single_quote] = ACTIONS(1484), - [sym___r_double_quote] = ACTIONS(1486), - [sym___r_single_quote] = ACTIONS(1488), + [sym___double_quote] = ACTIONS(1480), + [sym___single_quote] = ACTIONS(1482), + [sym___c_double_quote] = ACTIONS(1484), + [sym___c_single_quote] = ACTIONS(1486), + [sym___r_double_quote] = ACTIONS(1488), + [sym___r_single_quote] = ACTIONS(1490), }, [286] = { [sym_line_comment] = STATE(286), [sym_block_comment] = STATE(286), - [sym__expression] = STATE(2384), - [sym__expression_without_blocks] = STATE(2300), - [sym__expression_with_blocks] = STATE(2300), - [sym_inc_expression] = STATE(2307), - [sym_dec_expression] = STATE(2307), - [sym_or_block_expression] = STATE(2307), - [sym_option_propagation_expression] = STATE(2307), - [sym_result_propagation_expression] = STATE(2307), - [sym_anon_struct_value_expression] = STATE(2380), - [sym_go_expression] = STATE(2307), - [sym_spawn_expression] = STATE(2307), - [sym_parenthesized_expression] = STATE(2307), - [sym_call_expression] = STATE(2307), - [sym_type_initializer] = STATE(2380), - [sym_function_literal] = STATE(2307), - [sym_reference_expression] = STATE(2311), - [sym_type_reference_expression] = STATE(3541), - [sym_unary_expression] = STATE(2307), - [sym_receive_expression] = STATE(2307), - [sym_binary_expression] = STATE(2307), - [sym_as_type_cast_expression] = STATE(2307), - [sym__max_group] = STATE(2307), - [sym_literal] = STATE(2292), - [sym_map_init_expression] = STATE(2380), - [sym_array_creation] = STATE(2307), - [sym_fixed_array_creation] = STATE(2307), - [sym_selector_expression] = STATE(2307), - [sym_index_expression] = STATE(2307), - [sym_slice_expression] = STATE(2307), - [sym_if_expression] = STATE(2380), - [sym_compile_time_if_expression] = STATE(2380), - [sym_is_expression] = STATE(2307), - [sym_in_expression] = STATE(2307), - [sym_enum_fetch] = STATE(2307), - [sym_match_expression] = STATE(2380), - [sym_select_expression] = STATE(2380), - [sym_lock_expression] = STATE(2380), - [sym_unsafe_expression] = STATE(2380), - [sym_sql_expression] = STATE(2380), - [sym_c_string_literal] = STATE(2308), - [sym_raw_string_literal] = STATE(2308), - [sym_interpreted_string_literal] = STATE(2308), - [sym_mutability_modifiers] = STATE(765), - [sym_mutable_expression] = STATE(3823), - [sym_expression_list] = STATE(4480), - [sym_plain_type] = STATE(4297), - [sym__plain_type_without_special] = STATE(2302), - [sym_anon_struct_type] = STATE(2303), - [sym_multi_return_type] = STATE(2302), - [sym_result_type] = STATE(2302), - [sym_option_type] = STATE(2302), - [sym_qualified_type] = STATE(3541), - [sym_fixed_array_type] = STATE(2303), - [sym_array_type] = STATE(2303), - [sym_pointer_type] = STATE(2303), - [sym_wrong_pointer_type] = STATE(2303), - [sym_map_type] = STATE(2303), - [sym_channel_type] = STATE(2303), - [sym_shared_type] = STATE(2303), - [sym_thread_type] = STATE(2303), - [sym_atomic_type] = STATE(2303), - [sym_generic_type] = STATE(2303), - [sym_function_type] = STATE(2303), - [sym_var_declaration] = STATE(4306), - [sym_identifier] = ACTIONS(1807), + [sym__expression] = STATE(2322), + [sym__expression_without_blocks] = STATE(2347), + [sym__expression_with_blocks] = STATE(2347), + [sym_inc_expression] = STATE(2379), + [sym_dec_expression] = STATE(2379), + [sym_or_block_expression] = STATE(2379), + [sym_option_propagation_expression] = STATE(2379), + [sym_result_propagation_expression] = STATE(2379), + [sym_anon_struct_value_expression] = STATE(2378), + [sym_go_expression] = STATE(2379), + [sym_spawn_expression] = STATE(2379), + [sym_parenthesized_expression] = STATE(2379), + [sym_call_expression] = STATE(2379), + [sym_type_initializer] = STATE(2378), + [sym_function_literal] = STATE(2379), + [sym_reference_expression] = STATE(2377), + [sym_type_reference_expression] = STATE(3460), + [sym_unary_expression] = STATE(2379), + [sym_receive_expression] = STATE(2379), + [sym_binary_expression] = STATE(2379), + [sym_as_type_cast_expression] = STATE(2379), + [sym__max_group] = STATE(2379), + [sym_literal] = STATE(2392), + [sym_map_init_expression] = STATE(2378), + [sym_array_creation] = STATE(2379), + [sym_fixed_array_creation] = STATE(2379), + [sym_selector_expression] = STATE(2379), + [sym_index_expression] = STATE(2379), + [sym_slice_expression] = STATE(2379), + [sym_if_expression] = STATE(2378), + [sym_compile_time_if_expression] = STATE(2378), + [sym_is_expression] = STATE(2379), + [sym_in_expression] = STATE(2379), + [sym_enum_fetch] = STATE(2379), + [sym_match_expression] = STATE(2378), + [sym_select_expression] = STATE(2378), + [sym_lock_expression] = STATE(2378), + [sym_unsafe_expression] = STATE(2378), + [sym_sql_expression] = STATE(2378), + [sym_c_string_literal] = STATE(2401), + [sym_raw_string_literal] = STATE(2401), + [sym_interpreted_string_literal] = STATE(2401), + [sym_mutability_modifiers] = STATE(893), + [sym_mutable_expression] = STATE(3871), + [sym_expression_list] = STATE(4483), + [sym_plain_type] = STATE(4160), + [sym__plain_type_without_special] = STATE(2360), + [sym_anon_struct_type] = STATE(2362), + [sym_multi_return_type] = STATE(2360), + [sym_result_type] = STATE(2360), + [sym_option_type] = STATE(2360), + [sym_qualified_type] = STATE(3460), + [sym_fixed_array_type] = STATE(2362), + [sym_array_type] = STATE(2362), + [sym_pointer_type] = STATE(2362), + [sym_wrong_pointer_type] = STATE(2362), + [sym_map_type] = STATE(2362), + [sym_channel_type] = STATE(2362), + [sym_shared_type] = STATE(2362), + [sym_thread_type] = STATE(2362), + [sym_atomic_type] = STATE(2362), + [sym_generic_type] = STATE(2362), + [sym_function_type] = STATE(2362), + [sym_var_declaration] = STATE(4060), + [sym_identifier] = ACTIONS(1815), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1428), - [anon_sym_LBRACE] = ACTIONS(1430), - [anon_sym_LPAREN] = ACTIONS(1432), - [anon_sym_fn] = ACTIONS(1434), - [anon_sym_PLUS] = ACTIONS(1811), - [anon_sym_DASH] = ACTIONS(1811), - [anon_sym_STAR] = ACTIONS(1813), - [anon_sym_struct] = ACTIONS(1440), + [anon_sym_DOT] = ACTIONS(1430), + [anon_sym_LBRACE] = ACTIONS(1432), + [anon_sym_LPAREN] = ACTIONS(1434), + [anon_sym_fn] = ACTIONS(1436), + [anon_sym_PLUS] = ACTIONS(1817), + [anon_sym_DASH] = ACTIONS(1817), + [anon_sym_STAR] = ACTIONS(1819), + [anon_sym_struct] = ACTIONS(1442), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(1815), - [anon_sym_go] = ACTIONS(1817), - [anon_sym_spawn] = ACTIONS(1819), - [anon_sym_json_DOTdecode] = ACTIONS(1448), - [anon_sym_LBRACK2] = ACTIONS(1821), - [anon_sym_TILDE] = ACTIONS(1811), - [anon_sym_CARET] = ACTIONS(1811), - [anon_sym_AMP] = ACTIONS(1823), - [anon_sym_LT_DASH] = ACTIONS(1825), - [sym_none] = ACTIONS(1456), - [sym_true] = ACTIONS(1456), - [sym_false] = ACTIONS(1456), - [sym_nil] = ACTIONS(1456), - [anon_sym_if] = ACTIONS(1827), - [anon_sym_DOLLARif] = ACTIONS(1460), - [anon_sym_match] = ACTIONS(1462), - [anon_sym_select] = ACTIONS(1829), - [anon_sym_lock] = ACTIONS(1831), - [anon_sym_rlock] = ACTIONS(1831), - [anon_sym_unsafe] = ACTIONS(1833), - [anon_sym_sql] = ACTIONS(1470), - [sym_int_literal] = ACTIONS(1456), - [sym_float_literal] = ACTIONS(1472), - [sym_rune_literal] = ACTIONS(1472), - [sym_pseudo_compile_time_identifier] = ACTIONS(1474), + [anon_sym_BANG] = ACTIONS(1821), + [anon_sym_go] = ACTIONS(1823), + [anon_sym_spawn] = ACTIONS(1825), + [anon_sym_json_DOTdecode] = ACTIONS(1450), + [anon_sym_LBRACK2] = ACTIONS(1827), + [anon_sym_TILDE] = ACTIONS(1817), + [anon_sym_CARET] = ACTIONS(1817), + [anon_sym_AMP] = ACTIONS(1829), + [anon_sym_LT_DASH] = ACTIONS(1831), + [sym_none] = ACTIONS(1458), + [sym_true] = ACTIONS(1458), + [sym_false] = ACTIONS(1458), + [sym_nil] = ACTIONS(1458), + [anon_sym_if] = ACTIONS(1833), + [anon_sym_DOLLARif] = ACTIONS(1462), + [anon_sym_match] = ACTIONS(1464), + [anon_sym_select] = ACTIONS(1835), + [anon_sym_lock] = ACTIONS(1837), + [anon_sym_rlock] = ACTIONS(1837), + [anon_sym_unsafe] = ACTIONS(1839), + [anon_sym_sql] = ACTIONS(1472), + [sym_int_literal] = ACTIONS(1458), + [sym_float_literal] = ACTIONS(1474), + [sym_rune_literal] = ACTIONS(1474), + [sym_pseudo_compile_time_identifier] = ACTIONS(1476), [anon_sym_shared] = ACTIONS(83), [anon_sym_map_LBRACK] = ACTIONS(85), [anon_sym_chan] = ACTIONS(87), [anon_sym_thread] = ACTIONS(89), [anon_sym_atomic] = ACTIONS(91), - [sym___double_quote] = ACTIONS(1478), - [sym___single_quote] = ACTIONS(1480), - [sym___c_double_quote] = ACTIONS(1482), - [sym___c_single_quote] = ACTIONS(1484), - [sym___r_double_quote] = ACTIONS(1486), - [sym___r_single_quote] = ACTIONS(1488), + [sym___double_quote] = ACTIONS(1480), + [sym___single_quote] = ACTIONS(1482), + [sym___c_double_quote] = ACTIONS(1484), + [sym___c_single_quote] = ACTIONS(1486), + [sym___r_double_quote] = ACTIONS(1488), + [sym___r_single_quote] = ACTIONS(1490), }, [287] = { [sym_line_comment] = STATE(287), [sym_block_comment] = STATE(287), - [sym__expression] = STATE(2455), - [sym__expression_without_blocks] = STATE(2300), - [sym__expression_with_blocks] = STATE(2300), - [sym_inc_expression] = STATE(2307), - [sym_dec_expression] = STATE(2307), - [sym_or_block_expression] = STATE(2307), - [sym_option_propagation_expression] = STATE(2307), - [sym_result_propagation_expression] = STATE(2307), - [sym_anon_struct_value_expression] = STATE(2380), - [sym_go_expression] = STATE(2307), - [sym_spawn_expression] = STATE(2307), - [sym_parenthesized_expression] = STATE(2307), - [sym_call_expression] = STATE(2307), - [sym_type_initializer] = STATE(2380), - [sym_function_literal] = STATE(2307), - [sym_reference_expression] = STATE(2311), - [sym_type_reference_expression] = STATE(3541), - [sym_unary_expression] = STATE(2307), - [sym_receive_expression] = STATE(2307), - [sym_binary_expression] = STATE(2307), - [sym_as_type_cast_expression] = STATE(2307), - [sym__max_group] = STATE(2307), - [sym_literal] = STATE(2292), - [sym_map_init_expression] = STATE(2380), - [sym_array_creation] = STATE(2307), - [sym_fixed_array_creation] = STATE(2307), - [sym_selector_expression] = STATE(2307), - [sym_index_expression] = STATE(2307), - [sym_slice_expression] = STATE(2307), - [sym_if_expression] = STATE(2380), - [sym_compile_time_if_expression] = STATE(2380), - [sym_is_expression] = STATE(2307), - [sym_in_expression] = STATE(2307), - [sym_enum_fetch] = STATE(2307), - [sym_match_expression] = STATE(2380), - [sym_select_expression] = STATE(2380), - [sym_lock_expression] = STATE(2380), - [sym_unsafe_expression] = STATE(2380), - [sym_sql_expression] = STATE(2380), - [sym_c_string_literal] = STATE(2308), - [sym_raw_string_literal] = STATE(2308), - [sym_interpreted_string_literal] = STATE(2308), - [sym_mutability_modifiers] = STATE(824), - [sym_mutable_expression] = STATE(3922), - [sym_expression_list] = STATE(4254), - [sym_plain_type] = STATE(4297), - [sym__plain_type_without_special] = STATE(2302), - [sym_anon_struct_type] = STATE(2303), - [sym_multi_return_type] = STATE(2302), - [sym_result_type] = STATE(2302), - [sym_option_type] = STATE(2302), - [sym_qualified_type] = STATE(3541), - [sym_fixed_array_type] = STATE(2303), - [sym_array_type] = STATE(2303), - [sym_pointer_type] = STATE(2303), - [sym_wrong_pointer_type] = STATE(2303), - [sym_map_type] = STATE(2303), - [sym_channel_type] = STATE(2303), - [sym_shared_type] = STATE(2303), - [sym_thread_type] = STATE(2303), - [sym_atomic_type] = STATE(2303), - [sym_generic_type] = STATE(2303), - [sym_function_type] = STATE(2303), - [sym_block] = STATE(2251), - [sym_identifier] = ACTIONS(1807), + [sym__expression] = STATE(2632), + [sym__expression_without_blocks] = STATE(2347), + [sym__expression_with_blocks] = STATE(2347), + [sym_inc_expression] = STATE(2379), + [sym_dec_expression] = STATE(2379), + [sym_or_block_expression] = STATE(2379), + [sym_option_propagation_expression] = STATE(2379), + [sym_result_propagation_expression] = STATE(2379), + [sym_anon_struct_value_expression] = STATE(2378), + [sym_go_expression] = STATE(2379), + [sym_spawn_expression] = STATE(2379), + [sym_parenthesized_expression] = STATE(2379), + [sym_call_expression] = STATE(2379), + [sym_type_initializer] = STATE(2378), + [sym_function_literal] = STATE(2379), + [sym_reference_expression] = STATE(2377), + [sym_type_reference_expression] = STATE(3460), + [sym_unary_expression] = STATE(2379), + [sym_receive_expression] = STATE(2379), + [sym_binary_expression] = STATE(2379), + [sym_as_type_cast_expression] = STATE(2379), + [sym__max_group] = STATE(2379), + [sym_literal] = STATE(2392), + [sym_map_init_expression] = STATE(2378), + [sym_map_keyed_element] = STATE(2004), + [sym_array_creation] = STATE(2379), + [sym_fixed_array_creation] = STATE(2379), + [sym_selector_expression] = STATE(2379), + [sym_index_expression] = STATE(2379), + [sym_slice_expression] = STATE(2379), + [sym_if_expression] = STATE(2378), + [sym_compile_time_if_expression] = STATE(2378), + [sym_is_expression] = STATE(2379), + [sym_in_expression] = STATE(2379), + [sym_enum_fetch] = STATE(2379), + [sym_match_expression] = STATE(2378), + [sym_select_expression] = STATE(2378), + [sym_lock_expression] = STATE(2378), + [sym_unsafe_expression] = STATE(2378), + [sym_sql_expression] = STATE(2378), + [sym_c_string_literal] = STATE(2401), + [sym_raw_string_literal] = STATE(2401), + [sym_interpreted_string_literal] = STATE(2401), + [sym_mutability_modifiers] = STATE(939), + [sym_plain_type] = STATE(4160), + [sym__plain_type_without_special] = STATE(2360), + [sym_anon_struct_type] = STATE(2362), + [sym_multi_return_type] = STATE(2360), + [sym_result_type] = STATE(2360), + [sym_option_type] = STATE(2360), + [sym_qualified_type] = STATE(3460), + [sym_fixed_array_type] = STATE(2362), + [sym_array_type] = STATE(2362), + [sym_pointer_type] = STATE(2362), + [sym_wrong_pointer_type] = STATE(2362), + [sym_map_type] = STATE(2362), + [sym_channel_type] = STATE(2362), + [sym_shared_type] = STATE(2362), + [sym_thread_type] = STATE(2362), + [sym_atomic_type] = STATE(2362), + [sym_generic_type] = STATE(2362), + [sym_function_type] = STATE(2362), + [aux_sym_map_init_expression_repeat1] = STATE(292), + [sym_identifier] = ACTIONS(1428), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1428), - [anon_sym_LBRACE] = ACTIONS(1965), - [anon_sym_LPAREN] = ACTIONS(1432), - [anon_sym_fn] = ACTIONS(1434), - [anon_sym_PLUS] = ACTIONS(1811), - [anon_sym_DASH] = ACTIONS(1811), - [anon_sym_STAR] = ACTIONS(1813), - [anon_sym_struct] = ACTIONS(1440), + [anon_sym_DOT] = ACTIONS(1430), + [anon_sym_LBRACE] = ACTIONS(1432), + [anon_sym_RBRACE] = ACTIONS(1963), + [anon_sym_LPAREN] = ACTIONS(1434), + [anon_sym_fn] = ACTIONS(1436), + [anon_sym_PLUS] = ACTIONS(1438), + [anon_sym_DASH] = ACTIONS(1438), + [anon_sym_STAR] = ACTIONS(1440), + [anon_sym_struct] = ACTIONS(1442), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(1815), - [anon_sym_go] = ACTIONS(1817), - [anon_sym_spawn] = ACTIONS(1819), - [anon_sym_json_DOTdecode] = ACTIONS(1448), - [anon_sym_LBRACK2] = ACTIONS(1821), - [anon_sym_TILDE] = ACTIONS(1811), - [anon_sym_CARET] = ACTIONS(1811), - [anon_sym_AMP] = ACTIONS(1823), - [anon_sym_LT_DASH] = ACTIONS(1825), - [sym_none] = ACTIONS(1456), - [sym_true] = ACTIONS(1456), - [sym_false] = ACTIONS(1456), - [sym_nil] = ACTIONS(1456), - [anon_sym_if] = ACTIONS(1827), - [anon_sym_DOLLARif] = ACTIONS(1460), - [anon_sym_match] = ACTIONS(1462), - [anon_sym_select] = ACTIONS(1829), - [anon_sym_lock] = ACTIONS(1831), - [anon_sym_rlock] = ACTIONS(1831), - [anon_sym_unsafe] = ACTIONS(1833), - [anon_sym_sql] = ACTIONS(1470), - [sym_int_literal] = ACTIONS(1456), - [sym_float_literal] = ACTIONS(1472), - [sym_rune_literal] = ACTIONS(1472), - [sym_pseudo_compile_time_identifier] = ACTIONS(1474), + [anon_sym_BANG] = ACTIONS(1444), + [anon_sym_go] = ACTIONS(1446), + [anon_sym_spawn] = ACTIONS(1448), + [anon_sym_json_DOTdecode] = ACTIONS(1450), + [anon_sym_LBRACK2] = ACTIONS(1452), + [anon_sym_TILDE] = ACTIONS(1438), + [anon_sym_CARET] = ACTIONS(1438), + [anon_sym_AMP] = ACTIONS(1454), + [anon_sym_LT_DASH] = ACTIONS(1456), + [sym_none] = ACTIONS(1458), + [sym_true] = ACTIONS(1458), + [sym_false] = ACTIONS(1458), + [sym_nil] = ACTIONS(1458), + [anon_sym_if] = ACTIONS(1833), + [anon_sym_DOLLARif] = ACTIONS(1462), + [anon_sym_match] = ACTIONS(1464), + [anon_sym_select] = ACTIONS(1466), + [anon_sym_lock] = ACTIONS(1468), + [anon_sym_rlock] = ACTIONS(1468), + [anon_sym_unsafe] = ACTIONS(1839), + [anon_sym_sql] = ACTIONS(1472), + [sym_int_literal] = ACTIONS(1458), + [sym_float_literal] = ACTIONS(1474), + [sym_rune_literal] = ACTIONS(1474), + [sym_pseudo_compile_time_identifier] = ACTIONS(1476), [anon_sym_shared] = ACTIONS(83), [anon_sym_map_LBRACK] = ACTIONS(85), [anon_sym_chan] = ACTIONS(87), [anon_sym_thread] = ACTIONS(89), [anon_sym_atomic] = ACTIONS(91), - [sym___double_quote] = ACTIONS(1478), - [sym___single_quote] = ACTIONS(1480), - [sym___c_double_quote] = ACTIONS(1482), - [sym___c_single_quote] = ACTIONS(1484), - [sym___r_double_quote] = ACTIONS(1486), - [sym___r_single_quote] = ACTIONS(1488), + [sym___double_quote] = ACTIONS(1480), + [sym___single_quote] = ACTIONS(1482), + [sym___c_double_quote] = ACTIONS(1484), + [sym___c_single_quote] = ACTIONS(1486), + [sym___r_double_quote] = ACTIONS(1488), + [sym___r_single_quote] = ACTIONS(1490), }, [288] = { [sym_line_comment] = STATE(288), [sym_block_comment] = STATE(288), - [sym__expression] = STATE(2455), - [sym__expression_without_blocks] = STATE(2300), - [sym__expression_with_blocks] = STATE(2300), - [sym_inc_expression] = STATE(2307), - [sym_dec_expression] = STATE(2307), - [sym_or_block_expression] = STATE(2307), - [sym_option_propagation_expression] = STATE(2307), - [sym_result_propagation_expression] = STATE(2307), - [sym_anon_struct_value_expression] = STATE(2380), - [sym_go_expression] = STATE(2307), - [sym_spawn_expression] = STATE(2307), - [sym_parenthesized_expression] = STATE(2307), - [sym_call_expression] = STATE(2307), - [sym_type_initializer] = STATE(2380), - [sym_function_literal] = STATE(2307), - [sym_reference_expression] = STATE(2311), - [sym_type_reference_expression] = STATE(3541), - [sym_unary_expression] = STATE(2307), - [sym_receive_expression] = STATE(2307), - [sym_binary_expression] = STATE(2307), - [sym_as_type_cast_expression] = STATE(2307), - [sym__max_group] = STATE(2307), - [sym_literal] = STATE(2292), - [sym_map_init_expression] = STATE(2380), - [sym_array_creation] = STATE(2307), - [sym_fixed_array_creation] = STATE(2307), - [sym_selector_expression] = STATE(2307), - [sym_index_expression] = STATE(2307), - [sym_slice_expression] = STATE(2307), - [sym_if_expression] = STATE(2380), - [sym_compile_time_if_expression] = STATE(2380), - [sym_is_expression] = STATE(2307), - [sym_in_expression] = STATE(2307), - [sym_enum_fetch] = STATE(2307), - [sym_match_expression] = STATE(2380), - [sym_select_expression] = STATE(2380), - [sym_lock_expression] = STATE(2380), - [sym_unsafe_expression] = STATE(2380), - [sym_sql_expression] = STATE(2380), - [sym_c_string_literal] = STATE(2308), - [sym_raw_string_literal] = STATE(2308), - [sym_interpreted_string_literal] = STATE(2308), - [sym_mutability_modifiers] = STATE(824), - [sym_mutable_expression] = STATE(3922), - [sym_expression_list] = STATE(4286), - [sym_plain_type] = STATE(4297), - [sym__plain_type_without_special] = STATE(2302), - [sym_anon_struct_type] = STATE(2303), - [sym_multi_return_type] = STATE(2302), - [sym_result_type] = STATE(2302), - [sym_option_type] = STATE(2302), - [sym_qualified_type] = STATE(3541), - [sym_fixed_array_type] = STATE(2303), - [sym_array_type] = STATE(2303), - [sym_pointer_type] = STATE(2303), - [sym_wrong_pointer_type] = STATE(2303), - [sym_map_type] = STATE(2303), - [sym_channel_type] = STATE(2303), - [sym_shared_type] = STATE(2303), - [sym_thread_type] = STATE(2303), - [sym_atomic_type] = STATE(2303), - [sym_generic_type] = STATE(2303), - [sym_function_type] = STATE(2303), - [sym_block] = STATE(2521), - [sym_identifier] = ACTIONS(1807), + [sym__expression] = STATE(2632), + [sym__expression_without_blocks] = STATE(2347), + [sym__expression_with_blocks] = STATE(2347), + [sym_inc_expression] = STATE(2379), + [sym_dec_expression] = STATE(2379), + [sym_or_block_expression] = STATE(2379), + [sym_option_propagation_expression] = STATE(2379), + [sym_result_propagation_expression] = STATE(2379), + [sym_anon_struct_value_expression] = STATE(2378), + [sym_go_expression] = STATE(2379), + [sym_spawn_expression] = STATE(2379), + [sym_parenthesized_expression] = STATE(2379), + [sym_call_expression] = STATE(2379), + [sym_type_initializer] = STATE(2378), + [sym_function_literal] = STATE(2379), + [sym_reference_expression] = STATE(2377), + [sym_type_reference_expression] = STATE(3460), + [sym_unary_expression] = STATE(2379), + [sym_receive_expression] = STATE(2379), + [sym_binary_expression] = STATE(2379), + [sym_as_type_cast_expression] = STATE(2379), + [sym__max_group] = STATE(2379), + [sym_literal] = STATE(2392), + [sym_map_init_expression] = STATE(2378), + [sym_map_keyed_element] = STATE(2004), + [sym_array_creation] = STATE(2379), + [sym_fixed_array_creation] = STATE(2379), + [sym_selector_expression] = STATE(2379), + [sym_index_expression] = STATE(2379), + [sym_slice_expression] = STATE(2379), + [sym_if_expression] = STATE(2378), + [sym_compile_time_if_expression] = STATE(2378), + [sym_is_expression] = STATE(2379), + [sym_in_expression] = STATE(2379), + [sym_enum_fetch] = STATE(2379), + [sym_match_expression] = STATE(2378), + [sym_select_expression] = STATE(2378), + [sym_lock_expression] = STATE(2378), + [sym_unsafe_expression] = STATE(2378), + [sym_sql_expression] = STATE(2378), + [sym_c_string_literal] = STATE(2401), + [sym_raw_string_literal] = STATE(2401), + [sym_interpreted_string_literal] = STATE(2401), + [sym_mutability_modifiers] = STATE(939), + [sym_plain_type] = STATE(4160), + [sym__plain_type_without_special] = STATE(2360), + [sym_anon_struct_type] = STATE(2362), + [sym_multi_return_type] = STATE(2360), + [sym_result_type] = STATE(2360), + [sym_option_type] = STATE(2360), + [sym_qualified_type] = STATE(3460), + [sym_fixed_array_type] = STATE(2362), + [sym_array_type] = STATE(2362), + [sym_pointer_type] = STATE(2362), + [sym_wrong_pointer_type] = STATE(2362), + [sym_map_type] = STATE(2362), + [sym_channel_type] = STATE(2362), + [sym_shared_type] = STATE(2362), + [sym_thread_type] = STATE(2362), + [sym_atomic_type] = STATE(2362), + [sym_generic_type] = STATE(2362), + [sym_function_type] = STATE(2362), + [aux_sym_map_init_expression_repeat1] = STATE(290), + [sym_identifier] = ACTIONS(1428), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1428), - [anon_sym_LBRACE] = ACTIONS(1967), - [anon_sym_LPAREN] = ACTIONS(1432), - [anon_sym_fn] = ACTIONS(1434), - [anon_sym_PLUS] = ACTIONS(1811), - [anon_sym_DASH] = ACTIONS(1811), - [anon_sym_STAR] = ACTIONS(1813), - [anon_sym_struct] = ACTIONS(1440), + [anon_sym_DOT] = ACTIONS(1430), + [anon_sym_LBRACE] = ACTIONS(1432), + [anon_sym_RBRACE] = ACTIONS(1965), + [anon_sym_LPAREN] = ACTIONS(1434), + [anon_sym_fn] = ACTIONS(1436), + [anon_sym_PLUS] = ACTIONS(1438), + [anon_sym_DASH] = ACTIONS(1438), + [anon_sym_STAR] = ACTIONS(1440), + [anon_sym_struct] = ACTIONS(1442), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(1815), - [anon_sym_go] = ACTIONS(1817), - [anon_sym_spawn] = ACTIONS(1819), - [anon_sym_json_DOTdecode] = ACTIONS(1448), - [anon_sym_LBRACK2] = ACTIONS(1821), - [anon_sym_TILDE] = ACTIONS(1811), - [anon_sym_CARET] = ACTIONS(1811), - [anon_sym_AMP] = ACTIONS(1823), - [anon_sym_LT_DASH] = ACTIONS(1825), - [sym_none] = ACTIONS(1456), - [sym_true] = ACTIONS(1456), - [sym_false] = ACTIONS(1456), - [sym_nil] = ACTIONS(1456), - [anon_sym_if] = ACTIONS(1827), - [anon_sym_DOLLARif] = ACTIONS(1460), - [anon_sym_match] = ACTIONS(1462), - [anon_sym_select] = ACTIONS(1829), - [anon_sym_lock] = ACTIONS(1831), - [anon_sym_rlock] = ACTIONS(1831), - [anon_sym_unsafe] = ACTIONS(1833), - [anon_sym_sql] = ACTIONS(1470), - [sym_int_literal] = ACTIONS(1456), - [sym_float_literal] = ACTIONS(1472), - [sym_rune_literal] = ACTIONS(1472), - [sym_pseudo_compile_time_identifier] = ACTIONS(1474), + [anon_sym_BANG] = ACTIONS(1444), + [anon_sym_go] = ACTIONS(1446), + [anon_sym_spawn] = ACTIONS(1448), + [anon_sym_json_DOTdecode] = ACTIONS(1450), + [anon_sym_LBRACK2] = ACTIONS(1452), + [anon_sym_TILDE] = ACTIONS(1438), + [anon_sym_CARET] = ACTIONS(1438), + [anon_sym_AMP] = ACTIONS(1454), + [anon_sym_LT_DASH] = ACTIONS(1456), + [sym_none] = ACTIONS(1458), + [sym_true] = ACTIONS(1458), + [sym_false] = ACTIONS(1458), + [sym_nil] = ACTIONS(1458), + [anon_sym_if] = ACTIONS(1833), + [anon_sym_DOLLARif] = ACTIONS(1462), + [anon_sym_match] = ACTIONS(1464), + [anon_sym_select] = ACTIONS(1466), + [anon_sym_lock] = ACTIONS(1468), + [anon_sym_rlock] = ACTIONS(1468), + [anon_sym_unsafe] = ACTIONS(1839), + [anon_sym_sql] = ACTIONS(1472), + [sym_int_literal] = ACTIONS(1458), + [sym_float_literal] = ACTIONS(1474), + [sym_rune_literal] = ACTIONS(1474), + [sym_pseudo_compile_time_identifier] = ACTIONS(1476), [anon_sym_shared] = ACTIONS(83), [anon_sym_map_LBRACK] = ACTIONS(85), [anon_sym_chan] = ACTIONS(87), [anon_sym_thread] = ACTIONS(89), [anon_sym_atomic] = ACTIONS(91), - [sym___double_quote] = ACTIONS(1478), - [sym___single_quote] = ACTIONS(1480), - [sym___c_double_quote] = ACTIONS(1482), - [sym___c_single_quote] = ACTIONS(1484), - [sym___r_double_quote] = ACTIONS(1486), - [sym___r_single_quote] = ACTIONS(1488), + [sym___double_quote] = ACTIONS(1480), + [sym___single_quote] = ACTIONS(1482), + [sym___c_double_quote] = ACTIONS(1484), + [sym___c_single_quote] = ACTIONS(1486), + [sym___r_double_quote] = ACTIONS(1488), + [sym___r_single_quote] = ACTIONS(1490), }, [289] = { [sym_line_comment] = STATE(289), [sym_block_comment] = STATE(289), - [sym__expression] = STATE(2455), - [sym__expression_without_blocks] = STATE(2300), - [sym__expression_with_blocks] = STATE(2300), - [sym_inc_expression] = STATE(2307), - [sym_dec_expression] = STATE(2307), - [sym_or_block_expression] = STATE(2307), - [sym_option_propagation_expression] = STATE(2307), - [sym_result_propagation_expression] = STATE(2307), - [sym_anon_struct_value_expression] = STATE(2380), - [sym_go_expression] = STATE(2307), - [sym_spawn_expression] = STATE(2307), - [sym_parenthesized_expression] = STATE(2307), - [sym_call_expression] = STATE(2307), - [sym_type_initializer] = STATE(2380), - [sym_function_literal] = STATE(2307), - [sym_reference_expression] = STATE(2311), - [sym_type_reference_expression] = STATE(3541), - [sym_unary_expression] = STATE(2307), - [sym_receive_expression] = STATE(2307), - [sym_binary_expression] = STATE(2307), - [sym_as_type_cast_expression] = STATE(2307), - [sym__max_group] = STATE(2307), - [sym_literal] = STATE(2292), - [sym_map_init_expression] = STATE(2380), - [sym_array_creation] = STATE(2307), - [sym_fixed_array_creation] = STATE(2307), - [sym_selector_expression] = STATE(2307), - [sym_index_expression] = STATE(2307), - [sym_slice_expression] = STATE(2307), - [sym_if_expression] = STATE(2380), - [sym_compile_time_if_expression] = STATE(2380), - [sym_is_expression] = STATE(2307), - [sym_in_expression] = STATE(2307), - [sym_enum_fetch] = STATE(2307), - [sym_match_expression] = STATE(2380), - [sym_select_expression] = STATE(2380), - [sym_lock_expression] = STATE(2380), - [sym_unsafe_expression] = STATE(2380), - [sym_sql_expression] = STATE(2380), - [sym_c_string_literal] = STATE(2308), - [sym_raw_string_literal] = STATE(2308), - [sym_interpreted_string_literal] = STATE(2308), - [sym_mutability_modifiers] = STATE(824), - [sym_mutable_expression] = STATE(3922), - [sym_expression_list] = STATE(4147), - [sym_plain_type] = STATE(4297), - [sym__plain_type_without_special] = STATE(2302), - [sym_anon_struct_type] = STATE(2303), - [sym_multi_return_type] = STATE(2302), - [sym_result_type] = STATE(2302), - [sym_option_type] = STATE(2302), - [sym_qualified_type] = STATE(3541), - [sym_fixed_array_type] = STATE(2303), - [sym_array_type] = STATE(2303), - [sym_pointer_type] = STATE(2303), - [sym_wrong_pointer_type] = STATE(2303), - [sym_map_type] = STATE(2303), - [sym_channel_type] = STATE(2303), - [sym_shared_type] = STATE(2303), - [sym_thread_type] = STATE(2303), - [sym_atomic_type] = STATE(2303), - [sym_generic_type] = STATE(2303), - [sym_function_type] = STATE(2303), - [sym_block] = STATE(2633), - [sym_identifier] = ACTIONS(1807), + [sym__expression] = STATE(2632), + [sym__expression_without_blocks] = STATE(2347), + [sym__expression_with_blocks] = STATE(2347), + [sym_inc_expression] = STATE(2379), + [sym_dec_expression] = STATE(2379), + [sym_or_block_expression] = STATE(2379), + [sym_option_propagation_expression] = STATE(2379), + [sym_result_propagation_expression] = STATE(2379), + [sym_anon_struct_value_expression] = STATE(2378), + [sym_go_expression] = STATE(2379), + [sym_spawn_expression] = STATE(2379), + [sym_parenthesized_expression] = STATE(2379), + [sym_call_expression] = STATE(2379), + [sym_type_initializer] = STATE(2378), + [sym_function_literal] = STATE(2379), + [sym_reference_expression] = STATE(2377), + [sym_type_reference_expression] = STATE(3460), + [sym_unary_expression] = STATE(2379), + [sym_receive_expression] = STATE(2379), + [sym_binary_expression] = STATE(2379), + [sym_as_type_cast_expression] = STATE(2379), + [sym__max_group] = STATE(2379), + [sym_literal] = STATE(2392), + [sym_map_init_expression] = STATE(2378), + [sym_map_keyed_element] = STATE(2004), + [sym_array_creation] = STATE(2379), + [sym_fixed_array_creation] = STATE(2379), + [sym_selector_expression] = STATE(2379), + [sym_index_expression] = STATE(2379), + [sym_slice_expression] = STATE(2379), + [sym_if_expression] = STATE(2378), + [sym_compile_time_if_expression] = STATE(2378), + [sym_is_expression] = STATE(2379), + [sym_in_expression] = STATE(2379), + [sym_enum_fetch] = STATE(2379), + [sym_match_expression] = STATE(2378), + [sym_select_expression] = STATE(2378), + [sym_lock_expression] = STATE(2378), + [sym_unsafe_expression] = STATE(2378), + [sym_sql_expression] = STATE(2378), + [sym_c_string_literal] = STATE(2401), + [sym_raw_string_literal] = STATE(2401), + [sym_interpreted_string_literal] = STATE(2401), + [sym_mutability_modifiers] = STATE(939), + [sym_plain_type] = STATE(4160), + [sym__plain_type_without_special] = STATE(2360), + [sym_anon_struct_type] = STATE(2362), + [sym_multi_return_type] = STATE(2360), + [sym_result_type] = STATE(2360), + [sym_option_type] = STATE(2360), + [sym_qualified_type] = STATE(3460), + [sym_fixed_array_type] = STATE(2362), + [sym_array_type] = STATE(2362), + [sym_pointer_type] = STATE(2362), + [sym_wrong_pointer_type] = STATE(2362), + [sym_map_type] = STATE(2362), + [sym_channel_type] = STATE(2362), + [sym_shared_type] = STATE(2362), + [sym_thread_type] = STATE(2362), + [sym_atomic_type] = STATE(2362), + [sym_generic_type] = STATE(2362), + [sym_function_type] = STATE(2362), + [aux_sym_map_init_expression_repeat1] = STATE(303), + [sym_identifier] = ACTIONS(1428), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1428), - [anon_sym_LBRACE] = ACTIONS(1969), - [anon_sym_LPAREN] = ACTIONS(1432), - [anon_sym_fn] = ACTIONS(1434), - [anon_sym_PLUS] = ACTIONS(1811), - [anon_sym_DASH] = ACTIONS(1811), - [anon_sym_STAR] = ACTIONS(1813), - [anon_sym_struct] = ACTIONS(1440), + [anon_sym_DOT] = ACTIONS(1430), + [anon_sym_LBRACE] = ACTIONS(1432), + [anon_sym_RBRACE] = ACTIONS(1967), + [anon_sym_LPAREN] = ACTIONS(1434), + [anon_sym_fn] = ACTIONS(1436), + [anon_sym_PLUS] = ACTIONS(1438), + [anon_sym_DASH] = ACTIONS(1438), + [anon_sym_STAR] = ACTIONS(1440), + [anon_sym_struct] = ACTIONS(1442), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(1815), - [anon_sym_go] = ACTIONS(1817), - [anon_sym_spawn] = ACTIONS(1819), - [anon_sym_json_DOTdecode] = ACTIONS(1448), - [anon_sym_LBRACK2] = ACTIONS(1821), - [anon_sym_TILDE] = ACTIONS(1811), - [anon_sym_CARET] = ACTIONS(1811), - [anon_sym_AMP] = ACTIONS(1823), - [anon_sym_LT_DASH] = ACTIONS(1825), - [sym_none] = ACTIONS(1456), - [sym_true] = ACTIONS(1456), - [sym_false] = ACTIONS(1456), - [sym_nil] = ACTIONS(1456), - [anon_sym_if] = ACTIONS(1827), - [anon_sym_DOLLARif] = ACTIONS(1460), - [anon_sym_match] = ACTIONS(1462), - [anon_sym_select] = ACTIONS(1829), - [anon_sym_lock] = ACTIONS(1831), - [anon_sym_rlock] = ACTIONS(1831), - [anon_sym_unsafe] = ACTIONS(1833), - [anon_sym_sql] = ACTIONS(1470), - [sym_int_literal] = ACTIONS(1456), - [sym_float_literal] = ACTIONS(1472), - [sym_rune_literal] = ACTIONS(1472), - [sym_pseudo_compile_time_identifier] = ACTIONS(1474), + [anon_sym_BANG] = ACTIONS(1444), + [anon_sym_go] = ACTIONS(1446), + [anon_sym_spawn] = ACTIONS(1448), + [anon_sym_json_DOTdecode] = ACTIONS(1450), + [anon_sym_LBRACK2] = ACTIONS(1452), + [anon_sym_TILDE] = ACTIONS(1438), + [anon_sym_CARET] = ACTIONS(1438), + [anon_sym_AMP] = ACTIONS(1454), + [anon_sym_LT_DASH] = ACTIONS(1456), + [sym_none] = ACTIONS(1458), + [sym_true] = ACTIONS(1458), + [sym_false] = ACTIONS(1458), + [sym_nil] = ACTIONS(1458), + [anon_sym_if] = ACTIONS(1833), + [anon_sym_DOLLARif] = ACTIONS(1462), + [anon_sym_match] = ACTIONS(1464), + [anon_sym_select] = ACTIONS(1466), + [anon_sym_lock] = ACTIONS(1468), + [anon_sym_rlock] = ACTIONS(1468), + [anon_sym_unsafe] = ACTIONS(1839), + [anon_sym_sql] = ACTIONS(1472), + [sym_int_literal] = ACTIONS(1458), + [sym_float_literal] = ACTIONS(1474), + [sym_rune_literal] = ACTIONS(1474), + [sym_pseudo_compile_time_identifier] = ACTIONS(1476), [anon_sym_shared] = ACTIONS(83), [anon_sym_map_LBRACK] = ACTIONS(85), [anon_sym_chan] = ACTIONS(87), [anon_sym_thread] = ACTIONS(89), [anon_sym_atomic] = ACTIONS(91), - [sym___double_quote] = ACTIONS(1478), - [sym___single_quote] = ACTIONS(1480), - [sym___c_double_quote] = ACTIONS(1482), - [sym___c_single_quote] = ACTIONS(1484), - [sym___r_double_quote] = ACTIONS(1486), - [sym___r_single_quote] = ACTIONS(1488), + [sym___double_quote] = ACTIONS(1480), + [sym___single_quote] = ACTIONS(1482), + [sym___c_double_quote] = ACTIONS(1484), + [sym___c_single_quote] = ACTIONS(1486), + [sym___r_double_quote] = ACTIONS(1488), + [sym___r_single_quote] = ACTIONS(1490), }, [290] = { [sym_line_comment] = STATE(290), [sym_block_comment] = STATE(290), - [sym__expression] = STATE(2455), - [sym__expression_without_blocks] = STATE(2300), - [sym__expression_with_blocks] = STATE(2300), - [sym_inc_expression] = STATE(2307), - [sym_dec_expression] = STATE(2307), - [sym_or_block_expression] = STATE(2307), - [sym_option_propagation_expression] = STATE(2307), - [sym_result_propagation_expression] = STATE(2307), - [sym_anon_struct_value_expression] = STATE(2380), - [sym_go_expression] = STATE(2307), - [sym_spawn_expression] = STATE(2307), - [sym_parenthesized_expression] = STATE(2307), - [sym_call_expression] = STATE(2307), - [sym_type_initializer] = STATE(2380), - [sym_function_literal] = STATE(2307), - [sym_reference_expression] = STATE(2311), - [sym_type_reference_expression] = STATE(3541), - [sym_unary_expression] = STATE(2307), - [sym_receive_expression] = STATE(2307), - [sym_binary_expression] = STATE(2307), - [sym_as_type_cast_expression] = STATE(2307), - [sym__max_group] = STATE(2307), - [sym_literal] = STATE(2292), - [sym_map_init_expression] = STATE(2380), - [sym_array_creation] = STATE(2307), - [sym_fixed_array_creation] = STATE(2307), - [sym_selector_expression] = STATE(2307), - [sym_index_expression] = STATE(2307), - [sym_slice_expression] = STATE(2307), - [sym_if_expression] = STATE(2380), - [sym_compile_time_if_expression] = STATE(2380), - [sym_is_expression] = STATE(2307), - [sym_in_expression] = STATE(2307), - [sym_enum_fetch] = STATE(2307), - [sym_match_expression] = STATE(2380), - [sym_select_expression] = STATE(2380), - [sym_lock_expression] = STATE(2380), - [sym_unsafe_expression] = STATE(2380), - [sym_sql_expression] = STATE(2380), - [sym_c_string_literal] = STATE(2308), - [sym_raw_string_literal] = STATE(2308), - [sym_interpreted_string_literal] = STATE(2308), - [sym_mutability_modifiers] = STATE(824), - [sym_mutable_expression] = STATE(3922), - [sym_expression_list] = STATE(4056), - [sym_plain_type] = STATE(4297), - [sym__plain_type_without_special] = STATE(2302), - [sym_anon_struct_type] = STATE(2303), - [sym_multi_return_type] = STATE(2302), - [sym_result_type] = STATE(2302), - [sym_option_type] = STATE(2302), - [sym_qualified_type] = STATE(3541), - [sym_fixed_array_type] = STATE(2303), - [sym_array_type] = STATE(2303), - [sym_pointer_type] = STATE(2303), - [sym_wrong_pointer_type] = STATE(2303), - [sym_map_type] = STATE(2303), - [sym_channel_type] = STATE(2303), - [sym_shared_type] = STATE(2303), - [sym_thread_type] = STATE(2303), - [sym_atomic_type] = STATE(2303), - [sym_generic_type] = STATE(2303), - [sym_function_type] = STATE(2303), - [sym_block] = STATE(2851), - [sym_identifier] = ACTIONS(1807), + [sym__expression] = STATE(2632), + [sym__expression_without_blocks] = STATE(2347), + [sym__expression_with_blocks] = STATE(2347), + [sym_inc_expression] = STATE(2379), + [sym_dec_expression] = STATE(2379), + [sym_or_block_expression] = STATE(2379), + [sym_option_propagation_expression] = STATE(2379), + [sym_result_propagation_expression] = STATE(2379), + [sym_anon_struct_value_expression] = STATE(2378), + [sym_go_expression] = STATE(2379), + [sym_spawn_expression] = STATE(2379), + [sym_parenthesized_expression] = STATE(2379), + [sym_call_expression] = STATE(2379), + [sym_type_initializer] = STATE(2378), + [sym_function_literal] = STATE(2379), + [sym_reference_expression] = STATE(2377), + [sym_type_reference_expression] = STATE(3460), + [sym_unary_expression] = STATE(2379), + [sym_receive_expression] = STATE(2379), + [sym_binary_expression] = STATE(2379), + [sym_as_type_cast_expression] = STATE(2379), + [sym__max_group] = STATE(2379), + [sym_literal] = STATE(2392), + [sym_map_init_expression] = STATE(2378), + [sym_map_keyed_element] = STATE(2004), + [sym_array_creation] = STATE(2379), + [sym_fixed_array_creation] = STATE(2379), + [sym_selector_expression] = STATE(2379), + [sym_index_expression] = STATE(2379), + [sym_slice_expression] = STATE(2379), + [sym_if_expression] = STATE(2378), + [sym_compile_time_if_expression] = STATE(2378), + [sym_is_expression] = STATE(2379), + [sym_in_expression] = STATE(2379), + [sym_enum_fetch] = STATE(2379), + [sym_match_expression] = STATE(2378), + [sym_select_expression] = STATE(2378), + [sym_lock_expression] = STATE(2378), + [sym_unsafe_expression] = STATE(2378), + [sym_sql_expression] = STATE(2378), + [sym_c_string_literal] = STATE(2401), + [sym_raw_string_literal] = STATE(2401), + [sym_interpreted_string_literal] = STATE(2401), + [sym_mutability_modifiers] = STATE(939), + [sym_plain_type] = STATE(4160), + [sym__plain_type_without_special] = STATE(2360), + [sym_anon_struct_type] = STATE(2362), + [sym_multi_return_type] = STATE(2360), + [sym_result_type] = STATE(2360), + [sym_option_type] = STATE(2360), + [sym_qualified_type] = STATE(3460), + [sym_fixed_array_type] = STATE(2362), + [sym_array_type] = STATE(2362), + [sym_pointer_type] = STATE(2362), + [sym_wrong_pointer_type] = STATE(2362), + [sym_map_type] = STATE(2362), + [sym_channel_type] = STATE(2362), + [sym_shared_type] = STATE(2362), + [sym_thread_type] = STATE(2362), + [sym_atomic_type] = STATE(2362), + [sym_generic_type] = STATE(2362), + [sym_function_type] = STATE(2362), + [aux_sym_map_init_expression_repeat1] = STATE(303), + [sym_identifier] = ACTIONS(1428), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1428), - [anon_sym_LBRACE] = ACTIONS(1971), - [anon_sym_LPAREN] = ACTIONS(1432), - [anon_sym_fn] = ACTIONS(1434), - [anon_sym_PLUS] = ACTIONS(1811), - [anon_sym_DASH] = ACTIONS(1811), - [anon_sym_STAR] = ACTIONS(1813), - [anon_sym_struct] = ACTIONS(1440), + [anon_sym_DOT] = ACTIONS(1430), + [anon_sym_LBRACE] = ACTIONS(1432), + [anon_sym_RBRACE] = ACTIONS(1969), + [anon_sym_LPAREN] = ACTIONS(1434), + [anon_sym_fn] = ACTIONS(1436), + [anon_sym_PLUS] = ACTIONS(1438), + [anon_sym_DASH] = ACTIONS(1438), + [anon_sym_STAR] = ACTIONS(1440), + [anon_sym_struct] = ACTIONS(1442), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(1815), - [anon_sym_go] = ACTIONS(1817), - [anon_sym_spawn] = ACTIONS(1819), - [anon_sym_json_DOTdecode] = ACTIONS(1448), - [anon_sym_LBRACK2] = ACTIONS(1821), - [anon_sym_TILDE] = ACTIONS(1811), - [anon_sym_CARET] = ACTIONS(1811), - [anon_sym_AMP] = ACTIONS(1823), - [anon_sym_LT_DASH] = ACTIONS(1825), - [sym_none] = ACTIONS(1456), - [sym_true] = ACTIONS(1456), - [sym_false] = ACTIONS(1456), - [sym_nil] = ACTIONS(1456), - [anon_sym_if] = ACTIONS(1827), - [anon_sym_DOLLARif] = ACTIONS(1460), - [anon_sym_match] = ACTIONS(1462), - [anon_sym_select] = ACTIONS(1829), - [anon_sym_lock] = ACTIONS(1831), - [anon_sym_rlock] = ACTIONS(1831), - [anon_sym_unsafe] = ACTIONS(1833), - [anon_sym_sql] = ACTIONS(1470), - [sym_int_literal] = ACTIONS(1456), - [sym_float_literal] = ACTIONS(1472), - [sym_rune_literal] = ACTIONS(1472), - [sym_pseudo_compile_time_identifier] = ACTIONS(1474), + [anon_sym_BANG] = ACTIONS(1444), + [anon_sym_go] = ACTIONS(1446), + [anon_sym_spawn] = ACTIONS(1448), + [anon_sym_json_DOTdecode] = ACTIONS(1450), + [anon_sym_LBRACK2] = ACTIONS(1452), + [anon_sym_TILDE] = ACTIONS(1438), + [anon_sym_CARET] = ACTIONS(1438), + [anon_sym_AMP] = ACTIONS(1454), + [anon_sym_LT_DASH] = ACTIONS(1456), + [sym_none] = ACTIONS(1458), + [sym_true] = ACTIONS(1458), + [sym_false] = ACTIONS(1458), + [sym_nil] = ACTIONS(1458), + [anon_sym_if] = ACTIONS(1833), + [anon_sym_DOLLARif] = ACTIONS(1462), + [anon_sym_match] = ACTIONS(1464), + [anon_sym_select] = ACTIONS(1466), + [anon_sym_lock] = ACTIONS(1468), + [anon_sym_rlock] = ACTIONS(1468), + [anon_sym_unsafe] = ACTIONS(1839), + [anon_sym_sql] = ACTIONS(1472), + [sym_int_literal] = ACTIONS(1458), + [sym_float_literal] = ACTIONS(1474), + [sym_rune_literal] = ACTIONS(1474), + [sym_pseudo_compile_time_identifier] = ACTIONS(1476), [anon_sym_shared] = ACTIONS(83), [anon_sym_map_LBRACK] = ACTIONS(85), [anon_sym_chan] = ACTIONS(87), [anon_sym_thread] = ACTIONS(89), [anon_sym_atomic] = ACTIONS(91), - [sym___double_quote] = ACTIONS(1478), - [sym___single_quote] = ACTIONS(1480), - [sym___c_double_quote] = ACTIONS(1482), - [sym___c_single_quote] = ACTIONS(1484), - [sym___r_double_quote] = ACTIONS(1486), - [sym___r_single_quote] = ACTIONS(1488), + [sym___double_quote] = ACTIONS(1480), + [sym___single_quote] = ACTIONS(1482), + [sym___c_double_quote] = ACTIONS(1484), + [sym___c_single_quote] = ACTIONS(1486), + [sym___r_double_quote] = ACTIONS(1488), + [sym___r_single_quote] = ACTIONS(1490), }, [291] = { [sym_line_comment] = STATE(291), [sym_block_comment] = STATE(291), - [sym__expression] = STATE(2455), - [sym__expression_without_blocks] = STATE(2300), - [sym__expression_with_blocks] = STATE(2300), - [sym_inc_expression] = STATE(2307), - [sym_dec_expression] = STATE(2307), - [sym_or_block_expression] = STATE(2307), - [sym_option_propagation_expression] = STATE(2307), - [sym_result_propagation_expression] = STATE(2307), - [sym_anon_struct_value_expression] = STATE(2380), - [sym_go_expression] = STATE(2307), - [sym_spawn_expression] = STATE(2307), - [sym_parenthesized_expression] = STATE(2307), - [sym_call_expression] = STATE(2307), - [sym_type_initializer] = STATE(2380), - [sym_function_literal] = STATE(2307), - [sym_reference_expression] = STATE(2311), - [sym_type_reference_expression] = STATE(3541), - [sym_unary_expression] = STATE(2307), - [sym_receive_expression] = STATE(2307), - [sym_binary_expression] = STATE(2307), - [sym_as_type_cast_expression] = STATE(2307), - [sym__max_group] = STATE(2307), - [sym_literal] = STATE(2292), - [sym_map_init_expression] = STATE(2380), - [sym_array_creation] = STATE(2307), - [sym_fixed_array_creation] = STATE(2307), - [sym_selector_expression] = STATE(2307), - [sym_index_expression] = STATE(2307), - [sym_slice_expression] = STATE(2307), - [sym_if_expression] = STATE(2380), - [sym_compile_time_if_expression] = STATE(2380), - [sym_is_expression] = STATE(2307), - [sym_in_expression] = STATE(2307), - [sym_enum_fetch] = STATE(2307), - [sym_match_expression] = STATE(2380), - [sym_select_expression] = STATE(2380), - [sym_lock_expression] = STATE(2380), - [sym_unsafe_expression] = STATE(2380), - [sym_sql_expression] = STATE(2380), - [sym_c_string_literal] = STATE(2308), - [sym_raw_string_literal] = STATE(2308), - [sym_interpreted_string_literal] = STATE(2308), - [sym_mutability_modifiers] = STATE(824), - [sym_mutable_expression] = STATE(3922), - [sym_expression_list] = STATE(4147), - [sym_plain_type] = STATE(4297), - [sym__plain_type_without_special] = STATE(2302), - [sym_anon_struct_type] = STATE(2303), - [sym_multi_return_type] = STATE(2302), - [sym_result_type] = STATE(2302), - [sym_option_type] = STATE(2302), - [sym_qualified_type] = STATE(3541), - [sym_fixed_array_type] = STATE(2303), - [sym_array_type] = STATE(2303), - [sym_pointer_type] = STATE(2303), - [sym_wrong_pointer_type] = STATE(2303), - [sym_map_type] = STATE(2303), - [sym_channel_type] = STATE(2303), - [sym_shared_type] = STATE(2303), - [sym_thread_type] = STATE(2303), - [sym_atomic_type] = STATE(2303), - [sym_generic_type] = STATE(2303), - [sym_function_type] = STATE(2303), - [sym_block] = STATE(2633), - [sym_identifier] = ACTIONS(1807), + [sym__expression] = STATE(2558), + [sym__expression_without_blocks] = STATE(2347), + [sym__expression_with_blocks] = STATE(2347), + [sym_inc_expression] = STATE(2379), + [sym_dec_expression] = STATE(2379), + [sym_or_block_expression] = STATE(2379), + [sym_option_propagation_expression] = STATE(2379), + [sym_result_propagation_expression] = STATE(2379), + [sym_anon_struct_value_expression] = STATE(2378), + [sym_go_expression] = STATE(2379), + [sym_spawn_expression] = STATE(2379), + [sym_parenthesized_expression] = STATE(2379), + [sym_call_expression] = STATE(2379), + [sym_type_initializer] = STATE(2378), + [sym_function_literal] = STATE(2379), + [sym_reference_expression] = STATE(2377), + [sym_type_reference_expression] = STATE(3460), + [sym_unary_expression] = STATE(2379), + [sym_receive_expression] = STATE(2379), + [sym_binary_expression] = STATE(2379), + [sym_as_type_cast_expression] = STATE(2379), + [sym__max_group] = STATE(2379), + [sym_literal] = STATE(2392), + [sym_map_init_expression] = STATE(2378), + [sym_array_creation] = STATE(2379), + [sym_fixed_array_creation] = STATE(2379), + [sym_selector_expression] = STATE(2379), + [sym_index_expression] = STATE(2379), + [sym_slice_expression] = STATE(2379), + [sym_if_expression] = STATE(2378), + [sym_compile_time_if_expression] = STATE(2378), + [sym_is_expression] = STATE(2379), + [sym_in_expression] = STATE(2379), + [sym_enum_fetch] = STATE(2379), + [sym_match_expression] = STATE(2378), + [sym_select_expression] = STATE(2378), + [sym_lock_expression] = STATE(2378), + [sym_unsafe_expression] = STATE(2378), + [sym_sql_expression] = STATE(2378), + [sym_c_string_literal] = STATE(2401), + [sym_raw_string_literal] = STATE(2401), + [sym_interpreted_string_literal] = STATE(2401), + [sym_mutability_modifiers] = STATE(900), + [sym_mutable_expression] = STATE(3813), + [sym_expression_list] = STATE(4185), + [sym_plain_type] = STATE(4160), + [sym__plain_type_without_special] = STATE(2360), + [sym_anon_struct_type] = STATE(2362), + [sym_multi_return_type] = STATE(2360), + [sym_result_type] = STATE(2360), + [sym_option_type] = STATE(2360), + [sym_qualified_type] = STATE(3460), + [sym_fixed_array_type] = STATE(2362), + [sym_array_type] = STATE(2362), + [sym_pointer_type] = STATE(2362), + [sym_wrong_pointer_type] = STATE(2362), + [sym_map_type] = STATE(2362), + [sym_channel_type] = STATE(2362), + [sym_shared_type] = STATE(2362), + [sym_thread_type] = STATE(2362), + [sym_atomic_type] = STATE(2362), + [sym_generic_type] = STATE(2362), + [sym_function_type] = STATE(2362), + [sym_block] = STATE(1153), + [sym_identifier] = ACTIONS(1815), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1428), - [anon_sym_LBRACE] = ACTIONS(1973), - [anon_sym_LPAREN] = ACTIONS(1432), - [anon_sym_fn] = ACTIONS(1434), - [anon_sym_PLUS] = ACTIONS(1811), - [anon_sym_DASH] = ACTIONS(1811), - [anon_sym_STAR] = ACTIONS(1813), - [anon_sym_struct] = ACTIONS(1440), + [anon_sym_DOT] = ACTIONS(1430), + [anon_sym_LBRACE] = ACTIONS(1971), + [anon_sym_LPAREN] = ACTIONS(1434), + [anon_sym_fn] = ACTIONS(1436), + [anon_sym_PLUS] = ACTIONS(1817), + [anon_sym_DASH] = ACTIONS(1817), + [anon_sym_STAR] = ACTIONS(1819), + [anon_sym_struct] = ACTIONS(1442), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(1815), - [anon_sym_go] = ACTIONS(1817), - [anon_sym_spawn] = ACTIONS(1819), - [anon_sym_json_DOTdecode] = ACTIONS(1448), - [anon_sym_LBRACK2] = ACTIONS(1821), - [anon_sym_TILDE] = ACTIONS(1811), - [anon_sym_CARET] = ACTIONS(1811), - [anon_sym_AMP] = ACTIONS(1823), - [anon_sym_LT_DASH] = ACTIONS(1825), - [sym_none] = ACTIONS(1456), - [sym_true] = ACTIONS(1456), - [sym_false] = ACTIONS(1456), - [sym_nil] = ACTIONS(1456), - [anon_sym_if] = ACTIONS(1827), - [anon_sym_DOLLARif] = ACTIONS(1460), - [anon_sym_match] = ACTIONS(1462), - [anon_sym_select] = ACTIONS(1829), - [anon_sym_lock] = ACTIONS(1831), - [anon_sym_rlock] = ACTIONS(1831), - [anon_sym_unsafe] = ACTIONS(1833), - [anon_sym_sql] = ACTIONS(1470), - [sym_int_literal] = ACTIONS(1456), - [sym_float_literal] = ACTIONS(1472), - [sym_rune_literal] = ACTIONS(1472), - [sym_pseudo_compile_time_identifier] = ACTIONS(1474), + [anon_sym_BANG] = ACTIONS(1821), + [anon_sym_go] = ACTIONS(1823), + [anon_sym_spawn] = ACTIONS(1825), + [anon_sym_json_DOTdecode] = ACTIONS(1450), + [anon_sym_LBRACK2] = ACTIONS(1827), + [anon_sym_TILDE] = ACTIONS(1817), + [anon_sym_CARET] = ACTIONS(1817), + [anon_sym_AMP] = ACTIONS(1829), + [anon_sym_LT_DASH] = ACTIONS(1831), + [sym_none] = ACTIONS(1458), + [sym_true] = ACTIONS(1458), + [sym_false] = ACTIONS(1458), + [sym_nil] = ACTIONS(1458), + [anon_sym_if] = ACTIONS(1833), + [anon_sym_DOLLARif] = ACTIONS(1462), + [anon_sym_match] = ACTIONS(1464), + [anon_sym_select] = ACTIONS(1835), + [anon_sym_lock] = ACTIONS(1837), + [anon_sym_rlock] = ACTIONS(1837), + [anon_sym_unsafe] = ACTIONS(1839), + [anon_sym_sql] = ACTIONS(1472), + [sym_int_literal] = ACTIONS(1458), + [sym_float_literal] = ACTIONS(1474), + [sym_rune_literal] = ACTIONS(1474), + [sym_pseudo_compile_time_identifier] = ACTIONS(1476), [anon_sym_shared] = ACTIONS(83), [anon_sym_map_LBRACK] = ACTIONS(85), [anon_sym_chan] = ACTIONS(87), [anon_sym_thread] = ACTIONS(89), [anon_sym_atomic] = ACTIONS(91), - [sym___double_quote] = ACTIONS(1478), - [sym___single_quote] = ACTIONS(1480), - [sym___c_double_quote] = ACTIONS(1482), - [sym___c_single_quote] = ACTIONS(1484), - [sym___r_double_quote] = ACTIONS(1486), - [sym___r_single_quote] = ACTIONS(1488), + [sym___double_quote] = ACTIONS(1480), + [sym___single_quote] = ACTIONS(1482), + [sym___c_double_quote] = ACTIONS(1484), + [sym___c_single_quote] = ACTIONS(1486), + [sym___r_double_quote] = ACTIONS(1488), + [sym___r_single_quote] = ACTIONS(1490), }, [292] = { [sym_line_comment] = STATE(292), [sym_block_comment] = STATE(292), - [sym__expression] = STATE(2343), - [sym__expression_without_blocks] = STATE(2300), - [sym__expression_with_blocks] = STATE(2300), - [sym_inc_expression] = STATE(2307), - [sym_dec_expression] = STATE(2307), - [sym_or_block_expression] = STATE(2307), - [sym_option_propagation_expression] = STATE(2307), - [sym_result_propagation_expression] = STATE(2307), - [sym_anon_struct_value_expression] = STATE(2380), - [sym_go_expression] = STATE(2307), - [sym_spawn_expression] = STATE(2307), - [sym_parenthesized_expression] = STATE(2307), - [sym_call_expression] = STATE(2307), - [sym_type_initializer] = STATE(2380), - [sym_function_literal] = STATE(2307), - [sym_reference_expression] = STATE(2311), - [sym_type_reference_expression] = STATE(3541), - [sym_unary_expression] = STATE(2307), - [sym_receive_expression] = STATE(2307), - [sym_binary_expression] = STATE(2307), - [sym_as_type_cast_expression] = STATE(2307), - [sym__max_group] = STATE(2307), - [sym_literal] = STATE(2292), - [sym_map_init_expression] = STATE(2380), - [sym_array_creation] = STATE(2307), - [sym_fixed_array_creation] = STATE(2307), - [sym_selector_expression] = STATE(2307), - [sym_index_expression] = STATE(2307), - [sym_slice_expression] = STATE(2307), - [sym_if_expression] = STATE(2380), - [sym_compile_time_if_expression] = STATE(2380), - [sym_is_expression] = STATE(2307), - [sym_in_expression] = STATE(2307), - [sym_enum_fetch] = STATE(2307), - [sym_match_expression] = STATE(2380), - [sym_select_expression] = STATE(2380), - [sym_lock_expression] = STATE(2380), - [sym_unsafe_expression] = STATE(2380), - [sym_sql_expression] = STATE(2380), - [sym_c_string_literal] = STATE(2308), - [sym_raw_string_literal] = STATE(2308), - [sym_interpreted_string_literal] = STATE(2308), - [sym_mutability_modifiers] = STATE(765), - [sym_mutable_expression] = STATE(3823), - [sym_expression_list] = STATE(4480), - [sym_plain_type] = STATE(4297), - [sym__plain_type_without_special] = STATE(2302), - [sym_anon_struct_type] = STATE(2303), - [sym_multi_return_type] = STATE(2302), - [sym_result_type] = STATE(2302), - [sym_option_type] = STATE(2302), - [sym_qualified_type] = STATE(3541), - [sym_fixed_array_type] = STATE(2303), - [sym_array_type] = STATE(2303), - [sym_pointer_type] = STATE(2303), - [sym_wrong_pointer_type] = STATE(2303), - [sym_map_type] = STATE(2303), - [sym_channel_type] = STATE(2303), - [sym_shared_type] = STATE(2303), - [sym_thread_type] = STATE(2303), - [sym_atomic_type] = STATE(2303), - [sym_generic_type] = STATE(2303), - [sym_function_type] = STATE(2303), - [sym_var_declaration] = STATE(4148), - [sym_identifier] = ACTIONS(1807), + [sym__expression] = STATE(2632), + [sym__expression_without_blocks] = STATE(2347), + [sym__expression_with_blocks] = STATE(2347), + [sym_inc_expression] = STATE(2379), + [sym_dec_expression] = STATE(2379), + [sym_or_block_expression] = STATE(2379), + [sym_option_propagation_expression] = STATE(2379), + [sym_result_propagation_expression] = STATE(2379), + [sym_anon_struct_value_expression] = STATE(2378), + [sym_go_expression] = STATE(2379), + [sym_spawn_expression] = STATE(2379), + [sym_parenthesized_expression] = STATE(2379), + [sym_call_expression] = STATE(2379), + [sym_type_initializer] = STATE(2378), + [sym_function_literal] = STATE(2379), + [sym_reference_expression] = STATE(2377), + [sym_type_reference_expression] = STATE(3460), + [sym_unary_expression] = STATE(2379), + [sym_receive_expression] = STATE(2379), + [sym_binary_expression] = STATE(2379), + [sym_as_type_cast_expression] = STATE(2379), + [sym__max_group] = STATE(2379), + [sym_literal] = STATE(2392), + [sym_map_init_expression] = STATE(2378), + [sym_map_keyed_element] = STATE(2004), + [sym_array_creation] = STATE(2379), + [sym_fixed_array_creation] = STATE(2379), + [sym_selector_expression] = STATE(2379), + [sym_index_expression] = STATE(2379), + [sym_slice_expression] = STATE(2379), + [sym_if_expression] = STATE(2378), + [sym_compile_time_if_expression] = STATE(2378), + [sym_is_expression] = STATE(2379), + [sym_in_expression] = STATE(2379), + [sym_enum_fetch] = STATE(2379), + [sym_match_expression] = STATE(2378), + [sym_select_expression] = STATE(2378), + [sym_lock_expression] = STATE(2378), + [sym_unsafe_expression] = STATE(2378), + [sym_sql_expression] = STATE(2378), + [sym_c_string_literal] = STATE(2401), + [sym_raw_string_literal] = STATE(2401), + [sym_interpreted_string_literal] = STATE(2401), + [sym_mutability_modifiers] = STATE(939), + [sym_plain_type] = STATE(4160), + [sym__plain_type_without_special] = STATE(2360), + [sym_anon_struct_type] = STATE(2362), + [sym_multi_return_type] = STATE(2360), + [sym_result_type] = STATE(2360), + [sym_option_type] = STATE(2360), + [sym_qualified_type] = STATE(3460), + [sym_fixed_array_type] = STATE(2362), + [sym_array_type] = STATE(2362), + [sym_pointer_type] = STATE(2362), + [sym_wrong_pointer_type] = STATE(2362), + [sym_map_type] = STATE(2362), + [sym_channel_type] = STATE(2362), + [sym_shared_type] = STATE(2362), + [sym_thread_type] = STATE(2362), + [sym_atomic_type] = STATE(2362), + [sym_generic_type] = STATE(2362), + [sym_function_type] = STATE(2362), + [aux_sym_map_init_expression_repeat1] = STATE(303), + [sym_identifier] = ACTIONS(1428), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1428), - [anon_sym_LBRACE] = ACTIONS(1430), - [anon_sym_LPAREN] = ACTIONS(1432), - [anon_sym_fn] = ACTIONS(1434), - [anon_sym_PLUS] = ACTIONS(1811), - [anon_sym_DASH] = ACTIONS(1811), - [anon_sym_STAR] = ACTIONS(1813), - [anon_sym_struct] = ACTIONS(1440), + [anon_sym_DOT] = ACTIONS(1430), + [anon_sym_LBRACE] = ACTIONS(1432), + [anon_sym_RBRACE] = ACTIONS(1973), + [anon_sym_LPAREN] = ACTIONS(1434), + [anon_sym_fn] = ACTIONS(1436), + [anon_sym_PLUS] = ACTIONS(1438), + [anon_sym_DASH] = ACTIONS(1438), + [anon_sym_STAR] = ACTIONS(1440), + [anon_sym_struct] = ACTIONS(1442), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(1815), - [anon_sym_go] = ACTIONS(1817), - [anon_sym_spawn] = ACTIONS(1819), - [anon_sym_json_DOTdecode] = ACTIONS(1448), - [anon_sym_LBRACK2] = ACTIONS(1821), - [anon_sym_TILDE] = ACTIONS(1811), - [anon_sym_CARET] = ACTIONS(1811), - [anon_sym_AMP] = ACTIONS(1823), - [anon_sym_LT_DASH] = ACTIONS(1825), - [sym_none] = ACTIONS(1456), - [sym_true] = ACTIONS(1456), - [sym_false] = ACTIONS(1456), - [sym_nil] = ACTIONS(1456), - [anon_sym_if] = ACTIONS(1827), - [anon_sym_DOLLARif] = ACTIONS(1460), - [anon_sym_match] = ACTIONS(1462), - [anon_sym_select] = ACTIONS(1829), - [anon_sym_lock] = ACTIONS(1831), - [anon_sym_rlock] = ACTIONS(1831), - [anon_sym_unsafe] = ACTIONS(1833), - [anon_sym_sql] = ACTIONS(1470), - [sym_int_literal] = ACTIONS(1456), - [sym_float_literal] = ACTIONS(1472), - [sym_rune_literal] = ACTIONS(1472), - [sym_pseudo_compile_time_identifier] = ACTIONS(1474), + [anon_sym_BANG] = ACTIONS(1444), + [anon_sym_go] = ACTIONS(1446), + [anon_sym_spawn] = ACTIONS(1448), + [anon_sym_json_DOTdecode] = ACTIONS(1450), + [anon_sym_LBRACK2] = ACTIONS(1452), + [anon_sym_TILDE] = ACTIONS(1438), + [anon_sym_CARET] = ACTIONS(1438), + [anon_sym_AMP] = ACTIONS(1454), + [anon_sym_LT_DASH] = ACTIONS(1456), + [sym_none] = ACTIONS(1458), + [sym_true] = ACTIONS(1458), + [sym_false] = ACTIONS(1458), + [sym_nil] = ACTIONS(1458), + [anon_sym_if] = ACTIONS(1833), + [anon_sym_DOLLARif] = ACTIONS(1462), + [anon_sym_match] = ACTIONS(1464), + [anon_sym_select] = ACTIONS(1466), + [anon_sym_lock] = ACTIONS(1468), + [anon_sym_rlock] = ACTIONS(1468), + [anon_sym_unsafe] = ACTIONS(1839), + [anon_sym_sql] = ACTIONS(1472), + [sym_int_literal] = ACTIONS(1458), + [sym_float_literal] = ACTIONS(1474), + [sym_rune_literal] = ACTIONS(1474), + [sym_pseudo_compile_time_identifier] = ACTIONS(1476), [anon_sym_shared] = ACTIONS(83), [anon_sym_map_LBRACK] = ACTIONS(85), [anon_sym_chan] = ACTIONS(87), [anon_sym_thread] = ACTIONS(89), [anon_sym_atomic] = ACTIONS(91), - [sym___double_quote] = ACTIONS(1478), - [sym___single_quote] = ACTIONS(1480), - [sym___c_double_quote] = ACTIONS(1482), - [sym___c_single_quote] = ACTIONS(1484), - [sym___r_double_quote] = ACTIONS(1486), - [sym___r_single_quote] = ACTIONS(1488), + [sym___double_quote] = ACTIONS(1480), + [sym___single_quote] = ACTIONS(1482), + [sym___c_double_quote] = ACTIONS(1484), + [sym___c_single_quote] = ACTIONS(1486), + [sym___r_double_quote] = ACTIONS(1488), + [sym___r_single_quote] = ACTIONS(1490), }, [293] = { [sym_line_comment] = STATE(293), [sym_block_comment] = STATE(293), - [sym__expression] = STATE(2716), - [sym__expression_without_blocks] = STATE(2300), - [sym__expression_with_blocks] = STATE(2300), - [sym_inc_expression] = STATE(2307), - [sym_dec_expression] = STATE(2307), - [sym_or_block_expression] = STATE(2307), - [sym_option_propagation_expression] = STATE(2307), - [sym_result_propagation_expression] = STATE(2307), - [sym_anon_struct_value_expression] = STATE(2380), - [sym_go_expression] = STATE(2307), - [sym_spawn_expression] = STATE(2307), - [sym_parenthesized_expression] = STATE(2307), - [sym_call_expression] = STATE(2307), - [sym_type_initializer] = STATE(2380), - [sym_function_literal] = STATE(2307), - [sym_reference_expression] = STATE(2311), - [sym_type_reference_expression] = STATE(3541), - [sym_unary_expression] = STATE(2307), - [sym_receive_expression] = STATE(2307), - [sym_binary_expression] = STATE(2307), - [sym_as_type_cast_expression] = STATE(2307), - [sym__max_group] = STATE(2307), - [sym_literal] = STATE(2292), - [sym_map_init_expression] = STATE(2380), - [sym_map_keyed_element] = STATE(2001), - [sym_array_creation] = STATE(2307), - [sym_fixed_array_creation] = STATE(2307), - [sym_selector_expression] = STATE(2307), - [sym_index_expression] = STATE(2307), - [sym_slice_expression] = STATE(2307), - [sym_if_expression] = STATE(2380), - [sym_compile_time_if_expression] = STATE(2380), - [sym_is_expression] = STATE(2307), - [sym_in_expression] = STATE(2307), - [sym_enum_fetch] = STATE(2307), - [sym_match_expression] = STATE(2380), - [sym_select_expression] = STATE(2380), - [sym_lock_expression] = STATE(2380), - [sym_unsafe_expression] = STATE(2380), - [sym_sql_expression] = STATE(2380), - [sym_c_string_literal] = STATE(2308), - [sym_raw_string_literal] = STATE(2308), - [sym_interpreted_string_literal] = STATE(2308), - [sym_mutability_modifiers] = STATE(939), - [sym_plain_type] = STATE(4297), - [sym__plain_type_without_special] = STATE(2302), - [sym_anon_struct_type] = STATE(2303), - [sym_multi_return_type] = STATE(2302), - [sym_result_type] = STATE(2302), - [sym_option_type] = STATE(2302), - [sym_qualified_type] = STATE(3541), - [sym_fixed_array_type] = STATE(2303), - [sym_array_type] = STATE(2303), - [sym_pointer_type] = STATE(2303), - [sym_wrong_pointer_type] = STATE(2303), - [sym_map_type] = STATE(2303), - [sym_channel_type] = STATE(2303), - [sym_shared_type] = STATE(2303), - [sym_thread_type] = STATE(2303), - [sym_atomic_type] = STATE(2303), - [sym_generic_type] = STATE(2303), - [sym_function_type] = STATE(2303), - [aux_sym_map_init_expression_repeat1] = STATE(295), - [sym_identifier] = ACTIONS(1426), + [sym__expression] = STATE(2558), + [sym__expression_without_blocks] = STATE(2347), + [sym__expression_with_blocks] = STATE(2347), + [sym_inc_expression] = STATE(2379), + [sym_dec_expression] = STATE(2379), + [sym_or_block_expression] = STATE(2379), + [sym_option_propagation_expression] = STATE(2379), + [sym_result_propagation_expression] = STATE(2379), + [sym_anon_struct_value_expression] = STATE(2378), + [sym_go_expression] = STATE(2379), + [sym_spawn_expression] = STATE(2379), + [sym_parenthesized_expression] = STATE(2379), + [sym_call_expression] = STATE(2379), + [sym_type_initializer] = STATE(2378), + [sym_function_literal] = STATE(2379), + [sym_reference_expression] = STATE(2377), + [sym_type_reference_expression] = STATE(3460), + [sym_unary_expression] = STATE(2379), + [sym_receive_expression] = STATE(2379), + [sym_binary_expression] = STATE(2379), + [sym_as_type_cast_expression] = STATE(2379), + [sym__max_group] = STATE(2379), + [sym_literal] = STATE(2392), + [sym_map_init_expression] = STATE(2378), + [sym_array_creation] = STATE(2379), + [sym_fixed_array_creation] = STATE(2379), + [sym_selector_expression] = STATE(2379), + [sym_index_expression] = STATE(2379), + [sym_slice_expression] = STATE(2379), + [sym_if_expression] = STATE(2378), + [sym_compile_time_if_expression] = STATE(2378), + [sym_is_expression] = STATE(2379), + [sym_in_expression] = STATE(2379), + [sym_enum_fetch] = STATE(2379), + [sym_match_expression] = STATE(2378), + [sym_select_expression] = STATE(2378), + [sym_lock_expression] = STATE(2378), + [sym_unsafe_expression] = STATE(2378), + [sym_sql_expression] = STATE(2378), + [sym_c_string_literal] = STATE(2401), + [sym_raw_string_literal] = STATE(2401), + [sym_interpreted_string_literal] = STATE(2401), + [sym_mutability_modifiers] = STATE(900), + [sym_mutable_expression] = STATE(3813), + [sym_expression_list] = STATE(4024), + [sym_plain_type] = STATE(4160), + [sym__plain_type_without_special] = STATE(2360), + [sym_anon_struct_type] = STATE(2362), + [sym_multi_return_type] = STATE(2360), + [sym_result_type] = STATE(2360), + [sym_option_type] = STATE(2360), + [sym_qualified_type] = STATE(3460), + [sym_fixed_array_type] = STATE(2362), + [sym_array_type] = STATE(2362), + [sym_pointer_type] = STATE(2362), + [sym_wrong_pointer_type] = STATE(2362), + [sym_map_type] = STATE(2362), + [sym_channel_type] = STATE(2362), + [sym_shared_type] = STATE(2362), + [sym_thread_type] = STATE(2362), + [sym_atomic_type] = STATE(2362), + [sym_generic_type] = STATE(2362), + [sym_function_type] = STATE(2362), + [sym_block] = STATE(1982), + [sym_identifier] = ACTIONS(1815), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1428), - [anon_sym_LBRACE] = ACTIONS(1430), - [anon_sym_RBRACE] = ACTIONS(1975), - [anon_sym_LPAREN] = ACTIONS(1432), - [anon_sym_fn] = ACTIONS(1434), - [anon_sym_PLUS] = ACTIONS(1436), - [anon_sym_DASH] = ACTIONS(1436), - [anon_sym_STAR] = ACTIONS(1438), - [anon_sym_struct] = ACTIONS(1440), + [anon_sym_DOT] = ACTIONS(1430), + [anon_sym_LBRACE] = ACTIONS(1975), + [anon_sym_LPAREN] = ACTIONS(1434), + [anon_sym_fn] = ACTIONS(1436), + [anon_sym_PLUS] = ACTIONS(1817), + [anon_sym_DASH] = ACTIONS(1817), + [anon_sym_STAR] = ACTIONS(1819), + [anon_sym_struct] = ACTIONS(1442), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(1442), - [anon_sym_go] = ACTIONS(1444), - [anon_sym_spawn] = ACTIONS(1446), - [anon_sym_json_DOTdecode] = ACTIONS(1448), - [anon_sym_LBRACK2] = ACTIONS(1450), - [anon_sym_TILDE] = ACTIONS(1436), - [anon_sym_CARET] = ACTIONS(1436), - [anon_sym_AMP] = ACTIONS(1452), - [anon_sym_LT_DASH] = ACTIONS(1454), - [sym_none] = ACTIONS(1456), - [sym_true] = ACTIONS(1456), - [sym_false] = ACTIONS(1456), - [sym_nil] = ACTIONS(1456), - [anon_sym_if] = ACTIONS(1827), - [anon_sym_DOLLARif] = ACTIONS(1460), - [anon_sym_match] = ACTIONS(1462), - [anon_sym_select] = ACTIONS(1464), - [anon_sym_lock] = ACTIONS(1466), - [anon_sym_rlock] = ACTIONS(1466), - [anon_sym_unsafe] = ACTIONS(1833), - [anon_sym_sql] = ACTIONS(1470), - [sym_int_literal] = ACTIONS(1456), - [sym_float_literal] = ACTIONS(1472), - [sym_rune_literal] = ACTIONS(1472), - [sym_pseudo_compile_time_identifier] = ACTIONS(1474), + [anon_sym_BANG] = ACTIONS(1821), + [anon_sym_go] = ACTIONS(1823), + [anon_sym_spawn] = ACTIONS(1825), + [anon_sym_json_DOTdecode] = ACTIONS(1450), + [anon_sym_LBRACK2] = ACTIONS(1827), + [anon_sym_TILDE] = ACTIONS(1817), + [anon_sym_CARET] = ACTIONS(1817), + [anon_sym_AMP] = ACTIONS(1829), + [anon_sym_LT_DASH] = ACTIONS(1831), + [sym_none] = ACTIONS(1458), + [sym_true] = ACTIONS(1458), + [sym_false] = ACTIONS(1458), + [sym_nil] = ACTIONS(1458), + [anon_sym_if] = ACTIONS(1833), + [anon_sym_DOLLARif] = ACTIONS(1462), + [anon_sym_match] = ACTIONS(1464), + [anon_sym_select] = ACTIONS(1835), + [anon_sym_lock] = ACTIONS(1837), + [anon_sym_rlock] = ACTIONS(1837), + [anon_sym_unsafe] = ACTIONS(1839), + [anon_sym_sql] = ACTIONS(1472), + [sym_int_literal] = ACTIONS(1458), + [sym_float_literal] = ACTIONS(1474), + [sym_rune_literal] = ACTIONS(1474), + [sym_pseudo_compile_time_identifier] = ACTIONS(1476), [anon_sym_shared] = ACTIONS(83), [anon_sym_map_LBRACK] = ACTIONS(85), [anon_sym_chan] = ACTIONS(87), [anon_sym_thread] = ACTIONS(89), [anon_sym_atomic] = ACTIONS(91), - [sym___double_quote] = ACTIONS(1478), - [sym___single_quote] = ACTIONS(1480), - [sym___c_double_quote] = ACTIONS(1482), - [sym___c_single_quote] = ACTIONS(1484), - [sym___r_double_quote] = ACTIONS(1486), - [sym___r_single_quote] = ACTIONS(1488), + [sym___double_quote] = ACTIONS(1480), + [sym___single_quote] = ACTIONS(1482), + [sym___c_double_quote] = ACTIONS(1484), + [sym___c_single_quote] = ACTIONS(1486), + [sym___r_double_quote] = ACTIONS(1488), + [sym___r_single_quote] = ACTIONS(1490), }, [294] = { [sym_line_comment] = STATE(294), [sym_block_comment] = STATE(294), - [sym__expression] = STATE(2716), - [sym__expression_without_blocks] = STATE(2300), - [sym__expression_with_blocks] = STATE(2300), - [sym_inc_expression] = STATE(2307), - [sym_dec_expression] = STATE(2307), - [sym_or_block_expression] = STATE(2307), - [sym_option_propagation_expression] = STATE(2307), - [sym_result_propagation_expression] = STATE(2307), - [sym_anon_struct_value_expression] = STATE(2380), - [sym_go_expression] = STATE(2307), - [sym_spawn_expression] = STATE(2307), - [sym_parenthesized_expression] = STATE(2307), - [sym_call_expression] = STATE(2307), - [sym_type_initializer] = STATE(2380), - [sym_function_literal] = STATE(2307), - [sym_reference_expression] = STATE(2311), - [sym_type_reference_expression] = STATE(3541), - [sym_unary_expression] = STATE(2307), - [sym_receive_expression] = STATE(2307), - [sym_binary_expression] = STATE(2307), - [sym_as_type_cast_expression] = STATE(2307), - [sym__max_group] = STATE(2307), - [sym_literal] = STATE(2292), - [sym_map_init_expression] = STATE(2380), - [sym_map_keyed_element] = STATE(2001), - [sym_array_creation] = STATE(2307), - [sym_fixed_array_creation] = STATE(2307), - [sym_selector_expression] = STATE(2307), - [sym_index_expression] = STATE(2307), - [sym_slice_expression] = STATE(2307), - [sym_if_expression] = STATE(2380), - [sym_compile_time_if_expression] = STATE(2380), - [sym_is_expression] = STATE(2307), - [sym_in_expression] = STATE(2307), - [sym_enum_fetch] = STATE(2307), - [sym_match_expression] = STATE(2380), - [sym_select_expression] = STATE(2380), - [sym_lock_expression] = STATE(2380), - [sym_unsafe_expression] = STATE(2380), - [sym_sql_expression] = STATE(2380), - [sym_c_string_literal] = STATE(2308), - [sym_raw_string_literal] = STATE(2308), - [sym_interpreted_string_literal] = STATE(2308), - [sym_mutability_modifiers] = STATE(939), - [sym_plain_type] = STATE(4297), - [sym__plain_type_without_special] = STATE(2302), - [sym_anon_struct_type] = STATE(2303), - [sym_multi_return_type] = STATE(2302), - [sym_result_type] = STATE(2302), - [sym_option_type] = STATE(2302), - [sym_qualified_type] = STATE(3541), - [sym_fixed_array_type] = STATE(2303), - [sym_array_type] = STATE(2303), - [sym_pointer_type] = STATE(2303), - [sym_wrong_pointer_type] = STATE(2303), - [sym_map_type] = STATE(2303), - [sym_channel_type] = STATE(2303), - [sym_shared_type] = STATE(2303), - [sym_thread_type] = STATE(2303), - [sym_atomic_type] = STATE(2303), - [sym_generic_type] = STATE(2303), - [sym_function_type] = STATE(2303), - [aux_sym_map_init_expression_repeat1] = STATE(295), - [sym_identifier] = ACTIONS(1426), + [sym__expression] = STATE(2558), + [sym__expression_without_blocks] = STATE(2347), + [sym__expression_with_blocks] = STATE(2347), + [sym_inc_expression] = STATE(2379), + [sym_dec_expression] = STATE(2379), + [sym_or_block_expression] = STATE(2379), + [sym_option_propagation_expression] = STATE(2379), + [sym_result_propagation_expression] = STATE(2379), + [sym_anon_struct_value_expression] = STATE(2378), + [sym_go_expression] = STATE(2379), + [sym_spawn_expression] = STATE(2379), + [sym_parenthesized_expression] = STATE(2379), + [sym_call_expression] = STATE(2379), + [sym_type_initializer] = STATE(2378), + [sym_function_literal] = STATE(2379), + [sym_reference_expression] = STATE(2377), + [sym_type_reference_expression] = STATE(3460), + [sym_unary_expression] = STATE(2379), + [sym_receive_expression] = STATE(2379), + [sym_binary_expression] = STATE(2379), + [sym_as_type_cast_expression] = STATE(2379), + [sym__max_group] = STATE(2379), + [sym_literal] = STATE(2392), + [sym_map_init_expression] = STATE(2378), + [sym_array_creation] = STATE(2379), + [sym_fixed_array_creation] = STATE(2379), + [sym_selector_expression] = STATE(2379), + [sym_index_expression] = STATE(2379), + [sym_slice_expression] = STATE(2379), + [sym_if_expression] = STATE(2378), + [sym_compile_time_if_expression] = STATE(2378), + [sym_is_expression] = STATE(2379), + [sym_in_expression] = STATE(2379), + [sym_enum_fetch] = STATE(2379), + [sym_match_expression] = STATE(2378), + [sym_select_expression] = STATE(2378), + [sym_lock_expression] = STATE(2378), + [sym_unsafe_expression] = STATE(2378), + [sym_sql_expression] = STATE(2378), + [sym_c_string_literal] = STATE(2401), + [sym_raw_string_literal] = STATE(2401), + [sym_interpreted_string_literal] = STATE(2401), + [sym_mutability_modifiers] = STATE(900), + [sym_mutable_expression] = STATE(3813), + [sym_expression_list] = STATE(4062), + [sym_plain_type] = STATE(4160), + [sym__plain_type_without_special] = STATE(2360), + [sym_anon_struct_type] = STATE(2362), + [sym_multi_return_type] = STATE(2360), + [sym_result_type] = STATE(2360), + [sym_option_type] = STATE(2360), + [sym_qualified_type] = STATE(3460), + [sym_fixed_array_type] = STATE(2362), + [sym_array_type] = STATE(2362), + [sym_pointer_type] = STATE(2362), + [sym_wrong_pointer_type] = STATE(2362), + [sym_map_type] = STATE(2362), + [sym_channel_type] = STATE(2362), + [sym_shared_type] = STATE(2362), + [sym_thread_type] = STATE(2362), + [sym_atomic_type] = STATE(2362), + [sym_generic_type] = STATE(2362), + [sym_function_type] = STATE(2362), + [sym_block] = STATE(2528), + [sym_identifier] = ACTIONS(1815), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1428), - [anon_sym_LBRACE] = ACTIONS(1430), - [anon_sym_RBRACE] = ACTIONS(1977), - [anon_sym_LPAREN] = ACTIONS(1432), - [anon_sym_fn] = ACTIONS(1434), - [anon_sym_PLUS] = ACTIONS(1436), - [anon_sym_DASH] = ACTIONS(1436), - [anon_sym_STAR] = ACTIONS(1438), - [anon_sym_struct] = ACTIONS(1440), + [anon_sym_DOT] = ACTIONS(1430), + [anon_sym_LBRACE] = ACTIONS(1977), + [anon_sym_LPAREN] = ACTIONS(1434), + [anon_sym_fn] = ACTIONS(1436), + [anon_sym_PLUS] = ACTIONS(1817), + [anon_sym_DASH] = ACTIONS(1817), + [anon_sym_STAR] = ACTIONS(1819), + [anon_sym_struct] = ACTIONS(1442), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(1442), - [anon_sym_go] = ACTIONS(1444), - [anon_sym_spawn] = ACTIONS(1446), - [anon_sym_json_DOTdecode] = ACTIONS(1448), - [anon_sym_LBRACK2] = ACTIONS(1450), - [anon_sym_TILDE] = ACTIONS(1436), - [anon_sym_CARET] = ACTIONS(1436), - [anon_sym_AMP] = ACTIONS(1452), - [anon_sym_LT_DASH] = ACTIONS(1454), - [sym_none] = ACTIONS(1456), - [sym_true] = ACTIONS(1456), - [sym_false] = ACTIONS(1456), - [sym_nil] = ACTIONS(1456), - [anon_sym_if] = ACTIONS(1827), - [anon_sym_DOLLARif] = ACTIONS(1460), - [anon_sym_match] = ACTIONS(1462), - [anon_sym_select] = ACTIONS(1464), - [anon_sym_lock] = ACTIONS(1466), - [anon_sym_rlock] = ACTIONS(1466), - [anon_sym_unsafe] = ACTIONS(1833), - [anon_sym_sql] = ACTIONS(1470), - [sym_int_literal] = ACTIONS(1456), - [sym_float_literal] = ACTIONS(1472), - [sym_rune_literal] = ACTIONS(1472), - [sym_pseudo_compile_time_identifier] = ACTIONS(1474), + [anon_sym_BANG] = ACTIONS(1821), + [anon_sym_go] = ACTIONS(1823), + [anon_sym_spawn] = ACTIONS(1825), + [anon_sym_json_DOTdecode] = ACTIONS(1450), + [anon_sym_LBRACK2] = ACTIONS(1827), + [anon_sym_TILDE] = ACTIONS(1817), + [anon_sym_CARET] = ACTIONS(1817), + [anon_sym_AMP] = ACTIONS(1829), + [anon_sym_LT_DASH] = ACTIONS(1831), + [sym_none] = ACTIONS(1458), + [sym_true] = ACTIONS(1458), + [sym_false] = ACTIONS(1458), + [sym_nil] = ACTIONS(1458), + [anon_sym_if] = ACTIONS(1833), + [anon_sym_DOLLARif] = ACTIONS(1462), + [anon_sym_match] = ACTIONS(1464), + [anon_sym_select] = ACTIONS(1835), + [anon_sym_lock] = ACTIONS(1837), + [anon_sym_rlock] = ACTIONS(1837), + [anon_sym_unsafe] = ACTIONS(1839), + [anon_sym_sql] = ACTIONS(1472), + [sym_int_literal] = ACTIONS(1458), + [sym_float_literal] = ACTIONS(1474), + [sym_rune_literal] = ACTIONS(1474), + [sym_pseudo_compile_time_identifier] = ACTIONS(1476), [anon_sym_shared] = ACTIONS(83), [anon_sym_map_LBRACK] = ACTIONS(85), [anon_sym_chan] = ACTIONS(87), [anon_sym_thread] = ACTIONS(89), [anon_sym_atomic] = ACTIONS(91), - [sym___double_quote] = ACTIONS(1478), - [sym___single_quote] = ACTIONS(1480), - [sym___c_double_quote] = ACTIONS(1482), - [sym___c_single_quote] = ACTIONS(1484), - [sym___r_double_quote] = ACTIONS(1486), - [sym___r_single_quote] = ACTIONS(1488), + [sym___double_quote] = ACTIONS(1480), + [sym___single_quote] = ACTIONS(1482), + [sym___c_double_quote] = ACTIONS(1484), + [sym___c_single_quote] = ACTIONS(1486), + [sym___r_double_quote] = ACTIONS(1488), + [sym___r_single_quote] = ACTIONS(1490), }, [295] = { [sym_line_comment] = STATE(295), [sym_block_comment] = STATE(295), - [sym__expression] = STATE(2716), - [sym__expression_without_blocks] = STATE(2300), - [sym__expression_with_blocks] = STATE(2300), - [sym_inc_expression] = STATE(2307), - [sym_dec_expression] = STATE(2307), - [sym_or_block_expression] = STATE(2307), - [sym_option_propagation_expression] = STATE(2307), - [sym_result_propagation_expression] = STATE(2307), - [sym_anon_struct_value_expression] = STATE(2380), - [sym_go_expression] = STATE(2307), - [sym_spawn_expression] = STATE(2307), - [sym_parenthesized_expression] = STATE(2307), - [sym_call_expression] = STATE(2307), - [sym_type_initializer] = STATE(2380), - [sym_function_literal] = STATE(2307), - [sym_reference_expression] = STATE(2311), - [sym_type_reference_expression] = STATE(3541), - [sym_unary_expression] = STATE(2307), - [sym_receive_expression] = STATE(2307), - [sym_binary_expression] = STATE(2307), - [sym_as_type_cast_expression] = STATE(2307), - [sym__max_group] = STATE(2307), - [sym_literal] = STATE(2292), - [sym_map_init_expression] = STATE(2380), - [sym_map_keyed_element] = STATE(2001), - [sym_array_creation] = STATE(2307), - [sym_fixed_array_creation] = STATE(2307), - [sym_selector_expression] = STATE(2307), - [sym_index_expression] = STATE(2307), - [sym_slice_expression] = STATE(2307), - [sym_if_expression] = STATE(2380), - [sym_compile_time_if_expression] = STATE(2380), - [sym_is_expression] = STATE(2307), - [sym_in_expression] = STATE(2307), - [sym_enum_fetch] = STATE(2307), - [sym_match_expression] = STATE(2380), - [sym_select_expression] = STATE(2380), - [sym_lock_expression] = STATE(2380), - [sym_unsafe_expression] = STATE(2380), - [sym_sql_expression] = STATE(2380), - [sym_c_string_literal] = STATE(2308), - [sym_raw_string_literal] = STATE(2308), - [sym_interpreted_string_literal] = STATE(2308), - [sym_mutability_modifiers] = STATE(939), - [sym_plain_type] = STATE(4297), - [sym__plain_type_without_special] = STATE(2302), - [sym_anon_struct_type] = STATE(2303), - [sym_multi_return_type] = STATE(2302), - [sym_result_type] = STATE(2302), - [sym_option_type] = STATE(2302), - [sym_qualified_type] = STATE(3541), - [sym_fixed_array_type] = STATE(2303), - [sym_array_type] = STATE(2303), - [sym_pointer_type] = STATE(2303), - [sym_wrong_pointer_type] = STATE(2303), - [sym_map_type] = STATE(2303), - [sym_channel_type] = STATE(2303), - [sym_shared_type] = STATE(2303), - [sym_thread_type] = STATE(2303), - [sym_atomic_type] = STATE(2303), - [sym_generic_type] = STATE(2303), - [sym_function_type] = STATE(2303), - [aux_sym_map_init_expression_repeat1] = STATE(295), - [sym_identifier] = ACTIONS(1979), + [sym__expression] = STATE(2307), + [sym__expression_without_blocks] = STATE(2347), + [sym__expression_with_blocks] = STATE(2347), + [sym_inc_expression] = STATE(2379), + [sym_dec_expression] = STATE(2379), + [sym_or_block_expression] = STATE(2379), + [sym_option_propagation_expression] = STATE(2379), + [sym_result_propagation_expression] = STATE(2379), + [sym_anon_struct_value_expression] = STATE(2378), + [sym_go_expression] = STATE(2379), + [sym_spawn_expression] = STATE(2379), + [sym_parenthesized_expression] = STATE(2379), + [sym_call_expression] = STATE(2379), + [sym_type_initializer] = STATE(2378), + [sym_function_literal] = STATE(2379), + [sym_reference_expression] = STATE(2377), + [sym_type_reference_expression] = STATE(3460), + [sym_unary_expression] = STATE(2379), + [sym_receive_expression] = STATE(2379), + [sym_binary_expression] = STATE(2379), + [sym_as_type_cast_expression] = STATE(2379), + [sym__max_group] = STATE(2379), + [sym_literal] = STATE(2392), + [sym_map_init_expression] = STATE(2378), + [sym_array_creation] = STATE(2379), + [sym_fixed_array_creation] = STATE(2379), + [sym_selector_expression] = STATE(2379), + [sym_index_expression] = STATE(2379), + [sym_slice_expression] = STATE(2379), + [sym_if_expression] = STATE(2378), + [sym_compile_time_if_expression] = STATE(2378), + [sym_is_expression] = STATE(2379), + [sym_in_expression] = STATE(2379), + [sym_enum_fetch] = STATE(2379), + [sym_match_expression] = STATE(2378), + [sym_select_expression] = STATE(2378), + [sym_lock_expression] = STATE(2378), + [sym_unsafe_expression] = STATE(2378), + [sym_sql_expression] = STATE(2378), + [sym_c_string_literal] = STATE(2401), + [sym_raw_string_literal] = STATE(2401), + [sym_interpreted_string_literal] = STATE(2401), + [sym_mutability_modifiers] = STATE(893), + [sym_mutable_expression] = STATE(3871), + [sym_expression_list] = STATE(4483), + [sym_plain_type] = STATE(4160), + [sym__plain_type_without_special] = STATE(2360), + [sym_anon_struct_type] = STATE(2362), + [sym_multi_return_type] = STATE(2360), + [sym_result_type] = STATE(2360), + [sym_option_type] = STATE(2360), + [sym_qualified_type] = STATE(3460), + [sym_fixed_array_type] = STATE(2362), + [sym_array_type] = STATE(2362), + [sym_pointer_type] = STATE(2362), + [sym_wrong_pointer_type] = STATE(2362), + [sym_map_type] = STATE(2362), + [sym_channel_type] = STATE(2362), + [sym_shared_type] = STATE(2362), + [sym_thread_type] = STATE(2362), + [sym_atomic_type] = STATE(2362), + [sym_generic_type] = STATE(2362), + [sym_function_type] = STATE(2362), + [sym_var_declaration] = STATE(4015), + [sym_identifier] = ACTIONS(1815), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1982), - [anon_sym_LBRACE] = ACTIONS(1985), - [anon_sym_RBRACE] = ACTIONS(1988), - [anon_sym_LPAREN] = ACTIONS(1990), - [anon_sym_fn] = ACTIONS(1993), - [anon_sym_PLUS] = ACTIONS(1996), - [anon_sym_DASH] = ACTIONS(1996), - [anon_sym_STAR] = ACTIONS(1999), - [anon_sym_struct] = ACTIONS(2002), - [anon_sym_mut] = ACTIONS(2005), - [anon_sym_QMARK] = ACTIONS(2008), - [anon_sym_BANG] = ACTIONS(2011), - [anon_sym_go] = ACTIONS(2014), - [anon_sym_spawn] = ACTIONS(2017), - [anon_sym_json_DOTdecode] = ACTIONS(2020), - [anon_sym_LBRACK2] = ACTIONS(2023), - [anon_sym_TILDE] = ACTIONS(1996), - [anon_sym_CARET] = ACTIONS(1996), - [anon_sym_AMP] = ACTIONS(2026), - [anon_sym_LT_DASH] = ACTIONS(2029), - [sym_none] = ACTIONS(2032), - [sym_true] = ACTIONS(2032), - [sym_false] = ACTIONS(2032), - [sym_nil] = ACTIONS(2032), - [anon_sym_if] = ACTIONS(2035), - [anon_sym_DOLLARif] = ACTIONS(2038), - [anon_sym_match] = ACTIONS(2041), - [anon_sym_select] = ACTIONS(2044), - [anon_sym_lock] = ACTIONS(2047), - [anon_sym_rlock] = ACTIONS(2047), - [anon_sym_unsafe] = ACTIONS(2050), - [anon_sym_sql] = ACTIONS(2053), - [sym_int_literal] = ACTIONS(2032), - [sym_float_literal] = ACTIONS(2056), - [sym_rune_literal] = ACTIONS(2056), - [sym_pseudo_compile_time_identifier] = ACTIONS(2059), - [anon_sym_shared] = ACTIONS(2062), - [anon_sym_map_LBRACK] = ACTIONS(2065), - [anon_sym_chan] = ACTIONS(2068), - [anon_sym_thread] = ACTIONS(2071), - [anon_sym_atomic] = ACTIONS(2074), - [sym___double_quote] = ACTIONS(2077), - [sym___single_quote] = ACTIONS(2080), - [sym___c_double_quote] = ACTIONS(2083), - [sym___c_single_quote] = ACTIONS(2086), - [sym___r_double_quote] = ACTIONS(2089), - [sym___r_single_quote] = ACTIONS(2092), + [anon_sym_DOT] = ACTIONS(1430), + [anon_sym_LBRACE] = ACTIONS(1432), + [anon_sym_LPAREN] = ACTIONS(1434), + [anon_sym_fn] = ACTIONS(1436), + [anon_sym_PLUS] = ACTIONS(1817), + [anon_sym_DASH] = ACTIONS(1817), + [anon_sym_STAR] = ACTIONS(1819), + [anon_sym_struct] = ACTIONS(1442), + [anon_sym_mut] = ACTIONS(41), + [anon_sym_QMARK] = ACTIONS(47), + [anon_sym_BANG] = ACTIONS(1821), + [anon_sym_go] = ACTIONS(1823), + [anon_sym_spawn] = ACTIONS(1825), + [anon_sym_json_DOTdecode] = ACTIONS(1450), + [anon_sym_LBRACK2] = ACTIONS(1827), + [anon_sym_TILDE] = ACTIONS(1817), + [anon_sym_CARET] = ACTIONS(1817), + [anon_sym_AMP] = ACTIONS(1829), + [anon_sym_LT_DASH] = ACTIONS(1831), + [sym_none] = ACTIONS(1458), + [sym_true] = ACTIONS(1458), + [sym_false] = ACTIONS(1458), + [sym_nil] = ACTIONS(1458), + [anon_sym_if] = ACTIONS(1833), + [anon_sym_DOLLARif] = ACTIONS(1462), + [anon_sym_match] = ACTIONS(1464), + [anon_sym_select] = ACTIONS(1835), + [anon_sym_lock] = ACTIONS(1837), + [anon_sym_rlock] = ACTIONS(1837), + [anon_sym_unsafe] = ACTIONS(1839), + [anon_sym_sql] = ACTIONS(1472), + [sym_int_literal] = ACTIONS(1458), + [sym_float_literal] = ACTIONS(1474), + [sym_rune_literal] = ACTIONS(1474), + [sym_pseudo_compile_time_identifier] = ACTIONS(1476), + [anon_sym_shared] = ACTIONS(83), + [anon_sym_map_LBRACK] = ACTIONS(85), + [anon_sym_chan] = ACTIONS(87), + [anon_sym_thread] = ACTIONS(89), + [anon_sym_atomic] = ACTIONS(91), + [sym___double_quote] = ACTIONS(1480), + [sym___single_quote] = ACTIONS(1482), + [sym___c_double_quote] = ACTIONS(1484), + [sym___c_single_quote] = ACTIONS(1486), + [sym___r_double_quote] = ACTIONS(1488), + [sym___r_single_quote] = ACTIONS(1490), }, [296] = { [sym_line_comment] = STATE(296), [sym_block_comment] = STATE(296), - [sym__expression] = STATE(2716), - [sym__expression_without_blocks] = STATE(2300), - [sym__expression_with_blocks] = STATE(2300), - [sym_inc_expression] = STATE(2307), - [sym_dec_expression] = STATE(2307), - [sym_or_block_expression] = STATE(2307), - [sym_option_propagation_expression] = STATE(2307), - [sym_result_propagation_expression] = STATE(2307), - [sym_anon_struct_value_expression] = STATE(2380), - [sym_go_expression] = STATE(2307), - [sym_spawn_expression] = STATE(2307), - [sym_parenthesized_expression] = STATE(2307), - [sym_call_expression] = STATE(2307), - [sym_type_initializer] = STATE(2380), - [sym_function_literal] = STATE(2307), - [sym_reference_expression] = STATE(2311), - [sym_type_reference_expression] = STATE(3541), - [sym_unary_expression] = STATE(2307), - [sym_receive_expression] = STATE(2307), - [sym_binary_expression] = STATE(2307), - [sym_as_type_cast_expression] = STATE(2307), - [sym__max_group] = STATE(2307), - [sym_literal] = STATE(2292), - [sym_map_init_expression] = STATE(2380), - [sym_map_keyed_element] = STATE(2001), - [sym_array_creation] = STATE(2307), - [sym_fixed_array_creation] = STATE(2307), - [sym_selector_expression] = STATE(2307), - [sym_index_expression] = STATE(2307), - [sym_slice_expression] = STATE(2307), - [sym_if_expression] = STATE(2380), - [sym_compile_time_if_expression] = STATE(2380), - [sym_is_expression] = STATE(2307), - [sym_in_expression] = STATE(2307), - [sym_enum_fetch] = STATE(2307), - [sym_match_expression] = STATE(2380), - [sym_select_expression] = STATE(2380), - [sym_lock_expression] = STATE(2380), - [sym_unsafe_expression] = STATE(2380), - [sym_sql_expression] = STATE(2380), - [sym_c_string_literal] = STATE(2308), - [sym_raw_string_literal] = STATE(2308), - [sym_interpreted_string_literal] = STATE(2308), + [sym__expression] = STATE(2632), + [sym__expression_without_blocks] = STATE(2347), + [sym__expression_with_blocks] = STATE(2347), + [sym_inc_expression] = STATE(2379), + [sym_dec_expression] = STATE(2379), + [sym_or_block_expression] = STATE(2379), + [sym_option_propagation_expression] = STATE(2379), + [sym_result_propagation_expression] = STATE(2379), + [sym_anon_struct_value_expression] = STATE(2378), + [sym_go_expression] = STATE(2379), + [sym_spawn_expression] = STATE(2379), + [sym_parenthesized_expression] = STATE(2379), + [sym_call_expression] = STATE(2379), + [sym_type_initializer] = STATE(2378), + [sym_function_literal] = STATE(2379), + [sym_reference_expression] = STATE(2377), + [sym_type_reference_expression] = STATE(3460), + [sym_unary_expression] = STATE(2379), + [sym_receive_expression] = STATE(2379), + [sym_binary_expression] = STATE(2379), + [sym_as_type_cast_expression] = STATE(2379), + [sym__max_group] = STATE(2379), + [sym_literal] = STATE(2392), + [sym_map_init_expression] = STATE(2378), + [sym_map_keyed_element] = STATE(2004), + [sym_array_creation] = STATE(2379), + [sym_fixed_array_creation] = STATE(2379), + [sym_selector_expression] = STATE(2379), + [sym_index_expression] = STATE(2379), + [sym_slice_expression] = STATE(2379), + [sym_if_expression] = STATE(2378), + [sym_compile_time_if_expression] = STATE(2378), + [sym_is_expression] = STATE(2379), + [sym_in_expression] = STATE(2379), + [sym_enum_fetch] = STATE(2379), + [sym_match_expression] = STATE(2378), + [sym_select_expression] = STATE(2378), + [sym_lock_expression] = STATE(2378), + [sym_unsafe_expression] = STATE(2378), + [sym_sql_expression] = STATE(2378), + [sym_c_string_literal] = STATE(2401), + [sym_raw_string_literal] = STATE(2401), + [sym_interpreted_string_literal] = STATE(2401), [sym_mutability_modifiers] = STATE(939), - [sym_plain_type] = STATE(4297), - [sym__plain_type_without_special] = STATE(2302), - [sym_anon_struct_type] = STATE(2303), - [sym_multi_return_type] = STATE(2302), - [sym_result_type] = STATE(2302), - [sym_option_type] = STATE(2302), - [sym_qualified_type] = STATE(3541), - [sym_fixed_array_type] = STATE(2303), - [sym_array_type] = STATE(2303), - [sym_pointer_type] = STATE(2303), - [sym_wrong_pointer_type] = STATE(2303), - [sym_map_type] = STATE(2303), - [sym_channel_type] = STATE(2303), - [sym_shared_type] = STATE(2303), - [sym_thread_type] = STATE(2303), - [sym_atomic_type] = STATE(2303), - [sym_generic_type] = STATE(2303), - [sym_function_type] = STATE(2303), - [aux_sym_map_init_expression_repeat1] = STATE(293), - [sym_identifier] = ACTIONS(1426), + [sym_plain_type] = STATE(4160), + [sym__plain_type_without_special] = STATE(2360), + [sym_anon_struct_type] = STATE(2362), + [sym_multi_return_type] = STATE(2360), + [sym_result_type] = STATE(2360), + [sym_option_type] = STATE(2360), + [sym_qualified_type] = STATE(3460), + [sym_fixed_array_type] = STATE(2362), + [sym_array_type] = STATE(2362), + [sym_pointer_type] = STATE(2362), + [sym_wrong_pointer_type] = STATE(2362), + [sym_map_type] = STATE(2362), + [sym_channel_type] = STATE(2362), + [sym_shared_type] = STATE(2362), + [sym_thread_type] = STATE(2362), + [sym_atomic_type] = STATE(2362), + [sym_generic_type] = STATE(2362), + [sym_function_type] = STATE(2362), + [aux_sym_map_init_expression_repeat1] = STATE(303), + [sym_identifier] = ACTIONS(1428), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1428), - [anon_sym_LBRACE] = ACTIONS(1430), - [anon_sym_RBRACE] = ACTIONS(2095), - [anon_sym_LPAREN] = ACTIONS(1432), - [anon_sym_fn] = ACTIONS(1434), - [anon_sym_PLUS] = ACTIONS(1436), - [anon_sym_DASH] = ACTIONS(1436), - [anon_sym_STAR] = ACTIONS(1438), - [anon_sym_struct] = ACTIONS(1440), + [anon_sym_DOT] = ACTIONS(1430), + [anon_sym_LBRACE] = ACTIONS(1432), + [anon_sym_RBRACE] = ACTIONS(1979), + [anon_sym_LPAREN] = ACTIONS(1434), + [anon_sym_fn] = ACTIONS(1436), + [anon_sym_PLUS] = ACTIONS(1438), + [anon_sym_DASH] = ACTIONS(1438), + [anon_sym_STAR] = ACTIONS(1440), + [anon_sym_struct] = ACTIONS(1442), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(1442), - [anon_sym_go] = ACTIONS(1444), - [anon_sym_spawn] = ACTIONS(1446), - [anon_sym_json_DOTdecode] = ACTIONS(1448), - [anon_sym_LBRACK2] = ACTIONS(1450), - [anon_sym_TILDE] = ACTIONS(1436), - [anon_sym_CARET] = ACTIONS(1436), - [anon_sym_AMP] = ACTIONS(1452), - [anon_sym_LT_DASH] = ACTIONS(1454), - [sym_none] = ACTIONS(1456), - [sym_true] = ACTIONS(1456), - [sym_false] = ACTIONS(1456), - [sym_nil] = ACTIONS(1456), - [anon_sym_if] = ACTIONS(1827), - [anon_sym_DOLLARif] = ACTIONS(1460), - [anon_sym_match] = ACTIONS(1462), - [anon_sym_select] = ACTIONS(1464), - [anon_sym_lock] = ACTIONS(1466), - [anon_sym_rlock] = ACTIONS(1466), - [anon_sym_unsafe] = ACTIONS(1833), - [anon_sym_sql] = ACTIONS(1470), - [sym_int_literal] = ACTIONS(1456), - [sym_float_literal] = ACTIONS(1472), - [sym_rune_literal] = ACTIONS(1472), - [sym_pseudo_compile_time_identifier] = ACTIONS(1474), + [anon_sym_BANG] = ACTIONS(1444), + [anon_sym_go] = ACTIONS(1446), + [anon_sym_spawn] = ACTIONS(1448), + [anon_sym_json_DOTdecode] = ACTIONS(1450), + [anon_sym_LBRACK2] = ACTIONS(1452), + [anon_sym_TILDE] = ACTIONS(1438), + [anon_sym_CARET] = ACTIONS(1438), + [anon_sym_AMP] = ACTIONS(1454), + [anon_sym_LT_DASH] = ACTIONS(1456), + [sym_none] = ACTIONS(1458), + [sym_true] = ACTIONS(1458), + [sym_false] = ACTIONS(1458), + [sym_nil] = ACTIONS(1458), + [anon_sym_if] = ACTIONS(1833), + [anon_sym_DOLLARif] = ACTIONS(1462), + [anon_sym_match] = ACTIONS(1464), + [anon_sym_select] = ACTIONS(1466), + [anon_sym_lock] = ACTIONS(1468), + [anon_sym_rlock] = ACTIONS(1468), + [anon_sym_unsafe] = ACTIONS(1839), + [anon_sym_sql] = ACTIONS(1472), + [sym_int_literal] = ACTIONS(1458), + [sym_float_literal] = ACTIONS(1474), + [sym_rune_literal] = ACTIONS(1474), + [sym_pseudo_compile_time_identifier] = ACTIONS(1476), [anon_sym_shared] = ACTIONS(83), [anon_sym_map_LBRACK] = ACTIONS(85), [anon_sym_chan] = ACTIONS(87), [anon_sym_thread] = ACTIONS(89), [anon_sym_atomic] = ACTIONS(91), - [sym___double_quote] = ACTIONS(1478), - [sym___single_quote] = ACTIONS(1480), - [sym___c_double_quote] = ACTIONS(1482), - [sym___c_single_quote] = ACTIONS(1484), - [sym___r_double_quote] = ACTIONS(1486), - [sym___r_single_quote] = ACTIONS(1488), + [sym___double_quote] = ACTIONS(1480), + [sym___single_quote] = ACTIONS(1482), + [sym___c_double_quote] = ACTIONS(1484), + [sym___c_single_quote] = ACTIONS(1486), + [sym___r_double_quote] = ACTIONS(1488), + [sym___r_single_quote] = ACTIONS(1490), }, [297] = { [sym_line_comment] = STATE(297), [sym_block_comment] = STATE(297), - [sym__expression] = STATE(2413), - [sym__expression_without_blocks] = STATE(2300), - [sym__expression_with_blocks] = STATE(2300), - [sym_inc_expression] = STATE(2307), - [sym_dec_expression] = STATE(2307), - [sym_or_block_expression] = STATE(2307), - [sym_option_propagation_expression] = STATE(2307), - [sym_result_propagation_expression] = STATE(2307), - [sym_anon_struct_value_expression] = STATE(2380), - [sym_go_expression] = STATE(2307), - [sym_spawn_expression] = STATE(2307), - [sym_parenthesized_expression] = STATE(2307), - [sym_call_expression] = STATE(2307), - [sym_type_initializer] = STATE(2380), - [sym_function_literal] = STATE(2307), - [sym_reference_expression] = STATE(2578), - [sym_type_reference_expression] = STATE(3541), - [sym_unary_expression] = STATE(2307), - [sym_receive_expression] = STATE(2307), - [sym_binary_expression] = STATE(2307), - [sym_as_type_cast_expression] = STATE(2307), - [sym__max_group] = STATE(2307), - [sym_literal] = STATE(2292), - [sym_map_init_expression] = STATE(2380), - [sym_array_creation] = STATE(2307), - [sym_fixed_array_creation] = STATE(2307), - [sym_selector_expression] = STATE(2307), - [sym_index_expression] = STATE(2307), - [sym_slice_expression] = STATE(2307), - [sym_if_expression] = STATE(2380), - [sym_compile_time_if_expression] = STATE(2380), - [sym_is_expression] = STATE(2307), - [sym_in_expression] = STATE(2307), - [sym_enum_fetch] = STATE(2307), - [sym_match_expression] = STATE(2380), - [sym_select_expression] = STATE(2380), - [sym_lock_expression] = STATE(2380), - [sym_unsafe_expression] = STATE(2380), - [sym_sql_expression] = STATE(2380), - [sym_c_string_literal] = STATE(2308), - [sym_raw_string_literal] = STATE(2308), - [sym_interpreted_string_literal] = STATE(2308), - [sym_mutability_modifiers] = STATE(765), - [sym_mutable_expression] = STATE(3823), - [sym_expression_list] = STATE(4480), - [sym_plain_type] = STATE(4297), - [sym__plain_type_without_special] = STATE(2302), - [sym_anon_struct_type] = STATE(2303), - [sym_multi_return_type] = STATE(2302), - [sym_result_type] = STATE(2302), - [sym_option_type] = STATE(2302), - [sym_qualified_type] = STATE(3541), - [sym_fixed_array_type] = STATE(2303), - [sym_array_type] = STATE(2303), - [sym_pointer_type] = STATE(2303), - [sym_wrong_pointer_type] = STATE(2303), - [sym_map_type] = STATE(2303), - [sym_channel_type] = STATE(2303), - [sym_shared_type] = STATE(2303), - [sym_thread_type] = STATE(2303), - [sym_atomic_type] = STATE(2303), - [sym_generic_type] = STATE(2303), - [sym_function_type] = STATE(2303), - [sym_var_declaration] = STATE(4104), - [sym_identifier] = ACTIONS(1807), + [sym__expression] = STATE(2632), + [sym__expression_without_blocks] = STATE(2347), + [sym__expression_with_blocks] = STATE(2347), + [sym_inc_expression] = STATE(2379), + [sym_dec_expression] = STATE(2379), + [sym_or_block_expression] = STATE(2379), + [sym_option_propagation_expression] = STATE(2379), + [sym_result_propagation_expression] = STATE(2379), + [sym_anon_struct_value_expression] = STATE(2378), + [sym_go_expression] = STATE(2379), + [sym_spawn_expression] = STATE(2379), + [sym_parenthesized_expression] = STATE(2379), + [sym_call_expression] = STATE(2379), + [sym_type_initializer] = STATE(2378), + [sym_function_literal] = STATE(2379), + [sym_reference_expression] = STATE(2377), + [sym_type_reference_expression] = STATE(3460), + [sym_unary_expression] = STATE(2379), + [sym_receive_expression] = STATE(2379), + [sym_binary_expression] = STATE(2379), + [sym_as_type_cast_expression] = STATE(2379), + [sym__max_group] = STATE(2379), + [sym_literal] = STATE(2392), + [sym_map_init_expression] = STATE(2378), + [sym_map_keyed_element] = STATE(2004), + [sym_array_creation] = STATE(2379), + [sym_fixed_array_creation] = STATE(2379), + [sym_selector_expression] = STATE(2379), + [sym_index_expression] = STATE(2379), + [sym_slice_expression] = STATE(2379), + [sym_if_expression] = STATE(2378), + [sym_compile_time_if_expression] = STATE(2378), + [sym_is_expression] = STATE(2379), + [sym_in_expression] = STATE(2379), + [sym_enum_fetch] = STATE(2379), + [sym_match_expression] = STATE(2378), + [sym_select_expression] = STATE(2378), + [sym_lock_expression] = STATE(2378), + [sym_unsafe_expression] = STATE(2378), + [sym_sql_expression] = STATE(2378), + [sym_c_string_literal] = STATE(2401), + [sym_raw_string_literal] = STATE(2401), + [sym_interpreted_string_literal] = STATE(2401), + [sym_mutability_modifiers] = STATE(939), + [sym_plain_type] = STATE(4160), + [sym__plain_type_without_special] = STATE(2360), + [sym_anon_struct_type] = STATE(2362), + [sym_multi_return_type] = STATE(2360), + [sym_result_type] = STATE(2360), + [sym_option_type] = STATE(2360), + [sym_qualified_type] = STATE(3460), + [sym_fixed_array_type] = STATE(2362), + [sym_array_type] = STATE(2362), + [sym_pointer_type] = STATE(2362), + [sym_wrong_pointer_type] = STATE(2362), + [sym_map_type] = STATE(2362), + [sym_channel_type] = STATE(2362), + [sym_shared_type] = STATE(2362), + [sym_thread_type] = STATE(2362), + [sym_atomic_type] = STATE(2362), + [sym_generic_type] = STATE(2362), + [sym_function_type] = STATE(2362), + [aux_sym_map_init_expression_repeat1] = STATE(296), + [sym_identifier] = ACTIONS(1428), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1428), - [anon_sym_LBRACE] = ACTIONS(1430), - [anon_sym_LPAREN] = ACTIONS(1432), - [anon_sym_fn] = ACTIONS(1434), - [anon_sym_PLUS] = ACTIONS(1811), - [anon_sym_DASH] = ACTIONS(1811), - [anon_sym_STAR] = ACTIONS(1813), - [anon_sym_struct] = ACTIONS(1440), + [anon_sym_DOT] = ACTIONS(1430), + [anon_sym_LBRACE] = ACTIONS(1432), + [anon_sym_RBRACE] = ACTIONS(1981), + [anon_sym_LPAREN] = ACTIONS(1434), + [anon_sym_fn] = ACTIONS(1436), + [anon_sym_PLUS] = ACTIONS(1438), + [anon_sym_DASH] = ACTIONS(1438), + [anon_sym_STAR] = ACTIONS(1440), + [anon_sym_struct] = ACTIONS(1442), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(1815), - [anon_sym_go] = ACTIONS(1817), - [anon_sym_spawn] = ACTIONS(1819), - [anon_sym_json_DOTdecode] = ACTIONS(1448), - [anon_sym_LBRACK2] = ACTIONS(1821), - [anon_sym_TILDE] = ACTIONS(1811), - [anon_sym_CARET] = ACTIONS(1811), - [anon_sym_AMP] = ACTIONS(1823), - [anon_sym_LT_DASH] = ACTIONS(1825), - [sym_none] = ACTIONS(1456), - [sym_true] = ACTIONS(1456), - [sym_false] = ACTIONS(1456), - [sym_nil] = ACTIONS(1456), - [anon_sym_if] = ACTIONS(1827), - [anon_sym_DOLLARif] = ACTIONS(1460), - [anon_sym_match] = ACTIONS(1462), - [anon_sym_select] = ACTIONS(1829), - [anon_sym_lock] = ACTIONS(1831), - [anon_sym_rlock] = ACTIONS(1831), - [anon_sym_unsafe] = ACTIONS(1833), - [anon_sym_sql] = ACTIONS(1470), - [sym_int_literal] = ACTIONS(1456), - [sym_float_literal] = ACTIONS(1472), - [sym_rune_literal] = ACTIONS(1472), - [sym_pseudo_compile_time_identifier] = ACTIONS(1474), + [anon_sym_BANG] = ACTIONS(1444), + [anon_sym_go] = ACTIONS(1446), + [anon_sym_spawn] = ACTIONS(1448), + [anon_sym_json_DOTdecode] = ACTIONS(1450), + [anon_sym_LBRACK2] = ACTIONS(1452), + [anon_sym_TILDE] = ACTIONS(1438), + [anon_sym_CARET] = ACTIONS(1438), + [anon_sym_AMP] = ACTIONS(1454), + [anon_sym_LT_DASH] = ACTIONS(1456), + [sym_none] = ACTIONS(1458), + [sym_true] = ACTIONS(1458), + [sym_false] = ACTIONS(1458), + [sym_nil] = ACTIONS(1458), + [anon_sym_if] = ACTIONS(1833), + [anon_sym_DOLLARif] = ACTIONS(1462), + [anon_sym_match] = ACTIONS(1464), + [anon_sym_select] = ACTIONS(1466), + [anon_sym_lock] = ACTIONS(1468), + [anon_sym_rlock] = ACTIONS(1468), + [anon_sym_unsafe] = ACTIONS(1839), + [anon_sym_sql] = ACTIONS(1472), + [sym_int_literal] = ACTIONS(1458), + [sym_float_literal] = ACTIONS(1474), + [sym_rune_literal] = ACTIONS(1474), + [sym_pseudo_compile_time_identifier] = ACTIONS(1476), [anon_sym_shared] = ACTIONS(83), [anon_sym_map_LBRACK] = ACTIONS(85), [anon_sym_chan] = ACTIONS(87), [anon_sym_thread] = ACTIONS(89), [anon_sym_atomic] = ACTIONS(91), - [sym___double_quote] = ACTIONS(1478), - [sym___single_quote] = ACTIONS(1480), - [sym___c_double_quote] = ACTIONS(1482), - [sym___c_single_quote] = ACTIONS(1484), - [sym___r_double_quote] = ACTIONS(1486), - [sym___r_single_quote] = ACTIONS(1488), + [sym___double_quote] = ACTIONS(1480), + [sym___single_quote] = ACTIONS(1482), + [sym___c_double_quote] = ACTIONS(1484), + [sym___c_single_quote] = ACTIONS(1486), + [sym___r_double_quote] = ACTIONS(1488), + [sym___r_single_quote] = ACTIONS(1490), }, [298] = { [sym_line_comment] = STATE(298), [sym_block_comment] = STATE(298), - [sym__expression] = STATE(2413), - [sym__expression_without_blocks] = STATE(2300), - [sym__expression_with_blocks] = STATE(2300), - [sym_inc_expression] = STATE(2307), - [sym_dec_expression] = STATE(2307), - [sym_or_block_expression] = STATE(2307), - [sym_option_propagation_expression] = STATE(2307), - [sym_result_propagation_expression] = STATE(2307), - [sym_anon_struct_value_expression] = STATE(2380), - [sym_go_expression] = STATE(2307), - [sym_spawn_expression] = STATE(2307), - [sym_parenthesized_expression] = STATE(2307), - [sym_call_expression] = STATE(2307), - [sym_type_initializer] = STATE(2380), - [sym_function_literal] = STATE(2307), - [sym_reference_expression] = STATE(2311), - [sym_type_reference_expression] = STATE(3541), - [sym_unary_expression] = STATE(2307), - [sym_receive_expression] = STATE(2307), - [sym_binary_expression] = STATE(2307), - [sym_as_type_cast_expression] = STATE(2307), - [sym__max_group] = STATE(2307), - [sym_literal] = STATE(2292), - [sym_map_init_expression] = STATE(2380), - [sym_array_creation] = STATE(2307), - [sym_fixed_array_creation] = STATE(2307), - [sym_selector_expression] = STATE(2307), - [sym_index_expression] = STATE(2307), - [sym_slice_expression] = STATE(2307), - [sym_if_expression] = STATE(2380), - [sym_compile_time_if_expression] = STATE(2380), - [sym_is_expression] = STATE(2307), - [sym_in_expression] = STATE(2307), - [sym_enum_fetch] = STATE(2307), - [sym_match_expression] = STATE(2380), - [sym_select_expression] = STATE(2380), - [sym_lock_expression] = STATE(2380), - [sym_unsafe_expression] = STATE(2380), - [sym_sql_expression] = STATE(2380), - [sym_c_string_literal] = STATE(2308), - [sym_raw_string_literal] = STATE(2308), - [sym_interpreted_string_literal] = STATE(2308), - [sym_mutability_modifiers] = STATE(765), - [sym_mutable_expression] = STATE(3823), - [sym_expression_list] = STATE(4480), - [sym_plain_type] = STATE(4297), - [sym__plain_type_without_special] = STATE(2302), - [sym_anon_struct_type] = STATE(2303), - [sym_multi_return_type] = STATE(2302), - [sym_result_type] = STATE(2302), - [sym_option_type] = STATE(2302), - [sym_qualified_type] = STATE(3541), - [sym_fixed_array_type] = STATE(2303), - [sym_array_type] = STATE(2303), - [sym_pointer_type] = STATE(2303), - [sym_wrong_pointer_type] = STATE(2303), - [sym_map_type] = STATE(2303), - [sym_channel_type] = STATE(2303), - [sym_shared_type] = STATE(2303), - [sym_thread_type] = STATE(2303), - [sym_atomic_type] = STATE(2303), - [sym_generic_type] = STATE(2303), - [sym_function_type] = STATE(2303), - [sym_var_declaration] = STATE(4104), - [sym_identifier] = ACTIONS(1807), + [sym__expression] = STATE(2632), + [sym__expression_without_blocks] = STATE(2347), + [sym__expression_with_blocks] = STATE(2347), + [sym_inc_expression] = STATE(2379), + [sym_dec_expression] = STATE(2379), + [sym_or_block_expression] = STATE(2379), + [sym_option_propagation_expression] = STATE(2379), + [sym_result_propagation_expression] = STATE(2379), + [sym_anon_struct_value_expression] = STATE(2378), + [sym_go_expression] = STATE(2379), + [sym_spawn_expression] = STATE(2379), + [sym_parenthesized_expression] = STATE(2379), + [sym_call_expression] = STATE(2379), + [sym_type_initializer] = STATE(2378), + [sym_function_literal] = STATE(2379), + [sym_reference_expression] = STATE(2377), + [sym_type_reference_expression] = STATE(3460), + [sym_unary_expression] = STATE(2379), + [sym_receive_expression] = STATE(2379), + [sym_binary_expression] = STATE(2379), + [sym_as_type_cast_expression] = STATE(2379), + [sym__max_group] = STATE(2379), + [sym_literal] = STATE(2392), + [sym_map_init_expression] = STATE(2378), + [sym_map_keyed_element] = STATE(2004), + [sym_array_creation] = STATE(2379), + [sym_fixed_array_creation] = STATE(2379), + [sym_selector_expression] = STATE(2379), + [sym_index_expression] = STATE(2379), + [sym_slice_expression] = STATE(2379), + [sym_if_expression] = STATE(2378), + [sym_compile_time_if_expression] = STATE(2378), + [sym_is_expression] = STATE(2379), + [sym_in_expression] = STATE(2379), + [sym_enum_fetch] = STATE(2379), + [sym_match_expression] = STATE(2378), + [sym_select_expression] = STATE(2378), + [sym_lock_expression] = STATE(2378), + [sym_unsafe_expression] = STATE(2378), + [sym_sql_expression] = STATE(2378), + [sym_c_string_literal] = STATE(2401), + [sym_raw_string_literal] = STATE(2401), + [sym_interpreted_string_literal] = STATE(2401), + [sym_mutability_modifiers] = STATE(939), + [sym_plain_type] = STATE(4160), + [sym__plain_type_without_special] = STATE(2360), + [sym_anon_struct_type] = STATE(2362), + [sym_multi_return_type] = STATE(2360), + [sym_result_type] = STATE(2360), + [sym_option_type] = STATE(2360), + [sym_qualified_type] = STATE(3460), + [sym_fixed_array_type] = STATE(2362), + [sym_array_type] = STATE(2362), + [sym_pointer_type] = STATE(2362), + [sym_wrong_pointer_type] = STATE(2362), + [sym_map_type] = STATE(2362), + [sym_channel_type] = STATE(2362), + [sym_shared_type] = STATE(2362), + [sym_thread_type] = STATE(2362), + [sym_atomic_type] = STATE(2362), + [sym_generic_type] = STATE(2362), + [sym_function_type] = STATE(2362), + [aux_sym_map_init_expression_repeat1] = STATE(299), + [sym_identifier] = ACTIONS(1428), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1428), - [anon_sym_LBRACE] = ACTIONS(1430), - [anon_sym_LPAREN] = ACTIONS(1432), - [anon_sym_fn] = ACTIONS(1434), - [anon_sym_PLUS] = ACTIONS(1811), - [anon_sym_DASH] = ACTIONS(1811), - [anon_sym_STAR] = ACTIONS(1813), - [anon_sym_struct] = ACTIONS(1440), + [anon_sym_DOT] = ACTIONS(1430), + [anon_sym_LBRACE] = ACTIONS(1432), + [anon_sym_RBRACE] = ACTIONS(1983), + [anon_sym_LPAREN] = ACTIONS(1434), + [anon_sym_fn] = ACTIONS(1436), + [anon_sym_PLUS] = ACTIONS(1438), + [anon_sym_DASH] = ACTIONS(1438), + [anon_sym_STAR] = ACTIONS(1440), + [anon_sym_struct] = ACTIONS(1442), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(1815), - [anon_sym_go] = ACTIONS(1817), - [anon_sym_spawn] = ACTIONS(1819), - [anon_sym_json_DOTdecode] = ACTIONS(1448), - [anon_sym_LBRACK2] = ACTIONS(1821), - [anon_sym_TILDE] = ACTIONS(1811), - [anon_sym_CARET] = ACTIONS(1811), - [anon_sym_AMP] = ACTIONS(1823), - [anon_sym_LT_DASH] = ACTIONS(1825), - [sym_none] = ACTIONS(1456), - [sym_true] = ACTIONS(1456), - [sym_false] = ACTIONS(1456), - [sym_nil] = ACTIONS(1456), - [anon_sym_if] = ACTIONS(1827), - [anon_sym_DOLLARif] = ACTIONS(1460), - [anon_sym_match] = ACTIONS(1462), - [anon_sym_select] = ACTIONS(1829), - [anon_sym_lock] = ACTIONS(1831), - [anon_sym_rlock] = ACTIONS(1831), - [anon_sym_unsafe] = ACTIONS(1833), - [anon_sym_sql] = ACTIONS(1470), - [sym_int_literal] = ACTIONS(1456), - [sym_float_literal] = ACTIONS(1472), - [sym_rune_literal] = ACTIONS(1472), - [sym_pseudo_compile_time_identifier] = ACTIONS(1474), + [anon_sym_BANG] = ACTIONS(1444), + [anon_sym_go] = ACTIONS(1446), + [anon_sym_spawn] = ACTIONS(1448), + [anon_sym_json_DOTdecode] = ACTIONS(1450), + [anon_sym_LBRACK2] = ACTIONS(1452), + [anon_sym_TILDE] = ACTIONS(1438), + [anon_sym_CARET] = ACTIONS(1438), + [anon_sym_AMP] = ACTIONS(1454), + [anon_sym_LT_DASH] = ACTIONS(1456), + [sym_none] = ACTIONS(1458), + [sym_true] = ACTIONS(1458), + [sym_false] = ACTIONS(1458), + [sym_nil] = ACTIONS(1458), + [anon_sym_if] = ACTIONS(1833), + [anon_sym_DOLLARif] = ACTIONS(1462), + [anon_sym_match] = ACTIONS(1464), + [anon_sym_select] = ACTIONS(1466), + [anon_sym_lock] = ACTIONS(1468), + [anon_sym_rlock] = ACTIONS(1468), + [anon_sym_unsafe] = ACTIONS(1839), + [anon_sym_sql] = ACTIONS(1472), + [sym_int_literal] = ACTIONS(1458), + [sym_float_literal] = ACTIONS(1474), + [sym_rune_literal] = ACTIONS(1474), + [sym_pseudo_compile_time_identifier] = ACTIONS(1476), [anon_sym_shared] = ACTIONS(83), [anon_sym_map_LBRACK] = ACTIONS(85), [anon_sym_chan] = ACTIONS(87), [anon_sym_thread] = ACTIONS(89), [anon_sym_atomic] = ACTIONS(91), - [sym___double_quote] = ACTIONS(1478), - [sym___single_quote] = ACTIONS(1480), - [sym___c_double_quote] = ACTIONS(1482), - [sym___c_single_quote] = ACTIONS(1484), - [sym___r_double_quote] = ACTIONS(1486), - [sym___r_single_quote] = ACTIONS(1488), + [sym___double_quote] = ACTIONS(1480), + [sym___single_quote] = ACTIONS(1482), + [sym___c_double_quote] = ACTIONS(1484), + [sym___c_single_quote] = ACTIONS(1486), + [sym___r_double_quote] = ACTIONS(1488), + [sym___r_single_quote] = ACTIONS(1490), }, [299] = { [sym_line_comment] = STATE(299), [sym_block_comment] = STATE(299), - [sym__expression] = STATE(2291), - [sym__expression_without_blocks] = STATE(2300), - [sym__expression_with_blocks] = STATE(2300), - [sym_inc_expression] = STATE(2307), - [sym_dec_expression] = STATE(2307), - [sym_or_block_expression] = STATE(2307), - [sym_option_propagation_expression] = STATE(2307), - [sym_result_propagation_expression] = STATE(2307), - [sym_anon_struct_value_expression] = STATE(2380), - [sym_go_expression] = STATE(2307), - [sym_spawn_expression] = STATE(2307), - [sym_parenthesized_expression] = STATE(2307), - [sym_call_expression] = STATE(2307), - [sym_type_initializer] = STATE(2380), - [sym_function_literal] = STATE(2307), - [sym_reference_expression] = STATE(2311), - [sym_type_reference_expression] = STATE(3541), - [sym_unary_expression] = STATE(2307), - [sym_receive_expression] = STATE(2307), - [sym_binary_expression] = STATE(2307), - [sym_as_type_cast_expression] = STATE(2307), - [sym__max_group] = STATE(2307), - [sym_literal] = STATE(2292), - [sym_map_init_expression] = STATE(2380), - [sym_array_creation] = STATE(2307), - [sym_fixed_array_creation] = STATE(2307), - [sym_selector_expression] = STATE(2307), - [sym_index_expression] = STATE(2307), - [sym_slice_expression] = STATE(2307), - [sym_if_expression] = STATE(2380), - [sym_compile_time_if_expression] = STATE(2380), - [sym_is_expression] = STATE(2307), - [sym_in_expression] = STATE(2307), - [sym_enum_fetch] = STATE(2307), - [sym_match_expression] = STATE(2380), - [sym_select_expression] = STATE(2380), - [sym_lock_expression] = STATE(2380), - [sym_unsafe_expression] = STATE(2380), - [sym_sql_expression] = STATE(2380), - [sym_c_string_literal] = STATE(2308), - [sym_raw_string_literal] = STATE(2308), - [sym_interpreted_string_literal] = STATE(2308), - [sym_mutability_modifiers] = STATE(765), - [sym_mutable_expression] = STATE(3823), - [sym_expression_list] = STATE(4480), - [sym_plain_type] = STATE(4297), - [sym__plain_type_without_special] = STATE(2302), - [sym_anon_struct_type] = STATE(2303), - [sym_multi_return_type] = STATE(2302), - [sym_result_type] = STATE(2302), - [sym_option_type] = STATE(2302), - [sym_qualified_type] = STATE(3541), - [sym_fixed_array_type] = STATE(2303), - [sym_array_type] = STATE(2303), - [sym_pointer_type] = STATE(2303), - [sym_wrong_pointer_type] = STATE(2303), - [sym_map_type] = STATE(2303), - [sym_channel_type] = STATE(2303), - [sym_shared_type] = STATE(2303), - [sym_thread_type] = STATE(2303), - [sym_atomic_type] = STATE(2303), - [sym_generic_type] = STATE(2303), - [sym_function_type] = STATE(2303), - [sym_var_declaration] = STATE(4076), - [sym_identifier] = ACTIONS(1807), + [sym__expression] = STATE(2632), + [sym__expression_without_blocks] = STATE(2347), + [sym__expression_with_blocks] = STATE(2347), + [sym_inc_expression] = STATE(2379), + [sym_dec_expression] = STATE(2379), + [sym_or_block_expression] = STATE(2379), + [sym_option_propagation_expression] = STATE(2379), + [sym_result_propagation_expression] = STATE(2379), + [sym_anon_struct_value_expression] = STATE(2378), + [sym_go_expression] = STATE(2379), + [sym_spawn_expression] = STATE(2379), + [sym_parenthesized_expression] = STATE(2379), + [sym_call_expression] = STATE(2379), + [sym_type_initializer] = STATE(2378), + [sym_function_literal] = STATE(2379), + [sym_reference_expression] = STATE(2377), + [sym_type_reference_expression] = STATE(3460), + [sym_unary_expression] = STATE(2379), + [sym_receive_expression] = STATE(2379), + [sym_binary_expression] = STATE(2379), + [sym_as_type_cast_expression] = STATE(2379), + [sym__max_group] = STATE(2379), + [sym_literal] = STATE(2392), + [sym_map_init_expression] = STATE(2378), + [sym_map_keyed_element] = STATE(2004), + [sym_array_creation] = STATE(2379), + [sym_fixed_array_creation] = STATE(2379), + [sym_selector_expression] = STATE(2379), + [sym_index_expression] = STATE(2379), + [sym_slice_expression] = STATE(2379), + [sym_if_expression] = STATE(2378), + [sym_compile_time_if_expression] = STATE(2378), + [sym_is_expression] = STATE(2379), + [sym_in_expression] = STATE(2379), + [sym_enum_fetch] = STATE(2379), + [sym_match_expression] = STATE(2378), + [sym_select_expression] = STATE(2378), + [sym_lock_expression] = STATE(2378), + [sym_unsafe_expression] = STATE(2378), + [sym_sql_expression] = STATE(2378), + [sym_c_string_literal] = STATE(2401), + [sym_raw_string_literal] = STATE(2401), + [sym_interpreted_string_literal] = STATE(2401), + [sym_mutability_modifiers] = STATE(939), + [sym_plain_type] = STATE(4160), + [sym__plain_type_without_special] = STATE(2360), + [sym_anon_struct_type] = STATE(2362), + [sym_multi_return_type] = STATE(2360), + [sym_result_type] = STATE(2360), + [sym_option_type] = STATE(2360), + [sym_qualified_type] = STATE(3460), + [sym_fixed_array_type] = STATE(2362), + [sym_array_type] = STATE(2362), + [sym_pointer_type] = STATE(2362), + [sym_wrong_pointer_type] = STATE(2362), + [sym_map_type] = STATE(2362), + [sym_channel_type] = STATE(2362), + [sym_shared_type] = STATE(2362), + [sym_thread_type] = STATE(2362), + [sym_atomic_type] = STATE(2362), + [sym_generic_type] = STATE(2362), + [sym_function_type] = STATE(2362), + [aux_sym_map_init_expression_repeat1] = STATE(303), + [sym_identifier] = ACTIONS(1428), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1428), - [anon_sym_LBRACE] = ACTIONS(1430), - [anon_sym_LPAREN] = ACTIONS(1432), - [anon_sym_fn] = ACTIONS(1434), - [anon_sym_PLUS] = ACTIONS(1811), - [anon_sym_DASH] = ACTIONS(1811), - [anon_sym_STAR] = ACTIONS(1813), - [anon_sym_struct] = ACTIONS(1440), + [anon_sym_DOT] = ACTIONS(1430), + [anon_sym_LBRACE] = ACTIONS(1432), + [anon_sym_RBRACE] = ACTIONS(1985), + [anon_sym_LPAREN] = ACTIONS(1434), + [anon_sym_fn] = ACTIONS(1436), + [anon_sym_PLUS] = ACTIONS(1438), + [anon_sym_DASH] = ACTIONS(1438), + [anon_sym_STAR] = ACTIONS(1440), + [anon_sym_struct] = ACTIONS(1442), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(1815), - [anon_sym_go] = ACTIONS(1817), - [anon_sym_spawn] = ACTIONS(1819), - [anon_sym_json_DOTdecode] = ACTIONS(1448), - [anon_sym_LBRACK2] = ACTIONS(1821), - [anon_sym_TILDE] = ACTIONS(1811), - [anon_sym_CARET] = ACTIONS(1811), - [anon_sym_AMP] = ACTIONS(1823), - [anon_sym_LT_DASH] = ACTIONS(1825), - [sym_none] = ACTIONS(1456), - [sym_true] = ACTIONS(1456), - [sym_false] = ACTIONS(1456), - [sym_nil] = ACTIONS(1456), - [anon_sym_if] = ACTIONS(1827), - [anon_sym_DOLLARif] = ACTIONS(1460), - [anon_sym_match] = ACTIONS(1462), - [anon_sym_select] = ACTIONS(1829), - [anon_sym_lock] = ACTIONS(1831), - [anon_sym_rlock] = ACTIONS(1831), - [anon_sym_unsafe] = ACTIONS(1833), - [anon_sym_sql] = ACTIONS(1470), - [sym_int_literal] = ACTIONS(1456), - [sym_float_literal] = ACTIONS(1472), - [sym_rune_literal] = ACTIONS(1472), - [sym_pseudo_compile_time_identifier] = ACTIONS(1474), + [anon_sym_BANG] = ACTIONS(1444), + [anon_sym_go] = ACTIONS(1446), + [anon_sym_spawn] = ACTIONS(1448), + [anon_sym_json_DOTdecode] = ACTIONS(1450), + [anon_sym_LBRACK2] = ACTIONS(1452), + [anon_sym_TILDE] = ACTIONS(1438), + [anon_sym_CARET] = ACTIONS(1438), + [anon_sym_AMP] = ACTIONS(1454), + [anon_sym_LT_DASH] = ACTIONS(1456), + [sym_none] = ACTIONS(1458), + [sym_true] = ACTIONS(1458), + [sym_false] = ACTIONS(1458), + [sym_nil] = ACTIONS(1458), + [anon_sym_if] = ACTIONS(1833), + [anon_sym_DOLLARif] = ACTIONS(1462), + [anon_sym_match] = ACTIONS(1464), + [anon_sym_select] = ACTIONS(1466), + [anon_sym_lock] = ACTIONS(1468), + [anon_sym_rlock] = ACTIONS(1468), + [anon_sym_unsafe] = ACTIONS(1839), + [anon_sym_sql] = ACTIONS(1472), + [sym_int_literal] = ACTIONS(1458), + [sym_float_literal] = ACTIONS(1474), + [sym_rune_literal] = ACTIONS(1474), + [sym_pseudo_compile_time_identifier] = ACTIONS(1476), [anon_sym_shared] = ACTIONS(83), [anon_sym_map_LBRACK] = ACTIONS(85), [anon_sym_chan] = ACTIONS(87), [anon_sym_thread] = ACTIONS(89), [anon_sym_atomic] = ACTIONS(91), - [sym___double_quote] = ACTIONS(1478), - [sym___single_quote] = ACTIONS(1480), - [sym___c_double_quote] = ACTIONS(1482), - [sym___c_single_quote] = ACTIONS(1484), - [sym___r_double_quote] = ACTIONS(1486), - [sym___r_single_quote] = ACTIONS(1488), + [sym___double_quote] = ACTIONS(1480), + [sym___single_quote] = ACTIONS(1482), + [sym___c_double_quote] = ACTIONS(1484), + [sym___c_single_quote] = ACTIONS(1486), + [sym___r_double_quote] = ACTIONS(1488), + [sym___r_single_quote] = ACTIONS(1490), }, [300] = { [sym_line_comment] = STATE(300), [sym_block_comment] = STATE(300), - [sym__expression] = STATE(2716), - [sym__expression_without_blocks] = STATE(2300), - [sym__expression_with_blocks] = STATE(2300), - [sym_inc_expression] = STATE(2307), - [sym_dec_expression] = STATE(2307), - [sym_or_block_expression] = STATE(2307), - [sym_option_propagation_expression] = STATE(2307), - [sym_result_propagation_expression] = STATE(2307), - [sym_anon_struct_value_expression] = STATE(2380), - [sym_go_expression] = STATE(2307), - [sym_spawn_expression] = STATE(2307), - [sym_parenthesized_expression] = STATE(2307), - [sym_call_expression] = STATE(2307), - [sym_type_initializer] = STATE(2380), - [sym_function_literal] = STATE(2307), - [sym_reference_expression] = STATE(2311), - [sym_type_reference_expression] = STATE(3541), - [sym_unary_expression] = STATE(2307), - [sym_receive_expression] = STATE(2307), - [sym_binary_expression] = STATE(2307), - [sym_as_type_cast_expression] = STATE(2307), - [sym__max_group] = STATE(2307), - [sym_literal] = STATE(2292), - [sym_map_init_expression] = STATE(2380), - [sym_map_keyed_element] = STATE(2001), - [sym_array_creation] = STATE(2307), - [sym_fixed_array_creation] = STATE(2307), - [sym_selector_expression] = STATE(2307), - [sym_index_expression] = STATE(2307), - [sym_slice_expression] = STATE(2307), - [sym_if_expression] = STATE(2380), - [sym_compile_time_if_expression] = STATE(2380), - [sym_is_expression] = STATE(2307), - [sym_in_expression] = STATE(2307), - [sym_enum_fetch] = STATE(2307), - [sym_match_expression] = STATE(2380), - [sym_select_expression] = STATE(2380), - [sym_lock_expression] = STATE(2380), - [sym_unsafe_expression] = STATE(2380), - [sym_sql_expression] = STATE(2380), - [sym_c_string_literal] = STATE(2308), - [sym_raw_string_literal] = STATE(2308), - [sym_interpreted_string_literal] = STATE(2308), - [sym_mutability_modifiers] = STATE(939), - [sym_plain_type] = STATE(4297), - [sym__plain_type_without_special] = STATE(2302), - [sym_anon_struct_type] = STATE(2303), - [sym_multi_return_type] = STATE(2302), - [sym_result_type] = STATE(2302), - [sym_option_type] = STATE(2302), - [sym_qualified_type] = STATE(3541), - [sym_fixed_array_type] = STATE(2303), - [sym_array_type] = STATE(2303), - [sym_pointer_type] = STATE(2303), - [sym_wrong_pointer_type] = STATE(2303), - [sym_map_type] = STATE(2303), - [sym_channel_type] = STATE(2303), - [sym_shared_type] = STATE(2303), - [sym_thread_type] = STATE(2303), - [sym_atomic_type] = STATE(2303), - [sym_generic_type] = STATE(2303), - [sym_function_type] = STATE(2303), - [aux_sym_map_init_expression_repeat1] = STATE(246), - [sym_identifier] = ACTIONS(1426), - [anon_sym_SLASH_SLASH] = ACTIONS(3), - [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1428), - [anon_sym_LBRACE] = ACTIONS(1430), - [anon_sym_RBRACE] = ACTIONS(2097), - [anon_sym_LPAREN] = ACTIONS(1432), - [anon_sym_fn] = ACTIONS(1434), - [anon_sym_PLUS] = ACTIONS(1436), - [anon_sym_DASH] = ACTIONS(1436), - [anon_sym_STAR] = ACTIONS(1438), - [anon_sym_struct] = ACTIONS(1440), - [anon_sym_mut] = ACTIONS(41), - [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(1442), - [anon_sym_go] = ACTIONS(1444), - [anon_sym_spawn] = ACTIONS(1446), - [anon_sym_json_DOTdecode] = ACTIONS(1448), - [anon_sym_LBRACK2] = ACTIONS(1450), - [anon_sym_TILDE] = ACTIONS(1436), - [anon_sym_CARET] = ACTIONS(1436), - [anon_sym_AMP] = ACTIONS(1452), - [anon_sym_LT_DASH] = ACTIONS(1454), - [sym_none] = ACTIONS(1456), - [sym_true] = ACTIONS(1456), - [sym_false] = ACTIONS(1456), - [sym_nil] = ACTIONS(1456), - [anon_sym_if] = ACTIONS(1827), - [anon_sym_DOLLARif] = ACTIONS(1460), - [anon_sym_match] = ACTIONS(1462), - [anon_sym_select] = ACTIONS(1464), - [anon_sym_lock] = ACTIONS(1466), - [anon_sym_rlock] = ACTIONS(1466), - [anon_sym_unsafe] = ACTIONS(1833), - [anon_sym_sql] = ACTIONS(1470), - [sym_int_literal] = ACTIONS(1456), - [sym_float_literal] = ACTIONS(1472), - [sym_rune_literal] = ACTIONS(1472), - [sym_pseudo_compile_time_identifier] = ACTIONS(1474), - [anon_sym_shared] = ACTIONS(83), - [anon_sym_map_LBRACK] = ACTIONS(85), - [anon_sym_chan] = ACTIONS(87), - [anon_sym_thread] = ACTIONS(89), - [anon_sym_atomic] = ACTIONS(91), - [sym___double_quote] = ACTIONS(1478), - [sym___single_quote] = ACTIONS(1480), - [sym___c_double_quote] = ACTIONS(1482), - [sym___c_single_quote] = ACTIONS(1484), - [sym___r_double_quote] = ACTIONS(1486), - [sym___r_single_quote] = ACTIONS(1488), + [ts_builtin_sym_end] = ACTIONS(1807), + [sym_identifier] = ACTIONS(1809), + [anon_sym_LF] = ACTIONS(1809), + [anon_sym_CR] = ACTIONS(1809), + [anon_sym_CR_LF] = ACTIONS(1809), + [anon_sym_SLASH_SLASH] = ACTIONS(497), + [anon_sym_SLASH_STAR] = ACTIONS(499), + [anon_sym_SEMI] = ACTIONS(1987), + [anon_sym_DOT] = ACTIONS(1809), + [anon_sym_as] = ACTIONS(1987), + [anon_sym_LBRACE] = ACTIONS(1809), + [anon_sym_COMMA] = ACTIONS(1987), + [anon_sym_const] = ACTIONS(1809), + [anon_sym_LPAREN] = ACTIONS(1809), + [anon_sym_EQ] = ACTIONS(1987), + [anon_sym___global] = ACTIONS(1809), + [anon_sym_type] = ACTIONS(1809), + [anon_sym_PIPE] = ACTIONS(1987), + [anon_sym_fn] = ACTIONS(1809), + [anon_sym_PLUS] = ACTIONS(1809), + [anon_sym_DASH] = ACTIONS(1809), + [anon_sym_STAR] = ACTIONS(1809), + [anon_sym_SLASH] = ACTIONS(1987), + [anon_sym_PERCENT] = ACTIONS(1987), + [anon_sym_LT] = ACTIONS(1987), + [anon_sym_GT] = ACTIONS(1987), + [anon_sym_EQ_EQ] = ACTIONS(1987), + [anon_sym_BANG_EQ] = ACTIONS(1987), + [anon_sym_LT_EQ] = ACTIONS(1987), + [anon_sym_GT_EQ] = ACTIONS(1987), + [anon_sym_LBRACK] = ACTIONS(1989), + [anon_sym_struct] = ACTIONS(1809), + [anon_sym_union] = ACTIONS(1809), + [anon_sym_pub] = ACTIONS(1809), + [anon_sym_mut] = ACTIONS(1809), + [anon_sym_enum] = ACTIONS(1809), + [anon_sym_interface] = ACTIONS(1809), + [anon_sym_PLUS_PLUS] = ACTIONS(1987), + [anon_sym_DASH_DASH] = ACTIONS(1987), + [anon_sym_QMARK] = ACTIONS(1809), + [anon_sym_BANG] = ACTIONS(1809), + [anon_sym_go] = ACTIONS(1809), + [anon_sym_spawn] = ACTIONS(1809), + [anon_sym_json_DOTdecode] = ACTIONS(1809), + [anon_sym_LBRACK2] = ACTIONS(1809), + [anon_sym_TILDE] = ACTIONS(1809), + [anon_sym_CARET] = ACTIONS(1809), + [anon_sym_AMP] = ACTIONS(1809), + [anon_sym_LT_DASH] = ACTIONS(1809), + [anon_sym_LT_LT] = ACTIONS(1987), + [anon_sym_GT_GT] = ACTIONS(1987), + [anon_sym_GT_GT_GT] = ACTIONS(1987), + [anon_sym_AMP_CARET] = ACTIONS(1987), + [anon_sym_AMP_AMP] = ACTIONS(1987), + [anon_sym_PIPE_PIPE] = ACTIONS(1987), + [anon_sym_or] = ACTIONS(1987), + [sym_none] = ACTIONS(1809), + [sym_true] = ACTIONS(1809), + [sym_false] = ACTIONS(1809), + [sym_nil] = ACTIONS(1809), + [anon_sym_QMARK_DOT] = ACTIONS(1987), + [anon_sym_POUND_LBRACK] = ACTIONS(1987), + [anon_sym_if] = ACTIONS(1809), + [anon_sym_DOLLARif] = ACTIONS(1809), + [anon_sym_is] = ACTIONS(1987), + [anon_sym_BANGis] = ACTIONS(1987), + [anon_sym_in] = ACTIONS(1987), + [anon_sym_BANGin] = ACTIONS(1987), + [anon_sym_match] = ACTIONS(1809), + [anon_sym_select] = ACTIONS(1809), + [anon_sym_STAR_EQ] = ACTIONS(1987), + [anon_sym_SLASH_EQ] = ACTIONS(1987), + [anon_sym_PERCENT_EQ] = ACTIONS(1987), + [anon_sym_LT_LT_EQ] = ACTIONS(1987), + [anon_sym_GT_GT_EQ] = ACTIONS(1987), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(1987), + [anon_sym_AMP_EQ] = ACTIONS(1987), + [anon_sym_AMP_CARET_EQ] = ACTIONS(1987), + [anon_sym_PLUS_EQ] = ACTIONS(1987), + [anon_sym_DASH_EQ] = ACTIONS(1987), + [anon_sym_PIPE_EQ] = ACTIONS(1987), + [anon_sym_CARET_EQ] = ACTIONS(1987), + [anon_sym_COLON_EQ] = ACTIONS(1987), + [anon_sym_lock] = ACTIONS(1809), + [anon_sym_rlock] = ACTIONS(1809), + [anon_sym_unsafe] = ACTIONS(1809), + [anon_sym_sql] = ACTIONS(1809), + [sym_int_literal] = ACTIONS(1809), + [sym_float_literal] = ACTIONS(1809), + [sym_rune_literal] = ACTIONS(1809), + [sym_pseudo_compile_time_identifier] = ACTIONS(1809), + [anon_sym_shared] = ACTIONS(1809), + [anon_sym_map_LBRACK] = ACTIONS(1809), + [anon_sym_chan] = ACTIONS(1809), + [anon_sym_thread] = ACTIONS(1809), + [anon_sym_atomic] = ACTIONS(1809), + [anon_sym_assert] = ACTIONS(1809), + [anon_sym_defer] = ACTIONS(1809), + [anon_sym_goto] = ACTIONS(1809), + [anon_sym_break] = ACTIONS(1809), + [anon_sym_continue] = ACTIONS(1809), + [anon_sym_return] = ACTIONS(1809), + [anon_sym_DOLLARfor] = ACTIONS(1809), + [anon_sym_for] = ACTIONS(1809), + [anon_sym_POUND] = ACTIONS(1809), + [anon_sym_asm] = ACTIONS(1809), + [anon_sym_AT_LBRACK] = ACTIONS(1809), + [sym___double_quote] = ACTIONS(1809), + [sym___single_quote] = ACTIONS(1809), + [sym___c_double_quote] = ACTIONS(1809), + [sym___c_single_quote] = ACTIONS(1809), + [sym___r_double_quote] = ACTIONS(1809), + [sym___r_single_quote] = ACTIONS(1809), }, [301] = { [sym_line_comment] = STATE(301), [sym_block_comment] = STATE(301), - [sym__expression] = STATE(2716), - [sym__expression_without_blocks] = STATE(2300), - [sym__expression_with_blocks] = STATE(2300), - [sym_inc_expression] = STATE(2307), - [sym_dec_expression] = STATE(2307), - [sym_or_block_expression] = STATE(2307), - [sym_option_propagation_expression] = STATE(2307), - [sym_result_propagation_expression] = STATE(2307), - [sym_anon_struct_value_expression] = STATE(2380), - [sym_go_expression] = STATE(2307), - [sym_spawn_expression] = STATE(2307), - [sym_parenthesized_expression] = STATE(2307), - [sym_call_expression] = STATE(2307), - [sym_type_initializer] = STATE(2380), - [sym_function_literal] = STATE(2307), - [sym_reference_expression] = STATE(2311), - [sym_type_reference_expression] = STATE(3541), - [sym_unary_expression] = STATE(2307), - [sym_receive_expression] = STATE(2307), - [sym_binary_expression] = STATE(2307), - [sym_as_type_cast_expression] = STATE(2307), - [sym__max_group] = STATE(2307), - [sym_literal] = STATE(2292), - [sym_map_init_expression] = STATE(2380), - [sym_map_keyed_element] = STATE(2001), - [sym_array_creation] = STATE(2307), - [sym_fixed_array_creation] = STATE(2307), - [sym_selector_expression] = STATE(2307), - [sym_index_expression] = STATE(2307), - [sym_slice_expression] = STATE(2307), - [sym_if_expression] = STATE(2380), - [sym_compile_time_if_expression] = STATE(2380), - [sym_is_expression] = STATE(2307), - [sym_in_expression] = STATE(2307), - [sym_enum_fetch] = STATE(2307), - [sym_match_expression] = STATE(2380), - [sym_select_expression] = STATE(2380), - [sym_lock_expression] = STATE(2380), - [sym_unsafe_expression] = STATE(2380), - [sym_sql_expression] = STATE(2380), - [sym_c_string_literal] = STATE(2308), - [sym_raw_string_literal] = STATE(2308), - [sym_interpreted_string_literal] = STATE(2308), - [sym_mutability_modifiers] = STATE(939), - [sym_plain_type] = STATE(4297), - [sym__plain_type_without_special] = STATE(2302), - [sym_anon_struct_type] = STATE(2303), - [sym_multi_return_type] = STATE(2302), - [sym_result_type] = STATE(2302), - [sym_option_type] = STATE(2302), - [sym_qualified_type] = STATE(3541), - [sym_fixed_array_type] = STATE(2303), - [sym_array_type] = STATE(2303), - [sym_pointer_type] = STATE(2303), - [sym_wrong_pointer_type] = STATE(2303), - [sym_map_type] = STATE(2303), - [sym_channel_type] = STATE(2303), - [sym_shared_type] = STATE(2303), - [sym_thread_type] = STATE(2303), - [sym_atomic_type] = STATE(2303), - [sym_generic_type] = STATE(2303), - [sym_function_type] = STATE(2303), - [aux_sym_map_init_expression_repeat1] = STATE(294), - [sym_identifier] = ACTIONS(1426), + [sym__expression] = STATE(2297), + [sym__expression_without_blocks] = STATE(2347), + [sym__expression_with_blocks] = STATE(2347), + [sym_inc_expression] = STATE(2379), + [sym_dec_expression] = STATE(2379), + [sym_or_block_expression] = STATE(2379), + [sym_option_propagation_expression] = STATE(2379), + [sym_result_propagation_expression] = STATE(2379), + [sym_anon_struct_value_expression] = STATE(2378), + [sym_go_expression] = STATE(2379), + [sym_spawn_expression] = STATE(2379), + [sym_parenthesized_expression] = STATE(2379), + [sym_call_expression] = STATE(2379), + [sym_type_initializer] = STATE(2378), + [sym_function_literal] = STATE(2379), + [sym_reference_expression] = STATE(2377), + [sym_type_reference_expression] = STATE(3460), + [sym_unary_expression] = STATE(2379), + [sym_receive_expression] = STATE(2379), + [sym_binary_expression] = STATE(2379), + [sym_as_type_cast_expression] = STATE(2379), + [sym__max_group] = STATE(2379), + [sym_literal] = STATE(2392), + [sym_map_init_expression] = STATE(2378), + [sym_array_creation] = STATE(2379), + [sym_fixed_array_creation] = STATE(2379), + [sym_selector_expression] = STATE(2379), + [sym_index_expression] = STATE(2379), + [sym_slice_expression] = STATE(2379), + [sym_if_expression] = STATE(2378), + [sym_compile_time_if_expression] = STATE(2378), + [sym_is_expression] = STATE(2379), + [sym_in_expression] = STATE(2379), + [sym_enum_fetch] = STATE(2379), + [sym_match_expression] = STATE(2378), + [sym_select_expression] = STATE(2378), + [sym_lock_expression] = STATE(2378), + [sym_unsafe_expression] = STATE(2378), + [sym_sql_expression] = STATE(2378), + [sym_c_string_literal] = STATE(2401), + [sym_raw_string_literal] = STATE(2401), + [sym_interpreted_string_literal] = STATE(2401), + [sym_mutability_modifiers] = STATE(893), + [sym_mutable_expression] = STATE(3871), + [sym_expression_list] = STATE(4483), + [sym_plain_type] = STATE(4160), + [sym__plain_type_without_special] = STATE(2360), + [sym_anon_struct_type] = STATE(2362), + [sym_multi_return_type] = STATE(2360), + [sym_result_type] = STATE(2360), + [sym_option_type] = STATE(2360), + [sym_qualified_type] = STATE(3460), + [sym_fixed_array_type] = STATE(2362), + [sym_array_type] = STATE(2362), + [sym_pointer_type] = STATE(2362), + [sym_wrong_pointer_type] = STATE(2362), + [sym_map_type] = STATE(2362), + [sym_channel_type] = STATE(2362), + [sym_shared_type] = STATE(2362), + [sym_thread_type] = STATE(2362), + [sym_atomic_type] = STATE(2362), + [sym_generic_type] = STATE(2362), + [sym_function_type] = STATE(2362), + [sym_var_declaration] = STATE(4230), + [sym_identifier] = ACTIONS(1815), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1428), - [anon_sym_LBRACE] = ACTIONS(1430), - [anon_sym_RBRACE] = ACTIONS(2099), - [anon_sym_LPAREN] = ACTIONS(1432), - [anon_sym_fn] = ACTIONS(1434), - [anon_sym_PLUS] = ACTIONS(1436), - [anon_sym_DASH] = ACTIONS(1436), - [anon_sym_STAR] = ACTIONS(1438), - [anon_sym_struct] = ACTIONS(1440), + [anon_sym_DOT] = ACTIONS(1430), + [anon_sym_LBRACE] = ACTIONS(1432), + [anon_sym_LPAREN] = ACTIONS(1434), + [anon_sym_fn] = ACTIONS(1436), + [anon_sym_PLUS] = ACTIONS(1817), + [anon_sym_DASH] = ACTIONS(1817), + [anon_sym_STAR] = ACTIONS(1819), + [anon_sym_struct] = ACTIONS(1442), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(1442), - [anon_sym_go] = ACTIONS(1444), - [anon_sym_spawn] = ACTIONS(1446), - [anon_sym_json_DOTdecode] = ACTIONS(1448), - [anon_sym_LBRACK2] = ACTIONS(1450), - [anon_sym_TILDE] = ACTIONS(1436), - [anon_sym_CARET] = ACTIONS(1436), - [anon_sym_AMP] = ACTIONS(1452), - [anon_sym_LT_DASH] = ACTIONS(1454), - [sym_none] = ACTIONS(1456), - [sym_true] = ACTIONS(1456), - [sym_false] = ACTIONS(1456), - [sym_nil] = ACTIONS(1456), - [anon_sym_if] = ACTIONS(1827), - [anon_sym_DOLLARif] = ACTIONS(1460), - [anon_sym_match] = ACTIONS(1462), - [anon_sym_select] = ACTIONS(1464), - [anon_sym_lock] = ACTIONS(1466), - [anon_sym_rlock] = ACTIONS(1466), - [anon_sym_unsafe] = ACTIONS(1833), - [anon_sym_sql] = ACTIONS(1470), - [sym_int_literal] = ACTIONS(1456), - [sym_float_literal] = ACTIONS(1472), - [sym_rune_literal] = ACTIONS(1472), - [sym_pseudo_compile_time_identifier] = ACTIONS(1474), + [anon_sym_BANG] = ACTIONS(1821), + [anon_sym_go] = ACTIONS(1823), + [anon_sym_spawn] = ACTIONS(1825), + [anon_sym_json_DOTdecode] = ACTIONS(1450), + [anon_sym_LBRACK2] = ACTIONS(1827), + [anon_sym_TILDE] = ACTIONS(1817), + [anon_sym_CARET] = ACTIONS(1817), + [anon_sym_AMP] = ACTIONS(1829), + [anon_sym_LT_DASH] = ACTIONS(1831), + [sym_none] = ACTIONS(1458), + [sym_true] = ACTIONS(1458), + [sym_false] = ACTIONS(1458), + [sym_nil] = ACTIONS(1458), + [anon_sym_if] = ACTIONS(1833), + [anon_sym_DOLLARif] = ACTIONS(1462), + [anon_sym_match] = ACTIONS(1464), + [anon_sym_select] = ACTIONS(1835), + [anon_sym_lock] = ACTIONS(1837), + [anon_sym_rlock] = ACTIONS(1837), + [anon_sym_unsafe] = ACTIONS(1839), + [anon_sym_sql] = ACTIONS(1472), + [sym_int_literal] = ACTIONS(1458), + [sym_float_literal] = ACTIONS(1474), + [sym_rune_literal] = ACTIONS(1474), + [sym_pseudo_compile_time_identifier] = ACTIONS(1476), [anon_sym_shared] = ACTIONS(83), [anon_sym_map_LBRACK] = ACTIONS(85), [anon_sym_chan] = ACTIONS(87), [anon_sym_thread] = ACTIONS(89), [anon_sym_atomic] = ACTIONS(91), - [sym___double_quote] = ACTIONS(1478), - [sym___single_quote] = ACTIONS(1480), - [sym___c_double_quote] = ACTIONS(1482), - [sym___c_single_quote] = ACTIONS(1484), - [sym___r_double_quote] = ACTIONS(1486), - [sym___r_single_quote] = ACTIONS(1488), + [sym___double_quote] = ACTIONS(1480), + [sym___single_quote] = ACTIONS(1482), + [sym___c_double_quote] = ACTIONS(1484), + [sym___c_single_quote] = ACTIONS(1486), + [sym___r_double_quote] = ACTIONS(1488), + [sym___r_single_quote] = ACTIONS(1490), }, [302] = { [sym_line_comment] = STATE(302), [sym_block_comment] = STATE(302), - [sym__expression] = STATE(2455), - [sym__expression_without_blocks] = STATE(2300), - [sym__expression_with_blocks] = STATE(2300), - [sym_inc_expression] = STATE(2307), - [sym_dec_expression] = STATE(2307), - [sym_or_block_expression] = STATE(2307), - [sym_option_propagation_expression] = STATE(2307), - [sym_result_propagation_expression] = STATE(2307), - [sym_anon_struct_value_expression] = STATE(2380), - [sym_go_expression] = STATE(2307), - [sym_spawn_expression] = STATE(2307), - [sym_parenthesized_expression] = STATE(2307), - [sym_call_expression] = STATE(2307), - [sym_type_initializer] = STATE(2380), - [sym_function_literal] = STATE(2307), - [sym_reference_expression] = STATE(2311), - [sym_type_reference_expression] = STATE(3541), - [sym_unary_expression] = STATE(2307), - [sym_receive_expression] = STATE(2307), - [sym_binary_expression] = STATE(2307), - [sym_as_type_cast_expression] = STATE(2307), - [sym__max_group] = STATE(2307), - [sym_literal] = STATE(2292), - [sym_map_init_expression] = STATE(2380), - [sym_array_creation] = STATE(2307), - [sym_fixed_array_creation] = STATE(2307), - [sym_selector_expression] = STATE(2307), - [sym_index_expression] = STATE(2307), - [sym_slice_expression] = STATE(2307), - [sym_if_expression] = STATE(2380), - [sym_compile_time_if_expression] = STATE(2380), - [sym_is_expression] = STATE(2307), - [sym_in_expression] = STATE(2307), - [sym_enum_fetch] = STATE(2307), - [sym_match_expression] = STATE(2380), - [sym_select_expression] = STATE(2380), - [sym_lock_expression] = STATE(2380), - [sym_unsafe_expression] = STATE(2380), - [sym_sql_expression] = STATE(2380), - [sym_c_string_literal] = STATE(2308), - [sym_raw_string_literal] = STATE(2308), - [sym_interpreted_string_literal] = STATE(2308), - [sym_mutability_modifiers] = STATE(824), - [sym_mutable_expression] = STATE(3922), - [sym_expression_list] = STATE(4163), - [sym_plain_type] = STATE(4297), - [sym__plain_type_without_special] = STATE(2302), - [sym_anon_struct_type] = STATE(2303), - [sym_multi_return_type] = STATE(2302), - [sym_result_type] = STATE(2302), - [sym_option_type] = STATE(2302), - [sym_qualified_type] = STATE(3541), - [sym_fixed_array_type] = STATE(2303), - [sym_array_type] = STATE(2303), - [sym_pointer_type] = STATE(2303), - [sym_wrong_pointer_type] = STATE(2303), - [sym_map_type] = STATE(2303), - [sym_channel_type] = STATE(2303), - [sym_shared_type] = STATE(2303), - [sym_thread_type] = STATE(2303), - [sym_atomic_type] = STATE(2303), - [sym_generic_type] = STATE(2303), - [sym_function_type] = STATE(2303), - [sym_block] = STATE(2387), - [sym_identifier] = ACTIONS(1807), + [sym__expression] = STATE(2307), + [sym__expression_without_blocks] = STATE(2347), + [sym__expression_with_blocks] = STATE(2347), + [sym_inc_expression] = STATE(2379), + [sym_dec_expression] = STATE(2379), + [sym_or_block_expression] = STATE(2379), + [sym_option_propagation_expression] = STATE(2379), + [sym_result_propagation_expression] = STATE(2379), + [sym_anon_struct_value_expression] = STATE(2378), + [sym_go_expression] = STATE(2379), + [sym_spawn_expression] = STATE(2379), + [sym_parenthesized_expression] = STATE(2379), + [sym_call_expression] = STATE(2379), + [sym_type_initializer] = STATE(2378), + [sym_function_literal] = STATE(2379), + [sym_reference_expression] = STATE(2614), + [sym_type_reference_expression] = STATE(3460), + [sym_unary_expression] = STATE(2379), + [sym_receive_expression] = STATE(2379), + [sym_binary_expression] = STATE(2379), + [sym_as_type_cast_expression] = STATE(2379), + [sym__max_group] = STATE(2379), + [sym_literal] = STATE(2392), + [sym_map_init_expression] = STATE(2378), + [sym_array_creation] = STATE(2379), + [sym_fixed_array_creation] = STATE(2379), + [sym_selector_expression] = STATE(2379), + [sym_index_expression] = STATE(2379), + [sym_slice_expression] = STATE(2379), + [sym_if_expression] = STATE(2378), + [sym_compile_time_if_expression] = STATE(2378), + [sym_is_expression] = STATE(2379), + [sym_in_expression] = STATE(2379), + [sym_enum_fetch] = STATE(2379), + [sym_match_expression] = STATE(2378), + [sym_select_expression] = STATE(2378), + [sym_lock_expression] = STATE(2378), + [sym_unsafe_expression] = STATE(2378), + [sym_sql_expression] = STATE(2378), + [sym_c_string_literal] = STATE(2401), + [sym_raw_string_literal] = STATE(2401), + [sym_interpreted_string_literal] = STATE(2401), + [sym_mutability_modifiers] = STATE(893), + [sym_mutable_expression] = STATE(3871), + [sym_expression_list] = STATE(4483), + [sym_plain_type] = STATE(4160), + [sym__plain_type_without_special] = STATE(2360), + [sym_anon_struct_type] = STATE(2362), + [sym_multi_return_type] = STATE(2360), + [sym_result_type] = STATE(2360), + [sym_option_type] = STATE(2360), + [sym_qualified_type] = STATE(3460), + [sym_fixed_array_type] = STATE(2362), + [sym_array_type] = STATE(2362), + [sym_pointer_type] = STATE(2362), + [sym_wrong_pointer_type] = STATE(2362), + [sym_map_type] = STATE(2362), + [sym_channel_type] = STATE(2362), + [sym_shared_type] = STATE(2362), + [sym_thread_type] = STATE(2362), + [sym_atomic_type] = STATE(2362), + [sym_generic_type] = STATE(2362), + [sym_function_type] = STATE(2362), + [sym_var_declaration] = STATE(4015), + [sym_identifier] = ACTIONS(1815), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1428), - [anon_sym_LBRACE] = ACTIONS(2101), - [anon_sym_LPAREN] = ACTIONS(1432), - [anon_sym_fn] = ACTIONS(1434), - [anon_sym_PLUS] = ACTIONS(1811), - [anon_sym_DASH] = ACTIONS(1811), - [anon_sym_STAR] = ACTIONS(1813), - [anon_sym_struct] = ACTIONS(1440), + [anon_sym_DOT] = ACTIONS(1430), + [anon_sym_LBRACE] = ACTIONS(1432), + [anon_sym_LPAREN] = ACTIONS(1434), + [anon_sym_fn] = ACTIONS(1436), + [anon_sym_PLUS] = ACTIONS(1817), + [anon_sym_DASH] = ACTIONS(1817), + [anon_sym_STAR] = ACTIONS(1819), + [anon_sym_struct] = ACTIONS(1442), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(1815), - [anon_sym_go] = ACTIONS(1817), - [anon_sym_spawn] = ACTIONS(1819), - [anon_sym_json_DOTdecode] = ACTIONS(1448), - [anon_sym_LBRACK2] = ACTIONS(1821), - [anon_sym_TILDE] = ACTIONS(1811), - [anon_sym_CARET] = ACTIONS(1811), - [anon_sym_AMP] = ACTIONS(1823), - [anon_sym_LT_DASH] = ACTIONS(1825), - [sym_none] = ACTIONS(1456), - [sym_true] = ACTIONS(1456), - [sym_false] = ACTIONS(1456), - [sym_nil] = ACTIONS(1456), - [anon_sym_if] = ACTIONS(1827), - [anon_sym_DOLLARif] = ACTIONS(1460), - [anon_sym_match] = ACTIONS(1462), - [anon_sym_select] = ACTIONS(1829), - [anon_sym_lock] = ACTIONS(1831), - [anon_sym_rlock] = ACTIONS(1831), - [anon_sym_unsafe] = ACTIONS(1833), - [anon_sym_sql] = ACTIONS(1470), - [sym_int_literal] = ACTIONS(1456), - [sym_float_literal] = ACTIONS(1472), - [sym_rune_literal] = ACTIONS(1472), - [sym_pseudo_compile_time_identifier] = ACTIONS(1474), + [anon_sym_BANG] = ACTIONS(1821), + [anon_sym_go] = ACTIONS(1823), + [anon_sym_spawn] = ACTIONS(1825), + [anon_sym_json_DOTdecode] = ACTIONS(1450), + [anon_sym_LBRACK2] = ACTIONS(1827), + [anon_sym_TILDE] = ACTIONS(1817), + [anon_sym_CARET] = ACTIONS(1817), + [anon_sym_AMP] = ACTIONS(1829), + [anon_sym_LT_DASH] = ACTIONS(1831), + [sym_none] = ACTIONS(1458), + [sym_true] = ACTIONS(1458), + [sym_false] = ACTIONS(1458), + [sym_nil] = ACTIONS(1458), + [anon_sym_if] = ACTIONS(1833), + [anon_sym_DOLLARif] = ACTIONS(1462), + [anon_sym_match] = ACTIONS(1464), + [anon_sym_select] = ACTIONS(1835), + [anon_sym_lock] = ACTIONS(1837), + [anon_sym_rlock] = ACTIONS(1837), + [anon_sym_unsafe] = ACTIONS(1839), + [anon_sym_sql] = ACTIONS(1472), + [sym_int_literal] = ACTIONS(1458), + [sym_float_literal] = ACTIONS(1474), + [sym_rune_literal] = ACTIONS(1474), + [sym_pseudo_compile_time_identifier] = ACTIONS(1476), [anon_sym_shared] = ACTIONS(83), [anon_sym_map_LBRACK] = ACTIONS(85), [anon_sym_chan] = ACTIONS(87), [anon_sym_thread] = ACTIONS(89), [anon_sym_atomic] = ACTIONS(91), - [sym___double_quote] = ACTIONS(1478), - [sym___single_quote] = ACTIONS(1480), - [sym___c_double_quote] = ACTIONS(1482), - [sym___c_single_quote] = ACTIONS(1484), - [sym___r_double_quote] = ACTIONS(1486), - [sym___r_single_quote] = ACTIONS(1488), + [sym___double_quote] = ACTIONS(1480), + [sym___single_quote] = ACTIONS(1482), + [sym___c_double_quote] = ACTIONS(1484), + [sym___c_single_quote] = ACTIONS(1486), + [sym___r_double_quote] = ACTIONS(1488), + [sym___r_single_quote] = ACTIONS(1490), }, [303] = { [sym_line_comment] = STATE(303), [sym_block_comment] = STATE(303), - [sym__expression] = STATE(2455), - [sym__expression_without_blocks] = STATE(2300), - [sym__expression_with_blocks] = STATE(2300), - [sym_inc_expression] = STATE(2307), - [sym_dec_expression] = STATE(2307), - [sym_or_block_expression] = STATE(2307), - [sym_option_propagation_expression] = STATE(2307), - [sym_result_propagation_expression] = STATE(2307), - [sym_anon_struct_value_expression] = STATE(2380), - [sym_go_expression] = STATE(2307), - [sym_spawn_expression] = STATE(2307), - [sym_parenthesized_expression] = STATE(2307), - [sym_call_expression] = STATE(2307), - [sym_type_initializer] = STATE(2380), - [sym_function_literal] = STATE(2307), - [sym_reference_expression] = STATE(2311), - [sym_type_reference_expression] = STATE(3541), - [sym_unary_expression] = STATE(2307), - [sym_receive_expression] = STATE(2307), - [sym_binary_expression] = STATE(2307), - [sym_as_type_cast_expression] = STATE(2307), - [sym__max_group] = STATE(2307), - [sym_literal] = STATE(2292), - [sym_map_init_expression] = STATE(2380), - [sym_array_creation] = STATE(2307), - [sym_fixed_array_creation] = STATE(2307), - [sym_selector_expression] = STATE(2307), - [sym_index_expression] = STATE(2307), - [sym_slice_expression] = STATE(2307), - [sym_if_expression] = STATE(2380), - [sym_compile_time_if_expression] = STATE(2380), - [sym_is_expression] = STATE(2307), - [sym_in_expression] = STATE(2307), - [sym_enum_fetch] = STATE(2307), - [sym_match_expression] = STATE(2380), - [sym_select_expression] = STATE(2380), - [sym_lock_expression] = STATE(2380), - [sym_unsafe_expression] = STATE(2380), - [sym_sql_expression] = STATE(2380), - [sym_c_string_literal] = STATE(2308), - [sym_raw_string_literal] = STATE(2308), - [sym_interpreted_string_literal] = STATE(2308), - [sym_mutability_modifiers] = STATE(824), - [sym_mutable_expression] = STATE(3922), - [sym_expression_list] = STATE(4163), - [sym_plain_type] = STATE(4297), - [sym__plain_type_without_special] = STATE(2302), - [sym_anon_struct_type] = STATE(2303), - [sym_multi_return_type] = STATE(2302), - [sym_result_type] = STATE(2302), - [sym_option_type] = STATE(2302), - [sym_qualified_type] = STATE(3541), - [sym_fixed_array_type] = STATE(2303), - [sym_array_type] = STATE(2303), - [sym_pointer_type] = STATE(2303), - [sym_wrong_pointer_type] = STATE(2303), - [sym_map_type] = STATE(2303), - [sym_channel_type] = STATE(2303), - [sym_shared_type] = STATE(2303), - [sym_thread_type] = STATE(2303), - [sym_atomic_type] = STATE(2303), - [sym_generic_type] = STATE(2303), - [sym_function_type] = STATE(2303), - [sym_block] = STATE(2387), - [sym_identifier] = ACTIONS(1807), + [sym__expression] = STATE(2632), + [sym__expression_without_blocks] = STATE(2347), + [sym__expression_with_blocks] = STATE(2347), + [sym_inc_expression] = STATE(2379), + [sym_dec_expression] = STATE(2379), + [sym_or_block_expression] = STATE(2379), + [sym_option_propagation_expression] = STATE(2379), + [sym_result_propagation_expression] = STATE(2379), + [sym_anon_struct_value_expression] = STATE(2378), + [sym_go_expression] = STATE(2379), + [sym_spawn_expression] = STATE(2379), + [sym_parenthesized_expression] = STATE(2379), + [sym_call_expression] = STATE(2379), + [sym_type_initializer] = STATE(2378), + [sym_function_literal] = STATE(2379), + [sym_reference_expression] = STATE(2377), + [sym_type_reference_expression] = STATE(3460), + [sym_unary_expression] = STATE(2379), + [sym_receive_expression] = STATE(2379), + [sym_binary_expression] = STATE(2379), + [sym_as_type_cast_expression] = STATE(2379), + [sym__max_group] = STATE(2379), + [sym_literal] = STATE(2392), + [sym_map_init_expression] = STATE(2378), + [sym_map_keyed_element] = STATE(2004), + [sym_array_creation] = STATE(2379), + [sym_fixed_array_creation] = STATE(2379), + [sym_selector_expression] = STATE(2379), + [sym_index_expression] = STATE(2379), + [sym_slice_expression] = STATE(2379), + [sym_if_expression] = STATE(2378), + [sym_compile_time_if_expression] = STATE(2378), + [sym_is_expression] = STATE(2379), + [sym_in_expression] = STATE(2379), + [sym_enum_fetch] = STATE(2379), + [sym_match_expression] = STATE(2378), + [sym_select_expression] = STATE(2378), + [sym_lock_expression] = STATE(2378), + [sym_unsafe_expression] = STATE(2378), + [sym_sql_expression] = STATE(2378), + [sym_c_string_literal] = STATE(2401), + [sym_raw_string_literal] = STATE(2401), + [sym_interpreted_string_literal] = STATE(2401), + [sym_mutability_modifiers] = STATE(939), + [sym_plain_type] = STATE(4160), + [sym__plain_type_without_special] = STATE(2360), + [sym_anon_struct_type] = STATE(2362), + [sym_multi_return_type] = STATE(2360), + [sym_result_type] = STATE(2360), + [sym_option_type] = STATE(2360), + [sym_qualified_type] = STATE(3460), + [sym_fixed_array_type] = STATE(2362), + [sym_array_type] = STATE(2362), + [sym_pointer_type] = STATE(2362), + [sym_wrong_pointer_type] = STATE(2362), + [sym_map_type] = STATE(2362), + [sym_channel_type] = STATE(2362), + [sym_shared_type] = STATE(2362), + [sym_thread_type] = STATE(2362), + [sym_atomic_type] = STATE(2362), + [sym_generic_type] = STATE(2362), + [sym_function_type] = STATE(2362), + [aux_sym_map_init_expression_repeat1] = STATE(303), + [sym_identifier] = ACTIONS(1991), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1428), - [anon_sym_LBRACE] = ACTIONS(2103), - [anon_sym_LPAREN] = ACTIONS(1432), - [anon_sym_fn] = ACTIONS(1434), - [anon_sym_PLUS] = ACTIONS(1811), - [anon_sym_DASH] = ACTIONS(1811), - [anon_sym_STAR] = ACTIONS(1813), - [anon_sym_struct] = ACTIONS(1440), - [anon_sym_mut] = ACTIONS(41), - [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(1815), - [anon_sym_go] = ACTIONS(1817), - [anon_sym_spawn] = ACTIONS(1819), - [anon_sym_json_DOTdecode] = ACTIONS(1448), - [anon_sym_LBRACK2] = ACTIONS(1821), - [anon_sym_TILDE] = ACTIONS(1811), - [anon_sym_CARET] = ACTIONS(1811), - [anon_sym_AMP] = ACTIONS(1823), - [anon_sym_LT_DASH] = ACTIONS(1825), - [sym_none] = ACTIONS(1456), - [sym_true] = ACTIONS(1456), - [sym_false] = ACTIONS(1456), - [sym_nil] = ACTIONS(1456), - [anon_sym_if] = ACTIONS(1827), - [anon_sym_DOLLARif] = ACTIONS(1460), - [anon_sym_match] = ACTIONS(1462), - [anon_sym_select] = ACTIONS(1829), - [anon_sym_lock] = ACTIONS(1831), - [anon_sym_rlock] = ACTIONS(1831), - [anon_sym_unsafe] = ACTIONS(1833), - [anon_sym_sql] = ACTIONS(1470), - [sym_int_literal] = ACTIONS(1456), - [sym_float_literal] = ACTIONS(1472), - [sym_rune_literal] = ACTIONS(1472), - [sym_pseudo_compile_time_identifier] = ACTIONS(1474), - [anon_sym_shared] = ACTIONS(83), - [anon_sym_map_LBRACK] = ACTIONS(85), - [anon_sym_chan] = ACTIONS(87), - [anon_sym_thread] = ACTIONS(89), - [anon_sym_atomic] = ACTIONS(91), - [sym___double_quote] = ACTIONS(1478), - [sym___single_quote] = ACTIONS(1480), - [sym___c_double_quote] = ACTIONS(1482), - [sym___c_single_quote] = ACTIONS(1484), - [sym___r_double_quote] = ACTIONS(1486), - [sym___r_single_quote] = ACTIONS(1488), + [anon_sym_DOT] = ACTIONS(1994), + [anon_sym_LBRACE] = ACTIONS(1997), + [anon_sym_RBRACE] = ACTIONS(2000), + [anon_sym_LPAREN] = ACTIONS(2002), + [anon_sym_fn] = ACTIONS(2005), + [anon_sym_PLUS] = ACTIONS(2008), + [anon_sym_DASH] = ACTIONS(2008), + [anon_sym_STAR] = ACTIONS(2011), + [anon_sym_struct] = ACTIONS(2014), + [anon_sym_mut] = ACTIONS(2017), + [anon_sym_QMARK] = ACTIONS(2020), + [anon_sym_BANG] = ACTIONS(2023), + [anon_sym_go] = ACTIONS(2026), + [anon_sym_spawn] = ACTIONS(2029), + [anon_sym_json_DOTdecode] = ACTIONS(2032), + [anon_sym_LBRACK2] = ACTIONS(2035), + [anon_sym_TILDE] = ACTIONS(2008), + [anon_sym_CARET] = ACTIONS(2008), + [anon_sym_AMP] = ACTIONS(2038), + [anon_sym_LT_DASH] = ACTIONS(2041), + [sym_none] = ACTIONS(2044), + [sym_true] = ACTIONS(2044), + [sym_false] = ACTIONS(2044), + [sym_nil] = ACTIONS(2044), + [anon_sym_if] = ACTIONS(2047), + [anon_sym_DOLLARif] = ACTIONS(2050), + [anon_sym_match] = ACTIONS(2053), + [anon_sym_select] = ACTIONS(2056), + [anon_sym_lock] = ACTIONS(2059), + [anon_sym_rlock] = ACTIONS(2059), + [anon_sym_unsafe] = ACTIONS(2062), + [anon_sym_sql] = ACTIONS(2065), + [sym_int_literal] = ACTIONS(2044), + [sym_float_literal] = ACTIONS(2068), + [sym_rune_literal] = ACTIONS(2068), + [sym_pseudo_compile_time_identifier] = ACTIONS(2071), + [anon_sym_shared] = ACTIONS(2074), + [anon_sym_map_LBRACK] = ACTIONS(2077), + [anon_sym_chan] = ACTIONS(2080), + [anon_sym_thread] = ACTIONS(2083), + [anon_sym_atomic] = ACTIONS(2086), + [sym___double_quote] = ACTIONS(2089), + [sym___single_quote] = ACTIONS(2092), + [sym___c_double_quote] = ACTIONS(2095), + [sym___c_single_quote] = ACTIONS(2098), + [sym___r_double_quote] = ACTIONS(2101), + [sym___r_single_quote] = ACTIONS(2104), }, [304] = { [sym_line_comment] = STATE(304), [sym_block_comment] = STATE(304), - [sym__expression] = STATE(2716), - [sym__expression_without_blocks] = STATE(2300), - [sym__expression_with_blocks] = STATE(2300), - [sym_inc_expression] = STATE(2307), - [sym_dec_expression] = STATE(2307), - [sym_or_block_expression] = STATE(2307), - [sym_option_propagation_expression] = STATE(2307), - [sym_result_propagation_expression] = STATE(2307), - [sym_anon_struct_value_expression] = STATE(2380), - [sym_go_expression] = STATE(2307), - [sym_spawn_expression] = STATE(2307), - [sym_parenthesized_expression] = STATE(2307), - [sym_call_expression] = STATE(2307), - [sym_type_initializer] = STATE(2380), - [sym_function_literal] = STATE(2307), - [sym_reference_expression] = STATE(2311), - [sym_type_reference_expression] = STATE(3541), - [sym_unary_expression] = STATE(2307), - [sym_receive_expression] = STATE(2307), - [sym_binary_expression] = STATE(2307), - [sym_as_type_cast_expression] = STATE(2307), - [sym__max_group] = STATE(2307), - [sym_literal] = STATE(2292), - [sym_map_init_expression] = STATE(2380), - [sym_map_keyed_element] = STATE(2001), - [sym_array_creation] = STATE(2307), - [sym_fixed_array_creation] = STATE(2307), - [sym_selector_expression] = STATE(2307), - [sym_index_expression] = STATE(2307), - [sym_slice_expression] = STATE(2307), - [sym_if_expression] = STATE(2380), - [sym_compile_time_if_expression] = STATE(2380), - [sym_is_expression] = STATE(2307), - [sym_in_expression] = STATE(2307), - [sym_enum_fetch] = STATE(2307), - [sym_match_expression] = STATE(2380), - [sym_select_expression] = STATE(2380), - [sym_lock_expression] = STATE(2380), - [sym_unsafe_expression] = STATE(2380), - [sym_sql_expression] = STATE(2380), - [sym_c_string_literal] = STATE(2308), - [sym_raw_string_literal] = STATE(2308), - [sym_interpreted_string_literal] = STATE(2308), - [sym_mutability_modifiers] = STATE(939), - [sym_plain_type] = STATE(4297), - [sym__plain_type_without_special] = STATE(2302), - [sym_anon_struct_type] = STATE(2303), - [sym_multi_return_type] = STATE(2302), - [sym_result_type] = STATE(2302), - [sym_option_type] = STATE(2302), - [sym_qualified_type] = STATE(3541), - [sym_fixed_array_type] = STATE(2303), - [sym_array_type] = STATE(2303), - [sym_pointer_type] = STATE(2303), - [sym_wrong_pointer_type] = STATE(2303), - [sym_map_type] = STATE(2303), - [sym_channel_type] = STATE(2303), - [sym_shared_type] = STATE(2303), - [sym_thread_type] = STATE(2303), - [sym_atomic_type] = STATE(2303), - [sym_generic_type] = STATE(2303), - [sym_function_type] = STATE(2303), - [aux_sym_map_init_expression_repeat1] = STATE(306), - [sym_identifier] = ACTIONS(1426), + [sym__expression] = STATE(2558), + [sym__expression_without_blocks] = STATE(2347), + [sym__expression_with_blocks] = STATE(2347), + [sym_inc_expression] = STATE(2379), + [sym_dec_expression] = STATE(2379), + [sym_or_block_expression] = STATE(2379), + [sym_option_propagation_expression] = STATE(2379), + [sym_result_propagation_expression] = STATE(2379), + [sym_anon_struct_value_expression] = STATE(2378), + [sym_go_expression] = STATE(2379), + [sym_spawn_expression] = STATE(2379), + [sym_parenthesized_expression] = STATE(2379), + [sym_call_expression] = STATE(2379), + [sym_type_initializer] = STATE(2378), + [sym_function_literal] = STATE(2379), + [sym_reference_expression] = STATE(2377), + [sym_type_reference_expression] = STATE(3460), + [sym_unary_expression] = STATE(2379), + [sym_receive_expression] = STATE(2379), + [sym_binary_expression] = STATE(2379), + [sym_as_type_cast_expression] = STATE(2379), + [sym__max_group] = STATE(2379), + [sym_literal] = STATE(2392), + [sym_map_init_expression] = STATE(2378), + [sym_array_creation] = STATE(2379), + [sym_fixed_array_creation] = STATE(2379), + [sym_selector_expression] = STATE(2379), + [sym_index_expression] = STATE(2379), + [sym_slice_expression] = STATE(2379), + [sym_if_expression] = STATE(2378), + [sym_compile_time_if_expression] = STATE(2378), + [sym_is_expression] = STATE(2379), + [sym_in_expression] = STATE(2379), + [sym_enum_fetch] = STATE(2379), + [sym_match_expression] = STATE(2378), + [sym_select_expression] = STATE(2378), + [sym_lock_expression] = STATE(2378), + [sym_unsafe_expression] = STATE(2378), + [sym_sql_expression] = STATE(2378), + [sym_c_string_literal] = STATE(2401), + [sym_raw_string_literal] = STATE(2401), + [sym_interpreted_string_literal] = STATE(2401), + [sym_mutability_modifiers] = STATE(900), + [sym_mutable_expression] = STATE(3813), + [sym_expression_list] = STATE(4068), + [sym_plain_type] = STATE(4160), + [sym__plain_type_without_special] = STATE(2360), + [sym_anon_struct_type] = STATE(2362), + [sym_multi_return_type] = STATE(2360), + [sym_result_type] = STATE(2360), + [sym_option_type] = STATE(2360), + [sym_qualified_type] = STATE(3460), + [sym_fixed_array_type] = STATE(2362), + [sym_array_type] = STATE(2362), + [sym_pointer_type] = STATE(2362), + [sym_wrong_pointer_type] = STATE(2362), + [sym_map_type] = STATE(2362), + [sym_channel_type] = STATE(2362), + [sym_shared_type] = STATE(2362), + [sym_thread_type] = STATE(2362), + [sym_atomic_type] = STATE(2362), + [sym_generic_type] = STATE(2362), + [sym_function_type] = STATE(2362), + [sym_block] = STATE(2626), + [sym_identifier] = ACTIONS(1815), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1428), - [anon_sym_LBRACE] = ACTIONS(1430), - [anon_sym_RBRACE] = ACTIONS(2105), - [anon_sym_LPAREN] = ACTIONS(1432), - [anon_sym_fn] = ACTIONS(1434), - [anon_sym_PLUS] = ACTIONS(1436), - [anon_sym_DASH] = ACTIONS(1436), - [anon_sym_STAR] = ACTIONS(1438), - [anon_sym_struct] = ACTIONS(1440), + [anon_sym_DOT] = ACTIONS(1430), + [anon_sym_LBRACE] = ACTIONS(2107), + [anon_sym_LPAREN] = ACTIONS(1434), + [anon_sym_fn] = ACTIONS(1436), + [anon_sym_PLUS] = ACTIONS(1817), + [anon_sym_DASH] = ACTIONS(1817), + [anon_sym_STAR] = ACTIONS(1819), + [anon_sym_struct] = ACTIONS(1442), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(1442), - [anon_sym_go] = ACTIONS(1444), - [anon_sym_spawn] = ACTIONS(1446), - [anon_sym_json_DOTdecode] = ACTIONS(1448), - [anon_sym_LBRACK2] = ACTIONS(1450), - [anon_sym_TILDE] = ACTIONS(1436), - [anon_sym_CARET] = ACTIONS(1436), - [anon_sym_AMP] = ACTIONS(1452), - [anon_sym_LT_DASH] = ACTIONS(1454), - [sym_none] = ACTIONS(1456), - [sym_true] = ACTIONS(1456), - [sym_false] = ACTIONS(1456), - [sym_nil] = ACTIONS(1456), - [anon_sym_if] = ACTIONS(1827), - [anon_sym_DOLLARif] = ACTIONS(1460), - [anon_sym_match] = ACTIONS(1462), - [anon_sym_select] = ACTIONS(1464), - [anon_sym_lock] = ACTIONS(1466), - [anon_sym_rlock] = ACTIONS(1466), - [anon_sym_unsafe] = ACTIONS(1833), - [anon_sym_sql] = ACTIONS(1470), - [sym_int_literal] = ACTIONS(1456), - [sym_float_literal] = ACTIONS(1472), - [sym_rune_literal] = ACTIONS(1472), - [sym_pseudo_compile_time_identifier] = ACTIONS(1474), + [anon_sym_BANG] = ACTIONS(1821), + [anon_sym_go] = ACTIONS(1823), + [anon_sym_spawn] = ACTIONS(1825), + [anon_sym_json_DOTdecode] = ACTIONS(1450), + [anon_sym_LBRACK2] = ACTIONS(1827), + [anon_sym_TILDE] = ACTIONS(1817), + [anon_sym_CARET] = ACTIONS(1817), + [anon_sym_AMP] = ACTIONS(1829), + [anon_sym_LT_DASH] = ACTIONS(1831), + [sym_none] = ACTIONS(1458), + [sym_true] = ACTIONS(1458), + [sym_false] = ACTIONS(1458), + [sym_nil] = ACTIONS(1458), + [anon_sym_if] = ACTIONS(1833), + [anon_sym_DOLLARif] = ACTIONS(1462), + [anon_sym_match] = ACTIONS(1464), + [anon_sym_select] = ACTIONS(1835), + [anon_sym_lock] = ACTIONS(1837), + [anon_sym_rlock] = ACTIONS(1837), + [anon_sym_unsafe] = ACTIONS(1839), + [anon_sym_sql] = ACTIONS(1472), + [sym_int_literal] = ACTIONS(1458), + [sym_float_literal] = ACTIONS(1474), + [sym_rune_literal] = ACTIONS(1474), + [sym_pseudo_compile_time_identifier] = ACTIONS(1476), [anon_sym_shared] = ACTIONS(83), [anon_sym_map_LBRACK] = ACTIONS(85), [anon_sym_chan] = ACTIONS(87), [anon_sym_thread] = ACTIONS(89), [anon_sym_atomic] = ACTIONS(91), - [sym___double_quote] = ACTIONS(1478), - [sym___single_quote] = ACTIONS(1480), - [sym___c_double_quote] = ACTIONS(1482), - [sym___c_single_quote] = ACTIONS(1484), - [sym___r_double_quote] = ACTIONS(1486), - [sym___r_single_quote] = ACTIONS(1488), + [sym___double_quote] = ACTIONS(1480), + [sym___single_quote] = ACTIONS(1482), + [sym___c_double_quote] = ACTIONS(1484), + [sym___c_single_quote] = ACTIONS(1486), + [sym___r_double_quote] = ACTIONS(1488), + [sym___r_single_quote] = ACTIONS(1490), }, [305] = { [sym_line_comment] = STATE(305), [sym_block_comment] = STATE(305), - [sym__expression] = STATE(2455), - [sym__expression_without_blocks] = STATE(2300), - [sym__expression_with_blocks] = STATE(2300), - [sym_inc_expression] = STATE(2307), - [sym_dec_expression] = STATE(2307), - [sym_or_block_expression] = STATE(2307), - [sym_option_propagation_expression] = STATE(2307), - [sym_result_propagation_expression] = STATE(2307), - [sym_anon_struct_value_expression] = STATE(2380), - [sym_go_expression] = STATE(2307), - [sym_spawn_expression] = STATE(2307), - [sym_parenthesized_expression] = STATE(2307), - [sym_call_expression] = STATE(2307), - [sym_type_initializer] = STATE(2380), - [sym_function_literal] = STATE(2307), - [sym_reference_expression] = STATE(2311), - [sym_type_reference_expression] = STATE(3541), - [sym_unary_expression] = STATE(2307), - [sym_receive_expression] = STATE(2307), - [sym_binary_expression] = STATE(2307), - [sym_as_type_cast_expression] = STATE(2307), - [sym__max_group] = STATE(2307), - [sym_literal] = STATE(2292), - [sym_map_init_expression] = STATE(2380), - [sym_array_creation] = STATE(2307), - [sym_fixed_array_creation] = STATE(2307), - [sym_selector_expression] = STATE(2307), - [sym_index_expression] = STATE(2307), - [sym_slice_expression] = STATE(2307), - [sym_if_expression] = STATE(2380), - [sym_compile_time_if_expression] = STATE(2380), - [sym_is_expression] = STATE(2307), - [sym_in_expression] = STATE(2307), - [sym_enum_fetch] = STATE(2307), - [sym_match_expression] = STATE(2380), - [sym_select_expression] = STATE(2380), - [sym_lock_expression] = STATE(2380), - [sym_unsafe_expression] = STATE(2380), - [sym_sql_expression] = STATE(2380), - [sym_c_string_literal] = STATE(2308), - [sym_raw_string_literal] = STATE(2308), - [sym_interpreted_string_literal] = STATE(2308), - [sym_mutability_modifiers] = STATE(824), - [sym_mutable_expression] = STATE(3922), - [sym_expression_list] = STATE(4218), - [sym_plain_type] = STATE(4297), - [sym__plain_type_without_special] = STATE(2302), - [sym_anon_struct_type] = STATE(2303), - [sym_multi_return_type] = STATE(2302), - [sym_result_type] = STATE(2302), - [sym_option_type] = STATE(2302), - [sym_qualified_type] = STATE(3541), - [sym_fixed_array_type] = STATE(2303), - [sym_array_type] = STATE(2303), - [sym_pointer_type] = STATE(2303), - [sym_wrong_pointer_type] = STATE(2303), - [sym_map_type] = STATE(2303), - [sym_channel_type] = STATE(2303), - [sym_shared_type] = STATE(2303), - [sym_thread_type] = STATE(2303), - [sym_atomic_type] = STATE(2303), - [sym_generic_type] = STATE(2303), - [sym_function_type] = STATE(2303), - [sym_block] = STATE(1208), - [sym_identifier] = ACTIONS(1807), + [sym__expression] = STATE(2558), + [sym__expression_without_blocks] = STATE(2347), + [sym__expression_with_blocks] = STATE(2347), + [sym_inc_expression] = STATE(2379), + [sym_dec_expression] = STATE(2379), + [sym_or_block_expression] = STATE(2379), + [sym_option_propagation_expression] = STATE(2379), + [sym_result_propagation_expression] = STATE(2379), + [sym_anon_struct_value_expression] = STATE(2378), + [sym_go_expression] = STATE(2379), + [sym_spawn_expression] = STATE(2379), + [sym_parenthesized_expression] = STATE(2379), + [sym_call_expression] = STATE(2379), + [sym_type_initializer] = STATE(2378), + [sym_function_literal] = STATE(2379), + [sym_reference_expression] = STATE(2377), + [sym_type_reference_expression] = STATE(3460), + [sym_unary_expression] = STATE(2379), + [sym_receive_expression] = STATE(2379), + [sym_binary_expression] = STATE(2379), + [sym_as_type_cast_expression] = STATE(2379), + [sym__max_group] = STATE(2379), + [sym_literal] = STATE(2392), + [sym_map_init_expression] = STATE(2378), + [sym_array_creation] = STATE(2379), + [sym_fixed_array_creation] = STATE(2379), + [sym_selector_expression] = STATE(2379), + [sym_index_expression] = STATE(2379), + [sym_slice_expression] = STATE(2379), + [sym_if_expression] = STATE(2378), + [sym_compile_time_if_expression] = STATE(2378), + [sym_is_expression] = STATE(2379), + [sym_in_expression] = STATE(2379), + [sym_enum_fetch] = STATE(2379), + [sym_match_expression] = STATE(2378), + [sym_select_expression] = STATE(2378), + [sym_lock_expression] = STATE(2378), + [sym_unsafe_expression] = STATE(2378), + [sym_sql_expression] = STATE(2378), + [sym_c_string_literal] = STATE(2401), + [sym_raw_string_literal] = STATE(2401), + [sym_interpreted_string_literal] = STATE(2401), + [sym_mutability_modifiers] = STATE(900), + [sym_mutable_expression] = STATE(3813), + [sym_expression_list] = STATE(4278), + [sym_plain_type] = STATE(4160), + [sym__plain_type_without_special] = STATE(2360), + [sym_anon_struct_type] = STATE(2362), + [sym_multi_return_type] = STATE(2360), + [sym_result_type] = STATE(2360), + [sym_option_type] = STATE(2360), + [sym_qualified_type] = STATE(3460), + [sym_fixed_array_type] = STATE(2362), + [sym_array_type] = STATE(2362), + [sym_pointer_type] = STATE(2362), + [sym_wrong_pointer_type] = STATE(2362), + [sym_map_type] = STATE(2362), + [sym_channel_type] = STATE(2362), + [sym_shared_type] = STATE(2362), + [sym_thread_type] = STATE(2362), + [sym_atomic_type] = STATE(2362), + [sym_generic_type] = STATE(2362), + [sym_function_type] = STATE(2362), + [sym_block] = STATE(2333), + [sym_identifier] = ACTIONS(1815), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1428), - [anon_sym_LBRACE] = ACTIONS(2107), - [anon_sym_LPAREN] = ACTIONS(1432), - [anon_sym_fn] = ACTIONS(1434), - [anon_sym_PLUS] = ACTIONS(1811), - [anon_sym_DASH] = ACTIONS(1811), - [anon_sym_STAR] = ACTIONS(1813), - [anon_sym_struct] = ACTIONS(1440), + [anon_sym_DOT] = ACTIONS(1430), + [anon_sym_LBRACE] = ACTIONS(2109), + [anon_sym_LPAREN] = ACTIONS(1434), + [anon_sym_fn] = ACTIONS(1436), + [anon_sym_PLUS] = ACTIONS(1817), + [anon_sym_DASH] = ACTIONS(1817), + [anon_sym_STAR] = ACTIONS(1819), + [anon_sym_struct] = ACTIONS(1442), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(1815), - [anon_sym_go] = ACTIONS(1817), - [anon_sym_spawn] = ACTIONS(1819), - [anon_sym_json_DOTdecode] = ACTIONS(1448), - [anon_sym_LBRACK2] = ACTIONS(1821), - [anon_sym_TILDE] = ACTIONS(1811), - [anon_sym_CARET] = ACTIONS(1811), - [anon_sym_AMP] = ACTIONS(1823), - [anon_sym_LT_DASH] = ACTIONS(1825), - [sym_none] = ACTIONS(1456), - [sym_true] = ACTIONS(1456), - [sym_false] = ACTIONS(1456), - [sym_nil] = ACTIONS(1456), - [anon_sym_if] = ACTIONS(1827), - [anon_sym_DOLLARif] = ACTIONS(1460), - [anon_sym_match] = ACTIONS(1462), - [anon_sym_select] = ACTIONS(1829), - [anon_sym_lock] = ACTIONS(1831), - [anon_sym_rlock] = ACTIONS(1831), - [anon_sym_unsafe] = ACTIONS(1833), - [anon_sym_sql] = ACTIONS(1470), - [sym_int_literal] = ACTIONS(1456), - [sym_float_literal] = ACTIONS(1472), - [sym_rune_literal] = ACTIONS(1472), - [sym_pseudo_compile_time_identifier] = ACTIONS(1474), + [anon_sym_BANG] = ACTIONS(1821), + [anon_sym_go] = ACTIONS(1823), + [anon_sym_spawn] = ACTIONS(1825), + [anon_sym_json_DOTdecode] = ACTIONS(1450), + [anon_sym_LBRACK2] = ACTIONS(1827), + [anon_sym_TILDE] = ACTIONS(1817), + [anon_sym_CARET] = ACTIONS(1817), + [anon_sym_AMP] = ACTIONS(1829), + [anon_sym_LT_DASH] = ACTIONS(1831), + [sym_none] = ACTIONS(1458), + [sym_true] = ACTIONS(1458), + [sym_false] = ACTIONS(1458), + [sym_nil] = ACTIONS(1458), + [anon_sym_if] = ACTIONS(1833), + [anon_sym_DOLLARif] = ACTIONS(1462), + [anon_sym_match] = ACTIONS(1464), + [anon_sym_select] = ACTIONS(1835), + [anon_sym_lock] = ACTIONS(1837), + [anon_sym_rlock] = ACTIONS(1837), + [anon_sym_unsafe] = ACTIONS(1839), + [anon_sym_sql] = ACTIONS(1472), + [sym_int_literal] = ACTIONS(1458), + [sym_float_literal] = ACTIONS(1474), + [sym_rune_literal] = ACTIONS(1474), + [sym_pseudo_compile_time_identifier] = ACTIONS(1476), [anon_sym_shared] = ACTIONS(83), [anon_sym_map_LBRACK] = ACTIONS(85), [anon_sym_chan] = ACTIONS(87), [anon_sym_thread] = ACTIONS(89), [anon_sym_atomic] = ACTIONS(91), - [sym___double_quote] = ACTIONS(1478), - [sym___single_quote] = ACTIONS(1480), - [sym___c_double_quote] = ACTIONS(1482), - [sym___c_single_quote] = ACTIONS(1484), - [sym___r_double_quote] = ACTIONS(1486), - [sym___r_single_quote] = ACTIONS(1488), + [sym___double_quote] = ACTIONS(1480), + [sym___single_quote] = ACTIONS(1482), + [sym___c_double_quote] = ACTIONS(1484), + [sym___c_single_quote] = ACTIONS(1486), + [sym___r_double_quote] = ACTIONS(1488), + [sym___r_single_quote] = ACTIONS(1490), }, [306] = { [sym_line_comment] = STATE(306), [sym_block_comment] = STATE(306), - [sym__expression] = STATE(2716), - [sym__expression_without_blocks] = STATE(2300), - [sym__expression_with_blocks] = STATE(2300), - [sym_inc_expression] = STATE(2307), - [sym_dec_expression] = STATE(2307), - [sym_or_block_expression] = STATE(2307), - [sym_option_propagation_expression] = STATE(2307), - [sym_result_propagation_expression] = STATE(2307), - [sym_anon_struct_value_expression] = STATE(2380), - [sym_go_expression] = STATE(2307), - [sym_spawn_expression] = STATE(2307), - [sym_parenthesized_expression] = STATE(2307), - [sym_call_expression] = STATE(2307), - [sym_type_initializer] = STATE(2380), - [sym_function_literal] = STATE(2307), - [sym_reference_expression] = STATE(2311), - [sym_type_reference_expression] = STATE(3541), - [sym_unary_expression] = STATE(2307), - [sym_receive_expression] = STATE(2307), - [sym_binary_expression] = STATE(2307), - [sym_as_type_cast_expression] = STATE(2307), - [sym__max_group] = STATE(2307), - [sym_literal] = STATE(2292), - [sym_map_init_expression] = STATE(2380), - [sym_map_keyed_element] = STATE(2001), - [sym_array_creation] = STATE(2307), - [sym_fixed_array_creation] = STATE(2307), - [sym_selector_expression] = STATE(2307), - [sym_index_expression] = STATE(2307), - [sym_slice_expression] = STATE(2307), - [sym_if_expression] = STATE(2380), - [sym_compile_time_if_expression] = STATE(2380), - [sym_is_expression] = STATE(2307), - [sym_in_expression] = STATE(2307), - [sym_enum_fetch] = STATE(2307), - [sym_match_expression] = STATE(2380), - [sym_select_expression] = STATE(2380), - [sym_lock_expression] = STATE(2380), - [sym_unsafe_expression] = STATE(2380), - [sym_sql_expression] = STATE(2380), - [sym_c_string_literal] = STATE(2308), - [sym_raw_string_literal] = STATE(2308), - [sym_interpreted_string_literal] = STATE(2308), - [sym_mutability_modifiers] = STATE(939), - [sym_plain_type] = STATE(4297), - [sym__plain_type_without_special] = STATE(2302), - [sym_anon_struct_type] = STATE(2303), - [sym_multi_return_type] = STATE(2302), - [sym_result_type] = STATE(2302), - [sym_option_type] = STATE(2302), - [sym_qualified_type] = STATE(3541), - [sym_fixed_array_type] = STATE(2303), - [sym_array_type] = STATE(2303), - [sym_pointer_type] = STATE(2303), - [sym_wrong_pointer_type] = STATE(2303), - [sym_map_type] = STATE(2303), - [sym_channel_type] = STATE(2303), - [sym_shared_type] = STATE(2303), - [sym_thread_type] = STATE(2303), - [sym_atomic_type] = STATE(2303), - [sym_generic_type] = STATE(2303), - [sym_function_type] = STATE(2303), - [aux_sym_map_init_expression_repeat1] = STATE(295), - [sym_identifier] = ACTIONS(1426), - [anon_sym_SLASH_SLASH] = ACTIONS(3), - [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1428), - [anon_sym_LBRACE] = ACTIONS(1430), - [anon_sym_RBRACE] = ACTIONS(2109), - [anon_sym_LPAREN] = ACTIONS(1432), - [anon_sym_fn] = ACTIONS(1434), - [anon_sym_PLUS] = ACTIONS(1436), - [anon_sym_DASH] = ACTIONS(1436), - [anon_sym_STAR] = ACTIONS(1438), - [anon_sym_struct] = ACTIONS(1440), - [anon_sym_mut] = ACTIONS(41), - [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(1442), - [anon_sym_go] = ACTIONS(1444), - [anon_sym_spawn] = ACTIONS(1446), - [anon_sym_json_DOTdecode] = ACTIONS(1448), - [anon_sym_LBRACK2] = ACTIONS(1450), - [anon_sym_TILDE] = ACTIONS(1436), - [anon_sym_CARET] = ACTIONS(1436), - [anon_sym_AMP] = ACTIONS(1452), - [anon_sym_LT_DASH] = ACTIONS(1454), - [sym_none] = ACTIONS(1456), - [sym_true] = ACTIONS(1456), - [sym_false] = ACTIONS(1456), - [sym_nil] = ACTIONS(1456), - [anon_sym_if] = ACTIONS(1827), - [anon_sym_DOLLARif] = ACTIONS(1460), - [anon_sym_match] = ACTIONS(1462), - [anon_sym_select] = ACTIONS(1464), - [anon_sym_lock] = ACTIONS(1466), - [anon_sym_rlock] = ACTIONS(1466), - [anon_sym_unsafe] = ACTIONS(1833), - [anon_sym_sql] = ACTIONS(1470), - [sym_int_literal] = ACTIONS(1456), - [sym_float_literal] = ACTIONS(1472), - [sym_rune_literal] = ACTIONS(1472), - [sym_pseudo_compile_time_identifier] = ACTIONS(1474), - [anon_sym_shared] = ACTIONS(83), - [anon_sym_map_LBRACK] = ACTIONS(85), - [anon_sym_chan] = ACTIONS(87), - [anon_sym_thread] = ACTIONS(89), - [anon_sym_atomic] = ACTIONS(91), - [sym___double_quote] = ACTIONS(1478), - [sym___single_quote] = ACTIONS(1480), - [sym___c_double_quote] = ACTIONS(1482), - [sym___c_single_quote] = ACTIONS(1484), - [sym___r_double_quote] = ACTIONS(1486), - [sym___r_single_quote] = ACTIONS(1488), + [ts_builtin_sym_end] = ACTIONS(1811), + [sym_identifier] = ACTIONS(1813), + [anon_sym_LF] = ACTIONS(1813), + [anon_sym_CR] = ACTIONS(1813), + [anon_sym_CR_LF] = ACTIONS(1813), + [anon_sym_SLASH_SLASH] = ACTIONS(497), + [anon_sym_SLASH_STAR] = ACTIONS(499), + [anon_sym_DOT] = ACTIONS(1813), + [anon_sym_as] = ACTIONS(1813), + [anon_sym_LBRACE] = ACTIONS(1813), + [anon_sym_COMMA] = ACTIONS(1813), + [anon_sym_const] = ACTIONS(1813), + [anon_sym_LPAREN] = ACTIONS(1813), + [anon_sym_EQ] = ACTIONS(1813), + [anon_sym___global] = ACTIONS(1813), + [anon_sym_type] = ACTIONS(1813), + [anon_sym_PIPE] = ACTIONS(1813), + [anon_sym_fn] = ACTIONS(1813), + [anon_sym_PLUS] = ACTIONS(1813), + [anon_sym_DASH] = ACTIONS(1813), + [anon_sym_STAR] = ACTIONS(1813), + [anon_sym_SLASH] = ACTIONS(1813), + [anon_sym_PERCENT] = ACTIONS(1813), + [anon_sym_LT] = ACTIONS(1813), + [anon_sym_GT] = ACTIONS(1813), + [anon_sym_EQ_EQ] = ACTIONS(1813), + [anon_sym_BANG_EQ] = ACTIONS(1813), + [anon_sym_LT_EQ] = ACTIONS(1813), + [anon_sym_GT_EQ] = ACTIONS(1813), + [anon_sym_LBRACK] = ACTIONS(1811), + [anon_sym_struct] = ACTIONS(1813), + [anon_sym_union] = ACTIONS(1813), + [anon_sym_pub] = ACTIONS(1813), + [anon_sym_mut] = ACTIONS(1813), + [anon_sym_enum] = ACTIONS(1813), + [anon_sym_interface] = ACTIONS(1813), + [anon_sym_PLUS_PLUS] = ACTIONS(1813), + [anon_sym_DASH_DASH] = ACTIONS(1813), + [anon_sym_QMARK] = ACTIONS(1813), + [anon_sym_BANG] = ACTIONS(1813), + [anon_sym_go] = ACTIONS(1813), + [anon_sym_spawn] = ACTIONS(1813), + [anon_sym_json_DOTdecode] = ACTIONS(1813), + [anon_sym_LBRACK2] = ACTIONS(1813), + [anon_sym_TILDE] = ACTIONS(1813), + [anon_sym_CARET] = ACTIONS(1813), + [anon_sym_AMP] = ACTIONS(1813), + [anon_sym_LT_DASH] = ACTIONS(1813), + [anon_sym_LT_LT] = ACTIONS(1813), + [anon_sym_GT_GT] = ACTIONS(1813), + [anon_sym_GT_GT_GT] = ACTIONS(1813), + [anon_sym_AMP_CARET] = ACTIONS(1813), + [anon_sym_AMP_AMP] = ACTIONS(1813), + [anon_sym_PIPE_PIPE] = ACTIONS(1813), + [anon_sym_or] = ACTIONS(1813), + [sym_none] = ACTIONS(1813), + [sym_true] = ACTIONS(1813), + [sym_false] = ACTIONS(1813), + [sym_nil] = ACTIONS(1813), + [anon_sym_QMARK_DOT] = ACTIONS(1813), + [anon_sym_POUND_LBRACK] = ACTIONS(1813), + [anon_sym_if] = ACTIONS(1813), + [anon_sym_DOLLARif] = ACTIONS(1813), + [anon_sym_DOLLARelse] = ACTIONS(1813), + [anon_sym_is] = ACTIONS(1813), + [anon_sym_BANGis] = ACTIONS(1813), + [anon_sym_in] = ACTIONS(1813), + [anon_sym_BANGin] = ACTIONS(1813), + [anon_sym_match] = ACTIONS(1813), + [anon_sym_select] = ACTIONS(1813), + [anon_sym_STAR_EQ] = ACTIONS(1813), + [anon_sym_SLASH_EQ] = ACTIONS(1813), + [anon_sym_PERCENT_EQ] = ACTIONS(1813), + [anon_sym_LT_LT_EQ] = ACTIONS(1813), + [anon_sym_GT_GT_EQ] = ACTIONS(1813), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(1813), + [anon_sym_AMP_EQ] = ACTIONS(1813), + [anon_sym_AMP_CARET_EQ] = ACTIONS(1813), + [anon_sym_PLUS_EQ] = ACTIONS(1813), + [anon_sym_DASH_EQ] = ACTIONS(1813), + [anon_sym_PIPE_EQ] = ACTIONS(1813), + [anon_sym_CARET_EQ] = ACTIONS(1813), + [anon_sym_COLON_EQ] = ACTIONS(1813), + [anon_sym_lock] = ACTIONS(1813), + [anon_sym_rlock] = ACTIONS(1813), + [anon_sym_unsafe] = ACTIONS(1813), + [anon_sym_sql] = ACTIONS(1813), + [sym_int_literal] = ACTIONS(1813), + [sym_float_literal] = ACTIONS(1813), + [sym_rune_literal] = ACTIONS(1813), + [sym_pseudo_compile_time_identifier] = ACTIONS(1813), + [anon_sym_shared] = ACTIONS(1813), + [anon_sym_map_LBRACK] = ACTIONS(1813), + [anon_sym_chan] = ACTIONS(1813), + [anon_sym_thread] = ACTIONS(1813), + [anon_sym_atomic] = ACTIONS(1813), + [anon_sym_assert] = ACTIONS(1813), + [anon_sym_defer] = ACTIONS(1813), + [anon_sym_goto] = ACTIONS(1813), + [anon_sym_break] = ACTIONS(1813), + [anon_sym_continue] = ACTIONS(1813), + [anon_sym_return] = ACTIONS(1813), + [anon_sym_DOLLARfor] = ACTIONS(1813), + [anon_sym_for] = ACTIONS(1813), + [anon_sym_POUND] = ACTIONS(1813), + [anon_sym_asm] = ACTIONS(1813), + [anon_sym_AT_LBRACK] = ACTIONS(1813), + [sym___double_quote] = ACTIONS(1813), + [sym___single_quote] = ACTIONS(1813), + [sym___c_double_quote] = ACTIONS(1813), + [sym___c_single_quote] = ACTIONS(1813), + [sym___r_double_quote] = ACTIONS(1813), + [sym___r_single_quote] = ACTIONS(1813), }, [307] = { [sym_line_comment] = STATE(307), [sym_block_comment] = STATE(307), - [sym__expression] = STATE(2716), - [sym__expression_without_blocks] = STATE(2300), - [sym__expression_with_blocks] = STATE(2300), - [sym_inc_expression] = STATE(2307), - [sym_dec_expression] = STATE(2307), - [sym_or_block_expression] = STATE(2307), - [sym_option_propagation_expression] = STATE(2307), - [sym_result_propagation_expression] = STATE(2307), - [sym_anon_struct_value_expression] = STATE(2380), - [sym_go_expression] = STATE(2307), - [sym_spawn_expression] = STATE(2307), - [sym_parenthesized_expression] = STATE(2307), - [sym_call_expression] = STATE(2307), - [sym_type_initializer] = STATE(2380), - [sym_function_literal] = STATE(2307), - [sym_reference_expression] = STATE(2311), - [sym_type_reference_expression] = STATE(3541), - [sym_unary_expression] = STATE(2307), - [sym_receive_expression] = STATE(2307), - [sym_binary_expression] = STATE(2307), - [sym_as_type_cast_expression] = STATE(2307), - [sym__max_group] = STATE(2307), - [sym_literal] = STATE(2292), - [sym_map_init_expression] = STATE(2380), - [sym_map_keyed_element] = STATE(2001), - [sym_array_creation] = STATE(2307), - [sym_fixed_array_creation] = STATE(2307), - [sym_selector_expression] = STATE(2307), - [sym_index_expression] = STATE(2307), - [sym_slice_expression] = STATE(2307), - [sym_if_expression] = STATE(2380), - [sym_compile_time_if_expression] = STATE(2380), - [sym_is_expression] = STATE(2307), - [sym_in_expression] = STATE(2307), - [sym_enum_fetch] = STATE(2307), - [sym_match_expression] = STATE(2380), - [sym_select_expression] = STATE(2380), - [sym_lock_expression] = STATE(2380), - [sym_unsafe_expression] = STATE(2380), - [sym_sql_expression] = STATE(2380), - [sym_c_string_literal] = STATE(2308), - [sym_raw_string_literal] = STATE(2308), - [sym_interpreted_string_literal] = STATE(2308), + [sym__expression] = STATE(2632), + [sym__expression_without_blocks] = STATE(2347), + [sym__expression_with_blocks] = STATE(2347), + [sym_inc_expression] = STATE(2379), + [sym_dec_expression] = STATE(2379), + [sym_or_block_expression] = STATE(2379), + [sym_option_propagation_expression] = STATE(2379), + [sym_result_propagation_expression] = STATE(2379), + [sym_anon_struct_value_expression] = STATE(2378), + [sym_go_expression] = STATE(2379), + [sym_spawn_expression] = STATE(2379), + [sym_parenthesized_expression] = STATE(2379), + [sym_call_expression] = STATE(2379), + [sym_type_initializer] = STATE(2378), + [sym_function_literal] = STATE(2379), + [sym_reference_expression] = STATE(2377), + [sym_type_reference_expression] = STATE(3460), + [sym_unary_expression] = STATE(2379), + [sym_receive_expression] = STATE(2379), + [sym_binary_expression] = STATE(2379), + [sym_as_type_cast_expression] = STATE(2379), + [sym__max_group] = STATE(2379), + [sym_literal] = STATE(2392), + [sym_map_init_expression] = STATE(2378), + [sym_map_keyed_element] = STATE(2004), + [sym_array_creation] = STATE(2379), + [sym_fixed_array_creation] = STATE(2379), + [sym_selector_expression] = STATE(2379), + [sym_index_expression] = STATE(2379), + [sym_slice_expression] = STATE(2379), + [sym_if_expression] = STATE(2378), + [sym_compile_time_if_expression] = STATE(2378), + [sym_is_expression] = STATE(2379), + [sym_in_expression] = STATE(2379), + [sym_enum_fetch] = STATE(2379), + [sym_match_expression] = STATE(2378), + [sym_select_expression] = STATE(2378), + [sym_lock_expression] = STATE(2378), + [sym_unsafe_expression] = STATE(2378), + [sym_sql_expression] = STATE(2378), + [sym_c_string_literal] = STATE(2401), + [sym_raw_string_literal] = STATE(2401), + [sym_interpreted_string_literal] = STATE(2401), [sym_mutability_modifiers] = STATE(939), - [sym_plain_type] = STATE(4297), - [sym__plain_type_without_special] = STATE(2302), - [sym_anon_struct_type] = STATE(2303), - [sym_multi_return_type] = STATE(2302), - [sym_result_type] = STATE(2302), - [sym_option_type] = STATE(2302), - [sym_qualified_type] = STATE(3541), - [sym_fixed_array_type] = STATE(2303), - [sym_array_type] = STATE(2303), - [sym_pointer_type] = STATE(2303), - [sym_wrong_pointer_type] = STATE(2303), - [sym_map_type] = STATE(2303), - [sym_channel_type] = STATE(2303), - [sym_shared_type] = STATE(2303), - [sym_thread_type] = STATE(2303), - [sym_atomic_type] = STATE(2303), - [sym_generic_type] = STATE(2303), - [sym_function_type] = STATE(2303), - [aux_sym_map_init_expression_repeat1] = STATE(295), - [sym_identifier] = ACTIONS(1426), + [sym_plain_type] = STATE(4160), + [sym__plain_type_without_special] = STATE(2360), + [sym_anon_struct_type] = STATE(2362), + [sym_multi_return_type] = STATE(2360), + [sym_result_type] = STATE(2360), + [sym_option_type] = STATE(2360), + [sym_qualified_type] = STATE(3460), + [sym_fixed_array_type] = STATE(2362), + [sym_array_type] = STATE(2362), + [sym_pointer_type] = STATE(2362), + [sym_wrong_pointer_type] = STATE(2362), + [sym_map_type] = STATE(2362), + [sym_channel_type] = STATE(2362), + [sym_shared_type] = STATE(2362), + [sym_thread_type] = STATE(2362), + [sym_atomic_type] = STATE(2362), + [sym_generic_type] = STATE(2362), + [sym_function_type] = STATE(2362), + [aux_sym_map_init_expression_repeat1] = STATE(267), + [sym_identifier] = ACTIONS(1428), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1428), - [anon_sym_LBRACE] = ACTIONS(1430), + [anon_sym_DOT] = ACTIONS(1430), + [anon_sym_LBRACE] = ACTIONS(1432), [anon_sym_RBRACE] = ACTIONS(2111), - [anon_sym_LPAREN] = ACTIONS(1432), - [anon_sym_fn] = ACTIONS(1434), - [anon_sym_PLUS] = ACTIONS(1436), - [anon_sym_DASH] = ACTIONS(1436), - [anon_sym_STAR] = ACTIONS(1438), - [anon_sym_struct] = ACTIONS(1440), + [anon_sym_LPAREN] = ACTIONS(1434), + [anon_sym_fn] = ACTIONS(1436), + [anon_sym_PLUS] = ACTIONS(1438), + [anon_sym_DASH] = ACTIONS(1438), + [anon_sym_STAR] = ACTIONS(1440), + [anon_sym_struct] = ACTIONS(1442), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(1442), - [anon_sym_go] = ACTIONS(1444), - [anon_sym_spawn] = ACTIONS(1446), - [anon_sym_json_DOTdecode] = ACTIONS(1448), - [anon_sym_LBRACK2] = ACTIONS(1450), - [anon_sym_TILDE] = ACTIONS(1436), - [anon_sym_CARET] = ACTIONS(1436), - [anon_sym_AMP] = ACTIONS(1452), - [anon_sym_LT_DASH] = ACTIONS(1454), - [sym_none] = ACTIONS(1456), - [sym_true] = ACTIONS(1456), - [sym_false] = ACTIONS(1456), - [sym_nil] = ACTIONS(1456), - [anon_sym_if] = ACTIONS(1827), - [anon_sym_DOLLARif] = ACTIONS(1460), - [anon_sym_match] = ACTIONS(1462), - [anon_sym_select] = ACTIONS(1464), - [anon_sym_lock] = ACTIONS(1466), - [anon_sym_rlock] = ACTIONS(1466), - [anon_sym_unsafe] = ACTIONS(1833), - [anon_sym_sql] = ACTIONS(1470), - [sym_int_literal] = ACTIONS(1456), - [sym_float_literal] = ACTIONS(1472), - [sym_rune_literal] = ACTIONS(1472), - [sym_pseudo_compile_time_identifier] = ACTIONS(1474), + [anon_sym_BANG] = ACTIONS(1444), + [anon_sym_go] = ACTIONS(1446), + [anon_sym_spawn] = ACTIONS(1448), + [anon_sym_json_DOTdecode] = ACTIONS(1450), + [anon_sym_LBRACK2] = ACTIONS(1452), + [anon_sym_TILDE] = ACTIONS(1438), + [anon_sym_CARET] = ACTIONS(1438), + [anon_sym_AMP] = ACTIONS(1454), + [anon_sym_LT_DASH] = ACTIONS(1456), + [sym_none] = ACTIONS(1458), + [sym_true] = ACTIONS(1458), + [sym_false] = ACTIONS(1458), + [sym_nil] = ACTIONS(1458), + [anon_sym_if] = ACTIONS(1833), + [anon_sym_DOLLARif] = ACTIONS(1462), + [anon_sym_match] = ACTIONS(1464), + [anon_sym_select] = ACTIONS(1466), + [anon_sym_lock] = ACTIONS(1468), + [anon_sym_rlock] = ACTIONS(1468), + [anon_sym_unsafe] = ACTIONS(1839), + [anon_sym_sql] = ACTIONS(1472), + [sym_int_literal] = ACTIONS(1458), + [sym_float_literal] = ACTIONS(1474), + [sym_rune_literal] = ACTIONS(1474), + [sym_pseudo_compile_time_identifier] = ACTIONS(1476), [anon_sym_shared] = ACTIONS(83), [anon_sym_map_LBRACK] = ACTIONS(85), [anon_sym_chan] = ACTIONS(87), [anon_sym_thread] = ACTIONS(89), [anon_sym_atomic] = ACTIONS(91), - [sym___double_quote] = ACTIONS(1478), - [sym___single_quote] = ACTIONS(1480), - [sym___c_double_quote] = ACTIONS(1482), - [sym___c_single_quote] = ACTIONS(1484), - [sym___r_double_quote] = ACTIONS(1486), - [sym___r_single_quote] = ACTIONS(1488), + [sym___double_quote] = ACTIONS(1480), + [sym___single_quote] = ACTIONS(1482), + [sym___c_double_quote] = ACTIONS(1484), + [sym___c_single_quote] = ACTIONS(1486), + [sym___r_double_quote] = ACTIONS(1488), + [sym___r_single_quote] = ACTIONS(1490), }, [308] = { [sym_line_comment] = STATE(308), [sym_block_comment] = STATE(308), - [sym__expression] = STATE(2335), - [sym__expression_without_blocks] = STATE(2300), - [sym__expression_with_blocks] = STATE(2300), - [sym_inc_expression] = STATE(2307), - [sym_dec_expression] = STATE(2307), - [sym_or_block_expression] = STATE(2307), - [sym_option_propagation_expression] = STATE(2307), - [sym_result_propagation_expression] = STATE(2307), - [sym_anon_struct_value_expression] = STATE(2380), - [sym_go_expression] = STATE(2307), - [sym_spawn_expression] = STATE(2307), - [sym_parenthesized_expression] = STATE(2307), - [sym_call_expression] = STATE(2307), - [sym_type_initializer] = STATE(2380), - [sym_function_literal] = STATE(2307), - [sym_reference_expression] = STATE(2311), - [sym_type_reference_expression] = STATE(3541), - [sym_unary_expression] = STATE(2307), - [sym_receive_expression] = STATE(2307), - [sym_binary_expression] = STATE(2307), - [sym_as_type_cast_expression] = STATE(2307), - [sym__max_group] = STATE(2307), - [sym_literal] = STATE(2292), - [sym_map_init_expression] = STATE(2380), - [sym_array_creation] = STATE(2307), - [sym_fixed_array_creation] = STATE(2307), - [sym_selector_expression] = STATE(2307), - [sym_index_expression] = STATE(2307), - [sym_slice_expression] = STATE(2307), - [sym_if_expression] = STATE(2380), - [sym_compile_time_if_expression] = STATE(2380), - [sym_is_expression] = STATE(2307), - [sym_in_expression] = STATE(2307), - [sym_enum_fetch] = STATE(2307), - [sym_match_expression] = STATE(2380), - [sym_select_expression] = STATE(2380), - [sym_lock_expression] = STATE(2380), - [sym_unsafe_expression] = STATE(2380), - [sym_sql_expression] = STATE(2380), - [sym_c_string_literal] = STATE(2308), - [sym_raw_string_literal] = STATE(2308), - [sym_interpreted_string_literal] = STATE(2308), - [sym_mutability_modifiers] = STATE(765), - [sym_mutable_expression] = STATE(3823), - [sym_expression_list] = STATE(4480), - [sym_plain_type] = STATE(4297), - [sym__plain_type_without_special] = STATE(2302), - [sym_anon_struct_type] = STATE(2303), - [sym_multi_return_type] = STATE(2302), - [sym_result_type] = STATE(2302), - [sym_option_type] = STATE(2302), - [sym_qualified_type] = STATE(3541), - [sym_fixed_array_type] = STATE(2303), - [sym_array_type] = STATE(2303), - [sym_pointer_type] = STATE(2303), - [sym_wrong_pointer_type] = STATE(2303), - [sym_map_type] = STATE(2303), - [sym_channel_type] = STATE(2303), - [sym_shared_type] = STATE(2303), - [sym_thread_type] = STATE(2303), - [sym_atomic_type] = STATE(2303), - [sym_generic_type] = STATE(2303), - [sym_function_type] = STATE(2303), - [sym_var_declaration] = STATE(4270), - [sym_identifier] = ACTIONS(1807), + [sym__expression] = STATE(1260), + [sym__expression_without_blocks] = STATE(1318), + [sym__expression_with_blocks] = STATE(1318), + [sym_inc_expression] = STATE(1319), + [sym_dec_expression] = STATE(1319), + [sym_or_block_expression] = STATE(1319), + [sym_option_propagation_expression] = STATE(1319), + [sym_result_propagation_expression] = STATE(1319), + [sym_anon_struct_value_expression] = STATE(1320), + [sym_go_expression] = STATE(1319), + [sym_spawn_expression] = STATE(1319), + [sym_parenthesized_expression] = STATE(1319), + [sym_call_expression] = STATE(1319), + [sym_type_initializer] = STATE(1320), + [sym_function_literal] = STATE(1319), + [sym_reference_expression] = STATE(1298), + [sym_type_reference_expression] = STATE(3460), + [sym_unary_expression] = STATE(1319), + [sym_receive_expression] = STATE(1319), + [sym_binary_expression] = STATE(1319), + [sym_as_type_cast_expression] = STATE(1319), + [sym__max_group] = STATE(1319), + [sym_literal] = STATE(1314), + [sym_map_init_expression] = STATE(1320), + [sym_array_creation] = STATE(1319), + [sym_fixed_array_creation] = STATE(1319), + [sym_selector_expression] = STATE(1319), + [sym_index_expression] = STATE(1319), + [sym_slice_expression] = STATE(1319), + [sym_if_expression] = STATE(1320), + [sym_compile_time_if_expression] = STATE(1320), + [sym_is_expression] = STATE(1319), + [sym_in_expression] = STATE(1319), + [sym_enum_fetch] = STATE(1319), + [sym_match_expression] = STATE(1320), + [sym_select_expression] = STATE(1320), + [sym_lock_expression] = STATE(1320), + [sym_unsafe_expression] = STATE(1320), + [sym_sql_expression] = STATE(1320), + [sym_c_string_literal] = STATE(1291), + [sym_raw_string_literal] = STATE(1291), + [sym_interpreted_string_literal] = STATE(1291), + [sym_mutability_modifiers] = STATE(639), + [sym_plain_type] = STATE(4307), + [sym__plain_type_without_special] = STATE(2360), + [sym_anon_struct_type] = STATE(2362), + [sym_multi_return_type] = STATE(2360), + [sym_result_type] = STATE(2360), + [sym_option_type] = STATE(2360), + [sym_qualified_type] = STATE(3460), + [sym_fixed_array_type] = STATE(2362), + [sym_array_type] = STATE(2362), + [sym_pointer_type] = STATE(2362), + [sym_wrong_pointer_type] = STATE(2362), + [sym_map_type] = STATE(2362), + [sym_channel_type] = STATE(2362), + [sym_shared_type] = STATE(2362), + [sym_thread_type] = STATE(2362), + [sym_atomic_type] = STATE(2362), + [sym_generic_type] = STATE(2362), + [sym_function_type] = STATE(2362), + [sym___rcbr] = STATE(3667), + [aux_sym_string_interpolation_repeat1] = STATE(250), + [sym_identifier] = ACTIONS(1360), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1428), - [anon_sym_LBRACE] = ACTIONS(1430), - [anon_sym_LPAREN] = ACTIONS(1432), - [anon_sym_fn] = ACTIONS(1434), - [anon_sym_PLUS] = ACTIONS(1811), - [anon_sym_DASH] = ACTIONS(1811), - [anon_sym_STAR] = ACTIONS(1813), - [anon_sym_struct] = ACTIONS(1440), + [anon_sym_DOT] = ACTIONS(1362), + [anon_sym_LBRACE] = ACTIONS(1364), + [anon_sym_RBRACE] = ACTIONS(1899), + [anon_sym_LPAREN] = ACTIONS(1366), + [anon_sym_fn] = ACTIONS(1368), + [anon_sym_PLUS] = ACTIONS(1851), + [anon_sym_DASH] = ACTIONS(1851), + [anon_sym_STAR] = ACTIONS(1853), + [anon_sym_struct] = ACTIONS(1376), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(1815), - [anon_sym_go] = ACTIONS(1817), - [anon_sym_spawn] = ACTIONS(1819), - [anon_sym_json_DOTdecode] = ACTIONS(1448), - [anon_sym_LBRACK2] = ACTIONS(1821), - [anon_sym_TILDE] = ACTIONS(1811), - [anon_sym_CARET] = ACTIONS(1811), - [anon_sym_AMP] = ACTIONS(1823), - [anon_sym_LT_DASH] = ACTIONS(1825), - [sym_none] = ACTIONS(1456), - [sym_true] = ACTIONS(1456), - [sym_false] = ACTIONS(1456), - [sym_nil] = ACTIONS(1456), - [anon_sym_if] = ACTIONS(1827), - [anon_sym_DOLLARif] = ACTIONS(1460), - [anon_sym_match] = ACTIONS(1462), - [anon_sym_select] = ACTIONS(1829), - [anon_sym_lock] = ACTIONS(1831), - [anon_sym_rlock] = ACTIONS(1831), - [anon_sym_unsafe] = ACTIONS(1833), - [anon_sym_sql] = ACTIONS(1470), - [sym_int_literal] = ACTIONS(1456), - [sym_float_literal] = ACTIONS(1472), - [sym_rune_literal] = ACTIONS(1472), - [sym_pseudo_compile_time_identifier] = ACTIONS(1474), + [anon_sym_BANG] = ACTIONS(1855), + [anon_sym_go] = ACTIONS(1857), + [anon_sym_spawn] = ACTIONS(1859), + [anon_sym_json_DOTdecode] = ACTIONS(1384), + [anon_sym_LBRACK2] = ACTIONS(1386), + [anon_sym_TILDE] = ACTIONS(1851), + [anon_sym_CARET] = ACTIONS(1851), + [anon_sym_AMP] = ACTIONS(1861), + [anon_sym_LT_DASH] = ACTIONS(1863), + [sym_none] = ACTIONS(1392), + [sym_true] = ACTIONS(1392), + [sym_false] = ACTIONS(1392), + [sym_nil] = ACTIONS(1392), + [anon_sym_if] = ACTIONS(1865), + [anon_sym_DOLLARif] = ACTIONS(1396), + [anon_sym_match] = ACTIONS(1398), + [anon_sym_select] = ACTIONS(1867), + [anon_sym_lock] = ACTIONS(1869), + [anon_sym_rlock] = ACTIONS(1869), + [anon_sym_unsafe] = ACTIONS(1871), + [anon_sym_sql] = ACTIONS(1406), + [sym_int_literal] = ACTIONS(1392), + [sym_float_literal] = ACTIONS(1410), + [sym_rune_literal] = ACTIONS(1410), + [sym_pseudo_compile_time_identifier] = ACTIONS(1412), [anon_sym_shared] = ACTIONS(83), [anon_sym_map_LBRACK] = ACTIONS(85), [anon_sym_chan] = ACTIONS(87), [anon_sym_thread] = ACTIONS(89), [anon_sym_atomic] = ACTIONS(91), - [sym___double_quote] = ACTIONS(1478), - [sym___single_quote] = ACTIONS(1480), - [sym___c_double_quote] = ACTIONS(1482), - [sym___c_single_quote] = ACTIONS(1484), - [sym___r_double_quote] = ACTIONS(1486), - [sym___r_single_quote] = ACTIONS(1488), + [sym___double_quote] = ACTIONS(1414), + [sym___single_quote] = ACTIONS(1416), + [sym___c_double_quote] = ACTIONS(1418), + [sym___c_single_quote] = ACTIONS(1420), + [sym___r_double_quote] = ACTIONS(1422), + [sym___r_single_quote] = ACTIONS(1424), }, [309] = { [sym_line_comment] = STATE(309), [sym_block_comment] = STATE(309), - [sym__expression] = STATE(2455), - [sym__expression_without_blocks] = STATE(2300), - [sym__expression_with_blocks] = STATE(2300), - [sym_inc_expression] = STATE(2307), - [sym_dec_expression] = STATE(2307), - [sym_or_block_expression] = STATE(2307), - [sym_option_propagation_expression] = STATE(2307), - [sym_result_propagation_expression] = STATE(2307), - [sym_anon_struct_value_expression] = STATE(2380), - [sym_go_expression] = STATE(2307), - [sym_spawn_expression] = STATE(2307), - [sym_parenthesized_expression] = STATE(2307), - [sym_call_expression] = STATE(2307), - [sym_type_initializer] = STATE(2380), - [sym_function_literal] = STATE(2307), - [sym_reference_expression] = STATE(2311), - [sym_type_reference_expression] = STATE(3541), - [sym_unary_expression] = STATE(2307), - [sym_receive_expression] = STATE(2307), - [sym_binary_expression] = STATE(2307), - [sym_as_type_cast_expression] = STATE(2307), - [sym__max_group] = STATE(2307), - [sym_literal] = STATE(2292), - [sym_map_init_expression] = STATE(2380), - [sym_array_creation] = STATE(2307), - [sym_fixed_array_creation] = STATE(2307), - [sym_selector_expression] = STATE(2307), - [sym_index_expression] = STATE(2307), - [sym_slice_expression] = STATE(2307), - [sym_if_expression] = STATE(2380), - [sym_compile_time_if_expression] = STATE(2380), - [sym_is_expression] = STATE(2307), - [sym_in_expression] = STATE(2307), - [sym_enum_fetch] = STATE(2307), - [sym_match_expression] = STATE(2380), - [sym_select_expression] = STATE(2380), - [sym_lock_expression] = STATE(2380), - [sym_unsafe_expression] = STATE(2380), - [sym_sql_expression] = STATE(2380), - [sym_c_string_literal] = STATE(2308), - [sym_raw_string_literal] = STATE(2308), - [sym_interpreted_string_literal] = STATE(2308), - [sym_mutability_modifiers] = STATE(824), - [sym_mutable_expression] = STATE(3922), - [sym_expression_list] = STATE(4434), - [sym_plain_type] = STATE(4297), - [sym__plain_type_without_special] = STATE(2302), - [sym_anon_struct_type] = STATE(2303), - [sym_multi_return_type] = STATE(2302), - [sym_result_type] = STATE(2302), - [sym_option_type] = STATE(2302), - [sym_qualified_type] = STATE(3541), - [sym_fixed_array_type] = STATE(2303), - [sym_array_type] = STATE(2303), - [sym_pointer_type] = STATE(2303), - [sym_wrong_pointer_type] = STATE(2303), - [sym_map_type] = STATE(2303), - [sym_channel_type] = STATE(2303), - [sym_shared_type] = STATE(2303), - [sym_thread_type] = STATE(2303), - [sym_atomic_type] = STATE(2303), - [sym_generic_type] = STATE(2303), - [sym_function_type] = STATE(2303), - [sym_identifier] = ACTIONS(1807), - [anon_sym_SLASH_SLASH] = ACTIONS(3), - [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1428), - [anon_sym_LBRACE] = ACTIONS(2113), - [anon_sym_LPAREN] = ACTIONS(1432), - [anon_sym_fn] = ACTIONS(1434), - [anon_sym_PLUS] = ACTIONS(1811), - [anon_sym_DASH] = ACTIONS(1811), - [anon_sym_STAR] = ACTIONS(1813), - [anon_sym_struct] = ACTIONS(1440), - [anon_sym_mut] = ACTIONS(41), - [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(1815), - [anon_sym_go] = ACTIONS(1817), - [anon_sym_spawn] = ACTIONS(1819), - [anon_sym_json_DOTdecode] = ACTIONS(1448), - [anon_sym_LBRACK2] = ACTIONS(1821), - [anon_sym_TILDE] = ACTIONS(1811), - [anon_sym_CARET] = ACTIONS(1811), - [anon_sym_AMP] = ACTIONS(1823), - [anon_sym_LT_DASH] = ACTIONS(1825), - [sym_none] = ACTIONS(1456), - [sym_true] = ACTIONS(1456), - [sym_false] = ACTIONS(1456), - [sym_nil] = ACTIONS(1456), - [anon_sym_if] = ACTIONS(1827), - [anon_sym_DOLLARif] = ACTIONS(1460), - [anon_sym_match] = ACTIONS(1462), - [anon_sym_select] = ACTIONS(1829), - [anon_sym_lock] = ACTIONS(1831), - [anon_sym_rlock] = ACTIONS(1831), - [anon_sym_unsafe] = ACTIONS(1833), - [anon_sym_sql] = ACTIONS(1470), - [sym_int_literal] = ACTIONS(1456), - [sym_float_literal] = ACTIONS(1472), - [sym_rune_literal] = ACTIONS(1472), - [sym_pseudo_compile_time_identifier] = ACTIONS(1474), - [anon_sym_shared] = ACTIONS(83), - [anon_sym_map_LBRACK] = ACTIONS(85), - [anon_sym_chan] = ACTIONS(87), - [anon_sym_thread] = ACTIONS(89), - [anon_sym_atomic] = ACTIONS(91), - [sym___double_quote] = ACTIONS(1478), - [sym___single_quote] = ACTIONS(1480), - [sym___c_double_quote] = ACTIONS(1482), - [sym___c_single_quote] = ACTIONS(1484), - [sym___r_double_quote] = ACTIONS(1486), - [sym___r_single_quote] = ACTIONS(1488), + [ts_builtin_sym_end] = ACTIONS(2113), + [sym_identifier] = ACTIONS(2115), + [anon_sym_LF] = ACTIONS(2115), + [anon_sym_CR] = ACTIONS(2115), + [anon_sym_CR_LF] = ACTIONS(2115), + [anon_sym_SLASH_SLASH] = ACTIONS(497), + [anon_sym_SLASH_STAR] = ACTIONS(499), + [anon_sym_DOT] = ACTIONS(2115), + [anon_sym_as] = ACTIONS(2115), + [anon_sym_LBRACE] = ACTIONS(2115), + [anon_sym_COMMA] = ACTIONS(2115), + [anon_sym_const] = ACTIONS(2115), + [anon_sym_LPAREN] = ACTIONS(2115), + [anon_sym_EQ] = ACTIONS(2115), + [anon_sym___global] = ACTIONS(2115), + [anon_sym_type] = ACTIONS(2115), + [anon_sym_PIPE] = ACTIONS(2115), + [anon_sym_fn] = ACTIONS(2115), + [anon_sym_PLUS] = ACTIONS(2115), + [anon_sym_DASH] = ACTIONS(2115), + [anon_sym_STAR] = ACTIONS(2115), + [anon_sym_SLASH] = ACTIONS(2115), + [anon_sym_PERCENT] = ACTIONS(2115), + [anon_sym_LT] = ACTIONS(2115), + [anon_sym_GT] = ACTIONS(2115), + [anon_sym_EQ_EQ] = ACTIONS(2115), + [anon_sym_BANG_EQ] = ACTIONS(2115), + [anon_sym_LT_EQ] = ACTIONS(2115), + [anon_sym_GT_EQ] = ACTIONS(2115), + [anon_sym_LBRACK] = ACTIONS(2113), + [anon_sym_struct] = ACTIONS(2115), + [anon_sym_union] = ACTIONS(2115), + [anon_sym_pub] = ACTIONS(2115), + [anon_sym_mut] = ACTIONS(2115), + [anon_sym_enum] = ACTIONS(2115), + [anon_sym_interface] = ACTIONS(2115), + [anon_sym_PLUS_PLUS] = ACTIONS(2115), + [anon_sym_DASH_DASH] = ACTIONS(2115), + [anon_sym_QMARK] = ACTIONS(2115), + [anon_sym_BANG] = ACTIONS(2115), + [anon_sym_go] = ACTIONS(2115), + [anon_sym_spawn] = ACTIONS(2115), + [anon_sym_json_DOTdecode] = ACTIONS(2115), + [anon_sym_LBRACK2] = ACTIONS(2115), + [anon_sym_TILDE] = ACTIONS(2115), + [anon_sym_CARET] = ACTIONS(2115), + [anon_sym_AMP] = ACTIONS(2115), + [anon_sym_LT_DASH] = ACTIONS(2115), + [anon_sym_LT_LT] = ACTIONS(2115), + [anon_sym_GT_GT] = ACTIONS(2115), + [anon_sym_GT_GT_GT] = ACTIONS(2115), + [anon_sym_AMP_CARET] = ACTIONS(2115), + [anon_sym_AMP_AMP] = ACTIONS(2115), + [anon_sym_PIPE_PIPE] = ACTIONS(2115), + [anon_sym_or] = ACTIONS(2115), + [sym_none] = ACTIONS(2115), + [sym_true] = ACTIONS(2115), + [sym_false] = ACTIONS(2115), + [sym_nil] = ACTIONS(2115), + [anon_sym_QMARK_DOT] = ACTIONS(2115), + [anon_sym_POUND_LBRACK] = ACTIONS(2115), + [anon_sym_if] = ACTIONS(2115), + [anon_sym_DOLLARif] = ACTIONS(2115), + [anon_sym_is] = ACTIONS(2115), + [anon_sym_BANGis] = ACTIONS(2115), + [anon_sym_in] = ACTIONS(2115), + [anon_sym_BANGin] = ACTIONS(2115), + [anon_sym_match] = ACTIONS(2115), + [anon_sym_select] = ACTIONS(2115), + [anon_sym_STAR_EQ] = ACTIONS(2115), + [anon_sym_SLASH_EQ] = ACTIONS(2115), + [anon_sym_PERCENT_EQ] = ACTIONS(2115), + [anon_sym_LT_LT_EQ] = ACTIONS(2115), + [anon_sym_GT_GT_EQ] = ACTIONS(2115), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(2115), + [anon_sym_AMP_EQ] = ACTIONS(2115), + [anon_sym_AMP_CARET_EQ] = ACTIONS(2115), + [anon_sym_PLUS_EQ] = ACTIONS(2115), + [anon_sym_DASH_EQ] = ACTIONS(2115), + [anon_sym_PIPE_EQ] = ACTIONS(2115), + [anon_sym_CARET_EQ] = ACTIONS(2115), + [anon_sym_COLON_EQ] = ACTIONS(2115), + [anon_sym_lock] = ACTIONS(2115), + [anon_sym_rlock] = ACTIONS(2115), + [anon_sym_unsafe] = ACTIONS(2115), + [anon_sym_sql] = ACTIONS(2115), + [sym_int_literal] = ACTIONS(2115), + [sym_float_literal] = ACTIONS(2115), + [sym_rune_literal] = ACTIONS(2115), + [sym_pseudo_compile_time_identifier] = ACTIONS(2115), + [anon_sym_shared] = ACTIONS(2115), + [anon_sym_map_LBRACK] = ACTIONS(2115), + [anon_sym_chan] = ACTIONS(2115), + [anon_sym_thread] = ACTIONS(2115), + [anon_sym_atomic] = ACTIONS(2115), + [anon_sym_assert] = ACTIONS(2115), + [anon_sym_defer] = ACTIONS(2115), + [anon_sym_goto] = ACTIONS(2115), + [anon_sym_break] = ACTIONS(2115), + [anon_sym_continue] = ACTIONS(2115), + [anon_sym_return] = ACTIONS(2115), + [anon_sym_DOLLARfor] = ACTIONS(2115), + [anon_sym_for] = ACTIONS(2115), + [anon_sym_POUND] = ACTIONS(2115), + [anon_sym_asm] = ACTIONS(2115), + [anon_sym_AT_LBRACK] = ACTIONS(2115), + [sym___double_quote] = ACTIONS(2115), + [sym___single_quote] = ACTIONS(2115), + [sym___c_double_quote] = ACTIONS(2115), + [sym___c_single_quote] = ACTIONS(2115), + [sym___r_double_quote] = ACTIONS(2115), + [sym___r_single_quote] = ACTIONS(2115), }, [310] = { [sym_line_comment] = STATE(310), [sym_block_comment] = STATE(310), - [ts_builtin_sym_end] = ACTIONS(2115), - [sym_identifier] = ACTIONS(2117), - [anon_sym_LF] = ACTIONS(2117), - [anon_sym_CR] = ACTIONS(2117), - [anon_sym_CR_LF] = ACTIONS(2117), + [ts_builtin_sym_end] = ACTIONS(2117), + [sym_identifier] = ACTIONS(2119), + [anon_sym_LF] = ACTIONS(2119), + [anon_sym_CR] = ACTIONS(2119), + [anon_sym_CR_LF] = ACTIONS(2119), [anon_sym_SLASH_SLASH] = ACTIONS(497), [anon_sym_SLASH_STAR] = ACTIONS(499), - [anon_sym_DOT] = ACTIONS(2117), - [anon_sym_as] = ACTIONS(2117), - [anon_sym_LBRACE] = ACTIONS(2117), - [anon_sym_COMMA] = ACTIONS(2117), - [anon_sym_const] = ACTIONS(2117), - [anon_sym_LPAREN] = ACTIONS(2117), - [anon_sym_EQ] = ACTIONS(2117), - [anon_sym___global] = ACTIONS(2117), - [anon_sym_type] = ACTIONS(2117), - [anon_sym_PIPE] = ACTIONS(2117), - [anon_sym_fn] = ACTIONS(2117), - [anon_sym_PLUS] = ACTIONS(2117), - [anon_sym_DASH] = ACTIONS(2117), - [anon_sym_STAR] = ACTIONS(2117), - [anon_sym_SLASH] = ACTIONS(2117), - [anon_sym_PERCENT] = ACTIONS(2117), - [anon_sym_LT] = ACTIONS(2117), - [anon_sym_GT] = ACTIONS(2117), - [anon_sym_EQ_EQ] = ACTIONS(2117), - [anon_sym_BANG_EQ] = ACTIONS(2117), - [anon_sym_LT_EQ] = ACTIONS(2117), - [anon_sym_GT_EQ] = ACTIONS(2117), - [anon_sym_LBRACK] = ACTIONS(2115), - [anon_sym_struct] = ACTIONS(2117), - [anon_sym_union] = ACTIONS(2117), - [anon_sym_pub] = ACTIONS(2117), - [anon_sym_mut] = ACTIONS(2117), - [anon_sym_enum] = ACTIONS(2117), - [anon_sym_interface] = ACTIONS(2117), - [anon_sym_PLUS_PLUS] = ACTIONS(2117), - [anon_sym_DASH_DASH] = ACTIONS(2117), - [anon_sym_QMARK] = ACTIONS(2117), - [anon_sym_BANG] = ACTIONS(2117), - [anon_sym_go] = ACTIONS(2117), - [anon_sym_spawn] = ACTIONS(2117), - [anon_sym_json_DOTdecode] = ACTIONS(2117), - [anon_sym_LBRACK2] = ACTIONS(2117), - [anon_sym_TILDE] = ACTIONS(2117), - [anon_sym_CARET] = ACTIONS(2117), - [anon_sym_AMP] = ACTIONS(2117), - [anon_sym_LT_DASH] = ACTIONS(2117), - [anon_sym_LT_LT] = ACTIONS(2117), - [anon_sym_GT_GT] = ACTIONS(2117), - [anon_sym_GT_GT_GT] = ACTIONS(2117), - [anon_sym_AMP_CARET] = ACTIONS(2117), - [anon_sym_AMP_AMP] = ACTIONS(2117), - [anon_sym_PIPE_PIPE] = ACTIONS(2117), - [anon_sym_or] = ACTIONS(2117), - [sym_none] = ACTIONS(2117), - [sym_true] = ACTIONS(2117), - [sym_false] = ACTIONS(2117), - [sym_nil] = ACTIONS(2117), - [anon_sym_QMARK_DOT] = ACTIONS(2117), - [anon_sym_POUND_LBRACK] = ACTIONS(2117), - [anon_sym_if] = ACTIONS(2117), - [anon_sym_DOLLARif] = ACTIONS(2117), - [anon_sym_is] = ACTIONS(2117), - [anon_sym_BANGis] = ACTIONS(2117), - [anon_sym_in] = ACTIONS(2117), - [anon_sym_BANGin] = ACTIONS(2117), - [anon_sym_match] = ACTIONS(2117), - [anon_sym_select] = ACTIONS(2117), - [anon_sym_STAR_EQ] = ACTIONS(2117), - [anon_sym_SLASH_EQ] = ACTIONS(2117), - [anon_sym_PERCENT_EQ] = ACTIONS(2117), - [anon_sym_LT_LT_EQ] = ACTIONS(2117), - [anon_sym_GT_GT_EQ] = ACTIONS(2117), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(2117), - [anon_sym_AMP_EQ] = ACTIONS(2117), - [anon_sym_AMP_CARET_EQ] = ACTIONS(2117), - [anon_sym_PLUS_EQ] = ACTIONS(2117), - [anon_sym_DASH_EQ] = ACTIONS(2117), - [anon_sym_PIPE_EQ] = ACTIONS(2117), - [anon_sym_CARET_EQ] = ACTIONS(2117), - [anon_sym_COLON_EQ] = ACTIONS(2117), - [anon_sym_lock] = ACTIONS(2117), - [anon_sym_rlock] = ACTIONS(2117), - [anon_sym_unsafe] = ACTIONS(2117), - [anon_sym_sql] = ACTIONS(2117), - [sym_int_literal] = ACTIONS(2117), - [sym_float_literal] = ACTIONS(2117), - [sym_rune_literal] = ACTIONS(2117), - [sym_pseudo_compile_time_identifier] = ACTIONS(2117), - [anon_sym_shared] = ACTIONS(2117), - [anon_sym_map_LBRACK] = ACTIONS(2117), - [anon_sym_chan] = ACTIONS(2117), - [anon_sym_thread] = ACTIONS(2117), - [anon_sym_atomic] = ACTIONS(2117), - [anon_sym_assert] = ACTIONS(2117), - [anon_sym_defer] = ACTIONS(2117), - [anon_sym_goto] = ACTIONS(2117), - [anon_sym_break] = ACTIONS(2117), - [anon_sym_continue] = ACTIONS(2117), - [anon_sym_return] = ACTIONS(2117), - [anon_sym_DOLLARfor] = ACTIONS(2117), - [anon_sym_for] = ACTIONS(2117), - [anon_sym_POUND] = ACTIONS(2117), - [anon_sym_asm] = ACTIONS(2117), - [anon_sym_AT_LBRACK] = ACTIONS(2117), - [sym___double_quote] = ACTIONS(2117), - [sym___single_quote] = ACTIONS(2117), - [sym___c_double_quote] = ACTIONS(2117), - [sym___c_single_quote] = ACTIONS(2117), - [sym___r_double_quote] = ACTIONS(2117), - [sym___r_single_quote] = ACTIONS(2117), + [anon_sym_DOT] = ACTIONS(2119), + [anon_sym_as] = ACTIONS(2119), + [anon_sym_LBRACE] = ACTIONS(2119), + [anon_sym_COMMA] = ACTIONS(2119), + [anon_sym_const] = ACTIONS(2119), + [anon_sym_LPAREN] = ACTIONS(2119), + [anon_sym_EQ] = ACTIONS(2119), + [anon_sym___global] = ACTIONS(2119), + [anon_sym_type] = ACTIONS(2119), + [anon_sym_PIPE] = ACTIONS(2119), + [anon_sym_fn] = ACTIONS(2119), + [anon_sym_PLUS] = ACTIONS(2119), + [anon_sym_DASH] = ACTIONS(2119), + [anon_sym_STAR] = ACTIONS(2119), + [anon_sym_SLASH] = ACTIONS(2119), + [anon_sym_PERCENT] = ACTIONS(2119), + [anon_sym_LT] = ACTIONS(2119), + [anon_sym_GT] = ACTIONS(2119), + [anon_sym_EQ_EQ] = ACTIONS(2119), + [anon_sym_BANG_EQ] = ACTIONS(2119), + [anon_sym_LT_EQ] = ACTIONS(2119), + [anon_sym_GT_EQ] = ACTIONS(2119), + [anon_sym_LBRACK] = ACTIONS(2117), + [anon_sym_struct] = ACTIONS(2119), + [anon_sym_union] = ACTIONS(2119), + [anon_sym_pub] = ACTIONS(2119), + [anon_sym_mut] = ACTIONS(2119), + [anon_sym_enum] = ACTIONS(2119), + [anon_sym_interface] = ACTIONS(2119), + [anon_sym_PLUS_PLUS] = ACTIONS(2119), + [anon_sym_DASH_DASH] = ACTIONS(2119), + [anon_sym_QMARK] = ACTIONS(2119), + [anon_sym_BANG] = ACTIONS(2119), + [anon_sym_go] = ACTIONS(2119), + [anon_sym_spawn] = ACTIONS(2119), + [anon_sym_json_DOTdecode] = ACTIONS(2119), + [anon_sym_LBRACK2] = ACTIONS(2119), + [anon_sym_TILDE] = ACTIONS(2119), + [anon_sym_CARET] = ACTIONS(2119), + [anon_sym_AMP] = ACTIONS(2119), + [anon_sym_LT_DASH] = ACTIONS(2119), + [anon_sym_LT_LT] = ACTIONS(2119), + [anon_sym_GT_GT] = ACTIONS(2119), + [anon_sym_GT_GT_GT] = ACTIONS(2119), + [anon_sym_AMP_CARET] = ACTIONS(2119), + [anon_sym_AMP_AMP] = ACTIONS(2119), + [anon_sym_PIPE_PIPE] = ACTIONS(2119), + [anon_sym_or] = ACTIONS(2119), + [sym_none] = ACTIONS(2119), + [sym_true] = ACTIONS(2119), + [sym_false] = ACTIONS(2119), + [sym_nil] = ACTIONS(2119), + [anon_sym_QMARK_DOT] = ACTIONS(2119), + [anon_sym_POUND_LBRACK] = ACTIONS(2119), + [anon_sym_if] = ACTIONS(2119), + [anon_sym_DOLLARif] = ACTIONS(2119), + [anon_sym_is] = ACTIONS(2119), + [anon_sym_BANGis] = ACTIONS(2119), + [anon_sym_in] = ACTIONS(2119), + [anon_sym_BANGin] = ACTIONS(2119), + [anon_sym_match] = ACTIONS(2119), + [anon_sym_select] = ACTIONS(2119), + [anon_sym_STAR_EQ] = ACTIONS(2119), + [anon_sym_SLASH_EQ] = ACTIONS(2119), + [anon_sym_PERCENT_EQ] = ACTIONS(2119), + [anon_sym_LT_LT_EQ] = ACTIONS(2119), + [anon_sym_GT_GT_EQ] = ACTIONS(2119), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(2119), + [anon_sym_AMP_EQ] = ACTIONS(2119), + [anon_sym_AMP_CARET_EQ] = ACTIONS(2119), + [anon_sym_PLUS_EQ] = ACTIONS(2119), + [anon_sym_DASH_EQ] = ACTIONS(2119), + [anon_sym_PIPE_EQ] = ACTIONS(2119), + [anon_sym_CARET_EQ] = ACTIONS(2119), + [anon_sym_COLON_EQ] = ACTIONS(2119), + [anon_sym_lock] = ACTIONS(2119), + [anon_sym_rlock] = ACTIONS(2119), + [anon_sym_unsafe] = ACTIONS(2119), + [anon_sym_sql] = ACTIONS(2119), + [sym_int_literal] = ACTIONS(2119), + [sym_float_literal] = ACTIONS(2119), + [sym_rune_literal] = ACTIONS(2119), + [sym_pseudo_compile_time_identifier] = ACTIONS(2119), + [anon_sym_shared] = ACTIONS(2119), + [anon_sym_map_LBRACK] = ACTIONS(2119), + [anon_sym_chan] = ACTIONS(2119), + [anon_sym_thread] = ACTIONS(2119), + [anon_sym_atomic] = ACTIONS(2119), + [anon_sym_assert] = ACTIONS(2119), + [anon_sym_defer] = ACTIONS(2119), + [anon_sym_goto] = ACTIONS(2119), + [anon_sym_break] = ACTIONS(2119), + [anon_sym_continue] = ACTIONS(2119), + [anon_sym_return] = ACTIONS(2119), + [anon_sym_DOLLARfor] = ACTIONS(2119), + [anon_sym_for] = ACTIONS(2119), + [anon_sym_POUND] = ACTIONS(2119), + [anon_sym_asm] = ACTIONS(2119), + [anon_sym_AT_LBRACK] = ACTIONS(2119), + [sym___double_quote] = ACTIONS(2119), + [sym___single_quote] = ACTIONS(2119), + [sym___c_double_quote] = ACTIONS(2119), + [sym___c_single_quote] = ACTIONS(2119), + [sym___r_double_quote] = ACTIONS(2119), + [sym___r_single_quote] = ACTIONS(2119), }, [311] = { [sym_line_comment] = STATE(311), [sym_block_comment] = STATE(311), - [ts_builtin_sym_end] = ACTIONS(2119), - [sym_identifier] = ACTIONS(2121), - [anon_sym_LF] = ACTIONS(2121), - [anon_sym_CR] = ACTIONS(2121), - [anon_sym_CR_LF] = ACTIONS(2121), - [anon_sym_SLASH_SLASH] = ACTIONS(497), - [anon_sym_SLASH_STAR] = ACTIONS(499), - [anon_sym_DOT] = ACTIONS(2121), - [anon_sym_as] = ACTIONS(2121), - [anon_sym_LBRACE] = ACTIONS(2121), - [anon_sym_COMMA] = ACTIONS(2121), - [anon_sym_const] = ACTIONS(2121), - [anon_sym_LPAREN] = ACTIONS(2121), - [anon_sym_EQ] = ACTIONS(2121), - [anon_sym___global] = ACTIONS(2121), - [anon_sym_type] = ACTIONS(2121), - [anon_sym_PIPE] = ACTIONS(2121), - [anon_sym_fn] = ACTIONS(2121), - [anon_sym_PLUS] = ACTIONS(2121), - [anon_sym_DASH] = ACTIONS(2121), - [anon_sym_STAR] = ACTIONS(2121), - [anon_sym_SLASH] = ACTIONS(2121), - [anon_sym_PERCENT] = ACTIONS(2121), - [anon_sym_LT] = ACTIONS(2121), - [anon_sym_GT] = ACTIONS(2121), - [anon_sym_EQ_EQ] = ACTIONS(2121), - [anon_sym_BANG_EQ] = ACTIONS(2121), - [anon_sym_LT_EQ] = ACTIONS(2121), - [anon_sym_GT_EQ] = ACTIONS(2121), - [anon_sym_LBRACK] = ACTIONS(2119), - [anon_sym_struct] = ACTIONS(2121), - [anon_sym_union] = ACTIONS(2121), - [anon_sym_pub] = ACTIONS(2121), - [anon_sym_mut] = ACTIONS(2121), - [anon_sym_enum] = ACTIONS(2121), - [anon_sym_interface] = ACTIONS(2121), - [anon_sym_PLUS_PLUS] = ACTIONS(2121), - [anon_sym_DASH_DASH] = ACTIONS(2121), - [anon_sym_QMARK] = ACTIONS(2121), - [anon_sym_BANG] = ACTIONS(2121), - [anon_sym_go] = ACTIONS(2121), - [anon_sym_spawn] = ACTIONS(2121), - [anon_sym_json_DOTdecode] = ACTIONS(2121), - [anon_sym_LBRACK2] = ACTIONS(2121), - [anon_sym_TILDE] = ACTIONS(2121), - [anon_sym_CARET] = ACTIONS(2121), - [anon_sym_AMP] = ACTIONS(2121), - [anon_sym_LT_DASH] = ACTIONS(2121), - [anon_sym_LT_LT] = ACTIONS(2121), - [anon_sym_GT_GT] = ACTIONS(2121), - [anon_sym_GT_GT_GT] = ACTIONS(2121), - [anon_sym_AMP_CARET] = ACTIONS(2121), - [anon_sym_AMP_AMP] = ACTIONS(2121), - [anon_sym_PIPE_PIPE] = ACTIONS(2121), - [anon_sym_or] = ACTIONS(2121), - [sym_none] = ACTIONS(2121), - [sym_true] = ACTIONS(2121), - [sym_false] = ACTIONS(2121), - [sym_nil] = ACTIONS(2121), - [anon_sym_QMARK_DOT] = ACTIONS(2121), - [anon_sym_POUND_LBRACK] = ACTIONS(2121), - [anon_sym_if] = ACTIONS(2121), - [anon_sym_DOLLARif] = ACTIONS(2121), - [anon_sym_is] = ACTIONS(2121), - [anon_sym_BANGis] = ACTIONS(2121), - [anon_sym_in] = ACTIONS(2121), - [anon_sym_BANGin] = ACTIONS(2121), - [anon_sym_match] = ACTIONS(2121), - [anon_sym_select] = ACTIONS(2121), - [anon_sym_STAR_EQ] = ACTIONS(2121), - [anon_sym_SLASH_EQ] = ACTIONS(2121), - [anon_sym_PERCENT_EQ] = ACTIONS(2121), - [anon_sym_LT_LT_EQ] = ACTIONS(2121), - [anon_sym_GT_GT_EQ] = ACTIONS(2121), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(2121), - [anon_sym_AMP_EQ] = ACTIONS(2121), - [anon_sym_AMP_CARET_EQ] = ACTIONS(2121), - [anon_sym_PLUS_EQ] = ACTIONS(2121), - [anon_sym_DASH_EQ] = ACTIONS(2121), - [anon_sym_PIPE_EQ] = ACTIONS(2121), - [anon_sym_CARET_EQ] = ACTIONS(2121), - [anon_sym_COLON_EQ] = ACTIONS(2121), - [anon_sym_lock] = ACTIONS(2121), - [anon_sym_rlock] = ACTIONS(2121), - [anon_sym_unsafe] = ACTIONS(2121), - [anon_sym_sql] = ACTIONS(2121), - [sym_int_literal] = ACTIONS(2121), - [sym_float_literal] = ACTIONS(2121), - [sym_rune_literal] = ACTIONS(2121), - [sym_pseudo_compile_time_identifier] = ACTIONS(2121), - [anon_sym_shared] = ACTIONS(2121), - [anon_sym_map_LBRACK] = ACTIONS(2121), - [anon_sym_chan] = ACTIONS(2121), - [anon_sym_thread] = ACTIONS(2121), - [anon_sym_atomic] = ACTIONS(2121), - [anon_sym_assert] = ACTIONS(2121), - [anon_sym_defer] = ACTIONS(2121), - [anon_sym_goto] = ACTIONS(2121), - [anon_sym_break] = ACTIONS(2121), - [anon_sym_continue] = ACTIONS(2121), - [anon_sym_return] = ACTIONS(2121), - [anon_sym_DOLLARfor] = ACTIONS(2121), - [anon_sym_for] = ACTIONS(2121), - [anon_sym_POUND] = ACTIONS(2121), - [anon_sym_asm] = ACTIONS(2121), - [anon_sym_AT_LBRACK] = ACTIONS(2121), - [sym___double_quote] = ACTIONS(2121), - [sym___single_quote] = ACTIONS(2121), - [sym___c_double_quote] = ACTIONS(2121), - [sym___c_single_quote] = ACTIONS(2121), - [sym___r_double_quote] = ACTIONS(2121), - [sym___r_single_quote] = ACTIONS(2121), - }, - [312] = { - [sym_line_comment] = STATE(312), - [sym_block_comment] = STATE(312), - [sym__expression] = STATE(2455), - [sym__expression_without_blocks] = STATE(2300), - [sym__expression_with_blocks] = STATE(2300), - [sym_inc_expression] = STATE(2307), - [sym_dec_expression] = STATE(2307), - [sym_or_block_expression] = STATE(2307), - [sym_option_propagation_expression] = STATE(2307), - [sym_result_propagation_expression] = STATE(2307), - [sym_anon_struct_value_expression] = STATE(2380), - [sym_go_expression] = STATE(2307), - [sym_spawn_expression] = STATE(2307), - [sym_parenthesized_expression] = STATE(2307), - [sym_call_expression] = STATE(2307), - [sym_type_initializer] = STATE(2380), - [sym_function_literal] = STATE(2307), - [sym_reference_expression] = STATE(2311), - [sym_type_reference_expression] = STATE(3541), - [sym_unary_expression] = STATE(2307), - [sym_receive_expression] = STATE(2307), - [sym_binary_expression] = STATE(2307), - [sym_as_type_cast_expression] = STATE(2307), - [sym__max_group] = STATE(2307), - [sym_literal] = STATE(2292), - [sym_map_init_expression] = STATE(2380), - [sym_array_creation] = STATE(2307), - [sym_fixed_array_creation] = STATE(2307), - [sym_selector_expression] = STATE(2307), - [sym_index_expression] = STATE(2307), - [sym_slice_expression] = STATE(2307), - [sym_if_expression] = STATE(2380), - [sym_compile_time_if_expression] = STATE(2380), - [sym_is_expression] = STATE(2307), - [sym_in_expression] = STATE(2307), - [sym_enum_fetch] = STATE(2307), - [sym_match_expression] = STATE(2380), - [sym_select_expression] = STATE(2380), - [sym_lock_expression] = STATE(2380), - [sym_unsafe_expression] = STATE(2380), - [sym_sql_expression] = STATE(2380), - [sym_c_string_literal] = STATE(2308), - [sym_raw_string_literal] = STATE(2308), - [sym_interpreted_string_literal] = STATE(2308), - [sym_mutability_modifiers] = STATE(824), - [sym_mutable_expression] = STATE(3922), - [sym_expression_list] = STATE(4367), - [sym_plain_type] = STATE(4297), - [sym__plain_type_without_special] = STATE(2302), - [sym_anon_struct_type] = STATE(2303), - [sym_multi_return_type] = STATE(2302), - [sym_result_type] = STATE(2302), - [sym_option_type] = STATE(2302), - [sym_qualified_type] = STATE(3541), - [sym_fixed_array_type] = STATE(2303), - [sym_array_type] = STATE(2303), - [sym_pointer_type] = STATE(2303), - [sym_wrong_pointer_type] = STATE(2303), - [sym_map_type] = STATE(2303), - [sym_channel_type] = STATE(2303), - [sym_shared_type] = STATE(2303), - [sym_thread_type] = STATE(2303), - [sym_atomic_type] = STATE(2303), - [sym_generic_type] = STATE(2303), - [sym_function_type] = STATE(2303), - [sym_identifier] = ACTIONS(1807), + [sym__expression] = STATE(1273), + [sym__expression_without_blocks] = STATE(1318), + [sym__expression_with_blocks] = STATE(1318), + [sym_inc_expression] = STATE(1319), + [sym_dec_expression] = STATE(1319), + [sym_or_block_expression] = STATE(1319), + [sym_option_propagation_expression] = STATE(1319), + [sym_result_propagation_expression] = STATE(1319), + [sym_anon_struct_value_expression] = STATE(1320), + [sym_go_expression] = STATE(1319), + [sym_spawn_expression] = STATE(1319), + [sym_parenthesized_expression] = STATE(1319), + [sym_call_expression] = STATE(1319), + [sym_type_initializer] = STATE(1320), + [sym_function_literal] = STATE(1319), + [sym_reference_expression] = STATE(1298), + [sym_type_reference_expression] = STATE(3460), + [sym_unary_expression] = STATE(1319), + [sym_receive_expression] = STATE(1319), + [sym_binary_expression] = STATE(1319), + [sym_as_type_cast_expression] = STATE(1319), + [sym__max_group] = STATE(1319), + [sym_literal] = STATE(1314), + [sym_map_init_expression] = STATE(1320), + [sym_array_creation] = STATE(1319), + [sym_fixed_array_creation] = STATE(1319), + [sym_selector_expression] = STATE(1319), + [sym_index_expression] = STATE(1319), + [sym_slice_expression] = STATE(1319), + [sym_if_expression] = STATE(1320), + [sym_compile_time_if_expression] = STATE(1320), + [sym_is_expression] = STATE(1319), + [sym_in_expression] = STATE(1319), + [sym_enum_fetch] = STATE(1319), + [sym_match_expression] = STATE(1320), + [sym_select_expression] = STATE(1320), + [sym_lock_expression] = STATE(1320), + [sym_unsafe_expression] = STATE(1320), + [sym_sql_expression] = STATE(1320), + [sym_c_string_literal] = STATE(1291), + [sym_raw_string_literal] = STATE(1291), + [sym_interpreted_string_literal] = STATE(1291), + [sym_mutability_modifiers] = STATE(639), + [sym_plain_type] = STATE(4307), + [sym__plain_type_without_special] = STATE(2360), + [sym_anon_struct_type] = STATE(2362), + [sym_multi_return_type] = STATE(2360), + [sym_result_type] = STATE(2360), + [sym_option_type] = STATE(2360), + [sym_qualified_type] = STATE(3460), + [sym_fixed_array_type] = STATE(2362), + [sym_array_type] = STATE(2362), + [sym_pointer_type] = STATE(2362), + [sym_wrong_pointer_type] = STATE(2362), + [sym_map_type] = STATE(2362), + [sym_channel_type] = STATE(2362), + [sym_shared_type] = STATE(2362), + [sym_thread_type] = STATE(2362), + [sym_atomic_type] = STATE(2362), + [sym_generic_type] = STATE(2362), + [sym_function_type] = STATE(2362), + [aux_sym__array_repeat1] = STATE(405), + [sym_identifier] = ACTIONS(1360), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1428), - [anon_sym_LBRACE] = ACTIONS(2123), - [anon_sym_LPAREN] = ACTIONS(1432), - [anon_sym_fn] = ACTIONS(1434), - [anon_sym_PLUS] = ACTIONS(1811), - [anon_sym_DASH] = ACTIONS(1811), - [anon_sym_STAR] = ACTIONS(1813), - [anon_sym_struct] = ACTIONS(1440), + [anon_sym_DOT] = ACTIONS(1362), + [anon_sym_LBRACE] = ACTIONS(1364), + [anon_sym_LPAREN] = ACTIONS(1366), + [anon_sym_fn] = ACTIONS(1368), + [anon_sym_PLUS] = ACTIONS(1370), + [anon_sym_DASH] = ACTIONS(1370), + [anon_sym_STAR] = ACTIONS(1372), + [anon_sym_RBRACK] = ACTIONS(2121), + [anon_sym_struct] = ACTIONS(1376), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(1815), - [anon_sym_go] = ACTIONS(1817), - [anon_sym_spawn] = ACTIONS(1819), - [anon_sym_json_DOTdecode] = ACTIONS(1448), - [anon_sym_LBRACK2] = ACTIONS(1821), - [anon_sym_TILDE] = ACTIONS(1811), - [anon_sym_CARET] = ACTIONS(1811), - [anon_sym_AMP] = ACTIONS(1823), - [anon_sym_LT_DASH] = ACTIONS(1825), - [sym_none] = ACTIONS(1456), - [sym_true] = ACTIONS(1456), - [sym_false] = ACTIONS(1456), - [sym_nil] = ACTIONS(1456), - [anon_sym_if] = ACTIONS(1827), - [anon_sym_DOLLARif] = ACTIONS(1460), - [anon_sym_match] = ACTIONS(1462), - [anon_sym_select] = ACTIONS(1829), - [anon_sym_lock] = ACTIONS(1831), - [anon_sym_rlock] = ACTIONS(1831), - [anon_sym_unsafe] = ACTIONS(1833), - [anon_sym_sql] = ACTIONS(1470), - [sym_int_literal] = ACTIONS(1456), - [sym_float_literal] = ACTIONS(1472), - [sym_rune_literal] = ACTIONS(1472), - [sym_pseudo_compile_time_identifier] = ACTIONS(1474), + [anon_sym_BANG] = ACTIONS(1378), + [anon_sym_go] = ACTIONS(1380), + [anon_sym_spawn] = ACTIONS(1382), + [anon_sym_json_DOTdecode] = ACTIONS(1384), + [anon_sym_LBRACK2] = ACTIONS(1386), + [anon_sym_TILDE] = ACTIONS(1370), + [anon_sym_CARET] = ACTIONS(1370), + [anon_sym_AMP] = ACTIONS(1388), + [anon_sym_LT_DASH] = ACTIONS(1390), + [sym_none] = ACTIONS(1392), + [sym_true] = ACTIONS(1392), + [sym_false] = ACTIONS(1392), + [sym_nil] = ACTIONS(1392), + [anon_sym_if] = ACTIONS(1865), + [anon_sym_DOLLARif] = ACTIONS(1396), + [anon_sym_match] = ACTIONS(1398), + [anon_sym_select] = ACTIONS(1400), + [anon_sym_lock] = ACTIONS(1402), + [anon_sym_rlock] = ACTIONS(1402), + [anon_sym_unsafe] = ACTIONS(1871), + [anon_sym_sql] = ACTIONS(1406), + [sym_int_literal] = ACTIONS(1392), + [sym_float_literal] = ACTIONS(1410), + [sym_rune_literal] = ACTIONS(1410), + [sym_pseudo_compile_time_identifier] = ACTIONS(1412), [anon_sym_shared] = ACTIONS(83), [anon_sym_map_LBRACK] = ACTIONS(85), [anon_sym_chan] = ACTIONS(87), [anon_sym_thread] = ACTIONS(89), [anon_sym_atomic] = ACTIONS(91), - [sym___double_quote] = ACTIONS(1478), - [sym___single_quote] = ACTIONS(1480), - [sym___c_double_quote] = ACTIONS(1482), - [sym___c_single_quote] = ACTIONS(1484), - [sym___r_double_quote] = ACTIONS(1486), - [sym___r_single_quote] = ACTIONS(1488), + [sym___double_quote] = ACTIONS(1414), + [sym___single_quote] = ACTIONS(1416), + [sym___c_double_quote] = ACTIONS(1418), + [sym___c_single_quote] = ACTIONS(1420), + [sym___r_double_quote] = ACTIONS(1422), + [sym___r_single_quote] = ACTIONS(1424), + }, + [312] = { + [sym_line_comment] = STATE(312), + [sym_block_comment] = STATE(312), + [ts_builtin_sym_end] = ACTIONS(2123), + [sym_identifier] = ACTIONS(2125), + [anon_sym_LF] = ACTIONS(2125), + [anon_sym_CR] = ACTIONS(2125), + [anon_sym_CR_LF] = ACTIONS(2125), + [anon_sym_SLASH_SLASH] = ACTIONS(497), + [anon_sym_SLASH_STAR] = ACTIONS(499), + [anon_sym_DOT] = ACTIONS(2125), + [anon_sym_as] = ACTIONS(2125), + [anon_sym_LBRACE] = ACTIONS(2125), + [anon_sym_COMMA] = ACTIONS(2125), + [anon_sym_const] = ACTIONS(2125), + [anon_sym_LPAREN] = ACTIONS(2125), + [anon_sym_EQ] = ACTIONS(2125), + [anon_sym___global] = ACTIONS(2125), + [anon_sym_type] = ACTIONS(2125), + [anon_sym_PIPE] = ACTIONS(2125), + [anon_sym_fn] = ACTIONS(2125), + [anon_sym_PLUS] = ACTIONS(2125), + [anon_sym_DASH] = ACTIONS(2125), + [anon_sym_STAR] = ACTIONS(2125), + [anon_sym_SLASH] = ACTIONS(2125), + [anon_sym_PERCENT] = ACTIONS(2125), + [anon_sym_LT] = ACTIONS(2125), + [anon_sym_GT] = ACTIONS(2125), + [anon_sym_EQ_EQ] = ACTIONS(2125), + [anon_sym_BANG_EQ] = ACTIONS(2125), + [anon_sym_LT_EQ] = ACTIONS(2125), + [anon_sym_GT_EQ] = ACTIONS(2125), + [anon_sym_LBRACK] = ACTIONS(2123), + [anon_sym_struct] = ACTIONS(2125), + [anon_sym_union] = ACTIONS(2125), + [anon_sym_pub] = ACTIONS(2125), + [anon_sym_mut] = ACTIONS(2125), + [anon_sym_enum] = ACTIONS(2125), + [anon_sym_interface] = ACTIONS(2125), + [anon_sym_PLUS_PLUS] = ACTIONS(2125), + [anon_sym_DASH_DASH] = ACTIONS(2125), + [anon_sym_QMARK] = ACTIONS(2125), + [anon_sym_BANG] = ACTIONS(2125), + [anon_sym_go] = ACTIONS(2125), + [anon_sym_spawn] = ACTIONS(2125), + [anon_sym_json_DOTdecode] = ACTIONS(2125), + [anon_sym_LBRACK2] = ACTIONS(2125), + [anon_sym_TILDE] = ACTIONS(2125), + [anon_sym_CARET] = ACTIONS(2125), + [anon_sym_AMP] = ACTIONS(2125), + [anon_sym_LT_DASH] = ACTIONS(2125), + [anon_sym_LT_LT] = ACTIONS(2125), + [anon_sym_GT_GT] = ACTIONS(2125), + [anon_sym_GT_GT_GT] = ACTIONS(2125), + [anon_sym_AMP_CARET] = ACTIONS(2125), + [anon_sym_AMP_AMP] = ACTIONS(2125), + [anon_sym_PIPE_PIPE] = ACTIONS(2125), + [anon_sym_or] = ACTIONS(2125), + [sym_none] = ACTIONS(2125), + [sym_true] = ACTIONS(2125), + [sym_false] = ACTIONS(2125), + [sym_nil] = ACTIONS(2125), + [anon_sym_QMARK_DOT] = ACTIONS(2125), + [anon_sym_POUND_LBRACK] = ACTIONS(2125), + [anon_sym_if] = ACTIONS(2125), + [anon_sym_DOLLARif] = ACTIONS(2125), + [anon_sym_is] = ACTIONS(2125), + [anon_sym_BANGis] = ACTIONS(2125), + [anon_sym_in] = ACTIONS(2125), + [anon_sym_BANGin] = ACTIONS(2125), + [anon_sym_match] = ACTIONS(2125), + [anon_sym_select] = ACTIONS(2125), + [anon_sym_STAR_EQ] = ACTIONS(2125), + [anon_sym_SLASH_EQ] = ACTIONS(2125), + [anon_sym_PERCENT_EQ] = ACTIONS(2125), + [anon_sym_LT_LT_EQ] = ACTIONS(2125), + [anon_sym_GT_GT_EQ] = ACTIONS(2125), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(2125), + [anon_sym_AMP_EQ] = ACTIONS(2125), + [anon_sym_AMP_CARET_EQ] = ACTIONS(2125), + [anon_sym_PLUS_EQ] = ACTIONS(2125), + [anon_sym_DASH_EQ] = ACTIONS(2125), + [anon_sym_PIPE_EQ] = ACTIONS(2125), + [anon_sym_CARET_EQ] = ACTIONS(2125), + [anon_sym_COLON_EQ] = ACTIONS(2125), + [anon_sym_lock] = ACTIONS(2125), + [anon_sym_rlock] = ACTIONS(2125), + [anon_sym_unsafe] = ACTIONS(2125), + [anon_sym_sql] = ACTIONS(2125), + [sym_int_literal] = ACTIONS(2125), + [sym_float_literal] = ACTIONS(2125), + [sym_rune_literal] = ACTIONS(2125), + [sym_pseudo_compile_time_identifier] = ACTIONS(2125), + [anon_sym_shared] = ACTIONS(2125), + [anon_sym_map_LBRACK] = ACTIONS(2125), + [anon_sym_chan] = ACTIONS(2125), + [anon_sym_thread] = ACTIONS(2125), + [anon_sym_atomic] = ACTIONS(2125), + [anon_sym_assert] = ACTIONS(2125), + [anon_sym_defer] = ACTIONS(2125), + [anon_sym_goto] = ACTIONS(2125), + [anon_sym_break] = ACTIONS(2125), + [anon_sym_continue] = ACTIONS(2125), + [anon_sym_return] = ACTIONS(2125), + [anon_sym_DOLLARfor] = ACTIONS(2125), + [anon_sym_for] = ACTIONS(2125), + [anon_sym_POUND] = ACTIONS(2125), + [anon_sym_asm] = ACTIONS(2125), + [anon_sym_AT_LBRACK] = ACTIONS(2125), + [sym___double_quote] = ACTIONS(2125), + [sym___single_quote] = ACTIONS(2125), + [sym___c_double_quote] = ACTIONS(2125), + [sym___c_single_quote] = ACTIONS(2125), + [sym___r_double_quote] = ACTIONS(2125), + [sym___r_single_quote] = ACTIONS(2125), }, [313] = { [sym_line_comment] = STATE(313), [sym_block_comment] = STATE(313), - [sym__expression] = STATE(2455), - [sym__expression_without_blocks] = STATE(2300), - [sym__expression_with_blocks] = STATE(2300), - [sym_inc_expression] = STATE(2307), - [sym_dec_expression] = STATE(2307), - [sym_or_block_expression] = STATE(2307), - [sym_option_propagation_expression] = STATE(2307), - [sym_result_propagation_expression] = STATE(2307), - [sym_anon_struct_value_expression] = STATE(2380), - [sym_go_expression] = STATE(2307), - [sym_spawn_expression] = STATE(2307), - [sym_parenthesized_expression] = STATE(2307), - [sym_call_expression] = STATE(2307), - [sym_type_initializer] = STATE(2380), - [sym_function_literal] = STATE(2307), - [sym_reference_expression] = STATE(2311), - [sym_type_reference_expression] = STATE(3541), - [sym_unary_expression] = STATE(2307), - [sym_receive_expression] = STATE(2307), - [sym_binary_expression] = STATE(2307), - [sym_as_type_cast_expression] = STATE(2307), - [sym__max_group] = STATE(2307), - [sym_literal] = STATE(2292), - [sym_map_init_expression] = STATE(2380), - [sym_array_creation] = STATE(2307), - [sym_fixed_array_creation] = STATE(2307), - [sym_selector_expression] = STATE(2307), - [sym_index_expression] = STATE(2307), - [sym_slice_expression] = STATE(2307), - [sym_if_expression] = STATE(2380), - [sym_compile_time_if_expression] = STATE(2380), - [sym_is_expression] = STATE(2307), - [sym_in_expression] = STATE(2307), - [sym_enum_fetch] = STATE(2307), - [sym_match_expression] = STATE(2380), - [sym_select_expression] = STATE(2380), - [sym_lock_expression] = STATE(2380), - [sym_unsafe_expression] = STATE(2380), - [sym_sql_expression] = STATE(2380), - [sym_c_string_literal] = STATE(2308), - [sym_raw_string_literal] = STATE(2308), - [sym_interpreted_string_literal] = STATE(2308), - [sym_mutability_modifiers] = STATE(824), - [sym_mutable_expression] = STATE(3922), - [sym_expression_list] = STATE(4400), - [sym_plain_type] = STATE(4297), - [sym__plain_type_without_special] = STATE(2302), - [sym_anon_struct_type] = STATE(2303), - [sym_multi_return_type] = STATE(2302), - [sym_result_type] = STATE(2302), - [sym_option_type] = STATE(2302), - [sym_qualified_type] = STATE(3541), - [sym_fixed_array_type] = STATE(2303), - [sym_array_type] = STATE(2303), - [sym_pointer_type] = STATE(2303), - [sym_wrong_pointer_type] = STATE(2303), - [sym_map_type] = STATE(2303), - [sym_channel_type] = STATE(2303), - [sym_shared_type] = STATE(2303), - [sym_thread_type] = STATE(2303), - [sym_atomic_type] = STATE(2303), - [sym_generic_type] = STATE(2303), - [sym_function_type] = STATE(2303), - [sym_identifier] = ACTIONS(1807), + [sym__expression] = STATE(2594), + [sym__expression_without_blocks] = STATE(2347), + [sym__expression_with_blocks] = STATE(2347), + [sym_inc_expression] = STATE(2379), + [sym_dec_expression] = STATE(2379), + [sym_or_block_expression] = STATE(2379), + [sym_option_propagation_expression] = STATE(2379), + [sym_result_propagation_expression] = STATE(2379), + [sym_anon_struct_value_expression] = STATE(2378), + [sym_go_expression] = STATE(2379), + [sym_spawn_expression] = STATE(2379), + [sym_parenthesized_expression] = STATE(2379), + [sym_call_expression] = STATE(2379), + [sym_type_initializer] = STATE(2378), + [sym_function_literal] = STATE(2379), + [sym_reference_expression] = STATE(2377), + [sym_type_reference_expression] = STATE(3460), + [sym_unary_expression] = STATE(2379), + [sym_receive_expression] = STATE(2379), + [sym_binary_expression] = STATE(2379), + [sym_as_type_cast_expression] = STATE(2379), + [sym__max_group] = STATE(2379), + [sym_literal] = STATE(2392), + [sym_map_init_expression] = STATE(2378), + [sym_array_creation] = STATE(2379), + [sym_fixed_array_creation] = STATE(2379), + [sym_selector_expression] = STATE(2379), + [sym_index_expression] = STATE(2379), + [sym_slice_expression] = STATE(2379), + [sym_if_expression] = STATE(2378), + [sym_compile_time_if_expression] = STATE(2378), + [sym_is_expression] = STATE(2379), + [sym_in_expression] = STATE(2379), + [sym_enum_fetch] = STATE(2379), + [sym_match_expression] = STATE(2378), + [sym_select_expression] = STATE(2378), + [sym_lock_expression] = STATE(2378), + [sym_unsafe_expression] = STATE(2378), + [sym_sql_expression] = STATE(2378), + [sym_c_string_literal] = STATE(2401), + [sym_raw_string_literal] = STATE(2401), + [sym_interpreted_string_literal] = STATE(2401), + [sym_mutability_modifiers] = STATE(939), + [sym_plain_type] = STATE(4160), + [sym__plain_type_without_special] = STATE(2360), + [sym_anon_struct_type] = STATE(2362), + [sym_multi_return_type] = STATE(2360), + [sym_result_type] = STATE(2360), + [sym_option_type] = STATE(2360), + [sym_qualified_type] = STATE(3460), + [sym_fixed_array_type] = STATE(2362), + [sym_array_type] = STATE(2362), + [sym_pointer_type] = STATE(2362), + [sym_wrong_pointer_type] = STATE(2362), + [sym_map_type] = STATE(2362), + [sym_channel_type] = STATE(2362), + [sym_shared_type] = STATE(2362), + [sym_thread_type] = STATE(2362), + [sym_atomic_type] = STATE(2362), + [sym_generic_type] = STATE(2362), + [sym_function_type] = STATE(2362), + [sym_range] = STATE(4387), + [sym_identifier] = ACTIONS(1428), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1428), - [anon_sym_LBRACE] = ACTIONS(2125), - [anon_sym_LPAREN] = ACTIONS(1432), - [anon_sym_fn] = ACTIONS(1434), - [anon_sym_PLUS] = ACTIONS(1811), - [anon_sym_DASH] = ACTIONS(1811), - [anon_sym_STAR] = ACTIONS(1813), - [anon_sym_struct] = ACTIONS(1440), + [anon_sym_DOT] = ACTIONS(1430), + [anon_sym_LBRACE] = ACTIONS(1432), + [anon_sym_LPAREN] = ACTIONS(1434), + [anon_sym_fn] = ACTIONS(1436), + [anon_sym_PLUS] = ACTIONS(1438), + [anon_sym_DASH] = ACTIONS(1438), + [anon_sym_STAR] = ACTIONS(1440), + [anon_sym_struct] = ACTIONS(1442), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(1815), - [anon_sym_go] = ACTIONS(1817), - [anon_sym_spawn] = ACTIONS(1819), - [anon_sym_json_DOTdecode] = ACTIONS(1448), - [anon_sym_LBRACK2] = ACTIONS(1821), - [anon_sym_TILDE] = ACTIONS(1811), - [anon_sym_CARET] = ACTIONS(1811), - [anon_sym_AMP] = ACTIONS(1823), - [anon_sym_LT_DASH] = ACTIONS(1825), - [sym_none] = ACTIONS(1456), - [sym_true] = ACTIONS(1456), - [sym_false] = ACTIONS(1456), - [sym_nil] = ACTIONS(1456), - [anon_sym_if] = ACTIONS(1827), - [anon_sym_DOLLARif] = ACTIONS(1460), - [anon_sym_match] = ACTIONS(1462), - [anon_sym_select] = ACTIONS(1829), - [anon_sym_lock] = ACTIONS(1831), - [anon_sym_rlock] = ACTIONS(1831), - [anon_sym_unsafe] = ACTIONS(1833), - [anon_sym_sql] = ACTIONS(1470), - [sym_int_literal] = ACTIONS(1456), - [sym_float_literal] = ACTIONS(1472), - [sym_rune_literal] = ACTIONS(1472), - [sym_pseudo_compile_time_identifier] = ACTIONS(1474), + [anon_sym_BANG] = ACTIONS(1444), + [anon_sym_go] = ACTIONS(1446), + [anon_sym_spawn] = ACTIONS(1448), + [anon_sym_json_DOTdecode] = ACTIONS(1450), + [anon_sym_LBRACK2] = ACTIONS(1452), + [anon_sym_TILDE] = ACTIONS(1438), + [anon_sym_CARET] = ACTIONS(1438), + [anon_sym_AMP] = ACTIONS(1454), + [anon_sym_LT_DASH] = ACTIONS(1456), + [sym_none] = ACTIONS(1458), + [sym_true] = ACTIONS(1458), + [sym_false] = ACTIONS(1458), + [sym_nil] = ACTIONS(1458), + [anon_sym_if] = ACTIONS(1833), + [anon_sym_DOLLARif] = ACTIONS(1462), + [anon_sym_match] = ACTIONS(1464), + [anon_sym_select] = ACTIONS(1466), + [anon_sym_lock] = ACTIONS(1468), + [anon_sym_rlock] = ACTIONS(1468), + [anon_sym_unsafe] = ACTIONS(1839), + [anon_sym_sql] = ACTIONS(1472), + [sym_int_literal] = ACTIONS(1458), + [sym_float_literal] = ACTIONS(1474), + [sym_rune_literal] = ACTIONS(1474), + [sym_pseudo_compile_time_identifier] = ACTIONS(1476), [anon_sym_shared] = ACTIONS(83), [anon_sym_map_LBRACK] = ACTIONS(85), [anon_sym_chan] = ACTIONS(87), [anon_sym_thread] = ACTIONS(89), [anon_sym_atomic] = ACTIONS(91), - [sym___double_quote] = ACTIONS(1478), - [sym___single_quote] = ACTIONS(1480), - [sym___c_double_quote] = ACTIONS(1482), - [sym___c_single_quote] = ACTIONS(1484), - [sym___r_double_quote] = ACTIONS(1486), - [sym___r_single_quote] = ACTIONS(1488), + [anon_sym_DOT_DOT] = ACTIONS(1478), + [sym___double_quote] = ACTIONS(1480), + [sym___single_quote] = ACTIONS(1482), + [sym___c_double_quote] = ACTIONS(1484), + [sym___c_single_quote] = ACTIONS(1486), + [sym___r_double_quote] = ACTIONS(1488), + [sym___r_single_quote] = ACTIONS(1490), }, [314] = { [sym_line_comment] = STATE(314), [sym_block_comment] = STATE(314), - [sym__expression] = STATE(1268), - [sym__expression_without_blocks] = STATE(1312), - [sym__expression_with_blocks] = STATE(1312), - [sym_inc_expression] = STATE(1313), - [sym_dec_expression] = STATE(1313), - [sym_or_block_expression] = STATE(1313), - [sym_option_propagation_expression] = STATE(1313), - [sym_result_propagation_expression] = STATE(1313), - [sym_anon_struct_value_expression] = STATE(1314), - [sym_go_expression] = STATE(1313), - [sym_spawn_expression] = STATE(1313), - [sym_parenthesized_expression] = STATE(1313), - [sym_call_expression] = STATE(1313), - [sym_type_initializer] = STATE(1314), - [sym_function_literal] = STATE(1313), - [sym_reference_expression] = STATE(1334), - [sym_type_reference_expression] = STATE(3541), - [sym_unary_expression] = STATE(1313), - [sym_receive_expression] = STATE(1313), - [sym_binary_expression] = STATE(1313), - [sym_as_type_cast_expression] = STATE(1313), - [sym__max_group] = STATE(1313), - [sym_literal] = STATE(1308), - [sym_map_init_expression] = STATE(1314), - [sym_array_creation] = STATE(1313), - [sym_fixed_array_creation] = STATE(1313), - [sym_selector_expression] = STATE(1313), - [sym_index_expression] = STATE(1313), - [sym_slice_expression] = STATE(1313), - [sym_if_expression] = STATE(1314), - [sym_compile_time_if_expression] = STATE(1314), - [sym_is_expression] = STATE(1313), - [sym_in_expression] = STATE(1313), - [sym_enum_fetch] = STATE(1313), - [sym_match_expression] = STATE(1314), - [sym_select_expression] = STATE(1314), - [sym_lock_expression] = STATE(1314), - [sym_unsafe_expression] = STATE(1314), - [sym_sql_expression] = STATE(1314), - [sym_c_string_literal] = STATE(1286), - [sym_raw_string_literal] = STATE(1286), - [sym_interpreted_string_literal] = STATE(1286), - [sym_mutability_modifiers] = STATE(699), - [sym_plain_type] = STATE(4192), - [sym__plain_type_without_special] = STATE(2302), - [sym_anon_struct_type] = STATE(2303), - [sym_multi_return_type] = STATE(2302), - [sym_result_type] = STATE(2302), - [sym_option_type] = STATE(2302), - [sym_qualified_type] = STATE(3541), - [sym_fixed_array_type] = STATE(2303), - [sym_array_type] = STATE(2303), - [sym_pointer_type] = STATE(2303), - [sym_wrong_pointer_type] = STATE(2303), - [sym_map_type] = STATE(2303), - [sym_channel_type] = STATE(2303), - [sym_shared_type] = STATE(2303), - [sym_thread_type] = STATE(2303), - [sym_atomic_type] = STATE(2303), - [sym_generic_type] = STATE(2303), - [sym_function_type] = STATE(2303), - [aux_sym__array_repeat1] = STATE(404), - [sym_identifier] = ACTIONS(1354), + [sym__expression] = STATE(2594), + [sym__expression_without_blocks] = STATE(2347), + [sym__expression_with_blocks] = STATE(2347), + [sym_inc_expression] = STATE(2379), + [sym_dec_expression] = STATE(2379), + [sym_or_block_expression] = STATE(2379), + [sym_option_propagation_expression] = STATE(2379), + [sym_result_propagation_expression] = STATE(2379), + [sym_anon_struct_value_expression] = STATE(2378), + [sym_go_expression] = STATE(2379), + [sym_spawn_expression] = STATE(2379), + [sym_parenthesized_expression] = STATE(2379), + [sym_call_expression] = STATE(2379), + [sym_type_initializer] = STATE(2378), + [sym_function_literal] = STATE(2379), + [sym_reference_expression] = STATE(2377), + [sym_type_reference_expression] = STATE(3460), + [sym_unary_expression] = STATE(2379), + [sym_receive_expression] = STATE(2379), + [sym_binary_expression] = STATE(2379), + [sym_as_type_cast_expression] = STATE(2379), + [sym__max_group] = STATE(2379), + [sym_literal] = STATE(2392), + [sym_map_init_expression] = STATE(2378), + [sym_array_creation] = STATE(2379), + [sym_fixed_array_creation] = STATE(2379), + [sym_selector_expression] = STATE(2379), + [sym_index_expression] = STATE(2379), + [sym_slice_expression] = STATE(2379), + [sym_if_expression] = STATE(2378), + [sym_compile_time_if_expression] = STATE(2378), + [sym_is_expression] = STATE(2379), + [sym_in_expression] = STATE(2379), + [sym_enum_fetch] = STATE(2379), + [sym_match_expression] = STATE(2378), + [sym_select_expression] = STATE(2378), + [sym_lock_expression] = STATE(2378), + [sym_unsafe_expression] = STATE(2378), + [sym_sql_expression] = STATE(2378), + [sym_c_string_literal] = STATE(2401), + [sym_raw_string_literal] = STATE(2401), + [sym_interpreted_string_literal] = STATE(2401), + [sym_mutability_modifiers] = STATE(939), + [sym_plain_type] = STATE(3569), + [sym__plain_type_without_special] = STATE(2360), + [sym_anon_struct_type] = STATE(2362), + [sym_multi_return_type] = STATE(2360), + [sym_result_type] = STATE(2360), + [sym_option_type] = STATE(2360), + [sym_qualified_type] = STATE(3460), + [sym_fixed_array_type] = STATE(2362), + [sym_array_type] = STATE(2362), + [sym_pointer_type] = STATE(2362), + [sym_wrong_pointer_type] = STATE(2362), + [sym_map_type] = STATE(2362), + [sym_channel_type] = STATE(2362), + [sym_shared_type] = STATE(2362), + [sym_thread_type] = STATE(2362), + [sym_atomic_type] = STATE(2362), + [sym_generic_type] = STATE(2362), + [sym_function_type] = STATE(2362), + [sym_range] = STATE(4387), + [sym_identifier] = ACTIONS(2127), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1356), - [anon_sym_LBRACE] = ACTIONS(1358), - [anon_sym_LPAREN] = ACTIONS(1360), - [anon_sym_fn] = ACTIONS(1362), - [anon_sym_PLUS] = ACTIONS(1364), - [anon_sym_DASH] = ACTIONS(1364), - [anon_sym_STAR] = ACTIONS(1366), - [anon_sym_RBRACK] = ACTIONS(2127), - [anon_sym_struct] = ACTIONS(1370), + [anon_sym_DOT] = ACTIONS(1430), + [anon_sym_LBRACE] = ACTIONS(1432), + [anon_sym_LPAREN] = ACTIONS(1434), + [anon_sym_fn] = ACTIONS(1436), + [anon_sym_PLUS] = ACTIONS(1438), + [anon_sym_DASH] = ACTIONS(1438), + [anon_sym_STAR] = ACTIONS(2129), + [anon_sym_struct] = ACTIONS(1442), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(1372), - [anon_sym_go] = ACTIONS(1374), - [anon_sym_spawn] = ACTIONS(1376), - [anon_sym_json_DOTdecode] = ACTIONS(1378), - [anon_sym_LBRACK2] = ACTIONS(1380), - [anon_sym_TILDE] = ACTIONS(1364), - [anon_sym_CARET] = ACTIONS(1364), - [anon_sym_AMP] = ACTIONS(1382), - [anon_sym_LT_DASH] = ACTIONS(1384), - [sym_none] = ACTIONS(1386), - [sym_true] = ACTIONS(1386), - [sym_false] = ACTIONS(1386), - [sym_nil] = ACTIONS(1386), - [anon_sym_if] = ACTIONS(1877), - [anon_sym_DOLLARif] = ACTIONS(1390), - [anon_sym_match] = ACTIONS(1392), - [anon_sym_select] = ACTIONS(1394), - [anon_sym_lock] = ACTIONS(1396), - [anon_sym_rlock] = ACTIONS(1396), - [anon_sym_unsafe] = ACTIONS(1883), - [anon_sym_sql] = ACTIONS(1400), - [sym_int_literal] = ACTIONS(1386), - [sym_float_literal] = ACTIONS(1404), - [sym_rune_literal] = ACTIONS(1404), - [sym_pseudo_compile_time_identifier] = ACTIONS(1406), + [anon_sym_BANG] = ACTIONS(2131), + [anon_sym_go] = ACTIONS(1446), + [anon_sym_spawn] = ACTIONS(1448), + [anon_sym_json_DOTdecode] = ACTIONS(1450), + [anon_sym_LBRACK2] = ACTIONS(1452), + [anon_sym_TILDE] = ACTIONS(1438), + [anon_sym_CARET] = ACTIONS(1438), + [anon_sym_AMP] = ACTIONS(2133), + [anon_sym_LT_DASH] = ACTIONS(1456), + [sym_none] = ACTIONS(1458), + [sym_true] = ACTIONS(1458), + [sym_false] = ACTIONS(1458), + [sym_nil] = ACTIONS(1458), + [anon_sym_if] = ACTIONS(1833), + [anon_sym_DOLLARif] = ACTIONS(1462), + [anon_sym_match] = ACTIONS(1464), + [anon_sym_select] = ACTIONS(1466), + [anon_sym_lock] = ACTIONS(1468), + [anon_sym_rlock] = ACTIONS(1468), + [anon_sym_unsafe] = ACTIONS(1839), + [anon_sym_sql] = ACTIONS(1472), + [sym_int_literal] = ACTIONS(1458), + [sym_float_literal] = ACTIONS(1474), + [sym_rune_literal] = ACTIONS(1474), + [sym_pseudo_compile_time_identifier] = ACTIONS(1476), [anon_sym_shared] = ACTIONS(83), [anon_sym_map_LBRACK] = ACTIONS(85), [anon_sym_chan] = ACTIONS(87), [anon_sym_thread] = ACTIONS(89), [anon_sym_atomic] = ACTIONS(91), - [sym___double_quote] = ACTIONS(1408), - [sym___single_quote] = ACTIONS(1410), - [sym___c_double_quote] = ACTIONS(1412), - [sym___c_single_quote] = ACTIONS(1414), - [sym___r_double_quote] = ACTIONS(1416), - [sym___r_single_quote] = ACTIONS(1418), + [anon_sym_DOT_DOT] = ACTIONS(1478), + [sym___double_quote] = ACTIONS(1480), + [sym___single_quote] = ACTIONS(1482), + [sym___c_double_quote] = ACTIONS(1484), + [sym___c_single_quote] = ACTIONS(1486), + [sym___r_double_quote] = ACTIONS(1488), + [sym___r_single_quote] = ACTIONS(1490), }, [315] = { [sym_line_comment] = STATE(315), [sym_block_comment] = STATE(315), - [sym__expression] = STATE(1268), - [sym__expression_without_blocks] = STATE(1312), - [sym__expression_with_blocks] = STATE(1312), - [sym_inc_expression] = STATE(1313), - [sym_dec_expression] = STATE(1313), - [sym_or_block_expression] = STATE(1313), - [sym_option_propagation_expression] = STATE(1313), - [sym_result_propagation_expression] = STATE(1313), - [sym_anon_struct_value_expression] = STATE(1314), - [sym_go_expression] = STATE(1313), - [sym_spawn_expression] = STATE(1313), - [sym_parenthesized_expression] = STATE(1313), - [sym_call_expression] = STATE(1313), - [sym_type_initializer] = STATE(1314), - [sym_function_literal] = STATE(1313), - [sym_reference_expression] = STATE(1334), - [sym_type_reference_expression] = STATE(3541), - [sym_unary_expression] = STATE(1313), - [sym_receive_expression] = STATE(1313), - [sym_binary_expression] = STATE(1313), - [sym_as_type_cast_expression] = STATE(1313), - [sym__max_group] = STATE(1313), - [sym_literal] = STATE(1308), - [sym_map_init_expression] = STATE(1314), - [sym_array_creation] = STATE(1313), - [sym_fixed_array_creation] = STATE(1313), - [sym_selector_expression] = STATE(1313), - [sym_index_expression] = STATE(1313), - [sym_slice_expression] = STATE(1313), - [sym_if_expression] = STATE(1314), - [sym_compile_time_if_expression] = STATE(1314), - [sym_is_expression] = STATE(1313), - [sym_in_expression] = STATE(1313), - [sym_enum_fetch] = STATE(1313), - [sym_match_expression] = STATE(1314), - [sym_select_expression] = STATE(1314), - [sym_lock_expression] = STATE(1314), - [sym_unsafe_expression] = STATE(1314), - [sym_sql_expression] = STATE(1314), - [sym_c_string_literal] = STATE(1286), - [sym_raw_string_literal] = STATE(1286), - [sym_interpreted_string_literal] = STATE(1286), - [sym_mutability_modifiers] = STATE(699), - [sym_plain_type] = STATE(4192), - [sym__plain_type_without_special] = STATE(2302), - [sym_anon_struct_type] = STATE(2303), - [sym_multi_return_type] = STATE(2302), - [sym_result_type] = STATE(2302), - [sym_option_type] = STATE(2302), - [sym_qualified_type] = STATE(3541), - [sym_fixed_array_type] = STATE(2303), - [sym_array_type] = STATE(2303), - [sym_pointer_type] = STATE(2303), - [sym_wrong_pointer_type] = STATE(2303), - [sym_map_type] = STATE(2303), - [sym_channel_type] = STATE(2303), - [sym_shared_type] = STATE(2303), - [sym_thread_type] = STATE(2303), - [sym_atomic_type] = STATE(2303), - [sym_generic_type] = STATE(2303), - [sym_function_type] = STATE(2303), - [aux_sym__array_repeat1] = STATE(404), - [sym_identifier] = ACTIONS(1354), - [anon_sym_SLASH_SLASH] = ACTIONS(3), - [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1356), - [anon_sym_LBRACE] = ACTIONS(1358), - [anon_sym_LPAREN] = ACTIONS(1360), - [anon_sym_fn] = ACTIONS(1362), - [anon_sym_PLUS] = ACTIONS(1364), - [anon_sym_DASH] = ACTIONS(1364), - [anon_sym_STAR] = ACTIONS(1366), - [anon_sym_RBRACK] = ACTIONS(2129), - [anon_sym_struct] = ACTIONS(1370), - [anon_sym_mut] = ACTIONS(41), - [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(1372), - [anon_sym_go] = ACTIONS(1374), - [anon_sym_spawn] = ACTIONS(1376), - [anon_sym_json_DOTdecode] = ACTIONS(1378), - [anon_sym_LBRACK2] = ACTIONS(1380), - [anon_sym_TILDE] = ACTIONS(1364), - [anon_sym_CARET] = ACTIONS(1364), - [anon_sym_AMP] = ACTIONS(1382), - [anon_sym_LT_DASH] = ACTIONS(1384), - [sym_none] = ACTIONS(1386), - [sym_true] = ACTIONS(1386), - [sym_false] = ACTIONS(1386), - [sym_nil] = ACTIONS(1386), - [anon_sym_if] = ACTIONS(1877), - [anon_sym_DOLLARif] = ACTIONS(1390), - [anon_sym_match] = ACTIONS(1392), - [anon_sym_select] = ACTIONS(1394), - [anon_sym_lock] = ACTIONS(1396), - [anon_sym_rlock] = ACTIONS(1396), - [anon_sym_unsafe] = ACTIONS(1883), - [anon_sym_sql] = ACTIONS(1400), - [sym_int_literal] = ACTIONS(1386), - [sym_float_literal] = ACTIONS(1404), - [sym_rune_literal] = ACTIONS(1404), - [sym_pseudo_compile_time_identifier] = ACTIONS(1406), - [anon_sym_shared] = ACTIONS(83), - [anon_sym_map_LBRACK] = ACTIONS(85), - [anon_sym_chan] = ACTIONS(87), - [anon_sym_thread] = ACTIONS(89), - [anon_sym_atomic] = ACTIONS(91), - [sym___double_quote] = ACTIONS(1408), - [sym___single_quote] = ACTIONS(1410), - [sym___c_double_quote] = ACTIONS(1412), - [sym___c_single_quote] = ACTIONS(1414), - [sym___r_double_quote] = ACTIONS(1416), - [sym___r_single_quote] = ACTIONS(1418), + [ts_builtin_sym_end] = ACTIONS(2135), + [sym_identifier] = ACTIONS(2137), + [anon_sym_LF] = ACTIONS(2137), + [anon_sym_CR] = ACTIONS(2137), + [anon_sym_CR_LF] = ACTIONS(2137), + [anon_sym_SLASH_SLASH] = ACTIONS(497), + [anon_sym_SLASH_STAR] = ACTIONS(499), + [anon_sym_DOT] = ACTIONS(2137), + [anon_sym_as] = ACTIONS(2137), + [anon_sym_LBRACE] = ACTIONS(2137), + [anon_sym_COMMA] = ACTIONS(2137), + [anon_sym_const] = ACTIONS(2137), + [anon_sym_LPAREN] = ACTIONS(2137), + [anon_sym_EQ] = ACTIONS(2137), + [anon_sym___global] = ACTIONS(2137), + [anon_sym_type] = ACTIONS(2137), + [anon_sym_PIPE] = ACTIONS(2137), + [anon_sym_fn] = ACTIONS(2137), + [anon_sym_PLUS] = ACTIONS(2137), + [anon_sym_DASH] = ACTIONS(2137), + [anon_sym_STAR] = ACTIONS(2137), + [anon_sym_SLASH] = ACTIONS(2137), + [anon_sym_PERCENT] = ACTIONS(2137), + [anon_sym_LT] = ACTIONS(2137), + [anon_sym_GT] = ACTIONS(2137), + [anon_sym_EQ_EQ] = ACTIONS(2137), + [anon_sym_BANG_EQ] = ACTIONS(2137), + [anon_sym_LT_EQ] = ACTIONS(2137), + [anon_sym_GT_EQ] = ACTIONS(2137), + [anon_sym_LBRACK] = ACTIONS(2135), + [anon_sym_struct] = ACTIONS(2137), + [anon_sym_union] = ACTIONS(2137), + [anon_sym_pub] = ACTIONS(2137), + [anon_sym_mut] = ACTIONS(2137), + [anon_sym_enum] = ACTIONS(2137), + [anon_sym_interface] = ACTIONS(2137), + [anon_sym_PLUS_PLUS] = ACTIONS(2137), + [anon_sym_DASH_DASH] = ACTIONS(2137), + [anon_sym_QMARK] = ACTIONS(2137), + [anon_sym_BANG] = ACTIONS(2137), + [anon_sym_go] = ACTIONS(2137), + [anon_sym_spawn] = ACTIONS(2137), + [anon_sym_json_DOTdecode] = ACTIONS(2137), + [anon_sym_LBRACK2] = ACTIONS(2137), + [anon_sym_TILDE] = ACTIONS(2137), + [anon_sym_CARET] = ACTIONS(2137), + [anon_sym_AMP] = ACTIONS(2137), + [anon_sym_LT_DASH] = ACTIONS(2137), + [anon_sym_LT_LT] = ACTIONS(2137), + [anon_sym_GT_GT] = ACTIONS(2137), + [anon_sym_GT_GT_GT] = ACTIONS(2137), + [anon_sym_AMP_CARET] = ACTIONS(2137), + [anon_sym_AMP_AMP] = ACTIONS(2137), + [anon_sym_PIPE_PIPE] = ACTIONS(2137), + [anon_sym_or] = ACTIONS(2137), + [sym_none] = ACTIONS(2137), + [sym_true] = ACTIONS(2137), + [sym_false] = ACTIONS(2137), + [sym_nil] = ACTIONS(2137), + [anon_sym_QMARK_DOT] = ACTIONS(2137), + [anon_sym_POUND_LBRACK] = ACTIONS(2137), + [anon_sym_if] = ACTIONS(2137), + [anon_sym_DOLLARif] = ACTIONS(2137), + [anon_sym_is] = ACTIONS(2137), + [anon_sym_BANGis] = ACTIONS(2137), + [anon_sym_in] = ACTIONS(2137), + [anon_sym_BANGin] = ACTIONS(2137), + [anon_sym_match] = ACTIONS(2137), + [anon_sym_select] = ACTIONS(2137), + [anon_sym_STAR_EQ] = ACTIONS(2137), + [anon_sym_SLASH_EQ] = ACTIONS(2137), + [anon_sym_PERCENT_EQ] = ACTIONS(2137), + [anon_sym_LT_LT_EQ] = ACTIONS(2137), + [anon_sym_GT_GT_EQ] = ACTIONS(2137), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(2137), + [anon_sym_AMP_EQ] = ACTIONS(2137), + [anon_sym_AMP_CARET_EQ] = ACTIONS(2137), + [anon_sym_PLUS_EQ] = ACTIONS(2137), + [anon_sym_DASH_EQ] = ACTIONS(2137), + [anon_sym_PIPE_EQ] = ACTIONS(2137), + [anon_sym_CARET_EQ] = ACTIONS(2137), + [anon_sym_COLON_EQ] = ACTIONS(2137), + [anon_sym_lock] = ACTIONS(2137), + [anon_sym_rlock] = ACTIONS(2137), + [anon_sym_unsafe] = ACTIONS(2137), + [anon_sym_sql] = ACTIONS(2137), + [sym_int_literal] = ACTIONS(2137), + [sym_float_literal] = ACTIONS(2137), + [sym_rune_literal] = ACTIONS(2137), + [sym_pseudo_compile_time_identifier] = ACTIONS(2137), + [anon_sym_shared] = ACTIONS(2137), + [anon_sym_map_LBRACK] = ACTIONS(2137), + [anon_sym_chan] = ACTIONS(2137), + [anon_sym_thread] = ACTIONS(2137), + [anon_sym_atomic] = ACTIONS(2137), + [anon_sym_assert] = ACTIONS(2137), + [anon_sym_defer] = ACTIONS(2137), + [anon_sym_goto] = ACTIONS(2137), + [anon_sym_break] = ACTIONS(2137), + [anon_sym_continue] = ACTIONS(2137), + [anon_sym_return] = ACTIONS(2137), + [anon_sym_DOLLARfor] = ACTIONS(2137), + [anon_sym_for] = ACTIONS(2137), + [anon_sym_POUND] = ACTIONS(2137), + [anon_sym_asm] = ACTIONS(2137), + [anon_sym_AT_LBRACK] = ACTIONS(2137), + [sym___double_quote] = ACTIONS(2137), + [sym___single_quote] = ACTIONS(2137), + [sym___c_double_quote] = ACTIONS(2137), + [sym___c_single_quote] = ACTIONS(2137), + [sym___r_double_quote] = ACTIONS(2137), + [sym___r_single_quote] = ACTIONS(2137), }, [316] = { [sym_line_comment] = STATE(316), [sym_block_comment] = STATE(316), - [sym__expression] = STATE(1268), - [sym__expression_without_blocks] = STATE(1312), - [sym__expression_with_blocks] = STATE(1312), - [sym_inc_expression] = STATE(1313), - [sym_dec_expression] = STATE(1313), - [sym_or_block_expression] = STATE(1313), - [sym_option_propagation_expression] = STATE(1313), - [sym_result_propagation_expression] = STATE(1313), - [sym_anon_struct_value_expression] = STATE(1314), - [sym_go_expression] = STATE(1313), - [sym_spawn_expression] = STATE(1313), - [sym_parenthesized_expression] = STATE(1313), - [sym_call_expression] = STATE(1313), - [sym_type_initializer] = STATE(1314), - [sym_function_literal] = STATE(1313), - [sym_reference_expression] = STATE(1394), - [sym_type_reference_expression] = STATE(3541), - [sym_unary_expression] = STATE(1313), - [sym_receive_expression] = STATE(1313), - [sym_binary_expression] = STATE(1313), - [sym_as_type_cast_expression] = STATE(1313), - [sym__max_group] = STATE(1313), - [sym_literal] = STATE(1308), - [sym_map_init_expression] = STATE(1314), - [sym_array_creation] = STATE(1313), - [sym_fixed_array_creation] = STATE(1313), - [sym_selector_expression] = STATE(1393), - [sym_index_expression] = STATE(1313), - [sym_slice_expression] = STATE(1313), - [sym_if_expression] = STATE(1314), - [sym_compile_time_if_expression] = STATE(1314), - [sym_is_expression] = STATE(1313), - [sym_in_expression] = STATE(1313), - [sym_enum_fetch] = STATE(1313), - [sym_match_expression] = STATE(1314), - [sym_select_expression] = STATE(1314), - [sym_lock_expression] = STATE(1314), - [sym_unsafe_expression] = STATE(1314), - [sym_sql_expression] = STATE(1314), - [sym_c_string_literal] = STATE(1286), - [sym_raw_string_literal] = STATE(1286), - [sym_interpreted_string_literal] = STATE(1286), - [sym_mutability_modifiers] = STATE(699), - [sym_plain_type] = STATE(4192), - [sym__plain_type_without_special] = STATE(2302), - [sym_anon_struct_type] = STATE(2303), - [sym_multi_return_type] = STATE(2302), - [sym_result_type] = STATE(2302), - [sym_option_type] = STATE(2302), - [sym_qualified_type] = STATE(3541), - [sym_fixed_array_type] = STATE(2303), - [sym_array_type] = STATE(2303), - [sym_pointer_type] = STATE(2303), - [sym_wrong_pointer_type] = STATE(2303), - [sym_map_type] = STATE(2303), - [sym_channel_type] = STATE(2303), - [sym_shared_type] = STATE(2303), - [sym_thread_type] = STATE(2303), - [sym_atomic_type] = STATE(2303), - [sym_generic_type] = STATE(2303), - [sym_function_type] = STATE(2303), - [aux_sym__array_repeat1] = STATE(377), - [sym_identifier] = ACTIONS(1354), + [sym__expression] = STATE(2558), + [sym__expression_without_blocks] = STATE(2347), + [sym__expression_with_blocks] = STATE(2347), + [sym_inc_expression] = STATE(2379), + [sym_dec_expression] = STATE(2379), + [sym_or_block_expression] = STATE(2379), + [sym_option_propagation_expression] = STATE(2379), + [sym_result_propagation_expression] = STATE(2379), + [sym_anon_struct_value_expression] = STATE(2378), + [sym_go_expression] = STATE(2379), + [sym_spawn_expression] = STATE(2379), + [sym_parenthesized_expression] = STATE(2379), + [sym_call_expression] = STATE(2379), + [sym_type_initializer] = STATE(2378), + [sym_function_literal] = STATE(2379), + [sym_reference_expression] = STATE(2377), + [sym_type_reference_expression] = STATE(3460), + [sym_unary_expression] = STATE(2379), + [sym_receive_expression] = STATE(2379), + [sym_binary_expression] = STATE(2379), + [sym_as_type_cast_expression] = STATE(2379), + [sym__max_group] = STATE(2379), + [sym_literal] = STATE(2392), + [sym_map_init_expression] = STATE(2378), + [sym_array_creation] = STATE(2379), + [sym_fixed_array_creation] = STATE(2379), + [sym_selector_expression] = STATE(2379), + [sym_index_expression] = STATE(2379), + [sym_slice_expression] = STATE(2379), + [sym_if_expression] = STATE(2378), + [sym_compile_time_if_expression] = STATE(2378), + [sym_is_expression] = STATE(2379), + [sym_in_expression] = STATE(2379), + [sym_enum_fetch] = STATE(2379), + [sym_match_expression] = STATE(2378), + [sym_select_expression] = STATE(2378), + [sym_lock_expression] = STATE(2378), + [sym_unsafe_expression] = STATE(2378), + [sym_sql_expression] = STATE(2378), + [sym_c_string_literal] = STATE(2401), + [sym_raw_string_literal] = STATE(2401), + [sym_interpreted_string_literal] = STATE(2401), + [sym_mutability_modifiers] = STATE(900), + [sym_mutable_expression] = STATE(3813), + [sym_expression_list] = STATE(4399), + [sym_plain_type] = STATE(4160), + [sym__plain_type_without_special] = STATE(2360), + [sym_anon_struct_type] = STATE(2362), + [sym_multi_return_type] = STATE(2360), + [sym_result_type] = STATE(2360), + [sym_option_type] = STATE(2360), + [sym_qualified_type] = STATE(3460), + [sym_fixed_array_type] = STATE(2362), + [sym_array_type] = STATE(2362), + [sym_pointer_type] = STATE(2362), + [sym_wrong_pointer_type] = STATE(2362), + [sym_map_type] = STATE(2362), + [sym_channel_type] = STATE(2362), + [sym_shared_type] = STATE(2362), + [sym_thread_type] = STATE(2362), + [sym_atomic_type] = STATE(2362), + [sym_generic_type] = STATE(2362), + [sym_function_type] = STATE(2362), + [sym_identifier] = ACTIONS(1815), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1356), - [anon_sym_LBRACE] = ACTIONS(1358), - [anon_sym_LPAREN] = ACTIONS(1360), - [anon_sym_fn] = ACTIONS(1362), - [anon_sym_PLUS] = ACTIONS(1364), - [anon_sym_DASH] = ACTIONS(1364), - [anon_sym_STAR] = ACTIONS(1366), - [anon_sym_RBRACK] = ACTIONS(2131), - [anon_sym_struct] = ACTIONS(1370), + [anon_sym_DOT] = ACTIONS(1430), + [anon_sym_LBRACE] = ACTIONS(2139), + [anon_sym_LPAREN] = ACTIONS(1434), + [anon_sym_fn] = ACTIONS(1436), + [anon_sym_PLUS] = ACTIONS(1817), + [anon_sym_DASH] = ACTIONS(1817), + [anon_sym_STAR] = ACTIONS(1819), + [anon_sym_struct] = ACTIONS(1442), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(1372), - [anon_sym_go] = ACTIONS(1374), - [anon_sym_spawn] = ACTIONS(1376), - [anon_sym_json_DOTdecode] = ACTIONS(1378), - [anon_sym_LBRACK2] = ACTIONS(1380), - [anon_sym_TILDE] = ACTIONS(1364), - [anon_sym_CARET] = ACTIONS(1364), - [anon_sym_AMP] = ACTIONS(1382), - [anon_sym_LT_DASH] = ACTIONS(1384), - [sym_none] = ACTIONS(1386), - [sym_true] = ACTIONS(1386), - [sym_false] = ACTIONS(1386), - [sym_nil] = ACTIONS(1386), - [anon_sym_if] = ACTIONS(1877), - [anon_sym_DOLLARif] = ACTIONS(1390), - [anon_sym_match] = ACTIONS(1392), - [anon_sym_select] = ACTIONS(1394), - [anon_sym_lock] = ACTIONS(1396), - [anon_sym_rlock] = ACTIONS(1396), - [anon_sym_unsafe] = ACTIONS(1883), - [anon_sym_sql] = ACTIONS(1400), - [sym_int_literal] = ACTIONS(1402), - [sym_float_literal] = ACTIONS(1404), - [sym_rune_literal] = ACTIONS(1404), - [sym_pseudo_compile_time_identifier] = ACTIONS(1406), + [anon_sym_BANG] = ACTIONS(1821), + [anon_sym_go] = ACTIONS(1823), + [anon_sym_spawn] = ACTIONS(1825), + [anon_sym_json_DOTdecode] = ACTIONS(1450), + [anon_sym_LBRACK2] = ACTIONS(1827), + [anon_sym_TILDE] = ACTIONS(1817), + [anon_sym_CARET] = ACTIONS(1817), + [anon_sym_AMP] = ACTIONS(1829), + [anon_sym_LT_DASH] = ACTIONS(1831), + [sym_none] = ACTIONS(1458), + [sym_true] = ACTIONS(1458), + [sym_false] = ACTIONS(1458), + [sym_nil] = ACTIONS(1458), + [anon_sym_if] = ACTIONS(1833), + [anon_sym_DOLLARif] = ACTIONS(1462), + [anon_sym_match] = ACTIONS(1464), + [anon_sym_select] = ACTIONS(1835), + [anon_sym_lock] = ACTIONS(1837), + [anon_sym_rlock] = ACTIONS(1837), + [anon_sym_unsafe] = ACTIONS(1839), + [anon_sym_sql] = ACTIONS(1472), + [sym_int_literal] = ACTIONS(1458), + [sym_float_literal] = ACTIONS(1474), + [sym_rune_literal] = ACTIONS(1474), + [sym_pseudo_compile_time_identifier] = ACTIONS(1476), [anon_sym_shared] = ACTIONS(83), [anon_sym_map_LBRACK] = ACTIONS(85), [anon_sym_chan] = ACTIONS(87), [anon_sym_thread] = ACTIONS(89), [anon_sym_atomic] = ACTIONS(91), - [sym___double_quote] = ACTIONS(1408), - [sym___single_quote] = ACTIONS(1410), - [sym___c_double_quote] = ACTIONS(1412), - [sym___c_single_quote] = ACTIONS(1414), - [sym___r_double_quote] = ACTIONS(1416), - [sym___r_single_quote] = ACTIONS(1418), + [sym___double_quote] = ACTIONS(1480), + [sym___single_quote] = ACTIONS(1482), + [sym___c_double_quote] = ACTIONS(1484), + [sym___c_single_quote] = ACTIONS(1486), + [sym___r_double_quote] = ACTIONS(1488), + [sym___r_single_quote] = ACTIONS(1490), }, [317] = { [sym_line_comment] = STATE(317), [sym_block_comment] = STATE(317), - [sym__expression] = STATE(1268), - [sym__expression_without_blocks] = STATE(1312), - [sym__expression_with_blocks] = STATE(1312), - [sym_inc_expression] = STATE(1313), - [sym_dec_expression] = STATE(1313), - [sym_or_block_expression] = STATE(1313), - [sym_option_propagation_expression] = STATE(1313), - [sym_result_propagation_expression] = STATE(1313), - [sym_anon_struct_value_expression] = STATE(1314), - [sym_go_expression] = STATE(1313), - [sym_spawn_expression] = STATE(1313), - [sym_parenthesized_expression] = STATE(1313), - [sym_call_expression] = STATE(1313), - [sym_type_initializer] = STATE(1314), - [sym_function_literal] = STATE(1313), - [sym_reference_expression] = STATE(1334), - [sym_type_reference_expression] = STATE(3541), - [sym_unary_expression] = STATE(1313), - [sym_receive_expression] = STATE(1313), - [sym_binary_expression] = STATE(1313), - [sym_as_type_cast_expression] = STATE(1313), - [sym__max_group] = STATE(1313), - [sym_literal] = STATE(1308), - [sym_map_init_expression] = STATE(1314), - [sym_array_creation] = STATE(1313), - [sym_fixed_array_creation] = STATE(1313), - [sym_selector_expression] = STATE(1313), - [sym_index_expression] = STATE(1313), - [sym_slice_expression] = STATE(1313), - [sym_if_expression] = STATE(1314), - [sym_compile_time_if_expression] = STATE(1314), - [sym_is_expression] = STATE(1313), - [sym_in_expression] = STATE(1313), - [sym_enum_fetch] = STATE(1313), - [sym_match_expression] = STATE(1314), - [sym_select_expression] = STATE(1314), - [sym_lock_expression] = STATE(1314), - [sym_unsafe_expression] = STATE(1314), - [sym_sql_expression] = STATE(1314), - [sym_c_string_literal] = STATE(1286), - [sym_raw_string_literal] = STATE(1286), - [sym_interpreted_string_literal] = STATE(1286), - [sym_mutability_modifiers] = STATE(699), - [sym_plain_type] = STATE(4192), - [sym__plain_type_without_special] = STATE(2302), - [sym_anon_struct_type] = STATE(2303), - [sym_multi_return_type] = STATE(2302), - [sym_result_type] = STATE(2302), - [sym_option_type] = STATE(2302), - [sym_qualified_type] = STATE(3541), - [sym_fixed_array_type] = STATE(2303), - [sym_array_type] = STATE(2303), - [sym_pointer_type] = STATE(2303), - [sym_wrong_pointer_type] = STATE(2303), - [sym_map_type] = STATE(2303), - [sym_channel_type] = STATE(2303), - [sym_shared_type] = STATE(2303), - [sym_thread_type] = STATE(2303), - [sym_atomic_type] = STATE(2303), - [sym_generic_type] = STATE(2303), - [sym_function_type] = STATE(2303), - [aux_sym__array_repeat1] = STATE(404), - [sym_identifier] = ACTIONS(1354), - [anon_sym_SLASH_SLASH] = ACTIONS(3), - [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1356), - [anon_sym_LBRACE] = ACTIONS(1358), - [anon_sym_LPAREN] = ACTIONS(1360), - [anon_sym_fn] = ACTIONS(1362), - [anon_sym_PLUS] = ACTIONS(1364), - [anon_sym_DASH] = ACTIONS(1364), - [anon_sym_STAR] = ACTIONS(1366), - [anon_sym_RBRACK] = ACTIONS(2133), - [anon_sym_struct] = ACTIONS(1370), - [anon_sym_mut] = ACTIONS(41), - [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(1372), - [anon_sym_go] = ACTIONS(1374), - [anon_sym_spawn] = ACTIONS(1376), - [anon_sym_json_DOTdecode] = ACTIONS(1378), - [anon_sym_LBRACK2] = ACTIONS(1380), - [anon_sym_TILDE] = ACTIONS(1364), - [anon_sym_CARET] = ACTIONS(1364), - [anon_sym_AMP] = ACTIONS(1382), - [anon_sym_LT_DASH] = ACTIONS(1384), - [sym_none] = ACTIONS(1386), - [sym_true] = ACTIONS(1386), - [sym_false] = ACTIONS(1386), - [sym_nil] = ACTIONS(1386), - [anon_sym_if] = ACTIONS(1877), - [anon_sym_DOLLARif] = ACTIONS(1390), - [anon_sym_match] = ACTIONS(1392), - [anon_sym_select] = ACTIONS(1394), - [anon_sym_lock] = ACTIONS(1396), - [anon_sym_rlock] = ACTIONS(1396), - [anon_sym_unsafe] = ACTIONS(1883), - [anon_sym_sql] = ACTIONS(1400), - [sym_int_literal] = ACTIONS(1386), - [sym_float_literal] = ACTIONS(1404), - [sym_rune_literal] = ACTIONS(1404), - [sym_pseudo_compile_time_identifier] = ACTIONS(1406), - [anon_sym_shared] = ACTIONS(83), - [anon_sym_map_LBRACK] = ACTIONS(85), - [anon_sym_chan] = ACTIONS(87), - [anon_sym_thread] = ACTIONS(89), - [anon_sym_atomic] = ACTIONS(91), - [sym___double_quote] = ACTIONS(1408), - [sym___single_quote] = ACTIONS(1410), - [sym___c_double_quote] = ACTIONS(1412), - [sym___c_single_quote] = ACTIONS(1414), - [sym___r_double_quote] = ACTIONS(1416), - [sym___r_single_quote] = ACTIONS(1418), + [ts_builtin_sym_end] = ACTIONS(2141), + [sym_identifier] = ACTIONS(2143), + [anon_sym_LF] = ACTIONS(2143), + [anon_sym_CR] = ACTIONS(2143), + [anon_sym_CR_LF] = ACTIONS(2143), + [anon_sym_SLASH_SLASH] = ACTIONS(497), + [anon_sym_SLASH_STAR] = ACTIONS(499), + [anon_sym_DOT] = ACTIONS(2143), + [anon_sym_as] = ACTIONS(2143), + [anon_sym_LBRACE] = ACTIONS(2143), + [anon_sym_COMMA] = ACTIONS(2143), + [anon_sym_const] = ACTIONS(2143), + [anon_sym_LPAREN] = ACTIONS(2143), + [anon_sym_EQ] = ACTIONS(2143), + [anon_sym___global] = ACTIONS(2143), + [anon_sym_type] = ACTIONS(2143), + [anon_sym_PIPE] = ACTIONS(2143), + [anon_sym_fn] = ACTIONS(2143), + [anon_sym_PLUS] = ACTIONS(2143), + [anon_sym_DASH] = ACTIONS(2143), + [anon_sym_STAR] = ACTIONS(2143), + [anon_sym_SLASH] = ACTIONS(2143), + [anon_sym_PERCENT] = ACTIONS(2143), + [anon_sym_LT] = ACTIONS(2143), + [anon_sym_GT] = ACTIONS(2143), + [anon_sym_EQ_EQ] = ACTIONS(2143), + [anon_sym_BANG_EQ] = ACTIONS(2143), + [anon_sym_LT_EQ] = ACTIONS(2143), + [anon_sym_GT_EQ] = ACTIONS(2143), + [anon_sym_LBRACK] = ACTIONS(2141), + [anon_sym_struct] = ACTIONS(2143), + [anon_sym_union] = ACTIONS(2143), + [anon_sym_pub] = ACTIONS(2143), + [anon_sym_mut] = ACTIONS(2143), + [anon_sym_enum] = ACTIONS(2143), + [anon_sym_interface] = ACTIONS(2143), + [anon_sym_PLUS_PLUS] = ACTIONS(2143), + [anon_sym_DASH_DASH] = ACTIONS(2143), + [anon_sym_QMARK] = ACTIONS(2143), + [anon_sym_BANG] = ACTIONS(2143), + [anon_sym_go] = ACTIONS(2143), + [anon_sym_spawn] = ACTIONS(2143), + [anon_sym_json_DOTdecode] = ACTIONS(2143), + [anon_sym_LBRACK2] = ACTIONS(2143), + [anon_sym_TILDE] = ACTIONS(2143), + [anon_sym_CARET] = ACTIONS(2143), + [anon_sym_AMP] = ACTIONS(2143), + [anon_sym_LT_DASH] = ACTIONS(2143), + [anon_sym_LT_LT] = ACTIONS(2143), + [anon_sym_GT_GT] = ACTIONS(2143), + [anon_sym_GT_GT_GT] = ACTIONS(2143), + [anon_sym_AMP_CARET] = ACTIONS(2143), + [anon_sym_AMP_AMP] = ACTIONS(2143), + [anon_sym_PIPE_PIPE] = ACTIONS(2143), + [anon_sym_or] = ACTIONS(2143), + [sym_none] = ACTIONS(2143), + [sym_true] = ACTIONS(2143), + [sym_false] = ACTIONS(2143), + [sym_nil] = ACTIONS(2143), + [anon_sym_QMARK_DOT] = ACTIONS(2143), + [anon_sym_POUND_LBRACK] = ACTIONS(2143), + [anon_sym_if] = ACTIONS(2143), + [anon_sym_DOLLARif] = ACTIONS(2143), + [anon_sym_is] = ACTIONS(2143), + [anon_sym_BANGis] = ACTIONS(2143), + [anon_sym_in] = ACTIONS(2143), + [anon_sym_BANGin] = ACTIONS(2143), + [anon_sym_match] = ACTIONS(2143), + [anon_sym_select] = ACTIONS(2143), + [anon_sym_STAR_EQ] = ACTIONS(2143), + [anon_sym_SLASH_EQ] = ACTIONS(2143), + [anon_sym_PERCENT_EQ] = ACTIONS(2143), + [anon_sym_LT_LT_EQ] = ACTIONS(2143), + [anon_sym_GT_GT_EQ] = ACTIONS(2143), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(2143), + [anon_sym_AMP_EQ] = ACTIONS(2143), + [anon_sym_AMP_CARET_EQ] = ACTIONS(2143), + [anon_sym_PLUS_EQ] = ACTIONS(2143), + [anon_sym_DASH_EQ] = ACTIONS(2143), + [anon_sym_PIPE_EQ] = ACTIONS(2143), + [anon_sym_CARET_EQ] = ACTIONS(2143), + [anon_sym_COLON_EQ] = ACTIONS(2143), + [anon_sym_lock] = ACTIONS(2143), + [anon_sym_rlock] = ACTIONS(2143), + [anon_sym_unsafe] = ACTIONS(2143), + [anon_sym_sql] = ACTIONS(2143), + [sym_int_literal] = ACTIONS(2143), + [sym_float_literal] = ACTIONS(2143), + [sym_rune_literal] = ACTIONS(2143), + [sym_pseudo_compile_time_identifier] = ACTIONS(2143), + [anon_sym_shared] = ACTIONS(2143), + [anon_sym_map_LBRACK] = ACTIONS(2143), + [anon_sym_chan] = ACTIONS(2143), + [anon_sym_thread] = ACTIONS(2143), + [anon_sym_atomic] = ACTIONS(2143), + [anon_sym_assert] = ACTIONS(2143), + [anon_sym_defer] = ACTIONS(2143), + [anon_sym_goto] = ACTIONS(2143), + [anon_sym_break] = ACTIONS(2143), + [anon_sym_continue] = ACTIONS(2143), + [anon_sym_return] = ACTIONS(2143), + [anon_sym_DOLLARfor] = ACTIONS(2143), + [anon_sym_for] = ACTIONS(2143), + [anon_sym_POUND] = ACTIONS(2143), + [anon_sym_asm] = ACTIONS(2143), + [anon_sym_AT_LBRACK] = ACTIONS(2143), + [sym___double_quote] = ACTIONS(2143), + [sym___single_quote] = ACTIONS(2143), + [sym___c_double_quote] = ACTIONS(2143), + [sym___c_single_quote] = ACTIONS(2143), + [sym___r_double_quote] = ACTIONS(2143), + [sym___r_single_quote] = ACTIONS(2143), }, [318] = { [sym_line_comment] = STATE(318), [sym_block_comment] = STATE(318), - [sym__expression] = STATE(2599), - [sym__expression_without_blocks] = STATE(2300), - [sym__expression_with_blocks] = STATE(2300), - [sym_inc_expression] = STATE(2307), - [sym_dec_expression] = STATE(2307), - [sym_or_block_expression] = STATE(2307), - [sym_option_propagation_expression] = STATE(2307), - [sym_result_propagation_expression] = STATE(2307), - [sym_anon_struct_value_expression] = STATE(2380), - [sym_go_expression] = STATE(2307), - [sym_spawn_expression] = STATE(2307), - [sym_parenthesized_expression] = STATE(2307), - [sym_call_expression] = STATE(2307), - [sym_type_initializer] = STATE(2380), - [sym_function_literal] = STATE(2307), - [sym_reference_expression] = STATE(2311), - [sym_type_reference_expression] = STATE(3541), - [sym_unary_expression] = STATE(2307), - [sym_receive_expression] = STATE(2307), - [sym_binary_expression] = STATE(2307), - [sym_as_type_cast_expression] = STATE(2307), - [sym__max_group] = STATE(2307), - [sym_literal] = STATE(2292), - [sym_map_init_expression] = STATE(2380), - [sym_array_creation] = STATE(2307), - [sym_fixed_array_creation] = STATE(2307), - [sym_selector_expression] = STATE(2307), - [sym_index_expression] = STATE(2307), - [sym_slice_expression] = STATE(2307), - [sym_if_expression] = STATE(2380), - [sym_compile_time_if_expression] = STATE(2380), - [sym_is_expression] = STATE(2307), - [sym_in_expression] = STATE(2307), - [sym_enum_fetch] = STATE(2307), - [sym_match_expression] = STATE(2380), - [sym_select_expression] = STATE(2380), - [sym_lock_expression] = STATE(2380), - [sym_unsafe_expression] = STATE(2380), - [sym_sql_expression] = STATE(2380), - [sym_c_string_literal] = STATE(2308), - [sym_raw_string_literal] = STATE(2308), - [sym_interpreted_string_literal] = STATE(2308), - [sym_mutability_modifiers] = STATE(939), - [sym_plain_type] = STATE(4297), - [sym__plain_type_without_special] = STATE(2302), - [sym_anon_struct_type] = STATE(2303), - [sym_multi_return_type] = STATE(2302), - [sym_result_type] = STATE(2302), - [sym_option_type] = STATE(2302), - [sym_qualified_type] = STATE(3541), - [sym_fixed_array_type] = STATE(2303), - [sym_array_type] = STATE(2303), - [sym_pointer_type] = STATE(2303), - [sym_wrong_pointer_type] = STATE(2303), - [sym_map_type] = STATE(2303), - [sym_channel_type] = STATE(2303), - [sym_shared_type] = STATE(2303), - [sym_thread_type] = STATE(2303), - [sym_atomic_type] = STATE(2303), - [sym_generic_type] = STATE(2303), - [sym_function_type] = STATE(2303), - [sym_range] = STATE(4521), - [sym_identifier] = ACTIONS(1426), - [anon_sym_SLASH_SLASH] = ACTIONS(3), - [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1428), - [anon_sym_LBRACE] = ACTIONS(1430), - [anon_sym_LPAREN] = ACTIONS(1432), - [anon_sym_fn] = ACTIONS(1434), - [anon_sym_PLUS] = ACTIONS(1436), - [anon_sym_DASH] = ACTIONS(1436), - [anon_sym_STAR] = ACTIONS(1438), - [anon_sym_struct] = ACTIONS(1440), - [anon_sym_mut] = ACTIONS(41), - [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(1442), - [anon_sym_go] = ACTIONS(1444), - [anon_sym_spawn] = ACTIONS(1446), - [anon_sym_json_DOTdecode] = ACTIONS(1448), - [anon_sym_LBRACK2] = ACTIONS(1450), - [anon_sym_TILDE] = ACTIONS(1436), - [anon_sym_CARET] = ACTIONS(1436), - [anon_sym_AMP] = ACTIONS(1452), - [anon_sym_LT_DASH] = ACTIONS(1454), - [sym_none] = ACTIONS(1456), - [sym_true] = ACTIONS(1456), - [sym_false] = ACTIONS(1456), - [sym_nil] = ACTIONS(1456), - [anon_sym_if] = ACTIONS(1827), - [anon_sym_DOLLARif] = ACTIONS(1460), - [anon_sym_match] = ACTIONS(1462), - [anon_sym_select] = ACTIONS(1464), - [anon_sym_lock] = ACTIONS(1466), - [anon_sym_rlock] = ACTIONS(1466), - [anon_sym_unsafe] = ACTIONS(1833), - [anon_sym_sql] = ACTIONS(1470), - [sym_int_literal] = ACTIONS(1456), - [sym_float_literal] = ACTIONS(1472), - [sym_rune_literal] = ACTIONS(1472), - [sym_pseudo_compile_time_identifier] = ACTIONS(1474), - [anon_sym_shared] = ACTIONS(83), - [anon_sym_map_LBRACK] = ACTIONS(85), - [anon_sym_chan] = ACTIONS(87), - [anon_sym_thread] = ACTIONS(89), - [anon_sym_atomic] = ACTIONS(91), - [anon_sym_DOT_DOT] = ACTIONS(1476), - [sym___double_quote] = ACTIONS(1478), - [sym___single_quote] = ACTIONS(1480), - [sym___c_double_quote] = ACTIONS(1482), - [sym___c_single_quote] = ACTIONS(1484), - [sym___r_double_quote] = ACTIONS(1486), - [sym___r_single_quote] = ACTIONS(1488), + [ts_builtin_sym_end] = ACTIONS(1887), + [sym_identifier] = ACTIONS(1889), + [anon_sym_LF] = ACTIONS(1889), + [anon_sym_CR] = ACTIONS(1889), + [anon_sym_CR_LF] = ACTIONS(1889), + [anon_sym_SLASH_SLASH] = ACTIONS(497), + [anon_sym_SLASH_STAR] = ACTIONS(499), + [anon_sym_DOT] = ACTIONS(1889), + [anon_sym_as] = ACTIONS(1889), + [anon_sym_LBRACE] = ACTIONS(1889), + [anon_sym_COMMA] = ACTIONS(1889), + [anon_sym_const] = ACTIONS(1889), + [anon_sym_LPAREN] = ACTIONS(1889), + [anon_sym_EQ] = ACTIONS(1889), + [anon_sym___global] = ACTIONS(1889), + [anon_sym_type] = ACTIONS(1889), + [anon_sym_PIPE] = ACTIONS(1889), + [anon_sym_fn] = ACTIONS(1889), + [anon_sym_PLUS] = ACTIONS(1889), + [anon_sym_DASH] = ACTIONS(1889), + [anon_sym_STAR] = ACTIONS(1889), + [anon_sym_SLASH] = ACTIONS(1889), + [anon_sym_PERCENT] = ACTIONS(1889), + [anon_sym_LT] = ACTIONS(1889), + [anon_sym_GT] = ACTIONS(1889), + [anon_sym_EQ_EQ] = ACTIONS(1889), + [anon_sym_BANG_EQ] = ACTIONS(1889), + [anon_sym_LT_EQ] = ACTIONS(1889), + [anon_sym_GT_EQ] = ACTIONS(1889), + [anon_sym_LBRACK] = ACTIONS(1887), + [anon_sym_struct] = ACTIONS(1889), + [anon_sym_union] = ACTIONS(1889), + [anon_sym_pub] = ACTIONS(1889), + [anon_sym_mut] = ACTIONS(1889), + [anon_sym_enum] = ACTIONS(1889), + [anon_sym_interface] = ACTIONS(1889), + [anon_sym_PLUS_PLUS] = ACTIONS(1889), + [anon_sym_DASH_DASH] = ACTIONS(1889), + [anon_sym_QMARK] = ACTIONS(1889), + [anon_sym_BANG] = ACTIONS(1889), + [anon_sym_go] = ACTIONS(1889), + [anon_sym_spawn] = ACTIONS(1889), + [anon_sym_json_DOTdecode] = ACTIONS(1889), + [anon_sym_LBRACK2] = ACTIONS(1889), + [anon_sym_TILDE] = ACTIONS(1889), + [anon_sym_CARET] = ACTIONS(1889), + [anon_sym_AMP] = ACTIONS(1889), + [anon_sym_LT_DASH] = ACTIONS(1889), + [anon_sym_LT_LT] = ACTIONS(1889), + [anon_sym_GT_GT] = ACTIONS(1889), + [anon_sym_GT_GT_GT] = ACTIONS(1889), + [anon_sym_AMP_CARET] = ACTIONS(1889), + [anon_sym_AMP_AMP] = ACTIONS(1889), + [anon_sym_PIPE_PIPE] = ACTIONS(1889), + [anon_sym_or] = ACTIONS(1889), + [sym_none] = ACTIONS(1889), + [sym_true] = ACTIONS(1889), + [sym_false] = ACTIONS(1889), + [sym_nil] = ACTIONS(1889), + [anon_sym_QMARK_DOT] = ACTIONS(1889), + [anon_sym_POUND_LBRACK] = ACTIONS(1889), + [anon_sym_if] = ACTIONS(1889), + [anon_sym_DOLLARif] = ACTIONS(1889), + [anon_sym_is] = ACTIONS(1889), + [anon_sym_BANGis] = ACTIONS(1889), + [anon_sym_in] = ACTIONS(1889), + [anon_sym_BANGin] = ACTIONS(1889), + [anon_sym_match] = ACTIONS(1889), + [anon_sym_select] = ACTIONS(1889), + [anon_sym_STAR_EQ] = ACTIONS(1889), + [anon_sym_SLASH_EQ] = ACTIONS(1889), + [anon_sym_PERCENT_EQ] = ACTIONS(1889), + [anon_sym_LT_LT_EQ] = ACTIONS(1889), + [anon_sym_GT_GT_EQ] = ACTIONS(1889), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(1889), + [anon_sym_AMP_EQ] = ACTIONS(1889), + [anon_sym_AMP_CARET_EQ] = ACTIONS(1889), + [anon_sym_PLUS_EQ] = ACTIONS(1889), + [anon_sym_DASH_EQ] = ACTIONS(1889), + [anon_sym_PIPE_EQ] = ACTIONS(1889), + [anon_sym_CARET_EQ] = ACTIONS(1889), + [anon_sym_COLON_EQ] = ACTIONS(1889), + [anon_sym_lock] = ACTIONS(1889), + [anon_sym_rlock] = ACTIONS(1889), + [anon_sym_unsafe] = ACTIONS(1889), + [anon_sym_sql] = ACTIONS(1889), + [sym_int_literal] = ACTIONS(1889), + [sym_float_literal] = ACTIONS(1889), + [sym_rune_literal] = ACTIONS(1889), + [sym_pseudo_compile_time_identifier] = ACTIONS(1889), + [anon_sym_shared] = ACTIONS(1889), + [anon_sym_map_LBRACK] = ACTIONS(1889), + [anon_sym_chan] = ACTIONS(1889), + [anon_sym_thread] = ACTIONS(1889), + [anon_sym_atomic] = ACTIONS(1889), + [anon_sym_assert] = ACTIONS(1889), + [anon_sym_defer] = ACTIONS(1889), + [anon_sym_goto] = ACTIONS(1889), + [anon_sym_break] = ACTIONS(1889), + [anon_sym_continue] = ACTIONS(1889), + [anon_sym_return] = ACTIONS(1889), + [anon_sym_DOLLARfor] = ACTIONS(1889), + [anon_sym_for] = ACTIONS(1889), + [anon_sym_POUND] = ACTIONS(1889), + [anon_sym_asm] = ACTIONS(1889), + [anon_sym_AT_LBRACK] = ACTIONS(1889), + [sym___double_quote] = ACTIONS(1889), + [sym___single_quote] = ACTIONS(1889), + [sym___c_double_quote] = ACTIONS(1889), + [sym___c_single_quote] = ACTIONS(1889), + [sym___r_double_quote] = ACTIONS(1889), + [sym___r_single_quote] = ACTIONS(1889), }, [319] = { [sym_line_comment] = STATE(319), [sym_block_comment] = STATE(319), - [sym__expression] = STATE(2599), - [sym__expression_without_blocks] = STATE(2300), - [sym__expression_with_blocks] = STATE(2300), - [sym_inc_expression] = STATE(2307), - [sym_dec_expression] = STATE(2307), - [sym_or_block_expression] = STATE(2307), - [sym_option_propagation_expression] = STATE(2307), - [sym_result_propagation_expression] = STATE(2307), - [sym_anon_struct_value_expression] = STATE(2380), - [sym_go_expression] = STATE(2307), - [sym_spawn_expression] = STATE(2307), - [sym_parenthesized_expression] = STATE(2307), - [sym_call_expression] = STATE(2307), - [sym_type_initializer] = STATE(2380), - [sym_function_literal] = STATE(2307), - [sym_reference_expression] = STATE(2311), - [sym_type_reference_expression] = STATE(3541), - [sym_unary_expression] = STATE(2307), - [sym_receive_expression] = STATE(2307), - [sym_binary_expression] = STATE(2307), - [sym_as_type_cast_expression] = STATE(2307), - [sym__max_group] = STATE(2307), - [sym_literal] = STATE(2292), - [sym_map_init_expression] = STATE(2380), - [sym_array_creation] = STATE(2307), - [sym_fixed_array_creation] = STATE(2307), - [sym_selector_expression] = STATE(2307), - [sym_index_expression] = STATE(2307), - [sym_slice_expression] = STATE(2307), - [sym_if_expression] = STATE(2380), - [sym_compile_time_if_expression] = STATE(2380), - [sym_is_expression] = STATE(2307), - [sym_in_expression] = STATE(2307), - [sym_enum_fetch] = STATE(2307), - [sym_match_expression] = STATE(2380), - [sym_select_expression] = STATE(2380), - [sym_lock_expression] = STATE(2380), - [sym_unsafe_expression] = STATE(2380), - [sym_sql_expression] = STATE(2380), - [sym_c_string_literal] = STATE(2308), - [sym_raw_string_literal] = STATE(2308), - [sym_interpreted_string_literal] = STATE(2308), - [sym_mutability_modifiers] = STATE(939), - [sym_plain_type] = STATE(3557), - [sym__plain_type_without_special] = STATE(2302), - [sym_anon_struct_type] = STATE(2303), - [sym_multi_return_type] = STATE(2302), - [sym_result_type] = STATE(2302), - [sym_option_type] = STATE(2302), - [sym_qualified_type] = STATE(3541), - [sym_fixed_array_type] = STATE(2303), - [sym_array_type] = STATE(2303), - [sym_pointer_type] = STATE(2303), - [sym_wrong_pointer_type] = STATE(2303), - [sym_map_type] = STATE(2303), - [sym_channel_type] = STATE(2303), - [sym_shared_type] = STATE(2303), - [sym_thread_type] = STATE(2303), - [sym_atomic_type] = STATE(2303), - [sym_generic_type] = STATE(2303), - [sym_function_type] = STATE(2303), - [sym_range] = STATE(4521), - [sym_identifier] = ACTIONS(2135), + [sym__expression] = STATE(1273), + [sym__expression_without_blocks] = STATE(1318), + [sym__expression_with_blocks] = STATE(1318), + [sym_inc_expression] = STATE(1319), + [sym_dec_expression] = STATE(1319), + [sym_or_block_expression] = STATE(1319), + [sym_option_propagation_expression] = STATE(1319), + [sym_result_propagation_expression] = STATE(1319), + [sym_anon_struct_value_expression] = STATE(1320), + [sym_go_expression] = STATE(1319), + [sym_spawn_expression] = STATE(1319), + [sym_parenthesized_expression] = STATE(1319), + [sym_call_expression] = STATE(1319), + [sym_type_initializer] = STATE(1320), + [sym_function_literal] = STATE(1319), + [sym_reference_expression] = STATE(1397), + [sym_type_reference_expression] = STATE(3460), + [sym_unary_expression] = STATE(1319), + [sym_receive_expression] = STATE(1319), + [sym_binary_expression] = STATE(1319), + [sym_as_type_cast_expression] = STATE(1319), + [sym__max_group] = STATE(1319), + [sym_literal] = STATE(1314), + [sym_map_init_expression] = STATE(1320), + [sym_array_creation] = STATE(1319), + [sym_fixed_array_creation] = STATE(1319), + [sym_selector_expression] = STATE(1399), + [sym_index_expression] = STATE(1319), + [sym_slice_expression] = STATE(1319), + [sym_if_expression] = STATE(1320), + [sym_compile_time_if_expression] = STATE(1320), + [sym_is_expression] = STATE(1319), + [sym_in_expression] = STATE(1319), + [sym_enum_fetch] = STATE(1319), + [sym_match_expression] = STATE(1320), + [sym_select_expression] = STATE(1320), + [sym_lock_expression] = STATE(1320), + [sym_unsafe_expression] = STATE(1320), + [sym_sql_expression] = STATE(1320), + [sym_c_string_literal] = STATE(1291), + [sym_raw_string_literal] = STATE(1291), + [sym_interpreted_string_literal] = STATE(1291), + [sym_mutability_modifiers] = STATE(639), + [sym_plain_type] = STATE(4307), + [sym__plain_type_without_special] = STATE(2360), + [sym_anon_struct_type] = STATE(2362), + [sym_multi_return_type] = STATE(2360), + [sym_result_type] = STATE(2360), + [sym_option_type] = STATE(2360), + [sym_qualified_type] = STATE(3460), + [sym_fixed_array_type] = STATE(2362), + [sym_array_type] = STATE(2362), + [sym_pointer_type] = STATE(2362), + [sym_wrong_pointer_type] = STATE(2362), + [sym_map_type] = STATE(2362), + [sym_channel_type] = STATE(2362), + [sym_shared_type] = STATE(2362), + [sym_thread_type] = STATE(2362), + [sym_atomic_type] = STATE(2362), + [sym_generic_type] = STATE(2362), + [sym_function_type] = STATE(2362), + [aux_sym__array_repeat1] = STATE(338), + [sym_identifier] = ACTIONS(1360), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1428), - [anon_sym_LBRACE] = ACTIONS(1430), - [anon_sym_LPAREN] = ACTIONS(1432), - [anon_sym_fn] = ACTIONS(1434), - [anon_sym_PLUS] = ACTIONS(1436), - [anon_sym_DASH] = ACTIONS(1436), - [anon_sym_STAR] = ACTIONS(2137), - [anon_sym_struct] = ACTIONS(1440), + [anon_sym_DOT] = ACTIONS(1362), + [anon_sym_LBRACE] = ACTIONS(1364), + [anon_sym_LPAREN] = ACTIONS(1366), + [anon_sym_fn] = ACTIONS(1368), + [anon_sym_PLUS] = ACTIONS(1370), + [anon_sym_DASH] = ACTIONS(1370), + [anon_sym_STAR] = ACTIONS(1372), + [anon_sym_RBRACK] = ACTIONS(2145), + [anon_sym_struct] = ACTIONS(1376), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(2139), - [anon_sym_go] = ACTIONS(1444), - [anon_sym_spawn] = ACTIONS(1446), - [anon_sym_json_DOTdecode] = ACTIONS(1448), - [anon_sym_LBRACK2] = ACTIONS(1450), - [anon_sym_TILDE] = ACTIONS(1436), - [anon_sym_CARET] = ACTIONS(1436), - [anon_sym_AMP] = ACTIONS(2141), - [anon_sym_LT_DASH] = ACTIONS(1454), - [sym_none] = ACTIONS(1456), - [sym_true] = ACTIONS(1456), - [sym_false] = ACTIONS(1456), - [sym_nil] = ACTIONS(1456), - [anon_sym_if] = ACTIONS(1827), - [anon_sym_DOLLARif] = ACTIONS(1460), - [anon_sym_match] = ACTIONS(1462), - [anon_sym_select] = ACTIONS(1464), - [anon_sym_lock] = ACTIONS(1466), - [anon_sym_rlock] = ACTIONS(1466), - [anon_sym_unsafe] = ACTIONS(1833), - [anon_sym_sql] = ACTIONS(1470), - [sym_int_literal] = ACTIONS(1456), - [sym_float_literal] = ACTIONS(1472), - [sym_rune_literal] = ACTIONS(1472), - [sym_pseudo_compile_time_identifier] = ACTIONS(1474), + [anon_sym_BANG] = ACTIONS(1378), + [anon_sym_go] = ACTIONS(1380), + [anon_sym_spawn] = ACTIONS(1382), + [anon_sym_json_DOTdecode] = ACTIONS(1384), + [anon_sym_LBRACK2] = ACTIONS(1386), + [anon_sym_TILDE] = ACTIONS(1370), + [anon_sym_CARET] = ACTIONS(1370), + [anon_sym_AMP] = ACTIONS(1388), + [anon_sym_LT_DASH] = ACTIONS(1390), + [sym_none] = ACTIONS(1392), + [sym_true] = ACTIONS(1392), + [sym_false] = ACTIONS(1392), + [sym_nil] = ACTIONS(1392), + [anon_sym_if] = ACTIONS(1865), + [anon_sym_DOLLARif] = ACTIONS(1396), + [anon_sym_match] = ACTIONS(1398), + [anon_sym_select] = ACTIONS(1400), + [anon_sym_lock] = ACTIONS(1402), + [anon_sym_rlock] = ACTIONS(1402), + [anon_sym_unsafe] = ACTIONS(1871), + [anon_sym_sql] = ACTIONS(1406), + [sym_int_literal] = ACTIONS(1408), + [sym_float_literal] = ACTIONS(1410), + [sym_rune_literal] = ACTIONS(1410), + [sym_pseudo_compile_time_identifier] = ACTIONS(1412), [anon_sym_shared] = ACTIONS(83), [anon_sym_map_LBRACK] = ACTIONS(85), [anon_sym_chan] = ACTIONS(87), [anon_sym_thread] = ACTIONS(89), [anon_sym_atomic] = ACTIONS(91), - [anon_sym_DOT_DOT] = ACTIONS(1476), - [sym___double_quote] = ACTIONS(1478), - [sym___single_quote] = ACTIONS(1480), - [sym___c_double_quote] = ACTIONS(1482), - [sym___c_single_quote] = ACTIONS(1484), - [sym___r_double_quote] = ACTIONS(1486), - [sym___r_single_quote] = ACTIONS(1488), + [sym___double_quote] = ACTIONS(1414), + [sym___single_quote] = ACTIONS(1416), + [sym___c_double_quote] = ACTIONS(1418), + [sym___c_single_quote] = ACTIONS(1420), + [sym___r_double_quote] = ACTIONS(1422), + [sym___r_single_quote] = ACTIONS(1424), }, [320] = { [sym_line_comment] = STATE(320), [sym_block_comment] = STATE(320), - [sym__expression] = STATE(2455), - [sym__expression_without_blocks] = STATE(2300), - [sym__expression_with_blocks] = STATE(2300), - [sym_inc_expression] = STATE(2307), - [sym_dec_expression] = STATE(2307), - [sym_or_block_expression] = STATE(2307), - [sym_option_propagation_expression] = STATE(2307), - [sym_result_propagation_expression] = STATE(2307), - [sym_anon_struct_value_expression] = STATE(2380), - [sym_go_expression] = STATE(2307), - [sym_spawn_expression] = STATE(2307), - [sym_parenthesized_expression] = STATE(2307), - [sym_call_expression] = STATE(2307), - [sym_type_initializer] = STATE(2380), - [sym_function_literal] = STATE(2307), - [sym_reference_expression] = STATE(2311), - [sym_type_reference_expression] = STATE(3541), - [sym_unary_expression] = STATE(2307), - [sym_receive_expression] = STATE(2307), - [sym_binary_expression] = STATE(2307), - [sym_as_type_cast_expression] = STATE(2307), - [sym__max_group] = STATE(2307), - [sym_literal] = STATE(2292), - [sym_map_init_expression] = STATE(2380), - [sym_array_creation] = STATE(2307), - [sym_fixed_array_creation] = STATE(2307), - [sym_selector_expression] = STATE(2307), - [sym_index_expression] = STATE(2307), - [sym_slice_expression] = STATE(2307), - [sym_if_expression] = STATE(2380), - [sym_compile_time_if_expression] = STATE(2380), - [sym_is_expression] = STATE(2307), - [sym_in_expression] = STATE(2307), - [sym_enum_fetch] = STATE(2307), - [sym_match_expression] = STATE(2380), - [sym_select_expression] = STATE(2380), - [sym_lock_expression] = STATE(2380), - [sym_unsafe_expression] = STATE(2380), - [sym_sql_expression] = STATE(2380), - [sym_c_string_literal] = STATE(2308), - [sym_raw_string_literal] = STATE(2308), - [sym_interpreted_string_literal] = STATE(2308), - [sym_mutability_modifiers] = STATE(824), - [sym_mutable_expression] = STATE(3922), - [sym_expression_list] = STATE(4455), - [sym_plain_type] = STATE(4297), - [sym__plain_type_without_special] = STATE(2302), - [sym_anon_struct_type] = STATE(2303), - [sym_multi_return_type] = STATE(2302), - [sym_result_type] = STATE(2302), - [sym_option_type] = STATE(2302), - [sym_qualified_type] = STATE(3541), - [sym_fixed_array_type] = STATE(2303), - [sym_array_type] = STATE(2303), - [sym_pointer_type] = STATE(2303), - [sym_wrong_pointer_type] = STATE(2303), - [sym_map_type] = STATE(2303), - [sym_channel_type] = STATE(2303), - [sym_shared_type] = STATE(2303), - [sym_thread_type] = STATE(2303), - [sym_atomic_type] = STATE(2303), - [sym_generic_type] = STATE(2303), - [sym_function_type] = STATE(2303), - [sym_identifier] = ACTIONS(1807), - [anon_sym_SLASH_SLASH] = ACTIONS(3), - [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1428), - [anon_sym_LBRACE] = ACTIONS(2143), - [anon_sym_LPAREN] = ACTIONS(1432), - [anon_sym_fn] = ACTIONS(1434), - [anon_sym_PLUS] = ACTIONS(1811), - [anon_sym_DASH] = ACTIONS(1811), - [anon_sym_STAR] = ACTIONS(1813), - [anon_sym_struct] = ACTIONS(1440), - [anon_sym_mut] = ACTIONS(41), - [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(1815), - [anon_sym_go] = ACTIONS(1817), - [anon_sym_spawn] = ACTIONS(1819), - [anon_sym_json_DOTdecode] = ACTIONS(1448), - [anon_sym_LBRACK2] = ACTIONS(1821), - [anon_sym_TILDE] = ACTIONS(1811), - [anon_sym_CARET] = ACTIONS(1811), - [anon_sym_AMP] = ACTIONS(1823), - [anon_sym_LT_DASH] = ACTIONS(1825), - [sym_none] = ACTIONS(1456), - [sym_true] = ACTIONS(1456), - [sym_false] = ACTIONS(1456), - [sym_nil] = ACTIONS(1456), - [anon_sym_if] = ACTIONS(1827), - [anon_sym_DOLLARif] = ACTIONS(1460), - [anon_sym_match] = ACTIONS(1462), - [anon_sym_select] = ACTIONS(1829), - [anon_sym_lock] = ACTIONS(1831), - [anon_sym_rlock] = ACTIONS(1831), - [anon_sym_unsafe] = ACTIONS(1833), - [anon_sym_sql] = ACTIONS(1470), - [sym_int_literal] = ACTIONS(1456), - [sym_float_literal] = ACTIONS(1472), - [sym_rune_literal] = ACTIONS(1472), - [sym_pseudo_compile_time_identifier] = ACTIONS(1474), - [anon_sym_shared] = ACTIONS(83), - [anon_sym_map_LBRACK] = ACTIONS(85), - [anon_sym_chan] = ACTIONS(87), - [anon_sym_thread] = ACTIONS(89), - [anon_sym_atomic] = ACTIONS(91), - [sym___double_quote] = ACTIONS(1478), - [sym___single_quote] = ACTIONS(1480), - [sym___c_double_quote] = ACTIONS(1482), - [sym___c_single_quote] = ACTIONS(1484), - [sym___r_double_quote] = ACTIONS(1486), - [sym___r_single_quote] = ACTIONS(1488), + [ts_builtin_sym_end] = ACTIONS(2147), + [sym_identifier] = ACTIONS(2149), + [anon_sym_LF] = ACTIONS(2149), + [anon_sym_CR] = ACTIONS(2149), + [anon_sym_CR_LF] = ACTIONS(2149), + [anon_sym_SLASH_SLASH] = ACTIONS(497), + [anon_sym_SLASH_STAR] = ACTIONS(499), + [anon_sym_DOT] = ACTIONS(2149), + [anon_sym_as] = ACTIONS(2149), + [anon_sym_LBRACE] = ACTIONS(2149), + [anon_sym_COMMA] = ACTIONS(2149), + [anon_sym_const] = ACTIONS(2149), + [anon_sym_LPAREN] = ACTIONS(2149), + [anon_sym_EQ] = ACTIONS(2149), + [anon_sym___global] = ACTIONS(2149), + [anon_sym_type] = ACTIONS(2149), + [anon_sym_PIPE] = ACTIONS(2149), + [anon_sym_fn] = ACTIONS(2149), + [anon_sym_PLUS] = ACTIONS(2149), + [anon_sym_DASH] = ACTIONS(2149), + [anon_sym_STAR] = ACTIONS(2149), + [anon_sym_SLASH] = ACTIONS(2149), + [anon_sym_PERCENT] = ACTIONS(2149), + [anon_sym_LT] = ACTIONS(2149), + [anon_sym_GT] = ACTIONS(2149), + [anon_sym_EQ_EQ] = ACTIONS(2149), + [anon_sym_BANG_EQ] = ACTIONS(2149), + [anon_sym_LT_EQ] = ACTIONS(2149), + [anon_sym_GT_EQ] = ACTIONS(2149), + [anon_sym_LBRACK] = ACTIONS(2147), + [anon_sym_struct] = ACTIONS(2149), + [anon_sym_union] = ACTIONS(2149), + [anon_sym_pub] = ACTIONS(2149), + [anon_sym_mut] = ACTIONS(2149), + [anon_sym_enum] = ACTIONS(2149), + [anon_sym_interface] = ACTIONS(2149), + [anon_sym_PLUS_PLUS] = ACTIONS(2149), + [anon_sym_DASH_DASH] = ACTIONS(2149), + [anon_sym_QMARK] = ACTIONS(2149), + [anon_sym_BANG] = ACTIONS(2149), + [anon_sym_go] = ACTIONS(2149), + [anon_sym_spawn] = ACTIONS(2149), + [anon_sym_json_DOTdecode] = ACTIONS(2149), + [anon_sym_LBRACK2] = ACTIONS(2149), + [anon_sym_TILDE] = ACTIONS(2149), + [anon_sym_CARET] = ACTIONS(2149), + [anon_sym_AMP] = ACTIONS(2149), + [anon_sym_LT_DASH] = ACTIONS(2149), + [anon_sym_LT_LT] = ACTIONS(2149), + [anon_sym_GT_GT] = ACTIONS(2149), + [anon_sym_GT_GT_GT] = ACTIONS(2149), + [anon_sym_AMP_CARET] = ACTIONS(2149), + [anon_sym_AMP_AMP] = ACTIONS(2149), + [anon_sym_PIPE_PIPE] = ACTIONS(2149), + [anon_sym_or] = ACTIONS(2149), + [sym_none] = ACTIONS(2149), + [sym_true] = ACTIONS(2149), + [sym_false] = ACTIONS(2149), + [sym_nil] = ACTIONS(2149), + [anon_sym_QMARK_DOT] = ACTIONS(2149), + [anon_sym_POUND_LBRACK] = ACTIONS(2149), + [anon_sym_if] = ACTIONS(2149), + [anon_sym_DOLLARif] = ACTIONS(2149), + [anon_sym_is] = ACTIONS(2149), + [anon_sym_BANGis] = ACTIONS(2149), + [anon_sym_in] = ACTIONS(2149), + [anon_sym_BANGin] = ACTIONS(2149), + [anon_sym_match] = ACTIONS(2149), + [anon_sym_select] = ACTIONS(2149), + [anon_sym_STAR_EQ] = ACTIONS(2149), + [anon_sym_SLASH_EQ] = ACTIONS(2149), + [anon_sym_PERCENT_EQ] = ACTIONS(2149), + [anon_sym_LT_LT_EQ] = ACTIONS(2149), + [anon_sym_GT_GT_EQ] = ACTIONS(2149), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(2149), + [anon_sym_AMP_EQ] = ACTIONS(2149), + [anon_sym_AMP_CARET_EQ] = ACTIONS(2149), + [anon_sym_PLUS_EQ] = ACTIONS(2149), + [anon_sym_DASH_EQ] = ACTIONS(2149), + [anon_sym_PIPE_EQ] = ACTIONS(2149), + [anon_sym_CARET_EQ] = ACTIONS(2149), + [anon_sym_COLON_EQ] = ACTIONS(2149), + [anon_sym_lock] = ACTIONS(2149), + [anon_sym_rlock] = ACTIONS(2149), + [anon_sym_unsafe] = ACTIONS(2149), + [anon_sym_sql] = ACTIONS(2149), + [sym_int_literal] = ACTIONS(2149), + [sym_float_literal] = ACTIONS(2149), + [sym_rune_literal] = ACTIONS(2149), + [sym_pseudo_compile_time_identifier] = ACTIONS(2149), + [anon_sym_shared] = ACTIONS(2149), + [anon_sym_map_LBRACK] = ACTIONS(2149), + [anon_sym_chan] = ACTIONS(2149), + [anon_sym_thread] = ACTIONS(2149), + [anon_sym_atomic] = ACTIONS(2149), + [anon_sym_assert] = ACTIONS(2149), + [anon_sym_defer] = ACTIONS(2149), + [anon_sym_goto] = ACTIONS(2149), + [anon_sym_break] = ACTIONS(2149), + [anon_sym_continue] = ACTIONS(2149), + [anon_sym_return] = ACTIONS(2149), + [anon_sym_DOLLARfor] = ACTIONS(2149), + [anon_sym_for] = ACTIONS(2149), + [anon_sym_POUND] = ACTIONS(2149), + [anon_sym_asm] = ACTIONS(2149), + [anon_sym_AT_LBRACK] = ACTIONS(2149), + [sym___double_quote] = ACTIONS(2149), + [sym___single_quote] = ACTIONS(2149), + [sym___c_double_quote] = ACTIONS(2149), + [sym___c_single_quote] = ACTIONS(2149), + [sym___r_double_quote] = ACTIONS(2149), + [sym___r_single_quote] = ACTIONS(2149), }, [321] = { [sym_line_comment] = STATE(321), [sym_block_comment] = STATE(321), - [sym__expression] = STATE(2455), - [sym__expression_without_blocks] = STATE(2300), - [sym__expression_with_blocks] = STATE(2300), - [sym_inc_expression] = STATE(2307), - [sym_dec_expression] = STATE(2307), - [sym_or_block_expression] = STATE(2307), - [sym_option_propagation_expression] = STATE(2307), - [sym_result_propagation_expression] = STATE(2307), - [sym_anon_struct_value_expression] = STATE(2380), - [sym_go_expression] = STATE(2307), - [sym_spawn_expression] = STATE(2307), - [sym_parenthesized_expression] = STATE(2307), - [sym_call_expression] = STATE(2307), - [sym_type_initializer] = STATE(2380), - [sym_function_literal] = STATE(2307), - [sym_reference_expression] = STATE(2311), - [sym_type_reference_expression] = STATE(3541), - [sym_unary_expression] = STATE(2307), - [sym_receive_expression] = STATE(2307), - [sym_binary_expression] = STATE(2307), - [sym_as_type_cast_expression] = STATE(2307), - [sym__max_group] = STATE(2307), - [sym_literal] = STATE(2292), - [sym_map_init_expression] = STATE(2380), - [sym_array_creation] = STATE(2307), - [sym_fixed_array_creation] = STATE(2307), - [sym_selector_expression] = STATE(2307), - [sym_index_expression] = STATE(2307), - [sym_slice_expression] = STATE(2307), - [sym_if_expression] = STATE(2380), - [sym_compile_time_if_expression] = STATE(2380), - [sym_is_expression] = STATE(2307), - [sym_in_expression] = STATE(2307), - [sym_enum_fetch] = STATE(2307), - [sym_match_expression] = STATE(2380), - [sym_select_expression] = STATE(2380), - [sym_lock_expression] = STATE(2380), - [sym_unsafe_expression] = STATE(2380), - [sym_sql_expression] = STATE(2380), - [sym_c_string_literal] = STATE(2308), - [sym_raw_string_literal] = STATE(2308), - [sym_interpreted_string_literal] = STATE(2308), - [sym_mutability_modifiers] = STATE(824), - [sym_mutable_expression] = STATE(3922), - [sym_expression_list] = STATE(4471), - [sym_plain_type] = STATE(4297), - [sym__plain_type_without_special] = STATE(2302), - [sym_anon_struct_type] = STATE(2303), - [sym_multi_return_type] = STATE(2302), - [sym_result_type] = STATE(2302), - [sym_option_type] = STATE(2302), - [sym_qualified_type] = STATE(3541), - [sym_fixed_array_type] = STATE(2303), - [sym_array_type] = STATE(2303), - [sym_pointer_type] = STATE(2303), - [sym_wrong_pointer_type] = STATE(2303), - [sym_map_type] = STATE(2303), - [sym_channel_type] = STATE(2303), - [sym_shared_type] = STATE(2303), - [sym_thread_type] = STATE(2303), - [sym_atomic_type] = STATE(2303), - [sym_generic_type] = STATE(2303), - [sym_function_type] = STATE(2303), - [sym_identifier] = ACTIONS(1807), + [sym__expression] = STATE(2605), + [sym__expression_without_blocks] = STATE(2347), + [sym__expression_with_blocks] = STATE(2347), + [sym_inc_expression] = STATE(2379), + [sym_dec_expression] = STATE(2379), + [sym_or_block_expression] = STATE(2379), + [sym_option_propagation_expression] = STATE(2379), + [sym_result_propagation_expression] = STATE(2379), + [sym_anon_struct_value_expression] = STATE(2378), + [sym_go_expression] = STATE(2379), + [sym_spawn_expression] = STATE(2379), + [sym_parenthesized_expression] = STATE(2379), + [sym_call_expression] = STATE(2379), + [sym_type_initializer] = STATE(2378), + [sym_function_literal] = STATE(2379), + [sym_reference_expression] = STATE(2377), + [sym_type_reference_expression] = STATE(3460), + [sym_unary_expression] = STATE(2379), + [sym_receive_expression] = STATE(2379), + [sym_binary_expression] = STATE(2379), + [sym_as_type_cast_expression] = STATE(2379), + [sym__max_group] = STATE(2379), + [sym_literal] = STATE(2392), + [sym_map_init_expression] = STATE(2378), + [sym_array_creation] = STATE(2379), + [sym_fixed_array_creation] = STATE(2379), + [sym_selector_expression] = STATE(2379), + [sym_index_expression] = STATE(2379), + [sym_slice_expression] = STATE(2379), + [sym_if_expression] = STATE(2378), + [sym_compile_time_if_expression] = STATE(2378), + [sym_is_expression] = STATE(2379), + [sym_in_expression] = STATE(2379), + [sym_enum_fetch] = STATE(2379), + [sym_match_expression] = STATE(2378), + [sym_select_expression] = STATE(2378), + [sym_lock_expression] = STATE(2378), + [sym_unsafe_expression] = STATE(2378), + [sym_sql_expression] = STATE(2378), + [sym_c_string_literal] = STATE(2401), + [sym_raw_string_literal] = STATE(2401), + [sym_interpreted_string_literal] = STATE(2401), + [sym_mutability_modifiers] = STATE(939), + [sym_plain_type] = STATE(4160), + [sym__plain_type_without_special] = STATE(2360), + [sym_anon_struct_type] = STATE(2362), + [sym_multi_return_type] = STATE(2360), + [sym_result_type] = STATE(2360), + [sym_option_type] = STATE(2360), + [sym_qualified_type] = STATE(3460), + [sym_fixed_array_type] = STATE(2362), + [sym_array_type] = STATE(2362), + [sym_pointer_type] = STATE(2362), + [sym_wrong_pointer_type] = STATE(2362), + [sym_map_type] = STATE(2362), + [sym_channel_type] = STATE(2362), + [sym_shared_type] = STATE(2362), + [sym_thread_type] = STATE(2362), + [sym_atomic_type] = STATE(2362), + [sym_generic_type] = STATE(2362), + [sym_function_type] = STATE(2362), + [sym_range] = STATE(4628), + [sym_identifier] = ACTIONS(1428), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1428), - [anon_sym_LBRACE] = ACTIONS(2145), - [anon_sym_LPAREN] = ACTIONS(1432), - [anon_sym_fn] = ACTIONS(1434), - [anon_sym_PLUS] = ACTIONS(1811), - [anon_sym_DASH] = ACTIONS(1811), - [anon_sym_STAR] = ACTIONS(1813), - [anon_sym_struct] = ACTIONS(1440), + [anon_sym_DOT] = ACTIONS(1430), + [anon_sym_LBRACE] = ACTIONS(1432), + [anon_sym_LPAREN] = ACTIONS(1434), + [anon_sym_fn] = ACTIONS(1436), + [anon_sym_PLUS] = ACTIONS(1438), + [anon_sym_DASH] = ACTIONS(1438), + [anon_sym_STAR] = ACTIONS(1440), + [anon_sym_struct] = ACTIONS(1442), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(1815), - [anon_sym_go] = ACTIONS(1817), - [anon_sym_spawn] = ACTIONS(1819), - [anon_sym_json_DOTdecode] = ACTIONS(1448), - [anon_sym_LBRACK2] = ACTIONS(1821), - [anon_sym_TILDE] = ACTIONS(1811), - [anon_sym_CARET] = ACTIONS(1811), - [anon_sym_AMP] = ACTIONS(1823), - [anon_sym_LT_DASH] = ACTIONS(1825), - [sym_none] = ACTIONS(1456), - [sym_true] = ACTIONS(1456), - [sym_false] = ACTIONS(1456), - [sym_nil] = ACTIONS(1456), - [anon_sym_if] = ACTIONS(1827), - [anon_sym_DOLLARif] = ACTIONS(1460), - [anon_sym_match] = ACTIONS(1462), - [anon_sym_select] = ACTIONS(1829), - [anon_sym_lock] = ACTIONS(1831), - [anon_sym_rlock] = ACTIONS(1831), - [anon_sym_unsafe] = ACTIONS(1833), - [anon_sym_sql] = ACTIONS(1470), - [sym_int_literal] = ACTIONS(1456), - [sym_float_literal] = ACTIONS(1472), - [sym_rune_literal] = ACTIONS(1472), - [sym_pseudo_compile_time_identifier] = ACTIONS(1474), + [anon_sym_BANG] = ACTIONS(1444), + [anon_sym_go] = ACTIONS(1446), + [anon_sym_spawn] = ACTIONS(1448), + [anon_sym_json_DOTdecode] = ACTIONS(1450), + [anon_sym_LBRACK2] = ACTIONS(1452), + [anon_sym_TILDE] = ACTIONS(1438), + [anon_sym_CARET] = ACTIONS(1438), + [anon_sym_AMP] = ACTIONS(1454), + [anon_sym_LT_DASH] = ACTIONS(1456), + [sym_none] = ACTIONS(1458), + [sym_true] = ACTIONS(1458), + [sym_false] = ACTIONS(1458), + [sym_nil] = ACTIONS(1458), + [anon_sym_if] = ACTIONS(1833), + [anon_sym_DOLLARif] = ACTIONS(1462), + [anon_sym_match] = ACTIONS(1464), + [anon_sym_select] = ACTIONS(1466), + [anon_sym_lock] = ACTIONS(1468), + [anon_sym_rlock] = ACTIONS(1468), + [anon_sym_unsafe] = ACTIONS(1839), + [anon_sym_sql] = ACTIONS(1472), + [sym_int_literal] = ACTIONS(1458), + [sym_float_literal] = ACTIONS(1474), + [sym_rune_literal] = ACTIONS(1474), + [sym_pseudo_compile_time_identifier] = ACTIONS(1476), [anon_sym_shared] = ACTIONS(83), [anon_sym_map_LBRACK] = ACTIONS(85), [anon_sym_chan] = ACTIONS(87), [anon_sym_thread] = ACTIONS(89), [anon_sym_atomic] = ACTIONS(91), - [sym___double_quote] = ACTIONS(1478), - [sym___single_quote] = ACTIONS(1480), - [sym___c_double_quote] = ACTIONS(1482), - [sym___c_single_quote] = ACTIONS(1484), - [sym___r_double_quote] = ACTIONS(1486), - [sym___r_single_quote] = ACTIONS(1488), + [anon_sym_DOT_DOT] = ACTIONS(1478), + [sym___double_quote] = ACTIONS(1480), + [sym___single_quote] = ACTIONS(1482), + [sym___c_double_quote] = ACTIONS(1484), + [sym___c_single_quote] = ACTIONS(1486), + [sym___r_double_quote] = ACTIONS(1488), + [sym___r_single_quote] = ACTIONS(1490), }, [322] = { [sym_line_comment] = STATE(322), [sym_block_comment] = STATE(322), - [sym__expression] = STATE(2455), - [sym__expression_without_blocks] = STATE(2300), - [sym__expression_with_blocks] = STATE(2300), - [sym_inc_expression] = STATE(2307), - [sym_dec_expression] = STATE(2307), - [sym_or_block_expression] = STATE(2307), - [sym_option_propagation_expression] = STATE(2307), - [sym_result_propagation_expression] = STATE(2307), - [sym_anon_struct_value_expression] = STATE(2380), - [sym_go_expression] = STATE(2307), - [sym_spawn_expression] = STATE(2307), - [sym_parenthesized_expression] = STATE(2307), - [sym_call_expression] = STATE(2307), - [sym_type_initializer] = STATE(2380), - [sym_function_literal] = STATE(2307), - [sym_reference_expression] = STATE(2311), - [sym_type_reference_expression] = STATE(3541), - [sym_unary_expression] = STATE(2307), - [sym_receive_expression] = STATE(2307), - [sym_binary_expression] = STATE(2307), - [sym_as_type_cast_expression] = STATE(2307), - [sym__max_group] = STATE(2307), - [sym_literal] = STATE(2292), - [sym_map_init_expression] = STATE(2380), - [sym_array_creation] = STATE(2307), - [sym_fixed_array_creation] = STATE(2307), - [sym_selector_expression] = STATE(2307), - [sym_index_expression] = STATE(2307), - [sym_slice_expression] = STATE(2307), - [sym_if_expression] = STATE(2380), - [sym_compile_time_if_expression] = STATE(2380), - [sym_is_expression] = STATE(2307), - [sym_in_expression] = STATE(2307), - [sym_enum_fetch] = STATE(2307), - [sym_match_expression] = STATE(2380), - [sym_select_expression] = STATE(2380), - [sym_lock_expression] = STATE(2380), - [sym_unsafe_expression] = STATE(2380), - [sym_sql_expression] = STATE(2380), - [sym_c_string_literal] = STATE(2308), - [sym_raw_string_literal] = STATE(2308), - [sym_interpreted_string_literal] = STATE(2308), - [sym_mutability_modifiers] = STATE(824), - [sym_mutable_expression] = STATE(3922), - [sym_expression_list] = STATE(4455), - [sym_plain_type] = STATE(4297), - [sym__plain_type_without_special] = STATE(2302), - [sym_anon_struct_type] = STATE(2303), - [sym_multi_return_type] = STATE(2302), - [sym_result_type] = STATE(2302), - [sym_option_type] = STATE(2302), - [sym_qualified_type] = STATE(3541), - [sym_fixed_array_type] = STATE(2303), - [sym_array_type] = STATE(2303), - [sym_pointer_type] = STATE(2303), - [sym_wrong_pointer_type] = STATE(2303), - [sym_map_type] = STATE(2303), - [sym_channel_type] = STATE(2303), - [sym_shared_type] = STATE(2303), - [sym_thread_type] = STATE(2303), - [sym_atomic_type] = STATE(2303), - [sym_generic_type] = STATE(2303), - [sym_function_type] = STATE(2303), - [sym_identifier] = ACTIONS(1807), + [sym__expression] = STATE(2605), + [sym__expression_without_blocks] = STATE(2347), + [sym__expression_with_blocks] = STATE(2347), + [sym_inc_expression] = STATE(2379), + [sym_dec_expression] = STATE(2379), + [sym_or_block_expression] = STATE(2379), + [sym_option_propagation_expression] = STATE(2379), + [sym_result_propagation_expression] = STATE(2379), + [sym_anon_struct_value_expression] = STATE(2378), + [sym_go_expression] = STATE(2379), + [sym_spawn_expression] = STATE(2379), + [sym_parenthesized_expression] = STATE(2379), + [sym_call_expression] = STATE(2379), + [sym_type_initializer] = STATE(2378), + [sym_function_literal] = STATE(2379), + [sym_reference_expression] = STATE(2377), + [sym_type_reference_expression] = STATE(3460), + [sym_unary_expression] = STATE(2379), + [sym_receive_expression] = STATE(2379), + [sym_binary_expression] = STATE(2379), + [sym_as_type_cast_expression] = STATE(2379), + [sym__max_group] = STATE(2379), + [sym_literal] = STATE(2392), + [sym_map_init_expression] = STATE(2378), + [sym_array_creation] = STATE(2379), + [sym_fixed_array_creation] = STATE(2379), + [sym_selector_expression] = STATE(2379), + [sym_index_expression] = STATE(2379), + [sym_slice_expression] = STATE(2379), + [sym_if_expression] = STATE(2378), + [sym_compile_time_if_expression] = STATE(2378), + [sym_is_expression] = STATE(2379), + [sym_in_expression] = STATE(2379), + [sym_enum_fetch] = STATE(2379), + [sym_match_expression] = STATE(2378), + [sym_select_expression] = STATE(2378), + [sym_lock_expression] = STATE(2378), + [sym_unsafe_expression] = STATE(2378), + [sym_sql_expression] = STATE(2378), + [sym_c_string_literal] = STATE(2401), + [sym_raw_string_literal] = STATE(2401), + [sym_interpreted_string_literal] = STATE(2401), + [sym_mutability_modifiers] = STATE(939), + [sym_plain_type] = STATE(3569), + [sym__plain_type_without_special] = STATE(2360), + [sym_anon_struct_type] = STATE(2362), + [sym_multi_return_type] = STATE(2360), + [sym_result_type] = STATE(2360), + [sym_option_type] = STATE(2360), + [sym_qualified_type] = STATE(3460), + [sym_fixed_array_type] = STATE(2362), + [sym_array_type] = STATE(2362), + [sym_pointer_type] = STATE(2362), + [sym_wrong_pointer_type] = STATE(2362), + [sym_map_type] = STATE(2362), + [sym_channel_type] = STATE(2362), + [sym_shared_type] = STATE(2362), + [sym_thread_type] = STATE(2362), + [sym_atomic_type] = STATE(2362), + [sym_generic_type] = STATE(2362), + [sym_function_type] = STATE(2362), + [sym_range] = STATE(4628), + [sym_identifier] = ACTIONS(2127), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1428), - [anon_sym_LBRACE] = ACTIONS(2147), - [anon_sym_LPAREN] = ACTIONS(1432), - [anon_sym_fn] = ACTIONS(1434), - [anon_sym_PLUS] = ACTIONS(1811), - [anon_sym_DASH] = ACTIONS(1811), - [anon_sym_STAR] = ACTIONS(1813), - [anon_sym_struct] = ACTIONS(1440), + [anon_sym_DOT] = ACTIONS(1430), + [anon_sym_LBRACE] = ACTIONS(1432), + [anon_sym_LPAREN] = ACTIONS(1434), + [anon_sym_fn] = ACTIONS(1436), + [anon_sym_PLUS] = ACTIONS(1438), + [anon_sym_DASH] = ACTIONS(1438), + [anon_sym_STAR] = ACTIONS(2129), + [anon_sym_struct] = ACTIONS(1442), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(1815), - [anon_sym_go] = ACTIONS(1817), - [anon_sym_spawn] = ACTIONS(1819), - [anon_sym_json_DOTdecode] = ACTIONS(1448), - [anon_sym_LBRACK2] = ACTIONS(1821), - [anon_sym_TILDE] = ACTIONS(1811), - [anon_sym_CARET] = ACTIONS(1811), - [anon_sym_AMP] = ACTIONS(1823), - [anon_sym_LT_DASH] = ACTIONS(1825), - [sym_none] = ACTIONS(1456), - [sym_true] = ACTIONS(1456), - [sym_false] = ACTIONS(1456), - [sym_nil] = ACTIONS(1456), - [anon_sym_if] = ACTIONS(1827), - [anon_sym_DOLLARif] = ACTIONS(1460), - [anon_sym_match] = ACTIONS(1462), - [anon_sym_select] = ACTIONS(1829), - [anon_sym_lock] = ACTIONS(1831), - [anon_sym_rlock] = ACTIONS(1831), - [anon_sym_unsafe] = ACTIONS(1833), - [anon_sym_sql] = ACTIONS(1470), - [sym_int_literal] = ACTIONS(1456), - [sym_float_literal] = ACTIONS(1472), - [sym_rune_literal] = ACTIONS(1472), - [sym_pseudo_compile_time_identifier] = ACTIONS(1474), + [anon_sym_BANG] = ACTIONS(2131), + [anon_sym_go] = ACTIONS(1446), + [anon_sym_spawn] = ACTIONS(1448), + [anon_sym_json_DOTdecode] = ACTIONS(1450), + [anon_sym_LBRACK2] = ACTIONS(1452), + [anon_sym_TILDE] = ACTIONS(1438), + [anon_sym_CARET] = ACTIONS(1438), + [anon_sym_AMP] = ACTIONS(2133), + [anon_sym_LT_DASH] = ACTIONS(1456), + [sym_none] = ACTIONS(1458), + [sym_true] = ACTIONS(1458), + [sym_false] = ACTIONS(1458), + [sym_nil] = ACTIONS(1458), + [anon_sym_if] = ACTIONS(1833), + [anon_sym_DOLLARif] = ACTIONS(1462), + [anon_sym_match] = ACTIONS(1464), + [anon_sym_select] = ACTIONS(1466), + [anon_sym_lock] = ACTIONS(1468), + [anon_sym_rlock] = ACTIONS(1468), + [anon_sym_unsafe] = ACTIONS(1839), + [anon_sym_sql] = ACTIONS(1472), + [sym_int_literal] = ACTIONS(1458), + [sym_float_literal] = ACTIONS(1474), + [sym_rune_literal] = ACTIONS(1474), + [sym_pseudo_compile_time_identifier] = ACTIONS(1476), [anon_sym_shared] = ACTIONS(83), [anon_sym_map_LBRACK] = ACTIONS(85), [anon_sym_chan] = ACTIONS(87), [anon_sym_thread] = ACTIONS(89), [anon_sym_atomic] = ACTIONS(91), - [sym___double_quote] = ACTIONS(1478), - [sym___single_quote] = ACTIONS(1480), - [sym___c_double_quote] = ACTIONS(1482), - [sym___c_single_quote] = ACTIONS(1484), - [sym___r_double_quote] = ACTIONS(1486), - [sym___r_single_quote] = ACTIONS(1488), + [anon_sym_DOT_DOT] = ACTIONS(1478), + [sym___double_quote] = ACTIONS(1480), + [sym___single_quote] = ACTIONS(1482), + [sym___c_double_quote] = ACTIONS(1484), + [sym___c_single_quote] = ACTIONS(1486), + [sym___r_double_quote] = ACTIONS(1488), + [sym___r_single_quote] = ACTIONS(1490), }, [323] = { [sym_line_comment] = STATE(323), [sym_block_comment] = STATE(323), - [sym__expression] = STATE(2455), - [sym__expression_without_blocks] = STATE(2300), - [sym__expression_with_blocks] = STATE(2300), - [sym_inc_expression] = STATE(2307), - [sym_dec_expression] = STATE(2307), - [sym_or_block_expression] = STATE(2307), - [sym_option_propagation_expression] = STATE(2307), - [sym_result_propagation_expression] = STATE(2307), - [sym_anon_struct_value_expression] = STATE(2380), - [sym_go_expression] = STATE(2307), - [sym_spawn_expression] = STATE(2307), - [sym_parenthesized_expression] = STATE(2307), - [sym_call_expression] = STATE(2307), - [sym_type_initializer] = STATE(2380), - [sym_function_literal] = STATE(2307), - [sym_reference_expression] = STATE(2311), - [sym_type_reference_expression] = STATE(3541), - [sym_unary_expression] = STATE(2307), - [sym_receive_expression] = STATE(2307), - [sym_binary_expression] = STATE(2307), - [sym_as_type_cast_expression] = STATE(2307), - [sym__max_group] = STATE(2307), - [sym_literal] = STATE(2292), - [sym_map_init_expression] = STATE(2380), - [sym_array_creation] = STATE(2307), - [sym_fixed_array_creation] = STATE(2307), - [sym_selector_expression] = STATE(2307), - [sym_index_expression] = STATE(2307), - [sym_slice_expression] = STATE(2307), - [sym_if_expression] = STATE(2380), - [sym_compile_time_if_expression] = STATE(2380), - [sym_is_expression] = STATE(2307), - [sym_in_expression] = STATE(2307), - [sym_enum_fetch] = STATE(2307), - [sym_match_expression] = STATE(2380), - [sym_select_expression] = STATE(2380), - [sym_lock_expression] = STATE(2380), - [sym_unsafe_expression] = STATE(2380), - [sym_sql_expression] = STATE(2380), - [sym_c_string_literal] = STATE(2308), - [sym_raw_string_literal] = STATE(2308), - [sym_interpreted_string_literal] = STATE(2308), - [sym_mutability_modifiers] = STATE(824), - [sym_mutable_expression] = STATE(3922), - [sym_expression_list] = STATE(4455), - [sym_plain_type] = STATE(4297), - [sym__plain_type_without_special] = STATE(2302), - [sym_anon_struct_type] = STATE(2303), - [sym_multi_return_type] = STATE(2302), - [sym_result_type] = STATE(2302), - [sym_option_type] = STATE(2302), - [sym_qualified_type] = STATE(3541), - [sym_fixed_array_type] = STATE(2303), - [sym_array_type] = STATE(2303), - [sym_pointer_type] = STATE(2303), - [sym_wrong_pointer_type] = STATE(2303), - [sym_map_type] = STATE(2303), - [sym_channel_type] = STATE(2303), - [sym_shared_type] = STATE(2303), - [sym_thread_type] = STATE(2303), - [sym_atomic_type] = STATE(2303), - [sym_generic_type] = STATE(2303), - [sym_function_type] = STATE(2303), - [sym_identifier] = ACTIONS(1807), + [sym__expression] = STATE(2282), + [sym__expression_without_blocks] = STATE(2468), + [sym__expression_with_blocks] = STATE(2468), + [sym_inc_expression] = STATE(2469), + [sym_dec_expression] = STATE(2469), + [sym_or_block_expression] = STATE(2469), + [sym_option_propagation_expression] = STATE(2469), + [sym_result_propagation_expression] = STATE(2469), + [sym_anon_struct_value_expression] = STATE(2470), + [sym_go_expression] = STATE(2469), + [sym_spawn_expression] = STATE(2469), + [sym_parenthesized_expression] = STATE(2469), + [sym_call_expression] = STATE(2469), + [sym_type_initializer] = STATE(2470), + [sym_function_literal] = STATE(2469), + [sym_reference_expression] = STATE(2487), + [sym_type_reference_expression] = STATE(3460), + [sym_unary_expression] = STATE(2469), + [sym_receive_expression] = STATE(2469), + [sym_binary_expression] = STATE(2469), + [sym_as_type_cast_expression] = STATE(2469), + [sym__max_group] = STATE(2469), + [sym_literal] = STATE(2465), + [sym_map_init_expression] = STATE(2470), + [sym_array_creation] = STATE(2469), + [sym_fixed_array_creation] = STATE(2469), + [sym_selector_expression] = STATE(2469), + [sym_index_expression] = STATE(2469), + [sym_slice_expression] = STATE(2469), + [sym_if_expression] = STATE(2470), + [sym_compile_time_if_expression] = STATE(2470), + [sym_is_expression] = STATE(2469), + [sym_in_expression] = STATE(2469), + [sym_enum_fetch] = STATE(2469), + [sym_match_expression] = STATE(2470), + [sym_select_expression] = STATE(2470), + [sym_lock_expression] = STATE(2470), + [sym_unsafe_expression] = STATE(2470), + [sym_sql_expression] = STATE(2470), + [sym_c_string_literal] = STATE(2464), + [sym_raw_string_literal] = STATE(2464), + [sym_interpreted_string_literal] = STATE(2464), + [sym_mutability_modifiers] = STATE(805), + [sym_mutable_expression] = STATE(3438), + [sym_expression_list] = STATE(3655), + [sym_plain_type] = STATE(4038), + [sym__plain_type_without_special] = STATE(2360), + [sym_anon_struct_type] = STATE(2362), + [sym_multi_return_type] = STATE(2360), + [sym_result_type] = STATE(2360), + [sym_option_type] = STATE(2360), + [sym_qualified_type] = STATE(3460), + [sym_fixed_array_type] = STATE(2362), + [sym_array_type] = STATE(2362), + [sym_pointer_type] = STATE(2362), + [sym_wrong_pointer_type] = STATE(2362), + [sym_map_type] = STATE(2362), + [sym_channel_type] = STATE(2362), + [sym_shared_type] = STATE(2362), + [sym_thread_type] = STATE(2362), + [sym_atomic_type] = STATE(2362), + [sym_generic_type] = STATE(2362), + [sym_function_type] = STATE(2362), + [sym_identifier] = ACTIONS(1691), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1428), - [anon_sym_LBRACE] = ACTIONS(2149), - [anon_sym_LPAREN] = ACTIONS(1432), - [anon_sym_fn] = ACTIONS(1434), - [anon_sym_PLUS] = ACTIONS(1811), - [anon_sym_DASH] = ACTIONS(1811), - [anon_sym_STAR] = ACTIONS(1813), - [anon_sym_struct] = ACTIONS(1440), + [anon_sym_DOT] = ACTIONS(1693), + [anon_sym_LBRACE] = ACTIONS(2151), + [anon_sym_LPAREN] = ACTIONS(2153), + [anon_sym_fn] = ACTIONS(1699), + [anon_sym_PLUS] = ACTIONS(2155), + [anon_sym_DASH] = ACTIONS(2155), + [anon_sym_STAR] = ACTIONS(2157), + [anon_sym_struct] = ACTIONS(1705), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(1815), - [anon_sym_go] = ACTIONS(1817), - [anon_sym_spawn] = ACTIONS(1819), - [anon_sym_json_DOTdecode] = ACTIONS(1448), - [anon_sym_LBRACK2] = ACTIONS(1821), - [anon_sym_TILDE] = ACTIONS(1811), - [anon_sym_CARET] = ACTIONS(1811), - [anon_sym_AMP] = ACTIONS(1823), - [anon_sym_LT_DASH] = ACTIONS(1825), - [sym_none] = ACTIONS(1456), - [sym_true] = ACTIONS(1456), - [sym_false] = ACTIONS(1456), - [sym_nil] = ACTIONS(1456), - [anon_sym_if] = ACTIONS(1827), - [anon_sym_DOLLARif] = ACTIONS(1460), - [anon_sym_match] = ACTIONS(1462), - [anon_sym_select] = ACTIONS(1829), - [anon_sym_lock] = ACTIONS(1831), - [anon_sym_rlock] = ACTIONS(1831), - [anon_sym_unsafe] = ACTIONS(1833), - [anon_sym_sql] = ACTIONS(1470), - [sym_int_literal] = ACTIONS(1456), - [sym_float_literal] = ACTIONS(1472), - [sym_rune_literal] = ACTIONS(1472), - [sym_pseudo_compile_time_identifier] = ACTIONS(1474), + [anon_sym_BANG] = ACTIONS(2159), + [anon_sym_go] = ACTIONS(1709), + [anon_sym_spawn] = ACTIONS(1711), + [anon_sym_json_DOTdecode] = ACTIONS(2161), + [anon_sym_LBRACK2] = ACTIONS(2163), + [anon_sym_TILDE] = ACTIONS(2155), + [anon_sym_CARET] = ACTIONS(2155), + [anon_sym_AMP] = ACTIONS(2165), + [anon_sym_LT_DASH] = ACTIONS(2167), + [sym_none] = ACTIONS(1721), + [sym_true] = ACTIONS(1721), + [sym_false] = ACTIONS(1721), + [sym_nil] = ACTIONS(1721), + [anon_sym_if] = ACTIONS(1723), + [anon_sym_DOLLARif] = ACTIONS(1725), + [anon_sym_match] = ACTIONS(1727), + [anon_sym_select] = ACTIONS(1729), + [anon_sym_lock] = ACTIONS(1731), + [anon_sym_rlock] = ACTIONS(1731), + [anon_sym_unsafe] = ACTIONS(1733), + [anon_sym_sql] = ACTIONS(1735), + [sym_int_literal] = ACTIONS(1721), + [sym_float_literal] = ACTIONS(2169), + [sym_rune_literal] = ACTIONS(2169), + [sym_pseudo_compile_time_identifier] = ACTIONS(1737), [anon_sym_shared] = ACTIONS(83), [anon_sym_map_LBRACK] = ACTIONS(85), [anon_sym_chan] = ACTIONS(87), [anon_sym_thread] = ACTIONS(89), [anon_sym_atomic] = ACTIONS(91), - [sym___double_quote] = ACTIONS(1478), - [sym___single_quote] = ACTIONS(1480), - [sym___c_double_quote] = ACTIONS(1482), - [sym___c_single_quote] = ACTIONS(1484), - [sym___r_double_quote] = ACTIONS(1486), - [sym___r_single_quote] = ACTIONS(1488), + [sym___double_quote] = ACTIONS(2171), + [sym___single_quote] = ACTIONS(2173), + [sym___c_double_quote] = ACTIONS(2175), + [sym___c_single_quote] = ACTIONS(2177), + [sym___r_double_quote] = ACTIONS(2179), + [sym___r_single_quote] = ACTIONS(2181), }, [324] = { [sym_line_comment] = STATE(324), [sym_block_comment] = STATE(324), - [ts_builtin_sym_end] = ACTIONS(2151), - [sym_identifier] = ACTIONS(2153), - [anon_sym_LF] = ACTIONS(2153), - [anon_sym_CR] = ACTIONS(2153), - [anon_sym_CR_LF] = ACTIONS(2153), - [anon_sym_SLASH_SLASH] = ACTIONS(497), - [anon_sym_SLASH_STAR] = ACTIONS(499), - [anon_sym_DOT] = ACTIONS(2153), - [anon_sym_as] = ACTIONS(2153), - [anon_sym_LBRACE] = ACTIONS(2153), - [anon_sym_COMMA] = ACTIONS(2153), - [anon_sym_const] = ACTIONS(2153), - [anon_sym_LPAREN] = ACTIONS(2153), - [anon_sym_EQ] = ACTIONS(2153), - [anon_sym___global] = ACTIONS(2153), - [anon_sym_type] = ACTIONS(2153), - [anon_sym_PIPE] = ACTIONS(2153), - [anon_sym_fn] = ACTIONS(2153), - [anon_sym_PLUS] = ACTIONS(2153), - [anon_sym_DASH] = ACTIONS(2153), - [anon_sym_STAR] = ACTIONS(2153), - [anon_sym_SLASH] = ACTIONS(2153), - [anon_sym_PERCENT] = ACTIONS(2153), - [anon_sym_LT] = ACTIONS(2153), - [anon_sym_GT] = ACTIONS(2153), - [anon_sym_EQ_EQ] = ACTIONS(2153), - [anon_sym_BANG_EQ] = ACTIONS(2153), - [anon_sym_LT_EQ] = ACTIONS(2153), - [anon_sym_GT_EQ] = ACTIONS(2153), - [anon_sym_LBRACK] = ACTIONS(2151), - [anon_sym_struct] = ACTIONS(2153), - [anon_sym_union] = ACTIONS(2153), - [anon_sym_pub] = ACTIONS(2153), - [anon_sym_mut] = ACTIONS(2153), - [anon_sym_enum] = ACTIONS(2153), - [anon_sym_interface] = ACTIONS(2153), - [anon_sym_PLUS_PLUS] = ACTIONS(2153), - [anon_sym_DASH_DASH] = ACTIONS(2153), - [anon_sym_QMARK] = ACTIONS(2153), - [anon_sym_BANG] = ACTIONS(2153), - [anon_sym_go] = ACTIONS(2153), - [anon_sym_spawn] = ACTIONS(2153), - [anon_sym_json_DOTdecode] = ACTIONS(2153), - [anon_sym_LBRACK2] = ACTIONS(2153), - [anon_sym_TILDE] = ACTIONS(2153), - [anon_sym_CARET] = ACTIONS(2153), - [anon_sym_AMP] = ACTIONS(2153), - [anon_sym_LT_DASH] = ACTIONS(2153), - [anon_sym_LT_LT] = ACTIONS(2153), - [anon_sym_GT_GT] = ACTIONS(2153), - [anon_sym_GT_GT_GT] = ACTIONS(2153), - [anon_sym_AMP_CARET] = ACTIONS(2153), - [anon_sym_AMP_AMP] = ACTIONS(2153), - [anon_sym_PIPE_PIPE] = ACTIONS(2153), - [anon_sym_or] = ACTIONS(2153), - [sym_none] = ACTIONS(2153), - [sym_true] = ACTIONS(2153), - [sym_false] = ACTIONS(2153), - [sym_nil] = ACTIONS(2153), - [anon_sym_QMARK_DOT] = ACTIONS(2153), - [anon_sym_POUND_LBRACK] = ACTIONS(2153), - [anon_sym_if] = ACTIONS(2153), - [anon_sym_DOLLARif] = ACTIONS(2153), - [anon_sym_is] = ACTIONS(2153), - [anon_sym_BANGis] = ACTIONS(2153), - [anon_sym_in] = ACTIONS(2153), - [anon_sym_BANGin] = ACTIONS(2153), - [anon_sym_match] = ACTIONS(2153), - [anon_sym_select] = ACTIONS(2153), - [anon_sym_STAR_EQ] = ACTIONS(2153), - [anon_sym_SLASH_EQ] = ACTIONS(2153), - [anon_sym_PERCENT_EQ] = ACTIONS(2153), - [anon_sym_LT_LT_EQ] = ACTIONS(2153), - [anon_sym_GT_GT_EQ] = ACTIONS(2153), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(2153), - [anon_sym_AMP_EQ] = ACTIONS(2153), - [anon_sym_AMP_CARET_EQ] = ACTIONS(2153), - [anon_sym_PLUS_EQ] = ACTIONS(2153), - [anon_sym_DASH_EQ] = ACTIONS(2153), - [anon_sym_PIPE_EQ] = ACTIONS(2153), - [anon_sym_CARET_EQ] = ACTIONS(2153), - [anon_sym_COLON_EQ] = ACTIONS(2153), - [anon_sym_lock] = ACTIONS(2153), - [anon_sym_rlock] = ACTIONS(2153), - [anon_sym_unsafe] = ACTIONS(2153), - [anon_sym_sql] = ACTIONS(2153), - [sym_int_literal] = ACTIONS(2153), - [sym_float_literal] = ACTIONS(2153), - [sym_rune_literal] = ACTIONS(2153), - [sym_pseudo_compile_time_identifier] = ACTIONS(2153), - [anon_sym_shared] = ACTIONS(2153), - [anon_sym_map_LBRACK] = ACTIONS(2153), - [anon_sym_chan] = ACTIONS(2153), - [anon_sym_thread] = ACTIONS(2153), - [anon_sym_atomic] = ACTIONS(2153), - [anon_sym_assert] = ACTIONS(2153), - [anon_sym_defer] = ACTIONS(2153), - [anon_sym_goto] = ACTIONS(2153), - [anon_sym_break] = ACTIONS(2153), - [anon_sym_continue] = ACTIONS(2153), - [anon_sym_return] = ACTIONS(2153), - [anon_sym_DOLLARfor] = ACTIONS(2153), - [anon_sym_for] = ACTIONS(2153), - [anon_sym_POUND] = ACTIONS(2153), - [anon_sym_asm] = ACTIONS(2153), - [anon_sym_AT_LBRACK] = ACTIONS(2153), - [sym___double_quote] = ACTIONS(2153), - [sym___single_quote] = ACTIONS(2153), - [sym___c_double_quote] = ACTIONS(2153), - [sym___c_single_quote] = ACTIONS(2153), - [sym___r_double_quote] = ACTIONS(2153), - [sym___r_single_quote] = ACTIONS(2153), + [sym__expression] = STATE(2558), + [sym__expression_without_blocks] = STATE(2347), + [sym__expression_with_blocks] = STATE(2347), + [sym_inc_expression] = STATE(2379), + [sym_dec_expression] = STATE(2379), + [sym_or_block_expression] = STATE(2379), + [sym_option_propagation_expression] = STATE(2379), + [sym_result_propagation_expression] = STATE(2379), + [sym_anon_struct_value_expression] = STATE(2378), + [sym_go_expression] = STATE(2379), + [sym_spawn_expression] = STATE(2379), + [sym_parenthesized_expression] = STATE(2379), + [sym_call_expression] = STATE(2379), + [sym_type_initializer] = STATE(2378), + [sym_function_literal] = STATE(2379), + [sym_reference_expression] = STATE(2377), + [sym_type_reference_expression] = STATE(3460), + [sym_unary_expression] = STATE(2379), + [sym_receive_expression] = STATE(2379), + [sym_binary_expression] = STATE(2379), + [sym_as_type_cast_expression] = STATE(2379), + [sym__max_group] = STATE(2379), + [sym_literal] = STATE(2392), + [sym_map_init_expression] = STATE(2378), + [sym_array_creation] = STATE(2379), + [sym_fixed_array_creation] = STATE(2379), + [sym_selector_expression] = STATE(2379), + [sym_index_expression] = STATE(2379), + [sym_slice_expression] = STATE(2379), + [sym_if_expression] = STATE(2378), + [sym_compile_time_if_expression] = STATE(2378), + [sym_is_expression] = STATE(2379), + [sym_in_expression] = STATE(2379), + [sym_enum_fetch] = STATE(2379), + [sym_match_expression] = STATE(2378), + [sym_select_expression] = STATE(2378), + [sym_lock_expression] = STATE(2378), + [sym_unsafe_expression] = STATE(2378), + [sym_sql_expression] = STATE(2378), + [sym_c_string_literal] = STATE(2401), + [sym_raw_string_literal] = STATE(2401), + [sym_interpreted_string_literal] = STATE(2401), + [sym_mutability_modifiers] = STATE(900), + [sym_mutable_expression] = STATE(3813), + [sym_expression_list] = STATE(4372), + [sym_plain_type] = STATE(4160), + [sym__plain_type_without_special] = STATE(2360), + [sym_anon_struct_type] = STATE(2362), + [sym_multi_return_type] = STATE(2360), + [sym_result_type] = STATE(2360), + [sym_option_type] = STATE(2360), + [sym_qualified_type] = STATE(3460), + [sym_fixed_array_type] = STATE(2362), + [sym_array_type] = STATE(2362), + [sym_pointer_type] = STATE(2362), + [sym_wrong_pointer_type] = STATE(2362), + [sym_map_type] = STATE(2362), + [sym_channel_type] = STATE(2362), + [sym_shared_type] = STATE(2362), + [sym_thread_type] = STATE(2362), + [sym_atomic_type] = STATE(2362), + [sym_generic_type] = STATE(2362), + [sym_function_type] = STATE(2362), + [sym_identifier] = ACTIONS(1815), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(1430), + [anon_sym_LBRACE] = ACTIONS(2183), + [anon_sym_LPAREN] = ACTIONS(1434), + [anon_sym_fn] = ACTIONS(1436), + [anon_sym_PLUS] = ACTIONS(1817), + [anon_sym_DASH] = ACTIONS(1817), + [anon_sym_STAR] = ACTIONS(1819), + [anon_sym_struct] = ACTIONS(1442), + [anon_sym_mut] = ACTIONS(41), + [anon_sym_QMARK] = ACTIONS(47), + [anon_sym_BANG] = ACTIONS(1821), + [anon_sym_go] = ACTIONS(1823), + [anon_sym_spawn] = ACTIONS(1825), + [anon_sym_json_DOTdecode] = ACTIONS(1450), + [anon_sym_LBRACK2] = ACTIONS(1827), + [anon_sym_TILDE] = ACTIONS(1817), + [anon_sym_CARET] = ACTIONS(1817), + [anon_sym_AMP] = ACTIONS(1829), + [anon_sym_LT_DASH] = ACTIONS(1831), + [sym_none] = ACTIONS(1458), + [sym_true] = ACTIONS(1458), + [sym_false] = ACTIONS(1458), + [sym_nil] = ACTIONS(1458), + [anon_sym_if] = ACTIONS(1833), + [anon_sym_DOLLARif] = ACTIONS(1462), + [anon_sym_match] = ACTIONS(1464), + [anon_sym_select] = ACTIONS(1835), + [anon_sym_lock] = ACTIONS(1837), + [anon_sym_rlock] = ACTIONS(1837), + [anon_sym_unsafe] = ACTIONS(1839), + [anon_sym_sql] = ACTIONS(1472), + [sym_int_literal] = ACTIONS(1458), + [sym_float_literal] = ACTIONS(1474), + [sym_rune_literal] = ACTIONS(1474), + [sym_pseudo_compile_time_identifier] = ACTIONS(1476), + [anon_sym_shared] = ACTIONS(83), + [anon_sym_map_LBRACK] = ACTIONS(85), + [anon_sym_chan] = ACTIONS(87), + [anon_sym_thread] = ACTIONS(89), + [anon_sym_atomic] = ACTIONS(91), + [sym___double_quote] = ACTIONS(1480), + [sym___single_quote] = ACTIONS(1482), + [sym___c_double_quote] = ACTIONS(1484), + [sym___c_single_quote] = ACTIONS(1486), + [sym___r_double_quote] = ACTIONS(1488), + [sym___r_single_quote] = ACTIONS(1490), }, [325] = { [sym_line_comment] = STATE(325), [sym_block_comment] = STATE(325), - [sym__expression] = STATE(2455), - [sym__expression_without_blocks] = STATE(2300), - [sym__expression_with_blocks] = STATE(2300), - [sym_inc_expression] = STATE(2307), - [sym_dec_expression] = STATE(2307), - [sym_or_block_expression] = STATE(2307), - [sym_option_propagation_expression] = STATE(2307), - [sym_result_propagation_expression] = STATE(2307), - [sym_anon_struct_value_expression] = STATE(2380), - [sym_go_expression] = STATE(2307), - [sym_spawn_expression] = STATE(2307), - [sym_parenthesized_expression] = STATE(2307), - [sym_call_expression] = STATE(2307), - [sym_type_initializer] = STATE(2380), - [sym_function_literal] = STATE(2307), - [sym_reference_expression] = STATE(2311), - [sym_type_reference_expression] = STATE(3541), - [sym_unary_expression] = STATE(2307), - [sym_receive_expression] = STATE(2307), - [sym_binary_expression] = STATE(2307), - [sym_as_type_cast_expression] = STATE(2307), - [sym__max_group] = STATE(2307), - [sym_literal] = STATE(2292), - [sym_map_init_expression] = STATE(2380), - [sym_array_creation] = STATE(2307), - [sym_fixed_array_creation] = STATE(2307), - [sym_selector_expression] = STATE(2307), - [sym_index_expression] = STATE(2307), - [sym_slice_expression] = STATE(2307), - [sym_if_expression] = STATE(2380), - [sym_compile_time_if_expression] = STATE(2380), - [sym_is_expression] = STATE(2307), - [sym_in_expression] = STATE(2307), - [sym_enum_fetch] = STATE(2307), - [sym_match_expression] = STATE(2380), - [sym_select_expression] = STATE(2380), - [sym_lock_expression] = STATE(2380), - [sym_unsafe_expression] = STATE(2380), - [sym_sql_expression] = STATE(2380), - [sym_c_string_literal] = STATE(2308), - [sym_raw_string_literal] = STATE(2308), - [sym_interpreted_string_literal] = STATE(2308), - [sym_mutability_modifiers] = STATE(824), - [sym_mutable_expression] = STATE(3922), - [sym_expression_list] = STATE(4400), - [sym_plain_type] = STATE(4297), - [sym__plain_type_without_special] = STATE(2302), - [sym_anon_struct_type] = STATE(2303), - [sym_multi_return_type] = STATE(2302), - [sym_result_type] = STATE(2302), - [sym_option_type] = STATE(2302), - [sym_qualified_type] = STATE(3541), - [sym_fixed_array_type] = STATE(2303), - [sym_array_type] = STATE(2303), - [sym_pointer_type] = STATE(2303), - [sym_wrong_pointer_type] = STATE(2303), - [sym_map_type] = STATE(2303), - [sym_channel_type] = STATE(2303), - [sym_shared_type] = STATE(2303), - [sym_thread_type] = STATE(2303), - [sym_atomic_type] = STATE(2303), - [sym_generic_type] = STATE(2303), - [sym_function_type] = STATE(2303), - [sym_identifier] = ACTIONS(1807), + [sym__expression] = STATE(1273), + [sym__expression_without_blocks] = STATE(1318), + [sym__expression_with_blocks] = STATE(1318), + [sym_inc_expression] = STATE(1319), + [sym_dec_expression] = STATE(1319), + [sym_or_block_expression] = STATE(1319), + [sym_option_propagation_expression] = STATE(1319), + [sym_result_propagation_expression] = STATE(1319), + [sym_anon_struct_value_expression] = STATE(1320), + [sym_go_expression] = STATE(1319), + [sym_spawn_expression] = STATE(1319), + [sym_parenthesized_expression] = STATE(1319), + [sym_call_expression] = STATE(1319), + [sym_type_initializer] = STATE(1320), + [sym_function_literal] = STATE(1319), + [sym_reference_expression] = STATE(1397), + [sym_type_reference_expression] = STATE(3460), + [sym_unary_expression] = STATE(1319), + [sym_receive_expression] = STATE(1319), + [sym_binary_expression] = STATE(1319), + [sym_as_type_cast_expression] = STATE(1319), + [sym__max_group] = STATE(1319), + [sym_literal] = STATE(1314), + [sym_map_init_expression] = STATE(1320), + [sym_array_creation] = STATE(1319), + [sym_fixed_array_creation] = STATE(1319), + [sym_selector_expression] = STATE(1399), + [sym_index_expression] = STATE(1319), + [sym_slice_expression] = STATE(1319), + [sym_if_expression] = STATE(1320), + [sym_compile_time_if_expression] = STATE(1320), + [sym_is_expression] = STATE(1319), + [sym_in_expression] = STATE(1319), + [sym_enum_fetch] = STATE(1319), + [sym_match_expression] = STATE(1320), + [sym_select_expression] = STATE(1320), + [sym_lock_expression] = STATE(1320), + [sym_unsafe_expression] = STATE(1320), + [sym_sql_expression] = STATE(1320), + [sym_c_string_literal] = STATE(1291), + [sym_raw_string_literal] = STATE(1291), + [sym_interpreted_string_literal] = STATE(1291), + [sym_mutability_modifiers] = STATE(639), + [sym_plain_type] = STATE(4307), + [sym__plain_type_without_special] = STATE(2360), + [sym_anon_struct_type] = STATE(2362), + [sym_multi_return_type] = STATE(2360), + [sym_result_type] = STATE(2360), + [sym_option_type] = STATE(2360), + [sym_qualified_type] = STATE(3460), + [sym_fixed_array_type] = STATE(2362), + [sym_array_type] = STATE(2362), + [sym_pointer_type] = STATE(2362), + [sym_wrong_pointer_type] = STATE(2362), + [sym_map_type] = STATE(2362), + [sym_channel_type] = STATE(2362), + [sym_shared_type] = STATE(2362), + [sym_thread_type] = STATE(2362), + [sym_atomic_type] = STATE(2362), + [sym_generic_type] = STATE(2362), + [sym_function_type] = STATE(2362), + [aux_sym__array_repeat1] = STATE(366), + [sym_identifier] = ACTIONS(1360), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1428), - [anon_sym_LBRACE] = ACTIONS(2155), - [anon_sym_LPAREN] = ACTIONS(1432), - [anon_sym_fn] = ACTIONS(1434), - [anon_sym_PLUS] = ACTIONS(1811), - [anon_sym_DASH] = ACTIONS(1811), - [anon_sym_STAR] = ACTIONS(1813), - [anon_sym_struct] = ACTIONS(1440), + [anon_sym_DOT] = ACTIONS(1362), + [anon_sym_LBRACE] = ACTIONS(1364), + [anon_sym_LPAREN] = ACTIONS(1366), + [anon_sym_fn] = ACTIONS(1368), + [anon_sym_PLUS] = ACTIONS(1370), + [anon_sym_DASH] = ACTIONS(1370), + [anon_sym_STAR] = ACTIONS(1372), + [anon_sym_RBRACK] = ACTIONS(2185), + [anon_sym_struct] = ACTIONS(1376), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(1815), - [anon_sym_go] = ACTIONS(1817), - [anon_sym_spawn] = ACTIONS(1819), - [anon_sym_json_DOTdecode] = ACTIONS(1448), - [anon_sym_LBRACK2] = ACTIONS(1821), - [anon_sym_TILDE] = ACTIONS(1811), - [anon_sym_CARET] = ACTIONS(1811), - [anon_sym_AMP] = ACTIONS(1823), - [anon_sym_LT_DASH] = ACTIONS(1825), - [sym_none] = ACTIONS(1456), - [sym_true] = ACTIONS(1456), - [sym_false] = ACTIONS(1456), - [sym_nil] = ACTIONS(1456), - [anon_sym_if] = ACTIONS(1827), - [anon_sym_DOLLARif] = ACTIONS(1460), - [anon_sym_match] = ACTIONS(1462), - [anon_sym_select] = ACTIONS(1829), - [anon_sym_lock] = ACTIONS(1831), - [anon_sym_rlock] = ACTIONS(1831), - [anon_sym_unsafe] = ACTIONS(1833), - [anon_sym_sql] = ACTIONS(1470), - [sym_int_literal] = ACTIONS(1456), - [sym_float_literal] = ACTIONS(1472), - [sym_rune_literal] = ACTIONS(1472), - [sym_pseudo_compile_time_identifier] = ACTIONS(1474), + [anon_sym_BANG] = ACTIONS(1378), + [anon_sym_go] = ACTIONS(1380), + [anon_sym_spawn] = ACTIONS(1382), + [anon_sym_json_DOTdecode] = ACTIONS(1384), + [anon_sym_LBRACK2] = ACTIONS(1386), + [anon_sym_TILDE] = ACTIONS(1370), + [anon_sym_CARET] = ACTIONS(1370), + [anon_sym_AMP] = ACTIONS(1388), + [anon_sym_LT_DASH] = ACTIONS(1390), + [sym_none] = ACTIONS(1392), + [sym_true] = ACTIONS(1392), + [sym_false] = ACTIONS(1392), + [sym_nil] = ACTIONS(1392), + [anon_sym_if] = ACTIONS(1865), + [anon_sym_DOLLARif] = ACTIONS(1396), + [anon_sym_match] = ACTIONS(1398), + [anon_sym_select] = ACTIONS(1400), + [anon_sym_lock] = ACTIONS(1402), + [anon_sym_rlock] = ACTIONS(1402), + [anon_sym_unsafe] = ACTIONS(1871), + [anon_sym_sql] = ACTIONS(1406), + [sym_int_literal] = ACTIONS(1408), + [sym_float_literal] = ACTIONS(1410), + [sym_rune_literal] = ACTIONS(1410), + [sym_pseudo_compile_time_identifier] = ACTIONS(1412), [anon_sym_shared] = ACTIONS(83), [anon_sym_map_LBRACK] = ACTIONS(85), [anon_sym_chan] = ACTIONS(87), [anon_sym_thread] = ACTIONS(89), [anon_sym_atomic] = ACTIONS(91), - [sym___double_quote] = ACTIONS(1478), - [sym___single_quote] = ACTIONS(1480), - [sym___c_double_quote] = ACTIONS(1482), - [sym___c_single_quote] = ACTIONS(1484), - [sym___r_double_quote] = ACTIONS(1486), - [sym___r_single_quote] = ACTIONS(1488), + [sym___double_quote] = ACTIONS(1414), + [sym___single_quote] = ACTIONS(1416), + [sym___c_double_quote] = ACTIONS(1418), + [sym___c_single_quote] = ACTIONS(1420), + [sym___r_double_quote] = ACTIONS(1422), + [sym___r_single_quote] = ACTIONS(1424), }, [326] = { [sym_line_comment] = STATE(326), [sym_block_comment] = STATE(326), - [ts_builtin_sym_end] = ACTIONS(2157), - [sym_identifier] = ACTIONS(2159), - [anon_sym_LF] = ACTIONS(2159), - [anon_sym_CR] = ACTIONS(2159), - [anon_sym_CR_LF] = ACTIONS(2159), - [anon_sym_SLASH_SLASH] = ACTIONS(497), - [anon_sym_SLASH_STAR] = ACTIONS(499), - [anon_sym_DOT] = ACTIONS(2159), - [anon_sym_as] = ACTIONS(2159), - [anon_sym_LBRACE] = ACTIONS(2159), - [anon_sym_COMMA] = ACTIONS(2159), - [anon_sym_const] = ACTIONS(2159), - [anon_sym_LPAREN] = ACTIONS(2159), - [anon_sym_EQ] = ACTIONS(2159), - [anon_sym___global] = ACTIONS(2159), - [anon_sym_type] = ACTIONS(2159), - [anon_sym_PIPE] = ACTIONS(2159), - [anon_sym_fn] = ACTIONS(2159), - [anon_sym_PLUS] = ACTIONS(2159), - [anon_sym_DASH] = ACTIONS(2159), - [anon_sym_STAR] = ACTIONS(2159), - [anon_sym_SLASH] = ACTIONS(2159), - [anon_sym_PERCENT] = ACTIONS(2159), - [anon_sym_LT] = ACTIONS(2159), - [anon_sym_GT] = ACTIONS(2159), - [anon_sym_EQ_EQ] = ACTIONS(2159), - [anon_sym_BANG_EQ] = ACTIONS(2159), - [anon_sym_LT_EQ] = ACTIONS(2159), - [anon_sym_GT_EQ] = ACTIONS(2159), - [anon_sym_LBRACK] = ACTIONS(2157), - [anon_sym_struct] = ACTIONS(2159), - [anon_sym_union] = ACTIONS(2159), - [anon_sym_pub] = ACTIONS(2159), - [anon_sym_mut] = ACTIONS(2159), - [anon_sym_enum] = ACTIONS(2159), - [anon_sym_interface] = ACTIONS(2159), - [anon_sym_PLUS_PLUS] = ACTIONS(2159), - [anon_sym_DASH_DASH] = ACTIONS(2159), - [anon_sym_QMARK] = ACTIONS(2159), - [anon_sym_BANG] = ACTIONS(2159), - [anon_sym_go] = ACTIONS(2159), - [anon_sym_spawn] = ACTIONS(2159), - [anon_sym_json_DOTdecode] = ACTIONS(2159), - [anon_sym_LBRACK2] = ACTIONS(2159), - [anon_sym_TILDE] = ACTIONS(2159), - [anon_sym_CARET] = ACTIONS(2159), - [anon_sym_AMP] = ACTIONS(2159), - [anon_sym_LT_DASH] = ACTIONS(2159), - [anon_sym_LT_LT] = ACTIONS(2159), - [anon_sym_GT_GT] = ACTIONS(2159), - [anon_sym_GT_GT_GT] = ACTIONS(2159), - [anon_sym_AMP_CARET] = ACTIONS(2159), - [anon_sym_AMP_AMP] = ACTIONS(2159), - [anon_sym_PIPE_PIPE] = ACTIONS(2159), - [anon_sym_or] = ACTIONS(2159), - [sym_none] = ACTIONS(2159), - [sym_true] = ACTIONS(2159), - [sym_false] = ACTIONS(2159), - [sym_nil] = ACTIONS(2159), - [anon_sym_QMARK_DOT] = ACTIONS(2159), - [anon_sym_POUND_LBRACK] = ACTIONS(2159), - [anon_sym_if] = ACTIONS(2159), - [anon_sym_DOLLARif] = ACTIONS(2159), - [anon_sym_is] = ACTIONS(2159), - [anon_sym_BANGis] = ACTIONS(2159), - [anon_sym_in] = ACTIONS(2159), - [anon_sym_BANGin] = ACTIONS(2159), - [anon_sym_match] = ACTIONS(2159), - [anon_sym_select] = ACTIONS(2159), - [anon_sym_STAR_EQ] = ACTIONS(2159), - [anon_sym_SLASH_EQ] = ACTIONS(2159), - [anon_sym_PERCENT_EQ] = ACTIONS(2159), - [anon_sym_LT_LT_EQ] = ACTIONS(2159), - [anon_sym_GT_GT_EQ] = ACTIONS(2159), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(2159), - [anon_sym_AMP_EQ] = ACTIONS(2159), - [anon_sym_AMP_CARET_EQ] = ACTIONS(2159), - [anon_sym_PLUS_EQ] = ACTIONS(2159), - [anon_sym_DASH_EQ] = ACTIONS(2159), - [anon_sym_PIPE_EQ] = ACTIONS(2159), - [anon_sym_CARET_EQ] = ACTIONS(2159), - [anon_sym_COLON_EQ] = ACTIONS(2159), - [anon_sym_lock] = ACTIONS(2159), - [anon_sym_rlock] = ACTIONS(2159), - [anon_sym_unsafe] = ACTIONS(2159), - [anon_sym_sql] = ACTIONS(2159), - [sym_int_literal] = ACTIONS(2159), - [sym_float_literal] = ACTIONS(2159), - [sym_rune_literal] = ACTIONS(2159), - [sym_pseudo_compile_time_identifier] = ACTIONS(2159), - [anon_sym_shared] = ACTIONS(2159), - [anon_sym_map_LBRACK] = ACTIONS(2159), - [anon_sym_chan] = ACTIONS(2159), - [anon_sym_thread] = ACTIONS(2159), - [anon_sym_atomic] = ACTIONS(2159), - [anon_sym_assert] = ACTIONS(2159), - [anon_sym_defer] = ACTIONS(2159), - [anon_sym_goto] = ACTIONS(2159), - [anon_sym_break] = ACTIONS(2159), - [anon_sym_continue] = ACTIONS(2159), - [anon_sym_return] = ACTIONS(2159), - [anon_sym_DOLLARfor] = ACTIONS(2159), - [anon_sym_for] = ACTIONS(2159), - [anon_sym_POUND] = ACTIONS(2159), - [anon_sym_asm] = ACTIONS(2159), - [anon_sym_AT_LBRACK] = ACTIONS(2159), - [sym___double_quote] = ACTIONS(2159), - [sym___single_quote] = ACTIONS(2159), - [sym___c_double_quote] = ACTIONS(2159), - [sym___c_single_quote] = ACTIONS(2159), - [sym___r_double_quote] = ACTIONS(2159), - [sym___r_single_quote] = ACTIONS(2159), + [sym__expression] = STATE(2558), + [sym__expression_without_blocks] = STATE(2347), + [sym__expression_with_blocks] = STATE(2347), + [sym_inc_expression] = STATE(2379), + [sym_dec_expression] = STATE(2379), + [sym_or_block_expression] = STATE(2379), + [sym_option_propagation_expression] = STATE(2379), + [sym_result_propagation_expression] = STATE(2379), + [sym_anon_struct_value_expression] = STATE(2378), + [sym_go_expression] = STATE(2379), + [sym_spawn_expression] = STATE(2379), + [sym_parenthesized_expression] = STATE(2379), + [sym_call_expression] = STATE(2379), + [sym_type_initializer] = STATE(2378), + [sym_function_literal] = STATE(2379), + [sym_reference_expression] = STATE(2377), + [sym_type_reference_expression] = STATE(3460), + [sym_unary_expression] = STATE(2379), + [sym_receive_expression] = STATE(2379), + [sym_binary_expression] = STATE(2379), + [sym_as_type_cast_expression] = STATE(2379), + [sym__max_group] = STATE(2379), + [sym_literal] = STATE(2392), + [sym_map_init_expression] = STATE(2378), + [sym_array_creation] = STATE(2379), + [sym_fixed_array_creation] = STATE(2379), + [sym_selector_expression] = STATE(2379), + [sym_index_expression] = STATE(2379), + [sym_slice_expression] = STATE(2379), + [sym_if_expression] = STATE(2378), + [sym_compile_time_if_expression] = STATE(2378), + [sym_is_expression] = STATE(2379), + [sym_in_expression] = STATE(2379), + [sym_enum_fetch] = STATE(2379), + [sym_match_expression] = STATE(2378), + [sym_select_expression] = STATE(2378), + [sym_lock_expression] = STATE(2378), + [sym_unsafe_expression] = STATE(2378), + [sym_sql_expression] = STATE(2378), + [sym_c_string_literal] = STATE(2401), + [sym_raw_string_literal] = STATE(2401), + [sym_interpreted_string_literal] = STATE(2401), + [sym_mutability_modifiers] = STATE(900), + [sym_mutable_expression] = STATE(3813), + [sym_expression_list] = STATE(4399), + [sym_plain_type] = STATE(4160), + [sym__plain_type_without_special] = STATE(2360), + [sym_anon_struct_type] = STATE(2362), + [sym_multi_return_type] = STATE(2360), + [sym_result_type] = STATE(2360), + [sym_option_type] = STATE(2360), + [sym_qualified_type] = STATE(3460), + [sym_fixed_array_type] = STATE(2362), + [sym_array_type] = STATE(2362), + [sym_pointer_type] = STATE(2362), + [sym_wrong_pointer_type] = STATE(2362), + [sym_map_type] = STATE(2362), + [sym_channel_type] = STATE(2362), + [sym_shared_type] = STATE(2362), + [sym_thread_type] = STATE(2362), + [sym_atomic_type] = STATE(2362), + [sym_generic_type] = STATE(2362), + [sym_function_type] = STATE(2362), + [sym_identifier] = ACTIONS(1815), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(1430), + [anon_sym_LBRACE] = ACTIONS(2187), + [anon_sym_LPAREN] = ACTIONS(1434), + [anon_sym_fn] = ACTIONS(1436), + [anon_sym_PLUS] = ACTIONS(1817), + [anon_sym_DASH] = ACTIONS(1817), + [anon_sym_STAR] = ACTIONS(1819), + [anon_sym_struct] = ACTIONS(1442), + [anon_sym_mut] = ACTIONS(41), + [anon_sym_QMARK] = ACTIONS(47), + [anon_sym_BANG] = ACTIONS(1821), + [anon_sym_go] = ACTIONS(1823), + [anon_sym_spawn] = ACTIONS(1825), + [anon_sym_json_DOTdecode] = ACTIONS(1450), + [anon_sym_LBRACK2] = ACTIONS(1827), + [anon_sym_TILDE] = ACTIONS(1817), + [anon_sym_CARET] = ACTIONS(1817), + [anon_sym_AMP] = ACTIONS(1829), + [anon_sym_LT_DASH] = ACTIONS(1831), + [sym_none] = ACTIONS(1458), + [sym_true] = ACTIONS(1458), + [sym_false] = ACTIONS(1458), + [sym_nil] = ACTIONS(1458), + [anon_sym_if] = ACTIONS(1833), + [anon_sym_DOLLARif] = ACTIONS(1462), + [anon_sym_match] = ACTIONS(1464), + [anon_sym_select] = ACTIONS(1835), + [anon_sym_lock] = ACTIONS(1837), + [anon_sym_rlock] = ACTIONS(1837), + [anon_sym_unsafe] = ACTIONS(1839), + [anon_sym_sql] = ACTIONS(1472), + [sym_int_literal] = ACTIONS(1458), + [sym_float_literal] = ACTIONS(1474), + [sym_rune_literal] = ACTIONS(1474), + [sym_pseudo_compile_time_identifier] = ACTIONS(1476), + [anon_sym_shared] = ACTIONS(83), + [anon_sym_map_LBRACK] = ACTIONS(85), + [anon_sym_chan] = ACTIONS(87), + [anon_sym_thread] = ACTIONS(89), + [anon_sym_atomic] = ACTIONS(91), + [sym___double_quote] = ACTIONS(1480), + [sym___single_quote] = ACTIONS(1482), + [sym___c_double_quote] = ACTIONS(1484), + [sym___c_single_quote] = ACTIONS(1486), + [sym___r_double_quote] = ACTIONS(1488), + [sym___r_single_quote] = ACTIONS(1490), }, [327] = { [sym_line_comment] = STATE(327), [sym_block_comment] = STATE(327), - [sym__expression] = STATE(2455), - [sym__expression_without_blocks] = STATE(2300), - [sym__expression_with_blocks] = STATE(2300), - [sym_inc_expression] = STATE(2307), - [sym_dec_expression] = STATE(2307), - [sym_or_block_expression] = STATE(2307), - [sym_option_propagation_expression] = STATE(2307), - [sym_result_propagation_expression] = STATE(2307), - [sym_anon_struct_value_expression] = STATE(2380), - [sym_go_expression] = STATE(2307), - [sym_spawn_expression] = STATE(2307), - [sym_parenthesized_expression] = STATE(2307), - [sym_call_expression] = STATE(2307), - [sym_type_initializer] = STATE(2380), - [sym_function_literal] = STATE(2307), - [sym_reference_expression] = STATE(2311), - [sym_type_reference_expression] = STATE(3541), - [sym_unary_expression] = STATE(2307), - [sym_receive_expression] = STATE(2307), - [sym_binary_expression] = STATE(2307), - [sym_as_type_cast_expression] = STATE(2307), - [sym__max_group] = STATE(2307), - [sym_literal] = STATE(2292), - [sym_map_init_expression] = STATE(2380), - [sym_array_creation] = STATE(2307), - [sym_fixed_array_creation] = STATE(2307), - [sym_selector_expression] = STATE(2307), - [sym_index_expression] = STATE(2307), - [sym_slice_expression] = STATE(2307), - [sym_if_expression] = STATE(2380), - [sym_compile_time_if_expression] = STATE(2380), - [sym_is_expression] = STATE(2307), - [sym_in_expression] = STATE(2307), - [sym_enum_fetch] = STATE(2307), - [sym_match_expression] = STATE(2380), - [sym_select_expression] = STATE(2380), - [sym_lock_expression] = STATE(2380), - [sym_unsafe_expression] = STATE(2380), - [sym_sql_expression] = STATE(2380), - [sym_c_string_literal] = STATE(2308), - [sym_raw_string_literal] = STATE(2308), - [sym_interpreted_string_literal] = STATE(2308), - [sym_mutability_modifiers] = STATE(824), - [sym_mutable_expression] = STATE(3922), - [sym_expression_list] = STATE(4434), - [sym_plain_type] = STATE(4297), - [sym__plain_type_without_special] = STATE(2302), - [sym_anon_struct_type] = STATE(2303), - [sym_multi_return_type] = STATE(2302), - [sym_result_type] = STATE(2302), - [sym_option_type] = STATE(2302), - [sym_qualified_type] = STATE(3541), - [sym_fixed_array_type] = STATE(2303), - [sym_array_type] = STATE(2303), - [sym_pointer_type] = STATE(2303), - [sym_wrong_pointer_type] = STATE(2303), - [sym_map_type] = STATE(2303), - [sym_channel_type] = STATE(2303), - [sym_shared_type] = STATE(2303), - [sym_thread_type] = STATE(2303), - [sym_atomic_type] = STATE(2303), - [sym_generic_type] = STATE(2303), - [sym_function_type] = STATE(2303), - [sym_identifier] = ACTIONS(1807), + [sym__expression] = STATE(2282), + [sym__expression_without_blocks] = STATE(2468), + [sym__expression_with_blocks] = STATE(2468), + [sym_inc_expression] = STATE(2469), + [sym_dec_expression] = STATE(2469), + [sym_or_block_expression] = STATE(2469), + [sym_option_propagation_expression] = STATE(2469), + [sym_result_propagation_expression] = STATE(2469), + [sym_anon_struct_value_expression] = STATE(2470), + [sym_go_expression] = STATE(2469), + [sym_spawn_expression] = STATE(2469), + [sym_parenthesized_expression] = STATE(2469), + [sym_call_expression] = STATE(2469), + [sym_type_initializer] = STATE(2470), + [sym_function_literal] = STATE(2469), + [sym_reference_expression] = STATE(2487), + [sym_type_reference_expression] = STATE(3460), + [sym_unary_expression] = STATE(2469), + [sym_receive_expression] = STATE(2469), + [sym_binary_expression] = STATE(2469), + [sym_as_type_cast_expression] = STATE(2469), + [sym__max_group] = STATE(2469), + [sym_literal] = STATE(2465), + [sym_map_init_expression] = STATE(2470), + [sym_array_creation] = STATE(2469), + [sym_fixed_array_creation] = STATE(2469), + [sym_selector_expression] = STATE(2469), + [sym_index_expression] = STATE(2469), + [sym_slice_expression] = STATE(2469), + [sym_if_expression] = STATE(2470), + [sym_compile_time_if_expression] = STATE(2470), + [sym_is_expression] = STATE(2469), + [sym_in_expression] = STATE(2469), + [sym_enum_fetch] = STATE(2469), + [sym_match_expression] = STATE(2470), + [sym_select_expression] = STATE(2470), + [sym_lock_expression] = STATE(2470), + [sym_unsafe_expression] = STATE(2470), + [sym_sql_expression] = STATE(2470), + [sym_c_string_literal] = STATE(2464), + [sym_raw_string_literal] = STATE(2464), + [sym_interpreted_string_literal] = STATE(2464), + [sym_mutability_modifiers] = STATE(805), + [sym_mutable_expression] = STATE(3438), + [sym_expression_list] = STATE(3642), + [sym_plain_type] = STATE(4038), + [sym__plain_type_without_special] = STATE(2360), + [sym_anon_struct_type] = STATE(2362), + [sym_multi_return_type] = STATE(2360), + [sym_result_type] = STATE(2360), + [sym_option_type] = STATE(2360), + [sym_qualified_type] = STATE(3460), + [sym_fixed_array_type] = STATE(2362), + [sym_array_type] = STATE(2362), + [sym_pointer_type] = STATE(2362), + [sym_wrong_pointer_type] = STATE(2362), + [sym_map_type] = STATE(2362), + [sym_channel_type] = STATE(2362), + [sym_shared_type] = STATE(2362), + [sym_thread_type] = STATE(2362), + [sym_atomic_type] = STATE(2362), + [sym_generic_type] = STATE(2362), + [sym_function_type] = STATE(2362), + [sym_identifier] = ACTIONS(1691), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1428), - [anon_sym_LBRACE] = ACTIONS(2161), - [anon_sym_LPAREN] = ACTIONS(1432), - [anon_sym_fn] = ACTIONS(1434), - [anon_sym_PLUS] = ACTIONS(1811), - [anon_sym_DASH] = ACTIONS(1811), - [anon_sym_STAR] = ACTIONS(1813), - [anon_sym_struct] = ACTIONS(1440), + [anon_sym_DOT] = ACTIONS(1693), + [anon_sym_LBRACE] = ACTIONS(2151), + [anon_sym_LPAREN] = ACTIONS(2153), + [anon_sym_fn] = ACTIONS(1699), + [anon_sym_PLUS] = ACTIONS(2155), + [anon_sym_DASH] = ACTIONS(2155), + [anon_sym_STAR] = ACTIONS(2157), + [anon_sym_struct] = ACTIONS(1705), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(1815), - [anon_sym_go] = ACTIONS(1817), - [anon_sym_spawn] = ACTIONS(1819), - [anon_sym_json_DOTdecode] = ACTIONS(1448), - [anon_sym_LBRACK2] = ACTIONS(1821), - [anon_sym_TILDE] = ACTIONS(1811), - [anon_sym_CARET] = ACTIONS(1811), - [anon_sym_AMP] = ACTIONS(1823), - [anon_sym_LT_DASH] = ACTIONS(1825), - [sym_none] = ACTIONS(1456), - [sym_true] = ACTIONS(1456), - [sym_false] = ACTIONS(1456), - [sym_nil] = ACTIONS(1456), - [anon_sym_if] = ACTIONS(1827), - [anon_sym_DOLLARif] = ACTIONS(1460), - [anon_sym_match] = ACTIONS(1462), - [anon_sym_select] = ACTIONS(1829), - [anon_sym_lock] = ACTIONS(1831), - [anon_sym_rlock] = ACTIONS(1831), - [anon_sym_unsafe] = ACTIONS(1833), - [anon_sym_sql] = ACTIONS(1470), - [sym_int_literal] = ACTIONS(1456), - [sym_float_literal] = ACTIONS(1472), - [sym_rune_literal] = ACTIONS(1472), - [sym_pseudo_compile_time_identifier] = ACTIONS(1474), + [anon_sym_BANG] = ACTIONS(2159), + [anon_sym_go] = ACTIONS(1709), + [anon_sym_spawn] = ACTIONS(1711), + [anon_sym_json_DOTdecode] = ACTIONS(2161), + [anon_sym_LBRACK2] = ACTIONS(2163), + [anon_sym_TILDE] = ACTIONS(2155), + [anon_sym_CARET] = ACTIONS(2155), + [anon_sym_AMP] = ACTIONS(2165), + [anon_sym_LT_DASH] = ACTIONS(2167), + [sym_none] = ACTIONS(1721), + [sym_true] = ACTIONS(1721), + [sym_false] = ACTIONS(1721), + [sym_nil] = ACTIONS(1721), + [anon_sym_if] = ACTIONS(1723), + [anon_sym_DOLLARif] = ACTIONS(1725), + [anon_sym_match] = ACTIONS(1727), + [anon_sym_select] = ACTIONS(1729), + [anon_sym_lock] = ACTIONS(1731), + [anon_sym_rlock] = ACTIONS(1731), + [anon_sym_unsafe] = ACTIONS(1733), + [anon_sym_sql] = ACTIONS(1735), + [sym_int_literal] = ACTIONS(1721), + [sym_float_literal] = ACTIONS(2169), + [sym_rune_literal] = ACTIONS(2169), + [sym_pseudo_compile_time_identifier] = ACTIONS(1737), [anon_sym_shared] = ACTIONS(83), [anon_sym_map_LBRACK] = ACTIONS(85), [anon_sym_chan] = ACTIONS(87), [anon_sym_thread] = ACTIONS(89), [anon_sym_atomic] = ACTIONS(91), - [sym___double_quote] = ACTIONS(1478), - [sym___single_quote] = ACTIONS(1480), - [sym___c_double_quote] = ACTIONS(1482), - [sym___c_single_quote] = ACTIONS(1484), - [sym___r_double_quote] = ACTIONS(1486), - [sym___r_single_quote] = ACTIONS(1488), + [sym___double_quote] = ACTIONS(2171), + [sym___single_quote] = ACTIONS(2173), + [sym___c_double_quote] = ACTIONS(2175), + [sym___c_single_quote] = ACTIONS(2177), + [sym___r_double_quote] = ACTIONS(2179), + [sym___r_single_quote] = ACTIONS(2181), }, [328] = { [sym_line_comment] = STATE(328), [sym_block_comment] = STATE(328), - [ts_builtin_sym_end] = ACTIONS(2163), - [sym_identifier] = ACTIONS(2165), - [anon_sym_LF] = ACTIONS(2165), - [anon_sym_CR] = ACTIONS(2165), - [anon_sym_CR_LF] = ACTIONS(2165), + [ts_builtin_sym_end] = ACTIONS(2189), + [sym_identifier] = ACTIONS(2191), + [anon_sym_LF] = ACTIONS(2191), + [anon_sym_CR] = ACTIONS(2191), + [anon_sym_CR_LF] = ACTIONS(2191), [anon_sym_SLASH_SLASH] = ACTIONS(497), [anon_sym_SLASH_STAR] = ACTIONS(499), - [anon_sym_DOT] = ACTIONS(2165), - [anon_sym_as] = ACTIONS(2165), - [anon_sym_LBRACE] = ACTIONS(2165), - [anon_sym_COMMA] = ACTIONS(2165), - [anon_sym_const] = ACTIONS(2165), - [anon_sym_LPAREN] = ACTIONS(2165), - [anon_sym_EQ] = ACTIONS(2165), - [anon_sym___global] = ACTIONS(2165), - [anon_sym_type] = ACTIONS(2165), - [anon_sym_PIPE] = ACTIONS(2165), - [anon_sym_fn] = ACTIONS(2165), - [anon_sym_PLUS] = ACTIONS(2165), - [anon_sym_DASH] = ACTIONS(2165), - [anon_sym_STAR] = ACTIONS(2165), - [anon_sym_SLASH] = ACTIONS(2165), - [anon_sym_PERCENT] = ACTIONS(2165), - [anon_sym_LT] = ACTIONS(2165), - [anon_sym_GT] = ACTIONS(2165), - [anon_sym_EQ_EQ] = ACTIONS(2165), - [anon_sym_BANG_EQ] = ACTIONS(2165), - [anon_sym_LT_EQ] = ACTIONS(2165), - [anon_sym_GT_EQ] = ACTIONS(2165), - [anon_sym_LBRACK] = ACTIONS(2163), - [anon_sym_struct] = ACTIONS(2165), - [anon_sym_union] = ACTIONS(2165), - [anon_sym_pub] = ACTIONS(2165), - [anon_sym_mut] = ACTIONS(2165), - [anon_sym_enum] = ACTIONS(2165), - [anon_sym_interface] = ACTIONS(2165), - [anon_sym_PLUS_PLUS] = ACTIONS(2165), - [anon_sym_DASH_DASH] = ACTIONS(2165), - [anon_sym_QMARK] = ACTIONS(2165), - [anon_sym_BANG] = ACTIONS(2165), - [anon_sym_go] = ACTIONS(2165), - [anon_sym_spawn] = ACTIONS(2165), - [anon_sym_json_DOTdecode] = ACTIONS(2165), - [anon_sym_LBRACK2] = ACTIONS(2165), - [anon_sym_TILDE] = ACTIONS(2165), - [anon_sym_CARET] = ACTIONS(2165), - [anon_sym_AMP] = ACTIONS(2165), - [anon_sym_LT_DASH] = ACTIONS(2165), - [anon_sym_LT_LT] = ACTIONS(2165), - [anon_sym_GT_GT] = ACTIONS(2165), - [anon_sym_GT_GT_GT] = ACTIONS(2165), - [anon_sym_AMP_CARET] = ACTIONS(2165), - [anon_sym_AMP_AMP] = ACTIONS(2165), - [anon_sym_PIPE_PIPE] = ACTIONS(2165), - [anon_sym_or] = ACTIONS(2165), - [sym_none] = ACTIONS(2165), - [sym_true] = ACTIONS(2165), - [sym_false] = ACTIONS(2165), - [sym_nil] = ACTIONS(2165), - [anon_sym_QMARK_DOT] = ACTIONS(2165), - [anon_sym_POUND_LBRACK] = ACTIONS(2165), - [anon_sym_if] = ACTIONS(2165), - [anon_sym_DOLLARif] = ACTIONS(2165), - [anon_sym_is] = ACTIONS(2165), - [anon_sym_BANGis] = ACTIONS(2165), - [anon_sym_in] = ACTIONS(2165), - [anon_sym_BANGin] = ACTIONS(2165), - [anon_sym_match] = ACTIONS(2165), - [anon_sym_select] = ACTIONS(2165), - [anon_sym_STAR_EQ] = ACTIONS(2165), - [anon_sym_SLASH_EQ] = ACTIONS(2165), - [anon_sym_PERCENT_EQ] = ACTIONS(2165), - [anon_sym_LT_LT_EQ] = ACTIONS(2165), - [anon_sym_GT_GT_EQ] = ACTIONS(2165), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(2165), - [anon_sym_AMP_EQ] = ACTIONS(2165), - [anon_sym_AMP_CARET_EQ] = ACTIONS(2165), - [anon_sym_PLUS_EQ] = ACTIONS(2165), - [anon_sym_DASH_EQ] = ACTIONS(2165), - [anon_sym_PIPE_EQ] = ACTIONS(2165), - [anon_sym_CARET_EQ] = ACTIONS(2165), - [anon_sym_COLON_EQ] = ACTIONS(2165), - [anon_sym_lock] = ACTIONS(2165), - [anon_sym_rlock] = ACTIONS(2165), - [anon_sym_unsafe] = ACTIONS(2165), - [anon_sym_sql] = ACTIONS(2165), - [sym_int_literal] = ACTIONS(2165), - [sym_float_literal] = ACTIONS(2165), - [sym_rune_literal] = ACTIONS(2165), - [sym_pseudo_compile_time_identifier] = ACTIONS(2165), - [anon_sym_shared] = ACTIONS(2165), - [anon_sym_map_LBRACK] = ACTIONS(2165), - [anon_sym_chan] = ACTIONS(2165), - [anon_sym_thread] = ACTIONS(2165), - [anon_sym_atomic] = ACTIONS(2165), - [anon_sym_assert] = ACTIONS(2165), - [anon_sym_defer] = ACTIONS(2165), - [anon_sym_goto] = ACTIONS(2165), - [anon_sym_break] = ACTIONS(2165), - [anon_sym_continue] = ACTIONS(2165), - [anon_sym_return] = ACTIONS(2165), - [anon_sym_DOLLARfor] = ACTIONS(2165), - [anon_sym_for] = ACTIONS(2165), - [anon_sym_POUND] = ACTIONS(2165), - [anon_sym_asm] = ACTIONS(2165), - [anon_sym_AT_LBRACK] = ACTIONS(2165), - [sym___double_quote] = ACTIONS(2165), - [sym___single_quote] = ACTIONS(2165), - [sym___c_double_quote] = ACTIONS(2165), - [sym___c_single_quote] = ACTIONS(2165), - [sym___r_double_quote] = ACTIONS(2165), - [sym___r_single_quote] = ACTIONS(2165), + [anon_sym_DOT] = ACTIONS(2191), + [anon_sym_as] = ACTIONS(2191), + [anon_sym_LBRACE] = ACTIONS(2191), + [anon_sym_COMMA] = ACTIONS(2191), + [anon_sym_const] = ACTIONS(2191), + [anon_sym_LPAREN] = ACTIONS(2191), + [anon_sym_EQ] = ACTIONS(2191), + [anon_sym___global] = ACTIONS(2191), + [anon_sym_type] = ACTIONS(2191), + [anon_sym_PIPE] = ACTIONS(2191), + [anon_sym_fn] = ACTIONS(2191), + [anon_sym_PLUS] = ACTIONS(2191), + [anon_sym_DASH] = ACTIONS(2191), + [anon_sym_STAR] = ACTIONS(2191), + [anon_sym_SLASH] = ACTIONS(2191), + [anon_sym_PERCENT] = ACTIONS(2191), + [anon_sym_LT] = ACTIONS(2191), + [anon_sym_GT] = ACTIONS(2191), + [anon_sym_EQ_EQ] = ACTIONS(2191), + [anon_sym_BANG_EQ] = ACTIONS(2191), + [anon_sym_LT_EQ] = ACTIONS(2191), + [anon_sym_GT_EQ] = ACTIONS(2191), + [anon_sym_LBRACK] = ACTIONS(2189), + [anon_sym_struct] = ACTIONS(2191), + [anon_sym_union] = ACTIONS(2191), + [anon_sym_pub] = ACTIONS(2191), + [anon_sym_mut] = ACTIONS(2191), + [anon_sym_enum] = ACTIONS(2191), + [anon_sym_interface] = ACTIONS(2191), + [anon_sym_PLUS_PLUS] = ACTIONS(2191), + [anon_sym_DASH_DASH] = ACTIONS(2191), + [anon_sym_QMARK] = ACTIONS(2191), + [anon_sym_BANG] = ACTIONS(2191), + [anon_sym_go] = ACTIONS(2191), + [anon_sym_spawn] = ACTIONS(2191), + [anon_sym_json_DOTdecode] = ACTIONS(2191), + [anon_sym_LBRACK2] = ACTIONS(2191), + [anon_sym_TILDE] = ACTIONS(2191), + [anon_sym_CARET] = ACTIONS(2191), + [anon_sym_AMP] = ACTIONS(2191), + [anon_sym_LT_DASH] = ACTIONS(2191), + [anon_sym_LT_LT] = ACTIONS(2191), + [anon_sym_GT_GT] = ACTIONS(2191), + [anon_sym_GT_GT_GT] = ACTIONS(2191), + [anon_sym_AMP_CARET] = ACTIONS(2191), + [anon_sym_AMP_AMP] = ACTIONS(2191), + [anon_sym_PIPE_PIPE] = ACTIONS(2191), + [anon_sym_or] = ACTIONS(2191), + [sym_none] = ACTIONS(2191), + [sym_true] = ACTIONS(2191), + [sym_false] = ACTIONS(2191), + [sym_nil] = ACTIONS(2191), + [anon_sym_QMARK_DOT] = ACTIONS(2191), + [anon_sym_POUND_LBRACK] = ACTIONS(2191), + [anon_sym_if] = ACTIONS(2191), + [anon_sym_DOLLARif] = ACTIONS(2191), + [anon_sym_is] = ACTIONS(2191), + [anon_sym_BANGis] = ACTIONS(2191), + [anon_sym_in] = ACTIONS(2191), + [anon_sym_BANGin] = ACTIONS(2191), + [anon_sym_match] = ACTIONS(2191), + [anon_sym_select] = ACTIONS(2191), + [anon_sym_STAR_EQ] = ACTIONS(2191), + [anon_sym_SLASH_EQ] = ACTIONS(2191), + [anon_sym_PERCENT_EQ] = ACTIONS(2191), + [anon_sym_LT_LT_EQ] = ACTIONS(2191), + [anon_sym_GT_GT_EQ] = ACTIONS(2191), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(2191), + [anon_sym_AMP_EQ] = ACTIONS(2191), + [anon_sym_AMP_CARET_EQ] = ACTIONS(2191), + [anon_sym_PLUS_EQ] = ACTIONS(2191), + [anon_sym_DASH_EQ] = ACTIONS(2191), + [anon_sym_PIPE_EQ] = ACTIONS(2191), + [anon_sym_CARET_EQ] = ACTIONS(2191), + [anon_sym_COLON_EQ] = ACTIONS(2191), + [anon_sym_lock] = ACTIONS(2191), + [anon_sym_rlock] = ACTIONS(2191), + [anon_sym_unsafe] = ACTIONS(2191), + [anon_sym_sql] = ACTIONS(2191), + [sym_int_literal] = ACTIONS(2191), + [sym_float_literal] = ACTIONS(2191), + [sym_rune_literal] = ACTIONS(2191), + [sym_pseudo_compile_time_identifier] = ACTIONS(2191), + [anon_sym_shared] = ACTIONS(2191), + [anon_sym_map_LBRACK] = ACTIONS(2191), + [anon_sym_chan] = ACTIONS(2191), + [anon_sym_thread] = ACTIONS(2191), + [anon_sym_atomic] = ACTIONS(2191), + [anon_sym_assert] = ACTIONS(2191), + [anon_sym_defer] = ACTIONS(2191), + [anon_sym_goto] = ACTIONS(2191), + [anon_sym_break] = ACTIONS(2191), + [anon_sym_continue] = ACTIONS(2191), + [anon_sym_return] = ACTIONS(2191), + [anon_sym_DOLLARfor] = ACTIONS(2191), + [anon_sym_for] = ACTIONS(2191), + [anon_sym_POUND] = ACTIONS(2191), + [anon_sym_asm] = ACTIONS(2191), + [anon_sym_AT_LBRACK] = ACTIONS(2191), + [sym___double_quote] = ACTIONS(2191), + [sym___single_quote] = ACTIONS(2191), + [sym___c_double_quote] = ACTIONS(2191), + [sym___c_single_quote] = ACTIONS(2191), + [sym___r_double_quote] = ACTIONS(2191), + [sym___r_single_quote] = ACTIONS(2191), }, [329] = { [sym_line_comment] = STATE(329), [sym_block_comment] = STATE(329), - [ts_builtin_sym_end] = ACTIONS(2167), - [sym_identifier] = ACTIONS(2169), - [anon_sym_LF] = ACTIONS(2169), - [anon_sym_CR] = ACTIONS(2169), - [anon_sym_CR_LF] = ACTIONS(2169), - [anon_sym_SLASH_SLASH] = ACTIONS(497), - [anon_sym_SLASH_STAR] = ACTIONS(499), - [anon_sym_DOT] = ACTIONS(2169), - [anon_sym_as] = ACTIONS(2169), - [anon_sym_LBRACE] = ACTIONS(2169), - [anon_sym_COMMA] = ACTIONS(2169), - [anon_sym_const] = ACTIONS(2169), - [anon_sym_LPAREN] = ACTIONS(2169), - [anon_sym_EQ] = ACTIONS(2169), - [anon_sym___global] = ACTIONS(2169), - [anon_sym_type] = ACTIONS(2169), - [anon_sym_PIPE] = ACTIONS(2169), - [anon_sym_fn] = ACTIONS(2169), - [anon_sym_PLUS] = ACTIONS(2169), - [anon_sym_DASH] = ACTIONS(2169), - [anon_sym_STAR] = ACTIONS(2169), - [anon_sym_SLASH] = ACTIONS(2169), - [anon_sym_PERCENT] = ACTIONS(2169), - [anon_sym_LT] = ACTIONS(2169), - [anon_sym_GT] = ACTIONS(2169), - [anon_sym_EQ_EQ] = ACTIONS(2169), - [anon_sym_BANG_EQ] = ACTIONS(2169), - [anon_sym_LT_EQ] = ACTIONS(2169), - [anon_sym_GT_EQ] = ACTIONS(2169), - [anon_sym_LBRACK] = ACTIONS(2167), - [anon_sym_struct] = ACTIONS(2169), - [anon_sym_union] = ACTIONS(2169), - [anon_sym_pub] = ACTIONS(2169), - [anon_sym_mut] = ACTIONS(2169), - [anon_sym_enum] = ACTIONS(2169), - [anon_sym_interface] = ACTIONS(2169), - [anon_sym_PLUS_PLUS] = ACTIONS(2169), - [anon_sym_DASH_DASH] = ACTIONS(2169), - [anon_sym_QMARK] = ACTIONS(2169), - [anon_sym_BANG] = ACTIONS(2169), - [anon_sym_go] = ACTIONS(2169), - [anon_sym_spawn] = ACTIONS(2169), - [anon_sym_json_DOTdecode] = ACTIONS(2169), - [anon_sym_LBRACK2] = ACTIONS(2169), - [anon_sym_TILDE] = ACTIONS(2169), - [anon_sym_CARET] = ACTIONS(2169), - [anon_sym_AMP] = ACTIONS(2169), - [anon_sym_LT_DASH] = ACTIONS(2169), - [anon_sym_LT_LT] = ACTIONS(2169), - [anon_sym_GT_GT] = ACTIONS(2169), - [anon_sym_GT_GT_GT] = ACTIONS(2169), - [anon_sym_AMP_CARET] = ACTIONS(2169), - [anon_sym_AMP_AMP] = ACTIONS(2169), - [anon_sym_PIPE_PIPE] = ACTIONS(2169), - [anon_sym_or] = ACTIONS(2169), - [sym_none] = ACTIONS(2169), - [sym_true] = ACTIONS(2169), - [sym_false] = ACTIONS(2169), - [sym_nil] = ACTIONS(2169), - [anon_sym_QMARK_DOT] = ACTIONS(2169), - [anon_sym_POUND_LBRACK] = ACTIONS(2169), - [anon_sym_if] = ACTIONS(2169), - [anon_sym_DOLLARif] = ACTIONS(2169), - [anon_sym_is] = ACTIONS(2169), - [anon_sym_BANGis] = ACTIONS(2169), - [anon_sym_in] = ACTIONS(2169), - [anon_sym_BANGin] = ACTIONS(2169), - [anon_sym_match] = ACTIONS(2169), - [anon_sym_select] = ACTIONS(2169), - [anon_sym_STAR_EQ] = ACTIONS(2169), - [anon_sym_SLASH_EQ] = ACTIONS(2169), - [anon_sym_PERCENT_EQ] = ACTIONS(2169), - [anon_sym_LT_LT_EQ] = ACTIONS(2169), - [anon_sym_GT_GT_EQ] = ACTIONS(2169), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(2169), - [anon_sym_AMP_EQ] = ACTIONS(2169), - [anon_sym_AMP_CARET_EQ] = ACTIONS(2169), - [anon_sym_PLUS_EQ] = ACTIONS(2169), - [anon_sym_DASH_EQ] = ACTIONS(2169), - [anon_sym_PIPE_EQ] = ACTIONS(2169), - [anon_sym_CARET_EQ] = ACTIONS(2169), - [anon_sym_COLON_EQ] = ACTIONS(2169), - [anon_sym_lock] = ACTIONS(2169), - [anon_sym_rlock] = ACTIONS(2169), - [anon_sym_unsafe] = ACTIONS(2169), - [anon_sym_sql] = ACTIONS(2169), - [sym_int_literal] = ACTIONS(2169), - [sym_float_literal] = ACTIONS(2169), - [sym_rune_literal] = ACTIONS(2169), - [sym_pseudo_compile_time_identifier] = ACTIONS(2169), - [anon_sym_shared] = ACTIONS(2169), - [anon_sym_map_LBRACK] = ACTIONS(2169), - [anon_sym_chan] = ACTIONS(2169), - [anon_sym_thread] = ACTIONS(2169), - [anon_sym_atomic] = ACTIONS(2169), - [anon_sym_assert] = ACTIONS(2169), - [anon_sym_defer] = ACTIONS(2169), - [anon_sym_goto] = ACTIONS(2169), - [anon_sym_break] = ACTIONS(2169), - [anon_sym_continue] = ACTIONS(2169), - [anon_sym_return] = ACTIONS(2169), - [anon_sym_DOLLARfor] = ACTIONS(2169), - [anon_sym_for] = ACTIONS(2169), - [anon_sym_POUND] = ACTIONS(2169), - [anon_sym_asm] = ACTIONS(2169), - [anon_sym_AT_LBRACK] = ACTIONS(2169), - [sym___double_quote] = ACTIONS(2169), - [sym___single_quote] = ACTIONS(2169), - [sym___c_double_quote] = ACTIONS(2169), - [sym___c_single_quote] = ACTIONS(2169), - [sym___r_double_quote] = ACTIONS(2169), - [sym___r_single_quote] = ACTIONS(2169), + [sym__expression] = STATE(1273), + [sym__expression_without_blocks] = STATE(1318), + [sym__expression_with_blocks] = STATE(1318), + [sym_inc_expression] = STATE(1319), + [sym_dec_expression] = STATE(1319), + [sym_or_block_expression] = STATE(1319), + [sym_option_propagation_expression] = STATE(1319), + [sym_result_propagation_expression] = STATE(1319), + [sym_anon_struct_value_expression] = STATE(1320), + [sym_go_expression] = STATE(1319), + [sym_spawn_expression] = STATE(1319), + [sym_parenthesized_expression] = STATE(1319), + [sym_call_expression] = STATE(1319), + [sym_type_initializer] = STATE(1320), + [sym_function_literal] = STATE(1319), + [sym_reference_expression] = STATE(1397), + [sym_type_reference_expression] = STATE(3460), + [sym_unary_expression] = STATE(1319), + [sym_receive_expression] = STATE(1319), + [sym_binary_expression] = STATE(1319), + [sym_as_type_cast_expression] = STATE(1319), + [sym__max_group] = STATE(1319), + [sym_literal] = STATE(1314), + [sym_map_init_expression] = STATE(1320), + [sym_array_creation] = STATE(1319), + [sym_fixed_array_creation] = STATE(1319), + [sym_selector_expression] = STATE(1399), + [sym_index_expression] = STATE(1319), + [sym_slice_expression] = STATE(1319), + [sym_if_expression] = STATE(1320), + [sym_compile_time_if_expression] = STATE(1320), + [sym_is_expression] = STATE(1319), + [sym_in_expression] = STATE(1319), + [sym_enum_fetch] = STATE(1319), + [sym_match_expression] = STATE(1320), + [sym_select_expression] = STATE(1320), + [sym_lock_expression] = STATE(1320), + [sym_unsafe_expression] = STATE(1320), + [sym_sql_expression] = STATE(1320), + [sym_c_string_literal] = STATE(1291), + [sym_raw_string_literal] = STATE(1291), + [sym_interpreted_string_literal] = STATE(1291), + [sym_mutability_modifiers] = STATE(639), + [sym_plain_type] = STATE(4307), + [sym__plain_type_without_special] = STATE(2360), + [sym_anon_struct_type] = STATE(2362), + [sym_multi_return_type] = STATE(2360), + [sym_result_type] = STATE(2360), + [sym_option_type] = STATE(2360), + [sym_qualified_type] = STATE(3460), + [sym_fixed_array_type] = STATE(2362), + [sym_array_type] = STATE(2362), + [sym_pointer_type] = STATE(2362), + [sym_wrong_pointer_type] = STATE(2362), + [sym_map_type] = STATE(2362), + [sym_channel_type] = STATE(2362), + [sym_shared_type] = STATE(2362), + [sym_thread_type] = STATE(2362), + [sym_atomic_type] = STATE(2362), + [sym_generic_type] = STATE(2362), + [sym_function_type] = STATE(2362), + [aux_sym__array_repeat1] = STATE(366), + [sym_identifier] = ACTIONS(1360), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(1362), + [anon_sym_LBRACE] = ACTIONS(1364), + [anon_sym_LPAREN] = ACTIONS(1366), + [anon_sym_fn] = ACTIONS(1368), + [anon_sym_PLUS] = ACTIONS(1370), + [anon_sym_DASH] = ACTIONS(1370), + [anon_sym_STAR] = ACTIONS(1372), + [anon_sym_RBRACK] = ACTIONS(2193), + [anon_sym_struct] = ACTIONS(1376), + [anon_sym_mut] = ACTIONS(41), + [anon_sym_QMARK] = ACTIONS(47), + [anon_sym_BANG] = ACTIONS(1378), + [anon_sym_go] = ACTIONS(1380), + [anon_sym_spawn] = ACTIONS(1382), + [anon_sym_json_DOTdecode] = ACTIONS(1384), + [anon_sym_LBRACK2] = ACTIONS(1386), + [anon_sym_TILDE] = ACTIONS(1370), + [anon_sym_CARET] = ACTIONS(1370), + [anon_sym_AMP] = ACTIONS(1388), + [anon_sym_LT_DASH] = ACTIONS(1390), + [sym_none] = ACTIONS(1392), + [sym_true] = ACTIONS(1392), + [sym_false] = ACTIONS(1392), + [sym_nil] = ACTIONS(1392), + [anon_sym_if] = ACTIONS(1865), + [anon_sym_DOLLARif] = ACTIONS(1396), + [anon_sym_match] = ACTIONS(1398), + [anon_sym_select] = ACTIONS(1400), + [anon_sym_lock] = ACTIONS(1402), + [anon_sym_rlock] = ACTIONS(1402), + [anon_sym_unsafe] = ACTIONS(1871), + [anon_sym_sql] = ACTIONS(1406), + [sym_int_literal] = ACTIONS(1408), + [sym_float_literal] = ACTIONS(1410), + [sym_rune_literal] = ACTIONS(1410), + [sym_pseudo_compile_time_identifier] = ACTIONS(1412), + [anon_sym_shared] = ACTIONS(83), + [anon_sym_map_LBRACK] = ACTIONS(85), + [anon_sym_chan] = ACTIONS(87), + [anon_sym_thread] = ACTIONS(89), + [anon_sym_atomic] = ACTIONS(91), + [sym___double_quote] = ACTIONS(1414), + [sym___single_quote] = ACTIONS(1416), + [sym___c_double_quote] = ACTIONS(1418), + [sym___c_single_quote] = ACTIONS(1420), + [sym___r_double_quote] = ACTIONS(1422), + [sym___r_single_quote] = ACTIONS(1424), }, [330] = { [sym_line_comment] = STATE(330), [sym_block_comment] = STATE(330), - [ts_builtin_sym_end] = ACTIONS(2171), - [sym_identifier] = ACTIONS(2173), - [anon_sym_LF] = ACTIONS(2173), - [anon_sym_CR] = ACTIONS(2173), - [anon_sym_CR_LF] = ACTIONS(2173), - [anon_sym_SLASH_SLASH] = ACTIONS(497), - [anon_sym_SLASH_STAR] = ACTIONS(499), - [anon_sym_DOT] = ACTIONS(2173), - [anon_sym_as] = ACTIONS(2173), - [anon_sym_LBRACE] = ACTIONS(2173), - [anon_sym_COMMA] = ACTIONS(2173), - [anon_sym_const] = ACTIONS(2173), - [anon_sym_LPAREN] = ACTIONS(2173), - [anon_sym_EQ] = ACTIONS(2173), - [anon_sym___global] = ACTIONS(2173), - [anon_sym_type] = ACTIONS(2173), - [anon_sym_PIPE] = ACTIONS(2173), - [anon_sym_fn] = ACTIONS(2173), - [anon_sym_PLUS] = ACTIONS(2173), - [anon_sym_DASH] = ACTIONS(2173), - [anon_sym_STAR] = ACTIONS(2173), - [anon_sym_SLASH] = ACTIONS(2173), - [anon_sym_PERCENT] = ACTIONS(2173), - [anon_sym_LT] = ACTIONS(2173), - [anon_sym_GT] = ACTIONS(2173), - [anon_sym_EQ_EQ] = ACTIONS(2173), - [anon_sym_BANG_EQ] = ACTIONS(2173), - [anon_sym_LT_EQ] = ACTIONS(2173), - [anon_sym_GT_EQ] = ACTIONS(2173), - [anon_sym_LBRACK] = ACTIONS(2171), - [anon_sym_struct] = ACTIONS(2173), - [anon_sym_union] = ACTIONS(2173), - [anon_sym_pub] = ACTIONS(2173), - [anon_sym_mut] = ACTIONS(2173), - [anon_sym_enum] = ACTIONS(2173), - [anon_sym_interface] = ACTIONS(2173), - [anon_sym_PLUS_PLUS] = ACTIONS(2173), - [anon_sym_DASH_DASH] = ACTIONS(2173), - [anon_sym_QMARK] = ACTIONS(2173), - [anon_sym_BANG] = ACTIONS(2173), - [anon_sym_go] = ACTIONS(2173), - [anon_sym_spawn] = ACTIONS(2173), - [anon_sym_json_DOTdecode] = ACTIONS(2173), - [anon_sym_LBRACK2] = ACTIONS(2173), - [anon_sym_TILDE] = ACTIONS(2173), - [anon_sym_CARET] = ACTIONS(2173), - [anon_sym_AMP] = ACTIONS(2173), - [anon_sym_LT_DASH] = ACTIONS(2173), - [anon_sym_LT_LT] = ACTIONS(2173), - [anon_sym_GT_GT] = ACTIONS(2173), - [anon_sym_GT_GT_GT] = ACTIONS(2173), - [anon_sym_AMP_CARET] = ACTIONS(2173), - [anon_sym_AMP_AMP] = ACTIONS(2173), - [anon_sym_PIPE_PIPE] = ACTIONS(2173), - [anon_sym_or] = ACTIONS(2173), - [sym_none] = ACTIONS(2173), - [sym_true] = ACTIONS(2173), - [sym_false] = ACTIONS(2173), - [sym_nil] = ACTIONS(2173), - [anon_sym_QMARK_DOT] = ACTIONS(2173), - [anon_sym_POUND_LBRACK] = ACTIONS(2173), - [anon_sym_if] = ACTIONS(2173), - [anon_sym_DOLLARif] = ACTIONS(2173), - [anon_sym_is] = ACTIONS(2173), - [anon_sym_BANGis] = ACTIONS(2173), - [anon_sym_in] = ACTIONS(2173), - [anon_sym_BANGin] = ACTIONS(2173), - [anon_sym_match] = ACTIONS(2173), - [anon_sym_select] = ACTIONS(2173), - [anon_sym_STAR_EQ] = ACTIONS(2173), - [anon_sym_SLASH_EQ] = ACTIONS(2173), - [anon_sym_PERCENT_EQ] = ACTIONS(2173), - [anon_sym_LT_LT_EQ] = ACTIONS(2173), - [anon_sym_GT_GT_EQ] = ACTIONS(2173), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(2173), - [anon_sym_AMP_EQ] = ACTIONS(2173), - [anon_sym_AMP_CARET_EQ] = ACTIONS(2173), - [anon_sym_PLUS_EQ] = ACTIONS(2173), - [anon_sym_DASH_EQ] = ACTIONS(2173), - [anon_sym_PIPE_EQ] = ACTIONS(2173), - [anon_sym_CARET_EQ] = ACTIONS(2173), - [anon_sym_COLON_EQ] = ACTIONS(2173), - [anon_sym_lock] = ACTIONS(2173), - [anon_sym_rlock] = ACTIONS(2173), - [anon_sym_unsafe] = ACTIONS(2173), - [anon_sym_sql] = ACTIONS(2173), - [sym_int_literal] = ACTIONS(2173), - [sym_float_literal] = ACTIONS(2173), - [sym_rune_literal] = ACTIONS(2173), - [sym_pseudo_compile_time_identifier] = ACTIONS(2173), - [anon_sym_shared] = ACTIONS(2173), - [anon_sym_map_LBRACK] = ACTIONS(2173), - [anon_sym_chan] = ACTIONS(2173), - [anon_sym_thread] = ACTIONS(2173), - [anon_sym_atomic] = ACTIONS(2173), - [anon_sym_assert] = ACTIONS(2173), - [anon_sym_defer] = ACTIONS(2173), - [anon_sym_goto] = ACTIONS(2173), - [anon_sym_break] = ACTIONS(2173), - [anon_sym_continue] = ACTIONS(2173), - [anon_sym_return] = ACTIONS(2173), - [anon_sym_DOLLARfor] = ACTIONS(2173), - [anon_sym_for] = ACTIONS(2173), - [anon_sym_POUND] = ACTIONS(2173), - [anon_sym_asm] = ACTIONS(2173), - [anon_sym_AT_LBRACK] = ACTIONS(2173), - [sym___double_quote] = ACTIONS(2173), - [sym___single_quote] = ACTIONS(2173), - [sym___c_double_quote] = ACTIONS(2173), - [sym___c_single_quote] = ACTIONS(2173), - [sym___r_double_quote] = ACTIONS(2173), - [sym___r_single_quote] = ACTIONS(2173), + [sym__expression] = STATE(2617), + [sym__expression_without_blocks] = STATE(2347), + [sym__expression_with_blocks] = STATE(2347), + [sym_inc_expression] = STATE(2379), + [sym_dec_expression] = STATE(2379), + [sym_or_block_expression] = STATE(2379), + [sym_option_propagation_expression] = STATE(2379), + [sym_result_propagation_expression] = STATE(2379), + [sym_anon_struct_value_expression] = STATE(2378), + [sym_go_expression] = STATE(2379), + [sym_spawn_expression] = STATE(2379), + [sym_parenthesized_expression] = STATE(2379), + [sym_call_expression] = STATE(2379), + [sym_type_initializer] = STATE(2378), + [sym_function_literal] = STATE(2379), + [sym_reference_expression] = STATE(2377), + [sym_type_reference_expression] = STATE(3460), + [sym_unary_expression] = STATE(2379), + [sym_receive_expression] = STATE(2379), + [sym_binary_expression] = STATE(2379), + [sym_as_type_cast_expression] = STATE(2379), + [sym__max_group] = STATE(2379), + [sym_literal] = STATE(2392), + [sym_map_init_expression] = STATE(2378), + [sym_array_creation] = STATE(2379), + [sym_fixed_array_creation] = STATE(2379), + [sym_selector_expression] = STATE(2379), + [sym_index_expression] = STATE(2379), + [sym_slice_expression] = STATE(2379), + [sym_if_expression] = STATE(2378), + [sym_compile_time_if_expression] = STATE(2378), + [sym_is_expression] = STATE(2379), + [sym_in_expression] = STATE(2379), + [sym_enum_fetch] = STATE(2379), + [sym_match_expression] = STATE(2378), + [sym_select_expression] = STATE(2378), + [sym_lock_expression] = STATE(2378), + [sym_unsafe_expression] = STATE(2378), + [sym_sql_expression] = STATE(2378), + [sym_c_string_literal] = STATE(2401), + [sym_raw_string_literal] = STATE(2401), + [sym_interpreted_string_literal] = STATE(2401), + [sym_mutability_modifiers] = STATE(939), + [sym_plain_type] = STATE(3569), + [sym__plain_type_without_special] = STATE(2360), + [sym_anon_struct_type] = STATE(2362), + [sym_multi_return_type] = STATE(2360), + [sym_result_type] = STATE(2360), + [sym_option_type] = STATE(2360), + [sym_qualified_type] = STATE(3460), + [sym_fixed_array_type] = STATE(2362), + [sym_array_type] = STATE(2362), + [sym_pointer_type] = STATE(2362), + [sym_wrong_pointer_type] = STATE(2362), + [sym_map_type] = STATE(2362), + [sym_channel_type] = STATE(2362), + [sym_shared_type] = STATE(2362), + [sym_thread_type] = STATE(2362), + [sym_atomic_type] = STATE(2362), + [sym_generic_type] = STATE(2362), + [sym_function_type] = STATE(2362), + [sym_range] = STATE(4569), + [sym_identifier] = ACTIONS(2127), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(1430), + [anon_sym_LBRACE] = ACTIONS(1432), + [anon_sym_LPAREN] = ACTIONS(1434), + [anon_sym_fn] = ACTIONS(1436), + [anon_sym_PLUS] = ACTIONS(1438), + [anon_sym_DASH] = ACTIONS(1438), + [anon_sym_STAR] = ACTIONS(2129), + [anon_sym_struct] = ACTIONS(1442), + [anon_sym_mut] = ACTIONS(41), + [anon_sym_QMARK] = ACTIONS(47), + [anon_sym_BANG] = ACTIONS(2131), + [anon_sym_go] = ACTIONS(1446), + [anon_sym_spawn] = ACTIONS(1448), + [anon_sym_json_DOTdecode] = ACTIONS(1450), + [anon_sym_LBRACK2] = ACTIONS(1452), + [anon_sym_TILDE] = ACTIONS(1438), + [anon_sym_CARET] = ACTIONS(1438), + [anon_sym_AMP] = ACTIONS(2133), + [anon_sym_LT_DASH] = ACTIONS(1456), + [sym_none] = ACTIONS(1458), + [sym_true] = ACTIONS(1458), + [sym_false] = ACTIONS(1458), + [sym_nil] = ACTIONS(1458), + [anon_sym_if] = ACTIONS(1833), + [anon_sym_DOLLARif] = ACTIONS(1462), + [anon_sym_match] = ACTIONS(1464), + [anon_sym_select] = ACTIONS(1466), + [anon_sym_lock] = ACTIONS(1468), + [anon_sym_rlock] = ACTIONS(1468), + [anon_sym_unsafe] = ACTIONS(1839), + [anon_sym_sql] = ACTIONS(1472), + [sym_int_literal] = ACTIONS(1458), + [sym_float_literal] = ACTIONS(1474), + [sym_rune_literal] = ACTIONS(1474), + [sym_pseudo_compile_time_identifier] = ACTIONS(1476), + [anon_sym_shared] = ACTIONS(83), + [anon_sym_map_LBRACK] = ACTIONS(85), + [anon_sym_chan] = ACTIONS(87), + [anon_sym_thread] = ACTIONS(89), + [anon_sym_atomic] = ACTIONS(91), + [anon_sym_DOT_DOT] = ACTIONS(1478), + [sym___double_quote] = ACTIONS(1480), + [sym___single_quote] = ACTIONS(1482), + [sym___c_double_quote] = ACTIONS(1484), + [sym___c_single_quote] = ACTIONS(1486), + [sym___r_double_quote] = ACTIONS(1488), + [sym___r_single_quote] = ACTIONS(1490), }, [331] = { [sym_line_comment] = STATE(331), [sym_block_comment] = STATE(331), - [ts_builtin_sym_end] = ACTIONS(2175), - [sym_identifier] = ACTIONS(2177), - [anon_sym_LF] = ACTIONS(2177), - [anon_sym_CR] = ACTIONS(2177), - [anon_sym_CR_LF] = ACTIONS(2177), - [anon_sym_SLASH_SLASH] = ACTIONS(497), - [anon_sym_SLASH_STAR] = ACTIONS(499), - [anon_sym_DOT] = ACTIONS(2177), - [anon_sym_as] = ACTIONS(2177), - [anon_sym_LBRACE] = ACTIONS(2177), - [anon_sym_COMMA] = ACTIONS(2177), - [anon_sym_const] = ACTIONS(2177), - [anon_sym_LPAREN] = ACTIONS(2177), - [anon_sym_EQ] = ACTIONS(2177), - [anon_sym___global] = ACTIONS(2177), - [anon_sym_type] = ACTIONS(2177), - [anon_sym_PIPE] = ACTIONS(2177), - [anon_sym_fn] = ACTIONS(2177), - [anon_sym_PLUS] = ACTIONS(2177), - [anon_sym_DASH] = ACTIONS(2177), - [anon_sym_STAR] = ACTIONS(2177), - [anon_sym_SLASH] = ACTIONS(2177), - [anon_sym_PERCENT] = ACTIONS(2177), - [anon_sym_LT] = ACTIONS(2177), - [anon_sym_GT] = ACTIONS(2177), - [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(2175), - [anon_sym_struct] = ACTIONS(2177), - [anon_sym_union] = ACTIONS(2177), - [anon_sym_pub] = ACTIONS(2177), - [anon_sym_mut] = ACTIONS(2177), - [anon_sym_enum] = ACTIONS(2177), - [anon_sym_interface] = ACTIONS(2177), - [anon_sym_PLUS_PLUS] = ACTIONS(2177), - [anon_sym_DASH_DASH] = ACTIONS(2177), - [anon_sym_QMARK] = ACTIONS(2177), - [anon_sym_BANG] = ACTIONS(2177), - [anon_sym_go] = ACTIONS(2177), - [anon_sym_spawn] = ACTIONS(2177), - [anon_sym_json_DOTdecode] = ACTIONS(2177), - [anon_sym_LBRACK2] = ACTIONS(2177), - [anon_sym_TILDE] = ACTIONS(2177), - [anon_sym_CARET] = ACTIONS(2177), - [anon_sym_AMP] = ACTIONS(2177), - [anon_sym_LT_DASH] = ACTIONS(2177), - [anon_sym_LT_LT] = ACTIONS(2177), - [anon_sym_GT_GT] = ACTIONS(2177), - [anon_sym_GT_GT_GT] = ACTIONS(2177), - [anon_sym_AMP_CARET] = ACTIONS(2177), - [anon_sym_AMP_AMP] = ACTIONS(2177), - [anon_sym_PIPE_PIPE] = ACTIONS(2177), - [anon_sym_or] = ACTIONS(2177), - [sym_none] = ACTIONS(2177), - [sym_true] = ACTIONS(2177), - [sym_false] = ACTIONS(2177), - [sym_nil] = ACTIONS(2177), - [anon_sym_QMARK_DOT] = ACTIONS(2177), - [anon_sym_POUND_LBRACK] = ACTIONS(2177), - [anon_sym_if] = ACTIONS(2177), - [anon_sym_DOLLARif] = ACTIONS(2177), - [anon_sym_is] = ACTIONS(2177), - [anon_sym_BANGis] = ACTIONS(2177), - [anon_sym_in] = ACTIONS(2177), - [anon_sym_BANGin] = ACTIONS(2177), - [anon_sym_match] = ACTIONS(2177), - [anon_sym_select] = ACTIONS(2177), - [anon_sym_STAR_EQ] = ACTIONS(2177), - [anon_sym_SLASH_EQ] = ACTIONS(2177), - [anon_sym_PERCENT_EQ] = ACTIONS(2177), - [anon_sym_LT_LT_EQ] = ACTIONS(2177), - [anon_sym_GT_GT_EQ] = ACTIONS(2177), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(2177), - [anon_sym_AMP_EQ] = ACTIONS(2177), - [anon_sym_AMP_CARET_EQ] = ACTIONS(2177), - [anon_sym_PLUS_EQ] = ACTIONS(2177), - [anon_sym_DASH_EQ] = ACTIONS(2177), - [anon_sym_PIPE_EQ] = ACTIONS(2177), - [anon_sym_CARET_EQ] = ACTIONS(2177), - [anon_sym_COLON_EQ] = ACTIONS(2177), - [anon_sym_lock] = ACTIONS(2177), - [anon_sym_rlock] = ACTIONS(2177), - [anon_sym_unsafe] = ACTIONS(2177), - [anon_sym_sql] = ACTIONS(2177), - [sym_int_literal] = ACTIONS(2177), - [sym_float_literal] = ACTIONS(2177), - [sym_rune_literal] = ACTIONS(2177), - [sym_pseudo_compile_time_identifier] = ACTIONS(2177), - [anon_sym_shared] = ACTIONS(2177), - [anon_sym_map_LBRACK] = ACTIONS(2177), - [anon_sym_chan] = ACTIONS(2177), - [anon_sym_thread] = ACTIONS(2177), - [anon_sym_atomic] = ACTIONS(2177), - [anon_sym_assert] = ACTIONS(2177), - [anon_sym_defer] = ACTIONS(2177), - [anon_sym_goto] = ACTIONS(2177), - [anon_sym_break] = ACTIONS(2177), - [anon_sym_continue] = ACTIONS(2177), - [anon_sym_return] = ACTIONS(2177), - [anon_sym_DOLLARfor] = ACTIONS(2177), - [anon_sym_for] = ACTIONS(2177), - [anon_sym_POUND] = ACTIONS(2177), - [anon_sym_asm] = ACTIONS(2177), - [anon_sym_AT_LBRACK] = ACTIONS(2177), - [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), - }, - [332] = { - [sym_line_comment] = STATE(332), - [sym_block_comment] = STATE(332), - [sym__expression] = STATE(2608), - [sym__expression_without_blocks] = STATE(2300), - [sym__expression_with_blocks] = STATE(2300), - [sym_inc_expression] = STATE(2307), - [sym_dec_expression] = STATE(2307), - [sym_or_block_expression] = STATE(2307), - [sym_option_propagation_expression] = STATE(2307), - [sym_result_propagation_expression] = STATE(2307), - [sym_anon_struct_value_expression] = STATE(2380), - [sym_go_expression] = STATE(2307), - [sym_spawn_expression] = STATE(2307), - [sym_parenthesized_expression] = STATE(2307), - [sym_call_expression] = STATE(2307), - [sym_type_initializer] = STATE(2380), - [sym_function_literal] = STATE(2307), - [sym_reference_expression] = STATE(2311), - [sym_type_reference_expression] = STATE(3541), - [sym_unary_expression] = STATE(2307), - [sym_receive_expression] = STATE(2307), - [sym_binary_expression] = STATE(2307), - [sym_as_type_cast_expression] = STATE(2307), - [sym__max_group] = STATE(2307), - [sym_literal] = STATE(2292), - [sym_map_init_expression] = STATE(2380), - [sym_array_creation] = STATE(2307), - [sym_fixed_array_creation] = STATE(2307), - [sym_selector_expression] = STATE(2307), - [sym_index_expression] = STATE(2307), - [sym_slice_expression] = STATE(2307), - [sym_if_expression] = STATE(2380), - [sym_compile_time_if_expression] = STATE(2380), - [sym_is_expression] = STATE(2307), - [sym_in_expression] = STATE(2307), - [sym_enum_fetch] = STATE(2307), - [sym_match_expression] = STATE(2380), - [sym_select_expression] = STATE(2380), - [sym_lock_expression] = STATE(2380), - [sym_unsafe_expression] = STATE(2380), - [sym_sql_expression] = STATE(2380), - [sym_c_string_literal] = STATE(2308), - [sym_raw_string_literal] = STATE(2308), - [sym_interpreted_string_literal] = STATE(2308), + [sym__expression] = STATE(2617), + [sym__expression_without_blocks] = STATE(2347), + [sym__expression_with_blocks] = STATE(2347), + [sym_inc_expression] = STATE(2379), + [sym_dec_expression] = STATE(2379), + [sym_or_block_expression] = STATE(2379), + [sym_option_propagation_expression] = STATE(2379), + [sym_result_propagation_expression] = STATE(2379), + [sym_anon_struct_value_expression] = STATE(2378), + [sym_go_expression] = STATE(2379), + [sym_spawn_expression] = STATE(2379), + [sym_parenthesized_expression] = STATE(2379), + [sym_call_expression] = STATE(2379), + [sym_type_initializer] = STATE(2378), + [sym_function_literal] = STATE(2379), + [sym_reference_expression] = STATE(2377), + [sym_type_reference_expression] = STATE(3460), + [sym_unary_expression] = STATE(2379), + [sym_receive_expression] = STATE(2379), + [sym_binary_expression] = STATE(2379), + [sym_as_type_cast_expression] = STATE(2379), + [sym__max_group] = STATE(2379), + [sym_literal] = STATE(2392), + [sym_map_init_expression] = STATE(2378), + [sym_array_creation] = STATE(2379), + [sym_fixed_array_creation] = STATE(2379), + [sym_selector_expression] = STATE(2379), + [sym_index_expression] = STATE(2379), + [sym_slice_expression] = STATE(2379), + [sym_if_expression] = STATE(2378), + [sym_compile_time_if_expression] = STATE(2378), + [sym_is_expression] = STATE(2379), + [sym_in_expression] = STATE(2379), + [sym_enum_fetch] = STATE(2379), + [sym_match_expression] = STATE(2378), + [sym_select_expression] = STATE(2378), + [sym_lock_expression] = STATE(2378), + [sym_unsafe_expression] = STATE(2378), + [sym_sql_expression] = STATE(2378), + [sym_c_string_literal] = STATE(2401), + [sym_raw_string_literal] = STATE(2401), + [sym_interpreted_string_literal] = STATE(2401), [sym_mutability_modifiers] = STATE(939), - [sym_plain_type] = STATE(4297), - [sym__plain_type_without_special] = STATE(2302), - [sym_anon_struct_type] = STATE(2303), - [sym_multi_return_type] = STATE(2302), - [sym_result_type] = STATE(2302), - [sym_option_type] = STATE(2302), - [sym_qualified_type] = STATE(3541), - [sym_fixed_array_type] = STATE(2303), - [sym_array_type] = STATE(2303), - [sym_pointer_type] = STATE(2303), - [sym_wrong_pointer_type] = STATE(2303), - [sym_map_type] = STATE(2303), - [sym_channel_type] = STATE(2303), - [sym_shared_type] = STATE(2303), - [sym_thread_type] = STATE(2303), - [sym_atomic_type] = STATE(2303), - [sym_generic_type] = STATE(2303), - [sym_function_type] = STATE(2303), - [sym_range] = STATE(4541), - [sym_identifier] = ACTIONS(1426), + [sym_plain_type] = STATE(4160), + [sym__plain_type_without_special] = STATE(2360), + [sym_anon_struct_type] = STATE(2362), + [sym_multi_return_type] = STATE(2360), + [sym_result_type] = STATE(2360), + [sym_option_type] = STATE(2360), + [sym_qualified_type] = STATE(3460), + [sym_fixed_array_type] = STATE(2362), + [sym_array_type] = STATE(2362), + [sym_pointer_type] = STATE(2362), + [sym_wrong_pointer_type] = STATE(2362), + [sym_map_type] = STATE(2362), + [sym_channel_type] = STATE(2362), + [sym_shared_type] = STATE(2362), + [sym_thread_type] = STATE(2362), + [sym_atomic_type] = STATE(2362), + [sym_generic_type] = STATE(2362), + [sym_function_type] = STATE(2362), + [sym_range] = STATE(4569), + [sym_identifier] = ACTIONS(1428), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1428), - [anon_sym_LBRACE] = ACTIONS(1430), - [anon_sym_LPAREN] = ACTIONS(1432), - [anon_sym_fn] = ACTIONS(1434), - [anon_sym_PLUS] = ACTIONS(1436), - [anon_sym_DASH] = ACTIONS(1436), - [anon_sym_STAR] = ACTIONS(1438), - [anon_sym_struct] = ACTIONS(1440), + [anon_sym_DOT] = ACTIONS(1430), + [anon_sym_LBRACE] = ACTIONS(1432), + [anon_sym_LPAREN] = ACTIONS(1434), + [anon_sym_fn] = ACTIONS(1436), + [anon_sym_PLUS] = ACTIONS(1438), + [anon_sym_DASH] = ACTIONS(1438), + [anon_sym_STAR] = ACTIONS(1440), + [anon_sym_struct] = ACTIONS(1442), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(1442), - [anon_sym_go] = ACTIONS(1444), - [anon_sym_spawn] = ACTIONS(1446), - [anon_sym_json_DOTdecode] = ACTIONS(1448), - [anon_sym_LBRACK2] = ACTIONS(1450), - [anon_sym_TILDE] = ACTIONS(1436), - [anon_sym_CARET] = ACTIONS(1436), - [anon_sym_AMP] = ACTIONS(1452), - [anon_sym_LT_DASH] = ACTIONS(1454), - [sym_none] = ACTIONS(1456), - [sym_true] = ACTIONS(1456), - [sym_false] = ACTIONS(1456), - [sym_nil] = ACTIONS(1456), - [anon_sym_if] = ACTIONS(1827), - [anon_sym_DOLLARif] = ACTIONS(1460), - [anon_sym_match] = ACTIONS(1462), - [anon_sym_select] = ACTIONS(1464), - [anon_sym_lock] = ACTIONS(1466), - [anon_sym_rlock] = ACTIONS(1466), - [anon_sym_unsafe] = ACTIONS(1833), - [anon_sym_sql] = ACTIONS(1470), - [sym_int_literal] = ACTIONS(1456), - [sym_float_literal] = ACTIONS(1472), - [sym_rune_literal] = ACTIONS(1472), - [sym_pseudo_compile_time_identifier] = ACTIONS(1474), + [anon_sym_BANG] = ACTIONS(1444), + [anon_sym_go] = ACTIONS(1446), + [anon_sym_spawn] = ACTIONS(1448), + [anon_sym_json_DOTdecode] = ACTIONS(1450), + [anon_sym_LBRACK2] = ACTIONS(1452), + [anon_sym_TILDE] = ACTIONS(1438), + [anon_sym_CARET] = ACTIONS(1438), + [anon_sym_AMP] = ACTIONS(1454), + [anon_sym_LT_DASH] = ACTIONS(1456), + [sym_none] = ACTIONS(1458), + [sym_true] = ACTIONS(1458), + [sym_false] = ACTIONS(1458), + [sym_nil] = ACTIONS(1458), + [anon_sym_if] = ACTIONS(1833), + [anon_sym_DOLLARif] = ACTIONS(1462), + [anon_sym_match] = ACTIONS(1464), + [anon_sym_select] = ACTIONS(1466), + [anon_sym_lock] = ACTIONS(1468), + [anon_sym_rlock] = ACTIONS(1468), + [anon_sym_unsafe] = ACTIONS(1839), + [anon_sym_sql] = ACTIONS(1472), + [sym_int_literal] = ACTIONS(1458), + [sym_float_literal] = ACTIONS(1474), + [sym_rune_literal] = ACTIONS(1474), + [sym_pseudo_compile_time_identifier] = ACTIONS(1476), [anon_sym_shared] = ACTIONS(83), [anon_sym_map_LBRACK] = ACTIONS(85), [anon_sym_chan] = ACTIONS(87), [anon_sym_thread] = ACTIONS(89), [anon_sym_atomic] = ACTIONS(91), - [anon_sym_DOT_DOT] = ACTIONS(1476), - [sym___double_quote] = ACTIONS(1478), - [sym___single_quote] = ACTIONS(1480), - [sym___c_double_quote] = ACTIONS(1482), - [sym___c_single_quote] = ACTIONS(1484), - [sym___r_double_quote] = ACTIONS(1486), - [sym___r_single_quote] = ACTIONS(1488), + [anon_sym_DOT_DOT] = ACTIONS(1478), + [sym___double_quote] = ACTIONS(1480), + [sym___single_quote] = ACTIONS(1482), + [sym___c_double_quote] = ACTIONS(1484), + [sym___c_single_quote] = ACTIONS(1486), + [sym___r_double_quote] = ACTIONS(1488), + [sym___r_single_quote] = ACTIONS(1490), + }, + [332] = { + [sym_line_comment] = STATE(332), + [sym_block_comment] = STATE(332), + [ts_builtin_sym_end] = ACTIONS(1887), + [sym_identifier] = ACTIONS(1889), + [anon_sym_LF] = ACTIONS(1889), + [anon_sym_CR] = ACTIONS(1889), + [anon_sym_CR_LF] = ACTIONS(1889), + [anon_sym_SLASH_SLASH] = ACTIONS(497), + [anon_sym_SLASH_STAR] = ACTIONS(499), + [anon_sym_DOT] = ACTIONS(1889), + [anon_sym_as] = ACTIONS(1889), + [anon_sym_LBRACE] = ACTIONS(1891), + [anon_sym_COMMA] = ACTIONS(1889), + [anon_sym_const] = ACTIONS(1889), + [anon_sym_LPAREN] = ACTIONS(1889), + [anon_sym_EQ] = ACTIONS(1889), + [anon_sym___global] = ACTIONS(1889), + [anon_sym_type] = ACTIONS(1889), + [anon_sym_PIPE] = ACTIONS(1889), + [anon_sym_fn] = ACTIONS(1889), + [anon_sym_PLUS] = ACTIONS(1889), + [anon_sym_DASH] = ACTIONS(1889), + [anon_sym_STAR] = ACTIONS(1889), + [anon_sym_SLASH] = ACTIONS(1889), + [anon_sym_PERCENT] = ACTIONS(1889), + [anon_sym_LT] = ACTIONS(1889), + [anon_sym_GT] = ACTIONS(1889), + [anon_sym_EQ_EQ] = ACTIONS(1889), + [anon_sym_BANG_EQ] = ACTIONS(1889), + [anon_sym_LT_EQ] = ACTIONS(1889), + [anon_sym_GT_EQ] = ACTIONS(1889), + [anon_sym_LBRACK] = ACTIONS(1894), + [anon_sym_struct] = ACTIONS(1889), + [anon_sym_union] = ACTIONS(1889), + [anon_sym_pub] = ACTIONS(1889), + [anon_sym_mut] = ACTIONS(1889), + [anon_sym_enum] = ACTIONS(1889), + [anon_sym_interface] = ACTIONS(1889), + [anon_sym_PLUS_PLUS] = ACTIONS(1889), + [anon_sym_DASH_DASH] = ACTIONS(1889), + [anon_sym_QMARK] = ACTIONS(1889), + [anon_sym_BANG] = ACTIONS(1889), + [anon_sym_go] = ACTIONS(1889), + [anon_sym_spawn] = ACTIONS(1889), + [anon_sym_json_DOTdecode] = ACTIONS(1889), + [anon_sym_LBRACK2] = ACTIONS(1889), + [anon_sym_TILDE] = ACTIONS(1889), + [anon_sym_CARET] = ACTIONS(1889), + [anon_sym_AMP] = ACTIONS(1889), + [anon_sym_LT_DASH] = ACTIONS(1889), + [anon_sym_LT_LT] = ACTIONS(1889), + [anon_sym_GT_GT] = ACTIONS(1889), + [anon_sym_GT_GT_GT] = ACTIONS(1889), + [anon_sym_AMP_CARET] = ACTIONS(1889), + [anon_sym_AMP_AMP] = ACTIONS(1889), + [anon_sym_PIPE_PIPE] = ACTIONS(1889), + [anon_sym_or] = ACTIONS(1889), + [sym_none] = ACTIONS(1889), + [sym_true] = ACTIONS(1889), + [sym_false] = ACTIONS(1889), + [sym_nil] = ACTIONS(1889), + [anon_sym_QMARK_DOT] = ACTIONS(1889), + [anon_sym_POUND_LBRACK] = ACTIONS(1889), + [anon_sym_if] = ACTIONS(1889), + [anon_sym_DOLLARif] = ACTIONS(1889), + [anon_sym_is] = ACTIONS(1889), + [anon_sym_BANGis] = ACTIONS(1889), + [anon_sym_in] = ACTIONS(1889), + [anon_sym_BANGin] = ACTIONS(1889), + [anon_sym_match] = ACTIONS(1889), + [anon_sym_select] = ACTIONS(1889), + [anon_sym_STAR_EQ] = ACTIONS(1889), + [anon_sym_SLASH_EQ] = ACTIONS(1889), + [anon_sym_PERCENT_EQ] = ACTIONS(1889), + [anon_sym_LT_LT_EQ] = ACTIONS(1889), + [anon_sym_GT_GT_EQ] = ACTIONS(1889), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(1889), + [anon_sym_AMP_EQ] = ACTIONS(1889), + [anon_sym_AMP_CARET_EQ] = ACTIONS(1889), + [anon_sym_PLUS_EQ] = ACTIONS(1889), + [anon_sym_DASH_EQ] = ACTIONS(1889), + [anon_sym_PIPE_EQ] = ACTIONS(1889), + [anon_sym_CARET_EQ] = ACTIONS(1889), + [anon_sym_COLON_EQ] = ACTIONS(1889), + [anon_sym_lock] = ACTIONS(1889), + [anon_sym_rlock] = ACTIONS(1889), + [anon_sym_unsafe] = ACTIONS(1889), + [anon_sym_sql] = ACTIONS(1889), + [sym_int_literal] = ACTIONS(1889), + [sym_float_literal] = ACTIONS(1889), + [sym_rune_literal] = ACTIONS(1889), + [sym_pseudo_compile_time_identifier] = ACTIONS(1889), + [anon_sym_shared] = ACTIONS(1889), + [anon_sym_map_LBRACK] = ACTIONS(1889), + [anon_sym_chan] = ACTIONS(1889), + [anon_sym_thread] = ACTIONS(1889), + [anon_sym_atomic] = ACTIONS(1889), + [anon_sym_assert] = ACTIONS(1889), + [anon_sym_defer] = ACTIONS(1889), + [anon_sym_goto] = ACTIONS(1889), + [anon_sym_break] = ACTIONS(1889), + [anon_sym_continue] = ACTIONS(1889), + [anon_sym_return] = ACTIONS(1889), + [anon_sym_DOLLARfor] = ACTIONS(1889), + [anon_sym_for] = ACTIONS(1889), + [anon_sym_POUND] = ACTIONS(1889), + [anon_sym_asm] = ACTIONS(1889), + [anon_sym_AT_LBRACK] = ACTIONS(1889), + [sym___double_quote] = ACTIONS(1889), + [sym___single_quote] = ACTIONS(1889), + [sym___c_double_quote] = ACTIONS(1889), + [sym___c_single_quote] = ACTIONS(1889), + [sym___r_double_quote] = ACTIONS(1889), + [sym___r_single_quote] = ACTIONS(1889), }, [333] = { [sym_line_comment] = STATE(333), [sym_block_comment] = STATE(333), - [sym__expression] = STATE(1268), - [sym__expression_without_blocks] = STATE(1312), - [sym__expression_with_blocks] = STATE(1312), - [sym_inc_expression] = STATE(1313), - [sym_dec_expression] = STATE(1313), - [sym_or_block_expression] = STATE(1313), - [sym_option_propagation_expression] = STATE(1313), - [sym_result_propagation_expression] = STATE(1313), - [sym_anon_struct_value_expression] = STATE(1314), - [sym_go_expression] = STATE(1313), - [sym_spawn_expression] = STATE(1313), - [sym_parenthesized_expression] = STATE(1313), - [sym_call_expression] = STATE(1313), - [sym_type_initializer] = STATE(1314), - [sym_function_literal] = STATE(1313), - [sym_reference_expression] = STATE(1394), - [sym_type_reference_expression] = STATE(3541), - [sym_unary_expression] = STATE(1313), - [sym_receive_expression] = STATE(1313), - [sym_binary_expression] = STATE(1313), - [sym_as_type_cast_expression] = STATE(1313), - [sym__max_group] = STATE(1313), - [sym_literal] = STATE(1308), - [sym_map_init_expression] = STATE(1314), - [sym_array_creation] = STATE(1313), - [sym_fixed_array_creation] = STATE(1313), - [sym_selector_expression] = STATE(1393), - [sym_index_expression] = STATE(1313), - [sym_slice_expression] = STATE(1313), - [sym_if_expression] = STATE(1314), - [sym_compile_time_if_expression] = STATE(1314), - [sym_is_expression] = STATE(1313), - [sym_in_expression] = STATE(1313), - [sym_enum_fetch] = STATE(1313), - [sym_match_expression] = STATE(1314), - [sym_select_expression] = STATE(1314), - [sym_lock_expression] = STATE(1314), - [sym_unsafe_expression] = STATE(1314), - [sym_sql_expression] = STATE(1314), - [sym_c_string_literal] = STATE(1286), - [sym_raw_string_literal] = STATE(1286), - [sym_interpreted_string_literal] = STATE(1286), - [sym_mutability_modifiers] = STATE(699), - [sym_plain_type] = STATE(4192), - [sym__plain_type_without_special] = STATE(2302), - [sym_anon_struct_type] = STATE(2303), - [sym_multi_return_type] = STATE(2302), - [sym_result_type] = STATE(2302), - [sym_option_type] = STATE(2302), - [sym_qualified_type] = STATE(3541), - [sym_fixed_array_type] = STATE(2303), - [sym_array_type] = STATE(2303), - [sym_pointer_type] = STATE(2303), - [sym_wrong_pointer_type] = STATE(2303), - [sym_map_type] = STATE(2303), - [sym_channel_type] = STATE(2303), - [sym_shared_type] = STATE(2303), - [sym_thread_type] = STATE(2303), - [sym_atomic_type] = STATE(2303), - [sym_generic_type] = STATE(2303), - [sym_function_type] = STATE(2303), - [aux_sym__array_repeat1] = STATE(463), - [sym_identifier] = ACTIONS(1354), + [sym__expression] = STATE(1273), + [sym__expression_without_blocks] = STATE(1318), + [sym__expression_with_blocks] = STATE(1318), + [sym_inc_expression] = STATE(1319), + [sym_dec_expression] = STATE(1319), + [sym_or_block_expression] = STATE(1319), + [sym_option_propagation_expression] = STATE(1319), + [sym_result_propagation_expression] = STATE(1319), + [sym_anon_struct_value_expression] = STATE(1320), + [sym_go_expression] = STATE(1319), + [sym_spawn_expression] = STATE(1319), + [sym_parenthesized_expression] = STATE(1319), + [sym_call_expression] = STATE(1319), + [sym_type_initializer] = STATE(1320), + [sym_function_literal] = STATE(1319), + [sym_reference_expression] = STATE(1298), + [sym_type_reference_expression] = STATE(3460), + [sym_unary_expression] = STATE(1319), + [sym_receive_expression] = STATE(1319), + [sym_binary_expression] = STATE(1319), + [sym_as_type_cast_expression] = STATE(1319), + [sym__max_group] = STATE(1319), + [sym_literal] = STATE(1314), + [sym_map_init_expression] = STATE(1320), + [sym_array_creation] = STATE(1319), + [sym_fixed_array_creation] = STATE(1319), + [sym_selector_expression] = STATE(1319), + [sym_index_expression] = STATE(1319), + [sym_slice_expression] = STATE(1319), + [sym_if_expression] = STATE(1320), + [sym_compile_time_if_expression] = STATE(1320), + [sym_is_expression] = STATE(1319), + [sym_in_expression] = STATE(1319), + [sym_enum_fetch] = STATE(1319), + [sym_match_expression] = STATE(1320), + [sym_select_expression] = STATE(1320), + [sym_lock_expression] = STATE(1320), + [sym_unsafe_expression] = STATE(1320), + [sym_sql_expression] = STATE(1320), + [sym_c_string_literal] = STATE(1291), + [sym_raw_string_literal] = STATE(1291), + [sym_interpreted_string_literal] = STATE(1291), + [sym_mutability_modifiers] = STATE(639), + [sym_plain_type] = STATE(4307), + [sym__plain_type_without_special] = STATE(2360), + [sym_anon_struct_type] = STATE(2362), + [sym_multi_return_type] = STATE(2360), + [sym_result_type] = STATE(2360), + [sym_option_type] = STATE(2360), + [sym_qualified_type] = STATE(3460), + [sym_fixed_array_type] = STATE(2362), + [sym_array_type] = STATE(2362), + [sym_pointer_type] = STATE(2362), + [sym_wrong_pointer_type] = STATE(2362), + [sym_map_type] = STATE(2362), + [sym_channel_type] = STATE(2362), + [sym_shared_type] = STATE(2362), + [sym_thread_type] = STATE(2362), + [sym_atomic_type] = STATE(2362), + [sym_generic_type] = STATE(2362), + [sym_function_type] = STATE(2362), + [aux_sym__array_repeat1] = STATE(405), + [sym_identifier] = ACTIONS(1360), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1356), - [anon_sym_LBRACE] = ACTIONS(1358), - [anon_sym_LPAREN] = ACTIONS(1360), - [anon_sym_fn] = ACTIONS(1362), - [anon_sym_PLUS] = ACTIONS(1364), - [anon_sym_DASH] = ACTIONS(1364), - [anon_sym_STAR] = ACTIONS(1366), - [anon_sym_RBRACK] = ACTIONS(2179), - [anon_sym_struct] = ACTIONS(1370), + [anon_sym_DOT] = ACTIONS(1362), + [anon_sym_LBRACE] = ACTIONS(1364), + [anon_sym_LPAREN] = ACTIONS(1366), + [anon_sym_fn] = ACTIONS(1368), + [anon_sym_PLUS] = ACTIONS(1370), + [anon_sym_DASH] = ACTIONS(1370), + [anon_sym_STAR] = ACTIONS(1372), + [anon_sym_RBRACK] = ACTIONS(2195), + [anon_sym_struct] = ACTIONS(1376), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(1372), - [anon_sym_go] = ACTIONS(1374), - [anon_sym_spawn] = ACTIONS(1376), - [anon_sym_json_DOTdecode] = ACTIONS(1378), - [anon_sym_LBRACK2] = ACTIONS(1380), - [anon_sym_TILDE] = ACTIONS(1364), - [anon_sym_CARET] = ACTIONS(1364), - [anon_sym_AMP] = ACTIONS(1382), - [anon_sym_LT_DASH] = ACTIONS(1384), - [sym_none] = ACTIONS(1386), - [sym_true] = ACTIONS(1386), - [sym_false] = ACTIONS(1386), - [sym_nil] = ACTIONS(1386), - [anon_sym_if] = ACTIONS(1877), - [anon_sym_DOLLARif] = ACTIONS(1390), - [anon_sym_match] = ACTIONS(1392), - [anon_sym_select] = ACTIONS(1394), - [anon_sym_lock] = ACTIONS(1396), - [anon_sym_rlock] = ACTIONS(1396), - [anon_sym_unsafe] = ACTIONS(1883), - [anon_sym_sql] = ACTIONS(1400), - [sym_int_literal] = ACTIONS(1402), - [sym_float_literal] = ACTIONS(1404), - [sym_rune_literal] = ACTIONS(1404), - [sym_pseudo_compile_time_identifier] = ACTIONS(1406), + [anon_sym_BANG] = ACTIONS(1378), + [anon_sym_go] = ACTIONS(1380), + [anon_sym_spawn] = ACTIONS(1382), + [anon_sym_json_DOTdecode] = ACTIONS(1384), + [anon_sym_LBRACK2] = ACTIONS(1386), + [anon_sym_TILDE] = ACTIONS(1370), + [anon_sym_CARET] = ACTIONS(1370), + [anon_sym_AMP] = ACTIONS(1388), + [anon_sym_LT_DASH] = ACTIONS(1390), + [sym_none] = ACTIONS(1392), + [sym_true] = ACTIONS(1392), + [sym_false] = ACTIONS(1392), + [sym_nil] = ACTIONS(1392), + [anon_sym_if] = ACTIONS(1865), + [anon_sym_DOLLARif] = ACTIONS(1396), + [anon_sym_match] = ACTIONS(1398), + [anon_sym_select] = ACTIONS(1400), + [anon_sym_lock] = ACTIONS(1402), + [anon_sym_rlock] = ACTIONS(1402), + [anon_sym_unsafe] = ACTIONS(1871), + [anon_sym_sql] = ACTIONS(1406), + [sym_int_literal] = ACTIONS(1392), + [sym_float_literal] = ACTIONS(1410), + [sym_rune_literal] = ACTIONS(1410), + [sym_pseudo_compile_time_identifier] = ACTIONS(1412), [anon_sym_shared] = ACTIONS(83), [anon_sym_map_LBRACK] = ACTIONS(85), [anon_sym_chan] = ACTIONS(87), [anon_sym_thread] = ACTIONS(89), [anon_sym_atomic] = ACTIONS(91), - [sym___double_quote] = ACTIONS(1408), - [sym___single_quote] = ACTIONS(1410), - [sym___c_double_quote] = ACTIONS(1412), - [sym___c_single_quote] = ACTIONS(1414), - [sym___r_double_quote] = ACTIONS(1416), - [sym___r_single_quote] = ACTIONS(1418), + [sym___double_quote] = ACTIONS(1414), + [sym___single_quote] = ACTIONS(1416), + [sym___c_double_quote] = ACTIONS(1418), + [sym___c_single_quote] = ACTIONS(1420), + [sym___r_double_quote] = ACTIONS(1422), + [sym___r_single_quote] = ACTIONS(1424), }, [334] = { [sym_line_comment] = STATE(334), [sym_block_comment] = STATE(334), - [sym__expression] = STATE(2608), - [sym__expression_without_blocks] = STATE(2300), - [sym__expression_with_blocks] = STATE(2300), - [sym_inc_expression] = STATE(2307), - [sym_dec_expression] = STATE(2307), - [sym_or_block_expression] = STATE(2307), - [sym_option_propagation_expression] = STATE(2307), - [sym_result_propagation_expression] = STATE(2307), - [sym_anon_struct_value_expression] = STATE(2380), - [sym_go_expression] = STATE(2307), - [sym_spawn_expression] = STATE(2307), - [sym_parenthesized_expression] = STATE(2307), - [sym_call_expression] = STATE(2307), - [sym_type_initializer] = STATE(2380), - [sym_function_literal] = STATE(2307), - [sym_reference_expression] = STATE(2311), - [sym_type_reference_expression] = STATE(3541), - [sym_unary_expression] = STATE(2307), - [sym_receive_expression] = STATE(2307), - [sym_binary_expression] = STATE(2307), - [sym_as_type_cast_expression] = STATE(2307), - [sym__max_group] = STATE(2307), - [sym_literal] = STATE(2292), - [sym_map_init_expression] = STATE(2380), - [sym_array_creation] = STATE(2307), - [sym_fixed_array_creation] = STATE(2307), - [sym_selector_expression] = STATE(2307), - [sym_index_expression] = STATE(2307), - [sym_slice_expression] = STATE(2307), - [sym_if_expression] = STATE(2380), - [sym_compile_time_if_expression] = STATE(2380), - [sym_is_expression] = STATE(2307), - [sym_in_expression] = STATE(2307), - [sym_enum_fetch] = STATE(2307), - [sym_match_expression] = STATE(2380), - [sym_select_expression] = STATE(2380), - [sym_lock_expression] = STATE(2380), - [sym_unsafe_expression] = STATE(2380), - [sym_sql_expression] = STATE(2380), - [sym_c_string_literal] = STATE(2308), - [sym_raw_string_literal] = STATE(2308), - [sym_interpreted_string_literal] = STATE(2308), - [sym_mutability_modifiers] = STATE(939), - [sym_plain_type] = STATE(3557), - [sym__plain_type_without_special] = STATE(2302), - [sym_anon_struct_type] = STATE(2303), - [sym_multi_return_type] = STATE(2302), - [sym_result_type] = STATE(2302), - [sym_option_type] = STATE(2302), - [sym_qualified_type] = STATE(3541), - [sym_fixed_array_type] = STATE(2303), - [sym_array_type] = STATE(2303), - [sym_pointer_type] = STATE(2303), - [sym_wrong_pointer_type] = STATE(2303), - [sym_map_type] = STATE(2303), - [sym_channel_type] = STATE(2303), - [sym_shared_type] = STATE(2303), - [sym_thread_type] = STATE(2303), - [sym_atomic_type] = STATE(2303), - [sym_generic_type] = STATE(2303), - [sym_function_type] = STATE(2303), - [sym_range] = STATE(4541), - [sym_identifier] = ACTIONS(2135), - [anon_sym_SLASH_SLASH] = ACTIONS(3), - [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1428), - [anon_sym_LBRACE] = ACTIONS(1430), - [anon_sym_LPAREN] = ACTIONS(1432), - [anon_sym_fn] = ACTIONS(1434), - [anon_sym_PLUS] = ACTIONS(1436), - [anon_sym_DASH] = ACTIONS(1436), - [anon_sym_STAR] = ACTIONS(2137), - [anon_sym_struct] = ACTIONS(1440), - [anon_sym_mut] = ACTIONS(41), - [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(2139), - [anon_sym_go] = ACTIONS(1444), - [anon_sym_spawn] = ACTIONS(1446), - [anon_sym_json_DOTdecode] = ACTIONS(1448), - [anon_sym_LBRACK2] = ACTIONS(1450), - [anon_sym_TILDE] = ACTIONS(1436), - [anon_sym_CARET] = ACTIONS(1436), - [anon_sym_AMP] = ACTIONS(2141), - [anon_sym_LT_DASH] = ACTIONS(1454), - [sym_none] = ACTIONS(1456), - [sym_true] = ACTIONS(1456), - [sym_false] = ACTIONS(1456), - [sym_nil] = ACTIONS(1456), - [anon_sym_if] = ACTIONS(1827), - [anon_sym_DOLLARif] = ACTIONS(1460), - [anon_sym_match] = ACTIONS(1462), - [anon_sym_select] = ACTIONS(1464), - [anon_sym_lock] = ACTIONS(1466), - [anon_sym_rlock] = ACTIONS(1466), - [anon_sym_unsafe] = ACTIONS(1833), - [anon_sym_sql] = ACTIONS(1470), - [sym_int_literal] = ACTIONS(1456), - [sym_float_literal] = ACTIONS(1472), - [sym_rune_literal] = ACTIONS(1472), - [sym_pseudo_compile_time_identifier] = ACTIONS(1474), - [anon_sym_shared] = ACTIONS(83), - [anon_sym_map_LBRACK] = ACTIONS(85), - [anon_sym_chan] = ACTIONS(87), - [anon_sym_thread] = ACTIONS(89), - [anon_sym_atomic] = ACTIONS(91), - [anon_sym_DOT_DOT] = ACTIONS(1476), - [sym___double_quote] = ACTIONS(1478), - [sym___single_quote] = ACTIONS(1480), - [sym___c_double_quote] = ACTIONS(1482), - [sym___c_single_quote] = ACTIONS(1484), - [sym___r_double_quote] = ACTIONS(1486), - [sym___r_single_quote] = ACTIONS(1488), + [ts_builtin_sym_end] = ACTIONS(2197), + [sym_identifier] = ACTIONS(2199), + [anon_sym_LF] = ACTIONS(2199), + [anon_sym_CR] = ACTIONS(2199), + [anon_sym_CR_LF] = ACTIONS(2199), + [anon_sym_SLASH_SLASH] = ACTIONS(497), + [anon_sym_SLASH_STAR] = ACTIONS(499), + [anon_sym_DOT] = ACTIONS(2199), + [anon_sym_as] = ACTIONS(2199), + [anon_sym_LBRACE] = ACTIONS(2199), + [anon_sym_COMMA] = ACTIONS(2199), + [anon_sym_const] = ACTIONS(2199), + [anon_sym_LPAREN] = ACTIONS(2199), + [anon_sym_EQ] = ACTIONS(2199), + [anon_sym___global] = ACTIONS(2199), + [anon_sym_type] = ACTIONS(2199), + [anon_sym_PIPE] = ACTIONS(2199), + [anon_sym_fn] = ACTIONS(2199), + [anon_sym_PLUS] = ACTIONS(2199), + [anon_sym_DASH] = ACTIONS(2199), + [anon_sym_STAR] = ACTIONS(2199), + [anon_sym_SLASH] = ACTIONS(2199), + [anon_sym_PERCENT] = ACTIONS(2199), + [anon_sym_LT] = ACTIONS(2199), + [anon_sym_GT] = ACTIONS(2199), + [anon_sym_EQ_EQ] = ACTIONS(2199), + [anon_sym_BANG_EQ] = ACTIONS(2199), + [anon_sym_LT_EQ] = ACTIONS(2199), + [anon_sym_GT_EQ] = ACTIONS(2199), + [anon_sym_LBRACK] = ACTIONS(2197), + [anon_sym_struct] = ACTIONS(2199), + [anon_sym_union] = ACTIONS(2199), + [anon_sym_pub] = ACTIONS(2199), + [anon_sym_mut] = ACTIONS(2199), + [anon_sym_enum] = ACTIONS(2199), + [anon_sym_interface] = ACTIONS(2199), + [anon_sym_PLUS_PLUS] = ACTIONS(2199), + [anon_sym_DASH_DASH] = ACTIONS(2199), + [anon_sym_QMARK] = ACTIONS(2199), + [anon_sym_BANG] = ACTIONS(2199), + [anon_sym_go] = ACTIONS(2199), + [anon_sym_spawn] = ACTIONS(2199), + [anon_sym_json_DOTdecode] = ACTIONS(2199), + [anon_sym_LBRACK2] = ACTIONS(2199), + [anon_sym_TILDE] = ACTIONS(2199), + [anon_sym_CARET] = ACTIONS(2199), + [anon_sym_AMP] = ACTIONS(2199), + [anon_sym_LT_DASH] = ACTIONS(2199), + [anon_sym_LT_LT] = ACTIONS(2199), + [anon_sym_GT_GT] = ACTIONS(2199), + [anon_sym_GT_GT_GT] = ACTIONS(2199), + [anon_sym_AMP_CARET] = ACTIONS(2199), + [anon_sym_AMP_AMP] = ACTIONS(2199), + [anon_sym_PIPE_PIPE] = ACTIONS(2199), + [anon_sym_or] = ACTIONS(2199), + [sym_none] = ACTIONS(2199), + [sym_true] = ACTIONS(2199), + [sym_false] = ACTIONS(2199), + [sym_nil] = ACTIONS(2199), + [anon_sym_QMARK_DOT] = ACTIONS(2199), + [anon_sym_POUND_LBRACK] = ACTIONS(2199), + [anon_sym_if] = ACTIONS(2199), + [anon_sym_DOLLARif] = ACTIONS(2199), + [anon_sym_is] = ACTIONS(2199), + [anon_sym_BANGis] = ACTIONS(2199), + [anon_sym_in] = ACTIONS(2199), + [anon_sym_BANGin] = ACTIONS(2199), + [anon_sym_match] = ACTIONS(2199), + [anon_sym_select] = ACTIONS(2199), + [anon_sym_STAR_EQ] = ACTIONS(2199), + [anon_sym_SLASH_EQ] = ACTIONS(2199), + [anon_sym_PERCENT_EQ] = ACTIONS(2199), + [anon_sym_LT_LT_EQ] = ACTIONS(2199), + [anon_sym_GT_GT_EQ] = ACTIONS(2199), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(2199), + [anon_sym_AMP_EQ] = ACTIONS(2199), + [anon_sym_AMP_CARET_EQ] = ACTIONS(2199), + [anon_sym_PLUS_EQ] = ACTIONS(2199), + [anon_sym_DASH_EQ] = ACTIONS(2199), + [anon_sym_PIPE_EQ] = ACTIONS(2199), + [anon_sym_CARET_EQ] = ACTIONS(2199), + [anon_sym_COLON_EQ] = ACTIONS(2199), + [anon_sym_lock] = ACTIONS(2199), + [anon_sym_rlock] = ACTIONS(2199), + [anon_sym_unsafe] = ACTIONS(2199), + [anon_sym_sql] = ACTIONS(2199), + [sym_int_literal] = ACTIONS(2199), + [sym_float_literal] = ACTIONS(2199), + [sym_rune_literal] = ACTIONS(2199), + [sym_pseudo_compile_time_identifier] = ACTIONS(2199), + [anon_sym_shared] = ACTIONS(2199), + [anon_sym_map_LBRACK] = ACTIONS(2199), + [anon_sym_chan] = ACTIONS(2199), + [anon_sym_thread] = ACTIONS(2199), + [anon_sym_atomic] = ACTIONS(2199), + [anon_sym_assert] = ACTIONS(2199), + [anon_sym_defer] = ACTIONS(2199), + [anon_sym_goto] = ACTIONS(2199), + [anon_sym_break] = ACTIONS(2199), + [anon_sym_continue] = ACTIONS(2199), + [anon_sym_return] = ACTIONS(2199), + [anon_sym_DOLLARfor] = ACTIONS(2199), + [anon_sym_for] = ACTIONS(2199), + [anon_sym_POUND] = ACTIONS(2199), + [anon_sym_asm] = ACTIONS(2199), + [anon_sym_AT_LBRACK] = ACTIONS(2199), + [sym___double_quote] = ACTIONS(2199), + [sym___single_quote] = ACTIONS(2199), + [sym___c_double_quote] = ACTIONS(2199), + [sym___c_single_quote] = ACTIONS(2199), + [sym___r_double_quote] = ACTIONS(2199), + [sym___r_single_quote] = ACTIONS(2199), }, [335] = { [sym_line_comment] = STATE(335), [sym_block_comment] = STATE(335), - [ts_builtin_sym_end] = ACTIONS(2181), - [sym_identifier] = ACTIONS(2183), - [anon_sym_LF] = ACTIONS(2183), - [anon_sym_CR] = ACTIONS(2183), - [anon_sym_CR_LF] = ACTIONS(2183), + [ts_builtin_sym_end] = ACTIONS(2201), + [sym_identifier] = ACTIONS(2203), + [anon_sym_LF] = ACTIONS(2203), + [anon_sym_CR] = ACTIONS(2203), + [anon_sym_CR_LF] = ACTIONS(2203), [anon_sym_SLASH_SLASH] = ACTIONS(497), [anon_sym_SLASH_STAR] = ACTIONS(499), - [anon_sym_DOT] = ACTIONS(2183), - [anon_sym_as] = ACTIONS(2183), - [anon_sym_LBRACE] = ACTIONS(2183), - [anon_sym_COMMA] = ACTIONS(2183), - [anon_sym_const] = ACTIONS(2183), - [anon_sym_LPAREN] = ACTIONS(2183), - [anon_sym_EQ] = ACTIONS(2183), - [anon_sym___global] = ACTIONS(2183), - [anon_sym_type] = ACTIONS(2183), - [anon_sym_PIPE] = ACTIONS(2183), - [anon_sym_fn] = ACTIONS(2183), - [anon_sym_PLUS] = ACTIONS(2183), - [anon_sym_DASH] = ACTIONS(2183), - [anon_sym_STAR] = ACTIONS(2183), - [anon_sym_SLASH] = ACTIONS(2183), - [anon_sym_PERCENT] = ACTIONS(2183), - [anon_sym_LT] = ACTIONS(2183), - [anon_sym_GT] = ACTIONS(2183), - [anon_sym_EQ_EQ] = ACTIONS(2183), - [anon_sym_BANG_EQ] = ACTIONS(2183), - [anon_sym_LT_EQ] = ACTIONS(2183), - [anon_sym_GT_EQ] = ACTIONS(2183), - [anon_sym_LBRACK] = ACTIONS(2181), - [anon_sym_struct] = ACTIONS(2183), - [anon_sym_union] = ACTIONS(2183), - [anon_sym_pub] = ACTIONS(2183), - [anon_sym_mut] = ACTIONS(2183), - [anon_sym_enum] = ACTIONS(2183), - [anon_sym_interface] = ACTIONS(2183), - [anon_sym_PLUS_PLUS] = ACTIONS(2183), - [anon_sym_DASH_DASH] = ACTIONS(2183), - [anon_sym_QMARK] = ACTIONS(2183), - [anon_sym_BANG] = ACTIONS(2183), - [anon_sym_go] = ACTIONS(2183), - [anon_sym_spawn] = ACTIONS(2183), - [anon_sym_json_DOTdecode] = ACTIONS(2183), - [anon_sym_LBRACK2] = ACTIONS(2183), - [anon_sym_TILDE] = ACTIONS(2183), - [anon_sym_CARET] = ACTIONS(2183), - [anon_sym_AMP] = ACTIONS(2183), - [anon_sym_LT_DASH] = ACTIONS(2183), - [anon_sym_LT_LT] = ACTIONS(2183), - [anon_sym_GT_GT] = ACTIONS(2183), - [anon_sym_GT_GT_GT] = ACTIONS(2183), - [anon_sym_AMP_CARET] = ACTIONS(2183), - [anon_sym_AMP_AMP] = ACTIONS(2183), - [anon_sym_PIPE_PIPE] = ACTIONS(2183), - [anon_sym_or] = ACTIONS(2183), - [sym_none] = ACTIONS(2183), - [sym_true] = ACTIONS(2183), - [sym_false] = ACTIONS(2183), - [sym_nil] = ACTIONS(2183), - [anon_sym_QMARK_DOT] = ACTIONS(2183), - [anon_sym_POUND_LBRACK] = ACTIONS(2183), - [anon_sym_if] = ACTIONS(2183), - [anon_sym_DOLLARif] = ACTIONS(2183), - [anon_sym_is] = ACTIONS(2183), - [anon_sym_BANGis] = ACTIONS(2183), - [anon_sym_in] = ACTIONS(2183), - [anon_sym_BANGin] = ACTIONS(2183), - [anon_sym_match] = ACTIONS(2183), - [anon_sym_select] = ACTIONS(2183), - [anon_sym_STAR_EQ] = ACTIONS(2183), - [anon_sym_SLASH_EQ] = ACTIONS(2183), - [anon_sym_PERCENT_EQ] = ACTIONS(2183), - [anon_sym_LT_LT_EQ] = ACTIONS(2183), - [anon_sym_GT_GT_EQ] = ACTIONS(2183), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(2183), - [anon_sym_AMP_EQ] = ACTIONS(2183), - [anon_sym_AMP_CARET_EQ] = ACTIONS(2183), - [anon_sym_PLUS_EQ] = ACTIONS(2183), - [anon_sym_DASH_EQ] = ACTIONS(2183), - [anon_sym_PIPE_EQ] = ACTIONS(2183), - [anon_sym_CARET_EQ] = ACTIONS(2183), - [anon_sym_COLON_EQ] = ACTIONS(2183), - [anon_sym_lock] = ACTIONS(2183), - [anon_sym_rlock] = ACTIONS(2183), - [anon_sym_unsafe] = ACTIONS(2183), - [anon_sym_sql] = ACTIONS(2183), - [sym_int_literal] = ACTIONS(2183), - [sym_float_literal] = ACTIONS(2183), - [sym_rune_literal] = ACTIONS(2183), - [sym_pseudo_compile_time_identifier] = ACTIONS(2183), - [anon_sym_shared] = ACTIONS(2183), - [anon_sym_map_LBRACK] = ACTIONS(2183), - [anon_sym_chan] = ACTIONS(2183), - [anon_sym_thread] = ACTIONS(2183), - [anon_sym_atomic] = ACTIONS(2183), - [anon_sym_assert] = ACTIONS(2183), - [anon_sym_defer] = ACTIONS(2183), - [anon_sym_goto] = ACTIONS(2183), - [anon_sym_break] = ACTIONS(2183), - [anon_sym_continue] = ACTIONS(2183), - [anon_sym_return] = ACTIONS(2183), - [anon_sym_DOLLARfor] = ACTIONS(2183), - [anon_sym_for] = ACTIONS(2183), - [anon_sym_POUND] = ACTIONS(2183), - [anon_sym_asm] = ACTIONS(2183), - [anon_sym_AT_LBRACK] = ACTIONS(2183), - [sym___double_quote] = ACTIONS(2183), - [sym___single_quote] = ACTIONS(2183), - [sym___c_double_quote] = ACTIONS(2183), - [sym___c_single_quote] = ACTIONS(2183), - [sym___r_double_quote] = ACTIONS(2183), - [sym___r_single_quote] = ACTIONS(2183), + [anon_sym_DOT] = ACTIONS(2203), + [anon_sym_as] = ACTIONS(2203), + [anon_sym_LBRACE] = ACTIONS(2203), + [anon_sym_COMMA] = ACTIONS(2203), + [anon_sym_const] = ACTIONS(2203), + [anon_sym_LPAREN] = ACTIONS(2203), + [anon_sym_EQ] = ACTIONS(2203), + [anon_sym___global] = ACTIONS(2203), + [anon_sym_type] = ACTIONS(2203), + [anon_sym_PIPE] = ACTIONS(2203), + [anon_sym_fn] = ACTIONS(2203), + [anon_sym_PLUS] = ACTIONS(2203), + [anon_sym_DASH] = ACTIONS(2203), + [anon_sym_STAR] = ACTIONS(2203), + [anon_sym_SLASH] = ACTIONS(2203), + [anon_sym_PERCENT] = ACTIONS(2203), + [anon_sym_LT] = ACTIONS(2203), + [anon_sym_GT] = ACTIONS(2203), + [anon_sym_EQ_EQ] = ACTIONS(2203), + [anon_sym_BANG_EQ] = ACTIONS(2203), + [anon_sym_LT_EQ] = ACTIONS(2203), + [anon_sym_GT_EQ] = ACTIONS(2203), + [anon_sym_LBRACK] = ACTIONS(2201), + [anon_sym_struct] = ACTIONS(2203), + [anon_sym_union] = ACTIONS(2203), + [anon_sym_pub] = ACTIONS(2203), + [anon_sym_mut] = ACTIONS(2203), + [anon_sym_enum] = ACTIONS(2203), + [anon_sym_interface] = ACTIONS(2203), + [anon_sym_PLUS_PLUS] = ACTIONS(2203), + [anon_sym_DASH_DASH] = ACTIONS(2203), + [anon_sym_QMARK] = ACTIONS(2203), + [anon_sym_BANG] = ACTIONS(2203), + [anon_sym_go] = ACTIONS(2203), + [anon_sym_spawn] = ACTIONS(2203), + [anon_sym_json_DOTdecode] = ACTIONS(2203), + [anon_sym_LBRACK2] = ACTIONS(2203), + [anon_sym_TILDE] = ACTIONS(2203), + [anon_sym_CARET] = ACTIONS(2203), + [anon_sym_AMP] = ACTIONS(2203), + [anon_sym_LT_DASH] = ACTIONS(2203), + [anon_sym_LT_LT] = ACTIONS(2203), + [anon_sym_GT_GT] = ACTIONS(2203), + [anon_sym_GT_GT_GT] = ACTIONS(2203), + [anon_sym_AMP_CARET] = ACTIONS(2203), + [anon_sym_AMP_AMP] = ACTIONS(2203), + [anon_sym_PIPE_PIPE] = ACTIONS(2203), + [anon_sym_or] = ACTIONS(2203), + [sym_none] = ACTIONS(2203), + [sym_true] = ACTIONS(2203), + [sym_false] = ACTIONS(2203), + [sym_nil] = ACTIONS(2203), + [anon_sym_QMARK_DOT] = ACTIONS(2203), + [anon_sym_POUND_LBRACK] = ACTIONS(2203), + [anon_sym_if] = ACTIONS(2203), + [anon_sym_DOLLARif] = ACTIONS(2203), + [anon_sym_is] = ACTIONS(2203), + [anon_sym_BANGis] = ACTIONS(2203), + [anon_sym_in] = ACTIONS(2203), + [anon_sym_BANGin] = ACTIONS(2203), + [anon_sym_match] = ACTIONS(2203), + [anon_sym_select] = ACTIONS(2203), + [anon_sym_STAR_EQ] = ACTIONS(2203), + [anon_sym_SLASH_EQ] = ACTIONS(2203), + [anon_sym_PERCENT_EQ] = ACTIONS(2203), + [anon_sym_LT_LT_EQ] = ACTIONS(2203), + [anon_sym_GT_GT_EQ] = ACTIONS(2203), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(2203), + [anon_sym_AMP_EQ] = ACTIONS(2203), + [anon_sym_AMP_CARET_EQ] = ACTIONS(2203), + [anon_sym_PLUS_EQ] = ACTIONS(2203), + [anon_sym_DASH_EQ] = ACTIONS(2203), + [anon_sym_PIPE_EQ] = ACTIONS(2203), + [anon_sym_CARET_EQ] = ACTIONS(2203), + [anon_sym_COLON_EQ] = ACTIONS(2203), + [anon_sym_lock] = ACTIONS(2203), + [anon_sym_rlock] = ACTIONS(2203), + [anon_sym_unsafe] = ACTIONS(2203), + [anon_sym_sql] = ACTIONS(2203), + [sym_int_literal] = ACTIONS(2203), + [sym_float_literal] = ACTIONS(2203), + [sym_rune_literal] = ACTIONS(2203), + [sym_pseudo_compile_time_identifier] = ACTIONS(2203), + [anon_sym_shared] = ACTIONS(2203), + [anon_sym_map_LBRACK] = ACTIONS(2203), + [anon_sym_chan] = ACTIONS(2203), + [anon_sym_thread] = ACTIONS(2203), + [anon_sym_atomic] = ACTIONS(2203), + [anon_sym_assert] = ACTIONS(2203), + [anon_sym_defer] = ACTIONS(2203), + [anon_sym_goto] = ACTIONS(2203), + [anon_sym_break] = ACTIONS(2203), + [anon_sym_continue] = ACTIONS(2203), + [anon_sym_return] = ACTIONS(2203), + [anon_sym_DOLLARfor] = ACTIONS(2203), + [anon_sym_for] = ACTIONS(2203), + [anon_sym_POUND] = ACTIONS(2203), + [anon_sym_asm] = ACTIONS(2203), + [anon_sym_AT_LBRACK] = ACTIONS(2203), + [sym___double_quote] = ACTIONS(2203), + [sym___single_quote] = ACTIONS(2203), + [sym___c_double_quote] = ACTIONS(2203), + [sym___c_single_quote] = ACTIONS(2203), + [sym___r_double_quote] = ACTIONS(2203), + [sym___r_single_quote] = ACTIONS(2203), }, [336] = { [sym_line_comment] = STATE(336), [sym_block_comment] = STATE(336), - [sym__expression] = STATE(2455), - [sym__expression_without_blocks] = STATE(2300), - [sym__expression_with_blocks] = STATE(2300), - [sym_inc_expression] = STATE(2307), - [sym_dec_expression] = STATE(2307), - [sym_or_block_expression] = STATE(2307), - [sym_option_propagation_expression] = STATE(2307), - [sym_result_propagation_expression] = STATE(2307), - [sym_anon_struct_value_expression] = STATE(2380), - [sym_go_expression] = STATE(2307), - [sym_spawn_expression] = STATE(2307), - [sym_parenthesized_expression] = STATE(2307), - [sym_call_expression] = STATE(2307), - [sym_type_initializer] = STATE(2380), - [sym_function_literal] = STATE(2307), - [sym_reference_expression] = STATE(2311), - [sym_type_reference_expression] = STATE(3541), - [sym_unary_expression] = STATE(2307), - [sym_receive_expression] = STATE(2307), - [sym_binary_expression] = STATE(2307), - [sym_as_type_cast_expression] = STATE(2307), - [sym__max_group] = STATE(2307), - [sym_literal] = STATE(2292), - [sym_map_init_expression] = STATE(2380), - [sym_array_creation] = STATE(2307), - [sym_fixed_array_creation] = STATE(2307), - [sym_selector_expression] = STATE(2307), - [sym_index_expression] = STATE(2307), - [sym_slice_expression] = STATE(2307), - [sym_if_expression] = STATE(2380), - [sym_compile_time_if_expression] = STATE(2380), - [sym_is_expression] = STATE(2307), - [sym_in_expression] = STATE(2307), - [sym_enum_fetch] = STATE(2307), - [sym_match_expression] = STATE(2380), - [sym_select_expression] = STATE(2380), - [sym_lock_expression] = STATE(2380), - [sym_unsafe_expression] = STATE(2380), - [sym_sql_expression] = STATE(2380), - [sym_c_string_literal] = STATE(2308), - [sym_raw_string_literal] = STATE(2308), - [sym_interpreted_string_literal] = STATE(2308), - [sym_mutability_modifiers] = STATE(824), - [sym_mutable_expression] = STATE(3922), - [sym_expression_list] = STATE(4327), - [sym_plain_type] = STATE(4297), - [sym__plain_type_without_special] = STATE(2302), - [sym_anon_struct_type] = STATE(2303), - [sym_multi_return_type] = STATE(2302), - [sym_result_type] = STATE(2302), - [sym_option_type] = STATE(2302), - [sym_qualified_type] = STATE(3541), - [sym_fixed_array_type] = STATE(2303), - [sym_array_type] = STATE(2303), - [sym_pointer_type] = STATE(2303), - [sym_wrong_pointer_type] = STATE(2303), - [sym_map_type] = STATE(2303), - [sym_channel_type] = STATE(2303), - [sym_shared_type] = STATE(2303), - [sym_thread_type] = STATE(2303), - [sym_atomic_type] = STATE(2303), - [sym_generic_type] = STATE(2303), - [sym_function_type] = STATE(2303), - [sym_identifier] = ACTIONS(1807), + [sym__expression] = STATE(2596), + [sym__expression_without_blocks] = STATE(2347), + [sym__expression_with_blocks] = STATE(2347), + [sym_inc_expression] = STATE(2379), + [sym_dec_expression] = STATE(2379), + [sym_or_block_expression] = STATE(2379), + [sym_option_propagation_expression] = STATE(2379), + [sym_result_propagation_expression] = STATE(2379), + [sym_anon_struct_value_expression] = STATE(2378), + [sym_go_expression] = STATE(2379), + [sym_spawn_expression] = STATE(2379), + [sym_parenthesized_expression] = STATE(2379), + [sym_call_expression] = STATE(2379), + [sym_type_initializer] = STATE(2378), + [sym_function_literal] = STATE(2379), + [sym_reference_expression] = STATE(2377), + [sym_type_reference_expression] = STATE(3460), + [sym_unary_expression] = STATE(2379), + [sym_receive_expression] = STATE(2379), + [sym_binary_expression] = STATE(2379), + [sym_as_type_cast_expression] = STATE(2379), + [sym__max_group] = STATE(2379), + [sym_literal] = STATE(2392), + [sym_map_init_expression] = STATE(2378), + [sym_array_creation] = STATE(2379), + [sym_fixed_array_creation] = STATE(2379), + [sym_selector_expression] = STATE(2379), + [sym_index_expression] = STATE(2379), + [sym_slice_expression] = STATE(2379), + [sym_if_expression] = STATE(2378), + [sym_compile_time_if_expression] = STATE(2378), + [sym_is_expression] = STATE(2379), + [sym_in_expression] = STATE(2379), + [sym_enum_fetch] = STATE(2379), + [sym_match_expression] = STATE(2378), + [sym_select_expression] = STATE(2378), + [sym_lock_expression] = STATE(2378), + [sym_unsafe_expression] = STATE(2378), + [sym_sql_expression] = STATE(2378), + [sym_c_string_literal] = STATE(2401), + [sym_raw_string_literal] = STATE(2401), + [sym_interpreted_string_literal] = STATE(2401), + [sym_mutability_modifiers] = STATE(939), + [sym_plain_type] = STATE(4160), + [sym__plain_type_without_special] = STATE(2360), + [sym_anon_struct_type] = STATE(2362), + [sym_multi_return_type] = STATE(2360), + [sym_result_type] = STATE(2360), + [sym_option_type] = STATE(2360), + [sym_qualified_type] = STATE(3460), + [sym_fixed_array_type] = STATE(2362), + [sym_array_type] = STATE(2362), + [sym_pointer_type] = STATE(2362), + [sym_wrong_pointer_type] = STATE(2362), + [sym_map_type] = STATE(2362), + [sym_channel_type] = STATE(2362), + [sym_shared_type] = STATE(2362), + [sym_thread_type] = STATE(2362), + [sym_atomic_type] = STATE(2362), + [sym_generic_type] = STATE(2362), + [sym_function_type] = STATE(2362), + [sym_range] = STATE(4469), + [sym_identifier] = ACTIONS(1428), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1428), - [anon_sym_LBRACE] = ACTIONS(2185), - [anon_sym_LPAREN] = ACTIONS(1432), - [anon_sym_fn] = ACTIONS(1434), - [anon_sym_PLUS] = ACTIONS(1811), - [anon_sym_DASH] = ACTIONS(1811), - [anon_sym_STAR] = ACTIONS(1813), - [anon_sym_struct] = ACTIONS(1440), + [anon_sym_DOT] = ACTIONS(1430), + [anon_sym_LBRACE] = ACTIONS(1432), + [anon_sym_LPAREN] = ACTIONS(1434), + [anon_sym_fn] = ACTIONS(1436), + [anon_sym_PLUS] = ACTIONS(1438), + [anon_sym_DASH] = ACTIONS(1438), + [anon_sym_STAR] = ACTIONS(1440), + [anon_sym_struct] = ACTIONS(1442), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(1815), - [anon_sym_go] = ACTIONS(1817), - [anon_sym_spawn] = ACTIONS(1819), - [anon_sym_json_DOTdecode] = ACTIONS(1448), - [anon_sym_LBRACK2] = ACTIONS(1821), - [anon_sym_TILDE] = ACTIONS(1811), - [anon_sym_CARET] = ACTIONS(1811), - [anon_sym_AMP] = ACTIONS(1823), - [anon_sym_LT_DASH] = ACTIONS(1825), - [sym_none] = ACTIONS(1456), - [sym_true] = ACTIONS(1456), - [sym_false] = ACTIONS(1456), - [sym_nil] = ACTIONS(1456), - [anon_sym_if] = ACTIONS(1827), - [anon_sym_DOLLARif] = ACTIONS(1460), - [anon_sym_match] = ACTIONS(1462), - [anon_sym_select] = ACTIONS(1829), - [anon_sym_lock] = ACTIONS(1831), - [anon_sym_rlock] = ACTIONS(1831), - [anon_sym_unsafe] = ACTIONS(1833), - [anon_sym_sql] = ACTIONS(1470), - [sym_int_literal] = ACTIONS(1456), - [sym_float_literal] = ACTIONS(1472), - [sym_rune_literal] = ACTIONS(1472), - [sym_pseudo_compile_time_identifier] = ACTIONS(1474), + [anon_sym_BANG] = ACTIONS(1444), + [anon_sym_go] = ACTIONS(1446), + [anon_sym_spawn] = ACTIONS(1448), + [anon_sym_json_DOTdecode] = ACTIONS(1450), + [anon_sym_LBRACK2] = ACTIONS(1452), + [anon_sym_TILDE] = ACTIONS(1438), + [anon_sym_CARET] = ACTIONS(1438), + [anon_sym_AMP] = ACTIONS(1454), + [anon_sym_LT_DASH] = ACTIONS(1456), + [sym_none] = ACTIONS(1458), + [sym_true] = ACTIONS(1458), + [sym_false] = ACTIONS(1458), + [sym_nil] = ACTIONS(1458), + [anon_sym_if] = ACTIONS(1833), + [anon_sym_DOLLARif] = ACTIONS(1462), + [anon_sym_match] = ACTIONS(1464), + [anon_sym_select] = ACTIONS(1466), + [anon_sym_lock] = ACTIONS(1468), + [anon_sym_rlock] = ACTIONS(1468), + [anon_sym_unsafe] = ACTIONS(1839), + [anon_sym_sql] = ACTIONS(1472), + [sym_int_literal] = ACTIONS(1458), + [sym_float_literal] = ACTIONS(1474), + [sym_rune_literal] = ACTIONS(1474), + [sym_pseudo_compile_time_identifier] = ACTIONS(1476), [anon_sym_shared] = ACTIONS(83), [anon_sym_map_LBRACK] = ACTIONS(85), [anon_sym_chan] = ACTIONS(87), [anon_sym_thread] = ACTIONS(89), [anon_sym_atomic] = ACTIONS(91), - [sym___double_quote] = ACTIONS(1478), - [sym___single_quote] = ACTIONS(1480), - [sym___c_double_quote] = ACTIONS(1482), - [sym___c_single_quote] = ACTIONS(1484), - [sym___r_double_quote] = ACTIONS(1486), - [sym___r_single_quote] = ACTIONS(1488), + [anon_sym_DOT_DOT] = ACTIONS(1478), + [sym___double_quote] = ACTIONS(1480), + [sym___single_quote] = ACTIONS(1482), + [sym___c_double_quote] = ACTIONS(1484), + [sym___c_single_quote] = ACTIONS(1486), + [sym___r_double_quote] = ACTIONS(1488), + [sym___r_single_quote] = ACTIONS(1490), }, [337] = { [sym_line_comment] = STATE(337), [sym_block_comment] = STATE(337), - [sym__expression] = STATE(1268), - [sym__expression_without_blocks] = STATE(1312), - [sym__expression_with_blocks] = STATE(1312), - [sym_inc_expression] = STATE(1313), - [sym_dec_expression] = STATE(1313), - [sym_or_block_expression] = STATE(1313), - [sym_option_propagation_expression] = STATE(1313), - [sym_result_propagation_expression] = STATE(1313), - [sym_anon_struct_value_expression] = STATE(1314), - [sym_go_expression] = STATE(1313), - [sym_spawn_expression] = STATE(1313), - [sym_parenthesized_expression] = STATE(1313), - [sym_call_expression] = STATE(1313), - [sym_type_initializer] = STATE(1314), - [sym_function_literal] = STATE(1313), - [sym_reference_expression] = STATE(1334), - [sym_type_reference_expression] = STATE(3541), - [sym_unary_expression] = STATE(1313), - [sym_receive_expression] = STATE(1313), - [sym_binary_expression] = STATE(1313), - [sym_as_type_cast_expression] = STATE(1313), - [sym__max_group] = STATE(1313), - [sym_literal] = STATE(1308), - [sym_map_init_expression] = STATE(1314), - [sym_array_creation] = STATE(1313), - [sym_fixed_array_creation] = STATE(1313), - [sym_selector_expression] = STATE(1313), - [sym_index_expression] = STATE(1313), - [sym_slice_expression] = STATE(1313), - [sym_if_expression] = STATE(1314), - [sym_compile_time_if_expression] = STATE(1314), - [sym_is_expression] = STATE(1313), - [sym_in_expression] = STATE(1313), - [sym_enum_fetch] = STATE(1313), - [sym_match_expression] = STATE(1314), - [sym_select_expression] = STATE(1314), - [sym_lock_expression] = STATE(1314), - [sym_unsafe_expression] = STATE(1314), - [sym_sql_expression] = STATE(1314), - [sym_c_string_literal] = STATE(1286), - [sym_raw_string_literal] = STATE(1286), - [sym_interpreted_string_literal] = STATE(1286), - [sym_mutability_modifiers] = STATE(699), - [sym_plain_type] = STATE(4192), - [sym__plain_type_without_special] = STATE(2302), - [sym_anon_struct_type] = STATE(2303), - [sym_multi_return_type] = STATE(2302), - [sym_result_type] = STATE(2302), - [sym_option_type] = STATE(2302), - [sym_qualified_type] = STATE(3541), - [sym_fixed_array_type] = STATE(2303), - [sym_array_type] = STATE(2303), - [sym_pointer_type] = STATE(2303), - [sym_wrong_pointer_type] = STATE(2303), - [sym_map_type] = STATE(2303), - [sym_channel_type] = STATE(2303), - [sym_shared_type] = STATE(2303), - [sym_thread_type] = STATE(2303), - [sym_atomic_type] = STATE(2303), - [sym_generic_type] = STATE(2303), - [sym_function_type] = STATE(2303), - [aux_sym__array_repeat1] = STATE(404), - [sym_identifier] = ACTIONS(1354), + [sym__expression] = STATE(2596), + [sym__expression_without_blocks] = STATE(2347), + [sym__expression_with_blocks] = STATE(2347), + [sym_inc_expression] = STATE(2379), + [sym_dec_expression] = STATE(2379), + [sym_or_block_expression] = STATE(2379), + [sym_option_propagation_expression] = STATE(2379), + [sym_result_propagation_expression] = STATE(2379), + [sym_anon_struct_value_expression] = STATE(2378), + [sym_go_expression] = STATE(2379), + [sym_spawn_expression] = STATE(2379), + [sym_parenthesized_expression] = STATE(2379), + [sym_call_expression] = STATE(2379), + [sym_type_initializer] = STATE(2378), + [sym_function_literal] = STATE(2379), + [sym_reference_expression] = STATE(2377), + [sym_type_reference_expression] = STATE(3460), + [sym_unary_expression] = STATE(2379), + [sym_receive_expression] = STATE(2379), + [sym_binary_expression] = STATE(2379), + [sym_as_type_cast_expression] = STATE(2379), + [sym__max_group] = STATE(2379), + [sym_literal] = STATE(2392), + [sym_map_init_expression] = STATE(2378), + [sym_array_creation] = STATE(2379), + [sym_fixed_array_creation] = STATE(2379), + [sym_selector_expression] = STATE(2379), + [sym_index_expression] = STATE(2379), + [sym_slice_expression] = STATE(2379), + [sym_if_expression] = STATE(2378), + [sym_compile_time_if_expression] = STATE(2378), + [sym_is_expression] = STATE(2379), + [sym_in_expression] = STATE(2379), + [sym_enum_fetch] = STATE(2379), + [sym_match_expression] = STATE(2378), + [sym_select_expression] = STATE(2378), + [sym_lock_expression] = STATE(2378), + [sym_unsafe_expression] = STATE(2378), + [sym_sql_expression] = STATE(2378), + [sym_c_string_literal] = STATE(2401), + [sym_raw_string_literal] = STATE(2401), + [sym_interpreted_string_literal] = STATE(2401), + [sym_mutability_modifiers] = STATE(939), + [sym_plain_type] = STATE(3569), + [sym__plain_type_without_special] = STATE(2360), + [sym_anon_struct_type] = STATE(2362), + [sym_multi_return_type] = STATE(2360), + [sym_result_type] = STATE(2360), + [sym_option_type] = STATE(2360), + [sym_qualified_type] = STATE(3460), + [sym_fixed_array_type] = STATE(2362), + [sym_array_type] = STATE(2362), + [sym_pointer_type] = STATE(2362), + [sym_wrong_pointer_type] = STATE(2362), + [sym_map_type] = STATE(2362), + [sym_channel_type] = STATE(2362), + [sym_shared_type] = STATE(2362), + [sym_thread_type] = STATE(2362), + [sym_atomic_type] = STATE(2362), + [sym_generic_type] = STATE(2362), + [sym_function_type] = STATE(2362), + [sym_range] = STATE(4469), + [sym_identifier] = ACTIONS(2127), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1356), - [anon_sym_LBRACE] = ACTIONS(1358), - [anon_sym_LPAREN] = ACTIONS(1360), - [anon_sym_fn] = ACTIONS(1362), - [anon_sym_PLUS] = ACTIONS(1364), - [anon_sym_DASH] = ACTIONS(1364), - [anon_sym_STAR] = ACTIONS(1366), - [anon_sym_RBRACK] = ACTIONS(2187), - [anon_sym_struct] = ACTIONS(1370), + [anon_sym_DOT] = ACTIONS(1430), + [anon_sym_LBRACE] = ACTIONS(1432), + [anon_sym_LPAREN] = ACTIONS(1434), + [anon_sym_fn] = ACTIONS(1436), + [anon_sym_PLUS] = ACTIONS(1438), + [anon_sym_DASH] = ACTIONS(1438), + [anon_sym_STAR] = ACTIONS(2129), + [anon_sym_struct] = ACTIONS(1442), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(1372), - [anon_sym_go] = ACTIONS(1374), - [anon_sym_spawn] = ACTIONS(1376), - [anon_sym_json_DOTdecode] = ACTIONS(1378), - [anon_sym_LBRACK2] = ACTIONS(1380), - [anon_sym_TILDE] = ACTIONS(1364), - [anon_sym_CARET] = ACTIONS(1364), - [anon_sym_AMP] = ACTIONS(1382), - [anon_sym_LT_DASH] = ACTIONS(1384), - [sym_none] = ACTIONS(1386), - [sym_true] = ACTIONS(1386), - [sym_false] = ACTIONS(1386), - [sym_nil] = ACTIONS(1386), - [anon_sym_if] = ACTIONS(1877), - [anon_sym_DOLLARif] = ACTIONS(1390), - [anon_sym_match] = ACTIONS(1392), - [anon_sym_select] = ACTIONS(1394), - [anon_sym_lock] = ACTIONS(1396), - [anon_sym_rlock] = ACTIONS(1396), - [anon_sym_unsafe] = ACTIONS(1883), - [anon_sym_sql] = ACTIONS(1400), - [sym_int_literal] = ACTIONS(1386), - [sym_float_literal] = ACTIONS(1404), - [sym_rune_literal] = ACTIONS(1404), - [sym_pseudo_compile_time_identifier] = ACTIONS(1406), + [anon_sym_BANG] = ACTIONS(2131), + [anon_sym_go] = ACTIONS(1446), + [anon_sym_spawn] = ACTIONS(1448), + [anon_sym_json_DOTdecode] = ACTIONS(1450), + [anon_sym_LBRACK2] = ACTIONS(1452), + [anon_sym_TILDE] = ACTIONS(1438), + [anon_sym_CARET] = ACTIONS(1438), + [anon_sym_AMP] = ACTIONS(2133), + [anon_sym_LT_DASH] = ACTIONS(1456), + [sym_none] = ACTIONS(1458), + [sym_true] = ACTIONS(1458), + [sym_false] = ACTIONS(1458), + [sym_nil] = ACTIONS(1458), + [anon_sym_if] = ACTIONS(1833), + [anon_sym_DOLLARif] = ACTIONS(1462), + [anon_sym_match] = ACTIONS(1464), + [anon_sym_select] = ACTIONS(1466), + [anon_sym_lock] = ACTIONS(1468), + [anon_sym_rlock] = ACTIONS(1468), + [anon_sym_unsafe] = ACTIONS(1839), + [anon_sym_sql] = ACTIONS(1472), + [sym_int_literal] = ACTIONS(1458), + [sym_float_literal] = ACTIONS(1474), + [sym_rune_literal] = ACTIONS(1474), + [sym_pseudo_compile_time_identifier] = ACTIONS(1476), [anon_sym_shared] = ACTIONS(83), [anon_sym_map_LBRACK] = ACTIONS(85), [anon_sym_chan] = ACTIONS(87), [anon_sym_thread] = ACTIONS(89), [anon_sym_atomic] = ACTIONS(91), - [sym___double_quote] = ACTIONS(1408), - [sym___single_quote] = ACTIONS(1410), - [sym___c_double_quote] = ACTIONS(1412), - [sym___c_single_quote] = ACTIONS(1414), - [sym___r_double_quote] = ACTIONS(1416), - [sym___r_single_quote] = ACTIONS(1418), + [anon_sym_DOT_DOT] = ACTIONS(1478), + [sym___double_quote] = ACTIONS(1480), + [sym___single_quote] = ACTIONS(1482), + [sym___c_double_quote] = ACTIONS(1484), + [sym___c_single_quote] = ACTIONS(1486), + [sym___r_double_quote] = ACTIONS(1488), + [sym___r_single_quote] = ACTIONS(1490), }, [338] = { [sym_line_comment] = STATE(338), [sym_block_comment] = STATE(338), - [sym__expression] = STATE(2512), - [sym__expression_without_blocks] = STATE(2300), - [sym__expression_with_blocks] = STATE(2300), - [sym_inc_expression] = STATE(2307), - [sym_dec_expression] = STATE(2307), - [sym_or_block_expression] = STATE(2307), - [sym_option_propagation_expression] = STATE(2307), - [sym_result_propagation_expression] = STATE(2307), - [sym_anon_struct_value_expression] = STATE(2380), - [sym_go_expression] = STATE(2307), - [sym_spawn_expression] = STATE(2307), - [sym_parenthesized_expression] = STATE(2307), - [sym_call_expression] = STATE(2307), - [sym_type_initializer] = STATE(2380), - [sym_function_literal] = STATE(2307), - [sym_reference_expression] = STATE(2311), - [sym_type_reference_expression] = STATE(3541), - [sym_unary_expression] = STATE(2307), - [sym_receive_expression] = STATE(2307), - [sym_binary_expression] = STATE(2307), - [sym_as_type_cast_expression] = STATE(2307), - [sym__max_group] = STATE(2307), - [sym_literal] = STATE(2292), - [sym_map_init_expression] = STATE(2380), - [sym_array_creation] = STATE(2307), - [sym_fixed_array_creation] = STATE(2307), - [sym_selector_expression] = STATE(2307), - [sym_index_expression] = STATE(2307), - [sym_slice_expression] = STATE(2307), - [sym_if_expression] = STATE(2380), - [sym_compile_time_if_expression] = STATE(2380), - [sym_is_expression] = STATE(2307), - [sym_in_expression] = STATE(2307), - [sym_enum_fetch] = STATE(2307), - [sym_match_expression] = STATE(2380), - [sym_select_expression] = STATE(2380), - [sym_lock_expression] = STATE(2380), - [sym_unsafe_expression] = STATE(2380), - [sym_sql_expression] = STATE(2380), - [sym_c_string_literal] = STATE(2308), - [sym_raw_string_literal] = STATE(2308), - [sym_interpreted_string_literal] = STATE(2308), - [sym_mutability_modifiers] = STATE(663), - [sym_mutable_expression] = STATE(3764), - [sym_expression_list] = STATE(4078), - [sym_plain_type] = STATE(4297), - [sym__plain_type_without_special] = STATE(2302), - [sym_anon_struct_type] = STATE(2303), - [sym_multi_return_type] = STATE(2302), - [sym_result_type] = STATE(2302), - [sym_option_type] = STATE(2302), - [sym_qualified_type] = STATE(3541), - [sym_fixed_array_type] = STATE(2303), - [sym_array_type] = STATE(2303), - [sym_pointer_type] = STATE(2303), - [sym_wrong_pointer_type] = STATE(2303), - [sym_map_type] = STATE(2303), - [sym_channel_type] = STATE(2303), - [sym_shared_type] = STATE(2303), - [sym_thread_type] = STATE(2303), - [sym_atomic_type] = STATE(2303), - [sym_generic_type] = STATE(2303), - [sym_function_type] = STATE(2303), - [sym_identifier] = ACTIONS(2189), + [sym__expression] = STATE(1273), + [sym__expression_without_blocks] = STATE(1318), + [sym__expression_with_blocks] = STATE(1318), + [sym_inc_expression] = STATE(1319), + [sym_dec_expression] = STATE(1319), + [sym_or_block_expression] = STATE(1319), + [sym_option_propagation_expression] = STATE(1319), + [sym_result_propagation_expression] = STATE(1319), + [sym_anon_struct_value_expression] = STATE(1320), + [sym_go_expression] = STATE(1319), + [sym_spawn_expression] = STATE(1319), + [sym_parenthesized_expression] = STATE(1319), + [sym_call_expression] = STATE(1319), + [sym_type_initializer] = STATE(1320), + [sym_function_literal] = STATE(1319), + [sym_reference_expression] = STATE(1298), + [sym_type_reference_expression] = STATE(3460), + [sym_unary_expression] = STATE(1319), + [sym_receive_expression] = STATE(1319), + [sym_binary_expression] = STATE(1319), + [sym_as_type_cast_expression] = STATE(1319), + [sym__max_group] = STATE(1319), + [sym_literal] = STATE(1314), + [sym_map_init_expression] = STATE(1320), + [sym_array_creation] = STATE(1319), + [sym_fixed_array_creation] = STATE(1319), + [sym_selector_expression] = STATE(1319), + [sym_index_expression] = STATE(1319), + [sym_slice_expression] = STATE(1319), + [sym_if_expression] = STATE(1320), + [sym_compile_time_if_expression] = STATE(1320), + [sym_is_expression] = STATE(1319), + [sym_in_expression] = STATE(1319), + [sym_enum_fetch] = STATE(1319), + [sym_match_expression] = STATE(1320), + [sym_select_expression] = STATE(1320), + [sym_lock_expression] = STATE(1320), + [sym_unsafe_expression] = STATE(1320), + [sym_sql_expression] = STATE(1320), + [sym_c_string_literal] = STATE(1291), + [sym_raw_string_literal] = STATE(1291), + [sym_interpreted_string_literal] = STATE(1291), + [sym_mutability_modifiers] = STATE(639), + [sym_plain_type] = STATE(4307), + [sym__plain_type_without_special] = STATE(2360), + [sym_anon_struct_type] = STATE(2362), + [sym_multi_return_type] = STATE(2360), + [sym_result_type] = STATE(2360), + [sym_option_type] = STATE(2360), + [sym_qualified_type] = STATE(3460), + [sym_fixed_array_type] = STATE(2362), + [sym_array_type] = STATE(2362), + [sym_pointer_type] = STATE(2362), + [sym_wrong_pointer_type] = STATE(2362), + [sym_map_type] = STATE(2362), + [sym_channel_type] = STATE(2362), + [sym_shared_type] = STATE(2362), + [sym_thread_type] = STATE(2362), + [sym_atomic_type] = STATE(2362), + [sym_generic_type] = STATE(2362), + [sym_function_type] = STATE(2362), + [aux_sym__array_repeat1] = STATE(405), + [sym_identifier] = ACTIONS(1360), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1428), - [anon_sym_LBRACE] = ACTIONS(1430), - [anon_sym_LPAREN] = ACTIONS(1432), - [anon_sym_fn] = ACTIONS(1434), - [anon_sym_PLUS] = ACTIONS(2191), - [anon_sym_DASH] = ACTIONS(2191), - [anon_sym_STAR] = ACTIONS(2193), - [anon_sym_struct] = ACTIONS(1440), + [anon_sym_DOT] = ACTIONS(1362), + [anon_sym_LBRACE] = ACTIONS(1364), + [anon_sym_LPAREN] = ACTIONS(1366), + [anon_sym_fn] = ACTIONS(1368), + [anon_sym_PLUS] = ACTIONS(1370), + [anon_sym_DASH] = ACTIONS(1370), + [anon_sym_STAR] = ACTIONS(1372), + [anon_sym_RBRACK] = ACTIONS(2205), + [anon_sym_struct] = ACTIONS(1376), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(2195), - [anon_sym_go] = ACTIONS(2197), - [anon_sym_spawn] = ACTIONS(2199), - [anon_sym_json_DOTdecode] = ACTIONS(1448), - [anon_sym_LBRACK2] = ACTIONS(2201), - [anon_sym_TILDE] = ACTIONS(2191), - [anon_sym_CARET] = ACTIONS(2191), - [anon_sym_AMP] = ACTIONS(2203), - [anon_sym_LT_DASH] = ACTIONS(2205), - [sym_none] = ACTIONS(1456), - [sym_true] = ACTIONS(1456), - [sym_false] = ACTIONS(1456), - [sym_nil] = ACTIONS(1456), - [anon_sym_if] = ACTIONS(1827), - [anon_sym_DOLLARif] = ACTIONS(1460), - [anon_sym_match] = ACTIONS(1462), - [anon_sym_select] = ACTIONS(2207), - [anon_sym_lock] = ACTIONS(2209), - [anon_sym_rlock] = ACTIONS(2209), - [anon_sym_unsafe] = ACTIONS(1833), - [anon_sym_sql] = ACTIONS(1470), - [sym_int_literal] = ACTIONS(1456), - [sym_float_literal] = ACTIONS(1472), - [sym_rune_literal] = ACTIONS(1472), - [sym_pseudo_compile_time_identifier] = ACTIONS(1474), + [anon_sym_BANG] = ACTIONS(1378), + [anon_sym_go] = ACTIONS(1380), + [anon_sym_spawn] = ACTIONS(1382), + [anon_sym_json_DOTdecode] = ACTIONS(1384), + [anon_sym_LBRACK2] = ACTIONS(1386), + [anon_sym_TILDE] = ACTIONS(1370), + [anon_sym_CARET] = ACTIONS(1370), + [anon_sym_AMP] = ACTIONS(1388), + [anon_sym_LT_DASH] = ACTIONS(1390), + [sym_none] = ACTIONS(1392), + [sym_true] = ACTIONS(1392), + [sym_false] = ACTIONS(1392), + [sym_nil] = ACTIONS(1392), + [anon_sym_if] = ACTIONS(1865), + [anon_sym_DOLLARif] = ACTIONS(1396), + [anon_sym_match] = ACTIONS(1398), + [anon_sym_select] = ACTIONS(1400), + [anon_sym_lock] = ACTIONS(1402), + [anon_sym_rlock] = ACTIONS(1402), + [anon_sym_unsafe] = ACTIONS(1871), + [anon_sym_sql] = ACTIONS(1406), + [sym_int_literal] = ACTIONS(1392), + [sym_float_literal] = ACTIONS(1410), + [sym_rune_literal] = ACTIONS(1410), + [sym_pseudo_compile_time_identifier] = ACTIONS(1412), [anon_sym_shared] = ACTIONS(83), [anon_sym_map_LBRACK] = ACTIONS(85), [anon_sym_chan] = ACTIONS(87), [anon_sym_thread] = ACTIONS(89), [anon_sym_atomic] = ACTIONS(91), - [sym___double_quote] = ACTIONS(1478), - [sym___single_quote] = ACTIONS(1480), - [sym___c_double_quote] = ACTIONS(1482), - [sym___c_single_quote] = ACTIONS(1484), - [sym___r_double_quote] = ACTIONS(1486), - [sym___r_single_quote] = ACTIONS(1488), + [sym___double_quote] = ACTIONS(1414), + [sym___single_quote] = ACTIONS(1416), + [sym___c_double_quote] = ACTIONS(1418), + [sym___c_single_quote] = ACTIONS(1420), + [sym___r_double_quote] = ACTIONS(1422), + [sym___r_single_quote] = ACTIONS(1424), }, [339] = { [sym_line_comment] = STATE(339), [sym_block_comment] = STATE(339), - [sym__expression] = STATE(2455), - [sym__expression_without_blocks] = STATE(2300), - [sym__expression_with_blocks] = STATE(2300), - [sym_inc_expression] = STATE(2307), - [sym_dec_expression] = STATE(2307), - [sym_or_block_expression] = STATE(2307), - [sym_option_propagation_expression] = STATE(2307), - [sym_result_propagation_expression] = STATE(2307), - [sym_anon_struct_value_expression] = STATE(2380), - [sym_go_expression] = STATE(2307), - [sym_spawn_expression] = STATE(2307), - [sym_parenthesized_expression] = STATE(2307), - [sym_call_expression] = STATE(2307), - [sym_type_initializer] = STATE(2380), - [sym_function_literal] = STATE(2307), - [sym_reference_expression] = STATE(2311), - [sym_type_reference_expression] = STATE(3541), - [sym_unary_expression] = STATE(2307), - [sym_receive_expression] = STATE(2307), - [sym_binary_expression] = STATE(2307), - [sym_as_type_cast_expression] = STATE(2307), - [sym__max_group] = STATE(2307), - [sym_literal] = STATE(2292), - [sym_map_init_expression] = STATE(2380), - [sym_array_creation] = STATE(2307), - [sym_fixed_array_creation] = STATE(2307), - [sym_selector_expression] = STATE(2307), - [sym_index_expression] = STATE(2307), - [sym_slice_expression] = STATE(2307), - [sym_if_expression] = STATE(2380), - [sym_compile_time_if_expression] = STATE(2380), - [sym_is_expression] = STATE(2307), - [sym_in_expression] = STATE(2307), - [sym_enum_fetch] = STATE(2307), - [sym_match_expression] = STATE(2380), - [sym_select_expression] = STATE(2380), - [sym_lock_expression] = STATE(2380), - [sym_unsafe_expression] = STATE(2380), - [sym_sql_expression] = STATE(2380), - [sym_c_string_literal] = STATE(2308), - [sym_raw_string_literal] = STATE(2308), - [sym_interpreted_string_literal] = STATE(2308), - [sym_mutability_modifiers] = STATE(824), - [sym_mutable_expression] = STATE(3922), - [sym_expression_list] = STATE(4082), - [sym_plain_type] = STATE(4297), - [sym__plain_type_without_special] = STATE(2302), - [sym_anon_struct_type] = STATE(2303), - [sym_multi_return_type] = STATE(2302), - [sym_result_type] = STATE(2302), - [sym_option_type] = STATE(2302), - [sym_qualified_type] = STATE(3541), - [sym_fixed_array_type] = STATE(2303), - [sym_array_type] = STATE(2303), - [sym_pointer_type] = STATE(2303), - [sym_wrong_pointer_type] = STATE(2303), - [sym_map_type] = STATE(2303), - [sym_channel_type] = STATE(2303), - [sym_shared_type] = STATE(2303), - [sym_thread_type] = STATE(2303), - [sym_atomic_type] = STATE(2303), - [sym_generic_type] = STATE(2303), - [sym_function_type] = STATE(2303), - [sym_identifier] = ACTIONS(1807), + [sym__expression] = STATE(2558), + [sym__expression_without_blocks] = STATE(2347), + [sym__expression_with_blocks] = STATE(2347), + [sym_inc_expression] = STATE(2379), + [sym_dec_expression] = STATE(2379), + [sym_or_block_expression] = STATE(2379), + [sym_option_propagation_expression] = STATE(2379), + [sym_result_propagation_expression] = STATE(2379), + [sym_anon_struct_value_expression] = STATE(2378), + [sym_go_expression] = STATE(2379), + [sym_spawn_expression] = STATE(2379), + [sym_parenthesized_expression] = STATE(2379), + [sym_call_expression] = STATE(2379), + [sym_type_initializer] = STATE(2378), + [sym_function_literal] = STATE(2379), + [sym_reference_expression] = STATE(2377), + [sym_type_reference_expression] = STATE(3460), + [sym_unary_expression] = STATE(2379), + [sym_receive_expression] = STATE(2379), + [sym_binary_expression] = STATE(2379), + [sym_as_type_cast_expression] = STATE(2379), + [sym__max_group] = STATE(2379), + [sym_literal] = STATE(2392), + [sym_map_init_expression] = STATE(2378), + [sym_array_creation] = STATE(2379), + [sym_fixed_array_creation] = STATE(2379), + [sym_selector_expression] = STATE(2379), + [sym_index_expression] = STATE(2379), + [sym_slice_expression] = STATE(2379), + [sym_if_expression] = STATE(2378), + [sym_compile_time_if_expression] = STATE(2378), + [sym_is_expression] = STATE(2379), + [sym_in_expression] = STATE(2379), + [sym_enum_fetch] = STATE(2379), + [sym_match_expression] = STATE(2378), + [sym_select_expression] = STATE(2378), + [sym_lock_expression] = STATE(2378), + [sym_unsafe_expression] = STATE(2378), + [sym_sql_expression] = STATE(2378), + [sym_c_string_literal] = STATE(2401), + [sym_raw_string_literal] = STATE(2401), + [sym_interpreted_string_literal] = STATE(2401), + [sym_mutability_modifiers] = STATE(900), + [sym_mutable_expression] = STATE(3813), + [sym_expression_list] = STATE(4399), + [sym_plain_type] = STATE(4160), + [sym__plain_type_without_special] = STATE(2360), + [sym_anon_struct_type] = STATE(2362), + [sym_multi_return_type] = STATE(2360), + [sym_result_type] = STATE(2360), + [sym_option_type] = STATE(2360), + [sym_qualified_type] = STATE(3460), + [sym_fixed_array_type] = STATE(2362), + [sym_array_type] = STATE(2362), + [sym_pointer_type] = STATE(2362), + [sym_wrong_pointer_type] = STATE(2362), + [sym_map_type] = STATE(2362), + [sym_channel_type] = STATE(2362), + [sym_shared_type] = STATE(2362), + [sym_thread_type] = STATE(2362), + [sym_atomic_type] = STATE(2362), + [sym_generic_type] = STATE(2362), + [sym_function_type] = STATE(2362), + [sym_identifier] = ACTIONS(1815), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1428), - [anon_sym_LBRACE] = ACTIONS(1430), - [anon_sym_LPAREN] = ACTIONS(1432), - [anon_sym_fn] = ACTIONS(1434), - [anon_sym_PLUS] = ACTIONS(1811), - [anon_sym_DASH] = ACTIONS(1811), - [anon_sym_STAR] = ACTIONS(1813), - [anon_sym_struct] = ACTIONS(1440), + [anon_sym_DOT] = ACTIONS(1430), + [anon_sym_LBRACE] = ACTIONS(2207), + [anon_sym_LPAREN] = ACTIONS(1434), + [anon_sym_fn] = ACTIONS(1436), + [anon_sym_PLUS] = ACTIONS(1817), + [anon_sym_DASH] = ACTIONS(1817), + [anon_sym_STAR] = ACTIONS(1819), + [anon_sym_struct] = ACTIONS(1442), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(1815), - [anon_sym_go] = ACTIONS(1817), - [anon_sym_spawn] = ACTIONS(1819), - [anon_sym_json_DOTdecode] = ACTIONS(1448), - [anon_sym_LBRACK2] = ACTIONS(1821), - [anon_sym_TILDE] = ACTIONS(1811), - [anon_sym_CARET] = ACTIONS(1811), - [anon_sym_AMP] = ACTIONS(1823), - [anon_sym_LT_DASH] = ACTIONS(1825), - [sym_none] = ACTIONS(1456), - [sym_true] = ACTIONS(1456), - [sym_false] = ACTIONS(1456), - [sym_nil] = ACTIONS(1456), - [anon_sym_if] = ACTIONS(1827), - [anon_sym_DOLLARif] = ACTIONS(1460), - [anon_sym_match] = ACTIONS(1462), - [anon_sym_select] = ACTIONS(1829), - [anon_sym_lock] = ACTIONS(1831), - [anon_sym_rlock] = ACTIONS(1831), - [anon_sym_unsafe] = ACTIONS(1833), - [anon_sym_sql] = ACTIONS(1470), - [sym_int_literal] = ACTIONS(1456), - [sym_float_literal] = ACTIONS(1472), - [sym_rune_literal] = ACTIONS(1472), - [sym_pseudo_compile_time_identifier] = ACTIONS(1474), + [anon_sym_BANG] = ACTIONS(1821), + [anon_sym_go] = ACTIONS(1823), + [anon_sym_spawn] = ACTIONS(1825), + [anon_sym_json_DOTdecode] = ACTIONS(1450), + [anon_sym_LBRACK2] = ACTIONS(1827), + [anon_sym_TILDE] = ACTIONS(1817), + [anon_sym_CARET] = ACTIONS(1817), + [anon_sym_AMP] = ACTIONS(1829), + [anon_sym_LT_DASH] = ACTIONS(1831), + [sym_none] = ACTIONS(1458), + [sym_true] = ACTIONS(1458), + [sym_false] = ACTIONS(1458), + [sym_nil] = ACTIONS(1458), + [anon_sym_if] = ACTIONS(1833), + [anon_sym_DOLLARif] = ACTIONS(1462), + [anon_sym_match] = ACTIONS(1464), + [anon_sym_select] = ACTIONS(1835), + [anon_sym_lock] = ACTIONS(1837), + [anon_sym_rlock] = ACTIONS(1837), + [anon_sym_unsafe] = ACTIONS(1839), + [anon_sym_sql] = ACTIONS(1472), + [sym_int_literal] = ACTIONS(1458), + [sym_float_literal] = ACTIONS(1474), + [sym_rune_literal] = ACTIONS(1474), + [sym_pseudo_compile_time_identifier] = ACTIONS(1476), [anon_sym_shared] = ACTIONS(83), [anon_sym_map_LBRACK] = ACTIONS(85), [anon_sym_chan] = ACTIONS(87), [anon_sym_thread] = ACTIONS(89), [anon_sym_atomic] = ACTIONS(91), - [sym___double_quote] = ACTIONS(1478), - [sym___single_quote] = ACTIONS(1480), - [sym___c_double_quote] = ACTIONS(1482), - [sym___c_single_quote] = ACTIONS(1484), - [sym___r_double_quote] = ACTIONS(1486), - [sym___r_single_quote] = ACTIONS(1488), + [sym___double_quote] = ACTIONS(1480), + [sym___single_quote] = ACTIONS(1482), + [sym___c_double_quote] = ACTIONS(1484), + [sym___c_single_quote] = ACTIONS(1486), + [sym___r_double_quote] = ACTIONS(1488), + [sym___r_single_quote] = ACTIONS(1490), }, [340] = { [sym_line_comment] = STATE(340), [sym_block_comment] = STATE(340), - [ts_builtin_sym_end] = ACTIONS(2211), - [sym_identifier] = ACTIONS(2213), - [anon_sym_LF] = ACTIONS(2213), - [anon_sym_CR] = ACTIONS(2213), - [anon_sym_CR_LF] = ACTIONS(2213), + [ts_builtin_sym_end] = ACTIONS(2209), + [sym_identifier] = ACTIONS(2211), + [anon_sym_LF] = ACTIONS(2211), + [anon_sym_CR] = ACTIONS(2211), + [anon_sym_CR_LF] = ACTIONS(2211), [anon_sym_SLASH_SLASH] = ACTIONS(497), [anon_sym_SLASH_STAR] = ACTIONS(499), - [anon_sym_DOT] = ACTIONS(2213), - [anon_sym_as] = ACTIONS(2213), - [anon_sym_LBRACE] = ACTIONS(2213), - [anon_sym_COMMA] = ACTIONS(2213), - [anon_sym_const] = ACTIONS(2213), - [anon_sym_LPAREN] = ACTIONS(2213), - [anon_sym_EQ] = ACTIONS(2213), - [anon_sym___global] = ACTIONS(2213), - [anon_sym_type] = ACTIONS(2213), - [anon_sym_PIPE] = ACTIONS(2213), - [anon_sym_fn] = ACTIONS(2213), - [anon_sym_PLUS] = ACTIONS(2213), - [anon_sym_DASH] = ACTIONS(2213), - [anon_sym_STAR] = ACTIONS(2213), - [anon_sym_SLASH] = ACTIONS(2213), - [anon_sym_PERCENT] = ACTIONS(2213), - [anon_sym_LT] = ACTIONS(2213), - [anon_sym_GT] = ACTIONS(2213), - [anon_sym_EQ_EQ] = ACTIONS(2213), - [anon_sym_BANG_EQ] = ACTIONS(2213), - [anon_sym_LT_EQ] = ACTIONS(2213), - [anon_sym_GT_EQ] = ACTIONS(2213), - [anon_sym_LBRACK] = ACTIONS(2211), - [anon_sym_struct] = ACTIONS(2213), - [anon_sym_union] = ACTIONS(2213), - [anon_sym_pub] = ACTIONS(2213), - [anon_sym_mut] = ACTIONS(2213), - [anon_sym_enum] = ACTIONS(2213), - [anon_sym_interface] = ACTIONS(2213), - [anon_sym_PLUS_PLUS] = ACTIONS(2213), - [anon_sym_DASH_DASH] = ACTIONS(2213), - [anon_sym_QMARK] = ACTIONS(2213), - [anon_sym_BANG] = ACTIONS(2213), - [anon_sym_go] = ACTIONS(2213), - [anon_sym_spawn] = ACTIONS(2213), - [anon_sym_json_DOTdecode] = ACTIONS(2213), - [anon_sym_LBRACK2] = ACTIONS(2213), - [anon_sym_TILDE] = ACTIONS(2213), - [anon_sym_CARET] = ACTIONS(2213), - [anon_sym_AMP] = ACTIONS(2213), - [anon_sym_LT_DASH] = ACTIONS(2213), - [anon_sym_LT_LT] = ACTIONS(2213), - [anon_sym_GT_GT] = ACTIONS(2213), - [anon_sym_GT_GT_GT] = ACTIONS(2213), - [anon_sym_AMP_CARET] = ACTIONS(2213), - [anon_sym_AMP_AMP] = ACTIONS(2213), - [anon_sym_PIPE_PIPE] = ACTIONS(2213), - [anon_sym_or] = ACTIONS(2213), - [sym_none] = ACTIONS(2213), - [sym_true] = ACTIONS(2213), - [sym_false] = ACTIONS(2213), - [sym_nil] = ACTIONS(2213), - [anon_sym_QMARK_DOT] = ACTIONS(2213), - [anon_sym_POUND_LBRACK] = ACTIONS(2213), - [anon_sym_if] = ACTIONS(2213), - [anon_sym_DOLLARif] = ACTIONS(2213), - [anon_sym_is] = ACTIONS(2213), - [anon_sym_BANGis] = ACTIONS(2213), - [anon_sym_in] = ACTIONS(2213), - [anon_sym_BANGin] = ACTIONS(2213), - [anon_sym_match] = ACTIONS(2213), - [anon_sym_select] = ACTIONS(2213), - [anon_sym_STAR_EQ] = ACTIONS(2213), - [anon_sym_SLASH_EQ] = ACTIONS(2213), - [anon_sym_PERCENT_EQ] = ACTIONS(2213), - [anon_sym_LT_LT_EQ] = ACTIONS(2213), - [anon_sym_GT_GT_EQ] = ACTIONS(2213), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(2213), - [anon_sym_AMP_EQ] = ACTIONS(2213), - [anon_sym_AMP_CARET_EQ] = ACTIONS(2213), - [anon_sym_PLUS_EQ] = ACTIONS(2213), - [anon_sym_DASH_EQ] = ACTIONS(2213), - [anon_sym_PIPE_EQ] = ACTIONS(2213), - [anon_sym_CARET_EQ] = ACTIONS(2213), - [anon_sym_COLON_EQ] = ACTIONS(2213), - [anon_sym_lock] = ACTIONS(2213), - [anon_sym_rlock] = ACTIONS(2213), - [anon_sym_unsafe] = ACTIONS(2213), - [anon_sym_sql] = ACTIONS(2213), - [sym_int_literal] = ACTIONS(2213), - [sym_float_literal] = ACTIONS(2213), - [sym_rune_literal] = ACTIONS(2213), - [sym_pseudo_compile_time_identifier] = ACTIONS(2213), - [anon_sym_shared] = ACTIONS(2213), - [anon_sym_map_LBRACK] = ACTIONS(2213), - [anon_sym_chan] = ACTIONS(2213), - [anon_sym_thread] = ACTIONS(2213), - [anon_sym_atomic] = ACTIONS(2213), - [anon_sym_assert] = ACTIONS(2213), - [anon_sym_defer] = ACTIONS(2213), - [anon_sym_goto] = ACTIONS(2213), - [anon_sym_break] = ACTIONS(2213), - [anon_sym_continue] = ACTIONS(2213), - [anon_sym_return] = ACTIONS(2213), - [anon_sym_DOLLARfor] = ACTIONS(2213), - [anon_sym_for] = ACTIONS(2213), - [anon_sym_POUND] = ACTIONS(2213), - [anon_sym_asm] = ACTIONS(2213), - [anon_sym_AT_LBRACK] = ACTIONS(2213), - [sym___double_quote] = ACTIONS(2213), - [sym___single_quote] = ACTIONS(2213), - [sym___c_double_quote] = ACTIONS(2213), - [sym___c_single_quote] = ACTIONS(2213), - [sym___r_double_quote] = ACTIONS(2213), - [sym___r_single_quote] = ACTIONS(2213), + [anon_sym_DOT] = ACTIONS(2211), + [anon_sym_as] = ACTIONS(2211), + [anon_sym_LBRACE] = ACTIONS(2211), + [anon_sym_COMMA] = ACTIONS(2211), + [anon_sym_const] = ACTIONS(2211), + [anon_sym_LPAREN] = ACTIONS(2211), + [anon_sym_EQ] = ACTIONS(2211), + [anon_sym___global] = ACTIONS(2211), + [anon_sym_type] = ACTIONS(2211), + [anon_sym_PIPE] = ACTIONS(2211), + [anon_sym_fn] = ACTIONS(2211), + [anon_sym_PLUS] = ACTIONS(2211), + [anon_sym_DASH] = ACTIONS(2211), + [anon_sym_STAR] = ACTIONS(2211), + [anon_sym_SLASH] = ACTIONS(2211), + [anon_sym_PERCENT] = ACTIONS(2211), + [anon_sym_LT] = ACTIONS(2211), + [anon_sym_GT] = ACTIONS(2211), + [anon_sym_EQ_EQ] = ACTIONS(2211), + [anon_sym_BANG_EQ] = ACTIONS(2211), + [anon_sym_LT_EQ] = ACTIONS(2211), + [anon_sym_GT_EQ] = ACTIONS(2211), + [anon_sym_LBRACK] = ACTIONS(2209), + [anon_sym_struct] = ACTIONS(2211), + [anon_sym_union] = ACTIONS(2211), + [anon_sym_pub] = ACTIONS(2211), + [anon_sym_mut] = ACTIONS(2211), + [anon_sym_enum] = ACTIONS(2211), + [anon_sym_interface] = ACTIONS(2211), + [anon_sym_PLUS_PLUS] = ACTIONS(2211), + [anon_sym_DASH_DASH] = ACTIONS(2211), + [anon_sym_QMARK] = ACTIONS(2211), + [anon_sym_BANG] = ACTIONS(2211), + [anon_sym_go] = ACTIONS(2211), + [anon_sym_spawn] = ACTIONS(2211), + [anon_sym_json_DOTdecode] = ACTIONS(2211), + [anon_sym_LBRACK2] = ACTIONS(2211), + [anon_sym_TILDE] = ACTIONS(2211), + [anon_sym_CARET] = ACTIONS(2211), + [anon_sym_AMP] = ACTIONS(2211), + [anon_sym_LT_DASH] = ACTIONS(2211), + [anon_sym_LT_LT] = ACTIONS(2211), + [anon_sym_GT_GT] = ACTIONS(2211), + [anon_sym_GT_GT_GT] = ACTIONS(2211), + [anon_sym_AMP_CARET] = ACTIONS(2211), + [anon_sym_AMP_AMP] = ACTIONS(2211), + [anon_sym_PIPE_PIPE] = ACTIONS(2211), + [anon_sym_or] = ACTIONS(2211), + [sym_none] = ACTIONS(2211), + [sym_true] = ACTIONS(2211), + [sym_false] = ACTIONS(2211), + [sym_nil] = ACTIONS(2211), + [anon_sym_QMARK_DOT] = ACTIONS(2211), + [anon_sym_POUND_LBRACK] = ACTIONS(2211), + [anon_sym_if] = ACTIONS(2211), + [anon_sym_DOLLARif] = ACTIONS(2211), + [anon_sym_is] = ACTIONS(2211), + [anon_sym_BANGis] = ACTIONS(2211), + [anon_sym_in] = ACTIONS(2211), + [anon_sym_BANGin] = ACTIONS(2211), + [anon_sym_match] = ACTIONS(2211), + [anon_sym_select] = ACTIONS(2211), + [anon_sym_STAR_EQ] = ACTIONS(2211), + [anon_sym_SLASH_EQ] = ACTIONS(2211), + [anon_sym_PERCENT_EQ] = ACTIONS(2211), + [anon_sym_LT_LT_EQ] = ACTIONS(2211), + [anon_sym_GT_GT_EQ] = ACTIONS(2211), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(2211), + [anon_sym_AMP_EQ] = ACTIONS(2211), + [anon_sym_AMP_CARET_EQ] = ACTIONS(2211), + [anon_sym_PLUS_EQ] = ACTIONS(2211), + [anon_sym_DASH_EQ] = ACTIONS(2211), + [anon_sym_PIPE_EQ] = ACTIONS(2211), + [anon_sym_CARET_EQ] = ACTIONS(2211), + [anon_sym_COLON_EQ] = ACTIONS(2211), + [anon_sym_lock] = ACTIONS(2211), + [anon_sym_rlock] = ACTIONS(2211), + [anon_sym_unsafe] = ACTIONS(2211), + [anon_sym_sql] = ACTIONS(2211), + [sym_int_literal] = ACTIONS(2211), + [sym_float_literal] = ACTIONS(2211), + [sym_rune_literal] = ACTIONS(2211), + [sym_pseudo_compile_time_identifier] = ACTIONS(2211), + [anon_sym_shared] = ACTIONS(2211), + [anon_sym_map_LBRACK] = ACTIONS(2211), + [anon_sym_chan] = ACTIONS(2211), + [anon_sym_thread] = ACTIONS(2211), + [anon_sym_atomic] = ACTIONS(2211), + [anon_sym_assert] = ACTIONS(2211), + [anon_sym_defer] = ACTIONS(2211), + [anon_sym_goto] = ACTIONS(2211), + [anon_sym_break] = ACTIONS(2211), + [anon_sym_continue] = ACTIONS(2211), + [anon_sym_return] = ACTIONS(2211), + [anon_sym_DOLLARfor] = ACTIONS(2211), + [anon_sym_for] = ACTIONS(2211), + [anon_sym_POUND] = ACTIONS(2211), + [anon_sym_asm] = ACTIONS(2211), + [anon_sym_AT_LBRACK] = ACTIONS(2211), + [sym___double_quote] = ACTIONS(2211), + [sym___single_quote] = ACTIONS(2211), + [sym___c_double_quote] = ACTIONS(2211), + [sym___c_single_quote] = ACTIONS(2211), + [sym___r_double_quote] = ACTIONS(2211), + [sym___r_single_quote] = ACTIONS(2211), }, [341] = { [sym_line_comment] = STATE(341), [sym_block_comment] = STATE(341), + [sym__expression] = STATE(2558), + [sym__expression_without_blocks] = STATE(2347), + [sym__expression_with_blocks] = STATE(2347), + [sym_inc_expression] = STATE(2379), + [sym_dec_expression] = STATE(2379), + [sym_or_block_expression] = STATE(2379), + [sym_option_propagation_expression] = STATE(2379), + [sym_result_propagation_expression] = STATE(2379), + [sym_anon_struct_value_expression] = STATE(2378), + [sym_go_expression] = STATE(2379), + [sym_spawn_expression] = STATE(2379), + [sym_parenthesized_expression] = STATE(2379), + [sym_call_expression] = STATE(2379), + [sym_type_initializer] = STATE(2378), + [sym_function_literal] = STATE(2379), + [sym_reference_expression] = STATE(2377), + [sym_type_reference_expression] = STATE(3460), + [sym_unary_expression] = STATE(2379), + [sym_receive_expression] = STATE(2379), + [sym_binary_expression] = STATE(2379), + [sym_as_type_cast_expression] = STATE(2379), + [sym__max_group] = STATE(2379), + [sym_literal] = STATE(2392), + [sym_map_init_expression] = STATE(2378), + [sym_array_creation] = STATE(2379), + [sym_fixed_array_creation] = STATE(2379), + [sym_selector_expression] = STATE(2379), + [sym_index_expression] = STATE(2379), + [sym_slice_expression] = STATE(2379), + [sym_if_expression] = STATE(2378), + [sym_compile_time_if_expression] = STATE(2378), + [sym_is_expression] = STATE(2379), + [sym_in_expression] = STATE(2379), + [sym_enum_fetch] = STATE(2379), + [sym_match_expression] = STATE(2378), + [sym_select_expression] = STATE(2378), + [sym_lock_expression] = STATE(2378), + [sym_unsafe_expression] = STATE(2378), + [sym_sql_expression] = STATE(2378), + [sym_c_string_literal] = STATE(2401), + [sym_raw_string_literal] = STATE(2401), + [sym_interpreted_string_literal] = STATE(2401), + [sym_mutability_modifiers] = STATE(900), + [sym_mutable_expression] = STATE(3813), + [sym_expression_list] = STATE(4344), + [sym_plain_type] = STATE(4160), + [sym__plain_type_without_special] = STATE(2360), + [sym_anon_struct_type] = STATE(2362), + [sym_multi_return_type] = STATE(2360), + [sym_result_type] = STATE(2360), + [sym_option_type] = STATE(2360), + [sym_qualified_type] = STATE(3460), + [sym_fixed_array_type] = STATE(2362), + [sym_array_type] = STATE(2362), + [sym_pointer_type] = STATE(2362), + [sym_wrong_pointer_type] = STATE(2362), + [sym_map_type] = STATE(2362), + [sym_channel_type] = STATE(2362), + [sym_shared_type] = STATE(2362), + [sym_thread_type] = STATE(2362), + [sym_atomic_type] = STATE(2362), + [sym_generic_type] = STATE(2362), + [sym_function_type] = STATE(2362), + [sym_identifier] = ACTIONS(1815), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(1430), + [anon_sym_LBRACE] = ACTIONS(2213), + [anon_sym_LPAREN] = ACTIONS(1434), + [anon_sym_fn] = ACTIONS(1436), + [anon_sym_PLUS] = ACTIONS(1817), + [anon_sym_DASH] = ACTIONS(1817), + [anon_sym_STAR] = ACTIONS(1819), + [anon_sym_struct] = ACTIONS(1442), + [anon_sym_mut] = ACTIONS(41), + [anon_sym_QMARK] = ACTIONS(47), + [anon_sym_BANG] = ACTIONS(1821), + [anon_sym_go] = ACTIONS(1823), + [anon_sym_spawn] = ACTIONS(1825), + [anon_sym_json_DOTdecode] = ACTIONS(1450), + [anon_sym_LBRACK2] = ACTIONS(1827), + [anon_sym_TILDE] = ACTIONS(1817), + [anon_sym_CARET] = ACTIONS(1817), + [anon_sym_AMP] = ACTIONS(1829), + [anon_sym_LT_DASH] = ACTIONS(1831), + [sym_none] = ACTIONS(1458), + [sym_true] = ACTIONS(1458), + [sym_false] = ACTIONS(1458), + [sym_nil] = ACTIONS(1458), + [anon_sym_if] = ACTIONS(1833), + [anon_sym_DOLLARif] = ACTIONS(1462), + [anon_sym_match] = ACTIONS(1464), + [anon_sym_select] = ACTIONS(1835), + [anon_sym_lock] = ACTIONS(1837), + [anon_sym_rlock] = ACTIONS(1837), + [anon_sym_unsafe] = ACTIONS(1839), + [anon_sym_sql] = ACTIONS(1472), + [sym_int_literal] = ACTIONS(1458), + [sym_float_literal] = ACTIONS(1474), + [sym_rune_literal] = ACTIONS(1474), + [sym_pseudo_compile_time_identifier] = ACTIONS(1476), + [anon_sym_shared] = ACTIONS(83), + [anon_sym_map_LBRACK] = ACTIONS(85), + [anon_sym_chan] = ACTIONS(87), + [anon_sym_thread] = ACTIONS(89), + [anon_sym_atomic] = ACTIONS(91), + [sym___double_quote] = ACTIONS(1480), + [sym___single_quote] = ACTIONS(1482), + [sym___c_double_quote] = ACTIONS(1484), + [sym___c_single_quote] = ACTIONS(1486), + [sym___r_double_quote] = ACTIONS(1488), + [sym___r_single_quote] = ACTIONS(1490), + }, + [342] = { + [sym_line_comment] = STATE(342), + [sym_block_comment] = STATE(342), [ts_builtin_sym_end] = ACTIONS(2215), [sym_identifier] = ACTIONS(2217), [anon_sym_LF] = ACTIONS(2217), @@ -62366,81 +62500,81 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_CR_LF] = ACTIONS(2217), [anon_sym_SLASH_SLASH] = ACTIONS(497), [anon_sym_SLASH_STAR] = ACTIONS(499), - [anon_sym_DOT] = ACTIONS(2217), - [anon_sym_as] = ACTIONS(2217), + [anon_sym_DOT] = ACTIONS(2219), + [anon_sym_as] = ACTIONS(2219), [anon_sym_LBRACE] = ACTIONS(2217), - [anon_sym_COMMA] = ACTIONS(2217), + [anon_sym_COMMA] = ACTIONS(2219), [anon_sym_const] = ACTIONS(2217), - [anon_sym_LPAREN] = ACTIONS(2217), - [anon_sym_EQ] = ACTIONS(2217), + [anon_sym_LPAREN] = ACTIONS(2219), + [anon_sym_EQ] = ACTIONS(2219), [anon_sym___global] = ACTIONS(2217), [anon_sym_type] = ACTIONS(2217), - [anon_sym_PIPE] = ACTIONS(2217), + [anon_sym_PIPE] = ACTIONS(2219), [anon_sym_fn] = ACTIONS(2217), - [anon_sym_PLUS] = ACTIONS(2217), - [anon_sym_DASH] = ACTIONS(2217), - [anon_sym_STAR] = ACTIONS(2217), - [anon_sym_SLASH] = ACTIONS(2217), - [anon_sym_PERCENT] = ACTIONS(2217), - [anon_sym_LT] = ACTIONS(2217), - [anon_sym_GT] = ACTIONS(2217), - [anon_sym_EQ_EQ] = ACTIONS(2217), - [anon_sym_BANG_EQ] = ACTIONS(2217), - [anon_sym_LT_EQ] = ACTIONS(2217), - [anon_sym_GT_EQ] = ACTIONS(2217), - [anon_sym_LBRACK] = ACTIONS(2215), + [anon_sym_PLUS] = ACTIONS(2219), + [anon_sym_DASH] = ACTIONS(2219), + [anon_sym_STAR] = ACTIONS(2219), + [anon_sym_SLASH] = ACTIONS(2219), + [anon_sym_PERCENT] = ACTIONS(2219), + [anon_sym_LT] = ACTIONS(2219), + [anon_sym_GT] = ACTIONS(2219), + [anon_sym_EQ_EQ] = ACTIONS(2219), + [anon_sym_BANG_EQ] = ACTIONS(2219), + [anon_sym_LT_EQ] = ACTIONS(2219), + [anon_sym_GT_EQ] = ACTIONS(2219), + [anon_sym_LBRACK] = ACTIONS(2222), [anon_sym_struct] = ACTIONS(2217), [anon_sym_union] = ACTIONS(2217), [anon_sym_pub] = ACTIONS(2217), [anon_sym_mut] = ACTIONS(2217), [anon_sym_enum] = ACTIONS(2217), [anon_sym_interface] = ACTIONS(2217), - [anon_sym_PLUS_PLUS] = ACTIONS(2217), - [anon_sym_DASH_DASH] = ACTIONS(2217), - [anon_sym_QMARK] = ACTIONS(2217), - [anon_sym_BANG] = ACTIONS(2217), + [anon_sym_PLUS_PLUS] = ACTIONS(2219), + [anon_sym_DASH_DASH] = ACTIONS(2219), + [anon_sym_QMARK] = ACTIONS(2219), + [anon_sym_BANG] = ACTIONS(2219), [anon_sym_go] = ACTIONS(2217), [anon_sym_spawn] = ACTIONS(2217), [anon_sym_json_DOTdecode] = ACTIONS(2217), - [anon_sym_LBRACK2] = ACTIONS(2217), + [anon_sym_LBRACK2] = ACTIONS(2219), [anon_sym_TILDE] = ACTIONS(2217), - [anon_sym_CARET] = ACTIONS(2217), - [anon_sym_AMP] = ACTIONS(2217), + [anon_sym_CARET] = ACTIONS(2219), + [anon_sym_AMP] = ACTIONS(2219), [anon_sym_LT_DASH] = ACTIONS(2217), - [anon_sym_LT_LT] = ACTIONS(2217), - [anon_sym_GT_GT] = ACTIONS(2217), - [anon_sym_GT_GT_GT] = ACTIONS(2217), - [anon_sym_AMP_CARET] = ACTIONS(2217), - [anon_sym_AMP_AMP] = ACTIONS(2217), - [anon_sym_PIPE_PIPE] = ACTIONS(2217), - [anon_sym_or] = ACTIONS(2217), + [anon_sym_LT_LT] = ACTIONS(2219), + [anon_sym_GT_GT] = ACTIONS(2219), + [anon_sym_GT_GT_GT] = ACTIONS(2219), + [anon_sym_AMP_CARET] = ACTIONS(2219), + [anon_sym_AMP_AMP] = ACTIONS(2219), + [anon_sym_PIPE_PIPE] = ACTIONS(2219), + [anon_sym_or] = ACTIONS(2219), [sym_none] = ACTIONS(2217), [sym_true] = ACTIONS(2217), [sym_false] = ACTIONS(2217), [sym_nil] = ACTIONS(2217), - [anon_sym_QMARK_DOT] = ACTIONS(2217), - [anon_sym_POUND_LBRACK] = ACTIONS(2217), + [anon_sym_QMARK_DOT] = ACTIONS(2219), + [anon_sym_POUND_LBRACK] = ACTIONS(2219), [anon_sym_if] = ACTIONS(2217), [anon_sym_DOLLARif] = ACTIONS(2217), - [anon_sym_is] = ACTIONS(2217), - [anon_sym_BANGis] = ACTIONS(2217), - [anon_sym_in] = ACTIONS(2217), - [anon_sym_BANGin] = ACTIONS(2217), + [anon_sym_is] = ACTIONS(2219), + [anon_sym_BANGis] = ACTIONS(2219), + [anon_sym_in] = ACTIONS(2219), + [anon_sym_BANGin] = ACTIONS(2219), [anon_sym_match] = ACTIONS(2217), [anon_sym_select] = ACTIONS(2217), - [anon_sym_STAR_EQ] = ACTIONS(2217), - [anon_sym_SLASH_EQ] = ACTIONS(2217), - [anon_sym_PERCENT_EQ] = ACTIONS(2217), - [anon_sym_LT_LT_EQ] = ACTIONS(2217), - [anon_sym_GT_GT_EQ] = ACTIONS(2217), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(2217), - [anon_sym_AMP_EQ] = ACTIONS(2217), - [anon_sym_AMP_CARET_EQ] = ACTIONS(2217), - [anon_sym_PLUS_EQ] = ACTIONS(2217), - [anon_sym_DASH_EQ] = ACTIONS(2217), - [anon_sym_PIPE_EQ] = ACTIONS(2217), - [anon_sym_CARET_EQ] = ACTIONS(2217), - [anon_sym_COLON_EQ] = ACTIONS(2217), + [anon_sym_STAR_EQ] = ACTIONS(2219), + [anon_sym_SLASH_EQ] = ACTIONS(2219), + [anon_sym_PERCENT_EQ] = ACTIONS(2219), + [anon_sym_LT_LT_EQ] = ACTIONS(2219), + [anon_sym_GT_GT_EQ] = ACTIONS(2219), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(2219), + [anon_sym_AMP_EQ] = ACTIONS(2219), + [anon_sym_AMP_CARET_EQ] = ACTIONS(2219), + [anon_sym_PLUS_EQ] = ACTIONS(2219), + [anon_sym_DASH_EQ] = ACTIONS(2219), + [anon_sym_PIPE_EQ] = ACTIONS(2219), + [anon_sym_CARET_EQ] = ACTIONS(2219), + [anon_sym_COLON_EQ] = ACTIONS(2219), [anon_sym_lock] = ACTIONS(2217), [anon_sym_rlock] = ACTIONS(2217), [anon_sym_unsafe] = ACTIONS(2217), @@ -62472,589 +62606,125 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym___r_double_quote] = ACTIONS(2217), [sym___r_single_quote] = ACTIONS(2217), }, - [342] = { - [sym_line_comment] = STATE(342), - [sym_block_comment] = STATE(342), - [sym__expression] = STATE(2584), - [sym__expression_without_blocks] = STATE(2300), - [sym__expression_with_blocks] = STATE(2300), - [sym_inc_expression] = STATE(2307), - [sym_dec_expression] = STATE(2307), - [sym_or_block_expression] = STATE(2307), - [sym_option_propagation_expression] = STATE(2307), - [sym_result_propagation_expression] = STATE(2307), - [sym_anon_struct_value_expression] = STATE(2380), - [sym_go_expression] = STATE(2307), - [sym_spawn_expression] = STATE(2307), - [sym_parenthesized_expression] = STATE(2307), - [sym_call_expression] = STATE(2307), - [sym_type_initializer] = STATE(2380), - [sym_function_literal] = STATE(2307), - [sym_reference_expression] = STATE(2311), - [sym_type_reference_expression] = STATE(3541), - [sym_unary_expression] = STATE(2307), - [sym_receive_expression] = STATE(2307), - [sym_binary_expression] = STATE(2307), - [sym_as_type_cast_expression] = STATE(2307), - [sym__max_group] = STATE(2307), - [sym_literal] = STATE(2292), - [sym_map_init_expression] = STATE(2380), - [sym_array_creation] = STATE(2307), - [sym_fixed_array_creation] = STATE(2307), - [sym_selector_expression] = STATE(2307), - [sym_index_expression] = STATE(2307), - [sym_slice_expression] = STATE(2307), - [sym_if_expression] = STATE(2380), - [sym_compile_time_if_expression] = STATE(2380), - [sym_is_expression] = STATE(2307), - [sym_in_expression] = STATE(2307), - [sym_enum_fetch] = STATE(2307), - [sym_match_expression] = STATE(2380), - [sym_select_expression] = STATE(2380), - [sym_lock_expression] = STATE(2380), - [sym_unsafe_expression] = STATE(2380), - [sym_sql_expression] = STATE(2380), - [sym_c_string_literal] = STATE(2308), - [sym_raw_string_literal] = STATE(2308), - [sym_interpreted_string_literal] = STATE(2308), - [sym_mutability_modifiers] = STATE(939), - [sym_plain_type] = STATE(4297), - [sym__plain_type_without_special] = STATE(2302), - [sym_anon_struct_type] = STATE(2303), - [sym_multi_return_type] = STATE(2302), - [sym_result_type] = STATE(2302), - [sym_option_type] = STATE(2302), - [sym_qualified_type] = STATE(3541), - [sym_fixed_array_type] = STATE(2303), - [sym_array_type] = STATE(2303), - [sym_pointer_type] = STATE(2303), - [sym_wrong_pointer_type] = STATE(2303), - [sym_map_type] = STATE(2303), - [sym_channel_type] = STATE(2303), - [sym_shared_type] = STATE(2303), - [sym_thread_type] = STATE(2303), - [sym_atomic_type] = STATE(2303), - [sym_generic_type] = STATE(2303), - [sym_function_type] = STATE(2303), - [sym_range] = STATE(4630), - [sym_identifier] = ACTIONS(1426), - [anon_sym_SLASH_SLASH] = ACTIONS(3), - [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1428), - [anon_sym_LBRACE] = ACTIONS(1430), - [anon_sym_LPAREN] = ACTIONS(1432), - [anon_sym_fn] = ACTIONS(1434), - [anon_sym_PLUS] = ACTIONS(1436), - [anon_sym_DASH] = ACTIONS(1436), - [anon_sym_STAR] = ACTIONS(1438), - [anon_sym_struct] = ACTIONS(1440), - [anon_sym_mut] = ACTIONS(41), - [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(1442), - [anon_sym_go] = ACTIONS(1444), - [anon_sym_spawn] = ACTIONS(1446), - [anon_sym_json_DOTdecode] = ACTIONS(1448), - [anon_sym_LBRACK2] = ACTIONS(1450), - [anon_sym_TILDE] = ACTIONS(1436), - [anon_sym_CARET] = ACTIONS(1436), - [anon_sym_AMP] = ACTIONS(1452), - [anon_sym_LT_DASH] = ACTIONS(1454), - [sym_none] = ACTIONS(1456), - [sym_true] = ACTIONS(1456), - [sym_false] = ACTIONS(1456), - [sym_nil] = ACTIONS(1456), - [anon_sym_if] = ACTIONS(1827), - [anon_sym_DOLLARif] = ACTIONS(1460), - [anon_sym_match] = ACTIONS(1462), - [anon_sym_select] = ACTIONS(1464), - [anon_sym_lock] = ACTIONS(1466), - [anon_sym_rlock] = ACTIONS(1466), - [anon_sym_unsafe] = ACTIONS(1833), - [anon_sym_sql] = ACTIONS(1470), - [sym_int_literal] = ACTIONS(1456), - [sym_float_literal] = ACTIONS(1472), - [sym_rune_literal] = ACTIONS(1472), - [sym_pseudo_compile_time_identifier] = ACTIONS(1474), - [anon_sym_shared] = ACTIONS(83), - [anon_sym_map_LBRACK] = ACTIONS(85), - [anon_sym_chan] = ACTIONS(87), - [anon_sym_thread] = ACTIONS(89), - [anon_sym_atomic] = ACTIONS(91), - [anon_sym_DOT_DOT] = ACTIONS(1476), - [sym___double_quote] = ACTIONS(1478), - [sym___single_quote] = ACTIONS(1480), - [sym___c_double_quote] = ACTIONS(1482), - [sym___c_single_quote] = ACTIONS(1484), - [sym___r_double_quote] = ACTIONS(1486), - [sym___r_single_quote] = ACTIONS(1488), - }, [343] = { [sym_line_comment] = STATE(343), [sym_block_comment] = STATE(343), - [sym__expression] = STATE(2584), - [sym__expression_without_blocks] = STATE(2300), - [sym__expression_with_blocks] = STATE(2300), - [sym_inc_expression] = STATE(2307), - [sym_dec_expression] = STATE(2307), - [sym_or_block_expression] = STATE(2307), - [sym_option_propagation_expression] = STATE(2307), - [sym_result_propagation_expression] = STATE(2307), - [sym_anon_struct_value_expression] = STATE(2380), - [sym_go_expression] = STATE(2307), - [sym_spawn_expression] = STATE(2307), - [sym_parenthesized_expression] = STATE(2307), - [sym_call_expression] = STATE(2307), - [sym_type_initializer] = STATE(2380), - [sym_function_literal] = STATE(2307), - [sym_reference_expression] = STATE(2311), - [sym_type_reference_expression] = STATE(3541), - [sym_unary_expression] = STATE(2307), - [sym_receive_expression] = STATE(2307), - [sym_binary_expression] = STATE(2307), - [sym_as_type_cast_expression] = STATE(2307), - [sym__max_group] = STATE(2307), - [sym_literal] = STATE(2292), - [sym_map_init_expression] = STATE(2380), - [sym_array_creation] = STATE(2307), - [sym_fixed_array_creation] = STATE(2307), - [sym_selector_expression] = STATE(2307), - [sym_index_expression] = STATE(2307), - [sym_slice_expression] = STATE(2307), - [sym_if_expression] = STATE(2380), - [sym_compile_time_if_expression] = STATE(2380), - [sym_is_expression] = STATE(2307), - [sym_in_expression] = STATE(2307), - [sym_enum_fetch] = STATE(2307), - [sym_match_expression] = STATE(2380), - [sym_select_expression] = STATE(2380), - [sym_lock_expression] = STATE(2380), - [sym_unsafe_expression] = STATE(2380), - [sym_sql_expression] = STATE(2380), - [sym_c_string_literal] = STATE(2308), - [sym_raw_string_literal] = STATE(2308), - [sym_interpreted_string_literal] = STATE(2308), - [sym_mutability_modifiers] = STATE(939), - [sym_plain_type] = STATE(3557), - [sym__plain_type_without_special] = STATE(2302), - [sym_anon_struct_type] = STATE(2303), - [sym_multi_return_type] = STATE(2302), - [sym_result_type] = STATE(2302), - [sym_option_type] = STATE(2302), - [sym_qualified_type] = STATE(3541), - [sym_fixed_array_type] = STATE(2303), - [sym_array_type] = STATE(2303), - [sym_pointer_type] = STATE(2303), - [sym_wrong_pointer_type] = STATE(2303), - [sym_map_type] = STATE(2303), - [sym_channel_type] = STATE(2303), - [sym_shared_type] = STATE(2303), - [sym_thread_type] = STATE(2303), - [sym_atomic_type] = STATE(2303), - [sym_generic_type] = STATE(2303), - [sym_function_type] = STATE(2303), - [sym_range] = STATE(4630), - [sym_identifier] = ACTIONS(2135), + [sym__expression] = STATE(1273), + [sym__expression_without_blocks] = STATE(1318), + [sym__expression_with_blocks] = STATE(1318), + [sym_inc_expression] = STATE(1319), + [sym_dec_expression] = STATE(1319), + [sym_or_block_expression] = STATE(1319), + [sym_option_propagation_expression] = STATE(1319), + [sym_result_propagation_expression] = STATE(1319), + [sym_anon_struct_value_expression] = STATE(1320), + [sym_go_expression] = STATE(1319), + [sym_spawn_expression] = STATE(1319), + [sym_parenthesized_expression] = STATE(1319), + [sym_call_expression] = STATE(1319), + [sym_type_initializer] = STATE(1320), + [sym_function_literal] = STATE(1319), + [sym_reference_expression] = STATE(1298), + [sym_type_reference_expression] = STATE(3460), + [sym_unary_expression] = STATE(1319), + [sym_receive_expression] = STATE(1319), + [sym_binary_expression] = STATE(1319), + [sym_as_type_cast_expression] = STATE(1319), + [sym__max_group] = STATE(1319), + [sym_literal] = STATE(1314), + [sym_map_init_expression] = STATE(1320), + [sym_array_creation] = STATE(1319), + [sym_fixed_array_creation] = STATE(1319), + [sym_selector_expression] = STATE(1319), + [sym_index_expression] = STATE(1319), + [sym_slice_expression] = STATE(1319), + [sym_if_expression] = STATE(1320), + [sym_compile_time_if_expression] = STATE(1320), + [sym_is_expression] = STATE(1319), + [sym_in_expression] = STATE(1319), + [sym_enum_fetch] = STATE(1319), + [sym_match_expression] = STATE(1320), + [sym_select_expression] = STATE(1320), + [sym_lock_expression] = STATE(1320), + [sym_unsafe_expression] = STATE(1320), + [sym_sql_expression] = STATE(1320), + [sym_c_string_literal] = STATE(1291), + [sym_raw_string_literal] = STATE(1291), + [sym_interpreted_string_literal] = STATE(1291), + [sym_mutability_modifiers] = STATE(639), + [sym_plain_type] = STATE(4307), + [sym__plain_type_without_special] = STATE(2360), + [sym_anon_struct_type] = STATE(2362), + [sym_multi_return_type] = STATE(2360), + [sym_result_type] = STATE(2360), + [sym_option_type] = STATE(2360), + [sym_qualified_type] = STATE(3460), + [sym_fixed_array_type] = STATE(2362), + [sym_array_type] = STATE(2362), + [sym_pointer_type] = STATE(2362), + [sym_wrong_pointer_type] = STATE(2362), + [sym_map_type] = STATE(2362), + [sym_channel_type] = STATE(2362), + [sym_shared_type] = STATE(2362), + [sym_thread_type] = STATE(2362), + [sym_atomic_type] = STATE(2362), + [sym_generic_type] = STATE(2362), + [sym_function_type] = STATE(2362), + [aux_sym__array_repeat1] = STATE(405), + [sym_identifier] = ACTIONS(1360), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1428), - [anon_sym_LBRACE] = ACTIONS(1430), - [anon_sym_LPAREN] = ACTIONS(1432), - [anon_sym_fn] = ACTIONS(1434), - [anon_sym_PLUS] = ACTIONS(1436), - [anon_sym_DASH] = ACTIONS(1436), - [anon_sym_STAR] = ACTIONS(2137), - [anon_sym_struct] = ACTIONS(1440), + [anon_sym_DOT] = ACTIONS(1362), + [anon_sym_LBRACE] = ACTIONS(1364), + [anon_sym_LPAREN] = ACTIONS(1366), + [anon_sym_fn] = ACTIONS(1368), + [anon_sym_PLUS] = ACTIONS(1370), + [anon_sym_DASH] = ACTIONS(1370), + [anon_sym_STAR] = ACTIONS(1372), + [anon_sym_RBRACK] = ACTIONS(2225), + [anon_sym_struct] = ACTIONS(1376), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(2139), - [anon_sym_go] = ACTIONS(1444), - [anon_sym_spawn] = ACTIONS(1446), - [anon_sym_json_DOTdecode] = ACTIONS(1448), - [anon_sym_LBRACK2] = ACTIONS(1450), - [anon_sym_TILDE] = ACTIONS(1436), - [anon_sym_CARET] = ACTIONS(1436), - [anon_sym_AMP] = ACTIONS(2141), - [anon_sym_LT_DASH] = ACTIONS(1454), - [sym_none] = ACTIONS(1456), - [sym_true] = ACTIONS(1456), - [sym_false] = ACTIONS(1456), - [sym_nil] = ACTIONS(1456), - [anon_sym_if] = ACTIONS(1827), - [anon_sym_DOLLARif] = ACTIONS(1460), - [anon_sym_match] = ACTIONS(1462), - [anon_sym_select] = ACTIONS(1464), - [anon_sym_lock] = ACTIONS(1466), - [anon_sym_rlock] = ACTIONS(1466), - [anon_sym_unsafe] = ACTIONS(1833), - [anon_sym_sql] = ACTIONS(1470), - [sym_int_literal] = ACTIONS(1456), - [sym_float_literal] = ACTIONS(1472), - [sym_rune_literal] = ACTIONS(1472), - [sym_pseudo_compile_time_identifier] = ACTIONS(1474), + [anon_sym_BANG] = ACTIONS(1378), + [anon_sym_go] = ACTIONS(1380), + [anon_sym_spawn] = ACTIONS(1382), + [anon_sym_json_DOTdecode] = ACTIONS(1384), + [anon_sym_LBRACK2] = ACTIONS(1386), + [anon_sym_TILDE] = ACTIONS(1370), + [anon_sym_CARET] = ACTIONS(1370), + [anon_sym_AMP] = ACTIONS(1388), + [anon_sym_LT_DASH] = ACTIONS(1390), + [sym_none] = ACTIONS(1392), + [sym_true] = ACTIONS(1392), + [sym_false] = ACTIONS(1392), + [sym_nil] = ACTIONS(1392), + [anon_sym_if] = ACTIONS(1865), + [anon_sym_DOLLARif] = ACTIONS(1396), + [anon_sym_match] = ACTIONS(1398), + [anon_sym_select] = ACTIONS(1400), + [anon_sym_lock] = ACTIONS(1402), + [anon_sym_rlock] = ACTIONS(1402), + [anon_sym_unsafe] = ACTIONS(1871), + [anon_sym_sql] = ACTIONS(1406), + [sym_int_literal] = ACTIONS(1392), + [sym_float_literal] = ACTIONS(1410), + [sym_rune_literal] = ACTIONS(1410), + [sym_pseudo_compile_time_identifier] = ACTIONS(1412), [anon_sym_shared] = ACTIONS(83), [anon_sym_map_LBRACK] = ACTIONS(85), [anon_sym_chan] = ACTIONS(87), [anon_sym_thread] = ACTIONS(89), [anon_sym_atomic] = ACTIONS(91), - [anon_sym_DOT_DOT] = ACTIONS(1476), - [sym___double_quote] = ACTIONS(1478), - [sym___single_quote] = ACTIONS(1480), - [sym___c_double_quote] = ACTIONS(1482), - [sym___c_single_quote] = ACTIONS(1484), - [sym___r_double_quote] = ACTIONS(1486), - [sym___r_single_quote] = ACTIONS(1488), + [sym___double_quote] = ACTIONS(1414), + [sym___single_quote] = ACTIONS(1416), + [sym___c_double_quote] = ACTIONS(1418), + [sym___c_single_quote] = ACTIONS(1420), + [sym___r_double_quote] = ACTIONS(1422), + [sym___r_single_quote] = ACTIONS(1424), }, [344] = { [sym_line_comment] = STATE(344), [sym_block_comment] = STATE(344), - [sym__expression] = STATE(1268), - [sym__expression_without_blocks] = STATE(1312), - [sym__expression_with_blocks] = STATE(1312), - [sym_inc_expression] = STATE(1313), - [sym_dec_expression] = STATE(1313), - [sym_or_block_expression] = STATE(1313), - [sym_option_propagation_expression] = STATE(1313), - [sym_result_propagation_expression] = STATE(1313), - [sym_anon_struct_value_expression] = STATE(1314), - [sym_go_expression] = STATE(1313), - [sym_spawn_expression] = STATE(1313), - [sym_parenthesized_expression] = STATE(1313), - [sym_call_expression] = STATE(1313), - [sym_type_initializer] = STATE(1314), - [sym_function_literal] = STATE(1313), - [sym_reference_expression] = STATE(1334), - [sym_type_reference_expression] = STATE(3541), - [sym_unary_expression] = STATE(1313), - [sym_receive_expression] = STATE(1313), - [sym_binary_expression] = STATE(1313), - [sym_as_type_cast_expression] = STATE(1313), - [sym__max_group] = STATE(1313), - [sym_literal] = STATE(1308), - [sym_map_init_expression] = STATE(1314), - [sym_array_creation] = STATE(1313), - [sym_fixed_array_creation] = STATE(1313), - [sym_selector_expression] = STATE(1313), - [sym_index_expression] = STATE(1313), - [sym_slice_expression] = STATE(1313), - [sym_if_expression] = STATE(1314), - [sym_compile_time_if_expression] = STATE(1314), - [sym_is_expression] = STATE(1313), - [sym_in_expression] = STATE(1313), - [sym_enum_fetch] = STATE(1313), - [sym_match_expression] = STATE(1314), - [sym_select_expression] = STATE(1314), - [sym_lock_expression] = STATE(1314), - [sym_unsafe_expression] = STATE(1314), - [sym_sql_expression] = STATE(1314), - [sym_c_string_literal] = STATE(1286), - [sym_raw_string_literal] = STATE(1286), - [sym_interpreted_string_literal] = STATE(1286), - [sym_mutability_modifiers] = STATE(699), - [sym_plain_type] = STATE(4192), - [sym__plain_type_without_special] = STATE(2302), - [sym_anon_struct_type] = STATE(2303), - [sym_multi_return_type] = STATE(2302), - [sym_result_type] = STATE(2302), - [sym_option_type] = STATE(2302), - [sym_qualified_type] = STATE(3541), - [sym_fixed_array_type] = STATE(2303), - [sym_array_type] = STATE(2303), - [sym_pointer_type] = STATE(2303), - [sym_wrong_pointer_type] = STATE(2303), - [sym_map_type] = STATE(2303), - [sym_channel_type] = STATE(2303), - [sym_shared_type] = STATE(2303), - [sym_thread_type] = STATE(2303), - [sym_atomic_type] = STATE(2303), - [sym_generic_type] = STATE(2303), - [sym_function_type] = STATE(2303), - [aux_sym__array_repeat1] = STATE(404), - [sym_identifier] = ACTIONS(1354), - [anon_sym_SLASH_SLASH] = ACTIONS(3), - [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1356), - [anon_sym_LBRACE] = ACTIONS(1358), - [anon_sym_LPAREN] = ACTIONS(1360), - [anon_sym_fn] = ACTIONS(1362), - [anon_sym_PLUS] = ACTIONS(1364), - [anon_sym_DASH] = ACTIONS(1364), - [anon_sym_STAR] = ACTIONS(1366), - [anon_sym_RBRACK] = ACTIONS(2219), - [anon_sym_struct] = ACTIONS(1370), - [anon_sym_mut] = ACTIONS(41), - [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(1372), - [anon_sym_go] = ACTIONS(1374), - [anon_sym_spawn] = ACTIONS(1376), - [anon_sym_json_DOTdecode] = ACTIONS(1378), - [anon_sym_LBRACK2] = ACTIONS(1380), - [anon_sym_TILDE] = ACTIONS(1364), - [anon_sym_CARET] = ACTIONS(1364), - [anon_sym_AMP] = ACTIONS(1382), - [anon_sym_LT_DASH] = ACTIONS(1384), - [sym_none] = ACTIONS(1386), - [sym_true] = ACTIONS(1386), - [sym_false] = ACTIONS(1386), - [sym_nil] = ACTIONS(1386), - [anon_sym_if] = ACTIONS(1877), - [anon_sym_DOLLARif] = ACTIONS(1390), - [anon_sym_match] = ACTIONS(1392), - [anon_sym_select] = ACTIONS(1394), - [anon_sym_lock] = ACTIONS(1396), - [anon_sym_rlock] = ACTIONS(1396), - [anon_sym_unsafe] = ACTIONS(1883), - [anon_sym_sql] = ACTIONS(1400), - [sym_int_literal] = ACTIONS(1386), - [sym_float_literal] = ACTIONS(1404), - [sym_rune_literal] = ACTIONS(1404), - [sym_pseudo_compile_time_identifier] = ACTIONS(1406), - [anon_sym_shared] = ACTIONS(83), - [anon_sym_map_LBRACK] = ACTIONS(85), - [anon_sym_chan] = ACTIONS(87), - [anon_sym_thread] = ACTIONS(89), - [anon_sym_atomic] = ACTIONS(91), - [sym___double_quote] = ACTIONS(1408), - [sym___single_quote] = ACTIONS(1410), - [sym___c_double_quote] = ACTIONS(1412), - [sym___c_single_quote] = ACTIONS(1414), - [sym___r_double_quote] = ACTIONS(1416), - [sym___r_single_quote] = ACTIONS(1418), - }, - [345] = { - [sym_line_comment] = STATE(345), - [sym_block_comment] = STATE(345), - [sym__expression] = STATE(2455), - [sym__expression_without_blocks] = STATE(2300), - [sym__expression_with_blocks] = STATE(2300), - [sym_inc_expression] = STATE(2307), - [sym_dec_expression] = STATE(2307), - [sym_or_block_expression] = STATE(2307), - [sym_option_propagation_expression] = STATE(2307), - [sym_result_propagation_expression] = STATE(2307), - [sym_anon_struct_value_expression] = STATE(2380), - [sym_go_expression] = STATE(2307), - [sym_spawn_expression] = STATE(2307), - [sym_parenthesized_expression] = STATE(2307), - [sym_call_expression] = STATE(2307), - [sym_type_initializer] = STATE(2380), - [sym_function_literal] = STATE(2307), - [sym_reference_expression] = STATE(2311), - [sym_type_reference_expression] = STATE(3541), - [sym_unary_expression] = STATE(2307), - [sym_receive_expression] = STATE(2307), - [sym_binary_expression] = STATE(2307), - [sym_as_type_cast_expression] = STATE(2307), - [sym__max_group] = STATE(2307), - [sym_literal] = STATE(2292), - [sym_map_init_expression] = STATE(2380), - [sym_array_creation] = STATE(2307), - [sym_fixed_array_creation] = STATE(2307), - [sym_selector_expression] = STATE(2307), - [sym_index_expression] = STATE(2307), - [sym_slice_expression] = STATE(2307), - [sym_if_expression] = STATE(2380), - [sym_compile_time_if_expression] = STATE(2380), - [sym_is_expression] = STATE(2307), - [sym_in_expression] = STATE(2307), - [sym_enum_fetch] = STATE(2307), - [sym_match_expression] = STATE(2380), - [sym_select_expression] = STATE(2380), - [sym_lock_expression] = STATE(2380), - [sym_unsafe_expression] = STATE(2380), - [sym_sql_expression] = STATE(2380), - [sym_c_string_literal] = STATE(2308), - [sym_raw_string_literal] = STATE(2308), - [sym_interpreted_string_literal] = STATE(2308), - [sym_mutability_modifiers] = STATE(824), - [sym_mutable_expression] = STATE(3922), - [sym_expression_list] = STATE(4400), - [sym_plain_type] = STATE(4297), - [sym__plain_type_without_special] = STATE(2302), - [sym_anon_struct_type] = STATE(2303), - [sym_multi_return_type] = STATE(2302), - [sym_result_type] = STATE(2302), - [sym_option_type] = STATE(2302), - [sym_qualified_type] = STATE(3541), - [sym_fixed_array_type] = STATE(2303), - [sym_array_type] = STATE(2303), - [sym_pointer_type] = STATE(2303), - [sym_wrong_pointer_type] = STATE(2303), - [sym_map_type] = STATE(2303), - [sym_channel_type] = STATE(2303), - [sym_shared_type] = STATE(2303), - [sym_thread_type] = STATE(2303), - [sym_atomic_type] = STATE(2303), - [sym_generic_type] = STATE(2303), - [sym_function_type] = STATE(2303), - [sym_identifier] = ACTIONS(1807), - [anon_sym_SLASH_SLASH] = ACTIONS(3), - [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1428), - [anon_sym_LBRACE] = ACTIONS(2221), - [anon_sym_LPAREN] = ACTIONS(1432), - [anon_sym_fn] = ACTIONS(1434), - [anon_sym_PLUS] = ACTIONS(1811), - [anon_sym_DASH] = ACTIONS(1811), - [anon_sym_STAR] = ACTIONS(1813), - [anon_sym_struct] = ACTIONS(1440), - [anon_sym_mut] = ACTIONS(41), - [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(1815), - [anon_sym_go] = ACTIONS(1817), - [anon_sym_spawn] = ACTIONS(1819), - [anon_sym_json_DOTdecode] = ACTIONS(1448), - [anon_sym_LBRACK2] = ACTIONS(1821), - [anon_sym_TILDE] = ACTIONS(1811), - [anon_sym_CARET] = ACTIONS(1811), - [anon_sym_AMP] = ACTIONS(1823), - [anon_sym_LT_DASH] = ACTIONS(1825), - [sym_none] = ACTIONS(1456), - [sym_true] = ACTIONS(1456), - [sym_false] = ACTIONS(1456), - [sym_nil] = ACTIONS(1456), - [anon_sym_if] = ACTIONS(1827), - [anon_sym_DOLLARif] = ACTIONS(1460), - [anon_sym_match] = ACTIONS(1462), - [anon_sym_select] = ACTIONS(1829), - [anon_sym_lock] = ACTIONS(1831), - [anon_sym_rlock] = ACTIONS(1831), - [anon_sym_unsafe] = ACTIONS(1833), - [anon_sym_sql] = ACTIONS(1470), - [sym_int_literal] = ACTIONS(1456), - [sym_float_literal] = ACTIONS(1472), - [sym_rune_literal] = ACTIONS(1472), - [sym_pseudo_compile_time_identifier] = ACTIONS(1474), - [anon_sym_shared] = ACTIONS(83), - [anon_sym_map_LBRACK] = ACTIONS(85), - [anon_sym_chan] = ACTIONS(87), - [anon_sym_thread] = ACTIONS(89), - [anon_sym_atomic] = ACTIONS(91), - [sym___double_quote] = ACTIONS(1478), - [sym___single_quote] = ACTIONS(1480), - [sym___c_double_quote] = ACTIONS(1482), - [sym___c_single_quote] = ACTIONS(1484), - [sym___r_double_quote] = ACTIONS(1486), - [sym___r_single_quote] = ACTIONS(1488), - }, - [346] = { - [sym_line_comment] = STATE(346), - [sym_block_comment] = STATE(346), - [ts_builtin_sym_end] = ACTIONS(2223), - [sym_identifier] = ACTIONS(2225), - [anon_sym_LF] = ACTIONS(2225), - [anon_sym_CR] = ACTIONS(2225), - [anon_sym_CR_LF] = ACTIONS(2225), - [anon_sym_SLASH_SLASH] = ACTIONS(497), - [anon_sym_SLASH_STAR] = ACTIONS(499), - [anon_sym_DOT] = ACTIONS(2225), - [anon_sym_as] = ACTIONS(2225), - [anon_sym_LBRACE] = ACTIONS(2225), - [anon_sym_COMMA] = ACTIONS(2225), - [anon_sym_const] = ACTIONS(2225), - [anon_sym_LPAREN] = ACTIONS(2225), - [anon_sym_EQ] = ACTIONS(2225), - [anon_sym___global] = ACTIONS(2225), - [anon_sym_type] = ACTIONS(2225), - [anon_sym_PIPE] = ACTIONS(2225), - [anon_sym_fn] = ACTIONS(2225), - [anon_sym_PLUS] = ACTIONS(2225), - [anon_sym_DASH] = ACTIONS(2225), - [anon_sym_STAR] = ACTIONS(2225), - [anon_sym_SLASH] = ACTIONS(2225), - [anon_sym_PERCENT] = ACTIONS(2225), - [anon_sym_LT] = ACTIONS(2225), - [anon_sym_GT] = ACTIONS(2225), - [anon_sym_EQ_EQ] = ACTIONS(2225), - [anon_sym_BANG_EQ] = ACTIONS(2225), - [anon_sym_LT_EQ] = ACTIONS(2225), - [anon_sym_GT_EQ] = ACTIONS(2225), - [anon_sym_LBRACK] = ACTIONS(2223), - [anon_sym_struct] = ACTIONS(2225), - [anon_sym_union] = ACTIONS(2225), - [anon_sym_pub] = ACTIONS(2225), - [anon_sym_mut] = ACTIONS(2225), - [anon_sym_enum] = ACTIONS(2225), - [anon_sym_interface] = ACTIONS(2225), - [anon_sym_PLUS_PLUS] = ACTIONS(2225), - [anon_sym_DASH_DASH] = ACTIONS(2225), - [anon_sym_QMARK] = ACTIONS(2225), - [anon_sym_BANG] = ACTIONS(2225), - [anon_sym_go] = ACTIONS(2225), - [anon_sym_spawn] = ACTIONS(2225), - [anon_sym_json_DOTdecode] = ACTIONS(2225), - [anon_sym_LBRACK2] = ACTIONS(2225), - [anon_sym_TILDE] = ACTIONS(2225), - [anon_sym_CARET] = ACTIONS(2225), - [anon_sym_AMP] = ACTIONS(2225), - [anon_sym_LT_DASH] = ACTIONS(2225), - [anon_sym_LT_LT] = ACTIONS(2225), - [anon_sym_GT_GT] = ACTIONS(2225), - [anon_sym_GT_GT_GT] = ACTIONS(2225), - [anon_sym_AMP_CARET] = ACTIONS(2225), - [anon_sym_AMP_AMP] = ACTIONS(2225), - [anon_sym_PIPE_PIPE] = ACTIONS(2225), - [anon_sym_or] = ACTIONS(2225), - [sym_none] = ACTIONS(2225), - [sym_true] = ACTIONS(2225), - [sym_false] = ACTIONS(2225), - [sym_nil] = ACTIONS(2225), - [anon_sym_QMARK_DOT] = ACTIONS(2225), - [anon_sym_POUND_LBRACK] = ACTIONS(2225), - [anon_sym_if] = ACTIONS(2225), - [anon_sym_DOLLARif] = ACTIONS(2225), - [anon_sym_is] = ACTIONS(2225), - [anon_sym_BANGis] = ACTIONS(2225), - [anon_sym_in] = ACTIONS(2225), - [anon_sym_BANGin] = ACTIONS(2225), - [anon_sym_match] = ACTIONS(2225), - [anon_sym_select] = ACTIONS(2225), - [anon_sym_STAR_EQ] = ACTIONS(2225), - [anon_sym_SLASH_EQ] = ACTIONS(2225), - [anon_sym_PERCENT_EQ] = ACTIONS(2225), - [anon_sym_LT_LT_EQ] = ACTIONS(2225), - [anon_sym_GT_GT_EQ] = ACTIONS(2225), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(2225), - [anon_sym_AMP_EQ] = ACTIONS(2225), - [anon_sym_AMP_CARET_EQ] = ACTIONS(2225), - [anon_sym_PLUS_EQ] = ACTIONS(2225), - [anon_sym_DASH_EQ] = ACTIONS(2225), - [anon_sym_PIPE_EQ] = ACTIONS(2225), - [anon_sym_CARET_EQ] = ACTIONS(2225), - [anon_sym_COLON_EQ] = ACTIONS(2225), - [anon_sym_lock] = ACTIONS(2225), - [anon_sym_rlock] = ACTIONS(2225), - [anon_sym_unsafe] = ACTIONS(2225), - [anon_sym_sql] = ACTIONS(2225), - [sym_int_literal] = ACTIONS(2225), - [sym_float_literal] = ACTIONS(2225), - [sym_rune_literal] = ACTIONS(2225), - [sym_pseudo_compile_time_identifier] = ACTIONS(2225), - [anon_sym_shared] = ACTIONS(2225), - [anon_sym_map_LBRACK] = ACTIONS(2225), - [anon_sym_chan] = ACTIONS(2225), - [anon_sym_thread] = ACTIONS(2225), - [anon_sym_atomic] = ACTIONS(2225), - [anon_sym_assert] = ACTIONS(2225), - [anon_sym_defer] = ACTIONS(2225), - [anon_sym_goto] = ACTIONS(2225), - [anon_sym_break] = ACTIONS(2225), - [anon_sym_continue] = ACTIONS(2225), - [anon_sym_return] = ACTIONS(2225), - [anon_sym_DOLLARfor] = ACTIONS(2225), - [anon_sym_for] = ACTIONS(2225), - [anon_sym_POUND] = ACTIONS(2225), - [anon_sym_asm] = ACTIONS(2225), - [anon_sym_AT_LBRACK] = ACTIONS(2225), - [sym___double_quote] = ACTIONS(2225), - [sym___single_quote] = ACTIONS(2225), - [sym___c_double_quote] = ACTIONS(2225), - [sym___c_single_quote] = ACTIONS(2225), - [sym___r_double_quote] = ACTIONS(2225), - [sym___r_single_quote] = ACTIONS(2225), - }, - [347] = { - [sym_line_comment] = STATE(347), - [sym_block_comment] = STATE(347), [ts_builtin_sym_end] = ACTIONS(2227), [sym_identifier] = ACTIONS(2229), [anon_sym_LF] = ACTIONS(2229), @@ -63168,9 +62838,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym___r_double_quote] = ACTIONS(2229), [sym___r_single_quote] = ACTIONS(2229), }, - [348] = { - [sym_line_comment] = STATE(348), - [sym_block_comment] = STATE(348), + [345] = { + [sym_line_comment] = STATE(345), + [sym_block_comment] = STATE(345), [ts_builtin_sym_end] = ACTIONS(2231), [sym_identifier] = ACTIONS(2233), [anon_sym_LF] = ACTIONS(2233), @@ -63284,1981 +62954,1169 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym___r_double_quote] = ACTIONS(2233), [sym___r_single_quote] = ACTIONS(2233), }, - [349] = { - [sym_line_comment] = STATE(349), - [sym_block_comment] = STATE(349), - [sym__expression] = STATE(1268), - [sym__expression_without_blocks] = STATE(1312), - [sym__expression_with_blocks] = STATE(1312), - [sym_inc_expression] = STATE(1313), - [sym_dec_expression] = STATE(1313), - [sym_or_block_expression] = STATE(1313), - [sym_option_propagation_expression] = STATE(1313), - [sym_result_propagation_expression] = STATE(1313), - [sym_anon_struct_value_expression] = STATE(1314), - [sym_go_expression] = STATE(1313), - [sym_spawn_expression] = STATE(1313), - [sym_parenthesized_expression] = STATE(1313), - [sym_call_expression] = STATE(1313), - [sym_type_initializer] = STATE(1314), - [sym_function_literal] = STATE(1313), - [sym_reference_expression] = STATE(1394), - [sym_type_reference_expression] = STATE(3541), - [sym_unary_expression] = STATE(1313), - [sym_receive_expression] = STATE(1313), - [sym_binary_expression] = STATE(1313), - [sym_as_type_cast_expression] = STATE(1313), - [sym__max_group] = STATE(1313), - [sym_literal] = STATE(1308), - [sym_map_init_expression] = STATE(1314), - [sym_array_creation] = STATE(1313), - [sym_fixed_array_creation] = STATE(1313), - [sym_selector_expression] = STATE(1393), - [sym_index_expression] = STATE(1313), - [sym_slice_expression] = STATE(1313), - [sym_if_expression] = STATE(1314), - [sym_compile_time_if_expression] = STATE(1314), - [sym_is_expression] = STATE(1313), - [sym_in_expression] = STATE(1313), - [sym_enum_fetch] = STATE(1313), - [sym_match_expression] = STATE(1314), - [sym_select_expression] = STATE(1314), - [sym_lock_expression] = STATE(1314), - [sym_unsafe_expression] = STATE(1314), - [sym_sql_expression] = STATE(1314), - [sym_c_string_literal] = STATE(1286), - [sym_raw_string_literal] = STATE(1286), - [sym_interpreted_string_literal] = STATE(1286), - [sym_mutability_modifiers] = STATE(699), - [sym_plain_type] = STATE(4192), - [sym__plain_type_without_special] = STATE(2302), - [sym_anon_struct_type] = STATE(2303), - [sym_multi_return_type] = STATE(2302), - [sym_result_type] = STATE(2302), - [sym_option_type] = STATE(2302), - [sym_qualified_type] = STATE(3541), - [sym_fixed_array_type] = STATE(2303), - [sym_array_type] = STATE(2303), - [sym_pointer_type] = STATE(2303), - [sym_wrong_pointer_type] = STATE(2303), - [sym_map_type] = STATE(2303), - [sym_channel_type] = STATE(2303), - [sym_shared_type] = STATE(2303), - [sym_thread_type] = STATE(2303), - [sym_atomic_type] = STATE(2303), - [sym_generic_type] = STATE(2303), - [sym_function_type] = STATE(2303), - [aux_sym__array_repeat1] = STATE(344), - [sym_identifier] = ACTIONS(1354), + [346] = { + [sym_line_comment] = STATE(346), + [sym_block_comment] = STATE(346), + [sym__expression] = STATE(953), + [sym__expression_without_blocks] = STATE(1086), + [sym__expression_with_blocks] = STATE(1086), + [sym_inc_expression] = STATE(1088), + [sym_dec_expression] = STATE(1088), + [sym_or_block_expression] = STATE(1088), + [sym_option_propagation_expression] = STATE(1088), + [sym_result_propagation_expression] = STATE(1088), + [sym_anon_struct_value_expression] = STATE(1025), + [sym_go_expression] = STATE(1088), + [sym_spawn_expression] = STATE(1088), + [sym_parenthesized_expression] = STATE(1088), + [sym_call_expression] = STATE(1088), + [sym_type_initializer] = STATE(1025), + [sym_function_literal] = STATE(1088), + [sym_reference_expression] = STATE(1024), + [sym_type_reference_expression] = STATE(3460), + [sym_unary_expression] = STATE(1088), + [sym_receive_expression] = STATE(1088), + [sym_binary_expression] = STATE(1088), + [sym_as_type_cast_expression] = STATE(1088), + [sym__max_group] = STATE(1088), + [sym_literal] = STATE(1078), + [sym_map_init_expression] = STATE(1025), + [sym_array_creation] = STATE(1088), + [sym_fixed_array_creation] = STATE(1088), + [sym_selector_expression] = STATE(1088), + [sym_index_expression] = STATE(1088), + [sym_slice_expression] = STATE(1088), + [sym_if_expression] = STATE(1025), + [sym_compile_time_if_expression] = STATE(1025), + [sym_is_expression] = STATE(1088), + [sym_in_expression] = STATE(1088), + [sym_enum_fetch] = STATE(1088), + [sym_match_expression] = STATE(1025), + [sym_select_expression] = STATE(1025), + [sym_lock_expression] = STATE(1025), + [sym_unsafe_expression] = STATE(1025), + [sym_sql_expression] = STATE(1025), + [sym_c_string_literal] = STATE(993), + [sym_raw_string_literal] = STATE(993), + [sym_interpreted_string_literal] = STATE(993), + [sym_mutability_modifiers] = STATE(855), + [sym_mutable_expression] = STATE(1413), + [sym_expression_list] = STATE(1486), + [sym_plain_type] = STATE(4090), + [sym__plain_type_without_special] = STATE(2360), + [sym_anon_struct_type] = STATE(2362), + [sym_multi_return_type] = STATE(2360), + [sym_result_type] = STATE(2360), + [sym_option_type] = STATE(2360), + [sym_qualified_type] = STATE(3460), + [sym_fixed_array_type] = STATE(2362), + [sym_array_type] = STATE(2362), + [sym_pointer_type] = STATE(2362), + [sym_wrong_pointer_type] = STATE(2362), + [sym_map_type] = STATE(2362), + [sym_channel_type] = STATE(2362), + [sym_shared_type] = STATE(2362), + [sym_thread_type] = STATE(2362), + [sym_atomic_type] = STATE(2362), + [sym_generic_type] = STATE(2362), + [sym_function_type] = STATE(2362), + [sym_identifier] = ACTIONS(493), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1356), - [anon_sym_LBRACE] = ACTIONS(1358), - [anon_sym_LPAREN] = ACTIONS(1360), - [anon_sym_fn] = ACTIONS(1362), - [anon_sym_PLUS] = ACTIONS(1364), - [anon_sym_DASH] = ACTIONS(1364), - [anon_sym_STAR] = ACTIONS(1366), - [anon_sym_RBRACK] = ACTIONS(2235), - [anon_sym_struct] = ACTIONS(1370), + [anon_sym_DOT] = ACTIONS(501), + [anon_sym_LBRACE] = ACTIONS(2235), + [anon_sym_LPAREN] = ACTIONS(2237), + [anon_sym_fn] = ACTIONS(507), + [anon_sym_PLUS] = ACTIONS(2239), + [anon_sym_DASH] = ACTIONS(2239), + [anon_sym_STAR] = ACTIONS(2241), + [anon_sym_struct] = ACTIONS(513), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(1372), - [anon_sym_go] = ACTIONS(1374), - [anon_sym_spawn] = ACTIONS(1376), - [anon_sym_json_DOTdecode] = ACTIONS(1378), - [anon_sym_LBRACK2] = ACTIONS(1380), - [anon_sym_TILDE] = ACTIONS(1364), - [anon_sym_CARET] = ACTIONS(1364), - [anon_sym_AMP] = ACTIONS(1382), - [anon_sym_LT_DASH] = ACTIONS(1384), - [sym_none] = ACTIONS(1386), - [sym_true] = ACTIONS(1386), - [sym_false] = ACTIONS(1386), - [sym_nil] = ACTIONS(1386), - [anon_sym_if] = ACTIONS(1877), - [anon_sym_DOLLARif] = ACTIONS(1390), - [anon_sym_match] = ACTIONS(1392), - [anon_sym_select] = ACTIONS(1394), - [anon_sym_lock] = ACTIONS(1396), - [anon_sym_rlock] = ACTIONS(1396), - [anon_sym_unsafe] = ACTIONS(1883), - [anon_sym_sql] = ACTIONS(1400), - [sym_int_literal] = ACTIONS(1402), - [sym_float_literal] = ACTIONS(1404), - [sym_rune_literal] = ACTIONS(1404), - [sym_pseudo_compile_time_identifier] = ACTIONS(1406), + [anon_sym_BANG] = ACTIONS(2243), + [anon_sym_go] = ACTIONS(519), + [anon_sym_spawn] = ACTIONS(521), + [anon_sym_json_DOTdecode] = ACTIONS(2245), + [anon_sym_LBRACK2] = ACTIONS(2247), + [anon_sym_TILDE] = ACTIONS(2239), + [anon_sym_CARET] = ACTIONS(2239), + [anon_sym_AMP] = ACTIONS(2249), + [anon_sym_LT_DASH] = ACTIONS(2251), + [sym_none] = ACTIONS(531), + [sym_true] = ACTIONS(531), + [sym_false] = ACTIONS(531), + [sym_nil] = ACTIONS(531), + [anon_sym_if] = ACTIONS(533), + [anon_sym_DOLLARif] = ACTIONS(535), + [anon_sym_match] = ACTIONS(537), + [anon_sym_select] = ACTIONS(539), + [anon_sym_lock] = ACTIONS(541), + [anon_sym_rlock] = ACTIONS(541), + [anon_sym_unsafe] = ACTIONS(543), + [anon_sym_sql] = ACTIONS(545), + [sym_int_literal] = ACTIONS(531), + [sym_float_literal] = ACTIONS(2253), + [sym_rune_literal] = ACTIONS(2253), + [sym_pseudo_compile_time_identifier] = ACTIONS(547), [anon_sym_shared] = ACTIONS(83), [anon_sym_map_LBRACK] = ACTIONS(85), [anon_sym_chan] = ACTIONS(87), [anon_sym_thread] = ACTIONS(89), [anon_sym_atomic] = ACTIONS(91), - [sym___double_quote] = ACTIONS(1408), - [sym___single_quote] = ACTIONS(1410), - [sym___c_double_quote] = ACTIONS(1412), - [sym___c_single_quote] = ACTIONS(1414), - [sym___r_double_quote] = ACTIONS(1416), - [sym___r_single_quote] = ACTIONS(1418), + [sym___double_quote] = ACTIONS(2255), + [sym___single_quote] = ACTIONS(2257), + [sym___c_double_quote] = ACTIONS(2259), + [sym___c_single_quote] = ACTIONS(2261), + [sym___r_double_quote] = ACTIONS(2263), + [sym___r_single_quote] = ACTIONS(2265), }, - [350] = { - [sym_line_comment] = STATE(350), - [sym_block_comment] = STATE(350), - [ts_builtin_sym_end] = ACTIONS(2237), - [sym_identifier] = ACTIONS(2239), - [anon_sym_LF] = ACTIONS(2239), - [anon_sym_CR] = ACTIONS(2239), - [anon_sym_CR_LF] = ACTIONS(2239), - [anon_sym_SLASH_SLASH] = ACTIONS(497), - [anon_sym_SLASH_STAR] = ACTIONS(499), - [anon_sym_DOT] = ACTIONS(2239), - [anon_sym_as] = ACTIONS(2239), - [anon_sym_LBRACE] = ACTIONS(2239), - [anon_sym_COMMA] = ACTIONS(2239), - [anon_sym_const] = ACTIONS(2239), - [anon_sym_LPAREN] = ACTIONS(2239), - [anon_sym_EQ] = ACTIONS(2239), - [anon_sym___global] = ACTIONS(2239), - [anon_sym_type] = ACTIONS(2239), - [anon_sym_PIPE] = ACTIONS(2239), - [anon_sym_fn] = ACTIONS(2239), + [347] = { + [sym_line_comment] = STATE(347), + [sym_block_comment] = STATE(347), + [sym__expression] = STATE(953), + [sym__expression_without_blocks] = STATE(1086), + [sym__expression_with_blocks] = STATE(1086), + [sym_inc_expression] = STATE(1088), + [sym_dec_expression] = STATE(1088), + [sym_or_block_expression] = STATE(1088), + [sym_option_propagation_expression] = STATE(1088), + [sym_result_propagation_expression] = STATE(1088), + [sym_anon_struct_value_expression] = STATE(1025), + [sym_go_expression] = STATE(1088), + [sym_spawn_expression] = STATE(1088), + [sym_parenthesized_expression] = STATE(1088), + [sym_call_expression] = STATE(1088), + [sym_type_initializer] = STATE(1025), + [sym_function_literal] = STATE(1088), + [sym_reference_expression] = STATE(1024), + [sym_type_reference_expression] = STATE(3460), + [sym_unary_expression] = STATE(1088), + [sym_receive_expression] = STATE(1088), + [sym_binary_expression] = STATE(1088), + [sym_as_type_cast_expression] = STATE(1088), + [sym__max_group] = STATE(1088), + [sym_literal] = STATE(1078), + [sym_map_init_expression] = STATE(1025), + [sym_array_creation] = STATE(1088), + [sym_fixed_array_creation] = STATE(1088), + [sym_selector_expression] = STATE(1088), + [sym_index_expression] = STATE(1088), + [sym_slice_expression] = STATE(1088), + [sym_if_expression] = STATE(1025), + [sym_compile_time_if_expression] = STATE(1025), + [sym_is_expression] = STATE(1088), + [sym_in_expression] = STATE(1088), + [sym_enum_fetch] = STATE(1088), + [sym_match_expression] = STATE(1025), + [sym_select_expression] = STATE(1025), + [sym_lock_expression] = STATE(1025), + [sym_unsafe_expression] = STATE(1025), + [sym_sql_expression] = STATE(1025), + [sym_c_string_literal] = STATE(993), + [sym_raw_string_literal] = STATE(993), + [sym_interpreted_string_literal] = STATE(993), + [sym_mutability_modifiers] = STATE(855), + [sym_mutable_expression] = STATE(1413), + [sym_expression_list] = STATE(1487), + [sym_plain_type] = STATE(4090), + [sym__plain_type_without_special] = STATE(2360), + [sym_anon_struct_type] = STATE(2362), + [sym_multi_return_type] = STATE(2360), + [sym_result_type] = STATE(2360), + [sym_option_type] = STATE(2360), + [sym_qualified_type] = STATE(3460), + [sym_fixed_array_type] = STATE(2362), + [sym_array_type] = STATE(2362), + [sym_pointer_type] = STATE(2362), + [sym_wrong_pointer_type] = STATE(2362), + [sym_map_type] = STATE(2362), + [sym_channel_type] = STATE(2362), + [sym_shared_type] = STATE(2362), + [sym_thread_type] = STATE(2362), + [sym_atomic_type] = STATE(2362), + [sym_generic_type] = STATE(2362), + [sym_function_type] = STATE(2362), + [sym_identifier] = ACTIONS(493), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(501), + [anon_sym_LBRACE] = ACTIONS(2235), + [anon_sym_LPAREN] = ACTIONS(2237), + [anon_sym_fn] = ACTIONS(507), [anon_sym_PLUS] = ACTIONS(2239), [anon_sym_DASH] = ACTIONS(2239), - [anon_sym_STAR] = ACTIONS(2239), - [anon_sym_SLASH] = ACTIONS(2239), - [anon_sym_PERCENT] = ACTIONS(2239), - [anon_sym_LT] = ACTIONS(2239), - [anon_sym_GT] = ACTIONS(2239), - [anon_sym_EQ_EQ] = ACTIONS(2239), - [anon_sym_BANG_EQ] = ACTIONS(2239), - [anon_sym_LT_EQ] = ACTIONS(2239), - [anon_sym_GT_EQ] = ACTIONS(2239), - [anon_sym_LBRACK] = ACTIONS(2237), - [anon_sym_struct] = ACTIONS(2239), - [anon_sym_union] = ACTIONS(2239), - [anon_sym_pub] = ACTIONS(2239), - [anon_sym_mut] = ACTIONS(2239), - [anon_sym_enum] = ACTIONS(2239), - [anon_sym_interface] = ACTIONS(2239), - [anon_sym_PLUS_PLUS] = ACTIONS(2239), - [anon_sym_DASH_DASH] = ACTIONS(2239), - [anon_sym_QMARK] = ACTIONS(2239), - [anon_sym_BANG] = ACTIONS(2239), - [anon_sym_go] = ACTIONS(2239), - [anon_sym_spawn] = ACTIONS(2239), - [anon_sym_json_DOTdecode] = ACTIONS(2239), - [anon_sym_LBRACK2] = ACTIONS(2239), - [anon_sym_TILDE] = ACTIONS(2239), - [anon_sym_CARET] = ACTIONS(2239), - [anon_sym_AMP] = ACTIONS(2239), - [anon_sym_LT_DASH] = ACTIONS(2239), - [anon_sym_LT_LT] = ACTIONS(2239), - [anon_sym_GT_GT] = ACTIONS(2239), - [anon_sym_GT_GT_GT] = ACTIONS(2239), - [anon_sym_AMP_CARET] = ACTIONS(2239), - [anon_sym_AMP_AMP] = ACTIONS(2239), - [anon_sym_PIPE_PIPE] = ACTIONS(2239), - [anon_sym_or] = ACTIONS(2239), - [sym_none] = ACTIONS(2239), - [sym_true] = ACTIONS(2239), - [sym_false] = ACTIONS(2239), - [sym_nil] = ACTIONS(2239), - [anon_sym_QMARK_DOT] = ACTIONS(2239), - [anon_sym_POUND_LBRACK] = ACTIONS(2239), - [anon_sym_if] = ACTIONS(2239), - [anon_sym_DOLLARif] = ACTIONS(2239), - [anon_sym_is] = ACTIONS(2239), - [anon_sym_BANGis] = ACTIONS(2239), - [anon_sym_in] = ACTIONS(2239), - [anon_sym_BANGin] = ACTIONS(2239), - [anon_sym_match] = ACTIONS(2239), - [anon_sym_select] = ACTIONS(2239), - [anon_sym_STAR_EQ] = ACTIONS(2239), - [anon_sym_SLASH_EQ] = ACTIONS(2239), - [anon_sym_PERCENT_EQ] = ACTIONS(2239), - [anon_sym_LT_LT_EQ] = ACTIONS(2239), - [anon_sym_GT_GT_EQ] = ACTIONS(2239), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(2239), - [anon_sym_AMP_EQ] = ACTIONS(2239), - [anon_sym_AMP_CARET_EQ] = ACTIONS(2239), - [anon_sym_PLUS_EQ] = ACTIONS(2239), - [anon_sym_DASH_EQ] = ACTIONS(2239), - [anon_sym_PIPE_EQ] = ACTIONS(2239), - [anon_sym_CARET_EQ] = ACTIONS(2239), - [anon_sym_COLON_EQ] = ACTIONS(2239), - [anon_sym_lock] = ACTIONS(2239), - [anon_sym_rlock] = ACTIONS(2239), - [anon_sym_unsafe] = ACTIONS(2239), - [anon_sym_sql] = ACTIONS(2239), - [sym_int_literal] = ACTIONS(2239), - [sym_float_literal] = ACTIONS(2239), - [sym_rune_literal] = ACTIONS(2239), - [sym_pseudo_compile_time_identifier] = ACTIONS(2239), - [anon_sym_shared] = ACTIONS(2239), - [anon_sym_map_LBRACK] = ACTIONS(2239), - [anon_sym_chan] = ACTIONS(2239), - [anon_sym_thread] = ACTIONS(2239), - [anon_sym_atomic] = ACTIONS(2239), - [anon_sym_assert] = ACTIONS(2239), - [anon_sym_defer] = ACTIONS(2239), - [anon_sym_goto] = ACTIONS(2239), - [anon_sym_break] = ACTIONS(2239), - [anon_sym_continue] = ACTIONS(2239), - [anon_sym_return] = ACTIONS(2239), - [anon_sym_DOLLARfor] = ACTIONS(2239), - [anon_sym_for] = ACTIONS(2239), - [anon_sym_POUND] = ACTIONS(2239), - [anon_sym_asm] = ACTIONS(2239), - [anon_sym_AT_LBRACK] = ACTIONS(2239), - [sym___double_quote] = ACTIONS(2239), - [sym___single_quote] = ACTIONS(2239), - [sym___c_double_quote] = ACTIONS(2239), - [sym___c_single_quote] = ACTIONS(2239), - [sym___r_double_quote] = ACTIONS(2239), - [sym___r_single_quote] = ACTIONS(2239), - }, - [351] = { - [sym_line_comment] = STATE(351), - [sym_block_comment] = STATE(351), - [ts_builtin_sym_end] = ACTIONS(2241), - [sym_identifier] = ACTIONS(2243), - [anon_sym_LF] = ACTIONS(2243), - [anon_sym_CR] = ACTIONS(2243), - [anon_sym_CR_LF] = ACTIONS(2243), - [anon_sym_SLASH_SLASH] = ACTIONS(497), - [anon_sym_SLASH_STAR] = ACTIONS(499), - [anon_sym_DOT] = ACTIONS(2243), - [anon_sym_as] = ACTIONS(2243), - [anon_sym_LBRACE] = ACTIONS(2243), - [anon_sym_COMMA] = ACTIONS(2243), - [anon_sym_const] = ACTIONS(2243), - [anon_sym_LPAREN] = ACTIONS(2243), - [anon_sym_EQ] = ACTIONS(2243), - [anon_sym___global] = ACTIONS(2243), - [anon_sym_type] = ACTIONS(2243), - [anon_sym_PIPE] = ACTIONS(2243), - [anon_sym_fn] = ACTIONS(2243), - [anon_sym_PLUS] = ACTIONS(2243), - [anon_sym_DASH] = ACTIONS(2243), - [anon_sym_STAR] = ACTIONS(2243), - [anon_sym_SLASH] = ACTIONS(2243), - [anon_sym_PERCENT] = ACTIONS(2243), - [anon_sym_LT] = ACTIONS(2243), - [anon_sym_GT] = ACTIONS(2243), - [anon_sym_EQ_EQ] = ACTIONS(2243), - [anon_sym_BANG_EQ] = ACTIONS(2243), - [anon_sym_LT_EQ] = ACTIONS(2243), - [anon_sym_GT_EQ] = ACTIONS(2243), - [anon_sym_LBRACK] = ACTIONS(2241), - [anon_sym_struct] = ACTIONS(2243), - [anon_sym_union] = ACTIONS(2243), - [anon_sym_pub] = ACTIONS(2243), - [anon_sym_mut] = ACTIONS(2243), - [anon_sym_enum] = ACTIONS(2243), - [anon_sym_interface] = ACTIONS(2243), - [anon_sym_PLUS_PLUS] = ACTIONS(2243), - [anon_sym_DASH_DASH] = ACTIONS(2243), - [anon_sym_QMARK] = ACTIONS(2243), + [anon_sym_STAR] = ACTIONS(2241), + [anon_sym_struct] = ACTIONS(513), + [anon_sym_mut] = ACTIONS(41), + [anon_sym_QMARK] = ACTIONS(47), [anon_sym_BANG] = ACTIONS(2243), - [anon_sym_go] = ACTIONS(2243), - [anon_sym_spawn] = ACTIONS(2243), - [anon_sym_json_DOTdecode] = ACTIONS(2243), - [anon_sym_LBRACK2] = ACTIONS(2243), - [anon_sym_TILDE] = ACTIONS(2243), - [anon_sym_CARET] = ACTIONS(2243), - [anon_sym_AMP] = ACTIONS(2243), - [anon_sym_LT_DASH] = ACTIONS(2243), - [anon_sym_LT_LT] = ACTIONS(2243), - [anon_sym_GT_GT] = ACTIONS(2243), - [anon_sym_GT_GT_GT] = ACTIONS(2243), - [anon_sym_AMP_CARET] = ACTIONS(2243), - [anon_sym_AMP_AMP] = ACTIONS(2243), - [anon_sym_PIPE_PIPE] = ACTIONS(2243), - [anon_sym_or] = ACTIONS(2243), - [sym_none] = ACTIONS(2243), - [sym_true] = ACTIONS(2243), - [sym_false] = ACTIONS(2243), - [sym_nil] = ACTIONS(2243), - [anon_sym_QMARK_DOT] = ACTIONS(2243), - [anon_sym_POUND_LBRACK] = ACTIONS(2243), - [anon_sym_if] = ACTIONS(2243), - [anon_sym_DOLLARif] = ACTIONS(2243), - [anon_sym_is] = ACTIONS(2243), - [anon_sym_BANGis] = ACTIONS(2243), - [anon_sym_in] = ACTIONS(2243), - [anon_sym_BANGin] = ACTIONS(2243), - [anon_sym_match] = ACTIONS(2243), - [anon_sym_select] = ACTIONS(2243), - [anon_sym_STAR_EQ] = ACTIONS(2243), - [anon_sym_SLASH_EQ] = ACTIONS(2243), - [anon_sym_PERCENT_EQ] = ACTIONS(2243), - [anon_sym_LT_LT_EQ] = ACTIONS(2243), - [anon_sym_GT_GT_EQ] = ACTIONS(2243), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(2243), - [anon_sym_AMP_EQ] = ACTIONS(2243), - [anon_sym_AMP_CARET_EQ] = ACTIONS(2243), - [anon_sym_PLUS_EQ] = ACTIONS(2243), - [anon_sym_DASH_EQ] = ACTIONS(2243), - [anon_sym_PIPE_EQ] = ACTIONS(2243), - [anon_sym_CARET_EQ] = ACTIONS(2243), - [anon_sym_COLON_EQ] = ACTIONS(2243), - [anon_sym_lock] = ACTIONS(2243), - [anon_sym_rlock] = ACTIONS(2243), - [anon_sym_unsafe] = ACTIONS(2243), - [anon_sym_sql] = ACTIONS(2243), - [sym_int_literal] = ACTIONS(2243), - [sym_float_literal] = ACTIONS(2243), - [sym_rune_literal] = ACTIONS(2243), - [sym_pseudo_compile_time_identifier] = ACTIONS(2243), - [anon_sym_shared] = ACTIONS(2243), - [anon_sym_map_LBRACK] = ACTIONS(2243), - [anon_sym_chan] = ACTIONS(2243), - [anon_sym_thread] = ACTIONS(2243), - [anon_sym_atomic] = ACTIONS(2243), - [anon_sym_assert] = ACTIONS(2243), - [anon_sym_defer] = ACTIONS(2243), - [anon_sym_goto] = ACTIONS(2243), - [anon_sym_break] = ACTIONS(2243), - [anon_sym_continue] = ACTIONS(2243), - [anon_sym_return] = ACTIONS(2243), - [anon_sym_DOLLARfor] = ACTIONS(2243), - [anon_sym_for] = ACTIONS(2243), - [anon_sym_POUND] = ACTIONS(2243), - [anon_sym_asm] = ACTIONS(2243), - [anon_sym_AT_LBRACK] = ACTIONS(2243), - [sym___double_quote] = ACTIONS(2243), - [sym___single_quote] = ACTIONS(2243), - [sym___c_double_quote] = ACTIONS(2243), - [sym___c_single_quote] = ACTIONS(2243), - [sym___r_double_quote] = ACTIONS(2243), - [sym___r_single_quote] = ACTIONS(2243), - }, - [352] = { - [sym_line_comment] = STATE(352), - [sym_block_comment] = STATE(352), - [ts_builtin_sym_end] = ACTIONS(2245), - [sym_identifier] = ACTIONS(2247), - [anon_sym_LF] = ACTIONS(2247), - [anon_sym_CR] = ACTIONS(2247), - [anon_sym_CR_LF] = ACTIONS(2247), - [anon_sym_SLASH_SLASH] = ACTIONS(497), - [anon_sym_SLASH_STAR] = ACTIONS(499), - [anon_sym_DOT] = ACTIONS(2247), - [anon_sym_as] = ACTIONS(2247), - [anon_sym_LBRACE] = ACTIONS(2247), - [anon_sym_COMMA] = ACTIONS(2247), - [anon_sym_const] = ACTIONS(2247), - [anon_sym_LPAREN] = ACTIONS(2247), - [anon_sym_EQ] = ACTIONS(2247), - [anon_sym___global] = ACTIONS(2247), - [anon_sym_type] = ACTIONS(2247), - [anon_sym_PIPE] = ACTIONS(2247), - [anon_sym_fn] = ACTIONS(2247), - [anon_sym_PLUS] = ACTIONS(2247), - [anon_sym_DASH] = ACTIONS(2247), - [anon_sym_STAR] = ACTIONS(2247), - [anon_sym_SLASH] = ACTIONS(2247), - [anon_sym_PERCENT] = ACTIONS(2247), - [anon_sym_LT] = ACTIONS(2247), - [anon_sym_GT] = ACTIONS(2247), - [anon_sym_EQ_EQ] = ACTIONS(2247), - [anon_sym_BANG_EQ] = ACTIONS(2247), - [anon_sym_LT_EQ] = ACTIONS(2247), - [anon_sym_GT_EQ] = ACTIONS(2247), - [anon_sym_LBRACK] = ACTIONS(2245), - [anon_sym_struct] = ACTIONS(2247), - [anon_sym_union] = ACTIONS(2247), - [anon_sym_pub] = ACTIONS(2247), - [anon_sym_mut] = ACTIONS(2247), - [anon_sym_enum] = ACTIONS(2247), - [anon_sym_interface] = ACTIONS(2247), - [anon_sym_PLUS_PLUS] = ACTIONS(2247), - [anon_sym_DASH_DASH] = ACTIONS(2247), - [anon_sym_QMARK] = ACTIONS(2247), - [anon_sym_BANG] = ACTIONS(2247), - [anon_sym_go] = ACTIONS(2247), - [anon_sym_spawn] = ACTIONS(2247), - [anon_sym_json_DOTdecode] = ACTIONS(2247), + [anon_sym_go] = ACTIONS(519), + [anon_sym_spawn] = ACTIONS(521), + [anon_sym_json_DOTdecode] = ACTIONS(2245), [anon_sym_LBRACK2] = ACTIONS(2247), - [anon_sym_TILDE] = ACTIONS(2247), - [anon_sym_CARET] = ACTIONS(2247), - [anon_sym_AMP] = ACTIONS(2247), - [anon_sym_LT_DASH] = ACTIONS(2247), - [anon_sym_LT_LT] = ACTIONS(2247), - [anon_sym_GT_GT] = ACTIONS(2247), - [anon_sym_GT_GT_GT] = ACTIONS(2247), - [anon_sym_AMP_CARET] = ACTIONS(2247), - [anon_sym_AMP_AMP] = ACTIONS(2247), - [anon_sym_PIPE_PIPE] = ACTIONS(2247), - [anon_sym_or] = ACTIONS(2247), - [sym_none] = ACTIONS(2247), - [sym_true] = ACTIONS(2247), - [sym_false] = ACTIONS(2247), - [sym_nil] = ACTIONS(2247), - [anon_sym_QMARK_DOT] = ACTIONS(2247), - [anon_sym_POUND_LBRACK] = ACTIONS(2247), - [anon_sym_if] = ACTIONS(2247), - [anon_sym_DOLLARif] = ACTIONS(2247), - [anon_sym_is] = ACTIONS(2247), - [anon_sym_BANGis] = ACTIONS(2247), - [anon_sym_in] = ACTIONS(2247), - [anon_sym_BANGin] = ACTIONS(2247), - [anon_sym_match] = ACTIONS(2247), - [anon_sym_select] = ACTIONS(2247), - [anon_sym_STAR_EQ] = ACTIONS(2247), - [anon_sym_SLASH_EQ] = ACTIONS(2247), - [anon_sym_PERCENT_EQ] = ACTIONS(2247), - [anon_sym_LT_LT_EQ] = ACTIONS(2247), - [anon_sym_GT_GT_EQ] = ACTIONS(2247), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(2247), - [anon_sym_AMP_EQ] = ACTIONS(2247), - [anon_sym_AMP_CARET_EQ] = ACTIONS(2247), - [anon_sym_PLUS_EQ] = ACTIONS(2247), - [anon_sym_DASH_EQ] = ACTIONS(2247), - [anon_sym_PIPE_EQ] = ACTIONS(2247), - [anon_sym_CARET_EQ] = ACTIONS(2247), - [anon_sym_COLON_EQ] = ACTIONS(2247), - [anon_sym_lock] = ACTIONS(2247), - [anon_sym_rlock] = ACTIONS(2247), - [anon_sym_unsafe] = ACTIONS(2247), - [anon_sym_sql] = ACTIONS(2247), - [sym_int_literal] = ACTIONS(2247), - [sym_float_literal] = ACTIONS(2247), - [sym_rune_literal] = ACTIONS(2247), - [sym_pseudo_compile_time_identifier] = ACTIONS(2247), - [anon_sym_shared] = ACTIONS(2247), - [anon_sym_map_LBRACK] = ACTIONS(2247), - [anon_sym_chan] = ACTIONS(2247), - [anon_sym_thread] = ACTIONS(2247), - [anon_sym_atomic] = ACTIONS(2247), - [anon_sym_assert] = ACTIONS(2247), - [anon_sym_defer] = ACTIONS(2247), - [anon_sym_goto] = ACTIONS(2247), - [anon_sym_break] = ACTIONS(2247), - [anon_sym_continue] = ACTIONS(2247), - [anon_sym_return] = ACTIONS(2247), - [anon_sym_DOLLARfor] = ACTIONS(2247), - [anon_sym_for] = ACTIONS(2247), - [anon_sym_POUND] = ACTIONS(2247), - [anon_sym_asm] = ACTIONS(2247), - [anon_sym_AT_LBRACK] = ACTIONS(2247), - [sym___double_quote] = ACTIONS(2247), - [sym___single_quote] = ACTIONS(2247), - [sym___c_double_quote] = ACTIONS(2247), - [sym___c_single_quote] = ACTIONS(2247), - [sym___r_double_quote] = ACTIONS(2247), - [sym___r_single_quote] = ACTIONS(2247), - }, - [353] = { - [sym_line_comment] = STATE(353), - [sym_block_comment] = STATE(353), - [ts_builtin_sym_end] = ACTIONS(2249), - [sym_identifier] = ACTIONS(2251), - [anon_sym_LF] = ACTIONS(2251), - [anon_sym_CR] = ACTIONS(2251), - [anon_sym_CR_LF] = ACTIONS(2251), - [anon_sym_SLASH_SLASH] = ACTIONS(497), - [anon_sym_SLASH_STAR] = ACTIONS(499), - [anon_sym_DOT] = ACTIONS(2253), - [anon_sym_as] = ACTIONS(2253), - [anon_sym_LBRACE] = ACTIONS(2251), - [anon_sym_COMMA] = ACTIONS(2253), - [anon_sym_const] = ACTIONS(2251), - [anon_sym_LPAREN] = ACTIONS(2253), - [anon_sym_EQ] = ACTIONS(2253), - [anon_sym___global] = ACTIONS(2251), - [anon_sym_type] = ACTIONS(2251), - [anon_sym_PIPE] = ACTIONS(2253), - [anon_sym_fn] = ACTIONS(2251), - [anon_sym_PLUS] = ACTIONS(2253), - [anon_sym_DASH] = ACTIONS(2253), - [anon_sym_STAR] = ACTIONS(2253), - [anon_sym_SLASH] = ACTIONS(2253), - [anon_sym_PERCENT] = ACTIONS(2253), - [anon_sym_LT] = ACTIONS(2253), - [anon_sym_GT] = ACTIONS(2253), - [anon_sym_EQ_EQ] = ACTIONS(2253), - [anon_sym_BANG_EQ] = ACTIONS(2253), - [anon_sym_LT_EQ] = ACTIONS(2253), - [anon_sym_GT_EQ] = ACTIONS(2253), - [anon_sym_LBRACK] = ACTIONS(2256), - [anon_sym_struct] = ACTIONS(2251), - [anon_sym_union] = ACTIONS(2251), - [anon_sym_pub] = ACTIONS(2251), - [anon_sym_mut] = ACTIONS(2251), - [anon_sym_enum] = ACTIONS(2251), - [anon_sym_interface] = ACTIONS(2251), - [anon_sym_PLUS_PLUS] = ACTIONS(2253), - [anon_sym_DASH_DASH] = ACTIONS(2253), - [anon_sym_QMARK] = ACTIONS(2253), - [anon_sym_BANG] = ACTIONS(2253), - [anon_sym_go] = ACTIONS(2251), - [anon_sym_spawn] = ACTIONS(2251), - [anon_sym_json_DOTdecode] = ACTIONS(2251), - [anon_sym_LBRACK2] = ACTIONS(2253), - [anon_sym_TILDE] = ACTIONS(2251), - [anon_sym_CARET] = ACTIONS(2253), - [anon_sym_AMP] = ACTIONS(2253), + [anon_sym_TILDE] = ACTIONS(2239), + [anon_sym_CARET] = ACTIONS(2239), + [anon_sym_AMP] = ACTIONS(2249), [anon_sym_LT_DASH] = ACTIONS(2251), - [anon_sym_LT_LT] = ACTIONS(2253), - [anon_sym_GT_GT] = ACTIONS(2253), - [anon_sym_GT_GT_GT] = ACTIONS(2253), - [anon_sym_AMP_CARET] = ACTIONS(2253), - [anon_sym_AMP_AMP] = ACTIONS(2253), - [anon_sym_PIPE_PIPE] = ACTIONS(2253), - [anon_sym_or] = ACTIONS(2253), - [sym_none] = ACTIONS(2251), - [sym_true] = ACTIONS(2251), - [sym_false] = ACTIONS(2251), - [sym_nil] = ACTIONS(2251), - [anon_sym_QMARK_DOT] = ACTIONS(2253), - [anon_sym_POUND_LBRACK] = ACTIONS(2253), - [anon_sym_if] = ACTIONS(2251), - [anon_sym_DOLLARif] = ACTIONS(2251), - [anon_sym_is] = ACTIONS(2253), - [anon_sym_BANGis] = ACTIONS(2253), - [anon_sym_in] = ACTIONS(2253), - [anon_sym_BANGin] = ACTIONS(2253), - [anon_sym_match] = ACTIONS(2251), - [anon_sym_select] = ACTIONS(2251), - [anon_sym_STAR_EQ] = ACTIONS(2253), - [anon_sym_SLASH_EQ] = ACTIONS(2253), - [anon_sym_PERCENT_EQ] = ACTIONS(2253), - [anon_sym_LT_LT_EQ] = ACTIONS(2253), - [anon_sym_GT_GT_EQ] = ACTIONS(2253), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(2253), - [anon_sym_AMP_EQ] = ACTIONS(2253), - [anon_sym_AMP_CARET_EQ] = ACTIONS(2253), - [anon_sym_PLUS_EQ] = ACTIONS(2253), - [anon_sym_DASH_EQ] = ACTIONS(2253), - [anon_sym_PIPE_EQ] = ACTIONS(2253), - [anon_sym_CARET_EQ] = ACTIONS(2253), - [anon_sym_COLON_EQ] = ACTIONS(2253), - [anon_sym_lock] = ACTIONS(2251), - [anon_sym_rlock] = ACTIONS(2251), - [anon_sym_unsafe] = ACTIONS(2251), - [anon_sym_sql] = ACTIONS(2251), - [sym_int_literal] = ACTIONS(2251), - [sym_float_literal] = ACTIONS(2251), - [sym_rune_literal] = ACTIONS(2251), - [sym_pseudo_compile_time_identifier] = ACTIONS(2251), - [anon_sym_shared] = ACTIONS(2251), - [anon_sym_map_LBRACK] = ACTIONS(2251), - [anon_sym_chan] = ACTIONS(2251), - [anon_sym_thread] = ACTIONS(2251), - [anon_sym_atomic] = ACTIONS(2251), - [anon_sym_assert] = ACTIONS(2251), - [anon_sym_defer] = ACTIONS(2251), - [anon_sym_goto] = ACTIONS(2251), - [anon_sym_break] = ACTIONS(2251), - [anon_sym_continue] = ACTIONS(2251), - [anon_sym_return] = ACTIONS(2251), - [anon_sym_DOLLARfor] = ACTIONS(2251), - [anon_sym_for] = ACTIONS(2251), - [anon_sym_POUND] = ACTIONS(2251), - [anon_sym_asm] = ACTIONS(2251), - [anon_sym_AT_LBRACK] = ACTIONS(2251), - [sym___double_quote] = ACTIONS(2251), - [sym___single_quote] = ACTIONS(2251), - [sym___c_double_quote] = ACTIONS(2251), - [sym___c_single_quote] = ACTIONS(2251), - [sym___r_double_quote] = ACTIONS(2251), - [sym___r_single_quote] = ACTIONS(2251), + [sym_none] = ACTIONS(531), + [sym_true] = ACTIONS(531), + [sym_false] = ACTIONS(531), + [sym_nil] = ACTIONS(531), + [anon_sym_if] = ACTIONS(533), + [anon_sym_DOLLARif] = ACTIONS(535), + [anon_sym_match] = ACTIONS(537), + [anon_sym_select] = ACTIONS(539), + [anon_sym_lock] = ACTIONS(541), + [anon_sym_rlock] = ACTIONS(541), + [anon_sym_unsafe] = ACTIONS(543), + [anon_sym_sql] = ACTIONS(545), + [sym_int_literal] = ACTIONS(531), + [sym_float_literal] = ACTIONS(2253), + [sym_rune_literal] = ACTIONS(2253), + [sym_pseudo_compile_time_identifier] = ACTIONS(547), + [anon_sym_shared] = ACTIONS(83), + [anon_sym_map_LBRACK] = ACTIONS(85), + [anon_sym_chan] = ACTIONS(87), + [anon_sym_thread] = ACTIONS(89), + [anon_sym_atomic] = ACTIONS(91), + [sym___double_quote] = ACTIONS(2255), + [sym___single_quote] = ACTIONS(2257), + [sym___c_double_quote] = ACTIONS(2259), + [sym___c_single_quote] = ACTIONS(2261), + [sym___r_double_quote] = ACTIONS(2263), + [sym___r_single_quote] = ACTIONS(2265), }, - [354] = { - [sym_line_comment] = STATE(354), - [sym_block_comment] = STATE(354), - [sym__expression] = STATE(2455), - [sym__expression_without_blocks] = STATE(2300), - [sym__expression_with_blocks] = STATE(2300), - [sym_inc_expression] = STATE(2307), - [sym_dec_expression] = STATE(2307), - [sym_or_block_expression] = STATE(2307), - [sym_option_propagation_expression] = STATE(2307), - [sym_result_propagation_expression] = STATE(2307), - [sym_anon_struct_value_expression] = STATE(2380), - [sym_go_expression] = STATE(2307), - [sym_spawn_expression] = STATE(2307), - [sym_parenthesized_expression] = STATE(2307), - [sym_call_expression] = STATE(2307), - [sym_type_initializer] = STATE(2380), - [sym_function_literal] = STATE(2307), - [sym_reference_expression] = STATE(2311), - [sym_type_reference_expression] = STATE(3541), - [sym_unary_expression] = STATE(2307), - [sym_receive_expression] = STATE(2307), - [sym_binary_expression] = STATE(2307), - [sym_as_type_cast_expression] = STATE(2307), - [sym__max_group] = STATE(2307), - [sym_literal] = STATE(2292), - [sym_map_init_expression] = STATE(2380), - [sym_array_creation] = STATE(2307), - [sym_fixed_array_creation] = STATE(2307), - [sym_selector_expression] = STATE(2307), - [sym_index_expression] = STATE(2307), - [sym_slice_expression] = STATE(2307), - [sym_if_expression] = STATE(2380), - [sym_compile_time_if_expression] = STATE(2380), - [sym_is_expression] = STATE(2307), - [sym_in_expression] = STATE(2307), - [sym_enum_fetch] = STATE(2307), - [sym_match_expression] = STATE(2380), - [sym_select_expression] = STATE(2380), - [sym_lock_expression] = STATE(2380), - [sym_unsafe_expression] = STATE(2380), - [sym_sql_expression] = STATE(2380), - [sym_c_string_literal] = STATE(2308), - [sym_raw_string_literal] = STATE(2308), - [sym_interpreted_string_literal] = STATE(2308), - [sym_mutability_modifiers] = STATE(824), - [sym_mutable_expression] = STATE(3922), - [sym_expression_list] = STATE(4400), - [sym_plain_type] = STATE(4297), - [sym__plain_type_without_special] = STATE(2302), - [sym_anon_struct_type] = STATE(2303), - [sym_multi_return_type] = STATE(2302), - [sym_result_type] = STATE(2302), - [sym_option_type] = STATE(2302), - [sym_qualified_type] = STATE(3541), - [sym_fixed_array_type] = STATE(2303), - [sym_array_type] = STATE(2303), - [sym_pointer_type] = STATE(2303), - [sym_wrong_pointer_type] = STATE(2303), - [sym_map_type] = STATE(2303), - [sym_channel_type] = STATE(2303), - [sym_shared_type] = STATE(2303), - [sym_thread_type] = STATE(2303), - [sym_atomic_type] = STATE(2303), - [sym_generic_type] = STATE(2303), - [sym_function_type] = STATE(2303), - [sym_identifier] = ACTIONS(1807), + [348] = { + [sym_line_comment] = STATE(348), + [sym_block_comment] = STATE(348), + [sym__expression] = STATE(2615), + [sym__expression_without_blocks] = STATE(2347), + [sym__expression_with_blocks] = STATE(2347), + [sym_inc_expression] = STATE(2379), + [sym_dec_expression] = STATE(2379), + [sym_or_block_expression] = STATE(2379), + [sym_option_propagation_expression] = STATE(2379), + [sym_result_propagation_expression] = STATE(2379), + [sym_anon_struct_value_expression] = STATE(2378), + [sym_go_expression] = STATE(2379), + [sym_spawn_expression] = STATE(2379), + [sym_parenthesized_expression] = STATE(2379), + [sym_call_expression] = STATE(2379), + [sym_type_initializer] = STATE(2378), + [sym_function_literal] = STATE(2379), + [sym_reference_expression] = STATE(2377), + [sym_type_reference_expression] = STATE(3460), + [sym_unary_expression] = STATE(2379), + [sym_receive_expression] = STATE(2379), + [sym_binary_expression] = STATE(2379), + [sym_as_type_cast_expression] = STATE(2379), + [sym__max_group] = STATE(2379), + [sym_literal] = STATE(2392), + [sym_map_init_expression] = STATE(2378), + [sym_array_creation] = STATE(2379), + [sym_fixed_array_creation] = STATE(2379), + [sym_selector_expression] = STATE(2379), + [sym_index_expression] = STATE(2379), + [sym_slice_expression] = STATE(2379), + [sym_if_expression] = STATE(2378), + [sym_compile_time_if_expression] = STATE(2378), + [sym_is_expression] = STATE(2379), + [sym_in_expression] = STATE(2379), + [sym_enum_fetch] = STATE(2379), + [sym_match_expression] = STATE(2378), + [sym_select_expression] = STATE(2378), + [sym_lock_expression] = STATE(2378), + [sym_unsafe_expression] = STATE(2378), + [sym_sql_expression] = STATE(2378), + [sym_c_string_literal] = STATE(2401), + [sym_raw_string_literal] = STATE(2401), + [sym_interpreted_string_literal] = STATE(2401), + [sym_mutability_modifiers] = STATE(939), + [sym_plain_type] = STATE(3569), + [sym__plain_type_without_special] = STATE(2360), + [sym_anon_struct_type] = STATE(2362), + [sym_multi_return_type] = STATE(2360), + [sym_result_type] = STATE(2360), + [sym_option_type] = STATE(2360), + [sym_qualified_type] = STATE(3460), + [sym_fixed_array_type] = STATE(2362), + [sym_array_type] = STATE(2362), + [sym_pointer_type] = STATE(2362), + [sym_wrong_pointer_type] = STATE(2362), + [sym_map_type] = STATE(2362), + [sym_channel_type] = STATE(2362), + [sym_shared_type] = STATE(2362), + [sym_thread_type] = STATE(2362), + [sym_atomic_type] = STATE(2362), + [sym_generic_type] = STATE(2362), + [sym_function_type] = STATE(2362), + [sym_range] = STATE(4555), + [sym_identifier] = ACTIONS(2127), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1428), - [anon_sym_LBRACE] = ACTIONS(2259), - [anon_sym_LPAREN] = ACTIONS(1432), - [anon_sym_fn] = ACTIONS(1434), - [anon_sym_PLUS] = ACTIONS(1811), - [anon_sym_DASH] = ACTIONS(1811), - [anon_sym_STAR] = ACTIONS(1813), - [anon_sym_struct] = ACTIONS(1440), + [anon_sym_DOT] = ACTIONS(1430), + [anon_sym_LBRACE] = ACTIONS(1432), + [anon_sym_LPAREN] = ACTIONS(1434), + [anon_sym_fn] = ACTIONS(1436), + [anon_sym_PLUS] = ACTIONS(1438), + [anon_sym_DASH] = ACTIONS(1438), + [anon_sym_STAR] = ACTIONS(2129), + [anon_sym_struct] = ACTIONS(1442), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(1815), - [anon_sym_go] = ACTIONS(1817), - [anon_sym_spawn] = ACTIONS(1819), - [anon_sym_json_DOTdecode] = ACTIONS(1448), - [anon_sym_LBRACK2] = ACTIONS(1821), - [anon_sym_TILDE] = ACTIONS(1811), - [anon_sym_CARET] = ACTIONS(1811), - [anon_sym_AMP] = ACTIONS(1823), - [anon_sym_LT_DASH] = ACTIONS(1825), - [sym_none] = ACTIONS(1456), - [sym_true] = ACTIONS(1456), - [sym_false] = ACTIONS(1456), - [sym_nil] = ACTIONS(1456), - [anon_sym_if] = ACTIONS(1827), - [anon_sym_DOLLARif] = ACTIONS(1460), - [anon_sym_match] = ACTIONS(1462), - [anon_sym_select] = ACTIONS(1829), - [anon_sym_lock] = ACTIONS(1831), - [anon_sym_rlock] = ACTIONS(1831), - [anon_sym_unsafe] = ACTIONS(1833), - [anon_sym_sql] = ACTIONS(1470), - [sym_int_literal] = ACTIONS(1456), - [sym_float_literal] = ACTIONS(1472), - [sym_rune_literal] = ACTIONS(1472), - [sym_pseudo_compile_time_identifier] = ACTIONS(1474), + [anon_sym_BANG] = ACTIONS(2131), + [anon_sym_go] = ACTIONS(1446), + [anon_sym_spawn] = ACTIONS(1448), + [anon_sym_json_DOTdecode] = ACTIONS(1450), + [anon_sym_LBRACK2] = ACTIONS(1452), + [anon_sym_TILDE] = ACTIONS(1438), + [anon_sym_CARET] = ACTIONS(1438), + [anon_sym_AMP] = ACTIONS(2133), + [anon_sym_LT_DASH] = ACTIONS(1456), + [sym_none] = ACTIONS(1458), + [sym_true] = ACTIONS(1458), + [sym_false] = ACTIONS(1458), + [sym_nil] = ACTIONS(1458), + [anon_sym_if] = ACTIONS(1833), + [anon_sym_DOLLARif] = ACTIONS(1462), + [anon_sym_match] = ACTIONS(1464), + [anon_sym_select] = ACTIONS(1466), + [anon_sym_lock] = ACTIONS(1468), + [anon_sym_rlock] = ACTIONS(1468), + [anon_sym_unsafe] = ACTIONS(1839), + [anon_sym_sql] = ACTIONS(1472), + [sym_int_literal] = ACTIONS(1458), + [sym_float_literal] = ACTIONS(1474), + [sym_rune_literal] = ACTIONS(1474), + [sym_pseudo_compile_time_identifier] = ACTIONS(1476), [anon_sym_shared] = ACTIONS(83), [anon_sym_map_LBRACK] = ACTIONS(85), [anon_sym_chan] = ACTIONS(87), [anon_sym_thread] = ACTIONS(89), [anon_sym_atomic] = ACTIONS(91), - [sym___double_quote] = ACTIONS(1478), - [sym___single_quote] = ACTIONS(1480), - [sym___c_double_quote] = ACTIONS(1482), - [sym___c_single_quote] = ACTIONS(1484), - [sym___r_double_quote] = ACTIONS(1486), - [sym___r_single_quote] = ACTIONS(1488), + [anon_sym_DOT_DOT] = ACTIONS(1478), + [sym___double_quote] = ACTIONS(1480), + [sym___single_quote] = ACTIONS(1482), + [sym___c_double_quote] = ACTIONS(1484), + [sym___c_single_quote] = ACTIONS(1486), + [sym___r_double_quote] = ACTIONS(1488), + [sym___r_single_quote] = ACTIONS(1490), }, - [355] = { - [sym_line_comment] = STATE(355), - [sym_block_comment] = STATE(355), - [sym__expression] = STATE(2585), - [sym__expression_without_blocks] = STATE(2300), - [sym__expression_with_blocks] = STATE(2300), - [sym_inc_expression] = STATE(2307), - [sym_dec_expression] = STATE(2307), - [sym_or_block_expression] = STATE(2307), - [sym_option_propagation_expression] = STATE(2307), - [sym_result_propagation_expression] = STATE(2307), - [sym_anon_struct_value_expression] = STATE(2380), - [sym_go_expression] = STATE(2307), - [sym_spawn_expression] = STATE(2307), - [sym_parenthesized_expression] = STATE(2307), - [sym_call_expression] = STATE(2307), - [sym_type_initializer] = STATE(2380), - [sym_function_literal] = STATE(2307), - [sym_reference_expression] = STATE(2311), - [sym_type_reference_expression] = STATE(3541), - [sym_unary_expression] = STATE(2307), - [sym_receive_expression] = STATE(2307), - [sym_binary_expression] = STATE(2307), - [sym_as_type_cast_expression] = STATE(2307), - [sym__max_group] = STATE(2307), - [sym_literal] = STATE(2292), - [sym_map_init_expression] = STATE(2380), - [sym_array_creation] = STATE(2307), - [sym_fixed_array_creation] = STATE(2307), - [sym_selector_expression] = STATE(2307), - [sym_index_expression] = STATE(2307), - [sym_slice_expression] = STATE(2307), - [sym_if_expression] = STATE(2380), - [sym_compile_time_if_expression] = STATE(2380), - [sym_is_expression] = STATE(2307), - [sym_in_expression] = STATE(2307), - [sym_enum_fetch] = STATE(2307), - [sym_match_expression] = STATE(2380), - [sym_select_expression] = STATE(2380), - [sym_lock_expression] = STATE(2380), - [sym_unsafe_expression] = STATE(2380), - [sym_sql_expression] = STATE(2380), - [sym_c_string_literal] = STATE(2308), - [sym_raw_string_literal] = STATE(2308), - [sym_interpreted_string_literal] = STATE(2308), + [349] = { + [sym_line_comment] = STATE(349), + [sym_block_comment] = STATE(349), + [sym__expression] = STATE(2615), + [sym__expression_without_blocks] = STATE(2347), + [sym__expression_with_blocks] = STATE(2347), + [sym_inc_expression] = STATE(2379), + [sym_dec_expression] = STATE(2379), + [sym_or_block_expression] = STATE(2379), + [sym_option_propagation_expression] = STATE(2379), + [sym_result_propagation_expression] = STATE(2379), + [sym_anon_struct_value_expression] = STATE(2378), + [sym_go_expression] = STATE(2379), + [sym_spawn_expression] = STATE(2379), + [sym_parenthesized_expression] = STATE(2379), + [sym_call_expression] = STATE(2379), + [sym_type_initializer] = STATE(2378), + [sym_function_literal] = STATE(2379), + [sym_reference_expression] = STATE(2377), + [sym_type_reference_expression] = STATE(3460), + [sym_unary_expression] = STATE(2379), + [sym_receive_expression] = STATE(2379), + [sym_binary_expression] = STATE(2379), + [sym_as_type_cast_expression] = STATE(2379), + [sym__max_group] = STATE(2379), + [sym_literal] = STATE(2392), + [sym_map_init_expression] = STATE(2378), + [sym_array_creation] = STATE(2379), + [sym_fixed_array_creation] = STATE(2379), + [sym_selector_expression] = STATE(2379), + [sym_index_expression] = STATE(2379), + [sym_slice_expression] = STATE(2379), + [sym_if_expression] = STATE(2378), + [sym_compile_time_if_expression] = STATE(2378), + [sym_is_expression] = STATE(2379), + [sym_in_expression] = STATE(2379), + [sym_enum_fetch] = STATE(2379), + [sym_match_expression] = STATE(2378), + [sym_select_expression] = STATE(2378), + [sym_lock_expression] = STATE(2378), + [sym_unsafe_expression] = STATE(2378), + [sym_sql_expression] = STATE(2378), + [sym_c_string_literal] = STATE(2401), + [sym_raw_string_literal] = STATE(2401), + [sym_interpreted_string_literal] = STATE(2401), [sym_mutability_modifiers] = STATE(939), - [sym_plain_type] = STATE(4297), - [sym__plain_type_without_special] = STATE(2302), - [sym_anon_struct_type] = STATE(2303), - [sym_multi_return_type] = STATE(2302), - [sym_result_type] = STATE(2302), - [sym_option_type] = STATE(2302), - [sym_qualified_type] = STATE(3541), - [sym_fixed_array_type] = STATE(2303), - [sym_array_type] = STATE(2303), - [sym_pointer_type] = STATE(2303), - [sym_wrong_pointer_type] = STATE(2303), - [sym_map_type] = STATE(2303), - [sym_channel_type] = STATE(2303), - [sym_shared_type] = STATE(2303), - [sym_thread_type] = STATE(2303), - [sym_atomic_type] = STATE(2303), - [sym_generic_type] = STATE(2303), - [sym_function_type] = STATE(2303), - [sym_range] = STATE(4466), - [sym_identifier] = ACTIONS(1426), + [sym_plain_type] = STATE(4160), + [sym__plain_type_without_special] = STATE(2360), + [sym_anon_struct_type] = STATE(2362), + [sym_multi_return_type] = STATE(2360), + [sym_result_type] = STATE(2360), + [sym_option_type] = STATE(2360), + [sym_qualified_type] = STATE(3460), + [sym_fixed_array_type] = STATE(2362), + [sym_array_type] = STATE(2362), + [sym_pointer_type] = STATE(2362), + [sym_wrong_pointer_type] = STATE(2362), + [sym_map_type] = STATE(2362), + [sym_channel_type] = STATE(2362), + [sym_shared_type] = STATE(2362), + [sym_thread_type] = STATE(2362), + [sym_atomic_type] = STATE(2362), + [sym_generic_type] = STATE(2362), + [sym_function_type] = STATE(2362), + [sym_range] = STATE(4555), + [sym_identifier] = ACTIONS(1428), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1428), - [anon_sym_LBRACE] = ACTIONS(1430), - [anon_sym_LPAREN] = ACTIONS(1432), - [anon_sym_fn] = ACTIONS(1434), - [anon_sym_PLUS] = ACTIONS(1436), - [anon_sym_DASH] = ACTIONS(1436), - [anon_sym_STAR] = ACTIONS(1438), - [anon_sym_struct] = ACTIONS(1440), + [anon_sym_DOT] = ACTIONS(1430), + [anon_sym_LBRACE] = ACTIONS(1432), + [anon_sym_LPAREN] = ACTIONS(1434), + [anon_sym_fn] = ACTIONS(1436), + [anon_sym_PLUS] = ACTIONS(1438), + [anon_sym_DASH] = ACTIONS(1438), + [anon_sym_STAR] = ACTIONS(1440), + [anon_sym_struct] = ACTIONS(1442), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(1442), - [anon_sym_go] = ACTIONS(1444), - [anon_sym_spawn] = ACTIONS(1446), - [anon_sym_json_DOTdecode] = ACTIONS(1448), - [anon_sym_LBRACK2] = ACTIONS(1450), - [anon_sym_TILDE] = ACTIONS(1436), - [anon_sym_CARET] = ACTIONS(1436), - [anon_sym_AMP] = ACTIONS(1452), - [anon_sym_LT_DASH] = ACTIONS(1454), - [sym_none] = ACTIONS(1456), - [sym_true] = ACTIONS(1456), - [sym_false] = ACTIONS(1456), - [sym_nil] = ACTIONS(1456), - [anon_sym_if] = ACTIONS(1827), - [anon_sym_DOLLARif] = ACTIONS(1460), - [anon_sym_match] = ACTIONS(1462), - [anon_sym_select] = ACTIONS(1464), - [anon_sym_lock] = ACTIONS(1466), - [anon_sym_rlock] = ACTIONS(1466), - [anon_sym_unsafe] = ACTIONS(1833), - [anon_sym_sql] = ACTIONS(1470), - [sym_int_literal] = ACTIONS(1456), - [sym_float_literal] = ACTIONS(1472), - [sym_rune_literal] = ACTIONS(1472), - [sym_pseudo_compile_time_identifier] = ACTIONS(1474), + [anon_sym_BANG] = ACTIONS(1444), + [anon_sym_go] = ACTIONS(1446), + [anon_sym_spawn] = ACTIONS(1448), + [anon_sym_json_DOTdecode] = ACTIONS(1450), + [anon_sym_LBRACK2] = ACTIONS(1452), + [anon_sym_TILDE] = ACTIONS(1438), + [anon_sym_CARET] = ACTIONS(1438), + [anon_sym_AMP] = ACTIONS(1454), + [anon_sym_LT_DASH] = ACTIONS(1456), + [sym_none] = ACTIONS(1458), + [sym_true] = ACTIONS(1458), + [sym_false] = ACTIONS(1458), + [sym_nil] = ACTIONS(1458), + [anon_sym_if] = ACTIONS(1833), + [anon_sym_DOLLARif] = ACTIONS(1462), + [anon_sym_match] = ACTIONS(1464), + [anon_sym_select] = ACTIONS(1466), + [anon_sym_lock] = ACTIONS(1468), + [anon_sym_rlock] = ACTIONS(1468), + [anon_sym_unsafe] = ACTIONS(1839), + [anon_sym_sql] = ACTIONS(1472), + [sym_int_literal] = ACTIONS(1458), + [sym_float_literal] = ACTIONS(1474), + [sym_rune_literal] = ACTIONS(1474), + [sym_pseudo_compile_time_identifier] = ACTIONS(1476), [anon_sym_shared] = ACTIONS(83), [anon_sym_map_LBRACK] = ACTIONS(85), [anon_sym_chan] = ACTIONS(87), [anon_sym_thread] = ACTIONS(89), [anon_sym_atomic] = ACTIONS(91), - [anon_sym_DOT_DOT] = ACTIONS(1476), - [sym___double_quote] = ACTIONS(1478), - [sym___single_quote] = ACTIONS(1480), - [sym___c_double_quote] = ACTIONS(1482), - [sym___c_single_quote] = ACTIONS(1484), - [sym___r_double_quote] = ACTIONS(1486), - [sym___r_single_quote] = ACTIONS(1488), + [anon_sym_DOT_DOT] = ACTIONS(1478), + [sym___double_quote] = ACTIONS(1480), + [sym___single_quote] = ACTIONS(1482), + [sym___c_double_quote] = ACTIONS(1484), + [sym___c_single_quote] = ACTIONS(1486), + [sym___r_double_quote] = ACTIONS(1488), + [sym___r_single_quote] = ACTIONS(1490), }, - [356] = { - [sym_line_comment] = STATE(356), - [sym_block_comment] = STATE(356), - [sym__expression] = STATE(1268), - [sym__expression_without_blocks] = STATE(1312), - [sym__expression_with_blocks] = STATE(1312), - [sym_inc_expression] = STATE(1313), - [sym_dec_expression] = STATE(1313), - [sym_or_block_expression] = STATE(1313), - [sym_option_propagation_expression] = STATE(1313), - [sym_result_propagation_expression] = STATE(1313), - [sym_anon_struct_value_expression] = STATE(1314), - [sym_go_expression] = STATE(1313), - [sym_spawn_expression] = STATE(1313), - [sym_parenthesized_expression] = STATE(1313), - [sym_call_expression] = STATE(1313), - [sym_type_initializer] = STATE(1314), - [sym_function_literal] = STATE(1313), - [sym_reference_expression] = STATE(1394), - [sym_type_reference_expression] = STATE(3541), - [sym_unary_expression] = STATE(1313), - [sym_receive_expression] = STATE(1313), - [sym_binary_expression] = STATE(1313), - [sym_as_type_cast_expression] = STATE(1313), - [sym__max_group] = STATE(1313), - [sym_literal] = STATE(1308), - [sym_map_init_expression] = STATE(1314), - [sym_array_creation] = STATE(1313), - [sym_fixed_array_creation] = STATE(1313), - [sym_selector_expression] = STATE(1393), - [sym_index_expression] = STATE(1313), - [sym_slice_expression] = STATE(1313), - [sym_if_expression] = STATE(1314), - [sym_compile_time_if_expression] = STATE(1314), - [sym_is_expression] = STATE(1313), - [sym_in_expression] = STATE(1313), - [sym_enum_fetch] = STATE(1313), - [sym_match_expression] = STATE(1314), - [sym_select_expression] = STATE(1314), - [sym_lock_expression] = STATE(1314), - [sym_unsafe_expression] = STATE(1314), - [sym_sql_expression] = STATE(1314), - [sym_c_string_literal] = STATE(1286), - [sym_raw_string_literal] = STATE(1286), - [sym_interpreted_string_literal] = STATE(1286), - [sym_mutability_modifiers] = STATE(699), - [sym_plain_type] = STATE(4192), - [sym__plain_type_without_special] = STATE(2302), - [sym_anon_struct_type] = STATE(2303), - [sym_multi_return_type] = STATE(2302), - [sym_result_type] = STATE(2302), - [sym_option_type] = STATE(2302), - [sym_qualified_type] = STATE(3541), - [sym_fixed_array_type] = STATE(2303), - [sym_array_type] = STATE(2303), - [sym_pointer_type] = STATE(2303), - [sym_wrong_pointer_type] = STATE(2303), - [sym_map_type] = STATE(2303), - [sym_channel_type] = STATE(2303), - [sym_shared_type] = STATE(2303), - [sym_thread_type] = STATE(2303), - [sym_atomic_type] = STATE(2303), - [sym_generic_type] = STATE(2303), - [sym_function_type] = STATE(2303), - [aux_sym__array_repeat1] = STATE(463), - [sym_identifier] = ACTIONS(1354), + [350] = { + [sym_line_comment] = STATE(350), + [sym_block_comment] = STATE(350), + [ts_builtin_sym_end] = ACTIONS(2267), + [sym_identifier] = ACTIONS(2269), + [anon_sym_LF] = ACTIONS(2269), + [anon_sym_CR] = ACTIONS(2269), + [anon_sym_CR_LF] = ACTIONS(2269), + [anon_sym_SLASH_SLASH] = ACTIONS(497), + [anon_sym_SLASH_STAR] = ACTIONS(499), + [anon_sym_DOT] = ACTIONS(2269), + [anon_sym_as] = ACTIONS(2269), + [anon_sym_LBRACE] = ACTIONS(2269), + [anon_sym_COMMA] = ACTIONS(2269), + [anon_sym_const] = ACTIONS(2269), + [anon_sym_LPAREN] = ACTIONS(2269), + [anon_sym_EQ] = ACTIONS(2269), + [anon_sym___global] = ACTIONS(2269), + [anon_sym_type] = ACTIONS(2269), + [anon_sym_PIPE] = ACTIONS(2269), + [anon_sym_fn] = ACTIONS(2269), + [anon_sym_PLUS] = ACTIONS(2269), + [anon_sym_DASH] = ACTIONS(2269), + [anon_sym_STAR] = ACTIONS(2269), + [anon_sym_SLASH] = ACTIONS(2269), + [anon_sym_PERCENT] = ACTIONS(2269), + [anon_sym_LT] = ACTIONS(2269), + [anon_sym_GT] = ACTIONS(2269), + [anon_sym_EQ_EQ] = ACTIONS(2269), + [anon_sym_BANG_EQ] = ACTIONS(2269), + [anon_sym_LT_EQ] = ACTIONS(2269), + [anon_sym_GT_EQ] = ACTIONS(2269), + [anon_sym_LBRACK] = ACTIONS(2267), + [anon_sym_struct] = ACTIONS(2269), + [anon_sym_union] = ACTIONS(2269), + [anon_sym_pub] = ACTIONS(2269), + [anon_sym_mut] = ACTIONS(2269), + [anon_sym_enum] = ACTIONS(2269), + [anon_sym_interface] = ACTIONS(2269), + [anon_sym_PLUS_PLUS] = ACTIONS(2269), + [anon_sym_DASH_DASH] = ACTIONS(2269), + [anon_sym_QMARK] = ACTIONS(2269), + [anon_sym_BANG] = ACTIONS(2269), + [anon_sym_go] = ACTIONS(2269), + [anon_sym_spawn] = ACTIONS(2269), + [anon_sym_json_DOTdecode] = ACTIONS(2269), + [anon_sym_LBRACK2] = ACTIONS(2269), + [anon_sym_TILDE] = ACTIONS(2269), + [anon_sym_CARET] = ACTIONS(2269), + [anon_sym_AMP] = ACTIONS(2269), + [anon_sym_LT_DASH] = ACTIONS(2269), + [anon_sym_LT_LT] = ACTIONS(2269), + [anon_sym_GT_GT] = ACTIONS(2269), + [anon_sym_GT_GT_GT] = ACTIONS(2269), + [anon_sym_AMP_CARET] = ACTIONS(2269), + [anon_sym_AMP_AMP] = ACTIONS(2269), + [anon_sym_PIPE_PIPE] = ACTIONS(2269), + [anon_sym_or] = ACTIONS(2269), + [sym_none] = ACTIONS(2269), + [sym_true] = ACTIONS(2269), + [sym_false] = ACTIONS(2269), + [sym_nil] = ACTIONS(2269), + [anon_sym_QMARK_DOT] = ACTIONS(2269), + [anon_sym_POUND_LBRACK] = ACTIONS(2269), + [anon_sym_if] = ACTIONS(2269), + [anon_sym_DOLLARif] = ACTIONS(2269), + [anon_sym_is] = ACTIONS(2269), + [anon_sym_BANGis] = ACTIONS(2269), + [anon_sym_in] = ACTIONS(2269), + [anon_sym_BANGin] = ACTIONS(2269), + [anon_sym_match] = ACTIONS(2269), + [anon_sym_select] = ACTIONS(2269), + [anon_sym_STAR_EQ] = ACTIONS(2269), + [anon_sym_SLASH_EQ] = ACTIONS(2269), + [anon_sym_PERCENT_EQ] = ACTIONS(2269), + [anon_sym_LT_LT_EQ] = ACTIONS(2269), + [anon_sym_GT_GT_EQ] = ACTIONS(2269), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(2269), + [anon_sym_AMP_EQ] = ACTIONS(2269), + [anon_sym_AMP_CARET_EQ] = ACTIONS(2269), + [anon_sym_PLUS_EQ] = ACTIONS(2269), + [anon_sym_DASH_EQ] = ACTIONS(2269), + [anon_sym_PIPE_EQ] = ACTIONS(2269), + [anon_sym_CARET_EQ] = ACTIONS(2269), + [anon_sym_COLON_EQ] = ACTIONS(2269), + [anon_sym_lock] = ACTIONS(2269), + [anon_sym_rlock] = ACTIONS(2269), + [anon_sym_unsafe] = ACTIONS(2269), + [anon_sym_sql] = ACTIONS(2269), + [sym_int_literal] = ACTIONS(2269), + [sym_float_literal] = ACTIONS(2269), + [sym_rune_literal] = ACTIONS(2269), + [sym_pseudo_compile_time_identifier] = ACTIONS(2269), + [anon_sym_shared] = ACTIONS(2269), + [anon_sym_map_LBRACK] = ACTIONS(2269), + [anon_sym_chan] = ACTIONS(2269), + [anon_sym_thread] = ACTIONS(2269), + [anon_sym_atomic] = ACTIONS(2269), + [anon_sym_assert] = ACTIONS(2269), + [anon_sym_defer] = ACTIONS(2269), + [anon_sym_goto] = ACTIONS(2269), + [anon_sym_break] = ACTIONS(2269), + [anon_sym_continue] = ACTIONS(2269), + [anon_sym_return] = ACTIONS(2269), + [anon_sym_DOLLARfor] = ACTIONS(2269), + [anon_sym_for] = ACTIONS(2269), + [anon_sym_POUND] = ACTIONS(2269), + [anon_sym_asm] = ACTIONS(2269), + [anon_sym_AT_LBRACK] = ACTIONS(2269), + [sym___double_quote] = ACTIONS(2269), + [sym___single_quote] = ACTIONS(2269), + [sym___c_double_quote] = ACTIONS(2269), + [sym___c_single_quote] = ACTIONS(2269), + [sym___r_double_quote] = ACTIONS(2269), + [sym___r_single_quote] = ACTIONS(2269), + }, + [351] = { + [sym_line_comment] = STATE(351), + [sym_block_comment] = STATE(351), + [sym__expression] = STATE(2267), + [sym__expression_without_blocks] = STATE(2347), + [sym__expression_with_blocks] = STATE(2347), + [sym_inc_expression] = STATE(2379), + [sym_dec_expression] = STATE(2379), + [sym_or_block_expression] = STATE(2379), + [sym_option_propagation_expression] = STATE(2379), + [sym_result_propagation_expression] = STATE(2379), + [sym_anon_struct_value_expression] = STATE(2378), + [sym_go_expression] = STATE(2379), + [sym_spawn_expression] = STATE(2379), + [sym_parenthesized_expression] = STATE(2379), + [sym_call_expression] = STATE(2379), + [sym_type_initializer] = STATE(2378), + [sym_function_literal] = STATE(2379), + [sym_reference_expression] = STATE(2377), + [sym_type_reference_expression] = STATE(3460), + [sym_unary_expression] = STATE(2379), + [sym_receive_expression] = STATE(2379), + [sym_binary_expression] = STATE(2379), + [sym_as_type_cast_expression] = STATE(2379), + [sym__max_group] = STATE(2379), + [sym_literal] = STATE(2392), + [sym_map_init_expression] = STATE(2378), + [sym_array_creation] = STATE(2379), + [sym_fixed_array_creation] = STATE(2379), + [sym_selector_expression] = STATE(2379), + [sym_index_expression] = STATE(2379), + [sym_slice_expression] = STATE(2379), + [sym_if_expression] = STATE(2378), + [sym_compile_time_if_expression] = STATE(2378), + [sym_is_expression] = STATE(2379), + [sym_in_expression] = STATE(2379), + [sym_enum_fetch] = STATE(2379), + [sym_match_expression] = STATE(2378), + [sym_select_expression] = STATE(2378), + [sym_lock_expression] = STATE(2378), + [sym_unsafe_expression] = STATE(2378), + [sym_sql_expression] = STATE(2378), + [sym_c_string_literal] = STATE(2401), + [sym_raw_string_literal] = STATE(2401), + [sym_interpreted_string_literal] = STATE(2401), + [sym_mutability_modifiers] = STATE(939), + [sym_plain_type] = STATE(3558), + [sym__plain_type_without_special] = STATE(2360), + [sym_anon_struct_type] = STATE(2362), + [sym_multi_return_type] = STATE(2360), + [sym_result_type] = STATE(2360), + [sym_option_type] = STATE(2360), + [sym_qualified_type] = STATE(3460), + [sym_fixed_array_type] = STATE(2362), + [sym_array_type] = STATE(2362), + [sym_pointer_type] = STATE(2362), + [sym_wrong_pointer_type] = STATE(2362), + [sym_map_type] = STATE(2362), + [sym_channel_type] = STATE(2362), + [sym_shared_type] = STATE(2362), + [sym_thread_type] = STATE(2362), + [sym_atomic_type] = STATE(2362), + [sym_generic_type] = STATE(2362), + [sym_function_type] = STATE(2362), + [sym_identifier] = ACTIONS(1428), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1356), - [anon_sym_LBRACE] = ACTIONS(1358), - [anon_sym_LPAREN] = ACTIONS(1360), - [anon_sym_fn] = ACTIONS(1362), - [anon_sym_PLUS] = ACTIONS(1364), - [anon_sym_DASH] = ACTIONS(1364), - [anon_sym_STAR] = ACTIONS(1366), - [anon_sym_RBRACK] = ACTIONS(2261), - [anon_sym_struct] = ACTIONS(1370), + [anon_sym_DOT] = ACTIONS(1430), + [anon_sym_LBRACE] = ACTIONS(1432), + [anon_sym_COMMA] = ACTIONS(621), + [anon_sym_LPAREN] = ACTIONS(1434), + [anon_sym_RPAREN] = ACTIONS(621), + [anon_sym_fn] = ACTIONS(1436), + [anon_sym_PLUS] = ACTIONS(2271), + [anon_sym_DASH] = ACTIONS(2271), + [anon_sym_STAR] = ACTIONS(2273), + [anon_sym_struct] = ACTIONS(1442), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(1372), - [anon_sym_go] = ACTIONS(1374), - [anon_sym_spawn] = ACTIONS(1376), - [anon_sym_json_DOTdecode] = ACTIONS(1378), - [anon_sym_LBRACK2] = ACTIONS(1380), - [anon_sym_TILDE] = ACTIONS(1364), - [anon_sym_CARET] = ACTIONS(1364), - [anon_sym_AMP] = ACTIONS(1382), - [anon_sym_LT_DASH] = ACTIONS(1384), - [sym_none] = ACTIONS(1386), - [sym_true] = ACTIONS(1386), - [sym_false] = ACTIONS(1386), - [sym_nil] = ACTIONS(1386), - [anon_sym_if] = ACTIONS(1877), - [anon_sym_DOLLARif] = ACTIONS(1390), - [anon_sym_match] = ACTIONS(1392), - [anon_sym_select] = ACTIONS(1394), - [anon_sym_lock] = ACTIONS(1396), - [anon_sym_rlock] = ACTIONS(1396), - [anon_sym_unsafe] = ACTIONS(1883), - [anon_sym_sql] = ACTIONS(1400), - [sym_int_literal] = ACTIONS(1402), - [sym_float_literal] = ACTIONS(1404), - [sym_rune_literal] = ACTIONS(1404), - [sym_pseudo_compile_time_identifier] = ACTIONS(1406), + [anon_sym_BANG] = ACTIONS(2275), + [anon_sym_go] = ACTIONS(2277), + [anon_sym_spawn] = ACTIONS(2279), + [anon_sym_json_DOTdecode] = ACTIONS(1450), + [anon_sym_LBRACK2] = ACTIONS(1452), + [anon_sym_TILDE] = ACTIONS(2271), + [anon_sym_CARET] = ACTIONS(2271), + [anon_sym_AMP] = ACTIONS(2281), + [anon_sym_LT_DASH] = ACTIONS(2283), + [sym_none] = ACTIONS(1458), + [sym_true] = ACTIONS(1458), + [sym_false] = ACTIONS(1458), + [sym_nil] = ACTIONS(1458), + [anon_sym_if] = ACTIONS(1833), + [anon_sym_DOLLARif] = ACTIONS(1462), + [anon_sym_match] = ACTIONS(1464), + [anon_sym_select] = ACTIONS(1466), + [anon_sym_lock] = ACTIONS(1468), + [anon_sym_rlock] = ACTIONS(1468), + [anon_sym_unsafe] = ACTIONS(1839), + [anon_sym_sql] = ACTIONS(1472), + [sym_int_literal] = ACTIONS(1458), + [sym_float_literal] = ACTIONS(1474), + [sym_rune_literal] = ACTIONS(1474), + [sym_pseudo_compile_time_identifier] = ACTIONS(1476), [anon_sym_shared] = ACTIONS(83), [anon_sym_map_LBRACK] = ACTIONS(85), [anon_sym_chan] = ACTIONS(87), [anon_sym_thread] = ACTIONS(89), [anon_sym_atomic] = ACTIONS(91), - [sym___double_quote] = ACTIONS(1408), - [sym___single_quote] = ACTIONS(1410), - [sym___c_double_quote] = ACTIONS(1412), - [sym___c_single_quote] = ACTIONS(1414), - [sym___r_double_quote] = ACTIONS(1416), - [sym___r_single_quote] = ACTIONS(1418), + [sym___double_quote] = ACTIONS(1480), + [sym___single_quote] = ACTIONS(1482), + [sym___c_double_quote] = ACTIONS(1484), + [sym___c_single_quote] = ACTIONS(1486), + [sym___r_double_quote] = ACTIONS(1488), + [sym___r_single_quote] = ACTIONS(1490), }, - [357] = { - [sym_line_comment] = STATE(357), - [sym_block_comment] = STATE(357), - [sym__expression] = STATE(1268), - [sym__expression_without_blocks] = STATE(1312), - [sym__expression_with_blocks] = STATE(1312), - [sym_inc_expression] = STATE(1313), - [sym_dec_expression] = STATE(1313), - [sym_or_block_expression] = STATE(1313), - [sym_option_propagation_expression] = STATE(1313), - [sym_result_propagation_expression] = STATE(1313), - [sym_anon_struct_value_expression] = STATE(1314), - [sym_go_expression] = STATE(1313), - [sym_spawn_expression] = STATE(1313), - [sym_parenthesized_expression] = STATE(1313), - [sym_call_expression] = STATE(1313), - [sym_type_initializer] = STATE(1314), - [sym_function_literal] = STATE(1313), - [sym_reference_expression] = STATE(1394), - [sym_type_reference_expression] = STATE(3541), - [sym_unary_expression] = STATE(1313), - [sym_receive_expression] = STATE(1313), - [sym_binary_expression] = STATE(1313), - [sym_as_type_cast_expression] = STATE(1313), - [sym__max_group] = STATE(1313), - [sym_literal] = STATE(1308), - [sym_map_init_expression] = STATE(1314), - [sym_array_creation] = STATE(1313), - [sym_fixed_array_creation] = STATE(1313), - [sym_selector_expression] = STATE(1393), - [sym_index_expression] = STATE(1313), - [sym_slice_expression] = STATE(1313), - [sym_if_expression] = STATE(1314), - [sym_compile_time_if_expression] = STATE(1314), - [sym_is_expression] = STATE(1313), - [sym_in_expression] = STATE(1313), - [sym_enum_fetch] = STATE(1313), - [sym_match_expression] = STATE(1314), - [sym_select_expression] = STATE(1314), - [sym_lock_expression] = STATE(1314), - [sym_unsafe_expression] = STATE(1314), - [sym_sql_expression] = STATE(1314), - [sym_c_string_literal] = STATE(1286), - [sym_raw_string_literal] = STATE(1286), - [sym_interpreted_string_literal] = STATE(1286), - [sym_mutability_modifiers] = STATE(699), - [sym_plain_type] = STATE(4192), - [sym__plain_type_without_special] = STATE(2302), - [sym_anon_struct_type] = STATE(2303), - [sym_multi_return_type] = STATE(2302), - [sym_result_type] = STATE(2302), - [sym_option_type] = STATE(2302), - [sym_qualified_type] = STATE(3541), - [sym_fixed_array_type] = STATE(2303), - [sym_array_type] = STATE(2303), - [sym_pointer_type] = STATE(2303), - [sym_wrong_pointer_type] = STATE(2303), - [sym_map_type] = STATE(2303), - [sym_channel_type] = STATE(2303), - [sym_shared_type] = STATE(2303), - [sym_thread_type] = STATE(2303), - [sym_atomic_type] = STATE(2303), - [sym_generic_type] = STATE(2303), - [sym_function_type] = STATE(2303), - [aux_sym__array_repeat1] = STATE(315), - [sym_identifier] = ACTIONS(1354), + [352] = { + [sym_line_comment] = STATE(352), + [sym_block_comment] = STATE(352), + [sym__expression] = STATE(1273), + [sym__expression_without_blocks] = STATE(1318), + [sym__expression_with_blocks] = STATE(1318), + [sym_inc_expression] = STATE(1319), + [sym_dec_expression] = STATE(1319), + [sym_or_block_expression] = STATE(1319), + [sym_option_propagation_expression] = STATE(1319), + [sym_result_propagation_expression] = STATE(1319), + [sym_anon_struct_value_expression] = STATE(1320), + [sym_go_expression] = STATE(1319), + [sym_spawn_expression] = STATE(1319), + [sym_parenthesized_expression] = STATE(1319), + [sym_call_expression] = STATE(1319), + [sym_type_initializer] = STATE(1320), + [sym_function_literal] = STATE(1319), + [sym_reference_expression] = STATE(1397), + [sym_type_reference_expression] = STATE(3460), + [sym_unary_expression] = STATE(1319), + [sym_receive_expression] = STATE(1319), + [sym_binary_expression] = STATE(1319), + [sym_as_type_cast_expression] = STATE(1319), + [sym__max_group] = STATE(1319), + [sym_literal] = STATE(1314), + [sym_map_init_expression] = STATE(1320), + [sym_array_creation] = STATE(1319), + [sym_fixed_array_creation] = STATE(1319), + [sym_selector_expression] = STATE(1399), + [sym_index_expression] = STATE(1319), + [sym_slice_expression] = STATE(1319), + [sym_if_expression] = STATE(1320), + [sym_compile_time_if_expression] = STATE(1320), + [sym_is_expression] = STATE(1319), + [sym_in_expression] = STATE(1319), + [sym_enum_fetch] = STATE(1319), + [sym_match_expression] = STATE(1320), + [sym_select_expression] = STATE(1320), + [sym_lock_expression] = STATE(1320), + [sym_unsafe_expression] = STATE(1320), + [sym_sql_expression] = STATE(1320), + [sym_c_string_literal] = STATE(1291), + [sym_raw_string_literal] = STATE(1291), + [sym_interpreted_string_literal] = STATE(1291), + [sym_mutability_modifiers] = STATE(639), + [sym_plain_type] = STATE(4307), + [sym__plain_type_without_special] = STATE(2360), + [sym_anon_struct_type] = STATE(2362), + [sym_multi_return_type] = STATE(2360), + [sym_result_type] = STATE(2360), + [sym_option_type] = STATE(2360), + [sym_qualified_type] = STATE(3460), + [sym_fixed_array_type] = STATE(2362), + [sym_array_type] = STATE(2362), + [sym_pointer_type] = STATE(2362), + [sym_wrong_pointer_type] = STATE(2362), + [sym_map_type] = STATE(2362), + [sym_channel_type] = STATE(2362), + [sym_shared_type] = STATE(2362), + [sym_thread_type] = STATE(2362), + [sym_atomic_type] = STATE(2362), + [sym_generic_type] = STATE(2362), + [sym_function_type] = STATE(2362), + [aux_sym__array_repeat1] = STATE(333), + [sym_identifier] = ACTIONS(1360), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1356), - [anon_sym_LBRACE] = ACTIONS(1358), - [anon_sym_LPAREN] = ACTIONS(1360), - [anon_sym_fn] = ACTIONS(1362), - [anon_sym_PLUS] = ACTIONS(1364), - [anon_sym_DASH] = ACTIONS(1364), - [anon_sym_STAR] = ACTIONS(1366), - [anon_sym_RBRACK] = ACTIONS(2263), - [anon_sym_struct] = ACTIONS(1370), + [anon_sym_DOT] = ACTIONS(1362), + [anon_sym_LBRACE] = ACTIONS(1364), + [anon_sym_LPAREN] = ACTIONS(1366), + [anon_sym_fn] = ACTIONS(1368), + [anon_sym_PLUS] = ACTIONS(1370), + [anon_sym_DASH] = ACTIONS(1370), + [anon_sym_STAR] = ACTIONS(1372), + [anon_sym_RBRACK] = ACTIONS(2285), + [anon_sym_struct] = ACTIONS(1376), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(1372), - [anon_sym_go] = ACTIONS(1374), - [anon_sym_spawn] = ACTIONS(1376), - [anon_sym_json_DOTdecode] = ACTIONS(1378), - [anon_sym_LBRACK2] = ACTIONS(1380), - [anon_sym_TILDE] = ACTIONS(1364), - [anon_sym_CARET] = ACTIONS(1364), - [anon_sym_AMP] = ACTIONS(1382), - [anon_sym_LT_DASH] = ACTIONS(1384), - [sym_none] = ACTIONS(1386), - [sym_true] = ACTIONS(1386), - [sym_false] = ACTIONS(1386), - [sym_nil] = ACTIONS(1386), - [anon_sym_if] = ACTIONS(1877), - [anon_sym_DOLLARif] = ACTIONS(1390), - [anon_sym_match] = ACTIONS(1392), - [anon_sym_select] = ACTIONS(1394), - [anon_sym_lock] = ACTIONS(1396), - [anon_sym_rlock] = ACTIONS(1396), - [anon_sym_unsafe] = ACTIONS(1883), - [anon_sym_sql] = ACTIONS(1400), - [sym_int_literal] = ACTIONS(1402), - [sym_float_literal] = ACTIONS(1404), - [sym_rune_literal] = ACTIONS(1404), - [sym_pseudo_compile_time_identifier] = ACTIONS(1406), + [anon_sym_BANG] = ACTIONS(1378), + [anon_sym_go] = ACTIONS(1380), + [anon_sym_spawn] = ACTIONS(1382), + [anon_sym_json_DOTdecode] = ACTIONS(1384), + [anon_sym_LBRACK2] = ACTIONS(1386), + [anon_sym_TILDE] = ACTIONS(1370), + [anon_sym_CARET] = ACTIONS(1370), + [anon_sym_AMP] = ACTIONS(1388), + [anon_sym_LT_DASH] = ACTIONS(1390), + [sym_none] = ACTIONS(1392), + [sym_true] = ACTIONS(1392), + [sym_false] = ACTIONS(1392), + [sym_nil] = ACTIONS(1392), + [anon_sym_if] = ACTIONS(1865), + [anon_sym_DOLLARif] = ACTIONS(1396), + [anon_sym_match] = ACTIONS(1398), + [anon_sym_select] = ACTIONS(1400), + [anon_sym_lock] = ACTIONS(1402), + [anon_sym_rlock] = ACTIONS(1402), + [anon_sym_unsafe] = ACTIONS(1871), + [anon_sym_sql] = ACTIONS(1406), + [sym_int_literal] = ACTIONS(1408), + [sym_float_literal] = ACTIONS(1410), + [sym_rune_literal] = ACTIONS(1410), + [sym_pseudo_compile_time_identifier] = ACTIONS(1412), [anon_sym_shared] = ACTIONS(83), [anon_sym_map_LBRACK] = ACTIONS(85), [anon_sym_chan] = ACTIONS(87), [anon_sym_thread] = ACTIONS(89), [anon_sym_atomic] = ACTIONS(91), - [sym___double_quote] = ACTIONS(1408), - [sym___single_quote] = ACTIONS(1410), - [sym___c_double_quote] = ACTIONS(1412), - [sym___c_single_quote] = ACTIONS(1414), - [sym___r_double_quote] = ACTIONS(1416), - [sym___r_single_quote] = ACTIONS(1418), - }, - [358] = { - [sym_line_comment] = STATE(358), - [sym_block_comment] = STATE(358), - [ts_builtin_sym_end] = ACTIONS(2265), - [sym_identifier] = ACTIONS(2267), - [anon_sym_LF] = ACTIONS(2267), - [anon_sym_CR] = ACTIONS(2267), - [anon_sym_CR_LF] = ACTIONS(2267), - [anon_sym_SLASH_SLASH] = ACTIONS(497), - [anon_sym_SLASH_STAR] = ACTIONS(499), - [anon_sym_DOT] = ACTIONS(2267), - [anon_sym_as] = ACTIONS(2267), - [anon_sym_LBRACE] = ACTIONS(2267), - [anon_sym_COMMA] = ACTIONS(2267), - [anon_sym_const] = ACTIONS(2267), - [anon_sym_LPAREN] = ACTIONS(2267), - [anon_sym_EQ] = ACTIONS(2267), - [anon_sym___global] = ACTIONS(2267), - [anon_sym_type] = ACTIONS(2267), - [anon_sym_PIPE] = ACTIONS(2267), - [anon_sym_fn] = ACTIONS(2267), - [anon_sym_PLUS] = ACTIONS(2267), - [anon_sym_DASH] = ACTIONS(2267), - [anon_sym_STAR] = ACTIONS(2267), - [anon_sym_SLASH] = ACTIONS(2267), - [anon_sym_PERCENT] = ACTIONS(2267), - [anon_sym_LT] = ACTIONS(2267), - [anon_sym_GT] = ACTIONS(2267), - [anon_sym_EQ_EQ] = ACTIONS(2267), - [anon_sym_BANG_EQ] = ACTIONS(2267), - [anon_sym_LT_EQ] = ACTIONS(2267), - [anon_sym_GT_EQ] = ACTIONS(2267), - [anon_sym_LBRACK] = ACTIONS(2265), - [anon_sym_struct] = ACTIONS(2267), - [anon_sym_union] = ACTIONS(2267), - [anon_sym_pub] = ACTIONS(2267), - [anon_sym_mut] = ACTIONS(2267), - [anon_sym_enum] = ACTIONS(2267), - [anon_sym_interface] = ACTIONS(2267), - [anon_sym_PLUS_PLUS] = ACTIONS(2267), - [anon_sym_DASH_DASH] = ACTIONS(2267), - [anon_sym_QMARK] = ACTIONS(2267), - [anon_sym_BANG] = ACTIONS(2267), - [anon_sym_go] = ACTIONS(2267), - [anon_sym_spawn] = ACTIONS(2267), - [anon_sym_json_DOTdecode] = ACTIONS(2267), - [anon_sym_LBRACK2] = ACTIONS(2267), - [anon_sym_TILDE] = ACTIONS(2267), - [anon_sym_CARET] = ACTIONS(2267), - [anon_sym_AMP] = ACTIONS(2267), - [anon_sym_LT_DASH] = ACTIONS(2267), - [anon_sym_LT_LT] = ACTIONS(2267), - [anon_sym_GT_GT] = ACTIONS(2267), - [anon_sym_GT_GT_GT] = ACTIONS(2267), - [anon_sym_AMP_CARET] = ACTIONS(2267), - [anon_sym_AMP_AMP] = ACTIONS(2267), - [anon_sym_PIPE_PIPE] = ACTIONS(2267), - [anon_sym_or] = ACTIONS(2267), - [sym_none] = ACTIONS(2267), - [sym_true] = ACTIONS(2267), - [sym_false] = ACTIONS(2267), - [sym_nil] = ACTIONS(2267), - [anon_sym_QMARK_DOT] = ACTIONS(2267), - [anon_sym_POUND_LBRACK] = ACTIONS(2267), - [anon_sym_if] = ACTIONS(2267), - [anon_sym_DOLLARif] = ACTIONS(2267), - [anon_sym_is] = ACTIONS(2267), - [anon_sym_BANGis] = ACTIONS(2267), - [anon_sym_in] = ACTIONS(2267), - [anon_sym_BANGin] = ACTIONS(2267), - [anon_sym_match] = ACTIONS(2267), - [anon_sym_select] = ACTIONS(2267), - [anon_sym_STAR_EQ] = ACTIONS(2267), - [anon_sym_SLASH_EQ] = ACTIONS(2267), - [anon_sym_PERCENT_EQ] = ACTIONS(2267), - [anon_sym_LT_LT_EQ] = ACTIONS(2267), - [anon_sym_GT_GT_EQ] = ACTIONS(2267), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(2267), - [anon_sym_AMP_EQ] = ACTIONS(2267), - [anon_sym_AMP_CARET_EQ] = ACTIONS(2267), - [anon_sym_PLUS_EQ] = ACTIONS(2267), - [anon_sym_DASH_EQ] = ACTIONS(2267), - [anon_sym_PIPE_EQ] = ACTIONS(2267), - [anon_sym_CARET_EQ] = ACTIONS(2267), - [anon_sym_COLON_EQ] = ACTIONS(2267), - [anon_sym_lock] = ACTIONS(2267), - [anon_sym_rlock] = ACTIONS(2267), - [anon_sym_unsafe] = ACTIONS(2267), - [anon_sym_sql] = ACTIONS(2267), - [sym_int_literal] = ACTIONS(2267), - [sym_float_literal] = ACTIONS(2267), - [sym_rune_literal] = ACTIONS(2267), - [sym_pseudo_compile_time_identifier] = ACTIONS(2267), - [anon_sym_shared] = ACTIONS(2267), - [anon_sym_map_LBRACK] = ACTIONS(2267), - [anon_sym_chan] = ACTIONS(2267), - [anon_sym_thread] = ACTIONS(2267), - [anon_sym_atomic] = ACTIONS(2267), - [anon_sym_assert] = ACTIONS(2267), - [anon_sym_defer] = ACTIONS(2267), - [anon_sym_goto] = ACTIONS(2267), - [anon_sym_break] = ACTIONS(2267), - [anon_sym_continue] = ACTIONS(2267), - [anon_sym_return] = ACTIONS(2267), - [anon_sym_DOLLARfor] = ACTIONS(2267), - [anon_sym_for] = ACTIONS(2267), - [anon_sym_POUND] = ACTIONS(2267), - [anon_sym_asm] = ACTIONS(2267), - [anon_sym_AT_LBRACK] = ACTIONS(2267), - [sym___double_quote] = ACTIONS(2267), - [sym___single_quote] = ACTIONS(2267), - [sym___c_double_quote] = ACTIONS(2267), - [sym___c_single_quote] = ACTIONS(2267), - [sym___r_double_quote] = ACTIONS(2267), - [sym___r_single_quote] = ACTIONS(2267), + [sym___double_quote] = ACTIONS(1414), + [sym___single_quote] = ACTIONS(1416), + [sym___c_double_quote] = ACTIONS(1418), + [sym___c_single_quote] = ACTIONS(1420), + [sym___r_double_quote] = ACTIONS(1422), + [sym___r_single_quote] = ACTIONS(1424), }, - [359] = { - [sym_line_comment] = STATE(359), - [sym_block_comment] = STATE(359), - [sym__expression] = STATE(2455), - [sym__expression_without_blocks] = STATE(2300), - [sym__expression_with_blocks] = STATE(2300), - [sym_inc_expression] = STATE(2307), - [sym_dec_expression] = STATE(2307), - [sym_or_block_expression] = STATE(2307), - [sym_option_propagation_expression] = STATE(2307), - [sym_result_propagation_expression] = STATE(2307), - [sym_anon_struct_value_expression] = STATE(2380), - [sym_go_expression] = STATE(2307), - [sym_spawn_expression] = STATE(2307), - [sym_parenthesized_expression] = STATE(2307), - [sym_call_expression] = STATE(2307), - [sym_type_initializer] = STATE(2380), - [sym_function_literal] = STATE(2307), - [sym_reference_expression] = STATE(2311), - [sym_type_reference_expression] = STATE(3541), - [sym_unary_expression] = STATE(2307), - [sym_receive_expression] = STATE(2307), - [sym_binary_expression] = STATE(2307), - [sym_as_type_cast_expression] = STATE(2307), - [sym__max_group] = STATE(2307), - [sym_literal] = STATE(2292), - [sym_map_init_expression] = STATE(2380), - [sym_array_creation] = STATE(2307), - [sym_fixed_array_creation] = STATE(2307), - [sym_selector_expression] = STATE(2307), - [sym_index_expression] = STATE(2307), - [sym_slice_expression] = STATE(2307), - [sym_if_expression] = STATE(2380), - [sym_compile_time_if_expression] = STATE(2380), - [sym_is_expression] = STATE(2307), - [sym_in_expression] = STATE(2307), - [sym_enum_fetch] = STATE(2307), - [sym_match_expression] = STATE(2380), - [sym_select_expression] = STATE(2380), - [sym_lock_expression] = STATE(2380), - [sym_unsafe_expression] = STATE(2380), - [sym_sql_expression] = STATE(2380), - [sym_c_string_literal] = STATE(2308), - [sym_raw_string_literal] = STATE(2308), - [sym_interpreted_string_literal] = STATE(2308), - [sym_mutability_modifiers] = STATE(824), - [sym_mutable_expression] = STATE(3922), - [sym_expression_list] = STATE(4345), - [sym_plain_type] = STATE(4297), - [sym__plain_type_without_special] = STATE(2302), - [sym_anon_struct_type] = STATE(2303), - [sym_multi_return_type] = STATE(2302), - [sym_result_type] = STATE(2302), - [sym_option_type] = STATE(2302), - [sym_qualified_type] = STATE(3541), - [sym_fixed_array_type] = STATE(2303), - [sym_array_type] = STATE(2303), - [sym_pointer_type] = STATE(2303), - [sym_wrong_pointer_type] = STATE(2303), - [sym_map_type] = STATE(2303), - [sym_channel_type] = STATE(2303), - [sym_shared_type] = STATE(2303), - [sym_thread_type] = STATE(2303), - [sym_atomic_type] = STATE(2303), - [sym_generic_type] = STATE(2303), - [sym_function_type] = STATE(2303), - [sym_identifier] = ACTIONS(1807), + [353] = { + [sym_line_comment] = STATE(353), + [sym_block_comment] = STATE(353), + [sym__expression] = STATE(2558), + [sym__expression_without_blocks] = STATE(2347), + [sym__expression_with_blocks] = STATE(2347), + [sym_inc_expression] = STATE(2379), + [sym_dec_expression] = STATE(2379), + [sym_or_block_expression] = STATE(2379), + [sym_option_propagation_expression] = STATE(2379), + [sym_result_propagation_expression] = STATE(2379), + [sym_anon_struct_value_expression] = STATE(2378), + [sym_go_expression] = STATE(2379), + [sym_spawn_expression] = STATE(2379), + [sym_parenthesized_expression] = STATE(2379), + [sym_call_expression] = STATE(2379), + [sym_type_initializer] = STATE(2378), + [sym_function_literal] = STATE(2379), + [sym_reference_expression] = STATE(2377), + [sym_type_reference_expression] = STATE(3460), + [sym_unary_expression] = STATE(2379), + [sym_receive_expression] = STATE(2379), + [sym_binary_expression] = STATE(2379), + [sym_as_type_cast_expression] = STATE(2379), + [sym__max_group] = STATE(2379), + [sym_literal] = STATE(2392), + [sym_map_init_expression] = STATE(2378), + [sym_array_creation] = STATE(2379), + [sym_fixed_array_creation] = STATE(2379), + [sym_selector_expression] = STATE(2379), + [sym_index_expression] = STATE(2379), + [sym_slice_expression] = STATE(2379), + [sym_if_expression] = STATE(2378), + [sym_compile_time_if_expression] = STATE(2378), + [sym_is_expression] = STATE(2379), + [sym_in_expression] = STATE(2379), + [sym_enum_fetch] = STATE(2379), + [sym_match_expression] = STATE(2378), + [sym_select_expression] = STATE(2378), + [sym_lock_expression] = STATE(2378), + [sym_unsafe_expression] = STATE(2378), + [sym_sql_expression] = STATE(2378), + [sym_c_string_literal] = STATE(2401), + [sym_raw_string_literal] = STATE(2401), + [sym_interpreted_string_literal] = STATE(2401), + [sym_mutability_modifiers] = STATE(900), + [sym_mutable_expression] = STATE(3813), + [sym_expression_list] = STATE(4332), + [sym_plain_type] = STATE(4160), + [sym__plain_type_without_special] = STATE(2360), + [sym_anon_struct_type] = STATE(2362), + [sym_multi_return_type] = STATE(2360), + [sym_result_type] = STATE(2360), + [sym_option_type] = STATE(2360), + [sym_qualified_type] = STATE(3460), + [sym_fixed_array_type] = STATE(2362), + [sym_array_type] = STATE(2362), + [sym_pointer_type] = STATE(2362), + [sym_wrong_pointer_type] = STATE(2362), + [sym_map_type] = STATE(2362), + [sym_channel_type] = STATE(2362), + [sym_shared_type] = STATE(2362), + [sym_thread_type] = STATE(2362), + [sym_atomic_type] = STATE(2362), + [sym_generic_type] = STATE(2362), + [sym_function_type] = STATE(2362), + [sym_identifier] = ACTIONS(1815), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1428), - [anon_sym_LBRACE] = ACTIONS(2269), - [anon_sym_LPAREN] = ACTIONS(1432), - [anon_sym_fn] = ACTIONS(1434), - [anon_sym_PLUS] = ACTIONS(1811), - [anon_sym_DASH] = ACTIONS(1811), - [anon_sym_STAR] = ACTIONS(1813), - [anon_sym_struct] = ACTIONS(1440), + [anon_sym_DOT] = ACTIONS(1430), + [anon_sym_LBRACE] = ACTIONS(2287), + [anon_sym_LPAREN] = ACTIONS(1434), + [anon_sym_fn] = ACTIONS(1436), + [anon_sym_PLUS] = ACTIONS(1817), + [anon_sym_DASH] = ACTIONS(1817), + [anon_sym_STAR] = ACTIONS(1819), + [anon_sym_struct] = ACTIONS(1442), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(1815), - [anon_sym_go] = ACTIONS(1817), - [anon_sym_spawn] = ACTIONS(1819), - [anon_sym_json_DOTdecode] = ACTIONS(1448), - [anon_sym_LBRACK2] = ACTIONS(1821), - [anon_sym_TILDE] = ACTIONS(1811), - [anon_sym_CARET] = ACTIONS(1811), - [anon_sym_AMP] = ACTIONS(1823), - [anon_sym_LT_DASH] = ACTIONS(1825), - [sym_none] = ACTIONS(1456), - [sym_true] = ACTIONS(1456), - [sym_false] = ACTIONS(1456), - [sym_nil] = ACTIONS(1456), - [anon_sym_if] = ACTIONS(1827), - [anon_sym_DOLLARif] = ACTIONS(1460), - [anon_sym_match] = ACTIONS(1462), - [anon_sym_select] = ACTIONS(1829), - [anon_sym_lock] = ACTIONS(1831), - [anon_sym_rlock] = ACTIONS(1831), - [anon_sym_unsafe] = ACTIONS(1833), - [anon_sym_sql] = ACTIONS(1470), - [sym_int_literal] = ACTIONS(1456), - [sym_float_literal] = ACTIONS(1472), - [sym_rune_literal] = ACTIONS(1472), - [sym_pseudo_compile_time_identifier] = ACTIONS(1474), + [anon_sym_BANG] = ACTIONS(1821), + [anon_sym_go] = ACTIONS(1823), + [anon_sym_spawn] = ACTIONS(1825), + [anon_sym_json_DOTdecode] = ACTIONS(1450), + [anon_sym_LBRACK2] = ACTIONS(1827), + [anon_sym_TILDE] = ACTIONS(1817), + [anon_sym_CARET] = ACTIONS(1817), + [anon_sym_AMP] = ACTIONS(1829), + [anon_sym_LT_DASH] = ACTIONS(1831), + [sym_none] = ACTIONS(1458), + [sym_true] = ACTIONS(1458), + [sym_false] = ACTIONS(1458), + [sym_nil] = ACTIONS(1458), + [anon_sym_if] = ACTIONS(1833), + [anon_sym_DOLLARif] = ACTIONS(1462), + [anon_sym_match] = ACTIONS(1464), + [anon_sym_select] = ACTIONS(1835), + [anon_sym_lock] = ACTIONS(1837), + [anon_sym_rlock] = ACTIONS(1837), + [anon_sym_unsafe] = ACTIONS(1839), + [anon_sym_sql] = ACTIONS(1472), + [sym_int_literal] = ACTIONS(1458), + [sym_float_literal] = ACTIONS(1474), + [sym_rune_literal] = ACTIONS(1474), + [sym_pseudo_compile_time_identifier] = ACTIONS(1476), [anon_sym_shared] = ACTIONS(83), [anon_sym_map_LBRACK] = ACTIONS(85), [anon_sym_chan] = ACTIONS(87), [anon_sym_thread] = ACTIONS(89), [anon_sym_atomic] = ACTIONS(91), - [sym___double_quote] = ACTIONS(1478), - [sym___single_quote] = ACTIONS(1480), - [sym___c_double_quote] = ACTIONS(1482), - [sym___c_single_quote] = ACTIONS(1484), - [sym___r_double_quote] = ACTIONS(1486), - [sym___r_single_quote] = ACTIONS(1488), + [sym___double_quote] = ACTIONS(1480), + [sym___single_quote] = ACTIONS(1482), + [sym___c_double_quote] = ACTIONS(1484), + [sym___c_single_quote] = ACTIONS(1486), + [sym___r_double_quote] = ACTIONS(1488), + [sym___r_single_quote] = ACTIONS(1490), }, - [360] = { - [sym_line_comment] = STATE(360), - [sym_block_comment] = STATE(360), - [ts_builtin_sym_end] = ACTIONS(2271), - [sym_identifier] = ACTIONS(2273), - [anon_sym_LF] = ACTIONS(2273), - [anon_sym_CR] = ACTIONS(2273), - [anon_sym_CR_LF] = ACTIONS(2273), - [anon_sym_SLASH_SLASH] = ACTIONS(497), - [anon_sym_SLASH_STAR] = ACTIONS(499), - [anon_sym_DOT] = ACTIONS(2273), - [anon_sym_as] = ACTIONS(2273), - [anon_sym_LBRACE] = ACTIONS(2273), - [anon_sym_COMMA] = ACTIONS(2273), - [anon_sym_const] = ACTIONS(2273), - [anon_sym_LPAREN] = ACTIONS(2273), - [anon_sym_EQ] = ACTIONS(2273), - [anon_sym___global] = ACTIONS(2273), - [anon_sym_type] = ACTIONS(2273), - [anon_sym_PIPE] = ACTIONS(2273), - [anon_sym_fn] = ACTIONS(2273), - [anon_sym_PLUS] = ACTIONS(2273), - [anon_sym_DASH] = ACTIONS(2273), - [anon_sym_STAR] = ACTIONS(2273), - [anon_sym_SLASH] = ACTIONS(2273), - [anon_sym_PERCENT] = ACTIONS(2273), - [anon_sym_LT] = ACTIONS(2273), - [anon_sym_GT] = ACTIONS(2273), - [anon_sym_EQ_EQ] = ACTIONS(2273), - [anon_sym_BANG_EQ] = ACTIONS(2273), - [anon_sym_LT_EQ] = ACTIONS(2273), - [anon_sym_GT_EQ] = ACTIONS(2273), - [anon_sym_LBRACK] = ACTIONS(2271), - [anon_sym_struct] = ACTIONS(2273), - [anon_sym_union] = ACTIONS(2273), - [anon_sym_pub] = ACTIONS(2273), - [anon_sym_mut] = ACTIONS(2273), - [anon_sym_enum] = ACTIONS(2273), - [anon_sym_interface] = ACTIONS(2273), - [anon_sym_PLUS_PLUS] = ACTIONS(2273), - [anon_sym_DASH_DASH] = ACTIONS(2273), - [anon_sym_QMARK] = ACTIONS(2273), - [anon_sym_BANG] = ACTIONS(2273), - [anon_sym_go] = ACTIONS(2273), - [anon_sym_spawn] = ACTIONS(2273), - [anon_sym_json_DOTdecode] = ACTIONS(2273), - [anon_sym_LBRACK2] = ACTIONS(2273), - [anon_sym_TILDE] = ACTIONS(2273), - [anon_sym_CARET] = ACTIONS(2273), - [anon_sym_AMP] = ACTIONS(2273), - [anon_sym_LT_DASH] = ACTIONS(2273), - [anon_sym_LT_LT] = ACTIONS(2273), - [anon_sym_GT_GT] = ACTIONS(2273), - [anon_sym_GT_GT_GT] = ACTIONS(2273), - [anon_sym_AMP_CARET] = ACTIONS(2273), - [anon_sym_AMP_AMP] = ACTIONS(2273), - [anon_sym_PIPE_PIPE] = ACTIONS(2273), - [anon_sym_or] = ACTIONS(2273), - [sym_none] = ACTIONS(2273), - [sym_true] = ACTIONS(2273), - [sym_false] = ACTIONS(2273), - [sym_nil] = ACTIONS(2273), - [anon_sym_QMARK_DOT] = ACTIONS(2273), - [anon_sym_POUND_LBRACK] = ACTIONS(2273), - [anon_sym_if] = ACTIONS(2273), - [anon_sym_DOLLARif] = ACTIONS(2273), - [anon_sym_is] = ACTIONS(2273), - [anon_sym_BANGis] = ACTIONS(2273), - [anon_sym_in] = ACTIONS(2273), - [anon_sym_BANGin] = ACTIONS(2273), - [anon_sym_match] = ACTIONS(2273), - [anon_sym_select] = ACTIONS(2273), - [anon_sym_STAR_EQ] = ACTIONS(2273), - [anon_sym_SLASH_EQ] = ACTIONS(2273), - [anon_sym_PERCENT_EQ] = ACTIONS(2273), - [anon_sym_LT_LT_EQ] = ACTIONS(2273), - [anon_sym_GT_GT_EQ] = ACTIONS(2273), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(2273), - [anon_sym_AMP_EQ] = ACTIONS(2273), - [anon_sym_AMP_CARET_EQ] = ACTIONS(2273), - [anon_sym_PLUS_EQ] = ACTIONS(2273), - [anon_sym_DASH_EQ] = ACTIONS(2273), - [anon_sym_PIPE_EQ] = ACTIONS(2273), - [anon_sym_CARET_EQ] = ACTIONS(2273), - [anon_sym_COLON_EQ] = ACTIONS(2273), - [anon_sym_lock] = ACTIONS(2273), - [anon_sym_rlock] = ACTIONS(2273), - [anon_sym_unsafe] = ACTIONS(2273), - [anon_sym_sql] = ACTIONS(2273), - [sym_int_literal] = ACTIONS(2273), - [sym_float_literal] = ACTIONS(2273), - [sym_rune_literal] = ACTIONS(2273), - [sym_pseudo_compile_time_identifier] = ACTIONS(2273), - [anon_sym_shared] = ACTIONS(2273), - [anon_sym_map_LBRACK] = ACTIONS(2273), - [anon_sym_chan] = ACTIONS(2273), - [anon_sym_thread] = ACTIONS(2273), - [anon_sym_atomic] = ACTIONS(2273), - [anon_sym_assert] = ACTIONS(2273), - [anon_sym_defer] = ACTIONS(2273), - [anon_sym_goto] = ACTIONS(2273), - [anon_sym_break] = ACTIONS(2273), - [anon_sym_continue] = ACTIONS(2273), - [anon_sym_return] = ACTIONS(2273), - [anon_sym_DOLLARfor] = ACTIONS(2273), - [anon_sym_for] = ACTIONS(2273), - [anon_sym_POUND] = ACTIONS(2273), - [anon_sym_asm] = ACTIONS(2273), - [anon_sym_AT_LBRACK] = ACTIONS(2273), - [sym___double_quote] = ACTIONS(2273), - [sym___single_quote] = ACTIONS(2273), - [sym___c_double_quote] = ACTIONS(2273), - [sym___c_single_quote] = ACTIONS(2273), - [sym___r_double_quote] = ACTIONS(2273), - [sym___r_single_quote] = ACTIONS(2273), - }, - [361] = { - [sym_line_comment] = STATE(361), - [sym_block_comment] = STATE(361), - [sym__expression] = STATE(1268), - [sym__expression_without_blocks] = STATE(1312), - [sym__expression_with_blocks] = STATE(1312), - [sym_inc_expression] = STATE(1313), - [sym_dec_expression] = STATE(1313), - [sym_or_block_expression] = STATE(1313), - [sym_option_propagation_expression] = STATE(1313), - [sym_result_propagation_expression] = STATE(1313), - [sym_anon_struct_value_expression] = STATE(1314), - [sym_go_expression] = STATE(1313), - [sym_spawn_expression] = STATE(1313), - [sym_parenthesized_expression] = STATE(1313), - [sym_call_expression] = STATE(1313), - [sym_type_initializer] = STATE(1314), - [sym_function_literal] = STATE(1313), - [sym_reference_expression] = STATE(1334), - [sym_type_reference_expression] = STATE(3541), - [sym_unary_expression] = STATE(1313), - [sym_receive_expression] = STATE(1313), - [sym_binary_expression] = STATE(1313), - [sym_as_type_cast_expression] = STATE(1313), - [sym__max_group] = STATE(1313), - [sym_literal] = STATE(1308), - [sym_map_init_expression] = STATE(1314), - [sym_array_creation] = STATE(1313), - [sym_fixed_array_creation] = STATE(1313), - [sym_selector_expression] = STATE(1313), - [sym_index_expression] = STATE(1313), - [sym_slice_expression] = STATE(1313), - [sym_if_expression] = STATE(1314), - [sym_compile_time_if_expression] = STATE(1314), - [sym_is_expression] = STATE(1313), - [sym_in_expression] = STATE(1313), - [sym_enum_fetch] = STATE(1313), - [sym_match_expression] = STATE(1314), - [sym_select_expression] = STATE(1314), - [sym_lock_expression] = STATE(1314), - [sym_unsafe_expression] = STATE(1314), - [sym_sql_expression] = STATE(1314), - [sym_c_string_literal] = STATE(1286), - [sym_raw_string_literal] = STATE(1286), - [sym_interpreted_string_literal] = STATE(1286), - [sym_mutability_modifiers] = STATE(699), - [sym_plain_type] = STATE(4192), - [sym__plain_type_without_special] = STATE(2302), - [sym_anon_struct_type] = STATE(2303), - [sym_multi_return_type] = STATE(2302), - [sym_result_type] = STATE(2302), - [sym_option_type] = STATE(2302), - [sym_qualified_type] = STATE(3541), - [sym_fixed_array_type] = STATE(2303), - [sym_array_type] = STATE(2303), - [sym_pointer_type] = STATE(2303), - [sym_wrong_pointer_type] = STATE(2303), - [sym_map_type] = STATE(2303), - [sym_channel_type] = STATE(2303), - [sym_shared_type] = STATE(2303), - [sym_thread_type] = STATE(2303), - [sym_atomic_type] = STATE(2303), - [sym_generic_type] = STATE(2303), - [sym_function_type] = STATE(2303), - [aux_sym__array_repeat1] = STATE(404), - [sym_identifier] = ACTIONS(1354), + [354] = { + [sym_line_comment] = STATE(354), + [sym_block_comment] = STATE(354), + [sym__expression] = STATE(2609), + [sym__expression_without_blocks] = STATE(2347), + [sym__expression_with_blocks] = STATE(2347), + [sym_inc_expression] = STATE(2379), + [sym_dec_expression] = STATE(2379), + [sym_or_block_expression] = STATE(2379), + [sym_option_propagation_expression] = STATE(2379), + [sym_result_propagation_expression] = STATE(2379), + [sym_anon_struct_value_expression] = STATE(2378), + [sym_go_expression] = STATE(2379), + [sym_spawn_expression] = STATE(2379), + [sym_parenthesized_expression] = STATE(2379), + [sym_call_expression] = STATE(2379), + [sym_type_initializer] = STATE(2378), + [sym_function_literal] = STATE(2379), + [sym_reference_expression] = STATE(2377), + [sym_type_reference_expression] = STATE(3460), + [sym_unary_expression] = STATE(2379), + [sym_receive_expression] = STATE(2379), + [sym_binary_expression] = STATE(2379), + [sym_as_type_cast_expression] = STATE(2379), + [sym__max_group] = STATE(2379), + [sym_literal] = STATE(2392), + [sym_map_init_expression] = STATE(2378), + [sym_array_creation] = STATE(2379), + [sym_fixed_array_creation] = STATE(2379), + [sym_selector_expression] = STATE(2379), + [sym_index_expression] = STATE(2379), + [sym_slice_expression] = STATE(2379), + [sym_if_expression] = STATE(2378), + [sym_compile_time_if_expression] = STATE(2378), + [sym_is_expression] = STATE(2379), + [sym_in_expression] = STATE(2379), + [sym_enum_fetch] = STATE(2379), + [sym_match_expression] = STATE(2378), + [sym_select_expression] = STATE(2378), + [sym_lock_expression] = STATE(2378), + [sym_unsafe_expression] = STATE(2378), + [sym_sql_expression] = STATE(2378), + [sym_c_string_literal] = STATE(2401), + [sym_raw_string_literal] = STATE(2401), + [sym_interpreted_string_literal] = STATE(2401), + [sym_mutability_modifiers] = STATE(939), + [sym_plain_type] = STATE(3569), + [sym__plain_type_without_special] = STATE(2360), + [sym_anon_struct_type] = STATE(2362), + [sym_multi_return_type] = STATE(2360), + [sym_result_type] = STATE(2360), + [sym_option_type] = STATE(2360), + [sym_qualified_type] = STATE(3460), + [sym_fixed_array_type] = STATE(2362), + [sym_array_type] = STATE(2362), + [sym_pointer_type] = STATE(2362), + [sym_wrong_pointer_type] = STATE(2362), + [sym_map_type] = STATE(2362), + [sym_channel_type] = STATE(2362), + [sym_shared_type] = STATE(2362), + [sym_thread_type] = STATE(2362), + [sym_atomic_type] = STATE(2362), + [sym_generic_type] = STATE(2362), + [sym_function_type] = STATE(2362), + [sym_range] = STATE(4440), + [sym_identifier] = ACTIONS(2127), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1356), - [anon_sym_LBRACE] = ACTIONS(1358), - [anon_sym_LPAREN] = ACTIONS(1360), - [anon_sym_fn] = ACTIONS(1362), - [anon_sym_PLUS] = ACTIONS(1364), - [anon_sym_DASH] = ACTIONS(1364), - [anon_sym_STAR] = ACTIONS(1366), - [anon_sym_RBRACK] = ACTIONS(2275), - [anon_sym_struct] = ACTIONS(1370), + [anon_sym_DOT] = ACTIONS(1430), + [anon_sym_LBRACE] = ACTIONS(1432), + [anon_sym_LPAREN] = ACTIONS(1434), + [anon_sym_fn] = ACTIONS(1436), + [anon_sym_PLUS] = ACTIONS(1438), + [anon_sym_DASH] = ACTIONS(1438), + [anon_sym_STAR] = ACTIONS(2129), + [anon_sym_struct] = ACTIONS(1442), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(1372), - [anon_sym_go] = ACTIONS(1374), - [anon_sym_spawn] = ACTIONS(1376), - [anon_sym_json_DOTdecode] = ACTIONS(1378), - [anon_sym_LBRACK2] = ACTIONS(1380), - [anon_sym_TILDE] = ACTIONS(1364), - [anon_sym_CARET] = ACTIONS(1364), - [anon_sym_AMP] = ACTIONS(1382), - [anon_sym_LT_DASH] = ACTIONS(1384), - [sym_none] = ACTIONS(1386), - [sym_true] = ACTIONS(1386), - [sym_false] = ACTIONS(1386), - [sym_nil] = ACTIONS(1386), - [anon_sym_if] = ACTIONS(1877), - [anon_sym_DOLLARif] = ACTIONS(1390), - [anon_sym_match] = ACTIONS(1392), - [anon_sym_select] = ACTIONS(1394), - [anon_sym_lock] = ACTIONS(1396), - [anon_sym_rlock] = ACTIONS(1396), - [anon_sym_unsafe] = ACTIONS(1883), - [anon_sym_sql] = ACTIONS(1400), - [sym_int_literal] = ACTIONS(1386), - [sym_float_literal] = ACTIONS(1404), - [sym_rune_literal] = ACTIONS(1404), - [sym_pseudo_compile_time_identifier] = ACTIONS(1406), + [anon_sym_BANG] = ACTIONS(2131), + [anon_sym_go] = ACTIONS(1446), + [anon_sym_spawn] = ACTIONS(1448), + [anon_sym_json_DOTdecode] = ACTIONS(1450), + [anon_sym_LBRACK2] = ACTIONS(1452), + [anon_sym_TILDE] = ACTIONS(1438), + [anon_sym_CARET] = ACTIONS(1438), + [anon_sym_AMP] = ACTIONS(2133), + [anon_sym_LT_DASH] = ACTIONS(1456), + [sym_none] = ACTIONS(1458), + [sym_true] = ACTIONS(1458), + [sym_false] = ACTIONS(1458), + [sym_nil] = ACTIONS(1458), + [anon_sym_if] = ACTIONS(1833), + [anon_sym_DOLLARif] = ACTIONS(1462), + [anon_sym_match] = ACTIONS(1464), + [anon_sym_select] = ACTIONS(1466), + [anon_sym_lock] = ACTIONS(1468), + [anon_sym_rlock] = ACTIONS(1468), + [anon_sym_unsafe] = ACTIONS(1839), + [anon_sym_sql] = ACTIONS(1472), + [sym_int_literal] = ACTIONS(1458), + [sym_float_literal] = ACTIONS(1474), + [sym_rune_literal] = ACTIONS(1474), + [sym_pseudo_compile_time_identifier] = ACTIONS(1476), [anon_sym_shared] = ACTIONS(83), [anon_sym_map_LBRACK] = ACTIONS(85), [anon_sym_chan] = ACTIONS(87), [anon_sym_thread] = ACTIONS(89), [anon_sym_atomic] = ACTIONS(91), - [sym___double_quote] = ACTIONS(1408), - [sym___single_quote] = ACTIONS(1410), - [sym___c_double_quote] = ACTIONS(1412), - [sym___c_single_quote] = ACTIONS(1414), - [sym___r_double_quote] = ACTIONS(1416), - [sym___r_single_quote] = ACTIONS(1418), + [anon_sym_DOT_DOT] = ACTIONS(1478), + [sym___double_quote] = ACTIONS(1480), + [sym___single_quote] = ACTIONS(1482), + [sym___c_double_quote] = ACTIONS(1484), + [sym___c_single_quote] = ACTIONS(1486), + [sym___r_double_quote] = ACTIONS(1488), + [sym___r_single_quote] = ACTIONS(1490), }, - [362] = { - [sym_line_comment] = STATE(362), - [sym_block_comment] = STATE(362), - [sym__expression] = STATE(2455), - [sym__expression_without_blocks] = STATE(2300), - [sym__expression_with_blocks] = STATE(2300), - [sym_inc_expression] = STATE(2307), - [sym_dec_expression] = STATE(2307), - [sym_or_block_expression] = STATE(2307), - [sym_option_propagation_expression] = STATE(2307), - [sym_result_propagation_expression] = STATE(2307), - [sym_anon_struct_value_expression] = STATE(2380), - [sym_go_expression] = STATE(2307), - [sym_spawn_expression] = STATE(2307), - [sym_parenthesized_expression] = STATE(2307), - [sym_call_expression] = STATE(2307), - [sym_type_initializer] = STATE(2380), - [sym_function_literal] = STATE(2307), - [sym_reference_expression] = STATE(2311), - [sym_type_reference_expression] = STATE(3541), - [sym_unary_expression] = STATE(2307), - [sym_receive_expression] = STATE(2307), - [sym_binary_expression] = STATE(2307), - [sym_as_type_cast_expression] = STATE(2307), - [sym__max_group] = STATE(2307), - [sym_literal] = STATE(2292), - [sym_map_init_expression] = STATE(2380), - [sym_array_creation] = STATE(2307), - [sym_fixed_array_creation] = STATE(2307), - [sym_selector_expression] = STATE(2307), - [sym_index_expression] = STATE(2307), - [sym_slice_expression] = STATE(2307), - [sym_if_expression] = STATE(2380), - [sym_compile_time_if_expression] = STATE(2380), - [sym_is_expression] = STATE(2307), - [sym_in_expression] = STATE(2307), - [sym_enum_fetch] = STATE(2307), - [sym_match_expression] = STATE(2380), - [sym_select_expression] = STATE(2380), - [sym_lock_expression] = STATE(2380), - [sym_unsafe_expression] = STATE(2380), - [sym_sql_expression] = STATE(2380), - [sym_c_string_literal] = STATE(2308), - [sym_raw_string_literal] = STATE(2308), - [sym_interpreted_string_literal] = STATE(2308), - [sym_mutability_modifiers] = STATE(824), - [sym_mutable_expression] = STATE(3922), - [sym_expression_list] = STATE(4345), - [sym_plain_type] = STATE(4297), - [sym__plain_type_without_special] = STATE(2302), - [sym_anon_struct_type] = STATE(2303), - [sym_multi_return_type] = STATE(2302), - [sym_result_type] = STATE(2302), - [sym_option_type] = STATE(2302), - [sym_qualified_type] = STATE(3541), - [sym_fixed_array_type] = STATE(2303), - [sym_array_type] = STATE(2303), - [sym_pointer_type] = STATE(2303), - [sym_wrong_pointer_type] = STATE(2303), - [sym_map_type] = STATE(2303), - [sym_channel_type] = STATE(2303), - [sym_shared_type] = STATE(2303), - [sym_thread_type] = STATE(2303), - [sym_atomic_type] = STATE(2303), - [sym_generic_type] = STATE(2303), - [sym_function_type] = STATE(2303), - [sym_identifier] = ACTIONS(1807), + [355] = { + [sym_line_comment] = STATE(355), + [sym_block_comment] = STATE(355), + [sym__expression] = STATE(1273), + [sym__expression_without_blocks] = STATE(1318), + [sym__expression_with_blocks] = STATE(1318), + [sym_inc_expression] = STATE(1319), + [sym_dec_expression] = STATE(1319), + [sym_or_block_expression] = STATE(1319), + [sym_option_propagation_expression] = STATE(1319), + [sym_result_propagation_expression] = STATE(1319), + [sym_anon_struct_value_expression] = STATE(1320), + [sym_go_expression] = STATE(1319), + [sym_spawn_expression] = STATE(1319), + [sym_parenthesized_expression] = STATE(1319), + [sym_call_expression] = STATE(1319), + [sym_type_initializer] = STATE(1320), + [sym_function_literal] = STATE(1319), + [sym_reference_expression] = STATE(1397), + [sym_type_reference_expression] = STATE(3460), + [sym_unary_expression] = STATE(1319), + [sym_receive_expression] = STATE(1319), + [sym_binary_expression] = STATE(1319), + [sym_as_type_cast_expression] = STATE(1319), + [sym__max_group] = STATE(1319), + [sym_literal] = STATE(1314), + [sym_map_init_expression] = STATE(1320), + [sym_array_creation] = STATE(1319), + [sym_fixed_array_creation] = STATE(1319), + [sym_selector_expression] = STATE(1399), + [sym_index_expression] = STATE(1319), + [sym_slice_expression] = STATE(1319), + [sym_if_expression] = STATE(1320), + [sym_compile_time_if_expression] = STATE(1320), + [sym_is_expression] = STATE(1319), + [sym_in_expression] = STATE(1319), + [sym_enum_fetch] = STATE(1319), + [sym_match_expression] = STATE(1320), + [sym_select_expression] = STATE(1320), + [sym_lock_expression] = STATE(1320), + [sym_unsafe_expression] = STATE(1320), + [sym_sql_expression] = STATE(1320), + [sym_c_string_literal] = STATE(1291), + [sym_raw_string_literal] = STATE(1291), + [sym_interpreted_string_literal] = STATE(1291), + [sym_mutability_modifiers] = STATE(639), + [sym_plain_type] = STATE(4307), + [sym__plain_type_without_special] = STATE(2360), + [sym_anon_struct_type] = STATE(2362), + [sym_multi_return_type] = STATE(2360), + [sym_result_type] = STATE(2360), + [sym_option_type] = STATE(2360), + [sym_qualified_type] = STATE(3460), + [sym_fixed_array_type] = STATE(2362), + [sym_array_type] = STATE(2362), + [sym_pointer_type] = STATE(2362), + [sym_wrong_pointer_type] = STATE(2362), + [sym_map_type] = STATE(2362), + [sym_channel_type] = STATE(2362), + [sym_shared_type] = STATE(2362), + [sym_thread_type] = STATE(2362), + [sym_atomic_type] = STATE(2362), + [sym_generic_type] = STATE(2362), + [sym_function_type] = STATE(2362), + [aux_sym__array_repeat1] = STATE(407), + [sym_identifier] = ACTIONS(1360), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1428), - [anon_sym_LBRACE] = ACTIONS(2277), - [anon_sym_LPAREN] = ACTIONS(1432), - [anon_sym_fn] = ACTIONS(1434), - [anon_sym_PLUS] = ACTIONS(1811), - [anon_sym_DASH] = ACTIONS(1811), - [anon_sym_STAR] = ACTIONS(1813), - [anon_sym_struct] = ACTIONS(1440), + [anon_sym_DOT] = ACTIONS(1362), + [anon_sym_LBRACE] = ACTIONS(1364), + [anon_sym_LPAREN] = ACTIONS(1366), + [anon_sym_fn] = ACTIONS(1368), + [anon_sym_PLUS] = ACTIONS(1370), + [anon_sym_DASH] = ACTIONS(1370), + [anon_sym_STAR] = ACTIONS(1372), + [anon_sym_RBRACK] = ACTIONS(2289), + [anon_sym_struct] = ACTIONS(1376), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(1815), - [anon_sym_go] = ACTIONS(1817), - [anon_sym_spawn] = ACTIONS(1819), - [anon_sym_json_DOTdecode] = ACTIONS(1448), - [anon_sym_LBRACK2] = ACTIONS(1821), - [anon_sym_TILDE] = ACTIONS(1811), - [anon_sym_CARET] = ACTIONS(1811), - [anon_sym_AMP] = ACTIONS(1823), - [anon_sym_LT_DASH] = ACTIONS(1825), - [sym_none] = ACTIONS(1456), - [sym_true] = ACTIONS(1456), - [sym_false] = ACTIONS(1456), - [sym_nil] = ACTIONS(1456), - [anon_sym_if] = ACTIONS(1827), - [anon_sym_DOLLARif] = ACTIONS(1460), - [anon_sym_match] = ACTIONS(1462), - [anon_sym_select] = ACTIONS(1829), - [anon_sym_lock] = ACTIONS(1831), - [anon_sym_rlock] = ACTIONS(1831), - [anon_sym_unsafe] = ACTIONS(1833), - [anon_sym_sql] = ACTIONS(1470), - [sym_int_literal] = ACTIONS(1456), - [sym_float_literal] = ACTIONS(1472), - [sym_rune_literal] = ACTIONS(1472), - [sym_pseudo_compile_time_identifier] = ACTIONS(1474), + [anon_sym_BANG] = ACTIONS(1378), + [anon_sym_go] = ACTIONS(1380), + [anon_sym_spawn] = ACTIONS(1382), + [anon_sym_json_DOTdecode] = ACTIONS(1384), + [anon_sym_LBRACK2] = ACTIONS(1386), + [anon_sym_TILDE] = ACTIONS(1370), + [anon_sym_CARET] = ACTIONS(1370), + [anon_sym_AMP] = ACTIONS(1388), + [anon_sym_LT_DASH] = ACTIONS(1390), + [sym_none] = ACTIONS(1392), + [sym_true] = ACTIONS(1392), + [sym_false] = ACTIONS(1392), + [sym_nil] = ACTIONS(1392), + [anon_sym_if] = ACTIONS(1865), + [anon_sym_DOLLARif] = ACTIONS(1396), + [anon_sym_match] = ACTIONS(1398), + [anon_sym_select] = ACTIONS(1400), + [anon_sym_lock] = ACTIONS(1402), + [anon_sym_rlock] = ACTIONS(1402), + [anon_sym_unsafe] = ACTIONS(1871), + [anon_sym_sql] = ACTIONS(1406), + [sym_int_literal] = ACTIONS(1408), + [sym_float_literal] = ACTIONS(1410), + [sym_rune_literal] = ACTIONS(1410), + [sym_pseudo_compile_time_identifier] = ACTIONS(1412), [anon_sym_shared] = ACTIONS(83), [anon_sym_map_LBRACK] = ACTIONS(85), [anon_sym_chan] = ACTIONS(87), [anon_sym_thread] = ACTIONS(89), [anon_sym_atomic] = ACTIONS(91), - [sym___double_quote] = ACTIONS(1478), - [sym___single_quote] = ACTIONS(1480), - [sym___c_double_quote] = ACTIONS(1482), - [sym___c_single_quote] = ACTIONS(1484), - [sym___r_double_quote] = ACTIONS(1486), - [sym___r_single_quote] = ACTIONS(1488), - }, - [363] = { - [sym_line_comment] = STATE(363), - [sym_block_comment] = STATE(363), - [ts_builtin_sym_end] = ACTIONS(2279), - [sym_identifier] = ACTIONS(2281), - [anon_sym_LF] = ACTIONS(2281), - [anon_sym_CR] = ACTIONS(2281), - [anon_sym_CR_LF] = ACTIONS(2281), - [anon_sym_SLASH_SLASH] = ACTIONS(497), - [anon_sym_SLASH_STAR] = ACTIONS(499), - [anon_sym_DOT] = ACTIONS(2281), - [anon_sym_as] = ACTIONS(2281), - [anon_sym_LBRACE] = ACTIONS(2281), - [anon_sym_COMMA] = ACTIONS(2281), - [anon_sym_const] = ACTIONS(2281), - [anon_sym_LPAREN] = ACTIONS(2281), - [anon_sym_EQ] = ACTIONS(2281), - [anon_sym___global] = ACTIONS(2281), - [anon_sym_type] = ACTIONS(2281), - [anon_sym_PIPE] = ACTIONS(2281), - [anon_sym_fn] = ACTIONS(2281), - [anon_sym_PLUS] = ACTIONS(2281), - [anon_sym_DASH] = ACTIONS(2281), - [anon_sym_STAR] = ACTIONS(2281), - [anon_sym_SLASH] = ACTIONS(2281), - [anon_sym_PERCENT] = ACTIONS(2281), - [anon_sym_LT] = ACTIONS(2281), - [anon_sym_GT] = ACTIONS(2281), - [anon_sym_EQ_EQ] = ACTIONS(2281), - [anon_sym_BANG_EQ] = ACTIONS(2281), - [anon_sym_LT_EQ] = ACTIONS(2281), - [anon_sym_GT_EQ] = ACTIONS(2281), - [anon_sym_LBRACK] = ACTIONS(2279), - [anon_sym_struct] = ACTIONS(2281), - [anon_sym_union] = ACTIONS(2281), - [anon_sym_pub] = ACTIONS(2281), - [anon_sym_mut] = ACTIONS(2281), - [anon_sym_enum] = ACTIONS(2281), - [anon_sym_interface] = ACTIONS(2281), - [anon_sym_PLUS_PLUS] = ACTIONS(2281), - [anon_sym_DASH_DASH] = ACTIONS(2281), - [anon_sym_QMARK] = ACTIONS(2281), - [anon_sym_BANG] = ACTIONS(2281), - [anon_sym_go] = ACTIONS(2281), - [anon_sym_spawn] = ACTIONS(2281), - [anon_sym_json_DOTdecode] = ACTIONS(2281), - [anon_sym_LBRACK2] = ACTIONS(2281), - [anon_sym_TILDE] = ACTIONS(2281), - [anon_sym_CARET] = ACTIONS(2281), - [anon_sym_AMP] = ACTIONS(2281), - [anon_sym_LT_DASH] = ACTIONS(2281), - [anon_sym_LT_LT] = ACTIONS(2281), - [anon_sym_GT_GT] = ACTIONS(2281), - [anon_sym_GT_GT_GT] = ACTIONS(2281), - [anon_sym_AMP_CARET] = ACTIONS(2281), - [anon_sym_AMP_AMP] = ACTIONS(2281), - [anon_sym_PIPE_PIPE] = ACTIONS(2281), - [anon_sym_or] = ACTIONS(2281), - [sym_none] = ACTIONS(2281), - [sym_true] = ACTIONS(2281), - [sym_false] = ACTIONS(2281), - [sym_nil] = ACTIONS(2281), - [anon_sym_QMARK_DOT] = ACTIONS(2281), - [anon_sym_POUND_LBRACK] = ACTIONS(2281), - [anon_sym_if] = ACTIONS(2281), - [anon_sym_DOLLARif] = ACTIONS(2281), - [anon_sym_is] = ACTIONS(2281), - [anon_sym_BANGis] = ACTIONS(2281), - [anon_sym_in] = ACTIONS(2281), - [anon_sym_BANGin] = ACTIONS(2281), - [anon_sym_match] = ACTIONS(2281), - [anon_sym_select] = ACTIONS(2281), - [anon_sym_STAR_EQ] = ACTIONS(2281), - [anon_sym_SLASH_EQ] = ACTIONS(2281), - [anon_sym_PERCENT_EQ] = ACTIONS(2281), - [anon_sym_LT_LT_EQ] = ACTIONS(2281), - [anon_sym_GT_GT_EQ] = ACTIONS(2281), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(2281), - [anon_sym_AMP_EQ] = ACTIONS(2281), - [anon_sym_AMP_CARET_EQ] = ACTIONS(2281), - [anon_sym_PLUS_EQ] = ACTIONS(2281), - [anon_sym_DASH_EQ] = ACTIONS(2281), - [anon_sym_PIPE_EQ] = ACTIONS(2281), - [anon_sym_CARET_EQ] = ACTIONS(2281), - [anon_sym_COLON_EQ] = ACTIONS(2281), - [anon_sym_lock] = ACTIONS(2281), - [anon_sym_rlock] = ACTIONS(2281), - [anon_sym_unsafe] = ACTIONS(2281), - [anon_sym_sql] = ACTIONS(2281), - [sym_int_literal] = ACTIONS(2281), - [sym_float_literal] = ACTIONS(2281), - [sym_rune_literal] = ACTIONS(2281), - [sym_pseudo_compile_time_identifier] = ACTIONS(2281), - [anon_sym_shared] = ACTIONS(2281), - [anon_sym_map_LBRACK] = ACTIONS(2281), - [anon_sym_chan] = ACTIONS(2281), - [anon_sym_thread] = ACTIONS(2281), - [anon_sym_atomic] = ACTIONS(2281), - [anon_sym_assert] = ACTIONS(2281), - [anon_sym_defer] = ACTIONS(2281), - [anon_sym_goto] = ACTIONS(2281), - [anon_sym_break] = ACTIONS(2281), - [anon_sym_continue] = ACTIONS(2281), - [anon_sym_return] = ACTIONS(2281), - [anon_sym_DOLLARfor] = ACTIONS(2281), - [anon_sym_for] = ACTIONS(2281), - [anon_sym_POUND] = ACTIONS(2281), - [anon_sym_asm] = ACTIONS(2281), - [anon_sym_AT_LBRACK] = ACTIONS(2281), - [sym___double_quote] = ACTIONS(2281), - [sym___single_quote] = ACTIONS(2281), - [sym___c_double_quote] = ACTIONS(2281), - [sym___c_single_quote] = ACTIONS(2281), - [sym___r_double_quote] = ACTIONS(2281), - [sym___r_single_quote] = ACTIONS(2281), - }, - [364] = { - [sym_line_comment] = STATE(364), - [sym_block_comment] = STATE(364), - [ts_builtin_sym_end] = ACTIONS(2283), - [sym_identifier] = ACTIONS(2285), - [anon_sym_LF] = ACTIONS(2285), - [anon_sym_CR] = ACTIONS(2285), - [anon_sym_CR_LF] = ACTIONS(2285), - [anon_sym_SLASH_SLASH] = ACTIONS(497), - [anon_sym_SLASH_STAR] = ACTIONS(499), - [anon_sym_DOT] = ACTIONS(2285), - [anon_sym_as] = ACTIONS(2285), - [anon_sym_LBRACE] = ACTIONS(2285), - [anon_sym_COMMA] = ACTIONS(2285), - [anon_sym_const] = ACTIONS(2285), - [anon_sym_LPAREN] = ACTIONS(2285), - [anon_sym_EQ] = ACTIONS(2285), - [anon_sym___global] = ACTIONS(2285), - [anon_sym_type] = ACTIONS(2285), - [anon_sym_PIPE] = ACTIONS(2285), - [anon_sym_fn] = ACTIONS(2285), - [anon_sym_PLUS] = ACTIONS(2285), - [anon_sym_DASH] = ACTIONS(2285), - [anon_sym_STAR] = ACTIONS(2285), - [anon_sym_SLASH] = ACTIONS(2285), - [anon_sym_PERCENT] = ACTIONS(2285), - [anon_sym_LT] = ACTIONS(2285), - [anon_sym_GT] = ACTIONS(2285), - [anon_sym_EQ_EQ] = ACTIONS(2285), - [anon_sym_BANG_EQ] = ACTIONS(2285), - [anon_sym_LT_EQ] = ACTIONS(2285), - [anon_sym_GT_EQ] = ACTIONS(2285), - [anon_sym_LBRACK] = ACTIONS(2283), - [anon_sym_struct] = ACTIONS(2285), - [anon_sym_union] = ACTIONS(2285), - [anon_sym_pub] = ACTIONS(2285), - [anon_sym_mut] = ACTIONS(2285), - [anon_sym_enum] = ACTIONS(2285), - [anon_sym_interface] = ACTIONS(2285), - [anon_sym_PLUS_PLUS] = ACTIONS(2285), - [anon_sym_DASH_DASH] = ACTIONS(2285), - [anon_sym_QMARK] = ACTIONS(2285), - [anon_sym_BANG] = ACTIONS(2285), - [anon_sym_go] = ACTIONS(2285), - [anon_sym_spawn] = ACTIONS(2285), - [anon_sym_json_DOTdecode] = ACTIONS(2285), - [anon_sym_LBRACK2] = ACTIONS(2285), - [anon_sym_TILDE] = ACTIONS(2285), - [anon_sym_CARET] = ACTIONS(2285), - [anon_sym_AMP] = ACTIONS(2285), - [anon_sym_LT_DASH] = ACTIONS(2285), - [anon_sym_LT_LT] = ACTIONS(2285), - [anon_sym_GT_GT] = ACTIONS(2285), - [anon_sym_GT_GT_GT] = ACTIONS(2285), - [anon_sym_AMP_CARET] = ACTIONS(2285), - [anon_sym_AMP_AMP] = ACTIONS(2285), - [anon_sym_PIPE_PIPE] = ACTIONS(2285), - [anon_sym_or] = ACTIONS(2285), - [sym_none] = ACTIONS(2285), - [sym_true] = ACTIONS(2285), - [sym_false] = ACTIONS(2285), - [sym_nil] = ACTIONS(2285), - [anon_sym_QMARK_DOT] = ACTIONS(2285), - [anon_sym_POUND_LBRACK] = ACTIONS(2285), - [anon_sym_if] = ACTIONS(2285), - [anon_sym_DOLLARif] = ACTIONS(2285), - [anon_sym_is] = ACTIONS(2285), - [anon_sym_BANGis] = ACTIONS(2285), - [anon_sym_in] = ACTIONS(2285), - [anon_sym_BANGin] = ACTIONS(2285), - [anon_sym_match] = ACTIONS(2285), - [anon_sym_select] = ACTIONS(2285), - [anon_sym_STAR_EQ] = ACTIONS(2285), - [anon_sym_SLASH_EQ] = ACTIONS(2285), - [anon_sym_PERCENT_EQ] = ACTIONS(2285), - [anon_sym_LT_LT_EQ] = ACTIONS(2285), - [anon_sym_GT_GT_EQ] = ACTIONS(2285), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(2285), - [anon_sym_AMP_EQ] = ACTIONS(2285), - [anon_sym_AMP_CARET_EQ] = ACTIONS(2285), - [anon_sym_PLUS_EQ] = ACTIONS(2285), - [anon_sym_DASH_EQ] = ACTIONS(2285), - [anon_sym_PIPE_EQ] = ACTIONS(2285), - [anon_sym_CARET_EQ] = ACTIONS(2285), - [anon_sym_COLON_EQ] = ACTIONS(2285), - [anon_sym_lock] = ACTIONS(2285), - [anon_sym_rlock] = ACTIONS(2285), - [anon_sym_unsafe] = ACTIONS(2285), - [anon_sym_sql] = ACTIONS(2285), - [sym_int_literal] = ACTIONS(2285), - [sym_float_literal] = ACTIONS(2285), - [sym_rune_literal] = ACTIONS(2285), - [sym_pseudo_compile_time_identifier] = ACTIONS(2285), - [anon_sym_shared] = ACTIONS(2285), - [anon_sym_map_LBRACK] = ACTIONS(2285), - [anon_sym_chan] = ACTIONS(2285), - [anon_sym_thread] = ACTIONS(2285), - [anon_sym_atomic] = ACTIONS(2285), - [anon_sym_assert] = ACTIONS(2285), - [anon_sym_defer] = ACTIONS(2285), - [anon_sym_goto] = ACTIONS(2285), - [anon_sym_break] = ACTIONS(2285), - [anon_sym_continue] = ACTIONS(2285), - [anon_sym_return] = ACTIONS(2285), - [anon_sym_DOLLARfor] = ACTIONS(2285), - [anon_sym_for] = ACTIONS(2285), - [anon_sym_POUND] = ACTIONS(2285), - [anon_sym_asm] = ACTIONS(2285), - [anon_sym_AT_LBRACK] = ACTIONS(2285), - [sym___double_quote] = ACTIONS(2285), - [sym___single_quote] = ACTIONS(2285), - [sym___c_double_quote] = ACTIONS(2285), - [sym___c_single_quote] = ACTIONS(2285), - [sym___r_double_quote] = ACTIONS(2285), - [sym___r_single_quote] = ACTIONS(2285), - }, - [365] = { - [sym_line_comment] = STATE(365), - [sym_block_comment] = STATE(365), - [ts_builtin_sym_end] = ACTIONS(2287), - [sym_identifier] = ACTIONS(2289), - [anon_sym_LF] = ACTIONS(2289), - [anon_sym_CR] = ACTIONS(2289), - [anon_sym_CR_LF] = ACTIONS(2289), - [anon_sym_SLASH_SLASH] = ACTIONS(497), - [anon_sym_SLASH_STAR] = ACTIONS(499), - [anon_sym_DOT] = ACTIONS(2289), - [anon_sym_as] = ACTIONS(2289), - [anon_sym_LBRACE] = ACTIONS(2289), - [anon_sym_COMMA] = ACTIONS(2289), - [anon_sym_const] = ACTIONS(2289), - [anon_sym_LPAREN] = ACTIONS(2289), - [anon_sym_EQ] = ACTIONS(2289), - [anon_sym___global] = ACTIONS(2289), - [anon_sym_type] = ACTIONS(2289), - [anon_sym_PIPE] = ACTIONS(2289), - [anon_sym_fn] = ACTIONS(2289), - [anon_sym_PLUS] = ACTIONS(2289), - [anon_sym_DASH] = ACTIONS(2289), - [anon_sym_STAR] = ACTIONS(2289), - [anon_sym_SLASH] = ACTIONS(2289), - [anon_sym_PERCENT] = ACTIONS(2289), - [anon_sym_LT] = ACTIONS(2289), - [anon_sym_GT] = ACTIONS(2289), - [anon_sym_EQ_EQ] = ACTIONS(2289), - [anon_sym_BANG_EQ] = ACTIONS(2289), - [anon_sym_LT_EQ] = ACTIONS(2289), - [anon_sym_GT_EQ] = ACTIONS(2289), - [anon_sym_LBRACK] = ACTIONS(2287), - [anon_sym_struct] = ACTIONS(2289), - [anon_sym_union] = ACTIONS(2289), - [anon_sym_pub] = ACTIONS(2289), - [anon_sym_mut] = ACTIONS(2289), - [anon_sym_enum] = ACTIONS(2289), - [anon_sym_interface] = ACTIONS(2289), - [anon_sym_PLUS_PLUS] = ACTIONS(2289), - [anon_sym_DASH_DASH] = ACTIONS(2289), - [anon_sym_QMARK] = ACTIONS(2289), - [anon_sym_BANG] = ACTIONS(2289), - [anon_sym_go] = ACTIONS(2289), - [anon_sym_spawn] = ACTIONS(2289), - [anon_sym_json_DOTdecode] = ACTIONS(2289), - [anon_sym_LBRACK2] = ACTIONS(2289), - [anon_sym_TILDE] = ACTIONS(2289), - [anon_sym_CARET] = ACTIONS(2289), - [anon_sym_AMP] = ACTIONS(2289), - [anon_sym_LT_DASH] = ACTIONS(2289), - [anon_sym_LT_LT] = ACTIONS(2289), - [anon_sym_GT_GT] = ACTIONS(2289), - [anon_sym_GT_GT_GT] = ACTIONS(2289), - [anon_sym_AMP_CARET] = ACTIONS(2289), - [anon_sym_AMP_AMP] = ACTIONS(2289), - [anon_sym_PIPE_PIPE] = ACTIONS(2289), - [anon_sym_or] = ACTIONS(2289), - [sym_none] = ACTIONS(2289), - [sym_true] = ACTIONS(2289), - [sym_false] = ACTIONS(2289), - [sym_nil] = ACTIONS(2289), - [anon_sym_QMARK_DOT] = ACTIONS(2289), - [anon_sym_POUND_LBRACK] = ACTIONS(2289), - [anon_sym_if] = ACTIONS(2289), - [anon_sym_DOLLARif] = ACTIONS(2289), - [anon_sym_is] = ACTIONS(2289), - [anon_sym_BANGis] = ACTIONS(2289), - [anon_sym_in] = ACTIONS(2289), - [anon_sym_BANGin] = ACTIONS(2289), - [anon_sym_match] = ACTIONS(2289), - [anon_sym_select] = ACTIONS(2289), - [anon_sym_STAR_EQ] = ACTIONS(2289), - [anon_sym_SLASH_EQ] = ACTIONS(2289), - [anon_sym_PERCENT_EQ] = ACTIONS(2289), - [anon_sym_LT_LT_EQ] = ACTIONS(2289), - [anon_sym_GT_GT_EQ] = ACTIONS(2289), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(2289), - [anon_sym_AMP_EQ] = ACTIONS(2289), - [anon_sym_AMP_CARET_EQ] = ACTIONS(2289), - [anon_sym_PLUS_EQ] = ACTIONS(2289), - [anon_sym_DASH_EQ] = ACTIONS(2289), - [anon_sym_PIPE_EQ] = ACTIONS(2289), - [anon_sym_CARET_EQ] = ACTIONS(2289), - [anon_sym_COLON_EQ] = ACTIONS(2289), - [anon_sym_lock] = ACTIONS(2289), - [anon_sym_rlock] = ACTIONS(2289), - [anon_sym_unsafe] = ACTIONS(2289), - [anon_sym_sql] = ACTIONS(2289), - [sym_int_literal] = ACTIONS(2289), - [sym_float_literal] = ACTIONS(2289), - [sym_rune_literal] = ACTIONS(2289), - [sym_pseudo_compile_time_identifier] = ACTIONS(2289), - [anon_sym_shared] = ACTIONS(2289), - [anon_sym_map_LBRACK] = ACTIONS(2289), - [anon_sym_chan] = ACTIONS(2289), - [anon_sym_thread] = ACTIONS(2289), - [anon_sym_atomic] = ACTIONS(2289), - [anon_sym_assert] = ACTIONS(2289), - [anon_sym_defer] = ACTIONS(2289), - [anon_sym_goto] = ACTIONS(2289), - [anon_sym_break] = ACTIONS(2289), - [anon_sym_continue] = ACTIONS(2289), - [anon_sym_return] = ACTIONS(2289), - [anon_sym_DOLLARfor] = ACTIONS(2289), - [anon_sym_for] = ACTIONS(2289), - [anon_sym_POUND] = ACTIONS(2289), - [anon_sym_asm] = ACTIONS(2289), - [anon_sym_AT_LBRACK] = ACTIONS(2289), - [sym___double_quote] = ACTIONS(2289), - [sym___single_quote] = ACTIONS(2289), - [sym___c_double_quote] = ACTIONS(2289), - [sym___c_single_quote] = ACTIONS(2289), - [sym___r_double_quote] = ACTIONS(2289), - [sym___r_single_quote] = ACTIONS(2289), + [sym___double_quote] = ACTIONS(1414), + [sym___single_quote] = ACTIONS(1416), + [sym___c_double_quote] = ACTIONS(1418), + [sym___c_single_quote] = ACTIONS(1420), + [sym___r_double_quote] = ACTIONS(1422), + [sym___r_single_quote] = ACTIONS(1424), }, - [366] = { - [sym_line_comment] = STATE(366), - [sym_block_comment] = STATE(366), + [356] = { + [sym_line_comment] = STATE(356), + [sym_block_comment] = STATE(356), [ts_builtin_sym_end] = ACTIONS(2291), [sym_identifier] = ACTIONS(2293), [anon_sym_LF] = ACTIONS(2293), @@ -65372,1053 +64230,821 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym___r_double_quote] = ACTIONS(2293), [sym___r_single_quote] = ACTIONS(2293), }, - [367] = { - [sym_line_comment] = STATE(367), - [sym_block_comment] = STATE(367), - [sym__expression] = STATE(2455), - [sym__expression_without_blocks] = STATE(2300), - [sym__expression_with_blocks] = STATE(2300), - [sym_inc_expression] = STATE(2307), - [sym_dec_expression] = STATE(2307), - [sym_or_block_expression] = STATE(2307), - [sym_option_propagation_expression] = STATE(2307), - [sym_result_propagation_expression] = STATE(2307), - [sym_anon_struct_value_expression] = STATE(2380), - [sym_go_expression] = STATE(2307), - [sym_spawn_expression] = STATE(2307), - [sym_parenthesized_expression] = STATE(2307), - [sym_call_expression] = STATE(2307), - [sym_type_initializer] = STATE(2380), - [sym_function_literal] = STATE(2307), - [sym_reference_expression] = STATE(2311), - [sym_type_reference_expression] = STATE(3541), - [sym_unary_expression] = STATE(2307), - [sym_receive_expression] = STATE(2307), - [sym_binary_expression] = STATE(2307), - [sym_as_type_cast_expression] = STATE(2307), - [sym__max_group] = STATE(2307), - [sym_literal] = STATE(2292), - [sym_map_init_expression] = STATE(2380), - [sym_array_creation] = STATE(2307), - [sym_fixed_array_creation] = STATE(2307), - [sym_selector_expression] = STATE(2307), - [sym_index_expression] = STATE(2307), - [sym_slice_expression] = STATE(2307), - [sym_if_expression] = STATE(2380), - [sym_compile_time_if_expression] = STATE(2380), - [sym_is_expression] = STATE(2307), - [sym_in_expression] = STATE(2307), - [sym_enum_fetch] = STATE(2307), - [sym_match_expression] = STATE(2380), - [sym_select_expression] = STATE(2380), - [sym_lock_expression] = STATE(2380), - [sym_unsafe_expression] = STATE(2380), - [sym_sql_expression] = STATE(2380), - [sym_c_string_literal] = STATE(2308), - [sym_raw_string_literal] = STATE(2308), - [sym_interpreted_string_literal] = STATE(2308), - [sym_mutability_modifiers] = STATE(824), - [sym_mutable_expression] = STATE(3922), - [sym_expression_list] = STATE(4327), - [sym_plain_type] = STATE(4297), - [sym__plain_type_without_special] = STATE(2302), - [sym_anon_struct_type] = STATE(2303), - [sym_multi_return_type] = STATE(2302), - [sym_result_type] = STATE(2302), - [sym_option_type] = STATE(2302), - [sym_qualified_type] = STATE(3541), - [sym_fixed_array_type] = STATE(2303), - [sym_array_type] = STATE(2303), - [sym_pointer_type] = STATE(2303), - [sym_wrong_pointer_type] = STATE(2303), - [sym_map_type] = STATE(2303), - [sym_channel_type] = STATE(2303), - [sym_shared_type] = STATE(2303), - [sym_thread_type] = STATE(2303), - [sym_atomic_type] = STATE(2303), - [sym_generic_type] = STATE(2303), - [sym_function_type] = STATE(2303), - [sym_identifier] = ACTIONS(1807), - [anon_sym_SLASH_SLASH] = ACTIONS(3), - [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1428), - [anon_sym_LBRACE] = ACTIONS(2295), - [anon_sym_LPAREN] = ACTIONS(1432), - [anon_sym_fn] = ACTIONS(1434), - [anon_sym_PLUS] = ACTIONS(1811), - [anon_sym_DASH] = ACTIONS(1811), - [anon_sym_STAR] = ACTIONS(1813), - [anon_sym_struct] = ACTIONS(1440), - [anon_sym_mut] = ACTIONS(41), - [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(1815), - [anon_sym_go] = ACTIONS(1817), - [anon_sym_spawn] = ACTIONS(1819), - [anon_sym_json_DOTdecode] = ACTIONS(1448), - [anon_sym_LBRACK2] = ACTIONS(1821), - [anon_sym_TILDE] = ACTIONS(1811), - [anon_sym_CARET] = ACTIONS(1811), - [anon_sym_AMP] = ACTIONS(1823), - [anon_sym_LT_DASH] = ACTIONS(1825), - [sym_none] = ACTIONS(1456), - [sym_true] = ACTIONS(1456), - [sym_false] = ACTIONS(1456), - [sym_nil] = ACTIONS(1456), - [anon_sym_if] = ACTIONS(1827), - [anon_sym_DOLLARif] = ACTIONS(1460), - [anon_sym_match] = ACTIONS(1462), - [anon_sym_select] = ACTIONS(1829), - [anon_sym_lock] = ACTIONS(1831), - [anon_sym_rlock] = ACTIONS(1831), - [anon_sym_unsafe] = ACTIONS(1833), - [anon_sym_sql] = ACTIONS(1470), - [sym_int_literal] = ACTIONS(1456), - [sym_float_literal] = ACTIONS(1472), - [sym_rune_literal] = ACTIONS(1472), - [sym_pseudo_compile_time_identifier] = ACTIONS(1474), - [anon_sym_shared] = ACTIONS(83), - [anon_sym_map_LBRACK] = ACTIONS(85), - [anon_sym_chan] = ACTIONS(87), - [anon_sym_thread] = ACTIONS(89), - [anon_sym_atomic] = ACTIONS(91), - [sym___double_quote] = ACTIONS(1478), - [sym___single_quote] = ACTIONS(1480), - [sym___c_double_quote] = ACTIONS(1482), - [sym___c_single_quote] = ACTIONS(1484), - [sym___r_double_quote] = ACTIONS(1486), - [sym___r_single_quote] = ACTIONS(1488), - }, - [368] = { - [sym_line_comment] = STATE(368), - [sym_block_comment] = STATE(368), - [sym__expression] = STATE(2455), - [sym__expression_without_blocks] = STATE(2300), - [sym__expression_with_blocks] = STATE(2300), - [sym_inc_expression] = STATE(2307), - [sym_dec_expression] = STATE(2307), - [sym_or_block_expression] = STATE(2307), - [sym_option_propagation_expression] = STATE(2307), - [sym_result_propagation_expression] = STATE(2307), - [sym_anon_struct_value_expression] = STATE(2380), - [sym_go_expression] = STATE(2307), - [sym_spawn_expression] = STATE(2307), - [sym_parenthesized_expression] = STATE(2307), - [sym_call_expression] = STATE(2307), - [sym_type_initializer] = STATE(2380), - [sym_function_literal] = STATE(2307), - [sym_reference_expression] = STATE(2311), - [sym_type_reference_expression] = STATE(3541), - [sym_unary_expression] = STATE(2307), - [sym_receive_expression] = STATE(2307), - [sym_binary_expression] = STATE(2307), - [sym_as_type_cast_expression] = STATE(2307), - [sym__max_group] = STATE(2307), - [sym_literal] = STATE(2292), - [sym_map_init_expression] = STATE(2380), - [sym_array_creation] = STATE(2307), - [sym_fixed_array_creation] = STATE(2307), - [sym_selector_expression] = STATE(2307), - [sym_index_expression] = STATE(2307), - [sym_slice_expression] = STATE(2307), - [sym_if_expression] = STATE(2380), - [sym_compile_time_if_expression] = STATE(2380), - [sym_is_expression] = STATE(2307), - [sym_in_expression] = STATE(2307), - [sym_enum_fetch] = STATE(2307), - [sym_match_expression] = STATE(2380), - [sym_select_expression] = STATE(2380), - [sym_lock_expression] = STATE(2380), - [sym_unsafe_expression] = STATE(2380), - [sym_sql_expression] = STATE(2380), - [sym_c_string_literal] = STATE(2308), - [sym_raw_string_literal] = STATE(2308), - [sym_interpreted_string_literal] = STATE(2308), - [sym_mutability_modifiers] = STATE(824), - [sym_mutable_expression] = STATE(3922), - [sym_expression_list] = STATE(4392), - [sym_plain_type] = STATE(4297), - [sym__plain_type_without_special] = STATE(2302), - [sym_anon_struct_type] = STATE(2303), - [sym_multi_return_type] = STATE(2302), - [sym_result_type] = STATE(2302), - [sym_option_type] = STATE(2302), - [sym_qualified_type] = STATE(3541), - [sym_fixed_array_type] = STATE(2303), - [sym_array_type] = STATE(2303), - [sym_pointer_type] = STATE(2303), - [sym_wrong_pointer_type] = STATE(2303), - [sym_map_type] = STATE(2303), - [sym_channel_type] = STATE(2303), - [sym_shared_type] = STATE(2303), - [sym_thread_type] = STATE(2303), - [sym_atomic_type] = STATE(2303), - [sym_generic_type] = STATE(2303), - [sym_function_type] = STATE(2303), - [sym_identifier] = ACTIONS(1807), - [anon_sym_SLASH_SLASH] = ACTIONS(3), - [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1428), + [357] = { + [sym_line_comment] = STATE(357), + [sym_block_comment] = STATE(357), + [ts_builtin_sym_end] = ACTIONS(2295), + [sym_identifier] = ACTIONS(2297), + [anon_sym_LF] = ACTIONS(2297), + [anon_sym_CR] = ACTIONS(2297), + [anon_sym_CR_LF] = ACTIONS(2297), + [anon_sym_SLASH_SLASH] = ACTIONS(497), + [anon_sym_SLASH_STAR] = ACTIONS(499), + [anon_sym_DOT] = ACTIONS(2297), + [anon_sym_as] = ACTIONS(2297), [anon_sym_LBRACE] = ACTIONS(2297), - [anon_sym_LPAREN] = ACTIONS(1432), - [anon_sym_fn] = ACTIONS(1434), - [anon_sym_PLUS] = ACTIONS(1811), - [anon_sym_DASH] = ACTIONS(1811), - [anon_sym_STAR] = ACTIONS(1813), - [anon_sym_struct] = ACTIONS(1440), - [anon_sym_mut] = ACTIONS(41), - [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(1815), - [anon_sym_go] = ACTIONS(1817), - [anon_sym_spawn] = ACTIONS(1819), - [anon_sym_json_DOTdecode] = ACTIONS(1448), - [anon_sym_LBRACK2] = ACTIONS(1821), - [anon_sym_TILDE] = ACTIONS(1811), - [anon_sym_CARET] = ACTIONS(1811), - [anon_sym_AMP] = ACTIONS(1823), - [anon_sym_LT_DASH] = ACTIONS(1825), - [sym_none] = ACTIONS(1456), - [sym_true] = ACTIONS(1456), - [sym_false] = ACTIONS(1456), - [sym_nil] = ACTIONS(1456), - [anon_sym_if] = ACTIONS(1827), - [anon_sym_DOLLARif] = ACTIONS(1460), - [anon_sym_match] = ACTIONS(1462), - [anon_sym_select] = ACTIONS(1829), - [anon_sym_lock] = ACTIONS(1831), - [anon_sym_rlock] = ACTIONS(1831), - [anon_sym_unsafe] = ACTIONS(1833), - [anon_sym_sql] = ACTIONS(1470), - [sym_int_literal] = ACTIONS(1456), - [sym_float_literal] = ACTIONS(1472), - [sym_rune_literal] = ACTIONS(1472), - [sym_pseudo_compile_time_identifier] = ACTIONS(1474), - [anon_sym_shared] = ACTIONS(83), - [anon_sym_map_LBRACK] = ACTIONS(85), - [anon_sym_chan] = ACTIONS(87), - [anon_sym_thread] = ACTIONS(89), - [anon_sym_atomic] = ACTIONS(91), - [sym___double_quote] = ACTIONS(1478), - [sym___single_quote] = ACTIONS(1480), - [sym___c_double_quote] = ACTIONS(1482), - [sym___c_single_quote] = ACTIONS(1484), - [sym___r_double_quote] = ACTIONS(1486), - [sym___r_single_quote] = ACTIONS(1488), - }, - [369] = { - [sym_line_comment] = STATE(369), - [sym_block_comment] = STATE(369), - [sym__expression] = STATE(1268), - [sym__expression_without_blocks] = STATE(1312), - [sym__expression_with_blocks] = STATE(1312), - [sym_inc_expression] = STATE(1313), - [sym_dec_expression] = STATE(1313), - [sym_or_block_expression] = STATE(1313), - [sym_option_propagation_expression] = STATE(1313), - [sym_result_propagation_expression] = STATE(1313), - [sym_anon_struct_value_expression] = STATE(1314), - [sym_go_expression] = STATE(1313), - [sym_spawn_expression] = STATE(1313), - [sym_parenthesized_expression] = STATE(1313), - [sym_call_expression] = STATE(1313), - [sym_type_initializer] = STATE(1314), - [sym_function_literal] = STATE(1313), - [sym_reference_expression] = STATE(1334), - [sym_type_reference_expression] = STATE(3541), - [sym_unary_expression] = STATE(1313), - [sym_receive_expression] = STATE(1313), - [sym_binary_expression] = STATE(1313), - [sym_as_type_cast_expression] = STATE(1313), - [sym__max_group] = STATE(1313), - [sym_literal] = STATE(1308), - [sym_map_init_expression] = STATE(1314), - [sym_array_creation] = STATE(1313), - [sym_fixed_array_creation] = STATE(1313), - [sym_selector_expression] = STATE(1313), - [sym_index_expression] = STATE(1313), - [sym_slice_expression] = STATE(1313), - [sym_if_expression] = STATE(1314), - [sym_compile_time_if_expression] = STATE(1314), - [sym_is_expression] = STATE(1313), - [sym_in_expression] = STATE(1313), - [sym_enum_fetch] = STATE(1313), - [sym_match_expression] = STATE(1314), - [sym_select_expression] = STATE(1314), - [sym_lock_expression] = STATE(1314), - [sym_unsafe_expression] = STATE(1314), - [sym_sql_expression] = STATE(1314), - [sym_c_string_literal] = STATE(1286), - [sym_raw_string_literal] = STATE(1286), - [sym_interpreted_string_literal] = STATE(1286), - [sym_mutability_modifiers] = STATE(699), - [sym_plain_type] = STATE(4192), - [sym__plain_type_without_special] = STATE(2302), - [sym_anon_struct_type] = STATE(2303), - [sym_multi_return_type] = STATE(2302), - [sym_result_type] = STATE(2302), - [sym_option_type] = STATE(2302), - [sym_qualified_type] = STATE(3541), - [sym_fixed_array_type] = STATE(2303), - [sym_array_type] = STATE(2303), - [sym_pointer_type] = STATE(2303), - [sym_wrong_pointer_type] = STATE(2303), - [sym_map_type] = STATE(2303), - [sym_channel_type] = STATE(2303), - [sym_shared_type] = STATE(2303), - [sym_thread_type] = STATE(2303), - [sym_atomic_type] = STATE(2303), - [sym_generic_type] = STATE(2303), - [sym_function_type] = STATE(2303), - [aux_sym__array_repeat1] = STATE(404), - [sym_identifier] = ACTIONS(1354), - [anon_sym_SLASH_SLASH] = ACTIONS(3), - [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1356), - [anon_sym_LBRACE] = ACTIONS(1358), - [anon_sym_LPAREN] = ACTIONS(1360), - [anon_sym_fn] = ACTIONS(1362), - [anon_sym_PLUS] = ACTIONS(1364), - [anon_sym_DASH] = ACTIONS(1364), - [anon_sym_STAR] = ACTIONS(1366), - [anon_sym_RBRACK] = ACTIONS(2299), - [anon_sym_struct] = ACTIONS(1370), - [anon_sym_mut] = ACTIONS(41), - [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(1372), - [anon_sym_go] = ACTIONS(1374), - [anon_sym_spawn] = ACTIONS(1376), - [anon_sym_json_DOTdecode] = ACTIONS(1378), - [anon_sym_LBRACK2] = ACTIONS(1380), - [anon_sym_TILDE] = ACTIONS(1364), - [anon_sym_CARET] = ACTIONS(1364), - [anon_sym_AMP] = ACTIONS(1382), - [anon_sym_LT_DASH] = ACTIONS(1384), - [sym_none] = ACTIONS(1386), - [sym_true] = ACTIONS(1386), - [sym_false] = ACTIONS(1386), - [sym_nil] = ACTIONS(1386), - [anon_sym_if] = ACTIONS(1877), - [anon_sym_DOLLARif] = ACTIONS(1390), - [anon_sym_match] = ACTIONS(1392), - [anon_sym_select] = ACTIONS(1394), - [anon_sym_lock] = ACTIONS(1396), - [anon_sym_rlock] = ACTIONS(1396), - [anon_sym_unsafe] = ACTIONS(1883), - [anon_sym_sql] = ACTIONS(1400), - [sym_int_literal] = ACTIONS(1386), - [sym_float_literal] = ACTIONS(1404), - [sym_rune_literal] = ACTIONS(1404), - [sym_pseudo_compile_time_identifier] = ACTIONS(1406), - [anon_sym_shared] = ACTIONS(83), - [anon_sym_map_LBRACK] = ACTIONS(85), - [anon_sym_chan] = ACTIONS(87), - [anon_sym_thread] = ACTIONS(89), - [anon_sym_atomic] = ACTIONS(91), - [sym___double_quote] = ACTIONS(1408), - [sym___single_quote] = ACTIONS(1410), - [sym___c_double_quote] = ACTIONS(1412), - [sym___c_single_quote] = ACTIONS(1414), - [sym___r_double_quote] = ACTIONS(1416), - [sym___r_single_quote] = ACTIONS(1418), + [anon_sym_COMMA] = ACTIONS(2297), + [anon_sym_const] = ACTIONS(2297), + [anon_sym_LPAREN] = ACTIONS(2297), + [anon_sym_EQ] = ACTIONS(2297), + [anon_sym___global] = ACTIONS(2297), + [anon_sym_type] = ACTIONS(2297), + [anon_sym_PIPE] = ACTIONS(2297), + [anon_sym_fn] = ACTIONS(2297), + [anon_sym_PLUS] = ACTIONS(2297), + [anon_sym_DASH] = ACTIONS(2297), + [anon_sym_STAR] = ACTIONS(2297), + [anon_sym_SLASH] = ACTIONS(2297), + [anon_sym_PERCENT] = ACTIONS(2297), + [anon_sym_LT] = ACTIONS(2297), + [anon_sym_GT] = ACTIONS(2297), + [anon_sym_EQ_EQ] = ACTIONS(2297), + [anon_sym_BANG_EQ] = ACTIONS(2297), + [anon_sym_LT_EQ] = ACTIONS(2297), + [anon_sym_GT_EQ] = ACTIONS(2297), + [anon_sym_LBRACK] = ACTIONS(2295), + [anon_sym_struct] = ACTIONS(2297), + [anon_sym_union] = ACTIONS(2297), + [anon_sym_pub] = ACTIONS(2297), + [anon_sym_mut] = ACTIONS(2297), + [anon_sym_enum] = ACTIONS(2297), + [anon_sym_interface] = ACTIONS(2297), + [anon_sym_PLUS_PLUS] = ACTIONS(2297), + [anon_sym_DASH_DASH] = ACTIONS(2297), + [anon_sym_QMARK] = ACTIONS(2297), + [anon_sym_BANG] = ACTIONS(2297), + [anon_sym_go] = ACTIONS(2297), + [anon_sym_spawn] = ACTIONS(2297), + [anon_sym_json_DOTdecode] = ACTIONS(2297), + [anon_sym_LBRACK2] = ACTIONS(2297), + [anon_sym_TILDE] = ACTIONS(2297), + [anon_sym_CARET] = ACTIONS(2297), + [anon_sym_AMP] = ACTIONS(2297), + [anon_sym_LT_DASH] = ACTIONS(2297), + [anon_sym_LT_LT] = ACTIONS(2297), + [anon_sym_GT_GT] = ACTIONS(2297), + [anon_sym_GT_GT_GT] = ACTIONS(2297), + [anon_sym_AMP_CARET] = ACTIONS(2297), + [anon_sym_AMP_AMP] = ACTIONS(2297), + [anon_sym_PIPE_PIPE] = ACTIONS(2297), + [anon_sym_or] = ACTIONS(2297), + [sym_none] = ACTIONS(2297), + [sym_true] = ACTIONS(2297), + [sym_false] = ACTIONS(2297), + [sym_nil] = ACTIONS(2297), + [anon_sym_QMARK_DOT] = ACTIONS(2297), + [anon_sym_POUND_LBRACK] = ACTIONS(2297), + [anon_sym_if] = ACTIONS(2297), + [anon_sym_DOLLARif] = ACTIONS(2297), + [anon_sym_is] = ACTIONS(2297), + [anon_sym_BANGis] = ACTIONS(2297), + [anon_sym_in] = ACTIONS(2297), + [anon_sym_BANGin] = ACTIONS(2297), + [anon_sym_match] = ACTIONS(2297), + [anon_sym_select] = ACTIONS(2297), + [anon_sym_STAR_EQ] = ACTIONS(2297), + [anon_sym_SLASH_EQ] = ACTIONS(2297), + [anon_sym_PERCENT_EQ] = ACTIONS(2297), + [anon_sym_LT_LT_EQ] = ACTIONS(2297), + [anon_sym_GT_GT_EQ] = ACTIONS(2297), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(2297), + [anon_sym_AMP_EQ] = ACTIONS(2297), + [anon_sym_AMP_CARET_EQ] = ACTIONS(2297), + [anon_sym_PLUS_EQ] = ACTIONS(2297), + [anon_sym_DASH_EQ] = ACTIONS(2297), + [anon_sym_PIPE_EQ] = ACTIONS(2297), + [anon_sym_CARET_EQ] = ACTIONS(2297), + [anon_sym_COLON_EQ] = ACTIONS(2297), + [anon_sym_lock] = ACTIONS(2297), + [anon_sym_rlock] = ACTIONS(2297), + [anon_sym_unsafe] = ACTIONS(2297), + [anon_sym_sql] = ACTIONS(2297), + [sym_int_literal] = ACTIONS(2297), + [sym_float_literal] = ACTIONS(2297), + [sym_rune_literal] = ACTIONS(2297), + [sym_pseudo_compile_time_identifier] = ACTIONS(2297), + [anon_sym_shared] = ACTIONS(2297), + [anon_sym_map_LBRACK] = ACTIONS(2297), + [anon_sym_chan] = ACTIONS(2297), + [anon_sym_thread] = ACTIONS(2297), + [anon_sym_atomic] = ACTIONS(2297), + [anon_sym_assert] = ACTIONS(2297), + [anon_sym_defer] = ACTIONS(2297), + [anon_sym_goto] = ACTIONS(2297), + [anon_sym_break] = ACTIONS(2297), + [anon_sym_continue] = ACTIONS(2297), + [anon_sym_return] = ACTIONS(2297), + [anon_sym_DOLLARfor] = ACTIONS(2297), + [anon_sym_for] = ACTIONS(2297), + [anon_sym_POUND] = ACTIONS(2297), + [anon_sym_asm] = ACTIONS(2297), + [anon_sym_AT_LBRACK] = ACTIONS(2297), + [sym___double_quote] = ACTIONS(2297), + [sym___single_quote] = ACTIONS(2297), + [sym___c_double_quote] = ACTIONS(2297), + [sym___c_single_quote] = ACTIONS(2297), + [sym___r_double_quote] = ACTIONS(2297), + [sym___r_single_quote] = ACTIONS(2297), }, - [370] = { - [sym_line_comment] = STATE(370), - [sym_block_comment] = STATE(370), - [sym__expression] = STATE(1268), - [sym__expression_without_blocks] = STATE(1312), - [sym__expression_with_blocks] = STATE(1312), - [sym_inc_expression] = STATE(1313), - [sym_dec_expression] = STATE(1313), - [sym_or_block_expression] = STATE(1313), - [sym_option_propagation_expression] = STATE(1313), - [sym_result_propagation_expression] = STATE(1313), - [sym_anon_struct_value_expression] = STATE(1314), - [sym_go_expression] = STATE(1313), - [sym_spawn_expression] = STATE(1313), - [sym_parenthesized_expression] = STATE(1313), - [sym_call_expression] = STATE(1313), - [sym_type_initializer] = STATE(1314), - [sym_function_literal] = STATE(1313), - [sym_reference_expression] = STATE(1394), - [sym_type_reference_expression] = STATE(3541), - [sym_unary_expression] = STATE(1313), - [sym_receive_expression] = STATE(1313), - [sym_binary_expression] = STATE(1313), - [sym_as_type_cast_expression] = STATE(1313), - [sym__max_group] = STATE(1313), - [sym_literal] = STATE(1308), - [sym_map_init_expression] = STATE(1314), - [sym_array_creation] = STATE(1313), - [sym_fixed_array_creation] = STATE(1313), - [sym_selector_expression] = STATE(1393), - [sym_index_expression] = STATE(1313), - [sym_slice_expression] = STATE(1313), - [sym_if_expression] = STATE(1314), - [sym_compile_time_if_expression] = STATE(1314), - [sym_is_expression] = STATE(1313), - [sym_in_expression] = STATE(1313), - [sym_enum_fetch] = STATE(1313), - [sym_match_expression] = STATE(1314), - [sym_select_expression] = STATE(1314), - [sym_lock_expression] = STATE(1314), - [sym_unsafe_expression] = STATE(1314), - [sym_sql_expression] = STATE(1314), - [sym_c_string_literal] = STATE(1286), - [sym_raw_string_literal] = STATE(1286), - [sym_interpreted_string_literal] = STATE(1286), - [sym_mutability_modifiers] = STATE(699), - [sym_plain_type] = STATE(4192), - [sym__plain_type_without_special] = STATE(2302), - [sym_anon_struct_type] = STATE(2303), - [sym_multi_return_type] = STATE(2302), - [sym_result_type] = STATE(2302), - [sym_option_type] = STATE(2302), - [sym_qualified_type] = STATE(3541), - [sym_fixed_array_type] = STATE(2303), - [sym_array_type] = STATE(2303), - [sym_pointer_type] = STATE(2303), - [sym_wrong_pointer_type] = STATE(2303), - [sym_map_type] = STATE(2303), - [sym_channel_type] = STATE(2303), - [sym_shared_type] = STATE(2303), - [sym_thread_type] = STATE(2303), - [sym_atomic_type] = STATE(2303), - [sym_generic_type] = STATE(2303), - [sym_function_type] = STATE(2303), - [aux_sym__array_repeat1] = STATE(413), - [sym_identifier] = ACTIONS(1354), + [358] = { + [sym_line_comment] = STATE(358), + [sym_block_comment] = STATE(358), + [sym__expression] = STATE(2558), + [sym__expression_without_blocks] = STATE(2347), + [sym__expression_with_blocks] = STATE(2347), + [sym_inc_expression] = STATE(2379), + [sym_dec_expression] = STATE(2379), + [sym_or_block_expression] = STATE(2379), + [sym_option_propagation_expression] = STATE(2379), + [sym_result_propagation_expression] = STATE(2379), + [sym_anon_struct_value_expression] = STATE(2378), + [sym_go_expression] = STATE(2379), + [sym_spawn_expression] = STATE(2379), + [sym_parenthesized_expression] = STATE(2379), + [sym_call_expression] = STATE(2379), + [sym_type_initializer] = STATE(2378), + [sym_function_literal] = STATE(2379), + [sym_reference_expression] = STATE(2377), + [sym_type_reference_expression] = STATE(3460), + [sym_unary_expression] = STATE(2379), + [sym_receive_expression] = STATE(2379), + [sym_binary_expression] = STATE(2379), + [sym_as_type_cast_expression] = STATE(2379), + [sym__max_group] = STATE(2379), + [sym_literal] = STATE(2392), + [sym_map_init_expression] = STATE(2378), + [sym_array_creation] = STATE(2379), + [sym_fixed_array_creation] = STATE(2379), + [sym_selector_expression] = STATE(2379), + [sym_index_expression] = STATE(2379), + [sym_slice_expression] = STATE(2379), + [sym_if_expression] = STATE(2378), + [sym_compile_time_if_expression] = STATE(2378), + [sym_is_expression] = STATE(2379), + [sym_in_expression] = STATE(2379), + [sym_enum_fetch] = STATE(2379), + [sym_match_expression] = STATE(2378), + [sym_select_expression] = STATE(2378), + [sym_lock_expression] = STATE(2378), + [sym_unsafe_expression] = STATE(2378), + [sym_sql_expression] = STATE(2378), + [sym_c_string_literal] = STATE(2401), + [sym_raw_string_literal] = STATE(2401), + [sym_interpreted_string_literal] = STATE(2401), + [sym_mutability_modifiers] = STATE(900), + [sym_mutable_expression] = STATE(3813), + [sym_expression_list] = STATE(4437), + [sym_plain_type] = STATE(4160), + [sym__plain_type_without_special] = STATE(2360), + [sym_anon_struct_type] = STATE(2362), + [sym_multi_return_type] = STATE(2360), + [sym_result_type] = STATE(2360), + [sym_option_type] = STATE(2360), + [sym_qualified_type] = STATE(3460), + [sym_fixed_array_type] = STATE(2362), + [sym_array_type] = STATE(2362), + [sym_pointer_type] = STATE(2362), + [sym_wrong_pointer_type] = STATE(2362), + [sym_map_type] = STATE(2362), + [sym_channel_type] = STATE(2362), + [sym_shared_type] = STATE(2362), + [sym_thread_type] = STATE(2362), + [sym_atomic_type] = STATE(2362), + [sym_generic_type] = STATE(2362), + [sym_function_type] = STATE(2362), + [sym_identifier] = ACTIONS(1815), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1356), - [anon_sym_LBRACE] = ACTIONS(1358), - [anon_sym_LPAREN] = ACTIONS(1360), - [anon_sym_fn] = ACTIONS(1362), - [anon_sym_PLUS] = ACTIONS(1364), - [anon_sym_DASH] = ACTIONS(1364), - [anon_sym_STAR] = ACTIONS(1366), - [anon_sym_RBRACK] = ACTIONS(2301), - [anon_sym_struct] = ACTIONS(1370), + [anon_sym_DOT] = ACTIONS(1430), + [anon_sym_LBRACE] = ACTIONS(2299), + [anon_sym_LPAREN] = ACTIONS(1434), + [anon_sym_fn] = ACTIONS(1436), + [anon_sym_PLUS] = ACTIONS(1817), + [anon_sym_DASH] = ACTIONS(1817), + [anon_sym_STAR] = ACTIONS(1819), + [anon_sym_struct] = ACTIONS(1442), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(1372), - [anon_sym_go] = ACTIONS(1374), - [anon_sym_spawn] = ACTIONS(1376), - [anon_sym_json_DOTdecode] = ACTIONS(1378), - [anon_sym_LBRACK2] = ACTIONS(1380), - [anon_sym_TILDE] = ACTIONS(1364), - [anon_sym_CARET] = ACTIONS(1364), - [anon_sym_AMP] = ACTIONS(1382), - [anon_sym_LT_DASH] = ACTIONS(1384), - [sym_none] = ACTIONS(1386), - [sym_true] = ACTIONS(1386), - [sym_false] = ACTIONS(1386), - [sym_nil] = ACTIONS(1386), - [anon_sym_if] = ACTIONS(1877), - [anon_sym_DOLLARif] = ACTIONS(1390), - [anon_sym_match] = ACTIONS(1392), - [anon_sym_select] = ACTIONS(1394), - [anon_sym_lock] = ACTIONS(1396), - [anon_sym_rlock] = ACTIONS(1396), - [anon_sym_unsafe] = ACTIONS(1883), - [anon_sym_sql] = ACTIONS(1400), - [sym_int_literal] = ACTIONS(1402), - [sym_float_literal] = ACTIONS(1404), - [sym_rune_literal] = ACTIONS(1404), - [sym_pseudo_compile_time_identifier] = ACTIONS(1406), + [anon_sym_BANG] = ACTIONS(1821), + [anon_sym_go] = ACTIONS(1823), + [anon_sym_spawn] = ACTIONS(1825), + [anon_sym_json_DOTdecode] = ACTIONS(1450), + [anon_sym_LBRACK2] = ACTIONS(1827), + [anon_sym_TILDE] = ACTIONS(1817), + [anon_sym_CARET] = ACTIONS(1817), + [anon_sym_AMP] = ACTIONS(1829), + [anon_sym_LT_DASH] = ACTIONS(1831), + [sym_none] = ACTIONS(1458), + [sym_true] = ACTIONS(1458), + [sym_false] = ACTIONS(1458), + [sym_nil] = ACTIONS(1458), + [anon_sym_if] = ACTIONS(1833), + [anon_sym_DOLLARif] = ACTIONS(1462), + [anon_sym_match] = ACTIONS(1464), + [anon_sym_select] = ACTIONS(1835), + [anon_sym_lock] = ACTIONS(1837), + [anon_sym_rlock] = ACTIONS(1837), + [anon_sym_unsafe] = ACTIONS(1839), + [anon_sym_sql] = ACTIONS(1472), + [sym_int_literal] = ACTIONS(1458), + [sym_float_literal] = ACTIONS(1474), + [sym_rune_literal] = ACTIONS(1474), + [sym_pseudo_compile_time_identifier] = ACTIONS(1476), [anon_sym_shared] = ACTIONS(83), [anon_sym_map_LBRACK] = ACTIONS(85), [anon_sym_chan] = ACTIONS(87), [anon_sym_thread] = ACTIONS(89), [anon_sym_atomic] = ACTIONS(91), - [sym___double_quote] = ACTIONS(1408), - [sym___single_quote] = ACTIONS(1410), - [sym___c_double_quote] = ACTIONS(1412), - [sym___c_single_quote] = ACTIONS(1414), - [sym___r_double_quote] = ACTIONS(1416), - [sym___r_single_quote] = ACTIONS(1418), + [sym___double_quote] = ACTIONS(1480), + [sym___single_quote] = ACTIONS(1482), + [sym___c_double_quote] = ACTIONS(1484), + [sym___c_single_quote] = ACTIONS(1486), + [sym___r_double_quote] = ACTIONS(1488), + [sym___r_single_quote] = ACTIONS(1490), }, - [371] = { - [sym_line_comment] = STATE(371), - [sym_block_comment] = STATE(371), - [ts_builtin_sym_end] = ACTIONS(2303), - [sym_identifier] = ACTIONS(2305), - [anon_sym_LF] = ACTIONS(2305), - [anon_sym_CR] = ACTIONS(2305), - [anon_sym_CR_LF] = ACTIONS(2305), + [359] = { + [sym_line_comment] = STATE(359), + [sym_block_comment] = STATE(359), + [ts_builtin_sym_end] = ACTIONS(2301), + [sym_identifier] = ACTIONS(2303), + [anon_sym_LF] = ACTIONS(2303), + [anon_sym_CR] = ACTIONS(2303), + [anon_sym_CR_LF] = ACTIONS(2303), [anon_sym_SLASH_SLASH] = ACTIONS(497), [anon_sym_SLASH_STAR] = ACTIONS(499), - [anon_sym_DOT] = ACTIONS(2305), - [anon_sym_as] = ACTIONS(2305), - [anon_sym_LBRACE] = ACTIONS(2305), - [anon_sym_COMMA] = ACTIONS(2305), - [anon_sym_const] = ACTIONS(2305), - [anon_sym_LPAREN] = ACTIONS(2305), - [anon_sym_EQ] = ACTIONS(2305), - [anon_sym___global] = ACTIONS(2305), - [anon_sym_type] = ACTIONS(2305), - [anon_sym_PIPE] = ACTIONS(2305), - [anon_sym_fn] = ACTIONS(2305), - [anon_sym_PLUS] = ACTIONS(2305), - [anon_sym_DASH] = ACTIONS(2305), - [anon_sym_STAR] = ACTIONS(2305), - [anon_sym_SLASH] = ACTIONS(2305), - [anon_sym_PERCENT] = ACTIONS(2305), - [anon_sym_LT] = ACTIONS(2305), - [anon_sym_GT] = ACTIONS(2305), - [anon_sym_EQ_EQ] = ACTIONS(2305), - [anon_sym_BANG_EQ] = ACTIONS(2305), - [anon_sym_LT_EQ] = ACTIONS(2305), - [anon_sym_GT_EQ] = ACTIONS(2305), - [anon_sym_LBRACK] = ACTIONS(2303), - [anon_sym_struct] = ACTIONS(2305), - [anon_sym_union] = ACTIONS(2305), - [anon_sym_pub] = ACTIONS(2305), - [anon_sym_mut] = ACTIONS(2305), - [anon_sym_enum] = ACTIONS(2305), - [anon_sym_interface] = ACTIONS(2305), - [anon_sym_PLUS_PLUS] = ACTIONS(2305), - [anon_sym_DASH_DASH] = ACTIONS(2305), - [anon_sym_QMARK] = ACTIONS(2305), - [anon_sym_BANG] = ACTIONS(2305), - [anon_sym_go] = ACTIONS(2305), - [anon_sym_spawn] = ACTIONS(2305), - [anon_sym_json_DOTdecode] = ACTIONS(2305), - [anon_sym_LBRACK2] = ACTIONS(2305), - [anon_sym_TILDE] = ACTIONS(2305), - [anon_sym_CARET] = ACTIONS(2305), - [anon_sym_AMP] = ACTIONS(2305), - [anon_sym_LT_DASH] = ACTIONS(2305), - [anon_sym_LT_LT] = ACTIONS(2305), - [anon_sym_GT_GT] = ACTIONS(2305), - [anon_sym_GT_GT_GT] = ACTIONS(2305), - [anon_sym_AMP_CARET] = ACTIONS(2305), - [anon_sym_AMP_AMP] = ACTIONS(2305), - [anon_sym_PIPE_PIPE] = ACTIONS(2305), - [anon_sym_or] = ACTIONS(2305), - [sym_none] = ACTIONS(2305), - [sym_true] = ACTIONS(2305), - [sym_false] = ACTIONS(2305), - [sym_nil] = ACTIONS(2305), - [anon_sym_QMARK_DOT] = ACTIONS(2305), - [anon_sym_POUND_LBRACK] = ACTIONS(2305), - [anon_sym_if] = ACTIONS(2305), - [anon_sym_DOLLARif] = ACTIONS(2305), - [anon_sym_is] = ACTIONS(2305), - [anon_sym_BANGis] = ACTIONS(2305), - [anon_sym_in] = ACTIONS(2305), - [anon_sym_BANGin] = ACTIONS(2305), - [anon_sym_match] = ACTIONS(2305), - [anon_sym_select] = ACTIONS(2305), - [anon_sym_STAR_EQ] = ACTIONS(2305), - [anon_sym_SLASH_EQ] = ACTIONS(2305), - [anon_sym_PERCENT_EQ] = ACTIONS(2305), - [anon_sym_LT_LT_EQ] = ACTIONS(2305), - [anon_sym_GT_GT_EQ] = ACTIONS(2305), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(2305), - [anon_sym_AMP_EQ] = ACTIONS(2305), - [anon_sym_AMP_CARET_EQ] = ACTIONS(2305), - [anon_sym_PLUS_EQ] = ACTIONS(2305), - [anon_sym_DASH_EQ] = ACTIONS(2305), - [anon_sym_PIPE_EQ] = ACTIONS(2305), - [anon_sym_CARET_EQ] = ACTIONS(2305), - [anon_sym_COLON_EQ] = ACTIONS(2305), - [anon_sym_lock] = ACTIONS(2305), - [anon_sym_rlock] = ACTIONS(2305), - [anon_sym_unsafe] = ACTIONS(2305), - [anon_sym_sql] = ACTIONS(2305), - [sym_int_literal] = ACTIONS(2305), - [sym_float_literal] = ACTIONS(2305), - [sym_rune_literal] = ACTIONS(2305), - [sym_pseudo_compile_time_identifier] = ACTIONS(2305), - [anon_sym_shared] = ACTIONS(2305), - [anon_sym_map_LBRACK] = ACTIONS(2305), - [anon_sym_chan] = ACTIONS(2305), - [anon_sym_thread] = ACTIONS(2305), - [anon_sym_atomic] = ACTIONS(2305), - [anon_sym_assert] = ACTIONS(2305), - [anon_sym_defer] = ACTIONS(2305), - [anon_sym_goto] = ACTIONS(2305), - [anon_sym_break] = ACTIONS(2305), - [anon_sym_continue] = ACTIONS(2305), - [anon_sym_return] = ACTIONS(2305), - [anon_sym_DOLLARfor] = ACTIONS(2305), - [anon_sym_for] = ACTIONS(2305), - [anon_sym_POUND] = ACTIONS(2305), - [anon_sym_asm] = ACTIONS(2305), - [anon_sym_AT_LBRACK] = ACTIONS(2305), - [sym___double_quote] = ACTIONS(2305), - [sym___single_quote] = ACTIONS(2305), - [sym___c_double_quote] = ACTIONS(2305), - [sym___c_single_quote] = ACTIONS(2305), - [sym___r_double_quote] = ACTIONS(2305), - [sym___r_single_quote] = ACTIONS(2305), + [anon_sym_DOT] = ACTIONS(2303), + [anon_sym_as] = ACTIONS(2303), + [anon_sym_LBRACE] = ACTIONS(2303), + [anon_sym_COMMA] = ACTIONS(2303), + [anon_sym_const] = ACTIONS(2303), + [anon_sym_LPAREN] = ACTIONS(2303), + [anon_sym_EQ] = ACTIONS(2303), + [anon_sym___global] = ACTIONS(2303), + [anon_sym_type] = ACTIONS(2303), + [anon_sym_PIPE] = ACTIONS(2303), + [anon_sym_fn] = ACTIONS(2303), + [anon_sym_PLUS] = ACTIONS(2303), + [anon_sym_DASH] = ACTIONS(2303), + [anon_sym_STAR] = ACTIONS(2303), + [anon_sym_SLASH] = ACTIONS(2303), + [anon_sym_PERCENT] = ACTIONS(2303), + [anon_sym_LT] = ACTIONS(2303), + [anon_sym_GT] = ACTIONS(2303), + [anon_sym_EQ_EQ] = ACTIONS(2303), + [anon_sym_BANG_EQ] = ACTIONS(2303), + [anon_sym_LT_EQ] = ACTIONS(2303), + [anon_sym_GT_EQ] = ACTIONS(2303), + [anon_sym_LBRACK] = ACTIONS(2301), + [anon_sym_struct] = ACTIONS(2303), + [anon_sym_union] = ACTIONS(2303), + [anon_sym_pub] = ACTIONS(2303), + [anon_sym_mut] = ACTIONS(2303), + [anon_sym_enum] = ACTIONS(2303), + [anon_sym_interface] = ACTIONS(2303), + [anon_sym_PLUS_PLUS] = ACTIONS(2303), + [anon_sym_DASH_DASH] = ACTIONS(2303), + [anon_sym_QMARK] = ACTIONS(2303), + [anon_sym_BANG] = ACTIONS(2303), + [anon_sym_go] = ACTIONS(2303), + [anon_sym_spawn] = ACTIONS(2303), + [anon_sym_json_DOTdecode] = ACTIONS(2303), + [anon_sym_LBRACK2] = ACTIONS(2303), + [anon_sym_TILDE] = ACTIONS(2303), + [anon_sym_CARET] = ACTIONS(2303), + [anon_sym_AMP] = ACTIONS(2303), + [anon_sym_LT_DASH] = ACTIONS(2303), + [anon_sym_LT_LT] = ACTIONS(2303), + [anon_sym_GT_GT] = ACTIONS(2303), + [anon_sym_GT_GT_GT] = ACTIONS(2303), + [anon_sym_AMP_CARET] = ACTIONS(2303), + [anon_sym_AMP_AMP] = ACTIONS(2303), + [anon_sym_PIPE_PIPE] = ACTIONS(2303), + [anon_sym_or] = ACTIONS(2303), + [sym_none] = ACTIONS(2303), + [sym_true] = ACTIONS(2303), + [sym_false] = ACTIONS(2303), + [sym_nil] = ACTIONS(2303), + [anon_sym_QMARK_DOT] = ACTIONS(2303), + [anon_sym_POUND_LBRACK] = ACTIONS(2303), + [anon_sym_if] = ACTIONS(2303), + [anon_sym_DOLLARif] = ACTIONS(2303), + [anon_sym_is] = ACTIONS(2303), + [anon_sym_BANGis] = ACTIONS(2303), + [anon_sym_in] = ACTIONS(2303), + [anon_sym_BANGin] = ACTIONS(2303), + [anon_sym_match] = ACTIONS(2303), + [anon_sym_select] = ACTIONS(2303), + [anon_sym_STAR_EQ] = ACTIONS(2303), + [anon_sym_SLASH_EQ] = ACTIONS(2303), + [anon_sym_PERCENT_EQ] = ACTIONS(2303), + [anon_sym_LT_LT_EQ] = ACTIONS(2303), + [anon_sym_GT_GT_EQ] = ACTIONS(2303), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(2303), + [anon_sym_AMP_EQ] = ACTIONS(2303), + [anon_sym_AMP_CARET_EQ] = ACTIONS(2303), + [anon_sym_PLUS_EQ] = ACTIONS(2303), + [anon_sym_DASH_EQ] = ACTIONS(2303), + [anon_sym_PIPE_EQ] = ACTIONS(2303), + [anon_sym_CARET_EQ] = ACTIONS(2303), + [anon_sym_COLON_EQ] = ACTIONS(2303), + [anon_sym_lock] = ACTIONS(2303), + [anon_sym_rlock] = ACTIONS(2303), + [anon_sym_unsafe] = ACTIONS(2303), + [anon_sym_sql] = ACTIONS(2303), + [sym_int_literal] = ACTIONS(2303), + [sym_float_literal] = ACTIONS(2303), + [sym_rune_literal] = ACTIONS(2303), + [sym_pseudo_compile_time_identifier] = ACTIONS(2303), + [anon_sym_shared] = ACTIONS(2303), + [anon_sym_map_LBRACK] = ACTIONS(2303), + [anon_sym_chan] = ACTIONS(2303), + [anon_sym_thread] = ACTIONS(2303), + [anon_sym_atomic] = ACTIONS(2303), + [anon_sym_assert] = ACTIONS(2303), + [anon_sym_defer] = ACTIONS(2303), + [anon_sym_goto] = ACTIONS(2303), + [anon_sym_break] = ACTIONS(2303), + [anon_sym_continue] = ACTIONS(2303), + [anon_sym_return] = ACTIONS(2303), + [anon_sym_DOLLARfor] = ACTIONS(2303), + [anon_sym_for] = ACTIONS(2303), + [anon_sym_POUND] = ACTIONS(2303), + [anon_sym_asm] = ACTIONS(2303), + [anon_sym_AT_LBRACK] = ACTIONS(2303), + [sym___double_quote] = ACTIONS(2303), + [sym___single_quote] = ACTIONS(2303), + [sym___c_double_quote] = ACTIONS(2303), + [sym___c_single_quote] = ACTIONS(2303), + [sym___r_double_quote] = ACTIONS(2303), + [sym___r_single_quote] = ACTIONS(2303), }, - [372] = { - [sym_line_comment] = STATE(372), - [sym_block_comment] = STATE(372), - [ts_builtin_sym_end] = ACTIONS(2307), - [sym_identifier] = ACTIONS(2309), - [anon_sym_LF] = ACTIONS(2309), - [anon_sym_CR] = ACTIONS(2309), - [anon_sym_CR_LF] = ACTIONS(2309), + [360] = { + [sym_line_comment] = STATE(360), + [sym_block_comment] = STATE(360), + [ts_builtin_sym_end] = ACTIONS(2305), + [sym_identifier] = ACTIONS(2307), + [anon_sym_LF] = ACTIONS(2307), + [anon_sym_CR] = ACTIONS(2307), + [anon_sym_CR_LF] = ACTIONS(2307), [anon_sym_SLASH_SLASH] = ACTIONS(497), [anon_sym_SLASH_STAR] = ACTIONS(499), - [anon_sym_DOT] = ACTIONS(2309), - [anon_sym_as] = ACTIONS(2309), - [anon_sym_LBRACE] = ACTIONS(2309), - [anon_sym_COMMA] = ACTIONS(2309), - [anon_sym_const] = ACTIONS(2309), - [anon_sym_LPAREN] = ACTIONS(2309), - [anon_sym_EQ] = ACTIONS(2309), - [anon_sym___global] = ACTIONS(2309), - [anon_sym_type] = ACTIONS(2309), - [anon_sym_PIPE] = ACTIONS(2309), - [anon_sym_fn] = ACTIONS(2309), - [anon_sym_PLUS] = ACTIONS(2309), - [anon_sym_DASH] = ACTIONS(2309), - [anon_sym_STAR] = ACTIONS(2309), - [anon_sym_SLASH] = ACTIONS(2309), - [anon_sym_PERCENT] = ACTIONS(2309), - [anon_sym_LT] = ACTIONS(2309), - [anon_sym_GT] = ACTIONS(2309), - [anon_sym_EQ_EQ] = ACTIONS(2309), - [anon_sym_BANG_EQ] = ACTIONS(2309), - [anon_sym_LT_EQ] = ACTIONS(2309), - [anon_sym_GT_EQ] = ACTIONS(2309), - [anon_sym_LBRACK] = ACTIONS(2307), - [anon_sym_struct] = ACTIONS(2309), - [anon_sym_union] = ACTIONS(2309), - [anon_sym_pub] = ACTIONS(2309), - [anon_sym_mut] = ACTIONS(2309), - [anon_sym_enum] = ACTIONS(2309), - [anon_sym_interface] = ACTIONS(2309), - [anon_sym_PLUS_PLUS] = ACTIONS(2309), - [anon_sym_DASH_DASH] = ACTIONS(2309), - [anon_sym_QMARK] = ACTIONS(2309), - [anon_sym_BANG] = ACTIONS(2309), - [anon_sym_go] = ACTIONS(2309), - [anon_sym_spawn] = ACTIONS(2309), - [anon_sym_json_DOTdecode] = ACTIONS(2309), - [anon_sym_LBRACK2] = ACTIONS(2309), - [anon_sym_TILDE] = ACTIONS(2309), - [anon_sym_CARET] = ACTIONS(2309), - [anon_sym_AMP] = ACTIONS(2309), - [anon_sym_LT_DASH] = ACTIONS(2309), - [anon_sym_LT_LT] = ACTIONS(2309), - [anon_sym_GT_GT] = ACTIONS(2309), - [anon_sym_GT_GT_GT] = ACTIONS(2309), - [anon_sym_AMP_CARET] = ACTIONS(2309), - [anon_sym_AMP_AMP] = ACTIONS(2309), - [anon_sym_PIPE_PIPE] = ACTIONS(2309), - [anon_sym_or] = ACTIONS(2309), - [sym_none] = ACTIONS(2309), - [sym_true] = ACTIONS(2309), - [sym_false] = ACTIONS(2309), - [sym_nil] = ACTIONS(2309), - [anon_sym_QMARK_DOT] = ACTIONS(2309), - [anon_sym_POUND_LBRACK] = ACTIONS(2309), - [anon_sym_if] = ACTIONS(2309), - [anon_sym_DOLLARif] = ACTIONS(2309), - [anon_sym_is] = ACTIONS(2309), - [anon_sym_BANGis] = ACTIONS(2309), - [anon_sym_in] = ACTIONS(2309), - [anon_sym_BANGin] = ACTIONS(2309), - [anon_sym_match] = ACTIONS(2309), - [anon_sym_select] = ACTIONS(2309), - [anon_sym_STAR_EQ] = ACTIONS(2309), - [anon_sym_SLASH_EQ] = ACTIONS(2309), - [anon_sym_PERCENT_EQ] = ACTIONS(2309), - [anon_sym_LT_LT_EQ] = ACTIONS(2309), - [anon_sym_GT_GT_EQ] = ACTIONS(2309), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(2309), - [anon_sym_AMP_EQ] = ACTIONS(2309), - [anon_sym_AMP_CARET_EQ] = ACTIONS(2309), - [anon_sym_PLUS_EQ] = ACTIONS(2309), - [anon_sym_DASH_EQ] = ACTIONS(2309), - [anon_sym_PIPE_EQ] = ACTIONS(2309), - [anon_sym_CARET_EQ] = ACTIONS(2309), - [anon_sym_COLON_EQ] = ACTIONS(2309), - [anon_sym_lock] = ACTIONS(2309), - [anon_sym_rlock] = ACTIONS(2309), - [anon_sym_unsafe] = ACTIONS(2309), - [anon_sym_sql] = ACTIONS(2309), - [sym_int_literal] = ACTIONS(2309), - [sym_float_literal] = ACTIONS(2309), - [sym_rune_literal] = ACTIONS(2309), - [sym_pseudo_compile_time_identifier] = ACTIONS(2309), - [anon_sym_shared] = ACTIONS(2309), - [anon_sym_map_LBRACK] = ACTIONS(2309), - [anon_sym_chan] = ACTIONS(2309), - [anon_sym_thread] = ACTIONS(2309), - [anon_sym_atomic] = ACTIONS(2309), - [anon_sym_assert] = ACTIONS(2309), - [anon_sym_defer] = ACTIONS(2309), - [anon_sym_goto] = ACTIONS(2309), - [anon_sym_break] = ACTIONS(2309), - [anon_sym_continue] = ACTIONS(2309), - [anon_sym_return] = ACTIONS(2309), - [anon_sym_DOLLARfor] = ACTIONS(2309), - [anon_sym_for] = ACTIONS(2309), - [anon_sym_POUND] = ACTIONS(2309), - [anon_sym_asm] = ACTIONS(2309), - [anon_sym_AT_LBRACK] = ACTIONS(2309), - [sym___double_quote] = ACTIONS(2309), - [sym___single_quote] = ACTIONS(2309), - [sym___c_double_quote] = ACTIONS(2309), - [sym___c_single_quote] = ACTIONS(2309), - [sym___r_double_quote] = ACTIONS(2309), - [sym___r_single_quote] = ACTIONS(2309), + [anon_sym_DOT] = ACTIONS(2307), + [anon_sym_as] = ACTIONS(2307), + [anon_sym_LBRACE] = ACTIONS(2307), + [anon_sym_COMMA] = ACTIONS(2307), + [anon_sym_const] = ACTIONS(2307), + [anon_sym_LPAREN] = ACTIONS(2307), + [anon_sym_EQ] = ACTIONS(2307), + [anon_sym___global] = ACTIONS(2307), + [anon_sym_type] = ACTIONS(2307), + [anon_sym_PIPE] = ACTIONS(2307), + [anon_sym_fn] = ACTIONS(2307), + [anon_sym_PLUS] = ACTIONS(2307), + [anon_sym_DASH] = ACTIONS(2307), + [anon_sym_STAR] = ACTIONS(2307), + [anon_sym_SLASH] = ACTIONS(2307), + [anon_sym_PERCENT] = ACTIONS(2307), + [anon_sym_LT] = ACTIONS(2307), + [anon_sym_GT] = ACTIONS(2307), + [anon_sym_EQ_EQ] = ACTIONS(2307), + [anon_sym_BANG_EQ] = ACTIONS(2307), + [anon_sym_LT_EQ] = ACTIONS(2307), + [anon_sym_GT_EQ] = ACTIONS(2307), + [anon_sym_LBRACK] = ACTIONS(2305), + [anon_sym_struct] = ACTIONS(2307), + [anon_sym_union] = ACTIONS(2307), + [anon_sym_pub] = ACTIONS(2307), + [anon_sym_mut] = ACTIONS(2307), + [anon_sym_enum] = ACTIONS(2307), + [anon_sym_interface] = ACTIONS(2307), + [anon_sym_PLUS_PLUS] = ACTIONS(2307), + [anon_sym_DASH_DASH] = ACTIONS(2307), + [anon_sym_QMARK] = ACTIONS(2307), + [anon_sym_BANG] = ACTIONS(2307), + [anon_sym_go] = ACTIONS(2307), + [anon_sym_spawn] = ACTIONS(2307), + [anon_sym_json_DOTdecode] = ACTIONS(2307), + [anon_sym_LBRACK2] = ACTIONS(2307), + [anon_sym_TILDE] = ACTIONS(2307), + [anon_sym_CARET] = ACTIONS(2307), + [anon_sym_AMP] = ACTIONS(2307), + [anon_sym_LT_DASH] = ACTIONS(2307), + [anon_sym_LT_LT] = ACTIONS(2307), + [anon_sym_GT_GT] = ACTIONS(2307), + [anon_sym_GT_GT_GT] = ACTIONS(2307), + [anon_sym_AMP_CARET] = ACTIONS(2307), + [anon_sym_AMP_AMP] = ACTIONS(2307), + [anon_sym_PIPE_PIPE] = ACTIONS(2307), + [anon_sym_or] = ACTIONS(2307), + [sym_none] = ACTIONS(2307), + [sym_true] = ACTIONS(2307), + [sym_false] = ACTIONS(2307), + [sym_nil] = ACTIONS(2307), + [anon_sym_QMARK_DOT] = ACTIONS(2307), + [anon_sym_POUND_LBRACK] = ACTIONS(2307), + [anon_sym_if] = ACTIONS(2307), + [anon_sym_DOLLARif] = ACTIONS(2307), + [anon_sym_is] = ACTIONS(2307), + [anon_sym_BANGis] = ACTIONS(2307), + [anon_sym_in] = ACTIONS(2307), + [anon_sym_BANGin] = ACTIONS(2307), + [anon_sym_match] = ACTIONS(2307), + [anon_sym_select] = ACTIONS(2307), + [anon_sym_STAR_EQ] = ACTIONS(2307), + [anon_sym_SLASH_EQ] = ACTIONS(2307), + [anon_sym_PERCENT_EQ] = ACTIONS(2307), + [anon_sym_LT_LT_EQ] = ACTIONS(2307), + [anon_sym_GT_GT_EQ] = ACTIONS(2307), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(2307), + [anon_sym_AMP_EQ] = ACTIONS(2307), + [anon_sym_AMP_CARET_EQ] = ACTIONS(2307), + [anon_sym_PLUS_EQ] = ACTIONS(2307), + [anon_sym_DASH_EQ] = ACTIONS(2307), + [anon_sym_PIPE_EQ] = ACTIONS(2307), + [anon_sym_CARET_EQ] = ACTIONS(2307), + [anon_sym_COLON_EQ] = ACTIONS(2307), + [anon_sym_lock] = ACTIONS(2307), + [anon_sym_rlock] = ACTIONS(2307), + [anon_sym_unsafe] = ACTIONS(2307), + [anon_sym_sql] = ACTIONS(2307), + [sym_int_literal] = ACTIONS(2307), + [sym_float_literal] = ACTIONS(2307), + [sym_rune_literal] = ACTIONS(2307), + [sym_pseudo_compile_time_identifier] = ACTIONS(2307), + [anon_sym_shared] = ACTIONS(2307), + [anon_sym_map_LBRACK] = ACTIONS(2307), + [anon_sym_chan] = ACTIONS(2307), + [anon_sym_thread] = ACTIONS(2307), + [anon_sym_atomic] = ACTIONS(2307), + [anon_sym_assert] = ACTIONS(2307), + [anon_sym_defer] = ACTIONS(2307), + [anon_sym_goto] = ACTIONS(2307), + [anon_sym_break] = ACTIONS(2307), + [anon_sym_continue] = ACTIONS(2307), + [anon_sym_return] = ACTIONS(2307), + [anon_sym_DOLLARfor] = ACTIONS(2307), + [anon_sym_for] = ACTIONS(2307), + [anon_sym_POUND] = ACTIONS(2307), + [anon_sym_asm] = ACTIONS(2307), + [anon_sym_AT_LBRACK] = ACTIONS(2307), + [sym___double_quote] = ACTIONS(2307), + [sym___single_quote] = ACTIONS(2307), + [sym___c_double_quote] = ACTIONS(2307), + [sym___c_single_quote] = ACTIONS(2307), + [sym___r_double_quote] = ACTIONS(2307), + [sym___r_single_quote] = ACTIONS(2307), }, - [373] = { - [sym_line_comment] = STATE(373), - [sym_block_comment] = STATE(373), - [sym__expression] = STATE(2455), - [sym__expression_without_blocks] = STATE(2300), - [sym__expression_with_blocks] = STATE(2300), - [sym_inc_expression] = STATE(2307), - [sym_dec_expression] = STATE(2307), - [sym_or_block_expression] = STATE(2307), - [sym_option_propagation_expression] = STATE(2307), - [sym_result_propagation_expression] = STATE(2307), - [sym_anon_struct_value_expression] = STATE(2380), - [sym_go_expression] = STATE(2307), - [sym_spawn_expression] = STATE(2307), - [sym_parenthesized_expression] = STATE(2307), - [sym_call_expression] = STATE(2307), - [sym_type_initializer] = STATE(2380), - [sym_function_literal] = STATE(2307), - [sym_reference_expression] = STATE(2311), - [sym_type_reference_expression] = STATE(3541), - [sym_unary_expression] = STATE(2307), - [sym_receive_expression] = STATE(2307), - [sym_binary_expression] = STATE(2307), - [sym_as_type_cast_expression] = STATE(2307), - [sym__max_group] = STATE(2307), - [sym_literal] = STATE(2292), - [sym_map_init_expression] = STATE(2380), - [sym_array_creation] = STATE(2307), - [sym_fixed_array_creation] = STATE(2307), - [sym_selector_expression] = STATE(2307), - [sym_index_expression] = STATE(2307), - [sym_slice_expression] = STATE(2307), - [sym_if_expression] = STATE(2380), - [sym_compile_time_if_expression] = STATE(2380), - [sym_is_expression] = STATE(2307), - [sym_in_expression] = STATE(2307), - [sym_enum_fetch] = STATE(2307), - [sym_match_expression] = STATE(2380), - [sym_select_expression] = STATE(2380), - [sym_lock_expression] = STATE(2380), - [sym_unsafe_expression] = STATE(2380), - [sym_sql_expression] = STATE(2380), - [sym_c_string_literal] = STATE(2308), - [sym_raw_string_literal] = STATE(2308), - [sym_interpreted_string_literal] = STATE(2308), - [sym_mutability_modifiers] = STATE(824), - [sym_mutable_expression] = STATE(3922), - [sym_expression_list] = STATE(4078), - [sym_plain_type] = STATE(4297), - [sym__plain_type_without_special] = STATE(2302), - [sym_anon_struct_type] = STATE(2303), - [sym_multi_return_type] = STATE(2302), - [sym_result_type] = STATE(2302), - [sym_option_type] = STATE(2302), - [sym_qualified_type] = STATE(3541), - [sym_fixed_array_type] = STATE(2303), - [sym_array_type] = STATE(2303), - [sym_pointer_type] = STATE(2303), - [sym_wrong_pointer_type] = STATE(2303), - [sym_map_type] = STATE(2303), - [sym_channel_type] = STATE(2303), - [sym_shared_type] = STATE(2303), - [sym_thread_type] = STATE(2303), - [sym_atomic_type] = STATE(2303), - [sym_generic_type] = STATE(2303), - [sym_function_type] = STATE(2303), - [sym_identifier] = ACTIONS(1807), - [anon_sym_SLASH_SLASH] = ACTIONS(3), - [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1428), - [anon_sym_LBRACE] = ACTIONS(1430), - [anon_sym_LPAREN] = ACTIONS(1432), - [anon_sym_fn] = ACTIONS(1434), - [anon_sym_PLUS] = ACTIONS(1811), - [anon_sym_DASH] = ACTIONS(1811), - [anon_sym_STAR] = ACTIONS(1813), - [anon_sym_struct] = ACTIONS(1440), - [anon_sym_mut] = ACTIONS(41), - [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(1815), - [anon_sym_go] = ACTIONS(1817), - [anon_sym_spawn] = ACTIONS(1819), - [anon_sym_json_DOTdecode] = ACTIONS(1448), - [anon_sym_LBRACK2] = ACTIONS(1821), - [anon_sym_TILDE] = ACTIONS(1811), - [anon_sym_CARET] = ACTIONS(1811), - [anon_sym_AMP] = ACTIONS(1823), - [anon_sym_LT_DASH] = ACTIONS(1825), - [sym_none] = ACTIONS(1456), - [sym_true] = ACTIONS(1456), - [sym_false] = ACTIONS(1456), - [sym_nil] = ACTIONS(1456), - [anon_sym_if] = ACTIONS(1827), - [anon_sym_DOLLARif] = ACTIONS(1460), - [anon_sym_match] = ACTIONS(1462), - [anon_sym_select] = ACTIONS(1829), - [anon_sym_lock] = ACTIONS(1831), - [anon_sym_rlock] = ACTIONS(1831), - [anon_sym_unsafe] = ACTIONS(1833), - [anon_sym_sql] = ACTIONS(1470), - [sym_int_literal] = ACTIONS(1456), - [sym_float_literal] = ACTIONS(1472), - [sym_rune_literal] = ACTIONS(1472), - [sym_pseudo_compile_time_identifier] = ACTIONS(1474), - [anon_sym_shared] = ACTIONS(83), - [anon_sym_map_LBRACK] = ACTIONS(85), - [anon_sym_chan] = ACTIONS(87), - [anon_sym_thread] = ACTIONS(89), - [anon_sym_atomic] = ACTIONS(91), - [sym___double_quote] = ACTIONS(1478), - [sym___single_quote] = ACTIONS(1480), - [sym___c_double_quote] = ACTIONS(1482), - [sym___c_single_quote] = ACTIONS(1484), - [sym___r_double_quote] = ACTIONS(1486), - [sym___r_single_quote] = ACTIONS(1488), + [361] = { + [sym_line_comment] = STATE(361), + [sym_block_comment] = STATE(361), + [ts_builtin_sym_end] = ACTIONS(2309), + [sym_identifier] = ACTIONS(2311), + [anon_sym_LF] = ACTIONS(2311), + [anon_sym_CR] = ACTIONS(2311), + [anon_sym_CR_LF] = ACTIONS(2311), + [anon_sym_SLASH_SLASH] = ACTIONS(497), + [anon_sym_SLASH_STAR] = ACTIONS(499), + [anon_sym_DOT] = ACTIONS(2311), + [anon_sym_as] = ACTIONS(2311), + [anon_sym_LBRACE] = ACTIONS(2311), + [anon_sym_COMMA] = ACTIONS(2311), + [anon_sym_const] = ACTIONS(2311), + [anon_sym_LPAREN] = ACTIONS(2311), + [anon_sym_EQ] = ACTIONS(2311), + [anon_sym___global] = ACTIONS(2311), + [anon_sym_type] = ACTIONS(2311), + [anon_sym_PIPE] = ACTIONS(2311), + [anon_sym_fn] = ACTIONS(2311), + [anon_sym_PLUS] = ACTIONS(2311), + [anon_sym_DASH] = ACTIONS(2311), + [anon_sym_STAR] = ACTIONS(2311), + [anon_sym_SLASH] = ACTIONS(2311), + [anon_sym_PERCENT] = ACTIONS(2311), + [anon_sym_LT] = ACTIONS(2311), + [anon_sym_GT] = ACTIONS(2311), + [anon_sym_EQ_EQ] = ACTIONS(2311), + [anon_sym_BANG_EQ] = ACTIONS(2311), + [anon_sym_LT_EQ] = ACTIONS(2311), + [anon_sym_GT_EQ] = ACTIONS(2311), + [anon_sym_LBRACK] = ACTIONS(2309), + [anon_sym_struct] = ACTIONS(2311), + [anon_sym_union] = ACTIONS(2311), + [anon_sym_pub] = ACTIONS(2311), + [anon_sym_mut] = ACTIONS(2311), + [anon_sym_enum] = ACTIONS(2311), + [anon_sym_interface] = ACTIONS(2311), + [anon_sym_PLUS_PLUS] = ACTIONS(2311), + [anon_sym_DASH_DASH] = ACTIONS(2311), + [anon_sym_QMARK] = ACTIONS(2311), + [anon_sym_BANG] = ACTIONS(2311), + [anon_sym_go] = ACTIONS(2311), + [anon_sym_spawn] = ACTIONS(2311), + [anon_sym_json_DOTdecode] = ACTIONS(2311), + [anon_sym_LBRACK2] = ACTIONS(2311), + [anon_sym_TILDE] = ACTIONS(2311), + [anon_sym_CARET] = ACTIONS(2311), + [anon_sym_AMP] = ACTIONS(2311), + [anon_sym_LT_DASH] = ACTIONS(2311), + [anon_sym_LT_LT] = ACTIONS(2311), + [anon_sym_GT_GT] = ACTIONS(2311), + [anon_sym_GT_GT_GT] = ACTIONS(2311), + [anon_sym_AMP_CARET] = ACTIONS(2311), + [anon_sym_AMP_AMP] = ACTIONS(2311), + [anon_sym_PIPE_PIPE] = ACTIONS(2311), + [anon_sym_or] = ACTIONS(2311), + [sym_none] = ACTIONS(2311), + [sym_true] = ACTIONS(2311), + [sym_false] = ACTIONS(2311), + [sym_nil] = ACTIONS(2311), + [anon_sym_QMARK_DOT] = ACTIONS(2311), + [anon_sym_POUND_LBRACK] = ACTIONS(2311), + [anon_sym_if] = ACTIONS(2311), + [anon_sym_DOLLARif] = ACTIONS(2311), + [anon_sym_is] = ACTIONS(2311), + [anon_sym_BANGis] = ACTIONS(2311), + [anon_sym_in] = ACTIONS(2311), + [anon_sym_BANGin] = ACTIONS(2311), + [anon_sym_match] = ACTIONS(2311), + [anon_sym_select] = ACTIONS(2311), + [anon_sym_STAR_EQ] = ACTIONS(2311), + [anon_sym_SLASH_EQ] = ACTIONS(2311), + [anon_sym_PERCENT_EQ] = ACTIONS(2311), + [anon_sym_LT_LT_EQ] = ACTIONS(2311), + [anon_sym_GT_GT_EQ] = ACTIONS(2311), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(2311), + [anon_sym_AMP_EQ] = ACTIONS(2311), + [anon_sym_AMP_CARET_EQ] = ACTIONS(2311), + [anon_sym_PLUS_EQ] = ACTIONS(2311), + [anon_sym_DASH_EQ] = ACTIONS(2311), + [anon_sym_PIPE_EQ] = ACTIONS(2311), + [anon_sym_CARET_EQ] = ACTIONS(2311), + [anon_sym_COLON_EQ] = ACTIONS(2311), + [anon_sym_lock] = ACTIONS(2311), + [anon_sym_rlock] = ACTIONS(2311), + [anon_sym_unsafe] = ACTIONS(2311), + [anon_sym_sql] = ACTIONS(2311), + [sym_int_literal] = ACTIONS(2311), + [sym_float_literal] = ACTIONS(2311), + [sym_rune_literal] = ACTIONS(2311), + [sym_pseudo_compile_time_identifier] = ACTIONS(2311), + [anon_sym_shared] = ACTIONS(2311), + [anon_sym_map_LBRACK] = ACTIONS(2311), + [anon_sym_chan] = ACTIONS(2311), + [anon_sym_thread] = ACTIONS(2311), + [anon_sym_atomic] = ACTIONS(2311), + [anon_sym_assert] = ACTIONS(2311), + [anon_sym_defer] = ACTIONS(2311), + [anon_sym_goto] = ACTIONS(2311), + [anon_sym_break] = ACTIONS(2311), + [anon_sym_continue] = ACTIONS(2311), + [anon_sym_return] = ACTIONS(2311), + [anon_sym_DOLLARfor] = ACTIONS(2311), + [anon_sym_for] = ACTIONS(2311), + [anon_sym_POUND] = ACTIONS(2311), + [anon_sym_asm] = ACTIONS(2311), + [anon_sym_AT_LBRACK] = ACTIONS(2311), + [sym___double_quote] = ACTIONS(2311), + [sym___single_quote] = ACTIONS(2311), + [sym___c_double_quote] = ACTIONS(2311), + [sym___c_single_quote] = ACTIONS(2311), + [sym___r_double_quote] = ACTIONS(2311), + [sym___r_single_quote] = ACTIONS(2311), }, - [374] = { - [sym_line_comment] = STATE(374), - [sym_block_comment] = STATE(374), - [sym__expression] = STATE(1133), - [sym__expression_without_blocks] = STATE(1141), - [sym__expression_with_blocks] = STATE(1141), - [sym_inc_expression] = STATE(1140), - [sym_dec_expression] = STATE(1140), - [sym_or_block_expression] = STATE(1140), - [sym_option_propagation_expression] = STATE(1140), - [sym_result_propagation_expression] = STATE(1140), - [sym_anon_struct_value_expression] = STATE(1199), - [sym_go_expression] = STATE(1140), - [sym_spawn_expression] = STATE(1140), - [sym_parenthesized_expression] = STATE(1140), - [sym_call_expression] = STATE(1140), - [sym_type_initializer] = STATE(1199), - [sym_function_literal] = STATE(1140), - [sym_reference_expression] = STATE(1181), - [sym_type_reference_expression] = STATE(3541), - [sym_unary_expression] = STATE(1140), - [sym_receive_expression] = STATE(1140), - [sym_binary_expression] = STATE(1140), - [sym_as_type_cast_expression] = STATE(1140), - [sym__max_group] = STATE(1140), - [sym_literal] = STATE(1146), - [sym_map_init_expression] = STATE(1199), - [sym_array_creation] = STATE(1140), - [sym_fixed_array_creation] = STATE(1140), - [sym_selector_expression] = STATE(1140), - [sym_index_expression] = STATE(1140), - [sym_slice_expression] = STATE(1140), - [sym_if_expression] = STATE(1199), - [sym_compile_time_if_expression] = STATE(1199), - [sym_is_expression] = STATE(1140), - [sym_in_expression] = STATE(1140), - [sym_enum_fetch] = STATE(1140), - [sym_match_expression] = STATE(1199), - [sym_select_expression] = STATE(1199), - [sym_lock_expression] = STATE(1199), - [sym_unsafe_expression] = STATE(1199), - [sym_sql_expression] = STATE(1199), - [sym_c_string_literal] = STATE(1147), - [sym_raw_string_literal] = STATE(1147), - [sym_interpreted_string_literal] = STATE(1147), - [sym_mutability_modifiers] = STATE(638), - [sym_plain_type] = STATE(4234), - [sym__plain_type_without_special] = STATE(2302), - [sym_anon_struct_type] = STATE(2303), - [sym_multi_return_type] = STATE(2302), - [sym_result_type] = STATE(2302), - [sym_option_type] = STATE(2302), - [sym_qualified_type] = STATE(3541), - [sym_fixed_array_type] = STATE(2303), - [sym_array_type] = STATE(2303), - [sym_pointer_type] = STATE(2303), - [sym_wrong_pointer_type] = STATE(2303), - [sym_map_type] = STATE(2303), - [sym_channel_type] = STATE(2303), - [sym_shared_type] = STATE(2303), - [sym_thread_type] = STATE(2303), - [sym_atomic_type] = STATE(2303), - [sym_generic_type] = STATE(2303), - [sym_function_type] = STATE(2303), - [aux_sym_short_element_list_repeat1] = STATE(491), - [sym_identifier] = ACTIONS(1071), - [anon_sym_SLASH_SLASH] = ACTIONS(3), - [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(631), - [anon_sym_LBRACE] = ACTIONS(633), - [anon_sym_RBRACE] = ACTIONS(2311), - [anon_sym_LPAREN] = ACTIONS(637), - [anon_sym_fn] = ACTIONS(641), - [anon_sym_PLUS] = ACTIONS(643), - [anon_sym_DASH] = ACTIONS(643), - [anon_sym_STAR] = ACTIONS(645), - [anon_sym_struct] = ACTIONS(649), - [anon_sym_mut] = ACTIONS(41), - [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(655), - [anon_sym_go] = ACTIONS(657), - [anon_sym_spawn] = ACTIONS(659), - [anon_sym_json_DOTdecode] = ACTIONS(661), - [anon_sym_LBRACK2] = ACTIONS(663), - [anon_sym_TILDE] = ACTIONS(643), - [anon_sym_CARET] = ACTIONS(643), - [anon_sym_AMP] = ACTIONS(665), - [anon_sym_LT_DASH] = ACTIONS(667), - [sym_none] = ACTIONS(669), - [sym_true] = ACTIONS(669), - [sym_false] = ACTIONS(669), - [sym_nil] = ACTIONS(669), - [anon_sym_if] = ACTIONS(671), - [anon_sym_DOLLARif] = ACTIONS(673), - [anon_sym_match] = ACTIONS(675), - [anon_sym_select] = ACTIONS(677), - [anon_sym_lock] = ACTIONS(679), - [anon_sym_rlock] = ACTIONS(679), - [anon_sym_unsafe] = ACTIONS(681), - [anon_sym_sql] = ACTIONS(683), - [sym_int_literal] = ACTIONS(669), - [sym_float_literal] = ACTIONS(685), - [sym_rune_literal] = ACTIONS(685), - [sym_pseudo_compile_time_identifier] = ACTIONS(687), - [anon_sym_shared] = ACTIONS(83), - [anon_sym_map_LBRACK] = ACTIONS(85), - [anon_sym_chan] = ACTIONS(87), - [anon_sym_thread] = ACTIONS(89), - [anon_sym_atomic] = ACTIONS(91), - [sym___double_quote] = ACTIONS(689), - [sym___single_quote] = ACTIONS(691), - [sym___c_double_quote] = ACTIONS(693), - [sym___c_single_quote] = ACTIONS(695), - [sym___r_double_quote] = ACTIONS(697), - [sym___r_single_quote] = ACTIONS(699), + [362] = { + [sym_line_comment] = STATE(362), + [sym_block_comment] = STATE(362), + [ts_builtin_sym_end] = ACTIONS(1989), + [sym_identifier] = ACTIONS(1987), + [anon_sym_LF] = ACTIONS(1987), + [anon_sym_CR] = ACTIONS(1987), + [anon_sym_CR_LF] = ACTIONS(1987), + [anon_sym_SLASH_SLASH] = ACTIONS(497), + [anon_sym_SLASH_STAR] = ACTIONS(499), + [anon_sym_DOT] = ACTIONS(1987), + [anon_sym_as] = ACTIONS(1987), + [anon_sym_LBRACE] = ACTIONS(1987), + [anon_sym_COMMA] = ACTIONS(1987), + [anon_sym_const] = ACTIONS(1987), + [anon_sym_LPAREN] = ACTIONS(1987), + [anon_sym_EQ] = ACTIONS(1987), + [anon_sym___global] = ACTIONS(1987), + [anon_sym_type] = ACTIONS(1987), + [anon_sym_PIPE] = ACTIONS(1987), + [anon_sym_fn] = ACTIONS(1987), + [anon_sym_PLUS] = ACTIONS(1987), + [anon_sym_DASH] = ACTIONS(1987), + [anon_sym_STAR] = ACTIONS(1987), + [anon_sym_SLASH] = ACTIONS(1987), + [anon_sym_PERCENT] = ACTIONS(1987), + [anon_sym_LT] = ACTIONS(1987), + [anon_sym_GT] = ACTIONS(1987), + [anon_sym_EQ_EQ] = ACTIONS(1987), + [anon_sym_BANG_EQ] = ACTIONS(1987), + [anon_sym_LT_EQ] = ACTIONS(1987), + [anon_sym_GT_EQ] = ACTIONS(1987), + [anon_sym_LBRACK] = ACTIONS(1989), + [anon_sym_struct] = ACTIONS(1987), + [anon_sym_union] = ACTIONS(1987), + [anon_sym_pub] = ACTIONS(1987), + [anon_sym_mut] = ACTIONS(1987), + [anon_sym_enum] = ACTIONS(1987), + [anon_sym_interface] = ACTIONS(1987), + [anon_sym_PLUS_PLUS] = ACTIONS(1987), + [anon_sym_DASH_DASH] = ACTIONS(1987), + [anon_sym_QMARK] = ACTIONS(1987), + [anon_sym_BANG] = ACTIONS(1987), + [anon_sym_go] = ACTIONS(1987), + [anon_sym_spawn] = ACTIONS(1987), + [anon_sym_json_DOTdecode] = ACTIONS(1987), + [anon_sym_LBRACK2] = ACTIONS(1987), + [anon_sym_TILDE] = ACTIONS(1987), + [anon_sym_CARET] = ACTIONS(1987), + [anon_sym_AMP] = ACTIONS(1987), + [anon_sym_LT_DASH] = ACTIONS(1987), + [anon_sym_LT_LT] = ACTIONS(1987), + [anon_sym_GT_GT] = ACTIONS(1987), + [anon_sym_GT_GT_GT] = ACTIONS(1987), + [anon_sym_AMP_CARET] = ACTIONS(1987), + [anon_sym_AMP_AMP] = ACTIONS(1987), + [anon_sym_PIPE_PIPE] = ACTIONS(1987), + [anon_sym_or] = ACTIONS(1987), + [sym_none] = ACTIONS(1987), + [sym_true] = ACTIONS(1987), + [sym_false] = ACTIONS(1987), + [sym_nil] = ACTIONS(1987), + [anon_sym_QMARK_DOT] = ACTIONS(1987), + [anon_sym_POUND_LBRACK] = ACTIONS(1987), + [anon_sym_if] = ACTIONS(1987), + [anon_sym_DOLLARif] = ACTIONS(1987), + [anon_sym_is] = ACTIONS(1987), + [anon_sym_BANGis] = ACTIONS(1987), + [anon_sym_in] = ACTIONS(1987), + [anon_sym_BANGin] = ACTIONS(1987), + [anon_sym_match] = ACTIONS(1987), + [anon_sym_select] = ACTIONS(1987), + [anon_sym_STAR_EQ] = ACTIONS(1987), + [anon_sym_SLASH_EQ] = ACTIONS(1987), + [anon_sym_PERCENT_EQ] = ACTIONS(1987), + [anon_sym_LT_LT_EQ] = ACTIONS(1987), + [anon_sym_GT_GT_EQ] = ACTIONS(1987), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(1987), + [anon_sym_AMP_EQ] = ACTIONS(1987), + [anon_sym_AMP_CARET_EQ] = ACTIONS(1987), + [anon_sym_PLUS_EQ] = ACTIONS(1987), + [anon_sym_DASH_EQ] = ACTIONS(1987), + [anon_sym_PIPE_EQ] = ACTIONS(1987), + [anon_sym_CARET_EQ] = ACTIONS(1987), + [anon_sym_COLON_EQ] = ACTIONS(1987), + [anon_sym_lock] = ACTIONS(1987), + [anon_sym_rlock] = ACTIONS(1987), + [anon_sym_unsafe] = ACTIONS(1987), + [anon_sym_sql] = ACTIONS(1987), + [sym_int_literal] = ACTIONS(1987), + [sym_float_literal] = ACTIONS(1987), + [sym_rune_literal] = ACTIONS(1987), + [sym_pseudo_compile_time_identifier] = ACTIONS(1987), + [anon_sym_shared] = ACTIONS(1987), + [anon_sym_map_LBRACK] = ACTIONS(1987), + [anon_sym_chan] = ACTIONS(1987), + [anon_sym_thread] = ACTIONS(1987), + [anon_sym_atomic] = ACTIONS(1987), + [anon_sym_assert] = ACTIONS(1987), + [anon_sym_defer] = ACTIONS(1987), + [anon_sym_goto] = ACTIONS(1987), + [anon_sym_break] = ACTIONS(1987), + [anon_sym_continue] = ACTIONS(1987), + [anon_sym_return] = ACTIONS(1987), + [anon_sym_DOLLARfor] = ACTIONS(1987), + [anon_sym_for] = ACTIONS(1987), + [anon_sym_POUND] = ACTIONS(1987), + [anon_sym_asm] = ACTIONS(1987), + [anon_sym_AT_LBRACK] = ACTIONS(1987), + [sym___double_quote] = ACTIONS(1987), + [sym___single_quote] = ACTIONS(1987), + [sym___c_double_quote] = ACTIONS(1987), + [sym___c_single_quote] = ACTIONS(1987), + [sym___r_double_quote] = ACTIONS(1987), + [sym___r_single_quote] = ACTIONS(1987), }, - [375] = { - [sym_line_comment] = STATE(375), - [sym_block_comment] = STATE(375), - [sym__expression] = STATE(2512), - [sym__expression_without_blocks] = STATE(2300), - [sym__expression_with_blocks] = STATE(2300), - [sym_inc_expression] = STATE(2307), - [sym_dec_expression] = STATE(2307), - [sym_or_block_expression] = STATE(2307), - [sym_option_propagation_expression] = STATE(2307), - [sym_result_propagation_expression] = STATE(2307), - [sym_anon_struct_value_expression] = STATE(2380), - [sym_go_expression] = STATE(2307), - [sym_spawn_expression] = STATE(2307), - [sym_parenthesized_expression] = STATE(2307), - [sym_call_expression] = STATE(2307), - [sym_type_initializer] = STATE(2380), - [sym_function_literal] = STATE(2307), - [sym_reference_expression] = STATE(2311), - [sym_type_reference_expression] = STATE(3541), - [sym_unary_expression] = STATE(2307), - [sym_receive_expression] = STATE(2307), - [sym_binary_expression] = STATE(2307), - [sym_as_type_cast_expression] = STATE(2307), - [sym__max_group] = STATE(2307), - [sym_literal] = STATE(2292), - [sym_map_init_expression] = STATE(2380), - [sym_array_creation] = STATE(2307), - [sym_fixed_array_creation] = STATE(2307), - [sym_selector_expression] = STATE(2307), - [sym_index_expression] = STATE(2307), - [sym_slice_expression] = STATE(2307), - [sym_if_expression] = STATE(2380), - [sym_compile_time_if_expression] = STATE(2380), - [sym_is_expression] = STATE(2307), - [sym_in_expression] = STATE(2307), - [sym_enum_fetch] = STATE(2307), - [sym_match_expression] = STATE(2380), - [sym_select_expression] = STATE(2380), - [sym_lock_expression] = STATE(2380), - [sym_unsafe_expression] = STATE(2380), - [sym_sql_expression] = STATE(2380), - [sym_c_string_literal] = STATE(2308), - [sym_raw_string_literal] = STATE(2308), - [sym_interpreted_string_literal] = STATE(2308), - [sym_mutability_modifiers] = STATE(663), - [sym_mutable_expression] = STATE(3764), - [sym_expression_list] = STATE(4082), - [sym_plain_type] = STATE(4297), - [sym__plain_type_without_special] = STATE(2302), - [sym_anon_struct_type] = STATE(2303), - [sym_multi_return_type] = STATE(2302), - [sym_result_type] = STATE(2302), - [sym_option_type] = STATE(2302), - [sym_qualified_type] = STATE(3541), - [sym_fixed_array_type] = STATE(2303), - [sym_array_type] = STATE(2303), - [sym_pointer_type] = STATE(2303), - [sym_wrong_pointer_type] = STATE(2303), - [sym_map_type] = STATE(2303), - [sym_channel_type] = STATE(2303), - [sym_shared_type] = STATE(2303), - [sym_thread_type] = STATE(2303), - [sym_atomic_type] = STATE(2303), - [sym_generic_type] = STATE(2303), - [sym_function_type] = STATE(2303), - [sym_identifier] = ACTIONS(2189), + [363] = { + [sym_line_comment] = STATE(363), + [sym_block_comment] = STATE(363), + [sym__expression] = STATE(2609), + [sym__expression_without_blocks] = STATE(2347), + [sym__expression_with_blocks] = STATE(2347), + [sym_inc_expression] = STATE(2379), + [sym_dec_expression] = STATE(2379), + [sym_or_block_expression] = STATE(2379), + [sym_option_propagation_expression] = STATE(2379), + [sym_result_propagation_expression] = STATE(2379), + [sym_anon_struct_value_expression] = STATE(2378), + [sym_go_expression] = STATE(2379), + [sym_spawn_expression] = STATE(2379), + [sym_parenthesized_expression] = STATE(2379), + [sym_call_expression] = STATE(2379), + [sym_type_initializer] = STATE(2378), + [sym_function_literal] = STATE(2379), + [sym_reference_expression] = STATE(2377), + [sym_type_reference_expression] = STATE(3460), + [sym_unary_expression] = STATE(2379), + [sym_receive_expression] = STATE(2379), + [sym_binary_expression] = STATE(2379), + [sym_as_type_cast_expression] = STATE(2379), + [sym__max_group] = STATE(2379), + [sym_literal] = STATE(2392), + [sym_map_init_expression] = STATE(2378), + [sym_array_creation] = STATE(2379), + [sym_fixed_array_creation] = STATE(2379), + [sym_selector_expression] = STATE(2379), + [sym_index_expression] = STATE(2379), + [sym_slice_expression] = STATE(2379), + [sym_if_expression] = STATE(2378), + [sym_compile_time_if_expression] = STATE(2378), + [sym_is_expression] = STATE(2379), + [sym_in_expression] = STATE(2379), + [sym_enum_fetch] = STATE(2379), + [sym_match_expression] = STATE(2378), + [sym_select_expression] = STATE(2378), + [sym_lock_expression] = STATE(2378), + [sym_unsafe_expression] = STATE(2378), + [sym_sql_expression] = STATE(2378), + [sym_c_string_literal] = STATE(2401), + [sym_raw_string_literal] = STATE(2401), + [sym_interpreted_string_literal] = STATE(2401), + [sym_mutability_modifiers] = STATE(939), + [sym_plain_type] = STATE(4160), + [sym__plain_type_without_special] = STATE(2360), + [sym_anon_struct_type] = STATE(2362), + [sym_multi_return_type] = STATE(2360), + [sym_result_type] = STATE(2360), + [sym_option_type] = STATE(2360), + [sym_qualified_type] = STATE(3460), + [sym_fixed_array_type] = STATE(2362), + [sym_array_type] = STATE(2362), + [sym_pointer_type] = STATE(2362), + [sym_wrong_pointer_type] = STATE(2362), + [sym_map_type] = STATE(2362), + [sym_channel_type] = STATE(2362), + [sym_shared_type] = STATE(2362), + [sym_thread_type] = STATE(2362), + [sym_atomic_type] = STATE(2362), + [sym_generic_type] = STATE(2362), + [sym_function_type] = STATE(2362), + [sym_range] = STATE(4440), + [sym_identifier] = ACTIONS(1428), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1428), - [anon_sym_LBRACE] = ACTIONS(1430), - [anon_sym_LPAREN] = ACTIONS(1432), - [anon_sym_fn] = ACTIONS(1434), - [anon_sym_PLUS] = ACTIONS(2191), - [anon_sym_DASH] = ACTIONS(2191), - [anon_sym_STAR] = ACTIONS(2193), - [anon_sym_struct] = ACTIONS(1440), + [anon_sym_DOT] = ACTIONS(1430), + [anon_sym_LBRACE] = ACTIONS(1432), + [anon_sym_LPAREN] = ACTIONS(1434), + [anon_sym_fn] = ACTIONS(1436), + [anon_sym_PLUS] = ACTIONS(1438), + [anon_sym_DASH] = ACTIONS(1438), + [anon_sym_STAR] = ACTIONS(1440), + [anon_sym_struct] = ACTIONS(1442), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(2195), - [anon_sym_go] = ACTIONS(2197), - [anon_sym_spawn] = ACTIONS(2199), - [anon_sym_json_DOTdecode] = ACTIONS(1448), - [anon_sym_LBRACK2] = ACTIONS(2201), - [anon_sym_TILDE] = ACTIONS(2191), - [anon_sym_CARET] = ACTIONS(2191), - [anon_sym_AMP] = ACTIONS(2203), - [anon_sym_LT_DASH] = ACTIONS(2205), - [sym_none] = ACTIONS(1456), - [sym_true] = ACTIONS(1456), - [sym_false] = ACTIONS(1456), - [sym_nil] = ACTIONS(1456), - [anon_sym_if] = ACTIONS(1827), - [anon_sym_DOLLARif] = ACTIONS(1460), - [anon_sym_match] = ACTIONS(1462), - [anon_sym_select] = ACTIONS(2207), - [anon_sym_lock] = ACTIONS(2209), - [anon_sym_rlock] = ACTIONS(2209), - [anon_sym_unsafe] = ACTIONS(1833), - [anon_sym_sql] = ACTIONS(1470), - [sym_int_literal] = ACTIONS(1456), - [sym_float_literal] = ACTIONS(1472), - [sym_rune_literal] = ACTIONS(1472), - [sym_pseudo_compile_time_identifier] = ACTIONS(1474), + [anon_sym_BANG] = ACTIONS(1444), + [anon_sym_go] = ACTIONS(1446), + [anon_sym_spawn] = ACTIONS(1448), + [anon_sym_json_DOTdecode] = ACTIONS(1450), + [anon_sym_LBRACK2] = ACTIONS(1452), + [anon_sym_TILDE] = ACTIONS(1438), + [anon_sym_CARET] = ACTIONS(1438), + [anon_sym_AMP] = ACTIONS(1454), + [anon_sym_LT_DASH] = ACTIONS(1456), + [sym_none] = ACTIONS(1458), + [sym_true] = ACTIONS(1458), + [sym_false] = ACTIONS(1458), + [sym_nil] = ACTIONS(1458), + [anon_sym_if] = ACTIONS(1833), + [anon_sym_DOLLARif] = ACTIONS(1462), + [anon_sym_match] = ACTIONS(1464), + [anon_sym_select] = ACTIONS(1466), + [anon_sym_lock] = ACTIONS(1468), + [anon_sym_rlock] = ACTIONS(1468), + [anon_sym_unsafe] = ACTIONS(1839), + [anon_sym_sql] = ACTIONS(1472), + [sym_int_literal] = ACTIONS(1458), + [sym_float_literal] = ACTIONS(1474), + [sym_rune_literal] = ACTIONS(1474), + [sym_pseudo_compile_time_identifier] = ACTIONS(1476), [anon_sym_shared] = ACTIONS(83), [anon_sym_map_LBRACK] = ACTIONS(85), [anon_sym_chan] = ACTIONS(87), [anon_sym_thread] = ACTIONS(89), [anon_sym_atomic] = ACTIONS(91), - [sym___double_quote] = ACTIONS(1478), - [sym___single_quote] = ACTIONS(1480), - [sym___c_double_quote] = ACTIONS(1482), - [sym___c_single_quote] = ACTIONS(1484), - [sym___r_double_quote] = ACTIONS(1486), - [sym___r_single_quote] = ACTIONS(1488), + [anon_sym_DOT_DOT] = ACTIONS(1478), + [sym___double_quote] = ACTIONS(1480), + [sym___single_quote] = ACTIONS(1482), + [sym___c_double_quote] = ACTIONS(1484), + [sym___c_single_quote] = ACTIONS(1486), + [sym___r_double_quote] = ACTIONS(1488), + [sym___r_single_quote] = ACTIONS(1490), }, - [376] = { - [sym_line_comment] = STATE(376), - [sym_block_comment] = STATE(376), + [364] = { + [sym_line_comment] = STATE(364), + [sym_block_comment] = STATE(364), [ts_builtin_sym_end] = ACTIONS(2313), [sym_identifier] = ACTIONS(2315), [anon_sym_LF] = ACTIONS(2315), @@ -66532,7085 +65158,8941 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym___r_double_quote] = ACTIONS(2315), [sym___r_single_quote] = ACTIONS(2315), }, - [377] = { - [sym_line_comment] = STATE(377), - [sym_block_comment] = STATE(377), - [sym__expression] = STATE(1268), - [sym__expression_without_blocks] = STATE(1312), - [sym__expression_with_blocks] = STATE(1312), - [sym_inc_expression] = STATE(1313), - [sym_dec_expression] = STATE(1313), - [sym_or_block_expression] = STATE(1313), - [sym_option_propagation_expression] = STATE(1313), - [sym_result_propagation_expression] = STATE(1313), - [sym_anon_struct_value_expression] = STATE(1314), - [sym_go_expression] = STATE(1313), - [sym_spawn_expression] = STATE(1313), - [sym_parenthesized_expression] = STATE(1313), - [sym_call_expression] = STATE(1313), - [sym_type_initializer] = STATE(1314), - [sym_function_literal] = STATE(1313), - [sym_reference_expression] = STATE(1334), - [sym_type_reference_expression] = STATE(3541), - [sym_unary_expression] = STATE(1313), - [sym_receive_expression] = STATE(1313), - [sym_binary_expression] = STATE(1313), - [sym_as_type_cast_expression] = STATE(1313), - [sym__max_group] = STATE(1313), - [sym_literal] = STATE(1308), - [sym_map_init_expression] = STATE(1314), - [sym_array_creation] = STATE(1313), - [sym_fixed_array_creation] = STATE(1313), - [sym_selector_expression] = STATE(1313), - [sym_index_expression] = STATE(1313), - [sym_slice_expression] = STATE(1313), - [sym_if_expression] = STATE(1314), - [sym_compile_time_if_expression] = STATE(1314), - [sym_is_expression] = STATE(1313), - [sym_in_expression] = STATE(1313), - [sym_enum_fetch] = STATE(1313), - [sym_match_expression] = STATE(1314), - [sym_select_expression] = STATE(1314), - [sym_lock_expression] = STATE(1314), - [sym_unsafe_expression] = STATE(1314), - [sym_sql_expression] = STATE(1314), - [sym_c_string_literal] = STATE(1286), - [sym_raw_string_literal] = STATE(1286), - [sym_interpreted_string_literal] = STATE(1286), - [sym_mutability_modifiers] = STATE(699), - [sym_plain_type] = STATE(4192), - [sym__plain_type_without_special] = STATE(2302), - [sym_anon_struct_type] = STATE(2303), - [sym_multi_return_type] = STATE(2302), - [sym_result_type] = STATE(2302), - [sym_option_type] = STATE(2302), - [sym_qualified_type] = STATE(3541), - [sym_fixed_array_type] = STATE(2303), - [sym_array_type] = STATE(2303), - [sym_pointer_type] = STATE(2303), - [sym_wrong_pointer_type] = STATE(2303), - [sym_map_type] = STATE(2303), - [sym_channel_type] = STATE(2303), - [sym_shared_type] = STATE(2303), - [sym_thread_type] = STATE(2303), - [sym_atomic_type] = STATE(2303), - [sym_generic_type] = STATE(2303), - [sym_function_type] = STATE(2303), - [aux_sym__array_repeat1] = STATE(404), - [sym_identifier] = ACTIONS(1354), + [365] = { + [sym_line_comment] = STATE(365), + [sym_block_comment] = STATE(365), + [sym__expression] = STATE(1340), + [sym__expression_without_blocks] = STATE(1318), + [sym__expression_with_blocks] = STATE(1318), + [sym_inc_expression] = STATE(1319), + [sym_dec_expression] = STATE(1319), + [sym_or_block_expression] = STATE(1319), + [sym_option_propagation_expression] = STATE(1319), + [sym_result_propagation_expression] = STATE(1319), + [sym_anon_struct_value_expression] = STATE(1320), + [sym_go_expression] = STATE(1319), + [sym_spawn_expression] = STATE(1319), + [sym_parenthesized_expression] = STATE(1319), + [sym_call_expression] = STATE(1319), + [sym_type_initializer] = STATE(1320), + [sym_function_literal] = STATE(1319), + [sym_reference_expression] = STATE(1298), + [sym_type_reference_expression] = STATE(3460), + [sym_unary_expression] = STATE(1319), + [sym_receive_expression] = STATE(1319), + [sym_binary_expression] = STATE(1319), + [sym_as_type_cast_expression] = STATE(1319), + [sym__max_group] = STATE(1319), + [sym_literal] = STATE(1314), + [sym_map_init_expression] = STATE(1320), + [sym_array_creation] = STATE(1319), + [sym_fixed_array_creation] = STATE(1319), + [sym_selector_expression] = STATE(1319), + [sym_index_expression] = STATE(1319), + [sym_slice_expression] = STATE(1319), + [sym_if_expression] = STATE(1320), + [sym_compile_time_if_expression] = STATE(1320), + [sym_is_expression] = STATE(1319), + [sym_in_expression] = STATE(1319), + [sym_enum_fetch] = STATE(1319), + [sym_match_expression] = STATE(1320), + [sym_select_expression] = STATE(1320), + [sym_lock_expression] = STATE(1320), + [sym_unsafe_expression] = STATE(1320), + [sym_sql_expression] = STATE(1320), + [sym_c_string_literal] = STATE(1291), + [sym_raw_string_literal] = STATE(1291), + [sym_interpreted_string_literal] = STATE(1291), + [sym_mutability_modifiers] = STATE(639), + [sym_plain_type] = STATE(4307), + [sym__plain_type_without_special] = STATE(2360), + [sym_anon_struct_type] = STATE(2362), + [sym_multi_return_type] = STATE(2360), + [sym_result_type] = STATE(2360), + [sym_option_type] = STATE(2360), + [sym_qualified_type] = STATE(3460), + [sym_fixed_array_type] = STATE(2362), + [sym_array_type] = STATE(2362), + [sym_pointer_type] = STATE(2362), + [sym_wrong_pointer_type] = STATE(2362), + [sym_map_type] = STATE(2362), + [sym_channel_type] = STATE(2362), + [sym_shared_type] = STATE(2362), + [sym_thread_type] = STATE(2362), + [sym_atomic_type] = STATE(2362), + [sym_generic_type] = STATE(2362), + [sym_function_type] = STATE(2362), + [aux_sym_string_interpolation_repeat1] = STATE(365), + [sym_identifier] = ACTIONS(2317), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1356), - [anon_sym_LBRACE] = ACTIONS(1358), - [anon_sym_LPAREN] = ACTIONS(1360), - [anon_sym_fn] = ACTIONS(1362), - [anon_sym_PLUS] = ACTIONS(1364), - [anon_sym_DASH] = ACTIONS(1364), - [anon_sym_STAR] = ACTIONS(1366), - [anon_sym_RBRACK] = ACTIONS(2317), - [anon_sym_struct] = ACTIONS(1370), + [anon_sym_DOT] = ACTIONS(2320), + [anon_sym_LBRACE] = ACTIONS(2323), + [anon_sym_RBRACE] = ACTIONS(2326), + [anon_sym_LPAREN] = ACTIONS(2328), + [anon_sym_fn] = ACTIONS(2331), + [anon_sym_PLUS] = ACTIONS(2334), + [anon_sym_DASH] = ACTIONS(2334), + [anon_sym_STAR] = ACTIONS(2337), + [anon_sym_struct] = ACTIONS(2340), + [anon_sym_mut] = ACTIONS(2343), + [anon_sym_QMARK] = ACTIONS(2346), + [anon_sym_BANG] = ACTIONS(2349), + [anon_sym_go] = ACTIONS(2352), + [anon_sym_spawn] = ACTIONS(2355), + [anon_sym_json_DOTdecode] = ACTIONS(2358), + [anon_sym_LBRACK2] = ACTIONS(2361), + [anon_sym_TILDE] = ACTIONS(2334), + [anon_sym_CARET] = ACTIONS(2334), + [anon_sym_AMP] = ACTIONS(2364), + [anon_sym_LT_DASH] = ACTIONS(2367), + [sym_none] = ACTIONS(2370), + [sym_true] = ACTIONS(2370), + [sym_false] = ACTIONS(2370), + [sym_nil] = ACTIONS(2370), + [anon_sym_if] = ACTIONS(2373), + [anon_sym_DOLLARif] = ACTIONS(2376), + [anon_sym_match] = ACTIONS(2379), + [anon_sym_select] = ACTIONS(2382), + [anon_sym_lock] = ACTIONS(2385), + [anon_sym_rlock] = ACTIONS(2385), + [anon_sym_unsafe] = ACTIONS(2388), + [anon_sym_sql] = ACTIONS(2391), + [sym_int_literal] = ACTIONS(2370), + [sym_float_literal] = ACTIONS(2394), + [sym_rune_literal] = ACTIONS(2394), + [sym_pseudo_compile_time_identifier] = ACTIONS(2397), + [anon_sym_shared] = ACTIONS(2400), + [anon_sym_map_LBRACK] = ACTIONS(2403), + [anon_sym_chan] = ACTIONS(2406), + [anon_sym_thread] = ACTIONS(2409), + [anon_sym_atomic] = ACTIONS(2412), + [sym___double_quote] = ACTIONS(2415), + [sym___single_quote] = ACTIONS(2418), + [sym___c_double_quote] = ACTIONS(2421), + [sym___c_single_quote] = ACTIONS(2424), + [sym___r_double_quote] = ACTIONS(2427), + [sym___r_single_quote] = ACTIONS(2430), + }, + [366] = { + [sym_line_comment] = STATE(366), + [sym_block_comment] = STATE(366), + [sym__expression] = STATE(1273), + [sym__expression_without_blocks] = STATE(1318), + [sym__expression_with_blocks] = STATE(1318), + [sym_inc_expression] = STATE(1319), + [sym_dec_expression] = STATE(1319), + [sym_or_block_expression] = STATE(1319), + [sym_option_propagation_expression] = STATE(1319), + [sym_result_propagation_expression] = STATE(1319), + [sym_anon_struct_value_expression] = STATE(1320), + [sym_go_expression] = STATE(1319), + [sym_spawn_expression] = STATE(1319), + [sym_parenthesized_expression] = STATE(1319), + [sym_call_expression] = STATE(1319), + [sym_type_initializer] = STATE(1320), + [sym_function_literal] = STATE(1319), + [sym_reference_expression] = STATE(1298), + [sym_type_reference_expression] = STATE(3460), + [sym_unary_expression] = STATE(1319), + [sym_receive_expression] = STATE(1319), + [sym_binary_expression] = STATE(1319), + [sym_as_type_cast_expression] = STATE(1319), + [sym__max_group] = STATE(1319), + [sym_literal] = STATE(1314), + [sym_map_init_expression] = STATE(1320), + [sym_array_creation] = STATE(1319), + [sym_fixed_array_creation] = STATE(1319), + [sym_selector_expression] = STATE(1319), + [sym_index_expression] = STATE(1319), + [sym_slice_expression] = STATE(1319), + [sym_if_expression] = STATE(1320), + [sym_compile_time_if_expression] = STATE(1320), + [sym_is_expression] = STATE(1319), + [sym_in_expression] = STATE(1319), + [sym_enum_fetch] = STATE(1319), + [sym_match_expression] = STATE(1320), + [sym_select_expression] = STATE(1320), + [sym_lock_expression] = STATE(1320), + [sym_unsafe_expression] = STATE(1320), + [sym_sql_expression] = STATE(1320), + [sym_c_string_literal] = STATE(1291), + [sym_raw_string_literal] = STATE(1291), + [sym_interpreted_string_literal] = STATE(1291), + [sym_mutability_modifiers] = STATE(639), + [sym_plain_type] = STATE(4307), + [sym__plain_type_without_special] = STATE(2360), + [sym_anon_struct_type] = STATE(2362), + [sym_multi_return_type] = STATE(2360), + [sym_result_type] = STATE(2360), + [sym_option_type] = STATE(2360), + [sym_qualified_type] = STATE(3460), + [sym_fixed_array_type] = STATE(2362), + [sym_array_type] = STATE(2362), + [sym_pointer_type] = STATE(2362), + [sym_wrong_pointer_type] = STATE(2362), + [sym_map_type] = STATE(2362), + [sym_channel_type] = STATE(2362), + [sym_shared_type] = STATE(2362), + [sym_thread_type] = STATE(2362), + [sym_atomic_type] = STATE(2362), + [sym_generic_type] = STATE(2362), + [sym_function_type] = STATE(2362), + [aux_sym__array_repeat1] = STATE(405), + [sym_identifier] = ACTIONS(1360), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(1362), + [anon_sym_LBRACE] = ACTIONS(1364), + [anon_sym_LPAREN] = ACTIONS(1366), + [anon_sym_fn] = ACTIONS(1368), + [anon_sym_PLUS] = ACTIONS(1370), + [anon_sym_DASH] = ACTIONS(1370), + [anon_sym_STAR] = ACTIONS(1372), + [anon_sym_RBRACK] = ACTIONS(2433), + [anon_sym_struct] = ACTIONS(1376), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(1372), - [anon_sym_go] = ACTIONS(1374), - [anon_sym_spawn] = ACTIONS(1376), - [anon_sym_json_DOTdecode] = ACTIONS(1378), - [anon_sym_LBRACK2] = ACTIONS(1380), - [anon_sym_TILDE] = ACTIONS(1364), - [anon_sym_CARET] = ACTIONS(1364), - [anon_sym_AMP] = ACTIONS(1382), - [anon_sym_LT_DASH] = ACTIONS(1384), - [sym_none] = ACTIONS(1386), - [sym_true] = ACTIONS(1386), - [sym_false] = ACTIONS(1386), - [sym_nil] = ACTIONS(1386), - [anon_sym_if] = ACTIONS(1877), - [anon_sym_DOLLARif] = ACTIONS(1390), - [anon_sym_match] = ACTIONS(1392), - [anon_sym_select] = ACTIONS(1394), - [anon_sym_lock] = ACTIONS(1396), - [anon_sym_rlock] = ACTIONS(1396), - [anon_sym_unsafe] = ACTIONS(1883), - [anon_sym_sql] = ACTIONS(1400), - [sym_int_literal] = ACTIONS(1386), - [sym_float_literal] = ACTIONS(1404), - [sym_rune_literal] = ACTIONS(1404), - [sym_pseudo_compile_time_identifier] = ACTIONS(1406), + [anon_sym_BANG] = ACTIONS(1378), + [anon_sym_go] = ACTIONS(1380), + [anon_sym_spawn] = ACTIONS(1382), + [anon_sym_json_DOTdecode] = ACTIONS(1384), + [anon_sym_LBRACK2] = ACTIONS(1386), + [anon_sym_TILDE] = ACTIONS(1370), + [anon_sym_CARET] = ACTIONS(1370), + [anon_sym_AMP] = ACTIONS(1388), + [anon_sym_LT_DASH] = ACTIONS(1390), + [sym_none] = ACTIONS(1392), + [sym_true] = ACTIONS(1392), + [sym_false] = ACTIONS(1392), + [sym_nil] = ACTIONS(1392), + [anon_sym_if] = ACTIONS(1865), + [anon_sym_DOLLARif] = ACTIONS(1396), + [anon_sym_match] = ACTIONS(1398), + [anon_sym_select] = ACTIONS(1400), + [anon_sym_lock] = ACTIONS(1402), + [anon_sym_rlock] = ACTIONS(1402), + [anon_sym_unsafe] = ACTIONS(1871), + [anon_sym_sql] = ACTIONS(1406), + [sym_int_literal] = ACTIONS(1392), + [sym_float_literal] = ACTIONS(1410), + [sym_rune_literal] = ACTIONS(1410), + [sym_pseudo_compile_time_identifier] = ACTIONS(1412), [anon_sym_shared] = ACTIONS(83), [anon_sym_map_LBRACK] = ACTIONS(85), [anon_sym_chan] = ACTIONS(87), [anon_sym_thread] = ACTIONS(89), [anon_sym_atomic] = ACTIONS(91), - [sym___double_quote] = ACTIONS(1408), - [sym___single_quote] = ACTIONS(1410), - [sym___c_double_quote] = ACTIONS(1412), - [sym___c_single_quote] = ACTIONS(1414), - [sym___r_double_quote] = ACTIONS(1416), - [sym___r_single_quote] = ACTIONS(1418), + [sym___double_quote] = ACTIONS(1414), + [sym___single_quote] = ACTIONS(1416), + [sym___c_double_quote] = ACTIONS(1418), + [sym___c_single_quote] = ACTIONS(1420), + [sym___r_double_quote] = ACTIONS(1422), + [sym___r_single_quote] = ACTIONS(1424), }, - [378] = { - [sym_line_comment] = STATE(378), - [sym_block_comment] = STATE(378), - [sym__expression] = STATE(2617), - [sym__expression_without_blocks] = STATE(2300), - [sym__expression_with_blocks] = STATE(2300), - [sym_inc_expression] = STATE(2307), - [sym_dec_expression] = STATE(2307), - [sym_or_block_expression] = STATE(2307), - [sym_option_propagation_expression] = STATE(2307), - [sym_result_propagation_expression] = STATE(2307), - [sym_anon_struct_value_expression] = STATE(2380), - [sym_go_expression] = STATE(2307), - [sym_spawn_expression] = STATE(2307), - [sym_parenthesized_expression] = STATE(2307), - [sym_call_expression] = STATE(2307), - [sym_type_initializer] = STATE(2380), - [sym_function_literal] = STATE(2307), - [sym_reference_expression] = STATE(2311), - [sym_type_reference_expression] = STATE(3541), - [sym_unary_expression] = STATE(2307), - [sym_receive_expression] = STATE(2307), - [sym_binary_expression] = STATE(2307), - [sym_as_type_cast_expression] = STATE(2307), - [sym__max_group] = STATE(2307), - [sym_literal] = STATE(2292), - [sym_map_init_expression] = STATE(2380), - [sym_array_creation] = STATE(2307), - [sym_fixed_array_creation] = STATE(2307), - [sym_selector_expression] = STATE(2307), - [sym_index_expression] = STATE(2307), - [sym_slice_expression] = STATE(2307), - [sym_if_expression] = STATE(2380), - [sym_compile_time_if_expression] = STATE(2380), - [sym_is_expression] = STATE(2307), - [sym_in_expression] = STATE(2307), - [sym_enum_fetch] = STATE(2307), - [sym_match_expression] = STATE(2380), - [sym_select_expression] = STATE(2380), - [sym_lock_expression] = STATE(2380), - [sym_unsafe_expression] = STATE(2380), - [sym_sql_expression] = STATE(2380), - [sym_c_string_literal] = STATE(2308), - [sym_raw_string_literal] = STATE(2308), - [sym_interpreted_string_literal] = STATE(2308), - [sym_mutability_modifiers] = STATE(939), - [sym_plain_type] = STATE(4297), - [sym__plain_type_without_special] = STATE(2302), - [sym_anon_struct_type] = STATE(2303), - [sym_multi_return_type] = STATE(2302), - [sym_result_type] = STATE(2302), - [sym_option_type] = STATE(2302), - [sym_qualified_type] = STATE(3541), - [sym_fixed_array_type] = STATE(2303), - [sym_array_type] = STATE(2303), - [sym_pointer_type] = STATE(2303), - [sym_wrong_pointer_type] = STATE(2303), - [sym_map_type] = STATE(2303), - [sym_channel_type] = STATE(2303), - [sym_shared_type] = STATE(2303), - [sym_thread_type] = STATE(2303), - [sym_atomic_type] = STATE(2303), - [sym_generic_type] = STATE(2303), - [sym_function_type] = STATE(2303), - [sym_range] = STATE(4321), - [sym_identifier] = ACTIONS(1426), + [367] = { + [sym_line_comment] = STATE(367), + [sym_block_comment] = STATE(367), + [sym__expression] = STATE(1273), + [sym__expression_without_blocks] = STATE(1318), + [sym__expression_with_blocks] = STATE(1318), + [sym_inc_expression] = STATE(1319), + [sym_dec_expression] = STATE(1319), + [sym_or_block_expression] = STATE(1319), + [sym_option_propagation_expression] = STATE(1319), + [sym_result_propagation_expression] = STATE(1319), + [sym_anon_struct_value_expression] = STATE(1320), + [sym_go_expression] = STATE(1319), + [sym_spawn_expression] = STATE(1319), + [sym_parenthesized_expression] = STATE(1319), + [sym_call_expression] = STATE(1319), + [sym_type_initializer] = STATE(1320), + [sym_function_literal] = STATE(1319), + [sym_reference_expression] = STATE(1397), + [sym_type_reference_expression] = STATE(3460), + [sym_unary_expression] = STATE(1319), + [sym_receive_expression] = STATE(1319), + [sym_binary_expression] = STATE(1319), + [sym_as_type_cast_expression] = STATE(1319), + [sym__max_group] = STATE(1319), + [sym_literal] = STATE(1314), + [sym_map_init_expression] = STATE(1320), + [sym_array_creation] = STATE(1319), + [sym_fixed_array_creation] = STATE(1319), + [sym_selector_expression] = STATE(1399), + [sym_index_expression] = STATE(1319), + [sym_slice_expression] = STATE(1319), + [sym_if_expression] = STATE(1320), + [sym_compile_time_if_expression] = STATE(1320), + [sym_is_expression] = STATE(1319), + [sym_in_expression] = STATE(1319), + [sym_enum_fetch] = STATE(1319), + [sym_match_expression] = STATE(1320), + [sym_select_expression] = STATE(1320), + [sym_lock_expression] = STATE(1320), + [sym_unsafe_expression] = STATE(1320), + [sym_sql_expression] = STATE(1320), + [sym_c_string_literal] = STATE(1291), + [sym_raw_string_literal] = STATE(1291), + [sym_interpreted_string_literal] = STATE(1291), + [sym_mutability_modifiers] = STATE(639), + [sym_plain_type] = STATE(4307), + [sym__plain_type_without_special] = STATE(2360), + [sym_anon_struct_type] = STATE(2362), + [sym_multi_return_type] = STATE(2360), + [sym_result_type] = STATE(2360), + [sym_option_type] = STATE(2360), + [sym_qualified_type] = STATE(3460), + [sym_fixed_array_type] = STATE(2362), + [sym_array_type] = STATE(2362), + [sym_pointer_type] = STATE(2362), + [sym_wrong_pointer_type] = STATE(2362), + [sym_map_type] = STATE(2362), + [sym_channel_type] = STATE(2362), + [sym_shared_type] = STATE(2362), + [sym_thread_type] = STATE(2362), + [sym_atomic_type] = STATE(2362), + [sym_generic_type] = STATE(2362), + [sym_function_type] = STATE(2362), + [aux_sym__array_repeat1] = STATE(311), + [sym_identifier] = ACTIONS(1360), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1428), - [anon_sym_LBRACE] = ACTIONS(1430), - [anon_sym_LPAREN] = ACTIONS(1432), - [anon_sym_fn] = ACTIONS(1434), - [anon_sym_PLUS] = ACTIONS(1436), - [anon_sym_DASH] = ACTIONS(1436), - [anon_sym_STAR] = ACTIONS(1438), - [anon_sym_struct] = ACTIONS(1440), + [anon_sym_DOT] = ACTIONS(1362), + [anon_sym_LBRACE] = ACTIONS(1364), + [anon_sym_LPAREN] = ACTIONS(1366), + [anon_sym_fn] = ACTIONS(1368), + [anon_sym_PLUS] = ACTIONS(1370), + [anon_sym_DASH] = ACTIONS(1370), + [anon_sym_STAR] = ACTIONS(1372), + [anon_sym_RBRACK] = ACTIONS(2435), + [anon_sym_struct] = ACTIONS(1376), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(1442), - [anon_sym_go] = ACTIONS(1444), - [anon_sym_spawn] = ACTIONS(1446), - [anon_sym_json_DOTdecode] = ACTIONS(1448), - [anon_sym_LBRACK2] = ACTIONS(1450), - [anon_sym_TILDE] = ACTIONS(1436), - [anon_sym_CARET] = ACTIONS(1436), - [anon_sym_AMP] = ACTIONS(1452), - [anon_sym_LT_DASH] = ACTIONS(1454), - [sym_none] = ACTIONS(1456), - [sym_true] = ACTIONS(1456), - [sym_false] = ACTIONS(1456), - [sym_nil] = ACTIONS(1456), - [anon_sym_if] = ACTIONS(1827), - [anon_sym_DOLLARif] = ACTIONS(1460), - [anon_sym_match] = ACTIONS(1462), - [anon_sym_select] = ACTIONS(1464), - [anon_sym_lock] = ACTIONS(1466), - [anon_sym_rlock] = ACTIONS(1466), - [anon_sym_unsafe] = ACTIONS(1833), - [anon_sym_sql] = ACTIONS(1470), - [sym_int_literal] = ACTIONS(1456), - [sym_float_literal] = ACTIONS(1472), - [sym_rune_literal] = ACTIONS(1472), - [sym_pseudo_compile_time_identifier] = ACTIONS(1474), + [anon_sym_BANG] = ACTIONS(1378), + [anon_sym_go] = ACTIONS(1380), + [anon_sym_spawn] = ACTIONS(1382), + [anon_sym_json_DOTdecode] = ACTIONS(1384), + [anon_sym_LBRACK2] = ACTIONS(1386), + [anon_sym_TILDE] = ACTIONS(1370), + [anon_sym_CARET] = ACTIONS(1370), + [anon_sym_AMP] = ACTIONS(1388), + [anon_sym_LT_DASH] = ACTIONS(1390), + [sym_none] = ACTIONS(1392), + [sym_true] = ACTIONS(1392), + [sym_false] = ACTIONS(1392), + [sym_nil] = ACTIONS(1392), + [anon_sym_if] = ACTIONS(1865), + [anon_sym_DOLLARif] = ACTIONS(1396), + [anon_sym_match] = ACTIONS(1398), + [anon_sym_select] = ACTIONS(1400), + [anon_sym_lock] = ACTIONS(1402), + [anon_sym_rlock] = ACTIONS(1402), + [anon_sym_unsafe] = ACTIONS(1871), + [anon_sym_sql] = ACTIONS(1406), + [sym_int_literal] = ACTIONS(1408), + [sym_float_literal] = ACTIONS(1410), + [sym_rune_literal] = ACTIONS(1410), + [sym_pseudo_compile_time_identifier] = ACTIONS(1412), [anon_sym_shared] = ACTIONS(83), [anon_sym_map_LBRACK] = ACTIONS(85), [anon_sym_chan] = ACTIONS(87), [anon_sym_thread] = ACTIONS(89), [anon_sym_atomic] = ACTIONS(91), - [anon_sym_DOT_DOT] = ACTIONS(1476), - [sym___double_quote] = ACTIONS(1478), - [sym___single_quote] = ACTIONS(1480), - [sym___c_double_quote] = ACTIONS(1482), - [sym___c_single_quote] = ACTIONS(1484), - [sym___r_double_quote] = ACTIONS(1486), - [sym___r_single_quote] = ACTIONS(1488), + [sym___double_quote] = ACTIONS(1414), + [sym___single_quote] = ACTIONS(1416), + [sym___c_double_quote] = ACTIONS(1418), + [sym___c_single_quote] = ACTIONS(1420), + [sym___r_double_quote] = ACTIONS(1422), + [sym___r_single_quote] = ACTIONS(1424), }, - [379] = { - [sym_line_comment] = STATE(379), - [sym_block_comment] = STATE(379), - [sym__expression] = STATE(952), - [sym__expression_without_blocks] = STATE(1017), - [sym__expression_with_blocks] = STATE(1017), - [sym_inc_expression] = STATE(1018), - [sym_dec_expression] = STATE(1018), - [sym_or_block_expression] = STATE(1018), - [sym_option_propagation_expression] = STATE(1018), - [sym_result_propagation_expression] = STATE(1018), - [sym_anon_struct_value_expression] = STATE(993), - [sym_go_expression] = STATE(1018), - [sym_spawn_expression] = STATE(1018), - [sym_parenthesized_expression] = STATE(1018), - [sym_call_expression] = STATE(1018), - [sym_type_initializer] = STATE(993), - [sym_function_literal] = STATE(1018), - [sym_reference_expression] = STATE(1046), - [sym_type_reference_expression] = STATE(3541), - [sym_unary_expression] = STATE(1018), - [sym_receive_expression] = STATE(1018), - [sym_binary_expression] = STATE(1018), - [sym_as_type_cast_expression] = STATE(1018), - [sym__max_group] = STATE(1018), - [sym_literal] = STATE(1014), - [sym_map_init_expression] = STATE(993), - [sym_array_creation] = STATE(1018), - [sym_fixed_array_creation] = STATE(1018), - [sym_selector_expression] = STATE(1018), - [sym_index_expression] = STATE(1018), - [sym_slice_expression] = STATE(1018), - [sym_if_expression] = STATE(993), - [sym_compile_time_if_expression] = STATE(993), - [sym_is_expression] = STATE(1018), - [sym_in_expression] = STATE(1018), - [sym_enum_fetch] = STATE(1018), - [sym_match_expression] = STATE(993), - [sym_select_expression] = STATE(993), - [sym_lock_expression] = STATE(993), - [sym_unsafe_expression] = STATE(993), - [sym_sql_expression] = STATE(993), - [sym_c_string_literal] = STATE(1006), - [sym_raw_string_literal] = STATE(1006), - [sym_interpreted_string_literal] = STATE(1006), - [sym_mutability_modifiers] = STATE(872), - [sym_mutable_expression] = STATE(1404), - [sym_expression_list] = STATE(1511), - [sym_plain_type] = STATE(4296), - [sym__plain_type_without_special] = STATE(2302), - [sym_anon_struct_type] = STATE(2303), - [sym_multi_return_type] = STATE(2302), - [sym_result_type] = STATE(2302), - [sym_option_type] = STATE(2302), - [sym_qualified_type] = STATE(3541), - [sym_fixed_array_type] = STATE(2303), - [sym_array_type] = STATE(2303), - [sym_pointer_type] = STATE(2303), - [sym_wrong_pointer_type] = STATE(2303), - [sym_map_type] = STATE(2303), - [sym_channel_type] = STATE(2303), - [sym_shared_type] = STATE(2303), - [sym_thread_type] = STATE(2303), - [sym_atomic_type] = STATE(2303), - [sym_generic_type] = STATE(2303), - [sym_function_type] = STATE(2303), - [sym_identifier] = ACTIONS(493), + [368] = { + [sym_line_comment] = STATE(368), + [sym_block_comment] = STATE(368), + [sym__expression] = STATE(1273), + [sym__expression_without_blocks] = STATE(1318), + [sym__expression_with_blocks] = STATE(1318), + [sym_inc_expression] = STATE(1319), + [sym_dec_expression] = STATE(1319), + [sym_or_block_expression] = STATE(1319), + [sym_option_propagation_expression] = STATE(1319), + [sym_result_propagation_expression] = STATE(1319), + [sym_anon_struct_value_expression] = STATE(1320), + [sym_go_expression] = STATE(1319), + [sym_spawn_expression] = STATE(1319), + [sym_parenthesized_expression] = STATE(1319), + [sym_call_expression] = STATE(1319), + [sym_type_initializer] = STATE(1320), + [sym_function_literal] = STATE(1319), + [sym_reference_expression] = STATE(1397), + [sym_type_reference_expression] = STATE(3460), + [sym_unary_expression] = STATE(1319), + [sym_receive_expression] = STATE(1319), + [sym_binary_expression] = STATE(1319), + [sym_as_type_cast_expression] = STATE(1319), + [sym__max_group] = STATE(1319), + [sym_literal] = STATE(1314), + [sym_map_init_expression] = STATE(1320), + [sym_array_creation] = STATE(1319), + [sym_fixed_array_creation] = STATE(1319), + [sym_selector_expression] = STATE(1399), + [sym_index_expression] = STATE(1319), + [sym_slice_expression] = STATE(1319), + [sym_if_expression] = STATE(1320), + [sym_compile_time_if_expression] = STATE(1320), + [sym_is_expression] = STATE(1319), + [sym_in_expression] = STATE(1319), + [sym_enum_fetch] = STATE(1319), + [sym_match_expression] = STATE(1320), + [sym_select_expression] = STATE(1320), + [sym_lock_expression] = STATE(1320), + [sym_unsafe_expression] = STATE(1320), + [sym_sql_expression] = STATE(1320), + [sym_c_string_literal] = STATE(1291), + [sym_raw_string_literal] = STATE(1291), + [sym_interpreted_string_literal] = STATE(1291), + [sym_mutability_modifiers] = STATE(639), + [sym_plain_type] = STATE(4307), + [sym__plain_type_without_special] = STATE(2360), + [sym_anon_struct_type] = STATE(2362), + [sym_multi_return_type] = STATE(2360), + [sym_result_type] = STATE(2360), + [sym_option_type] = STATE(2360), + [sym_qualified_type] = STATE(3460), + [sym_fixed_array_type] = STATE(2362), + [sym_array_type] = STATE(2362), + [sym_pointer_type] = STATE(2362), + [sym_wrong_pointer_type] = STATE(2362), + [sym_map_type] = STATE(2362), + [sym_channel_type] = STATE(2362), + [sym_shared_type] = STATE(2362), + [sym_thread_type] = STATE(2362), + [sym_atomic_type] = STATE(2362), + [sym_generic_type] = STATE(2362), + [sym_function_type] = STATE(2362), + [aux_sym__array_repeat1] = STATE(373), + [sym_identifier] = ACTIONS(1360), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(501), - [anon_sym_LBRACE] = ACTIONS(2319), - [anon_sym_LPAREN] = ACTIONS(2321), - [anon_sym_fn] = ACTIONS(507), - [anon_sym_PLUS] = ACTIONS(2323), - [anon_sym_DASH] = ACTIONS(2323), - [anon_sym_STAR] = ACTIONS(2325), - [anon_sym_struct] = ACTIONS(513), + [anon_sym_DOT] = ACTIONS(1362), + [anon_sym_LBRACE] = ACTIONS(1364), + [anon_sym_LPAREN] = ACTIONS(1366), + [anon_sym_fn] = ACTIONS(1368), + [anon_sym_PLUS] = ACTIONS(1370), + [anon_sym_DASH] = ACTIONS(1370), + [anon_sym_STAR] = ACTIONS(1372), + [anon_sym_RBRACK] = ACTIONS(2437), + [anon_sym_struct] = ACTIONS(1376), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(2327), - [anon_sym_go] = ACTIONS(519), - [anon_sym_spawn] = ACTIONS(521), - [anon_sym_json_DOTdecode] = ACTIONS(2329), - [anon_sym_LBRACK2] = ACTIONS(2331), - [anon_sym_TILDE] = ACTIONS(2323), - [anon_sym_CARET] = ACTIONS(2323), - [anon_sym_AMP] = ACTIONS(2333), - [anon_sym_LT_DASH] = ACTIONS(2335), - [sym_none] = ACTIONS(531), - [sym_true] = ACTIONS(531), - [sym_false] = ACTIONS(531), - [sym_nil] = ACTIONS(531), - [anon_sym_if] = ACTIONS(533), - [anon_sym_DOLLARif] = ACTIONS(535), - [anon_sym_match] = ACTIONS(537), - [anon_sym_select] = ACTIONS(539), - [anon_sym_lock] = ACTIONS(541), - [anon_sym_rlock] = ACTIONS(541), - [anon_sym_unsafe] = ACTIONS(543), - [anon_sym_sql] = ACTIONS(545), - [sym_int_literal] = ACTIONS(531), - [sym_float_literal] = ACTIONS(2337), - [sym_rune_literal] = ACTIONS(2337), - [sym_pseudo_compile_time_identifier] = ACTIONS(547), + [anon_sym_BANG] = ACTIONS(1378), + [anon_sym_go] = ACTIONS(1380), + [anon_sym_spawn] = ACTIONS(1382), + [anon_sym_json_DOTdecode] = ACTIONS(1384), + [anon_sym_LBRACK2] = ACTIONS(1386), + [anon_sym_TILDE] = ACTIONS(1370), + [anon_sym_CARET] = ACTIONS(1370), + [anon_sym_AMP] = ACTIONS(1388), + [anon_sym_LT_DASH] = ACTIONS(1390), + [sym_none] = ACTIONS(1392), + [sym_true] = ACTIONS(1392), + [sym_false] = ACTIONS(1392), + [sym_nil] = ACTIONS(1392), + [anon_sym_if] = ACTIONS(1865), + [anon_sym_DOLLARif] = ACTIONS(1396), + [anon_sym_match] = ACTIONS(1398), + [anon_sym_select] = ACTIONS(1400), + [anon_sym_lock] = ACTIONS(1402), + [anon_sym_rlock] = ACTIONS(1402), + [anon_sym_unsafe] = ACTIONS(1871), + [anon_sym_sql] = ACTIONS(1406), + [sym_int_literal] = ACTIONS(1408), + [sym_float_literal] = ACTIONS(1410), + [sym_rune_literal] = ACTIONS(1410), + [sym_pseudo_compile_time_identifier] = ACTIONS(1412), [anon_sym_shared] = ACTIONS(83), [anon_sym_map_LBRACK] = ACTIONS(85), [anon_sym_chan] = ACTIONS(87), [anon_sym_thread] = ACTIONS(89), [anon_sym_atomic] = ACTIONS(91), - [sym___double_quote] = ACTIONS(2339), - [sym___single_quote] = ACTIONS(2341), - [sym___c_double_quote] = ACTIONS(2343), - [sym___c_single_quote] = ACTIONS(2345), - [sym___r_double_quote] = ACTIONS(2347), - [sym___r_single_quote] = ACTIONS(2349), + [sym___double_quote] = ACTIONS(1414), + [sym___single_quote] = ACTIONS(1416), + [sym___c_double_quote] = ACTIONS(1418), + [sym___c_single_quote] = ACTIONS(1420), + [sym___r_double_quote] = ACTIONS(1422), + [sym___r_single_quote] = ACTIONS(1424), }, - [380] = { - [sym_line_comment] = STATE(380), - [sym_block_comment] = STATE(380), - [sym__expression] = STATE(952), - [sym__expression_without_blocks] = STATE(1017), - [sym__expression_with_blocks] = STATE(1017), - [sym_inc_expression] = STATE(1018), - [sym_dec_expression] = STATE(1018), - [sym_or_block_expression] = STATE(1018), - [sym_option_propagation_expression] = STATE(1018), - [sym_result_propagation_expression] = STATE(1018), - [sym_anon_struct_value_expression] = STATE(993), - [sym_go_expression] = STATE(1018), - [sym_spawn_expression] = STATE(1018), - [sym_parenthesized_expression] = STATE(1018), - [sym_call_expression] = STATE(1018), - [sym_type_initializer] = STATE(993), - [sym_function_literal] = STATE(1018), - [sym_reference_expression] = STATE(1046), - [sym_type_reference_expression] = STATE(3541), - [sym_unary_expression] = STATE(1018), - [sym_receive_expression] = STATE(1018), - [sym_binary_expression] = STATE(1018), - [sym_as_type_cast_expression] = STATE(1018), - [sym__max_group] = STATE(1018), - [sym_literal] = STATE(1014), - [sym_map_init_expression] = STATE(993), - [sym_array_creation] = STATE(1018), - [sym_fixed_array_creation] = STATE(1018), - [sym_selector_expression] = STATE(1018), - [sym_index_expression] = STATE(1018), - [sym_slice_expression] = STATE(1018), - [sym_if_expression] = STATE(993), - [sym_compile_time_if_expression] = STATE(993), - [sym_is_expression] = STATE(1018), - [sym_in_expression] = STATE(1018), - [sym_enum_fetch] = STATE(1018), - [sym_match_expression] = STATE(993), - [sym_select_expression] = STATE(993), - [sym_lock_expression] = STATE(993), - [sym_unsafe_expression] = STATE(993), - [sym_sql_expression] = STATE(993), - [sym_c_string_literal] = STATE(1006), - [sym_raw_string_literal] = STATE(1006), - [sym_interpreted_string_literal] = STATE(1006), - [sym_mutability_modifiers] = STATE(872), - [sym_mutable_expression] = STATE(1404), - [sym_expression_list] = STATE(1509), - [sym_plain_type] = STATE(4296), - [sym__plain_type_without_special] = STATE(2302), - [sym_anon_struct_type] = STATE(2303), - [sym_multi_return_type] = STATE(2302), - [sym_result_type] = STATE(2302), - [sym_option_type] = STATE(2302), - [sym_qualified_type] = STATE(3541), - [sym_fixed_array_type] = STATE(2303), - [sym_array_type] = STATE(2303), - [sym_pointer_type] = STATE(2303), - [sym_wrong_pointer_type] = STATE(2303), - [sym_map_type] = STATE(2303), - [sym_channel_type] = STATE(2303), - [sym_shared_type] = STATE(2303), - [sym_thread_type] = STATE(2303), - [sym_atomic_type] = STATE(2303), - [sym_generic_type] = STATE(2303), - [sym_function_type] = STATE(2303), - [sym_identifier] = ACTIONS(493), + [369] = { + [sym_line_comment] = STATE(369), + [sym_block_comment] = STATE(369), + [sym__expression] = STATE(1273), + [sym__expression_without_blocks] = STATE(1318), + [sym__expression_with_blocks] = STATE(1318), + [sym_inc_expression] = STATE(1319), + [sym_dec_expression] = STATE(1319), + [sym_or_block_expression] = STATE(1319), + [sym_option_propagation_expression] = STATE(1319), + [sym_result_propagation_expression] = STATE(1319), + [sym_anon_struct_value_expression] = STATE(1320), + [sym_go_expression] = STATE(1319), + [sym_spawn_expression] = STATE(1319), + [sym_parenthesized_expression] = STATE(1319), + [sym_call_expression] = STATE(1319), + [sym_type_initializer] = STATE(1320), + [sym_function_literal] = STATE(1319), + [sym_reference_expression] = STATE(1397), + [sym_type_reference_expression] = STATE(3460), + [sym_unary_expression] = STATE(1319), + [sym_receive_expression] = STATE(1319), + [sym_binary_expression] = STATE(1319), + [sym_as_type_cast_expression] = STATE(1319), + [sym__max_group] = STATE(1319), + [sym_literal] = STATE(1314), + [sym_map_init_expression] = STATE(1320), + [sym_array_creation] = STATE(1319), + [sym_fixed_array_creation] = STATE(1319), + [sym_selector_expression] = STATE(1399), + [sym_index_expression] = STATE(1319), + [sym_slice_expression] = STATE(1319), + [sym_if_expression] = STATE(1320), + [sym_compile_time_if_expression] = STATE(1320), + [sym_is_expression] = STATE(1319), + [sym_in_expression] = STATE(1319), + [sym_enum_fetch] = STATE(1319), + [sym_match_expression] = STATE(1320), + [sym_select_expression] = STATE(1320), + [sym_lock_expression] = STATE(1320), + [sym_unsafe_expression] = STATE(1320), + [sym_sql_expression] = STATE(1320), + [sym_c_string_literal] = STATE(1291), + [sym_raw_string_literal] = STATE(1291), + [sym_interpreted_string_literal] = STATE(1291), + [sym_mutability_modifiers] = STATE(639), + [sym_plain_type] = STATE(4307), + [sym__plain_type_without_special] = STATE(2360), + [sym_anon_struct_type] = STATE(2362), + [sym_multi_return_type] = STATE(2360), + [sym_result_type] = STATE(2360), + [sym_option_type] = STATE(2360), + [sym_qualified_type] = STATE(3460), + [sym_fixed_array_type] = STATE(2362), + [sym_array_type] = STATE(2362), + [sym_pointer_type] = STATE(2362), + [sym_wrong_pointer_type] = STATE(2362), + [sym_map_type] = STATE(2362), + [sym_channel_type] = STATE(2362), + [sym_shared_type] = STATE(2362), + [sym_thread_type] = STATE(2362), + [sym_atomic_type] = STATE(2362), + [sym_generic_type] = STATE(2362), + [sym_function_type] = STATE(2362), + [aux_sym__array_repeat1] = STATE(474), + [sym_identifier] = ACTIONS(1360), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(501), - [anon_sym_LBRACE] = ACTIONS(2319), - [anon_sym_LPAREN] = ACTIONS(2321), - [anon_sym_fn] = ACTIONS(507), - [anon_sym_PLUS] = ACTIONS(2323), - [anon_sym_DASH] = ACTIONS(2323), - [anon_sym_STAR] = ACTIONS(2325), - [anon_sym_struct] = ACTIONS(513), + [anon_sym_DOT] = ACTIONS(1362), + [anon_sym_LBRACE] = ACTIONS(1364), + [anon_sym_LPAREN] = ACTIONS(1366), + [anon_sym_fn] = ACTIONS(1368), + [anon_sym_PLUS] = ACTIONS(1370), + [anon_sym_DASH] = ACTIONS(1370), + [anon_sym_STAR] = ACTIONS(1372), + [anon_sym_RBRACK] = ACTIONS(2439), + [anon_sym_struct] = ACTIONS(1376), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(2327), - [anon_sym_go] = ACTIONS(519), - [anon_sym_spawn] = ACTIONS(521), - [anon_sym_json_DOTdecode] = ACTIONS(2329), - [anon_sym_LBRACK2] = ACTIONS(2331), - [anon_sym_TILDE] = ACTIONS(2323), - [anon_sym_CARET] = ACTIONS(2323), - [anon_sym_AMP] = ACTIONS(2333), - [anon_sym_LT_DASH] = ACTIONS(2335), - [sym_none] = ACTIONS(531), - [sym_true] = ACTIONS(531), - [sym_false] = ACTIONS(531), - [sym_nil] = ACTIONS(531), - [anon_sym_if] = ACTIONS(533), - [anon_sym_DOLLARif] = ACTIONS(535), - [anon_sym_match] = ACTIONS(537), - [anon_sym_select] = ACTIONS(539), - [anon_sym_lock] = ACTIONS(541), - [anon_sym_rlock] = ACTIONS(541), - [anon_sym_unsafe] = ACTIONS(543), - [anon_sym_sql] = ACTIONS(545), - [sym_int_literal] = ACTIONS(531), - [sym_float_literal] = ACTIONS(2337), - [sym_rune_literal] = ACTIONS(2337), - [sym_pseudo_compile_time_identifier] = ACTIONS(547), + [anon_sym_BANG] = ACTIONS(1378), + [anon_sym_go] = ACTIONS(1380), + [anon_sym_spawn] = ACTIONS(1382), + [anon_sym_json_DOTdecode] = ACTIONS(1384), + [anon_sym_LBRACK2] = ACTIONS(1386), + [anon_sym_TILDE] = ACTIONS(1370), + [anon_sym_CARET] = ACTIONS(1370), + [anon_sym_AMP] = ACTIONS(1388), + [anon_sym_LT_DASH] = ACTIONS(1390), + [sym_none] = ACTIONS(1392), + [sym_true] = ACTIONS(1392), + [sym_false] = ACTIONS(1392), + [sym_nil] = ACTIONS(1392), + [anon_sym_if] = ACTIONS(1865), + [anon_sym_DOLLARif] = ACTIONS(1396), + [anon_sym_match] = ACTIONS(1398), + [anon_sym_select] = ACTIONS(1400), + [anon_sym_lock] = ACTIONS(1402), + [anon_sym_rlock] = ACTIONS(1402), + [anon_sym_unsafe] = ACTIONS(1871), + [anon_sym_sql] = ACTIONS(1406), + [sym_int_literal] = ACTIONS(1408), + [sym_float_literal] = ACTIONS(1410), + [sym_rune_literal] = ACTIONS(1410), + [sym_pseudo_compile_time_identifier] = ACTIONS(1412), [anon_sym_shared] = ACTIONS(83), [anon_sym_map_LBRACK] = ACTIONS(85), [anon_sym_chan] = ACTIONS(87), [anon_sym_thread] = ACTIONS(89), [anon_sym_atomic] = ACTIONS(91), - [sym___double_quote] = ACTIONS(2339), - [sym___single_quote] = ACTIONS(2341), - [sym___c_double_quote] = ACTIONS(2343), - [sym___c_single_quote] = ACTIONS(2345), - [sym___r_double_quote] = ACTIONS(2347), - [sym___r_single_quote] = ACTIONS(2349), + [sym___double_quote] = ACTIONS(1414), + [sym___single_quote] = ACTIONS(1416), + [sym___c_double_quote] = ACTIONS(1418), + [sym___c_single_quote] = ACTIONS(1420), + [sym___r_double_quote] = ACTIONS(1422), + [sym___r_single_quote] = ACTIONS(1424), }, - [381] = { - [sym_line_comment] = STATE(381), - [sym_block_comment] = STATE(381), - [ts_builtin_sym_end] = ACTIONS(2351), - [sym_identifier] = ACTIONS(2353), - [anon_sym_LF] = ACTIONS(2353), - [anon_sym_CR] = ACTIONS(2353), - [anon_sym_CR_LF] = ACTIONS(2353), + [370] = { + [sym_line_comment] = STATE(370), + [sym_block_comment] = STATE(370), + [sym__expression] = STATE(2610), + [sym__expression_without_blocks] = STATE(2347), + [sym__expression_with_blocks] = STATE(2347), + [sym_inc_expression] = STATE(2379), + [sym_dec_expression] = STATE(2379), + [sym_or_block_expression] = STATE(2379), + [sym_option_propagation_expression] = STATE(2379), + [sym_result_propagation_expression] = STATE(2379), + [sym_anon_struct_value_expression] = STATE(2378), + [sym_go_expression] = STATE(2379), + [sym_spawn_expression] = STATE(2379), + [sym_parenthesized_expression] = STATE(2379), + [sym_call_expression] = STATE(2379), + [sym_type_initializer] = STATE(2378), + [sym_function_literal] = STATE(2379), + [sym_reference_expression] = STATE(2377), + [sym_type_reference_expression] = STATE(3460), + [sym_unary_expression] = STATE(2379), + [sym_receive_expression] = STATE(2379), + [sym_binary_expression] = STATE(2379), + [sym_as_type_cast_expression] = STATE(2379), + [sym__max_group] = STATE(2379), + [sym_literal] = STATE(2392), + [sym_map_init_expression] = STATE(2378), + [sym_array_creation] = STATE(2379), + [sym_fixed_array_creation] = STATE(2379), + [sym_selector_expression] = STATE(2379), + [sym_index_expression] = STATE(2379), + [sym_slice_expression] = STATE(2379), + [sym_if_expression] = STATE(2378), + [sym_compile_time_if_expression] = STATE(2378), + [sym_is_expression] = STATE(2379), + [sym_in_expression] = STATE(2379), + [sym_enum_fetch] = STATE(2379), + [sym_match_expression] = STATE(2378), + [sym_select_expression] = STATE(2378), + [sym_lock_expression] = STATE(2378), + [sym_unsafe_expression] = STATE(2378), + [sym_sql_expression] = STATE(2378), + [sym_c_string_literal] = STATE(2401), + [sym_raw_string_literal] = STATE(2401), + [sym_interpreted_string_literal] = STATE(2401), + [sym_mutability_modifiers] = STATE(939), + [sym_plain_type] = STATE(4160), + [sym__plain_type_without_special] = STATE(2360), + [sym_anon_struct_type] = STATE(2362), + [sym_multi_return_type] = STATE(2360), + [sym_result_type] = STATE(2360), + [sym_option_type] = STATE(2360), + [sym_qualified_type] = STATE(3460), + [sym_fixed_array_type] = STATE(2362), + [sym_array_type] = STATE(2362), + [sym_pointer_type] = STATE(2362), + [sym_wrong_pointer_type] = STATE(2362), + [sym_map_type] = STATE(2362), + [sym_channel_type] = STATE(2362), + [sym_shared_type] = STATE(2362), + [sym_thread_type] = STATE(2362), + [sym_atomic_type] = STATE(2362), + [sym_generic_type] = STATE(2362), + [sym_function_type] = STATE(2362), + [sym_range] = STATE(4531), + [sym_identifier] = ACTIONS(1428), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(1430), + [anon_sym_LBRACE] = ACTIONS(1432), + [anon_sym_LPAREN] = ACTIONS(1434), + [anon_sym_fn] = ACTIONS(1436), + [anon_sym_PLUS] = ACTIONS(1438), + [anon_sym_DASH] = ACTIONS(1438), + [anon_sym_STAR] = ACTIONS(1440), + [anon_sym_struct] = ACTIONS(1442), + [anon_sym_mut] = ACTIONS(41), + [anon_sym_QMARK] = ACTIONS(47), + [anon_sym_BANG] = ACTIONS(1444), + [anon_sym_go] = ACTIONS(1446), + [anon_sym_spawn] = ACTIONS(1448), + [anon_sym_json_DOTdecode] = ACTIONS(1450), + [anon_sym_LBRACK2] = ACTIONS(1452), + [anon_sym_TILDE] = ACTIONS(1438), + [anon_sym_CARET] = ACTIONS(1438), + [anon_sym_AMP] = ACTIONS(1454), + [anon_sym_LT_DASH] = ACTIONS(1456), + [sym_none] = ACTIONS(1458), + [sym_true] = ACTIONS(1458), + [sym_false] = ACTIONS(1458), + [sym_nil] = ACTIONS(1458), + [anon_sym_if] = ACTIONS(1833), + [anon_sym_DOLLARif] = ACTIONS(1462), + [anon_sym_match] = ACTIONS(1464), + [anon_sym_select] = ACTIONS(1466), + [anon_sym_lock] = ACTIONS(1468), + [anon_sym_rlock] = ACTIONS(1468), + [anon_sym_unsafe] = ACTIONS(1839), + [anon_sym_sql] = ACTIONS(1472), + [sym_int_literal] = ACTIONS(1458), + [sym_float_literal] = ACTIONS(1474), + [sym_rune_literal] = ACTIONS(1474), + [sym_pseudo_compile_time_identifier] = ACTIONS(1476), + [anon_sym_shared] = ACTIONS(83), + [anon_sym_map_LBRACK] = ACTIONS(85), + [anon_sym_chan] = ACTIONS(87), + [anon_sym_thread] = ACTIONS(89), + [anon_sym_atomic] = ACTIONS(91), + [anon_sym_DOT_DOT] = ACTIONS(1478), + [sym___double_quote] = ACTIONS(1480), + [sym___single_quote] = ACTIONS(1482), + [sym___c_double_quote] = ACTIONS(1484), + [sym___c_single_quote] = ACTIONS(1486), + [sym___r_double_quote] = ACTIONS(1488), + [sym___r_single_quote] = ACTIONS(1490), + }, + [371] = { + [sym_line_comment] = STATE(371), + [sym_block_comment] = STATE(371), + [ts_builtin_sym_end] = ACTIONS(2441), + [sym_identifier] = ACTIONS(2443), + [anon_sym_LF] = ACTIONS(2443), + [anon_sym_CR] = ACTIONS(2443), + [anon_sym_CR_LF] = ACTIONS(2443), [anon_sym_SLASH_SLASH] = ACTIONS(497), [anon_sym_SLASH_STAR] = ACTIONS(499), - [anon_sym_DOT] = ACTIONS(2353), - [anon_sym_as] = ACTIONS(2353), - [anon_sym_LBRACE] = ACTIONS(2353), - [anon_sym_COMMA] = ACTIONS(2353), - [anon_sym_const] = ACTIONS(2353), - [anon_sym_LPAREN] = ACTIONS(2353), - [anon_sym_EQ] = ACTIONS(2353), - [anon_sym___global] = ACTIONS(2353), - [anon_sym_type] = ACTIONS(2353), - [anon_sym_PIPE] = ACTIONS(2353), - [anon_sym_fn] = ACTIONS(2353), - [anon_sym_PLUS] = ACTIONS(2353), - [anon_sym_DASH] = ACTIONS(2353), - [anon_sym_STAR] = ACTIONS(2353), - [anon_sym_SLASH] = ACTIONS(2353), - [anon_sym_PERCENT] = ACTIONS(2353), - [anon_sym_LT] = ACTIONS(2353), - [anon_sym_GT] = ACTIONS(2353), - [anon_sym_EQ_EQ] = ACTIONS(2353), - [anon_sym_BANG_EQ] = ACTIONS(2353), - [anon_sym_LT_EQ] = ACTIONS(2353), - [anon_sym_GT_EQ] = ACTIONS(2353), - [anon_sym_LBRACK] = ACTIONS(2351), - [anon_sym_struct] = ACTIONS(2353), - [anon_sym_union] = ACTIONS(2353), - [anon_sym_pub] = ACTIONS(2353), - [anon_sym_mut] = ACTIONS(2353), - [anon_sym_enum] = ACTIONS(2353), - [anon_sym_interface] = ACTIONS(2353), - [anon_sym_PLUS_PLUS] = ACTIONS(2353), - [anon_sym_DASH_DASH] = ACTIONS(2353), - [anon_sym_QMARK] = ACTIONS(2353), - [anon_sym_BANG] = ACTIONS(2353), - [anon_sym_go] = ACTIONS(2353), - [anon_sym_spawn] = ACTIONS(2353), - [anon_sym_json_DOTdecode] = ACTIONS(2353), - [anon_sym_LBRACK2] = ACTIONS(2353), - [anon_sym_TILDE] = ACTIONS(2353), - [anon_sym_CARET] = ACTIONS(2353), - [anon_sym_AMP] = ACTIONS(2353), - [anon_sym_LT_DASH] = ACTIONS(2353), - [anon_sym_LT_LT] = ACTIONS(2353), - [anon_sym_GT_GT] = ACTIONS(2353), - [anon_sym_GT_GT_GT] = ACTIONS(2353), - [anon_sym_AMP_CARET] = ACTIONS(2353), - [anon_sym_AMP_AMP] = ACTIONS(2353), - [anon_sym_PIPE_PIPE] = ACTIONS(2353), - [anon_sym_or] = ACTIONS(2353), - [sym_none] = ACTIONS(2353), - [sym_true] = ACTIONS(2353), - [sym_false] = ACTIONS(2353), - [sym_nil] = ACTIONS(2353), - [anon_sym_QMARK_DOT] = ACTIONS(2353), - [anon_sym_POUND_LBRACK] = ACTIONS(2353), - [anon_sym_if] = ACTIONS(2353), - [anon_sym_DOLLARif] = ACTIONS(2353), - [anon_sym_is] = ACTIONS(2353), - [anon_sym_BANGis] = ACTIONS(2353), - [anon_sym_in] = ACTIONS(2353), - [anon_sym_BANGin] = ACTIONS(2353), - [anon_sym_match] = ACTIONS(2353), - [anon_sym_select] = ACTIONS(2353), - [anon_sym_STAR_EQ] = ACTIONS(2353), - [anon_sym_SLASH_EQ] = ACTIONS(2353), - [anon_sym_PERCENT_EQ] = ACTIONS(2353), - [anon_sym_LT_LT_EQ] = ACTIONS(2353), - [anon_sym_GT_GT_EQ] = ACTIONS(2353), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(2353), - [anon_sym_AMP_EQ] = ACTIONS(2353), - [anon_sym_AMP_CARET_EQ] = ACTIONS(2353), - [anon_sym_PLUS_EQ] = ACTIONS(2353), - [anon_sym_DASH_EQ] = ACTIONS(2353), - [anon_sym_PIPE_EQ] = ACTIONS(2353), - [anon_sym_CARET_EQ] = ACTIONS(2353), - [anon_sym_COLON_EQ] = ACTIONS(2353), - [anon_sym_lock] = ACTIONS(2353), - [anon_sym_rlock] = ACTIONS(2353), - [anon_sym_unsafe] = ACTIONS(2353), - [anon_sym_sql] = ACTIONS(2353), - [sym_int_literal] = ACTIONS(2353), - [sym_float_literal] = ACTIONS(2353), - [sym_rune_literal] = ACTIONS(2353), - [sym_pseudo_compile_time_identifier] = ACTIONS(2353), - [anon_sym_shared] = ACTIONS(2353), - [anon_sym_map_LBRACK] = ACTIONS(2353), - [anon_sym_chan] = ACTIONS(2353), - [anon_sym_thread] = ACTIONS(2353), - [anon_sym_atomic] = ACTIONS(2353), - [anon_sym_assert] = ACTIONS(2353), - [anon_sym_defer] = ACTIONS(2353), - [anon_sym_goto] = ACTIONS(2353), - [anon_sym_break] = ACTIONS(2353), - [anon_sym_continue] = ACTIONS(2353), - [anon_sym_return] = ACTIONS(2353), - [anon_sym_DOLLARfor] = ACTIONS(2353), - [anon_sym_for] = ACTIONS(2353), - [anon_sym_POUND] = ACTIONS(2353), - [anon_sym_asm] = ACTIONS(2353), - [anon_sym_AT_LBRACK] = ACTIONS(2353), - [sym___double_quote] = ACTIONS(2353), - [sym___single_quote] = ACTIONS(2353), - [sym___c_double_quote] = ACTIONS(2353), - [sym___c_single_quote] = ACTIONS(2353), - [sym___r_double_quote] = ACTIONS(2353), - [sym___r_single_quote] = ACTIONS(2353), + [anon_sym_DOT] = ACTIONS(2443), + [anon_sym_as] = ACTIONS(2443), + [anon_sym_LBRACE] = ACTIONS(2443), + [anon_sym_COMMA] = ACTIONS(2443), + [anon_sym_const] = ACTIONS(2443), + [anon_sym_LPAREN] = ACTIONS(2443), + [anon_sym_EQ] = ACTIONS(2443), + [anon_sym___global] = ACTIONS(2443), + [anon_sym_type] = ACTIONS(2443), + [anon_sym_PIPE] = ACTIONS(2443), + [anon_sym_fn] = ACTIONS(2443), + [anon_sym_PLUS] = ACTIONS(2443), + [anon_sym_DASH] = ACTIONS(2443), + [anon_sym_STAR] = ACTIONS(2443), + [anon_sym_SLASH] = ACTIONS(2443), + [anon_sym_PERCENT] = ACTIONS(2443), + [anon_sym_LT] = ACTIONS(2443), + [anon_sym_GT] = ACTIONS(2443), + [anon_sym_EQ_EQ] = ACTIONS(2443), + [anon_sym_BANG_EQ] = ACTIONS(2443), + [anon_sym_LT_EQ] = ACTIONS(2443), + [anon_sym_GT_EQ] = ACTIONS(2443), + [anon_sym_LBRACK] = ACTIONS(2441), + [anon_sym_struct] = ACTIONS(2443), + [anon_sym_union] = ACTIONS(2443), + [anon_sym_pub] = ACTIONS(2443), + [anon_sym_mut] = ACTIONS(2443), + [anon_sym_enum] = ACTIONS(2443), + [anon_sym_interface] = ACTIONS(2443), + [anon_sym_PLUS_PLUS] = ACTIONS(2443), + [anon_sym_DASH_DASH] = ACTIONS(2443), + [anon_sym_QMARK] = ACTIONS(2443), + [anon_sym_BANG] = ACTIONS(2443), + [anon_sym_go] = ACTIONS(2443), + [anon_sym_spawn] = ACTIONS(2443), + [anon_sym_json_DOTdecode] = ACTIONS(2443), + [anon_sym_LBRACK2] = ACTIONS(2443), + [anon_sym_TILDE] = ACTIONS(2443), + [anon_sym_CARET] = ACTIONS(2443), + [anon_sym_AMP] = ACTIONS(2443), + [anon_sym_LT_DASH] = ACTIONS(2443), + [anon_sym_LT_LT] = ACTIONS(2443), + [anon_sym_GT_GT] = ACTIONS(2443), + [anon_sym_GT_GT_GT] = ACTIONS(2443), + [anon_sym_AMP_CARET] = ACTIONS(2443), + [anon_sym_AMP_AMP] = ACTIONS(2443), + [anon_sym_PIPE_PIPE] = ACTIONS(2443), + [anon_sym_or] = ACTIONS(2443), + [sym_none] = ACTIONS(2443), + [sym_true] = ACTIONS(2443), + [sym_false] = ACTIONS(2443), + [sym_nil] = ACTIONS(2443), + [anon_sym_QMARK_DOT] = ACTIONS(2443), + [anon_sym_POUND_LBRACK] = ACTIONS(2443), + [anon_sym_if] = ACTIONS(2443), + [anon_sym_DOLLARif] = ACTIONS(2443), + [anon_sym_is] = ACTIONS(2443), + [anon_sym_BANGis] = ACTIONS(2443), + [anon_sym_in] = ACTIONS(2443), + [anon_sym_BANGin] = ACTIONS(2443), + [anon_sym_match] = ACTIONS(2443), + [anon_sym_select] = ACTIONS(2443), + [anon_sym_STAR_EQ] = ACTIONS(2443), + [anon_sym_SLASH_EQ] = ACTIONS(2443), + [anon_sym_PERCENT_EQ] = ACTIONS(2443), + [anon_sym_LT_LT_EQ] = ACTIONS(2443), + [anon_sym_GT_GT_EQ] = ACTIONS(2443), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(2443), + [anon_sym_AMP_EQ] = ACTIONS(2443), + [anon_sym_AMP_CARET_EQ] = ACTIONS(2443), + [anon_sym_PLUS_EQ] = ACTIONS(2443), + [anon_sym_DASH_EQ] = ACTIONS(2443), + [anon_sym_PIPE_EQ] = ACTIONS(2443), + [anon_sym_CARET_EQ] = ACTIONS(2443), + [anon_sym_COLON_EQ] = ACTIONS(2443), + [anon_sym_lock] = ACTIONS(2443), + [anon_sym_rlock] = ACTIONS(2443), + [anon_sym_unsafe] = ACTIONS(2443), + [anon_sym_sql] = ACTIONS(2443), + [sym_int_literal] = ACTIONS(2443), + [sym_float_literal] = ACTIONS(2443), + [sym_rune_literal] = ACTIONS(2443), + [sym_pseudo_compile_time_identifier] = ACTIONS(2443), + [anon_sym_shared] = ACTIONS(2443), + [anon_sym_map_LBRACK] = ACTIONS(2443), + [anon_sym_chan] = ACTIONS(2443), + [anon_sym_thread] = ACTIONS(2443), + [anon_sym_atomic] = ACTIONS(2443), + [anon_sym_assert] = ACTIONS(2443), + [anon_sym_defer] = ACTIONS(2443), + [anon_sym_goto] = ACTIONS(2443), + [anon_sym_break] = ACTIONS(2443), + [anon_sym_continue] = ACTIONS(2443), + [anon_sym_return] = ACTIONS(2443), + [anon_sym_DOLLARfor] = ACTIONS(2443), + [anon_sym_for] = ACTIONS(2443), + [anon_sym_POUND] = ACTIONS(2443), + [anon_sym_asm] = ACTIONS(2443), + [anon_sym_AT_LBRACK] = ACTIONS(2443), + [sym___double_quote] = ACTIONS(2443), + [sym___single_quote] = ACTIONS(2443), + [sym___c_double_quote] = ACTIONS(2443), + [sym___c_single_quote] = ACTIONS(2443), + [sym___r_double_quote] = ACTIONS(2443), + [sym___r_single_quote] = ACTIONS(2443), }, - [382] = { - [sym_line_comment] = STATE(382), - [sym_block_comment] = STATE(382), - [sym__expression] = STATE(1323), - [sym__expression_without_blocks] = STATE(1312), - [sym__expression_with_blocks] = STATE(1312), - [sym_inc_expression] = STATE(1313), - [sym_dec_expression] = STATE(1313), - [sym_or_block_expression] = STATE(1313), - [sym_option_propagation_expression] = STATE(1313), - [sym_result_propagation_expression] = STATE(1313), - [sym_anon_struct_value_expression] = STATE(1314), - [sym_go_expression] = STATE(1313), - [sym_spawn_expression] = STATE(1313), - [sym_parenthesized_expression] = STATE(1313), - [sym_call_expression] = STATE(1313), - [sym_type_initializer] = STATE(1314), - [sym_function_literal] = STATE(1313), - [sym_reference_expression] = STATE(1334), - [sym_type_reference_expression] = STATE(3541), - [sym_unary_expression] = STATE(1313), - [sym_receive_expression] = STATE(1313), - [sym_binary_expression] = STATE(1313), - [sym_as_type_cast_expression] = STATE(1313), - [sym__max_group] = STATE(1313), - [sym_literal] = STATE(1308), - [sym_map_init_expression] = STATE(1314), - [sym_array_creation] = STATE(1313), - [sym_fixed_array_creation] = STATE(1313), - [sym_selector_expression] = STATE(1313), - [sym_index_expression] = STATE(1313), - [sym_slice_expression] = STATE(1313), - [sym_if_expression] = STATE(1314), - [sym_compile_time_if_expression] = STATE(1314), - [sym_is_expression] = STATE(1313), - [sym_in_expression] = STATE(1313), - [sym_enum_fetch] = STATE(1313), - [sym_match_expression] = STATE(1314), - [sym_select_expression] = STATE(1314), - [sym_lock_expression] = STATE(1314), - [sym_unsafe_expression] = STATE(1314), - [sym_sql_expression] = STATE(1314), - [sym_c_string_literal] = STATE(1286), - [sym_raw_string_literal] = STATE(1286), - [sym_interpreted_string_literal] = STATE(1286), - [sym_mutability_modifiers] = STATE(699), - [sym_plain_type] = STATE(4192), - [sym__plain_type_without_special] = STATE(2302), - [sym_anon_struct_type] = STATE(2303), - [sym_multi_return_type] = STATE(2302), - [sym_result_type] = STATE(2302), - [sym_option_type] = STATE(2302), - [sym_qualified_type] = STATE(3541), - [sym_fixed_array_type] = STATE(2303), - [sym_array_type] = STATE(2303), - [sym_pointer_type] = STATE(2303), - [sym_wrong_pointer_type] = STATE(2303), - [sym_map_type] = STATE(2303), - [sym_channel_type] = STATE(2303), - [sym_shared_type] = STATE(2303), - [sym_thread_type] = STATE(2303), - [sym_atomic_type] = STATE(2303), - [sym_generic_type] = STATE(2303), - [sym_function_type] = STATE(2303), - [aux_sym_string_interpolation_repeat1] = STATE(382), - [sym_identifier] = ACTIONS(2355), + [372] = { + [sym_line_comment] = STATE(372), + [sym_block_comment] = STATE(372), + [sym__expression] = STATE(2558), + [sym__expression_without_blocks] = STATE(2347), + [sym__expression_with_blocks] = STATE(2347), + [sym_inc_expression] = STATE(2379), + [sym_dec_expression] = STATE(2379), + [sym_or_block_expression] = STATE(2379), + [sym_option_propagation_expression] = STATE(2379), + [sym_result_propagation_expression] = STATE(2379), + [sym_anon_struct_value_expression] = STATE(2378), + [sym_go_expression] = STATE(2379), + [sym_spawn_expression] = STATE(2379), + [sym_parenthesized_expression] = STATE(2379), + [sym_call_expression] = STATE(2379), + [sym_type_initializer] = STATE(2378), + [sym_function_literal] = STATE(2379), + [sym_reference_expression] = STATE(2377), + [sym_type_reference_expression] = STATE(3460), + [sym_unary_expression] = STATE(2379), + [sym_receive_expression] = STATE(2379), + [sym_binary_expression] = STATE(2379), + [sym_as_type_cast_expression] = STATE(2379), + [sym__max_group] = STATE(2379), + [sym_literal] = STATE(2392), + [sym_map_init_expression] = STATE(2378), + [sym_array_creation] = STATE(2379), + [sym_fixed_array_creation] = STATE(2379), + [sym_selector_expression] = STATE(2379), + [sym_index_expression] = STATE(2379), + [sym_slice_expression] = STATE(2379), + [sym_if_expression] = STATE(2378), + [sym_compile_time_if_expression] = STATE(2378), + [sym_is_expression] = STATE(2379), + [sym_in_expression] = STATE(2379), + [sym_enum_fetch] = STATE(2379), + [sym_match_expression] = STATE(2378), + [sym_select_expression] = STATE(2378), + [sym_lock_expression] = STATE(2378), + [sym_unsafe_expression] = STATE(2378), + [sym_sql_expression] = STATE(2378), + [sym_c_string_literal] = STATE(2401), + [sym_raw_string_literal] = STATE(2401), + [sym_interpreted_string_literal] = STATE(2401), + [sym_mutability_modifiers] = STATE(900), + [sym_mutable_expression] = STATE(3813), + [sym_expression_list] = STATE(4005), + [sym_plain_type] = STATE(4160), + [sym__plain_type_without_special] = STATE(2360), + [sym_anon_struct_type] = STATE(2362), + [sym_multi_return_type] = STATE(2360), + [sym_result_type] = STATE(2360), + [sym_option_type] = STATE(2360), + [sym_qualified_type] = STATE(3460), + [sym_fixed_array_type] = STATE(2362), + [sym_array_type] = STATE(2362), + [sym_pointer_type] = STATE(2362), + [sym_wrong_pointer_type] = STATE(2362), + [sym_map_type] = STATE(2362), + [sym_channel_type] = STATE(2362), + [sym_shared_type] = STATE(2362), + [sym_thread_type] = STATE(2362), + [sym_atomic_type] = STATE(2362), + [sym_generic_type] = STATE(2362), + [sym_function_type] = STATE(2362), + [sym_identifier] = ACTIONS(1815), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(2358), - [anon_sym_LBRACE] = ACTIONS(2361), - [anon_sym_RBRACE] = ACTIONS(2364), - [anon_sym_LPAREN] = ACTIONS(2366), - [anon_sym_fn] = ACTIONS(2369), - [anon_sym_PLUS] = ACTIONS(2372), - [anon_sym_DASH] = ACTIONS(2372), - [anon_sym_STAR] = ACTIONS(2375), - [anon_sym_struct] = ACTIONS(2378), - [anon_sym_mut] = ACTIONS(2381), - [anon_sym_QMARK] = ACTIONS(2384), - [anon_sym_BANG] = ACTIONS(2387), - [anon_sym_go] = ACTIONS(2390), - [anon_sym_spawn] = ACTIONS(2393), - [anon_sym_json_DOTdecode] = ACTIONS(2396), - [anon_sym_LBRACK2] = ACTIONS(2399), - [anon_sym_TILDE] = ACTIONS(2372), - [anon_sym_CARET] = ACTIONS(2372), - [anon_sym_AMP] = ACTIONS(2402), - [anon_sym_LT_DASH] = ACTIONS(2405), - [sym_none] = ACTIONS(2408), - [sym_true] = ACTIONS(2408), - [sym_false] = ACTIONS(2408), - [sym_nil] = ACTIONS(2408), - [anon_sym_if] = ACTIONS(2411), - [anon_sym_DOLLARif] = ACTIONS(2414), - [anon_sym_match] = ACTIONS(2417), - [anon_sym_select] = ACTIONS(2420), - [anon_sym_lock] = ACTIONS(2423), - [anon_sym_rlock] = ACTIONS(2423), - [anon_sym_unsafe] = ACTIONS(2426), - [anon_sym_sql] = ACTIONS(2429), - [sym_int_literal] = ACTIONS(2408), - [sym_float_literal] = ACTIONS(2432), - [sym_rune_literal] = ACTIONS(2432), - [sym_pseudo_compile_time_identifier] = ACTIONS(2435), - [anon_sym_shared] = ACTIONS(2438), - [anon_sym_map_LBRACK] = ACTIONS(2441), - [anon_sym_chan] = ACTIONS(2444), - [anon_sym_thread] = ACTIONS(2447), - [anon_sym_atomic] = ACTIONS(2450), - [sym___double_quote] = ACTIONS(2453), - [sym___single_quote] = ACTIONS(2456), - [sym___c_double_quote] = ACTIONS(2459), - [sym___c_single_quote] = ACTIONS(2462), - [sym___r_double_quote] = ACTIONS(2465), - [sym___r_single_quote] = ACTIONS(2468), + [anon_sym_DOT] = ACTIONS(1430), + [anon_sym_LBRACE] = ACTIONS(1432), + [anon_sym_LPAREN] = ACTIONS(1434), + [anon_sym_fn] = ACTIONS(1436), + [anon_sym_PLUS] = ACTIONS(1817), + [anon_sym_DASH] = ACTIONS(1817), + [anon_sym_STAR] = ACTIONS(1819), + [anon_sym_struct] = ACTIONS(1442), + [anon_sym_mut] = ACTIONS(41), + [anon_sym_QMARK] = ACTIONS(47), + [anon_sym_BANG] = ACTIONS(1821), + [anon_sym_go] = ACTIONS(1823), + [anon_sym_spawn] = ACTIONS(1825), + [anon_sym_json_DOTdecode] = ACTIONS(1450), + [anon_sym_LBRACK2] = ACTIONS(1827), + [anon_sym_TILDE] = ACTIONS(1817), + [anon_sym_CARET] = ACTIONS(1817), + [anon_sym_AMP] = ACTIONS(1829), + [anon_sym_LT_DASH] = ACTIONS(1831), + [sym_none] = ACTIONS(1458), + [sym_true] = ACTIONS(1458), + [sym_false] = ACTIONS(1458), + [sym_nil] = ACTIONS(1458), + [anon_sym_if] = ACTIONS(1833), + [anon_sym_DOLLARif] = ACTIONS(1462), + [anon_sym_match] = ACTIONS(1464), + [anon_sym_select] = ACTIONS(1835), + [anon_sym_lock] = ACTIONS(1837), + [anon_sym_rlock] = ACTIONS(1837), + [anon_sym_unsafe] = ACTIONS(1839), + [anon_sym_sql] = ACTIONS(1472), + [sym_int_literal] = ACTIONS(1458), + [sym_float_literal] = ACTIONS(1474), + [sym_rune_literal] = ACTIONS(1474), + [sym_pseudo_compile_time_identifier] = ACTIONS(1476), + [anon_sym_shared] = ACTIONS(83), + [anon_sym_map_LBRACK] = ACTIONS(85), + [anon_sym_chan] = ACTIONS(87), + [anon_sym_thread] = ACTIONS(89), + [anon_sym_atomic] = ACTIONS(91), + [sym___double_quote] = ACTIONS(1480), + [sym___single_quote] = ACTIONS(1482), + [sym___c_double_quote] = ACTIONS(1484), + [sym___c_single_quote] = ACTIONS(1486), + [sym___r_double_quote] = ACTIONS(1488), + [sym___r_single_quote] = ACTIONS(1490), }, - [383] = { - [sym_line_comment] = STATE(383), - [sym_block_comment] = STATE(383), - [sym__expression] = STATE(2610), - [sym__expression_without_blocks] = STATE(2300), - [sym__expression_with_blocks] = STATE(2300), - [sym_inc_expression] = STATE(2307), - [sym_dec_expression] = STATE(2307), - [sym_or_block_expression] = STATE(2307), - [sym_option_propagation_expression] = STATE(2307), - [sym_result_propagation_expression] = STATE(2307), - [sym_anon_struct_value_expression] = STATE(2380), - [sym_go_expression] = STATE(2307), - [sym_spawn_expression] = STATE(2307), - [sym_parenthesized_expression] = STATE(2307), - [sym_call_expression] = STATE(2307), - [sym_type_initializer] = STATE(2380), - [sym_function_literal] = STATE(2307), - [sym_reference_expression] = STATE(2311), - [sym_type_reference_expression] = STATE(3541), - [sym_unary_expression] = STATE(2307), - [sym_receive_expression] = STATE(2307), - [sym_binary_expression] = STATE(2307), - [sym_as_type_cast_expression] = STATE(2307), - [sym__max_group] = STATE(2307), - [sym_literal] = STATE(2292), - [sym_map_init_expression] = STATE(2380), - [sym_array_creation] = STATE(2307), - [sym_fixed_array_creation] = STATE(2307), - [sym_selector_expression] = STATE(2307), - [sym_index_expression] = STATE(2307), - [sym_slice_expression] = STATE(2307), - [sym_if_expression] = STATE(2380), - [sym_compile_time_if_expression] = STATE(2380), - [sym_is_expression] = STATE(2307), - [sym_in_expression] = STATE(2307), - [sym_enum_fetch] = STATE(2307), - [sym_match_expression] = STATE(2380), - [sym_select_expression] = STATE(2380), - [sym_lock_expression] = STATE(2380), - [sym_unsafe_expression] = STATE(2380), - [sym_sql_expression] = STATE(2380), - [sym_c_string_literal] = STATE(2308), - [sym_raw_string_literal] = STATE(2308), - [sym_interpreted_string_literal] = STATE(2308), - [sym_mutability_modifiers] = STATE(939), - [sym_plain_type] = STATE(3557), - [sym__plain_type_without_special] = STATE(2302), - [sym_anon_struct_type] = STATE(2303), - [sym_multi_return_type] = STATE(2302), - [sym_result_type] = STATE(2302), - [sym_option_type] = STATE(2302), - [sym_qualified_type] = STATE(3541), - [sym_fixed_array_type] = STATE(2303), - [sym_array_type] = STATE(2303), - [sym_pointer_type] = STATE(2303), - [sym_wrong_pointer_type] = STATE(2303), - [sym_map_type] = STATE(2303), - [sym_channel_type] = STATE(2303), - [sym_shared_type] = STATE(2303), - [sym_thread_type] = STATE(2303), - [sym_atomic_type] = STATE(2303), - [sym_generic_type] = STATE(2303), - [sym_function_type] = STATE(2303), - [sym_range] = STATE(4335), - [sym_identifier] = ACTIONS(2135), + [373] = { + [sym_line_comment] = STATE(373), + [sym_block_comment] = STATE(373), + [sym__expression] = STATE(1273), + [sym__expression_without_blocks] = STATE(1318), + [sym__expression_with_blocks] = STATE(1318), + [sym_inc_expression] = STATE(1319), + [sym_dec_expression] = STATE(1319), + [sym_or_block_expression] = STATE(1319), + [sym_option_propagation_expression] = STATE(1319), + [sym_result_propagation_expression] = STATE(1319), + [sym_anon_struct_value_expression] = STATE(1320), + [sym_go_expression] = STATE(1319), + [sym_spawn_expression] = STATE(1319), + [sym_parenthesized_expression] = STATE(1319), + [sym_call_expression] = STATE(1319), + [sym_type_initializer] = STATE(1320), + [sym_function_literal] = STATE(1319), + [sym_reference_expression] = STATE(1298), + [sym_type_reference_expression] = STATE(3460), + [sym_unary_expression] = STATE(1319), + [sym_receive_expression] = STATE(1319), + [sym_binary_expression] = STATE(1319), + [sym_as_type_cast_expression] = STATE(1319), + [sym__max_group] = STATE(1319), + [sym_literal] = STATE(1314), + [sym_map_init_expression] = STATE(1320), + [sym_array_creation] = STATE(1319), + [sym_fixed_array_creation] = STATE(1319), + [sym_selector_expression] = STATE(1319), + [sym_index_expression] = STATE(1319), + [sym_slice_expression] = STATE(1319), + [sym_if_expression] = STATE(1320), + [sym_compile_time_if_expression] = STATE(1320), + [sym_is_expression] = STATE(1319), + [sym_in_expression] = STATE(1319), + [sym_enum_fetch] = STATE(1319), + [sym_match_expression] = STATE(1320), + [sym_select_expression] = STATE(1320), + [sym_lock_expression] = STATE(1320), + [sym_unsafe_expression] = STATE(1320), + [sym_sql_expression] = STATE(1320), + [sym_c_string_literal] = STATE(1291), + [sym_raw_string_literal] = STATE(1291), + [sym_interpreted_string_literal] = STATE(1291), + [sym_mutability_modifiers] = STATE(639), + [sym_plain_type] = STATE(4307), + [sym__plain_type_without_special] = STATE(2360), + [sym_anon_struct_type] = STATE(2362), + [sym_multi_return_type] = STATE(2360), + [sym_result_type] = STATE(2360), + [sym_option_type] = STATE(2360), + [sym_qualified_type] = STATE(3460), + [sym_fixed_array_type] = STATE(2362), + [sym_array_type] = STATE(2362), + [sym_pointer_type] = STATE(2362), + [sym_wrong_pointer_type] = STATE(2362), + [sym_map_type] = STATE(2362), + [sym_channel_type] = STATE(2362), + [sym_shared_type] = STATE(2362), + [sym_thread_type] = STATE(2362), + [sym_atomic_type] = STATE(2362), + [sym_generic_type] = STATE(2362), + [sym_function_type] = STATE(2362), + [aux_sym__array_repeat1] = STATE(405), + [sym_identifier] = ACTIONS(1360), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1428), - [anon_sym_LBRACE] = ACTIONS(1430), - [anon_sym_LPAREN] = ACTIONS(1432), - [anon_sym_fn] = ACTIONS(1434), - [anon_sym_PLUS] = ACTIONS(1436), - [anon_sym_DASH] = ACTIONS(1436), - [anon_sym_STAR] = ACTIONS(2137), - [anon_sym_struct] = ACTIONS(1440), + [anon_sym_DOT] = ACTIONS(1362), + [anon_sym_LBRACE] = ACTIONS(1364), + [anon_sym_LPAREN] = ACTIONS(1366), + [anon_sym_fn] = ACTIONS(1368), + [anon_sym_PLUS] = ACTIONS(1370), + [anon_sym_DASH] = ACTIONS(1370), + [anon_sym_STAR] = ACTIONS(1372), + [anon_sym_RBRACK] = ACTIONS(2445), + [anon_sym_struct] = ACTIONS(1376), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(2139), - [anon_sym_go] = ACTIONS(1444), - [anon_sym_spawn] = ACTIONS(1446), - [anon_sym_json_DOTdecode] = ACTIONS(1448), - [anon_sym_LBRACK2] = ACTIONS(1450), - [anon_sym_TILDE] = ACTIONS(1436), - [anon_sym_CARET] = ACTIONS(1436), - [anon_sym_AMP] = ACTIONS(2141), - [anon_sym_LT_DASH] = ACTIONS(1454), - [sym_none] = ACTIONS(1456), - [sym_true] = ACTIONS(1456), - [sym_false] = ACTIONS(1456), - [sym_nil] = ACTIONS(1456), - [anon_sym_if] = ACTIONS(1827), - [anon_sym_DOLLARif] = ACTIONS(1460), - [anon_sym_match] = ACTIONS(1462), - [anon_sym_select] = ACTIONS(1464), - [anon_sym_lock] = ACTIONS(1466), - [anon_sym_rlock] = ACTIONS(1466), - [anon_sym_unsafe] = ACTIONS(1833), - [anon_sym_sql] = ACTIONS(1470), - [sym_int_literal] = ACTIONS(1456), - [sym_float_literal] = ACTIONS(1472), - [sym_rune_literal] = ACTIONS(1472), - [sym_pseudo_compile_time_identifier] = ACTIONS(1474), + [anon_sym_BANG] = ACTIONS(1378), + [anon_sym_go] = ACTIONS(1380), + [anon_sym_spawn] = ACTIONS(1382), + [anon_sym_json_DOTdecode] = ACTIONS(1384), + [anon_sym_LBRACK2] = ACTIONS(1386), + [anon_sym_TILDE] = ACTIONS(1370), + [anon_sym_CARET] = ACTIONS(1370), + [anon_sym_AMP] = ACTIONS(1388), + [anon_sym_LT_DASH] = ACTIONS(1390), + [sym_none] = ACTIONS(1392), + [sym_true] = ACTIONS(1392), + [sym_false] = ACTIONS(1392), + [sym_nil] = ACTIONS(1392), + [anon_sym_if] = ACTIONS(1865), + [anon_sym_DOLLARif] = ACTIONS(1396), + [anon_sym_match] = ACTIONS(1398), + [anon_sym_select] = ACTIONS(1400), + [anon_sym_lock] = ACTIONS(1402), + [anon_sym_rlock] = ACTIONS(1402), + [anon_sym_unsafe] = ACTIONS(1871), + [anon_sym_sql] = ACTIONS(1406), + [sym_int_literal] = ACTIONS(1392), + [sym_float_literal] = ACTIONS(1410), + [sym_rune_literal] = ACTIONS(1410), + [sym_pseudo_compile_time_identifier] = ACTIONS(1412), [anon_sym_shared] = ACTIONS(83), [anon_sym_map_LBRACK] = ACTIONS(85), [anon_sym_chan] = ACTIONS(87), [anon_sym_thread] = ACTIONS(89), [anon_sym_atomic] = ACTIONS(91), - [anon_sym_DOT_DOT] = ACTIONS(1476), - [sym___double_quote] = ACTIONS(1478), - [sym___single_quote] = ACTIONS(1480), - [sym___c_double_quote] = ACTIONS(1482), - [sym___c_single_quote] = ACTIONS(1484), - [sym___r_double_quote] = ACTIONS(1486), - [sym___r_single_quote] = ACTIONS(1488), + [sym___double_quote] = ACTIONS(1414), + [sym___single_quote] = ACTIONS(1416), + [sym___c_double_quote] = ACTIONS(1418), + [sym___c_single_quote] = ACTIONS(1420), + [sym___r_double_quote] = ACTIONS(1422), + [sym___r_single_quote] = ACTIONS(1424), }, - [384] = { - [sym_line_comment] = STATE(384), - [sym_block_comment] = STATE(384), - [sym__expression] = STATE(2610), - [sym__expression_without_blocks] = STATE(2300), - [sym__expression_with_blocks] = STATE(2300), - [sym_inc_expression] = STATE(2307), - [sym_dec_expression] = STATE(2307), - [sym_or_block_expression] = STATE(2307), - [sym_option_propagation_expression] = STATE(2307), - [sym_result_propagation_expression] = STATE(2307), - [sym_anon_struct_value_expression] = STATE(2380), - [sym_go_expression] = STATE(2307), - [sym_spawn_expression] = STATE(2307), - [sym_parenthesized_expression] = STATE(2307), - [sym_call_expression] = STATE(2307), - [sym_type_initializer] = STATE(2380), - [sym_function_literal] = STATE(2307), - [sym_reference_expression] = STATE(2311), - [sym_type_reference_expression] = STATE(3541), - [sym_unary_expression] = STATE(2307), - [sym_receive_expression] = STATE(2307), - [sym_binary_expression] = STATE(2307), - [sym_as_type_cast_expression] = STATE(2307), - [sym__max_group] = STATE(2307), - [sym_literal] = STATE(2292), - [sym_map_init_expression] = STATE(2380), - [sym_array_creation] = STATE(2307), - [sym_fixed_array_creation] = STATE(2307), - [sym_selector_expression] = STATE(2307), - [sym_index_expression] = STATE(2307), - [sym_slice_expression] = STATE(2307), - [sym_if_expression] = STATE(2380), - [sym_compile_time_if_expression] = STATE(2380), - [sym_is_expression] = STATE(2307), - [sym_in_expression] = STATE(2307), - [sym_enum_fetch] = STATE(2307), - [sym_match_expression] = STATE(2380), - [sym_select_expression] = STATE(2380), - [sym_lock_expression] = STATE(2380), - [sym_unsafe_expression] = STATE(2380), - [sym_sql_expression] = STATE(2380), - [sym_c_string_literal] = STATE(2308), - [sym_raw_string_literal] = STATE(2308), - [sym_interpreted_string_literal] = STATE(2308), - [sym_mutability_modifiers] = STATE(939), - [sym_plain_type] = STATE(4297), - [sym__plain_type_without_special] = STATE(2302), - [sym_anon_struct_type] = STATE(2303), - [sym_multi_return_type] = STATE(2302), - [sym_result_type] = STATE(2302), - [sym_option_type] = STATE(2302), - [sym_qualified_type] = STATE(3541), - [sym_fixed_array_type] = STATE(2303), - [sym_array_type] = STATE(2303), - [sym_pointer_type] = STATE(2303), - [sym_wrong_pointer_type] = STATE(2303), - [sym_map_type] = STATE(2303), - [sym_channel_type] = STATE(2303), - [sym_shared_type] = STATE(2303), - [sym_thread_type] = STATE(2303), - [sym_atomic_type] = STATE(2303), - [sym_generic_type] = STATE(2303), - [sym_function_type] = STATE(2303), - [sym_range] = STATE(4335), - [sym_identifier] = ACTIONS(1426), + [374] = { + [sym_line_comment] = STATE(374), + [sym_block_comment] = STATE(374), + [ts_builtin_sym_end] = ACTIONS(2447), + [sym_identifier] = ACTIONS(2449), + [anon_sym_LF] = ACTIONS(2449), + [anon_sym_CR] = ACTIONS(2449), + [anon_sym_CR_LF] = ACTIONS(2449), + [anon_sym_SLASH_SLASH] = ACTIONS(497), + [anon_sym_SLASH_STAR] = ACTIONS(499), + [anon_sym_DOT] = ACTIONS(2449), + [anon_sym_as] = ACTIONS(2449), + [anon_sym_LBRACE] = ACTIONS(2449), + [anon_sym_COMMA] = ACTIONS(2449), + [anon_sym_const] = ACTIONS(2449), + [anon_sym_LPAREN] = ACTIONS(2449), + [anon_sym_EQ] = ACTIONS(2449), + [anon_sym___global] = ACTIONS(2449), + [anon_sym_type] = ACTIONS(2449), + [anon_sym_PIPE] = ACTIONS(2449), + [anon_sym_fn] = ACTIONS(2449), + [anon_sym_PLUS] = ACTIONS(2449), + [anon_sym_DASH] = ACTIONS(2449), + [anon_sym_STAR] = ACTIONS(2449), + [anon_sym_SLASH] = ACTIONS(2449), + [anon_sym_PERCENT] = ACTIONS(2449), + [anon_sym_LT] = ACTIONS(2449), + [anon_sym_GT] = ACTIONS(2449), + [anon_sym_EQ_EQ] = ACTIONS(2449), + [anon_sym_BANG_EQ] = ACTIONS(2449), + [anon_sym_LT_EQ] = ACTIONS(2449), + [anon_sym_GT_EQ] = ACTIONS(2449), + [anon_sym_LBRACK] = ACTIONS(2447), + [anon_sym_struct] = ACTIONS(2449), + [anon_sym_union] = ACTIONS(2449), + [anon_sym_pub] = ACTIONS(2449), + [anon_sym_mut] = ACTIONS(2449), + [anon_sym_enum] = ACTIONS(2449), + [anon_sym_interface] = ACTIONS(2449), + [anon_sym_PLUS_PLUS] = ACTIONS(2449), + [anon_sym_DASH_DASH] = ACTIONS(2449), + [anon_sym_QMARK] = ACTIONS(2449), + [anon_sym_BANG] = ACTIONS(2449), + [anon_sym_go] = ACTIONS(2449), + [anon_sym_spawn] = ACTIONS(2449), + [anon_sym_json_DOTdecode] = ACTIONS(2449), + [anon_sym_LBRACK2] = ACTIONS(2449), + [anon_sym_TILDE] = ACTIONS(2449), + [anon_sym_CARET] = ACTIONS(2449), + [anon_sym_AMP] = ACTIONS(2449), + [anon_sym_LT_DASH] = ACTIONS(2449), + [anon_sym_LT_LT] = ACTIONS(2449), + [anon_sym_GT_GT] = ACTIONS(2449), + [anon_sym_GT_GT_GT] = ACTIONS(2449), + [anon_sym_AMP_CARET] = ACTIONS(2449), + [anon_sym_AMP_AMP] = ACTIONS(2449), + [anon_sym_PIPE_PIPE] = ACTIONS(2449), + [anon_sym_or] = ACTIONS(2449), + [sym_none] = ACTIONS(2449), + [sym_true] = ACTIONS(2449), + [sym_false] = ACTIONS(2449), + [sym_nil] = ACTIONS(2449), + [anon_sym_QMARK_DOT] = ACTIONS(2449), + [anon_sym_POUND_LBRACK] = ACTIONS(2449), + [anon_sym_if] = ACTIONS(2449), + [anon_sym_DOLLARif] = ACTIONS(2449), + [anon_sym_is] = ACTIONS(2449), + [anon_sym_BANGis] = ACTIONS(2449), + [anon_sym_in] = ACTIONS(2449), + [anon_sym_BANGin] = ACTIONS(2449), + [anon_sym_match] = ACTIONS(2449), + [anon_sym_select] = ACTIONS(2449), + [anon_sym_STAR_EQ] = ACTIONS(2449), + [anon_sym_SLASH_EQ] = ACTIONS(2449), + [anon_sym_PERCENT_EQ] = ACTIONS(2449), + [anon_sym_LT_LT_EQ] = ACTIONS(2449), + [anon_sym_GT_GT_EQ] = ACTIONS(2449), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(2449), + [anon_sym_AMP_EQ] = ACTIONS(2449), + [anon_sym_AMP_CARET_EQ] = ACTIONS(2449), + [anon_sym_PLUS_EQ] = ACTIONS(2449), + [anon_sym_DASH_EQ] = ACTIONS(2449), + [anon_sym_PIPE_EQ] = ACTIONS(2449), + [anon_sym_CARET_EQ] = ACTIONS(2449), + [anon_sym_COLON_EQ] = ACTIONS(2449), + [anon_sym_lock] = ACTIONS(2449), + [anon_sym_rlock] = ACTIONS(2449), + [anon_sym_unsafe] = ACTIONS(2449), + [anon_sym_sql] = ACTIONS(2449), + [sym_int_literal] = ACTIONS(2449), + [sym_float_literal] = ACTIONS(2449), + [sym_rune_literal] = ACTIONS(2449), + [sym_pseudo_compile_time_identifier] = ACTIONS(2449), + [anon_sym_shared] = ACTIONS(2449), + [anon_sym_map_LBRACK] = ACTIONS(2449), + [anon_sym_chan] = ACTIONS(2449), + [anon_sym_thread] = ACTIONS(2449), + [anon_sym_atomic] = ACTIONS(2449), + [anon_sym_assert] = ACTIONS(2449), + [anon_sym_defer] = ACTIONS(2449), + [anon_sym_goto] = ACTIONS(2449), + [anon_sym_break] = ACTIONS(2449), + [anon_sym_continue] = ACTIONS(2449), + [anon_sym_return] = ACTIONS(2449), + [anon_sym_DOLLARfor] = ACTIONS(2449), + [anon_sym_for] = ACTIONS(2449), + [anon_sym_POUND] = ACTIONS(2449), + [anon_sym_asm] = ACTIONS(2449), + [anon_sym_AT_LBRACK] = ACTIONS(2449), + [sym___double_quote] = ACTIONS(2449), + [sym___single_quote] = ACTIONS(2449), + [sym___c_double_quote] = ACTIONS(2449), + [sym___c_single_quote] = ACTIONS(2449), + [sym___r_double_quote] = ACTIONS(2449), + [sym___r_single_quote] = ACTIONS(2449), + }, + [375] = { + [sym_line_comment] = STATE(375), + [sym_block_comment] = STATE(375), + [sym__expression] = STATE(1128), + [sym__expression_without_blocks] = STATE(1210), + [sym__expression_with_blocks] = STATE(1210), + [sym_inc_expression] = STATE(1211), + [sym_dec_expression] = STATE(1211), + [sym_or_block_expression] = STATE(1211), + [sym_option_propagation_expression] = STATE(1211), + [sym_result_propagation_expression] = STATE(1211), + [sym_anon_struct_value_expression] = STATE(1212), + [sym_go_expression] = STATE(1211), + [sym_spawn_expression] = STATE(1211), + [sym_parenthesized_expression] = STATE(1211), + [sym_call_expression] = STATE(1211), + [sym_type_initializer] = STATE(1212), + [sym_function_literal] = STATE(1211), + [sym_reference_expression] = STATE(1233), + [sym_type_reference_expression] = STATE(3460), + [sym_unary_expression] = STATE(1211), + [sym_receive_expression] = STATE(1211), + [sym_binary_expression] = STATE(1211), + [sym_as_type_cast_expression] = STATE(1211), + [sym__max_group] = STATE(1211), + [sym_literal] = STATE(1209), + [sym_map_init_expression] = STATE(1212), + [sym_array_creation] = STATE(1211), + [sym_fixed_array_creation] = STATE(1211), + [sym_selector_expression] = STATE(1211), + [sym_index_expression] = STATE(1211), + [sym_slice_expression] = STATE(1211), + [sym_if_expression] = STATE(1212), + [sym_compile_time_if_expression] = STATE(1212), + [sym_is_expression] = STATE(1211), + [sym_in_expression] = STATE(1211), + [sym_enum_fetch] = STATE(1211), + [sym_match_expression] = STATE(1212), + [sym_select_expression] = STATE(1212), + [sym_lock_expression] = STATE(1212), + [sym_unsafe_expression] = STATE(1212), + [sym_sql_expression] = STATE(1212), + [sym_c_string_literal] = STATE(1201), + [sym_raw_string_literal] = STATE(1201), + [sym_interpreted_string_literal] = STATE(1201), + [sym_mutability_modifiers] = STATE(589), + [sym_plain_type] = STATE(4123), + [sym__plain_type_without_special] = STATE(2360), + [sym_anon_struct_type] = STATE(2362), + [sym_multi_return_type] = STATE(2360), + [sym_result_type] = STATE(2360), + [sym_option_type] = STATE(2360), + [sym_qualified_type] = STATE(3460), + [sym_fixed_array_type] = STATE(2362), + [sym_array_type] = STATE(2362), + [sym_pointer_type] = STATE(2362), + [sym_wrong_pointer_type] = STATE(2362), + [sym_map_type] = STATE(2362), + [sym_channel_type] = STATE(2362), + [sym_shared_type] = STATE(2362), + [sym_thread_type] = STATE(2362), + [sym_atomic_type] = STATE(2362), + [sym_generic_type] = STATE(2362), + [sym_function_type] = STATE(2362), + [aux_sym_short_element_list_repeat1] = STATE(494), + [sym_identifier] = ACTIONS(1139), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1428), - [anon_sym_LBRACE] = ACTIONS(1430), - [anon_sym_LPAREN] = ACTIONS(1432), - [anon_sym_fn] = ACTIONS(1434), - [anon_sym_PLUS] = ACTIONS(1436), - [anon_sym_DASH] = ACTIONS(1436), - [anon_sym_STAR] = ACTIONS(1438), - [anon_sym_struct] = ACTIONS(1440), + [anon_sym_DOT] = ACTIONS(631), + [anon_sym_LBRACE] = ACTIONS(633), + [anon_sym_RBRACE] = ACTIONS(2451), + [anon_sym_LPAREN] = ACTIONS(637), + [anon_sym_fn] = ACTIONS(641), + [anon_sym_PLUS] = ACTIONS(643), + [anon_sym_DASH] = ACTIONS(643), + [anon_sym_STAR] = ACTIONS(645), + [anon_sym_struct] = ACTIONS(649), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(1442), - [anon_sym_go] = ACTIONS(1444), - [anon_sym_spawn] = ACTIONS(1446), - [anon_sym_json_DOTdecode] = ACTIONS(1448), - [anon_sym_LBRACK2] = ACTIONS(1450), - [anon_sym_TILDE] = ACTIONS(1436), - [anon_sym_CARET] = ACTIONS(1436), - [anon_sym_AMP] = ACTIONS(1452), - [anon_sym_LT_DASH] = ACTIONS(1454), - [sym_none] = ACTIONS(1456), - [sym_true] = ACTIONS(1456), - [sym_false] = ACTIONS(1456), - [sym_nil] = ACTIONS(1456), - [anon_sym_if] = ACTIONS(1827), - [anon_sym_DOLLARif] = ACTIONS(1460), - [anon_sym_match] = ACTIONS(1462), - [anon_sym_select] = ACTIONS(1464), - [anon_sym_lock] = ACTIONS(1466), - [anon_sym_rlock] = ACTIONS(1466), - [anon_sym_unsafe] = ACTIONS(1833), - [anon_sym_sql] = ACTIONS(1470), - [sym_int_literal] = ACTIONS(1456), - [sym_float_literal] = ACTIONS(1472), - [sym_rune_literal] = ACTIONS(1472), - [sym_pseudo_compile_time_identifier] = ACTIONS(1474), + [anon_sym_BANG] = ACTIONS(655), + [anon_sym_go] = ACTIONS(657), + [anon_sym_spawn] = ACTIONS(659), + [anon_sym_json_DOTdecode] = ACTIONS(661), + [anon_sym_LBRACK2] = ACTIONS(663), + [anon_sym_TILDE] = ACTIONS(643), + [anon_sym_CARET] = ACTIONS(643), + [anon_sym_AMP] = ACTIONS(665), + [anon_sym_LT_DASH] = ACTIONS(667), + [sym_none] = ACTIONS(669), + [sym_true] = ACTIONS(669), + [sym_false] = ACTIONS(669), + [sym_nil] = ACTIONS(669), + [anon_sym_if] = ACTIONS(671), + [anon_sym_DOLLARif] = ACTIONS(673), + [anon_sym_match] = ACTIONS(675), + [anon_sym_select] = ACTIONS(677), + [anon_sym_lock] = ACTIONS(679), + [anon_sym_rlock] = ACTIONS(679), + [anon_sym_unsafe] = ACTIONS(681), + [anon_sym_sql] = ACTIONS(683), + [sym_int_literal] = ACTIONS(669), + [sym_float_literal] = ACTIONS(685), + [sym_rune_literal] = ACTIONS(685), + [sym_pseudo_compile_time_identifier] = ACTIONS(687), [anon_sym_shared] = ACTIONS(83), [anon_sym_map_LBRACK] = ACTIONS(85), [anon_sym_chan] = ACTIONS(87), [anon_sym_thread] = ACTIONS(89), [anon_sym_atomic] = ACTIONS(91), - [anon_sym_DOT_DOT] = ACTIONS(1476), - [sym___double_quote] = ACTIONS(1478), - [sym___single_quote] = ACTIONS(1480), - [sym___c_double_quote] = ACTIONS(1482), - [sym___c_single_quote] = ACTIONS(1484), - [sym___r_double_quote] = ACTIONS(1486), - [sym___r_single_quote] = ACTIONS(1488), + [sym___double_quote] = ACTIONS(689), + [sym___single_quote] = ACTIONS(691), + [sym___c_double_quote] = ACTIONS(693), + [sym___c_single_quote] = ACTIONS(695), + [sym___r_double_quote] = ACTIONS(697), + [sym___r_single_quote] = ACTIONS(699), }, - [385] = { - [sym_line_comment] = STATE(385), - [sym_block_comment] = STATE(385), - [sym__expression] = STATE(1268), - [sym__expression_without_blocks] = STATE(1312), - [sym__expression_with_blocks] = STATE(1312), - [sym_inc_expression] = STATE(1313), - [sym_dec_expression] = STATE(1313), - [sym_or_block_expression] = STATE(1313), - [sym_option_propagation_expression] = STATE(1313), - [sym_result_propagation_expression] = STATE(1313), - [sym_anon_struct_value_expression] = STATE(1314), - [sym_go_expression] = STATE(1313), - [sym_spawn_expression] = STATE(1313), - [sym_parenthesized_expression] = STATE(1313), - [sym_call_expression] = STATE(1313), - [sym_type_initializer] = STATE(1314), - [sym_function_literal] = STATE(1313), - [sym_reference_expression] = STATE(1394), - [sym_type_reference_expression] = STATE(3541), - [sym_unary_expression] = STATE(1313), - [sym_receive_expression] = STATE(1313), - [sym_binary_expression] = STATE(1313), - [sym_as_type_cast_expression] = STATE(1313), - [sym__max_group] = STATE(1313), - [sym_literal] = STATE(1308), - [sym_map_init_expression] = STATE(1314), - [sym_array_creation] = STATE(1313), - [sym_fixed_array_creation] = STATE(1313), - [sym_selector_expression] = STATE(1393), - [sym_index_expression] = STATE(1313), - [sym_slice_expression] = STATE(1313), - [sym_if_expression] = STATE(1314), - [sym_compile_time_if_expression] = STATE(1314), - [sym_is_expression] = STATE(1313), - [sym_in_expression] = STATE(1313), - [sym_enum_fetch] = STATE(1313), - [sym_match_expression] = STATE(1314), - [sym_select_expression] = STATE(1314), - [sym_lock_expression] = STATE(1314), - [sym_unsafe_expression] = STATE(1314), - [sym_sql_expression] = STATE(1314), - [sym_c_string_literal] = STATE(1286), - [sym_raw_string_literal] = STATE(1286), - [sym_interpreted_string_literal] = STATE(1286), - [sym_mutability_modifiers] = STATE(699), - [sym_plain_type] = STATE(4192), - [sym__plain_type_without_special] = STATE(2302), - [sym_anon_struct_type] = STATE(2303), - [sym_multi_return_type] = STATE(2302), - [sym_result_type] = STATE(2302), - [sym_option_type] = STATE(2302), - [sym_qualified_type] = STATE(3541), - [sym_fixed_array_type] = STATE(2303), - [sym_array_type] = STATE(2303), - [sym_pointer_type] = STATE(2303), - [sym_wrong_pointer_type] = STATE(2303), - [sym_map_type] = STATE(2303), - [sym_channel_type] = STATE(2303), - [sym_shared_type] = STATE(2303), - [sym_thread_type] = STATE(2303), - [sym_atomic_type] = STATE(2303), - [sym_generic_type] = STATE(2303), - [sym_function_type] = STATE(2303), - [aux_sym__array_repeat1] = STATE(317), - [sym_identifier] = ACTIONS(1354), + [376] = { + [sym_line_comment] = STATE(376), + [sym_block_comment] = STATE(376), + [ts_builtin_sym_end] = ACTIONS(2453), + [sym_identifier] = ACTIONS(2455), + [anon_sym_LF] = ACTIONS(2455), + [anon_sym_CR] = ACTIONS(2455), + [anon_sym_CR_LF] = ACTIONS(2455), + [anon_sym_SLASH_SLASH] = ACTIONS(497), + [anon_sym_SLASH_STAR] = ACTIONS(499), + [anon_sym_DOT] = ACTIONS(2455), + [anon_sym_as] = ACTIONS(2455), + [anon_sym_LBRACE] = ACTIONS(2455), + [anon_sym_COMMA] = ACTIONS(2455), + [anon_sym_const] = ACTIONS(2455), + [anon_sym_LPAREN] = ACTIONS(2455), + [anon_sym_EQ] = ACTIONS(2455), + [anon_sym___global] = ACTIONS(2455), + [anon_sym_type] = ACTIONS(2455), + [anon_sym_PIPE] = ACTIONS(2455), + [anon_sym_fn] = ACTIONS(2455), + [anon_sym_PLUS] = ACTIONS(2455), + [anon_sym_DASH] = ACTIONS(2455), + [anon_sym_STAR] = ACTIONS(2455), + [anon_sym_SLASH] = ACTIONS(2455), + [anon_sym_PERCENT] = ACTIONS(2455), + [anon_sym_LT] = ACTIONS(2455), + [anon_sym_GT] = ACTIONS(2455), + [anon_sym_EQ_EQ] = ACTIONS(2455), + [anon_sym_BANG_EQ] = ACTIONS(2455), + [anon_sym_LT_EQ] = ACTIONS(2455), + [anon_sym_GT_EQ] = ACTIONS(2455), + [anon_sym_LBRACK] = ACTIONS(2453), + [anon_sym_struct] = ACTIONS(2455), + [anon_sym_union] = ACTIONS(2455), + [anon_sym_pub] = ACTIONS(2455), + [anon_sym_mut] = ACTIONS(2455), + [anon_sym_enum] = ACTIONS(2455), + [anon_sym_interface] = ACTIONS(2455), + [anon_sym_PLUS_PLUS] = ACTIONS(2455), + [anon_sym_DASH_DASH] = ACTIONS(2455), + [anon_sym_QMARK] = ACTIONS(2455), + [anon_sym_BANG] = ACTIONS(2455), + [anon_sym_go] = ACTIONS(2455), + [anon_sym_spawn] = ACTIONS(2455), + [anon_sym_json_DOTdecode] = ACTIONS(2455), + [anon_sym_LBRACK2] = ACTIONS(2455), + [anon_sym_TILDE] = ACTIONS(2455), + [anon_sym_CARET] = ACTIONS(2455), + [anon_sym_AMP] = ACTIONS(2455), + [anon_sym_LT_DASH] = ACTIONS(2455), + [anon_sym_LT_LT] = ACTIONS(2455), + [anon_sym_GT_GT] = ACTIONS(2455), + [anon_sym_GT_GT_GT] = ACTIONS(2455), + [anon_sym_AMP_CARET] = ACTIONS(2455), + [anon_sym_AMP_AMP] = ACTIONS(2455), + [anon_sym_PIPE_PIPE] = ACTIONS(2455), + [anon_sym_or] = ACTIONS(2455), + [sym_none] = ACTIONS(2455), + [sym_true] = ACTIONS(2455), + [sym_false] = ACTIONS(2455), + [sym_nil] = ACTIONS(2455), + [anon_sym_QMARK_DOT] = ACTIONS(2455), + [anon_sym_POUND_LBRACK] = ACTIONS(2455), + [anon_sym_if] = ACTIONS(2455), + [anon_sym_DOLLARif] = ACTIONS(2455), + [anon_sym_is] = ACTIONS(2455), + [anon_sym_BANGis] = ACTIONS(2455), + [anon_sym_in] = ACTIONS(2455), + [anon_sym_BANGin] = ACTIONS(2455), + [anon_sym_match] = ACTIONS(2455), + [anon_sym_select] = ACTIONS(2455), + [anon_sym_STAR_EQ] = ACTIONS(2455), + [anon_sym_SLASH_EQ] = ACTIONS(2455), + [anon_sym_PERCENT_EQ] = ACTIONS(2455), + [anon_sym_LT_LT_EQ] = ACTIONS(2455), + [anon_sym_GT_GT_EQ] = ACTIONS(2455), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(2455), + [anon_sym_AMP_EQ] = ACTIONS(2455), + [anon_sym_AMP_CARET_EQ] = ACTIONS(2455), + [anon_sym_PLUS_EQ] = ACTIONS(2455), + [anon_sym_DASH_EQ] = ACTIONS(2455), + [anon_sym_PIPE_EQ] = ACTIONS(2455), + [anon_sym_CARET_EQ] = ACTIONS(2455), + [anon_sym_COLON_EQ] = ACTIONS(2455), + [anon_sym_lock] = ACTIONS(2455), + [anon_sym_rlock] = ACTIONS(2455), + [anon_sym_unsafe] = ACTIONS(2455), + [anon_sym_sql] = ACTIONS(2455), + [sym_int_literal] = ACTIONS(2455), + [sym_float_literal] = ACTIONS(2455), + [sym_rune_literal] = ACTIONS(2455), + [sym_pseudo_compile_time_identifier] = ACTIONS(2455), + [anon_sym_shared] = ACTIONS(2455), + [anon_sym_map_LBRACK] = ACTIONS(2455), + [anon_sym_chan] = ACTIONS(2455), + [anon_sym_thread] = ACTIONS(2455), + [anon_sym_atomic] = ACTIONS(2455), + [anon_sym_assert] = ACTIONS(2455), + [anon_sym_defer] = ACTIONS(2455), + [anon_sym_goto] = ACTIONS(2455), + [anon_sym_break] = ACTIONS(2455), + [anon_sym_continue] = ACTIONS(2455), + [anon_sym_return] = ACTIONS(2455), + [anon_sym_DOLLARfor] = ACTIONS(2455), + [anon_sym_for] = ACTIONS(2455), + [anon_sym_POUND] = ACTIONS(2455), + [anon_sym_asm] = ACTIONS(2455), + [anon_sym_AT_LBRACK] = ACTIONS(2455), + [sym___double_quote] = ACTIONS(2455), + [sym___single_quote] = ACTIONS(2455), + [sym___c_double_quote] = ACTIONS(2455), + [sym___c_single_quote] = ACTIONS(2455), + [sym___r_double_quote] = ACTIONS(2455), + [sym___r_single_quote] = ACTIONS(2455), + }, + [377] = { + [sym_line_comment] = STATE(377), + [sym_block_comment] = STATE(377), + [ts_builtin_sym_end] = ACTIONS(2457), + [sym_identifier] = ACTIONS(2459), + [anon_sym_LF] = ACTIONS(2459), + [anon_sym_CR] = ACTIONS(2459), + [anon_sym_CR_LF] = ACTIONS(2459), + [anon_sym_SLASH_SLASH] = ACTIONS(497), + [anon_sym_SLASH_STAR] = ACTIONS(499), + [anon_sym_DOT] = ACTIONS(2459), + [anon_sym_as] = ACTIONS(2459), + [anon_sym_LBRACE] = ACTIONS(2459), + [anon_sym_COMMA] = ACTIONS(2459), + [anon_sym_const] = ACTIONS(2459), + [anon_sym_LPAREN] = ACTIONS(2459), + [anon_sym_EQ] = ACTIONS(2459), + [anon_sym___global] = ACTIONS(2459), + [anon_sym_type] = ACTIONS(2459), + [anon_sym_PIPE] = ACTIONS(2459), + [anon_sym_fn] = ACTIONS(2459), + [anon_sym_PLUS] = ACTIONS(2459), + [anon_sym_DASH] = ACTIONS(2459), + [anon_sym_STAR] = ACTIONS(2459), + [anon_sym_SLASH] = ACTIONS(2459), + [anon_sym_PERCENT] = ACTIONS(2459), + [anon_sym_LT] = ACTIONS(2459), + [anon_sym_GT] = ACTIONS(2459), + [anon_sym_EQ_EQ] = ACTIONS(2459), + [anon_sym_BANG_EQ] = ACTIONS(2459), + [anon_sym_LT_EQ] = ACTIONS(2459), + [anon_sym_GT_EQ] = ACTIONS(2459), + [anon_sym_LBRACK] = ACTIONS(2457), + [anon_sym_struct] = ACTIONS(2459), + [anon_sym_union] = ACTIONS(2459), + [anon_sym_pub] = ACTIONS(2459), + [anon_sym_mut] = ACTIONS(2459), + [anon_sym_enum] = ACTIONS(2459), + [anon_sym_interface] = ACTIONS(2459), + [anon_sym_PLUS_PLUS] = ACTIONS(2459), + [anon_sym_DASH_DASH] = ACTIONS(2459), + [anon_sym_QMARK] = ACTIONS(2459), + [anon_sym_BANG] = ACTIONS(2459), + [anon_sym_go] = ACTIONS(2459), + [anon_sym_spawn] = ACTIONS(2459), + [anon_sym_json_DOTdecode] = ACTIONS(2459), + [anon_sym_LBRACK2] = ACTIONS(2459), + [anon_sym_TILDE] = ACTIONS(2459), + [anon_sym_CARET] = ACTIONS(2459), + [anon_sym_AMP] = ACTIONS(2459), + [anon_sym_LT_DASH] = ACTIONS(2459), + [anon_sym_LT_LT] = ACTIONS(2459), + [anon_sym_GT_GT] = ACTIONS(2459), + [anon_sym_GT_GT_GT] = ACTIONS(2459), + [anon_sym_AMP_CARET] = ACTIONS(2459), + [anon_sym_AMP_AMP] = ACTIONS(2459), + [anon_sym_PIPE_PIPE] = ACTIONS(2459), + [anon_sym_or] = ACTIONS(2459), + [sym_none] = ACTIONS(2459), + [sym_true] = ACTIONS(2459), + [sym_false] = ACTIONS(2459), + [sym_nil] = ACTIONS(2459), + [anon_sym_QMARK_DOT] = ACTIONS(2459), + [anon_sym_POUND_LBRACK] = ACTIONS(2459), + [anon_sym_if] = ACTIONS(2459), + [anon_sym_DOLLARif] = ACTIONS(2459), + [anon_sym_is] = ACTIONS(2459), + [anon_sym_BANGis] = ACTIONS(2459), + [anon_sym_in] = ACTIONS(2459), + [anon_sym_BANGin] = ACTIONS(2459), + [anon_sym_match] = ACTIONS(2459), + [anon_sym_select] = ACTIONS(2459), + [anon_sym_STAR_EQ] = ACTIONS(2459), + [anon_sym_SLASH_EQ] = ACTIONS(2459), + [anon_sym_PERCENT_EQ] = ACTIONS(2459), + [anon_sym_LT_LT_EQ] = ACTIONS(2459), + [anon_sym_GT_GT_EQ] = ACTIONS(2459), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(2459), + [anon_sym_AMP_EQ] = ACTIONS(2459), + [anon_sym_AMP_CARET_EQ] = ACTIONS(2459), + [anon_sym_PLUS_EQ] = ACTIONS(2459), + [anon_sym_DASH_EQ] = ACTIONS(2459), + [anon_sym_PIPE_EQ] = ACTIONS(2459), + [anon_sym_CARET_EQ] = ACTIONS(2459), + [anon_sym_COLON_EQ] = ACTIONS(2459), + [anon_sym_lock] = ACTIONS(2459), + [anon_sym_rlock] = ACTIONS(2459), + [anon_sym_unsafe] = ACTIONS(2459), + [anon_sym_sql] = ACTIONS(2459), + [sym_int_literal] = ACTIONS(2459), + [sym_float_literal] = ACTIONS(2459), + [sym_rune_literal] = ACTIONS(2459), + [sym_pseudo_compile_time_identifier] = ACTIONS(2459), + [anon_sym_shared] = ACTIONS(2459), + [anon_sym_map_LBRACK] = ACTIONS(2459), + [anon_sym_chan] = ACTIONS(2459), + [anon_sym_thread] = ACTIONS(2459), + [anon_sym_atomic] = ACTIONS(2459), + [anon_sym_assert] = ACTIONS(2459), + [anon_sym_defer] = ACTIONS(2459), + [anon_sym_goto] = ACTIONS(2459), + [anon_sym_break] = ACTIONS(2459), + [anon_sym_continue] = ACTIONS(2459), + [anon_sym_return] = ACTIONS(2459), + [anon_sym_DOLLARfor] = ACTIONS(2459), + [anon_sym_for] = ACTIONS(2459), + [anon_sym_POUND] = ACTIONS(2459), + [anon_sym_asm] = ACTIONS(2459), + [anon_sym_AT_LBRACK] = ACTIONS(2459), + [sym___double_quote] = ACTIONS(2459), + [sym___single_quote] = ACTIONS(2459), + [sym___c_double_quote] = ACTIONS(2459), + [sym___c_single_quote] = ACTIONS(2459), + [sym___r_double_quote] = ACTIONS(2459), + [sym___r_single_quote] = ACTIONS(2459), + }, + [378] = { + [sym_line_comment] = STATE(378), + [sym_block_comment] = STATE(378), + [ts_builtin_sym_end] = ACTIONS(2222), + [sym_identifier] = ACTIONS(2219), + [anon_sym_LF] = ACTIONS(2219), + [anon_sym_CR] = ACTIONS(2219), + [anon_sym_CR_LF] = ACTIONS(2219), + [anon_sym_SLASH_SLASH] = ACTIONS(497), + [anon_sym_SLASH_STAR] = ACTIONS(499), + [anon_sym_DOT] = ACTIONS(2219), + [anon_sym_as] = ACTIONS(2219), + [anon_sym_LBRACE] = ACTIONS(2219), + [anon_sym_COMMA] = ACTIONS(2219), + [anon_sym_const] = ACTIONS(2219), + [anon_sym_LPAREN] = ACTIONS(2219), + [anon_sym_EQ] = ACTIONS(2219), + [anon_sym___global] = ACTIONS(2219), + [anon_sym_type] = ACTIONS(2219), + [anon_sym_PIPE] = ACTIONS(2219), + [anon_sym_fn] = ACTIONS(2219), + [anon_sym_PLUS] = ACTIONS(2219), + [anon_sym_DASH] = ACTIONS(2219), + [anon_sym_STAR] = ACTIONS(2219), + [anon_sym_SLASH] = ACTIONS(2219), + [anon_sym_PERCENT] = ACTIONS(2219), + [anon_sym_LT] = ACTIONS(2219), + [anon_sym_GT] = ACTIONS(2219), + [anon_sym_EQ_EQ] = ACTIONS(2219), + [anon_sym_BANG_EQ] = ACTIONS(2219), + [anon_sym_LT_EQ] = ACTIONS(2219), + [anon_sym_GT_EQ] = ACTIONS(2219), + [anon_sym_LBRACK] = ACTIONS(2222), + [anon_sym_struct] = ACTIONS(2219), + [anon_sym_union] = ACTIONS(2219), + [anon_sym_pub] = ACTIONS(2219), + [anon_sym_mut] = ACTIONS(2219), + [anon_sym_enum] = ACTIONS(2219), + [anon_sym_interface] = ACTIONS(2219), + [anon_sym_PLUS_PLUS] = ACTIONS(2219), + [anon_sym_DASH_DASH] = ACTIONS(2219), + [anon_sym_QMARK] = ACTIONS(2219), + [anon_sym_BANG] = ACTIONS(2219), + [anon_sym_go] = ACTIONS(2219), + [anon_sym_spawn] = ACTIONS(2219), + [anon_sym_json_DOTdecode] = ACTIONS(2219), + [anon_sym_LBRACK2] = ACTIONS(2219), + [anon_sym_TILDE] = ACTIONS(2219), + [anon_sym_CARET] = ACTIONS(2219), + [anon_sym_AMP] = ACTIONS(2219), + [anon_sym_LT_DASH] = ACTIONS(2219), + [anon_sym_LT_LT] = ACTIONS(2219), + [anon_sym_GT_GT] = ACTIONS(2219), + [anon_sym_GT_GT_GT] = ACTIONS(2219), + [anon_sym_AMP_CARET] = ACTIONS(2219), + [anon_sym_AMP_AMP] = ACTIONS(2219), + [anon_sym_PIPE_PIPE] = ACTIONS(2219), + [anon_sym_or] = ACTIONS(2219), + [sym_none] = ACTIONS(2219), + [sym_true] = ACTIONS(2219), + [sym_false] = ACTIONS(2219), + [sym_nil] = ACTIONS(2219), + [anon_sym_QMARK_DOT] = ACTIONS(2219), + [anon_sym_POUND_LBRACK] = ACTIONS(2219), + [anon_sym_if] = ACTIONS(2219), + [anon_sym_DOLLARif] = ACTIONS(2219), + [anon_sym_is] = ACTIONS(2219), + [anon_sym_BANGis] = ACTIONS(2219), + [anon_sym_in] = ACTIONS(2219), + [anon_sym_BANGin] = ACTIONS(2219), + [anon_sym_match] = ACTIONS(2219), + [anon_sym_select] = ACTIONS(2219), + [anon_sym_STAR_EQ] = ACTIONS(2219), + [anon_sym_SLASH_EQ] = ACTIONS(2219), + [anon_sym_PERCENT_EQ] = ACTIONS(2219), + [anon_sym_LT_LT_EQ] = ACTIONS(2219), + [anon_sym_GT_GT_EQ] = ACTIONS(2219), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(2219), + [anon_sym_AMP_EQ] = ACTIONS(2219), + [anon_sym_AMP_CARET_EQ] = ACTIONS(2219), + [anon_sym_PLUS_EQ] = ACTIONS(2219), + [anon_sym_DASH_EQ] = ACTIONS(2219), + [anon_sym_PIPE_EQ] = ACTIONS(2219), + [anon_sym_CARET_EQ] = ACTIONS(2219), + [anon_sym_COLON_EQ] = ACTIONS(2219), + [anon_sym_lock] = ACTIONS(2219), + [anon_sym_rlock] = ACTIONS(2219), + [anon_sym_unsafe] = ACTIONS(2219), + [anon_sym_sql] = ACTIONS(2219), + [sym_int_literal] = ACTIONS(2219), + [sym_float_literal] = ACTIONS(2219), + [sym_rune_literal] = ACTIONS(2219), + [sym_pseudo_compile_time_identifier] = ACTIONS(2219), + [anon_sym_shared] = ACTIONS(2219), + [anon_sym_map_LBRACK] = ACTIONS(2219), + [anon_sym_chan] = ACTIONS(2219), + [anon_sym_thread] = ACTIONS(2219), + [anon_sym_atomic] = ACTIONS(2219), + [anon_sym_assert] = ACTIONS(2219), + [anon_sym_defer] = ACTIONS(2219), + [anon_sym_goto] = ACTIONS(2219), + [anon_sym_break] = ACTIONS(2219), + [anon_sym_continue] = ACTIONS(2219), + [anon_sym_return] = ACTIONS(2219), + [anon_sym_DOLLARfor] = ACTIONS(2219), + [anon_sym_for] = ACTIONS(2219), + [anon_sym_POUND] = ACTIONS(2219), + [anon_sym_asm] = ACTIONS(2219), + [anon_sym_AT_LBRACK] = ACTIONS(2219), + [sym___double_quote] = ACTIONS(2219), + [sym___single_quote] = ACTIONS(2219), + [sym___c_double_quote] = ACTIONS(2219), + [sym___c_single_quote] = ACTIONS(2219), + [sym___r_double_quote] = ACTIONS(2219), + [sym___r_single_quote] = ACTIONS(2219), + }, + [379] = { + [sym_line_comment] = STATE(379), + [sym_block_comment] = STATE(379), + [sym__expression] = STATE(2610), + [sym__expression_without_blocks] = STATE(2347), + [sym__expression_with_blocks] = STATE(2347), + [sym_inc_expression] = STATE(2379), + [sym_dec_expression] = STATE(2379), + [sym_or_block_expression] = STATE(2379), + [sym_option_propagation_expression] = STATE(2379), + [sym_result_propagation_expression] = STATE(2379), + [sym_anon_struct_value_expression] = STATE(2378), + [sym_go_expression] = STATE(2379), + [sym_spawn_expression] = STATE(2379), + [sym_parenthesized_expression] = STATE(2379), + [sym_call_expression] = STATE(2379), + [sym_type_initializer] = STATE(2378), + [sym_function_literal] = STATE(2379), + [sym_reference_expression] = STATE(2377), + [sym_type_reference_expression] = STATE(3460), + [sym_unary_expression] = STATE(2379), + [sym_receive_expression] = STATE(2379), + [sym_binary_expression] = STATE(2379), + [sym_as_type_cast_expression] = STATE(2379), + [sym__max_group] = STATE(2379), + [sym_literal] = STATE(2392), + [sym_map_init_expression] = STATE(2378), + [sym_array_creation] = STATE(2379), + [sym_fixed_array_creation] = STATE(2379), + [sym_selector_expression] = STATE(2379), + [sym_index_expression] = STATE(2379), + [sym_slice_expression] = STATE(2379), + [sym_if_expression] = STATE(2378), + [sym_compile_time_if_expression] = STATE(2378), + [sym_is_expression] = STATE(2379), + [sym_in_expression] = STATE(2379), + [sym_enum_fetch] = STATE(2379), + [sym_match_expression] = STATE(2378), + [sym_select_expression] = STATE(2378), + [sym_lock_expression] = STATE(2378), + [sym_unsafe_expression] = STATE(2378), + [sym_sql_expression] = STATE(2378), + [sym_c_string_literal] = STATE(2401), + [sym_raw_string_literal] = STATE(2401), + [sym_interpreted_string_literal] = STATE(2401), + [sym_mutability_modifiers] = STATE(939), + [sym_plain_type] = STATE(3569), + [sym__plain_type_without_special] = STATE(2360), + [sym_anon_struct_type] = STATE(2362), + [sym_multi_return_type] = STATE(2360), + [sym_result_type] = STATE(2360), + [sym_option_type] = STATE(2360), + [sym_qualified_type] = STATE(3460), + [sym_fixed_array_type] = STATE(2362), + [sym_array_type] = STATE(2362), + [sym_pointer_type] = STATE(2362), + [sym_wrong_pointer_type] = STATE(2362), + [sym_map_type] = STATE(2362), + [sym_channel_type] = STATE(2362), + [sym_shared_type] = STATE(2362), + [sym_thread_type] = STATE(2362), + [sym_atomic_type] = STATE(2362), + [sym_generic_type] = STATE(2362), + [sym_function_type] = STATE(2362), + [sym_range] = STATE(4531), + [sym_identifier] = ACTIONS(2127), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1356), - [anon_sym_LBRACE] = ACTIONS(1358), - [anon_sym_LPAREN] = ACTIONS(1360), - [anon_sym_fn] = ACTIONS(1362), - [anon_sym_PLUS] = ACTIONS(1364), - [anon_sym_DASH] = ACTIONS(1364), - [anon_sym_STAR] = ACTIONS(1366), - [anon_sym_RBRACK] = ACTIONS(1368), - [anon_sym_struct] = ACTIONS(1370), + [anon_sym_DOT] = ACTIONS(1430), + [anon_sym_LBRACE] = ACTIONS(1432), + [anon_sym_LPAREN] = ACTIONS(1434), + [anon_sym_fn] = ACTIONS(1436), + [anon_sym_PLUS] = ACTIONS(1438), + [anon_sym_DASH] = ACTIONS(1438), + [anon_sym_STAR] = ACTIONS(2129), + [anon_sym_struct] = ACTIONS(1442), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(1372), - [anon_sym_go] = ACTIONS(1374), - [anon_sym_spawn] = ACTIONS(1376), - [anon_sym_json_DOTdecode] = ACTIONS(1378), - [anon_sym_LBRACK2] = ACTIONS(1380), - [anon_sym_TILDE] = ACTIONS(1364), - [anon_sym_CARET] = ACTIONS(1364), - [anon_sym_AMP] = ACTIONS(1382), - [anon_sym_LT_DASH] = ACTIONS(1384), - [sym_none] = ACTIONS(1386), - [sym_true] = ACTIONS(1386), - [sym_false] = ACTIONS(1386), - [sym_nil] = ACTIONS(1386), - [anon_sym_if] = ACTIONS(1877), - [anon_sym_DOLLARif] = ACTIONS(1390), - [anon_sym_match] = ACTIONS(1392), - [anon_sym_select] = ACTIONS(1394), - [anon_sym_lock] = ACTIONS(1396), - [anon_sym_rlock] = ACTIONS(1396), - [anon_sym_unsafe] = ACTIONS(1883), - [anon_sym_sql] = ACTIONS(1400), - [sym_int_literal] = ACTIONS(1402), - [sym_float_literal] = ACTIONS(1404), - [sym_rune_literal] = ACTIONS(1404), - [sym_pseudo_compile_time_identifier] = ACTIONS(1406), + [anon_sym_BANG] = ACTIONS(2131), + [anon_sym_go] = ACTIONS(1446), + [anon_sym_spawn] = ACTIONS(1448), + [anon_sym_json_DOTdecode] = ACTIONS(1450), + [anon_sym_LBRACK2] = ACTIONS(1452), + [anon_sym_TILDE] = ACTIONS(1438), + [anon_sym_CARET] = ACTIONS(1438), + [anon_sym_AMP] = ACTIONS(2133), + [anon_sym_LT_DASH] = ACTIONS(1456), + [sym_none] = ACTIONS(1458), + [sym_true] = ACTIONS(1458), + [sym_false] = ACTIONS(1458), + [sym_nil] = ACTIONS(1458), + [anon_sym_if] = ACTIONS(1833), + [anon_sym_DOLLARif] = ACTIONS(1462), + [anon_sym_match] = ACTIONS(1464), + [anon_sym_select] = ACTIONS(1466), + [anon_sym_lock] = ACTIONS(1468), + [anon_sym_rlock] = ACTIONS(1468), + [anon_sym_unsafe] = ACTIONS(1839), + [anon_sym_sql] = ACTIONS(1472), + [sym_int_literal] = ACTIONS(1458), + [sym_float_literal] = ACTIONS(1474), + [sym_rune_literal] = ACTIONS(1474), + [sym_pseudo_compile_time_identifier] = ACTIONS(1476), [anon_sym_shared] = ACTIONS(83), [anon_sym_map_LBRACK] = ACTIONS(85), [anon_sym_chan] = ACTIONS(87), [anon_sym_thread] = ACTIONS(89), [anon_sym_atomic] = ACTIONS(91), - [sym___double_quote] = ACTIONS(1408), - [sym___single_quote] = ACTIONS(1410), - [sym___c_double_quote] = ACTIONS(1412), - [sym___c_single_quote] = ACTIONS(1414), - [sym___r_double_quote] = ACTIONS(1416), - [sym___r_single_quote] = ACTIONS(1418), + [anon_sym_DOT_DOT] = ACTIONS(1478), + [sym___double_quote] = ACTIONS(1480), + [sym___single_quote] = ACTIONS(1482), + [sym___c_double_quote] = ACTIONS(1484), + [sym___c_single_quote] = ACTIONS(1486), + [sym___r_double_quote] = ACTIONS(1488), + [sym___r_single_quote] = ACTIONS(1490), }, - [386] = { - [sym_line_comment] = STATE(386), - [sym_block_comment] = STATE(386), - [ts_builtin_sym_end] = ACTIONS(2471), - [sym_identifier] = ACTIONS(2473), - [anon_sym_LF] = ACTIONS(2473), - [anon_sym_CR] = ACTIONS(2473), - [anon_sym_CR_LF] = ACTIONS(2473), + [380] = { + [sym_line_comment] = STATE(380), + [sym_block_comment] = STATE(380), + [ts_builtin_sym_end] = ACTIONS(2461), + [sym_identifier] = ACTIONS(2463), + [anon_sym_LF] = ACTIONS(2463), + [anon_sym_CR] = ACTIONS(2463), + [anon_sym_CR_LF] = ACTIONS(2463), [anon_sym_SLASH_SLASH] = ACTIONS(497), [anon_sym_SLASH_STAR] = ACTIONS(499), - [anon_sym_DOT] = ACTIONS(2473), - [anon_sym_as] = ACTIONS(2473), - [anon_sym_LBRACE] = ACTIONS(2473), - [anon_sym_COMMA] = ACTIONS(2473), - [anon_sym_const] = ACTIONS(2473), - [anon_sym_LPAREN] = ACTIONS(2473), - [anon_sym_EQ] = ACTIONS(2473), - [anon_sym___global] = ACTIONS(2473), - [anon_sym_type] = ACTIONS(2473), - [anon_sym_PIPE] = ACTIONS(2473), - [anon_sym_fn] = ACTIONS(2473), - [anon_sym_PLUS] = ACTIONS(2473), - [anon_sym_DASH] = ACTIONS(2473), - [anon_sym_STAR] = ACTIONS(2473), - [anon_sym_SLASH] = ACTIONS(2473), - [anon_sym_PERCENT] = ACTIONS(2473), - [anon_sym_LT] = ACTIONS(2473), - [anon_sym_GT] = ACTIONS(2473), - [anon_sym_EQ_EQ] = ACTIONS(2473), - [anon_sym_BANG_EQ] = ACTIONS(2473), - [anon_sym_LT_EQ] = ACTIONS(2473), - [anon_sym_GT_EQ] = ACTIONS(2473), - [anon_sym_LBRACK] = ACTIONS(2471), - [anon_sym_struct] = ACTIONS(2473), - [anon_sym_union] = ACTIONS(2473), - [anon_sym_pub] = ACTIONS(2473), - [anon_sym_mut] = ACTIONS(2473), - [anon_sym_enum] = ACTIONS(2473), - [anon_sym_interface] = ACTIONS(2473), - [anon_sym_PLUS_PLUS] = ACTIONS(2473), - [anon_sym_DASH_DASH] = ACTIONS(2473), - [anon_sym_QMARK] = ACTIONS(2473), - [anon_sym_BANG] = ACTIONS(2473), - [anon_sym_go] = ACTIONS(2473), - [anon_sym_spawn] = ACTIONS(2473), - [anon_sym_json_DOTdecode] = ACTIONS(2473), - [anon_sym_LBRACK2] = ACTIONS(2473), - [anon_sym_TILDE] = ACTIONS(2473), - [anon_sym_CARET] = ACTIONS(2473), - [anon_sym_AMP] = ACTIONS(2473), - [anon_sym_LT_DASH] = ACTIONS(2473), - [anon_sym_LT_LT] = ACTIONS(2473), - [anon_sym_GT_GT] = ACTIONS(2473), - [anon_sym_GT_GT_GT] = ACTIONS(2473), - [anon_sym_AMP_CARET] = ACTIONS(2473), - [anon_sym_AMP_AMP] = ACTIONS(2473), - [anon_sym_PIPE_PIPE] = ACTIONS(2473), - [anon_sym_or] = ACTIONS(2473), - [sym_none] = ACTIONS(2473), - [sym_true] = ACTIONS(2473), - [sym_false] = ACTIONS(2473), - [sym_nil] = ACTIONS(2473), - [anon_sym_QMARK_DOT] = ACTIONS(2473), - [anon_sym_POUND_LBRACK] = ACTIONS(2473), - [anon_sym_if] = ACTIONS(2473), - [anon_sym_DOLLARif] = ACTIONS(2473), - [anon_sym_is] = ACTIONS(2473), - [anon_sym_BANGis] = ACTIONS(2473), - [anon_sym_in] = ACTIONS(2473), - [anon_sym_BANGin] = ACTIONS(2473), - [anon_sym_match] = ACTIONS(2473), - [anon_sym_select] = ACTIONS(2473), - [anon_sym_STAR_EQ] = ACTIONS(2473), - [anon_sym_SLASH_EQ] = ACTIONS(2473), - [anon_sym_PERCENT_EQ] = ACTIONS(2473), - [anon_sym_LT_LT_EQ] = ACTIONS(2473), - [anon_sym_GT_GT_EQ] = ACTIONS(2473), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(2473), - [anon_sym_AMP_EQ] = ACTIONS(2473), - [anon_sym_AMP_CARET_EQ] = ACTIONS(2473), - [anon_sym_PLUS_EQ] = ACTIONS(2473), - [anon_sym_DASH_EQ] = ACTIONS(2473), - [anon_sym_PIPE_EQ] = ACTIONS(2473), - [anon_sym_CARET_EQ] = ACTIONS(2473), - [anon_sym_COLON_EQ] = ACTIONS(2473), - [anon_sym_lock] = ACTIONS(2473), - [anon_sym_rlock] = ACTIONS(2473), - [anon_sym_unsafe] = ACTIONS(2473), - [anon_sym_sql] = ACTIONS(2473), - [sym_int_literal] = ACTIONS(2473), - [sym_float_literal] = ACTIONS(2473), - [sym_rune_literal] = ACTIONS(2473), - [sym_pseudo_compile_time_identifier] = ACTIONS(2473), - [anon_sym_shared] = ACTIONS(2473), - [anon_sym_map_LBRACK] = ACTIONS(2473), - [anon_sym_chan] = ACTIONS(2473), - [anon_sym_thread] = ACTIONS(2473), - [anon_sym_atomic] = ACTIONS(2473), - [anon_sym_assert] = ACTIONS(2473), - [anon_sym_defer] = ACTIONS(2473), - [anon_sym_goto] = ACTIONS(2473), - [anon_sym_break] = ACTIONS(2473), - [anon_sym_continue] = ACTIONS(2473), - [anon_sym_return] = ACTIONS(2473), - [anon_sym_DOLLARfor] = ACTIONS(2473), - [anon_sym_for] = ACTIONS(2473), - [anon_sym_POUND] = ACTIONS(2473), - [anon_sym_asm] = ACTIONS(2473), - [anon_sym_AT_LBRACK] = ACTIONS(2473), - [sym___double_quote] = ACTIONS(2473), - [sym___single_quote] = ACTIONS(2473), - [sym___c_double_quote] = ACTIONS(2473), - [sym___c_single_quote] = ACTIONS(2473), - [sym___r_double_quote] = ACTIONS(2473), - [sym___r_single_quote] = ACTIONS(2473), + [anon_sym_DOT] = ACTIONS(2463), + [anon_sym_as] = ACTIONS(2463), + [anon_sym_LBRACE] = ACTIONS(2463), + [anon_sym_COMMA] = ACTIONS(2463), + [anon_sym_const] = ACTIONS(2463), + [anon_sym_LPAREN] = ACTIONS(2463), + [anon_sym_EQ] = ACTIONS(2463), + [anon_sym___global] = ACTIONS(2463), + [anon_sym_type] = ACTIONS(2463), + [anon_sym_PIPE] = ACTIONS(2463), + [anon_sym_fn] = ACTIONS(2463), + [anon_sym_PLUS] = ACTIONS(2463), + [anon_sym_DASH] = ACTIONS(2463), + [anon_sym_STAR] = ACTIONS(2463), + [anon_sym_SLASH] = ACTIONS(2463), + [anon_sym_PERCENT] = ACTIONS(2463), + [anon_sym_LT] = ACTIONS(2463), + [anon_sym_GT] = ACTIONS(2463), + [anon_sym_EQ_EQ] = ACTIONS(2463), + [anon_sym_BANG_EQ] = ACTIONS(2463), + [anon_sym_LT_EQ] = ACTIONS(2463), + [anon_sym_GT_EQ] = ACTIONS(2463), + [anon_sym_LBRACK] = ACTIONS(2461), + [anon_sym_struct] = ACTIONS(2463), + [anon_sym_union] = ACTIONS(2463), + [anon_sym_pub] = ACTIONS(2463), + [anon_sym_mut] = ACTIONS(2463), + [anon_sym_enum] = ACTIONS(2463), + [anon_sym_interface] = ACTIONS(2463), + [anon_sym_PLUS_PLUS] = ACTIONS(2463), + [anon_sym_DASH_DASH] = ACTIONS(2463), + [anon_sym_QMARK] = ACTIONS(2463), + [anon_sym_BANG] = ACTIONS(2463), + [anon_sym_go] = ACTIONS(2463), + [anon_sym_spawn] = ACTIONS(2463), + [anon_sym_json_DOTdecode] = ACTIONS(2463), + [anon_sym_LBRACK2] = ACTIONS(2463), + [anon_sym_TILDE] = ACTIONS(2463), + [anon_sym_CARET] = ACTIONS(2463), + [anon_sym_AMP] = ACTIONS(2463), + [anon_sym_LT_DASH] = ACTIONS(2463), + [anon_sym_LT_LT] = ACTIONS(2463), + [anon_sym_GT_GT] = ACTIONS(2463), + [anon_sym_GT_GT_GT] = ACTIONS(2463), + [anon_sym_AMP_CARET] = ACTIONS(2463), + [anon_sym_AMP_AMP] = ACTIONS(2463), + [anon_sym_PIPE_PIPE] = ACTIONS(2463), + [anon_sym_or] = ACTIONS(2463), + [sym_none] = ACTIONS(2463), + [sym_true] = ACTIONS(2463), + [sym_false] = ACTIONS(2463), + [sym_nil] = ACTIONS(2463), + [anon_sym_QMARK_DOT] = ACTIONS(2463), + [anon_sym_POUND_LBRACK] = ACTIONS(2463), + [anon_sym_if] = ACTIONS(2463), + [anon_sym_DOLLARif] = ACTIONS(2463), + [anon_sym_is] = ACTIONS(2463), + [anon_sym_BANGis] = ACTIONS(2463), + [anon_sym_in] = ACTIONS(2463), + [anon_sym_BANGin] = ACTIONS(2463), + [anon_sym_match] = ACTIONS(2463), + [anon_sym_select] = ACTIONS(2463), + [anon_sym_STAR_EQ] = ACTIONS(2463), + [anon_sym_SLASH_EQ] = ACTIONS(2463), + [anon_sym_PERCENT_EQ] = ACTIONS(2463), + [anon_sym_LT_LT_EQ] = ACTIONS(2463), + [anon_sym_GT_GT_EQ] = ACTIONS(2463), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(2463), + [anon_sym_AMP_EQ] = ACTIONS(2463), + [anon_sym_AMP_CARET_EQ] = ACTIONS(2463), + [anon_sym_PLUS_EQ] = ACTIONS(2463), + [anon_sym_DASH_EQ] = ACTIONS(2463), + [anon_sym_PIPE_EQ] = ACTIONS(2463), + [anon_sym_CARET_EQ] = ACTIONS(2463), + [anon_sym_COLON_EQ] = ACTIONS(2463), + [anon_sym_lock] = ACTIONS(2463), + [anon_sym_rlock] = ACTIONS(2463), + [anon_sym_unsafe] = ACTIONS(2463), + [anon_sym_sql] = ACTIONS(2463), + [sym_int_literal] = ACTIONS(2463), + [sym_float_literal] = ACTIONS(2463), + [sym_rune_literal] = ACTIONS(2463), + [sym_pseudo_compile_time_identifier] = ACTIONS(2463), + [anon_sym_shared] = ACTIONS(2463), + [anon_sym_map_LBRACK] = ACTIONS(2463), + [anon_sym_chan] = ACTIONS(2463), + [anon_sym_thread] = ACTIONS(2463), + [anon_sym_atomic] = ACTIONS(2463), + [anon_sym_assert] = ACTIONS(2463), + [anon_sym_defer] = ACTIONS(2463), + [anon_sym_goto] = ACTIONS(2463), + [anon_sym_break] = ACTIONS(2463), + [anon_sym_continue] = ACTIONS(2463), + [anon_sym_return] = ACTIONS(2463), + [anon_sym_DOLLARfor] = ACTIONS(2463), + [anon_sym_for] = ACTIONS(2463), + [anon_sym_POUND] = ACTIONS(2463), + [anon_sym_asm] = ACTIONS(2463), + [anon_sym_AT_LBRACK] = ACTIONS(2463), + [sym___double_quote] = ACTIONS(2463), + [sym___single_quote] = ACTIONS(2463), + [sym___c_double_quote] = ACTIONS(2463), + [sym___c_single_quote] = ACTIONS(2463), + [sym___r_double_quote] = ACTIONS(2463), + [sym___r_single_quote] = ACTIONS(2463), }, - [387] = { - [sym_line_comment] = STATE(387), - [sym_block_comment] = STATE(387), - [sym__expression] = STATE(2609), - [sym__expression_without_blocks] = STATE(2300), - [sym__expression_with_blocks] = STATE(2300), - [sym_inc_expression] = STATE(2307), - [sym_dec_expression] = STATE(2307), - [sym_or_block_expression] = STATE(2307), - [sym_option_propagation_expression] = STATE(2307), - [sym_result_propagation_expression] = STATE(2307), - [sym_anon_struct_value_expression] = STATE(2380), - [sym_go_expression] = STATE(2307), - [sym_spawn_expression] = STATE(2307), - [sym_parenthesized_expression] = STATE(2307), - [sym_call_expression] = STATE(2307), - [sym_type_initializer] = STATE(2380), - [sym_function_literal] = STATE(2307), - [sym_reference_expression] = STATE(2311), - [sym_type_reference_expression] = STATE(3541), - [sym_unary_expression] = STATE(2307), - [sym_receive_expression] = STATE(2307), - [sym_binary_expression] = STATE(2307), - [sym_as_type_cast_expression] = STATE(2307), - [sym__max_group] = STATE(2307), - [sym_literal] = STATE(2292), - [sym_map_init_expression] = STATE(2380), - [sym_array_creation] = STATE(2307), - [sym_fixed_array_creation] = STATE(2307), - [sym_selector_expression] = STATE(2307), - [sym_index_expression] = STATE(2307), - [sym_slice_expression] = STATE(2307), - [sym_if_expression] = STATE(2380), - [sym_compile_time_if_expression] = STATE(2380), - [sym_is_expression] = STATE(2307), - [sym_in_expression] = STATE(2307), - [sym_enum_fetch] = STATE(2307), - [sym_match_expression] = STATE(2380), - [sym_select_expression] = STATE(2380), - [sym_lock_expression] = STATE(2380), - [sym_unsafe_expression] = STATE(2380), - [sym_sql_expression] = STATE(2380), - [sym_c_string_literal] = STATE(2308), - [sym_raw_string_literal] = STATE(2308), - [sym_interpreted_string_literal] = STATE(2308), - [sym_mutability_modifiers] = STATE(939), - [sym_plain_type] = STATE(4297), - [sym__plain_type_without_special] = STATE(2302), - [sym_anon_struct_type] = STATE(2303), - [sym_multi_return_type] = STATE(2302), - [sym_result_type] = STATE(2302), - [sym_option_type] = STATE(2302), - [sym_qualified_type] = STATE(3541), - [sym_fixed_array_type] = STATE(2303), - [sym_array_type] = STATE(2303), - [sym_pointer_type] = STATE(2303), - [sym_wrong_pointer_type] = STATE(2303), - [sym_map_type] = STATE(2303), - [sym_channel_type] = STATE(2303), - [sym_shared_type] = STATE(2303), - [sym_thread_type] = STATE(2303), - [sym_atomic_type] = STATE(2303), - [sym_generic_type] = STATE(2303), - [sym_function_type] = STATE(2303), - [sym_range] = STATE(4598), - [sym_identifier] = ACTIONS(1426), + [381] = { + [sym_line_comment] = STATE(381), + [sym_block_comment] = STATE(381), + [ts_builtin_sym_end] = ACTIONS(2465), + [sym_identifier] = ACTIONS(2467), + [anon_sym_LF] = ACTIONS(2467), + [anon_sym_CR] = ACTIONS(2467), + [anon_sym_CR_LF] = ACTIONS(2467), + [anon_sym_SLASH_SLASH] = ACTIONS(497), + [anon_sym_SLASH_STAR] = ACTIONS(499), + [anon_sym_DOT] = ACTIONS(2467), + [anon_sym_as] = ACTIONS(2467), + [anon_sym_LBRACE] = ACTIONS(2467), + [anon_sym_COMMA] = ACTIONS(2467), + [anon_sym_const] = ACTIONS(2467), + [anon_sym_LPAREN] = ACTIONS(2467), + [anon_sym_EQ] = ACTIONS(2467), + [anon_sym___global] = ACTIONS(2467), + [anon_sym_type] = ACTIONS(2467), + [anon_sym_PIPE] = ACTIONS(2467), + [anon_sym_fn] = ACTIONS(2467), + [anon_sym_PLUS] = ACTIONS(2467), + [anon_sym_DASH] = ACTIONS(2467), + [anon_sym_STAR] = ACTIONS(2467), + [anon_sym_SLASH] = ACTIONS(2467), + [anon_sym_PERCENT] = ACTIONS(2467), + [anon_sym_LT] = ACTIONS(2467), + [anon_sym_GT] = ACTIONS(2467), + [anon_sym_EQ_EQ] = ACTIONS(2467), + [anon_sym_BANG_EQ] = ACTIONS(2467), + [anon_sym_LT_EQ] = ACTIONS(2467), + [anon_sym_GT_EQ] = ACTIONS(2467), + [anon_sym_LBRACK] = ACTIONS(2465), + [anon_sym_struct] = ACTIONS(2467), + [anon_sym_union] = ACTIONS(2467), + [anon_sym_pub] = ACTIONS(2467), + [anon_sym_mut] = ACTIONS(2467), + [anon_sym_enum] = ACTIONS(2467), + [anon_sym_interface] = ACTIONS(2467), + [anon_sym_PLUS_PLUS] = ACTIONS(2467), + [anon_sym_DASH_DASH] = ACTIONS(2467), + [anon_sym_QMARK] = ACTIONS(2467), + [anon_sym_BANG] = ACTIONS(2467), + [anon_sym_go] = ACTIONS(2467), + [anon_sym_spawn] = ACTIONS(2467), + [anon_sym_json_DOTdecode] = ACTIONS(2467), + [anon_sym_LBRACK2] = ACTIONS(2467), + [anon_sym_TILDE] = ACTIONS(2467), + [anon_sym_CARET] = ACTIONS(2467), + [anon_sym_AMP] = ACTIONS(2467), + [anon_sym_LT_DASH] = ACTIONS(2467), + [anon_sym_LT_LT] = ACTIONS(2467), + [anon_sym_GT_GT] = ACTIONS(2467), + [anon_sym_GT_GT_GT] = ACTIONS(2467), + [anon_sym_AMP_CARET] = ACTIONS(2467), + [anon_sym_AMP_AMP] = ACTIONS(2467), + [anon_sym_PIPE_PIPE] = ACTIONS(2467), + [anon_sym_or] = ACTIONS(2467), + [sym_none] = ACTIONS(2467), + [sym_true] = ACTIONS(2467), + [sym_false] = ACTIONS(2467), + [sym_nil] = ACTIONS(2467), + [anon_sym_QMARK_DOT] = ACTIONS(2467), + [anon_sym_POUND_LBRACK] = ACTIONS(2467), + [anon_sym_if] = ACTIONS(2467), + [anon_sym_DOLLARif] = ACTIONS(2467), + [anon_sym_is] = ACTIONS(2467), + [anon_sym_BANGis] = ACTIONS(2467), + [anon_sym_in] = ACTIONS(2467), + [anon_sym_BANGin] = ACTIONS(2467), + [anon_sym_match] = ACTIONS(2467), + [anon_sym_select] = ACTIONS(2467), + [anon_sym_STAR_EQ] = ACTIONS(2467), + [anon_sym_SLASH_EQ] = ACTIONS(2467), + [anon_sym_PERCENT_EQ] = ACTIONS(2467), + [anon_sym_LT_LT_EQ] = ACTIONS(2467), + [anon_sym_GT_GT_EQ] = ACTIONS(2467), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(2467), + [anon_sym_AMP_EQ] = ACTIONS(2467), + [anon_sym_AMP_CARET_EQ] = ACTIONS(2467), + [anon_sym_PLUS_EQ] = ACTIONS(2467), + [anon_sym_DASH_EQ] = ACTIONS(2467), + [anon_sym_PIPE_EQ] = ACTIONS(2467), + [anon_sym_CARET_EQ] = ACTIONS(2467), + [anon_sym_COLON_EQ] = ACTIONS(2467), + [anon_sym_lock] = ACTIONS(2467), + [anon_sym_rlock] = ACTIONS(2467), + [anon_sym_unsafe] = ACTIONS(2467), + [anon_sym_sql] = ACTIONS(2467), + [sym_int_literal] = ACTIONS(2467), + [sym_float_literal] = ACTIONS(2467), + [sym_rune_literal] = ACTIONS(2467), + [sym_pseudo_compile_time_identifier] = ACTIONS(2467), + [anon_sym_shared] = ACTIONS(2467), + [anon_sym_map_LBRACK] = ACTIONS(2467), + [anon_sym_chan] = ACTIONS(2467), + [anon_sym_thread] = ACTIONS(2467), + [anon_sym_atomic] = ACTIONS(2467), + [anon_sym_assert] = ACTIONS(2467), + [anon_sym_defer] = ACTIONS(2467), + [anon_sym_goto] = ACTIONS(2467), + [anon_sym_break] = ACTIONS(2467), + [anon_sym_continue] = ACTIONS(2467), + [anon_sym_return] = ACTIONS(2467), + [anon_sym_DOLLARfor] = ACTIONS(2467), + [anon_sym_for] = ACTIONS(2467), + [anon_sym_POUND] = ACTIONS(2467), + [anon_sym_asm] = ACTIONS(2467), + [anon_sym_AT_LBRACK] = ACTIONS(2467), + [sym___double_quote] = ACTIONS(2467), + [sym___single_quote] = ACTIONS(2467), + [sym___c_double_quote] = ACTIONS(2467), + [sym___c_single_quote] = ACTIONS(2467), + [sym___r_double_quote] = ACTIONS(2467), + [sym___r_single_quote] = ACTIONS(2467), + }, + [382] = { + [sym_line_comment] = STATE(382), + [sym_block_comment] = STATE(382), + [ts_builtin_sym_end] = ACTIONS(2469), + [sym_identifier] = ACTIONS(2471), + [anon_sym_LF] = ACTIONS(2471), + [anon_sym_CR] = ACTIONS(2471), + [anon_sym_CR_LF] = ACTIONS(2471), + [anon_sym_SLASH_SLASH] = ACTIONS(497), + [anon_sym_SLASH_STAR] = ACTIONS(499), + [anon_sym_DOT] = ACTIONS(2471), + [anon_sym_as] = ACTIONS(2471), + [anon_sym_LBRACE] = ACTIONS(2471), + [anon_sym_COMMA] = ACTIONS(2471), + [anon_sym_const] = ACTIONS(2471), + [anon_sym_LPAREN] = ACTIONS(2471), + [anon_sym_EQ] = ACTIONS(2471), + [anon_sym___global] = ACTIONS(2471), + [anon_sym_type] = ACTIONS(2471), + [anon_sym_PIPE] = ACTIONS(2471), + [anon_sym_fn] = ACTIONS(2471), + [anon_sym_PLUS] = ACTIONS(2471), + [anon_sym_DASH] = ACTIONS(2471), + [anon_sym_STAR] = ACTIONS(2471), + [anon_sym_SLASH] = ACTIONS(2471), + [anon_sym_PERCENT] = ACTIONS(2471), + [anon_sym_LT] = ACTIONS(2471), + [anon_sym_GT] = ACTIONS(2471), + [anon_sym_EQ_EQ] = ACTIONS(2471), + [anon_sym_BANG_EQ] = ACTIONS(2471), + [anon_sym_LT_EQ] = ACTIONS(2471), + [anon_sym_GT_EQ] = ACTIONS(2471), + [anon_sym_LBRACK] = ACTIONS(2469), + [anon_sym_struct] = ACTIONS(2471), + [anon_sym_union] = ACTIONS(2471), + [anon_sym_pub] = ACTIONS(2471), + [anon_sym_mut] = ACTIONS(2471), + [anon_sym_enum] = ACTIONS(2471), + [anon_sym_interface] = ACTIONS(2471), + [anon_sym_PLUS_PLUS] = ACTIONS(2471), + [anon_sym_DASH_DASH] = ACTIONS(2471), + [anon_sym_QMARK] = ACTIONS(2471), + [anon_sym_BANG] = ACTIONS(2471), + [anon_sym_go] = ACTIONS(2471), + [anon_sym_spawn] = ACTIONS(2471), + [anon_sym_json_DOTdecode] = ACTIONS(2471), + [anon_sym_LBRACK2] = ACTIONS(2471), + [anon_sym_TILDE] = ACTIONS(2471), + [anon_sym_CARET] = ACTIONS(2471), + [anon_sym_AMP] = ACTIONS(2471), + [anon_sym_LT_DASH] = ACTIONS(2471), + [anon_sym_LT_LT] = ACTIONS(2471), + [anon_sym_GT_GT] = ACTIONS(2471), + [anon_sym_GT_GT_GT] = ACTIONS(2471), + [anon_sym_AMP_CARET] = ACTIONS(2471), + [anon_sym_AMP_AMP] = ACTIONS(2471), + [anon_sym_PIPE_PIPE] = ACTIONS(2471), + [anon_sym_or] = ACTIONS(2471), + [sym_none] = ACTIONS(2471), + [sym_true] = ACTIONS(2471), + [sym_false] = ACTIONS(2471), + [sym_nil] = ACTIONS(2471), + [anon_sym_QMARK_DOT] = ACTIONS(2471), + [anon_sym_POUND_LBRACK] = ACTIONS(2471), + [anon_sym_if] = ACTIONS(2471), + [anon_sym_DOLLARif] = ACTIONS(2471), + [anon_sym_is] = ACTIONS(2471), + [anon_sym_BANGis] = ACTIONS(2471), + [anon_sym_in] = ACTIONS(2471), + [anon_sym_BANGin] = ACTIONS(2471), + [anon_sym_match] = ACTIONS(2471), + [anon_sym_select] = ACTIONS(2471), + [anon_sym_STAR_EQ] = ACTIONS(2471), + [anon_sym_SLASH_EQ] = ACTIONS(2471), + [anon_sym_PERCENT_EQ] = ACTIONS(2471), + [anon_sym_LT_LT_EQ] = ACTIONS(2471), + [anon_sym_GT_GT_EQ] = ACTIONS(2471), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(2471), + [anon_sym_AMP_EQ] = ACTIONS(2471), + [anon_sym_AMP_CARET_EQ] = ACTIONS(2471), + [anon_sym_PLUS_EQ] = ACTIONS(2471), + [anon_sym_DASH_EQ] = ACTIONS(2471), + [anon_sym_PIPE_EQ] = ACTIONS(2471), + [anon_sym_CARET_EQ] = ACTIONS(2471), + [anon_sym_COLON_EQ] = ACTIONS(2471), + [anon_sym_lock] = ACTIONS(2471), + [anon_sym_rlock] = ACTIONS(2471), + [anon_sym_unsafe] = ACTIONS(2471), + [anon_sym_sql] = ACTIONS(2471), + [sym_int_literal] = ACTIONS(2471), + [sym_float_literal] = ACTIONS(2471), + [sym_rune_literal] = ACTIONS(2471), + [sym_pseudo_compile_time_identifier] = ACTIONS(2471), + [anon_sym_shared] = ACTIONS(2471), + [anon_sym_map_LBRACK] = ACTIONS(2471), + [anon_sym_chan] = ACTIONS(2471), + [anon_sym_thread] = ACTIONS(2471), + [anon_sym_atomic] = ACTIONS(2471), + [anon_sym_assert] = ACTIONS(2471), + [anon_sym_defer] = ACTIONS(2471), + [anon_sym_goto] = ACTIONS(2471), + [anon_sym_break] = ACTIONS(2471), + [anon_sym_continue] = ACTIONS(2471), + [anon_sym_return] = ACTIONS(2471), + [anon_sym_DOLLARfor] = ACTIONS(2471), + [anon_sym_for] = ACTIONS(2471), + [anon_sym_POUND] = ACTIONS(2471), + [anon_sym_asm] = ACTIONS(2471), + [anon_sym_AT_LBRACK] = ACTIONS(2471), + [sym___double_quote] = ACTIONS(2471), + [sym___single_quote] = ACTIONS(2471), + [sym___c_double_quote] = ACTIONS(2471), + [sym___c_single_quote] = ACTIONS(2471), + [sym___r_double_quote] = ACTIONS(2471), + [sym___r_single_quote] = ACTIONS(2471), + }, + [383] = { + [sym_line_comment] = STATE(383), + [sym_block_comment] = STATE(383), + [ts_builtin_sym_end] = ACTIONS(2473), + [sym_identifier] = ACTIONS(2475), + [anon_sym_LF] = ACTIONS(2475), + [anon_sym_CR] = ACTIONS(2475), + [anon_sym_CR_LF] = ACTIONS(2475), + [anon_sym_SLASH_SLASH] = ACTIONS(497), + [anon_sym_SLASH_STAR] = ACTIONS(499), + [anon_sym_DOT] = ACTIONS(1891), + [anon_sym_as] = ACTIONS(2475), + [anon_sym_LBRACE] = ACTIONS(2475), + [anon_sym_COMMA] = ACTIONS(2475), + [anon_sym_const] = ACTIONS(2475), + [anon_sym_LPAREN] = ACTIONS(2475), + [anon_sym_EQ] = ACTIONS(2475), + [anon_sym___global] = ACTIONS(2475), + [anon_sym_type] = ACTIONS(2475), + [anon_sym_PIPE] = ACTIONS(2475), + [anon_sym_fn] = ACTIONS(2475), + [anon_sym_PLUS] = ACTIONS(2475), + [anon_sym_DASH] = ACTIONS(2475), + [anon_sym_STAR] = ACTIONS(2475), + [anon_sym_SLASH] = ACTIONS(2475), + [anon_sym_PERCENT] = ACTIONS(2475), + [anon_sym_LT] = ACTIONS(2475), + [anon_sym_GT] = ACTIONS(2475), + [anon_sym_EQ_EQ] = ACTIONS(2475), + [anon_sym_BANG_EQ] = ACTIONS(2475), + [anon_sym_LT_EQ] = ACTIONS(2475), + [anon_sym_GT_EQ] = ACTIONS(2475), + [anon_sym_LBRACK] = ACTIONS(2473), + [anon_sym_struct] = ACTIONS(2475), + [anon_sym_union] = ACTIONS(2475), + [anon_sym_pub] = ACTIONS(2475), + [anon_sym_mut] = ACTIONS(2475), + [anon_sym_enum] = ACTIONS(2475), + [anon_sym_interface] = ACTIONS(2475), + [anon_sym_PLUS_PLUS] = ACTIONS(2475), + [anon_sym_DASH_DASH] = ACTIONS(2475), + [anon_sym_QMARK] = ACTIONS(2475), + [anon_sym_BANG] = ACTIONS(2475), + [anon_sym_go] = ACTIONS(2475), + [anon_sym_spawn] = ACTIONS(2475), + [anon_sym_json_DOTdecode] = ACTIONS(2475), + [anon_sym_LBRACK2] = ACTIONS(2475), + [anon_sym_TILDE] = ACTIONS(2475), + [anon_sym_CARET] = ACTIONS(2475), + [anon_sym_AMP] = ACTIONS(2475), + [anon_sym_LT_DASH] = ACTIONS(2475), + [anon_sym_LT_LT] = ACTIONS(2475), + [anon_sym_GT_GT] = ACTIONS(2475), + [anon_sym_GT_GT_GT] = ACTIONS(2475), + [anon_sym_AMP_CARET] = ACTIONS(2475), + [anon_sym_AMP_AMP] = ACTIONS(2475), + [anon_sym_PIPE_PIPE] = ACTIONS(2475), + [anon_sym_or] = ACTIONS(2475), + [sym_none] = ACTIONS(2475), + [sym_true] = ACTIONS(2475), + [sym_false] = ACTIONS(2475), + [sym_nil] = ACTIONS(2475), + [anon_sym_QMARK_DOT] = ACTIONS(2475), + [anon_sym_POUND_LBRACK] = ACTIONS(2475), + [anon_sym_if] = ACTIONS(2475), + [anon_sym_DOLLARif] = ACTIONS(2475), + [anon_sym_is] = ACTIONS(2475), + [anon_sym_BANGis] = ACTIONS(2475), + [anon_sym_in] = ACTIONS(2475), + [anon_sym_BANGin] = ACTIONS(2475), + [anon_sym_match] = ACTIONS(2475), + [anon_sym_select] = ACTIONS(2475), + [anon_sym_STAR_EQ] = ACTIONS(2475), + [anon_sym_SLASH_EQ] = ACTIONS(2475), + [anon_sym_PERCENT_EQ] = ACTIONS(2475), + [anon_sym_LT_LT_EQ] = ACTIONS(2475), + [anon_sym_GT_GT_EQ] = ACTIONS(2475), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(2475), + [anon_sym_AMP_EQ] = ACTIONS(2475), + [anon_sym_AMP_CARET_EQ] = ACTIONS(2475), + [anon_sym_PLUS_EQ] = ACTIONS(2475), + [anon_sym_DASH_EQ] = ACTIONS(2475), + [anon_sym_PIPE_EQ] = ACTIONS(2475), + [anon_sym_CARET_EQ] = ACTIONS(2475), + [anon_sym_COLON_EQ] = ACTIONS(2475), + [anon_sym_lock] = ACTIONS(2475), + [anon_sym_rlock] = ACTIONS(2475), + [anon_sym_unsafe] = ACTIONS(2475), + [anon_sym_sql] = ACTIONS(2475), + [sym_int_literal] = ACTIONS(2475), + [sym_float_literal] = ACTIONS(2475), + [sym_rune_literal] = ACTIONS(2475), + [sym_pseudo_compile_time_identifier] = ACTIONS(2475), + [anon_sym_shared] = ACTIONS(2475), + [anon_sym_map_LBRACK] = ACTIONS(2475), + [anon_sym_chan] = ACTIONS(2475), + [anon_sym_thread] = ACTIONS(2475), + [anon_sym_atomic] = ACTIONS(2475), + [anon_sym_assert] = ACTIONS(2475), + [anon_sym_defer] = ACTIONS(2475), + [anon_sym_goto] = ACTIONS(2475), + [anon_sym_break] = ACTIONS(2475), + [anon_sym_continue] = ACTIONS(2475), + [anon_sym_return] = ACTIONS(2475), + [anon_sym_DOLLARfor] = ACTIONS(2475), + [anon_sym_for] = ACTIONS(2475), + [anon_sym_POUND] = ACTIONS(2475), + [anon_sym_asm] = ACTIONS(2475), + [anon_sym_AT_LBRACK] = ACTIONS(2475), + [sym___double_quote] = ACTIONS(2475), + [sym___single_quote] = ACTIONS(2475), + [sym___c_double_quote] = ACTIONS(2475), + [sym___c_single_quote] = ACTIONS(2475), + [sym___r_double_quote] = ACTIONS(2475), + [sym___r_single_quote] = ACTIONS(2475), + }, + [384] = { + [sym_line_comment] = STATE(384), + [sym_block_comment] = STATE(384), + [sym__expression] = STATE(2459), + [sym__expression_without_blocks] = STATE(2347), + [sym__expression_with_blocks] = STATE(2347), + [sym_inc_expression] = STATE(2379), + [sym_dec_expression] = STATE(2379), + [sym_or_block_expression] = STATE(2379), + [sym_option_propagation_expression] = STATE(2379), + [sym_result_propagation_expression] = STATE(2379), + [sym_anon_struct_value_expression] = STATE(2378), + [sym_go_expression] = STATE(2379), + [sym_spawn_expression] = STATE(2379), + [sym_parenthesized_expression] = STATE(2379), + [sym_call_expression] = STATE(2379), + [sym_type_initializer] = STATE(2378), + [sym_function_literal] = STATE(2379), + [sym_reference_expression] = STATE(2377), + [sym_type_reference_expression] = STATE(3460), + [sym_unary_expression] = STATE(2379), + [sym_receive_expression] = STATE(2379), + [sym_binary_expression] = STATE(2379), + [sym_as_type_cast_expression] = STATE(2379), + [sym__max_group] = STATE(2379), + [sym_literal] = STATE(2392), + [sym_map_init_expression] = STATE(2378), + [sym_array_creation] = STATE(2379), + [sym_fixed_array_creation] = STATE(2379), + [sym_selector_expression] = STATE(2379), + [sym_index_expression] = STATE(2379), + [sym_slice_expression] = STATE(2379), + [sym_if_expression] = STATE(2378), + [sym_compile_time_if_expression] = STATE(2378), + [sym_is_expression] = STATE(2379), + [sym_in_expression] = STATE(2379), + [sym_enum_fetch] = STATE(2379), + [sym_match_expression] = STATE(2378), + [sym_select_expression] = STATE(2378), + [sym_lock_expression] = STATE(2378), + [sym_unsafe_expression] = STATE(2378), + [sym_sql_expression] = STATE(2378), + [sym_c_string_literal] = STATE(2401), + [sym_raw_string_literal] = STATE(2401), + [sym_interpreted_string_literal] = STATE(2401), + [sym_mutability_modifiers] = STATE(655), + [sym_mutable_expression] = STATE(3778), + [sym_expression_list] = STATE(4004), + [sym_plain_type] = STATE(4160), + [sym__plain_type_without_special] = STATE(2360), + [sym_anon_struct_type] = STATE(2362), + [sym_multi_return_type] = STATE(2360), + [sym_result_type] = STATE(2360), + [sym_option_type] = STATE(2360), + [sym_qualified_type] = STATE(3460), + [sym_fixed_array_type] = STATE(2362), + [sym_array_type] = STATE(2362), + [sym_pointer_type] = STATE(2362), + [sym_wrong_pointer_type] = STATE(2362), + [sym_map_type] = STATE(2362), + [sym_channel_type] = STATE(2362), + [sym_shared_type] = STATE(2362), + [sym_thread_type] = STATE(2362), + [sym_atomic_type] = STATE(2362), + [sym_generic_type] = STATE(2362), + [sym_function_type] = STATE(2362), + [sym_identifier] = ACTIONS(2477), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1428), - [anon_sym_LBRACE] = ACTIONS(1430), - [anon_sym_LPAREN] = ACTIONS(1432), - [anon_sym_fn] = ACTIONS(1434), - [anon_sym_PLUS] = ACTIONS(1436), - [anon_sym_DASH] = ACTIONS(1436), - [anon_sym_STAR] = ACTIONS(1438), - [anon_sym_struct] = ACTIONS(1440), + [anon_sym_DOT] = ACTIONS(1430), + [anon_sym_LBRACE] = ACTIONS(1432), + [anon_sym_LPAREN] = ACTIONS(1434), + [anon_sym_fn] = ACTIONS(1436), + [anon_sym_PLUS] = ACTIONS(2479), + [anon_sym_DASH] = ACTIONS(2479), + [anon_sym_STAR] = ACTIONS(2481), + [anon_sym_struct] = ACTIONS(1442), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(1442), - [anon_sym_go] = ACTIONS(1444), - [anon_sym_spawn] = ACTIONS(1446), - [anon_sym_json_DOTdecode] = ACTIONS(1448), - [anon_sym_LBRACK2] = ACTIONS(1450), - [anon_sym_TILDE] = ACTIONS(1436), - [anon_sym_CARET] = ACTIONS(1436), - [anon_sym_AMP] = ACTIONS(1452), - [anon_sym_LT_DASH] = ACTIONS(1454), - [sym_none] = ACTIONS(1456), - [sym_true] = ACTIONS(1456), - [sym_false] = ACTIONS(1456), - [sym_nil] = ACTIONS(1456), - [anon_sym_if] = ACTIONS(1827), - [anon_sym_DOLLARif] = ACTIONS(1460), - [anon_sym_match] = ACTIONS(1462), - [anon_sym_select] = ACTIONS(1464), - [anon_sym_lock] = ACTIONS(1466), - [anon_sym_rlock] = ACTIONS(1466), - [anon_sym_unsafe] = ACTIONS(1833), - [anon_sym_sql] = ACTIONS(1470), - [sym_int_literal] = ACTIONS(1456), - [sym_float_literal] = ACTIONS(1472), - [sym_rune_literal] = ACTIONS(1472), - [sym_pseudo_compile_time_identifier] = ACTIONS(1474), + [anon_sym_BANG] = ACTIONS(2483), + [anon_sym_go] = ACTIONS(2485), + [anon_sym_spawn] = ACTIONS(2487), + [anon_sym_json_DOTdecode] = ACTIONS(1450), + [anon_sym_LBRACK2] = ACTIONS(2489), + [anon_sym_TILDE] = ACTIONS(2479), + [anon_sym_CARET] = ACTIONS(2479), + [anon_sym_AMP] = ACTIONS(2491), + [anon_sym_LT_DASH] = ACTIONS(2493), + [sym_none] = ACTIONS(1458), + [sym_true] = ACTIONS(1458), + [sym_false] = ACTIONS(1458), + [sym_nil] = ACTIONS(1458), + [anon_sym_if] = ACTIONS(1833), + [anon_sym_DOLLARif] = ACTIONS(1462), + [anon_sym_match] = ACTIONS(1464), + [anon_sym_select] = ACTIONS(2495), + [anon_sym_lock] = ACTIONS(2497), + [anon_sym_rlock] = ACTIONS(2497), + [anon_sym_unsafe] = ACTIONS(1839), + [anon_sym_sql] = ACTIONS(1472), + [sym_int_literal] = ACTIONS(1458), + [sym_float_literal] = ACTIONS(1474), + [sym_rune_literal] = ACTIONS(1474), + [sym_pseudo_compile_time_identifier] = ACTIONS(1476), [anon_sym_shared] = ACTIONS(83), [anon_sym_map_LBRACK] = ACTIONS(85), [anon_sym_chan] = ACTIONS(87), [anon_sym_thread] = ACTIONS(89), [anon_sym_atomic] = ACTIONS(91), - [anon_sym_DOT_DOT] = ACTIONS(1476), - [sym___double_quote] = ACTIONS(1478), - [sym___single_quote] = ACTIONS(1480), - [sym___c_double_quote] = ACTIONS(1482), - [sym___c_single_quote] = ACTIONS(1484), - [sym___r_double_quote] = ACTIONS(1486), - [sym___r_single_quote] = ACTIONS(1488), + [sym___double_quote] = ACTIONS(1480), + [sym___single_quote] = ACTIONS(1482), + [sym___c_double_quote] = ACTIONS(1484), + [sym___c_single_quote] = ACTIONS(1486), + [sym___r_double_quote] = ACTIONS(1488), + [sym___r_single_quote] = ACTIONS(1490), + }, + [385] = { + [sym_line_comment] = STATE(385), + [sym_block_comment] = STATE(385), + [ts_builtin_sym_end] = ACTIONS(2499), + [sym_identifier] = ACTIONS(2501), + [anon_sym_LF] = ACTIONS(2501), + [anon_sym_CR] = ACTIONS(2501), + [anon_sym_CR_LF] = ACTIONS(2501), + [anon_sym_SLASH_SLASH] = ACTIONS(497), + [anon_sym_SLASH_STAR] = ACTIONS(499), + [anon_sym_DOT] = ACTIONS(2501), + [anon_sym_as] = ACTIONS(2501), + [anon_sym_LBRACE] = ACTIONS(2501), + [anon_sym_COMMA] = ACTIONS(2501), + [anon_sym_const] = ACTIONS(2501), + [anon_sym_LPAREN] = ACTIONS(2501), + [anon_sym_EQ] = ACTIONS(2501), + [anon_sym___global] = ACTIONS(2501), + [anon_sym_type] = ACTIONS(2501), + [anon_sym_PIPE] = ACTIONS(2501), + [anon_sym_fn] = ACTIONS(2501), + [anon_sym_PLUS] = ACTIONS(2501), + [anon_sym_DASH] = ACTIONS(2501), + [anon_sym_STAR] = ACTIONS(2501), + [anon_sym_SLASH] = ACTIONS(2501), + [anon_sym_PERCENT] = ACTIONS(2501), + [anon_sym_LT] = ACTIONS(2501), + [anon_sym_GT] = ACTIONS(2501), + [anon_sym_EQ_EQ] = ACTIONS(2501), + [anon_sym_BANG_EQ] = ACTIONS(2501), + [anon_sym_LT_EQ] = ACTIONS(2501), + [anon_sym_GT_EQ] = ACTIONS(2501), + [anon_sym_LBRACK] = ACTIONS(2499), + [anon_sym_struct] = ACTIONS(2501), + [anon_sym_union] = ACTIONS(2501), + [anon_sym_pub] = ACTIONS(2501), + [anon_sym_mut] = ACTIONS(2501), + [anon_sym_enum] = ACTIONS(2501), + [anon_sym_interface] = ACTIONS(2501), + [anon_sym_PLUS_PLUS] = ACTIONS(2501), + [anon_sym_DASH_DASH] = ACTIONS(2501), + [anon_sym_QMARK] = ACTIONS(2501), + [anon_sym_BANG] = ACTIONS(2501), + [anon_sym_go] = ACTIONS(2501), + [anon_sym_spawn] = ACTIONS(2501), + [anon_sym_json_DOTdecode] = ACTIONS(2501), + [anon_sym_LBRACK2] = ACTIONS(2501), + [anon_sym_TILDE] = ACTIONS(2501), + [anon_sym_CARET] = ACTIONS(2501), + [anon_sym_AMP] = ACTIONS(2501), + [anon_sym_LT_DASH] = ACTIONS(2501), + [anon_sym_LT_LT] = ACTIONS(2501), + [anon_sym_GT_GT] = ACTIONS(2501), + [anon_sym_GT_GT_GT] = ACTIONS(2501), + [anon_sym_AMP_CARET] = ACTIONS(2501), + [anon_sym_AMP_AMP] = ACTIONS(2501), + [anon_sym_PIPE_PIPE] = ACTIONS(2501), + [anon_sym_or] = ACTIONS(2501), + [sym_none] = ACTIONS(2501), + [sym_true] = ACTIONS(2501), + [sym_false] = ACTIONS(2501), + [sym_nil] = ACTIONS(2501), + [anon_sym_QMARK_DOT] = ACTIONS(2501), + [anon_sym_POUND_LBRACK] = ACTIONS(2501), + [anon_sym_if] = ACTIONS(2501), + [anon_sym_DOLLARif] = ACTIONS(2501), + [anon_sym_is] = ACTIONS(2501), + [anon_sym_BANGis] = ACTIONS(2501), + [anon_sym_in] = ACTIONS(2501), + [anon_sym_BANGin] = ACTIONS(2501), + [anon_sym_match] = ACTIONS(2501), + [anon_sym_select] = ACTIONS(2501), + [anon_sym_STAR_EQ] = ACTIONS(2501), + [anon_sym_SLASH_EQ] = ACTIONS(2501), + [anon_sym_PERCENT_EQ] = ACTIONS(2501), + [anon_sym_LT_LT_EQ] = ACTIONS(2501), + [anon_sym_GT_GT_EQ] = ACTIONS(2501), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(2501), + [anon_sym_AMP_EQ] = ACTIONS(2501), + [anon_sym_AMP_CARET_EQ] = ACTIONS(2501), + [anon_sym_PLUS_EQ] = ACTIONS(2501), + [anon_sym_DASH_EQ] = ACTIONS(2501), + [anon_sym_PIPE_EQ] = ACTIONS(2501), + [anon_sym_CARET_EQ] = ACTIONS(2501), + [anon_sym_COLON_EQ] = ACTIONS(2501), + [anon_sym_lock] = ACTIONS(2501), + [anon_sym_rlock] = ACTIONS(2501), + [anon_sym_unsafe] = ACTIONS(2501), + [anon_sym_sql] = ACTIONS(2501), + [sym_int_literal] = ACTIONS(2501), + [sym_float_literal] = ACTIONS(2501), + [sym_rune_literal] = ACTIONS(2501), + [sym_pseudo_compile_time_identifier] = ACTIONS(2501), + [anon_sym_shared] = ACTIONS(2501), + [anon_sym_map_LBRACK] = ACTIONS(2501), + [anon_sym_chan] = ACTIONS(2501), + [anon_sym_thread] = ACTIONS(2501), + [anon_sym_atomic] = ACTIONS(2501), + [anon_sym_assert] = ACTIONS(2501), + [anon_sym_defer] = ACTIONS(2501), + [anon_sym_goto] = ACTIONS(2501), + [anon_sym_break] = ACTIONS(2501), + [anon_sym_continue] = ACTIONS(2501), + [anon_sym_return] = ACTIONS(2501), + [anon_sym_DOLLARfor] = ACTIONS(2501), + [anon_sym_for] = ACTIONS(2501), + [anon_sym_POUND] = ACTIONS(2501), + [anon_sym_asm] = ACTIONS(2501), + [anon_sym_AT_LBRACK] = ACTIONS(2501), + [sym___double_quote] = ACTIONS(2501), + [sym___single_quote] = ACTIONS(2501), + [sym___c_double_quote] = ACTIONS(2501), + [sym___c_single_quote] = ACTIONS(2501), + [sym___r_double_quote] = ACTIONS(2501), + [sym___r_single_quote] = ACTIONS(2501), + }, + [386] = { + [sym_line_comment] = STATE(386), + [sym_block_comment] = STATE(386), + [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), + [anon_sym_SLASH_SLASH] = ACTIONS(497), + [anon_sym_SLASH_STAR] = ACTIONS(499), + [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_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), + }, + [387] = { + [sym_line_comment] = STATE(387), + [sym_block_comment] = STATE(387), + [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), + [anon_sym_SLASH_SLASH] = ACTIONS(497), + [anon_sym_SLASH_STAR] = ACTIONS(499), + [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_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), }, [388] = { [sym_line_comment] = STATE(388), [sym_block_comment] = STATE(388), - [ts_builtin_sym_end] = ACTIONS(2475), - [sym_identifier] = ACTIONS(2477), - [anon_sym_LF] = ACTIONS(2477), - [anon_sym_CR] = ACTIONS(2477), - [anon_sym_CR_LF] = ACTIONS(2477), + [ts_builtin_sym_end] = ACTIONS(1879), + [sym_identifier] = ACTIONS(1881), + [anon_sym_LF] = ACTIONS(1881), + [anon_sym_CR] = ACTIONS(1881), + [anon_sym_CR_LF] = ACTIONS(1881), [anon_sym_SLASH_SLASH] = ACTIONS(497), [anon_sym_SLASH_STAR] = ACTIONS(499), - [anon_sym_DOT] = ACTIONS(2477), - [anon_sym_as] = ACTIONS(2477), - [anon_sym_LBRACE] = ACTIONS(2477), - [anon_sym_COMMA] = ACTIONS(2477), - [anon_sym_const] = ACTIONS(2477), - [anon_sym_LPAREN] = ACTIONS(2477), - [anon_sym_EQ] = ACTIONS(2477), - [anon_sym___global] = ACTIONS(2477), - [anon_sym_type] = ACTIONS(2477), - [anon_sym_PIPE] = ACTIONS(2477), - [anon_sym_fn] = ACTIONS(2477), - [anon_sym_PLUS] = ACTIONS(2477), - [anon_sym_DASH] = ACTIONS(2477), - [anon_sym_STAR] = ACTIONS(2477), - [anon_sym_SLASH] = ACTIONS(2477), - [anon_sym_PERCENT] = ACTIONS(2477), - [anon_sym_LT] = ACTIONS(2477), - [anon_sym_GT] = ACTIONS(2477), - [anon_sym_EQ_EQ] = ACTIONS(2477), - [anon_sym_BANG_EQ] = ACTIONS(2477), - [anon_sym_LT_EQ] = ACTIONS(2477), - [anon_sym_GT_EQ] = ACTIONS(2477), - [anon_sym_LBRACK] = ACTIONS(2475), - [anon_sym_struct] = ACTIONS(2477), - [anon_sym_union] = ACTIONS(2477), - [anon_sym_pub] = ACTIONS(2477), - [anon_sym_mut] = ACTIONS(2477), - [anon_sym_enum] = ACTIONS(2477), - [anon_sym_interface] = ACTIONS(2477), - [anon_sym_PLUS_PLUS] = ACTIONS(2477), - [anon_sym_DASH_DASH] = ACTIONS(2477), - [anon_sym_QMARK] = ACTIONS(2477), - [anon_sym_BANG] = ACTIONS(2477), - [anon_sym_go] = ACTIONS(2477), - [anon_sym_spawn] = ACTIONS(2477), - [anon_sym_json_DOTdecode] = ACTIONS(2477), - [anon_sym_LBRACK2] = ACTIONS(2477), - [anon_sym_TILDE] = ACTIONS(2477), - [anon_sym_CARET] = ACTIONS(2477), - [anon_sym_AMP] = ACTIONS(2477), - [anon_sym_LT_DASH] = ACTIONS(2477), - [anon_sym_LT_LT] = ACTIONS(2477), - [anon_sym_GT_GT] = ACTIONS(2477), - [anon_sym_GT_GT_GT] = ACTIONS(2477), - [anon_sym_AMP_CARET] = ACTIONS(2477), - [anon_sym_AMP_AMP] = ACTIONS(2477), - [anon_sym_PIPE_PIPE] = ACTIONS(2477), - [anon_sym_or] = ACTIONS(2477), - [sym_none] = ACTIONS(2477), - [sym_true] = ACTIONS(2477), - [sym_false] = ACTIONS(2477), - [sym_nil] = ACTIONS(2477), - [anon_sym_QMARK_DOT] = ACTIONS(2477), - [anon_sym_POUND_LBRACK] = ACTIONS(2477), - [anon_sym_if] = ACTIONS(2477), - [anon_sym_DOLLARif] = ACTIONS(2477), - [anon_sym_is] = ACTIONS(2477), - [anon_sym_BANGis] = ACTIONS(2477), - [anon_sym_in] = ACTIONS(2477), - [anon_sym_BANGin] = ACTIONS(2477), - [anon_sym_match] = ACTIONS(2477), - [anon_sym_select] = ACTIONS(2477), - [anon_sym_STAR_EQ] = ACTIONS(2477), - [anon_sym_SLASH_EQ] = ACTIONS(2477), - [anon_sym_PERCENT_EQ] = ACTIONS(2477), - [anon_sym_LT_LT_EQ] = ACTIONS(2477), - [anon_sym_GT_GT_EQ] = ACTIONS(2477), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(2477), - [anon_sym_AMP_EQ] = ACTIONS(2477), - [anon_sym_AMP_CARET_EQ] = ACTIONS(2477), - [anon_sym_PLUS_EQ] = ACTIONS(2477), - [anon_sym_DASH_EQ] = ACTIONS(2477), - [anon_sym_PIPE_EQ] = ACTIONS(2477), - [anon_sym_CARET_EQ] = ACTIONS(2477), - [anon_sym_COLON_EQ] = ACTIONS(2477), - [anon_sym_lock] = ACTIONS(2477), - [anon_sym_rlock] = ACTIONS(2477), - [anon_sym_unsafe] = ACTIONS(2477), - [anon_sym_sql] = ACTIONS(2477), - [sym_int_literal] = ACTIONS(2477), - [sym_float_literal] = ACTIONS(2477), - [sym_rune_literal] = ACTIONS(2477), - [sym_pseudo_compile_time_identifier] = ACTIONS(2477), - [anon_sym_shared] = ACTIONS(2477), - [anon_sym_map_LBRACK] = ACTIONS(2477), - [anon_sym_chan] = ACTIONS(2477), - [anon_sym_thread] = ACTIONS(2477), - [anon_sym_atomic] = ACTIONS(2477), - [anon_sym_assert] = ACTIONS(2477), - [anon_sym_defer] = ACTIONS(2477), - [anon_sym_goto] = ACTIONS(2477), - [anon_sym_break] = ACTIONS(2477), - [anon_sym_continue] = ACTIONS(2477), - [anon_sym_return] = ACTIONS(2477), - [anon_sym_DOLLARfor] = ACTIONS(2477), - [anon_sym_for] = ACTIONS(2477), - [anon_sym_POUND] = ACTIONS(2477), - [anon_sym_asm] = ACTIONS(2477), - [anon_sym_AT_LBRACK] = ACTIONS(2477), - [sym___double_quote] = ACTIONS(2477), - [sym___single_quote] = ACTIONS(2477), - [sym___c_double_quote] = ACTIONS(2477), - [sym___c_single_quote] = ACTIONS(2477), - [sym___r_double_quote] = ACTIONS(2477), - [sym___r_single_quote] = ACTIONS(2477), + [anon_sym_DOT] = ACTIONS(1881), + [anon_sym_as] = ACTIONS(1881), + [anon_sym_LBRACE] = ACTIONS(1881), + [anon_sym_COMMA] = ACTIONS(1881), + [anon_sym_const] = ACTIONS(1881), + [anon_sym_LPAREN] = ACTIONS(1881), + [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(1879), + [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(1881), + [anon_sym_BANG] = ACTIONS(1881), + [anon_sym_go] = ACTIONS(1881), + [anon_sym_spawn] = ACTIONS(1881), + [anon_sym_json_DOTdecode] = ACTIONS(1881), + [anon_sym_LBRACK2] = ACTIONS(1881), + [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(1881), + [anon_sym_POUND_LBRACK] = ACTIONS(1881), + [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), }, [389] = { [sym_line_comment] = STATE(389), [sym_block_comment] = STATE(389), - [sym__expression] = STATE(2609), - [sym__expression_without_blocks] = STATE(2300), - [sym__expression_with_blocks] = STATE(2300), - [sym_inc_expression] = STATE(2307), - [sym_dec_expression] = STATE(2307), - [sym_or_block_expression] = STATE(2307), - [sym_option_propagation_expression] = STATE(2307), - [sym_result_propagation_expression] = STATE(2307), - [sym_anon_struct_value_expression] = STATE(2380), - [sym_go_expression] = STATE(2307), - [sym_spawn_expression] = STATE(2307), - [sym_parenthesized_expression] = STATE(2307), - [sym_call_expression] = STATE(2307), - [sym_type_initializer] = STATE(2380), - [sym_function_literal] = STATE(2307), - [sym_reference_expression] = STATE(2311), - [sym_type_reference_expression] = STATE(3541), - [sym_unary_expression] = STATE(2307), - [sym_receive_expression] = STATE(2307), - [sym_binary_expression] = STATE(2307), - [sym_as_type_cast_expression] = STATE(2307), - [sym__max_group] = STATE(2307), - [sym_literal] = STATE(2292), - [sym_map_init_expression] = STATE(2380), - [sym_array_creation] = STATE(2307), - [sym_fixed_array_creation] = STATE(2307), - [sym_selector_expression] = STATE(2307), - [sym_index_expression] = STATE(2307), - [sym_slice_expression] = STATE(2307), - [sym_if_expression] = STATE(2380), - [sym_compile_time_if_expression] = STATE(2380), - [sym_is_expression] = STATE(2307), - [sym_in_expression] = STATE(2307), - [sym_enum_fetch] = STATE(2307), - [sym_match_expression] = STATE(2380), - [sym_select_expression] = STATE(2380), - [sym_lock_expression] = STATE(2380), - [sym_unsafe_expression] = STATE(2380), - [sym_sql_expression] = STATE(2380), - [sym_c_string_literal] = STATE(2308), - [sym_raw_string_literal] = STATE(2308), - [sym_interpreted_string_literal] = STATE(2308), - [sym_mutability_modifiers] = STATE(939), - [sym_plain_type] = STATE(3557), - [sym__plain_type_without_special] = STATE(2302), - [sym_anon_struct_type] = STATE(2303), - [sym_multi_return_type] = STATE(2302), - [sym_result_type] = STATE(2302), - [sym_option_type] = STATE(2302), - [sym_qualified_type] = STATE(3541), - [sym_fixed_array_type] = STATE(2303), - [sym_array_type] = STATE(2303), - [sym_pointer_type] = STATE(2303), - [sym_wrong_pointer_type] = STATE(2303), - [sym_map_type] = STATE(2303), - [sym_channel_type] = STATE(2303), - [sym_shared_type] = STATE(2303), - [sym_thread_type] = STATE(2303), - [sym_atomic_type] = STATE(2303), - [sym_generic_type] = STATE(2303), - [sym_function_type] = STATE(2303), - [sym_range] = STATE(4598), - [sym_identifier] = ACTIONS(2135), + [sym__expression] = STATE(2585), + [sym__expression_without_blocks] = STATE(2696), + [sym__expression_with_blocks] = STATE(2638), + [sym_inc_expression] = STATE(2765), + [sym_dec_expression] = STATE(2765), + [sym_or_block_expression] = STATE(2765), + [sym_option_propagation_expression] = STATE(2765), + [sym_result_propagation_expression] = STATE(2765), + [sym_anon_struct_value_expression] = STATE(2637), + [sym_go_expression] = STATE(2765), + [sym_spawn_expression] = STATE(2765), + [sym_parenthesized_expression] = STATE(2765), + [sym_call_expression] = STATE(2765), + [sym_type_initializer] = STATE(2637), + [sym_function_literal] = STATE(2765), + [sym_reference_expression] = STATE(2764), + [sym_type_reference_expression] = STATE(3460), + [sym_unary_expression] = STATE(2765), + [sym_receive_expression] = STATE(2765), + [sym_binary_expression] = STATE(2765), + [sym_as_type_cast_expression] = STATE(2765), + [sym__max_group] = STATE(2765), + [sym_literal] = STATE(2771), + [sym_map_init_expression] = STATE(2637), + [sym_array_creation] = STATE(2765), + [sym_fixed_array_creation] = STATE(2765), + [sym_selector_expression] = STATE(2765), + [sym_index_expression] = STATE(2765), + [sym_slice_expression] = STATE(2765), + [sym_if_expression] = STATE(2637), + [sym_compile_time_if_expression] = STATE(2637), + [sym_is_expression] = STATE(2765), + [sym_in_expression] = STATE(2765), + [sym_enum_fetch] = STATE(2765), + [sym_match_expression] = STATE(2637), + [sym_match_arm_type] = STATE(4212), + [sym_select_expression] = STATE(2637), + [sym_lock_expression] = STATE(2637), + [sym_unsafe_expression] = STATE(2637), + [sym_sql_expression] = STATE(2637), + [sym_c_string_literal] = STATE(2762), + [sym_raw_string_literal] = STATE(2762), + [sym_interpreted_string_literal] = STATE(2762), + [sym_mutability_modifiers] = STATE(822), + [sym_plain_type] = STATE(3848), + [sym__plain_type_without_special] = STATE(2360), + [sym_anon_struct_type] = STATE(2362), + [sym_multi_return_type] = STATE(2360), + [sym_result_type] = STATE(2360), + [sym_option_type] = STATE(2360), + [sym_qualified_type] = STATE(3460), + [sym_fixed_array_type] = STATE(2362), + [sym_array_type] = STATE(2362), + [sym_pointer_type] = STATE(2362), + [sym_wrong_pointer_type] = STATE(2362), + [sym_map_type] = STATE(2362), + [sym_channel_type] = STATE(2362), + [sym_shared_type] = STATE(2362), + [sym_thread_type] = STATE(2362), + [sym_atomic_type] = STATE(2362), + [sym_generic_type] = STATE(2362), + [sym_function_type] = STATE(2362), + [sym__definite_range] = STATE(4215), + [sym_identifier] = ACTIONS(1071), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1428), - [anon_sym_LBRACE] = ACTIONS(1430), - [anon_sym_LPAREN] = ACTIONS(1432), - [anon_sym_fn] = ACTIONS(1434), - [anon_sym_PLUS] = ACTIONS(1436), - [anon_sym_DASH] = ACTIONS(1436), - [anon_sym_STAR] = ACTIONS(2137), - [anon_sym_struct] = ACTIONS(1440), + [anon_sym_DOT] = ACTIONS(1073), + [anon_sym_LBRACE] = ACTIONS(1075), + [anon_sym_LPAREN] = ACTIONS(1079), + [anon_sym_fn] = ACTIONS(1081), + [anon_sym_PLUS] = ACTIONS(1083), + [anon_sym_DASH] = ACTIONS(1083), + [anon_sym_STAR] = ACTIONS(1085), + [anon_sym_struct] = ACTIONS(1087), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(2139), - [anon_sym_go] = ACTIONS(1444), - [anon_sym_spawn] = ACTIONS(1446), - [anon_sym_json_DOTdecode] = ACTIONS(1448), - [anon_sym_LBRACK2] = ACTIONS(1450), - [anon_sym_TILDE] = ACTIONS(1436), - [anon_sym_CARET] = ACTIONS(1436), - [anon_sym_AMP] = ACTIONS(2141), - [anon_sym_LT_DASH] = ACTIONS(1454), - [sym_none] = ACTIONS(1456), - [sym_true] = ACTIONS(1456), - [sym_false] = ACTIONS(1456), - [sym_nil] = ACTIONS(1456), - [anon_sym_if] = ACTIONS(1827), - [anon_sym_DOLLARif] = ACTIONS(1460), - [anon_sym_match] = ACTIONS(1462), - [anon_sym_select] = ACTIONS(1464), - [anon_sym_lock] = ACTIONS(1466), - [anon_sym_rlock] = ACTIONS(1466), - [anon_sym_unsafe] = ACTIONS(1833), - [anon_sym_sql] = ACTIONS(1470), - [sym_int_literal] = ACTIONS(1456), - [sym_float_literal] = ACTIONS(1472), - [sym_rune_literal] = ACTIONS(1472), - [sym_pseudo_compile_time_identifier] = ACTIONS(1474), + [anon_sym_BANG] = ACTIONS(1089), + [anon_sym_go] = ACTIONS(1091), + [anon_sym_spawn] = ACTIONS(1093), + [anon_sym_json_DOTdecode] = ACTIONS(1095), + [anon_sym_LBRACK2] = ACTIONS(1097), + [anon_sym_TILDE] = ACTIONS(1083), + [anon_sym_CARET] = ACTIONS(1083), + [anon_sym_AMP] = ACTIONS(1099), + [anon_sym_LT_DASH] = ACTIONS(1101), + [sym_none] = ACTIONS(1103), + [sym_true] = ACTIONS(1103), + [sym_false] = ACTIONS(1103), + [sym_nil] = ACTIONS(1103), + [anon_sym_if] = ACTIONS(1105), + [anon_sym_DOLLARif] = ACTIONS(1109), + [anon_sym_match] = ACTIONS(1111), + [anon_sym_select] = ACTIONS(1113), + [anon_sym_lock] = ACTIONS(1115), + [anon_sym_rlock] = ACTIONS(1115), + [anon_sym_unsafe] = ACTIONS(1117), + [anon_sym_sql] = ACTIONS(1119), + [sym_int_literal] = ACTIONS(1103), + [sym_float_literal] = ACTIONS(1121), + [sym_rune_literal] = ACTIONS(1121), + [sym_pseudo_compile_time_identifier] = ACTIONS(1123), [anon_sym_shared] = ACTIONS(83), [anon_sym_map_LBRACK] = ACTIONS(85), [anon_sym_chan] = ACTIONS(87), [anon_sym_thread] = ACTIONS(89), [anon_sym_atomic] = ACTIONS(91), - [anon_sym_DOT_DOT] = ACTIONS(1476), - [sym___double_quote] = ACTIONS(1478), - [sym___single_quote] = ACTIONS(1480), - [sym___c_double_quote] = ACTIONS(1482), - [sym___c_single_quote] = ACTIONS(1484), - [sym___r_double_quote] = ACTIONS(1486), - [sym___r_single_quote] = ACTIONS(1488), + [sym___double_quote] = ACTIONS(1125), + [sym___single_quote] = ACTIONS(1127), + [sym___c_double_quote] = ACTIONS(1129), + [sym___c_single_quote] = ACTIONS(1131), + [sym___r_double_quote] = ACTIONS(1133), + [sym___r_single_quote] = ACTIONS(1135), }, [390] = { [sym_line_comment] = STATE(390), [sym_block_comment] = STATE(390), - [sym__expression] = STATE(1268), - [sym__expression_without_blocks] = STATE(1312), - [sym__expression_with_blocks] = STATE(1312), - [sym_inc_expression] = STATE(1313), - [sym_dec_expression] = STATE(1313), - [sym_or_block_expression] = STATE(1313), - [sym_option_propagation_expression] = STATE(1313), - [sym_result_propagation_expression] = STATE(1313), - [sym_anon_struct_value_expression] = STATE(1314), - [sym_go_expression] = STATE(1313), - [sym_spawn_expression] = STATE(1313), - [sym_parenthesized_expression] = STATE(1313), - [sym_call_expression] = STATE(1313), - [sym_type_initializer] = STATE(1314), - [sym_function_literal] = STATE(1313), - [sym_reference_expression] = STATE(1394), - [sym_type_reference_expression] = STATE(3541), - [sym_unary_expression] = STATE(1313), - [sym_receive_expression] = STATE(1313), - [sym_binary_expression] = STATE(1313), - [sym_as_type_cast_expression] = STATE(1313), - [sym__max_group] = STATE(1313), - [sym_literal] = STATE(1308), - [sym_map_init_expression] = STATE(1314), - [sym_array_creation] = STATE(1313), - [sym_fixed_array_creation] = STATE(1313), - [sym_selector_expression] = STATE(1393), - [sym_index_expression] = STATE(1313), - [sym_slice_expression] = STATE(1313), - [sym_if_expression] = STATE(1314), - [sym_compile_time_if_expression] = STATE(1314), - [sym_is_expression] = STATE(1313), - [sym_in_expression] = STATE(1313), - [sym_enum_fetch] = STATE(1313), - [sym_match_expression] = STATE(1314), - [sym_select_expression] = STATE(1314), - [sym_lock_expression] = STATE(1314), - [sym_unsafe_expression] = STATE(1314), - [sym_sql_expression] = STATE(1314), - [sym_c_string_literal] = STATE(1286), - [sym_raw_string_literal] = STATE(1286), - [sym_interpreted_string_literal] = STATE(1286), - [sym_mutability_modifiers] = STATE(699), - [sym_plain_type] = STATE(4192), - [sym__plain_type_without_special] = STATE(2302), - [sym_anon_struct_type] = STATE(2303), - [sym_multi_return_type] = STATE(2302), - [sym_result_type] = STATE(2302), - [sym_option_type] = STATE(2302), - [sym_qualified_type] = STATE(3541), - [sym_fixed_array_type] = STATE(2303), - [sym_array_type] = STATE(2303), - [sym_pointer_type] = STATE(2303), - [sym_wrong_pointer_type] = STATE(2303), - [sym_map_type] = STATE(2303), - [sym_channel_type] = STATE(2303), - [sym_shared_type] = STATE(2303), - [sym_thread_type] = STATE(2303), - [sym_atomic_type] = STATE(2303), - [sym_generic_type] = STATE(2303), - [sym_function_type] = STATE(2303), - [aux_sym__array_repeat1] = STATE(337), - [sym_identifier] = ACTIONS(1354), + [sym__expression] = STATE(2583), + [sym__expression_without_blocks] = STATE(2347), + [sym__expression_with_blocks] = STATE(2347), + [sym_inc_expression] = STATE(2379), + [sym_dec_expression] = STATE(2379), + [sym_or_block_expression] = STATE(2379), + [sym_option_propagation_expression] = STATE(2379), + [sym_result_propagation_expression] = STATE(2379), + [sym_anon_struct_value_expression] = STATE(2378), + [sym_go_expression] = STATE(2379), + [sym_spawn_expression] = STATE(2379), + [sym_parenthesized_expression] = STATE(2379), + [sym_call_expression] = STATE(2379), + [sym_type_initializer] = STATE(2378), + [sym_function_literal] = STATE(2379), + [sym_reference_expression] = STATE(2377), + [sym_type_reference_expression] = STATE(3460), + [sym_unary_expression] = STATE(2379), + [sym_receive_expression] = STATE(2379), + [sym_binary_expression] = STATE(2379), + [sym_as_type_cast_expression] = STATE(2379), + [sym__max_group] = STATE(2379), + [sym_literal] = STATE(2392), + [sym_map_init_expression] = STATE(2378), + [sym_array_creation] = STATE(2379), + [sym_fixed_array_creation] = STATE(2379), + [sym_selector_expression] = STATE(2379), + [sym_index_expression] = STATE(2379), + [sym_slice_expression] = STATE(2379), + [sym_if_expression] = STATE(2378), + [sym_compile_time_if_expression] = STATE(2378), + [sym_is_expression] = STATE(2379), + [sym_in_expression] = STATE(2379), + [sym_enum_fetch] = STATE(2379), + [sym_match_expression] = STATE(2378), + [sym_select_expression] = STATE(2378), + [sym_lock_expression] = STATE(2378), + [sym_unsafe_expression] = STATE(2378), + [sym_sql_expression] = STATE(2378), + [sym_c_string_literal] = STATE(2401), + [sym_raw_string_literal] = STATE(2401), + [sym_interpreted_string_literal] = STATE(2401), + [sym_mutability_modifiers] = STATE(939), + [sym_plain_type] = STATE(4160), + [sym__plain_type_without_special] = STATE(2360), + [sym_anon_struct_type] = STATE(2362), + [sym_multi_return_type] = STATE(2360), + [sym_result_type] = STATE(2360), + [sym_option_type] = STATE(2360), + [sym_qualified_type] = STATE(3460), + [sym_fixed_array_type] = STATE(2362), + [sym_array_type] = STATE(2362), + [sym_pointer_type] = STATE(2362), + [sym_wrong_pointer_type] = STATE(2362), + [sym_map_type] = STATE(2362), + [sym_channel_type] = STATE(2362), + [sym_shared_type] = STATE(2362), + [sym_thread_type] = STATE(2362), + [sym_atomic_type] = STATE(2362), + [sym_generic_type] = STATE(2362), + [sym_function_type] = STATE(2362), + [sym_range] = STATE(4429), + [sym_identifier] = ACTIONS(1428), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1356), - [anon_sym_LBRACE] = ACTIONS(1358), - [anon_sym_LPAREN] = ACTIONS(1360), - [anon_sym_fn] = ACTIONS(1362), - [anon_sym_PLUS] = ACTIONS(1364), - [anon_sym_DASH] = ACTIONS(1364), - [anon_sym_STAR] = ACTIONS(1366), - [anon_sym_RBRACK] = ACTIONS(2479), - [anon_sym_struct] = ACTIONS(1370), + [anon_sym_DOT] = ACTIONS(1430), + [anon_sym_LBRACE] = ACTIONS(1432), + [anon_sym_LPAREN] = ACTIONS(1434), + [anon_sym_fn] = ACTIONS(1436), + [anon_sym_PLUS] = ACTIONS(1438), + [anon_sym_DASH] = ACTIONS(1438), + [anon_sym_STAR] = ACTIONS(1440), + [anon_sym_struct] = ACTIONS(1442), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(1372), - [anon_sym_go] = ACTIONS(1374), - [anon_sym_spawn] = ACTIONS(1376), - [anon_sym_json_DOTdecode] = ACTIONS(1378), - [anon_sym_LBRACK2] = ACTIONS(1380), - [anon_sym_TILDE] = ACTIONS(1364), - [anon_sym_CARET] = ACTIONS(1364), - [anon_sym_AMP] = ACTIONS(1382), - [anon_sym_LT_DASH] = ACTIONS(1384), - [sym_none] = ACTIONS(1386), - [sym_true] = ACTIONS(1386), - [sym_false] = ACTIONS(1386), - [sym_nil] = ACTIONS(1386), - [anon_sym_if] = ACTIONS(1877), - [anon_sym_DOLLARif] = ACTIONS(1390), - [anon_sym_match] = ACTIONS(1392), - [anon_sym_select] = ACTIONS(1394), - [anon_sym_lock] = ACTIONS(1396), - [anon_sym_rlock] = ACTIONS(1396), - [anon_sym_unsafe] = ACTIONS(1883), - [anon_sym_sql] = ACTIONS(1400), - [sym_int_literal] = ACTIONS(1402), - [sym_float_literal] = ACTIONS(1404), - [sym_rune_literal] = ACTIONS(1404), - [sym_pseudo_compile_time_identifier] = ACTIONS(1406), + [anon_sym_BANG] = ACTIONS(1444), + [anon_sym_go] = ACTIONS(1446), + [anon_sym_spawn] = ACTIONS(1448), + [anon_sym_json_DOTdecode] = ACTIONS(1450), + [anon_sym_LBRACK2] = ACTIONS(1452), + [anon_sym_TILDE] = ACTIONS(1438), + [anon_sym_CARET] = ACTIONS(1438), + [anon_sym_AMP] = ACTIONS(1454), + [anon_sym_LT_DASH] = ACTIONS(1456), + [sym_none] = ACTIONS(1458), + [sym_true] = ACTIONS(1458), + [sym_false] = ACTIONS(1458), + [sym_nil] = ACTIONS(1458), + [anon_sym_if] = ACTIONS(1833), + [anon_sym_DOLLARif] = ACTIONS(1462), + [anon_sym_match] = ACTIONS(1464), + [anon_sym_select] = ACTIONS(1466), + [anon_sym_lock] = ACTIONS(1468), + [anon_sym_rlock] = ACTIONS(1468), + [anon_sym_unsafe] = ACTIONS(1839), + [anon_sym_sql] = ACTIONS(1472), + [sym_int_literal] = ACTIONS(1458), + [sym_float_literal] = ACTIONS(1474), + [sym_rune_literal] = ACTIONS(1474), + [sym_pseudo_compile_time_identifier] = ACTIONS(1476), [anon_sym_shared] = ACTIONS(83), [anon_sym_map_LBRACK] = ACTIONS(85), [anon_sym_chan] = ACTIONS(87), [anon_sym_thread] = ACTIONS(89), [anon_sym_atomic] = ACTIONS(91), - [sym___double_quote] = ACTIONS(1408), - [sym___single_quote] = ACTIONS(1410), - [sym___c_double_quote] = ACTIONS(1412), - [sym___c_single_quote] = ACTIONS(1414), - [sym___r_double_quote] = ACTIONS(1416), - [sym___r_single_quote] = ACTIONS(1418), + [anon_sym_DOT_DOT] = ACTIONS(1478), + [sym___double_quote] = ACTIONS(1480), + [sym___single_quote] = ACTIONS(1482), + [sym___c_double_quote] = ACTIONS(1484), + [sym___c_single_quote] = ACTIONS(1486), + [sym___r_double_quote] = ACTIONS(1488), + [sym___r_single_quote] = ACTIONS(1490), }, [391] = { [sym_line_comment] = STATE(391), [sym_block_comment] = STATE(391), - [ts_builtin_sym_end] = ACTIONS(2481), - [sym_identifier] = ACTIONS(2483), - [anon_sym_LF] = ACTIONS(2483), - [anon_sym_CR] = ACTIONS(2483), - [anon_sym_CR_LF] = ACTIONS(2483), - [anon_sym_SLASH_SLASH] = ACTIONS(497), - [anon_sym_SLASH_STAR] = ACTIONS(499), - [anon_sym_DOT] = ACTIONS(2483), - [anon_sym_as] = ACTIONS(2483), - [anon_sym_LBRACE] = ACTIONS(2483), - [anon_sym_COMMA] = ACTIONS(2483), - [anon_sym_const] = ACTIONS(2483), - [anon_sym_LPAREN] = ACTIONS(2483), - [anon_sym_EQ] = ACTIONS(2483), - [anon_sym___global] = ACTIONS(2483), - [anon_sym_type] = ACTIONS(2483), - [anon_sym_PIPE] = ACTIONS(2483), - [anon_sym_fn] = ACTIONS(2483), - [anon_sym_PLUS] = ACTIONS(2483), - [anon_sym_DASH] = ACTIONS(2483), - [anon_sym_STAR] = ACTIONS(2483), - [anon_sym_SLASH] = ACTIONS(2483), - [anon_sym_PERCENT] = ACTIONS(2483), - [anon_sym_LT] = ACTIONS(2483), - [anon_sym_GT] = ACTIONS(2483), - [anon_sym_EQ_EQ] = ACTIONS(2483), - [anon_sym_BANG_EQ] = ACTIONS(2483), - [anon_sym_LT_EQ] = ACTIONS(2483), - [anon_sym_GT_EQ] = ACTIONS(2483), - [anon_sym_LBRACK] = ACTIONS(2481), - [anon_sym_struct] = ACTIONS(2483), - [anon_sym_union] = ACTIONS(2483), - [anon_sym_pub] = ACTIONS(2483), - [anon_sym_mut] = ACTIONS(2483), - [anon_sym_enum] = ACTIONS(2483), - [anon_sym_interface] = ACTIONS(2483), - [anon_sym_PLUS_PLUS] = ACTIONS(2483), - [anon_sym_DASH_DASH] = ACTIONS(2483), - [anon_sym_QMARK] = ACTIONS(2483), - [anon_sym_BANG] = ACTIONS(2483), - [anon_sym_go] = ACTIONS(2483), - [anon_sym_spawn] = ACTIONS(2483), - [anon_sym_json_DOTdecode] = ACTIONS(2483), - [anon_sym_LBRACK2] = ACTIONS(2483), - [anon_sym_TILDE] = ACTIONS(2483), - [anon_sym_CARET] = ACTIONS(2483), - [anon_sym_AMP] = ACTIONS(2483), - [anon_sym_LT_DASH] = ACTIONS(2483), - [anon_sym_LT_LT] = ACTIONS(2483), - [anon_sym_GT_GT] = ACTIONS(2483), - [anon_sym_GT_GT_GT] = ACTIONS(2483), - [anon_sym_AMP_CARET] = ACTIONS(2483), - [anon_sym_AMP_AMP] = ACTIONS(2483), - [anon_sym_PIPE_PIPE] = ACTIONS(2483), - [anon_sym_or] = ACTIONS(2483), - [sym_none] = ACTIONS(2483), - [sym_true] = ACTIONS(2483), - [sym_false] = ACTIONS(2483), - [sym_nil] = ACTIONS(2483), - [anon_sym_QMARK_DOT] = ACTIONS(2483), - [anon_sym_POUND_LBRACK] = ACTIONS(2483), - [anon_sym_if] = ACTIONS(2483), - [anon_sym_DOLLARif] = ACTIONS(2483), - [anon_sym_is] = ACTIONS(2483), - [anon_sym_BANGis] = ACTIONS(2483), - [anon_sym_in] = ACTIONS(2483), - [anon_sym_BANGin] = ACTIONS(2483), - [anon_sym_match] = ACTIONS(2483), - [anon_sym_select] = ACTIONS(2483), - [anon_sym_STAR_EQ] = ACTIONS(2483), - [anon_sym_SLASH_EQ] = ACTIONS(2483), - [anon_sym_PERCENT_EQ] = ACTIONS(2483), - [anon_sym_LT_LT_EQ] = ACTIONS(2483), - [anon_sym_GT_GT_EQ] = ACTIONS(2483), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(2483), - [anon_sym_AMP_EQ] = ACTIONS(2483), - [anon_sym_AMP_CARET_EQ] = ACTIONS(2483), - [anon_sym_PLUS_EQ] = ACTIONS(2483), - [anon_sym_DASH_EQ] = ACTIONS(2483), - [anon_sym_PIPE_EQ] = ACTIONS(2483), - [anon_sym_CARET_EQ] = ACTIONS(2483), - [anon_sym_COLON_EQ] = ACTIONS(2483), - [anon_sym_lock] = ACTIONS(2483), - [anon_sym_rlock] = ACTIONS(2483), - [anon_sym_unsafe] = ACTIONS(2483), - [anon_sym_sql] = ACTIONS(2483), - [sym_int_literal] = ACTIONS(2483), - [sym_float_literal] = ACTIONS(2483), - [sym_rune_literal] = ACTIONS(2483), - [sym_pseudo_compile_time_identifier] = ACTIONS(2483), - [anon_sym_shared] = ACTIONS(2483), - [anon_sym_map_LBRACK] = ACTIONS(2483), - [anon_sym_chan] = ACTIONS(2483), - [anon_sym_thread] = ACTIONS(2483), - [anon_sym_atomic] = ACTIONS(2483), - [anon_sym_assert] = ACTIONS(2483), - [anon_sym_defer] = ACTIONS(2483), - [anon_sym_goto] = ACTIONS(2483), - [anon_sym_break] = ACTIONS(2483), - [anon_sym_continue] = ACTIONS(2483), - [anon_sym_return] = ACTIONS(2483), - [anon_sym_DOLLARfor] = ACTIONS(2483), - [anon_sym_for] = ACTIONS(2483), - [anon_sym_POUND] = ACTIONS(2483), - [anon_sym_asm] = ACTIONS(2483), - [anon_sym_AT_LBRACK] = ACTIONS(2483), - [sym___double_quote] = ACTIONS(2483), - [sym___single_quote] = ACTIONS(2483), - [sym___c_double_quote] = ACTIONS(2483), - [sym___c_single_quote] = ACTIONS(2483), - [sym___r_double_quote] = ACTIONS(2483), - [sym___r_single_quote] = ACTIONS(2483), + [sym__expression] = STATE(2583), + [sym__expression_without_blocks] = STATE(2347), + [sym__expression_with_blocks] = STATE(2347), + [sym_inc_expression] = STATE(2379), + [sym_dec_expression] = STATE(2379), + [sym_or_block_expression] = STATE(2379), + [sym_option_propagation_expression] = STATE(2379), + [sym_result_propagation_expression] = STATE(2379), + [sym_anon_struct_value_expression] = STATE(2378), + [sym_go_expression] = STATE(2379), + [sym_spawn_expression] = STATE(2379), + [sym_parenthesized_expression] = STATE(2379), + [sym_call_expression] = STATE(2379), + [sym_type_initializer] = STATE(2378), + [sym_function_literal] = STATE(2379), + [sym_reference_expression] = STATE(2377), + [sym_type_reference_expression] = STATE(3460), + [sym_unary_expression] = STATE(2379), + [sym_receive_expression] = STATE(2379), + [sym_binary_expression] = STATE(2379), + [sym_as_type_cast_expression] = STATE(2379), + [sym__max_group] = STATE(2379), + [sym_literal] = STATE(2392), + [sym_map_init_expression] = STATE(2378), + [sym_array_creation] = STATE(2379), + [sym_fixed_array_creation] = STATE(2379), + [sym_selector_expression] = STATE(2379), + [sym_index_expression] = STATE(2379), + [sym_slice_expression] = STATE(2379), + [sym_if_expression] = STATE(2378), + [sym_compile_time_if_expression] = STATE(2378), + [sym_is_expression] = STATE(2379), + [sym_in_expression] = STATE(2379), + [sym_enum_fetch] = STATE(2379), + [sym_match_expression] = STATE(2378), + [sym_select_expression] = STATE(2378), + [sym_lock_expression] = STATE(2378), + [sym_unsafe_expression] = STATE(2378), + [sym_sql_expression] = STATE(2378), + [sym_c_string_literal] = STATE(2401), + [sym_raw_string_literal] = STATE(2401), + [sym_interpreted_string_literal] = STATE(2401), + [sym_mutability_modifiers] = STATE(939), + [sym_plain_type] = STATE(3569), + [sym__plain_type_without_special] = STATE(2360), + [sym_anon_struct_type] = STATE(2362), + [sym_multi_return_type] = STATE(2360), + [sym_result_type] = STATE(2360), + [sym_option_type] = STATE(2360), + [sym_qualified_type] = STATE(3460), + [sym_fixed_array_type] = STATE(2362), + [sym_array_type] = STATE(2362), + [sym_pointer_type] = STATE(2362), + [sym_wrong_pointer_type] = STATE(2362), + [sym_map_type] = STATE(2362), + [sym_channel_type] = STATE(2362), + [sym_shared_type] = STATE(2362), + [sym_thread_type] = STATE(2362), + [sym_atomic_type] = STATE(2362), + [sym_generic_type] = STATE(2362), + [sym_function_type] = STATE(2362), + [sym_range] = STATE(4429), + [sym_identifier] = ACTIONS(2127), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(1430), + [anon_sym_LBRACE] = ACTIONS(1432), + [anon_sym_LPAREN] = ACTIONS(1434), + [anon_sym_fn] = ACTIONS(1436), + [anon_sym_PLUS] = ACTIONS(1438), + [anon_sym_DASH] = ACTIONS(1438), + [anon_sym_STAR] = ACTIONS(2129), + [anon_sym_struct] = ACTIONS(1442), + [anon_sym_mut] = ACTIONS(41), + [anon_sym_QMARK] = ACTIONS(47), + [anon_sym_BANG] = ACTIONS(2131), + [anon_sym_go] = ACTIONS(1446), + [anon_sym_spawn] = ACTIONS(1448), + [anon_sym_json_DOTdecode] = ACTIONS(1450), + [anon_sym_LBRACK2] = ACTIONS(1452), + [anon_sym_TILDE] = ACTIONS(1438), + [anon_sym_CARET] = ACTIONS(1438), + [anon_sym_AMP] = ACTIONS(2133), + [anon_sym_LT_DASH] = ACTIONS(1456), + [sym_none] = ACTIONS(1458), + [sym_true] = ACTIONS(1458), + [sym_false] = ACTIONS(1458), + [sym_nil] = ACTIONS(1458), + [anon_sym_if] = ACTIONS(1833), + [anon_sym_DOLLARif] = ACTIONS(1462), + [anon_sym_match] = ACTIONS(1464), + [anon_sym_select] = ACTIONS(1466), + [anon_sym_lock] = ACTIONS(1468), + [anon_sym_rlock] = ACTIONS(1468), + [anon_sym_unsafe] = ACTIONS(1839), + [anon_sym_sql] = ACTIONS(1472), + [sym_int_literal] = ACTIONS(1458), + [sym_float_literal] = ACTIONS(1474), + [sym_rune_literal] = ACTIONS(1474), + [sym_pseudo_compile_time_identifier] = ACTIONS(1476), + [anon_sym_shared] = ACTIONS(83), + [anon_sym_map_LBRACK] = ACTIONS(85), + [anon_sym_chan] = ACTIONS(87), + [anon_sym_thread] = ACTIONS(89), + [anon_sym_atomic] = ACTIONS(91), + [anon_sym_DOT_DOT] = ACTIONS(1478), + [sym___double_quote] = ACTIONS(1480), + [sym___single_quote] = ACTIONS(1482), + [sym___c_double_quote] = ACTIONS(1484), + [sym___c_single_quote] = ACTIONS(1486), + [sym___r_double_quote] = ACTIONS(1488), + [sym___r_single_quote] = ACTIONS(1490), }, [392] = { [sym_line_comment] = STATE(392), [sym_block_comment] = STATE(392), - [ts_builtin_sym_end] = ACTIONS(2485), - [sym_identifier] = ACTIONS(2487), - [anon_sym_LF] = ACTIONS(2487), - [anon_sym_CR] = ACTIONS(2487), - [anon_sym_CR_LF] = ACTIONS(2487), - [anon_sym_SLASH_SLASH] = ACTIONS(497), - [anon_sym_SLASH_STAR] = ACTIONS(499), - [anon_sym_DOT] = ACTIONS(2487), - [anon_sym_as] = ACTIONS(2487), - [anon_sym_LBRACE] = ACTIONS(2487), - [anon_sym_COMMA] = ACTIONS(2487), - [anon_sym_const] = ACTIONS(2487), - [anon_sym_LPAREN] = ACTIONS(2487), - [anon_sym_EQ] = ACTIONS(2487), - [anon_sym___global] = ACTIONS(2487), - [anon_sym_type] = ACTIONS(2487), - [anon_sym_PIPE] = ACTIONS(2487), - [anon_sym_fn] = ACTIONS(2487), - [anon_sym_PLUS] = ACTIONS(2487), - [anon_sym_DASH] = ACTIONS(2487), - [anon_sym_STAR] = ACTIONS(2487), - [anon_sym_SLASH] = ACTIONS(2487), - [anon_sym_PERCENT] = ACTIONS(2487), - [anon_sym_LT] = ACTIONS(2487), - [anon_sym_GT] = ACTIONS(2487), - [anon_sym_EQ_EQ] = ACTIONS(2487), - [anon_sym_BANG_EQ] = ACTIONS(2487), - [anon_sym_LT_EQ] = ACTIONS(2487), - [anon_sym_GT_EQ] = ACTIONS(2487), - [anon_sym_LBRACK] = ACTIONS(2485), - [anon_sym_struct] = ACTIONS(2487), - [anon_sym_union] = ACTIONS(2487), - [anon_sym_pub] = ACTIONS(2487), - [anon_sym_mut] = ACTIONS(2487), - [anon_sym_enum] = ACTIONS(2487), - [anon_sym_interface] = ACTIONS(2487), - [anon_sym_PLUS_PLUS] = ACTIONS(2487), - [anon_sym_DASH_DASH] = ACTIONS(2487), - [anon_sym_QMARK] = ACTIONS(2487), - [anon_sym_BANG] = ACTIONS(2487), - [anon_sym_go] = ACTIONS(2487), - [anon_sym_spawn] = ACTIONS(2487), - [anon_sym_json_DOTdecode] = ACTIONS(2487), - [anon_sym_LBRACK2] = ACTIONS(2487), - [anon_sym_TILDE] = ACTIONS(2487), - [anon_sym_CARET] = ACTIONS(2487), - [anon_sym_AMP] = ACTIONS(2487), - [anon_sym_LT_DASH] = ACTIONS(2487), - [anon_sym_LT_LT] = ACTIONS(2487), - [anon_sym_GT_GT] = ACTIONS(2487), - [anon_sym_GT_GT_GT] = ACTIONS(2487), - [anon_sym_AMP_CARET] = ACTIONS(2487), - [anon_sym_AMP_AMP] = ACTIONS(2487), - [anon_sym_PIPE_PIPE] = ACTIONS(2487), - [anon_sym_or] = ACTIONS(2487), - [sym_none] = ACTIONS(2487), - [sym_true] = ACTIONS(2487), - [sym_false] = ACTIONS(2487), - [sym_nil] = ACTIONS(2487), - [anon_sym_QMARK_DOT] = ACTIONS(2487), - [anon_sym_POUND_LBRACK] = ACTIONS(2487), - [anon_sym_if] = ACTIONS(2487), - [anon_sym_DOLLARif] = ACTIONS(2487), - [anon_sym_is] = ACTIONS(2487), - [anon_sym_BANGis] = ACTIONS(2487), - [anon_sym_in] = ACTIONS(2487), - [anon_sym_BANGin] = ACTIONS(2487), - [anon_sym_match] = ACTIONS(2487), - [anon_sym_select] = ACTIONS(2487), - [anon_sym_STAR_EQ] = ACTIONS(2487), - [anon_sym_SLASH_EQ] = ACTIONS(2487), - [anon_sym_PERCENT_EQ] = ACTIONS(2487), - [anon_sym_LT_LT_EQ] = ACTIONS(2487), - [anon_sym_GT_GT_EQ] = ACTIONS(2487), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(2487), - [anon_sym_AMP_EQ] = ACTIONS(2487), - [anon_sym_AMP_CARET_EQ] = ACTIONS(2487), - [anon_sym_PLUS_EQ] = ACTIONS(2487), - [anon_sym_DASH_EQ] = ACTIONS(2487), - [anon_sym_PIPE_EQ] = ACTIONS(2487), - [anon_sym_CARET_EQ] = ACTIONS(2487), - [anon_sym_COLON_EQ] = ACTIONS(2487), - [anon_sym_lock] = ACTIONS(2487), - [anon_sym_rlock] = ACTIONS(2487), - [anon_sym_unsafe] = ACTIONS(2487), - [anon_sym_sql] = ACTIONS(2487), - [sym_int_literal] = ACTIONS(2487), - [sym_float_literal] = ACTIONS(2487), - [sym_rune_literal] = ACTIONS(2487), - [sym_pseudo_compile_time_identifier] = ACTIONS(2487), - [anon_sym_shared] = ACTIONS(2487), - [anon_sym_map_LBRACK] = ACTIONS(2487), - [anon_sym_chan] = ACTIONS(2487), - [anon_sym_thread] = ACTIONS(2487), - [anon_sym_atomic] = ACTIONS(2487), - [anon_sym_assert] = ACTIONS(2487), - [anon_sym_defer] = ACTIONS(2487), - [anon_sym_goto] = ACTIONS(2487), - [anon_sym_break] = ACTIONS(2487), - [anon_sym_continue] = ACTIONS(2487), - [anon_sym_return] = ACTIONS(2487), - [anon_sym_DOLLARfor] = ACTIONS(2487), - [anon_sym_for] = ACTIONS(2487), - [anon_sym_POUND] = ACTIONS(2487), - [anon_sym_asm] = ACTIONS(2487), - [anon_sym_AT_LBRACK] = ACTIONS(2487), - [sym___double_quote] = ACTIONS(2487), - [sym___single_quote] = ACTIONS(2487), - [sym___c_double_quote] = ACTIONS(2487), - [sym___c_single_quote] = ACTIONS(2487), - [sym___r_double_quote] = ACTIONS(2487), - [sym___r_single_quote] = ACTIONS(2487), - }, - [393] = { - [sym_line_comment] = STATE(393), - [sym_block_comment] = STATE(393), - [sym__expression] = STATE(2455), - [sym__expression_without_blocks] = STATE(2300), - [sym__expression_with_blocks] = STATE(2300), - [sym_inc_expression] = STATE(2307), - [sym_dec_expression] = STATE(2307), - [sym_or_block_expression] = STATE(2307), - [sym_option_propagation_expression] = STATE(2307), - [sym_result_propagation_expression] = STATE(2307), - [sym_anon_struct_value_expression] = STATE(2380), - [sym_go_expression] = STATE(2307), - [sym_spawn_expression] = STATE(2307), - [sym_parenthesized_expression] = STATE(2307), - [sym_call_expression] = STATE(2307), - [sym_type_initializer] = STATE(2380), - [sym_function_literal] = STATE(2307), - [sym_reference_expression] = STATE(2311), - [sym_type_reference_expression] = STATE(3541), - [sym_unary_expression] = STATE(2307), - [sym_receive_expression] = STATE(2307), - [sym_binary_expression] = STATE(2307), - [sym_as_type_cast_expression] = STATE(2307), - [sym__max_group] = STATE(2307), - [sym_literal] = STATE(2292), - [sym_map_init_expression] = STATE(2380), - [sym_array_creation] = STATE(2307), - [sym_fixed_array_creation] = STATE(2307), - [sym_selector_expression] = STATE(2307), - [sym_index_expression] = STATE(2307), - [sym_slice_expression] = STATE(2307), - [sym_if_expression] = STATE(2380), - [sym_compile_time_if_expression] = STATE(2380), - [sym_is_expression] = STATE(2307), - [sym_in_expression] = STATE(2307), - [sym_enum_fetch] = STATE(2307), - [sym_match_expression] = STATE(2380), - [sym_select_expression] = STATE(2380), - [sym_lock_expression] = STATE(2380), - [sym_unsafe_expression] = STATE(2380), - [sym_sql_expression] = STATE(2380), - [sym_c_string_literal] = STATE(2308), - [sym_raw_string_literal] = STATE(2308), - [sym_interpreted_string_literal] = STATE(2308), - [sym_mutability_modifiers] = STATE(824), - [sym_mutable_expression] = STATE(3922), - [sym_expression_list] = STATE(4358), - [sym_plain_type] = STATE(4297), - [sym__plain_type_without_special] = STATE(2302), - [sym_anon_struct_type] = STATE(2303), - [sym_multi_return_type] = STATE(2302), - [sym_result_type] = STATE(2302), - [sym_option_type] = STATE(2302), - [sym_qualified_type] = STATE(3541), - [sym_fixed_array_type] = STATE(2303), - [sym_array_type] = STATE(2303), - [sym_pointer_type] = STATE(2303), - [sym_wrong_pointer_type] = STATE(2303), - [sym_map_type] = STATE(2303), - [sym_channel_type] = STATE(2303), - [sym_shared_type] = STATE(2303), - [sym_thread_type] = STATE(2303), - [sym_atomic_type] = STATE(2303), - [sym_generic_type] = STATE(2303), - [sym_function_type] = STATE(2303), - [sym_identifier] = ACTIONS(1807), + [sym__expression] = STATE(1273), + [sym__expression_without_blocks] = STATE(1318), + [sym__expression_with_blocks] = STATE(1318), + [sym_inc_expression] = STATE(1319), + [sym_dec_expression] = STATE(1319), + [sym_or_block_expression] = STATE(1319), + [sym_option_propagation_expression] = STATE(1319), + [sym_result_propagation_expression] = STATE(1319), + [sym_anon_struct_value_expression] = STATE(1320), + [sym_go_expression] = STATE(1319), + [sym_spawn_expression] = STATE(1319), + [sym_parenthesized_expression] = STATE(1319), + [sym_call_expression] = STATE(1319), + [sym_type_initializer] = STATE(1320), + [sym_function_literal] = STATE(1319), + [sym_reference_expression] = STATE(1397), + [sym_type_reference_expression] = STATE(3460), + [sym_unary_expression] = STATE(1319), + [sym_receive_expression] = STATE(1319), + [sym_binary_expression] = STATE(1319), + [sym_as_type_cast_expression] = STATE(1319), + [sym__max_group] = STATE(1319), + [sym_literal] = STATE(1314), + [sym_map_init_expression] = STATE(1320), + [sym_array_creation] = STATE(1319), + [sym_fixed_array_creation] = STATE(1319), + [sym_selector_expression] = STATE(1399), + [sym_index_expression] = STATE(1319), + [sym_slice_expression] = STATE(1319), + [sym_if_expression] = STATE(1320), + [sym_compile_time_if_expression] = STATE(1320), + [sym_is_expression] = STATE(1319), + [sym_in_expression] = STATE(1319), + [sym_enum_fetch] = STATE(1319), + [sym_match_expression] = STATE(1320), + [sym_select_expression] = STATE(1320), + [sym_lock_expression] = STATE(1320), + [sym_unsafe_expression] = STATE(1320), + [sym_sql_expression] = STATE(1320), + [sym_c_string_literal] = STATE(1291), + [sym_raw_string_literal] = STATE(1291), + [sym_interpreted_string_literal] = STATE(1291), + [sym_mutability_modifiers] = STATE(639), + [sym_plain_type] = STATE(4307), + [sym__plain_type_without_special] = STATE(2360), + [sym_anon_struct_type] = STATE(2362), + [sym_multi_return_type] = STATE(2360), + [sym_result_type] = STATE(2360), + [sym_option_type] = STATE(2360), + [sym_qualified_type] = STATE(3460), + [sym_fixed_array_type] = STATE(2362), + [sym_array_type] = STATE(2362), + [sym_pointer_type] = STATE(2362), + [sym_wrong_pointer_type] = STATE(2362), + [sym_map_type] = STATE(2362), + [sym_channel_type] = STATE(2362), + [sym_shared_type] = STATE(2362), + [sym_thread_type] = STATE(2362), + [sym_atomic_type] = STATE(2362), + [sym_generic_type] = STATE(2362), + [sym_function_type] = STATE(2362), + [aux_sym__array_repeat1] = STATE(424), + [sym_identifier] = ACTIONS(1360), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1428), - [anon_sym_LBRACE] = ACTIONS(2489), - [anon_sym_LPAREN] = ACTIONS(1432), - [anon_sym_fn] = ACTIONS(1434), - [anon_sym_PLUS] = ACTIONS(1811), - [anon_sym_DASH] = ACTIONS(1811), - [anon_sym_STAR] = ACTIONS(1813), - [anon_sym_struct] = ACTIONS(1440), + [anon_sym_DOT] = ACTIONS(1362), + [anon_sym_LBRACE] = ACTIONS(1364), + [anon_sym_LPAREN] = ACTIONS(1366), + [anon_sym_fn] = ACTIONS(1368), + [anon_sym_PLUS] = ACTIONS(1370), + [anon_sym_DASH] = ACTIONS(1370), + [anon_sym_STAR] = ACTIONS(1372), + [anon_sym_RBRACK] = ACTIONS(1374), + [anon_sym_struct] = ACTIONS(1376), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(1815), - [anon_sym_go] = ACTIONS(1817), - [anon_sym_spawn] = ACTIONS(1819), - [anon_sym_json_DOTdecode] = ACTIONS(1448), - [anon_sym_LBRACK2] = ACTIONS(1821), - [anon_sym_TILDE] = ACTIONS(1811), - [anon_sym_CARET] = ACTIONS(1811), - [anon_sym_AMP] = ACTIONS(1823), - [anon_sym_LT_DASH] = ACTIONS(1825), - [sym_none] = ACTIONS(1456), - [sym_true] = ACTIONS(1456), - [sym_false] = ACTIONS(1456), - [sym_nil] = ACTIONS(1456), - [anon_sym_if] = ACTIONS(1827), - [anon_sym_DOLLARif] = ACTIONS(1460), - [anon_sym_match] = ACTIONS(1462), - [anon_sym_select] = ACTIONS(1829), - [anon_sym_lock] = ACTIONS(1831), - [anon_sym_rlock] = ACTIONS(1831), - [anon_sym_unsafe] = ACTIONS(1833), - [anon_sym_sql] = ACTIONS(1470), - [sym_int_literal] = ACTIONS(1456), - [sym_float_literal] = ACTIONS(1472), - [sym_rune_literal] = ACTIONS(1472), - [sym_pseudo_compile_time_identifier] = ACTIONS(1474), + [anon_sym_BANG] = ACTIONS(1378), + [anon_sym_go] = ACTIONS(1380), + [anon_sym_spawn] = ACTIONS(1382), + [anon_sym_json_DOTdecode] = ACTIONS(1384), + [anon_sym_LBRACK2] = ACTIONS(1386), + [anon_sym_TILDE] = ACTIONS(1370), + [anon_sym_CARET] = ACTIONS(1370), + [anon_sym_AMP] = ACTIONS(1388), + [anon_sym_LT_DASH] = ACTIONS(1390), + [sym_none] = ACTIONS(1392), + [sym_true] = ACTIONS(1392), + [sym_false] = ACTIONS(1392), + [sym_nil] = ACTIONS(1392), + [anon_sym_if] = ACTIONS(1865), + [anon_sym_DOLLARif] = ACTIONS(1396), + [anon_sym_match] = ACTIONS(1398), + [anon_sym_select] = ACTIONS(1400), + [anon_sym_lock] = ACTIONS(1402), + [anon_sym_rlock] = ACTIONS(1402), + [anon_sym_unsafe] = ACTIONS(1871), + [anon_sym_sql] = ACTIONS(1406), + [sym_int_literal] = ACTIONS(1408), + [sym_float_literal] = ACTIONS(1410), + [sym_rune_literal] = ACTIONS(1410), + [sym_pseudo_compile_time_identifier] = ACTIONS(1412), [anon_sym_shared] = ACTIONS(83), [anon_sym_map_LBRACK] = ACTIONS(85), [anon_sym_chan] = ACTIONS(87), [anon_sym_thread] = ACTIONS(89), [anon_sym_atomic] = ACTIONS(91), - [sym___double_quote] = ACTIONS(1478), - [sym___single_quote] = ACTIONS(1480), - [sym___c_double_quote] = ACTIONS(1482), - [sym___c_single_quote] = ACTIONS(1484), - [sym___r_double_quote] = ACTIONS(1486), - [sym___r_single_quote] = ACTIONS(1488), + [sym___double_quote] = ACTIONS(1414), + [sym___single_quote] = ACTIONS(1416), + [sym___c_double_quote] = ACTIONS(1418), + [sym___c_single_quote] = ACTIONS(1420), + [sym___r_double_quote] = ACTIONS(1422), + [sym___r_single_quote] = ACTIONS(1424), + }, + [393] = { + [sym_line_comment] = STATE(393), + [sym_block_comment] = STATE(393), + [ts_builtin_sym_end] = ACTIONS(2511), + [sym_identifier] = ACTIONS(2513), + [anon_sym_LF] = ACTIONS(2513), + [anon_sym_CR] = ACTIONS(2513), + [anon_sym_CR_LF] = ACTIONS(2513), + [anon_sym_SLASH_SLASH] = ACTIONS(497), + [anon_sym_SLASH_STAR] = ACTIONS(499), + [anon_sym_DOT] = ACTIONS(2515), + [anon_sym_as] = ACTIONS(2513), + [anon_sym_LBRACE] = ACTIONS(2513), + [anon_sym_COMMA] = ACTIONS(2513), + [anon_sym_const] = ACTIONS(2513), + [anon_sym_LPAREN] = ACTIONS(2513), + [anon_sym_EQ] = ACTIONS(2513), + [anon_sym___global] = ACTIONS(2513), + [anon_sym_type] = ACTIONS(2513), + [anon_sym_PIPE] = ACTIONS(2513), + [anon_sym_fn] = ACTIONS(2513), + [anon_sym_PLUS] = ACTIONS(2513), + [anon_sym_DASH] = ACTIONS(2513), + [anon_sym_STAR] = ACTIONS(2513), + [anon_sym_SLASH] = ACTIONS(2513), + [anon_sym_PERCENT] = ACTIONS(2513), + [anon_sym_LT] = ACTIONS(2513), + [anon_sym_GT] = ACTIONS(2513), + [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(2511), + [anon_sym_struct] = ACTIONS(2513), + [anon_sym_union] = ACTIONS(2513), + [anon_sym_pub] = ACTIONS(2513), + [anon_sym_mut] = ACTIONS(2513), + [anon_sym_enum] = ACTIONS(2513), + [anon_sym_interface] = ACTIONS(2513), + [anon_sym_PLUS_PLUS] = ACTIONS(2513), + [anon_sym_DASH_DASH] = ACTIONS(2513), + [anon_sym_QMARK] = ACTIONS(2513), + [anon_sym_BANG] = ACTIONS(2513), + [anon_sym_go] = ACTIONS(2513), + [anon_sym_spawn] = ACTIONS(2513), + [anon_sym_json_DOTdecode] = ACTIONS(2513), + [anon_sym_LBRACK2] = ACTIONS(2513), + [anon_sym_TILDE] = ACTIONS(2513), + [anon_sym_CARET] = ACTIONS(2513), + [anon_sym_AMP] = ACTIONS(2513), + [anon_sym_LT_DASH] = ACTIONS(2513), + [anon_sym_LT_LT] = ACTIONS(2513), + [anon_sym_GT_GT] = ACTIONS(2513), + [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(2513), + [sym_none] = ACTIONS(2513), + [sym_true] = ACTIONS(2513), + [sym_false] = ACTIONS(2513), + [sym_nil] = ACTIONS(2513), + [anon_sym_QMARK_DOT] = ACTIONS(2513), + [anon_sym_POUND_LBRACK] = ACTIONS(2513), + [anon_sym_if] = ACTIONS(2513), + [anon_sym_DOLLARif] = ACTIONS(2513), + [anon_sym_is] = ACTIONS(2513), + [anon_sym_BANGis] = ACTIONS(2513), + [anon_sym_in] = ACTIONS(2513), + [anon_sym_BANGin] = ACTIONS(2513), + [anon_sym_match] = ACTIONS(2513), + [anon_sym_select] = ACTIONS(2513), + [anon_sym_STAR_EQ] = ACTIONS(2513), + [anon_sym_SLASH_EQ] = ACTIONS(2513), + [anon_sym_PERCENT_EQ] = ACTIONS(2513), + [anon_sym_LT_LT_EQ] = ACTIONS(2513), + [anon_sym_GT_GT_EQ] = ACTIONS(2513), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(2513), + [anon_sym_AMP_EQ] = ACTIONS(2513), + [anon_sym_AMP_CARET_EQ] = ACTIONS(2513), + [anon_sym_PLUS_EQ] = ACTIONS(2513), + [anon_sym_DASH_EQ] = ACTIONS(2513), + [anon_sym_PIPE_EQ] = ACTIONS(2513), + [anon_sym_CARET_EQ] = ACTIONS(2513), + [anon_sym_COLON_EQ] = ACTIONS(2513), + [anon_sym_lock] = ACTIONS(2513), + [anon_sym_rlock] = ACTIONS(2513), + [anon_sym_unsafe] = ACTIONS(2513), + [anon_sym_sql] = ACTIONS(2513), + [sym_int_literal] = ACTIONS(2513), + [sym_float_literal] = ACTIONS(2513), + [sym_rune_literal] = ACTIONS(2513), + [sym_pseudo_compile_time_identifier] = ACTIONS(2513), + [anon_sym_shared] = ACTIONS(2513), + [anon_sym_map_LBRACK] = ACTIONS(2513), + [anon_sym_chan] = ACTIONS(2513), + [anon_sym_thread] = ACTIONS(2513), + [anon_sym_atomic] = ACTIONS(2513), + [anon_sym_assert] = ACTIONS(2513), + [anon_sym_defer] = ACTIONS(2513), + [anon_sym_goto] = ACTIONS(2513), + [anon_sym_break] = ACTIONS(2513), + [anon_sym_continue] = ACTIONS(2513), + [anon_sym_return] = ACTIONS(2513), + [anon_sym_DOLLARfor] = ACTIONS(2513), + [anon_sym_for] = ACTIONS(2513), + [anon_sym_POUND] = ACTIONS(2513), + [anon_sym_asm] = ACTIONS(2513), + [anon_sym_AT_LBRACK] = ACTIONS(2513), + [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), }, [394] = { [sym_line_comment] = STATE(394), [sym_block_comment] = STATE(394), - [sym__expression] = STATE(2263), - [sym__expression_without_blocks] = STATE(2300), - [sym__expression_with_blocks] = STATE(2300), - [sym_inc_expression] = STATE(2307), - [sym_dec_expression] = STATE(2307), - [sym_or_block_expression] = STATE(2307), - [sym_option_propagation_expression] = STATE(2307), - [sym_result_propagation_expression] = STATE(2307), - [sym_anon_struct_value_expression] = STATE(2380), - [sym_go_expression] = STATE(2307), - [sym_spawn_expression] = STATE(2307), - [sym_parenthesized_expression] = STATE(2307), - [sym_call_expression] = STATE(2307), - [sym_type_initializer] = STATE(2380), - [sym_function_literal] = STATE(2307), - [sym_reference_expression] = STATE(2311), - [sym_type_reference_expression] = STATE(3541), - [sym_unary_expression] = STATE(2307), - [sym_receive_expression] = STATE(2307), - [sym_binary_expression] = STATE(2307), - [sym_as_type_cast_expression] = STATE(2307), - [sym__max_group] = STATE(2307), - [sym_literal] = STATE(2292), - [sym_map_init_expression] = STATE(2380), - [sym_array_creation] = STATE(2307), - [sym_fixed_array_creation] = STATE(2307), - [sym_selector_expression] = STATE(2307), - [sym_index_expression] = STATE(2307), - [sym_slice_expression] = STATE(2307), - [sym_if_expression] = STATE(2380), - [sym_compile_time_if_expression] = STATE(2380), - [sym_is_expression] = STATE(2307), - [sym_in_expression] = STATE(2307), - [sym_enum_fetch] = STATE(2307), - [sym_match_expression] = STATE(2380), - [sym_select_expression] = STATE(2380), - [sym_lock_expression] = STATE(2380), - [sym_unsafe_expression] = STATE(2380), - [sym_sql_expression] = STATE(2380), - [sym_c_string_literal] = STATE(2308), - [sym_raw_string_literal] = STATE(2308), - [sym_interpreted_string_literal] = STATE(2308), - [sym_mutability_modifiers] = STATE(939), - [sym_plain_type] = STATE(3565), - [sym__plain_type_without_special] = STATE(2302), - [sym_anon_struct_type] = STATE(2303), - [sym_multi_return_type] = STATE(2302), - [sym_result_type] = STATE(2302), - [sym_option_type] = STATE(2302), - [sym_qualified_type] = STATE(3541), - [sym_fixed_array_type] = STATE(2303), - [sym_array_type] = STATE(2303), - [sym_pointer_type] = STATE(2303), - [sym_wrong_pointer_type] = STATE(2303), - [sym_map_type] = STATE(2303), - [sym_channel_type] = STATE(2303), - [sym_shared_type] = STATE(2303), - [sym_thread_type] = STATE(2303), - [sym_atomic_type] = STATE(2303), - [sym_generic_type] = STATE(2303), - [sym_function_type] = STATE(2303), - [sym_identifier] = ACTIONS(1426), + [sym__expression] = STATE(2558), + [sym__expression_without_blocks] = STATE(2347), + [sym__expression_with_blocks] = STATE(2347), + [sym_inc_expression] = STATE(2379), + [sym_dec_expression] = STATE(2379), + [sym_or_block_expression] = STATE(2379), + [sym_option_propagation_expression] = STATE(2379), + [sym_result_propagation_expression] = STATE(2379), + [sym_anon_struct_value_expression] = STATE(2378), + [sym_go_expression] = STATE(2379), + [sym_spawn_expression] = STATE(2379), + [sym_parenthesized_expression] = STATE(2379), + [sym_call_expression] = STATE(2379), + [sym_type_initializer] = STATE(2378), + [sym_function_literal] = STATE(2379), + [sym_reference_expression] = STATE(2377), + [sym_type_reference_expression] = STATE(3460), + [sym_unary_expression] = STATE(2379), + [sym_receive_expression] = STATE(2379), + [sym_binary_expression] = STATE(2379), + [sym_as_type_cast_expression] = STATE(2379), + [sym__max_group] = STATE(2379), + [sym_literal] = STATE(2392), + [sym_map_init_expression] = STATE(2378), + [sym_array_creation] = STATE(2379), + [sym_fixed_array_creation] = STATE(2379), + [sym_selector_expression] = STATE(2379), + [sym_index_expression] = STATE(2379), + [sym_slice_expression] = STATE(2379), + [sym_if_expression] = STATE(2378), + [sym_compile_time_if_expression] = STATE(2378), + [sym_is_expression] = STATE(2379), + [sym_in_expression] = STATE(2379), + [sym_enum_fetch] = STATE(2379), + [sym_match_expression] = STATE(2378), + [sym_select_expression] = STATE(2378), + [sym_lock_expression] = STATE(2378), + [sym_unsafe_expression] = STATE(2378), + [sym_sql_expression] = STATE(2378), + [sym_c_string_literal] = STATE(2401), + [sym_raw_string_literal] = STATE(2401), + [sym_interpreted_string_literal] = STATE(2401), + [sym_mutability_modifiers] = STATE(900), + [sym_mutable_expression] = STATE(3813), + [sym_expression_list] = STATE(4492), + [sym_plain_type] = STATE(4160), + [sym__plain_type_without_special] = STATE(2360), + [sym_anon_struct_type] = STATE(2362), + [sym_multi_return_type] = STATE(2360), + [sym_result_type] = STATE(2360), + [sym_option_type] = STATE(2360), + [sym_qualified_type] = STATE(3460), + [sym_fixed_array_type] = STATE(2362), + [sym_array_type] = STATE(2362), + [sym_pointer_type] = STATE(2362), + [sym_wrong_pointer_type] = STATE(2362), + [sym_map_type] = STATE(2362), + [sym_channel_type] = STATE(2362), + [sym_shared_type] = STATE(2362), + [sym_thread_type] = STATE(2362), + [sym_atomic_type] = STATE(2362), + [sym_generic_type] = STATE(2362), + [sym_function_type] = STATE(2362), + [sym_identifier] = ACTIONS(1815), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1428), - [anon_sym_LBRACE] = ACTIONS(1430), - [anon_sym_COMMA] = ACTIONS(563), - [anon_sym_LPAREN] = ACTIONS(1432), - [anon_sym_RPAREN] = ACTIONS(563), - [anon_sym_fn] = ACTIONS(1434), - [anon_sym_PLUS] = ACTIONS(2491), - [anon_sym_DASH] = ACTIONS(2491), - [anon_sym_STAR] = ACTIONS(2493), - [anon_sym_struct] = ACTIONS(1440), + [anon_sym_DOT] = ACTIONS(1430), + [anon_sym_LBRACE] = ACTIONS(2518), + [anon_sym_LPAREN] = ACTIONS(1434), + [anon_sym_fn] = ACTIONS(1436), + [anon_sym_PLUS] = ACTIONS(1817), + [anon_sym_DASH] = ACTIONS(1817), + [anon_sym_STAR] = ACTIONS(1819), + [anon_sym_struct] = ACTIONS(1442), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(2495), - [anon_sym_go] = ACTIONS(2497), - [anon_sym_spawn] = ACTIONS(2499), - [anon_sym_json_DOTdecode] = ACTIONS(1448), - [anon_sym_LBRACK2] = ACTIONS(1450), - [anon_sym_TILDE] = ACTIONS(2491), - [anon_sym_CARET] = ACTIONS(2491), - [anon_sym_AMP] = ACTIONS(2501), - [anon_sym_LT_DASH] = ACTIONS(2503), - [sym_none] = ACTIONS(1456), - [sym_true] = ACTIONS(1456), - [sym_false] = ACTIONS(1456), - [sym_nil] = ACTIONS(1456), - [anon_sym_if] = ACTIONS(1827), - [anon_sym_DOLLARif] = ACTIONS(1460), - [anon_sym_match] = ACTIONS(1462), - [anon_sym_select] = ACTIONS(1464), - [anon_sym_lock] = ACTIONS(1466), - [anon_sym_rlock] = ACTIONS(1466), - [anon_sym_unsafe] = ACTIONS(1833), - [anon_sym_sql] = ACTIONS(1470), - [sym_int_literal] = ACTIONS(1456), - [sym_float_literal] = ACTIONS(1472), - [sym_rune_literal] = ACTIONS(1472), - [sym_pseudo_compile_time_identifier] = ACTIONS(1474), + [anon_sym_BANG] = ACTIONS(1821), + [anon_sym_go] = ACTIONS(1823), + [anon_sym_spawn] = ACTIONS(1825), + [anon_sym_json_DOTdecode] = ACTIONS(1450), + [anon_sym_LBRACK2] = ACTIONS(1827), + [anon_sym_TILDE] = ACTIONS(1817), + [anon_sym_CARET] = ACTIONS(1817), + [anon_sym_AMP] = ACTIONS(1829), + [anon_sym_LT_DASH] = ACTIONS(1831), + [sym_none] = ACTIONS(1458), + [sym_true] = ACTIONS(1458), + [sym_false] = ACTIONS(1458), + [sym_nil] = ACTIONS(1458), + [anon_sym_if] = ACTIONS(1833), + [anon_sym_DOLLARif] = ACTIONS(1462), + [anon_sym_match] = ACTIONS(1464), + [anon_sym_select] = ACTIONS(1835), + [anon_sym_lock] = ACTIONS(1837), + [anon_sym_rlock] = ACTIONS(1837), + [anon_sym_unsafe] = ACTIONS(1839), + [anon_sym_sql] = ACTIONS(1472), + [sym_int_literal] = ACTIONS(1458), + [sym_float_literal] = ACTIONS(1474), + [sym_rune_literal] = ACTIONS(1474), + [sym_pseudo_compile_time_identifier] = ACTIONS(1476), [anon_sym_shared] = ACTIONS(83), [anon_sym_map_LBRACK] = ACTIONS(85), [anon_sym_chan] = ACTIONS(87), [anon_sym_thread] = ACTIONS(89), [anon_sym_atomic] = ACTIONS(91), - [sym___double_quote] = ACTIONS(1478), - [sym___single_quote] = ACTIONS(1480), - [sym___c_double_quote] = ACTIONS(1482), - [sym___c_single_quote] = ACTIONS(1484), - [sym___r_double_quote] = ACTIONS(1486), - [sym___r_single_quote] = ACTIONS(1488), + [sym___double_quote] = ACTIONS(1480), + [sym___single_quote] = ACTIONS(1482), + [sym___c_double_quote] = ACTIONS(1484), + [sym___c_single_quote] = ACTIONS(1486), + [sym___r_double_quote] = ACTIONS(1488), + [sym___r_single_quote] = ACTIONS(1490), }, [395] = { [sym_line_comment] = STATE(395), [sym_block_comment] = STATE(395), - [sym__expression] = STATE(2600), - [sym__expression_without_blocks] = STATE(2300), - [sym__expression_with_blocks] = STATE(2300), - [sym_inc_expression] = STATE(2307), - [sym_dec_expression] = STATE(2307), - [sym_or_block_expression] = STATE(2307), - [sym_option_propagation_expression] = STATE(2307), - [sym_result_propagation_expression] = STATE(2307), - [sym_anon_struct_value_expression] = STATE(2380), - [sym_go_expression] = STATE(2307), - [sym_spawn_expression] = STATE(2307), - [sym_parenthesized_expression] = STATE(2307), - [sym_call_expression] = STATE(2307), - [sym_type_initializer] = STATE(2380), - [sym_function_literal] = STATE(2307), - [sym_reference_expression] = STATE(2311), - [sym_type_reference_expression] = STATE(3541), - [sym_unary_expression] = STATE(2307), - [sym_receive_expression] = STATE(2307), - [sym_binary_expression] = STATE(2307), - [sym_as_type_cast_expression] = STATE(2307), - [sym__max_group] = STATE(2307), - [sym_literal] = STATE(2292), - [sym_map_init_expression] = STATE(2380), - [sym_array_creation] = STATE(2307), - [sym_fixed_array_creation] = STATE(2307), - [sym_selector_expression] = STATE(2307), - [sym_index_expression] = STATE(2307), - [sym_slice_expression] = STATE(2307), - [sym_if_expression] = STATE(2380), - [sym_compile_time_if_expression] = STATE(2380), - [sym_is_expression] = STATE(2307), - [sym_in_expression] = STATE(2307), - [sym_enum_fetch] = STATE(2307), - [sym_match_expression] = STATE(2380), - [sym_select_expression] = STATE(2380), - [sym_lock_expression] = STATE(2380), - [sym_unsafe_expression] = STATE(2380), - [sym_sql_expression] = STATE(2380), - [sym_c_string_literal] = STATE(2308), - [sym_raw_string_literal] = STATE(2308), - [sym_interpreted_string_literal] = STATE(2308), - [sym_mutability_modifiers] = STATE(939), - [sym_plain_type] = STATE(3557), - [sym__plain_type_without_special] = STATE(2302), - [sym_anon_struct_type] = STATE(2303), - [sym_multi_return_type] = STATE(2302), - [sym_result_type] = STATE(2302), - [sym_option_type] = STATE(2302), - [sym_qualified_type] = STATE(3541), - [sym_fixed_array_type] = STATE(2303), - [sym_array_type] = STATE(2303), - [sym_pointer_type] = STATE(2303), - [sym_wrong_pointer_type] = STATE(2303), - [sym_map_type] = STATE(2303), - [sym_channel_type] = STATE(2303), - [sym_shared_type] = STATE(2303), - [sym_thread_type] = STATE(2303), - [sym_atomic_type] = STATE(2303), - [sym_generic_type] = STATE(2303), - [sym_function_type] = STATE(2303), - [sym_range] = STATE(4467), - [sym_identifier] = ACTIONS(2135), + [ts_builtin_sym_end] = ACTIONS(2520), + [sym_identifier] = ACTIONS(2522), + [anon_sym_LF] = ACTIONS(2522), + [anon_sym_CR] = ACTIONS(2522), + [anon_sym_CR_LF] = ACTIONS(2522), + [anon_sym_SLASH_SLASH] = ACTIONS(497), + [anon_sym_SLASH_STAR] = ACTIONS(499), + [anon_sym_DOT] = ACTIONS(2522), + [anon_sym_as] = ACTIONS(2522), + [anon_sym_LBRACE] = ACTIONS(2522), + [anon_sym_COMMA] = ACTIONS(2522), + [anon_sym_const] = ACTIONS(2522), + [anon_sym_LPAREN] = ACTIONS(2522), + [anon_sym_EQ] = ACTIONS(2522), + [anon_sym___global] = ACTIONS(2522), + [anon_sym_type] = ACTIONS(2522), + [anon_sym_PIPE] = ACTIONS(2522), + [anon_sym_fn] = ACTIONS(2522), + [anon_sym_PLUS] = ACTIONS(2522), + [anon_sym_DASH] = ACTIONS(2522), + [anon_sym_STAR] = ACTIONS(2522), + [anon_sym_SLASH] = ACTIONS(2522), + [anon_sym_PERCENT] = ACTIONS(2522), + [anon_sym_LT] = ACTIONS(2522), + [anon_sym_GT] = ACTIONS(2522), + [anon_sym_EQ_EQ] = ACTIONS(2522), + [anon_sym_BANG_EQ] = ACTIONS(2522), + [anon_sym_LT_EQ] = ACTIONS(2522), + [anon_sym_GT_EQ] = ACTIONS(2522), + [anon_sym_LBRACK] = ACTIONS(2520), + [anon_sym_struct] = ACTIONS(2522), + [anon_sym_union] = ACTIONS(2522), + [anon_sym_pub] = ACTIONS(2522), + [anon_sym_mut] = ACTIONS(2522), + [anon_sym_enum] = ACTIONS(2522), + [anon_sym_interface] = ACTIONS(2522), + [anon_sym_PLUS_PLUS] = ACTIONS(2522), + [anon_sym_DASH_DASH] = ACTIONS(2522), + [anon_sym_QMARK] = ACTIONS(2522), + [anon_sym_BANG] = ACTIONS(2522), + [anon_sym_go] = ACTIONS(2522), + [anon_sym_spawn] = ACTIONS(2522), + [anon_sym_json_DOTdecode] = ACTIONS(2522), + [anon_sym_LBRACK2] = ACTIONS(2522), + [anon_sym_TILDE] = ACTIONS(2522), + [anon_sym_CARET] = ACTIONS(2522), + [anon_sym_AMP] = ACTIONS(2522), + [anon_sym_LT_DASH] = ACTIONS(2522), + [anon_sym_LT_LT] = ACTIONS(2522), + [anon_sym_GT_GT] = ACTIONS(2522), + [anon_sym_GT_GT_GT] = ACTIONS(2522), + [anon_sym_AMP_CARET] = ACTIONS(2522), + [anon_sym_AMP_AMP] = ACTIONS(2522), + [anon_sym_PIPE_PIPE] = ACTIONS(2522), + [anon_sym_or] = ACTIONS(2522), + [sym_none] = ACTIONS(2522), + [sym_true] = ACTIONS(2522), + [sym_false] = ACTIONS(2522), + [sym_nil] = ACTIONS(2522), + [anon_sym_QMARK_DOT] = ACTIONS(2522), + [anon_sym_POUND_LBRACK] = ACTIONS(2522), + [anon_sym_if] = ACTIONS(2522), + [anon_sym_DOLLARif] = ACTIONS(2522), + [anon_sym_is] = ACTIONS(2522), + [anon_sym_BANGis] = ACTIONS(2522), + [anon_sym_in] = ACTIONS(2522), + [anon_sym_BANGin] = ACTIONS(2522), + [anon_sym_match] = ACTIONS(2522), + [anon_sym_select] = ACTIONS(2522), + [anon_sym_STAR_EQ] = ACTIONS(2522), + [anon_sym_SLASH_EQ] = ACTIONS(2522), + [anon_sym_PERCENT_EQ] = ACTIONS(2522), + [anon_sym_LT_LT_EQ] = ACTIONS(2522), + [anon_sym_GT_GT_EQ] = ACTIONS(2522), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(2522), + [anon_sym_AMP_EQ] = ACTIONS(2522), + [anon_sym_AMP_CARET_EQ] = ACTIONS(2522), + [anon_sym_PLUS_EQ] = ACTIONS(2522), + [anon_sym_DASH_EQ] = ACTIONS(2522), + [anon_sym_PIPE_EQ] = ACTIONS(2522), + [anon_sym_CARET_EQ] = ACTIONS(2522), + [anon_sym_COLON_EQ] = ACTIONS(2522), + [anon_sym_lock] = ACTIONS(2522), + [anon_sym_rlock] = ACTIONS(2522), + [anon_sym_unsafe] = ACTIONS(2522), + [anon_sym_sql] = ACTIONS(2522), + [sym_int_literal] = ACTIONS(2522), + [sym_float_literal] = ACTIONS(2522), + [sym_rune_literal] = ACTIONS(2522), + [sym_pseudo_compile_time_identifier] = ACTIONS(2522), + [anon_sym_shared] = ACTIONS(2522), + [anon_sym_map_LBRACK] = ACTIONS(2522), + [anon_sym_chan] = ACTIONS(2522), + [anon_sym_thread] = ACTIONS(2522), + [anon_sym_atomic] = ACTIONS(2522), + [anon_sym_assert] = ACTIONS(2522), + [anon_sym_defer] = ACTIONS(2522), + [anon_sym_goto] = ACTIONS(2522), + [anon_sym_break] = ACTIONS(2522), + [anon_sym_continue] = ACTIONS(2522), + [anon_sym_return] = ACTIONS(2522), + [anon_sym_DOLLARfor] = ACTIONS(2522), + [anon_sym_for] = ACTIONS(2522), + [anon_sym_POUND] = ACTIONS(2522), + [anon_sym_asm] = ACTIONS(2522), + [anon_sym_AT_LBRACK] = ACTIONS(2522), + [sym___double_quote] = ACTIONS(2522), + [sym___single_quote] = ACTIONS(2522), + [sym___c_double_quote] = ACTIONS(2522), + [sym___c_single_quote] = ACTIONS(2522), + [sym___r_double_quote] = ACTIONS(2522), + [sym___r_single_quote] = ACTIONS(2522), + }, + [396] = { + [sym_line_comment] = STATE(396), + [sym_block_comment] = STATE(396), + [sym__expression] = STATE(1273), + [sym__expression_without_blocks] = STATE(1318), + [sym__expression_with_blocks] = STATE(1318), + [sym_inc_expression] = STATE(1319), + [sym_dec_expression] = STATE(1319), + [sym_or_block_expression] = STATE(1319), + [sym_option_propagation_expression] = STATE(1319), + [sym_result_propagation_expression] = STATE(1319), + [sym_anon_struct_value_expression] = STATE(1320), + [sym_go_expression] = STATE(1319), + [sym_spawn_expression] = STATE(1319), + [sym_parenthesized_expression] = STATE(1319), + [sym_call_expression] = STATE(1319), + [sym_type_initializer] = STATE(1320), + [sym_function_literal] = STATE(1319), + [sym_reference_expression] = STATE(1298), + [sym_type_reference_expression] = STATE(3460), + [sym_unary_expression] = STATE(1319), + [sym_receive_expression] = STATE(1319), + [sym_binary_expression] = STATE(1319), + [sym_as_type_cast_expression] = STATE(1319), + [sym__max_group] = STATE(1319), + [sym_literal] = STATE(1314), + [sym_map_init_expression] = STATE(1320), + [sym_array_creation] = STATE(1319), + [sym_fixed_array_creation] = STATE(1319), + [sym_selector_expression] = STATE(1319), + [sym_index_expression] = STATE(1319), + [sym_slice_expression] = STATE(1319), + [sym_if_expression] = STATE(1320), + [sym_compile_time_if_expression] = STATE(1320), + [sym_is_expression] = STATE(1319), + [sym_in_expression] = STATE(1319), + [sym_enum_fetch] = STATE(1319), + [sym_match_expression] = STATE(1320), + [sym_select_expression] = STATE(1320), + [sym_lock_expression] = STATE(1320), + [sym_unsafe_expression] = STATE(1320), + [sym_sql_expression] = STATE(1320), + [sym_c_string_literal] = STATE(1291), + [sym_raw_string_literal] = STATE(1291), + [sym_interpreted_string_literal] = STATE(1291), + [sym_mutability_modifiers] = STATE(639), + [sym_plain_type] = STATE(4307), + [sym__plain_type_without_special] = STATE(2360), + [sym_anon_struct_type] = STATE(2362), + [sym_multi_return_type] = STATE(2360), + [sym_result_type] = STATE(2360), + [sym_option_type] = STATE(2360), + [sym_qualified_type] = STATE(3460), + [sym_fixed_array_type] = STATE(2362), + [sym_array_type] = STATE(2362), + [sym_pointer_type] = STATE(2362), + [sym_wrong_pointer_type] = STATE(2362), + [sym_map_type] = STATE(2362), + [sym_channel_type] = STATE(2362), + [sym_shared_type] = STATE(2362), + [sym_thread_type] = STATE(2362), + [sym_atomic_type] = STATE(2362), + [sym_generic_type] = STATE(2362), + [sym_function_type] = STATE(2362), + [aux_sym__array_repeat1] = STATE(405), + [sym_identifier] = ACTIONS(1360), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1428), - [anon_sym_LBRACE] = ACTIONS(1430), - [anon_sym_LPAREN] = ACTIONS(1432), - [anon_sym_fn] = ACTIONS(1434), - [anon_sym_PLUS] = ACTIONS(1436), - [anon_sym_DASH] = ACTIONS(1436), - [anon_sym_STAR] = ACTIONS(2137), - [anon_sym_struct] = ACTIONS(1440), + [anon_sym_DOT] = ACTIONS(1362), + [anon_sym_LBRACE] = ACTIONS(1364), + [anon_sym_LPAREN] = ACTIONS(1366), + [anon_sym_fn] = ACTIONS(1368), + [anon_sym_PLUS] = ACTIONS(1370), + [anon_sym_DASH] = ACTIONS(1370), + [anon_sym_STAR] = ACTIONS(1372), + [anon_sym_RBRACK] = ACTIONS(2524), + [anon_sym_struct] = ACTIONS(1376), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(2139), - [anon_sym_go] = ACTIONS(1444), - [anon_sym_spawn] = ACTIONS(1446), - [anon_sym_json_DOTdecode] = ACTIONS(1448), - [anon_sym_LBRACK2] = ACTIONS(1450), - [anon_sym_TILDE] = ACTIONS(1436), - [anon_sym_CARET] = ACTIONS(1436), - [anon_sym_AMP] = ACTIONS(2141), - [anon_sym_LT_DASH] = ACTIONS(1454), - [sym_none] = ACTIONS(1456), - [sym_true] = ACTIONS(1456), - [sym_false] = ACTIONS(1456), - [sym_nil] = ACTIONS(1456), - [anon_sym_if] = ACTIONS(1827), - [anon_sym_DOLLARif] = ACTIONS(1460), - [anon_sym_match] = ACTIONS(1462), - [anon_sym_select] = ACTIONS(1464), - [anon_sym_lock] = ACTIONS(1466), - [anon_sym_rlock] = ACTIONS(1466), - [anon_sym_unsafe] = ACTIONS(1833), - [anon_sym_sql] = ACTIONS(1470), - [sym_int_literal] = ACTIONS(1456), - [sym_float_literal] = ACTIONS(1472), - [sym_rune_literal] = ACTIONS(1472), - [sym_pseudo_compile_time_identifier] = ACTIONS(1474), + [anon_sym_BANG] = ACTIONS(1378), + [anon_sym_go] = ACTIONS(1380), + [anon_sym_spawn] = ACTIONS(1382), + [anon_sym_json_DOTdecode] = ACTIONS(1384), + [anon_sym_LBRACK2] = ACTIONS(1386), + [anon_sym_TILDE] = ACTIONS(1370), + [anon_sym_CARET] = ACTIONS(1370), + [anon_sym_AMP] = ACTIONS(1388), + [anon_sym_LT_DASH] = ACTIONS(1390), + [sym_none] = ACTIONS(1392), + [sym_true] = ACTIONS(1392), + [sym_false] = ACTIONS(1392), + [sym_nil] = ACTIONS(1392), + [anon_sym_if] = ACTIONS(1865), + [anon_sym_DOLLARif] = ACTIONS(1396), + [anon_sym_match] = ACTIONS(1398), + [anon_sym_select] = ACTIONS(1400), + [anon_sym_lock] = ACTIONS(1402), + [anon_sym_rlock] = ACTIONS(1402), + [anon_sym_unsafe] = ACTIONS(1871), + [anon_sym_sql] = ACTIONS(1406), + [sym_int_literal] = ACTIONS(1392), + [sym_float_literal] = ACTIONS(1410), + [sym_rune_literal] = ACTIONS(1410), + [sym_pseudo_compile_time_identifier] = ACTIONS(1412), [anon_sym_shared] = ACTIONS(83), [anon_sym_map_LBRACK] = ACTIONS(85), [anon_sym_chan] = ACTIONS(87), [anon_sym_thread] = ACTIONS(89), [anon_sym_atomic] = ACTIONS(91), - [anon_sym_DOT_DOT] = ACTIONS(1476), - [sym___double_quote] = ACTIONS(1478), - [sym___single_quote] = ACTIONS(1480), - [sym___c_double_quote] = ACTIONS(1482), - [sym___c_single_quote] = ACTIONS(1484), - [sym___r_double_quote] = ACTIONS(1486), - [sym___r_single_quote] = ACTIONS(1488), - }, - [396] = { - [sym_line_comment] = STATE(396), - [sym_block_comment] = STATE(396), - [ts_builtin_sym_end] = ACTIONS(2505), - [sym_identifier] = ACTIONS(2507), - [anon_sym_LF] = ACTIONS(2507), - [anon_sym_CR] = ACTIONS(2507), - [anon_sym_CR_LF] = ACTIONS(2507), - [anon_sym_SLASH_SLASH] = ACTIONS(497), - [anon_sym_SLASH_STAR] = ACTIONS(499), - [anon_sym_DOT] = ACTIONS(1853), - [anon_sym_as] = ACTIONS(2507), - [anon_sym_LBRACE] = ACTIONS(2507), - [anon_sym_COMMA] = ACTIONS(2507), - [anon_sym_const] = ACTIONS(2507), - [anon_sym_LPAREN] = ACTIONS(2507), - [anon_sym_EQ] = ACTIONS(2507), - [anon_sym___global] = ACTIONS(2507), - [anon_sym_type] = ACTIONS(2507), - [anon_sym_PIPE] = ACTIONS(2507), - [anon_sym_fn] = ACTIONS(2507), - [anon_sym_PLUS] = ACTIONS(2507), - [anon_sym_DASH] = ACTIONS(2507), - [anon_sym_STAR] = ACTIONS(2507), - [anon_sym_SLASH] = ACTIONS(2507), - [anon_sym_PERCENT] = ACTIONS(2507), - [anon_sym_LT] = ACTIONS(2507), - [anon_sym_GT] = ACTIONS(2507), - [anon_sym_EQ_EQ] = ACTIONS(2507), - [anon_sym_BANG_EQ] = ACTIONS(2507), - [anon_sym_LT_EQ] = ACTIONS(2507), - [anon_sym_GT_EQ] = ACTIONS(2507), - [anon_sym_LBRACK] = ACTIONS(2505), - [anon_sym_struct] = ACTIONS(2507), - [anon_sym_union] = ACTIONS(2507), - [anon_sym_pub] = ACTIONS(2507), - [anon_sym_mut] = ACTIONS(2507), - [anon_sym_enum] = ACTIONS(2507), - [anon_sym_interface] = ACTIONS(2507), - [anon_sym_PLUS_PLUS] = ACTIONS(2507), - [anon_sym_DASH_DASH] = ACTIONS(2507), - [anon_sym_QMARK] = ACTIONS(2507), - [anon_sym_BANG] = ACTIONS(2507), - [anon_sym_go] = ACTIONS(2507), - [anon_sym_spawn] = ACTIONS(2507), - [anon_sym_json_DOTdecode] = ACTIONS(2507), - [anon_sym_LBRACK2] = ACTIONS(2507), - [anon_sym_TILDE] = ACTIONS(2507), - [anon_sym_CARET] = ACTIONS(2507), - [anon_sym_AMP] = ACTIONS(2507), - [anon_sym_LT_DASH] = ACTIONS(2507), - [anon_sym_LT_LT] = ACTIONS(2507), - [anon_sym_GT_GT] = ACTIONS(2507), - [anon_sym_GT_GT_GT] = ACTIONS(2507), - [anon_sym_AMP_CARET] = ACTIONS(2507), - [anon_sym_AMP_AMP] = ACTIONS(2507), - [anon_sym_PIPE_PIPE] = ACTIONS(2507), - [anon_sym_or] = ACTIONS(2507), - [sym_none] = ACTIONS(2507), - [sym_true] = ACTIONS(2507), - [sym_false] = ACTIONS(2507), - [sym_nil] = ACTIONS(2507), - [anon_sym_QMARK_DOT] = ACTIONS(2507), - [anon_sym_POUND_LBRACK] = ACTIONS(2507), - [anon_sym_if] = ACTIONS(2507), - [anon_sym_DOLLARif] = ACTIONS(2507), - [anon_sym_is] = ACTIONS(2507), - [anon_sym_BANGis] = ACTIONS(2507), - [anon_sym_in] = ACTIONS(2507), - [anon_sym_BANGin] = ACTIONS(2507), - [anon_sym_match] = ACTIONS(2507), - [anon_sym_select] = ACTIONS(2507), - [anon_sym_STAR_EQ] = ACTIONS(2507), - [anon_sym_SLASH_EQ] = ACTIONS(2507), - [anon_sym_PERCENT_EQ] = ACTIONS(2507), - [anon_sym_LT_LT_EQ] = ACTIONS(2507), - [anon_sym_GT_GT_EQ] = ACTIONS(2507), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(2507), - [anon_sym_AMP_EQ] = ACTIONS(2507), - [anon_sym_AMP_CARET_EQ] = ACTIONS(2507), - [anon_sym_PLUS_EQ] = ACTIONS(2507), - [anon_sym_DASH_EQ] = ACTIONS(2507), - [anon_sym_PIPE_EQ] = ACTIONS(2507), - [anon_sym_CARET_EQ] = ACTIONS(2507), - [anon_sym_COLON_EQ] = ACTIONS(2507), - [anon_sym_lock] = ACTIONS(2507), - [anon_sym_rlock] = ACTIONS(2507), - [anon_sym_unsafe] = ACTIONS(2507), - [anon_sym_sql] = ACTIONS(2507), - [sym_int_literal] = ACTIONS(2507), - [sym_float_literal] = ACTIONS(2507), - [sym_rune_literal] = ACTIONS(2507), - [sym_pseudo_compile_time_identifier] = ACTIONS(2507), - [anon_sym_shared] = ACTIONS(2507), - [anon_sym_map_LBRACK] = ACTIONS(2507), - [anon_sym_chan] = ACTIONS(2507), - [anon_sym_thread] = ACTIONS(2507), - [anon_sym_atomic] = ACTIONS(2507), - [anon_sym_assert] = ACTIONS(2507), - [anon_sym_defer] = ACTIONS(2507), - [anon_sym_goto] = ACTIONS(2507), - [anon_sym_break] = ACTIONS(2507), - [anon_sym_continue] = ACTIONS(2507), - [anon_sym_return] = ACTIONS(2507), - [anon_sym_DOLLARfor] = ACTIONS(2507), - [anon_sym_for] = ACTIONS(2507), - [anon_sym_POUND] = ACTIONS(2507), - [anon_sym_asm] = ACTIONS(2507), - [anon_sym_AT_LBRACK] = ACTIONS(2507), - [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), + [sym___double_quote] = ACTIONS(1414), + [sym___single_quote] = ACTIONS(1416), + [sym___c_double_quote] = ACTIONS(1418), + [sym___c_single_quote] = ACTIONS(1420), + [sym___r_double_quote] = ACTIONS(1422), + [sym___r_single_quote] = ACTIONS(1424), }, [397] = { [sym_line_comment] = STATE(397), [sym_block_comment] = STATE(397), - [ts_builtin_sym_end] = ACTIONS(2509), - [sym_identifier] = ACTIONS(2511), - [anon_sym_LF] = ACTIONS(2511), - [anon_sym_CR] = ACTIONS(2511), - [anon_sym_CR_LF] = ACTIONS(2511), - [anon_sym_SLASH_SLASH] = ACTIONS(497), - [anon_sym_SLASH_STAR] = ACTIONS(499), - [anon_sym_DOT] = ACTIONS(2511), - [anon_sym_as] = ACTIONS(2511), - [anon_sym_LBRACE] = ACTIONS(2511), - [anon_sym_COMMA] = ACTIONS(2511), - [anon_sym_const] = ACTIONS(2511), - [anon_sym_LPAREN] = ACTIONS(2511), - [anon_sym_EQ] = ACTIONS(2511), - [anon_sym___global] = ACTIONS(2511), - [anon_sym_type] = ACTIONS(2511), - [anon_sym_PIPE] = ACTIONS(2511), - [anon_sym_fn] = ACTIONS(2511), - [anon_sym_PLUS] = ACTIONS(2511), - [anon_sym_DASH] = ACTIONS(2511), - [anon_sym_STAR] = ACTIONS(2511), - [anon_sym_SLASH] = ACTIONS(2511), - [anon_sym_PERCENT] = ACTIONS(2511), - [anon_sym_LT] = ACTIONS(2511), - [anon_sym_GT] = ACTIONS(2511), - [anon_sym_EQ_EQ] = ACTIONS(2511), - [anon_sym_BANG_EQ] = ACTIONS(2511), - [anon_sym_LT_EQ] = ACTIONS(2511), - [anon_sym_GT_EQ] = ACTIONS(2511), - [anon_sym_LBRACK] = ACTIONS(2509), - [anon_sym_struct] = ACTIONS(2511), - [anon_sym_union] = ACTIONS(2511), - [anon_sym_pub] = ACTIONS(2511), - [anon_sym_mut] = ACTIONS(2511), - [anon_sym_enum] = ACTIONS(2511), - [anon_sym_interface] = ACTIONS(2511), - [anon_sym_PLUS_PLUS] = ACTIONS(2511), - [anon_sym_DASH_DASH] = ACTIONS(2511), - [anon_sym_QMARK] = ACTIONS(2511), - [anon_sym_BANG] = ACTIONS(2511), - [anon_sym_go] = ACTIONS(2511), - [anon_sym_spawn] = ACTIONS(2511), - [anon_sym_json_DOTdecode] = ACTIONS(2511), - [anon_sym_LBRACK2] = ACTIONS(2511), - [anon_sym_TILDE] = ACTIONS(2511), - [anon_sym_CARET] = ACTIONS(2511), - [anon_sym_AMP] = ACTIONS(2511), - [anon_sym_LT_DASH] = ACTIONS(2511), - [anon_sym_LT_LT] = ACTIONS(2511), - [anon_sym_GT_GT] = ACTIONS(2511), - [anon_sym_GT_GT_GT] = ACTIONS(2511), - [anon_sym_AMP_CARET] = ACTIONS(2511), - [anon_sym_AMP_AMP] = ACTIONS(2511), - [anon_sym_PIPE_PIPE] = ACTIONS(2511), - [anon_sym_or] = ACTIONS(2511), - [sym_none] = ACTIONS(2511), - [sym_true] = ACTIONS(2511), - [sym_false] = ACTIONS(2511), - [sym_nil] = ACTIONS(2511), - [anon_sym_QMARK_DOT] = ACTIONS(2511), - [anon_sym_POUND_LBRACK] = ACTIONS(2511), - [anon_sym_if] = ACTIONS(2511), - [anon_sym_DOLLARif] = ACTIONS(2511), - [anon_sym_is] = ACTIONS(2511), - [anon_sym_BANGis] = ACTIONS(2511), - [anon_sym_in] = ACTIONS(2511), - [anon_sym_BANGin] = ACTIONS(2511), - [anon_sym_match] = ACTIONS(2511), - [anon_sym_select] = ACTIONS(2511), - [anon_sym_STAR_EQ] = ACTIONS(2511), - [anon_sym_SLASH_EQ] = ACTIONS(2511), - [anon_sym_PERCENT_EQ] = ACTIONS(2511), - [anon_sym_LT_LT_EQ] = ACTIONS(2511), - [anon_sym_GT_GT_EQ] = ACTIONS(2511), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(2511), - [anon_sym_AMP_EQ] = ACTIONS(2511), - [anon_sym_AMP_CARET_EQ] = ACTIONS(2511), - [anon_sym_PLUS_EQ] = ACTIONS(2511), - [anon_sym_DASH_EQ] = ACTIONS(2511), - [anon_sym_PIPE_EQ] = ACTIONS(2511), - [anon_sym_CARET_EQ] = ACTIONS(2511), - [anon_sym_COLON_EQ] = ACTIONS(2511), - [anon_sym_lock] = ACTIONS(2511), - [anon_sym_rlock] = ACTIONS(2511), - [anon_sym_unsafe] = ACTIONS(2511), - [anon_sym_sql] = ACTIONS(2511), - [sym_int_literal] = ACTIONS(2511), - [sym_float_literal] = ACTIONS(2511), - [sym_rune_literal] = ACTIONS(2511), - [sym_pseudo_compile_time_identifier] = ACTIONS(2511), - [anon_sym_shared] = ACTIONS(2511), - [anon_sym_map_LBRACK] = ACTIONS(2511), - [anon_sym_chan] = ACTIONS(2511), - [anon_sym_thread] = ACTIONS(2511), - [anon_sym_atomic] = ACTIONS(2511), - [anon_sym_assert] = ACTIONS(2511), - [anon_sym_defer] = ACTIONS(2511), - [anon_sym_goto] = ACTIONS(2511), - [anon_sym_break] = ACTIONS(2511), - [anon_sym_continue] = ACTIONS(2511), - [anon_sym_return] = ACTIONS(2511), - [anon_sym_DOLLARfor] = ACTIONS(2511), - [anon_sym_for] = ACTIONS(2511), - [anon_sym_POUND] = ACTIONS(2511), - [anon_sym_asm] = ACTIONS(2511), - [anon_sym_AT_LBRACK] = ACTIONS(2511), - [sym___double_quote] = ACTIONS(2511), - [sym___single_quote] = ACTIONS(2511), - [sym___c_double_quote] = ACTIONS(2511), - [sym___c_single_quote] = ACTIONS(2511), - [sym___r_double_quote] = ACTIONS(2511), - [sym___r_single_quote] = ACTIONS(2511), - }, - [398] = { - [sym_line_comment] = STATE(398), - [sym_block_comment] = STATE(398), - [sym__expression] = STATE(2586), - [sym__expression_without_blocks] = STATE(2300), - [sym__expression_with_blocks] = STATE(2300), - [sym_inc_expression] = STATE(2307), - [sym_dec_expression] = STATE(2307), - [sym_or_block_expression] = STATE(2307), - [sym_option_propagation_expression] = STATE(2307), - [sym_result_propagation_expression] = STATE(2307), - [sym_anon_struct_value_expression] = STATE(2380), - [sym_go_expression] = STATE(2307), - [sym_spawn_expression] = STATE(2307), - [sym_parenthesized_expression] = STATE(2307), - [sym_call_expression] = STATE(2307), - [sym_type_initializer] = STATE(2380), - [sym_function_literal] = STATE(2307), - [sym_reference_expression] = STATE(2311), - [sym_type_reference_expression] = STATE(3541), - [sym_unary_expression] = STATE(2307), - [sym_receive_expression] = STATE(2307), - [sym_binary_expression] = STATE(2307), - [sym_as_type_cast_expression] = STATE(2307), - [sym__max_group] = STATE(2307), - [sym_literal] = STATE(2292), - [sym_map_init_expression] = STATE(2380), - [sym_array_creation] = STATE(2307), - [sym_fixed_array_creation] = STATE(2307), - [sym_selector_expression] = STATE(2307), - [sym_index_expression] = STATE(2307), - [sym_slice_expression] = STATE(2307), - [sym_if_expression] = STATE(2380), - [sym_compile_time_if_expression] = STATE(2380), - [sym_is_expression] = STATE(2307), - [sym_in_expression] = STATE(2307), - [sym_enum_fetch] = STATE(2307), - [sym_match_expression] = STATE(2380), - [sym_select_expression] = STATE(2380), - [sym_lock_expression] = STATE(2380), - [sym_unsafe_expression] = STATE(2380), - [sym_sql_expression] = STATE(2380), - [sym_c_string_literal] = STATE(2308), - [sym_raw_string_literal] = STATE(2308), - [sym_interpreted_string_literal] = STATE(2308), - [sym_mutability_modifiers] = STATE(939), - [sym_plain_type] = STATE(4297), - [sym__plain_type_without_special] = STATE(2302), - [sym_anon_struct_type] = STATE(2303), - [sym_multi_return_type] = STATE(2302), - [sym_result_type] = STATE(2302), - [sym_option_type] = STATE(2302), - [sym_qualified_type] = STATE(3541), - [sym_fixed_array_type] = STATE(2303), - [sym_array_type] = STATE(2303), - [sym_pointer_type] = STATE(2303), - [sym_wrong_pointer_type] = STATE(2303), - [sym_map_type] = STATE(2303), - [sym_channel_type] = STATE(2303), - [sym_shared_type] = STATE(2303), - [sym_thread_type] = STATE(2303), - [sym_atomic_type] = STATE(2303), - [sym_generic_type] = STATE(2303), - [sym_function_type] = STATE(2303), - [sym_range] = STATE(4347), - [sym_identifier] = ACTIONS(1426), + [sym__expression] = STATE(2558), + [sym__expression_without_blocks] = STATE(2347), + [sym__expression_with_blocks] = STATE(2347), + [sym_inc_expression] = STATE(2379), + [sym_dec_expression] = STATE(2379), + [sym_or_block_expression] = STATE(2379), + [sym_option_propagation_expression] = STATE(2379), + [sym_result_propagation_expression] = STATE(2379), + [sym_anon_struct_value_expression] = STATE(2378), + [sym_go_expression] = STATE(2379), + [sym_spawn_expression] = STATE(2379), + [sym_parenthesized_expression] = STATE(2379), + [sym_call_expression] = STATE(2379), + [sym_type_initializer] = STATE(2378), + [sym_function_literal] = STATE(2379), + [sym_reference_expression] = STATE(2377), + [sym_type_reference_expression] = STATE(3460), + [sym_unary_expression] = STATE(2379), + [sym_receive_expression] = STATE(2379), + [sym_binary_expression] = STATE(2379), + [sym_as_type_cast_expression] = STATE(2379), + [sym__max_group] = STATE(2379), + [sym_literal] = STATE(2392), + [sym_map_init_expression] = STATE(2378), + [sym_array_creation] = STATE(2379), + [sym_fixed_array_creation] = STATE(2379), + [sym_selector_expression] = STATE(2379), + [sym_index_expression] = STATE(2379), + [sym_slice_expression] = STATE(2379), + [sym_if_expression] = STATE(2378), + [sym_compile_time_if_expression] = STATE(2378), + [sym_is_expression] = STATE(2379), + [sym_in_expression] = STATE(2379), + [sym_enum_fetch] = STATE(2379), + [sym_match_expression] = STATE(2378), + [sym_select_expression] = STATE(2378), + [sym_lock_expression] = STATE(2378), + [sym_unsafe_expression] = STATE(2378), + [sym_sql_expression] = STATE(2378), + [sym_c_string_literal] = STATE(2401), + [sym_raw_string_literal] = STATE(2401), + [sym_interpreted_string_literal] = STATE(2401), + [sym_mutability_modifiers] = STATE(900), + [sym_mutable_expression] = STATE(3813), + [sym_expression_list] = STATE(4458), + [sym_plain_type] = STATE(4160), + [sym__plain_type_without_special] = STATE(2360), + [sym_anon_struct_type] = STATE(2362), + [sym_multi_return_type] = STATE(2360), + [sym_result_type] = STATE(2360), + [sym_option_type] = STATE(2360), + [sym_qualified_type] = STATE(3460), + [sym_fixed_array_type] = STATE(2362), + [sym_array_type] = STATE(2362), + [sym_pointer_type] = STATE(2362), + [sym_wrong_pointer_type] = STATE(2362), + [sym_map_type] = STATE(2362), + [sym_channel_type] = STATE(2362), + [sym_shared_type] = STATE(2362), + [sym_thread_type] = STATE(2362), + [sym_atomic_type] = STATE(2362), + [sym_generic_type] = STATE(2362), + [sym_function_type] = STATE(2362), + [sym_identifier] = ACTIONS(1815), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1428), - [anon_sym_LBRACE] = ACTIONS(1430), - [anon_sym_LPAREN] = ACTIONS(1432), - [anon_sym_fn] = ACTIONS(1434), - [anon_sym_PLUS] = ACTIONS(1436), - [anon_sym_DASH] = ACTIONS(1436), - [anon_sym_STAR] = ACTIONS(1438), - [anon_sym_struct] = ACTIONS(1440), + [anon_sym_DOT] = ACTIONS(1430), + [anon_sym_LBRACE] = ACTIONS(2526), + [anon_sym_LPAREN] = ACTIONS(1434), + [anon_sym_fn] = ACTIONS(1436), + [anon_sym_PLUS] = ACTIONS(1817), + [anon_sym_DASH] = ACTIONS(1817), + [anon_sym_STAR] = ACTIONS(1819), + [anon_sym_struct] = ACTIONS(1442), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(1442), - [anon_sym_go] = ACTIONS(1444), - [anon_sym_spawn] = ACTIONS(1446), - [anon_sym_json_DOTdecode] = ACTIONS(1448), - [anon_sym_LBRACK2] = ACTIONS(1450), - [anon_sym_TILDE] = ACTIONS(1436), - [anon_sym_CARET] = ACTIONS(1436), - [anon_sym_AMP] = ACTIONS(1452), - [anon_sym_LT_DASH] = ACTIONS(1454), - [sym_none] = ACTIONS(1456), - [sym_true] = ACTIONS(1456), - [sym_false] = ACTIONS(1456), - [sym_nil] = ACTIONS(1456), - [anon_sym_if] = ACTIONS(1827), - [anon_sym_DOLLARif] = ACTIONS(1460), - [anon_sym_match] = ACTIONS(1462), - [anon_sym_select] = ACTIONS(1464), - [anon_sym_lock] = ACTIONS(1466), - [anon_sym_rlock] = ACTIONS(1466), - [anon_sym_unsafe] = ACTIONS(1833), - [anon_sym_sql] = ACTIONS(1470), - [sym_int_literal] = ACTIONS(1456), - [sym_float_literal] = ACTIONS(1472), - [sym_rune_literal] = ACTIONS(1472), - [sym_pseudo_compile_time_identifier] = ACTIONS(1474), + [anon_sym_BANG] = ACTIONS(1821), + [anon_sym_go] = ACTIONS(1823), + [anon_sym_spawn] = ACTIONS(1825), + [anon_sym_json_DOTdecode] = ACTIONS(1450), + [anon_sym_LBRACK2] = ACTIONS(1827), + [anon_sym_TILDE] = ACTIONS(1817), + [anon_sym_CARET] = ACTIONS(1817), + [anon_sym_AMP] = ACTIONS(1829), + [anon_sym_LT_DASH] = ACTIONS(1831), + [sym_none] = ACTIONS(1458), + [sym_true] = ACTIONS(1458), + [sym_false] = ACTIONS(1458), + [sym_nil] = ACTIONS(1458), + [anon_sym_if] = ACTIONS(1833), + [anon_sym_DOLLARif] = ACTIONS(1462), + [anon_sym_match] = ACTIONS(1464), + [anon_sym_select] = ACTIONS(1835), + [anon_sym_lock] = ACTIONS(1837), + [anon_sym_rlock] = ACTIONS(1837), + [anon_sym_unsafe] = ACTIONS(1839), + [anon_sym_sql] = ACTIONS(1472), + [sym_int_literal] = ACTIONS(1458), + [sym_float_literal] = ACTIONS(1474), + [sym_rune_literal] = ACTIONS(1474), + [sym_pseudo_compile_time_identifier] = ACTIONS(1476), [anon_sym_shared] = ACTIONS(83), [anon_sym_map_LBRACK] = ACTIONS(85), [anon_sym_chan] = ACTIONS(87), [anon_sym_thread] = ACTIONS(89), [anon_sym_atomic] = ACTIONS(91), - [anon_sym_DOT_DOT] = ACTIONS(1476), - [sym___double_quote] = ACTIONS(1478), - [sym___single_quote] = ACTIONS(1480), - [sym___c_double_quote] = ACTIONS(1482), - [sym___c_single_quote] = ACTIONS(1484), - [sym___r_double_quote] = ACTIONS(1486), - [sym___r_single_quote] = ACTIONS(1488), + [sym___double_quote] = ACTIONS(1480), + [sym___single_quote] = ACTIONS(1482), + [sym___c_double_quote] = ACTIONS(1484), + [sym___c_single_quote] = ACTIONS(1486), + [sym___r_double_quote] = ACTIONS(1488), + [sym___r_single_quote] = ACTIONS(1490), }, - [399] = { - [sym_line_comment] = STATE(399), - [sym_block_comment] = STATE(399), - [sym__expression] = STATE(2586), - [sym__expression_without_blocks] = STATE(2300), - [sym__expression_with_blocks] = STATE(2300), - [sym_inc_expression] = STATE(2307), - [sym_dec_expression] = STATE(2307), - [sym_or_block_expression] = STATE(2307), - [sym_option_propagation_expression] = STATE(2307), - [sym_result_propagation_expression] = STATE(2307), - [sym_anon_struct_value_expression] = STATE(2380), - [sym_go_expression] = STATE(2307), - [sym_spawn_expression] = STATE(2307), - [sym_parenthesized_expression] = STATE(2307), - [sym_call_expression] = STATE(2307), - [sym_type_initializer] = STATE(2380), - [sym_function_literal] = STATE(2307), - [sym_reference_expression] = STATE(2311), - [sym_type_reference_expression] = STATE(3541), - [sym_unary_expression] = STATE(2307), - [sym_receive_expression] = STATE(2307), - [sym_binary_expression] = STATE(2307), - [sym_as_type_cast_expression] = STATE(2307), - [sym__max_group] = STATE(2307), - [sym_literal] = STATE(2292), - [sym_map_init_expression] = STATE(2380), - [sym_array_creation] = STATE(2307), - [sym_fixed_array_creation] = STATE(2307), - [sym_selector_expression] = STATE(2307), - [sym_index_expression] = STATE(2307), - [sym_slice_expression] = STATE(2307), - [sym_if_expression] = STATE(2380), - [sym_compile_time_if_expression] = STATE(2380), - [sym_is_expression] = STATE(2307), - [sym_in_expression] = STATE(2307), - [sym_enum_fetch] = STATE(2307), - [sym_match_expression] = STATE(2380), - [sym_select_expression] = STATE(2380), - [sym_lock_expression] = STATE(2380), - [sym_unsafe_expression] = STATE(2380), - [sym_sql_expression] = STATE(2380), - [sym_c_string_literal] = STATE(2308), - [sym_raw_string_literal] = STATE(2308), - [sym_interpreted_string_literal] = STATE(2308), - [sym_mutability_modifiers] = STATE(939), - [sym_plain_type] = STATE(3557), - [sym__plain_type_without_special] = STATE(2302), - [sym_anon_struct_type] = STATE(2303), - [sym_multi_return_type] = STATE(2302), - [sym_result_type] = STATE(2302), - [sym_option_type] = STATE(2302), - [sym_qualified_type] = STATE(3541), - [sym_fixed_array_type] = STATE(2303), - [sym_array_type] = STATE(2303), - [sym_pointer_type] = STATE(2303), - [sym_wrong_pointer_type] = STATE(2303), - [sym_map_type] = STATE(2303), - [sym_channel_type] = STATE(2303), - [sym_shared_type] = STATE(2303), - [sym_thread_type] = STATE(2303), - [sym_atomic_type] = STATE(2303), - [sym_generic_type] = STATE(2303), - [sym_function_type] = STATE(2303), - [sym_range] = STATE(4347), - [sym_identifier] = ACTIONS(2135), + [398] = { + [sym_line_comment] = STATE(398), + [sym_block_comment] = STATE(398), + [sym__expression] = STATE(2558), + [sym__expression_without_blocks] = STATE(2347), + [sym__expression_with_blocks] = STATE(2347), + [sym_inc_expression] = STATE(2379), + [sym_dec_expression] = STATE(2379), + [sym_or_block_expression] = STATE(2379), + [sym_option_propagation_expression] = STATE(2379), + [sym_result_propagation_expression] = STATE(2379), + [sym_anon_struct_value_expression] = STATE(2378), + [sym_go_expression] = STATE(2379), + [sym_spawn_expression] = STATE(2379), + [sym_parenthesized_expression] = STATE(2379), + [sym_call_expression] = STATE(2379), + [sym_type_initializer] = STATE(2378), + [sym_function_literal] = STATE(2379), + [sym_reference_expression] = STATE(2377), + [sym_type_reference_expression] = STATE(3460), + [sym_unary_expression] = STATE(2379), + [sym_receive_expression] = STATE(2379), + [sym_binary_expression] = STATE(2379), + [sym_as_type_cast_expression] = STATE(2379), + [sym__max_group] = STATE(2379), + [sym_literal] = STATE(2392), + [sym_map_init_expression] = STATE(2378), + [sym_array_creation] = STATE(2379), + [sym_fixed_array_creation] = STATE(2379), + [sym_selector_expression] = STATE(2379), + [sym_index_expression] = STATE(2379), + [sym_slice_expression] = STATE(2379), + [sym_if_expression] = STATE(2378), + [sym_compile_time_if_expression] = STATE(2378), + [sym_is_expression] = STATE(2379), + [sym_in_expression] = STATE(2379), + [sym_enum_fetch] = STATE(2379), + [sym_match_expression] = STATE(2378), + [sym_select_expression] = STATE(2378), + [sym_lock_expression] = STATE(2378), + [sym_unsafe_expression] = STATE(2378), + [sym_sql_expression] = STATE(2378), + [sym_c_string_literal] = STATE(2401), + [sym_raw_string_literal] = STATE(2401), + [sym_interpreted_string_literal] = STATE(2401), + [sym_mutability_modifiers] = STATE(900), + [sym_mutable_expression] = STATE(3813), + [sym_expression_list] = STATE(4458), + [sym_plain_type] = STATE(4160), + [sym__plain_type_without_special] = STATE(2360), + [sym_anon_struct_type] = STATE(2362), + [sym_multi_return_type] = STATE(2360), + [sym_result_type] = STATE(2360), + [sym_option_type] = STATE(2360), + [sym_qualified_type] = STATE(3460), + [sym_fixed_array_type] = STATE(2362), + [sym_array_type] = STATE(2362), + [sym_pointer_type] = STATE(2362), + [sym_wrong_pointer_type] = STATE(2362), + [sym_map_type] = STATE(2362), + [sym_channel_type] = STATE(2362), + [sym_shared_type] = STATE(2362), + [sym_thread_type] = STATE(2362), + [sym_atomic_type] = STATE(2362), + [sym_generic_type] = STATE(2362), + [sym_function_type] = STATE(2362), + [sym_identifier] = ACTIONS(1815), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1428), - [anon_sym_LBRACE] = ACTIONS(1430), - [anon_sym_LPAREN] = ACTIONS(1432), - [anon_sym_fn] = ACTIONS(1434), - [anon_sym_PLUS] = ACTIONS(1436), - [anon_sym_DASH] = ACTIONS(1436), - [anon_sym_STAR] = ACTIONS(2137), - [anon_sym_struct] = ACTIONS(1440), + [anon_sym_DOT] = ACTIONS(1430), + [anon_sym_LBRACE] = ACTIONS(2528), + [anon_sym_LPAREN] = ACTIONS(1434), + [anon_sym_fn] = ACTIONS(1436), + [anon_sym_PLUS] = ACTIONS(1817), + [anon_sym_DASH] = ACTIONS(1817), + [anon_sym_STAR] = ACTIONS(1819), + [anon_sym_struct] = ACTIONS(1442), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(2139), - [anon_sym_go] = ACTIONS(1444), - [anon_sym_spawn] = ACTIONS(1446), - [anon_sym_json_DOTdecode] = ACTIONS(1448), - [anon_sym_LBRACK2] = ACTIONS(1450), - [anon_sym_TILDE] = ACTIONS(1436), - [anon_sym_CARET] = ACTIONS(1436), - [anon_sym_AMP] = ACTIONS(2141), - [anon_sym_LT_DASH] = ACTIONS(1454), - [sym_none] = ACTIONS(1456), - [sym_true] = ACTIONS(1456), - [sym_false] = ACTIONS(1456), - [sym_nil] = ACTIONS(1456), - [anon_sym_if] = ACTIONS(1827), - [anon_sym_DOLLARif] = ACTIONS(1460), - [anon_sym_match] = ACTIONS(1462), - [anon_sym_select] = ACTIONS(1464), - [anon_sym_lock] = ACTIONS(1466), - [anon_sym_rlock] = ACTIONS(1466), - [anon_sym_unsafe] = ACTIONS(1833), - [anon_sym_sql] = ACTIONS(1470), - [sym_int_literal] = ACTIONS(1456), - [sym_float_literal] = ACTIONS(1472), - [sym_rune_literal] = ACTIONS(1472), - [sym_pseudo_compile_time_identifier] = ACTIONS(1474), + [anon_sym_BANG] = ACTIONS(1821), + [anon_sym_go] = ACTIONS(1823), + [anon_sym_spawn] = ACTIONS(1825), + [anon_sym_json_DOTdecode] = ACTIONS(1450), + [anon_sym_LBRACK2] = ACTIONS(1827), + [anon_sym_TILDE] = ACTIONS(1817), + [anon_sym_CARET] = ACTIONS(1817), + [anon_sym_AMP] = ACTIONS(1829), + [anon_sym_LT_DASH] = ACTIONS(1831), + [sym_none] = ACTIONS(1458), + [sym_true] = ACTIONS(1458), + [sym_false] = ACTIONS(1458), + [sym_nil] = ACTIONS(1458), + [anon_sym_if] = ACTIONS(1833), + [anon_sym_DOLLARif] = ACTIONS(1462), + [anon_sym_match] = ACTIONS(1464), + [anon_sym_select] = ACTIONS(1835), + [anon_sym_lock] = ACTIONS(1837), + [anon_sym_rlock] = ACTIONS(1837), + [anon_sym_unsafe] = ACTIONS(1839), + [anon_sym_sql] = ACTIONS(1472), + [sym_int_literal] = ACTIONS(1458), + [sym_float_literal] = ACTIONS(1474), + [sym_rune_literal] = ACTIONS(1474), + [sym_pseudo_compile_time_identifier] = ACTIONS(1476), [anon_sym_shared] = ACTIONS(83), [anon_sym_map_LBRACK] = ACTIONS(85), [anon_sym_chan] = ACTIONS(87), [anon_sym_thread] = ACTIONS(89), [anon_sym_atomic] = ACTIONS(91), - [anon_sym_DOT_DOT] = ACTIONS(1476), - [sym___double_quote] = ACTIONS(1478), - [sym___single_quote] = ACTIONS(1480), - [sym___c_double_quote] = ACTIONS(1482), - [sym___c_single_quote] = ACTIONS(1484), - [sym___r_double_quote] = ACTIONS(1486), - [sym___r_single_quote] = ACTIONS(1488), + [sym___double_quote] = ACTIONS(1480), + [sym___single_quote] = ACTIONS(1482), + [sym___c_double_quote] = ACTIONS(1484), + [sym___c_single_quote] = ACTIONS(1486), + [sym___r_double_quote] = ACTIONS(1488), + [sym___r_single_quote] = ACTIONS(1490), + }, + [399] = { + [sym_line_comment] = STATE(399), + [sym_block_comment] = STATE(399), + [ts_builtin_sym_end] = ACTIONS(2511), + [sym_identifier] = ACTIONS(2513), + [anon_sym_LF] = ACTIONS(2513), + [anon_sym_CR] = ACTIONS(2513), + [anon_sym_CR_LF] = ACTIONS(2513), + [anon_sym_SLASH_SLASH] = ACTIONS(497), + [anon_sym_SLASH_STAR] = ACTIONS(499), + [anon_sym_DOT] = ACTIONS(2513), + [anon_sym_as] = ACTIONS(2513), + [anon_sym_LBRACE] = ACTIONS(2513), + [anon_sym_COMMA] = ACTIONS(2513), + [anon_sym_const] = ACTIONS(2513), + [anon_sym_LPAREN] = ACTIONS(2513), + [anon_sym_EQ] = ACTIONS(2513), + [anon_sym___global] = ACTIONS(2513), + [anon_sym_type] = ACTIONS(2513), + [anon_sym_PIPE] = ACTIONS(2513), + [anon_sym_fn] = ACTIONS(2513), + [anon_sym_PLUS] = ACTIONS(2513), + [anon_sym_DASH] = ACTIONS(2513), + [anon_sym_STAR] = ACTIONS(2513), + [anon_sym_SLASH] = ACTIONS(2513), + [anon_sym_PERCENT] = ACTIONS(2513), + [anon_sym_LT] = ACTIONS(2513), + [anon_sym_GT] = ACTIONS(2513), + [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(2511), + [anon_sym_struct] = ACTIONS(2513), + [anon_sym_union] = ACTIONS(2513), + [anon_sym_pub] = ACTIONS(2513), + [anon_sym_mut] = ACTIONS(2513), + [anon_sym_enum] = ACTIONS(2513), + [anon_sym_interface] = ACTIONS(2513), + [anon_sym_PLUS_PLUS] = ACTIONS(2513), + [anon_sym_DASH_DASH] = ACTIONS(2513), + [anon_sym_QMARK] = ACTIONS(2513), + [anon_sym_BANG] = ACTIONS(2513), + [anon_sym_go] = ACTIONS(2513), + [anon_sym_spawn] = ACTIONS(2513), + [anon_sym_json_DOTdecode] = ACTIONS(2513), + [anon_sym_LBRACK2] = ACTIONS(2513), + [anon_sym_TILDE] = ACTIONS(2513), + [anon_sym_CARET] = ACTIONS(2513), + [anon_sym_AMP] = ACTIONS(2513), + [anon_sym_LT_DASH] = ACTIONS(2513), + [anon_sym_LT_LT] = ACTIONS(2513), + [anon_sym_GT_GT] = ACTIONS(2513), + [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(2513), + [sym_none] = ACTIONS(2513), + [sym_true] = ACTIONS(2513), + [sym_false] = ACTIONS(2513), + [sym_nil] = ACTIONS(2513), + [anon_sym_QMARK_DOT] = ACTIONS(2513), + [anon_sym_POUND_LBRACK] = ACTIONS(2513), + [anon_sym_if] = ACTIONS(2513), + [anon_sym_DOLLARif] = ACTIONS(2513), + [anon_sym_is] = ACTIONS(2513), + [anon_sym_BANGis] = ACTIONS(2513), + [anon_sym_in] = ACTIONS(2513), + [anon_sym_BANGin] = ACTIONS(2513), + [anon_sym_match] = ACTIONS(2513), + [anon_sym_select] = ACTIONS(2513), + [anon_sym_STAR_EQ] = ACTIONS(2513), + [anon_sym_SLASH_EQ] = ACTIONS(2513), + [anon_sym_PERCENT_EQ] = ACTIONS(2513), + [anon_sym_LT_LT_EQ] = ACTIONS(2513), + [anon_sym_GT_GT_EQ] = ACTIONS(2513), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(2513), + [anon_sym_AMP_EQ] = ACTIONS(2513), + [anon_sym_AMP_CARET_EQ] = ACTIONS(2513), + [anon_sym_PLUS_EQ] = ACTIONS(2513), + [anon_sym_DASH_EQ] = ACTIONS(2513), + [anon_sym_PIPE_EQ] = ACTIONS(2513), + [anon_sym_CARET_EQ] = ACTIONS(2513), + [anon_sym_COLON_EQ] = ACTIONS(2513), + [anon_sym_lock] = ACTIONS(2513), + [anon_sym_rlock] = ACTIONS(2513), + [anon_sym_unsafe] = ACTIONS(2513), + [anon_sym_sql] = ACTIONS(2513), + [sym_int_literal] = ACTIONS(2513), + [sym_float_literal] = ACTIONS(2513), + [sym_rune_literal] = ACTIONS(2513), + [sym_pseudo_compile_time_identifier] = ACTIONS(2513), + [anon_sym_shared] = ACTIONS(2513), + [anon_sym_map_LBRACK] = ACTIONS(2513), + [anon_sym_chan] = ACTIONS(2513), + [anon_sym_thread] = ACTIONS(2513), + [anon_sym_atomic] = ACTIONS(2513), + [anon_sym_assert] = ACTIONS(2513), + [anon_sym_defer] = ACTIONS(2513), + [anon_sym_goto] = ACTIONS(2513), + [anon_sym_break] = ACTIONS(2513), + [anon_sym_continue] = ACTIONS(2513), + [anon_sym_return] = ACTIONS(2513), + [anon_sym_DOLLARfor] = ACTIONS(2513), + [anon_sym_for] = ACTIONS(2513), + [anon_sym_POUND] = ACTIONS(2513), + [anon_sym_asm] = ACTIONS(2513), + [anon_sym_AT_LBRACK] = ACTIONS(2513), + [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), }, [400] = { [sym_line_comment] = STATE(400), [sym_block_comment] = STATE(400), - [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), + [ts_builtin_sym_end] = ACTIONS(1807), + [sym_identifier] = ACTIONS(1809), + [anon_sym_LF] = ACTIONS(1809), + [anon_sym_CR] = ACTIONS(1809), + [anon_sym_CR_LF] = ACTIONS(1809), [anon_sym_SLASH_SLASH] = ACTIONS(497), [anon_sym_SLASH_STAR] = ACTIONS(499), - [anon_sym_DOT] = ACTIONS(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_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), + [anon_sym_DOT] = ACTIONS(1809), + [anon_sym_as] = ACTIONS(1809), + [anon_sym_LBRACE] = ACTIONS(1809), + [anon_sym_COMMA] = ACTIONS(1809), + [anon_sym_const] = ACTIONS(1809), + [anon_sym_LPAREN] = ACTIONS(1809), + [anon_sym_EQ] = ACTIONS(1809), + [anon_sym___global] = ACTIONS(1809), + [anon_sym_type] = ACTIONS(1809), + [anon_sym_PIPE] = ACTIONS(1809), + [anon_sym_fn] = ACTIONS(1809), + [anon_sym_PLUS] = ACTIONS(1809), + [anon_sym_DASH] = ACTIONS(1809), + [anon_sym_STAR] = ACTIONS(1809), + [anon_sym_SLASH] = ACTIONS(1809), + [anon_sym_PERCENT] = ACTIONS(1809), + [anon_sym_LT] = ACTIONS(1809), + [anon_sym_GT] = ACTIONS(1809), + [anon_sym_EQ_EQ] = ACTIONS(1809), + [anon_sym_BANG_EQ] = ACTIONS(1809), + [anon_sym_LT_EQ] = ACTIONS(1809), + [anon_sym_GT_EQ] = ACTIONS(1809), + [anon_sym_LBRACK] = ACTIONS(1807), + [anon_sym_struct] = ACTIONS(1809), + [anon_sym_union] = ACTIONS(1809), + [anon_sym_pub] = ACTIONS(1809), + [anon_sym_mut] = ACTIONS(1809), + [anon_sym_enum] = ACTIONS(1809), + [anon_sym_interface] = ACTIONS(1809), + [anon_sym_PLUS_PLUS] = ACTIONS(1809), + [anon_sym_DASH_DASH] = ACTIONS(1809), + [anon_sym_QMARK] = ACTIONS(1809), + [anon_sym_BANG] = ACTIONS(1809), + [anon_sym_go] = ACTIONS(1809), + [anon_sym_spawn] = ACTIONS(1809), + [anon_sym_json_DOTdecode] = ACTIONS(1809), + [anon_sym_LBRACK2] = ACTIONS(1809), + [anon_sym_TILDE] = ACTIONS(1809), + [anon_sym_CARET] = ACTIONS(1809), + [anon_sym_AMP] = ACTIONS(1809), + [anon_sym_LT_DASH] = ACTIONS(1809), + [anon_sym_LT_LT] = ACTIONS(1809), + [anon_sym_GT_GT] = ACTIONS(1809), + [anon_sym_GT_GT_GT] = ACTIONS(1809), + [anon_sym_AMP_CARET] = ACTIONS(1809), + [anon_sym_AMP_AMP] = ACTIONS(1809), + [anon_sym_PIPE_PIPE] = ACTIONS(1809), + [anon_sym_or] = ACTIONS(1809), + [sym_none] = ACTIONS(1809), + [sym_true] = ACTIONS(1809), + [sym_false] = ACTIONS(1809), + [sym_nil] = ACTIONS(1809), + [anon_sym_QMARK_DOT] = ACTIONS(1809), + [anon_sym_POUND_LBRACK] = ACTIONS(1809), + [anon_sym_if] = ACTIONS(1809), + [anon_sym_DOLLARif] = ACTIONS(1809), + [anon_sym_is] = ACTIONS(1809), + [anon_sym_BANGis] = ACTIONS(1809), + [anon_sym_in] = ACTIONS(1809), + [anon_sym_BANGin] = ACTIONS(1809), + [anon_sym_match] = ACTIONS(1809), + [anon_sym_select] = ACTIONS(1809), + [anon_sym_STAR_EQ] = ACTIONS(1809), + [anon_sym_SLASH_EQ] = ACTIONS(1809), + [anon_sym_PERCENT_EQ] = ACTIONS(1809), + [anon_sym_LT_LT_EQ] = ACTIONS(1809), + [anon_sym_GT_GT_EQ] = ACTIONS(1809), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(1809), + [anon_sym_AMP_EQ] = ACTIONS(1809), + [anon_sym_AMP_CARET_EQ] = ACTIONS(1809), + [anon_sym_PLUS_EQ] = ACTIONS(1809), + [anon_sym_DASH_EQ] = ACTIONS(1809), + [anon_sym_PIPE_EQ] = ACTIONS(1809), + [anon_sym_CARET_EQ] = ACTIONS(1809), + [anon_sym_COLON_EQ] = ACTIONS(1809), + [anon_sym_lock] = ACTIONS(1809), + [anon_sym_rlock] = ACTIONS(1809), + [anon_sym_unsafe] = ACTIONS(1809), + [anon_sym_sql] = ACTIONS(1809), + [sym_int_literal] = ACTIONS(1809), + [sym_float_literal] = ACTIONS(1809), + [sym_rune_literal] = ACTIONS(1809), + [sym_pseudo_compile_time_identifier] = ACTIONS(1809), + [anon_sym_shared] = ACTIONS(1809), + [anon_sym_map_LBRACK] = ACTIONS(1809), + [anon_sym_chan] = ACTIONS(1809), + [anon_sym_thread] = ACTIONS(1809), + [anon_sym_atomic] = ACTIONS(1809), + [anon_sym_assert] = ACTIONS(1809), + [anon_sym_defer] = ACTIONS(1809), + [anon_sym_goto] = ACTIONS(1809), + [anon_sym_break] = ACTIONS(1809), + [anon_sym_continue] = ACTIONS(1809), + [anon_sym_return] = ACTIONS(1809), + [anon_sym_DOLLARfor] = ACTIONS(1809), + [anon_sym_for] = ACTIONS(1809), + [anon_sym_POUND] = ACTIONS(1809), + [anon_sym_asm] = ACTIONS(1809), + [anon_sym_AT_LBRACK] = ACTIONS(1809), + [sym___double_quote] = ACTIONS(1809), + [sym___single_quote] = ACTIONS(1809), + [sym___c_double_quote] = ACTIONS(1809), + [sym___c_single_quote] = ACTIONS(1809), + [sym___r_double_quote] = ACTIONS(1809), + [sym___r_single_quote] = ACTIONS(1809), }, [401] = { [sym_line_comment] = STATE(401), [sym_block_comment] = STATE(401), - [ts_builtin_sym_end] = ACTIONS(2517), - [sym_identifier] = ACTIONS(2519), - [anon_sym_LF] = ACTIONS(2519), - [anon_sym_CR] = ACTIONS(2519), - [anon_sym_CR_LF] = ACTIONS(2519), + [ts_builtin_sym_end] = ACTIONS(2530), + [sym_identifier] = ACTIONS(2532), + [anon_sym_LF] = ACTIONS(2532), + [anon_sym_CR] = ACTIONS(2532), + [anon_sym_CR_LF] = ACTIONS(2532), [anon_sym_SLASH_SLASH] = ACTIONS(497), [anon_sym_SLASH_STAR] = ACTIONS(499), - [anon_sym_DOT] = ACTIONS(2519), - [anon_sym_as] = ACTIONS(2519), - [anon_sym_LBRACE] = ACTIONS(2519), - [anon_sym_COMMA] = ACTIONS(2519), - [anon_sym_const] = ACTIONS(2519), - [anon_sym_LPAREN] = ACTIONS(2519), - [anon_sym_EQ] = ACTIONS(2519), - [anon_sym___global] = ACTIONS(2519), - [anon_sym_type] = ACTIONS(2519), - [anon_sym_PIPE] = ACTIONS(2519), - [anon_sym_fn] = ACTIONS(2519), - [anon_sym_PLUS] = ACTIONS(2519), - [anon_sym_DASH] = ACTIONS(2519), - [anon_sym_STAR] = ACTIONS(2519), - [anon_sym_SLASH] = ACTIONS(2519), - [anon_sym_PERCENT] = ACTIONS(2519), - [anon_sym_LT] = ACTIONS(2519), - [anon_sym_GT] = ACTIONS(2519), - [anon_sym_EQ_EQ] = ACTIONS(2519), - [anon_sym_BANG_EQ] = ACTIONS(2519), - [anon_sym_LT_EQ] = ACTIONS(2519), - [anon_sym_GT_EQ] = ACTIONS(2519), - [anon_sym_LBRACK] = ACTIONS(2517), - [anon_sym_struct] = ACTIONS(2519), - [anon_sym_union] = ACTIONS(2519), - [anon_sym_pub] = ACTIONS(2519), - [anon_sym_mut] = ACTIONS(2519), - [anon_sym_enum] = ACTIONS(2519), - [anon_sym_interface] = ACTIONS(2519), - [anon_sym_PLUS_PLUS] = ACTIONS(2519), - [anon_sym_DASH_DASH] = ACTIONS(2519), - [anon_sym_QMARK] = ACTIONS(2519), - [anon_sym_BANG] = ACTIONS(2519), - [anon_sym_go] = ACTIONS(2519), - [anon_sym_spawn] = ACTIONS(2519), - [anon_sym_json_DOTdecode] = ACTIONS(2519), - [anon_sym_LBRACK2] = ACTIONS(2519), - [anon_sym_TILDE] = ACTIONS(2519), - [anon_sym_CARET] = ACTIONS(2519), - [anon_sym_AMP] = ACTIONS(2519), - [anon_sym_LT_DASH] = ACTIONS(2519), - [anon_sym_LT_LT] = ACTIONS(2519), - [anon_sym_GT_GT] = ACTIONS(2519), - [anon_sym_GT_GT_GT] = ACTIONS(2519), - [anon_sym_AMP_CARET] = ACTIONS(2519), - [anon_sym_AMP_AMP] = ACTIONS(2519), - [anon_sym_PIPE_PIPE] = ACTIONS(2519), - [anon_sym_or] = ACTIONS(2519), - [sym_none] = ACTIONS(2519), - [sym_true] = ACTIONS(2519), - [sym_false] = ACTIONS(2519), - [sym_nil] = ACTIONS(2519), - [anon_sym_QMARK_DOT] = ACTIONS(2519), - [anon_sym_POUND_LBRACK] = ACTIONS(2519), - [anon_sym_if] = ACTIONS(2519), - [anon_sym_DOLLARif] = ACTIONS(2519), - [anon_sym_is] = ACTIONS(2519), - [anon_sym_BANGis] = ACTIONS(2519), - [anon_sym_in] = ACTIONS(2519), - [anon_sym_BANGin] = ACTIONS(2519), - [anon_sym_match] = ACTIONS(2519), - [anon_sym_select] = ACTIONS(2519), - [anon_sym_STAR_EQ] = ACTIONS(2519), - [anon_sym_SLASH_EQ] = ACTIONS(2519), - [anon_sym_PERCENT_EQ] = ACTIONS(2519), - [anon_sym_LT_LT_EQ] = ACTIONS(2519), - [anon_sym_GT_GT_EQ] = ACTIONS(2519), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(2519), - [anon_sym_AMP_EQ] = ACTIONS(2519), - [anon_sym_AMP_CARET_EQ] = ACTIONS(2519), - [anon_sym_PLUS_EQ] = ACTIONS(2519), - [anon_sym_DASH_EQ] = ACTIONS(2519), - [anon_sym_PIPE_EQ] = ACTIONS(2519), - [anon_sym_CARET_EQ] = ACTIONS(2519), - [anon_sym_COLON_EQ] = ACTIONS(2519), - [anon_sym_lock] = ACTIONS(2519), - [anon_sym_rlock] = ACTIONS(2519), - [anon_sym_unsafe] = ACTIONS(2519), - [anon_sym_sql] = ACTIONS(2519), - [sym_int_literal] = ACTIONS(2519), - [sym_float_literal] = ACTIONS(2519), - [sym_rune_literal] = ACTIONS(2519), - [sym_pseudo_compile_time_identifier] = ACTIONS(2519), - [anon_sym_shared] = ACTIONS(2519), - [anon_sym_map_LBRACK] = ACTIONS(2519), - [anon_sym_chan] = ACTIONS(2519), - [anon_sym_thread] = ACTIONS(2519), - [anon_sym_atomic] = ACTIONS(2519), - [anon_sym_assert] = ACTIONS(2519), - [anon_sym_defer] = ACTIONS(2519), - [anon_sym_goto] = ACTIONS(2519), - [anon_sym_break] = ACTIONS(2519), - [anon_sym_continue] = ACTIONS(2519), - [anon_sym_return] = ACTIONS(2519), - [anon_sym_DOLLARfor] = ACTIONS(2519), - [anon_sym_for] = ACTIONS(2519), - [anon_sym_POUND] = ACTIONS(2519), - [anon_sym_asm] = ACTIONS(2519), - [anon_sym_AT_LBRACK] = ACTIONS(2519), - [sym___double_quote] = ACTIONS(2519), - [sym___single_quote] = ACTIONS(2519), - [sym___c_double_quote] = ACTIONS(2519), - [sym___c_single_quote] = ACTIONS(2519), - [sym___r_double_quote] = ACTIONS(2519), - [sym___r_single_quote] = ACTIONS(2519), + [anon_sym_DOT] = ACTIONS(2532), + [anon_sym_as] = ACTIONS(2532), + [anon_sym_LBRACE] = ACTIONS(2532), + [anon_sym_COMMA] = ACTIONS(2532), + [anon_sym_const] = ACTIONS(2532), + [anon_sym_LPAREN] = ACTIONS(2532), + [anon_sym_EQ] = ACTIONS(2532), + [anon_sym___global] = ACTIONS(2532), + [anon_sym_type] = ACTIONS(2532), + [anon_sym_PIPE] = ACTIONS(2532), + [anon_sym_fn] = ACTIONS(2532), + [anon_sym_PLUS] = ACTIONS(2532), + [anon_sym_DASH] = ACTIONS(2532), + [anon_sym_STAR] = ACTIONS(2532), + [anon_sym_SLASH] = ACTIONS(2532), + [anon_sym_PERCENT] = ACTIONS(2532), + [anon_sym_LT] = ACTIONS(2532), + [anon_sym_GT] = ACTIONS(2532), + [anon_sym_EQ_EQ] = ACTIONS(2532), + [anon_sym_BANG_EQ] = ACTIONS(2532), + [anon_sym_LT_EQ] = ACTIONS(2532), + [anon_sym_GT_EQ] = ACTIONS(2532), + [anon_sym_LBRACK] = ACTIONS(2530), + [anon_sym_struct] = ACTIONS(2532), + [anon_sym_union] = ACTIONS(2532), + [anon_sym_pub] = ACTIONS(2532), + [anon_sym_mut] = ACTIONS(2532), + [anon_sym_enum] = ACTIONS(2532), + [anon_sym_interface] = ACTIONS(2532), + [anon_sym_PLUS_PLUS] = ACTIONS(2532), + [anon_sym_DASH_DASH] = ACTIONS(2532), + [anon_sym_QMARK] = ACTIONS(2532), + [anon_sym_BANG] = ACTIONS(2532), + [anon_sym_go] = ACTIONS(2532), + [anon_sym_spawn] = ACTIONS(2532), + [anon_sym_json_DOTdecode] = ACTIONS(2532), + [anon_sym_LBRACK2] = ACTIONS(2532), + [anon_sym_TILDE] = ACTIONS(2532), + [anon_sym_CARET] = ACTIONS(2532), + [anon_sym_AMP] = ACTIONS(2532), + [anon_sym_LT_DASH] = ACTIONS(2532), + [anon_sym_LT_LT] = ACTIONS(2532), + [anon_sym_GT_GT] = ACTIONS(2532), + [anon_sym_GT_GT_GT] = ACTIONS(2532), + [anon_sym_AMP_CARET] = ACTIONS(2532), + [anon_sym_AMP_AMP] = ACTIONS(2532), + [anon_sym_PIPE_PIPE] = ACTIONS(2532), + [anon_sym_or] = ACTIONS(2532), + [sym_none] = ACTIONS(2532), + [sym_true] = ACTIONS(2532), + [sym_false] = ACTIONS(2532), + [sym_nil] = ACTIONS(2532), + [anon_sym_QMARK_DOT] = ACTIONS(2532), + [anon_sym_POUND_LBRACK] = ACTIONS(2532), + [anon_sym_if] = ACTIONS(2532), + [anon_sym_DOLLARif] = ACTIONS(2532), + [anon_sym_is] = ACTIONS(2532), + [anon_sym_BANGis] = ACTIONS(2532), + [anon_sym_in] = ACTIONS(2532), + [anon_sym_BANGin] = ACTIONS(2532), + [anon_sym_match] = ACTIONS(2532), + [anon_sym_select] = ACTIONS(2532), + [anon_sym_STAR_EQ] = ACTIONS(2532), + [anon_sym_SLASH_EQ] = ACTIONS(2532), + [anon_sym_PERCENT_EQ] = ACTIONS(2532), + [anon_sym_LT_LT_EQ] = ACTIONS(2532), + [anon_sym_GT_GT_EQ] = ACTIONS(2532), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(2532), + [anon_sym_AMP_EQ] = ACTIONS(2532), + [anon_sym_AMP_CARET_EQ] = ACTIONS(2532), + [anon_sym_PLUS_EQ] = ACTIONS(2532), + [anon_sym_DASH_EQ] = ACTIONS(2532), + [anon_sym_PIPE_EQ] = ACTIONS(2532), + [anon_sym_CARET_EQ] = ACTIONS(2532), + [anon_sym_COLON_EQ] = ACTIONS(2532), + [anon_sym_lock] = ACTIONS(2532), + [anon_sym_rlock] = ACTIONS(2532), + [anon_sym_unsafe] = ACTIONS(2532), + [anon_sym_sql] = ACTIONS(2532), + [sym_int_literal] = ACTIONS(2532), + [sym_float_literal] = ACTIONS(2532), + [sym_rune_literal] = ACTIONS(2532), + [sym_pseudo_compile_time_identifier] = ACTIONS(2532), + [anon_sym_shared] = ACTIONS(2532), + [anon_sym_map_LBRACK] = ACTIONS(2532), + [anon_sym_chan] = ACTIONS(2532), + [anon_sym_thread] = ACTIONS(2532), + [anon_sym_atomic] = ACTIONS(2532), + [anon_sym_assert] = ACTIONS(2532), + [anon_sym_defer] = ACTIONS(2532), + [anon_sym_goto] = ACTIONS(2532), + [anon_sym_break] = ACTIONS(2532), + [anon_sym_continue] = ACTIONS(2532), + [anon_sym_return] = ACTIONS(2532), + [anon_sym_DOLLARfor] = ACTIONS(2532), + [anon_sym_for] = ACTIONS(2532), + [anon_sym_POUND] = ACTIONS(2532), + [anon_sym_asm] = ACTIONS(2532), + [anon_sym_AT_LBRACK] = ACTIONS(2532), + [sym___double_quote] = ACTIONS(2532), + [sym___single_quote] = ACTIONS(2532), + [sym___c_double_quote] = ACTIONS(2532), + [sym___c_single_quote] = ACTIONS(2532), + [sym___r_double_quote] = ACTIONS(2532), + [sym___r_single_quote] = ACTIONS(2532), }, [402] = { [sym_line_comment] = STATE(402), [sym_block_comment] = STATE(402), - [sym__expression] = STATE(2455), - [sym__expression_without_blocks] = STATE(2300), - [sym__expression_with_blocks] = STATE(2300), - [sym_inc_expression] = STATE(2307), - [sym_dec_expression] = STATE(2307), - [sym_or_block_expression] = STATE(2307), - [sym_option_propagation_expression] = STATE(2307), - [sym_result_propagation_expression] = STATE(2307), - [sym_anon_struct_value_expression] = STATE(2380), - [sym_go_expression] = STATE(2307), - [sym_spawn_expression] = STATE(2307), - [sym_parenthesized_expression] = STATE(2307), - [sym_call_expression] = STATE(2307), - [sym_type_initializer] = STATE(2380), - [sym_function_literal] = STATE(2307), - [sym_reference_expression] = STATE(2311), - [sym_type_reference_expression] = STATE(3541), - [sym_unary_expression] = STATE(2307), - [sym_receive_expression] = STATE(2307), - [sym_binary_expression] = STATE(2307), - [sym_as_type_cast_expression] = STATE(2307), - [sym__max_group] = STATE(2307), - [sym_literal] = STATE(2292), - [sym_map_init_expression] = STATE(2380), - [sym_array_creation] = STATE(2307), - [sym_fixed_array_creation] = STATE(2307), - [sym_selector_expression] = STATE(2307), - [sym_index_expression] = STATE(2307), - [sym_slice_expression] = STATE(2307), - [sym_if_expression] = STATE(2380), - [sym_compile_time_if_expression] = STATE(2380), - [sym_is_expression] = STATE(2307), - [sym_in_expression] = STATE(2307), - [sym_enum_fetch] = STATE(2307), - [sym_match_expression] = STATE(2380), - [sym_select_expression] = STATE(2380), - [sym_lock_expression] = STATE(2380), - [sym_unsafe_expression] = STATE(2380), - [sym_sql_expression] = STATE(2380), - [sym_c_string_literal] = STATE(2308), - [sym_raw_string_literal] = STATE(2308), - [sym_interpreted_string_literal] = STATE(2308), - [sym_mutability_modifiers] = STATE(824), - [sym_mutable_expression] = STATE(3922), - [sym_expression_list] = STATE(4446), - [sym_plain_type] = STATE(4297), - [sym__plain_type_without_special] = STATE(2302), - [sym_anon_struct_type] = STATE(2303), - [sym_multi_return_type] = STATE(2302), - [sym_result_type] = STATE(2302), - [sym_option_type] = STATE(2302), - [sym_qualified_type] = STATE(3541), - [sym_fixed_array_type] = STATE(2303), - [sym_array_type] = STATE(2303), - [sym_pointer_type] = STATE(2303), - [sym_wrong_pointer_type] = STATE(2303), - [sym_map_type] = STATE(2303), - [sym_channel_type] = STATE(2303), - [sym_shared_type] = STATE(2303), - [sym_thread_type] = STATE(2303), - [sym_atomic_type] = STATE(2303), - [sym_generic_type] = STATE(2303), - [sym_function_type] = STATE(2303), - [sym_identifier] = ACTIONS(1807), + [sym__expression] = STATE(2558), + [sym__expression_without_blocks] = STATE(2347), + [sym__expression_with_blocks] = STATE(2347), + [sym_inc_expression] = STATE(2379), + [sym_dec_expression] = STATE(2379), + [sym_or_block_expression] = STATE(2379), + [sym_option_propagation_expression] = STATE(2379), + [sym_result_propagation_expression] = STATE(2379), + [sym_anon_struct_value_expression] = STATE(2378), + [sym_go_expression] = STATE(2379), + [sym_spawn_expression] = STATE(2379), + [sym_parenthesized_expression] = STATE(2379), + [sym_call_expression] = STATE(2379), + [sym_type_initializer] = STATE(2378), + [sym_function_literal] = STATE(2379), + [sym_reference_expression] = STATE(2377), + [sym_type_reference_expression] = STATE(3460), + [sym_unary_expression] = STATE(2379), + [sym_receive_expression] = STATE(2379), + [sym_binary_expression] = STATE(2379), + [sym_as_type_cast_expression] = STATE(2379), + [sym__max_group] = STATE(2379), + [sym_literal] = STATE(2392), + [sym_map_init_expression] = STATE(2378), + [sym_array_creation] = STATE(2379), + [sym_fixed_array_creation] = STATE(2379), + [sym_selector_expression] = STATE(2379), + [sym_index_expression] = STATE(2379), + [sym_slice_expression] = STATE(2379), + [sym_if_expression] = STATE(2378), + [sym_compile_time_if_expression] = STATE(2378), + [sym_is_expression] = STATE(2379), + [sym_in_expression] = STATE(2379), + [sym_enum_fetch] = STATE(2379), + [sym_match_expression] = STATE(2378), + [sym_select_expression] = STATE(2378), + [sym_lock_expression] = STATE(2378), + [sym_unsafe_expression] = STATE(2378), + [sym_sql_expression] = STATE(2378), + [sym_c_string_literal] = STATE(2401), + [sym_raw_string_literal] = STATE(2401), + [sym_interpreted_string_literal] = STATE(2401), + [sym_mutability_modifiers] = STATE(900), + [sym_mutable_expression] = STATE(3813), + [sym_expression_list] = STATE(4332), + [sym_plain_type] = STATE(4160), + [sym__plain_type_without_special] = STATE(2360), + [sym_anon_struct_type] = STATE(2362), + [sym_multi_return_type] = STATE(2360), + [sym_result_type] = STATE(2360), + [sym_option_type] = STATE(2360), + [sym_qualified_type] = STATE(3460), + [sym_fixed_array_type] = STATE(2362), + [sym_array_type] = STATE(2362), + [sym_pointer_type] = STATE(2362), + [sym_wrong_pointer_type] = STATE(2362), + [sym_map_type] = STATE(2362), + [sym_channel_type] = STATE(2362), + [sym_shared_type] = STATE(2362), + [sym_thread_type] = STATE(2362), + [sym_atomic_type] = STATE(2362), + [sym_generic_type] = STATE(2362), + [sym_function_type] = STATE(2362), + [sym_identifier] = ACTIONS(1815), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1428), - [anon_sym_LBRACE] = ACTIONS(2521), - [anon_sym_LPAREN] = ACTIONS(1432), - [anon_sym_fn] = ACTIONS(1434), - [anon_sym_PLUS] = ACTIONS(1811), - [anon_sym_DASH] = ACTIONS(1811), - [anon_sym_STAR] = ACTIONS(1813), - [anon_sym_struct] = ACTIONS(1440), + [anon_sym_DOT] = ACTIONS(1430), + [anon_sym_LBRACE] = ACTIONS(2534), + [anon_sym_LPAREN] = ACTIONS(1434), + [anon_sym_fn] = ACTIONS(1436), + [anon_sym_PLUS] = ACTIONS(1817), + [anon_sym_DASH] = ACTIONS(1817), + [anon_sym_STAR] = ACTIONS(1819), + [anon_sym_struct] = ACTIONS(1442), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(1815), - [anon_sym_go] = ACTIONS(1817), - [anon_sym_spawn] = ACTIONS(1819), - [anon_sym_json_DOTdecode] = ACTIONS(1448), - [anon_sym_LBRACK2] = ACTIONS(1821), - [anon_sym_TILDE] = ACTIONS(1811), - [anon_sym_CARET] = ACTIONS(1811), - [anon_sym_AMP] = ACTIONS(1823), - [anon_sym_LT_DASH] = ACTIONS(1825), - [sym_none] = ACTIONS(1456), - [sym_true] = ACTIONS(1456), - [sym_false] = ACTIONS(1456), - [sym_nil] = ACTIONS(1456), - [anon_sym_if] = ACTIONS(1827), - [anon_sym_DOLLARif] = ACTIONS(1460), - [anon_sym_match] = ACTIONS(1462), - [anon_sym_select] = ACTIONS(1829), - [anon_sym_lock] = ACTIONS(1831), - [anon_sym_rlock] = ACTIONS(1831), - [anon_sym_unsafe] = ACTIONS(1833), - [anon_sym_sql] = ACTIONS(1470), - [sym_int_literal] = ACTIONS(1456), - [sym_float_literal] = ACTIONS(1472), - [sym_rune_literal] = ACTIONS(1472), - [sym_pseudo_compile_time_identifier] = ACTIONS(1474), + [anon_sym_BANG] = ACTIONS(1821), + [anon_sym_go] = ACTIONS(1823), + [anon_sym_spawn] = ACTIONS(1825), + [anon_sym_json_DOTdecode] = ACTIONS(1450), + [anon_sym_LBRACK2] = ACTIONS(1827), + [anon_sym_TILDE] = ACTIONS(1817), + [anon_sym_CARET] = ACTIONS(1817), + [anon_sym_AMP] = ACTIONS(1829), + [anon_sym_LT_DASH] = ACTIONS(1831), + [sym_none] = ACTIONS(1458), + [sym_true] = ACTIONS(1458), + [sym_false] = ACTIONS(1458), + [sym_nil] = ACTIONS(1458), + [anon_sym_if] = ACTIONS(1833), + [anon_sym_DOLLARif] = ACTIONS(1462), + [anon_sym_match] = ACTIONS(1464), + [anon_sym_select] = ACTIONS(1835), + [anon_sym_lock] = ACTIONS(1837), + [anon_sym_rlock] = ACTIONS(1837), + [anon_sym_unsafe] = ACTIONS(1839), + [anon_sym_sql] = ACTIONS(1472), + [sym_int_literal] = ACTIONS(1458), + [sym_float_literal] = ACTIONS(1474), + [sym_rune_literal] = ACTIONS(1474), + [sym_pseudo_compile_time_identifier] = ACTIONS(1476), [anon_sym_shared] = ACTIONS(83), [anon_sym_map_LBRACK] = ACTIONS(85), [anon_sym_chan] = ACTIONS(87), [anon_sym_thread] = ACTIONS(89), [anon_sym_atomic] = ACTIONS(91), - [sym___double_quote] = ACTIONS(1478), - [sym___single_quote] = ACTIONS(1480), - [sym___c_double_quote] = ACTIONS(1482), - [sym___c_single_quote] = ACTIONS(1484), - [sym___r_double_quote] = ACTIONS(1486), - [sym___r_single_quote] = ACTIONS(1488), + [sym___double_quote] = ACTIONS(1480), + [sym___single_quote] = ACTIONS(1482), + [sym___c_double_quote] = ACTIONS(1484), + [sym___c_single_quote] = ACTIONS(1486), + [sym___r_double_quote] = ACTIONS(1488), + [sym___r_single_quote] = ACTIONS(1490), }, [403] = { [sym_line_comment] = STATE(403), [sym_block_comment] = STATE(403), - [ts_builtin_sym_end] = ACTIONS(2523), - [sym_identifier] = ACTIONS(2525), - [anon_sym_LF] = ACTIONS(2525), - [anon_sym_CR] = ACTIONS(2525), - [anon_sym_CR_LF] = ACTIONS(2525), + [ts_builtin_sym_end] = ACTIONS(2536), + [sym_identifier] = ACTIONS(2538), + [anon_sym_LF] = ACTIONS(2538), + [anon_sym_CR] = ACTIONS(2538), + [anon_sym_CR_LF] = ACTIONS(2538), [anon_sym_SLASH_SLASH] = ACTIONS(497), [anon_sym_SLASH_STAR] = ACTIONS(499), - [anon_sym_DOT] = ACTIONS(2525), - [anon_sym_as] = ACTIONS(2525), - [anon_sym_LBRACE] = ACTIONS(2525), - [anon_sym_COMMA] = ACTIONS(2525), - [anon_sym_const] = ACTIONS(2525), - [anon_sym_LPAREN] = ACTIONS(2525), - [anon_sym_EQ] = ACTIONS(2525), - [anon_sym___global] = ACTIONS(2525), - [anon_sym_type] = ACTIONS(2525), - [anon_sym_PIPE] = ACTIONS(2525), - [anon_sym_fn] = ACTIONS(2525), - [anon_sym_PLUS] = ACTIONS(2525), - [anon_sym_DASH] = ACTIONS(2525), - [anon_sym_STAR] = ACTIONS(2525), - [anon_sym_SLASH] = ACTIONS(2525), - [anon_sym_PERCENT] = ACTIONS(2525), - [anon_sym_LT] = ACTIONS(2525), - [anon_sym_GT] = ACTIONS(2525), - [anon_sym_EQ_EQ] = ACTIONS(2525), - [anon_sym_BANG_EQ] = ACTIONS(2525), - [anon_sym_LT_EQ] = ACTIONS(2525), - [anon_sym_GT_EQ] = ACTIONS(2525), - [anon_sym_LBRACK] = ACTIONS(2523), - [anon_sym_struct] = ACTIONS(2525), - [anon_sym_union] = ACTIONS(2525), - [anon_sym_pub] = ACTIONS(2525), - [anon_sym_mut] = ACTIONS(2525), - [anon_sym_enum] = ACTIONS(2525), - [anon_sym_interface] = ACTIONS(2525), - [anon_sym_PLUS_PLUS] = ACTIONS(2525), - [anon_sym_DASH_DASH] = ACTIONS(2525), - [anon_sym_QMARK] = ACTIONS(2525), - [anon_sym_BANG] = ACTIONS(2527), - [anon_sym_go] = ACTIONS(2525), - [anon_sym_spawn] = ACTIONS(2525), - [anon_sym_json_DOTdecode] = ACTIONS(2525), - [anon_sym_LBRACK2] = ACTIONS(2525), - [anon_sym_TILDE] = ACTIONS(2525), - [anon_sym_CARET] = ACTIONS(2525), - [anon_sym_AMP] = ACTIONS(2525), - [anon_sym_LT_DASH] = ACTIONS(2525), - [anon_sym_LT_LT] = ACTIONS(2525), - [anon_sym_GT_GT] = ACTIONS(2525), - [anon_sym_GT_GT_GT] = ACTIONS(2525), - [anon_sym_AMP_CARET] = ACTIONS(2525), - [anon_sym_AMP_AMP] = ACTIONS(2525), - [anon_sym_PIPE_PIPE] = ACTIONS(2525), - [anon_sym_or] = ACTIONS(2525), - [sym_none] = ACTIONS(2525), - [sym_true] = ACTIONS(2525), - [sym_false] = ACTIONS(2525), - [sym_nil] = ACTIONS(2525), - [anon_sym_QMARK_DOT] = ACTIONS(2525), - [anon_sym_POUND_LBRACK] = ACTIONS(2525), - [anon_sym_if] = ACTIONS(2525), - [anon_sym_DOLLARif] = ACTIONS(2525), - [anon_sym_is] = ACTIONS(2525), - [anon_sym_BANGis] = ACTIONS(2525), - [anon_sym_in] = ACTIONS(2525), - [anon_sym_BANGin] = ACTIONS(2525), - [anon_sym_match] = ACTIONS(2525), - [anon_sym_select] = ACTIONS(2525), - [anon_sym_STAR_EQ] = ACTIONS(2525), - [anon_sym_SLASH_EQ] = ACTIONS(2525), - [anon_sym_PERCENT_EQ] = ACTIONS(2525), - [anon_sym_LT_LT_EQ] = ACTIONS(2525), - [anon_sym_GT_GT_EQ] = ACTIONS(2525), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(2525), - [anon_sym_AMP_EQ] = ACTIONS(2525), - [anon_sym_AMP_CARET_EQ] = ACTIONS(2525), - [anon_sym_PLUS_EQ] = ACTIONS(2525), - [anon_sym_DASH_EQ] = ACTIONS(2525), - [anon_sym_PIPE_EQ] = ACTIONS(2525), - [anon_sym_CARET_EQ] = ACTIONS(2525), - [anon_sym_COLON_EQ] = ACTIONS(2525), - [anon_sym_lock] = ACTIONS(2525), - [anon_sym_rlock] = ACTIONS(2525), - [anon_sym_unsafe] = ACTIONS(2525), - [anon_sym_sql] = ACTIONS(2525), - [sym_int_literal] = ACTIONS(2525), - [sym_float_literal] = ACTIONS(2525), - [sym_rune_literal] = ACTIONS(2525), - [sym_pseudo_compile_time_identifier] = ACTIONS(2525), - [anon_sym_shared] = ACTIONS(2525), - [anon_sym_map_LBRACK] = ACTIONS(2525), - [anon_sym_chan] = ACTIONS(2525), - [anon_sym_thread] = ACTIONS(2525), - [anon_sym_atomic] = ACTIONS(2525), - [anon_sym_assert] = ACTIONS(2525), - [anon_sym_defer] = ACTIONS(2525), - [anon_sym_goto] = ACTIONS(2525), - [anon_sym_break] = ACTIONS(2525), - [anon_sym_continue] = ACTIONS(2525), - [anon_sym_return] = ACTIONS(2525), - [anon_sym_DOLLARfor] = ACTIONS(2525), - [anon_sym_for] = ACTIONS(2525), - [anon_sym_POUND] = ACTIONS(2525), - [anon_sym_asm] = ACTIONS(2525), - [anon_sym_AT_LBRACK] = ACTIONS(2525), - [sym___double_quote] = ACTIONS(2525), - [sym___single_quote] = ACTIONS(2525), - [sym___c_double_quote] = ACTIONS(2525), - [sym___c_single_quote] = ACTIONS(2525), - [sym___r_double_quote] = ACTIONS(2525), - [sym___r_single_quote] = ACTIONS(2525), + [anon_sym_DOT] = ACTIONS(2538), + [anon_sym_as] = ACTIONS(2538), + [anon_sym_LBRACE] = ACTIONS(2538), + [anon_sym_COMMA] = ACTIONS(2538), + [anon_sym_const] = ACTIONS(2538), + [anon_sym_LPAREN] = ACTIONS(2538), + [anon_sym_EQ] = ACTIONS(2538), + [anon_sym___global] = ACTIONS(2538), + [anon_sym_type] = ACTIONS(2538), + [anon_sym_PIPE] = ACTIONS(2538), + [anon_sym_fn] = ACTIONS(2538), + [anon_sym_PLUS] = ACTIONS(2538), + [anon_sym_DASH] = ACTIONS(2538), + [anon_sym_STAR] = ACTIONS(2538), + [anon_sym_SLASH] = ACTIONS(2538), + [anon_sym_PERCENT] = ACTIONS(2538), + [anon_sym_LT] = ACTIONS(2538), + [anon_sym_GT] = ACTIONS(2538), + [anon_sym_EQ_EQ] = ACTIONS(2538), + [anon_sym_BANG_EQ] = ACTIONS(2538), + [anon_sym_LT_EQ] = ACTIONS(2538), + [anon_sym_GT_EQ] = ACTIONS(2538), + [anon_sym_LBRACK] = ACTIONS(2536), + [anon_sym_struct] = ACTIONS(2538), + [anon_sym_union] = ACTIONS(2538), + [anon_sym_pub] = ACTIONS(2538), + [anon_sym_mut] = ACTIONS(2538), + [anon_sym_enum] = ACTIONS(2538), + [anon_sym_interface] = ACTIONS(2538), + [anon_sym_PLUS_PLUS] = ACTIONS(2538), + [anon_sym_DASH_DASH] = ACTIONS(2538), + [anon_sym_QMARK] = ACTIONS(2538), + [anon_sym_BANG] = ACTIONS(2538), + [anon_sym_go] = ACTIONS(2538), + [anon_sym_spawn] = ACTIONS(2538), + [anon_sym_json_DOTdecode] = ACTIONS(2538), + [anon_sym_LBRACK2] = ACTIONS(2538), + [anon_sym_TILDE] = ACTIONS(2538), + [anon_sym_CARET] = ACTIONS(2538), + [anon_sym_AMP] = ACTIONS(2538), + [anon_sym_LT_DASH] = ACTIONS(2538), + [anon_sym_LT_LT] = ACTIONS(2538), + [anon_sym_GT_GT] = ACTIONS(2538), + [anon_sym_GT_GT_GT] = ACTIONS(2538), + [anon_sym_AMP_CARET] = ACTIONS(2538), + [anon_sym_AMP_AMP] = ACTIONS(2538), + [anon_sym_PIPE_PIPE] = ACTIONS(2538), + [anon_sym_or] = ACTIONS(2538), + [sym_none] = ACTIONS(2538), + [sym_true] = ACTIONS(2538), + [sym_false] = ACTIONS(2538), + [sym_nil] = ACTIONS(2538), + [anon_sym_QMARK_DOT] = ACTIONS(2538), + [anon_sym_POUND_LBRACK] = ACTIONS(2538), + [anon_sym_if] = ACTIONS(2538), + [anon_sym_DOLLARif] = ACTIONS(2538), + [anon_sym_is] = ACTIONS(2538), + [anon_sym_BANGis] = ACTIONS(2538), + [anon_sym_in] = ACTIONS(2538), + [anon_sym_BANGin] = ACTIONS(2538), + [anon_sym_match] = ACTIONS(2538), + [anon_sym_select] = ACTIONS(2538), + [anon_sym_STAR_EQ] = ACTIONS(2538), + [anon_sym_SLASH_EQ] = ACTIONS(2538), + [anon_sym_PERCENT_EQ] = ACTIONS(2538), + [anon_sym_LT_LT_EQ] = ACTIONS(2538), + [anon_sym_GT_GT_EQ] = ACTIONS(2538), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(2538), + [anon_sym_AMP_EQ] = ACTIONS(2538), + [anon_sym_AMP_CARET_EQ] = ACTIONS(2538), + [anon_sym_PLUS_EQ] = ACTIONS(2538), + [anon_sym_DASH_EQ] = ACTIONS(2538), + [anon_sym_PIPE_EQ] = ACTIONS(2538), + [anon_sym_CARET_EQ] = ACTIONS(2538), + [anon_sym_COLON_EQ] = ACTIONS(2538), + [anon_sym_lock] = ACTIONS(2538), + [anon_sym_rlock] = ACTIONS(2538), + [anon_sym_unsafe] = ACTIONS(2538), + [anon_sym_sql] = ACTIONS(2538), + [sym_int_literal] = ACTIONS(2538), + [sym_float_literal] = ACTIONS(2538), + [sym_rune_literal] = ACTIONS(2538), + [sym_pseudo_compile_time_identifier] = ACTIONS(2538), + [anon_sym_shared] = ACTIONS(2538), + [anon_sym_map_LBRACK] = ACTIONS(2538), + [anon_sym_chan] = ACTIONS(2538), + [anon_sym_thread] = ACTIONS(2538), + [anon_sym_atomic] = ACTIONS(2538), + [anon_sym_assert] = ACTIONS(2538), + [anon_sym_defer] = ACTIONS(2538), + [anon_sym_goto] = ACTIONS(2538), + [anon_sym_break] = ACTIONS(2538), + [anon_sym_continue] = ACTIONS(2538), + [anon_sym_return] = ACTIONS(2538), + [anon_sym_DOLLARfor] = ACTIONS(2538), + [anon_sym_for] = ACTIONS(2538), + [anon_sym_POUND] = ACTIONS(2538), + [anon_sym_asm] = ACTIONS(2538), + [anon_sym_AT_LBRACK] = ACTIONS(2538), + [sym___double_quote] = ACTIONS(2538), + [sym___single_quote] = ACTIONS(2538), + [sym___c_double_quote] = ACTIONS(2538), + [sym___c_single_quote] = ACTIONS(2538), + [sym___r_double_quote] = ACTIONS(2538), + [sym___r_single_quote] = ACTIONS(2538), }, [404] = { [sym_line_comment] = STATE(404), [sym_block_comment] = STATE(404), - [sym__expression] = STATE(1268), - [sym__expression_without_blocks] = STATE(1312), - [sym__expression_with_blocks] = STATE(1312), - [sym_inc_expression] = STATE(1313), - [sym_dec_expression] = STATE(1313), - [sym_or_block_expression] = STATE(1313), - [sym_option_propagation_expression] = STATE(1313), - [sym_result_propagation_expression] = STATE(1313), - [sym_anon_struct_value_expression] = STATE(1314), - [sym_go_expression] = STATE(1313), - [sym_spawn_expression] = STATE(1313), - [sym_parenthesized_expression] = STATE(1313), - [sym_call_expression] = STATE(1313), - [sym_type_initializer] = STATE(1314), - [sym_function_literal] = STATE(1313), - [sym_reference_expression] = STATE(1334), - [sym_type_reference_expression] = STATE(3541), - [sym_unary_expression] = STATE(1313), - [sym_receive_expression] = STATE(1313), - [sym_binary_expression] = STATE(1313), - [sym_as_type_cast_expression] = STATE(1313), - [sym__max_group] = STATE(1313), - [sym_literal] = STATE(1308), - [sym_map_init_expression] = STATE(1314), - [sym_array_creation] = STATE(1313), - [sym_fixed_array_creation] = STATE(1313), - [sym_selector_expression] = STATE(1313), - [sym_index_expression] = STATE(1313), - [sym_slice_expression] = STATE(1313), - [sym_if_expression] = STATE(1314), - [sym_compile_time_if_expression] = STATE(1314), - [sym_is_expression] = STATE(1313), - [sym_in_expression] = STATE(1313), - [sym_enum_fetch] = STATE(1313), - [sym_match_expression] = STATE(1314), - [sym_select_expression] = STATE(1314), - [sym_lock_expression] = STATE(1314), - [sym_unsafe_expression] = STATE(1314), - [sym_sql_expression] = STATE(1314), - [sym_c_string_literal] = STATE(1286), - [sym_raw_string_literal] = STATE(1286), - [sym_interpreted_string_literal] = STATE(1286), - [sym_mutability_modifiers] = STATE(699), - [sym_plain_type] = STATE(4192), - [sym__plain_type_without_special] = STATE(2302), - [sym_anon_struct_type] = STATE(2303), - [sym_multi_return_type] = STATE(2302), - [sym_result_type] = STATE(2302), - [sym_option_type] = STATE(2302), - [sym_qualified_type] = STATE(3541), - [sym_fixed_array_type] = STATE(2303), - [sym_array_type] = STATE(2303), - [sym_pointer_type] = STATE(2303), - [sym_wrong_pointer_type] = STATE(2303), - [sym_map_type] = STATE(2303), - [sym_channel_type] = STATE(2303), - [sym_shared_type] = STATE(2303), - [sym_thread_type] = STATE(2303), - [sym_atomic_type] = STATE(2303), - [sym_generic_type] = STATE(2303), - [sym_function_type] = STATE(2303), - [aux_sym__array_repeat1] = STATE(404), - [sym_identifier] = ACTIONS(2529), - [anon_sym_SLASH_SLASH] = ACTIONS(3), - [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(2532), - [anon_sym_LBRACE] = ACTIONS(2535), - [anon_sym_LPAREN] = ACTIONS(2538), - [anon_sym_fn] = ACTIONS(2541), - [anon_sym_PLUS] = ACTIONS(2544), - [anon_sym_DASH] = ACTIONS(2544), - [anon_sym_STAR] = ACTIONS(2547), - [anon_sym_RBRACK] = ACTIONS(2550), - [anon_sym_struct] = ACTIONS(2552), - [anon_sym_mut] = ACTIONS(2555), - [anon_sym_QMARK] = ACTIONS(2558), - [anon_sym_BANG] = ACTIONS(2561), - [anon_sym_go] = ACTIONS(2564), - [anon_sym_spawn] = ACTIONS(2567), - [anon_sym_json_DOTdecode] = ACTIONS(2570), - [anon_sym_LBRACK2] = ACTIONS(2573), - [anon_sym_TILDE] = ACTIONS(2544), - [anon_sym_CARET] = ACTIONS(2544), - [anon_sym_AMP] = ACTIONS(2576), - [anon_sym_LT_DASH] = ACTIONS(2579), - [sym_none] = ACTIONS(2582), - [sym_true] = ACTIONS(2582), - [sym_false] = ACTIONS(2582), - [sym_nil] = ACTIONS(2582), - [anon_sym_if] = ACTIONS(2585), - [anon_sym_DOLLARif] = ACTIONS(2588), - [anon_sym_match] = ACTIONS(2591), - [anon_sym_select] = ACTIONS(2594), - [anon_sym_lock] = ACTIONS(2597), - [anon_sym_rlock] = ACTIONS(2597), - [anon_sym_unsafe] = ACTIONS(2600), - [anon_sym_sql] = ACTIONS(2603), - [sym_int_literal] = ACTIONS(2582), - [sym_float_literal] = ACTIONS(2606), - [sym_rune_literal] = ACTIONS(2606), - [sym_pseudo_compile_time_identifier] = ACTIONS(2609), - [anon_sym_shared] = ACTIONS(2612), - [anon_sym_map_LBRACK] = ACTIONS(2615), - [anon_sym_chan] = ACTIONS(2618), - [anon_sym_thread] = ACTIONS(2621), - [anon_sym_atomic] = ACTIONS(2624), - [sym___double_quote] = ACTIONS(2627), - [sym___single_quote] = ACTIONS(2630), - [sym___c_double_quote] = ACTIONS(2633), - [sym___c_single_quote] = ACTIONS(2636), - [sym___r_double_quote] = ACTIONS(2639), - [sym___r_single_quote] = ACTIONS(2642), + [ts_builtin_sym_end] = ACTIONS(2540), + [sym_identifier] = ACTIONS(2542), + [anon_sym_LF] = ACTIONS(2542), + [anon_sym_CR] = ACTIONS(2542), + [anon_sym_CR_LF] = ACTIONS(2542), + [anon_sym_SLASH_SLASH] = ACTIONS(497), + [anon_sym_SLASH_STAR] = ACTIONS(499), + [anon_sym_DOT] = ACTIONS(2542), + [anon_sym_as] = ACTIONS(2542), + [anon_sym_LBRACE] = ACTIONS(2542), + [anon_sym_COMMA] = ACTIONS(2542), + [anon_sym_const] = ACTIONS(2542), + [anon_sym_LPAREN] = ACTIONS(2542), + [anon_sym_EQ] = ACTIONS(2542), + [anon_sym___global] = ACTIONS(2542), + [anon_sym_type] = ACTIONS(2542), + [anon_sym_PIPE] = ACTIONS(2542), + [anon_sym_fn] = ACTIONS(2542), + [anon_sym_PLUS] = ACTIONS(2542), + [anon_sym_DASH] = ACTIONS(2542), + [anon_sym_STAR] = ACTIONS(2542), + [anon_sym_SLASH] = ACTIONS(2542), + [anon_sym_PERCENT] = ACTIONS(2542), + [anon_sym_LT] = ACTIONS(2542), + [anon_sym_GT] = ACTIONS(2542), + [anon_sym_EQ_EQ] = ACTIONS(2542), + [anon_sym_BANG_EQ] = ACTIONS(2542), + [anon_sym_LT_EQ] = ACTIONS(2542), + [anon_sym_GT_EQ] = ACTIONS(2542), + [anon_sym_LBRACK] = ACTIONS(2540), + [anon_sym_struct] = ACTIONS(2542), + [anon_sym_union] = ACTIONS(2542), + [anon_sym_pub] = ACTIONS(2542), + [anon_sym_mut] = ACTIONS(2542), + [anon_sym_enum] = ACTIONS(2542), + [anon_sym_interface] = ACTIONS(2542), + [anon_sym_PLUS_PLUS] = ACTIONS(2542), + [anon_sym_DASH_DASH] = ACTIONS(2542), + [anon_sym_QMARK] = ACTIONS(2542), + [anon_sym_BANG] = ACTIONS(2544), + [anon_sym_go] = ACTIONS(2542), + [anon_sym_spawn] = ACTIONS(2542), + [anon_sym_json_DOTdecode] = ACTIONS(2542), + [anon_sym_LBRACK2] = ACTIONS(2542), + [anon_sym_TILDE] = ACTIONS(2542), + [anon_sym_CARET] = ACTIONS(2542), + [anon_sym_AMP] = ACTIONS(2542), + [anon_sym_LT_DASH] = ACTIONS(2542), + [anon_sym_LT_LT] = ACTIONS(2542), + [anon_sym_GT_GT] = ACTIONS(2542), + [anon_sym_GT_GT_GT] = ACTIONS(2542), + [anon_sym_AMP_CARET] = ACTIONS(2542), + [anon_sym_AMP_AMP] = ACTIONS(2542), + [anon_sym_PIPE_PIPE] = ACTIONS(2542), + [anon_sym_or] = ACTIONS(2542), + [sym_none] = ACTIONS(2542), + [sym_true] = ACTIONS(2542), + [sym_false] = ACTIONS(2542), + [sym_nil] = ACTIONS(2542), + [anon_sym_QMARK_DOT] = ACTIONS(2542), + [anon_sym_POUND_LBRACK] = ACTIONS(2542), + [anon_sym_if] = ACTIONS(2542), + [anon_sym_DOLLARif] = ACTIONS(2542), + [anon_sym_is] = ACTIONS(2542), + [anon_sym_BANGis] = ACTIONS(2542), + [anon_sym_in] = ACTIONS(2542), + [anon_sym_BANGin] = ACTIONS(2542), + [anon_sym_match] = ACTIONS(2542), + [anon_sym_select] = ACTIONS(2542), + [anon_sym_STAR_EQ] = ACTIONS(2542), + [anon_sym_SLASH_EQ] = ACTIONS(2542), + [anon_sym_PERCENT_EQ] = ACTIONS(2542), + [anon_sym_LT_LT_EQ] = ACTIONS(2542), + [anon_sym_GT_GT_EQ] = ACTIONS(2542), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(2542), + [anon_sym_AMP_EQ] = ACTIONS(2542), + [anon_sym_AMP_CARET_EQ] = ACTIONS(2542), + [anon_sym_PLUS_EQ] = ACTIONS(2542), + [anon_sym_DASH_EQ] = ACTIONS(2542), + [anon_sym_PIPE_EQ] = ACTIONS(2542), + [anon_sym_CARET_EQ] = ACTIONS(2542), + [anon_sym_COLON_EQ] = ACTIONS(2542), + [anon_sym_lock] = ACTIONS(2542), + [anon_sym_rlock] = ACTIONS(2542), + [anon_sym_unsafe] = ACTIONS(2542), + [anon_sym_sql] = ACTIONS(2542), + [sym_int_literal] = ACTIONS(2542), + [sym_float_literal] = ACTIONS(2542), + [sym_rune_literal] = ACTIONS(2542), + [sym_pseudo_compile_time_identifier] = ACTIONS(2542), + [anon_sym_shared] = ACTIONS(2542), + [anon_sym_map_LBRACK] = ACTIONS(2542), + [anon_sym_chan] = ACTIONS(2542), + [anon_sym_thread] = ACTIONS(2542), + [anon_sym_atomic] = ACTIONS(2542), + [anon_sym_assert] = ACTIONS(2542), + [anon_sym_defer] = ACTIONS(2542), + [anon_sym_goto] = ACTIONS(2542), + [anon_sym_break] = ACTIONS(2542), + [anon_sym_continue] = ACTIONS(2542), + [anon_sym_return] = ACTIONS(2542), + [anon_sym_DOLLARfor] = ACTIONS(2542), + [anon_sym_for] = ACTIONS(2542), + [anon_sym_POUND] = ACTIONS(2542), + [anon_sym_asm] = ACTIONS(2542), + [anon_sym_AT_LBRACK] = ACTIONS(2542), + [sym___double_quote] = ACTIONS(2542), + [sym___single_quote] = ACTIONS(2542), + [sym___c_double_quote] = ACTIONS(2542), + [sym___c_single_quote] = ACTIONS(2542), + [sym___r_double_quote] = ACTIONS(2542), + [sym___r_single_quote] = ACTIONS(2542), }, [405] = { [sym_line_comment] = STATE(405), [sym_block_comment] = STATE(405), - [ts_builtin_sym_end] = ACTIONS(2645), - [sym_identifier] = ACTIONS(2647), - [anon_sym_LF] = ACTIONS(2647), - [anon_sym_CR] = ACTIONS(2647), - [anon_sym_CR_LF] = ACTIONS(2647), - [anon_sym_SLASH_SLASH] = ACTIONS(497), - [anon_sym_SLASH_STAR] = ACTIONS(499), - [anon_sym_DOT] = ACTIONS(2647), - [anon_sym_as] = ACTIONS(2647), - [anon_sym_LBRACE] = ACTIONS(2647), - [anon_sym_COMMA] = ACTIONS(2647), - [anon_sym_const] = ACTIONS(2647), - [anon_sym_LPAREN] = ACTIONS(2647), - [anon_sym_EQ] = ACTIONS(2647), - [anon_sym___global] = ACTIONS(2647), - [anon_sym_type] = ACTIONS(2647), - [anon_sym_PIPE] = ACTIONS(2647), - [anon_sym_fn] = ACTIONS(2647), - [anon_sym_PLUS] = ACTIONS(2647), - [anon_sym_DASH] = ACTIONS(2647), - [anon_sym_STAR] = ACTIONS(2647), - [anon_sym_SLASH] = ACTIONS(2647), - [anon_sym_PERCENT] = ACTIONS(2647), - [anon_sym_LT] = ACTIONS(2647), - [anon_sym_GT] = ACTIONS(2647), - [anon_sym_EQ_EQ] = ACTIONS(2647), - [anon_sym_BANG_EQ] = ACTIONS(2647), - [anon_sym_LT_EQ] = ACTIONS(2647), - [anon_sym_GT_EQ] = ACTIONS(2647), - [anon_sym_LBRACK] = ACTIONS(2645), - [anon_sym_struct] = ACTIONS(2647), - [anon_sym_union] = ACTIONS(2647), - [anon_sym_pub] = ACTIONS(2647), - [anon_sym_mut] = ACTIONS(2647), - [anon_sym_enum] = ACTIONS(2647), - [anon_sym_interface] = ACTIONS(2647), - [anon_sym_PLUS_PLUS] = ACTIONS(2647), - [anon_sym_DASH_DASH] = ACTIONS(2647), - [anon_sym_QMARK] = ACTIONS(2647), - [anon_sym_BANG] = ACTIONS(2647), - [anon_sym_go] = ACTIONS(2647), - [anon_sym_spawn] = ACTIONS(2647), - [anon_sym_json_DOTdecode] = ACTIONS(2647), - [anon_sym_LBRACK2] = ACTIONS(2647), - [anon_sym_TILDE] = ACTIONS(2647), - [anon_sym_CARET] = ACTIONS(2647), - [anon_sym_AMP] = ACTIONS(2647), - [anon_sym_LT_DASH] = ACTIONS(2647), - [anon_sym_LT_LT] = ACTIONS(2647), - [anon_sym_GT_GT] = ACTIONS(2647), - [anon_sym_GT_GT_GT] = ACTIONS(2647), - [anon_sym_AMP_CARET] = ACTIONS(2647), - [anon_sym_AMP_AMP] = ACTIONS(2647), - [anon_sym_PIPE_PIPE] = ACTIONS(2647), - [anon_sym_or] = ACTIONS(2647), - [sym_none] = ACTIONS(2647), - [sym_true] = ACTIONS(2647), - [sym_false] = ACTIONS(2647), - [sym_nil] = ACTIONS(2647), - [anon_sym_QMARK_DOT] = ACTIONS(2647), - [anon_sym_POUND_LBRACK] = ACTIONS(2647), - [anon_sym_if] = ACTIONS(2647), - [anon_sym_DOLLARif] = ACTIONS(2647), - [anon_sym_is] = ACTIONS(2647), - [anon_sym_BANGis] = ACTIONS(2647), - [anon_sym_in] = ACTIONS(2647), - [anon_sym_BANGin] = ACTIONS(2647), - [anon_sym_match] = ACTIONS(2647), - [anon_sym_select] = ACTIONS(2647), - [anon_sym_STAR_EQ] = ACTIONS(2647), - [anon_sym_SLASH_EQ] = ACTIONS(2647), - [anon_sym_PERCENT_EQ] = ACTIONS(2647), - [anon_sym_LT_LT_EQ] = ACTIONS(2647), - [anon_sym_GT_GT_EQ] = ACTIONS(2647), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(2647), - [anon_sym_AMP_EQ] = ACTIONS(2647), - [anon_sym_AMP_CARET_EQ] = ACTIONS(2647), - [anon_sym_PLUS_EQ] = ACTIONS(2647), - [anon_sym_DASH_EQ] = ACTIONS(2647), - [anon_sym_PIPE_EQ] = ACTIONS(2647), - [anon_sym_CARET_EQ] = ACTIONS(2647), - [anon_sym_COLON_EQ] = ACTIONS(2647), - [anon_sym_lock] = ACTIONS(2647), - [anon_sym_rlock] = ACTIONS(2647), - [anon_sym_unsafe] = ACTIONS(2647), - [anon_sym_sql] = ACTIONS(2647), - [sym_int_literal] = ACTIONS(2647), - [sym_float_literal] = ACTIONS(2647), - [sym_rune_literal] = ACTIONS(2647), - [sym_pseudo_compile_time_identifier] = ACTIONS(2647), - [anon_sym_shared] = ACTIONS(2647), - [anon_sym_map_LBRACK] = ACTIONS(2647), - [anon_sym_chan] = ACTIONS(2647), - [anon_sym_thread] = ACTIONS(2647), - [anon_sym_atomic] = ACTIONS(2647), - [anon_sym_assert] = ACTIONS(2647), - [anon_sym_defer] = ACTIONS(2647), - [anon_sym_goto] = ACTIONS(2647), - [anon_sym_break] = ACTIONS(2647), - [anon_sym_continue] = ACTIONS(2647), - [anon_sym_return] = ACTIONS(2647), - [anon_sym_DOLLARfor] = ACTIONS(2647), - [anon_sym_for] = ACTIONS(2647), - [anon_sym_POUND] = ACTIONS(2647), - [anon_sym_asm] = ACTIONS(2647), - [anon_sym_AT_LBRACK] = ACTIONS(2647), - [sym___double_quote] = ACTIONS(2647), + [sym__expression] = STATE(1273), + [sym__expression_without_blocks] = STATE(1318), + [sym__expression_with_blocks] = STATE(1318), + [sym_inc_expression] = STATE(1319), + [sym_dec_expression] = STATE(1319), + [sym_or_block_expression] = STATE(1319), + [sym_option_propagation_expression] = STATE(1319), + [sym_result_propagation_expression] = STATE(1319), + [sym_anon_struct_value_expression] = STATE(1320), + [sym_go_expression] = STATE(1319), + [sym_spawn_expression] = STATE(1319), + [sym_parenthesized_expression] = STATE(1319), + [sym_call_expression] = STATE(1319), + [sym_type_initializer] = STATE(1320), + [sym_function_literal] = STATE(1319), + [sym_reference_expression] = STATE(1298), + [sym_type_reference_expression] = STATE(3460), + [sym_unary_expression] = STATE(1319), + [sym_receive_expression] = STATE(1319), + [sym_binary_expression] = STATE(1319), + [sym_as_type_cast_expression] = STATE(1319), + [sym__max_group] = STATE(1319), + [sym_literal] = STATE(1314), + [sym_map_init_expression] = STATE(1320), + [sym_array_creation] = STATE(1319), + [sym_fixed_array_creation] = STATE(1319), + [sym_selector_expression] = STATE(1319), + [sym_index_expression] = STATE(1319), + [sym_slice_expression] = STATE(1319), + [sym_if_expression] = STATE(1320), + [sym_compile_time_if_expression] = STATE(1320), + [sym_is_expression] = STATE(1319), + [sym_in_expression] = STATE(1319), + [sym_enum_fetch] = STATE(1319), + [sym_match_expression] = STATE(1320), + [sym_select_expression] = STATE(1320), + [sym_lock_expression] = STATE(1320), + [sym_unsafe_expression] = STATE(1320), + [sym_sql_expression] = STATE(1320), + [sym_c_string_literal] = STATE(1291), + [sym_raw_string_literal] = STATE(1291), + [sym_interpreted_string_literal] = STATE(1291), + [sym_mutability_modifiers] = STATE(639), + [sym_plain_type] = STATE(4307), + [sym__plain_type_without_special] = STATE(2360), + [sym_anon_struct_type] = STATE(2362), + [sym_multi_return_type] = STATE(2360), + [sym_result_type] = STATE(2360), + [sym_option_type] = STATE(2360), + [sym_qualified_type] = STATE(3460), + [sym_fixed_array_type] = STATE(2362), + [sym_array_type] = STATE(2362), + [sym_pointer_type] = STATE(2362), + [sym_wrong_pointer_type] = STATE(2362), + [sym_map_type] = STATE(2362), + [sym_channel_type] = STATE(2362), + [sym_shared_type] = STATE(2362), + [sym_thread_type] = STATE(2362), + [sym_atomic_type] = STATE(2362), + [sym_generic_type] = STATE(2362), + [sym_function_type] = STATE(2362), + [aux_sym__array_repeat1] = STATE(405), + [sym_identifier] = ACTIONS(2546), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(2549), + [anon_sym_LBRACE] = ACTIONS(2552), + [anon_sym_LPAREN] = ACTIONS(2555), + [anon_sym_fn] = ACTIONS(2558), + [anon_sym_PLUS] = ACTIONS(2561), + [anon_sym_DASH] = ACTIONS(2561), + [anon_sym_STAR] = ACTIONS(2564), + [anon_sym_RBRACK] = ACTIONS(2567), + [anon_sym_struct] = ACTIONS(2569), + [anon_sym_mut] = ACTIONS(2572), + [anon_sym_QMARK] = ACTIONS(2575), + [anon_sym_BANG] = ACTIONS(2578), + [anon_sym_go] = ACTIONS(2581), + [anon_sym_spawn] = ACTIONS(2584), + [anon_sym_json_DOTdecode] = ACTIONS(2587), + [anon_sym_LBRACK2] = ACTIONS(2590), + [anon_sym_TILDE] = ACTIONS(2561), + [anon_sym_CARET] = ACTIONS(2561), + [anon_sym_AMP] = ACTIONS(2593), + [anon_sym_LT_DASH] = ACTIONS(2596), + [sym_none] = ACTIONS(2599), + [sym_true] = ACTIONS(2599), + [sym_false] = ACTIONS(2599), + [sym_nil] = ACTIONS(2599), + [anon_sym_if] = ACTIONS(2602), + [anon_sym_DOLLARif] = ACTIONS(2605), + [anon_sym_match] = ACTIONS(2608), + [anon_sym_select] = ACTIONS(2611), + [anon_sym_lock] = ACTIONS(2614), + [anon_sym_rlock] = ACTIONS(2614), + [anon_sym_unsafe] = ACTIONS(2617), + [anon_sym_sql] = ACTIONS(2620), + [sym_int_literal] = ACTIONS(2599), + [sym_float_literal] = ACTIONS(2623), + [sym_rune_literal] = ACTIONS(2623), + [sym_pseudo_compile_time_identifier] = ACTIONS(2626), + [anon_sym_shared] = ACTIONS(2629), + [anon_sym_map_LBRACK] = ACTIONS(2632), + [anon_sym_chan] = ACTIONS(2635), + [anon_sym_thread] = ACTIONS(2638), + [anon_sym_atomic] = ACTIONS(2641), + [sym___double_quote] = ACTIONS(2644), [sym___single_quote] = ACTIONS(2647), - [sym___c_double_quote] = ACTIONS(2647), - [sym___c_single_quote] = ACTIONS(2647), - [sym___r_double_quote] = ACTIONS(2647), - [sym___r_single_quote] = ACTIONS(2647), + [sym___c_double_quote] = ACTIONS(2650), + [sym___c_single_quote] = ACTIONS(2653), + [sym___r_double_quote] = ACTIONS(2656), + [sym___r_single_quote] = ACTIONS(2659), }, [406] = { [sym_line_comment] = STATE(406), [sym_block_comment] = STATE(406), - [sym__expression] = STATE(2600), - [sym__expression_without_blocks] = STATE(2300), - [sym__expression_with_blocks] = STATE(2300), - [sym_inc_expression] = STATE(2307), - [sym_dec_expression] = STATE(2307), - [sym_or_block_expression] = STATE(2307), - [sym_option_propagation_expression] = STATE(2307), - [sym_result_propagation_expression] = STATE(2307), - [sym_anon_struct_value_expression] = STATE(2380), - [sym_go_expression] = STATE(2307), - [sym_spawn_expression] = STATE(2307), - [sym_parenthesized_expression] = STATE(2307), - [sym_call_expression] = STATE(2307), - [sym_type_initializer] = STATE(2380), - [sym_function_literal] = STATE(2307), - [sym_reference_expression] = STATE(2311), - [sym_type_reference_expression] = STATE(3541), - [sym_unary_expression] = STATE(2307), - [sym_receive_expression] = STATE(2307), - [sym_binary_expression] = STATE(2307), - [sym_as_type_cast_expression] = STATE(2307), - [sym__max_group] = STATE(2307), - [sym_literal] = STATE(2292), - [sym_map_init_expression] = STATE(2380), - [sym_array_creation] = STATE(2307), - [sym_fixed_array_creation] = STATE(2307), - [sym_selector_expression] = STATE(2307), - [sym_index_expression] = STATE(2307), - [sym_slice_expression] = STATE(2307), - [sym_if_expression] = STATE(2380), - [sym_compile_time_if_expression] = STATE(2380), - [sym_is_expression] = STATE(2307), - [sym_in_expression] = STATE(2307), - [sym_enum_fetch] = STATE(2307), - [sym_match_expression] = STATE(2380), - [sym_select_expression] = STATE(2380), - [sym_lock_expression] = STATE(2380), - [sym_unsafe_expression] = STATE(2380), - [sym_sql_expression] = STATE(2380), - [sym_c_string_literal] = STATE(2308), - [sym_raw_string_literal] = STATE(2308), - [sym_interpreted_string_literal] = STATE(2308), - [sym_mutability_modifiers] = STATE(939), - [sym_plain_type] = STATE(4297), - [sym__plain_type_without_special] = STATE(2302), - [sym_anon_struct_type] = STATE(2303), - [sym_multi_return_type] = STATE(2302), - [sym_result_type] = STATE(2302), - [sym_option_type] = STATE(2302), - [sym_qualified_type] = STATE(3541), - [sym_fixed_array_type] = STATE(2303), - [sym_array_type] = STATE(2303), - [sym_pointer_type] = STATE(2303), - [sym_wrong_pointer_type] = STATE(2303), - [sym_map_type] = STATE(2303), - [sym_channel_type] = STATE(2303), - [sym_shared_type] = STATE(2303), - [sym_thread_type] = STATE(2303), - [sym_atomic_type] = STATE(2303), - [sym_generic_type] = STATE(2303), - [sym_function_type] = STATE(2303), - [sym_range] = STATE(4467), - [sym_identifier] = ACTIONS(1426), + [sym__expression] = STATE(2558), + [sym__expression_without_blocks] = STATE(2347), + [sym__expression_with_blocks] = STATE(2347), + [sym_inc_expression] = STATE(2379), + [sym_dec_expression] = STATE(2379), + [sym_or_block_expression] = STATE(2379), + [sym_option_propagation_expression] = STATE(2379), + [sym_result_propagation_expression] = STATE(2379), + [sym_anon_struct_value_expression] = STATE(2378), + [sym_go_expression] = STATE(2379), + [sym_spawn_expression] = STATE(2379), + [sym_parenthesized_expression] = STATE(2379), + [sym_call_expression] = STATE(2379), + [sym_type_initializer] = STATE(2378), + [sym_function_literal] = STATE(2379), + [sym_reference_expression] = STATE(2377), + [sym_type_reference_expression] = STATE(3460), + [sym_unary_expression] = STATE(2379), + [sym_receive_expression] = STATE(2379), + [sym_binary_expression] = STATE(2379), + [sym_as_type_cast_expression] = STATE(2379), + [sym__max_group] = STATE(2379), + [sym_literal] = STATE(2392), + [sym_map_init_expression] = STATE(2378), + [sym_array_creation] = STATE(2379), + [sym_fixed_array_creation] = STATE(2379), + [sym_selector_expression] = STATE(2379), + [sym_index_expression] = STATE(2379), + [sym_slice_expression] = STATE(2379), + [sym_if_expression] = STATE(2378), + [sym_compile_time_if_expression] = STATE(2378), + [sym_is_expression] = STATE(2379), + [sym_in_expression] = STATE(2379), + [sym_enum_fetch] = STATE(2379), + [sym_match_expression] = STATE(2378), + [sym_select_expression] = STATE(2378), + [sym_lock_expression] = STATE(2378), + [sym_unsafe_expression] = STATE(2378), + [sym_sql_expression] = STATE(2378), + [sym_c_string_literal] = STATE(2401), + [sym_raw_string_literal] = STATE(2401), + [sym_interpreted_string_literal] = STATE(2401), + [sym_mutability_modifiers] = STATE(900), + [sym_mutable_expression] = STATE(3813), + [sym_expression_list] = STATE(4474), + [sym_plain_type] = STATE(4160), + [sym__plain_type_without_special] = STATE(2360), + [sym_anon_struct_type] = STATE(2362), + [sym_multi_return_type] = STATE(2360), + [sym_result_type] = STATE(2360), + [sym_option_type] = STATE(2360), + [sym_qualified_type] = STATE(3460), + [sym_fixed_array_type] = STATE(2362), + [sym_array_type] = STATE(2362), + [sym_pointer_type] = STATE(2362), + [sym_wrong_pointer_type] = STATE(2362), + [sym_map_type] = STATE(2362), + [sym_channel_type] = STATE(2362), + [sym_shared_type] = STATE(2362), + [sym_thread_type] = STATE(2362), + [sym_atomic_type] = STATE(2362), + [sym_generic_type] = STATE(2362), + [sym_function_type] = STATE(2362), + [sym_identifier] = ACTIONS(1815), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1428), - [anon_sym_LBRACE] = ACTIONS(1430), - [anon_sym_LPAREN] = ACTIONS(1432), - [anon_sym_fn] = ACTIONS(1434), - [anon_sym_PLUS] = ACTIONS(1436), - [anon_sym_DASH] = ACTIONS(1436), - [anon_sym_STAR] = ACTIONS(1438), - [anon_sym_struct] = ACTIONS(1440), + [anon_sym_DOT] = ACTIONS(1430), + [anon_sym_LBRACE] = ACTIONS(2662), + [anon_sym_LPAREN] = ACTIONS(1434), + [anon_sym_fn] = ACTIONS(1436), + [anon_sym_PLUS] = ACTIONS(1817), + [anon_sym_DASH] = ACTIONS(1817), + [anon_sym_STAR] = ACTIONS(1819), + [anon_sym_struct] = ACTIONS(1442), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(1442), - [anon_sym_go] = ACTIONS(1444), - [anon_sym_spawn] = ACTIONS(1446), - [anon_sym_json_DOTdecode] = ACTIONS(1448), - [anon_sym_LBRACK2] = ACTIONS(1450), - [anon_sym_TILDE] = ACTIONS(1436), - [anon_sym_CARET] = ACTIONS(1436), - [anon_sym_AMP] = ACTIONS(1452), - [anon_sym_LT_DASH] = ACTIONS(1454), - [sym_none] = ACTIONS(1456), - [sym_true] = ACTIONS(1456), - [sym_false] = ACTIONS(1456), - [sym_nil] = ACTIONS(1456), - [anon_sym_if] = ACTIONS(1827), - [anon_sym_DOLLARif] = ACTIONS(1460), - [anon_sym_match] = ACTIONS(1462), - [anon_sym_select] = ACTIONS(1464), - [anon_sym_lock] = ACTIONS(1466), - [anon_sym_rlock] = ACTIONS(1466), - [anon_sym_unsafe] = ACTIONS(1833), - [anon_sym_sql] = ACTIONS(1470), - [sym_int_literal] = ACTIONS(1456), - [sym_float_literal] = ACTIONS(1472), - [sym_rune_literal] = ACTIONS(1472), - [sym_pseudo_compile_time_identifier] = ACTIONS(1474), + [anon_sym_BANG] = ACTIONS(1821), + [anon_sym_go] = ACTIONS(1823), + [anon_sym_spawn] = ACTIONS(1825), + [anon_sym_json_DOTdecode] = ACTIONS(1450), + [anon_sym_LBRACK2] = ACTIONS(1827), + [anon_sym_TILDE] = ACTIONS(1817), + [anon_sym_CARET] = ACTIONS(1817), + [anon_sym_AMP] = ACTIONS(1829), + [anon_sym_LT_DASH] = ACTIONS(1831), + [sym_none] = ACTIONS(1458), + [sym_true] = ACTIONS(1458), + [sym_false] = ACTIONS(1458), + [sym_nil] = ACTIONS(1458), + [anon_sym_if] = ACTIONS(1833), + [anon_sym_DOLLARif] = ACTIONS(1462), + [anon_sym_match] = ACTIONS(1464), + [anon_sym_select] = ACTIONS(1835), + [anon_sym_lock] = ACTIONS(1837), + [anon_sym_rlock] = ACTIONS(1837), + [anon_sym_unsafe] = ACTIONS(1839), + [anon_sym_sql] = ACTIONS(1472), + [sym_int_literal] = ACTIONS(1458), + [sym_float_literal] = ACTIONS(1474), + [sym_rune_literal] = ACTIONS(1474), + [sym_pseudo_compile_time_identifier] = ACTIONS(1476), [anon_sym_shared] = ACTIONS(83), [anon_sym_map_LBRACK] = ACTIONS(85), [anon_sym_chan] = ACTIONS(87), [anon_sym_thread] = ACTIONS(89), [anon_sym_atomic] = ACTIONS(91), - [anon_sym_DOT_DOT] = ACTIONS(1476), - [sym___double_quote] = ACTIONS(1478), - [sym___single_quote] = ACTIONS(1480), - [sym___c_double_quote] = ACTIONS(1482), - [sym___c_single_quote] = ACTIONS(1484), - [sym___r_double_quote] = ACTIONS(1486), - [sym___r_single_quote] = ACTIONS(1488), + [sym___double_quote] = ACTIONS(1480), + [sym___single_quote] = ACTIONS(1482), + [sym___c_double_quote] = ACTIONS(1484), + [sym___c_single_quote] = ACTIONS(1486), + [sym___r_double_quote] = ACTIONS(1488), + [sym___r_single_quote] = ACTIONS(1490), }, [407] = { [sym_line_comment] = STATE(407), [sym_block_comment] = STATE(407), - [ts_builtin_sym_end] = ACTIONS(2649), - [sym_identifier] = ACTIONS(2651), - [anon_sym_LF] = ACTIONS(2651), - [anon_sym_CR] = ACTIONS(2651), - [anon_sym_CR_LF] = ACTIONS(2651), - [anon_sym_SLASH_SLASH] = ACTIONS(497), - [anon_sym_SLASH_STAR] = ACTIONS(499), - [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(2649), - [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), + [sym__expression] = STATE(1273), + [sym__expression_without_blocks] = STATE(1318), + [sym__expression_with_blocks] = STATE(1318), + [sym_inc_expression] = STATE(1319), + [sym_dec_expression] = STATE(1319), + [sym_or_block_expression] = STATE(1319), + [sym_option_propagation_expression] = STATE(1319), + [sym_result_propagation_expression] = STATE(1319), + [sym_anon_struct_value_expression] = STATE(1320), + [sym_go_expression] = STATE(1319), + [sym_spawn_expression] = STATE(1319), + [sym_parenthesized_expression] = STATE(1319), + [sym_call_expression] = STATE(1319), + [sym_type_initializer] = STATE(1320), + [sym_function_literal] = STATE(1319), + [sym_reference_expression] = STATE(1298), + [sym_type_reference_expression] = STATE(3460), + [sym_unary_expression] = STATE(1319), + [sym_receive_expression] = STATE(1319), + [sym_binary_expression] = STATE(1319), + [sym_as_type_cast_expression] = STATE(1319), + [sym__max_group] = STATE(1319), + [sym_literal] = STATE(1314), + [sym_map_init_expression] = STATE(1320), + [sym_array_creation] = STATE(1319), + [sym_fixed_array_creation] = STATE(1319), + [sym_selector_expression] = STATE(1319), + [sym_index_expression] = STATE(1319), + [sym_slice_expression] = STATE(1319), + [sym_if_expression] = STATE(1320), + [sym_compile_time_if_expression] = STATE(1320), + [sym_is_expression] = STATE(1319), + [sym_in_expression] = STATE(1319), + [sym_enum_fetch] = STATE(1319), + [sym_match_expression] = STATE(1320), + [sym_select_expression] = STATE(1320), + [sym_lock_expression] = STATE(1320), + [sym_unsafe_expression] = STATE(1320), + [sym_sql_expression] = STATE(1320), + [sym_c_string_literal] = STATE(1291), + [sym_raw_string_literal] = STATE(1291), + [sym_interpreted_string_literal] = STATE(1291), + [sym_mutability_modifiers] = STATE(639), + [sym_plain_type] = STATE(4307), + [sym__plain_type_without_special] = STATE(2360), + [sym_anon_struct_type] = STATE(2362), + [sym_multi_return_type] = STATE(2360), + [sym_result_type] = STATE(2360), + [sym_option_type] = STATE(2360), + [sym_qualified_type] = STATE(3460), + [sym_fixed_array_type] = STATE(2362), + [sym_array_type] = STATE(2362), + [sym_pointer_type] = STATE(2362), + [sym_wrong_pointer_type] = STATE(2362), + [sym_map_type] = STATE(2362), + [sym_channel_type] = STATE(2362), + [sym_shared_type] = STATE(2362), + [sym_thread_type] = STATE(2362), + [sym_atomic_type] = STATE(2362), + [sym_generic_type] = STATE(2362), + [sym_function_type] = STATE(2362), + [aux_sym__array_repeat1] = STATE(405), + [sym_identifier] = ACTIONS(1360), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(1362), + [anon_sym_LBRACE] = ACTIONS(1364), + [anon_sym_LPAREN] = ACTIONS(1366), + [anon_sym_fn] = ACTIONS(1368), + [anon_sym_PLUS] = ACTIONS(1370), + [anon_sym_DASH] = ACTIONS(1370), + [anon_sym_STAR] = ACTIONS(1372), + [anon_sym_RBRACK] = ACTIONS(2664), + [anon_sym_struct] = ACTIONS(1376), + [anon_sym_mut] = ACTIONS(41), + [anon_sym_QMARK] = ACTIONS(47), + [anon_sym_BANG] = ACTIONS(1378), + [anon_sym_go] = ACTIONS(1380), + [anon_sym_spawn] = ACTIONS(1382), + [anon_sym_json_DOTdecode] = ACTIONS(1384), + [anon_sym_LBRACK2] = ACTIONS(1386), + [anon_sym_TILDE] = ACTIONS(1370), + [anon_sym_CARET] = ACTIONS(1370), + [anon_sym_AMP] = ACTIONS(1388), + [anon_sym_LT_DASH] = ACTIONS(1390), + [sym_none] = ACTIONS(1392), + [sym_true] = ACTIONS(1392), + [sym_false] = ACTIONS(1392), + [sym_nil] = ACTIONS(1392), + [anon_sym_if] = ACTIONS(1865), + [anon_sym_DOLLARif] = ACTIONS(1396), + [anon_sym_match] = ACTIONS(1398), + [anon_sym_select] = ACTIONS(1400), + [anon_sym_lock] = ACTIONS(1402), + [anon_sym_rlock] = ACTIONS(1402), + [anon_sym_unsafe] = ACTIONS(1871), + [anon_sym_sql] = ACTIONS(1406), + [sym_int_literal] = ACTIONS(1392), + [sym_float_literal] = ACTIONS(1410), + [sym_rune_literal] = ACTIONS(1410), + [sym_pseudo_compile_time_identifier] = ACTIONS(1412), + [anon_sym_shared] = ACTIONS(83), + [anon_sym_map_LBRACK] = ACTIONS(85), + [anon_sym_chan] = ACTIONS(87), + [anon_sym_thread] = ACTIONS(89), + [anon_sym_atomic] = ACTIONS(91), + [sym___double_quote] = ACTIONS(1414), + [sym___single_quote] = ACTIONS(1416), + [sym___c_double_quote] = ACTIONS(1418), + [sym___c_single_quote] = ACTIONS(1420), + [sym___r_double_quote] = ACTIONS(1422), + [sym___r_single_quote] = ACTIONS(1424), }, [408] = { [sym_line_comment] = STATE(408), [sym_block_comment] = STATE(408), - [ts_builtin_sym_end] = ACTIONS(2653), - [sym_identifier] = ACTIONS(2655), - [anon_sym_LF] = ACTIONS(2655), - [anon_sym_CR] = ACTIONS(2655), - [anon_sym_CR_LF] = ACTIONS(2655), - [anon_sym_SLASH_SLASH] = ACTIONS(497), - [anon_sym_SLASH_STAR] = ACTIONS(499), - [anon_sym_DOT] = ACTIONS(2655), - [anon_sym_as] = ACTIONS(2655), - [anon_sym_LBRACE] = ACTIONS(2655), - [anon_sym_COMMA] = ACTIONS(2655), - [anon_sym_const] = ACTIONS(2655), - [anon_sym_LPAREN] = ACTIONS(2655), - [anon_sym_EQ] = ACTIONS(2655), - [anon_sym___global] = ACTIONS(2655), - [anon_sym_type] = ACTIONS(2655), - [anon_sym_PIPE] = ACTIONS(2655), - [anon_sym_fn] = ACTIONS(2655), - [anon_sym_PLUS] = ACTIONS(2655), - [anon_sym_DASH] = ACTIONS(2655), - [anon_sym_STAR] = ACTIONS(2655), - [anon_sym_SLASH] = ACTIONS(2655), - [anon_sym_PERCENT] = ACTIONS(2655), - [anon_sym_LT] = ACTIONS(2655), - [anon_sym_GT] = ACTIONS(2655), - [anon_sym_EQ_EQ] = ACTIONS(2655), - [anon_sym_BANG_EQ] = ACTIONS(2655), - [anon_sym_LT_EQ] = ACTIONS(2655), - [anon_sym_GT_EQ] = ACTIONS(2655), - [anon_sym_LBRACK] = ACTIONS(2653), - [anon_sym_struct] = ACTIONS(2655), - [anon_sym_union] = ACTIONS(2655), - [anon_sym_pub] = ACTIONS(2655), - [anon_sym_mut] = ACTIONS(2655), - [anon_sym_enum] = ACTIONS(2655), - [anon_sym_interface] = ACTIONS(2655), - [anon_sym_PLUS_PLUS] = ACTIONS(2655), - [anon_sym_DASH_DASH] = ACTIONS(2655), - [anon_sym_QMARK] = ACTIONS(2655), - [anon_sym_BANG] = ACTIONS(2655), - [anon_sym_go] = ACTIONS(2655), - [anon_sym_spawn] = ACTIONS(2655), - [anon_sym_json_DOTdecode] = ACTIONS(2655), - [anon_sym_LBRACK2] = ACTIONS(2655), - [anon_sym_TILDE] = ACTIONS(2655), - [anon_sym_CARET] = ACTIONS(2655), - [anon_sym_AMP] = ACTIONS(2655), - [anon_sym_LT_DASH] = ACTIONS(2655), - [anon_sym_LT_LT] = ACTIONS(2655), - [anon_sym_GT_GT] = ACTIONS(2655), - [anon_sym_GT_GT_GT] = ACTIONS(2655), - [anon_sym_AMP_CARET] = ACTIONS(2655), - [anon_sym_AMP_AMP] = ACTIONS(2655), - [anon_sym_PIPE_PIPE] = ACTIONS(2655), - [anon_sym_or] = ACTIONS(2655), - [sym_none] = ACTIONS(2655), - [sym_true] = ACTIONS(2655), - [sym_false] = ACTIONS(2655), - [sym_nil] = ACTIONS(2655), - [anon_sym_QMARK_DOT] = ACTIONS(2655), - [anon_sym_POUND_LBRACK] = ACTIONS(2655), - [anon_sym_if] = ACTIONS(2655), - [anon_sym_DOLLARif] = ACTIONS(2655), - [anon_sym_is] = ACTIONS(2655), - [anon_sym_BANGis] = ACTIONS(2655), - [anon_sym_in] = ACTIONS(2655), - [anon_sym_BANGin] = ACTIONS(2655), - [anon_sym_match] = ACTIONS(2655), - [anon_sym_select] = ACTIONS(2655), - [anon_sym_STAR_EQ] = ACTIONS(2655), - [anon_sym_SLASH_EQ] = ACTIONS(2655), - [anon_sym_PERCENT_EQ] = ACTIONS(2655), - [anon_sym_LT_LT_EQ] = ACTIONS(2655), - [anon_sym_GT_GT_EQ] = ACTIONS(2655), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(2655), - [anon_sym_AMP_EQ] = ACTIONS(2655), - [anon_sym_AMP_CARET_EQ] = ACTIONS(2655), - [anon_sym_PLUS_EQ] = ACTIONS(2655), - [anon_sym_DASH_EQ] = ACTIONS(2655), - [anon_sym_PIPE_EQ] = ACTIONS(2655), - [anon_sym_CARET_EQ] = ACTIONS(2655), - [anon_sym_COLON_EQ] = ACTIONS(2655), - [anon_sym_lock] = ACTIONS(2655), - [anon_sym_rlock] = ACTIONS(2655), - [anon_sym_unsafe] = ACTIONS(2655), - [anon_sym_sql] = ACTIONS(2655), - [sym_int_literal] = ACTIONS(2655), - [sym_float_literal] = ACTIONS(2655), - [sym_rune_literal] = ACTIONS(2655), - [sym_pseudo_compile_time_identifier] = ACTIONS(2655), - [anon_sym_shared] = ACTIONS(2655), - [anon_sym_map_LBRACK] = ACTIONS(2655), - [anon_sym_chan] = ACTIONS(2655), - [anon_sym_thread] = ACTIONS(2655), - [anon_sym_atomic] = ACTIONS(2655), - [anon_sym_assert] = ACTIONS(2655), - [anon_sym_defer] = ACTIONS(2655), - [anon_sym_goto] = ACTIONS(2655), - [anon_sym_break] = ACTIONS(2655), - [anon_sym_continue] = ACTIONS(2655), - [anon_sym_return] = ACTIONS(2655), - [anon_sym_DOLLARfor] = ACTIONS(2655), - [anon_sym_for] = ACTIONS(2655), - [anon_sym_POUND] = ACTIONS(2655), - [anon_sym_asm] = ACTIONS(2655), - [anon_sym_AT_LBRACK] = ACTIONS(2655), - [sym___double_quote] = ACTIONS(2655), - [sym___single_quote] = ACTIONS(2655), - [sym___c_double_quote] = ACTIONS(2655), - [sym___c_single_quote] = ACTIONS(2655), - [sym___r_double_quote] = ACTIONS(2655), - [sym___r_single_quote] = ACTIONS(2655), + [sym__expression] = STATE(2599), + [sym__expression_without_blocks] = STATE(2347), + [sym__expression_with_blocks] = STATE(2347), + [sym_inc_expression] = STATE(2379), + [sym_dec_expression] = STATE(2379), + [sym_or_block_expression] = STATE(2379), + [sym_option_propagation_expression] = STATE(2379), + [sym_result_propagation_expression] = STATE(2379), + [sym_anon_struct_value_expression] = STATE(2378), + [sym_go_expression] = STATE(2379), + [sym_spawn_expression] = STATE(2379), + [sym_parenthesized_expression] = STATE(2379), + [sym_call_expression] = STATE(2379), + [sym_type_initializer] = STATE(2378), + [sym_function_literal] = STATE(2379), + [sym_reference_expression] = STATE(2377), + [sym_type_reference_expression] = STATE(3460), + [sym_unary_expression] = STATE(2379), + [sym_receive_expression] = STATE(2379), + [sym_binary_expression] = STATE(2379), + [sym_as_type_cast_expression] = STATE(2379), + [sym__max_group] = STATE(2379), + [sym_literal] = STATE(2392), + [sym_map_init_expression] = STATE(2378), + [sym_array_creation] = STATE(2379), + [sym_fixed_array_creation] = STATE(2379), + [sym_selector_expression] = STATE(2379), + [sym_index_expression] = STATE(2379), + [sym_slice_expression] = STATE(2379), + [sym_if_expression] = STATE(2378), + [sym_compile_time_if_expression] = STATE(2378), + [sym_is_expression] = STATE(2379), + [sym_in_expression] = STATE(2379), + [sym_enum_fetch] = STATE(2379), + [sym_match_expression] = STATE(2378), + [sym_select_expression] = STATE(2378), + [sym_lock_expression] = STATE(2378), + [sym_unsafe_expression] = STATE(2378), + [sym_sql_expression] = STATE(2378), + [sym_c_string_literal] = STATE(2401), + [sym_raw_string_literal] = STATE(2401), + [sym_interpreted_string_literal] = STATE(2401), + [sym_mutability_modifiers] = STATE(939), + [sym_plain_type] = STATE(3569), + [sym__plain_type_without_special] = STATE(2360), + [sym_anon_struct_type] = STATE(2362), + [sym_multi_return_type] = STATE(2360), + [sym_result_type] = STATE(2360), + [sym_option_type] = STATE(2360), + [sym_qualified_type] = STATE(3460), + [sym_fixed_array_type] = STATE(2362), + [sym_array_type] = STATE(2362), + [sym_pointer_type] = STATE(2362), + [sym_wrong_pointer_type] = STATE(2362), + [sym_map_type] = STATE(2362), + [sym_channel_type] = STATE(2362), + [sym_shared_type] = STATE(2362), + [sym_thread_type] = STATE(2362), + [sym_atomic_type] = STATE(2362), + [sym_generic_type] = STATE(2362), + [sym_function_type] = STATE(2362), + [sym_range] = STATE(4325), + [sym_identifier] = ACTIONS(2127), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(1430), + [anon_sym_LBRACE] = ACTIONS(1432), + [anon_sym_LPAREN] = ACTIONS(1434), + [anon_sym_fn] = ACTIONS(1436), + [anon_sym_PLUS] = ACTIONS(1438), + [anon_sym_DASH] = ACTIONS(1438), + [anon_sym_STAR] = ACTIONS(2129), + [anon_sym_struct] = ACTIONS(1442), + [anon_sym_mut] = ACTIONS(41), + [anon_sym_QMARK] = ACTIONS(47), + [anon_sym_BANG] = ACTIONS(2131), + [anon_sym_go] = ACTIONS(1446), + [anon_sym_spawn] = ACTIONS(1448), + [anon_sym_json_DOTdecode] = ACTIONS(1450), + [anon_sym_LBRACK2] = ACTIONS(1452), + [anon_sym_TILDE] = ACTIONS(1438), + [anon_sym_CARET] = ACTIONS(1438), + [anon_sym_AMP] = ACTIONS(2133), + [anon_sym_LT_DASH] = ACTIONS(1456), + [sym_none] = ACTIONS(1458), + [sym_true] = ACTIONS(1458), + [sym_false] = ACTIONS(1458), + [sym_nil] = ACTIONS(1458), + [anon_sym_if] = ACTIONS(1833), + [anon_sym_DOLLARif] = ACTIONS(1462), + [anon_sym_match] = ACTIONS(1464), + [anon_sym_select] = ACTIONS(1466), + [anon_sym_lock] = ACTIONS(1468), + [anon_sym_rlock] = ACTIONS(1468), + [anon_sym_unsafe] = ACTIONS(1839), + [anon_sym_sql] = ACTIONS(1472), + [sym_int_literal] = ACTIONS(1458), + [sym_float_literal] = ACTIONS(1474), + [sym_rune_literal] = ACTIONS(1474), + [sym_pseudo_compile_time_identifier] = ACTIONS(1476), + [anon_sym_shared] = ACTIONS(83), + [anon_sym_map_LBRACK] = ACTIONS(85), + [anon_sym_chan] = ACTIONS(87), + [anon_sym_thread] = ACTIONS(89), + [anon_sym_atomic] = ACTIONS(91), + [anon_sym_DOT_DOT] = ACTIONS(1478), + [sym___double_quote] = ACTIONS(1480), + [sym___single_quote] = ACTIONS(1482), + [sym___c_double_quote] = ACTIONS(1484), + [sym___c_single_quote] = ACTIONS(1486), + [sym___r_double_quote] = ACTIONS(1488), + [sym___r_single_quote] = ACTIONS(1490), }, [409] = { [sym_line_comment] = STATE(409), [sym_block_comment] = STATE(409), - [ts_builtin_sym_end] = ACTIONS(2657), - [sym_identifier] = ACTIONS(2659), - [anon_sym_LF] = ACTIONS(2659), - [anon_sym_CR] = ACTIONS(2659), - [anon_sym_CR_LF] = ACTIONS(2659), + [ts_builtin_sym_end] = ACTIONS(2666), + [sym_identifier] = ACTIONS(2668), + [anon_sym_LF] = ACTIONS(2668), + [anon_sym_CR] = ACTIONS(2668), + [anon_sym_CR_LF] = ACTIONS(2668), [anon_sym_SLASH_SLASH] = ACTIONS(497), [anon_sym_SLASH_STAR] = ACTIONS(499), - [anon_sym_DOT] = ACTIONS(2659), - [anon_sym_as] = ACTIONS(2659), - [anon_sym_LBRACE] = ACTIONS(2659), - [anon_sym_COMMA] = ACTIONS(2659), - [anon_sym_const] = ACTIONS(2659), - [anon_sym_LPAREN] = ACTIONS(2659), - [anon_sym_EQ] = ACTIONS(2659), - [anon_sym___global] = ACTIONS(2659), - [anon_sym_type] = ACTIONS(2659), - [anon_sym_PIPE] = ACTIONS(2659), - [anon_sym_fn] = ACTIONS(2659), - [anon_sym_PLUS] = ACTIONS(2659), - [anon_sym_DASH] = ACTIONS(2659), - [anon_sym_STAR] = ACTIONS(2659), - [anon_sym_SLASH] = ACTIONS(2659), - [anon_sym_PERCENT] = ACTIONS(2659), - [anon_sym_LT] = ACTIONS(2659), - [anon_sym_GT] = ACTIONS(2659), - [anon_sym_EQ_EQ] = ACTIONS(2659), - [anon_sym_BANG_EQ] = ACTIONS(2659), - [anon_sym_LT_EQ] = ACTIONS(2659), - [anon_sym_GT_EQ] = ACTIONS(2659), - [anon_sym_LBRACK] = ACTIONS(2657), - [anon_sym_struct] = ACTIONS(2659), - [anon_sym_union] = ACTIONS(2659), - [anon_sym_pub] = ACTIONS(2659), - [anon_sym_mut] = ACTIONS(2659), - [anon_sym_enum] = ACTIONS(2659), - [anon_sym_interface] = ACTIONS(2659), - [anon_sym_PLUS_PLUS] = ACTIONS(2659), - [anon_sym_DASH_DASH] = ACTIONS(2659), - [anon_sym_QMARK] = ACTIONS(2659), - [anon_sym_BANG] = ACTIONS(2659), - [anon_sym_go] = ACTIONS(2659), - [anon_sym_spawn] = ACTIONS(2659), - [anon_sym_json_DOTdecode] = ACTIONS(2659), - [anon_sym_LBRACK2] = ACTIONS(2659), - [anon_sym_TILDE] = ACTIONS(2659), - [anon_sym_CARET] = ACTIONS(2659), - [anon_sym_AMP] = ACTIONS(2659), - [anon_sym_LT_DASH] = ACTIONS(2659), - [anon_sym_LT_LT] = ACTIONS(2659), - [anon_sym_GT_GT] = ACTIONS(2659), - [anon_sym_GT_GT_GT] = ACTIONS(2659), - [anon_sym_AMP_CARET] = ACTIONS(2659), - [anon_sym_AMP_AMP] = ACTIONS(2659), - [anon_sym_PIPE_PIPE] = ACTIONS(2659), - [anon_sym_or] = ACTIONS(2659), - [sym_none] = ACTIONS(2659), - [sym_true] = ACTIONS(2659), - [sym_false] = ACTIONS(2659), - [sym_nil] = ACTIONS(2659), - [anon_sym_QMARK_DOT] = ACTIONS(2659), - [anon_sym_POUND_LBRACK] = ACTIONS(2659), - [anon_sym_if] = ACTIONS(2659), - [anon_sym_DOLLARif] = ACTIONS(2659), - [anon_sym_is] = ACTIONS(2659), - [anon_sym_BANGis] = ACTIONS(2659), - [anon_sym_in] = ACTIONS(2659), - [anon_sym_BANGin] = ACTIONS(2659), - [anon_sym_match] = ACTIONS(2659), - [anon_sym_select] = ACTIONS(2659), - [anon_sym_STAR_EQ] = ACTIONS(2659), - [anon_sym_SLASH_EQ] = ACTIONS(2659), - [anon_sym_PERCENT_EQ] = ACTIONS(2659), - [anon_sym_LT_LT_EQ] = ACTIONS(2659), - [anon_sym_GT_GT_EQ] = ACTIONS(2659), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(2659), - [anon_sym_AMP_EQ] = ACTIONS(2659), - [anon_sym_AMP_CARET_EQ] = ACTIONS(2659), - [anon_sym_PLUS_EQ] = ACTIONS(2659), - [anon_sym_DASH_EQ] = ACTIONS(2659), - [anon_sym_PIPE_EQ] = ACTIONS(2659), - [anon_sym_CARET_EQ] = ACTIONS(2659), - [anon_sym_COLON_EQ] = ACTIONS(2659), - [anon_sym_lock] = ACTIONS(2659), - [anon_sym_rlock] = ACTIONS(2659), - [anon_sym_unsafe] = ACTIONS(2659), - [anon_sym_sql] = ACTIONS(2659), - [sym_int_literal] = ACTIONS(2659), - [sym_float_literal] = ACTIONS(2659), - [sym_rune_literal] = ACTIONS(2659), - [sym_pseudo_compile_time_identifier] = ACTIONS(2659), - [anon_sym_shared] = ACTIONS(2659), - [anon_sym_map_LBRACK] = ACTIONS(2659), - [anon_sym_chan] = ACTIONS(2659), - [anon_sym_thread] = ACTIONS(2659), - [anon_sym_atomic] = ACTIONS(2659), - [anon_sym_assert] = ACTIONS(2659), - [anon_sym_defer] = ACTIONS(2659), - [anon_sym_goto] = ACTIONS(2659), - [anon_sym_break] = ACTIONS(2659), - [anon_sym_continue] = ACTIONS(2659), - [anon_sym_return] = ACTIONS(2659), - [anon_sym_DOLLARfor] = ACTIONS(2659), - [anon_sym_for] = ACTIONS(2659), - [anon_sym_POUND] = ACTIONS(2659), - [anon_sym_asm] = ACTIONS(2659), - [anon_sym_AT_LBRACK] = ACTIONS(2659), - [sym___double_quote] = ACTIONS(2659), - [sym___single_quote] = ACTIONS(2659), - [sym___c_double_quote] = ACTIONS(2659), - [sym___c_single_quote] = ACTIONS(2659), - [sym___r_double_quote] = ACTIONS(2659), - [sym___r_single_quote] = ACTIONS(2659), + [anon_sym_DOT] = ACTIONS(2668), + [anon_sym_as] = ACTIONS(2668), + [anon_sym_LBRACE] = ACTIONS(2668), + [anon_sym_COMMA] = ACTIONS(2668), + [anon_sym_const] = ACTIONS(2668), + [anon_sym_LPAREN] = ACTIONS(2668), + [anon_sym_EQ] = ACTIONS(2668), + [anon_sym___global] = ACTIONS(2668), + [anon_sym_type] = ACTIONS(2668), + [anon_sym_PIPE] = ACTIONS(2668), + [anon_sym_fn] = ACTIONS(2668), + [anon_sym_PLUS] = ACTIONS(2668), + [anon_sym_DASH] = ACTIONS(2668), + [anon_sym_STAR] = ACTIONS(2668), + [anon_sym_SLASH] = ACTIONS(2668), + [anon_sym_PERCENT] = ACTIONS(2668), + [anon_sym_LT] = ACTIONS(2668), + [anon_sym_GT] = ACTIONS(2668), + [anon_sym_EQ_EQ] = ACTIONS(2668), + [anon_sym_BANG_EQ] = ACTIONS(2668), + [anon_sym_LT_EQ] = ACTIONS(2668), + [anon_sym_GT_EQ] = ACTIONS(2668), + [anon_sym_LBRACK] = ACTIONS(2666), + [anon_sym_struct] = ACTIONS(2668), + [anon_sym_union] = ACTIONS(2668), + [anon_sym_pub] = ACTIONS(2668), + [anon_sym_mut] = ACTIONS(2668), + [anon_sym_enum] = ACTIONS(2668), + [anon_sym_interface] = ACTIONS(2668), + [anon_sym_PLUS_PLUS] = ACTIONS(2668), + [anon_sym_DASH_DASH] = ACTIONS(2668), + [anon_sym_QMARK] = ACTIONS(2668), + [anon_sym_BANG] = ACTIONS(2668), + [anon_sym_go] = ACTIONS(2668), + [anon_sym_spawn] = ACTIONS(2668), + [anon_sym_json_DOTdecode] = ACTIONS(2668), + [anon_sym_LBRACK2] = ACTIONS(2668), + [anon_sym_TILDE] = ACTIONS(2668), + [anon_sym_CARET] = ACTIONS(2668), + [anon_sym_AMP] = ACTIONS(2668), + [anon_sym_LT_DASH] = ACTIONS(2668), + [anon_sym_LT_LT] = ACTIONS(2668), + [anon_sym_GT_GT] = ACTIONS(2668), + [anon_sym_GT_GT_GT] = ACTIONS(2668), + [anon_sym_AMP_CARET] = ACTIONS(2668), + [anon_sym_AMP_AMP] = ACTIONS(2668), + [anon_sym_PIPE_PIPE] = ACTIONS(2668), + [anon_sym_or] = ACTIONS(2668), + [sym_none] = ACTIONS(2668), + [sym_true] = ACTIONS(2668), + [sym_false] = ACTIONS(2668), + [sym_nil] = ACTIONS(2668), + [anon_sym_QMARK_DOT] = ACTIONS(2668), + [anon_sym_POUND_LBRACK] = ACTIONS(2668), + [anon_sym_if] = ACTIONS(2668), + [anon_sym_DOLLARif] = ACTIONS(2668), + [anon_sym_is] = ACTIONS(2668), + [anon_sym_BANGis] = ACTIONS(2668), + [anon_sym_in] = ACTIONS(2668), + [anon_sym_BANGin] = ACTIONS(2668), + [anon_sym_match] = ACTIONS(2668), + [anon_sym_select] = ACTIONS(2668), + [anon_sym_STAR_EQ] = ACTIONS(2668), + [anon_sym_SLASH_EQ] = ACTIONS(2668), + [anon_sym_PERCENT_EQ] = ACTIONS(2668), + [anon_sym_LT_LT_EQ] = ACTIONS(2668), + [anon_sym_GT_GT_EQ] = ACTIONS(2668), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(2668), + [anon_sym_AMP_EQ] = ACTIONS(2668), + [anon_sym_AMP_CARET_EQ] = ACTIONS(2668), + [anon_sym_PLUS_EQ] = ACTIONS(2668), + [anon_sym_DASH_EQ] = ACTIONS(2668), + [anon_sym_PIPE_EQ] = ACTIONS(2668), + [anon_sym_CARET_EQ] = ACTIONS(2668), + [anon_sym_COLON_EQ] = ACTIONS(2668), + [anon_sym_lock] = ACTIONS(2668), + [anon_sym_rlock] = ACTIONS(2668), + [anon_sym_unsafe] = ACTIONS(2668), + [anon_sym_sql] = ACTIONS(2668), + [sym_int_literal] = ACTIONS(2668), + [sym_float_literal] = ACTIONS(2668), + [sym_rune_literal] = ACTIONS(2668), + [sym_pseudo_compile_time_identifier] = ACTIONS(2668), + [anon_sym_shared] = ACTIONS(2668), + [anon_sym_map_LBRACK] = ACTIONS(2668), + [anon_sym_chan] = ACTIONS(2668), + [anon_sym_thread] = ACTIONS(2668), + [anon_sym_atomic] = ACTIONS(2668), + [anon_sym_assert] = ACTIONS(2668), + [anon_sym_defer] = ACTIONS(2668), + [anon_sym_goto] = ACTIONS(2668), + [anon_sym_break] = ACTIONS(2668), + [anon_sym_continue] = ACTIONS(2668), + [anon_sym_return] = ACTIONS(2668), + [anon_sym_DOLLARfor] = ACTIONS(2668), + [anon_sym_for] = ACTIONS(2668), + [anon_sym_POUND] = ACTIONS(2668), + [anon_sym_asm] = ACTIONS(2668), + [anon_sym_AT_LBRACK] = ACTIONS(2668), + [sym___double_quote] = ACTIONS(2668), + [sym___single_quote] = ACTIONS(2668), + [sym___c_double_quote] = ACTIONS(2668), + [sym___c_single_quote] = ACTIONS(2668), + [sym___r_double_quote] = ACTIONS(2668), + [sym___r_single_quote] = ACTIONS(2668), }, [410] = { [sym_line_comment] = STATE(410), [sym_block_comment] = STATE(410), - [ts_builtin_sym_end] = ACTIONS(1849), - [sym_identifier] = ACTIONS(1851), - [anon_sym_LF] = ACTIONS(1851), - [anon_sym_CR] = ACTIONS(1851), - [anon_sym_CR_LF] = ACTIONS(1851), + [ts_builtin_sym_end] = ACTIONS(2670), + [sym_identifier] = ACTIONS(2672), + [anon_sym_LF] = ACTIONS(2672), + [anon_sym_CR] = ACTIONS(2672), + [anon_sym_CR_LF] = ACTIONS(2672), [anon_sym_SLASH_SLASH] = ACTIONS(497), [anon_sym_SLASH_STAR] = ACTIONS(499), - [anon_sym_DOT] = ACTIONS(1851), - [anon_sym_as] = ACTIONS(1851), - [anon_sym_LBRACE] = ACTIONS(1853), - [anon_sym_COMMA] = ACTIONS(1851), - [anon_sym_const] = ACTIONS(1851), - [anon_sym_LPAREN] = ACTIONS(1851), - [anon_sym_EQ] = ACTIONS(1851), - [anon_sym___global] = ACTIONS(1851), - [anon_sym_type] = ACTIONS(1851), - [anon_sym_PIPE] = ACTIONS(1851), - [anon_sym_fn] = ACTIONS(1851), - [anon_sym_PLUS] = ACTIONS(1851), - [anon_sym_DASH] = ACTIONS(1851), - [anon_sym_STAR] = ACTIONS(1851), - [anon_sym_SLASH] = ACTIONS(1851), - [anon_sym_PERCENT] = ACTIONS(1851), - [anon_sym_LT] = ACTIONS(1851), - [anon_sym_GT] = ACTIONS(1851), - [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(1856), - [anon_sym_struct] = ACTIONS(1851), - [anon_sym_union] = ACTIONS(1851), - [anon_sym_pub] = ACTIONS(1851), - [anon_sym_mut] = ACTIONS(1851), - [anon_sym_enum] = ACTIONS(1851), - [anon_sym_interface] = ACTIONS(1851), - [anon_sym_PLUS_PLUS] = ACTIONS(1851), - [anon_sym_DASH_DASH] = ACTIONS(1851), - [anon_sym_QMARK] = ACTIONS(1851), - [anon_sym_BANG] = ACTIONS(1851), - [anon_sym_go] = ACTIONS(1851), - [anon_sym_spawn] = ACTIONS(1851), - [anon_sym_json_DOTdecode] = ACTIONS(1851), - [anon_sym_LBRACK2] = ACTIONS(1851), - [anon_sym_TILDE] = ACTIONS(1851), - [anon_sym_CARET] = ACTIONS(1851), - [anon_sym_AMP] = ACTIONS(1851), - [anon_sym_LT_DASH] = ACTIONS(1851), - [anon_sym_LT_LT] = ACTIONS(1851), - [anon_sym_GT_GT] = ACTIONS(1851), - [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(1851), - [sym_none] = ACTIONS(1851), - [sym_true] = ACTIONS(1851), - [sym_false] = ACTIONS(1851), - [sym_nil] = ACTIONS(1851), - [anon_sym_QMARK_DOT] = ACTIONS(1851), - [anon_sym_POUND_LBRACK] = ACTIONS(1851), - [anon_sym_if] = ACTIONS(1851), - [anon_sym_DOLLARif] = ACTIONS(1851), - [anon_sym_is] = ACTIONS(1851), - [anon_sym_BANGis] = ACTIONS(1851), - [anon_sym_in] = ACTIONS(1851), - [anon_sym_BANGin] = ACTIONS(1851), - [anon_sym_match] = ACTIONS(1851), - [anon_sym_select] = ACTIONS(1851), - [anon_sym_STAR_EQ] = ACTIONS(1851), - [anon_sym_SLASH_EQ] = ACTIONS(1851), - [anon_sym_PERCENT_EQ] = ACTIONS(1851), - [anon_sym_LT_LT_EQ] = ACTIONS(1851), - [anon_sym_GT_GT_EQ] = ACTIONS(1851), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(1851), - [anon_sym_AMP_EQ] = ACTIONS(1851), - [anon_sym_AMP_CARET_EQ] = ACTIONS(1851), - [anon_sym_PLUS_EQ] = ACTIONS(1851), - [anon_sym_DASH_EQ] = ACTIONS(1851), - [anon_sym_PIPE_EQ] = ACTIONS(1851), - [anon_sym_CARET_EQ] = ACTIONS(1851), - [anon_sym_COLON_EQ] = ACTIONS(1851), - [anon_sym_lock] = ACTIONS(1851), - [anon_sym_rlock] = ACTIONS(1851), - [anon_sym_unsafe] = ACTIONS(1851), - [anon_sym_sql] = ACTIONS(1851), - [sym_int_literal] = ACTIONS(1851), - [sym_float_literal] = ACTIONS(1851), - [sym_rune_literal] = ACTIONS(1851), - [sym_pseudo_compile_time_identifier] = ACTIONS(1851), - [anon_sym_shared] = ACTIONS(1851), - [anon_sym_map_LBRACK] = ACTIONS(1851), - [anon_sym_chan] = ACTIONS(1851), - [anon_sym_thread] = ACTIONS(1851), - [anon_sym_atomic] = ACTIONS(1851), - [anon_sym_assert] = ACTIONS(1851), - [anon_sym_defer] = ACTIONS(1851), - [anon_sym_goto] = ACTIONS(1851), - [anon_sym_break] = ACTIONS(1851), - [anon_sym_continue] = ACTIONS(1851), - [anon_sym_return] = ACTIONS(1851), - [anon_sym_DOLLARfor] = ACTIONS(1851), - [anon_sym_for] = ACTIONS(1851), - [anon_sym_POUND] = ACTIONS(1851), - [anon_sym_asm] = ACTIONS(1851), - [anon_sym_AT_LBRACK] = ACTIONS(1851), - [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), + [anon_sym_DOT] = ACTIONS(2672), + [anon_sym_as] = ACTIONS(2672), + [anon_sym_LBRACE] = ACTIONS(2672), + [anon_sym_COMMA] = ACTIONS(2672), + [anon_sym_const] = ACTIONS(2672), + [anon_sym_LPAREN] = ACTIONS(2672), + [anon_sym_EQ] = ACTIONS(2672), + [anon_sym___global] = ACTIONS(2672), + [anon_sym_type] = ACTIONS(2672), + [anon_sym_PIPE] = ACTIONS(2672), + [anon_sym_fn] = ACTIONS(2672), + [anon_sym_PLUS] = ACTIONS(2672), + [anon_sym_DASH] = ACTIONS(2672), + [anon_sym_STAR] = ACTIONS(2672), + [anon_sym_SLASH] = ACTIONS(2672), + [anon_sym_PERCENT] = ACTIONS(2672), + [anon_sym_LT] = ACTIONS(2672), + [anon_sym_GT] = ACTIONS(2672), + [anon_sym_EQ_EQ] = ACTIONS(2672), + [anon_sym_BANG_EQ] = ACTIONS(2672), + [anon_sym_LT_EQ] = ACTIONS(2672), + [anon_sym_GT_EQ] = ACTIONS(2672), + [anon_sym_LBRACK] = ACTIONS(2670), + [anon_sym_struct] = ACTIONS(2672), + [anon_sym_union] = ACTIONS(2672), + [anon_sym_pub] = ACTIONS(2672), + [anon_sym_mut] = ACTIONS(2672), + [anon_sym_enum] = ACTIONS(2672), + [anon_sym_interface] = ACTIONS(2672), + [anon_sym_PLUS_PLUS] = ACTIONS(2672), + [anon_sym_DASH_DASH] = ACTIONS(2672), + [anon_sym_QMARK] = ACTIONS(2672), + [anon_sym_BANG] = ACTIONS(2672), + [anon_sym_go] = ACTIONS(2672), + [anon_sym_spawn] = ACTIONS(2672), + [anon_sym_json_DOTdecode] = ACTIONS(2672), + [anon_sym_LBRACK2] = ACTIONS(2672), + [anon_sym_TILDE] = ACTIONS(2672), + [anon_sym_CARET] = ACTIONS(2672), + [anon_sym_AMP] = ACTIONS(2672), + [anon_sym_LT_DASH] = ACTIONS(2672), + [anon_sym_LT_LT] = ACTIONS(2672), + [anon_sym_GT_GT] = ACTIONS(2672), + [anon_sym_GT_GT_GT] = ACTIONS(2672), + [anon_sym_AMP_CARET] = ACTIONS(2672), + [anon_sym_AMP_AMP] = ACTIONS(2672), + [anon_sym_PIPE_PIPE] = ACTIONS(2672), + [anon_sym_or] = ACTIONS(2672), + [sym_none] = ACTIONS(2672), + [sym_true] = ACTIONS(2672), + [sym_false] = ACTIONS(2672), + [sym_nil] = ACTIONS(2672), + [anon_sym_QMARK_DOT] = ACTIONS(2672), + [anon_sym_POUND_LBRACK] = ACTIONS(2672), + [anon_sym_if] = ACTIONS(2672), + [anon_sym_DOLLARif] = ACTIONS(2672), + [anon_sym_is] = ACTIONS(2672), + [anon_sym_BANGis] = ACTIONS(2672), + [anon_sym_in] = ACTIONS(2672), + [anon_sym_BANGin] = ACTIONS(2672), + [anon_sym_match] = ACTIONS(2672), + [anon_sym_select] = ACTIONS(2672), + [anon_sym_STAR_EQ] = ACTIONS(2672), + [anon_sym_SLASH_EQ] = ACTIONS(2672), + [anon_sym_PERCENT_EQ] = ACTIONS(2672), + [anon_sym_LT_LT_EQ] = ACTIONS(2672), + [anon_sym_GT_GT_EQ] = ACTIONS(2672), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(2672), + [anon_sym_AMP_EQ] = ACTIONS(2672), + [anon_sym_AMP_CARET_EQ] = ACTIONS(2672), + [anon_sym_PLUS_EQ] = ACTIONS(2672), + [anon_sym_DASH_EQ] = ACTIONS(2672), + [anon_sym_PIPE_EQ] = ACTIONS(2672), + [anon_sym_CARET_EQ] = ACTIONS(2672), + [anon_sym_COLON_EQ] = ACTIONS(2672), + [anon_sym_lock] = ACTIONS(2672), + [anon_sym_rlock] = ACTIONS(2672), + [anon_sym_unsafe] = ACTIONS(2672), + [anon_sym_sql] = ACTIONS(2672), + [sym_int_literal] = ACTIONS(2672), + [sym_float_literal] = ACTIONS(2672), + [sym_rune_literal] = ACTIONS(2672), + [sym_pseudo_compile_time_identifier] = ACTIONS(2672), + [anon_sym_shared] = ACTIONS(2672), + [anon_sym_map_LBRACK] = ACTIONS(2672), + [anon_sym_chan] = ACTIONS(2672), + [anon_sym_thread] = ACTIONS(2672), + [anon_sym_atomic] = ACTIONS(2672), + [anon_sym_assert] = ACTIONS(2672), + [anon_sym_defer] = ACTIONS(2672), + [anon_sym_goto] = ACTIONS(2672), + [anon_sym_break] = ACTIONS(2672), + [anon_sym_continue] = ACTIONS(2672), + [anon_sym_return] = ACTIONS(2672), + [anon_sym_DOLLARfor] = ACTIONS(2672), + [anon_sym_for] = ACTIONS(2672), + [anon_sym_POUND] = ACTIONS(2672), + [anon_sym_asm] = ACTIONS(2672), + [anon_sym_AT_LBRACK] = ACTIONS(2672), + [sym___double_quote] = ACTIONS(2672), + [sym___single_quote] = ACTIONS(2672), + [sym___c_double_quote] = ACTIONS(2672), + [sym___c_single_quote] = ACTIONS(2672), + [sym___r_double_quote] = ACTIONS(2672), + [sym___r_single_quote] = ACTIONS(2672), }, [411] = { [sym_line_comment] = STATE(411), [sym_block_comment] = STATE(411), - [ts_builtin_sym_end] = ACTIONS(2661), - [sym_identifier] = ACTIONS(2663), - [anon_sym_LF] = ACTIONS(2663), - [anon_sym_CR] = ACTIONS(2663), - [anon_sym_CR_LF] = ACTIONS(2663), - [anon_sym_SLASH_SLASH] = ACTIONS(497), - [anon_sym_SLASH_STAR] = ACTIONS(499), - [anon_sym_DOT] = ACTIONS(2663), - [anon_sym_as] = ACTIONS(2663), - [anon_sym_LBRACE] = ACTIONS(2663), - [anon_sym_COMMA] = ACTIONS(2663), - [anon_sym_const] = ACTIONS(2663), - [anon_sym_LPAREN] = ACTIONS(2663), - [anon_sym_EQ] = ACTIONS(2663), - [anon_sym___global] = ACTIONS(2663), - [anon_sym_type] = ACTIONS(2663), - [anon_sym_PIPE] = ACTIONS(2663), - [anon_sym_fn] = ACTIONS(2663), - [anon_sym_PLUS] = ACTIONS(2663), - [anon_sym_DASH] = ACTIONS(2663), - [anon_sym_STAR] = ACTIONS(2663), - [anon_sym_SLASH] = ACTIONS(2663), - [anon_sym_PERCENT] = ACTIONS(2663), - [anon_sym_LT] = ACTIONS(2663), - [anon_sym_GT] = ACTIONS(2663), - [anon_sym_EQ_EQ] = ACTIONS(2663), - [anon_sym_BANG_EQ] = ACTIONS(2663), - [anon_sym_LT_EQ] = ACTIONS(2663), - [anon_sym_GT_EQ] = ACTIONS(2663), - [anon_sym_LBRACK] = ACTIONS(2661), - [anon_sym_struct] = ACTIONS(2663), - [anon_sym_union] = ACTIONS(2663), - [anon_sym_pub] = ACTIONS(2663), - [anon_sym_mut] = ACTIONS(2663), - [anon_sym_enum] = ACTIONS(2663), - [anon_sym_interface] = ACTIONS(2663), - [anon_sym_PLUS_PLUS] = ACTIONS(2663), - [anon_sym_DASH_DASH] = ACTIONS(2663), - [anon_sym_QMARK] = ACTIONS(2663), - [anon_sym_BANG] = ACTIONS(2663), - [anon_sym_go] = ACTIONS(2663), - [anon_sym_spawn] = ACTIONS(2663), - [anon_sym_json_DOTdecode] = ACTIONS(2663), - [anon_sym_LBRACK2] = ACTIONS(2663), - [anon_sym_TILDE] = ACTIONS(2663), - [anon_sym_CARET] = ACTIONS(2663), - [anon_sym_AMP] = ACTIONS(2663), - [anon_sym_LT_DASH] = ACTIONS(2663), - [anon_sym_LT_LT] = ACTIONS(2663), - [anon_sym_GT_GT] = ACTIONS(2663), - [anon_sym_GT_GT_GT] = ACTIONS(2663), - [anon_sym_AMP_CARET] = ACTIONS(2663), - [anon_sym_AMP_AMP] = ACTIONS(2663), - [anon_sym_PIPE_PIPE] = ACTIONS(2663), - [anon_sym_or] = ACTIONS(2663), - [sym_none] = ACTIONS(2663), - [sym_true] = ACTIONS(2663), - [sym_false] = ACTIONS(2663), - [sym_nil] = ACTIONS(2663), - [anon_sym_QMARK_DOT] = ACTIONS(2663), - [anon_sym_POUND_LBRACK] = ACTIONS(2663), - [anon_sym_if] = ACTIONS(2663), - [anon_sym_DOLLARif] = ACTIONS(2663), - [anon_sym_is] = ACTIONS(2663), - [anon_sym_BANGis] = ACTIONS(2663), - [anon_sym_in] = ACTIONS(2663), - [anon_sym_BANGin] = ACTIONS(2663), - [anon_sym_match] = ACTIONS(2663), - [anon_sym_select] = ACTIONS(2663), - [anon_sym_STAR_EQ] = ACTIONS(2663), - [anon_sym_SLASH_EQ] = ACTIONS(2663), - [anon_sym_PERCENT_EQ] = ACTIONS(2663), - [anon_sym_LT_LT_EQ] = ACTIONS(2663), - [anon_sym_GT_GT_EQ] = ACTIONS(2663), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(2663), - [anon_sym_AMP_EQ] = ACTIONS(2663), - [anon_sym_AMP_CARET_EQ] = ACTIONS(2663), - [anon_sym_PLUS_EQ] = ACTIONS(2663), - [anon_sym_DASH_EQ] = ACTIONS(2663), - [anon_sym_PIPE_EQ] = ACTIONS(2663), - [anon_sym_CARET_EQ] = ACTIONS(2663), - [anon_sym_COLON_EQ] = ACTIONS(2663), - [anon_sym_lock] = ACTIONS(2663), - [anon_sym_rlock] = ACTIONS(2663), - [anon_sym_unsafe] = ACTIONS(2663), - [anon_sym_sql] = ACTIONS(2663), - [sym_int_literal] = ACTIONS(2663), - [sym_float_literal] = ACTIONS(2663), - [sym_rune_literal] = ACTIONS(2663), - [sym_pseudo_compile_time_identifier] = ACTIONS(2663), - [anon_sym_shared] = ACTIONS(2663), - [anon_sym_map_LBRACK] = ACTIONS(2663), - [anon_sym_chan] = ACTIONS(2663), - [anon_sym_thread] = ACTIONS(2663), - [anon_sym_atomic] = ACTIONS(2663), - [anon_sym_assert] = ACTIONS(2663), - [anon_sym_defer] = ACTIONS(2663), - [anon_sym_goto] = ACTIONS(2663), - [anon_sym_break] = ACTIONS(2663), - [anon_sym_continue] = ACTIONS(2663), - [anon_sym_return] = ACTIONS(2663), - [anon_sym_DOLLARfor] = ACTIONS(2663), - [anon_sym_for] = ACTIONS(2663), - [anon_sym_POUND] = ACTIONS(2663), - [anon_sym_asm] = ACTIONS(2663), - [anon_sym_AT_LBRACK] = ACTIONS(2663), - [sym___double_quote] = ACTIONS(2663), - [sym___single_quote] = ACTIONS(2663), - [sym___c_double_quote] = ACTIONS(2663), - [sym___c_single_quote] = ACTIONS(2663), - [sym___r_double_quote] = ACTIONS(2663), - [sym___r_single_quote] = ACTIONS(2663), + [sym__expression] = STATE(2599), + [sym__expression_without_blocks] = STATE(2347), + [sym__expression_with_blocks] = STATE(2347), + [sym_inc_expression] = STATE(2379), + [sym_dec_expression] = STATE(2379), + [sym_or_block_expression] = STATE(2379), + [sym_option_propagation_expression] = STATE(2379), + [sym_result_propagation_expression] = STATE(2379), + [sym_anon_struct_value_expression] = STATE(2378), + [sym_go_expression] = STATE(2379), + [sym_spawn_expression] = STATE(2379), + [sym_parenthesized_expression] = STATE(2379), + [sym_call_expression] = STATE(2379), + [sym_type_initializer] = STATE(2378), + [sym_function_literal] = STATE(2379), + [sym_reference_expression] = STATE(2377), + [sym_type_reference_expression] = STATE(3460), + [sym_unary_expression] = STATE(2379), + [sym_receive_expression] = STATE(2379), + [sym_binary_expression] = STATE(2379), + [sym_as_type_cast_expression] = STATE(2379), + [sym__max_group] = STATE(2379), + [sym_literal] = STATE(2392), + [sym_map_init_expression] = STATE(2378), + [sym_array_creation] = STATE(2379), + [sym_fixed_array_creation] = STATE(2379), + [sym_selector_expression] = STATE(2379), + [sym_index_expression] = STATE(2379), + [sym_slice_expression] = STATE(2379), + [sym_if_expression] = STATE(2378), + [sym_compile_time_if_expression] = STATE(2378), + [sym_is_expression] = STATE(2379), + [sym_in_expression] = STATE(2379), + [sym_enum_fetch] = STATE(2379), + [sym_match_expression] = STATE(2378), + [sym_select_expression] = STATE(2378), + [sym_lock_expression] = STATE(2378), + [sym_unsafe_expression] = STATE(2378), + [sym_sql_expression] = STATE(2378), + [sym_c_string_literal] = STATE(2401), + [sym_raw_string_literal] = STATE(2401), + [sym_interpreted_string_literal] = STATE(2401), + [sym_mutability_modifiers] = STATE(939), + [sym_plain_type] = STATE(4160), + [sym__plain_type_without_special] = STATE(2360), + [sym_anon_struct_type] = STATE(2362), + [sym_multi_return_type] = STATE(2360), + [sym_result_type] = STATE(2360), + [sym_option_type] = STATE(2360), + [sym_qualified_type] = STATE(3460), + [sym_fixed_array_type] = STATE(2362), + [sym_array_type] = STATE(2362), + [sym_pointer_type] = STATE(2362), + [sym_wrong_pointer_type] = STATE(2362), + [sym_map_type] = STATE(2362), + [sym_channel_type] = STATE(2362), + [sym_shared_type] = STATE(2362), + [sym_thread_type] = STATE(2362), + [sym_atomic_type] = STATE(2362), + [sym_generic_type] = STATE(2362), + [sym_function_type] = STATE(2362), + [sym_range] = STATE(4325), + [sym_identifier] = ACTIONS(1428), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(1430), + [anon_sym_LBRACE] = ACTIONS(1432), + [anon_sym_LPAREN] = ACTIONS(1434), + [anon_sym_fn] = ACTIONS(1436), + [anon_sym_PLUS] = ACTIONS(1438), + [anon_sym_DASH] = ACTIONS(1438), + [anon_sym_STAR] = ACTIONS(1440), + [anon_sym_struct] = ACTIONS(1442), + [anon_sym_mut] = ACTIONS(41), + [anon_sym_QMARK] = ACTIONS(47), + [anon_sym_BANG] = ACTIONS(1444), + [anon_sym_go] = ACTIONS(1446), + [anon_sym_spawn] = ACTIONS(1448), + [anon_sym_json_DOTdecode] = ACTIONS(1450), + [anon_sym_LBRACK2] = ACTIONS(1452), + [anon_sym_TILDE] = ACTIONS(1438), + [anon_sym_CARET] = ACTIONS(1438), + [anon_sym_AMP] = ACTIONS(1454), + [anon_sym_LT_DASH] = ACTIONS(1456), + [sym_none] = ACTIONS(1458), + [sym_true] = ACTIONS(1458), + [sym_false] = ACTIONS(1458), + [sym_nil] = ACTIONS(1458), + [anon_sym_if] = ACTIONS(1833), + [anon_sym_DOLLARif] = ACTIONS(1462), + [anon_sym_match] = ACTIONS(1464), + [anon_sym_select] = ACTIONS(1466), + [anon_sym_lock] = ACTIONS(1468), + [anon_sym_rlock] = ACTIONS(1468), + [anon_sym_unsafe] = ACTIONS(1839), + [anon_sym_sql] = ACTIONS(1472), + [sym_int_literal] = ACTIONS(1458), + [sym_float_literal] = ACTIONS(1474), + [sym_rune_literal] = ACTIONS(1474), + [sym_pseudo_compile_time_identifier] = ACTIONS(1476), + [anon_sym_shared] = ACTIONS(83), + [anon_sym_map_LBRACK] = ACTIONS(85), + [anon_sym_chan] = ACTIONS(87), + [anon_sym_thread] = ACTIONS(89), + [anon_sym_atomic] = ACTIONS(91), + [anon_sym_DOT_DOT] = ACTIONS(1478), + [sym___double_quote] = ACTIONS(1480), + [sym___single_quote] = ACTIONS(1482), + [sym___c_double_quote] = ACTIONS(1484), + [sym___c_single_quote] = ACTIONS(1486), + [sym___r_double_quote] = ACTIONS(1488), + [sym___r_single_quote] = ACTIONS(1490), }, [412] = { [sym_line_comment] = STATE(412), [sym_block_comment] = STATE(412), - [ts_builtin_sym_end] = ACTIONS(2665), - [sym_identifier] = ACTIONS(2667), - [anon_sym_LF] = ACTIONS(2667), - [anon_sym_CR] = ACTIONS(2667), - [anon_sym_CR_LF] = ACTIONS(2667), + [ts_builtin_sym_end] = ACTIONS(2674), + [sym_identifier] = ACTIONS(2676), + [anon_sym_LF] = ACTIONS(2676), + [anon_sym_CR] = ACTIONS(2676), + [anon_sym_CR_LF] = ACTIONS(2676), [anon_sym_SLASH_SLASH] = ACTIONS(497), [anon_sym_SLASH_STAR] = ACTIONS(499), - [anon_sym_DOT] = ACTIONS(2667), - [anon_sym_as] = ACTIONS(2667), - [anon_sym_LBRACE] = ACTIONS(2667), - [anon_sym_COMMA] = ACTIONS(2667), - [anon_sym_const] = ACTIONS(2667), - [anon_sym_LPAREN] = ACTIONS(2667), - [anon_sym_EQ] = ACTIONS(2667), - [anon_sym___global] = ACTIONS(2667), - [anon_sym_type] = ACTIONS(2667), - [anon_sym_PIPE] = ACTIONS(2667), - [anon_sym_fn] = ACTIONS(2667), - [anon_sym_PLUS] = ACTIONS(2667), - [anon_sym_DASH] = ACTIONS(2667), - [anon_sym_STAR] = ACTIONS(2667), - [anon_sym_SLASH] = ACTIONS(2667), - [anon_sym_PERCENT] = ACTIONS(2667), - [anon_sym_LT] = ACTIONS(2667), - [anon_sym_GT] = ACTIONS(2667), - [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(2665), - [anon_sym_struct] = ACTIONS(2667), - [anon_sym_union] = ACTIONS(2667), - [anon_sym_pub] = ACTIONS(2667), - [anon_sym_mut] = ACTIONS(2667), - [anon_sym_enum] = ACTIONS(2667), - [anon_sym_interface] = ACTIONS(2667), - [anon_sym_PLUS_PLUS] = ACTIONS(2667), - [anon_sym_DASH_DASH] = ACTIONS(2667), - [anon_sym_QMARK] = ACTIONS(2667), - [anon_sym_BANG] = ACTIONS(2667), - [anon_sym_go] = ACTIONS(2667), - [anon_sym_spawn] = ACTIONS(2667), - [anon_sym_json_DOTdecode] = ACTIONS(2667), - [anon_sym_LBRACK2] = ACTIONS(2667), - [anon_sym_TILDE] = ACTIONS(2667), - [anon_sym_CARET] = ACTIONS(2667), - [anon_sym_AMP] = ACTIONS(2667), - [anon_sym_LT_DASH] = ACTIONS(2667), - [anon_sym_LT_LT] = ACTIONS(2667), - [anon_sym_GT_GT] = ACTIONS(2667), - [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(2667), - [sym_none] = ACTIONS(2667), - [sym_true] = ACTIONS(2667), - [sym_false] = ACTIONS(2667), - [sym_nil] = ACTIONS(2667), - [anon_sym_QMARK_DOT] = ACTIONS(2667), - [anon_sym_POUND_LBRACK] = ACTIONS(2667), - [anon_sym_if] = ACTIONS(2667), - [anon_sym_DOLLARif] = ACTIONS(2667), - [anon_sym_is] = ACTIONS(2667), - [anon_sym_BANGis] = ACTIONS(2667), - [anon_sym_in] = ACTIONS(2667), - [anon_sym_BANGin] = ACTIONS(2667), - [anon_sym_match] = ACTIONS(2667), - [anon_sym_select] = ACTIONS(2667), - [anon_sym_STAR_EQ] = ACTIONS(2667), - [anon_sym_SLASH_EQ] = ACTIONS(2667), - [anon_sym_PERCENT_EQ] = ACTIONS(2667), - [anon_sym_LT_LT_EQ] = ACTIONS(2667), - [anon_sym_GT_GT_EQ] = ACTIONS(2667), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(2667), - [anon_sym_AMP_EQ] = ACTIONS(2667), - [anon_sym_AMP_CARET_EQ] = ACTIONS(2667), - [anon_sym_PLUS_EQ] = ACTIONS(2667), - [anon_sym_DASH_EQ] = ACTIONS(2667), - [anon_sym_PIPE_EQ] = ACTIONS(2667), - [anon_sym_CARET_EQ] = ACTIONS(2667), - [anon_sym_COLON_EQ] = ACTIONS(2667), - [anon_sym_lock] = ACTIONS(2667), - [anon_sym_rlock] = ACTIONS(2667), - [anon_sym_unsafe] = ACTIONS(2667), - [anon_sym_sql] = ACTIONS(2667), - [sym_int_literal] = ACTIONS(2667), - [sym_float_literal] = ACTIONS(2667), - [sym_rune_literal] = ACTIONS(2667), - [sym_pseudo_compile_time_identifier] = ACTIONS(2667), - [anon_sym_shared] = ACTIONS(2667), - [anon_sym_map_LBRACK] = ACTIONS(2667), - [anon_sym_chan] = ACTIONS(2667), - [anon_sym_thread] = ACTIONS(2667), - [anon_sym_atomic] = ACTIONS(2667), - [anon_sym_assert] = ACTIONS(2667), - [anon_sym_defer] = ACTIONS(2667), - [anon_sym_goto] = ACTIONS(2667), - [anon_sym_break] = ACTIONS(2667), - [anon_sym_continue] = ACTIONS(2667), - [anon_sym_return] = ACTIONS(2667), - [anon_sym_DOLLARfor] = ACTIONS(2667), - [anon_sym_for] = ACTIONS(2667), - [anon_sym_POUND] = ACTIONS(2667), - [anon_sym_asm] = ACTIONS(2667), - [anon_sym_AT_LBRACK] = ACTIONS(2667), - [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(2676), + [anon_sym_as] = ACTIONS(2676), + [anon_sym_LBRACE] = ACTIONS(2676), + [anon_sym_COMMA] = ACTIONS(2676), + [anon_sym_const] = ACTIONS(2676), + [anon_sym_LPAREN] = ACTIONS(2676), + [anon_sym_EQ] = ACTIONS(2676), + [anon_sym___global] = ACTIONS(2676), + [anon_sym_type] = ACTIONS(2676), + [anon_sym_PIPE] = ACTIONS(2676), + [anon_sym_fn] = ACTIONS(2676), + [anon_sym_PLUS] = ACTIONS(2676), + [anon_sym_DASH] = ACTIONS(2676), + [anon_sym_STAR] = ACTIONS(2676), + [anon_sym_SLASH] = ACTIONS(2676), + [anon_sym_PERCENT] = ACTIONS(2676), + [anon_sym_LT] = ACTIONS(2676), + [anon_sym_GT] = ACTIONS(2676), + [anon_sym_EQ_EQ] = ACTIONS(2676), + [anon_sym_BANG_EQ] = ACTIONS(2676), + [anon_sym_LT_EQ] = ACTIONS(2676), + [anon_sym_GT_EQ] = ACTIONS(2676), + [anon_sym_LBRACK] = ACTIONS(2674), + [anon_sym_struct] = ACTIONS(2676), + [anon_sym_union] = ACTIONS(2676), + [anon_sym_pub] = ACTIONS(2676), + [anon_sym_mut] = ACTIONS(2676), + [anon_sym_enum] = ACTIONS(2676), + [anon_sym_interface] = ACTIONS(2676), + [anon_sym_PLUS_PLUS] = ACTIONS(2676), + [anon_sym_DASH_DASH] = ACTIONS(2676), + [anon_sym_QMARK] = ACTIONS(2676), + [anon_sym_BANG] = ACTIONS(2676), + [anon_sym_go] = ACTIONS(2676), + [anon_sym_spawn] = ACTIONS(2676), + [anon_sym_json_DOTdecode] = ACTIONS(2676), + [anon_sym_LBRACK2] = ACTIONS(2676), + [anon_sym_TILDE] = ACTIONS(2676), + [anon_sym_CARET] = ACTIONS(2676), + [anon_sym_AMP] = ACTIONS(2676), + [anon_sym_LT_DASH] = ACTIONS(2676), + [anon_sym_LT_LT] = ACTIONS(2676), + [anon_sym_GT_GT] = ACTIONS(2676), + [anon_sym_GT_GT_GT] = ACTIONS(2676), + [anon_sym_AMP_CARET] = ACTIONS(2676), + [anon_sym_AMP_AMP] = ACTIONS(2676), + [anon_sym_PIPE_PIPE] = ACTIONS(2676), + [anon_sym_or] = ACTIONS(2676), + [sym_none] = ACTIONS(2676), + [sym_true] = ACTIONS(2676), + [sym_false] = ACTIONS(2676), + [sym_nil] = ACTIONS(2676), + [anon_sym_QMARK_DOT] = ACTIONS(2676), + [anon_sym_POUND_LBRACK] = ACTIONS(2676), + [anon_sym_if] = ACTIONS(2676), + [anon_sym_DOLLARif] = ACTIONS(2676), + [anon_sym_is] = ACTIONS(2676), + [anon_sym_BANGis] = ACTIONS(2676), + [anon_sym_in] = ACTIONS(2676), + [anon_sym_BANGin] = ACTIONS(2676), + [anon_sym_match] = ACTIONS(2676), + [anon_sym_select] = ACTIONS(2676), + [anon_sym_STAR_EQ] = ACTIONS(2676), + [anon_sym_SLASH_EQ] = ACTIONS(2676), + [anon_sym_PERCENT_EQ] = ACTIONS(2676), + [anon_sym_LT_LT_EQ] = ACTIONS(2676), + [anon_sym_GT_GT_EQ] = ACTIONS(2676), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(2676), + [anon_sym_AMP_EQ] = ACTIONS(2676), + [anon_sym_AMP_CARET_EQ] = ACTIONS(2676), + [anon_sym_PLUS_EQ] = ACTIONS(2676), + [anon_sym_DASH_EQ] = ACTIONS(2676), + [anon_sym_PIPE_EQ] = ACTIONS(2676), + [anon_sym_CARET_EQ] = ACTIONS(2676), + [anon_sym_COLON_EQ] = ACTIONS(2676), + [anon_sym_lock] = ACTIONS(2676), + [anon_sym_rlock] = ACTIONS(2676), + [anon_sym_unsafe] = ACTIONS(2676), + [anon_sym_sql] = ACTIONS(2676), + [sym_int_literal] = ACTIONS(2676), + [sym_float_literal] = ACTIONS(2676), + [sym_rune_literal] = ACTIONS(2676), + [sym_pseudo_compile_time_identifier] = ACTIONS(2676), + [anon_sym_shared] = ACTIONS(2676), + [anon_sym_map_LBRACK] = ACTIONS(2676), + [anon_sym_chan] = ACTIONS(2676), + [anon_sym_thread] = ACTIONS(2676), + [anon_sym_atomic] = ACTIONS(2676), + [anon_sym_assert] = ACTIONS(2676), + [anon_sym_defer] = ACTIONS(2676), + [anon_sym_goto] = ACTIONS(2676), + [anon_sym_break] = ACTIONS(2676), + [anon_sym_continue] = ACTIONS(2676), + [anon_sym_return] = ACTIONS(2676), + [anon_sym_DOLLARfor] = ACTIONS(2676), + [anon_sym_for] = ACTIONS(2676), + [anon_sym_POUND] = ACTIONS(2676), + [anon_sym_asm] = ACTIONS(2676), + [anon_sym_AT_LBRACK] = ACTIONS(2676), + [sym___double_quote] = ACTIONS(2676), + [sym___single_quote] = ACTIONS(2676), + [sym___c_double_quote] = ACTIONS(2676), + [sym___c_single_quote] = ACTIONS(2676), + [sym___r_double_quote] = ACTIONS(2676), + [sym___r_single_quote] = ACTIONS(2676), }, [413] = { [sym_line_comment] = STATE(413), [sym_block_comment] = STATE(413), - [sym__expression] = STATE(1268), - [sym__expression_without_blocks] = STATE(1312), - [sym__expression_with_blocks] = STATE(1312), - [sym_inc_expression] = STATE(1313), - [sym_dec_expression] = STATE(1313), - [sym_or_block_expression] = STATE(1313), - [sym_option_propagation_expression] = STATE(1313), - [sym_result_propagation_expression] = STATE(1313), - [sym_anon_struct_value_expression] = STATE(1314), - [sym_go_expression] = STATE(1313), - [sym_spawn_expression] = STATE(1313), - [sym_parenthesized_expression] = STATE(1313), - [sym_call_expression] = STATE(1313), - [sym_type_initializer] = STATE(1314), - [sym_function_literal] = STATE(1313), - [sym_reference_expression] = STATE(1334), - [sym_type_reference_expression] = STATE(3541), - [sym_unary_expression] = STATE(1313), - [sym_receive_expression] = STATE(1313), - [sym_binary_expression] = STATE(1313), - [sym_as_type_cast_expression] = STATE(1313), - [sym__max_group] = STATE(1313), - [sym_literal] = STATE(1308), - [sym_map_init_expression] = STATE(1314), - [sym_array_creation] = STATE(1313), - [sym_fixed_array_creation] = STATE(1313), - [sym_selector_expression] = STATE(1313), - [sym_index_expression] = STATE(1313), - [sym_slice_expression] = STATE(1313), - [sym_if_expression] = STATE(1314), - [sym_compile_time_if_expression] = STATE(1314), - [sym_is_expression] = STATE(1313), - [sym_in_expression] = STATE(1313), - [sym_enum_fetch] = STATE(1313), - [sym_match_expression] = STATE(1314), - [sym_select_expression] = STATE(1314), - [sym_lock_expression] = STATE(1314), - [sym_unsafe_expression] = STATE(1314), - [sym_sql_expression] = STATE(1314), - [sym_c_string_literal] = STATE(1286), - [sym_raw_string_literal] = STATE(1286), - [sym_interpreted_string_literal] = STATE(1286), - [sym_mutability_modifiers] = STATE(699), - [sym_plain_type] = STATE(4192), - [sym__plain_type_without_special] = STATE(2302), - [sym_anon_struct_type] = STATE(2303), - [sym_multi_return_type] = STATE(2302), - [sym_result_type] = STATE(2302), - [sym_option_type] = STATE(2302), - [sym_qualified_type] = STATE(3541), - [sym_fixed_array_type] = STATE(2303), - [sym_array_type] = STATE(2303), - [sym_pointer_type] = STATE(2303), - [sym_wrong_pointer_type] = STATE(2303), - [sym_map_type] = STATE(2303), - [sym_channel_type] = STATE(2303), - [sym_shared_type] = STATE(2303), - [sym_thread_type] = STATE(2303), - [sym_atomic_type] = STATE(2303), - [sym_generic_type] = STATE(2303), - [sym_function_type] = STATE(2303), - [aux_sym__array_repeat1] = STATE(404), - [sym_identifier] = ACTIONS(1354), - [anon_sym_SLASH_SLASH] = ACTIONS(3), - [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1356), - [anon_sym_LBRACE] = ACTIONS(1358), - [anon_sym_LPAREN] = ACTIONS(1360), - [anon_sym_fn] = ACTIONS(1362), - [anon_sym_PLUS] = ACTIONS(1364), - [anon_sym_DASH] = ACTIONS(1364), - [anon_sym_STAR] = ACTIONS(1366), - [anon_sym_RBRACK] = ACTIONS(2669), - [anon_sym_struct] = ACTIONS(1370), - [anon_sym_mut] = ACTIONS(41), - [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(1372), - [anon_sym_go] = ACTIONS(1374), - [anon_sym_spawn] = ACTIONS(1376), - [anon_sym_json_DOTdecode] = ACTIONS(1378), - [anon_sym_LBRACK2] = ACTIONS(1380), - [anon_sym_TILDE] = ACTIONS(1364), - [anon_sym_CARET] = ACTIONS(1364), - [anon_sym_AMP] = ACTIONS(1382), - [anon_sym_LT_DASH] = ACTIONS(1384), - [sym_none] = ACTIONS(1386), - [sym_true] = ACTIONS(1386), - [sym_false] = ACTIONS(1386), - [sym_nil] = ACTIONS(1386), - [anon_sym_if] = ACTIONS(1877), - [anon_sym_DOLLARif] = ACTIONS(1390), - [anon_sym_match] = ACTIONS(1392), - [anon_sym_select] = ACTIONS(1394), - [anon_sym_lock] = ACTIONS(1396), - [anon_sym_rlock] = ACTIONS(1396), - [anon_sym_unsafe] = ACTIONS(1883), - [anon_sym_sql] = ACTIONS(1400), - [sym_int_literal] = ACTIONS(1386), - [sym_float_literal] = ACTIONS(1404), - [sym_rune_literal] = ACTIONS(1404), - [sym_pseudo_compile_time_identifier] = ACTIONS(1406), - [anon_sym_shared] = ACTIONS(83), - [anon_sym_map_LBRACK] = ACTIONS(85), - [anon_sym_chan] = ACTIONS(87), - [anon_sym_thread] = ACTIONS(89), - [anon_sym_atomic] = ACTIONS(91), - [sym___double_quote] = ACTIONS(1408), - [sym___single_quote] = ACTIONS(1410), - [sym___c_double_quote] = ACTIONS(1412), - [sym___c_single_quote] = ACTIONS(1414), - [sym___r_double_quote] = ACTIONS(1416), - [sym___r_single_quote] = ACTIONS(1418), + [ts_builtin_sym_end] = ACTIONS(2678), + [sym_identifier] = ACTIONS(2680), + [anon_sym_LF] = ACTIONS(2680), + [anon_sym_CR] = ACTIONS(2680), + [anon_sym_CR_LF] = ACTIONS(2680), + [anon_sym_SLASH_SLASH] = ACTIONS(497), + [anon_sym_SLASH_STAR] = ACTIONS(499), + [anon_sym_DOT] = ACTIONS(2680), + [anon_sym_as] = ACTIONS(2680), + [anon_sym_LBRACE] = ACTIONS(2680), + [anon_sym_COMMA] = ACTIONS(2680), + [anon_sym_const] = ACTIONS(2680), + [anon_sym_LPAREN] = ACTIONS(2680), + [anon_sym_EQ] = ACTIONS(2680), + [anon_sym___global] = ACTIONS(2680), + [anon_sym_type] = ACTIONS(2680), + [anon_sym_PIPE] = ACTIONS(2680), + [anon_sym_fn] = ACTIONS(2680), + [anon_sym_PLUS] = ACTIONS(2680), + [anon_sym_DASH] = ACTIONS(2680), + [anon_sym_STAR] = ACTIONS(2680), + [anon_sym_SLASH] = ACTIONS(2680), + [anon_sym_PERCENT] = ACTIONS(2680), + [anon_sym_LT] = ACTIONS(2680), + [anon_sym_GT] = ACTIONS(2680), + [anon_sym_EQ_EQ] = ACTIONS(2680), + [anon_sym_BANG_EQ] = ACTIONS(2680), + [anon_sym_LT_EQ] = ACTIONS(2680), + [anon_sym_GT_EQ] = ACTIONS(2680), + [anon_sym_LBRACK] = ACTIONS(2678), + [anon_sym_struct] = ACTIONS(2680), + [anon_sym_union] = ACTIONS(2680), + [anon_sym_pub] = ACTIONS(2680), + [anon_sym_mut] = ACTIONS(2680), + [anon_sym_enum] = ACTIONS(2680), + [anon_sym_interface] = ACTIONS(2680), + [anon_sym_PLUS_PLUS] = ACTIONS(2680), + [anon_sym_DASH_DASH] = ACTIONS(2680), + [anon_sym_QMARK] = ACTIONS(2680), + [anon_sym_BANG] = ACTIONS(2680), + [anon_sym_go] = ACTIONS(2680), + [anon_sym_spawn] = ACTIONS(2680), + [anon_sym_json_DOTdecode] = ACTIONS(2680), + [anon_sym_LBRACK2] = ACTIONS(2680), + [anon_sym_TILDE] = ACTIONS(2680), + [anon_sym_CARET] = ACTIONS(2680), + [anon_sym_AMP] = ACTIONS(2680), + [anon_sym_LT_DASH] = ACTIONS(2680), + [anon_sym_LT_LT] = ACTIONS(2680), + [anon_sym_GT_GT] = ACTIONS(2680), + [anon_sym_GT_GT_GT] = ACTIONS(2680), + [anon_sym_AMP_CARET] = ACTIONS(2680), + [anon_sym_AMP_AMP] = ACTIONS(2680), + [anon_sym_PIPE_PIPE] = ACTIONS(2680), + [anon_sym_or] = ACTIONS(2680), + [sym_none] = ACTIONS(2680), + [sym_true] = ACTIONS(2680), + [sym_false] = ACTIONS(2680), + [sym_nil] = ACTIONS(2680), + [anon_sym_QMARK_DOT] = ACTIONS(2680), + [anon_sym_POUND_LBRACK] = ACTIONS(2680), + [anon_sym_if] = ACTIONS(2680), + [anon_sym_DOLLARif] = ACTIONS(2680), + [anon_sym_is] = ACTIONS(2680), + [anon_sym_BANGis] = ACTIONS(2680), + [anon_sym_in] = ACTIONS(2680), + [anon_sym_BANGin] = ACTIONS(2680), + [anon_sym_match] = ACTIONS(2680), + [anon_sym_select] = ACTIONS(2680), + [anon_sym_STAR_EQ] = ACTIONS(2680), + [anon_sym_SLASH_EQ] = ACTIONS(2680), + [anon_sym_PERCENT_EQ] = ACTIONS(2680), + [anon_sym_LT_LT_EQ] = ACTIONS(2680), + [anon_sym_GT_GT_EQ] = ACTIONS(2680), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(2680), + [anon_sym_AMP_EQ] = ACTIONS(2680), + [anon_sym_AMP_CARET_EQ] = ACTIONS(2680), + [anon_sym_PLUS_EQ] = ACTIONS(2680), + [anon_sym_DASH_EQ] = ACTIONS(2680), + [anon_sym_PIPE_EQ] = ACTIONS(2680), + [anon_sym_CARET_EQ] = ACTIONS(2680), + [anon_sym_COLON_EQ] = ACTIONS(2680), + [anon_sym_lock] = ACTIONS(2680), + [anon_sym_rlock] = ACTIONS(2680), + [anon_sym_unsafe] = ACTIONS(2680), + [anon_sym_sql] = ACTIONS(2680), + [sym_int_literal] = ACTIONS(2680), + [sym_float_literal] = ACTIONS(2680), + [sym_rune_literal] = ACTIONS(2680), + [sym_pseudo_compile_time_identifier] = ACTIONS(2680), + [anon_sym_shared] = ACTIONS(2680), + [anon_sym_map_LBRACK] = ACTIONS(2680), + [anon_sym_chan] = ACTIONS(2680), + [anon_sym_thread] = ACTIONS(2680), + [anon_sym_atomic] = ACTIONS(2680), + [anon_sym_assert] = ACTIONS(2680), + [anon_sym_defer] = ACTIONS(2680), + [anon_sym_goto] = ACTIONS(2680), + [anon_sym_break] = ACTIONS(2680), + [anon_sym_continue] = ACTIONS(2680), + [anon_sym_return] = ACTIONS(2680), + [anon_sym_DOLLARfor] = ACTIONS(2680), + [anon_sym_for] = ACTIONS(2680), + [anon_sym_POUND] = ACTIONS(2680), + [anon_sym_asm] = ACTIONS(2680), + [anon_sym_AT_LBRACK] = ACTIONS(2680), + [sym___double_quote] = ACTIONS(2680), + [sym___single_quote] = ACTIONS(2680), + [sym___c_double_quote] = ACTIONS(2680), + [sym___c_single_quote] = ACTIONS(2680), + [sym___r_double_quote] = ACTIONS(2680), + [sym___r_single_quote] = ACTIONS(2680), }, [414] = { [sym_line_comment] = STATE(414), [sym_block_comment] = STATE(414), - [ts_builtin_sym_end] = ACTIONS(2671), - [sym_identifier] = ACTIONS(2673), - [anon_sym_LF] = ACTIONS(2673), - [anon_sym_CR] = ACTIONS(2673), - [anon_sym_CR_LF] = ACTIONS(2673), + [ts_builtin_sym_end] = ACTIONS(2682), + [sym_identifier] = ACTIONS(2684), + [anon_sym_LF] = ACTIONS(2684), + [anon_sym_CR] = ACTIONS(2684), + [anon_sym_CR_LF] = ACTIONS(2684), [anon_sym_SLASH_SLASH] = ACTIONS(497), [anon_sym_SLASH_STAR] = ACTIONS(499), - [anon_sym_DOT] = ACTIONS(2673), - [anon_sym_as] = ACTIONS(2673), - [anon_sym_LBRACE] = ACTIONS(2673), - [anon_sym_COMMA] = ACTIONS(2673), - [anon_sym_const] = ACTIONS(2673), - [anon_sym_LPAREN] = ACTIONS(2673), - [anon_sym_EQ] = ACTIONS(2673), - [anon_sym___global] = ACTIONS(2673), - [anon_sym_type] = ACTIONS(2673), - [anon_sym_PIPE] = ACTIONS(2673), - [anon_sym_fn] = ACTIONS(2673), - [anon_sym_PLUS] = ACTIONS(2673), - [anon_sym_DASH] = ACTIONS(2673), - [anon_sym_STAR] = ACTIONS(2673), - [anon_sym_SLASH] = ACTIONS(2673), - [anon_sym_PERCENT] = ACTIONS(2673), - [anon_sym_LT] = ACTIONS(2673), - [anon_sym_GT] = ACTIONS(2673), - [anon_sym_EQ_EQ] = ACTIONS(2673), - [anon_sym_BANG_EQ] = ACTIONS(2673), - [anon_sym_LT_EQ] = ACTIONS(2673), - [anon_sym_GT_EQ] = ACTIONS(2673), - [anon_sym_LBRACK] = ACTIONS(2671), - [anon_sym_struct] = ACTIONS(2673), - [anon_sym_union] = ACTIONS(2673), - [anon_sym_pub] = ACTIONS(2673), - [anon_sym_mut] = ACTIONS(2673), - [anon_sym_enum] = ACTIONS(2673), - [anon_sym_interface] = ACTIONS(2673), - [anon_sym_PLUS_PLUS] = ACTIONS(2673), - [anon_sym_DASH_DASH] = ACTIONS(2673), - [anon_sym_QMARK] = ACTIONS(2673), - [anon_sym_BANG] = ACTIONS(2673), - [anon_sym_go] = ACTIONS(2673), - [anon_sym_spawn] = ACTIONS(2673), - [anon_sym_json_DOTdecode] = ACTIONS(2673), - [anon_sym_LBRACK2] = ACTIONS(2673), - [anon_sym_TILDE] = ACTIONS(2673), - [anon_sym_CARET] = ACTIONS(2673), - [anon_sym_AMP] = ACTIONS(2673), - [anon_sym_LT_DASH] = ACTIONS(2673), - [anon_sym_LT_LT] = ACTIONS(2673), - [anon_sym_GT_GT] = ACTIONS(2673), - [anon_sym_GT_GT_GT] = ACTIONS(2673), - [anon_sym_AMP_CARET] = ACTIONS(2673), - [anon_sym_AMP_AMP] = ACTIONS(2673), - [anon_sym_PIPE_PIPE] = ACTIONS(2673), - [anon_sym_or] = ACTIONS(2673), - [sym_none] = ACTIONS(2673), - [sym_true] = ACTIONS(2673), - [sym_false] = ACTIONS(2673), - [sym_nil] = ACTIONS(2673), - [anon_sym_QMARK_DOT] = ACTIONS(2673), - [anon_sym_POUND_LBRACK] = ACTIONS(2673), - [anon_sym_if] = ACTIONS(2673), - [anon_sym_DOLLARif] = ACTIONS(2673), - [anon_sym_is] = ACTIONS(2673), - [anon_sym_BANGis] = ACTIONS(2673), - [anon_sym_in] = ACTIONS(2673), - [anon_sym_BANGin] = ACTIONS(2673), - [anon_sym_match] = ACTIONS(2673), - [anon_sym_select] = ACTIONS(2673), - [anon_sym_STAR_EQ] = ACTIONS(2673), - [anon_sym_SLASH_EQ] = ACTIONS(2673), - [anon_sym_PERCENT_EQ] = ACTIONS(2673), - [anon_sym_LT_LT_EQ] = ACTIONS(2673), - [anon_sym_GT_GT_EQ] = ACTIONS(2673), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(2673), - [anon_sym_AMP_EQ] = ACTIONS(2673), - [anon_sym_AMP_CARET_EQ] = ACTIONS(2673), - [anon_sym_PLUS_EQ] = ACTIONS(2673), - [anon_sym_DASH_EQ] = ACTIONS(2673), - [anon_sym_PIPE_EQ] = ACTIONS(2673), - [anon_sym_CARET_EQ] = ACTIONS(2673), - [anon_sym_COLON_EQ] = ACTIONS(2673), - [anon_sym_lock] = ACTIONS(2673), - [anon_sym_rlock] = ACTIONS(2673), - [anon_sym_unsafe] = ACTIONS(2673), - [anon_sym_sql] = ACTIONS(2673), - [sym_int_literal] = ACTIONS(2673), - [sym_float_literal] = ACTIONS(2673), - [sym_rune_literal] = ACTIONS(2673), - [sym_pseudo_compile_time_identifier] = ACTIONS(2673), - [anon_sym_shared] = ACTIONS(2673), - [anon_sym_map_LBRACK] = ACTIONS(2673), - [anon_sym_chan] = ACTIONS(2673), - [anon_sym_thread] = ACTIONS(2673), - [anon_sym_atomic] = ACTIONS(2673), - [anon_sym_assert] = ACTIONS(2673), - [anon_sym_defer] = ACTIONS(2673), - [anon_sym_goto] = ACTIONS(2673), - [anon_sym_break] = ACTIONS(2673), - [anon_sym_continue] = ACTIONS(2673), - [anon_sym_return] = ACTIONS(2673), - [anon_sym_DOLLARfor] = ACTIONS(2673), - [anon_sym_for] = ACTIONS(2673), - [anon_sym_POUND] = ACTIONS(2673), - [anon_sym_asm] = ACTIONS(2673), - [anon_sym_AT_LBRACK] = ACTIONS(2673), - [sym___double_quote] = ACTIONS(2673), - [sym___single_quote] = ACTIONS(2673), - [sym___c_double_quote] = ACTIONS(2673), - [sym___c_single_quote] = ACTIONS(2673), - [sym___r_double_quote] = ACTIONS(2673), - [sym___r_single_quote] = ACTIONS(2673), + [anon_sym_DOT] = ACTIONS(2684), + [anon_sym_as] = ACTIONS(2684), + [anon_sym_LBRACE] = ACTIONS(2684), + [anon_sym_COMMA] = ACTIONS(2684), + [anon_sym_const] = ACTIONS(2684), + [anon_sym_LPAREN] = ACTIONS(2684), + [anon_sym_EQ] = ACTIONS(2684), + [anon_sym___global] = ACTIONS(2684), + [anon_sym_type] = ACTIONS(2684), + [anon_sym_PIPE] = ACTIONS(2684), + [anon_sym_fn] = ACTIONS(2684), + [anon_sym_PLUS] = ACTIONS(2684), + [anon_sym_DASH] = ACTIONS(2684), + [anon_sym_STAR] = ACTIONS(2684), + [anon_sym_SLASH] = ACTIONS(2684), + [anon_sym_PERCENT] = ACTIONS(2684), + [anon_sym_LT] = ACTIONS(2684), + [anon_sym_GT] = ACTIONS(2684), + [anon_sym_EQ_EQ] = ACTIONS(2684), + [anon_sym_BANG_EQ] = ACTIONS(2684), + [anon_sym_LT_EQ] = ACTIONS(2684), + [anon_sym_GT_EQ] = ACTIONS(2684), + [anon_sym_LBRACK] = ACTIONS(2682), + [anon_sym_struct] = ACTIONS(2684), + [anon_sym_union] = ACTIONS(2684), + [anon_sym_pub] = ACTIONS(2684), + [anon_sym_mut] = ACTIONS(2684), + [anon_sym_enum] = ACTIONS(2684), + [anon_sym_interface] = ACTIONS(2684), + [anon_sym_PLUS_PLUS] = ACTIONS(2684), + [anon_sym_DASH_DASH] = ACTIONS(2684), + [anon_sym_QMARK] = ACTIONS(2684), + [anon_sym_BANG] = ACTIONS(2684), + [anon_sym_go] = ACTIONS(2684), + [anon_sym_spawn] = ACTIONS(2684), + [anon_sym_json_DOTdecode] = ACTIONS(2684), + [anon_sym_LBRACK2] = ACTIONS(2684), + [anon_sym_TILDE] = ACTIONS(2684), + [anon_sym_CARET] = ACTIONS(2684), + [anon_sym_AMP] = ACTIONS(2684), + [anon_sym_LT_DASH] = ACTIONS(2684), + [anon_sym_LT_LT] = ACTIONS(2684), + [anon_sym_GT_GT] = ACTIONS(2684), + [anon_sym_GT_GT_GT] = ACTIONS(2684), + [anon_sym_AMP_CARET] = ACTIONS(2684), + [anon_sym_AMP_AMP] = ACTIONS(2684), + [anon_sym_PIPE_PIPE] = ACTIONS(2684), + [anon_sym_or] = ACTIONS(2684), + [sym_none] = ACTIONS(2684), + [sym_true] = ACTIONS(2684), + [sym_false] = ACTIONS(2684), + [sym_nil] = ACTIONS(2684), + [anon_sym_QMARK_DOT] = ACTIONS(2684), + [anon_sym_POUND_LBRACK] = ACTIONS(2684), + [anon_sym_if] = ACTIONS(2684), + [anon_sym_DOLLARif] = ACTIONS(2684), + [anon_sym_is] = ACTIONS(2684), + [anon_sym_BANGis] = ACTIONS(2684), + [anon_sym_in] = ACTIONS(2684), + [anon_sym_BANGin] = ACTIONS(2684), + [anon_sym_match] = ACTIONS(2684), + [anon_sym_select] = ACTIONS(2684), + [anon_sym_STAR_EQ] = ACTIONS(2684), + [anon_sym_SLASH_EQ] = ACTIONS(2684), + [anon_sym_PERCENT_EQ] = ACTIONS(2684), + [anon_sym_LT_LT_EQ] = ACTIONS(2684), + [anon_sym_GT_GT_EQ] = ACTIONS(2684), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(2684), + [anon_sym_AMP_EQ] = ACTIONS(2684), + [anon_sym_AMP_CARET_EQ] = ACTIONS(2684), + [anon_sym_PLUS_EQ] = ACTIONS(2684), + [anon_sym_DASH_EQ] = ACTIONS(2684), + [anon_sym_PIPE_EQ] = ACTIONS(2684), + [anon_sym_CARET_EQ] = ACTIONS(2684), + [anon_sym_COLON_EQ] = ACTIONS(2684), + [anon_sym_lock] = ACTIONS(2684), + [anon_sym_rlock] = ACTIONS(2684), + [anon_sym_unsafe] = ACTIONS(2684), + [anon_sym_sql] = ACTIONS(2684), + [sym_int_literal] = ACTIONS(2684), + [sym_float_literal] = ACTIONS(2684), + [sym_rune_literal] = ACTIONS(2684), + [sym_pseudo_compile_time_identifier] = ACTIONS(2684), + [anon_sym_shared] = ACTIONS(2684), + [anon_sym_map_LBRACK] = ACTIONS(2684), + [anon_sym_chan] = ACTIONS(2684), + [anon_sym_thread] = ACTIONS(2684), + [anon_sym_atomic] = ACTIONS(2684), + [anon_sym_assert] = ACTIONS(2684), + [anon_sym_defer] = ACTIONS(2684), + [anon_sym_goto] = ACTIONS(2684), + [anon_sym_break] = ACTIONS(2684), + [anon_sym_continue] = ACTIONS(2684), + [anon_sym_return] = ACTIONS(2684), + [anon_sym_DOLLARfor] = ACTIONS(2684), + [anon_sym_for] = ACTIONS(2684), + [anon_sym_POUND] = ACTIONS(2684), + [anon_sym_asm] = ACTIONS(2684), + [anon_sym_AT_LBRACK] = ACTIONS(2684), + [sym___double_quote] = ACTIONS(2684), + [sym___single_quote] = ACTIONS(2684), + [sym___c_double_quote] = ACTIONS(2684), + [sym___c_single_quote] = ACTIONS(2684), + [sym___r_double_quote] = ACTIONS(2684), + [sym___r_single_quote] = ACTIONS(2684), }, [415] = { [sym_line_comment] = STATE(415), [sym_block_comment] = STATE(415), - [ts_builtin_sym_end] = ACTIONS(2675), - [sym_identifier] = ACTIONS(2677), - [anon_sym_LF] = ACTIONS(2677), - [anon_sym_CR] = ACTIONS(2677), - [anon_sym_CR_LF] = ACTIONS(2677), + [ts_builtin_sym_end] = ACTIONS(2686), + [sym_identifier] = ACTIONS(2688), + [anon_sym_LF] = ACTIONS(2688), + [anon_sym_CR] = ACTIONS(2688), + [anon_sym_CR_LF] = ACTIONS(2688), [anon_sym_SLASH_SLASH] = ACTIONS(497), [anon_sym_SLASH_STAR] = ACTIONS(499), - [anon_sym_DOT] = ACTIONS(2677), - [anon_sym_as] = ACTIONS(2677), - [anon_sym_LBRACE] = ACTIONS(2677), - [anon_sym_COMMA] = ACTIONS(2677), - [anon_sym_const] = ACTIONS(2677), - [anon_sym_LPAREN] = ACTIONS(2677), - [anon_sym_EQ] = ACTIONS(2677), - [anon_sym___global] = ACTIONS(2677), - [anon_sym_type] = ACTIONS(2677), - [anon_sym_PIPE] = ACTIONS(2677), - [anon_sym_fn] = ACTIONS(2677), - [anon_sym_PLUS] = ACTIONS(2677), - [anon_sym_DASH] = ACTIONS(2677), - [anon_sym_STAR] = ACTIONS(2677), - [anon_sym_SLASH] = ACTIONS(2677), - [anon_sym_PERCENT] = ACTIONS(2677), - [anon_sym_LT] = ACTIONS(2677), - [anon_sym_GT] = ACTIONS(2677), - [anon_sym_EQ_EQ] = ACTIONS(2677), - [anon_sym_BANG_EQ] = ACTIONS(2677), - [anon_sym_LT_EQ] = ACTIONS(2677), - [anon_sym_GT_EQ] = ACTIONS(2677), - [anon_sym_LBRACK] = ACTIONS(2675), - [anon_sym_struct] = ACTIONS(2677), - [anon_sym_union] = ACTIONS(2677), - [anon_sym_pub] = ACTIONS(2677), - [anon_sym_mut] = ACTIONS(2677), - [anon_sym_enum] = ACTIONS(2677), - [anon_sym_interface] = ACTIONS(2677), - [anon_sym_PLUS_PLUS] = ACTIONS(2677), - [anon_sym_DASH_DASH] = ACTIONS(2677), - [anon_sym_QMARK] = ACTIONS(2677), - [anon_sym_BANG] = ACTIONS(2677), - [anon_sym_go] = ACTIONS(2677), - [anon_sym_spawn] = ACTIONS(2677), - [anon_sym_json_DOTdecode] = ACTIONS(2677), - [anon_sym_LBRACK2] = ACTIONS(2677), - [anon_sym_TILDE] = ACTIONS(2677), - [anon_sym_CARET] = ACTIONS(2677), - [anon_sym_AMP] = ACTIONS(2677), - [anon_sym_LT_DASH] = ACTIONS(2677), - [anon_sym_LT_LT] = ACTIONS(2677), - [anon_sym_GT_GT] = ACTIONS(2677), - [anon_sym_GT_GT_GT] = ACTIONS(2677), - [anon_sym_AMP_CARET] = ACTIONS(2677), - [anon_sym_AMP_AMP] = ACTIONS(2677), - [anon_sym_PIPE_PIPE] = ACTIONS(2677), - [anon_sym_or] = ACTIONS(2677), - [sym_none] = ACTIONS(2677), - [sym_true] = ACTIONS(2677), - [sym_false] = ACTIONS(2677), - [sym_nil] = ACTIONS(2677), - [anon_sym_QMARK_DOT] = ACTIONS(2677), - [anon_sym_POUND_LBRACK] = ACTIONS(2677), - [anon_sym_if] = ACTIONS(2677), - [anon_sym_DOLLARif] = ACTIONS(2677), - [anon_sym_is] = ACTIONS(2677), - [anon_sym_BANGis] = ACTIONS(2677), - [anon_sym_in] = ACTIONS(2677), - [anon_sym_BANGin] = ACTIONS(2677), - [anon_sym_match] = ACTIONS(2677), - [anon_sym_select] = ACTIONS(2677), - [anon_sym_STAR_EQ] = ACTIONS(2677), - [anon_sym_SLASH_EQ] = ACTIONS(2677), - [anon_sym_PERCENT_EQ] = ACTIONS(2677), - [anon_sym_LT_LT_EQ] = ACTIONS(2677), - [anon_sym_GT_GT_EQ] = ACTIONS(2677), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(2677), - [anon_sym_AMP_EQ] = ACTIONS(2677), - [anon_sym_AMP_CARET_EQ] = ACTIONS(2677), - [anon_sym_PLUS_EQ] = ACTIONS(2677), - [anon_sym_DASH_EQ] = ACTIONS(2677), - [anon_sym_PIPE_EQ] = ACTIONS(2677), - [anon_sym_CARET_EQ] = ACTIONS(2677), - [anon_sym_COLON_EQ] = ACTIONS(2677), - [anon_sym_lock] = ACTIONS(2677), - [anon_sym_rlock] = ACTIONS(2677), - [anon_sym_unsafe] = ACTIONS(2677), - [anon_sym_sql] = ACTIONS(2677), - [sym_int_literal] = ACTIONS(2677), - [sym_float_literal] = ACTIONS(2677), - [sym_rune_literal] = ACTIONS(2677), - [sym_pseudo_compile_time_identifier] = ACTIONS(2677), - [anon_sym_shared] = ACTIONS(2677), - [anon_sym_map_LBRACK] = ACTIONS(2677), - [anon_sym_chan] = ACTIONS(2677), - [anon_sym_thread] = ACTIONS(2677), - [anon_sym_atomic] = ACTIONS(2677), - [anon_sym_assert] = ACTIONS(2677), - [anon_sym_defer] = ACTIONS(2677), - [anon_sym_goto] = ACTIONS(2677), - [anon_sym_break] = ACTIONS(2677), - [anon_sym_continue] = ACTIONS(2677), - [anon_sym_return] = ACTIONS(2677), - [anon_sym_DOLLARfor] = ACTIONS(2677), - [anon_sym_for] = ACTIONS(2677), - [anon_sym_POUND] = ACTIONS(2677), - [anon_sym_asm] = ACTIONS(2677), - [anon_sym_AT_LBRACK] = ACTIONS(2677), - [sym___double_quote] = ACTIONS(2677), - [sym___single_quote] = ACTIONS(2677), - [sym___c_double_quote] = ACTIONS(2677), - [sym___c_single_quote] = ACTIONS(2677), - [sym___r_double_quote] = ACTIONS(2677), - [sym___r_single_quote] = ACTIONS(2677), + [anon_sym_DOT] = ACTIONS(2688), + [anon_sym_as] = ACTIONS(2688), + [anon_sym_LBRACE] = ACTIONS(2688), + [anon_sym_COMMA] = ACTIONS(2688), + [anon_sym_const] = ACTIONS(2688), + [anon_sym_LPAREN] = ACTIONS(2688), + [anon_sym_EQ] = ACTIONS(2688), + [anon_sym___global] = ACTIONS(2688), + [anon_sym_type] = ACTIONS(2688), + [anon_sym_PIPE] = ACTIONS(2688), + [anon_sym_fn] = ACTIONS(2688), + [anon_sym_PLUS] = ACTIONS(2688), + [anon_sym_DASH] = ACTIONS(2688), + [anon_sym_STAR] = ACTIONS(2688), + [anon_sym_SLASH] = ACTIONS(2688), + [anon_sym_PERCENT] = ACTIONS(2688), + [anon_sym_LT] = ACTIONS(2688), + [anon_sym_GT] = ACTIONS(2688), + [anon_sym_EQ_EQ] = ACTIONS(2688), + [anon_sym_BANG_EQ] = ACTIONS(2688), + [anon_sym_LT_EQ] = ACTIONS(2688), + [anon_sym_GT_EQ] = ACTIONS(2688), + [anon_sym_LBRACK] = ACTIONS(2686), + [anon_sym_struct] = ACTIONS(2688), + [anon_sym_union] = ACTIONS(2688), + [anon_sym_pub] = ACTIONS(2688), + [anon_sym_mut] = ACTIONS(2688), + [anon_sym_enum] = ACTIONS(2688), + [anon_sym_interface] = ACTIONS(2688), + [anon_sym_PLUS_PLUS] = ACTIONS(2688), + [anon_sym_DASH_DASH] = ACTIONS(2688), + [anon_sym_QMARK] = ACTIONS(2688), + [anon_sym_BANG] = ACTIONS(2688), + [anon_sym_go] = ACTIONS(2688), + [anon_sym_spawn] = ACTIONS(2688), + [anon_sym_json_DOTdecode] = ACTIONS(2688), + [anon_sym_LBRACK2] = ACTIONS(2688), + [anon_sym_TILDE] = ACTIONS(2688), + [anon_sym_CARET] = ACTIONS(2688), + [anon_sym_AMP] = ACTIONS(2688), + [anon_sym_LT_DASH] = ACTIONS(2688), + [anon_sym_LT_LT] = ACTIONS(2688), + [anon_sym_GT_GT] = ACTIONS(2688), + [anon_sym_GT_GT_GT] = ACTIONS(2688), + [anon_sym_AMP_CARET] = ACTIONS(2688), + [anon_sym_AMP_AMP] = ACTIONS(2688), + [anon_sym_PIPE_PIPE] = ACTIONS(2688), + [anon_sym_or] = ACTIONS(2688), + [sym_none] = ACTIONS(2688), + [sym_true] = ACTIONS(2688), + [sym_false] = ACTIONS(2688), + [sym_nil] = ACTIONS(2688), + [anon_sym_QMARK_DOT] = ACTIONS(2688), + [anon_sym_POUND_LBRACK] = ACTIONS(2688), + [anon_sym_if] = ACTIONS(2688), + [anon_sym_DOLLARif] = ACTIONS(2688), + [anon_sym_is] = ACTIONS(2688), + [anon_sym_BANGis] = ACTIONS(2688), + [anon_sym_in] = ACTIONS(2688), + [anon_sym_BANGin] = ACTIONS(2688), + [anon_sym_match] = ACTIONS(2688), + [anon_sym_select] = ACTIONS(2688), + [anon_sym_STAR_EQ] = ACTIONS(2688), + [anon_sym_SLASH_EQ] = ACTIONS(2688), + [anon_sym_PERCENT_EQ] = ACTIONS(2688), + [anon_sym_LT_LT_EQ] = ACTIONS(2688), + [anon_sym_GT_GT_EQ] = ACTIONS(2688), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(2688), + [anon_sym_AMP_EQ] = ACTIONS(2688), + [anon_sym_AMP_CARET_EQ] = ACTIONS(2688), + [anon_sym_PLUS_EQ] = ACTIONS(2688), + [anon_sym_DASH_EQ] = ACTIONS(2688), + [anon_sym_PIPE_EQ] = ACTIONS(2688), + [anon_sym_CARET_EQ] = ACTIONS(2688), + [anon_sym_COLON_EQ] = ACTIONS(2688), + [anon_sym_lock] = ACTIONS(2688), + [anon_sym_rlock] = ACTIONS(2688), + [anon_sym_unsafe] = ACTIONS(2688), + [anon_sym_sql] = ACTIONS(2688), + [sym_int_literal] = ACTIONS(2688), + [sym_float_literal] = ACTIONS(2688), + [sym_rune_literal] = ACTIONS(2688), + [sym_pseudo_compile_time_identifier] = ACTIONS(2688), + [anon_sym_shared] = ACTIONS(2688), + [anon_sym_map_LBRACK] = ACTIONS(2688), + [anon_sym_chan] = ACTIONS(2688), + [anon_sym_thread] = ACTIONS(2688), + [anon_sym_atomic] = ACTIONS(2688), + [anon_sym_assert] = ACTIONS(2688), + [anon_sym_defer] = ACTIONS(2688), + [anon_sym_goto] = ACTIONS(2688), + [anon_sym_break] = ACTIONS(2688), + [anon_sym_continue] = ACTIONS(2688), + [anon_sym_return] = ACTIONS(2688), + [anon_sym_DOLLARfor] = ACTIONS(2688), + [anon_sym_for] = ACTIONS(2688), + [anon_sym_POUND] = ACTIONS(2688), + [anon_sym_asm] = ACTIONS(2688), + [anon_sym_AT_LBRACK] = ACTIONS(2688), + [sym___double_quote] = ACTIONS(2688), + [sym___single_quote] = ACTIONS(2688), + [sym___c_double_quote] = ACTIONS(2688), + [sym___c_single_quote] = ACTIONS(2688), + [sym___r_double_quote] = ACTIONS(2688), + [sym___r_single_quote] = ACTIONS(2688), }, [416] = { [sym_line_comment] = STATE(416), [sym_block_comment] = STATE(416), - [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(2690), + [sym_identifier] = ACTIONS(2692), + [anon_sym_LF] = ACTIONS(2692), + [anon_sym_CR] = ACTIONS(2692), + [anon_sym_CR_LF] = ACTIONS(2692), [anon_sym_SLASH_SLASH] = ACTIONS(497), [anon_sym_SLASH_STAR] = ACTIONS(499), - [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_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), + [anon_sym_DOT] = ACTIONS(2692), + [anon_sym_as] = ACTIONS(2692), + [anon_sym_LBRACE] = ACTIONS(2692), + [anon_sym_COMMA] = ACTIONS(2692), + [anon_sym_const] = ACTIONS(2692), + [anon_sym_LPAREN] = ACTIONS(2692), + [anon_sym_EQ] = ACTIONS(2692), + [anon_sym___global] = ACTIONS(2692), + [anon_sym_type] = ACTIONS(2692), + [anon_sym_PIPE] = ACTIONS(2692), + [anon_sym_fn] = ACTIONS(2692), + [anon_sym_PLUS] = ACTIONS(2692), + [anon_sym_DASH] = ACTIONS(2692), + [anon_sym_STAR] = ACTIONS(2692), + [anon_sym_SLASH] = ACTIONS(2692), + [anon_sym_PERCENT] = ACTIONS(2692), + [anon_sym_LT] = ACTIONS(2692), + [anon_sym_GT] = ACTIONS(2692), + [anon_sym_EQ_EQ] = ACTIONS(2692), + [anon_sym_BANG_EQ] = ACTIONS(2692), + [anon_sym_LT_EQ] = ACTIONS(2692), + [anon_sym_GT_EQ] = ACTIONS(2692), + [anon_sym_LBRACK] = ACTIONS(2690), + [anon_sym_struct] = ACTIONS(2692), + [anon_sym_union] = ACTIONS(2692), + [anon_sym_pub] = ACTIONS(2692), + [anon_sym_mut] = ACTIONS(2692), + [anon_sym_enum] = ACTIONS(2692), + [anon_sym_interface] = ACTIONS(2692), + [anon_sym_PLUS_PLUS] = ACTIONS(2692), + [anon_sym_DASH_DASH] = ACTIONS(2692), + [anon_sym_QMARK] = ACTIONS(2692), + [anon_sym_BANG] = ACTIONS(2692), + [anon_sym_go] = ACTIONS(2692), + [anon_sym_spawn] = ACTIONS(2692), + [anon_sym_json_DOTdecode] = ACTIONS(2692), + [anon_sym_LBRACK2] = ACTIONS(2692), + [anon_sym_TILDE] = ACTIONS(2692), + [anon_sym_CARET] = ACTIONS(2692), + [anon_sym_AMP] = ACTIONS(2692), + [anon_sym_LT_DASH] = ACTIONS(2692), + [anon_sym_LT_LT] = ACTIONS(2692), + [anon_sym_GT_GT] = ACTIONS(2692), + [anon_sym_GT_GT_GT] = ACTIONS(2692), + [anon_sym_AMP_CARET] = ACTIONS(2692), + [anon_sym_AMP_AMP] = ACTIONS(2692), + [anon_sym_PIPE_PIPE] = ACTIONS(2692), + [anon_sym_or] = ACTIONS(2692), + [sym_none] = ACTIONS(2692), + [sym_true] = ACTIONS(2692), + [sym_false] = ACTIONS(2692), + [sym_nil] = ACTIONS(2692), + [anon_sym_QMARK_DOT] = ACTIONS(2692), + [anon_sym_POUND_LBRACK] = ACTIONS(2692), + [anon_sym_if] = ACTIONS(2692), + [anon_sym_DOLLARif] = ACTIONS(2692), + [anon_sym_is] = ACTIONS(2692), + [anon_sym_BANGis] = ACTIONS(2692), + [anon_sym_in] = ACTIONS(2692), + [anon_sym_BANGin] = ACTIONS(2692), + [anon_sym_match] = ACTIONS(2692), + [anon_sym_select] = ACTIONS(2692), + [anon_sym_STAR_EQ] = ACTIONS(2692), + [anon_sym_SLASH_EQ] = ACTIONS(2692), + [anon_sym_PERCENT_EQ] = ACTIONS(2692), + [anon_sym_LT_LT_EQ] = ACTIONS(2692), + [anon_sym_GT_GT_EQ] = ACTIONS(2692), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(2692), + [anon_sym_AMP_EQ] = ACTIONS(2692), + [anon_sym_AMP_CARET_EQ] = ACTIONS(2692), + [anon_sym_PLUS_EQ] = ACTIONS(2692), + [anon_sym_DASH_EQ] = ACTIONS(2692), + [anon_sym_PIPE_EQ] = ACTIONS(2692), + [anon_sym_CARET_EQ] = ACTIONS(2692), + [anon_sym_COLON_EQ] = ACTIONS(2692), + [anon_sym_lock] = ACTIONS(2692), + [anon_sym_rlock] = ACTIONS(2692), + [anon_sym_unsafe] = ACTIONS(2692), + [anon_sym_sql] = ACTIONS(2692), + [sym_int_literal] = ACTIONS(2692), + [sym_float_literal] = ACTIONS(2692), + [sym_rune_literal] = ACTIONS(2692), + [sym_pseudo_compile_time_identifier] = ACTIONS(2692), + [anon_sym_shared] = ACTIONS(2692), + [anon_sym_map_LBRACK] = ACTIONS(2692), + [anon_sym_chan] = ACTIONS(2692), + [anon_sym_thread] = ACTIONS(2692), + [anon_sym_atomic] = ACTIONS(2692), + [anon_sym_assert] = ACTIONS(2692), + [anon_sym_defer] = ACTIONS(2692), + [anon_sym_goto] = ACTIONS(2692), + [anon_sym_break] = ACTIONS(2692), + [anon_sym_continue] = ACTIONS(2692), + [anon_sym_return] = ACTIONS(2692), + [anon_sym_DOLLARfor] = ACTIONS(2692), + [anon_sym_for] = ACTIONS(2692), + [anon_sym_POUND] = ACTIONS(2692), + [anon_sym_asm] = ACTIONS(2692), + [anon_sym_AT_LBRACK] = ACTIONS(2692), + [sym___double_quote] = ACTIONS(2692), + [sym___single_quote] = ACTIONS(2692), + [sym___c_double_quote] = ACTIONS(2692), + [sym___c_single_quote] = ACTIONS(2692), + [sym___r_double_quote] = ACTIONS(2692), + [sym___r_single_quote] = ACTIONS(2692), }, [417] = { [sym_line_comment] = STATE(417), [sym_block_comment] = STATE(417), - [sym__expression] = STATE(1268), - [sym__expression_without_blocks] = STATE(1312), - [sym__expression_with_blocks] = STATE(1312), - [sym_inc_expression] = STATE(1313), - [sym_dec_expression] = STATE(1313), - [sym_or_block_expression] = STATE(1313), - [sym_option_propagation_expression] = STATE(1313), - [sym_result_propagation_expression] = STATE(1313), - [sym_anon_struct_value_expression] = STATE(1314), - [sym_go_expression] = STATE(1313), - [sym_spawn_expression] = STATE(1313), - [sym_parenthesized_expression] = STATE(1313), - [sym_call_expression] = STATE(1313), - [sym_type_initializer] = STATE(1314), - [sym_function_literal] = STATE(1313), - [sym_reference_expression] = STATE(1394), - [sym_type_reference_expression] = STATE(3541), - [sym_unary_expression] = STATE(1313), - [sym_receive_expression] = STATE(1313), - [sym_binary_expression] = STATE(1313), - [sym_as_type_cast_expression] = STATE(1313), - [sym__max_group] = STATE(1313), - [sym_literal] = STATE(1308), - [sym_map_init_expression] = STATE(1314), - [sym_array_creation] = STATE(1313), - [sym_fixed_array_creation] = STATE(1313), - [sym_selector_expression] = STATE(1393), - [sym_index_expression] = STATE(1313), - [sym_slice_expression] = STATE(1313), - [sym_if_expression] = STATE(1314), - [sym_compile_time_if_expression] = STATE(1314), - [sym_is_expression] = STATE(1313), - [sym_in_expression] = STATE(1313), - [sym_enum_fetch] = STATE(1313), - [sym_match_expression] = STATE(1314), - [sym_select_expression] = STATE(1314), - [sym_lock_expression] = STATE(1314), - [sym_unsafe_expression] = STATE(1314), - [sym_sql_expression] = STATE(1314), - [sym_c_string_literal] = STATE(1286), - [sym_raw_string_literal] = STATE(1286), - [sym_interpreted_string_literal] = STATE(1286), - [sym_mutability_modifiers] = STATE(699), - [sym_plain_type] = STATE(4192), - [sym__plain_type_without_special] = STATE(2302), - [sym_anon_struct_type] = STATE(2303), - [sym_multi_return_type] = STATE(2302), - [sym_result_type] = STATE(2302), - [sym_option_type] = STATE(2302), - [sym_qualified_type] = STATE(3541), - [sym_fixed_array_type] = STATE(2303), - [sym_array_type] = STATE(2303), - [sym_pointer_type] = STATE(2303), - [sym_wrong_pointer_type] = STATE(2303), - [sym_map_type] = STATE(2303), - [sym_channel_type] = STATE(2303), - [sym_shared_type] = STATE(2303), - [sym_thread_type] = STATE(2303), - [sym_atomic_type] = STATE(2303), - [sym_generic_type] = STATE(2303), - [sym_function_type] = STATE(2303), - [aux_sym__array_repeat1] = STATE(432), - [sym_identifier] = ACTIONS(1354), - [anon_sym_SLASH_SLASH] = ACTIONS(3), - [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1356), - [anon_sym_LBRACE] = ACTIONS(1358), - [anon_sym_LPAREN] = ACTIONS(1360), - [anon_sym_fn] = ACTIONS(1362), - [anon_sym_PLUS] = ACTIONS(1364), - [anon_sym_DASH] = ACTIONS(1364), - [anon_sym_STAR] = ACTIONS(1366), - [anon_sym_RBRACK] = ACTIONS(2683), - [anon_sym_struct] = ACTIONS(1370), - [anon_sym_mut] = ACTIONS(41), - [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(1372), - [anon_sym_go] = ACTIONS(1374), - [anon_sym_spawn] = ACTIONS(1376), - [anon_sym_json_DOTdecode] = ACTIONS(1378), - [anon_sym_LBRACK2] = ACTIONS(1380), - [anon_sym_TILDE] = ACTIONS(1364), - [anon_sym_CARET] = ACTIONS(1364), - [anon_sym_AMP] = ACTIONS(1382), - [anon_sym_LT_DASH] = ACTIONS(1384), - [sym_none] = ACTIONS(1386), - [sym_true] = ACTIONS(1386), - [sym_false] = ACTIONS(1386), - [sym_nil] = ACTIONS(1386), - [anon_sym_if] = ACTIONS(1877), - [anon_sym_DOLLARif] = ACTIONS(1390), - [anon_sym_match] = ACTIONS(1392), - [anon_sym_select] = ACTIONS(1394), - [anon_sym_lock] = ACTIONS(1396), - [anon_sym_rlock] = ACTIONS(1396), - [anon_sym_unsafe] = ACTIONS(1883), - [anon_sym_sql] = ACTIONS(1400), - [sym_int_literal] = ACTIONS(1402), - [sym_float_literal] = ACTIONS(1404), - [sym_rune_literal] = ACTIONS(1404), - [sym_pseudo_compile_time_identifier] = ACTIONS(1406), - [anon_sym_shared] = ACTIONS(83), - [anon_sym_map_LBRACK] = ACTIONS(85), - [anon_sym_chan] = ACTIONS(87), - [anon_sym_thread] = ACTIONS(89), - [anon_sym_atomic] = ACTIONS(91), - [sym___double_quote] = ACTIONS(1408), - [sym___single_quote] = ACTIONS(1410), - [sym___c_double_quote] = ACTIONS(1412), - [sym___c_single_quote] = ACTIONS(1414), - [sym___r_double_quote] = ACTIONS(1416), - [sym___r_single_quote] = ACTIONS(1418), + [ts_builtin_sym_end] = ACTIONS(2694), + [sym_identifier] = ACTIONS(2696), + [anon_sym_LF] = ACTIONS(2696), + [anon_sym_CR] = ACTIONS(2696), + [anon_sym_CR_LF] = ACTIONS(2696), + [anon_sym_SLASH_SLASH] = ACTIONS(497), + [anon_sym_SLASH_STAR] = ACTIONS(499), + [anon_sym_DOT] = ACTIONS(2696), + [anon_sym_as] = ACTIONS(2696), + [anon_sym_LBRACE] = ACTIONS(2696), + [anon_sym_COMMA] = ACTIONS(2696), + [anon_sym_const] = ACTIONS(2696), + [anon_sym_LPAREN] = ACTIONS(2696), + [anon_sym_EQ] = ACTIONS(2696), + [anon_sym___global] = ACTIONS(2696), + [anon_sym_type] = ACTIONS(2696), + [anon_sym_PIPE] = ACTIONS(2696), + [anon_sym_fn] = ACTIONS(2696), + [anon_sym_PLUS] = ACTIONS(2696), + [anon_sym_DASH] = ACTIONS(2696), + [anon_sym_STAR] = ACTIONS(2696), + [anon_sym_SLASH] = ACTIONS(2696), + [anon_sym_PERCENT] = ACTIONS(2696), + [anon_sym_LT] = ACTIONS(2696), + [anon_sym_GT] = ACTIONS(2696), + [anon_sym_EQ_EQ] = ACTIONS(2696), + [anon_sym_BANG_EQ] = ACTIONS(2696), + [anon_sym_LT_EQ] = ACTIONS(2696), + [anon_sym_GT_EQ] = ACTIONS(2696), + [anon_sym_LBRACK] = ACTIONS(2694), + [anon_sym_struct] = ACTIONS(2696), + [anon_sym_union] = ACTIONS(2696), + [anon_sym_pub] = ACTIONS(2696), + [anon_sym_mut] = ACTIONS(2696), + [anon_sym_enum] = ACTIONS(2696), + [anon_sym_interface] = ACTIONS(2696), + [anon_sym_PLUS_PLUS] = ACTIONS(2696), + [anon_sym_DASH_DASH] = ACTIONS(2696), + [anon_sym_QMARK] = ACTIONS(2696), + [anon_sym_BANG] = ACTIONS(2696), + [anon_sym_go] = ACTIONS(2696), + [anon_sym_spawn] = ACTIONS(2696), + [anon_sym_json_DOTdecode] = ACTIONS(2696), + [anon_sym_LBRACK2] = ACTIONS(2696), + [anon_sym_TILDE] = ACTIONS(2696), + [anon_sym_CARET] = ACTIONS(2696), + [anon_sym_AMP] = ACTIONS(2696), + [anon_sym_LT_DASH] = ACTIONS(2696), + [anon_sym_LT_LT] = ACTIONS(2696), + [anon_sym_GT_GT] = ACTIONS(2696), + [anon_sym_GT_GT_GT] = ACTIONS(2696), + [anon_sym_AMP_CARET] = ACTIONS(2696), + [anon_sym_AMP_AMP] = ACTIONS(2696), + [anon_sym_PIPE_PIPE] = ACTIONS(2696), + [anon_sym_or] = ACTIONS(2696), + [sym_none] = ACTIONS(2696), + [sym_true] = ACTIONS(2696), + [sym_false] = ACTIONS(2696), + [sym_nil] = ACTIONS(2696), + [anon_sym_QMARK_DOT] = ACTIONS(2696), + [anon_sym_POUND_LBRACK] = ACTIONS(2696), + [anon_sym_if] = ACTIONS(2696), + [anon_sym_DOLLARif] = ACTIONS(2696), + [anon_sym_is] = ACTIONS(2696), + [anon_sym_BANGis] = ACTIONS(2696), + [anon_sym_in] = ACTIONS(2696), + [anon_sym_BANGin] = ACTIONS(2696), + [anon_sym_match] = ACTIONS(2696), + [anon_sym_select] = ACTIONS(2696), + [anon_sym_STAR_EQ] = ACTIONS(2696), + [anon_sym_SLASH_EQ] = ACTIONS(2696), + [anon_sym_PERCENT_EQ] = ACTIONS(2696), + [anon_sym_LT_LT_EQ] = ACTIONS(2696), + [anon_sym_GT_GT_EQ] = ACTIONS(2696), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(2696), + [anon_sym_AMP_EQ] = ACTIONS(2696), + [anon_sym_AMP_CARET_EQ] = ACTIONS(2696), + [anon_sym_PLUS_EQ] = ACTIONS(2696), + [anon_sym_DASH_EQ] = ACTIONS(2696), + [anon_sym_PIPE_EQ] = ACTIONS(2696), + [anon_sym_CARET_EQ] = ACTIONS(2696), + [anon_sym_COLON_EQ] = ACTIONS(2696), + [anon_sym_lock] = ACTIONS(2696), + [anon_sym_rlock] = ACTIONS(2696), + [anon_sym_unsafe] = ACTIONS(2696), + [anon_sym_sql] = ACTIONS(2696), + [sym_int_literal] = ACTIONS(2696), + [sym_float_literal] = ACTIONS(2696), + [sym_rune_literal] = ACTIONS(2696), + [sym_pseudo_compile_time_identifier] = ACTIONS(2696), + [anon_sym_shared] = ACTIONS(2696), + [anon_sym_map_LBRACK] = ACTIONS(2696), + [anon_sym_chan] = ACTIONS(2696), + [anon_sym_thread] = ACTIONS(2696), + [anon_sym_atomic] = ACTIONS(2696), + [anon_sym_assert] = ACTIONS(2696), + [anon_sym_defer] = ACTIONS(2696), + [anon_sym_goto] = ACTIONS(2696), + [anon_sym_break] = ACTIONS(2696), + [anon_sym_continue] = ACTIONS(2696), + [anon_sym_return] = ACTIONS(2696), + [anon_sym_DOLLARfor] = ACTIONS(2696), + [anon_sym_for] = ACTIONS(2696), + [anon_sym_POUND] = ACTIONS(2696), + [anon_sym_asm] = ACTIONS(2696), + [anon_sym_AT_LBRACK] = ACTIONS(2696), + [sym___double_quote] = ACTIONS(2696), + [sym___single_quote] = ACTIONS(2696), + [sym___c_double_quote] = ACTIONS(2696), + [sym___c_single_quote] = ACTIONS(2696), + [sym___r_double_quote] = ACTIONS(2696), + [sym___r_single_quote] = ACTIONS(2696), }, [418] = { [sym_line_comment] = STATE(418), [sym_block_comment] = STATE(418), - [ts_builtin_sym_end] = ACTIONS(1953), - [sym_identifier] = ACTIONS(1951), - [anon_sym_LF] = ACTIONS(1951), - [anon_sym_CR] = ACTIONS(1951), - [anon_sym_CR_LF] = ACTIONS(1951), + [ts_builtin_sym_end] = ACTIONS(2698), + [sym_identifier] = ACTIONS(2700), + [anon_sym_LF] = ACTIONS(2700), + [anon_sym_CR] = ACTIONS(2700), + [anon_sym_CR_LF] = ACTIONS(2700), [anon_sym_SLASH_SLASH] = ACTIONS(497), [anon_sym_SLASH_STAR] = ACTIONS(499), - [anon_sym_DOT] = ACTIONS(1951), - [anon_sym_as] = ACTIONS(1951), - [anon_sym_LBRACE] = ACTIONS(1951), - [anon_sym_COMMA] = ACTIONS(1951), - [anon_sym_const] = ACTIONS(1951), - [anon_sym_LPAREN] = ACTIONS(1951), - [anon_sym_EQ] = ACTIONS(1951), - [anon_sym___global] = ACTIONS(1951), - [anon_sym_type] = ACTIONS(1951), - [anon_sym_PIPE] = ACTIONS(1951), - [anon_sym_fn] = ACTIONS(1951), - [anon_sym_PLUS] = ACTIONS(1951), - [anon_sym_DASH] = ACTIONS(1951), - [anon_sym_STAR] = ACTIONS(1951), - [anon_sym_SLASH] = ACTIONS(1951), - [anon_sym_PERCENT] = ACTIONS(1951), - [anon_sym_LT] = ACTIONS(1951), - [anon_sym_GT] = ACTIONS(1951), - [anon_sym_EQ_EQ] = ACTIONS(1951), - [anon_sym_BANG_EQ] = ACTIONS(1951), - [anon_sym_LT_EQ] = ACTIONS(1951), - [anon_sym_GT_EQ] = ACTIONS(1951), - [anon_sym_LBRACK] = ACTIONS(1953), - [anon_sym_struct] = ACTIONS(1951), - [anon_sym_union] = ACTIONS(1951), - [anon_sym_pub] = ACTIONS(1951), - [anon_sym_mut] = ACTIONS(1951), - [anon_sym_enum] = ACTIONS(1951), - [anon_sym_interface] = ACTIONS(1951), - [anon_sym_PLUS_PLUS] = ACTIONS(1951), - [anon_sym_DASH_DASH] = ACTIONS(1951), - [anon_sym_QMARK] = ACTIONS(1951), - [anon_sym_BANG] = ACTIONS(1951), - [anon_sym_go] = ACTIONS(1951), - [anon_sym_spawn] = ACTIONS(1951), - [anon_sym_json_DOTdecode] = ACTIONS(1951), - [anon_sym_LBRACK2] = ACTIONS(1951), - [anon_sym_TILDE] = ACTIONS(1951), - [anon_sym_CARET] = ACTIONS(1951), - [anon_sym_AMP] = ACTIONS(1951), - [anon_sym_LT_DASH] = ACTIONS(1951), - [anon_sym_LT_LT] = ACTIONS(1951), - [anon_sym_GT_GT] = ACTIONS(1951), - [anon_sym_GT_GT_GT] = ACTIONS(1951), - [anon_sym_AMP_CARET] = ACTIONS(1951), - [anon_sym_AMP_AMP] = ACTIONS(1951), - [anon_sym_PIPE_PIPE] = ACTIONS(1951), - [anon_sym_or] = ACTIONS(1951), - [sym_none] = ACTIONS(1951), - [sym_true] = ACTIONS(1951), - [sym_false] = ACTIONS(1951), - [sym_nil] = ACTIONS(1951), - [anon_sym_QMARK_DOT] = ACTIONS(1951), - [anon_sym_POUND_LBRACK] = ACTIONS(1951), - [anon_sym_if] = ACTIONS(1951), - [anon_sym_DOLLARif] = ACTIONS(1951), - [anon_sym_is] = ACTIONS(1951), - [anon_sym_BANGis] = ACTIONS(1951), - [anon_sym_in] = ACTIONS(1951), - [anon_sym_BANGin] = ACTIONS(1951), - [anon_sym_match] = ACTIONS(1951), - [anon_sym_select] = ACTIONS(1951), - [anon_sym_STAR_EQ] = ACTIONS(1951), - [anon_sym_SLASH_EQ] = ACTIONS(1951), - [anon_sym_PERCENT_EQ] = ACTIONS(1951), - [anon_sym_LT_LT_EQ] = ACTIONS(1951), - [anon_sym_GT_GT_EQ] = ACTIONS(1951), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(1951), - [anon_sym_AMP_EQ] = ACTIONS(1951), - [anon_sym_AMP_CARET_EQ] = ACTIONS(1951), - [anon_sym_PLUS_EQ] = ACTIONS(1951), - [anon_sym_DASH_EQ] = ACTIONS(1951), - [anon_sym_PIPE_EQ] = ACTIONS(1951), - [anon_sym_CARET_EQ] = ACTIONS(1951), - [anon_sym_COLON_EQ] = ACTIONS(1951), - [anon_sym_lock] = ACTIONS(1951), - [anon_sym_rlock] = ACTIONS(1951), - [anon_sym_unsafe] = ACTIONS(1951), - [anon_sym_sql] = ACTIONS(1951), - [sym_int_literal] = ACTIONS(1951), - [sym_float_literal] = ACTIONS(1951), - [sym_rune_literal] = ACTIONS(1951), - [sym_pseudo_compile_time_identifier] = ACTIONS(1951), - [anon_sym_shared] = ACTIONS(1951), - [anon_sym_map_LBRACK] = ACTIONS(1951), - [anon_sym_chan] = ACTIONS(1951), - [anon_sym_thread] = ACTIONS(1951), - [anon_sym_atomic] = ACTIONS(1951), - [anon_sym_assert] = ACTIONS(1951), - [anon_sym_defer] = ACTIONS(1951), - [anon_sym_goto] = ACTIONS(1951), - [anon_sym_break] = ACTIONS(1951), - [anon_sym_continue] = ACTIONS(1951), - [anon_sym_return] = ACTIONS(1951), - [anon_sym_DOLLARfor] = ACTIONS(1951), - [anon_sym_for] = ACTIONS(1951), - [anon_sym_POUND] = ACTIONS(1951), - [anon_sym_asm] = ACTIONS(1951), - [anon_sym_AT_LBRACK] = ACTIONS(1951), - [sym___double_quote] = ACTIONS(1951), - [sym___single_quote] = ACTIONS(1951), - [sym___c_double_quote] = ACTIONS(1951), - [sym___c_single_quote] = ACTIONS(1951), - [sym___r_double_quote] = ACTIONS(1951), - [sym___r_single_quote] = ACTIONS(1951), + [anon_sym_DOT] = ACTIONS(2700), + [anon_sym_as] = ACTIONS(2700), + [anon_sym_LBRACE] = ACTIONS(2700), + [anon_sym_COMMA] = ACTIONS(2700), + [anon_sym_const] = ACTIONS(2700), + [anon_sym_LPAREN] = ACTIONS(2700), + [anon_sym_EQ] = ACTIONS(2700), + [anon_sym___global] = ACTIONS(2700), + [anon_sym_type] = ACTIONS(2700), + [anon_sym_PIPE] = ACTIONS(2700), + [anon_sym_fn] = ACTIONS(2700), + [anon_sym_PLUS] = ACTIONS(2700), + [anon_sym_DASH] = ACTIONS(2700), + [anon_sym_STAR] = ACTIONS(2700), + [anon_sym_SLASH] = ACTIONS(2700), + [anon_sym_PERCENT] = ACTIONS(2700), + [anon_sym_LT] = ACTIONS(2700), + [anon_sym_GT] = ACTIONS(2700), + [anon_sym_EQ_EQ] = ACTIONS(2700), + [anon_sym_BANG_EQ] = ACTIONS(2700), + [anon_sym_LT_EQ] = ACTIONS(2700), + [anon_sym_GT_EQ] = ACTIONS(2700), + [anon_sym_LBRACK] = ACTIONS(2698), + [anon_sym_struct] = ACTIONS(2700), + [anon_sym_union] = ACTIONS(2700), + [anon_sym_pub] = ACTIONS(2700), + [anon_sym_mut] = ACTIONS(2700), + [anon_sym_enum] = ACTIONS(2700), + [anon_sym_interface] = ACTIONS(2700), + [anon_sym_PLUS_PLUS] = ACTIONS(2700), + [anon_sym_DASH_DASH] = ACTIONS(2700), + [anon_sym_QMARK] = ACTIONS(2700), + [anon_sym_BANG] = ACTIONS(2700), + [anon_sym_go] = ACTIONS(2700), + [anon_sym_spawn] = ACTIONS(2700), + [anon_sym_json_DOTdecode] = ACTIONS(2700), + [anon_sym_LBRACK2] = ACTIONS(2700), + [anon_sym_TILDE] = ACTIONS(2700), + [anon_sym_CARET] = ACTIONS(2700), + [anon_sym_AMP] = ACTIONS(2700), + [anon_sym_LT_DASH] = ACTIONS(2700), + [anon_sym_LT_LT] = ACTIONS(2700), + [anon_sym_GT_GT] = ACTIONS(2700), + [anon_sym_GT_GT_GT] = ACTIONS(2700), + [anon_sym_AMP_CARET] = ACTIONS(2700), + [anon_sym_AMP_AMP] = ACTIONS(2700), + [anon_sym_PIPE_PIPE] = ACTIONS(2700), + [anon_sym_or] = ACTIONS(2700), + [sym_none] = ACTIONS(2700), + [sym_true] = ACTIONS(2700), + [sym_false] = ACTIONS(2700), + [sym_nil] = ACTIONS(2700), + [anon_sym_QMARK_DOT] = ACTIONS(2700), + [anon_sym_POUND_LBRACK] = ACTIONS(2700), + [anon_sym_if] = ACTIONS(2700), + [anon_sym_DOLLARif] = ACTIONS(2700), + [anon_sym_is] = ACTIONS(2700), + [anon_sym_BANGis] = ACTIONS(2700), + [anon_sym_in] = ACTIONS(2700), + [anon_sym_BANGin] = ACTIONS(2700), + [anon_sym_match] = ACTIONS(2700), + [anon_sym_select] = ACTIONS(2700), + [anon_sym_STAR_EQ] = ACTIONS(2700), + [anon_sym_SLASH_EQ] = ACTIONS(2700), + [anon_sym_PERCENT_EQ] = ACTIONS(2700), + [anon_sym_LT_LT_EQ] = ACTIONS(2700), + [anon_sym_GT_GT_EQ] = ACTIONS(2700), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(2700), + [anon_sym_AMP_EQ] = ACTIONS(2700), + [anon_sym_AMP_CARET_EQ] = ACTIONS(2700), + [anon_sym_PLUS_EQ] = ACTIONS(2700), + [anon_sym_DASH_EQ] = ACTIONS(2700), + [anon_sym_PIPE_EQ] = ACTIONS(2700), + [anon_sym_CARET_EQ] = ACTIONS(2700), + [anon_sym_COLON_EQ] = ACTIONS(2700), + [anon_sym_lock] = ACTIONS(2700), + [anon_sym_rlock] = ACTIONS(2700), + [anon_sym_unsafe] = ACTIONS(2700), + [anon_sym_sql] = ACTIONS(2700), + [sym_int_literal] = ACTIONS(2700), + [sym_float_literal] = ACTIONS(2700), + [sym_rune_literal] = ACTIONS(2700), + [sym_pseudo_compile_time_identifier] = ACTIONS(2700), + [anon_sym_shared] = ACTIONS(2700), + [anon_sym_map_LBRACK] = ACTIONS(2700), + [anon_sym_chan] = ACTIONS(2700), + [anon_sym_thread] = ACTIONS(2700), + [anon_sym_atomic] = ACTIONS(2700), + [anon_sym_assert] = ACTIONS(2700), + [anon_sym_defer] = ACTIONS(2700), + [anon_sym_goto] = ACTIONS(2700), + [anon_sym_break] = ACTIONS(2700), + [anon_sym_continue] = ACTIONS(2700), + [anon_sym_return] = ACTIONS(2700), + [anon_sym_DOLLARfor] = ACTIONS(2700), + [anon_sym_for] = ACTIONS(2700), + [anon_sym_POUND] = ACTIONS(2700), + [anon_sym_asm] = ACTIONS(2700), + [anon_sym_AT_LBRACK] = ACTIONS(2700), + [sym___double_quote] = ACTIONS(2700), + [sym___single_quote] = ACTIONS(2700), + [sym___c_double_quote] = ACTIONS(2700), + [sym___c_single_quote] = ACTIONS(2700), + [sym___r_double_quote] = ACTIONS(2700), + [sym___r_single_quote] = ACTIONS(2700), }, [419] = { [sym_line_comment] = STATE(419), [sym_block_comment] = STATE(419), - [sym__expression] = STATE(2617), - [sym__expression_without_blocks] = STATE(2300), - [sym__expression_with_blocks] = STATE(2300), - [sym_inc_expression] = STATE(2307), - [sym_dec_expression] = STATE(2307), - [sym_or_block_expression] = STATE(2307), - [sym_option_propagation_expression] = STATE(2307), - [sym_result_propagation_expression] = STATE(2307), - [sym_anon_struct_value_expression] = STATE(2380), - [sym_go_expression] = STATE(2307), - [sym_spawn_expression] = STATE(2307), - [sym_parenthesized_expression] = STATE(2307), - [sym_call_expression] = STATE(2307), - [sym_type_initializer] = STATE(2380), - [sym_function_literal] = STATE(2307), - [sym_reference_expression] = STATE(2311), - [sym_type_reference_expression] = STATE(3541), - [sym_unary_expression] = STATE(2307), - [sym_receive_expression] = STATE(2307), - [sym_binary_expression] = STATE(2307), - [sym_as_type_cast_expression] = STATE(2307), - [sym__max_group] = STATE(2307), - [sym_literal] = STATE(2292), - [sym_map_init_expression] = STATE(2380), - [sym_array_creation] = STATE(2307), - [sym_fixed_array_creation] = STATE(2307), - [sym_selector_expression] = STATE(2307), - [sym_index_expression] = STATE(2307), - [sym_slice_expression] = STATE(2307), - [sym_if_expression] = STATE(2380), - [sym_compile_time_if_expression] = STATE(2380), - [sym_is_expression] = STATE(2307), - [sym_in_expression] = STATE(2307), - [sym_enum_fetch] = STATE(2307), - [sym_match_expression] = STATE(2380), - [sym_select_expression] = STATE(2380), - [sym_lock_expression] = STATE(2380), - [sym_unsafe_expression] = STATE(2380), - [sym_sql_expression] = STATE(2380), - [sym_c_string_literal] = STATE(2308), - [sym_raw_string_literal] = STATE(2308), - [sym_interpreted_string_literal] = STATE(2308), - [sym_mutability_modifiers] = STATE(939), - [sym_plain_type] = STATE(3557), - [sym__plain_type_without_special] = STATE(2302), - [sym_anon_struct_type] = STATE(2303), - [sym_multi_return_type] = STATE(2302), - [sym_result_type] = STATE(2302), - [sym_option_type] = STATE(2302), - [sym_qualified_type] = STATE(3541), - [sym_fixed_array_type] = STATE(2303), - [sym_array_type] = STATE(2303), - [sym_pointer_type] = STATE(2303), - [sym_wrong_pointer_type] = STATE(2303), - [sym_map_type] = STATE(2303), - [sym_channel_type] = STATE(2303), - [sym_shared_type] = STATE(2303), - [sym_thread_type] = STATE(2303), - [sym_atomic_type] = STATE(2303), - [sym_generic_type] = STATE(2303), - [sym_function_type] = STATE(2303), - [sym_range] = STATE(4321), - [sym_identifier] = ACTIONS(2135), + [ts_builtin_sym_end] = ACTIONS(2702), + [sym_identifier] = ACTIONS(2704), + [anon_sym_LF] = ACTIONS(2704), + [anon_sym_CR] = ACTIONS(2704), + [anon_sym_CR_LF] = ACTIONS(2704), + [anon_sym_SLASH_SLASH] = ACTIONS(497), + [anon_sym_SLASH_STAR] = ACTIONS(499), + [anon_sym_DOT] = ACTIONS(2704), + [anon_sym_as] = ACTIONS(2704), + [anon_sym_LBRACE] = ACTIONS(2704), + [anon_sym_COMMA] = ACTIONS(2704), + [anon_sym_const] = ACTIONS(2704), + [anon_sym_LPAREN] = ACTIONS(2704), + [anon_sym_EQ] = ACTIONS(2704), + [anon_sym___global] = ACTIONS(2704), + [anon_sym_type] = ACTIONS(2704), + [anon_sym_PIPE] = ACTIONS(2704), + [anon_sym_fn] = ACTIONS(2704), + [anon_sym_PLUS] = ACTIONS(2704), + [anon_sym_DASH] = ACTIONS(2704), + [anon_sym_STAR] = ACTIONS(2704), + [anon_sym_SLASH] = ACTIONS(2704), + [anon_sym_PERCENT] = ACTIONS(2704), + [anon_sym_LT] = ACTIONS(2704), + [anon_sym_GT] = ACTIONS(2704), + [anon_sym_EQ_EQ] = ACTIONS(2704), + [anon_sym_BANG_EQ] = ACTIONS(2704), + [anon_sym_LT_EQ] = ACTIONS(2704), + [anon_sym_GT_EQ] = ACTIONS(2704), + [anon_sym_LBRACK] = ACTIONS(2702), + [anon_sym_struct] = ACTIONS(2704), + [anon_sym_union] = ACTIONS(2704), + [anon_sym_pub] = ACTIONS(2704), + [anon_sym_mut] = ACTIONS(2704), + [anon_sym_enum] = ACTIONS(2704), + [anon_sym_interface] = ACTIONS(2704), + [anon_sym_PLUS_PLUS] = ACTIONS(2704), + [anon_sym_DASH_DASH] = ACTIONS(2704), + [anon_sym_QMARK] = ACTIONS(2704), + [anon_sym_BANG] = ACTIONS(2704), + [anon_sym_go] = ACTIONS(2704), + [anon_sym_spawn] = ACTIONS(2704), + [anon_sym_json_DOTdecode] = ACTIONS(2704), + [anon_sym_LBRACK2] = ACTIONS(2704), + [anon_sym_TILDE] = ACTIONS(2704), + [anon_sym_CARET] = ACTIONS(2704), + [anon_sym_AMP] = ACTIONS(2704), + [anon_sym_LT_DASH] = ACTIONS(2704), + [anon_sym_LT_LT] = ACTIONS(2704), + [anon_sym_GT_GT] = ACTIONS(2704), + [anon_sym_GT_GT_GT] = ACTIONS(2704), + [anon_sym_AMP_CARET] = ACTIONS(2704), + [anon_sym_AMP_AMP] = ACTIONS(2704), + [anon_sym_PIPE_PIPE] = ACTIONS(2704), + [anon_sym_or] = ACTIONS(2704), + [sym_none] = ACTIONS(2704), + [sym_true] = ACTIONS(2704), + [sym_false] = ACTIONS(2704), + [sym_nil] = ACTIONS(2704), + [anon_sym_QMARK_DOT] = ACTIONS(2704), + [anon_sym_POUND_LBRACK] = ACTIONS(2704), + [anon_sym_if] = ACTIONS(2704), + [anon_sym_DOLLARif] = ACTIONS(2704), + [anon_sym_is] = ACTIONS(2704), + [anon_sym_BANGis] = ACTIONS(2704), + [anon_sym_in] = ACTIONS(2704), + [anon_sym_BANGin] = ACTIONS(2704), + [anon_sym_match] = ACTIONS(2704), + [anon_sym_select] = ACTIONS(2704), + [anon_sym_STAR_EQ] = ACTIONS(2704), + [anon_sym_SLASH_EQ] = ACTIONS(2704), + [anon_sym_PERCENT_EQ] = ACTIONS(2704), + [anon_sym_LT_LT_EQ] = ACTIONS(2704), + [anon_sym_GT_GT_EQ] = ACTIONS(2704), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(2704), + [anon_sym_AMP_EQ] = ACTIONS(2704), + [anon_sym_AMP_CARET_EQ] = ACTIONS(2704), + [anon_sym_PLUS_EQ] = ACTIONS(2704), + [anon_sym_DASH_EQ] = ACTIONS(2704), + [anon_sym_PIPE_EQ] = ACTIONS(2704), + [anon_sym_CARET_EQ] = ACTIONS(2704), + [anon_sym_COLON_EQ] = ACTIONS(2704), + [anon_sym_lock] = ACTIONS(2704), + [anon_sym_rlock] = ACTIONS(2704), + [anon_sym_unsafe] = ACTIONS(2704), + [anon_sym_sql] = ACTIONS(2704), + [sym_int_literal] = ACTIONS(2704), + [sym_float_literal] = ACTIONS(2704), + [sym_rune_literal] = ACTIONS(2704), + [sym_pseudo_compile_time_identifier] = ACTIONS(2704), + [anon_sym_shared] = ACTIONS(2704), + [anon_sym_map_LBRACK] = ACTIONS(2704), + [anon_sym_chan] = ACTIONS(2704), + [anon_sym_thread] = ACTIONS(2704), + [anon_sym_atomic] = ACTIONS(2704), + [anon_sym_assert] = ACTIONS(2704), + [anon_sym_defer] = ACTIONS(2704), + [anon_sym_goto] = ACTIONS(2704), + [anon_sym_break] = ACTIONS(2704), + [anon_sym_continue] = ACTIONS(2704), + [anon_sym_return] = ACTIONS(2704), + [anon_sym_DOLLARfor] = ACTIONS(2704), + [anon_sym_for] = ACTIONS(2704), + [anon_sym_POUND] = ACTIONS(2704), + [anon_sym_asm] = ACTIONS(2704), + [anon_sym_AT_LBRACK] = ACTIONS(2704), + [sym___double_quote] = ACTIONS(2704), + [sym___single_quote] = ACTIONS(2704), + [sym___c_double_quote] = ACTIONS(2704), + [sym___c_single_quote] = ACTIONS(2704), + [sym___r_double_quote] = ACTIONS(2704), + [sym___r_single_quote] = ACTIONS(2704), + }, + [420] = { + [sym_line_comment] = STATE(420), + [sym_block_comment] = STATE(420), + [sym__expression] = STATE(2558), + [sym__expression_without_blocks] = STATE(2347), + [sym__expression_with_blocks] = STATE(2347), + [sym_inc_expression] = STATE(2379), + [sym_dec_expression] = STATE(2379), + [sym_or_block_expression] = STATE(2379), + [sym_option_propagation_expression] = STATE(2379), + [sym_result_propagation_expression] = STATE(2379), + [sym_anon_struct_value_expression] = STATE(2378), + [sym_go_expression] = STATE(2379), + [sym_spawn_expression] = STATE(2379), + [sym_parenthesized_expression] = STATE(2379), + [sym_call_expression] = STATE(2379), + [sym_type_initializer] = STATE(2378), + [sym_function_literal] = STATE(2379), + [sym_reference_expression] = STATE(2377), + [sym_type_reference_expression] = STATE(3460), + [sym_unary_expression] = STATE(2379), + [sym_receive_expression] = STATE(2379), + [sym_binary_expression] = STATE(2379), + [sym_as_type_cast_expression] = STATE(2379), + [sym__max_group] = STATE(2379), + [sym_literal] = STATE(2392), + [sym_map_init_expression] = STATE(2378), + [sym_array_creation] = STATE(2379), + [sym_fixed_array_creation] = STATE(2379), + [sym_selector_expression] = STATE(2379), + [sym_index_expression] = STATE(2379), + [sym_slice_expression] = STATE(2379), + [sym_if_expression] = STATE(2378), + [sym_compile_time_if_expression] = STATE(2378), + [sym_is_expression] = STATE(2379), + [sym_in_expression] = STATE(2379), + [sym_enum_fetch] = STATE(2379), + [sym_match_expression] = STATE(2378), + [sym_select_expression] = STATE(2378), + [sym_lock_expression] = STATE(2378), + [sym_unsafe_expression] = STATE(2378), + [sym_sql_expression] = STATE(2378), + [sym_c_string_literal] = STATE(2401), + [sym_raw_string_literal] = STATE(2401), + [sym_interpreted_string_literal] = STATE(2401), + [sym_mutability_modifiers] = STATE(900), + [sym_mutable_expression] = STATE(3813), + [sym_expression_list] = STATE(4458), + [sym_plain_type] = STATE(4160), + [sym__plain_type_without_special] = STATE(2360), + [sym_anon_struct_type] = STATE(2362), + [sym_multi_return_type] = STATE(2360), + [sym_result_type] = STATE(2360), + [sym_option_type] = STATE(2360), + [sym_qualified_type] = STATE(3460), + [sym_fixed_array_type] = STATE(2362), + [sym_array_type] = STATE(2362), + [sym_pointer_type] = STATE(2362), + [sym_wrong_pointer_type] = STATE(2362), + [sym_map_type] = STATE(2362), + [sym_channel_type] = STATE(2362), + [sym_shared_type] = STATE(2362), + [sym_thread_type] = STATE(2362), + [sym_atomic_type] = STATE(2362), + [sym_generic_type] = STATE(2362), + [sym_function_type] = STATE(2362), + [sym_identifier] = ACTIONS(1815), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1428), - [anon_sym_LBRACE] = ACTIONS(1430), - [anon_sym_LPAREN] = ACTIONS(1432), - [anon_sym_fn] = ACTIONS(1434), - [anon_sym_PLUS] = ACTIONS(1436), - [anon_sym_DASH] = ACTIONS(1436), - [anon_sym_STAR] = ACTIONS(2137), - [anon_sym_struct] = ACTIONS(1440), + [anon_sym_DOT] = ACTIONS(1430), + [anon_sym_LBRACE] = ACTIONS(2706), + [anon_sym_LPAREN] = ACTIONS(1434), + [anon_sym_fn] = ACTIONS(1436), + [anon_sym_PLUS] = ACTIONS(1817), + [anon_sym_DASH] = ACTIONS(1817), + [anon_sym_STAR] = ACTIONS(1819), + [anon_sym_struct] = ACTIONS(1442), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(2139), - [anon_sym_go] = ACTIONS(1444), - [anon_sym_spawn] = ACTIONS(1446), - [anon_sym_json_DOTdecode] = ACTIONS(1448), - [anon_sym_LBRACK2] = ACTIONS(1450), - [anon_sym_TILDE] = ACTIONS(1436), - [anon_sym_CARET] = ACTIONS(1436), - [anon_sym_AMP] = ACTIONS(2141), - [anon_sym_LT_DASH] = ACTIONS(1454), - [sym_none] = ACTIONS(1456), - [sym_true] = ACTIONS(1456), - [sym_false] = ACTIONS(1456), - [sym_nil] = ACTIONS(1456), - [anon_sym_if] = ACTIONS(1827), - [anon_sym_DOLLARif] = ACTIONS(1460), - [anon_sym_match] = ACTIONS(1462), - [anon_sym_select] = ACTIONS(1464), - [anon_sym_lock] = ACTIONS(1466), - [anon_sym_rlock] = ACTIONS(1466), - [anon_sym_unsafe] = ACTIONS(1833), - [anon_sym_sql] = ACTIONS(1470), - [sym_int_literal] = ACTIONS(1456), - [sym_float_literal] = ACTIONS(1472), - [sym_rune_literal] = ACTIONS(1472), - [sym_pseudo_compile_time_identifier] = ACTIONS(1474), + [anon_sym_BANG] = ACTIONS(1821), + [anon_sym_go] = ACTIONS(1823), + [anon_sym_spawn] = ACTIONS(1825), + [anon_sym_json_DOTdecode] = ACTIONS(1450), + [anon_sym_LBRACK2] = ACTIONS(1827), + [anon_sym_TILDE] = ACTIONS(1817), + [anon_sym_CARET] = ACTIONS(1817), + [anon_sym_AMP] = ACTIONS(1829), + [anon_sym_LT_DASH] = ACTIONS(1831), + [sym_none] = ACTIONS(1458), + [sym_true] = ACTIONS(1458), + [sym_false] = ACTIONS(1458), + [sym_nil] = ACTIONS(1458), + [anon_sym_if] = ACTIONS(1833), + [anon_sym_DOLLARif] = ACTIONS(1462), + [anon_sym_match] = ACTIONS(1464), + [anon_sym_select] = ACTIONS(1835), + [anon_sym_lock] = ACTIONS(1837), + [anon_sym_rlock] = ACTIONS(1837), + [anon_sym_unsafe] = ACTIONS(1839), + [anon_sym_sql] = ACTIONS(1472), + [sym_int_literal] = ACTIONS(1458), + [sym_float_literal] = ACTIONS(1474), + [sym_rune_literal] = ACTIONS(1474), + [sym_pseudo_compile_time_identifier] = ACTIONS(1476), [anon_sym_shared] = ACTIONS(83), [anon_sym_map_LBRACK] = ACTIONS(85), [anon_sym_chan] = ACTIONS(87), [anon_sym_thread] = ACTIONS(89), [anon_sym_atomic] = ACTIONS(91), - [anon_sym_DOT_DOT] = ACTIONS(1476), - [sym___double_quote] = ACTIONS(1478), - [sym___single_quote] = ACTIONS(1480), - [sym___c_double_quote] = ACTIONS(1482), - [sym___c_single_quote] = ACTIONS(1484), - [sym___r_double_quote] = ACTIONS(1486), - [sym___r_single_quote] = ACTIONS(1488), - }, - [420] = { - [sym_line_comment] = STATE(420), - [sym_block_comment] = STATE(420), - [ts_builtin_sym_end] = ACTIONS(2685), - [sym_identifier] = ACTIONS(2687), - [anon_sym_LF] = ACTIONS(2687), - [anon_sym_CR] = ACTIONS(2687), - [anon_sym_CR_LF] = ACTIONS(2687), - [anon_sym_SLASH_SLASH] = ACTIONS(497), - [anon_sym_SLASH_STAR] = ACTIONS(499), - [anon_sym_DOT] = ACTIONS(2687), - [anon_sym_as] = ACTIONS(2687), - [anon_sym_LBRACE] = ACTIONS(2687), - [anon_sym_COMMA] = ACTIONS(2687), - [anon_sym_const] = ACTIONS(2687), - [anon_sym_LPAREN] = ACTIONS(2687), - [anon_sym_EQ] = ACTIONS(2687), - [anon_sym___global] = ACTIONS(2687), - [anon_sym_type] = ACTIONS(2687), - [anon_sym_PIPE] = ACTIONS(2687), - [anon_sym_fn] = ACTIONS(2687), - [anon_sym_PLUS] = ACTIONS(2687), - [anon_sym_DASH] = ACTIONS(2687), - [anon_sym_STAR] = ACTIONS(2687), - [anon_sym_SLASH] = ACTIONS(2687), - [anon_sym_PERCENT] = ACTIONS(2687), - [anon_sym_LT] = ACTIONS(2687), - [anon_sym_GT] = ACTIONS(2687), - [anon_sym_EQ_EQ] = ACTIONS(2687), - [anon_sym_BANG_EQ] = ACTIONS(2687), - [anon_sym_LT_EQ] = ACTIONS(2687), - [anon_sym_GT_EQ] = ACTIONS(2687), - [anon_sym_LBRACK] = ACTIONS(2685), - [anon_sym_struct] = ACTIONS(2687), - [anon_sym_union] = ACTIONS(2687), - [anon_sym_pub] = ACTIONS(2687), - [anon_sym_mut] = ACTIONS(2687), - [anon_sym_enum] = ACTIONS(2687), - [anon_sym_interface] = ACTIONS(2687), - [anon_sym_PLUS_PLUS] = ACTIONS(2687), - [anon_sym_DASH_DASH] = ACTIONS(2687), - [anon_sym_QMARK] = ACTIONS(2687), - [anon_sym_BANG] = ACTIONS(2687), - [anon_sym_go] = ACTIONS(2687), - [anon_sym_spawn] = ACTIONS(2687), - [anon_sym_json_DOTdecode] = ACTIONS(2687), - [anon_sym_LBRACK2] = ACTIONS(2687), - [anon_sym_TILDE] = ACTIONS(2687), - [anon_sym_CARET] = ACTIONS(2687), - [anon_sym_AMP] = ACTIONS(2687), - [anon_sym_LT_DASH] = ACTIONS(2687), - [anon_sym_LT_LT] = ACTIONS(2687), - [anon_sym_GT_GT] = ACTIONS(2687), - [anon_sym_GT_GT_GT] = ACTIONS(2687), - [anon_sym_AMP_CARET] = ACTIONS(2687), - [anon_sym_AMP_AMP] = ACTIONS(2687), - [anon_sym_PIPE_PIPE] = ACTIONS(2687), - [anon_sym_or] = ACTIONS(2687), - [sym_none] = ACTIONS(2687), - [sym_true] = ACTIONS(2687), - [sym_false] = ACTIONS(2687), - [sym_nil] = ACTIONS(2687), - [anon_sym_QMARK_DOT] = ACTIONS(2687), - [anon_sym_POUND_LBRACK] = ACTIONS(2687), - [anon_sym_if] = ACTIONS(2687), - [anon_sym_DOLLARif] = ACTIONS(2687), - [anon_sym_is] = ACTIONS(2687), - [anon_sym_BANGis] = ACTIONS(2687), - [anon_sym_in] = ACTIONS(2687), - [anon_sym_BANGin] = ACTIONS(2687), - [anon_sym_match] = ACTIONS(2687), - [anon_sym_select] = ACTIONS(2687), - [anon_sym_STAR_EQ] = ACTIONS(2687), - [anon_sym_SLASH_EQ] = ACTIONS(2687), - [anon_sym_PERCENT_EQ] = ACTIONS(2687), - [anon_sym_LT_LT_EQ] = ACTIONS(2687), - [anon_sym_GT_GT_EQ] = ACTIONS(2687), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(2687), - [anon_sym_AMP_EQ] = ACTIONS(2687), - [anon_sym_AMP_CARET_EQ] = ACTIONS(2687), - [anon_sym_PLUS_EQ] = ACTIONS(2687), - [anon_sym_DASH_EQ] = ACTIONS(2687), - [anon_sym_PIPE_EQ] = ACTIONS(2687), - [anon_sym_CARET_EQ] = ACTIONS(2687), - [anon_sym_COLON_EQ] = ACTIONS(2687), - [anon_sym_lock] = ACTIONS(2687), - [anon_sym_rlock] = ACTIONS(2687), - [anon_sym_unsafe] = ACTIONS(2687), - [anon_sym_sql] = ACTIONS(2687), - [sym_int_literal] = ACTIONS(2687), - [sym_float_literal] = ACTIONS(2687), - [sym_rune_literal] = ACTIONS(2687), - [sym_pseudo_compile_time_identifier] = ACTIONS(2687), - [anon_sym_shared] = ACTIONS(2687), - [anon_sym_map_LBRACK] = ACTIONS(2687), - [anon_sym_chan] = ACTIONS(2687), - [anon_sym_thread] = ACTIONS(2687), - [anon_sym_atomic] = ACTIONS(2687), - [anon_sym_assert] = ACTIONS(2687), - [anon_sym_defer] = ACTIONS(2687), - [anon_sym_goto] = ACTIONS(2687), - [anon_sym_break] = ACTIONS(2687), - [anon_sym_continue] = ACTIONS(2687), - [anon_sym_return] = ACTIONS(2687), - [anon_sym_DOLLARfor] = ACTIONS(2687), - [anon_sym_for] = ACTIONS(2687), - [anon_sym_POUND] = ACTIONS(2687), - [anon_sym_asm] = ACTIONS(2687), - [anon_sym_AT_LBRACK] = ACTIONS(2687), - [sym___double_quote] = ACTIONS(2687), - [sym___single_quote] = ACTIONS(2687), - [sym___c_double_quote] = ACTIONS(2687), - [sym___c_single_quote] = ACTIONS(2687), - [sym___r_double_quote] = ACTIONS(2687), - [sym___r_single_quote] = ACTIONS(2687), + [sym___double_quote] = ACTIONS(1480), + [sym___single_quote] = ACTIONS(1482), + [sym___c_double_quote] = ACTIONS(1484), + [sym___c_single_quote] = ACTIONS(1486), + [sym___r_double_quote] = ACTIONS(1488), + [sym___r_single_quote] = ACTIONS(1490), }, [421] = { [sym_line_comment] = STATE(421), [sym_block_comment] = STATE(421), - [ts_builtin_sym_end] = ACTIONS(2689), - [sym_identifier] = ACTIONS(2691), - [anon_sym_LF] = ACTIONS(2691), - [anon_sym_CR] = ACTIONS(2691), - [anon_sym_CR_LF] = ACTIONS(2691), + [ts_builtin_sym_end] = ACTIONS(2708), + [sym_identifier] = ACTIONS(2710), + [anon_sym_LF] = ACTIONS(2710), + [anon_sym_CR] = ACTIONS(2710), + [anon_sym_CR_LF] = ACTIONS(2710), [anon_sym_SLASH_SLASH] = ACTIONS(497), [anon_sym_SLASH_STAR] = ACTIONS(499), - [anon_sym_DOT] = ACTIONS(2691), - [anon_sym_as] = ACTIONS(2691), - [anon_sym_LBRACE] = ACTIONS(2691), - [anon_sym_COMMA] = ACTIONS(2691), - [anon_sym_const] = ACTIONS(2691), - [anon_sym_LPAREN] = ACTIONS(2691), - [anon_sym_EQ] = ACTIONS(2691), - [anon_sym___global] = ACTIONS(2691), - [anon_sym_type] = ACTIONS(2691), - [anon_sym_PIPE] = ACTIONS(2691), - [anon_sym_fn] = ACTIONS(2691), - [anon_sym_PLUS] = ACTIONS(2691), - [anon_sym_DASH] = ACTIONS(2691), - [anon_sym_STAR] = ACTIONS(2691), - [anon_sym_SLASH] = ACTIONS(2691), - [anon_sym_PERCENT] = ACTIONS(2691), - [anon_sym_LT] = ACTIONS(2691), - [anon_sym_GT] = ACTIONS(2691), - [anon_sym_EQ_EQ] = ACTIONS(2691), - [anon_sym_BANG_EQ] = ACTIONS(2691), - [anon_sym_LT_EQ] = ACTIONS(2691), - [anon_sym_GT_EQ] = ACTIONS(2691), - [anon_sym_LBRACK] = ACTIONS(2689), - [anon_sym_struct] = ACTIONS(2691), - [anon_sym_union] = ACTIONS(2691), - [anon_sym_pub] = ACTIONS(2691), - [anon_sym_mut] = ACTIONS(2691), - [anon_sym_enum] = ACTIONS(2691), - [anon_sym_interface] = ACTIONS(2691), - [anon_sym_PLUS_PLUS] = ACTIONS(2691), - [anon_sym_DASH_DASH] = ACTIONS(2691), - [anon_sym_QMARK] = ACTIONS(2691), - [anon_sym_BANG] = ACTIONS(2691), - [anon_sym_go] = ACTIONS(2691), - [anon_sym_spawn] = ACTIONS(2691), - [anon_sym_json_DOTdecode] = ACTIONS(2691), - [anon_sym_LBRACK2] = ACTIONS(2691), - [anon_sym_TILDE] = ACTIONS(2691), - [anon_sym_CARET] = ACTIONS(2691), - [anon_sym_AMP] = ACTIONS(2691), - [anon_sym_LT_DASH] = ACTIONS(2691), - [anon_sym_LT_LT] = ACTIONS(2691), - [anon_sym_GT_GT] = ACTIONS(2691), - [anon_sym_GT_GT_GT] = ACTIONS(2691), - [anon_sym_AMP_CARET] = ACTIONS(2691), - [anon_sym_AMP_AMP] = ACTIONS(2691), - [anon_sym_PIPE_PIPE] = ACTIONS(2691), - [anon_sym_or] = ACTIONS(2691), - [sym_none] = ACTIONS(2691), - [sym_true] = ACTIONS(2691), - [sym_false] = ACTIONS(2691), - [sym_nil] = ACTIONS(2691), - [anon_sym_QMARK_DOT] = ACTIONS(2691), - [anon_sym_POUND_LBRACK] = ACTIONS(2691), - [anon_sym_if] = ACTIONS(2691), - [anon_sym_DOLLARif] = ACTIONS(2691), - [anon_sym_is] = ACTIONS(2691), - [anon_sym_BANGis] = ACTIONS(2691), - [anon_sym_in] = ACTIONS(2691), - [anon_sym_BANGin] = ACTIONS(2691), - [anon_sym_match] = ACTIONS(2691), - [anon_sym_select] = ACTIONS(2691), - [anon_sym_STAR_EQ] = ACTIONS(2691), - [anon_sym_SLASH_EQ] = ACTIONS(2691), - [anon_sym_PERCENT_EQ] = ACTIONS(2691), - [anon_sym_LT_LT_EQ] = ACTIONS(2691), - [anon_sym_GT_GT_EQ] = ACTIONS(2691), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(2691), - [anon_sym_AMP_EQ] = ACTIONS(2691), - [anon_sym_AMP_CARET_EQ] = ACTIONS(2691), - [anon_sym_PLUS_EQ] = ACTIONS(2691), - [anon_sym_DASH_EQ] = ACTIONS(2691), - [anon_sym_PIPE_EQ] = ACTIONS(2691), - [anon_sym_CARET_EQ] = ACTIONS(2691), - [anon_sym_COLON_EQ] = ACTIONS(2691), - [anon_sym_lock] = ACTIONS(2691), - [anon_sym_rlock] = ACTIONS(2691), - [anon_sym_unsafe] = ACTIONS(2691), - [anon_sym_sql] = ACTIONS(2691), - [sym_int_literal] = ACTIONS(2691), - [sym_float_literal] = ACTIONS(2691), - [sym_rune_literal] = ACTIONS(2691), - [sym_pseudo_compile_time_identifier] = ACTIONS(2691), - [anon_sym_shared] = ACTIONS(2691), - [anon_sym_map_LBRACK] = ACTIONS(2691), - [anon_sym_chan] = ACTIONS(2691), - [anon_sym_thread] = ACTIONS(2691), - [anon_sym_atomic] = ACTIONS(2691), - [anon_sym_assert] = ACTIONS(2691), - [anon_sym_defer] = ACTIONS(2691), - [anon_sym_goto] = ACTIONS(2691), - [anon_sym_break] = ACTIONS(2691), - [anon_sym_continue] = ACTIONS(2691), - [anon_sym_return] = ACTIONS(2691), - [anon_sym_DOLLARfor] = ACTIONS(2691), - [anon_sym_for] = ACTIONS(2691), - [anon_sym_POUND] = ACTIONS(2691), - [anon_sym_asm] = ACTIONS(2691), - [anon_sym_AT_LBRACK] = ACTIONS(2691), - [sym___double_quote] = ACTIONS(2691), - [sym___single_quote] = ACTIONS(2691), - [sym___c_double_quote] = ACTIONS(2691), - [sym___c_single_quote] = ACTIONS(2691), - [sym___r_double_quote] = ACTIONS(2691), - [sym___r_single_quote] = ACTIONS(2691), + [anon_sym_DOT] = ACTIONS(2710), + [anon_sym_as] = ACTIONS(2710), + [anon_sym_LBRACE] = ACTIONS(2710), + [anon_sym_COMMA] = ACTIONS(2710), + [anon_sym_const] = ACTIONS(2710), + [anon_sym_LPAREN] = ACTIONS(2710), + [anon_sym_EQ] = ACTIONS(2710), + [anon_sym___global] = ACTIONS(2710), + [anon_sym_type] = ACTIONS(2710), + [anon_sym_PIPE] = ACTIONS(2710), + [anon_sym_fn] = ACTIONS(2710), + [anon_sym_PLUS] = ACTIONS(2710), + [anon_sym_DASH] = ACTIONS(2710), + [anon_sym_STAR] = ACTIONS(2710), + [anon_sym_SLASH] = ACTIONS(2710), + [anon_sym_PERCENT] = ACTIONS(2710), + [anon_sym_LT] = ACTIONS(2710), + [anon_sym_GT] = ACTIONS(2710), + [anon_sym_EQ_EQ] = ACTIONS(2710), + [anon_sym_BANG_EQ] = ACTIONS(2710), + [anon_sym_LT_EQ] = ACTIONS(2710), + [anon_sym_GT_EQ] = ACTIONS(2710), + [anon_sym_LBRACK] = ACTIONS(2708), + [anon_sym_struct] = ACTIONS(2710), + [anon_sym_union] = ACTIONS(2710), + [anon_sym_pub] = ACTIONS(2710), + [anon_sym_mut] = ACTIONS(2710), + [anon_sym_enum] = ACTIONS(2710), + [anon_sym_interface] = ACTIONS(2710), + [anon_sym_PLUS_PLUS] = ACTIONS(2710), + [anon_sym_DASH_DASH] = ACTIONS(2710), + [anon_sym_QMARK] = ACTIONS(2710), + [anon_sym_BANG] = ACTIONS(2710), + [anon_sym_go] = ACTIONS(2710), + [anon_sym_spawn] = ACTIONS(2710), + [anon_sym_json_DOTdecode] = ACTIONS(2710), + [anon_sym_LBRACK2] = ACTIONS(2710), + [anon_sym_TILDE] = ACTIONS(2710), + [anon_sym_CARET] = ACTIONS(2710), + [anon_sym_AMP] = ACTIONS(2710), + [anon_sym_LT_DASH] = ACTIONS(2710), + [anon_sym_LT_LT] = ACTIONS(2710), + [anon_sym_GT_GT] = ACTIONS(2710), + [anon_sym_GT_GT_GT] = ACTIONS(2710), + [anon_sym_AMP_CARET] = ACTIONS(2710), + [anon_sym_AMP_AMP] = ACTIONS(2710), + [anon_sym_PIPE_PIPE] = ACTIONS(2710), + [anon_sym_or] = ACTIONS(2710), + [sym_none] = ACTIONS(2710), + [sym_true] = ACTIONS(2710), + [sym_false] = ACTIONS(2710), + [sym_nil] = ACTIONS(2710), + [anon_sym_QMARK_DOT] = ACTIONS(2710), + [anon_sym_POUND_LBRACK] = ACTIONS(2710), + [anon_sym_if] = ACTIONS(2710), + [anon_sym_DOLLARif] = ACTIONS(2710), + [anon_sym_is] = ACTIONS(2710), + [anon_sym_BANGis] = ACTIONS(2710), + [anon_sym_in] = ACTIONS(2710), + [anon_sym_BANGin] = ACTIONS(2710), + [anon_sym_match] = ACTIONS(2710), + [anon_sym_select] = ACTIONS(2710), + [anon_sym_STAR_EQ] = ACTIONS(2710), + [anon_sym_SLASH_EQ] = ACTIONS(2710), + [anon_sym_PERCENT_EQ] = ACTIONS(2710), + [anon_sym_LT_LT_EQ] = ACTIONS(2710), + [anon_sym_GT_GT_EQ] = ACTIONS(2710), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(2710), + [anon_sym_AMP_EQ] = ACTIONS(2710), + [anon_sym_AMP_CARET_EQ] = ACTIONS(2710), + [anon_sym_PLUS_EQ] = ACTIONS(2710), + [anon_sym_DASH_EQ] = ACTIONS(2710), + [anon_sym_PIPE_EQ] = ACTIONS(2710), + [anon_sym_CARET_EQ] = ACTIONS(2710), + [anon_sym_COLON_EQ] = ACTIONS(2710), + [anon_sym_lock] = ACTIONS(2710), + [anon_sym_rlock] = ACTIONS(2710), + [anon_sym_unsafe] = ACTIONS(2710), + [anon_sym_sql] = ACTIONS(2710), + [sym_int_literal] = ACTIONS(2710), + [sym_float_literal] = ACTIONS(2710), + [sym_rune_literal] = ACTIONS(2710), + [sym_pseudo_compile_time_identifier] = ACTIONS(2710), + [anon_sym_shared] = ACTIONS(2710), + [anon_sym_map_LBRACK] = ACTIONS(2710), + [anon_sym_chan] = ACTIONS(2710), + [anon_sym_thread] = ACTIONS(2710), + [anon_sym_atomic] = ACTIONS(2710), + [anon_sym_assert] = ACTIONS(2710), + [anon_sym_defer] = ACTIONS(2710), + [anon_sym_goto] = ACTIONS(2710), + [anon_sym_break] = ACTIONS(2710), + [anon_sym_continue] = ACTIONS(2710), + [anon_sym_return] = ACTIONS(2710), + [anon_sym_DOLLARfor] = ACTIONS(2710), + [anon_sym_for] = ACTIONS(2710), + [anon_sym_POUND] = ACTIONS(2710), + [anon_sym_asm] = ACTIONS(2710), + [anon_sym_AT_LBRACK] = ACTIONS(2710), + [sym___double_quote] = ACTIONS(2710), + [sym___single_quote] = ACTIONS(2710), + [sym___c_double_quote] = ACTIONS(2710), + [sym___c_single_quote] = ACTIONS(2710), + [sym___r_double_quote] = ACTIONS(2710), + [sym___r_single_quote] = ACTIONS(2710), }, [422] = { [sym_line_comment] = STATE(422), [sym_block_comment] = STATE(422), - [ts_builtin_sym_end] = ACTIONS(1849), - [sym_identifier] = ACTIONS(1851), - [anon_sym_LF] = ACTIONS(1851), - [anon_sym_CR] = ACTIONS(1851), - [anon_sym_CR_LF] = ACTIONS(1851), + [ts_builtin_sym_end] = ACTIONS(2712), + [sym_identifier] = ACTIONS(2714), + [anon_sym_LF] = ACTIONS(2714), + [anon_sym_CR] = ACTIONS(2714), + [anon_sym_CR_LF] = ACTIONS(2714), [anon_sym_SLASH_SLASH] = ACTIONS(497), [anon_sym_SLASH_STAR] = ACTIONS(499), - [anon_sym_DOT] = ACTIONS(1851), - [anon_sym_as] = ACTIONS(1851), - [anon_sym_LBRACE] = ACTIONS(1851), - [anon_sym_COMMA] = ACTIONS(1851), - [anon_sym_const] = ACTIONS(1851), - [anon_sym_LPAREN] = ACTIONS(1851), - [anon_sym_EQ] = ACTIONS(1851), - [anon_sym___global] = ACTIONS(1851), - [anon_sym_type] = ACTIONS(1851), - [anon_sym_PIPE] = ACTIONS(1851), - [anon_sym_fn] = ACTIONS(1851), - [anon_sym_PLUS] = ACTIONS(1851), - [anon_sym_DASH] = ACTIONS(1851), - [anon_sym_STAR] = ACTIONS(1851), - [anon_sym_SLASH] = ACTIONS(1851), - [anon_sym_PERCENT] = ACTIONS(1851), - [anon_sym_LT] = ACTIONS(1851), - [anon_sym_GT] = ACTIONS(1851), - [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(1849), - [anon_sym_struct] = ACTIONS(1851), - [anon_sym_union] = ACTIONS(1851), - [anon_sym_pub] = ACTIONS(1851), - [anon_sym_mut] = ACTIONS(1851), - [anon_sym_enum] = ACTIONS(1851), - [anon_sym_interface] = ACTIONS(1851), - [anon_sym_PLUS_PLUS] = ACTIONS(1851), - [anon_sym_DASH_DASH] = ACTIONS(1851), - [anon_sym_QMARK] = ACTIONS(1851), - [anon_sym_BANG] = ACTIONS(1851), - [anon_sym_go] = ACTIONS(1851), - [anon_sym_spawn] = ACTIONS(1851), - [anon_sym_json_DOTdecode] = ACTIONS(1851), - [anon_sym_LBRACK2] = ACTIONS(1851), - [anon_sym_TILDE] = ACTIONS(1851), - [anon_sym_CARET] = ACTIONS(1851), - [anon_sym_AMP] = ACTIONS(1851), - [anon_sym_LT_DASH] = ACTIONS(1851), - [anon_sym_LT_LT] = ACTIONS(1851), - [anon_sym_GT_GT] = ACTIONS(1851), - [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(1851), - [sym_none] = ACTIONS(1851), - [sym_true] = ACTIONS(1851), - [sym_false] = ACTIONS(1851), - [sym_nil] = ACTIONS(1851), - [anon_sym_QMARK_DOT] = ACTIONS(1851), - [anon_sym_POUND_LBRACK] = ACTIONS(1851), - [anon_sym_if] = ACTIONS(1851), - [anon_sym_DOLLARif] = ACTIONS(1851), - [anon_sym_is] = ACTIONS(1851), - [anon_sym_BANGis] = ACTIONS(1851), - [anon_sym_in] = ACTIONS(1851), - [anon_sym_BANGin] = ACTIONS(1851), - [anon_sym_match] = ACTIONS(1851), - [anon_sym_select] = ACTIONS(1851), - [anon_sym_STAR_EQ] = ACTIONS(1851), - [anon_sym_SLASH_EQ] = ACTIONS(1851), - [anon_sym_PERCENT_EQ] = ACTIONS(1851), - [anon_sym_LT_LT_EQ] = ACTIONS(1851), - [anon_sym_GT_GT_EQ] = ACTIONS(1851), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(1851), - [anon_sym_AMP_EQ] = ACTIONS(1851), - [anon_sym_AMP_CARET_EQ] = ACTIONS(1851), - [anon_sym_PLUS_EQ] = ACTIONS(1851), - [anon_sym_DASH_EQ] = ACTIONS(1851), - [anon_sym_PIPE_EQ] = ACTIONS(1851), - [anon_sym_CARET_EQ] = ACTIONS(1851), - [anon_sym_COLON_EQ] = ACTIONS(1851), - [anon_sym_lock] = ACTIONS(1851), - [anon_sym_rlock] = ACTIONS(1851), - [anon_sym_unsafe] = ACTIONS(1851), - [anon_sym_sql] = ACTIONS(1851), - [sym_int_literal] = ACTIONS(1851), - [sym_float_literal] = ACTIONS(1851), - [sym_rune_literal] = ACTIONS(1851), - [sym_pseudo_compile_time_identifier] = ACTIONS(1851), - [anon_sym_shared] = ACTIONS(1851), - [anon_sym_map_LBRACK] = ACTIONS(1851), - [anon_sym_chan] = ACTIONS(1851), - [anon_sym_thread] = ACTIONS(1851), - [anon_sym_atomic] = ACTIONS(1851), - [anon_sym_assert] = ACTIONS(1851), - [anon_sym_defer] = ACTIONS(1851), - [anon_sym_goto] = ACTIONS(1851), - [anon_sym_break] = ACTIONS(1851), - [anon_sym_continue] = ACTIONS(1851), - [anon_sym_return] = ACTIONS(1851), - [anon_sym_DOLLARfor] = ACTIONS(1851), - [anon_sym_for] = ACTIONS(1851), - [anon_sym_POUND] = ACTIONS(1851), - [anon_sym_asm] = ACTIONS(1851), - [anon_sym_AT_LBRACK] = ACTIONS(1851), - [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), + [anon_sym_DOT] = ACTIONS(2714), + [anon_sym_as] = ACTIONS(2714), + [anon_sym_LBRACE] = ACTIONS(2714), + [anon_sym_COMMA] = ACTIONS(2714), + [anon_sym_const] = ACTIONS(2714), + [anon_sym_LPAREN] = ACTIONS(2714), + [anon_sym_EQ] = ACTIONS(2714), + [anon_sym___global] = ACTIONS(2714), + [anon_sym_type] = ACTIONS(2714), + [anon_sym_PIPE] = ACTIONS(2714), + [anon_sym_fn] = ACTIONS(2714), + [anon_sym_PLUS] = ACTIONS(2714), + [anon_sym_DASH] = ACTIONS(2714), + [anon_sym_STAR] = ACTIONS(2714), + [anon_sym_SLASH] = ACTIONS(2714), + [anon_sym_PERCENT] = ACTIONS(2714), + [anon_sym_LT] = ACTIONS(2714), + [anon_sym_GT] = ACTIONS(2714), + [anon_sym_EQ_EQ] = ACTIONS(2714), + [anon_sym_BANG_EQ] = ACTIONS(2714), + [anon_sym_LT_EQ] = ACTIONS(2714), + [anon_sym_GT_EQ] = ACTIONS(2714), + [anon_sym_LBRACK] = ACTIONS(2712), + [anon_sym_struct] = ACTIONS(2714), + [anon_sym_union] = ACTIONS(2714), + [anon_sym_pub] = ACTIONS(2714), + [anon_sym_mut] = ACTIONS(2714), + [anon_sym_enum] = ACTIONS(2714), + [anon_sym_interface] = ACTIONS(2714), + [anon_sym_PLUS_PLUS] = ACTIONS(2714), + [anon_sym_DASH_DASH] = ACTIONS(2714), + [anon_sym_QMARK] = ACTIONS(2714), + [anon_sym_BANG] = ACTIONS(2714), + [anon_sym_go] = ACTIONS(2714), + [anon_sym_spawn] = ACTIONS(2714), + [anon_sym_json_DOTdecode] = ACTIONS(2714), + [anon_sym_LBRACK2] = ACTIONS(2714), + [anon_sym_TILDE] = ACTIONS(2714), + [anon_sym_CARET] = ACTIONS(2714), + [anon_sym_AMP] = ACTIONS(2714), + [anon_sym_LT_DASH] = ACTIONS(2714), + [anon_sym_LT_LT] = ACTIONS(2714), + [anon_sym_GT_GT] = ACTIONS(2714), + [anon_sym_GT_GT_GT] = ACTIONS(2714), + [anon_sym_AMP_CARET] = ACTIONS(2714), + [anon_sym_AMP_AMP] = ACTIONS(2714), + [anon_sym_PIPE_PIPE] = ACTIONS(2714), + [anon_sym_or] = ACTIONS(2714), + [sym_none] = ACTIONS(2714), + [sym_true] = ACTIONS(2714), + [sym_false] = ACTIONS(2714), + [sym_nil] = ACTIONS(2714), + [anon_sym_QMARK_DOT] = ACTIONS(2714), + [anon_sym_POUND_LBRACK] = ACTIONS(2714), + [anon_sym_if] = ACTIONS(2714), + [anon_sym_DOLLARif] = ACTIONS(2714), + [anon_sym_is] = ACTIONS(2714), + [anon_sym_BANGis] = ACTIONS(2714), + [anon_sym_in] = ACTIONS(2714), + [anon_sym_BANGin] = ACTIONS(2714), + [anon_sym_match] = ACTIONS(2714), + [anon_sym_select] = ACTIONS(2714), + [anon_sym_STAR_EQ] = ACTIONS(2714), + [anon_sym_SLASH_EQ] = ACTIONS(2714), + [anon_sym_PERCENT_EQ] = ACTIONS(2714), + [anon_sym_LT_LT_EQ] = ACTIONS(2714), + [anon_sym_GT_GT_EQ] = ACTIONS(2714), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(2714), + [anon_sym_AMP_EQ] = ACTIONS(2714), + [anon_sym_AMP_CARET_EQ] = ACTIONS(2714), + [anon_sym_PLUS_EQ] = ACTIONS(2714), + [anon_sym_DASH_EQ] = ACTIONS(2714), + [anon_sym_PIPE_EQ] = ACTIONS(2714), + [anon_sym_CARET_EQ] = ACTIONS(2714), + [anon_sym_COLON_EQ] = ACTIONS(2714), + [anon_sym_lock] = ACTIONS(2714), + [anon_sym_rlock] = ACTIONS(2714), + [anon_sym_unsafe] = ACTIONS(2714), + [anon_sym_sql] = ACTIONS(2714), + [sym_int_literal] = ACTIONS(2714), + [sym_float_literal] = ACTIONS(2714), + [sym_rune_literal] = ACTIONS(2714), + [sym_pseudo_compile_time_identifier] = ACTIONS(2714), + [anon_sym_shared] = ACTIONS(2714), + [anon_sym_map_LBRACK] = ACTIONS(2714), + [anon_sym_chan] = ACTIONS(2714), + [anon_sym_thread] = ACTIONS(2714), + [anon_sym_atomic] = ACTIONS(2714), + [anon_sym_assert] = ACTIONS(2714), + [anon_sym_defer] = ACTIONS(2714), + [anon_sym_goto] = ACTIONS(2714), + [anon_sym_break] = ACTIONS(2714), + [anon_sym_continue] = ACTIONS(2714), + [anon_sym_return] = ACTIONS(2714), + [anon_sym_DOLLARfor] = ACTIONS(2714), + [anon_sym_for] = ACTIONS(2714), + [anon_sym_POUND] = ACTIONS(2714), + [anon_sym_asm] = ACTIONS(2714), + [anon_sym_AT_LBRACK] = ACTIONS(2714), + [sym___double_quote] = ACTIONS(2714), + [sym___single_quote] = ACTIONS(2714), + [sym___c_double_quote] = ACTIONS(2714), + [sym___c_single_quote] = ACTIONS(2714), + [sym___r_double_quote] = ACTIONS(2714), + [sym___r_single_quote] = ACTIONS(2714), }, [423] = { [sym_line_comment] = STATE(423), [sym_block_comment] = STATE(423), - [sym__expression] = STATE(1268), - [sym__expression_without_blocks] = STATE(1312), - [sym__expression_with_blocks] = STATE(1312), - [sym_inc_expression] = STATE(1313), - [sym_dec_expression] = STATE(1313), - [sym_or_block_expression] = STATE(1313), - [sym_option_propagation_expression] = STATE(1313), - [sym_result_propagation_expression] = STATE(1313), - [sym_anon_struct_value_expression] = STATE(1314), - [sym_go_expression] = STATE(1313), - [sym_spawn_expression] = STATE(1313), - [sym_parenthesized_expression] = STATE(1313), - [sym_call_expression] = STATE(1313), - [sym_type_initializer] = STATE(1314), - [sym_function_literal] = STATE(1313), - [sym_reference_expression] = STATE(1394), - [sym_type_reference_expression] = STATE(3541), - [sym_unary_expression] = STATE(1313), - [sym_receive_expression] = STATE(1313), - [sym_binary_expression] = STATE(1313), - [sym_as_type_cast_expression] = STATE(1313), - [sym__max_group] = STATE(1313), - [sym_literal] = STATE(1308), - [sym_map_init_expression] = STATE(1314), - [sym_array_creation] = STATE(1313), - [sym_fixed_array_creation] = STATE(1313), - [sym_selector_expression] = STATE(1393), - [sym_index_expression] = STATE(1313), - [sym_slice_expression] = STATE(1313), - [sym_if_expression] = STATE(1314), - [sym_compile_time_if_expression] = STATE(1314), - [sym_is_expression] = STATE(1313), - [sym_in_expression] = STATE(1313), - [sym_enum_fetch] = STATE(1313), - [sym_match_expression] = STATE(1314), - [sym_select_expression] = STATE(1314), - [sym_lock_expression] = STATE(1314), - [sym_unsafe_expression] = STATE(1314), - [sym_sql_expression] = STATE(1314), - [sym_c_string_literal] = STATE(1286), - [sym_raw_string_literal] = STATE(1286), - [sym_interpreted_string_literal] = STATE(1286), - [sym_mutability_modifiers] = STATE(699), - [sym_plain_type] = STATE(4192), - [sym__plain_type_without_special] = STATE(2302), - [sym_anon_struct_type] = STATE(2303), - [sym_multi_return_type] = STATE(2302), - [sym_result_type] = STATE(2302), - [sym_option_type] = STATE(2302), - [sym_qualified_type] = STATE(3541), - [sym_fixed_array_type] = STATE(2303), - [sym_array_type] = STATE(2303), - [sym_pointer_type] = STATE(2303), - [sym_wrong_pointer_type] = STATE(2303), - [sym_map_type] = STATE(2303), - [sym_channel_type] = STATE(2303), - [sym_shared_type] = STATE(2303), - [sym_thread_type] = STATE(2303), - [sym_atomic_type] = STATE(2303), - [sym_generic_type] = STATE(2303), - [sym_function_type] = STATE(2303), - [aux_sym__array_repeat1] = STATE(492), - [sym_identifier] = ACTIONS(1354), - [anon_sym_SLASH_SLASH] = ACTIONS(3), - [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1356), - [anon_sym_LBRACE] = ACTIONS(1358), - [anon_sym_LPAREN] = ACTIONS(1360), - [anon_sym_fn] = ACTIONS(1362), - [anon_sym_PLUS] = ACTIONS(1364), - [anon_sym_DASH] = ACTIONS(1364), - [anon_sym_STAR] = ACTIONS(1366), - [anon_sym_RBRACK] = ACTIONS(2693), - [anon_sym_struct] = ACTIONS(1370), - [anon_sym_mut] = ACTIONS(41), - [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(1372), - [anon_sym_go] = ACTIONS(1374), - [anon_sym_spawn] = ACTIONS(1376), - [anon_sym_json_DOTdecode] = ACTIONS(1378), - [anon_sym_LBRACK2] = ACTIONS(1380), - [anon_sym_TILDE] = ACTIONS(1364), - [anon_sym_CARET] = ACTIONS(1364), - [anon_sym_AMP] = ACTIONS(1382), - [anon_sym_LT_DASH] = ACTIONS(1384), - [sym_none] = ACTIONS(1386), - [sym_true] = ACTIONS(1386), - [sym_false] = ACTIONS(1386), - [sym_nil] = ACTIONS(1386), - [anon_sym_if] = ACTIONS(1877), - [anon_sym_DOLLARif] = ACTIONS(1390), - [anon_sym_match] = ACTIONS(1392), - [anon_sym_select] = ACTIONS(1394), - [anon_sym_lock] = ACTIONS(1396), - [anon_sym_rlock] = ACTIONS(1396), - [anon_sym_unsafe] = ACTIONS(1883), - [anon_sym_sql] = ACTIONS(1400), - [sym_int_literal] = ACTIONS(1402), - [sym_float_literal] = ACTIONS(1404), - [sym_rune_literal] = ACTIONS(1404), - [sym_pseudo_compile_time_identifier] = ACTIONS(1406), - [anon_sym_shared] = ACTIONS(83), - [anon_sym_map_LBRACK] = ACTIONS(85), - [anon_sym_chan] = ACTIONS(87), - [anon_sym_thread] = ACTIONS(89), - [anon_sym_atomic] = ACTIONS(91), - [sym___double_quote] = ACTIONS(1408), - [sym___single_quote] = ACTIONS(1410), - [sym___c_double_quote] = ACTIONS(1412), - [sym___c_single_quote] = ACTIONS(1414), - [sym___r_double_quote] = ACTIONS(1416), - [sym___r_single_quote] = ACTIONS(1418), + [ts_builtin_sym_end] = ACTIONS(2716), + [sym_identifier] = ACTIONS(2718), + [anon_sym_LF] = ACTIONS(2718), + [anon_sym_CR] = ACTIONS(2718), + [anon_sym_CR_LF] = ACTIONS(2718), + [anon_sym_SLASH_SLASH] = ACTIONS(497), + [anon_sym_SLASH_STAR] = ACTIONS(499), + [anon_sym_DOT] = ACTIONS(2718), + [anon_sym_as] = ACTIONS(2718), + [anon_sym_LBRACE] = ACTIONS(2718), + [anon_sym_COMMA] = ACTIONS(2718), + [anon_sym_const] = ACTIONS(2718), + [anon_sym_LPAREN] = ACTIONS(2718), + [anon_sym_EQ] = ACTIONS(2718), + [anon_sym___global] = ACTIONS(2718), + [anon_sym_type] = ACTIONS(2718), + [anon_sym_PIPE] = ACTIONS(2718), + [anon_sym_fn] = ACTIONS(2718), + [anon_sym_PLUS] = ACTIONS(2718), + [anon_sym_DASH] = ACTIONS(2718), + [anon_sym_STAR] = ACTIONS(2718), + [anon_sym_SLASH] = ACTIONS(2718), + [anon_sym_PERCENT] = ACTIONS(2718), + [anon_sym_LT] = ACTIONS(2718), + [anon_sym_GT] = ACTIONS(2718), + [anon_sym_EQ_EQ] = ACTIONS(2718), + [anon_sym_BANG_EQ] = ACTIONS(2718), + [anon_sym_LT_EQ] = ACTIONS(2718), + [anon_sym_GT_EQ] = ACTIONS(2718), + [anon_sym_LBRACK] = ACTIONS(2716), + [anon_sym_struct] = ACTIONS(2718), + [anon_sym_union] = ACTIONS(2718), + [anon_sym_pub] = ACTIONS(2718), + [anon_sym_mut] = ACTIONS(2718), + [anon_sym_enum] = ACTIONS(2718), + [anon_sym_interface] = ACTIONS(2718), + [anon_sym_PLUS_PLUS] = ACTIONS(2718), + [anon_sym_DASH_DASH] = ACTIONS(2718), + [anon_sym_QMARK] = ACTIONS(2718), + [anon_sym_BANG] = ACTIONS(2718), + [anon_sym_go] = ACTIONS(2718), + [anon_sym_spawn] = ACTIONS(2718), + [anon_sym_json_DOTdecode] = ACTIONS(2718), + [anon_sym_LBRACK2] = ACTIONS(2718), + [anon_sym_TILDE] = ACTIONS(2718), + [anon_sym_CARET] = ACTIONS(2718), + [anon_sym_AMP] = ACTIONS(2718), + [anon_sym_LT_DASH] = ACTIONS(2718), + [anon_sym_LT_LT] = ACTIONS(2718), + [anon_sym_GT_GT] = ACTIONS(2718), + [anon_sym_GT_GT_GT] = ACTIONS(2718), + [anon_sym_AMP_CARET] = ACTIONS(2718), + [anon_sym_AMP_AMP] = ACTIONS(2718), + [anon_sym_PIPE_PIPE] = ACTIONS(2718), + [anon_sym_or] = ACTIONS(2718), + [sym_none] = ACTIONS(2718), + [sym_true] = ACTIONS(2718), + [sym_false] = ACTIONS(2718), + [sym_nil] = ACTIONS(2718), + [anon_sym_QMARK_DOT] = ACTIONS(2718), + [anon_sym_POUND_LBRACK] = ACTIONS(2718), + [anon_sym_if] = ACTIONS(2718), + [anon_sym_DOLLARif] = ACTIONS(2718), + [anon_sym_is] = ACTIONS(2718), + [anon_sym_BANGis] = ACTIONS(2718), + [anon_sym_in] = ACTIONS(2718), + [anon_sym_BANGin] = ACTIONS(2718), + [anon_sym_match] = ACTIONS(2718), + [anon_sym_select] = ACTIONS(2718), + [anon_sym_STAR_EQ] = ACTIONS(2718), + [anon_sym_SLASH_EQ] = ACTIONS(2718), + [anon_sym_PERCENT_EQ] = ACTIONS(2718), + [anon_sym_LT_LT_EQ] = ACTIONS(2718), + [anon_sym_GT_GT_EQ] = ACTIONS(2718), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(2718), + [anon_sym_AMP_EQ] = ACTIONS(2718), + [anon_sym_AMP_CARET_EQ] = ACTIONS(2718), + [anon_sym_PLUS_EQ] = ACTIONS(2718), + [anon_sym_DASH_EQ] = ACTIONS(2718), + [anon_sym_PIPE_EQ] = ACTIONS(2718), + [anon_sym_CARET_EQ] = ACTIONS(2718), + [anon_sym_COLON_EQ] = ACTIONS(2718), + [anon_sym_lock] = ACTIONS(2718), + [anon_sym_rlock] = ACTIONS(2718), + [anon_sym_unsafe] = ACTIONS(2718), + [anon_sym_sql] = ACTIONS(2718), + [sym_int_literal] = ACTIONS(2718), + [sym_float_literal] = ACTIONS(2718), + [sym_rune_literal] = ACTIONS(2718), + [sym_pseudo_compile_time_identifier] = ACTIONS(2718), + [anon_sym_shared] = ACTIONS(2718), + [anon_sym_map_LBRACK] = ACTIONS(2718), + [anon_sym_chan] = ACTIONS(2718), + [anon_sym_thread] = ACTIONS(2718), + [anon_sym_atomic] = ACTIONS(2718), + [anon_sym_assert] = ACTIONS(2718), + [anon_sym_defer] = ACTIONS(2718), + [anon_sym_goto] = ACTIONS(2718), + [anon_sym_break] = ACTIONS(2718), + [anon_sym_continue] = ACTIONS(2718), + [anon_sym_return] = ACTIONS(2718), + [anon_sym_DOLLARfor] = ACTIONS(2718), + [anon_sym_for] = ACTIONS(2718), + [anon_sym_POUND] = ACTIONS(2718), + [anon_sym_asm] = ACTIONS(2718), + [anon_sym_AT_LBRACK] = ACTIONS(2718), + [sym___double_quote] = ACTIONS(2718), + [sym___single_quote] = ACTIONS(2718), + [sym___c_double_quote] = ACTIONS(2718), + [sym___c_single_quote] = ACTIONS(2718), + [sym___r_double_quote] = ACTIONS(2718), + [sym___r_single_quote] = ACTIONS(2718), }, [424] = { [sym_line_comment] = STATE(424), [sym_block_comment] = STATE(424), - [sym__expression] = STATE(2455), - [sym__expression_without_blocks] = STATE(2300), - [sym__expression_with_blocks] = STATE(2300), - [sym_inc_expression] = STATE(2307), - [sym_dec_expression] = STATE(2307), - [sym_or_block_expression] = STATE(2307), - [sym_option_propagation_expression] = STATE(2307), - [sym_result_propagation_expression] = STATE(2307), - [sym_anon_struct_value_expression] = STATE(2380), - [sym_go_expression] = STATE(2307), - [sym_spawn_expression] = STATE(2307), - [sym_parenthesized_expression] = STATE(2307), - [sym_call_expression] = STATE(2307), - [sym_type_initializer] = STATE(2380), - [sym_function_literal] = STATE(2307), - [sym_reference_expression] = STATE(2311), - [sym_type_reference_expression] = STATE(3541), - [sym_unary_expression] = STATE(2307), - [sym_receive_expression] = STATE(2307), - [sym_binary_expression] = STATE(2307), - [sym_as_type_cast_expression] = STATE(2307), - [sym__max_group] = STATE(2307), - [sym_literal] = STATE(2292), - [sym_map_init_expression] = STATE(2380), - [sym_array_creation] = STATE(2307), - [sym_fixed_array_creation] = STATE(2307), - [sym_selector_expression] = STATE(2307), - [sym_index_expression] = STATE(2307), - [sym_slice_expression] = STATE(2307), - [sym_if_expression] = STATE(2380), - [sym_compile_time_if_expression] = STATE(2380), - [sym_is_expression] = STATE(2307), - [sym_in_expression] = STATE(2307), - [sym_enum_fetch] = STATE(2307), - [sym_match_expression] = STATE(2380), - [sym_select_expression] = STATE(2380), - [sym_lock_expression] = STATE(2380), - [sym_unsafe_expression] = STATE(2380), - [sym_sql_expression] = STATE(2380), - [sym_c_string_literal] = STATE(2308), - [sym_raw_string_literal] = STATE(2308), - [sym_interpreted_string_literal] = STATE(2308), - [sym_mutability_modifiers] = STATE(824), - [sym_mutable_expression] = STATE(3922), - [sym_expression_list] = STATE(4413), - [sym_plain_type] = STATE(4297), - [sym__plain_type_without_special] = STATE(2302), - [sym_anon_struct_type] = STATE(2303), - [sym_multi_return_type] = STATE(2302), - [sym_result_type] = STATE(2302), - [sym_option_type] = STATE(2302), - [sym_qualified_type] = STATE(3541), - [sym_fixed_array_type] = STATE(2303), - [sym_array_type] = STATE(2303), - [sym_pointer_type] = STATE(2303), - [sym_wrong_pointer_type] = STATE(2303), - [sym_map_type] = STATE(2303), - [sym_channel_type] = STATE(2303), - [sym_shared_type] = STATE(2303), - [sym_thread_type] = STATE(2303), - [sym_atomic_type] = STATE(2303), - [sym_generic_type] = STATE(2303), - [sym_function_type] = STATE(2303), - [sym_identifier] = ACTIONS(1807), + [sym__expression] = STATE(1273), + [sym__expression_without_blocks] = STATE(1318), + [sym__expression_with_blocks] = STATE(1318), + [sym_inc_expression] = STATE(1319), + [sym_dec_expression] = STATE(1319), + [sym_or_block_expression] = STATE(1319), + [sym_option_propagation_expression] = STATE(1319), + [sym_result_propagation_expression] = STATE(1319), + [sym_anon_struct_value_expression] = STATE(1320), + [sym_go_expression] = STATE(1319), + [sym_spawn_expression] = STATE(1319), + [sym_parenthesized_expression] = STATE(1319), + [sym_call_expression] = STATE(1319), + [sym_type_initializer] = STATE(1320), + [sym_function_literal] = STATE(1319), + [sym_reference_expression] = STATE(1298), + [sym_type_reference_expression] = STATE(3460), + [sym_unary_expression] = STATE(1319), + [sym_receive_expression] = STATE(1319), + [sym_binary_expression] = STATE(1319), + [sym_as_type_cast_expression] = STATE(1319), + [sym__max_group] = STATE(1319), + [sym_literal] = STATE(1314), + [sym_map_init_expression] = STATE(1320), + [sym_array_creation] = STATE(1319), + [sym_fixed_array_creation] = STATE(1319), + [sym_selector_expression] = STATE(1319), + [sym_index_expression] = STATE(1319), + [sym_slice_expression] = STATE(1319), + [sym_if_expression] = STATE(1320), + [sym_compile_time_if_expression] = STATE(1320), + [sym_is_expression] = STATE(1319), + [sym_in_expression] = STATE(1319), + [sym_enum_fetch] = STATE(1319), + [sym_match_expression] = STATE(1320), + [sym_select_expression] = STATE(1320), + [sym_lock_expression] = STATE(1320), + [sym_unsafe_expression] = STATE(1320), + [sym_sql_expression] = STATE(1320), + [sym_c_string_literal] = STATE(1291), + [sym_raw_string_literal] = STATE(1291), + [sym_interpreted_string_literal] = STATE(1291), + [sym_mutability_modifiers] = STATE(639), + [sym_plain_type] = STATE(4307), + [sym__plain_type_without_special] = STATE(2360), + [sym_anon_struct_type] = STATE(2362), + [sym_multi_return_type] = STATE(2360), + [sym_result_type] = STATE(2360), + [sym_option_type] = STATE(2360), + [sym_qualified_type] = STATE(3460), + [sym_fixed_array_type] = STATE(2362), + [sym_array_type] = STATE(2362), + [sym_pointer_type] = STATE(2362), + [sym_wrong_pointer_type] = STATE(2362), + [sym_map_type] = STATE(2362), + [sym_channel_type] = STATE(2362), + [sym_shared_type] = STATE(2362), + [sym_thread_type] = STATE(2362), + [sym_atomic_type] = STATE(2362), + [sym_generic_type] = STATE(2362), + [sym_function_type] = STATE(2362), + [aux_sym__array_repeat1] = STATE(405), + [sym_identifier] = ACTIONS(1360), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1428), - [anon_sym_LBRACE] = ACTIONS(2695), - [anon_sym_LPAREN] = ACTIONS(1432), - [anon_sym_fn] = ACTIONS(1434), - [anon_sym_PLUS] = ACTIONS(1811), - [anon_sym_DASH] = ACTIONS(1811), - [anon_sym_STAR] = ACTIONS(1813), - [anon_sym_struct] = ACTIONS(1440), + [anon_sym_DOT] = ACTIONS(1362), + [anon_sym_LBRACE] = ACTIONS(1364), + [anon_sym_LPAREN] = ACTIONS(1366), + [anon_sym_fn] = ACTIONS(1368), + [anon_sym_PLUS] = ACTIONS(1370), + [anon_sym_DASH] = ACTIONS(1370), + [anon_sym_STAR] = ACTIONS(1372), + [anon_sym_RBRACK] = ACTIONS(2720), + [anon_sym_struct] = ACTIONS(1376), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(1815), - [anon_sym_go] = ACTIONS(1817), - [anon_sym_spawn] = ACTIONS(1819), - [anon_sym_json_DOTdecode] = ACTIONS(1448), - [anon_sym_LBRACK2] = ACTIONS(1821), - [anon_sym_TILDE] = ACTIONS(1811), - [anon_sym_CARET] = ACTIONS(1811), - [anon_sym_AMP] = ACTIONS(1823), - [anon_sym_LT_DASH] = ACTIONS(1825), - [sym_none] = ACTIONS(1456), - [sym_true] = ACTIONS(1456), - [sym_false] = ACTIONS(1456), - [sym_nil] = ACTIONS(1456), - [anon_sym_if] = ACTIONS(1827), - [anon_sym_DOLLARif] = ACTIONS(1460), - [anon_sym_match] = ACTIONS(1462), - [anon_sym_select] = ACTIONS(1829), - [anon_sym_lock] = ACTIONS(1831), - [anon_sym_rlock] = ACTIONS(1831), - [anon_sym_unsafe] = ACTIONS(1833), - [anon_sym_sql] = ACTIONS(1470), - [sym_int_literal] = ACTIONS(1456), - [sym_float_literal] = ACTIONS(1472), - [sym_rune_literal] = ACTIONS(1472), - [sym_pseudo_compile_time_identifier] = ACTIONS(1474), + [anon_sym_BANG] = ACTIONS(1378), + [anon_sym_go] = ACTIONS(1380), + [anon_sym_spawn] = ACTIONS(1382), + [anon_sym_json_DOTdecode] = ACTIONS(1384), + [anon_sym_LBRACK2] = ACTIONS(1386), + [anon_sym_TILDE] = ACTIONS(1370), + [anon_sym_CARET] = ACTIONS(1370), + [anon_sym_AMP] = ACTIONS(1388), + [anon_sym_LT_DASH] = ACTIONS(1390), + [sym_none] = ACTIONS(1392), + [sym_true] = ACTIONS(1392), + [sym_false] = ACTIONS(1392), + [sym_nil] = ACTIONS(1392), + [anon_sym_if] = ACTIONS(1865), + [anon_sym_DOLLARif] = ACTIONS(1396), + [anon_sym_match] = ACTIONS(1398), + [anon_sym_select] = ACTIONS(1400), + [anon_sym_lock] = ACTIONS(1402), + [anon_sym_rlock] = ACTIONS(1402), + [anon_sym_unsafe] = ACTIONS(1871), + [anon_sym_sql] = ACTIONS(1406), + [sym_int_literal] = ACTIONS(1392), + [sym_float_literal] = ACTIONS(1410), + [sym_rune_literal] = ACTIONS(1410), + [sym_pseudo_compile_time_identifier] = ACTIONS(1412), [anon_sym_shared] = ACTIONS(83), [anon_sym_map_LBRACK] = ACTIONS(85), [anon_sym_chan] = ACTIONS(87), [anon_sym_thread] = ACTIONS(89), [anon_sym_atomic] = ACTIONS(91), - [sym___double_quote] = ACTIONS(1478), - [sym___single_quote] = ACTIONS(1480), - [sym___c_double_quote] = ACTIONS(1482), - [sym___c_single_quote] = ACTIONS(1484), - [sym___r_double_quote] = ACTIONS(1486), - [sym___r_single_quote] = ACTIONS(1488), + [sym___double_quote] = ACTIONS(1414), + [sym___single_quote] = ACTIONS(1416), + [sym___c_double_quote] = ACTIONS(1418), + [sym___c_single_quote] = ACTIONS(1420), + [sym___r_double_quote] = ACTIONS(1422), + [sym___r_single_quote] = ACTIONS(1424), }, [425] = { [sym_line_comment] = STATE(425), [sym_block_comment] = STATE(425), - [sym__expression] = STATE(2278), - [sym__expression_without_blocks] = STATE(2489), - [sym__expression_with_blocks] = STATE(2489), - [sym_inc_expression] = STATE(2479), - [sym_dec_expression] = STATE(2479), - [sym_or_block_expression] = STATE(2479), - [sym_option_propagation_expression] = STATE(2479), - [sym_result_propagation_expression] = STATE(2479), - [sym_anon_struct_value_expression] = STATE(2491), - [sym_go_expression] = STATE(2479), - [sym_spawn_expression] = STATE(2479), - [sym_parenthesized_expression] = STATE(2479), - [sym_call_expression] = STATE(2479), - [sym_type_initializer] = STATE(2491), - [sym_function_literal] = STATE(2479), - [sym_reference_expression] = STATE(2542), - [sym_type_reference_expression] = STATE(3541), - [sym_unary_expression] = STATE(2479), - [sym_receive_expression] = STATE(2479), - [sym_binary_expression] = STATE(2479), - [sym_as_type_cast_expression] = STATE(2479), - [sym__max_group] = STATE(2479), - [sym_literal] = STATE(2454), - [sym_map_init_expression] = STATE(2491), - [sym_array_creation] = STATE(2479), - [sym_fixed_array_creation] = STATE(2479), - [sym_selector_expression] = STATE(2479), - [sym_index_expression] = STATE(2479), - [sym_slice_expression] = STATE(2479), - [sym_if_expression] = STATE(2491), - [sym_compile_time_if_expression] = STATE(2491), - [sym_is_expression] = STATE(2479), - [sym_in_expression] = STATE(2479), - [sym_enum_fetch] = STATE(2479), - [sym_match_expression] = STATE(2491), - [sym_select_expression] = STATE(2491), - [sym_lock_expression] = STATE(2491), - [sym_unsafe_expression] = STATE(2491), - [sym_sql_expression] = STATE(2491), - [sym_c_string_literal] = STATE(2469), - [sym_raw_string_literal] = STATE(2469), - [sym_interpreted_string_literal] = STATE(2469), - [sym_mutability_modifiers] = STATE(831), - [sym_mutable_expression] = STATE(3510), - [sym_expression_list] = STATE(3694), - [sym_plain_type] = STATE(4255), - [sym__plain_type_without_special] = STATE(2302), - [sym_anon_struct_type] = STATE(2303), - [sym_multi_return_type] = STATE(2302), - [sym_result_type] = STATE(2302), - [sym_option_type] = STATE(2302), - [sym_qualified_type] = STATE(3541), - [sym_fixed_array_type] = STATE(2303), - [sym_array_type] = STATE(2303), - [sym_pointer_type] = STATE(2303), - [sym_wrong_pointer_type] = STATE(2303), - [sym_map_type] = STATE(2303), - [sym_channel_type] = STATE(2303), - [sym_shared_type] = STATE(2303), - [sym_thread_type] = STATE(2303), - [sym_atomic_type] = STATE(2303), - [sym_generic_type] = STATE(2303), - [sym_function_type] = STATE(2303), - [sym_identifier] = ACTIONS(1695), - [anon_sym_SLASH_SLASH] = ACTIONS(3), - [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1697), - [anon_sym_LBRACE] = ACTIONS(2697), - [anon_sym_LPAREN] = ACTIONS(2699), - [anon_sym_fn] = ACTIONS(1703), - [anon_sym_PLUS] = ACTIONS(2701), - [anon_sym_DASH] = ACTIONS(2701), - [anon_sym_STAR] = ACTIONS(2703), - [anon_sym_struct] = ACTIONS(1709), - [anon_sym_mut] = ACTIONS(41), - [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(2705), - [anon_sym_go] = ACTIONS(1713), - [anon_sym_spawn] = ACTIONS(1715), - [anon_sym_json_DOTdecode] = ACTIONS(2707), - [anon_sym_LBRACK2] = ACTIONS(2709), - [anon_sym_TILDE] = ACTIONS(2701), - [anon_sym_CARET] = ACTIONS(2701), - [anon_sym_AMP] = ACTIONS(2711), - [anon_sym_LT_DASH] = ACTIONS(2713), - [sym_none] = ACTIONS(1725), - [sym_true] = ACTIONS(1725), - [sym_false] = ACTIONS(1725), - [sym_nil] = ACTIONS(1725), - [anon_sym_if] = ACTIONS(1727), - [anon_sym_DOLLARif] = ACTIONS(1729), - [anon_sym_match] = ACTIONS(1731), - [anon_sym_select] = ACTIONS(1733), - [anon_sym_lock] = ACTIONS(1735), - [anon_sym_rlock] = ACTIONS(1735), - [anon_sym_unsafe] = ACTIONS(1737), - [anon_sym_sql] = ACTIONS(1739), - [sym_int_literal] = ACTIONS(1725), - [sym_float_literal] = ACTIONS(2715), - [sym_rune_literal] = ACTIONS(2715), - [sym_pseudo_compile_time_identifier] = ACTIONS(1741), - [anon_sym_shared] = ACTIONS(83), - [anon_sym_map_LBRACK] = ACTIONS(85), - [anon_sym_chan] = ACTIONS(87), - [anon_sym_thread] = ACTIONS(89), - [anon_sym_atomic] = ACTIONS(91), - [sym___double_quote] = ACTIONS(2717), - [sym___single_quote] = ACTIONS(2719), - [sym___c_double_quote] = ACTIONS(2721), - [sym___c_single_quote] = ACTIONS(2723), - [sym___r_double_quote] = ACTIONS(2725), - [sym___r_single_quote] = ACTIONS(2727), + [ts_builtin_sym_end] = ACTIONS(2722), + [sym_identifier] = ACTIONS(2724), + [anon_sym_LF] = ACTIONS(2724), + [anon_sym_CR] = ACTIONS(2724), + [anon_sym_CR_LF] = ACTIONS(2724), + [anon_sym_SLASH_SLASH] = ACTIONS(497), + [anon_sym_SLASH_STAR] = ACTIONS(499), + [anon_sym_DOT] = ACTIONS(2724), + [anon_sym_as] = ACTIONS(2724), + [anon_sym_LBRACE] = ACTIONS(2724), + [anon_sym_COMMA] = ACTIONS(2724), + [anon_sym_const] = ACTIONS(2724), + [anon_sym_LPAREN] = ACTIONS(2724), + [anon_sym_EQ] = ACTIONS(2724), + [anon_sym___global] = ACTIONS(2724), + [anon_sym_type] = ACTIONS(2724), + [anon_sym_PIPE] = ACTIONS(2724), + [anon_sym_fn] = ACTIONS(2724), + [anon_sym_PLUS] = ACTIONS(2724), + [anon_sym_DASH] = ACTIONS(2724), + [anon_sym_STAR] = ACTIONS(2724), + [anon_sym_SLASH] = ACTIONS(2724), + [anon_sym_PERCENT] = ACTIONS(2724), + [anon_sym_LT] = ACTIONS(2724), + [anon_sym_GT] = ACTIONS(2724), + [anon_sym_EQ_EQ] = ACTIONS(2724), + [anon_sym_BANG_EQ] = ACTIONS(2724), + [anon_sym_LT_EQ] = ACTIONS(2724), + [anon_sym_GT_EQ] = ACTIONS(2724), + [anon_sym_LBRACK] = ACTIONS(2722), + [anon_sym_struct] = ACTIONS(2724), + [anon_sym_union] = ACTIONS(2724), + [anon_sym_pub] = ACTIONS(2724), + [anon_sym_mut] = ACTIONS(2724), + [anon_sym_enum] = ACTIONS(2724), + [anon_sym_interface] = ACTIONS(2724), + [anon_sym_PLUS_PLUS] = ACTIONS(2724), + [anon_sym_DASH_DASH] = ACTIONS(2724), + [anon_sym_QMARK] = ACTIONS(2724), + [anon_sym_BANG] = ACTIONS(2724), + [anon_sym_go] = ACTIONS(2724), + [anon_sym_spawn] = ACTIONS(2724), + [anon_sym_json_DOTdecode] = ACTIONS(2724), + [anon_sym_LBRACK2] = ACTIONS(2724), + [anon_sym_TILDE] = ACTIONS(2724), + [anon_sym_CARET] = ACTIONS(2724), + [anon_sym_AMP] = ACTIONS(2724), + [anon_sym_LT_DASH] = ACTIONS(2724), + [anon_sym_LT_LT] = ACTIONS(2724), + [anon_sym_GT_GT] = ACTIONS(2724), + [anon_sym_GT_GT_GT] = ACTIONS(2724), + [anon_sym_AMP_CARET] = ACTIONS(2724), + [anon_sym_AMP_AMP] = ACTIONS(2724), + [anon_sym_PIPE_PIPE] = ACTIONS(2724), + [anon_sym_or] = ACTIONS(2724), + [sym_none] = ACTIONS(2724), + [sym_true] = ACTIONS(2724), + [sym_false] = ACTIONS(2724), + [sym_nil] = ACTIONS(2724), + [anon_sym_QMARK_DOT] = ACTIONS(2724), + [anon_sym_POUND_LBRACK] = ACTIONS(2724), + [anon_sym_if] = ACTIONS(2724), + [anon_sym_DOLLARif] = ACTIONS(2724), + [anon_sym_is] = ACTIONS(2724), + [anon_sym_BANGis] = ACTIONS(2724), + [anon_sym_in] = ACTIONS(2724), + [anon_sym_BANGin] = ACTIONS(2724), + [anon_sym_match] = ACTIONS(2724), + [anon_sym_select] = ACTIONS(2724), + [anon_sym_STAR_EQ] = ACTIONS(2724), + [anon_sym_SLASH_EQ] = ACTIONS(2724), + [anon_sym_PERCENT_EQ] = ACTIONS(2724), + [anon_sym_LT_LT_EQ] = ACTIONS(2724), + [anon_sym_GT_GT_EQ] = ACTIONS(2724), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(2724), + [anon_sym_AMP_EQ] = ACTIONS(2724), + [anon_sym_AMP_CARET_EQ] = ACTIONS(2724), + [anon_sym_PLUS_EQ] = ACTIONS(2724), + [anon_sym_DASH_EQ] = ACTIONS(2724), + [anon_sym_PIPE_EQ] = ACTIONS(2724), + [anon_sym_CARET_EQ] = ACTIONS(2724), + [anon_sym_COLON_EQ] = ACTIONS(2724), + [anon_sym_lock] = ACTIONS(2724), + [anon_sym_rlock] = ACTIONS(2724), + [anon_sym_unsafe] = ACTIONS(2724), + [anon_sym_sql] = ACTIONS(2724), + [sym_int_literal] = ACTIONS(2724), + [sym_float_literal] = ACTIONS(2724), + [sym_rune_literal] = ACTIONS(2724), + [sym_pseudo_compile_time_identifier] = ACTIONS(2724), + [anon_sym_shared] = ACTIONS(2724), + [anon_sym_map_LBRACK] = ACTIONS(2724), + [anon_sym_chan] = ACTIONS(2724), + [anon_sym_thread] = ACTIONS(2724), + [anon_sym_atomic] = ACTIONS(2724), + [anon_sym_assert] = ACTIONS(2724), + [anon_sym_defer] = ACTIONS(2724), + [anon_sym_goto] = ACTIONS(2724), + [anon_sym_break] = ACTIONS(2724), + [anon_sym_continue] = ACTIONS(2724), + [anon_sym_return] = ACTIONS(2724), + [anon_sym_DOLLARfor] = ACTIONS(2724), + [anon_sym_for] = ACTIONS(2724), + [anon_sym_POUND] = ACTIONS(2724), + [anon_sym_asm] = ACTIONS(2724), + [anon_sym_AT_LBRACK] = ACTIONS(2724), + [sym___double_quote] = ACTIONS(2724), + [sym___single_quote] = ACTIONS(2724), + [sym___c_double_quote] = ACTIONS(2724), + [sym___c_single_quote] = ACTIONS(2724), + [sym___r_double_quote] = ACTIONS(2724), + [sym___r_single_quote] = ACTIONS(2724), }, [426] = { [sym_line_comment] = STATE(426), [sym_block_comment] = STATE(426), - [ts_builtin_sym_end] = ACTIONS(2729), - [sym_identifier] = ACTIONS(2731), - [anon_sym_LF] = ACTIONS(2731), - [anon_sym_CR] = ACTIONS(2731), - [anon_sym_CR_LF] = ACTIONS(2731), + [ts_builtin_sym_end] = ACTIONS(2726), + [sym_identifier] = ACTIONS(2728), + [anon_sym_LF] = ACTIONS(2728), + [anon_sym_CR] = ACTIONS(2728), + [anon_sym_CR_LF] = ACTIONS(2728), [anon_sym_SLASH_SLASH] = ACTIONS(497), [anon_sym_SLASH_STAR] = ACTIONS(499), - [anon_sym_DOT] = ACTIONS(2731), - [anon_sym_as] = ACTIONS(2731), - [anon_sym_LBRACE] = ACTIONS(2731), - [anon_sym_COMMA] = ACTIONS(2731), - [anon_sym_const] = ACTIONS(2731), - [anon_sym_LPAREN] = ACTIONS(2731), - [anon_sym_EQ] = ACTIONS(2731), - [anon_sym___global] = ACTIONS(2731), - [anon_sym_type] = ACTIONS(2731), - [anon_sym_PIPE] = ACTIONS(2731), - [anon_sym_fn] = ACTIONS(2731), - [anon_sym_PLUS] = ACTIONS(2731), - [anon_sym_DASH] = ACTIONS(2731), - [anon_sym_STAR] = ACTIONS(2731), - [anon_sym_SLASH] = ACTIONS(2731), - [anon_sym_PERCENT] = ACTIONS(2731), - [anon_sym_LT] = ACTIONS(2731), - [anon_sym_GT] = ACTIONS(2731), - [anon_sym_EQ_EQ] = ACTIONS(2731), - [anon_sym_BANG_EQ] = ACTIONS(2731), - [anon_sym_LT_EQ] = ACTIONS(2731), - [anon_sym_GT_EQ] = ACTIONS(2731), - [anon_sym_LBRACK] = ACTIONS(2729), - [anon_sym_struct] = ACTIONS(2731), - [anon_sym_union] = ACTIONS(2731), - [anon_sym_pub] = ACTIONS(2731), - [anon_sym_mut] = ACTIONS(2731), - [anon_sym_enum] = ACTIONS(2731), - [anon_sym_interface] = ACTIONS(2731), - [anon_sym_PLUS_PLUS] = ACTIONS(2731), - [anon_sym_DASH_DASH] = ACTIONS(2731), - [anon_sym_QMARK] = ACTIONS(2731), - [anon_sym_BANG] = ACTIONS(2731), - [anon_sym_go] = ACTIONS(2731), - [anon_sym_spawn] = ACTIONS(2731), - [anon_sym_json_DOTdecode] = ACTIONS(2731), - [anon_sym_LBRACK2] = ACTIONS(2731), - [anon_sym_TILDE] = ACTIONS(2731), - [anon_sym_CARET] = ACTIONS(2731), - [anon_sym_AMP] = ACTIONS(2731), - [anon_sym_LT_DASH] = ACTIONS(2731), - [anon_sym_LT_LT] = ACTIONS(2731), - [anon_sym_GT_GT] = ACTIONS(2731), - [anon_sym_GT_GT_GT] = ACTIONS(2731), - [anon_sym_AMP_CARET] = ACTIONS(2731), - [anon_sym_AMP_AMP] = ACTIONS(2731), - [anon_sym_PIPE_PIPE] = ACTIONS(2731), - [anon_sym_or] = ACTIONS(2731), - [sym_none] = ACTIONS(2731), - [sym_true] = ACTIONS(2731), - [sym_false] = ACTIONS(2731), - [sym_nil] = ACTIONS(2731), - [anon_sym_QMARK_DOT] = ACTIONS(2731), - [anon_sym_POUND_LBRACK] = ACTIONS(2731), - [anon_sym_if] = ACTIONS(2731), - [anon_sym_DOLLARif] = ACTIONS(2731), - [anon_sym_is] = ACTIONS(2731), - [anon_sym_BANGis] = ACTIONS(2731), - [anon_sym_in] = ACTIONS(2731), - [anon_sym_BANGin] = ACTIONS(2731), - [anon_sym_match] = ACTIONS(2731), - [anon_sym_select] = ACTIONS(2731), - [anon_sym_STAR_EQ] = ACTIONS(2731), - [anon_sym_SLASH_EQ] = ACTIONS(2731), - [anon_sym_PERCENT_EQ] = ACTIONS(2731), - [anon_sym_LT_LT_EQ] = ACTIONS(2731), - [anon_sym_GT_GT_EQ] = ACTIONS(2731), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(2731), - [anon_sym_AMP_EQ] = ACTIONS(2731), - [anon_sym_AMP_CARET_EQ] = ACTIONS(2731), - [anon_sym_PLUS_EQ] = ACTIONS(2731), - [anon_sym_DASH_EQ] = ACTIONS(2731), - [anon_sym_PIPE_EQ] = ACTIONS(2731), - [anon_sym_CARET_EQ] = ACTIONS(2731), - [anon_sym_COLON_EQ] = ACTIONS(2731), - [anon_sym_lock] = ACTIONS(2731), - [anon_sym_rlock] = ACTIONS(2731), - [anon_sym_unsafe] = ACTIONS(2731), - [anon_sym_sql] = ACTIONS(2731), - [sym_int_literal] = ACTIONS(2731), - [sym_float_literal] = ACTIONS(2731), - [sym_rune_literal] = ACTIONS(2731), - [sym_pseudo_compile_time_identifier] = ACTIONS(2731), - [anon_sym_shared] = ACTIONS(2731), - [anon_sym_map_LBRACK] = ACTIONS(2731), - [anon_sym_chan] = ACTIONS(2731), - [anon_sym_thread] = ACTIONS(2731), - [anon_sym_atomic] = ACTIONS(2731), - [anon_sym_assert] = ACTIONS(2731), - [anon_sym_defer] = ACTIONS(2731), - [anon_sym_goto] = ACTIONS(2731), - [anon_sym_break] = ACTIONS(2731), - [anon_sym_continue] = ACTIONS(2731), - [anon_sym_return] = ACTIONS(2731), - [anon_sym_DOLLARfor] = ACTIONS(2731), - [anon_sym_for] = ACTIONS(2731), - [anon_sym_POUND] = ACTIONS(2731), - [anon_sym_asm] = ACTIONS(2731), - [anon_sym_AT_LBRACK] = ACTIONS(2731), - [sym___double_quote] = ACTIONS(2731), - [sym___single_quote] = ACTIONS(2731), - [sym___c_double_quote] = ACTIONS(2731), - [sym___c_single_quote] = ACTIONS(2731), - [sym___r_double_quote] = ACTIONS(2731), - [sym___r_single_quote] = ACTIONS(2731), + [anon_sym_DOT] = ACTIONS(2728), + [anon_sym_as] = ACTIONS(2728), + [anon_sym_LBRACE] = ACTIONS(2728), + [anon_sym_COMMA] = ACTIONS(2728), + [anon_sym_const] = ACTIONS(2728), + [anon_sym_LPAREN] = ACTIONS(2728), + [anon_sym_EQ] = ACTIONS(2728), + [anon_sym___global] = ACTIONS(2728), + [anon_sym_type] = ACTIONS(2728), + [anon_sym_PIPE] = ACTIONS(2728), + [anon_sym_fn] = ACTIONS(2728), + [anon_sym_PLUS] = ACTIONS(2728), + [anon_sym_DASH] = ACTIONS(2728), + [anon_sym_STAR] = ACTIONS(2728), + [anon_sym_SLASH] = ACTIONS(2728), + [anon_sym_PERCENT] = ACTIONS(2728), + [anon_sym_LT] = ACTIONS(2728), + [anon_sym_GT] = ACTIONS(2728), + [anon_sym_EQ_EQ] = ACTIONS(2728), + [anon_sym_BANG_EQ] = ACTIONS(2728), + [anon_sym_LT_EQ] = ACTIONS(2728), + [anon_sym_GT_EQ] = ACTIONS(2728), + [anon_sym_LBRACK] = ACTIONS(2726), + [anon_sym_struct] = ACTIONS(2728), + [anon_sym_union] = ACTIONS(2728), + [anon_sym_pub] = ACTIONS(2728), + [anon_sym_mut] = ACTIONS(2728), + [anon_sym_enum] = ACTIONS(2728), + [anon_sym_interface] = ACTIONS(2728), + [anon_sym_PLUS_PLUS] = ACTIONS(2728), + [anon_sym_DASH_DASH] = ACTIONS(2728), + [anon_sym_QMARK] = ACTIONS(2728), + [anon_sym_BANG] = ACTIONS(2728), + [anon_sym_go] = ACTIONS(2728), + [anon_sym_spawn] = ACTIONS(2728), + [anon_sym_json_DOTdecode] = ACTIONS(2728), + [anon_sym_LBRACK2] = ACTIONS(2728), + [anon_sym_TILDE] = ACTIONS(2728), + [anon_sym_CARET] = ACTIONS(2728), + [anon_sym_AMP] = ACTIONS(2728), + [anon_sym_LT_DASH] = ACTIONS(2728), + [anon_sym_LT_LT] = ACTIONS(2728), + [anon_sym_GT_GT] = ACTIONS(2728), + [anon_sym_GT_GT_GT] = ACTIONS(2728), + [anon_sym_AMP_CARET] = ACTIONS(2728), + [anon_sym_AMP_AMP] = ACTIONS(2728), + [anon_sym_PIPE_PIPE] = ACTIONS(2728), + [anon_sym_or] = ACTIONS(2728), + [sym_none] = ACTIONS(2728), + [sym_true] = ACTIONS(2728), + [sym_false] = ACTIONS(2728), + [sym_nil] = ACTIONS(2728), + [anon_sym_QMARK_DOT] = ACTIONS(2728), + [anon_sym_POUND_LBRACK] = ACTIONS(2728), + [anon_sym_if] = ACTIONS(2728), + [anon_sym_DOLLARif] = ACTIONS(2728), + [anon_sym_is] = ACTIONS(2728), + [anon_sym_BANGis] = ACTIONS(2728), + [anon_sym_in] = ACTIONS(2728), + [anon_sym_BANGin] = ACTIONS(2728), + [anon_sym_match] = ACTIONS(2728), + [anon_sym_select] = ACTIONS(2728), + [anon_sym_STAR_EQ] = ACTIONS(2728), + [anon_sym_SLASH_EQ] = ACTIONS(2728), + [anon_sym_PERCENT_EQ] = ACTIONS(2728), + [anon_sym_LT_LT_EQ] = ACTIONS(2728), + [anon_sym_GT_GT_EQ] = ACTIONS(2728), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(2728), + [anon_sym_AMP_EQ] = ACTIONS(2728), + [anon_sym_AMP_CARET_EQ] = ACTIONS(2728), + [anon_sym_PLUS_EQ] = ACTIONS(2728), + [anon_sym_DASH_EQ] = ACTIONS(2728), + [anon_sym_PIPE_EQ] = ACTIONS(2728), + [anon_sym_CARET_EQ] = ACTIONS(2728), + [anon_sym_COLON_EQ] = ACTIONS(2728), + [anon_sym_lock] = ACTIONS(2728), + [anon_sym_rlock] = ACTIONS(2728), + [anon_sym_unsafe] = ACTIONS(2728), + [anon_sym_sql] = ACTIONS(2728), + [sym_int_literal] = ACTIONS(2728), + [sym_float_literal] = ACTIONS(2728), + [sym_rune_literal] = ACTIONS(2728), + [sym_pseudo_compile_time_identifier] = ACTIONS(2728), + [anon_sym_shared] = ACTIONS(2728), + [anon_sym_map_LBRACK] = ACTIONS(2728), + [anon_sym_chan] = ACTIONS(2728), + [anon_sym_thread] = ACTIONS(2728), + [anon_sym_atomic] = ACTIONS(2728), + [anon_sym_assert] = ACTIONS(2728), + [anon_sym_defer] = ACTIONS(2728), + [anon_sym_goto] = ACTIONS(2728), + [anon_sym_break] = ACTIONS(2728), + [anon_sym_continue] = ACTIONS(2728), + [anon_sym_return] = ACTIONS(2728), + [anon_sym_DOLLARfor] = ACTIONS(2728), + [anon_sym_for] = ACTIONS(2728), + [anon_sym_POUND] = ACTIONS(2728), + [anon_sym_asm] = ACTIONS(2728), + [anon_sym_AT_LBRACK] = ACTIONS(2728), + [sym___double_quote] = ACTIONS(2728), + [sym___single_quote] = ACTIONS(2728), + [sym___c_double_quote] = ACTIONS(2728), + [sym___c_single_quote] = ACTIONS(2728), + [sym___r_double_quote] = ACTIONS(2728), + [sym___r_single_quote] = ACTIONS(2728), }, [427] = { [sym_line_comment] = STATE(427), [sym_block_comment] = STATE(427), - [sym__expression] = STATE(2611), - [sym__expression_without_blocks] = STATE(2772), - [sym__expression_with_blocks] = STATE(2625), - [sym_inc_expression] = STATE(2765), - [sym_dec_expression] = STATE(2765), - [sym_or_block_expression] = STATE(2765), - [sym_option_propagation_expression] = STATE(2765), - [sym_result_propagation_expression] = STATE(2765), - [sym_anon_struct_value_expression] = STATE(2619), - [sym_go_expression] = STATE(2765), - [sym_spawn_expression] = STATE(2765), - [sym_parenthesized_expression] = STATE(2765), - [sym_call_expression] = STATE(2765), - [sym_type_initializer] = STATE(2619), - [sym_function_literal] = STATE(2765), - [sym_reference_expression] = STATE(2764), - [sym_type_reference_expression] = STATE(3541), - [sym_unary_expression] = STATE(2765), - [sym_receive_expression] = STATE(2765), - [sym_binary_expression] = STATE(2765), - [sym_as_type_cast_expression] = STATE(2765), - [sym__max_group] = STATE(2765), - [sym_literal] = STATE(2769), - [sym_map_init_expression] = STATE(2619), - [sym_array_creation] = STATE(2765), - [sym_fixed_array_creation] = STATE(2765), - [sym_selector_expression] = STATE(2765), - [sym_index_expression] = STATE(2765), - [sym_slice_expression] = STATE(2765), - [sym_if_expression] = STATE(2619), - [sym_compile_time_if_expression] = STATE(2619), - [sym_is_expression] = STATE(2765), - [sym_in_expression] = STATE(2765), - [sym_enum_fetch] = STATE(2765), - [sym_match_expression] = STATE(2619), - [sym_match_arm_type] = STATE(4252), - [sym_select_expression] = STATE(2619), - [sym_lock_expression] = STATE(2619), - [sym_unsafe_expression] = STATE(2619), - [sym_sql_expression] = STATE(2619), - [sym_c_string_literal] = STATE(2660), - [sym_raw_string_literal] = STATE(2660), - [sym_interpreted_string_literal] = STATE(2660), - [sym_mutability_modifiers] = STATE(567), - [sym_plain_type] = STATE(3784), - [sym__plain_type_without_special] = STATE(2302), - [sym_anon_struct_type] = STATE(2303), - [sym_multi_return_type] = STATE(2302), - [sym_result_type] = STATE(2302), - [sym_option_type] = STATE(2302), - [sym_qualified_type] = STATE(3541), - [sym_fixed_array_type] = STATE(2303), - [sym_array_type] = STATE(2303), - [sym_pointer_type] = STATE(2303), - [sym_wrong_pointer_type] = STATE(2303), - [sym_map_type] = STATE(2303), - [sym_channel_type] = STATE(2303), - [sym_shared_type] = STATE(2303), - [sym_thread_type] = STATE(2303), - [sym_atomic_type] = STATE(2303), - [sym_generic_type] = STATE(2303), - [sym_function_type] = STATE(2303), - [sym__definite_range] = STATE(4298), - [sym_identifier] = ACTIONS(1079), - [anon_sym_SLASH_SLASH] = ACTIONS(3), - [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1081), - [anon_sym_LBRACE] = ACTIONS(1083), - [anon_sym_LPAREN] = ACTIONS(1087), - [anon_sym_fn] = ACTIONS(1089), - [anon_sym_PLUS] = ACTIONS(1091), - [anon_sym_DASH] = ACTIONS(1091), - [anon_sym_STAR] = ACTIONS(1093), - [anon_sym_struct] = ACTIONS(1095), - [anon_sym_mut] = ACTIONS(41), - [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(1097), - [anon_sym_go] = ACTIONS(1099), - [anon_sym_spawn] = ACTIONS(1101), - [anon_sym_json_DOTdecode] = ACTIONS(1103), - [anon_sym_LBRACK2] = ACTIONS(1105), - [anon_sym_TILDE] = ACTIONS(1091), - [anon_sym_CARET] = ACTIONS(1091), - [anon_sym_AMP] = ACTIONS(1107), - [anon_sym_LT_DASH] = ACTIONS(1109), - [sym_none] = ACTIONS(1111), - [sym_true] = ACTIONS(1111), - [sym_false] = ACTIONS(1111), - [sym_nil] = ACTIONS(1111), - [anon_sym_if] = ACTIONS(1113), - [anon_sym_DOLLARif] = ACTIONS(1117), - [anon_sym_match] = ACTIONS(1119), - [anon_sym_select] = ACTIONS(1121), - [anon_sym_lock] = ACTIONS(1123), - [anon_sym_rlock] = ACTIONS(1123), - [anon_sym_unsafe] = ACTIONS(1125), - [anon_sym_sql] = ACTIONS(1127), - [sym_int_literal] = ACTIONS(1111), - [sym_float_literal] = ACTIONS(1129), - [sym_rune_literal] = ACTIONS(1129), - [sym_pseudo_compile_time_identifier] = ACTIONS(1131), - [anon_sym_shared] = ACTIONS(83), - [anon_sym_map_LBRACK] = ACTIONS(85), - [anon_sym_chan] = ACTIONS(87), - [anon_sym_thread] = ACTIONS(89), - [anon_sym_atomic] = ACTIONS(91), - [sym___double_quote] = ACTIONS(1133), - [sym___single_quote] = ACTIONS(1135), - [sym___c_double_quote] = ACTIONS(1137), - [sym___c_single_quote] = ACTIONS(1139), - [sym___r_double_quote] = ACTIONS(1141), - [sym___r_single_quote] = ACTIONS(1143), + [ts_builtin_sym_end] = ACTIONS(2730), + [sym_identifier] = ACTIONS(2732), + [anon_sym_LF] = ACTIONS(2732), + [anon_sym_CR] = ACTIONS(2732), + [anon_sym_CR_LF] = ACTIONS(2732), + [anon_sym_SLASH_SLASH] = ACTIONS(497), + [anon_sym_SLASH_STAR] = ACTIONS(499), + [anon_sym_DOT] = ACTIONS(2732), + [anon_sym_as] = ACTIONS(2732), + [anon_sym_LBRACE] = ACTIONS(2732), + [anon_sym_COMMA] = ACTIONS(2732), + [anon_sym_const] = ACTIONS(2732), + [anon_sym_LPAREN] = ACTIONS(2732), + [anon_sym_EQ] = ACTIONS(2732), + [anon_sym___global] = ACTIONS(2732), + [anon_sym_type] = ACTIONS(2732), + [anon_sym_PIPE] = ACTIONS(2732), + [anon_sym_fn] = ACTIONS(2732), + [anon_sym_PLUS] = ACTIONS(2732), + [anon_sym_DASH] = ACTIONS(2732), + [anon_sym_STAR] = ACTIONS(2732), + [anon_sym_SLASH] = ACTIONS(2732), + [anon_sym_PERCENT] = ACTIONS(2732), + [anon_sym_LT] = ACTIONS(2732), + [anon_sym_GT] = ACTIONS(2732), + [anon_sym_EQ_EQ] = ACTIONS(2732), + [anon_sym_BANG_EQ] = ACTIONS(2732), + [anon_sym_LT_EQ] = ACTIONS(2732), + [anon_sym_GT_EQ] = ACTIONS(2732), + [anon_sym_LBRACK] = ACTIONS(2730), + [anon_sym_struct] = ACTIONS(2732), + [anon_sym_union] = ACTIONS(2732), + [anon_sym_pub] = ACTIONS(2732), + [anon_sym_mut] = ACTIONS(2732), + [anon_sym_enum] = ACTIONS(2732), + [anon_sym_interface] = ACTIONS(2732), + [anon_sym_PLUS_PLUS] = ACTIONS(2732), + [anon_sym_DASH_DASH] = ACTIONS(2732), + [anon_sym_QMARK] = ACTIONS(2732), + [anon_sym_BANG] = ACTIONS(2732), + [anon_sym_go] = ACTIONS(2732), + [anon_sym_spawn] = ACTIONS(2732), + [anon_sym_json_DOTdecode] = ACTIONS(2732), + [anon_sym_LBRACK2] = ACTIONS(2732), + [anon_sym_TILDE] = ACTIONS(2732), + [anon_sym_CARET] = ACTIONS(2732), + [anon_sym_AMP] = ACTIONS(2732), + [anon_sym_LT_DASH] = ACTIONS(2732), + [anon_sym_LT_LT] = ACTIONS(2732), + [anon_sym_GT_GT] = ACTIONS(2732), + [anon_sym_GT_GT_GT] = ACTIONS(2732), + [anon_sym_AMP_CARET] = ACTIONS(2732), + [anon_sym_AMP_AMP] = ACTIONS(2732), + [anon_sym_PIPE_PIPE] = ACTIONS(2732), + [anon_sym_or] = ACTIONS(2732), + [sym_none] = ACTIONS(2732), + [sym_true] = ACTIONS(2732), + [sym_false] = ACTIONS(2732), + [sym_nil] = ACTIONS(2732), + [anon_sym_QMARK_DOT] = ACTIONS(2732), + [anon_sym_POUND_LBRACK] = ACTIONS(2732), + [anon_sym_if] = ACTIONS(2732), + [anon_sym_DOLLARif] = ACTIONS(2732), + [anon_sym_is] = ACTIONS(2732), + [anon_sym_BANGis] = ACTIONS(2732), + [anon_sym_in] = ACTIONS(2732), + [anon_sym_BANGin] = ACTIONS(2732), + [anon_sym_match] = ACTIONS(2732), + [anon_sym_select] = ACTIONS(2732), + [anon_sym_STAR_EQ] = ACTIONS(2732), + [anon_sym_SLASH_EQ] = ACTIONS(2732), + [anon_sym_PERCENT_EQ] = ACTIONS(2732), + [anon_sym_LT_LT_EQ] = ACTIONS(2732), + [anon_sym_GT_GT_EQ] = ACTIONS(2732), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(2732), + [anon_sym_AMP_EQ] = ACTIONS(2732), + [anon_sym_AMP_CARET_EQ] = ACTIONS(2732), + [anon_sym_PLUS_EQ] = ACTIONS(2732), + [anon_sym_DASH_EQ] = ACTIONS(2732), + [anon_sym_PIPE_EQ] = ACTIONS(2732), + [anon_sym_CARET_EQ] = ACTIONS(2732), + [anon_sym_COLON_EQ] = ACTIONS(2732), + [anon_sym_lock] = ACTIONS(2732), + [anon_sym_rlock] = ACTIONS(2732), + [anon_sym_unsafe] = ACTIONS(2732), + [anon_sym_sql] = ACTIONS(2732), + [sym_int_literal] = ACTIONS(2732), + [sym_float_literal] = ACTIONS(2732), + [sym_rune_literal] = ACTIONS(2732), + [sym_pseudo_compile_time_identifier] = ACTIONS(2732), + [anon_sym_shared] = ACTIONS(2732), + [anon_sym_map_LBRACK] = ACTIONS(2732), + [anon_sym_chan] = ACTIONS(2732), + [anon_sym_thread] = ACTIONS(2732), + [anon_sym_atomic] = ACTIONS(2732), + [anon_sym_assert] = ACTIONS(2732), + [anon_sym_defer] = ACTIONS(2732), + [anon_sym_goto] = ACTIONS(2732), + [anon_sym_break] = ACTIONS(2732), + [anon_sym_continue] = ACTIONS(2732), + [anon_sym_return] = ACTIONS(2732), + [anon_sym_DOLLARfor] = ACTIONS(2732), + [anon_sym_for] = ACTIONS(2732), + [anon_sym_POUND] = ACTIONS(2732), + [anon_sym_asm] = ACTIONS(2732), + [anon_sym_AT_LBRACK] = ACTIONS(2732), + [sym___double_quote] = ACTIONS(2732), + [sym___single_quote] = ACTIONS(2732), + [sym___c_double_quote] = ACTIONS(2732), + [sym___c_single_quote] = ACTIONS(2732), + [sym___r_double_quote] = ACTIONS(2732), + [sym___r_single_quote] = ACTIONS(2732), }, [428] = { [sym_line_comment] = STATE(428), [sym_block_comment] = STATE(428), - [sym__expression] = STATE(2587), - [sym__expression_without_blocks] = STATE(2300), - [sym__expression_with_blocks] = STATE(2300), - [sym_inc_expression] = STATE(2307), - [sym_dec_expression] = STATE(2307), - [sym_or_block_expression] = STATE(2307), - [sym_option_propagation_expression] = STATE(2307), - [sym_result_propagation_expression] = STATE(2307), - [sym_anon_struct_value_expression] = STATE(2380), - [sym_go_expression] = STATE(2307), - [sym_spawn_expression] = STATE(2307), - [sym_parenthesized_expression] = STATE(2307), - [sym_call_expression] = STATE(2307), - [sym_type_initializer] = STATE(2380), - [sym_function_literal] = STATE(2307), - [sym_reference_expression] = STATE(2311), - [sym_type_reference_expression] = STATE(3541), - [sym_unary_expression] = STATE(2307), - [sym_receive_expression] = STATE(2307), - [sym_binary_expression] = STATE(2307), - [sym_as_type_cast_expression] = STATE(2307), - [sym__max_group] = STATE(2307), - [sym_literal] = STATE(2292), - [sym_map_init_expression] = STATE(2380), - [sym_array_creation] = STATE(2307), - [sym_fixed_array_creation] = STATE(2307), - [sym_selector_expression] = STATE(2307), - [sym_index_expression] = STATE(2307), - [sym_slice_expression] = STATE(2307), - [sym_if_expression] = STATE(2380), - [sym_compile_time_if_expression] = STATE(2380), - [sym_is_expression] = STATE(2307), - [sym_in_expression] = STATE(2307), - [sym_enum_fetch] = STATE(2307), - [sym_match_expression] = STATE(2380), - [sym_select_expression] = STATE(2380), - [sym_lock_expression] = STATE(2380), - [sym_unsafe_expression] = STATE(2380), - [sym_sql_expression] = STATE(2380), - [sym_c_string_literal] = STATE(2308), - [sym_raw_string_literal] = STATE(2308), - [sym_interpreted_string_literal] = STATE(2308), - [sym_mutability_modifiers] = STATE(939), - [sym_plain_type] = STATE(4297), - [sym__plain_type_without_special] = STATE(2302), - [sym_anon_struct_type] = STATE(2303), - [sym_multi_return_type] = STATE(2302), - [sym_result_type] = STATE(2302), - [sym_option_type] = STATE(2302), - [sym_qualified_type] = STATE(3541), - [sym_fixed_array_type] = STATE(2303), - [sym_array_type] = STATE(2303), - [sym_pointer_type] = STATE(2303), - [sym_wrong_pointer_type] = STATE(2303), - [sym_map_type] = STATE(2303), - [sym_channel_type] = STATE(2303), - [sym_shared_type] = STATE(2303), - [sym_thread_type] = STATE(2303), - [sym_atomic_type] = STATE(2303), - [sym_generic_type] = STATE(2303), - [sym_function_type] = STATE(2303), - [sym_range] = STATE(4401), - [sym_identifier] = ACTIONS(1426), - [anon_sym_SLASH_SLASH] = ACTIONS(3), - [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1428), - [anon_sym_LBRACE] = ACTIONS(1430), - [anon_sym_LPAREN] = ACTIONS(1432), - [anon_sym_fn] = ACTIONS(1434), - [anon_sym_PLUS] = ACTIONS(1436), - [anon_sym_DASH] = ACTIONS(1436), - [anon_sym_STAR] = ACTIONS(1438), - [anon_sym_struct] = ACTIONS(1440), - [anon_sym_mut] = ACTIONS(41), - [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(1442), - [anon_sym_go] = ACTIONS(1444), - [anon_sym_spawn] = ACTIONS(1446), - [anon_sym_json_DOTdecode] = ACTIONS(1448), - [anon_sym_LBRACK2] = ACTIONS(1450), - [anon_sym_TILDE] = ACTIONS(1436), - [anon_sym_CARET] = ACTIONS(1436), - [anon_sym_AMP] = ACTIONS(1452), - [anon_sym_LT_DASH] = ACTIONS(1454), - [sym_none] = ACTIONS(1456), - [sym_true] = ACTIONS(1456), - [sym_false] = ACTIONS(1456), - [sym_nil] = ACTIONS(1456), - [anon_sym_if] = ACTIONS(1827), - [anon_sym_DOLLARif] = ACTIONS(1460), - [anon_sym_match] = ACTIONS(1462), - [anon_sym_select] = ACTIONS(1464), - [anon_sym_lock] = ACTIONS(1466), - [anon_sym_rlock] = ACTIONS(1466), - [anon_sym_unsafe] = ACTIONS(1833), - [anon_sym_sql] = ACTIONS(1470), - [sym_int_literal] = ACTIONS(1456), - [sym_float_literal] = ACTIONS(1472), - [sym_rune_literal] = ACTIONS(1472), - [sym_pseudo_compile_time_identifier] = ACTIONS(1474), - [anon_sym_shared] = ACTIONS(83), - [anon_sym_map_LBRACK] = ACTIONS(85), - [anon_sym_chan] = ACTIONS(87), - [anon_sym_thread] = ACTIONS(89), - [anon_sym_atomic] = ACTIONS(91), - [anon_sym_DOT_DOT] = ACTIONS(1476), - [sym___double_quote] = ACTIONS(1478), - [sym___single_quote] = ACTIONS(1480), - [sym___c_double_quote] = ACTIONS(1482), - [sym___c_single_quote] = ACTIONS(1484), - [sym___r_double_quote] = ACTIONS(1486), - [sym___r_single_quote] = ACTIONS(1488), + [ts_builtin_sym_end] = ACTIONS(2734), + [sym_identifier] = ACTIONS(2736), + [anon_sym_LF] = ACTIONS(2736), + [anon_sym_CR] = ACTIONS(2736), + [anon_sym_CR_LF] = ACTIONS(2736), + [anon_sym_SLASH_SLASH] = ACTIONS(497), + [anon_sym_SLASH_STAR] = ACTIONS(499), + [anon_sym_DOT] = ACTIONS(2736), + [anon_sym_as] = ACTIONS(2736), + [anon_sym_LBRACE] = ACTIONS(2736), + [anon_sym_COMMA] = ACTIONS(2736), + [anon_sym_const] = ACTIONS(2736), + [anon_sym_LPAREN] = ACTIONS(2736), + [anon_sym_EQ] = ACTIONS(2736), + [anon_sym___global] = ACTIONS(2736), + [anon_sym_type] = ACTIONS(2736), + [anon_sym_PIPE] = ACTIONS(2736), + [anon_sym_fn] = ACTIONS(2736), + [anon_sym_PLUS] = ACTIONS(2736), + [anon_sym_DASH] = ACTIONS(2736), + [anon_sym_STAR] = ACTIONS(2736), + [anon_sym_SLASH] = ACTIONS(2736), + [anon_sym_PERCENT] = ACTIONS(2736), + [anon_sym_LT] = ACTIONS(2736), + [anon_sym_GT] = ACTIONS(2736), + [anon_sym_EQ_EQ] = ACTIONS(2736), + [anon_sym_BANG_EQ] = ACTIONS(2736), + [anon_sym_LT_EQ] = ACTIONS(2736), + [anon_sym_GT_EQ] = ACTIONS(2736), + [anon_sym_LBRACK] = ACTIONS(2734), + [anon_sym_struct] = ACTIONS(2736), + [anon_sym_union] = ACTIONS(2736), + [anon_sym_pub] = ACTIONS(2736), + [anon_sym_mut] = ACTIONS(2736), + [anon_sym_enum] = ACTIONS(2736), + [anon_sym_interface] = ACTIONS(2736), + [anon_sym_PLUS_PLUS] = ACTIONS(2736), + [anon_sym_DASH_DASH] = ACTIONS(2736), + [anon_sym_QMARK] = ACTIONS(2736), + [anon_sym_BANG] = ACTIONS(2736), + [anon_sym_go] = ACTIONS(2736), + [anon_sym_spawn] = ACTIONS(2736), + [anon_sym_json_DOTdecode] = ACTIONS(2736), + [anon_sym_LBRACK2] = ACTIONS(2736), + [anon_sym_TILDE] = ACTIONS(2736), + [anon_sym_CARET] = ACTIONS(2736), + [anon_sym_AMP] = ACTIONS(2736), + [anon_sym_LT_DASH] = ACTIONS(2736), + [anon_sym_LT_LT] = ACTIONS(2736), + [anon_sym_GT_GT] = ACTIONS(2736), + [anon_sym_GT_GT_GT] = ACTIONS(2736), + [anon_sym_AMP_CARET] = ACTIONS(2736), + [anon_sym_AMP_AMP] = ACTIONS(2736), + [anon_sym_PIPE_PIPE] = ACTIONS(2736), + [anon_sym_or] = ACTIONS(2736), + [sym_none] = ACTIONS(2736), + [sym_true] = ACTIONS(2736), + [sym_false] = ACTIONS(2736), + [sym_nil] = ACTIONS(2736), + [anon_sym_QMARK_DOT] = ACTIONS(2736), + [anon_sym_POUND_LBRACK] = ACTIONS(2736), + [anon_sym_if] = ACTIONS(2736), + [anon_sym_DOLLARif] = ACTIONS(2736), + [anon_sym_is] = ACTIONS(2736), + [anon_sym_BANGis] = ACTIONS(2736), + [anon_sym_in] = ACTIONS(2736), + [anon_sym_BANGin] = ACTIONS(2736), + [anon_sym_match] = ACTIONS(2736), + [anon_sym_select] = ACTIONS(2736), + [anon_sym_STAR_EQ] = ACTIONS(2736), + [anon_sym_SLASH_EQ] = ACTIONS(2736), + [anon_sym_PERCENT_EQ] = ACTIONS(2736), + [anon_sym_LT_LT_EQ] = ACTIONS(2736), + [anon_sym_GT_GT_EQ] = ACTIONS(2736), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(2736), + [anon_sym_AMP_EQ] = ACTIONS(2736), + [anon_sym_AMP_CARET_EQ] = ACTIONS(2736), + [anon_sym_PLUS_EQ] = ACTIONS(2736), + [anon_sym_DASH_EQ] = ACTIONS(2736), + [anon_sym_PIPE_EQ] = ACTIONS(2736), + [anon_sym_CARET_EQ] = ACTIONS(2736), + [anon_sym_COLON_EQ] = ACTIONS(2736), + [anon_sym_lock] = ACTIONS(2736), + [anon_sym_rlock] = ACTIONS(2736), + [anon_sym_unsafe] = ACTIONS(2736), + [anon_sym_sql] = ACTIONS(2736), + [sym_int_literal] = ACTIONS(2736), + [sym_float_literal] = ACTIONS(2736), + [sym_rune_literal] = ACTIONS(2736), + [sym_pseudo_compile_time_identifier] = ACTIONS(2736), + [anon_sym_shared] = ACTIONS(2736), + [anon_sym_map_LBRACK] = ACTIONS(2736), + [anon_sym_chan] = ACTIONS(2736), + [anon_sym_thread] = ACTIONS(2736), + [anon_sym_atomic] = ACTIONS(2736), + [anon_sym_assert] = ACTIONS(2736), + [anon_sym_defer] = ACTIONS(2736), + [anon_sym_goto] = ACTIONS(2736), + [anon_sym_break] = ACTIONS(2736), + [anon_sym_continue] = ACTIONS(2736), + [anon_sym_return] = ACTIONS(2736), + [anon_sym_DOLLARfor] = ACTIONS(2736), + [anon_sym_for] = ACTIONS(2736), + [anon_sym_POUND] = ACTIONS(2736), + [anon_sym_asm] = ACTIONS(2736), + [anon_sym_AT_LBRACK] = ACTIONS(2736), + [sym___double_quote] = ACTIONS(2736), + [sym___single_quote] = ACTIONS(2736), + [sym___c_double_quote] = ACTIONS(2736), + [sym___c_single_quote] = ACTIONS(2736), + [sym___r_double_quote] = ACTIONS(2736), + [sym___r_single_quote] = ACTIONS(2736), }, [429] = { [sym_line_comment] = STATE(429), [sym_block_comment] = STATE(429), - [ts_builtin_sym_end] = ACTIONS(2733), - [sym_identifier] = ACTIONS(2735), - [anon_sym_LF] = ACTIONS(2735), - [anon_sym_CR] = ACTIONS(2735), - [anon_sym_CR_LF] = ACTIONS(2735), + [ts_builtin_sym_end] = ACTIONS(2738), + [sym_identifier] = ACTIONS(2740), + [anon_sym_LF] = ACTIONS(2740), + [anon_sym_CR] = ACTIONS(2740), + [anon_sym_CR_LF] = ACTIONS(2740), [anon_sym_SLASH_SLASH] = ACTIONS(497), [anon_sym_SLASH_STAR] = ACTIONS(499), - [anon_sym_DOT] = ACTIONS(2735), - [anon_sym_as] = ACTIONS(2735), - [anon_sym_LBRACE] = ACTIONS(2735), - [anon_sym_COMMA] = ACTIONS(2735), - [anon_sym_const] = ACTIONS(2735), - [anon_sym_LPAREN] = ACTIONS(2735), - [anon_sym_EQ] = ACTIONS(2735), - [anon_sym___global] = ACTIONS(2735), - [anon_sym_type] = ACTIONS(2735), - [anon_sym_PIPE] = ACTIONS(2735), - [anon_sym_fn] = ACTIONS(2735), - [anon_sym_PLUS] = ACTIONS(2735), - [anon_sym_DASH] = ACTIONS(2735), - [anon_sym_STAR] = ACTIONS(2735), - [anon_sym_SLASH] = ACTIONS(2735), - [anon_sym_PERCENT] = ACTIONS(2735), - [anon_sym_LT] = ACTIONS(2735), - [anon_sym_GT] = ACTIONS(2735), - [anon_sym_EQ_EQ] = ACTIONS(2735), - [anon_sym_BANG_EQ] = ACTIONS(2735), - [anon_sym_LT_EQ] = ACTIONS(2735), - [anon_sym_GT_EQ] = ACTIONS(2735), - [anon_sym_LBRACK] = ACTIONS(2733), - [anon_sym_struct] = ACTIONS(2735), - [anon_sym_union] = ACTIONS(2735), - [anon_sym_pub] = ACTIONS(2735), - [anon_sym_mut] = ACTIONS(2735), - [anon_sym_enum] = ACTIONS(2735), - [anon_sym_interface] = ACTIONS(2735), - [anon_sym_PLUS_PLUS] = ACTIONS(2735), - [anon_sym_DASH_DASH] = ACTIONS(2735), - [anon_sym_QMARK] = ACTIONS(2735), - [anon_sym_BANG] = ACTIONS(2735), - [anon_sym_go] = ACTIONS(2735), - [anon_sym_spawn] = ACTIONS(2735), - [anon_sym_json_DOTdecode] = ACTIONS(2735), - [anon_sym_LBRACK2] = ACTIONS(2735), - [anon_sym_TILDE] = ACTIONS(2735), - [anon_sym_CARET] = ACTIONS(2735), - [anon_sym_AMP] = ACTIONS(2735), - [anon_sym_LT_DASH] = ACTIONS(2735), - [anon_sym_LT_LT] = ACTIONS(2735), - [anon_sym_GT_GT] = ACTIONS(2735), - [anon_sym_GT_GT_GT] = ACTIONS(2735), - [anon_sym_AMP_CARET] = ACTIONS(2735), - [anon_sym_AMP_AMP] = ACTIONS(2735), - [anon_sym_PIPE_PIPE] = ACTIONS(2735), - [anon_sym_or] = ACTIONS(2735), - [sym_none] = ACTIONS(2735), - [sym_true] = ACTIONS(2735), - [sym_false] = ACTIONS(2735), - [sym_nil] = ACTIONS(2735), - [anon_sym_QMARK_DOT] = ACTIONS(2735), - [anon_sym_POUND_LBRACK] = ACTIONS(2735), - [anon_sym_if] = ACTIONS(2735), - [anon_sym_DOLLARif] = ACTIONS(2735), - [anon_sym_is] = ACTIONS(2735), - [anon_sym_BANGis] = ACTIONS(2735), - [anon_sym_in] = ACTIONS(2735), - [anon_sym_BANGin] = ACTIONS(2735), - [anon_sym_match] = ACTIONS(2735), - [anon_sym_select] = ACTIONS(2735), - [anon_sym_STAR_EQ] = ACTIONS(2735), - [anon_sym_SLASH_EQ] = ACTIONS(2735), - [anon_sym_PERCENT_EQ] = ACTIONS(2735), - [anon_sym_LT_LT_EQ] = ACTIONS(2735), - [anon_sym_GT_GT_EQ] = ACTIONS(2735), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(2735), - [anon_sym_AMP_EQ] = ACTIONS(2735), - [anon_sym_AMP_CARET_EQ] = ACTIONS(2735), - [anon_sym_PLUS_EQ] = ACTIONS(2735), - [anon_sym_DASH_EQ] = ACTIONS(2735), - [anon_sym_PIPE_EQ] = ACTIONS(2735), - [anon_sym_CARET_EQ] = ACTIONS(2735), - [anon_sym_COLON_EQ] = ACTIONS(2735), - [anon_sym_lock] = ACTIONS(2735), - [anon_sym_rlock] = ACTIONS(2735), - [anon_sym_unsafe] = ACTIONS(2735), - [anon_sym_sql] = ACTIONS(2735), - [sym_int_literal] = ACTIONS(2735), - [sym_float_literal] = ACTIONS(2735), - [sym_rune_literal] = ACTIONS(2735), - [sym_pseudo_compile_time_identifier] = ACTIONS(2735), - [anon_sym_shared] = ACTIONS(2735), - [anon_sym_map_LBRACK] = ACTIONS(2735), - [anon_sym_chan] = ACTIONS(2735), - [anon_sym_thread] = ACTIONS(2735), - [anon_sym_atomic] = ACTIONS(2735), - [anon_sym_assert] = ACTIONS(2735), - [anon_sym_defer] = ACTIONS(2735), - [anon_sym_goto] = ACTIONS(2735), - [anon_sym_break] = ACTIONS(2735), - [anon_sym_continue] = ACTIONS(2735), - [anon_sym_return] = ACTIONS(2735), - [anon_sym_DOLLARfor] = ACTIONS(2735), - [anon_sym_for] = ACTIONS(2735), - [anon_sym_POUND] = ACTIONS(2735), - [anon_sym_asm] = ACTIONS(2735), - [anon_sym_AT_LBRACK] = ACTIONS(2735), - [sym___double_quote] = ACTIONS(2735), - [sym___single_quote] = ACTIONS(2735), - [sym___c_double_quote] = ACTIONS(2735), - [sym___c_single_quote] = ACTIONS(2735), - [sym___r_double_quote] = ACTIONS(2735), - [sym___r_single_quote] = ACTIONS(2735), + [anon_sym_DOT] = ACTIONS(2740), + [anon_sym_as] = ACTIONS(2740), + [anon_sym_LBRACE] = ACTIONS(2740), + [anon_sym_COMMA] = ACTIONS(2740), + [anon_sym_const] = ACTIONS(2740), + [anon_sym_LPAREN] = ACTIONS(2740), + [anon_sym_EQ] = ACTIONS(2740), + [anon_sym___global] = ACTIONS(2740), + [anon_sym_type] = ACTIONS(2740), + [anon_sym_PIPE] = ACTIONS(2740), + [anon_sym_fn] = ACTIONS(2740), + [anon_sym_PLUS] = ACTIONS(2740), + [anon_sym_DASH] = ACTIONS(2740), + [anon_sym_STAR] = ACTIONS(2740), + [anon_sym_SLASH] = ACTIONS(2740), + [anon_sym_PERCENT] = ACTIONS(2740), + [anon_sym_LT] = ACTIONS(2740), + [anon_sym_GT] = ACTIONS(2740), + [anon_sym_EQ_EQ] = ACTIONS(2740), + [anon_sym_BANG_EQ] = ACTIONS(2740), + [anon_sym_LT_EQ] = ACTIONS(2740), + [anon_sym_GT_EQ] = ACTIONS(2740), + [anon_sym_LBRACK] = ACTIONS(2738), + [anon_sym_struct] = ACTIONS(2740), + [anon_sym_union] = ACTIONS(2740), + [anon_sym_pub] = ACTIONS(2740), + [anon_sym_mut] = ACTIONS(2740), + [anon_sym_enum] = ACTIONS(2740), + [anon_sym_interface] = ACTIONS(2740), + [anon_sym_PLUS_PLUS] = ACTIONS(2740), + [anon_sym_DASH_DASH] = ACTIONS(2740), + [anon_sym_QMARK] = ACTIONS(2740), + [anon_sym_BANG] = ACTIONS(2740), + [anon_sym_go] = ACTIONS(2740), + [anon_sym_spawn] = ACTIONS(2740), + [anon_sym_json_DOTdecode] = ACTIONS(2740), + [anon_sym_LBRACK2] = ACTIONS(2740), + [anon_sym_TILDE] = ACTIONS(2740), + [anon_sym_CARET] = ACTIONS(2740), + [anon_sym_AMP] = ACTIONS(2740), + [anon_sym_LT_DASH] = ACTIONS(2740), + [anon_sym_LT_LT] = ACTIONS(2740), + [anon_sym_GT_GT] = ACTIONS(2740), + [anon_sym_GT_GT_GT] = ACTIONS(2740), + [anon_sym_AMP_CARET] = ACTIONS(2740), + [anon_sym_AMP_AMP] = ACTIONS(2740), + [anon_sym_PIPE_PIPE] = ACTIONS(2740), + [anon_sym_or] = ACTIONS(2740), + [sym_none] = ACTIONS(2740), + [sym_true] = ACTIONS(2740), + [sym_false] = ACTIONS(2740), + [sym_nil] = ACTIONS(2740), + [anon_sym_QMARK_DOT] = ACTIONS(2740), + [anon_sym_POUND_LBRACK] = ACTIONS(2740), + [anon_sym_if] = ACTIONS(2740), + [anon_sym_DOLLARif] = ACTIONS(2740), + [anon_sym_is] = ACTIONS(2740), + [anon_sym_BANGis] = ACTIONS(2740), + [anon_sym_in] = ACTIONS(2740), + [anon_sym_BANGin] = ACTIONS(2740), + [anon_sym_match] = ACTIONS(2740), + [anon_sym_select] = ACTIONS(2740), + [anon_sym_STAR_EQ] = ACTIONS(2740), + [anon_sym_SLASH_EQ] = ACTIONS(2740), + [anon_sym_PERCENT_EQ] = ACTIONS(2740), + [anon_sym_LT_LT_EQ] = ACTIONS(2740), + [anon_sym_GT_GT_EQ] = ACTIONS(2740), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(2740), + [anon_sym_AMP_EQ] = ACTIONS(2740), + [anon_sym_AMP_CARET_EQ] = ACTIONS(2740), + [anon_sym_PLUS_EQ] = ACTIONS(2740), + [anon_sym_DASH_EQ] = ACTIONS(2740), + [anon_sym_PIPE_EQ] = ACTIONS(2740), + [anon_sym_CARET_EQ] = ACTIONS(2740), + [anon_sym_COLON_EQ] = ACTIONS(2740), + [anon_sym_lock] = ACTIONS(2740), + [anon_sym_rlock] = ACTIONS(2740), + [anon_sym_unsafe] = ACTIONS(2740), + [anon_sym_sql] = ACTIONS(2740), + [sym_int_literal] = ACTIONS(2740), + [sym_float_literal] = ACTIONS(2740), + [sym_rune_literal] = ACTIONS(2740), + [sym_pseudo_compile_time_identifier] = ACTIONS(2740), + [anon_sym_shared] = ACTIONS(2740), + [anon_sym_map_LBRACK] = ACTIONS(2740), + [anon_sym_chan] = ACTIONS(2740), + [anon_sym_thread] = ACTIONS(2740), + [anon_sym_atomic] = ACTIONS(2740), + [anon_sym_assert] = ACTIONS(2740), + [anon_sym_defer] = ACTIONS(2740), + [anon_sym_goto] = ACTIONS(2740), + [anon_sym_break] = ACTIONS(2740), + [anon_sym_continue] = ACTIONS(2740), + [anon_sym_return] = ACTIONS(2740), + [anon_sym_DOLLARfor] = ACTIONS(2740), + [anon_sym_for] = ACTIONS(2740), + [anon_sym_POUND] = ACTIONS(2740), + [anon_sym_asm] = ACTIONS(2740), + [anon_sym_AT_LBRACK] = ACTIONS(2740), + [sym___double_quote] = ACTIONS(2740), + [sym___single_quote] = ACTIONS(2740), + [sym___c_double_quote] = ACTIONS(2740), + [sym___c_single_quote] = ACTIONS(2740), + [sym___r_double_quote] = ACTIONS(2740), + [sym___r_single_quote] = ACTIONS(2740), }, [430] = { [sym_line_comment] = STATE(430), [sym_block_comment] = STATE(430), - [sym__expression] = STATE(2278), - [sym__expression_without_blocks] = STATE(2489), - [sym__expression_with_blocks] = STATE(2489), - [sym_inc_expression] = STATE(2479), - [sym_dec_expression] = STATE(2479), - [sym_or_block_expression] = STATE(2479), - [sym_option_propagation_expression] = STATE(2479), - [sym_result_propagation_expression] = STATE(2479), - [sym_anon_struct_value_expression] = STATE(2491), - [sym_go_expression] = STATE(2479), - [sym_spawn_expression] = STATE(2479), - [sym_parenthesized_expression] = STATE(2479), - [sym_call_expression] = STATE(2479), - [sym_type_initializer] = STATE(2491), - [sym_function_literal] = STATE(2479), - [sym_reference_expression] = STATE(2542), - [sym_type_reference_expression] = STATE(3541), - [sym_unary_expression] = STATE(2479), - [sym_receive_expression] = STATE(2479), - [sym_binary_expression] = STATE(2479), - [sym_as_type_cast_expression] = STATE(2479), - [sym__max_group] = STATE(2479), - [sym_literal] = STATE(2454), - [sym_map_init_expression] = STATE(2491), - [sym_array_creation] = STATE(2479), - [sym_fixed_array_creation] = STATE(2479), - [sym_selector_expression] = STATE(2479), - [sym_index_expression] = STATE(2479), - [sym_slice_expression] = STATE(2479), - [sym_if_expression] = STATE(2491), - [sym_compile_time_if_expression] = STATE(2491), - [sym_is_expression] = STATE(2479), - [sym_in_expression] = STATE(2479), - [sym_enum_fetch] = STATE(2479), - [sym_match_expression] = STATE(2491), - [sym_select_expression] = STATE(2491), - [sym_lock_expression] = STATE(2491), - [sym_unsafe_expression] = STATE(2491), - [sym_sql_expression] = STATE(2491), - [sym_c_string_literal] = STATE(2469), - [sym_raw_string_literal] = STATE(2469), - [sym_interpreted_string_literal] = STATE(2469), - [sym_mutability_modifiers] = STATE(831), - [sym_mutable_expression] = STATE(3510), - [sym_expression_list] = STATE(3689), - [sym_plain_type] = STATE(4255), - [sym__plain_type_without_special] = STATE(2302), - [sym_anon_struct_type] = STATE(2303), - [sym_multi_return_type] = STATE(2302), - [sym_result_type] = STATE(2302), - [sym_option_type] = STATE(2302), - [sym_qualified_type] = STATE(3541), - [sym_fixed_array_type] = STATE(2303), - [sym_array_type] = STATE(2303), - [sym_pointer_type] = STATE(2303), - [sym_wrong_pointer_type] = STATE(2303), - [sym_map_type] = STATE(2303), - [sym_channel_type] = STATE(2303), - [sym_shared_type] = STATE(2303), - [sym_thread_type] = STATE(2303), - [sym_atomic_type] = STATE(2303), - [sym_generic_type] = STATE(2303), - [sym_function_type] = STATE(2303), - [sym_identifier] = ACTIONS(1695), - [anon_sym_SLASH_SLASH] = ACTIONS(3), - [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1697), - [anon_sym_LBRACE] = ACTIONS(2697), - [anon_sym_LPAREN] = ACTIONS(2699), - [anon_sym_fn] = ACTIONS(1703), - [anon_sym_PLUS] = ACTIONS(2701), - [anon_sym_DASH] = ACTIONS(2701), - [anon_sym_STAR] = ACTIONS(2703), - [anon_sym_struct] = ACTIONS(1709), - [anon_sym_mut] = ACTIONS(41), - [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(2705), - [anon_sym_go] = ACTIONS(1713), - [anon_sym_spawn] = ACTIONS(1715), - [anon_sym_json_DOTdecode] = ACTIONS(2707), - [anon_sym_LBRACK2] = ACTIONS(2709), - [anon_sym_TILDE] = ACTIONS(2701), - [anon_sym_CARET] = ACTIONS(2701), - [anon_sym_AMP] = ACTIONS(2711), - [anon_sym_LT_DASH] = ACTIONS(2713), - [sym_none] = ACTIONS(1725), - [sym_true] = ACTIONS(1725), - [sym_false] = ACTIONS(1725), - [sym_nil] = ACTIONS(1725), - [anon_sym_if] = ACTIONS(1727), - [anon_sym_DOLLARif] = ACTIONS(1729), - [anon_sym_match] = ACTIONS(1731), - [anon_sym_select] = ACTIONS(1733), - [anon_sym_lock] = ACTIONS(1735), - [anon_sym_rlock] = ACTIONS(1735), - [anon_sym_unsafe] = ACTIONS(1737), - [anon_sym_sql] = ACTIONS(1739), - [sym_int_literal] = ACTIONS(1725), - [sym_float_literal] = ACTIONS(2715), - [sym_rune_literal] = ACTIONS(2715), - [sym_pseudo_compile_time_identifier] = ACTIONS(1741), - [anon_sym_shared] = ACTIONS(83), - [anon_sym_map_LBRACK] = ACTIONS(85), - [anon_sym_chan] = ACTIONS(87), - [anon_sym_thread] = ACTIONS(89), - [anon_sym_atomic] = ACTIONS(91), - [sym___double_quote] = ACTIONS(2717), - [sym___single_quote] = ACTIONS(2719), - [sym___c_double_quote] = ACTIONS(2721), - [sym___c_single_quote] = ACTIONS(2723), - [sym___r_double_quote] = ACTIONS(2725), - [sym___r_single_quote] = ACTIONS(2727), + [ts_builtin_sym_end] = ACTIONS(2215), + [sym_identifier] = ACTIONS(2217), + [anon_sym_LF] = ACTIONS(2217), + [anon_sym_CR] = ACTIONS(2217), + [anon_sym_CR_LF] = ACTIONS(2217), + [anon_sym_SLASH_SLASH] = ACTIONS(497), + [anon_sym_SLASH_STAR] = ACTIONS(499), + [anon_sym_DOT] = ACTIONS(2219), + [anon_sym_as] = ACTIONS(2219), + [anon_sym_LBRACE] = ACTIONS(2217), + [anon_sym_COMMA] = ACTIONS(2217), + [anon_sym_const] = ACTIONS(2217), + [anon_sym_LPAREN] = ACTIONS(2219), + [anon_sym_EQ] = ACTIONS(2217), + [anon_sym___global] = ACTIONS(2217), + [anon_sym_type] = ACTIONS(2217), + [anon_sym_PIPE] = ACTIONS(2219), + [anon_sym_fn] = ACTIONS(2217), + [anon_sym_PLUS] = ACTIONS(2219), + [anon_sym_DASH] = ACTIONS(2219), + [anon_sym_STAR] = ACTIONS(2219), + [anon_sym_SLASH] = ACTIONS(2219), + [anon_sym_PERCENT] = ACTIONS(2219), + [anon_sym_LT] = ACTIONS(2219), + [anon_sym_GT] = ACTIONS(2219), + [anon_sym_EQ_EQ] = ACTIONS(2219), + [anon_sym_BANG_EQ] = ACTIONS(2219), + [anon_sym_LT_EQ] = ACTIONS(2219), + [anon_sym_GT_EQ] = ACTIONS(2219), + [anon_sym_LBRACK] = ACTIONS(2222), + [anon_sym_struct] = ACTIONS(2217), + [anon_sym_union] = ACTIONS(2217), + [anon_sym_pub] = ACTIONS(2217), + [anon_sym_mut] = ACTIONS(2217), + [anon_sym_enum] = ACTIONS(2217), + [anon_sym_interface] = ACTIONS(2217), + [anon_sym_PLUS_PLUS] = ACTIONS(2219), + [anon_sym_DASH_DASH] = ACTIONS(2219), + [anon_sym_QMARK] = ACTIONS(2219), + [anon_sym_BANG] = ACTIONS(2219), + [anon_sym_go] = ACTIONS(2217), + [anon_sym_spawn] = ACTIONS(2217), + [anon_sym_json_DOTdecode] = ACTIONS(2217), + [anon_sym_LBRACK2] = ACTIONS(2219), + [anon_sym_TILDE] = ACTIONS(2217), + [anon_sym_CARET] = ACTIONS(2219), + [anon_sym_AMP] = ACTIONS(2219), + [anon_sym_LT_DASH] = ACTIONS(2217), + [anon_sym_LT_LT] = ACTIONS(2219), + [anon_sym_GT_GT] = ACTIONS(2219), + [anon_sym_GT_GT_GT] = ACTIONS(2219), + [anon_sym_AMP_CARET] = ACTIONS(2219), + [anon_sym_AMP_AMP] = ACTIONS(2219), + [anon_sym_PIPE_PIPE] = ACTIONS(2219), + [anon_sym_or] = ACTIONS(2219), + [sym_none] = ACTIONS(2217), + [sym_true] = ACTIONS(2217), + [sym_false] = ACTIONS(2217), + [sym_nil] = ACTIONS(2217), + [anon_sym_QMARK_DOT] = ACTIONS(2219), + [anon_sym_POUND_LBRACK] = ACTIONS(2219), + [anon_sym_if] = ACTIONS(2217), + [anon_sym_DOLLARif] = ACTIONS(2217), + [anon_sym_is] = ACTIONS(2219), + [anon_sym_BANGis] = ACTIONS(2219), + [anon_sym_in] = ACTIONS(2219), + [anon_sym_BANGin] = ACTIONS(2219), + [anon_sym_match] = ACTIONS(2217), + [anon_sym_select] = ACTIONS(2217), + [anon_sym_STAR_EQ] = ACTIONS(2217), + [anon_sym_SLASH_EQ] = ACTIONS(2217), + [anon_sym_PERCENT_EQ] = ACTIONS(2217), + [anon_sym_LT_LT_EQ] = ACTIONS(2217), + [anon_sym_GT_GT_EQ] = ACTIONS(2217), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(2217), + [anon_sym_AMP_EQ] = ACTIONS(2217), + [anon_sym_AMP_CARET_EQ] = ACTIONS(2217), + [anon_sym_PLUS_EQ] = ACTIONS(2217), + [anon_sym_DASH_EQ] = ACTIONS(2217), + [anon_sym_PIPE_EQ] = ACTIONS(2217), + [anon_sym_CARET_EQ] = ACTIONS(2217), + [anon_sym_COLON_EQ] = ACTIONS(2217), + [anon_sym_lock] = ACTIONS(2217), + [anon_sym_rlock] = ACTIONS(2217), + [anon_sym_unsafe] = ACTIONS(2217), + [anon_sym_sql] = ACTIONS(2217), + [sym_int_literal] = ACTIONS(2217), + [sym_float_literal] = ACTIONS(2217), + [sym_rune_literal] = ACTIONS(2217), + [sym_pseudo_compile_time_identifier] = ACTIONS(2217), + [anon_sym_shared] = ACTIONS(2217), + [anon_sym_map_LBRACK] = ACTIONS(2217), + [anon_sym_chan] = ACTIONS(2217), + [anon_sym_thread] = ACTIONS(2217), + [anon_sym_atomic] = ACTIONS(2217), + [anon_sym_assert] = ACTIONS(2217), + [anon_sym_defer] = ACTIONS(2217), + [anon_sym_goto] = ACTIONS(2217), + [anon_sym_break] = ACTIONS(2217), + [anon_sym_continue] = ACTIONS(2217), + [anon_sym_return] = ACTIONS(2217), + [anon_sym_DOLLARfor] = ACTIONS(2217), + [anon_sym_for] = ACTIONS(2217), + [anon_sym_POUND] = ACTIONS(2217), + [anon_sym_asm] = ACTIONS(2217), + [anon_sym_AT_LBRACK] = ACTIONS(2217), + [sym___double_quote] = ACTIONS(2217), + [sym___single_quote] = ACTIONS(2217), + [sym___c_double_quote] = ACTIONS(2217), + [sym___c_single_quote] = ACTIONS(2217), + [sym___r_double_quote] = ACTIONS(2217), + [sym___r_single_quote] = ACTIONS(2217), }, [431] = { [sym_line_comment] = STATE(431), [sym_block_comment] = STATE(431), - [ts_builtin_sym_end] = ACTIONS(2737), - [sym_identifier] = ACTIONS(2739), - [anon_sym_LF] = ACTIONS(2739), - [anon_sym_CR] = ACTIONS(2739), - [anon_sym_CR_LF] = ACTIONS(2739), + [ts_builtin_sym_end] = ACTIONS(2742), + [sym_identifier] = ACTIONS(2744), + [anon_sym_LF] = ACTIONS(2744), + [anon_sym_CR] = ACTIONS(2744), + [anon_sym_CR_LF] = ACTIONS(2744), [anon_sym_SLASH_SLASH] = ACTIONS(497), [anon_sym_SLASH_STAR] = ACTIONS(499), - [anon_sym_DOT] = ACTIONS(2739), - [anon_sym_as] = ACTIONS(2739), - [anon_sym_LBRACE] = ACTIONS(2739), - [anon_sym_COMMA] = ACTIONS(2739), - [anon_sym_const] = ACTIONS(2739), - [anon_sym_LPAREN] = ACTIONS(2739), - [anon_sym_EQ] = ACTIONS(2739), - [anon_sym___global] = ACTIONS(2739), - [anon_sym_type] = ACTIONS(2739), - [anon_sym_PIPE] = ACTIONS(2739), - [anon_sym_fn] = ACTIONS(2739), - [anon_sym_PLUS] = ACTIONS(2739), - [anon_sym_DASH] = ACTIONS(2739), - [anon_sym_STAR] = ACTIONS(2739), - [anon_sym_SLASH] = ACTIONS(2739), - [anon_sym_PERCENT] = ACTIONS(2739), - [anon_sym_LT] = ACTIONS(2739), - [anon_sym_GT] = ACTIONS(2739), - [anon_sym_EQ_EQ] = ACTIONS(2739), - [anon_sym_BANG_EQ] = ACTIONS(2739), - [anon_sym_LT_EQ] = ACTIONS(2739), - [anon_sym_GT_EQ] = ACTIONS(2739), - [anon_sym_LBRACK] = ACTIONS(2737), - [anon_sym_struct] = ACTIONS(2739), - [anon_sym_union] = ACTIONS(2739), - [anon_sym_pub] = ACTIONS(2739), - [anon_sym_mut] = ACTIONS(2739), - [anon_sym_enum] = ACTIONS(2739), - [anon_sym_interface] = ACTIONS(2739), - [anon_sym_PLUS_PLUS] = ACTIONS(2739), - [anon_sym_DASH_DASH] = ACTIONS(2739), - [anon_sym_QMARK] = ACTIONS(2739), - [anon_sym_BANG] = ACTIONS(2739), - [anon_sym_go] = ACTIONS(2739), - [anon_sym_spawn] = ACTIONS(2739), - [anon_sym_json_DOTdecode] = ACTIONS(2739), - [anon_sym_LBRACK2] = ACTIONS(2739), - [anon_sym_TILDE] = ACTIONS(2739), - [anon_sym_CARET] = ACTIONS(2739), - [anon_sym_AMP] = ACTIONS(2739), - [anon_sym_LT_DASH] = ACTIONS(2739), - [anon_sym_LT_LT] = ACTIONS(2739), - [anon_sym_GT_GT] = ACTIONS(2739), - [anon_sym_GT_GT_GT] = ACTIONS(2739), - [anon_sym_AMP_CARET] = ACTIONS(2739), - [anon_sym_AMP_AMP] = ACTIONS(2739), - [anon_sym_PIPE_PIPE] = ACTIONS(2739), - [anon_sym_or] = ACTIONS(2739), - [sym_none] = ACTIONS(2739), - [sym_true] = ACTIONS(2739), - [sym_false] = ACTIONS(2739), - [sym_nil] = ACTIONS(2739), - [anon_sym_QMARK_DOT] = ACTIONS(2739), - [anon_sym_POUND_LBRACK] = ACTIONS(2739), - [anon_sym_if] = ACTIONS(2739), - [anon_sym_DOLLARif] = ACTIONS(2739), - [anon_sym_is] = ACTIONS(2739), - [anon_sym_BANGis] = ACTIONS(2739), - [anon_sym_in] = ACTIONS(2739), - [anon_sym_BANGin] = ACTIONS(2739), - [anon_sym_match] = ACTIONS(2739), - [anon_sym_select] = ACTIONS(2739), - [anon_sym_STAR_EQ] = ACTIONS(2739), - [anon_sym_SLASH_EQ] = ACTIONS(2739), - [anon_sym_PERCENT_EQ] = ACTIONS(2739), - [anon_sym_LT_LT_EQ] = ACTIONS(2739), - [anon_sym_GT_GT_EQ] = ACTIONS(2739), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(2739), - [anon_sym_AMP_EQ] = ACTIONS(2739), - [anon_sym_AMP_CARET_EQ] = ACTIONS(2739), - [anon_sym_PLUS_EQ] = ACTIONS(2739), - [anon_sym_DASH_EQ] = ACTIONS(2739), - [anon_sym_PIPE_EQ] = ACTIONS(2739), - [anon_sym_CARET_EQ] = ACTIONS(2739), - [anon_sym_COLON_EQ] = ACTIONS(2739), - [anon_sym_lock] = ACTIONS(2739), - [anon_sym_rlock] = ACTIONS(2739), - [anon_sym_unsafe] = ACTIONS(2739), - [anon_sym_sql] = ACTIONS(2739), - [sym_int_literal] = ACTIONS(2739), - [sym_float_literal] = ACTIONS(2739), - [sym_rune_literal] = ACTIONS(2739), - [sym_pseudo_compile_time_identifier] = ACTIONS(2739), - [anon_sym_shared] = ACTIONS(2739), - [anon_sym_map_LBRACK] = ACTIONS(2739), - [anon_sym_chan] = ACTIONS(2739), - [anon_sym_thread] = ACTIONS(2739), - [anon_sym_atomic] = ACTIONS(2739), - [anon_sym_assert] = ACTIONS(2739), - [anon_sym_defer] = ACTIONS(2739), - [anon_sym_goto] = ACTIONS(2739), - [anon_sym_break] = ACTIONS(2739), - [anon_sym_continue] = ACTIONS(2739), - [anon_sym_return] = ACTIONS(2739), - [anon_sym_DOLLARfor] = ACTIONS(2739), - [anon_sym_for] = ACTIONS(2739), - [anon_sym_POUND] = ACTIONS(2739), - [anon_sym_asm] = ACTIONS(2739), - [anon_sym_AT_LBRACK] = ACTIONS(2739), - [sym___double_quote] = ACTIONS(2739), - [sym___single_quote] = ACTIONS(2739), - [sym___c_double_quote] = ACTIONS(2739), - [sym___c_single_quote] = ACTIONS(2739), - [sym___r_double_quote] = ACTIONS(2739), - [sym___r_single_quote] = ACTIONS(2739), + [anon_sym_DOT] = ACTIONS(2744), + [anon_sym_as] = ACTIONS(2744), + [anon_sym_LBRACE] = ACTIONS(2744), + [anon_sym_COMMA] = ACTIONS(2744), + [anon_sym_const] = ACTIONS(2744), + [anon_sym_LPAREN] = ACTIONS(2744), + [anon_sym_EQ] = ACTIONS(2744), + [anon_sym___global] = ACTIONS(2744), + [anon_sym_type] = ACTIONS(2744), + [anon_sym_PIPE] = ACTIONS(2744), + [anon_sym_fn] = ACTIONS(2744), + [anon_sym_PLUS] = ACTIONS(2744), + [anon_sym_DASH] = ACTIONS(2744), + [anon_sym_STAR] = ACTIONS(2744), + [anon_sym_SLASH] = ACTIONS(2744), + [anon_sym_PERCENT] = ACTIONS(2744), + [anon_sym_LT] = ACTIONS(2744), + [anon_sym_GT] = ACTIONS(2744), + [anon_sym_EQ_EQ] = ACTIONS(2744), + [anon_sym_BANG_EQ] = ACTIONS(2744), + [anon_sym_LT_EQ] = ACTIONS(2744), + [anon_sym_GT_EQ] = ACTIONS(2744), + [anon_sym_LBRACK] = ACTIONS(2742), + [anon_sym_struct] = ACTIONS(2744), + [anon_sym_union] = ACTIONS(2744), + [anon_sym_pub] = ACTIONS(2744), + [anon_sym_mut] = ACTIONS(2744), + [anon_sym_enum] = ACTIONS(2744), + [anon_sym_interface] = ACTIONS(2744), + [anon_sym_PLUS_PLUS] = ACTIONS(2744), + [anon_sym_DASH_DASH] = ACTIONS(2744), + [anon_sym_QMARK] = ACTIONS(2744), + [anon_sym_BANG] = ACTIONS(2744), + [anon_sym_go] = ACTIONS(2744), + [anon_sym_spawn] = ACTIONS(2744), + [anon_sym_json_DOTdecode] = ACTIONS(2744), + [anon_sym_LBRACK2] = ACTIONS(2744), + [anon_sym_TILDE] = ACTIONS(2744), + [anon_sym_CARET] = ACTIONS(2744), + [anon_sym_AMP] = ACTIONS(2744), + [anon_sym_LT_DASH] = ACTIONS(2744), + [anon_sym_LT_LT] = ACTIONS(2744), + [anon_sym_GT_GT] = ACTIONS(2744), + [anon_sym_GT_GT_GT] = ACTIONS(2744), + [anon_sym_AMP_CARET] = ACTIONS(2744), + [anon_sym_AMP_AMP] = ACTIONS(2744), + [anon_sym_PIPE_PIPE] = ACTIONS(2744), + [anon_sym_or] = ACTIONS(2744), + [sym_none] = ACTIONS(2744), + [sym_true] = ACTIONS(2744), + [sym_false] = ACTIONS(2744), + [sym_nil] = ACTIONS(2744), + [anon_sym_QMARK_DOT] = ACTIONS(2744), + [anon_sym_POUND_LBRACK] = ACTIONS(2744), + [anon_sym_if] = ACTIONS(2744), + [anon_sym_DOLLARif] = ACTIONS(2744), + [anon_sym_is] = ACTIONS(2744), + [anon_sym_BANGis] = ACTIONS(2744), + [anon_sym_in] = ACTIONS(2744), + [anon_sym_BANGin] = ACTIONS(2744), + [anon_sym_match] = ACTIONS(2744), + [anon_sym_select] = ACTIONS(2744), + [anon_sym_STAR_EQ] = ACTIONS(2744), + [anon_sym_SLASH_EQ] = ACTIONS(2744), + [anon_sym_PERCENT_EQ] = ACTIONS(2744), + [anon_sym_LT_LT_EQ] = ACTIONS(2744), + [anon_sym_GT_GT_EQ] = ACTIONS(2744), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(2744), + [anon_sym_AMP_EQ] = ACTIONS(2744), + [anon_sym_AMP_CARET_EQ] = ACTIONS(2744), + [anon_sym_PLUS_EQ] = ACTIONS(2744), + [anon_sym_DASH_EQ] = ACTIONS(2744), + [anon_sym_PIPE_EQ] = ACTIONS(2744), + [anon_sym_CARET_EQ] = ACTIONS(2744), + [anon_sym_COLON_EQ] = ACTIONS(2744), + [anon_sym_lock] = ACTIONS(2744), + [anon_sym_rlock] = ACTIONS(2744), + [anon_sym_unsafe] = ACTIONS(2744), + [anon_sym_sql] = ACTIONS(2744), + [sym_int_literal] = ACTIONS(2744), + [sym_float_literal] = ACTIONS(2744), + [sym_rune_literal] = ACTIONS(2744), + [sym_pseudo_compile_time_identifier] = ACTIONS(2744), + [anon_sym_shared] = ACTIONS(2744), + [anon_sym_map_LBRACK] = ACTIONS(2744), + [anon_sym_chan] = ACTIONS(2744), + [anon_sym_thread] = ACTIONS(2744), + [anon_sym_atomic] = ACTIONS(2744), + [anon_sym_assert] = ACTIONS(2744), + [anon_sym_defer] = ACTIONS(2744), + [anon_sym_goto] = ACTIONS(2744), + [anon_sym_break] = ACTIONS(2744), + [anon_sym_continue] = ACTIONS(2744), + [anon_sym_return] = ACTIONS(2744), + [anon_sym_DOLLARfor] = ACTIONS(2744), + [anon_sym_for] = ACTIONS(2744), + [anon_sym_POUND] = ACTIONS(2744), + [anon_sym_asm] = ACTIONS(2744), + [anon_sym_AT_LBRACK] = ACTIONS(2744), + [sym___double_quote] = ACTIONS(2744), + [sym___single_quote] = ACTIONS(2744), + [sym___c_double_quote] = ACTIONS(2744), + [sym___c_single_quote] = ACTIONS(2744), + [sym___r_double_quote] = ACTIONS(2744), + [sym___r_single_quote] = ACTIONS(2744), }, [432] = { [sym_line_comment] = STATE(432), [sym_block_comment] = STATE(432), - [sym__expression] = STATE(1268), - [sym__expression_without_blocks] = STATE(1312), - [sym__expression_with_blocks] = STATE(1312), - [sym_inc_expression] = STATE(1313), - [sym_dec_expression] = STATE(1313), - [sym_or_block_expression] = STATE(1313), - [sym_option_propagation_expression] = STATE(1313), - [sym_result_propagation_expression] = STATE(1313), - [sym_anon_struct_value_expression] = STATE(1314), - [sym_go_expression] = STATE(1313), - [sym_spawn_expression] = STATE(1313), - [sym_parenthesized_expression] = STATE(1313), - [sym_call_expression] = STATE(1313), - [sym_type_initializer] = STATE(1314), - [sym_function_literal] = STATE(1313), - [sym_reference_expression] = STATE(1334), - [sym_type_reference_expression] = STATE(3541), - [sym_unary_expression] = STATE(1313), - [sym_receive_expression] = STATE(1313), - [sym_binary_expression] = STATE(1313), - [sym_as_type_cast_expression] = STATE(1313), - [sym__max_group] = STATE(1313), - [sym_literal] = STATE(1308), - [sym_map_init_expression] = STATE(1314), - [sym_array_creation] = STATE(1313), - [sym_fixed_array_creation] = STATE(1313), - [sym_selector_expression] = STATE(1313), - [sym_index_expression] = STATE(1313), - [sym_slice_expression] = STATE(1313), - [sym_if_expression] = STATE(1314), - [sym_compile_time_if_expression] = STATE(1314), - [sym_is_expression] = STATE(1313), - [sym_in_expression] = STATE(1313), - [sym_enum_fetch] = STATE(1313), - [sym_match_expression] = STATE(1314), - [sym_select_expression] = STATE(1314), - [sym_lock_expression] = STATE(1314), - [sym_unsafe_expression] = STATE(1314), - [sym_sql_expression] = STATE(1314), - [sym_c_string_literal] = STATE(1286), - [sym_raw_string_literal] = STATE(1286), - [sym_interpreted_string_literal] = STATE(1286), - [sym_mutability_modifiers] = STATE(699), - [sym_plain_type] = STATE(4192), - [sym__plain_type_without_special] = STATE(2302), - [sym_anon_struct_type] = STATE(2303), - [sym_multi_return_type] = STATE(2302), - [sym_result_type] = STATE(2302), - [sym_option_type] = STATE(2302), - [sym_qualified_type] = STATE(3541), - [sym_fixed_array_type] = STATE(2303), - [sym_array_type] = STATE(2303), - [sym_pointer_type] = STATE(2303), - [sym_wrong_pointer_type] = STATE(2303), - [sym_map_type] = STATE(2303), - [sym_channel_type] = STATE(2303), - [sym_shared_type] = STATE(2303), - [sym_thread_type] = STATE(2303), - [sym_atomic_type] = STATE(2303), - [sym_generic_type] = STATE(2303), - [sym_function_type] = STATE(2303), - [aux_sym__array_repeat1] = STATE(404), - [sym_identifier] = ACTIONS(1354), + [sym__expression] = STATE(2558), + [sym__expression_without_blocks] = STATE(2347), + [sym__expression_with_blocks] = STATE(2347), + [sym_inc_expression] = STATE(2379), + [sym_dec_expression] = STATE(2379), + [sym_or_block_expression] = STATE(2379), + [sym_option_propagation_expression] = STATE(2379), + [sym_result_propagation_expression] = STATE(2379), + [sym_anon_struct_value_expression] = STATE(2378), + [sym_go_expression] = STATE(2379), + [sym_spawn_expression] = STATE(2379), + [sym_parenthesized_expression] = STATE(2379), + [sym_call_expression] = STATE(2379), + [sym_type_initializer] = STATE(2378), + [sym_function_literal] = STATE(2379), + [sym_reference_expression] = STATE(2377), + [sym_type_reference_expression] = STATE(3460), + [sym_unary_expression] = STATE(2379), + [sym_receive_expression] = STATE(2379), + [sym_binary_expression] = STATE(2379), + [sym_as_type_cast_expression] = STATE(2379), + [sym__max_group] = STATE(2379), + [sym_literal] = STATE(2392), + [sym_map_init_expression] = STATE(2378), + [sym_array_creation] = STATE(2379), + [sym_fixed_array_creation] = STATE(2379), + [sym_selector_expression] = STATE(2379), + [sym_index_expression] = STATE(2379), + [sym_slice_expression] = STATE(2379), + [sym_if_expression] = STATE(2378), + [sym_compile_time_if_expression] = STATE(2378), + [sym_is_expression] = STATE(2379), + [sym_in_expression] = STATE(2379), + [sym_enum_fetch] = STATE(2379), + [sym_match_expression] = STATE(2378), + [sym_select_expression] = STATE(2378), + [sym_lock_expression] = STATE(2378), + [sym_unsafe_expression] = STATE(2378), + [sym_sql_expression] = STATE(2378), + [sym_c_string_literal] = STATE(2401), + [sym_raw_string_literal] = STATE(2401), + [sym_interpreted_string_literal] = STATE(2401), + [sym_mutability_modifiers] = STATE(900), + [sym_mutable_expression] = STATE(3813), + [sym_expression_list] = STATE(4353), + [sym_plain_type] = STATE(4160), + [sym__plain_type_without_special] = STATE(2360), + [sym_anon_struct_type] = STATE(2362), + [sym_multi_return_type] = STATE(2360), + [sym_result_type] = STATE(2360), + [sym_option_type] = STATE(2360), + [sym_qualified_type] = STATE(3460), + [sym_fixed_array_type] = STATE(2362), + [sym_array_type] = STATE(2362), + [sym_pointer_type] = STATE(2362), + [sym_wrong_pointer_type] = STATE(2362), + [sym_map_type] = STATE(2362), + [sym_channel_type] = STATE(2362), + [sym_shared_type] = STATE(2362), + [sym_thread_type] = STATE(2362), + [sym_atomic_type] = STATE(2362), + [sym_generic_type] = STATE(2362), + [sym_function_type] = STATE(2362), + [sym_identifier] = ACTIONS(1815), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1356), - [anon_sym_LBRACE] = ACTIONS(1358), - [anon_sym_LPAREN] = ACTIONS(1360), - [anon_sym_fn] = ACTIONS(1362), - [anon_sym_PLUS] = ACTIONS(1364), - [anon_sym_DASH] = ACTIONS(1364), - [anon_sym_STAR] = ACTIONS(1366), - [anon_sym_RBRACK] = ACTIONS(2741), - [anon_sym_struct] = ACTIONS(1370), + [anon_sym_DOT] = ACTIONS(1430), + [anon_sym_LBRACE] = ACTIONS(2746), + [anon_sym_LPAREN] = ACTIONS(1434), + [anon_sym_fn] = ACTIONS(1436), + [anon_sym_PLUS] = ACTIONS(1817), + [anon_sym_DASH] = ACTIONS(1817), + [anon_sym_STAR] = ACTIONS(1819), + [anon_sym_struct] = ACTIONS(1442), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(1372), - [anon_sym_go] = ACTIONS(1374), - [anon_sym_spawn] = ACTIONS(1376), - [anon_sym_json_DOTdecode] = ACTIONS(1378), - [anon_sym_LBRACK2] = ACTIONS(1380), - [anon_sym_TILDE] = ACTIONS(1364), - [anon_sym_CARET] = ACTIONS(1364), - [anon_sym_AMP] = ACTIONS(1382), - [anon_sym_LT_DASH] = ACTIONS(1384), - [sym_none] = ACTIONS(1386), - [sym_true] = ACTIONS(1386), - [sym_false] = ACTIONS(1386), - [sym_nil] = ACTIONS(1386), - [anon_sym_if] = ACTIONS(1877), - [anon_sym_DOLLARif] = ACTIONS(1390), - [anon_sym_match] = ACTIONS(1392), - [anon_sym_select] = ACTIONS(1394), - [anon_sym_lock] = ACTIONS(1396), - [anon_sym_rlock] = ACTIONS(1396), - [anon_sym_unsafe] = ACTIONS(1883), - [anon_sym_sql] = ACTIONS(1400), - [sym_int_literal] = ACTIONS(1386), - [sym_float_literal] = ACTIONS(1404), - [sym_rune_literal] = ACTIONS(1404), - [sym_pseudo_compile_time_identifier] = ACTIONS(1406), + [anon_sym_BANG] = ACTIONS(1821), + [anon_sym_go] = ACTIONS(1823), + [anon_sym_spawn] = ACTIONS(1825), + [anon_sym_json_DOTdecode] = ACTIONS(1450), + [anon_sym_LBRACK2] = ACTIONS(1827), + [anon_sym_TILDE] = ACTIONS(1817), + [anon_sym_CARET] = ACTIONS(1817), + [anon_sym_AMP] = ACTIONS(1829), + [anon_sym_LT_DASH] = ACTIONS(1831), + [sym_none] = ACTIONS(1458), + [sym_true] = ACTIONS(1458), + [sym_false] = ACTIONS(1458), + [sym_nil] = ACTIONS(1458), + [anon_sym_if] = ACTIONS(1833), + [anon_sym_DOLLARif] = ACTIONS(1462), + [anon_sym_match] = ACTIONS(1464), + [anon_sym_select] = ACTIONS(1835), + [anon_sym_lock] = ACTIONS(1837), + [anon_sym_rlock] = ACTIONS(1837), + [anon_sym_unsafe] = ACTIONS(1839), + [anon_sym_sql] = ACTIONS(1472), + [sym_int_literal] = ACTIONS(1458), + [sym_float_literal] = ACTIONS(1474), + [sym_rune_literal] = ACTIONS(1474), + [sym_pseudo_compile_time_identifier] = ACTIONS(1476), [anon_sym_shared] = ACTIONS(83), [anon_sym_map_LBRACK] = ACTIONS(85), [anon_sym_chan] = ACTIONS(87), [anon_sym_thread] = ACTIONS(89), [anon_sym_atomic] = ACTIONS(91), - [sym___double_quote] = ACTIONS(1408), - [sym___single_quote] = ACTIONS(1410), - [sym___c_double_quote] = ACTIONS(1412), - [sym___c_single_quote] = ACTIONS(1414), - [sym___r_double_quote] = ACTIONS(1416), - [sym___r_single_quote] = ACTIONS(1418), + [sym___double_quote] = ACTIONS(1480), + [sym___single_quote] = ACTIONS(1482), + [sym___c_double_quote] = ACTIONS(1484), + [sym___c_single_quote] = ACTIONS(1486), + [sym___r_double_quote] = ACTIONS(1488), + [sym___r_single_quote] = ACTIONS(1490), }, [433] = { [sym_line_comment] = STATE(433), [sym_block_comment] = STATE(433), - [ts_builtin_sym_end] = ACTIONS(2743), - [sym_identifier] = ACTIONS(2745), - [anon_sym_LF] = ACTIONS(2745), - [anon_sym_CR] = ACTIONS(2745), - [anon_sym_CR_LF] = ACTIONS(2745), + [ts_builtin_sym_end] = ACTIONS(2748), + [sym_identifier] = ACTIONS(2750), + [anon_sym_LF] = ACTIONS(2750), + [anon_sym_CR] = ACTIONS(2750), + [anon_sym_CR_LF] = ACTIONS(2750), [anon_sym_SLASH_SLASH] = ACTIONS(497), [anon_sym_SLASH_STAR] = ACTIONS(499), - [anon_sym_DOT] = ACTIONS(2745), - [anon_sym_as] = ACTIONS(2745), - [anon_sym_LBRACE] = ACTIONS(2745), - [anon_sym_COMMA] = ACTIONS(2745), - [anon_sym_const] = ACTIONS(2745), - [anon_sym_LPAREN] = ACTIONS(2745), - [anon_sym_EQ] = ACTIONS(2745), - [anon_sym___global] = ACTIONS(2745), - [anon_sym_type] = ACTIONS(2745), - [anon_sym_PIPE] = ACTIONS(2745), - [anon_sym_fn] = ACTIONS(2745), - [anon_sym_PLUS] = ACTIONS(2745), - [anon_sym_DASH] = ACTIONS(2745), - [anon_sym_STAR] = ACTIONS(2745), - [anon_sym_SLASH] = ACTIONS(2745), - [anon_sym_PERCENT] = ACTIONS(2745), - [anon_sym_LT] = ACTIONS(2745), - [anon_sym_GT] = ACTIONS(2745), - [anon_sym_EQ_EQ] = ACTIONS(2745), - [anon_sym_BANG_EQ] = ACTIONS(2745), - [anon_sym_LT_EQ] = ACTIONS(2745), - [anon_sym_GT_EQ] = ACTIONS(2745), - [anon_sym_LBRACK] = ACTIONS(2743), - [anon_sym_struct] = ACTIONS(2745), - [anon_sym_union] = ACTIONS(2745), - [anon_sym_pub] = ACTIONS(2745), - [anon_sym_mut] = ACTIONS(2745), - [anon_sym_enum] = ACTIONS(2745), - [anon_sym_interface] = ACTIONS(2745), - [anon_sym_PLUS_PLUS] = ACTIONS(2745), - [anon_sym_DASH_DASH] = ACTIONS(2745), - [anon_sym_QMARK] = ACTIONS(2745), - [anon_sym_BANG] = ACTIONS(2745), - [anon_sym_go] = ACTIONS(2745), - [anon_sym_spawn] = ACTIONS(2745), - [anon_sym_json_DOTdecode] = ACTIONS(2745), - [anon_sym_LBRACK2] = ACTIONS(2745), - [anon_sym_TILDE] = ACTIONS(2745), - [anon_sym_CARET] = ACTIONS(2745), - [anon_sym_AMP] = ACTIONS(2745), - [anon_sym_LT_DASH] = ACTIONS(2745), - [anon_sym_LT_LT] = ACTIONS(2745), - [anon_sym_GT_GT] = ACTIONS(2745), - [anon_sym_GT_GT_GT] = ACTIONS(2745), - [anon_sym_AMP_CARET] = ACTIONS(2745), - [anon_sym_AMP_AMP] = ACTIONS(2745), - [anon_sym_PIPE_PIPE] = ACTIONS(2745), - [anon_sym_or] = ACTIONS(2745), - [sym_none] = ACTIONS(2745), - [sym_true] = ACTIONS(2745), - [sym_false] = ACTIONS(2745), - [sym_nil] = ACTIONS(2745), - [anon_sym_QMARK_DOT] = ACTIONS(2745), - [anon_sym_POUND_LBRACK] = ACTIONS(2745), - [anon_sym_if] = ACTIONS(2745), - [anon_sym_DOLLARif] = ACTIONS(2745), - [anon_sym_is] = ACTIONS(2745), - [anon_sym_BANGis] = ACTIONS(2745), - [anon_sym_in] = ACTIONS(2745), - [anon_sym_BANGin] = ACTIONS(2745), - [anon_sym_match] = ACTIONS(2745), - [anon_sym_select] = ACTIONS(2745), - [anon_sym_STAR_EQ] = ACTIONS(2745), - [anon_sym_SLASH_EQ] = ACTIONS(2745), - [anon_sym_PERCENT_EQ] = ACTIONS(2745), - [anon_sym_LT_LT_EQ] = ACTIONS(2745), - [anon_sym_GT_GT_EQ] = ACTIONS(2745), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(2745), - [anon_sym_AMP_EQ] = ACTIONS(2745), - [anon_sym_AMP_CARET_EQ] = ACTIONS(2745), - [anon_sym_PLUS_EQ] = ACTIONS(2745), - [anon_sym_DASH_EQ] = ACTIONS(2745), - [anon_sym_PIPE_EQ] = ACTIONS(2745), - [anon_sym_CARET_EQ] = ACTIONS(2745), - [anon_sym_COLON_EQ] = ACTIONS(2745), - [anon_sym_lock] = ACTIONS(2745), - [anon_sym_rlock] = ACTIONS(2745), - [anon_sym_unsafe] = ACTIONS(2745), - [anon_sym_sql] = ACTIONS(2745), - [sym_int_literal] = ACTIONS(2745), - [sym_float_literal] = ACTIONS(2745), - [sym_rune_literal] = ACTIONS(2745), - [sym_pseudo_compile_time_identifier] = ACTIONS(2745), - [anon_sym_shared] = ACTIONS(2745), - [anon_sym_map_LBRACK] = ACTIONS(2745), - [anon_sym_chan] = ACTIONS(2745), - [anon_sym_thread] = ACTIONS(2745), - [anon_sym_atomic] = ACTIONS(2745), - [anon_sym_assert] = ACTIONS(2745), - [anon_sym_defer] = ACTIONS(2745), - [anon_sym_goto] = ACTIONS(2745), - [anon_sym_break] = ACTIONS(2745), - [anon_sym_continue] = ACTIONS(2745), - [anon_sym_return] = ACTIONS(2745), - [anon_sym_DOLLARfor] = ACTIONS(2745), - [anon_sym_for] = ACTIONS(2745), - [anon_sym_POUND] = ACTIONS(2745), - [anon_sym_asm] = ACTIONS(2745), - [anon_sym_AT_LBRACK] = ACTIONS(2745), - [sym___double_quote] = ACTIONS(2745), - [sym___single_quote] = ACTIONS(2745), - [sym___c_double_quote] = ACTIONS(2745), - [sym___c_single_quote] = ACTIONS(2745), - [sym___r_double_quote] = ACTIONS(2745), - [sym___r_single_quote] = ACTIONS(2745), + [anon_sym_DOT] = ACTIONS(2750), + [anon_sym_as] = ACTIONS(2750), + [anon_sym_LBRACE] = ACTIONS(2750), + [anon_sym_COMMA] = ACTIONS(2750), + [anon_sym_const] = ACTIONS(2750), + [anon_sym_LPAREN] = ACTIONS(2750), + [anon_sym_EQ] = ACTIONS(2750), + [anon_sym___global] = ACTIONS(2750), + [anon_sym_type] = ACTIONS(2750), + [anon_sym_PIPE] = ACTIONS(2750), + [anon_sym_fn] = ACTIONS(2750), + [anon_sym_PLUS] = ACTIONS(2750), + [anon_sym_DASH] = ACTIONS(2750), + [anon_sym_STAR] = ACTIONS(2750), + [anon_sym_SLASH] = ACTIONS(2750), + [anon_sym_PERCENT] = ACTIONS(2750), + [anon_sym_LT] = ACTIONS(2750), + [anon_sym_GT] = ACTIONS(2750), + [anon_sym_EQ_EQ] = ACTIONS(2750), + [anon_sym_BANG_EQ] = ACTIONS(2750), + [anon_sym_LT_EQ] = ACTIONS(2750), + [anon_sym_GT_EQ] = ACTIONS(2750), + [anon_sym_LBRACK] = ACTIONS(2748), + [anon_sym_struct] = ACTIONS(2750), + [anon_sym_union] = ACTIONS(2750), + [anon_sym_pub] = ACTIONS(2750), + [anon_sym_mut] = ACTIONS(2750), + [anon_sym_enum] = ACTIONS(2750), + [anon_sym_interface] = ACTIONS(2750), + [anon_sym_PLUS_PLUS] = ACTIONS(2750), + [anon_sym_DASH_DASH] = ACTIONS(2750), + [anon_sym_QMARK] = ACTIONS(2750), + [anon_sym_BANG] = ACTIONS(2750), + [anon_sym_go] = ACTIONS(2750), + [anon_sym_spawn] = ACTIONS(2750), + [anon_sym_json_DOTdecode] = ACTIONS(2750), + [anon_sym_LBRACK2] = ACTIONS(2750), + [anon_sym_TILDE] = ACTIONS(2750), + [anon_sym_CARET] = ACTIONS(2750), + [anon_sym_AMP] = ACTIONS(2750), + [anon_sym_LT_DASH] = ACTIONS(2750), + [anon_sym_LT_LT] = ACTIONS(2750), + [anon_sym_GT_GT] = ACTIONS(2750), + [anon_sym_GT_GT_GT] = ACTIONS(2750), + [anon_sym_AMP_CARET] = ACTIONS(2750), + [anon_sym_AMP_AMP] = ACTIONS(2750), + [anon_sym_PIPE_PIPE] = ACTIONS(2750), + [anon_sym_or] = ACTIONS(2750), + [sym_none] = ACTIONS(2750), + [sym_true] = ACTIONS(2750), + [sym_false] = ACTIONS(2750), + [sym_nil] = ACTIONS(2750), + [anon_sym_QMARK_DOT] = ACTIONS(2750), + [anon_sym_POUND_LBRACK] = ACTIONS(2750), + [anon_sym_if] = ACTIONS(2750), + [anon_sym_DOLLARif] = ACTIONS(2750), + [anon_sym_is] = ACTIONS(2750), + [anon_sym_BANGis] = ACTIONS(2750), + [anon_sym_in] = ACTIONS(2750), + [anon_sym_BANGin] = ACTIONS(2750), + [anon_sym_match] = ACTIONS(2750), + [anon_sym_select] = ACTIONS(2750), + [anon_sym_STAR_EQ] = ACTIONS(2750), + [anon_sym_SLASH_EQ] = ACTIONS(2750), + [anon_sym_PERCENT_EQ] = ACTIONS(2750), + [anon_sym_LT_LT_EQ] = ACTIONS(2750), + [anon_sym_GT_GT_EQ] = ACTIONS(2750), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(2750), + [anon_sym_AMP_EQ] = ACTIONS(2750), + [anon_sym_AMP_CARET_EQ] = ACTIONS(2750), + [anon_sym_PLUS_EQ] = ACTIONS(2750), + [anon_sym_DASH_EQ] = ACTIONS(2750), + [anon_sym_PIPE_EQ] = ACTIONS(2750), + [anon_sym_CARET_EQ] = ACTIONS(2750), + [anon_sym_COLON_EQ] = ACTIONS(2750), + [anon_sym_lock] = ACTIONS(2750), + [anon_sym_rlock] = ACTIONS(2750), + [anon_sym_unsafe] = ACTIONS(2750), + [anon_sym_sql] = ACTIONS(2750), + [sym_int_literal] = ACTIONS(2750), + [sym_float_literal] = ACTIONS(2750), + [sym_rune_literal] = ACTIONS(2750), + [sym_pseudo_compile_time_identifier] = ACTIONS(2750), + [anon_sym_shared] = ACTIONS(2750), + [anon_sym_map_LBRACK] = ACTIONS(2750), + [anon_sym_chan] = ACTIONS(2750), + [anon_sym_thread] = ACTIONS(2750), + [anon_sym_atomic] = ACTIONS(2750), + [anon_sym_assert] = ACTIONS(2750), + [anon_sym_defer] = ACTIONS(2750), + [anon_sym_goto] = ACTIONS(2750), + [anon_sym_break] = ACTIONS(2750), + [anon_sym_continue] = ACTIONS(2750), + [anon_sym_return] = ACTIONS(2750), + [anon_sym_DOLLARfor] = ACTIONS(2750), + [anon_sym_for] = ACTIONS(2750), + [anon_sym_POUND] = ACTIONS(2750), + [anon_sym_asm] = ACTIONS(2750), + [anon_sym_AT_LBRACK] = ACTIONS(2750), + [sym___double_quote] = ACTIONS(2750), + [sym___single_quote] = ACTIONS(2750), + [sym___c_double_quote] = ACTIONS(2750), + [sym___c_single_quote] = ACTIONS(2750), + [sym___r_double_quote] = ACTIONS(2750), + [sym___r_single_quote] = ACTIONS(2750), }, [434] = { [sym_line_comment] = STATE(434), [sym_block_comment] = STATE(434), - [ts_builtin_sym_end] = ACTIONS(2747), - [sym_identifier] = ACTIONS(2749), - [anon_sym_LF] = ACTIONS(2749), - [anon_sym_CR] = ACTIONS(2749), - [anon_sym_CR_LF] = ACTIONS(2749), - [anon_sym_SLASH_SLASH] = ACTIONS(497), - [anon_sym_SLASH_STAR] = ACTIONS(499), - [anon_sym_DOT] = ACTIONS(2749), - [anon_sym_as] = ACTIONS(2749), - [anon_sym_LBRACE] = ACTIONS(2749), - [anon_sym_COMMA] = ACTIONS(2749), - [anon_sym_const] = ACTIONS(2749), - [anon_sym_LPAREN] = ACTIONS(2749), - [anon_sym_EQ] = ACTIONS(2749), - [anon_sym___global] = ACTIONS(2749), - [anon_sym_type] = ACTIONS(2749), - [anon_sym_PIPE] = ACTIONS(2749), - [anon_sym_fn] = ACTIONS(2749), - [anon_sym_PLUS] = ACTIONS(2749), - [anon_sym_DASH] = ACTIONS(2749), - [anon_sym_STAR] = ACTIONS(2749), - [anon_sym_SLASH] = ACTIONS(2749), - [anon_sym_PERCENT] = ACTIONS(2749), - [anon_sym_LT] = ACTIONS(2749), - [anon_sym_GT] = ACTIONS(2749), - [anon_sym_EQ_EQ] = ACTIONS(2749), - [anon_sym_BANG_EQ] = ACTIONS(2749), - [anon_sym_LT_EQ] = ACTIONS(2749), - [anon_sym_GT_EQ] = ACTIONS(2749), - [anon_sym_LBRACK] = ACTIONS(2747), - [anon_sym_struct] = ACTIONS(2749), - [anon_sym_union] = ACTIONS(2749), - [anon_sym_pub] = ACTIONS(2749), - [anon_sym_mut] = ACTIONS(2749), - [anon_sym_enum] = ACTIONS(2749), - [anon_sym_interface] = ACTIONS(2749), - [anon_sym_PLUS_PLUS] = ACTIONS(2749), - [anon_sym_DASH_DASH] = ACTIONS(2749), - [anon_sym_QMARK] = ACTIONS(2749), - [anon_sym_BANG] = ACTIONS(2749), - [anon_sym_go] = ACTIONS(2749), - [anon_sym_spawn] = ACTIONS(2749), - [anon_sym_json_DOTdecode] = ACTIONS(2749), - [anon_sym_LBRACK2] = ACTIONS(2749), - [anon_sym_TILDE] = ACTIONS(2749), - [anon_sym_CARET] = ACTIONS(2749), - [anon_sym_AMP] = ACTIONS(2749), - [anon_sym_LT_DASH] = ACTIONS(2749), - [anon_sym_LT_LT] = ACTIONS(2749), - [anon_sym_GT_GT] = ACTIONS(2749), - [anon_sym_GT_GT_GT] = ACTIONS(2749), - [anon_sym_AMP_CARET] = ACTIONS(2749), - [anon_sym_AMP_AMP] = ACTIONS(2749), - [anon_sym_PIPE_PIPE] = ACTIONS(2749), - [anon_sym_or] = ACTIONS(2749), - [sym_none] = ACTIONS(2749), - [sym_true] = ACTIONS(2749), - [sym_false] = ACTIONS(2749), - [sym_nil] = ACTIONS(2749), - [anon_sym_QMARK_DOT] = ACTIONS(2749), - [anon_sym_POUND_LBRACK] = ACTIONS(2749), - [anon_sym_if] = ACTIONS(2749), - [anon_sym_DOLLARif] = ACTIONS(2749), - [anon_sym_is] = ACTIONS(2749), - [anon_sym_BANGis] = ACTIONS(2749), - [anon_sym_in] = ACTIONS(2749), - [anon_sym_BANGin] = ACTIONS(2749), - [anon_sym_match] = ACTIONS(2749), - [anon_sym_select] = ACTIONS(2749), - [anon_sym_STAR_EQ] = ACTIONS(2749), - [anon_sym_SLASH_EQ] = ACTIONS(2749), - [anon_sym_PERCENT_EQ] = ACTIONS(2749), - [anon_sym_LT_LT_EQ] = ACTIONS(2749), - [anon_sym_GT_GT_EQ] = ACTIONS(2749), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(2749), - [anon_sym_AMP_EQ] = ACTIONS(2749), - [anon_sym_AMP_CARET_EQ] = ACTIONS(2749), - [anon_sym_PLUS_EQ] = ACTIONS(2749), - [anon_sym_DASH_EQ] = ACTIONS(2749), - [anon_sym_PIPE_EQ] = ACTIONS(2749), - [anon_sym_CARET_EQ] = ACTIONS(2749), - [anon_sym_COLON_EQ] = ACTIONS(2749), - [anon_sym_lock] = ACTIONS(2749), - [anon_sym_rlock] = ACTIONS(2749), - [anon_sym_unsafe] = ACTIONS(2749), - [anon_sym_sql] = ACTIONS(2749), - [sym_int_literal] = ACTIONS(2749), - [sym_float_literal] = ACTIONS(2749), - [sym_rune_literal] = ACTIONS(2749), - [sym_pseudo_compile_time_identifier] = ACTIONS(2749), - [anon_sym_shared] = ACTIONS(2749), - [anon_sym_map_LBRACK] = ACTIONS(2749), - [anon_sym_chan] = ACTIONS(2749), - [anon_sym_thread] = ACTIONS(2749), - [anon_sym_atomic] = ACTIONS(2749), - [anon_sym_assert] = ACTIONS(2749), - [anon_sym_defer] = ACTIONS(2749), - [anon_sym_goto] = ACTIONS(2749), - [anon_sym_break] = ACTIONS(2749), - [anon_sym_continue] = ACTIONS(2749), - [anon_sym_return] = ACTIONS(2749), - [anon_sym_DOLLARfor] = ACTIONS(2749), - [anon_sym_for] = ACTIONS(2749), - [anon_sym_POUND] = ACTIONS(2749), - [anon_sym_asm] = ACTIONS(2749), - [anon_sym_AT_LBRACK] = ACTIONS(2749), - [sym___double_quote] = ACTIONS(2749), - [sym___single_quote] = ACTIONS(2749), - [sym___c_double_quote] = ACTIONS(2749), - [sym___c_single_quote] = ACTIONS(2749), - [sym___r_double_quote] = ACTIONS(2749), - [sym___r_single_quote] = ACTIONS(2749), + [sym__expression] = STATE(2558), + [sym__expression_without_blocks] = STATE(2347), + [sym__expression_with_blocks] = STATE(2347), + [sym_inc_expression] = STATE(2379), + [sym_dec_expression] = STATE(2379), + [sym_or_block_expression] = STATE(2379), + [sym_option_propagation_expression] = STATE(2379), + [sym_result_propagation_expression] = STATE(2379), + [sym_anon_struct_value_expression] = STATE(2378), + [sym_go_expression] = STATE(2379), + [sym_spawn_expression] = STATE(2379), + [sym_parenthesized_expression] = STATE(2379), + [sym_call_expression] = STATE(2379), + [sym_type_initializer] = STATE(2378), + [sym_function_literal] = STATE(2379), + [sym_reference_expression] = STATE(2377), + [sym_type_reference_expression] = STATE(3460), + [sym_unary_expression] = STATE(2379), + [sym_receive_expression] = STATE(2379), + [sym_binary_expression] = STATE(2379), + [sym_as_type_cast_expression] = STATE(2379), + [sym__max_group] = STATE(2379), + [sym_literal] = STATE(2392), + [sym_map_init_expression] = STATE(2378), + [sym_array_creation] = STATE(2379), + [sym_fixed_array_creation] = STATE(2379), + [sym_selector_expression] = STATE(2379), + [sym_index_expression] = STATE(2379), + [sym_slice_expression] = STATE(2379), + [sym_if_expression] = STATE(2378), + [sym_compile_time_if_expression] = STATE(2378), + [sym_is_expression] = STATE(2379), + [sym_in_expression] = STATE(2379), + [sym_enum_fetch] = STATE(2379), + [sym_match_expression] = STATE(2378), + [sym_select_expression] = STATE(2378), + [sym_lock_expression] = STATE(2378), + [sym_unsafe_expression] = STATE(2378), + [sym_sql_expression] = STATE(2378), + [sym_c_string_literal] = STATE(2401), + [sym_raw_string_literal] = STATE(2401), + [sym_interpreted_string_literal] = STATE(2401), + [sym_mutability_modifiers] = STATE(900), + [sym_mutable_expression] = STATE(3813), + [sym_expression_list] = STATE(4437), + [sym_plain_type] = STATE(4160), + [sym__plain_type_without_special] = STATE(2360), + [sym_anon_struct_type] = STATE(2362), + [sym_multi_return_type] = STATE(2360), + [sym_result_type] = STATE(2360), + [sym_option_type] = STATE(2360), + [sym_qualified_type] = STATE(3460), + [sym_fixed_array_type] = STATE(2362), + [sym_array_type] = STATE(2362), + [sym_pointer_type] = STATE(2362), + [sym_wrong_pointer_type] = STATE(2362), + [sym_map_type] = STATE(2362), + [sym_channel_type] = STATE(2362), + [sym_shared_type] = STATE(2362), + [sym_thread_type] = STATE(2362), + [sym_atomic_type] = STATE(2362), + [sym_generic_type] = STATE(2362), + [sym_function_type] = STATE(2362), + [sym_identifier] = ACTIONS(1815), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(1430), + [anon_sym_LBRACE] = ACTIONS(2752), + [anon_sym_LPAREN] = ACTIONS(1434), + [anon_sym_fn] = ACTIONS(1436), + [anon_sym_PLUS] = ACTIONS(1817), + [anon_sym_DASH] = ACTIONS(1817), + [anon_sym_STAR] = ACTIONS(1819), + [anon_sym_struct] = ACTIONS(1442), + [anon_sym_mut] = ACTIONS(41), + [anon_sym_QMARK] = ACTIONS(47), + [anon_sym_BANG] = ACTIONS(1821), + [anon_sym_go] = ACTIONS(1823), + [anon_sym_spawn] = ACTIONS(1825), + [anon_sym_json_DOTdecode] = ACTIONS(1450), + [anon_sym_LBRACK2] = ACTIONS(1827), + [anon_sym_TILDE] = ACTIONS(1817), + [anon_sym_CARET] = ACTIONS(1817), + [anon_sym_AMP] = ACTIONS(1829), + [anon_sym_LT_DASH] = ACTIONS(1831), + [sym_none] = ACTIONS(1458), + [sym_true] = ACTIONS(1458), + [sym_false] = ACTIONS(1458), + [sym_nil] = ACTIONS(1458), + [anon_sym_if] = ACTIONS(1833), + [anon_sym_DOLLARif] = ACTIONS(1462), + [anon_sym_match] = ACTIONS(1464), + [anon_sym_select] = ACTIONS(1835), + [anon_sym_lock] = ACTIONS(1837), + [anon_sym_rlock] = ACTIONS(1837), + [anon_sym_unsafe] = ACTIONS(1839), + [anon_sym_sql] = ACTIONS(1472), + [sym_int_literal] = ACTIONS(1458), + [sym_float_literal] = ACTIONS(1474), + [sym_rune_literal] = ACTIONS(1474), + [sym_pseudo_compile_time_identifier] = ACTIONS(1476), + [anon_sym_shared] = ACTIONS(83), + [anon_sym_map_LBRACK] = ACTIONS(85), + [anon_sym_chan] = ACTIONS(87), + [anon_sym_thread] = ACTIONS(89), + [anon_sym_atomic] = ACTIONS(91), + [sym___double_quote] = ACTIONS(1480), + [sym___single_quote] = ACTIONS(1482), + [sym___c_double_quote] = ACTIONS(1484), + [sym___c_single_quote] = ACTIONS(1486), + [sym___r_double_quote] = ACTIONS(1488), + [sym___r_single_quote] = ACTIONS(1490), }, [435] = { [sym_line_comment] = STATE(435), [sym_block_comment] = STATE(435), - [ts_builtin_sym_end] = ACTIONS(2751), - [sym_identifier] = ACTIONS(2753), - [anon_sym_LF] = ACTIONS(2753), - [anon_sym_CR] = ACTIONS(2753), - [anon_sym_CR_LF] = ACTIONS(2753), + [ts_builtin_sym_end] = ACTIONS(2754), + [sym_identifier] = ACTIONS(2756), + [anon_sym_LF] = ACTIONS(2756), + [anon_sym_CR] = ACTIONS(2756), + [anon_sym_CR_LF] = ACTIONS(2756), [anon_sym_SLASH_SLASH] = ACTIONS(497), [anon_sym_SLASH_STAR] = ACTIONS(499), - [anon_sym_DOT] = ACTIONS(2753), - [anon_sym_as] = ACTIONS(2753), - [anon_sym_LBRACE] = ACTIONS(2753), - [anon_sym_COMMA] = ACTIONS(2753), - [anon_sym_const] = ACTIONS(2753), - [anon_sym_LPAREN] = ACTIONS(2753), - [anon_sym_EQ] = ACTIONS(2753), - [anon_sym___global] = ACTIONS(2753), - [anon_sym_type] = ACTIONS(2753), - [anon_sym_PIPE] = ACTIONS(2753), - [anon_sym_fn] = ACTIONS(2753), - [anon_sym_PLUS] = ACTIONS(2753), - [anon_sym_DASH] = ACTIONS(2753), - [anon_sym_STAR] = ACTIONS(2753), - [anon_sym_SLASH] = ACTIONS(2753), - [anon_sym_PERCENT] = ACTIONS(2753), - [anon_sym_LT] = ACTIONS(2753), - [anon_sym_GT] = ACTIONS(2753), - [anon_sym_EQ_EQ] = ACTIONS(2753), - [anon_sym_BANG_EQ] = ACTIONS(2753), - [anon_sym_LT_EQ] = ACTIONS(2753), - [anon_sym_GT_EQ] = ACTIONS(2753), - [anon_sym_LBRACK] = ACTIONS(2751), - [anon_sym_struct] = ACTIONS(2753), - [anon_sym_union] = ACTIONS(2753), - [anon_sym_pub] = ACTIONS(2753), - [anon_sym_mut] = ACTIONS(2753), - [anon_sym_enum] = ACTIONS(2753), - [anon_sym_interface] = ACTIONS(2753), - [anon_sym_PLUS_PLUS] = ACTIONS(2753), - [anon_sym_DASH_DASH] = ACTIONS(2753), - [anon_sym_QMARK] = ACTIONS(2753), - [anon_sym_BANG] = ACTIONS(2753), - [anon_sym_go] = ACTIONS(2753), - [anon_sym_spawn] = ACTIONS(2753), - [anon_sym_json_DOTdecode] = ACTIONS(2753), - [anon_sym_LBRACK2] = ACTIONS(2753), - [anon_sym_TILDE] = ACTIONS(2753), - [anon_sym_CARET] = ACTIONS(2753), - [anon_sym_AMP] = ACTIONS(2753), - [anon_sym_LT_DASH] = ACTIONS(2753), - [anon_sym_LT_LT] = ACTIONS(2753), - [anon_sym_GT_GT] = ACTIONS(2753), - [anon_sym_GT_GT_GT] = ACTIONS(2753), - [anon_sym_AMP_CARET] = ACTIONS(2753), - [anon_sym_AMP_AMP] = ACTIONS(2753), - [anon_sym_PIPE_PIPE] = ACTIONS(2753), - [anon_sym_or] = ACTIONS(2753), - [sym_none] = ACTIONS(2753), - [sym_true] = ACTIONS(2753), - [sym_false] = ACTIONS(2753), - [sym_nil] = ACTIONS(2753), - [anon_sym_QMARK_DOT] = ACTIONS(2753), - [anon_sym_POUND_LBRACK] = ACTIONS(2753), - [anon_sym_if] = ACTIONS(2753), - [anon_sym_DOLLARif] = ACTIONS(2753), - [anon_sym_is] = ACTIONS(2753), - [anon_sym_BANGis] = ACTIONS(2753), - [anon_sym_in] = ACTIONS(2753), - [anon_sym_BANGin] = ACTIONS(2753), - [anon_sym_match] = ACTIONS(2753), - [anon_sym_select] = ACTIONS(2753), - [anon_sym_STAR_EQ] = ACTIONS(2753), - [anon_sym_SLASH_EQ] = ACTIONS(2753), - [anon_sym_PERCENT_EQ] = ACTIONS(2753), - [anon_sym_LT_LT_EQ] = ACTIONS(2753), - [anon_sym_GT_GT_EQ] = ACTIONS(2753), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(2753), - [anon_sym_AMP_EQ] = ACTIONS(2753), - [anon_sym_AMP_CARET_EQ] = ACTIONS(2753), - [anon_sym_PLUS_EQ] = ACTIONS(2753), - [anon_sym_DASH_EQ] = ACTIONS(2753), - [anon_sym_PIPE_EQ] = ACTIONS(2753), - [anon_sym_CARET_EQ] = ACTIONS(2753), - [anon_sym_COLON_EQ] = ACTIONS(2753), - [anon_sym_lock] = ACTIONS(2753), - [anon_sym_rlock] = ACTIONS(2753), - [anon_sym_unsafe] = ACTIONS(2753), - [anon_sym_sql] = ACTIONS(2753), - [sym_int_literal] = ACTIONS(2753), - [sym_float_literal] = ACTIONS(2753), - [sym_rune_literal] = ACTIONS(2753), - [sym_pseudo_compile_time_identifier] = ACTIONS(2753), - [anon_sym_shared] = ACTIONS(2753), - [anon_sym_map_LBRACK] = ACTIONS(2753), - [anon_sym_chan] = ACTIONS(2753), - [anon_sym_thread] = ACTIONS(2753), - [anon_sym_atomic] = ACTIONS(2753), - [anon_sym_assert] = ACTIONS(2753), - [anon_sym_defer] = ACTIONS(2753), - [anon_sym_goto] = ACTIONS(2753), - [anon_sym_break] = ACTIONS(2753), - [anon_sym_continue] = ACTIONS(2753), - [anon_sym_return] = ACTIONS(2753), - [anon_sym_DOLLARfor] = ACTIONS(2753), - [anon_sym_for] = ACTIONS(2753), - [anon_sym_POUND] = ACTIONS(2753), - [anon_sym_asm] = ACTIONS(2753), - [anon_sym_AT_LBRACK] = ACTIONS(2753), - [sym___double_quote] = ACTIONS(2753), - [sym___single_quote] = ACTIONS(2753), - [sym___c_double_quote] = ACTIONS(2753), - [sym___c_single_quote] = ACTIONS(2753), - [sym___r_double_quote] = ACTIONS(2753), - [sym___r_single_quote] = ACTIONS(2753), + [anon_sym_DOT] = ACTIONS(2756), + [anon_sym_as] = ACTIONS(2756), + [anon_sym_LBRACE] = ACTIONS(2756), + [anon_sym_COMMA] = ACTIONS(2756), + [anon_sym_const] = ACTIONS(2756), + [anon_sym_LPAREN] = ACTIONS(2756), + [anon_sym_EQ] = ACTIONS(2756), + [anon_sym___global] = ACTIONS(2756), + [anon_sym_type] = ACTIONS(2756), + [anon_sym_PIPE] = ACTIONS(2756), + [anon_sym_fn] = ACTIONS(2756), + [anon_sym_PLUS] = ACTIONS(2756), + [anon_sym_DASH] = ACTIONS(2756), + [anon_sym_STAR] = ACTIONS(2756), + [anon_sym_SLASH] = ACTIONS(2756), + [anon_sym_PERCENT] = ACTIONS(2756), + [anon_sym_LT] = ACTIONS(2756), + [anon_sym_GT] = ACTIONS(2756), + [anon_sym_EQ_EQ] = ACTIONS(2756), + [anon_sym_BANG_EQ] = ACTIONS(2756), + [anon_sym_LT_EQ] = ACTIONS(2756), + [anon_sym_GT_EQ] = ACTIONS(2756), + [anon_sym_LBRACK] = ACTIONS(2754), + [anon_sym_struct] = ACTIONS(2756), + [anon_sym_union] = ACTIONS(2756), + [anon_sym_pub] = ACTIONS(2756), + [anon_sym_mut] = ACTIONS(2756), + [anon_sym_enum] = ACTIONS(2756), + [anon_sym_interface] = ACTIONS(2756), + [anon_sym_PLUS_PLUS] = ACTIONS(2756), + [anon_sym_DASH_DASH] = ACTIONS(2756), + [anon_sym_QMARK] = ACTIONS(2756), + [anon_sym_BANG] = ACTIONS(2756), + [anon_sym_go] = ACTIONS(2756), + [anon_sym_spawn] = ACTIONS(2756), + [anon_sym_json_DOTdecode] = ACTIONS(2756), + [anon_sym_LBRACK2] = ACTIONS(2756), + [anon_sym_TILDE] = ACTIONS(2756), + [anon_sym_CARET] = ACTIONS(2756), + [anon_sym_AMP] = ACTIONS(2756), + [anon_sym_LT_DASH] = ACTIONS(2756), + [anon_sym_LT_LT] = ACTIONS(2756), + [anon_sym_GT_GT] = ACTIONS(2756), + [anon_sym_GT_GT_GT] = ACTIONS(2756), + [anon_sym_AMP_CARET] = ACTIONS(2756), + [anon_sym_AMP_AMP] = ACTIONS(2756), + [anon_sym_PIPE_PIPE] = ACTIONS(2756), + [anon_sym_or] = ACTIONS(2756), + [sym_none] = ACTIONS(2756), + [sym_true] = ACTIONS(2756), + [sym_false] = ACTIONS(2756), + [sym_nil] = ACTIONS(2756), + [anon_sym_QMARK_DOT] = ACTIONS(2756), + [anon_sym_POUND_LBRACK] = ACTIONS(2756), + [anon_sym_if] = ACTIONS(2756), + [anon_sym_DOLLARif] = ACTIONS(2756), + [anon_sym_is] = ACTIONS(2756), + [anon_sym_BANGis] = ACTIONS(2756), + [anon_sym_in] = ACTIONS(2756), + [anon_sym_BANGin] = ACTIONS(2756), + [anon_sym_match] = ACTIONS(2756), + [anon_sym_select] = ACTIONS(2756), + [anon_sym_STAR_EQ] = ACTIONS(2756), + [anon_sym_SLASH_EQ] = ACTIONS(2756), + [anon_sym_PERCENT_EQ] = ACTIONS(2756), + [anon_sym_LT_LT_EQ] = ACTIONS(2756), + [anon_sym_GT_GT_EQ] = ACTIONS(2756), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(2756), + [anon_sym_AMP_EQ] = ACTIONS(2756), + [anon_sym_AMP_CARET_EQ] = ACTIONS(2756), + [anon_sym_PLUS_EQ] = ACTIONS(2756), + [anon_sym_DASH_EQ] = ACTIONS(2756), + [anon_sym_PIPE_EQ] = ACTIONS(2756), + [anon_sym_CARET_EQ] = ACTIONS(2756), + [anon_sym_COLON_EQ] = ACTIONS(2756), + [anon_sym_lock] = ACTIONS(2756), + [anon_sym_rlock] = ACTIONS(2756), + [anon_sym_unsafe] = ACTIONS(2756), + [anon_sym_sql] = ACTIONS(2756), + [sym_int_literal] = ACTIONS(2756), + [sym_float_literal] = ACTIONS(2756), + [sym_rune_literal] = ACTIONS(2756), + [sym_pseudo_compile_time_identifier] = ACTIONS(2756), + [anon_sym_shared] = ACTIONS(2756), + [anon_sym_map_LBRACK] = ACTIONS(2756), + [anon_sym_chan] = ACTIONS(2756), + [anon_sym_thread] = ACTIONS(2756), + [anon_sym_atomic] = ACTIONS(2756), + [anon_sym_assert] = ACTIONS(2756), + [anon_sym_defer] = ACTIONS(2756), + [anon_sym_goto] = ACTIONS(2756), + [anon_sym_break] = ACTIONS(2756), + [anon_sym_continue] = ACTIONS(2756), + [anon_sym_return] = ACTIONS(2756), + [anon_sym_DOLLARfor] = ACTIONS(2756), + [anon_sym_for] = ACTIONS(2756), + [anon_sym_POUND] = ACTIONS(2756), + [anon_sym_asm] = ACTIONS(2756), + [anon_sym_AT_LBRACK] = ACTIONS(2756), + [sym___double_quote] = ACTIONS(2756), + [sym___single_quote] = ACTIONS(2756), + [sym___c_double_quote] = ACTIONS(2756), + [sym___c_single_quote] = ACTIONS(2756), + [sym___r_double_quote] = ACTIONS(2756), + [sym___r_single_quote] = ACTIONS(2756), }, [436] = { [sym_line_comment] = STATE(436), [sym_block_comment] = STATE(436), - [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), - [anon_sym_SLASH_SLASH] = ACTIONS(497), - [anon_sym_SLASH_STAR] = ACTIONS(499), - [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), + [sym__expression] = STATE(1273), + [sym__expression_without_blocks] = STATE(1318), + [sym__expression_with_blocks] = STATE(1318), + [sym_inc_expression] = STATE(1319), + [sym_dec_expression] = STATE(1319), + [sym_or_block_expression] = STATE(1319), + [sym_option_propagation_expression] = STATE(1319), + [sym_result_propagation_expression] = STATE(1319), + [sym_anon_struct_value_expression] = STATE(1320), + [sym_go_expression] = STATE(1319), + [sym_spawn_expression] = STATE(1319), + [sym_parenthesized_expression] = STATE(1319), + [sym_call_expression] = STATE(1319), + [sym_type_initializer] = STATE(1320), + [sym_function_literal] = STATE(1319), + [sym_reference_expression] = STATE(1397), + [sym_type_reference_expression] = STATE(3460), + [sym_unary_expression] = STATE(1319), + [sym_receive_expression] = STATE(1319), + [sym_binary_expression] = STATE(1319), + [sym_as_type_cast_expression] = STATE(1319), + [sym__max_group] = STATE(1319), + [sym_literal] = STATE(1314), + [sym_map_init_expression] = STATE(1320), + [sym_array_creation] = STATE(1319), + [sym_fixed_array_creation] = STATE(1319), + [sym_selector_expression] = STATE(1399), + [sym_index_expression] = STATE(1319), + [sym_slice_expression] = STATE(1319), + [sym_if_expression] = STATE(1320), + [sym_compile_time_if_expression] = STATE(1320), + [sym_is_expression] = STATE(1319), + [sym_in_expression] = STATE(1319), + [sym_enum_fetch] = STATE(1319), + [sym_match_expression] = STATE(1320), + [sym_select_expression] = STATE(1320), + [sym_lock_expression] = STATE(1320), + [sym_unsafe_expression] = STATE(1320), + [sym_sql_expression] = STATE(1320), + [sym_c_string_literal] = STATE(1291), + [sym_raw_string_literal] = STATE(1291), + [sym_interpreted_string_literal] = STATE(1291), + [sym_mutability_modifiers] = STATE(639), + [sym_plain_type] = STATE(4307), + [sym__plain_type_without_special] = STATE(2360), + [sym_anon_struct_type] = STATE(2362), + [sym_multi_return_type] = STATE(2360), + [sym_result_type] = STATE(2360), + [sym_option_type] = STATE(2360), + [sym_qualified_type] = STATE(3460), + [sym_fixed_array_type] = STATE(2362), + [sym_array_type] = STATE(2362), + [sym_pointer_type] = STATE(2362), + [sym_wrong_pointer_type] = STATE(2362), + [sym_map_type] = STATE(2362), + [sym_channel_type] = STATE(2362), + [sym_shared_type] = STATE(2362), + [sym_thread_type] = STATE(2362), + [sym_atomic_type] = STATE(2362), + [sym_generic_type] = STATE(2362), + [sym_function_type] = STATE(2362), + [aux_sym__array_repeat1] = STATE(343), + [sym_identifier] = ACTIONS(1360), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(1362), + [anon_sym_LBRACE] = ACTIONS(1364), + [anon_sym_LPAREN] = ACTIONS(1366), + [anon_sym_fn] = ACTIONS(1368), + [anon_sym_PLUS] = ACTIONS(1370), + [anon_sym_DASH] = ACTIONS(1370), + [anon_sym_STAR] = ACTIONS(1372), + [anon_sym_RBRACK] = ACTIONS(2758), + [anon_sym_struct] = ACTIONS(1376), + [anon_sym_mut] = ACTIONS(41), + [anon_sym_QMARK] = ACTIONS(47), + [anon_sym_BANG] = ACTIONS(1378), + [anon_sym_go] = ACTIONS(1380), + [anon_sym_spawn] = ACTIONS(1382), + [anon_sym_json_DOTdecode] = ACTIONS(1384), + [anon_sym_LBRACK2] = ACTIONS(1386), + [anon_sym_TILDE] = ACTIONS(1370), + [anon_sym_CARET] = ACTIONS(1370), + [anon_sym_AMP] = ACTIONS(1388), + [anon_sym_LT_DASH] = ACTIONS(1390), + [sym_none] = ACTIONS(1392), + [sym_true] = ACTIONS(1392), + [sym_false] = ACTIONS(1392), + [sym_nil] = ACTIONS(1392), + [anon_sym_if] = ACTIONS(1865), + [anon_sym_DOLLARif] = ACTIONS(1396), + [anon_sym_match] = ACTIONS(1398), + [anon_sym_select] = ACTIONS(1400), + [anon_sym_lock] = ACTIONS(1402), + [anon_sym_rlock] = ACTIONS(1402), + [anon_sym_unsafe] = ACTIONS(1871), + [anon_sym_sql] = ACTIONS(1406), + [sym_int_literal] = ACTIONS(1408), + [sym_float_literal] = ACTIONS(1410), + [sym_rune_literal] = ACTIONS(1410), + [sym_pseudo_compile_time_identifier] = ACTIONS(1412), + [anon_sym_shared] = ACTIONS(83), + [anon_sym_map_LBRACK] = ACTIONS(85), + [anon_sym_chan] = ACTIONS(87), + [anon_sym_thread] = ACTIONS(89), + [anon_sym_atomic] = ACTIONS(91), + [sym___double_quote] = ACTIONS(1414), + [sym___single_quote] = ACTIONS(1416), + [sym___c_double_quote] = ACTIONS(1418), + [sym___c_single_quote] = ACTIONS(1420), + [sym___r_double_quote] = ACTIONS(1422), + [sym___r_single_quote] = ACTIONS(1424), }, [437] = { [sym_line_comment] = STATE(437), [sym_block_comment] = STATE(437), - [ts_builtin_sym_end] = ACTIONS(2759), - [sym_identifier] = ACTIONS(2761), - [anon_sym_LF] = ACTIONS(2761), - [anon_sym_CR] = ACTIONS(2761), - [anon_sym_CR_LF] = ACTIONS(2761), - [anon_sym_SLASH_SLASH] = ACTIONS(497), - [anon_sym_SLASH_STAR] = ACTIONS(499), - [anon_sym_DOT] = ACTIONS(2763), - [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(1273), + [sym__expression_without_blocks] = STATE(1318), + [sym__expression_with_blocks] = STATE(1318), + [sym_inc_expression] = STATE(1319), + [sym_dec_expression] = STATE(1319), + [sym_or_block_expression] = STATE(1319), + [sym_option_propagation_expression] = STATE(1319), + [sym_result_propagation_expression] = STATE(1319), + [sym_anon_struct_value_expression] = STATE(1320), + [sym_go_expression] = STATE(1319), + [sym_spawn_expression] = STATE(1319), + [sym_parenthesized_expression] = STATE(1319), + [sym_call_expression] = STATE(1319), + [sym_type_initializer] = STATE(1320), + [sym_function_literal] = STATE(1319), + [sym_reference_expression] = STATE(1397), + [sym_type_reference_expression] = STATE(3460), + [sym_unary_expression] = STATE(1319), + [sym_receive_expression] = STATE(1319), + [sym_binary_expression] = STATE(1319), + [sym_as_type_cast_expression] = STATE(1319), + [sym__max_group] = STATE(1319), + [sym_literal] = STATE(1314), + [sym_map_init_expression] = STATE(1320), + [sym_array_creation] = STATE(1319), + [sym_fixed_array_creation] = STATE(1319), + [sym_selector_expression] = STATE(1399), + [sym_index_expression] = STATE(1319), + [sym_slice_expression] = STATE(1319), + [sym_if_expression] = STATE(1320), + [sym_compile_time_if_expression] = STATE(1320), + [sym_is_expression] = STATE(1319), + [sym_in_expression] = STATE(1319), + [sym_enum_fetch] = STATE(1319), + [sym_match_expression] = STATE(1320), + [sym_select_expression] = STATE(1320), + [sym_lock_expression] = STATE(1320), + [sym_unsafe_expression] = STATE(1320), + [sym_sql_expression] = STATE(1320), + [sym_c_string_literal] = STATE(1291), + [sym_raw_string_literal] = STATE(1291), + [sym_interpreted_string_literal] = STATE(1291), + [sym_mutability_modifiers] = STATE(639), + [sym_plain_type] = STATE(4307), + [sym__plain_type_without_special] = STATE(2360), + [sym_anon_struct_type] = STATE(2362), + [sym_multi_return_type] = STATE(2360), + [sym_result_type] = STATE(2360), + [sym_option_type] = STATE(2360), + [sym_qualified_type] = STATE(3460), + [sym_fixed_array_type] = STATE(2362), + [sym_array_type] = STATE(2362), + [sym_pointer_type] = STATE(2362), + [sym_wrong_pointer_type] = STATE(2362), + [sym_map_type] = STATE(2362), + [sym_channel_type] = STATE(2362), + [sym_shared_type] = STATE(2362), + [sym_thread_type] = STATE(2362), + [sym_atomic_type] = STATE(2362), + [sym_generic_type] = STATE(2362), + [sym_function_type] = STATE(2362), + [aux_sym__array_repeat1] = STATE(444), + [sym_identifier] = ACTIONS(1360), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(1362), + [anon_sym_LBRACE] = ACTIONS(1364), + [anon_sym_LPAREN] = ACTIONS(1366), + [anon_sym_fn] = ACTIONS(1368), + [anon_sym_PLUS] = ACTIONS(1370), + [anon_sym_DASH] = ACTIONS(1370), + [anon_sym_STAR] = ACTIONS(1372), + [anon_sym_RBRACK] = ACTIONS(2760), + [anon_sym_struct] = ACTIONS(1376), + [anon_sym_mut] = ACTIONS(41), + [anon_sym_QMARK] = ACTIONS(47), + [anon_sym_BANG] = ACTIONS(1378), + [anon_sym_go] = ACTIONS(1380), + [anon_sym_spawn] = ACTIONS(1382), + [anon_sym_json_DOTdecode] = ACTIONS(1384), + [anon_sym_LBRACK2] = ACTIONS(1386), + [anon_sym_TILDE] = ACTIONS(1370), + [anon_sym_CARET] = ACTIONS(1370), + [anon_sym_AMP] = ACTIONS(1388), + [anon_sym_LT_DASH] = ACTIONS(1390), + [sym_none] = ACTIONS(1392), + [sym_true] = ACTIONS(1392), + [sym_false] = ACTIONS(1392), + [sym_nil] = ACTIONS(1392), + [anon_sym_if] = ACTIONS(1865), + [anon_sym_DOLLARif] = ACTIONS(1396), + [anon_sym_match] = ACTIONS(1398), + [anon_sym_select] = ACTIONS(1400), + [anon_sym_lock] = ACTIONS(1402), + [anon_sym_rlock] = ACTIONS(1402), + [anon_sym_unsafe] = ACTIONS(1871), + [anon_sym_sql] = ACTIONS(1406), + [sym_int_literal] = ACTIONS(1408), + [sym_float_literal] = ACTIONS(1410), + [sym_rune_literal] = ACTIONS(1410), + [sym_pseudo_compile_time_identifier] = ACTIONS(1412), + [anon_sym_shared] = ACTIONS(83), + [anon_sym_map_LBRACK] = ACTIONS(85), + [anon_sym_chan] = ACTIONS(87), + [anon_sym_thread] = ACTIONS(89), + [anon_sym_atomic] = ACTIONS(91), + [sym___double_quote] = ACTIONS(1414), + [sym___single_quote] = ACTIONS(1416), + [sym___c_double_quote] = ACTIONS(1418), + [sym___c_single_quote] = ACTIONS(1420), + [sym___r_double_quote] = ACTIONS(1422), + [sym___r_single_quote] = ACTIONS(1424), }, [438] = { [sym_line_comment] = STATE(438), [sym_block_comment] = STATE(438), + [sym__expression] = STATE(2598), + [sym__expression_without_blocks] = STATE(2347), + [sym__expression_with_blocks] = STATE(2347), + [sym_inc_expression] = STATE(2379), + [sym_dec_expression] = STATE(2379), + [sym_or_block_expression] = STATE(2379), + [sym_option_propagation_expression] = STATE(2379), + [sym_result_propagation_expression] = STATE(2379), + [sym_anon_struct_value_expression] = STATE(2378), + [sym_go_expression] = STATE(2379), + [sym_spawn_expression] = STATE(2379), + [sym_parenthesized_expression] = STATE(2379), + [sym_call_expression] = STATE(2379), + [sym_type_initializer] = STATE(2378), + [sym_function_literal] = STATE(2379), + [sym_reference_expression] = STATE(2377), + [sym_type_reference_expression] = STATE(3460), + [sym_unary_expression] = STATE(2379), + [sym_receive_expression] = STATE(2379), + [sym_binary_expression] = STATE(2379), + [sym_as_type_cast_expression] = STATE(2379), + [sym__max_group] = STATE(2379), + [sym_literal] = STATE(2392), + [sym_map_init_expression] = STATE(2378), + [sym_array_creation] = STATE(2379), + [sym_fixed_array_creation] = STATE(2379), + [sym_selector_expression] = STATE(2379), + [sym_index_expression] = STATE(2379), + [sym_slice_expression] = STATE(2379), + [sym_if_expression] = STATE(2378), + [sym_compile_time_if_expression] = STATE(2378), + [sym_is_expression] = STATE(2379), + [sym_in_expression] = STATE(2379), + [sym_enum_fetch] = STATE(2379), + [sym_match_expression] = STATE(2378), + [sym_select_expression] = STATE(2378), + [sym_lock_expression] = STATE(2378), + [sym_unsafe_expression] = STATE(2378), + [sym_sql_expression] = STATE(2378), + [sym_c_string_literal] = STATE(2401), + [sym_raw_string_literal] = STATE(2401), + [sym_interpreted_string_literal] = STATE(2401), + [sym_mutability_modifiers] = STATE(939), + [sym_plain_type] = STATE(3569), + [sym__plain_type_without_special] = STATE(2360), + [sym_anon_struct_type] = STATE(2362), + [sym_multi_return_type] = STATE(2360), + [sym_result_type] = STATE(2360), + [sym_option_type] = STATE(2360), + [sym_qualified_type] = STATE(3460), + [sym_fixed_array_type] = STATE(2362), + [sym_array_type] = STATE(2362), + [sym_pointer_type] = STATE(2362), + [sym_wrong_pointer_type] = STATE(2362), + [sym_map_type] = STATE(2362), + [sym_channel_type] = STATE(2362), + [sym_shared_type] = STATE(2362), + [sym_thread_type] = STATE(2362), + [sym_atomic_type] = STATE(2362), + [sym_generic_type] = STATE(2362), + [sym_function_type] = STATE(2362), + [sym_range] = STATE(4439), + [sym_identifier] = ACTIONS(2127), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(1430), + [anon_sym_LBRACE] = ACTIONS(1432), + [anon_sym_LPAREN] = ACTIONS(1434), + [anon_sym_fn] = ACTIONS(1436), + [anon_sym_PLUS] = ACTIONS(1438), + [anon_sym_DASH] = ACTIONS(1438), + [anon_sym_STAR] = ACTIONS(2129), + [anon_sym_struct] = ACTIONS(1442), + [anon_sym_mut] = ACTIONS(41), + [anon_sym_QMARK] = ACTIONS(47), + [anon_sym_BANG] = ACTIONS(2131), + [anon_sym_go] = ACTIONS(1446), + [anon_sym_spawn] = ACTIONS(1448), + [anon_sym_json_DOTdecode] = ACTIONS(1450), + [anon_sym_LBRACK2] = ACTIONS(1452), + [anon_sym_TILDE] = ACTIONS(1438), + [anon_sym_CARET] = ACTIONS(1438), + [anon_sym_AMP] = ACTIONS(2133), + [anon_sym_LT_DASH] = ACTIONS(1456), + [sym_none] = ACTIONS(1458), + [sym_true] = ACTIONS(1458), + [sym_false] = ACTIONS(1458), + [sym_nil] = ACTIONS(1458), + [anon_sym_if] = ACTIONS(1833), + [anon_sym_DOLLARif] = ACTIONS(1462), + [anon_sym_match] = ACTIONS(1464), + [anon_sym_select] = ACTIONS(1466), + [anon_sym_lock] = ACTIONS(1468), + [anon_sym_rlock] = ACTIONS(1468), + [anon_sym_unsafe] = ACTIONS(1839), + [anon_sym_sql] = ACTIONS(1472), + [sym_int_literal] = ACTIONS(1458), + [sym_float_literal] = ACTIONS(1474), + [sym_rune_literal] = ACTIONS(1474), + [sym_pseudo_compile_time_identifier] = ACTIONS(1476), + [anon_sym_shared] = ACTIONS(83), + [anon_sym_map_LBRACK] = ACTIONS(85), + [anon_sym_chan] = ACTIONS(87), + [anon_sym_thread] = ACTIONS(89), + [anon_sym_atomic] = ACTIONS(91), + [anon_sym_DOT_DOT] = ACTIONS(1478), + [sym___double_quote] = ACTIONS(1480), + [sym___single_quote] = ACTIONS(1482), + [sym___c_double_quote] = ACTIONS(1484), + [sym___c_single_quote] = ACTIONS(1486), + [sym___r_double_quote] = ACTIONS(1488), + [sym___r_single_quote] = ACTIONS(1490), + }, + [439] = { + [sym_line_comment] = STATE(439), + [sym_block_comment] = STATE(439), + [sym__expression] = STATE(2558), + [sym__expression_without_blocks] = STATE(2347), + [sym__expression_with_blocks] = STATE(2347), + [sym_inc_expression] = STATE(2379), + [sym_dec_expression] = STATE(2379), + [sym_or_block_expression] = STATE(2379), + [sym_option_propagation_expression] = STATE(2379), + [sym_result_propagation_expression] = STATE(2379), + [sym_anon_struct_value_expression] = STATE(2378), + [sym_go_expression] = STATE(2379), + [sym_spawn_expression] = STATE(2379), + [sym_parenthesized_expression] = STATE(2379), + [sym_call_expression] = STATE(2379), + [sym_type_initializer] = STATE(2378), + [sym_function_literal] = STATE(2379), + [sym_reference_expression] = STATE(2377), + [sym_type_reference_expression] = STATE(3460), + [sym_unary_expression] = STATE(2379), + [sym_receive_expression] = STATE(2379), + [sym_binary_expression] = STATE(2379), + [sym_as_type_cast_expression] = STATE(2379), + [sym__max_group] = STATE(2379), + [sym_literal] = STATE(2392), + [sym_map_init_expression] = STATE(2378), + [sym_array_creation] = STATE(2379), + [sym_fixed_array_creation] = STATE(2379), + [sym_selector_expression] = STATE(2379), + [sym_index_expression] = STATE(2379), + [sym_slice_expression] = STATE(2379), + [sym_if_expression] = STATE(2378), + [sym_compile_time_if_expression] = STATE(2378), + [sym_is_expression] = STATE(2379), + [sym_in_expression] = STATE(2379), + [sym_enum_fetch] = STATE(2379), + [sym_match_expression] = STATE(2378), + [sym_select_expression] = STATE(2378), + [sym_lock_expression] = STATE(2378), + [sym_unsafe_expression] = STATE(2378), + [sym_sql_expression] = STATE(2378), + [sym_c_string_literal] = STATE(2401), + [sym_raw_string_literal] = STATE(2401), + [sym_interpreted_string_literal] = STATE(2401), + [sym_mutability_modifiers] = STATE(900), + [sym_mutable_expression] = STATE(3813), + [sym_expression_list] = STATE(4353), + [sym_plain_type] = STATE(4160), + [sym__plain_type_without_special] = STATE(2360), + [sym_anon_struct_type] = STATE(2362), + [sym_multi_return_type] = STATE(2360), + [sym_result_type] = STATE(2360), + [sym_option_type] = STATE(2360), + [sym_qualified_type] = STATE(3460), + [sym_fixed_array_type] = STATE(2362), + [sym_array_type] = STATE(2362), + [sym_pointer_type] = STATE(2362), + [sym_wrong_pointer_type] = STATE(2362), + [sym_map_type] = STATE(2362), + [sym_channel_type] = STATE(2362), + [sym_shared_type] = STATE(2362), + [sym_thread_type] = STATE(2362), + [sym_atomic_type] = STATE(2362), + [sym_generic_type] = STATE(2362), + [sym_function_type] = STATE(2362), + [sym_identifier] = ACTIONS(1815), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(1430), + [anon_sym_LBRACE] = ACTIONS(2762), + [anon_sym_LPAREN] = ACTIONS(1434), + [anon_sym_fn] = ACTIONS(1436), + [anon_sym_PLUS] = ACTIONS(1817), + [anon_sym_DASH] = ACTIONS(1817), + [anon_sym_STAR] = ACTIONS(1819), + [anon_sym_struct] = ACTIONS(1442), + [anon_sym_mut] = ACTIONS(41), + [anon_sym_QMARK] = ACTIONS(47), + [anon_sym_BANG] = ACTIONS(1821), + [anon_sym_go] = ACTIONS(1823), + [anon_sym_spawn] = ACTIONS(1825), + [anon_sym_json_DOTdecode] = ACTIONS(1450), + [anon_sym_LBRACK2] = ACTIONS(1827), + [anon_sym_TILDE] = ACTIONS(1817), + [anon_sym_CARET] = ACTIONS(1817), + [anon_sym_AMP] = ACTIONS(1829), + [anon_sym_LT_DASH] = ACTIONS(1831), + [sym_none] = ACTIONS(1458), + [sym_true] = ACTIONS(1458), + [sym_false] = ACTIONS(1458), + [sym_nil] = ACTIONS(1458), + [anon_sym_if] = ACTIONS(1833), + [anon_sym_DOLLARif] = ACTIONS(1462), + [anon_sym_match] = ACTIONS(1464), + [anon_sym_select] = ACTIONS(1835), + [anon_sym_lock] = ACTIONS(1837), + [anon_sym_rlock] = ACTIONS(1837), + [anon_sym_unsafe] = ACTIONS(1839), + [anon_sym_sql] = ACTIONS(1472), + [sym_int_literal] = ACTIONS(1458), + [sym_float_literal] = ACTIONS(1474), + [sym_rune_literal] = ACTIONS(1474), + [sym_pseudo_compile_time_identifier] = ACTIONS(1476), + [anon_sym_shared] = ACTIONS(83), + [anon_sym_map_LBRACK] = ACTIONS(85), + [anon_sym_chan] = ACTIONS(87), + [anon_sym_thread] = ACTIONS(89), + [anon_sym_atomic] = ACTIONS(91), + [sym___double_quote] = ACTIONS(1480), + [sym___single_quote] = ACTIONS(1482), + [sym___c_double_quote] = ACTIONS(1484), + [sym___c_single_quote] = ACTIONS(1486), + [sym___r_double_quote] = ACTIONS(1488), + [sym___r_single_quote] = ACTIONS(1490), + }, + [440] = { + [sym_line_comment] = STATE(440), + [sym_block_comment] = STATE(440), + [sym__expression] = STATE(2598), + [sym__expression_without_blocks] = STATE(2347), + [sym__expression_with_blocks] = STATE(2347), + [sym_inc_expression] = STATE(2379), + [sym_dec_expression] = STATE(2379), + [sym_or_block_expression] = STATE(2379), + [sym_option_propagation_expression] = STATE(2379), + [sym_result_propagation_expression] = STATE(2379), + [sym_anon_struct_value_expression] = STATE(2378), + [sym_go_expression] = STATE(2379), + [sym_spawn_expression] = STATE(2379), + [sym_parenthesized_expression] = STATE(2379), + [sym_call_expression] = STATE(2379), + [sym_type_initializer] = STATE(2378), + [sym_function_literal] = STATE(2379), + [sym_reference_expression] = STATE(2377), + [sym_type_reference_expression] = STATE(3460), + [sym_unary_expression] = STATE(2379), + [sym_receive_expression] = STATE(2379), + [sym_binary_expression] = STATE(2379), + [sym_as_type_cast_expression] = STATE(2379), + [sym__max_group] = STATE(2379), + [sym_literal] = STATE(2392), + [sym_map_init_expression] = STATE(2378), + [sym_array_creation] = STATE(2379), + [sym_fixed_array_creation] = STATE(2379), + [sym_selector_expression] = STATE(2379), + [sym_index_expression] = STATE(2379), + [sym_slice_expression] = STATE(2379), + [sym_if_expression] = STATE(2378), + [sym_compile_time_if_expression] = STATE(2378), + [sym_is_expression] = STATE(2379), + [sym_in_expression] = STATE(2379), + [sym_enum_fetch] = STATE(2379), + [sym_match_expression] = STATE(2378), + [sym_select_expression] = STATE(2378), + [sym_lock_expression] = STATE(2378), + [sym_unsafe_expression] = STATE(2378), + [sym_sql_expression] = STATE(2378), + [sym_c_string_literal] = STATE(2401), + [sym_raw_string_literal] = STATE(2401), + [sym_interpreted_string_literal] = STATE(2401), + [sym_mutability_modifiers] = STATE(939), + [sym_plain_type] = STATE(4160), + [sym__plain_type_without_special] = STATE(2360), + [sym_anon_struct_type] = STATE(2362), + [sym_multi_return_type] = STATE(2360), + [sym_result_type] = STATE(2360), + [sym_option_type] = STATE(2360), + [sym_qualified_type] = STATE(3460), + [sym_fixed_array_type] = STATE(2362), + [sym_array_type] = STATE(2362), + [sym_pointer_type] = STATE(2362), + [sym_wrong_pointer_type] = STATE(2362), + [sym_map_type] = STATE(2362), + [sym_channel_type] = STATE(2362), + [sym_shared_type] = STATE(2362), + [sym_thread_type] = STATE(2362), + [sym_atomic_type] = STATE(2362), + [sym_generic_type] = STATE(2362), + [sym_function_type] = STATE(2362), + [sym_range] = STATE(4439), + [sym_identifier] = ACTIONS(1428), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(1430), + [anon_sym_LBRACE] = ACTIONS(1432), + [anon_sym_LPAREN] = ACTIONS(1434), + [anon_sym_fn] = ACTIONS(1436), + [anon_sym_PLUS] = ACTIONS(1438), + [anon_sym_DASH] = ACTIONS(1438), + [anon_sym_STAR] = ACTIONS(1440), + [anon_sym_struct] = ACTIONS(1442), + [anon_sym_mut] = ACTIONS(41), + [anon_sym_QMARK] = ACTIONS(47), + [anon_sym_BANG] = ACTIONS(1444), + [anon_sym_go] = ACTIONS(1446), + [anon_sym_spawn] = ACTIONS(1448), + [anon_sym_json_DOTdecode] = ACTIONS(1450), + [anon_sym_LBRACK2] = ACTIONS(1452), + [anon_sym_TILDE] = ACTIONS(1438), + [anon_sym_CARET] = ACTIONS(1438), + [anon_sym_AMP] = ACTIONS(1454), + [anon_sym_LT_DASH] = ACTIONS(1456), + [sym_none] = ACTIONS(1458), + [sym_true] = ACTIONS(1458), + [sym_false] = ACTIONS(1458), + [sym_nil] = ACTIONS(1458), + [anon_sym_if] = ACTIONS(1833), + [anon_sym_DOLLARif] = ACTIONS(1462), + [anon_sym_match] = ACTIONS(1464), + [anon_sym_select] = ACTIONS(1466), + [anon_sym_lock] = ACTIONS(1468), + [anon_sym_rlock] = ACTIONS(1468), + [anon_sym_unsafe] = ACTIONS(1839), + [anon_sym_sql] = ACTIONS(1472), + [sym_int_literal] = ACTIONS(1458), + [sym_float_literal] = ACTIONS(1474), + [sym_rune_literal] = ACTIONS(1474), + [sym_pseudo_compile_time_identifier] = ACTIONS(1476), + [anon_sym_shared] = ACTIONS(83), + [anon_sym_map_LBRACK] = ACTIONS(85), + [anon_sym_chan] = ACTIONS(87), + [anon_sym_thread] = ACTIONS(89), + [anon_sym_atomic] = ACTIONS(91), + [anon_sym_DOT_DOT] = ACTIONS(1478), + [sym___double_quote] = ACTIONS(1480), + [sym___single_quote] = ACTIONS(1482), + [sym___c_double_quote] = ACTIONS(1484), + [sym___c_single_quote] = ACTIONS(1486), + [sym___r_double_quote] = ACTIONS(1488), + [sym___r_single_quote] = ACTIONS(1490), + }, + [441] = { + [sym_line_comment] = STATE(441), + [sym_block_comment] = STATE(441), + [sym__expression] = STATE(2558), + [sym__expression_without_blocks] = STATE(2347), + [sym__expression_with_blocks] = STATE(2347), + [sym_inc_expression] = STATE(2379), + [sym_dec_expression] = STATE(2379), + [sym_or_block_expression] = STATE(2379), + [sym_option_propagation_expression] = STATE(2379), + [sym_result_propagation_expression] = STATE(2379), + [sym_anon_struct_value_expression] = STATE(2378), + [sym_go_expression] = STATE(2379), + [sym_spawn_expression] = STATE(2379), + [sym_parenthesized_expression] = STATE(2379), + [sym_call_expression] = STATE(2379), + [sym_type_initializer] = STATE(2378), + [sym_function_literal] = STATE(2379), + [sym_reference_expression] = STATE(2377), + [sym_type_reference_expression] = STATE(3460), + [sym_unary_expression] = STATE(2379), + [sym_receive_expression] = STATE(2379), + [sym_binary_expression] = STATE(2379), + [sym_as_type_cast_expression] = STATE(2379), + [sym__max_group] = STATE(2379), + [sym_literal] = STATE(2392), + [sym_map_init_expression] = STATE(2378), + [sym_array_creation] = STATE(2379), + [sym_fixed_array_creation] = STATE(2379), + [sym_selector_expression] = STATE(2379), + [sym_index_expression] = STATE(2379), + [sym_slice_expression] = STATE(2379), + [sym_if_expression] = STATE(2378), + [sym_compile_time_if_expression] = STATE(2378), + [sym_is_expression] = STATE(2379), + [sym_in_expression] = STATE(2379), + [sym_enum_fetch] = STATE(2379), + [sym_match_expression] = STATE(2378), + [sym_select_expression] = STATE(2378), + [sym_lock_expression] = STATE(2378), + [sym_unsafe_expression] = STATE(2378), + [sym_sql_expression] = STATE(2378), + [sym_c_string_literal] = STATE(2401), + [sym_raw_string_literal] = STATE(2401), + [sym_interpreted_string_literal] = STATE(2401), + [sym_mutability_modifiers] = STATE(900), + [sym_mutable_expression] = STATE(3813), + [sym_expression_list] = STATE(4416), + [sym_plain_type] = STATE(4160), + [sym__plain_type_without_special] = STATE(2360), + [sym_anon_struct_type] = STATE(2362), + [sym_multi_return_type] = STATE(2360), + [sym_result_type] = STATE(2360), + [sym_option_type] = STATE(2360), + [sym_qualified_type] = STATE(3460), + [sym_fixed_array_type] = STATE(2362), + [sym_array_type] = STATE(2362), + [sym_pointer_type] = STATE(2362), + [sym_wrong_pointer_type] = STATE(2362), + [sym_map_type] = STATE(2362), + [sym_channel_type] = STATE(2362), + [sym_shared_type] = STATE(2362), + [sym_thread_type] = STATE(2362), + [sym_atomic_type] = STATE(2362), + [sym_generic_type] = STATE(2362), + [sym_function_type] = STATE(2362), + [sym_identifier] = ACTIONS(1815), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(1430), + [anon_sym_LBRACE] = ACTIONS(2764), + [anon_sym_LPAREN] = ACTIONS(1434), + [anon_sym_fn] = ACTIONS(1436), + [anon_sym_PLUS] = ACTIONS(1817), + [anon_sym_DASH] = ACTIONS(1817), + [anon_sym_STAR] = ACTIONS(1819), + [anon_sym_struct] = ACTIONS(1442), + [anon_sym_mut] = ACTIONS(41), + [anon_sym_QMARK] = ACTIONS(47), + [anon_sym_BANG] = ACTIONS(1821), + [anon_sym_go] = ACTIONS(1823), + [anon_sym_spawn] = ACTIONS(1825), + [anon_sym_json_DOTdecode] = ACTIONS(1450), + [anon_sym_LBRACK2] = ACTIONS(1827), + [anon_sym_TILDE] = ACTIONS(1817), + [anon_sym_CARET] = ACTIONS(1817), + [anon_sym_AMP] = ACTIONS(1829), + [anon_sym_LT_DASH] = ACTIONS(1831), + [sym_none] = ACTIONS(1458), + [sym_true] = ACTIONS(1458), + [sym_false] = ACTIONS(1458), + [sym_nil] = ACTIONS(1458), + [anon_sym_if] = ACTIONS(1833), + [anon_sym_DOLLARif] = ACTIONS(1462), + [anon_sym_match] = ACTIONS(1464), + [anon_sym_select] = ACTIONS(1835), + [anon_sym_lock] = ACTIONS(1837), + [anon_sym_rlock] = ACTIONS(1837), + [anon_sym_unsafe] = ACTIONS(1839), + [anon_sym_sql] = ACTIONS(1472), + [sym_int_literal] = ACTIONS(1458), + [sym_float_literal] = ACTIONS(1474), + [sym_rune_literal] = ACTIONS(1474), + [sym_pseudo_compile_time_identifier] = ACTIONS(1476), + [anon_sym_shared] = ACTIONS(83), + [anon_sym_map_LBRACK] = ACTIONS(85), + [anon_sym_chan] = ACTIONS(87), + [anon_sym_thread] = ACTIONS(89), + [anon_sym_atomic] = ACTIONS(91), + [sym___double_quote] = ACTIONS(1480), + [sym___single_quote] = ACTIONS(1482), + [sym___c_double_quote] = ACTIONS(1484), + [sym___c_single_quote] = ACTIONS(1486), + [sym___r_double_quote] = ACTIONS(1488), + [sym___r_single_quote] = ACTIONS(1490), + }, + [442] = { + [sym_line_comment] = STATE(442), + [sym_block_comment] = STATE(442), [ts_builtin_sym_end] = ACTIONS(2766), [sym_identifier] = ACTIONS(2768), [anon_sym_LF] = ACTIONS(2768), @@ -73724,125 +74206,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym___r_double_quote] = ACTIONS(2768), [sym___r_single_quote] = ACTIONS(2768), }, - [439] = { - [sym_line_comment] = STATE(439), - [sym_block_comment] = STATE(439), - [ts_builtin_sym_end] = ACTIONS(2759), - [sym_identifier] = ACTIONS(2761), - [anon_sym_LF] = ACTIONS(2761), - [anon_sym_CR] = ACTIONS(2761), - [anon_sym_CR_LF] = ACTIONS(2761), - [anon_sym_SLASH_SLASH] = ACTIONS(497), - [anon_sym_SLASH_STAR] = ACTIONS(499), - [anon_sym_DOT] = ACTIONS(2761), - [anon_sym_as] = ACTIONS(2761), - [anon_sym_LBRACE] = ACTIONS(2761), - [anon_sym_COMMA] = ACTIONS(2761), - [anon_sym_const] = ACTIONS(2761), - [anon_sym_LPAREN] = ACTIONS(2761), - [anon_sym_EQ] = ACTIONS(2761), - [anon_sym___global] = ACTIONS(2761), - [anon_sym_type] = ACTIONS(2761), - [anon_sym_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), - }, - [440] = { - [sym_line_comment] = STATE(440), - [sym_block_comment] = STATE(440), + [443] = { + [sym_line_comment] = STATE(443), + [sym_block_comment] = STATE(443), [ts_builtin_sym_end] = ACTIONS(2770), [sym_identifier] = ACTIONS(2772), [anon_sym_LF] = ACTIONS(2772), @@ -73956,125 +74322,241 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym___r_double_quote] = ACTIONS(2772), [sym___r_single_quote] = ACTIONS(2772), }, - [441] = { - [sym_line_comment] = STATE(441), - [sym_block_comment] = STATE(441), - [sym__expression] = STATE(1268), - [sym__expression_without_blocks] = STATE(1312), - [sym__expression_with_blocks] = STATE(1312), - [sym_inc_expression] = STATE(1313), - [sym_dec_expression] = STATE(1313), - [sym_or_block_expression] = STATE(1313), - [sym_option_propagation_expression] = STATE(1313), - [sym_result_propagation_expression] = STATE(1313), - [sym_anon_struct_value_expression] = STATE(1314), - [sym_go_expression] = STATE(1313), - [sym_spawn_expression] = STATE(1313), - [sym_parenthesized_expression] = STATE(1313), - [sym_call_expression] = STATE(1313), - [sym_type_initializer] = STATE(1314), - [sym_function_literal] = STATE(1313), - [sym_reference_expression] = STATE(1394), - [sym_type_reference_expression] = STATE(3541), - [sym_unary_expression] = STATE(1313), - [sym_receive_expression] = STATE(1313), - [sym_binary_expression] = STATE(1313), - [sym_as_type_cast_expression] = STATE(1313), - [sym__max_group] = STATE(1313), - [sym_literal] = STATE(1308), - [sym_map_init_expression] = STATE(1314), - [sym_array_creation] = STATE(1313), - [sym_fixed_array_creation] = STATE(1313), - [sym_selector_expression] = STATE(1393), - [sym_index_expression] = STATE(1313), - [sym_slice_expression] = STATE(1313), - [sym_if_expression] = STATE(1314), - [sym_compile_time_if_expression] = STATE(1314), - [sym_is_expression] = STATE(1313), - [sym_in_expression] = STATE(1313), - [sym_enum_fetch] = STATE(1313), - [sym_match_expression] = STATE(1314), - [sym_select_expression] = STATE(1314), - [sym_lock_expression] = STATE(1314), - [sym_unsafe_expression] = STATE(1314), - [sym_sql_expression] = STATE(1314), - [sym_c_string_literal] = STATE(1286), - [sym_raw_string_literal] = STATE(1286), - [sym_interpreted_string_literal] = STATE(1286), - [sym_mutability_modifiers] = STATE(699), - [sym_plain_type] = STATE(4192), - [sym__plain_type_without_special] = STATE(2302), - [sym_anon_struct_type] = STATE(2303), - [sym_multi_return_type] = STATE(2302), - [sym_result_type] = STATE(2302), - [sym_option_type] = STATE(2302), - [sym_qualified_type] = STATE(3541), - [sym_fixed_array_type] = STATE(2303), - [sym_array_type] = STATE(2303), - [sym_pointer_type] = STATE(2303), - [sym_wrong_pointer_type] = STATE(2303), - [sym_map_type] = STATE(2303), - [sym_channel_type] = STATE(2303), - [sym_shared_type] = STATE(2303), - [sym_thread_type] = STATE(2303), - [sym_atomic_type] = STATE(2303), - [sym_generic_type] = STATE(2303), - [sym_function_type] = STATE(2303), - [aux_sym__array_repeat1] = STATE(377), - [sym_identifier] = ACTIONS(1354), + [444] = { + [sym_line_comment] = STATE(444), + [sym_block_comment] = STATE(444), + [sym__expression] = STATE(1273), + [sym__expression_without_blocks] = STATE(1318), + [sym__expression_with_blocks] = STATE(1318), + [sym_inc_expression] = STATE(1319), + [sym_dec_expression] = STATE(1319), + [sym_or_block_expression] = STATE(1319), + [sym_option_propagation_expression] = STATE(1319), + [sym_result_propagation_expression] = STATE(1319), + [sym_anon_struct_value_expression] = STATE(1320), + [sym_go_expression] = STATE(1319), + [sym_spawn_expression] = STATE(1319), + [sym_parenthesized_expression] = STATE(1319), + [sym_call_expression] = STATE(1319), + [sym_type_initializer] = STATE(1320), + [sym_function_literal] = STATE(1319), + [sym_reference_expression] = STATE(1298), + [sym_type_reference_expression] = STATE(3460), + [sym_unary_expression] = STATE(1319), + [sym_receive_expression] = STATE(1319), + [sym_binary_expression] = STATE(1319), + [sym_as_type_cast_expression] = STATE(1319), + [sym__max_group] = STATE(1319), + [sym_literal] = STATE(1314), + [sym_map_init_expression] = STATE(1320), + [sym_array_creation] = STATE(1319), + [sym_fixed_array_creation] = STATE(1319), + [sym_selector_expression] = STATE(1319), + [sym_index_expression] = STATE(1319), + [sym_slice_expression] = STATE(1319), + [sym_if_expression] = STATE(1320), + [sym_compile_time_if_expression] = STATE(1320), + [sym_is_expression] = STATE(1319), + [sym_in_expression] = STATE(1319), + [sym_enum_fetch] = STATE(1319), + [sym_match_expression] = STATE(1320), + [sym_select_expression] = STATE(1320), + [sym_lock_expression] = STATE(1320), + [sym_unsafe_expression] = STATE(1320), + [sym_sql_expression] = STATE(1320), + [sym_c_string_literal] = STATE(1291), + [sym_raw_string_literal] = STATE(1291), + [sym_interpreted_string_literal] = STATE(1291), + [sym_mutability_modifiers] = STATE(639), + [sym_plain_type] = STATE(4307), + [sym__plain_type_without_special] = STATE(2360), + [sym_anon_struct_type] = STATE(2362), + [sym_multi_return_type] = STATE(2360), + [sym_result_type] = STATE(2360), + [sym_option_type] = STATE(2360), + [sym_qualified_type] = STATE(3460), + [sym_fixed_array_type] = STATE(2362), + [sym_array_type] = STATE(2362), + [sym_pointer_type] = STATE(2362), + [sym_wrong_pointer_type] = STATE(2362), + [sym_map_type] = STATE(2362), + [sym_channel_type] = STATE(2362), + [sym_shared_type] = STATE(2362), + [sym_thread_type] = STATE(2362), + [sym_atomic_type] = STATE(2362), + [sym_generic_type] = STATE(2362), + [sym_function_type] = STATE(2362), + [aux_sym__array_repeat1] = STATE(405), + [sym_identifier] = ACTIONS(1360), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1356), - [anon_sym_LBRACE] = ACTIONS(1358), - [anon_sym_LPAREN] = ACTIONS(1360), - [anon_sym_fn] = ACTIONS(1362), - [anon_sym_PLUS] = ACTIONS(1364), - [anon_sym_DASH] = ACTIONS(1364), - [anon_sym_STAR] = ACTIONS(1366), + [anon_sym_DOT] = ACTIONS(1362), + [anon_sym_LBRACE] = ACTIONS(1364), + [anon_sym_LPAREN] = ACTIONS(1366), + [anon_sym_fn] = ACTIONS(1368), + [anon_sym_PLUS] = ACTIONS(1370), + [anon_sym_DASH] = ACTIONS(1370), + [anon_sym_STAR] = ACTIONS(1372), [anon_sym_RBRACK] = ACTIONS(2774), - [anon_sym_struct] = ACTIONS(1370), + [anon_sym_struct] = ACTIONS(1376), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(1372), - [anon_sym_go] = ACTIONS(1374), - [anon_sym_spawn] = ACTIONS(1376), - [anon_sym_json_DOTdecode] = ACTIONS(1378), - [anon_sym_LBRACK2] = ACTIONS(1380), - [anon_sym_TILDE] = ACTIONS(1364), - [anon_sym_CARET] = ACTIONS(1364), - [anon_sym_AMP] = ACTIONS(1382), - [anon_sym_LT_DASH] = ACTIONS(1384), - [sym_none] = ACTIONS(1386), - [sym_true] = ACTIONS(1386), - [sym_false] = ACTIONS(1386), - [sym_nil] = ACTIONS(1386), - [anon_sym_if] = ACTIONS(1877), - [anon_sym_DOLLARif] = ACTIONS(1390), - [anon_sym_match] = ACTIONS(1392), - [anon_sym_select] = ACTIONS(1394), - [anon_sym_lock] = ACTIONS(1396), - [anon_sym_rlock] = ACTIONS(1396), - [anon_sym_unsafe] = ACTIONS(1883), - [anon_sym_sql] = ACTIONS(1400), - [sym_int_literal] = ACTIONS(1402), - [sym_float_literal] = ACTIONS(1404), - [sym_rune_literal] = ACTIONS(1404), - [sym_pseudo_compile_time_identifier] = ACTIONS(1406), + [anon_sym_BANG] = ACTIONS(1378), + [anon_sym_go] = ACTIONS(1380), + [anon_sym_spawn] = ACTIONS(1382), + [anon_sym_json_DOTdecode] = ACTIONS(1384), + [anon_sym_LBRACK2] = ACTIONS(1386), + [anon_sym_TILDE] = ACTIONS(1370), + [anon_sym_CARET] = ACTIONS(1370), + [anon_sym_AMP] = ACTIONS(1388), + [anon_sym_LT_DASH] = ACTIONS(1390), + [sym_none] = ACTIONS(1392), + [sym_true] = ACTIONS(1392), + [sym_false] = ACTIONS(1392), + [sym_nil] = ACTIONS(1392), + [anon_sym_if] = ACTIONS(1865), + [anon_sym_DOLLARif] = ACTIONS(1396), + [anon_sym_match] = ACTIONS(1398), + [anon_sym_select] = ACTIONS(1400), + [anon_sym_lock] = ACTIONS(1402), + [anon_sym_rlock] = ACTIONS(1402), + [anon_sym_unsafe] = ACTIONS(1871), + [anon_sym_sql] = ACTIONS(1406), + [sym_int_literal] = ACTIONS(1392), + [sym_float_literal] = ACTIONS(1410), + [sym_rune_literal] = ACTIONS(1410), + [sym_pseudo_compile_time_identifier] = ACTIONS(1412), [anon_sym_shared] = ACTIONS(83), [anon_sym_map_LBRACK] = ACTIONS(85), [anon_sym_chan] = ACTIONS(87), [anon_sym_thread] = ACTIONS(89), [anon_sym_atomic] = ACTIONS(91), - [sym___double_quote] = ACTIONS(1408), - [sym___single_quote] = ACTIONS(1410), - [sym___c_double_quote] = ACTIONS(1412), - [sym___c_single_quote] = ACTIONS(1414), - [sym___r_double_quote] = ACTIONS(1416), - [sym___r_single_quote] = ACTIONS(1418), + [sym___double_quote] = ACTIONS(1414), + [sym___single_quote] = ACTIONS(1416), + [sym___c_double_quote] = ACTIONS(1418), + [sym___c_single_quote] = ACTIONS(1420), + [sym___r_double_quote] = ACTIONS(1422), + [sym___r_single_quote] = ACTIONS(1424), }, - [442] = { - [sym_line_comment] = STATE(442), - [sym_block_comment] = STATE(442), + [445] = { + [sym_line_comment] = STATE(445), + [sym_block_comment] = STATE(445), + [sym__expression] = STATE(2459), + [sym__expression_without_blocks] = STATE(2347), + [sym__expression_with_blocks] = STATE(2347), + [sym_inc_expression] = STATE(2379), + [sym_dec_expression] = STATE(2379), + [sym_or_block_expression] = STATE(2379), + [sym_option_propagation_expression] = STATE(2379), + [sym_result_propagation_expression] = STATE(2379), + [sym_anon_struct_value_expression] = STATE(2378), + [sym_go_expression] = STATE(2379), + [sym_spawn_expression] = STATE(2379), + [sym_parenthesized_expression] = STATE(2379), + [sym_call_expression] = STATE(2379), + [sym_type_initializer] = STATE(2378), + [sym_function_literal] = STATE(2379), + [sym_reference_expression] = STATE(2377), + [sym_type_reference_expression] = STATE(3460), + [sym_unary_expression] = STATE(2379), + [sym_receive_expression] = STATE(2379), + [sym_binary_expression] = STATE(2379), + [sym_as_type_cast_expression] = STATE(2379), + [sym__max_group] = STATE(2379), + [sym_literal] = STATE(2392), + [sym_map_init_expression] = STATE(2378), + [sym_array_creation] = STATE(2379), + [sym_fixed_array_creation] = STATE(2379), + [sym_selector_expression] = STATE(2379), + [sym_index_expression] = STATE(2379), + [sym_slice_expression] = STATE(2379), + [sym_if_expression] = STATE(2378), + [sym_compile_time_if_expression] = STATE(2378), + [sym_is_expression] = STATE(2379), + [sym_in_expression] = STATE(2379), + [sym_enum_fetch] = STATE(2379), + [sym_match_expression] = STATE(2378), + [sym_select_expression] = STATE(2378), + [sym_lock_expression] = STATE(2378), + [sym_unsafe_expression] = STATE(2378), + [sym_sql_expression] = STATE(2378), + [sym_c_string_literal] = STATE(2401), + [sym_raw_string_literal] = STATE(2401), + [sym_interpreted_string_literal] = STATE(2401), + [sym_mutability_modifiers] = STATE(655), + [sym_mutable_expression] = STATE(3778), + [sym_expression_list] = STATE(4005), + [sym_plain_type] = STATE(4160), + [sym__plain_type_without_special] = STATE(2360), + [sym_anon_struct_type] = STATE(2362), + [sym_multi_return_type] = STATE(2360), + [sym_result_type] = STATE(2360), + [sym_option_type] = STATE(2360), + [sym_qualified_type] = STATE(3460), + [sym_fixed_array_type] = STATE(2362), + [sym_array_type] = STATE(2362), + [sym_pointer_type] = STATE(2362), + [sym_wrong_pointer_type] = STATE(2362), + [sym_map_type] = STATE(2362), + [sym_channel_type] = STATE(2362), + [sym_shared_type] = STATE(2362), + [sym_thread_type] = STATE(2362), + [sym_atomic_type] = STATE(2362), + [sym_generic_type] = STATE(2362), + [sym_function_type] = STATE(2362), + [sym_identifier] = ACTIONS(2477), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(1430), + [anon_sym_LBRACE] = ACTIONS(1432), + [anon_sym_LPAREN] = ACTIONS(1434), + [anon_sym_fn] = ACTIONS(1436), + [anon_sym_PLUS] = ACTIONS(2479), + [anon_sym_DASH] = ACTIONS(2479), + [anon_sym_STAR] = ACTIONS(2481), + [anon_sym_struct] = ACTIONS(1442), + [anon_sym_mut] = ACTIONS(41), + [anon_sym_QMARK] = ACTIONS(47), + [anon_sym_BANG] = ACTIONS(2483), + [anon_sym_go] = ACTIONS(2485), + [anon_sym_spawn] = ACTIONS(2487), + [anon_sym_json_DOTdecode] = ACTIONS(1450), + [anon_sym_LBRACK2] = ACTIONS(2489), + [anon_sym_TILDE] = ACTIONS(2479), + [anon_sym_CARET] = ACTIONS(2479), + [anon_sym_AMP] = ACTIONS(2491), + [anon_sym_LT_DASH] = ACTIONS(2493), + [sym_none] = ACTIONS(1458), + [sym_true] = ACTIONS(1458), + [sym_false] = ACTIONS(1458), + [sym_nil] = ACTIONS(1458), + [anon_sym_if] = ACTIONS(1833), + [anon_sym_DOLLARif] = ACTIONS(1462), + [anon_sym_match] = ACTIONS(1464), + [anon_sym_select] = ACTIONS(2495), + [anon_sym_lock] = ACTIONS(2497), + [anon_sym_rlock] = ACTIONS(2497), + [anon_sym_unsafe] = ACTIONS(1839), + [anon_sym_sql] = ACTIONS(1472), + [sym_int_literal] = ACTIONS(1458), + [sym_float_literal] = ACTIONS(1474), + [sym_rune_literal] = ACTIONS(1474), + [sym_pseudo_compile_time_identifier] = ACTIONS(1476), + [anon_sym_shared] = ACTIONS(83), + [anon_sym_map_LBRACK] = ACTIONS(85), + [anon_sym_chan] = ACTIONS(87), + [anon_sym_thread] = ACTIONS(89), + [anon_sym_atomic] = ACTIONS(91), + [sym___double_quote] = ACTIONS(1480), + [sym___single_quote] = ACTIONS(1482), + [sym___c_double_quote] = ACTIONS(1484), + [sym___c_single_quote] = ACTIONS(1486), + [sym___r_double_quote] = ACTIONS(1488), + [sym___r_single_quote] = ACTIONS(1490), + }, + [446] = { + [sym_line_comment] = STATE(446), + [sym_block_comment] = STATE(446), [ts_builtin_sym_end] = ACTIONS(2776), [sym_identifier] = ACTIONS(2778), [anon_sym_LF] = ACTIONS(2778), @@ -74188,9 +74670,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym___r_double_quote] = ACTIONS(2778), [sym___r_single_quote] = ACTIONS(2778), }, - [443] = { - [sym_line_comment] = STATE(443), - [sym_block_comment] = STATE(443), + [447] = { + [sym_line_comment] = STATE(447), + [sym_block_comment] = STATE(447), [ts_builtin_sym_end] = ACTIONS(2780), [sym_identifier] = ACTIONS(2782), [anon_sym_LF] = ACTIONS(2782), @@ -74304,357 +74786,473 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym___r_double_quote] = ACTIONS(2782), [sym___r_single_quote] = ACTIONS(2782), }, - [444] = { - [sym_line_comment] = STATE(444), - [sym_block_comment] = STATE(444), - [sym__expression] = STATE(2587), - [sym__expression_without_blocks] = STATE(2300), - [sym__expression_with_blocks] = STATE(2300), - [sym_inc_expression] = STATE(2307), - [sym_dec_expression] = STATE(2307), - [sym_or_block_expression] = STATE(2307), - [sym_option_propagation_expression] = STATE(2307), - [sym_result_propagation_expression] = STATE(2307), - [sym_anon_struct_value_expression] = STATE(2380), - [sym_go_expression] = STATE(2307), - [sym_spawn_expression] = STATE(2307), - [sym_parenthesized_expression] = STATE(2307), - [sym_call_expression] = STATE(2307), - [sym_type_initializer] = STATE(2380), - [sym_function_literal] = STATE(2307), - [sym_reference_expression] = STATE(2311), - [sym_type_reference_expression] = STATE(3541), - [sym_unary_expression] = STATE(2307), - [sym_receive_expression] = STATE(2307), - [sym_binary_expression] = STATE(2307), - [sym_as_type_cast_expression] = STATE(2307), - [sym__max_group] = STATE(2307), - [sym_literal] = STATE(2292), - [sym_map_init_expression] = STATE(2380), - [sym_array_creation] = STATE(2307), - [sym_fixed_array_creation] = STATE(2307), - [sym_selector_expression] = STATE(2307), - [sym_index_expression] = STATE(2307), - [sym_slice_expression] = STATE(2307), - [sym_if_expression] = STATE(2380), - [sym_compile_time_if_expression] = STATE(2380), - [sym_is_expression] = STATE(2307), - [sym_in_expression] = STATE(2307), - [sym_enum_fetch] = STATE(2307), - [sym_match_expression] = STATE(2380), - [sym_select_expression] = STATE(2380), - [sym_lock_expression] = STATE(2380), - [sym_unsafe_expression] = STATE(2380), - [sym_sql_expression] = STATE(2380), - [sym_c_string_literal] = STATE(2308), - [sym_raw_string_literal] = STATE(2308), - [sym_interpreted_string_literal] = STATE(2308), - [sym_mutability_modifiers] = STATE(939), - [sym_plain_type] = STATE(3557), - [sym__plain_type_without_special] = STATE(2302), - [sym_anon_struct_type] = STATE(2303), - [sym_multi_return_type] = STATE(2302), - [sym_result_type] = STATE(2302), - [sym_option_type] = STATE(2302), - [sym_qualified_type] = STATE(3541), - [sym_fixed_array_type] = STATE(2303), - [sym_array_type] = STATE(2303), - [sym_pointer_type] = STATE(2303), - [sym_wrong_pointer_type] = STATE(2303), - [sym_map_type] = STATE(2303), - [sym_channel_type] = STATE(2303), - [sym_shared_type] = STATE(2303), - [sym_thread_type] = STATE(2303), - [sym_atomic_type] = STATE(2303), - [sym_generic_type] = STATE(2303), - [sym_function_type] = STATE(2303), - [sym_range] = STATE(4401), - [sym_identifier] = ACTIONS(2135), + [448] = { + [sym_line_comment] = STATE(448), + [sym_block_comment] = STATE(448), + [sym__expression] = STATE(2558), + [sym__expression_without_blocks] = STATE(2347), + [sym__expression_with_blocks] = STATE(2347), + [sym_inc_expression] = STATE(2379), + [sym_dec_expression] = STATE(2379), + [sym_or_block_expression] = STATE(2379), + [sym_option_propagation_expression] = STATE(2379), + [sym_result_propagation_expression] = STATE(2379), + [sym_anon_struct_value_expression] = STATE(2378), + [sym_go_expression] = STATE(2379), + [sym_spawn_expression] = STATE(2379), + [sym_parenthesized_expression] = STATE(2379), + [sym_call_expression] = STATE(2379), + [sym_type_initializer] = STATE(2378), + [sym_function_literal] = STATE(2379), + [sym_reference_expression] = STATE(2377), + [sym_type_reference_expression] = STATE(3460), + [sym_unary_expression] = STATE(2379), + [sym_receive_expression] = STATE(2379), + [sym_binary_expression] = STATE(2379), + [sym_as_type_cast_expression] = STATE(2379), + [sym__max_group] = STATE(2379), + [sym_literal] = STATE(2392), + [sym_map_init_expression] = STATE(2378), + [sym_array_creation] = STATE(2379), + [sym_fixed_array_creation] = STATE(2379), + [sym_selector_expression] = STATE(2379), + [sym_index_expression] = STATE(2379), + [sym_slice_expression] = STATE(2379), + [sym_if_expression] = STATE(2378), + [sym_compile_time_if_expression] = STATE(2378), + [sym_is_expression] = STATE(2379), + [sym_in_expression] = STATE(2379), + [sym_enum_fetch] = STATE(2379), + [sym_match_expression] = STATE(2378), + [sym_select_expression] = STATE(2378), + [sym_lock_expression] = STATE(2378), + [sym_unsafe_expression] = STATE(2378), + [sym_sql_expression] = STATE(2378), + [sym_c_string_literal] = STATE(2401), + [sym_raw_string_literal] = STATE(2401), + [sym_interpreted_string_literal] = STATE(2401), + [sym_mutability_modifiers] = STATE(900), + [sym_mutable_expression] = STATE(3813), + [sym_expression_list] = STATE(4004), + [sym_plain_type] = STATE(4160), + [sym__plain_type_without_special] = STATE(2360), + [sym_anon_struct_type] = STATE(2362), + [sym_multi_return_type] = STATE(2360), + [sym_result_type] = STATE(2360), + [sym_option_type] = STATE(2360), + [sym_qualified_type] = STATE(3460), + [sym_fixed_array_type] = STATE(2362), + [sym_array_type] = STATE(2362), + [sym_pointer_type] = STATE(2362), + [sym_wrong_pointer_type] = STATE(2362), + [sym_map_type] = STATE(2362), + [sym_channel_type] = STATE(2362), + [sym_shared_type] = STATE(2362), + [sym_thread_type] = STATE(2362), + [sym_atomic_type] = STATE(2362), + [sym_generic_type] = STATE(2362), + [sym_function_type] = STATE(2362), + [sym_identifier] = ACTIONS(1815), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1428), - [anon_sym_LBRACE] = ACTIONS(1430), - [anon_sym_LPAREN] = ACTIONS(1432), - [anon_sym_fn] = ACTIONS(1434), - [anon_sym_PLUS] = ACTIONS(1436), - [anon_sym_DASH] = ACTIONS(1436), - [anon_sym_STAR] = ACTIONS(2137), - [anon_sym_struct] = ACTIONS(1440), + [anon_sym_DOT] = ACTIONS(1430), + [anon_sym_LBRACE] = ACTIONS(1432), + [anon_sym_LPAREN] = ACTIONS(1434), + [anon_sym_fn] = ACTIONS(1436), + [anon_sym_PLUS] = ACTIONS(1817), + [anon_sym_DASH] = ACTIONS(1817), + [anon_sym_STAR] = ACTIONS(1819), + [anon_sym_struct] = ACTIONS(1442), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(2139), - [anon_sym_go] = ACTIONS(1444), - [anon_sym_spawn] = ACTIONS(1446), - [anon_sym_json_DOTdecode] = ACTIONS(1448), - [anon_sym_LBRACK2] = ACTIONS(1450), - [anon_sym_TILDE] = ACTIONS(1436), - [anon_sym_CARET] = ACTIONS(1436), - [anon_sym_AMP] = ACTIONS(2141), - [anon_sym_LT_DASH] = ACTIONS(1454), - [sym_none] = ACTIONS(1456), - [sym_true] = ACTIONS(1456), - [sym_false] = ACTIONS(1456), - [sym_nil] = ACTIONS(1456), - [anon_sym_if] = ACTIONS(1827), - [anon_sym_DOLLARif] = ACTIONS(1460), - [anon_sym_match] = ACTIONS(1462), - [anon_sym_select] = ACTIONS(1464), - [anon_sym_lock] = ACTIONS(1466), - [anon_sym_rlock] = ACTIONS(1466), - [anon_sym_unsafe] = ACTIONS(1833), - [anon_sym_sql] = ACTIONS(1470), - [sym_int_literal] = ACTIONS(1456), - [sym_float_literal] = ACTIONS(1472), - [sym_rune_literal] = ACTIONS(1472), - [sym_pseudo_compile_time_identifier] = ACTIONS(1474), + [anon_sym_BANG] = ACTIONS(1821), + [anon_sym_go] = ACTIONS(1823), + [anon_sym_spawn] = ACTIONS(1825), + [anon_sym_json_DOTdecode] = ACTIONS(1450), + [anon_sym_LBRACK2] = ACTIONS(1827), + [anon_sym_TILDE] = ACTIONS(1817), + [anon_sym_CARET] = ACTIONS(1817), + [anon_sym_AMP] = ACTIONS(1829), + [anon_sym_LT_DASH] = ACTIONS(1831), + [sym_none] = ACTIONS(1458), + [sym_true] = ACTIONS(1458), + [sym_false] = ACTIONS(1458), + [sym_nil] = ACTIONS(1458), + [anon_sym_if] = ACTIONS(1833), + [anon_sym_DOLLARif] = ACTIONS(1462), + [anon_sym_match] = ACTIONS(1464), + [anon_sym_select] = ACTIONS(1835), + [anon_sym_lock] = ACTIONS(1837), + [anon_sym_rlock] = ACTIONS(1837), + [anon_sym_unsafe] = ACTIONS(1839), + [anon_sym_sql] = ACTIONS(1472), + [sym_int_literal] = ACTIONS(1458), + [sym_float_literal] = ACTIONS(1474), + [sym_rune_literal] = ACTIONS(1474), + [sym_pseudo_compile_time_identifier] = ACTIONS(1476), [anon_sym_shared] = ACTIONS(83), [anon_sym_map_LBRACK] = ACTIONS(85), [anon_sym_chan] = ACTIONS(87), [anon_sym_thread] = ACTIONS(89), [anon_sym_atomic] = ACTIONS(91), - [anon_sym_DOT_DOT] = ACTIONS(1476), - [sym___double_quote] = ACTIONS(1478), - [sym___single_quote] = ACTIONS(1480), - [sym___c_double_quote] = ACTIONS(1482), - [sym___c_single_quote] = ACTIONS(1484), - [sym___r_double_quote] = ACTIONS(1486), - [sym___r_single_quote] = ACTIONS(1488), + [sym___double_quote] = ACTIONS(1480), + [sym___single_quote] = ACTIONS(1482), + [sym___c_double_quote] = ACTIONS(1484), + [sym___c_single_quote] = ACTIONS(1486), + [sym___r_double_quote] = ACTIONS(1488), + [sym___r_single_quote] = ACTIONS(1490), }, - [445] = { - [sym_line_comment] = STATE(445), - [sym_block_comment] = STATE(445), - [ts_builtin_sym_end] = ACTIONS(2784), - [sym_identifier] = ACTIONS(2786), - [anon_sym_LF] = ACTIONS(2786), - [anon_sym_CR] = ACTIONS(2786), - [anon_sym_CR_LF] = ACTIONS(2786), - [anon_sym_SLASH_SLASH] = ACTIONS(497), - [anon_sym_SLASH_STAR] = ACTIONS(499), - [anon_sym_DOT] = ACTIONS(2786), - [anon_sym_as] = ACTIONS(2786), - [anon_sym_LBRACE] = ACTIONS(2786), - [anon_sym_COMMA] = ACTIONS(2786), - [anon_sym_const] = ACTIONS(2786), - [anon_sym_LPAREN] = ACTIONS(2786), - [anon_sym_EQ] = ACTIONS(2786), - [anon_sym___global] = ACTIONS(2786), - [anon_sym_type] = ACTIONS(2786), - [anon_sym_PIPE] = ACTIONS(2786), - [anon_sym_fn] = ACTIONS(2786), - [anon_sym_PLUS] = ACTIONS(2786), - [anon_sym_DASH] = ACTIONS(2786), - [anon_sym_STAR] = ACTIONS(2786), - [anon_sym_SLASH] = ACTIONS(2786), - [anon_sym_PERCENT] = ACTIONS(2786), - [anon_sym_LT] = ACTIONS(2786), - [anon_sym_GT] = ACTIONS(2786), - [anon_sym_EQ_EQ] = ACTIONS(2786), - [anon_sym_BANG_EQ] = ACTIONS(2786), - [anon_sym_LT_EQ] = ACTIONS(2786), - [anon_sym_GT_EQ] = ACTIONS(2786), - [anon_sym_LBRACK] = ACTIONS(2784), - [anon_sym_struct] = ACTIONS(2786), - [anon_sym_union] = ACTIONS(2786), - [anon_sym_pub] = ACTIONS(2786), - [anon_sym_mut] = ACTIONS(2786), - [anon_sym_enum] = ACTIONS(2786), - [anon_sym_interface] = ACTIONS(2786), - [anon_sym_PLUS_PLUS] = ACTIONS(2786), - [anon_sym_DASH_DASH] = ACTIONS(2786), - [anon_sym_QMARK] = ACTIONS(2786), - [anon_sym_BANG] = ACTIONS(2786), - [anon_sym_go] = ACTIONS(2786), - [anon_sym_spawn] = ACTIONS(2786), - [anon_sym_json_DOTdecode] = ACTIONS(2786), - [anon_sym_LBRACK2] = ACTIONS(2786), - [anon_sym_TILDE] = ACTIONS(2786), - [anon_sym_CARET] = ACTIONS(2786), - [anon_sym_AMP] = ACTIONS(2786), - [anon_sym_LT_DASH] = ACTIONS(2786), - [anon_sym_LT_LT] = ACTIONS(2786), - [anon_sym_GT_GT] = ACTIONS(2786), - [anon_sym_GT_GT_GT] = ACTIONS(2786), - [anon_sym_AMP_CARET] = ACTIONS(2786), - [anon_sym_AMP_AMP] = ACTIONS(2786), - [anon_sym_PIPE_PIPE] = ACTIONS(2786), - [anon_sym_or] = ACTIONS(2786), - [sym_none] = ACTIONS(2786), - [sym_true] = ACTIONS(2786), - [sym_false] = ACTIONS(2786), - [sym_nil] = ACTIONS(2786), - [anon_sym_QMARK_DOT] = ACTIONS(2786), - [anon_sym_POUND_LBRACK] = ACTIONS(2786), - [anon_sym_if] = ACTIONS(2786), - [anon_sym_DOLLARif] = ACTIONS(2786), - [anon_sym_is] = ACTIONS(2786), - [anon_sym_BANGis] = ACTIONS(2786), - [anon_sym_in] = ACTIONS(2786), - [anon_sym_BANGin] = ACTIONS(2786), - [anon_sym_match] = ACTIONS(2786), - [anon_sym_select] = ACTIONS(2786), - [anon_sym_STAR_EQ] = ACTIONS(2786), - [anon_sym_SLASH_EQ] = ACTIONS(2786), - [anon_sym_PERCENT_EQ] = ACTIONS(2786), - [anon_sym_LT_LT_EQ] = ACTIONS(2786), - [anon_sym_GT_GT_EQ] = ACTIONS(2786), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(2786), - [anon_sym_AMP_EQ] = ACTIONS(2786), - [anon_sym_AMP_CARET_EQ] = ACTIONS(2786), - [anon_sym_PLUS_EQ] = ACTIONS(2786), - [anon_sym_DASH_EQ] = ACTIONS(2786), - [anon_sym_PIPE_EQ] = ACTIONS(2786), - [anon_sym_CARET_EQ] = ACTIONS(2786), - [anon_sym_COLON_EQ] = ACTIONS(2786), - [anon_sym_lock] = ACTIONS(2786), - [anon_sym_rlock] = ACTIONS(2786), - [anon_sym_unsafe] = ACTIONS(2786), - [anon_sym_sql] = ACTIONS(2786), - [sym_int_literal] = ACTIONS(2786), - [sym_float_literal] = ACTIONS(2786), - [sym_rune_literal] = ACTIONS(2786), - [sym_pseudo_compile_time_identifier] = ACTIONS(2786), - [anon_sym_shared] = ACTIONS(2786), - [anon_sym_map_LBRACK] = ACTIONS(2786), - [anon_sym_chan] = ACTIONS(2786), - [anon_sym_thread] = ACTIONS(2786), - [anon_sym_atomic] = ACTIONS(2786), - [anon_sym_assert] = ACTIONS(2786), - [anon_sym_defer] = ACTIONS(2786), - [anon_sym_goto] = ACTIONS(2786), - [anon_sym_break] = ACTIONS(2786), - [anon_sym_continue] = ACTIONS(2786), - [anon_sym_return] = ACTIONS(2786), - [anon_sym_DOLLARfor] = ACTIONS(2786), - [anon_sym_for] = ACTIONS(2786), - [anon_sym_POUND] = ACTIONS(2786), - [anon_sym_asm] = ACTIONS(2786), - [anon_sym_AT_LBRACK] = ACTIONS(2786), - [sym___double_quote] = ACTIONS(2786), - [sym___single_quote] = ACTIONS(2786), - [sym___c_double_quote] = ACTIONS(2786), - [sym___c_single_quote] = ACTIONS(2786), - [sym___r_double_quote] = ACTIONS(2786), - [sym___r_single_quote] = ACTIONS(2786), + [449] = { + [sym_line_comment] = STATE(449), + [sym_block_comment] = STATE(449), + [sym__expression] = STATE(2558), + [sym__expression_without_blocks] = STATE(2347), + [sym__expression_with_blocks] = STATE(2347), + [sym_inc_expression] = STATE(2379), + [sym_dec_expression] = STATE(2379), + [sym_or_block_expression] = STATE(2379), + [sym_option_propagation_expression] = STATE(2379), + [sym_result_propagation_expression] = STATE(2379), + [sym_anon_struct_value_expression] = STATE(2378), + [sym_go_expression] = STATE(2379), + [sym_spawn_expression] = STATE(2379), + [sym_parenthesized_expression] = STATE(2379), + [sym_call_expression] = STATE(2379), + [sym_type_initializer] = STATE(2378), + [sym_function_literal] = STATE(2379), + [sym_reference_expression] = STATE(2377), + [sym_type_reference_expression] = STATE(3460), + [sym_unary_expression] = STATE(2379), + [sym_receive_expression] = STATE(2379), + [sym_binary_expression] = STATE(2379), + [sym_as_type_cast_expression] = STATE(2379), + [sym__max_group] = STATE(2379), + [sym_literal] = STATE(2392), + [sym_map_init_expression] = STATE(2378), + [sym_array_creation] = STATE(2379), + [sym_fixed_array_creation] = STATE(2379), + [sym_selector_expression] = STATE(2379), + [sym_index_expression] = STATE(2379), + [sym_slice_expression] = STATE(2379), + [sym_if_expression] = STATE(2378), + [sym_compile_time_if_expression] = STATE(2378), + [sym_is_expression] = STATE(2379), + [sym_in_expression] = STATE(2379), + [sym_enum_fetch] = STATE(2379), + [sym_match_expression] = STATE(2378), + [sym_select_expression] = STATE(2378), + [sym_lock_expression] = STATE(2378), + [sym_unsafe_expression] = STATE(2378), + [sym_sql_expression] = STATE(2378), + [sym_c_string_literal] = STATE(2401), + [sym_raw_string_literal] = STATE(2401), + [sym_interpreted_string_literal] = STATE(2401), + [sym_mutability_modifiers] = STATE(900), + [sym_mutable_expression] = STATE(3813), + [sym_expression_list] = STATE(4344), + [sym_plain_type] = STATE(4160), + [sym__plain_type_without_special] = STATE(2360), + [sym_anon_struct_type] = STATE(2362), + [sym_multi_return_type] = STATE(2360), + [sym_result_type] = STATE(2360), + [sym_option_type] = STATE(2360), + [sym_qualified_type] = STATE(3460), + [sym_fixed_array_type] = STATE(2362), + [sym_array_type] = STATE(2362), + [sym_pointer_type] = STATE(2362), + [sym_wrong_pointer_type] = STATE(2362), + [sym_map_type] = STATE(2362), + [sym_channel_type] = STATE(2362), + [sym_shared_type] = STATE(2362), + [sym_thread_type] = STATE(2362), + [sym_atomic_type] = STATE(2362), + [sym_generic_type] = STATE(2362), + [sym_function_type] = STATE(2362), + [sym_identifier] = ACTIONS(1815), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(1430), + [anon_sym_LBRACE] = ACTIONS(2784), + [anon_sym_LPAREN] = ACTIONS(1434), + [anon_sym_fn] = ACTIONS(1436), + [anon_sym_PLUS] = ACTIONS(1817), + [anon_sym_DASH] = ACTIONS(1817), + [anon_sym_STAR] = ACTIONS(1819), + [anon_sym_struct] = ACTIONS(1442), + [anon_sym_mut] = ACTIONS(41), + [anon_sym_QMARK] = ACTIONS(47), + [anon_sym_BANG] = ACTIONS(1821), + [anon_sym_go] = ACTIONS(1823), + [anon_sym_spawn] = ACTIONS(1825), + [anon_sym_json_DOTdecode] = ACTIONS(1450), + [anon_sym_LBRACK2] = ACTIONS(1827), + [anon_sym_TILDE] = ACTIONS(1817), + [anon_sym_CARET] = ACTIONS(1817), + [anon_sym_AMP] = ACTIONS(1829), + [anon_sym_LT_DASH] = ACTIONS(1831), + [sym_none] = ACTIONS(1458), + [sym_true] = ACTIONS(1458), + [sym_false] = ACTIONS(1458), + [sym_nil] = ACTIONS(1458), + [anon_sym_if] = ACTIONS(1833), + [anon_sym_DOLLARif] = ACTIONS(1462), + [anon_sym_match] = ACTIONS(1464), + [anon_sym_select] = ACTIONS(1835), + [anon_sym_lock] = ACTIONS(1837), + [anon_sym_rlock] = ACTIONS(1837), + [anon_sym_unsafe] = ACTIONS(1839), + [anon_sym_sql] = ACTIONS(1472), + [sym_int_literal] = ACTIONS(1458), + [sym_float_literal] = ACTIONS(1474), + [sym_rune_literal] = ACTIONS(1474), + [sym_pseudo_compile_time_identifier] = ACTIONS(1476), + [anon_sym_shared] = ACTIONS(83), + [anon_sym_map_LBRACK] = ACTIONS(85), + [anon_sym_chan] = ACTIONS(87), + [anon_sym_thread] = ACTIONS(89), + [anon_sym_atomic] = ACTIONS(91), + [sym___double_quote] = ACTIONS(1480), + [sym___single_quote] = ACTIONS(1482), + [sym___c_double_quote] = ACTIONS(1484), + [sym___c_single_quote] = ACTIONS(1486), + [sym___r_double_quote] = ACTIONS(1488), + [sym___r_single_quote] = ACTIONS(1490), }, - [446] = { - [sym_line_comment] = STATE(446), - [sym_block_comment] = STATE(446), - [ts_builtin_sym_end] = ACTIONS(2788), - [sym_identifier] = ACTIONS(2790), - [anon_sym_LF] = ACTIONS(2790), - [anon_sym_CR] = ACTIONS(2790), - [anon_sym_CR_LF] = ACTIONS(2790), + [450] = { + [sym_line_comment] = STATE(450), + [sym_block_comment] = STATE(450), + [ts_builtin_sym_end] = ACTIONS(2786), + [sym_identifier] = ACTIONS(2788), + [anon_sym_LF] = ACTIONS(2788), + [anon_sym_CR] = ACTIONS(2788), + [anon_sym_CR_LF] = ACTIONS(2788), [anon_sym_SLASH_SLASH] = ACTIONS(497), [anon_sym_SLASH_STAR] = ACTIONS(499), - [anon_sym_DOT] = ACTIONS(2790), - [anon_sym_as] = ACTIONS(2790), + [anon_sym_DOT] = ACTIONS(2788), + [anon_sym_as] = ACTIONS(2788), + [anon_sym_LBRACE] = ACTIONS(2788), + [anon_sym_COMMA] = ACTIONS(2788), + [anon_sym_const] = ACTIONS(2788), + [anon_sym_LPAREN] = ACTIONS(2788), + [anon_sym_EQ] = ACTIONS(2788), + [anon_sym___global] = ACTIONS(2788), + [anon_sym_type] = ACTIONS(2788), + [anon_sym_PIPE] = ACTIONS(2788), + [anon_sym_fn] = ACTIONS(2788), + [anon_sym_PLUS] = ACTIONS(2788), + [anon_sym_DASH] = ACTIONS(2788), + [anon_sym_STAR] = ACTIONS(2788), + [anon_sym_SLASH] = ACTIONS(2788), + [anon_sym_PERCENT] = ACTIONS(2788), + [anon_sym_LT] = ACTIONS(2788), + [anon_sym_GT] = ACTIONS(2788), + [anon_sym_EQ_EQ] = ACTIONS(2788), + [anon_sym_BANG_EQ] = ACTIONS(2788), + [anon_sym_LT_EQ] = ACTIONS(2788), + [anon_sym_GT_EQ] = ACTIONS(2788), + [anon_sym_LBRACK] = ACTIONS(2786), + [anon_sym_struct] = ACTIONS(2788), + [anon_sym_union] = ACTIONS(2788), + [anon_sym_pub] = ACTIONS(2788), + [anon_sym_mut] = ACTIONS(2788), + [anon_sym_enum] = ACTIONS(2788), + [anon_sym_interface] = ACTIONS(2788), + [anon_sym_PLUS_PLUS] = ACTIONS(2788), + [anon_sym_DASH_DASH] = ACTIONS(2788), + [anon_sym_QMARK] = ACTIONS(2788), + [anon_sym_BANG] = ACTIONS(2788), + [anon_sym_go] = ACTIONS(2788), + [anon_sym_spawn] = ACTIONS(2788), + [anon_sym_json_DOTdecode] = ACTIONS(2788), + [anon_sym_LBRACK2] = ACTIONS(2788), + [anon_sym_TILDE] = ACTIONS(2788), + [anon_sym_CARET] = ACTIONS(2788), + [anon_sym_AMP] = ACTIONS(2788), + [anon_sym_LT_DASH] = ACTIONS(2788), + [anon_sym_LT_LT] = ACTIONS(2788), + [anon_sym_GT_GT] = ACTIONS(2788), + [anon_sym_GT_GT_GT] = ACTIONS(2788), + [anon_sym_AMP_CARET] = ACTIONS(2788), + [anon_sym_AMP_AMP] = ACTIONS(2788), + [anon_sym_PIPE_PIPE] = ACTIONS(2788), + [anon_sym_or] = ACTIONS(2788), + [sym_none] = ACTIONS(2788), + [sym_true] = ACTIONS(2788), + [sym_false] = ACTIONS(2788), + [sym_nil] = ACTIONS(2788), + [anon_sym_QMARK_DOT] = ACTIONS(2788), + [anon_sym_POUND_LBRACK] = ACTIONS(2788), + [anon_sym_if] = ACTIONS(2788), + [anon_sym_DOLLARif] = ACTIONS(2788), + [anon_sym_is] = ACTIONS(2788), + [anon_sym_BANGis] = ACTIONS(2788), + [anon_sym_in] = ACTIONS(2788), + [anon_sym_BANGin] = ACTIONS(2788), + [anon_sym_match] = ACTIONS(2788), + [anon_sym_select] = ACTIONS(2788), + [anon_sym_STAR_EQ] = ACTIONS(2788), + [anon_sym_SLASH_EQ] = ACTIONS(2788), + [anon_sym_PERCENT_EQ] = ACTIONS(2788), + [anon_sym_LT_LT_EQ] = ACTIONS(2788), + [anon_sym_GT_GT_EQ] = ACTIONS(2788), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(2788), + [anon_sym_AMP_EQ] = ACTIONS(2788), + [anon_sym_AMP_CARET_EQ] = ACTIONS(2788), + [anon_sym_PLUS_EQ] = ACTIONS(2788), + [anon_sym_DASH_EQ] = ACTIONS(2788), + [anon_sym_PIPE_EQ] = ACTIONS(2788), + [anon_sym_CARET_EQ] = ACTIONS(2788), + [anon_sym_COLON_EQ] = ACTIONS(2788), + [anon_sym_lock] = ACTIONS(2788), + [anon_sym_rlock] = ACTIONS(2788), + [anon_sym_unsafe] = ACTIONS(2788), + [anon_sym_sql] = ACTIONS(2788), + [sym_int_literal] = ACTIONS(2788), + [sym_float_literal] = ACTIONS(2788), + [sym_rune_literal] = ACTIONS(2788), + [sym_pseudo_compile_time_identifier] = ACTIONS(2788), + [anon_sym_shared] = ACTIONS(2788), + [anon_sym_map_LBRACK] = ACTIONS(2788), + [anon_sym_chan] = ACTIONS(2788), + [anon_sym_thread] = ACTIONS(2788), + [anon_sym_atomic] = ACTIONS(2788), + [anon_sym_assert] = ACTIONS(2788), + [anon_sym_defer] = ACTIONS(2788), + [anon_sym_goto] = ACTIONS(2788), + [anon_sym_break] = ACTIONS(2788), + [anon_sym_continue] = ACTIONS(2788), + [anon_sym_return] = ACTIONS(2788), + [anon_sym_DOLLARfor] = ACTIONS(2788), + [anon_sym_for] = ACTIONS(2788), + [anon_sym_POUND] = ACTIONS(2788), + [anon_sym_asm] = ACTIONS(2788), + [anon_sym_AT_LBRACK] = ACTIONS(2788), + [sym___double_quote] = ACTIONS(2788), + [sym___single_quote] = ACTIONS(2788), + [sym___c_double_quote] = ACTIONS(2788), + [sym___c_single_quote] = ACTIONS(2788), + [sym___r_double_quote] = ACTIONS(2788), + [sym___r_single_quote] = ACTIONS(2788), + }, + [451] = { + [sym_line_comment] = STATE(451), + [sym_block_comment] = STATE(451), + [sym__expression] = STATE(2558), + [sym__expression_without_blocks] = STATE(2347), + [sym__expression_with_blocks] = STATE(2347), + [sym_inc_expression] = STATE(2379), + [sym_dec_expression] = STATE(2379), + [sym_or_block_expression] = STATE(2379), + [sym_option_propagation_expression] = STATE(2379), + [sym_result_propagation_expression] = STATE(2379), + [sym_anon_struct_value_expression] = STATE(2378), + [sym_go_expression] = STATE(2379), + [sym_spawn_expression] = STATE(2379), + [sym_parenthesized_expression] = STATE(2379), + [sym_call_expression] = STATE(2379), + [sym_type_initializer] = STATE(2378), + [sym_function_literal] = STATE(2379), + [sym_reference_expression] = STATE(2377), + [sym_type_reference_expression] = STATE(3460), + [sym_unary_expression] = STATE(2379), + [sym_receive_expression] = STATE(2379), + [sym_binary_expression] = STATE(2379), + [sym_as_type_cast_expression] = STATE(2379), + [sym__max_group] = STATE(2379), + [sym_literal] = STATE(2392), + [sym_map_init_expression] = STATE(2378), + [sym_array_creation] = STATE(2379), + [sym_fixed_array_creation] = STATE(2379), + [sym_selector_expression] = STATE(2379), + [sym_index_expression] = STATE(2379), + [sym_slice_expression] = STATE(2379), + [sym_if_expression] = STATE(2378), + [sym_compile_time_if_expression] = STATE(2378), + [sym_is_expression] = STATE(2379), + [sym_in_expression] = STATE(2379), + [sym_enum_fetch] = STATE(2379), + [sym_match_expression] = STATE(2378), + [sym_select_expression] = STATE(2378), + [sym_lock_expression] = STATE(2378), + [sym_unsafe_expression] = STATE(2378), + [sym_sql_expression] = STATE(2378), + [sym_c_string_literal] = STATE(2401), + [sym_raw_string_literal] = STATE(2401), + [sym_interpreted_string_literal] = STATE(2401), + [sym_mutability_modifiers] = STATE(900), + [sym_mutable_expression] = STATE(3813), + [sym_expression_list] = STATE(4374), + [sym_plain_type] = STATE(4160), + [sym__plain_type_without_special] = STATE(2360), + [sym_anon_struct_type] = STATE(2362), + [sym_multi_return_type] = STATE(2360), + [sym_result_type] = STATE(2360), + [sym_option_type] = STATE(2360), + [sym_qualified_type] = STATE(3460), + [sym_fixed_array_type] = STATE(2362), + [sym_array_type] = STATE(2362), + [sym_pointer_type] = STATE(2362), + [sym_wrong_pointer_type] = STATE(2362), + [sym_map_type] = STATE(2362), + [sym_channel_type] = STATE(2362), + [sym_shared_type] = STATE(2362), + [sym_thread_type] = STATE(2362), + [sym_atomic_type] = STATE(2362), + [sym_generic_type] = STATE(2362), + [sym_function_type] = STATE(2362), + [sym_identifier] = ACTIONS(1815), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(1430), [anon_sym_LBRACE] = ACTIONS(2790), - [anon_sym_COMMA] = ACTIONS(2790), - [anon_sym_const] = ACTIONS(2790), - [anon_sym_LPAREN] = ACTIONS(2790), - [anon_sym_EQ] = ACTIONS(2790), - [anon_sym___global] = ACTIONS(2790), - [anon_sym_type] = ACTIONS(2790), - [anon_sym_PIPE] = ACTIONS(2790), - [anon_sym_fn] = ACTIONS(2790), - [anon_sym_PLUS] = ACTIONS(2790), - [anon_sym_DASH] = ACTIONS(2790), - [anon_sym_STAR] = ACTIONS(2790), - [anon_sym_SLASH] = ACTIONS(2790), - [anon_sym_PERCENT] = ACTIONS(2790), - [anon_sym_LT] = ACTIONS(2790), - [anon_sym_GT] = ACTIONS(2790), - [anon_sym_EQ_EQ] = ACTIONS(2790), - [anon_sym_BANG_EQ] = ACTIONS(2790), - [anon_sym_LT_EQ] = ACTIONS(2790), - [anon_sym_GT_EQ] = ACTIONS(2790), - [anon_sym_LBRACK] = ACTIONS(2788), - [anon_sym_struct] = ACTIONS(2790), - [anon_sym_union] = ACTIONS(2790), - [anon_sym_pub] = ACTIONS(2790), - [anon_sym_mut] = ACTIONS(2790), - [anon_sym_enum] = ACTIONS(2790), - [anon_sym_interface] = ACTIONS(2790), - [anon_sym_PLUS_PLUS] = ACTIONS(2790), - [anon_sym_DASH_DASH] = ACTIONS(2790), - [anon_sym_QMARK] = ACTIONS(2790), - [anon_sym_BANG] = ACTIONS(2790), - [anon_sym_go] = ACTIONS(2790), - [anon_sym_spawn] = ACTIONS(2790), - [anon_sym_json_DOTdecode] = ACTIONS(2790), - [anon_sym_LBRACK2] = ACTIONS(2790), - [anon_sym_TILDE] = ACTIONS(2790), - [anon_sym_CARET] = ACTIONS(2790), - [anon_sym_AMP] = ACTIONS(2790), - [anon_sym_LT_DASH] = ACTIONS(2790), - [anon_sym_LT_LT] = ACTIONS(2790), - [anon_sym_GT_GT] = ACTIONS(2790), - [anon_sym_GT_GT_GT] = ACTIONS(2790), - [anon_sym_AMP_CARET] = ACTIONS(2790), - [anon_sym_AMP_AMP] = ACTIONS(2790), - [anon_sym_PIPE_PIPE] = ACTIONS(2790), - [anon_sym_or] = ACTIONS(2790), - [sym_none] = ACTIONS(2790), - [sym_true] = ACTIONS(2790), - [sym_false] = ACTIONS(2790), - [sym_nil] = ACTIONS(2790), - [anon_sym_QMARK_DOT] = ACTIONS(2790), - [anon_sym_POUND_LBRACK] = ACTIONS(2790), - [anon_sym_if] = ACTIONS(2790), - [anon_sym_DOLLARif] = ACTIONS(2790), - [anon_sym_is] = ACTIONS(2790), - [anon_sym_BANGis] = ACTIONS(2790), - [anon_sym_in] = ACTIONS(2790), - [anon_sym_BANGin] = ACTIONS(2790), - [anon_sym_match] = ACTIONS(2790), - [anon_sym_select] = ACTIONS(2790), - [anon_sym_STAR_EQ] = ACTIONS(2790), - [anon_sym_SLASH_EQ] = ACTIONS(2790), - [anon_sym_PERCENT_EQ] = ACTIONS(2790), - [anon_sym_LT_LT_EQ] = ACTIONS(2790), - [anon_sym_GT_GT_EQ] = ACTIONS(2790), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(2790), - [anon_sym_AMP_EQ] = ACTIONS(2790), - [anon_sym_AMP_CARET_EQ] = ACTIONS(2790), - [anon_sym_PLUS_EQ] = ACTIONS(2790), - [anon_sym_DASH_EQ] = ACTIONS(2790), - [anon_sym_PIPE_EQ] = ACTIONS(2790), - [anon_sym_CARET_EQ] = ACTIONS(2790), - [anon_sym_COLON_EQ] = ACTIONS(2790), - [anon_sym_lock] = ACTIONS(2790), - [anon_sym_rlock] = ACTIONS(2790), - [anon_sym_unsafe] = ACTIONS(2790), - [anon_sym_sql] = ACTIONS(2790), - [sym_int_literal] = ACTIONS(2790), - [sym_float_literal] = ACTIONS(2790), - [sym_rune_literal] = ACTIONS(2790), - [sym_pseudo_compile_time_identifier] = ACTIONS(2790), - [anon_sym_shared] = ACTIONS(2790), - [anon_sym_map_LBRACK] = ACTIONS(2790), - [anon_sym_chan] = ACTIONS(2790), - [anon_sym_thread] = ACTIONS(2790), - [anon_sym_atomic] = ACTIONS(2790), - [anon_sym_assert] = ACTIONS(2790), - [anon_sym_defer] = ACTIONS(2790), - [anon_sym_goto] = ACTIONS(2790), - [anon_sym_break] = ACTIONS(2790), - [anon_sym_continue] = ACTIONS(2790), - [anon_sym_return] = ACTIONS(2790), - [anon_sym_DOLLARfor] = ACTIONS(2790), - [anon_sym_for] = ACTIONS(2790), - [anon_sym_POUND] = ACTIONS(2790), - [anon_sym_asm] = ACTIONS(2790), - [anon_sym_AT_LBRACK] = ACTIONS(2790), - [sym___double_quote] = ACTIONS(2790), - [sym___single_quote] = ACTIONS(2790), - [sym___c_double_quote] = ACTIONS(2790), - [sym___c_single_quote] = ACTIONS(2790), - [sym___r_double_quote] = ACTIONS(2790), - [sym___r_single_quote] = ACTIONS(2790), + [anon_sym_LPAREN] = ACTIONS(1434), + [anon_sym_fn] = ACTIONS(1436), + [anon_sym_PLUS] = ACTIONS(1817), + [anon_sym_DASH] = ACTIONS(1817), + [anon_sym_STAR] = ACTIONS(1819), + [anon_sym_struct] = ACTIONS(1442), + [anon_sym_mut] = ACTIONS(41), + [anon_sym_QMARK] = ACTIONS(47), + [anon_sym_BANG] = ACTIONS(1821), + [anon_sym_go] = ACTIONS(1823), + [anon_sym_spawn] = ACTIONS(1825), + [anon_sym_json_DOTdecode] = ACTIONS(1450), + [anon_sym_LBRACK2] = ACTIONS(1827), + [anon_sym_TILDE] = ACTIONS(1817), + [anon_sym_CARET] = ACTIONS(1817), + [anon_sym_AMP] = ACTIONS(1829), + [anon_sym_LT_DASH] = ACTIONS(1831), + [sym_none] = ACTIONS(1458), + [sym_true] = ACTIONS(1458), + [sym_false] = ACTIONS(1458), + [sym_nil] = ACTIONS(1458), + [anon_sym_if] = ACTIONS(1833), + [anon_sym_DOLLARif] = ACTIONS(1462), + [anon_sym_match] = ACTIONS(1464), + [anon_sym_select] = ACTIONS(1835), + [anon_sym_lock] = ACTIONS(1837), + [anon_sym_rlock] = ACTIONS(1837), + [anon_sym_unsafe] = ACTIONS(1839), + [anon_sym_sql] = ACTIONS(1472), + [sym_int_literal] = ACTIONS(1458), + [sym_float_literal] = ACTIONS(1474), + [sym_rune_literal] = ACTIONS(1474), + [sym_pseudo_compile_time_identifier] = ACTIONS(1476), + [anon_sym_shared] = ACTIONS(83), + [anon_sym_map_LBRACK] = ACTIONS(85), + [anon_sym_chan] = ACTIONS(87), + [anon_sym_thread] = ACTIONS(89), + [anon_sym_atomic] = ACTIONS(91), + [sym___double_quote] = ACTIONS(1480), + [sym___single_quote] = ACTIONS(1482), + [sym___c_double_quote] = ACTIONS(1484), + [sym___c_single_quote] = ACTIONS(1486), + [sym___r_double_quote] = ACTIONS(1488), + [sym___r_single_quote] = ACTIONS(1490), }, - [447] = { - [sym_line_comment] = STATE(447), - [sym_block_comment] = STATE(447), + [452] = { + [sym_line_comment] = STATE(452), + [sym_block_comment] = STATE(452), [ts_builtin_sym_end] = ACTIONS(2792), [sym_identifier] = ACTIONS(2794), [anon_sym_LF] = ACTIONS(2794), @@ -74768,125 +75366,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym___r_double_quote] = ACTIONS(2794), [sym___r_single_quote] = ACTIONS(2794), }, - [448] = { - [sym_line_comment] = STATE(448), - [sym_block_comment] = STATE(448), - [ts_builtin_sym_end] = ACTIONS(1903), - [sym_identifier] = ACTIONS(1905), - [anon_sym_LF] = ACTIONS(1905), - [anon_sym_CR] = ACTIONS(1905), - [anon_sym_CR_LF] = ACTIONS(1905), - [anon_sym_SLASH_SLASH] = ACTIONS(497), - [anon_sym_SLASH_STAR] = ACTIONS(499), - [anon_sym_DOT] = ACTIONS(1905), - [anon_sym_as] = ACTIONS(1905), - [anon_sym_LBRACE] = ACTIONS(1905), - [anon_sym_COMMA] = ACTIONS(1905), - [anon_sym_const] = ACTIONS(1905), - [anon_sym_LPAREN] = ACTIONS(1905), - [anon_sym_EQ] = ACTIONS(1905), - [anon_sym___global] = ACTIONS(1905), - [anon_sym_type] = ACTIONS(1905), - [anon_sym_PIPE] = ACTIONS(1905), - [anon_sym_fn] = ACTIONS(1905), - [anon_sym_PLUS] = ACTIONS(1905), - [anon_sym_DASH] = ACTIONS(1905), - [anon_sym_STAR] = ACTIONS(1905), - [anon_sym_SLASH] = ACTIONS(1905), - [anon_sym_PERCENT] = ACTIONS(1905), - [anon_sym_LT] = ACTIONS(1905), - [anon_sym_GT] = ACTIONS(1905), - [anon_sym_EQ_EQ] = ACTIONS(1905), - [anon_sym_BANG_EQ] = ACTIONS(1905), - [anon_sym_LT_EQ] = ACTIONS(1905), - [anon_sym_GT_EQ] = ACTIONS(1905), - [anon_sym_LBRACK] = ACTIONS(1903), - [anon_sym_struct] = ACTIONS(1905), - [anon_sym_union] = ACTIONS(1905), - [anon_sym_pub] = ACTIONS(1905), - [anon_sym_mut] = ACTIONS(1905), - [anon_sym_enum] = ACTIONS(1905), - [anon_sym_interface] = ACTIONS(1905), - [anon_sym_PLUS_PLUS] = ACTIONS(1905), - [anon_sym_DASH_DASH] = ACTIONS(1905), - [anon_sym_QMARK] = ACTIONS(1905), - [anon_sym_BANG] = ACTIONS(1905), - [anon_sym_go] = ACTIONS(1905), - [anon_sym_spawn] = ACTIONS(1905), - [anon_sym_json_DOTdecode] = ACTIONS(1905), - [anon_sym_LBRACK2] = ACTIONS(1905), - [anon_sym_TILDE] = ACTIONS(1905), - [anon_sym_CARET] = ACTIONS(1905), - [anon_sym_AMP] = ACTIONS(1905), - [anon_sym_LT_DASH] = ACTIONS(1905), - [anon_sym_LT_LT] = ACTIONS(1905), - [anon_sym_GT_GT] = ACTIONS(1905), - [anon_sym_GT_GT_GT] = ACTIONS(1905), - [anon_sym_AMP_CARET] = ACTIONS(1905), - [anon_sym_AMP_AMP] = ACTIONS(1905), - [anon_sym_PIPE_PIPE] = ACTIONS(1905), - [anon_sym_or] = ACTIONS(1905), - [sym_none] = ACTIONS(1905), - [sym_true] = ACTIONS(1905), - [sym_false] = ACTIONS(1905), - [sym_nil] = ACTIONS(1905), - [anon_sym_QMARK_DOT] = ACTIONS(1905), - [anon_sym_POUND_LBRACK] = ACTIONS(1905), - [anon_sym_if] = ACTIONS(1905), - [anon_sym_DOLLARif] = ACTIONS(1905), - [anon_sym_is] = ACTIONS(1905), - [anon_sym_BANGis] = ACTIONS(1905), - [anon_sym_in] = ACTIONS(1905), - [anon_sym_BANGin] = ACTIONS(1905), - [anon_sym_match] = ACTIONS(1905), - [anon_sym_select] = ACTIONS(1905), - [anon_sym_STAR_EQ] = ACTIONS(1905), - [anon_sym_SLASH_EQ] = ACTIONS(1905), - [anon_sym_PERCENT_EQ] = ACTIONS(1905), - [anon_sym_LT_LT_EQ] = ACTIONS(1905), - [anon_sym_GT_GT_EQ] = ACTIONS(1905), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(1905), - [anon_sym_AMP_EQ] = ACTIONS(1905), - [anon_sym_AMP_CARET_EQ] = ACTIONS(1905), - [anon_sym_PLUS_EQ] = ACTIONS(1905), - [anon_sym_DASH_EQ] = ACTIONS(1905), - [anon_sym_PIPE_EQ] = ACTIONS(1905), - [anon_sym_CARET_EQ] = ACTIONS(1905), - [anon_sym_COLON_EQ] = ACTIONS(1905), - [anon_sym_lock] = ACTIONS(1905), - [anon_sym_rlock] = ACTIONS(1905), - [anon_sym_unsafe] = ACTIONS(1905), - [anon_sym_sql] = ACTIONS(1905), - [sym_int_literal] = ACTIONS(1905), - [sym_float_literal] = ACTIONS(1905), - [sym_rune_literal] = ACTIONS(1905), - [sym_pseudo_compile_time_identifier] = ACTIONS(1905), - [anon_sym_shared] = ACTIONS(1905), - [anon_sym_map_LBRACK] = ACTIONS(1905), - [anon_sym_chan] = ACTIONS(1905), - [anon_sym_thread] = ACTIONS(1905), - [anon_sym_atomic] = ACTIONS(1905), - [anon_sym_assert] = ACTIONS(1905), - [anon_sym_defer] = ACTIONS(1905), - [anon_sym_goto] = ACTIONS(1905), - [anon_sym_break] = ACTIONS(1905), - [anon_sym_continue] = ACTIONS(1905), - [anon_sym_return] = ACTIONS(1905), - [anon_sym_DOLLARfor] = ACTIONS(1905), - [anon_sym_for] = ACTIONS(1905), - [anon_sym_POUND] = ACTIONS(1905), - [anon_sym_asm] = ACTIONS(1905), - [anon_sym_AT_LBRACK] = ACTIONS(1905), - [sym___double_quote] = ACTIONS(1905), - [sym___single_quote] = ACTIONS(1905), - [sym___c_double_quote] = ACTIONS(1905), - [sym___c_single_quote] = ACTIONS(1905), - [sym___r_double_quote] = ACTIONS(1905), - [sym___r_single_quote] = ACTIONS(1905), - }, - [449] = { - [sym_line_comment] = STATE(449), - [sym_block_comment] = STATE(449), + [453] = { + [sym_line_comment] = STATE(453), + [sym_block_comment] = STATE(453), [ts_builtin_sym_end] = ACTIONS(2796), [sym_identifier] = ACTIONS(2798), [anon_sym_LF] = ACTIONS(2798), @@ -75000,9 +75482,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym___r_double_quote] = ACTIONS(2798), [sym___r_single_quote] = ACTIONS(2798), }, - [450] = { - [sym_line_comment] = STATE(450), - [sym_block_comment] = STATE(450), + [454] = { + [sym_line_comment] = STATE(454), + [sym_block_comment] = STATE(454), [ts_builtin_sym_end] = ACTIONS(2800), [sym_identifier] = ACTIONS(2802), [anon_sym_LF] = ACTIONS(2802), @@ -75116,9 +75598,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym___r_double_quote] = ACTIONS(2802), [sym___r_single_quote] = ACTIONS(2802), }, - [451] = { - [sym_line_comment] = STATE(451), - [sym_block_comment] = STATE(451), + [455] = { + [sym_line_comment] = STATE(455), + [sym_block_comment] = STATE(455), [ts_builtin_sym_end] = ACTIONS(2804), [sym_identifier] = ACTIONS(2806), [anon_sym_LF] = ACTIONS(2806), @@ -75232,705 +75714,473 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym___r_double_quote] = ACTIONS(2806), [sym___r_single_quote] = ACTIONS(2806), }, - [452] = { - [sym_line_comment] = STATE(452), - [sym_block_comment] = STATE(452), - [ts_builtin_sym_end] = ACTIONS(1915), - [sym_identifier] = ACTIONS(1917), - [anon_sym_LF] = ACTIONS(1917), - [anon_sym_CR] = ACTIONS(1917), - [anon_sym_CR_LF] = ACTIONS(1917), - [anon_sym_SLASH_SLASH] = ACTIONS(497), - [anon_sym_SLASH_STAR] = ACTIONS(499), - [anon_sym_DOT] = ACTIONS(1917), - [anon_sym_as] = ACTIONS(1917), - [anon_sym_LBRACE] = ACTIONS(1917), - [anon_sym_COMMA] = ACTIONS(1917), - [anon_sym_const] = ACTIONS(1917), - [anon_sym_LPAREN] = ACTIONS(1917), - [anon_sym_EQ] = ACTIONS(1917), - [anon_sym___global] = ACTIONS(1917), - [anon_sym_type] = ACTIONS(1917), - [anon_sym_PIPE] = ACTIONS(1917), - [anon_sym_fn] = ACTIONS(1917), - [anon_sym_PLUS] = ACTIONS(1917), - [anon_sym_DASH] = ACTIONS(1917), - [anon_sym_STAR] = ACTIONS(1917), - [anon_sym_SLASH] = ACTIONS(1917), - [anon_sym_PERCENT] = ACTIONS(1917), - [anon_sym_LT] = ACTIONS(1917), - [anon_sym_GT] = ACTIONS(1917), - [anon_sym_EQ_EQ] = ACTIONS(1917), - [anon_sym_BANG_EQ] = ACTIONS(1917), - [anon_sym_LT_EQ] = ACTIONS(1917), - [anon_sym_GT_EQ] = ACTIONS(1917), - [anon_sym_LBRACK] = ACTIONS(1915), - [anon_sym_struct] = ACTIONS(1917), - [anon_sym_union] = ACTIONS(1917), - [anon_sym_pub] = ACTIONS(1917), - [anon_sym_mut] = ACTIONS(1917), - [anon_sym_enum] = ACTIONS(1917), - [anon_sym_interface] = ACTIONS(1917), - [anon_sym_PLUS_PLUS] = ACTIONS(1917), - [anon_sym_DASH_DASH] = ACTIONS(1917), - [anon_sym_QMARK] = ACTIONS(1917), - [anon_sym_BANG] = ACTIONS(1917), - [anon_sym_go] = ACTIONS(1917), - [anon_sym_spawn] = ACTIONS(1917), - [anon_sym_json_DOTdecode] = ACTIONS(1917), - [anon_sym_LBRACK2] = ACTIONS(1917), - [anon_sym_TILDE] = ACTIONS(1917), - [anon_sym_CARET] = ACTIONS(1917), - [anon_sym_AMP] = ACTIONS(1917), - [anon_sym_LT_DASH] = ACTIONS(1917), - [anon_sym_LT_LT] = ACTIONS(1917), - [anon_sym_GT_GT] = ACTIONS(1917), - [anon_sym_GT_GT_GT] = ACTIONS(1917), - [anon_sym_AMP_CARET] = ACTIONS(1917), - [anon_sym_AMP_AMP] = ACTIONS(1917), - [anon_sym_PIPE_PIPE] = ACTIONS(1917), - [anon_sym_or] = ACTIONS(1917), - [sym_none] = ACTIONS(1917), - [sym_true] = ACTIONS(1917), - [sym_false] = ACTIONS(1917), - [sym_nil] = ACTIONS(1917), - [anon_sym_QMARK_DOT] = ACTIONS(1917), - [anon_sym_POUND_LBRACK] = ACTIONS(1917), - [anon_sym_if] = ACTIONS(1917), - [anon_sym_DOLLARif] = ACTIONS(1917), - [anon_sym_is] = ACTIONS(1917), - [anon_sym_BANGis] = ACTIONS(1917), - [anon_sym_in] = ACTIONS(1917), - [anon_sym_BANGin] = ACTIONS(1917), - [anon_sym_match] = ACTIONS(1917), - [anon_sym_select] = ACTIONS(1917), - [anon_sym_STAR_EQ] = ACTIONS(1917), - [anon_sym_SLASH_EQ] = ACTIONS(1917), - [anon_sym_PERCENT_EQ] = ACTIONS(1917), - [anon_sym_LT_LT_EQ] = ACTIONS(1917), - [anon_sym_GT_GT_EQ] = ACTIONS(1917), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(1917), - [anon_sym_AMP_EQ] = ACTIONS(1917), - [anon_sym_AMP_CARET_EQ] = ACTIONS(1917), - [anon_sym_PLUS_EQ] = ACTIONS(1917), - [anon_sym_DASH_EQ] = ACTIONS(1917), - [anon_sym_PIPE_EQ] = ACTIONS(1917), - [anon_sym_CARET_EQ] = ACTIONS(1917), - [anon_sym_COLON_EQ] = ACTIONS(1917), - [anon_sym_lock] = ACTIONS(1917), - [anon_sym_rlock] = ACTIONS(1917), - [anon_sym_unsafe] = ACTIONS(1917), - [anon_sym_sql] = ACTIONS(1917), - [sym_int_literal] = ACTIONS(1917), - [sym_float_literal] = ACTIONS(1917), - [sym_rune_literal] = ACTIONS(1917), - [sym_pseudo_compile_time_identifier] = ACTIONS(1917), - [anon_sym_shared] = ACTIONS(1917), - [anon_sym_map_LBRACK] = ACTIONS(1917), - [anon_sym_chan] = ACTIONS(1917), - [anon_sym_thread] = ACTIONS(1917), - [anon_sym_atomic] = ACTIONS(1917), - [anon_sym_assert] = ACTIONS(1917), - [anon_sym_defer] = ACTIONS(1917), - [anon_sym_goto] = ACTIONS(1917), - [anon_sym_break] = ACTIONS(1917), - [anon_sym_continue] = ACTIONS(1917), - [anon_sym_return] = ACTIONS(1917), - [anon_sym_DOLLARfor] = ACTIONS(1917), - [anon_sym_for] = ACTIONS(1917), - [anon_sym_POUND] = ACTIONS(1917), - [anon_sym_asm] = ACTIONS(1917), - [anon_sym_AT_LBRACK] = ACTIONS(1917), - [sym___double_quote] = ACTIONS(1917), - [sym___single_quote] = ACTIONS(1917), - [sym___c_double_quote] = ACTIONS(1917), - [sym___c_single_quote] = ACTIONS(1917), - [sym___r_double_quote] = ACTIONS(1917), - [sym___r_single_quote] = ACTIONS(1917), - }, - [453] = { - [sym_line_comment] = STATE(453), - [sym_block_comment] = STATE(453), - [ts_builtin_sym_end] = ACTIONS(2808), - [sym_identifier] = ACTIONS(2810), - [anon_sym_LF] = ACTIONS(2810), - [anon_sym_CR] = ACTIONS(2810), - [anon_sym_CR_LF] = ACTIONS(2810), - [anon_sym_SLASH_SLASH] = ACTIONS(497), - [anon_sym_SLASH_STAR] = ACTIONS(499), - [anon_sym_DOT] = ACTIONS(2810), - [anon_sym_as] = ACTIONS(2810), - [anon_sym_LBRACE] = ACTIONS(2810), - [anon_sym_COMMA] = ACTIONS(2810), - [anon_sym_const] = ACTIONS(2810), - [anon_sym_LPAREN] = ACTIONS(2810), - [anon_sym_EQ] = ACTIONS(2810), - [anon_sym___global] = ACTIONS(2810), - [anon_sym_type] = ACTIONS(2810), - [anon_sym_PIPE] = ACTIONS(2810), - [anon_sym_fn] = ACTIONS(2810), - [anon_sym_PLUS] = ACTIONS(2810), - [anon_sym_DASH] = ACTIONS(2810), - [anon_sym_STAR] = ACTIONS(2810), - [anon_sym_SLASH] = ACTIONS(2810), - [anon_sym_PERCENT] = ACTIONS(2810), - [anon_sym_LT] = ACTIONS(2810), - [anon_sym_GT] = ACTIONS(2810), - [anon_sym_EQ_EQ] = ACTIONS(2810), - [anon_sym_BANG_EQ] = ACTIONS(2810), - [anon_sym_LT_EQ] = ACTIONS(2810), - [anon_sym_GT_EQ] = ACTIONS(2810), - [anon_sym_LBRACK] = ACTIONS(2808), - [anon_sym_struct] = ACTIONS(2810), - [anon_sym_union] = ACTIONS(2810), - [anon_sym_pub] = ACTIONS(2810), - [anon_sym_mut] = ACTIONS(2810), - [anon_sym_enum] = ACTIONS(2810), - [anon_sym_interface] = ACTIONS(2810), - [anon_sym_PLUS_PLUS] = ACTIONS(2810), - [anon_sym_DASH_DASH] = ACTIONS(2810), - [anon_sym_QMARK] = ACTIONS(2810), - [anon_sym_BANG] = ACTIONS(2810), - [anon_sym_go] = ACTIONS(2810), - [anon_sym_spawn] = ACTIONS(2810), - [anon_sym_json_DOTdecode] = ACTIONS(2810), - [anon_sym_LBRACK2] = ACTIONS(2810), - [anon_sym_TILDE] = ACTIONS(2810), - [anon_sym_CARET] = ACTIONS(2810), - [anon_sym_AMP] = ACTIONS(2810), - [anon_sym_LT_DASH] = ACTIONS(2810), - [anon_sym_LT_LT] = ACTIONS(2810), - [anon_sym_GT_GT] = ACTIONS(2810), - [anon_sym_GT_GT_GT] = ACTIONS(2810), - [anon_sym_AMP_CARET] = ACTIONS(2810), - [anon_sym_AMP_AMP] = ACTIONS(2810), - [anon_sym_PIPE_PIPE] = ACTIONS(2810), - [anon_sym_or] = ACTIONS(2810), - [sym_none] = ACTIONS(2810), - [sym_true] = ACTIONS(2810), - [sym_false] = ACTIONS(2810), - [sym_nil] = ACTIONS(2810), - [anon_sym_QMARK_DOT] = ACTIONS(2810), - [anon_sym_POUND_LBRACK] = ACTIONS(2810), - [anon_sym_if] = ACTIONS(2810), - [anon_sym_DOLLARif] = ACTIONS(2810), - [anon_sym_is] = ACTIONS(2810), - [anon_sym_BANGis] = ACTIONS(2810), - [anon_sym_in] = ACTIONS(2810), - [anon_sym_BANGin] = ACTIONS(2810), - [anon_sym_match] = ACTIONS(2810), - [anon_sym_select] = ACTIONS(2810), - [anon_sym_STAR_EQ] = ACTIONS(2810), - [anon_sym_SLASH_EQ] = ACTIONS(2810), - [anon_sym_PERCENT_EQ] = ACTIONS(2810), - [anon_sym_LT_LT_EQ] = ACTIONS(2810), - [anon_sym_GT_GT_EQ] = ACTIONS(2810), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(2810), - [anon_sym_AMP_EQ] = ACTIONS(2810), - [anon_sym_AMP_CARET_EQ] = ACTIONS(2810), - [anon_sym_PLUS_EQ] = ACTIONS(2810), - [anon_sym_DASH_EQ] = ACTIONS(2810), - [anon_sym_PIPE_EQ] = ACTIONS(2810), - [anon_sym_CARET_EQ] = ACTIONS(2810), - [anon_sym_COLON_EQ] = ACTIONS(2810), - [anon_sym_lock] = ACTIONS(2810), - [anon_sym_rlock] = ACTIONS(2810), - [anon_sym_unsafe] = ACTIONS(2810), - [anon_sym_sql] = ACTIONS(2810), - [sym_int_literal] = ACTIONS(2810), - [sym_float_literal] = ACTIONS(2810), - [sym_rune_literal] = ACTIONS(2810), - [sym_pseudo_compile_time_identifier] = ACTIONS(2810), - [anon_sym_shared] = ACTIONS(2810), - [anon_sym_map_LBRACK] = ACTIONS(2810), - [anon_sym_chan] = ACTIONS(2810), - [anon_sym_thread] = ACTIONS(2810), - [anon_sym_atomic] = ACTIONS(2810), - [anon_sym_assert] = ACTIONS(2810), - [anon_sym_defer] = ACTIONS(2810), - [anon_sym_goto] = ACTIONS(2810), - [anon_sym_break] = ACTIONS(2810), - [anon_sym_continue] = ACTIONS(2810), - [anon_sym_return] = ACTIONS(2810), - [anon_sym_DOLLARfor] = ACTIONS(2810), - [anon_sym_for] = ACTIONS(2810), - [anon_sym_POUND] = ACTIONS(2810), - [anon_sym_asm] = ACTIONS(2810), - [anon_sym_AT_LBRACK] = ACTIONS(2810), - [sym___double_quote] = ACTIONS(2810), - [sym___single_quote] = ACTIONS(2810), - [sym___c_double_quote] = ACTIONS(2810), - [sym___c_single_quote] = ACTIONS(2810), - [sym___r_double_quote] = ACTIONS(2810), - [sym___r_single_quote] = ACTIONS(2810), - }, - [454] = { - [sym_line_comment] = STATE(454), - [sym_block_comment] = STATE(454), - [sym__expression] = STATE(1268), - [sym__expression_without_blocks] = STATE(1312), - [sym__expression_with_blocks] = STATE(1312), - [sym_inc_expression] = STATE(1313), - [sym_dec_expression] = STATE(1313), - [sym_or_block_expression] = STATE(1313), - [sym_option_propagation_expression] = STATE(1313), - [sym_result_propagation_expression] = STATE(1313), - [sym_anon_struct_value_expression] = STATE(1314), - [sym_go_expression] = STATE(1313), - [sym_spawn_expression] = STATE(1313), - [sym_parenthesized_expression] = STATE(1313), - [sym_call_expression] = STATE(1313), - [sym_type_initializer] = STATE(1314), - [sym_function_literal] = STATE(1313), - [sym_reference_expression] = STATE(1394), - [sym_type_reference_expression] = STATE(3541), - [sym_unary_expression] = STATE(1313), - [sym_receive_expression] = STATE(1313), - [sym_binary_expression] = STATE(1313), - [sym_as_type_cast_expression] = STATE(1313), - [sym__max_group] = STATE(1313), - [sym_literal] = STATE(1308), - [sym_map_init_expression] = STATE(1314), - [sym_array_creation] = STATE(1313), - [sym_fixed_array_creation] = STATE(1313), - [sym_selector_expression] = STATE(1393), - [sym_index_expression] = STATE(1313), - [sym_slice_expression] = STATE(1313), - [sym_if_expression] = STATE(1314), - [sym_compile_time_if_expression] = STATE(1314), - [sym_is_expression] = STATE(1313), - [sym_in_expression] = STATE(1313), - [sym_enum_fetch] = STATE(1313), - [sym_match_expression] = STATE(1314), - [sym_select_expression] = STATE(1314), - [sym_lock_expression] = STATE(1314), - [sym_unsafe_expression] = STATE(1314), - [sym_sql_expression] = STATE(1314), - [sym_c_string_literal] = STATE(1286), - [sym_raw_string_literal] = STATE(1286), - [sym_interpreted_string_literal] = STATE(1286), - [sym_mutability_modifiers] = STATE(699), - [sym_plain_type] = STATE(4192), - [sym__plain_type_without_special] = STATE(2302), - [sym_anon_struct_type] = STATE(2303), - [sym_multi_return_type] = STATE(2302), - [sym_result_type] = STATE(2302), - [sym_option_type] = STATE(2302), - [sym_qualified_type] = STATE(3541), - [sym_fixed_array_type] = STATE(2303), - [sym_array_type] = STATE(2303), - [sym_pointer_type] = STATE(2303), - [sym_wrong_pointer_type] = STATE(2303), - [sym_map_type] = STATE(2303), - [sym_channel_type] = STATE(2303), - [sym_shared_type] = STATE(2303), - [sym_thread_type] = STATE(2303), - [sym_atomic_type] = STATE(2303), - [sym_generic_type] = STATE(2303), - [sym_function_type] = STATE(2303), - [aux_sym__array_repeat1] = STATE(361), - [sym_identifier] = ACTIONS(1354), + [456] = { + [sym_line_comment] = STATE(456), + [sym_block_comment] = STATE(456), + [sym__expression] = STATE(2558), + [sym__expression_without_blocks] = STATE(2347), + [sym__expression_with_blocks] = STATE(2347), + [sym_inc_expression] = STATE(2379), + [sym_dec_expression] = STATE(2379), + [sym_or_block_expression] = STATE(2379), + [sym_option_propagation_expression] = STATE(2379), + [sym_result_propagation_expression] = STATE(2379), + [sym_anon_struct_value_expression] = STATE(2378), + [sym_go_expression] = STATE(2379), + [sym_spawn_expression] = STATE(2379), + [sym_parenthesized_expression] = STATE(2379), + [sym_call_expression] = STATE(2379), + [sym_type_initializer] = STATE(2378), + [sym_function_literal] = STATE(2379), + [sym_reference_expression] = STATE(2377), + [sym_type_reference_expression] = STATE(3460), + [sym_unary_expression] = STATE(2379), + [sym_receive_expression] = STATE(2379), + [sym_binary_expression] = STATE(2379), + [sym_as_type_cast_expression] = STATE(2379), + [sym__max_group] = STATE(2379), + [sym_literal] = STATE(2392), + [sym_map_init_expression] = STATE(2378), + [sym_array_creation] = STATE(2379), + [sym_fixed_array_creation] = STATE(2379), + [sym_selector_expression] = STATE(2379), + [sym_index_expression] = STATE(2379), + [sym_slice_expression] = STATE(2379), + [sym_if_expression] = STATE(2378), + [sym_compile_time_if_expression] = STATE(2378), + [sym_is_expression] = STATE(2379), + [sym_in_expression] = STATE(2379), + [sym_enum_fetch] = STATE(2379), + [sym_match_expression] = STATE(2378), + [sym_select_expression] = STATE(2378), + [sym_lock_expression] = STATE(2378), + [sym_unsafe_expression] = STATE(2378), + [sym_sql_expression] = STATE(2378), + [sym_c_string_literal] = STATE(2401), + [sym_raw_string_literal] = STATE(2401), + [sym_interpreted_string_literal] = STATE(2401), + [sym_mutability_modifiers] = STATE(900), + [sym_mutable_expression] = STATE(3813), + [sym_expression_list] = STATE(4372), + [sym_plain_type] = STATE(4160), + [sym__plain_type_without_special] = STATE(2360), + [sym_anon_struct_type] = STATE(2362), + [sym_multi_return_type] = STATE(2360), + [sym_result_type] = STATE(2360), + [sym_option_type] = STATE(2360), + [sym_qualified_type] = STATE(3460), + [sym_fixed_array_type] = STATE(2362), + [sym_array_type] = STATE(2362), + [sym_pointer_type] = STATE(2362), + [sym_wrong_pointer_type] = STATE(2362), + [sym_map_type] = STATE(2362), + [sym_channel_type] = STATE(2362), + [sym_shared_type] = STATE(2362), + [sym_thread_type] = STATE(2362), + [sym_atomic_type] = STATE(2362), + [sym_generic_type] = STATE(2362), + [sym_function_type] = STATE(2362), + [sym_identifier] = ACTIONS(1815), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1356), - [anon_sym_LBRACE] = ACTIONS(1358), - [anon_sym_LPAREN] = ACTIONS(1360), - [anon_sym_fn] = ACTIONS(1362), - [anon_sym_PLUS] = ACTIONS(1364), - [anon_sym_DASH] = ACTIONS(1364), - [anon_sym_STAR] = ACTIONS(1366), - [anon_sym_RBRACK] = ACTIONS(2812), - [anon_sym_struct] = ACTIONS(1370), + [anon_sym_DOT] = ACTIONS(1430), + [anon_sym_LBRACE] = ACTIONS(2808), + [anon_sym_LPAREN] = ACTIONS(1434), + [anon_sym_fn] = ACTIONS(1436), + [anon_sym_PLUS] = ACTIONS(1817), + [anon_sym_DASH] = ACTIONS(1817), + [anon_sym_STAR] = ACTIONS(1819), + [anon_sym_struct] = ACTIONS(1442), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(1372), - [anon_sym_go] = ACTIONS(1374), - [anon_sym_spawn] = ACTIONS(1376), - [anon_sym_json_DOTdecode] = ACTIONS(1378), - [anon_sym_LBRACK2] = ACTIONS(1380), - [anon_sym_TILDE] = ACTIONS(1364), - [anon_sym_CARET] = ACTIONS(1364), - [anon_sym_AMP] = ACTIONS(1382), - [anon_sym_LT_DASH] = ACTIONS(1384), - [sym_none] = ACTIONS(1386), - [sym_true] = ACTIONS(1386), - [sym_false] = ACTIONS(1386), - [sym_nil] = ACTIONS(1386), - [anon_sym_if] = ACTIONS(1877), - [anon_sym_DOLLARif] = ACTIONS(1390), - [anon_sym_match] = ACTIONS(1392), - [anon_sym_select] = ACTIONS(1394), - [anon_sym_lock] = ACTIONS(1396), - [anon_sym_rlock] = ACTIONS(1396), - [anon_sym_unsafe] = ACTIONS(1883), - [anon_sym_sql] = ACTIONS(1400), - [sym_int_literal] = ACTIONS(1402), - [sym_float_literal] = ACTIONS(1404), - [sym_rune_literal] = ACTIONS(1404), - [sym_pseudo_compile_time_identifier] = ACTIONS(1406), + [anon_sym_BANG] = ACTIONS(1821), + [anon_sym_go] = ACTIONS(1823), + [anon_sym_spawn] = ACTIONS(1825), + [anon_sym_json_DOTdecode] = ACTIONS(1450), + [anon_sym_LBRACK2] = ACTIONS(1827), + [anon_sym_TILDE] = ACTIONS(1817), + [anon_sym_CARET] = ACTIONS(1817), + [anon_sym_AMP] = ACTIONS(1829), + [anon_sym_LT_DASH] = ACTIONS(1831), + [sym_none] = ACTIONS(1458), + [sym_true] = ACTIONS(1458), + [sym_false] = ACTIONS(1458), + [sym_nil] = ACTIONS(1458), + [anon_sym_if] = ACTIONS(1833), + [anon_sym_DOLLARif] = ACTIONS(1462), + [anon_sym_match] = ACTIONS(1464), + [anon_sym_select] = ACTIONS(1835), + [anon_sym_lock] = ACTIONS(1837), + [anon_sym_rlock] = ACTIONS(1837), + [anon_sym_unsafe] = ACTIONS(1839), + [anon_sym_sql] = ACTIONS(1472), + [sym_int_literal] = ACTIONS(1458), + [sym_float_literal] = ACTIONS(1474), + [sym_rune_literal] = ACTIONS(1474), + [sym_pseudo_compile_time_identifier] = ACTIONS(1476), [anon_sym_shared] = ACTIONS(83), [anon_sym_map_LBRACK] = ACTIONS(85), [anon_sym_chan] = ACTIONS(87), [anon_sym_thread] = ACTIONS(89), [anon_sym_atomic] = ACTIONS(91), - [sym___double_quote] = ACTIONS(1408), - [sym___single_quote] = ACTIONS(1410), - [sym___c_double_quote] = ACTIONS(1412), - [sym___c_single_quote] = ACTIONS(1414), - [sym___r_double_quote] = ACTIONS(1416), - [sym___r_single_quote] = ACTIONS(1418), - }, - [455] = { - [sym_line_comment] = STATE(455), - [sym_block_comment] = STATE(455), - [ts_builtin_sym_end] = ACTIONS(2249), - [sym_identifier] = ACTIONS(2251), - [anon_sym_LF] = ACTIONS(2251), - [anon_sym_CR] = ACTIONS(2251), - [anon_sym_CR_LF] = ACTIONS(2251), - [anon_sym_SLASH_SLASH] = ACTIONS(497), - [anon_sym_SLASH_STAR] = ACTIONS(499), - [anon_sym_DOT] = ACTIONS(2253), - [anon_sym_as] = ACTIONS(2253), - [anon_sym_LBRACE] = ACTIONS(2251), - [anon_sym_COMMA] = ACTIONS(2251), - [anon_sym_const] = ACTIONS(2251), - [anon_sym_LPAREN] = ACTIONS(2253), - [anon_sym_EQ] = ACTIONS(2251), - [anon_sym___global] = ACTIONS(2251), - [anon_sym_type] = ACTIONS(2251), - [anon_sym_PIPE] = ACTIONS(2253), - [anon_sym_fn] = ACTIONS(2251), - [anon_sym_PLUS] = ACTIONS(2253), - [anon_sym_DASH] = ACTIONS(2253), - [anon_sym_STAR] = ACTIONS(2253), - [anon_sym_SLASH] = ACTIONS(2253), - [anon_sym_PERCENT] = ACTIONS(2253), - [anon_sym_LT] = ACTIONS(2253), - [anon_sym_GT] = ACTIONS(2253), - [anon_sym_EQ_EQ] = ACTIONS(2253), - [anon_sym_BANG_EQ] = ACTIONS(2253), - [anon_sym_LT_EQ] = ACTIONS(2253), - [anon_sym_GT_EQ] = ACTIONS(2253), - [anon_sym_LBRACK] = ACTIONS(2256), - [anon_sym_struct] = ACTIONS(2251), - [anon_sym_union] = ACTIONS(2251), - [anon_sym_pub] = ACTIONS(2251), - [anon_sym_mut] = ACTIONS(2251), - [anon_sym_enum] = ACTIONS(2251), - [anon_sym_interface] = ACTIONS(2251), - [anon_sym_PLUS_PLUS] = ACTIONS(2253), - [anon_sym_DASH_DASH] = ACTIONS(2253), - [anon_sym_QMARK] = ACTIONS(2253), - [anon_sym_BANG] = ACTIONS(2253), - [anon_sym_go] = ACTIONS(2251), - [anon_sym_spawn] = ACTIONS(2251), - [anon_sym_json_DOTdecode] = ACTIONS(2251), - [anon_sym_LBRACK2] = ACTIONS(2253), - [anon_sym_TILDE] = ACTIONS(2251), - [anon_sym_CARET] = ACTIONS(2253), - [anon_sym_AMP] = ACTIONS(2253), - [anon_sym_LT_DASH] = ACTIONS(2251), - [anon_sym_LT_LT] = ACTIONS(2253), - [anon_sym_GT_GT] = ACTIONS(2253), - [anon_sym_GT_GT_GT] = ACTIONS(2253), - [anon_sym_AMP_CARET] = ACTIONS(2253), - [anon_sym_AMP_AMP] = ACTIONS(2253), - [anon_sym_PIPE_PIPE] = ACTIONS(2253), - [anon_sym_or] = ACTIONS(2253), - [sym_none] = ACTIONS(2251), - [sym_true] = ACTIONS(2251), - [sym_false] = ACTIONS(2251), - [sym_nil] = ACTIONS(2251), - [anon_sym_QMARK_DOT] = ACTIONS(2253), - [anon_sym_POUND_LBRACK] = ACTIONS(2253), - [anon_sym_if] = ACTIONS(2251), - [anon_sym_DOLLARif] = ACTIONS(2251), - [anon_sym_is] = ACTIONS(2253), - [anon_sym_BANGis] = ACTIONS(2253), - [anon_sym_in] = ACTIONS(2253), - [anon_sym_BANGin] = ACTIONS(2253), - [anon_sym_match] = ACTIONS(2251), - [anon_sym_select] = ACTIONS(2251), - [anon_sym_STAR_EQ] = ACTIONS(2251), - [anon_sym_SLASH_EQ] = ACTIONS(2251), - [anon_sym_PERCENT_EQ] = ACTIONS(2251), - [anon_sym_LT_LT_EQ] = ACTIONS(2251), - [anon_sym_GT_GT_EQ] = ACTIONS(2251), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(2251), - [anon_sym_AMP_EQ] = ACTIONS(2251), - [anon_sym_AMP_CARET_EQ] = ACTIONS(2251), - [anon_sym_PLUS_EQ] = ACTIONS(2251), - [anon_sym_DASH_EQ] = ACTIONS(2251), - [anon_sym_PIPE_EQ] = ACTIONS(2251), - [anon_sym_CARET_EQ] = ACTIONS(2251), - [anon_sym_COLON_EQ] = ACTIONS(2251), - [anon_sym_lock] = ACTIONS(2251), - [anon_sym_rlock] = ACTIONS(2251), - [anon_sym_unsafe] = ACTIONS(2251), - [anon_sym_sql] = ACTIONS(2251), - [sym_int_literal] = ACTIONS(2251), - [sym_float_literal] = ACTIONS(2251), - [sym_rune_literal] = ACTIONS(2251), - [sym_pseudo_compile_time_identifier] = ACTIONS(2251), - [anon_sym_shared] = ACTIONS(2251), - [anon_sym_map_LBRACK] = ACTIONS(2251), - [anon_sym_chan] = ACTIONS(2251), - [anon_sym_thread] = ACTIONS(2251), - [anon_sym_atomic] = ACTIONS(2251), - [anon_sym_assert] = ACTIONS(2251), - [anon_sym_defer] = ACTIONS(2251), - [anon_sym_goto] = ACTIONS(2251), - [anon_sym_break] = ACTIONS(2251), - [anon_sym_continue] = ACTIONS(2251), - [anon_sym_return] = ACTIONS(2251), - [anon_sym_DOLLARfor] = ACTIONS(2251), - [anon_sym_for] = ACTIONS(2251), - [anon_sym_POUND] = ACTIONS(2251), - [anon_sym_asm] = ACTIONS(2251), - [anon_sym_AT_LBRACK] = ACTIONS(2251), - [sym___double_quote] = ACTIONS(2251), - [sym___single_quote] = ACTIONS(2251), - [sym___c_double_quote] = ACTIONS(2251), - [sym___c_single_quote] = ACTIONS(2251), - [sym___r_double_quote] = ACTIONS(2251), - [sym___r_single_quote] = ACTIONS(2251), - }, - [456] = { - [sym_line_comment] = STATE(456), - [sym_block_comment] = STATE(456), - [ts_builtin_sym_end] = ACTIONS(2814), - [sym_identifier] = ACTIONS(2816), - [anon_sym_LF] = ACTIONS(2816), - [anon_sym_CR] = ACTIONS(2816), - [anon_sym_CR_LF] = ACTIONS(2816), - [anon_sym_SLASH_SLASH] = ACTIONS(497), - [anon_sym_SLASH_STAR] = ACTIONS(499), - [anon_sym_DOT] = ACTIONS(2816), - [anon_sym_as] = ACTIONS(2816), - [anon_sym_LBRACE] = ACTIONS(2816), - [anon_sym_COMMA] = ACTIONS(2816), - [anon_sym_const] = ACTIONS(2816), - [anon_sym_LPAREN] = ACTIONS(2816), - [anon_sym_EQ] = ACTIONS(2816), - [anon_sym___global] = ACTIONS(2816), - [anon_sym_type] = ACTIONS(2816), - [anon_sym_PIPE] = ACTIONS(2816), - [anon_sym_fn] = ACTIONS(2816), - [anon_sym_PLUS] = ACTIONS(2816), - [anon_sym_DASH] = ACTIONS(2816), - [anon_sym_STAR] = ACTIONS(2816), - [anon_sym_SLASH] = ACTIONS(2816), - [anon_sym_PERCENT] = ACTIONS(2816), - [anon_sym_LT] = ACTIONS(2816), - [anon_sym_GT] = ACTIONS(2816), - [anon_sym_EQ_EQ] = ACTIONS(2816), - [anon_sym_BANG_EQ] = ACTIONS(2816), - [anon_sym_LT_EQ] = ACTIONS(2816), - [anon_sym_GT_EQ] = ACTIONS(2816), - [anon_sym_LBRACK] = ACTIONS(2814), - [anon_sym_struct] = ACTIONS(2816), - [anon_sym_union] = ACTIONS(2816), - [anon_sym_pub] = ACTIONS(2816), - [anon_sym_mut] = ACTIONS(2816), - [anon_sym_enum] = ACTIONS(2816), - [anon_sym_interface] = ACTIONS(2816), - [anon_sym_PLUS_PLUS] = ACTIONS(2816), - [anon_sym_DASH_DASH] = ACTIONS(2816), - [anon_sym_QMARK] = ACTIONS(2816), - [anon_sym_BANG] = ACTIONS(2816), - [anon_sym_go] = ACTIONS(2816), - [anon_sym_spawn] = ACTIONS(2816), - [anon_sym_json_DOTdecode] = ACTIONS(2816), - [anon_sym_LBRACK2] = ACTIONS(2816), - [anon_sym_TILDE] = ACTIONS(2816), - [anon_sym_CARET] = ACTIONS(2816), - [anon_sym_AMP] = ACTIONS(2816), - [anon_sym_LT_DASH] = ACTIONS(2816), - [anon_sym_LT_LT] = ACTIONS(2816), - [anon_sym_GT_GT] = ACTIONS(2816), - [anon_sym_GT_GT_GT] = ACTIONS(2816), - [anon_sym_AMP_CARET] = ACTIONS(2816), - [anon_sym_AMP_AMP] = ACTIONS(2816), - [anon_sym_PIPE_PIPE] = ACTIONS(2816), - [anon_sym_or] = ACTIONS(2816), - [sym_none] = ACTIONS(2816), - [sym_true] = ACTIONS(2816), - [sym_false] = ACTIONS(2816), - [sym_nil] = ACTIONS(2816), - [anon_sym_QMARK_DOT] = ACTIONS(2816), - [anon_sym_POUND_LBRACK] = ACTIONS(2816), - [anon_sym_if] = ACTIONS(2816), - [anon_sym_DOLLARif] = ACTIONS(2816), - [anon_sym_is] = ACTIONS(2816), - [anon_sym_BANGis] = ACTIONS(2816), - [anon_sym_in] = ACTIONS(2816), - [anon_sym_BANGin] = ACTIONS(2816), - [anon_sym_match] = ACTIONS(2816), - [anon_sym_select] = ACTIONS(2816), - [anon_sym_STAR_EQ] = ACTIONS(2816), - [anon_sym_SLASH_EQ] = ACTIONS(2816), - [anon_sym_PERCENT_EQ] = ACTIONS(2816), - [anon_sym_LT_LT_EQ] = ACTIONS(2816), - [anon_sym_GT_GT_EQ] = ACTIONS(2816), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(2816), - [anon_sym_AMP_EQ] = ACTIONS(2816), - [anon_sym_AMP_CARET_EQ] = ACTIONS(2816), - [anon_sym_PLUS_EQ] = ACTIONS(2816), - [anon_sym_DASH_EQ] = ACTIONS(2816), - [anon_sym_PIPE_EQ] = ACTIONS(2816), - [anon_sym_CARET_EQ] = ACTIONS(2816), - [anon_sym_COLON_EQ] = ACTIONS(2816), - [anon_sym_lock] = ACTIONS(2816), - [anon_sym_rlock] = ACTIONS(2816), - [anon_sym_unsafe] = ACTIONS(2816), - [anon_sym_sql] = ACTIONS(2816), - [sym_int_literal] = ACTIONS(2816), - [sym_float_literal] = ACTIONS(2816), - [sym_rune_literal] = ACTIONS(2816), - [sym_pseudo_compile_time_identifier] = ACTIONS(2816), - [anon_sym_shared] = ACTIONS(2816), - [anon_sym_map_LBRACK] = ACTIONS(2816), - [anon_sym_chan] = ACTIONS(2816), - [anon_sym_thread] = ACTIONS(2816), - [anon_sym_atomic] = ACTIONS(2816), - [anon_sym_assert] = ACTIONS(2816), - [anon_sym_defer] = ACTIONS(2816), - [anon_sym_goto] = ACTIONS(2816), - [anon_sym_break] = ACTIONS(2816), - [anon_sym_continue] = ACTIONS(2816), - [anon_sym_return] = ACTIONS(2816), - [anon_sym_DOLLARfor] = ACTIONS(2816), - [anon_sym_for] = ACTIONS(2816), - [anon_sym_POUND] = ACTIONS(2816), - [anon_sym_asm] = ACTIONS(2816), - [anon_sym_AT_LBRACK] = ACTIONS(2816), - [sym___double_quote] = ACTIONS(2816), - [sym___single_quote] = ACTIONS(2816), - [sym___c_double_quote] = ACTIONS(2816), - [sym___c_single_quote] = ACTIONS(2816), - [sym___r_double_quote] = ACTIONS(2816), - [sym___r_single_quote] = ACTIONS(2816), + [sym___double_quote] = ACTIONS(1480), + [sym___single_quote] = ACTIONS(1482), + [sym___c_double_quote] = ACTIONS(1484), + [sym___c_single_quote] = ACTIONS(1486), + [sym___r_double_quote] = ACTIONS(1488), + [sym___r_single_quote] = ACTIONS(1490), }, [457] = { [sym_line_comment] = STATE(457), [sym_block_comment] = STATE(457), - [ts_builtin_sym_end] = ACTIONS(2818), - [sym_identifier] = ACTIONS(2820), - [anon_sym_LF] = ACTIONS(2820), - [anon_sym_CR] = ACTIONS(2820), - [anon_sym_CR_LF] = ACTIONS(2820), + [ts_builtin_sym_end] = ACTIONS(2810), + [sym_identifier] = ACTIONS(2812), + [anon_sym_LF] = ACTIONS(2812), + [anon_sym_CR] = ACTIONS(2812), + [anon_sym_CR_LF] = ACTIONS(2812), [anon_sym_SLASH_SLASH] = ACTIONS(497), [anon_sym_SLASH_STAR] = ACTIONS(499), - [anon_sym_DOT] = ACTIONS(2820), - [anon_sym_as] = ACTIONS(2820), - [anon_sym_LBRACE] = ACTIONS(2820), - [anon_sym_COMMA] = ACTIONS(2820), - [anon_sym_const] = ACTIONS(2820), - [anon_sym_LPAREN] = ACTIONS(2820), - [anon_sym_EQ] = ACTIONS(2820), - [anon_sym___global] = ACTIONS(2820), - [anon_sym_type] = ACTIONS(2820), - [anon_sym_PIPE] = ACTIONS(2820), - [anon_sym_fn] = ACTIONS(2820), - [anon_sym_PLUS] = ACTIONS(2820), - [anon_sym_DASH] = ACTIONS(2820), - [anon_sym_STAR] = ACTIONS(2820), - [anon_sym_SLASH] = ACTIONS(2820), - [anon_sym_PERCENT] = ACTIONS(2820), - [anon_sym_LT] = ACTIONS(2820), - [anon_sym_GT] = ACTIONS(2820), - [anon_sym_EQ_EQ] = ACTIONS(2820), - [anon_sym_BANG_EQ] = ACTIONS(2820), - [anon_sym_LT_EQ] = ACTIONS(2820), - [anon_sym_GT_EQ] = ACTIONS(2820), - [anon_sym_LBRACK] = ACTIONS(2818), - [anon_sym_struct] = ACTIONS(2820), - [anon_sym_union] = ACTIONS(2820), - [anon_sym_pub] = ACTIONS(2820), - [anon_sym_mut] = ACTIONS(2820), - [anon_sym_enum] = ACTIONS(2820), - [anon_sym_interface] = ACTIONS(2820), - [anon_sym_PLUS_PLUS] = ACTIONS(2820), - [anon_sym_DASH_DASH] = ACTIONS(2820), - [anon_sym_QMARK] = ACTIONS(2820), - [anon_sym_BANG] = ACTIONS(2820), - [anon_sym_go] = ACTIONS(2820), - [anon_sym_spawn] = ACTIONS(2820), - [anon_sym_json_DOTdecode] = ACTIONS(2820), - [anon_sym_LBRACK2] = ACTIONS(2820), - [anon_sym_TILDE] = ACTIONS(2820), - [anon_sym_CARET] = ACTIONS(2820), - [anon_sym_AMP] = ACTIONS(2820), - [anon_sym_LT_DASH] = ACTIONS(2820), - [anon_sym_LT_LT] = ACTIONS(2820), - [anon_sym_GT_GT] = ACTIONS(2820), - [anon_sym_GT_GT_GT] = ACTIONS(2820), - [anon_sym_AMP_CARET] = ACTIONS(2820), - [anon_sym_AMP_AMP] = ACTIONS(2820), - [anon_sym_PIPE_PIPE] = ACTIONS(2820), - [anon_sym_or] = ACTIONS(2820), - [sym_none] = ACTIONS(2820), - [sym_true] = ACTIONS(2820), - [sym_false] = ACTIONS(2820), - [sym_nil] = ACTIONS(2820), - [anon_sym_QMARK_DOT] = ACTIONS(2820), - [anon_sym_POUND_LBRACK] = ACTIONS(2820), - [anon_sym_if] = ACTIONS(2820), - [anon_sym_DOLLARif] = ACTIONS(2820), - [anon_sym_is] = ACTIONS(2820), - [anon_sym_BANGis] = ACTIONS(2820), - [anon_sym_in] = ACTIONS(2820), - [anon_sym_BANGin] = ACTIONS(2820), - [anon_sym_match] = ACTIONS(2820), - [anon_sym_select] = ACTIONS(2820), - [anon_sym_STAR_EQ] = ACTIONS(2820), - [anon_sym_SLASH_EQ] = ACTIONS(2820), - [anon_sym_PERCENT_EQ] = ACTIONS(2820), - [anon_sym_LT_LT_EQ] = ACTIONS(2820), - [anon_sym_GT_GT_EQ] = ACTIONS(2820), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(2820), - [anon_sym_AMP_EQ] = ACTIONS(2820), - [anon_sym_AMP_CARET_EQ] = ACTIONS(2820), - [anon_sym_PLUS_EQ] = ACTIONS(2820), - [anon_sym_DASH_EQ] = ACTIONS(2820), - [anon_sym_PIPE_EQ] = ACTIONS(2820), - [anon_sym_CARET_EQ] = ACTIONS(2820), - [anon_sym_COLON_EQ] = ACTIONS(2820), - [anon_sym_lock] = ACTIONS(2820), - [anon_sym_rlock] = ACTIONS(2820), - [anon_sym_unsafe] = ACTIONS(2820), - [anon_sym_sql] = ACTIONS(2820), - [sym_int_literal] = ACTIONS(2820), - [sym_float_literal] = ACTIONS(2820), - [sym_rune_literal] = ACTIONS(2820), - [sym_pseudo_compile_time_identifier] = ACTIONS(2820), - [anon_sym_shared] = ACTIONS(2820), - [anon_sym_map_LBRACK] = ACTIONS(2820), - [anon_sym_chan] = ACTIONS(2820), - [anon_sym_thread] = ACTIONS(2820), - [anon_sym_atomic] = ACTIONS(2820), - [anon_sym_assert] = ACTIONS(2820), - [anon_sym_defer] = ACTIONS(2820), - [anon_sym_goto] = ACTIONS(2820), - [anon_sym_break] = ACTIONS(2820), - [anon_sym_continue] = ACTIONS(2820), - [anon_sym_return] = ACTIONS(2820), - [anon_sym_DOLLARfor] = ACTIONS(2820), - [anon_sym_for] = ACTIONS(2820), - [anon_sym_POUND] = ACTIONS(2820), - [anon_sym_asm] = ACTIONS(2820), - [anon_sym_AT_LBRACK] = ACTIONS(2820), - [sym___double_quote] = ACTIONS(2820), - [sym___single_quote] = ACTIONS(2820), - [sym___c_double_quote] = ACTIONS(2820), - [sym___c_single_quote] = ACTIONS(2820), - [sym___r_double_quote] = ACTIONS(2820), - [sym___r_single_quote] = ACTIONS(2820), + [anon_sym_DOT] = ACTIONS(2812), + [anon_sym_as] = ACTIONS(2812), + [anon_sym_LBRACE] = ACTIONS(2812), + [anon_sym_COMMA] = ACTIONS(2812), + [anon_sym_const] = ACTIONS(2812), + [anon_sym_LPAREN] = ACTIONS(2812), + [anon_sym_EQ] = ACTIONS(2812), + [anon_sym___global] = ACTIONS(2812), + [anon_sym_type] = ACTIONS(2812), + [anon_sym_PIPE] = ACTIONS(2812), + [anon_sym_fn] = ACTIONS(2812), + [anon_sym_PLUS] = ACTIONS(2812), + [anon_sym_DASH] = ACTIONS(2812), + [anon_sym_STAR] = ACTIONS(2812), + [anon_sym_SLASH] = ACTIONS(2812), + [anon_sym_PERCENT] = ACTIONS(2812), + [anon_sym_LT] = ACTIONS(2812), + [anon_sym_GT] = ACTIONS(2812), + [anon_sym_EQ_EQ] = ACTIONS(2812), + [anon_sym_BANG_EQ] = ACTIONS(2812), + [anon_sym_LT_EQ] = ACTIONS(2812), + [anon_sym_GT_EQ] = ACTIONS(2812), + [anon_sym_LBRACK] = ACTIONS(2810), + [anon_sym_struct] = ACTIONS(2812), + [anon_sym_union] = ACTIONS(2812), + [anon_sym_pub] = ACTIONS(2812), + [anon_sym_mut] = ACTIONS(2812), + [anon_sym_enum] = ACTIONS(2812), + [anon_sym_interface] = ACTIONS(2812), + [anon_sym_PLUS_PLUS] = ACTIONS(2812), + [anon_sym_DASH_DASH] = ACTIONS(2812), + [anon_sym_QMARK] = ACTIONS(2812), + [anon_sym_BANG] = ACTIONS(2812), + [anon_sym_go] = ACTIONS(2812), + [anon_sym_spawn] = ACTIONS(2812), + [anon_sym_json_DOTdecode] = ACTIONS(2812), + [anon_sym_LBRACK2] = ACTIONS(2812), + [anon_sym_TILDE] = ACTIONS(2812), + [anon_sym_CARET] = ACTIONS(2812), + [anon_sym_AMP] = ACTIONS(2812), + [anon_sym_LT_DASH] = ACTIONS(2812), + [anon_sym_LT_LT] = ACTIONS(2812), + [anon_sym_GT_GT] = ACTIONS(2812), + [anon_sym_GT_GT_GT] = ACTIONS(2812), + [anon_sym_AMP_CARET] = ACTIONS(2812), + [anon_sym_AMP_AMP] = ACTIONS(2812), + [anon_sym_PIPE_PIPE] = ACTIONS(2812), + [anon_sym_or] = ACTIONS(2812), + [sym_none] = ACTIONS(2812), + [sym_true] = ACTIONS(2812), + [sym_false] = ACTIONS(2812), + [sym_nil] = ACTIONS(2812), + [anon_sym_QMARK_DOT] = ACTIONS(2812), + [anon_sym_POUND_LBRACK] = ACTIONS(2812), + [anon_sym_if] = ACTIONS(2812), + [anon_sym_DOLLARif] = ACTIONS(2812), + [anon_sym_is] = ACTIONS(2812), + [anon_sym_BANGis] = ACTIONS(2812), + [anon_sym_in] = ACTIONS(2812), + [anon_sym_BANGin] = ACTIONS(2812), + [anon_sym_match] = ACTIONS(2812), + [anon_sym_select] = ACTIONS(2812), + [anon_sym_STAR_EQ] = ACTIONS(2812), + [anon_sym_SLASH_EQ] = ACTIONS(2812), + [anon_sym_PERCENT_EQ] = ACTIONS(2812), + [anon_sym_LT_LT_EQ] = ACTIONS(2812), + [anon_sym_GT_GT_EQ] = ACTIONS(2812), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(2812), + [anon_sym_AMP_EQ] = ACTIONS(2812), + [anon_sym_AMP_CARET_EQ] = ACTIONS(2812), + [anon_sym_PLUS_EQ] = ACTIONS(2812), + [anon_sym_DASH_EQ] = ACTIONS(2812), + [anon_sym_PIPE_EQ] = ACTIONS(2812), + [anon_sym_CARET_EQ] = ACTIONS(2812), + [anon_sym_COLON_EQ] = ACTIONS(2812), + [anon_sym_lock] = ACTIONS(2812), + [anon_sym_rlock] = ACTIONS(2812), + [anon_sym_unsafe] = ACTIONS(2812), + [anon_sym_sql] = ACTIONS(2812), + [sym_int_literal] = ACTIONS(2812), + [sym_float_literal] = ACTIONS(2812), + [sym_rune_literal] = ACTIONS(2812), + [sym_pseudo_compile_time_identifier] = ACTIONS(2812), + [anon_sym_shared] = ACTIONS(2812), + [anon_sym_map_LBRACK] = ACTIONS(2812), + [anon_sym_chan] = ACTIONS(2812), + [anon_sym_thread] = ACTIONS(2812), + [anon_sym_atomic] = ACTIONS(2812), + [anon_sym_assert] = ACTIONS(2812), + [anon_sym_defer] = ACTIONS(2812), + [anon_sym_goto] = ACTIONS(2812), + [anon_sym_break] = ACTIONS(2812), + [anon_sym_continue] = ACTIONS(2812), + [anon_sym_return] = ACTIONS(2812), + [anon_sym_DOLLARfor] = ACTIONS(2812), + [anon_sym_for] = ACTIONS(2812), + [anon_sym_POUND] = ACTIONS(2812), + [anon_sym_asm] = ACTIONS(2812), + [anon_sym_AT_LBRACK] = ACTIONS(2812), + [sym___double_quote] = ACTIONS(2812), + [sym___single_quote] = ACTIONS(2812), + [sym___c_double_quote] = ACTIONS(2812), + [sym___c_single_quote] = ACTIONS(2812), + [sym___r_double_quote] = ACTIONS(2812), + [sym___r_single_quote] = ACTIONS(2812), }, [458] = { [sym_line_comment] = STATE(458), [sym_block_comment] = STATE(458), + [sym__expression] = STATE(2830), + [sym__expression_without_blocks] = STATE(2347), + [sym__expression_with_blocks] = STATE(2347), + [sym_inc_expression] = STATE(2379), + [sym_dec_expression] = STATE(2379), + [sym_or_block_expression] = STATE(2379), + [sym_option_propagation_expression] = STATE(2379), + [sym_result_propagation_expression] = STATE(2379), + [sym_anon_struct_value_expression] = STATE(2378), + [sym_go_expression] = STATE(2379), + [sym_spawn_expression] = STATE(2379), + [sym_parenthesized_expression] = STATE(2379), + [sym_call_expression] = STATE(2379), + [sym_type_initializer] = STATE(2378), + [sym_function_literal] = STATE(2379), + [sym_reference_expression] = STATE(2377), + [sym_type_reference_expression] = STATE(3460), + [sym_unary_expression] = STATE(2379), + [sym_receive_expression] = STATE(2379), + [sym_binary_expression] = STATE(2379), + [sym_as_type_cast_expression] = STATE(2379), + [sym__max_group] = STATE(2379), + [sym_literal] = STATE(2392), + [sym_map_init_expression] = STATE(2378), + [sym_array_creation] = STATE(2379), + [sym_fixed_array_creation] = STATE(2379), + [sym_selector_expression] = STATE(2379), + [sym_index_expression] = STATE(2379), + [sym_slice_expression] = STATE(2379), + [sym_if_expression] = STATE(2378), + [sym_compile_time_if_expression] = STATE(2378), + [sym_is_expression] = STATE(2925), + [sym_in_expression] = STATE(2379), + [sym_enum_fetch] = STATE(2379), + [sym_match_expression] = STATE(2378), + [sym_select_expression] = STATE(2378), + [sym_lock_expression] = STATE(2378), + [sym_unsafe_expression] = STATE(2378), + [sym_sql_expression] = STATE(2378), + [sym_c_string_literal] = STATE(2401), + [sym_raw_string_literal] = STATE(2401), + [sym_interpreted_string_literal] = STATE(2401), + [sym_mutability_modifiers] = STATE(939), + [sym_plain_type] = STATE(4160), + [sym__plain_type_without_special] = STATE(2360), + [sym_anon_struct_type] = STATE(2362), + [sym_multi_return_type] = STATE(2360), + [sym_result_type] = STATE(2360), + [sym_option_type] = STATE(2360), + [sym_qualified_type] = STATE(3460), + [sym_fixed_array_type] = STATE(2362), + [sym_array_type] = STATE(2362), + [sym_pointer_type] = STATE(2362), + [sym_wrong_pointer_type] = STATE(2362), + [sym_map_type] = STATE(2362), + [sym_channel_type] = STATE(2362), + [sym_shared_type] = STATE(2362), + [sym_thread_type] = STATE(2362), + [sym_atomic_type] = STATE(2362), + [sym_generic_type] = STATE(2362), + [sym_function_type] = STATE(2362), + [sym_identifier] = ACTIONS(2814), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(1430), + [anon_sym_LBRACE] = ACTIONS(1432), + [anon_sym_LPAREN] = ACTIONS(1434), + [anon_sym_fn] = ACTIONS(1436), + [anon_sym_PLUS] = ACTIONS(1438), + [anon_sym_DASH] = ACTIONS(1438), + [anon_sym_STAR] = ACTIONS(1440), + [anon_sym_struct] = ACTIONS(1442), + [anon_sym_mut] = ACTIONS(41), + [anon_sym_QMARK] = ACTIONS(47), + [anon_sym_BANG] = ACTIONS(1444), + [anon_sym_go] = ACTIONS(1446), + [anon_sym_spawn] = ACTIONS(1448), + [anon_sym_json_DOTdecode] = ACTIONS(1450), + [anon_sym_LBRACK2] = ACTIONS(1452), + [anon_sym_TILDE] = ACTIONS(1438), + [anon_sym_CARET] = ACTIONS(1438), + [anon_sym_AMP] = ACTIONS(1454), + [anon_sym_LT_DASH] = ACTIONS(1456), + [sym_none] = ACTIONS(1458), + [sym_true] = ACTIONS(1458), + [sym_false] = ACTIONS(1458), + [sym_nil] = ACTIONS(1458), + [anon_sym_if] = ACTIONS(1833), + [anon_sym_DOLLARif] = ACTIONS(1462), + [anon_sym_match] = ACTIONS(1464), + [anon_sym_select] = ACTIONS(1466), + [anon_sym_lock] = ACTIONS(1468), + [anon_sym_rlock] = ACTIONS(1468), + [anon_sym_unsafe] = ACTIONS(1839), + [anon_sym_sql] = ACTIONS(1472), + [sym_int_literal] = ACTIONS(1458), + [sym_float_literal] = ACTIONS(1474), + [sym_rune_literal] = ACTIONS(1474), + [sym_pseudo_compile_time_identifier] = ACTIONS(1476), + [anon_sym_static] = ACTIONS(2816), + [anon_sym_volatile] = ACTIONS(2818), + [anon_sym_shared] = ACTIONS(83), + [anon_sym_map_LBRACK] = ACTIONS(85), + [anon_sym_chan] = ACTIONS(87), + [anon_sym_thread] = ACTIONS(89), + [anon_sym_atomic] = ACTIONS(91), + [sym___double_quote] = ACTIONS(1480), + [sym___single_quote] = ACTIONS(1482), + [sym___c_double_quote] = ACTIONS(1484), + [sym___c_single_quote] = ACTIONS(1486), + [sym___r_double_quote] = ACTIONS(1488), + [sym___r_single_quote] = ACTIONS(1490), + }, + [459] = { + [sym_line_comment] = STATE(459), + [sym_block_comment] = STATE(459), + [sym__expression] = STATE(2558), + [sym__expression_without_blocks] = STATE(2347), + [sym__expression_with_blocks] = STATE(2347), + [sym_inc_expression] = STATE(2379), + [sym_dec_expression] = STATE(2379), + [sym_or_block_expression] = STATE(2379), + [sym_option_propagation_expression] = STATE(2379), + [sym_result_propagation_expression] = STATE(2379), + [sym_anon_struct_value_expression] = STATE(2378), + [sym_go_expression] = STATE(2379), + [sym_spawn_expression] = STATE(2379), + [sym_parenthesized_expression] = STATE(2379), + [sym_call_expression] = STATE(2379), + [sym_type_initializer] = STATE(2378), + [sym_function_literal] = STATE(2379), + [sym_reference_expression] = STATE(2377), + [sym_type_reference_expression] = STATE(3460), + [sym_unary_expression] = STATE(2379), + [sym_receive_expression] = STATE(2379), + [sym_binary_expression] = STATE(2379), + [sym_as_type_cast_expression] = STATE(2379), + [sym__max_group] = STATE(2379), + [sym_literal] = STATE(2392), + [sym_map_init_expression] = STATE(2378), + [sym_array_creation] = STATE(2379), + [sym_fixed_array_creation] = STATE(2379), + [sym_selector_expression] = STATE(2379), + [sym_index_expression] = STATE(2379), + [sym_slice_expression] = STATE(2379), + [sym_if_expression] = STATE(2378), + [sym_compile_time_if_expression] = STATE(2378), + [sym_is_expression] = STATE(2379), + [sym_in_expression] = STATE(2379), + [sym_enum_fetch] = STATE(2379), + [sym_match_expression] = STATE(2378), + [sym_select_expression] = STATE(2378), + [sym_lock_expression] = STATE(2378), + [sym_unsafe_expression] = STATE(2378), + [sym_sql_expression] = STATE(2378), + [sym_c_string_literal] = STATE(2401), + [sym_raw_string_literal] = STATE(2401), + [sym_interpreted_string_literal] = STATE(2401), + [sym_mutability_modifiers] = STATE(900), + [sym_mutable_expression] = STATE(3813), + [sym_expression_list] = STATE(4466), + [sym_plain_type] = STATE(4160), + [sym__plain_type_without_special] = STATE(2360), + [sym_anon_struct_type] = STATE(2362), + [sym_multi_return_type] = STATE(2360), + [sym_result_type] = STATE(2360), + [sym_option_type] = STATE(2360), + [sym_qualified_type] = STATE(3460), + [sym_fixed_array_type] = STATE(2362), + [sym_array_type] = STATE(2362), + [sym_pointer_type] = STATE(2362), + [sym_wrong_pointer_type] = STATE(2362), + [sym_map_type] = STATE(2362), + [sym_channel_type] = STATE(2362), + [sym_shared_type] = STATE(2362), + [sym_thread_type] = STATE(2362), + [sym_atomic_type] = STATE(2362), + [sym_generic_type] = STATE(2362), + [sym_function_type] = STATE(2362), + [sym_identifier] = ACTIONS(1815), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(1430), + [anon_sym_LBRACE] = ACTIONS(2820), + [anon_sym_LPAREN] = ACTIONS(1434), + [anon_sym_fn] = ACTIONS(1436), + [anon_sym_PLUS] = ACTIONS(1817), + [anon_sym_DASH] = ACTIONS(1817), + [anon_sym_STAR] = ACTIONS(1819), + [anon_sym_struct] = ACTIONS(1442), + [anon_sym_mut] = ACTIONS(41), + [anon_sym_QMARK] = ACTIONS(47), + [anon_sym_BANG] = ACTIONS(1821), + [anon_sym_go] = ACTIONS(1823), + [anon_sym_spawn] = ACTIONS(1825), + [anon_sym_json_DOTdecode] = ACTIONS(1450), + [anon_sym_LBRACK2] = ACTIONS(1827), + [anon_sym_TILDE] = ACTIONS(1817), + [anon_sym_CARET] = ACTIONS(1817), + [anon_sym_AMP] = ACTIONS(1829), + [anon_sym_LT_DASH] = ACTIONS(1831), + [sym_none] = ACTIONS(1458), + [sym_true] = ACTIONS(1458), + [sym_false] = ACTIONS(1458), + [sym_nil] = ACTIONS(1458), + [anon_sym_if] = ACTIONS(1833), + [anon_sym_DOLLARif] = ACTIONS(1462), + [anon_sym_match] = ACTIONS(1464), + [anon_sym_select] = ACTIONS(1835), + [anon_sym_lock] = ACTIONS(1837), + [anon_sym_rlock] = ACTIONS(1837), + [anon_sym_unsafe] = ACTIONS(1839), + [anon_sym_sql] = ACTIONS(1472), + [sym_int_literal] = ACTIONS(1458), + [sym_float_literal] = ACTIONS(1474), + [sym_rune_literal] = ACTIONS(1474), + [sym_pseudo_compile_time_identifier] = ACTIONS(1476), + [anon_sym_shared] = ACTIONS(83), + [anon_sym_map_LBRACK] = ACTIONS(85), + [anon_sym_chan] = ACTIONS(87), + [anon_sym_thread] = ACTIONS(89), + [anon_sym_atomic] = ACTIONS(91), + [sym___double_quote] = ACTIONS(1480), + [sym___single_quote] = ACTIONS(1482), + [sym___c_double_quote] = ACTIONS(1484), + [sym___c_single_quote] = ACTIONS(1486), + [sym___r_double_quote] = ACTIONS(1488), + [sym___r_single_quote] = ACTIONS(1490), + }, + [460] = { + [sym_line_comment] = STATE(460), + [sym_block_comment] = STATE(460), [ts_builtin_sym_end] = ACTIONS(2822), [sym_identifier] = ACTIONS(2824), [anon_sym_LF] = ACTIONS(2824), @@ -76044,9 +76294,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym___r_double_quote] = ACTIONS(2824), [sym___r_single_quote] = ACTIONS(2824), }, - [459] = { - [sym_line_comment] = STATE(459), - [sym_block_comment] = STATE(459), + [461] = { + [sym_line_comment] = STATE(461), + [sym_block_comment] = STATE(461), [ts_builtin_sym_end] = ACTIONS(2826), [sym_identifier] = ACTIONS(2828), [anon_sym_LF] = ACTIONS(2828), @@ -76160,9 +76410,125 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym___r_double_quote] = ACTIONS(2828), [sym___r_single_quote] = ACTIONS(2828), }, - [460] = { - [sym_line_comment] = STATE(460), - [sym_block_comment] = STATE(460), + [462] = { + [sym_line_comment] = STATE(462), + [sym_block_comment] = STATE(462), + [ts_builtin_sym_end] = ACTIONS(2473), + [sym_identifier] = ACTIONS(2475), + [anon_sym_LF] = ACTIONS(2475), + [anon_sym_CR] = ACTIONS(2475), + [anon_sym_CR_LF] = ACTIONS(2475), + [anon_sym_SLASH_SLASH] = ACTIONS(497), + [anon_sym_SLASH_STAR] = ACTIONS(499), + [anon_sym_DOT] = ACTIONS(2475), + [anon_sym_as] = ACTIONS(2475), + [anon_sym_LBRACE] = ACTIONS(2475), + [anon_sym_COMMA] = ACTIONS(2475), + [anon_sym_const] = ACTIONS(2475), + [anon_sym_LPAREN] = ACTIONS(2475), + [anon_sym_EQ] = ACTIONS(2475), + [anon_sym___global] = ACTIONS(2475), + [anon_sym_type] = ACTIONS(2475), + [anon_sym_PIPE] = ACTIONS(2475), + [anon_sym_fn] = ACTIONS(2475), + [anon_sym_PLUS] = ACTIONS(2475), + [anon_sym_DASH] = ACTIONS(2475), + [anon_sym_STAR] = ACTIONS(2475), + [anon_sym_SLASH] = ACTIONS(2475), + [anon_sym_PERCENT] = ACTIONS(2475), + [anon_sym_LT] = ACTIONS(2475), + [anon_sym_GT] = ACTIONS(2475), + [anon_sym_EQ_EQ] = ACTIONS(2475), + [anon_sym_BANG_EQ] = ACTIONS(2475), + [anon_sym_LT_EQ] = ACTIONS(2475), + [anon_sym_GT_EQ] = ACTIONS(2475), + [anon_sym_LBRACK] = ACTIONS(2473), + [anon_sym_struct] = ACTIONS(2475), + [anon_sym_union] = ACTIONS(2475), + [anon_sym_pub] = ACTIONS(2475), + [anon_sym_mut] = ACTIONS(2475), + [anon_sym_enum] = ACTIONS(2475), + [anon_sym_interface] = ACTIONS(2475), + [anon_sym_PLUS_PLUS] = ACTIONS(2475), + [anon_sym_DASH_DASH] = ACTIONS(2475), + [anon_sym_QMARK] = ACTIONS(2475), + [anon_sym_BANG] = ACTIONS(2475), + [anon_sym_go] = ACTIONS(2475), + [anon_sym_spawn] = ACTIONS(2475), + [anon_sym_json_DOTdecode] = ACTIONS(2475), + [anon_sym_LBRACK2] = ACTIONS(2475), + [anon_sym_TILDE] = ACTIONS(2475), + [anon_sym_CARET] = ACTIONS(2475), + [anon_sym_AMP] = ACTIONS(2475), + [anon_sym_LT_DASH] = ACTIONS(2475), + [anon_sym_LT_LT] = ACTIONS(2475), + [anon_sym_GT_GT] = ACTIONS(2475), + [anon_sym_GT_GT_GT] = ACTIONS(2475), + [anon_sym_AMP_CARET] = ACTIONS(2475), + [anon_sym_AMP_AMP] = ACTIONS(2475), + [anon_sym_PIPE_PIPE] = ACTIONS(2475), + [anon_sym_or] = ACTIONS(2475), + [sym_none] = ACTIONS(2475), + [sym_true] = ACTIONS(2475), + [sym_false] = ACTIONS(2475), + [sym_nil] = ACTIONS(2475), + [anon_sym_QMARK_DOT] = ACTIONS(2475), + [anon_sym_POUND_LBRACK] = ACTIONS(2475), + [anon_sym_if] = ACTIONS(2475), + [anon_sym_DOLLARif] = ACTIONS(2475), + [anon_sym_is] = ACTIONS(2475), + [anon_sym_BANGis] = ACTIONS(2475), + [anon_sym_in] = ACTIONS(2475), + [anon_sym_BANGin] = ACTIONS(2475), + [anon_sym_match] = ACTIONS(2475), + [anon_sym_select] = ACTIONS(2475), + [anon_sym_STAR_EQ] = ACTIONS(2475), + [anon_sym_SLASH_EQ] = ACTIONS(2475), + [anon_sym_PERCENT_EQ] = ACTIONS(2475), + [anon_sym_LT_LT_EQ] = ACTIONS(2475), + [anon_sym_GT_GT_EQ] = ACTIONS(2475), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(2475), + [anon_sym_AMP_EQ] = ACTIONS(2475), + [anon_sym_AMP_CARET_EQ] = ACTIONS(2475), + [anon_sym_PLUS_EQ] = ACTIONS(2475), + [anon_sym_DASH_EQ] = ACTIONS(2475), + [anon_sym_PIPE_EQ] = ACTIONS(2475), + [anon_sym_CARET_EQ] = ACTIONS(2475), + [anon_sym_COLON_EQ] = ACTIONS(2475), + [anon_sym_lock] = ACTIONS(2475), + [anon_sym_rlock] = ACTIONS(2475), + [anon_sym_unsafe] = ACTIONS(2475), + [anon_sym_sql] = ACTIONS(2475), + [sym_int_literal] = ACTIONS(2475), + [sym_float_literal] = ACTIONS(2475), + [sym_rune_literal] = ACTIONS(2475), + [sym_pseudo_compile_time_identifier] = ACTIONS(2475), + [anon_sym_shared] = ACTIONS(2475), + [anon_sym_map_LBRACK] = ACTIONS(2475), + [anon_sym_chan] = ACTIONS(2475), + [anon_sym_thread] = ACTIONS(2475), + [anon_sym_atomic] = ACTIONS(2475), + [anon_sym_assert] = ACTIONS(2475), + [anon_sym_defer] = ACTIONS(2475), + [anon_sym_goto] = ACTIONS(2475), + [anon_sym_break] = ACTIONS(2475), + [anon_sym_continue] = ACTIONS(2475), + [anon_sym_return] = ACTIONS(2475), + [anon_sym_DOLLARfor] = ACTIONS(2475), + [anon_sym_for] = ACTIONS(2475), + [anon_sym_POUND] = ACTIONS(2475), + [anon_sym_asm] = ACTIONS(2475), + [anon_sym_AT_LBRACK] = ACTIONS(2475), + [sym___double_quote] = ACTIONS(2475), + [sym___single_quote] = ACTIONS(2475), + [sym___c_double_quote] = ACTIONS(2475), + [sym___c_single_quote] = ACTIONS(2475), + [sym___r_double_quote] = ACTIONS(2475), + [sym___r_single_quote] = ACTIONS(2475), + }, + [463] = { + [sym_line_comment] = STATE(463), + [sym_block_comment] = STATE(463), [ts_builtin_sym_end] = ACTIONS(2830), [sym_identifier] = ACTIONS(2832), [anon_sym_LF] = ACTIONS(2832), @@ -76276,9 +76642,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym___r_double_quote] = ACTIONS(2832), [sym___r_single_quote] = ACTIONS(2832), }, - [461] = { - [sym_line_comment] = STATE(461), - [sym_block_comment] = STATE(461), + [464] = { + [sym_line_comment] = STATE(464), + [sym_block_comment] = STATE(464), [ts_builtin_sym_end] = ACTIONS(2834), [sym_identifier] = ACTIONS(2836), [anon_sym_LF] = ACTIONS(2836), @@ -76392,9 +76758,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym___r_double_quote] = ACTIONS(2836), [sym___r_single_quote] = ACTIONS(2836), }, - [462] = { - [sym_line_comment] = STATE(462), - [sym_block_comment] = STATE(462), + [465] = { + [sym_line_comment] = STATE(465), + [sym_block_comment] = STATE(465), [ts_builtin_sym_end] = ACTIONS(2838), [sym_identifier] = ACTIONS(2840), [anon_sym_LF] = ACTIONS(2840), @@ -76508,241 +76874,125 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym___r_double_quote] = ACTIONS(2840), [sym___r_single_quote] = ACTIONS(2840), }, - [463] = { - [sym_line_comment] = STATE(463), - [sym_block_comment] = STATE(463), - [sym__expression] = STATE(1268), - [sym__expression_without_blocks] = STATE(1312), - [sym__expression_with_blocks] = STATE(1312), - [sym_inc_expression] = STATE(1313), - [sym_dec_expression] = STATE(1313), - [sym_or_block_expression] = STATE(1313), - [sym_option_propagation_expression] = STATE(1313), - [sym_result_propagation_expression] = STATE(1313), - [sym_anon_struct_value_expression] = STATE(1314), - [sym_go_expression] = STATE(1313), - [sym_spawn_expression] = STATE(1313), - [sym_parenthesized_expression] = STATE(1313), - [sym_call_expression] = STATE(1313), - [sym_type_initializer] = STATE(1314), - [sym_function_literal] = STATE(1313), - [sym_reference_expression] = STATE(1334), - [sym_type_reference_expression] = STATE(3541), - [sym_unary_expression] = STATE(1313), - [sym_receive_expression] = STATE(1313), - [sym_binary_expression] = STATE(1313), - [sym_as_type_cast_expression] = STATE(1313), - [sym__max_group] = STATE(1313), - [sym_literal] = STATE(1308), - [sym_map_init_expression] = STATE(1314), - [sym_array_creation] = STATE(1313), - [sym_fixed_array_creation] = STATE(1313), - [sym_selector_expression] = STATE(1313), - [sym_index_expression] = STATE(1313), - [sym_slice_expression] = STATE(1313), - [sym_if_expression] = STATE(1314), - [sym_compile_time_if_expression] = STATE(1314), - [sym_is_expression] = STATE(1313), - [sym_in_expression] = STATE(1313), - [sym_enum_fetch] = STATE(1313), - [sym_match_expression] = STATE(1314), - [sym_select_expression] = STATE(1314), - [sym_lock_expression] = STATE(1314), - [sym_unsafe_expression] = STATE(1314), - [sym_sql_expression] = STATE(1314), - [sym_c_string_literal] = STATE(1286), - [sym_raw_string_literal] = STATE(1286), - [sym_interpreted_string_literal] = STATE(1286), - [sym_mutability_modifiers] = STATE(699), - [sym_plain_type] = STATE(4192), - [sym__plain_type_without_special] = STATE(2302), - [sym_anon_struct_type] = STATE(2303), - [sym_multi_return_type] = STATE(2302), - [sym_result_type] = STATE(2302), - [sym_option_type] = STATE(2302), - [sym_qualified_type] = STATE(3541), - [sym_fixed_array_type] = STATE(2303), - [sym_array_type] = STATE(2303), - [sym_pointer_type] = STATE(2303), - [sym_wrong_pointer_type] = STATE(2303), - [sym_map_type] = STATE(2303), - [sym_channel_type] = STATE(2303), - [sym_shared_type] = STATE(2303), - [sym_thread_type] = STATE(2303), - [sym_atomic_type] = STATE(2303), - [sym_generic_type] = STATE(2303), - [sym_function_type] = STATE(2303), - [aux_sym__array_repeat1] = STATE(404), - [sym_identifier] = ACTIONS(1354), - [anon_sym_SLASH_SLASH] = ACTIONS(3), - [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1356), - [anon_sym_LBRACE] = ACTIONS(1358), - [anon_sym_LPAREN] = ACTIONS(1360), - [anon_sym_fn] = ACTIONS(1362), - [anon_sym_PLUS] = ACTIONS(1364), - [anon_sym_DASH] = ACTIONS(1364), - [anon_sym_STAR] = ACTIONS(1366), - [anon_sym_RBRACK] = ACTIONS(2842), - [anon_sym_struct] = ACTIONS(1370), - [anon_sym_mut] = ACTIONS(41), - [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(1372), - [anon_sym_go] = ACTIONS(1374), - [anon_sym_spawn] = ACTIONS(1376), - [anon_sym_json_DOTdecode] = ACTIONS(1378), - [anon_sym_LBRACK2] = ACTIONS(1380), - [anon_sym_TILDE] = ACTIONS(1364), - [anon_sym_CARET] = ACTIONS(1364), - [anon_sym_AMP] = ACTIONS(1382), - [anon_sym_LT_DASH] = ACTIONS(1384), - [sym_none] = ACTIONS(1386), - [sym_true] = ACTIONS(1386), - [sym_false] = ACTIONS(1386), - [sym_nil] = ACTIONS(1386), - [anon_sym_if] = ACTIONS(1877), - [anon_sym_DOLLARif] = ACTIONS(1390), - [anon_sym_match] = ACTIONS(1392), - [anon_sym_select] = ACTIONS(1394), - [anon_sym_lock] = ACTIONS(1396), - [anon_sym_rlock] = ACTIONS(1396), - [anon_sym_unsafe] = ACTIONS(1883), - [anon_sym_sql] = ACTIONS(1400), - [sym_int_literal] = ACTIONS(1386), - [sym_float_literal] = ACTIONS(1404), - [sym_rune_literal] = ACTIONS(1404), - [sym_pseudo_compile_time_identifier] = ACTIONS(1406), - [anon_sym_shared] = ACTIONS(83), - [anon_sym_map_LBRACK] = ACTIONS(85), - [anon_sym_chan] = ACTIONS(87), - [anon_sym_thread] = ACTIONS(89), - [anon_sym_atomic] = ACTIONS(91), - [sym___double_quote] = ACTIONS(1408), - [sym___single_quote] = ACTIONS(1410), - [sym___c_double_quote] = ACTIONS(1412), - [sym___c_single_quote] = ACTIONS(1414), - [sym___r_double_quote] = ACTIONS(1416), - [sym___r_single_quote] = ACTIONS(1418), - }, - [464] = { - [sym_line_comment] = STATE(464), - [sym_block_comment] = STATE(464), - [sym__expression] = STATE(2263), - [sym__expression_without_blocks] = STATE(2300), - [sym__expression_with_blocks] = STATE(2300), - [sym_inc_expression] = STATE(2307), - [sym_dec_expression] = STATE(2307), - [sym_or_block_expression] = STATE(2307), - [sym_option_propagation_expression] = STATE(2307), - [sym_result_propagation_expression] = STATE(2307), - [sym_anon_struct_value_expression] = STATE(2380), - [sym_go_expression] = STATE(2307), - [sym_spawn_expression] = STATE(2307), - [sym_parenthesized_expression] = STATE(2307), - [sym_call_expression] = STATE(2307), - [sym_type_initializer] = STATE(2380), - [sym_function_literal] = STATE(2307), - [sym_reference_expression] = STATE(2311), - [sym_type_reference_expression] = STATE(3541), - [sym_unary_expression] = STATE(2307), - [sym_receive_expression] = STATE(2307), - [sym_binary_expression] = STATE(2307), - [sym_as_type_cast_expression] = STATE(2307), - [sym__max_group] = STATE(2307), - [sym_literal] = STATE(2292), - [sym_map_init_expression] = STATE(2380), - [sym_array_creation] = STATE(2307), - [sym_fixed_array_creation] = STATE(2307), - [sym_selector_expression] = STATE(2307), - [sym_index_expression] = STATE(2307), - [sym_slice_expression] = STATE(2307), - [sym_if_expression] = STATE(2380), - [sym_compile_time_if_expression] = STATE(2380), - [sym_is_expression] = STATE(2307), - [sym_in_expression] = STATE(2307), - [sym_enum_fetch] = STATE(2307), - [sym_match_expression] = STATE(2380), - [sym_select_expression] = STATE(2380), - [sym_lock_expression] = STATE(2380), - [sym_unsafe_expression] = STATE(2380), - [sym_sql_expression] = STATE(2380), - [sym_c_string_literal] = STATE(2308), - [sym_raw_string_literal] = STATE(2308), - [sym_interpreted_string_literal] = STATE(2308), - [sym_mutability_modifiers] = STATE(939), - [sym_plain_type] = STATE(3565), - [sym__plain_type_without_special] = STATE(2302), - [sym_anon_struct_type] = STATE(2303), - [sym_multi_return_type] = STATE(2302), - [sym_result_type] = STATE(2302), - [sym_option_type] = STATE(2302), - [sym_qualified_type] = STATE(3541), - [sym_fixed_array_type] = STATE(2303), - [sym_array_type] = STATE(2303), - [sym_pointer_type] = STATE(2303), - [sym_wrong_pointer_type] = STATE(2303), - [sym_map_type] = STATE(2303), - [sym_channel_type] = STATE(2303), - [sym_shared_type] = STATE(2303), - [sym_thread_type] = STATE(2303), - [sym_atomic_type] = STATE(2303), - [sym_generic_type] = STATE(2303), - [sym_function_type] = STATE(2303), - [sym_identifier] = ACTIONS(2135), + [466] = { + [sym_line_comment] = STATE(466), + [sym_block_comment] = STATE(466), + [sym__expression] = STATE(2558), + [sym__expression_without_blocks] = STATE(2347), + [sym__expression_with_blocks] = STATE(2347), + [sym_inc_expression] = STATE(2379), + [sym_dec_expression] = STATE(2379), + [sym_or_block_expression] = STATE(2379), + [sym_option_propagation_expression] = STATE(2379), + [sym_result_propagation_expression] = STATE(2379), + [sym_anon_struct_value_expression] = STATE(2378), + [sym_go_expression] = STATE(2379), + [sym_spawn_expression] = STATE(2379), + [sym_parenthesized_expression] = STATE(2379), + [sym_call_expression] = STATE(2379), + [sym_type_initializer] = STATE(2378), + [sym_function_literal] = STATE(2379), + [sym_reference_expression] = STATE(2377), + [sym_type_reference_expression] = STATE(3460), + [sym_unary_expression] = STATE(2379), + [sym_receive_expression] = STATE(2379), + [sym_binary_expression] = STATE(2379), + [sym_as_type_cast_expression] = STATE(2379), + [sym__max_group] = STATE(2379), + [sym_literal] = STATE(2392), + [sym_map_init_expression] = STATE(2378), + [sym_array_creation] = STATE(2379), + [sym_fixed_array_creation] = STATE(2379), + [sym_selector_expression] = STATE(2379), + [sym_index_expression] = STATE(2379), + [sym_slice_expression] = STATE(2379), + [sym_if_expression] = STATE(2378), + [sym_compile_time_if_expression] = STATE(2378), + [sym_is_expression] = STATE(2379), + [sym_in_expression] = STATE(2379), + [sym_enum_fetch] = STATE(2379), + [sym_match_expression] = STATE(2378), + [sym_select_expression] = STATE(2378), + [sym_lock_expression] = STATE(2378), + [sym_unsafe_expression] = STATE(2378), + [sym_sql_expression] = STATE(2378), + [sym_c_string_literal] = STATE(2401), + [sym_raw_string_literal] = STATE(2401), + [sym_interpreted_string_literal] = STATE(2401), + [sym_mutability_modifiers] = STATE(900), + [sym_mutable_expression] = STATE(3813), + [sym_expression_list] = STATE(4395), + [sym_plain_type] = STATE(4160), + [sym__plain_type_without_special] = STATE(2360), + [sym_anon_struct_type] = STATE(2362), + [sym_multi_return_type] = STATE(2360), + [sym_result_type] = STATE(2360), + [sym_option_type] = STATE(2360), + [sym_qualified_type] = STATE(3460), + [sym_fixed_array_type] = STATE(2362), + [sym_array_type] = STATE(2362), + [sym_pointer_type] = STATE(2362), + [sym_wrong_pointer_type] = STATE(2362), + [sym_map_type] = STATE(2362), + [sym_channel_type] = STATE(2362), + [sym_shared_type] = STATE(2362), + [sym_thread_type] = STATE(2362), + [sym_atomic_type] = STATE(2362), + [sym_generic_type] = STATE(2362), + [sym_function_type] = STATE(2362), + [sym_identifier] = ACTIONS(1815), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1428), - [anon_sym_LBRACE] = ACTIONS(1430), - [anon_sym_COMMA] = ACTIONS(563), - [anon_sym_LPAREN] = ACTIONS(1432), - [anon_sym_fn] = ACTIONS(1434), - [anon_sym_PLUS] = ACTIONS(1436), - [anon_sym_DASH] = ACTIONS(1436), - [anon_sym_STAR] = ACTIONS(2137), - [anon_sym_RBRACK] = ACTIONS(563), - [anon_sym_struct] = ACTIONS(1440), + [anon_sym_DOT] = ACTIONS(1430), + [anon_sym_LBRACE] = ACTIONS(2842), + [anon_sym_LPAREN] = ACTIONS(1434), + [anon_sym_fn] = ACTIONS(1436), + [anon_sym_PLUS] = ACTIONS(1817), + [anon_sym_DASH] = ACTIONS(1817), + [anon_sym_STAR] = ACTIONS(1819), + [anon_sym_struct] = ACTIONS(1442), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(2139), - [anon_sym_go] = ACTIONS(1444), - [anon_sym_spawn] = ACTIONS(1446), - [anon_sym_json_DOTdecode] = ACTIONS(1448), - [anon_sym_LBRACK2] = ACTIONS(1450), - [anon_sym_TILDE] = ACTIONS(1436), - [anon_sym_CARET] = ACTIONS(1436), - [anon_sym_AMP] = ACTIONS(2141), - [anon_sym_LT_DASH] = ACTIONS(1454), - [sym_none] = ACTIONS(1456), - [sym_true] = ACTIONS(1456), - [sym_false] = ACTIONS(1456), - [sym_nil] = ACTIONS(1456), - [anon_sym_if] = ACTIONS(1827), - [anon_sym_DOLLARif] = ACTIONS(1460), - [anon_sym_match] = ACTIONS(1462), - [anon_sym_select] = ACTIONS(1464), - [anon_sym_lock] = ACTIONS(1466), - [anon_sym_rlock] = ACTIONS(1466), - [anon_sym_unsafe] = ACTIONS(1833), - [anon_sym_sql] = ACTIONS(1470), - [sym_int_literal] = ACTIONS(1456), - [sym_float_literal] = ACTIONS(1472), - [sym_rune_literal] = ACTIONS(1472), - [sym_pseudo_compile_time_identifier] = ACTIONS(1474), + [anon_sym_BANG] = ACTIONS(1821), + [anon_sym_go] = ACTIONS(1823), + [anon_sym_spawn] = ACTIONS(1825), + [anon_sym_json_DOTdecode] = ACTIONS(1450), + [anon_sym_LBRACK2] = ACTIONS(1827), + [anon_sym_TILDE] = ACTIONS(1817), + [anon_sym_CARET] = ACTIONS(1817), + [anon_sym_AMP] = ACTIONS(1829), + [anon_sym_LT_DASH] = ACTIONS(1831), + [sym_none] = ACTIONS(1458), + [sym_true] = ACTIONS(1458), + [sym_false] = ACTIONS(1458), + [sym_nil] = ACTIONS(1458), + [anon_sym_if] = ACTIONS(1833), + [anon_sym_DOLLARif] = ACTIONS(1462), + [anon_sym_match] = ACTIONS(1464), + [anon_sym_select] = ACTIONS(1835), + [anon_sym_lock] = ACTIONS(1837), + [anon_sym_rlock] = ACTIONS(1837), + [anon_sym_unsafe] = ACTIONS(1839), + [anon_sym_sql] = ACTIONS(1472), + [sym_int_literal] = ACTIONS(1458), + [sym_float_literal] = ACTIONS(1474), + [sym_rune_literal] = ACTIONS(1474), + [sym_pseudo_compile_time_identifier] = ACTIONS(1476), [anon_sym_shared] = ACTIONS(83), [anon_sym_map_LBRACK] = ACTIONS(85), [anon_sym_chan] = ACTIONS(87), [anon_sym_thread] = ACTIONS(89), [anon_sym_atomic] = ACTIONS(91), - [sym___double_quote] = ACTIONS(1478), - [sym___single_quote] = ACTIONS(1480), - [sym___c_double_quote] = ACTIONS(1482), - [sym___c_single_quote] = ACTIONS(1484), - [sym___r_double_quote] = ACTIONS(1486), - [sym___r_single_quote] = ACTIONS(1488), + [sym___double_quote] = ACTIONS(1480), + [sym___single_quote] = ACTIONS(1482), + [sym___c_double_quote] = ACTIONS(1484), + [sym___c_single_quote] = ACTIONS(1486), + [sym___r_double_quote] = ACTIONS(1488), + [sym___r_single_quote] = ACTIONS(1490), }, - [465] = { - [sym_line_comment] = STATE(465), - [sym_block_comment] = STATE(465), + [467] = { + [sym_line_comment] = STATE(467), + [sym_block_comment] = STATE(467), [ts_builtin_sym_end] = ACTIONS(2844), [sym_identifier] = ACTIONS(2846), [anon_sym_LF] = ACTIONS(2846), @@ -76856,9 +77106,125 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym___r_double_quote] = ACTIONS(2846), [sym___r_single_quote] = ACTIONS(2846), }, - [466] = { - [sym_line_comment] = STATE(466), - [sym_block_comment] = STATE(466), + [468] = { + [sym_line_comment] = STATE(468), + [sym_block_comment] = STATE(468), + [sym__expression] = STATE(2602), + [sym__expression_without_blocks] = STATE(2347), + [sym__expression_with_blocks] = STATE(2347), + [sym_inc_expression] = STATE(2379), + [sym_dec_expression] = STATE(2379), + [sym_or_block_expression] = STATE(2379), + [sym_option_propagation_expression] = STATE(2379), + [sym_result_propagation_expression] = STATE(2379), + [sym_anon_struct_value_expression] = STATE(2378), + [sym_go_expression] = STATE(2379), + [sym_spawn_expression] = STATE(2379), + [sym_parenthesized_expression] = STATE(2379), + [sym_call_expression] = STATE(2379), + [sym_type_initializer] = STATE(2378), + [sym_function_literal] = STATE(2379), + [sym_reference_expression] = STATE(2377), + [sym_type_reference_expression] = STATE(3460), + [sym_unary_expression] = STATE(2379), + [sym_receive_expression] = STATE(2379), + [sym_binary_expression] = STATE(2379), + [sym_as_type_cast_expression] = STATE(2379), + [sym__max_group] = STATE(2379), + [sym_literal] = STATE(2392), + [sym_map_init_expression] = STATE(2378), + [sym_array_creation] = STATE(2379), + [sym_fixed_array_creation] = STATE(2379), + [sym_selector_expression] = STATE(2379), + [sym_index_expression] = STATE(2379), + [sym_slice_expression] = STATE(2379), + [sym_if_expression] = STATE(2378), + [sym_compile_time_if_expression] = STATE(2378), + [sym_is_expression] = STATE(2379), + [sym_in_expression] = STATE(2379), + [sym_enum_fetch] = STATE(2379), + [sym_match_expression] = STATE(2378), + [sym_select_expression] = STATE(2378), + [sym_lock_expression] = STATE(2378), + [sym_unsafe_expression] = STATE(2378), + [sym_sql_expression] = STATE(2378), + [sym_c_string_literal] = STATE(2401), + [sym_raw_string_literal] = STATE(2401), + [sym_interpreted_string_literal] = STATE(2401), + [sym_mutability_modifiers] = STATE(939), + [sym_plain_type] = STATE(3569), + [sym__plain_type_without_special] = STATE(2360), + [sym_anon_struct_type] = STATE(2362), + [sym_multi_return_type] = STATE(2360), + [sym_result_type] = STATE(2360), + [sym_option_type] = STATE(2360), + [sym_qualified_type] = STATE(3460), + [sym_fixed_array_type] = STATE(2362), + [sym_array_type] = STATE(2362), + [sym_pointer_type] = STATE(2362), + [sym_wrong_pointer_type] = STATE(2362), + [sym_map_type] = STATE(2362), + [sym_channel_type] = STATE(2362), + [sym_shared_type] = STATE(2362), + [sym_thread_type] = STATE(2362), + [sym_atomic_type] = STATE(2362), + [sym_generic_type] = STATE(2362), + [sym_function_type] = STATE(2362), + [sym_range] = STATE(4542), + [sym_identifier] = ACTIONS(2127), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(1430), + [anon_sym_LBRACE] = ACTIONS(1432), + [anon_sym_LPAREN] = ACTIONS(1434), + [anon_sym_fn] = ACTIONS(1436), + [anon_sym_PLUS] = ACTIONS(1438), + [anon_sym_DASH] = ACTIONS(1438), + [anon_sym_STAR] = ACTIONS(2129), + [anon_sym_struct] = ACTIONS(1442), + [anon_sym_mut] = ACTIONS(41), + [anon_sym_QMARK] = ACTIONS(47), + [anon_sym_BANG] = ACTIONS(2131), + [anon_sym_go] = ACTIONS(1446), + [anon_sym_spawn] = ACTIONS(1448), + [anon_sym_json_DOTdecode] = ACTIONS(1450), + [anon_sym_LBRACK2] = ACTIONS(1452), + [anon_sym_TILDE] = ACTIONS(1438), + [anon_sym_CARET] = ACTIONS(1438), + [anon_sym_AMP] = ACTIONS(2133), + [anon_sym_LT_DASH] = ACTIONS(1456), + [sym_none] = ACTIONS(1458), + [sym_true] = ACTIONS(1458), + [sym_false] = ACTIONS(1458), + [sym_nil] = ACTIONS(1458), + [anon_sym_if] = ACTIONS(1833), + [anon_sym_DOLLARif] = ACTIONS(1462), + [anon_sym_match] = ACTIONS(1464), + [anon_sym_select] = ACTIONS(1466), + [anon_sym_lock] = ACTIONS(1468), + [anon_sym_rlock] = ACTIONS(1468), + [anon_sym_unsafe] = ACTIONS(1839), + [anon_sym_sql] = ACTIONS(1472), + [sym_int_literal] = ACTIONS(1458), + [sym_float_literal] = ACTIONS(1474), + [sym_rune_literal] = ACTIONS(1474), + [sym_pseudo_compile_time_identifier] = ACTIONS(1476), + [anon_sym_shared] = ACTIONS(83), + [anon_sym_map_LBRACK] = ACTIONS(85), + [anon_sym_chan] = ACTIONS(87), + [anon_sym_thread] = ACTIONS(89), + [anon_sym_atomic] = ACTIONS(91), + [anon_sym_DOT_DOT] = ACTIONS(1478), + [sym___double_quote] = ACTIONS(1480), + [sym___single_quote] = ACTIONS(1482), + [sym___c_double_quote] = ACTIONS(1484), + [sym___c_single_quote] = ACTIONS(1486), + [sym___r_double_quote] = ACTIONS(1488), + [sym___r_single_quote] = ACTIONS(1490), + }, + [469] = { + [sym_line_comment] = STATE(469), + [sym_block_comment] = STATE(469), [ts_builtin_sym_end] = ACTIONS(2848), [sym_identifier] = ACTIONS(2850), [anon_sym_LF] = ACTIONS(2850), @@ -76972,3257 +77338,3257 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym___r_double_quote] = ACTIONS(2850), [sym___r_single_quote] = ACTIONS(2850), }, - [467] = { - [sym_line_comment] = STATE(467), - [sym_block_comment] = STATE(467), - [sym__expression] = STATE(2455), - [sym__expression_without_blocks] = STATE(2300), - [sym__expression_with_blocks] = STATE(2300), - [sym_inc_expression] = STATE(2307), - [sym_dec_expression] = STATE(2307), - [sym_or_block_expression] = STATE(2307), - [sym_option_propagation_expression] = STATE(2307), - [sym_result_propagation_expression] = STATE(2307), - [sym_anon_struct_value_expression] = STATE(2380), - [sym_go_expression] = STATE(2307), - [sym_spawn_expression] = STATE(2307), - [sym_parenthesized_expression] = STATE(2307), - [sym_call_expression] = STATE(2307), - [sym_type_initializer] = STATE(2380), - [sym_function_literal] = STATE(2307), - [sym_reference_expression] = STATE(2311), - [sym_type_reference_expression] = STATE(3541), - [sym_unary_expression] = STATE(2307), - [sym_receive_expression] = STATE(2307), - [sym_binary_expression] = STATE(2307), - [sym_as_type_cast_expression] = STATE(2307), - [sym__max_group] = STATE(2307), - [sym_literal] = STATE(2292), - [sym_map_init_expression] = STATE(2380), - [sym_array_creation] = STATE(2307), - [sym_fixed_array_creation] = STATE(2307), - [sym_selector_expression] = STATE(2307), - [sym_index_expression] = STATE(2307), - [sym_slice_expression] = STATE(2307), - [sym_if_expression] = STATE(2380), - [sym_compile_time_if_expression] = STATE(2380), - [sym_is_expression] = STATE(2307), - [sym_in_expression] = STATE(2307), - [sym_enum_fetch] = STATE(2307), - [sym_match_expression] = STATE(2380), - [sym_select_expression] = STATE(2380), - [sym_lock_expression] = STATE(2380), - [sym_unsafe_expression] = STATE(2380), - [sym_sql_expression] = STATE(2380), - [sym_c_string_literal] = STATE(2308), - [sym_raw_string_literal] = STATE(2308), - [sym_interpreted_string_literal] = STATE(2308), - [sym_mutability_modifiers] = STATE(824), - [sym_mutable_expression] = STATE(3922), - [sym_expression_list] = STATE(4378), - [sym_plain_type] = STATE(4297), - [sym__plain_type_without_special] = STATE(2302), - [sym_anon_struct_type] = STATE(2303), - [sym_multi_return_type] = STATE(2302), - [sym_result_type] = STATE(2302), - [sym_option_type] = STATE(2302), - [sym_qualified_type] = STATE(3541), - [sym_fixed_array_type] = STATE(2303), - [sym_array_type] = STATE(2303), - [sym_pointer_type] = STATE(2303), - [sym_wrong_pointer_type] = STATE(2303), - [sym_map_type] = STATE(2303), - [sym_channel_type] = STATE(2303), - [sym_shared_type] = STATE(2303), - [sym_thread_type] = STATE(2303), - [sym_atomic_type] = STATE(2303), - [sym_generic_type] = STATE(2303), - [sym_function_type] = STATE(2303), - [sym_identifier] = ACTIONS(1807), - [anon_sym_SLASH_SLASH] = ACTIONS(3), - [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1428), - [anon_sym_LBRACE] = ACTIONS(2852), - [anon_sym_LPAREN] = ACTIONS(1432), - [anon_sym_fn] = ACTIONS(1434), - [anon_sym_PLUS] = ACTIONS(1811), - [anon_sym_DASH] = ACTIONS(1811), - [anon_sym_STAR] = ACTIONS(1813), - [anon_sym_struct] = ACTIONS(1440), - [anon_sym_mut] = ACTIONS(41), - [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(1815), - [anon_sym_go] = ACTIONS(1817), - [anon_sym_spawn] = ACTIONS(1819), - [anon_sym_json_DOTdecode] = ACTIONS(1448), - [anon_sym_LBRACK2] = ACTIONS(1821), - [anon_sym_TILDE] = ACTIONS(1811), - [anon_sym_CARET] = ACTIONS(1811), - [anon_sym_AMP] = ACTIONS(1823), - [anon_sym_LT_DASH] = ACTIONS(1825), - [sym_none] = ACTIONS(1456), - [sym_true] = ACTIONS(1456), - [sym_false] = ACTIONS(1456), - [sym_nil] = ACTIONS(1456), - [anon_sym_if] = ACTIONS(1827), - [anon_sym_DOLLARif] = ACTIONS(1460), - [anon_sym_match] = ACTIONS(1462), - [anon_sym_select] = ACTIONS(1829), - [anon_sym_lock] = ACTIONS(1831), - [anon_sym_rlock] = ACTIONS(1831), - [anon_sym_unsafe] = ACTIONS(1833), - [anon_sym_sql] = ACTIONS(1470), - [sym_int_literal] = ACTIONS(1456), - [sym_float_literal] = ACTIONS(1472), - [sym_rune_literal] = ACTIONS(1472), - [sym_pseudo_compile_time_identifier] = ACTIONS(1474), - [anon_sym_shared] = ACTIONS(83), - [anon_sym_map_LBRACK] = ACTIONS(85), - [anon_sym_chan] = ACTIONS(87), - [anon_sym_thread] = ACTIONS(89), - [anon_sym_atomic] = ACTIONS(91), - [sym___double_quote] = ACTIONS(1478), - [sym___single_quote] = ACTIONS(1480), - [sym___c_double_quote] = ACTIONS(1482), - [sym___c_single_quote] = ACTIONS(1484), - [sym___r_double_quote] = ACTIONS(1486), - [sym___r_single_quote] = ACTIONS(1488), - }, - [468] = { - [sym_line_comment] = STATE(468), - [sym_block_comment] = STATE(468), - [ts_builtin_sym_end] = ACTIONS(2854), - [sym_identifier] = ACTIONS(2856), - [anon_sym_LF] = ACTIONS(2856), - [anon_sym_CR] = ACTIONS(2856), - [anon_sym_CR_LF] = ACTIONS(2856), - [anon_sym_SLASH_SLASH] = ACTIONS(497), - [anon_sym_SLASH_STAR] = ACTIONS(499), - [anon_sym_DOT] = ACTIONS(2856), - [anon_sym_as] = ACTIONS(2856), - [anon_sym_LBRACE] = ACTIONS(2856), - [anon_sym_COMMA] = ACTIONS(2856), - [anon_sym_const] = ACTIONS(2856), - [anon_sym_LPAREN] = ACTIONS(2856), - [anon_sym_EQ] = ACTIONS(2856), - [anon_sym___global] = ACTIONS(2856), - [anon_sym_type] = ACTIONS(2856), - [anon_sym_PIPE] = ACTIONS(2856), - [anon_sym_fn] = ACTIONS(2856), - [anon_sym_PLUS] = ACTIONS(2856), - [anon_sym_DASH] = ACTIONS(2856), - [anon_sym_STAR] = ACTIONS(2856), - [anon_sym_SLASH] = ACTIONS(2856), - [anon_sym_PERCENT] = ACTIONS(2856), - [anon_sym_LT] = ACTIONS(2856), - [anon_sym_GT] = ACTIONS(2856), - [anon_sym_EQ_EQ] = ACTIONS(2856), - [anon_sym_BANG_EQ] = ACTIONS(2856), - [anon_sym_LT_EQ] = ACTIONS(2856), - [anon_sym_GT_EQ] = ACTIONS(2856), - [anon_sym_LBRACK] = ACTIONS(2854), - [anon_sym_struct] = ACTIONS(2856), - [anon_sym_union] = ACTIONS(2856), - [anon_sym_pub] = ACTIONS(2856), - [anon_sym_mut] = ACTIONS(2856), - [anon_sym_enum] = ACTIONS(2856), - [anon_sym_interface] = ACTIONS(2856), - [anon_sym_PLUS_PLUS] = ACTIONS(2856), - [anon_sym_DASH_DASH] = ACTIONS(2856), - [anon_sym_QMARK] = ACTIONS(2856), - [anon_sym_BANG] = ACTIONS(2856), - [anon_sym_go] = ACTIONS(2856), - [anon_sym_spawn] = ACTIONS(2856), - [anon_sym_json_DOTdecode] = ACTIONS(2856), - [anon_sym_LBRACK2] = ACTIONS(2856), - [anon_sym_TILDE] = ACTIONS(2856), - [anon_sym_CARET] = ACTIONS(2856), - [anon_sym_AMP] = ACTIONS(2856), - [anon_sym_LT_DASH] = ACTIONS(2856), - [anon_sym_LT_LT] = ACTIONS(2856), - [anon_sym_GT_GT] = ACTIONS(2856), - [anon_sym_GT_GT_GT] = ACTIONS(2856), - [anon_sym_AMP_CARET] = ACTIONS(2856), - [anon_sym_AMP_AMP] = ACTIONS(2856), - [anon_sym_PIPE_PIPE] = ACTIONS(2856), - [anon_sym_or] = ACTIONS(2856), - [sym_none] = ACTIONS(2856), - [sym_true] = ACTIONS(2856), - [sym_false] = ACTIONS(2856), - [sym_nil] = ACTIONS(2856), - [anon_sym_QMARK_DOT] = ACTIONS(2856), - [anon_sym_POUND_LBRACK] = ACTIONS(2856), - [anon_sym_if] = ACTIONS(2856), - [anon_sym_DOLLARif] = ACTIONS(2856), - [anon_sym_is] = ACTIONS(2856), - [anon_sym_BANGis] = ACTIONS(2856), - [anon_sym_in] = ACTIONS(2856), - [anon_sym_BANGin] = ACTIONS(2856), - [anon_sym_match] = ACTIONS(2856), - [anon_sym_select] = ACTIONS(2856), - [anon_sym_STAR_EQ] = ACTIONS(2856), - [anon_sym_SLASH_EQ] = ACTIONS(2856), - [anon_sym_PERCENT_EQ] = ACTIONS(2856), - [anon_sym_LT_LT_EQ] = ACTIONS(2856), - [anon_sym_GT_GT_EQ] = ACTIONS(2856), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(2856), - [anon_sym_AMP_EQ] = ACTIONS(2856), - [anon_sym_AMP_CARET_EQ] = ACTIONS(2856), - [anon_sym_PLUS_EQ] = ACTIONS(2856), - [anon_sym_DASH_EQ] = ACTIONS(2856), - [anon_sym_PIPE_EQ] = ACTIONS(2856), - [anon_sym_CARET_EQ] = ACTIONS(2856), - [anon_sym_COLON_EQ] = ACTIONS(2856), - [anon_sym_lock] = ACTIONS(2856), - [anon_sym_rlock] = ACTIONS(2856), - [anon_sym_unsafe] = ACTIONS(2856), - [anon_sym_sql] = ACTIONS(2856), - [sym_int_literal] = ACTIONS(2856), - [sym_float_literal] = ACTIONS(2856), - [sym_rune_literal] = ACTIONS(2856), - [sym_pseudo_compile_time_identifier] = ACTIONS(2856), - [anon_sym_shared] = ACTIONS(2856), - [anon_sym_map_LBRACK] = ACTIONS(2856), - [anon_sym_chan] = ACTIONS(2856), - [anon_sym_thread] = ACTIONS(2856), - [anon_sym_atomic] = ACTIONS(2856), - [anon_sym_assert] = ACTIONS(2856), - [anon_sym_defer] = ACTIONS(2856), - [anon_sym_goto] = ACTIONS(2856), - [anon_sym_break] = ACTIONS(2856), - [anon_sym_continue] = ACTIONS(2856), - [anon_sym_return] = ACTIONS(2856), - [anon_sym_DOLLARfor] = ACTIONS(2856), - [anon_sym_for] = ACTIONS(2856), - [anon_sym_POUND] = ACTIONS(2856), - [anon_sym_asm] = ACTIONS(2856), - [anon_sym_AT_LBRACK] = ACTIONS(2856), - [sym___double_quote] = ACTIONS(2856), - [sym___single_quote] = ACTIONS(2856), - [sym___c_double_quote] = ACTIONS(2856), - [sym___c_single_quote] = ACTIONS(2856), - [sym___r_double_quote] = ACTIONS(2856), - [sym___r_single_quote] = ACTIONS(2856), - }, - [469] = { - [sym_line_comment] = STATE(469), - [sym_block_comment] = STATE(469), - [ts_builtin_sym_end] = ACTIONS(2858), - [sym_identifier] = ACTIONS(2860), - [anon_sym_LF] = ACTIONS(2860), - [anon_sym_CR] = ACTIONS(2860), - [anon_sym_CR_LF] = ACTIONS(2860), - [anon_sym_SLASH_SLASH] = ACTIONS(497), - [anon_sym_SLASH_STAR] = ACTIONS(499), - [anon_sym_DOT] = ACTIONS(2860), - [anon_sym_as] = ACTIONS(2860), - [anon_sym_LBRACE] = ACTIONS(2860), - [anon_sym_COMMA] = ACTIONS(2860), - [anon_sym_const] = ACTIONS(2860), - [anon_sym_LPAREN] = ACTIONS(2860), - [anon_sym_EQ] = ACTIONS(2860), - [anon_sym___global] = ACTIONS(2860), - [anon_sym_type] = ACTIONS(2860), - [anon_sym_PIPE] = ACTIONS(2860), - [anon_sym_fn] = ACTIONS(2860), - [anon_sym_PLUS] = ACTIONS(2860), - [anon_sym_DASH] = ACTIONS(2860), - [anon_sym_STAR] = ACTIONS(2860), - [anon_sym_SLASH] = ACTIONS(2860), - [anon_sym_PERCENT] = ACTIONS(2860), - [anon_sym_LT] = ACTIONS(2860), - [anon_sym_GT] = ACTIONS(2860), - [anon_sym_EQ_EQ] = ACTIONS(2860), - [anon_sym_BANG_EQ] = ACTIONS(2860), - [anon_sym_LT_EQ] = ACTIONS(2860), - [anon_sym_GT_EQ] = ACTIONS(2860), - [anon_sym_LBRACK] = ACTIONS(2858), - [anon_sym_struct] = ACTIONS(2860), - [anon_sym_union] = ACTIONS(2860), - [anon_sym_pub] = ACTIONS(2860), - [anon_sym_mut] = ACTIONS(2860), - [anon_sym_enum] = ACTIONS(2860), - [anon_sym_interface] = ACTIONS(2860), - [anon_sym_PLUS_PLUS] = ACTIONS(2860), - [anon_sym_DASH_DASH] = ACTIONS(2860), - [anon_sym_QMARK] = ACTIONS(2860), - [anon_sym_BANG] = ACTIONS(2860), - [anon_sym_go] = ACTIONS(2860), - [anon_sym_spawn] = ACTIONS(2860), - [anon_sym_json_DOTdecode] = ACTIONS(2860), - [anon_sym_LBRACK2] = ACTIONS(2860), - [anon_sym_TILDE] = ACTIONS(2860), - [anon_sym_CARET] = ACTIONS(2860), - [anon_sym_AMP] = ACTIONS(2860), - [anon_sym_LT_DASH] = ACTIONS(2860), - [anon_sym_LT_LT] = ACTIONS(2860), - [anon_sym_GT_GT] = ACTIONS(2860), - [anon_sym_GT_GT_GT] = ACTIONS(2860), - [anon_sym_AMP_CARET] = ACTIONS(2860), - [anon_sym_AMP_AMP] = ACTIONS(2860), - [anon_sym_PIPE_PIPE] = ACTIONS(2860), - [anon_sym_or] = ACTIONS(2860), - [sym_none] = ACTIONS(2860), - [sym_true] = ACTIONS(2860), - [sym_false] = ACTIONS(2860), - [sym_nil] = ACTIONS(2860), - [anon_sym_QMARK_DOT] = ACTIONS(2860), - [anon_sym_POUND_LBRACK] = ACTIONS(2860), - [anon_sym_if] = ACTIONS(2860), - [anon_sym_DOLLARif] = ACTIONS(2860), - [anon_sym_is] = ACTIONS(2860), - [anon_sym_BANGis] = ACTIONS(2860), - [anon_sym_in] = ACTIONS(2860), - [anon_sym_BANGin] = ACTIONS(2860), - [anon_sym_match] = ACTIONS(2860), - [anon_sym_select] = ACTIONS(2860), - [anon_sym_STAR_EQ] = ACTIONS(2860), - [anon_sym_SLASH_EQ] = ACTIONS(2860), - [anon_sym_PERCENT_EQ] = ACTIONS(2860), - [anon_sym_LT_LT_EQ] = ACTIONS(2860), - [anon_sym_GT_GT_EQ] = ACTIONS(2860), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(2860), - [anon_sym_AMP_EQ] = ACTIONS(2860), - [anon_sym_AMP_CARET_EQ] = ACTIONS(2860), - [anon_sym_PLUS_EQ] = ACTIONS(2860), - [anon_sym_DASH_EQ] = ACTIONS(2860), - [anon_sym_PIPE_EQ] = ACTIONS(2860), - [anon_sym_CARET_EQ] = ACTIONS(2860), - [anon_sym_COLON_EQ] = ACTIONS(2860), - [anon_sym_lock] = ACTIONS(2860), - [anon_sym_rlock] = ACTIONS(2860), - [anon_sym_unsafe] = ACTIONS(2860), - [anon_sym_sql] = ACTIONS(2860), - [sym_int_literal] = ACTIONS(2860), - [sym_float_literal] = ACTIONS(2860), - [sym_rune_literal] = ACTIONS(2860), - [sym_pseudo_compile_time_identifier] = ACTIONS(2860), - [anon_sym_shared] = ACTIONS(2860), - [anon_sym_map_LBRACK] = ACTIONS(2860), - [anon_sym_chan] = ACTIONS(2860), - [anon_sym_thread] = ACTIONS(2860), - [anon_sym_atomic] = ACTIONS(2860), - [anon_sym_assert] = ACTIONS(2860), - [anon_sym_defer] = ACTIONS(2860), - [anon_sym_goto] = ACTIONS(2860), - [anon_sym_break] = ACTIONS(2860), - [anon_sym_continue] = ACTIONS(2860), - [anon_sym_return] = ACTIONS(2860), - [anon_sym_DOLLARfor] = ACTIONS(2860), - [anon_sym_for] = ACTIONS(2860), - [anon_sym_POUND] = ACTIONS(2860), - [anon_sym_asm] = ACTIONS(2860), - [anon_sym_AT_LBRACK] = ACTIONS(2860), - [sym___double_quote] = ACTIONS(2860), - [sym___single_quote] = ACTIONS(2860), - [sym___c_double_quote] = ACTIONS(2860), - [sym___c_single_quote] = ACTIONS(2860), - [sym___r_double_quote] = ACTIONS(2860), - [sym___r_single_quote] = ACTIONS(2860), - }, [470] = { [sym_line_comment] = STATE(470), [sym_block_comment] = STATE(470), - [sym__expression] = STATE(2455), - [sym__expression_without_blocks] = STATE(2300), - [sym__expression_with_blocks] = STATE(2300), - [sym_inc_expression] = STATE(2307), - [sym_dec_expression] = STATE(2307), - [sym_or_block_expression] = STATE(2307), - [sym_option_propagation_expression] = STATE(2307), - [sym_result_propagation_expression] = STATE(2307), - [sym_anon_struct_value_expression] = STATE(2380), - [sym_go_expression] = STATE(2307), - [sym_spawn_expression] = STATE(2307), - [sym_parenthesized_expression] = STATE(2307), - [sym_call_expression] = STATE(2307), - [sym_type_initializer] = STATE(2380), - [sym_function_literal] = STATE(2307), - [sym_reference_expression] = STATE(2311), - [sym_type_reference_expression] = STATE(3541), - [sym_unary_expression] = STATE(2307), - [sym_receive_expression] = STATE(2307), - [sym_binary_expression] = STATE(2307), - [sym_as_type_cast_expression] = STATE(2307), - [sym__max_group] = STATE(2307), - [sym_literal] = STATE(2292), - [sym_map_init_expression] = STATE(2380), - [sym_array_creation] = STATE(2307), - [sym_fixed_array_creation] = STATE(2307), - [sym_selector_expression] = STATE(2307), - [sym_index_expression] = STATE(2307), - [sym_slice_expression] = STATE(2307), - [sym_if_expression] = STATE(2380), - [sym_compile_time_if_expression] = STATE(2380), - [sym_is_expression] = STATE(2307), - [sym_in_expression] = STATE(2307), - [sym_enum_fetch] = STATE(2307), - [sym_match_expression] = STATE(2380), - [sym_select_expression] = STATE(2380), - [sym_lock_expression] = STATE(2380), - [sym_unsafe_expression] = STATE(2380), - [sym_sql_expression] = STATE(2380), - [sym_c_string_literal] = STATE(2308), - [sym_raw_string_literal] = STATE(2308), - [sym_interpreted_string_literal] = STATE(2308), - [sym_mutability_modifiers] = STATE(824), - [sym_mutable_expression] = STATE(3922), - [sym_expression_list] = STATE(4358), - [sym_plain_type] = STATE(4297), - [sym__plain_type_without_special] = STATE(2302), - [sym_anon_struct_type] = STATE(2303), - [sym_multi_return_type] = STATE(2302), - [sym_result_type] = STATE(2302), - [sym_option_type] = STATE(2302), - [sym_qualified_type] = STATE(3541), - [sym_fixed_array_type] = STATE(2303), - [sym_array_type] = STATE(2303), - [sym_pointer_type] = STATE(2303), - [sym_wrong_pointer_type] = STATE(2303), - [sym_map_type] = STATE(2303), - [sym_channel_type] = STATE(2303), - [sym_shared_type] = STATE(2303), - [sym_thread_type] = STATE(2303), - [sym_atomic_type] = STATE(2303), - [sym_generic_type] = STATE(2303), - [sym_function_type] = STATE(2303), - [sym_identifier] = ACTIONS(1807), + [sym__expression] = STATE(2602), + [sym__expression_without_blocks] = STATE(2347), + [sym__expression_with_blocks] = STATE(2347), + [sym_inc_expression] = STATE(2379), + [sym_dec_expression] = STATE(2379), + [sym_or_block_expression] = STATE(2379), + [sym_option_propagation_expression] = STATE(2379), + [sym_result_propagation_expression] = STATE(2379), + [sym_anon_struct_value_expression] = STATE(2378), + [sym_go_expression] = STATE(2379), + [sym_spawn_expression] = STATE(2379), + [sym_parenthesized_expression] = STATE(2379), + [sym_call_expression] = STATE(2379), + [sym_type_initializer] = STATE(2378), + [sym_function_literal] = STATE(2379), + [sym_reference_expression] = STATE(2377), + [sym_type_reference_expression] = STATE(3460), + [sym_unary_expression] = STATE(2379), + [sym_receive_expression] = STATE(2379), + [sym_binary_expression] = STATE(2379), + [sym_as_type_cast_expression] = STATE(2379), + [sym__max_group] = STATE(2379), + [sym_literal] = STATE(2392), + [sym_map_init_expression] = STATE(2378), + [sym_array_creation] = STATE(2379), + [sym_fixed_array_creation] = STATE(2379), + [sym_selector_expression] = STATE(2379), + [sym_index_expression] = STATE(2379), + [sym_slice_expression] = STATE(2379), + [sym_if_expression] = STATE(2378), + [sym_compile_time_if_expression] = STATE(2378), + [sym_is_expression] = STATE(2379), + [sym_in_expression] = STATE(2379), + [sym_enum_fetch] = STATE(2379), + [sym_match_expression] = STATE(2378), + [sym_select_expression] = STATE(2378), + [sym_lock_expression] = STATE(2378), + [sym_unsafe_expression] = STATE(2378), + [sym_sql_expression] = STATE(2378), + [sym_c_string_literal] = STATE(2401), + [sym_raw_string_literal] = STATE(2401), + [sym_interpreted_string_literal] = STATE(2401), + [sym_mutability_modifiers] = STATE(939), + [sym_plain_type] = STATE(4160), + [sym__plain_type_without_special] = STATE(2360), + [sym_anon_struct_type] = STATE(2362), + [sym_multi_return_type] = STATE(2360), + [sym_result_type] = STATE(2360), + [sym_option_type] = STATE(2360), + [sym_qualified_type] = STATE(3460), + [sym_fixed_array_type] = STATE(2362), + [sym_array_type] = STATE(2362), + [sym_pointer_type] = STATE(2362), + [sym_wrong_pointer_type] = STATE(2362), + [sym_map_type] = STATE(2362), + [sym_channel_type] = STATE(2362), + [sym_shared_type] = STATE(2362), + [sym_thread_type] = STATE(2362), + [sym_atomic_type] = STATE(2362), + [sym_generic_type] = STATE(2362), + [sym_function_type] = STATE(2362), + [sym_range] = STATE(4542), + [sym_identifier] = ACTIONS(1428), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1428), - [anon_sym_LBRACE] = ACTIONS(2862), - [anon_sym_LPAREN] = ACTIONS(1432), - [anon_sym_fn] = ACTIONS(1434), - [anon_sym_PLUS] = ACTIONS(1811), - [anon_sym_DASH] = ACTIONS(1811), - [anon_sym_STAR] = ACTIONS(1813), - [anon_sym_struct] = ACTIONS(1440), + [anon_sym_DOT] = ACTIONS(1430), + [anon_sym_LBRACE] = ACTIONS(1432), + [anon_sym_LPAREN] = ACTIONS(1434), + [anon_sym_fn] = ACTIONS(1436), + [anon_sym_PLUS] = ACTIONS(1438), + [anon_sym_DASH] = ACTIONS(1438), + [anon_sym_STAR] = ACTIONS(1440), + [anon_sym_struct] = ACTIONS(1442), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(1815), - [anon_sym_go] = ACTIONS(1817), - [anon_sym_spawn] = ACTIONS(1819), - [anon_sym_json_DOTdecode] = ACTIONS(1448), - [anon_sym_LBRACK2] = ACTIONS(1821), - [anon_sym_TILDE] = ACTIONS(1811), - [anon_sym_CARET] = ACTIONS(1811), - [anon_sym_AMP] = ACTIONS(1823), - [anon_sym_LT_DASH] = ACTIONS(1825), - [sym_none] = ACTIONS(1456), - [sym_true] = ACTIONS(1456), - [sym_false] = ACTIONS(1456), - [sym_nil] = ACTIONS(1456), - [anon_sym_if] = ACTIONS(1827), - [anon_sym_DOLLARif] = ACTIONS(1460), - [anon_sym_match] = ACTIONS(1462), - [anon_sym_select] = ACTIONS(1829), - [anon_sym_lock] = ACTIONS(1831), - [anon_sym_rlock] = ACTIONS(1831), - [anon_sym_unsafe] = ACTIONS(1833), - [anon_sym_sql] = ACTIONS(1470), - [sym_int_literal] = ACTIONS(1456), - [sym_float_literal] = ACTIONS(1472), - [sym_rune_literal] = ACTIONS(1472), - [sym_pseudo_compile_time_identifier] = ACTIONS(1474), + [anon_sym_BANG] = ACTIONS(1444), + [anon_sym_go] = ACTIONS(1446), + [anon_sym_spawn] = ACTIONS(1448), + [anon_sym_json_DOTdecode] = ACTIONS(1450), + [anon_sym_LBRACK2] = ACTIONS(1452), + [anon_sym_TILDE] = ACTIONS(1438), + [anon_sym_CARET] = ACTIONS(1438), + [anon_sym_AMP] = ACTIONS(1454), + [anon_sym_LT_DASH] = ACTIONS(1456), + [sym_none] = ACTIONS(1458), + [sym_true] = ACTIONS(1458), + [sym_false] = ACTIONS(1458), + [sym_nil] = ACTIONS(1458), + [anon_sym_if] = ACTIONS(1833), + [anon_sym_DOLLARif] = ACTIONS(1462), + [anon_sym_match] = ACTIONS(1464), + [anon_sym_select] = ACTIONS(1466), + [anon_sym_lock] = ACTIONS(1468), + [anon_sym_rlock] = ACTIONS(1468), + [anon_sym_unsafe] = ACTIONS(1839), + [anon_sym_sql] = ACTIONS(1472), + [sym_int_literal] = ACTIONS(1458), + [sym_float_literal] = ACTIONS(1474), + [sym_rune_literal] = ACTIONS(1474), + [sym_pseudo_compile_time_identifier] = ACTIONS(1476), [anon_sym_shared] = ACTIONS(83), [anon_sym_map_LBRACK] = ACTIONS(85), [anon_sym_chan] = ACTIONS(87), [anon_sym_thread] = ACTIONS(89), [anon_sym_atomic] = ACTIONS(91), - [sym___double_quote] = ACTIONS(1478), - [sym___single_quote] = ACTIONS(1480), - [sym___c_double_quote] = ACTIONS(1482), - [sym___c_single_quote] = ACTIONS(1484), - [sym___r_double_quote] = ACTIONS(1486), - [sym___r_single_quote] = ACTIONS(1488), + [anon_sym_DOT_DOT] = ACTIONS(1478), + [sym___double_quote] = ACTIONS(1480), + [sym___single_quote] = ACTIONS(1482), + [sym___c_double_quote] = ACTIONS(1484), + [sym___c_single_quote] = ACTIONS(1486), + [sym___r_double_quote] = ACTIONS(1488), + [sym___r_single_quote] = ACTIONS(1490), }, [471] = { [sym_line_comment] = STATE(471), [sym_block_comment] = STATE(471), - [sym__expression] = STATE(2591), - [sym__expression_without_blocks] = STATE(2300), - [sym__expression_with_blocks] = STATE(2300), - [sym_inc_expression] = STATE(2307), - [sym_dec_expression] = STATE(2307), - [sym_or_block_expression] = STATE(2307), - [sym_option_propagation_expression] = STATE(2307), - [sym_result_propagation_expression] = STATE(2307), - [sym_anon_struct_value_expression] = STATE(2380), - [sym_go_expression] = STATE(2307), - [sym_spawn_expression] = STATE(2307), - [sym_parenthesized_expression] = STATE(2307), - [sym_call_expression] = STATE(2307), - [sym_type_initializer] = STATE(2380), - [sym_function_literal] = STATE(2307), - [sym_reference_expression] = STATE(2311), - [sym_type_reference_expression] = STATE(3541), - [sym_unary_expression] = STATE(2307), - [sym_receive_expression] = STATE(2307), - [sym_binary_expression] = STATE(2307), - [sym_as_type_cast_expression] = STATE(2307), - [sym__max_group] = STATE(2307), - [sym_literal] = STATE(2292), - [sym_map_init_expression] = STATE(2380), - [sym_array_creation] = STATE(2307), - [sym_fixed_array_creation] = STATE(2307), - [sym_selector_expression] = STATE(2307), - [sym_index_expression] = STATE(2307), - [sym_slice_expression] = STATE(2307), - [sym_if_expression] = STATE(2380), - [sym_compile_time_if_expression] = STATE(2380), - [sym_is_expression] = STATE(2307), - [sym_in_expression] = STATE(2307), - [sym_enum_fetch] = STATE(2307), - [sym_match_expression] = STATE(2380), - [sym_select_expression] = STATE(2380), - [sym_lock_expression] = STATE(2380), - [sym_unsafe_expression] = STATE(2380), - [sym_sql_expression] = STATE(2380), - [sym_c_string_literal] = STATE(2308), - [sym_raw_string_literal] = STATE(2308), - [sym_interpreted_string_literal] = STATE(2308), - [sym_mutability_modifiers] = STATE(939), - [sym_plain_type] = STATE(3557), - [sym__plain_type_without_special] = STATE(2302), - [sym_anon_struct_type] = STATE(2303), - [sym_multi_return_type] = STATE(2302), - [sym_result_type] = STATE(2302), - [sym_option_type] = STATE(2302), - [sym_qualified_type] = STATE(3541), - [sym_fixed_array_type] = STATE(2303), - [sym_array_type] = STATE(2303), - [sym_pointer_type] = STATE(2303), - [sym_wrong_pointer_type] = STATE(2303), - [sym_map_type] = STATE(2303), - [sym_channel_type] = STATE(2303), - [sym_shared_type] = STATE(2303), - [sym_thread_type] = STATE(2303), - [sym_atomic_type] = STATE(2303), - [sym_generic_type] = STATE(2303), - [sym_function_type] = STATE(2303), - [sym_range] = STATE(4490), - [sym_identifier] = ACTIONS(2135), - [anon_sym_SLASH_SLASH] = ACTIONS(3), - [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1428), - [anon_sym_LBRACE] = ACTIONS(1430), - [anon_sym_LPAREN] = ACTIONS(1432), - [anon_sym_fn] = ACTIONS(1434), - [anon_sym_PLUS] = ACTIONS(1436), - [anon_sym_DASH] = ACTIONS(1436), - [anon_sym_STAR] = ACTIONS(2137), - [anon_sym_struct] = ACTIONS(1440), - [anon_sym_mut] = ACTIONS(41), - [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(2139), - [anon_sym_go] = ACTIONS(1444), - [anon_sym_spawn] = ACTIONS(1446), - [anon_sym_json_DOTdecode] = ACTIONS(1448), - [anon_sym_LBRACK2] = ACTIONS(1450), - [anon_sym_TILDE] = ACTIONS(1436), - [anon_sym_CARET] = ACTIONS(1436), - [anon_sym_AMP] = ACTIONS(2141), - [anon_sym_LT_DASH] = ACTIONS(1454), - [sym_none] = ACTIONS(1456), - [sym_true] = ACTIONS(1456), - [sym_false] = ACTIONS(1456), - [sym_nil] = ACTIONS(1456), - [anon_sym_if] = ACTIONS(1827), - [anon_sym_DOLLARif] = ACTIONS(1460), - [anon_sym_match] = ACTIONS(1462), - [anon_sym_select] = ACTIONS(1464), - [anon_sym_lock] = ACTIONS(1466), - [anon_sym_rlock] = ACTIONS(1466), - [anon_sym_unsafe] = ACTIONS(1833), - [anon_sym_sql] = ACTIONS(1470), - [sym_int_literal] = ACTIONS(1456), - [sym_float_literal] = ACTIONS(1472), - [sym_rune_literal] = ACTIONS(1472), - [sym_pseudo_compile_time_identifier] = ACTIONS(1474), - [anon_sym_shared] = ACTIONS(83), - [anon_sym_map_LBRACK] = ACTIONS(85), - [anon_sym_chan] = ACTIONS(87), - [anon_sym_thread] = ACTIONS(89), - [anon_sym_atomic] = ACTIONS(91), - [anon_sym_DOT_DOT] = ACTIONS(1476), - [sym___double_quote] = ACTIONS(1478), - [sym___single_quote] = ACTIONS(1480), - [sym___c_double_quote] = ACTIONS(1482), - [sym___c_single_quote] = ACTIONS(1484), - [sym___r_double_quote] = ACTIONS(1486), - [sym___r_single_quote] = ACTIONS(1488), + [ts_builtin_sym_end] = ACTIONS(2852), + [sym_identifier] = ACTIONS(2854), + [anon_sym_LF] = ACTIONS(2854), + [anon_sym_CR] = ACTIONS(2854), + [anon_sym_CR_LF] = ACTIONS(2854), + [anon_sym_SLASH_SLASH] = ACTIONS(497), + [anon_sym_SLASH_STAR] = ACTIONS(499), + [anon_sym_DOT] = ACTIONS(2854), + [anon_sym_as] = ACTIONS(2854), + [anon_sym_LBRACE] = ACTIONS(2854), + [anon_sym_COMMA] = ACTIONS(2854), + [anon_sym_const] = ACTIONS(2854), + [anon_sym_LPAREN] = ACTIONS(2854), + [anon_sym_EQ] = ACTIONS(2854), + [anon_sym___global] = ACTIONS(2854), + [anon_sym_type] = ACTIONS(2854), + [anon_sym_PIPE] = ACTIONS(2854), + [anon_sym_fn] = ACTIONS(2854), + [anon_sym_PLUS] = ACTIONS(2854), + [anon_sym_DASH] = ACTIONS(2854), + [anon_sym_STAR] = ACTIONS(2854), + [anon_sym_SLASH] = ACTIONS(2854), + [anon_sym_PERCENT] = ACTIONS(2854), + [anon_sym_LT] = ACTIONS(2854), + [anon_sym_GT] = ACTIONS(2854), + [anon_sym_EQ_EQ] = ACTIONS(2854), + [anon_sym_BANG_EQ] = ACTIONS(2854), + [anon_sym_LT_EQ] = ACTIONS(2854), + [anon_sym_GT_EQ] = ACTIONS(2854), + [anon_sym_LBRACK] = ACTIONS(2852), + [anon_sym_struct] = ACTIONS(2854), + [anon_sym_union] = ACTIONS(2854), + [anon_sym_pub] = ACTIONS(2854), + [anon_sym_mut] = ACTIONS(2854), + [anon_sym_enum] = ACTIONS(2854), + [anon_sym_interface] = ACTIONS(2854), + [anon_sym_PLUS_PLUS] = ACTIONS(2854), + [anon_sym_DASH_DASH] = ACTIONS(2854), + [anon_sym_QMARK] = ACTIONS(2854), + [anon_sym_BANG] = ACTIONS(2854), + [anon_sym_go] = ACTIONS(2854), + [anon_sym_spawn] = ACTIONS(2854), + [anon_sym_json_DOTdecode] = ACTIONS(2854), + [anon_sym_LBRACK2] = ACTIONS(2854), + [anon_sym_TILDE] = ACTIONS(2854), + [anon_sym_CARET] = ACTIONS(2854), + [anon_sym_AMP] = ACTIONS(2854), + [anon_sym_LT_DASH] = ACTIONS(2854), + [anon_sym_LT_LT] = ACTIONS(2854), + [anon_sym_GT_GT] = ACTIONS(2854), + [anon_sym_GT_GT_GT] = ACTIONS(2854), + [anon_sym_AMP_CARET] = ACTIONS(2854), + [anon_sym_AMP_AMP] = ACTIONS(2854), + [anon_sym_PIPE_PIPE] = ACTIONS(2854), + [anon_sym_or] = ACTIONS(2854), + [sym_none] = ACTIONS(2854), + [sym_true] = ACTIONS(2854), + [sym_false] = ACTIONS(2854), + [sym_nil] = ACTIONS(2854), + [anon_sym_QMARK_DOT] = ACTIONS(2854), + [anon_sym_POUND_LBRACK] = ACTIONS(2854), + [anon_sym_if] = ACTIONS(2854), + [anon_sym_DOLLARif] = ACTIONS(2854), + [anon_sym_is] = ACTIONS(2854), + [anon_sym_BANGis] = ACTIONS(2854), + [anon_sym_in] = ACTIONS(2854), + [anon_sym_BANGin] = ACTIONS(2854), + [anon_sym_match] = ACTIONS(2854), + [anon_sym_select] = ACTIONS(2854), + [anon_sym_STAR_EQ] = ACTIONS(2854), + [anon_sym_SLASH_EQ] = ACTIONS(2854), + [anon_sym_PERCENT_EQ] = ACTIONS(2854), + [anon_sym_LT_LT_EQ] = ACTIONS(2854), + [anon_sym_GT_GT_EQ] = ACTIONS(2854), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(2854), + [anon_sym_AMP_EQ] = ACTIONS(2854), + [anon_sym_AMP_CARET_EQ] = ACTIONS(2854), + [anon_sym_PLUS_EQ] = ACTIONS(2854), + [anon_sym_DASH_EQ] = ACTIONS(2854), + [anon_sym_PIPE_EQ] = ACTIONS(2854), + [anon_sym_CARET_EQ] = ACTIONS(2854), + [anon_sym_COLON_EQ] = ACTIONS(2854), + [anon_sym_lock] = ACTIONS(2854), + [anon_sym_rlock] = ACTIONS(2854), + [anon_sym_unsafe] = ACTIONS(2854), + [anon_sym_sql] = ACTIONS(2854), + [sym_int_literal] = ACTIONS(2854), + [sym_float_literal] = ACTIONS(2854), + [sym_rune_literal] = ACTIONS(2854), + [sym_pseudo_compile_time_identifier] = ACTIONS(2854), + [anon_sym_shared] = ACTIONS(2854), + [anon_sym_map_LBRACK] = ACTIONS(2854), + [anon_sym_chan] = ACTIONS(2854), + [anon_sym_thread] = ACTIONS(2854), + [anon_sym_atomic] = ACTIONS(2854), + [anon_sym_assert] = ACTIONS(2854), + [anon_sym_defer] = ACTIONS(2854), + [anon_sym_goto] = ACTIONS(2854), + [anon_sym_break] = ACTIONS(2854), + [anon_sym_continue] = ACTIONS(2854), + [anon_sym_return] = ACTIONS(2854), + [anon_sym_DOLLARfor] = ACTIONS(2854), + [anon_sym_for] = ACTIONS(2854), + [anon_sym_POUND] = ACTIONS(2854), + [anon_sym_asm] = ACTIONS(2854), + [anon_sym_AT_LBRACK] = ACTIONS(2854), + [sym___double_quote] = ACTIONS(2854), + [sym___single_quote] = ACTIONS(2854), + [sym___c_double_quote] = ACTIONS(2854), + [sym___c_single_quote] = ACTIONS(2854), + [sym___r_double_quote] = ACTIONS(2854), + [sym___r_single_quote] = ACTIONS(2854), }, [472] = { [sym_line_comment] = STATE(472), [sym_block_comment] = STATE(472), - [sym__expression] = STATE(1268), - [sym__expression_without_blocks] = STATE(1312), - [sym__expression_with_blocks] = STATE(1312), - [sym_inc_expression] = STATE(1313), - [sym_dec_expression] = STATE(1313), - [sym_or_block_expression] = STATE(1313), - [sym_option_propagation_expression] = STATE(1313), - [sym_result_propagation_expression] = STATE(1313), - [sym_anon_struct_value_expression] = STATE(1314), - [sym_go_expression] = STATE(1313), - [sym_spawn_expression] = STATE(1313), - [sym_parenthesized_expression] = STATE(1313), - [sym_call_expression] = STATE(1313), - [sym_type_initializer] = STATE(1314), - [sym_function_literal] = STATE(1313), - [sym_reference_expression] = STATE(1394), - [sym_type_reference_expression] = STATE(3541), - [sym_unary_expression] = STATE(1313), - [sym_receive_expression] = STATE(1313), - [sym_binary_expression] = STATE(1313), - [sym_as_type_cast_expression] = STATE(1313), - [sym__max_group] = STATE(1313), - [sym_literal] = STATE(1308), - [sym_map_init_expression] = STATE(1314), - [sym_array_creation] = STATE(1313), - [sym_fixed_array_creation] = STATE(1313), - [sym_selector_expression] = STATE(1393), - [sym_index_expression] = STATE(1313), - [sym_slice_expression] = STATE(1313), - [sym_if_expression] = STATE(1314), - [sym_compile_time_if_expression] = STATE(1314), - [sym_is_expression] = STATE(1313), - [sym_in_expression] = STATE(1313), - [sym_enum_fetch] = STATE(1313), - [sym_match_expression] = STATE(1314), - [sym_select_expression] = STATE(1314), - [sym_lock_expression] = STATE(1314), - [sym_unsafe_expression] = STATE(1314), - [sym_sql_expression] = STATE(1314), - [sym_c_string_literal] = STATE(1286), - [sym_raw_string_literal] = STATE(1286), - [sym_interpreted_string_literal] = STATE(1286), - [sym_mutability_modifiers] = STATE(699), - [sym_plain_type] = STATE(4192), - [sym__plain_type_without_special] = STATE(2302), - [sym_anon_struct_type] = STATE(2303), - [sym_multi_return_type] = STATE(2302), - [sym_result_type] = STATE(2302), - [sym_option_type] = STATE(2302), - [sym_qualified_type] = STATE(3541), - [sym_fixed_array_type] = STATE(2303), - [sym_array_type] = STATE(2303), - [sym_pointer_type] = STATE(2303), - [sym_wrong_pointer_type] = STATE(2303), - [sym_map_type] = STATE(2303), - [sym_channel_type] = STATE(2303), - [sym_shared_type] = STATE(2303), - [sym_thread_type] = STATE(2303), - [sym_atomic_type] = STATE(2303), - [sym_generic_type] = STATE(2303), - [sym_function_type] = STATE(2303), - [aux_sym__array_repeat1] = STATE(314), - [sym_identifier] = ACTIONS(1354), - [anon_sym_SLASH_SLASH] = ACTIONS(3), - [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1356), - [anon_sym_LBRACE] = ACTIONS(1358), - [anon_sym_LPAREN] = ACTIONS(1360), - [anon_sym_fn] = ACTIONS(1362), - [anon_sym_PLUS] = ACTIONS(1364), - [anon_sym_DASH] = ACTIONS(1364), - [anon_sym_STAR] = ACTIONS(1366), - [anon_sym_RBRACK] = ACTIONS(2864), - [anon_sym_struct] = ACTIONS(1370), - [anon_sym_mut] = ACTIONS(41), - [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(1372), - [anon_sym_go] = ACTIONS(1374), - [anon_sym_spawn] = ACTIONS(1376), - [anon_sym_json_DOTdecode] = ACTIONS(1378), - [anon_sym_LBRACK2] = ACTIONS(1380), - [anon_sym_TILDE] = ACTIONS(1364), - [anon_sym_CARET] = ACTIONS(1364), - [anon_sym_AMP] = ACTIONS(1382), - [anon_sym_LT_DASH] = ACTIONS(1384), - [sym_none] = ACTIONS(1386), - [sym_true] = ACTIONS(1386), - [sym_false] = ACTIONS(1386), - [sym_nil] = ACTIONS(1386), - [anon_sym_if] = ACTIONS(1877), - [anon_sym_DOLLARif] = ACTIONS(1390), - [anon_sym_match] = ACTIONS(1392), - [anon_sym_select] = ACTIONS(1394), - [anon_sym_lock] = ACTIONS(1396), - [anon_sym_rlock] = ACTIONS(1396), - [anon_sym_unsafe] = ACTIONS(1883), - [anon_sym_sql] = ACTIONS(1400), - [sym_int_literal] = ACTIONS(1402), - [sym_float_literal] = ACTIONS(1404), - [sym_rune_literal] = ACTIONS(1404), - [sym_pseudo_compile_time_identifier] = ACTIONS(1406), - [anon_sym_shared] = ACTIONS(83), - [anon_sym_map_LBRACK] = ACTIONS(85), - [anon_sym_chan] = ACTIONS(87), - [anon_sym_thread] = ACTIONS(89), - [anon_sym_atomic] = ACTIONS(91), - [sym___double_quote] = ACTIONS(1408), - [sym___single_quote] = ACTIONS(1410), - [sym___c_double_quote] = ACTIONS(1412), - [sym___c_single_quote] = ACTIONS(1414), - [sym___r_double_quote] = ACTIONS(1416), - [sym___r_single_quote] = ACTIONS(1418), + [ts_builtin_sym_end] = ACTIONS(2856), + [sym_identifier] = ACTIONS(2858), + [anon_sym_LF] = ACTIONS(2858), + [anon_sym_CR] = ACTIONS(2858), + [anon_sym_CR_LF] = ACTIONS(2858), + [anon_sym_SLASH_SLASH] = ACTIONS(497), + [anon_sym_SLASH_STAR] = ACTIONS(499), + [anon_sym_DOT] = ACTIONS(2858), + [anon_sym_as] = ACTIONS(2858), + [anon_sym_LBRACE] = ACTIONS(2858), + [anon_sym_COMMA] = ACTIONS(2858), + [anon_sym_const] = ACTIONS(2858), + [anon_sym_LPAREN] = ACTIONS(2858), + [anon_sym_EQ] = ACTIONS(2858), + [anon_sym___global] = ACTIONS(2858), + [anon_sym_type] = ACTIONS(2858), + [anon_sym_PIPE] = ACTIONS(2858), + [anon_sym_fn] = ACTIONS(2858), + [anon_sym_PLUS] = ACTIONS(2858), + [anon_sym_DASH] = ACTIONS(2858), + [anon_sym_STAR] = ACTIONS(2858), + [anon_sym_SLASH] = ACTIONS(2858), + [anon_sym_PERCENT] = ACTIONS(2858), + [anon_sym_LT] = ACTIONS(2858), + [anon_sym_GT] = ACTIONS(2858), + [anon_sym_EQ_EQ] = ACTIONS(2858), + [anon_sym_BANG_EQ] = ACTIONS(2858), + [anon_sym_LT_EQ] = ACTIONS(2858), + [anon_sym_GT_EQ] = ACTIONS(2858), + [anon_sym_LBRACK] = ACTIONS(2856), + [anon_sym_struct] = ACTIONS(2858), + [anon_sym_union] = ACTIONS(2858), + [anon_sym_pub] = ACTIONS(2858), + [anon_sym_mut] = ACTIONS(2858), + [anon_sym_enum] = ACTIONS(2858), + [anon_sym_interface] = ACTIONS(2858), + [anon_sym_PLUS_PLUS] = ACTIONS(2858), + [anon_sym_DASH_DASH] = ACTIONS(2858), + [anon_sym_QMARK] = ACTIONS(2858), + [anon_sym_BANG] = ACTIONS(2858), + [anon_sym_go] = ACTIONS(2858), + [anon_sym_spawn] = ACTIONS(2858), + [anon_sym_json_DOTdecode] = ACTIONS(2858), + [anon_sym_LBRACK2] = ACTIONS(2858), + [anon_sym_TILDE] = ACTIONS(2858), + [anon_sym_CARET] = ACTIONS(2858), + [anon_sym_AMP] = ACTIONS(2858), + [anon_sym_LT_DASH] = ACTIONS(2858), + [anon_sym_LT_LT] = ACTIONS(2858), + [anon_sym_GT_GT] = ACTIONS(2858), + [anon_sym_GT_GT_GT] = ACTIONS(2858), + [anon_sym_AMP_CARET] = ACTIONS(2858), + [anon_sym_AMP_AMP] = ACTIONS(2858), + [anon_sym_PIPE_PIPE] = ACTIONS(2858), + [anon_sym_or] = ACTIONS(2858), + [sym_none] = ACTIONS(2858), + [sym_true] = ACTIONS(2858), + [sym_false] = ACTIONS(2858), + [sym_nil] = ACTIONS(2858), + [anon_sym_QMARK_DOT] = ACTIONS(2858), + [anon_sym_POUND_LBRACK] = ACTIONS(2858), + [anon_sym_if] = ACTIONS(2858), + [anon_sym_DOLLARif] = ACTIONS(2858), + [anon_sym_is] = ACTIONS(2858), + [anon_sym_BANGis] = ACTIONS(2858), + [anon_sym_in] = ACTIONS(2858), + [anon_sym_BANGin] = ACTIONS(2858), + [anon_sym_match] = ACTIONS(2858), + [anon_sym_select] = ACTIONS(2858), + [anon_sym_STAR_EQ] = ACTIONS(2858), + [anon_sym_SLASH_EQ] = ACTIONS(2858), + [anon_sym_PERCENT_EQ] = ACTIONS(2858), + [anon_sym_LT_LT_EQ] = ACTIONS(2858), + [anon_sym_GT_GT_EQ] = ACTIONS(2858), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(2858), + [anon_sym_AMP_EQ] = ACTIONS(2858), + [anon_sym_AMP_CARET_EQ] = ACTIONS(2858), + [anon_sym_PLUS_EQ] = ACTIONS(2858), + [anon_sym_DASH_EQ] = ACTIONS(2858), + [anon_sym_PIPE_EQ] = ACTIONS(2858), + [anon_sym_CARET_EQ] = ACTIONS(2858), + [anon_sym_COLON_EQ] = ACTIONS(2858), + [anon_sym_lock] = ACTIONS(2858), + [anon_sym_rlock] = ACTIONS(2858), + [anon_sym_unsafe] = ACTIONS(2858), + [anon_sym_sql] = ACTIONS(2858), + [sym_int_literal] = ACTIONS(2858), + [sym_float_literal] = ACTIONS(2858), + [sym_rune_literal] = ACTIONS(2858), + [sym_pseudo_compile_time_identifier] = ACTIONS(2858), + [anon_sym_shared] = ACTIONS(2858), + [anon_sym_map_LBRACK] = ACTIONS(2858), + [anon_sym_chan] = ACTIONS(2858), + [anon_sym_thread] = ACTIONS(2858), + [anon_sym_atomic] = ACTIONS(2858), + [anon_sym_assert] = ACTIONS(2858), + [anon_sym_defer] = ACTIONS(2858), + [anon_sym_goto] = ACTIONS(2858), + [anon_sym_break] = ACTIONS(2858), + [anon_sym_continue] = ACTIONS(2858), + [anon_sym_return] = ACTIONS(2858), + [anon_sym_DOLLARfor] = ACTIONS(2858), + [anon_sym_for] = ACTIONS(2858), + [anon_sym_POUND] = ACTIONS(2858), + [anon_sym_asm] = ACTIONS(2858), + [anon_sym_AT_LBRACK] = ACTIONS(2858), + [sym___double_quote] = ACTIONS(2858), + [sym___single_quote] = ACTIONS(2858), + [sym___c_double_quote] = ACTIONS(2858), + [sym___c_single_quote] = ACTIONS(2858), + [sym___r_double_quote] = ACTIONS(2858), + [sym___r_single_quote] = ACTIONS(2858), }, [473] = { [sym_line_comment] = STATE(473), [sym_block_comment] = STATE(473), - [ts_builtin_sym_end] = ACTIONS(2866), - [sym_identifier] = ACTIONS(2868), - [anon_sym_LF] = ACTIONS(2868), - [anon_sym_CR] = ACTIONS(2868), - [anon_sym_CR_LF] = ACTIONS(2868), + [ts_builtin_sym_end] = ACTIONS(2860), + [sym_identifier] = ACTIONS(2862), + [anon_sym_LF] = ACTIONS(2862), + [anon_sym_CR] = ACTIONS(2862), + [anon_sym_CR_LF] = ACTIONS(2862), [anon_sym_SLASH_SLASH] = ACTIONS(497), [anon_sym_SLASH_STAR] = ACTIONS(499), - [anon_sym_DOT] = ACTIONS(2868), - [anon_sym_as] = ACTIONS(2868), - [anon_sym_LBRACE] = ACTIONS(2868), - [anon_sym_COMMA] = ACTIONS(2868), - [anon_sym_const] = ACTIONS(2868), - [anon_sym_LPAREN] = ACTIONS(2868), - [anon_sym_EQ] = ACTIONS(2868), - [anon_sym___global] = ACTIONS(2868), - [anon_sym_type] = ACTIONS(2868), - [anon_sym_PIPE] = ACTIONS(2868), - [anon_sym_fn] = ACTIONS(2868), - [anon_sym_PLUS] = ACTIONS(2868), - [anon_sym_DASH] = ACTIONS(2868), - [anon_sym_STAR] = ACTIONS(2868), - [anon_sym_SLASH] = ACTIONS(2868), - [anon_sym_PERCENT] = ACTIONS(2868), - [anon_sym_LT] = ACTIONS(2868), - [anon_sym_GT] = ACTIONS(2868), - [anon_sym_EQ_EQ] = ACTIONS(2868), - [anon_sym_BANG_EQ] = ACTIONS(2868), - [anon_sym_LT_EQ] = ACTIONS(2868), - [anon_sym_GT_EQ] = ACTIONS(2868), - [anon_sym_LBRACK] = ACTIONS(2866), - [anon_sym_struct] = ACTIONS(2868), - [anon_sym_union] = ACTIONS(2868), - [anon_sym_pub] = ACTIONS(2868), - [anon_sym_mut] = ACTIONS(2868), - [anon_sym_enum] = ACTIONS(2868), - [anon_sym_interface] = ACTIONS(2868), - [anon_sym_PLUS_PLUS] = ACTIONS(2868), - [anon_sym_DASH_DASH] = ACTIONS(2868), - [anon_sym_QMARK] = ACTIONS(2868), - [anon_sym_BANG] = ACTIONS(2868), - [anon_sym_go] = ACTIONS(2868), - [anon_sym_spawn] = ACTIONS(2868), - [anon_sym_json_DOTdecode] = ACTIONS(2868), - [anon_sym_LBRACK2] = ACTIONS(2868), - [anon_sym_TILDE] = ACTIONS(2868), - [anon_sym_CARET] = ACTIONS(2868), - [anon_sym_AMP] = ACTIONS(2868), - [anon_sym_LT_DASH] = ACTIONS(2868), - [anon_sym_LT_LT] = ACTIONS(2868), - [anon_sym_GT_GT] = ACTIONS(2868), - [anon_sym_GT_GT_GT] = ACTIONS(2868), - [anon_sym_AMP_CARET] = ACTIONS(2868), - [anon_sym_AMP_AMP] = ACTIONS(2868), - [anon_sym_PIPE_PIPE] = ACTIONS(2868), - [anon_sym_or] = ACTIONS(2868), - [sym_none] = ACTIONS(2868), - [sym_true] = ACTIONS(2868), - [sym_false] = ACTIONS(2868), - [sym_nil] = ACTIONS(2868), - [anon_sym_QMARK_DOT] = ACTIONS(2868), - [anon_sym_POUND_LBRACK] = ACTIONS(2868), - [anon_sym_if] = ACTIONS(2868), - [anon_sym_DOLLARif] = ACTIONS(2868), - [anon_sym_is] = ACTIONS(2868), - [anon_sym_BANGis] = ACTIONS(2868), - [anon_sym_in] = ACTIONS(2868), - [anon_sym_BANGin] = ACTIONS(2868), - [anon_sym_match] = ACTIONS(2868), - [anon_sym_select] = ACTIONS(2868), - [anon_sym_STAR_EQ] = ACTIONS(2868), - [anon_sym_SLASH_EQ] = ACTIONS(2868), - [anon_sym_PERCENT_EQ] = ACTIONS(2868), - [anon_sym_LT_LT_EQ] = ACTIONS(2868), - [anon_sym_GT_GT_EQ] = ACTIONS(2868), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(2868), - [anon_sym_AMP_EQ] = ACTIONS(2868), - [anon_sym_AMP_CARET_EQ] = ACTIONS(2868), - [anon_sym_PLUS_EQ] = ACTIONS(2868), - [anon_sym_DASH_EQ] = ACTIONS(2868), - [anon_sym_PIPE_EQ] = ACTIONS(2868), - [anon_sym_CARET_EQ] = ACTIONS(2868), - [anon_sym_COLON_EQ] = ACTIONS(2868), - [anon_sym_lock] = ACTIONS(2868), - [anon_sym_rlock] = ACTIONS(2868), - [anon_sym_unsafe] = ACTIONS(2868), - [anon_sym_sql] = ACTIONS(2868), - [sym_int_literal] = ACTIONS(2868), - [sym_float_literal] = ACTIONS(2868), - [sym_rune_literal] = ACTIONS(2868), - [sym_pseudo_compile_time_identifier] = ACTIONS(2868), - [anon_sym_shared] = ACTIONS(2868), - [anon_sym_map_LBRACK] = ACTIONS(2868), - [anon_sym_chan] = ACTIONS(2868), - [anon_sym_thread] = ACTIONS(2868), - [anon_sym_atomic] = ACTIONS(2868), - [anon_sym_assert] = ACTIONS(2868), - [anon_sym_defer] = ACTIONS(2868), - [anon_sym_goto] = ACTIONS(2868), - [anon_sym_break] = ACTIONS(2868), - [anon_sym_continue] = ACTIONS(2868), - [anon_sym_return] = ACTIONS(2868), - [anon_sym_DOLLARfor] = ACTIONS(2868), - [anon_sym_for] = ACTIONS(2868), - [anon_sym_POUND] = ACTIONS(2868), - [anon_sym_asm] = ACTIONS(2868), - [anon_sym_AT_LBRACK] = ACTIONS(2868), - [sym___double_quote] = ACTIONS(2868), - [sym___single_quote] = ACTIONS(2868), - [sym___c_double_quote] = ACTIONS(2868), - [sym___c_single_quote] = ACTIONS(2868), - [sym___r_double_quote] = ACTIONS(2868), - [sym___r_single_quote] = ACTIONS(2868), + [anon_sym_DOT] = ACTIONS(2862), + [anon_sym_as] = ACTIONS(2862), + [anon_sym_LBRACE] = ACTIONS(2862), + [anon_sym_COMMA] = ACTIONS(2862), + [anon_sym_const] = ACTIONS(2862), + [anon_sym_LPAREN] = ACTIONS(2862), + [anon_sym_EQ] = ACTIONS(2862), + [anon_sym___global] = ACTIONS(2862), + [anon_sym_type] = ACTIONS(2862), + [anon_sym_PIPE] = ACTIONS(2862), + [anon_sym_fn] = ACTIONS(2862), + [anon_sym_PLUS] = ACTIONS(2862), + [anon_sym_DASH] = ACTIONS(2862), + [anon_sym_STAR] = ACTIONS(2862), + [anon_sym_SLASH] = ACTIONS(2862), + [anon_sym_PERCENT] = ACTIONS(2862), + [anon_sym_LT] = ACTIONS(2862), + [anon_sym_GT] = ACTIONS(2862), + [anon_sym_EQ_EQ] = ACTIONS(2862), + [anon_sym_BANG_EQ] = ACTIONS(2862), + [anon_sym_LT_EQ] = ACTIONS(2862), + [anon_sym_GT_EQ] = ACTIONS(2862), + [anon_sym_LBRACK] = ACTIONS(2860), + [anon_sym_struct] = ACTIONS(2862), + [anon_sym_union] = ACTIONS(2862), + [anon_sym_pub] = ACTIONS(2862), + [anon_sym_mut] = ACTIONS(2862), + [anon_sym_enum] = ACTIONS(2862), + [anon_sym_interface] = ACTIONS(2862), + [anon_sym_PLUS_PLUS] = ACTIONS(2862), + [anon_sym_DASH_DASH] = ACTIONS(2862), + [anon_sym_QMARK] = ACTIONS(2862), + [anon_sym_BANG] = ACTIONS(2862), + [anon_sym_go] = ACTIONS(2862), + [anon_sym_spawn] = ACTIONS(2862), + [anon_sym_json_DOTdecode] = ACTIONS(2862), + [anon_sym_LBRACK2] = ACTIONS(2862), + [anon_sym_TILDE] = ACTIONS(2862), + [anon_sym_CARET] = ACTIONS(2862), + [anon_sym_AMP] = ACTIONS(2862), + [anon_sym_LT_DASH] = ACTIONS(2862), + [anon_sym_LT_LT] = ACTIONS(2862), + [anon_sym_GT_GT] = ACTIONS(2862), + [anon_sym_GT_GT_GT] = ACTIONS(2862), + [anon_sym_AMP_CARET] = ACTIONS(2862), + [anon_sym_AMP_AMP] = ACTIONS(2862), + [anon_sym_PIPE_PIPE] = ACTIONS(2862), + [anon_sym_or] = ACTIONS(2862), + [sym_none] = ACTIONS(2862), + [sym_true] = ACTIONS(2862), + [sym_false] = ACTIONS(2862), + [sym_nil] = ACTIONS(2862), + [anon_sym_QMARK_DOT] = ACTIONS(2862), + [anon_sym_POUND_LBRACK] = ACTIONS(2862), + [anon_sym_if] = ACTIONS(2862), + [anon_sym_DOLLARif] = ACTIONS(2862), + [anon_sym_is] = ACTIONS(2862), + [anon_sym_BANGis] = ACTIONS(2862), + [anon_sym_in] = ACTIONS(2862), + [anon_sym_BANGin] = ACTIONS(2862), + [anon_sym_match] = ACTIONS(2862), + [anon_sym_select] = ACTIONS(2862), + [anon_sym_STAR_EQ] = ACTIONS(2862), + [anon_sym_SLASH_EQ] = ACTIONS(2862), + [anon_sym_PERCENT_EQ] = ACTIONS(2862), + [anon_sym_LT_LT_EQ] = ACTIONS(2862), + [anon_sym_GT_GT_EQ] = ACTIONS(2862), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(2862), + [anon_sym_AMP_EQ] = ACTIONS(2862), + [anon_sym_AMP_CARET_EQ] = ACTIONS(2862), + [anon_sym_PLUS_EQ] = ACTIONS(2862), + [anon_sym_DASH_EQ] = ACTIONS(2862), + [anon_sym_PIPE_EQ] = ACTIONS(2862), + [anon_sym_CARET_EQ] = ACTIONS(2862), + [anon_sym_COLON_EQ] = ACTIONS(2862), + [anon_sym_lock] = ACTIONS(2862), + [anon_sym_rlock] = ACTIONS(2862), + [anon_sym_unsafe] = ACTIONS(2862), + [anon_sym_sql] = ACTIONS(2862), + [sym_int_literal] = ACTIONS(2862), + [sym_float_literal] = ACTIONS(2862), + [sym_rune_literal] = ACTIONS(2862), + [sym_pseudo_compile_time_identifier] = ACTIONS(2862), + [anon_sym_shared] = ACTIONS(2862), + [anon_sym_map_LBRACK] = ACTIONS(2862), + [anon_sym_chan] = ACTIONS(2862), + [anon_sym_thread] = ACTIONS(2862), + [anon_sym_atomic] = ACTIONS(2862), + [anon_sym_assert] = ACTIONS(2862), + [anon_sym_defer] = ACTIONS(2862), + [anon_sym_goto] = ACTIONS(2862), + [anon_sym_break] = ACTIONS(2862), + [anon_sym_continue] = ACTIONS(2862), + [anon_sym_return] = ACTIONS(2862), + [anon_sym_DOLLARfor] = ACTIONS(2862), + [anon_sym_for] = ACTIONS(2862), + [anon_sym_POUND] = ACTIONS(2862), + [anon_sym_asm] = ACTIONS(2862), + [anon_sym_AT_LBRACK] = ACTIONS(2862), + [sym___double_quote] = ACTIONS(2862), + [sym___single_quote] = ACTIONS(2862), + [sym___c_double_quote] = ACTIONS(2862), + [sym___c_single_quote] = ACTIONS(2862), + [sym___r_double_quote] = ACTIONS(2862), + [sym___r_single_quote] = ACTIONS(2862), }, [474] = { [sym_line_comment] = STATE(474), [sym_block_comment] = STATE(474), - [ts_builtin_sym_end] = ACTIONS(2505), - [sym_identifier] = ACTIONS(2507), - [anon_sym_LF] = ACTIONS(2507), - [anon_sym_CR] = ACTIONS(2507), - [anon_sym_CR_LF] = ACTIONS(2507), - [anon_sym_SLASH_SLASH] = ACTIONS(497), - [anon_sym_SLASH_STAR] = ACTIONS(499), - [anon_sym_DOT] = ACTIONS(2507), - [anon_sym_as] = ACTIONS(2507), - [anon_sym_LBRACE] = ACTIONS(2507), - [anon_sym_COMMA] = ACTIONS(2507), - [anon_sym_const] = ACTIONS(2507), - [anon_sym_LPAREN] = ACTIONS(2507), - [anon_sym_EQ] = ACTIONS(2507), - [anon_sym___global] = ACTIONS(2507), - [anon_sym_type] = ACTIONS(2507), - [anon_sym_PIPE] = ACTIONS(2507), - [anon_sym_fn] = ACTIONS(2507), - [anon_sym_PLUS] = ACTIONS(2507), - [anon_sym_DASH] = ACTIONS(2507), - [anon_sym_STAR] = ACTIONS(2507), - [anon_sym_SLASH] = ACTIONS(2507), - [anon_sym_PERCENT] = ACTIONS(2507), - [anon_sym_LT] = ACTIONS(2507), - [anon_sym_GT] = ACTIONS(2507), - [anon_sym_EQ_EQ] = ACTIONS(2507), - [anon_sym_BANG_EQ] = ACTIONS(2507), - [anon_sym_LT_EQ] = ACTIONS(2507), - [anon_sym_GT_EQ] = ACTIONS(2507), - [anon_sym_LBRACK] = ACTIONS(2505), - [anon_sym_struct] = ACTIONS(2507), - [anon_sym_union] = ACTIONS(2507), - [anon_sym_pub] = ACTIONS(2507), - [anon_sym_mut] = ACTIONS(2507), - [anon_sym_enum] = ACTIONS(2507), - [anon_sym_interface] = ACTIONS(2507), - [anon_sym_PLUS_PLUS] = ACTIONS(2507), - [anon_sym_DASH_DASH] = ACTIONS(2507), - [anon_sym_QMARK] = ACTIONS(2507), - [anon_sym_BANG] = ACTIONS(2507), - [anon_sym_go] = ACTIONS(2507), - [anon_sym_spawn] = ACTIONS(2507), - [anon_sym_json_DOTdecode] = ACTIONS(2507), - [anon_sym_LBRACK2] = ACTIONS(2507), - [anon_sym_TILDE] = ACTIONS(2507), - [anon_sym_CARET] = ACTIONS(2507), - [anon_sym_AMP] = ACTIONS(2507), - [anon_sym_LT_DASH] = ACTIONS(2507), - [anon_sym_LT_LT] = ACTIONS(2507), - [anon_sym_GT_GT] = ACTIONS(2507), - [anon_sym_GT_GT_GT] = ACTIONS(2507), - [anon_sym_AMP_CARET] = ACTIONS(2507), - [anon_sym_AMP_AMP] = ACTIONS(2507), - [anon_sym_PIPE_PIPE] = ACTIONS(2507), - [anon_sym_or] = ACTIONS(2507), - [sym_none] = ACTIONS(2507), - [sym_true] = ACTIONS(2507), - [sym_false] = ACTIONS(2507), - [sym_nil] = ACTIONS(2507), - [anon_sym_QMARK_DOT] = ACTIONS(2507), - [anon_sym_POUND_LBRACK] = ACTIONS(2507), - [anon_sym_if] = ACTIONS(2507), - [anon_sym_DOLLARif] = ACTIONS(2507), - [anon_sym_is] = ACTIONS(2507), - [anon_sym_BANGis] = ACTIONS(2507), - [anon_sym_in] = ACTIONS(2507), - [anon_sym_BANGin] = ACTIONS(2507), - [anon_sym_match] = ACTIONS(2507), - [anon_sym_select] = ACTIONS(2507), - [anon_sym_STAR_EQ] = ACTIONS(2507), - [anon_sym_SLASH_EQ] = ACTIONS(2507), - [anon_sym_PERCENT_EQ] = ACTIONS(2507), - [anon_sym_LT_LT_EQ] = ACTIONS(2507), - [anon_sym_GT_GT_EQ] = ACTIONS(2507), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(2507), - [anon_sym_AMP_EQ] = ACTIONS(2507), - [anon_sym_AMP_CARET_EQ] = ACTIONS(2507), - [anon_sym_PLUS_EQ] = ACTIONS(2507), - [anon_sym_DASH_EQ] = ACTIONS(2507), - [anon_sym_PIPE_EQ] = ACTIONS(2507), - [anon_sym_CARET_EQ] = ACTIONS(2507), - [anon_sym_COLON_EQ] = ACTIONS(2507), - [anon_sym_lock] = ACTIONS(2507), - [anon_sym_rlock] = ACTIONS(2507), - [anon_sym_unsafe] = ACTIONS(2507), - [anon_sym_sql] = ACTIONS(2507), - [sym_int_literal] = ACTIONS(2507), - [sym_float_literal] = ACTIONS(2507), - [sym_rune_literal] = ACTIONS(2507), - [sym_pseudo_compile_time_identifier] = ACTIONS(2507), - [anon_sym_shared] = ACTIONS(2507), - [anon_sym_map_LBRACK] = ACTIONS(2507), - [anon_sym_chan] = ACTIONS(2507), - [anon_sym_thread] = ACTIONS(2507), - [anon_sym_atomic] = ACTIONS(2507), - [anon_sym_assert] = ACTIONS(2507), - [anon_sym_defer] = ACTIONS(2507), - [anon_sym_goto] = ACTIONS(2507), - [anon_sym_break] = ACTIONS(2507), - [anon_sym_continue] = ACTIONS(2507), - [anon_sym_return] = ACTIONS(2507), - [anon_sym_DOLLARfor] = ACTIONS(2507), - [anon_sym_for] = ACTIONS(2507), - [anon_sym_POUND] = ACTIONS(2507), - [anon_sym_asm] = ACTIONS(2507), - [anon_sym_AT_LBRACK] = ACTIONS(2507), - [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), + [sym__expression] = STATE(1273), + [sym__expression_without_blocks] = STATE(1318), + [sym__expression_with_blocks] = STATE(1318), + [sym_inc_expression] = STATE(1319), + [sym_dec_expression] = STATE(1319), + [sym_or_block_expression] = STATE(1319), + [sym_option_propagation_expression] = STATE(1319), + [sym_result_propagation_expression] = STATE(1319), + [sym_anon_struct_value_expression] = STATE(1320), + [sym_go_expression] = STATE(1319), + [sym_spawn_expression] = STATE(1319), + [sym_parenthesized_expression] = STATE(1319), + [sym_call_expression] = STATE(1319), + [sym_type_initializer] = STATE(1320), + [sym_function_literal] = STATE(1319), + [sym_reference_expression] = STATE(1298), + [sym_type_reference_expression] = STATE(3460), + [sym_unary_expression] = STATE(1319), + [sym_receive_expression] = STATE(1319), + [sym_binary_expression] = STATE(1319), + [sym_as_type_cast_expression] = STATE(1319), + [sym__max_group] = STATE(1319), + [sym_literal] = STATE(1314), + [sym_map_init_expression] = STATE(1320), + [sym_array_creation] = STATE(1319), + [sym_fixed_array_creation] = STATE(1319), + [sym_selector_expression] = STATE(1319), + [sym_index_expression] = STATE(1319), + [sym_slice_expression] = STATE(1319), + [sym_if_expression] = STATE(1320), + [sym_compile_time_if_expression] = STATE(1320), + [sym_is_expression] = STATE(1319), + [sym_in_expression] = STATE(1319), + [sym_enum_fetch] = STATE(1319), + [sym_match_expression] = STATE(1320), + [sym_select_expression] = STATE(1320), + [sym_lock_expression] = STATE(1320), + [sym_unsafe_expression] = STATE(1320), + [sym_sql_expression] = STATE(1320), + [sym_c_string_literal] = STATE(1291), + [sym_raw_string_literal] = STATE(1291), + [sym_interpreted_string_literal] = STATE(1291), + [sym_mutability_modifiers] = STATE(639), + [sym_plain_type] = STATE(4307), + [sym__plain_type_without_special] = STATE(2360), + [sym_anon_struct_type] = STATE(2362), + [sym_multi_return_type] = STATE(2360), + [sym_result_type] = STATE(2360), + [sym_option_type] = STATE(2360), + [sym_qualified_type] = STATE(3460), + [sym_fixed_array_type] = STATE(2362), + [sym_array_type] = STATE(2362), + [sym_pointer_type] = STATE(2362), + [sym_wrong_pointer_type] = STATE(2362), + [sym_map_type] = STATE(2362), + [sym_channel_type] = STATE(2362), + [sym_shared_type] = STATE(2362), + [sym_thread_type] = STATE(2362), + [sym_atomic_type] = STATE(2362), + [sym_generic_type] = STATE(2362), + [sym_function_type] = STATE(2362), + [aux_sym__array_repeat1] = STATE(405), + [sym_identifier] = ACTIONS(1360), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(1362), + [anon_sym_LBRACE] = ACTIONS(1364), + [anon_sym_LPAREN] = ACTIONS(1366), + [anon_sym_fn] = ACTIONS(1368), + [anon_sym_PLUS] = ACTIONS(1370), + [anon_sym_DASH] = ACTIONS(1370), + [anon_sym_STAR] = ACTIONS(1372), + [anon_sym_RBRACK] = ACTIONS(2864), + [anon_sym_struct] = ACTIONS(1376), + [anon_sym_mut] = ACTIONS(41), + [anon_sym_QMARK] = ACTIONS(47), + [anon_sym_BANG] = ACTIONS(1378), + [anon_sym_go] = ACTIONS(1380), + [anon_sym_spawn] = ACTIONS(1382), + [anon_sym_json_DOTdecode] = ACTIONS(1384), + [anon_sym_LBRACK2] = ACTIONS(1386), + [anon_sym_TILDE] = ACTIONS(1370), + [anon_sym_CARET] = ACTIONS(1370), + [anon_sym_AMP] = ACTIONS(1388), + [anon_sym_LT_DASH] = ACTIONS(1390), + [sym_none] = ACTIONS(1392), + [sym_true] = ACTIONS(1392), + [sym_false] = ACTIONS(1392), + [sym_nil] = ACTIONS(1392), + [anon_sym_if] = ACTIONS(1865), + [anon_sym_DOLLARif] = ACTIONS(1396), + [anon_sym_match] = ACTIONS(1398), + [anon_sym_select] = ACTIONS(1400), + [anon_sym_lock] = ACTIONS(1402), + [anon_sym_rlock] = ACTIONS(1402), + [anon_sym_unsafe] = ACTIONS(1871), + [anon_sym_sql] = ACTIONS(1406), + [sym_int_literal] = ACTIONS(1392), + [sym_float_literal] = ACTIONS(1410), + [sym_rune_literal] = ACTIONS(1410), + [sym_pseudo_compile_time_identifier] = ACTIONS(1412), + [anon_sym_shared] = ACTIONS(83), + [anon_sym_map_LBRACK] = ACTIONS(85), + [anon_sym_chan] = ACTIONS(87), + [anon_sym_thread] = ACTIONS(89), + [anon_sym_atomic] = ACTIONS(91), + [sym___double_quote] = ACTIONS(1414), + [sym___single_quote] = ACTIONS(1416), + [sym___c_double_quote] = ACTIONS(1418), + [sym___c_single_quote] = ACTIONS(1420), + [sym___r_double_quote] = ACTIONS(1422), + [sym___r_single_quote] = ACTIONS(1424), }, [475] = { [sym_line_comment] = STATE(475), [sym_block_comment] = STATE(475), - [ts_builtin_sym_end] = ACTIONS(2870), - [sym_identifier] = ACTIONS(2872), - [anon_sym_LF] = ACTIONS(2872), - [anon_sym_CR] = ACTIONS(2872), - [anon_sym_CR_LF] = ACTIONS(2872), - [anon_sym_SLASH_SLASH] = ACTIONS(497), - [anon_sym_SLASH_STAR] = ACTIONS(499), - [anon_sym_DOT] = ACTIONS(2872), - [anon_sym_as] = ACTIONS(2872), - [anon_sym_LBRACE] = ACTIONS(2872), - [anon_sym_COMMA] = ACTIONS(2872), - [anon_sym_const] = ACTIONS(2872), - [anon_sym_LPAREN] = ACTIONS(2872), - [anon_sym_EQ] = ACTIONS(2872), - [anon_sym___global] = ACTIONS(2872), - [anon_sym_type] = ACTIONS(2872), - [anon_sym_PIPE] = ACTIONS(2872), - [anon_sym_fn] = ACTIONS(2872), - [anon_sym_PLUS] = ACTIONS(2872), - [anon_sym_DASH] = ACTIONS(2872), - [anon_sym_STAR] = ACTIONS(2872), - [anon_sym_SLASH] = ACTIONS(2872), - [anon_sym_PERCENT] = ACTIONS(2872), - [anon_sym_LT] = ACTIONS(2872), - [anon_sym_GT] = ACTIONS(2872), - [anon_sym_EQ_EQ] = ACTIONS(2872), - [anon_sym_BANG_EQ] = ACTIONS(2872), - [anon_sym_LT_EQ] = ACTIONS(2872), - [anon_sym_GT_EQ] = ACTIONS(2872), - [anon_sym_LBRACK] = ACTIONS(2870), - [anon_sym_struct] = ACTIONS(2872), - [anon_sym_union] = ACTIONS(2872), - [anon_sym_pub] = ACTIONS(2872), - [anon_sym_mut] = ACTIONS(2872), - [anon_sym_enum] = ACTIONS(2872), - [anon_sym_interface] = ACTIONS(2872), - [anon_sym_PLUS_PLUS] = ACTIONS(2872), - [anon_sym_DASH_DASH] = ACTIONS(2872), - [anon_sym_QMARK] = ACTIONS(2872), - [anon_sym_BANG] = ACTIONS(2872), - [anon_sym_go] = ACTIONS(2872), - [anon_sym_spawn] = ACTIONS(2872), - [anon_sym_json_DOTdecode] = ACTIONS(2872), - [anon_sym_LBRACK2] = ACTIONS(2872), - [anon_sym_TILDE] = ACTIONS(2872), - [anon_sym_CARET] = ACTIONS(2872), - [anon_sym_AMP] = ACTIONS(2872), - [anon_sym_LT_DASH] = ACTIONS(2872), - [anon_sym_LT_LT] = ACTIONS(2872), - [anon_sym_GT_GT] = ACTIONS(2872), - [anon_sym_GT_GT_GT] = ACTIONS(2872), - [anon_sym_AMP_CARET] = ACTIONS(2872), - [anon_sym_AMP_AMP] = ACTIONS(2872), - [anon_sym_PIPE_PIPE] = ACTIONS(2872), - [anon_sym_or] = ACTIONS(2872), - [sym_none] = ACTIONS(2872), - [sym_true] = ACTIONS(2872), - [sym_false] = ACTIONS(2872), - [sym_nil] = ACTIONS(2872), - [anon_sym_QMARK_DOT] = ACTIONS(2872), - [anon_sym_POUND_LBRACK] = ACTIONS(2872), - [anon_sym_if] = ACTIONS(2872), - [anon_sym_DOLLARif] = ACTIONS(2872), - [anon_sym_is] = ACTIONS(2872), - [anon_sym_BANGis] = ACTIONS(2872), - [anon_sym_in] = ACTIONS(2872), - [anon_sym_BANGin] = ACTIONS(2872), - [anon_sym_match] = ACTIONS(2872), - [anon_sym_select] = ACTIONS(2872), - [anon_sym_STAR_EQ] = ACTIONS(2872), - [anon_sym_SLASH_EQ] = ACTIONS(2872), - [anon_sym_PERCENT_EQ] = ACTIONS(2872), - [anon_sym_LT_LT_EQ] = ACTIONS(2872), - [anon_sym_GT_GT_EQ] = ACTIONS(2872), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(2872), - [anon_sym_AMP_EQ] = ACTIONS(2872), - [anon_sym_AMP_CARET_EQ] = ACTIONS(2872), - [anon_sym_PLUS_EQ] = ACTIONS(2872), - [anon_sym_DASH_EQ] = ACTIONS(2872), - [anon_sym_PIPE_EQ] = ACTIONS(2872), - [anon_sym_CARET_EQ] = ACTIONS(2872), - [anon_sym_COLON_EQ] = ACTIONS(2872), - [anon_sym_lock] = ACTIONS(2872), - [anon_sym_rlock] = ACTIONS(2872), - [anon_sym_unsafe] = ACTIONS(2872), - [anon_sym_sql] = ACTIONS(2872), - [sym_int_literal] = ACTIONS(2872), - [sym_float_literal] = ACTIONS(2872), - [sym_rune_literal] = ACTIONS(2872), - [sym_pseudo_compile_time_identifier] = ACTIONS(2872), - [anon_sym_shared] = ACTIONS(2872), - [anon_sym_map_LBRACK] = ACTIONS(2872), - [anon_sym_chan] = ACTIONS(2872), - [anon_sym_thread] = ACTIONS(2872), - [anon_sym_atomic] = ACTIONS(2872), - [anon_sym_assert] = ACTIONS(2872), - [anon_sym_defer] = ACTIONS(2872), - [anon_sym_goto] = ACTIONS(2872), - [anon_sym_break] = ACTIONS(2872), - [anon_sym_continue] = ACTIONS(2872), - [anon_sym_return] = ACTIONS(2872), - [anon_sym_DOLLARfor] = ACTIONS(2872), - [anon_sym_for] = ACTIONS(2872), - [anon_sym_POUND] = ACTIONS(2872), - [anon_sym_asm] = ACTIONS(2872), - [anon_sym_AT_LBRACK] = ACTIONS(2872), - [sym___double_quote] = ACTIONS(2872), - [sym___single_quote] = ACTIONS(2872), - [sym___c_double_quote] = ACTIONS(2872), - [sym___c_single_quote] = ACTIONS(2872), - [sym___r_double_quote] = ACTIONS(2872), - [sym___r_single_quote] = ACTIONS(2872), - }, - [476] = { - [sym_line_comment] = STATE(476), - [sym_block_comment] = STATE(476), - [sym__expression] = STATE(1268), - [sym__expression_without_blocks] = STATE(1312), - [sym__expression_with_blocks] = STATE(1312), - [sym_inc_expression] = STATE(1313), - [sym_dec_expression] = STATE(1313), - [sym_or_block_expression] = STATE(1313), - [sym_option_propagation_expression] = STATE(1313), - [sym_result_propagation_expression] = STATE(1313), - [sym_anon_struct_value_expression] = STATE(1314), - [sym_go_expression] = STATE(1313), - [sym_spawn_expression] = STATE(1313), - [sym_parenthesized_expression] = STATE(1313), - [sym_call_expression] = STATE(1313), - [sym_type_initializer] = STATE(1314), - [sym_function_literal] = STATE(1313), - [sym_reference_expression] = STATE(1394), - [sym_type_reference_expression] = STATE(3541), - [sym_unary_expression] = STATE(1313), - [sym_receive_expression] = STATE(1313), - [sym_binary_expression] = STATE(1313), - [sym_as_type_cast_expression] = STATE(1313), - [sym__max_group] = STATE(1313), - [sym_literal] = STATE(1308), - [sym_map_init_expression] = STATE(1314), - [sym_array_creation] = STATE(1313), - [sym_fixed_array_creation] = STATE(1313), - [sym_selector_expression] = STATE(1393), - [sym_index_expression] = STATE(1313), - [sym_slice_expression] = STATE(1313), - [sym_if_expression] = STATE(1314), - [sym_compile_time_if_expression] = STATE(1314), - [sym_is_expression] = STATE(1313), - [sym_in_expression] = STATE(1313), - [sym_enum_fetch] = STATE(1313), - [sym_match_expression] = STATE(1314), - [sym_select_expression] = STATE(1314), - [sym_lock_expression] = STATE(1314), - [sym_unsafe_expression] = STATE(1314), - [sym_sql_expression] = STATE(1314), - [sym_c_string_literal] = STATE(1286), - [sym_raw_string_literal] = STATE(1286), - [sym_interpreted_string_literal] = STATE(1286), - [sym_mutability_modifiers] = STATE(699), - [sym_plain_type] = STATE(4192), - [sym__plain_type_without_special] = STATE(2302), - [sym_anon_struct_type] = STATE(2303), - [sym_multi_return_type] = STATE(2302), - [sym_result_type] = STATE(2302), - [sym_option_type] = STATE(2302), - [sym_qualified_type] = STATE(3541), - [sym_fixed_array_type] = STATE(2303), - [sym_array_type] = STATE(2303), - [sym_pointer_type] = STATE(2303), - [sym_wrong_pointer_type] = STATE(2303), - [sym_map_type] = STATE(2303), - [sym_channel_type] = STATE(2303), - [sym_shared_type] = STATE(2303), - [sym_thread_type] = STATE(2303), - [sym_atomic_type] = STATE(2303), - [sym_generic_type] = STATE(2303), - [sym_function_type] = STATE(2303), - [aux_sym__array_repeat1] = STATE(377), - [sym_identifier] = ACTIONS(1354), + [sym__expression] = STATE(1273), + [sym__expression_without_blocks] = STATE(1318), + [sym__expression_with_blocks] = STATE(1318), + [sym_inc_expression] = STATE(1319), + [sym_dec_expression] = STATE(1319), + [sym_or_block_expression] = STATE(1319), + [sym_option_propagation_expression] = STATE(1319), + [sym_result_propagation_expression] = STATE(1319), + [sym_anon_struct_value_expression] = STATE(1320), + [sym_go_expression] = STATE(1319), + [sym_spawn_expression] = STATE(1319), + [sym_parenthesized_expression] = STATE(1319), + [sym_call_expression] = STATE(1319), + [sym_type_initializer] = STATE(1320), + [sym_function_literal] = STATE(1319), + [sym_reference_expression] = STATE(1397), + [sym_type_reference_expression] = STATE(3460), + [sym_unary_expression] = STATE(1319), + [sym_receive_expression] = STATE(1319), + [sym_binary_expression] = STATE(1319), + [sym_as_type_cast_expression] = STATE(1319), + [sym__max_group] = STATE(1319), + [sym_literal] = STATE(1314), + [sym_map_init_expression] = STATE(1320), + [sym_array_creation] = STATE(1319), + [sym_fixed_array_creation] = STATE(1319), + [sym_selector_expression] = STATE(1399), + [sym_index_expression] = STATE(1319), + [sym_slice_expression] = STATE(1319), + [sym_if_expression] = STATE(1320), + [sym_compile_time_if_expression] = STATE(1320), + [sym_is_expression] = STATE(1319), + [sym_in_expression] = STATE(1319), + [sym_enum_fetch] = STATE(1319), + [sym_match_expression] = STATE(1320), + [sym_select_expression] = STATE(1320), + [sym_lock_expression] = STATE(1320), + [sym_unsafe_expression] = STATE(1320), + [sym_sql_expression] = STATE(1320), + [sym_c_string_literal] = STATE(1291), + [sym_raw_string_literal] = STATE(1291), + [sym_interpreted_string_literal] = STATE(1291), + [sym_mutability_modifiers] = STATE(639), + [sym_plain_type] = STATE(4307), + [sym__plain_type_without_special] = STATE(2360), + [sym_anon_struct_type] = STATE(2362), + [sym_multi_return_type] = STATE(2360), + [sym_result_type] = STATE(2360), + [sym_option_type] = STATE(2360), + [sym_qualified_type] = STATE(3460), + [sym_fixed_array_type] = STATE(2362), + [sym_array_type] = STATE(2362), + [sym_pointer_type] = STATE(2362), + [sym_wrong_pointer_type] = STATE(2362), + [sym_map_type] = STATE(2362), + [sym_channel_type] = STATE(2362), + [sym_shared_type] = STATE(2362), + [sym_thread_type] = STATE(2362), + [sym_atomic_type] = STATE(2362), + [sym_generic_type] = STATE(2362), + [sym_function_type] = STATE(2362), + [aux_sym__array_repeat1] = STATE(502), + [sym_identifier] = ACTIONS(1360), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1356), - [anon_sym_LBRACE] = ACTIONS(1358), - [anon_sym_LPAREN] = ACTIONS(1360), - [anon_sym_fn] = ACTIONS(1362), - [anon_sym_PLUS] = ACTIONS(1364), - [anon_sym_DASH] = ACTIONS(1364), - [anon_sym_STAR] = ACTIONS(1366), - [anon_sym_RBRACK] = ACTIONS(2874), - [anon_sym_struct] = ACTIONS(1370), + [anon_sym_DOT] = ACTIONS(1362), + [anon_sym_LBRACE] = ACTIONS(1364), + [anon_sym_LPAREN] = ACTIONS(1366), + [anon_sym_fn] = ACTIONS(1368), + [anon_sym_PLUS] = ACTIONS(1370), + [anon_sym_DASH] = ACTIONS(1370), + [anon_sym_STAR] = ACTIONS(1372), + [anon_sym_RBRACK] = ACTIONS(2866), + [anon_sym_struct] = ACTIONS(1376), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(1372), - [anon_sym_go] = ACTIONS(1374), - [anon_sym_spawn] = ACTIONS(1376), - [anon_sym_json_DOTdecode] = ACTIONS(1378), - [anon_sym_LBRACK2] = ACTIONS(1380), - [anon_sym_TILDE] = ACTIONS(1364), - [anon_sym_CARET] = ACTIONS(1364), - [anon_sym_AMP] = ACTIONS(1382), - [anon_sym_LT_DASH] = ACTIONS(1384), - [sym_none] = ACTIONS(1386), - [sym_true] = ACTIONS(1386), - [sym_false] = ACTIONS(1386), - [sym_nil] = ACTIONS(1386), - [anon_sym_if] = ACTIONS(1877), - [anon_sym_DOLLARif] = ACTIONS(1390), - [anon_sym_match] = ACTIONS(1392), - [anon_sym_select] = ACTIONS(1394), - [anon_sym_lock] = ACTIONS(1396), - [anon_sym_rlock] = ACTIONS(1396), - [anon_sym_unsafe] = ACTIONS(1883), - [anon_sym_sql] = ACTIONS(1400), - [sym_int_literal] = ACTIONS(1402), - [sym_float_literal] = ACTIONS(1404), - [sym_rune_literal] = ACTIONS(1404), - [sym_pseudo_compile_time_identifier] = ACTIONS(1406), + [anon_sym_BANG] = ACTIONS(1378), + [anon_sym_go] = ACTIONS(1380), + [anon_sym_spawn] = ACTIONS(1382), + [anon_sym_json_DOTdecode] = ACTIONS(1384), + [anon_sym_LBRACK2] = ACTIONS(1386), + [anon_sym_TILDE] = ACTIONS(1370), + [anon_sym_CARET] = ACTIONS(1370), + [anon_sym_AMP] = ACTIONS(1388), + [anon_sym_LT_DASH] = ACTIONS(1390), + [sym_none] = ACTIONS(1392), + [sym_true] = ACTIONS(1392), + [sym_false] = ACTIONS(1392), + [sym_nil] = ACTIONS(1392), + [anon_sym_if] = ACTIONS(1865), + [anon_sym_DOLLARif] = ACTIONS(1396), + [anon_sym_match] = ACTIONS(1398), + [anon_sym_select] = ACTIONS(1400), + [anon_sym_lock] = ACTIONS(1402), + [anon_sym_rlock] = ACTIONS(1402), + [anon_sym_unsafe] = ACTIONS(1871), + [anon_sym_sql] = ACTIONS(1406), + [sym_int_literal] = ACTIONS(1408), + [sym_float_literal] = ACTIONS(1410), + [sym_rune_literal] = ACTIONS(1410), + [sym_pseudo_compile_time_identifier] = ACTIONS(1412), [anon_sym_shared] = ACTIONS(83), [anon_sym_map_LBRACK] = ACTIONS(85), [anon_sym_chan] = ACTIONS(87), [anon_sym_thread] = ACTIONS(89), [anon_sym_atomic] = ACTIONS(91), - [sym___double_quote] = ACTIONS(1408), - [sym___single_quote] = ACTIONS(1410), - [sym___c_double_quote] = ACTIONS(1412), - [sym___c_single_quote] = ACTIONS(1414), - [sym___r_double_quote] = ACTIONS(1416), - [sym___r_single_quote] = ACTIONS(1418), + [sym___double_quote] = ACTIONS(1414), + [sym___single_quote] = ACTIONS(1416), + [sym___c_double_quote] = ACTIONS(1418), + [sym___c_single_quote] = ACTIONS(1420), + [sym___r_double_quote] = ACTIONS(1422), + [sym___r_single_quote] = ACTIONS(1424), + }, + [476] = { + [sym_line_comment] = STATE(476), + [sym_block_comment] = STATE(476), + [ts_builtin_sym_end] = ACTIONS(2868), + [sym_identifier] = ACTIONS(2870), + [anon_sym_LF] = ACTIONS(2870), + [anon_sym_CR] = ACTIONS(2870), + [anon_sym_CR_LF] = ACTIONS(2870), + [anon_sym_SLASH_SLASH] = ACTIONS(497), + [anon_sym_SLASH_STAR] = ACTIONS(499), + [anon_sym_DOT] = ACTIONS(2870), + [anon_sym_as] = ACTIONS(2870), + [anon_sym_LBRACE] = ACTIONS(2870), + [anon_sym_COMMA] = ACTIONS(2870), + [anon_sym_const] = ACTIONS(2870), + [anon_sym_LPAREN] = ACTIONS(2870), + [anon_sym_EQ] = ACTIONS(2870), + [anon_sym___global] = ACTIONS(2870), + [anon_sym_type] = ACTIONS(2870), + [anon_sym_PIPE] = ACTIONS(2870), + [anon_sym_fn] = ACTIONS(2870), + [anon_sym_PLUS] = ACTIONS(2870), + [anon_sym_DASH] = ACTIONS(2870), + [anon_sym_STAR] = ACTIONS(2870), + [anon_sym_SLASH] = ACTIONS(2870), + [anon_sym_PERCENT] = ACTIONS(2870), + [anon_sym_LT] = ACTIONS(2870), + [anon_sym_GT] = ACTIONS(2870), + [anon_sym_EQ_EQ] = ACTIONS(2870), + [anon_sym_BANG_EQ] = ACTIONS(2870), + [anon_sym_LT_EQ] = ACTIONS(2870), + [anon_sym_GT_EQ] = ACTIONS(2870), + [anon_sym_LBRACK] = ACTIONS(2868), + [anon_sym_struct] = ACTIONS(2870), + [anon_sym_union] = ACTIONS(2870), + [anon_sym_pub] = ACTIONS(2870), + [anon_sym_mut] = ACTIONS(2870), + [anon_sym_enum] = ACTIONS(2870), + [anon_sym_interface] = ACTIONS(2870), + [anon_sym_PLUS_PLUS] = ACTIONS(2870), + [anon_sym_DASH_DASH] = ACTIONS(2870), + [anon_sym_QMARK] = ACTIONS(2870), + [anon_sym_BANG] = ACTIONS(2870), + [anon_sym_go] = ACTIONS(2870), + [anon_sym_spawn] = ACTIONS(2870), + [anon_sym_json_DOTdecode] = ACTIONS(2870), + [anon_sym_LBRACK2] = ACTIONS(2870), + [anon_sym_TILDE] = ACTIONS(2870), + [anon_sym_CARET] = ACTIONS(2870), + [anon_sym_AMP] = ACTIONS(2870), + [anon_sym_LT_DASH] = ACTIONS(2870), + [anon_sym_LT_LT] = ACTIONS(2870), + [anon_sym_GT_GT] = ACTIONS(2870), + [anon_sym_GT_GT_GT] = ACTIONS(2870), + [anon_sym_AMP_CARET] = ACTIONS(2870), + [anon_sym_AMP_AMP] = ACTIONS(2870), + [anon_sym_PIPE_PIPE] = ACTIONS(2870), + [anon_sym_or] = ACTIONS(2870), + [sym_none] = ACTIONS(2870), + [sym_true] = ACTIONS(2870), + [sym_false] = ACTIONS(2870), + [sym_nil] = ACTIONS(2870), + [anon_sym_QMARK_DOT] = ACTIONS(2870), + [anon_sym_POUND_LBRACK] = ACTIONS(2870), + [anon_sym_if] = ACTIONS(2870), + [anon_sym_DOLLARif] = ACTIONS(2870), + [anon_sym_is] = ACTIONS(2870), + [anon_sym_BANGis] = ACTIONS(2870), + [anon_sym_in] = ACTIONS(2870), + [anon_sym_BANGin] = ACTIONS(2870), + [anon_sym_match] = ACTIONS(2870), + [anon_sym_select] = ACTIONS(2870), + [anon_sym_STAR_EQ] = ACTIONS(2870), + [anon_sym_SLASH_EQ] = ACTIONS(2870), + [anon_sym_PERCENT_EQ] = ACTIONS(2870), + [anon_sym_LT_LT_EQ] = ACTIONS(2870), + [anon_sym_GT_GT_EQ] = ACTIONS(2870), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(2870), + [anon_sym_AMP_EQ] = ACTIONS(2870), + [anon_sym_AMP_CARET_EQ] = ACTIONS(2870), + [anon_sym_PLUS_EQ] = ACTIONS(2870), + [anon_sym_DASH_EQ] = ACTIONS(2870), + [anon_sym_PIPE_EQ] = ACTIONS(2870), + [anon_sym_CARET_EQ] = ACTIONS(2870), + [anon_sym_COLON_EQ] = ACTIONS(2870), + [anon_sym_lock] = ACTIONS(2870), + [anon_sym_rlock] = ACTIONS(2870), + [anon_sym_unsafe] = ACTIONS(2870), + [anon_sym_sql] = ACTIONS(2870), + [sym_int_literal] = ACTIONS(2870), + [sym_float_literal] = ACTIONS(2870), + [sym_rune_literal] = ACTIONS(2870), + [sym_pseudo_compile_time_identifier] = ACTIONS(2870), + [anon_sym_shared] = ACTIONS(2870), + [anon_sym_map_LBRACK] = ACTIONS(2870), + [anon_sym_chan] = ACTIONS(2870), + [anon_sym_thread] = ACTIONS(2870), + [anon_sym_atomic] = ACTIONS(2870), + [anon_sym_assert] = ACTIONS(2870), + [anon_sym_defer] = ACTIONS(2870), + [anon_sym_goto] = ACTIONS(2870), + [anon_sym_break] = ACTIONS(2870), + [anon_sym_continue] = ACTIONS(2870), + [anon_sym_return] = ACTIONS(2870), + [anon_sym_DOLLARfor] = ACTIONS(2870), + [anon_sym_for] = ACTIONS(2870), + [anon_sym_POUND] = ACTIONS(2870), + [anon_sym_asm] = ACTIONS(2870), + [anon_sym_AT_LBRACK] = ACTIONS(2870), + [sym___double_quote] = ACTIONS(2870), + [sym___single_quote] = ACTIONS(2870), + [sym___c_double_quote] = ACTIONS(2870), + [sym___c_single_quote] = ACTIONS(2870), + [sym___r_double_quote] = ACTIONS(2870), + [sym___r_single_quote] = ACTIONS(2870), }, [477] = { [sym_line_comment] = STATE(477), [sym_block_comment] = STATE(477), - [ts_builtin_sym_end] = ACTIONS(2876), - [sym_identifier] = ACTIONS(2878), - [anon_sym_LF] = ACTIONS(2878), - [anon_sym_CR] = ACTIONS(2878), - [anon_sym_CR_LF] = ACTIONS(2878), + [ts_builtin_sym_end] = ACTIONS(2872), + [sym_identifier] = ACTIONS(2874), + [anon_sym_LF] = ACTIONS(2874), + [anon_sym_CR] = ACTIONS(2874), + [anon_sym_CR_LF] = ACTIONS(2874), [anon_sym_SLASH_SLASH] = ACTIONS(497), [anon_sym_SLASH_STAR] = ACTIONS(499), - [anon_sym_DOT] = ACTIONS(2878), - [anon_sym_as] = ACTIONS(2878), - [anon_sym_LBRACE] = ACTIONS(2878), - [anon_sym_COMMA] = ACTIONS(2878), - [anon_sym_const] = ACTIONS(2878), - [anon_sym_LPAREN] = ACTIONS(2878), - [anon_sym_EQ] = ACTIONS(2878), - [anon_sym___global] = ACTIONS(2878), - [anon_sym_type] = ACTIONS(2878), - [anon_sym_PIPE] = ACTIONS(2878), - [anon_sym_fn] = ACTIONS(2878), - [anon_sym_PLUS] = ACTIONS(2878), - [anon_sym_DASH] = ACTIONS(2878), - [anon_sym_STAR] = ACTIONS(2878), - [anon_sym_SLASH] = ACTIONS(2878), - [anon_sym_PERCENT] = ACTIONS(2878), - [anon_sym_LT] = ACTIONS(2878), - [anon_sym_GT] = ACTIONS(2878), - [anon_sym_EQ_EQ] = ACTIONS(2878), - [anon_sym_BANG_EQ] = ACTIONS(2878), - [anon_sym_LT_EQ] = ACTIONS(2878), - [anon_sym_GT_EQ] = ACTIONS(2878), - [anon_sym_LBRACK] = ACTIONS(2876), - [anon_sym_struct] = ACTIONS(2878), - [anon_sym_union] = ACTIONS(2878), - [anon_sym_pub] = ACTIONS(2878), - [anon_sym_mut] = ACTIONS(2878), - [anon_sym_enum] = ACTIONS(2878), - [anon_sym_interface] = ACTIONS(2878), - [anon_sym_PLUS_PLUS] = ACTIONS(2878), - [anon_sym_DASH_DASH] = ACTIONS(2878), - [anon_sym_QMARK] = ACTIONS(2878), - [anon_sym_BANG] = ACTIONS(2878), - [anon_sym_go] = ACTIONS(2878), - [anon_sym_spawn] = ACTIONS(2878), - [anon_sym_json_DOTdecode] = ACTIONS(2878), - [anon_sym_LBRACK2] = ACTIONS(2878), - [anon_sym_TILDE] = ACTIONS(2878), - [anon_sym_CARET] = ACTIONS(2878), - [anon_sym_AMP] = ACTIONS(2878), - [anon_sym_LT_DASH] = ACTIONS(2878), - [anon_sym_LT_LT] = ACTIONS(2878), - [anon_sym_GT_GT] = ACTIONS(2878), - [anon_sym_GT_GT_GT] = ACTIONS(2878), - [anon_sym_AMP_CARET] = ACTIONS(2878), - [anon_sym_AMP_AMP] = ACTIONS(2878), - [anon_sym_PIPE_PIPE] = ACTIONS(2878), - [anon_sym_or] = ACTIONS(2878), - [sym_none] = ACTIONS(2878), - [sym_true] = ACTIONS(2878), - [sym_false] = ACTIONS(2878), - [sym_nil] = ACTIONS(2878), - [anon_sym_QMARK_DOT] = ACTIONS(2878), - [anon_sym_POUND_LBRACK] = ACTIONS(2878), - [anon_sym_if] = ACTIONS(2878), - [anon_sym_DOLLARif] = ACTIONS(2878), - [anon_sym_is] = ACTIONS(2878), - [anon_sym_BANGis] = ACTIONS(2878), - [anon_sym_in] = ACTIONS(2878), - [anon_sym_BANGin] = ACTIONS(2878), - [anon_sym_match] = ACTIONS(2878), - [anon_sym_select] = ACTIONS(2878), - [anon_sym_STAR_EQ] = ACTIONS(2878), - [anon_sym_SLASH_EQ] = ACTIONS(2878), - [anon_sym_PERCENT_EQ] = ACTIONS(2878), - [anon_sym_LT_LT_EQ] = ACTIONS(2878), - [anon_sym_GT_GT_EQ] = ACTIONS(2878), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(2878), - [anon_sym_AMP_EQ] = ACTIONS(2878), - [anon_sym_AMP_CARET_EQ] = ACTIONS(2878), - [anon_sym_PLUS_EQ] = ACTIONS(2878), - [anon_sym_DASH_EQ] = ACTIONS(2878), - [anon_sym_PIPE_EQ] = ACTIONS(2878), - [anon_sym_CARET_EQ] = ACTIONS(2878), - [anon_sym_COLON_EQ] = ACTIONS(2878), - [anon_sym_lock] = ACTIONS(2878), - [anon_sym_rlock] = ACTIONS(2878), - [anon_sym_unsafe] = ACTIONS(2878), - [anon_sym_sql] = ACTIONS(2878), - [sym_int_literal] = ACTIONS(2878), - [sym_float_literal] = ACTIONS(2878), - [sym_rune_literal] = ACTIONS(2878), - [sym_pseudo_compile_time_identifier] = ACTIONS(2878), - [anon_sym_shared] = ACTIONS(2878), - [anon_sym_map_LBRACK] = ACTIONS(2878), - [anon_sym_chan] = ACTIONS(2878), - [anon_sym_thread] = ACTIONS(2878), - [anon_sym_atomic] = ACTIONS(2878), - [anon_sym_assert] = ACTIONS(2878), - [anon_sym_defer] = ACTIONS(2878), - [anon_sym_goto] = ACTIONS(2878), - [anon_sym_break] = ACTIONS(2878), - [anon_sym_continue] = ACTIONS(2878), - [anon_sym_return] = ACTIONS(2878), - [anon_sym_DOLLARfor] = ACTIONS(2878), - [anon_sym_for] = ACTIONS(2878), - [anon_sym_POUND] = ACTIONS(2878), - [anon_sym_asm] = ACTIONS(2878), - [anon_sym_AT_LBRACK] = ACTIONS(2878), - [sym___double_quote] = ACTIONS(2878), - [sym___single_quote] = ACTIONS(2878), - [sym___c_double_quote] = ACTIONS(2878), - [sym___c_single_quote] = ACTIONS(2878), - [sym___r_double_quote] = ACTIONS(2878), - [sym___r_single_quote] = ACTIONS(2878), + [anon_sym_DOT] = ACTIONS(2874), + [anon_sym_as] = ACTIONS(2874), + [anon_sym_LBRACE] = ACTIONS(2874), + [anon_sym_COMMA] = ACTIONS(2874), + [anon_sym_const] = ACTIONS(2874), + [anon_sym_LPAREN] = ACTIONS(2874), + [anon_sym_EQ] = ACTIONS(2874), + [anon_sym___global] = ACTIONS(2874), + [anon_sym_type] = ACTIONS(2874), + [anon_sym_PIPE] = ACTIONS(2874), + [anon_sym_fn] = ACTIONS(2874), + [anon_sym_PLUS] = ACTIONS(2874), + [anon_sym_DASH] = ACTIONS(2874), + [anon_sym_STAR] = ACTIONS(2874), + [anon_sym_SLASH] = ACTIONS(2874), + [anon_sym_PERCENT] = ACTIONS(2874), + [anon_sym_LT] = ACTIONS(2874), + [anon_sym_GT] = ACTIONS(2874), + [anon_sym_EQ_EQ] = ACTIONS(2874), + [anon_sym_BANG_EQ] = ACTIONS(2874), + [anon_sym_LT_EQ] = ACTIONS(2874), + [anon_sym_GT_EQ] = ACTIONS(2874), + [anon_sym_LBRACK] = ACTIONS(2872), + [anon_sym_struct] = ACTIONS(2874), + [anon_sym_union] = ACTIONS(2874), + [anon_sym_pub] = ACTIONS(2874), + [anon_sym_mut] = ACTIONS(2874), + [anon_sym_enum] = ACTIONS(2874), + [anon_sym_interface] = ACTIONS(2874), + [anon_sym_PLUS_PLUS] = ACTIONS(2874), + [anon_sym_DASH_DASH] = ACTIONS(2874), + [anon_sym_QMARK] = ACTIONS(2874), + [anon_sym_BANG] = ACTIONS(2874), + [anon_sym_go] = ACTIONS(2874), + [anon_sym_spawn] = ACTIONS(2874), + [anon_sym_json_DOTdecode] = ACTIONS(2874), + [anon_sym_LBRACK2] = ACTIONS(2874), + [anon_sym_TILDE] = ACTIONS(2874), + [anon_sym_CARET] = ACTIONS(2874), + [anon_sym_AMP] = ACTIONS(2874), + [anon_sym_LT_DASH] = ACTIONS(2874), + [anon_sym_LT_LT] = ACTIONS(2874), + [anon_sym_GT_GT] = ACTIONS(2874), + [anon_sym_GT_GT_GT] = ACTIONS(2874), + [anon_sym_AMP_CARET] = ACTIONS(2874), + [anon_sym_AMP_AMP] = ACTIONS(2874), + [anon_sym_PIPE_PIPE] = ACTIONS(2874), + [anon_sym_or] = ACTIONS(2874), + [sym_none] = ACTIONS(2874), + [sym_true] = ACTIONS(2874), + [sym_false] = ACTIONS(2874), + [sym_nil] = ACTIONS(2874), + [anon_sym_QMARK_DOT] = ACTIONS(2874), + [anon_sym_POUND_LBRACK] = ACTIONS(2874), + [anon_sym_if] = ACTIONS(2874), + [anon_sym_DOLLARif] = ACTIONS(2874), + [anon_sym_is] = ACTIONS(2874), + [anon_sym_BANGis] = ACTIONS(2874), + [anon_sym_in] = ACTIONS(2874), + [anon_sym_BANGin] = ACTIONS(2874), + [anon_sym_match] = ACTIONS(2874), + [anon_sym_select] = ACTIONS(2874), + [anon_sym_STAR_EQ] = ACTIONS(2874), + [anon_sym_SLASH_EQ] = ACTIONS(2874), + [anon_sym_PERCENT_EQ] = ACTIONS(2874), + [anon_sym_LT_LT_EQ] = ACTIONS(2874), + [anon_sym_GT_GT_EQ] = ACTIONS(2874), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(2874), + [anon_sym_AMP_EQ] = ACTIONS(2874), + [anon_sym_AMP_CARET_EQ] = ACTIONS(2874), + [anon_sym_PLUS_EQ] = ACTIONS(2874), + [anon_sym_DASH_EQ] = ACTIONS(2874), + [anon_sym_PIPE_EQ] = ACTIONS(2874), + [anon_sym_CARET_EQ] = ACTIONS(2874), + [anon_sym_COLON_EQ] = ACTIONS(2874), + [anon_sym_lock] = ACTIONS(2874), + [anon_sym_rlock] = ACTIONS(2874), + [anon_sym_unsafe] = ACTIONS(2874), + [anon_sym_sql] = ACTIONS(2874), + [sym_int_literal] = ACTIONS(2874), + [sym_float_literal] = ACTIONS(2874), + [sym_rune_literal] = ACTIONS(2874), + [sym_pseudo_compile_time_identifier] = ACTIONS(2874), + [anon_sym_shared] = ACTIONS(2874), + [anon_sym_map_LBRACK] = ACTIONS(2874), + [anon_sym_chan] = ACTIONS(2874), + [anon_sym_thread] = ACTIONS(2874), + [anon_sym_atomic] = ACTIONS(2874), + [anon_sym_assert] = ACTIONS(2874), + [anon_sym_defer] = ACTIONS(2874), + [anon_sym_goto] = ACTIONS(2874), + [anon_sym_break] = ACTIONS(2874), + [anon_sym_continue] = ACTIONS(2874), + [anon_sym_return] = ACTIONS(2874), + [anon_sym_DOLLARfor] = ACTIONS(2874), + [anon_sym_for] = ACTIONS(2874), + [anon_sym_POUND] = ACTIONS(2874), + [anon_sym_asm] = ACTIONS(2874), + [anon_sym_AT_LBRACK] = ACTIONS(2874), + [sym___double_quote] = ACTIONS(2874), + [sym___single_quote] = ACTIONS(2874), + [sym___c_double_quote] = ACTIONS(2874), + [sym___c_single_quote] = ACTIONS(2874), + [sym___r_double_quote] = ACTIONS(2874), + [sym___r_single_quote] = ACTIONS(2874), }, [478] = { [sym_line_comment] = STATE(478), [sym_block_comment] = STATE(478), - [sym__expression] = STATE(2591), - [sym__expression_without_blocks] = STATE(2300), - [sym__expression_with_blocks] = STATE(2300), - [sym_inc_expression] = STATE(2307), - [sym_dec_expression] = STATE(2307), - [sym_or_block_expression] = STATE(2307), - [sym_option_propagation_expression] = STATE(2307), - [sym_result_propagation_expression] = STATE(2307), - [sym_anon_struct_value_expression] = STATE(2380), - [sym_go_expression] = STATE(2307), - [sym_spawn_expression] = STATE(2307), - [sym_parenthesized_expression] = STATE(2307), - [sym_call_expression] = STATE(2307), - [sym_type_initializer] = STATE(2380), - [sym_function_literal] = STATE(2307), - [sym_reference_expression] = STATE(2311), - [sym_type_reference_expression] = STATE(3541), - [sym_unary_expression] = STATE(2307), - [sym_receive_expression] = STATE(2307), - [sym_binary_expression] = STATE(2307), - [sym_as_type_cast_expression] = STATE(2307), - [sym__max_group] = STATE(2307), - [sym_literal] = STATE(2292), - [sym_map_init_expression] = STATE(2380), - [sym_array_creation] = STATE(2307), - [sym_fixed_array_creation] = STATE(2307), - [sym_selector_expression] = STATE(2307), - [sym_index_expression] = STATE(2307), - [sym_slice_expression] = STATE(2307), - [sym_if_expression] = STATE(2380), - [sym_compile_time_if_expression] = STATE(2380), - [sym_is_expression] = STATE(2307), - [sym_in_expression] = STATE(2307), - [sym_enum_fetch] = STATE(2307), - [sym_match_expression] = STATE(2380), - [sym_select_expression] = STATE(2380), - [sym_lock_expression] = STATE(2380), - [sym_unsafe_expression] = STATE(2380), - [sym_sql_expression] = STATE(2380), - [sym_c_string_literal] = STATE(2308), - [sym_raw_string_literal] = STATE(2308), - [sym_interpreted_string_literal] = STATE(2308), - [sym_mutability_modifiers] = STATE(939), - [sym_plain_type] = STATE(4297), - [sym__plain_type_without_special] = STATE(2302), - [sym_anon_struct_type] = STATE(2303), - [sym_multi_return_type] = STATE(2302), - [sym_result_type] = STATE(2302), - [sym_option_type] = STATE(2302), - [sym_qualified_type] = STATE(3541), - [sym_fixed_array_type] = STATE(2303), - [sym_array_type] = STATE(2303), - [sym_pointer_type] = STATE(2303), - [sym_wrong_pointer_type] = STATE(2303), - [sym_map_type] = STATE(2303), - [sym_channel_type] = STATE(2303), - [sym_shared_type] = STATE(2303), - [sym_thread_type] = STATE(2303), - [sym_atomic_type] = STATE(2303), - [sym_generic_type] = STATE(2303), - [sym_function_type] = STATE(2303), - [sym_range] = STATE(4490), - [sym_identifier] = ACTIONS(1426), + [sym__expression] = STATE(1273), + [sym__expression_without_blocks] = STATE(1318), + [sym__expression_with_blocks] = STATE(1318), + [sym_inc_expression] = STATE(1319), + [sym_dec_expression] = STATE(1319), + [sym_or_block_expression] = STATE(1319), + [sym_option_propagation_expression] = STATE(1319), + [sym_result_propagation_expression] = STATE(1319), + [sym_anon_struct_value_expression] = STATE(1320), + [sym_go_expression] = STATE(1319), + [sym_spawn_expression] = STATE(1319), + [sym_parenthesized_expression] = STATE(1319), + [sym_call_expression] = STATE(1319), + [sym_type_initializer] = STATE(1320), + [sym_function_literal] = STATE(1319), + [sym_reference_expression] = STATE(1397), + [sym_type_reference_expression] = STATE(3460), + [sym_unary_expression] = STATE(1319), + [sym_receive_expression] = STATE(1319), + [sym_binary_expression] = STATE(1319), + [sym_as_type_cast_expression] = STATE(1319), + [sym__max_group] = STATE(1319), + [sym_literal] = STATE(1314), + [sym_map_init_expression] = STATE(1320), + [sym_array_creation] = STATE(1319), + [sym_fixed_array_creation] = STATE(1319), + [sym_selector_expression] = STATE(1399), + [sym_index_expression] = STATE(1319), + [sym_slice_expression] = STATE(1319), + [sym_if_expression] = STATE(1320), + [sym_compile_time_if_expression] = STATE(1320), + [sym_is_expression] = STATE(1319), + [sym_in_expression] = STATE(1319), + [sym_enum_fetch] = STATE(1319), + [sym_match_expression] = STATE(1320), + [sym_select_expression] = STATE(1320), + [sym_lock_expression] = STATE(1320), + [sym_unsafe_expression] = STATE(1320), + [sym_sql_expression] = STATE(1320), + [sym_c_string_literal] = STATE(1291), + [sym_raw_string_literal] = STATE(1291), + [sym_interpreted_string_literal] = STATE(1291), + [sym_mutability_modifiers] = STATE(639), + [sym_plain_type] = STATE(4307), + [sym__plain_type_without_special] = STATE(2360), + [sym_anon_struct_type] = STATE(2362), + [sym_multi_return_type] = STATE(2360), + [sym_result_type] = STATE(2360), + [sym_option_type] = STATE(2360), + [sym_qualified_type] = STATE(3460), + [sym_fixed_array_type] = STATE(2362), + [sym_array_type] = STATE(2362), + [sym_pointer_type] = STATE(2362), + [sym_wrong_pointer_type] = STATE(2362), + [sym_map_type] = STATE(2362), + [sym_channel_type] = STATE(2362), + [sym_shared_type] = STATE(2362), + [sym_thread_type] = STATE(2362), + [sym_atomic_type] = STATE(2362), + [sym_generic_type] = STATE(2362), + [sym_function_type] = STATE(2362), + [aux_sym__array_repeat1] = STATE(407), + [sym_identifier] = ACTIONS(1360), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1428), - [anon_sym_LBRACE] = ACTIONS(1430), - [anon_sym_LPAREN] = ACTIONS(1432), - [anon_sym_fn] = ACTIONS(1434), - [anon_sym_PLUS] = ACTIONS(1436), - [anon_sym_DASH] = ACTIONS(1436), - [anon_sym_STAR] = ACTIONS(1438), - [anon_sym_struct] = ACTIONS(1440), + [anon_sym_DOT] = ACTIONS(1362), + [anon_sym_LBRACE] = ACTIONS(1364), + [anon_sym_LPAREN] = ACTIONS(1366), + [anon_sym_fn] = ACTIONS(1368), + [anon_sym_PLUS] = ACTIONS(1370), + [anon_sym_DASH] = ACTIONS(1370), + [anon_sym_STAR] = ACTIONS(1372), + [anon_sym_RBRACK] = ACTIONS(2876), + [anon_sym_struct] = ACTIONS(1376), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(1442), - [anon_sym_go] = ACTIONS(1444), - [anon_sym_spawn] = ACTIONS(1446), - [anon_sym_json_DOTdecode] = ACTIONS(1448), - [anon_sym_LBRACK2] = ACTIONS(1450), - [anon_sym_TILDE] = ACTIONS(1436), - [anon_sym_CARET] = ACTIONS(1436), - [anon_sym_AMP] = ACTIONS(1452), - [anon_sym_LT_DASH] = ACTIONS(1454), - [sym_none] = ACTIONS(1456), - [sym_true] = ACTIONS(1456), - [sym_false] = ACTIONS(1456), - [sym_nil] = ACTIONS(1456), - [anon_sym_if] = ACTIONS(1827), - [anon_sym_DOLLARif] = ACTIONS(1460), - [anon_sym_match] = ACTIONS(1462), - [anon_sym_select] = ACTIONS(1464), - [anon_sym_lock] = ACTIONS(1466), - [anon_sym_rlock] = ACTIONS(1466), - [anon_sym_unsafe] = ACTIONS(1833), - [anon_sym_sql] = ACTIONS(1470), - [sym_int_literal] = ACTIONS(1456), - [sym_float_literal] = ACTIONS(1472), - [sym_rune_literal] = ACTIONS(1472), - [sym_pseudo_compile_time_identifier] = ACTIONS(1474), + [anon_sym_BANG] = ACTIONS(1378), + [anon_sym_go] = ACTIONS(1380), + [anon_sym_spawn] = ACTIONS(1382), + [anon_sym_json_DOTdecode] = ACTIONS(1384), + [anon_sym_LBRACK2] = ACTIONS(1386), + [anon_sym_TILDE] = ACTIONS(1370), + [anon_sym_CARET] = ACTIONS(1370), + [anon_sym_AMP] = ACTIONS(1388), + [anon_sym_LT_DASH] = ACTIONS(1390), + [sym_none] = ACTIONS(1392), + [sym_true] = ACTIONS(1392), + [sym_false] = ACTIONS(1392), + [sym_nil] = ACTIONS(1392), + [anon_sym_if] = ACTIONS(1865), + [anon_sym_DOLLARif] = ACTIONS(1396), + [anon_sym_match] = ACTIONS(1398), + [anon_sym_select] = ACTIONS(1400), + [anon_sym_lock] = ACTIONS(1402), + [anon_sym_rlock] = ACTIONS(1402), + [anon_sym_unsafe] = ACTIONS(1871), + [anon_sym_sql] = ACTIONS(1406), + [sym_int_literal] = ACTIONS(1408), + [sym_float_literal] = ACTIONS(1410), + [sym_rune_literal] = ACTIONS(1410), + [sym_pseudo_compile_time_identifier] = ACTIONS(1412), [anon_sym_shared] = ACTIONS(83), [anon_sym_map_LBRACK] = ACTIONS(85), [anon_sym_chan] = ACTIONS(87), [anon_sym_thread] = ACTIONS(89), [anon_sym_atomic] = ACTIONS(91), - [anon_sym_DOT_DOT] = ACTIONS(1476), - [sym___double_quote] = ACTIONS(1478), - [sym___single_quote] = ACTIONS(1480), - [sym___c_double_quote] = ACTIONS(1482), - [sym___c_single_quote] = ACTIONS(1484), - [sym___r_double_quote] = ACTIONS(1486), - [sym___r_single_quote] = ACTIONS(1488), + [sym___double_quote] = ACTIONS(1414), + [sym___single_quote] = ACTIONS(1416), + [sym___c_double_quote] = ACTIONS(1418), + [sym___c_single_quote] = ACTIONS(1420), + [sym___r_double_quote] = ACTIONS(1422), + [sym___r_single_quote] = ACTIONS(1424), }, [479] = { [sym_line_comment] = STATE(479), [sym_block_comment] = STATE(479), - [sym__expression] = STATE(1268), - [sym__expression_without_blocks] = STATE(1312), - [sym__expression_with_blocks] = STATE(1312), - [sym_inc_expression] = STATE(1313), - [sym_dec_expression] = STATE(1313), - [sym_or_block_expression] = STATE(1313), - [sym_option_propagation_expression] = STATE(1313), - [sym_result_propagation_expression] = STATE(1313), - [sym_anon_struct_value_expression] = STATE(1314), - [sym_go_expression] = STATE(1313), - [sym_spawn_expression] = STATE(1313), - [sym_parenthesized_expression] = STATE(1313), - [sym_call_expression] = STATE(1313), - [sym_type_initializer] = STATE(1314), - [sym_function_literal] = STATE(1313), - [sym_reference_expression] = STATE(1394), - [sym_type_reference_expression] = STATE(3541), - [sym_unary_expression] = STATE(1313), - [sym_receive_expression] = STATE(1313), - [sym_binary_expression] = STATE(1313), - [sym_as_type_cast_expression] = STATE(1313), - [sym__max_group] = STATE(1313), - [sym_literal] = STATE(1308), - [sym_map_init_expression] = STATE(1314), - [sym_array_creation] = STATE(1313), - [sym_fixed_array_creation] = STATE(1313), - [sym_selector_expression] = STATE(1393), - [sym_index_expression] = STATE(1313), - [sym_slice_expression] = STATE(1313), - [sym_if_expression] = STATE(1314), - [sym_compile_time_if_expression] = STATE(1314), - [sym_is_expression] = STATE(1313), - [sym_in_expression] = STATE(1313), - [sym_enum_fetch] = STATE(1313), - [sym_match_expression] = STATE(1314), - [sym_select_expression] = STATE(1314), - [sym_lock_expression] = STATE(1314), - [sym_unsafe_expression] = STATE(1314), - [sym_sql_expression] = STATE(1314), - [sym_c_string_literal] = STATE(1286), - [sym_raw_string_literal] = STATE(1286), - [sym_interpreted_string_literal] = STATE(1286), - [sym_mutability_modifiers] = STATE(699), - [sym_plain_type] = STATE(4192), - [sym__plain_type_without_special] = STATE(2302), - [sym_anon_struct_type] = STATE(2303), - [sym_multi_return_type] = STATE(2302), - [sym_result_type] = STATE(2302), - [sym_option_type] = STATE(2302), - [sym_qualified_type] = STATE(3541), - [sym_fixed_array_type] = STATE(2303), - [sym_array_type] = STATE(2303), - [sym_pointer_type] = STATE(2303), - [sym_wrong_pointer_type] = STATE(2303), - [sym_map_type] = STATE(2303), - [sym_channel_type] = STATE(2303), - [sym_shared_type] = STATE(2303), - [sym_thread_type] = STATE(2303), - [sym_atomic_type] = STATE(2303), - [sym_generic_type] = STATE(2303), - [sym_function_type] = STATE(2303), - [aux_sym__array_repeat1] = STATE(369), - [sym_identifier] = ACTIONS(1354), + [ts_builtin_sym_end] = ACTIONS(2878), + [sym_identifier] = ACTIONS(2880), + [anon_sym_LF] = ACTIONS(2880), + [anon_sym_CR] = ACTIONS(2880), + [anon_sym_CR_LF] = ACTIONS(2880), + [anon_sym_SLASH_SLASH] = ACTIONS(497), + [anon_sym_SLASH_STAR] = ACTIONS(499), + [anon_sym_DOT] = ACTIONS(2880), + [anon_sym_as] = ACTIONS(2880), + [anon_sym_LBRACE] = ACTIONS(2880), + [anon_sym_COMMA] = ACTIONS(2880), + [anon_sym_const] = ACTIONS(2880), + [anon_sym_LPAREN] = ACTIONS(2880), + [anon_sym_EQ] = ACTIONS(2880), + [anon_sym___global] = ACTIONS(2880), + [anon_sym_type] = ACTIONS(2880), + [anon_sym_PIPE] = ACTIONS(2880), + [anon_sym_fn] = ACTIONS(2880), + [anon_sym_PLUS] = ACTIONS(2880), + [anon_sym_DASH] = ACTIONS(2880), + [anon_sym_STAR] = ACTIONS(2880), + [anon_sym_SLASH] = ACTIONS(2880), + [anon_sym_PERCENT] = ACTIONS(2880), + [anon_sym_LT] = ACTIONS(2880), + [anon_sym_GT] = ACTIONS(2880), + [anon_sym_EQ_EQ] = ACTIONS(2880), + [anon_sym_BANG_EQ] = ACTIONS(2880), + [anon_sym_LT_EQ] = ACTIONS(2880), + [anon_sym_GT_EQ] = ACTIONS(2880), + [anon_sym_LBRACK] = ACTIONS(2878), + [anon_sym_struct] = ACTIONS(2880), + [anon_sym_union] = ACTIONS(2880), + [anon_sym_pub] = ACTIONS(2880), + [anon_sym_mut] = ACTIONS(2880), + [anon_sym_enum] = ACTIONS(2880), + [anon_sym_interface] = ACTIONS(2880), + [anon_sym_PLUS_PLUS] = ACTIONS(2880), + [anon_sym_DASH_DASH] = ACTIONS(2880), + [anon_sym_QMARK] = ACTIONS(2880), + [anon_sym_BANG] = ACTIONS(2880), + [anon_sym_go] = ACTIONS(2880), + [anon_sym_spawn] = ACTIONS(2880), + [anon_sym_json_DOTdecode] = ACTIONS(2880), + [anon_sym_LBRACK2] = ACTIONS(2880), + [anon_sym_TILDE] = ACTIONS(2880), + [anon_sym_CARET] = ACTIONS(2880), + [anon_sym_AMP] = ACTIONS(2880), + [anon_sym_LT_DASH] = ACTIONS(2880), + [anon_sym_LT_LT] = ACTIONS(2880), + [anon_sym_GT_GT] = ACTIONS(2880), + [anon_sym_GT_GT_GT] = ACTIONS(2880), + [anon_sym_AMP_CARET] = ACTIONS(2880), + [anon_sym_AMP_AMP] = ACTIONS(2880), + [anon_sym_PIPE_PIPE] = ACTIONS(2880), + [anon_sym_or] = ACTIONS(2880), + [sym_none] = ACTIONS(2880), + [sym_true] = ACTIONS(2880), + [sym_false] = ACTIONS(2880), + [sym_nil] = ACTIONS(2880), + [anon_sym_QMARK_DOT] = ACTIONS(2880), + [anon_sym_POUND_LBRACK] = ACTIONS(2880), + [anon_sym_if] = ACTIONS(2880), + [anon_sym_DOLLARif] = ACTIONS(2880), + [anon_sym_is] = ACTIONS(2880), + [anon_sym_BANGis] = ACTIONS(2880), + [anon_sym_in] = ACTIONS(2880), + [anon_sym_BANGin] = ACTIONS(2880), + [anon_sym_match] = ACTIONS(2880), + [anon_sym_select] = ACTIONS(2880), + [anon_sym_STAR_EQ] = ACTIONS(2880), + [anon_sym_SLASH_EQ] = ACTIONS(2880), + [anon_sym_PERCENT_EQ] = ACTIONS(2880), + [anon_sym_LT_LT_EQ] = ACTIONS(2880), + [anon_sym_GT_GT_EQ] = ACTIONS(2880), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(2880), + [anon_sym_AMP_EQ] = ACTIONS(2880), + [anon_sym_AMP_CARET_EQ] = ACTIONS(2880), + [anon_sym_PLUS_EQ] = ACTIONS(2880), + [anon_sym_DASH_EQ] = ACTIONS(2880), + [anon_sym_PIPE_EQ] = ACTIONS(2880), + [anon_sym_CARET_EQ] = ACTIONS(2880), + [anon_sym_COLON_EQ] = ACTIONS(2880), + [anon_sym_lock] = ACTIONS(2880), + [anon_sym_rlock] = ACTIONS(2880), + [anon_sym_unsafe] = ACTIONS(2880), + [anon_sym_sql] = ACTIONS(2880), + [sym_int_literal] = ACTIONS(2880), + [sym_float_literal] = ACTIONS(2880), + [sym_rune_literal] = ACTIONS(2880), + [sym_pseudo_compile_time_identifier] = ACTIONS(2880), + [anon_sym_shared] = ACTIONS(2880), + [anon_sym_map_LBRACK] = ACTIONS(2880), + [anon_sym_chan] = ACTIONS(2880), + [anon_sym_thread] = ACTIONS(2880), + [anon_sym_atomic] = ACTIONS(2880), + [anon_sym_assert] = ACTIONS(2880), + [anon_sym_defer] = ACTIONS(2880), + [anon_sym_goto] = ACTIONS(2880), + [anon_sym_break] = ACTIONS(2880), + [anon_sym_continue] = ACTIONS(2880), + [anon_sym_return] = ACTIONS(2880), + [anon_sym_DOLLARfor] = ACTIONS(2880), + [anon_sym_for] = ACTIONS(2880), + [anon_sym_POUND] = ACTIONS(2880), + [anon_sym_asm] = ACTIONS(2880), + [anon_sym_AT_LBRACK] = ACTIONS(2880), + [sym___double_quote] = ACTIONS(2880), + [sym___single_quote] = ACTIONS(2880), + [sym___c_double_quote] = ACTIONS(2880), + [sym___c_single_quote] = ACTIONS(2880), + [sym___r_double_quote] = ACTIONS(2880), + [sym___r_single_quote] = ACTIONS(2880), + }, + [480] = { + [sym_line_comment] = STATE(480), + [sym_block_comment] = STATE(480), + [sym__expression] = STATE(2558), + [sym__expression_without_blocks] = STATE(2347), + [sym__expression_with_blocks] = STATE(2347), + [sym_inc_expression] = STATE(2379), + [sym_dec_expression] = STATE(2379), + [sym_or_block_expression] = STATE(2379), + [sym_option_propagation_expression] = STATE(2379), + [sym_result_propagation_expression] = STATE(2379), + [sym_anon_struct_value_expression] = STATE(2378), + [sym_go_expression] = STATE(2379), + [sym_spawn_expression] = STATE(2379), + [sym_parenthesized_expression] = STATE(2379), + [sym_call_expression] = STATE(2379), + [sym_type_initializer] = STATE(2378), + [sym_function_literal] = STATE(2379), + [sym_reference_expression] = STATE(2377), + [sym_type_reference_expression] = STATE(3460), + [sym_unary_expression] = STATE(2379), + [sym_receive_expression] = STATE(2379), + [sym_binary_expression] = STATE(2379), + [sym_as_type_cast_expression] = STATE(2379), + [sym__max_group] = STATE(2379), + [sym_literal] = STATE(2392), + [sym_map_init_expression] = STATE(2378), + [sym_array_creation] = STATE(2379), + [sym_fixed_array_creation] = STATE(2379), + [sym_selector_expression] = STATE(2379), + [sym_index_expression] = STATE(2379), + [sym_slice_expression] = STATE(2379), + [sym_if_expression] = STATE(2378), + [sym_compile_time_if_expression] = STATE(2378), + [sym_is_expression] = STATE(2379), + [sym_in_expression] = STATE(2379), + [sym_enum_fetch] = STATE(2379), + [sym_match_expression] = STATE(2378), + [sym_select_expression] = STATE(2378), + [sym_lock_expression] = STATE(2378), + [sym_unsafe_expression] = STATE(2378), + [sym_sql_expression] = STATE(2378), + [sym_c_string_literal] = STATE(2401), + [sym_raw_string_literal] = STATE(2401), + [sym_interpreted_string_literal] = STATE(2401), + [sym_mutability_modifiers] = STATE(900), + [sym_mutable_expression] = STATE(3813), + [sym_expression_list] = STATE(4399), + [sym_plain_type] = STATE(4160), + [sym__plain_type_without_special] = STATE(2360), + [sym_anon_struct_type] = STATE(2362), + [sym_multi_return_type] = STATE(2360), + [sym_result_type] = STATE(2360), + [sym_option_type] = STATE(2360), + [sym_qualified_type] = STATE(3460), + [sym_fixed_array_type] = STATE(2362), + [sym_array_type] = STATE(2362), + [sym_pointer_type] = STATE(2362), + [sym_wrong_pointer_type] = STATE(2362), + [sym_map_type] = STATE(2362), + [sym_channel_type] = STATE(2362), + [sym_shared_type] = STATE(2362), + [sym_thread_type] = STATE(2362), + [sym_atomic_type] = STATE(2362), + [sym_generic_type] = STATE(2362), + [sym_function_type] = STATE(2362), + [sym_identifier] = ACTIONS(1815), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1356), - [anon_sym_LBRACE] = ACTIONS(1358), - [anon_sym_LPAREN] = ACTIONS(1360), - [anon_sym_fn] = ACTIONS(1362), - [anon_sym_PLUS] = ACTIONS(1364), - [anon_sym_DASH] = ACTIONS(1364), - [anon_sym_STAR] = ACTIONS(1366), - [anon_sym_RBRACK] = ACTIONS(2880), - [anon_sym_struct] = ACTIONS(1370), + [anon_sym_DOT] = ACTIONS(1430), + [anon_sym_LBRACE] = ACTIONS(2882), + [anon_sym_LPAREN] = ACTIONS(1434), + [anon_sym_fn] = ACTIONS(1436), + [anon_sym_PLUS] = ACTIONS(1817), + [anon_sym_DASH] = ACTIONS(1817), + [anon_sym_STAR] = ACTIONS(1819), + [anon_sym_struct] = ACTIONS(1442), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(1372), - [anon_sym_go] = ACTIONS(1374), - [anon_sym_spawn] = ACTIONS(1376), - [anon_sym_json_DOTdecode] = ACTIONS(1378), - [anon_sym_LBRACK2] = ACTIONS(1380), - [anon_sym_TILDE] = ACTIONS(1364), - [anon_sym_CARET] = ACTIONS(1364), - [anon_sym_AMP] = ACTIONS(1382), - [anon_sym_LT_DASH] = ACTIONS(1384), - [sym_none] = ACTIONS(1386), - [sym_true] = ACTIONS(1386), - [sym_false] = ACTIONS(1386), - [sym_nil] = ACTIONS(1386), - [anon_sym_if] = ACTIONS(1877), - [anon_sym_DOLLARif] = ACTIONS(1390), - [anon_sym_match] = ACTIONS(1392), - [anon_sym_select] = ACTIONS(1394), - [anon_sym_lock] = ACTIONS(1396), - [anon_sym_rlock] = ACTIONS(1396), - [anon_sym_unsafe] = ACTIONS(1883), - [anon_sym_sql] = ACTIONS(1400), - [sym_int_literal] = ACTIONS(1402), - [sym_float_literal] = ACTIONS(1404), - [sym_rune_literal] = ACTIONS(1404), - [sym_pseudo_compile_time_identifier] = ACTIONS(1406), + [anon_sym_BANG] = ACTIONS(1821), + [anon_sym_go] = ACTIONS(1823), + [anon_sym_spawn] = ACTIONS(1825), + [anon_sym_json_DOTdecode] = ACTIONS(1450), + [anon_sym_LBRACK2] = ACTIONS(1827), + [anon_sym_TILDE] = ACTIONS(1817), + [anon_sym_CARET] = ACTIONS(1817), + [anon_sym_AMP] = ACTIONS(1829), + [anon_sym_LT_DASH] = ACTIONS(1831), + [sym_none] = ACTIONS(1458), + [sym_true] = ACTIONS(1458), + [sym_false] = ACTIONS(1458), + [sym_nil] = ACTIONS(1458), + [anon_sym_if] = ACTIONS(1833), + [anon_sym_DOLLARif] = ACTIONS(1462), + [anon_sym_match] = ACTIONS(1464), + [anon_sym_select] = ACTIONS(1835), + [anon_sym_lock] = ACTIONS(1837), + [anon_sym_rlock] = ACTIONS(1837), + [anon_sym_unsafe] = ACTIONS(1839), + [anon_sym_sql] = ACTIONS(1472), + [sym_int_literal] = ACTIONS(1458), + [sym_float_literal] = ACTIONS(1474), + [sym_rune_literal] = ACTIONS(1474), + [sym_pseudo_compile_time_identifier] = ACTIONS(1476), [anon_sym_shared] = ACTIONS(83), [anon_sym_map_LBRACK] = ACTIONS(85), [anon_sym_chan] = ACTIONS(87), [anon_sym_thread] = ACTIONS(89), [anon_sym_atomic] = ACTIONS(91), - [sym___double_quote] = ACTIONS(1408), - [sym___single_quote] = ACTIONS(1410), - [sym___c_double_quote] = ACTIONS(1412), - [sym___c_single_quote] = ACTIONS(1414), - [sym___r_double_quote] = ACTIONS(1416), - [sym___r_single_quote] = ACTIONS(1418), - }, - [480] = { - [sym_line_comment] = STATE(480), - [sym_block_comment] = STATE(480), - [ts_builtin_sym_end] = ACTIONS(2882), - [sym_identifier] = ACTIONS(2884), - [anon_sym_LF] = ACTIONS(2884), - [anon_sym_CR] = ACTIONS(2884), - [anon_sym_CR_LF] = ACTIONS(2884), - [anon_sym_SLASH_SLASH] = ACTIONS(497), - [anon_sym_SLASH_STAR] = ACTIONS(499), - [anon_sym_DOT] = ACTIONS(2884), - [anon_sym_as] = ACTIONS(2884), - [anon_sym_LBRACE] = ACTIONS(2884), - [anon_sym_COMMA] = ACTIONS(2884), - [anon_sym_const] = ACTIONS(2884), - [anon_sym_LPAREN] = ACTIONS(2884), - [anon_sym_EQ] = ACTIONS(2884), - [anon_sym___global] = ACTIONS(2884), - [anon_sym_type] = ACTIONS(2884), - [anon_sym_PIPE] = ACTIONS(2884), - [anon_sym_fn] = ACTIONS(2884), - [anon_sym_PLUS] = ACTIONS(2884), - [anon_sym_DASH] = ACTIONS(2884), - [anon_sym_STAR] = ACTIONS(2884), - [anon_sym_SLASH] = ACTIONS(2884), - [anon_sym_PERCENT] = ACTIONS(2884), - [anon_sym_LT] = ACTIONS(2884), - [anon_sym_GT] = ACTIONS(2884), - [anon_sym_EQ_EQ] = ACTIONS(2884), - [anon_sym_BANG_EQ] = ACTIONS(2884), - [anon_sym_LT_EQ] = ACTIONS(2884), - [anon_sym_GT_EQ] = ACTIONS(2884), - [anon_sym_LBRACK] = ACTIONS(2882), - [anon_sym_struct] = ACTIONS(2884), - [anon_sym_union] = ACTIONS(2884), - [anon_sym_pub] = ACTIONS(2884), - [anon_sym_mut] = ACTIONS(2884), - [anon_sym_enum] = ACTIONS(2884), - [anon_sym_interface] = ACTIONS(2884), - [anon_sym_PLUS_PLUS] = ACTIONS(2884), - [anon_sym_DASH_DASH] = ACTIONS(2884), - [anon_sym_QMARK] = ACTIONS(2884), - [anon_sym_BANG] = ACTIONS(2884), - [anon_sym_go] = ACTIONS(2884), - [anon_sym_spawn] = ACTIONS(2884), - [anon_sym_json_DOTdecode] = ACTIONS(2884), - [anon_sym_LBRACK2] = ACTIONS(2884), - [anon_sym_TILDE] = ACTIONS(2884), - [anon_sym_CARET] = ACTIONS(2884), - [anon_sym_AMP] = ACTIONS(2884), - [anon_sym_LT_DASH] = ACTIONS(2884), - [anon_sym_LT_LT] = ACTIONS(2884), - [anon_sym_GT_GT] = ACTIONS(2884), - [anon_sym_GT_GT_GT] = ACTIONS(2884), - [anon_sym_AMP_CARET] = ACTIONS(2884), - [anon_sym_AMP_AMP] = ACTIONS(2884), - [anon_sym_PIPE_PIPE] = ACTIONS(2884), - [anon_sym_or] = ACTIONS(2884), - [sym_none] = ACTIONS(2884), - [sym_true] = ACTIONS(2884), - [sym_false] = ACTIONS(2884), - [sym_nil] = ACTIONS(2884), - [anon_sym_QMARK_DOT] = ACTIONS(2884), - [anon_sym_POUND_LBRACK] = ACTIONS(2884), - [anon_sym_if] = ACTIONS(2884), - [anon_sym_DOLLARif] = ACTIONS(2884), - [anon_sym_is] = ACTIONS(2884), - [anon_sym_BANGis] = ACTIONS(2884), - [anon_sym_in] = ACTIONS(2884), - [anon_sym_BANGin] = ACTIONS(2884), - [anon_sym_match] = ACTIONS(2884), - [anon_sym_select] = ACTIONS(2884), - [anon_sym_STAR_EQ] = ACTIONS(2884), - [anon_sym_SLASH_EQ] = ACTIONS(2884), - [anon_sym_PERCENT_EQ] = ACTIONS(2884), - [anon_sym_LT_LT_EQ] = ACTIONS(2884), - [anon_sym_GT_GT_EQ] = ACTIONS(2884), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(2884), - [anon_sym_AMP_EQ] = ACTIONS(2884), - [anon_sym_AMP_CARET_EQ] = ACTIONS(2884), - [anon_sym_PLUS_EQ] = ACTIONS(2884), - [anon_sym_DASH_EQ] = ACTIONS(2884), - [anon_sym_PIPE_EQ] = ACTIONS(2884), - [anon_sym_CARET_EQ] = ACTIONS(2884), - [anon_sym_COLON_EQ] = ACTIONS(2884), - [anon_sym_lock] = ACTIONS(2884), - [anon_sym_rlock] = ACTIONS(2884), - [anon_sym_unsafe] = ACTIONS(2884), - [anon_sym_sql] = ACTIONS(2884), - [sym_int_literal] = ACTIONS(2884), - [sym_float_literal] = ACTIONS(2884), - [sym_rune_literal] = ACTIONS(2884), - [sym_pseudo_compile_time_identifier] = ACTIONS(2884), - [anon_sym_shared] = ACTIONS(2884), - [anon_sym_map_LBRACK] = ACTIONS(2884), - [anon_sym_chan] = ACTIONS(2884), - [anon_sym_thread] = ACTIONS(2884), - [anon_sym_atomic] = ACTIONS(2884), - [anon_sym_assert] = ACTIONS(2884), - [anon_sym_defer] = ACTIONS(2884), - [anon_sym_goto] = ACTIONS(2884), - [anon_sym_break] = ACTIONS(2884), - [anon_sym_continue] = ACTIONS(2884), - [anon_sym_return] = ACTIONS(2884), - [anon_sym_DOLLARfor] = ACTIONS(2884), - [anon_sym_for] = ACTIONS(2884), - [anon_sym_POUND] = ACTIONS(2884), - [anon_sym_asm] = ACTIONS(2884), - [anon_sym_AT_LBRACK] = ACTIONS(2884), - [sym___double_quote] = ACTIONS(2884), - [sym___single_quote] = ACTIONS(2884), - [sym___c_double_quote] = ACTIONS(2884), - [sym___c_single_quote] = ACTIONS(2884), - [sym___r_double_quote] = ACTIONS(2884), - [sym___r_single_quote] = ACTIONS(2884), + [sym___double_quote] = ACTIONS(1480), + [sym___single_quote] = ACTIONS(1482), + [sym___c_double_quote] = ACTIONS(1484), + [sym___c_single_quote] = ACTIONS(1486), + [sym___r_double_quote] = ACTIONS(1488), + [sym___r_single_quote] = ACTIONS(1490), }, [481] = { [sym_line_comment] = STATE(481), [sym_block_comment] = STATE(481), - [ts_builtin_sym_end] = ACTIONS(2886), - [sym_identifier] = ACTIONS(2888), - [anon_sym_LF] = ACTIONS(2888), - [anon_sym_CR] = ACTIONS(2888), - [anon_sym_CR_LF] = ACTIONS(2888), + [ts_builtin_sym_end] = ACTIONS(2884), + [sym_identifier] = ACTIONS(2886), + [anon_sym_LF] = ACTIONS(2886), + [anon_sym_CR] = ACTIONS(2886), + [anon_sym_CR_LF] = ACTIONS(2886), [anon_sym_SLASH_SLASH] = ACTIONS(497), [anon_sym_SLASH_STAR] = ACTIONS(499), - [anon_sym_DOT] = ACTIONS(2888), - [anon_sym_as] = ACTIONS(2888), - [anon_sym_LBRACE] = ACTIONS(2888), - [anon_sym_COMMA] = ACTIONS(2888), - [anon_sym_const] = ACTIONS(2888), - [anon_sym_LPAREN] = ACTIONS(2888), - [anon_sym_EQ] = ACTIONS(2888), - [anon_sym___global] = ACTIONS(2888), - [anon_sym_type] = ACTIONS(2888), - [anon_sym_PIPE] = ACTIONS(2888), - [anon_sym_fn] = ACTIONS(2888), - [anon_sym_PLUS] = ACTIONS(2888), - [anon_sym_DASH] = ACTIONS(2888), - [anon_sym_STAR] = ACTIONS(2888), - [anon_sym_SLASH] = ACTIONS(2888), - [anon_sym_PERCENT] = ACTIONS(2888), - [anon_sym_LT] = ACTIONS(2888), - [anon_sym_GT] = ACTIONS(2888), - [anon_sym_EQ_EQ] = ACTIONS(2888), - [anon_sym_BANG_EQ] = ACTIONS(2888), - [anon_sym_LT_EQ] = ACTIONS(2888), - [anon_sym_GT_EQ] = ACTIONS(2888), - [anon_sym_LBRACK] = ACTIONS(2886), - [anon_sym_struct] = ACTIONS(2888), - [anon_sym_union] = ACTIONS(2888), - [anon_sym_pub] = ACTIONS(2888), - [anon_sym_mut] = ACTIONS(2888), - [anon_sym_enum] = ACTIONS(2888), - [anon_sym_interface] = ACTIONS(2888), - [anon_sym_PLUS_PLUS] = ACTIONS(2888), - [anon_sym_DASH_DASH] = ACTIONS(2888), - [anon_sym_QMARK] = ACTIONS(2888), - [anon_sym_BANG] = ACTIONS(2888), - [anon_sym_go] = ACTIONS(2888), - [anon_sym_spawn] = ACTIONS(2888), - [anon_sym_json_DOTdecode] = ACTIONS(2888), - [anon_sym_LBRACK2] = ACTIONS(2888), - [anon_sym_TILDE] = ACTIONS(2888), - [anon_sym_CARET] = ACTIONS(2888), - [anon_sym_AMP] = ACTIONS(2888), - [anon_sym_LT_DASH] = ACTIONS(2888), - [anon_sym_LT_LT] = ACTIONS(2888), - [anon_sym_GT_GT] = ACTIONS(2888), - [anon_sym_GT_GT_GT] = ACTIONS(2888), - [anon_sym_AMP_CARET] = ACTIONS(2888), - [anon_sym_AMP_AMP] = ACTIONS(2888), - [anon_sym_PIPE_PIPE] = ACTIONS(2888), - [anon_sym_or] = ACTIONS(2888), - [sym_none] = ACTIONS(2888), - [sym_true] = ACTIONS(2888), - [sym_false] = ACTIONS(2888), - [sym_nil] = ACTIONS(2888), - [anon_sym_QMARK_DOT] = ACTIONS(2888), - [anon_sym_POUND_LBRACK] = ACTIONS(2888), - [anon_sym_if] = ACTIONS(2888), - [anon_sym_DOLLARif] = ACTIONS(2888), - [anon_sym_is] = ACTIONS(2888), - [anon_sym_BANGis] = ACTIONS(2888), - [anon_sym_in] = ACTIONS(2888), - [anon_sym_BANGin] = ACTIONS(2888), - [anon_sym_match] = ACTIONS(2888), - [anon_sym_select] = ACTIONS(2888), - [anon_sym_STAR_EQ] = ACTIONS(2888), - [anon_sym_SLASH_EQ] = ACTIONS(2888), - [anon_sym_PERCENT_EQ] = ACTIONS(2888), - [anon_sym_LT_LT_EQ] = ACTIONS(2888), - [anon_sym_GT_GT_EQ] = ACTIONS(2888), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(2888), - [anon_sym_AMP_EQ] = ACTIONS(2888), - [anon_sym_AMP_CARET_EQ] = ACTIONS(2888), - [anon_sym_PLUS_EQ] = ACTIONS(2888), - [anon_sym_DASH_EQ] = ACTIONS(2888), - [anon_sym_PIPE_EQ] = ACTIONS(2888), - [anon_sym_CARET_EQ] = ACTIONS(2888), - [anon_sym_COLON_EQ] = ACTIONS(2888), - [anon_sym_lock] = ACTIONS(2888), - [anon_sym_rlock] = ACTIONS(2888), - [anon_sym_unsafe] = ACTIONS(2888), - [anon_sym_sql] = ACTIONS(2888), - [sym_int_literal] = ACTIONS(2888), - [sym_float_literal] = ACTIONS(2888), - [sym_rune_literal] = ACTIONS(2888), - [sym_pseudo_compile_time_identifier] = ACTIONS(2888), - [anon_sym_shared] = ACTIONS(2888), - [anon_sym_map_LBRACK] = ACTIONS(2888), - [anon_sym_chan] = ACTIONS(2888), - [anon_sym_thread] = ACTIONS(2888), - [anon_sym_atomic] = ACTIONS(2888), - [anon_sym_assert] = ACTIONS(2888), - [anon_sym_defer] = ACTIONS(2888), - [anon_sym_goto] = ACTIONS(2888), - [anon_sym_break] = ACTIONS(2888), - [anon_sym_continue] = ACTIONS(2888), - [anon_sym_return] = ACTIONS(2888), - [anon_sym_DOLLARfor] = ACTIONS(2888), - [anon_sym_for] = ACTIONS(2888), - [anon_sym_POUND] = ACTIONS(2888), - [anon_sym_asm] = ACTIONS(2888), - [anon_sym_AT_LBRACK] = ACTIONS(2888), - [sym___double_quote] = ACTIONS(2888), - [sym___single_quote] = ACTIONS(2888), - [sym___c_double_quote] = ACTIONS(2888), - [sym___c_single_quote] = ACTIONS(2888), - [sym___r_double_quote] = ACTIONS(2888), - [sym___r_single_quote] = ACTIONS(2888), + [anon_sym_DOT] = ACTIONS(2886), + [anon_sym_as] = ACTIONS(2886), + [anon_sym_LBRACE] = ACTIONS(2886), + [anon_sym_COMMA] = ACTIONS(2886), + [anon_sym_const] = ACTIONS(2886), + [anon_sym_LPAREN] = ACTIONS(2886), + [anon_sym_EQ] = ACTIONS(2886), + [anon_sym___global] = ACTIONS(2886), + [anon_sym_type] = ACTIONS(2886), + [anon_sym_PIPE] = ACTIONS(2886), + [anon_sym_fn] = ACTIONS(2886), + [anon_sym_PLUS] = ACTIONS(2886), + [anon_sym_DASH] = ACTIONS(2886), + [anon_sym_STAR] = ACTIONS(2886), + [anon_sym_SLASH] = ACTIONS(2886), + [anon_sym_PERCENT] = ACTIONS(2886), + [anon_sym_LT] = ACTIONS(2886), + [anon_sym_GT] = ACTIONS(2886), + [anon_sym_EQ_EQ] = ACTIONS(2886), + [anon_sym_BANG_EQ] = ACTIONS(2886), + [anon_sym_LT_EQ] = ACTIONS(2886), + [anon_sym_GT_EQ] = ACTIONS(2886), + [anon_sym_LBRACK] = ACTIONS(2884), + [anon_sym_struct] = ACTIONS(2886), + [anon_sym_union] = ACTIONS(2886), + [anon_sym_pub] = ACTIONS(2886), + [anon_sym_mut] = ACTIONS(2886), + [anon_sym_enum] = ACTIONS(2886), + [anon_sym_interface] = ACTIONS(2886), + [anon_sym_PLUS_PLUS] = ACTIONS(2886), + [anon_sym_DASH_DASH] = ACTIONS(2886), + [anon_sym_QMARK] = ACTIONS(2886), + [anon_sym_BANG] = ACTIONS(2886), + [anon_sym_go] = ACTIONS(2886), + [anon_sym_spawn] = ACTIONS(2886), + [anon_sym_json_DOTdecode] = ACTIONS(2886), + [anon_sym_LBRACK2] = ACTIONS(2886), + [anon_sym_TILDE] = ACTIONS(2886), + [anon_sym_CARET] = ACTIONS(2886), + [anon_sym_AMP] = ACTIONS(2886), + [anon_sym_LT_DASH] = ACTIONS(2886), + [anon_sym_LT_LT] = ACTIONS(2886), + [anon_sym_GT_GT] = ACTIONS(2886), + [anon_sym_GT_GT_GT] = ACTIONS(2886), + [anon_sym_AMP_CARET] = ACTIONS(2886), + [anon_sym_AMP_AMP] = ACTIONS(2886), + [anon_sym_PIPE_PIPE] = ACTIONS(2886), + [anon_sym_or] = ACTIONS(2886), + [sym_none] = ACTIONS(2886), + [sym_true] = ACTIONS(2886), + [sym_false] = ACTIONS(2886), + [sym_nil] = ACTIONS(2886), + [anon_sym_QMARK_DOT] = ACTIONS(2886), + [anon_sym_POUND_LBRACK] = ACTIONS(2886), + [anon_sym_if] = ACTIONS(2886), + [anon_sym_DOLLARif] = ACTIONS(2886), + [anon_sym_is] = ACTIONS(2886), + [anon_sym_BANGis] = ACTIONS(2886), + [anon_sym_in] = ACTIONS(2886), + [anon_sym_BANGin] = ACTIONS(2886), + [anon_sym_match] = ACTIONS(2886), + [anon_sym_select] = ACTIONS(2886), + [anon_sym_STAR_EQ] = ACTIONS(2886), + [anon_sym_SLASH_EQ] = ACTIONS(2886), + [anon_sym_PERCENT_EQ] = ACTIONS(2886), + [anon_sym_LT_LT_EQ] = ACTIONS(2886), + [anon_sym_GT_GT_EQ] = ACTIONS(2886), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(2886), + [anon_sym_AMP_EQ] = ACTIONS(2886), + [anon_sym_AMP_CARET_EQ] = ACTIONS(2886), + [anon_sym_PLUS_EQ] = ACTIONS(2886), + [anon_sym_DASH_EQ] = ACTIONS(2886), + [anon_sym_PIPE_EQ] = ACTIONS(2886), + [anon_sym_CARET_EQ] = ACTIONS(2886), + [anon_sym_COLON_EQ] = ACTIONS(2886), + [anon_sym_lock] = ACTIONS(2886), + [anon_sym_rlock] = ACTIONS(2886), + [anon_sym_unsafe] = ACTIONS(2886), + [anon_sym_sql] = ACTIONS(2886), + [sym_int_literal] = ACTIONS(2886), + [sym_float_literal] = ACTIONS(2886), + [sym_rune_literal] = ACTIONS(2886), + [sym_pseudo_compile_time_identifier] = ACTIONS(2886), + [anon_sym_shared] = ACTIONS(2886), + [anon_sym_map_LBRACK] = ACTIONS(2886), + [anon_sym_chan] = ACTIONS(2886), + [anon_sym_thread] = ACTIONS(2886), + [anon_sym_atomic] = ACTIONS(2886), + [anon_sym_assert] = ACTIONS(2886), + [anon_sym_defer] = ACTIONS(2886), + [anon_sym_goto] = ACTIONS(2886), + [anon_sym_break] = ACTIONS(2886), + [anon_sym_continue] = ACTIONS(2886), + [anon_sym_return] = ACTIONS(2886), + [anon_sym_DOLLARfor] = ACTIONS(2886), + [anon_sym_for] = ACTIONS(2886), + [anon_sym_POUND] = ACTIONS(2886), + [anon_sym_asm] = ACTIONS(2886), + [anon_sym_AT_LBRACK] = ACTIONS(2886), + [sym___double_quote] = ACTIONS(2886), + [sym___single_quote] = ACTIONS(2886), + [sym___c_double_quote] = ACTIONS(2886), + [sym___c_single_quote] = ACTIONS(2886), + [sym___r_double_quote] = ACTIONS(2886), + [sym___r_single_quote] = ACTIONS(2886), }, [482] = { [sym_line_comment] = STATE(482), [sym_block_comment] = STATE(482), - [ts_builtin_sym_end] = ACTIONS(2890), - [sym_identifier] = ACTIONS(2892), - [anon_sym_LF] = ACTIONS(2892), - [anon_sym_CR] = ACTIONS(2892), - [anon_sym_CR_LF] = ACTIONS(2892), - [anon_sym_SLASH_SLASH] = ACTIONS(497), - [anon_sym_SLASH_STAR] = ACTIONS(499), - [anon_sym_DOT] = ACTIONS(2892), - [anon_sym_as] = ACTIONS(2892), - [anon_sym_LBRACE] = ACTIONS(2892), - [anon_sym_COMMA] = ACTIONS(2892), - [anon_sym_const] = ACTIONS(2892), - [anon_sym_LPAREN] = ACTIONS(2892), - [anon_sym_EQ] = ACTIONS(2892), - [anon_sym___global] = ACTIONS(2892), - [anon_sym_type] = ACTIONS(2892), - [anon_sym_PIPE] = ACTIONS(2892), - [anon_sym_fn] = ACTIONS(2892), - [anon_sym_PLUS] = ACTIONS(2892), - [anon_sym_DASH] = ACTIONS(2892), - [anon_sym_STAR] = ACTIONS(2892), - [anon_sym_SLASH] = ACTIONS(2892), - [anon_sym_PERCENT] = ACTIONS(2892), - [anon_sym_LT] = ACTIONS(2892), - [anon_sym_GT] = ACTIONS(2892), - [anon_sym_EQ_EQ] = ACTIONS(2892), - [anon_sym_BANG_EQ] = ACTIONS(2892), - [anon_sym_LT_EQ] = ACTIONS(2892), - [anon_sym_GT_EQ] = ACTIONS(2892), - [anon_sym_LBRACK] = ACTIONS(2890), - [anon_sym_struct] = ACTIONS(2892), - [anon_sym_union] = ACTIONS(2892), - [anon_sym_pub] = ACTIONS(2892), - [anon_sym_mut] = ACTIONS(2892), - [anon_sym_enum] = ACTIONS(2892), - [anon_sym_interface] = ACTIONS(2892), - [anon_sym_PLUS_PLUS] = ACTIONS(2892), - [anon_sym_DASH_DASH] = ACTIONS(2892), - [anon_sym_QMARK] = ACTIONS(2892), - [anon_sym_BANG] = ACTIONS(2892), - [anon_sym_go] = ACTIONS(2892), - [anon_sym_spawn] = ACTIONS(2892), - [anon_sym_json_DOTdecode] = ACTIONS(2892), - [anon_sym_LBRACK2] = ACTIONS(2892), - [anon_sym_TILDE] = ACTIONS(2892), - [anon_sym_CARET] = ACTIONS(2892), - [anon_sym_AMP] = ACTIONS(2892), - [anon_sym_LT_DASH] = ACTIONS(2892), - [anon_sym_LT_LT] = ACTIONS(2892), - [anon_sym_GT_GT] = ACTIONS(2892), - [anon_sym_GT_GT_GT] = ACTIONS(2892), - [anon_sym_AMP_CARET] = ACTIONS(2892), - [anon_sym_AMP_AMP] = ACTIONS(2892), - [anon_sym_PIPE_PIPE] = ACTIONS(2892), - [anon_sym_or] = ACTIONS(2892), - [sym_none] = ACTIONS(2892), - [sym_true] = ACTIONS(2892), - [sym_false] = ACTIONS(2892), - [sym_nil] = ACTIONS(2892), - [anon_sym_QMARK_DOT] = ACTIONS(2892), - [anon_sym_POUND_LBRACK] = ACTIONS(2892), - [anon_sym_if] = ACTIONS(2892), - [anon_sym_DOLLARif] = ACTIONS(2892), - [anon_sym_is] = ACTIONS(2892), - [anon_sym_BANGis] = ACTIONS(2892), - [anon_sym_in] = ACTIONS(2892), - [anon_sym_BANGin] = ACTIONS(2892), - [anon_sym_match] = ACTIONS(2892), - [anon_sym_select] = ACTIONS(2892), - [anon_sym_STAR_EQ] = ACTIONS(2892), - [anon_sym_SLASH_EQ] = ACTIONS(2892), - [anon_sym_PERCENT_EQ] = ACTIONS(2892), - [anon_sym_LT_LT_EQ] = ACTIONS(2892), - [anon_sym_GT_GT_EQ] = ACTIONS(2892), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(2892), - [anon_sym_AMP_EQ] = ACTIONS(2892), - [anon_sym_AMP_CARET_EQ] = ACTIONS(2892), - [anon_sym_PLUS_EQ] = ACTIONS(2892), - [anon_sym_DASH_EQ] = ACTIONS(2892), - [anon_sym_PIPE_EQ] = ACTIONS(2892), - [anon_sym_CARET_EQ] = ACTIONS(2892), - [anon_sym_COLON_EQ] = ACTIONS(2892), - [anon_sym_lock] = ACTIONS(2892), - [anon_sym_rlock] = ACTIONS(2892), - [anon_sym_unsafe] = ACTIONS(2892), - [anon_sym_sql] = ACTIONS(2892), - [sym_int_literal] = ACTIONS(2892), - [sym_float_literal] = ACTIONS(2892), - [sym_rune_literal] = ACTIONS(2892), - [sym_pseudo_compile_time_identifier] = ACTIONS(2892), - [anon_sym_shared] = ACTIONS(2892), - [anon_sym_map_LBRACK] = ACTIONS(2892), - [anon_sym_chan] = ACTIONS(2892), - [anon_sym_thread] = ACTIONS(2892), - [anon_sym_atomic] = ACTIONS(2892), - [anon_sym_assert] = ACTIONS(2892), - [anon_sym_defer] = ACTIONS(2892), - [anon_sym_goto] = ACTIONS(2892), - [anon_sym_break] = ACTIONS(2892), - [anon_sym_continue] = ACTIONS(2892), - [anon_sym_return] = ACTIONS(2892), - [anon_sym_DOLLARfor] = ACTIONS(2892), - [anon_sym_for] = ACTIONS(2892), - [anon_sym_POUND] = ACTIONS(2892), - [anon_sym_asm] = ACTIONS(2892), - [anon_sym_AT_LBRACK] = ACTIONS(2892), - [sym___double_quote] = ACTIONS(2892), - [sym___single_quote] = ACTIONS(2892), - [sym___c_double_quote] = ACTIONS(2892), - [sym___c_single_quote] = ACTIONS(2892), - [sym___r_double_quote] = ACTIONS(2892), - [sym___r_single_quote] = ACTIONS(2892), + [sym__expression] = STATE(2604), + [sym__expression_without_blocks] = STATE(2347), + [sym__expression_with_blocks] = STATE(2347), + [sym_inc_expression] = STATE(2379), + [sym_dec_expression] = STATE(2379), + [sym_or_block_expression] = STATE(2379), + [sym_option_propagation_expression] = STATE(2379), + [sym_result_propagation_expression] = STATE(2379), + [sym_anon_struct_value_expression] = STATE(2378), + [sym_go_expression] = STATE(2379), + [sym_spawn_expression] = STATE(2379), + [sym_parenthesized_expression] = STATE(2379), + [sym_call_expression] = STATE(2379), + [sym_type_initializer] = STATE(2378), + [sym_function_literal] = STATE(2379), + [sym_reference_expression] = STATE(2377), + [sym_type_reference_expression] = STATE(3460), + [sym_unary_expression] = STATE(2379), + [sym_receive_expression] = STATE(2379), + [sym_binary_expression] = STATE(2379), + [sym_as_type_cast_expression] = STATE(2379), + [sym__max_group] = STATE(2379), + [sym_literal] = STATE(2392), + [sym_map_init_expression] = STATE(2378), + [sym_array_creation] = STATE(2379), + [sym_fixed_array_creation] = STATE(2379), + [sym_selector_expression] = STATE(2379), + [sym_index_expression] = STATE(2379), + [sym_slice_expression] = STATE(2379), + [sym_if_expression] = STATE(2378), + [sym_compile_time_if_expression] = STATE(2378), + [sym_is_expression] = STATE(2379), + [sym_in_expression] = STATE(2379), + [sym_enum_fetch] = STATE(2379), + [sym_match_expression] = STATE(2378), + [sym_select_expression] = STATE(2378), + [sym_lock_expression] = STATE(2378), + [sym_unsafe_expression] = STATE(2378), + [sym_sql_expression] = STATE(2378), + [sym_c_string_literal] = STATE(2401), + [sym_raw_string_literal] = STATE(2401), + [sym_interpreted_string_literal] = STATE(2401), + [sym_mutability_modifiers] = STATE(939), + [sym_plain_type] = STATE(3569), + [sym__plain_type_without_special] = STATE(2360), + [sym_anon_struct_type] = STATE(2362), + [sym_multi_return_type] = STATE(2360), + [sym_result_type] = STATE(2360), + [sym_option_type] = STATE(2360), + [sym_qualified_type] = STATE(3460), + [sym_fixed_array_type] = STATE(2362), + [sym_array_type] = STATE(2362), + [sym_pointer_type] = STATE(2362), + [sym_wrong_pointer_type] = STATE(2362), + [sym_map_type] = STATE(2362), + [sym_channel_type] = STATE(2362), + [sym_shared_type] = STATE(2362), + [sym_thread_type] = STATE(2362), + [sym_atomic_type] = STATE(2362), + [sym_generic_type] = STATE(2362), + [sym_function_type] = STATE(2362), + [sym_range] = STATE(4622), + [sym_identifier] = ACTIONS(2127), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(1430), + [anon_sym_LBRACE] = ACTIONS(1432), + [anon_sym_LPAREN] = ACTIONS(1434), + [anon_sym_fn] = ACTIONS(1436), + [anon_sym_PLUS] = ACTIONS(1438), + [anon_sym_DASH] = ACTIONS(1438), + [anon_sym_STAR] = ACTIONS(2129), + [anon_sym_struct] = ACTIONS(1442), + [anon_sym_mut] = ACTIONS(41), + [anon_sym_QMARK] = ACTIONS(47), + [anon_sym_BANG] = ACTIONS(2131), + [anon_sym_go] = ACTIONS(1446), + [anon_sym_spawn] = ACTIONS(1448), + [anon_sym_json_DOTdecode] = ACTIONS(1450), + [anon_sym_LBRACK2] = ACTIONS(1452), + [anon_sym_TILDE] = ACTIONS(1438), + [anon_sym_CARET] = ACTIONS(1438), + [anon_sym_AMP] = ACTIONS(2133), + [anon_sym_LT_DASH] = ACTIONS(1456), + [sym_none] = ACTIONS(1458), + [sym_true] = ACTIONS(1458), + [sym_false] = ACTIONS(1458), + [sym_nil] = ACTIONS(1458), + [anon_sym_if] = ACTIONS(1833), + [anon_sym_DOLLARif] = ACTIONS(1462), + [anon_sym_match] = ACTIONS(1464), + [anon_sym_select] = ACTIONS(1466), + [anon_sym_lock] = ACTIONS(1468), + [anon_sym_rlock] = ACTIONS(1468), + [anon_sym_unsafe] = ACTIONS(1839), + [anon_sym_sql] = ACTIONS(1472), + [sym_int_literal] = ACTIONS(1458), + [sym_float_literal] = ACTIONS(1474), + [sym_rune_literal] = ACTIONS(1474), + [sym_pseudo_compile_time_identifier] = ACTIONS(1476), + [anon_sym_shared] = ACTIONS(83), + [anon_sym_map_LBRACK] = ACTIONS(85), + [anon_sym_chan] = ACTIONS(87), + [anon_sym_thread] = ACTIONS(89), + [anon_sym_atomic] = ACTIONS(91), + [anon_sym_DOT_DOT] = ACTIONS(1478), + [sym___double_quote] = ACTIONS(1480), + [sym___single_quote] = ACTIONS(1482), + [sym___c_double_quote] = ACTIONS(1484), + [sym___c_single_quote] = ACTIONS(1486), + [sym___r_double_quote] = ACTIONS(1488), + [sym___r_single_quote] = ACTIONS(1490), }, [483] = { [sym_line_comment] = STATE(483), [sym_block_comment] = STATE(483), - [ts_builtin_sym_end] = ACTIONS(2894), - [sym_identifier] = ACTIONS(2896), - [anon_sym_LF] = ACTIONS(2896), - [anon_sym_CR] = ACTIONS(2896), - [anon_sym_CR_LF] = ACTIONS(2896), + [ts_builtin_sym_end] = ACTIONS(2888), + [sym_identifier] = ACTIONS(2890), + [anon_sym_LF] = ACTIONS(2890), + [anon_sym_CR] = ACTIONS(2890), + [anon_sym_CR_LF] = ACTIONS(2890), [anon_sym_SLASH_SLASH] = ACTIONS(497), [anon_sym_SLASH_STAR] = ACTIONS(499), - [anon_sym_DOT] = ACTIONS(2896), - [anon_sym_as] = ACTIONS(2896), - [anon_sym_LBRACE] = ACTIONS(2896), - [anon_sym_COMMA] = ACTIONS(2896), - [anon_sym_const] = ACTIONS(2896), - [anon_sym_LPAREN] = ACTIONS(2896), - [anon_sym_EQ] = ACTIONS(2896), - [anon_sym___global] = ACTIONS(2896), - [anon_sym_type] = ACTIONS(2896), - [anon_sym_PIPE] = ACTIONS(2896), - [anon_sym_fn] = ACTIONS(2896), - [anon_sym_PLUS] = ACTIONS(2896), - [anon_sym_DASH] = ACTIONS(2896), - [anon_sym_STAR] = ACTIONS(2896), - [anon_sym_SLASH] = ACTIONS(2896), - [anon_sym_PERCENT] = ACTIONS(2896), - [anon_sym_LT] = ACTIONS(2896), - [anon_sym_GT] = ACTIONS(2896), - [anon_sym_EQ_EQ] = ACTIONS(2896), - [anon_sym_BANG_EQ] = ACTIONS(2896), - [anon_sym_LT_EQ] = ACTIONS(2896), - [anon_sym_GT_EQ] = ACTIONS(2896), - [anon_sym_LBRACK] = ACTIONS(2894), - [anon_sym_struct] = ACTIONS(2896), - [anon_sym_union] = ACTIONS(2896), - [anon_sym_pub] = ACTIONS(2896), - [anon_sym_mut] = ACTIONS(2896), - [anon_sym_enum] = ACTIONS(2896), - [anon_sym_interface] = ACTIONS(2896), - [anon_sym_PLUS_PLUS] = ACTIONS(2896), - [anon_sym_DASH_DASH] = ACTIONS(2896), - [anon_sym_QMARK] = ACTIONS(2896), - [anon_sym_BANG] = ACTIONS(2896), - [anon_sym_go] = ACTIONS(2896), - [anon_sym_spawn] = ACTIONS(2896), - [anon_sym_json_DOTdecode] = ACTIONS(2896), - [anon_sym_LBRACK2] = ACTIONS(2896), - [anon_sym_TILDE] = ACTIONS(2896), - [anon_sym_CARET] = ACTIONS(2896), - [anon_sym_AMP] = ACTIONS(2896), - [anon_sym_LT_DASH] = ACTIONS(2896), - [anon_sym_LT_LT] = ACTIONS(2896), - [anon_sym_GT_GT] = ACTIONS(2896), - [anon_sym_GT_GT_GT] = ACTIONS(2896), - [anon_sym_AMP_CARET] = ACTIONS(2896), - [anon_sym_AMP_AMP] = ACTIONS(2896), - [anon_sym_PIPE_PIPE] = ACTIONS(2896), - [anon_sym_or] = ACTIONS(2896), - [sym_none] = ACTIONS(2896), - [sym_true] = ACTIONS(2896), - [sym_false] = ACTIONS(2896), - [sym_nil] = ACTIONS(2896), - [anon_sym_QMARK_DOT] = ACTIONS(2896), - [anon_sym_POUND_LBRACK] = ACTIONS(2896), - [anon_sym_if] = ACTIONS(2896), - [anon_sym_DOLLARif] = ACTIONS(2896), - [anon_sym_is] = ACTIONS(2896), - [anon_sym_BANGis] = ACTIONS(2896), - [anon_sym_in] = ACTIONS(2896), - [anon_sym_BANGin] = ACTIONS(2896), - [anon_sym_match] = ACTIONS(2896), - [anon_sym_select] = ACTIONS(2896), - [anon_sym_STAR_EQ] = ACTIONS(2896), - [anon_sym_SLASH_EQ] = ACTIONS(2896), - [anon_sym_PERCENT_EQ] = ACTIONS(2896), - [anon_sym_LT_LT_EQ] = ACTIONS(2896), - [anon_sym_GT_GT_EQ] = ACTIONS(2896), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(2896), - [anon_sym_AMP_EQ] = ACTIONS(2896), - [anon_sym_AMP_CARET_EQ] = ACTIONS(2896), - [anon_sym_PLUS_EQ] = ACTIONS(2896), - [anon_sym_DASH_EQ] = ACTIONS(2896), - [anon_sym_PIPE_EQ] = ACTIONS(2896), - [anon_sym_CARET_EQ] = ACTIONS(2896), - [anon_sym_COLON_EQ] = ACTIONS(2896), - [anon_sym_lock] = ACTIONS(2896), - [anon_sym_rlock] = ACTIONS(2896), - [anon_sym_unsafe] = ACTIONS(2896), - [anon_sym_sql] = ACTIONS(2896), - [sym_int_literal] = ACTIONS(2896), - [sym_float_literal] = ACTIONS(2896), - [sym_rune_literal] = ACTIONS(2896), - [sym_pseudo_compile_time_identifier] = ACTIONS(2896), - [anon_sym_shared] = ACTIONS(2896), - [anon_sym_map_LBRACK] = ACTIONS(2896), - [anon_sym_chan] = ACTIONS(2896), - [anon_sym_thread] = ACTIONS(2896), - [anon_sym_atomic] = ACTIONS(2896), - [anon_sym_assert] = ACTIONS(2896), - [anon_sym_defer] = ACTIONS(2896), - [anon_sym_goto] = ACTIONS(2896), - [anon_sym_break] = ACTIONS(2896), - [anon_sym_continue] = ACTIONS(2896), - [anon_sym_return] = ACTIONS(2896), - [anon_sym_DOLLARfor] = ACTIONS(2896), - [anon_sym_for] = ACTIONS(2896), - [anon_sym_POUND] = ACTIONS(2896), - [anon_sym_asm] = ACTIONS(2896), - [anon_sym_AT_LBRACK] = ACTIONS(2896), - [sym___double_quote] = ACTIONS(2896), - [sym___single_quote] = ACTIONS(2896), - [sym___c_double_quote] = ACTIONS(2896), - [sym___c_single_quote] = ACTIONS(2896), - [sym___r_double_quote] = ACTIONS(2896), - [sym___r_single_quote] = ACTIONS(2896), + [anon_sym_DOT] = ACTIONS(2890), + [anon_sym_as] = ACTIONS(2890), + [anon_sym_LBRACE] = ACTIONS(2890), + [anon_sym_COMMA] = ACTIONS(2890), + [anon_sym_const] = ACTIONS(2890), + [anon_sym_LPAREN] = ACTIONS(2890), + [anon_sym_EQ] = ACTIONS(2890), + [anon_sym___global] = ACTIONS(2890), + [anon_sym_type] = ACTIONS(2890), + [anon_sym_PIPE] = ACTIONS(2890), + [anon_sym_fn] = ACTIONS(2890), + [anon_sym_PLUS] = ACTIONS(2890), + [anon_sym_DASH] = ACTIONS(2890), + [anon_sym_STAR] = ACTIONS(2890), + [anon_sym_SLASH] = ACTIONS(2890), + [anon_sym_PERCENT] = ACTIONS(2890), + [anon_sym_LT] = ACTIONS(2890), + [anon_sym_GT] = ACTIONS(2890), + [anon_sym_EQ_EQ] = ACTIONS(2890), + [anon_sym_BANG_EQ] = ACTIONS(2890), + [anon_sym_LT_EQ] = ACTIONS(2890), + [anon_sym_GT_EQ] = ACTIONS(2890), + [anon_sym_LBRACK] = ACTIONS(2888), + [anon_sym_struct] = ACTIONS(2890), + [anon_sym_union] = ACTIONS(2890), + [anon_sym_pub] = ACTIONS(2890), + [anon_sym_mut] = ACTIONS(2890), + [anon_sym_enum] = ACTIONS(2890), + [anon_sym_interface] = ACTIONS(2890), + [anon_sym_PLUS_PLUS] = ACTIONS(2890), + [anon_sym_DASH_DASH] = ACTIONS(2890), + [anon_sym_QMARK] = ACTIONS(2890), + [anon_sym_BANG] = ACTIONS(2890), + [anon_sym_go] = ACTIONS(2890), + [anon_sym_spawn] = ACTIONS(2890), + [anon_sym_json_DOTdecode] = ACTIONS(2890), + [anon_sym_LBRACK2] = ACTIONS(2890), + [anon_sym_TILDE] = ACTIONS(2890), + [anon_sym_CARET] = ACTIONS(2890), + [anon_sym_AMP] = ACTIONS(2890), + [anon_sym_LT_DASH] = ACTIONS(2890), + [anon_sym_LT_LT] = ACTIONS(2890), + [anon_sym_GT_GT] = ACTIONS(2890), + [anon_sym_GT_GT_GT] = ACTIONS(2890), + [anon_sym_AMP_CARET] = ACTIONS(2890), + [anon_sym_AMP_AMP] = ACTIONS(2890), + [anon_sym_PIPE_PIPE] = ACTIONS(2890), + [anon_sym_or] = ACTIONS(2890), + [sym_none] = ACTIONS(2890), + [sym_true] = ACTIONS(2890), + [sym_false] = ACTIONS(2890), + [sym_nil] = ACTIONS(2890), + [anon_sym_QMARK_DOT] = ACTIONS(2890), + [anon_sym_POUND_LBRACK] = ACTIONS(2890), + [anon_sym_if] = ACTIONS(2890), + [anon_sym_DOLLARif] = ACTIONS(2890), + [anon_sym_is] = ACTIONS(2890), + [anon_sym_BANGis] = ACTIONS(2890), + [anon_sym_in] = ACTIONS(2890), + [anon_sym_BANGin] = ACTIONS(2890), + [anon_sym_match] = ACTIONS(2890), + [anon_sym_select] = ACTIONS(2890), + [anon_sym_STAR_EQ] = ACTIONS(2890), + [anon_sym_SLASH_EQ] = ACTIONS(2890), + [anon_sym_PERCENT_EQ] = ACTIONS(2890), + [anon_sym_LT_LT_EQ] = ACTIONS(2890), + [anon_sym_GT_GT_EQ] = ACTIONS(2890), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(2890), + [anon_sym_AMP_EQ] = ACTIONS(2890), + [anon_sym_AMP_CARET_EQ] = ACTIONS(2890), + [anon_sym_PLUS_EQ] = ACTIONS(2890), + [anon_sym_DASH_EQ] = ACTIONS(2890), + [anon_sym_PIPE_EQ] = ACTIONS(2890), + [anon_sym_CARET_EQ] = ACTIONS(2890), + [anon_sym_COLON_EQ] = ACTIONS(2890), + [anon_sym_lock] = ACTIONS(2890), + [anon_sym_rlock] = ACTIONS(2890), + [anon_sym_unsafe] = ACTIONS(2890), + [anon_sym_sql] = ACTIONS(2890), + [sym_int_literal] = ACTIONS(2890), + [sym_float_literal] = ACTIONS(2890), + [sym_rune_literal] = ACTIONS(2890), + [sym_pseudo_compile_time_identifier] = ACTIONS(2890), + [anon_sym_shared] = ACTIONS(2890), + [anon_sym_map_LBRACK] = ACTIONS(2890), + [anon_sym_chan] = ACTIONS(2890), + [anon_sym_thread] = ACTIONS(2890), + [anon_sym_atomic] = ACTIONS(2890), + [anon_sym_assert] = ACTIONS(2890), + [anon_sym_defer] = ACTIONS(2890), + [anon_sym_goto] = ACTIONS(2890), + [anon_sym_break] = ACTIONS(2890), + [anon_sym_continue] = ACTIONS(2890), + [anon_sym_return] = ACTIONS(2890), + [anon_sym_DOLLARfor] = ACTIONS(2890), + [anon_sym_for] = ACTIONS(2890), + [anon_sym_POUND] = ACTIONS(2890), + [anon_sym_asm] = ACTIONS(2890), + [anon_sym_AT_LBRACK] = ACTIONS(2890), + [sym___double_quote] = ACTIONS(2890), + [sym___single_quote] = ACTIONS(2890), + [sym___c_double_quote] = ACTIONS(2890), + [sym___c_single_quote] = ACTIONS(2890), + [sym___r_double_quote] = ACTIONS(2890), + [sym___r_single_quote] = ACTIONS(2890), }, [484] = { [sym_line_comment] = STATE(484), [sym_block_comment] = STATE(484), - [ts_builtin_sym_end] = ACTIONS(2898), - [sym_identifier] = ACTIONS(2900), - [anon_sym_LF] = ACTIONS(2900), - [anon_sym_CR] = ACTIONS(2900), - [anon_sym_CR_LF] = ACTIONS(2900), + [ts_builtin_sym_end] = ACTIONS(2892), + [sym_identifier] = ACTIONS(2894), + [anon_sym_LF] = ACTIONS(2894), + [anon_sym_CR] = ACTIONS(2894), + [anon_sym_CR_LF] = ACTIONS(2894), [anon_sym_SLASH_SLASH] = ACTIONS(497), [anon_sym_SLASH_STAR] = ACTIONS(499), - [anon_sym_DOT] = ACTIONS(2900), - [anon_sym_as] = ACTIONS(2900), - [anon_sym_LBRACE] = ACTIONS(2900), - [anon_sym_COMMA] = ACTIONS(2900), - [anon_sym_const] = ACTIONS(2900), - [anon_sym_LPAREN] = ACTIONS(2900), - [anon_sym_EQ] = ACTIONS(2900), - [anon_sym___global] = ACTIONS(2900), - [anon_sym_type] = ACTIONS(2900), - [anon_sym_PIPE] = ACTIONS(2900), - [anon_sym_fn] = ACTIONS(2900), - [anon_sym_PLUS] = ACTIONS(2900), - [anon_sym_DASH] = ACTIONS(2900), - [anon_sym_STAR] = ACTIONS(2900), - [anon_sym_SLASH] = ACTIONS(2900), - [anon_sym_PERCENT] = ACTIONS(2900), - [anon_sym_LT] = ACTIONS(2900), - [anon_sym_GT] = ACTIONS(2900), - [anon_sym_EQ_EQ] = ACTIONS(2900), - [anon_sym_BANG_EQ] = ACTIONS(2900), - [anon_sym_LT_EQ] = ACTIONS(2900), - [anon_sym_GT_EQ] = ACTIONS(2900), - [anon_sym_LBRACK] = ACTIONS(2898), - [anon_sym_struct] = ACTIONS(2900), - [anon_sym_union] = ACTIONS(2900), - [anon_sym_pub] = ACTIONS(2900), - [anon_sym_mut] = ACTIONS(2900), - [anon_sym_enum] = ACTIONS(2900), - [anon_sym_interface] = ACTIONS(2900), - [anon_sym_PLUS_PLUS] = ACTIONS(2900), - [anon_sym_DASH_DASH] = ACTIONS(2900), - [anon_sym_QMARK] = ACTIONS(2900), - [anon_sym_BANG] = ACTIONS(2900), - [anon_sym_go] = ACTIONS(2900), - [anon_sym_spawn] = ACTIONS(2900), - [anon_sym_json_DOTdecode] = ACTIONS(2900), - [anon_sym_LBRACK2] = ACTIONS(2900), - [anon_sym_TILDE] = ACTIONS(2900), - [anon_sym_CARET] = ACTIONS(2900), - [anon_sym_AMP] = ACTIONS(2900), - [anon_sym_LT_DASH] = ACTIONS(2900), - [anon_sym_LT_LT] = ACTIONS(2900), - [anon_sym_GT_GT] = ACTIONS(2900), - [anon_sym_GT_GT_GT] = ACTIONS(2900), - [anon_sym_AMP_CARET] = ACTIONS(2900), - [anon_sym_AMP_AMP] = ACTIONS(2900), - [anon_sym_PIPE_PIPE] = ACTIONS(2900), - [anon_sym_or] = ACTIONS(2900), - [sym_none] = ACTIONS(2900), - [sym_true] = ACTIONS(2900), - [sym_false] = ACTIONS(2900), - [sym_nil] = ACTIONS(2900), - [anon_sym_QMARK_DOT] = ACTIONS(2900), - [anon_sym_POUND_LBRACK] = ACTIONS(2900), - [anon_sym_if] = ACTIONS(2900), - [anon_sym_DOLLARif] = ACTIONS(2900), - [anon_sym_is] = ACTIONS(2900), - [anon_sym_BANGis] = ACTIONS(2900), - [anon_sym_in] = ACTIONS(2900), - [anon_sym_BANGin] = ACTIONS(2900), - [anon_sym_match] = ACTIONS(2900), - [anon_sym_select] = ACTIONS(2900), - [anon_sym_STAR_EQ] = ACTIONS(2900), - [anon_sym_SLASH_EQ] = ACTIONS(2900), - [anon_sym_PERCENT_EQ] = ACTIONS(2900), - [anon_sym_LT_LT_EQ] = ACTIONS(2900), - [anon_sym_GT_GT_EQ] = ACTIONS(2900), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(2900), - [anon_sym_AMP_EQ] = ACTIONS(2900), - [anon_sym_AMP_CARET_EQ] = ACTIONS(2900), - [anon_sym_PLUS_EQ] = ACTIONS(2900), - [anon_sym_DASH_EQ] = ACTIONS(2900), - [anon_sym_PIPE_EQ] = ACTIONS(2900), - [anon_sym_CARET_EQ] = ACTIONS(2900), - [anon_sym_COLON_EQ] = ACTIONS(2900), - [anon_sym_lock] = ACTIONS(2900), - [anon_sym_rlock] = ACTIONS(2900), - [anon_sym_unsafe] = ACTIONS(2900), - [anon_sym_sql] = ACTIONS(2900), - [sym_int_literal] = ACTIONS(2900), - [sym_float_literal] = ACTIONS(2900), - [sym_rune_literal] = ACTIONS(2900), - [sym_pseudo_compile_time_identifier] = ACTIONS(2900), - [anon_sym_shared] = ACTIONS(2900), - [anon_sym_map_LBRACK] = ACTIONS(2900), - [anon_sym_chan] = ACTIONS(2900), - [anon_sym_thread] = ACTIONS(2900), - [anon_sym_atomic] = ACTIONS(2900), - [anon_sym_assert] = ACTIONS(2900), - [anon_sym_defer] = ACTIONS(2900), - [anon_sym_goto] = ACTIONS(2900), - [anon_sym_break] = ACTIONS(2900), - [anon_sym_continue] = ACTIONS(2900), - [anon_sym_return] = ACTIONS(2900), - [anon_sym_DOLLARfor] = ACTIONS(2900), - [anon_sym_for] = ACTIONS(2900), - [anon_sym_POUND] = ACTIONS(2900), - [anon_sym_asm] = ACTIONS(2900), - [anon_sym_AT_LBRACK] = ACTIONS(2900), - [sym___double_quote] = ACTIONS(2900), - [sym___single_quote] = ACTIONS(2900), - [sym___c_double_quote] = ACTIONS(2900), - [sym___c_single_quote] = ACTIONS(2900), - [sym___r_double_quote] = ACTIONS(2900), - [sym___r_single_quote] = ACTIONS(2900), + [anon_sym_DOT] = ACTIONS(2894), + [anon_sym_as] = ACTIONS(2894), + [anon_sym_LBRACE] = ACTIONS(2894), + [anon_sym_COMMA] = ACTIONS(2894), + [anon_sym_const] = ACTIONS(2894), + [anon_sym_LPAREN] = ACTIONS(2894), + [anon_sym_EQ] = ACTIONS(2894), + [anon_sym___global] = ACTIONS(2894), + [anon_sym_type] = ACTIONS(2894), + [anon_sym_PIPE] = ACTIONS(2894), + [anon_sym_fn] = ACTIONS(2894), + [anon_sym_PLUS] = ACTIONS(2894), + [anon_sym_DASH] = ACTIONS(2894), + [anon_sym_STAR] = ACTIONS(2894), + [anon_sym_SLASH] = ACTIONS(2894), + [anon_sym_PERCENT] = ACTIONS(2894), + [anon_sym_LT] = ACTIONS(2894), + [anon_sym_GT] = ACTIONS(2894), + [anon_sym_EQ_EQ] = ACTIONS(2894), + [anon_sym_BANG_EQ] = ACTIONS(2894), + [anon_sym_LT_EQ] = ACTIONS(2894), + [anon_sym_GT_EQ] = ACTIONS(2894), + [anon_sym_LBRACK] = ACTIONS(2892), + [anon_sym_struct] = ACTIONS(2894), + [anon_sym_union] = ACTIONS(2894), + [anon_sym_pub] = ACTIONS(2894), + [anon_sym_mut] = ACTIONS(2894), + [anon_sym_enum] = ACTIONS(2894), + [anon_sym_interface] = ACTIONS(2894), + [anon_sym_PLUS_PLUS] = ACTIONS(2894), + [anon_sym_DASH_DASH] = ACTIONS(2894), + [anon_sym_QMARK] = ACTIONS(2894), + [anon_sym_BANG] = ACTIONS(2894), + [anon_sym_go] = ACTIONS(2894), + [anon_sym_spawn] = ACTIONS(2894), + [anon_sym_json_DOTdecode] = ACTIONS(2894), + [anon_sym_LBRACK2] = ACTIONS(2894), + [anon_sym_TILDE] = ACTIONS(2894), + [anon_sym_CARET] = ACTIONS(2894), + [anon_sym_AMP] = ACTIONS(2894), + [anon_sym_LT_DASH] = ACTIONS(2894), + [anon_sym_LT_LT] = ACTIONS(2894), + [anon_sym_GT_GT] = ACTIONS(2894), + [anon_sym_GT_GT_GT] = ACTIONS(2894), + [anon_sym_AMP_CARET] = ACTIONS(2894), + [anon_sym_AMP_AMP] = ACTIONS(2894), + [anon_sym_PIPE_PIPE] = ACTIONS(2894), + [anon_sym_or] = ACTIONS(2894), + [sym_none] = ACTIONS(2894), + [sym_true] = ACTIONS(2894), + [sym_false] = ACTIONS(2894), + [sym_nil] = ACTIONS(2894), + [anon_sym_QMARK_DOT] = ACTIONS(2894), + [anon_sym_POUND_LBRACK] = ACTIONS(2894), + [anon_sym_if] = ACTIONS(2894), + [anon_sym_DOLLARif] = ACTIONS(2894), + [anon_sym_is] = ACTIONS(2894), + [anon_sym_BANGis] = ACTIONS(2894), + [anon_sym_in] = ACTIONS(2894), + [anon_sym_BANGin] = ACTIONS(2894), + [anon_sym_match] = ACTIONS(2894), + [anon_sym_select] = ACTIONS(2894), + [anon_sym_STAR_EQ] = ACTIONS(2894), + [anon_sym_SLASH_EQ] = ACTIONS(2894), + [anon_sym_PERCENT_EQ] = ACTIONS(2894), + [anon_sym_LT_LT_EQ] = ACTIONS(2894), + [anon_sym_GT_GT_EQ] = ACTIONS(2894), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(2894), + [anon_sym_AMP_EQ] = ACTIONS(2894), + [anon_sym_AMP_CARET_EQ] = ACTIONS(2894), + [anon_sym_PLUS_EQ] = ACTIONS(2894), + [anon_sym_DASH_EQ] = ACTIONS(2894), + [anon_sym_PIPE_EQ] = ACTIONS(2894), + [anon_sym_CARET_EQ] = ACTIONS(2894), + [anon_sym_COLON_EQ] = ACTIONS(2894), + [anon_sym_lock] = ACTIONS(2894), + [anon_sym_rlock] = ACTIONS(2894), + [anon_sym_unsafe] = ACTIONS(2894), + [anon_sym_sql] = ACTIONS(2894), + [sym_int_literal] = ACTIONS(2894), + [sym_float_literal] = ACTIONS(2894), + [sym_rune_literal] = ACTIONS(2894), + [sym_pseudo_compile_time_identifier] = ACTIONS(2894), + [anon_sym_shared] = ACTIONS(2894), + [anon_sym_map_LBRACK] = ACTIONS(2894), + [anon_sym_chan] = ACTIONS(2894), + [anon_sym_thread] = ACTIONS(2894), + [anon_sym_atomic] = ACTIONS(2894), + [anon_sym_assert] = ACTIONS(2894), + [anon_sym_defer] = ACTIONS(2894), + [anon_sym_goto] = ACTIONS(2894), + [anon_sym_break] = ACTIONS(2894), + [anon_sym_continue] = ACTIONS(2894), + [anon_sym_return] = ACTIONS(2894), + [anon_sym_DOLLARfor] = ACTIONS(2894), + [anon_sym_for] = ACTIONS(2894), + [anon_sym_POUND] = ACTIONS(2894), + [anon_sym_asm] = ACTIONS(2894), + [anon_sym_AT_LBRACK] = ACTIONS(2894), + [sym___double_quote] = ACTIONS(2894), + [sym___single_quote] = ACTIONS(2894), + [sym___c_double_quote] = ACTIONS(2894), + [sym___c_single_quote] = ACTIONS(2894), + [sym___r_double_quote] = ACTIONS(2894), + [sym___r_single_quote] = ACTIONS(2894), }, [485] = { [sym_line_comment] = STATE(485), [sym_block_comment] = STATE(485), - [ts_builtin_sym_end] = ACTIONS(2902), - [sym_identifier] = ACTIONS(2904), - [anon_sym_LF] = ACTIONS(2904), - [anon_sym_CR] = ACTIONS(2904), - [anon_sym_CR_LF] = ACTIONS(2904), - [anon_sym_SLASH_SLASH] = ACTIONS(497), - [anon_sym_SLASH_STAR] = ACTIONS(499), - [anon_sym_DOT] = ACTIONS(2904), - [anon_sym_as] = ACTIONS(2904), - [anon_sym_LBRACE] = ACTIONS(2904), - [anon_sym_COMMA] = ACTIONS(2904), - [anon_sym_const] = ACTIONS(2904), - [anon_sym_LPAREN] = ACTIONS(2904), - [anon_sym_EQ] = ACTIONS(2904), - [anon_sym___global] = ACTIONS(2904), - [anon_sym_type] = ACTIONS(2904), - [anon_sym_PIPE] = ACTIONS(2904), - [anon_sym_fn] = ACTIONS(2904), - [anon_sym_PLUS] = ACTIONS(2904), - [anon_sym_DASH] = ACTIONS(2904), - [anon_sym_STAR] = ACTIONS(2904), - [anon_sym_SLASH] = ACTIONS(2904), - [anon_sym_PERCENT] = ACTIONS(2904), - [anon_sym_LT] = ACTIONS(2904), - [anon_sym_GT] = ACTIONS(2904), - [anon_sym_EQ_EQ] = ACTIONS(2904), - [anon_sym_BANG_EQ] = ACTIONS(2904), - [anon_sym_LT_EQ] = ACTIONS(2904), - [anon_sym_GT_EQ] = ACTIONS(2904), - [anon_sym_LBRACK] = ACTIONS(2902), - [anon_sym_struct] = ACTIONS(2904), - [anon_sym_union] = ACTIONS(2904), - [anon_sym_pub] = ACTIONS(2904), - [anon_sym_mut] = ACTIONS(2904), - [anon_sym_enum] = ACTIONS(2904), - [anon_sym_interface] = ACTIONS(2904), - [anon_sym_PLUS_PLUS] = ACTIONS(2904), - [anon_sym_DASH_DASH] = ACTIONS(2904), - [anon_sym_QMARK] = ACTIONS(2904), - [anon_sym_BANG] = ACTIONS(2904), - [anon_sym_go] = ACTIONS(2904), - [anon_sym_spawn] = ACTIONS(2904), - [anon_sym_json_DOTdecode] = ACTIONS(2904), - [anon_sym_LBRACK2] = ACTIONS(2904), - [anon_sym_TILDE] = ACTIONS(2904), - [anon_sym_CARET] = ACTIONS(2904), - [anon_sym_AMP] = ACTIONS(2904), - [anon_sym_LT_DASH] = ACTIONS(2904), - [anon_sym_LT_LT] = ACTIONS(2904), - [anon_sym_GT_GT] = ACTIONS(2904), - [anon_sym_GT_GT_GT] = ACTIONS(2904), - [anon_sym_AMP_CARET] = ACTIONS(2904), - [anon_sym_AMP_AMP] = ACTIONS(2904), - [anon_sym_PIPE_PIPE] = ACTIONS(2904), - [anon_sym_or] = ACTIONS(2904), - [sym_none] = ACTIONS(2904), - [sym_true] = ACTIONS(2904), - [sym_false] = ACTIONS(2904), - [sym_nil] = ACTIONS(2904), - [anon_sym_QMARK_DOT] = ACTIONS(2904), - [anon_sym_POUND_LBRACK] = ACTIONS(2904), - [anon_sym_if] = ACTIONS(2904), - [anon_sym_DOLLARif] = ACTIONS(2904), - [anon_sym_is] = ACTIONS(2904), - [anon_sym_BANGis] = ACTIONS(2904), - [anon_sym_in] = ACTIONS(2904), - [anon_sym_BANGin] = ACTIONS(2904), - [anon_sym_match] = ACTIONS(2904), - [anon_sym_select] = ACTIONS(2904), - [anon_sym_STAR_EQ] = ACTIONS(2904), - [anon_sym_SLASH_EQ] = ACTIONS(2904), - [anon_sym_PERCENT_EQ] = ACTIONS(2904), - [anon_sym_LT_LT_EQ] = ACTIONS(2904), - [anon_sym_GT_GT_EQ] = ACTIONS(2904), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(2904), - [anon_sym_AMP_EQ] = ACTIONS(2904), - [anon_sym_AMP_CARET_EQ] = ACTIONS(2904), - [anon_sym_PLUS_EQ] = ACTIONS(2904), - [anon_sym_DASH_EQ] = ACTIONS(2904), - [anon_sym_PIPE_EQ] = ACTIONS(2904), - [anon_sym_CARET_EQ] = ACTIONS(2904), - [anon_sym_COLON_EQ] = ACTIONS(2904), - [anon_sym_lock] = ACTIONS(2904), - [anon_sym_rlock] = ACTIONS(2904), - [anon_sym_unsafe] = ACTIONS(2904), - [anon_sym_sql] = ACTIONS(2904), - [sym_int_literal] = ACTIONS(2904), - [sym_float_literal] = ACTIONS(2904), - [sym_rune_literal] = ACTIONS(2904), - [sym_pseudo_compile_time_identifier] = ACTIONS(2904), - [anon_sym_shared] = ACTIONS(2904), - [anon_sym_map_LBRACK] = ACTIONS(2904), - [anon_sym_chan] = ACTIONS(2904), - [anon_sym_thread] = ACTIONS(2904), - [anon_sym_atomic] = ACTIONS(2904), - [anon_sym_assert] = ACTIONS(2904), - [anon_sym_defer] = ACTIONS(2904), - [anon_sym_goto] = ACTIONS(2904), - [anon_sym_break] = ACTIONS(2904), - [anon_sym_continue] = ACTIONS(2904), - [anon_sym_return] = ACTIONS(2904), - [anon_sym_DOLLARfor] = ACTIONS(2904), - [anon_sym_for] = ACTIONS(2904), - [anon_sym_POUND] = ACTIONS(2904), - [anon_sym_asm] = ACTIONS(2904), - [anon_sym_AT_LBRACK] = ACTIONS(2904), - [sym___double_quote] = ACTIONS(2904), - [sym___single_quote] = ACTIONS(2904), - [sym___c_double_quote] = ACTIONS(2904), - [sym___c_single_quote] = ACTIONS(2904), - [sym___r_double_quote] = ACTIONS(2904), - [sym___r_single_quote] = ACTIONS(2904), + [sym__expression] = STATE(2604), + [sym__expression_without_blocks] = STATE(2347), + [sym__expression_with_blocks] = STATE(2347), + [sym_inc_expression] = STATE(2379), + [sym_dec_expression] = STATE(2379), + [sym_or_block_expression] = STATE(2379), + [sym_option_propagation_expression] = STATE(2379), + [sym_result_propagation_expression] = STATE(2379), + [sym_anon_struct_value_expression] = STATE(2378), + [sym_go_expression] = STATE(2379), + [sym_spawn_expression] = STATE(2379), + [sym_parenthesized_expression] = STATE(2379), + [sym_call_expression] = STATE(2379), + [sym_type_initializer] = STATE(2378), + [sym_function_literal] = STATE(2379), + [sym_reference_expression] = STATE(2377), + [sym_type_reference_expression] = STATE(3460), + [sym_unary_expression] = STATE(2379), + [sym_receive_expression] = STATE(2379), + [sym_binary_expression] = STATE(2379), + [sym_as_type_cast_expression] = STATE(2379), + [sym__max_group] = STATE(2379), + [sym_literal] = STATE(2392), + [sym_map_init_expression] = STATE(2378), + [sym_array_creation] = STATE(2379), + [sym_fixed_array_creation] = STATE(2379), + [sym_selector_expression] = STATE(2379), + [sym_index_expression] = STATE(2379), + [sym_slice_expression] = STATE(2379), + [sym_if_expression] = STATE(2378), + [sym_compile_time_if_expression] = STATE(2378), + [sym_is_expression] = STATE(2379), + [sym_in_expression] = STATE(2379), + [sym_enum_fetch] = STATE(2379), + [sym_match_expression] = STATE(2378), + [sym_select_expression] = STATE(2378), + [sym_lock_expression] = STATE(2378), + [sym_unsafe_expression] = STATE(2378), + [sym_sql_expression] = STATE(2378), + [sym_c_string_literal] = STATE(2401), + [sym_raw_string_literal] = STATE(2401), + [sym_interpreted_string_literal] = STATE(2401), + [sym_mutability_modifiers] = STATE(939), + [sym_plain_type] = STATE(4160), + [sym__plain_type_without_special] = STATE(2360), + [sym_anon_struct_type] = STATE(2362), + [sym_multi_return_type] = STATE(2360), + [sym_result_type] = STATE(2360), + [sym_option_type] = STATE(2360), + [sym_qualified_type] = STATE(3460), + [sym_fixed_array_type] = STATE(2362), + [sym_array_type] = STATE(2362), + [sym_pointer_type] = STATE(2362), + [sym_wrong_pointer_type] = STATE(2362), + [sym_map_type] = STATE(2362), + [sym_channel_type] = STATE(2362), + [sym_shared_type] = STATE(2362), + [sym_thread_type] = STATE(2362), + [sym_atomic_type] = STATE(2362), + [sym_generic_type] = STATE(2362), + [sym_function_type] = STATE(2362), + [sym_range] = STATE(4622), + [sym_identifier] = ACTIONS(1428), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(1430), + [anon_sym_LBRACE] = ACTIONS(1432), + [anon_sym_LPAREN] = ACTIONS(1434), + [anon_sym_fn] = ACTIONS(1436), + [anon_sym_PLUS] = ACTIONS(1438), + [anon_sym_DASH] = ACTIONS(1438), + [anon_sym_STAR] = ACTIONS(1440), + [anon_sym_struct] = ACTIONS(1442), + [anon_sym_mut] = ACTIONS(41), + [anon_sym_QMARK] = ACTIONS(47), + [anon_sym_BANG] = ACTIONS(1444), + [anon_sym_go] = ACTIONS(1446), + [anon_sym_spawn] = ACTIONS(1448), + [anon_sym_json_DOTdecode] = ACTIONS(1450), + [anon_sym_LBRACK2] = ACTIONS(1452), + [anon_sym_TILDE] = ACTIONS(1438), + [anon_sym_CARET] = ACTIONS(1438), + [anon_sym_AMP] = ACTIONS(1454), + [anon_sym_LT_DASH] = ACTIONS(1456), + [sym_none] = ACTIONS(1458), + [sym_true] = ACTIONS(1458), + [sym_false] = ACTIONS(1458), + [sym_nil] = ACTIONS(1458), + [anon_sym_if] = ACTIONS(1833), + [anon_sym_DOLLARif] = ACTIONS(1462), + [anon_sym_match] = ACTIONS(1464), + [anon_sym_select] = ACTIONS(1466), + [anon_sym_lock] = ACTIONS(1468), + [anon_sym_rlock] = ACTIONS(1468), + [anon_sym_unsafe] = ACTIONS(1839), + [anon_sym_sql] = ACTIONS(1472), + [sym_int_literal] = ACTIONS(1458), + [sym_float_literal] = ACTIONS(1474), + [sym_rune_literal] = ACTIONS(1474), + [sym_pseudo_compile_time_identifier] = ACTIONS(1476), + [anon_sym_shared] = ACTIONS(83), + [anon_sym_map_LBRACK] = ACTIONS(85), + [anon_sym_chan] = ACTIONS(87), + [anon_sym_thread] = ACTIONS(89), + [anon_sym_atomic] = ACTIONS(91), + [anon_sym_DOT_DOT] = ACTIONS(1478), + [sym___double_quote] = ACTIONS(1480), + [sym___single_quote] = ACTIONS(1482), + [sym___c_double_quote] = ACTIONS(1484), + [sym___c_single_quote] = ACTIONS(1486), + [sym___r_double_quote] = ACTIONS(1488), + [sym___r_single_quote] = ACTIONS(1490), }, [486] = { [sym_line_comment] = STATE(486), [sym_block_comment] = STATE(486), - [ts_builtin_sym_end] = ACTIONS(2906), - [sym_identifier] = ACTIONS(2908), - [anon_sym_LF] = ACTIONS(2908), - [anon_sym_CR] = ACTIONS(2908), - [anon_sym_CR_LF] = ACTIONS(2908), + [ts_builtin_sym_end] = ACTIONS(2896), + [sym_identifier] = ACTIONS(2898), + [anon_sym_LF] = ACTIONS(2898), + [anon_sym_CR] = ACTIONS(2898), + [anon_sym_CR_LF] = ACTIONS(2898), [anon_sym_SLASH_SLASH] = ACTIONS(497), [anon_sym_SLASH_STAR] = ACTIONS(499), - [anon_sym_DOT] = ACTIONS(2908), - [anon_sym_as] = ACTIONS(2908), - [anon_sym_LBRACE] = ACTIONS(2908), - [anon_sym_COMMA] = ACTIONS(2908), - [anon_sym_const] = ACTIONS(2908), - [anon_sym_LPAREN] = ACTIONS(2908), - [anon_sym_EQ] = ACTIONS(2908), - [anon_sym___global] = ACTIONS(2908), - [anon_sym_type] = ACTIONS(2908), - [anon_sym_PIPE] = ACTIONS(2908), - [anon_sym_fn] = ACTIONS(2908), - [anon_sym_PLUS] = ACTIONS(2908), - [anon_sym_DASH] = ACTIONS(2908), - [anon_sym_STAR] = ACTIONS(2908), - [anon_sym_SLASH] = ACTIONS(2908), - [anon_sym_PERCENT] = ACTIONS(2908), - [anon_sym_LT] = ACTIONS(2908), - [anon_sym_GT] = ACTIONS(2908), - [anon_sym_EQ_EQ] = ACTIONS(2908), - [anon_sym_BANG_EQ] = ACTIONS(2908), - [anon_sym_LT_EQ] = ACTIONS(2908), - [anon_sym_GT_EQ] = ACTIONS(2908), - [anon_sym_LBRACK] = ACTIONS(2906), - [anon_sym_struct] = ACTIONS(2908), - [anon_sym_union] = ACTIONS(2908), - [anon_sym_pub] = ACTIONS(2908), - [anon_sym_mut] = ACTIONS(2908), - [anon_sym_enum] = ACTIONS(2908), - [anon_sym_interface] = ACTIONS(2908), - [anon_sym_PLUS_PLUS] = ACTIONS(2908), - [anon_sym_DASH_DASH] = ACTIONS(2908), - [anon_sym_QMARK] = ACTIONS(2908), - [anon_sym_BANG] = ACTIONS(2908), - [anon_sym_go] = ACTIONS(2908), - [anon_sym_spawn] = ACTIONS(2908), - [anon_sym_json_DOTdecode] = ACTIONS(2908), - [anon_sym_LBRACK2] = ACTIONS(2908), - [anon_sym_TILDE] = ACTIONS(2908), - [anon_sym_CARET] = ACTIONS(2908), - [anon_sym_AMP] = ACTIONS(2908), - [anon_sym_LT_DASH] = ACTIONS(2908), - [anon_sym_LT_LT] = ACTIONS(2908), - [anon_sym_GT_GT] = ACTIONS(2908), - [anon_sym_GT_GT_GT] = ACTIONS(2908), - [anon_sym_AMP_CARET] = ACTIONS(2908), - [anon_sym_AMP_AMP] = ACTIONS(2908), - [anon_sym_PIPE_PIPE] = ACTIONS(2908), - [anon_sym_or] = ACTIONS(2908), - [sym_none] = ACTIONS(2908), - [sym_true] = ACTIONS(2908), - [sym_false] = ACTIONS(2908), - [sym_nil] = ACTIONS(2908), - [anon_sym_QMARK_DOT] = ACTIONS(2908), - [anon_sym_POUND_LBRACK] = ACTIONS(2908), - [anon_sym_if] = ACTIONS(2908), - [anon_sym_DOLLARif] = ACTIONS(2908), - [anon_sym_is] = ACTIONS(2908), - [anon_sym_BANGis] = ACTIONS(2908), - [anon_sym_in] = ACTIONS(2908), - [anon_sym_BANGin] = ACTIONS(2908), - [anon_sym_match] = ACTIONS(2908), - [anon_sym_select] = ACTIONS(2908), - [anon_sym_STAR_EQ] = ACTIONS(2908), - [anon_sym_SLASH_EQ] = ACTIONS(2908), - [anon_sym_PERCENT_EQ] = ACTIONS(2908), - [anon_sym_LT_LT_EQ] = ACTIONS(2908), - [anon_sym_GT_GT_EQ] = ACTIONS(2908), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(2908), - [anon_sym_AMP_EQ] = ACTIONS(2908), - [anon_sym_AMP_CARET_EQ] = ACTIONS(2908), - [anon_sym_PLUS_EQ] = ACTIONS(2908), - [anon_sym_DASH_EQ] = ACTIONS(2908), - [anon_sym_PIPE_EQ] = ACTIONS(2908), - [anon_sym_CARET_EQ] = ACTIONS(2908), - [anon_sym_COLON_EQ] = ACTIONS(2908), - [anon_sym_lock] = ACTIONS(2908), - [anon_sym_rlock] = ACTIONS(2908), - [anon_sym_unsafe] = ACTIONS(2908), - [anon_sym_sql] = ACTIONS(2908), - [sym_int_literal] = ACTIONS(2908), - [sym_float_literal] = ACTIONS(2908), - [sym_rune_literal] = ACTIONS(2908), - [sym_pseudo_compile_time_identifier] = ACTIONS(2908), - [anon_sym_shared] = ACTIONS(2908), - [anon_sym_map_LBRACK] = ACTIONS(2908), - [anon_sym_chan] = ACTIONS(2908), - [anon_sym_thread] = ACTIONS(2908), - [anon_sym_atomic] = ACTIONS(2908), - [anon_sym_assert] = ACTIONS(2908), - [anon_sym_defer] = ACTIONS(2908), - [anon_sym_goto] = ACTIONS(2908), - [anon_sym_break] = ACTIONS(2908), - [anon_sym_continue] = ACTIONS(2908), - [anon_sym_return] = ACTIONS(2908), - [anon_sym_DOLLARfor] = ACTIONS(2908), - [anon_sym_for] = ACTIONS(2908), - [anon_sym_POUND] = ACTIONS(2908), - [anon_sym_asm] = ACTIONS(2908), - [anon_sym_AT_LBRACK] = ACTIONS(2908), - [sym___double_quote] = ACTIONS(2908), - [sym___single_quote] = ACTIONS(2908), - [sym___c_double_quote] = ACTIONS(2908), - [sym___c_single_quote] = ACTIONS(2908), - [sym___r_double_quote] = ACTIONS(2908), - [sym___r_single_quote] = ACTIONS(2908), + [anon_sym_DOT] = ACTIONS(2898), + [anon_sym_as] = ACTIONS(2898), + [anon_sym_LBRACE] = ACTIONS(2898), + [anon_sym_COMMA] = ACTIONS(2898), + [anon_sym_const] = ACTIONS(2898), + [anon_sym_LPAREN] = ACTIONS(2898), + [anon_sym_EQ] = ACTIONS(2898), + [anon_sym___global] = ACTIONS(2898), + [anon_sym_type] = ACTIONS(2898), + [anon_sym_PIPE] = ACTIONS(2898), + [anon_sym_fn] = ACTIONS(2898), + [anon_sym_PLUS] = ACTIONS(2898), + [anon_sym_DASH] = ACTIONS(2898), + [anon_sym_STAR] = ACTIONS(2898), + [anon_sym_SLASH] = ACTIONS(2898), + [anon_sym_PERCENT] = ACTIONS(2898), + [anon_sym_LT] = ACTIONS(2898), + [anon_sym_GT] = ACTIONS(2898), + [anon_sym_EQ_EQ] = ACTIONS(2898), + [anon_sym_BANG_EQ] = ACTIONS(2898), + [anon_sym_LT_EQ] = ACTIONS(2898), + [anon_sym_GT_EQ] = ACTIONS(2898), + [anon_sym_LBRACK] = ACTIONS(2896), + [anon_sym_struct] = ACTIONS(2898), + [anon_sym_union] = ACTIONS(2898), + [anon_sym_pub] = ACTIONS(2898), + [anon_sym_mut] = ACTIONS(2898), + [anon_sym_enum] = ACTIONS(2898), + [anon_sym_interface] = ACTIONS(2898), + [anon_sym_PLUS_PLUS] = ACTIONS(2898), + [anon_sym_DASH_DASH] = ACTIONS(2898), + [anon_sym_QMARK] = ACTIONS(2898), + [anon_sym_BANG] = ACTIONS(2898), + [anon_sym_go] = ACTIONS(2898), + [anon_sym_spawn] = ACTIONS(2898), + [anon_sym_json_DOTdecode] = ACTIONS(2898), + [anon_sym_LBRACK2] = ACTIONS(2898), + [anon_sym_TILDE] = ACTIONS(2898), + [anon_sym_CARET] = ACTIONS(2898), + [anon_sym_AMP] = ACTIONS(2898), + [anon_sym_LT_DASH] = ACTIONS(2898), + [anon_sym_LT_LT] = ACTIONS(2898), + [anon_sym_GT_GT] = ACTIONS(2898), + [anon_sym_GT_GT_GT] = ACTIONS(2898), + [anon_sym_AMP_CARET] = ACTIONS(2898), + [anon_sym_AMP_AMP] = ACTIONS(2898), + [anon_sym_PIPE_PIPE] = ACTIONS(2898), + [anon_sym_or] = ACTIONS(2898), + [sym_none] = ACTIONS(2898), + [sym_true] = ACTIONS(2898), + [sym_false] = ACTIONS(2898), + [sym_nil] = ACTIONS(2898), + [anon_sym_QMARK_DOT] = ACTIONS(2898), + [anon_sym_POUND_LBRACK] = ACTIONS(2898), + [anon_sym_if] = ACTIONS(2898), + [anon_sym_DOLLARif] = ACTIONS(2898), + [anon_sym_is] = ACTIONS(2898), + [anon_sym_BANGis] = ACTIONS(2898), + [anon_sym_in] = ACTIONS(2898), + [anon_sym_BANGin] = ACTIONS(2898), + [anon_sym_match] = ACTIONS(2898), + [anon_sym_select] = ACTIONS(2898), + [anon_sym_STAR_EQ] = ACTIONS(2898), + [anon_sym_SLASH_EQ] = ACTIONS(2898), + [anon_sym_PERCENT_EQ] = ACTIONS(2898), + [anon_sym_LT_LT_EQ] = ACTIONS(2898), + [anon_sym_GT_GT_EQ] = ACTIONS(2898), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(2898), + [anon_sym_AMP_EQ] = ACTIONS(2898), + [anon_sym_AMP_CARET_EQ] = ACTIONS(2898), + [anon_sym_PLUS_EQ] = ACTIONS(2898), + [anon_sym_DASH_EQ] = ACTIONS(2898), + [anon_sym_PIPE_EQ] = ACTIONS(2898), + [anon_sym_CARET_EQ] = ACTIONS(2898), + [anon_sym_COLON_EQ] = ACTIONS(2898), + [anon_sym_lock] = ACTIONS(2898), + [anon_sym_rlock] = ACTIONS(2898), + [anon_sym_unsafe] = ACTIONS(2898), + [anon_sym_sql] = ACTIONS(2898), + [sym_int_literal] = ACTIONS(2898), + [sym_float_literal] = ACTIONS(2898), + [sym_rune_literal] = ACTIONS(2898), + [sym_pseudo_compile_time_identifier] = ACTIONS(2898), + [anon_sym_shared] = ACTIONS(2898), + [anon_sym_map_LBRACK] = ACTIONS(2898), + [anon_sym_chan] = ACTIONS(2898), + [anon_sym_thread] = ACTIONS(2898), + [anon_sym_atomic] = ACTIONS(2898), + [anon_sym_assert] = ACTIONS(2898), + [anon_sym_defer] = ACTIONS(2898), + [anon_sym_goto] = ACTIONS(2898), + [anon_sym_break] = ACTIONS(2898), + [anon_sym_continue] = ACTIONS(2898), + [anon_sym_return] = ACTIONS(2898), + [anon_sym_DOLLARfor] = ACTIONS(2898), + [anon_sym_for] = ACTIONS(2898), + [anon_sym_POUND] = ACTIONS(2898), + [anon_sym_asm] = ACTIONS(2898), + [anon_sym_AT_LBRACK] = ACTIONS(2898), + [sym___double_quote] = ACTIONS(2898), + [sym___single_quote] = ACTIONS(2898), + [sym___c_double_quote] = ACTIONS(2898), + [sym___c_single_quote] = ACTIONS(2898), + [sym___r_double_quote] = ACTIONS(2898), + [sym___r_single_quote] = ACTIONS(2898), }, [487] = { [sym_line_comment] = STATE(487), [sym_block_comment] = STATE(487), - [ts_builtin_sym_end] = ACTIONS(2910), - [sym_identifier] = ACTIONS(2912), - [anon_sym_LF] = ACTIONS(2912), - [anon_sym_CR] = ACTIONS(2912), - [anon_sym_CR_LF] = ACTIONS(2912), + [ts_builtin_sym_end] = ACTIONS(2900), + [sym_identifier] = ACTIONS(2902), + [anon_sym_LF] = ACTIONS(2902), + [anon_sym_CR] = ACTIONS(2902), + [anon_sym_CR_LF] = ACTIONS(2902), [anon_sym_SLASH_SLASH] = ACTIONS(497), [anon_sym_SLASH_STAR] = ACTIONS(499), - [anon_sym_DOT] = ACTIONS(2912), - [anon_sym_as] = ACTIONS(2912), - [anon_sym_LBRACE] = ACTIONS(2912), - [anon_sym_COMMA] = ACTIONS(2912), - [anon_sym_const] = ACTIONS(2912), - [anon_sym_LPAREN] = ACTIONS(2912), - [anon_sym_EQ] = ACTIONS(2912), - [anon_sym___global] = ACTIONS(2912), - [anon_sym_type] = ACTIONS(2912), - [anon_sym_PIPE] = ACTIONS(2912), - [anon_sym_fn] = ACTIONS(2912), - [anon_sym_PLUS] = ACTIONS(2912), - [anon_sym_DASH] = ACTIONS(2912), - [anon_sym_STAR] = ACTIONS(2912), - [anon_sym_SLASH] = ACTIONS(2912), - [anon_sym_PERCENT] = ACTIONS(2912), - [anon_sym_LT] = ACTIONS(2912), - [anon_sym_GT] = ACTIONS(2912), - [anon_sym_EQ_EQ] = ACTIONS(2912), - [anon_sym_BANG_EQ] = ACTIONS(2912), - [anon_sym_LT_EQ] = ACTIONS(2912), - [anon_sym_GT_EQ] = ACTIONS(2912), - [anon_sym_LBRACK] = ACTIONS(2910), - [anon_sym_struct] = ACTIONS(2912), - [anon_sym_union] = ACTIONS(2912), - [anon_sym_pub] = ACTIONS(2912), - [anon_sym_mut] = ACTIONS(2912), - [anon_sym_enum] = ACTIONS(2912), - [anon_sym_interface] = ACTIONS(2912), - [anon_sym_PLUS_PLUS] = ACTIONS(2912), - [anon_sym_DASH_DASH] = ACTIONS(2912), - [anon_sym_QMARK] = ACTIONS(2912), - [anon_sym_BANG] = ACTIONS(2912), - [anon_sym_go] = ACTIONS(2912), - [anon_sym_spawn] = ACTIONS(2912), - [anon_sym_json_DOTdecode] = ACTIONS(2912), - [anon_sym_LBRACK2] = ACTIONS(2912), - [anon_sym_TILDE] = ACTIONS(2912), - [anon_sym_CARET] = ACTIONS(2912), - [anon_sym_AMP] = ACTIONS(2912), - [anon_sym_LT_DASH] = ACTIONS(2912), - [anon_sym_LT_LT] = ACTIONS(2912), - [anon_sym_GT_GT] = ACTIONS(2912), - [anon_sym_GT_GT_GT] = ACTIONS(2912), - [anon_sym_AMP_CARET] = ACTIONS(2912), - [anon_sym_AMP_AMP] = ACTIONS(2912), - [anon_sym_PIPE_PIPE] = ACTIONS(2912), - [anon_sym_or] = ACTIONS(2912), - [sym_none] = ACTIONS(2912), - [sym_true] = ACTIONS(2912), - [sym_false] = ACTIONS(2912), - [sym_nil] = ACTIONS(2912), - [anon_sym_QMARK_DOT] = ACTIONS(2912), - [anon_sym_POUND_LBRACK] = ACTIONS(2912), - [anon_sym_if] = ACTIONS(2912), - [anon_sym_DOLLARif] = ACTIONS(2912), - [anon_sym_is] = ACTIONS(2912), - [anon_sym_BANGis] = ACTIONS(2912), - [anon_sym_in] = ACTIONS(2912), - [anon_sym_BANGin] = ACTIONS(2912), - [anon_sym_match] = ACTIONS(2912), - [anon_sym_select] = ACTIONS(2912), - [anon_sym_STAR_EQ] = ACTIONS(2912), - [anon_sym_SLASH_EQ] = ACTIONS(2912), - [anon_sym_PERCENT_EQ] = ACTIONS(2912), - [anon_sym_LT_LT_EQ] = ACTIONS(2912), - [anon_sym_GT_GT_EQ] = ACTIONS(2912), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(2912), - [anon_sym_AMP_EQ] = ACTIONS(2912), - [anon_sym_AMP_CARET_EQ] = ACTIONS(2912), - [anon_sym_PLUS_EQ] = ACTIONS(2912), - [anon_sym_DASH_EQ] = ACTIONS(2912), - [anon_sym_PIPE_EQ] = ACTIONS(2912), - [anon_sym_CARET_EQ] = ACTIONS(2912), - [anon_sym_COLON_EQ] = ACTIONS(2912), - [anon_sym_lock] = ACTIONS(2912), - [anon_sym_rlock] = ACTIONS(2912), - [anon_sym_unsafe] = ACTIONS(2912), - [anon_sym_sql] = ACTIONS(2912), - [sym_int_literal] = ACTIONS(2912), - [sym_float_literal] = ACTIONS(2912), - [sym_rune_literal] = ACTIONS(2912), - [sym_pseudo_compile_time_identifier] = ACTIONS(2912), - [anon_sym_shared] = ACTIONS(2912), - [anon_sym_map_LBRACK] = ACTIONS(2912), - [anon_sym_chan] = ACTIONS(2912), - [anon_sym_thread] = ACTIONS(2912), - [anon_sym_atomic] = ACTIONS(2912), - [anon_sym_assert] = ACTIONS(2912), - [anon_sym_defer] = ACTIONS(2912), - [anon_sym_goto] = ACTIONS(2912), - [anon_sym_break] = ACTIONS(2912), - [anon_sym_continue] = ACTIONS(2912), - [anon_sym_return] = ACTIONS(2912), - [anon_sym_DOLLARfor] = ACTIONS(2912), - [anon_sym_for] = ACTIONS(2912), - [anon_sym_POUND] = ACTIONS(2912), - [anon_sym_asm] = ACTIONS(2912), - [anon_sym_AT_LBRACK] = ACTIONS(2912), - [sym___double_quote] = ACTIONS(2912), - [sym___single_quote] = ACTIONS(2912), - [sym___c_double_quote] = ACTIONS(2912), - [sym___c_single_quote] = ACTIONS(2912), - [sym___r_double_quote] = ACTIONS(2912), - [sym___r_single_quote] = ACTIONS(2912), + [anon_sym_DOT] = ACTIONS(2902), + [anon_sym_as] = ACTIONS(2902), + [anon_sym_LBRACE] = ACTIONS(2902), + [anon_sym_COMMA] = ACTIONS(2902), + [anon_sym_const] = ACTIONS(2902), + [anon_sym_LPAREN] = ACTIONS(2902), + [anon_sym_EQ] = ACTIONS(2902), + [anon_sym___global] = ACTIONS(2902), + [anon_sym_type] = ACTIONS(2902), + [anon_sym_PIPE] = ACTIONS(2902), + [anon_sym_fn] = ACTIONS(2902), + [anon_sym_PLUS] = ACTIONS(2902), + [anon_sym_DASH] = ACTIONS(2902), + [anon_sym_STAR] = ACTIONS(2902), + [anon_sym_SLASH] = ACTIONS(2902), + [anon_sym_PERCENT] = ACTIONS(2902), + [anon_sym_LT] = ACTIONS(2902), + [anon_sym_GT] = ACTIONS(2902), + [anon_sym_EQ_EQ] = ACTIONS(2902), + [anon_sym_BANG_EQ] = ACTIONS(2902), + [anon_sym_LT_EQ] = ACTIONS(2902), + [anon_sym_GT_EQ] = ACTIONS(2902), + [anon_sym_LBRACK] = ACTIONS(2900), + [anon_sym_struct] = ACTIONS(2902), + [anon_sym_union] = ACTIONS(2902), + [anon_sym_pub] = ACTIONS(2902), + [anon_sym_mut] = ACTIONS(2902), + [anon_sym_enum] = ACTIONS(2902), + [anon_sym_interface] = ACTIONS(2902), + [anon_sym_PLUS_PLUS] = ACTIONS(2902), + [anon_sym_DASH_DASH] = ACTIONS(2902), + [anon_sym_QMARK] = ACTIONS(2902), + [anon_sym_BANG] = ACTIONS(2902), + [anon_sym_go] = ACTIONS(2902), + [anon_sym_spawn] = ACTIONS(2902), + [anon_sym_json_DOTdecode] = ACTIONS(2902), + [anon_sym_LBRACK2] = ACTIONS(2902), + [anon_sym_TILDE] = ACTIONS(2902), + [anon_sym_CARET] = ACTIONS(2902), + [anon_sym_AMP] = ACTIONS(2902), + [anon_sym_LT_DASH] = ACTIONS(2902), + [anon_sym_LT_LT] = ACTIONS(2902), + [anon_sym_GT_GT] = ACTIONS(2902), + [anon_sym_GT_GT_GT] = ACTIONS(2902), + [anon_sym_AMP_CARET] = ACTIONS(2902), + [anon_sym_AMP_AMP] = ACTIONS(2902), + [anon_sym_PIPE_PIPE] = ACTIONS(2902), + [anon_sym_or] = ACTIONS(2902), + [sym_none] = ACTIONS(2902), + [sym_true] = ACTIONS(2902), + [sym_false] = ACTIONS(2902), + [sym_nil] = ACTIONS(2902), + [anon_sym_QMARK_DOT] = ACTIONS(2902), + [anon_sym_POUND_LBRACK] = ACTIONS(2902), + [anon_sym_if] = ACTIONS(2902), + [anon_sym_DOLLARif] = ACTIONS(2902), + [anon_sym_is] = ACTIONS(2902), + [anon_sym_BANGis] = ACTIONS(2902), + [anon_sym_in] = ACTIONS(2902), + [anon_sym_BANGin] = ACTIONS(2902), + [anon_sym_match] = ACTIONS(2902), + [anon_sym_select] = ACTIONS(2902), + [anon_sym_STAR_EQ] = ACTIONS(2902), + [anon_sym_SLASH_EQ] = ACTIONS(2902), + [anon_sym_PERCENT_EQ] = ACTIONS(2902), + [anon_sym_LT_LT_EQ] = ACTIONS(2902), + [anon_sym_GT_GT_EQ] = ACTIONS(2902), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(2902), + [anon_sym_AMP_EQ] = ACTIONS(2902), + [anon_sym_AMP_CARET_EQ] = ACTIONS(2902), + [anon_sym_PLUS_EQ] = ACTIONS(2902), + [anon_sym_DASH_EQ] = ACTIONS(2902), + [anon_sym_PIPE_EQ] = ACTIONS(2902), + [anon_sym_CARET_EQ] = ACTIONS(2902), + [anon_sym_COLON_EQ] = ACTIONS(2902), + [anon_sym_lock] = ACTIONS(2902), + [anon_sym_rlock] = ACTIONS(2902), + [anon_sym_unsafe] = ACTIONS(2902), + [anon_sym_sql] = ACTIONS(2902), + [sym_int_literal] = ACTIONS(2902), + [sym_float_literal] = ACTIONS(2902), + [sym_rune_literal] = ACTIONS(2902), + [sym_pseudo_compile_time_identifier] = ACTIONS(2902), + [anon_sym_shared] = ACTIONS(2902), + [anon_sym_map_LBRACK] = ACTIONS(2902), + [anon_sym_chan] = ACTIONS(2902), + [anon_sym_thread] = ACTIONS(2902), + [anon_sym_atomic] = ACTIONS(2902), + [anon_sym_assert] = ACTIONS(2902), + [anon_sym_defer] = ACTIONS(2902), + [anon_sym_goto] = ACTIONS(2902), + [anon_sym_break] = ACTIONS(2902), + [anon_sym_continue] = ACTIONS(2902), + [anon_sym_return] = ACTIONS(2902), + [anon_sym_DOLLARfor] = ACTIONS(2902), + [anon_sym_for] = ACTIONS(2902), + [anon_sym_POUND] = ACTIONS(2902), + [anon_sym_asm] = ACTIONS(2902), + [anon_sym_AT_LBRACK] = ACTIONS(2902), + [sym___double_quote] = ACTIONS(2902), + [sym___single_quote] = ACTIONS(2902), + [sym___c_double_quote] = ACTIONS(2902), + [sym___c_single_quote] = ACTIONS(2902), + [sym___r_double_quote] = ACTIONS(2902), + [sym___r_single_quote] = ACTIONS(2902), }, [488] = { [sym_line_comment] = STATE(488), [sym_block_comment] = STATE(488), - [ts_builtin_sym_end] = ACTIONS(2914), - [sym_identifier] = ACTIONS(2916), - [anon_sym_LF] = ACTIONS(2916), - [anon_sym_CR] = ACTIONS(2916), - [anon_sym_CR_LF] = ACTIONS(2916), + [ts_builtin_sym_end] = ACTIONS(2904), + [sym_identifier] = ACTIONS(2906), + [anon_sym_LF] = ACTIONS(2906), + [anon_sym_CR] = ACTIONS(2906), + [anon_sym_CR_LF] = ACTIONS(2906), [anon_sym_SLASH_SLASH] = ACTIONS(497), [anon_sym_SLASH_STAR] = ACTIONS(499), - [anon_sym_DOT] = ACTIONS(2916), - [anon_sym_as] = ACTIONS(2916), - [anon_sym_LBRACE] = ACTIONS(2916), - [anon_sym_COMMA] = ACTIONS(2916), - [anon_sym_const] = ACTIONS(2916), - [anon_sym_LPAREN] = ACTIONS(2916), - [anon_sym_EQ] = ACTIONS(2916), - [anon_sym___global] = ACTIONS(2916), - [anon_sym_type] = ACTIONS(2916), - [anon_sym_PIPE] = ACTIONS(2916), - [anon_sym_fn] = ACTIONS(2916), - [anon_sym_PLUS] = ACTIONS(2916), - [anon_sym_DASH] = ACTIONS(2916), - [anon_sym_STAR] = ACTIONS(2916), - [anon_sym_SLASH] = ACTIONS(2916), - [anon_sym_PERCENT] = ACTIONS(2916), - [anon_sym_LT] = ACTIONS(2916), - [anon_sym_GT] = ACTIONS(2916), - [anon_sym_EQ_EQ] = ACTIONS(2916), - [anon_sym_BANG_EQ] = ACTIONS(2916), - [anon_sym_LT_EQ] = ACTIONS(2916), - [anon_sym_GT_EQ] = ACTIONS(2916), - [anon_sym_LBRACK] = ACTIONS(2914), - [anon_sym_struct] = ACTIONS(2916), - [anon_sym_union] = ACTIONS(2916), - [anon_sym_pub] = ACTIONS(2916), - [anon_sym_mut] = ACTIONS(2916), - [anon_sym_enum] = ACTIONS(2916), - [anon_sym_interface] = ACTIONS(2916), - [anon_sym_PLUS_PLUS] = ACTIONS(2916), - [anon_sym_DASH_DASH] = ACTIONS(2916), - [anon_sym_QMARK] = ACTIONS(2916), - [anon_sym_BANG] = ACTIONS(2916), - [anon_sym_go] = ACTIONS(2916), - [anon_sym_spawn] = ACTIONS(2916), - [anon_sym_json_DOTdecode] = ACTIONS(2916), - [anon_sym_LBRACK2] = ACTIONS(2916), - [anon_sym_TILDE] = ACTIONS(2916), - [anon_sym_CARET] = ACTIONS(2916), - [anon_sym_AMP] = ACTIONS(2916), - [anon_sym_LT_DASH] = ACTIONS(2916), - [anon_sym_LT_LT] = ACTIONS(2916), - [anon_sym_GT_GT] = ACTIONS(2916), - [anon_sym_GT_GT_GT] = ACTIONS(2916), - [anon_sym_AMP_CARET] = ACTIONS(2916), - [anon_sym_AMP_AMP] = ACTIONS(2916), - [anon_sym_PIPE_PIPE] = ACTIONS(2916), - [anon_sym_or] = ACTIONS(2916), - [sym_none] = ACTIONS(2916), - [sym_true] = ACTIONS(2916), - [sym_false] = ACTIONS(2916), - [sym_nil] = ACTIONS(2916), - [anon_sym_QMARK_DOT] = ACTIONS(2916), - [anon_sym_POUND_LBRACK] = ACTIONS(2916), - [anon_sym_if] = ACTIONS(2916), - [anon_sym_DOLLARif] = ACTIONS(2916), - [anon_sym_is] = ACTIONS(2916), - [anon_sym_BANGis] = ACTIONS(2916), - [anon_sym_in] = ACTIONS(2916), - [anon_sym_BANGin] = ACTIONS(2916), - [anon_sym_match] = ACTIONS(2916), - [anon_sym_select] = ACTIONS(2916), - [anon_sym_STAR_EQ] = ACTIONS(2916), - [anon_sym_SLASH_EQ] = ACTIONS(2916), - [anon_sym_PERCENT_EQ] = ACTIONS(2916), - [anon_sym_LT_LT_EQ] = ACTIONS(2916), - [anon_sym_GT_GT_EQ] = ACTIONS(2916), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(2916), - [anon_sym_AMP_EQ] = ACTIONS(2916), - [anon_sym_AMP_CARET_EQ] = ACTIONS(2916), - [anon_sym_PLUS_EQ] = ACTIONS(2916), - [anon_sym_DASH_EQ] = ACTIONS(2916), - [anon_sym_PIPE_EQ] = ACTIONS(2916), - [anon_sym_CARET_EQ] = ACTIONS(2916), - [anon_sym_COLON_EQ] = ACTIONS(2916), - [anon_sym_lock] = ACTIONS(2916), - [anon_sym_rlock] = ACTIONS(2916), - [anon_sym_unsafe] = ACTIONS(2916), - [anon_sym_sql] = ACTIONS(2916), - [sym_int_literal] = ACTIONS(2916), - [sym_float_literal] = ACTIONS(2916), - [sym_rune_literal] = ACTIONS(2916), - [sym_pseudo_compile_time_identifier] = ACTIONS(2916), - [anon_sym_shared] = ACTIONS(2916), - [anon_sym_map_LBRACK] = ACTIONS(2916), - [anon_sym_chan] = ACTIONS(2916), - [anon_sym_thread] = ACTIONS(2916), - [anon_sym_atomic] = ACTIONS(2916), - [anon_sym_assert] = ACTIONS(2916), - [anon_sym_defer] = ACTIONS(2916), - [anon_sym_goto] = ACTIONS(2916), - [anon_sym_break] = ACTIONS(2916), - [anon_sym_continue] = ACTIONS(2916), - [anon_sym_return] = ACTIONS(2916), - [anon_sym_DOLLARfor] = ACTIONS(2916), - [anon_sym_for] = ACTIONS(2916), - [anon_sym_POUND] = ACTIONS(2916), - [anon_sym_asm] = ACTIONS(2916), - [anon_sym_AT_LBRACK] = ACTIONS(2916), - [sym___double_quote] = ACTIONS(2916), - [sym___single_quote] = ACTIONS(2916), - [sym___c_double_quote] = ACTIONS(2916), - [sym___c_single_quote] = ACTIONS(2916), - [sym___r_double_quote] = ACTIONS(2916), - [sym___r_single_quote] = ACTIONS(2916), + [anon_sym_DOT] = ACTIONS(2906), + [anon_sym_as] = ACTIONS(2906), + [anon_sym_LBRACE] = ACTIONS(2906), + [anon_sym_COMMA] = ACTIONS(2906), + [anon_sym_const] = ACTIONS(2906), + [anon_sym_LPAREN] = ACTIONS(2906), + [anon_sym_EQ] = ACTIONS(2906), + [anon_sym___global] = ACTIONS(2906), + [anon_sym_type] = ACTIONS(2906), + [anon_sym_PIPE] = ACTIONS(2906), + [anon_sym_fn] = ACTIONS(2906), + [anon_sym_PLUS] = ACTIONS(2906), + [anon_sym_DASH] = ACTIONS(2906), + [anon_sym_STAR] = ACTIONS(2906), + [anon_sym_SLASH] = ACTIONS(2906), + [anon_sym_PERCENT] = ACTIONS(2906), + [anon_sym_LT] = ACTIONS(2906), + [anon_sym_GT] = ACTIONS(2906), + [anon_sym_EQ_EQ] = ACTIONS(2906), + [anon_sym_BANG_EQ] = ACTIONS(2906), + [anon_sym_LT_EQ] = ACTIONS(2906), + [anon_sym_GT_EQ] = ACTIONS(2906), + [anon_sym_LBRACK] = ACTIONS(2904), + [anon_sym_struct] = ACTIONS(2906), + [anon_sym_union] = ACTIONS(2906), + [anon_sym_pub] = ACTIONS(2906), + [anon_sym_mut] = ACTIONS(2906), + [anon_sym_enum] = ACTIONS(2906), + [anon_sym_interface] = ACTIONS(2906), + [anon_sym_PLUS_PLUS] = ACTIONS(2906), + [anon_sym_DASH_DASH] = ACTIONS(2906), + [anon_sym_QMARK] = ACTIONS(2906), + [anon_sym_BANG] = ACTIONS(2906), + [anon_sym_go] = ACTIONS(2906), + [anon_sym_spawn] = ACTIONS(2906), + [anon_sym_json_DOTdecode] = ACTIONS(2906), + [anon_sym_LBRACK2] = ACTIONS(2906), + [anon_sym_TILDE] = ACTIONS(2906), + [anon_sym_CARET] = ACTIONS(2906), + [anon_sym_AMP] = ACTIONS(2906), + [anon_sym_LT_DASH] = ACTIONS(2906), + [anon_sym_LT_LT] = ACTIONS(2906), + [anon_sym_GT_GT] = ACTIONS(2906), + [anon_sym_GT_GT_GT] = ACTIONS(2906), + [anon_sym_AMP_CARET] = ACTIONS(2906), + [anon_sym_AMP_AMP] = ACTIONS(2906), + [anon_sym_PIPE_PIPE] = ACTIONS(2906), + [anon_sym_or] = ACTIONS(2906), + [sym_none] = ACTIONS(2906), + [sym_true] = ACTIONS(2906), + [sym_false] = ACTIONS(2906), + [sym_nil] = ACTIONS(2906), + [anon_sym_QMARK_DOT] = ACTIONS(2906), + [anon_sym_POUND_LBRACK] = ACTIONS(2906), + [anon_sym_if] = ACTIONS(2906), + [anon_sym_DOLLARif] = ACTIONS(2906), + [anon_sym_is] = ACTIONS(2906), + [anon_sym_BANGis] = ACTIONS(2906), + [anon_sym_in] = ACTIONS(2906), + [anon_sym_BANGin] = ACTIONS(2906), + [anon_sym_match] = ACTIONS(2906), + [anon_sym_select] = ACTIONS(2906), + [anon_sym_STAR_EQ] = ACTIONS(2906), + [anon_sym_SLASH_EQ] = ACTIONS(2906), + [anon_sym_PERCENT_EQ] = ACTIONS(2906), + [anon_sym_LT_LT_EQ] = ACTIONS(2906), + [anon_sym_GT_GT_EQ] = ACTIONS(2906), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(2906), + [anon_sym_AMP_EQ] = ACTIONS(2906), + [anon_sym_AMP_CARET_EQ] = ACTIONS(2906), + [anon_sym_PLUS_EQ] = ACTIONS(2906), + [anon_sym_DASH_EQ] = ACTIONS(2906), + [anon_sym_PIPE_EQ] = ACTIONS(2906), + [anon_sym_CARET_EQ] = ACTIONS(2906), + [anon_sym_COLON_EQ] = ACTIONS(2906), + [anon_sym_lock] = ACTIONS(2906), + [anon_sym_rlock] = ACTIONS(2906), + [anon_sym_unsafe] = ACTIONS(2906), + [anon_sym_sql] = ACTIONS(2906), + [sym_int_literal] = ACTIONS(2906), + [sym_float_literal] = ACTIONS(2906), + [sym_rune_literal] = ACTIONS(2906), + [sym_pseudo_compile_time_identifier] = ACTIONS(2906), + [anon_sym_shared] = ACTIONS(2906), + [anon_sym_map_LBRACK] = ACTIONS(2906), + [anon_sym_chan] = ACTIONS(2906), + [anon_sym_thread] = ACTIONS(2906), + [anon_sym_atomic] = ACTIONS(2906), + [anon_sym_assert] = ACTIONS(2906), + [anon_sym_defer] = ACTIONS(2906), + [anon_sym_goto] = ACTIONS(2906), + [anon_sym_break] = ACTIONS(2906), + [anon_sym_continue] = ACTIONS(2906), + [anon_sym_return] = ACTIONS(2906), + [anon_sym_DOLLARfor] = ACTIONS(2906), + [anon_sym_for] = ACTIONS(2906), + [anon_sym_POUND] = ACTIONS(2906), + [anon_sym_asm] = ACTIONS(2906), + [anon_sym_AT_LBRACK] = ACTIONS(2906), + [sym___double_quote] = ACTIONS(2906), + [sym___single_quote] = ACTIONS(2906), + [sym___c_double_quote] = ACTIONS(2906), + [sym___c_single_quote] = ACTIONS(2906), + [sym___r_double_quote] = ACTIONS(2906), + [sym___r_single_quote] = ACTIONS(2906), }, [489] = { [sym_line_comment] = STATE(489), [sym_block_comment] = STATE(489), - [ts_builtin_sym_end] = ACTIONS(2918), - [sym_identifier] = ACTIONS(2920), - [anon_sym_LF] = ACTIONS(2920), - [anon_sym_CR] = ACTIONS(2920), - [anon_sym_CR_LF] = ACTIONS(2920), + [ts_builtin_sym_end] = ACTIONS(2908), + [sym_identifier] = ACTIONS(2910), + [anon_sym_LF] = ACTIONS(2910), + [anon_sym_CR] = ACTIONS(2910), + [anon_sym_CR_LF] = ACTIONS(2910), [anon_sym_SLASH_SLASH] = ACTIONS(497), [anon_sym_SLASH_STAR] = ACTIONS(499), - [anon_sym_DOT] = ACTIONS(2920), - [anon_sym_as] = ACTIONS(2920), - [anon_sym_LBRACE] = ACTIONS(2920), - [anon_sym_COMMA] = ACTIONS(2920), - [anon_sym_const] = ACTIONS(2920), - [anon_sym_LPAREN] = ACTIONS(2920), - [anon_sym_EQ] = ACTIONS(2920), - [anon_sym___global] = ACTIONS(2920), - [anon_sym_type] = ACTIONS(2920), - [anon_sym_PIPE] = ACTIONS(2920), - [anon_sym_fn] = ACTIONS(2920), - [anon_sym_PLUS] = ACTIONS(2920), - [anon_sym_DASH] = ACTIONS(2920), - [anon_sym_STAR] = ACTIONS(2920), - [anon_sym_SLASH] = ACTIONS(2920), - [anon_sym_PERCENT] = ACTIONS(2920), - [anon_sym_LT] = ACTIONS(2920), - [anon_sym_GT] = ACTIONS(2920), - [anon_sym_EQ_EQ] = ACTIONS(2920), - [anon_sym_BANG_EQ] = ACTIONS(2920), - [anon_sym_LT_EQ] = ACTIONS(2920), - [anon_sym_GT_EQ] = ACTIONS(2920), - [anon_sym_LBRACK] = ACTIONS(2918), - [anon_sym_struct] = ACTIONS(2920), - [anon_sym_union] = ACTIONS(2920), - [anon_sym_pub] = ACTIONS(2920), - [anon_sym_mut] = ACTIONS(2920), - [anon_sym_enum] = ACTIONS(2920), - [anon_sym_interface] = ACTIONS(2920), - [anon_sym_PLUS_PLUS] = ACTIONS(2920), - [anon_sym_DASH_DASH] = ACTIONS(2920), - [anon_sym_QMARK] = ACTIONS(2920), - [anon_sym_BANG] = ACTIONS(2920), - [anon_sym_go] = ACTIONS(2920), - [anon_sym_spawn] = ACTIONS(2920), - [anon_sym_json_DOTdecode] = ACTIONS(2920), - [anon_sym_LBRACK2] = ACTIONS(2920), - [anon_sym_TILDE] = ACTIONS(2920), - [anon_sym_CARET] = ACTIONS(2920), - [anon_sym_AMP] = ACTIONS(2920), - [anon_sym_LT_DASH] = ACTIONS(2920), - [anon_sym_LT_LT] = ACTIONS(2920), - [anon_sym_GT_GT] = ACTIONS(2920), - [anon_sym_GT_GT_GT] = ACTIONS(2920), - [anon_sym_AMP_CARET] = ACTIONS(2920), - [anon_sym_AMP_AMP] = ACTIONS(2920), - [anon_sym_PIPE_PIPE] = ACTIONS(2920), - [anon_sym_or] = ACTIONS(2920), - [sym_none] = ACTIONS(2920), - [sym_true] = ACTIONS(2920), - [sym_false] = ACTIONS(2920), - [sym_nil] = ACTIONS(2920), - [anon_sym_QMARK_DOT] = ACTIONS(2920), - [anon_sym_POUND_LBRACK] = ACTIONS(2920), - [anon_sym_if] = ACTIONS(2920), - [anon_sym_DOLLARif] = ACTIONS(2920), - [anon_sym_is] = ACTIONS(2920), - [anon_sym_BANGis] = ACTIONS(2920), - [anon_sym_in] = ACTIONS(2920), - [anon_sym_BANGin] = ACTIONS(2920), - [anon_sym_match] = ACTIONS(2920), - [anon_sym_select] = ACTIONS(2920), - [anon_sym_STAR_EQ] = ACTIONS(2920), - [anon_sym_SLASH_EQ] = ACTIONS(2920), - [anon_sym_PERCENT_EQ] = ACTIONS(2920), - [anon_sym_LT_LT_EQ] = ACTIONS(2920), - [anon_sym_GT_GT_EQ] = ACTIONS(2920), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(2920), - [anon_sym_AMP_EQ] = ACTIONS(2920), - [anon_sym_AMP_CARET_EQ] = ACTIONS(2920), - [anon_sym_PLUS_EQ] = ACTIONS(2920), - [anon_sym_DASH_EQ] = ACTIONS(2920), - [anon_sym_PIPE_EQ] = ACTIONS(2920), - [anon_sym_CARET_EQ] = ACTIONS(2920), - [anon_sym_COLON_EQ] = ACTIONS(2920), - [anon_sym_lock] = ACTIONS(2920), - [anon_sym_rlock] = ACTIONS(2920), - [anon_sym_unsafe] = ACTIONS(2920), - [anon_sym_sql] = ACTIONS(2920), - [sym_int_literal] = ACTIONS(2920), - [sym_float_literal] = ACTIONS(2920), - [sym_rune_literal] = ACTIONS(2920), - [sym_pseudo_compile_time_identifier] = ACTIONS(2920), - [anon_sym_shared] = ACTIONS(2920), - [anon_sym_map_LBRACK] = ACTIONS(2920), - [anon_sym_chan] = ACTIONS(2920), - [anon_sym_thread] = ACTIONS(2920), - [anon_sym_atomic] = ACTIONS(2920), - [anon_sym_assert] = ACTIONS(2920), - [anon_sym_defer] = ACTIONS(2920), - [anon_sym_goto] = ACTIONS(2920), - [anon_sym_break] = ACTIONS(2920), - [anon_sym_continue] = ACTIONS(2920), - [anon_sym_return] = ACTIONS(2920), - [anon_sym_DOLLARfor] = ACTIONS(2920), - [anon_sym_for] = ACTIONS(2920), - [anon_sym_POUND] = ACTIONS(2920), - [anon_sym_asm] = ACTIONS(2920), - [anon_sym_AT_LBRACK] = ACTIONS(2920), - [sym___double_quote] = ACTIONS(2920), - [sym___single_quote] = ACTIONS(2920), - [sym___c_double_quote] = ACTIONS(2920), - [sym___c_single_quote] = ACTIONS(2920), - [sym___r_double_quote] = ACTIONS(2920), - [sym___r_single_quote] = ACTIONS(2920), + [anon_sym_DOT] = ACTIONS(2910), + [anon_sym_as] = ACTIONS(2910), + [anon_sym_LBRACE] = ACTIONS(2910), + [anon_sym_COMMA] = ACTIONS(2910), + [anon_sym_const] = ACTIONS(2910), + [anon_sym_LPAREN] = ACTIONS(2910), + [anon_sym_EQ] = ACTIONS(2910), + [anon_sym___global] = ACTIONS(2910), + [anon_sym_type] = ACTIONS(2910), + [anon_sym_PIPE] = ACTIONS(2910), + [anon_sym_fn] = ACTIONS(2910), + [anon_sym_PLUS] = ACTIONS(2910), + [anon_sym_DASH] = ACTIONS(2910), + [anon_sym_STAR] = ACTIONS(2910), + [anon_sym_SLASH] = ACTIONS(2910), + [anon_sym_PERCENT] = ACTIONS(2910), + [anon_sym_LT] = ACTIONS(2910), + [anon_sym_GT] = ACTIONS(2910), + [anon_sym_EQ_EQ] = ACTIONS(2910), + [anon_sym_BANG_EQ] = ACTIONS(2910), + [anon_sym_LT_EQ] = ACTIONS(2910), + [anon_sym_GT_EQ] = ACTIONS(2910), + [anon_sym_LBRACK] = ACTIONS(2908), + [anon_sym_struct] = ACTIONS(2910), + [anon_sym_union] = ACTIONS(2910), + [anon_sym_pub] = ACTIONS(2910), + [anon_sym_mut] = ACTIONS(2910), + [anon_sym_enum] = ACTIONS(2910), + [anon_sym_interface] = ACTIONS(2910), + [anon_sym_PLUS_PLUS] = ACTIONS(2910), + [anon_sym_DASH_DASH] = ACTIONS(2910), + [anon_sym_QMARK] = ACTIONS(2910), + [anon_sym_BANG] = ACTIONS(2910), + [anon_sym_go] = ACTIONS(2910), + [anon_sym_spawn] = ACTIONS(2910), + [anon_sym_json_DOTdecode] = ACTIONS(2910), + [anon_sym_LBRACK2] = ACTIONS(2910), + [anon_sym_TILDE] = ACTIONS(2910), + [anon_sym_CARET] = ACTIONS(2910), + [anon_sym_AMP] = ACTIONS(2910), + [anon_sym_LT_DASH] = ACTIONS(2910), + [anon_sym_LT_LT] = ACTIONS(2910), + [anon_sym_GT_GT] = ACTIONS(2910), + [anon_sym_GT_GT_GT] = ACTIONS(2910), + [anon_sym_AMP_CARET] = ACTIONS(2910), + [anon_sym_AMP_AMP] = ACTIONS(2910), + [anon_sym_PIPE_PIPE] = ACTIONS(2910), + [anon_sym_or] = ACTIONS(2910), + [sym_none] = ACTIONS(2910), + [sym_true] = ACTIONS(2910), + [sym_false] = ACTIONS(2910), + [sym_nil] = ACTIONS(2910), + [anon_sym_QMARK_DOT] = ACTIONS(2910), + [anon_sym_POUND_LBRACK] = ACTIONS(2910), + [anon_sym_if] = ACTIONS(2910), + [anon_sym_DOLLARif] = ACTIONS(2910), + [anon_sym_is] = ACTIONS(2910), + [anon_sym_BANGis] = ACTIONS(2910), + [anon_sym_in] = ACTIONS(2910), + [anon_sym_BANGin] = ACTIONS(2910), + [anon_sym_match] = ACTIONS(2910), + [anon_sym_select] = ACTIONS(2910), + [anon_sym_STAR_EQ] = ACTIONS(2910), + [anon_sym_SLASH_EQ] = ACTIONS(2910), + [anon_sym_PERCENT_EQ] = ACTIONS(2910), + [anon_sym_LT_LT_EQ] = ACTIONS(2910), + [anon_sym_GT_GT_EQ] = ACTIONS(2910), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(2910), + [anon_sym_AMP_EQ] = ACTIONS(2910), + [anon_sym_AMP_CARET_EQ] = ACTIONS(2910), + [anon_sym_PLUS_EQ] = ACTIONS(2910), + [anon_sym_DASH_EQ] = ACTIONS(2910), + [anon_sym_PIPE_EQ] = ACTIONS(2910), + [anon_sym_CARET_EQ] = ACTIONS(2910), + [anon_sym_COLON_EQ] = ACTIONS(2910), + [anon_sym_lock] = ACTIONS(2910), + [anon_sym_rlock] = ACTIONS(2910), + [anon_sym_unsafe] = ACTIONS(2910), + [anon_sym_sql] = ACTIONS(2910), + [sym_int_literal] = ACTIONS(2910), + [sym_float_literal] = ACTIONS(2910), + [sym_rune_literal] = ACTIONS(2910), + [sym_pseudo_compile_time_identifier] = ACTIONS(2910), + [anon_sym_shared] = ACTIONS(2910), + [anon_sym_map_LBRACK] = ACTIONS(2910), + [anon_sym_chan] = ACTIONS(2910), + [anon_sym_thread] = ACTIONS(2910), + [anon_sym_atomic] = ACTIONS(2910), + [anon_sym_assert] = ACTIONS(2910), + [anon_sym_defer] = ACTIONS(2910), + [anon_sym_goto] = ACTIONS(2910), + [anon_sym_break] = ACTIONS(2910), + [anon_sym_continue] = ACTIONS(2910), + [anon_sym_return] = ACTIONS(2910), + [anon_sym_DOLLARfor] = ACTIONS(2910), + [anon_sym_for] = ACTIONS(2910), + [anon_sym_POUND] = ACTIONS(2910), + [anon_sym_asm] = ACTIONS(2910), + [anon_sym_AT_LBRACK] = ACTIONS(2910), + [sym___double_quote] = ACTIONS(2910), + [sym___single_quote] = ACTIONS(2910), + [sym___c_double_quote] = ACTIONS(2910), + [sym___c_single_quote] = ACTIONS(2910), + [sym___r_double_quote] = ACTIONS(2910), + [sym___r_single_quote] = ACTIONS(2910), }, [490] = { [sym_line_comment] = STATE(490), [sym_block_comment] = STATE(490), - [sym__expression] = STATE(2585), - [sym__expression_without_blocks] = STATE(2300), - [sym__expression_with_blocks] = STATE(2300), - [sym_inc_expression] = STATE(2307), - [sym_dec_expression] = STATE(2307), - [sym_or_block_expression] = STATE(2307), - [sym_option_propagation_expression] = STATE(2307), - [sym_result_propagation_expression] = STATE(2307), - [sym_anon_struct_value_expression] = STATE(2380), - [sym_go_expression] = STATE(2307), - [sym_spawn_expression] = STATE(2307), - [sym_parenthesized_expression] = STATE(2307), - [sym_call_expression] = STATE(2307), - [sym_type_initializer] = STATE(2380), - [sym_function_literal] = STATE(2307), - [sym_reference_expression] = STATE(2311), - [sym_type_reference_expression] = STATE(3541), - [sym_unary_expression] = STATE(2307), - [sym_receive_expression] = STATE(2307), - [sym_binary_expression] = STATE(2307), - [sym_as_type_cast_expression] = STATE(2307), - [sym__max_group] = STATE(2307), - [sym_literal] = STATE(2292), - [sym_map_init_expression] = STATE(2380), - [sym_array_creation] = STATE(2307), - [sym_fixed_array_creation] = STATE(2307), - [sym_selector_expression] = STATE(2307), - [sym_index_expression] = STATE(2307), - [sym_slice_expression] = STATE(2307), - [sym_if_expression] = STATE(2380), - [sym_compile_time_if_expression] = STATE(2380), - [sym_is_expression] = STATE(2307), - [sym_in_expression] = STATE(2307), - [sym_enum_fetch] = STATE(2307), - [sym_match_expression] = STATE(2380), - [sym_select_expression] = STATE(2380), - [sym_lock_expression] = STATE(2380), - [sym_unsafe_expression] = STATE(2380), - [sym_sql_expression] = STATE(2380), - [sym_c_string_literal] = STATE(2308), - [sym_raw_string_literal] = STATE(2308), - [sym_interpreted_string_literal] = STATE(2308), - [sym_mutability_modifiers] = STATE(939), - [sym_plain_type] = STATE(3557), - [sym__plain_type_without_special] = STATE(2302), - [sym_anon_struct_type] = STATE(2303), - [sym_multi_return_type] = STATE(2302), - [sym_result_type] = STATE(2302), - [sym_option_type] = STATE(2302), - [sym_qualified_type] = STATE(3541), - [sym_fixed_array_type] = STATE(2303), - [sym_array_type] = STATE(2303), - [sym_pointer_type] = STATE(2303), - [sym_wrong_pointer_type] = STATE(2303), - [sym_map_type] = STATE(2303), - [sym_channel_type] = STATE(2303), - [sym_shared_type] = STATE(2303), - [sym_thread_type] = STATE(2303), - [sym_atomic_type] = STATE(2303), - [sym_generic_type] = STATE(2303), - [sym_function_type] = STATE(2303), - [sym_range] = STATE(4466), - [sym_identifier] = ACTIONS(2135), - [anon_sym_SLASH_SLASH] = ACTIONS(3), - [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1428), - [anon_sym_LBRACE] = ACTIONS(1430), - [anon_sym_LPAREN] = ACTIONS(1432), - [anon_sym_fn] = ACTIONS(1434), - [anon_sym_PLUS] = ACTIONS(1436), - [anon_sym_DASH] = ACTIONS(1436), - [anon_sym_STAR] = ACTIONS(2137), - [anon_sym_struct] = ACTIONS(1440), - [anon_sym_mut] = ACTIONS(41), - [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(2139), - [anon_sym_go] = ACTIONS(1444), - [anon_sym_spawn] = ACTIONS(1446), - [anon_sym_json_DOTdecode] = ACTIONS(1448), - [anon_sym_LBRACK2] = ACTIONS(1450), - [anon_sym_TILDE] = ACTIONS(1436), - [anon_sym_CARET] = ACTIONS(1436), - [anon_sym_AMP] = ACTIONS(2141), - [anon_sym_LT_DASH] = ACTIONS(1454), - [sym_none] = ACTIONS(1456), - [sym_true] = ACTIONS(1456), - [sym_false] = ACTIONS(1456), - [sym_nil] = ACTIONS(1456), - [anon_sym_if] = ACTIONS(1827), - [anon_sym_DOLLARif] = ACTIONS(1460), - [anon_sym_match] = ACTIONS(1462), - [anon_sym_select] = ACTIONS(1464), - [anon_sym_lock] = ACTIONS(1466), - [anon_sym_rlock] = ACTIONS(1466), - [anon_sym_unsafe] = ACTIONS(1833), - [anon_sym_sql] = ACTIONS(1470), - [sym_int_literal] = ACTIONS(1456), - [sym_float_literal] = ACTIONS(1472), - [sym_rune_literal] = ACTIONS(1472), - [sym_pseudo_compile_time_identifier] = ACTIONS(1474), - [anon_sym_shared] = ACTIONS(83), - [anon_sym_map_LBRACK] = ACTIONS(85), - [anon_sym_chan] = ACTIONS(87), - [anon_sym_thread] = ACTIONS(89), - [anon_sym_atomic] = ACTIONS(91), - [anon_sym_DOT_DOT] = ACTIONS(1476), - [sym___double_quote] = ACTIONS(1478), - [sym___single_quote] = ACTIONS(1480), - [sym___c_double_quote] = ACTIONS(1482), - [sym___c_single_quote] = ACTIONS(1484), - [sym___r_double_quote] = ACTIONS(1486), - [sym___r_single_quote] = ACTIONS(1488), + [ts_builtin_sym_end] = ACTIONS(2912), + [sym_identifier] = ACTIONS(2914), + [anon_sym_LF] = ACTIONS(2914), + [anon_sym_CR] = ACTIONS(2914), + [anon_sym_CR_LF] = ACTIONS(2914), + [anon_sym_SLASH_SLASH] = ACTIONS(497), + [anon_sym_SLASH_STAR] = ACTIONS(499), + [anon_sym_DOT] = ACTIONS(2914), + [anon_sym_as] = ACTIONS(2914), + [anon_sym_LBRACE] = ACTIONS(2914), + [anon_sym_COMMA] = ACTIONS(2914), + [anon_sym_const] = ACTIONS(2914), + [anon_sym_LPAREN] = ACTIONS(2914), + [anon_sym_EQ] = ACTIONS(2914), + [anon_sym___global] = ACTIONS(2914), + [anon_sym_type] = ACTIONS(2914), + [anon_sym_PIPE] = ACTIONS(2914), + [anon_sym_fn] = ACTIONS(2914), + [anon_sym_PLUS] = ACTIONS(2914), + [anon_sym_DASH] = ACTIONS(2914), + [anon_sym_STAR] = ACTIONS(2914), + [anon_sym_SLASH] = ACTIONS(2914), + [anon_sym_PERCENT] = ACTIONS(2914), + [anon_sym_LT] = ACTIONS(2914), + [anon_sym_GT] = ACTIONS(2914), + [anon_sym_EQ_EQ] = ACTIONS(2914), + [anon_sym_BANG_EQ] = ACTIONS(2914), + [anon_sym_LT_EQ] = ACTIONS(2914), + [anon_sym_GT_EQ] = ACTIONS(2914), + [anon_sym_LBRACK] = ACTIONS(2912), + [anon_sym_struct] = ACTIONS(2914), + [anon_sym_union] = ACTIONS(2914), + [anon_sym_pub] = ACTIONS(2914), + [anon_sym_mut] = ACTIONS(2914), + [anon_sym_enum] = ACTIONS(2914), + [anon_sym_interface] = ACTIONS(2914), + [anon_sym_PLUS_PLUS] = ACTIONS(2914), + [anon_sym_DASH_DASH] = ACTIONS(2914), + [anon_sym_QMARK] = ACTIONS(2914), + [anon_sym_BANG] = ACTIONS(2914), + [anon_sym_go] = ACTIONS(2914), + [anon_sym_spawn] = ACTIONS(2914), + [anon_sym_json_DOTdecode] = ACTIONS(2914), + [anon_sym_LBRACK2] = ACTIONS(2914), + [anon_sym_TILDE] = ACTIONS(2914), + [anon_sym_CARET] = ACTIONS(2914), + [anon_sym_AMP] = ACTIONS(2914), + [anon_sym_LT_DASH] = ACTIONS(2914), + [anon_sym_LT_LT] = ACTIONS(2914), + [anon_sym_GT_GT] = ACTIONS(2914), + [anon_sym_GT_GT_GT] = ACTIONS(2914), + [anon_sym_AMP_CARET] = ACTIONS(2914), + [anon_sym_AMP_AMP] = ACTIONS(2914), + [anon_sym_PIPE_PIPE] = ACTIONS(2914), + [anon_sym_or] = ACTIONS(2914), + [sym_none] = ACTIONS(2914), + [sym_true] = ACTIONS(2914), + [sym_false] = ACTIONS(2914), + [sym_nil] = ACTIONS(2914), + [anon_sym_QMARK_DOT] = ACTIONS(2914), + [anon_sym_POUND_LBRACK] = ACTIONS(2914), + [anon_sym_if] = ACTIONS(2914), + [anon_sym_DOLLARif] = ACTIONS(2914), + [anon_sym_is] = ACTIONS(2914), + [anon_sym_BANGis] = ACTIONS(2914), + [anon_sym_in] = ACTIONS(2914), + [anon_sym_BANGin] = ACTIONS(2914), + [anon_sym_match] = ACTIONS(2914), + [anon_sym_select] = ACTIONS(2914), + [anon_sym_STAR_EQ] = ACTIONS(2914), + [anon_sym_SLASH_EQ] = ACTIONS(2914), + [anon_sym_PERCENT_EQ] = ACTIONS(2914), + [anon_sym_LT_LT_EQ] = ACTIONS(2914), + [anon_sym_GT_GT_EQ] = ACTIONS(2914), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(2914), + [anon_sym_AMP_EQ] = ACTIONS(2914), + [anon_sym_AMP_CARET_EQ] = ACTIONS(2914), + [anon_sym_PLUS_EQ] = ACTIONS(2914), + [anon_sym_DASH_EQ] = ACTIONS(2914), + [anon_sym_PIPE_EQ] = ACTIONS(2914), + [anon_sym_CARET_EQ] = ACTIONS(2914), + [anon_sym_COLON_EQ] = ACTIONS(2914), + [anon_sym_lock] = ACTIONS(2914), + [anon_sym_rlock] = ACTIONS(2914), + [anon_sym_unsafe] = ACTIONS(2914), + [anon_sym_sql] = ACTIONS(2914), + [sym_int_literal] = ACTIONS(2914), + [sym_float_literal] = ACTIONS(2914), + [sym_rune_literal] = ACTIONS(2914), + [sym_pseudo_compile_time_identifier] = ACTIONS(2914), + [anon_sym_shared] = ACTIONS(2914), + [anon_sym_map_LBRACK] = ACTIONS(2914), + [anon_sym_chan] = ACTIONS(2914), + [anon_sym_thread] = ACTIONS(2914), + [anon_sym_atomic] = ACTIONS(2914), + [anon_sym_assert] = ACTIONS(2914), + [anon_sym_defer] = ACTIONS(2914), + [anon_sym_goto] = ACTIONS(2914), + [anon_sym_break] = ACTIONS(2914), + [anon_sym_continue] = ACTIONS(2914), + [anon_sym_return] = ACTIONS(2914), + [anon_sym_DOLLARfor] = ACTIONS(2914), + [anon_sym_for] = ACTIONS(2914), + [anon_sym_POUND] = ACTIONS(2914), + [anon_sym_asm] = ACTIONS(2914), + [anon_sym_AT_LBRACK] = ACTIONS(2914), + [sym___double_quote] = ACTIONS(2914), + [sym___single_quote] = ACTIONS(2914), + [sym___c_double_quote] = ACTIONS(2914), + [sym___c_single_quote] = ACTIONS(2914), + [sym___r_double_quote] = ACTIONS(2914), + [sym___r_single_quote] = ACTIONS(2914), }, [491] = { [sym_line_comment] = STATE(491), [sym_block_comment] = STATE(491), - [sym__expression] = STATE(1133), - [sym__expression_without_blocks] = STATE(1141), - [sym__expression_with_blocks] = STATE(1141), - [sym_inc_expression] = STATE(1140), - [sym_dec_expression] = STATE(1140), - [sym_or_block_expression] = STATE(1140), - [sym_option_propagation_expression] = STATE(1140), - [sym_result_propagation_expression] = STATE(1140), - [sym_anon_struct_value_expression] = STATE(1199), - [sym_go_expression] = STATE(1140), - [sym_spawn_expression] = STATE(1140), - [sym_parenthesized_expression] = STATE(1140), - [sym_call_expression] = STATE(1140), - [sym_type_initializer] = STATE(1199), - [sym_function_literal] = STATE(1140), - [sym_reference_expression] = STATE(1181), - [sym_type_reference_expression] = STATE(3541), - [sym_unary_expression] = STATE(1140), - [sym_receive_expression] = STATE(1140), - [sym_binary_expression] = STATE(1140), - [sym_as_type_cast_expression] = STATE(1140), - [sym__max_group] = STATE(1140), - [sym_literal] = STATE(1146), - [sym_map_init_expression] = STATE(1199), - [sym_array_creation] = STATE(1140), - [sym_fixed_array_creation] = STATE(1140), - [sym_selector_expression] = STATE(1140), - [sym_index_expression] = STATE(1140), - [sym_slice_expression] = STATE(1140), - [sym_if_expression] = STATE(1199), - [sym_compile_time_if_expression] = STATE(1199), - [sym_is_expression] = STATE(1140), - [sym_in_expression] = STATE(1140), - [sym_enum_fetch] = STATE(1140), - [sym_match_expression] = STATE(1199), - [sym_select_expression] = STATE(1199), - [sym_lock_expression] = STATE(1199), - [sym_unsafe_expression] = STATE(1199), - [sym_sql_expression] = STATE(1199), - [sym_c_string_literal] = STATE(1147), - [sym_raw_string_literal] = STATE(1147), - [sym_interpreted_string_literal] = STATE(1147), - [sym_mutability_modifiers] = STATE(638), - [sym_plain_type] = STATE(4234), - [sym__plain_type_without_special] = STATE(2302), - [sym_anon_struct_type] = STATE(2303), - [sym_multi_return_type] = STATE(2302), - [sym_result_type] = STATE(2302), - [sym_option_type] = STATE(2302), - [sym_qualified_type] = STATE(3541), - [sym_fixed_array_type] = STATE(2303), - [sym_array_type] = STATE(2303), - [sym_pointer_type] = STATE(2303), - [sym_wrong_pointer_type] = STATE(2303), - [sym_map_type] = STATE(2303), - [sym_channel_type] = STATE(2303), - [sym_shared_type] = STATE(2303), - [sym_thread_type] = STATE(2303), - [sym_atomic_type] = STATE(2303), - [sym_generic_type] = STATE(2303), - [sym_function_type] = STATE(2303), - [aux_sym_short_element_list_repeat1] = STATE(491), - [sym_identifier] = ACTIONS(2922), - [anon_sym_SLASH_SLASH] = ACTIONS(3), - [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(2925), - [anon_sym_LBRACE] = ACTIONS(2928), - [anon_sym_RBRACE] = ACTIONS(2931), - [anon_sym_LPAREN] = ACTIONS(2933), - [anon_sym_fn] = ACTIONS(2936), - [anon_sym_PLUS] = ACTIONS(2939), - [anon_sym_DASH] = ACTIONS(2939), - [anon_sym_STAR] = ACTIONS(2942), - [anon_sym_struct] = ACTIONS(2945), - [anon_sym_mut] = ACTIONS(2948), - [anon_sym_QMARK] = ACTIONS(2951), - [anon_sym_BANG] = ACTIONS(2954), - [anon_sym_go] = ACTIONS(2957), - [anon_sym_spawn] = ACTIONS(2960), - [anon_sym_json_DOTdecode] = ACTIONS(2963), - [anon_sym_LBRACK2] = ACTIONS(2966), - [anon_sym_TILDE] = ACTIONS(2939), - [anon_sym_CARET] = ACTIONS(2939), - [anon_sym_AMP] = ACTIONS(2969), - [anon_sym_LT_DASH] = ACTIONS(2972), - [sym_none] = ACTIONS(2975), - [sym_true] = ACTIONS(2975), - [sym_false] = ACTIONS(2975), - [sym_nil] = ACTIONS(2975), - [anon_sym_if] = ACTIONS(2978), - [anon_sym_DOLLARif] = ACTIONS(2981), - [anon_sym_match] = ACTIONS(2984), - [anon_sym_select] = ACTIONS(2987), - [anon_sym_lock] = ACTIONS(2990), - [anon_sym_rlock] = ACTIONS(2990), - [anon_sym_unsafe] = ACTIONS(2993), - [anon_sym_sql] = ACTIONS(2996), - [sym_int_literal] = ACTIONS(2975), - [sym_float_literal] = ACTIONS(2999), - [sym_rune_literal] = ACTIONS(2999), - [sym_pseudo_compile_time_identifier] = ACTIONS(3002), - [anon_sym_shared] = ACTIONS(3005), - [anon_sym_map_LBRACK] = ACTIONS(3008), - [anon_sym_chan] = ACTIONS(3011), - [anon_sym_thread] = ACTIONS(3014), - [anon_sym_atomic] = ACTIONS(3017), - [sym___double_quote] = ACTIONS(3020), - [sym___single_quote] = ACTIONS(3023), - [sym___c_double_quote] = ACTIONS(3026), - [sym___c_single_quote] = ACTIONS(3029), - [sym___r_double_quote] = ACTIONS(3032), - [sym___r_single_quote] = ACTIONS(3035), + [ts_builtin_sym_end] = ACTIONS(2916), + [sym_identifier] = ACTIONS(2918), + [anon_sym_LF] = ACTIONS(2918), + [anon_sym_CR] = ACTIONS(2918), + [anon_sym_CR_LF] = ACTIONS(2918), + [anon_sym_SLASH_SLASH] = ACTIONS(497), + [anon_sym_SLASH_STAR] = ACTIONS(499), + [anon_sym_DOT] = ACTIONS(2918), + [anon_sym_as] = ACTIONS(2918), + [anon_sym_LBRACE] = ACTIONS(2918), + [anon_sym_COMMA] = ACTIONS(2918), + [anon_sym_const] = ACTIONS(2918), + [anon_sym_LPAREN] = ACTIONS(2918), + [anon_sym_EQ] = ACTIONS(2918), + [anon_sym___global] = ACTIONS(2918), + [anon_sym_type] = ACTIONS(2918), + [anon_sym_PIPE] = ACTIONS(2918), + [anon_sym_fn] = ACTIONS(2918), + [anon_sym_PLUS] = ACTIONS(2918), + [anon_sym_DASH] = ACTIONS(2918), + [anon_sym_STAR] = ACTIONS(2918), + [anon_sym_SLASH] = ACTIONS(2918), + [anon_sym_PERCENT] = ACTIONS(2918), + [anon_sym_LT] = ACTIONS(2918), + [anon_sym_GT] = ACTIONS(2918), + [anon_sym_EQ_EQ] = ACTIONS(2918), + [anon_sym_BANG_EQ] = ACTIONS(2918), + [anon_sym_LT_EQ] = ACTIONS(2918), + [anon_sym_GT_EQ] = ACTIONS(2918), + [anon_sym_LBRACK] = ACTIONS(2916), + [anon_sym_struct] = ACTIONS(2918), + [anon_sym_union] = ACTIONS(2918), + [anon_sym_pub] = ACTIONS(2918), + [anon_sym_mut] = ACTIONS(2918), + [anon_sym_enum] = ACTIONS(2918), + [anon_sym_interface] = ACTIONS(2918), + [anon_sym_PLUS_PLUS] = ACTIONS(2918), + [anon_sym_DASH_DASH] = ACTIONS(2918), + [anon_sym_QMARK] = ACTIONS(2918), + [anon_sym_BANG] = ACTIONS(2918), + [anon_sym_go] = ACTIONS(2918), + [anon_sym_spawn] = ACTIONS(2918), + [anon_sym_json_DOTdecode] = ACTIONS(2918), + [anon_sym_LBRACK2] = ACTIONS(2918), + [anon_sym_TILDE] = ACTIONS(2918), + [anon_sym_CARET] = ACTIONS(2918), + [anon_sym_AMP] = ACTIONS(2918), + [anon_sym_LT_DASH] = ACTIONS(2918), + [anon_sym_LT_LT] = ACTIONS(2918), + [anon_sym_GT_GT] = ACTIONS(2918), + [anon_sym_GT_GT_GT] = ACTIONS(2918), + [anon_sym_AMP_CARET] = ACTIONS(2918), + [anon_sym_AMP_AMP] = ACTIONS(2918), + [anon_sym_PIPE_PIPE] = ACTIONS(2918), + [anon_sym_or] = ACTIONS(2918), + [sym_none] = ACTIONS(2918), + [sym_true] = ACTIONS(2918), + [sym_false] = ACTIONS(2918), + [sym_nil] = ACTIONS(2918), + [anon_sym_QMARK_DOT] = ACTIONS(2918), + [anon_sym_POUND_LBRACK] = ACTIONS(2918), + [anon_sym_if] = ACTIONS(2918), + [anon_sym_DOLLARif] = ACTIONS(2918), + [anon_sym_is] = ACTIONS(2918), + [anon_sym_BANGis] = ACTIONS(2918), + [anon_sym_in] = ACTIONS(2918), + [anon_sym_BANGin] = ACTIONS(2918), + [anon_sym_match] = ACTIONS(2918), + [anon_sym_select] = ACTIONS(2918), + [anon_sym_STAR_EQ] = ACTIONS(2918), + [anon_sym_SLASH_EQ] = ACTIONS(2918), + [anon_sym_PERCENT_EQ] = ACTIONS(2918), + [anon_sym_LT_LT_EQ] = ACTIONS(2918), + [anon_sym_GT_GT_EQ] = ACTIONS(2918), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(2918), + [anon_sym_AMP_EQ] = ACTIONS(2918), + [anon_sym_AMP_CARET_EQ] = ACTIONS(2918), + [anon_sym_PLUS_EQ] = ACTIONS(2918), + [anon_sym_DASH_EQ] = ACTIONS(2918), + [anon_sym_PIPE_EQ] = ACTIONS(2918), + [anon_sym_CARET_EQ] = ACTIONS(2918), + [anon_sym_COLON_EQ] = ACTIONS(2918), + [anon_sym_lock] = ACTIONS(2918), + [anon_sym_rlock] = ACTIONS(2918), + [anon_sym_unsafe] = ACTIONS(2918), + [anon_sym_sql] = ACTIONS(2918), + [sym_int_literal] = ACTIONS(2918), + [sym_float_literal] = ACTIONS(2918), + [sym_rune_literal] = ACTIONS(2918), + [sym_pseudo_compile_time_identifier] = ACTIONS(2918), + [anon_sym_shared] = ACTIONS(2918), + [anon_sym_map_LBRACK] = ACTIONS(2918), + [anon_sym_chan] = ACTIONS(2918), + [anon_sym_thread] = ACTIONS(2918), + [anon_sym_atomic] = ACTIONS(2918), + [anon_sym_assert] = ACTIONS(2918), + [anon_sym_defer] = ACTIONS(2918), + [anon_sym_goto] = ACTIONS(2918), + [anon_sym_break] = ACTIONS(2918), + [anon_sym_continue] = ACTIONS(2918), + [anon_sym_return] = ACTIONS(2918), + [anon_sym_DOLLARfor] = ACTIONS(2918), + [anon_sym_for] = ACTIONS(2918), + [anon_sym_POUND] = ACTIONS(2918), + [anon_sym_asm] = ACTIONS(2918), + [anon_sym_AT_LBRACK] = ACTIONS(2918), + [sym___double_quote] = ACTIONS(2918), + [sym___single_quote] = ACTIONS(2918), + [sym___c_double_quote] = ACTIONS(2918), + [sym___c_single_quote] = ACTIONS(2918), + [sym___r_double_quote] = ACTIONS(2918), + [sym___r_single_quote] = ACTIONS(2918), }, [492] = { [sym_line_comment] = STATE(492), [sym_block_comment] = STATE(492), - [sym__expression] = STATE(1268), - [sym__expression_without_blocks] = STATE(1312), - [sym__expression_with_blocks] = STATE(1312), - [sym_inc_expression] = STATE(1313), - [sym_dec_expression] = STATE(1313), - [sym_or_block_expression] = STATE(1313), - [sym_option_propagation_expression] = STATE(1313), - [sym_result_propagation_expression] = STATE(1313), - [sym_anon_struct_value_expression] = STATE(1314), - [sym_go_expression] = STATE(1313), - [sym_spawn_expression] = STATE(1313), - [sym_parenthesized_expression] = STATE(1313), - [sym_call_expression] = STATE(1313), - [sym_type_initializer] = STATE(1314), - [sym_function_literal] = STATE(1313), - [sym_reference_expression] = STATE(1334), - [sym_type_reference_expression] = STATE(3541), - [sym_unary_expression] = STATE(1313), - [sym_receive_expression] = STATE(1313), - [sym_binary_expression] = STATE(1313), - [sym_as_type_cast_expression] = STATE(1313), - [sym__max_group] = STATE(1313), - [sym_literal] = STATE(1308), - [sym_map_init_expression] = STATE(1314), - [sym_array_creation] = STATE(1313), - [sym_fixed_array_creation] = STATE(1313), - [sym_selector_expression] = STATE(1313), - [sym_index_expression] = STATE(1313), - [sym_slice_expression] = STATE(1313), - [sym_if_expression] = STATE(1314), - [sym_compile_time_if_expression] = STATE(1314), - [sym_is_expression] = STATE(1313), - [sym_in_expression] = STATE(1313), - [sym_enum_fetch] = STATE(1313), - [sym_match_expression] = STATE(1314), - [sym_select_expression] = STATE(1314), - [sym_lock_expression] = STATE(1314), - [sym_unsafe_expression] = STATE(1314), - [sym_sql_expression] = STATE(1314), - [sym_c_string_literal] = STATE(1286), - [sym_raw_string_literal] = STATE(1286), - [sym_interpreted_string_literal] = STATE(1286), - [sym_mutability_modifiers] = STATE(699), - [sym_plain_type] = STATE(4192), - [sym__plain_type_without_special] = STATE(2302), - [sym_anon_struct_type] = STATE(2303), - [sym_multi_return_type] = STATE(2302), - [sym_result_type] = STATE(2302), - [sym_option_type] = STATE(2302), - [sym_qualified_type] = STATE(3541), - [sym_fixed_array_type] = STATE(2303), - [sym_array_type] = STATE(2303), - [sym_pointer_type] = STATE(2303), - [sym_wrong_pointer_type] = STATE(2303), - [sym_map_type] = STATE(2303), - [sym_channel_type] = STATE(2303), - [sym_shared_type] = STATE(2303), - [sym_thread_type] = STATE(2303), - [sym_atomic_type] = STATE(2303), - [sym_generic_type] = STATE(2303), - [sym_function_type] = STATE(2303), - [aux_sym__array_repeat1] = STATE(404), - [sym_identifier] = ACTIONS(1354), + [sym__expression] = STATE(1273), + [sym__expression_without_blocks] = STATE(1318), + [sym__expression_with_blocks] = STATE(1318), + [sym_inc_expression] = STATE(1319), + [sym_dec_expression] = STATE(1319), + [sym_or_block_expression] = STATE(1319), + [sym_option_propagation_expression] = STATE(1319), + [sym_result_propagation_expression] = STATE(1319), + [sym_anon_struct_value_expression] = STATE(1320), + [sym_go_expression] = STATE(1319), + [sym_spawn_expression] = STATE(1319), + [sym_parenthesized_expression] = STATE(1319), + [sym_call_expression] = STATE(1319), + [sym_type_initializer] = STATE(1320), + [sym_function_literal] = STATE(1319), + [sym_reference_expression] = STATE(1397), + [sym_type_reference_expression] = STATE(3460), + [sym_unary_expression] = STATE(1319), + [sym_receive_expression] = STATE(1319), + [sym_binary_expression] = STATE(1319), + [sym_as_type_cast_expression] = STATE(1319), + [sym__max_group] = STATE(1319), + [sym_literal] = STATE(1314), + [sym_map_init_expression] = STATE(1320), + [sym_array_creation] = STATE(1319), + [sym_fixed_array_creation] = STATE(1319), + [sym_selector_expression] = STATE(1399), + [sym_index_expression] = STATE(1319), + [sym_slice_expression] = STATE(1319), + [sym_if_expression] = STATE(1320), + [sym_compile_time_if_expression] = STATE(1320), + [sym_is_expression] = STATE(1319), + [sym_in_expression] = STATE(1319), + [sym_enum_fetch] = STATE(1319), + [sym_match_expression] = STATE(1320), + [sym_select_expression] = STATE(1320), + [sym_lock_expression] = STATE(1320), + [sym_unsafe_expression] = STATE(1320), + [sym_sql_expression] = STATE(1320), + [sym_c_string_literal] = STATE(1291), + [sym_raw_string_literal] = STATE(1291), + [sym_interpreted_string_literal] = STATE(1291), + [sym_mutability_modifiers] = STATE(639), + [sym_plain_type] = STATE(4307), + [sym__plain_type_without_special] = STATE(2360), + [sym_anon_struct_type] = STATE(2362), + [sym_multi_return_type] = STATE(2360), + [sym_result_type] = STATE(2360), + [sym_option_type] = STATE(2360), + [sym_qualified_type] = STATE(3460), + [sym_fixed_array_type] = STATE(2362), + [sym_array_type] = STATE(2362), + [sym_pointer_type] = STATE(2362), + [sym_wrong_pointer_type] = STATE(2362), + [sym_map_type] = STATE(2362), + [sym_channel_type] = STATE(2362), + [sym_shared_type] = STATE(2362), + [sym_thread_type] = STATE(2362), + [sym_atomic_type] = STATE(2362), + [sym_generic_type] = STATE(2362), + [sym_function_type] = STATE(2362), + [aux_sym__array_repeat1] = STATE(396), + [sym_identifier] = ACTIONS(1360), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1356), - [anon_sym_LBRACE] = ACTIONS(1358), - [anon_sym_LPAREN] = ACTIONS(1360), - [anon_sym_fn] = ACTIONS(1362), - [anon_sym_PLUS] = ACTIONS(1364), - [anon_sym_DASH] = ACTIONS(1364), - [anon_sym_STAR] = ACTIONS(1366), - [anon_sym_RBRACK] = ACTIONS(3038), - [anon_sym_struct] = ACTIONS(1370), + [anon_sym_DOT] = ACTIONS(1362), + [anon_sym_LBRACE] = ACTIONS(1364), + [anon_sym_LPAREN] = ACTIONS(1366), + [anon_sym_fn] = ACTIONS(1368), + [anon_sym_PLUS] = ACTIONS(1370), + [anon_sym_DASH] = ACTIONS(1370), + [anon_sym_STAR] = ACTIONS(1372), + [anon_sym_RBRACK] = ACTIONS(2920), + [anon_sym_struct] = ACTIONS(1376), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(1372), - [anon_sym_go] = ACTIONS(1374), - [anon_sym_spawn] = ACTIONS(1376), - [anon_sym_json_DOTdecode] = ACTIONS(1378), - [anon_sym_LBRACK2] = ACTIONS(1380), - [anon_sym_TILDE] = ACTIONS(1364), - [anon_sym_CARET] = ACTIONS(1364), - [anon_sym_AMP] = ACTIONS(1382), - [anon_sym_LT_DASH] = ACTIONS(1384), - [sym_none] = ACTIONS(1386), - [sym_true] = ACTIONS(1386), - [sym_false] = ACTIONS(1386), - [sym_nil] = ACTIONS(1386), - [anon_sym_if] = ACTIONS(1877), - [anon_sym_DOLLARif] = ACTIONS(1390), - [anon_sym_match] = ACTIONS(1392), - [anon_sym_select] = ACTIONS(1394), - [anon_sym_lock] = ACTIONS(1396), - [anon_sym_rlock] = ACTIONS(1396), - [anon_sym_unsafe] = ACTIONS(1883), - [anon_sym_sql] = ACTIONS(1400), - [sym_int_literal] = ACTIONS(1386), - [sym_float_literal] = ACTIONS(1404), - [sym_rune_literal] = ACTIONS(1404), - [sym_pseudo_compile_time_identifier] = ACTIONS(1406), + [anon_sym_BANG] = ACTIONS(1378), + [anon_sym_go] = ACTIONS(1380), + [anon_sym_spawn] = ACTIONS(1382), + [anon_sym_json_DOTdecode] = ACTIONS(1384), + [anon_sym_LBRACK2] = ACTIONS(1386), + [anon_sym_TILDE] = ACTIONS(1370), + [anon_sym_CARET] = ACTIONS(1370), + [anon_sym_AMP] = ACTIONS(1388), + [anon_sym_LT_DASH] = ACTIONS(1390), + [sym_none] = ACTIONS(1392), + [sym_true] = ACTIONS(1392), + [sym_false] = ACTIONS(1392), + [sym_nil] = ACTIONS(1392), + [anon_sym_if] = ACTIONS(1865), + [anon_sym_DOLLARif] = ACTIONS(1396), + [anon_sym_match] = ACTIONS(1398), + [anon_sym_select] = ACTIONS(1400), + [anon_sym_lock] = ACTIONS(1402), + [anon_sym_rlock] = ACTIONS(1402), + [anon_sym_unsafe] = ACTIONS(1871), + [anon_sym_sql] = ACTIONS(1406), + [sym_int_literal] = ACTIONS(1408), + [sym_float_literal] = ACTIONS(1410), + [sym_rune_literal] = ACTIONS(1410), + [sym_pseudo_compile_time_identifier] = ACTIONS(1412), [anon_sym_shared] = ACTIONS(83), [anon_sym_map_LBRACK] = ACTIONS(85), [anon_sym_chan] = ACTIONS(87), [anon_sym_thread] = ACTIONS(89), [anon_sym_atomic] = ACTIONS(91), - [sym___double_quote] = ACTIONS(1408), - [sym___single_quote] = ACTIONS(1410), - [sym___c_double_quote] = ACTIONS(1412), - [sym___c_single_quote] = ACTIONS(1414), - [sym___r_double_quote] = ACTIONS(1416), - [sym___r_single_quote] = ACTIONS(1418), + [sym___double_quote] = ACTIONS(1414), + [sym___single_quote] = ACTIONS(1416), + [sym___c_double_quote] = ACTIONS(1418), + [sym___c_single_quote] = ACTIONS(1420), + [sym___r_double_quote] = ACTIONS(1422), + [sym___r_single_quote] = ACTIONS(1424), }, [493] = { [sym_line_comment] = STATE(493), [sym_block_comment] = STATE(493), - [ts_builtin_sym_end] = ACTIONS(3040), - [sym_identifier] = ACTIONS(3042), - [anon_sym_LF] = ACTIONS(3042), - [anon_sym_CR] = ACTIONS(3042), - [anon_sym_CR_LF] = ACTIONS(3042), + [ts_builtin_sym_end] = ACTIONS(2922), + [sym_identifier] = ACTIONS(2924), + [anon_sym_LF] = ACTIONS(2924), + [anon_sym_CR] = ACTIONS(2924), + [anon_sym_CR_LF] = ACTIONS(2924), [anon_sym_SLASH_SLASH] = ACTIONS(497), [anon_sym_SLASH_STAR] = ACTIONS(499), - [anon_sym_DOT] = ACTIONS(3042), - [anon_sym_as] = ACTIONS(3042), - [anon_sym_LBRACE] = ACTIONS(3042), - [anon_sym_COMMA] = ACTIONS(3042), - [anon_sym_const] = ACTIONS(3042), - [anon_sym_LPAREN] = ACTIONS(3042), - [anon_sym_EQ] = ACTIONS(3042), - [anon_sym___global] = ACTIONS(3042), - [anon_sym_type] = ACTIONS(3042), - [anon_sym_PIPE] = ACTIONS(3042), - [anon_sym_fn] = ACTIONS(3042), - [anon_sym_PLUS] = ACTIONS(3042), - [anon_sym_DASH] = ACTIONS(3042), - [anon_sym_STAR] = ACTIONS(3042), - [anon_sym_SLASH] = ACTIONS(3042), - [anon_sym_PERCENT] = ACTIONS(3042), - [anon_sym_LT] = ACTIONS(3042), - [anon_sym_GT] = ACTIONS(3042), - [anon_sym_EQ_EQ] = ACTIONS(3042), - [anon_sym_BANG_EQ] = ACTIONS(3042), - [anon_sym_LT_EQ] = ACTIONS(3042), - [anon_sym_GT_EQ] = ACTIONS(3042), - [anon_sym_LBRACK] = ACTIONS(3040), - [anon_sym_struct] = ACTIONS(3042), - [anon_sym_union] = ACTIONS(3042), - [anon_sym_pub] = ACTIONS(3042), - [anon_sym_mut] = ACTIONS(3042), - [anon_sym_enum] = ACTIONS(3042), - [anon_sym_interface] = ACTIONS(3042), - [anon_sym_PLUS_PLUS] = ACTIONS(3042), - [anon_sym_DASH_DASH] = ACTIONS(3042), - [anon_sym_QMARK] = ACTIONS(3042), - [anon_sym_BANG] = ACTIONS(3042), - [anon_sym_go] = ACTIONS(3042), - [anon_sym_spawn] = ACTIONS(3042), - [anon_sym_json_DOTdecode] = ACTIONS(3042), - [anon_sym_LBRACK2] = ACTIONS(3042), - [anon_sym_TILDE] = ACTIONS(3042), - [anon_sym_CARET] = ACTIONS(3042), - [anon_sym_AMP] = ACTIONS(3042), - [anon_sym_LT_DASH] = ACTIONS(3042), - [anon_sym_LT_LT] = ACTIONS(3042), - [anon_sym_GT_GT] = ACTIONS(3042), - [anon_sym_GT_GT_GT] = ACTIONS(3042), - [anon_sym_AMP_CARET] = ACTIONS(3042), - [anon_sym_AMP_AMP] = ACTIONS(3042), - [anon_sym_PIPE_PIPE] = ACTIONS(3042), - [anon_sym_or] = ACTIONS(3042), - [sym_none] = ACTIONS(3042), - [sym_true] = ACTIONS(3042), - [sym_false] = ACTIONS(3042), - [sym_nil] = ACTIONS(3042), - [anon_sym_QMARK_DOT] = ACTIONS(3042), - [anon_sym_POUND_LBRACK] = ACTIONS(3042), - [anon_sym_if] = ACTIONS(3042), - [anon_sym_DOLLARif] = ACTIONS(3042), - [anon_sym_is] = ACTIONS(3042), - [anon_sym_BANGis] = ACTIONS(3042), - [anon_sym_in] = ACTIONS(3042), - [anon_sym_BANGin] = ACTIONS(3042), - [anon_sym_match] = ACTIONS(3042), - [anon_sym_select] = ACTIONS(3042), - [anon_sym_STAR_EQ] = ACTIONS(3042), - [anon_sym_SLASH_EQ] = ACTIONS(3042), - [anon_sym_PERCENT_EQ] = ACTIONS(3042), - [anon_sym_LT_LT_EQ] = ACTIONS(3042), - [anon_sym_GT_GT_EQ] = ACTIONS(3042), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(3042), - [anon_sym_AMP_EQ] = ACTIONS(3042), - [anon_sym_AMP_CARET_EQ] = ACTIONS(3042), - [anon_sym_PLUS_EQ] = ACTIONS(3042), - [anon_sym_DASH_EQ] = ACTIONS(3042), - [anon_sym_PIPE_EQ] = ACTIONS(3042), - [anon_sym_CARET_EQ] = ACTIONS(3042), - [anon_sym_COLON_EQ] = ACTIONS(3042), - [anon_sym_lock] = ACTIONS(3042), - [anon_sym_rlock] = ACTIONS(3042), - [anon_sym_unsafe] = ACTIONS(3042), - [anon_sym_sql] = ACTIONS(3042), - [sym_int_literal] = ACTIONS(3042), - [sym_float_literal] = ACTIONS(3042), - [sym_rune_literal] = ACTIONS(3042), - [sym_pseudo_compile_time_identifier] = ACTIONS(3042), - [anon_sym_shared] = ACTIONS(3042), - [anon_sym_map_LBRACK] = ACTIONS(3042), - [anon_sym_chan] = ACTIONS(3042), - [anon_sym_thread] = ACTIONS(3042), - [anon_sym_atomic] = ACTIONS(3042), - [anon_sym_assert] = ACTIONS(3042), - [anon_sym_defer] = ACTIONS(3042), - [anon_sym_goto] = ACTIONS(3042), - [anon_sym_break] = ACTIONS(3042), - [anon_sym_continue] = ACTIONS(3042), - [anon_sym_return] = ACTIONS(3042), - [anon_sym_DOLLARfor] = ACTIONS(3042), - [anon_sym_for] = ACTIONS(3042), - [anon_sym_POUND] = ACTIONS(3042), - [anon_sym_asm] = ACTIONS(3042), - [anon_sym_AT_LBRACK] = ACTIONS(3042), - [sym___double_quote] = ACTIONS(3042), - [sym___single_quote] = ACTIONS(3042), - [sym___c_double_quote] = ACTIONS(3042), - [sym___c_single_quote] = ACTIONS(3042), - [sym___r_double_quote] = ACTIONS(3042), - [sym___r_single_quote] = ACTIONS(3042), + [anon_sym_DOT] = ACTIONS(2924), + [anon_sym_as] = ACTIONS(2924), + [anon_sym_LBRACE] = ACTIONS(2924), + [anon_sym_COMMA] = ACTIONS(2924), + [anon_sym_const] = ACTIONS(2924), + [anon_sym_LPAREN] = ACTIONS(2924), + [anon_sym_EQ] = ACTIONS(2924), + [anon_sym___global] = ACTIONS(2924), + [anon_sym_type] = ACTIONS(2924), + [anon_sym_PIPE] = ACTIONS(2924), + [anon_sym_fn] = ACTIONS(2924), + [anon_sym_PLUS] = ACTIONS(2924), + [anon_sym_DASH] = ACTIONS(2924), + [anon_sym_STAR] = ACTIONS(2924), + [anon_sym_SLASH] = ACTIONS(2924), + [anon_sym_PERCENT] = ACTIONS(2924), + [anon_sym_LT] = ACTIONS(2924), + [anon_sym_GT] = ACTIONS(2924), + [anon_sym_EQ_EQ] = ACTIONS(2924), + [anon_sym_BANG_EQ] = ACTIONS(2924), + [anon_sym_LT_EQ] = ACTIONS(2924), + [anon_sym_GT_EQ] = ACTIONS(2924), + [anon_sym_LBRACK] = ACTIONS(2922), + [anon_sym_struct] = ACTIONS(2924), + [anon_sym_union] = ACTIONS(2924), + [anon_sym_pub] = ACTIONS(2924), + [anon_sym_mut] = ACTIONS(2924), + [anon_sym_enum] = ACTIONS(2924), + [anon_sym_interface] = ACTIONS(2924), + [anon_sym_PLUS_PLUS] = ACTIONS(2924), + [anon_sym_DASH_DASH] = ACTIONS(2924), + [anon_sym_QMARK] = ACTIONS(2924), + [anon_sym_BANG] = ACTIONS(2924), + [anon_sym_go] = ACTIONS(2924), + [anon_sym_spawn] = ACTIONS(2924), + [anon_sym_json_DOTdecode] = ACTIONS(2924), + [anon_sym_LBRACK2] = ACTIONS(2924), + [anon_sym_TILDE] = ACTIONS(2924), + [anon_sym_CARET] = ACTIONS(2924), + [anon_sym_AMP] = ACTIONS(2924), + [anon_sym_LT_DASH] = ACTIONS(2924), + [anon_sym_LT_LT] = ACTIONS(2924), + [anon_sym_GT_GT] = ACTIONS(2924), + [anon_sym_GT_GT_GT] = ACTIONS(2924), + [anon_sym_AMP_CARET] = ACTIONS(2924), + [anon_sym_AMP_AMP] = ACTIONS(2924), + [anon_sym_PIPE_PIPE] = ACTIONS(2924), + [anon_sym_or] = ACTIONS(2924), + [sym_none] = ACTIONS(2924), + [sym_true] = ACTIONS(2924), + [sym_false] = ACTIONS(2924), + [sym_nil] = ACTIONS(2924), + [anon_sym_QMARK_DOT] = ACTIONS(2924), + [anon_sym_POUND_LBRACK] = ACTIONS(2924), + [anon_sym_if] = ACTIONS(2924), + [anon_sym_DOLLARif] = ACTIONS(2924), + [anon_sym_is] = ACTIONS(2924), + [anon_sym_BANGis] = ACTIONS(2924), + [anon_sym_in] = ACTIONS(2924), + [anon_sym_BANGin] = ACTIONS(2924), + [anon_sym_match] = ACTIONS(2924), + [anon_sym_select] = ACTIONS(2924), + [anon_sym_STAR_EQ] = ACTIONS(2924), + [anon_sym_SLASH_EQ] = ACTIONS(2924), + [anon_sym_PERCENT_EQ] = ACTIONS(2924), + [anon_sym_LT_LT_EQ] = ACTIONS(2924), + [anon_sym_GT_GT_EQ] = ACTIONS(2924), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(2924), + [anon_sym_AMP_EQ] = ACTIONS(2924), + [anon_sym_AMP_CARET_EQ] = ACTIONS(2924), + [anon_sym_PLUS_EQ] = ACTIONS(2924), + [anon_sym_DASH_EQ] = ACTIONS(2924), + [anon_sym_PIPE_EQ] = ACTIONS(2924), + [anon_sym_CARET_EQ] = ACTIONS(2924), + [anon_sym_COLON_EQ] = ACTIONS(2924), + [anon_sym_lock] = ACTIONS(2924), + [anon_sym_rlock] = ACTIONS(2924), + [anon_sym_unsafe] = ACTIONS(2924), + [anon_sym_sql] = ACTIONS(2924), + [sym_int_literal] = ACTIONS(2924), + [sym_float_literal] = ACTIONS(2924), + [sym_rune_literal] = ACTIONS(2924), + [sym_pseudo_compile_time_identifier] = ACTIONS(2924), + [anon_sym_shared] = ACTIONS(2924), + [anon_sym_map_LBRACK] = ACTIONS(2924), + [anon_sym_chan] = ACTIONS(2924), + [anon_sym_thread] = ACTIONS(2924), + [anon_sym_atomic] = ACTIONS(2924), + [anon_sym_assert] = ACTIONS(2924), + [anon_sym_defer] = ACTIONS(2924), + [anon_sym_goto] = ACTIONS(2924), + [anon_sym_break] = ACTIONS(2924), + [anon_sym_continue] = ACTIONS(2924), + [anon_sym_return] = ACTIONS(2924), + [anon_sym_DOLLARfor] = ACTIONS(2924), + [anon_sym_for] = ACTIONS(2924), + [anon_sym_POUND] = ACTIONS(2924), + [anon_sym_asm] = ACTIONS(2924), + [anon_sym_AT_LBRACK] = ACTIONS(2924), + [sym___double_quote] = ACTIONS(2924), + [sym___single_quote] = ACTIONS(2924), + [sym___c_double_quote] = ACTIONS(2924), + [sym___c_single_quote] = ACTIONS(2924), + [sym___r_double_quote] = ACTIONS(2924), + [sym___r_single_quote] = ACTIONS(2924), }, [494] = { [sym_line_comment] = STATE(494), [sym_block_comment] = STATE(494), - [ts_builtin_sym_end] = ACTIONS(3044), - [sym_identifier] = ACTIONS(3046), - [anon_sym_LF] = ACTIONS(3046), - [anon_sym_CR] = ACTIONS(3046), - [anon_sym_CR_LF] = ACTIONS(3046), - [anon_sym_SLASH_SLASH] = ACTIONS(497), - [anon_sym_SLASH_STAR] = ACTIONS(499), - [anon_sym_DOT] = ACTIONS(3046), - [anon_sym_as] = ACTIONS(3046), - [anon_sym_LBRACE] = ACTIONS(3046), - [anon_sym_COMMA] = ACTIONS(3046), - [anon_sym_const] = ACTIONS(3046), - [anon_sym_LPAREN] = ACTIONS(3046), - [anon_sym_EQ] = ACTIONS(3046), - [anon_sym___global] = ACTIONS(3046), - [anon_sym_type] = ACTIONS(3046), - [anon_sym_PIPE] = ACTIONS(3046), - [anon_sym_fn] = ACTIONS(3046), - [anon_sym_PLUS] = ACTIONS(3046), - [anon_sym_DASH] = ACTIONS(3046), - [anon_sym_STAR] = ACTIONS(3046), - [anon_sym_SLASH] = ACTIONS(3046), - [anon_sym_PERCENT] = ACTIONS(3046), - [anon_sym_LT] = ACTIONS(3046), - [anon_sym_GT] = ACTIONS(3046), - [anon_sym_EQ_EQ] = ACTIONS(3046), - [anon_sym_BANG_EQ] = ACTIONS(3046), - [anon_sym_LT_EQ] = ACTIONS(3046), - [anon_sym_GT_EQ] = ACTIONS(3046), - [anon_sym_LBRACK] = ACTIONS(3044), - [anon_sym_struct] = ACTIONS(3046), - [anon_sym_union] = ACTIONS(3046), - [anon_sym_pub] = ACTIONS(3046), - [anon_sym_mut] = ACTIONS(3046), - [anon_sym_enum] = ACTIONS(3046), - [anon_sym_interface] = ACTIONS(3046), - [anon_sym_PLUS_PLUS] = ACTIONS(3046), - [anon_sym_DASH_DASH] = ACTIONS(3046), - [anon_sym_QMARK] = ACTIONS(3046), - [anon_sym_BANG] = ACTIONS(3046), - [anon_sym_go] = ACTIONS(3046), - [anon_sym_spawn] = ACTIONS(3046), - [anon_sym_json_DOTdecode] = ACTIONS(3046), - [anon_sym_LBRACK2] = ACTIONS(3046), - [anon_sym_TILDE] = ACTIONS(3046), - [anon_sym_CARET] = ACTIONS(3046), - [anon_sym_AMP] = ACTIONS(3046), - [anon_sym_LT_DASH] = ACTIONS(3046), - [anon_sym_LT_LT] = ACTIONS(3046), - [anon_sym_GT_GT] = ACTIONS(3046), - [anon_sym_GT_GT_GT] = ACTIONS(3046), - [anon_sym_AMP_CARET] = ACTIONS(3046), - [anon_sym_AMP_AMP] = ACTIONS(3046), - [anon_sym_PIPE_PIPE] = ACTIONS(3046), - [anon_sym_or] = ACTIONS(3046), - [sym_none] = ACTIONS(3046), - [sym_true] = ACTIONS(3046), - [sym_false] = ACTIONS(3046), - [sym_nil] = ACTIONS(3046), - [anon_sym_QMARK_DOT] = ACTIONS(3046), - [anon_sym_POUND_LBRACK] = ACTIONS(3046), - [anon_sym_if] = ACTIONS(3046), - [anon_sym_DOLLARif] = ACTIONS(3046), - [anon_sym_is] = ACTIONS(3046), - [anon_sym_BANGis] = ACTIONS(3046), - [anon_sym_in] = ACTIONS(3046), - [anon_sym_BANGin] = ACTIONS(3046), - [anon_sym_match] = ACTIONS(3046), - [anon_sym_select] = ACTIONS(3046), - [anon_sym_STAR_EQ] = ACTIONS(3046), - [anon_sym_SLASH_EQ] = ACTIONS(3046), - [anon_sym_PERCENT_EQ] = ACTIONS(3046), - [anon_sym_LT_LT_EQ] = ACTIONS(3046), - [anon_sym_GT_GT_EQ] = ACTIONS(3046), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(3046), - [anon_sym_AMP_EQ] = ACTIONS(3046), - [anon_sym_AMP_CARET_EQ] = ACTIONS(3046), - [anon_sym_PLUS_EQ] = ACTIONS(3046), - [anon_sym_DASH_EQ] = ACTIONS(3046), - [anon_sym_PIPE_EQ] = ACTIONS(3046), - [anon_sym_CARET_EQ] = ACTIONS(3046), - [anon_sym_COLON_EQ] = ACTIONS(3046), - [anon_sym_lock] = ACTIONS(3046), - [anon_sym_rlock] = ACTIONS(3046), - [anon_sym_unsafe] = ACTIONS(3046), - [anon_sym_sql] = ACTIONS(3046), - [sym_int_literal] = ACTIONS(3046), - [sym_float_literal] = ACTIONS(3046), - [sym_rune_literal] = ACTIONS(3046), - [sym_pseudo_compile_time_identifier] = ACTIONS(3046), - [anon_sym_shared] = ACTIONS(3046), - [anon_sym_map_LBRACK] = ACTIONS(3046), - [anon_sym_chan] = ACTIONS(3046), - [anon_sym_thread] = ACTIONS(3046), - [anon_sym_atomic] = ACTIONS(3046), - [anon_sym_assert] = ACTIONS(3046), - [anon_sym_defer] = ACTIONS(3046), - [anon_sym_goto] = ACTIONS(3046), - [anon_sym_break] = ACTIONS(3046), - [anon_sym_continue] = ACTIONS(3046), - [anon_sym_return] = ACTIONS(3046), - [anon_sym_DOLLARfor] = ACTIONS(3046), - [anon_sym_for] = ACTIONS(3046), - [anon_sym_POUND] = ACTIONS(3046), - [anon_sym_asm] = ACTIONS(3046), - [anon_sym_AT_LBRACK] = ACTIONS(3046), - [sym___double_quote] = ACTIONS(3046), - [sym___single_quote] = ACTIONS(3046), - [sym___c_double_quote] = ACTIONS(3046), - [sym___c_single_quote] = ACTIONS(3046), - [sym___r_double_quote] = ACTIONS(3046), - [sym___r_single_quote] = ACTIONS(3046), + [sym__expression] = STATE(1128), + [sym__expression_without_blocks] = STATE(1210), + [sym__expression_with_blocks] = STATE(1210), + [sym_inc_expression] = STATE(1211), + [sym_dec_expression] = STATE(1211), + [sym_or_block_expression] = STATE(1211), + [sym_option_propagation_expression] = STATE(1211), + [sym_result_propagation_expression] = STATE(1211), + [sym_anon_struct_value_expression] = STATE(1212), + [sym_go_expression] = STATE(1211), + [sym_spawn_expression] = STATE(1211), + [sym_parenthesized_expression] = STATE(1211), + [sym_call_expression] = STATE(1211), + [sym_type_initializer] = STATE(1212), + [sym_function_literal] = STATE(1211), + [sym_reference_expression] = STATE(1233), + [sym_type_reference_expression] = STATE(3460), + [sym_unary_expression] = STATE(1211), + [sym_receive_expression] = STATE(1211), + [sym_binary_expression] = STATE(1211), + [sym_as_type_cast_expression] = STATE(1211), + [sym__max_group] = STATE(1211), + [sym_literal] = STATE(1209), + [sym_map_init_expression] = STATE(1212), + [sym_array_creation] = STATE(1211), + [sym_fixed_array_creation] = STATE(1211), + [sym_selector_expression] = STATE(1211), + [sym_index_expression] = STATE(1211), + [sym_slice_expression] = STATE(1211), + [sym_if_expression] = STATE(1212), + [sym_compile_time_if_expression] = STATE(1212), + [sym_is_expression] = STATE(1211), + [sym_in_expression] = STATE(1211), + [sym_enum_fetch] = STATE(1211), + [sym_match_expression] = STATE(1212), + [sym_select_expression] = STATE(1212), + [sym_lock_expression] = STATE(1212), + [sym_unsafe_expression] = STATE(1212), + [sym_sql_expression] = STATE(1212), + [sym_c_string_literal] = STATE(1201), + [sym_raw_string_literal] = STATE(1201), + [sym_interpreted_string_literal] = STATE(1201), + [sym_mutability_modifiers] = STATE(589), + [sym_plain_type] = STATE(4123), + [sym__plain_type_without_special] = STATE(2360), + [sym_anon_struct_type] = STATE(2362), + [sym_multi_return_type] = STATE(2360), + [sym_result_type] = STATE(2360), + [sym_option_type] = STATE(2360), + [sym_qualified_type] = STATE(3460), + [sym_fixed_array_type] = STATE(2362), + [sym_array_type] = STATE(2362), + [sym_pointer_type] = STATE(2362), + [sym_wrong_pointer_type] = STATE(2362), + [sym_map_type] = STATE(2362), + [sym_channel_type] = STATE(2362), + [sym_shared_type] = STATE(2362), + [sym_thread_type] = STATE(2362), + [sym_atomic_type] = STATE(2362), + [sym_generic_type] = STATE(2362), + [sym_function_type] = STATE(2362), + [aux_sym_short_element_list_repeat1] = STATE(494), + [sym_identifier] = ACTIONS(2926), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(2929), + [anon_sym_LBRACE] = ACTIONS(2932), + [anon_sym_RBRACE] = ACTIONS(2935), + [anon_sym_LPAREN] = ACTIONS(2937), + [anon_sym_fn] = ACTIONS(2940), + [anon_sym_PLUS] = ACTIONS(2943), + [anon_sym_DASH] = ACTIONS(2943), + [anon_sym_STAR] = ACTIONS(2946), + [anon_sym_struct] = ACTIONS(2949), + [anon_sym_mut] = ACTIONS(2952), + [anon_sym_QMARK] = ACTIONS(2955), + [anon_sym_BANG] = ACTIONS(2958), + [anon_sym_go] = ACTIONS(2961), + [anon_sym_spawn] = ACTIONS(2964), + [anon_sym_json_DOTdecode] = ACTIONS(2967), + [anon_sym_LBRACK2] = ACTIONS(2970), + [anon_sym_TILDE] = ACTIONS(2943), + [anon_sym_CARET] = ACTIONS(2943), + [anon_sym_AMP] = ACTIONS(2973), + [anon_sym_LT_DASH] = ACTIONS(2976), + [sym_none] = ACTIONS(2979), + [sym_true] = ACTIONS(2979), + [sym_false] = ACTIONS(2979), + [sym_nil] = ACTIONS(2979), + [anon_sym_if] = ACTIONS(2982), + [anon_sym_DOLLARif] = ACTIONS(2985), + [anon_sym_match] = ACTIONS(2988), + [anon_sym_select] = ACTIONS(2991), + [anon_sym_lock] = ACTIONS(2994), + [anon_sym_rlock] = ACTIONS(2994), + [anon_sym_unsafe] = ACTIONS(2997), + [anon_sym_sql] = ACTIONS(3000), + [sym_int_literal] = ACTIONS(2979), + [sym_float_literal] = ACTIONS(3003), + [sym_rune_literal] = ACTIONS(3003), + [sym_pseudo_compile_time_identifier] = ACTIONS(3006), + [anon_sym_shared] = ACTIONS(3009), + [anon_sym_map_LBRACK] = ACTIONS(3012), + [anon_sym_chan] = ACTIONS(3015), + [anon_sym_thread] = ACTIONS(3018), + [anon_sym_atomic] = ACTIONS(3021), + [sym___double_quote] = ACTIONS(3024), + [sym___single_quote] = ACTIONS(3027), + [sym___c_double_quote] = ACTIONS(3030), + [sym___c_single_quote] = ACTIONS(3033), + [sym___r_double_quote] = ACTIONS(3036), + [sym___r_single_quote] = ACTIONS(3039), }, [495] = { [sym_line_comment] = STATE(495), [sym_block_comment] = STATE(495), + [ts_builtin_sym_end] = ACTIONS(3042), + [sym_identifier] = ACTIONS(3044), + [anon_sym_LF] = ACTIONS(3044), + [anon_sym_CR] = ACTIONS(3044), + [anon_sym_CR_LF] = ACTIONS(3044), + [anon_sym_SLASH_SLASH] = ACTIONS(497), + [anon_sym_SLASH_STAR] = ACTIONS(499), + [anon_sym_DOT] = ACTIONS(3044), + [anon_sym_as] = ACTIONS(3044), + [anon_sym_LBRACE] = ACTIONS(3044), + [anon_sym_COMMA] = ACTIONS(3044), + [anon_sym_const] = ACTIONS(3044), + [anon_sym_LPAREN] = ACTIONS(3044), + [anon_sym_EQ] = ACTIONS(3044), + [anon_sym___global] = ACTIONS(3044), + [anon_sym_type] = ACTIONS(3044), + [anon_sym_PIPE] = ACTIONS(3044), + [anon_sym_fn] = ACTIONS(3044), + [anon_sym_PLUS] = ACTIONS(3044), + [anon_sym_DASH] = ACTIONS(3044), + [anon_sym_STAR] = ACTIONS(3044), + [anon_sym_SLASH] = ACTIONS(3044), + [anon_sym_PERCENT] = ACTIONS(3044), + [anon_sym_LT] = ACTIONS(3044), + [anon_sym_GT] = ACTIONS(3044), + [anon_sym_EQ_EQ] = ACTIONS(3044), + [anon_sym_BANG_EQ] = ACTIONS(3044), + [anon_sym_LT_EQ] = ACTIONS(3044), + [anon_sym_GT_EQ] = ACTIONS(3044), + [anon_sym_LBRACK] = ACTIONS(3042), + [anon_sym_struct] = ACTIONS(3044), + [anon_sym_union] = ACTIONS(3044), + [anon_sym_pub] = ACTIONS(3044), + [anon_sym_mut] = ACTIONS(3044), + [anon_sym_enum] = ACTIONS(3044), + [anon_sym_interface] = ACTIONS(3044), + [anon_sym_PLUS_PLUS] = ACTIONS(3044), + [anon_sym_DASH_DASH] = ACTIONS(3044), + [anon_sym_QMARK] = ACTIONS(3044), + [anon_sym_BANG] = ACTIONS(3044), + [anon_sym_go] = ACTIONS(3044), + [anon_sym_spawn] = ACTIONS(3044), + [anon_sym_json_DOTdecode] = ACTIONS(3044), + [anon_sym_LBRACK2] = ACTIONS(3044), + [anon_sym_TILDE] = ACTIONS(3044), + [anon_sym_CARET] = ACTIONS(3044), + [anon_sym_AMP] = ACTIONS(3044), + [anon_sym_LT_DASH] = ACTIONS(3044), + [anon_sym_LT_LT] = ACTIONS(3044), + [anon_sym_GT_GT] = ACTIONS(3044), + [anon_sym_GT_GT_GT] = ACTIONS(3044), + [anon_sym_AMP_CARET] = ACTIONS(3044), + [anon_sym_AMP_AMP] = ACTIONS(3044), + [anon_sym_PIPE_PIPE] = ACTIONS(3044), + [anon_sym_or] = ACTIONS(3044), + [sym_none] = ACTIONS(3044), + [sym_true] = ACTIONS(3044), + [sym_false] = ACTIONS(3044), + [sym_nil] = ACTIONS(3044), + [anon_sym_QMARK_DOT] = ACTIONS(3044), + [anon_sym_POUND_LBRACK] = ACTIONS(3044), + [anon_sym_if] = ACTIONS(3044), + [anon_sym_DOLLARif] = ACTIONS(3044), + [anon_sym_is] = ACTIONS(3044), + [anon_sym_BANGis] = ACTIONS(3044), + [anon_sym_in] = ACTIONS(3044), + [anon_sym_BANGin] = ACTIONS(3044), + [anon_sym_match] = ACTIONS(3044), + [anon_sym_select] = ACTIONS(3044), + [anon_sym_STAR_EQ] = ACTIONS(3044), + [anon_sym_SLASH_EQ] = ACTIONS(3044), + [anon_sym_PERCENT_EQ] = ACTIONS(3044), + [anon_sym_LT_LT_EQ] = ACTIONS(3044), + [anon_sym_GT_GT_EQ] = ACTIONS(3044), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(3044), + [anon_sym_AMP_EQ] = ACTIONS(3044), + [anon_sym_AMP_CARET_EQ] = ACTIONS(3044), + [anon_sym_PLUS_EQ] = ACTIONS(3044), + [anon_sym_DASH_EQ] = ACTIONS(3044), + [anon_sym_PIPE_EQ] = ACTIONS(3044), + [anon_sym_CARET_EQ] = ACTIONS(3044), + [anon_sym_COLON_EQ] = ACTIONS(3044), + [anon_sym_lock] = ACTIONS(3044), + [anon_sym_rlock] = ACTIONS(3044), + [anon_sym_unsafe] = ACTIONS(3044), + [anon_sym_sql] = ACTIONS(3044), + [sym_int_literal] = ACTIONS(3044), + [sym_float_literal] = ACTIONS(3044), + [sym_rune_literal] = ACTIONS(3044), + [sym_pseudo_compile_time_identifier] = ACTIONS(3044), + [anon_sym_shared] = ACTIONS(3044), + [anon_sym_map_LBRACK] = ACTIONS(3044), + [anon_sym_chan] = ACTIONS(3044), + [anon_sym_thread] = ACTIONS(3044), + [anon_sym_atomic] = ACTIONS(3044), + [anon_sym_assert] = ACTIONS(3044), + [anon_sym_defer] = ACTIONS(3044), + [anon_sym_goto] = ACTIONS(3044), + [anon_sym_break] = ACTIONS(3044), + [anon_sym_continue] = ACTIONS(3044), + [anon_sym_return] = ACTIONS(3044), + [anon_sym_DOLLARfor] = ACTIONS(3044), + [anon_sym_for] = ACTIONS(3044), + [anon_sym_POUND] = ACTIONS(3044), + [anon_sym_asm] = ACTIONS(3044), + [anon_sym_AT_LBRACK] = ACTIONS(3044), + [sym___double_quote] = ACTIONS(3044), + [sym___single_quote] = ACTIONS(3044), + [sym___c_double_quote] = ACTIONS(3044), + [sym___c_single_quote] = ACTIONS(3044), + [sym___r_double_quote] = ACTIONS(3044), + [sym___r_single_quote] = ACTIONS(3044), + }, + [496] = { + [sym_line_comment] = STATE(496), + [sym_block_comment] = STATE(496), + [sym__expression] = STATE(1273), + [sym__expression_without_blocks] = STATE(1318), + [sym__expression_with_blocks] = STATE(1318), + [sym_inc_expression] = STATE(1319), + [sym_dec_expression] = STATE(1319), + [sym_or_block_expression] = STATE(1319), + [sym_option_propagation_expression] = STATE(1319), + [sym_result_propagation_expression] = STATE(1319), + [sym_anon_struct_value_expression] = STATE(1320), + [sym_go_expression] = STATE(1319), + [sym_spawn_expression] = STATE(1319), + [sym_parenthesized_expression] = STATE(1319), + [sym_call_expression] = STATE(1319), + [sym_type_initializer] = STATE(1320), + [sym_function_literal] = STATE(1319), + [sym_reference_expression] = STATE(1397), + [sym_type_reference_expression] = STATE(3460), + [sym_unary_expression] = STATE(1319), + [sym_receive_expression] = STATE(1319), + [sym_binary_expression] = STATE(1319), + [sym_as_type_cast_expression] = STATE(1319), + [sym__max_group] = STATE(1319), + [sym_literal] = STATE(1314), + [sym_map_init_expression] = STATE(1320), + [sym_array_creation] = STATE(1319), + [sym_fixed_array_creation] = STATE(1319), + [sym_selector_expression] = STATE(1399), + [sym_index_expression] = STATE(1319), + [sym_slice_expression] = STATE(1319), + [sym_if_expression] = STATE(1320), + [sym_compile_time_if_expression] = STATE(1320), + [sym_is_expression] = STATE(1319), + [sym_in_expression] = STATE(1319), + [sym_enum_fetch] = STATE(1319), + [sym_match_expression] = STATE(1320), + [sym_select_expression] = STATE(1320), + [sym_lock_expression] = STATE(1320), + [sym_unsafe_expression] = STATE(1320), + [sym_sql_expression] = STATE(1320), + [sym_c_string_literal] = STATE(1291), + [sym_raw_string_literal] = STATE(1291), + [sym_interpreted_string_literal] = STATE(1291), + [sym_mutability_modifiers] = STATE(639), + [sym_plain_type] = STATE(4307), + [sym__plain_type_without_special] = STATE(2360), + [sym_anon_struct_type] = STATE(2362), + [sym_multi_return_type] = STATE(2360), + [sym_result_type] = STATE(2360), + [sym_option_type] = STATE(2360), + [sym_qualified_type] = STATE(3460), + [sym_fixed_array_type] = STATE(2362), + [sym_array_type] = STATE(2362), + [sym_pointer_type] = STATE(2362), + [sym_wrong_pointer_type] = STATE(2362), + [sym_map_type] = STATE(2362), + [sym_channel_type] = STATE(2362), + [sym_shared_type] = STATE(2362), + [sym_thread_type] = STATE(2362), + [sym_atomic_type] = STATE(2362), + [sym_generic_type] = STATE(2362), + [sym_function_type] = STATE(2362), + [aux_sym__array_repeat1] = STATE(407), + [sym_identifier] = ACTIONS(1360), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(1362), + [anon_sym_LBRACE] = ACTIONS(1364), + [anon_sym_LPAREN] = ACTIONS(1366), + [anon_sym_fn] = ACTIONS(1368), + [anon_sym_PLUS] = ACTIONS(1370), + [anon_sym_DASH] = ACTIONS(1370), + [anon_sym_STAR] = ACTIONS(1372), + [anon_sym_RBRACK] = ACTIONS(3046), + [anon_sym_struct] = ACTIONS(1376), + [anon_sym_mut] = ACTIONS(41), + [anon_sym_QMARK] = ACTIONS(47), + [anon_sym_BANG] = ACTIONS(1378), + [anon_sym_go] = ACTIONS(1380), + [anon_sym_spawn] = ACTIONS(1382), + [anon_sym_json_DOTdecode] = ACTIONS(1384), + [anon_sym_LBRACK2] = ACTIONS(1386), + [anon_sym_TILDE] = ACTIONS(1370), + [anon_sym_CARET] = ACTIONS(1370), + [anon_sym_AMP] = ACTIONS(1388), + [anon_sym_LT_DASH] = ACTIONS(1390), + [sym_none] = ACTIONS(1392), + [sym_true] = ACTIONS(1392), + [sym_false] = ACTIONS(1392), + [sym_nil] = ACTIONS(1392), + [anon_sym_if] = ACTIONS(1865), + [anon_sym_DOLLARif] = ACTIONS(1396), + [anon_sym_match] = ACTIONS(1398), + [anon_sym_select] = ACTIONS(1400), + [anon_sym_lock] = ACTIONS(1402), + [anon_sym_rlock] = ACTIONS(1402), + [anon_sym_unsafe] = ACTIONS(1871), + [anon_sym_sql] = ACTIONS(1406), + [sym_int_literal] = ACTIONS(1408), + [sym_float_literal] = ACTIONS(1410), + [sym_rune_literal] = ACTIONS(1410), + [sym_pseudo_compile_time_identifier] = ACTIONS(1412), + [anon_sym_shared] = ACTIONS(83), + [anon_sym_map_LBRACK] = ACTIONS(85), + [anon_sym_chan] = ACTIONS(87), + [anon_sym_thread] = ACTIONS(89), + [anon_sym_atomic] = ACTIONS(91), + [sym___double_quote] = ACTIONS(1414), + [sym___single_quote] = ACTIONS(1416), + [sym___c_double_quote] = ACTIONS(1418), + [sym___c_single_quote] = ACTIONS(1420), + [sym___r_double_quote] = ACTIONS(1422), + [sym___r_single_quote] = ACTIONS(1424), + }, + [497] = { + [sym_line_comment] = STATE(497), + [sym_block_comment] = STATE(497), + [sym__expression] = STATE(2267), + [sym__expression_without_blocks] = STATE(2347), + [sym__expression_with_blocks] = STATE(2347), + [sym_inc_expression] = STATE(2379), + [sym_dec_expression] = STATE(2379), + [sym_or_block_expression] = STATE(2379), + [sym_option_propagation_expression] = STATE(2379), + [sym_result_propagation_expression] = STATE(2379), + [sym_anon_struct_value_expression] = STATE(2378), + [sym_go_expression] = STATE(2379), + [sym_spawn_expression] = STATE(2379), + [sym_parenthesized_expression] = STATE(2379), + [sym_call_expression] = STATE(2379), + [sym_type_initializer] = STATE(2378), + [sym_function_literal] = STATE(2379), + [sym_reference_expression] = STATE(2377), + [sym_type_reference_expression] = STATE(3460), + [sym_unary_expression] = STATE(2379), + [sym_receive_expression] = STATE(2379), + [sym_binary_expression] = STATE(2379), + [sym_as_type_cast_expression] = STATE(2379), + [sym__max_group] = STATE(2379), + [sym_literal] = STATE(2392), + [sym_map_init_expression] = STATE(2378), + [sym_array_creation] = STATE(2379), + [sym_fixed_array_creation] = STATE(2379), + [sym_selector_expression] = STATE(2379), + [sym_index_expression] = STATE(2379), + [sym_slice_expression] = STATE(2379), + [sym_if_expression] = STATE(2378), + [sym_compile_time_if_expression] = STATE(2378), + [sym_is_expression] = STATE(2379), + [sym_in_expression] = STATE(2379), + [sym_enum_fetch] = STATE(2379), + [sym_match_expression] = STATE(2378), + [sym_select_expression] = STATE(2378), + [sym_lock_expression] = STATE(2378), + [sym_unsafe_expression] = STATE(2378), + [sym_sql_expression] = STATE(2378), + [sym_c_string_literal] = STATE(2401), + [sym_raw_string_literal] = STATE(2401), + [sym_interpreted_string_literal] = STATE(2401), + [sym_mutability_modifiers] = STATE(939), + [sym_plain_type] = STATE(3558), + [sym__plain_type_without_special] = STATE(2360), + [sym_anon_struct_type] = STATE(2362), + [sym_multi_return_type] = STATE(2360), + [sym_result_type] = STATE(2360), + [sym_option_type] = STATE(2360), + [sym_qualified_type] = STATE(3460), + [sym_fixed_array_type] = STATE(2362), + [sym_array_type] = STATE(2362), + [sym_pointer_type] = STATE(2362), + [sym_wrong_pointer_type] = STATE(2362), + [sym_map_type] = STATE(2362), + [sym_channel_type] = STATE(2362), + [sym_shared_type] = STATE(2362), + [sym_thread_type] = STATE(2362), + [sym_atomic_type] = STATE(2362), + [sym_generic_type] = STATE(2362), + [sym_function_type] = STATE(2362), + [sym_identifier] = ACTIONS(2127), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(1430), + [anon_sym_LBRACE] = ACTIONS(1432), + [anon_sym_COMMA] = ACTIONS(621), + [anon_sym_LPAREN] = ACTIONS(1434), + [anon_sym_fn] = ACTIONS(1436), + [anon_sym_PLUS] = ACTIONS(1438), + [anon_sym_DASH] = ACTIONS(1438), + [anon_sym_STAR] = ACTIONS(2129), + [anon_sym_RBRACK] = ACTIONS(621), + [anon_sym_struct] = ACTIONS(1442), + [anon_sym_mut] = ACTIONS(41), + [anon_sym_QMARK] = ACTIONS(47), + [anon_sym_BANG] = ACTIONS(2131), + [anon_sym_go] = ACTIONS(1446), + [anon_sym_spawn] = ACTIONS(1448), + [anon_sym_json_DOTdecode] = ACTIONS(1450), + [anon_sym_LBRACK2] = ACTIONS(1452), + [anon_sym_TILDE] = ACTIONS(1438), + [anon_sym_CARET] = ACTIONS(1438), + [anon_sym_AMP] = ACTIONS(2133), + [anon_sym_LT_DASH] = ACTIONS(1456), + [sym_none] = ACTIONS(1458), + [sym_true] = ACTIONS(1458), + [sym_false] = ACTIONS(1458), + [sym_nil] = ACTIONS(1458), + [anon_sym_if] = ACTIONS(1833), + [anon_sym_DOLLARif] = ACTIONS(1462), + [anon_sym_match] = ACTIONS(1464), + [anon_sym_select] = ACTIONS(1466), + [anon_sym_lock] = ACTIONS(1468), + [anon_sym_rlock] = ACTIONS(1468), + [anon_sym_unsafe] = ACTIONS(1839), + [anon_sym_sql] = ACTIONS(1472), + [sym_int_literal] = ACTIONS(1458), + [sym_float_literal] = ACTIONS(1474), + [sym_rune_literal] = ACTIONS(1474), + [sym_pseudo_compile_time_identifier] = ACTIONS(1476), + [anon_sym_shared] = ACTIONS(83), + [anon_sym_map_LBRACK] = ACTIONS(85), + [anon_sym_chan] = ACTIONS(87), + [anon_sym_thread] = ACTIONS(89), + [anon_sym_atomic] = ACTIONS(91), + [sym___double_quote] = ACTIONS(1480), + [sym___single_quote] = ACTIONS(1482), + [sym___c_double_quote] = ACTIONS(1484), + [sym___c_single_quote] = ACTIONS(1486), + [sym___r_double_quote] = ACTIONS(1488), + [sym___r_single_quote] = ACTIONS(1490), + }, + [498] = { + [sym_line_comment] = STATE(498), + [sym_block_comment] = STATE(498), [ts_builtin_sym_end] = ACTIONS(3048), [sym_identifier] = ACTIONS(3050), [anon_sym_LF] = ACTIONS(3050), @@ -80336,9 +80702,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym___r_double_quote] = ACTIONS(3050), [sym___r_single_quote] = ACTIONS(3050), }, - [496] = { - [sym_line_comment] = STATE(496), - [sym_block_comment] = STATE(496), + [499] = { + [sym_line_comment] = STATE(499), + [sym_block_comment] = STATE(499), [ts_builtin_sym_end] = ACTIONS(3052), [sym_identifier] = ACTIONS(3054), [anon_sym_LF] = ACTIONS(3054), @@ -80452,357 +80818,125 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym___r_double_quote] = ACTIONS(3054), [sym___r_single_quote] = ACTIONS(3054), }, - [497] = { - [sym_line_comment] = STATE(497), - [sym_block_comment] = STATE(497), - [ts_builtin_sym_end] = ACTIONS(2256), - [sym_identifier] = ACTIONS(2253), - [anon_sym_LF] = ACTIONS(2253), - [anon_sym_CR] = ACTIONS(2253), - [anon_sym_CR_LF] = ACTIONS(2253), + [500] = { + [sym_line_comment] = STATE(500), + [sym_block_comment] = STATE(500), + [ts_builtin_sym_end] = ACTIONS(3056), + [sym_identifier] = ACTIONS(3058), + [anon_sym_LF] = ACTIONS(3058), + [anon_sym_CR] = ACTIONS(3058), + [anon_sym_CR_LF] = ACTIONS(3058), [anon_sym_SLASH_SLASH] = ACTIONS(497), [anon_sym_SLASH_STAR] = ACTIONS(499), - [anon_sym_DOT] = ACTIONS(2253), - [anon_sym_as] = ACTIONS(2253), - [anon_sym_LBRACE] = ACTIONS(2253), - [anon_sym_COMMA] = ACTIONS(2253), - [anon_sym_const] = ACTIONS(2253), - [anon_sym_LPAREN] = ACTIONS(2253), - [anon_sym_EQ] = ACTIONS(2253), - [anon_sym___global] = ACTIONS(2253), - [anon_sym_type] = ACTIONS(2253), - [anon_sym_PIPE] = ACTIONS(2253), - [anon_sym_fn] = ACTIONS(2253), - [anon_sym_PLUS] = ACTIONS(2253), - [anon_sym_DASH] = ACTIONS(2253), - [anon_sym_STAR] = ACTIONS(2253), - [anon_sym_SLASH] = ACTIONS(2253), - [anon_sym_PERCENT] = ACTIONS(2253), - [anon_sym_LT] = ACTIONS(2253), - [anon_sym_GT] = ACTIONS(2253), - [anon_sym_EQ_EQ] = ACTIONS(2253), - [anon_sym_BANG_EQ] = ACTIONS(2253), - [anon_sym_LT_EQ] = ACTIONS(2253), - [anon_sym_GT_EQ] = ACTIONS(2253), - [anon_sym_LBRACK] = ACTIONS(2256), - [anon_sym_struct] = ACTIONS(2253), - [anon_sym_union] = ACTIONS(2253), - [anon_sym_pub] = ACTIONS(2253), - [anon_sym_mut] = ACTIONS(2253), - [anon_sym_enum] = ACTIONS(2253), - [anon_sym_interface] = ACTIONS(2253), - [anon_sym_PLUS_PLUS] = ACTIONS(2253), - [anon_sym_DASH_DASH] = ACTIONS(2253), - [anon_sym_QMARK] = ACTIONS(2253), - [anon_sym_BANG] = ACTIONS(2253), - [anon_sym_go] = ACTIONS(2253), - [anon_sym_spawn] = ACTIONS(2253), - [anon_sym_json_DOTdecode] = ACTIONS(2253), - [anon_sym_LBRACK2] = ACTIONS(2253), - [anon_sym_TILDE] = ACTIONS(2253), - [anon_sym_CARET] = ACTIONS(2253), - [anon_sym_AMP] = ACTIONS(2253), - [anon_sym_LT_DASH] = ACTIONS(2253), - [anon_sym_LT_LT] = ACTIONS(2253), - [anon_sym_GT_GT] = ACTIONS(2253), - [anon_sym_GT_GT_GT] = ACTIONS(2253), - [anon_sym_AMP_CARET] = ACTIONS(2253), - [anon_sym_AMP_AMP] = ACTIONS(2253), - [anon_sym_PIPE_PIPE] = ACTIONS(2253), - [anon_sym_or] = ACTIONS(2253), - [sym_none] = ACTIONS(2253), - [sym_true] = ACTIONS(2253), - [sym_false] = ACTIONS(2253), - [sym_nil] = ACTIONS(2253), - [anon_sym_QMARK_DOT] = ACTIONS(2253), - [anon_sym_POUND_LBRACK] = ACTIONS(2253), - [anon_sym_if] = ACTIONS(2253), - [anon_sym_DOLLARif] = ACTIONS(2253), - [anon_sym_is] = ACTIONS(2253), - [anon_sym_BANGis] = ACTIONS(2253), - [anon_sym_in] = ACTIONS(2253), - [anon_sym_BANGin] = ACTIONS(2253), - [anon_sym_match] = ACTIONS(2253), - [anon_sym_select] = ACTIONS(2253), - [anon_sym_STAR_EQ] = ACTIONS(2253), - [anon_sym_SLASH_EQ] = ACTIONS(2253), - [anon_sym_PERCENT_EQ] = ACTIONS(2253), - [anon_sym_LT_LT_EQ] = ACTIONS(2253), - [anon_sym_GT_GT_EQ] = ACTIONS(2253), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(2253), - [anon_sym_AMP_EQ] = ACTIONS(2253), - [anon_sym_AMP_CARET_EQ] = ACTIONS(2253), - [anon_sym_PLUS_EQ] = ACTIONS(2253), - [anon_sym_DASH_EQ] = ACTIONS(2253), - [anon_sym_PIPE_EQ] = ACTIONS(2253), - [anon_sym_CARET_EQ] = ACTIONS(2253), - [anon_sym_COLON_EQ] = ACTIONS(2253), - [anon_sym_lock] = ACTIONS(2253), - [anon_sym_rlock] = ACTIONS(2253), - [anon_sym_unsafe] = ACTIONS(2253), - [anon_sym_sql] = ACTIONS(2253), - [sym_int_literal] = ACTIONS(2253), - [sym_float_literal] = ACTIONS(2253), - [sym_rune_literal] = ACTIONS(2253), - [sym_pseudo_compile_time_identifier] = ACTIONS(2253), - [anon_sym_shared] = ACTIONS(2253), - [anon_sym_map_LBRACK] = ACTIONS(2253), - [anon_sym_chan] = ACTIONS(2253), - [anon_sym_thread] = ACTIONS(2253), - [anon_sym_atomic] = ACTIONS(2253), - [anon_sym_assert] = ACTIONS(2253), - [anon_sym_defer] = ACTIONS(2253), - [anon_sym_goto] = ACTIONS(2253), - [anon_sym_break] = ACTIONS(2253), - [anon_sym_continue] = ACTIONS(2253), - [anon_sym_return] = ACTIONS(2253), - [anon_sym_DOLLARfor] = ACTIONS(2253), - [anon_sym_for] = ACTIONS(2253), - [anon_sym_POUND] = ACTIONS(2253), - [anon_sym_asm] = ACTIONS(2253), - [anon_sym_AT_LBRACK] = ACTIONS(2253), - [sym___double_quote] = ACTIONS(2253), - [sym___single_quote] = ACTIONS(2253), - [sym___c_double_quote] = ACTIONS(2253), - [sym___c_single_quote] = ACTIONS(2253), - [sym___r_double_quote] = ACTIONS(2253), - [sym___r_single_quote] = ACTIONS(2253), - }, - [498] = { - [sym_line_comment] = STATE(498), - [sym_block_comment] = STATE(498), - [sym__expression] = STATE(2455), - [sym__expression_without_blocks] = STATE(2300), - [sym__expression_with_blocks] = STATE(2300), - [sym_inc_expression] = STATE(2307), - [sym_dec_expression] = STATE(2307), - [sym_or_block_expression] = STATE(2307), - [sym_option_propagation_expression] = STATE(2307), - [sym_result_propagation_expression] = STATE(2307), - [sym_anon_struct_value_expression] = STATE(2380), - [sym_go_expression] = STATE(2307), - [sym_spawn_expression] = STATE(2307), - [sym_parenthesized_expression] = STATE(2307), - [sym_call_expression] = STATE(2307), - [sym_type_initializer] = STATE(2380), - [sym_function_literal] = STATE(2307), - [sym_reference_expression] = STATE(2311), - [sym_type_reference_expression] = STATE(3541), - [sym_unary_expression] = STATE(2307), - [sym_receive_expression] = STATE(2307), - [sym_binary_expression] = STATE(2307), - [sym_as_type_cast_expression] = STATE(2307), - [sym__max_group] = STATE(2307), - [sym_literal] = STATE(2292), - [sym_map_init_expression] = STATE(2380), - [sym_array_creation] = STATE(2307), - [sym_fixed_array_creation] = STATE(2307), - [sym_selector_expression] = STATE(2307), - [sym_index_expression] = STATE(2307), - [sym_slice_expression] = STATE(2307), - [sym_if_expression] = STATE(2380), - [sym_compile_time_if_expression] = STATE(2380), - [sym_is_expression] = STATE(2307), - [sym_in_expression] = STATE(2307), - [sym_enum_fetch] = STATE(2307), - [sym_match_expression] = STATE(2380), - [sym_select_expression] = STATE(2380), - [sym_lock_expression] = STATE(2380), - [sym_unsafe_expression] = STATE(2380), - [sym_sql_expression] = STATE(2380), - [sym_c_string_literal] = STATE(2308), - [sym_raw_string_literal] = STATE(2308), - [sym_interpreted_string_literal] = STATE(2308), - [sym_mutability_modifiers] = STATE(824), - [sym_mutable_expression] = STATE(3922), - [sym_expression_list] = STATE(4367), - [sym_plain_type] = STATE(4297), - [sym__plain_type_without_special] = STATE(2302), - [sym_anon_struct_type] = STATE(2303), - [sym_multi_return_type] = STATE(2302), - [sym_result_type] = STATE(2302), - [sym_option_type] = STATE(2302), - [sym_qualified_type] = STATE(3541), - [sym_fixed_array_type] = STATE(2303), - [sym_array_type] = STATE(2303), - [sym_pointer_type] = STATE(2303), - [sym_wrong_pointer_type] = STATE(2303), - [sym_map_type] = STATE(2303), - [sym_channel_type] = STATE(2303), - [sym_shared_type] = STATE(2303), - [sym_thread_type] = STATE(2303), - [sym_atomic_type] = STATE(2303), - [sym_generic_type] = STATE(2303), - [sym_function_type] = STATE(2303), - [sym_identifier] = ACTIONS(1807), - [anon_sym_SLASH_SLASH] = ACTIONS(3), - [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1428), - [anon_sym_LBRACE] = ACTIONS(3056), - [anon_sym_LPAREN] = ACTIONS(1432), - [anon_sym_fn] = ACTIONS(1434), - [anon_sym_PLUS] = ACTIONS(1811), - [anon_sym_DASH] = ACTIONS(1811), - [anon_sym_STAR] = ACTIONS(1813), - [anon_sym_struct] = ACTIONS(1440), - [anon_sym_mut] = ACTIONS(41), - [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(1815), - [anon_sym_go] = ACTIONS(1817), - [anon_sym_spawn] = ACTIONS(1819), - [anon_sym_json_DOTdecode] = ACTIONS(1448), - [anon_sym_LBRACK2] = ACTIONS(1821), - [anon_sym_TILDE] = ACTIONS(1811), - [anon_sym_CARET] = ACTIONS(1811), - [anon_sym_AMP] = ACTIONS(1823), - [anon_sym_LT_DASH] = ACTIONS(1825), - [sym_none] = ACTIONS(1456), - [sym_true] = ACTIONS(1456), - [sym_false] = ACTIONS(1456), - [sym_nil] = ACTIONS(1456), - [anon_sym_if] = ACTIONS(1827), - [anon_sym_DOLLARif] = ACTIONS(1460), - [anon_sym_match] = ACTIONS(1462), - [anon_sym_select] = ACTIONS(1829), - [anon_sym_lock] = ACTIONS(1831), - [anon_sym_rlock] = ACTIONS(1831), - [anon_sym_unsafe] = ACTIONS(1833), - [anon_sym_sql] = ACTIONS(1470), - [sym_int_literal] = ACTIONS(1456), - [sym_float_literal] = ACTIONS(1472), - [sym_rune_literal] = ACTIONS(1472), - [sym_pseudo_compile_time_identifier] = ACTIONS(1474), - [anon_sym_shared] = ACTIONS(83), - [anon_sym_map_LBRACK] = ACTIONS(85), - [anon_sym_chan] = ACTIONS(87), - [anon_sym_thread] = ACTIONS(89), - [anon_sym_atomic] = ACTIONS(91), - [sym___double_quote] = ACTIONS(1478), - [sym___single_quote] = ACTIONS(1480), - [sym___c_double_quote] = ACTIONS(1482), - [sym___c_single_quote] = ACTIONS(1484), - [sym___r_double_quote] = ACTIONS(1486), - [sym___r_single_quote] = ACTIONS(1488), - }, - [499] = { - [sym_line_comment] = STATE(499), - [sym_block_comment] = STATE(499), - [sym__expression] = STATE(2455), - [sym__expression_without_blocks] = STATE(2300), - [sym__expression_with_blocks] = STATE(2300), - [sym_inc_expression] = STATE(2307), - [sym_dec_expression] = STATE(2307), - [sym_or_block_expression] = STATE(2307), - [sym_option_propagation_expression] = STATE(2307), - [sym_result_propagation_expression] = STATE(2307), - [sym_anon_struct_value_expression] = STATE(2380), - [sym_go_expression] = STATE(2307), - [sym_spawn_expression] = STATE(2307), - [sym_parenthesized_expression] = STATE(2307), - [sym_call_expression] = STATE(2307), - [sym_type_initializer] = STATE(2380), - [sym_function_literal] = STATE(2307), - [sym_reference_expression] = STATE(2311), - [sym_type_reference_expression] = STATE(3541), - [sym_unary_expression] = STATE(2307), - [sym_receive_expression] = STATE(2307), - [sym_binary_expression] = STATE(2307), - [sym_as_type_cast_expression] = STATE(2307), - [sym__max_group] = STATE(2307), - [sym_literal] = STATE(2292), - [sym_map_init_expression] = STATE(2380), - [sym_array_creation] = STATE(2307), - [sym_fixed_array_creation] = STATE(2307), - [sym_selector_expression] = STATE(2307), - [sym_index_expression] = STATE(2307), - [sym_slice_expression] = STATE(2307), - [sym_if_expression] = STATE(2380), - [sym_compile_time_if_expression] = STATE(2380), - [sym_is_expression] = STATE(2307), - [sym_in_expression] = STATE(2307), - [sym_enum_fetch] = STATE(2307), - [sym_match_expression] = STATE(2380), - [sym_select_expression] = STATE(2380), - [sym_lock_expression] = STATE(2380), - [sym_unsafe_expression] = STATE(2380), - [sym_sql_expression] = STATE(2380), - [sym_c_string_literal] = STATE(2308), - [sym_raw_string_literal] = STATE(2308), - [sym_interpreted_string_literal] = STATE(2308), - [sym_mutability_modifiers] = STATE(824), - [sym_mutable_expression] = STATE(3922), - [sym_expression_list] = STATE(4463), - [sym_plain_type] = STATE(4297), - [sym__plain_type_without_special] = STATE(2302), - [sym_anon_struct_type] = STATE(2303), - [sym_multi_return_type] = STATE(2302), - [sym_result_type] = STATE(2302), - [sym_option_type] = STATE(2302), - [sym_qualified_type] = STATE(3541), - [sym_fixed_array_type] = STATE(2303), - [sym_array_type] = STATE(2303), - [sym_pointer_type] = STATE(2303), - [sym_wrong_pointer_type] = STATE(2303), - [sym_map_type] = STATE(2303), - [sym_channel_type] = STATE(2303), - [sym_shared_type] = STATE(2303), - [sym_thread_type] = STATE(2303), - [sym_atomic_type] = STATE(2303), - [sym_generic_type] = STATE(2303), - [sym_function_type] = STATE(2303), - [sym_identifier] = ACTIONS(1807), - [anon_sym_SLASH_SLASH] = ACTIONS(3), - [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1428), + [anon_sym_DOT] = ACTIONS(3058), + [anon_sym_as] = ACTIONS(3058), [anon_sym_LBRACE] = ACTIONS(3058), - [anon_sym_LPAREN] = ACTIONS(1432), - [anon_sym_fn] = ACTIONS(1434), - [anon_sym_PLUS] = ACTIONS(1811), - [anon_sym_DASH] = ACTIONS(1811), - [anon_sym_STAR] = ACTIONS(1813), - [anon_sym_struct] = ACTIONS(1440), - [anon_sym_mut] = ACTIONS(41), - [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(1815), - [anon_sym_go] = ACTIONS(1817), - [anon_sym_spawn] = ACTIONS(1819), - [anon_sym_json_DOTdecode] = ACTIONS(1448), - [anon_sym_LBRACK2] = ACTIONS(1821), - [anon_sym_TILDE] = ACTIONS(1811), - [anon_sym_CARET] = ACTIONS(1811), - [anon_sym_AMP] = ACTIONS(1823), - [anon_sym_LT_DASH] = ACTIONS(1825), - [sym_none] = ACTIONS(1456), - [sym_true] = ACTIONS(1456), - [sym_false] = ACTIONS(1456), - [sym_nil] = ACTIONS(1456), - [anon_sym_if] = ACTIONS(1827), - [anon_sym_DOLLARif] = ACTIONS(1460), - [anon_sym_match] = ACTIONS(1462), - [anon_sym_select] = ACTIONS(1829), - [anon_sym_lock] = ACTIONS(1831), - [anon_sym_rlock] = ACTIONS(1831), - [anon_sym_unsafe] = ACTIONS(1833), - [anon_sym_sql] = ACTIONS(1470), - [sym_int_literal] = ACTIONS(1456), - [sym_float_literal] = ACTIONS(1472), - [sym_rune_literal] = ACTIONS(1472), - [sym_pseudo_compile_time_identifier] = ACTIONS(1474), - [anon_sym_shared] = ACTIONS(83), - [anon_sym_map_LBRACK] = ACTIONS(85), - [anon_sym_chan] = ACTIONS(87), - [anon_sym_thread] = ACTIONS(89), - [anon_sym_atomic] = ACTIONS(91), - [sym___double_quote] = ACTIONS(1478), - [sym___single_quote] = ACTIONS(1480), - [sym___c_double_quote] = ACTIONS(1482), - [sym___c_single_quote] = ACTIONS(1484), - [sym___r_double_quote] = ACTIONS(1486), - [sym___r_single_quote] = ACTIONS(1488), + [anon_sym_COMMA] = ACTIONS(3058), + [anon_sym_const] = ACTIONS(3058), + [anon_sym_LPAREN] = ACTIONS(3058), + [anon_sym_EQ] = ACTIONS(3058), + [anon_sym___global] = ACTIONS(3058), + [anon_sym_type] = ACTIONS(3058), + [anon_sym_PIPE] = ACTIONS(3058), + [anon_sym_fn] = ACTIONS(3058), + [anon_sym_PLUS] = ACTIONS(3058), + [anon_sym_DASH] = ACTIONS(3058), + [anon_sym_STAR] = ACTIONS(3058), + [anon_sym_SLASH] = ACTIONS(3058), + [anon_sym_PERCENT] = ACTIONS(3058), + [anon_sym_LT] = ACTIONS(3058), + [anon_sym_GT] = ACTIONS(3058), + [anon_sym_EQ_EQ] = ACTIONS(3058), + [anon_sym_BANG_EQ] = ACTIONS(3058), + [anon_sym_LT_EQ] = ACTIONS(3058), + [anon_sym_GT_EQ] = ACTIONS(3058), + [anon_sym_LBRACK] = ACTIONS(3056), + [anon_sym_struct] = ACTIONS(3058), + [anon_sym_union] = ACTIONS(3058), + [anon_sym_pub] = ACTIONS(3058), + [anon_sym_mut] = ACTIONS(3058), + [anon_sym_enum] = ACTIONS(3058), + [anon_sym_interface] = ACTIONS(3058), + [anon_sym_PLUS_PLUS] = ACTIONS(3058), + [anon_sym_DASH_DASH] = ACTIONS(3058), + [anon_sym_QMARK] = ACTIONS(3058), + [anon_sym_BANG] = ACTIONS(3058), + [anon_sym_go] = ACTIONS(3058), + [anon_sym_spawn] = ACTIONS(3058), + [anon_sym_json_DOTdecode] = ACTIONS(3058), + [anon_sym_LBRACK2] = ACTIONS(3058), + [anon_sym_TILDE] = ACTIONS(3058), + [anon_sym_CARET] = ACTIONS(3058), + [anon_sym_AMP] = ACTIONS(3058), + [anon_sym_LT_DASH] = ACTIONS(3058), + [anon_sym_LT_LT] = ACTIONS(3058), + [anon_sym_GT_GT] = ACTIONS(3058), + [anon_sym_GT_GT_GT] = ACTIONS(3058), + [anon_sym_AMP_CARET] = ACTIONS(3058), + [anon_sym_AMP_AMP] = ACTIONS(3058), + [anon_sym_PIPE_PIPE] = ACTIONS(3058), + [anon_sym_or] = ACTIONS(3058), + [sym_none] = ACTIONS(3058), + [sym_true] = ACTIONS(3058), + [sym_false] = ACTIONS(3058), + [sym_nil] = ACTIONS(3058), + [anon_sym_QMARK_DOT] = ACTIONS(3058), + [anon_sym_POUND_LBRACK] = ACTIONS(3058), + [anon_sym_if] = ACTIONS(3058), + [anon_sym_DOLLARif] = ACTIONS(3058), + [anon_sym_is] = ACTIONS(3058), + [anon_sym_BANGis] = ACTIONS(3058), + [anon_sym_in] = ACTIONS(3058), + [anon_sym_BANGin] = ACTIONS(3058), + [anon_sym_match] = ACTIONS(3058), + [anon_sym_select] = ACTIONS(3058), + [anon_sym_STAR_EQ] = ACTIONS(3058), + [anon_sym_SLASH_EQ] = ACTIONS(3058), + [anon_sym_PERCENT_EQ] = ACTIONS(3058), + [anon_sym_LT_LT_EQ] = ACTIONS(3058), + [anon_sym_GT_GT_EQ] = ACTIONS(3058), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(3058), + [anon_sym_AMP_EQ] = ACTIONS(3058), + [anon_sym_AMP_CARET_EQ] = ACTIONS(3058), + [anon_sym_PLUS_EQ] = ACTIONS(3058), + [anon_sym_DASH_EQ] = ACTIONS(3058), + [anon_sym_PIPE_EQ] = ACTIONS(3058), + [anon_sym_CARET_EQ] = ACTIONS(3058), + [anon_sym_COLON_EQ] = ACTIONS(3058), + [anon_sym_lock] = ACTIONS(3058), + [anon_sym_rlock] = ACTIONS(3058), + [anon_sym_unsafe] = ACTIONS(3058), + [anon_sym_sql] = ACTIONS(3058), + [sym_int_literal] = ACTIONS(3058), + [sym_float_literal] = ACTIONS(3058), + [sym_rune_literal] = ACTIONS(3058), + [sym_pseudo_compile_time_identifier] = ACTIONS(3058), + [anon_sym_shared] = ACTIONS(3058), + [anon_sym_map_LBRACK] = ACTIONS(3058), + [anon_sym_chan] = ACTIONS(3058), + [anon_sym_thread] = ACTIONS(3058), + [anon_sym_atomic] = ACTIONS(3058), + [anon_sym_assert] = ACTIONS(3058), + [anon_sym_defer] = ACTIONS(3058), + [anon_sym_goto] = ACTIONS(3058), + [anon_sym_break] = ACTIONS(3058), + [anon_sym_continue] = ACTIONS(3058), + [anon_sym_return] = ACTIONS(3058), + [anon_sym_DOLLARfor] = ACTIONS(3058), + [anon_sym_for] = ACTIONS(3058), + [anon_sym_POUND] = ACTIONS(3058), + [anon_sym_asm] = ACTIONS(3058), + [anon_sym_AT_LBRACK] = ACTIONS(3058), + [sym___double_quote] = ACTIONS(3058), + [sym___single_quote] = ACTIONS(3058), + [sym___c_double_quote] = ACTIONS(3058), + [sym___c_single_quote] = ACTIONS(3058), + [sym___r_double_quote] = ACTIONS(3058), + [sym___r_single_quote] = ACTIONS(3058), }, - [500] = { - [sym_line_comment] = STATE(500), - [sym_block_comment] = STATE(500), + [501] = { + [sym_line_comment] = STATE(501), + [sym_block_comment] = STATE(501), [ts_builtin_sym_end] = ACTIONS(3060), [sym_identifier] = ACTIONS(3062), [anon_sym_LF] = ACTIONS(3062), @@ -80916,12890 +81050,12890 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym___r_double_quote] = ACTIONS(3062), [sym___r_single_quote] = ACTIONS(3062), }, - [501] = { - [sym_line_comment] = STATE(501), - [sym_block_comment] = STATE(501), - [sym__expression] = STATE(2595), - [sym__expression_without_blocks] = STATE(2300), - [sym__expression_with_blocks] = STATE(2300), - [sym_inc_expression] = STATE(2307), - [sym_dec_expression] = STATE(2307), - [sym_or_block_expression] = STATE(2307), - [sym_option_propagation_expression] = STATE(2307), - [sym_result_propagation_expression] = STATE(2307), - [sym_anon_struct_value_expression] = STATE(2380), - [sym_go_expression] = STATE(2307), - [sym_spawn_expression] = STATE(2307), - [sym_parenthesized_expression] = STATE(2307), - [sym_call_expression] = STATE(2307), - [sym_type_initializer] = STATE(2380), - [sym_function_literal] = STATE(2307), - [sym_reference_expression] = STATE(2311), - [sym_type_reference_expression] = STATE(3541), - [sym_unary_expression] = STATE(2307), - [sym_receive_expression] = STATE(2307), - [sym_binary_expression] = STATE(2307), - [sym_as_type_cast_expression] = STATE(2307), - [sym__max_group] = STATE(2307), - [sym_literal] = STATE(2292), - [sym_map_init_expression] = STATE(2380), - [sym_array_creation] = STATE(2307), - [sym_fixed_array_creation] = STATE(2307), - [sym_selector_expression] = STATE(2307), - [sym_index_expression] = STATE(2307), - [sym_slice_expression] = STATE(2307), - [sym_if_expression] = STATE(2380), - [sym_compile_time_if_expression] = STATE(2380), - [sym_is_expression] = STATE(2307), - [sym_in_expression] = STATE(2307), - [sym_enum_fetch] = STATE(2307), - [sym_match_expression] = STATE(2380), - [sym_select_expression] = STATE(2380), - [sym_lock_expression] = STATE(2380), - [sym_unsafe_expression] = STATE(2380), - [sym_sql_expression] = STATE(2380), - [sym_c_string_literal] = STATE(2308), - [sym_raw_string_literal] = STATE(2308), - [sym_interpreted_string_literal] = STATE(2308), - [sym_mutability_modifiers] = STATE(939), - [sym_plain_type] = STATE(4297), - [sym__plain_type_without_special] = STATE(2302), - [sym_anon_struct_type] = STATE(2303), - [sym_multi_return_type] = STATE(2302), - [sym_result_type] = STATE(2302), - [sym_option_type] = STATE(2302), - [sym_qualified_type] = STATE(3541), - [sym_fixed_array_type] = STATE(2303), - [sym_array_type] = STATE(2303), - [sym_pointer_type] = STATE(2303), - [sym_wrong_pointer_type] = STATE(2303), - [sym_map_type] = STATE(2303), - [sym_channel_type] = STATE(2303), - [sym_shared_type] = STATE(2303), - [sym_thread_type] = STATE(2303), - [sym_atomic_type] = STATE(2303), - [sym_generic_type] = STATE(2303), - [sym_function_type] = STATE(2303), - [sym_range] = STATE(4573), - [sym_identifier] = ACTIONS(1426), - [anon_sym_SLASH_SLASH] = ACTIONS(3), - [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1428), - [anon_sym_LBRACE] = ACTIONS(1430), - [anon_sym_LPAREN] = ACTIONS(1432), - [anon_sym_fn] = ACTIONS(1434), - [anon_sym_PLUS] = ACTIONS(1436), - [anon_sym_DASH] = ACTIONS(1436), - [anon_sym_STAR] = ACTIONS(1438), - [anon_sym_struct] = ACTIONS(1440), - [anon_sym_mut] = ACTIONS(41), - [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(1442), - [anon_sym_go] = ACTIONS(1444), - [anon_sym_spawn] = ACTIONS(1446), - [anon_sym_json_DOTdecode] = ACTIONS(1448), - [anon_sym_LBRACK2] = ACTIONS(1450), - [anon_sym_TILDE] = ACTIONS(1436), - [anon_sym_CARET] = ACTIONS(1436), - [anon_sym_AMP] = ACTIONS(1452), - [anon_sym_LT_DASH] = ACTIONS(1454), - [sym_none] = ACTIONS(1456), - [sym_true] = ACTIONS(1456), - [sym_false] = ACTIONS(1456), - [sym_nil] = ACTIONS(1456), - [anon_sym_if] = ACTIONS(1827), - [anon_sym_DOLLARif] = ACTIONS(1460), - [anon_sym_match] = ACTIONS(1462), - [anon_sym_select] = ACTIONS(1464), - [anon_sym_lock] = ACTIONS(1466), - [anon_sym_rlock] = ACTIONS(1466), - [anon_sym_unsafe] = ACTIONS(1833), - [anon_sym_sql] = ACTIONS(1470), - [sym_int_literal] = ACTIONS(1456), - [sym_float_literal] = ACTIONS(1472), - [sym_rune_literal] = ACTIONS(1472), - [sym_pseudo_compile_time_identifier] = ACTIONS(1474), - [anon_sym_shared] = ACTIONS(83), - [anon_sym_map_LBRACK] = ACTIONS(85), - [anon_sym_chan] = ACTIONS(87), - [anon_sym_thread] = ACTIONS(89), - [anon_sym_atomic] = ACTIONS(91), - [anon_sym_DOT_DOT] = ACTIONS(1476), - [sym___double_quote] = ACTIONS(1478), - [sym___single_quote] = ACTIONS(1480), - [sym___c_double_quote] = ACTIONS(1482), - [sym___c_single_quote] = ACTIONS(1484), - [sym___r_double_quote] = ACTIONS(1486), - [sym___r_single_quote] = ACTIONS(1488), - }, [502] = { [sym_line_comment] = STATE(502), [sym_block_comment] = STATE(502), - [sym__expression] = STATE(2595), - [sym__expression_without_blocks] = STATE(2300), - [sym__expression_with_blocks] = STATE(2300), - [sym_inc_expression] = STATE(2307), - [sym_dec_expression] = STATE(2307), - [sym_or_block_expression] = STATE(2307), - [sym_option_propagation_expression] = STATE(2307), - [sym_result_propagation_expression] = STATE(2307), - [sym_anon_struct_value_expression] = STATE(2380), - [sym_go_expression] = STATE(2307), - [sym_spawn_expression] = STATE(2307), - [sym_parenthesized_expression] = STATE(2307), - [sym_call_expression] = STATE(2307), - [sym_type_initializer] = STATE(2380), - [sym_function_literal] = STATE(2307), - [sym_reference_expression] = STATE(2311), - [sym_type_reference_expression] = STATE(3541), - [sym_unary_expression] = STATE(2307), - [sym_receive_expression] = STATE(2307), - [sym_binary_expression] = STATE(2307), - [sym_as_type_cast_expression] = STATE(2307), - [sym__max_group] = STATE(2307), - [sym_literal] = STATE(2292), - [sym_map_init_expression] = STATE(2380), - [sym_array_creation] = STATE(2307), - [sym_fixed_array_creation] = STATE(2307), - [sym_selector_expression] = STATE(2307), - [sym_index_expression] = STATE(2307), - [sym_slice_expression] = STATE(2307), - [sym_if_expression] = STATE(2380), - [sym_compile_time_if_expression] = STATE(2380), - [sym_is_expression] = STATE(2307), - [sym_in_expression] = STATE(2307), - [sym_enum_fetch] = STATE(2307), - [sym_match_expression] = STATE(2380), - [sym_select_expression] = STATE(2380), - [sym_lock_expression] = STATE(2380), - [sym_unsafe_expression] = STATE(2380), - [sym_sql_expression] = STATE(2380), - [sym_c_string_literal] = STATE(2308), - [sym_raw_string_literal] = STATE(2308), - [sym_interpreted_string_literal] = STATE(2308), - [sym_mutability_modifiers] = STATE(939), - [sym_plain_type] = STATE(3557), - [sym__plain_type_without_special] = STATE(2302), - [sym_anon_struct_type] = STATE(2303), - [sym_multi_return_type] = STATE(2302), - [sym_result_type] = STATE(2302), - [sym_option_type] = STATE(2302), - [sym_qualified_type] = STATE(3541), - [sym_fixed_array_type] = STATE(2303), - [sym_array_type] = STATE(2303), - [sym_pointer_type] = STATE(2303), - [sym_wrong_pointer_type] = STATE(2303), - [sym_map_type] = STATE(2303), - [sym_channel_type] = STATE(2303), - [sym_shared_type] = STATE(2303), - [sym_thread_type] = STATE(2303), - [sym_atomic_type] = STATE(2303), - [sym_generic_type] = STATE(2303), - [sym_function_type] = STATE(2303), - [sym_range] = STATE(4573), - [sym_identifier] = ACTIONS(2135), + [sym__expression] = STATE(1273), + [sym__expression_without_blocks] = STATE(1318), + [sym__expression_with_blocks] = STATE(1318), + [sym_inc_expression] = STATE(1319), + [sym_dec_expression] = STATE(1319), + [sym_or_block_expression] = STATE(1319), + [sym_option_propagation_expression] = STATE(1319), + [sym_result_propagation_expression] = STATE(1319), + [sym_anon_struct_value_expression] = STATE(1320), + [sym_go_expression] = STATE(1319), + [sym_spawn_expression] = STATE(1319), + [sym_parenthesized_expression] = STATE(1319), + [sym_call_expression] = STATE(1319), + [sym_type_initializer] = STATE(1320), + [sym_function_literal] = STATE(1319), + [sym_reference_expression] = STATE(1298), + [sym_type_reference_expression] = STATE(3460), + [sym_unary_expression] = STATE(1319), + [sym_receive_expression] = STATE(1319), + [sym_binary_expression] = STATE(1319), + [sym_as_type_cast_expression] = STATE(1319), + [sym__max_group] = STATE(1319), + [sym_literal] = STATE(1314), + [sym_map_init_expression] = STATE(1320), + [sym_array_creation] = STATE(1319), + [sym_fixed_array_creation] = STATE(1319), + [sym_selector_expression] = STATE(1319), + [sym_index_expression] = STATE(1319), + [sym_slice_expression] = STATE(1319), + [sym_if_expression] = STATE(1320), + [sym_compile_time_if_expression] = STATE(1320), + [sym_is_expression] = STATE(1319), + [sym_in_expression] = STATE(1319), + [sym_enum_fetch] = STATE(1319), + [sym_match_expression] = STATE(1320), + [sym_select_expression] = STATE(1320), + [sym_lock_expression] = STATE(1320), + [sym_unsafe_expression] = STATE(1320), + [sym_sql_expression] = STATE(1320), + [sym_c_string_literal] = STATE(1291), + [sym_raw_string_literal] = STATE(1291), + [sym_interpreted_string_literal] = STATE(1291), + [sym_mutability_modifiers] = STATE(639), + [sym_plain_type] = STATE(4307), + [sym__plain_type_without_special] = STATE(2360), + [sym_anon_struct_type] = STATE(2362), + [sym_multi_return_type] = STATE(2360), + [sym_result_type] = STATE(2360), + [sym_option_type] = STATE(2360), + [sym_qualified_type] = STATE(3460), + [sym_fixed_array_type] = STATE(2362), + [sym_array_type] = STATE(2362), + [sym_pointer_type] = STATE(2362), + [sym_wrong_pointer_type] = STATE(2362), + [sym_map_type] = STATE(2362), + [sym_channel_type] = STATE(2362), + [sym_shared_type] = STATE(2362), + [sym_thread_type] = STATE(2362), + [sym_atomic_type] = STATE(2362), + [sym_generic_type] = STATE(2362), + [sym_function_type] = STATE(2362), + [aux_sym__array_repeat1] = STATE(405), + [sym_identifier] = ACTIONS(1360), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1428), - [anon_sym_LBRACE] = ACTIONS(1430), - [anon_sym_LPAREN] = ACTIONS(1432), - [anon_sym_fn] = ACTIONS(1434), - [anon_sym_PLUS] = ACTIONS(1436), - [anon_sym_DASH] = ACTIONS(1436), - [anon_sym_STAR] = ACTIONS(2137), - [anon_sym_struct] = ACTIONS(1440), + [anon_sym_DOT] = ACTIONS(1362), + [anon_sym_LBRACE] = ACTIONS(1364), + [anon_sym_LPAREN] = ACTIONS(1366), + [anon_sym_fn] = ACTIONS(1368), + [anon_sym_PLUS] = ACTIONS(1370), + [anon_sym_DASH] = ACTIONS(1370), + [anon_sym_STAR] = ACTIONS(1372), + [anon_sym_RBRACK] = ACTIONS(3064), + [anon_sym_struct] = ACTIONS(1376), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(2139), - [anon_sym_go] = ACTIONS(1444), - [anon_sym_spawn] = ACTIONS(1446), - [anon_sym_json_DOTdecode] = ACTIONS(1448), - [anon_sym_LBRACK2] = ACTIONS(1450), - [anon_sym_TILDE] = ACTIONS(1436), - [anon_sym_CARET] = ACTIONS(1436), - [anon_sym_AMP] = ACTIONS(2141), - [anon_sym_LT_DASH] = ACTIONS(1454), - [sym_none] = ACTIONS(1456), - [sym_true] = ACTIONS(1456), - [sym_false] = ACTIONS(1456), - [sym_nil] = ACTIONS(1456), - [anon_sym_if] = ACTIONS(1827), - [anon_sym_DOLLARif] = ACTIONS(1460), - [anon_sym_match] = ACTIONS(1462), - [anon_sym_select] = ACTIONS(1464), - [anon_sym_lock] = ACTIONS(1466), - [anon_sym_rlock] = ACTIONS(1466), - [anon_sym_unsafe] = ACTIONS(1833), - [anon_sym_sql] = ACTIONS(1470), - [sym_int_literal] = ACTIONS(1456), - [sym_float_literal] = ACTIONS(1472), - [sym_rune_literal] = ACTIONS(1472), - [sym_pseudo_compile_time_identifier] = ACTIONS(1474), + [anon_sym_BANG] = ACTIONS(1378), + [anon_sym_go] = ACTIONS(1380), + [anon_sym_spawn] = ACTIONS(1382), + [anon_sym_json_DOTdecode] = ACTIONS(1384), + [anon_sym_LBRACK2] = ACTIONS(1386), + [anon_sym_TILDE] = ACTIONS(1370), + [anon_sym_CARET] = ACTIONS(1370), + [anon_sym_AMP] = ACTIONS(1388), + [anon_sym_LT_DASH] = ACTIONS(1390), + [sym_none] = ACTIONS(1392), + [sym_true] = ACTIONS(1392), + [sym_false] = ACTIONS(1392), + [sym_nil] = ACTIONS(1392), + [anon_sym_if] = ACTIONS(1865), + [anon_sym_DOLLARif] = ACTIONS(1396), + [anon_sym_match] = ACTIONS(1398), + [anon_sym_select] = ACTIONS(1400), + [anon_sym_lock] = ACTIONS(1402), + [anon_sym_rlock] = ACTIONS(1402), + [anon_sym_unsafe] = ACTIONS(1871), + [anon_sym_sql] = ACTIONS(1406), + [sym_int_literal] = ACTIONS(1392), + [sym_float_literal] = ACTIONS(1410), + [sym_rune_literal] = ACTIONS(1410), + [sym_pseudo_compile_time_identifier] = ACTIONS(1412), [anon_sym_shared] = ACTIONS(83), [anon_sym_map_LBRACK] = ACTIONS(85), [anon_sym_chan] = ACTIONS(87), [anon_sym_thread] = ACTIONS(89), [anon_sym_atomic] = ACTIONS(91), - [anon_sym_DOT_DOT] = ACTIONS(1476), - [sym___double_quote] = ACTIONS(1478), - [sym___single_quote] = ACTIONS(1480), - [sym___c_double_quote] = ACTIONS(1482), - [sym___c_single_quote] = ACTIONS(1484), - [sym___r_double_quote] = ACTIONS(1486), - [sym___r_single_quote] = ACTIONS(1488), + [sym___double_quote] = ACTIONS(1414), + [sym___single_quote] = ACTIONS(1416), + [sym___c_double_quote] = ACTIONS(1418), + [sym___c_single_quote] = ACTIONS(1420), + [sym___r_double_quote] = ACTIONS(1422), + [sym___r_single_quote] = ACTIONS(1424), }, [503] = { [sym_line_comment] = STATE(503), [sym_block_comment] = STATE(503), - [sym__expression] = STATE(2629), - [sym__expression_without_blocks] = STATE(2300), - [sym__expression_with_blocks] = STATE(2300), - [sym_inc_expression] = STATE(2307), - [sym_dec_expression] = STATE(2307), - [sym_or_block_expression] = STATE(2307), - [sym_option_propagation_expression] = STATE(2307), - [sym_result_propagation_expression] = STATE(2307), - [sym_anon_struct_value_expression] = STATE(2380), - [sym_go_expression] = STATE(2307), - [sym_spawn_expression] = STATE(2307), - [sym_parenthesized_expression] = STATE(2307), - [sym_call_expression] = STATE(2307), - [sym_type_initializer] = STATE(2380), - [sym_function_literal] = STATE(2307), - [sym_reference_expression] = STATE(2311), - [sym_type_reference_expression] = STATE(3541), - [sym_unary_expression] = STATE(2307), - [sym_receive_expression] = STATE(2307), - [sym_binary_expression] = STATE(2307), - [sym_as_type_cast_expression] = STATE(2307), - [sym__max_group] = STATE(2307), - [sym_literal] = STATE(2292), - [sym_map_init_expression] = STATE(2380), - [sym_array_creation] = STATE(2307), - [sym_fixed_array_creation] = STATE(2307), - [sym_selector_expression] = STATE(2307), - [sym_index_expression] = STATE(2307), - [sym_slice_expression] = STATE(2307), - [sym_if_expression] = STATE(2380), - [sym_compile_time_if_expression] = STATE(2380), - [sym_is_expression] = STATE(2307), - [sym_in_expression] = STATE(2307), - [sym_enum_fetch] = STATE(2307), - [sym_match_expression] = STATE(2380), - [sym_select_expression] = STATE(2380), - [sym_lock_expression] = STATE(2380), - [sym_unsafe_expression] = STATE(2380), - [sym_sql_expression] = STATE(2380), - [sym_c_string_literal] = STATE(2308), - [sym_raw_string_literal] = STATE(2308), - [sym_interpreted_string_literal] = STATE(2308), - [sym_mutability_modifiers] = STATE(944), - [sym_mutable_expression] = STATE(4377), - [sym_plain_type] = STATE(4297), - [sym__plain_type_without_special] = STATE(2302), - [sym_anon_struct_type] = STATE(2303), - [sym_multi_return_type] = STATE(2302), - [sym_result_type] = STATE(2302), - [sym_option_type] = STATE(2302), - [sym_qualified_type] = STATE(3541), - [sym_fixed_array_type] = STATE(2303), - [sym_array_type] = STATE(2303), - [sym_pointer_type] = STATE(2303), - [sym_wrong_pointer_type] = STATE(2303), - [sym_map_type] = STATE(2303), - [sym_channel_type] = STATE(2303), - [sym_shared_type] = STATE(2303), - [sym_thread_type] = STATE(2303), - [sym_atomic_type] = STATE(2303), - [sym_generic_type] = STATE(2303), - [sym_function_type] = STATE(2303), - [sym_identifier] = ACTIONS(1807), - [anon_sym_SLASH_SLASH] = ACTIONS(3), - [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1428), - [anon_sym_LBRACE] = ACTIONS(1430), - [anon_sym_LPAREN] = ACTIONS(1432), - [anon_sym_fn] = ACTIONS(1434), - [anon_sym_PLUS] = ACTIONS(3064), - [anon_sym_DASH] = ACTIONS(3064), - [anon_sym_STAR] = ACTIONS(3066), - [anon_sym_struct] = ACTIONS(1440), - [anon_sym_mut] = ACTIONS(41), - [anon_sym_QMARK] = ACTIONS(47), + [ts_builtin_sym_end] = ACTIONS(3066), + [sym_identifier] = ACTIONS(3068), + [anon_sym_LF] = ACTIONS(3068), + [anon_sym_CR] = ACTIONS(3068), + [anon_sym_CR_LF] = ACTIONS(3068), + [anon_sym_SLASH_SLASH] = ACTIONS(497), + [anon_sym_SLASH_STAR] = ACTIONS(499), + [anon_sym_DOT] = ACTIONS(3068), + [anon_sym_as] = ACTIONS(3068), + [anon_sym_LBRACE] = ACTIONS(3068), + [anon_sym_COMMA] = ACTIONS(3068), + [anon_sym_const] = ACTIONS(3068), + [anon_sym_LPAREN] = ACTIONS(3068), + [anon_sym_EQ] = ACTIONS(3068), + [anon_sym___global] = ACTIONS(3068), + [anon_sym_type] = ACTIONS(3068), + [anon_sym_PIPE] = ACTIONS(3068), + [anon_sym_fn] = ACTIONS(3068), + [anon_sym_PLUS] = ACTIONS(3068), + [anon_sym_DASH] = ACTIONS(3068), + [anon_sym_STAR] = ACTIONS(3068), + [anon_sym_SLASH] = ACTIONS(3068), + [anon_sym_PERCENT] = ACTIONS(3068), + [anon_sym_LT] = ACTIONS(3068), + [anon_sym_GT] = ACTIONS(3068), + [anon_sym_EQ_EQ] = ACTIONS(3068), + [anon_sym_BANG_EQ] = ACTIONS(3068), + [anon_sym_LT_EQ] = ACTIONS(3068), + [anon_sym_GT_EQ] = ACTIONS(3068), + [anon_sym_LBRACK] = ACTIONS(3066), + [anon_sym_struct] = ACTIONS(3068), + [anon_sym_union] = ACTIONS(3068), + [anon_sym_pub] = ACTIONS(3068), + [anon_sym_mut] = ACTIONS(3068), + [anon_sym_enum] = ACTIONS(3068), + [anon_sym_interface] = ACTIONS(3068), + [anon_sym_PLUS_PLUS] = ACTIONS(3068), + [anon_sym_DASH_DASH] = ACTIONS(3068), + [anon_sym_QMARK] = ACTIONS(3068), [anon_sym_BANG] = ACTIONS(3068), - [anon_sym_go] = ACTIONS(3070), - [anon_sym_spawn] = ACTIONS(3072), - [anon_sym_json_DOTdecode] = ACTIONS(1448), - [anon_sym_LBRACK2] = ACTIONS(1821), - [anon_sym_TILDE] = ACTIONS(3064), - [anon_sym_CARET] = ACTIONS(3064), - [anon_sym_AMP] = ACTIONS(3074), - [anon_sym_LT_DASH] = ACTIONS(3076), - [sym_none] = ACTIONS(1456), - [sym_true] = ACTIONS(1456), - [sym_false] = ACTIONS(1456), - [sym_nil] = ACTIONS(1456), - [anon_sym_if] = ACTIONS(1827), - [anon_sym_DOLLARif] = ACTIONS(1460), - [anon_sym_match] = ACTIONS(1462), - [anon_sym_select] = ACTIONS(3078), - [anon_sym_lock] = ACTIONS(3080), - [anon_sym_rlock] = ACTIONS(3080), - [anon_sym_unsafe] = ACTIONS(1833), - [anon_sym_sql] = ACTIONS(1470), - [sym_int_literal] = ACTIONS(1456), - [sym_float_literal] = ACTIONS(1472), - [sym_rune_literal] = ACTIONS(1472), - [sym_pseudo_compile_time_identifier] = ACTIONS(1474), - [anon_sym_shared] = ACTIONS(83), - [anon_sym_map_LBRACK] = ACTIONS(85), - [anon_sym_chan] = ACTIONS(87), - [anon_sym_thread] = ACTIONS(89), - [anon_sym_atomic] = ACTIONS(91), - [sym___double_quote] = ACTIONS(1478), - [sym___single_quote] = ACTIONS(1480), - [sym___c_double_quote] = ACTIONS(1482), - [sym___c_single_quote] = ACTIONS(1484), - [sym___r_double_quote] = ACTIONS(1486), - [sym___r_single_quote] = ACTIONS(1488), + [anon_sym_go] = ACTIONS(3068), + [anon_sym_spawn] = ACTIONS(3068), + [anon_sym_json_DOTdecode] = ACTIONS(3068), + [anon_sym_LBRACK2] = ACTIONS(3068), + [anon_sym_TILDE] = ACTIONS(3068), + [anon_sym_CARET] = ACTIONS(3068), + [anon_sym_AMP] = ACTIONS(3068), + [anon_sym_LT_DASH] = ACTIONS(3068), + [anon_sym_LT_LT] = ACTIONS(3068), + [anon_sym_GT_GT] = ACTIONS(3068), + [anon_sym_GT_GT_GT] = ACTIONS(3068), + [anon_sym_AMP_CARET] = ACTIONS(3068), + [anon_sym_AMP_AMP] = ACTIONS(3068), + [anon_sym_PIPE_PIPE] = ACTIONS(3068), + [anon_sym_or] = ACTIONS(3068), + [sym_none] = ACTIONS(3068), + [sym_true] = ACTIONS(3068), + [sym_false] = ACTIONS(3068), + [sym_nil] = ACTIONS(3068), + [anon_sym_QMARK_DOT] = ACTIONS(3068), + [anon_sym_POUND_LBRACK] = ACTIONS(3068), + [anon_sym_if] = ACTIONS(3068), + [anon_sym_DOLLARif] = ACTIONS(3068), + [anon_sym_is] = ACTIONS(3068), + [anon_sym_BANGis] = ACTIONS(3068), + [anon_sym_in] = ACTIONS(3068), + [anon_sym_BANGin] = ACTIONS(3068), + [anon_sym_match] = ACTIONS(3068), + [anon_sym_select] = ACTIONS(3068), + [anon_sym_STAR_EQ] = ACTIONS(3068), + [anon_sym_SLASH_EQ] = ACTIONS(3068), + [anon_sym_PERCENT_EQ] = ACTIONS(3068), + [anon_sym_LT_LT_EQ] = ACTIONS(3068), + [anon_sym_GT_GT_EQ] = ACTIONS(3068), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(3068), + [anon_sym_AMP_EQ] = ACTIONS(3068), + [anon_sym_AMP_CARET_EQ] = ACTIONS(3068), + [anon_sym_PLUS_EQ] = ACTIONS(3068), + [anon_sym_DASH_EQ] = ACTIONS(3068), + [anon_sym_PIPE_EQ] = ACTIONS(3068), + [anon_sym_CARET_EQ] = ACTIONS(3068), + [anon_sym_COLON_EQ] = ACTIONS(3068), + [anon_sym_lock] = ACTIONS(3068), + [anon_sym_rlock] = ACTIONS(3068), + [anon_sym_unsafe] = ACTIONS(3068), + [anon_sym_sql] = ACTIONS(3068), + [sym_int_literal] = ACTIONS(3068), + [sym_float_literal] = ACTIONS(3068), + [sym_rune_literal] = ACTIONS(3068), + [sym_pseudo_compile_time_identifier] = ACTIONS(3068), + [anon_sym_shared] = ACTIONS(3068), + [anon_sym_map_LBRACK] = ACTIONS(3068), + [anon_sym_chan] = ACTIONS(3068), + [anon_sym_thread] = ACTIONS(3068), + [anon_sym_atomic] = ACTIONS(3068), + [anon_sym_assert] = ACTIONS(3068), + [anon_sym_defer] = ACTIONS(3068), + [anon_sym_goto] = ACTIONS(3068), + [anon_sym_break] = ACTIONS(3068), + [anon_sym_continue] = ACTIONS(3068), + [anon_sym_return] = ACTIONS(3068), + [anon_sym_DOLLARfor] = ACTIONS(3068), + [anon_sym_for] = ACTIONS(3068), + [anon_sym_POUND] = ACTIONS(3068), + [anon_sym_asm] = ACTIONS(3068), + [anon_sym_AT_LBRACK] = ACTIONS(3068), + [sym___double_quote] = ACTIONS(3068), + [sym___single_quote] = ACTIONS(3068), + [sym___c_double_quote] = ACTIONS(3068), + [sym___c_single_quote] = ACTIONS(3068), + [sym___r_double_quote] = ACTIONS(3068), + [sym___r_single_quote] = ACTIONS(3068), }, [504] = { [sym_line_comment] = STATE(504), [sym_block_comment] = STATE(504), - [sym__expression] = STATE(2762), - [sym__expression_without_blocks] = STATE(2300), - [sym__expression_with_blocks] = STATE(2300), - [sym_inc_expression] = STATE(2307), - [sym_dec_expression] = STATE(2307), - [sym_or_block_expression] = STATE(2307), - [sym_option_propagation_expression] = STATE(2307), - [sym_result_propagation_expression] = STATE(2307), - [sym_anon_struct_value_expression] = STATE(2380), - [sym_go_expression] = STATE(2307), - [sym_spawn_expression] = STATE(2307), - [sym_parenthesized_expression] = STATE(2307), - [sym_call_expression] = STATE(2307), - [sym_type_initializer] = STATE(2380), - [sym_function_literal] = STATE(2307), - [sym_reference_expression] = STATE(2311), - [sym_type_reference_expression] = STATE(3541), - [sym_unary_expression] = STATE(2307), - [sym_receive_expression] = STATE(2307), - [sym_binary_expression] = STATE(2307), - [sym_as_type_cast_expression] = STATE(2307), - [sym__max_group] = STATE(2307), - [sym_literal] = STATE(2292), - [sym_map_init_expression] = STATE(2380), - [sym_array_creation] = STATE(2307), - [sym_fixed_array_creation] = STATE(2307), - [sym_selector_expression] = STATE(2307), - [sym_index_expression] = STATE(2307), - [sym_slice_expression] = STATE(2307), - [sym_if_expression] = STATE(2380), - [sym_compile_time_if_expression] = STATE(2380), - [sym_is_expression] = STATE(2307), - [sym_in_expression] = STATE(2307), - [sym_enum_fetch] = STATE(2307), - [sym_match_expression] = STATE(2380), - [sym_select_expression] = STATE(2380), - [sym_lock_expression] = STATE(2380), - [sym_unsafe_expression] = STATE(2380), - [sym_sql_expression] = STATE(2380), - [sym_c_string_literal] = STATE(2308), - [sym_raw_string_literal] = STATE(2308), - [sym_interpreted_string_literal] = STATE(2308), - [sym_mutability_modifiers] = STATE(944), - [sym_mutable_expression] = STATE(4394), - [sym_plain_type] = STATE(4297), - [sym__plain_type_without_special] = STATE(2302), - [sym_anon_struct_type] = STATE(2303), - [sym_multi_return_type] = STATE(2302), - [sym_result_type] = STATE(2302), - [sym_option_type] = STATE(2302), - [sym_qualified_type] = STATE(3541), - [sym_fixed_array_type] = STATE(2303), - [sym_array_type] = STATE(2303), - [sym_pointer_type] = STATE(2303), - [sym_wrong_pointer_type] = STATE(2303), - [sym_map_type] = STATE(2303), - [sym_channel_type] = STATE(2303), - [sym_shared_type] = STATE(2303), - [sym_thread_type] = STATE(2303), - [sym_atomic_type] = STATE(2303), - [sym_generic_type] = STATE(2303), - [sym_function_type] = STATE(2303), - [sym_identifier] = ACTIONS(1807), + [sym__expression] = STATE(2526), + [sym__expression_without_blocks] = STATE(2638), + [sym__expression_with_blocks] = STATE(2638), + [sym_inc_expression] = STATE(2765), + [sym_dec_expression] = STATE(2765), + [sym_or_block_expression] = STATE(2765), + [sym_option_propagation_expression] = STATE(2765), + [sym_result_propagation_expression] = STATE(2765), + [sym_anon_struct_value_expression] = STATE(2637), + [sym_go_expression] = STATE(2765), + [sym_spawn_expression] = STATE(2765), + [sym_parenthesized_expression] = STATE(2765), + [sym_call_expression] = STATE(2765), + [sym_type_initializer] = STATE(2637), + [sym_function_literal] = STATE(2765), + [sym_reference_expression] = STATE(2764), + [sym_type_reference_expression] = STATE(3460), + [sym_unary_expression] = STATE(2765), + [sym_receive_expression] = STATE(2765), + [sym_binary_expression] = STATE(2765), + [sym_as_type_cast_expression] = STATE(2765), + [sym__max_group] = STATE(2765), + [sym_literal] = STATE(2771), + [sym_map_init_expression] = STATE(2637), + [sym_array_creation] = STATE(2765), + [sym_fixed_array_creation] = STATE(2765), + [sym_selector_expression] = STATE(2765), + [sym_index_expression] = STATE(2765), + [sym_slice_expression] = STATE(2765), + [sym_if_expression] = STATE(2637), + [sym_compile_time_if_expression] = STATE(2637), + [sym_is_expression] = STATE(2765), + [sym_in_expression] = STATE(2765), + [sym_enum_fetch] = STATE(2765), + [sym_match_expression] = STATE(2637), + [sym_select_expression] = STATE(2637), + [sym_lock_expression] = STATE(2637), + [sym_unsafe_expression] = STATE(2637), + [sym_sql_expression] = STATE(2637), + [sym_c_string_literal] = STATE(2762), + [sym_raw_string_literal] = STATE(2762), + [sym_interpreted_string_literal] = STATE(2762), + [sym_mutability_modifiers] = STATE(822), + [sym_plain_type] = STATE(4011), + [sym__plain_type_without_special] = STATE(2360), + [sym_anon_struct_type] = STATE(2362), + [sym_multi_return_type] = STATE(2360), + [sym_result_type] = STATE(2360), + [sym_option_type] = STATE(2360), + [sym_qualified_type] = STATE(3460), + [sym_fixed_array_type] = STATE(2362), + [sym_array_type] = STATE(2362), + [sym_pointer_type] = STATE(2362), + [sym_wrong_pointer_type] = STATE(2362), + [sym_map_type] = STATE(2362), + [sym_channel_type] = STATE(2362), + [sym_shared_type] = STATE(2362), + [sym_thread_type] = STATE(2362), + [sym_atomic_type] = STATE(2362), + [sym_generic_type] = STATE(2362), + [sym_function_type] = STATE(2362), + [sym__definite_range] = STATE(4367), + [sym_identifier] = ACTIONS(1815), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1428), - [anon_sym_LBRACE] = ACTIONS(1430), - [anon_sym_LPAREN] = ACTIONS(1432), - [anon_sym_fn] = ACTIONS(1434), - [anon_sym_PLUS] = ACTIONS(3064), - [anon_sym_DASH] = ACTIONS(3064), - [anon_sym_STAR] = ACTIONS(3066), - [anon_sym_struct] = ACTIONS(1440), + [anon_sym_DOT] = ACTIONS(1073), + [anon_sym_LBRACE] = ACTIONS(1075), + [anon_sym_LPAREN] = ACTIONS(1079), + [anon_sym_fn] = ACTIONS(1081), + [anon_sym_PLUS] = ACTIONS(3070), + [anon_sym_DASH] = ACTIONS(3070), + [anon_sym_STAR] = ACTIONS(3072), + [anon_sym_struct] = ACTIONS(1087), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(3068), - [anon_sym_go] = ACTIONS(3070), - [anon_sym_spawn] = ACTIONS(3072), - [anon_sym_json_DOTdecode] = ACTIONS(1448), - [anon_sym_LBRACK2] = ACTIONS(1821), - [anon_sym_TILDE] = ACTIONS(3064), - [anon_sym_CARET] = ACTIONS(3064), - [anon_sym_AMP] = ACTIONS(3074), - [anon_sym_LT_DASH] = ACTIONS(3076), - [sym_none] = ACTIONS(1456), - [sym_true] = ACTIONS(1456), - [sym_false] = ACTIONS(1456), - [sym_nil] = ACTIONS(1456), - [anon_sym_if] = ACTIONS(1827), - [anon_sym_DOLLARif] = ACTIONS(1460), - [anon_sym_match] = ACTIONS(1462), - [anon_sym_select] = ACTIONS(3078), - [anon_sym_lock] = ACTIONS(3080), - [anon_sym_rlock] = ACTIONS(3080), - [anon_sym_unsafe] = ACTIONS(1833), - [anon_sym_sql] = ACTIONS(1470), - [sym_int_literal] = ACTIONS(1456), - [sym_float_literal] = ACTIONS(1472), - [sym_rune_literal] = ACTIONS(1472), - [sym_pseudo_compile_time_identifier] = ACTIONS(1474), + [anon_sym_BANG] = ACTIONS(3074), + [anon_sym_go] = ACTIONS(3076), + [anon_sym_spawn] = ACTIONS(3078), + [anon_sym_json_DOTdecode] = ACTIONS(1095), + [anon_sym_LBRACK2] = ACTIONS(1097), + [anon_sym_TILDE] = ACTIONS(3070), + [anon_sym_CARET] = ACTIONS(3070), + [anon_sym_AMP] = ACTIONS(3080), + [anon_sym_LT_DASH] = ACTIONS(3082), + [sym_none] = ACTIONS(1103), + [sym_true] = ACTIONS(1103), + [sym_false] = ACTIONS(1103), + [sym_nil] = ACTIONS(1103), + [anon_sym_if] = ACTIONS(1105), + [anon_sym_DOLLARif] = ACTIONS(1109), + [anon_sym_match] = ACTIONS(1111), + [anon_sym_select] = ACTIONS(3084), + [anon_sym_lock] = ACTIONS(3086), + [anon_sym_rlock] = ACTIONS(3086), + [anon_sym_unsafe] = ACTIONS(1117), + [anon_sym_sql] = ACTIONS(1119), + [sym_int_literal] = ACTIONS(1103), + [sym_float_literal] = ACTIONS(1121), + [sym_rune_literal] = ACTIONS(1121), + [sym_pseudo_compile_time_identifier] = ACTIONS(1123), [anon_sym_shared] = ACTIONS(83), [anon_sym_map_LBRACK] = ACTIONS(85), [anon_sym_chan] = ACTIONS(87), [anon_sym_thread] = ACTIONS(89), [anon_sym_atomic] = ACTIONS(91), - [sym___double_quote] = ACTIONS(1478), - [sym___single_quote] = ACTIONS(1480), - [sym___c_double_quote] = ACTIONS(1482), - [sym___c_single_quote] = ACTIONS(1484), - [sym___r_double_quote] = ACTIONS(1486), - [sym___r_single_quote] = ACTIONS(1488), + [sym___double_quote] = ACTIONS(1125), + [sym___single_quote] = ACTIONS(1127), + [sym___c_double_quote] = ACTIONS(1129), + [sym___c_single_quote] = ACTIONS(1131), + [sym___r_double_quote] = ACTIONS(1133), + [sym___r_single_quote] = ACTIONS(1135), }, [505] = { [sym_line_comment] = STATE(505), [sym_block_comment] = STATE(505), - [sym__expression] = STATE(2831), - [sym__expression_without_blocks] = STATE(2300), - [sym__expression_with_blocks] = STATE(2300), - [sym_inc_expression] = STATE(2307), - [sym_dec_expression] = STATE(2307), - [sym_or_block_expression] = STATE(2307), - [sym_option_propagation_expression] = STATE(2307), - [sym_result_propagation_expression] = STATE(2307), - [sym_anon_struct_value_expression] = STATE(2380), - [sym_go_expression] = STATE(2307), - [sym_spawn_expression] = STATE(2307), - [sym_parenthesized_expression] = STATE(2307), - [sym_call_expression] = STATE(2307), - [sym_type_initializer] = STATE(2380), - [sym_function_literal] = STATE(2307), - [sym_reference_expression] = STATE(2893), - [sym_type_reference_expression] = STATE(3541), - [sym_unary_expression] = STATE(2307), - [sym_receive_expression] = STATE(2307), - [sym_binary_expression] = STATE(2307), - [sym_as_type_cast_expression] = STATE(2307), - [sym__max_group] = STATE(2307), - [sym_literal] = STATE(2292), - [sym_map_init_expression] = STATE(2380), - [sym_array_creation] = STATE(2307), - [sym_fixed_array_creation] = STATE(2307), - [sym_selector_expression] = STATE(2938), - [sym_index_expression] = STATE(2307), - [sym_slice_expression] = STATE(2307), - [sym_if_expression] = STATE(2380), - [sym_compile_time_if_expression] = STATE(2380), - [sym_is_expression] = STATE(2307), - [sym_in_expression] = STATE(2307), - [sym_enum_fetch] = STATE(2307), - [sym_match_expression] = STATE(2380), - [sym_select_expression] = STATE(2380), - [sym_lock_expression] = STATE(2380), - [sym_unsafe_expression] = STATE(2380), - [sym_sql_expression] = STATE(2380), - [sym_c_string_literal] = STATE(2308), - [sym_raw_string_literal] = STATE(2308), - [sym_interpreted_string_literal] = STATE(2308), + [sym__expression] = STATE(2752), + [sym__expression_without_blocks] = STATE(2347), + [sym__expression_with_blocks] = STATE(2347), + [sym_inc_expression] = STATE(2379), + [sym_dec_expression] = STATE(2379), + [sym_or_block_expression] = STATE(2379), + [sym_option_propagation_expression] = STATE(2379), + [sym_result_propagation_expression] = STATE(2379), + [sym_anon_struct_value_expression] = STATE(2378), + [sym_go_expression] = STATE(2379), + [sym_spawn_expression] = STATE(2379), + [sym_parenthesized_expression] = STATE(2379), + [sym_call_expression] = STATE(2379), + [sym_type_initializer] = STATE(2378), + [sym_function_literal] = STATE(2379), + [sym_reference_expression] = STATE(2377), + [sym_type_reference_expression] = STATE(3460), + [sym_unary_expression] = STATE(2379), + [sym_receive_expression] = STATE(2379), + [sym_binary_expression] = STATE(2379), + [sym_as_type_cast_expression] = STATE(2379), + [sym__max_group] = STATE(2379), + [sym_literal] = STATE(2392), + [sym_map_init_expression] = STATE(2378), + [sym_array_creation] = STATE(2379), + [sym_fixed_array_creation] = STATE(2379), + [sym_selector_expression] = STATE(2379), + [sym_index_expression] = STATE(2379), + [sym_slice_expression] = STATE(2379), + [sym_if_expression] = STATE(2378), + [sym_compile_time_if_expression] = STATE(2378), + [sym_is_expression] = STATE(2379), + [sym_in_expression] = STATE(2379), + [sym_enum_fetch] = STATE(2379), + [sym_match_expression] = STATE(2378), + [sym_select_expression] = STATE(2378), + [sym_lock_expression] = STATE(2378), + [sym_unsafe_expression] = STATE(2378), + [sym_sql_expression] = STATE(2378), + [sym_c_string_literal] = STATE(2401), + [sym_raw_string_literal] = STATE(2401), + [sym_interpreted_string_literal] = STATE(2401), [sym_mutability_modifiers] = STATE(939), - [sym_plain_type] = STATE(4297), - [sym__plain_type_without_special] = STATE(2302), - [sym_anon_struct_type] = STATE(2303), - [sym_multi_return_type] = STATE(2302), - [sym_result_type] = STATE(2302), - [sym_option_type] = STATE(2302), - [sym_qualified_type] = STATE(3541), - [sym_fixed_array_type] = STATE(2303), - [sym_array_type] = STATE(2303), - [sym_pointer_type] = STATE(2303), - [sym_wrong_pointer_type] = STATE(2303), - [sym_map_type] = STATE(2303), - [sym_channel_type] = STATE(2303), - [sym_shared_type] = STATE(2303), - [sym_thread_type] = STATE(2303), - [sym_atomic_type] = STATE(2303), - [sym_generic_type] = STATE(2303), - [sym_function_type] = STATE(2303), - [sym_identifier] = ACTIONS(1426), + [sym_plain_type] = STATE(4160), + [sym__plain_type_without_special] = STATE(2360), + [sym_anon_struct_type] = STATE(2362), + [sym_multi_return_type] = STATE(2360), + [sym_result_type] = STATE(2360), + [sym_option_type] = STATE(2360), + [sym_qualified_type] = STATE(3460), + [sym_fixed_array_type] = STATE(2362), + [sym_array_type] = STATE(2362), + [sym_pointer_type] = STATE(2362), + [sym_wrong_pointer_type] = STATE(2362), + [sym_map_type] = STATE(2362), + [sym_channel_type] = STATE(2362), + [sym_shared_type] = STATE(2362), + [sym_thread_type] = STATE(2362), + [sym_atomic_type] = STATE(2362), + [sym_generic_type] = STATE(2362), + [sym_function_type] = STATE(2362), + [sym_identifier] = ACTIONS(1428), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1428), - [anon_sym_LBRACE] = ACTIONS(1430), - [anon_sym_LPAREN] = ACTIONS(1432), - [anon_sym_fn] = ACTIONS(1434), - [anon_sym_PLUS] = ACTIONS(1436), - [anon_sym_DASH] = ACTIONS(1436), - [anon_sym_STAR] = ACTIONS(1438), - [anon_sym_RBRACK] = ACTIONS(3082), - [anon_sym_struct] = ACTIONS(1440), + [anon_sym_SEMI] = ACTIONS(3088), + [anon_sym_DOT] = ACTIONS(1430), + [anon_sym_LBRACE] = ACTIONS(1432), + [anon_sym_LPAREN] = ACTIONS(1434), + [anon_sym_fn] = ACTIONS(1436), + [anon_sym_PLUS] = ACTIONS(1438), + [anon_sym_DASH] = ACTIONS(1438), + [anon_sym_STAR] = ACTIONS(1440), + [anon_sym_struct] = ACTIONS(1442), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(1442), - [anon_sym_go] = ACTIONS(1444), - [anon_sym_spawn] = ACTIONS(1446), - [anon_sym_json_DOTdecode] = ACTIONS(1448), - [anon_sym_LBRACK2] = ACTIONS(1450), - [anon_sym_TILDE] = ACTIONS(1436), - [anon_sym_CARET] = ACTIONS(1436), - [anon_sym_AMP] = ACTIONS(1452), - [anon_sym_LT_DASH] = ACTIONS(1454), - [sym_none] = ACTIONS(1456), - [sym_true] = ACTIONS(1456), - [sym_false] = ACTIONS(1456), - [sym_nil] = ACTIONS(1456), - [anon_sym_if] = ACTIONS(1827), - [anon_sym_DOLLARif] = ACTIONS(1460), - [anon_sym_match] = ACTIONS(1462), - [anon_sym_select] = ACTIONS(1464), - [anon_sym_lock] = ACTIONS(1466), - [anon_sym_rlock] = ACTIONS(1466), - [anon_sym_unsafe] = ACTIONS(1833), - [anon_sym_sql] = ACTIONS(1470), - [sym_int_literal] = ACTIONS(3084), - [sym_float_literal] = ACTIONS(1472), - [sym_rune_literal] = ACTIONS(1472), - [sym_pseudo_compile_time_identifier] = ACTIONS(1474), + [anon_sym_BANG] = ACTIONS(1444), + [anon_sym_go] = ACTIONS(1446), + [anon_sym_spawn] = ACTIONS(1448), + [anon_sym_json_DOTdecode] = ACTIONS(1450), + [anon_sym_LBRACK2] = ACTIONS(1452), + [anon_sym_TILDE] = ACTIONS(1438), + [anon_sym_CARET] = ACTIONS(1438), + [anon_sym_AMP] = ACTIONS(1454), + [anon_sym_LT_DASH] = ACTIONS(1456), + [sym_none] = ACTIONS(1458), + [sym_true] = ACTIONS(1458), + [sym_false] = ACTIONS(1458), + [sym_nil] = ACTIONS(1458), + [anon_sym_if] = ACTIONS(1833), + [anon_sym_DOLLARif] = ACTIONS(1462), + [anon_sym_match] = ACTIONS(1464), + [anon_sym_select] = ACTIONS(1466), + [anon_sym_lock] = ACTIONS(1468), + [anon_sym_rlock] = ACTIONS(1468), + [anon_sym_unsafe] = ACTIONS(1839), + [anon_sym_sql] = ACTIONS(1472), + [sym_int_literal] = ACTIONS(1458), + [sym_float_literal] = ACTIONS(1474), + [sym_rune_literal] = ACTIONS(1474), + [sym_pseudo_compile_time_identifier] = ACTIONS(1476), [anon_sym_shared] = ACTIONS(83), [anon_sym_map_LBRACK] = ACTIONS(85), [anon_sym_chan] = ACTIONS(87), [anon_sym_thread] = ACTIONS(89), [anon_sym_atomic] = ACTIONS(91), - [sym___double_quote] = ACTIONS(1478), - [sym___single_quote] = ACTIONS(1480), - [sym___c_double_quote] = ACTIONS(1482), - [sym___c_single_quote] = ACTIONS(1484), - [sym___r_double_quote] = ACTIONS(1486), - [sym___r_single_quote] = ACTIONS(1488), + [sym___double_quote] = ACTIONS(1480), + [sym___single_quote] = ACTIONS(1482), + [sym___c_double_quote] = ACTIONS(1484), + [sym___c_single_quote] = ACTIONS(1486), + [sym___r_double_quote] = ACTIONS(1488), + [sym___r_single_quote] = ACTIONS(1490), }, [506] = { [sym_line_comment] = STATE(506), [sym_block_comment] = STATE(506), - [sym__expression] = STATE(2708), - [sym__expression_without_blocks] = STATE(2300), - [sym__expression_with_blocks] = STATE(2300), - [sym_inc_expression] = STATE(2307), - [sym_dec_expression] = STATE(2307), - [sym_or_block_expression] = STATE(2307), - [sym_option_propagation_expression] = STATE(2307), - [sym_result_propagation_expression] = STATE(2307), - [sym_anon_struct_value_expression] = STATE(2380), - [sym_go_expression] = STATE(2307), - [sym_spawn_expression] = STATE(2307), - [sym_parenthesized_expression] = STATE(2307), - [sym_call_expression] = STATE(2307), - [sym_type_initializer] = STATE(2380), - [sym_function_literal] = STATE(2307), - [sym_reference_expression] = STATE(2311), - [sym_type_reference_expression] = STATE(3541), - [sym_unary_expression] = STATE(2307), - [sym_receive_expression] = STATE(2307), - [sym_binary_expression] = STATE(2307), - [sym_as_type_cast_expression] = STATE(2307), - [sym__max_group] = STATE(2307), - [sym_literal] = STATE(2292), - [sym_map_init_expression] = STATE(2380), - [sym_array_creation] = STATE(2307), - [sym_fixed_array_creation] = STATE(2307), - [sym_selector_expression] = STATE(2307), - [sym_index_expression] = STATE(2307), - [sym_slice_expression] = STATE(2307), - [sym_if_expression] = STATE(2380), - [sym_compile_time_if_expression] = STATE(2380), - [sym_is_expression] = STATE(2307), - [sym_in_expression] = STATE(2307), - [sym_enum_fetch] = STATE(2307), - [sym_match_expression] = STATE(2380), - [sym_select_expression] = STATE(2380), - [sym_lock_expression] = STATE(2380), - [sym_unsafe_expression] = STATE(2380), - [sym_sql_expression] = STATE(2380), - [sym_c_string_literal] = STATE(2308), - [sym_raw_string_literal] = STATE(2308), - [sym_interpreted_string_literal] = STATE(2308), - [sym_mutability_modifiers] = STATE(944), - [sym_mutable_expression] = STATE(4344), - [sym_plain_type] = STATE(4297), - [sym__plain_type_without_special] = STATE(2302), - [sym_anon_struct_type] = STATE(2303), - [sym_multi_return_type] = STATE(2302), - [sym_result_type] = STATE(2302), - [sym_option_type] = STATE(2302), - [sym_qualified_type] = STATE(3541), - [sym_fixed_array_type] = STATE(2303), - [sym_array_type] = STATE(2303), - [sym_pointer_type] = STATE(2303), - [sym_wrong_pointer_type] = STATE(2303), - [sym_map_type] = STATE(2303), - [sym_channel_type] = STATE(2303), - [sym_shared_type] = STATE(2303), - [sym_thread_type] = STATE(2303), - [sym_atomic_type] = STATE(2303), - [sym_generic_type] = STATE(2303), - [sym_function_type] = STATE(2303), - [sym_identifier] = ACTIONS(1807), + [sym__expression] = STATE(2640), + [sym__expression_without_blocks] = STATE(2347), + [sym__expression_with_blocks] = STATE(2347), + [sym_inc_expression] = STATE(2379), + [sym_dec_expression] = STATE(2379), + [sym_or_block_expression] = STATE(2379), + [sym_option_propagation_expression] = STATE(2379), + [sym_result_propagation_expression] = STATE(2379), + [sym_anon_struct_value_expression] = STATE(2378), + [sym_go_expression] = STATE(2379), + [sym_spawn_expression] = STATE(2379), + [sym_parenthesized_expression] = STATE(2379), + [sym_call_expression] = STATE(2379), + [sym_type_initializer] = STATE(2378), + [sym_function_literal] = STATE(2379), + [sym_reference_expression] = STATE(2377), + [sym_type_reference_expression] = STATE(3460), + [sym_unary_expression] = STATE(2379), + [sym_receive_expression] = STATE(2379), + [sym_binary_expression] = STATE(2379), + [sym_as_type_cast_expression] = STATE(2379), + [sym__max_group] = STATE(2379), + [sym_literal] = STATE(2392), + [sym_map_init_expression] = STATE(2378), + [sym_array_creation] = STATE(2379), + [sym_fixed_array_creation] = STATE(2379), + [sym_selector_expression] = STATE(2379), + [sym_index_expression] = STATE(2379), + [sym_slice_expression] = STATE(2379), + [sym_if_expression] = STATE(2378), + [sym_compile_time_if_expression] = STATE(2378), + [sym_is_expression] = STATE(2379), + [sym_in_expression] = STATE(2379), + [sym_enum_fetch] = STATE(2379), + [sym_match_expression] = STATE(2378), + [sym_select_expression] = STATE(2378), + [sym_lock_expression] = STATE(2378), + [sym_unsafe_expression] = STATE(2378), + [sym_sql_expression] = STATE(2378), + [sym_c_string_literal] = STATE(2401), + [sym_raw_string_literal] = STATE(2401), + [sym_interpreted_string_literal] = STATE(2401), + [sym_mutability_modifiers] = STATE(906), + [sym_mutable_expression] = STATE(4352), + [sym_plain_type] = STATE(4160), + [sym__plain_type_without_special] = STATE(2360), + [sym_anon_struct_type] = STATE(2362), + [sym_multi_return_type] = STATE(2360), + [sym_result_type] = STATE(2360), + [sym_option_type] = STATE(2360), + [sym_qualified_type] = STATE(3460), + [sym_fixed_array_type] = STATE(2362), + [sym_array_type] = STATE(2362), + [sym_pointer_type] = STATE(2362), + [sym_wrong_pointer_type] = STATE(2362), + [sym_map_type] = STATE(2362), + [sym_channel_type] = STATE(2362), + [sym_shared_type] = STATE(2362), + [sym_thread_type] = STATE(2362), + [sym_atomic_type] = STATE(2362), + [sym_generic_type] = STATE(2362), + [sym_function_type] = STATE(2362), + [sym_identifier] = ACTIONS(1815), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1428), - [anon_sym_LBRACE] = ACTIONS(1430), - [anon_sym_LPAREN] = ACTIONS(1432), - [anon_sym_fn] = ACTIONS(1434), - [anon_sym_PLUS] = ACTIONS(3064), - [anon_sym_DASH] = ACTIONS(3064), - [anon_sym_STAR] = ACTIONS(3066), - [anon_sym_struct] = ACTIONS(1440), + [anon_sym_DOT] = ACTIONS(1430), + [anon_sym_LBRACE] = ACTIONS(1432), + [anon_sym_LPAREN] = ACTIONS(1434), + [anon_sym_fn] = ACTIONS(1436), + [anon_sym_PLUS] = ACTIONS(3090), + [anon_sym_DASH] = ACTIONS(3090), + [anon_sym_STAR] = ACTIONS(3092), + [anon_sym_struct] = ACTIONS(1442), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(3068), - [anon_sym_go] = ACTIONS(3070), - [anon_sym_spawn] = ACTIONS(3072), - [anon_sym_json_DOTdecode] = ACTIONS(1448), - [anon_sym_LBRACK2] = ACTIONS(1821), - [anon_sym_TILDE] = ACTIONS(3064), - [anon_sym_CARET] = ACTIONS(3064), - [anon_sym_AMP] = ACTIONS(3074), - [anon_sym_LT_DASH] = ACTIONS(3076), - [sym_none] = ACTIONS(1456), - [sym_true] = ACTIONS(1456), - [sym_false] = ACTIONS(1456), - [sym_nil] = ACTIONS(1456), - [anon_sym_if] = ACTIONS(1827), - [anon_sym_DOLLARif] = ACTIONS(1460), - [anon_sym_match] = ACTIONS(1462), - [anon_sym_select] = ACTIONS(3078), - [anon_sym_lock] = ACTIONS(3080), - [anon_sym_rlock] = ACTIONS(3080), - [anon_sym_unsafe] = ACTIONS(1833), - [anon_sym_sql] = ACTIONS(1470), - [sym_int_literal] = ACTIONS(1456), - [sym_float_literal] = ACTIONS(1472), - [sym_rune_literal] = ACTIONS(1472), - [sym_pseudo_compile_time_identifier] = ACTIONS(1474), + [anon_sym_BANG] = ACTIONS(3094), + [anon_sym_go] = ACTIONS(3096), + [anon_sym_spawn] = ACTIONS(3098), + [anon_sym_json_DOTdecode] = ACTIONS(1450), + [anon_sym_LBRACK2] = ACTIONS(1827), + [anon_sym_TILDE] = ACTIONS(3090), + [anon_sym_CARET] = ACTIONS(3090), + [anon_sym_AMP] = ACTIONS(3100), + [anon_sym_LT_DASH] = ACTIONS(3102), + [sym_none] = ACTIONS(1458), + [sym_true] = ACTIONS(1458), + [sym_false] = ACTIONS(1458), + [sym_nil] = ACTIONS(1458), + [anon_sym_if] = ACTIONS(1833), + [anon_sym_DOLLARif] = ACTIONS(1462), + [anon_sym_match] = ACTIONS(1464), + [anon_sym_select] = ACTIONS(3104), + [anon_sym_lock] = ACTIONS(3106), + [anon_sym_rlock] = ACTIONS(3106), + [anon_sym_unsafe] = ACTIONS(1839), + [anon_sym_sql] = ACTIONS(1472), + [sym_int_literal] = ACTIONS(1458), + [sym_float_literal] = ACTIONS(1474), + [sym_rune_literal] = ACTIONS(1474), + [sym_pseudo_compile_time_identifier] = ACTIONS(1476), [anon_sym_shared] = ACTIONS(83), [anon_sym_map_LBRACK] = ACTIONS(85), [anon_sym_chan] = ACTIONS(87), [anon_sym_thread] = ACTIONS(89), [anon_sym_atomic] = ACTIONS(91), - [sym___double_quote] = ACTIONS(1478), - [sym___single_quote] = ACTIONS(1480), - [sym___c_double_quote] = ACTIONS(1482), - [sym___c_single_quote] = ACTIONS(1484), - [sym___r_double_quote] = ACTIONS(1486), - [sym___r_single_quote] = ACTIONS(1488), + [sym___double_quote] = ACTIONS(1480), + [sym___single_quote] = ACTIONS(1482), + [sym___c_double_quote] = ACTIONS(1484), + [sym___c_single_quote] = ACTIONS(1486), + [sym___r_double_quote] = ACTIONS(1488), + [sym___r_single_quote] = ACTIONS(1490), }, [507] = { [sym_line_comment] = STATE(507), [sym_block_comment] = STATE(507), - [sym__expression] = STATE(2831), - [sym__expression_without_blocks] = STATE(2300), - [sym__expression_with_blocks] = STATE(2300), - [sym_inc_expression] = STATE(2307), - [sym_dec_expression] = STATE(2307), - [sym_or_block_expression] = STATE(2307), - [sym_option_propagation_expression] = STATE(2307), - [sym_result_propagation_expression] = STATE(2307), - [sym_anon_struct_value_expression] = STATE(2380), - [sym_go_expression] = STATE(2307), - [sym_spawn_expression] = STATE(2307), - [sym_parenthesized_expression] = STATE(2307), - [sym_call_expression] = STATE(2307), - [sym_type_initializer] = STATE(2380), - [sym_function_literal] = STATE(2307), - [sym_reference_expression] = STATE(2954), - [sym_type_reference_expression] = STATE(3541), - [sym_unary_expression] = STATE(2307), - [sym_receive_expression] = STATE(2307), - [sym_binary_expression] = STATE(2307), - [sym_as_type_cast_expression] = STATE(2307), - [sym__max_group] = STATE(2307), - [sym_literal] = STATE(2292), - [sym_map_init_expression] = STATE(2380), - [sym_array_creation] = STATE(2307), - [sym_fixed_array_creation] = STATE(2307), - [sym_selector_expression] = STATE(2922), - [sym_index_expression] = STATE(2307), - [sym_slice_expression] = STATE(2307), - [sym_if_expression] = STATE(2380), - [sym_compile_time_if_expression] = STATE(2380), - [sym_is_expression] = STATE(2307), - [sym_in_expression] = STATE(2307), - [sym_enum_fetch] = STATE(2307), - [sym_match_expression] = STATE(2380), - [sym_select_expression] = STATE(2380), - [sym_lock_expression] = STATE(2380), - [sym_unsafe_expression] = STATE(2380), - [sym_sql_expression] = STATE(2380), - [sym_c_string_literal] = STATE(2308), - [sym_raw_string_literal] = STATE(2308), - [sym_interpreted_string_literal] = STATE(2308), + [sym__expression] = STATE(2830), + [sym__expression_without_blocks] = STATE(2347), + [sym__expression_with_blocks] = STATE(2347), + [sym_inc_expression] = STATE(2379), + [sym_dec_expression] = STATE(2379), + [sym_or_block_expression] = STATE(2379), + [sym_option_propagation_expression] = STATE(2379), + [sym_result_propagation_expression] = STATE(2379), + [sym_anon_struct_value_expression] = STATE(2378), + [sym_go_expression] = STATE(2379), + [sym_spawn_expression] = STATE(2379), + [sym_parenthesized_expression] = STATE(2379), + [sym_call_expression] = STATE(2379), + [sym_type_initializer] = STATE(2378), + [sym_function_literal] = STATE(2379), + [sym_reference_expression] = STATE(2943), + [sym_type_reference_expression] = STATE(3460), + [sym_unary_expression] = STATE(2379), + [sym_receive_expression] = STATE(2379), + [sym_binary_expression] = STATE(2379), + [sym_as_type_cast_expression] = STATE(2379), + [sym__max_group] = STATE(2379), + [sym_literal] = STATE(2392), + [sym_map_init_expression] = STATE(2378), + [sym_array_creation] = STATE(2379), + [sym_fixed_array_creation] = STATE(2379), + [sym_selector_expression] = STATE(2945), + [sym_index_expression] = STATE(2379), + [sym_slice_expression] = STATE(2379), + [sym_if_expression] = STATE(2378), + [sym_compile_time_if_expression] = STATE(2378), + [sym_is_expression] = STATE(2379), + [sym_in_expression] = STATE(2379), + [sym_enum_fetch] = STATE(2379), + [sym_match_expression] = STATE(2378), + [sym_select_expression] = STATE(2378), + [sym_lock_expression] = STATE(2378), + [sym_unsafe_expression] = STATE(2378), + [sym_sql_expression] = STATE(2378), + [sym_c_string_literal] = STATE(2401), + [sym_raw_string_literal] = STATE(2401), + [sym_interpreted_string_literal] = STATE(2401), [sym_mutability_modifiers] = STATE(939), - [sym_plain_type] = STATE(4297), - [sym__plain_type_without_special] = STATE(2302), - [sym_anon_struct_type] = STATE(2303), - [sym_multi_return_type] = STATE(2302), - [sym_result_type] = STATE(2302), - [sym_option_type] = STATE(2302), - [sym_qualified_type] = STATE(3541), - [sym_fixed_array_type] = STATE(2303), - [sym_array_type] = STATE(2303), - [sym_pointer_type] = STATE(2303), - [sym_wrong_pointer_type] = STATE(2303), - [sym_map_type] = STATE(2303), - [sym_channel_type] = STATE(2303), - [sym_shared_type] = STATE(2303), - [sym_thread_type] = STATE(2303), - [sym_atomic_type] = STATE(2303), - [sym_generic_type] = STATE(2303), - [sym_function_type] = STATE(2303), - [sym_identifier] = ACTIONS(1426), + [sym_plain_type] = STATE(4160), + [sym__plain_type_without_special] = STATE(2360), + [sym_anon_struct_type] = STATE(2362), + [sym_multi_return_type] = STATE(2360), + [sym_result_type] = STATE(2360), + [sym_option_type] = STATE(2360), + [sym_qualified_type] = STATE(3460), + [sym_fixed_array_type] = STATE(2362), + [sym_array_type] = STATE(2362), + [sym_pointer_type] = STATE(2362), + [sym_wrong_pointer_type] = STATE(2362), + [sym_map_type] = STATE(2362), + [sym_channel_type] = STATE(2362), + [sym_shared_type] = STATE(2362), + [sym_thread_type] = STATE(2362), + [sym_atomic_type] = STATE(2362), + [sym_generic_type] = STATE(2362), + [sym_function_type] = STATE(2362), + [sym_identifier] = ACTIONS(1428), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1428), - [anon_sym_LBRACE] = ACTIONS(1430), - [anon_sym_LPAREN] = ACTIONS(1432), - [anon_sym_fn] = ACTIONS(1434), - [anon_sym_PLUS] = ACTIONS(1436), - [anon_sym_DASH] = ACTIONS(1436), - [anon_sym_STAR] = ACTIONS(1438), - [anon_sym_RBRACK] = ACTIONS(3086), - [anon_sym_struct] = ACTIONS(1440), + [anon_sym_DOT] = ACTIONS(1430), + [anon_sym_LBRACE] = ACTIONS(1432), + [anon_sym_LPAREN] = ACTIONS(1434), + [anon_sym_fn] = ACTIONS(1436), + [anon_sym_PLUS] = ACTIONS(1438), + [anon_sym_DASH] = ACTIONS(1438), + [anon_sym_STAR] = ACTIONS(1440), + [anon_sym_RBRACK] = ACTIONS(3108), + [anon_sym_struct] = ACTIONS(1442), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(1442), - [anon_sym_go] = ACTIONS(1444), - [anon_sym_spawn] = ACTIONS(1446), - [anon_sym_json_DOTdecode] = ACTIONS(1448), - [anon_sym_LBRACK2] = ACTIONS(1450), - [anon_sym_TILDE] = ACTIONS(1436), - [anon_sym_CARET] = ACTIONS(1436), - [anon_sym_AMP] = ACTIONS(1452), - [anon_sym_LT_DASH] = ACTIONS(1454), - [sym_none] = ACTIONS(1456), - [sym_true] = ACTIONS(1456), - [sym_false] = ACTIONS(1456), - [sym_nil] = ACTIONS(1456), - [anon_sym_if] = ACTIONS(1827), - [anon_sym_DOLLARif] = ACTIONS(1460), - [anon_sym_match] = ACTIONS(1462), - [anon_sym_select] = ACTIONS(1464), - [anon_sym_lock] = ACTIONS(1466), - [anon_sym_rlock] = ACTIONS(1466), - [anon_sym_unsafe] = ACTIONS(1833), - [anon_sym_sql] = ACTIONS(1470), - [sym_int_literal] = ACTIONS(3088), - [sym_float_literal] = ACTIONS(1472), - [sym_rune_literal] = ACTIONS(1472), - [sym_pseudo_compile_time_identifier] = ACTIONS(1474), + [anon_sym_BANG] = ACTIONS(1444), + [anon_sym_go] = ACTIONS(1446), + [anon_sym_spawn] = ACTIONS(1448), + [anon_sym_json_DOTdecode] = ACTIONS(1450), + [anon_sym_LBRACK2] = ACTIONS(1452), + [anon_sym_TILDE] = ACTIONS(1438), + [anon_sym_CARET] = ACTIONS(1438), + [anon_sym_AMP] = ACTIONS(1454), + [anon_sym_LT_DASH] = ACTIONS(1456), + [sym_none] = ACTIONS(1458), + [sym_true] = ACTIONS(1458), + [sym_false] = ACTIONS(1458), + [sym_nil] = ACTIONS(1458), + [anon_sym_if] = ACTIONS(1833), + [anon_sym_DOLLARif] = ACTIONS(1462), + [anon_sym_match] = ACTIONS(1464), + [anon_sym_select] = ACTIONS(1466), + [anon_sym_lock] = ACTIONS(1468), + [anon_sym_rlock] = ACTIONS(1468), + [anon_sym_unsafe] = ACTIONS(1839), + [anon_sym_sql] = ACTIONS(1472), + [sym_int_literal] = ACTIONS(3110), + [sym_float_literal] = ACTIONS(1474), + [sym_rune_literal] = ACTIONS(1474), + [sym_pseudo_compile_time_identifier] = ACTIONS(1476), [anon_sym_shared] = ACTIONS(83), [anon_sym_map_LBRACK] = ACTIONS(85), [anon_sym_chan] = ACTIONS(87), [anon_sym_thread] = ACTIONS(89), [anon_sym_atomic] = ACTIONS(91), - [sym___double_quote] = ACTIONS(1478), - [sym___single_quote] = ACTIONS(1480), - [sym___c_double_quote] = ACTIONS(1482), - [sym___c_single_quote] = ACTIONS(1484), - [sym___r_double_quote] = ACTIONS(1486), - [sym___r_single_quote] = ACTIONS(1488), + [sym___double_quote] = ACTIONS(1480), + [sym___single_quote] = ACTIONS(1482), + [sym___c_double_quote] = ACTIONS(1484), + [sym___c_single_quote] = ACTIONS(1486), + [sym___r_double_quote] = ACTIONS(1488), + [sym___r_single_quote] = ACTIONS(1490), }, [508] = { [sym_line_comment] = STATE(508), [sym_block_comment] = STATE(508), - [sym__expression] = STATE(2831), - [sym__expression_without_blocks] = STATE(2300), - [sym__expression_with_blocks] = STATE(2300), - [sym_inc_expression] = STATE(2307), - [sym_dec_expression] = STATE(2307), - [sym_or_block_expression] = STATE(2307), - [sym_option_propagation_expression] = STATE(2307), - [sym_result_propagation_expression] = STATE(2307), - [sym_anon_struct_value_expression] = STATE(2380), - [sym_go_expression] = STATE(2307), - [sym_spawn_expression] = STATE(2307), - [sym_parenthesized_expression] = STATE(2307), - [sym_call_expression] = STATE(2307), - [sym_type_initializer] = STATE(2380), - [sym_function_literal] = STATE(2307), - [sym_reference_expression] = STATE(2897), - [sym_type_reference_expression] = STATE(3541), - [sym_unary_expression] = STATE(2307), - [sym_receive_expression] = STATE(2307), - [sym_binary_expression] = STATE(2307), - [sym_as_type_cast_expression] = STATE(2307), - [sym__max_group] = STATE(2307), - [sym_literal] = STATE(2292), - [sym_map_init_expression] = STATE(2380), - [sym_array_creation] = STATE(2307), - [sym_fixed_array_creation] = STATE(2307), - [sym_selector_expression] = STATE(2900), - [sym_index_expression] = STATE(2307), - [sym_slice_expression] = STATE(2307), - [sym_if_expression] = STATE(2380), - [sym_compile_time_if_expression] = STATE(2380), - [sym_is_expression] = STATE(2307), - [sym_in_expression] = STATE(2307), - [sym_enum_fetch] = STATE(2307), - [sym_match_expression] = STATE(2380), - [sym_select_expression] = STATE(2380), - [sym_lock_expression] = STATE(2380), - [sym_unsafe_expression] = STATE(2380), - [sym_sql_expression] = STATE(2380), - [sym_c_string_literal] = STATE(2308), - [sym_raw_string_literal] = STATE(2308), - [sym_interpreted_string_literal] = STATE(2308), + [sym__expression] = STATE(2830), + [sym__expression_without_blocks] = STATE(2347), + [sym__expression_with_blocks] = STATE(2347), + [sym_inc_expression] = STATE(2379), + [sym_dec_expression] = STATE(2379), + [sym_or_block_expression] = STATE(2379), + [sym_option_propagation_expression] = STATE(2379), + [sym_result_propagation_expression] = STATE(2379), + [sym_anon_struct_value_expression] = STATE(2378), + [sym_go_expression] = STATE(2379), + [sym_spawn_expression] = STATE(2379), + [sym_parenthesized_expression] = STATE(2379), + [sym_call_expression] = STATE(2379), + [sym_type_initializer] = STATE(2378), + [sym_function_literal] = STATE(2379), + [sym_reference_expression] = STATE(2955), + [sym_type_reference_expression] = STATE(3460), + [sym_unary_expression] = STATE(2379), + [sym_receive_expression] = STATE(2379), + [sym_binary_expression] = STATE(2379), + [sym_as_type_cast_expression] = STATE(2379), + [sym__max_group] = STATE(2379), + [sym_literal] = STATE(2392), + [sym_map_init_expression] = STATE(2378), + [sym_array_creation] = STATE(2379), + [sym_fixed_array_creation] = STATE(2379), + [sym_selector_expression] = STATE(2888), + [sym_index_expression] = STATE(2379), + [sym_slice_expression] = STATE(2379), + [sym_if_expression] = STATE(2378), + [sym_compile_time_if_expression] = STATE(2378), + [sym_is_expression] = STATE(2379), + [sym_in_expression] = STATE(2379), + [sym_enum_fetch] = STATE(2379), + [sym_match_expression] = STATE(2378), + [sym_select_expression] = STATE(2378), + [sym_lock_expression] = STATE(2378), + [sym_unsafe_expression] = STATE(2378), + [sym_sql_expression] = STATE(2378), + [sym_c_string_literal] = STATE(2401), + [sym_raw_string_literal] = STATE(2401), + [sym_interpreted_string_literal] = STATE(2401), [sym_mutability_modifiers] = STATE(939), - [sym_plain_type] = STATE(4297), - [sym__plain_type_without_special] = STATE(2302), - [sym_anon_struct_type] = STATE(2303), - [sym_multi_return_type] = STATE(2302), - [sym_result_type] = STATE(2302), - [sym_option_type] = STATE(2302), - [sym_qualified_type] = STATE(3541), - [sym_fixed_array_type] = STATE(2303), - [sym_array_type] = STATE(2303), - [sym_pointer_type] = STATE(2303), - [sym_wrong_pointer_type] = STATE(2303), - [sym_map_type] = STATE(2303), - [sym_channel_type] = STATE(2303), - [sym_shared_type] = STATE(2303), - [sym_thread_type] = STATE(2303), - [sym_atomic_type] = STATE(2303), - [sym_generic_type] = STATE(2303), - [sym_function_type] = STATE(2303), - [sym_identifier] = ACTIONS(1426), + [sym_plain_type] = STATE(4160), + [sym__plain_type_without_special] = STATE(2360), + [sym_anon_struct_type] = STATE(2362), + [sym_multi_return_type] = STATE(2360), + [sym_result_type] = STATE(2360), + [sym_option_type] = STATE(2360), + [sym_qualified_type] = STATE(3460), + [sym_fixed_array_type] = STATE(2362), + [sym_array_type] = STATE(2362), + [sym_pointer_type] = STATE(2362), + [sym_wrong_pointer_type] = STATE(2362), + [sym_map_type] = STATE(2362), + [sym_channel_type] = STATE(2362), + [sym_shared_type] = STATE(2362), + [sym_thread_type] = STATE(2362), + [sym_atomic_type] = STATE(2362), + [sym_generic_type] = STATE(2362), + [sym_function_type] = STATE(2362), + [sym_identifier] = ACTIONS(1428), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1428), - [anon_sym_LBRACE] = ACTIONS(1430), - [anon_sym_LPAREN] = ACTIONS(1432), - [anon_sym_fn] = ACTIONS(1434), - [anon_sym_PLUS] = ACTIONS(1436), - [anon_sym_DASH] = ACTIONS(1436), - [anon_sym_STAR] = ACTIONS(1438), - [anon_sym_RBRACK] = ACTIONS(3090), - [anon_sym_struct] = ACTIONS(1440), + [anon_sym_DOT] = ACTIONS(1430), + [anon_sym_LBRACE] = ACTIONS(1432), + [anon_sym_LPAREN] = ACTIONS(1434), + [anon_sym_fn] = ACTIONS(1436), + [anon_sym_PLUS] = ACTIONS(1438), + [anon_sym_DASH] = ACTIONS(1438), + [anon_sym_STAR] = ACTIONS(1440), + [anon_sym_RBRACK] = ACTIONS(3112), + [anon_sym_struct] = ACTIONS(1442), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(1442), - [anon_sym_go] = ACTIONS(1444), - [anon_sym_spawn] = ACTIONS(1446), - [anon_sym_json_DOTdecode] = ACTIONS(1448), - [anon_sym_LBRACK2] = ACTIONS(1450), - [anon_sym_TILDE] = ACTIONS(1436), - [anon_sym_CARET] = ACTIONS(1436), - [anon_sym_AMP] = ACTIONS(1452), - [anon_sym_LT_DASH] = ACTIONS(1454), - [sym_none] = ACTIONS(1456), - [sym_true] = ACTIONS(1456), - [sym_false] = ACTIONS(1456), - [sym_nil] = ACTIONS(1456), - [anon_sym_if] = ACTIONS(1827), - [anon_sym_DOLLARif] = ACTIONS(1460), - [anon_sym_match] = ACTIONS(1462), - [anon_sym_select] = ACTIONS(1464), - [anon_sym_lock] = ACTIONS(1466), - [anon_sym_rlock] = ACTIONS(1466), - [anon_sym_unsafe] = ACTIONS(1833), - [anon_sym_sql] = ACTIONS(1470), - [sym_int_literal] = ACTIONS(3092), - [sym_float_literal] = ACTIONS(1472), - [sym_rune_literal] = ACTIONS(1472), - [sym_pseudo_compile_time_identifier] = ACTIONS(1474), + [anon_sym_BANG] = ACTIONS(1444), + [anon_sym_go] = ACTIONS(1446), + [anon_sym_spawn] = ACTIONS(1448), + [anon_sym_json_DOTdecode] = ACTIONS(1450), + [anon_sym_LBRACK2] = ACTIONS(1452), + [anon_sym_TILDE] = ACTIONS(1438), + [anon_sym_CARET] = ACTIONS(1438), + [anon_sym_AMP] = ACTIONS(1454), + [anon_sym_LT_DASH] = ACTIONS(1456), + [sym_none] = ACTIONS(1458), + [sym_true] = ACTIONS(1458), + [sym_false] = ACTIONS(1458), + [sym_nil] = ACTIONS(1458), + [anon_sym_if] = ACTIONS(1833), + [anon_sym_DOLLARif] = ACTIONS(1462), + [anon_sym_match] = ACTIONS(1464), + [anon_sym_select] = ACTIONS(1466), + [anon_sym_lock] = ACTIONS(1468), + [anon_sym_rlock] = ACTIONS(1468), + [anon_sym_unsafe] = ACTIONS(1839), + [anon_sym_sql] = ACTIONS(1472), + [sym_int_literal] = ACTIONS(3114), + [sym_float_literal] = ACTIONS(1474), + [sym_rune_literal] = ACTIONS(1474), + [sym_pseudo_compile_time_identifier] = ACTIONS(1476), [anon_sym_shared] = ACTIONS(83), [anon_sym_map_LBRACK] = ACTIONS(85), [anon_sym_chan] = ACTIONS(87), [anon_sym_thread] = ACTIONS(89), [anon_sym_atomic] = ACTIONS(91), - [sym___double_quote] = ACTIONS(1478), - [sym___single_quote] = ACTIONS(1480), - [sym___c_double_quote] = ACTIONS(1482), - [sym___c_single_quote] = ACTIONS(1484), - [sym___r_double_quote] = ACTIONS(1486), - [sym___r_single_quote] = ACTIONS(1488), + [sym___double_quote] = ACTIONS(1480), + [sym___single_quote] = ACTIONS(1482), + [sym___c_double_quote] = ACTIONS(1484), + [sym___c_single_quote] = ACTIONS(1486), + [sym___r_double_quote] = ACTIONS(1488), + [sym___r_single_quote] = ACTIONS(1490), }, [509] = { [sym_line_comment] = STATE(509), [sym_block_comment] = STATE(509), - [sym__expression] = STATE(2715), - [sym__expression_without_blocks] = STATE(2300), - [sym__expression_with_blocks] = STATE(2300), - [sym_inc_expression] = STATE(2307), - [sym_dec_expression] = STATE(2307), - [sym_or_block_expression] = STATE(2307), - [sym_option_propagation_expression] = STATE(2307), - [sym_result_propagation_expression] = STATE(2307), - [sym_anon_struct_value_expression] = STATE(2380), - [sym_go_expression] = STATE(2307), - [sym_spawn_expression] = STATE(2307), - [sym_parenthesized_expression] = STATE(2307), - [sym_call_expression] = STATE(2307), - [sym_type_initializer] = STATE(2380), - [sym_function_literal] = STATE(2307), - [sym_reference_expression] = STATE(2311), - [sym_type_reference_expression] = STATE(3541), - [sym_unary_expression] = STATE(2307), - [sym_receive_expression] = STATE(2307), - [sym_binary_expression] = STATE(2307), - [sym_as_type_cast_expression] = STATE(2307), - [sym__max_group] = STATE(2307), - [sym_literal] = STATE(2292), - [sym_map_init_expression] = STATE(2380), - [sym_array_creation] = STATE(2307), - [sym_fixed_array_creation] = STATE(2307), - [sym_selector_expression] = STATE(2307), - [sym_index_expression] = STATE(2307), - [sym_slice_expression] = STATE(2307), - [sym_if_expression] = STATE(2380), - [sym_compile_time_if_expression] = STATE(2380), - [sym_is_expression] = STATE(2307), - [sym_in_expression] = STATE(2307), - [sym_enum_fetch] = STATE(2307), - [sym_match_expression] = STATE(2380), - [sym_select_expression] = STATE(2380), - [sym_lock_expression] = STATE(2380), - [sym_unsafe_expression] = STATE(2380), - [sym_sql_expression] = STATE(2380), - [sym_c_string_literal] = STATE(2308), - [sym_raw_string_literal] = STATE(2308), - [sym_interpreted_string_literal] = STATE(2308), + [sym__expression] = STATE(2766), + [sym__expression_without_blocks] = STATE(2347), + [sym__expression_with_blocks] = STATE(2347), + [sym_inc_expression] = STATE(2379), + [sym_dec_expression] = STATE(2379), + [sym_or_block_expression] = STATE(2379), + [sym_option_propagation_expression] = STATE(2379), + [sym_result_propagation_expression] = STATE(2379), + [sym_anon_struct_value_expression] = STATE(2378), + [sym_go_expression] = STATE(2379), + [sym_spawn_expression] = STATE(2379), + [sym_parenthesized_expression] = STATE(2379), + [sym_call_expression] = STATE(2379), + [sym_type_initializer] = STATE(2378), + [sym_function_literal] = STATE(2379), + [sym_reference_expression] = STATE(2377), + [sym_type_reference_expression] = STATE(3460), + [sym_unary_expression] = STATE(2379), + [sym_receive_expression] = STATE(2379), + [sym_binary_expression] = STATE(2379), + [sym_as_type_cast_expression] = STATE(2379), + [sym__max_group] = STATE(2379), + [sym_literal] = STATE(2392), + [sym_map_init_expression] = STATE(2378), + [sym_array_creation] = STATE(2379), + [sym_fixed_array_creation] = STATE(2379), + [sym_selector_expression] = STATE(2379), + [sym_index_expression] = STATE(2379), + [sym_slice_expression] = STATE(2379), + [sym_if_expression] = STATE(2378), + [sym_compile_time_if_expression] = STATE(2378), + [sym_is_expression] = STATE(2379), + [sym_in_expression] = STATE(2379), + [sym_enum_fetch] = STATE(2379), + [sym_match_expression] = STATE(2378), + [sym_select_expression] = STATE(2378), + [sym_lock_expression] = STATE(2378), + [sym_unsafe_expression] = STATE(2378), + [sym_sql_expression] = STATE(2378), + [sym_c_string_literal] = STATE(2401), + [sym_raw_string_literal] = STATE(2401), + [sym_interpreted_string_literal] = STATE(2401), [sym_mutability_modifiers] = STATE(939), - [sym_plain_type] = STATE(4297), - [sym__plain_type_without_special] = STATE(2302), - [sym_anon_struct_type] = STATE(2303), - [sym_multi_return_type] = STATE(2302), - [sym_result_type] = STATE(2302), - [sym_option_type] = STATE(2302), - [sym_qualified_type] = STATE(3541), - [sym_fixed_array_type] = STATE(2303), - [sym_array_type] = STATE(2303), - [sym_pointer_type] = STATE(2303), - [sym_wrong_pointer_type] = STATE(2303), - [sym_map_type] = STATE(2303), - [sym_channel_type] = STATE(2303), - [sym_shared_type] = STATE(2303), - [sym_thread_type] = STATE(2303), - [sym_atomic_type] = STATE(2303), - [sym_generic_type] = STATE(2303), - [sym_function_type] = STATE(2303), - [sym_identifier] = ACTIONS(1426), + [sym_plain_type] = STATE(4160), + [sym__plain_type_without_special] = STATE(2360), + [sym_anon_struct_type] = STATE(2362), + [sym_multi_return_type] = STATE(2360), + [sym_result_type] = STATE(2360), + [sym_option_type] = STATE(2360), + [sym_qualified_type] = STATE(3460), + [sym_fixed_array_type] = STATE(2362), + [sym_array_type] = STATE(2362), + [sym_pointer_type] = STATE(2362), + [sym_wrong_pointer_type] = STATE(2362), + [sym_map_type] = STATE(2362), + [sym_channel_type] = STATE(2362), + [sym_shared_type] = STATE(2362), + [sym_thread_type] = STATE(2362), + [sym_atomic_type] = STATE(2362), + [sym_generic_type] = STATE(2362), + [sym_function_type] = STATE(2362), + [sym_identifier] = ACTIONS(1428), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1428), - [anon_sym_LBRACE] = ACTIONS(1430), - [anon_sym_LPAREN] = ACTIONS(1432), - [anon_sym_fn] = ACTIONS(1434), - [anon_sym_PLUS] = ACTIONS(1436), - [anon_sym_DASH] = ACTIONS(1436), - [anon_sym_STAR] = ACTIONS(1438), - [anon_sym_RBRACK] = ACTIONS(3094), - [anon_sym_struct] = ACTIONS(1440), + [anon_sym_DOT] = ACTIONS(1430), + [anon_sym_LBRACE] = ACTIONS(1432), + [anon_sym_LPAREN] = ACTIONS(1434), + [anon_sym_fn] = ACTIONS(1436), + [anon_sym_PLUS] = ACTIONS(1438), + [anon_sym_DASH] = ACTIONS(1438), + [anon_sym_STAR] = ACTIONS(1440), + [anon_sym_RBRACK] = ACTIONS(3116), + [anon_sym_struct] = ACTIONS(1442), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(1442), - [anon_sym_go] = ACTIONS(1444), - [anon_sym_spawn] = ACTIONS(1446), - [anon_sym_json_DOTdecode] = ACTIONS(1448), - [anon_sym_LBRACK2] = ACTIONS(1450), - [anon_sym_TILDE] = ACTIONS(1436), - [anon_sym_CARET] = ACTIONS(1436), - [anon_sym_AMP] = ACTIONS(1452), - [anon_sym_LT_DASH] = ACTIONS(1454), - [sym_none] = ACTIONS(1456), - [sym_true] = ACTIONS(1456), - [sym_false] = ACTIONS(1456), - [sym_nil] = ACTIONS(1456), - [anon_sym_if] = ACTIONS(1827), - [anon_sym_DOLLARif] = ACTIONS(1460), - [anon_sym_match] = ACTIONS(1462), - [anon_sym_select] = ACTIONS(1464), - [anon_sym_lock] = ACTIONS(1466), - [anon_sym_rlock] = ACTIONS(1466), - [anon_sym_unsafe] = ACTIONS(1833), - [anon_sym_sql] = ACTIONS(1470), - [sym_int_literal] = ACTIONS(1456), - [sym_float_literal] = ACTIONS(1472), - [sym_rune_literal] = ACTIONS(1472), - [sym_pseudo_compile_time_identifier] = ACTIONS(1474), + [anon_sym_BANG] = ACTIONS(1444), + [anon_sym_go] = ACTIONS(1446), + [anon_sym_spawn] = ACTIONS(1448), + [anon_sym_json_DOTdecode] = ACTIONS(1450), + [anon_sym_LBRACK2] = ACTIONS(1452), + [anon_sym_TILDE] = ACTIONS(1438), + [anon_sym_CARET] = ACTIONS(1438), + [anon_sym_AMP] = ACTIONS(1454), + [anon_sym_LT_DASH] = ACTIONS(1456), + [sym_none] = ACTIONS(1458), + [sym_true] = ACTIONS(1458), + [sym_false] = ACTIONS(1458), + [sym_nil] = ACTIONS(1458), + [anon_sym_if] = ACTIONS(1833), + [anon_sym_DOLLARif] = ACTIONS(1462), + [anon_sym_match] = ACTIONS(1464), + [anon_sym_select] = ACTIONS(1466), + [anon_sym_lock] = ACTIONS(1468), + [anon_sym_rlock] = ACTIONS(1468), + [anon_sym_unsafe] = ACTIONS(1839), + [anon_sym_sql] = ACTIONS(1472), + [sym_int_literal] = ACTIONS(1458), + [sym_float_literal] = ACTIONS(1474), + [sym_rune_literal] = ACTIONS(1474), + [sym_pseudo_compile_time_identifier] = ACTIONS(1476), [anon_sym_shared] = ACTIONS(83), [anon_sym_map_LBRACK] = ACTIONS(85), [anon_sym_chan] = ACTIONS(87), [anon_sym_thread] = ACTIONS(89), [anon_sym_atomic] = ACTIONS(91), - [sym___double_quote] = ACTIONS(1478), - [sym___single_quote] = ACTIONS(1480), - [sym___c_double_quote] = ACTIONS(1482), - [sym___c_single_quote] = ACTIONS(1484), - [sym___r_double_quote] = ACTIONS(1486), - [sym___r_single_quote] = ACTIONS(1488), + [sym___double_quote] = ACTIONS(1480), + [sym___single_quote] = ACTIONS(1482), + [sym___c_double_quote] = ACTIONS(1484), + [sym___c_single_quote] = ACTIONS(1486), + [sym___r_double_quote] = ACTIONS(1488), + [sym___r_single_quote] = ACTIONS(1490), }, [510] = { [sym_line_comment] = STATE(510), [sym_block_comment] = STATE(510), - [sym__expression] = STATE(2676), - [sym__expression_without_blocks] = STATE(2300), - [sym__expression_with_blocks] = STATE(2300), - [sym_inc_expression] = STATE(2307), - [sym_dec_expression] = STATE(2307), - [sym_or_block_expression] = STATE(2307), - [sym_option_propagation_expression] = STATE(2307), - [sym_result_propagation_expression] = STATE(2307), - [sym_anon_struct_value_expression] = STATE(2380), - [sym_go_expression] = STATE(2307), - [sym_spawn_expression] = STATE(2307), - [sym_parenthesized_expression] = STATE(2307), - [sym_call_expression] = STATE(2307), - [sym_type_initializer] = STATE(2380), - [sym_function_literal] = STATE(2307), - [sym_reference_expression] = STATE(2311), - [sym_type_reference_expression] = STATE(3541), - [sym_unary_expression] = STATE(2307), - [sym_receive_expression] = STATE(2307), - [sym_binary_expression] = STATE(2307), - [sym_as_type_cast_expression] = STATE(2307), - [sym__max_group] = STATE(2307), - [sym_literal] = STATE(2292), - [sym_map_init_expression] = STATE(2380), - [sym_array_creation] = STATE(2307), - [sym_fixed_array_creation] = STATE(2307), - [sym_selector_expression] = STATE(2307), - [sym_index_expression] = STATE(2307), - [sym_slice_expression] = STATE(2307), - [sym_if_expression] = STATE(2380), - [sym_compile_time_if_expression] = STATE(2380), - [sym_is_expression] = STATE(2307), - [sym_in_expression] = STATE(2307), - [sym_enum_fetch] = STATE(2307), - [sym_match_expression] = STATE(2380), - [sym_select_expression] = STATE(2380), - [sym_lock_expression] = STATE(2380), - [sym_unsafe_expression] = STATE(2380), - [sym_sql_expression] = STATE(2380), - [sym_c_string_literal] = STATE(2308), - [sym_raw_string_literal] = STATE(2308), - [sym_interpreted_string_literal] = STATE(2308), - [sym_mutability_modifiers] = STATE(944), - [sym_mutable_expression] = STATE(4366), - [sym_plain_type] = STATE(4297), - [sym__plain_type_without_special] = STATE(2302), - [sym_anon_struct_type] = STATE(2303), - [sym_multi_return_type] = STATE(2302), - [sym_result_type] = STATE(2302), - [sym_option_type] = STATE(2302), - [sym_qualified_type] = STATE(3541), - [sym_fixed_array_type] = STATE(2303), - [sym_array_type] = STATE(2303), - [sym_pointer_type] = STATE(2303), - [sym_wrong_pointer_type] = STATE(2303), - [sym_map_type] = STATE(2303), - [sym_channel_type] = STATE(2303), - [sym_shared_type] = STATE(2303), - [sym_thread_type] = STATE(2303), - [sym_atomic_type] = STATE(2303), - [sym_generic_type] = STATE(2303), - [sym_function_type] = STATE(2303), - [sym_identifier] = ACTIONS(1807), + [sym__expression] = STATE(954), + [sym__expression_without_blocks] = STATE(1086), + [sym__expression_with_blocks] = STATE(1086), + [sym_inc_expression] = STATE(1088), + [sym_dec_expression] = STATE(1088), + [sym_or_block_expression] = STATE(1088), + [sym_option_propagation_expression] = STATE(1088), + [sym_result_propagation_expression] = STATE(1088), + [sym_anon_struct_value_expression] = STATE(1025), + [sym_go_expression] = STATE(1088), + [sym_spawn_expression] = STATE(1088), + [sym_parenthesized_expression] = STATE(1088), + [sym_call_expression] = STATE(1088), + [sym_type_initializer] = STATE(1025), + [sym_function_literal] = STATE(1088), + [sym_reference_expression] = STATE(1024), + [sym_type_reference_expression] = STATE(3460), + [sym_unary_expression] = STATE(1088), + [sym_receive_expression] = STATE(1088), + [sym_binary_expression] = STATE(1088), + [sym_as_type_cast_expression] = STATE(1088), + [sym__max_group] = STATE(1088), + [sym_literal] = STATE(1078), + [sym_map_init_expression] = STATE(1025), + [sym_array_creation] = STATE(1088), + [sym_fixed_array_creation] = STATE(1088), + [sym_selector_expression] = STATE(1088), + [sym_index_expression] = STATE(1088), + [sym_slice_expression] = STATE(1088), + [sym_if_expression] = STATE(1025), + [sym_compile_time_if_expression] = STATE(1025), + [sym_is_expression] = STATE(1088), + [sym_in_expression] = STATE(1088), + [sym_enum_fetch] = STATE(1088), + [sym_match_expression] = STATE(1025), + [sym_select_expression] = STATE(1025), + [sym_lock_expression] = STATE(1025), + [sym_unsafe_expression] = STATE(1025), + [sym_sql_expression] = STATE(1025), + [sym_c_string_literal] = STATE(993), + [sym_raw_string_literal] = STATE(993), + [sym_interpreted_string_literal] = STATE(993), + [sym_mutability_modifiers] = STATE(855), + [sym_mutable_expression] = STATE(1450), + [sym_plain_type] = STATE(4090), + [sym__plain_type_without_special] = STATE(2360), + [sym_anon_struct_type] = STATE(2362), + [sym_multi_return_type] = STATE(2360), + [sym_result_type] = STATE(2360), + [sym_option_type] = STATE(2360), + [sym_qualified_type] = STATE(3460), + [sym_fixed_array_type] = STATE(2362), + [sym_array_type] = STATE(2362), + [sym_pointer_type] = STATE(2362), + [sym_wrong_pointer_type] = STATE(2362), + [sym_map_type] = STATE(2362), + [sym_channel_type] = STATE(2362), + [sym_shared_type] = STATE(2362), + [sym_thread_type] = STATE(2362), + [sym_atomic_type] = STATE(2362), + [sym_generic_type] = STATE(2362), + [sym_function_type] = STATE(2362), + [sym_identifier] = ACTIONS(493), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1428), - [anon_sym_LBRACE] = ACTIONS(1430), - [anon_sym_LPAREN] = ACTIONS(1432), - [anon_sym_fn] = ACTIONS(1434), - [anon_sym_PLUS] = ACTIONS(3064), - [anon_sym_DASH] = ACTIONS(3064), - [anon_sym_STAR] = ACTIONS(3066), - [anon_sym_struct] = ACTIONS(1440), + [anon_sym_DOT] = ACTIONS(501), + [anon_sym_LBRACE] = ACTIONS(2235), + [anon_sym_LPAREN] = ACTIONS(2237), + [anon_sym_fn] = ACTIONS(507), + [anon_sym_PLUS] = ACTIONS(2239), + [anon_sym_DASH] = ACTIONS(2239), + [anon_sym_STAR] = ACTIONS(2241), + [anon_sym_struct] = ACTIONS(513), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(3068), - [anon_sym_go] = ACTIONS(3070), - [anon_sym_spawn] = ACTIONS(3072), - [anon_sym_json_DOTdecode] = ACTIONS(1448), - [anon_sym_LBRACK2] = ACTIONS(1821), - [anon_sym_TILDE] = ACTIONS(3064), - [anon_sym_CARET] = ACTIONS(3064), - [anon_sym_AMP] = ACTIONS(3074), - [anon_sym_LT_DASH] = ACTIONS(3076), - [sym_none] = ACTIONS(1456), - [sym_true] = ACTIONS(1456), - [sym_false] = ACTIONS(1456), - [sym_nil] = ACTIONS(1456), - [anon_sym_if] = ACTIONS(1827), - [anon_sym_DOLLARif] = ACTIONS(1460), - [anon_sym_match] = ACTIONS(1462), - [anon_sym_select] = ACTIONS(3078), - [anon_sym_lock] = ACTIONS(3080), - [anon_sym_rlock] = ACTIONS(3080), - [anon_sym_unsafe] = ACTIONS(1833), - [anon_sym_sql] = ACTIONS(1470), - [sym_int_literal] = ACTIONS(1456), - [sym_float_literal] = ACTIONS(1472), - [sym_rune_literal] = ACTIONS(1472), - [sym_pseudo_compile_time_identifier] = ACTIONS(1474), + [anon_sym_BANG] = ACTIONS(2243), + [anon_sym_go] = ACTIONS(519), + [anon_sym_spawn] = ACTIONS(521), + [anon_sym_json_DOTdecode] = ACTIONS(2245), + [anon_sym_LBRACK2] = ACTIONS(2247), + [anon_sym_TILDE] = ACTIONS(2239), + [anon_sym_CARET] = ACTIONS(2239), + [anon_sym_AMP] = ACTIONS(2249), + [anon_sym_LT_DASH] = ACTIONS(2251), + [sym_none] = ACTIONS(531), + [sym_true] = ACTIONS(531), + [sym_false] = ACTIONS(531), + [sym_nil] = ACTIONS(531), + [anon_sym_if] = ACTIONS(533), + [anon_sym_DOLLARif] = ACTIONS(535), + [anon_sym_match] = ACTIONS(537), + [anon_sym_select] = ACTIONS(539), + [anon_sym_lock] = ACTIONS(541), + [anon_sym_rlock] = ACTIONS(541), + [anon_sym_unsafe] = ACTIONS(543), + [anon_sym_sql] = ACTIONS(545), + [sym_int_literal] = ACTIONS(531), + [sym_float_literal] = ACTIONS(2253), + [sym_rune_literal] = ACTIONS(2253), + [sym_pseudo_compile_time_identifier] = ACTIONS(547), [anon_sym_shared] = ACTIONS(83), [anon_sym_map_LBRACK] = ACTIONS(85), [anon_sym_chan] = ACTIONS(87), [anon_sym_thread] = ACTIONS(89), [anon_sym_atomic] = ACTIONS(91), - [sym___double_quote] = ACTIONS(1478), - [sym___single_quote] = ACTIONS(1480), - [sym___c_double_quote] = ACTIONS(1482), - [sym___c_single_quote] = ACTIONS(1484), - [sym___r_double_quote] = ACTIONS(1486), - [sym___r_single_quote] = ACTIONS(1488), + [sym___double_quote] = ACTIONS(2255), + [sym___single_quote] = ACTIONS(2257), + [sym___c_double_quote] = ACTIONS(2259), + [sym___c_single_quote] = ACTIONS(2261), + [sym___r_double_quote] = ACTIONS(2263), + [sym___r_single_quote] = ACTIONS(2265), }, [511] = { [sym_line_comment] = STATE(511), [sym_block_comment] = STATE(511), - [sym__expression] = STATE(216), - [sym__expression_without_blocks] = STATE(442), - [sym__expression_with_blocks] = STATE(442), - [sym_inc_expression] = STATE(439), - [sym_dec_expression] = STATE(439), - [sym_or_block_expression] = STATE(439), - [sym_option_propagation_expression] = STATE(439), - [sym_result_propagation_expression] = STATE(439), - [sym_anon_struct_value_expression] = STATE(438), - [sym_go_expression] = STATE(439), - [sym_spawn_expression] = STATE(439), - [sym_parenthesized_expression] = STATE(439), - [sym_call_expression] = STATE(439), - [sym_type_initializer] = STATE(438), - [sym_function_literal] = STATE(439), - [sym_reference_expression] = STATE(437), - [sym_type_reference_expression] = STATE(3541), - [sym_unary_expression] = STATE(439), - [sym_receive_expression] = STATE(439), - [sym_binary_expression] = STATE(439), - [sym_as_type_cast_expression] = STATE(439), - [sym__max_group] = STATE(439), - [sym_literal] = STATE(495), - [sym_map_init_expression] = STATE(438), - [sym_array_creation] = STATE(439), - [sym_fixed_array_creation] = STATE(439), - [sym_selector_expression] = STATE(439), - [sym_index_expression] = STATE(439), - [sym_slice_expression] = STATE(439), - [sym_if_expression] = STATE(438), - [sym_compile_time_if_expression] = STATE(438), - [sym_is_expression] = STATE(439), - [sym_in_expression] = STATE(439), - [sym_enum_fetch] = STATE(439), - [sym_match_expression] = STATE(438), - [sym_select_expression] = STATE(438), - [sym_lock_expression] = STATE(438), - [sym_unsafe_expression] = STATE(438), - [sym_sql_expression] = STATE(438), - [sym_c_string_literal] = STATE(496), - [sym_raw_string_literal] = STATE(496), - [sym_interpreted_string_literal] = STATE(496), - [sym_mutability_modifiers] = STATE(934), - [sym_mutable_expression] = STATE(1101), - [sym_plain_type] = STATE(4049), - [sym__plain_type_without_special] = STATE(2302), - [sym_anon_struct_type] = STATE(2303), - [sym_multi_return_type] = STATE(2302), - [sym_result_type] = STATE(2302), - [sym_option_type] = STATE(2302), - [sym_qualified_type] = STATE(3541), - [sym_fixed_array_type] = STATE(2303), - [sym_array_type] = STATE(2303), - [sym_pointer_type] = STATE(2303), - [sym_wrong_pointer_type] = STATE(2303), - [sym_map_type] = STATE(2303), - [sym_channel_type] = STATE(2303), - [sym_shared_type] = STATE(2303), - [sym_thread_type] = STATE(2303), - [sym_atomic_type] = STATE(2303), - [sym_generic_type] = STATE(2303), - [sym_function_type] = STATE(2303), - [sym_identifier] = ACTIONS(3096), + [sym__expression] = STATE(2733), + [sym__expression_without_blocks] = STATE(2347), + [sym__expression_with_blocks] = STATE(2347), + [sym_inc_expression] = STATE(2379), + [sym_dec_expression] = STATE(2379), + [sym_or_block_expression] = STATE(2379), + [sym_option_propagation_expression] = STATE(2379), + [sym_result_propagation_expression] = STATE(2379), + [sym_anon_struct_value_expression] = STATE(2378), + [sym_go_expression] = STATE(2379), + [sym_spawn_expression] = STATE(2379), + [sym_parenthesized_expression] = STATE(2379), + [sym_call_expression] = STATE(2379), + [sym_type_initializer] = STATE(2378), + [sym_function_literal] = STATE(2379), + [sym_reference_expression] = STATE(2377), + [sym_type_reference_expression] = STATE(3460), + [sym_unary_expression] = STATE(2379), + [sym_receive_expression] = STATE(2379), + [sym_binary_expression] = STATE(2379), + [sym_as_type_cast_expression] = STATE(2379), + [sym__max_group] = STATE(2379), + [sym_literal] = STATE(2392), + [sym_map_init_expression] = STATE(2378), + [sym_array_creation] = STATE(2379), + [sym_fixed_array_creation] = STATE(2379), + [sym_selector_expression] = STATE(2379), + [sym_index_expression] = STATE(2379), + [sym_slice_expression] = STATE(2379), + [sym_if_expression] = STATE(2378), + [sym_compile_time_if_expression] = STATE(2378), + [sym_is_expression] = STATE(2379), + [sym_in_expression] = STATE(2379), + [sym_enum_fetch] = STATE(2379), + [sym_match_expression] = STATE(2378), + [sym_select_expression] = STATE(2378), + [sym_lock_expression] = STATE(2378), + [sym_unsafe_expression] = STATE(2378), + [sym_sql_expression] = STATE(2378), + [sym_c_string_literal] = STATE(2401), + [sym_raw_string_literal] = STATE(2401), + [sym_interpreted_string_literal] = STATE(2401), + [sym_mutability_modifiers] = STATE(906), + [sym_mutable_expression] = STATE(4373), + [sym_plain_type] = STATE(4160), + [sym__plain_type_without_special] = STATE(2360), + [sym_anon_struct_type] = STATE(2362), + [sym_multi_return_type] = STATE(2360), + [sym_result_type] = STATE(2360), + [sym_option_type] = STATE(2360), + [sym_qualified_type] = STATE(3460), + [sym_fixed_array_type] = STATE(2362), + [sym_array_type] = STATE(2362), + [sym_pointer_type] = STATE(2362), + [sym_wrong_pointer_type] = STATE(2362), + [sym_map_type] = STATE(2362), + [sym_channel_type] = STATE(2362), + [sym_shared_type] = STATE(2362), + [sym_thread_type] = STATE(2362), + [sym_atomic_type] = STATE(2362), + [sym_generic_type] = STATE(2362), + [sym_function_type] = STATE(2362), + [sym_identifier] = ACTIONS(1815), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(17), - [anon_sym_LBRACE] = ACTIONS(3098), - [anon_sym_LPAREN] = ACTIONS(23), - [anon_sym_fn] = ACTIONS(485), - [anon_sym_PLUS] = ACTIONS(31), - [anon_sym_DASH] = ACTIONS(31), - [anon_sym_STAR] = ACTIONS(33), - [anon_sym_struct] = ACTIONS(487), + [anon_sym_DOT] = ACTIONS(1430), + [anon_sym_LBRACE] = ACTIONS(1432), + [anon_sym_LPAREN] = ACTIONS(1434), + [anon_sym_fn] = ACTIONS(1436), + [anon_sym_PLUS] = ACTIONS(3090), + [anon_sym_DASH] = ACTIONS(3090), + [anon_sym_STAR] = ACTIONS(3092), + [anon_sym_struct] = ACTIONS(1442), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(49), - [anon_sym_go] = ACTIONS(51), - [anon_sym_spawn] = ACTIONS(53), - [anon_sym_json_DOTdecode] = ACTIONS(55), - [anon_sym_LBRACK2] = ACTIONS(489), - [anon_sym_TILDE] = ACTIONS(31), - [anon_sym_CARET] = ACTIONS(31), - [anon_sym_AMP] = ACTIONS(59), - [anon_sym_LT_DASH] = ACTIONS(61), - [sym_none] = ACTIONS(63), - [sym_true] = ACTIONS(63), - [sym_false] = ACTIONS(63), - [sym_nil] = ACTIONS(63), - [anon_sym_if] = ACTIONS(65), - [anon_sym_DOLLARif] = ACTIONS(67), - [anon_sym_match] = ACTIONS(69), - [anon_sym_select] = ACTIONS(71), - [anon_sym_lock] = ACTIONS(73), - [anon_sym_rlock] = ACTIONS(73), - [anon_sym_unsafe] = ACTIONS(75), - [anon_sym_sql] = ACTIONS(77), - [sym_int_literal] = ACTIONS(63), - [sym_float_literal] = ACTIONS(79), - [sym_rune_literal] = ACTIONS(79), - [sym_pseudo_compile_time_identifier] = ACTIONS(81), + [anon_sym_BANG] = ACTIONS(3094), + [anon_sym_go] = ACTIONS(3096), + [anon_sym_spawn] = ACTIONS(3098), + [anon_sym_json_DOTdecode] = ACTIONS(1450), + [anon_sym_LBRACK2] = ACTIONS(1827), + [anon_sym_TILDE] = ACTIONS(3090), + [anon_sym_CARET] = ACTIONS(3090), + [anon_sym_AMP] = ACTIONS(3100), + [anon_sym_LT_DASH] = ACTIONS(3102), + [sym_none] = ACTIONS(1458), + [sym_true] = ACTIONS(1458), + [sym_false] = ACTIONS(1458), + [sym_nil] = ACTIONS(1458), + [anon_sym_if] = ACTIONS(1833), + [anon_sym_DOLLARif] = ACTIONS(1462), + [anon_sym_match] = ACTIONS(1464), + [anon_sym_select] = ACTIONS(3104), + [anon_sym_lock] = ACTIONS(3106), + [anon_sym_rlock] = ACTIONS(3106), + [anon_sym_unsafe] = ACTIONS(1839), + [anon_sym_sql] = ACTIONS(1472), + [sym_int_literal] = ACTIONS(1458), + [sym_float_literal] = ACTIONS(1474), + [sym_rune_literal] = ACTIONS(1474), + [sym_pseudo_compile_time_identifier] = ACTIONS(1476), [anon_sym_shared] = ACTIONS(83), [anon_sym_map_LBRACK] = ACTIONS(85), [anon_sym_chan] = ACTIONS(87), [anon_sym_thread] = ACTIONS(89), [anon_sym_atomic] = ACTIONS(91), - [sym___double_quote] = ACTIONS(115), - [sym___single_quote] = ACTIONS(117), - [sym___c_double_quote] = ACTIONS(119), - [sym___c_single_quote] = ACTIONS(121), - [sym___r_double_quote] = ACTIONS(123), - [sym___r_single_quote] = ACTIONS(125), + [sym___double_quote] = ACTIONS(1480), + [sym___single_quote] = ACTIONS(1482), + [sym___c_double_quote] = ACTIONS(1484), + [sym___c_single_quote] = ACTIONS(1486), + [sym___r_double_quote] = ACTIONS(1488), + [sym___r_single_quote] = ACTIONS(1490), }, [512] = { [sym_line_comment] = STATE(512), [sym_block_comment] = STATE(512), - [sym__expression] = STATE(2751), - [sym__expression_without_blocks] = STATE(2300), - [sym__expression_with_blocks] = STATE(2300), - [sym_inc_expression] = STATE(2307), - [sym_dec_expression] = STATE(2307), - [sym_or_block_expression] = STATE(2307), - [sym_option_propagation_expression] = STATE(2307), - [sym_result_propagation_expression] = STATE(2307), - [sym_anon_struct_value_expression] = STATE(2380), - [sym_go_expression] = STATE(2307), - [sym_spawn_expression] = STATE(2307), - [sym_parenthesized_expression] = STATE(2307), - [sym_call_expression] = STATE(2307), - [sym_type_initializer] = STATE(2380), - [sym_function_literal] = STATE(2307), - [sym_reference_expression] = STATE(2311), - [sym_type_reference_expression] = STATE(3541), - [sym_unary_expression] = STATE(2307), - [sym_receive_expression] = STATE(2307), - [sym_binary_expression] = STATE(2307), - [sym_as_type_cast_expression] = STATE(2307), - [sym__max_group] = STATE(2307), - [sym_literal] = STATE(2292), - [sym_map_init_expression] = STATE(2380), - [sym_array_creation] = STATE(2307), - [sym_fixed_array_creation] = STATE(2307), - [sym_selector_expression] = STATE(2307), - [sym_index_expression] = STATE(2307), - [sym_slice_expression] = STATE(2307), - [sym_if_expression] = STATE(2380), - [sym_compile_time_if_expression] = STATE(2380), - [sym_is_expression] = STATE(2307), - [sym_in_expression] = STATE(2307), - [sym_enum_fetch] = STATE(2307), - [sym_match_expression] = STATE(2380), - [sym_select_expression] = STATE(2380), - [sym_lock_expression] = STATE(2380), - [sym_unsafe_expression] = STATE(2380), - [sym_sql_expression] = STATE(2380), - [sym_c_string_literal] = STATE(2308), - [sym_raw_string_literal] = STATE(2308), - [sym_interpreted_string_literal] = STATE(2308), - [sym_mutability_modifiers] = STATE(944), - [sym_mutable_expression] = STATE(4326), - [sym_plain_type] = STATE(4297), - [sym__plain_type_without_special] = STATE(2302), - [sym_anon_struct_type] = STATE(2303), - [sym_multi_return_type] = STATE(2302), - [sym_result_type] = STATE(2302), - [sym_option_type] = STATE(2302), - [sym_qualified_type] = STATE(3541), - [sym_fixed_array_type] = STATE(2303), - [sym_array_type] = STATE(2303), - [sym_pointer_type] = STATE(2303), - [sym_wrong_pointer_type] = STATE(2303), - [sym_map_type] = STATE(2303), - [sym_channel_type] = STATE(2303), - [sym_shared_type] = STATE(2303), - [sym_thread_type] = STATE(2303), - [sym_atomic_type] = STATE(2303), - [sym_generic_type] = STATE(2303), - [sym_function_type] = STATE(2303), - [sym_identifier] = ACTIONS(1807), + [sym__expression] = STATE(1765), + [sym__expression_without_blocks] = STATE(1953), + [sym__expression_with_blocks] = STATE(1953), + [sym_inc_expression] = STATE(1955), + [sym_dec_expression] = STATE(1955), + [sym_or_block_expression] = STATE(1955), + [sym_option_propagation_expression] = STATE(1955), + [sym_result_propagation_expression] = STATE(1955), + [sym_anon_struct_value_expression] = STATE(1958), + [sym_go_expression] = STATE(1955), + [sym_spawn_expression] = STATE(1955), + [sym_parenthesized_expression] = STATE(1955), + [sym_call_expression] = STATE(1955), + [sym_type_initializer] = STATE(1958), + [sym_function_literal] = STATE(1955), + [sym_reference_expression] = STATE(1956), + [sym_type_reference_expression] = STATE(3460), + [sym_unary_expression] = STATE(1955), + [sym_receive_expression] = STATE(1955), + [sym_binary_expression] = STATE(1955), + [sym_as_type_cast_expression] = STATE(1955), + [sym__max_group] = STATE(1955), + [sym_literal] = STATE(1943), + [sym_map_init_expression] = STATE(1958), + [sym_array_creation] = STATE(1955), + [sym_fixed_array_creation] = STATE(1955), + [sym_selector_expression] = STATE(1955), + [sym_index_expression] = STATE(1955), + [sym_slice_expression] = STATE(1955), + [sym_if_expression] = STATE(1958), + [sym_compile_time_if_expression] = STATE(1958), + [sym_is_expression] = STATE(1955), + [sym_in_expression] = STATE(1955), + [sym_enum_fetch] = STATE(1955), + [sym_match_expression] = STATE(1958), + [sym_select_expression] = STATE(1958), + [sym_lock_expression] = STATE(1958), + [sym_unsafe_expression] = STATE(1958), + [sym_sql_expression] = STATE(1958), + [sym_c_string_literal] = STATE(1942), + [sym_raw_string_literal] = STATE(1942), + [sym_interpreted_string_literal] = STATE(1942), + [sym_mutability_modifiers] = STATE(707), + [sym_mutable_expression] = STATE(3264), + [sym_plain_type] = STATE(4266), + [sym__plain_type_without_special] = STATE(2360), + [sym_anon_struct_type] = STATE(2362), + [sym_multi_return_type] = STATE(2360), + [sym_result_type] = STATE(2360), + [sym_option_type] = STATE(2360), + [sym_qualified_type] = STATE(3460), + [sym_fixed_array_type] = STATE(2362), + [sym_array_type] = STATE(2362), + [sym_pointer_type] = STATE(2362), + [sym_wrong_pointer_type] = STATE(2362), + [sym_map_type] = STATE(2362), + [sym_channel_type] = STATE(2362), + [sym_shared_type] = STATE(2362), + [sym_thread_type] = STATE(2362), + [sym_atomic_type] = STATE(2362), + [sym_generic_type] = STATE(2362), + [sym_function_type] = STATE(2362), + [sym_identifier] = ACTIONS(1681), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1428), - [anon_sym_LBRACE] = ACTIONS(1430), - [anon_sym_LPAREN] = ACTIONS(1432), - [anon_sym_fn] = ACTIONS(1434), - [anon_sym_PLUS] = ACTIONS(3064), - [anon_sym_DASH] = ACTIONS(3064), - [anon_sym_STAR] = ACTIONS(3066), - [anon_sym_struct] = ACTIONS(1440), + [anon_sym_DOT] = ACTIONS(705), + [anon_sym_LBRACE] = ACTIONS(3118), + [anon_sym_LPAREN] = ACTIONS(709), + [anon_sym_fn] = ACTIONS(711), + [anon_sym_PLUS] = ACTIONS(713), + [anon_sym_DASH] = ACTIONS(713), + [anon_sym_STAR] = ACTIONS(715), + [anon_sym_struct] = ACTIONS(717), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(3068), - [anon_sym_go] = ACTIONS(3070), - [anon_sym_spawn] = ACTIONS(3072), - [anon_sym_json_DOTdecode] = ACTIONS(1448), - [anon_sym_LBRACK2] = ACTIONS(1821), - [anon_sym_TILDE] = ACTIONS(3064), - [anon_sym_CARET] = ACTIONS(3064), - [anon_sym_AMP] = ACTIONS(3074), - [anon_sym_LT_DASH] = ACTIONS(3076), - [sym_none] = ACTIONS(1456), - [sym_true] = ACTIONS(1456), - [sym_false] = ACTIONS(1456), - [sym_nil] = ACTIONS(1456), - [anon_sym_if] = ACTIONS(1827), - [anon_sym_DOLLARif] = ACTIONS(1460), - [anon_sym_match] = ACTIONS(1462), - [anon_sym_select] = ACTIONS(3078), - [anon_sym_lock] = ACTIONS(3080), - [anon_sym_rlock] = ACTIONS(3080), - [anon_sym_unsafe] = ACTIONS(1833), - [anon_sym_sql] = ACTIONS(1470), - [sym_int_literal] = ACTIONS(1456), - [sym_float_literal] = ACTIONS(1472), - [sym_rune_literal] = ACTIONS(1472), - [sym_pseudo_compile_time_identifier] = ACTIONS(1474), + [anon_sym_BANG] = ACTIONS(721), + [anon_sym_go] = ACTIONS(723), + [anon_sym_spawn] = ACTIONS(725), + [anon_sym_json_DOTdecode] = ACTIONS(727), + [anon_sym_LBRACK2] = ACTIONS(729), + [anon_sym_TILDE] = ACTIONS(713), + [anon_sym_CARET] = ACTIONS(713), + [anon_sym_AMP] = ACTIONS(731), + [anon_sym_LT_DASH] = ACTIONS(733), + [sym_none] = ACTIONS(735), + [sym_true] = ACTIONS(735), + [sym_false] = ACTIONS(735), + [sym_nil] = ACTIONS(735), + [anon_sym_if] = ACTIONS(737), + [anon_sym_DOLLARif] = ACTIONS(739), + [anon_sym_match] = ACTIONS(741), + [anon_sym_select] = ACTIONS(743), + [anon_sym_lock] = ACTIONS(745), + [anon_sym_rlock] = ACTIONS(745), + [anon_sym_unsafe] = ACTIONS(747), + [anon_sym_sql] = ACTIONS(749), + [sym_int_literal] = ACTIONS(735), + [sym_float_literal] = ACTIONS(751), + [sym_rune_literal] = ACTIONS(751), + [sym_pseudo_compile_time_identifier] = ACTIONS(753), [anon_sym_shared] = ACTIONS(83), [anon_sym_map_LBRACK] = ACTIONS(85), [anon_sym_chan] = ACTIONS(87), [anon_sym_thread] = ACTIONS(89), [anon_sym_atomic] = ACTIONS(91), - [sym___double_quote] = ACTIONS(1478), - [sym___single_quote] = ACTIONS(1480), - [sym___c_double_quote] = ACTIONS(1482), - [sym___c_single_quote] = ACTIONS(1484), - [sym___r_double_quote] = ACTIONS(1486), - [sym___r_single_quote] = ACTIONS(1488), + [sym___double_quote] = ACTIONS(755), + [sym___single_quote] = ACTIONS(757), + [sym___c_double_quote] = ACTIONS(759), + [sym___c_single_quote] = ACTIONS(761), + [sym___r_double_quote] = ACTIONS(763), + [sym___r_single_quote] = ACTIONS(765), }, [513] = { [sym_line_comment] = STATE(513), [sym_block_comment] = STATE(513), - [sym__expression] = STATE(2831), - [sym__expression_without_blocks] = STATE(2300), - [sym__expression_with_blocks] = STATE(2300), - [sym_inc_expression] = STATE(2307), - [sym_dec_expression] = STATE(2307), - [sym_or_block_expression] = STATE(2307), - [sym_option_propagation_expression] = STATE(2307), - [sym_result_propagation_expression] = STATE(2307), - [sym_anon_struct_value_expression] = STATE(2380), - [sym_go_expression] = STATE(2307), - [sym_spawn_expression] = STATE(2307), - [sym_parenthesized_expression] = STATE(2307), - [sym_call_expression] = STATE(2307), - [sym_type_initializer] = STATE(2380), - [sym_function_literal] = STATE(2307), - [sym_reference_expression] = STATE(2905), - [sym_type_reference_expression] = STATE(3541), - [sym_unary_expression] = STATE(2307), - [sym_receive_expression] = STATE(2307), - [sym_binary_expression] = STATE(2307), - [sym_as_type_cast_expression] = STATE(2307), - [sym__max_group] = STATE(2307), - [sym_literal] = STATE(2292), - [sym_map_init_expression] = STATE(2380), - [sym_array_creation] = STATE(2307), - [sym_fixed_array_creation] = STATE(2307), - [sym_selector_expression] = STATE(2939), - [sym_index_expression] = STATE(2307), - [sym_slice_expression] = STATE(2307), - [sym_if_expression] = STATE(2380), - [sym_compile_time_if_expression] = STATE(2380), - [sym_is_expression] = STATE(2307), - [sym_in_expression] = STATE(2307), - [sym_enum_fetch] = STATE(2307), - [sym_match_expression] = STATE(2380), - [sym_select_expression] = STATE(2380), - [sym_lock_expression] = STATE(2380), - [sym_unsafe_expression] = STATE(2380), - [sym_sql_expression] = STATE(2380), - [sym_c_string_literal] = STATE(2308), - [sym_raw_string_literal] = STATE(2308), - [sym_interpreted_string_literal] = STATE(2308), - [sym_mutability_modifiers] = STATE(939), - [sym_plain_type] = STATE(4297), - [sym__plain_type_without_special] = STATE(2302), - [sym_anon_struct_type] = STATE(2303), - [sym_multi_return_type] = STATE(2302), - [sym_result_type] = STATE(2302), - [sym_option_type] = STATE(2302), - [sym_qualified_type] = STATE(3541), - [sym_fixed_array_type] = STATE(2303), - [sym_array_type] = STATE(2303), - [sym_pointer_type] = STATE(2303), - [sym_wrong_pointer_type] = STATE(2303), - [sym_map_type] = STATE(2303), - [sym_channel_type] = STATE(2303), - [sym_shared_type] = STATE(2303), - [sym_thread_type] = STATE(2303), - [sym_atomic_type] = STATE(2303), - [sym_generic_type] = STATE(2303), - [sym_function_type] = STATE(2303), - [sym_identifier] = ACTIONS(1426), + [sym__expression] = STATE(2777), + [sym__expression_without_blocks] = STATE(2347), + [sym__expression_with_blocks] = STATE(2347), + [sym_inc_expression] = STATE(2379), + [sym_dec_expression] = STATE(2379), + [sym_or_block_expression] = STATE(2379), + [sym_option_propagation_expression] = STATE(2379), + [sym_result_propagation_expression] = STATE(2379), + [sym_anon_struct_value_expression] = STATE(2378), + [sym_go_expression] = STATE(2379), + [sym_spawn_expression] = STATE(2379), + [sym_parenthesized_expression] = STATE(2379), + [sym_call_expression] = STATE(2379), + [sym_type_initializer] = STATE(2378), + [sym_function_literal] = STATE(2379), + [sym_reference_expression] = STATE(2377), + [sym_type_reference_expression] = STATE(3460), + [sym_unary_expression] = STATE(2379), + [sym_receive_expression] = STATE(2379), + [sym_binary_expression] = STATE(2379), + [sym_as_type_cast_expression] = STATE(2379), + [sym__max_group] = STATE(2379), + [sym_literal] = STATE(2392), + [sym_map_init_expression] = STATE(2378), + [sym_array_creation] = STATE(2379), + [sym_fixed_array_creation] = STATE(2379), + [sym_selector_expression] = STATE(2379), + [sym_index_expression] = STATE(2379), + [sym_slice_expression] = STATE(2379), + [sym_if_expression] = STATE(2378), + [sym_compile_time_if_expression] = STATE(2378), + [sym_is_expression] = STATE(2379), + [sym_in_expression] = STATE(2379), + [sym_enum_fetch] = STATE(2379), + [sym_match_expression] = STATE(2378), + [sym_select_expression] = STATE(2378), + [sym_lock_expression] = STATE(2378), + [sym_unsafe_expression] = STATE(2378), + [sym_sql_expression] = STATE(2378), + [sym_c_string_literal] = STATE(2401), + [sym_raw_string_literal] = STATE(2401), + [sym_interpreted_string_literal] = STATE(2401), + [sym_mutability_modifiers] = STATE(906), + [sym_mutable_expression] = STATE(4468), + [sym_plain_type] = STATE(4160), + [sym__plain_type_without_special] = STATE(2360), + [sym_anon_struct_type] = STATE(2362), + [sym_multi_return_type] = STATE(2360), + [sym_result_type] = STATE(2360), + [sym_option_type] = STATE(2360), + [sym_qualified_type] = STATE(3460), + [sym_fixed_array_type] = STATE(2362), + [sym_array_type] = STATE(2362), + [sym_pointer_type] = STATE(2362), + [sym_wrong_pointer_type] = STATE(2362), + [sym_map_type] = STATE(2362), + [sym_channel_type] = STATE(2362), + [sym_shared_type] = STATE(2362), + [sym_thread_type] = STATE(2362), + [sym_atomic_type] = STATE(2362), + [sym_generic_type] = STATE(2362), + [sym_function_type] = STATE(2362), + [sym_identifier] = ACTIONS(1815), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1428), - [anon_sym_LBRACE] = ACTIONS(1430), - [anon_sym_LPAREN] = ACTIONS(1432), - [anon_sym_fn] = ACTIONS(1434), - [anon_sym_PLUS] = ACTIONS(1436), - [anon_sym_DASH] = ACTIONS(1436), - [anon_sym_STAR] = ACTIONS(1438), - [anon_sym_RBRACK] = ACTIONS(3100), - [anon_sym_struct] = ACTIONS(1440), + [anon_sym_DOT] = ACTIONS(1430), + [anon_sym_LBRACE] = ACTIONS(1432), + [anon_sym_LPAREN] = ACTIONS(1434), + [anon_sym_fn] = ACTIONS(1436), + [anon_sym_PLUS] = ACTIONS(3090), + [anon_sym_DASH] = ACTIONS(3090), + [anon_sym_STAR] = ACTIONS(3092), + [anon_sym_struct] = ACTIONS(1442), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(1442), - [anon_sym_go] = ACTIONS(1444), - [anon_sym_spawn] = ACTIONS(1446), - [anon_sym_json_DOTdecode] = ACTIONS(1448), - [anon_sym_LBRACK2] = ACTIONS(1450), - [anon_sym_TILDE] = ACTIONS(1436), - [anon_sym_CARET] = ACTIONS(1436), - [anon_sym_AMP] = ACTIONS(1452), - [anon_sym_LT_DASH] = ACTIONS(1454), - [sym_none] = ACTIONS(1456), - [sym_true] = ACTIONS(1456), - [sym_false] = ACTIONS(1456), - [sym_nil] = ACTIONS(1456), - [anon_sym_if] = ACTIONS(1827), - [anon_sym_DOLLARif] = ACTIONS(1460), - [anon_sym_match] = ACTIONS(1462), - [anon_sym_select] = ACTIONS(1464), - [anon_sym_lock] = ACTIONS(1466), - [anon_sym_rlock] = ACTIONS(1466), - [anon_sym_unsafe] = ACTIONS(1833), - [anon_sym_sql] = ACTIONS(1470), - [sym_int_literal] = ACTIONS(3102), - [sym_float_literal] = ACTIONS(1472), - [sym_rune_literal] = ACTIONS(1472), - [sym_pseudo_compile_time_identifier] = ACTIONS(1474), + [anon_sym_BANG] = ACTIONS(3094), + [anon_sym_go] = ACTIONS(3096), + [anon_sym_spawn] = ACTIONS(3098), + [anon_sym_json_DOTdecode] = ACTIONS(1450), + [anon_sym_LBRACK2] = ACTIONS(1827), + [anon_sym_TILDE] = ACTIONS(3090), + [anon_sym_CARET] = ACTIONS(3090), + [anon_sym_AMP] = ACTIONS(3100), + [anon_sym_LT_DASH] = ACTIONS(3102), + [sym_none] = ACTIONS(1458), + [sym_true] = ACTIONS(1458), + [sym_false] = ACTIONS(1458), + [sym_nil] = ACTIONS(1458), + [anon_sym_if] = ACTIONS(1833), + [anon_sym_DOLLARif] = ACTIONS(1462), + [anon_sym_match] = ACTIONS(1464), + [anon_sym_select] = ACTIONS(3104), + [anon_sym_lock] = ACTIONS(3106), + [anon_sym_rlock] = ACTIONS(3106), + [anon_sym_unsafe] = ACTIONS(1839), + [anon_sym_sql] = ACTIONS(1472), + [sym_int_literal] = ACTIONS(1458), + [sym_float_literal] = ACTIONS(1474), + [sym_rune_literal] = ACTIONS(1474), + [sym_pseudo_compile_time_identifier] = ACTIONS(1476), [anon_sym_shared] = ACTIONS(83), [anon_sym_map_LBRACK] = ACTIONS(85), [anon_sym_chan] = ACTIONS(87), [anon_sym_thread] = ACTIONS(89), [anon_sym_atomic] = ACTIONS(91), - [sym___double_quote] = ACTIONS(1478), - [sym___single_quote] = ACTIONS(1480), - [sym___c_double_quote] = ACTIONS(1482), - [sym___c_single_quote] = ACTIONS(1484), - [sym___r_double_quote] = ACTIONS(1486), - [sym___r_single_quote] = ACTIONS(1488), + [sym___double_quote] = ACTIONS(1480), + [sym___single_quote] = ACTIONS(1482), + [sym___c_double_quote] = ACTIONS(1484), + [sym___c_single_quote] = ACTIONS(1486), + [sym___r_double_quote] = ACTIONS(1488), + [sym___r_single_quote] = ACTIONS(1490), }, [514] = { [sym_line_comment] = STATE(514), [sym_block_comment] = STATE(514), - [sym__expression] = STATE(2445), - [sym__expression_without_blocks] = STATE(2625), - [sym__expression_with_blocks] = STATE(2625), - [sym_inc_expression] = STATE(2765), - [sym_dec_expression] = STATE(2765), - [sym_or_block_expression] = STATE(2765), - [sym_option_propagation_expression] = STATE(2765), - [sym_result_propagation_expression] = STATE(2765), - [sym_anon_struct_value_expression] = STATE(2619), - [sym_go_expression] = STATE(2765), - [sym_spawn_expression] = STATE(2765), - [sym_parenthesized_expression] = STATE(2765), - [sym_call_expression] = STATE(2765), - [sym_type_initializer] = STATE(2619), - [sym_function_literal] = STATE(2765), - [sym_reference_expression] = STATE(2764), - [sym_type_reference_expression] = STATE(3541), - [sym_unary_expression] = STATE(2765), - [sym_receive_expression] = STATE(2765), - [sym_binary_expression] = STATE(2765), - [sym_as_type_cast_expression] = STATE(2765), - [sym__max_group] = STATE(2765), - [sym_literal] = STATE(2769), - [sym_map_init_expression] = STATE(2619), - [sym_array_creation] = STATE(2765), - [sym_fixed_array_creation] = STATE(2765), - [sym_selector_expression] = STATE(2765), - [sym_index_expression] = STATE(2765), - [sym_slice_expression] = STATE(2765), - [sym_if_expression] = STATE(2619), - [sym_compile_time_if_expression] = STATE(2619), - [sym_is_expression] = STATE(2765), - [sym_in_expression] = STATE(2765), - [sym_enum_fetch] = STATE(2765), - [sym_match_expression] = STATE(2619), - [sym_select_expression] = STATE(2619), - [sym_lock_expression] = STATE(2619), - [sym_unsafe_expression] = STATE(2619), - [sym_sql_expression] = STATE(2619), - [sym_c_string_literal] = STATE(2660), - [sym_raw_string_literal] = STATE(2660), - [sym_interpreted_string_literal] = STATE(2660), - [sym_mutability_modifiers] = STATE(567), - [sym_plain_type] = STATE(3931), - [sym__plain_type_without_special] = STATE(2302), - [sym_anon_struct_type] = STATE(2303), - [sym_multi_return_type] = STATE(2302), - [sym_result_type] = STATE(2302), - [sym_option_type] = STATE(2302), - [sym_qualified_type] = STATE(3541), - [sym_fixed_array_type] = STATE(2303), - [sym_array_type] = STATE(2303), - [sym_pointer_type] = STATE(2303), - [sym_wrong_pointer_type] = STATE(2303), - [sym_map_type] = STATE(2303), - [sym_channel_type] = STATE(2303), - [sym_shared_type] = STATE(2303), - [sym_thread_type] = STATE(2303), - [sym_atomic_type] = STATE(2303), - [sym_generic_type] = STATE(2303), - [sym_function_type] = STATE(2303), - [sym_identifier] = ACTIONS(1079), + [sym__expression] = STATE(2830), + [sym__expression_without_blocks] = STATE(2347), + [sym__expression_with_blocks] = STATE(2347), + [sym_inc_expression] = STATE(2379), + [sym_dec_expression] = STATE(2379), + [sym_or_block_expression] = STATE(2379), + [sym_option_propagation_expression] = STATE(2379), + [sym_result_propagation_expression] = STATE(2379), + [sym_anon_struct_value_expression] = STATE(2378), + [sym_go_expression] = STATE(2379), + [sym_spawn_expression] = STATE(2379), + [sym_parenthesized_expression] = STATE(2379), + [sym_call_expression] = STATE(2379), + [sym_type_initializer] = STATE(2378), + [sym_function_literal] = STATE(2379), + [sym_reference_expression] = STATE(2920), + [sym_type_reference_expression] = STATE(3460), + [sym_unary_expression] = STATE(2379), + [sym_receive_expression] = STATE(2379), + [sym_binary_expression] = STATE(2379), + [sym_as_type_cast_expression] = STATE(2379), + [sym__max_group] = STATE(2379), + [sym_literal] = STATE(2392), + [sym_map_init_expression] = STATE(2378), + [sym_array_creation] = STATE(2379), + [sym_fixed_array_creation] = STATE(2379), + [sym_selector_expression] = STATE(2885), + [sym_index_expression] = STATE(2379), + [sym_slice_expression] = STATE(2379), + [sym_if_expression] = STATE(2378), + [sym_compile_time_if_expression] = STATE(2378), + [sym_is_expression] = STATE(2379), + [sym_in_expression] = STATE(2379), + [sym_enum_fetch] = STATE(2379), + [sym_match_expression] = STATE(2378), + [sym_select_expression] = STATE(2378), + [sym_lock_expression] = STATE(2378), + [sym_unsafe_expression] = STATE(2378), + [sym_sql_expression] = STATE(2378), + [sym_c_string_literal] = STATE(2401), + [sym_raw_string_literal] = STATE(2401), + [sym_interpreted_string_literal] = STATE(2401), + [sym_mutability_modifiers] = STATE(939), + [sym_plain_type] = STATE(4160), + [sym__plain_type_without_special] = STATE(2360), + [sym_anon_struct_type] = STATE(2362), + [sym_multi_return_type] = STATE(2360), + [sym_result_type] = STATE(2360), + [sym_option_type] = STATE(2360), + [sym_qualified_type] = STATE(3460), + [sym_fixed_array_type] = STATE(2362), + [sym_array_type] = STATE(2362), + [sym_pointer_type] = STATE(2362), + [sym_wrong_pointer_type] = STATE(2362), + [sym_map_type] = STATE(2362), + [sym_channel_type] = STATE(2362), + [sym_shared_type] = STATE(2362), + [sym_thread_type] = STATE(2362), + [sym_atomic_type] = STATE(2362), + [sym_generic_type] = STATE(2362), + [sym_function_type] = STATE(2362), + [sym_identifier] = ACTIONS(1428), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1081), - [anon_sym_LBRACE] = ACTIONS(1083), - [anon_sym_COMMA] = ACTIONS(563), - [anon_sym_LPAREN] = ACTIONS(1087), - [anon_sym_fn] = ACTIONS(1089), - [anon_sym_PLUS] = ACTIONS(1091), - [anon_sym_DASH] = ACTIONS(1091), - [anon_sym_STAR] = ACTIONS(1093), - [anon_sym_struct] = ACTIONS(1095), + [anon_sym_DOT] = ACTIONS(1430), + [anon_sym_LBRACE] = ACTIONS(1432), + [anon_sym_LPAREN] = ACTIONS(1434), + [anon_sym_fn] = ACTIONS(1436), + [anon_sym_PLUS] = ACTIONS(1438), + [anon_sym_DASH] = ACTIONS(1438), + [anon_sym_STAR] = ACTIONS(1440), + [anon_sym_RBRACK] = ACTIONS(3120), + [anon_sym_struct] = ACTIONS(1442), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(1097), - [anon_sym_go] = ACTIONS(1099), - [anon_sym_spawn] = ACTIONS(1101), - [anon_sym_json_DOTdecode] = ACTIONS(1103), - [anon_sym_LBRACK2] = ACTIONS(1105), - [anon_sym_TILDE] = ACTIONS(1091), - [anon_sym_CARET] = ACTIONS(1091), - [anon_sym_AMP] = ACTIONS(1107), - [anon_sym_LT_DASH] = ACTIONS(1109), - [sym_none] = ACTIONS(1111), - [sym_true] = ACTIONS(1111), - [sym_false] = ACTIONS(1111), - [sym_nil] = ACTIONS(1111), - [anon_sym_if] = ACTIONS(1113), - [anon_sym_DOLLARif] = ACTIONS(1117), - [anon_sym_match] = ACTIONS(1119), - [anon_sym_select] = ACTIONS(3104), - [anon_sym_lock] = ACTIONS(3106), - [anon_sym_rlock] = ACTIONS(3106), - [anon_sym_unsafe] = ACTIONS(1125), - [anon_sym_sql] = ACTIONS(1127), - [sym_int_literal] = ACTIONS(1111), - [sym_float_literal] = ACTIONS(1129), - [sym_rune_literal] = ACTIONS(1129), - [sym_pseudo_compile_time_identifier] = ACTIONS(1131), + [anon_sym_BANG] = ACTIONS(1444), + [anon_sym_go] = ACTIONS(1446), + [anon_sym_spawn] = ACTIONS(1448), + [anon_sym_json_DOTdecode] = ACTIONS(1450), + [anon_sym_LBRACK2] = ACTIONS(1452), + [anon_sym_TILDE] = ACTIONS(1438), + [anon_sym_CARET] = ACTIONS(1438), + [anon_sym_AMP] = ACTIONS(1454), + [anon_sym_LT_DASH] = ACTIONS(1456), + [sym_none] = ACTIONS(1458), + [sym_true] = ACTIONS(1458), + [sym_false] = ACTIONS(1458), + [sym_nil] = ACTIONS(1458), + [anon_sym_if] = ACTIONS(1833), + [anon_sym_DOLLARif] = ACTIONS(1462), + [anon_sym_match] = ACTIONS(1464), + [anon_sym_select] = ACTIONS(1466), + [anon_sym_lock] = ACTIONS(1468), + [anon_sym_rlock] = ACTIONS(1468), + [anon_sym_unsafe] = ACTIONS(1839), + [anon_sym_sql] = ACTIONS(1472), + [sym_int_literal] = ACTIONS(3122), + [sym_float_literal] = ACTIONS(1474), + [sym_rune_literal] = ACTIONS(1474), + [sym_pseudo_compile_time_identifier] = ACTIONS(1476), [anon_sym_shared] = ACTIONS(83), [anon_sym_map_LBRACK] = ACTIONS(85), [anon_sym_chan] = ACTIONS(87), [anon_sym_thread] = ACTIONS(89), [anon_sym_atomic] = ACTIONS(91), - [sym___double_quote] = ACTIONS(1133), - [sym___single_quote] = ACTIONS(1135), - [sym___c_double_quote] = ACTIONS(1137), - [sym___c_single_quote] = ACTIONS(1139), - [sym___r_double_quote] = ACTIONS(1141), - [sym___r_single_quote] = ACTIONS(1143), + [sym___double_quote] = ACTIONS(1480), + [sym___single_quote] = ACTIONS(1482), + [sym___c_double_quote] = ACTIONS(1484), + [sym___c_single_quote] = ACTIONS(1486), + [sym___r_double_quote] = ACTIONS(1488), + [sym___r_single_quote] = ACTIONS(1490), }, [515] = { [sym_line_comment] = STATE(515), [sym_block_comment] = STATE(515), - [sym__expression] = STATE(2831), - [sym__expression_without_blocks] = STATE(2300), - [sym__expression_with_blocks] = STATE(2300), - [sym_inc_expression] = STATE(2307), - [sym_dec_expression] = STATE(2307), - [sym_or_block_expression] = STATE(2307), - [sym_option_propagation_expression] = STATE(2307), - [sym_result_propagation_expression] = STATE(2307), - [sym_anon_struct_value_expression] = STATE(2380), - [sym_go_expression] = STATE(2307), - [sym_spawn_expression] = STATE(2307), - [sym_parenthesized_expression] = STATE(2307), - [sym_call_expression] = STATE(2307), - [sym_type_initializer] = STATE(2380), - [sym_function_literal] = STATE(2307), - [sym_reference_expression] = STATE(2955), - [sym_type_reference_expression] = STATE(3541), - [sym_unary_expression] = STATE(2307), - [sym_receive_expression] = STATE(2307), - [sym_binary_expression] = STATE(2307), - [sym_as_type_cast_expression] = STATE(2307), - [sym__max_group] = STATE(2307), - [sym_literal] = STATE(2292), - [sym_map_init_expression] = STATE(2380), - [sym_array_creation] = STATE(2307), - [sym_fixed_array_creation] = STATE(2307), - [sym_selector_expression] = STATE(2947), - [sym_index_expression] = STATE(2307), - [sym_slice_expression] = STATE(2307), - [sym_if_expression] = STATE(2380), - [sym_compile_time_if_expression] = STATE(2380), - [sym_is_expression] = STATE(2307), - [sym_in_expression] = STATE(2307), - [sym_enum_fetch] = STATE(2307), - [sym_match_expression] = STATE(2380), - [sym_select_expression] = STATE(2380), - [sym_lock_expression] = STATE(2380), - [sym_unsafe_expression] = STATE(2380), - [sym_sql_expression] = STATE(2380), - [sym_c_string_literal] = STATE(2308), - [sym_raw_string_literal] = STATE(2308), - [sym_interpreted_string_literal] = STATE(2308), - [sym_mutability_modifiers] = STATE(939), - [sym_plain_type] = STATE(4297), - [sym__plain_type_without_special] = STATE(2302), - [sym_anon_struct_type] = STATE(2303), - [sym_multi_return_type] = STATE(2302), - [sym_result_type] = STATE(2302), - [sym_option_type] = STATE(2302), - [sym_qualified_type] = STATE(3541), - [sym_fixed_array_type] = STATE(2303), - [sym_array_type] = STATE(2303), - [sym_pointer_type] = STATE(2303), - [sym_wrong_pointer_type] = STATE(2303), - [sym_map_type] = STATE(2303), - [sym_channel_type] = STATE(2303), - [sym_shared_type] = STATE(2303), - [sym_thread_type] = STATE(2303), - [sym_atomic_type] = STATE(2303), - [sym_generic_type] = STATE(2303), - [sym_function_type] = STATE(2303), - [sym_identifier] = ACTIONS(1426), + [sym__expression] = STATE(2754), + [sym__expression_without_blocks] = STATE(2347), + [sym__expression_with_blocks] = STATE(2347), + [sym_inc_expression] = STATE(2379), + [sym_dec_expression] = STATE(2379), + [sym_or_block_expression] = STATE(2379), + [sym_option_propagation_expression] = STATE(2379), + [sym_result_propagation_expression] = STATE(2379), + [sym_anon_struct_value_expression] = STATE(2378), + [sym_go_expression] = STATE(2379), + [sym_spawn_expression] = STATE(2379), + [sym_parenthesized_expression] = STATE(2379), + [sym_call_expression] = STATE(2379), + [sym_type_initializer] = STATE(2378), + [sym_function_literal] = STATE(2379), + [sym_reference_expression] = STATE(2377), + [sym_type_reference_expression] = STATE(3460), + [sym_unary_expression] = STATE(2379), + [sym_receive_expression] = STATE(2379), + [sym_binary_expression] = STATE(2379), + [sym_as_type_cast_expression] = STATE(2379), + [sym__max_group] = STATE(2379), + [sym_literal] = STATE(2392), + [sym_map_init_expression] = STATE(2378), + [sym_array_creation] = STATE(2379), + [sym_fixed_array_creation] = STATE(2379), + [sym_selector_expression] = STATE(2379), + [sym_index_expression] = STATE(2379), + [sym_slice_expression] = STATE(2379), + [sym_if_expression] = STATE(2378), + [sym_compile_time_if_expression] = STATE(2378), + [sym_is_expression] = STATE(2379), + [sym_in_expression] = STATE(2379), + [sym_enum_fetch] = STATE(2379), + [sym_match_expression] = STATE(2378), + [sym_select_expression] = STATE(2378), + [sym_lock_expression] = STATE(2378), + [sym_unsafe_expression] = STATE(2378), + [sym_sql_expression] = STATE(2378), + [sym_c_string_literal] = STATE(2401), + [sym_raw_string_literal] = STATE(2401), + [sym_interpreted_string_literal] = STATE(2401), + [sym_mutability_modifiers] = STATE(906), + [sym_mutable_expression] = STATE(4394), + [sym_plain_type] = STATE(4160), + [sym__plain_type_without_special] = STATE(2360), + [sym_anon_struct_type] = STATE(2362), + [sym_multi_return_type] = STATE(2360), + [sym_result_type] = STATE(2360), + [sym_option_type] = STATE(2360), + [sym_qualified_type] = STATE(3460), + [sym_fixed_array_type] = STATE(2362), + [sym_array_type] = STATE(2362), + [sym_pointer_type] = STATE(2362), + [sym_wrong_pointer_type] = STATE(2362), + [sym_map_type] = STATE(2362), + [sym_channel_type] = STATE(2362), + [sym_shared_type] = STATE(2362), + [sym_thread_type] = STATE(2362), + [sym_atomic_type] = STATE(2362), + [sym_generic_type] = STATE(2362), + [sym_function_type] = STATE(2362), + [sym_identifier] = ACTIONS(1815), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1428), - [anon_sym_LBRACE] = ACTIONS(1430), - [anon_sym_LPAREN] = ACTIONS(1432), - [anon_sym_fn] = ACTIONS(1434), - [anon_sym_PLUS] = ACTIONS(1436), - [anon_sym_DASH] = ACTIONS(1436), - [anon_sym_STAR] = ACTIONS(1438), - [anon_sym_RBRACK] = ACTIONS(3108), - [anon_sym_struct] = ACTIONS(1440), + [anon_sym_DOT] = ACTIONS(1430), + [anon_sym_LBRACE] = ACTIONS(1432), + [anon_sym_LPAREN] = ACTIONS(1434), + [anon_sym_fn] = ACTIONS(1436), + [anon_sym_PLUS] = ACTIONS(3090), + [anon_sym_DASH] = ACTIONS(3090), + [anon_sym_STAR] = ACTIONS(3092), + [anon_sym_struct] = ACTIONS(1442), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(1442), - [anon_sym_go] = ACTIONS(1444), - [anon_sym_spawn] = ACTIONS(1446), - [anon_sym_json_DOTdecode] = ACTIONS(1448), - [anon_sym_LBRACK2] = ACTIONS(1450), - [anon_sym_TILDE] = ACTIONS(1436), - [anon_sym_CARET] = ACTIONS(1436), - [anon_sym_AMP] = ACTIONS(1452), - [anon_sym_LT_DASH] = ACTIONS(1454), - [sym_none] = ACTIONS(1456), - [sym_true] = ACTIONS(1456), - [sym_false] = ACTIONS(1456), - [sym_nil] = ACTIONS(1456), - [anon_sym_if] = ACTIONS(1827), - [anon_sym_DOLLARif] = ACTIONS(1460), - [anon_sym_match] = ACTIONS(1462), - [anon_sym_select] = ACTIONS(1464), - [anon_sym_lock] = ACTIONS(1466), - [anon_sym_rlock] = ACTIONS(1466), - [anon_sym_unsafe] = ACTIONS(1833), - [anon_sym_sql] = ACTIONS(1470), - [sym_int_literal] = ACTIONS(3110), - [sym_float_literal] = ACTIONS(1472), - [sym_rune_literal] = ACTIONS(1472), - [sym_pseudo_compile_time_identifier] = ACTIONS(1474), + [anon_sym_BANG] = ACTIONS(3094), + [anon_sym_go] = ACTIONS(3096), + [anon_sym_spawn] = ACTIONS(3098), + [anon_sym_json_DOTdecode] = ACTIONS(1450), + [anon_sym_LBRACK2] = ACTIONS(1827), + [anon_sym_TILDE] = ACTIONS(3090), + [anon_sym_CARET] = ACTIONS(3090), + [anon_sym_AMP] = ACTIONS(3100), + [anon_sym_LT_DASH] = ACTIONS(3102), + [sym_none] = ACTIONS(1458), + [sym_true] = ACTIONS(1458), + [sym_false] = ACTIONS(1458), + [sym_nil] = ACTIONS(1458), + [anon_sym_if] = ACTIONS(1833), + [anon_sym_DOLLARif] = ACTIONS(1462), + [anon_sym_match] = ACTIONS(1464), + [anon_sym_select] = ACTIONS(3104), + [anon_sym_lock] = ACTIONS(3106), + [anon_sym_rlock] = ACTIONS(3106), + [anon_sym_unsafe] = ACTIONS(1839), + [anon_sym_sql] = ACTIONS(1472), + [sym_int_literal] = ACTIONS(1458), + [sym_float_literal] = ACTIONS(1474), + [sym_rune_literal] = ACTIONS(1474), + [sym_pseudo_compile_time_identifier] = ACTIONS(1476), [anon_sym_shared] = ACTIONS(83), [anon_sym_map_LBRACK] = ACTIONS(85), [anon_sym_chan] = ACTIONS(87), [anon_sym_thread] = ACTIONS(89), [anon_sym_atomic] = ACTIONS(91), - [sym___double_quote] = ACTIONS(1478), - [sym___single_quote] = ACTIONS(1480), - [sym___c_double_quote] = ACTIONS(1482), - [sym___c_single_quote] = ACTIONS(1484), - [sym___r_double_quote] = ACTIONS(1486), - [sym___r_single_quote] = ACTIONS(1488), + [sym___double_quote] = ACTIONS(1480), + [sym___single_quote] = ACTIONS(1482), + [sym___c_double_quote] = ACTIONS(1484), + [sym___c_single_quote] = ACTIONS(1486), + [sym___r_double_quote] = ACTIONS(1488), + [sym___r_single_quote] = ACTIONS(1490), }, [516] = { [sym_line_comment] = STATE(516), [sym_block_comment] = STATE(516), - [sym__expression] = STATE(2793), - [sym__expression_without_blocks] = STATE(2300), - [sym__expression_with_blocks] = STATE(2300), - [sym_inc_expression] = STATE(2307), - [sym_dec_expression] = STATE(2307), - [sym_or_block_expression] = STATE(2307), - [sym_option_propagation_expression] = STATE(2307), - [sym_result_propagation_expression] = STATE(2307), - [sym_anon_struct_value_expression] = STATE(2380), - [sym_go_expression] = STATE(2307), - [sym_spawn_expression] = STATE(2307), - [sym_parenthesized_expression] = STATE(2307), - [sym_call_expression] = STATE(2307), - [sym_type_initializer] = STATE(2380), - [sym_function_literal] = STATE(2307), - [sym_reference_expression] = STATE(2311), - [sym_type_reference_expression] = STATE(3541), - [sym_unary_expression] = STATE(2307), - [sym_receive_expression] = STATE(2307), - [sym_binary_expression] = STATE(2307), - [sym_as_type_cast_expression] = STATE(2307), - [sym__max_group] = STATE(2307), - [sym_literal] = STATE(2292), - [sym_map_init_expression] = STATE(2380), - [sym_array_creation] = STATE(2307), - [sym_fixed_array_creation] = STATE(2307), - [sym_selector_expression] = STATE(2307), - [sym_index_expression] = STATE(2307), - [sym_slice_expression] = STATE(2307), - [sym_if_expression] = STATE(2380), - [sym_compile_time_if_expression] = STATE(2380), - [sym_is_expression] = STATE(2307), - [sym_in_expression] = STATE(2307), - [sym_enum_fetch] = STATE(2307), - [sym_match_expression] = STATE(2380), - [sym_select_expression] = STATE(2380), - [sym_lock_expression] = STATE(2380), - [sym_unsafe_expression] = STATE(2380), - [sym_sql_expression] = STATE(2380), - [sym_c_string_literal] = STATE(2308), - [sym_raw_string_literal] = STATE(2308), - [sym_interpreted_string_literal] = STATE(2308), + [sym__expression] = STATE(2830), + [sym__expression_without_blocks] = STATE(2347), + [sym__expression_with_blocks] = STATE(2347), + [sym_inc_expression] = STATE(2379), + [sym_dec_expression] = STATE(2379), + [sym_or_block_expression] = STATE(2379), + [sym_option_propagation_expression] = STATE(2379), + [sym_result_propagation_expression] = STATE(2379), + [sym_anon_struct_value_expression] = STATE(2378), + [sym_go_expression] = STATE(2379), + [sym_spawn_expression] = STATE(2379), + [sym_parenthesized_expression] = STATE(2379), + [sym_call_expression] = STATE(2379), + [sym_type_initializer] = STATE(2378), + [sym_function_literal] = STATE(2379), + [sym_reference_expression] = STATE(2922), + [sym_type_reference_expression] = STATE(3460), + [sym_unary_expression] = STATE(2379), + [sym_receive_expression] = STATE(2379), + [sym_binary_expression] = STATE(2379), + [sym_as_type_cast_expression] = STATE(2379), + [sym__max_group] = STATE(2379), + [sym_literal] = STATE(2392), + [sym_map_init_expression] = STATE(2378), + [sym_array_creation] = STATE(2379), + [sym_fixed_array_creation] = STATE(2379), + [sym_selector_expression] = STATE(2924), + [sym_index_expression] = STATE(2379), + [sym_slice_expression] = STATE(2379), + [sym_if_expression] = STATE(2378), + [sym_compile_time_if_expression] = STATE(2378), + [sym_is_expression] = STATE(2379), + [sym_in_expression] = STATE(2379), + [sym_enum_fetch] = STATE(2379), + [sym_match_expression] = STATE(2378), + [sym_select_expression] = STATE(2378), + [sym_lock_expression] = STATE(2378), + [sym_unsafe_expression] = STATE(2378), + [sym_sql_expression] = STATE(2378), + [sym_c_string_literal] = STATE(2401), + [sym_raw_string_literal] = STATE(2401), + [sym_interpreted_string_literal] = STATE(2401), [sym_mutability_modifiers] = STATE(939), - [sym_plain_type] = STATE(4297), - [sym__plain_type_without_special] = STATE(2302), - [sym_anon_struct_type] = STATE(2303), - [sym_multi_return_type] = STATE(2302), - [sym_result_type] = STATE(2302), - [sym_option_type] = STATE(2302), - [sym_qualified_type] = STATE(3541), - [sym_fixed_array_type] = STATE(2303), - [sym_array_type] = STATE(2303), - [sym_pointer_type] = STATE(2303), - [sym_wrong_pointer_type] = STATE(2303), - [sym_map_type] = STATE(2303), - [sym_channel_type] = STATE(2303), - [sym_shared_type] = STATE(2303), - [sym_thread_type] = STATE(2303), - [sym_atomic_type] = STATE(2303), - [sym_generic_type] = STATE(2303), - [sym_function_type] = STATE(2303), - [sym_identifier] = ACTIONS(1426), + [sym_plain_type] = STATE(4160), + [sym__plain_type_without_special] = STATE(2360), + [sym_anon_struct_type] = STATE(2362), + [sym_multi_return_type] = STATE(2360), + [sym_result_type] = STATE(2360), + [sym_option_type] = STATE(2360), + [sym_qualified_type] = STATE(3460), + [sym_fixed_array_type] = STATE(2362), + [sym_array_type] = STATE(2362), + [sym_pointer_type] = STATE(2362), + [sym_wrong_pointer_type] = STATE(2362), + [sym_map_type] = STATE(2362), + [sym_channel_type] = STATE(2362), + [sym_shared_type] = STATE(2362), + [sym_thread_type] = STATE(2362), + [sym_atomic_type] = STATE(2362), + [sym_generic_type] = STATE(2362), + [sym_function_type] = STATE(2362), + [sym_identifier] = ACTIONS(1428), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_SEMI] = ACTIONS(3112), - [anon_sym_DOT] = ACTIONS(1428), - [anon_sym_LBRACE] = ACTIONS(1430), - [anon_sym_LPAREN] = ACTIONS(1432), - [anon_sym_fn] = ACTIONS(1434), - [anon_sym_PLUS] = ACTIONS(1436), - [anon_sym_DASH] = ACTIONS(1436), - [anon_sym_STAR] = ACTIONS(1438), - [anon_sym_struct] = ACTIONS(1440), + [anon_sym_DOT] = ACTIONS(1430), + [anon_sym_LBRACE] = ACTIONS(1432), + [anon_sym_LPAREN] = ACTIONS(1434), + [anon_sym_fn] = ACTIONS(1436), + [anon_sym_PLUS] = ACTIONS(1438), + [anon_sym_DASH] = ACTIONS(1438), + [anon_sym_STAR] = ACTIONS(1440), + [anon_sym_RBRACK] = ACTIONS(3124), + [anon_sym_struct] = ACTIONS(1442), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(1442), - [anon_sym_go] = ACTIONS(1444), - [anon_sym_spawn] = ACTIONS(1446), - [anon_sym_json_DOTdecode] = ACTIONS(1448), - [anon_sym_LBRACK2] = ACTIONS(1450), - [anon_sym_TILDE] = ACTIONS(1436), - [anon_sym_CARET] = ACTIONS(1436), - [anon_sym_AMP] = ACTIONS(1452), - [anon_sym_LT_DASH] = ACTIONS(1454), - [sym_none] = ACTIONS(1456), - [sym_true] = ACTIONS(1456), - [sym_false] = ACTIONS(1456), - [sym_nil] = ACTIONS(1456), - [anon_sym_if] = ACTIONS(1827), - [anon_sym_DOLLARif] = ACTIONS(1460), - [anon_sym_match] = ACTIONS(1462), - [anon_sym_select] = ACTIONS(1464), - [anon_sym_lock] = ACTIONS(1466), - [anon_sym_rlock] = ACTIONS(1466), - [anon_sym_unsafe] = ACTIONS(1833), - [anon_sym_sql] = ACTIONS(1470), - [sym_int_literal] = ACTIONS(1456), - [sym_float_literal] = ACTIONS(1472), - [sym_rune_literal] = ACTIONS(1472), - [sym_pseudo_compile_time_identifier] = ACTIONS(1474), + [anon_sym_BANG] = ACTIONS(1444), + [anon_sym_go] = ACTIONS(1446), + [anon_sym_spawn] = ACTIONS(1448), + [anon_sym_json_DOTdecode] = ACTIONS(1450), + [anon_sym_LBRACK2] = ACTIONS(1452), + [anon_sym_TILDE] = ACTIONS(1438), + [anon_sym_CARET] = ACTIONS(1438), + [anon_sym_AMP] = ACTIONS(1454), + [anon_sym_LT_DASH] = ACTIONS(1456), + [sym_none] = ACTIONS(1458), + [sym_true] = ACTIONS(1458), + [sym_false] = ACTIONS(1458), + [sym_nil] = ACTIONS(1458), + [anon_sym_if] = ACTIONS(1833), + [anon_sym_DOLLARif] = ACTIONS(1462), + [anon_sym_match] = ACTIONS(1464), + [anon_sym_select] = ACTIONS(1466), + [anon_sym_lock] = ACTIONS(1468), + [anon_sym_rlock] = ACTIONS(1468), + [anon_sym_unsafe] = ACTIONS(1839), + [anon_sym_sql] = ACTIONS(1472), + [sym_int_literal] = ACTIONS(3126), + [sym_float_literal] = ACTIONS(1474), + [sym_rune_literal] = ACTIONS(1474), + [sym_pseudo_compile_time_identifier] = ACTIONS(1476), [anon_sym_shared] = ACTIONS(83), [anon_sym_map_LBRACK] = ACTIONS(85), [anon_sym_chan] = ACTIONS(87), [anon_sym_thread] = ACTIONS(89), [anon_sym_atomic] = ACTIONS(91), - [sym___double_quote] = ACTIONS(1478), - [sym___single_quote] = ACTIONS(1480), - [sym___c_double_quote] = ACTIONS(1482), - [sym___c_single_quote] = ACTIONS(1484), - [sym___r_double_quote] = ACTIONS(1486), - [sym___r_single_quote] = ACTIONS(1488), + [sym___double_quote] = ACTIONS(1480), + [sym___single_quote] = ACTIONS(1482), + [sym___c_double_quote] = ACTIONS(1484), + [sym___c_single_quote] = ACTIONS(1486), + [sym___r_double_quote] = ACTIONS(1488), + [sym___r_single_quote] = ACTIONS(1490), }, [517] = { [sym_line_comment] = STATE(517), [sym_block_comment] = STATE(517), - [sym__expression] = STATE(2728), - [sym__expression_without_blocks] = STATE(2300), - [sym__expression_with_blocks] = STATE(2300), - [sym_inc_expression] = STATE(2307), - [sym_dec_expression] = STATE(2307), - [sym_or_block_expression] = STATE(2307), - [sym_option_propagation_expression] = STATE(2307), - [sym_result_propagation_expression] = STATE(2307), - [sym_anon_struct_value_expression] = STATE(2380), - [sym_go_expression] = STATE(2307), - [sym_spawn_expression] = STATE(2307), - [sym_parenthesized_expression] = STATE(2307), - [sym_call_expression] = STATE(2307), - [sym_type_initializer] = STATE(2380), - [sym_function_literal] = STATE(2307), - [sym_reference_expression] = STATE(2311), - [sym_type_reference_expression] = STATE(3541), - [sym_unary_expression] = STATE(2307), - [sym_receive_expression] = STATE(2307), - [sym_binary_expression] = STATE(2307), - [sym_as_type_cast_expression] = STATE(2307), - [sym__max_group] = STATE(2307), - [sym_literal] = STATE(2292), - [sym_map_init_expression] = STATE(2380), - [sym_array_creation] = STATE(2307), - [sym_fixed_array_creation] = STATE(2307), - [sym_selector_expression] = STATE(2307), - [sym_index_expression] = STATE(2307), - [sym_slice_expression] = STATE(2307), - [sym_if_expression] = STATE(2380), - [sym_compile_time_if_expression] = STATE(2380), - [sym_is_expression] = STATE(2307), - [sym_in_expression] = STATE(2307), - [sym_enum_fetch] = STATE(2307), - [sym_match_expression] = STATE(2380), - [sym_select_expression] = STATE(2380), - [sym_lock_expression] = STATE(2380), - [sym_unsafe_expression] = STATE(2380), - [sym_sql_expression] = STATE(2380), - [sym_c_string_literal] = STATE(2308), - [sym_raw_string_literal] = STATE(2308), - [sym_interpreted_string_literal] = STATE(2308), - [sym_mutability_modifiers] = STATE(939), - [sym_plain_type] = STATE(4297), - [sym__plain_type_without_special] = STATE(2302), - [sym_anon_struct_type] = STATE(2303), - [sym_multi_return_type] = STATE(2302), - [sym_result_type] = STATE(2302), - [sym_option_type] = STATE(2302), - [sym_qualified_type] = STATE(3541), - [sym_fixed_array_type] = STATE(2303), - [sym_array_type] = STATE(2303), - [sym_pointer_type] = STATE(2303), - [sym_wrong_pointer_type] = STATE(2303), - [sym_map_type] = STATE(2303), - [sym_channel_type] = STATE(2303), - [sym_shared_type] = STATE(2303), - [sym_thread_type] = STATE(2303), - [sym_atomic_type] = STATE(2303), - [sym_generic_type] = STATE(2303), - [sym_function_type] = STATE(2303), - [sym_identifier] = ACTIONS(1426), + [sym__expression] = STATE(2757), + [sym__expression_without_blocks] = STATE(2347), + [sym__expression_with_blocks] = STATE(2347), + [sym_inc_expression] = STATE(2379), + [sym_dec_expression] = STATE(2379), + [sym_or_block_expression] = STATE(2379), + [sym_option_propagation_expression] = STATE(2379), + [sym_result_propagation_expression] = STATE(2379), + [sym_anon_struct_value_expression] = STATE(2378), + [sym_go_expression] = STATE(2379), + [sym_spawn_expression] = STATE(2379), + [sym_parenthesized_expression] = STATE(2379), + [sym_call_expression] = STATE(2379), + [sym_type_initializer] = STATE(2378), + [sym_function_literal] = STATE(2379), + [sym_reference_expression] = STATE(2377), + [sym_type_reference_expression] = STATE(3460), + [sym_unary_expression] = STATE(2379), + [sym_receive_expression] = STATE(2379), + [sym_binary_expression] = STATE(2379), + [sym_as_type_cast_expression] = STATE(2379), + [sym__max_group] = STATE(2379), + [sym_literal] = STATE(2392), + [sym_map_init_expression] = STATE(2378), + [sym_array_creation] = STATE(2379), + [sym_fixed_array_creation] = STATE(2379), + [sym_selector_expression] = STATE(2379), + [sym_index_expression] = STATE(2379), + [sym_slice_expression] = STATE(2379), + [sym_if_expression] = STATE(2378), + [sym_compile_time_if_expression] = STATE(2378), + [sym_is_expression] = STATE(2379), + [sym_in_expression] = STATE(2379), + [sym_enum_fetch] = STATE(2379), + [sym_match_expression] = STATE(2378), + [sym_select_expression] = STATE(2378), + [sym_lock_expression] = STATE(2378), + [sym_unsafe_expression] = STATE(2378), + [sym_sql_expression] = STATE(2378), + [sym_c_string_literal] = STATE(2401), + [sym_raw_string_literal] = STATE(2401), + [sym_interpreted_string_literal] = STATE(2401), + [sym_mutability_modifiers] = STATE(906), + [sym_mutable_expression] = STATE(4415), + [sym_plain_type] = STATE(4160), + [sym__plain_type_without_special] = STATE(2360), + [sym_anon_struct_type] = STATE(2362), + [sym_multi_return_type] = STATE(2360), + [sym_result_type] = STATE(2360), + [sym_option_type] = STATE(2360), + [sym_qualified_type] = STATE(3460), + [sym_fixed_array_type] = STATE(2362), + [sym_array_type] = STATE(2362), + [sym_pointer_type] = STATE(2362), + [sym_wrong_pointer_type] = STATE(2362), + [sym_map_type] = STATE(2362), + [sym_channel_type] = STATE(2362), + [sym_shared_type] = STATE(2362), + [sym_thread_type] = STATE(2362), + [sym_atomic_type] = STATE(2362), + [sym_generic_type] = STATE(2362), + [sym_function_type] = STATE(2362), + [sym_identifier] = ACTIONS(1815), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_SEMI] = ACTIONS(3114), - [anon_sym_DOT] = ACTIONS(1428), - [anon_sym_LBRACE] = ACTIONS(1430), - [anon_sym_LPAREN] = ACTIONS(1432), - [anon_sym_fn] = ACTIONS(1434), - [anon_sym_PLUS] = ACTIONS(1436), - [anon_sym_DASH] = ACTIONS(1436), - [anon_sym_STAR] = ACTIONS(1438), - [anon_sym_struct] = ACTIONS(1440), + [anon_sym_DOT] = ACTIONS(1430), + [anon_sym_LBRACE] = ACTIONS(1432), + [anon_sym_LPAREN] = ACTIONS(1434), + [anon_sym_fn] = ACTIONS(1436), + [anon_sym_PLUS] = ACTIONS(3090), + [anon_sym_DASH] = ACTIONS(3090), + [anon_sym_STAR] = ACTIONS(3092), + [anon_sym_struct] = ACTIONS(1442), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(1442), - [anon_sym_go] = ACTIONS(1444), - [anon_sym_spawn] = ACTIONS(1446), - [anon_sym_json_DOTdecode] = ACTIONS(1448), - [anon_sym_LBRACK2] = ACTIONS(1450), - [anon_sym_TILDE] = ACTIONS(1436), - [anon_sym_CARET] = ACTIONS(1436), - [anon_sym_AMP] = ACTIONS(1452), - [anon_sym_LT_DASH] = ACTIONS(1454), - [sym_none] = ACTIONS(1456), - [sym_true] = ACTIONS(1456), - [sym_false] = ACTIONS(1456), - [sym_nil] = ACTIONS(1456), - [anon_sym_if] = ACTIONS(1827), - [anon_sym_DOLLARif] = ACTIONS(1460), - [anon_sym_match] = ACTIONS(1462), - [anon_sym_select] = ACTIONS(1464), - [anon_sym_lock] = ACTIONS(1466), - [anon_sym_rlock] = ACTIONS(1466), - [anon_sym_unsafe] = ACTIONS(1833), - [anon_sym_sql] = ACTIONS(1470), - [sym_int_literal] = ACTIONS(1456), - [sym_float_literal] = ACTIONS(1472), - [sym_rune_literal] = ACTIONS(1472), - [sym_pseudo_compile_time_identifier] = ACTIONS(1474), + [anon_sym_BANG] = ACTIONS(3094), + [anon_sym_go] = ACTIONS(3096), + [anon_sym_spawn] = ACTIONS(3098), + [anon_sym_json_DOTdecode] = ACTIONS(1450), + [anon_sym_LBRACK2] = ACTIONS(1827), + [anon_sym_TILDE] = ACTIONS(3090), + [anon_sym_CARET] = ACTIONS(3090), + [anon_sym_AMP] = ACTIONS(3100), + [anon_sym_LT_DASH] = ACTIONS(3102), + [sym_none] = ACTIONS(1458), + [sym_true] = ACTIONS(1458), + [sym_false] = ACTIONS(1458), + [sym_nil] = ACTIONS(1458), + [anon_sym_if] = ACTIONS(1833), + [anon_sym_DOLLARif] = ACTIONS(1462), + [anon_sym_match] = ACTIONS(1464), + [anon_sym_select] = ACTIONS(3104), + [anon_sym_lock] = ACTIONS(3106), + [anon_sym_rlock] = ACTIONS(3106), + [anon_sym_unsafe] = ACTIONS(1839), + [anon_sym_sql] = ACTIONS(1472), + [sym_int_literal] = ACTIONS(1458), + [sym_float_literal] = ACTIONS(1474), + [sym_rune_literal] = ACTIONS(1474), + [sym_pseudo_compile_time_identifier] = ACTIONS(1476), [anon_sym_shared] = ACTIONS(83), [anon_sym_map_LBRACK] = ACTIONS(85), [anon_sym_chan] = ACTIONS(87), [anon_sym_thread] = ACTIONS(89), [anon_sym_atomic] = ACTIONS(91), - [sym___double_quote] = ACTIONS(1478), - [sym___single_quote] = ACTIONS(1480), - [sym___c_double_quote] = ACTIONS(1482), - [sym___c_single_quote] = ACTIONS(1484), - [sym___r_double_quote] = ACTIONS(1486), - [sym___r_single_quote] = ACTIONS(1488), + [sym___double_quote] = ACTIONS(1480), + [sym___single_quote] = ACTIONS(1482), + [sym___c_double_quote] = ACTIONS(1484), + [sym___c_single_quote] = ACTIONS(1486), + [sym___r_double_quote] = ACTIONS(1488), + [sym___r_single_quote] = ACTIONS(1490), }, [518] = { [sym_line_comment] = STATE(518), [sym_block_comment] = STATE(518), - [sym__expression] = STATE(2831), - [sym__expression_without_blocks] = STATE(2300), - [sym__expression_with_blocks] = STATE(2300), - [sym_inc_expression] = STATE(2307), - [sym_dec_expression] = STATE(2307), - [sym_or_block_expression] = STATE(2307), - [sym_option_propagation_expression] = STATE(2307), - [sym_result_propagation_expression] = STATE(2307), - [sym_anon_struct_value_expression] = STATE(2380), - [sym_go_expression] = STATE(2307), - [sym_spawn_expression] = STATE(2307), - [sym_parenthesized_expression] = STATE(2307), - [sym_call_expression] = STATE(2307), - [sym_type_initializer] = STATE(2380), - [sym_function_literal] = STATE(2307), - [sym_reference_expression] = STATE(2918), - [sym_type_reference_expression] = STATE(3541), - [sym_unary_expression] = STATE(2307), - [sym_receive_expression] = STATE(2307), - [sym_binary_expression] = STATE(2307), - [sym_as_type_cast_expression] = STATE(2307), - [sym__max_group] = STATE(2307), - [sym_literal] = STATE(2292), - [sym_map_init_expression] = STATE(2380), - [sym_array_creation] = STATE(2307), - [sym_fixed_array_creation] = STATE(2307), - [sym_selector_expression] = STATE(2943), - [sym_index_expression] = STATE(2307), - [sym_slice_expression] = STATE(2307), - [sym_if_expression] = STATE(2380), - [sym_compile_time_if_expression] = STATE(2380), - [sym_is_expression] = STATE(2307), - [sym_in_expression] = STATE(2307), - [sym_enum_fetch] = STATE(2307), - [sym_match_expression] = STATE(2380), - [sym_select_expression] = STATE(2380), - [sym_lock_expression] = STATE(2380), - [sym_unsafe_expression] = STATE(2380), - [sym_sql_expression] = STATE(2380), - [sym_c_string_literal] = STATE(2308), - [sym_raw_string_literal] = STATE(2308), - [sym_interpreted_string_literal] = STATE(2308), - [sym_mutability_modifiers] = STATE(939), - [sym_plain_type] = STATE(4297), - [sym__plain_type_without_special] = STATE(2302), - [sym_anon_struct_type] = STATE(2303), - [sym_multi_return_type] = STATE(2302), - [sym_result_type] = STATE(2302), - [sym_option_type] = STATE(2302), - [sym_qualified_type] = STATE(3541), - [sym_fixed_array_type] = STATE(2303), - [sym_array_type] = STATE(2303), - [sym_pointer_type] = STATE(2303), - [sym_wrong_pointer_type] = STATE(2303), - [sym_map_type] = STATE(2303), - [sym_channel_type] = STATE(2303), - [sym_shared_type] = STATE(2303), - [sym_thread_type] = STATE(2303), - [sym_atomic_type] = STATE(2303), - [sym_generic_type] = STATE(2303), - [sym_function_type] = STATE(2303), - [sym_identifier] = ACTIONS(1426), + [sym__expression] = STATE(2624), + [sym__expression_without_blocks] = STATE(2347), + [sym__expression_with_blocks] = STATE(2347), + [sym_inc_expression] = STATE(2379), + [sym_dec_expression] = STATE(2379), + [sym_or_block_expression] = STATE(2379), + [sym_option_propagation_expression] = STATE(2379), + [sym_result_propagation_expression] = STATE(2379), + [sym_anon_struct_value_expression] = STATE(2378), + [sym_go_expression] = STATE(2379), + [sym_spawn_expression] = STATE(2379), + [sym_parenthesized_expression] = STATE(2379), + [sym_call_expression] = STATE(2379), + [sym_type_initializer] = STATE(2378), + [sym_function_literal] = STATE(2379), + [sym_reference_expression] = STATE(2377), + [sym_type_reference_expression] = STATE(3460), + [sym_unary_expression] = STATE(2379), + [sym_receive_expression] = STATE(2379), + [sym_binary_expression] = STATE(2379), + [sym_as_type_cast_expression] = STATE(2379), + [sym__max_group] = STATE(2379), + [sym_literal] = STATE(2392), + [sym_map_init_expression] = STATE(2378), + [sym_array_creation] = STATE(2379), + [sym_fixed_array_creation] = STATE(2379), + [sym_selector_expression] = STATE(2379), + [sym_index_expression] = STATE(2379), + [sym_slice_expression] = STATE(2379), + [sym_if_expression] = STATE(2378), + [sym_compile_time_if_expression] = STATE(2378), + [sym_is_expression] = STATE(2379), + [sym_in_expression] = STATE(2379), + [sym_enum_fetch] = STATE(2379), + [sym_match_expression] = STATE(2378), + [sym_select_expression] = STATE(2378), + [sym_lock_expression] = STATE(2378), + [sym_unsafe_expression] = STATE(2378), + [sym_sql_expression] = STATE(2378), + [sym_c_string_literal] = STATE(2401), + [sym_raw_string_literal] = STATE(2401), + [sym_interpreted_string_literal] = STATE(2401), + [sym_mutability_modifiers] = STATE(906), + [sym_mutable_expression] = STATE(4331), + [sym_plain_type] = STATE(4160), + [sym__plain_type_without_special] = STATE(2360), + [sym_anon_struct_type] = STATE(2362), + [sym_multi_return_type] = STATE(2360), + [sym_result_type] = STATE(2360), + [sym_option_type] = STATE(2360), + [sym_qualified_type] = STATE(3460), + [sym_fixed_array_type] = STATE(2362), + [sym_array_type] = STATE(2362), + [sym_pointer_type] = STATE(2362), + [sym_wrong_pointer_type] = STATE(2362), + [sym_map_type] = STATE(2362), + [sym_channel_type] = STATE(2362), + [sym_shared_type] = STATE(2362), + [sym_thread_type] = STATE(2362), + [sym_atomic_type] = STATE(2362), + [sym_generic_type] = STATE(2362), + [sym_function_type] = STATE(2362), + [sym_identifier] = ACTIONS(1815), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1428), - [anon_sym_LBRACE] = ACTIONS(1430), - [anon_sym_LPAREN] = ACTIONS(1432), - [anon_sym_fn] = ACTIONS(1434), - [anon_sym_PLUS] = ACTIONS(1436), - [anon_sym_DASH] = ACTIONS(1436), - [anon_sym_STAR] = ACTIONS(1438), - [anon_sym_RBRACK] = ACTIONS(3116), - [anon_sym_struct] = ACTIONS(1440), + [anon_sym_DOT] = ACTIONS(1430), + [anon_sym_LBRACE] = ACTIONS(1432), + [anon_sym_LPAREN] = ACTIONS(1434), + [anon_sym_fn] = ACTIONS(1436), + [anon_sym_PLUS] = ACTIONS(3090), + [anon_sym_DASH] = ACTIONS(3090), + [anon_sym_STAR] = ACTIONS(3092), + [anon_sym_struct] = ACTIONS(1442), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(1442), - [anon_sym_go] = ACTIONS(1444), - [anon_sym_spawn] = ACTIONS(1446), - [anon_sym_json_DOTdecode] = ACTIONS(1448), - [anon_sym_LBRACK2] = ACTIONS(1450), - [anon_sym_TILDE] = ACTIONS(1436), - [anon_sym_CARET] = ACTIONS(1436), - [anon_sym_AMP] = ACTIONS(1452), - [anon_sym_LT_DASH] = ACTIONS(1454), - [sym_none] = ACTIONS(1456), - [sym_true] = ACTIONS(1456), - [sym_false] = ACTIONS(1456), - [sym_nil] = ACTIONS(1456), - [anon_sym_if] = ACTIONS(1827), - [anon_sym_DOLLARif] = ACTIONS(1460), - [anon_sym_match] = ACTIONS(1462), - [anon_sym_select] = ACTIONS(1464), - [anon_sym_lock] = ACTIONS(1466), - [anon_sym_rlock] = ACTIONS(1466), - [anon_sym_unsafe] = ACTIONS(1833), - [anon_sym_sql] = ACTIONS(1470), - [sym_int_literal] = ACTIONS(3118), - [sym_float_literal] = ACTIONS(1472), - [sym_rune_literal] = ACTIONS(1472), - [sym_pseudo_compile_time_identifier] = ACTIONS(1474), + [anon_sym_BANG] = ACTIONS(3094), + [anon_sym_go] = ACTIONS(3096), + [anon_sym_spawn] = ACTIONS(3098), + [anon_sym_json_DOTdecode] = ACTIONS(1450), + [anon_sym_LBRACK2] = ACTIONS(1827), + [anon_sym_TILDE] = ACTIONS(3090), + [anon_sym_CARET] = ACTIONS(3090), + [anon_sym_AMP] = ACTIONS(3100), + [anon_sym_LT_DASH] = ACTIONS(3102), + [sym_none] = ACTIONS(1458), + [sym_true] = ACTIONS(1458), + [sym_false] = ACTIONS(1458), + [sym_nil] = ACTIONS(1458), + [anon_sym_if] = ACTIONS(1833), + [anon_sym_DOLLARif] = ACTIONS(1462), + [anon_sym_match] = ACTIONS(1464), + [anon_sym_select] = ACTIONS(3104), + [anon_sym_lock] = ACTIONS(3106), + [anon_sym_rlock] = ACTIONS(3106), + [anon_sym_unsafe] = ACTIONS(1839), + [anon_sym_sql] = ACTIONS(1472), + [sym_int_literal] = ACTIONS(1458), + [sym_float_literal] = ACTIONS(1474), + [sym_rune_literal] = ACTIONS(1474), + [sym_pseudo_compile_time_identifier] = ACTIONS(1476), [anon_sym_shared] = ACTIONS(83), [anon_sym_map_LBRACK] = ACTIONS(85), [anon_sym_chan] = ACTIONS(87), [anon_sym_thread] = ACTIONS(89), [anon_sym_atomic] = ACTIONS(91), - [sym___double_quote] = ACTIONS(1478), - [sym___single_quote] = ACTIONS(1480), - [sym___c_double_quote] = ACTIONS(1482), - [sym___c_single_quote] = ACTIONS(1484), - [sym___r_double_quote] = ACTIONS(1486), - [sym___r_single_quote] = ACTIONS(1488), + [sym___double_quote] = ACTIONS(1480), + [sym___single_quote] = ACTIONS(1482), + [sym___c_double_quote] = ACTIONS(1484), + [sym___c_single_quote] = ACTIONS(1486), + [sym___r_double_quote] = ACTIONS(1488), + [sym___r_single_quote] = ACTIONS(1490), }, [519] = { [sym_line_comment] = STATE(519), [sym_block_comment] = STATE(519), - [sym__expression] = STATE(2545), - [sym__expression_without_blocks] = STATE(2625), - [sym__expression_with_blocks] = STATE(2625), - [sym_inc_expression] = STATE(2765), - [sym_dec_expression] = STATE(2765), - [sym_or_block_expression] = STATE(2765), - [sym_option_propagation_expression] = STATE(2765), - [sym_result_propagation_expression] = STATE(2765), - [sym_anon_struct_value_expression] = STATE(2619), - [sym_go_expression] = STATE(2765), - [sym_spawn_expression] = STATE(2765), - [sym_parenthesized_expression] = STATE(2765), - [sym_call_expression] = STATE(2765), - [sym_type_initializer] = STATE(2619), - [sym_function_literal] = STATE(2765), - [sym_reference_expression] = STATE(2764), - [sym_type_reference_expression] = STATE(3541), - [sym_unary_expression] = STATE(2765), - [sym_receive_expression] = STATE(2765), - [sym_binary_expression] = STATE(2765), - [sym_as_type_cast_expression] = STATE(2765), - [sym__max_group] = STATE(2765), - [sym_literal] = STATE(2769), - [sym_map_init_expression] = STATE(2619), - [sym_array_creation] = STATE(2765), - [sym_fixed_array_creation] = STATE(2765), - [sym_selector_expression] = STATE(2765), - [sym_index_expression] = STATE(2765), - [sym_slice_expression] = STATE(2765), - [sym_if_expression] = STATE(2619), - [sym_compile_time_if_expression] = STATE(2619), - [sym_is_expression] = STATE(2765), - [sym_in_expression] = STATE(2765), - [sym_enum_fetch] = STATE(2765), - [sym_match_expression] = STATE(2619), - [sym_select_expression] = STATE(2619), - [sym_lock_expression] = STATE(2619), - [sym_unsafe_expression] = STATE(2619), - [sym_sql_expression] = STATE(2619), - [sym_c_string_literal] = STATE(2660), - [sym_raw_string_literal] = STATE(2660), - [sym_interpreted_string_literal] = STATE(2660), - [sym_mutability_modifiers] = STATE(567), - [sym_plain_type] = STATE(4008), - [sym__plain_type_without_special] = STATE(2302), - [sym_anon_struct_type] = STATE(2303), - [sym_multi_return_type] = STATE(2302), - [sym_result_type] = STATE(2302), - [sym_option_type] = STATE(2302), - [sym_qualified_type] = STATE(3541), - [sym_fixed_array_type] = STATE(2303), - [sym_array_type] = STATE(2303), - [sym_pointer_type] = STATE(2303), - [sym_wrong_pointer_type] = STATE(2303), - [sym_map_type] = STATE(2303), - [sym_channel_type] = STATE(2303), - [sym_shared_type] = STATE(2303), - [sym_thread_type] = STATE(2303), - [sym_atomic_type] = STATE(2303), - [sym_generic_type] = STATE(2303), - [sym_function_type] = STATE(2303), - [sym__definite_range] = STATE(4336), - [sym_identifier] = ACTIONS(1807), + [sym__expression] = STATE(2359), + [sym__expression_without_blocks] = STATE(2468), + [sym__expression_with_blocks] = STATE(2468), + [sym_inc_expression] = STATE(2469), + [sym_dec_expression] = STATE(2469), + [sym_or_block_expression] = STATE(2469), + [sym_option_propagation_expression] = STATE(2469), + [sym_result_propagation_expression] = STATE(2469), + [sym_anon_struct_value_expression] = STATE(2470), + [sym_go_expression] = STATE(2469), + [sym_spawn_expression] = STATE(2469), + [sym_parenthesized_expression] = STATE(2469), + [sym_call_expression] = STATE(2469), + [sym_type_initializer] = STATE(2470), + [sym_function_literal] = STATE(2469), + [sym_reference_expression] = STATE(2487), + [sym_type_reference_expression] = STATE(3460), + [sym_unary_expression] = STATE(2469), + [sym_receive_expression] = STATE(2469), + [sym_binary_expression] = STATE(2469), + [sym_as_type_cast_expression] = STATE(2469), + [sym__max_group] = STATE(2469), + [sym_literal] = STATE(2465), + [sym_map_init_expression] = STATE(2470), + [sym_array_creation] = STATE(2469), + [sym_fixed_array_creation] = STATE(2469), + [sym_selector_expression] = STATE(2469), + [sym_index_expression] = STATE(2469), + [sym_slice_expression] = STATE(2469), + [sym_if_expression] = STATE(2470), + [sym_compile_time_if_expression] = STATE(2470), + [sym_is_expression] = STATE(2469), + [sym_in_expression] = STATE(2469), + [sym_enum_fetch] = STATE(2469), + [sym_match_expression] = STATE(2470), + [sym_select_expression] = STATE(2470), + [sym_lock_expression] = STATE(2470), + [sym_unsafe_expression] = STATE(2470), + [sym_sql_expression] = STATE(2470), + [sym_c_string_literal] = STATE(2464), + [sym_raw_string_literal] = STATE(2464), + [sym_interpreted_string_literal] = STATE(2464), + [sym_mutability_modifiers] = STATE(805), + [sym_mutable_expression] = STATE(3560), + [sym_plain_type] = STATE(4038), + [sym__plain_type_without_special] = STATE(2360), + [sym_anon_struct_type] = STATE(2362), + [sym_multi_return_type] = STATE(2360), + [sym_result_type] = STATE(2360), + [sym_option_type] = STATE(2360), + [sym_qualified_type] = STATE(3460), + [sym_fixed_array_type] = STATE(2362), + [sym_array_type] = STATE(2362), + [sym_pointer_type] = STATE(2362), + [sym_wrong_pointer_type] = STATE(2362), + [sym_map_type] = STATE(2362), + [sym_channel_type] = STATE(2362), + [sym_shared_type] = STATE(2362), + [sym_thread_type] = STATE(2362), + [sym_atomic_type] = STATE(2362), + [sym_generic_type] = STATE(2362), + [sym_function_type] = STATE(2362), + [sym_identifier] = ACTIONS(1691), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1081), - [anon_sym_LBRACE] = ACTIONS(1083), - [anon_sym_LPAREN] = ACTIONS(1087), - [anon_sym_fn] = ACTIONS(1089), - [anon_sym_PLUS] = ACTIONS(3120), - [anon_sym_DASH] = ACTIONS(3120), - [anon_sym_STAR] = ACTIONS(3122), - [anon_sym_struct] = ACTIONS(1095), + [anon_sym_DOT] = ACTIONS(1693), + [anon_sym_LBRACE] = ACTIONS(2151), + [anon_sym_LPAREN] = ACTIONS(2153), + [anon_sym_fn] = ACTIONS(1699), + [anon_sym_PLUS] = ACTIONS(2155), + [anon_sym_DASH] = ACTIONS(2155), + [anon_sym_STAR] = ACTIONS(2157), + [anon_sym_struct] = ACTIONS(1705), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(3124), - [anon_sym_go] = ACTIONS(3126), - [anon_sym_spawn] = ACTIONS(3128), - [anon_sym_json_DOTdecode] = ACTIONS(1103), - [anon_sym_LBRACK2] = ACTIONS(1105), - [anon_sym_TILDE] = ACTIONS(3120), - [anon_sym_CARET] = ACTIONS(3120), - [anon_sym_AMP] = ACTIONS(3130), - [anon_sym_LT_DASH] = ACTIONS(3132), - [sym_none] = ACTIONS(1111), - [sym_true] = ACTIONS(1111), - [sym_false] = ACTIONS(1111), - [sym_nil] = ACTIONS(1111), - [anon_sym_if] = ACTIONS(1113), - [anon_sym_DOLLARif] = ACTIONS(1117), - [anon_sym_match] = ACTIONS(1119), - [anon_sym_select] = ACTIONS(3134), - [anon_sym_lock] = ACTIONS(3136), - [anon_sym_rlock] = ACTIONS(3136), - [anon_sym_unsafe] = ACTIONS(1125), - [anon_sym_sql] = ACTIONS(1127), - [sym_int_literal] = ACTIONS(1111), - [sym_float_literal] = ACTIONS(1129), - [sym_rune_literal] = ACTIONS(1129), - [sym_pseudo_compile_time_identifier] = ACTIONS(1131), + [anon_sym_BANG] = ACTIONS(2159), + [anon_sym_go] = ACTIONS(1709), + [anon_sym_spawn] = ACTIONS(1711), + [anon_sym_json_DOTdecode] = ACTIONS(2161), + [anon_sym_LBRACK2] = ACTIONS(2163), + [anon_sym_TILDE] = ACTIONS(2155), + [anon_sym_CARET] = ACTIONS(2155), + [anon_sym_AMP] = ACTIONS(2165), + [anon_sym_LT_DASH] = ACTIONS(2167), + [sym_none] = ACTIONS(1721), + [sym_true] = ACTIONS(1721), + [sym_false] = ACTIONS(1721), + [sym_nil] = ACTIONS(1721), + [anon_sym_if] = ACTIONS(1723), + [anon_sym_DOLLARif] = ACTIONS(1725), + [anon_sym_match] = ACTIONS(1727), + [anon_sym_select] = ACTIONS(1729), + [anon_sym_lock] = ACTIONS(1731), + [anon_sym_rlock] = ACTIONS(1731), + [anon_sym_unsafe] = ACTIONS(1733), + [anon_sym_sql] = ACTIONS(1735), + [sym_int_literal] = ACTIONS(1721), + [sym_float_literal] = ACTIONS(2169), + [sym_rune_literal] = ACTIONS(2169), + [sym_pseudo_compile_time_identifier] = ACTIONS(1737), [anon_sym_shared] = ACTIONS(83), [anon_sym_map_LBRACK] = ACTIONS(85), [anon_sym_chan] = ACTIONS(87), [anon_sym_thread] = ACTIONS(89), [anon_sym_atomic] = ACTIONS(91), - [sym___double_quote] = ACTIONS(1133), - [sym___single_quote] = ACTIONS(1135), - [sym___c_double_quote] = ACTIONS(1137), - [sym___c_single_quote] = ACTIONS(1139), - [sym___r_double_quote] = ACTIONS(1141), - [sym___r_single_quote] = ACTIONS(1143), + [sym___double_quote] = ACTIONS(2171), + [sym___single_quote] = ACTIONS(2173), + [sym___c_double_quote] = ACTIONS(2175), + [sym___c_single_quote] = ACTIONS(2177), + [sym___r_double_quote] = ACTIONS(2179), + [sym___r_single_quote] = ACTIONS(2181), }, [520] = { [sym_line_comment] = STATE(520), [sym_block_comment] = STATE(520), - [sym__expression] = STATE(2831), - [sym__expression_without_blocks] = STATE(2300), - [sym__expression_with_blocks] = STATE(2300), - [sym_inc_expression] = STATE(2307), - [sym_dec_expression] = STATE(2307), - [sym_or_block_expression] = STATE(2307), - [sym_option_propagation_expression] = STATE(2307), - [sym_result_propagation_expression] = STATE(2307), - [sym_anon_struct_value_expression] = STATE(2380), - [sym_go_expression] = STATE(2307), - [sym_spawn_expression] = STATE(2307), - [sym_parenthesized_expression] = STATE(2307), - [sym_call_expression] = STATE(2307), - [sym_type_initializer] = STATE(2380), - [sym_function_literal] = STATE(2307), - [sym_reference_expression] = STATE(2925), - [sym_type_reference_expression] = STATE(3541), - [sym_unary_expression] = STATE(2307), - [sym_receive_expression] = STATE(2307), - [sym_binary_expression] = STATE(2307), - [sym_as_type_cast_expression] = STATE(2307), - [sym__max_group] = STATE(2307), - [sym_literal] = STATE(2292), - [sym_map_init_expression] = STATE(2380), - [sym_array_creation] = STATE(2307), - [sym_fixed_array_creation] = STATE(2307), - [sym_selector_expression] = STATE(2924), - [sym_index_expression] = STATE(2307), - [sym_slice_expression] = STATE(2307), - [sym_if_expression] = STATE(2380), - [sym_compile_time_if_expression] = STATE(2380), - [sym_is_expression] = STATE(2307), - [sym_in_expression] = STATE(2307), - [sym_enum_fetch] = STATE(2307), - [sym_match_expression] = STATE(2380), - [sym_select_expression] = STATE(2380), - [sym_lock_expression] = STATE(2380), - [sym_unsafe_expression] = STATE(2380), - [sym_sql_expression] = STATE(2380), - [sym_c_string_literal] = STATE(2308), - [sym_raw_string_literal] = STATE(2308), - [sym_interpreted_string_literal] = STATE(2308), + [sym__expression] = STATE(2767), + [sym__expression_without_blocks] = STATE(2347), + [sym__expression_with_blocks] = STATE(2347), + [sym_inc_expression] = STATE(2379), + [sym_dec_expression] = STATE(2379), + [sym_or_block_expression] = STATE(2379), + [sym_option_propagation_expression] = STATE(2379), + [sym_result_propagation_expression] = STATE(2379), + [sym_anon_struct_value_expression] = STATE(2378), + [sym_go_expression] = STATE(2379), + [sym_spawn_expression] = STATE(2379), + [sym_parenthesized_expression] = STATE(2379), + [sym_call_expression] = STATE(2379), + [sym_type_initializer] = STATE(2378), + [sym_function_literal] = STATE(2379), + [sym_reference_expression] = STATE(2377), + [sym_type_reference_expression] = STATE(3460), + [sym_unary_expression] = STATE(2379), + [sym_receive_expression] = STATE(2379), + [sym_binary_expression] = STATE(2379), + [sym_as_type_cast_expression] = STATE(2379), + [sym__max_group] = STATE(2379), + [sym_literal] = STATE(2392), + [sym_map_init_expression] = STATE(2378), + [sym_array_creation] = STATE(2379), + [sym_fixed_array_creation] = STATE(2379), + [sym_selector_expression] = STATE(2379), + [sym_index_expression] = STATE(2379), + [sym_slice_expression] = STATE(2379), + [sym_if_expression] = STATE(2378), + [sym_compile_time_if_expression] = STATE(2378), + [sym_is_expression] = STATE(2379), + [sym_in_expression] = STATE(2379), + [sym_enum_fetch] = STATE(2379), + [sym_match_expression] = STATE(2378), + [sym_select_expression] = STATE(2378), + [sym_lock_expression] = STATE(2378), + [sym_unsafe_expression] = STATE(2378), + [sym_sql_expression] = STATE(2378), + [sym_c_string_literal] = STATE(2401), + [sym_raw_string_literal] = STATE(2401), + [sym_interpreted_string_literal] = STATE(2401), [sym_mutability_modifiers] = STATE(939), - [sym_plain_type] = STATE(4297), - [sym__plain_type_without_special] = STATE(2302), - [sym_anon_struct_type] = STATE(2303), - [sym_multi_return_type] = STATE(2302), - [sym_result_type] = STATE(2302), - [sym_option_type] = STATE(2302), - [sym_qualified_type] = STATE(3541), - [sym_fixed_array_type] = STATE(2303), - [sym_array_type] = STATE(2303), - [sym_pointer_type] = STATE(2303), - [sym_wrong_pointer_type] = STATE(2303), - [sym_map_type] = STATE(2303), - [sym_channel_type] = STATE(2303), - [sym_shared_type] = STATE(2303), - [sym_thread_type] = STATE(2303), - [sym_atomic_type] = STATE(2303), - [sym_generic_type] = STATE(2303), - [sym_function_type] = STATE(2303), - [sym_identifier] = ACTIONS(1426), + [sym_plain_type] = STATE(4160), + [sym__plain_type_without_special] = STATE(2360), + [sym_anon_struct_type] = STATE(2362), + [sym_multi_return_type] = STATE(2360), + [sym_result_type] = STATE(2360), + [sym_option_type] = STATE(2360), + [sym_qualified_type] = STATE(3460), + [sym_fixed_array_type] = STATE(2362), + [sym_array_type] = STATE(2362), + [sym_pointer_type] = STATE(2362), + [sym_wrong_pointer_type] = STATE(2362), + [sym_map_type] = STATE(2362), + [sym_channel_type] = STATE(2362), + [sym_shared_type] = STATE(2362), + [sym_thread_type] = STATE(2362), + [sym_atomic_type] = STATE(2362), + [sym_generic_type] = STATE(2362), + [sym_function_type] = STATE(2362), + [sym_identifier] = ACTIONS(1428), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1428), - [anon_sym_LBRACE] = ACTIONS(1430), - [anon_sym_LPAREN] = ACTIONS(1432), - [anon_sym_fn] = ACTIONS(1434), - [anon_sym_PLUS] = ACTIONS(1436), - [anon_sym_DASH] = ACTIONS(1436), - [anon_sym_STAR] = ACTIONS(1438), - [anon_sym_RBRACK] = ACTIONS(3138), - [anon_sym_struct] = ACTIONS(1440), + [anon_sym_SEMI] = ACTIONS(3128), + [anon_sym_DOT] = ACTIONS(1430), + [anon_sym_LBRACE] = ACTIONS(1432), + [anon_sym_LPAREN] = ACTIONS(1434), + [anon_sym_fn] = ACTIONS(1436), + [anon_sym_PLUS] = ACTIONS(1438), + [anon_sym_DASH] = ACTIONS(1438), + [anon_sym_STAR] = ACTIONS(1440), + [anon_sym_struct] = ACTIONS(1442), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(1442), - [anon_sym_go] = ACTIONS(1444), - [anon_sym_spawn] = ACTIONS(1446), - [anon_sym_json_DOTdecode] = ACTIONS(1448), - [anon_sym_LBRACK2] = ACTIONS(1450), - [anon_sym_TILDE] = ACTIONS(1436), - [anon_sym_CARET] = ACTIONS(1436), - [anon_sym_AMP] = ACTIONS(1452), - [anon_sym_LT_DASH] = ACTIONS(1454), - [sym_none] = ACTIONS(1456), - [sym_true] = ACTIONS(1456), - [sym_false] = ACTIONS(1456), - [sym_nil] = ACTIONS(1456), - [anon_sym_if] = ACTIONS(1827), - [anon_sym_DOLLARif] = ACTIONS(1460), - [anon_sym_match] = ACTIONS(1462), - [anon_sym_select] = ACTIONS(1464), - [anon_sym_lock] = ACTIONS(1466), - [anon_sym_rlock] = ACTIONS(1466), - [anon_sym_unsafe] = ACTIONS(1833), - [anon_sym_sql] = ACTIONS(1470), - [sym_int_literal] = ACTIONS(3140), - [sym_float_literal] = ACTIONS(1472), - [sym_rune_literal] = ACTIONS(1472), - [sym_pseudo_compile_time_identifier] = ACTIONS(1474), + [anon_sym_BANG] = ACTIONS(1444), + [anon_sym_go] = ACTIONS(1446), + [anon_sym_spawn] = ACTIONS(1448), + [anon_sym_json_DOTdecode] = ACTIONS(1450), + [anon_sym_LBRACK2] = ACTIONS(1452), + [anon_sym_TILDE] = ACTIONS(1438), + [anon_sym_CARET] = ACTIONS(1438), + [anon_sym_AMP] = ACTIONS(1454), + [anon_sym_LT_DASH] = ACTIONS(1456), + [sym_none] = ACTIONS(1458), + [sym_true] = ACTIONS(1458), + [sym_false] = ACTIONS(1458), + [sym_nil] = ACTIONS(1458), + [anon_sym_if] = ACTIONS(1833), + [anon_sym_DOLLARif] = ACTIONS(1462), + [anon_sym_match] = ACTIONS(1464), + [anon_sym_select] = ACTIONS(1466), + [anon_sym_lock] = ACTIONS(1468), + [anon_sym_rlock] = ACTIONS(1468), + [anon_sym_unsafe] = ACTIONS(1839), + [anon_sym_sql] = ACTIONS(1472), + [sym_int_literal] = ACTIONS(1458), + [sym_float_literal] = ACTIONS(1474), + [sym_rune_literal] = ACTIONS(1474), + [sym_pseudo_compile_time_identifier] = ACTIONS(1476), [anon_sym_shared] = ACTIONS(83), [anon_sym_map_LBRACK] = ACTIONS(85), [anon_sym_chan] = ACTIONS(87), [anon_sym_thread] = ACTIONS(89), [anon_sym_atomic] = ACTIONS(91), - [sym___double_quote] = ACTIONS(1478), - [sym___single_quote] = ACTIONS(1480), - [sym___c_double_quote] = ACTIONS(1482), - [sym___c_single_quote] = ACTIONS(1484), - [sym___r_double_quote] = ACTIONS(1486), - [sym___r_single_quote] = ACTIONS(1488), + [sym___double_quote] = ACTIONS(1480), + [sym___single_quote] = ACTIONS(1482), + [sym___c_double_quote] = ACTIONS(1484), + [sym___c_single_quote] = ACTIONS(1486), + [sym___r_double_quote] = ACTIONS(1488), + [sym___r_single_quote] = ACTIONS(1490), }, [521] = { [sym_line_comment] = STATE(521), [sym_block_comment] = STATE(521), - [sym__expression] = STATE(2597), - [sym__expression_without_blocks] = STATE(2300), - [sym__expression_with_blocks] = STATE(2300), - [sym_inc_expression] = STATE(2307), - [sym_dec_expression] = STATE(2307), - [sym_or_block_expression] = STATE(2307), - [sym_option_propagation_expression] = STATE(2307), - [sym_result_propagation_expression] = STATE(2307), - [sym_anon_struct_value_expression] = STATE(2380), - [sym_go_expression] = STATE(2307), - [sym_spawn_expression] = STATE(2307), - [sym_parenthesized_expression] = STATE(2307), - [sym_call_expression] = STATE(2307), - [sym_type_initializer] = STATE(2380), - [sym_function_literal] = STATE(2307), - [sym_reference_expression] = STATE(2311), - [sym_type_reference_expression] = STATE(3541), - [sym_unary_expression] = STATE(2307), - [sym_receive_expression] = STATE(2307), - [sym_binary_expression] = STATE(2307), - [sym_as_type_cast_expression] = STATE(2307), - [sym__max_group] = STATE(2307), - [sym_literal] = STATE(2292), - [sym_map_init_expression] = STATE(2380), - [sym_array_creation] = STATE(2307), - [sym_fixed_array_creation] = STATE(2307), - [sym_selector_expression] = STATE(2307), - [sym_index_expression] = STATE(2307), - [sym_slice_expression] = STATE(2307), - [sym_if_expression] = STATE(2380), - [sym_compile_time_if_expression] = STATE(2380), - [sym_is_expression] = STATE(2307), - [sym_in_expression] = STATE(2307), - [sym_enum_fetch] = STATE(2307), - [sym_match_expression] = STATE(2380), - [sym_select_expression] = STATE(2380), - [sym_lock_expression] = STATE(2380), - [sym_unsafe_expression] = STATE(2380), - [sym_sql_expression] = STATE(2380), - [sym_c_string_literal] = STATE(2308), - [sym_raw_string_literal] = STATE(2308), - [sym_interpreted_string_literal] = STATE(2308), - [sym_mutability_modifiers] = STATE(824), - [sym_mutable_expression] = STATE(3266), - [sym_plain_type] = STATE(4297), - [sym__plain_type_without_special] = STATE(2302), - [sym_anon_struct_type] = STATE(2303), - [sym_multi_return_type] = STATE(2302), - [sym_result_type] = STATE(2302), - [sym_option_type] = STATE(2302), - [sym_qualified_type] = STATE(3541), - [sym_fixed_array_type] = STATE(2303), - [sym_array_type] = STATE(2303), - [sym_pointer_type] = STATE(2303), - [sym_wrong_pointer_type] = STATE(2303), - [sym_map_type] = STATE(2303), - [sym_channel_type] = STATE(2303), - [sym_shared_type] = STATE(2303), - [sym_thread_type] = STATE(2303), - [sym_atomic_type] = STATE(2303), - [sym_generic_type] = STATE(2303), - [sym_function_type] = STATE(2303), - [sym_identifier] = ACTIONS(1807), + [sym__expression] = STATE(2830), + [sym__expression_without_blocks] = STATE(2347), + [sym__expression_with_blocks] = STATE(2347), + [sym_inc_expression] = STATE(2379), + [sym_dec_expression] = STATE(2379), + [sym_or_block_expression] = STATE(2379), + [sym_option_propagation_expression] = STATE(2379), + [sym_result_propagation_expression] = STATE(2379), + [sym_anon_struct_value_expression] = STATE(2378), + [sym_go_expression] = STATE(2379), + [sym_spawn_expression] = STATE(2379), + [sym_parenthesized_expression] = STATE(2379), + [sym_call_expression] = STATE(2379), + [sym_type_initializer] = STATE(2378), + [sym_function_literal] = STATE(2379), + [sym_reference_expression] = STATE(2949), + [sym_type_reference_expression] = STATE(3460), + [sym_unary_expression] = STATE(2379), + [sym_receive_expression] = STATE(2379), + [sym_binary_expression] = STATE(2379), + [sym_as_type_cast_expression] = STATE(2379), + [sym__max_group] = STATE(2379), + [sym_literal] = STATE(2392), + [sym_map_init_expression] = STATE(2378), + [sym_array_creation] = STATE(2379), + [sym_fixed_array_creation] = STATE(2379), + [sym_selector_expression] = STATE(2947), + [sym_index_expression] = STATE(2379), + [sym_slice_expression] = STATE(2379), + [sym_if_expression] = STATE(2378), + [sym_compile_time_if_expression] = STATE(2378), + [sym_is_expression] = STATE(2379), + [sym_in_expression] = STATE(2379), + [sym_enum_fetch] = STATE(2379), + [sym_match_expression] = STATE(2378), + [sym_select_expression] = STATE(2378), + [sym_lock_expression] = STATE(2378), + [sym_unsafe_expression] = STATE(2378), + [sym_sql_expression] = STATE(2378), + [sym_c_string_literal] = STATE(2401), + [sym_raw_string_literal] = STATE(2401), + [sym_interpreted_string_literal] = STATE(2401), + [sym_mutability_modifiers] = STATE(939), + [sym_plain_type] = STATE(4160), + [sym__plain_type_without_special] = STATE(2360), + [sym_anon_struct_type] = STATE(2362), + [sym_multi_return_type] = STATE(2360), + [sym_result_type] = STATE(2360), + [sym_option_type] = STATE(2360), + [sym_qualified_type] = STATE(3460), + [sym_fixed_array_type] = STATE(2362), + [sym_array_type] = STATE(2362), + [sym_pointer_type] = STATE(2362), + [sym_wrong_pointer_type] = STATE(2362), + [sym_map_type] = STATE(2362), + [sym_channel_type] = STATE(2362), + [sym_shared_type] = STATE(2362), + [sym_thread_type] = STATE(2362), + [sym_atomic_type] = STATE(2362), + [sym_generic_type] = STATE(2362), + [sym_function_type] = STATE(2362), + [sym_identifier] = ACTIONS(1428), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1428), - [anon_sym_LBRACE] = ACTIONS(1430), - [anon_sym_LPAREN] = ACTIONS(1432), - [anon_sym_fn] = ACTIONS(1434), - [anon_sym_PLUS] = ACTIONS(1811), - [anon_sym_DASH] = ACTIONS(1811), - [anon_sym_STAR] = ACTIONS(1813), - [anon_sym_struct] = ACTIONS(1440), + [anon_sym_DOT] = ACTIONS(1430), + [anon_sym_LBRACE] = ACTIONS(1432), + [anon_sym_LPAREN] = ACTIONS(1434), + [anon_sym_fn] = ACTIONS(1436), + [anon_sym_PLUS] = ACTIONS(1438), + [anon_sym_DASH] = ACTIONS(1438), + [anon_sym_STAR] = ACTIONS(1440), + [anon_sym_RBRACK] = ACTIONS(3130), + [anon_sym_struct] = ACTIONS(1442), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(1815), - [anon_sym_go] = ACTIONS(1817), - [anon_sym_spawn] = ACTIONS(1819), - [anon_sym_json_DOTdecode] = ACTIONS(1448), - [anon_sym_LBRACK2] = ACTIONS(1821), - [anon_sym_TILDE] = ACTIONS(1811), - [anon_sym_CARET] = ACTIONS(1811), - [anon_sym_AMP] = ACTIONS(1823), - [anon_sym_LT_DASH] = ACTIONS(1825), - [sym_none] = ACTIONS(1456), - [sym_true] = ACTIONS(1456), - [sym_false] = ACTIONS(1456), - [sym_nil] = ACTIONS(1456), - [anon_sym_if] = ACTIONS(1827), - [anon_sym_DOLLARif] = ACTIONS(1460), - [anon_sym_match] = ACTIONS(1462), - [anon_sym_select] = ACTIONS(1829), - [anon_sym_lock] = ACTIONS(1831), - [anon_sym_rlock] = ACTIONS(1831), - [anon_sym_unsafe] = ACTIONS(1833), - [anon_sym_sql] = ACTIONS(1470), - [sym_int_literal] = ACTIONS(1456), - [sym_float_literal] = ACTIONS(1472), - [sym_rune_literal] = ACTIONS(1472), - [sym_pseudo_compile_time_identifier] = ACTIONS(1474), + [anon_sym_BANG] = ACTIONS(1444), + [anon_sym_go] = ACTIONS(1446), + [anon_sym_spawn] = ACTIONS(1448), + [anon_sym_json_DOTdecode] = ACTIONS(1450), + [anon_sym_LBRACK2] = ACTIONS(1452), + [anon_sym_TILDE] = ACTIONS(1438), + [anon_sym_CARET] = ACTIONS(1438), + [anon_sym_AMP] = ACTIONS(1454), + [anon_sym_LT_DASH] = ACTIONS(1456), + [sym_none] = ACTIONS(1458), + [sym_true] = ACTIONS(1458), + [sym_false] = ACTIONS(1458), + [sym_nil] = ACTIONS(1458), + [anon_sym_if] = ACTIONS(1833), + [anon_sym_DOLLARif] = ACTIONS(1462), + [anon_sym_match] = ACTIONS(1464), + [anon_sym_select] = ACTIONS(1466), + [anon_sym_lock] = ACTIONS(1468), + [anon_sym_rlock] = ACTIONS(1468), + [anon_sym_unsafe] = ACTIONS(1839), + [anon_sym_sql] = ACTIONS(1472), + [sym_int_literal] = ACTIONS(3132), + [sym_float_literal] = ACTIONS(1474), + [sym_rune_literal] = ACTIONS(1474), + [sym_pseudo_compile_time_identifier] = ACTIONS(1476), [anon_sym_shared] = ACTIONS(83), [anon_sym_map_LBRACK] = ACTIONS(85), [anon_sym_chan] = ACTIONS(87), [anon_sym_thread] = ACTIONS(89), [anon_sym_atomic] = ACTIONS(91), - [sym___double_quote] = ACTIONS(1478), - [sym___single_quote] = ACTIONS(1480), - [sym___c_double_quote] = ACTIONS(1482), - [sym___c_single_quote] = ACTIONS(1484), - [sym___r_double_quote] = ACTIONS(1486), - [sym___r_single_quote] = ACTIONS(1488), + [sym___double_quote] = ACTIONS(1480), + [sym___single_quote] = ACTIONS(1482), + [sym___c_double_quote] = ACTIONS(1484), + [sym___c_single_quote] = ACTIONS(1486), + [sym___r_double_quote] = ACTIONS(1488), + [sym___r_single_quote] = ACTIONS(1490), }, [522] = { [sym_line_comment] = STATE(522), [sym_block_comment] = STATE(522), - [sym__expression] = STATE(1756), - [sym__expression_without_blocks] = STATE(2044), - [sym__expression_with_blocks] = STATE(2044), - [sym_inc_expression] = STATE(2045), - [sym_dec_expression] = STATE(2045), - [sym_or_block_expression] = STATE(2045), - [sym_option_propagation_expression] = STATE(2045), - [sym_result_propagation_expression] = STATE(2045), - [sym_anon_struct_value_expression] = STATE(2046), - [sym_go_expression] = STATE(2045), - [sym_spawn_expression] = STATE(2045), - [sym_parenthesized_expression] = STATE(2045), - [sym_call_expression] = STATE(2045), - [sym_type_initializer] = STATE(2046), - [sym_function_literal] = STATE(2045), - [sym_reference_expression] = STATE(1912), - [sym_type_reference_expression] = STATE(3541), - [sym_unary_expression] = STATE(2045), - [sym_receive_expression] = STATE(2045), - [sym_binary_expression] = STATE(2045), - [sym_as_type_cast_expression] = STATE(2045), - [sym__max_group] = STATE(2045), - [sym_literal] = STATE(2043), - [sym_map_init_expression] = STATE(2046), - [sym_array_creation] = STATE(2045), - [sym_fixed_array_creation] = STATE(2045), - [sym_selector_expression] = STATE(2045), - [sym_index_expression] = STATE(2045), - [sym_slice_expression] = STATE(2045), - [sym_if_expression] = STATE(2046), - [sym_compile_time_if_expression] = STATE(2046), - [sym_is_expression] = STATE(2045), - [sym_in_expression] = STATE(2045), - [sym_enum_fetch] = STATE(2045), - [sym_match_expression] = STATE(2046), - [sym_select_expression] = STATE(2046), - [sym_lock_expression] = STATE(2046), - [sym_unsafe_expression] = STATE(2046), - [sym_sql_expression] = STATE(2046), - [sym_c_string_literal] = STATE(2041), - [sym_raw_string_literal] = STATE(2041), - [sym_interpreted_string_literal] = STATE(2041), - [sym_mutability_modifiers] = STATE(693), - [sym_mutable_expression] = STATE(3262), - [sym_plain_type] = STATE(4052), - [sym__plain_type_without_special] = STATE(2302), - [sym_anon_struct_type] = STATE(2303), - [sym_multi_return_type] = STATE(2302), - [sym_result_type] = STATE(2302), - [sym_option_type] = STATE(2302), - [sym_qualified_type] = STATE(3541), - [sym_fixed_array_type] = STATE(2303), - [sym_array_type] = STATE(2303), - [sym_pointer_type] = STATE(2303), - [sym_wrong_pointer_type] = STATE(2303), - [sym_map_type] = STATE(2303), - [sym_channel_type] = STATE(2303), - [sym_shared_type] = STATE(2303), - [sym_thread_type] = STATE(2303), - [sym_atomic_type] = STATE(2303), - [sym_generic_type] = STATE(2303), - [sym_function_type] = STATE(2303), - [sym_identifier] = ACTIONS(3142), + [sym__expression] = STATE(2830), + [sym__expression_without_blocks] = STATE(2347), + [sym__expression_with_blocks] = STATE(2347), + [sym_inc_expression] = STATE(2379), + [sym_dec_expression] = STATE(2379), + [sym_or_block_expression] = STATE(2379), + [sym_option_propagation_expression] = STATE(2379), + [sym_result_propagation_expression] = STATE(2379), + [sym_anon_struct_value_expression] = STATE(2378), + [sym_go_expression] = STATE(2379), + [sym_spawn_expression] = STATE(2379), + [sym_parenthesized_expression] = STATE(2379), + [sym_call_expression] = STATE(2379), + [sym_type_initializer] = STATE(2378), + [sym_function_literal] = STATE(2379), + [sym_reference_expression] = STATE(2904), + [sym_type_reference_expression] = STATE(3460), + [sym_unary_expression] = STATE(2379), + [sym_receive_expression] = STATE(2379), + [sym_binary_expression] = STATE(2379), + [sym_as_type_cast_expression] = STATE(2379), + [sym__max_group] = STATE(2379), + [sym_literal] = STATE(2392), + [sym_map_init_expression] = STATE(2378), + [sym_array_creation] = STATE(2379), + [sym_fixed_array_creation] = STATE(2379), + [sym_selector_expression] = STATE(2892), + [sym_index_expression] = STATE(2379), + [sym_slice_expression] = STATE(2379), + [sym_if_expression] = STATE(2378), + [sym_compile_time_if_expression] = STATE(2378), + [sym_is_expression] = STATE(2379), + [sym_in_expression] = STATE(2379), + [sym_enum_fetch] = STATE(2379), + [sym_match_expression] = STATE(2378), + [sym_select_expression] = STATE(2378), + [sym_lock_expression] = STATE(2378), + [sym_unsafe_expression] = STATE(2378), + [sym_sql_expression] = STATE(2378), + [sym_c_string_literal] = STATE(2401), + [sym_raw_string_literal] = STATE(2401), + [sym_interpreted_string_literal] = STATE(2401), + [sym_mutability_modifiers] = STATE(939), + [sym_plain_type] = STATE(4160), + [sym__plain_type_without_special] = STATE(2360), + [sym_anon_struct_type] = STATE(2362), + [sym_multi_return_type] = STATE(2360), + [sym_result_type] = STATE(2360), + [sym_option_type] = STATE(2360), + [sym_qualified_type] = STATE(3460), + [sym_fixed_array_type] = STATE(2362), + [sym_array_type] = STATE(2362), + [sym_pointer_type] = STATE(2362), + [sym_wrong_pointer_type] = STATE(2362), + [sym_map_type] = STATE(2362), + [sym_channel_type] = STATE(2362), + [sym_shared_type] = STATE(2362), + [sym_thread_type] = STATE(2362), + [sym_atomic_type] = STATE(2362), + [sym_generic_type] = STATE(2362), + [sym_function_type] = STATE(2362), + [sym_identifier] = ACTIONS(1428), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(811), - [anon_sym_LBRACE] = ACTIONS(3144), - [anon_sym_LPAREN] = ACTIONS(815), - [anon_sym_fn] = ACTIONS(817), - [anon_sym_PLUS] = ACTIONS(3146), - [anon_sym_DASH] = ACTIONS(3146), - [anon_sym_STAR] = ACTIONS(3148), - [anon_sym_struct] = ACTIONS(823), + [anon_sym_DOT] = ACTIONS(1430), + [anon_sym_LBRACE] = ACTIONS(1432), + [anon_sym_LPAREN] = ACTIONS(1434), + [anon_sym_fn] = ACTIONS(1436), + [anon_sym_PLUS] = ACTIONS(1438), + [anon_sym_DASH] = ACTIONS(1438), + [anon_sym_STAR] = ACTIONS(1440), + [anon_sym_RBRACK] = ACTIONS(3134), + [anon_sym_struct] = ACTIONS(1442), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(3150), - [anon_sym_go] = ACTIONS(3152), - [anon_sym_spawn] = ACTIONS(3154), - [anon_sym_json_DOTdecode] = ACTIONS(833), - [anon_sym_LBRACK2] = ACTIONS(3156), - [anon_sym_TILDE] = ACTIONS(3146), - [anon_sym_CARET] = ACTIONS(3146), - [anon_sym_AMP] = ACTIONS(3158), - [anon_sym_LT_DASH] = ACTIONS(3160), - [sym_none] = ACTIONS(841), - [sym_true] = ACTIONS(841), - [sym_false] = ACTIONS(841), - [sym_nil] = ACTIONS(841), - [anon_sym_if] = ACTIONS(843), - [anon_sym_DOLLARif] = ACTIONS(845), - [anon_sym_match] = ACTIONS(847), - [anon_sym_select] = ACTIONS(3162), - [anon_sym_lock] = ACTIONS(3164), - [anon_sym_rlock] = ACTIONS(3164), - [anon_sym_unsafe] = ACTIONS(853), - [anon_sym_sql] = ACTIONS(855), - [sym_int_literal] = ACTIONS(841), - [sym_float_literal] = ACTIONS(857), - [sym_rune_literal] = ACTIONS(857), - [sym_pseudo_compile_time_identifier] = ACTIONS(859), + [anon_sym_BANG] = ACTIONS(1444), + [anon_sym_go] = ACTIONS(1446), + [anon_sym_spawn] = ACTIONS(1448), + [anon_sym_json_DOTdecode] = ACTIONS(1450), + [anon_sym_LBRACK2] = ACTIONS(1452), + [anon_sym_TILDE] = ACTIONS(1438), + [anon_sym_CARET] = ACTIONS(1438), + [anon_sym_AMP] = ACTIONS(1454), + [anon_sym_LT_DASH] = ACTIONS(1456), + [sym_none] = ACTIONS(1458), + [sym_true] = ACTIONS(1458), + [sym_false] = ACTIONS(1458), + [sym_nil] = ACTIONS(1458), + [anon_sym_if] = ACTIONS(1833), + [anon_sym_DOLLARif] = ACTIONS(1462), + [anon_sym_match] = ACTIONS(1464), + [anon_sym_select] = ACTIONS(1466), + [anon_sym_lock] = ACTIONS(1468), + [anon_sym_rlock] = ACTIONS(1468), + [anon_sym_unsafe] = ACTIONS(1839), + [anon_sym_sql] = ACTIONS(1472), + [sym_int_literal] = ACTIONS(3136), + [sym_float_literal] = ACTIONS(1474), + [sym_rune_literal] = ACTIONS(1474), + [sym_pseudo_compile_time_identifier] = ACTIONS(1476), [anon_sym_shared] = ACTIONS(83), [anon_sym_map_LBRACK] = ACTIONS(85), [anon_sym_chan] = ACTIONS(87), [anon_sym_thread] = ACTIONS(89), [anon_sym_atomic] = ACTIONS(91), - [sym___double_quote] = ACTIONS(861), - [sym___single_quote] = ACTIONS(863), - [sym___c_double_quote] = ACTIONS(865), - [sym___c_single_quote] = ACTIONS(867), - [sym___r_double_quote] = ACTIONS(869), - [sym___r_single_quote] = ACTIONS(871), + [sym___double_quote] = ACTIONS(1480), + [sym___single_quote] = ACTIONS(1482), + [sym___c_double_quote] = ACTIONS(1484), + [sym___c_single_quote] = ACTIONS(1486), + [sym___r_double_quote] = ACTIONS(1488), + [sym___r_single_quote] = ACTIONS(1490), }, [523] = { [sym_line_comment] = STATE(523), [sym_block_comment] = STATE(523), - [sym__expression] = STATE(2831), - [sym__expression_without_blocks] = STATE(2300), - [sym__expression_with_blocks] = STATE(2300), - [sym_inc_expression] = STATE(2307), - [sym_dec_expression] = STATE(2307), - [sym_or_block_expression] = STATE(2307), - [sym_option_propagation_expression] = STATE(2307), - [sym_result_propagation_expression] = STATE(2307), - [sym_anon_struct_value_expression] = STATE(2380), - [sym_go_expression] = STATE(2307), - [sym_spawn_expression] = STATE(2307), - [sym_parenthesized_expression] = STATE(2307), - [sym_call_expression] = STATE(2307), - [sym_type_initializer] = STATE(2380), - [sym_function_literal] = STATE(2307), - [sym_reference_expression] = STATE(2935), - [sym_type_reference_expression] = STATE(3541), - [sym_unary_expression] = STATE(2307), - [sym_receive_expression] = STATE(2307), - [sym_binary_expression] = STATE(2307), - [sym_as_type_cast_expression] = STATE(2307), - [sym__max_group] = STATE(2307), - [sym_literal] = STATE(2292), - [sym_map_init_expression] = STATE(2380), - [sym_array_creation] = STATE(2307), - [sym_fixed_array_creation] = STATE(2307), - [sym_selector_expression] = STATE(2944), - [sym_index_expression] = STATE(2307), - [sym_slice_expression] = STATE(2307), - [sym_if_expression] = STATE(2380), - [sym_compile_time_if_expression] = STATE(2380), - [sym_is_expression] = STATE(2307), - [sym_in_expression] = STATE(2307), - [sym_enum_fetch] = STATE(2307), - [sym_match_expression] = STATE(2380), - [sym_select_expression] = STATE(2380), - [sym_lock_expression] = STATE(2380), - [sym_unsafe_expression] = STATE(2380), - [sym_sql_expression] = STATE(2380), - [sym_c_string_literal] = STATE(2308), - [sym_raw_string_literal] = STATE(2308), - [sym_interpreted_string_literal] = STATE(2308), - [sym_mutability_modifiers] = STATE(939), - [sym_plain_type] = STATE(4297), - [sym__plain_type_without_special] = STATE(2302), - [sym_anon_struct_type] = STATE(2303), - [sym_multi_return_type] = STATE(2302), - [sym_result_type] = STATE(2302), - [sym_option_type] = STATE(2302), - [sym_qualified_type] = STATE(3541), - [sym_fixed_array_type] = STATE(2303), - [sym_array_type] = STATE(2303), - [sym_pointer_type] = STATE(2303), - [sym_wrong_pointer_type] = STATE(2303), - [sym_map_type] = STATE(2303), - [sym_channel_type] = STATE(2303), - [sym_shared_type] = STATE(2303), - [sym_thread_type] = STATE(2303), - [sym_atomic_type] = STATE(2303), - [sym_generic_type] = STATE(2303), - [sym_function_type] = STATE(2303), - [sym_identifier] = ACTIONS(1426), + [sym__expression] = STATE(2625), + [sym__expression_without_blocks] = STATE(2347), + [sym__expression_with_blocks] = STATE(2347), + [sym_inc_expression] = STATE(2379), + [sym_dec_expression] = STATE(2379), + [sym_or_block_expression] = STATE(2379), + [sym_option_propagation_expression] = STATE(2379), + [sym_result_propagation_expression] = STATE(2379), + [sym_anon_struct_value_expression] = STATE(2378), + [sym_go_expression] = STATE(2379), + [sym_spawn_expression] = STATE(2379), + [sym_parenthesized_expression] = STATE(2379), + [sym_call_expression] = STATE(2379), + [sym_type_initializer] = STATE(2378), + [sym_function_literal] = STATE(2379), + [sym_reference_expression] = STATE(2377), + [sym_type_reference_expression] = STATE(3460), + [sym_unary_expression] = STATE(2379), + [sym_receive_expression] = STATE(2379), + [sym_binary_expression] = STATE(2379), + [sym_as_type_cast_expression] = STATE(2379), + [sym__max_group] = STATE(2379), + [sym_literal] = STATE(2392), + [sym_map_init_expression] = STATE(2378), + [sym_array_creation] = STATE(2379), + [sym_fixed_array_creation] = STATE(2379), + [sym_selector_expression] = STATE(2379), + [sym_index_expression] = STATE(2379), + [sym_slice_expression] = STATE(2379), + [sym_if_expression] = STATE(2378), + [sym_compile_time_if_expression] = STATE(2378), + [sym_is_expression] = STATE(2379), + [sym_in_expression] = STATE(2379), + [sym_enum_fetch] = STATE(2379), + [sym_match_expression] = STATE(2378), + [sym_select_expression] = STATE(2378), + [sym_lock_expression] = STATE(2378), + [sym_unsafe_expression] = STATE(2378), + [sym_sql_expression] = STATE(2378), + [sym_c_string_literal] = STATE(2401), + [sym_raw_string_literal] = STATE(2401), + [sym_interpreted_string_literal] = STATE(2401), + [sym_mutability_modifiers] = STATE(906), + [sym_mutable_expression] = STATE(4346), + [sym_plain_type] = STATE(4160), + [sym__plain_type_without_special] = STATE(2360), + [sym_anon_struct_type] = STATE(2362), + [sym_multi_return_type] = STATE(2360), + [sym_result_type] = STATE(2360), + [sym_option_type] = STATE(2360), + [sym_qualified_type] = STATE(3460), + [sym_fixed_array_type] = STATE(2362), + [sym_array_type] = STATE(2362), + [sym_pointer_type] = STATE(2362), + [sym_wrong_pointer_type] = STATE(2362), + [sym_map_type] = STATE(2362), + [sym_channel_type] = STATE(2362), + [sym_shared_type] = STATE(2362), + [sym_thread_type] = STATE(2362), + [sym_atomic_type] = STATE(2362), + [sym_generic_type] = STATE(2362), + [sym_function_type] = STATE(2362), + [sym_identifier] = ACTIONS(1815), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1428), - [anon_sym_LBRACE] = ACTIONS(1430), - [anon_sym_LPAREN] = ACTIONS(1432), - [anon_sym_fn] = ACTIONS(1434), - [anon_sym_PLUS] = ACTIONS(1436), - [anon_sym_DASH] = ACTIONS(1436), - [anon_sym_STAR] = ACTIONS(1438), - [anon_sym_RBRACK] = ACTIONS(3166), - [anon_sym_struct] = ACTIONS(1440), + [anon_sym_DOT] = ACTIONS(1430), + [anon_sym_LBRACE] = ACTIONS(1432), + [anon_sym_LPAREN] = ACTIONS(1434), + [anon_sym_fn] = ACTIONS(1436), + [anon_sym_PLUS] = ACTIONS(3090), + [anon_sym_DASH] = ACTIONS(3090), + [anon_sym_STAR] = ACTIONS(3092), + [anon_sym_struct] = ACTIONS(1442), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(1442), - [anon_sym_go] = ACTIONS(1444), - [anon_sym_spawn] = ACTIONS(1446), - [anon_sym_json_DOTdecode] = ACTIONS(1448), - [anon_sym_LBRACK2] = ACTIONS(1450), - [anon_sym_TILDE] = ACTIONS(1436), - [anon_sym_CARET] = ACTIONS(1436), - [anon_sym_AMP] = ACTIONS(1452), - [anon_sym_LT_DASH] = ACTIONS(1454), - [sym_none] = ACTIONS(1456), - [sym_true] = ACTIONS(1456), - [sym_false] = ACTIONS(1456), - [sym_nil] = ACTIONS(1456), - [anon_sym_if] = ACTIONS(1827), - [anon_sym_DOLLARif] = ACTIONS(1460), - [anon_sym_match] = ACTIONS(1462), - [anon_sym_select] = ACTIONS(1464), - [anon_sym_lock] = ACTIONS(1466), - [anon_sym_rlock] = ACTIONS(1466), - [anon_sym_unsafe] = ACTIONS(1833), - [anon_sym_sql] = ACTIONS(1470), - [sym_int_literal] = ACTIONS(3168), - [sym_float_literal] = ACTIONS(1472), - [sym_rune_literal] = ACTIONS(1472), - [sym_pseudo_compile_time_identifier] = ACTIONS(1474), + [anon_sym_BANG] = ACTIONS(3094), + [anon_sym_go] = ACTIONS(3096), + [anon_sym_spawn] = ACTIONS(3098), + [anon_sym_json_DOTdecode] = ACTIONS(1450), + [anon_sym_LBRACK2] = ACTIONS(1827), + [anon_sym_TILDE] = ACTIONS(3090), + [anon_sym_CARET] = ACTIONS(3090), + [anon_sym_AMP] = ACTIONS(3100), + [anon_sym_LT_DASH] = ACTIONS(3102), + [sym_none] = ACTIONS(1458), + [sym_true] = ACTIONS(1458), + [sym_false] = ACTIONS(1458), + [sym_nil] = ACTIONS(1458), + [anon_sym_if] = ACTIONS(1833), + [anon_sym_DOLLARif] = ACTIONS(1462), + [anon_sym_match] = ACTIONS(1464), + [anon_sym_select] = ACTIONS(3104), + [anon_sym_lock] = ACTIONS(3106), + [anon_sym_rlock] = ACTIONS(3106), + [anon_sym_unsafe] = ACTIONS(1839), + [anon_sym_sql] = ACTIONS(1472), + [sym_int_literal] = ACTIONS(1458), + [sym_float_literal] = ACTIONS(1474), + [sym_rune_literal] = ACTIONS(1474), + [sym_pseudo_compile_time_identifier] = ACTIONS(1476), [anon_sym_shared] = ACTIONS(83), [anon_sym_map_LBRACK] = ACTIONS(85), [anon_sym_chan] = ACTIONS(87), [anon_sym_thread] = ACTIONS(89), [anon_sym_atomic] = ACTIONS(91), - [sym___double_quote] = ACTIONS(1478), - [sym___single_quote] = ACTIONS(1480), - [sym___c_double_quote] = ACTIONS(1482), - [sym___c_single_quote] = ACTIONS(1484), - [sym___r_double_quote] = ACTIONS(1486), - [sym___r_single_quote] = ACTIONS(1488), + [sym___double_quote] = ACTIONS(1480), + [sym___single_quote] = ACTIONS(1482), + [sym___c_double_quote] = ACTIONS(1484), + [sym___c_single_quote] = ACTIONS(1486), + [sym___r_double_quote] = ACTIONS(1488), + [sym___r_single_quote] = ACTIONS(1490), }, [524] = { [sym_line_comment] = STATE(524), [sym_block_comment] = STATE(524), - [sym__expression] = STATE(1622), - [sym__expression_without_blocks] = STATE(1891), - [sym__expression_with_blocks] = STATE(1891), - [sym_inc_expression] = STATE(1893), - [sym_dec_expression] = STATE(1893), - [sym_or_block_expression] = STATE(1893), - [sym_option_propagation_expression] = STATE(1893), - [sym_result_propagation_expression] = STATE(1893), - [sym_anon_struct_value_expression] = STATE(1895), - [sym_go_expression] = STATE(1893), - [sym_spawn_expression] = STATE(1893), - [sym_parenthesized_expression] = STATE(1893), - [sym_call_expression] = STATE(1893), - [sym_type_initializer] = STATE(1895), - [sym_function_literal] = STATE(1893), - [sym_reference_expression] = STATE(1782), - [sym_type_reference_expression] = STATE(3541), - [sym_unary_expression] = STATE(1893), - [sym_receive_expression] = STATE(1893), - [sym_binary_expression] = STATE(1893), - [sym_as_type_cast_expression] = STATE(1893), - [sym__max_group] = STATE(1893), - [sym_literal] = STATE(1889), - [sym_map_init_expression] = STATE(1895), - [sym_array_creation] = STATE(1893), - [sym_fixed_array_creation] = STATE(1893), - [sym_selector_expression] = STATE(1893), - [sym_index_expression] = STATE(1893), - [sym_slice_expression] = STATE(1893), - [sym_if_expression] = STATE(1895), - [sym_compile_time_if_expression] = STATE(1895), - [sym_is_expression] = STATE(1893), - [sym_in_expression] = STATE(1893), - [sym_enum_fetch] = STATE(1893), - [sym_match_expression] = STATE(1895), - [sym_select_expression] = STATE(1895), - [sym_lock_expression] = STATE(1895), - [sym_unsafe_expression] = STATE(1895), - [sym_sql_expression] = STATE(1895), - [sym_c_string_literal] = STATE(1882), - [sym_raw_string_literal] = STATE(1882), - [sym_interpreted_string_literal] = STATE(1882), - [sym_mutability_modifiers] = STATE(749), - [sym_mutable_expression] = STATE(3251), - [sym_plain_type] = STATE(4316), - [sym__plain_type_without_special] = STATE(2302), - [sym_anon_struct_type] = STATE(2303), - [sym_multi_return_type] = STATE(2302), - [sym_result_type] = STATE(2302), - [sym_option_type] = STATE(2302), - [sym_qualified_type] = STATE(3541), - [sym_fixed_array_type] = STATE(2303), - [sym_array_type] = STATE(2303), - [sym_pointer_type] = STATE(2303), - [sym_wrong_pointer_type] = STATE(2303), - [sym_map_type] = STATE(2303), - [sym_channel_type] = STATE(2303), - [sym_shared_type] = STATE(2303), - [sym_thread_type] = STATE(2303), - [sym_atomic_type] = STATE(2303), - [sym_generic_type] = STATE(2303), - [sym_function_type] = STATE(2303), - [sym_identifier] = ACTIONS(3170), + [sym__expression] = STATE(2433), + [sym__expression_without_blocks] = STATE(2638), + [sym__expression_with_blocks] = STATE(2638), + [sym_inc_expression] = STATE(2765), + [sym_dec_expression] = STATE(2765), + [sym_or_block_expression] = STATE(2765), + [sym_option_propagation_expression] = STATE(2765), + [sym_result_propagation_expression] = STATE(2765), + [sym_anon_struct_value_expression] = STATE(2637), + [sym_go_expression] = STATE(2765), + [sym_spawn_expression] = STATE(2765), + [sym_parenthesized_expression] = STATE(2765), + [sym_call_expression] = STATE(2765), + [sym_type_initializer] = STATE(2637), + [sym_function_literal] = STATE(2765), + [sym_reference_expression] = STATE(2764), + [sym_type_reference_expression] = STATE(3460), + [sym_unary_expression] = STATE(2765), + [sym_receive_expression] = STATE(2765), + [sym_binary_expression] = STATE(2765), + [sym_as_type_cast_expression] = STATE(2765), + [sym__max_group] = STATE(2765), + [sym_literal] = STATE(2771), + [sym_map_init_expression] = STATE(2637), + [sym_array_creation] = STATE(2765), + [sym_fixed_array_creation] = STATE(2765), + [sym_selector_expression] = STATE(2765), + [sym_index_expression] = STATE(2765), + [sym_slice_expression] = STATE(2765), + [sym_if_expression] = STATE(2637), + [sym_compile_time_if_expression] = STATE(2637), + [sym_is_expression] = STATE(2765), + [sym_in_expression] = STATE(2765), + [sym_enum_fetch] = STATE(2765), + [sym_match_expression] = STATE(2637), + [sym_select_expression] = STATE(2637), + [sym_lock_expression] = STATE(2637), + [sym_unsafe_expression] = STATE(2637), + [sym_sql_expression] = STATE(2637), + [sym_c_string_literal] = STATE(2762), + [sym_raw_string_literal] = STATE(2762), + [sym_interpreted_string_literal] = STATE(2762), + [sym_mutability_modifiers] = STATE(822), + [sym_plain_type] = STATE(3934), + [sym__plain_type_without_special] = STATE(2360), + [sym_anon_struct_type] = STATE(2362), + [sym_multi_return_type] = STATE(2360), + [sym_result_type] = STATE(2360), + [sym_option_type] = STATE(2360), + [sym_qualified_type] = STATE(3460), + [sym_fixed_array_type] = STATE(2362), + [sym_array_type] = STATE(2362), + [sym_pointer_type] = STATE(2362), + [sym_wrong_pointer_type] = STATE(2362), + [sym_map_type] = STATE(2362), + [sym_channel_type] = STATE(2362), + [sym_shared_type] = STATE(2362), + [sym_thread_type] = STATE(2362), + [sym_atomic_type] = STATE(2362), + [sym_generic_type] = STATE(2362), + [sym_function_type] = STATE(2362), + [sym_identifier] = ACTIONS(1071), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(3172), - [anon_sym_LBRACE] = ACTIONS(3174), - [anon_sym_LPAREN] = ACTIONS(3176), - [anon_sym_fn] = ACTIONS(3178), - [anon_sym_PLUS] = ACTIONS(3180), - [anon_sym_DASH] = ACTIONS(3180), - [anon_sym_STAR] = ACTIONS(3182), - [anon_sym_struct] = ACTIONS(3184), + [anon_sym_DOT] = ACTIONS(1073), + [anon_sym_LBRACE] = ACTIONS(1075), + [anon_sym_COMMA] = ACTIONS(621), + [anon_sym_LPAREN] = ACTIONS(1079), + [anon_sym_fn] = ACTIONS(1081), + [anon_sym_PLUS] = ACTIONS(1083), + [anon_sym_DASH] = ACTIONS(1083), + [anon_sym_STAR] = ACTIONS(1085), + [anon_sym_struct] = ACTIONS(1087), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(3186), - [anon_sym_go] = ACTIONS(3188), - [anon_sym_spawn] = ACTIONS(3190), - [anon_sym_json_DOTdecode] = ACTIONS(3192), - [anon_sym_LBRACK2] = ACTIONS(3194), - [anon_sym_TILDE] = ACTIONS(3180), - [anon_sym_CARET] = ACTIONS(3180), - [anon_sym_AMP] = ACTIONS(3196), - [anon_sym_LT_DASH] = ACTIONS(3198), - [sym_none] = ACTIONS(3200), - [sym_true] = ACTIONS(3200), - [sym_false] = ACTIONS(3200), - [sym_nil] = ACTIONS(3200), - [anon_sym_if] = ACTIONS(3202), - [anon_sym_DOLLARif] = ACTIONS(3204), - [anon_sym_match] = ACTIONS(3206), - [anon_sym_select] = ACTIONS(3208), - [anon_sym_lock] = ACTIONS(3210), - [anon_sym_rlock] = ACTIONS(3210), - [anon_sym_unsafe] = ACTIONS(3212), - [anon_sym_sql] = ACTIONS(3214), - [sym_int_literal] = ACTIONS(3200), - [sym_float_literal] = ACTIONS(3216), - [sym_rune_literal] = ACTIONS(3216), - [sym_pseudo_compile_time_identifier] = ACTIONS(3218), + [anon_sym_BANG] = ACTIONS(1089), + [anon_sym_go] = ACTIONS(1091), + [anon_sym_spawn] = ACTIONS(1093), + [anon_sym_json_DOTdecode] = ACTIONS(1095), + [anon_sym_LBRACK2] = ACTIONS(1097), + [anon_sym_TILDE] = ACTIONS(1083), + [anon_sym_CARET] = ACTIONS(1083), + [anon_sym_AMP] = ACTIONS(1099), + [anon_sym_LT_DASH] = ACTIONS(1101), + [sym_none] = ACTIONS(1103), + [sym_true] = ACTIONS(1103), + [sym_false] = ACTIONS(1103), + [sym_nil] = ACTIONS(1103), + [anon_sym_if] = ACTIONS(1105), + [anon_sym_DOLLARif] = ACTIONS(1109), + [anon_sym_match] = ACTIONS(1111), + [anon_sym_select] = ACTIONS(3138), + [anon_sym_lock] = ACTIONS(3140), + [anon_sym_rlock] = ACTIONS(3140), + [anon_sym_unsafe] = ACTIONS(1117), + [anon_sym_sql] = ACTIONS(1119), + [sym_int_literal] = ACTIONS(1103), + [sym_float_literal] = ACTIONS(1121), + [sym_rune_literal] = ACTIONS(1121), + [sym_pseudo_compile_time_identifier] = ACTIONS(1123), [anon_sym_shared] = ACTIONS(83), [anon_sym_map_LBRACK] = ACTIONS(85), [anon_sym_chan] = ACTIONS(87), [anon_sym_thread] = ACTIONS(89), [anon_sym_atomic] = ACTIONS(91), - [sym___double_quote] = ACTIONS(3220), - [sym___single_quote] = ACTIONS(3222), - [sym___c_double_quote] = ACTIONS(3224), - [sym___c_single_quote] = ACTIONS(3226), - [sym___r_double_quote] = ACTIONS(3228), - [sym___r_single_quote] = ACTIONS(3230), + [sym___double_quote] = ACTIONS(1125), + [sym___single_quote] = ACTIONS(1127), + [sym___c_double_quote] = ACTIONS(1129), + [sym___c_single_quote] = ACTIONS(1131), + [sym___r_double_quote] = ACTIONS(1133), + [sym___r_single_quote] = ACTIONS(1135), }, [525] = { [sym_line_comment] = STATE(525), [sym_block_comment] = STATE(525), - [sym__expression] = STATE(2692), - [sym__expression_without_blocks] = STATE(2300), - [sym__expression_with_blocks] = STATE(2300), - [sym_inc_expression] = STATE(2307), - [sym_dec_expression] = STATE(2307), - [sym_or_block_expression] = STATE(2307), - [sym_option_propagation_expression] = STATE(2307), - [sym_result_propagation_expression] = STATE(2307), - [sym_anon_struct_value_expression] = STATE(2380), - [sym_go_expression] = STATE(2307), - [sym_spawn_expression] = STATE(2307), - [sym_parenthesized_expression] = STATE(2307), - [sym_call_expression] = STATE(2307), - [sym_type_initializer] = STATE(2380), - [sym_function_literal] = STATE(2307), - [sym_reference_expression] = STATE(2311), - [sym_type_reference_expression] = STATE(3541), - [sym_unary_expression] = STATE(2307), - [sym_receive_expression] = STATE(2307), - [sym_binary_expression] = STATE(2307), - [sym_as_type_cast_expression] = STATE(2307), - [sym__max_group] = STATE(2307), - [sym_literal] = STATE(2292), - [sym_map_init_expression] = STATE(2380), - [sym_array_creation] = STATE(2307), - [sym_fixed_array_creation] = STATE(2307), - [sym_selector_expression] = STATE(2307), - [sym_index_expression] = STATE(2307), - [sym_slice_expression] = STATE(2307), - [sym_if_expression] = STATE(2380), - [sym_compile_time_if_expression] = STATE(2380), - [sym_is_expression] = STATE(2307), - [sym_in_expression] = STATE(2307), - [sym_enum_fetch] = STATE(2307), - [sym_match_expression] = STATE(2380), - [sym_select_expression] = STATE(2380), - [sym_lock_expression] = STATE(2380), - [sym_unsafe_expression] = STATE(2380), - [sym_sql_expression] = STATE(2380), - [sym_c_string_literal] = STATE(2308), - [sym_raw_string_literal] = STATE(2308), - [sym_interpreted_string_literal] = STATE(2308), - [sym_mutability_modifiers] = STATE(944), - [sym_mutable_expression] = STATE(4357), - [sym_plain_type] = STATE(4297), - [sym__plain_type_without_special] = STATE(2302), - [sym_anon_struct_type] = STATE(2303), - [sym_multi_return_type] = STATE(2302), - [sym_result_type] = STATE(2302), - [sym_option_type] = STATE(2302), - [sym_qualified_type] = STATE(3541), - [sym_fixed_array_type] = STATE(2303), - [sym_array_type] = STATE(2303), - [sym_pointer_type] = STATE(2303), - [sym_wrong_pointer_type] = STATE(2303), - [sym_map_type] = STATE(2303), - [sym_channel_type] = STATE(2303), - [sym_shared_type] = STATE(2303), - [sym_thread_type] = STATE(2303), - [sym_atomic_type] = STATE(2303), - [sym_generic_type] = STATE(2303), - [sym_function_type] = STATE(2303), - [sym_identifier] = ACTIONS(1807), + [sym__expression] = STATE(2619), + [sym__expression_without_blocks] = STATE(2347), + [sym__expression_with_blocks] = STATE(2347), + [sym_inc_expression] = STATE(2379), + [sym_dec_expression] = STATE(2379), + [sym_or_block_expression] = STATE(2379), + [sym_option_propagation_expression] = STATE(2379), + [sym_result_propagation_expression] = STATE(2379), + [sym_anon_struct_value_expression] = STATE(2378), + [sym_go_expression] = STATE(2379), + [sym_spawn_expression] = STATE(2379), + [sym_parenthesized_expression] = STATE(2379), + [sym_call_expression] = STATE(2379), + [sym_type_initializer] = STATE(2378), + [sym_function_literal] = STATE(2379), + [sym_reference_expression] = STATE(2377), + [sym_type_reference_expression] = STATE(3460), + [sym_unary_expression] = STATE(2379), + [sym_receive_expression] = STATE(2379), + [sym_binary_expression] = STATE(2379), + [sym_as_type_cast_expression] = STATE(2379), + [sym__max_group] = STATE(2379), + [sym_literal] = STATE(2392), + [sym_map_init_expression] = STATE(2378), + [sym_array_creation] = STATE(2379), + [sym_fixed_array_creation] = STATE(2379), + [sym_selector_expression] = STATE(2379), + [sym_index_expression] = STATE(2379), + [sym_slice_expression] = STATE(2379), + [sym_if_expression] = STATE(2378), + [sym_compile_time_if_expression] = STATE(2378), + [sym_is_expression] = STATE(2379), + [sym_in_expression] = STATE(2379), + [sym_enum_fetch] = STATE(2379), + [sym_match_expression] = STATE(2378), + [sym_select_expression] = STATE(2378), + [sym_lock_expression] = STATE(2378), + [sym_unsafe_expression] = STATE(2378), + [sym_sql_expression] = STATE(2378), + [sym_c_string_literal] = STATE(2401), + [sym_raw_string_literal] = STATE(2401), + [sym_interpreted_string_literal] = STATE(2401), + [sym_mutability_modifiers] = STATE(900), + [sym_mutable_expression] = STATE(3269), + [sym_plain_type] = STATE(4160), + [sym__plain_type_without_special] = STATE(2360), + [sym_anon_struct_type] = STATE(2362), + [sym_multi_return_type] = STATE(2360), + [sym_result_type] = STATE(2360), + [sym_option_type] = STATE(2360), + [sym_qualified_type] = STATE(3460), + [sym_fixed_array_type] = STATE(2362), + [sym_array_type] = STATE(2362), + [sym_pointer_type] = STATE(2362), + [sym_wrong_pointer_type] = STATE(2362), + [sym_map_type] = STATE(2362), + [sym_channel_type] = STATE(2362), + [sym_shared_type] = STATE(2362), + [sym_thread_type] = STATE(2362), + [sym_atomic_type] = STATE(2362), + [sym_generic_type] = STATE(2362), + [sym_function_type] = STATE(2362), + [sym_identifier] = ACTIONS(1815), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1428), - [anon_sym_LBRACE] = ACTIONS(1430), - [anon_sym_LPAREN] = ACTIONS(1432), - [anon_sym_fn] = ACTIONS(1434), - [anon_sym_PLUS] = ACTIONS(3064), - [anon_sym_DASH] = ACTIONS(3064), - [anon_sym_STAR] = ACTIONS(3066), - [anon_sym_struct] = ACTIONS(1440), + [anon_sym_DOT] = ACTIONS(1430), + [anon_sym_LBRACE] = ACTIONS(1432), + [anon_sym_LPAREN] = ACTIONS(1434), + [anon_sym_fn] = ACTIONS(1436), + [anon_sym_PLUS] = ACTIONS(1817), + [anon_sym_DASH] = ACTIONS(1817), + [anon_sym_STAR] = ACTIONS(1819), + [anon_sym_struct] = ACTIONS(1442), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(3068), - [anon_sym_go] = ACTIONS(3070), - [anon_sym_spawn] = ACTIONS(3072), - [anon_sym_json_DOTdecode] = ACTIONS(1448), - [anon_sym_LBRACK2] = ACTIONS(1821), - [anon_sym_TILDE] = ACTIONS(3064), - [anon_sym_CARET] = ACTIONS(3064), - [anon_sym_AMP] = ACTIONS(3074), - [anon_sym_LT_DASH] = ACTIONS(3076), - [sym_none] = ACTIONS(1456), - [sym_true] = ACTIONS(1456), - [sym_false] = ACTIONS(1456), - [sym_nil] = ACTIONS(1456), - [anon_sym_if] = ACTIONS(1827), - [anon_sym_DOLLARif] = ACTIONS(1460), - [anon_sym_match] = ACTIONS(1462), - [anon_sym_select] = ACTIONS(3078), - [anon_sym_lock] = ACTIONS(3080), - [anon_sym_rlock] = ACTIONS(3080), - [anon_sym_unsafe] = ACTIONS(1833), - [anon_sym_sql] = ACTIONS(1470), - [sym_int_literal] = ACTIONS(1456), - [sym_float_literal] = ACTIONS(1472), - [sym_rune_literal] = ACTIONS(1472), - [sym_pseudo_compile_time_identifier] = ACTIONS(1474), + [anon_sym_BANG] = ACTIONS(1821), + [anon_sym_go] = ACTIONS(1823), + [anon_sym_spawn] = ACTIONS(1825), + [anon_sym_json_DOTdecode] = ACTIONS(1450), + [anon_sym_LBRACK2] = ACTIONS(1827), + [anon_sym_TILDE] = ACTIONS(1817), + [anon_sym_CARET] = ACTIONS(1817), + [anon_sym_AMP] = ACTIONS(1829), + [anon_sym_LT_DASH] = ACTIONS(1831), + [sym_none] = ACTIONS(1458), + [sym_true] = ACTIONS(1458), + [sym_false] = ACTIONS(1458), + [sym_nil] = ACTIONS(1458), + [anon_sym_if] = ACTIONS(1833), + [anon_sym_DOLLARif] = ACTIONS(1462), + [anon_sym_match] = ACTIONS(1464), + [anon_sym_select] = ACTIONS(1835), + [anon_sym_lock] = ACTIONS(1837), + [anon_sym_rlock] = ACTIONS(1837), + [anon_sym_unsafe] = ACTIONS(1839), + [anon_sym_sql] = ACTIONS(1472), + [sym_int_literal] = ACTIONS(1458), + [sym_float_literal] = ACTIONS(1474), + [sym_rune_literal] = ACTIONS(1474), + [sym_pseudo_compile_time_identifier] = ACTIONS(1476), [anon_sym_shared] = ACTIONS(83), [anon_sym_map_LBRACK] = ACTIONS(85), [anon_sym_chan] = ACTIONS(87), [anon_sym_thread] = ACTIONS(89), [anon_sym_atomic] = ACTIONS(91), - [sym___double_quote] = ACTIONS(1478), - [sym___single_quote] = ACTIONS(1480), - [sym___c_double_quote] = ACTIONS(1482), - [sym___c_single_quote] = ACTIONS(1484), - [sym___r_double_quote] = ACTIONS(1486), - [sym___r_single_quote] = ACTIONS(1488), + [sym___double_quote] = ACTIONS(1480), + [sym___single_quote] = ACTIONS(1482), + [sym___c_double_quote] = ACTIONS(1484), + [sym___c_single_quote] = ACTIONS(1486), + [sym___r_double_quote] = ACTIONS(1488), + [sym___r_single_quote] = ACTIONS(1490), }, [526] = { [sym_line_comment] = STATE(526), [sym_block_comment] = STATE(526), - [sym__expression] = STATE(2774), - [sym__expression_without_blocks] = STATE(2300), - [sym__expression_with_blocks] = STATE(2300), - [sym_inc_expression] = STATE(2307), - [sym_dec_expression] = STATE(2307), - [sym_or_block_expression] = STATE(2307), - [sym_option_propagation_expression] = STATE(2307), - [sym_result_propagation_expression] = STATE(2307), - [sym_anon_struct_value_expression] = STATE(2380), - [sym_go_expression] = STATE(2307), - [sym_spawn_expression] = STATE(2307), - [sym_parenthesized_expression] = STATE(2307), - [sym_call_expression] = STATE(2307), - [sym_type_initializer] = STATE(2380), - [sym_function_literal] = STATE(2307), - [sym_reference_expression] = STATE(2311), - [sym_type_reference_expression] = STATE(3541), - [sym_unary_expression] = STATE(2307), - [sym_receive_expression] = STATE(2307), - [sym_binary_expression] = STATE(2307), - [sym_as_type_cast_expression] = STATE(2307), - [sym__max_group] = STATE(2307), - [sym_literal] = STATE(2292), - [sym_map_init_expression] = STATE(2380), - [sym_array_creation] = STATE(2307), - [sym_fixed_array_creation] = STATE(2307), - [sym_selector_expression] = STATE(2307), - [sym_index_expression] = STATE(2307), - [sym_slice_expression] = STATE(2307), - [sym_if_expression] = STATE(2380), - [sym_compile_time_if_expression] = STATE(2380), - [sym_is_expression] = STATE(2307), - [sym_in_expression] = STATE(2307), - [sym_enum_fetch] = STATE(2307), - [sym_match_expression] = STATE(2380), - [sym_select_expression] = STATE(2380), - [sym_lock_expression] = STATE(2380), - [sym_unsafe_expression] = STATE(2380), - [sym_sql_expression] = STATE(2380), - [sym_c_string_literal] = STATE(2308), - [sym_raw_string_literal] = STATE(2308), - [sym_interpreted_string_literal] = STATE(2308), - [sym_mutability_modifiers] = STATE(944), - [sym_mutable_expression] = STATE(4465), - [sym_plain_type] = STATE(4297), - [sym__plain_type_without_special] = STATE(2302), - [sym_anon_struct_type] = STATE(2303), - [sym_multi_return_type] = STATE(2302), - [sym_result_type] = STATE(2302), - [sym_option_type] = STATE(2302), - [sym_qualified_type] = STATE(3541), - [sym_fixed_array_type] = STATE(2303), - [sym_array_type] = STATE(2303), - [sym_pointer_type] = STATE(2303), - [sym_wrong_pointer_type] = STATE(2303), - [sym_map_type] = STATE(2303), - [sym_channel_type] = STATE(2303), - [sym_shared_type] = STATE(2303), - [sym_thread_type] = STATE(2303), - [sym_atomic_type] = STATE(2303), - [sym_generic_type] = STATE(2303), - [sym_function_type] = STATE(2303), - [sym_identifier] = ACTIONS(1807), + [sym__expression] = STATE(2830), + [sym__expression_without_blocks] = STATE(2347), + [sym__expression_with_blocks] = STATE(2347), + [sym_inc_expression] = STATE(2379), + [sym_dec_expression] = STATE(2379), + [sym_or_block_expression] = STATE(2379), + [sym_option_propagation_expression] = STATE(2379), + [sym_result_propagation_expression] = STATE(2379), + [sym_anon_struct_value_expression] = STATE(2378), + [sym_go_expression] = STATE(2379), + [sym_spawn_expression] = STATE(2379), + [sym_parenthesized_expression] = STATE(2379), + [sym_call_expression] = STATE(2379), + [sym_type_initializer] = STATE(2378), + [sym_function_literal] = STATE(2379), + [sym_reference_expression] = STATE(2893), + [sym_type_reference_expression] = STATE(3460), + [sym_unary_expression] = STATE(2379), + [sym_receive_expression] = STATE(2379), + [sym_binary_expression] = STATE(2379), + [sym_as_type_cast_expression] = STATE(2379), + [sym__max_group] = STATE(2379), + [sym_literal] = STATE(2392), + [sym_map_init_expression] = STATE(2378), + [sym_array_creation] = STATE(2379), + [sym_fixed_array_creation] = STATE(2379), + [sym_selector_expression] = STATE(2897), + [sym_index_expression] = STATE(2379), + [sym_slice_expression] = STATE(2379), + [sym_if_expression] = STATE(2378), + [sym_compile_time_if_expression] = STATE(2378), + [sym_is_expression] = STATE(2379), + [sym_in_expression] = STATE(2379), + [sym_enum_fetch] = STATE(2379), + [sym_match_expression] = STATE(2378), + [sym_select_expression] = STATE(2378), + [sym_lock_expression] = STATE(2378), + [sym_unsafe_expression] = STATE(2378), + [sym_sql_expression] = STATE(2378), + [sym_c_string_literal] = STATE(2401), + [sym_raw_string_literal] = STATE(2401), + [sym_interpreted_string_literal] = STATE(2401), + [sym_mutability_modifiers] = STATE(939), + [sym_plain_type] = STATE(4160), + [sym__plain_type_without_special] = STATE(2360), + [sym_anon_struct_type] = STATE(2362), + [sym_multi_return_type] = STATE(2360), + [sym_result_type] = STATE(2360), + [sym_option_type] = STATE(2360), + [sym_qualified_type] = STATE(3460), + [sym_fixed_array_type] = STATE(2362), + [sym_array_type] = STATE(2362), + [sym_pointer_type] = STATE(2362), + [sym_wrong_pointer_type] = STATE(2362), + [sym_map_type] = STATE(2362), + [sym_channel_type] = STATE(2362), + [sym_shared_type] = STATE(2362), + [sym_thread_type] = STATE(2362), + [sym_atomic_type] = STATE(2362), + [sym_generic_type] = STATE(2362), + [sym_function_type] = STATE(2362), + [sym_identifier] = ACTIONS(1428), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1428), - [anon_sym_LBRACE] = ACTIONS(1430), - [anon_sym_LPAREN] = ACTIONS(1432), - [anon_sym_fn] = ACTIONS(1434), - [anon_sym_PLUS] = ACTIONS(3064), - [anon_sym_DASH] = ACTIONS(3064), - [anon_sym_STAR] = ACTIONS(3066), - [anon_sym_struct] = ACTIONS(1440), + [anon_sym_DOT] = ACTIONS(1430), + [anon_sym_LBRACE] = ACTIONS(1432), + [anon_sym_LPAREN] = ACTIONS(1434), + [anon_sym_fn] = ACTIONS(1436), + [anon_sym_PLUS] = ACTIONS(1438), + [anon_sym_DASH] = ACTIONS(1438), + [anon_sym_STAR] = ACTIONS(1440), + [anon_sym_RBRACK] = ACTIONS(3142), + [anon_sym_struct] = ACTIONS(1442), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(3068), - [anon_sym_go] = ACTIONS(3070), - [anon_sym_spawn] = ACTIONS(3072), - [anon_sym_json_DOTdecode] = ACTIONS(1448), - [anon_sym_LBRACK2] = ACTIONS(1821), - [anon_sym_TILDE] = ACTIONS(3064), - [anon_sym_CARET] = ACTIONS(3064), - [anon_sym_AMP] = ACTIONS(3074), - [anon_sym_LT_DASH] = ACTIONS(3076), - [sym_none] = ACTIONS(1456), - [sym_true] = ACTIONS(1456), - [sym_false] = ACTIONS(1456), - [sym_nil] = ACTIONS(1456), - [anon_sym_if] = ACTIONS(1827), - [anon_sym_DOLLARif] = ACTIONS(1460), - [anon_sym_match] = ACTIONS(1462), - [anon_sym_select] = ACTIONS(3078), - [anon_sym_lock] = ACTIONS(3080), - [anon_sym_rlock] = ACTIONS(3080), - [anon_sym_unsafe] = ACTIONS(1833), - [anon_sym_sql] = ACTIONS(1470), - [sym_int_literal] = ACTIONS(1456), - [sym_float_literal] = ACTIONS(1472), - [sym_rune_literal] = ACTIONS(1472), - [sym_pseudo_compile_time_identifier] = ACTIONS(1474), + [anon_sym_BANG] = ACTIONS(1444), + [anon_sym_go] = ACTIONS(1446), + [anon_sym_spawn] = ACTIONS(1448), + [anon_sym_json_DOTdecode] = ACTIONS(1450), + [anon_sym_LBRACK2] = ACTIONS(1452), + [anon_sym_TILDE] = ACTIONS(1438), + [anon_sym_CARET] = ACTIONS(1438), + [anon_sym_AMP] = ACTIONS(1454), + [anon_sym_LT_DASH] = ACTIONS(1456), + [sym_none] = ACTIONS(1458), + [sym_true] = ACTIONS(1458), + [sym_false] = ACTIONS(1458), + [sym_nil] = ACTIONS(1458), + [anon_sym_if] = ACTIONS(1833), + [anon_sym_DOLLARif] = ACTIONS(1462), + [anon_sym_match] = ACTIONS(1464), + [anon_sym_select] = ACTIONS(1466), + [anon_sym_lock] = ACTIONS(1468), + [anon_sym_rlock] = ACTIONS(1468), + [anon_sym_unsafe] = ACTIONS(1839), + [anon_sym_sql] = ACTIONS(1472), + [sym_int_literal] = ACTIONS(3144), + [sym_float_literal] = ACTIONS(1474), + [sym_rune_literal] = ACTIONS(1474), + [sym_pseudo_compile_time_identifier] = ACTIONS(1476), [anon_sym_shared] = ACTIONS(83), [anon_sym_map_LBRACK] = ACTIONS(85), [anon_sym_chan] = ACTIONS(87), [anon_sym_thread] = ACTIONS(89), [anon_sym_atomic] = ACTIONS(91), - [sym___double_quote] = ACTIONS(1478), - [sym___single_quote] = ACTIONS(1480), - [sym___c_double_quote] = ACTIONS(1482), - [sym___c_single_quote] = ACTIONS(1484), - [sym___r_double_quote] = ACTIONS(1486), - [sym___r_single_quote] = ACTIONS(1488), + [sym___double_quote] = ACTIONS(1480), + [sym___single_quote] = ACTIONS(1482), + [sym___c_double_quote] = ACTIONS(1484), + [sym___c_single_quote] = ACTIONS(1486), + [sym___r_double_quote] = ACTIONS(1488), + [sym___r_single_quote] = ACTIONS(1490), }, [527] = { [sym_line_comment] = STATE(527), [sym_block_comment] = STATE(527), - [sym__expression] = STATE(2831), - [sym__expression_without_blocks] = STATE(2300), - [sym__expression_with_blocks] = STATE(2300), - [sym_inc_expression] = STATE(2307), - [sym_dec_expression] = STATE(2307), - [sym_or_block_expression] = STATE(2307), - [sym_option_propagation_expression] = STATE(2307), - [sym_result_propagation_expression] = STATE(2307), - [sym_anon_struct_value_expression] = STATE(2380), - [sym_go_expression] = STATE(2307), - [sym_spawn_expression] = STATE(2307), - [sym_parenthesized_expression] = STATE(2307), - [sym_call_expression] = STATE(2307), - [sym_type_initializer] = STATE(2380), - [sym_function_literal] = STATE(2307), - [sym_reference_expression] = STATE(2926), - [sym_type_reference_expression] = STATE(3541), - [sym_unary_expression] = STATE(2307), - [sym_receive_expression] = STATE(2307), - [sym_binary_expression] = STATE(2307), - [sym_as_type_cast_expression] = STATE(2307), - [sym__max_group] = STATE(2307), - [sym_literal] = STATE(2292), - [sym_map_init_expression] = STATE(2380), - [sym_array_creation] = STATE(2307), - [sym_fixed_array_creation] = STATE(2307), - [sym_selector_expression] = STATE(2928), - [sym_index_expression] = STATE(2307), - [sym_slice_expression] = STATE(2307), - [sym_if_expression] = STATE(2380), - [sym_compile_time_if_expression] = STATE(2380), - [sym_is_expression] = STATE(2307), - [sym_in_expression] = STATE(2307), - [sym_enum_fetch] = STATE(2307), - [sym_match_expression] = STATE(2380), - [sym_select_expression] = STATE(2380), - [sym_lock_expression] = STATE(2380), - [sym_unsafe_expression] = STATE(2380), - [sym_sql_expression] = STATE(2380), - [sym_c_string_literal] = STATE(2308), - [sym_raw_string_literal] = STATE(2308), - [sym_interpreted_string_literal] = STATE(2308), + [sym__expression] = STATE(2830), + [sym__expression_without_blocks] = STATE(2347), + [sym__expression_with_blocks] = STATE(2347), + [sym_inc_expression] = STATE(2379), + [sym_dec_expression] = STATE(2379), + [sym_or_block_expression] = STATE(2379), + [sym_option_propagation_expression] = STATE(2379), + [sym_result_propagation_expression] = STATE(2379), + [sym_anon_struct_value_expression] = STATE(2378), + [sym_go_expression] = STATE(2379), + [sym_spawn_expression] = STATE(2379), + [sym_parenthesized_expression] = STATE(2379), + [sym_call_expression] = STATE(2379), + [sym_type_initializer] = STATE(2378), + [sym_function_literal] = STATE(2379), + [sym_reference_expression] = STATE(2907), + [sym_type_reference_expression] = STATE(3460), + [sym_unary_expression] = STATE(2379), + [sym_receive_expression] = STATE(2379), + [sym_binary_expression] = STATE(2379), + [sym_as_type_cast_expression] = STATE(2379), + [sym__max_group] = STATE(2379), + [sym_literal] = STATE(2392), + [sym_map_init_expression] = STATE(2378), + [sym_array_creation] = STATE(2379), + [sym_fixed_array_creation] = STATE(2379), + [sym_selector_expression] = STATE(2932), + [sym_index_expression] = STATE(2379), + [sym_slice_expression] = STATE(2379), + [sym_if_expression] = STATE(2378), + [sym_compile_time_if_expression] = STATE(2378), + [sym_is_expression] = STATE(2379), + [sym_in_expression] = STATE(2379), + [sym_enum_fetch] = STATE(2379), + [sym_match_expression] = STATE(2378), + [sym_select_expression] = STATE(2378), + [sym_lock_expression] = STATE(2378), + [sym_unsafe_expression] = STATE(2378), + [sym_sql_expression] = STATE(2378), + [sym_c_string_literal] = STATE(2401), + [sym_raw_string_literal] = STATE(2401), + [sym_interpreted_string_literal] = STATE(2401), [sym_mutability_modifiers] = STATE(939), - [sym_plain_type] = STATE(4297), - [sym__plain_type_without_special] = STATE(2302), - [sym_anon_struct_type] = STATE(2303), - [sym_multi_return_type] = STATE(2302), - [sym_result_type] = STATE(2302), - [sym_option_type] = STATE(2302), - [sym_qualified_type] = STATE(3541), - [sym_fixed_array_type] = STATE(2303), - [sym_array_type] = STATE(2303), - [sym_pointer_type] = STATE(2303), - [sym_wrong_pointer_type] = STATE(2303), - [sym_map_type] = STATE(2303), - [sym_channel_type] = STATE(2303), - [sym_shared_type] = STATE(2303), - [sym_thread_type] = STATE(2303), - [sym_atomic_type] = STATE(2303), - [sym_generic_type] = STATE(2303), - [sym_function_type] = STATE(2303), - [sym_identifier] = ACTIONS(1426), + [sym_plain_type] = STATE(4160), + [sym__plain_type_without_special] = STATE(2360), + [sym_anon_struct_type] = STATE(2362), + [sym_multi_return_type] = STATE(2360), + [sym_result_type] = STATE(2360), + [sym_option_type] = STATE(2360), + [sym_qualified_type] = STATE(3460), + [sym_fixed_array_type] = STATE(2362), + [sym_array_type] = STATE(2362), + [sym_pointer_type] = STATE(2362), + [sym_wrong_pointer_type] = STATE(2362), + [sym_map_type] = STATE(2362), + [sym_channel_type] = STATE(2362), + [sym_shared_type] = STATE(2362), + [sym_thread_type] = STATE(2362), + [sym_atomic_type] = STATE(2362), + [sym_generic_type] = STATE(2362), + [sym_function_type] = STATE(2362), + [sym_identifier] = ACTIONS(1428), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1428), - [anon_sym_LBRACE] = ACTIONS(1430), - [anon_sym_LPAREN] = ACTIONS(1432), - [anon_sym_fn] = ACTIONS(1434), - [anon_sym_PLUS] = ACTIONS(1436), - [anon_sym_DASH] = ACTIONS(1436), - [anon_sym_STAR] = ACTIONS(1438), - [anon_sym_RBRACK] = ACTIONS(3232), - [anon_sym_struct] = ACTIONS(1440), + [anon_sym_DOT] = ACTIONS(1430), + [anon_sym_LBRACE] = ACTIONS(1432), + [anon_sym_LPAREN] = ACTIONS(1434), + [anon_sym_fn] = ACTIONS(1436), + [anon_sym_PLUS] = ACTIONS(1438), + [anon_sym_DASH] = ACTIONS(1438), + [anon_sym_STAR] = ACTIONS(1440), + [anon_sym_RBRACK] = ACTIONS(3146), + [anon_sym_struct] = ACTIONS(1442), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(1442), - [anon_sym_go] = ACTIONS(1444), - [anon_sym_spawn] = ACTIONS(1446), - [anon_sym_json_DOTdecode] = ACTIONS(1448), - [anon_sym_LBRACK2] = ACTIONS(1450), - [anon_sym_TILDE] = ACTIONS(1436), - [anon_sym_CARET] = ACTIONS(1436), - [anon_sym_AMP] = ACTIONS(1452), - [anon_sym_LT_DASH] = ACTIONS(1454), - [sym_none] = ACTIONS(1456), - [sym_true] = ACTIONS(1456), - [sym_false] = ACTIONS(1456), - [sym_nil] = ACTIONS(1456), - [anon_sym_if] = ACTIONS(1827), - [anon_sym_DOLLARif] = ACTIONS(1460), - [anon_sym_match] = ACTIONS(1462), - [anon_sym_select] = ACTIONS(1464), - [anon_sym_lock] = ACTIONS(1466), - [anon_sym_rlock] = ACTIONS(1466), - [anon_sym_unsafe] = ACTIONS(1833), - [anon_sym_sql] = ACTIONS(1470), - [sym_int_literal] = ACTIONS(3234), - [sym_float_literal] = ACTIONS(1472), - [sym_rune_literal] = ACTIONS(1472), - [sym_pseudo_compile_time_identifier] = ACTIONS(1474), + [anon_sym_BANG] = ACTIONS(1444), + [anon_sym_go] = ACTIONS(1446), + [anon_sym_spawn] = ACTIONS(1448), + [anon_sym_json_DOTdecode] = ACTIONS(1450), + [anon_sym_LBRACK2] = ACTIONS(1452), + [anon_sym_TILDE] = ACTIONS(1438), + [anon_sym_CARET] = ACTIONS(1438), + [anon_sym_AMP] = ACTIONS(1454), + [anon_sym_LT_DASH] = ACTIONS(1456), + [sym_none] = ACTIONS(1458), + [sym_true] = ACTIONS(1458), + [sym_false] = ACTIONS(1458), + [sym_nil] = ACTIONS(1458), + [anon_sym_if] = ACTIONS(1833), + [anon_sym_DOLLARif] = ACTIONS(1462), + [anon_sym_match] = ACTIONS(1464), + [anon_sym_select] = ACTIONS(1466), + [anon_sym_lock] = ACTIONS(1468), + [anon_sym_rlock] = ACTIONS(1468), + [anon_sym_unsafe] = ACTIONS(1839), + [anon_sym_sql] = ACTIONS(1472), + [sym_int_literal] = ACTIONS(3148), + [sym_float_literal] = ACTIONS(1474), + [sym_rune_literal] = ACTIONS(1474), + [sym_pseudo_compile_time_identifier] = ACTIONS(1476), [anon_sym_shared] = ACTIONS(83), [anon_sym_map_LBRACK] = ACTIONS(85), [anon_sym_chan] = ACTIONS(87), [anon_sym_thread] = ACTIONS(89), [anon_sym_atomic] = ACTIONS(91), - [sym___double_quote] = ACTIONS(1478), - [sym___single_quote] = ACTIONS(1480), - [sym___c_double_quote] = ACTIONS(1482), - [sym___c_single_quote] = ACTIONS(1484), - [sym___r_double_quote] = ACTIONS(1486), - [sym___r_single_quote] = ACTIONS(1488), + [sym___double_quote] = ACTIONS(1480), + [sym___single_quote] = ACTIONS(1482), + [sym___c_double_quote] = ACTIONS(1484), + [sym___c_single_quote] = ACTIONS(1486), + [sym___r_double_quote] = ACTIONS(1488), + [sym___r_single_quote] = ACTIONS(1490), }, [528] = { [sym_line_comment] = STATE(528), [sym_block_comment] = STATE(528), - [sym__expression] = STATE(2806), - [sym__expression_without_blocks] = STATE(2818), - [sym__expression_with_blocks] = STATE(2300), - [sym_inc_expression] = STATE(2307), - [sym_dec_expression] = STATE(2307), - [sym_or_block_expression] = STATE(2307), - [sym_option_propagation_expression] = STATE(2307), - [sym_result_propagation_expression] = STATE(2307), - [sym_anon_struct_value_expression] = STATE(2380), - [sym_go_expression] = STATE(2307), - [sym_spawn_expression] = STATE(2307), - [sym_parenthesized_expression] = STATE(2307), - [sym_call_expression] = STATE(2307), - [sym_type_initializer] = STATE(2380), - [sym_function_literal] = STATE(2307), - [sym_reference_expression] = STATE(2311), - [sym_type_reference_expression] = STATE(3541), - [sym_unary_expression] = STATE(2307), - [sym_receive_expression] = STATE(2307), - [sym_binary_expression] = STATE(2307), - [sym_as_type_cast_expression] = STATE(2307), - [sym__max_group] = STATE(2307), - [sym_literal] = STATE(2292), - [sym_map_init_expression] = STATE(2380), - [sym_array_creation] = STATE(2307), - [sym_fixed_array_creation] = STATE(2307), - [sym_selector_expression] = STATE(2307), - [sym_index_expression] = STATE(2307), - [sym_slice_expression] = STATE(2307), - [sym_if_expression] = STATE(2380), - [sym_compile_time_if_expression] = STATE(2380), - [sym_is_expression] = STATE(2307), - [sym_in_expression] = STATE(2307), - [sym_enum_fetch] = STATE(2307), - [sym_match_expression] = STATE(2380), - [sym_select_expression] = STATE(2380), - [sym_lock_expression] = STATE(2380), - [sym_unsafe_expression] = STATE(2380), - [sym_sql_expression] = STATE(2380), - [sym_c_string_literal] = STATE(2308), - [sym_raw_string_literal] = STATE(2308), - [sym_interpreted_string_literal] = STATE(2308), - [sym_mutability_modifiers] = STATE(632), - [sym_expression_without_blocks_list] = STATE(4576), - [sym_plain_type] = STATE(4297), - [sym__plain_type_without_special] = STATE(2302), - [sym_anon_struct_type] = STATE(2303), - [sym_multi_return_type] = STATE(2302), - [sym_result_type] = STATE(2302), - [sym_option_type] = STATE(2302), - [sym_qualified_type] = STATE(3541), - [sym_fixed_array_type] = STATE(2303), - [sym_array_type] = STATE(2303), - [sym_pointer_type] = STATE(2303), - [sym_wrong_pointer_type] = STATE(2303), - [sym_map_type] = STATE(2303), - [sym_channel_type] = STATE(2303), - [sym_shared_type] = STATE(2303), - [sym_thread_type] = STATE(2303), - [sym_atomic_type] = STATE(2303), - [sym_generic_type] = STATE(2303), - [sym_function_type] = STATE(2303), - [sym_identifier] = ACTIONS(1807), + [sym__expression] = STATE(2830), + [sym__expression_without_blocks] = STATE(2347), + [sym__expression_with_blocks] = STATE(2347), + [sym_inc_expression] = STATE(2379), + [sym_dec_expression] = STATE(2379), + [sym_or_block_expression] = STATE(2379), + [sym_option_propagation_expression] = STATE(2379), + [sym_result_propagation_expression] = STATE(2379), + [sym_anon_struct_value_expression] = STATE(2378), + [sym_go_expression] = STATE(2379), + [sym_spawn_expression] = STATE(2379), + [sym_parenthesized_expression] = STATE(2379), + [sym_call_expression] = STATE(2379), + [sym_type_initializer] = STATE(2378), + [sym_function_literal] = STATE(2379), + [sym_reference_expression] = STATE(2958), + [sym_type_reference_expression] = STATE(3460), + [sym_unary_expression] = STATE(2379), + [sym_receive_expression] = STATE(2379), + [sym_binary_expression] = STATE(2379), + [sym_as_type_cast_expression] = STATE(2379), + [sym__max_group] = STATE(2379), + [sym_literal] = STATE(2392), + [sym_map_init_expression] = STATE(2378), + [sym_array_creation] = STATE(2379), + [sym_fixed_array_creation] = STATE(2379), + [sym_selector_expression] = STATE(2959), + [sym_index_expression] = STATE(2379), + [sym_slice_expression] = STATE(2379), + [sym_if_expression] = STATE(2378), + [sym_compile_time_if_expression] = STATE(2378), + [sym_is_expression] = STATE(2379), + [sym_in_expression] = STATE(2379), + [sym_enum_fetch] = STATE(2379), + [sym_match_expression] = STATE(2378), + [sym_select_expression] = STATE(2378), + [sym_lock_expression] = STATE(2378), + [sym_unsafe_expression] = STATE(2378), + [sym_sql_expression] = STATE(2378), + [sym_c_string_literal] = STATE(2401), + [sym_raw_string_literal] = STATE(2401), + [sym_interpreted_string_literal] = STATE(2401), + [sym_mutability_modifiers] = STATE(939), + [sym_plain_type] = STATE(4160), + [sym__plain_type_without_special] = STATE(2360), + [sym_anon_struct_type] = STATE(2362), + [sym_multi_return_type] = STATE(2360), + [sym_result_type] = STATE(2360), + [sym_option_type] = STATE(2360), + [sym_qualified_type] = STATE(3460), + [sym_fixed_array_type] = STATE(2362), + [sym_array_type] = STATE(2362), + [sym_pointer_type] = STATE(2362), + [sym_wrong_pointer_type] = STATE(2362), + [sym_map_type] = STATE(2362), + [sym_channel_type] = STATE(2362), + [sym_shared_type] = STATE(2362), + [sym_thread_type] = STATE(2362), + [sym_atomic_type] = STATE(2362), + [sym_generic_type] = STATE(2362), + [sym_function_type] = STATE(2362), + [sym_identifier] = ACTIONS(1428), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1428), - [anon_sym_LBRACE] = ACTIONS(1430), - [anon_sym_LPAREN] = ACTIONS(1432), - [anon_sym_fn] = ACTIONS(1434), - [anon_sym_PLUS] = ACTIONS(1811), - [anon_sym_DASH] = ACTIONS(1811), - [anon_sym_STAR] = ACTIONS(1813), - [anon_sym_struct] = ACTIONS(1440), + [anon_sym_DOT] = ACTIONS(1430), + [anon_sym_LBRACE] = ACTIONS(1432), + [anon_sym_LPAREN] = ACTIONS(1434), + [anon_sym_fn] = ACTIONS(1436), + [anon_sym_PLUS] = ACTIONS(1438), + [anon_sym_DASH] = ACTIONS(1438), + [anon_sym_STAR] = ACTIONS(1440), + [anon_sym_RBRACK] = ACTIONS(3150), + [anon_sym_struct] = ACTIONS(1442), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(1815), - [anon_sym_go] = ACTIONS(1817), - [anon_sym_spawn] = ACTIONS(1819), - [anon_sym_json_DOTdecode] = ACTIONS(1448), - [anon_sym_LBRACK2] = ACTIONS(1821), - [anon_sym_TILDE] = ACTIONS(1811), - [anon_sym_CARET] = ACTIONS(1811), - [anon_sym_AMP] = ACTIONS(1823), - [anon_sym_LT_DASH] = ACTIONS(1825), - [sym_none] = ACTIONS(1456), - [sym_true] = ACTIONS(1456), - [sym_false] = ACTIONS(1456), - [sym_nil] = ACTIONS(1456), - [anon_sym_if] = ACTIONS(1827), - [anon_sym_DOLLARif] = ACTIONS(1460), - [anon_sym_match] = ACTIONS(1462), - [anon_sym_select] = ACTIONS(1464), - [anon_sym_lock] = ACTIONS(1466), - [anon_sym_rlock] = ACTIONS(1466), - [anon_sym_unsafe] = ACTIONS(1833), - [anon_sym_sql] = ACTIONS(1470), - [sym_int_literal] = ACTIONS(1456), - [sym_float_literal] = ACTIONS(1472), - [sym_rune_literal] = ACTIONS(1472), - [sym_pseudo_compile_time_identifier] = ACTIONS(1474), + [anon_sym_BANG] = ACTIONS(1444), + [anon_sym_go] = ACTIONS(1446), + [anon_sym_spawn] = ACTIONS(1448), + [anon_sym_json_DOTdecode] = ACTIONS(1450), + [anon_sym_LBRACK2] = ACTIONS(1452), + [anon_sym_TILDE] = ACTIONS(1438), + [anon_sym_CARET] = ACTIONS(1438), + [anon_sym_AMP] = ACTIONS(1454), + [anon_sym_LT_DASH] = ACTIONS(1456), + [sym_none] = ACTIONS(1458), + [sym_true] = ACTIONS(1458), + [sym_false] = ACTIONS(1458), + [sym_nil] = ACTIONS(1458), + [anon_sym_if] = ACTIONS(1833), + [anon_sym_DOLLARif] = ACTIONS(1462), + [anon_sym_match] = ACTIONS(1464), + [anon_sym_select] = ACTIONS(1466), + [anon_sym_lock] = ACTIONS(1468), + [anon_sym_rlock] = ACTIONS(1468), + [anon_sym_unsafe] = ACTIONS(1839), + [anon_sym_sql] = ACTIONS(1472), + [sym_int_literal] = ACTIONS(3152), + [sym_float_literal] = ACTIONS(1474), + [sym_rune_literal] = ACTIONS(1474), + [sym_pseudo_compile_time_identifier] = ACTIONS(1476), [anon_sym_shared] = ACTIONS(83), [anon_sym_map_LBRACK] = ACTIONS(85), [anon_sym_chan] = ACTIONS(87), [anon_sym_thread] = ACTIONS(89), [anon_sym_atomic] = ACTIONS(91), - [sym___double_quote] = ACTIONS(1478), - [sym___single_quote] = ACTIONS(1480), - [sym___c_double_quote] = ACTIONS(1482), - [sym___c_single_quote] = ACTIONS(1484), - [sym___r_double_quote] = ACTIONS(1486), - [sym___r_single_quote] = ACTIONS(1488), + [sym___double_quote] = ACTIONS(1480), + [sym___single_quote] = ACTIONS(1482), + [sym___c_double_quote] = ACTIONS(1484), + [sym___c_single_quote] = ACTIONS(1486), + [sym___r_double_quote] = ACTIONS(1488), + [sym___r_single_quote] = ACTIONS(1490), }, [529] = { [sym_line_comment] = STATE(529), [sym_block_comment] = STATE(529), - [sym__expression] = STATE(2724), - [sym__expression_without_blocks] = STATE(2300), - [sym__expression_with_blocks] = STATE(2300), - [sym_inc_expression] = STATE(2307), - [sym_dec_expression] = STATE(2307), - [sym_or_block_expression] = STATE(2307), - [sym_option_propagation_expression] = STATE(2307), - [sym_result_propagation_expression] = STATE(2307), - [sym_anon_struct_value_expression] = STATE(2380), - [sym_go_expression] = STATE(2307), - [sym_spawn_expression] = STATE(2307), - [sym_parenthesized_expression] = STATE(2307), - [sym_call_expression] = STATE(2307), - [sym_type_initializer] = STATE(2380), - [sym_function_literal] = STATE(2307), - [sym_reference_expression] = STATE(2311), - [sym_type_reference_expression] = STATE(3541), - [sym_unary_expression] = STATE(2307), - [sym_receive_expression] = STATE(2307), - [sym_binary_expression] = STATE(2307), - [sym_as_type_cast_expression] = STATE(2307), - [sym__max_group] = STATE(2307), - [sym_literal] = STATE(2292), - [sym_map_init_expression] = STATE(2380), - [sym_array_creation] = STATE(2307), - [sym_fixed_array_creation] = STATE(2307), - [sym_selector_expression] = STATE(2307), - [sym_index_expression] = STATE(2307), - [sym_slice_expression] = STATE(2307), - [sym_if_expression] = STATE(2380), - [sym_compile_time_if_expression] = STATE(2380), - [sym_is_expression] = STATE(2307), - [sym_in_expression] = STATE(2307), - [sym_enum_fetch] = STATE(2307), - [sym_match_expression] = STATE(2380), - [sym_select_expression] = STATE(2380), - [sym_lock_expression] = STATE(2380), - [sym_unsafe_expression] = STATE(2380), - [sym_sql_expression] = STATE(2380), - [sym_c_string_literal] = STATE(2308), - [sym_raw_string_literal] = STATE(2308), - [sym_interpreted_string_literal] = STATE(2308), - [sym_mutability_modifiers] = STATE(944), - [sym_mutable_expression] = STATE(4412), - [sym_plain_type] = STATE(4297), - [sym__plain_type_without_special] = STATE(2302), - [sym_anon_struct_type] = STATE(2303), - [sym_multi_return_type] = STATE(2302), - [sym_result_type] = STATE(2302), - [sym_option_type] = STATE(2302), - [sym_qualified_type] = STATE(3541), - [sym_fixed_array_type] = STATE(2303), - [sym_array_type] = STATE(2303), - [sym_pointer_type] = STATE(2303), - [sym_wrong_pointer_type] = STATE(2303), - [sym_map_type] = STATE(2303), - [sym_channel_type] = STATE(2303), - [sym_shared_type] = STATE(2303), - [sym_thread_type] = STATE(2303), - [sym_atomic_type] = STATE(2303), - [sym_generic_type] = STATE(2303), - [sym_function_type] = STATE(2303), - [sym_identifier] = ACTIONS(1807), + [sym__expression] = STATE(2654), + [sym__expression_without_blocks] = STATE(2347), + [sym__expression_with_blocks] = STATE(2347), + [sym_inc_expression] = STATE(2379), + [sym_dec_expression] = STATE(2379), + [sym_or_block_expression] = STATE(2379), + [sym_option_propagation_expression] = STATE(2379), + [sym_result_propagation_expression] = STATE(2379), + [sym_anon_struct_value_expression] = STATE(2378), + [sym_go_expression] = STATE(2379), + [sym_spawn_expression] = STATE(2379), + [sym_parenthesized_expression] = STATE(2379), + [sym_call_expression] = STATE(2379), + [sym_type_initializer] = STATE(2378), + [sym_function_literal] = STATE(2379), + [sym_reference_expression] = STATE(2377), + [sym_type_reference_expression] = STATE(3460), + [sym_unary_expression] = STATE(2379), + [sym_receive_expression] = STATE(2379), + [sym_binary_expression] = STATE(2379), + [sym_as_type_cast_expression] = STATE(2379), + [sym__max_group] = STATE(2379), + [sym_literal] = STATE(2392), + [sym_map_init_expression] = STATE(2378), + [sym_array_creation] = STATE(2379), + [sym_fixed_array_creation] = STATE(2379), + [sym_selector_expression] = STATE(2379), + [sym_index_expression] = STATE(2379), + [sym_slice_expression] = STATE(2379), + [sym_if_expression] = STATE(2378), + [sym_compile_time_if_expression] = STATE(2378), + [sym_is_expression] = STATE(2379), + [sym_in_expression] = STATE(2379), + [sym_enum_fetch] = STATE(2379), + [sym_match_expression] = STATE(2378), + [sym_select_expression] = STATE(2378), + [sym_lock_expression] = STATE(2378), + [sym_unsafe_expression] = STATE(2378), + [sym_sql_expression] = STATE(2378), + [sym_c_string_literal] = STATE(2401), + [sym_raw_string_literal] = STATE(2401), + [sym_interpreted_string_literal] = STATE(2401), + [sym_mutability_modifiers] = STATE(906), + [sym_mutable_expression] = STATE(4376), + [sym_plain_type] = STATE(4160), + [sym__plain_type_without_special] = STATE(2360), + [sym_anon_struct_type] = STATE(2362), + [sym_multi_return_type] = STATE(2360), + [sym_result_type] = STATE(2360), + [sym_option_type] = STATE(2360), + [sym_qualified_type] = STATE(3460), + [sym_fixed_array_type] = STATE(2362), + [sym_array_type] = STATE(2362), + [sym_pointer_type] = STATE(2362), + [sym_wrong_pointer_type] = STATE(2362), + [sym_map_type] = STATE(2362), + [sym_channel_type] = STATE(2362), + [sym_shared_type] = STATE(2362), + [sym_thread_type] = STATE(2362), + [sym_atomic_type] = STATE(2362), + [sym_generic_type] = STATE(2362), + [sym_function_type] = STATE(2362), + [sym_identifier] = ACTIONS(1815), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1428), - [anon_sym_LBRACE] = ACTIONS(1430), - [anon_sym_LPAREN] = ACTIONS(1432), - [anon_sym_fn] = ACTIONS(1434), - [anon_sym_PLUS] = ACTIONS(3064), - [anon_sym_DASH] = ACTIONS(3064), - [anon_sym_STAR] = ACTIONS(3066), - [anon_sym_struct] = ACTIONS(1440), + [anon_sym_DOT] = ACTIONS(1430), + [anon_sym_LBRACE] = ACTIONS(1432), + [anon_sym_LPAREN] = ACTIONS(1434), + [anon_sym_fn] = ACTIONS(1436), + [anon_sym_PLUS] = ACTIONS(3090), + [anon_sym_DASH] = ACTIONS(3090), + [anon_sym_STAR] = ACTIONS(3092), + [anon_sym_struct] = ACTIONS(1442), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(3068), - [anon_sym_go] = ACTIONS(3070), - [anon_sym_spawn] = ACTIONS(3072), - [anon_sym_json_DOTdecode] = ACTIONS(1448), - [anon_sym_LBRACK2] = ACTIONS(1821), - [anon_sym_TILDE] = ACTIONS(3064), - [anon_sym_CARET] = ACTIONS(3064), - [anon_sym_AMP] = ACTIONS(3074), - [anon_sym_LT_DASH] = ACTIONS(3076), - [sym_none] = ACTIONS(1456), - [sym_true] = ACTIONS(1456), - [sym_false] = ACTIONS(1456), - [sym_nil] = ACTIONS(1456), - [anon_sym_if] = ACTIONS(1827), - [anon_sym_DOLLARif] = ACTIONS(1460), - [anon_sym_match] = ACTIONS(1462), - [anon_sym_select] = ACTIONS(3078), - [anon_sym_lock] = ACTIONS(3080), - [anon_sym_rlock] = ACTIONS(3080), - [anon_sym_unsafe] = ACTIONS(1833), - [anon_sym_sql] = ACTIONS(1470), - [sym_int_literal] = ACTIONS(1456), - [sym_float_literal] = ACTIONS(1472), - [sym_rune_literal] = ACTIONS(1472), - [sym_pseudo_compile_time_identifier] = ACTIONS(1474), + [anon_sym_BANG] = ACTIONS(3094), + [anon_sym_go] = ACTIONS(3096), + [anon_sym_spawn] = ACTIONS(3098), + [anon_sym_json_DOTdecode] = ACTIONS(1450), + [anon_sym_LBRACK2] = ACTIONS(1827), + [anon_sym_TILDE] = ACTIONS(3090), + [anon_sym_CARET] = ACTIONS(3090), + [anon_sym_AMP] = ACTIONS(3100), + [anon_sym_LT_DASH] = ACTIONS(3102), + [sym_none] = ACTIONS(1458), + [sym_true] = ACTIONS(1458), + [sym_false] = ACTIONS(1458), + [sym_nil] = ACTIONS(1458), + [anon_sym_if] = ACTIONS(1833), + [anon_sym_DOLLARif] = ACTIONS(1462), + [anon_sym_match] = ACTIONS(1464), + [anon_sym_select] = ACTIONS(3104), + [anon_sym_lock] = ACTIONS(3106), + [anon_sym_rlock] = ACTIONS(3106), + [anon_sym_unsafe] = ACTIONS(1839), + [anon_sym_sql] = ACTIONS(1472), + [sym_int_literal] = ACTIONS(1458), + [sym_float_literal] = ACTIONS(1474), + [sym_rune_literal] = ACTIONS(1474), + [sym_pseudo_compile_time_identifier] = ACTIONS(1476), [anon_sym_shared] = ACTIONS(83), [anon_sym_map_LBRACK] = ACTIONS(85), [anon_sym_chan] = ACTIONS(87), [anon_sym_thread] = ACTIONS(89), [anon_sym_atomic] = ACTIONS(91), - [sym___double_quote] = ACTIONS(1478), - [sym___single_quote] = ACTIONS(1480), - [sym___c_double_quote] = ACTIONS(1482), - [sym___c_single_quote] = ACTIONS(1484), - [sym___r_double_quote] = ACTIONS(1486), - [sym___r_single_quote] = ACTIONS(1488), + [sym___double_quote] = ACTIONS(1480), + [sym___single_quote] = ACTIONS(1482), + [sym___c_double_quote] = ACTIONS(1484), + [sym___c_single_quote] = ACTIONS(1486), + [sym___r_double_quote] = ACTIONS(1488), + [sym___r_single_quote] = ACTIONS(1490), }, [530] = { [sym_line_comment] = STATE(530), [sym_block_comment] = STATE(530), - [sym__expression] = STATE(2480), - [sym__expression_without_blocks] = STATE(2300), - [sym__expression_with_blocks] = STATE(2300), - [sym_inc_expression] = STATE(2307), - [sym_dec_expression] = STATE(2307), - [sym_or_block_expression] = STATE(2307), - [sym_option_propagation_expression] = STATE(2307), - [sym_result_propagation_expression] = STATE(2307), - [sym_anon_struct_value_expression] = STATE(2380), - [sym_go_expression] = STATE(2307), - [sym_spawn_expression] = STATE(2307), - [sym_parenthesized_expression] = STATE(2307), - [sym_call_expression] = STATE(2307), - [sym_type_initializer] = STATE(2380), - [sym_function_literal] = STATE(2307), - [sym_reference_expression] = STATE(2311), - [sym_type_reference_expression] = STATE(3541), - [sym_unary_expression] = STATE(2307), - [sym_receive_expression] = STATE(2307), - [sym_binary_expression] = STATE(2307), - [sym_as_type_cast_expression] = STATE(2307), - [sym__max_group] = STATE(2307), - [sym_literal] = STATE(2292), - [sym_map_init_expression] = STATE(2380), - [sym_array_creation] = STATE(2307), - [sym_fixed_array_creation] = STATE(2307), - [sym_selector_expression] = STATE(2307), - [sym_index_expression] = STATE(2307), - [sym_slice_expression] = STATE(2307), - [sym_if_expression] = STATE(2380), - [sym_compile_time_if_expression] = STATE(2380), - [sym_is_expression] = STATE(2307), - [sym_in_expression] = STATE(2307), - [sym_enum_fetch] = STATE(2307), - [sym_match_expression] = STATE(2380), - [sym_select_expression] = STATE(2380), - [sym_lock_expression] = STATE(2380), - [sym_unsafe_expression] = STATE(2380), - [sym_sql_expression] = STATE(2380), - [sym_c_string_literal] = STATE(2308), - [sym_raw_string_literal] = STATE(2308), - [sym_interpreted_string_literal] = STATE(2308), - [sym_mutability_modifiers] = STATE(765), - [sym_mutable_expression] = STATE(3266), - [sym_plain_type] = STATE(4297), - [sym__plain_type_without_special] = STATE(2302), - [sym_anon_struct_type] = STATE(2303), - [sym_multi_return_type] = STATE(2302), - [sym_result_type] = STATE(2302), - [sym_option_type] = STATE(2302), - [sym_qualified_type] = STATE(3541), - [sym_fixed_array_type] = STATE(2303), - [sym_array_type] = STATE(2303), - [sym_pointer_type] = STATE(2303), - [sym_wrong_pointer_type] = STATE(2303), - [sym_map_type] = STATE(2303), - [sym_channel_type] = STATE(2303), - [sym_shared_type] = STATE(2303), - [sym_thread_type] = STATE(2303), - [sym_atomic_type] = STATE(2303), - [sym_generic_type] = STATE(2303), - [sym_function_type] = STATE(2303), - [sym_identifier] = ACTIONS(2189), + [sym__expression] = STATE(2830), + [sym__expression_without_blocks] = STATE(2347), + [sym__expression_with_blocks] = STATE(2347), + [sym_inc_expression] = STATE(2379), + [sym_dec_expression] = STATE(2379), + [sym_or_block_expression] = STATE(2379), + [sym_option_propagation_expression] = STATE(2379), + [sym_result_propagation_expression] = STATE(2379), + [sym_anon_struct_value_expression] = STATE(2378), + [sym_go_expression] = STATE(2379), + [sym_spawn_expression] = STATE(2379), + [sym_parenthesized_expression] = STATE(2379), + [sym_call_expression] = STATE(2379), + [sym_type_initializer] = STATE(2378), + [sym_function_literal] = STATE(2379), + [sym_reference_expression] = STATE(2927), + [sym_type_reference_expression] = STATE(3460), + [sym_unary_expression] = STATE(2379), + [sym_receive_expression] = STATE(2379), + [sym_binary_expression] = STATE(2379), + [sym_as_type_cast_expression] = STATE(2379), + [sym__max_group] = STATE(2379), + [sym_literal] = STATE(2392), + [sym_map_init_expression] = STATE(2378), + [sym_array_creation] = STATE(2379), + [sym_fixed_array_creation] = STATE(2379), + [sym_selector_expression] = STATE(2936), + [sym_index_expression] = STATE(2379), + [sym_slice_expression] = STATE(2379), + [sym_if_expression] = STATE(2378), + [sym_compile_time_if_expression] = STATE(2378), + [sym_is_expression] = STATE(2379), + [sym_in_expression] = STATE(2379), + [sym_enum_fetch] = STATE(2379), + [sym_match_expression] = STATE(2378), + [sym_select_expression] = STATE(2378), + [sym_lock_expression] = STATE(2378), + [sym_unsafe_expression] = STATE(2378), + [sym_sql_expression] = STATE(2378), + [sym_c_string_literal] = STATE(2401), + [sym_raw_string_literal] = STATE(2401), + [sym_interpreted_string_literal] = STATE(2401), + [sym_mutability_modifiers] = STATE(939), + [sym_plain_type] = STATE(4160), + [sym__plain_type_without_special] = STATE(2360), + [sym_anon_struct_type] = STATE(2362), + [sym_multi_return_type] = STATE(2360), + [sym_result_type] = STATE(2360), + [sym_option_type] = STATE(2360), + [sym_qualified_type] = STATE(3460), + [sym_fixed_array_type] = STATE(2362), + [sym_array_type] = STATE(2362), + [sym_pointer_type] = STATE(2362), + [sym_wrong_pointer_type] = STATE(2362), + [sym_map_type] = STATE(2362), + [sym_channel_type] = STATE(2362), + [sym_shared_type] = STATE(2362), + [sym_thread_type] = STATE(2362), + [sym_atomic_type] = STATE(2362), + [sym_generic_type] = STATE(2362), + [sym_function_type] = STATE(2362), + [sym_identifier] = ACTIONS(1428), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1428), - [anon_sym_LBRACE] = ACTIONS(1430), - [anon_sym_LPAREN] = ACTIONS(1432), - [anon_sym_fn] = ACTIONS(1434), - [anon_sym_PLUS] = ACTIONS(2191), - [anon_sym_DASH] = ACTIONS(2191), - [anon_sym_STAR] = ACTIONS(2193), - [anon_sym_struct] = ACTIONS(1440), + [anon_sym_DOT] = ACTIONS(1430), + [anon_sym_LBRACE] = ACTIONS(1432), + [anon_sym_LPAREN] = ACTIONS(1434), + [anon_sym_fn] = ACTIONS(1436), + [anon_sym_PLUS] = ACTIONS(1438), + [anon_sym_DASH] = ACTIONS(1438), + [anon_sym_STAR] = ACTIONS(1440), + [anon_sym_RBRACK] = ACTIONS(3154), + [anon_sym_struct] = ACTIONS(1442), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(2195), - [anon_sym_go] = ACTIONS(2197), - [anon_sym_spawn] = ACTIONS(2199), - [anon_sym_json_DOTdecode] = ACTIONS(1448), - [anon_sym_LBRACK2] = ACTIONS(2201), - [anon_sym_TILDE] = ACTIONS(2191), - [anon_sym_CARET] = ACTIONS(2191), - [anon_sym_AMP] = ACTIONS(2203), - [anon_sym_LT_DASH] = ACTIONS(2205), - [sym_none] = ACTIONS(1456), - [sym_true] = ACTIONS(1456), - [sym_false] = ACTIONS(1456), - [sym_nil] = ACTIONS(1456), - [anon_sym_if] = ACTIONS(1827), - [anon_sym_DOLLARif] = ACTIONS(1460), - [anon_sym_match] = ACTIONS(1462), - [anon_sym_select] = ACTIONS(2207), - [anon_sym_lock] = ACTIONS(2209), - [anon_sym_rlock] = ACTIONS(2209), - [anon_sym_unsafe] = ACTIONS(1833), - [anon_sym_sql] = ACTIONS(1470), - [sym_int_literal] = ACTIONS(1456), - [sym_float_literal] = ACTIONS(1472), - [sym_rune_literal] = ACTIONS(1472), - [sym_pseudo_compile_time_identifier] = ACTIONS(1474), + [anon_sym_BANG] = ACTIONS(1444), + [anon_sym_go] = ACTIONS(1446), + [anon_sym_spawn] = ACTIONS(1448), + [anon_sym_json_DOTdecode] = ACTIONS(1450), + [anon_sym_LBRACK2] = ACTIONS(1452), + [anon_sym_TILDE] = ACTIONS(1438), + [anon_sym_CARET] = ACTIONS(1438), + [anon_sym_AMP] = ACTIONS(1454), + [anon_sym_LT_DASH] = ACTIONS(1456), + [sym_none] = ACTIONS(1458), + [sym_true] = ACTIONS(1458), + [sym_false] = ACTIONS(1458), + [sym_nil] = ACTIONS(1458), + [anon_sym_if] = ACTIONS(1833), + [anon_sym_DOLLARif] = ACTIONS(1462), + [anon_sym_match] = ACTIONS(1464), + [anon_sym_select] = ACTIONS(1466), + [anon_sym_lock] = ACTIONS(1468), + [anon_sym_rlock] = ACTIONS(1468), + [anon_sym_unsafe] = ACTIONS(1839), + [anon_sym_sql] = ACTIONS(1472), + [sym_int_literal] = ACTIONS(3156), + [sym_float_literal] = ACTIONS(1474), + [sym_rune_literal] = ACTIONS(1474), + [sym_pseudo_compile_time_identifier] = ACTIONS(1476), [anon_sym_shared] = ACTIONS(83), [anon_sym_map_LBRACK] = ACTIONS(85), [anon_sym_chan] = ACTIONS(87), [anon_sym_thread] = ACTIONS(89), [anon_sym_atomic] = ACTIONS(91), - [sym___double_quote] = ACTIONS(1478), - [sym___single_quote] = ACTIONS(1480), - [sym___c_double_quote] = ACTIONS(1482), - [sym___c_single_quote] = ACTIONS(1484), - [sym___r_double_quote] = ACTIONS(1486), - [sym___r_single_quote] = ACTIONS(1488), + [sym___double_quote] = ACTIONS(1480), + [sym___single_quote] = ACTIONS(1482), + [sym___c_double_quote] = ACTIONS(1484), + [sym___c_single_quote] = ACTIONS(1486), + [sym___r_double_quote] = ACTIONS(1488), + [sym___r_single_quote] = ACTIONS(1490), }, [531] = { [sym_line_comment] = STATE(531), [sym_block_comment] = STATE(531), - [sym__expression] = STATE(2806), - [sym__expression_without_blocks] = STATE(2818), - [sym__expression_with_blocks] = STATE(2300), - [sym_inc_expression] = STATE(2307), - [sym_dec_expression] = STATE(2307), - [sym_or_block_expression] = STATE(2307), - [sym_option_propagation_expression] = STATE(2307), - [sym_result_propagation_expression] = STATE(2307), - [sym_anon_struct_value_expression] = STATE(2380), - [sym_go_expression] = STATE(2307), - [sym_spawn_expression] = STATE(2307), - [sym_parenthesized_expression] = STATE(2307), - [sym_call_expression] = STATE(2307), - [sym_type_initializer] = STATE(2380), - [sym_function_literal] = STATE(2307), - [sym_reference_expression] = STATE(2311), - [sym_type_reference_expression] = STATE(3541), - [sym_unary_expression] = STATE(2307), - [sym_receive_expression] = STATE(2307), - [sym_binary_expression] = STATE(2307), - [sym_as_type_cast_expression] = STATE(2307), - [sym__max_group] = STATE(2307), - [sym_literal] = STATE(2292), - [sym_map_init_expression] = STATE(2380), - [sym_array_creation] = STATE(2307), - [sym_fixed_array_creation] = STATE(2307), - [sym_selector_expression] = STATE(2307), - [sym_index_expression] = STATE(2307), - [sym_slice_expression] = STATE(2307), - [sym_if_expression] = STATE(2380), - [sym_compile_time_if_expression] = STATE(2380), - [sym_is_expression] = STATE(2307), - [sym_in_expression] = STATE(2307), - [sym_enum_fetch] = STATE(2307), - [sym_match_expression] = STATE(2380), - [sym_select_expression] = STATE(2380), - [sym_lock_expression] = STATE(2380), - [sym_unsafe_expression] = STATE(2380), - [sym_sql_expression] = STATE(2380), - [sym_c_string_literal] = STATE(2308), - [sym_raw_string_literal] = STATE(2308), - [sym_interpreted_string_literal] = STATE(2308), - [sym_mutability_modifiers] = STATE(632), - [sym_expression_without_blocks_list] = STATE(4577), - [sym_plain_type] = STATE(4297), - [sym__plain_type_without_special] = STATE(2302), - [sym_anon_struct_type] = STATE(2303), - [sym_multi_return_type] = STATE(2302), - [sym_result_type] = STATE(2302), - [sym_option_type] = STATE(2302), - [sym_qualified_type] = STATE(3541), - [sym_fixed_array_type] = STATE(2303), - [sym_array_type] = STATE(2303), - [sym_pointer_type] = STATE(2303), - [sym_wrong_pointer_type] = STATE(2303), - [sym_map_type] = STATE(2303), - [sym_channel_type] = STATE(2303), - [sym_shared_type] = STATE(2303), - [sym_thread_type] = STATE(2303), - [sym_atomic_type] = STATE(2303), - [sym_generic_type] = STATE(2303), - [sym_function_type] = STATE(2303), - [sym_identifier] = ACTIONS(1807), + [sym__expression] = STATE(2775), + [sym__expression_without_blocks] = STATE(2347), + [sym__expression_with_blocks] = STATE(2347), + [sym_inc_expression] = STATE(2379), + [sym_dec_expression] = STATE(2379), + [sym_or_block_expression] = STATE(2379), + [sym_option_propagation_expression] = STATE(2379), + [sym_result_propagation_expression] = STATE(2379), + [sym_anon_struct_value_expression] = STATE(2378), + [sym_go_expression] = STATE(2379), + [sym_spawn_expression] = STATE(2379), + [sym_parenthesized_expression] = STATE(2379), + [sym_call_expression] = STATE(2379), + [sym_type_initializer] = STATE(2378), + [sym_function_literal] = STATE(2379), + [sym_reference_expression] = STATE(2377), + [sym_type_reference_expression] = STATE(3460), + [sym_unary_expression] = STATE(2379), + [sym_receive_expression] = STATE(2379), + [sym_binary_expression] = STATE(2379), + [sym_as_type_cast_expression] = STATE(2379), + [sym__max_group] = STATE(2379), + [sym_literal] = STATE(2392), + [sym_map_init_expression] = STATE(2378), + [sym_array_creation] = STATE(2379), + [sym_fixed_array_creation] = STATE(2379), + [sym_selector_expression] = STATE(2379), + [sym_index_expression] = STATE(2379), + [sym_slice_expression] = STATE(2379), + [sym_if_expression] = STATE(2378), + [sym_compile_time_if_expression] = STATE(2378), + [sym_is_expression] = STATE(2379), + [sym_in_expression] = STATE(2379), + [sym_enum_fetch] = STATE(2379), + [sym_match_expression] = STATE(2378), + [sym_select_expression] = STATE(2378), + [sym_lock_expression] = STATE(2378), + [sym_unsafe_expression] = STATE(2378), + [sym_sql_expression] = STATE(2378), + [sym_c_string_literal] = STATE(2401), + [sym_raw_string_literal] = STATE(2401), + [sym_interpreted_string_literal] = STATE(2401), + [sym_mutability_modifiers] = STATE(906), + [sym_mutable_expression] = STATE(4457), + [sym_plain_type] = STATE(4160), + [sym__plain_type_without_special] = STATE(2360), + [sym_anon_struct_type] = STATE(2362), + [sym_multi_return_type] = STATE(2360), + [sym_result_type] = STATE(2360), + [sym_option_type] = STATE(2360), + [sym_qualified_type] = STATE(3460), + [sym_fixed_array_type] = STATE(2362), + [sym_array_type] = STATE(2362), + [sym_pointer_type] = STATE(2362), + [sym_wrong_pointer_type] = STATE(2362), + [sym_map_type] = STATE(2362), + [sym_channel_type] = STATE(2362), + [sym_shared_type] = STATE(2362), + [sym_thread_type] = STATE(2362), + [sym_atomic_type] = STATE(2362), + [sym_generic_type] = STATE(2362), + [sym_function_type] = STATE(2362), + [sym_identifier] = ACTIONS(1815), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1428), - [anon_sym_LBRACE] = ACTIONS(1430), - [anon_sym_LPAREN] = ACTIONS(1432), - [anon_sym_fn] = ACTIONS(1434), - [anon_sym_PLUS] = ACTIONS(1811), - [anon_sym_DASH] = ACTIONS(1811), - [anon_sym_STAR] = ACTIONS(1813), - [anon_sym_struct] = ACTIONS(1440), + [anon_sym_DOT] = ACTIONS(1430), + [anon_sym_LBRACE] = ACTIONS(1432), + [anon_sym_LPAREN] = ACTIONS(1434), + [anon_sym_fn] = ACTIONS(1436), + [anon_sym_PLUS] = ACTIONS(3090), + [anon_sym_DASH] = ACTIONS(3090), + [anon_sym_STAR] = ACTIONS(3092), + [anon_sym_struct] = ACTIONS(1442), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(1815), - [anon_sym_go] = ACTIONS(1817), - [anon_sym_spawn] = ACTIONS(1819), - [anon_sym_json_DOTdecode] = ACTIONS(1448), - [anon_sym_LBRACK2] = ACTIONS(1821), - [anon_sym_TILDE] = ACTIONS(1811), - [anon_sym_CARET] = ACTIONS(1811), - [anon_sym_AMP] = ACTIONS(1823), - [anon_sym_LT_DASH] = ACTIONS(1825), - [sym_none] = ACTIONS(1456), - [sym_true] = ACTIONS(1456), - [sym_false] = ACTIONS(1456), - [sym_nil] = ACTIONS(1456), - [anon_sym_if] = ACTIONS(1827), - [anon_sym_DOLLARif] = ACTIONS(1460), - [anon_sym_match] = ACTIONS(1462), - [anon_sym_select] = ACTIONS(1464), - [anon_sym_lock] = ACTIONS(1466), - [anon_sym_rlock] = ACTIONS(1466), - [anon_sym_unsafe] = ACTIONS(1833), - [anon_sym_sql] = ACTIONS(1470), - [sym_int_literal] = ACTIONS(1456), - [sym_float_literal] = ACTIONS(1472), - [sym_rune_literal] = ACTIONS(1472), - [sym_pseudo_compile_time_identifier] = ACTIONS(1474), + [anon_sym_BANG] = ACTIONS(3094), + [anon_sym_go] = ACTIONS(3096), + [anon_sym_spawn] = ACTIONS(3098), + [anon_sym_json_DOTdecode] = ACTIONS(1450), + [anon_sym_LBRACK2] = ACTIONS(1827), + [anon_sym_TILDE] = ACTIONS(3090), + [anon_sym_CARET] = ACTIONS(3090), + [anon_sym_AMP] = ACTIONS(3100), + [anon_sym_LT_DASH] = ACTIONS(3102), + [sym_none] = ACTIONS(1458), + [sym_true] = ACTIONS(1458), + [sym_false] = ACTIONS(1458), + [sym_nil] = ACTIONS(1458), + [anon_sym_if] = ACTIONS(1833), + [anon_sym_DOLLARif] = ACTIONS(1462), + [anon_sym_match] = ACTIONS(1464), + [anon_sym_select] = ACTIONS(3104), + [anon_sym_lock] = ACTIONS(3106), + [anon_sym_rlock] = ACTIONS(3106), + [anon_sym_unsafe] = ACTIONS(1839), + [anon_sym_sql] = ACTIONS(1472), + [sym_int_literal] = ACTIONS(1458), + [sym_float_literal] = ACTIONS(1474), + [sym_rune_literal] = ACTIONS(1474), + [sym_pseudo_compile_time_identifier] = ACTIONS(1476), [anon_sym_shared] = ACTIONS(83), [anon_sym_map_LBRACK] = ACTIONS(85), [anon_sym_chan] = ACTIONS(87), [anon_sym_thread] = ACTIONS(89), [anon_sym_atomic] = ACTIONS(91), - [sym___double_quote] = ACTIONS(1478), - [sym___single_quote] = ACTIONS(1480), - [sym___c_double_quote] = ACTIONS(1482), - [sym___c_single_quote] = ACTIONS(1484), - [sym___r_double_quote] = ACTIONS(1486), - [sym___r_single_quote] = ACTIONS(1488), + [sym___double_quote] = ACTIONS(1480), + [sym___single_quote] = ACTIONS(1482), + [sym___c_double_quote] = ACTIONS(1484), + [sym___c_single_quote] = ACTIONS(1486), + [sym___r_double_quote] = ACTIONS(1488), + [sym___r_single_quote] = ACTIONS(1490), }, [532] = { [sym_line_comment] = STATE(532), [sym_block_comment] = STATE(532), - [sym__expression] = STATE(2831), - [sym__expression_without_blocks] = STATE(2300), - [sym__expression_with_blocks] = STATE(2300), - [sym_inc_expression] = STATE(2307), - [sym_dec_expression] = STATE(2307), - [sym_or_block_expression] = STATE(2307), - [sym_option_propagation_expression] = STATE(2307), - [sym_result_propagation_expression] = STATE(2307), - [sym_anon_struct_value_expression] = STATE(2380), - [sym_go_expression] = STATE(2307), - [sym_spawn_expression] = STATE(2307), - [sym_parenthesized_expression] = STATE(2307), - [sym_call_expression] = STATE(2307), - [sym_type_initializer] = STATE(2380), - [sym_function_literal] = STATE(2307), - [sym_reference_expression] = STATE(2953), - [sym_type_reference_expression] = STATE(3541), - [sym_unary_expression] = STATE(2307), - [sym_receive_expression] = STATE(2307), - [sym_binary_expression] = STATE(2307), - [sym_as_type_cast_expression] = STATE(2307), - [sym__max_group] = STATE(2307), - [sym_literal] = STATE(2292), - [sym_map_init_expression] = STATE(2380), - [sym_array_creation] = STATE(2307), - [sym_fixed_array_creation] = STATE(2307), - [sym_selector_expression] = STATE(2936), - [sym_index_expression] = STATE(2307), - [sym_slice_expression] = STATE(2307), - [sym_if_expression] = STATE(2380), - [sym_compile_time_if_expression] = STATE(2380), - [sym_is_expression] = STATE(2307), - [sym_in_expression] = STATE(2307), - [sym_enum_fetch] = STATE(2307), - [sym_match_expression] = STATE(2380), - [sym_select_expression] = STATE(2380), - [sym_lock_expression] = STATE(2380), - [sym_unsafe_expression] = STATE(2380), - [sym_sql_expression] = STATE(2380), - [sym_c_string_literal] = STATE(2308), - [sym_raw_string_literal] = STATE(2308), - [sym_interpreted_string_literal] = STATE(2308), - [sym_mutability_modifiers] = STATE(939), - [sym_plain_type] = STATE(4297), - [sym__plain_type_without_special] = STATE(2302), - [sym_anon_struct_type] = STATE(2303), - [sym_multi_return_type] = STATE(2302), - [sym_result_type] = STATE(2302), - [sym_option_type] = STATE(2302), - [sym_qualified_type] = STATE(3541), - [sym_fixed_array_type] = STATE(2303), - [sym_array_type] = STATE(2303), - [sym_pointer_type] = STATE(2303), - [sym_wrong_pointer_type] = STATE(2303), - [sym_map_type] = STATE(2303), - [sym_channel_type] = STATE(2303), - [sym_shared_type] = STATE(2303), - [sym_thread_type] = STATE(2303), - [sym_atomic_type] = STATE(2303), - [sym_generic_type] = STATE(2303), - [sym_function_type] = STATE(2303), - [sym_identifier] = ACTIONS(1426), + [sym__expression] = STATE(2676), + [sym__expression_without_blocks] = STATE(2347), + [sym__expression_with_blocks] = STATE(2347), + [sym_inc_expression] = STATE(2379), + [sym_dec_expression] = STATE(2379), + [sym_or_block_expression] = STATE(2379), + [sym_option_propagation_expression] = STATE(2379), + [sym_result_propagation_expression] = STATE(2379), + [sym_anon_struct_value_expression] = STATE(2378), + [sym_go_expression] = STATE(2379), + [sym_spawn_expression] = STATE(2379), + [sym_parenthesized_expression] = STATE(2379), + [sym_call_expression] = STATE(2379), + [sym_type_initializer] = STATE(2378), + [sym_function_literal] = STATE(2379), + [sym_reference_expression] = STATE(2377), + [sym_type_reference_expression] = STATE(3460), + [sym_unary_expression] = STATE(2379), + [sym_receive_expression] = STATE(2379), + [sym_binary_expression] = STATE(2379), + [sym_as_type_cast_expression] = STATE(2379), + [sym__max_group] = STATE(2379), + [sym_literal] = STATE(2392), + [sym_map_init_expression] = STATE(2378), + [sym_array_creation] = STATE(2379), + [sym_fixed_array_creation] = STATE(2379), + [sym_selector_expression] = STATE(2379), + [sym_index_expression] = STATE(2379), + [sym_slice_expression] = STATE(2379), + [sym_if_expression] = STATE(2378), + [sym_compile_time_if_expression] = STATE(2378), + [sym_is_expression] = STATE(2379), + [sym_in_expression] = STATE(2379), + [sym_enum_fetch] = STATE(2379), + [sym_match_expression] = STATE(2378), + [sym_select_expression] = STATE(2378), + [sym_lock_expression] = STATE(2378), + [sym_unsafe_expression] = STATE(2378), + [sym_sql_expression] = STATE(2378), + [sym_c_string_literal] = STATE(2401), + [sym_raw_string_literal] = STATE(2401), + [sym_interpreted_string_literal] = STATE(2401), + [sym_mutability_modifiers] = STATE(906), + [sym_mutable_expression] = STATE(4400), + [sym_plain_type] = STATE(4160), + [sym__plain_type_without_special] = STATE(2360), + [sym_anon_struct_type] = STATE(2362), + [sym_multi_return_type] = STATE(2360), + [sym_result_type] = STATE(2360), + [sym_option_type] = STATE(2360), + [sym_qualified_type] = STATE(3460), + [sym_fixed_array_type] = STATE(2362), + [sym_array_type] = STATE(2362), + [sym_pointer_type] = STATE(2362), + [sym_wrong_pointer_type] = STATE(2362), + [sym_map_type] = STATE(2362), + [sym_channel_type] = STATE(2362), + [sym_shared_type] = STATE(2362), + [sym_thread_type] = STATE(2362), + [sym_atomic_type] = STATE(2362), + [sym_generic_type] = STATE(2362), + [sym_function_type] = STATE(2362), + [sym_identifier] = ACTIONS(1815), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1428), - [anon_sym_LBRACE] = ACTIONS(1430), - [anon_sym_LPAREN] = ACTIONS(1432), - [anon_sym_fn] = ACTIONS(1434), - [anon_sym_PLUS] = ACTIONS(1436), - [anon_sym_DASH] = ACTIONS(1436), - [anon_sym_STAR] = ACTIONS(1438), - [anon_sym_RBRACK] = ACTIONS(3236), - [anon_sym_struct] = ACTIONS(1440), + [anon_sym_DOT] = ACTIONS(1430), + [anon_sym_LBRACE] = ACTIONS(1432), + [anon_sym_LPAREN] = ACTIONS(1434), + [anon_sym_fn] = ACTIONS(1436), + [anon_sym_PLUS] = ACTIONS(3090), + [anon_sym_DASH] = ACTIONS(3090), + [anon_sym_STAR] = ACTIONS(3092), + [anon_sym_struct] = ACTIONS(1442), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(1442), - [anon_sym_go] = ACTIONS(1444), - [anon_sym_spawn] = ACTIONS(1446), - [anon_sym_json_DOTdecode] = ACTIONS(1448), - [anon_sym_LBRACK2] = ACTIONS(1450), - [anon_sym_TILDE] = ACTIONS(1436), - [anon_sym_CARET] = ACTIONS(1436), - [anon_sym_AMP] = ACTIONS(1452), - [anon_sym_LT_DASH] = ACTIONS(1454), - [sym_none] = ACTIONS(1456), - [sym_true] = ACTIONS(1456), - [sym_false] = ACTIONS(1456), - [sym_nil] = ACTIONS(1456), - [anon_sym_if] = ACTIONS(1827), - [anon_sym_DOLLARif] = ACTIONS(1460), - [anon_sym_match] = ACTIONS(1462), - [anon_sym_select] = ACTIONS(1464), - [anon_sym_lock] = ACTIONS(1466), - [anon_sym_rlock] = ACTIONS(1466), - [anon_sym_unsafe] = ACTIONS(1833), - [anon_sym_sql] = ACTIONS(1470), - [sym_int_literal] = ACTIONS(3238), - [sym_float_literal] = ACTIONS(1472), - [sym_rune_literal] = ACTIONS(1472), - [sym_pseudo_compile_time_identifier] = ACTIONS(1474), + [anon_sym_BANG] = ACTIONS(3094), + [anon_sym_go] = ACTIONS(3096), + [anon_sym_spawn] = ACTIONS(3098), + [anon_sym_json_DOTdecode] = ACTIONS(1450), + [anon_sym_LBRACK2] = ACTIONS(1827), + [anon_sym_TILDE] = ACTIONS(3090), + [anon_sym_CARET] = ACTIONS(3090), + [anon_sym_AMP] = ACTIONS(3100), + [anon_sym_LT_DASH] = ACTIONS(3102), + [sym_none] = ACTIONS(1458), + [sym_true] = ACTIONS(1458), + [sym_false] = ACTIONS(1458), + [sym_nil] = ACTIONS(1458), + [anon_sym_if] = ACTIONS(1833), + [anon_sym_DOLLARif] = ACTIONS(1462), + [anon_sym_match] = ACTIONS(1464), + [anon_sym_select] = ACTIONS(3104), + [anon_sym_lock] = ACTIONS(3106), + [anon_sym_rlock] = ACTIONS(3106), + [anon_sym_unsafe] = ACTIONS(1839), + [anon_sym_sql] = ACTIONS(1472), + [sym_int_literal] = ACTIONS(1458), + [sym_float_literal] = ACTIONS(1474), + [sym_rune_literal] = ACTIONS(1474), + [sym_pseudo_compile_time_identifier] = ACTIONS(1476), [anon_sym_shared] = ACTIONS(83), [anon_sym_map_LBRACK] = ACTIONS(85), [anon_sym_chan] = ACTIONS(87), [anon_sym_thread] = ACTIONS(89), [anon_sym_atomic] = ACTIONS(91), - [sym___double_quote] = ACTIONS(1478), - [sym___single_quote] = ACTIONS(1480), - [sym___c_double_quote] = ACTIONS(1482), - [sym___c_single_quote] = ACTIONS(1484), - [sym___r_double_quote] = ACTIONS(1486), - [sym___r_single_quote] = ACTIONS(1488), + [sym___double_quote] = ACTIONS(1480), + [sym___single_quote] = ACTIONS(1482), + [sym___c_double_quote] = ACTIONS(1484), + [sym___c_single_quote] = ACTIONS(1486), + [sym___r_double_quote] = ACTIONS(1488), + [sym___r_single_quote] = ACTIONS(1490), }, [533] = { [sym_line_comment] = STATE(533), [sym_block_comment] = STATE(533), - [sym__expression] = STATE(2831), - [sym__expression_without_blocks] = STATE(2300), - [sym__expression_with_blocks] = STATE(2300), - [sym_inc_expression] = STATE(2307), - [sym_dec_expression] = STATE(2307), - [sym_or_block_expression] = STATE(2307), - [sym_option_propagation_expression] = STATE(2307), - [sym_result_propagation_expression] = STATE(2307), - [sym_anon_struct_value_expression] = STATE(2380), - [sym_go_expression] = STATE(2307), - [sym_spawn_expression] = STATE(2307), - [sym_parenthesized_expression] = STATE(2307), - [sym_call_expression] = STATE(2307), - [sym_type_initializer] = STATE(2380), - [sym_function_literal] = STATE(2307), - [sym_reference_expression] = STATE(2902), - [sym_type_reference_expression] = STATE(3541), - [sym_unary_expression] = STATE(2307), - [sym_receive_expression] = STATE(2307), - [sym_binary_expression] = STATE(2307), - [sym_as_type_cast_expression] = STATE(2307), - [sym__max_group] = STATE(2307), - [sym_literal] = STATE(2292), - [sym_map_init_expression] = STATE(2380), - [sym_array_creation] = STATE(2307), - [sym_fixed_array_creation] = STATE(2307), - [sym_selector_expression] = STATE(2898), - [sym_index_expression] = STATE(2307), - [sym_slice_expression] = STATE(2307), - [sym_if_expression] = STATE(2380), - [sym_compile_time_if_expression] = STATE(2380), - [sym_is_expression] = STATE(2307), - [sym_in_expression] = STATE(2307), - [sym_enum_fetch] = STATE(2307), - [sym_match_expression] = STATE(2380), - [sym_select_expression] = STATE(2380), - [sym_lock_expression] = STATE(2380), - [sym_unsafe_expression] = STATE(2380), - [sym_sql_expression] = STATE(2380), - [sym_c_string_literal] = STATE(2308), - [sym_raw_string_literal] = STATE(2308), - [sym_interpreted_string_literal] = STATE(2308), - [sym_mutability_modifiers] = STATE(939), - [sym_plain_type] = STATE(4297), - [sym__plain_type_without_special] = STATE(2302), - [sym_anon_struct_type] = STATE(2303), - [sym_multi_return_type] = STATE(2302), - [sym_result_type] = STATE(2302), - [sym_option_type] = STATE(2302), - [sym_qualified_type] = STATE(3541), - [sym_fixed_array_type] = STATE(2303), - [sym_array_type] = STATE(2303), - [sym_pointer_type] = STATE(2303), - [sym_wrong_pointer_type] = STATE(2303), - [sym_map_type] = STATE(2303), - [sym_channel_type] = STATE(2303), - [sym_shared_type] = STATE(2303), - [sym_thread_type] = STATE(2303), - [sym_atomic_type] = STATE(2303), - [sym_generic_type] = STATE(2303), - [sym_function_type] = STATE(2303), - [sym_identifier] = ACTIONS(1426), + [sym__expression] = STATE(2488), + [sym__expression_without_blocks] = STATE(2347), + [sym__expression_with_blocks] = STATE(2347), + [sym_inc_expression] = STATE(2379), + [sym_dec_expression] = STATE(2379), + [sym_or_block_expression] = STATE(2379), + [sym_option_propagation_expression] = STATE(2379), + [sym_result_propagation_expression] = STATE(2379), + [sym_anon_struct_value_expression] = STATE(2378), + [sym_go_expression] = STATE(2379), + [sym_spawn_expression] = STATE(2379), + [sym_parenthesized_expression] = STATE(2379), + [sym_call_expression] = STATE(2379), + [sym_type_initializer] = STATE(2378), + [sym_function_literal] = STATE(2379), + [sym_reference_expression] = STATE(2377), + [sym_type_reference_expression] = STATE(3460), + [sym_unary_expression] = STATE(2379), + [sym_receive_expression] = STATE(2379), + [sym_binary_expression] = STATE(2379), + [sym_as_type_cast_expression] = STATE(2379), + [sym__max_group] = STATE(2379), + [sym_literal] = STATE(2392), + [sym_map_init_expression] = STATE(2378), + [sym_array_creation] = STATE(2379), + [sym_fixed_array_creation] = STATE(2379), + [sym_selector_expression] = STATE(2379), + [sym_index_expression] = STATE(2379), + [sym_slice_expression] = STATE(2379), + [sym_if_expression] = STATE(2378), + [sym_compile_time_if_expression] = STATE(2378), + [sym_is_expression] = STATE(2379), + [sym_in_expression] = STATE(2379), + [sym_enum_fetch] = STATE(2379), + [sym_match_expression] = STATE(2378), + [sym_select_expression] = STATE(2378), + [sym_lock_expression] = STATE(2378), + [sym_unsafe_expression] = STATE(2378), + [sym_sql_expression] = STATE(2378), + [sym_c_string_literal] = STATE(2401), + [sym_raw_string_literal] = STATE(2401), + [sym_interpreted_string_literal] = STATE(2401), + [sym_mutability_modifiers] = STATE(893), + [sym_mutable_expression] = STATE(3269), + [sym_plain_type] = STATE(4160), + [sym__plain_type_without_special] = STATE(2360), + [sym_anon_struct_type] = STATE(2362), + [sym_multi_return_type] = STATE(2360), + [sym_result_type] = STATE(2360), + [sym_option_type] = STATE(2360), + [sym_qualified_type] = STATE(3460), + [sym_fixed_array_type] = STATE(2362), + [sym_array_type] = STATE(2362), + [sym_pointer_type] = STATE(2362), + [sym_wrong_pointer_type] = STATE(2362), + [sym_map_type] = STATE(2362), + [sym_channel_type] = STATE(2362), + [sym_shared_type] = STATE(2362), + [sym_thread_type] = STATE(2362), + [sym_atomic_type] = STATE(2362), + [sym_generic_type] = STATE(2362), + [sym_function_type] = STATE(2362), + [sym_identifier] = ACTIONS(2477), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1428), - [anon_sym_LBRACE] = ACTIONS(1430), - [anon_sym_LPAREN] = ACTIONS(1432), - [anon_sym_fn] = ACTIONS(1434), - [anon_sym_PLUS] = ACTIONS(1436), - [anon_sym_DASH] = ACTIONS(1436), - [anon_sym_STAR] = ACTIONS(1438), - [anon_sym_RBRACK] = ACTIONS(3240), - [anon_sym_struct] = ACTIONS(1440), + [anon_sym_DOT] = ACTIONS(1430), + [anon_sym_LBRACE] = ACTIONS(1432), + [anon_sym_LPAREN] = ACTIONS(1434), + [anon_sym_fn] = ACTIONS(1436), + [anon_sym_PLUS] = ACTIONS(2479), + [anon_sym_DASH] = ACTIONS(2479), + [anon_sym_STAR] = ACTIONS(2481), + [anon_sym_struct] = ACTIONS(1442), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(1442), - [anon_sym_go] = ACTIONS(1444), - [anon_sym_spawn] = ACTIONS(1446), - [anon_sym_json_DOTdecode] = ACTIONS(1448), - [anon_sym_LBRACK2] = ACTIONS(1450), - [anon_sym_TILDE] = ACTIONS(1436), - [anon_sym_CARET] = ACTIONS(1436), - [anon_sym_AMP] = ACTIONS(1452), - [anon_sym_LT_DASH] = ACTIONS(1454), - [sym_none] = ACTIONS(1456), - [sym_true] = ACTIONS(1456), - [sym_false] = ACTIONS(1456), - [sym_nil] = ACTIONS(1456), - [anon_sym_if] = ACTIONS(1827), - [anon_sym_DOLLARif] = ACTIONS(1460), - [anon_sym_match] = ACTIONS(1462), - [anon_sym_select] = ACTIONS(1464), - [anon_sym_lock] = ACTIONS(1466), - [anon_sym_rlock] = ACTIONS(1466), - [anon_sym_unsafe] = ACTIONS(1833), - [anon_sym_sql] = ACTIONS(1470), - [sym_int_literal] = ACTIONS(3242), - [sym_float_literal] = ACTIONS(1472), - [sym_rune_literal] = ACTIONS(1472), - [sym_pseudo_compile_time_identifier] = ACTIONS(1474), + [anon_sym_BANG] = ACTIONS(2483), + [anon_sym_go] = ACTIONS(2485), + [anon_sym_spawn] = ACTIONS(2487), + [anon_sym_json_DOTdecode] = ACTIONS(1450), + [anon_sym_LBRACK2] = ACTIONS(2489), + [anon_sym_TILDE] = ACTIONS(2479), + [anon_sym_CARET] = ACTIONS(2479), + [anon_sym_AMP] = ACTIONS(2491), + [anon_sym_LT_DASH] = ACTIONS(2493), + [sym_none] = ACTIONS(1458), + [sym_true] = ACTIONS(1458), + [sym_false] = ACTIONS(1458), + [sym_nil] = ACTIONS(1458), + [anon_sym_if] = ACTIONS(1833), + [anon_sym_DOLLARif] = ACTIONS(1462), + [anon_sym_match] = ACTIONS(1464), + [anon_sym_select] = ACTIONS(2495), + [anon_sym_lock] = ACTIONS(2497), + [anon_sym_rlock] = ACTIONS(2497), + [anon_sym_unsafe] = ACTIONS(1839), + [anon_sym_sql] = ACTIONS(1472), + [sym_int_literal] = ACTIONS(1458), + [sym_float_literal] = ACTIONS(1474), + [sym_rune_literal] = ACTIONS(1474), + [sym_pseudo_compile_time_identifier] = ACTIONS(1476), [anon_sym_shared] = ACTIONS(83), [anon_sym_map_LBRACK] = ACTIONS(85), [anon_sym_chan] = ACTIONS(87), [anon_sym_thread] = ACTIONS(89), [anon_sym_atomic] = ACTIONS(91), - [sym___double_quote] = ACTIONS(1478), - [sym___single_quote] = ACTIONS(1480), - [sym___c_double_quote] = ACTIONS(1482), - [sym___c_single_quote] = ACTIONS(1484), - [sym___r_double_quote] = ACTIONS(1486), - [sym___r_single_quote] = ACTIONS(1488), + [sym___double_quote] = ACTIONS(1480), + [sym___single_quote] = ACTIONS(1482), + [sym___c_double_quote] = ACTIONS(1484), + [sym___c_single_quote] = ACTIONS(1486), + [sym___r_double_quote] = ACTIONS(1488), + [sym___r_single_quote] = ACTIONS(1490), }, [534] = { [sym_line_comment] = STATE(534), [sym_block_comment] = STATE(534), - [sym__expression] = STATE(2704), - [sym__expression_without_blocks] = STATE(2300), - [sym__expression_with_blocks] = STATE(2300), - [sym_inc_expression] = STATE(2307), - [sym_dec_expression] = STATE(2307), - [sym_or_block_expression] = STATE(2307), - [sym_option_propagation_expression] = STATE(2307), - [sym_result_propagation_expression] = STATE(2307), - [sym_anon_struct_value_expression] = STATE(2380), - [sym_go_expression] = STATE(2307), - [sym_spawn_expression] = STATE(2307), - [sym_parenthesized_expression] = STATE(2307), - [sym_call_expression] = STATE(2307), - [sym_type_initializer] = STATE(2380), - [sym_function_literal] = STATE(2307), - [sym_reference_expression] = STATE(2311), - [sym_type_reference_expression] = STATE(3541), - [sym_unary_expression] = STATE(2307), - [sym_receive_expression] = STATE(2307), - [sym_binary_expression] = STATE(2307), - [sym_as_type_cast_expression] = STATE(2307), - [sym__max_group] = STATE(2307), - [sym_literal] = STATE(2292), - [sym_map_init_expression] = STATE(2380), - [sym_array_creation] = STATE(2307), - [sym_fixed_array_creation] = STATE(2307), - [sym_selector_expression] = STATE(2307), - [sym_index_expression] = STATE(2307), - [sym_slice_expression] = STATE(2307), - [sym_if_expression] = STATE(2380), - [sym_compile_time_if_expression] = STATE(2380), - [sym_is_expression] = STATE(2307), - [sym_in_expression] = STATE(2307), - [sym_enum_fetch] = STATE(2307), - [sym_match_expression] = STATE(2380), - [sym_select_expression] = STATE(2380), - [sym_lock_expression] = STATE(2380), - [sym_unsafe_expression] = STATE(2380), - [sym_sql_expression] = STATE(2380), - [sym_c_string_literal] = STATE(2308), - [sym_raw_string_literal] = STATE(2308), - [sym_interpreted_string_literal] = STATE(2308), - [sym_mutability_modifiers] = STATE(944), - [sym_mutable_expression] = STATE(4391), - [sym_plain_type] = STATE(4297), - [sym__plain_type_without_special] = STATE(2302), - [sym_anon_struct_type] = STATE(2303), - [sym_multi_return_type] = STATE(2302), - [sym_result_type] = STATE(2302), - [sym_option_type] = STATE(2302), - [sym_qualified_type] = STATE(3541), - [sym_fixed_array_type] = STATE(2303), - [sym_array_type] = STATE(2303), - [sym_pointer_type] = STATE(2303), - [sym_wrong_pointer_type] = STATE(2303), - [sym_map_type] = STATE(2303), - [sym_channel_type] = STATE(2303), - [sym_shared_type] = STATE(2303), - [sym_thread_type] = STATE(2303), - [sym_atomic_type] = STATE(2303), - [sym_generic_type] = STATE(2303), - [sym_function_type] = STATE(2303), - [sym_identifier] = ACTIONS(1807), + [sym__expression] = STATE(2826), + [sym__expression_without_blocks] = STATE(2825), + [sym__expression_with_blocks] = STATE(2347), + [sym_inc_expression] = STATE(2379), + [sym_dec_expression] = STATE(2379), + [sym_or_block_expression] = STATE(2379), + [sym_option_propagation_expression] = STATE(2379), + [sym_result_propagation_expression] = STATE(2379), + [sym_anon_struct_value_expression] = STATE(2378), + [sym_go_expression] = STATE(2379), + [sym_spawn_expression] = STATE(2379), + [sym_parenthesized_expression] = STATE(2379), + [sym_call_expression] = STATE(2379), + [sym_type_initializer] = STATE(2378), + [sym_function_literal] = STATE(2379), + [sym_reference_expression] = STATE(2377), + [sym_type_reference_expression] = STATE(3460), + [sym_unary_expression] = STATE(2379), + [sym_receive_expression] = STATE(2379), + [sym_binary_expression] = STATE(2379), + [sym_as_type_cast_expression] = STATE(2379), + [sym__max_group] = STATE(2379), + [sym_literal] = STATE(2392), + [sym_map_init_expression] = STATE(2378), + [sym_array_creation] = STATE(2379), + [sym_fixed_array_creation] = STATE(2379), + [sym_selector_expression] = STATE(2379), + [sym_index_expression] = STATE(2379), + [sym_slice_expression] = STATE(2379), + [sym_if_expression] = STATE(2378), + [sym_compile_time_if_expression] = STATE(2378), + [sym_is_expression] = STATE(2379), + [sym_in_expression] = STATE(2379), + [sym_enum_fetch] = STATE(2379), + [sym_match_expression] = STATE(2378), + [sym_select_expression] = STATE(2378), + [sym_lock_expression] = STATE(2378), + [sym_unsafe_expression] = STATE(2378), + [sym_sql_expression] = STATE(2378), + [sym_c_string_literal] = STATE(2401), + [sym_raw_string_literal] = STATE(2401), + [sym_interpreted_string_literal] = STATE(2401), + [sym_mutability_modifiers] = STATE(553), + [sym_expression_without_blocks_list] = STATE(4489), + [sym_plain_type] = STATE(4160), + [sym__plain_type_without_special] = STATE(2360), + [sym_anon_struct_type] = STATE(2362), + [sym_multi_return_type] = STATE(2360), + [sym_result_type] = STATE(2360), + [sym_option_type] = STATE(2360), + [sym_qualified_type] = STATE(3460), + [sym_fixed_array_type] = STATE(2362), + [sym_array_type] = STATE(2362), + [sym_pointer_type] = STATE(2362), + [sym_wrong_pointer_type] = STATE(2362), + [sym_map_type] = STATE(2362), + [sym_channel_type] = STATE(2362), + [sym_shared_type] = STATE(2362), + [sym_thread_type] = STATE(2362), + [sym_atomic_type] = STATE(2362), + [sym_generic_type] = STATE(2362), + [sym_function_type] = STATE(2362), + [sym_identifier] = ACTIONS(1815), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1428), - [anon_sym_LBRACE] = ACTIONS(1430), - [anon_sym_LPAREN] = ACTIONS(1432), - [anon_sym_fn] = ACTIONS(1434), - [anon_sym_PLUS] = ACTIONS(3064), - [anon_sym_DASH] = ACTIONS(3064), - [anon_sym_STAR] = ACTIONS(3066), - [anon_sym_struct] = ACTIONS(1440), + [anon_sym_DOT] = ACTIONS(1430), + [anon_sym_LBRACE] = ACTIONS(1432), + [anon_sym_LPAREN] = ACTIONS(1434), + [anon_sym_fn] = ACTIONS(1436), + [anon_sym_PLUS] = ACTIONS(1817), + [anon_sym_DASH] = ACTIONS(1817), + [anon_sym_STAR] = ACTIONS(1819), + [anon_sym_struct] = ACTIONS(1442), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(3068), - [anon_sym_go] = ACTIONS(3070), - [anon_sym_spawn] = ACTIONS(3072), - [anon_sym_json_DOTdecode] = ACTIONS(1448), - [anon_sym_LBRACK2] = ACTIONS(1821), - [anon_sym_TILDE] = ACTIONS(3064), - [anon_sym_CARET] = ACTIONS(3064), - [anon_sym_AMP] = ACTIONS(3074), - [anon_sym_LT_DASH] = ACTIONS(3076), - [sym_none] = ACTIONS(1456), - [sym_true] = ACTIONS(1456), - [sym_false] = ACTIONS(1456), - [sym_nil] = ACTIONS(1456), - [anon_sym_if] = ACTIONS(1827), - [anon_sym_DOLLARif] = ACTIONS(1460), - [anon_sym_match] = ACTIONS(1462), - [anon_sym_select] = ACTIONS(3078), - [anon_sym_lock] = ACTIONS(3080), - [anon_sym_rlock] = ACTIONS(3080), - [anon_sym_unsafe] = ACTIONS(1833), - [anon_sym_sql] = ACTIONS(1470), - [sym_int_literal] = ACTIONS(1456), - [sym_float_literal] = ACTIONS(1472), - [sym_rune_literal] = ACTIONS(1472), - [sym_pseudo_compile_time_identifier] = ACTIONS(1474), + [anon_sym_BANG] = ACTIONS(1821), + [anon_sym_go] = ACTIONS(1823), + [anon_sym_spawn] = ACTIONS(1825), + [anon_sym_json_DOTdecode] = ACTIONS(1450), + [anon_sym_LBRACK2] = ACTIONS(1827), + [anon_sym_TILDE] = ACTIONS(1817), + [anon_sym_CARET] = ACTIONS(1817), + [anon_sym_AMP] = ACTIONS(1829), + [anon_sym_LT_DASH] = ACTIONS(1831), + [sym_none] = ACTIONS(1458), + [sym_true] = ACTIONS(1458), + [sym_false] = ACTIONS(1458), + [sym_nil] = ACTIONS(1458), + [anon_sym_if] = ACTIONS(1833), + [anon_sym_DOLLARif] = ACTIONS(1462), + [anon_sym_match] = ACTIONS(1464), + [anon_sym_select] = ACTIONS(1466), + [anon_sym_lock] = ACTIONS(1468), + [anon_sym_rlock] = ACTIONS(1468), + [anon_sym_unsafe] = ACTIONS(1839), + [anon_sym_sql] = ACTIONS(1472), + [sym_int_literal] = ACTIONS(1458), + [sym_float_literal] = ACTIONS(1474), + [sym_rune_literal] = ACTIONS(1474), + [sym_pseudo_compile_time_identifier] = ACTIONS(1476), [anon_sym_shared] = ACTIONS(83), [anon_sym_map_LBRACK] = ACTIONS(85), [anon_sym_chan] = ACTIONS(87), [anon_sym_thread] = ACTIONS(89), [anon_sym_atomic] = ACTIONS(91), - [sym___double_quote] = ACTIONS(1478), - [sym___single_quote] = ACTIONS(1480), - [sym___c_double_quote] = ACTIONS(1482), - [sym___c_single_quote] = ACTIONS(1484), - [sym___r_double_quote] = ACTIONS(1486), - [sym___r_single_quote] = ACTIONS(1488), + [sym___double_quote] = ACTIONS(1480), + [sym___single_quote] = ACTIONS(1482), + [sym___c_double_quote] = ACTIONS(1484), + [sym___c_single_quote] = ACTIONS(1486), + [sym___r_double_quote] = ACTIONS(1488), + [sym___r_single_quote] = ACTIONS(1490), }, [535] = { [sym_line_comment] = STATE(535), [sym_block_comment] = STATE(535), - [sym__expression] = STATE(2310), - [sym__expression_without_blocks] = STATE(2489), - [sym__expression_with_blocks] = STATE(2489), - [sym_inc_expression] = STATE(2479), - [sym_dec_expression] = STATE(2479), - [sym_or_block_expression] = STATE(2479), - [sym_option_propagation_expression] = STATE(2479), - [sym_result_propagation_expression] = STATE(2479), - [sym_anon_struct_value_expression] = STATE(2491), - [sym_go_expression] = STATE(2479), - [sym_spawn_expression] = STATE(2479), - [sym_parenthesized_expression] = STATE(2479), - [sym_call_expression] = STATE(2479), - [sym_type_initializer] = STATE(2491), - [sym_function_literal] = STATE(2479), - [sym_reference_expression] = STATE(2542), - [sym_type_reference_expression] = STATE(3541), - [sym_unary_expression] = STATE(2479), - [sym_receive_expression] = STATE(2479), - [sym_binary_expression] = STATE(2479), - [sym_as_type_cast_expression] = STATE(2479), - [sym__max_group] = STATE(2479), - [sym_literal] = STATE(2454), - [sym_map_init_expression] = STATE(2491), - [sym_array_creation] = STATE(2479), - [sym_fixed_array_creation] = STATE(2479), - [sym_selector_expression] = STATE(2479), - [sym_index_expression] = STATE(2479), - [sym_slice_expression] = STATE(2479), - [sym_if_expression] = STATE(2491), - [sym_compile_time_if_expression] = STATE(2491), - [sym_is_expression] = STATE(2479), - [sym_in_expression] = STATE(2479), - [sym_enum_fetch] = STATE(2479), - [sym_match_expression] = STATE(2491), - [sym_select_expression] = STATE(2491), - [sym_lock_expression] = STATE(2491), - [sym_unsafe_expression] = STATE(2491), - [sym_sql_expression] = STATE(2491), - [sym_c_string_literal] = STATE(2469), - [sym_raw_string_literal] = STATE(2469), - [sym_interpreted_string_literal] = STATE(2469), - [sym_mutability_modifiers] = STATE(831), - [sym_mutable_expression] = STATE(3546), - [sym_plain_type] = STATE(4255), - [sym__plain_type_without_special] = STATE(2302), - [sym_anon_struct_type] = STATE(2303), - [sym_multi_return_type] = STATE(2302), - [sym_result_type] = STATE(2302), - [sym_option_type] = STATE(2302), - [sym_qualified_type] = STATE(3541), - [sym_fixed_array_type] = STATE(2303), - [sym_array_type] = STATE(2303), - [sym_pointer_type] = STATE(2303), - [sym_wrong_pointer_type] = STATE(2303), - [sym_map_type] = STATE(2303), - [sym_channel_type] = STATE(2303), - [sym_shared_type] = STATE(2303), - [sym_thread_type] = STATE(2303), - [sym_atomic_type] = STATE(2303), - [sym_generic_type] = STATE(2303), - [sym_function_type] = STATE(2303), - [sym_identifier] = ACTIONS(1695), + [sym__expression] = STATE(2769), + [sym__expression_without_blocks] = STATE(2347), + [sym__expression_with_blocks] = STATE(2347), + [sym_inc_expression] = STATE(2379), + [sym_dec_expression] = STATE(2379), + [sym_or_block_expression] = STATE(2379), + [sym_option_propagation_expression] = STATE(2379), + [sym_result_propagation_expression] = STATE(2379), + [sym_anon_struct_value_expression] = STATE(2378), + [sym_go_expression] = STATE(2379), + [sym_spawn_expression] = STATE(2379), + [sym_parenthesized_expression] = STATE(2379), + [sym_call_expression] = STATE(2379), + [sym_type_initializer] = STATE(2378), + [sym_function_literal] = STATE(2379), + [sym_reference_expression] = STATE(2377), + [sym_type_reference_expression] = STATE(3460), + [sym_unary_expression] = STATE(2379), + [sym_receive_expression] = STATE(2379), + [sym_binary_expression] = STATE(2379), + [sym_as_type_cast_expression] = STATE(2379), + [sym__max_group] = STATE(2379), + [sym_literal] = STATE(2392), + [sym_map_init_expression] = STATE(2378), + [sym_array_creation] = STATE(2379), + [sym_fixed_array_creation] = STATE(2379), + [sym_selector_expression] = STATE(2379), + [sym_index_expression] = STATE(2379), + [sym_slice_expression] = STATE(2379), + [sym_if_expression] = STATE(2378), + [sym_compile_time_if_expression] = STATE(2378), + [sym_is_expression] = STATE(2379), + [sym_in_expression] = STATE(2379), + [sym_enum_fetch] = STATE(2379), + [sym_match_expression] = STATE(2378), + [sym_select_expression] = STATE(2378), + [sym_lock_expression] = STATE(2378), + [sym_unsafe_expression] = STATE(2378), + [sym_sql_expression] = STATE(2378), + [sym_c_string_literal] = STATE(2401), + [sym_raw_string_literal] = STATE(2401), + [sym_interpreted_string_literal] = STATE(2401), + [sym_mutability_modifiers] = STATE(906), + [sym_mutable_expression] = STATE(4436), + [sym_plain_type] = STATE(4160), + [sym__plain_type_without_special] = STATE(2360), + [sym_anon_struct_type] = STATE(2362), + [sym_multi_return_type] = STATE(2360), + [sym_result_type] = STATE(2360), + [sym_option_type] = STATE(2360), + [sym_qualified_type] = STATE(3460), + [sym_fixed_array_type] = STATE(2362), + [sym_array_type] = STATE(2362), + [sym_pointer_type] = STATE(2362), + [sym_wrong_pointer_type] = STATE(2362), + [sym_map_type] = STATE(2362), + [sym_channel_type] = STATE(2362), + [sym_shared_type] = STATE(2362), + [sym_thread_type] = STATE(2362), + [sym_atomic_type] = STATE(2362), + [sym_generic_type] = STATE(2362), + [sym_function_type] = STATE(2362), + [sym_identifier] = ACTIONS(1815), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1697), - [anon_sym_LBRACE] = ACTIONS(2697), - [anon_sym_LPAREN] = ACTIONS(2699), - [anon_sym_fn] = ACTIONS(1703), - [anon_sym_PLUS] = ACTIONS(2701), - [anon_sym_DASH] = ACTIONS(2701), - [anon_sym_STAR] = ACTIONS(2703), - [anon_sym_struct] = ACTIONS(1709), + [anon_sym_DOT] = ACTIONS(1430), + [anon_sym_LBRACE] = ACTIONS(1432), + [anon_sym_LPAREN] = ACTIONS(1434), + [anon_sym_fn] = ACTIONS(1436), + [anon_sym_PLUS] = ACTIONS(3090), + [anon_sym_DASH] = ACTIONS(3090), + [anon_sym_STAR] = ACTIONS(3092), + [anon_sym_struct] = ACTIONS(1442), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(2705), - [anon_sym_go] = ACTIONS(1713), - [anon_sym_spawn] = ACTIONS(1715), - [anon_sym_json_DOTdecode] = ACTIONS(2707), - [anon_sym_LBRACK2] = ACTIONS(2709), - [anon_sym_TILDE] = ACTIONS(2701), - [anon_sym_CARET] = ACTIONS(2701), - [anon_sym_AMP] = ACTIONS(2711), - [anon_sym_LT_DASH] = ACTIONS(2713), - [sym_none] = ACTIONS(1725), - [sym_true] = ACTIONS(1725), - [sym_false] = ACTIONS(1725), - [sym_nil] = ACTIONS(1725), - [anon_sym_if] = ACTIONS(1727), - [anon_sym_DOLLARif] = ACTIONS(1729), - [anon_sym_match] = ACTIONS(1731), - [anon_sym_select] = ACTIONS(1733), - [anon_sym_lock] = ACTIONS(1735), - [anon_sym_rlock] = ACTIONS(1735), - [anon_sym_unsafe] = ACTIONS(1737), - [anon_sym_sql] = ACTIONS(1739), - [sym_int_literal] = ACTIONS(1725), - [sym_float_literal] = ACTIONS(2715), - [sym_rune_literal] = ACTIONS(2715), - [sym_pseudo_compile_time_identifier] = ACTIONS(1741), + [anon_sym_BANG] = ACTIONS(3094), + [anon_sym_go] = ACTIONS(3096), + [anon_sym_spawn] = ACTIONS(3098), + [anon_sym_json_DOTdecode] = ACTIONS(1450), + [anon_sym_LBRACK2] = ACTIONS(1827), + [anon_sym_TILDE] = ACTIONS(3090), + [anon_sym_CARET] = ACTIONS(3090), + [anon_sym_AMP] = ACTIONS(3100), + [anon_sym_LT_DASH] = ACTIONS(3102), + [sym_none] = ACTIONS(1458), + [sym_true] = ACTIONS(1458), + [sym_false] = ACTIONS(1458), + [sym_nil] = ACTIONS(1458), + [anon_sym_if] = ACTIONS(1833), + [anon_sym_DOLLARif] = ACTIONS(1462), + [anon_sym_match] = ACTIONS(1464), + [anon_sym_select] = ACTIONS(3104), + [anon_sym_lock] = ACTIONS(3106), + [anon_sym_rlock] = ACTIONS(3106), + [anon_sym_unsafe] = ACTIONS(1839), + [anon_sym_sql] = ACTIONS(1472), + [sym_int_literal] = ACTIONS(1458), + [sym_float_literal] = ACTIONS(1474), + [sym_rune_literal] = ACTIONS(1474), + [sym_pseudo_compile_time_identifier] = ACTIONS(1476), [anon_sym_shared] = ACTIONS(83), [anon_sym_map_LBRACK] = ACTIONS(85), [anon_sym_chan] = ACTIONS(87), [anon_sym_thread] = ACTIONS(89), [anon_sym_atomic] = ACTIONS(91), - [sym___double_quote] = ACTIONS(2717), - [sym___single_quote] = ACTIONS(2719), - [sym___c_double_quote] = ACTIONS(2721), - [sym___c_single_quote] = ACTIONS(2723), - [sym___r_double_quote] = ACTIONS(2725), - [sym___r_single_quote] = ACTIONS(2727), + [sym___double_quote] = ACTIONS(1480), + [sym___single_quote] = ACTIONS(1482), + [sym___c_double_quote] = ACTIONS(1484), + [sym___c_single_quote] = ACTIONS(1486), + [sym___r_double_quote] = ACTIONS(1488), + [sym___r_single_quote] = ACTIONS(1490), }, [536] = { [sym_line_comment] = STATE(536), [sym_block_comment] = STATE(536), - [sym__expression] = STATE(2627), - [sym__expression_without_blocks] = STATE(2300), - [sym__expression_with_blocks] = STATE(2300), - [sym_inc_expression] = STATE(2307), - [sym_dec_expression] = STATE(2307), - [sym_or_block_expression] = STATE(2307), - [sym_option_propagation_expression] = STATE(2307), - [sym_result_propagation_expression] = STATE(2307), - [sym_anon_struct_value_expression] = STATE(2380), - [sym_go_expression] = STATE(2307), - [sym_spawn_expression] = STATE(2307), - [sym_parenthesized_expression] = STATE(2307), - [sym_call_expression] = STATE(2307), - [sym_type_initializer] = STATE(2380), - [sym_function_literal] = STATE(2307), - [sym_reference_expression] = STATE(2311), - [sym_type_reference_expression] = STATE(3541), - [sym_unary_expression] = STATE(2307), - [sym_receive_expression] = STATE(2307), - [sym_binary_expression] = STATE(2307), - [sym_as_type_cast_expression] = STATE(2307), - [sym__max_group] = STATE(2307), - [sym_literal] = STATE(2292), - [sym_map_init_expression] = STATE(2380), - [sym_array_creation] = STATE(2307), - [sym_fixed_array_creation] = STATE(2307), - [sym_selector_expression] = STATE(2307), - [sym_index_expression] = STATE(2307), - [sym_slice_expression] = STATE(2307), - [sym_if_expression] = STATE(2380), - [sym_compile_time_if_expression] = STATE(2380), - [sym_is_expression] = STATE(2307), - [sym_in_expression] = STATE(2307), - [sym_enum_fetch] = STATE(2307), - [sym_match_expression] = STATE(2380), - [sym_select_expression] = STATE(2380), - [sym_lock_expression] = STATE(2380), - [sym_unsafe_expression] = STATE(2380), - [sym_sql_expression] = STATE(2380), - [sym_c_string_literal] = STATE(2308), - [sym_raw_string_literal] = STATE(2308), - [sym_interpreted_string_literal] = STATE(2308), - [sym_mutability_modifiers] = STATE(939), - [sym_plain_type] = STATE(4297), - [sym__plain_type_without_special] = STATE(2302), - [sym_anon_struct_type] = STATE(2303), - [sym_multi_return_type] = STATE(2302), - [sym_result_type] = STATE(2302), - [sym_option_type] = STATE(2302), - [sym_qualified_type] = STATE(3541), - [sym_fixed_array_type] = STATE(2303), - [sym_array_type] = STATE(2303), - [sym_pointer_type] = STATE(2303), - [sym_wrong_pointer_type] = STATE(2303), - [sym_map_type] = STATE(2303), - [sym_channel_type] = STATE(2303), - [sym_shared_type] = STATE(2303), - [sym_thread_type] = STATE(2303), - [sym_atomic_type] = STATE(2303), - [sym_generic_type] = STATE(2303), - [sym_function_type] = STATE(2303), - [sym_identifier] = ACTIONS(1426), + [sym__expression] = STATE(1906), + [sym__expression_without_blocks] = STATE(1953), + [sym__expression_with_blocks] = STATE(1953), + [sym_inc_expression] = STATE(1955), + [sym_dec_expression] = STATE(1955), + [sym_or_block_expression] = STATE(1955), + [sym_option_propagation_expression] = STATE(1955), + [sym_result_propagation_expression] = STATE(1955), + [sym_anon_struct_value_expression] = STATE(1958), + [sym_go_expression] = STATE(1955), + [sym_spawn_expression] = STATE(1955), + [sym_parenthesized_expression] = STATE(1955), + [sym_call_expression] = STATE(1955), + [sym_type_initializer] = STATE(1958), + [sym_function_literal] = STATE(1955), + [sym_reference_expression] = STATE(1956), + [sym_type_reference_expression] = STATE(3460), + [sym_unary_expression] = STATE(1955), + [sym_receive_expression] = STATE(1955), + [sym_binary_expression] = STATE(1955), + [sym_as_type_cast_expression] = STATE(1955), + [sym__max_group] = STATE(1955), + [sym_literal] = STATE(1943), + [sym_map_init_expression] = STATE(1958), + [sym_array_creation] = STATE(1955), + [sym_fixed_array_creation] = STATE(1955), + [sym_selector_expression] = STATE(1955), + [sym_index_expression] = STATE(1955), + [sym_slice_expression] = STATE(1955), + [sym_if_expression] = STATE(1958), + [sym_compile_time_if_expression] = STATE(1958), + [sym_is_expression] = STATE(1955), + [sym_in_expression] = STATE(1955), + [sym_enum_fetch] = STATE(1955), + [sym_match_expression] = STATE(1958), + [sym_select_expression] = STATE(1958), + [sym_lock_expression] = STATE(1958), + [sym_unsafe_expression] = STATE(1958), + [sym_sql_expression] = STATE(1958), + [sym_c_string_literal] = STATE(1942), + [sym_raw_string_literal] = STATE(1942), + [sym_interpreted_string_literal] = STATE(1942), + [sym_mutability_modifiers] = STATE(652), + [sym_mutable_expression] = STATE(3269), + [sym_plain_type] = STATE(4266), + [sym__plain_type_without_special] = STATE(2360), + [sym_anon_struct_type] = STATE(2362), + [sym_multi_return_type] = STATE(2360), + [sym_result_type] = STATE(2360), + [sym_option_type] = STATE(2360), + [sym_qualified_type] = STATE(3460), + [sym_fixed_array_type] = STATE(2362), + [sym_array_type] = STATE(2362), + [sym_pointer_type] = STATE(2362), + [sym_wrong_pointer_type] = STATE(2362), + [sym_map_type] = STATE(2362), + [sym_channel_type] = STATE(2362), + [sym_shared_type] = STATE(2362), + [sym_thread_type] = STATE(2362), + [sym_atomic_type] = STATE(2362), + [sym_generic_type] = STATE(2362), + [sym_function_type] = STATE(2362), + [sym_identifier] = ACTIONS(3158), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1428), - [anon_sym_LBRACE] = ACTIONS(1430), - [anon_sym_LPAREN] = ACTIONS(1432), - [anon_sym_fn] = ACTIONS(1434), - [anon_sym_PLUS] = ACTIONS(1436), - [anon_sym_DASH] = ACTIONS(1436), - [anon_sym_STAR] = ACTIONS(1438), - [anon_sym_RBRACK] = ACTIONS(3244), - [anon_sym_struct] = ACTIONS(1440), + [anon_sym_DOT] = ACTIONS(705), + [anon_sym_LBRACE] = ACTIONS(3118), + [anon_sym_LPAREN] = ACTIONS(709), + [anon_sym_fn] = ACTIONS(711), + [anon_sym_PLUS] = ACTIONS(3160), + [anon_sym_DASH] = ACTIONS(3160), + [anon_sym_STAR] = ACTIONS(3162), + [anon_sym_struct] = ACTIONS(717), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(1442), - [anon_sym_go] = ACTIONS(1444), - [anon_sym_spawn] = ACTIONS(1446), - [anon_sym_json_DOTdecode] = ACTIONS(1448), - [anon_sym_LBRACK2] = ACTIONS(1450), - [anon_sym_TILDE] = ACTIONS(1436), - [anon_sym_CARET] = ACTIONS(1436), - [anon_sym_AMP] = ACTIONS(1452), - [anon_sym_LT_DASH] = ACTIONS(1454), - [sym_none] = ACTIONS(1456), - [sym_true] = ACTIONS(1456), - [sym_false] = ACTIONS(1456), - [sym_nil] = ACTIONS(1456), - [anon_sym_if] = ACTIONS(1827), - [anon_sym_DOLLARif] = ACTIONS(1460), - [anon_sym_match] = ACTIONS(1462), - [anon_sym_select] = ACTIONS(1464), - [anon_sym_lock] = ACTIONS(1466), - [anon_sym_rlock] = ACTIONS(1466), - [anon_sym_unsafe] = ACTIONS(1833), - [anon_sym_sql] = ACTIONS(1470), - [sym_int_literal] = ACTIONS(1456), - [sym_float_literal] = ACTIONS(1472), - [sym_rune_literal] = ACTIONS(1472), - [sym_pseudo_compile_time_identifier] = ACTIONS(1474), + [anon_sym_BANG] = ACTIONS(3164), + [anon_sym_go] = ACTIONS(3166), + [anon_sym_spawn] = ACTIONS(3168), + [anon_sym_json_DOTdecode] = ACTIONS(727), + [anon_sym_LBRACK2] = ACTIONS(3170), + [anon_sym_TILDE] = ACTIONS(3160), + [anon_sym_CARET] = ACTIONS(3160), + [anon_sym_AMP] = ACTIONS(3172), + [anon_sym_LT_DASH] = ACTIONS(3174), + [sym_none] = ACTIONS(735), + [sym_true] = ACTIONS(735), + [sym_false] = ACTIONS(735), + [sym_nil] = ACTIONS(735), + [anon_sym_if] = ACTIONS(737), + [anon_sym_DOLLARif] = ACTIONS(739), + [anon_sym_match] = ACTIONS(741), + [anon_sym_select] = ACTIONS(3176), + [anon_sym_lock] = ACTIONS(3178), + [anon_sym_rlock] = ACTIONS(3178), + [anon_sym_unsafe] = ACTIONS(747), + [anon_sym_sql] = ACTIONS(749), + [sym_int_literal] = ACTIONS(735), + [sym_float_literal] = ACTIONS(751), + [sym_rune_literal] = ACTIONS(751), + [sym_pseudo_compile_time_identifier] = ACTIONS(753), [anon_sym_shared] = ACTIONS(83), [anon_sym_map_LBRACK] = ACTIONS(85), [anon_sym_chan] = ACTIONS(87), [anon_sym_thread] = ACTIONS(89), [anon_sym_atomic] = ACTIONS(91), - [sym___double_quote] = ACTIONS(1478), - [sym___single_quote] = ACTIONS(1480), - [sym___c_double_quote] = ACTIONS(1482), - [sym___c_single_quote] = ACTIONS(1484), - [sym___r_double_quote] = ACTIONS(1486), - [sym___r_single_quote] = ACTIONS(1488), + [sym___double_quote] = ACTIONS(755), + [sym___single_quote] = ACTIONS(757), + [sym___c_double_quote] = ACTIONS(759), + [sym___c_single_quote] = ACTIONS(761), + [sym___r_double_quote] = ACTIONS(763), + [sym___r_single_quote] = ACTIONS(765), }, [537] = { [sym_line_comment] = STATE(537), [sym_block_comment] = STATE(537), - [sym__expression] = STATE(1765), - [sym__expression_without_blocks] = STATE(2044), - [sym__expression_with_blocks] = STATE(2044), - [sym_inc_expression] = STATE(2045), - [sym_dec_expression] = STATE(2045), - [sym_or_block_expression] = STATE(2045), - [sym_option_propagation_expression] = STATE(2045), - [sym_result_propagation_expression] = STATE(2045), - [sym_anon_struct_value_expression] = STATE(2046), - [sym_go_expression] = STATE(2045), - [sym_spawn_expression] = STATE(2045), - [sym_parenthesized_expression] = STATE(2045), - [sym_call_expression] = STATE(2045), - [sym_type_initializer] = STATE(2046), - [sym_function_literal] = STATE(2045), - [sym_reference_expression] = STATE(1912), - [sym_type_reference_expression] = STATE(3541), - [sym_unary_expression] = STATE(2045), - [sym_receive_expression] = STATE(2045), - [sym_binary_expression] = STATE(2045), - [sym_as_type_cast_expression] = STATE(2045), - [sym__max_group] = STATE(2045), - [sym_literal] = STATE(2043), - [sym_map_init_expression] = STATE(2046), - [sym_array_creation] = STATE(2045), - [sym_fixed_array_creation] = STATE(2045), - [sym_selector_expression] = STATE(2045), - [sym_index_expression] = STATE(2045), - [sym_slice_expression] = STATE(2045), - [sym_if_expression] = STATE(2046), - [sym_compile_time_if_expression] = STATE(2046), - [sym_is_expression] = STATE(2045), - [sym_in_expression] = STATE(2045), - [sym_enum_fetch] = STATE(2045), - [sym_match_expression] = STATE(2046), - [sym_select_expression] = STATE(2046), - [sym_lock_expression] = STATE(2046), - [sym_unsafe_expression] = STATE(2046), - [sym_sql_expression] = STATE(2046), - [sym_c_string_literal] = STATE(2041), - [sym_raw_string_literal] = STATE(2041), - [sym_interpreted_string_literal] = STATE(2041), - [sym_mutability_modifiers] = STATE(722), - [sym_mutable_expression] = STATE(3261), - [sym_plain_type] = STATE(4052), - [sym__plain_type_without_special] = STATE(2302), - [sym_anon_struct_type] = STATE(2303), - [sym_multi_return_type] = STATE(2302), - [sym_result_type] = STATE(2302), - [sym_option_type] = STATE(2302), - [sym_qualified_type] = STATE(3541), - [sym_fixed_array_type] = STATE(2303), - [sym_array_type] = STATE(2303), - [sym_pointer_type] = STATE(2303), - [sym_wrong_pointer_type] = STATE(2303), - [sym_map_type] = STATE(2303), - [sym_channel_type] = STATE(2303), - [sym_shared_type] = STATE(2303), - [sym_thread_type] = STATE(2303), - [sym_atomic_type] = STATE(2303), - [sym_generic_type] = STATE(2303), - [sym_function_type] = STATE(2303), - [sym_identifier] = ACTIONS(1641), + [sym__expression] = STATE(2778), + [sym__expression_without_blocks] = STATE(2347), + [sym__expression_with_blocks] = STATE(2347), + [sym_inc_expression] = STATE(2379), + [sym_dec_expression] = STATE(2379), + [sym_or_block_expression] = STATE(2379), + [sym_option_propagation_expression] = STATE(2379), + [sym_result_propagation_expression] = STATE(2379), + [sym_anon_struct_value_expression] = STATE(2378), + [sym_go_expression] = STATE(2379), + [sym_spawn_expression] = STATE(2379), + [sym_parenthesized_expression] = STATE(2379), + [sym_call_expression] = STATE(2379), + [sym_type_initializer] = STATE(2378), + [sym_function_literal] = STATE(2379), + [sym_reference_expression] = STATE(2377), + [sym_type_reference_expression] = STATE(3460), + [sym_unary_expression] = STATE(2379), + [sym_receive_expression] = STATE(2379), + [sym_binary_expression] = STATE(2379), + [sym_as_type_cast_expression] = STATE(2379), + [sym__max_group] = STATE(2379), + [sym_literal] = STATE(2392), + [sym_map_init_expression] = STATE(2378), + [sym_array_creation] = STATE(2379), + [sym_fixed_array_creation] = STATE(2379), + [sym_selector_expression] = STATE(2379), + [sym_index_expression] = STATE(2379), + [sym_slice_expression] = STATE(2379), + [sym_if_expression] = STATE(2378), + [sym_compile_time_if_expression] = STATE(2378), + [sym_is_expression] = STATE(2379), + [sym_in_expression] = STATE(2379), + [sym_enum_fetch] = STATE(2379), + [sym_match_expression] = STATE(2378), + [sym_select_expression] = STATE(2378), + [sym_lock_expression] = STATE(2378), + [sym_unsafe_expression] = STATE(2378), + [sym_sql_expression] = STATE(2378), + [sym_c_string_literal] = STATE(2401), + [sym_raw_string_literal] = STATE(2401), + [sym_interpreted_string_literal] = STATE(2401), + [sym_mutability_modifiers] = STATE(906), + [sym_mutable_expression] = STATE(4473), + [sym_plain_type] = STATE(4160), + [sym__plain_type_without_special] = STATE(2360), + [sym_anon_struct_type] = STATE(2362), + [sym_multi_return_type] = STATE(2360), + [sym_result_type] = STATE(2360), + [sym_option_type] = STATE(2360), + [sym_qualified_type] = STATE(3460), + [sym_fixed_array_type] = STATE(2362), + [sym_array_type] = STATE(2362), + [sym_pointer_type] = STATE(2362), + [sym_wrong_pointer_type] = STATE(2362), + [sym_map_type] = STATE(2362), + [sym_channel_type] = STATE(2362), + [sym_shared_type] = STATE(2362), + [sym_thread_type] = STATE(2362), + [sym_atomic_type] = STATE(2362), + [sym_generic_type] = STATE(2362), + [sym_function_type] = STATE(2362), + [sym_identifier] = ACTIONS(1815), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(811), - [anon_sym_LBRACE] = ACTIONS(3144), - [anon_sym_LPAREN] = ACTIONS(815), - [anon_sym_fn] = ACTIONS(817), - [anon_sym_PLUS] = ACTIONS(819), - [anon_sym_DASH] = ACTIONS(819), - [anon_sym_STAR] = ACTIONS(821), - [anon_sym_struct] = ACTIONS(823), + [anon_sym_DOT] = ACTIONS(1430), + [anon_sym_LBRACE] = ACTIONS(1432), + [anon_sym_LPAREN] = ACTIONS(1434), + [anon_sym_fn] = ACTIONS(1436), + [anon_sym_PLUS] = ACTIONS(3090), + [anon_sym_DASH] = ACTIONS(3090), + [anon_sym_STAR] = ACTIONS(3092), + [anon_sym_struct] = ACTIONS(1442), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(827), - [anon_sym_go] = ACTIONS(829), - [anon_sym_spawn] = ACTIONS(831), - [anon_sym_json_DOTdecode] = ACTIONS(833), - [anon_sym_LBRACK2] = ACTIONS(835), - [anon_sym_TILDE] = ACTIONS(819), - [anon_sym_CARET] = ACTIONS(819), - [anon_sym_AMP] = ACTIONS(837), - [anon_sym_LT_DASH] = ACTIONS(839), - [sym_none] = ACTIONS(841), - [sym_true] = ACTIONS(841), - [sym_false] = ACTIONS(841), - [sym_nil] = ACTIONS(841), - [anon_sym_if] = ACTIONS(843), - [anon_sym_DOLLARif] = ACTIONS(845), - [anon_sym_match] = ACTIONS(847), - [anon_sym_select] = ACTIONS(849), - [anon_sym_lock] = ACTIONS(851), - [anon_sym_rlock] = ACTIONS(851), - [anon_sym_unsafe] = ACTIONS(853), - [anon_sym_sql] = ACTIONS(855), - [sym_int_literal] = ACTIONS(841), - [sym_float_literal] = ACTIONS(857), - [sym_rune_literal] = ACTIONS(857), - [sym_pseudo_compile_time_identifier] = ACTIONS(859), + [anon_sym_BANG] = ACTIONS(3094), + [anon_sym_go] = ACTIONS(3096), + [anon_sym_spawn] = ACTIONS(3098), + [anon_sym_json_DOTdecode] = ACTIONS(1450), + [anon_sym_LBRACK2] = ACTIONS(1827), + [anon_sym_TILDE] = ACTIONS(3090), + [anon_sym_CARET] = ACTIONS(3090), + [anon_sym_AMP] = ACTIONS(3100), + [anon_sym_LT_DASH] = ACTIONS(3102), + [sym_none] = ACTIONS(1458), + [sym_true] = ACTIONS(1458), + [sym_false] = ACTIONS(1458), + [sym_nil] = ACTIONS(1458), + [anon_sym_if] = ACTIONS(1833), + [anon_sym_DOLLARif] = ACTIONS(1462), + [anon_sym_match] = ACTIONS(1464), + [anon_sym_select] = ACTIONS(3104), + [anon_sym_lock] = ACTIONS(3106), + [anon_sym_rlock] = ACTIONS(3106), + [anon_sym_unsafe] = ACTIONS(1839), + [anon_sym_sql] = ACTIONS(1472), + [sym_int_literal] = ACTIONS(1458), + [sym_float_literal] = ACTIONS(1474), + [sym_rune_literal] = ACTIONS(1474), + [sym_pseudo_compile_time_identifier] = ACTIONS(1476), [anon_sym_shared] = ACTIONS(83), [anon_sym_map_LBRACK] = ACTIONS(85), [anon_sym_chan] = ACTIONS(87), [anon_sym_thread] = ACTIONS(89), [anon_sym_atomic] = ACTIONS(91), - [sym___double_quote] = ACTIONS(861), - [sym___single_quote] = ACTIONS(863), - [sym___c_double_quote] = ACTIONS(865), - [sym___c_single_quote] = ACTIONS(867), - [sym___r_double_quote] = ACTIONS(869), - [sym___r_single_quote] = ACTIONS(871), + [sym___double_quote] = ACTIONS(1480), + [sym___single_quote] = ACTIONS(1482), + [sym___c_double_quote] = ACTIONS(1484), + [sym___c_single_quote] = ACTIONS(1486), + [sym___r_double_quote] = ACTIONS(1488), + [sym___r_single_quote] = ACTIONS(1490), }, [538] = { [sym_line_comment] = STATE(538), [sym_block_comment] = STATE(538), - [sym__expression] = STATE(2750), - [sym__expression_without_blocks] = STATE(2300), - [sym__expression_with_blocks] = STATE(2300), - [sym_inc_expression] = STATE(2307), - [sym_dec_expression] = STATE(2307), - [sym_or_block_expression] = STATE(2307), - [sym_option_propagation_expression] = STATE(2307), - [sym_result_propagation_expression] = STATE(2307), - [sym_anon_struct_value_expression] = STATE(2380), - [sym_go_expression] = STATE(2307), - [sym_spawn_expression] = STATE(2307), - [sym_parenthesized_expression] = STATE(2307), - [sym_call_expression] = STATE(2307), - [sym_type_initializer] = STATE(2380), - [sym_function_literal] = STATE(2307), - [sym_reference_expression] = STATE(2311), - [sym_type_reference_expression] = STATE(3541), - [sym_unary_expression] = STATE(2307), - [sym_receive_expression] = STATE(2307), - [sym_binary_expression] = STATE(2307), - [sym_as_type_cast_expression] = STATE(2307), - [sym__max_group] = STATE(2307), - [sym_literal] = STATE(2292), - [sym_map_init_expression] = STATE(2380), - [sym_array_creation] = STATE(2307), - [sym_fixed_array_creation] = STATE(2307), - [sym_selector_expression] = STATE(2307), - [sym_index_expression] = STATE(2307), - [sym_slice_expression] = STATE(2307), - [sym_if_expression] = STATE(2380), - [sym_compile_time_if_expression] = STATE(2380), - [sym_is_expression] = STATE(2307), - [sym_in_expression] = STATE(2307), - [sym_enum_fetch] = STATE(2307), - [sym_match_expression] = STATE(2380), - [sym_select_expression] = STATE(2380), - [sym_lock_expression] = STATE(2380), - [sym_unsafe_expression] = STATE(2380), - [sym_sql_expression] = STATE(2380), - [sym_c_string_literal] = STATE(2308), - [sym_raw_string_literal] = STATE(2308), - [sym_interpreted_string_literal] = STATE(2308), - [sym_mutability_modifiers] = STATE(944), - [sym_mutable_expression] = STATE(4433), - [sym_plain_type] = STATE(4297), - [sym__plain_type_without_special] = STATE(2302), - [sym_anon_struct_type] = STATE(2303), - [sym_multi_return_type] = STATE(2302), - [sym_result_type] = STATE(2302), - [sym_option_type] = STATE(2302), - [sym_qualified_type] = STATE(3541), - [sym_fixed_array_type] = STATE(2303), - [sym_array_type] = STATE(2303), - [sym_pointer_type] = STATE(2303), - [sym_wrong_pointer_type] = STATE(2303), - [sym_map_type] = STATE(2303), - [sym_channel_type] = STATE(2303), - [sym_shared_type] = STATE(2303), - [sym_thread_type] = STATE(2303), - [sym_atomic_type] = STATE(2303), - [sym_generic_type] = STATE(2303), - [sym_function_type] = STATE(2303), - [sym_identifier] = ACTIONS(1807), + [sym__expression] = STATE(2826), + [sym__expression_without_blocks] = STATE(2825), + [sym__expression_with_blocks] = STATE(2347), + [sym_inc_expression] = STATE(2379), + [sym_dec_expression] = STATE(2379), + [sym_or_block_expression] = STATE(2379), + [sym_option_propagation_expression] = STATE(2379), + [sym_result_propagation_expression] = STATE(2379), + [sym_anon_struct_value_expression] = STATE(2378), + [sym_go_expression] = STATE(2379), + [sym_spawn_expression] = STATE(2379), + [sym_parenthesized_expression] = STATE(2379), + [sym_call_expression] = STATE(2379), + [sym_type_initializer] = STATE(2378), + [sym_function_literal] = STATE(2379), + [sym_reference_expression] = STATE(2377), + [sym_type_reference_expression] = STATE(3460), + [sym_unary_expression] = STATE(2379), + [sym_receive_expression] = STATE(2379), + [sym_binary_expression] = STATE(2379), + [sym_as_type_cast_expression] = STATE(2379), + [sym__max_group] = STATE(2379), + [sym_literal] = STATE(2392), + [sym_map_init_expression] = STATE(2378), + [sym_array_creation] = STATE(2379), + [sym_fixed_array_creation] = STATE(2379), + [sym_selector_expression] = STATE(2379), + [sym_index_expression] = STATE(2379), + [sym_slice_expression] = STATE(2379), + [sym_if_expression] = STATE(2378), + [sym_compile_time_if_expression] = STATE(2378), + [sym_is_expression] = STATE(2379), + [sym_in_expression] = STATE(2379), + [sym_enum_fetch] = STATE(2379), + [sym_match_expression] = STATE(2378), + [sym_select_expression] = STATE(2378), + [sym_lock_expression] = STATE(2378), + [sym_unsafe_expression] = STATE(2378), + [sym_sql_expression] = STATE(2378), + [sym_c_string_literal] = STATE(2401), + [sym_raw_string_literal] = STATE(2401), + [sym_interpreted_string_literal] = STATE(2401), + [sym_mutability_modifiers] = STATE(553), + [sym_expression_without_blocks_list] = STATE(4495), + [sym_plain_type] = STATE(4160), + [sym__plain_type_without_special] = STATE(2360), + [sym_anon_struct_type] = STATE(2362), + [sym_multi_return_type] = STATE(2360), + [sym_result_type] = STATE(2360), + [sym_option_type] = STATE(2360), + [sym_qualified_type] = STATE(3460), + [sym_fixed_array_type] = STATE(2362), + [sym_array_type] = STATE(2362), + [sym_pointer_type] = STATE(2362), + [sym_wrong_pointer_type] = STATE(2362), + [sym_map_type] = STATE(2362), + [sym_channel_type] = STATE(2362), + [sym_shared_type] = STATE(2362), + [sym_thread_type] = STATE(2362), + [sym_atomic_type] = STATE(2362), + [sym_generic_type] = STATE(2362), + [sym_function_type] = STATE(2362), + [sym_identifier] = ACTIONS(1815), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1428), - [anon_sym_LBRACE] = ACTIONS(1430), - [anon_sym_LPAREN] = ACTIONS(1432), - [anon_sym_fn] = ACTIONS(1434), - [anon_sym_PLUS] = ACTIONS(3064), - [anon_sym_DASH] = ACTIONS(3064), - [anon_sym_STAR] = ACTIONS(3066), - [anon_sym_struct] = ACTIONS(1440), + [anon_sym_DOT] = ACTIONS(1430), + [anon_sym_LBRACE] = ACTIONS(1432), + [anon_sym_LPAREN] = ACTIONS(1434), + [anon_sym_fn] = ACTIONS(1436), + [anon_sym_PLUS] = ACTIONS(1817), + [anon_sym_DASH] = ACTIONS(1817), + [anon_sym_STAR] = ACTIONS(1819), + [anon_sym_struct] = ACTIONS(1442), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(3068), - [anon_sym_go] = ACTIONS(3070), - [anon_sym_spawn] = ACTIONS(3072), - [anon_sym_json_DOTdecode] = ACTIONS(1448), - [anon_sym_LBRACK2] = ACTIONS(1821), - [anon_sym_TILDE] = ACTIONS(3064), - [anon_sym_CARET] = ACTIONS(3064), - [anon_sym_AMP] = ACTIONS(3074), - [anon_sym_LT_DASH] = ACTIONS(3076), - [sym_none] = ACTIONS(1456), - [sym_true] = ACTIONS(1456), - [sym_false] = ACTIONS(1456), - [sym_nil] = ACTIONS(1456), - [anon_sym_if] = ACTIONS(1827), - [anon_sym_DOLLARif] = ACTIONS(1460), - [anon_sym_match] = ACTIONS(1462), - [anon_sym_select] = ACTIONS(3078), - [anon_sym_lock] = ACTIONS(3080), - [anon_sym_rlock] = ACTIONS(3080), - [anon_sym_unsafe] = ACTIONS(1833), - [anon_sym_sql] = ACTIONS(1470), - [sym_int_literal] = ACTIONS(1456), - [sym_float_literal] = ACTIONS(1472), - [sym_rune_literal] = ACTIONS(1472), - [sym_pseudo_compile_time_identifier] = ACTIONS(1474), + [anon_sym_BANG] = ACTIONS(1821), + [anon_sym_go] = ACTIONS(1823), + [anon_sym_spawn] = ACTIONS(1825), + [anon_sym_json_DOTdecode] = ACTIONS(1450), + [anon_sym_LBRACK2] = ACTIONS(1827), + [anon_sym_TILDE] = ACTIONS(1817), + [anon_sym_CARET] = ACTIONS(1817), + [anon_sym_AMP] = ACTIONS(1829), + [anon_sym_LT_DASH] = ACTIONS(1831), + [sym_none] = ACTIONS(1458), + [sym_true] = ACTIONS(1458), + [sym_false] = ACTIONS(1458), + [sym_nil] = ACTIONS(1458), + [anon_sym_if] = ACTIONS(1833), + [anon_sym_DOLLARif] = ACTIONS(1462), + [anon_sym_match] = ACTIONS(1464), + [anon_sym_select] = ACTIONS(1466), + [anon_sym_lock] = ACTIONS(1468), + [anon_sym_rlock] = ACTIONS(1468), + [anon_sym_unsafe] = ACTIONS(1839), + [anon_sym_sql] = ACTIONS(1472), + [sym_int_literal] = ACTIONS(1458), + [sym_float_literal] = ACTIONS(1474), + [sym_rune_literal] = ACTIONS(1474), + [sym_pseudo_compile_time_identifier] = ACTIONS(1476), [anon_sym_shared] = ACTIONS(83), [anon_sym_map_LBRACK] = ACTIONS(85), [anon_sym_chan] = ACTIONS(87), [anon_sym_thread] = ACTIONS(89), [anon_sym_atomic] = ACTIONS(91), - [sym___double_quote] = ACTIONS(1478), - [sym___single_quote] = ACTIONS(1480), - [sym___c_double_quote] = ACTIONS(1482), - [sym___c_single_quote] = ACTIONS(1484), - [sym___r_double_quote] = ACTIONS(1486), - [sym___r_single_quote] = ACTIONS(1488), + [sym___double_quote] = ACTIONS(1480), + [sym___single_quote] = ACTIONS(1482), + [sym___c_double_quote] = ACTIONS(1484), + [sym___c_single_quote] = ACTIONS(1486), + [sym___r_double_quote] = ACTIONS(1488), + [sym___r_single_quote] = ACTIONS(1490), }, [539] = { [sym_line_comment] = STATE(539), [sym_block_comment] = STATE(539), - [sym__expression] = STATE(2831), - [sym__expression_without_blocks] = STATE(2300), - [sym__expression_with_blocks] = STATE(2300), - [sym_inc_expression] = STATE(2307), - [sym_dec_expression] = STATE(2307), - [sym_or_block_expression] = STATE(2307), - [sym_option_propagation_expression] = STATE(2307), - [sym_result_propagation_expression] = STATE(2307), - [sym_anon_struct_value_expression] = STATE(2380), - [sym_go_expression] = STATE(2307), - [sym_spawn_expression] = STATE(2307), - [sym_parenthesized_expression] = STATE(2307), - [sym_call_expression] = STATE(2307), - [sym_type_initializer] = STATE(2380), - [sym_function_literal] = STATE(2307), - [sym_reference_expression] = STATE(2951), - [sym_type_reference_expression] = STATE(3541), - [sym_unary_expression] = STATE(2307), - [sym_receive_expression] = STATE(2307), - [sym_binary_expression] = STATE(2307), - [sym_as_type_cast_expression] = STATE(2307), - [sym__max_group] = STATE(2307), - [sym_literal] = STATE(2292), - [sym_map_init_expression] = STATE(2380), - [sym_array_creation] = STATE(2307), - [sym_fixed_array_creation] = STATE(2307), - [sym_selector_expression] = STATE(2904), - [sym_index_expression] = STATE(2307), - [sym_slice_expression] = STATE(2307), - [sym_if_expression] = STATE(2380), - [sym_compile_time_if_expression] = STATE(2380), - [sym_is_expression] = STATE(2307), - [sym_in_expression] = STATE(2307), - [sym_enum_fetch] = STATE(2307), - [sym_match_expression] = STATE(2380), - [sym_select_expression] = STATE(2380), - [sym_lock_expression] = STATE(2380), - [sym_unsafe_expression] = STATE(2380), - [sym_sql_expression] = STATE(2380), - [sym_c_string_literal] = STATE(2308), - [sym_raw_string_literal] = STATE(2308), - [sym_interpreted_string_literal] = STATE(2308), + [sym__expression] = STATE(2830), + [sym__expression_without_blocks] = STATE(2347), + [sym__expression_with_blocks] = STATE(2347), + [sym_inc_expression] = STATE(2379), + [sym_dec_expression] = STATE(2379), + [sym_or_block_expression] = STATE(2379), + [sym_option_propagation_expression] = STATE(2379), + [sym_result_propagation_expression] = STATE(2379), + [sym_anon_struct_value_expression] = STATE(2378), + [sym_go_expression] = STATE(2379), + [sym_spawn_expression] = STATE(2379), + [sym_parenthesized_expression] = STATE(2379), + [sym_call_expression] = STATE(2379), + [sym_type_initializer] = STATE(2378), + [sym_function_literal] = STATE(2379), + [sym_reference_expression] = STATE(2942), + [sym_type_reference_expression] = STATE(3460), + [sym_unary_expression] = STATE(2379), + [sym_receive_expression] = STATE(2379), + [sym_binary_expression] = STATE(2379), + [sym_as_type_cast_expression] = STATE(2379), + [sym__max_group] = STATE(2379), + [sym_literal] = STATE(2392), + [sym_map_init_expression] = STATE(2378), + [sym_array_creation] = STATE(2379), + [sym_fixed_array_creation] = STATE(2379), + [sym_selector_expression] = STATE(2929), + [sym_index_expression] = STATE(2379), + [sym_slice_expression] = STATE(2379), + [sym_if_expression] = STATE(2378), + [sym_compile_time_if_expression] = STATE(2378), + [sym_is_expression] = STATE(2379), + [sym_in_expression] = STATE(2379), + [sym_enum_fetch] = STATE(2379), + [sym_match_expression] = STATE(2378), + [sym_select_expression] = STATE(2378), + [sym_lock_expression] = STATE(2378), + [sym_unsafe_expression] = STATE(2378), + [sym_sql_expression] = STATE(2378), + [sym_c_string_literal] = STATE(2401), + [sym_raw_string_literal] = STATE(2401), + [sym_interpreted_string_literal] = STATE(2401), [sym_mutability_modifiers] = STATE(939), - [sym_plain_type] = STATE(4297), - [sym__plain_type_without_special] = STATE(2302), - [sym_anon_struct_type] = STATE(2303), - [sym_multi_return_type] = STATE(2302), - [sym_result_type] = STATE(2302), - [sym_option_type] = STATE(2302), - [sym_qualified_type] = STATE(3541), - [sym_fixed_array_type] = STATE(2303), - [sym_array_type] = STATE(2303), - [sym_pointer_type] = STATE(2303), - [sym_wrong_pointer_type] = STATE(2303), - [sym_map_type] = STATE(2303), - [sym_channel_type] = STATE(2303), - [sym_shared_type] = STATE(2303), - [sym_thread_type] = STATE(2303), - [sym_atomic_type] = STATE(2303), - [sym_generic_type] = STATE(2303), - [sym_function_type] = STATE(2303), - [sym_identifier] = ACTIONS(1426), + [sym_plain_type] = STATE(4160), + [sym__plain_type_without_special] = STATE(2360), + [sym_anon_struct_type] = STATE(2362), + [sym_multi_return_type] = STATE(2360), + [sym_result_type] = STATE(2360), + [sym_option_type] = STATE(2360), + [sym_qualified_type] = STATE(3460), + [sym_fixed_array_type] = STATE(2362), + [sym_array_type] = STATE(2362), + [sym_pointer_type] = STATE(2362), + [sym_wrong_pointer_type] = STATE(2362), + [sym_map_type] = STATE(2362), + [sym_channel_type] = STATE(2362), + [sym_shared_type] = STATE(2362), + [sym_thread_type] = STATE(2362), + [sym_atomic_type] = STATE(2362), + [sym_generic_type] = STATE(2362), + [sym_function_type] = STATE(2362), + [sym_identifier] = ACTIONS(1428), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1428), - [anon_sym_LBRACE] = ACTIONS(1430), - [anon_sym_LPAREN] = ACTIONS(1432), - [anon_sym_fn] = ACTIONS(1434), - [anon_sym_PLUS] = ACTIONS(1436), - [anon_sym_DASH] = ACTIONS(1436), - [anon_sym_STAR] = ACTIONS(1438), - [anon_sym_RBRACK] = ACTIONS(3246), - [anon_sym_struct] = ACTIONS(1440), + [anon_sym_DOT] = ACTIONS(1430), + [anon_sym_LBRACE] = ACTIONS(1432), + [anon_sym_LPAREN] = ACTIONS(1434), + [anon_sym_fn] = ACTIONS(1436), + [anon_sym_PLUS] = ACTIONS(1438), + [anon_sym_DASH] = ACTIONS(1438), + [anon_sym_STAR] = ACTIONS(1440), + [anon_sym_RBRACK] = ACTIONS(3180), + [anon_sym_struct] = ACTIONS(1442), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(1442), - [anon_sym_go] = ACTIONS(1444), - [anon_sym_spawn] = ACTIONS(1446), - [anon_sym_json_DOTdecode] = ACTIONS(1448), - [anon_sym_LBRACK2] = ACTIONS(1450), - [anon_sym_TILDE] = ACTIONS(1436), - [anon_sym_CARET] = ACTIONS(1436), - [anon_sym_AMP] = ACTIONS(1452), - [anon_sym_LT_DASH] = ACTIONS(1454), - [sym_none] = ACTIONS(1456), - [sym_true] = ACTIONS(1456), - [sym_false] = ACTIONS(1456), - [sym_nil] = ACTIONS(1456), - [anon_sym_if] = ACTIONS(1827), - [anon_sym_DOLLARif] = ACTIONS(1460), - [anon_sym_match] = ACTIONS(1462), - [anon_sym_select] = ACTIONS(1464), - [anon_sym_lock] = ACTIONS(1466), - [anon_sym_rlock] = ACTIONS(1466), - [anon_sym_unsafe] = ACTIONS(1833), - [anon_sym_sql] = ACTIONS(1470), - [sym_int_literal] = ACTIONS(3248), - [sym_float_literal] = ACTIONS(1472), - [sym_rune_literal] = ACTIONS(1472), - [sym_pseudo_compile_time_identifier] = ACTIONS(1474), + [anon_sym_BANG] = ACTIONS(1444), + [anon_sym_go] = ACTIONS(1446), + [anon_sym_spawn] = ACTIONS(1448), + [anon_sym_json_DOTdecode] = ACTIONS(1450), + [anon_sym_LBRACK2] = ACTIONS(1452), + [anon_sym_TILDE] = ACTIONS(1438), + [anon_sym_CARET] = ACTIONS(1438), + [anon_sym_AMP] = ACTIONS(1454), + [anon_sym_LT_DASH] = ACTIONS(1456), + [sym_none] = ACTIONS(1458), + [sym_true] = ACTIONS(1458), + [sym_false] = ACTIONS(1458), + [sym_nil] = ACTIONS(1458), + [anon_sym_if] = ACTIONS(1833), + [anon_sym_DOLLARif] = ACTIONS(1462), + [anon_sym_match] = ACTIONS(1464), + [anon_sym_select] = ACTIONS(1466), + [anon_sym_lock] = ACTIONS(1468), + [anon_sym_rlock] = ACTIONS(1468), + [anon_sym_unsafe] = ACTIONS(1839), + [anon_sym_sql] = ACTIONS(1472), + [sym_int_literal] = ACTIONS(3182), + [sym_float_literal] = ACTIONS(1474), + [sym_rune_literal] = ACTIONS(1474), + [sym_pseudo_compile_time_identifier] = ACTIONS(1476), [anon_sym_shared] = ACTIONS(83), [anon_sym_map_LBRACK] = ACTIONS(85), [anon_sym_chan] = ACTIONS(87), [anon_sym_thread] = ACTIONS(89), [anon_sym_atomic] = ACTIONS(91), - [sym___double_quote] = ACTIONS(1478), - [sym___single_quote] = ACTIONS(1480), - [sym___c_double_quote] = ACTIONS(1482), - [sym___c_single_quote] = ACTIONS(1484), - [sym___r_double_quote] = ACTIONS(1486), - [sym___r_single_quote] = ACTIONS(1488), + [sym___double_quote] = ACTIONS(1480), + [sym___single_quote] = ACTIONS(1482), + [sym___c_double_quote] = ACTIONS(1484), + [sym___c_single_quote] = ACTIONS(1486), + [sym___r_double_quote] = ACTIONS(1488), + [sym___r_single_quote] = ACTIONS(1490), }, [540] = { [sym_line_comment] = STATE(540), [sym_block_comment] = STATE(540), - [sym__expression] = STATE(2756), - [sym__expression_without_blocks] = STATE(2300), - [sym__expression_with_blocks] = STATE(2300), - [sym_inc_expression] = STATE(2307), - [sym_dec_expression] = STATE(2307), - [sym_or_block_expression] = STATE(2307), - [sym_option_propagation_expression] = STATE(2307), - [sym_result_propagation_expression] = STATE(2307), - [sym_anon_struct_value_expression] = STATE(2380), - [sym_go_expression] = STATE(2307), - [sym_spawn_expression] = STATE(2307), - [sym_parenthesized_expression] = STATE(2307), - [sym_call_expression] = STATE(2307), - [sym_type_initializer] = STATE(2380), - [sym_function_literal] = STATE(2307), - [sym_reference_expression] = STATE(2311), - [sym_type_reference_expression] = STATE(3541), - [sym_unary_expression] = STATE(2307), - [sym_receive_expression] = STATE(2307), - [sym_binary_expression] = STATE(2307), - [sym_as_type_cast_expression] = STATE(2307), - [sym__max_group] = STATE(2307), - [sym_literal] = STATE(2292), - [sym_map_init_expression] = STATE(2380), - [sym_array_creation] = STATE(2307), - [sym_fixed_array_creation] = STATE(2307), - [sym_selector_expression] = STATE(2307), - [sym_index_expression] = STATE(2307), - [sym_slice_expression] = STATE(2307), - [sym_if_expression] = STATE(2380), - [sym_compile_time_if_expression] = STATE(2380), - [sym_is_expression] = STATE(2307), - [sym_in_expression] = STATE(2307), - [sym_enum_fetch] = STATE(2307), - [sym_match_expression] = STATE(2380), - [sym_select_expression] = STATE(2380), - [sym_lock_expression] = STATE(2380), - [sym_unsafe_expression] = STATE(2380), - [sym_sql_expression] = STATE(2380), - [sym_c_string_literal] = STATE(2308), - [sym_raw_string_literal] = STATE(2308), - [sym_interpreted_string_literal] = STATE(2308), - [sym_mutability_modifiers] = STATE(944), - [sym_mutable_expression] = STATE(4454), - [sym_plain_type] = STATE(4297), - [sym__plain_type_without_special] = STATE(2302), - [sym_anon_struct_type] = STATE(2303), - [sym_multi_return_type] = STATE(2302), - [sym_result_type] = STATE(2302), - [sym_option_type] = STATE(2302), - [sym_qualified_type] = STATE(3541), - [sym_fixed_array_type] = STATE(2303), - [sym_array_type] = STATE(2303), - [sym_pointer_type] = STATE(2303), - [sym_wrong_pointer_type] = STATE(2303), - [sym_map_type] = STATE(2303), - [sym_channel_type] = STATE(2303), - [sym_shared_type] = STATE(2303), - [sym_thread_type] = STATE(2303), - [sym_atomic_type] = STATE(2303), - [sym_generic_type] = STATE(2303), - [sym_function_type] = STATE(2303), - [sym_identifier] = ACTIONS(1807), + [sym__expression] = STATE(210), + [sym__expression_without_blocks] = STATE(401), + [sym__expression_with_blocks] = STATE(401), + [sym_inc_expression] = STATE(399), + [sym_dec_expression] = STATE(399), + [sym_or_block_expression] = STATE(399), + [sym_option_propagation_expression] = STATE(399), + [sym_result_propagation_expression] = STATE(399), + [sym_anon_struct_value_expression] = STATE(395), + [sym_go_expression] = STATE(399), + [sym_spawn_expression] = STATE(399), + [sym_parenthesized_expression] = STATE(399), + [sym_call_expression] = STATE(399), + [sym_type_initializer] = STATE(395), + [sym_function_literal] = STATE(399), + [sym_reference_expression] = STATE(393), + [sym_type_reference_expression] = STATE(3460), + [sym_unary_expression] = STATE(399), + [sym_receive_expression] = STATE(399), + [sym_binary_expression] = STATE(399), + [sym_as_type_cast_expression] = STATE(399), + [sym__max_group] = STATE(399), + [sym_literal] = STATE(455), + [sym_map_init_expression] = STATE(395), + [sym_array_creation] = STATE(399), + [sym_fixed_array_creation] = STATE(399), + [sym_selector_expression] = STATE(399), + [sym_index_expression] = STATE(399), + [sym_slice_expression] = STATE(399), + [sym_if_expression] = STATE(395), + [sym_compile_time_if_expression] = STATE(395), + [sym_is_expression] = STATE(399), + [sym_in_expression] = STATE(399), + [sym_enum_fetch] = STATE(399), + [sym_match_expression] = STATE(395), + [sym_select_expression] = STATE(395), + [sym_lock_expression] = STATE(395), + [sym_unsafe_expression] = STATE(395), + [sym_sql_expression] = STATE(395), + [sym_c_string_literal] = STATE(479), + [sym_raw_string_literal] = STATE(479), + [sym_interpreted_string_literal] = STATE(479), + [sym_mutability_modifiers] = STATE(933), + [sym_mutable_expression] = STATE(1102), + [sym_plain_type] = STATE(4069), + [sym__plain_type_without_special] = STATE(2360), + [sym_anon_struct_type] = STATE(2362), + [sym_multi_return_type] = STATE(2360), + [sym_result_type] = STATE(2360), + [sym_option_type] = STATE(2360), + [sym_qualified_type] = STATE(3460), + [sym_fixed_array_type] = STATE(2362), + [sym_array_type] = STATE(2362), + [sym_pointer_type] = STATE(2362), + [sym_wrong_pointer_type] = STATE(2362), + [sym_map_type] = STATE(2362), + [sym_channel_type] = STATE(2362), + [sym_shared_type] = STATE(2362), + [sym_thread_type] = STATE(2362), + [sym_atomic_type] = STATE(2362), + [sym_generic_type] = STATE(2362), + [sym_function_type] = STATE(2362), + [sym_identifier] = ACTIONS(3184), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1428), - [anon_sym_LBRACE] = ACTIONS(1430), - [anon_sym_LPAREN] = ACTIONS(1432), - [anon_sym_fn] = ACTIONS(1434), - [anon_sym_PLUS] = ACTIONS(3064), - [anon_sym_DASH] = ACTIONS(3064), - [anon_sym_STAR] = ACTIONS(3066), - [anon_sym_struct] = ACTIONS(1440), + [anon_sym_DOT] = ACTIONS(17), + [anon_sym_LBRACE] = ACTIONS(3186), + [anon_sym_LPAREN] = ACTIONS(23), + [anon_sym_fn] = ACTIONS(485), + [anon_sym_PLUS] = ACTIONS(31), + [anon_sym_DASH] = ACTIONS(31), + [anon_sym_STAR] = ACTIONS(33), + [anon_sym_struct] = ACTIONS(487), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(3068), - [anon_sym_go] = ACTIONS(3070), - [anon_sym_spawn] = ACTIONS(3072), - [anon_sym_json_DOTdecode] = ACTIONS(1448), - [anon_sym_LBRACK2] = ACTIONS(1821), - [anon_sym_TILDE] = ACTIONS(3064), - [anon_sym_CARET] = ACTIONS(3064), - [anon_sym_AMP] = ACTIONS(3074), - [anon_sym_LT_DASH] = ACTIONS(3076), - [sym_none] = ACTIONS(1456), - [sym_true] = ACTIONS(1456), - [sym_false] = ACTIONS(1456), - [sym_nil] = ACTIONS(1456), - [anon_sym_if] = ACTIONS(1827), - [anon_sym_DOLLARif] = ACTIONS(1460), - [anon_sym_match] = ACTIONS(1462), - [anon_sym_select] = ACTIONS(3078), - [anon_sym_lock] = ACTIONS(3080), - [anon_sym_rlock] = ACTIONS(3080), - [anon_sym_unsafe] = ACTIONS(1833), - [anon_sym_sql] = ACTIONS(1470), - [sym_int_literal] = ACTIONS(1456), - [sym_float_literal] = ACTIONS(1472), - [sym_rune_literal] = ACTIONS(1472), - [sym_pseudo_compile_time_identifier] = ACTIONS(1474), + [anon_sym_BANG] = ACTIONS(49), + [anon_sym_go] = ACTIONS(51), + [anon_sym_spawn] = ACTIONS(53), + [anon_sym_json_DOTdecode] = ACTIONS(55), + [anon_sym_LBRACK2] = ACTIONS(489), + [anon_sym_TILDE] = ACTIONS(31), + [anon_sym_CARET] = ACTIONS(31), + [anon_sym_AMP] = ACTIONS(59), + [anon_sym_LT_DASH] = ACTIONS(61), + [sym_none] = ACTIONS(63), + [sym_true] = ACTIONS(63), + [sym_false] = ACTIONS(63), + [sym_nil] = ACTIONS(63), + [anon_sym_if] = ACTIONS(65), + [anon_sym_DOLLARif] = ACTIONS(67), + [anon_sym_match] = ACTIONS(69), + [anon_sym_select] = ACTIONS(71), + [anon_sym_lock] = ACTIONS(73), + [anon_sym_rlock] = ACTIONS(73), + [anon_sym_unsafe] = ACTIONS(75), + [anon_sym_sql] = ACTIONS(77), + [sym_int_literal] = ACTIONS(63), + [sym_float_literal] = ACTIONS(79), + [sym_rune_literal] = ACTIONS(79), + [sym_pseudo_compile_time_identifier] = ACTIONS(81), [anon_sym_shared] = ACTIONS(83), [anon_sym_map_LBRACK] = ACTIONS(85), [anon_sym_chan] = ACTIONS(87), [anon_sym_thread] = ACTIONS(89), [anon_sym_atomic] = ACTIONS(91), - [sym___double_quote] = ACTIONS(1478), - [sym___single_quote] = ACTIONS(1480), - [sym___c_double_quote] = ACTIONS(1482), - [sym___c_single_quote] = ACTIONS(1484), - [sym___r_double_quote] = ACTIONS(1486), - [sym___r_single_quote] = ACTIONS(1488), + [sym___double_quote] = ACTIONS(115), + [sym___single_quote] = ACTIONS(117), + [sym___c_double_quote] = ACTIONS(119), + [sym___c_single_quote] = ACTIONS(121), + [sym___r_double_quote] = ACTIONS(123), + [sym___r_single_quote] = ACTIONS(125), }, [541] = { [sym_line_comment] = STATE(541), [sym_block_comment] = STATE(541), - [sym__expression] = STATE(2831), - [sym__expression_without_blocks] = STATE(2300), - [sym__expression_with_blocks] = STATE(2300), - [sym_inc_expression] = STATE(2307), - [sym_dec_expression] = STATE(2307), - [sym_or_block_expression] = STATE(2307), - [sym_option_propagation_expression] = STATE(2307), - [sym_result_propagation_expression] = STATE(2307), - [sym_anon_struct_value_expression] = STATE(2380), - [sym_go_expression] = STATE(2307), - [sym_spawn_expression] = STATE(2307), - [sym_parenthesized_expression] = STATE(2307), - [sym_call_expression] = STATE(2307), - [sym_type_initializer] = STATE(2380), - [sym_function_literal] = STATE(2307), - [sym_reference_expression] = STATE(2887), - [sym_type_reference_expression] = STATE(3541), - [sym_unary_expression] = STATE(2307), - [sym_receive_expression] = STATE(2307), - [sym_binary_expression] = STATE(2307), - [sym_as_type_cast_expression] = STATE(2307), - [sym__max_group] = STATE(2307), - [sym_literal] = STATE(2292), - [sym_map_init_expression] = STATE(2380), - [sym_array_creation] = STATE(2307), - [sym_fixed_array_creation] = STATE(2307), - [sym_selector_expression] = STATE(2892), - [sym_index_expression] = STATE(2307), - [sym_slice_expression] = STATE(2307), - [sym_if_expression] = STATE(2380), - [sym_compile_time_if_expression] = STATE(2380), - [sym_is_expression] = STATE(2307), - [sym_in_expression] = STATE(2307), - [sym_enum_fetch] = STATE(2307), - [sym_match_expression] = STATE(2380), - [sym_select_expression] = STATE(2380), - [sym_lock_expression] = STATE(2380), - [sym_unsafe_expression] = STATE(2380), - [sym_sql_expression] = STATE(2380), - [sym_c_string_literal] = STATE(2308), - [sym_raw_string_literal] = STATE(2308), - [sym_interpreted_string_literal] = STATE(2308), + [sym__expression] = STATE(2830), + [sym__expression_without_blocks] = STATE(2347), + [sym__expression_with_blocks] = STATE(2347), + [sym_inc_expression] = STATE(2379), + [sym_dec_expression] = STATE(2379), + [sym_or_block_expression] = STATE(2379), + [sym_option_propagation_expression] = STATE(2379), + [sym_result_propagation_expression] = STATE(2379), + [sym_anon_struct_value_expression] = STATE(2378), + [sym_go_expression] = STATE(2379), + [sym_spawn_expression] = STATE(2379), + [sym_parenthesized_expression] = STATE(2379), + [sym_call_expression] = STATE(2379), + [sym_type_initializer] = STATE(2378), + [sym_function_literal] = STATE(2379), + [sym_reference_expression] = STATE(2939), + [sym_type_reference_expression] = STATE(3460), + [sym_unary_expression] = STATE(2379), + [sym_receive_expression] = STATE(2379), + [sym_binary_expression] = STATE(2379), + [sym_as_type_cast_expression] = STATE(2379), + [sym__max_group] = STATE(2379), + [sym_literal] = STATE(2392), + [sym_map_init_expression] = STATE(2378), + [sym_array_creation] = STATE(2379), + [sym_fixed_array_creation] = STATE(2379), + [sym_selector_expression] = STATE(2950), + [sym_index_expression] = STATE(2379), + [sym_slice_expression] = STATE(2379), + [sym_if_expression] = STATE(2378), + [sym_compile_time_if_expression] = STATE(2378), + [sym_is_expression] = STATE(2379), + [sym_in_expression] = STATE(2379), + [sym_enum_fetch] = STATE(2379), + [sym_match_expression] = STATE(2378), + [sym_select_expression] = STATE(2378), + [sym_lock_expression] = STATE(2378), + [sym_unsafe_expression] = STATE(2378), + [sym_sql_expression] = STATE(2378), + [sym_c_string_literal] = STATE(2401), + [sym_raw_string_literal] = STATE(2401), + [sym_interpreted_string_literal] = STATE(2401), [sym_mutability_modifiers] = STATE(939), - [sym_plain_type] = STATE(4297), - [sym__plain_type_without_special] = STATE(2302), - [sym_anon_struct_type] = STATE(2303), - [sym_multi_return_type] = STATE(2302), - [sym_result_type] = STATE(2302), - [sym_option_type] = STATE(2302), - [sym_qualified_type] = STATE(3541), - [sym_fixed_array_type] = STATE(2303), - [sym_array_type] = STATE(2303), - [sym_pointer_type] = STATE(2303), - [sym_wrong_pointer_type] = STATE(2303), - [sym_map_type] = STATE(2303), - [sym_channel_type] = STATE(2303), - [sym_shared_type] = STATE(2303), - [sym_thread_type] = STATE(2303), - [sym_atomic_type] = STATE(2303), - [sym_generic_type] = STATE(2303), - [sym_function_type] = STATE(2303), - [sym_identifier] = ACTIONS(1426), + [sym_plain_type] = STATE(4160), + [sym__plain_type_without_special] = STATE(2360), + [sym_anon_struct_type] = STATE(2362), + [sym_multi_return_type] = STATE(2360), + [sym_result_type] = STATE(2360), + [sym_option_type] = STATE(2360), + [sym_qualified_type] = STATE(3460), + [sym_fixed_array_type] = STATE(2362), + [sym_array_type] = STATE(2362), + [sym_pointer_type] = STATE(2362), + [sym_wrong_pointer_type] = STATE(2362), + [sym_map_type] = STATE(2362), + [sym_channel_type] = STATE(2362), + [sym_shared_type] = STATE(2362), + [sym_thread_type] = STATE(2362), + [sym_atomic_type] = STATE(2362), + [sym_generic_type] = STATE(2362), + [sym_function_type] = STATE(2362), + [sym_identifier] = ACTIONS(1428), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1428), - [anon_sym_LBRACE] = ACTIONS(1430), - [anon_sym_LPAREN] = ACTIONS(1432), - [anon_sym_fn] = ACTIONS(1434), - [anon_sym_PLUS] = ACTIONS(1436), - [anon_sym_DASH] = ACTIONS(1436), - [anon_sym_STAR] = ACTIONS(1438), - [anon_sym_RBRACK] = ACTIONS(3250), - [anon_sym_struct] = ACTIONS(1440), + [anon_sym_DOT] = ACTIONS(1430), + [anon_sym_LBRACE] = ACTIONS(1432), + [anon_sym_LPAREN] = ACTIONS(1434), + [anon_sym_fn] = ACTIONS(1436), + [anon_sym_PLUS] = ACTIONS(1438), + [anon_sym_DASH] = ACTIONS(1438), + [anon_sym_STAR] = ACTIONS(1440), + [anon_sym_RBRACK] = ACTIONS(3188), + [anon_sym_struct] = ACTIONS(1442), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(1442), - [anon_sym_go] = ACTIONS(1444), - [anon_sym_spawn] = ACTIONS(1446), - [anon_sym_json_DOTdecode] = ACTIONS(1448), - [anon_sym_LBRACK2] = ACTIONS(1450), - [anon_sym_TILDE] = ACTIONS(1436), - [anon_sym_CARET] = ACTIONS(1436), - [anon_sym_AMP] = ACTIONS(1452), - [anon_sym_LT_DASH] = ACTIONS(1454), - [sym_none] = ACTIONS(1456), - [sym_true] = ACTIONS(1456), - [sym_false] = ACTIONS(1456), - [sym_nil] = ACTIONS(1456), - [anon_sym_if] = ACTIONS(1827), - [anon_sym_DOLLARif] = ACTIONS(1460), - [anon_sym_match] = ACTIONS(1462), - [anon_sym_select] = ACTIONS(1464), - [anon_sym_lock] = ACTIONS(1466), - [anon_sym_rlock] = ACTIONS(1466), - [anon_sym_unsafe] = ACTIONS(1833), - [anon_sym_sql] = ACTIONS(1470), - [sym_int_literal] = ACTIONS(3252), - [sym_float_literal] = ACTIONS(1472), - [sym_rune_literal] = ACTIONS(1472), - [sym_pseudo_compile_time_identifier] = ACTIONS(1474), + [anon_sym_BANG] = ACTIONS(1444), + [anon_sym_go] = ACTIONS(1446), + [anon_sym_spawn] = ACTIONS(1448), + [anon_sym_json_DOTdecode] = ACTIONS(1450), + [anon_sym_LBRACK2] = ACTIONS(1452), + [anon_sym_TILDE] = ACTIONS(1438), + [anon_sym_CARET] = ACTIONS(1438), + [anon_sym_AMP] = ACTIONS(1454), + [anon_sym_LT_DASH] = ACTIONS(1456), + [sym_none] = ACTIONS(1458), + [sym_true] = ACTIONS(1458), + [sym_false] = ACTIONS(1458), + [sym_nil] = ACTIONS(1458), + [anon_sym_if] = ACTIONS(1833), + [anon_sym_DOLLARif] = ACTIONS(1462), + [anon_sym_match] = ACTIONS(1464), + [anon_sym_select] = ACTIONS(1466), + [anon_sym_lock] = ACTIONS(1468), + [anon_sym_rlock] = ACTIONS(1468), + [anon_sym_unsafe] = ACTIONS(1839), + [anon_sym_sql] = ACTIONS(1472), + [sym_int_literal] = ACTIONS(3190), + [sym_float_literal] = ACTIONS(1474), + [sym_rune_literal] = ACTIONS(1474), + [sym_pseudo_compile_time_identifier] = ACTIONS(1476), [anon_sym_shared] = ACTIONS(83), [anon_sym_map_LBRACK] = ACTIONS(85), [anon_sym_chan] = ACTIONS(87), [anon_sym_thread] = ACTIONS(89), [anon_sym_atomic] = ACTIONS(91), - [sym___double_quote] = ACTIONS(1478), - [sym___single_quote] = ACTIONS(1480), - [sym___c_double_quote] = ACTIONS(1482), - [sym___c_single_quote] = ACTIONS(1484), - [sym___r_double_quote] = ACTIONS(1486), - [sym___r_single_quote] = ACTIONS(1488), + [sym___double_quote] = ACTIONS(1480), + [sym___single_quote] = ACTIONS(1482), + [sym___c_double_quote] = ACTIONS(1484), + [sym___c_single_quote] = ACTIONS(1486), + [sym___r_double_quote] = ACTIONS(1488), + [sym___r_single_quote] = ACTIONS(1490), }, [542] = { [sym_line_comment] = STATE(542), [sym_block_comment] = STATE(542), - [sym__expression] = STATE(2831), - [sym__expression_without_blocks] = STATE(2300), - [sym__expression_with_blocks] = STATE(2300), - [sym_inc_expression] = STATE(2307), - [sym_dec_expression] = STATE(2307), - [sym_or_block_expression] = STATE(2307), - [sym_option_propagation_expression] = STATE(2307), - [sym_result_propagation_expression] = STATE(2307), - [sym_anon_struct_value_expression] = STATE(2380), - [sym_go_expression] = STATE(2307), - [sym_spawn_expression] = STATE(2307), - [sym_parenthesized_expression] = STATE(2307), - [sym_call_expression] = STATE(2307), - [sym_type_initializer] = STATE(2380), - [sym_function_literal] = STATE(2307), - [sym_reference_expression] = STATE(2941), - [sym_type_reference_expression] = STATE(3541), - [sym_unary_expression] = STATE(2307), - [sym_receive_expression] = STATE(2307), - [sym_binary_expression] = STATE(2307), - [sym_as_type_cast_expression] = STATE(2307), - [sym__max_group] = STATE(2307), - [sym_literal] = STATE(2292), - [sym_map_init_expression] = STATE(2380), - [sym_array_creation] = STATE(2307), - [sym_fixed_array_creation] = STATE(2307), - [sym_selector_expression] = STATE(2915), - [sym_index_expression] = STATE(2307), - [sym_slice_expression] = STATE(2307), - [sym_if_expression] = STATE(2380), - [sym_compile_time_if_expression] = STATE(2380), - [sym_is_expression] = STATE(2307), - [sym_in_expression] = STATE(2307), - [sym_enum_fetch] = STATE(2307), - [sym_match_expression] = STATE(2380), - [sym_select_expression] = STATE(2380), - [sym_lock_expression] = STATE(2380), - [sym_unsafe_expression] = STATE(2380), - [sym_sql_expression] = STATE(2380), - [sym_c_string_literal] = STATE(2308), - [sym_raw_string_literal] = STATE(2308), - [sym_interpreted_string_literal] = STATE(2308), + [sym__expression] = STATE(2830), + [sym__expression_without_blocks] = STATE(2347), + [sym__expression_with_blocks] = STATE(2347), + [sym_inc_expression] = STATE(2379), + [sym_dec_expression] = STATE(2379), + [sym_or_block_expression] = STATE(2379), + [sym_option_propagation_expression] = STATE(2379), + [sym_result_propagation_expression] = STATE(2379), + [sym_anon_struct_value_expression] = STATE(2378), + [sym_go_expression] = STATE(2379), + [sym_spawn_expression] = STATE(2379), + [sym_parenthesized_expression] = STATE(2379), + [sym_call_expression] = STATE(2379), + [sym_type_initializer] = STATE(2378), + [sym_function_literal] = STATE(2379), + [sym_reference_expression] = STATE(2903), + [sym_type_reference_expression] = STATE(3460), + [sym_unary_expression] = STATE(2379), + [sym_receive_expression] = STATE(2379), + [sym_binary_expression] = STATE(2379), + [sym_as_type_cast_expression] = STATE(2379), + [sym__max_group] = STATE(2379), + [sym_literal] = STATE(2392), + [sym_map_init_expression] = STATE(2378), + [sym_array_creation] = STATE(2379), + [sym_fixed_array_creation] = STATE(2379), + [sym_selector_expression] = STATE(2898), + [sym_index_expression] = STATE(2379), + [sym_slice_expression] = STATE(2379), + [sym_if_expression] = STATE(2378), + [sym_compile_time_if_expression] = STATE(2378), + [sym_is_expression] = STATE(2379), + [sym_in_expression] = STATE(2379), + [sym_enum_fetch] = STATE(2379), + [sym_match_expression] = STATE(2378), + [sym_select_expression] = STATE(2378), + [sym_lock_expression] = STATE(2378), + [sym_unsafe_expression] = STATE(2378), + [sym_sql_expression] = STATE(2378), + [sym_c_string_literal] = STATE(2401), + [sym_raw_string_literal] = STATE(2401), + [sym_interpreted_string_literal] = STATE(2401), [sym_mutability_modifiers] = STATE(939), - [sym_plain_type] = STATE(4297), - [sym__plain_type_without_special] = STATE(2302), - [sym_anon_struct_type] = STATE(2303), - [sym_multi_return_type] = STATE(2302), - [sym_result_type] = STATE(2302), - [sym_option_type] = STATE(2302), - [sym_qualified_type] = STATE(3541), - [sym_fixed_array_type] = STATE(2303), - [sym_array_type] = STATE(2303), - [sym_pointer_type] = STATE(2303), - [sym_wrong_pointer_type] = STATE(2303), - [sym_map_type] = STATE(2303), - [sym_channel_type] = STATE(2303), - [sym_shared_type] = STATE(2303), - [sym_thread_type] = STATE(2303), - [sym_atomic_type] = STATE(2303), - [sym_generic_type] = STATE(2303), - [sym_function_type] = STATE(2303), - [sym_identifier] = ACTIONS(1426), + [sym_plain_type] = STATE(4160), + [sym__plain_type_without_special] = STATE(2360), + [sym_anon_struct_type] = STATE(2362), + [sym_multi_return_type] = STATE(2360), + [sym_result_type] = STATE(2360), + [sym_option_type] = STATE(2360), + [sym_qualified_type] = STATE(3460), + [sym_fixed_array_type] = STATE(2362), + [sym_array_type] = STATE(2362), + [sym_pointer_type] = STATE(2362), + [sym_wrong_pointer_type] = STATE(2362), + [sym_map_type] = STATE(2362), + [sym_channel_type] = STATE(2362), + [sym_shared_type] = STATE(2362), + [sym_thread_type] = STATE(2362), + [sym_atomic_type] = STATE(2362), + [sym_generic_type] = STATE(2362), + [sym_function_type] = STATE(2362), + [sym_identifier] = ACTIONS(1428), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1428), - [anon_sym_LBRACE] = ACTIONS(1430), - [anon_sym_LPAREN] = ACTIONS(1432), - [anon_sym_fn] = ACTIONS(1434), - [anon_sym_PLUS] = ACTIONS(1436), - [anon_sym_DASH] = ACTIONS(1436), - [anon_sym_STAR] = ACTIONS(1438), - [anon_sym_RBRACK] = ACTIONS(3254), - [anon_sym_struct] = ACTIONS(1440), + [anon_sym_DOT] = ACTIONS(1430), + [anon_sym_LBRACE] = ACTIONS(1432), + [anon_sym_LPAREN] = ACTIONS(1434), + [anon_sym_fn] = ACTIONS(1436), + [anon_sym_PLUS] = ACTIONS(1438), + [anon_sym_DASH] = ACTIONS(1438), + [anon_sym_STAR] = ACTIONS(1440), + [anon_sym_RBRACK] = ACTIONS(3192), + [anon_sym_struct] = ACTIONS(1442), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(1442), - [anon_sym_go] = ACTIONS(1444), - [anon_sym_spawn] = ACTIONS(1446), - [anon_sym_json_DOTdecode] = ACTIONS(1448), - [anon_sym_LBRACK2] = ACTIONS(1450), - [anon_sym_TILDE] = ACTIONS(1436), - [anon_sym_CARET] = ACTIONS(1436), - [anon_sym_AMP] = ACTIONS(1452), - [anon_sym_LT_DASH] = ACTIONS(1454), - [sym_none] = ACTIONS(1456), - [sym_true] = ACTIONS(1456), - [sym_false] = ACTIONS(1456), - [sym_nil] = ACTIONS(1456), - [anon_sym_if] = ACTIONS(1827), - [anon_sym_DOLLARif] = ACTIONS(1460), - [anon_sym_match] = ACTIONS(1462), - [anon_sym_select] = ACTIONS(1464), - [anon_sym_lock] = ACTIONS(1466), - [anon_sym_rlock] = ACTIONS(1466), - [anon_sym_unsafe] = ACTIONS(1833), - [anon_sym_sql] = ACTIONS(1470), - [sym_int_literal] = ACTIONS(3256), - [sym_float_literal] = ACTIONS(1472), - [sym_rune_literal] = ACTIONS(1472), - [sym_pseudo_compile_time_identifier] = ACTIONS(1474), + [anon_sym_BANG] = ACTIONS(1444), + [anon_sym_go] = ACTIONS(1446), + [anon_sym_spawn] = ACTIONS(1448), + [anon_sym_json_DOTdecode] = ACTIONS(1450), + [anon_sym_LBRACK2] = ACTIONS(1452), + [anon_sym_TILDE] = ACTIONS(1438), + [anon_sym_CARET] = ACTIONS(1438), + [anon_sym_AMP] = ACTIONS(1454), + [anon_sym_LT_DASH] = ACTIONS(1456), + [sym_none] = ACTIONS(1458), + [sym_true] = ACTIONS(1458), + [sym_false] = ACTIONS(1458), + [sym_nil] = ACTIONS(1458), + [anon_sym_if] = ACTIONS(1833), + [anon_sym_DOLLARif] = ACTIONS(1462), + [anon_sym_match] = ACTIONS(1464), + [anon_sym_select] = ACTIONS(1466), + [anon_sym_lock] = ACTIONS(1468), + [anon_sym_rlock] = ACTIONS(1468), + [anon_sym_unsafe] = ACTIONS(1839), + [anon_sym_sql] = ACTIONS(1472), + [sym_int_literal] = ACTIONS(3194), + [sym_float_literal] = ACTIONS(1474), + [sym_rune_literal] = ACTIONS(1474), + [sym_pseudo_compile_time_identifier] = ACTIONS(1476), [anon_sym_shared] = ACTIONS(83), [anon_sym_map_LBRACK] = ACTIONS(85), [anon_sym_chan] = ACTIONS(87), [anon_sym_thread] = ACTIONS(89), [anon_sym_atomic] = ACTIONS(91), - [sym___double_quote] = ACTIONS(1478), - [sym___single_quote] = ACTIONS(1480), - [sym___c_double_quote] = ACTIONS(1482), - [sym___c_single_quote] = ACTIONS(1484), - [sym___r_double_quote] = ACTIONS(1486), - [sym___r_single_quote] = ACTIONS(1488), + [sym___double_quote] = ACTIONS(1480), + [sym___single_quote] = ACTIONS(1482), + [sym___c_double_quote] = ACTIONS(1484), + [sym___c_single_quote] = ACTIONS(1486), + [sym___r_double_quote] = ACTIONS(1488), + [sym___r_single_quote] = ACTIONS(1490), }, [543] = { [sym_line_comment] = STATE(543), [sym_block_comment] = STATE(543), - [sym__expression] = STATE(2775), - [sym__expression_without_blocks] = STATE(2300), - [sym__expression_with_blocks] = STATE(2300), - [sym_inc_expression] = STATE(2307), - [sym_dec_expression] = STATE(2307), - [sym_or_block_expression] = STATE(2307), - [sym_option_propagation_expression] = STATE(2307), - [sym_result_propagation_expression] = STATE(2307), - [sym_anon_struct_value_expression] = STATE(2380), - [sym_go_expression] = STATE(2307), - [sym_spawn_expression] = STATE(2307), - [sym_parenthesized_expression] = STATE(2307), - [sym_call_expression] = STATE(2307), - [sym_type_initializer] = STATE(2380), - [sym_function_literal] = STATE(2307), - [sym_reference_expression] = STATE(2311), - [sym_type_reference_expression] = STATE(3541), - [sym_unary_expression] = STATE(2307), - [sym_receive_expression] = STATE(2307), - [sym_binary_expression] = STATE(2307), - [sym_as_type_cast_expression] = STATE(2307), - [sym__max_group] = STATE(2307), - [sym_literal] = STATE(2292), - [sym_map_init_expression] = STATE(2380), - [sym_array_creation] = STATE(2307), - [sym_fixed_array_creation] = STATE(2307), - [sym_selector_expression] = STATE(2307), - [sym_index_expression] = STATE(2307), - [sym_slice_expression] = STATE(2307), - [sym_if_expression] = STATE(2380), - [sym_compile_time_if_expression] = STATE(2380), - [sym_is_expression] = STATE(2307), - [sym_in_expression] = STATE(2307), - [sym_enum_fetch] = STATE(2307), - [sym_match_expression] = STATE(2380), - [sym_select_expression] = STATE(2380), - [sym_lock_expression] = STATE(2380), - [sym_unsafe_expression] = STATE(2380), - [sym_sql_expression] = STATE(2380), - [sym_c_string_literal] = STATE(2308), - [sym_raw_string_literal] = STATE(2308), - [sym_interpreted_string_literal] = STATE(2308), - [sym_mutability_modifiers] = STATE(944), - [sym_mutable_expression] = STATE(4470), - [sym_plain_type] = STATE(4297), - [sym__plain_type_without_special] = STATE(2302), - [sym_anon_struct_type] = STATE(2303), - [sym_multi_return_type] = STATE(2302), - [sym_result_type] = STATE(2302), - [sym_option_type] = STATE(2302), - [sym_qualified_type] = STATE(3541), - [sym_fixed_array_type] = STATE(2303), - [sym_array_type] = STATE(2303), - [sym_pointer_type] = STATE(2303), - [sym_wrong_pointer_type] = STATE(2303), - [sym_map_type] = STATE(2303), - [sym_channel_type] = STATE(2303), - [sym_shared_type] = STATE(2303), - [sym_thread_type] = STATE(2303), - [sym_atomic_type] = STATE(2303), - [sym_generic_type] = STATE(2303), - [sym_function_type] = STATE(2303), - [sym_identifier] = ACTIONS(1807), + [sym__expression] = STATE(2787), + [sym__expression_without_blocks] = STATE(2347), + [sym__expression_with_blocks] = STATE(2347), + [sym_inc_expression] = STATE(2379), + [sym_dec_expression] = STATE(2379), + [sym_or_block_expression] = STATE(2379), + [sym_option_propagation_expression] = STATE(2379), + [sym_result_propagation_expression] = STATE(2379), + [sym_anon_struct_value_expression] = STATE(2378), + [sym_go_expression] = STATE(2379), + [sym_spawn_expression] = STATE(2379), + [sym_parenthesized_expression] = STATE(2379), + [sym_call_expression] = STATE(2379), + [sym_type_initializer] = STATE(2378), + [sym_function_literal] = STATE(2379), + [sym_reference_expression] = STATE(2377), + [sym_type_reference_expression] = STATE(3460), + [sym_unary_expression] = STATE(2379), + [sym_receive_expression] = STATE(2379), + [sym_binary_expression] = STATE(2379), + [sym_as_type_cast_expression] = STATE(2379), + [sym__max_group] = STATE(2379), + [sym_literal] = STATE(2392), + [sym_map_init_expression] = STATE(2378), + [sym_array_creation] = STATE(2379), + [sym_fixed_array_creation] = STATE(2379), + [sym_selector_expression] = STATE(2379), + [sym_index_expression] = STATE(2379), + [sym_slice_expression] = STATE(2379), + [sym_if_expression] = STATE(2378), + [sym_compile_time_if_expression] = STATE(2378), + [sym_is_expression] = STATE(2379), + [sym_in_expression] = STATE(2379), + [sym_enum_fetch] = STATE(2379), + [sym_match_expression] = STATE(2378), + [sym_select_expression] = STATE(2378), + [sym_lock_expression] = STATE(2378), + [sym_unsafe_expression] = STATE(2378), + [sym_sql_expression] = STATE(2378), + [sym_c_string_literal] = STATE(2401), + [sym_raw_string_literal] = STATE(2401), + [sym_interpreted_string_literal] = STATE(2401), + [sym_mutability_modifiers] = STATE(939), + [sym_plain_type] = STATE(4160), + [sym__plain_type_without_special] = STATE(2360), + [sym_anon_struct_type] = STATE(2362), + [sym_multi_return_type] = STATE(2360), + [sym_result_type] = STATE(2360), + [sym_option_type] = STATE(2360), + [sym_qualified_type] = STATE(3460), + [sym_fixed_array_type] = STATE(2362), + [sym_array_type] = STATE(2362), + [sym_pointer_type] = STATE(2362), + [sym_wrong_pointer_type] = STATE(2362), + [sym_map_type] = STATE(2362), + [sym_channel_type] = STATE(2362), + [sym_shared_type] = STATE(2362), + [sym_thread_type] = STATE(2362), + [sym_atomic_type] = STATE(2362), + [sym_generic_type] = STATE(2362), + [sym_function_type] = STATE(2362), + [sym_identifier] = ACTIONS(1428), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1428), - [anon_sym_LBRACE] = ACTIONS(1430), - [anon_sym_LPAREN] = ACTIONS(1432), - [anon_sym_fn] = ACTIONS(1434), - [anon_sym_PLUS] = ACTIONS(3064), - [anon_sym_DASH] = ACTIONS(3064), - [anon_sym_STAR] = ACTIONS(3066), - [anon_sym_struct] = ACTIONS(1440), + [anon_sym_DOT] = ACTIONS(1430), + [anon_sym_LBRACE] = ACTIONS(1432), + [anon_sym_LPAREN] = ACTIONS(1434), + [anon_sym_fn] = ACTIONS(1436), + [anon_sym_PLUS] = ACTIONS(1438), + [anon_sym_DASH] = ACTIONS(1438), + [anon_sym_STAR] = ACTIONS(1440), + [anon_sym_RBRACK] = ACTIONS(3196), + [anon_sym_struct] = ACTIONS(1442), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(3068), - [anon_sym_go] = ACTIONS(3070), - [anon_sym_spawn] = ACTIONS(3072), - [anon_sym_json_DOTdecode] = ACTIONS(1448), - [anon_sym_LBRACK2] = ACTIONS(1821), - [anon_sym_TILDE] = ACTIONS(3064), - [anon_sym_CARET] = ACTIONS(3064), - [anon_sym_AMP] = ACTIONS(3074), - [anon_sym_LT_DASH] = ACTIONS(3076), - [sym_none] = ACTIONS(1456), - [sym_true] = ACTIONS(1456), - [sym_false] = ACTIONS(1456), - [sym_nil] = ACTIONS(1456), - [anon_sym_if] = ACTIONS(1827), - [anon_sym_DOLLARif] = ACTIONS(1460), - [anon_sym_match] = ACTIONS(1462), - [anon_sym_select] = ACTIONS(3078), - [anon_sym_lock] = ACTIONS(3080), - [anon_sym_rlock] = ACTIONS(3080), - [anon_sym_unsafe] = ACTIONS(1833), - [anon_sym_sql] = ACTIONS(1470), - [sym_int_literal] = ACTIONS(1456), - [sym_float_literal] = ACTIONS(1472), - [sym_rune_literal] = ACTIONS(1472), - [sym_pseudo_compile_time_identifier] = ACTIONS(1474), + [anon_sym_BANG] = ACTIONS(1444), + [anon_sym_go] = ACTIONS(1446), + [anon_sym_spawn] = ACTIONS(1448), + [anon_sym_json_DOTdecode] = ACTIONS(1450), + [anon_sym_LBRACK2] = ACTIONS(1452), + [anon_sym_TILDE] = ACTIONS(1438), + [anon_sym_CARET] = ACTIONS(1438), + [anon_sym_AMP] = ACTIONS(1454), + [anon_sym_LT_DASH] = ACTIONS(1456), + [sym_none] = ACTIONS(1458), + [sym_true] = ACTIONS(1458), + [sym_false] = ACTIONS(1458), + [sym_nil] = ACTIONS(1458), + [anon_sym_if] = ACTIONS(1833), + [anon_sym_DOLLARif] = ACTIONS(1462), + [anon_sym_match] = ACTIONS(1464), + [anon_sym_select] = ACTIONS(1466), + [anon_sym_lock] = ACTIONS(1468), + [anon_sym_rlock] = ACTIONS(1468), + [anon_sym_unsafe] = ACTIONS(1839), + [anon_sym_sql] = ACTIONS(1472), + [sym_int_literal] = ACTIONS(1458), + [sym_float_literal] = ACTIONS(1474), + [sym_rune_literal] = ACTIONS(1474), + [sym_pseudo_compile_time_identifier] = ACTIONS(1476), [anon_sym_shared] = ACTIONS(83), [anon_sym_map_LBRACK] = ACTIONS(85), [anon_sym_chan] = ACTIONS(87), [anon_sym_thread] = ACTIONS(89), [anon_sym_atomic] = ACTIONS(91), - [sym___double_quote] = ACTIONS(1478), - [sym___single_quote] = ACTIONS(1480), - [sym___c_double_quote] = ACTIONS(1482), - [sym___c_single_quote] = ACTIONS(1484), - [sym___r_double_quote] = ACTIONS(1486), - [sym___r_single_quote] = ACTIONS(1488), + [sym___double_quote] = ACTIONS(1480), + [sym___single_quote] = ACTIONS(1482), + [sym___c_double_quote] = ACTIONS(1484), + [sym___c_single_quote] = ACTIONS(1486), + [sym___r_double_quote] = ACTIONS(1488), + [sym___r_single_quote] = ACTIONS(1490), }, [544] = { [sym_line_comment] = STATE(544), [sym_block_comment] = STATE(544), - [sym__expression] = STATE(2480), - [sym__expression_without_blocks] = STATE(2300), - [sym__expression_with_blocks] = STATE(2300), - [sym_inc_expression] = STATE(2307), - [sym_dec_expression] = STATE(2307), - [sym_or_block_expression] = STATE(2307), - [sym_option_propagation_expression] = STATE(2307), - [sym_result_propagation_expression] = STATE(2307), - [sym_anon_struct_value_expression] = STATE(2380), - [sym_go_expression] = STATE(2307), - [sym_spawn_expression] = STATE(2307), - [sym_parenthesized_expression] = STATE(2307), - [sym_call_expression] = STATE(2307), - [sym_type_initializer] = STATE(2380), - [sym_function_literal] = STATE(2307), - [sym_reference_expression] = STATE(2311), - [sym_type_reference_expression] = STATE(3541), - [sym_unary_expression] = STATE(2307), - [sym_receive_expression] = STATE(2307), - [sym_binary_expression] = STATE(2307), - [sym_as_type_cast_expression] = STATE(2307), - [sym__max_group] = STATE(2307), - [sym_literal] = STATE(2292), - [sym_map_init_expression] = STATE(2380), - [sym_array_creation] = STATE(2307), - [sym_fixed_array_creation] = STATE(2307), - [sym_selector_expression] = STATE(2307), - [sym_index_expression] = STATE(2307), - [sym_slice_expression] = STATE(2307), - [sym_if_expression] = STATE(2380), - [sym_compile_time_if_expression] = STATE(2380), - [sym_is_expression] = STATE(2307), - [sym_in_expression] = STATE(2307), - [sym_enum_fetch] = STATE(2307), - [sym_match_expression] = STATE(2380), - [sym_select_expression] = STATE(2380), - [sym_lock_expression] = STATE(2380), - [sym_unsafe_expression] = STATE(2380), - [sym_sql_expression] = STATE(2380), - [sym_c_string_literal] = STATE(2308), - [sym_raw_string_literal] = STATE(2308), - [sym_interpreted_string_literal] = STATE(2308), - [sym_mutability_modifiers] = STATE(663), - [sym_mutable_expression] = STATE(3266), - [sym_plain_type] = STATE(4297), - [sym__plain_type_without_special] = STATE(2302), - [sym_anon_struct_type] = STATE(2303), - [sym_multi_return_type] = STATE(2302), - [sym_result_type] = STATE(2302), - [sym_option_type] = STATE(2302), - [sym_qualified_type] = STATE(3541), - [sym_fixed_array_type] = STATE(2303), - [sym_array_type] = STATE(2303), - [sym_pointer_type] = STATE(2303), - [sym_wrong_pointer_type] = STATE(2303), - [sym_map_type] = STATE(2303), - [sym_channel_type] = STATE(2303), - [sym_shared_type] = STATE(2303), - [sym_thread_type] = STATE(2303), - [sym_atomic_type] = STATE(2303), - [sym_generic_type] = STATE(2303), - [sym_function_type] = STATE(2303), - [sym_identifier] = ACTIONS(2189), + [sym__expression] = STATE(1626), + [sym__expression_without_blocks] = STATE(1799), + [sym__expression_with_blocks] = STATE(1799), + [sym_inc_expression] = STATE(1800), + [sym_dec_expression] = STATE(1800), + [sym_or_block_expression] = STATE(1800), + [sym_option_propagation_expression] = STATE(1800), + [sym_result_propagation_expression] = STATE(1800), + [sym_anon_struct_value_expression] = STATE(1801), + [sym_go_expression] = STATE(1800), + [sym_spawn_expression] = STATE(1800), + [sym_parenthesized_expression] = STATE(1800), + [sym_call_expression] = STATE(1800), + [sym_type_initializer] = STATE(1801), + [sym_function_literal] = STATE(1800), + [sym_reference_expression] = STATE(1844), + [sym_type_reference_expression] = STATE(3460), + [sym_unary_expression] = STATE(1800), + [sym_receive_expression] = STATE(1800), + [sym_binary_expression] = STATE(1800), + [sym_as_type_cast_expression] = STATE(1800), + [sym__max_group] = STATE(1800), + [sym_literal] = STATE(1797), + [sym_map_init_expression] = STATE(1801), + [sym_array_creation] = STATE(1800), + [sym_fixed_array_creation] = STATE(1800), + [sym_selector_expression] = STATE(1800), + [sym_index_expression] = STATE(1800), + [sym_slice_expression] = STATE(1800), + [sym_if_expression] = STATE(1801), + [sym_compile_time_if_expression] = STATE(1801), + [sym_is_expression] = STATE(1800), + [sym_in_expression] = STATE(1800), + [sym_enum_fetch] = STATE(1800), + [sym_match_expression] = STATE(1801), + [sym_select_expression] = STATE(1801), + [sym_lock_expression] = STATE(1801), + [sym_unsafe_expression] = STATE(1801), + [sym_sql_expression] = STATE(1801), + [sym_c_string_literal] = STATE(1792), + [sym_raw_string_literal] = STATE(1792), + [sym_interpreted_string_literal] = STATE(1792), + [sym_mutability_modifiers] = STATE(737), + [sym_mutable_expression] = STATE(3254), + [sym_plain_type] = STATE(4300), + [sym__plain_type_without_special] = STATE(2360), + [sym_anon_struct_type] = STATE(2362), + [sym_multi_return_type] = STATE(2360), + [sym_result_type] = STATE(2360), + [sym_option_type] = STATE(2360), + [sym_qualified_type] = STATE(3460), + [sym_fixed_array_type] = STATE(2362), + [sym_array_type] = STATE(2362), + [sym_pointer_type] = STATE(2362), + [sym_wrong_pointer_type] = STATE(2362), + [sym_map_type] = STATE(2362), + [sym_channel_type] = STATE(2362), + [sym_shared_type] = STATE(2362), + [sym_thread_type] = STATE(2362), + [sym_atomic_type] = STATE(2362), + [sym_generic_type] = STATE(2362), + [sym_function_type] = STATE(2362), + [sym_identifier] = ACTIONS(3198), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1428), - [anon_sym_LBRACE] = ACTIONS(1430), - [anon_sym_LPAREN] = ACTIONS(1432), - [anon_sym_fn] = ACTIONS(1434), - [anon_sym_PLUS] = ACTIONS(2191), - [anon_sym_DASH] = ACTIONS(2191), - [anon_sym_STAR] = ACTIONS(2193), - [anon_sym_struct] = ACTIONS(1440), + [anon_sym_DOT] = ACTIONS(3200), + [anon_sym_LBRACE] = ACTIONS(3202), + [anon_sym_LPAREN] = ACTIONS(3204), + [anon_sym_fn] = ACTIONS(3206), + [anon_sym_PLUS] = ACTIONS(3208), + [anon_sym_DASH] = ACTIONS(3208), + [anon_sym_STAR] = ACTIONS(3210), + [anon_sym_struct] = ACTIONS(3212), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(2195), - [anon_sym_go] = ACTIONS(2197), - [anon_sym_spawn] = ACTIONS(2199), - [anon_sym_json_DOTdecode] = ACTIONS(1448), - [anon_sym_LBRACK2] = ACTIONS(2201), - [anon_sym_TILDE] = ACTIONS(2191), - [anon_sym_CARET] = ACTIONS(2191), - [anon_sym_AMP] = ACTIONS(2203), - [anon_sym_LT_DASH] = ACTIONS(2205), - [sym_none] = ACTIONS(1456), - [sym_true] = ACTIONS(1456), - [sym_false] = ACTIONS(1456), - [sym_nil] = ACTIONS(1456), - [anon_sym_if] = ACTIONS(1827), - [anon_sym_DOLLARif] = ACTIONS(1460), - [anon_sym_match] = ACTIONS(1462), - [anon_sym_select] = ACTIONS(2207), - [anon_sym_lock] = ACTIONS(2209), - [anon_sym_rlock] = ACTIONS(2209), - [anon_sym_unsafe] = ACTIONS(1833), - [anon_sym_sql] = ACTIONS(1470), - [sym_int_literal] = ACTIONS(1456), - [sym_float_literal] = ACTIONS(1472), - [sym_rune_literal] = ACTIONS(1472), - [sym_pseudo_compile_time_identifier] = ACTIONS(1474), + [anon_sym_BANG] = ACTIONS(3214), + [anon_sym_go] = ACTIONS(3216), + [anon_sym_spawn] = ACTIONS(3218), + [anon_sym_json_DOTdecode] = ACTIONS(3220), + [anon_sym_LBRACK2] = ACTIONS(3222), + [anon_sym_TILDE] = ACTIONS(3208), + [anon_sym_CARET] = ACTIONS(3208), + [anon_sym_AMP] = ACTIONS(3224), + [anon_sym_LT_DASH] = ACTIONS(3226), + [sym_none] = ACTIONS(3228), + [sym_true] = ACTIONS(3228), + [sym_false] = ACTIONS(3228), + [sym_nil] = ACTIONS(3228), + [anon_sym_if] = ACTIONS(3230), + [anon_sym_DOLLARif] = ACTIONS(3232), + [anon_sym_match] = ACTIONS(3234), + [anon_sym_select] = ACTIONS(3236), + [anon_sym_lock] = ACTIONS(3238), + [anon_sym_rlock] = ACTIONS(3238), + [anon_sym_unsafe] = ACTIONS(3240), + [anon_sym_sql] = ACTIONS(3242), + [sym_int_literal] = ACTIONS(3228), + [sym_float_literal] = ACTIONS(3244), + [sym_rune_literal] = ACTIONS(3244), + [sym_pseudo_compile_time_identifier] = ACTIONS(3246), [anon_sym_shared] = ACTIONS(83), [anon_sym_map_LBRACK] = ACTIONS(85), [anon_sym_chan] = ACTIONS(87), [anon_sym_thread] = ACTIONS(89), [anon_sym_atomic] = ACTIONS(91), - [sym___double_quote] = ACTIONS(1478), - [sym___single_quote] = ACTIONS(1480), - [sym___c_double_quote] = ACTIONS(1482), - [sym___c_single_quote] = ACTIONS(1484), - [sym___r_double_quote] = ACTIONS(1486), - [sym___r_single_quote] = ACTIONS(1488), + [sym___double_quote] = ACTIONS(3248), + [sym___single_quote] = ACTIONS(3250), + [sym___c_double_quote] = ACTIONS(3252), + [sym___c_single_quote] = ACTIONS(3254), + [sym___r_double_quote] = ACTIONS(3256), + [sym___r_single_quote] = ACTIONS(3258), }, [545] = { [sym_line_comment] = STATE(545), [sym_block_comment] = STATE(545), - [sym__expression] = STATE(2831), - [sym__expression_without_blocks] = STATE(2300), - [sym__expression_with_blocks] = STATE(2300), - [sym_inc_expression] = STATE(2307), - [sym_dec_expression] = STATE(2307), - [sym_or_block_expression] = STATE(2307), - [sym_option_propagation_expression] = STATE(2307), - [sym_result_propagation_expression] = STATE(2307), - [sym_anon_struct_value_expression] = STATE(2380), - [sym_go_expression] = STATE(2307), - [sym_spawn_expression] = STATE(2307), - [sym_parenthesized_expression] = STATE(2307), - [sym_call_expression] = STATE(2307), - [sym_type_initializer] = STATE(2380), - [sym_function_literal] = STATE(2307), - [sym_reference_expression] = STATE(2894), - [sym_type_reference_expression] = STATE(3541), - [sym_unary_expression] = STATE(2307), - [sym_receive_expression] = STATE(2307), - [sym_binary_expression] = STATE(2307), - [sym_as_type_cast_expression] = STATE(2307), - [sym__max_group] = STATE(2307), - [sym_literal] = STATE(2292), - [sym_map_init_expression] = STATE(2380), - [sym_array_creation] = STATE(2307), - [sym_fixed_array_creation] = STATE(2307), - [sym_selector_expression] = STATE(2891), - [sym_index_expression] = STATE(2307), - [sym_slice_expression] = STATE(2307), - [sym_if_expression] = STATE(2380), - [sym_compile_time_if_expression] = STATE(2380), - [sym_is_expression] = STATE(2307), - [sym_in_expression] = STATE(2307), - [sym_enum_fetch] = STATE(2307), - [sym_match_expression] = STATE(2380), - [sym_select_expression] = STATE(2380), - [sym_lock_expression] = STATE(2380), - [sym_unsafe_expression] = STATE(2380), - [sym_sql_expression] = STATE(2380), - [sym_c_string_literal] = STATE(2308), - [sym_raw_string_literal] = STATE(2308), - [sym_interpreted_string_literal] = STATE(2308), - [sym_mutability_modifiers] = STATE(939), - [sym_plain_type] = STATE(4297), - [sym__plain_type_without_special] = STATE(2302), - [sym_anon_struct_type] = STATE(2303), - [sym_multi_return_type] = STATE(2302), - [sym_result_type] = STATE(2302), - [sym_option_type] = STATE(2302), - [sym_qualified_type] = STATE(3541), - [sym_fixed_array_type] = STATE(2303), - [sym_array_type] = STATE(2303), - [sym_pointer_type] = STATE(2303), - [sym_wrong_pointer_type] = STATE(2303), - [sym_map_type] = STATE(2303), - [sym_channel_type] = STATE(2303), - [sym_shared_type] = STATE(2303), - [sym_thread_type] = STATE(2303), - [sym_atomic_type] = STATE(2303), - [sym_generic_type] = STATE(2303), - [sym_function_type] = STATE(2303), - [sym_identifier] = ACTIONS(1426), + [sym__expression] = STATE(2731), + [sym__expression_without_blocks] = STATE(2347), + [sym__expression_with_blocks] = STATE(2347), + [sym_inc_expression] = STATE(2379), + [sym_dec_expression] = STATE(2379), + [sym_or_block_expression] = STATE(2379), + [sym_option_propagation_expression] = STATE(2379), + [sym_result_propagation_expression] = STATE(2379), + [sym_anon_struct_value_expression] = STATE(2378), + [sym_go_expression] = STATE(2379), + [sym_spawn_expression] = STATE(2379), + [sym_parenthesized_expression] = STATE(2379), + [sym_call_expression] = STATE(2379), + [sym_type_initializer] = STATE(2378), + [sym_function_literal] = STATE(2379), + [sym_reference_expression] = STATE(2377), + [sym_type_reference_expression] = STATE(3460), + [sym_unary_expression] = STATE(2379), + [sym_receive_expression] = STATE(2379), + [sym_binary_expression] = STATE(2379), + [sym_as_type_cast_expression] = STATE(2379), + [sym__max_group] = STATE(2379), + [sym_literal] = STATE(2392), + [sym_map_init_expression] = STATE(2378), + [sym_array_creation] = STATE(2379), + [sym_fixed_array_creation] = STATE(2379), + [sym_selector_expression] = STATE(2379), + [sym_index_expression] = STATE(2379), + [sym_slice_expression] = STATE(2379), + [sym_if_expression] = STATE(2378), + [sym_compile_time_if_expression] = STATE(2378), + [sym_is_expression] = STATE(2379), + [sym_in_expression] = STATE(2379), + [sym_enum_fetch] = STATE(2379), + [sym_match_expression] = STATE(2378), + [sym_select_expression] = STATE(2378), + [sym_lock_expression] = STATE(2378), + [sym_unsafe_expression] = STATE(2378), + [sym_sql_expression] = STATE(2378), + [sym_c_string_literal] = STATE(2401), + [sym_raw_string_literal] = STATE(2401), + [sym_interpreted_string_literal] = STATE(2401), + [sym_mutability_modifiers] = STATE(906), + [sym_mutable_expression] = STATE(4494), + [sym_plain_type] = STATE(4160), + [sym__plain_type_without_special] = STATE(2360), + [sym_anon_struct_type] = STATE(2362), + [sym_multi_return_type] = STATE(2360), + [sym_result_type] = STATE(2360), + [sym_option_type] = STATE(2360), + [sym_qualified_type] = STATE(3460), + [sym_fixed_array_type] = STATE(2362), + [sym_array_type] = STATE(2362), + [sym_pointer_type] = STATE(2362), + [sym_wrong_pointer_type] = STATE(2362), + [sym_map_type] = STATE(2362), + [sym_channel_type] = STATE(2362), + [sym_shared_type] = STATE(2362), + [sym_thread_type] = STATE(2362), + [sym_atomic_type] = STATE(2362), + [sym_generic_type] = STATE(2362), + [sym_function_type] = STATE(2362), + [sym_identifier] = ACTIONS(1815), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1428), - [anon_sym_LBRACE] = ACTIONS(1430), - [anon_sym_LPAREN] = ACTIONS(1432), - [anon_sym_fn] = ACTIONS(1434), - [anon_sym_PLUS] = ACTIONS(1436), - [anon_sym_DASH] = ACTIONS(1436), - [anon_sym_STAR] = ACTIONS(1438), - [anon_sym_RBRACK] = ACTIONS(3258), - [anon_sym_struct] = ACTIONS(1440), + [anon_sym_DOT] = ACTIONS(1430), + [anon_sym_LBRACE] = ACTIONS(1432), + [anon_sym_LPAREN] = ACTIONS(1434), + [anon_sym_fn] = ACTIONS(1436), + [anon_sym_PLUS] = ACTIONS(3090), + [anon_sym_DASH] = ACTIONS(3090), + [anon_sym_STAR] = ACTIONS(3092), + [anon_sym_struct] = ACTIONS(1442), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(1442), - [anon_sym_go] = ACTIONS(1444), - [anon_sym_spawn] = ACTIONS(1446), - [anon_sym_json_DOTdecode] = ACTIONS(1448), - [anon_sym_LBRACK2] = ACTIONS(1450), - [anon_sym_TILDE] = ACTIONS(1436), - [anon_sym_CARET] = ACTIONS(1436), - [anon_sym_AMP] = ACTIONS(1452), - [anon_sym_LT_DASH] = ACTIONS(1454), - [sym_none] = ACTIONS(1456), - [sym_true] = ACTIONS(1456), - [sym_false] = ACTIONS(1456), - [sym_nil] = ACTIONS(1456), - [anon_sym_if] = ACTIONS(1827), - [anon_sym_DOLLARif] = ACTIONS(1460), - [anon_sym_match] = ACTIONS(1462), - [anon_sym_select] = ACTIONS(1464), - [anon_sym_lock] = ACTIONS(1466), - [anon_sym_rlock] = ACTIONS(1466), - [anon_sym_unsafe] = ACTIONS(1833), - [anon_sym_sql] = ACTIONS(1470), - [sym_int_literal] = ACTIONS(3260), - [sym_float_literal] = ACTIONS(1472), - [sym_rune_literal] = ACTIONS(1472), - [sym_pseudo_compile_time_identifier] = ACTIONS(1474), + [anon_sym_BANG] = ACTIONS(3094), + [anon_sym_go] = ACTIONS(3096), + [anon_sym_spawn] = ACTIONS(3098), + [anon_sym_json_DOTdecode] = ACTIONS(1450), + [anon_sym_LBRACK2] = ACTIONS(1827), + [anon_sym_TILDE] = ACTIONS(3090), + [anon_sym_CARET] = ACTIONS(3090), + [anon_sym_AMP] = ACTIONS(3100), + [anon_sym_LT_DASH] = ACTIONS(3102), + [sym_none] = ACTIONS(1458), + [sym_true] = ACTIONS(1458), + [sym_false] = ACTIONS(1458), + [sym_nil] = ACTIONS(1458), + [anon_sym_if] = ACTIONS(1833), + [anon_sym_DOLLARif] = ACTIONS(1462), + [anon_sym_match] = ACTIONS(1464), + [anon_sym_select] = ACTIONS(3104), + [anon_sym_lock] = ACTIONS(3106), + [anon_sym_rlock] = ACTIONS(3106), + [anon_sym_unsafe] = ACTIONS(1839), + [anon_sym_sql] = ACTIONS(1472), + [sym_int_literal] = ACTIONS(1458), + [sym_float_literal] = ACTIONS(1474), + [sym_rune_literal] = ACTIONS(1474), + [sym_pseudo_compile_time_identifier] = ACTIONS(1476), [anon_sym_shared] = ACTIONS(83), [anon_sym_map_LBRACK] = ACTIONS(85), [anon_sym_chan] = ACTIONS(87), [anon_sym_thread] = ACTIONS(89), [anon_sym_atomic] = ACTIONS(91), - [sym___double_quote] = ACTIONS(1478), - [sym___single_quote] = ACTIONS(1480), - [sym___c_double_quote] = ACTIONS(1482), - [sym___c_single_quote] = ACTIONS(1484), - [sym___r_double_quote] = ACTIONS(1486), - [sym___r_single_quote] = ACTIONS(1488), + [sym___double_quote] = ACTIONS(1480), + [sym___single_quote] = ACTIONS(1482), + [sym___c_double_quote] = ACTIONS(1484), + [sym___c_single_quote] = ACTIONS(1486), + [sym___r_double_quote] = ACTIONS(1488), + [sym___r_single_quote] = ACTIONS(1490), }, [546] = { [sym_line_comment] = STATE(546), [sym_block_comment] = STATE(546), - [sym__expression] = STATE(2790), - [sym__expression_without_blocks] = STATE(2300), - [sym__expression_with_blocks] = STATE(2300), - [sym_inc_expression] = STATE(2307), - [sym_dec_expression] = STATE(2307), - [sym_or_block_expression] = STATE(2307), - [sym_option_propagation_expression] = STATE(2307), - [sym_result_propagation_expression] = STATE(2307), - [sym_anon_struct_value_expression] = STATE(2380), - [sym_go_expression] = STATE(2307), - [sym_spawn_expression] = STATE(2307), - [sym_parenthesized_expression] = STATE(2307), - [sym_call_expression] = STATE(2307), - [sym_type_initializer] = STATE(2380), - [sym_function_literal] = STATE(2307), - [sym_reference_expression] = STATE(2311), - [sym_type_reference_expression] = STATE(3541), - [sym_unary_expression] = STATE(2307), - [sym_receive_expression] = STATE(2307), - [sym_binary_expression] = STATE(2307), - [sym_as_type_cast_expression] = STATE(2307), - [sym__max_group] = STATE(2307), - [sym_literal] = STATE(2292), - [sym_map_init_expression] = STATE(2380), - [sym_array_creation] = STATE(2307), - [sym_fixed_array_creation] = STATE(2307), - [sym_selector_expression] = STATE(2307), - [sym_index_expression] = STATE(2307), - [sym_slice_expression] = STATE(2307), - [sym_if_expression] = STATE(2380), - [sym_compile_time_if_expression] = STATE(2380), - [sym_is_expression] = STATE(2307), - [sym_in_expression] = STATE(2307), - [sym_enum_fetch] = STATE(2307), - [sym_match_expression] = STATE(2380), - [sym_select_expression] = STATE(2380), - [sym_lock_expression] = STATE(2380), - [sym_unsafe_expression] = STATE(2380), - [sym_sql_expression] = STATE(2380), - [sym_c_string_literal] = STATE(2308), - [sym_raw_string_literal] = STATE(2308), - [sym_interpreted_string_literal] = STATE(2308), - [sym_mutability_modifiers] = STATE(944), - [sym_mutable_expression] = STATE(4448), - [sym_plain_type] = STATE(4297), - [sym__plain_type_without_special] = STATE(2302), - [sym_anon_struct_type] = STATE(2303), - [sym_multi_return_type] = STATE(2302), - [sym_result_type] = STATE(2302), - [sym_option_type] = STATE(2302), - [sym_qualified_type] = STATE(3541), - [sym_fixed_array_type] = STATE(2303), - [sym_array_type] = STATE(2303), - [sym_pointer_type] = STATE(2303), - [sym_wrong_pointer_type] = STATE(2303), - [sym_map_type] = STATE(2303), - [sym_channel_type] = STATE(2303), - [sym_shared_type] = STATE(2303), - [sym_thread_type] = STATE(2303), - [sym_atomic_type] = STATE(2303), - [sym_generic_type] = STATE(2303), - [sym_function_type] = STATE(2303), - [sym_identifier] = ACTIONS(1807), + [sym__expression] = STATE(2830), + [sym__expression_without_blocks] = STATE(2347), + [sym__expression_with_blocks] = STATE(2347), + [sym_inc_expression] = STATE(2379), + [sym_dec_expression] = STATE(2379), + [sym_or_block_expression] = STATE(2379), + [sym_option_propagation_expression] = STATE(2379), + [sym_result_propagation_expression] = STATE(2379), + [sym_anon_struct_value_expression] = STATE(2378), + [sym_go_expression] = STATE(2379), + [sym_spawn_expression] = STATE(2379), + [sym_parenthesized_expression] = STATE(2379), + [sym_call_expression] = STATE(2379), + [sym_type_initializer] = STATE(2378), + [sym_function_literal] = STATE(2379), + [sym_reference_expression] = STATE(2948), + [sym_type_reference_expression] = STATE(3460), + [sym_unary_expression] = STATE(2379), + [sym_receive_expression] = STATE(2379), + [sym_binary_expression] = STATE(2379), + [sym_as_type_cast_expression] = STATE(2379), + [sym__max_group] = STATE(2379), + [sym_literal] = STATE(2392), + [sym_map_init_expression] = STATE(2378), + [sym_array_creation] = STATE(2379), + [sym_fixed_array_creation] = STATE(2379), + [sym_selector_expression] = STATE(2931), + [sym_index_expression] = STATE(2379), + [sym_slice_expression] = STATE(2379), + [sym_if_expression] = STATE(2378), + [sym_compile_time_if_expression] = STATE(2378), + [sym_is_expression] = STATE(2379), + [sym_in_expression] = STATE(2379), + [sym_enum_fetch] = STATE(2379), + [sym_match_expression] = STATE(2378), + [sym_select_expression] = STATE(2378), + [sym_lock_expression] = STATE(2378), + [sym_unsafe_expression] = STATE(2378), + [sym_sql_expression] = STATE(2378), + [sym_c_string_literal] = STATE(2401), + [sym_raw_string_literal] = STATE(2401), + [sym_interpreted_string_literal] = STATE(2401), + [sym_mutability_modifiers] = STATE(939), + [sym_plain_type] = STATE(4160), + [sym__plain_type_without_special] = STATE(2360), + [sym_anon_struct_type] = STATE(2362), + [sym_multi_return_type] = STATE(2360), + [sym_result_type] = STATE(2360), + [sym_option_type] = STATE(2360), + [sym_qualified_type] = STATE(3460), + [sym_fixed_array_type] = STATE(2362), + [sym_array_type] = STATE(2362), + [sym_pointer_type] = STATE(2362), + [sym_wrong_pointer_type] = STATE(2362), + [sym_map_type] = STATE(2362), + [sym_channel_type] = STATE(2362), + [sym_shared_type] = STATE(2362), + [sym_thread_type] = STATE(2362), + [sym_atomic_type] = STATE(2362), + [sym_generic_type] = STATE(2362), + [sym_function_type] = STATE(2362), + [sym_identifier] = ACTIONS(1428), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1428), - [anon_sym_LBRACE] = ACTIONS(1430), - [anon_sym_LPAREN] = ACTIONS(1432), - [anon_sym_fn] = ACTIONS(1434), - [anon_sym_PLUS] = ACTIONS(3064), - [anon_sym_DASH] = ACTIONS(3064), - [anon_sym_STAR] = ACTIONS(3066), - [anon_sym_struct] = ACTIONS(1440), + [anon_sym_DOT] = ACTIONS(1430), + [anon_sym_LBRACE] = ACTIONS(1432), + [anon_sym_LPAREN] = ACTIONS(1434), + [anon_sym_fn] = ACTIONS(1436), + [anon_sym_PLUS] = ACTIONS(1438), + [anon_sym_DASH] = ACTIONS(1438), + [anon_sym_STAR] = ACTIONS(1440), + [anon_sym_RBRACK] = ACTIONS(3260), + [anon_sym_struct] = ACTIONS(1442), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(3068), - [anon_sym_go] = ACTIONS(3070), - [anon_sym_spawn] = ACTIONS(3072), - [anon_sym_json_DOTdecode] = ACTIONS(1448), - [anon_sym_LBRACK2] = ACTIONS(1821), - [anon_sym_TILDE] = ACTIONS(3064), - [anon_sym_CARET] = ACTIONS(3064), - [anon_sym_AMP] = ACTIONS(3074), - [anon_sym_LT_DASH] = ACTIONS(3076), - [sym_none] = ACTIONS(1456), - [sym_true] = ACTIONS(1456), - [sym_false] = ACTIONS(1456), - [sym_nil] = ACTIONS(1456), - [anon_sym_if] = ACTIONS(1827), - [anon_sym_DOLLARif] = ACTIONS(1460), - [anon_sym_match] = ACTIONS(1462), - [anon_sym_select] = ACTIONS(3078), - [anon_sym_lock] = ACTIONS(3080), - [anon_sym_rlock] = ACTIONS(3080), - [anon_sym_unsafe] = ACTIONS(1833), - [anon_sym_sql] = ACTIONS(1470), - [sym_int_literal] = ACTIONS(1456), - [sym_float_literal] = ACTIONS(1472), - [sym_rune_literal] = ACTIONS(1472), - [sym_pseudo_compile_time_identifier] = ACTIONS(1474), + [anon_sym_BANG] = ACTIONS(1444), + [anon_sym_go] = ACTIONS(1446), + [anon_sym_spawn] = ACTIONS(1448), + [anon_sym_json_DOTdecode] = ACTIONS(1450), + [anon_sym_LBRACK2] = ACTIONS(1452), + [anon_sym_TILDE] = ACTIONS(1438), + [anon_sym_CARET] = ACTIONS(1438), + [anon_sym_AMP] = ACTIONS(1454), + [anon_sym_LT_DASH] = ACTIONS(1456), + [sym_none] = ACTIONS(1458), + [sym_true] = ACTIONS(1458), + [sym_false] = ACTIONS(1458), + [sym_nil] = ACTIONS(1458), + [anon_sym_if] = ACTIONS(1833), + [anon_sym_DOLLARif] = ACTIONS(1462), + [anon_sym_match] = ACTIONS(1464), + [anon_sym_select] = ACTIONS(1466), + [anon_sym_lock] = ACTIONS(1468), + [anon_sym_rlock] = ACTIONS(1468), + [anon_sym_unsafe] = ACTIONS(1839), + [anon_sym_sql] = ACTIONS(1472), + [sym_int_literal] = ACTIONS(3262), + [sym_float_literal] = ACTIONS(1474), + [sym_rune_literal] = ACTIONS(1474), + [sym_pseudo_compile_time_identifier] = ACTIONS(1476), [anon_sym_shared] = ACTIONS(83), [anon_sym_map_LBRACK] = ACTIONS(85), [anon_sym_chan] = ACTIONS(87), [anon_sym_thread] = ACTIONS(89), [anon_sym_atomic] = ACTIONS(91), - [sym___double_quote] = ACTIONS(1478), - [sym___single_quote] = ACTIONS(1480), - [sym___c_double_quote] = ACTIONS(1482), - [sym___c_single_quote] = ACTIONS(1484), - [sym___r_double_quote] = ACTIONS(1486), - [sym___r_single_quote] = ACTIONS(1488), + [sym___double_quote] = ACTIONS(1480), + [sym___single_quote] = ACTIONS(1482), + [sym___c_double_quote] = ACTIONS(1484), + [sym___c_single_quote] = ACTIONS(1486), + [sym___r_double_quote] = ACTIONS(1488), + [sym___r_single_quote] = ACTIONS(1490), }, [547] = { [sym_line_comment] = STATE(547), [sym_block_comment] = STATE(547), - [sym__expression] = STATE(1907), - [sym__expression_without_blocks] = STATE(2044), - [sym__expression_with_blocks] = STATE(2044), - [sym_inc_expression] = STATE(2045), - [sym_dec_expression] = STATE(2045), - [sym_or_block_expression] = STATE(2045), - [sym_option_propagation_expression] = STATE(2045), - [sym_result_propagation_expression] = STATE(2045), - [sym_anon_struct_value_expression] = STATE(2046), - [sym_go_expression] = STATE(2045), - [sym_spawn_expression] = STATE(2045), - [sym_parenthesized_expression] = STATE(2045), - [sym_call_expression] = STATE(2045), - [sym_type_initializer] = STATE(2046), - [sym_function_literal] = STATE(2045), - [sym_reference_expression] = STATE(1912), - [sym_type_reference_expression] = STATE(3541), - [sym_unary_expression] = STATE(2045), - [sym_receive_expression] = STATE(2045), - [sym_binary_expression] = STATE(2045), - [sym_as_type_cast_expression] = STATE(2045), - [sym__max_group] = STATE(2045), - [sym_literal] = STATE(2043), - [sym_map_init_expression] = STATE(2046), - [sym_array_creation] = STATE(2045), - [sym_fixed_array_creation] = STATE(2045), - [sym_selector_expression] = STATE(2045), - [sym_index_expression] = STATE(2045), - [sym_slice_expression] = STATE(2045), - [sym_if_expression] = STATE(2046), - [sym_compile_time_if_expression] = STATE(2046), - [sym_is_expression] = STATE(2045), - [sym_in_expression] = STATE(2045), - [sym_enum_fetch] = STATE(2045), - [sym_match_expression] = STATE(2046), - [sym_select_expression] = STATE(2046), - [sym_lock_expression] = STATE(2046), - [sym_unsafe_expression] = STATE(2046), - [sym_sql_expression] = STATE(2046), - [sym_c_string_literal] = STATE(2041), - [sym_raw_string_literal] = STATE(2041), - [sym_interpreted_string_literal] = STATE(2041), - [sym_mutability_modifiers] = STATE(702), - [sym_mutable_expression] = STATE(3266), - [sym_plain_type] = STATE(4052), - [sym__plain_type_without_special] = STATE(2302), - [sym_anon_struct_type] = STATE(2303), - [sym_multi_return_type] = STATE(2302), - [sym_result_type] = STATE(2302), - [sym_option_type] = STATE(2302), - [sym_qualified_type] = STATE(3541), - [sym_fixed_array_type] = STATE(2303), - [sym_array_type] = STATE(2303), - [sym_pointer_type] = STATE(2303), - [sym_wrong_pointer_type] = STATE(2303), - [sym_map_type] = STATE(2303), - [sym_channel_type] = STATE(2303), - [sym_shared_type] = STATE(2303), - [sym_thread_type] = STATE(2303), - [sym_atomic_type] = STATE(2303), - [sym_generic_type] = STATE(2303), - [sym_function_type] = STATE(2303), - [sym_identifier] = ACTIONS(3142), + [sym__expression] = STATE(2830), + [sym__expression_without_blocks] = STATE(2347), + [sym__expression_with_blocks] = STATE(2347), + [sym_inc_expression] = STATE(2379), + [sym_dec_expression] = STATE(2379), + [sym_or_block_expression] = STATE(2379), + [sym_option_propagation_expression] = STATE(2379), + [sym_result_propagation_expression] = STATE(2379), + [sym_anon_struct_value_expression] = STATE(2378), + [sym_go_expression] = STATE(2379), + [sym_spawn_expression] = STATE(2379), + [sym_parenthesized_expression] = STATE(2379), + [sym_call_expression] = STATE(2379), + [sym_type_initializer] = STATE(2378), + [sym_function_literal] = STATE(2379), + [sym_reference_expression] = STATE(2951), + [sym_type_reference_expression] = STATE(3460), + [sym_unary_expression] = STATE(2379), + [sym_receive_expression] = STATE(2379), + [sym_binary_expression] = STATE(2379), + [sym_as_type_cast_expression] = STATE(2379), + [sym__max_group] = STATE(2379), + [sym_literal] = STATE(2392), + [sym_map_init_expression] = STATE(2378), + [sym_array_creation] = STATE(2379), + [sym_fixed_array_creation] = STATE(2379), + [sym_selector_expression] = STATE(2906), + [sym_index_expression] = STATE(2379), + [sym_slice_expression] = STATE(2379), + [sym_if_expression] = STATE(2378), + [sym_compile_time_if_expression] = STATE(2378), + [sym_is_expression] = STATE(2379), + [sym_in_expression] = STATE(2379), + [sym_enum_fetch] = STATE(2379), + [sym_match_expression] = STATE(2378), + [sym_select_expression] = STATE(2378), + [sym_lock_expression] = STATE(2378), + [sym_unsafe_expression] = STATE(2378), + [sym_sql_expression] = STATE(2378), + [sym_c_string_literal] = STATE(2401), + [sym_raw_string_literal] = STATE(2401), + [sym_interpreted_string_literal] = STATE(2401), + [sym_mutability_modifiers] = STATE(939), + [sym_plain_type] = STATE(4160), + [sym__plain_type_without_special] = STATE(2360), + [sym_anon_struct_type] = STATE(2362), + [sym_multi_return_type] = STATE(2360), + [sym_result_type] = STATE(2360), + [sym_option_type] = STATE(2360), + [sym_qualified_type] = STATE(3460), + [sym_fixed_array_type] = STATE(2362), + [sym_array_type] = STATE(2362), + [sym_pointer_type] = STATE(2362), + [sym_wrong_pointer_type] = STATE(2362), + [sym_map_type] = STATE(2362), + [sym_channel_type] = STATE(2362), + [sym_shared_type] = STATE(2362), + [sym_thread_type] = STATE(2362), + [sym_atomic_type] = STATE(2362), + [sym_generic_type] = STATE(2362), + [sym_function_type] = STATE(2362), + [sym_identifier] = ACTIONS(1428), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(811), - [anon_sym_LBRACE] = ACTIONS(3144), - [anon_sym_LPAREN] = ACTIONS(815), - [anon_sym_fn] = ACTIONS(817), - [anon_sym_PLUS] = ACTIONS(3146), - [anon_sym_DASH] = ACTIONS(3146), - [anon_sym_STAR] = ACTIONS(3148), - [anon_sym_struct] = ACTIONS(823), + [anon_sym_DOT] = ACTIONS(1430), + [anon_sym_LBRACE] = ACTIONS(1432), + [anon_sym_LPAREN] = ACTIONS(1434), + [anon_sym_fn] = ACTIONS(1436), + [anon_sym_PLUS] = ACTIONS(1438), + [anon_sym_DASH] = ACTIONS(1438), + [anon_sym_STAR] = ACTIONS(1440), + [anon_sym_RBRACK] = ACTIONS(3264), + [anon_sym_struct] = ACTIONS(1442), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(3150), - [anon_sym_go] = ACTIONS(3152), - [anon_sym_spawn] = ACTIONS(3154), - [anon_sym_json_DOTdecode] = ACTIONS(833), - [anon_sym_LBRACK2] = ACTIONS(3156), - [anon_sym_TILDE] = ACTIONS(3146), - [anon_sym_CARET] = ACTIONS(3146), - [anon_sym_AMP] = ACTIONS(3158), - [anon_sym_LT_DASH] = ACTIONS(3160), - [sym_none] = ACTIONS(841), - [sym_true] = ACTIONS(841), - [sym_false] = ACTIONS(841), - [sym_nil] = ACTIONS(841), - [anon_sym_if] = ACTIONS(843), - [anon_sym_DOLLARif] = ACTIONS(845), - [anon_sym_match] = ACTIONS(847), - [anon_sym_select] = ACTIONS(3162), - [anon_sym_lock] = ACTIONS(3164), - [anon_sym_rlock] = ACTIONS(3164), - [anon_sym_unsafe] = ACTIONS(853), - [anon_sym_sql] = ACTIONS(855), - [sym_int_literal] = ACTIONS(841), - [sym_float_literal] = ACTIONS(857), - [sym_rune_literal] = ACTIONS(857), - [sym_pseudo_compile_time_identifier] = ACTIONS(859), + [anon_sym_BANG] = ACTIONS(1444), + [anon_sym_go] = ACTIONS(1446), + [anon_sym_spawn] = ACTIONS(1448), + [anon_sym_json_DOTdecode] = ACTIONS(1450), + [anon_sym_LBRACK2] = ACTIONS(1452), + [anon_sym_TILDE] = ACTIONS(1438), + [anon_sym_CARET] = ACTIONS(1438), + [anon_sym_AMP] = ACTIONS(1454), + [anon_sym_LT_DASH] = ACTIONS(1456), + [sym_none] = ACTIONS(1458), + [sym_true] = ACTIONS(1458), + [sym_false] = ACTIONS(1458), + [sym_nil] = ACTIONS(1458), + [anon_sym_if] = ACTIONS(1833), + [anon_sym_DOLLARif] = ACTIONS(1462), + [anon_sym_match] = ACTIONS(1464), + [anon_sym_select] = ACTIONS(1466), + [anon_sym_lock] = ACTIONS(1468), + [anon_sym_rlock] = ACTIONS(1468), + [anon_sym_unsafe] = ACTIONS(1839), + [anon_sym_sql] = ACTIONS(1472), + [sym_int_literal] = ACTIONS(3266), + [sym_float_literal] = ACTIONS(1474), + [sym_rune_literal] = ACTIONS(1474), + [sym_pseudo_compile_time_identifier] = ACTIONS(1476), [anon_sym_shared] = ACTIONS(83), [anon_sym_map_LBRACK] = ACTIONS(85), [anon_sym_chan] = ACTIONS(87), [anon_sym_thread] = ACTIONS(89), [anon_sym_atomic] = ACTIONS(91), - [sym___double_quote] = ACTIONS(861), - [sym___single_quote] = ACTIONS(863), - [sym___c_double_quote] = ACTIONS(865), - [sym___c_single_quote] = ACTIONS(867), - [sym___r_double_quote] = ACTIONS(869), - [sym___r_single_quote] = ACTIONS(871), + [sym___double_quote] = ACTIONS(1480), + [sym___single_quote] = ACTIONS(1482), + [sym___c_double_quote] = ACTIONS(1484), + [sym___c_single_quote] = ACTIONS(1486), + [sym___r_double_quote] = ACTIONS(1488), + [sym___r_single_quote] = ACTIONS(1490), }, [548] = { [sym_line_comment] = STATE(548), [sym_block_comment] = STATE(548), - [sym__expression] = STATE(2831), - [sym__expression_without_blocks] = STATE(2300), - [sym__expression_with_blocks] = STATE(2300), - [sym_inc_expression] = STATE(2307), - [sym_dec_expression] = STATE(2307), - [sym_or_block_expression] = STATE(2307), - [sym_option_propagation_expression] = STATE(2307), - [sym_result_propagation_expression] = STATE(2307), - [sym_anon_struct_value_expression] = STATE(2380), - [sym_go_expression] = STATE(2307), - [sym_spawn_expression] = STATE(2307), - [sym_parenthesized_expression] = STATE(2307), - [sym_call_expression] = STATE(2307), - [sym_type_initializer] = STATE(2380), - [sym_function_literal] = STATE(2307), - [sym_reference_expression] = STATE(2909), - [sym_type_reference_expression] = STATE(3541), - [sym_unary_expression] = STATE(2307), - [sym_receive_expression] = STATE(2307), - [sym_binary_expression] = STATE(2307), - [sym_as_type_cast_expression] = STATE(2307), - [sym__max_group] = STATE(2307), - [sym_literal] = STATE(2292), - [sym_map_init_expression] = STATE(2380), - [sym_array_creation] = STATE(2307), - [sym_fixed_array_creation] = STATE(2307), - [sym_selector_expression] = STATE(2910), - [sym_index_expression] = STATE(2307), - [sym_slice_expression] = STATE(2307), - [sym_if_expression] = STATE(2380), - [sym_compile_time_if_expression] = STATE(2380), - [sym_is_expression] = STATE(2307), - [sym_in_expression] = STATE(2307), - [sym_enum_fetch] = STATE(2307), - [sym_match_expression] = STATE(2380), - [sym_select_expression] = STATE(2380), - [sym_lock_expression] = STATE(2380), - [sym_unsafe_expression] = STATE(2380), - [sym_sql_expression] = STATE(2380), - [sym_c_string_literal] = STATE(2308), - [sym_raw_string_literal] = STATE(2308), - [sym_interpreted_string_literal] = STATE(2308), - [sym_mutability_modifiers] = STATE(939), - [sym_plain_type] = STATE(4297), - [sym__plain_type_without_special] = STATE(2302), - [sym_anon_struct_type] = STATE(2303), - [sym_multi_return_type] = STATE(2302), - [sym_result_type] = STATE(2302), - [sym_option_type] = STATE(2302), - [sym_qualified_type] = STATE(3541), - [sym_fixed_array_type] = STATE(2303), - [sym_array_type] = STATE(2303), - [sym_pointer_type] = STATE(2303), - [sym_wrong_pointer_type] = STATE(2303), - [sym_map_type] = STATE(2303), - [sym_channel_type] = STATE(2303), - [sym_shared_type] = STATE(2303), - [sym_thread_type] = STATE(2303), - [sym_atomic_type] = STATE(2303), - [sym_generic_type] = STATE(2303), - [sym_function_type] = STATE(2303), - [sym_identifier] = ACTIONS(1426), + [sym__expression] = STATE(2488), + [sym__expression_without_blocks] = STATE(2347), + [sym__expression_with_blocks] = STATE(2347), + [sym_inc_expression] = STATE(2379), + [sym_dec_expression] = STATE(2379), + [sym_or_block_expression] = STATE(2379), + [sym_option_propagation_expression] = STATE(2379), + [sym_result_propagation_expression] = STATE(2379), + [sym_anon_struct_value_expression] = STATE(2378), + [sym_go_expression] = STATE(2379), + [sym_spawn_expression] = STATE(2379), + [sym_parenthesized_expression] = STATE(2379), + [sym_call_expression] = STATE(2379), + [sym_type_initializer] = STATE(2378), + [sym_function_literal] = STATE(2379), + [sym_reference_expression] = STATE(2377), + [sym_type_reference_expression] = STATE(3460), + [sym_unary_expression] = STATE(2379), + [sym_receive_expression] = STATE(2379), + [sym_binary_expression] = STATE(2379), + [sym_as_type_cast_expression] = STATE(2379), + [sym__max_group] = STATE(2379), + [sym_literal] = STATE(2392), + [sym_map_init_expression] = STATE(2378), + [sym_array_creation] = STATE(2379), + [sym_fixed_array_creation] = STATE(2379), + [sym_selector_expression] = STATE(2379), + [sym_index_expression] = STATE(2379), + [sym_slice_expression] = STATE(2379), + [sym_if_expression] = STATE(2378), + [sym_compile_time_if_expression] = STATE(2378), + [sym_is_expression] = STATE(2379), + [sym_in_expression] = STATE(2379), + [sym_enum_fetch] = STATE(2379), + [sym_match_expression] = STATE(2378), + [sym_select_expression] = STATE(2378), + [sym_lock_expression] = STATE(2378), + [sym_unsafe_expression] = STATE(2378), + [sym_sql_expression] = STATE(2378), + [sym_c_string_literal] = STATE(2401), + [sym_raw_string_literal] = STATE(2401), + [sym_interpreted_string_literal] = STATE(2401), + [sym_mutability_modifiers] = STATE(655), + [sym_mutable_expression] = STATE(3269), + [sym_plain_type] = STATE(4160), + [sym__plain_type_without_special] = STATE(2360), + [sym_anon_struct_type] = STATE(2362), + [sym_multi_return_type] = STATE(2360), + [sym_result_type] = STATE(2360), + [sym_option_type] = STATE(2360), + [sym_qualified_type] = STATE(3460), + [sym_fixed_array_type] = STATE(2362), + [sym_array_type] = STATE(2362), + [sym_pointer_type] = STATE(2362), + [sym_wrong_pointer_type] = STATE(2362), + [sym_map_type] = STATE(2362), + [sym_channel_type] = STATE(2362), + [sym_shared_type] = STATE(2362), + [sym_thread_type] = STATE(2362), + [sym_atomic_type] = STATE(2362), + [sym_generic_type] = STATE(2362), + [sym_function_type] = STATE(2362), + [sym_identifier] = ACTIONS(2477), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1428), - [anon_sym_LBRACE] = ACTIONS(1430), - [anon_sym_LPAREN] = ACTIONS(1432), - [anon_sym_fn] = ACTIONS(1434), - [anon_sym_PLUS] = ACTIONS(1436), - [anon_sym_DASH] = ACTIONS(1436), - [anon_sym_STAR] = ACTIONS(1438), - [anon_sym_RBRACK] = ACTIONS(3262), - [anon_sym_struct] = ACTIONS(1440), + [anon_sym_DOT] = ACTIONS(1430), + [anon_sym_LBRACE] = ACTIONS(1432), + [anon_sym_LPAREN] = ACTIONS(1434), + [anon_sym_fn] = ACTIONS(1436), + [anon_sym_PLUS] = ACTIONS(2479), + [anon_sym_DASH] = ACTIONS(2479), + [anon_sym_STAR] = ACTIONS(2481), + [anon_sym_struct] = ACTIONS(1442), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(1442), - [anon_sym_go] = ACTIONS(1444), - [anon_sym_spawn] = ACTIONS(1446), - [anon_sym_json_DOTdecode] = ACTIONS(1448), - [anon_sym_LBRACK2] = ACTIONS(1450), - [anon_sym_TILDE] = ACTIONS(1436), - [anon_sym_CARET] = ACTIONS(1436), - [anon_sym_AMP] = ACTIONS(1452), - [anon_sym_LT_DASH] = ACTIONS(1454), - [sym_none] = ACTIONS(1456), - [sym_true] = ACTIONS(1456), - [sym_false] = ACTIONS(1456), - [sym_nil] = ACTIONS(1456), - [anon_sym_if] = ACTIONS(1827), - [anon_sym_DOLLARif] = ACTIONS(1460), - [anon_sym_match] = ACTIONS(1462), - [anon_sym_select] = ACTIONS(1464), - [anon_sym_lock] = ACTIONS(1466), - [anon_sym_rlock] = ACTIONS(1466), - [anon_sym_unsafe] = ACTIONS(1833), - [anon_sym_sql] = ACTIONS(1470), - [sym_int_literal] = ACTIONS(3264), - [sym_float_literal] = ACTIONS(1472), - [sym_rune_literal] = ACTIONS(1472), - [sym_pseudo_compile_time_identifier] = ACTIONS(1474), + [anon_sym_BANG] = ACTIONS(2483), + [anon_sym_go] = ACTIONS(2485), + [anon_sym_spawn] = ACTIONS(2487), + [anon_sym_json_DOTdecode] = ACTIONS(1450), + [anon_sym_LBRACK2] = ACTIONS(2489), + [anon_sym_TILDE] = ACTIONS(2479), + [anon_sym_CARET] = ACTIONS(2479), + [anon_sym_AMP] = ACTIONS(2491), + [anon_sym_LT_DASH] = ACTIONS(2493), + [sym_none] = ACTIONS(1458), + [sym_true] = ACTIONS(1458), + [sym_false] = ACTIONS(1458), + [sym_nil] = ACTIONS(1458), + [anon_sym_if] = ACTIONS(1833), + [anon_sym_DOLLARif] = ACTIONS(1462), + [anon_sym_match] = ACTIONS(1464), + [anon_sym_select] = ACTIONS(2495), + [anon_sym_lock] = ACTIONS(2497), + [anon_sym_rlock] = ACTIONS(2497), + [anon_sym_unsafe] = ACTIONS(1839), + [anon_sym_sql] = ACTIONS(1472), + [sym_int_literal] = ACTIONS(1458), + [sym_float_literal] = ACTIONS(1474), + [sym_rune_literal] = ACTIONS(1474), + [sym_pseudo_compile_time_identifier] = ACTIONS(1476), [anon_sym_shared] = ACTIONS(83), [anon_sym_map_LBRACK] = ACTIONS(85), [anon_sym_chan] = ACTIONS(87), [anon_sym_thread] = ACTIONS(89), [anon_sym_atomic] = ACTIONS(91), - [sym___double_quote] = ACTIONS(1478), - [sym___single_quote] = ACTIONS(1480), - [sym___c_double_quote] = ACTIONS(1482), - [sym___c_single_quote] = ACTIONS(1484), - [sym___r_double_quote] = ACTIONS(1486), - [sym___r_single_quote] = ACTIONS(1488), + [sym___double_quote] = ACTIONS(1480), + [sym___single_quote] = ACTIONS(1482), + [sym___c_double_quote] = ACTIONS(1484), + [sym___c_single_quote] = ACTIONS(1486), + [sym___r_double_quote] = ACTIONS(1488), + [sym___r_single_quote] = ACTIONS(1490), }, [549] = { [sym_line_comment] = STATE(549), [sym_block_comment] = STATE(549), - [sym__expression] = STATE(958), - [sym__expression_without_blocks] = STATE(1017), - [sym__expression_with_blocks] = STATE(1017), - [sym_inc_expression] = STATE(1018), - [sym_dec_expression] = STATE(1018), - [sym_or_block_expression] = STATE(1018), - [sym_option_propagation_expression] = STATE(1018), - [sym_result_propagation_expression] = STATE(1018), - [sym_anon_struct_value_expression] = STATE(993), - [sym_go_expression] = STATE(1018), - [sym_spawn_expression] = STATE(1018), - [sym_parenthesized_expression] = STATE(1018), - [sym_call_expression] = STATE(1018), - [sym_type_initializer] = STATE(993), - [sym_function_literal] = STATE(1018), - [sym_reference_expression] = STATE(1046), - [sym_type_reference_expression] = STATE(3541), - [sym_unary_expression] = STATE(1018), - [sym_receive_expression] = STATE(1018), - [sym_binary_expression] = STATE(1018), - [sym_as_type_cast_expression] = STATE(1018), - [sym__max_group] = STATE(1018), - [sym_literal] = STATE(1014), - [sym_map_init_expression] = STATE(993), - [sym_array_creation] = STATE(1018), - [sym_fixed_array_creation] = STATE(1018), - [sym_selector_expression] = STATE(1018), - [sym_index_expression] = STATE(1018), - [sym_slice_expression] = STATE(1018), - [sym_if_expression] = STATE(993), - [sym_compile_time_if_expression] = STATE(993), - [sym_is_expression] = STATE(1018), - [sym_in_expression] = STATE(1018), - [sym_enum_fetch] = STATE(1018), - [sym_match_expression] = STATE(993), - [sym_select_expression] = STATE(993), - [sym_lock_expression] = STATE(993), - [sym_unsafe_expression] = STATE(993), - [sym_sql_expression] = STATE(993), - [sym_c_string_literal] = STATE(1006), - [sym_raw_string_literal] = STATE(1006), - [sym_interpreted_string_literal] = STATE(1006), - [sym_mutability_modifiers] = STATE(872), - [sym_mutable_expression] = STATE(1464), - [sym_plain_type] = STATE(4296), - [sym__plain_type_without_special] = STATE(2302), - [sym_anon_struct_type] = STATE(2303), - [sym_multi_return_type] = STATE(2302), - [sym_result_type] = STATE(2302), - [sym_option_type] = STATE(2302), - [sym_qualified_type] = STATE(3541), - [sym_fixed_array_type] = STATE(2303), - [sym_array_type] = STATE(2303), - [sym_pointer_type] = STATE(2303), - [sym_wrong_pointer_type] = STATE(2303), - [sym_map_type] = STATE(2303), - [sym_channel_type] = STATE(2303), - [sym_shared_type] = STATE(2303), - [sym_thread_type] = STATE(2303), - [sym_atomic_type] = STATE(2303), - [sym_generic_type] = STATE(2303), - [sym_function_type] = STATE(2303), - [sym_identifier] = ACTIONS(493), + [sym__expression] = STATE(1766), + [sym__expression_without_blocks] = STATE(1953), + [sym__expression_with_blocks] = STATE(1953), + [sym_inc_expression] = STATE(1955), + [sym_dec_expression] = STATE(1955), + [sym_or_block_expression] = STATE(1955), + [sym_option_propagation_expression] = STATE(1955), + [sym_result_propagation_expression] = STATE(1955), + [sym_anon_struct_value_expression] = STATE(1958), + [sym_go_expression] = STATE(1955), + [sym_spawn_expression] = STATE(1955), + [sym_parenthesized_expression] = STATE(1955), + [sym_call_expression] = STATE(1955), + [sym_type_initializer] = STATE(1958), + [sym_function_literal] = STATE(1955), + [sym_reference_expression] = STATE(1956), + [sym_type_reference_expression] = STATE(3460), + [sym_unary_expression] = STATE(1955), + [sym_receive_expression] = STATE(1955), + [sym_binary_expression] = STATE(1955), + [sym_as_type_cast_expression] = STATE(1955), + [sym__max_group] = STATE(1955), + [sym_literal] = STATE(1943), + [sym_map_init_expression] = STATE(1958), + [sym_array_creation] = STATE(1955), + [sym_fixed_array_creation] = STATE(1955), + [sym_selector_expression] = STATE(1955), + [sym_index_expression] = STATE(1955), + [sym_slice_expression] = STATE(1955), + [sym_if_expression] = STATE(1958), + [sym_compile_time_if_expression] = STATE(1958), + [sym_is_expression] = STATE(1955), + [sym_in_expression] = STATE(1955), + [sym_enum_fetch] = STATE(1955), + [sym_match_expression] = STATE(1958), + [sym_select_expression] = STATE(1958), + [sym_lock_expression] = STATE(1958), + [sym_unsafe_expression] = STATE(1958), + [sym_sql_expression] = STATE(1958), + [sym_c_string_literal] = STATE(1942), + [sym_raw_string_literal] = STATE(1942), + [sym_interpreted_string_literal] = STATE(1942), + [sym_mutability_modifiers] = STATE(625), + [sym_mutable_expression] = STATE(3268), + [sym_plain_type] = STATE(4266), + [sym__plain_type_without_special] = STATE(2360), + [sym_anon_struct_type] = STATE(2362), + [sym_multi_return_type] = STATE(2360), + [sym_result_type] = STATE(2360), + [sym_option_type] = STATE(2360), + [sym_qualified_type] = STATE(3460), + [sym_fixed_array_type] = STATE(2362), + [sym_array_type] = STATE(2362), + [sym_pointer_type] = STATE(2362), + [sym_wrong_pointer_type] = STATE(2362), + [sym_map_type] = STATE(2362), + [sym_channel_type] = STATE(2362), + [sym_shared_type] = STATE(2362), + [sym_thread_type] = STATE(2362), + [sym_atomic_type] = STATE(2362), + [sym_generic_type] = STATE(2362), + [sym_function_type] = STATE(2362), + [sym_identifier] = ACTIONS(3158), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(501), - [anon_sym_LBRACE] = ACTIONS(2319), - [anon_sym_LPAREN] = ACTIONS(2321), - [anon_sym_fn] = ACTIONS(507), - [anon_sym_PLUS] = ACTIONS(2323), - [anon_sym_DASH] = ACTIONS(2323), - [anon_sym_STAR] = ACTIONS(2325), - [anon_sym_struct] = ACTIONS(513), + [anon_sym_DOT] = ACTIONS(705), + [anon_sym_LBRACE] = ACTIONS(3118), + [anon_sym_LPAREN] = ACTIONS(709), + [anon_sym_fn] = ACTIONS(711), + [anon_sym_PLUS] = ACTIONS(3160), + [anon_sym_DASH] = ACTIONS(3160), + [anon_sym_STAR] = ACTIONS(3162), + [anon_sym_struct] = ACTIONS(717), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(2327), - [anon_sym_go] = ACTIONS(519), - [anon_sym_spawn] = ACTIONS(521), - [anon_sym_json_DOTdecode] = ACTIONS(2329), - [anon_sym_LBRACK2] = ACTIONS(2331), - [anon_sym_TILDE] = ACTIONS(2323), - [anon_sym_CARET] = ACTIONS(2323), - [anon_sym_AMP] = ACTIONS(2333), - [anon_sym_LT_DASH] = ACTIONS(2335), - [sym_none] = ACTIONS(531), - [sym_true] = ACTIONS(531), - [sym_false] = ACTIONS(531), - [sym_nil] = ACTIONS(531), - [anon_sym_if] = ACTIONS(533), - [anon_sym_DOLLARif] = ACTIONS(535), - [anon_sym_match] = ACTIONS(537), - [anon_sym_select] = ACTIONS(539), - [anon_sym_lock] = ACTIONS(541), - [anon_sym_rlock] = ACTIONS(541), - [anon_sym_unsafe] = ACTIONS(543), - [anon_sym_sql] = ACTIONS(545), - [sym_int_literal] = ACTIONS(531), - [sym_float_literal] = ACTIONS(2337), - [sym_rune_literal] = ACTIONS(2337), - [sym_pseudo_compile_time_identifier] = ACTIONS(547), + [anon_sym_BANG] = ACTIONS(3164), + [anon_sym_go] = ACTIONS(3166), + [anon_sym_spawn] = ACTIONS(3168), + [anon_sym_json_DOTdecode] = ACTIONS(727), + [anon_sym_LBRACK2] = ACTIONS(3170), + [anon_sym_TILDE] = ACTIONS(3160), + [anon_sym_CARET] = ACTIONS(3160), + [anon_sym_AMP] = ACTIONS(3172), + [anon_sym_LT_DASH] = ACTIONS(3174), + [sym_none] = ACTIONS(735), + [sym_true] = ACTIONS(735), + [sym_false] = ACTIONS(735), + [sym_nil] = ACTIONS(735), + [anon_sym_if] = ACTIONS(737), + [anon_sym_DOLLARif] = ACTIONS(739), + [anon_sym_match] = ACTIONS(741), + [anon_sym_select] = ACTIONS(3176), + [anon_sym_lock] = ACTIONS(3178), + [anon_sym_rlock] = ACTIONS(3178), + [anon_sym_unsafe] = ACTIONS(747), + [anon_sym_sql] = ACTIONS(749), + [sym_int_literal] = ACTIONS(735), + [sym_float_literal] = ACTIONS(751), + [sym_rune_literal] = ACTIONS(751), + [sym_pseudo_compile_time_identifier] = ACTIONS(753), [anon_sym_shared] = ACTIONS(83), [anon_sym_map_LBRACK] = ACTIONS(85), [anon_sym_chan] = ACTIONS(87), [anon_sym_thread] = ACTIONS(89), [anon_sym_atomic] = ACTIONS(91), - [sym___double_quote] = ACTIONS(2339), - [sym___single_quote] = ACTIONS(2341), - [sym___c_double_quote] = ACTIONS(2343), - [sym___c_single_quote] = ACTIONS(2345), - [sym___r_double_quote] = ACTIONS(2347), - [sym___r_single_quote] = ACTIONS(2349), + [sym___double_quote] = ACTIONS(755), + [sym___single_quote] = ACTIONS(757), + [sym___c_double_quote] = ACTIONS(759), + [sym___c_single_quote] = ACTIONS(761), + [sym___r_double_quote] = ACTIONS(763), + [sym___r_single_quote] = ACTIONS(765), }, [550] = { [sym_line_comment] = STATE(550), [sym_block_comment] = STATE(550), - [sym__expression] = STATE(2423), - [sym__expression_without_blocks] = STATE(2300), - [sym__expression_with_blocks] = STATE(2300), - [sym_inc_expression] = STATE(2307), - [sym_dec_expression] = STATE(2307), - [sym_or_block_expression] = STATE(2307), - [sym_option_propagation_expression] = STATE(2307), - [sym_result_propagation_expression] = STATE(2307), - [sym_anon_struct_value_expression] = STATE(2380), - [sym_go_expression] = STATE(2307), - [sym_spawn_expression] = STATE(2307), - [sym_parenthesized_expression] = STATE(2307), - [sym_call_expression] = STATE(2307), - [sym_type_initializer] = STATE(2380), - [sym_function_literal] = STATE(2307), - [sym_reference_expression] = STATE(2311), - [sym_type_reference_expression] = STATE(3541), - [sym_unary_expression] = STATE(2307), - [sym_receive_expression] = STATE(2307), - [sym_binary_expression] = STATE(2307), - [sym_as_type_cast_expression] = STATE(2307), - [sym__max_group] = STATE(2307), - [sym_literal] = STATE(2292), - [sym_map_init_expression] = STATE(2380), - [sym_array_creation] = STATE(2307), - [sym_fixed_array_creation] = STATE(2307), - [sym_selector_expression] = STATE(2307), - [sym_index_expression] = STATE(2307), - [sym_slice_expression] = STATE(2307), - [sym_if_expression] = STATE(2380), - [sym_compile_time_if_expression] = STATE(2380), - [sym_is_expression] = STATE(2307), - [sym_in_expression] = STATE(2307), - [sym_enum_fetch] = STATE(2307), - [sym_match_expression] = STATE(2380), - [sym_select_expression] = STATE(2380), - [sym_lock_expression] = STATE(2380), - [sym_unsafe_expression] = STATE(2380), - [sym_sql_expression] = STATE(2380), - [sym_c_string_literal] = STATE(2308), - [sym_raw_string_literal] = STATE(2308), - [sym_interpreted_string_literal] = STATE(2308), + [sym__expression] = STATE(2830), + [sym__expression_without_blocks] = STATE(2347), + [sym__expression_with_blocks] = STATE(2347), + [sym_inc_expression] = STATE(2379), + [sym_dec_expression] = STATE(2379), + [sym_or_block_expression] = STATE(2379), + [sym_option_propagation_expression] = STATE(2379), + [sym_result_propagation_expression] = STATE(2379), + [sym_anon_struct_value_expression] = STATE(2378), + [sym_go_expression] = STATE(2379), + [sym_spawn_expression] = STATE(2379), + [sym_parenthesized_expression] = STATE(2379), + [sym_call_expression] = STATE(2379), + [sym_type_initializer] = STATE(2378), + [sym_function_literal] = STATE(2379), + [sym_reference_expression] = STATE(2923), + [sym_type_reference_expression] = STATE(3460), + [sym_unary_expression] = STATE(2379), + [sym_receive_expression] = STATE(2379), + [sym_binary_expression] = STATE(2379), + [sym_as_type_cast_expression] = STATE(2379), + [sym__max_group] = STATE(2379), + [sym_literal] = STATE(2392), + [sym_map_init_expression] = STATE(2378), + [sym_array_creation] = STATE(2379), + [sym_fixed_array_creation] = STATE(2379), + [sym_selector_expression] = STATE(2899), + [sym_index_expression] = STATE(2379), + [sym_slice_expression] = STATE(2379), + [sym_if_expression] = STATE(2378), + [sym_compile_time_if_expression] = STATE(2378), + [sym_is_expression] = STATE(2379), + [sym_in_expression] = STATE(2379), + [sym_enum_fetch] = STATE(2379), + [sym_match_expression] = STATE(2378), + [sym_select_expression] = STATE(2378), + [sym_lock_expression] = STATE(2378), + [sym_unsafe_expression] = STATE(2378), + [sym_sql_expression] = STATE(2378), + [sym_c_string_literal] = STATE(2401), + [sym_raw_string_literal] = STATE(2401), + [sym_interpreted_string_literal] = STATE(2401), [sym_mutability_modifiers] = STATE(939), - [sym_plain_type] = STATE(4297), - [sym__plain_type_without_special] = STATE(2302), - [sym_anon_struct_type] = STATE(2303), - [sym_multi_return_type] = STATE(2302), - [sym_result_type] = STATE(2302), - [sym_option_type] = STATE(2302), - [sym_qualified_type] = STATE(3541), - [sym_fixed_array_type] = STATE(2303), - [sym_array_type] = STATE(2303), - [sym_pointer_type] = STATE(2303), - [sym_wrong_pointer_type] = STATE(2303), - [sym_map_type] = STATE(2303), - [sym_channel_type] = STATE(2303), - [sym_shared_type] = STATE(2303), - [sym_thread_type] = STATE(2303), - [sym_atomic_type] = STATE(2303), - [sym_generic_type] = STATE(2303), - [sym_function_type] = STATE(2303), - [sym_identifier] = ACTIONS(1426), + [sym_plain_type] = STATE(4160), + [sym__plain_type_without_special] = STATE(2360), + [sym_anon_struct_type] = STATE(2362), + [sym_multi_return_type] = STATE(2360), + [sym_result_type] = STATE(2360), + [sym_option_type] = STATE(2360), + [sym_qualified_type] = STATE(3460), + [sym_fixed_array_type] = STATE(2362), + [sym_array_type] = STATE(2362), + [sym_pointer_type] = STATE(2362), + [sym_wrong_pointer_type] = STATE(2362), + [sym_map_type] = STATE(2362), + [sym_channel_type] = STATE(2362), + [sym_shared_type] = STATE(2362), + [sym_thread_type] = STATE(2362), + [sym_atomic_type] = STATE(2362), + [sym_generic_type] = STATE(2362), + [sym_function_type] = STATE(2362), + [sym_identifier] = ACTIONS(1428), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1428), - [anon_sym_LBRACE] = ACTIONS(1430), - [anon_sym_LPAREN] = ACTIONS(1432), - [anon_sym_fn] = ACTIONS(1434), - [anon_sym_PLUS] = ACTIONS(1436), - [anon_sym_DASH] = ACTIONS(1436), - [anon_sym_STAR] = ACTIONS(1438), - [anon_sym_struct] = ACTIONS(1440), + [anon_sym_DOT] = ACTIONS(1430), + [anon_sym_LBRACE] = ACTIONS(1432), + [anon_sym_LPAREN] = ACTIONS(1434), + [anon_sym_fn] = ACTIONS(1436), + [anon_sym_PLUS] = ACTIONS(1438), + [anon_sym_DASH] = ACTIONS(1438), + [anon_sym_STAR] = ACTIONS(1440), + [anon_sym_RBRACK] = ACTIONS(3268), + [anon_sym_struct] = ACTIONS(1442), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(1442), - [anon_sym_go] = ACTIONS(1444), - [anon_sym_spawn] = ACTIONS(1446), - [anon_sym_json_DOTdecode] = ACTIONS(1448), - [anon_sym_LBRACK2] = ACTIONS(1450), - [anon_sym_TILDE] = ACTIONS(1436), - [anon_sym_CARET] = ACTIONS(1436), - [anon_sym_AMP] = ACTIONS(1452), - [anon_sym_LT_DASH] = ACTIONS(1454), - [sym_none] = ACTIONS(1456), - [sym_true] = ACTIONS(1456), - [sym_false] = ACTIONS(1456), - [sym_nil] = ACTIONS(1456), - [anon_sym_if] = ACTIONS(1827), - [anon_sym_DOLLARif] = ACTIONS(1460), - [anon_sym_match] = ACTIONS(1462), - [anon_sym_select] = ACTIONS(1464), - [anon_sym_lock] = ACTIONS(1466), - [anon_sym_rlock] = ACTIONS(1466), - [anon_sym_unsafe] = ACTIONS(1833), - [anon_sym_sql] = ACTIONS(1470), - [sym_int_literal] = ACTIONS(1456), - [sym_float_literal] = ACTIONS(1472), - [sym_rune_literal] = ACTIONS(1472), - [sym_pseudo_compile_time_identifier] = ACTIONS(1474), + [anon_sym_BANG] = ACTIONS(1444), + [anon_sym_go] = ACTIONS(1446), + [anon_sym_spawn] = ACTIONS(1448), + [anon_sym_json_DOTdecode] = ACTIONS(1450), + [anon_sym_LBRACK2] = ACTIONS(1452), + [anon_sym_TILDE] = ACTIONS(1438), + [anon_sym_CARET] = ACTIONS(1438), + [anon_sym_AMP] = ACTIONS(1454), + [anon_sym_LT_DASH] = ACTIONS(1456), + [sym_none] = ACTIONS(1458), + [sym_true] = ACTIONS(1458), + [sym_false] = ACTIONS(1458), + [sym_nil] = ACTIONS(1458), + [anon_sym_if] = ACTIONS(1833), + [anon_sym_DOLLARif] = ACTIONS(1462), + [anon_sym_match] = ACTIONS(1464), + [anon_sym_select] = ACTIONS(1466), + [anon_sym_lock] = ACTIONS(1468), + [anon_sym_rlock] = ACTIONS(1468), + [anon_sym_unsafe] = ACTIONS(1839), + [anon_sym_sql] = ACTIONS(1472), + [sym_int_literal] = ACTIONS(3270), + [sym_float_literal] = ACTIONS(1474), + [sym_rune_literal] = ACTIONS(1474), + [sym_pseudo_compile_time_identifier] = ACTIONS(1476), [anon_sym_shared] = ACTIONS(83), [anon_sym_map_LBRACK] = ACTIONS(85), [anon_sym_chan] = ACTIONS(87), [anon_sym_thread] = ACTIONS(89), [anon_sym_atomic] = ACTIONS(91), - [sym___double_quote] = ACTIONS(1478), - [sym___single_quote] = ACTIONS(1480), - [sym___c_double_quote] = ACTIONS(1482), - [sym___c_single_quote] = ACTIONS(1484), - [sym___r_double_quote] = ACTIONS(1486), - [sym___r_single_quote] = ACTIONS(1488), + [sym___double_quote] = ACTIONS(1480), + [sym___single_quote] = ACTIONS(1482), + [sym___c_double_quote] = ACTIONS(1484), + [sym___c_single_quote] = ACTIONS(1486), + [sym___r_double_quote] = ACTIONS(1488), + [sym___r_single_quote] = ACTIONS(1490), }, [551] = { [sym_line_comment] = STATE(551), [sym_block_comment] = STATE(551), - [sym__expression] = STATE(961), - [sym__expression_without_blocks] = STATE(1017), - [sym__expression_with_blocks] = STATE(1017), - [sym_inc_expression] = STATE(1018), - [sym_dec_expression] = STATE(1018), - [sym_or_block_expression] = STATE(1018), - [sym_option_propagation_expression] = STATE(1018), - [sym_result_propagation_expression] = STATE(1018), - [sym_anon_struct_value_expression] = STATE(993), - [sym_go_expression] = STATE(1018), - [sym_spawn_expression] = STATE(1018), - [sym_parenthesized_expression] = STATE(1018), - [sym_call_expression] = STATE(1018), - [sym_type_initializer] = STATE(993), - [sym_function_literal] = STATE(1018), - [sym_reference_expression] = STATE(1046), - [sym_type_reference_expression] = STATE(3541), - [sym_unary_expression] = STATE(1018), - [sym_receive_expression] = STATE(1018), - [sym_binary_expression] = STATE(1018), - [sym_as_type_cast_expression] = STATE(1018), - [sym__max_group] = STATE(1018), - [sym_literal] = STATE(1014), - [sym_map_init_expression] = STATE(993), - [sym_array_creation] = STATE(1018), - [sym_fixed_array_creation] = STATE(1018), - [sym_selector_expression] = STATE(1018), - [sym_index_expression] = STATE(1018), - [sym_slice_expression] = STATE(1018), - [sym_if_expression] = STATE(993), - [sym_compile_time_if_expression] = STATE(993), - [sym_is_expression] = STATE(1018), - [sym_in_expression] = STATE(1018), - [sym_enum_fetch] = STATE(1018), - [sym_match_expression] = STATE(993), - [sym_select_expression] = STATE(993), - [sym_lock_expression] = STATE(993), - [sym_unsafe_expression] = STATE(993), - [sym_sql_expression] = STATE(993), - [sym_c_string_literal] = STATE(1006), - [sym_raw_string_literal] = STATE(1006), - [sym_interpreted_string_literal] = STATE(1006), - [sym_mutability_modifiers] = STATE(691), - [sym_plain_type] = STATE(4296), - [sym__plain_type_without_special] = STATE(2302), - [sym_anon_struct_type] = STATE(2303), - [sym_multi_return_type] = STATE(2302), - [sym_result_type] = STATE(2302), - [sym_option_type] = STATE(2302), - [sym_qualified_type] = STATE(3541), - [sym_fixed_array_type] = STATE(2303), - [sym_array_type] = STATE(2303), - [sym_pointer_type] = STATE(2303), - [sym_wrong_pointer_type] = STATE(2303), - [sym_map_type] = STATE(2303), - [sym_channel_type] = STATE(2303), - [sym_shared_type] = STATE(2303), - [sym_thread_type] = STATE(2303), - [sym_atomic_type] = STATE(2303), - [sym_generic_type] = STATE(2303), - [sym_function_type] = STATE(2303), - [sym_identifier] = ACTIONS(493), + [sym__expression] = STATE(1116), + [sym__expression_without_blocks] = STATE(1210), + [sym__expression_with_blocks] = STATE(1210), + [sym_inc_expression] = STATE(1211), + [sym_dec_expression] = STATE(1211), + [sym_or_block_expression] = STATE(1211), + [sym_option_propagation_expression] = STATE(1211), + [sym_result_propagation_expression] = STATE(1211), + [sym_anon_struct_value_expression] = STATE(1212), + [sym_go_expression] = STATE(1211), + [sym_spawn_expression] = STATE(1211), + [sym_parenthesized_expression] = STATE(1211), + [sym_call_expression] = STATE(1211), + [sym_type_initializer] = STATE(1212), + [sym_function_literal] = STATE(1211), + [sym_reference_expression] = STATE(1233), + [sym_type_reference_expression] = STATE(3460), + [sym_unary_expression] = STATE(1211), + [sym_receive_expression] = STATE(1211), + [sym_binary_expression] = STATE(1211), + [sym_as_type_cast_expression] = STATE(1211), + [sym__max_group] = STATE(1211), + [sym_literal] = STATE(1209), + [sym_map_init_expression] = STATE(1212), + [sym_array_creation] = STATE(1211), + [sym_fixed_array_creation] = STATE(1211), + [sym_selector_expression] = STATE(1211), + [sym_index_expression] = STATE(1211), + [sym_slice_expression] = STATE(1211), + [sym_if_expression] = STATE(1212), + [sym_compile_time_if_expression] = STATE(1212), + [sym_is_expression] = STATE(1211), + [sym_in_expression] = STATE(1211), + [sym_enum_fetch] = STATE(1211), + [sym_match_expression] = STATE(1212), + [sym_select_expression] = STATE(1212), + [sym_lock_expression] = STATE(1212), + [sym_unsafe_expression] = STATE(1212), + [sym_sql_expression] = STATE(1212), + [sym_c_string_literal] = STATE(1201), + [sym_raw_string_literal] = STATE(1201), + [sym_interpreted_string_literal] = STATE(1201), + [sym_mutability_modifiers] = STATE(589), + [sym_plain_type] = STATE(4123), + [sym__plain_type_without_special] = STATE(2360), + [sym_anon_struct_type] = STATE(2362), + [sym_multi_return_type] = STATE(2360), + [sym_result_type] = STATE(2360), + [sym_option_type] = STATE(2360), + [sym_qualified_type] = STATE(3460), + [sym_fixed_array_type] = STATE(2362), + [sym_array_type] = STATE(2362), + [sym_pointer_type] = STATE(2362), + [sym_wrong_pointer_type] = STATE(2362), + [sym_map_type] = STATE(2362), + [sym_channel_type] = STATE(2362), + [sym_shared_type] = STATE(2362), + [sym_thread_type] = STATE(2362), + [sym_atomic_type] = STATE(2362), + [sym_generic_type] = STATE(2362), + [sym_function_type] = STATE(2362), + [sym_identifier] = ACTIONS(1139), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(501), - [anon_sym_LBRACE] = ACTIONS(2319), - [anon_sym_LPAREN] = ACTIONS(2321), - [anon_sym_fn] = ACTIONS(507), - [anon_sym_PLUS] = ACTIONS(2323), - [anon_sym_DASH] = ACTIONS(2323), - [anon_sym_STAR] = ACTIONS(2325), - [anon_sym_struct] = ACTIONS(513), + [anon_sym_DOT] = ACTIONS(631), + [anon_sym_LBRACE] = ACTIONS(633), + [anon_sym_LPAREN] = ACTIONS(637), + [anon_sym_fn] = ACTIONS(641), + [anon_sym_PLUS] = ACTIONS(643), + [anon_sym_DASH] = ACTIONS(643), + [anon_sym_STAR] = ACTIONS(645), + [anon_sym_struct] = ACTIONS(649), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(2327), - [anon_sym_go] = ACTIONS(519), - [anon_sym_spawn] = ACTIONS(521), - [anon_sym_json_DOTdecode] = ACTIONS(2329), - [anon_sym_LBRACK2] = ACTIONS(2331), - [anon_sym_TILDE] = ACTIONS(2323), - [anon_sym_CARET] = ACTIONS(2323), - [anon_sym_AMP] = ACTIONS(2333), - [anon_sym_LT_DASH] = ACTIONS(2335), - [sym_none] = ACTIONS(531), - [sym_true] = ACTIONS(531), - [sym_false] = ACTIONS(531), - [sym_nil] = ACTIONS(531), - [anon_sym_if] = ACTIONS(533), - [anon_sym_DOLLARif] = ACTIONS(535), - [anon_sym_match] = ACTIONS(537), - [anon_sym_select] = ACTIONS(539), - [anon_sym_lock] = ACTIONS(541), - [anon_sym_rlock] = ACTIONS(541), - [anon_sym_unsafe] = ACTIONS(543), - [anon_sym_sql] = ACTIONS(545), - [sym_int_literal] = ACTIONS(531), - [sym_float_literal] = ACTIONS(2337), - [sym_rune_literal] = ACTIONS(2337), - [sym_pseudo_compile_time_identifier] = ACTIONS(547), + [anon_sym_BANG] = ACTIONS(655), + [anon_sym_go] = ACTIONS(657), + [anon_sym_spawn] = ACTIONS(659), + [anon_sym_json_DOTdecode] = ACTIONS(661), + [anon_sym_LBRACK2] = ACTIONS(663), + [anon_sym_TILDE] = ACTIONS(643), + [anon_sym_CARET] = ACTIONS(643), + [anon_sym_AMP] = ACTIONS(665), + [anon_sym_LT_DASH] = ACTIONS(667), + [sym_none] = ACTIONS(669), + [sym_true] = ACTIONS(669), + [sym_false] = ACTIONS(669), + [sym_nil] = ACTIONS(669), + [anon_sym_if] = ACTIONS(671), + [anon_sym_DOLLARif] = ACTIONS(673), + [anon_sym_match] = ACTIONS(675), + [anon_sym_select] = ACTIONS(677), + [anon_sym_lock] = ACTIONS(679), + [anon_sym_rlock] = ACTIONS(679), + [anon_sym_unsafe] = ACTIONS(681), + [anon_sym_sql] = ACTIONS(683), + [sym_int_literal] = ACTIONS(669), + [sym_float_literal] = ACTIONS(685), + [sym_rune_literal] = ACTIONS(685), + [sym_pseudo_compile_time_identifier] = ACTIONS(687), [anon_sym_shared] = ACTIONS(83), [anon_sym_map_LBRACK] = ACTIONS(85), [anon_sym_chan] = ACTIONS(87), [anon_sym_thread] = ACTIONS(89), [anon_sym_atomic] = ACTIONS(91), - [sym___double_quote] = ACTIONS(2339), - [sym___single_quote] = ACTIONS(2341), - [sym___c_double_quote] = ACTIONS(2343), - [sym___c_single_quote] = ACTIONS(2345), - [sym___r_double_quote] = ACTIONS(2347), - [sym___r_single_quote] = ACTIONS(2349), + [sym___double_quote] = ACTIONS(689), + [sym___single_quote] = ACTIONS(691), + [sym___c_double_quote] = ACTIONS(693), + [sym___c_single_quote] = ACTIONS(695), + [sym___r_double_quote] = ACTIONS(697), + [sym___r_single_quote] = ACTIONS(699), }, [552] = { [sym_line_comment] = STATE(552), [sym_block_comment] = STATE(552), - [sym__expression] = STATE(1761), - [sym__expression_without_blocks] = STATE(2005), - [sym__expression_with_blocks] = STATE(2005), - [sym_inc_expression] = STATE(2032), - [sym_dec_expression] = STATE(2032), - [sym_or_block_expression] = STATE(2032), - [sym_option_propagation_expression] = STATE(2032), - [sym_result_propagation_expression] = STATE(2032), - [sym_anon_struct_value_expression] = STATE(2004), - [sym_go_expression] = STATE(2032), - [sym_spawn_expression] = STATE(2032), - [sym_parenthesized_expression] = STATE(2032), - [sym_call_expression] = STATE(2032), - [sym_type_initializer] = STATE(2004), - [sym_function_literal] = STATE(2032), - [sym_reference_expression] = STATE(1914), - [sym_type_reference_expression] = STATE(3541), - [sym_unary_expression] = STATE(2032), - [sym_receive_expression] = STATE(2032), - [sym_binary_expression] = STATE(2032), - [sym_as_type_cast_expression] = STATE(2032), - [sym__max_group] = STATE(2032), - [sym_literal] = STATE(2027), - [sym_map_init_expression] = STATE(2004), - [sym_array_creation] = STATE(2032), - [sym_fixed_array_creation] = STATE(2032), - [sym_selector_expression] = STATE(2032), - [sym_index_expression] = STATE(2032), - [sym_slice_expression] = STATE(2032), - [sym_if_expression] = STATE(2004), - [sym_compile_time_if_expression] = STATE(2004), - [sym_is_expression] = STATE(2032), - [sym_in_expression] = STATE(2032), - [sym_enum_fetch] = STATE(2032), - [sym_match_expression] = STATE(2004), - [sym_select_expression] = STATE(2004), - [sym_lock_expression] = STATE(2004), - [sym_unsafe_expression] = STATE(2004), - [sym_sql_expression] = STATE(2004), - [sym_c_string_literal] = STATE(2026), - [sym_raw_string_literal] = STATE(2026), - [sym_interpreted_string_literal] = STATE(2026), - [sym_mutability_modifiers] = STATE(562), - [sym_plain_type] = STATE(4191), - [sym__plain_type_without_special] = STATE(2302), - [sym_anon_struct_type] = STATE(2303), - [sym_multi_return_type] = STATE(2302), - [sym_result_type] = STATE(2302), - [sym_option_type] = STATE(2302), - [sym_qualified_type] = STATE(3541), - [sym_fixed_array_type] = STATE(2303), - [sym_array_type] = STATE(2303), - [sym_pointer_type] = STATE(2303), - [sym_wrong_pointer_type] = STATE(2303), - [sym_map_type] = STATE(2303), - [sym_channel_type] = STATE(2303), - [sym_shared_type] = STATE(2303), - [sym_thread_type] = STATE(2303), - [sym_atomic_type] = STATE(2303), - [sym_generic_type] = STATE(2303), - [sym_function_type] = STATE(2303), - [sym_identifier] = ACTIONS(3266), + [sym__expression] = STATE(2500), + [sym__expression_without_blocks] = STATE(2638), + [sym__expression_with_blocks] = STATE(2638), + [sym_inc_expression] = STATE(2765), + [sym_dec_expression] = STATE(2765), + [sym_or_block_expression] = STATE(2765), + [sym_option_propagation_expression] = STATE(2765), + [sym_result_propagation_expression] = STATE(2765), + [sym_anon_struct_value_expression] = STATE(2637), + [sym_go_expression] = STATE(2765), + [sym_spawn_expression] = STATE(2765), + [sym_parenthesized_expression] = STATE(2765), + [sym_call_expression] = STATE(2765), + [sym_type_initializer] = STATE(2637), + [sym_function_literal] = STATE(2765), + [sym_reference_expression] = STATE(2764), + [sym_type_reference_expression] = STATE(3460), + [sym_unary_expression] = STATE(2765), + [sym_receive_expression] = STATE(2765), + [sym_binary_expression] = STATE(2765), + [sym_as_type_cast_expression] = STATE(2765), + [sym__max_group] = STATE(2765), + [sym_literal] = STATE(2771), + [sym_map_init_expression] = STATE(2637), + [sym_array_creation] = STATE(2765), + [sym_fixed_array_creation] = STATE(2765), + [sym_selector_expression] = STATE(2765), + [sym_index_expression] = STATE(2765), + [sym_slice_expression] = STATE(2765), + [sym_if_expression] = STATE(2637), + [sym_compile_time_if_expression] = STATE(2637), + [sym_is_expression] = STATE(2765), + [sym_in_expression] = STATE(2765), + [sym_enum_fetch] = STATE(2765), + [sym_match_expression] = STATE(2637), + [sym_select_expression] = STATE(2637), + [sym_lock_expression] = STATE(2637), + [sym_unsafe_expression] = STATE(2637), + [sym_sql_expression] = STATE(2637), + [sym_c_string_literal] = STATE(2762), + [sym_raw_string_literal] = STATE(2762), + [sym_interpreted_string_literal] = STATE(2762), + [sym_mutability_modifiers] = STATE(822), + [sym_plain_type] = STATE(4011), + [sym__plain_type_without_special] = STATE(2360), + [sym_anon_struct_type] = STATE(2362), + [sym_multi_return_type] = STATE(2360), + [sym_result_type] = STATE(2360), + [sym_option_type] = STATE(2360), + [sym_qualified_type] = STATE(3460), + [sym_fixed_array_type] = STATE(2362), + [sym_array_type] = STATE(2362), + [sym_pointer_type] = STATE(2362), + [sym_wrong_pointer_type] = STATE(2362), + [sym_map_type] = STATE(2362), + [sym_channel_type] = STATE(2362), + [sym_shared_type] = STATE(2362), + [sym_thread_type] = STATE(2362), + [sym_atomic_type] = STATE(2362), + [sym_generic_type] = STATE(2362), + [sym_function_type] = STATE(2362), + [sym_identifier] = ACTIONS(1815), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(703), - [anon_sym_LBRACE] = ACTIONS(3268), - [anon_sym_LPAREN] = ACTIONS(709), - [anon_sym_fn] = ACTIONS(711), - [anon_sym_PLUS] = ACTIONS(713), - [anon_sym_DASH] = ACTIONS(713), - [anon_sym_STAR] = ACTIONS(715), - [anon_sym_struct] = ACTIONS(3270), + [anon_sym_DOT] = ACTIONS(1073), + [anon_sym_LBRACE] = ACTIONS(1075), + [anon_sym_LPAREN] = ACTIONS(1079), + [anon_sym_fn] = ACTIONS(1081), + [anon_sym_PLUS] = ACTIONS(3070), + [anon_sym_DASH] = ACTIONS(3070), + [anon_sym_STAR] = ACTIONS(3072), + [anon_sym_struct] = ACTIONS(1087), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(719), - [anon_sym_go] = ACTIONS(721), - [anon_sym_spawn] = ACTIONS(723), - [anon_sym_json_DOTdecode] = ACTIONS(725), - [anon_sym_LBRACK2] = ACTIONS(727), - [anon_sym_TILDE] = ACTIONS(713), - [anon_sym_CARET] = ACTIONS(713), - [anon_sym_AMP] = ACTIONS(729), - [anon_sym_LT_DASH] = ACTIONS(731), - [sym_none] = ACTIONS(733), - [sym_true] = ACTIONS(733), - [sym_false] = ACTIONS(733), - [sym_nil] = ACTIONS(733), - [anon_sym_if] = ACTIONS(3272), - [anon_sym_DOLLARif] = ACTIONS(3274), - [anon_sym_match] = ACTIONS(3276), - [anon_sym_select] = ACTIONS(3278), - [anon_sym_lock] = ACTIONS(3280), - [anon_sym_rlock] = ACTIONS(3280), - [anon_sym_unsafe] = ACTIONS(3282), - [anon_sym_sql] = ACTIONS(3284), - [sym_int_literal] = ACTIONS(733), - [sym_float_literal] = ACTIONS(751), - [sym_rune_literal] = ACTIONS(751), - [sym_pseudo_compile_time_identifier] = ACTIONS(753), + [anon_sym_BANG] = ACTIONS(3074), + [anon_sym_go] = ACTIONS(3076), + [anon_sym_spawn] = ACTIONS(3078), + [anon_sym_json_DOTdecode] = ACTIONS(1095), + [anon_sym_LBRACK2] = ACTIONS(1097), + [anon_sym_TILDE] = ACTIONS(3070), + [anon_sym_CARET] = ACTIONS(3070), + [anon_sym_AMP] = ACTIONS(3080), + [anon_sym_LT_DASH] = ACTIONS(3082), + [sym_none] = ACTIONS(1103), + [sym_true] = ACTIONS(1103), + [sym_false] = ACTIONS(1103), + [sym_nil] = ACTIONS(1103), + [anon_sym_if] = ACTIONS(1105), + [anon_sym_DOLLARif] = ACTIONS(1109), + [anon_sym_match] = ACTIONS(1111), + [anon_sym_select] = ACTIONS(3084), + [anon_sym_lock] = ACTIONS(3086), + [anon_sym_rlock] = ACTIONS(3086), + [anon_sym_unsafe] = ACTIONS(1117), + [anon_sym_sql] = ACTIONS(1119), + [sym_int_literal] = ACTIONS(1103), + [sym_float_literal] = ACTIONS(1121), + [sym_rune_literal] = ACTIONS(1121), + [sym_pseudo_compile_time_identifier] = ACTIONS(1123), [anon_sym_shared] = ACTIONS(83), [anon_sym_map_LBRACK] = ACTIONS(85), [anon_sym_chan] = ACTIONS(87), [anon_sym_thread] = ACTIONS(89), [anon_sym_atomic] = ACTIONS(91), - [sym___double_quote] = ACTIONS(755), - [sym___single_quote] = ACTIONS(757), - [sym___c_double_quote] = ACTIONS(759), - [sym___c_single_quote] = ACTIONS(761), - [sym___r_double_quote] = ACTIONS(763), - [sym___r_single_quote] = ACTIONS(765), + [sym___double_quote] = ACTIONS(1125), + [sym___single_quote] = ACTIONS(1127), + [sym___c_double_quote] = ACTIONS(1129), + [sym___c_single_quote] = ACTIONS(1131), + [sym___r_double_quote] = ACTIONS(1133), + [sym___r_single_quote] = ACTIONS(1135), }, [553] = { [sym_line_comment] = STATE(553), [sym_block_comment] = STATE(553), - [sym__expression] = STATE(1762), - [sym__expression_without_blocks] = STATE(2005), - [sym__expression_with_blocks] = STATE(2005), - [sym_inc_expression] = STATE(2032), - [sym_dec_expression] = STATE(2032), - [sym_or_block_expression] = STATE(2032), - [sym_option_propagation_expression] = STATE(2032), - [sym_result_propagation_expression] = STATE(2032), - [sym_anon_struct_value_expression] = STATE(2004), - [sym_go_expression] = STATE(2032), - [sym_spawn_expression] = STATE(2032), - [sym_parenthesized_expression] = STATE(2032), - [sym_call_expression] = STATE(2032), - [sym_type_initializer] = STATE(2004), - [sym_function_literal] = STATE(2032), - [sym_reference_expression] = STATE(1914), - [sym_type_reference_expression] = STATE(3541), - [sym_unary_expression] = STATE(2032), - [sym_receive_expression] = STATE(2032), - [sym_binary_expression] = STATE(2032), - [sym_as_type_cast_expression] = STATE(2032), - [sym__max_group] = STATE(2032), - [sym_literal] = STATE(2027), - [sym_map_init_expression] = STATE(2004), - [sym_array_creation] = STATE(2032), - [sym_fixed_array_creation] = STATE(2032), - [sym_selector_expression] = STATE(2032), - [sym_index_expression] = STATE(2032), - [sym_slice_expression] = STATE(2032), - [sym_if_expression] = STATE(2004), - [sym_compile_time_if_expression] = STATE(2004), - [sym_is_expression] = STATE(2032), - [sym_in_expression] = STATE(2032), - [sym_enum_fetch] = STATE(2032), - [sym_match_expression] = STATE(2004), - [sym_select_expression] = STATE(2004), - [sym_lock_expression] = STATE(2004), - [sym_unsafe_expression] = STATE(2004), - [sym_sql_expression] = STATE(2004), - [sym_c_string_literal] = STATE(2026), - [sym_raw_string_literal] = STATE(2026), - [sym_interpreted_string_literal] = STATE(2026), - [sym_mutability_modifiers] = STATE(562), - [sym_plain_type] = STATE(4191), - [sym__plain_type_without_special] = STATE(2302), - [sym_anon_struct_type] = STATE(2303), - [sym_multi_return_type] = STATE(2302), - [sym_result_type] = STATE(2302), - [sym_option_type] = STATE(2302), - [sym_qualified_type] = STATE(3541), - [sym_fixed_array_type] = STATE(2303), - [sym_array_type] = STATE(2303), - [sym_pointer_type] = STATE(2303), - [sym_wrong_pointer_type] = STATE(2303), - [sym_map_type] = STATE(2303), - [sym_channel_type] = STATE(2303), - [sym_shared_type] = STATE(2303), - [sym_thread_type] = STATE(2303), - [sym_atomic_type] = STATE(2303), - [sym_generic_type] = STATE(2303), - [sym_function_type] = STATE(2303), - [sym_identifier] = ACTIONS(3266), + [sym__expression] = STATE(2832), + [sym__expression_without_blocks] = STATE(2347), + [sym__expression_with_blocks] = STATE(2347), + [sym_inc_expression] = STATE(2379), + [sym_dec_expression] = STATE(2379), + [sym_or_block_expression] = STATE(2379), + [sym_option_propagation_expression] = STATE(2379), + [sym_result_propagation_expression] = STATE(2379), + [sym_anon_struct_value_expression] = STATE(2378), + [sym_go_expression] = STATE(2379), + [sym_spawn_expression] = STATE(2379), + [sym_parenthesized_expression] = STATE(2379), + [sym_call_expression] = STATE(2379), + [sym_type_initializer] = STATE(2378), + [sym_function_literal] = STATE(2379), + [sym_reference_expression] = STATE(2377), + [sym_type_reference_expression] = STATE(3460), + [sym_unary_expression] = STATE(2379), + [sym_receive_expression] = STATE(2379), + [sym_binary_expression] = STATE(2379), + [sym_as_type_cast_expression] = STATE(2379), + [sym__max_group] = STATE(2379), + [sym_literal] = STATE(2392), + [sym_map_init_expression] = STATE(2378), + [sym_array_creation] = STATE(2379), + [sym_fixed_array_creation] = STATE(2379), + [sym_selector_expression] = STATE(2379), + [sym_index_expression] = STATE(2379), + [sym_slice_expression] = STATE(2379), + [sym_if_expression] = STATE(2378), + [sym_compile_time_if_expression] = STATE(2378), + [sym_is_expression] = STATE(2379), + [sym_in_expression] = STATE(2379), + [sym_enum_fetch] = STATE(2379), + [sym_match_expression] = STATE(2378), + [sym_select_expression] = STATE(2378), + [sym_lock_expression] = STATE(2378), + [sym_unsafe_expression] = STATE(2378), + [sym_sql_expression] = STATE(2378), + [sym_c_string_literal] = STATE(2401), + [sym_raw_string_literal] = STATE(2401), + [sym_interpreted_string_literal] = STATE(2401), + [sym_mutability_modifiers] = STATE(939), + [sym_plain_type] = STATE(4160), + [sym__plain_type_without_special] = STATE(2360), + [sym_anon_struct_type] = STATE(2362), + [sym_multi_return_type] = STATE(2360), + [sym_result_type] = STATE(2360), + [sym_option_type] = STATE(2360), + [sym_qualified_type] = STATE(3460), + [sym_fixed_array_type] = STATE(2362), + [sym_array_type] = STATE(2362), + [sym_pointer_type] = STATE(2362), + [sym_wrong_pointer_type] = STATE(2362), + [sym_map_type] = STATE(2362), + [sym_channel_type] = STATE(2362), + [sym_shared_type] = STATE(2362), + [sym_thread_type] = STATE(2362), + [sym_atomic_type] = STATE(2362), + [sym_generic_type] = STATE(2362), + [sym_function_type] = STATE(2362), + [sym_identifier] = ACTIONS(1428), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(703), - [anon_sym_LBRACE] = ACTIONS(3268), - [anon_sym_LPAREN] = ACTIONS(709), - [anon_sym_fn] = ACTIONS(711), - [anon_sym_PLUS] = ACTIONS(713), - [anon_sym_DASH] = ACTIONS(713), - [anon_sym_STAR] = ACTIONS(715), - [anon_sym_struct] = ACTIONS(3270), + [anon_sym_DOT] = ACTIONS(1430), + [anon_sym_LBRACE] = ACTIONS(1432), + [anon_sym_LPAREN] = ACTIONS(1434), + [anon_sym_fn] = ACTIONS(1436), + [anon_sym_PLUS] = ACTIONS(1438), + [anon_sym_DASH] = ACTIONS(1438), + [anon_sym_STAR] = ACTIONS(1440), + [anon_sym_struct] = ACTIONS(1442), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(719), - [anon_sym_go] = ACTIONS(721), - [anon_sym_spawn] = ACTIONS(723), - [anon_sym_json_DOTdecode] = ACTIONS(725), - [anon_sym_LBRACK2] = ACTIONS(727), - [anon_sym_TILDE] = ACTIONS(713), - [anon_sym_CARET] = ACTIONS(713), - [anon_sym_AMP] = ACTIONS(729), - [anon_sym_LT_DASH] = ACTIONS(731), - [sym_none] = ACTIONS(733), - [sym_true] = ACTIONS(733), - [sym_false] = ACTIONS(733), - [sym_nil] = ACTIONS(733), - [anon_sym_if] = ACTIONS(3272), - [anon_sym_DOLLARif] = ACTIONS(3274), - [anon_sym_match] = ACTIONS(3276), - [anon_sym_select] = ACTIONS(3278), - [anon_sym_lock] = ACTIONS(3280), - [anon_sym_rlock] = ACTIONS(3280), - [anon_sym_unsafe] = ACTIONS(3282), - [anon_sym_sql] = ACTIONS(3284), - [sym_int_literal] = ACTIONS(733), - [sym_float_literal] = ACTIONS(751), - [sym_rune_literal] = ACTIONS(751), - [sym_pseudo_compile_time_identifier] = ACTIONS(753), + [anon_sym_BANG] = ACTIONS(1444), + [anon_sym_go] = ACTIONS(1446), + [anon_sym_spawn] = ACTIONS(1448), + [anon_sym_json_DOTdecode] = ACTIONS(1450), + [anon_sym_LBRACK2] = ACTIONS(1452), + [anon_sym_TILDE] = ACTIONS(1438), + [anon_sym_CARET] = ACTIONS(1438), + [anon_sym_AMP] = ACTIONS(1454), + [anon_sym_LT_DASH] = ACTIONS(1456), + [sym_none] = ACTIONS(1458), + [sym_true] = ACTIONS(1458), + [sym_false] = ACTIONS(1458), + [sym_nil] = ACTIONS(1458), + [anon_sym_if] = ACTIONS(1833), + [anon_sym_DOLLARif] = ACTIONS(1462), + [anon_sym_match] = ACTIONS(1464), + [anon_sym_select] = ACTIONS(1466), + [anon_sym_lock] = ACTIONS(1468), + [anon_sym_rlock] = ACTIONS(1468), + [anon_sym_unsafe] = ACTIONS(1839), + [anon_sym_sql] = ACTIONS(1472), + [sym_int_literal] = ACTIONS(1458), + [sym_float_literal] = ACTIONS(1474), + [sym_rune_literal] = ACTIONS(1474), + [sym_pseudo_compile_time_identifier] = ACTIONS(1476), [anon_sym_shared] = ACTIONS(83), [anon_sym_map_LBRACK] = ACTIONS(85), [anon_sym_chan] = ACTIONS(87), [anon_sym_thread] = ACTIONS(89), [anon_sym_atomic] = ACTIONS(91), - [sym___double_quote] = ACTIONS(755), - [sym___single_quote] = ACTIONS(757), - [sym___c_double_quote] = ACTIONS(759), - [sym___c_single_quote] = ACTIONS(761), - [sym___r_double_quote] = ACTIONS(763), - [sym___r_single_quote] = ACTIONS(765), + [sym___double_quote] = ACTIONS(1480), + [sym___single_quote] = ACTIONS(1482), + [sym___c_double_quote] = ACTIONS(1484), + [sym___c_single_quote] = ACTIONS(1486), + [sym___r_double_quote] = ACTIONS(1488), + [sym___r_single_quote] = ACTIONS(1490), }, [554] = { [sym_line_comment] = STATE(554), [sym_block_comment] = STATE(554), - [sym__expression] = STATE(2263), - [sym__expression_without_blocks] = STATE(2300), - [sym__expression_with_blocks] = STATE(2300), - [sym_inc_expression] = STATE(2307), - [sym_dec_expression] = STATE(2307), - [sym_or_block_expression] = STATE(2307), - [sym_option_propagation_expression] = STATE(2307), - [sym_result_propagation_expression] = STATE(2307), - [sym_anon_struct_value_expression] = STATE(2380), - [sym_go_expression] = STATE(2307), - [sym_spawn_expression] = STATE(2307), - [sym_parenthesized_expression] = STATE(2307), - [sym_call_expression] = STATE(2307), - [sym_type_initializer] = STATE(2380), - [sym_function_literal] = STATE(2307), - [sym_reference_expression] = STATE(2311), - [sym_type_reference_expression] = STATE(3541), - [sym_unary_expression] = STATE(2307), - [sym_receive_expression] = STATE(2307), - [sym_binary_expression] = STATE(2307), - [sym_as_type_cast_expression] = STATE(2307), - [sym__max_group] = STATE(2307), - [sym_literal] = STATE(2292), - [sym_map_init_expression] = STATE(2380), - [sym_array_creation] = STATE(2307), - [sym_fixed_array_creation] = STATE(2307), - [sym_selector_expression] = STATE(2307), - [sym_index_expression] = STATE(2307), - [sym_slice_expression] = STATE(2307), - [sym_if_expression] = STATE(2380), - [sym_compile_time_if_expression] = STATE(2380), - [sym_is_expression] = STATE(2307), - [sym_in_expression] = STATE(2307), - [sym_enum_fetch] = STATE(2307), - [sym_match_expression] = STATE(2380), - [sym_select_expression] = STATE(2380), - [sym_lock_expression] = STATE(2380), - [sym_unsafe_expression] = STATE(2380), - [sym_sql_expression] = STATE(2380), - [sym_c_string_literal] = STATE(2308), - [sym_raw_string_literal] = STATE(2308), - [sym_interpreted_string_literal] = STATE(2308), - [sym_mutability_modifiers] = STATE(632), - [sym_plain_type] = STATE(3565), - [sym__plain_type_without_special] = STATE(2302), - [sym_anon_struct_type] = STATE(2303), - [sym_multi_return_type] = STATE(2302), - [sym_result_type] = STATE(2302), - [sym_option_type] = STATE(2302), - [sym_qualified_type] = STATE(3541), - [sym_fixed_array_type] = STATE(2303), - [sym_array_type] = STATE(2303), - [sym_pointer_type] = STATE(2303), - [sym_wrong_pointer_type] = STATE(2303), - [sym_map_type] = STATE(2303), - [sym_channel_type] = STATE(2303), - [sym_shared_type] = STATE(2303), - [sym_thread_type] = STATE(2303), - [sym_atomic_type] = STATE(2303), - [sym_generic_type] = STATE(2303), - [sym_function_type] = STATE(2303), - [sym_identifier] = ACTIONS(2189), + [sym__expression] = STATE(1753), + [sym__expression_without_blocks] = STATE(1915), + [sym__expression_with_blocks] = STATE(1915), + [sym_inc_expression] = STATE(2035), + [sym_dec_expression] = STATE(2035), + [sym_or_block_expression] = STATE(2035), + [sym_option_propagation_expression] = STATE(2035), + [sym_result_propagation_expression] = STATE(2035), + [sym_anon_struct_value_expression] = STATE(1939), + [sym_go_expression] = STATE(2035), + [sym_spawn_expression] = STATE(2035), + [sym_parenthesized_expression] = STATE(2035), + [sym_call_expression] = STATE(2035), + [sym_type_initializer] = STATE(1939), + [sym_function_literal] = STATE(2035), + [sym_reference_expression] = STATE(1944), + [sym_type_reference_expression] = STATE(3460), + [sym_unary_expression] = STATE(2035), + [sym_receive_expression] = STATE(2035), + [sym_binary_expression] = STATE(2035), + [sym_as_type_cast_expression] = STATE(2035), + [sym__max_group] = STATE(2035), + [sym_literal] = STATE(2030), + [sym_map_init_expression] = STATE(1939), + [sym_array_creation] = STATE(2035), + [sym_fixed_array_creation] = STATE(2035), + [sym_selector_expression] = STATE(2035), + [sym_index_expression] = STATE(2035), + [sym_slice_expression] = STATE(2035), + [sym_if_expression] = STATE(1939), + [sym_compile_time_if_expression] = STATE(1939), + [sym_is_expression] = STATE(2035), + [sym_in_expression] = STATE(2035), + [sym_enum_fetch] = STATE(2035), + [sym_match_expression] = STATE(1939), + [sym_select_expression] = STATE(1939), + [sym_lock_expression] = STATE(1939), + [sym_unsafe_expression] = STATE(1939), + [sym_sql_expression] = STATE(1939), + [sym_c_string_literal] = STATE(2029), + [sym_raw_string_literal] = STATE(2029), + [sym_interpreted_string_literal] = STATE(2029), + [sym_mutability_modifiers] = STATE(555), + [sym_plain_type] = STATE(4014), + [sym__plain_type_without_special] = STATE(2360), + [sym_anon_struct_type] = STATE(2362), + [sym_multi_return_type] = STATE(2360), + [sym_result_type] = STATE(2360), + [sym_option_type] = STATE(2360), + [sym_qualified_type] = STATE(3460), + [sym_fixed_array_type] = STATE(2362), + [sym_array_type] = STATE(2362), + [sym_pointer_type] = STATE(2362), + [sym_wrong_pointer_type] = STATE(2362), + [sym_map_type] = STATE(2362), + [sym_channel_type] = STATE(2362), + [sym_shared_type] = STATE(2362), + [sym_thread_type] = STATE(2362), + [sym_atomic_type] = STATE(2362), + [sym_generic_type] = STATE(2362), + [sym_function_type] = STATE(2362), + [sym_identifier] = ACTIONS(3272), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1428), - [anon_sym_LBRACE] = ACTIONS(1430), - [anon_sym_LPAREN] = ACTIONS(1432), - [anon_sym_fn] = ACTIONS(1434), - [anon_sym_PLUS] = ACTIONS(2191), - [anon_sym_DASH] = ACTIONS(2191), - [anon_sym_STAR] = ACTIONS(2193), - [anon_sym_struct] = ACTIONS(1440), + [anon_sym_DOT] = ACTIONS(769), + [anon_sym_LBRACE] = ACTIONS(3274), + [anon_sym_LPAREN] = ACTIONS(775), + [anon_sym_fn] = ACTIONS(777), + [anon_sym_PLUS] = ACTIONS(779), + [anon_sym_DASH] = ACTIONS(779), + [anon_sym_STAR] = ACTIONS(781), + [anon_sym_struct] = ACTIONS(3276), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(2195), - [anon_sym_go] = ACTIONS(2197), - [anon_sym_spawn] = ACTIONS(2199), - [anon_sym_json_DOTdecode] = ACTIONS(1448), - [anon_sym_LBRACK2] = ACTIONS(2201), - [anon_sym_TILDE] = ACTIONS(2191), - [anon_sym_CARET] = ACTIONS(2191), - [anon_sym_AMP] = ACTIONS(2203), - [anon_sym_LT_DASH] = ACTIONS(2205), - [sym_none] = ACTIONS(1456), - [sym_true] = ACTIONS(1456), - [sym_false] = ACTIONS(1456), - [sym_nil] = ACTIONS(1456), - [anon_sym_if] = ACTIONS(1827), - [anon_sym_DOLLARif] = ACTIONS(1460), - [anon_sym_match] = ACTIONS(1462), - [anon_sym_select] = ACTIONS(2207), - [anon_sym_lock] = ACTIONS(2209), - [anon_sym_rlock] = ACTIONS(2209), - [anon_sym_unsafe] = ACTIONS(1833), - [anon_sym_sql] = ACTIONS(1470), - [sym_int_literal] = ACTIONS(1456), - [sym_float_literal] = ACTIONS(1472), - [sym_rune_literal] = ACTIONS(1472), - [sym_pseudo_compile_time_identifier] = ACTIONS(1474), + [anon_sym_BANG] = ACTIONS(785), + [anon_sym_go] = ACTIONS(787), + [anon_sym_spawn] = ACTIONS(789), + [anon_sym_json_DOTdecode] = ACTIONS(791), + [anon_sym_LBRACK2] = ACTIONS(793), + [anon_sym_TILDE] = ACTIONS(779), + [anon_sym_CARET] = ACTIONS(779), + [anon_sym_AMP] = ACTIONS(795), + [anon_sym_LT_DASH] = ACTIONS(797), + [sym_none] = ACTIONS(799), + [sym_true] = ACTIONS(799), + [sym_false] = ACTIONS(799), + [sym_nil] = ACTIONS(799), + [anon_sym_if] = ACTIONS(3278), + [anon_sym_DOLLARif] = ACTIONS(3280), + [anon_sym_match] = ACTIONS(3282), + [anon_sym_select] = ACTIONS(3284), + [anon_sym_lock] = ACTIONS(3286), + [anon_sym_rlock] = ACTIONS(3286), + [anon_sym_unsafe] = ACTIONS(3288), + [anon_sym_sql] = ACTIONS(3290), + [sym_int_literal] = ACTIONS(799), + [sym_float_literal] = ACTIONS(817), + [sym_rune_literal] = ACTIONS(817), + [sym_pseudo_compile_time_identifier] = ACTIONS(819), [anon_sym_shared] = ACTIONS(83), [anon_sym_map_LBRACK] = ACTIONS(85), [anon_sym_chan] = ACTIONS(87), [anon_sym_thread] = ACTIONS(89), [anon_sym_atomic] = ACTIONS(91), - [sym___double_quote] = ACTIONS(1478), - [sym___single_quote] = ACTIONS(1480), - [sym___c_double_quote] = ACTIONS(1482), - [sym___c_single_quote] = ACTIONS(1484), - [sym___r_double_quote] = ACTIONS(1486), - [sym___r_single_quote] = ACTIONS(1488), + [sym___double_quote] = ACTIONS(821), + [sym___single_quote] = ACTIONS(823), + [sym___c_double_quote] = ACTIONS(825), + [sym___c_single_quote] = ACTIONS(827), + [sym___r_double_quote] = ACTIONS(829), + [sym___r_single_quote] = ACTIONS(831), }, [555] = { [sym_line_comment] = STATE(555), [sym_block_comment] = STATE(555), - [sym__expression] = STATE(2263), - [sym__expression_without_blocks] = STATE(2300), - [sym__expression_with_blocks] = STATE(2300), - [sym_inc_expression] = STATE(2307), - [sym_dec_expression] = STATE(2307), - [sym_or_block_expression] = STATE(2307), - [sym_option_propagation_expression] = STATE(2307), - [sym_result_propagation_expression] = STATE(2307), - [sym_anon_struct_value_expression] = STATE(2380), - [sym_go_expression] = STATE(2307), - [sym_spawn_expression] = STATE(2307), - [sym_parenthesized_expression] = STATE(2307), - [sym_call_expression] = STATE(2307), - [sym_type_initializer] = STATE(2380), - [sym_function_literal] = STATE(2307), - [sym_reference_expression] = STATE(2311), - [sym_type_reference_expression] = STATE(3541), - [sym_unary_expression] = STATE(2307), - [sym_receive_expression] = STATE(2307), - [sym_binary_expression] = STATE(2307), - [sym_as_type_cast_expression] = STATE(2307), - [sym__max_group] = STATE(2307), - [sym_literal] = STATE(2292), - [sym_map_init_expression] = STATE(2380), - [sym_array_creation] = STATE(2307), - [sym_fixed_array_creation] = STATE(2307), - [sym_selector_expression] = STATE(2307), - [sym_index_expression] = STATE(2307), - [sym_slice_expression] = STATE(2307), - [sym_if_expression] = STATE(2380), - [sym_compile_time_if_expression] = STATE(2380), - [sym_is_expression] = STATE(2307), - [sym_in_expression] = STATE(2307), - [sym_enum_fetch] = STATE(2307), - [sym_match_expression] = STATE(2380), - [sym_select_expression] = STATE(2380), - [sym_lock_expression] = STATE(2380), - [sym_unsafe_expression] = STATE(2380), - [sym_sql_expression] = STATE(2380), - [sym_c_string_literal] = STATE(2308), - [sym_raw_string_literal] = STATE(2308), - [sym_interpreted_string_literal] = STATE(2308), - [sym_mutability_modifiers] = STATE(632), - [sym_plain_type] = STATE(3560), - [sym__plain_type_without_special] = STATE(2302), - [sym_anon_struct_type] = STATE(2303), - [sym_multi_return_type] = STATE(2302), - [sym_result_type] = STATE(2302), - [sym_option_type] = STATE(2302), - [sym_qualified_type] = STATE(3541), - [sym_fixed_array_type] = STATE(2303), - [sym_array_type] = STATE(2303), - [sym_pointer_type] = STATE(2303), - [sym_wrong_pointer_type] = STATE(2303), - [sym_map_type] = STATE(2303), - [sym_channel_type] = STATE(2303), - [sym_shared_type] = STATE(2303), - [sym_thread_type] = STATE(2303), - [sym_atomic_type] = STATE(2303), - [sym_generic_type] = STATE(2303), - [sym_function_type] = STATE(2303), - [sym_identifier] = ACTIONS(2189), + [sym__expression] = STATE(2827), + [sym__expression_without_blocks] = STATE(2347), + [sym__expression_with_blocks] = STATE(2347), + [sym_inc_expression] = STATE(2379), + [sym_dec_expression] = STATE(2379), + [sym_or_block_expression] = STATE(2379), + [sym_option_propagation_expression] = STATE(2379), + [sym_result_propagation_expression] = STATE(2379), + [sym_anon_struct_value_expression] = STATE(2378), + [sym_go_expression] = STATE(2379), + [sym_spawn_expression] = STATE(2379), + [sym_parenthesized_expression] = STATE(2379), + [sym_call_expression] = STATE(2379), + [sym_type_initializer] = STATE(2378), + [sym_function_literal] = STATE(2379), + [sym_reference_expression] = STATE(2377), + [sym_type_reference_expression] = STATE(3460), + [sym_unary_expression] = STATE(2379), + [sym_receive_expression] = STATE(2379), + [sym_binary_expression] = STATE(2379), + [sym_as_type_cast_expression] = STATE(2379), + [sym__max_group] = STATE(2379), + [sym_literal] = STATE(2392), + [sym_map_init_expression] = STATE(2378), + [sym_array_creation] = STATE(2379), + [sym_fixed_array_creation] = STATE(2379), + [sym_selector_expression] = STATE(2379), + [sym_index_expression] = STATE(2379), + [sym_slice_expression] = STATE(2379), + [sym_if_expression] = STATE(2378), + [sym_compile_time_if_expression] = STATE(2378), + [sym_is_expression] = STATE(2379), + [sym_in_expression] = STATE(2379), + [sym_enum_fetch] = STATE(2379), + [sym_match_expression] = STATE(2378), + [sym_select_expression] = STATE(2378), + [sym_lock_expression] = STATE(2378), + [sym_unsafe_expression] = STATE(2378), + [sym_sql_expression] = STATE(2378), + [sym_c_string_literal] = STATE(2401), + [sym_raw_string_literal] = STATE(2401), + [sym_interpreted_string_literal] = STATE(2401), + [sym_mutability_modifiers] = STATE(939), + [sym_plain_type] = STATE(4160), + [sym__plain_type_without_special] = STATE(2360), + [sym_anon_struct_type] = STATE(2362), + [sym_multi_return_type] = STATE(2360), + [sym_result_type] = STATE(2360), + [sym_option_type] = STATE(2360), + [sym_qualified_type] = STATE(3460), + [sym_fixed_array_type] = STATE(2362), + [sym_array_type] = STATE(2362), + [sym_pointer_type] = STATE(2362), + [sym_wrong_pointer_type] = STATE(2362), + [sym_map_type] = STATE(2362), + [sym_channel_type] = STATE(2362), + [sym_shared_type] = STATE(2362), + [sym_thread_type] = STATE(2362), + [sym_atomic_type] = STATE(2362), + [sym_generic_type] = STATE(2362), + [sym_function_type] = STATE(2362), + [sym_identifier] = ACTIONS(1428), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1428), - [anon_sym_LBRACE] = ACTIONS(1430), - [anon_sym_LPAREN] = ACTIONS(1432), - [anon_sym_fn] = ACTIONS(1434), - [anon_sym_PLUS] = ACTIONS(2191), - [anon_sym_DASH] = ACTIONS(2191), - [anon_sym_STAR] = ACTIONS(2193), - [anon_sym_struct] = ACTIONS(1440), + [anon_sym_DOT] = ACTIONS(1430), + [anon_sym_LBRACE] = ACTIONS(1432), + [anon_sym_LPAREN] = ACTIONS(1434), + [anon_sym_fn] = ACTIONS(1436), + [anon_sym_PLUS] = ACTIONS(1438), + [anon_sym_DASH] = ACTIONS(1438), + [anon_sym_STAR] = ACTIONS(1440), + [anon_sym_struct] = ACTIONS(1442), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(2195), - [anon_sym_go] = ACTIONS(2197), - [anon_sym_spawn] = ACTIONS(2199), - [anon_sym_json_DOTdecode] = ACTIONS(1448), - [anon_sym_LBRACK2] = ACTIONS(2201), - [anon_sym_TILDE] = ACTIONS(2191), - [anon_sym_CARET] = ACTIONS(2191), - [anon_sym_AMP] = ACTIONS(2203), - [anon_sym_LT_DASH] = ACTIONS(2205), - [sym_none] = ACTIONS(1456), - [sym_true] = ACTIONS(1456), - [sym_false] = ACTIONS(1456), - [sym_nil] = ACTIONS(1456), - [anon_sym_if] = ACTIONS(1827), - [anon_sym_DOLLARif] = ACTIONS(1460), - [anon_sym_match] = ACTIONS(1462), - [anon_sym_select] = ACTIONS(2207), - [anon_sym_lock] = ACTIONS(2209), - [anon_sym_rlock] = ACTIONS(2209), - [anon_sym_unsafe] = ACTIONS(1833), - [anon_sym_sql] = ACTIONS(1470), - [sym_int_literal] = ACTIONS(1456), - [sym_float_literal] = ACTIONS(1472), - [sym_rune_literal] = ACTIONS(1472), - [sym_pseudo_compile_time_identifier] = ACTIONS(1474), + [anon_sym_BANG] = ACTIONS(1444), + [anon_sym_go] = ACTIONS(1446), + [anon_sym_spawn] = ACTIONS(1448), + [anon_sym_json_DOTdecode] = ACTIONS(1450), + [anon_sym_LBRACK2] = ACTIONS(1452), + [anon_sym_TILDE] = ACTIONS(1438), + [anon_sym_CARET] = ACTIONS(1438), + [anon_sym_AMP] = ACTIONS(1454), + [anon_sym_LT_DASH] = ACTIONS(1456), + [sym_none] = ACTIONS(1458), + [sym_true] = ACTIONS(1458), + [sym_false] = ACTIONS(1458), + [sym_nil] = ACTIONS(1458), + [anon_sym_if] = ACTIONS(1833), + [anon_sym_DOLLARif] = ACTIONS(1462), + [anon_sym_match] = ACTIONS(1464), + [anon_sym_select] = ACTIONS(1466), + [anon_sym_lock] = ACTIONS(1468), + [anon_sym_rlock] = ACTIONS(1468), + [anon_sym_unsafe] = ACTIONS(1839), + [anon_sym_sql] = ACTIONS(1472), + [sym_int_literal] = ACTIONS(1458), + [sym_float_literal] = ACTIONS(1474), + [sym_rune_literal] = ACTIONS(1474), + [sym_pseudo_compile_time_identifier] = ACTIONS(1476), [anon_sym_shared] = ACTIONS(83), [anon_sym_map_LBRACK] = ACTIONS(85), [anon_sym_chan] = ACTIONS(87), [anon_sym_thread] = ACTIONS(89), [anon_sym_atomic] = ACTIONS(91), - [sym___double_quote] = ACTIONS(1478), - [sym___single_quote] = ACTIONS(1480), - [sym___c_double_quote] = ACTIONS(1482), - [sym___c_single_quote] = ACTIONS(1484), - [sym___r_double_quote] = ACTIONS(1486), - [sym___r_single_quote] = ACTIONS(1488), + [sym___double_quote] = ACTIONS(1480), + [sym___single_quote] = ACTIONS(1482), + [sym___c_double_quote] = ACTIONS(1484), + [sym___c_single_quote] = ACTIONS(1486), + [sym___r_double_quote] = ACTIONS(1488), + [sym___r_single_quote] = ACTIONS(1490), }, [556] = { [sym_line_comment] = STATE(556), [sym_block_comment] = STATE(556), - [sym__expression] = STATE(1766), - [sym__expression_without_blocks] = STATE(2005), - [sym__expression_with_blocks] = STATE(2005), - [sym_inc_expression] = STATE(2032), - [sym_dec_expression] = STATE(2032), - [sym_or_block_expression] = STATE(2032), - [sym_option_propagation_expression] = STATE(2032), - [sym_result_propagation_expression] = STATE(2032), - [sym_anon_struct_value_expression] = STATE(2004), - [sym_go_expression] = STATE(2032), - [sym_spawn_expression] = STATE(2032), - [sym_parenthesized_expression] = STATE(2032), - [sym_call_expression] = STATE(2032), - [sym_type_initializer] = STATE(2004), - [sym_function_literal] = STATE(2032), - [sym_reference_expression] = STATE(1914), - [sym_type_reference_expression] = STATE(3541), - [sym_unary_expression] = STATE(2032), - [sym_receive_expression] = STATE(2032), - [sym_binary_expression] = STATE(2032), - [sym_as_type_cast_expression] = STATE(2032), - [sym__max_group] = STATE(2032), - [sym_literal] = STATE(2027), - [sym_map_init_expression] = STATE(2004), - [sym_array_creation] = STATE(2032), - [sym_fixed_array_creation] = STATE(2032), - [sym_selector_expression] = STATE(2032), - [sym_index_expression] = STATE(2032), - [sym_slice_expression] = STATE(2032), - [sym_if_expression] = STATE(2004), - [sym_compile_time_if_expression] = STATE(2004), - [sym_is_expression] = STATE(2032), - [sym_in_expression] = STATE(2032), - [sym_enum_fetch] = STATE(2032), - [sym_match_expression] = STATE(2004), - [sym_select_expression] = STATE(2004), - [sym_lock_expression] = STATE(2004), - [sym_unsafe_expression] = STATE(2004), - [sym_sql_expression] = STATE(2004), - [sym_c_string_literal] = STATE(2026), - [sym_raw_string_literal] = STATE(2026), - [sym_interpreted_string_literal] = STATE(2026), - [sym_mutability_modifiers] = STATE(562), - [sym_plain_type] = STATE(4191), - [sym__plain_type_without_special] = STATE(2302), - [sym_anon_struct_type] = STATE(2303), - [sym_multi_return_type] = STATE(2302), - [sym_result_type] = STATE(2302), - [sym_option_type] = STATE(2302), - [sym_qualified_type] = STATE(3541), - [sym_fixed_array_type] = STATE(2303), - [sym_array_type] = STATE(2303), - [sym_pointer_type] = STATE(2303), - [sym_wrong_pointer_type] = STATE(2303), - [sym_map_type] = STATE(2303), - [sym_channel_type] = STATE(2303), - [sym_shared_type] = STATE(2303), - [sym_thread_type] = STATE(2303), - [sym_atomic_type] = STATE(2303), - [sym_generic_type] = STATE(2303), - [sym_function_type] = STATE(2303), - [sym_identifier] = ACTIONS(3266), + [sym__expression] = STATE(1754), + [sym__expression_without_blocks] = STATE(1915), + [sym__expression_with_blocks] = STATE(1915), + [sym_inc_expression] = STATE(2035), + [sym_dec_expression] = STATE(2035), + [sym_or_block_expression] = STATE(2035), + [sym_option_propagation_expression] = STATE(2035), + [sym_result_propagation_expression] = STATE(2035), + [sym_anon_struct_value_expression] = STATE(1939), + [sym_go_expression] = STATE(2035), + [sym_spawn_expression] = STATE(2035), + [sym_parenthesized_expression] = STATE(2035), + [sym_call_expression] = STATE(2035), + [sym_type_initializer] = STATE(1939), + [sym_function_literal] = STATE(2035), + [sym_reference_expression] = STATE(1944), + [sym_type_reference_expression] = STATE(3460), + [sym_unary_expression] = STATE(2035), + [sym_receive_expression] = STATE(2035), + [sym_binary_expression] = STATE(2035), + [sym_as_type_cast_expression] = STATE(2035), + [sym__max_group] = STATE(2035), + [sym_literal] = STATE(2030), + [sym_map_init_expression] = STATE(1939), + [sym_array_creation] = STATE(2035), + [sym_fixed_array_creation] = STATE(2035), + [sym_selector_expression] = STATE(2035), + [sym_index_expression] = STATE(2035), + [sym_slice_expression] = STATE(2035), + [sym_if_expression] = STATE(1939), + [sym_compile_time_if_expression] = STATE(1939), + [sym_is_expression] = STATE(2035), + [sym_in_expression] = STATE(2035), + [sym_enum_fetch] = STATE(2035), + [sym_match_expression] = STATE(1939), + [sym_select_expression] = STATE(1939), + [sym_lock_expression] = STATE(1939), + [sym_unsafe_expression] = STATE(1939), + [sym_sql_expression] = STATE(1939), + [sym_c_string_literal] = STATE(2029), + [sym_raw_string_literal] = STATE(2029), + [sym_interpreted_string_literal] = STATE(2029), + [sym_mutability_modifiers] = STATE(555), + [sym_plain_type] = STATE(4014), + [sym__plain_type_without_special] = STATE(2360), + [sym_anon_struct_type] = STATE(2362), + [sym_multi_return_type] = STATE(2360), + [sym_result_type] = STATE(2360), + [sym_option_type] = STATE(2360), + [sym_qualified_type] = STATE(3460), + [sym_fixed_array_type] = STATE(2362), + [sym_array_type] = STATE(2362), + [sym_pointer_type] = STATE(2362), + [sym_wrong_pointer_type] = STATE(2362), + [sym_map_type] = STATE(2362), + [sym_channel_type] = STATE(2362), + [sym_shared_type] = STATE(2362), + [sym_thread_type] = STATE(2362), + [sym_atomic_type] = STATE(2362), + [sym_generic_type] = STATE(2362), + [sym_function_type] = STATE(2362), + [sym_identifier] = ACTIONS(3272), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(703), - [anon_sym_LBRACE] = ACTIONS(3268), - [anon_sym_LPAREN] = ACTIONS(709), - [anon_sym_fn] = ACTIONS(711), - [anon_sym_PLUS] = ACTIONS(713), - [anon_sym_DASH] = ACTIONS(713), - [anon_sym_STAR] = ACTIONS(715), - [anon_sym_struct] = ACTIONS(3270), + [anon_sym_DOT] = ACTIONS(769), + [anon_sym_LBRACE] = ACTIONS(3274), + [anon_sym_LPAREN] = ACTIONS(775), + [anon_sym_fn] = ACTIONS(777), + [anon_sym_PLUS] = ACTIONS(779), + [anon_sym_DASH] = ACTIONS(779), + [anon_sym_STAR] = ACTIONS(781), + [anon_sym_struct] = ACTIONS(3276), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(719), - [anon_sym_go] = ACTIONS(721), - [anon_sym_spawn] = ACTIONS(723), - [anon_sym_json_DOTdecode] = ACTIONS(725), - [anon_sym_LBRACK2] = ACTIONS(727), - [anon_sym_TILDE] = ACTIONS(713), - [anon_sym_CARET] = ACTIONS(713), - [anon_sym_AMP] = ACTIONS(729), - [anon_sym_LT_DASH] = ACTIONS(731), - [sym_none] = ACTIONS(733), - [sym_true] = ACTIONS(733), - [sym_false] = ACTIONS(733), - [sym_nil] = ACTIONS(733), - [anon_sym_if] = ACTIONS(3272), - [anon_sym_DOLLARif] = ACTIONS(3274), - [anon_sym_match] = ACTIONS(3276), - [anon_sym_select] = ACTIONS(3278), - [anon_sym_lock] = ACTIONS(3280), - [anon_sym_rlock] = ACTIONS(3280), - [anon_sym_unsafe] = ACTIONS(3282), - [anon_sym_sql] = ACTIONS(3284), - [sym_int_literal] = ACTIONS(733), - [sym_float_literal] = ACTIONS(751), - [sym_rune_literal] = ACTIONS(751), - [sym_pseudo_compile_time_identifier] = ACTIONS(753), + [anon_sym_BANG] = ACTIONS(785), + [anon_sym_go] = ACTIONS(787), + [anon_sym_spawn] = ACTIONS(789), + [anon_sym_json_DOTdecode] = ACTIONS(791), + [anon_sym_LBRACK2] = ACTIONS(793), + [anon_sym_TILDE] = ACTIONS(779), + [anon_sym_CARET] = ACTIONS(779), + [anon_sym_AMP] = ACTIONS(795), + [anon_sym_LT_DASH] = ACTIONS(797), + [sym_none] = ACTIONS(799), + [sym_true] = ACTIONS(799), + [sym_false] = ACTIONS(799), + [sym_nil] = ACTIONS(799), + [anon_sym_if] = ACTIONS(3278), + [anon_sym_DOLLARif] = ACTIONS(3280), + [anon_sym_match] = ACTIONS(3282), + [anon_sym_select] = ACTIONS(3284), + [anon_sym_lock] = ACTIONS(3286), + [anon_sym_rlock] = ACTIONS(3286), + [anon_sym_unsafe] = ACTIONS(3288), + [anon_sym_sql] = ACTIONS(3290), + [sym_int_literal] = ACTIONS(799), + [sym_float_literal] = ACTIONS(817), + [sym_rune_literal] = ACTIONS(817), + [sym_pseudo_compile_time_identifier] = ACTIONS(819), [anon_sym_shared] = ACTIONS(83), [anon_sym_map_LBRACK] = ACTIONS(85), [anon_sym_chan] = ACTIONS(87), [anon_sym_thread] = ACTIONS(89), [anon_sym_atomic] = ACTIONS(91), - [sym___double_quote] = ACTIONS(755), - [sym___single_quote] = ACTIONS(757), - [sym___c_double_quote] = ACTIONS(759), - [sym___c_single_quote] = ACTIONS(761), - [sym___r_double_quote] = ACTIONS(763), - [sym___r_single_quote] = ACTIONS(765), + [sym___double_quote] = ACTIONS(821), + [sym___single_quote] = ACTIONS(823), + [sym___c_double_quote] = ACTIONS(825), + [sym___c_single_quote] = ACTIONS(827), + [sym___r_double_quote] = ACTIONS(829), + [sym___r_single_quote] = ACTIONS(831), }, [557] = { [sym_line_comment] = STATE(557), [sym_block_comment] = STATE(557), - [sym__expression] = STATE(1659), - [sym__expression_without_blocks] = STATE(1891), - [sym__expression_with_blocks] = STATE(1891), - [sym_inc_expression] = STATE(1893), - [sym_dec_expression] = STATE(1893), - [sym_or_block_expression] = STATE(1893), - [sym_option_propagation_expression] = STATE(1893), - [sym_result_propagation_expression] = STATE(1893), - [sym_anon_struct_value_expression] = STATE(1895), - [sym_go_expression] = STATE(1893), - [sym_spawn_expression] = STATE(1893), - [sym_parenthesized_expression] = STATE(1893), - [sym_call_expression] = STATE(1893), - [sym_type_initializer] = STATE(1895), - [sym_function_literal] = STATE(1893), - [sym_reference_expression] = STATE(1782), - [sym_type_reference_expression] = STATE(3541), - [sym_unary_expression] = STATE(1893), - [sym_receive_expression] = STATE(1893), - [sym_binary_expression] = STATE(1893), - [sym_as_type_cast_expression] = STATE(1893), - [sym__max_group] = STATE(1893), - [sym_literal] = STATE(1889), - [sym_map_init_expression] = STATE(1895), - [sym_array_creation] = STATE(1893), - [sym_fixed_array_creation] = STATE(1893), - [sym_selector_expression] = STATE(1893), - [sym_index_expression] = STATE(1893), - [sym_slice_expression] = STATE(1893), - [sym_if_expression] = STATE(1895), - [sym_compile_time_if_expression] = STATE(1895), - [sym_is_expression] = STATE(1893), - [sym_in_expression] = STATE(1893), - [sym_enum_fetch] = STATE(1893), - [sym_match_expression] = STATE(1895), - [sym_select_expression] = STATE(1895), - [sym_lock_expression] = STATE(1895), - [sym_unsafe_expression] = STATE(1895), - [sym_sql_expression] = STATE(1895), - [sym_c_string_literal] = STATE(1882), - [sym_raw_string_literal] = STATE(1882), - [sym_interpreted_string_literal] = STATE(1882), - [sym_mutability_modifiers] = STATE(561), - [sym_plain_type] = STATE(4316), - [sym__plain_type_without_special] = STATE(2302), - [sym_anon_struct_type] = STATE(2303), - [sym_multi_return_type] = STATE(2302), - [sym_result_type] = STATE(2302), - [sym_option_type] = STATE(2302), - [sym_qualified_type] = STATE(3541), - [sym_fixed_array_type] = STATE(2303), - [sym_array_type] = STATE(2303), - [sym_pointer_type] = STATE(2303), - [sym_wrong_pointer_type] = STATE(2303), - [sym_map_type] = STATE(2303), - [sym_channel_type] = STATE(2303), - [sym_shared_type] = STATE(2303), - [sym_thread_type] = STATE(2303), - [sym_atomic_type] = STATE(2303), - [sym_generic_type] = STATE(2303), - [sym_function_type] = STATE(2303), - [sym_identifier] = ACTIONS(3170), + [sym__expression] = STATE(2267), + [sym__expression_without_blocks] = STATE(2347), + [sym__expression_with_blocks] = STATE(2347), + [sym_inc_expression] = STATE(2379), + [sym_dec_expression] = STATE(2379), + [sym_or_block_expression] = STATE(2379), + [sym_option_propagation_expression] = STATE(2379), + [sym_result_propagation_expression] = STATE(2379), + [sym_anon_struct_value_expression] = STATE(2378), + [sym_go_expression] = STATE(2379), + [sym_spawn_expression] = STATE(2379), + [sym_parenthesized_expression] = STATE(2379), + [sym_call_expression] = STATE(2379), + [sym_type_initializer] = STATE(2378), + [sym_function_literal] = STATE(2379), + [sym_reference_expression] = STATE(2377), + [sym_type_reference_expression] = STATE(3460), + [sym_unary_expression] = STATE(2379), + [sym_receive_expression] = STATE(2379), + [sym_binary_expression] = STATE(2379), + [sym_as_type_cast_expression] = STATE(2379), + [sym__max_group] = STATE(2379), + [sym_literal] = STATE(2392), + [sym_map_init_expression] = STATE(2378), + [sym_array_creation] = STATE(2379), + [sym_fixed_array_creation] = STATE(2379), + [sym_selector_expression] = STATE(2379), + [sym_index_expression] = STATE(2379), + [sym_slice_expression] = STATE(2379), + [sym_if_expression] = STATE(2378), + [sym_compile_time_if_expression] = STATE(2378), + [sym_is_expression] = STATE(2379), + [sym_in_expression] = STATE(2379), + [sym_enum_fetch] = STATE(2379), + [sym_match_expression] = STATE(2378), + [sym_select_expression] = STATE(2378), + [sym_lock_expression] = STATE(2378), + [sym_unsafe_expression] = STATE(2378), + [sym_sql_expression] = STATE(2378), + [sym_c_string_literal] = STATE(2401), + [sym_raw_string_literal] = STATE(2401), + [sym_interpreted_string_literal] = STATE(2401), + [sym_mutability_modifiers] = STATE(553), + [sym_plain_type] = STATE(3558), + [sym__plain_type_without_special] = STATE(2360), + [sym_anon_struct_type] = STATE(2362), + [sym_multi_return_type] = STATE(2360), + [sym_result_type] = STATE(2360), + [sym_option_type] = STATE(2360), + [sym_qualified_type] = STATE(3460), + [sym_fixed_array_type] = STATE(2362), + [sym_array_type] = STATE(2362), + [sym_pointer_type] = STATE(2362), + [sym_wrong_pointer_type] = STATE(2362), + [sym_map_type] = STATE(2362), + [sym_channel_type] = STATE(2362), + [sym_shared_type] = STATE(2362), + [sym_thread_type] = STATE(2362), + [sym_atomic_type] = STATE(2362), + [sym_generic_type] = STATE(2362), + [sym_function_type] = STATE(2362), + [sym_identifier] = ACTIONS(2477), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(3172), - [anon_sym_LBRACE] = ACTIONS(3174), - [anon_sym_LPAREN] = ACTIONS(3176), - [anon_sym_fn] = ACTIONS(3178), - [anon_sym_PLUS] = ACTIONS(3180), - [anon_sym_DASH] = ACTIONS(3180), - [anon_sym_STAR] = ACTIONS(3182), - [anon_sym_struct] = ACTIONS(3184), + [anon_sym_DOT] = ACTIONS(1430), + [anon_sym_LBRACE] = ACTIONS(1432), + [anon_sym_LPAREN] = ACTIONS(1434), + [anon_sym_fn] = ACTIONS(1436), + [anon_sym_PLUS] = ACTIONS(2479), + [anon_sym_DASH] = ACTIONS(2479), + [anon_sym_STAR] = ACTIONS(2481), + [anon_sym_struct] = ACTIONS(1442), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(3186), - [anon_sym_go] = ACTIONS(3188), - [anon_sym_spawn] = ACTIONS(3190), - [anon_sym_json_DOTdecode] = ACTIONS(3192), - [anon_sym_LBRACK2] = ACTIONS(3194), - [anon_sym_TILDE] = ACTIONS(3180), - [anon_sym_CARET] = ACTIONS(3180), - [anon_sym_AMP] = ACTIONS(3196), - [anon_sym_LT_DASH] = ACTIONS(3198), - [sym_none] = ACTIONS(3200), - [sym_true] = ACTIONS(3200), - [sym_false] = ACTIONS(3200), - [sym_nil] = ACTIONS(3200), - [anon_sym_if] = ACTIONS(3202), - [anon_sym_DOLLARif] = ACTIONS(3204), - [anon_sym_match] = ACTIONS(3206), - [anon_sym_select] = ACTIONS(3208), - [anon_sym_lock] = ACTIONS(3210), - [anon_sym_rlock] = ACTIONS(3210), - [anon_sym_unsafe] = ACTIONS(3212), - [anon_sym_sql] = ACTIONS(3214), - [sym_int_literal] = ACTIONS(3200), - [sym_float_literal] = ACTIONS(3216), - [sym_rune_literal] = ACTIONS(3216), - [sym_pseudo_compile_time_identifier] = ACTIONS(3218), + [anon_sym_BANG] = ACTIONS(2483), + [anon_sym_go] = ACTIONS(2485), + [anon_sym_spawn] = ACTIONS(2487), + [anon_sym_json_DOTdecode] = ACTIONS(1450), + [anon_sym_LBRACK2] = ACTIONS(2489), + [anon_sym_TILDE] = ACTIONS(2479), + [anon_sym_CARET] = ACTIONS(2479), + [anon_sym_AMP] = ACTIONS(2491), + [anon_sym_LT_DASH] = ACTIONS(2493), + [sym_none] = ACTIONS(1458), + [sym_true] = ACTIONS(1458), + [sym_false] = ACTIONS(1458), + [sym_nil] = ACTIONS(1458), + [anon_sym_if] = ACTIONS(1833), + [anon_sym_DOLLARif] = ACTIONS(1462), + [anon_sym_match] = ACTIONS(1464), + [anon_sym_select] = ACTIONS(2495), + [anon_sym_lock] = ACTIONS(2497), + [anon_sym_rlock] = ACTIONS(2497), + [anon_sym_unsafe] = ACTIONS(1839), + [anon_sym_sql] = ACTIONS(1472), + [sym_int_literal] = ACTIONS(1458), + [sym_float_literal] = ACTIONS(1474), + [sym_rune_literal] = ACTIONS(1474), + [sym_pseudo_compile_time_identifier] = ACTIONS(1476), [anon_sym_shared] = ACTIONS(83), [anon_sym_map_LBRACK] = ACTIONS(85), [anon_sym_chan] = ACTIONS(87), [anon_sym_thread] = ACTIONS(89), [anon_sym_atomic] = ACTIONS(91), - [sym___double_quote] = ACTIONS(3220), - [sym___single_quote] = ACTIONS(3222), - [sym___c_double_quote] = ACTIONS(3224), - [sym___c_single_quote] = ACTIONS(3226), - [sym___r_double_quote] = ACTIONS(3228), - [sym___r_single_quote] = ACTIONS(3230), + [sym___double_quote] = ACTIONS(1480), + [sym___single_quote] = ACTIONS(1482), + [sym___c_double_quote] = ACTIONS(1484), + [sym___c_single_quote] = ACTIONS(1486), + [sym___r_double_quote] = ACTIONS(1488), + [sym___r_single_quote] = ACTIONS(1490), }, [558] = { [sym_line_comment] = STATE(558), [sym_block_comment] = STATE(558), - [sym__expression] = STATE(1664), - [sym__expression_without_blocks] = STATE(1891), - [sym__expression_with_blocks] = STATE(1891), - [sym_inc_expression] = STATE(1893), - [sym_dec_expression] = STATE(1893), - [sym_or_block_expression] = STATE(1893), - [sym_option_propagation_expression] = STATE(1893), - [sym_result_propagation_expression] = STATE(1893), - [sym_anon_struct_value_expression] = STATE(1895), - [sym_go_expression] = STATE(1893), - [sym_spawn_expression] = STATE(1893), - [sym_parenthesized_expression] = STATE(1893), - [sym_call_expression] = STATE(1893), - [sym_type_initializer] = STATE(1895), - [sym_function_literal] = STATE(1893), - [sym_reference_expression] = STATE(1782), - [sym_type_reference_expression] = STATE(3541), - [sym_unary_expression] = STATE(1893), - [sym_receive_expression] = STATE(1893), - [sym_binary_expression] = STATE(1893), - [sym_as_type_cast_expression] = STATE(1893), - [sym__max_group] = STATE(1893), - [sym_literal] = STATE(1889), - [sym_map_init_expression] = STATE(1895), - [sym_array_creation] = STATE(1893), - [sym_fixed_array_creation] = STATE(1893), - [sym_selector_expression] = STATE(1893), - [sym_index_expression] = STATE(1893), - [sym_slice_expression] = STATE(1893), - [sym_if_expression] = STATE(1895), - [sym_compile_time_if_expression] = STATE(1895), - [sym_is_expression] = STATE(1893), - [sym_in_expression] = STATE(1893), - [sym_enum_fetch] = STATE(1893), - [sym_match_expression] = STATE(1895), - [sym_select_expression] = STATE(1895), - [sym_lock_expression] = STATE(1895), - [sym_unsafe_expression] = STATE(1895), - [sym_sql_expression] = STATE(1895), - [sym_c_string_literal] = STATE(1882), - [sym_raw_string_literal] = STATE(1882), - [sym_interpreted_string_literal] = STATE(1882), - [sym_mutability_modifiers] = STATE(561), - [sym_plain_type] = STATE(4316), - [sym__plain_type_without_special] = STATE(2302), - [sym_anon_struct_type] = STATE(2303), - [sym_multi_return_type] = STATE(2302), - [sym_result_type] = STATE(2302), - [sym_option_type] = STATE(2302), - [sym_qualified_type] = STATE(3541), - [sym_fixed_array_type] = STATE(2303), - [sym_array_type] = STATE(2303), - [sym_pointer_type] = STATE(2303), - [sym_wrong_pointer_type] = STATE(2303), - [sym_map_type] = STATE(2303), - [sym_channel_type] = STATE(2303), - [sym_shared_type] = STATE(2303), - [sym_thread_type] = STATE(2303), - [sym_atomic_type] = STATE(2303), - [sym_generic_type] = STATE(2303), - [sym_function_type] = STATE(2303), - [sym_identifier] = ACTIONS(3170), + [sym__expression] = STATE(2267), + [sym__expression_without_blocks] = STATE(2347), + [sym__expression_with_blocks] = STATE(2347), + [sym_inc_expression] = STATE(2379), + [sym_dec_expression] = STATE(2379), + [sym_or_block_expression] = STATE(2379), + [sym_option_propagation_expression] = STATE(2379), + [sym_result_propagation_expression] = STATE(2379), + [sym_anon_struct_value_expression] = STATE(2378), + [sym_go_expression] = STATE(2379), + [sym_spawn_expression] = STATE(2379), + [sym_parenthesized_expression] = STATE(2379), + [sym_call_expression] = STATE(2379), + [sym_type_initializer] = STATE(2378), + [sym_function_literal] = STATE(2379), + [sym_reference_expression] = STATE(2377), + [sym_type_reference_expression] = STATE(3460), + [sym_unary_expression] = STATE(2379), + [sym_receive_expression] = STATE(2379), + [sym_binary_expression] = STATE(2379), + [sym_as_type_cast_expression] = STATE(2379), + [sym__max_group] = STATE(2379), + [sym_literal] = STATE(2392), + [sym_map_init_expression] = STATE(2378), + [sym_array_creation] = STATE(2379), + [sym_fixed_array_creation] = STATE(2379), + [sym_selector_expression] = STATE(2379), + [sym_index_expression] = STATE(2379), + [sym_slice_expression] = STATE(2379), + [sym_if_expression] = STATE(2378), + [sym_compile_time_if_expression] = STATE(2378), + [sym_is_expression] = STATE(2379), + [sym_in_expression] = STATE(2379), + [sym_enum_fetch] = STATE(2379), + [sym_match_expression] = STATE(2378), + [sym_select_expression] = STATE(2378), + [sym_lock_expression] = STATE(2378), + [sym_unsafe_expression] = STATE(2378), + [sym_sql_expression] = STATE(2378), + [sym_c_string_literal] = STATE(2401), + [sym_raw_string_literal] = STATE(2401), + [sym_interpreted_string_literal] = STATE(2401), + [sym_mutability_modifiers] = STATE(553), + [sym_plain_type] = STATE(3557), + [sym__plain_type_without_special] = STATE(2360), + [sym_anon_struct_type] = STATE(2362), + [sym_multi_return_type] = STATE(2360), + [sym_result_type] = STATE(2360), + [sym_option_type] = STATE(2360), + [sym_qualified_type] = STATE(3460), + [sym_fixed_array_type] = STATE(2362), + [sym_array_type] = STATE(2362), + [sym_pointer_type] = STATE(2362), + [sym_wrong_pointer_type] = STATE(2362), + [sym_map_type] = STATE(2362), + [sym_channel_type] = STATE(2362), + [sym_shared_type] = STATE(2362), + [sym_thread_type] = STATE(2362), + [sym_atomic_type] = STATE(2362), + [sym_generic_type] = STATE(2362), + [sym_function_type] = STATE(2362), + [sym_identifier] = ACTIONS(2477), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(3172), - [anon_sym_LBRACE] = ACTIONS(3174), - [anon_sym_LPAREN] = ACTIONS(3176), - [anon_sym_fn] = ACTIONS(3178), - [anon_sym_PLUS] = ACTIONS(3180), - [anon_sym_DASH] = ACTIONS(3180), - [anon_sym_STAR] = ACTIONS(3182), - [anon_sym_struct] = ACTIONS(3184), + [anon_sym_DOT] = ACTIONS(1430), + [anon_sym_LBRACE] = ACTIONS(1432), + [anon_sym_LPAREN] = ACTIONS(1434), + [anon_sym_fn] = ACTIONS(1436), + [anon_sym_PLUS] = ACTIONS(2479), + [anon_sym_DASH] = ACTIONS(2479), + [anon_sym_STAR] = ACTIONS(2481), + [anon_sym_struct] = ACTIONS(1442), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(3186), - [anon_sym_go] = ACTIONS(3188), - [anon_sym_spawn] = ACTIONS(3190), - [anon_sym_json_DOTdecode] = ACTIONS(3192), - [anon_sym_LBRACK2] = ACTIONS(3194), - [anon_sym_TILDE] = ACTIONS(3180), - [anon_sym_CARET] = ACTIONS(3180), - [anon_sym_AMP] = ACTIONS(3196), - [anon_sym_LT_DASH] = ACTIONS(3198), - [sym_none] = ACTIONS(3200), - [sym_true] = ACTIONS(3200), - [sym_false] = ACTIONS(3200), - [sym_nil] = ACTIONS(3200), - [anon_sym_if] = ACTIONS(3202), - [anon_sym_DOLLARif] = ACTIONS(3204), - [anon_sym_match] = ACTIONS(3206), - [anon_sym_select] = ACTIONS(3208), - [anon_sym_lock] = ACTIONS(3210), - [anon_sym_rlock] = ACTIONS(3210), - [anon_sym_unsafe] = ACTIONS(3212), - [anon_sym_sql] = ACTIONS(3214), - [sym_int_literal] = ACTIONS(3200), - [sym_float_literal] = ACTIONS(3216), - [sym_rune_literal] = ACTIONS(3216), - [sym_pseudo_compile_time_identifier] = ACTIONS(3218), + [anon_sym_BANG] = ACTIONS(2483), + [anon_sym_go] = ACTIONS(2485), + [anon_sym_spawn] = ACTIONS(2487), + [anon_sym_json_DOTdecode] = ACTIONS(1450), + [anon_sym_LBRACK2] = ACTIONS(2489), + [anon_sym_TILDE] = ACTIONS(2479), + [anon_sym_CARET] = ACTIONS(2479), + [anon_sym_AMP] = ACTIONS(2491), + [anon_sym_LT_DASH] = ACTIONS(2493), + [sym_none] = ACTIONS(1458), + [sym_true] = ACTIONS(1458), + [sym_false] = ACTIONS(1458), + [sym_nil] = ACTIONS(1458), + [anon_sym_if] = ACTIONS(1833), + [anon_sym_DOLLARif] = ACTIONS(1462), + [anon_sym_match] = ACTIONS(1464), + [anon_sym_select] = ACTIONS(2495), + [anon_sym_lock] = ACTIONS(2497), + [anon_sym_rlock] = ACTIONS(2497), + [anon_sym_unsafe] = ACTIONS(1839), + [anon_sym_sql] = ACTIONS(1472), + [sym_int_literal] = ACTIONS(1458), + [sym_float_literal] = ACTIONS(1474), + [sym_rune_literal] = ACTIONS(1474), + [sym_pseudo_compile_time_identifier] = ACTIONS(1476), [anon_sym_shared] = ACTIONS(83), [anon_sym_map_LBRACK] = ACTIONS(85), [anon_sym_chan] = ACTIONS(87), [anon_sym_thread] = ACTIONS(89), [anon_sym_atomic] = ACTIONS(91), - [sym___double_quote] = ACTIONS(3220), - [sym___single_quote] = ACTIONS(3222), - [sym___c_double_quote] = ACTIONS(3224), - [sym___c_single_quote] = ACTIONS(3226), - [sym___r_double_quote] = ACTIONS(3228), - [sym___r_single_quote] = ACTIONS(3230), + [sym___double_quote] = ACTIONS(1480), + [sym___single_quote] = ACTIONS(1482), + [sym___c_double_quote] = ACTIONS(1484), + [sym___c_single_quote] = ACTIONS(1486), + [sym___r_double_quote] = ACTIONS(1488), + [sym___r_single_quote] = ACTIONS(1490), }, [559] = { [sym_line_comment] = STATE(559), [sym_block_comment] = STATE(559), - [sym__expression] = STATE(1638), - [sym__expression_without_blocks] = STATE(1891), - [sym__expression_with_blocks] = STATE(1891), - [sym_inc_expression] = STATE(1893), - [sym_dec_expression] = STATE(1893), - [sym_or_block_expression] = STATE(1893), - [sym_option_propagation_expression] = STATE(1893), - [sym_result_propagation_expression] = STATE(1893), - [sym_anon_struct_value_expression] = STATE(1895), - [sym_go_expression] = STATE(1893), - [sym_spawn_expression] = STATE(1893), - [sym_parenthesized_expression] = STATE(1893), - [sym_call_expression] = STATE(1893), - [sym_type_initializer] = STATE(1895), - [sym_function_literal] = STATE(1893), - [sym_reference_expression] = STATE(1782), - [sym_type_reference_expression] = STATE(3541), - [sym_unary_expression] = STATE(1893), - [sym_receive_expression] = STATE(1893), - [sym_binary_expression] = STATE(1893), - [sym_as_type_cast_expression] = STATE(1893), - [sym__max_group] = STATE(1893), - [sym_literal] = STATE(1889), - [sym_map_init_expression] = STATE(1895), - [sym_array_creation] = STATE(1893), - [sym_fixed_array_creation] = STATE(1893), - [sym_selector_expression] = STATE(1893), - [sym_index_expression] = STATE(1893), - [sym_slice_expression] = STATE(1893), - [sym_if_expression] = STATE(1895), - [sym_compile_time_if_expression] = STATE(1895), - [sym_is_expression] = STATE(1893), - [sym_in_expression] = STATE(1893), - [sym_enum_fetch] = STATE(1893), - [sym_match_expression] = STATE(1895), - [sym_select_expression] = STATE(1895), - [sym_lock_expression] = STATE(1895), - [sym_unsafe_expression] = STATE(1895), - [sym_sql_expression] = STATE(1895), - [sym_c_string_literal] = STATE(1882), - [sym_raw_string_literal] = STATE(1882), - [sym_interpreted_string_literal] = STATE(1882), - [sym_mutability_modifiers] = STATE(561), - [sym_plain_type] = STATE(4316), - [sym__plain_type_without_special] = STATE(2302), - [sym_anon_struct_type] = STATE(2303), - [sym_multi_return_type] = STATE(2302), - [sym_result_type] = STATE(2302), - [sym_option_type] = STATE(2302), - [sym_qualified_type] = STATE(3541), - [sym_fixed_array_type] = STATE(2303), - [sym_array_type] = STATE(2303), - [sym_pointer_type] = STATE(2303), - [sym_wrong_pointer_type] = STATE(2303), - [sym_map_type] = STATE(2303), - [sym_channel_type] = STATE(2303), - [sym_shared_type] = STATE(2303), - [sym_thread_type] = STATE(2303), - [sym_atomic_type] = STATE(2303), - [sym_generic_type] = STATE(2303), - [sym_function_type] = STATE(2303), - [sym_identifier] = ACTIONS(3170), + [sym__expression] = STATE(1755), + [sym__expression_without_blocks] = STATE(1915), + [sym__expression_with_blocks] = STATE(1915), + [sym_inc_expression] = STATE(2035), + [sym_dec_expression] = STATE(2035), + [sym_or_block_expression] = STATE(2035), + [sym_option_propagation_expression] = STATE(2035), + [sym_result_propagation_expression] = STATE(2035), + [sym_anon_struct_value_expression] = STATE(1939), + [sym_go_expression] = STATE(2035), + [sym_spawn_expression] = STATE(2035), + [sym_parenthesized_expression] = STATE(2035), + [sym_call_expression] = STATE(2035), + [sym_type_initializer] = STATE(1939), + [sym_function_literal] = STATE(2035), + [sym_reference_expression] = STATE(1944), + [sym_type_reference_expression] = STATE(3460), + [sym_unary_expression] = STATE(2035), + [sym_receive_expression] = STATE(2035), + [sym_binary_expression] = STATE(2035), + [sym_as_type_cast_expression] = STATE(2035), + [sym__max_group] = STATE(2035), + [sym_literal] = STATE(2030), + [sym_map_init_expression] = STATE(1939), + [sym_array_creation] = STATE(2035), + [sym_fixed_array_creation] = STATE(2035), + [sym_selector_expression] = STATE(2035), + [sym_index_expression] = STATE(2035), + [sym_slice_expression] = STATE(2035), + [sym_if_expression] = STATE(1939), + [sym_compile_time_if_expression] = STATE(1939), + [sym_is_expression] = STATE(2035), + [sym_in_expression] = STATE(2035), + [sym_enum_fetch] = STATE(2035), + [sym_match_expression] = STATE(1939), + [sym_select_expression] = STATE(1939), + [sym_lock_expression] = STATE(1939), + [sym_unsafe_expression] = STATE(1939), + [sym_sql_expression] = STATE(1939), + [sym_c_string_literal] = STATE(2029), + [sym_raw_string_literal] = STATE(2029), + [sym_interpreted_string_literal] = STATE(2029), + [sym_mutability_modifiers] = STATE(555), + [sym_plain_type] = STATE(4014), + [sym__plain_type_without_special] = STATE(2360), + [sym_anon_struct_type] = STATE(2362), + [sym_multi_return_type] = STATE(2360), + [sym_result_type] = STATE(2360), + [sym_option_type] = STATE(2360), + [sym_qualified_type] = STATE(3460), + [sym_fixed_array_type] = STATE(2362), + [sym_array_type] = STATE(2362), + [sym_pointer_type] = STATE(2362), + [sym_wrong_pointer_type] = STATE(2362), + [sym_map_type] = STATE(2362), + [sym_channel_type] = STATE(2362), + [sym_shared_type] = STATE(2362), + [sym_thread_type] = STATE(2362), + [sym_atomic_type] = STATE(2362), + [sym_generic_type] = STATE(2362), + [sym_function_type] = STATE(2362), + [sym_identifier] = ACTIONS(3272), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(3172), - [anon_sym_LBRACE] = ACTIONS(3174), - [anon_sym_LPAREN] = ACTIONS(3176), - [anon_sym_fn] = ACTIONS(3178), - [anon_sym_PLUS] = ACTIONS(3180), - [anon_sym_DASH] = ACTIONS(3180), - [anon_sym_STAR] = ACTIONS(3182), - [anon_sym_struct] = ACTIONS(3184), + [anon_sym_DOT] = ACTIONS(769), + [anon_sym_LBRACE] = ACTIONS(3274), + [anon_sym_LPAREN] = ACTIONS(775), + [anon_sym_fn] = ACTIONS(777), + [anon_sym_PLUS] = ACTIONS(779), + [anon_sym_DASH] = ACTIONS(779), + [anon_sym_STAR] = ACTIONS(781), + [anon_sym_struct] = ACTIONS(3276), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(3186), - [anon_sym_go] = ACTIONS(3188), - [anon_sym_spawn] = ACTIONS(3190), - [anon_sym_json_DOTdecode] = ACTIONS(3192), - [anon_sym_LBRACK2] = ACTIONS(3194), - [anon_sym_TILDE] = ACTIONS(3180), - [anon_sym_CARET] = ACTIONS(3180), - [anon_sym_AMP] = ACTIONS(3196), - [anon_sym_LT_DASH] = ACTIONS(3198), - [sym_none] = ACTIONS(3200), - [sym_true] = ACTIONS(3200), - [sym_false] = ACTIONS(3200), - [sym_nil] = ACTIONS(3200), - [anon_sym_if] = ACTIONS(3202), - [anon_sym_DOLLARif] = ACTIONS(3204), - [anon_sym_match] = ACTIONS(3206), - [anon_sym_select] = ACTIONS(3208), - [anon_sym_lock] = ACTIONS(3210), - [anon_sym_rlock] = ACTIONS(3210), - [anon_sym_unsafe] = ACTIONS(3212), - [anon_sym_sql] = ACTIONS(3214), - [sym_int_literal] = ACTIONS(3200), - [sym_float_literal] = ACTIONS(3216), - [sym_rune_literal] = ACTIONS(3216), - [sym_pseudo_compile_time_identifier] = ACTIONS(3218), + [anon_sym_BANG] = ACTIONS(785), + [anon_sym_go] = ACTIONS(787), + [anon_sym_spawn] = ACTIONS(789), + [anon_sym_json_DOTdecode] = ACTIONS(791), + [anon_sym_LBRACK2] = ACTIONS(793), + [anon_sym_TILDE] = ACTIONS(779), + [anon_sym_CARET] = ACTIONS(779), + [anon_sym_AMP] = ACTIONS(795), + [anon_sym_LT_DASH] = ACTIONS(797), + [sym_none] = ACTIONS(799), + [sym_true] = ACTIONS(799), + [sym_false] = ACTIONS(799), + [sym_nil] = ACTIONS(799), + [anon_sym_if] = ACTIONS(3278), + [anon_sym_DOLLARif] = ACTIONS(3280), + [anon_sym_match] = ACTIONS(3282), + [anon_sym_select] = ACTIONS(3284), + [anon_sym_lock] = ACTIONS(3286), + [anon_sym_rlock] = ACTIONS(3286), + [anon_sym_unsafe] = ACTIONS(3288), + [anon_sym_sql] = ACTIONS(3290), + [sym_int_literal] = ACTIONS(799), + [sym_float_literal] = ACTIONS(817), + [sym_rune_literal] = ACTIONS(817), + [sym_pseudo_compile_time_identifier] = ACTIONS(819), [anon_sym_shared] = ACTIONS(83), [anon_sym_map_LBRACK] = ACTIONS(85), [anon_sym_chan] = ACTIONS(87), [anon_sym_thread] = ACTIONS(89), [anon_sym_atomic] = ACTIONS(91), - [sym___double_quote] = ACTIONS(3220), - [sym___single_quote] = ACTIONS(3222), - [sym___c_double_quote] = ACTIONS(3224), - [sym___c_single_quote] = ACTIONS(3226), - [sym___r_double_quote] = ACTIONS(3228), - [sym___r_single_quote] = ACTIONS(3230), + [sym___double_quote] = ACTIONS(821), + [sym___single_quote] = ACTIONS(823), + [sym___c_double_quote] = ACTIONS(825), + [sym___c_single_quote] = ACTIONS(827), + [sym___r_double_quote] = ACTIONS(829), + [sym___r_single_quote] = ACTIONS(831), }, [560] = { [sym_line_comment] = STATE(560), [sym_block_comment] = STATE(560), - [sym__expression] = STATE(1655), - [sym__expression_without_blocks] = STATE(1891), - [sym__expression_with_blocks] = STATE(1891), - [sym_inc_expression] = STATE(1893), - [sym_dec_expression] = STATE(1893), - [sym_or_block_expression] = STATE(1893), - [sym_option_propagation_expression] = STATE(1893), - [sym_result_propagation_expression] = STATE(1893), - [sym_anon_struct_value_expression] = STATE(1895), - [sym_go_expression] = STATE(1893), - [sym_spawn_expression] = STATE(1893), - [sym_parenthesized_expression] = STATE(1893), - [sym_call_expression] = STATE(1893), - [sym_type_initializer] = STATE(1895), - [sym_function_literal] = STATE(1893), - [sym_reference_expression] = STATE(1782), - [sym_type_reference_expression] = STATE(3541), - [sym_unary_expression] = STATE(1893), - [sym_receive_expression] = STATE(1893), - [sym_binary_expression] = STATE(1893), - [sym_as_type_cast_expression] = STATE(1893), - [sym__max_group] = STATE(1893), - [sym_literal] = STATE(1889), - [sym_map_init_expression] = STATE(1895), - [sym_array_creation] = STATE(1893), - [sym_fixed_array_creation] = STATE(1893), - [sym_selector_expression] = STATE(1893), - [sym_index_expression] = STATE(1893), - [sym_slice_expression] = STATE(1893), - [sym_if_expression] = STATE(1895), - [sym_compile_time_if_expression] = STATE(1895), - [sym_is_expression] = STATE(1893), - [sym_in_expression] = STATE(1893), - [sym_enum_fetch] = STATE(1893), - [sym_match_expression] = STATE(1895), - [sym_select_expression] = STATE(1895), - [sym_lock_expression] = STATE(1895), - [sym_unsafe_expression] = STATE(1895), - [sym_sql_expression] = STATE(1895), - [sym_c_string_literal] = STATE(1882), - [sym_raw_string_literal] = STATE(1882), - [sym_interpreted_string_literal] = STATE(1882), - [sym_mutability_modifiers] = STATE(561), - [sym_plain_type] = STATE(4316), - [sym__plain_type_without_special] = STATE(2302), - [sym_anon_struct_type] = STATE(2303), - [sym_multi_return_type] = STATE(2302), - [sym_result_type] = STATE(2302), - [sym_option_type] = STATE(2302), - [sym_qualified_type] = STATE(3541), - [sym_fixed_array_type] = STATE(2303), - [sym_array_type] = STATE(2303), - [sym_pointer_type] = STATE(2303), - [sym_wrong_pointer_type] = STATE(2303), - [sym_map_type] = STATE(2303), - [sym_channel_type] = STATE(2303), - [sym_shared_type] = STATE(2303), - [sym_thread_type] = STATE(2303), - [sym_atomic_type] = STATE(2303), - [sym_generic_type] = STATE(2303), - [sym_function_type] = STATE(2303), - [sym_identifier] = ACTIONS(3170), + [sym__expression] = STATE(1755), + [sym__expression_without_blocks] = STATE(1915), + [sym__expression_with_blocks] = STATE(1915), + [sym_inc_expression] = STATE(2035), + [sym_dec_expression] = STATE(2035), + [sym_or_block_expression] = STATE(2035), + [sym_option_propagation_expression] = STATE(2035), + [sym_result_propagation_expression] = STATE(2035), + [sym_anon_struct_value_expression] = STATE(1939), + [sym_go_expression] = STATE(2035), + [sym_spawn_expression] = STATE(2035), + [sym_parenthesized_expression] = STATE(2035), + [sym_call_expression] = STATE(2035), + [sym_type_initializer] = STATE(1939), + [sym_function_literal] = STATE(2035), + [sym_reference_expression] = STATE(1944), + [sym_type_reference_expression] = STATE(3460), + [sym_unary_expression] = STATE(2035), + [sym_receive_expression] = STATE(2035), + [sym_binary_expression] = STATE(2035), + [sym_as_type_cast_expression] = STATE(2035), + [sym__max_group] = STATE(2035), + [sym_literal] = STATE(2030), + [sym_map_init_expression] = STATE(1939), + [sym_array_creation] = STATE(2035), + [sym_fixed_array_creation] = STATE(2035), + [sym_selector_expression] = STATE(2035), + [sym_index_expression] = STATE(2035), + [sym_slice_expression] = STATE(2035), + [sym_if_expression] = STATE(1939), + [sym_compile_time_if_expression] = STATE(1939), + [sym_is_expression] = STATE(2035), + [sym_in_expression] = STATE(2035), + [sym_enum_fetch] = STATE(2035), + [sym_match_expression] = STATE(1939), + [sym_select_expression] = STATE(1939), + [sym_lock_expression] = STATE(1939), + [sym_unsafe_expression] = STATE(1939), + [sym_sql_expression] = STATE(1939), + [sym_c_string_literal] = STATE(2029), + [sym_raw_string_literal] = STATE(2029), + [sym_interpreted_string_literal] = STATE(2029), + [sym_mutability_modifiers] = STATE(555), + [sym_plain_type] = STATE(4272), + [sym__plain_type_without_special] = STATE(2360), + [sym_anon_struct_type] = STATE(2362), + [sym_multi_return_type] = STATE(2360), + [sym_result_type] = STATE(2360), + [sym_option_type] = STATE(2360), + [sym_qualified_type] = STATE(3460), + [sym_fixed_array_type] = STATE(2362), + [sym_array_type] = STATE(2362), + [sym_pointer_type] = STATE(2362), + [sym_wrong_pointer_type] = STATE(2362), + [sym_map_type] = STATE(2362), + [sym_channel_type] = STATE(2362), + [sym_shared_type] = STATE(2362), + [sym_thread_type] = STATE(2362), + [sym_atomic_type] = STATE(2362), + [sym_generic_type] = STATE(2362), + [sym_function_type] = STATE(2362), + [sym_identifier] = ACTIONS(3272), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(3172), - [anon_sym_LBRACE] = ACTIONS(3174), - [anon_sym_LPAREN] = ACTIONS(3176), - [anon_sym_fn] = ACTIONS(3178), - [anon_sym_PLUS] = ACTIONS(3180), - [anon_sym_DASH] = ACTIONS(3180), - [anon_sym_STAR] = ACTIONS(3182), - [anon_sym_struct] = ACTIONS(3184), + [anon_sym_DOT] = ACTIONS(769), + [anon_sym_LBRACE] = ACTIONS(3274), + [anon_sym_LPAREN] = ACTIONS(775), + [anon_sym_fn] = ACTIONS(777), + [anon_sym_PLUS] = ACTIONS(779), + [anon_sym_DASH] = ACTIONS(779), + [anon_sym_STAR] = ACTIONS(781), + [anon_sym_struct] = ACTIONS(3276), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(3186), - [anon_sym_go] = ACTIONS(3188), - [anon_sym_spawn] = ACTIONS(3190), - [anon_sym_json_DOTdecode] = ACTIONS(3192), - [anon_sym_LBRACK2] = ACTIONS(3194), - [anon_sym_TILDE] = ACTIONS(3180), - [anon_sym_CARET] = ACTIONS(3180), - [anon_sym_AMP] = ACTIONS(3196), - [anon_sym_LT_DASH] = ACTIONS(3198), - [sym_none] = ACTIONS(3200), - [sym_true] = ACTIONS(3200), - [sym_false] = ACTIONS(3200), - [sym_nil] = ACTIONS(3200), - [anon_sym_if] = ACTIONS(3202), - [anon_sym_DOLLARif] = ACTIONS(3204), - [anon_sym_match] = ACTIONS(3206), - [anon_sym_select] = ACTIONS(3208), - [anon_sym_lock] = ACTIONS(3210), - [anon_sym_rlock] = ACTIONS(3210), - [anon_sym_unsafe] = ACTIONS(3212), - [anon_sym_sql] = ACTIONS(3214), - [sym_int_literal] = ACTIONS(3200), - [sym_float_literal] = ACTIONS(3216), - [sym_rune_literal] = ACTIONS(3216), - [sym_pseudo_compile_time_identifier] = ACTIONS(3218), + [anon_sym_BANG] = ACTIONS(785), + [anon_sym_go] = ACTIONS(787), + [anon_sym_spawn] = ACTIONS(789), + [anon_sym_json_DOTdecode] = ACTIONS(791), + [anon_sym_LBRACK2] = ACTIONS(793), + [anon_sym_TILDE] = ACTIONS(779), + [anon_sym_CARET] = ACTIONS(779), + [anon_sym_AMP] = ACTIONS(795), + [anon_sym_LT_DASH] = ACTIONS(797), + [sym_none] = ACTIONS(799), + [sym_true] = ACTIONS(799), + [sym_false] = ACTIONS(799), + [sym_nil] = ACTIONS(799), + [anon_sym_if] = ACTIONS(3278), + [anon_sym_DOLLARif] = ACTIONS(3280), + [anon_sym_match] = ACTIONS(3282), + [anon_sym_select] = ACTIONS(3284), + [anon_sym_lock] = ACTIONS(3286), + [anon_sym_rlock] = ACTIONS(3286), + [anon_sym_unsafe] = ACTIONS(3288), + [anon_sym_sql] = ACTIONS(3290), + [sym_int_literal] = ACTIONS(799), + [sym_float_literal] = ACTIONS(817), + [sym_rune_literal] = ACTIONS(817), + [sym_pseudo_compile_time_identifier] = ACTIONS(819), [anon_sym_shared] = ACTIONS(83), [anon_sym_map_LBRACK] = ACTIONS(85), [anon_sym_chan] = ACTIONS(87), [anon_sym_thread] = ACTIONS(89), [anon_sym_atomic] = ACTIONS(91), - [sym___double_quote] = ACTIONS(3220), - [sym___single_quote] = ACTIONS(3222), - [sym___c_double_quote] = ACTIONS(3224), - [sym___c_single_quote] = ACTIONS(3226), - [sym___r_double_quote] = ACTIONS(3228), - [sym___r_single_quote] = ACTIONS(3230), + [sym___double_quote] = ACTIONS(821), + [sym___single_quote] = ACTIONS(823), + [sym___c_double_quote] = ACTIONS(825), + [sym___c_single_quote] = ACTIONS(827), + [sym___r_double_quote] = ACTIONS(829), + [sym___r_single_quote] = ACTIONS(831), }, [561] = { [sym_line_comment] = STATE(561), [sym_block_comment] = STATE(561), - [sym__expression] = STATE(2829), - [sym__expression_without_blocks] = STATE(2300), - [sym__expression_with_blocks] = STATE(2300), - [sym_inc_expression] = STATE(2307), - [sym_dec_expression] = STATE(2307), - [sym_or_block_expression] = STATE(2307), - [sym_option_propagation_expression] = STATE(2307), - [sym_result_propagation_expression] = STATE(2307), - [sym_anon_struct_value_expression] = STATE(2380), - [sym_go_expression] = STATE(2307), - [sym_spawn_expression] = STATE(2307), - [sym_parenthesized_expression] = STATE(2307), - [sym_call_expression] = STATE(2307), - [sym_type_initializer] = STATE(2380), - [sym_function_literal] = STATE(2307), - [sym_reference_expression] = STATE(2311), - [sym_type_reference_expression] = STATE(3541), - [sym_unary_expression] = STATE(2307), - [sym_receive_expression] = STATE(2307), - [sym_binary_expression] = STATE(2307), - [sym_as_type_cast_expression] = STATE(2307), - [sym__max_group] = STATE(2307), - [sym_literal] = STATE(2292), - [sym_map_init_expression] = STATE(2380), - [sym_array_creation] = STATE(2307), - [sym_fixed_array_creation] = STATE(2307), - [sym_selector_expression] = STATE(2307), - [sym_index_expression] = STATE(2307), - [sym_slice_expression] = STATE(2307), - [sym_if_expression] = STATE(2380), - [sym_compile_time_if_expression] = STATE(2380), - [sym_is_expression] = STATE(2307), - [sym_in_expression] = STATE(2307), - [sym_enum_fetch] = STATE(2307), - [sym_match_expression] = STATE(2380), - [sym_select_expression] = STATE(2380), - [sym_lock_expression] = STATE(2380), - [sym_unsafe_expression] = STATE(2380), - [sym_sql_expression] = STATE(2380), - [sym_c_string_literal] = STATE(2308), - [sym_raw_string_literal] = STATE(2308), - [sym_interpreted_string_literal] = STATE(2308), + [sym__expression] = STATE(2823), + [sym__expression_without_blocks] = STATE(2347), + [sym__expression_with_blocks] = STATE(2347), + [sym_inc_expression] = STATE(2379), + [sym_dec_expression] = STATE(2379), + [sym_or_block_expression] = STATE(2379), + [sym_option_propagation_expression] = STATE(2379), + [sym_result_propagation_expression] = STATE(2379), + [sym_anon_struct_value_expression] = STATE(2378), + [sym_go_expression] = STATE(2379), + [sym_spawn_expression] = STATE(2379), + [sym_parenthesized_expression] = STATE(2379), + [sym_call_expression] = STATE(2379), + [sym_type_initializer] = STATE(2378), + [sym_function_literal] = STATE(2379), + [sym_reference_expression] = STATE(2377), + [sym_type_reference_expression] = STATE(3460), + [sym_unary_expression] = STATE(2379), + [sym_receive_expression] = STATE(2379), + [sym_binary_expression] = STATE(2379), + [sym_as_type_cast_expression] = STATE(2379), + [sym__max_group] = STATE(2379), + [sym_literal] = STATE(2392), + [sym_map_init_expression] = STATE(2378), + [sym_array_creation] = STATE(2379), + [sym_fixed_array_creation] = STATE(2379), + [sym_selector_expression] = STATE(2379), + [sym_index_expression] = STATE(2379), + [sym_slice_expression] = STATE(2379), + [sym_if_expression] = STATE(2378), + [sym_compile_time_if_expression] = STATE(2378), + [sym_is_expression] = STATE(2379), + [sym_in_expression] = STATE(2379), + [sym_enum_fetch] = STATE(2379), + [sym_match_expression] = STATE(2378), + [sym_select_expression] = STATE(2378), + [sym_lock_expression] = STATE(2378), + [sym_unsafe_expression] = STATE(2378), + [sym_sql_expression] = STATE(2378), + [sym_c_string_literal] = STATE(2401), + [sym_raw_string_literal] = STATE(2401), + [sym_interpreted_string_literal] = STATE(2401), [sym_mutability_modifiers] = STATE(939), - [sym_plain_type] = STATE(4297), - [sym__plain_type_without_special] = STATE(2302), - [sym_anon_struct_type] = STATE(2303), - [sym_multi_return_type] = STATE(2302), - [sym_result_type] = STATE(2302), - [sym_option_type] = STATE(2302), - [sym_qualified_type] = STATE(3541), - [sym_fixed_array_type] = STATE(2303), - [sym_array_type] = STATE(2303), - [sym_pointer_type] = STATE(2303), - [sym_wrong_pointer_type] = STATE(2303), - [sym_map_type] = STATE(2303), - [sym_channel_type] = STATE(2303), - [sym_shared_type] = STATE(2303), - [sym_thread_type] = STATE(2303), - [sym_atomic_type] = STATE(2303), - [sym_generic_type] = STATE(2303), - [sym_function_type] = STATE(2303), - [sym_identifier] = ACTIONS(1426), + [sym_plain_type] = STATE(4160), + [sym__plain_type_without_special] = STATE(2360), + [sym_anon_struct_type] = STATE(2362), + [sym_multi_return_type] = STATE(2360), + [sym_result_type] = STATE(2360), + [sym_option_type] = STATE(2360), + [sym_qualified_type] = STATE(3460), + [sym_fixed_array_type] = STATE(2362), + [sym_array_type] = STATE(2362), + [sym_pointer_type] = STATE(2362), + [sym_wrong_pointer_type] = STATE(2362), + [sym_map_type] = STATE(2362), + [sym_channel_type] = STATE(2362), + [sym_shared_type] = STATE(2362), + [sym_thread_type] = STATE(2362), + [sym_atomic_type] = STATE(2362), + [sym_generic_type] = STATE(2362), + [sym_function_type] = STATE(2362), + [sym_identifier] = ACTIONS(1428), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1428), - [anon_sym_LBRACE] = ACTIONS(1430), - [anon_sym_LPAREN] = ACTIONS(1432), - [anon_sym_fn] = ACTIONS(1434), - [anon_sym_PLUS] = ACTIONS(1436), - [anon_sym_DASH] = ACTIONS(1436), - [anon_sym_STAR] = ACTIONS(1438), - [anon_sym_struct] = ACTIONS(1440), + [anon_sym_DOT] = ACTIONS(1430), + [anon_sym_LBRACE] = ACTIONS(1432), + [anon_sym_LPAREN] = ACTIONS(1434), + [anon_sym_fn] = ACTIONS(1436), + [anon_sym_PLUS] = ACTIONS(1438), + [anon_sym_DASH] = ACTIONS(1438), + [anon_sym_STAR] = ACTIONS(1440), + [anon_sym_struct] = ACTIONS(1442), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(1442), - [anon_sym_go] = ACTIONS(1444), - [anon_sym_spawn] = ACTIONS(1446), - [anon_sym_json_DOTdecode] = ACTIONS(1448), - [anon_sym_LBRACK2] = ACTIONS(1450), - [anon_sym_TILDE] = ACTIONS(1436), - [anon_sym_CARET] = ACTIONS(1436), - [anon_sym_AMP] = ACTIONS(1452), - [anon_sym_LT_DASH] = ACTIONS(1454), - [sym_none] = ACTIONS(1456), - [sym_true] = ACTIONS(1456), - [sym_false] = ACTIONS(1456), - [sym_nil] = ACTIONS(1456), - [anon_sym_if] = ACTIONS(1827), - [anon_sym_DOLLARif] = ACTIONS(1460), - [anon_sym_match] = ACTIONS(1462), - [anon_sym_select] = ACTIONS(1464), - [anon_sym_lock] = ACTIONS(1466), - [anon_sym_rlock] = ACTIONS(1466), - [anon_sym_unsafe] = ACTIONS(1833), - [anon_sym_sql] = ACTIONS(1470), - [sym_int_literal] = ACTIONS(1456), - [sym_float_literal] = ACTIONS(1472), - [sym_rune_literal] = ACTIONS(1472), - [sym_pseudo_compile_time_identifier] = ACTIONS(1474), + [anon_sym_BANG] = ACTIONS(1444), + [anon_sym_go] = ACTIONS(1446), + [anon_sym_spawn] = ACTIONS(1448), + [anon_sym_json_DOTdecode] = ACTIONS(1450), + [anon_sym_LBRACK2] = ACTIONS(1452), + [anon_sym_TILDE] = ACTIONS(1438), + [anon_sym_CARET] = ACTIONS(1438), + [anon_sym_AMP] = ACTIONS(1454), + [anon_sym_LT_DASH] = ACTIONS(1456), + [sym_none] = ACTIONS(1458), + [sym_true] = ACTIONS(1458), + [sym_false] = ACTIONS(1458), + [sym_nil] = ACTIONS(1458), + [anon_sym_if] = ACTIONS(1833), + [anon_sym_DOLLARif] = ACTIONS(1462), + [anon_sym_match] = ACTIONS(1464), + [anon_sym_select] = ACTIONS(1466), + [anon_sym_lock] = ACTIONS(1468), + [anon_sym_rlock] = ACTIONS(1468), + [anon_sym_unsafe] = ACTIONS(1839), + [anon_sym_sql] = ACTIONS(1472), + [sym_int_literal] = ACTIONS(1458), + [sym_float_literal] = ACTIONS(1474), + [sym_rune_literal] = ACTIONS(1474), + [sym_pseudo_compile_time_identifier] = ACTIONS(1476), [anon_sym_shared] = ACTIONS(83), [anon_sym_map_LBRACK] = ACTIONS(85), [anon_sym_chan] = ACTIONS(87), [anon_sym_thread] = ACTIONS(89), [anon_sym_atomic] = ACTIONS(91), - [sym___double_quote] = ACTIONS(1478), - [sym___single_quote] = ACTIONS(1480), - [sym___c_double_quote] = ACTIONS(1482), - [sym___c_single_quote] = ACTIONS(1484), - [sym___r_double_quote] = ACTIONS(1486), - [sym___r_single_quote] = ACTIONS(1488), + [sym___double_quote] = ACTIONS(1480), + [sym___single_quote] = ACTIONS(1482), + [sym___c_double_quote] = ACTIONS(1484), + [sym___c_single_quote] = ACTIONS(1486), + [sym___r_double_quote] = ACTIONS(1488), + [sym___r_single_quote] = ACTIONS(1490), }, [562] = { [sym_line_comment] = STATE(562), [sym_block_comment] = STATE(562), - [sym__expression] = STATE(2815), - [sym__expression_without_blocks] = STATE(2300), - [sym__expression_with_blocks] = STATE(2300), - [sym_inc_expression] = STATE(2307), - [sym_dec_expression] = STATE(2307), - [sym_or_block_expression] = STATE(2307), - [sym_option_propagation_expression] = STATE(2307), - [sym_result_propagation_expression] = STATE(2307), - [sym_anon_struct_value_expression] = STATE(2380), - [sym_go_expression] = STATE(2307), - [sym_spawn_expression] = STATE(2307), - [sym_parenthesized_expression] = STATE(2307), - [sym_call_expression] = STATE(2307), - [sym_type_initializer] = STATE(2380), - [sym_function_literal] = STATE(2307), - [sym_reference_expression] = STATE(2311), - [sym_type_reference_expression] = STATE(3541), - [sym_unary_expression] = STATE(2307), - [sym_receive_expression] = STATE(2307), - [sym_binary_expression] = STATE(2307), - [sym_as_type_cast_expression] = STATE(2307), - [sym__max_group] = STATE(2307), - [sym_literal] = STATE(2292), - [sym_map_init_expression] = STATE(2380), - [sym_array_creation] = STATE(2307), - [sym_fixed_array_creation] = STATE(2307), - [sym_selector_expression] = STATE(2307), - [sym_index_expression] = STATE(2307), - [sym_slice_expression] = STATE(2307), - [sym_if_expression] = STATE(2380), - [sym_compile_time_if_expression] = STATE(2380), - [sym_is_expression] = STATE(2307), - [sym_in_expression] = STATE(2307), - [sym_enum_fetch] = STATE(2307), - [sym_match_expression] = STATE(2380), - [sym_select_expression] = STATE(2380), - [sym_lock_expression] = STATE(2380), - [sym_unsafe_expression] = STATE(2380), - [sym_sql_expression] = STATE(2380), - [sym_c_string_literal] = STATE(2308), - [sym_raw_string_literal] = STATE(2308), - [sym_interpreted_string_literal] = STATE(2308), - [sym_mutability_modifiers] = STATE(939), - [sym_plain_type] = STATE(4297), - [sym__plain_type_without_special] = STATE(2302), - [sym_anon_struct_type] = STATE(2303), - [sym_multi_return_type] = STATE(2302), - [sym_result_type] = STATE(2302), - [sym_option_type] = STATE(2302), - [sym_qualified_type] = STATE(3541), - [sym_fixed_array_type] = STATE(2303), - [sym_array_type] = STATE(2303), - [sym_pointer_type] = STATE(2303), - [sym_wrong_pointer_type] = STATE(2303), - [sym_map_type] = STATE(2303), - [sym_channel_type] = STATE(2303), - [sym_shared_type] = STATE(2303), - [sym_thread_type] = STATE(2303), - [sym_atomic_type] = STATE(2303), - [sym_generic_type] = STATE(2303), - [sym_function_type] = STATE(2303), - [sym_identifier] = ACTIONS(1426), + [sym__expression] = STATE(2261), + [sym__expression_without_blocks] = STATE(2347), + [sym__expression_with_blocks] = STATE(2347), + [sym_inc_expression] = STATE(2379), + [sym_dec_expression] = STATE(2379), + [sym_or_block_expression] = STATE(2379), + [sym_option_propagation_expression] = STATE(2379), + [sym_result_propagation_expression] = STATE(2379), + [sym_anon_struct_value_expression] = STATE(2378), + [sym_go_expression] = STATE(2379), + [sym_spawn_expression] = STATE(2379), + [sym_parenthesized_expression] = STATE(2379), + [sym_call_expression] = STATE(2379), + [sym_type_initializer] = STATE(2378), + [sym_function_literal] = STATE(2379), + [sym_reference_expression] = STATE(2377), + [sym_type_reference_expression] = STATE(3460), + [sym_unary_expression] = STATE(2379), + [sym_receive_expression] = STATE(2379), + [sym_binary_expression] = STATE(2379), + [sym_as_type_cast_expression] = STATE(2379), + [sym__max_group] = STATE(2379), + [sym_literal] = STATE(2392), + [sym_map_init_expression] = STATE(2378), + [sym_array_creation] = STATE(2379), + [sym_fixed_array_creation] = STATE(2379), + [sym_selector_expression] = STATE(2379), + [sym_index_expression] = STATE(2379), + [sym_slice_expression] = STATE(2379), + [sym_if_expression] = STATE(2378), + [sym_compile_time_if_expression] = STATE(2378), + [sym_is_expression] = STATE(2379), + [sym_in_expression] = STATE(2379), + [sym_enum_fetch] = STATE(2379), + [sym_match_expression] = STATE(2378), + [sym_select_expression] = STATE(2378), + [sym_lock_expression] = STATE(2378), + [sym_unsafe_expression] = STATE(2378), + [sym_sql_expression] = STATE(2378), + [sym_c_string_literal] = STATE(2401), + [sym_raw_string_literal] = STATE(2401), + [sym_interpreted_string_literal] = STATE(2401), + [sym_mutability_modifiers] = STATE(553), + [sym_plain_type] = STATE(4160), + [sym__plain_type_without_special] = STATE(2360), + [sym_anon_struct_type] = STATE(2362), + [sym_multi_return_type] = STATE(2360), + [sym_result_type] = STATE(2360), + [sym_option_type] = STATE(2360), + [sym_qualified_type] = STATE(3460), + [sym_fixed_array_type] = STATE(2362), + [sym_array_type] = STATE(2362), + [sym_pointer_type] = STATE(2362), + [sym_wrong_pointer_type] = STATE(2362), + [sym_map_type] = STATE(2362), + [sym_channel_type] = STATE(2362), + [sym_shared_type] = STATE(2362), + [sym_thread_type] = STATE(2362), + [sym_atomic_type] = STATE(2362), + [sym_generic_type] = STATE(2362), + [sym_function_type] = STATE(2362), + [sym_identifier] = ACTIONS(2477), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1428), - [anon_sym_LBRACE] = ACTIONS(1430), - [anon_sym_LPAREN] = ACTIONS(1432), - [anon_sym_fn] = ACTIONS(1434), - [anon_sym_PLUS] = ACTIONS(1436), - [anon_sym_DASH] = ACTIONS(1436), - [anon_sym_STAR] = ACTIONS(1438), - [anon_sym_struct] = ACTIONS(1440), + [anon_sym_DOT] = ACTIONS(1430), + [anon_sym_LBRACE] = ACTIONS(1432), + [anon_sym_LPAREN] = ACTIONS(1434), + [anon_sym_fn] = ACTIONS(1436), + [anon_sym_PLUS] = ACTIONS(2479), + [anon_sym_DASH] = ACTIONS(2479), + [anon_sym_STAR] = ACTIONS(2481), + [anon_sym_struct] = ACTIONS(1442), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(1442), - [anon_sym_go] = ACTIONS(1444), - [anon_sym_spawn] = ACTIONS(1446), - [anon_sym_json_DOTdecode] = ACTIONS(1448), - [anon_sym_LBRACK2] = ACTIONS(1450), - [anon_sym_TILDE] = ACTIONS(1436), - [anon_sym_CARET] = ACTIONS(1436), - [anon_sym_AMP] = ACTIONS(1452), - [anon_sym_LT_DASH] = ACTIONS(1454), - [sym_none] = ACTIONS(1456), - [sym_true] = ACTIONS(1456), - [sym_false] = ACTIONS(1456), - [sym_nil] = ACTIONS(1456), - [anon_sym_if] = ACTIONS(1827), - [anon_sym_DOLLARif] = ACTIONS(1460), - [anon_sym_match] = ACTIONS(1462), - [anon_sym_select] = ACTIONS(1464), - [anon_sym_lock] = ACTIONS(1466), - [anon_sym_rlock] = ACTIONS(1466), - [anon_sym_unsafe] = ACTIONS(1833), - [anon_sym_sql] = ACTIONS(1470), - [sym_int_literal] = ACTIONS(1456), - [sym_float_literal] = ACTIONS(1472), - [sym_rune_literal] = ACTIONS(1472), - [sym_pseudo_compile_time_identifier] = ACTIONS(1474), + [anon_sym_BANG] = ACTIONS(2483), + [anon_sym_go] = ACTIONS(2485), + [anon_sym_spawn] = ACTIONS(2487), + [anon_sym_json_DOTdecode] = ACTIONS(1450), + [anon_sym_LBRACK2] = ACTIONS(2489), + [anon_sym_TILDE] = ACTIONS(2479), + [anon_sym_CARET] = ACTIONS(2479), + [anon_sym_AMP] = ACTIONS(2491), + [anon_sym_LT_DASH] = ACTIONS(2493), + [sym_none] = ACTIONS(1458), + [sym_true] = ACTIONS(1458), + [sym_false] = ACTIONS(1458), + [sym_nil] = ACTIONS(1458), + [anon_sym_if] = ACTIONS(1833), + [anon_sym_DOLLARif] = ACTIONS(1462), + [anon_sym_match] = ACTIONS(1464), + [anon_sym_select] = ACTIONS(2495), + [anon_sym_lock] = ACTIONS(2497), + [anon_sym_rlock] = ACTIONS(2497), + [anon_sym_unsafe] = ACTIONS(1839), + [anon_sym_sql] = ACTIONS(1472), + [sym_int_literal] = ACTIONS(1458), + [sym_float_literal] = ACTIONS(1474), + [sym_rune_literal] = ACTIONS(1474), + [sym_pseudo_compile_time_identifier] = ACTIONS(1476), [anon_sym_shared] = ACTIONS(83), [anon_sym_map_LBRACK] = ACTIONS(85), [anon_sym_chan] = ACTIONS(87), [anon_sym_thread] = ACTIONS(89), [anon_sym_atomic] = ACTIONS(91), - [sym___double_quote] = ACTIONS(1478), - [sym___single_quote] = ACTIONS(1480), - [sym___c_double_quote] = ACTIONS(1482), - [sym___c_single_quote] = ACTIONS(1484), - [sym___r_double_quote] = ACTIONS(1486), - [sym___r_single_quote] = ACTIONS(1488), + [sym___double_quote] = ACTIONS(1480), + [sym___single_quote] = ACTIONS(1482), + [sym___c_double_quote] = ACTIONS(1484), + [sym___c_single_quote] = ACTIONS(1486), + [sym___r_double_quote] = ACTIONS(1488), + [sym___r_single_quote] = ACTIONS(1490), }, [563] = { [sym_line_comment] = STATE(563), [sym_block_comment] = STATE(563), - [sym__expression] = STATE(1627), - [sym__expression_without_blocks] = STATE(1891), - [sym__expression_with_blocks] = STATE(1891), - [sym_inc_expression] = STATE(1893), - [sym_dec_expression] = STATE(1893), - [sym_or_block_expression] = STATE(1893), - [sym_option_propagation_expression] = STATE(1893), - [sym_result_propagation_expression] = STATE(1893), - [sym_anon_struct_value_expression] = STATE(1895), - [sym_go_expression] = STATE(1893), - [sym_spawn_expression] = STATE(1893), - [sym_parenthesized_expression] = STATE(1893), - [sym_call_expression] = STATE(1893), - [sym_type_initializer] = STATE(1895), - [sym_function_literal] = STATE(1893), - [sym_reference_expression] = STATE(1782), - [sym_type_reference_expression] = STATE(3541), - [sym_unary_expression] = STATE(1893), - [sym_receive_expression] = STATE(1893), - [sym_binary_expression] = STATE(1893), - [sym_as_type_cast_expression] = STATE(1893), - [sym__max_group] = STATE(1893), - [sym_literal] = STATE(1889), - [sym_map_init_expression] = STATE(1895), - [sym_array_creation] = STATE(1893), - [sym_fixed_array_creation] = STATE(1893), - [sym_selector_expression] = STATE(1893), - [sym_index_expression] = STATE(1893), - [sym_slice_expression] = STATE(1893), - [sym_if_expression] = STATE(1895), - [sym_compile_time_if_expression] = STATE(1895), - [sym_is_expression] = STATE(1893), - [sym_in_expression] = STATE(1893), - [sym_enum_fetch] = STATE(1893), - [sym_match_expression] = STATE(1895), - [sym_select_expression] = STATE(1895), - [sym_lock_expression] = STATE(1895), - [sym_unsafe_expression] = STATE(1895), - [sym_sql_expression] = STATE(1895), - [sym_c_string_literal] = STATE(1882), - [sym_raw_string_literal] = STATE(1882), - [sym_interpreted_string_literal] = STATE(1882), - [sym_mutability_modifiers] = STATE(561), - [sym_plain_type] = STATE(4316), - [sym__plain_type_without_special] = STATE(2302), - [sym_anon_struct_type] = STATE(2303), - [sym_multi_return_type] = STATE(2302), - [sym_result_type] = STATE(2302), - [sym_option_type] = STATE(2302), - [sym_qualified_type] = STATE(3541), - [sym_fixed_array_type] = STATE(2303), - [sym_array_type] = STATE(2303), - [sym_pointer_type] = STATE(2303), - [sym_wrong_pointer_type] = STATE(2303), - [sym_map_type] = STATE(2303), - [sym_channel_type] = STATE(2303), - [sym_shared_type] = STATE(2303), - [sym_thread_type] = STATE(2303), - [sym_atomic_type] = STATE(2303), - [sym_generic_type] = STATE(2303), - [sym_function_type] = STATE(2303), - [sym_identifier] = ACTIONS(3170), + [sym__expression] = STATE(1109), + [sym__expression_without_blocks] = STATE(1210), + [sym__expression_with_blocks] = STATE(1210), + [sym_inc_expression] = STATE(1211), + [sym_dec_expression] = STATE(1211), + [sym_or_block_expression] = STATE(1211), + [sym_option_propagation_expression] = STATE(1211), + [sym_result_propagation_expression] = STATE(1211), + [sym_anon_struct_value_expression] = STATE(1212), + [sym_go_expression] = STATE(1211), + [sym_spawn_expression] = STATE(1211), + [sym_parenthesized_expression] = STATE(1211), + [sym_call_expression] = STATE(1211), + [sym_type_initializer] = STATE(1212), + [sym_function_literal] = STATE(1211), + [sym_reference_expression] = STATE(1233), + [sym_type_reference_expression] = STATE(3460), + [sym_unary_expression] = STATE(1211), + [sym_receive_expression] = STATE(1211), + [sym_binary_expression] = STATE(1211), + [sym_as_type_cast_expression] = STATE(1211), + [sym__max_group] = STATE(1211), + [sym_literal] = STATE(1209), + [sym_map_init_expression] = STATE(1212), + [sym_array_creation] = STATE(1211), + [sym_fixed_array_creation] = STATE(1211), + [sym_selector_expression] = STATE(1211), + [sym_index_expression] = STATE(1211), + [sym_slice_expression] = STATE(1211), + [sym_if_expression] = STATE(1212), + [sym_compile_time_if_expression] = STATE(1212), + [sym_is_expression] = STATE(1211), + [sym_in_expression] = STATE(1211), + [sym_enum_fetch] = STATE(1211), + [sym_match_expression] = STATE(1212), + [sym_select_expression] = STATE(1212), + [sym_lock_expression] = STATE(1212), + [sym_unsafe_expression] = STATE(1212), + [sym_sql_expression] = STATE(1212), + [sym_c_string_literal] = STATE(1201), + [sym_raw_string_literal] = STATE(1201), + [sym_interpreted_string_literal] = STATE(1201), + [sym_mutability_modifiers] = STATE(589), + [sym_plain_type] = STATE(4170), + [sym__plain_type_without_special] = STATE(2360), + [sym_anon_struct_type] = STATE(2362), + [sym_multi_return_type] = STATE(2360), + [sym_result_type] = STATE(2360), + [sym_option_type] = STATE(2360), + [sym_qualified_type] = STATE(3460), + [sym_fixed_array_type] = STATE(2362), + [sym_array_type] = STATE(2362), + [sym_pointer_type] = STATE(2362), + [sym_wrong_pointer_type] = STATE(2362), + [sym_map_type] = STATE(2362), + [sym_channel_type] = STATE(2362), + [sym_shared_type] = STATE(2362), + [sym_thread_type] = STATE(2362), + [sym_atomic_type] = STATE(2362), + [sym_generic_type] = STATE(2362), + [sym_function_type] = STATE(2362), + [sym_identifier] = ACTIONS(1139), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(3172), - [anon_sym_LBRACE] = ACTIONS(3174), - [anon_sym_LPAREN] = ACTIONS(3176), - [anon_sym_fn] = ACTIONS(3178), - [anon_sym_PLUS] = ACTIONS(3180), - [anon_sym_DASH] = ACTIONS(3180), - [anon_sym_STAR] = ACTIONS(3182), - [anon_sym_struct] = ACTIONS(3184), + [anon_sym_DOT] = ACTIONS(631), + [anon_sym_LBRACE] = ACTIONS(633), + [anon_sym_LPAREN] = ACTIONS(637), + [anon_sym_fn] = ACTIONS(641), + [anon_sym_PLUS] = ACTIONS(643), + [anon_sym_DASH] = ACTIONS(643), + [anon_sym_STAR] = ACTIONS(645), + [anon_sym_struct] = ACTIONS(649), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(3186), - [anon_sym_go] = ACTIONS(3188), - [anon_sym_spawn] = ACTIONS(3190), - [anon_sym_json_DOTdecode] = ACTIONS(3192), - [anon_sym_LBRACK2] = ACTIONS(3194), - [anon_sym_TILDE] = ACTIONS(3180), - [anon_sym_CARET] = ACTIONS(3180), - [anon_sym_AMP] = ACTIONS(3196), - [anon_sym_LT_DASH] = ACTIONS(3198), - [sym_none] = ACTIONS(3200), - [sym_true] = ACTIONS(3200), - [sym_false] = ACTIONS(3200), - [sym_nil] = ACTIONS(3200), - [anon_sym_if] = ACTIONS(3202), - [anon_sym_DOLLARif] = ACTIONS(3204), - [anon_sym_match] = ACTIONS(3206), - [anon_sym_select] = ACTIONS(3208), - [anon_sym_lock] = ACTIONS(3210), - [anon_sym_rlock] = ACTIONS(3210), - [anon_sym_unsafe] = ACTIONS(3212), - [anon_sym_sql] = ACTIONS(3214), - [sym_int_literal] = ACTIONS(3200), - [sym_float_literal] = ACTIONS(3216), - [sym_rune_literal] = ACTIONS(3216), - [sym_pseudo_compile_time_identifier] = ACTIONS(3218), + [anon_sym_BANG] = ACTIONS(655), + [anon_sym_go] = ACTIONS(657), + [anon_sym_spawn] = ACTIONS(659), + [anon_sym_json_DOTdecode] = ACTIONS(661), + [anon_sym_LBRACK2] = ACTIONS(663), + [anon_sym_TILDE] = ACTIONS(643), + [anon_sym_CARET] = ACTIONS(643), + [anon_sym_AMP] = ACTIONS(665), + [anon_sym_LT_DASH] = ACTIONS(667), + [sym_none] = ACTIONS(669), + [sym_true] = ACTIONS(669), + [sym_false] = ACTIONS(669), + [sym_nil] = ACTIONS(669), + [anon_sym_if] = ACTIONS(671), + [anon_sym_DOLLARif] = ACTIONS(673), + [anon_sym_match] = ACTIONS(675), + [anon_sym_select] = ACTIONS(677), + [anon_sym_lock] = ACTIONS(679), + [anon_sym_rlock] = ACTIONS(679), + [anon_sym_unsafe] = ACTIONS(681), + [anon_sym_sql] = ACTIONS(683), + [sym_int_literal] = ACTIONS(669), + [sym_float_literal] = ACTIONS(685), + [sym_rune_literal] = ACTIONS(685), + [sym_pseudo_compile_time_identifier] = ACTIONS(687), [anon_sym_shared] = ACTIONS(83), [anon_sym_map_LBRACK] = ACTIONS(85), [anon_sym_chan] = ACTIONS(87), [anon_sym_thread] = ACTIONS(89), [anon_sym_atomic] = ACTIONS(91), - [sym___double_quote] = ACTIONS(3220), - [sym___single_quote] = ACTIONS(3222), - [sym___c_double_quote] = ACTIONS(3224), - [sym___c_single_quote] = ACTIONS(3226), - [sym___r_double_quote] = ACTIONS(3228), - [sym___r_single_quote] = ACTIONS(3230), + [sym___double_quote] = ACTIONS(689), + [sym___single_quote] = ACTIONS(691), + [sym___c_double_quote] = ACTIONS(693), + [sym___c_single_quote] = ACTIONS(695), + [sym___r_double_quote] = ACTIONS(697), + [sym___r_single_quote] = ACTIONS(699), }, [564] = { [sym_line_comment] = STATE(564), [sym_block_comment] = STATE(564), - [sym__expression] = STATE(2267), - [sym__expression_without_blocks] = STATE(2226), - [sym__expression_with_blocks] = STATE(2226), - [sym_inc_expression] = STATE(2247), - [sym_dec_expression] = STATE(2247), - [sym_or_block_expression] = STATE(2247), - [sym_option_propagation_expression] = STATE(2247), - [sym_result_propagation_expression] = STATE(2247), - [sym_anon_struct_value_expression] = STATE(2248), - [sym_go_expression] = STATE(2247), - [sym_spawn_expression] = STATE(2247), - [sym_parenthesized_expression] = STATE(2247), - [sym_call_expression] = STATE(2247), - [sym_type_initializer] = STATE(2248), - [sym_function_literal] = STATE(2247), - [sym_reference_expression] = STATE(2252), - [sym_type_reference_expression] = STATE(3541), - [sym_unary_expression] = STATE(2247), - [sym_receive_expression] = STATE(2247), - [sym_binary_expression] = STATE(2247), - [sym_as_type_cast_expression] = STATE(2247), - [sym__max_group] = STATE(2247), - [sym_literal] = STATE(2155), - [sym_map_init_expression] = STATE(2248), - [sym_array_creation] = STATE(2247), - [sym_fixed_array_creation] = STATE(2247), - [sym_selector_expression] = STATE(2247), - [sym_index_expression] = STATE(2247), - [sym_slice_expression] = STATE(2247), - [sym_if_expression] = STATE(2248), - [sym_compile_time_if_expression] = STATE(2248), - [sym_is_expression] = STATE(2247), - [sym_in_expression] = STATE(2247), - [sym_enum_fetch] = STATE(2247), - [sym_match_expression] = STATE(2248), - [sym_select_expression] = STATE(2248), - [sym_lock_expression] = STATE(2248), - [sym_unsafe_expression] = STATE(2248), - [sym_sql_expression] = STATE(2248), - [sym_c_string_literal] = STATE(2153), - [sym_raw_string_literal] = STATE(2153), - [sym_interpreted_string_literal] = STATE(2153), - [sym_mutability_modifiers] = STATE(631), - [sym_plain_type] = STATE(4146), - [sym__plain_type_without_special] = STATE(2302), - [sym_anon_struct_type] = STATE(2303), - [sym_multi_return_type] = STATE(2302), - [sym_result_type] = STATE(2302), - [sym_option_type] = STATE(2302), - [sym_qualified_type] = STATE(3541), - [sym_fixed_array_type] = STATE(2303), - [sym_array_type] = STATE(2303), - [sym_pointer_type] = STATE(2303), - [sym_wrong_pointer_type] = STATE(2303), - [sym_map_type] = STATE(2303), - [sym_channel_type] = STATE(2303), - [sym_shared_type] = STATE(2303), - [sym_thread_type] = STATE(2303), - [sym_atomic_type] = STATE(2303), - [sym_generic_type] = STATE(2303), - [sym_function_type] = STATE(2303), - [sym_identifier] = ACTIONS(3286), + [sym__expression] = STATE(2522), + [sym__expression_without_blocks] = STATE(2347), + [sym__expression_with_blocks] = STATE(2347), + [sym_inc_expression] = STATE(2379), + [sym_dec_expression] = STATE(2379), + [sym_or_block_expression] = STATE(2379), + [sym_option_propagation_expression] = STATE(2379), + [sym_result_propagation_expression] = STATE(2379), + [sym_anon_struct_value_expression] = STATE(2378), + [sym_go_expression] = STATE(2379), + [sym_spawn_expression] = STATE(2379), + [sym_parenthesized_expression] = STATE(2379), + [sym_call_expression] = STATE(2379), + [sym_type_initializer] = STATE(2378), + [sym_function_literal] = STATE(2379), + [sym_reference_expression] = STATE(2377), + [sym_type_reference_expression] = STATE(3460), + [sym_unary_expression] = STATE(2379), + [sym_receive_expression] = STATE(2379), + [sym_binary_expression] = STATE(2379), + [sym_as_type_cast_expression] = STATE(2379), + [sym__max_group] = STATE(2379), + [sym_literal] = STATE(2392), + [sym_map_init_expression] = STATE(2378), + [sym_array_creation] = STATE(2379), + [sym_fixed_array_creation] = STATE(2379), + [sym_selector_expression] = STATE(2379), + [sym_index_expression] = STATE(2379), + [sym_slice_expression] = STATE(2379), + [sym_if_expression] = STATE(2378), + [sym_compile_time_if_expression] = STATE(2378), + [sym_is_expression] = STATE(2379), + [sym_in_expression] = STATE(2379), + [sym_enum_fetch] = STATE(2379), + [sym_match_expression] = STATE(2378), + [sym_select_expression] = STATE(2378), + [sym_lock_expression] = STATE(2378), + [sym_unsafe_expression] = STATE(2378), + [sym_sql_expression] = STATE(2378), + [sym_c_string_literal] = STATE(2401), + [sym_raw_string_literal] = STATE(2401), + [sym_interpreted_string_literal] = STATE(2401), + [sym_mutability_modifiers] = STATE(553), + [sym_plain_type] = STATE(4160), + [sym__plain_type_without_special] = STATE(2360), + [sym_anon_struct_type] = STATE(2362), + [sym_multi_return_type] = STATE(2360), + [sym_result_type] = STATE(2360), + [sym_option_type] = STATE(2360), + [sym_qualified_type] = STATE(3460), + [sym_fixed_array_type] = STATE(2362), + [sym_array_type] = STATE(2362), + [sym_pointer_type] = STATE(2362), + [sym_wrong_pointer_type] = STATE(2362), + [sym_map_type] = STATE(2362), + [sym_channel_type] = STATE(2362), + [sym_shared_type] = STATE(2362), + [sym_thread_type] = STATE(2362), + [sym_atomic_type] = STATE(2362), + [sym_generic_type] = STATE(2362), + [sym_function_type] = STATE(2362), + [sym_identifier] = ACTIONS(2477), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(3288), - [anon_sym_LBRACE] = ACTIONS(3290), - [anon_sym_LPAREN] = ACTIONS(3292), - [anon_sym_fn] = ACTIONS(3294), - [anon_sym_PLUS] = ACTIONS(3296), - [anon_sym_DASH] = ACTIONS(3296), - [anon_sym_STAR] = ACTIONS(3298), - [anon_sym_struct] = ACTIONS(3300), + [anon_sym_DOT] = ACTIONS(1430), + [anon_sym_LBRACE] = ACTIONS(1432), + [anon_sym_LPAREN] = ACTIONS(1434), + [anon_sym_fn] = ACTIONS(1436), + [anon_sym_PLUS] = ACTIONS(2479), + [anon_sym_DASH] = ACTIONS(2479), + [anon_sym_STAR] = ACTIONS(2481), + [anon_sym_struct] = ACTIONS(1442), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(3302), - [anon_sym_go] = ACTIONS(3304), - [anon_sym_spawn] = ACTIONS(3306), - [anon_sym_json_DOTdecode] = ACTIONS(3308), - [anon_sym_LBRACK2] = ACTIONS(3310), - [anon_sym_TILDE] = ACTIONS(3296), - [anon_sym_CARET] = ACTIONS(3296), - [anon_sym_AMP] = ACTIONS(3312), - [anon_sym_LT_DASH] = ACTIONS(3314), - [sym_none] = ACTIONS(3316), - [sym_true] = ACTIONS(3316), - [sym_false] = ACTIONS(3316), - [sym_nil] = ACTIONS(3316), - [anon_sym_if] = ACTIONS(3318), - [anon_sym_DOLLARif] = ACTIONS(3320), - [anon_sym_match] = ACTIONS(3322), - [anon_sym_select] = ACTIONS(3324), - [anon_sym_lock] = ACTIONS(3326), - [anon_sym_rlock] = ACTIONS(3326), - [anon_sym_unsafe] = ACTIONS(3328), - [anon_sym_sql] = ACTIONS(3330), - [sym_int_literal] = ACTIONS(3316), - [sym_float_literal] = ACTIONS(3332), - [sym_rune_literal] = ACTIONS(3332), - [sym_pseudo_compile_time_identifier] = ACTIONS(3334), + [anon_sym_BANG] = ACTIONS(2483), + [anon_sym_go] = ACTIONS(2485), + [anon_sym_spawn] = ACTIONS(2487), + [anon_sym_json_DOTdecode] = ACTIONS(1450), + [anon_sym_LBRACK2] = ACTIONS(2489), + [anon_sym_TILDE] = ACTIONS(2479), + [anon_sym_CARET] = ACTIONS(2479), + [anon_sym_AMP] = ACTIONS(2491), + [anon_sym_LT_DASH] = ACTIONS(2493), + [sym_none] = ACTIONS(1458), + [sym_true] = ACTIONS(1458), + [sym_false] = ACTIONS(1458), + [sym_nil] = ACTIONS(1458), + [anon_sym_if] = ACTIONS(1833), + [anon_sym_DOLLARif] = ACTIONS(1462), + [anon_sym_match] = ACTIONS(1464), + [anon_sym_select] = ACTIONS(2495), + [anon_sym_lock] = ACTIONS(2497), + [anon_sym_rlock] = ACTIONS(2497), + [anon_sym_unsafe] = ACTIONS(1839), + [anon_sym_sql] = ACTIONS(1472), + [sym_int_literal] = ACTIONS(1458), + [sym_float_literal] = ACTIONS(1474), + [sym_rune_literal] = ACTIONS(1474), + [sym_pseudo_compile_time_identifier] = ACTIONS(1476), [anon_sym_shared] = ACTIONS(83), [anon_sym_map_LBRACK] = ACTIONS(85), [anon_sym_chan] = ACTIONS(87), [anon_sym_thread] = ACTIONS(89), [anon_sym_atomic] = ACTIONS(91), - [sym___double_quote] = ACTIONS(3336), - [sym___single_quote] = ACTIONS(3338), - [sym___c_double_quote] = ACTIONS(3340), - [sym___c_single_quote] = ACTIONS(3342), - [sym___r_double_quote] = ACTIONS(3344), - [sym___r_single_quote] = ACTIONS(3346), + [sym___double_quote] = ACTIONS(1480), + [sym___single_quote] = ACTIONS(1482), + [sym___c_double_quote] = ACTIONS(1484), + [sym___c_single_quote] = ACTIONS(1486), + [sym___r_double_quote] = ACTIONS(1488), + [sym___r_single_quote] = ACTIONS(1490), }, [565] = { [sym_line_comment] = STATE(565), [sym_block_comment] = STATE(565), - [sym__expression] = STATE(2691), - [sym__expression_without_blocks] = STATE(2300), - [sym__expression_with_blocks] = STATE(2300), - [sym_inc_expression] = STATE(2307), - [sym_dec_expression] = STATE(2307), - [sym_or_block_expression] = STATE(2307), - [sym_option_propagation_expression] = STATE(2307), - [sym_result_propagation_expression] = STATE(2307), - [sym_anon_struct_value_expression] = STATE(2380), - [sym_go_expression] = STATE(2307), - [sym_spawn_expression] = STATE(2307), - [sym_parenthesized_expression] = STATE(2307), - [sym_call_expression] = STATE(2307), - [sym_type_initializer] = STATE(2380), - [sym_function_literal] = STATE(2307), - [sym_reference_expression] = STATE(2311), - [sym_type_reference_expression] = STATE(3541), - [sym_unary_expression] = STATE(2307), - [sym_receive_expression] = STATE(2307), - [sym_binary_expression] = STATE(2307), - [sym_as_type_cast_expression] = STATE(2307), - [sym__max_group] = STATE(2307), - [sym_literal] = STATE(2292), - [sym_map_init_expression] = STATE(2380), - [sym_array_creation] = STATE(2307), - [sym_fixed_array_creation] = STATE(2307), - [sym_selector_expression] = STATE(2307), - [sym_index_expression] = STATE(2307), - [sym_slice_expression] = STATE(2307), - [sym_if_expression] = STATE(2380), - [sym_compile_time_if_expression] = STATE(2380), - [sym_is_expression] = STATE(2307), - [sym_in_expression] = STATE(2307), - [sym_enum_fetch] = STATE(2307), - [sym_match_expression] = STATE(2380), - [sym_select_expression] = STATE(2380), - [sym_lock_expression] = STATE(2380), - [sym_unsafe_expression] = STATE(2380), - [sym_sql_expression] = STATE(2380), - [sym_c_string_literal] = STATE(2308), - [sym_raw_string_literal] = STATE(2308), - [sym_interpreted_string_literal] = STATE(2308), - [sym_mutability_modifiers] = STATE(939), - [sym_plain_type] = STATE(3552), - [sym__plain_type_without_special] = STATE(2302), - [sym_anon_struct_type] = STATE(2303), - [sym_multi_return_type] = STATE(2302), - [sym_result_type] = STATE(2302), - [sym_option_type] = STATE(2302), - [sym_qualified_type] = STATE(3541), - [sym_fixed_array_type] = STATE(2303), - [sym_array_type] = STATE(2303), - [sym_pointer_type] = STATE(2303), - [sym_wrong_pointer_type] = STATE(2303), - [sym_map_type] = STATE(2303), - [sym_channel_type] = STATE(2303), - [sym_shared_type] = STATE(2303), - [sym_thread_type] = STATE(2303), - [sym_atomic_type] = STATE(2303), - [sym_generic_type] = STATE(2303), - [sym_function_type] = STATE(2303), - [sym_identifier] = ACTIONS(1426), + [sym__expression] = STATE(2550), + [sym__expression_without_blocks] = STATE(2347), + [sym__expression_with_blocks] = STATE(2347), + [sym_inc_expression] = STATE(2379), + [sym_dec_expression] = STATE(2379), + [sym_or_block_expression] = STATE(2379), + [sym_option_propagation_expression] = STATE(2379), + [sym_result_propagation_expression] = STATE(2379), + [sym_anon_struct_value_expression] = STATE(2378), + [sym_go_expression] = STATE(2379), + [sym_spawn_expression] = STATE(2379), + [sym_parenthesized_expression] = STATE(2379), + [sym_call_expression] = STATE(2379), + [sym_type_initializer] = STATE(2378), + [sym_function_literal] = STATE(2379), + [sym_reference_expression] = STATE(2377), + [sym_type_reference_expression] = STATE(3460), + [sym_unary_expression] = STATE(2379), + [sym_receive_expression] = STATE(2379), + [sym_binary_expression] = STATE(2379), + [sym_as_type_cast_expression] = STATE(2379), + [sym__max_group] = STATE(2379), + [sym_literal] = STATE(2392), + [sym_map_init_expression] = STATE(2378), + [sym_array_creation] = STATE(2379), + [sym_fixed_array_creation] = STATE(2379), + [sym_selector_expression] = STATE(2379), + [sym_index_expression] = STATE(2379), + [sym_slice_expression] = STATE(2379), + [sym_if_expression] = STATE(2378), + [sym_compile_time_if_expression] = STATE(2378), + [sym_is_expression] = STATE(2379), + [sym_in_expression] = STATE(2379), + [sym_enum_fetch] = STATE(2379), + [sym_match_expression] = STATE(2378), + [sym_select_expression] = STATE(2378), + [sym_lock_expression] = STATE(2378), + [sym_unsafe_expression] = STATE(2378), + [sym_sql_expression] = STATE(2378), + [sym_c_string_literal] = STATE(2401), + [sym_raw_string_literal] = STATE(2401), + [sym_interpreted_string_literal] = STATE(2401), + [sym_mutability_modifiers] = STATE(553), + [sym_plain_type] = STATE(4160), + [sym__plain_type_without_special] = STATE(2360), + [sym_anon_struct_type] = STATE(2362), + [sym_multi_return_type] = STATE(2360), + [sym_result_type] = STATE(2360), + [sym_option_type] = STATE(2360), + [sym_qualified_type] = STATE(3460), + [sym_fixed_array_type] = STATE(2362), + [sym_array_type] = STATE(2362), + [sym_pointer_type] = STATE(2362), + [sym_wrong_pointer_type] = STATE(2362), + [sym_map_type] = STATE(2362), + [sym_channel_type] = STATE(2362), + [sym_shared_type] = STATE(2362), + [sym_thread_type] = STATE(2362), + [sym_atomic_type] = STATE(2362), + [sym_generic_type] = STATE(2362), + [sym_function_type] = STATE(2362), + [sym_identifier] = ACTIONS(2477), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1428), - [anon_sym_LBRACE] = ACTIONS(1430), - [anon_sym_LPAREN] = ACTIONS(1432), - [anon_sym_fn] = ACTIONS(1434), - [anon_sym_PLUS] = ACTIONS(2491), - [anon_sym_DASH] = ACTIONS(2491), - [anon_sym_STAR] = ACTIONS(2493), - [anon_sym_struct] = ACTIONS(1440), + [anon_sym_DOT] = ACTIONS(1430), + [anon_sym_LBRACE] = ACTIONS(1432), + [anon_sym_LPAREN] = ACTIONS(1434), + [anon_sym_fn] = ACTIONS(1436), + [anon_sym_PLUS] = ACTIONS(2479), + [anon_sym_DASH] = ACTIONS(2479), + [anon_sym_STAR] = ACTIONS(2481), + [anon_sym_struct] = ACTIONS(1442), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(2495), - [anon_sym_go] = ACTIONS(2497), - [anon_sym_spawn] = ACTIONS(2499), - [anon_sym_json_DOTdecode] = ACTIONS(1448), - [anon_sym_LBRACK2] = ACTIONS(1450), - [anon_sym_TILDE] = ACTIONS(2491), - [anon_sym_CARET] = ACTIONS(2491), - [anon_sym_AMP] = ACTIONS(2501), - [anon_sym_LT_DASH] = ACTIONS(2503), - [sym_none] = ACTIONS(1456), - [sym_true] = ACTIONS(1456), - [sym_false] = ACTIONS(1456), - [sym_nil] = ACTIONS(1456), - [anon_sym_if] = ACTIONS(1827), - [anon_sym_DOLLARif] = ACTIONS(1460), - [anon_sym_match] = ACTIONS(1462), - [anon_sym_select] = ACTIONS(1464), - [anon_sym_lock] = ACTIONS(1466), - [anon_sym_rlock] = ACTIONS(1466), - [anon_sym_unsafe] = ACTIONS(1833), - [anon_sym_sql] = ACTIONS(1470), - [sym_int_literal] = ACTIONS(1456), - [sym_float_literal] = ACTIONS(1472), - [sym_rune_literal] = ACTIONS(1472), - [sym_pseudo_compile_time_identifier] = ACTIONS(1474), + [anon_sym_BANG] = ACTIONS(2483), + [anon_sym_go] = ACTIONS(2485), + [anon_sym_spawn] = ACTIONS(2487), + [anon_sym_json_DOTdecode] = ACTIONS(1450), + [anon_sym_LBRACK2] = ACTIONS(2489), + [anon_sym_TILDE] = ACTIONS(2479), + [anon_sym_CARET] = ACTIONS(2479), + [anon_sym_AMP] = ACTIONS(2491), + [anon_sym_LT_DASH] = ACTIONS(2493), + [sym_none] = ACTIONS(1458), + [sym_true] = ACTIONS(1458), + [sym_false] = ACTIONS(1458), + [sym_nil] = ACTIONS(1458), + [anon_sym_if] = ACTIONS(1833), + [anon_sym_DOLLARif] = ACTIONS(1462), + [anon_sym_match] = ACTIONS(1464), + [anon_sym_select] = ACTIONS(2495), + [anon_sym_lock] = ACTIONS(2497), + [anon_sym_rlock] = ACTIONS(2497), + [anon_sym_unsafe] = ACTIONS(1839), + [anon_sym_sql] = ACTIONS(1472), + [sym_int_literal] = ACTIONS(1458), + [sym_float_literal] = ACTIONS(1474), + [sym_rune_literal] = ACTIONS(1474), + [sym_pseudo_compile_time_identifier] = ACTIONS(1476), [anon_sym_shared] = ACTIONS(83), [anon_sym_map_LBRACK] = ACTIONS(85), [anon_sym_chan] = ACTIONS(87), [anon_sym_thread] = ACTIONS(89), [anon_sym_atomic] = ACTIONS(91), - [sym___double_quote] = ACTIONS(1478), - [sym___single_quote] = ACTIONS(1480), - [sym___c_double_quote] = ACTIONS(1482), - [sym___c_single_quote] = ACTIONS(1484), - [sym___r_double_quote] = ACTIONS(1486), - [sym___r_single_quote] = ACTIONS(1488), + [sym___double_quote] = ACTIONS(1480), + [sym___single_quote] = ACTIONS(1482), + [sym___c_double_quote] = ACTIONS(1484), + [sym___c_single_quote] = ACTIONS(1486), + [sym___r_double_quote] = ACTIONS(1488), + [sym___r_single_quote] = ACTIONS(1490), }, [566] = { [sym_line_comment] = STATE(566), [sym_block_comment] = STATE(566), - [sym__expression] = STATE(1766), - [sym__expression_without_blocks] = STATE(2005), - [sym__expression_with_blocks] = STATE(2005), - [sym_inc_expression] = STATE(2032), - [sym_dec_expression] = STATE(2032), - [sym_or_block_expression] = STATE(2032), - [sym_option_propagation_expression] = STATE(2032), - [sym_result_propagation_expression] = STATE(2032), - [sym_anon_struct_value_expression] = STATE(2004), - [sym_go_expression] = STATE(2032), - [sym_spawn_expression] = STATE(2032), - [sym_parenthesized_expression] = STATE(2032), - [sym_call_expression] = STATE(2032), - [sym_type_initializer] = STATE(2004), - [sym_function_literal] = STATE(2032), - [sym_reference_expression] = STATE(1914), - [sym_type_reference_expression] = STATE(3541), - [sym_unary_expression] = STATE(2032), - [sym_receive_expression] = STATE(2032), - [sym_binary_expression] = STATE(2032), - [sym_as_type_cast_expression] = STATE(2032), - [sym__max_group] = STATE(2032), - [sym_literal] = STATE(2027), - [sym_map_init_expression] = STATE(2004), - [sym_array_creation] = STATE(2032), - [sym_fixed_array_creation] = STATE(2032), - [sym_selector_expression] = STATE(2032), - [sym_index_expression] = STATE(2032), - [sym_slice_expression] = STATE(2032), - [sym_if_expression] = STATE(2004), - [sym_compile_time_if_expression] = STATE(2004), - [sym_is_expression] = STATE(2032), - [sym_in_expression] = STATE(2032), - [sym_enum_fetch] = STATE(2032), - [sym_match_expression] = STATE(2004), - [sym_select_expression] = STATE(2004), - [sym_lock_expression] = STATE(2004), - [sym_unsafe_expression] = STATE(2004), - [sym_sql_expression] = STATE(2004), - [sym_c_string_literal] = STATE(2026), - [sym_raw_string_literal] = STATE(2026), - [sym_interpreted_string_literal] = STATE(2026), - [sym_mutability_modifiers] = STATE(562), - [sym_plain_type] = STATE(4065), - [sym__plain_type_without_special] = STATE(2302), - [sym_anon_struct_type] = STATE(2303), - [sym_multi_return_type] = STATE(2302), - [sym_result_type] = STATE(2302), - [sym_option_type] = STATE(2302), - [sym_qualified_type] = STATE(3541), - [sym_fixed_array_type] = STATE(2303), - [sym_array_type] = STATE(2303), - [sym_pointer_type] = STATE(2303), - [sym_wrong_pointer_type] = STATE(2303), - [sym_map_type] = STATE(2303), - [sym_channel_type] = STATE(2303), - [sym_shared_type] = STATE(2303), - [sym_thread_type] = STATE(2303), - [sym_atomic_type] = STATE(2303), - [sym_generic_type] = STATE(2303), - [sym_function_type] = STATE(2303), - [sym_identifier] = ACTIONS(3266), + [sym__expression] = STATE(1109), + [sym__expression_without_blocks] = STATE(1210), + [sym__expression_with_blocks] = STATE(1210), + [sym_inc_expression] = STATE(1211), + [sym_dec_expression] = STATE(1211), + [sym_or_block_expression] = STATE(1211), + [sym_option_propagation_expression] = STATE(1211), + [sym_result_propagation_expression] = STATE(1211), + [sym_anon_struct_value_expression] = STATE(1212), + [sym_go_expression] = STATE(1211), + [sym_spawn_expression] = STATE(1211), + [sym_parenthesized_expression] = STATE(1211), + [sym_call_expression] = STATE(1211), + [sym_type_initializer] = STATE(1212), + [sym_function_literal] = STATE(1211), + [sym_reference_expression] = STATE(1233), + [sym_type_reference_expression] = STATE(3460), + [sym_unary_expression] = STATE(1211), + [sym_receive_expression] = STATE(1211), + [sym_binary_expression] = STATE(1211), + [sym_as_type_cast_expression] = STATE(1211), + [sym__max_group] = STATE(1211), + [sym_literal] = STATE(1209), + [sym_map_init_expression] = STATE(1212), + [sym_array_creation] = STATE(1211), + [sym_fixed_array_creation] = STATE(1211), + [sym_selector_expression] = STATE(1211), + [sym_index_expression] = STATE(1211), + [sym_slice_expression] = STATE(1211), + [sym_if_expression] = STATE(1212), + [sym_compile_time_if_expression] = STATE(1212), + [sym_is_expression] = STATE(1211), + [sym_in_expression] = STATE(1211), + [sym_enum_fetch] = STATE(1211), + [sym_match_expression] = STATE(1212), + [sym_select_expression] = STATE(1212), + [sym_lock_expression] = STATE(1212), + [sym_unsafe_expression] = STATE(1212), + [sym_sql_expression] = STATE(1212), + [sym_c_string_literal] = STATE(1201), + [sym_raw_string_literal] = STATE(1201), + [sym_interpreted_string_literal] = STATE(1201), + [sym_mutability_modifiers] = STATE(589), + [sym_plain_type] = STATE(4157), + [sym__plain_type_without_special] = STATE(2360), + [sym_anon_struct_type] = STATE(2362), + [sym_multi_return_type] = STATE(2360), + [sym_result_type] = STATE(2360), + [sym_option_type] = STATE(2360), + [sym_qualified_type] = STATE(3460), + [sym_fixed_array_type] = STATE(2362), + [sym_array_type] = STATE(2362), + [sym_pointer_type] = STATE(2362), + [sym_wrong_pointer_type] = STATE(2362), + [sym_map_type] = STATE(2362), + [sym_channel_type] = STATE(2362), + [sym_shared_type] = STATE(2362), + [sym_thread_type] = STATE(2362), + [sym_atomic_type] = STATE(2362), + [sym_generic_type] = STATE(2362), + [sym_function_type] = STATE(2362), + [sym_identifier] = ACTIONS(1139), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(703), - [anon_sym_LBRACE] = ACTIONS(3268), - [anon_sym_LPAREN] = ACTIONS(709), - [anon_sym_fn] = ACTIONS(711), - [anon_sym_PLUS] = ACTIONS(713), - [anon_sym_DASH] = ACTIONS(713), - [anon_sym_STAR] = ACTIONS(715), - [anon_sym_struct] = ACTIONS(3270), + [anon_sym_DOT] = ACTIONS(631), + [anon_sym_LBRACE] = ACTIONS(633), + [anon_sym_LPAREN] = ACTIONS(637), + [anon_sym_fn] = ACTIONS(641), + [anon_sym_PLUS] = ACTIONS(643), + [anon_sym_DASH] = ACTIONS(643), + [anon_sym_STAR] = ACTIONS(645), + [anon_sym_struct] = ACTIONS(649), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(719), - [anon_sym_go] = ACTIONS(721), - [anon_sym_spawn] = ACTIONS(723), - [anon_sym_json_DOTdecode] = ACTIONS(725), - [anon_sym_LBRACK2] = ACTIONS(727), - [anon_sym_TILDE] = ACTIONS(713), - [anon_sym_CARET] = ACTIONS(713), - [anon_sym_AMP] = ACTIONS(729), - [anon_sym_LT_DASH] = ACTIONS(731), - [sym_none] = ACTIONS(733), - [sym_true] = ACTIONS(733), - [sym_false] = ACTIONS(733), - [sym_nil] = ACTIONS(733), - [anon_sym_if] = ACTIONS(3272), - [anon_sym_DOLLARif] = ACTIONS(3274), - [anon_sym_match] = ACTIONS(3276), - [anon_sym_select] = ACTIONS(3278), - [anon_sym_lock] = ACTIONS(3280), - [anon_sym_rlock] = ACTIONS(3280), - [anon_sym_unsafe] = ACTIONS(3282), - [anon_sym_sql] = ACTIONS(3284), - [sym_int_literal] = ACTIONS(733), - [sym_float_literal] = ACTIONS(751), - [sym_rune_literal] = ACTIONS(751), - [sym_pseudo_compile_time_identifier] = ACTIONS(753), + [anon_sym_BANG] = ACTIONS(655), + [anon_sym_go] = ACTIONS(657), + [anon_sym_spawn] = ACTIONS(659), + [anon_sym_json_DOTdecode] = ACTIONS(661), + [anon_sym_LBRACK2] = ACTIONS(663), + [anon_sym_TILDE] = ACTIONS(643), + [anon_sym_CARET] = ACTIONS(643), + [anon_sym_AMP] = ACTIONS(665), + [anon_sym_LT_DASH] = ACTIONS(667), + [sym_none] = ACTIONS(669), + [sym_true] = ACTIONS(669), + [sym_false] = ACTIONS(669), + [sym_nil] = ACTIONS(669), + [anon_sym_if] = ACTIONS(671), + [anon_sym_DOLLARif] = ACTIONS(673), + [anon_sym_match] = ACTIONS(675), + [anon_sym_select] = ACTIONS(677), + [anon_sym_lock] = ACTIONS(679), + [anon_sym_rlock] = ACTIONS(679), + [anon_sym_unsafe] = ACTIONS(681), + [anon_sym_sql] = ACTIONS(683), + [sym_int_literal] = ACTIONS(669), + [sym_float_literal] = ACTIONS(685), + [sym_rune_literal] = ACTIONS(685), + [sym_pseudo_compile_time_identifier] = ACTIONS(687), [anon_sym_shared] = ACTIONS(83), [anon_sym_map_LBRACK] = ACTIONS(85), [anon_sym_chan] = ACTIONS(87), [anon_sym_thread] = ACTIONS(89), [anon_sym_atomic] = ACTIONS(91), - [sym___double_quote] = ACTIONS(755), - [sym___single_quote] = ACTIONS(757), - [sym___c_double_quote] = ACTIONS(759), - [sym___c_single_quote] = ACTIONS(761), - [sym___r_double_quote] = ACTIONS(763), - [sym___r_single_quote] = ACTIONS(765), + [sym___double_quote] = ACTIONS(689), + [sym___single_quote] = ACTIONS(691), + [sym___c_double_quote] = ACTIONS(693), + [sym___c_single_quote] = ACTIONS(695), + [sym___r_double_quote] = ACTIONS(697), + [sym___r_single_quote] = ACTIONS(699), }, [567] = { [sym_line_comment] = STATE(567), [sym_block_comment] = STATE(567), - [sym__expression] = STATE(2828), - [sym__expression_without_blocks] = STATE(2300), - [sym__expression_with_blocks] = STATE(2300), - [sym_inc_expression] = STATE(2307), - [sym_dec_expression] = STATE(2307), - [sym_or_block_expression] = STATE(2307), - [sym_option_propagation_expression] = STATE(2307), - [sym_result_propagation_expression] = STATE(2307), - [sym_anon_struct_value_expression] = STATE(2380), - [sym_go_expression] = STATE(2307), - [sym_spawn_expression] = STATE(2307), - [sym_parenthesized_expression] = STATE(2307), - [sym_call_expression] = STATE(2307), - [sym_type_initializer] = STATE(2380), - [sym_function_literal] = STATE(2307), - [sym_reference_expression] = STATE(2311), - [sym_type_reference_expression] = STATE(3541), - [sym_unary_expression] = STATE(2307), - [sym_receive_expression] = STATE(2307), - [sym_binary_expression] = STATE(2307), - [sym_as_type_cast_expression] = STATE(2307), - [sym__max_group] = STATE(2307), - [sym_literal] = STATE(2292), - [sym_map_init_expression] = STATE(2380), - [sym_array_creation] = STATE(2307), - [sym_fixed_array_creation] = STATE(2307), - [sym_selector_expression] = STATE(2307), - [sym_index_expression] = STATE(2307), - [sym_slice_expression] = STATE(2307), - [sym_if_expression] = STATE(2380), - [sym_compile_time_if_expression] = STATE(2380), - [sym_is_expression] = STATE(2307), - [sym_in_expression] = STATE(2307), - [sym_enum_fetch] = STATE(2307), - [sym_match_expression] = STATE(2380), - [sym_select_expression] = STATE(2380), - [sym_lock_expression] = STATE(2380), - [sym_unsafe_expression] = STATE(2380), - [sym_sql_expression] = STATE(2380), - [sym_c_string_literal] = STATE(2308), - [sym_raw_string_literal] = STATE(2308), - [sym_interpreted_string_literal] = STATE(2308), - [sym_mutability_modifiers] = STATE(939), - [sym_plain_type] = STATE(4297), - [sym__plain_type_without_special] = STATE(2302), - [sym_anon_struct_type] = STATE(2303), - [sym_multi_return_type] = STATE(2302), - [sym_result_type] = STATE(2302), - [sym_option_type] = STATE(2302), - [sym_qualified_type] = STATE(3541), - [sym_fixed_array_type] = STATE(2303), - [sym_array_type] = STATE(2303), - [sym_pointer_type] = STATE(2303), - [sym_wrong_pointer_type] = STATE(2303), - [sym_map_type] = STATE(2303), - [sym_channel_type] = STATE(2303), - [sym_shared_type] = STATE(2303), - [sym_thread_type] = STATE(2303), - [sym_atomic_type] = STATE(2303), - [sym_generic_type] = STATE(2303), - [sym_function_type] = STATE(2303), - [sym_identifier] = ACTIONS(1426), + [sym__expression] = STATE(1109), + [sym__expression_without_blocks] = STATE(1210), + [sym__expression_with_blocks] = STATE(1210), + [sym_inc_expression] = STATE(1211), + [sym_dec_expression] = STATE(1211), + [sym_or_block_expression] = STATE(1211), + [sym_option_propagation_expression] = STATE(1211), + [sym_result_propagation_expression] = STATE(1211), + [sym_anon_struct_value_expression] = STATE(1212), + [sym_go_expression] = STATE(1211), + [sym_spawn_expression] = STATE(1211), + [sym_parenthesized_expression] = STATE(1211), + [sym_call_expression] = STATE(1211), + [sym_type_initializer] = STATE(1212), + [sym_function_literal] = STATE(1211), + [sym_reference_expression] = STATE(1233), + [sym_type_reference_expression] = STATE(3460), + [sym_unary_expression] = STATE(1211), + [sym_receive_expression] = STATE(1211), + [sym_binary_expression] = STATE(1211), + [sym_as_type_cast_expression] = STATE(1211), + [sym__max_group] = STATE(1211), + [sym_literal] = STATE(1209), + [sym_map_init_expression] = STATE(1212), + [sym_array_creation] = STATE(1211), + [sym_fixed_array_creation] = STATE(1211), + [sym_selector_expression] = STATE(1211), + [sym_index_expression] = STATE(1211), + [sym_slice_expression] = STATE(1211), + [sym_if_expression] = STATE(1212), + [sym_compile_time_if_expression] = STATE(1212), + [sym_is_expression] = STATE(1211), + [sym_in_expression] = STATE(1211), + [sym_enum_fetch] = STATE(1211), + [sym_match_expression] = STATE(1212), + [sym_select_expression] = STATE(1212), + [sym_lock_expression] = STATE(1212), + [sym_unsafe_expression] = STATE(1212), + [sym_sql_expression] = STATE(1212), + [sym_c_string_literal] = STATE(1201), + [sym_raw_string_literal] = STATE(1201), + [sym_interpreted_string_literal] = STATE(1201), + [sym_mutability_modifiers] = STATE(589), + [sym_plain_type] = STATE(4146), + [sym__plain_type_without_special] = STATE(2360), + [sym_anon_struct_type] = STATE(2362), + [sym_multi_return_type] = STATE(2360), + [sym_result_type] = STATE(2360), + [sym_option_type] = STATE(2360), + [sym_qualified_type] = STATE(3460), + [sym_fixed_array_type] = STATE(2362), + [sym_array_type] = STATE(2362), + [sym_pointer_type] = STATE(2362), + [sym_wrong_pointer_type] = STATE(2362), + [sym_map_type] = STATE(2362), + [sym_channel_type] = STATE(2362), + [sym_shared_type] = STATE(2362), + [sym_thread_type] = STATE(2362), + [sym_atomic_type] = STATE(2362), + [sym_generic_type] = STATE(2362), + [sym_function_type] = STATE(2362), + [sym_identifier] = ACTIONS(1139), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1428), - [anon_sym_LBRACE] = ACTIONS(1430), - [anon_sym_LPAREN] = ACTIONS(1432), - [anon_sym_fn] = ACTIONS(1434), - [anon_sym_PLUS] = ACTIONS(1436), - [anon_sym_DASH] = ACTIONS(1436), - [anon_sym_STAR] = ACTIONS(1438), - [anon_sym_struct] = ACTIONS(1440), + [anon_sym_DOT] = ACTIONS(631), + [anon_sym_LBRACE] = ACTIONS(633), + [anon_sym_LPAREN] = ACTIONS(637), + [anon_sym_fn] = ACTIONS(641), + [anon_sym_PLUS] = ACTIONS(643), + [anon_sym_DASH] = ACTIONS(643), + [anon_sym_STAR] = ACTIONS(645), + [anon_sym_struct] = ACTIONS(649), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(1442), - [anon_sym_go] = ACTIONS(1444), - [anon_sym_spawn] = ACTIONS(1446), - [anon_sym_json_DOTdecode] = ACTIONS(1448), - [anon_sym_LBRACK2] = ACTIONS(1450), - [anon_sym_TILDE] = ACTIONS(1436), - [anon_sym_CARET] = ACTIONS(1436), - [anon_sym_AMP] = ACTIONS(1452), - [anon_sym_LT_DASH] = ACTIONS(1454), - [sym_none] = ACTIONS(1456), - [sym_true] = ACTIONS(1456), - [sym_false] = ACTIONS(1456), - [sym_nil] = ACTIONS(1456), - [anon_sym_if] = ACTIONS(1827), - [anon_sym_DOLLARif] = ACTIONS(1460), - [anon_sym_match] = ACTIONS(1462), - [anon_sym_select] = ACTIONS(1464), - [anon_sym_lock] = ACTIONS(1466), - [anon_sym_rlock] = ACTIONS(1466), - [anon_sym_unsafe] = ACTIONS(1833), - [anon_sym_sql] = ACTIONS(1470), - [sym_int_literal] = ACTIONS(1456), - [sym_float_literal] = ACTIONS(1472), - [sym_rune_literal] = ACTIONS(1472), - [sym_pseudo_compile_time_identifier] = ACTIONS(1474), + [anon_sym_BANG] = ACTIONS(655), + [anon_sym_go] = ACTIONS(657), + [anon_sym_spawn] = ACTIONS(659), + [anon_sym_json_DOTdecode] = ACTIONS(661), + [anon_sym_LBRACK2] = ACTIONS(663), + [anon_sym_TILDE] = ACTIONS(643), + [anon_sym_CARET] = ACTIONS(643), + [anon_sym_AMP] = ACTIONS(665), + [anon_sym_LT_DASH] = ACTIONS(667), + [sym_none] = ACTIONS(669), + [sym_true] = ACTIONS(669), + [sym_false] = ACTIONS(669), + [sym_nil] = ACTIONS(669), + [anon_sym_if] = ACTIONS(671), + [anon_sym_DOLLARif] = ACTIONS(673), + [anon_sym_match] = ACTIONS(675), + [anon_sym_select] = ACTIONS(677), + [anon_sym_lock] = ACTIONS(679), + [anon_sym_rlock] = ACTIONS(679), + [anon_sym_unsafe] = ACTIONS(681), + [anon_sym_sql] = ACTIONS(683), + [sym_int_literal] = ACTIONS(669), + [sym_float_literal] = ACTIONS(685), + [sym_rune_literal] = ACTIONS(685), + [sym_pseudo_compile_time_identifier] = ACTIONS(687), [anon_sym_shared] = ACTIONS(83), [anon_sym_map_LBRACK] = ACTIONS(85), [anon_sym_chan] = ACTIONS(87), [anon_sym_thread] = ACTIONS(89), [anon_sym_atomic] = ACTIONS(91), - [sym___double_quote] = ACTIONS(1478), - [sym___single_quote] = ACTIONS(1480), - [sym___c_double_quote] = ACTIONS(1482), - [sym___c_single_quote] = ACTIONS(1484), - [sym___r_double_quote] = ACTIONS(1486), - [sym___r_single_quote] = ACTIONS(1488), + [sym___double_quote] = ACTIONS(689), + [sym___single_quote] = ACTIONS(691), + [sym___c_double_quote] = ACTIONS(693), + [sym___c_single_quote] = ACTIONS(695), + [sym___r_double_quote] = ACTIONS(697), + [sym___r_single_quote] = ACTIONS(699), }, [568] = { [sym_line_comment] = STATE(568), [sym_block_comment] = STATE(568), - [sym__expression] = STATE(217), - [sym__expression_without_blocks] = STATE(442), - [sym__expression_with_blocks] = STATE(442), - [sym_inc_expression] = STATE(439), - [sym_dec_expression] = STATE(439), - [sym_or_block_expression] = STATE(439), - [sym_option_propagation_expression] = STATE(439), - [sym_result_propagation_expression] = STATE(439), - [sym_anon_struct_value_expression] = STATE(438), - [sym_go_expression] = STATE(439), - [sym_spawn_expression] = STATE(439), - [sym_parenthesized_expression] = STATE(439), - [sym_call_expression] = STATE(439), - [sym_type_initializer] = STATE(438), - [sym_function_literal] = STATE(439), - [sym_reference_expression] = STATE(437), - [sym_type_reference_expression] = STATE(3541), - [sym_unary_expression] = STATE(439), - [sym_receive_expression] = STATE(439), - [sym_binary_expression] = STATE(439), - [sym_as_type_cast_expression] = STATE(439), - [sym__max_group] = STATE(439), - [sym_literal] = STATE(495), - [sym_map_init_expression] = STATE(438), - [sym_array_creation] = STATE(439), - [sym_fixed_array_creation] = STATE(439), - [sym_selector_expression] = STATE(439), - [sym_index_expression] = STATE(439), - [sym_slice_expression] = STATE(439), - [sym_if_expression] = STATE(438), - [sym_compile_time_if_expression] = STATE(438), - [sym_is_expression] = STATE(439), - [sym_in_expression] = STATE(439), - [sym_enum_fetch] = STATE(439), - [sym_match_expression] = STATE(438), - [sym_select_expression] = STATE(438), - [sym_lock_expression] = STATE(438), - [sym_unsafe_expression] = STATE(438), - [sym_sql_expression] = STATE(438), - [sym_c_string_literal] = STATE(496), - [sym_raw_string_literal] = STATE(496), - [sym_interpreted_string_literal] = STATE(496), - [sym_mutability_modifiers] = STATE(862), - [sym_plain_type] = STATE(4049), - [sym__plain_type_without_special] = STATE(2302), - [sym_anon_struct_type] = STATE(2303), - [sym_multi_return_type] = STATE(2302), - [sym_result_type] = STATE(2302), - [sym_option_type] = STATE(2302), - [sym_qualified_type] = STATE(3541), - [sym_fixed_array_type] = STATE(2303), - [sym_array_type] = STATE(2303), - [sym_pointer_type] = STATE(2303), - [sym_wrong_pointer_type] = STATE(2303), - [sym_map_type] = STATE(2303), - [sym_channel_type] = STATE(2303), - [sym_shared_type] = STATE(2303), - [sym_thread_type] = STATE(2303), - [sym_atomic_type] = STATE(2303), - [sym_generic_type] = STATE(2303), - [sym_function_type] = STATE(2303), - [sym_identifier] = ACTIONS(3096), + [sym__expression] = STATE(2267), + [sym__expression_without_blocks] = STATE(2347), + [sym__expression_with_blocks] = STATE(2347), + [sym_inc_expression] = STATE(2379), + [sym_dec_expression] = STATE(2379), + [sym_or_block_expression] = STATE(2379), + [sym_option_propagation_expression] = STATE(2379), + [sym_result_propagation_expression] = STATE(2379), + [sym_anon_struct_value_expression] = STATE(2378), + [sym_go_expression] = STATE(2379), + [sym_spawn_expression] = STATE(2379), + [sym_parenthesized_expression] = STATE(2379), + [sym_call_expression] = STATE(2379), + [sym_type_initializer] = STATE(2378), + [sym_function_literal] = STATE(2379), + [sym_reference_expression] = STATE(2377), + [sym_type_reference_expression] = STATE(3460), + [sym_unary_expression] = STATE(2379), + [sym_receive_expression] = STATE(2379), + [sym_binary_expression] = STATE(2379), + [sym_as_type_cast_expression] = STATE(2379), + [sym__max_group] = STATE(2379), + [sym_literal] = STATE(2392), + [sym_map_init_expression] = STATE(2378), + [sym_array_creation] = STATE(2379), + [sym_fixed_array_creation] = STATE(2379), + [sym_selector_expression] = STATE(2379), + [sym_index_expression] = STATE(2379), + [sym_slice_expression] = STATE(2379), + [sym_if_expression] = STATE(2378), + [sym_compile_time_if_expression] = STATE(2378), + [sym_is_expression] = STATE(2379), + [sym_in_expression] = STATE(2379), + [sym_enum_fetch] = STATE(2379), + [sym_match_expression] = STATE(2378), + [sym_select_expression] = STATE(2378), + [sym_lock_expression] = STATE(2378), + [sym_unsafe_expression] = STATE(2378), + [sym_sql_expression] = STATE(2378), + [sym_c_string_literal] = STATE(2401), + [sym_raw_string_literal] = STATE(2401), + [sym_interpreted_string_literal] = STATE(2401), + [sym_mutability_modifiers] = STATE(553), + [sym_plain_type] = STATE(4160), + [sym__plain_type_without_special] = STATE(2360), + [sym_anon_struct_type] = STATE(2362), + [sym_multi_return_type] = STATE(2360), + [sym_result_type] = STATE(2360), + [sym_option_type] = STATE(2360), + [sym_qualified_type] = STATE(3460), + [sym_fixed_array_type] = STATE(2362), + [sym_array_type] = STATE(2362), + [sym_pointer_type] = STATE(2362), + [sym_wrong_pointer_type] = STATE(2362), + [sym_map_type] = STATE(2362), + [sym_channel_type] = STATE(2362), + [sym_shared_type] = STATE(2362), + [sym_thread_type] = STATE(2362), + [sym_atomic_type] = STATE(2362), + [sym_generic_type] = STATE(2362), + [sym_function_type] = STATE(2362), + [sym_identifier] = ACTIONS(2477), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(17), - [anon_sym_LBRACE] = ACTIONS(3098), - [anon_sym_LPAREN] = ACTIONS(23), - [anon_sym_fn] = ACTIONS(485), - [anon_sym_PLUS] = ACTIONS(31), - [anon_sym_DASH] = ACTIONS(31), - [anon_sym_STAR] = ACTIONS(33), - [anon_sym_struct] = ACTIONS(487), + [anon_sym_DOT] = ACTIONS(1430), + [anon_sym_LBRACE] = ACTIONS(1432), + [anon_sym_LPAREN] = ACTIONS(1434), + [anon_sym_fn] = ACTIONS(1436), + [anon_sym_PLUS] = ACTIONS(2479), + [anon_sym_DASH] = ACTIONS(2479), + [anon_sym_STAR] = ACTIONS(2481), + [anon_sym_struct] = ACTIONS(1442), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(49), - [anon_sym_go] = ACTIONS(51), - [anon_sym_spawn] = ACTIONS(53), - [anon_sym_json_DOTdecode] = ACTIONS(55), - [anon_sym_LBRACK2] = ACTIONS(489), - [anon_sym_TILDE] = ACTIONS(31), - [anon_sym_CARET] = ACTIONS(31), - [anon_sym_AMP] = ACTIONS(59), - [anon_sym_LT_DASH] = ACTIONS(61), - [sym_none] = ACTIONS(63), - [sym_true] = ACTIONS(63), - [sym_false] = ACTIONS(63), - [sym_nil] = ACTIONS(63), - [anon_sym_if] = ACTIONS(65), - [anon_sym_DOLLARif] = ACTIONS(67), - [anon_sym_match] = ACTIONS(69), - [anon_sym_select] = ACTIONS(71), - [anon_sym_lock] = ACTIONS(73), - [anon_sym_rlock] = ACTIONS(73), - [anon_sym_unsafe] = ACTIONS(75), - [anon_sym_sql] = ACTIONS(77), - [sym_int_literal] = ACTIONS(63), - [sym_float_literal] = ACTIONS(79), - [sym_rune_literal] = ACTIONS(79), - [sym_pseudo_compile_time_identifier] = ACTIONS(81), + [anon_sym_BANG] = ACTIONS(2483), + [anon_sym_go] = ACTIONS(2485), + [anon_sym_spawn] = ACTIONS(2487), + [anon_sym_json_DOTdecode] = ACTIONS(1450), + [anon_sym_LBRACK2] = ACTIONS(2489), + [anon_sym_TILDE] = ACTIONS(2479), + [anon_sym_CARET] = ACTIONS(2479), + [anon_sym_AMP] = ACTIONS(2491), + [anon_sym_LT_DASH] = ACTIONS(2493), + [sym_none] = ACTIONS(1458), + [sym_true] = ACTIONS(1458), + [sym_false] = ACTIONS(1458), + [sym_nil] = ACTIONS(1458), + [anon_sym_if] = ACTIONS(1833), + [anon_sym_DOLLARif] = ACTIONS(1462), + [anon_sym_match] = ACTIONS(1464), + [anon_sym_select] = ACTIONS(2495), + [anon_sym_lock] = ACTIONS(2497), + [anon_sym_rlock] = ACTIONS(2497), + [anon_sym_unsafe] = ACTIONS(1839), + [anon_sym_sql] = ACTIONS(1472), + [sym_int_literal] = ACTIONS(1458), + [sym_float_literal] = ACTIONS(1474), + [sym_rune_literal] = ACTIONS(1474), + [sym_pseudo_compile_time_identifier] = ACTIONS(1476), [anon_sym_shared] = ACTIONS(83), [anon_sym_map_LBRACK] = ACTIONS(85), [anon_sym_chan] = ACTIONS(87), [anon_sym_thread] = ACTIONS(89), [anon_sym_atomic] = ACTIONS(91), - [sym___double_quote] = ACTIONS(115), - [sym___single_quote] = ACTIONS(117), - [sym___c_double_quote] = ACTIONS(119), - [sym___c_single_quote] = ACTIONS(121), - [sym___r_double_quote] = ACTIONS(123), - [sym___r_single_quote] = ACTIONS(125), + [sym___double_quote] = ACTIONS(1480), + [sym___single_quote] = ACTIONS(1482), + [sym___c_double_quote] = ACTIONS(1484), + [sym___c_single_quote] = ACTIONS(1486), + [sym___r_double_quote] = ACTIONS(1488), + [sym___r_single_quote] = ACTIONS(1490), }, [569] = { [sym_line_comment] = STATE(569), [sym_block_comment] = STATE(569), - [sym__expression] = STATE(2121), - [sym__expression_without_blocks] = STATE(2226), - [sym__expression_with_blocks] = STATE(2226), - [sym_inc_expression] = STATE(2247), - [sym_dec_expression] = STATE(2247), - [sym_or_block_expression] = STATE(2247), - [sym_option_propagation_expression] = STATE(2247), - [sym_result_propagation_expression] = STATE(2247), - [sym_anon_struct_value_expression] = STATE(2248), - [sym_go_expression] = STATE(2247), - [sym_spawn_expression] = STATE(2247), - [sym_parenthesized_expression] = STATE(2247), - [sym_call_expression] = STATE(2247), - [sym_type_initializer] = STATE(2248), - [sym_function_literal] = STATE(2247), - [sym_reference_expression] = STATE(2252), - [sym_type_reference_expression] = STATE(3541), - [sym_unary_expression] = STATE(2247), - [sym_receive_expression] = STATE(2247), - [sym_binary_expression] = STATE(2247), - [sym_as_type_cast_expression] = STATE(2247), - [sym__max_group] = STATE(2247), - [sym_literal] = STATE(2155), - [sym_map_init_expression] = STATE(2248), - [sym_array_creation] = STATE(2247), - [sym_fixed_array_creation] = STATE(2247), - [sym_selector_expression] = STATE(2247), - [sym_index_expression] = STATE(2247), - [sym_slice_expression] = STATE(2247), - [sym_if_expression] = STATE(2248), - [sym_compile_time_if_expression] = STATE(2248), - [sym_is_expression] = STATE(2247), - [sym_in_expression] = STATE(2247), - [sym_enum_fetch] = STATE(2247), - [sym_match_expression] = STATE(2248), - [sym_select_expression] = STATE(2248), - [sym_lock_expression] = STATE(2248), - [sym_unsafe_expression] = STATE(2248), - [sym_sql_expression] = STATE(2248), - [sym_c_string_literal] = STATE(2153), - [sym_raw_string_literal] = STATE(2153), - [sym_interpreted_string_literal] = STATE(2153), - [sym_mutability_modifiers] = STATE(631), - [sym_plain_type] = STATE(4146), - [sym__plain_type_without_special] = STATE(2302), - [sym_anon_struct_type] = STATE(2303), - [sym_multi_return_type] = STATE(2302), - [sym_result_type] = STATE(2302), - [sym_option_type] = STATE(2302), - [sym_qualified_type] = STATE(3541), - [sym_fixed_array_type] = STATE(2303), - [sym_array_type] = STATE(2303), - [sym_pointer_type] = STATE(2303), - [sym_wrong_pointer_type] = STATE(2303), - [sym_map_type] = STATE(2303), - [sym_channel_type] = STATE(2303), - [sym_shared_type] = STATE(2303), - [sym_thread_type] = STATE(2303), - [sym_atomic_type] = STATE(2303), - [sym_generic_type] = STATE(2303), - [sym_function_type] = STATE(2303), - [sym_identifier] = ACTIONS(3286), + [sym__expression] = STATE(1280), + [sym__expression_without_blocks] = STATE(1318), + [sym__expression_with_blocks] = STATE(1318), + [sym_inc_expression] = STATE(1319), + [sym_dec_expression] = STATE(1319), + [sym_or_block_expression] = STATE(1319), + [sym_option_propagation_expression] = STATE(1319), + [sym_result_propagation_expression] = STATE(1319), + [sym_anon_struct_value_expression] = STATE(1320), + [sym_go_expression] = STATE(1319), + [sym_spawn_expression] = STATE(1319), + [sym_parenthesized_expression] = STATE(1319), + [sym_call_expression] = STATE(1319), + [sym_type_initializer] = STATE(1320), + [sym_function_literal] = STATE(1319), + [sym_reference_expression] = STATE(1298), + [sym_type_reference_expression] = STATE(3460), + [sym_unary_expression] = STATE(1319), + [sym_receive_expression] = STATE(1319), + [sym_binary_expression] = STATE(1319), + [sym_as_type_cast_expression] = STATE(1319), + [sym__max_group] = STATE(1319), + [sym_literal] = STATE(1314), + [sym_map_init_expression] = STATE(1320), + [sym_array_creation] = STATE(1319), + [sym_fixed_array_creation] = STATE(1319), + [sym_selector_expression] = STATE(1319), + [sym_index_expression] = STATE(1319), + [sym_slice_expression] = STATE(1319), + [sym_if_expression] = STATE(1320), + [sym_compile_time_if_expression] = STATE(1320), + [sym_is_expression] = STATE(1319), + [sym_in_expression] = STATE(1319), + [sym_enum_fetch] = STATE(1319), + [sym_match_expression] = STATE(1320), + [sym_select_expression] = STATE(1320), + [sym_lock_expression] = STATE(1320), + [sym_unsafe_expression] = STATE(1320), + [sym_sql_expression] = STATE(1320), + [sym_c_string_literal] = STATE(1291), + [sym_raw_string_literal] = STATE(1291), + [sym_interpreted_string_literal] = STATE(1291), + [sym_mutability_modifiers] = STATE(639), + [sym_plain_type] = STATE(4307), + [sym__plain_type_without_special] = STATE(2360), + [sym_anon_struct_type] = STATE(2362), + [sym_multi_return_type] = STATE(2360), + [sym_result_type] = STATE(2360), + [sym_option_type] = STATE(2360), + [sym_qualified_type] = STATE(3460), + [sym_fixed_array_type] = STATE(2362), + [sym_array_type] = STATE(2362), + [sym_pointer_type] = STATE(2362), + [sym_wrong_pointer_type] = STATE(2362), + [sym_map_type] = STATE(2362), + [sym_channel_type] = STATE(2362), + [sym_shared_type] = STATE(2362), + [sym_thread_type] = STATE(2362), + [sym_atomic_type] = STATE(2362), + [sym_generic_type] = STATE(2362), + [sym_function_type] = STATE(2362), + [sym_identifier] = ACTIONS(1360), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(3288), - [anon_sym_LBRACE] = ACTIONS(3290), - [anon_sym_LPAREN] = ACTIONS(3292), - [anon_sym_fn] = ACTIONS(3294), - [anon_sym_PLUS] = ACTIONS(3296), - [anon_sym_DASH] = ACTIONS(3296), - [anon_sym_STAR] = ACTIONS(3298), - [anon_sym_struct] = ACTIONS(3300), + [anon_sym_DOT] = ACTIONS(1362), + [anon_sym_LBRACE] = ACTIONS(1364), + [anon_sym_LPAREN] = ACTIONS(1366), + [anon_sym_fn] = ACTIONS(1368), + [anon_sym_PLUS] = ACTIONS(1370), + [anon_sym_DASH] = ACTIONS(1370), + [anon_sym_STAR] = ACTIONS(1372), + [anon_sym_struct] = ACTIONS(1376), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(3302), - [anon_sym_go] = ACTIONS(3304), - [anon_sym_spawn] = ACTIONS(3306), - [anon_sym_json_DOTdecode] = ACTIONS(3308), - [anon_sym_LBRACK2] = ACTIONS(3310), - [anon_sym_TILDE] = ACTIONS(3296), - [anon_sym_CARET] = ACTIONS(3296), - [anon_sym_AMP] = ACTIONS(3312), - [anon_sym_LT_DASH] = ACTIONS(3314), - [sym_none] = ACTIONS(3316), - [sym_true] = ACTIONS(3316), - [sym_false] = ACTIONS(3316), - [sym_nil] = ACTIONS(3316), - [anon_sym_if] = ACTIONS(3318), - [anon_sym_DOLLARif] = ACTIONS(3320), - [anon_sym_match] = ACTIONS(3322), - [anon_sym_select] = ACTIONS(3324), - [anon_sym_lock] = ACTIONS(3326), - [anon_sym_rlock] = ACTIONS(3326), - [anon_sym_unsafe] = ACTIONS(3328), - [anon_sym_sql] = ACTIONS(3330), - [sym_int_literal] = ACTIONS(3316), - [sym_float_literal] = ACTIONS(3332), - [sym_rune_literal] = ACTIONS(3332), - [sym_pseudo_compile_time_identifier] = ACTIONS(3334), + [anon_sym_BANG] = ACTIONS(1378), + [anon_sym_go] = ACTIONS(1380), + [anon_sym_spawn] = ACTIONS(1382), + [anon_sym_json_DOTdecode] = ACTIONS(1384), + [anon_sym_LBRACK2] = ACTIONS(1386), + [anon_sym_TILDE] = ACTIONS(1370), + [anon_sym_CARET] = ACTIONS(1370), + [anon_sym_AMP] = ACTIONS(1388), + [anon_sym_LT_DASH] = ACTIONS(1390), + [sym_none] = ACTIONS(1392), + [sym_true] = ACTIONS(1392), + [sym_false] = ACTIONS(1392), + [sym_nil] = ACTIONS(1392), + [anon_sym_if] = ACTIONS(1865), + [anon_sym_DOLLARif] = ACTIONS(1396), + [anon_sym_match] = ACTIONS(1398), + [anon_sym_select] = ACTIONS(1400), + [anon_sym_lock] = ACTIONS(1402), + [anon_sym_rlock] = ACTIONS(1402), + [anon_sym_unsafe] = ACTIONS(1871), + [anon_sym_sql] = ACTIONS(1406), + [sym_int_literal] = ACTIONS(1392), + [sym_float_literal] = ACTIONS(1410), + [sym_rune_literal] = ACTIONS(1410), + [sym_pseudo_compile_time_identifier] = ACTIONS(1412), [anon_sym_shared] = ACTIONS(83), [anon_sym_map_LBRACK] = ACTIONS(85), [anon_sym_chan] = ACTIONS(87), [anon_sym_thread] = ACTIONS(89), [anon_sym_atomic] = ACTIONS(91), - [sym___double_quote] = ACTIONS(3336), - [sym___single_quote] = ACTIONS(3338), - [sym___c_double_quote] = ACTIONS(3340), - [sym___c_single_quote] = ACTIONS(3342), - [sym___r_double_quote] = ACTIONS(3344), - [sym___r_single_quote] = ACTIONS(3346), + [sym___double_quote] = ACTIONS(1414), + [sym___single_quote] = ACTIONS(1416), + [sym___c_double_quote] = ACTIONS(1418), + [sym___c_single_quote] = ACTIONS(1420), + [sym___r_double_quote] = ACTIONS(1422), + [sym___r_single_quote] = ACTIONS(1424), }, [570] = { [sym_line_comment] = STATE(570), [sym_block_comment] = STATE(570), - [sym__expression] = STATE(1766), - [sym__expression_without_blocks] = STATE(2005), - [sym__expression_with_blocks] = STATE(2005), - [sym_inc_expression] = STATE(2032), - [sym_dec_expression] = STATE(2032), - [sym_or_block_expression] = STATE(2032), - [sym_option_propagation_expression] = STATE(2032), - [sym_result_propagation_expression] = STATE(2032), - [sym_anon_struct_value_expression] = STATE(2004), - [sym_go_expression] = STATE(2032), - [sym_spawn_expression] = STATE(2032), - [sym_parenthesized_expression] = STATE(2032), - [sym_call_expression] = STATE(2032), - [sym_type_initializer] = STATE(2004), - [sym_function_literal] = STATE(2032), - [sym_reference_expression] = STATE(1914), - [sym_type_reference_expression] = STATE(3541), - [sym_unary_expression] = STATE(2032), - [sym_receive_expression] = STATE(2032), - [sym_binary_expression] = STATE(2032), - [sym_as_type_cast_expression] = STATE(2032), - [sym__max_group] = STATE(2032), - [sym_literal] = STATE(2027), - [sym_map_init_expression] = STATE(2004), - [sym_array_creation] = STATE(2032), - [sym_fixed_array_creation] = STATE(2032), - [sym_selector_expression] = STATE(2032), - [sym_index_expression] = STATE(2032), - [sym_slice_expression] = STATE(2032), - [sym_if_expression] = STATE(2004), - [sym_compile_time_if_expression] = STATE(2004), - [sym_is_expression] = STATE(2032), - [sym_in_expression] = STATE(2032), - [sym_enum_fetch] = STATE(2032), - [sym_match_expression] = STATE(2004), - [sym_select_expression] = STATE(2004), - [sym_lock_expression] = STATE(2004), - [sym_unsafe_expression] = STATE(2004), - [sym_sql_expression] = STATE(2004), - [sym_c_string_literal] = STATE(2026), - [sym_raw_string_literal] = STATE(2026), - [sym_interpreted_string_literal] = STATE(2026), - [sym_mutability_modifiers] = STATE(562), - [sym_plain_type] = STATE(4071), - [sym__plain_type_without_special] = STATE(2302), - [sym_anon_struct_type] = STATE(2303), - [sym_multi_return_type] = STATE(2302), - [sym_result_type] = STATE(2302), - [sym_option_type] = STATE(2302), - [sym_qualified_type] = STATE(3541), - [sym_fixed_array_type] = STATE(2303), - [sym_array_type] = STATE(2303), - [sym_pointer_type] = STATE(2303), - [sym_wrong_pointer_type] = STATE(2303), - [sym_map_type] = STATE(2303), - [sym_channel_type] = STATE(2303), - [sym_shared_type] = STATE(2303), - [sym_thread_type] = STATE(2303), - [sym_atomic_type] = STATE(2303), - [sym_generic_type] = STATE(2303), - [sym_function_type] = STATE(2303), - [sym_identifier] = ACTIONS(3266), + [sym__expression] = STATE(1274), + [sym__expression_without_blocks] = STATE(1318), + [sym__expression_with_blocks] = STATE(1318), + [sym_inc_expression] = STATE(1319), + [sym_dec_expression] = STATE(1319), + [sym_or_block_expression] = STATE(1319), + [sym_option_propagation_expression] = STATE(1319), + [sym_result_propagation_expression] = STATE(1319), + [sym_anon_struct_value_expression] = STATE(1320), + [sym_go_expression] = STATE(1319), + [sym_spawn_expression] = STATE(1319), + [sym_parenthesized_expression] = STATE(1319), + [sym_call_expression] = STATE(1319), + [sym_type_initializer] = STATE(1320), + [sym_function_literal] = STATE(1319), + [sym_reference_expression] = STATE(1298), + [sym_type_reference_expression] = STATE(3460), + [sym_unary_expression] = STATE(1319), + [sym_receive_expression] = STATE(1319), + [sym_binary_expression] = STATE(1319), + [sym_as_type_cast_expression] = STATE(1319), + [sym__max_group] = STATE(1319), + [sym_literal] = STATE(1314), + [sym_map_init_expression] = STATE(1320), + [sym_array_creation] = STATE(1319), + [sym_fixed_array_creation] = STATE(1319), + [sym_selector_expression] = STATE(1319), + [sym_index_expression] = STATE(1319), + [sym_slice_expression] = STATE(1319), + [sym_if_expression] = STATE(1320), + [sym_compile_time_if_expression] = STATE(1320), + [sym_is_expression] = STATE(1319), + [sym_in_expression] = STATE(1319), + [sym_enum_fetch] = STATE(1319), + [sym_match_expression] = STATE(1320), + [sym_select_expression] = STATE(1320), + [sym_lock_expression] = STATE(1320), + [sym_unsafe_expression] = STATE(1320), + [sym_sql_expression] = STATE(1320), + [sym_c_string_literal] = STATE(1291), + [sym_raw_string_literal] = STATE(1291), + [sym_interpreted_string_literal] = STATE(1291), + [sym_mutability_modifiers] = STATE(639), + [sym_plain_type] = STATE(4307), + [sym__plain_type_without_special] = STATE(2360), + [sym_anon_struct_type] = STATE(2362), + [sym_multi_return_type] = STATE(2360), + [sym_result_type] = STATE(2360), + [sym_option_type] = STATE(2360), + [sym_qualified_type] = STATE(3460), + [sym_fixed_array_type] = STATE(2362), + [sym_array_type] = STATE(2362), + [sym_pointer_type] = STATE(2362), + [sym_wrong_pointer_type] = STATE(2362), + [sym_map_type] = STATE(2362), + [sym_channel_type] = STATE(2362), + [sym_shared_type] = STATE(2362), + [sym_thread_type] = STATE(2362), + [sym_atomic_type] = STATE(2362), + [sym_generic_type] = STATE(2362), + [sym_function_type] = STATE(2362), + [sym_identifier] = ACTIONS(1360), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(703), - [anon_sym_LBRACE] = ACTIONS(3268), - [anon_sym_LPAREN] = ACTIONS(709), - [anon_sym_fn] = ACTIONS(711), - [anon_sym_PLUS] = ACTIONS(713), - [anon_sym_DASH] = ACTIONS(713), - [anon_sym_STAR] = ACTIONS(715), - [anon_sym_struct] = ACTIONS(3270), + [anon_sym_DOT] = ACTIONS(1362), + [anon_sym_LBRACE] = ACTIONS(1364), + [anon_sym_LPAREN] = ACTIONS(1366), + [anon_sym_fn] = ACTIONS(1368), + [anon_sym_PLUS] = ACTIONS(1370), + [anon_sym_DASH] = ACTIONS(1370), + [anon_sym_STAR] = ACTIONS(1372), + [anon_sym_struct] = ACTIONS(1376), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(719), - [anon_sym_go] = ACTIONS(721), - [anon_sym_spawn] = ACTIONS(723), - [anon_sym_json_DOTdecode] = ACTIONS(725), - [anon_sym_LBRACK2] = ACTIONS(727), - [anon_sym_TILDE] = ACTIONS(713), - [anon_sym_CARET] = ACTIONS(713), - [anon_sym_AMP] = ACTIONS(729), - [anon_sym_LT_DASH] = ACTIONS(731), - [sym_none] = ACTIONS(733), - [sym_true] = ACTIONS(733), - [sym_false] = ACTIONS(733), - [sym_nil] = ACTIONS(733), - [anon_sym_if] = ACTIONS(3272), - [anon_sym_DOLLARif] = ACTIONS(3274), - [anon_sym_match] = ACTIONS(3276), - [anon_sym_select] = ACTIONS(3278), - [anon_sym_lock] = ACTIONS(3280), - [anon_sym_rlock] = ACTIONS(3280), - [anon_sym_unsafe] = ACTIONS(3282), - [anon_sym_sql] = ACTIONS(3284), - [sym_int_literal] = ACTIONS(733), - [sym_float_literal] = ACTIONS(751), - [sym_rune_literal] = ACTIONS(751), - [sym_pseudo_compile_time_identifier] = ACTIONS(753), + [anon_sym_BANG] = ACTIONS(1378), + [anon_sym_go] = ACTIONS(1380), + [anon_sym_spawn] = ACTIONS(1382), + [anon_sym_json_DOTdecode] = ACTIONS(1384), + [anon_sym_LBRACK2] = ACTIONS(1386), + [anon_sym_TILDE] = ACTIONS(1370), + [anon_sym_CARET] = ACTIONS(1370), + [anon_sym_AMP] = ACTIONS(1388), + [anon_sym_LT_DASH] = ACTIONS(1390), + [sym_none] = ACTIONS(1392), + [sym_true] = ACTIONS(1392), + [sym_false] = ACTIONS(1392), + [sym_nil] = ACTIONS(1392), + [anon_sym_if] = ACTIONS(1865), + [anon_sym_DOLLARif] = ACTIONS(1396), + [anon_sym_match] = ACTIONS(1398), + [anon_sym_select] = ACTIONS(1400), + [anon_sym_lock] = ACTIONS(1402), + [anon_sym_rlock] = ACTIONS(1402), + [anon_sym_unsafe] = ACTIONS(1871), + [anon_sym_sql] = ACTIONS(1406), + [sym_int_literal] = ACTIONS(1392), + [sym_float_literal] = ACTIONS(1410), + [sym_rune_literal] = ACTIONS(1410), + [sym_pseudo_compile_time_identifier] = ACTIONS(1412), [anon_sym_shared] = ACTIONS(83), [anon_sym_map_LBRACK] = ACTIONS(85), [anon_sym_chan] = ACTIONS(87), [anon_sym_thread] = ACTIONS(89), [anon_sym_atomic] = ACTIONS(91), - [sym___double_quote] = ACTIONS(755), - [sym___single_quote] = ACTIONS(757), - [sym___c_double_quote] = ACTIONS(759), - [sym___c_single_quote] = ACTIONS(761), - [sym___r_double_quote] = ACTIONS(763), - [sym___r_single_quote] = ACTIONS(765), + [sym___double_quote] = ACTIONS(1414), + [sym___single_quote] = ACTIONS(1416), + [sym___c_double_quote] = ACTIONS(1418), + [sym___c_single_quote] = ACTIONS(1420), + [sym___r_double_quote] = ACTIONS(1422), + [sym___r_single_quote] = ACTIONS(1424), }, [571] = { [sym_line_comment] = STATE(571), [sym_block_comment] = STATE(571), - [sym__expression] = STATE(1665), - [sym__expression_without_blocks] = STATE(1891), - [sym__expression_with_blocks] = STATE(1891), - [sym_inc_expression] = STATE(1893), - [sym_dec_expression] = STATE(1893), - [sym_or_block_expression] = STATE(1893), - [sym_option_propagation_expression] = STATE(1893), - [sym_result_propagation_expression] = STATE(1893), - [sym_anon_struct_value_expression] = STATE(1895), - [sym_go_expression] = STATE(1893), - [sym_spawn_expression] = STATE(1893), - [sym_parenthesized_expression] = STATE(1893), - [sym_call_expression] = STATE(1893), - [sym_type_initializer] = STATE(1895), - [sym_function_literal] = STATE(1893), - [sym_reference_expression] = STATE(1782), - [sym_type_reference_expression] = STATE(3541), - [sym_unary_expression] = STATE(1893), - [sym_receive_expression] = STATE(1893), - [sym_binary_expression] = STATE(1893), - [sym_as_type_cast_expression] = STATE(1893), - [sym__max_group] = STATE(1893), - [sym_literal] = STATE(1889), - [sym_map_init_expression] = STATE(1895), - [sym_array_creation] = STATE(1893), - [sym_fixed_array_creation] = STATE(1893), - [sym_selector_expression] = STATE(1893), - [sym_index_expression] = STATE(1893), - [sym_slice_expression] = STATE(1893), - [sym_if_expression] = STATE(1895), - [sym_compile_time_if_expression] = STATE(1895), - [sym_is_expression] = STATE(1893), - [sym_in_expression] = STATE(1893), - [sym_enum_fetch] = STATE(1893), - [sym_match_expression] = STATE(1895), - [sym_select_expression] = STATE(1895), - [sym_lock_expression] = STATE(1895), - [sym_unsafe_expression] = STATE(1895), - [sym_sql_expression] = STATE(1895), - [sym_c_string_literal] = STATE(1882), - [sym_raw_string_literal] = STATE(1882), - [sym_interpreted_string_literal] = STATE(1882), - [sym_mutability_modifiers] = STATE(561), - [sym_plain_type] = STATE(4316), - [sym__plain_type_without_special] = STATE(2302), - [sym_anon_struct_type] = STATE(2303), - [sym_multi_return_type] = STATE(2302), - [sym_result_type] = STATE(2302), - [sym_option_type] = STATE(2302), - [sym_qualified_type] = STATE(3541), - [sym_fixed_array_type] = STATE(2303), - [sym_array_type] = STATE(2303), - [sym_pointer_type] = STATE(2303), - [sym_wrong_pointer_type] = STATE(2303), - [sym_map_type] = STATE(2303), - [sym_channel_type] = STATE(2303), - [sym_shared_type] = STATE(2303), - [sym_thread_type] = STATE(2303), - [sym_atomic_type] = STATE(2303), - [sym_generic_type] = STATE(2303), - [sym_function_type] = STATE(2303), - [sym_identifier] = ACTIONS(3170), + [sym__expression] = STATE(1272), + [sym__expression_without_blocks] = STATE(1318), + [sym__expression_with_blocks] = STATE(1318), + [sym_inc_expression] = STATE(1319), + [sym_dec_expression] = STATE(1319), + [sym_or_block_expression] = STATE(1319), + [sym_option_propagation_expression] = STATE(1319), + [sym_result_propagation_expression] = STATE(1319), + [sym_anon_struct_value_expression] = STATE(1320), + [sym_go_expression] = STATE(1319), + [sym_spawn_expression] = STATE(1319), + [sym_parenthesized_expression] = STATE(1319), + [sym_call_expression] = STATE(1319), + [sym_type_initializer] = STATE(1320), + [sym_function_literal] = STATE(1319), + [sym_reference_expression] = STATE(1298), + [sym_type_reference_expression] = STATE(3460), + [sym_unary_expression] = STATE(1319), + [sym_receive_expression] = STATE(1319), + [sym_binary_expression] = STATE(1319), + [sym_as_type_cast_expression] = STATE(1319), + [sym__max_group] = STATE(1319), + [sym_literal] = STATE(1314), + [sym_map_init_expression] = STATE(1320), + [sym_array_creation] = STATE(1319), + [sym_fixed_array_creation] = STATE(1319), + [sym_selector_expression] = STATE(1319), + [sym_index_expression] = STATE(1319), + [sym_slice_expression] = STATE(1319), + [sym_if_expression] = STATE(1320), + [sym_compile_time_if_expression] = STATE(1320), + [sym_is_expression] = STATE(1319), + [sym_in_expression] = STATE(1319), + [sym_enum_fetch] = STATE(1319), + [sym_match_expression] = STATE(1320), + [sym_select_expression] = STATE(1320), + [sym_lock_expression] = STATE(1320), + [sym_unsafe_expression] = STATE(1320), + [sym_sql_expression] = STATE(1320), + [sym_c_string_literal] = STATE(1291), + [sym_raw_string_literal] = STATE(1291), + [sym_interpreted_string_literal] = STATE(1291), + [sym_mutability_modifiers] = STATE(639), + [sym_plain_type] = STATE(4307), + [sym__plain_type_without_special] = STATE(2360), + [sym_anon_struct_type] = STATE(2362), + [sym_multi_return_type] = STATE(2360), + [sym_result_type] = STATE(2360), + [sym_option_type] = STATE(2360), + [sym_qualified_type] = STATE(3460), + [sym_fixed_array_type] = STATE(2362), + [sym_array_type] = STATE(2362), + [sym_pointer_type] = STATE(2362), + [sym_wrong_pointer_type] = STATE(2362), + [sym_map_type] = STATE(2362), + [sym_channel_type] = STATE(2362), + [sym_shared_type] = STATE(2362), + [sym_thread_type] = STATE(2362), + [sym_atomic_type] = STATE(2362), + [sym_generic_type] = STATE(2362), + [sym_function_type] = STATE(2362), + [sym_identifier] = ACTIONS(1360), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(3172), - [anon_sym_LBRACE] = ACTIONS(3174), - [anon_sym_LPAREN] = ACTIONS(3176), - [anon_sym_fn] = ACTIONS(3178), - [anon_sym_PLUS] = ACTIONS(3180), - [anon_sym_DASH] = ACTIONS(3180), - [anon_sym_STAR] = ACTIONS(3182), - [anon_sym_struct] = ACTIONS(3184), + [anon_sym_DOT] = ACTIONS(1362), + [anon_sym_LBRACE] = ACTIONS(1364), + [anon_sym_LPAREN] = ACTIONS(1366), + [anon_sym_fn] = ACTIONS(1368), + [anon_sym_PLUS] = ACTIONS(1370), + [anon_sym_DASH] = ACTIONS(1370), + [anon_sym_STAR] = ACTIONS(1372), + [anon_sym_struct] = ACTIONS(1376), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(3186), - [anon_sym_go] = ACTIONS(3188), - [anon_sym_spawn] = ACTIONS(3190), - [anon_sym_json_DOTdecode] = ACTIONS(3192), - [anon_sym_LBRACK2] = ACTIONS(3194), - [anon_sym_TILDE] = ACTIONS(3180), - [anon_sym_CARET] = ACTIONS(3180), - [anon_sym_AMP] = ACTIONS(3196), - [anon_sym_LT_DASH] = ACTIONS(3198), - [sym_none] = ACTIONS(3200), - [sym_true] = ACTIONS(3200), - [sym_false] = ACTIONS(3200), - [sym_nil] = ACTIONS(3200), - [anon_sym_if] = ACTIONS(3202), - [anon_sym_DOLLARif] = ACTIONS(3204), - [anon_sym_match] = ACTIONS(3206), - [anon_sym_select] = ACTIONS(3208), - [anon_sym_lock] = ACTIONS(3210), - [anon_sym_rlock] = ACTIONS(3210), - [anon_sym_unsafe] = ACTIONS(3212), - [anon_sym_sql] = ACTIONS(3214), - [sym_int_literal] = ACTIONS(3200), - [sym_float_literal] = ACTIONS(3216), - [sym_rune_literal] = ACTIONS(3216), - [sym_pseudo_compile_time_identifier] = ACTIONS(3218), + [anon_sym_BANG] = ACTIONS(1378), + [anon_sym_go] = ACTIONS(1380), + [anon_sym_spawn] = ACTIONS(1382), + [anon_sym_json_DOTdecode] = ACTIONS(1384), + [anon_sym_LBRACK2] = ACTIONS(1386), + [anon_sym_TILDE] = ACTIONS(1370), + [anon_sym_CARET] = ACTIONS(1370), + [anon_sym_AMP] = ACTIONS(1388), + [anon_sym_LT_DASH] = ACTIONS(1390), + [sym_none] = ACTIONS(1392), + [sym_true] = ACTIONS(1392), + [sym_false] = ACTIONS(1392), + [sym_nil] = ACTIONS(1392), + [anon_sym_if] = ACTIONS(1865), + [anon_sym_DOLLARif] = ACTIONS(1396), + [anon_sym_match] = ACTIONS(1398), + [anon_sym_select] = ACTIONS(1400), + [anon_sym_lock] = ACTIONS(1402), + [anon_sym_rlock] = ACTIONS(1402), + [anon_sym_unsafe] = ACTIONS(1871), + [anon_sym_sql] = ACTIONS(1406), + [sym_int_literal] = ACTIONS(1392), + [sym_float_literal] = ACTIONS(1410), + [sym_rune_literal] = ACTIONS(1410), + [sym_pseudo_compile_time_identifier] = ACTIONS(1412), [anon_sym_shared] = ACTIONS(83), [anon_sym_map_LBRACK] = ACTIONS(85), [anon_sym_chan] = ACTIONS(87), [anon_sym_thread] = ACTIONS(89), [anon_sym_atomic] = ACTIONS(91), - [sym___double_quote] = ACTIONS(3220), - [sym___single_quote] = ACTIONS(3222), - [sym___c_double_quote] = ACTIONS(3224), - [sym___c_single_quote] = ACTIONS(3226), - [sym___r_double_quote] = ACTIONS(3228), - [sym___r_single_quote] = ACTIONS(3230), + [sym___double_quote] = ACTIONS(1414), + [sym___single_quote] = ACTIONS(1416), + [sym___c_double_quote] = ACTIONS(1418), + [sym___c_single_quote] = ACTIONS(1420), + [sym___r_double_quote] = ACTIONS(1422), + [sym___r_single_quote] = ACTIONS(1424), }, [572] = { [sym_line_comment] = STATE(572), [sym_block_comment] = STATE(572), - [sym__expression] = STATE(1758), - [sym__expression_without_blocks] = STATE(2005), - [sym__expression_with_blocks] = STATE(2005), - [sym_inc_expression] = STATE(2032), - [sym_dec_expression] = STATE(2032), - [sym_or_block_expression] = STATE(2032), - [sym_option_propagation_expression] = STATE(2032), - [sym_result_propagation_expression] = STATE(2032), - [sym_anon_struct_value_expression] = STATE(2004), - [sym_go_expression] = STATE(2032), - [sym_spawn_expression] = STATE(2032), - [sym_parenthesized_expression] = STATE(2032), - [sym_call_expression] = STATE(2032), - [sym_type_initializer] = STATE(2004), - [sym_function_literal] = STATE(2032), - [sym_reference_expression] = STATE(1914), - [sym_type_reference_expression] = STATE(3541), - [sym_unary_expression] = STATE(2032), - [sym_receive_expression] = STATE(2032), - [sym_binary_expression] = STATE(2032), - [sym_as_type_cast_expression] = STATE(2032), - [sym__max_group] = STATE(2032), - [sym_literal] = STATE(2027), - [sym_map_init_expression] = STATE(2004), - [sym_array_creation] = STATE(2032), - [sym_fixed_array_creation] = STATE(2032), - [sym_selector_expression] = STATE(2032), - [sym_index_expression] = STATE(2032), - [sym_slice_expression] = STATE(2032), - [sym_if_expression] = STATE(2004), - [sym_compile_time_if_expression] = STATE(2004), - [sym_is_expression] = STATE(2032), - [sym_in_expression] = STATE(2032), - [sym_enum_fetch] = STATE(2032), - [sym_match_expression] = STATE(2004), - [sym_select_expression] = STATE(2004), - [sym_lock_expression] = STATE(2004), - [sym_unsafe_expression] = STATE(2004), - [sym_sql_expression] = STATE(2004), - [sym_c_string_literal] = STATE(2026), - [sym_raw_string_literal] = STATE(2026), - [sym_interpreted_string_literal] = STATE(2026), - [sym_mutability_modifiers] = STATE(562), - [sym_plain_type] = STATE(4191), - [sym__plain_type_without_special] = STATE(2302), - [sym_anon_struct_type] = STATE(2303), - [sym_multi_return_type] = STATE(2302), - [sym_result_type] = STATE(2302), - [sym_option_type] = STATE(2302), - [sym_qualified_type] = STATE(3541), - [sym_fixed_array_type] = STATE(2303), - [sym_array_type] = STATE(2303), - [sym_pointer_type] = STATE(2303), - [sym_wrong_pointer_type] = STATE(2303), - [sym_map_type] = STATE(2303), - [sym_channel_type] = STATE(2303), - [sym_shared_type] = STATE(2303), - [sym_thread_type] = STATE(2303), - [sym_atomic_type] = STATE(2303), - [sym_generic_type] = STATE(2303), - [sym_function_type] = STATE(2303), - [sym_identifier] = ACTIONS(3266), + [sym__expression] = STATE(1271), + [sym__expression_without_blocks] = STATE(1318), + [sym__expression_with_blocks] = STATE(1318), + [sym_inc_expression] = STATE(1319), + [sym_dec_expression] = STATE(1319), + [sym_or_block_expression] = STATE(1319), + [sym_option_propagation_expression] = STATE(1319), + [sym_result_propagation_expression] = STATE(1319), + [sym_anon_struct_value_expression] = STATE(1320), + [sym_go_expression] = STATE(1319), + [sym_spawn_expression] = STATE(1319), + [sym_parenthesized_expression] = STATE(1319), + [sym_call_expression] = STATE(1319), + [sym_type_initializer] = STATE(1320), + [sym_function_literal] = STATE(1319), + [sym_reference_expression] = STATE(1298), + [sym_type_reference_expression] = STATE(3460), + [sym_unary_expression] = STATE(1319), + [sym_receive_expression] = STATE(1319), + [sym_binary_expression] = STATE(1319), + [sym_as_type_cast_expression] = STATE(1319), + [sym__max_group] = STATE(1319), + [sym_literal] = STATE(1314), + [sym_map_init_expression] = STATE(1320), + [sym_array_creation] = STATE(1319), + [sym_fixed_array_creation] = STATE(1319), + [sym_selector_expression] = STATE(1319), + [sym_index_expression] = STATE(1319), + [sym_slice_expression] = STATE(1319), + [sym_if_expression] = STATE(1320), + [sym_compile_time_if_expression] = STATE(1320), + [sym_is_expression] = STATE(1319), + [sym_in_expression] = STATE(1319), + [sym_enum_fetch] = STATE(1319), + [sym_match_expression] = STATE(1320), + [sym_select_expression] = STATE(1320), + [sym_lock_expression] = STATE(1320), + [sym_unsafe_expression] = STATE(1320), + [sym_sql_expression] = STATE(1320), + [sym_c_string_literal] = STATE(1291), + [sym_raw_string_literal] = STATE(1291), + [sym_interpreted_string_literal] = STATE(1291), + [sym_mutability_modifiers] = STATE(639), + [sym_plain_type] = STATE(4307), + [sym__plain_type_without_special] = STATE(2360), + [sym_anon_struct_type] = STATE(2362), + [sym_multi_return_type] = STATE(2360), + [sym_result_type] = STATE(2360), + [sym_option_type] = STATE(2360), + [sym_qualified_type] = STATE(3460), + [sym_fixed_array_type] = STATE(2362), + [sym_array_type] = STATE(2362), + [sym_pointer_type] = STATE(2362), + [sym_wrong_pointer_type] = STATE(2362), + [sym_map_type] = STATE(2362), + [sym_channel_type] = STATE(2362), + [sym_shared_type] = STATE(2362), + [sym_thread_type] = STATE(2362), + [sym_atomic_type] = STATE(2362), + [sym_generic_type] = STATE(2362), + [sym_function_type] = STATE(2362), + [sym_identifier] = ACTIONS(1360), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(703), - [anon_sym_LBRACE] = ACTIONS(3268), - [anon_sym_LPAREN] = ACTIONS(709), - [anon_sym_fn] = ACTIONS(711), - [anon_sym_PLUS] = ACTIONS(713), - [anon_sym_DASH] = ACTIONS(713), - [anon_sym_STAR] = ACTIONS(715), - [anon_sym_struct] = ACTIONS(3270), + [anon_sym_DOT] = ACTIONS(1362), + [anon_sym_LBRACE] = ACTIONS(1364), + [anon_sym_LPAREN] = ACTIONS(1366), + [anon_sym_fn] = ACTIONS(1368), + [anon_sym_PLUS] = ACTIONS(1370), + [anon_sym_DASH] = ACTIONS(1370), + [anon_sym_STAR] = ACTIONS(1372), + [anon_sym_struct] = ACTIONS(1376), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(719), - [anon_sym_go] = ACTIONS(721), - [anon_sym_spawn] = ACTIONS(723), - [anon_sym_json_DOTdecode] = ACTIONS(725), - [anon_sym_LBRACK2] = ACTIONS(727), - [anon_sym_TILDE] = ACTIONS(713), - [anon_sym_CARET] = ACTIONS(713), - [anon_sym_AMP] = ACTIONS(729), - [anon_sym_LT_DASH] = ACTIONS(731), - [sym_none] = ACTIONS(733), - [sym_true] = ACTIONS(733), - [sym_false] = ACTIONS(733), - [sym_nil] = ACTIONS(733), - [anon_sym_if] = ACTIONS(3272), - [anon_sym_DOLLARif] = ACTIONS(3274), - [anon_sym_match] = ACTIONS(3276), - [anon_sym_select] = ACTIONS(3278), - [anon_sym_lock] = ACTIONS(3280), - [anon_sym_rlock] = ACTIONS(3280), - [anon_sym_unsafe] = ACTIONS(3282), - [anon_sym_sql] = ACTIONS(3284), - [sym_int_literal] = ACTIONS(733), - [sym_float_literal] = ACTIONS(751), - [sym_rune_literal] = ACTIONS(751), - [sym_pseudo_compile_time_identifier] = ACTIONS(753), + [anon_sym_BANG] = ACTIONS(1378), + [anon_sym_go] = ACTIONS(1380), + [anon_sym_spawn] = ACTIONS(1382), + [anon_sym_json_DOTdecode] = ACTIONS(1384), + [anon_sym_LBRACK2] = ACTIONS(1386), + [anon_sym_TILDE] = ACTIONS(1370), + [anon_sym_CARET] = ACTIONS(1370), + [anon_sym_AMP] = ACTIONS(1388), + [anon_sym_LT_DASH] = ACTIONS(1390), + [sym_none] = ACTIONS(1392), + [sym_true] = ACTIONS(1392), + [sym_false] = ACTIONS(1392), + [sym_nil] = ACTIONS(1392), + [anon_sym_if] = ACTIONS(1865), + [anon_sym_DOLLARif] = ACTIONS(1396), + [anon_sym_match] = ACTIONS(1398), + [anon_sym_select] = ACTIONS(1400), + [anon_sym_lock] = ACTIONS(1402), + [anon_sym_rlock] = ACTIONS(1402), + [anon_sym_unsafe] = ACTIONS(1871), + [anon_sym_sql] = ACTIONS(1406), + [sym_int_literal] = ACTIONS(1392), + [sym_float_literal] = ACTIONS(1410), + [sym_rune_literal] = ACTIONS(1410), + [sym_pseudo_compile_time_identifier] = ACTIONS(1412), [anon_sym_shared] = ACTIONS(83), [anon_sym_map_LBRACK] = ACTIONS(85), [anon_sym_chan] = ACTIONS(87), [anon_sym_thread] = ACTIONS(89), [anon_sym_atomic] = ACTIONS(91), - [sym___double_quote] = ACTIONS(755), - [sym___single_quote] = ACTIONS(757), - [sym___c_double_quote] = ACTIONS(759), - [sym___c_single_quote] = ACTIONS(761), - [sym___r_double_quote] = ACTIONS(763), - [sym___r_single_quote] = ACTIONS(765), + [sym___double_quote] = ACTIONS(1414), + [sym___single_quote] = ACTIONS(1416), + [sym___c_double_quote] = ACTIONS(1418), + [sym___c_single_quote] = ACTIONS(1420), + [sym___r_double_quote] = ACTIONS(1422), + [sym___r_single_quote] = ACTIONS(1424), }, [573] = { [sym_line_comment] = STATE(573), [sym_block_comment] = STATE(573), - [sym__expression] = STATE(2263), - [sym__expression_without_blocks] = STATE(2300), - [sym__expression_with_blocks] = STATE(2300), - [sym_inc_expression] = STATE(2307), - [sym_dec_expression] = STATE(2307), - [sym_or_block_expression] = STATE(2307), - [sym_option_propagation_expression] = STATE(2307), - [sym_result_propagation_expression] = STATE(2307), - [sym_anon_struct_value_expression] = STATE(2380), - [sym_go_expression] = STATE(2307), - [sym_spawn_expression] = STATE(2307), - [sym_parenthesized_expression] = STATE(2307), - [sym_call_expression] = STATE(2307), - [sym_type_initializer] = STATE(2380), - [sym_function_literal] = STATE(2307), - [sym_reference_expression] = STATE(2311), - [sym_type_reference_expression] = STATE(3541), - [sym_unary_expression] = STATE(2307), - [sym_receive_expression] = STATE(2307), - [sym_binary_expression] = STATE(2307), - [sym_as_type_cast_expression] = STATE(2307), - [sym__max_group] = STATE(2307), - [sym_literal] = STATE(2292), - [sym_map_init_expression] = STATE(2380), - [sym_array_creation] = STATE(2307), - [sym_fixed_array_creation] = STATE(2307), - [sym_selector_expression] = STATE(2307), - [sym_index_expression] = STATE(2307), - [sym_slice_expression] = STATE(2307), - [sym_if_expression] = STATE(2380), - [sym_compile_time_if_expression] = STATE(2380), - [sym_is_expression] = STATE(2307), - [sym_in_expression] = STATE(2307), - [sym_enum_fetch] = STATE(2307), - [sym_match_expression] = STATE(2380), - [sym_select_expression] = STATE(2380), - [sym_lock_expression] = STATE(2380), - [sym_unsafe_expression] = STATE(2380), - [sym_sql_expression] = STATE(2380), - [sym_c_string_literal] = STATE(2308), - [sym_raw_string_literal] = STATE(2308), - [sym_interpreted_string_literal] = STATE(2308), - [sym_mutability_modifiers] = STATE(939), - [sym_plain_type] = STATE(3560), - [sym__plain_type_without_special] = STATE(2302), - [sym_anon_struct_type] = STATE(2303), - [sym_multi_return_type] = STATE(2302), - [sym_result_type] = STATE(2302), - [sym_option_type] = STATE(2302), - [sym_qualified_type] = STATE(3541), - [sym_fixed_array_type] = STATE(2303), - [sym_array_type] = STATE(2303), - [sym_pointer_type] = STATE(2303), - [sym_wrong_pointer_type] = STATE(2303), - [sym_map_type] = STATE(2303), - [sym_channel_type] = STATE(2303), - [sym_shared_type] = STATE(2303), - [sym_thread_type] = STATE(2303), - [sym_atomic_type] = STATE(2303), - [sym_generic_type] = STATE(2303), - [sym_function_type] = STATE(2303), - [sym_identifier] = ACTIONS(2135), + [sym__expression] = STATE(1254), + [sym__expression_without_blocks] = STATE(1318), + [sym__expression_with_blocks] = STATE(1318), + [sym_inc_expression] = STATE(1319), + [sym_dec_expression] = STATE(1319), + [sym_or_block_expression] = STATE(1319), + [sym_option_propagation_expression] = STATE(1319), + [sym_result_propagation_expression] = STATE(1319), + [sym_anon_struct_value_expression] = STATE(1320), + [sym_go_expression] = STATE(1319), + [sym_spawn_expression] = STATE(1319), + [sym_parenthesized_expression] = STATE(1319), + [sym_call_expression] = STATE(1319), + [sym_type_initializer] = STATE(1320), + [sym_function_literal] = STATE(1319), + [sym_reference_expression] = STATE(1298), + [sym_type_reference_expression] = STATE(3460), + [sym_unary_expression] = STATE(1319), + [sym_receive_expression] = STATE(1319), + [sym_binary_expression] = STATE(1319), + [sym_as_type_cast_expression] = STATE(1319), + [sym__max_group] = STATE(1319), + [sym_literal] = STATE(1314), + [sym_map_init_expression] = STATE(1320), + [sym_array_creation] = STATE(1319), + [sym_fixed_array_creation] = STATE(1319), + [sym_selector_expression] = STATE(1319), + [sym_index_expression] = STATE(1319), + [sym_slice_expression] = STATE(1319), + [sym_if_expression] = STATE(1320), + [sym_compile_time_if_expression] = STATE(1320), + [sym_is_expression] = STATE(1319), + [sym_in_expression] = STATE(1319), + [sym_enum_fetch] = STATE(1319), + [sym_match_expression] = STATE(1320), + [sym_select_expression] = STATE(1320), + [sym_lock_expression] = STATE(1320), + [sym_unsafe_expression] = STATE(1320), + [sym_sql_expression] = STATE(1320), + [sym_c_string_literal] = STATE(1291), + [sym_raw_string_literal] = STATE(1291), + [sym_interpreted_string_literal] = STATE(1291), + [sym_mutability_modifiers] = STATE(639), + [sym_plain_type] = STATE(4307), + [sym__plain_type_without_special] = STATE(2360), + [sym_anon_struct_type] = STATE(2362), + [sym_multi_return_type] = STATE(2360), + [sym_result_type] = STATE(2360), + [sym_option_type] = STATE(2360), + [sym_qualified_type] = STATE(3460), + [sym_fixed_array_type] = STATE(2362), + [sym_array_type] = STATE(2362), + [sym_pointer_type] = STATE(2362), + [sym_wrong_pointer_type] = STATE(2362), + [sym_map_type] = STATE(2362), + [sym_channel_type] = STATE(2362), + [sym_shared_type] = STATE(2362), + [sym_thread_type] = STATE(2362), + [sym_atomic_type] = STATE(2362), + [sym_generic_type] = STATE(2362), + [sym_function_type] = STATE(2362), + [sym_identifier] = ACTIONS(1360), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1428), - [anon_sym_LBRACE] = ACTIONS(1430), - [anon_sym_LPAREN] = ACTIONS(1432), - [anon_sym_fn] = ACTIONS(1434), - [anon_sym_PLUS] = ACTIONS(1436), - [anon_sym_DASH] = ACTIONS(1436), - [anon_sym_STAR] = ACTIONS(2137), - [anon_sym_struct] = ACTIONS(1440), + [anon_sym_DOT] = ACTIONS(1362), + [anon_sym_LBRACE] = ACTIONS(1364), + [anon_sym_LPAREN] = ACTIONS(1366), + [anon_sym_fn] = ACTIONS(1368), + [anon_sym_PLUS] = ACTIONS(1370), + [anon_sym_DASH] = ACTIONS(1370), + [anon_sym_STAR] = ACTIONS(1372), + [anon_sym_struct] = ACTIONS(1376), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(2139), - [anon_sym_go] = ACTIONS(1444), - [anon_sym_spawn] = ACTIONS(1446), - [anon_sym_json_DOTdecode] = ACTIONS(1448), - [anon_sym_LBRACK2] = ACTIONS(1450), - [anon_sym_TILDE] = ACTIONS(1436), - [anon_sym_CARET] = ACTIONS(1436), - [anon_sym_AMP] = ACTIONS(2141), - [anon_sym_LT_DASH] = ACTIONS(1454), - [sym_none] = ACTIONS(1456), - [sym_true] = ACTIONS(1456), - [sym_false] = ACTIONS(1456), - [sym_nil] = ACTIONS(1456), - [anon_sym_if] = ACTIONS(1827), - [anon_sym_DOLLARif] = ACTIONS(1460), - [anon_sym_match] = ACTIONS(1462), - [anon_sym_select] = ACTIONS(1464), - [anon_sym_lock] = ACTIONS(1466), - [anon_sym_rlock] = ACTIONS(1466), - [anon_sym_unsafe] = ACTIONS(1833), - [anon_sym_sql] = ACTIONS(1470), - [sym_int_literal] = ACTIONS(1456), - [sym_float_literal] = ACTIONS(1472), - [sym_rune_literal] = ACTIONS(1472), - [sym_pseudo_compile_time_identifier] = ACTIONS(1474), + [anon_sym_BANG] = ACTIONS(1378), + [anon_sym_go] = ACTIONS(1380), + [anon_sym_spawn] = ACTIONS(1382), + [anon_sym_json_DOTdecode] = ACTIONS(1384), + [anon_sym_LBRACK2] = ACTIONS(1386), + [anon_sym_TILDE] = ACTIONS(1370), + [anon_sym_CARET] = ACTIONS(1370), + [anon_sym_AMP] = ACTIONS(1388), + [anon_sym_LT_DASH] = ACTIONS(1390), + [sym_none] = ACTIONS(1392), + [sym_true] = ACTIONS(1392), + [sym_false] = ACTIONS(1392), + [sym_nil] = ACTIONS(1392), + [anon_sym_if] = ACTIONS(1865), + [anon_sym_DOLLARif] = ACTIONS(1396), + [anon_sym_match] = ACTIONS(1398), + [anon_sym_select] = ACTIONS(1400), + [anon_sym_lock] = ACTIONS(1402), + [anon_sym_rlock] = ACTIONS(1402), + [anon_sym_unsafe] = ACTIONS(1871), + [anon_sym_sql] = ACTIONS(1406), + [sym_int_literal] = ACTIONS(1392), + [sym_float_literal] = ACTIONS(1410), + [sym_rune_literal] = ACTIONS(1410), + [sym_pseudo_compile_time_identifier] = ACTIONS(1412), [anon_sym_shared] = ACTIONS(83), [anon_sym_map_LBRACK] = ACTIONS(85), [anon_sym_chan] = ACTIONS(87), [anon_sym_thread] = ACTIONS(89), [anon_sym_atomic] = ACTIONS(91), - [sym___double_quote] = ACTIONS(1478), - [sym___single_quote] = ACTIONS(1480), - [sym___c_double_quote] = ACTIONS(1482), - [sym___c_single_quote] = ACTIONS(1484), - [sym___r_double_quote] = ACTIONS(1486), - [sym___r_single_quote] = ACTIONS(1488), + [sym___double_quote] = ACTIONS(1414), + [sym___single_quote] = ACTIONS(1416), + [sym___c_double_quote] = ACTIONS(1418), + [sym___c_single_quote] = ACTIONS(1420), + [sym___r_double_quote] = ACTIONS(1422), + [sym___r_single_quote] = ACTIONS(1424), }, [574] = { [sym_line_comment] = STATE(574), [sym_block_comment] = STATE(574), - [sym__expression] = STATE(1766), - [sym__expression_without_blocks] = STATE(2005), - [sym__expression_with_blocks] = STATE(2005), - [sym_inc_expression] = STATE(2032), - [sym_dec_expression] = STATE(2032), - [sym_or_block_expression] = STATE(2032), - [sym_option_propagation_expression] = STATE(2032), - [sym_result_propagation_expression] = STATE(2032), - [sym_anon_struct_value_expression] = STATE(2004), - [sym_go_expression] = STATE(2032), - [sym_spawn_expression] = STATE(2032), - [sym_parenthesized_expression] = STATE(2032), - [sym_call_expression] = STATE(2032), - [sym_type_initializer] = STATE(2004), - [sym_function_literal] = STATE(2032), - [sym_reference_expression] = STATE(1914), - [sym_type_reference_expression] = STATE(3541), - [sym_unary_expression] = STATE(2032), - [sym_receive_expression] = STATE(2032), - [sym_binary_expression] = STATE(2032), - [sym_as_type_cast_expression] = STATE(2032), - [sym__max_group] = STATE(2032), - [sym_literal] = STATE(2027), - [sym_map_init_expression] = STATE(2004), - [sym_array_creation] = STATE(2032), - [sym_fixed_array_creation] = STATE(2032), - [sym_selector_expression] = STATE(2032), - [sym_index_expression] = STATE(2032), - [sym_slice_expression] = STATE(2032), - [sym_if_expression] = STATE(2004), - [sym_compile_time_if_expression] = STATE(2004), - [sym_is_expression] = STATE(2032), - [sym_in_expression] = STATE(2032), - [sym_enum_fetch] = STATE(2032), - [sym_match_expression] = STATE(2004), - [sym_select_expression] = STATE(2004), - [sym_lock_expression] = STATE(2004), - [sym_unsafe_expression] = STATE(2004), - [sym_sql_expression] = STATE(2004), - [sym_c_string_literal] = STATE(2026), - [sym_raw_string_literal] = STATE(2026), - [sym_interpreted_string_literal] = STATE(2026), - [sym_mutability_modifiers] = STATE(562), - [sym_plain_type] = STATE(4062), - [sym__plain_type_without_special] = STATE(2302), - [sym_anon_struct_type] = STATE(2303), - [sym_multi_return_type] = STATE(2302), - [sym_result_type] = STATE(2302), - [sym_option_type] = STATE(2302), - [sym_qualified_type] = STATE(3541), - [sym_fixed_array_type] = STATE(2303), - [sym_array_type] = STATE(2303), - [sym_pointer_type] = STATE(2303), - [sym_wrong_pointer_type] = STATE(2303), - [sym_map_type] = STATE(2303), - [sym_channel_type] = STATE(2303), - [sym_shared_type] = STATE(2303), - [sym_thread_type] = STATE(2303), - [sym_atomic_type] = STATE(2303), - [sym_generic_type] = STATE(2303), - [sym_function_type] = STATE(2303), - [sym_identifier] = ACTIONS(3266), + [sym__expression] = STATE(1278), + [sym__expression_without_blocks] = STATE(1318), + [sym__expression_with_blocks] = STATE(1318), + [sym_inc_expression] = STATE(1319), + [sym_dec_expression] = STATE(1319), + [sym_or_block_expression] = STATE(1319), + [sym_option_propagation_expression] = STATE(1319), + [sym_result_propagation_expression] = STATE(1319), + [sym_anon_struct_value_expression] = STATE(1320), + [sym_go_expression] = STATE(1319), + [sym_spawn_expression] = STATE(1319), + [sym_parenthesized_expression] = STATE(1319), + [sym_call_expression] = STATE(1319), + [sym_type_initializer] = STATE(1320), + [sym_function_literal] = STATE(1319), + [sym_reference_expression] = STATE(1298), + [sym_type_reference_expression] = STATE(3460), + [sym_unary_expression] = STATE(1319), + [sym_receive_expression] = STATE(1319), + [sym_binary_expression] = STATE(1319), + [sym_as_type_cast_expression] = STATE(1319), + [sym__max_group] = STATE(1319), + [sym_literal] = STATE(1314), + [sym_map_init_expression] = STATE(1320), + [sym_array_creation] = STATE(1319), + [sym_fixed_array_creation] = STATE(1319), + [sym_selector_expression] = STATE(1319), + [sym_index_expression] = STATE(1319), + [sym_slice_expression] = STATE(1319), + [sym_if_expression] = STATE(1320), + [sym_compile_time_if_expression] = STATE(1320), + [sym_is_expression] = STATE(1319), + [sym_in_expression] = STATE(1319), + [sym_enum_fetch] = STATE(1319), + [sym_match_expression] = STATE(1320), + [sym_select_expression] = STATE(1320), + [sym_lock_expression] = STATE(1320), + [sym_unsafe_expression] = STATE(1320), + [sym_sql_expression] = STATE(1320), + [sym_c_string_literal] = STATE(1291), + [sym_raw_string_literal] = STATE(1291), + [sym_interpreted_string_literal] = STATE(1291), + [sym_mutability_modifiers] = STATE(639), + [sym_plain_type] = STATE(4307), + [sym__plain_type_without_special] = STATE(2360), + [sym_anon_struct_type] = STATE(2362), + [sym_multi_return_type] = STATE(2360), + [sym_result_type] = STATE(2360), + [sym_option_type] = STATE(2360), + [sym_qualified_type] = STATE(3460), + [sym_fixed_array_type] = STATE(2362), + [sym_array_type] = STATE(2362), + [sym_pointer_type] = STATE(2362), + [sym_wrong_pointer_type] = STATE(2362), + [sym_map_type] = STATE(2362), + [sym_channel_type] = STATE(2362), + [sym_shared_type] = STATE(2362), + [sym_thread_type] = STATE(2362), + [sym_atomic_type] = STATE(2362), + [sym_generic_type] = STATE(2362), + [sym_function_type] = STATE(2362), + [sym_identifier] = ACTIONS(1360), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(703), - [anon_sym_LBRACE] = ACTIONS(3268), - [anon_sym_LPAREN] = ACTIONS(709), - [anon_sym_fn] = ACTIONS(711), - [anon_sym_PLUS] = ACTIONS(713), - [anon_sym_DASH] = ACTIONS(713), - [anon_sym_STAR] = ACTIONS(715), - [anon_sym_struct] = ACTIONS(3270), + [anon_sym_DOT] = ACTIONS(1362), + [anon_sym_LBRACE] = ACTIONS(1364), + [anon_sym_LPAREN] = ACTIONS(1366), + [anon_sym_fn] = ACTIONS(1368), + [anon_sym_PLUS] = ACTIONS(1370), + [anon_sym_DASH] = ACTIONS(1370), + [anon_sym_STAR] = ACTIONS(1372), + [anon_sym_struct] = ACTIONS(1376), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(719), - [anon_sym_go] = ACTIONS(721), - [anon_sym_spawn] = ACTIONS(723), - [anon_sym_json_DOTdecode] = ACTIONS(725), - [anon_sym_LBRACK2] = ACTIONS(727), - [anon_sym_TILDE] = ACTIONS(713), - [anon_sym_CARET] = ACTIONS(713), - [anon_sym_AMP] = ACTIONS(729), - [anon_sym_LT_DASH] = ACTIONS(731), - [sym_none] = ACTIONS(733), - [sym_true] = ACTIONS(733), - [sym_false] = ACTIONS(733), - [sym_nil] = ACTIONS(733), - [anon_sym_if] = ACTIONS(3272), - [anon_sym_DOLLARif] = ACTIONS(3274), - [anon_sym_match] = ACTIONS(3276), - [anon_sym_select] = ACTIONS(3278), - [anon_sym_lock] = ACTIONS(3280), - [anon_sym_rlock] = ACTIONS(3280), - [anon_sym_unsafe] = ACTIONS(3282), - [anon_sym_sql] = ACTIONS(3284), - [sym_int_literal] = ACTIONS(733), - [sym_float_literal] = ACTIONS(751), - [sym_rune_literal] = ACTIONS(751), - [sym_pseudo_compile_time_identifier] = ACTIONS(753), + [anon_sym_BANG] = ACTIONS(1378), + [anon_sym_go] = ACTIONS(1380), + [anon_sym_spawn] = ACTIONS(1382), + [anon_sym_json_DOTdecode] = ACTIONS(1384), + [anon_sym_LBRACK2] = ACTIONS(1386), + [anon_sym_TILDE] = ACTIONS(1370), + [anon_sym_CARET] = ACTIONS(1370), + [anon_sym_AMP] = ACTIONS(1388), + [anon_sym_LT_DASH] = ACTIONS(1390), + [sym_none] = ACTIONS(1392), + [sym_true] = ACTIONS(1392), + [sym_false] = ACTIONS(1392), + [sym_nil] = ACTIONS(1392), + [anon_sym_if] = ACTIONS(1865), + [anon_sym_DOLLARif] = ACTIONS(1396), + [anon_sym_match] = ACTIONS(1398), + [anon_sym_select] = ACTIONS(1400), + [anon_sym_lock] = ACTIONS(1402), + [anon_sym_rlock] = ACTIONS(1402), + [anon_sym_unsafe] = ACTIONS(1871), + [anon_sym_sql] = ACTIONS(1406), + [sym_int_literal] = ACTIONS(1392), + [sym_float_literal] = ACTIONS(1410), + [sym_rune_literal] = ACTIONS(1410), + [sym_pseudo_compile_time_identifier] = ACTIONS(1412), [anon_sym_shared] = ACTIONS(83), [anon_sym_map_LBRACK] = ACTIONS(85), [anon_sym_chan] = ACTIONS(87), [anon_sym_thread] = ACTIONS(89), [anon_sym_atomic] = ACTIONS(91), - [sym___double_quote] = ACTIONS(755), - [sym___single_quote] = ACTIONS(757), - [sym___c_double_quote] = ACTIONS(759), - [sym___c_single_quote] = ACTIONS(761), - [sym___r_double_quote] = ACTIONS(763), - [sym___r_single_quote] = ACTIONS(765), + [sym___double_quote] = ACTIONS(1414), + [sym___single_quote] = ACTIONS(1416), + [sym___c_double_quote] = ACTIONS(1418), + [sym___c_single_quote] = ACTIONS(1420), + [sym___r_double_quote] = ACTIONS(1422), + [sym___r_single_quote] = ACTIONS(1424), }, [575] = { [sym_line_comment] = STATE(575), [sym_block_comment] = STATE(575), - [sym__expression] = STATE(1666), - [sym__expression_without_blocks] = STATE(1891), - [sym__expression_with_blocks] = STATE(1891), - [sym_inc_expression] = STATE(1893), - [sym_dec_expression] = STATE(1893), - [sym_or_block_expression] = STATE(1893), - [sym_option_propagation_expression] = STATE(1893), - [sym_result_propagation_expression] = STATE(1893), - [sym_anon_struct_value_expression] = STATE(1895), - [sym_go_expression] = STATE(1893), - [sym_spawn_expression] = STATE(1893), - [sym_parenthesized_expression] = STATE(1893), - [sym_call_expression] = STATE(1893), - [sym_type_initializer] = STATE(1895), - [sym_function_literal] = STATE(1893), - [sym_reference_expression] = STATE(1782), - [sym_type_reference_expression] = STATE(3541), - [sym_unary_expression] = STATE(1893), - [sym_receive_expression] = STATE(1893), - [sym_binary_expression] = STATE(1893), - [sym_as_type_cast_expression] = STATE(1893), - [sym__max_group] = STATE(1893), - [sym_literal] = STATE(1889), - [sym_map_init_expression] = STATE(1895), - [sym_array_creation] = STATE(1893), - [sym_fixed_array_creation] = STATE(1893), - [sym_selector_expression] = STATE(1893), - [sym_index_expression] = STATE(1893), - [sym_slice_expression] = STATE(1893), - [sym_if_expression] = STATE(1895), - [sym_compile_time_if_expression] = STATE(1895), - [sym_is_expression] = STATE(1893), - [sym_in_expression] = STATE(1893), - [sym_enum_fetch] = STATE(1893), - [sym_match_expression] = STATE(1895), - [sym_select_expression] = STATE(1895), - [sym_lock_expression] = STATE(1895), - [sym_unsafe_expression] = STATE(1895), - [sym_sql_expression] = STATE(1895), - [sym_c_string_literal] = STATE(1882), - [sym_raw_string_literal] = STATE(1882), - [sym_interpreted_string_literal] = STATE(1882), - [sym_mutability_modifiers] = STATE(561), - [sym_plain_type] = STATE(4316), - [sym__plain_type_without_special] = STATE(2302), - [sym_anon_struct_type] = STATE(2303), - [sym_multi_return_type] = STATE(2302), - [sym_result_type] = STATE(2302), - [sym_option_type] = STATE(2302), - [sym_qualified_type] = STATE(3541), - [sym_fixed_array_type] = STATE(2303), - [sym_array_type] = STATE(2303), - [sym_pointer_type] = STATE(2303), - [sym_wrong_pointer_type] = STATE(2303), - [sym_map_type] = STATE(2303), - [sym_channel_type] = STATE(2303), - [sym_shared_type] = STATE(2303), - [sym_thread_type] = STATE(2303), - [sym_atomic_type] = STATE(2303), - [sym_generic_type] = STATE(2303), - [sym_function_type] = STATE(2303), - [sym_identifier] = ACTIONS(3170), + [sym__expression] = STATE(2820), + [sym__expression_without_blocks] = STATE(2347), + [sym__expression_with_blocks] = STATE(2347), + [sym_inc_expression] = STATE(2379), + [sym_dec_expression] = STATE(2379), + [sym_or_block_expression] = STATE(2379), + [sym_option_propagation_expression] = STATE(2379), + [sym_result_propagation_expression] = STATE(2379), + [sym_anon_struct_value_expression] = STATE(2378), + [sym_go_expression] = STATE(2379), + [sym_spawn_expression] = STATE(2379), + [sym_parenthesized_expression] = STATE(2379), + [sym_call_expression] = STATE(2379), + [sym_type_initializer] = STATE(2378), + [sym_function_literal] = STATE(2379), + [sym_reference_expression] = STATE(2377), + [sym_type_reference_expression] = STATE(3460), + [sym_unary_expression] = STATE(2379), + [sym_receive_expression] = STATE(2379), + [sym_binary_expression] = STATE(2379), + [sym_as_type_cast_expression] = STATE(2379), + [sym__max_group] = STATE(2379), + [sym_literal] = STATE(2392), + [sym_map_init_expression] = STATE(2378), + [sym_array_creation] = STATE(2379), + [sym_fixed_array_creation] = STATE(2379), + [sym_selector_expression] = STATE(2379), + [sym_index_expression] = STATE(2379), + [sym_slice_expression] = STATE(2379), + [sym_if_expression] = STATE(2378), + [sym_compile_time_if_expression] = STATE(2378), + [sym_is_expression] = STATE(2379), + [sym_in_expression] = STATE(2379), + [sym_enum_fetch] = STATE(2379), + [sym_match_expression] = STATE(2378), + [sym_select_expression] = STATE(2378), + [sym_lock_expression] = STATE(2378), + [sym_unsafe_expression] = STATE(2378), + [sym_sql_expression] = STATE(2378), + [sym_c_string_literal] = STATE(2401), + [sym_raw_string_literal] = STATE(2401), + [sym_interpreted_string_literal] = STATE(2401), + [sym_mutability_modifiers] = STATE(939), + [sym_plain_type] = STATE(4160), + [sym__plain_type_without_special] = STATE(2360), + [sym_anon_struct_type] = STATE(2362), + [sym_multi_return_type] = STATE(2360), + [sym_result_type] = STATE(2360), + [sym_option_type] = STATE(2360), + [sym_qualified_type] = STATE(3460), + [sym_fixed_array_type] = STATE(2362), + [sym_array_type] = STATE(2362), + [sym_pointer_type] = STATE(2362), + [sym_wrong_pointer_type] = STATE(2362), + [sym_map_type] = STATE(2362), + [sym_channel_type] = STATE(2362), + [sym_shared_type] = STATE(2362), + [sym_thread_type] = STATE(2362), + [sym_atomic_type] = STATE(2362), + [sym_generic_type] = STATE(2362), + [sym_function_type] = STATE(2362), + [sym_identifier] = ACTIONS(1428), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(3172), - [anon_sym_LBRACE] = ACTIONS(3174), - [anon_sym_LPAREN] = ACTIONS(3176), - [anon_sym_fn] = ACTIONS(3178), - [anon_sym_PLUS] = ACTIONS(3180), - [anon_sym_DASH] = ACTIONS(3180), - [anon_sym_STAR] = ACTIONS(3182), - [anon_sym_struct] = ACTIONS(3184), + [anon_sym_DOT] = ACTIONS(1430), + [anon_sym_LBRACE] = ACTIONS(1432), + [anon_sym_LPAREN] = ACTIONS(1434), + [anon_sym_fn] = ACTIONS(1436), + [anon_sym_PLUS] = ACTIONS(1438), + [anon_sym_DASH] = ACTIONS(1438), + [anon_sym_STAR] = ACTIONS(1440), + [anon_sym_struct] = ACTIONS(1442), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(3186), - [anon_sym_go] = ACTIONS(3188), - [anon_sym_spawn] = ACTIONS(3190), - [anon_sym_json_DOTdecode] = ACTIONS(3192), - [anon_sym_LBRACK2] = ACTIONS(3194), - [anon_sym_TILDE] = ACTIONS(3180), - [anon_sym_CARET] = ACTIONS(3180), - [anon_sym_AMP] = ACTIONS(3196), - [anon_sym_LT_DASH] = ACTIONS(3198), - [sym_none] = ACTIONS(3200), - [sym_true] = ACTIONS(3200), - [sym_false] = ACTIONS(3200), - [sym_nil] = ACTIONS(3200), - [anon_sym_if] = ACTIONS(3202), - [anon_sym_DOLLARif] = ACTIONS(3204), - [anon_sym_match] = ACTIONS(3206), - [anon_sym_select] = ACTIONS(3208), - [anon_sym_lock] = ACTIONS(3210), - [anon_sym_rlock] = ACTIONS(3210), - [anon_sym_unsafe] = ACTIONS(3212), - [anon_sym_sql] = ACTIONS(3214), - [sym_int_literal] = ACTIONS(3200), - [sym_float_literal] = ACTIONS(3216), - [sym_rune_literal] = ACTIONS(3216), - [sym_pseudo_compile_time_identifier] = ACTIONS(3218), + [anon_sym_BANG] = ACTIONS(1444), + [anon_sym_go] = ACTIONS(1446), + [anon_sym_spawn] = ACTIONS(1448), + [anon_sym_json_DOTdecode] = ACTIONS(1450), + [anon_sym_LBRACK2] = ACTIONS(1452), + [anon_sym_TILDE] = ACTIONS(1438), + [anon_sym_CARET] = ACTIONS(1438), + [anon_sym_AMP] = ACTIONS(1454), + [anon_sym_LT_DASH] = ACTIONS(1456), + [sym_none] = ACTIONS(1458), + [sym_true] = ACTIONS(1458), + [sym_false] = ACTIONS(1458), + [sym_nil] = ACTIONS(1458), + [anon_sym_if] = ACTIONS(1833), + [anon_sym_DOLLARif] = ACTIONS(1462), + [anon_sym_match] = ACTIONS(1464), + [anon_sym_select] = ACTIONS(1466), + [anon_sym_lock] = ACTIONS(1468), + [anon_sym_rlock] = ACTIONS(1468), + [anon_sym_unsafe] = ACTIONS(1839), + [anon_sym_sql] = ACTIONS(1472), + [sym_int_literal] = ACTIONS(1458), + [sym_float_literal] = ACTIONS(1474), + [sym_rune_literal] = ACTIONS(1474), + [sym_pseudo_compile_time_identifier] = ACTIONS(1476), [anon_sym_shared] = ACTIONS(83), [anon_sym_map_LBRACK] = ACTIONS(85), [anon_sym_chan] = ACTIONS(87), [anon_sym_thread] = ACTIONS(89), [anon_sym_atomic] = ACTIONS(91), - [sym___double_quote] = ACTIONS(3220), - [sym___single_quote] = ACTIONS(3222), - [sym___c_double_quote] = ACTIONS(3224), - [sym___c_single_quote] = ACTIONS(3226), - [sym___r_double_quote] = ACTIONS(3228), - [sym___r_single_quote] = ACTIONS(3230), + [sym___double_quote] = ACTIONS(1480), + [sym___single_quote] = ACTIONS(1482), + [sym___c_double_quote] = ACTIONS(1484), + [sym___c_single_quote] = ACTIONS(1486), + [sym___r_double_quote] = ACTIONS(1488), + [sym___r_single_quote] = ACTIONS(1490), }, [576] = { [sym_line_comment] = STATE(576), [sym_block_comment] = STATE(576), - [sym__expression] = STATE(2119), - [sym__expression_without_blocks] = STATE(2226), - [sym__expression_with_blocks] = STATE(2226), - [sym_inc_expression] = STATE(2247), - [sym_dec_expression] = STATE(2247), - [sym_or_block_expression] = STATE(2247), - [sym_option_propagation_expression] = STATE(2247), - [sym_result_propagation_expression] = STATE(2247), - [sym_anon_struct_value_expression] = STATE(2248), - [sym_go_expression] = STATE(2247), - [sym_spawn_expression] = STATE(2247), - [sym_parenthesized_expression] = STATE(2247), - [sym_call_expression] = STATE(2247), - [sym_type_initializer] = STATE(2248), - [sym_function_literal] = STATE(2247), - [sym_reference_expression] = STATE(2252), - [sym_type_reference_expression] = STATE(3541), - [sym_unary_expression] = STATE(2247), - [sym_receive_expression] = STATE(2247), - [sym_binary_expression] = STATE(2247), - [sym_as_type_cast_expression] = STATE(2247), - [sym__max_group] = STATE(2247), - [sym_literal] = STATE(2155), - [sym_map_init_expression] = STATE(2248), - [sym_array_creation] = STATE(2247), - [sym_fixed_array_creation] = STATE(2247), - [sym_selector_expression] = STATE(2247), - [sym_index_expression] = STATE(2247), - [sym_slice_expression] = STATE(2247), - [sym_if_expression] = STATE(2248), - [sym_compile_time_if_expression] = STATE(2248), - [sym_is_expression] = STATE(2247), - [sym_in_expression] = STATE(2247), - [sym_enum_fetch] = STATE(2247), - [sym_match_expression] = STATE(2248), - [sym_select_expression] = STATE(2248), - [sym_lock_expression] = STATE(2248), - [sym_unsafe_expression] = STATE(2248), - [sym_sql_expression] = STATE(2248), - [sym_c_string_literal] = STATE(2153), - [sym_raw_string_literal] = STATE(2153), - [sym_interpreted_string_literal] = STATE(2153), - [sym_mutability_modifiers] = STATE(631), - [sym_plain_type] = STATE(4146), - [sym__plain_type_without_special] = STATE(2302), - [sym_anon_struct_type] = STATE(2303), - [sym_multi_return_type] = STATE(2302), - [sym_result_type] = STATE(2302), - [sym_option_type] = STATE(2302), - [sym_qualified_type] = STATE(3541), - [sym_fixed_array_type] = STATE(2303), - [sym_array_type] = STATE(2303), - [sym_pointer_type] = STATE(2303), - [sym_wrong_pointer_type] = STATE(2303), - [sym_map_type] = STATE(2303), - [sym_channel_type] = STATE(2303), - [sym_shared_type] = STATE(2303), - [sym_thread_type] = STATE(2303), - [sym_atomic_type] = STATE(2303), - [sym_generic_type] = STATE(2303), - [sym_function_type] = STATE(2303), - [sym_identifier] = ACTIONS(3286), + [sym__expression] = STATE(1659), + [sym__expression_without_blocks] = STATE(1799), + [sym__expression_with_blocks] = STATE(1799), + [sym_inc_expression] = STATE(1800), + [sym_dec_expression] = STATE(1800), + [sym_or_block_expression] = STATE(1800), + [sym_option_propagation_expression] = STATE(1800), + [sym_result_propagation_expression] = STATE(1800), + [sym_anon_struct_value_expression] = STATE(1801), + [sym_go_expression] = STATE(1800), + [sym_spawn_expression] = STATE(1800), + [sym_parenthesized_expression] = STATE(1800), + [sym_call_expression] = STATE(1800), + [sym_type_initializer] = STATE(1801), + [sym_function_literal] = STATE(1800), + [sym_reference_expression] = STATE(1844), + [sym_type_reference_expression] = STATE(3460), + [sym_unary_expression] = STATE(1800), + [sym_receive_expression] = STATE(1800), + [sym_binary_expression] = STATE(1800), + [sym_as_type_cast_expression] = STATE(1800), + [sym__max_group] = STATE(1800), + [sym_literal] = STATE(1797), + [sym_map_init_expression] = STATE(1801), + [sym_array_creation] = STATE(1800), + [sym_fixed_array_creation] = STATE(1800), + [sym_selector_expression] = STATE(1800), + [sym_index_expression] = STATE(1800), + [sym_slice_expression] = STATE(1800), + [sym_if_expression] = STATE(1801), + [sym_compile_time_if_expression] = STATE(1801), + [sym_is_expression] = STATE(1800), + [sym_in_expression] = STATE(1800), + [sym_enum_fetch] = STATE(1800), + [sym_match_expression] = STATE(1801), + [sym_select_expression] = STATE(1801), + [sym_lock_expression] = STATE(1801), + [sym_unsafe_expression] = STATE(1801), + [sym_sql_expression] = STATE(1801), + [sym_c_string_literal] = STATE(1792), + [sym_raw_string_literal] = STATE(1792), + [sym_interpreted_string_literal] = STATE(1792), + [sym_mutability_modifiers] = STATE(868), + [sym_plain_type] = STATE(4300), + [sym__plain_type_without_special] = STATE(2360), + [sym_anon_struct_type] = STATE(2362), + [sym_multi_return_type] = STATE(2360), + [sym_result_type] = STATE(2360), + [sym_option_type] = STATE(2360), + [sym_qualified_type] = STATE(3460), + [sym_fixed_array_type] = STATE(2362), + [sym_array_type] = STATE(2362), + [sym_pointer_type] = STATE(2362), + [sym_wrong_pointer_type] = STATE(2362), + [sym_map_type] = STATE(2362), + [sym_channel_type] = STATE(2362), + [sym_shared_type] = STATE(2362), + [sym_thread_type] = STATE(2362), + [sym_atomic_type] = STATE(2362), + [sym_generic_type] = STATE(2362), + [sym_function_type] = STATE(2362), + [sym_identifier] = ACTIONS(3198), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(3288), - [anon_sym_LBRACE] = ACTIONS(3290), - [anon_sym_LPAREN] = ACTIONS(3292), - [anon_sym_fn] = ACTIONS(3294), - [anon_sym_PLUS] = ACTIONS(3296), - [anon_sym_DASH] = ACTIONS(3296), - [anon_sym_STAR] = ACTIONS(3298), - [anon_sym_struct] = ACTIONS(3300), + [anon_sym_DOT] = ACTIONS(3200), + [anon_sym_LBRACE] = ACTIONS(3202), + [anon_sym_LPAREN] = ACTIONS(3204), + [anon_sym_fn] = ACTIONS(3206), + [anon_sym_PLUS] = ACTIONS(3208), + [anon_sym_DASH] = ACTIONS(3208), + [anon_sym_STAR] = ACTIONS(3210), + [anon_sym_struct] = ACTIONS(3212), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(3302), - [anon_sym_go] = ACTIONS(3304), - [anon_sym_spawn] = ACTIONS(3306), - [anon_sym_json_DOTdecode] = ACTIONS(3308), - [anon_sym_LBRACK2] = ACTIONS(3310), - [anon_sym_TILDE] = ACTIONS(3296), - [anon_sym_CARET] = ACTIONS(3296), - [anon_sym_AMP] = ACTIONS(3312), - [anon_sym_LT_DASH] = ACTIONS(3314), - [sym_none] = ACTIONS(3316), - [sym_true] = ACTIONS(3316), - [sym_false] = ACTIONS(3316), - [sym_nil] = ACTIONS(3316), - [anon_sym_if] = ACTIONS(3318), - [anon_sym_DOLLARif] = ACTIONS(3320), - [anon_sym_match] = ACTIONS(3322), - [anon_sym_select] = ACTIONS(3324), - [anon_sym_lock] = ACTIONS(3326), - [anon_sym_rlock] = ACTIONS(3326), - [anon_sym_unsafe] = ACTIONS(3328), - [anon_sym_sql] = ACTIONS(3330), - [sym_int_literal] = ACTIONS(3316), - [sym_float_literal] = ACTIONS(3332), - [sym_rune_literal] = ACTIONS(3332), - [sym_pseudo_compile_time_identifier] = ACTIONS(3334), + [anon_sym_BANG] = ACTIONS(3214), + [anon_sym_go] = ACTIONS(3216), + [anon_sym_spawn] = ACTIONS(3218), + [anon_sym_json_DOTdecode] = ACTIONS(3220), + [anon_sym_LBRACK2] = ACTIONS(3222), + [anon_sym_TILDE] = ACTIONS(3208), + [anon_sym_CARET] = ACTIONS(3208), + [anon_sym_AMP] = ACTIONS(3224), + [anon_sym_LT_DASH] = ACTIONS(3226), + [sym_none] = ACTIONS(3228), + [sym_true] = ACTIONS(3228), + [sym_false] = ACTIONS(3228), + [sym_nil] = ACTIONS(3228), + [anon_sym_if] = ACTIONS(3230), + [anon_sym_DOLLARif] = ACTIONS(3232), + [anon_sym_match] = ACTIONS(3234), + [anon_sym_select] = ACTIONS(3236), + [anon_sym_lock] = ACTIONS(3238), + [anon_sym_rlock] = ACTIONS(3238), + [anon_sym_unsafe] = ACTIONS(3240), + [anon_sym_sql] = ACTIONS(3242), + [sym_int_literal] = ACTIONS(3228), + [sym_float_literal] = ACTIONS(3244), + [sym_rune_literal] = ACTIONS(3244), + [sym_pseudo_compile_time_identifier] = ACTIONS(3246), [anon_sym_shared] = ACTIONS(83), [anon_sym_map_LBRACK] = ACTIONS(85), [anon_sym_chan] = ACTIONS(87), [anon_sym_thread] = ACTIONS(89), [anon_sym_atomic] = ACTIONS(91), - [sym___double_quote] = ACTIONS(3336), - [sym___single_quote] = ACTIONS(3338), - [sym___c_double_quote] = ACTIONS(3340), - [sym___c_single_quote] = ACTIONS(3342), - [sym___r_double_quote] = ACTIONS(3344), - [sym___r_single_quote] = ACTIONS(3346), + [sym___double_quote] = ACTIONS(3248), + [sym___single_quote] = ACTIONS(3250), + [sym___c_double_quote] = ACTIONS(3252), + [sym___c_single_quote] = ACTIONS(3254), + [sym___r_double_quote] = ACTIONS(3256), + [sym___r_single_quote] = ACTIONS(3258), }, [577] = { [sym_line_comment] = STATE(577), [sym_block_comment] = STATE(577), - [sym__expression] = STATE(2268), - [sym__expression_without_blocks] = STATE(2226), - [sym__expression_with_blocks] = STATE(2226), - [sym_inc_expression] = STATE(2247), - [sym_dec_expression] = STATE(2247), - [sym_or_block_expression] = STATE(2247), - [sym_option_propagation_expression] = STATE(2247), - [sym_result_propagation_expression] = STATE(2247), - [sym_anon_struct_value_expression] = STATE(2248), - [sym_go_expression] = STATE(2247), - [sym_spawn_expression] = STATE(2247), - [sym_parenthesized_expression] = STATE(2247), - [sym_call_expression] = STATE(2247), - [sym_type_initializer] = STATE(2248), - [sym_function_literal] = STATE(2247), - [sym_reference_expression] = STATE(2252), - [sym_type_reference_expression] = STATE(3541), - [sym_unary_expression] = STATE(2247), - [sym_receive_expression] = STATE(2247), - [sym_binary_expression] = STATE(2247), - [sym_as_type_cast_expression] = STATE(2247), - [sym__max_group] = STATE(2247), - [sym_literal] = STATE(2155), - [sym_map_init_expression] = STATE(2248), - [sym_array_creation] = STATE(2247), - [sym_fixed_array_creation] = STATE(2247), - [sym_selector_expression] = STATE(2247), - [sym_index_expression] = STATE(2247), - [sym_slice_expression] = STATE(2247), - [sym_if_expression] = STATE(2248), - [sym_compile_time_if_expression] = STATE(2248), - [sym_is_expression] = STATE(2247), - [sym_in_expression] = STATE(2247), - [sym_enum_fetch] = STATE(2247), - [sym_match_expression] = STATE(2248), - [sym_select_expression] = STATE(2248), - [sym_lock_expression] = STATE(2248), - [sym_unsafe_expression] = STATE(2248), - [sym_sql_expression] = STATE(2248), - [sym_c_string_literal] = STATE(2153), - [sym_raw_string_literal] = STATE(2153), - [sym_interpreted_string_literal] = STATE(2153), - [sym_mutability_modifiers] = STATE(631), - [sym_plain_type] = STATE(4146), - [sym__plain_type_without_special] = STATE(2302), - [sym_anon_struct_type] = STATE(2303), - [sym_multi_return_type] = STATE(2302), - [sym_result_type] = STATE(2302), - [sym_option_type] = STATE(2302), - [sym_qualified_type] = STATE(3541), - [sym_fixed_array_type] = STATE(2303), - [sym_array_type] = STATE(2303), - [sym_pointer_type] = STATE(2303), - [sym_wrong_pointer_type] = STATE(2303), - [sym_map_type] = STATE(2303), - [sym_channel_type] = STATE(2303), - [sym_shared_type] = STATE(2303), - [sym_thread_type] = STATE(2303), - [sym_atomic_type] = STATE(2303), - [sym_generic_type] = STATE(2303), - [sym_function_type] = STATE(2303), - [sym_identifier] = ACTIONS(3286), + [sym__expression] = STATE(1658), + [sym__expression_without_blocks] = STATE(1799), + [sym__expression_with_blocks] = STATE(1799), + [sym_inc_expression] = STATE(1800), + [sym_dec_expression] = STATE(1800), + [sym_or_block_expression] = STATE(1800), + [sym_option_propagation_expression] = STATE(1800), + [sym_result_propagation_expression] = STATE(1800), + [sym_anon_struct_value_expression] = STATE(1801), + [sym_go_expression] = STATE(1800), + [sym_spawn_expression] = STATE(1800), + [sym_parenthesized_expression] = STATE(1800), + [sym_call_expression] = STATE(1800), + [sym_type_initializer] = STATE(1801), + [sym_function_literal] = STATE(1800), + [sym_reference_expression] = STATE(1844), + [sym_type_reference_expression] = STATE(3460), + [sym_unary_expression] = STATE(1800), + [sym_receive_expression] = STATE(1800), + [sym_binary_expression] = STATE(1800), + [sym_as_type_cast_expression] = STATE(1800), + [sym__max_group] = STATE(1800), + [sym_literal] = STATE(1797), + [sym_map_init_expression] = STATE(1801), + [sym_array_creation] = STATE(1800), + [sym_fixed_array_creation] = STATE(1800), + [sym_selector_expression] = STATE(1800), + [sym_index_expression] = STATE(1800), + [sym_slice_expression] = STATE(1800), + [sym_if_expression] = STATE(1801), + [sym_compile_time_if_expression] = STATE(1801), + [sym_is_expression] = STATE(1800), + [sym_in_expression] = STATE(1800), + [sym_enum_fetch] = STATE(1800), + [sym_match_expression] = STATE(1801), + [sym_select_expression] = STATE(1801), + [sym_lock_expression] = STATE(1801), + [sym_unsafe_expression] = STATE(1801), + [sym_sql_expression] = STATE(1801), + [sym_c_string_literal] = STATE(1792), + [sym_raw_string_literal] = STATE(1792), + [sym_interpreted_string_literal] = STATE(1792), + [sym_mutability_modifiers] = STATE(868), + [sym_plain_type] = STATE(4300), + [sym__plain_type_without_special] = STATE(2360), + [sym_anon_struct_type] = STATE(2362), + [sym_multi_return_type] = STATE(2360), + [sym_result_type] = STATE(2360), + [sym_option_type] = STATE(2360), + [sym_qualified_type] = STATE(3460), + [sym_fixed_array_type] = STATE(2362), + [sym_array_type] = STATE(2362), + [sym_pointer_type] = STATE(2362), + [sym_wrong_pointer_type] = STATE(2362), + [sym_map_type] = STATE(2362), + [sym_channel_type] = STATE(2362), + [sym_shared_type] = STATE(2362), + [sym_thread_type] = STATE(2362), + [sym_atomic_type] = STATE(2362), + [sym_generic_type] = STATE(2362), + [sym_function_type] = STATE(2362), + [sym_identifier] = ACTIONS(3198), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(3288), - [anon_sym_LBRACE] = ACTIONS(3290), - [anon_sym_LPAREN] = ACTIONS(3292), - [anon_sym_fn] = ACTIONS(3294), - [anon_sym_PLUS] = ACTIONS(3296), - [anon_sym_DASH] = ACTIONS(3296), - [anon_sym_STAR] = ACTIONS(3298), - [anon_sym_struct] = ACTIONS(3300), + [anon_sym_DOT] = ACTIONS(3200), + [anon_sym_LBRACE] = ACTIONS(3202), + [anon_sym_LPAREN] = ACTIONS(3204), + [anon_sym_fn] = ACTIONS(3206), + [anon_sym_PLUS] = ACTIONS(3208), + [anon_sym_DASH] = ACTIONS(3208), + [anon_sym_STAR] = ACTIONS(3210), + [anon_sym_struct] = ACTIONS(3212), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(3302), - [anon_sym_go] = ACTIONS(3304), - [anon_sym_spawn] = ACTIONS(3306), - [anon_sym_json_DOTdecode] = ACTIONS(3308), - [anon_sym_LBRACK2] = ACTIONS(3310), - [anon_sym_TILDE] = ACTIONS(3296), - [anon_sym_CARET] = ACTIONS(3296), - [anon_sym_AMP] = ACTIONS(3312), - [anon_sym_LT_DASH] = ACTIONS(3314), - [sym_none] = ACTIONS(3316), - [sym_true] = ACTIONS(3316), - [sym_false] = ACTIONS(3316), - [sym_nil] = ACTIONS(3316), - [anon_sym_if] = ACTIONS(3318), - [anon_sym_DOLLARif] = ACTIONS(3320), - [anon_sym_match] = ACTIONS(3322), - [anon_sym_select] = ACTIONS(3324), - [anon_sym_lock] = ACTIONS(3326), - [anon_sym_rlock] = ACTIONS(3326), - [anon_sym_unsafe] = ACTIONS(3328), - [anon_sym_sql] = ACTIONS(3330), - [sym_int_literal] = ACTIONS(3316), - [sym_float_literal] = ACTIONS(3332), - [sym_rune_literal] = ACTIONS(3332), - [sym_pseudo_compile_time_identifier] = ACTIONS(3334), + [anon_sym_BANG] = ACTIONS(3214), + [anon_sym_go] = ACTIONS(3216), + [anon_sym_spawn] = ACTIONS(3218), + [anon_sym_json_DOTdecode] = ACTIONS(3220), + [anon_sym_LBRACK2] = ACTIONS(3222), + [anon_sym_TILDE] = ACTIONS(3208), + [anon_sym_CARET] = ACTIONS(3208), + [anon_sym_AMP] = ACTIONS(3224), + [anon_sym_LT_DASH] = ACTIONS(3226), + [sym_none] = ACTIONS(3228), + [sym_true] = ACTIONS(3228), + [sym_false] = ACTIONS(3228), + [sym_nil] = ACTIONS(3228), + [anon_sym_if] = ACTIONS(3230), + [anon_sym_DOLLARif] = ACTIONS(3232), + [anon_sym_match] = ACTIONS(3234), + [anon_sym_select] = ACTIONS(3236), + [anon_sym_lock] = ACTIONS(3238), + [anon_sym_rlock] = ACTIONS(3238), + [anon_sym_unsafe] = ACTIONS(3240), + [anon_sym_sql] = ACTIONS(3242), + [sym_int_literal] = ACTIONS(3228), + [sym_float_literal] = ACTIONS(3244), + [sym_rune_literal] = ACTIONS(3244), + [sym_pseudo_compile_time_identifier] = ACTIONS(3246), [anon_sym_shared] = ACTIONS(83), [anon_sym_map_LBRACK] = ACTIONS(85), [anon_sym_chan] = ACTIONS(87), [anon_sym_thread] = ACTIONS(89), [anon_sym_atomic] = ACTIONS(91), - [sym___double_quote] = ACTIONS(3336), - [sym___single_quote] = ACTIONS(3338), - [sym___c_double_quote] = ACTIONS(3340), - [sym___c_single_quote] = ACTIONS(3342), - [sym___r_double_quote] = ACTIONS(3344), - [sym___r_single_quote] = ACTIONS(3346), + [sym___double_quote] = ACTIONS(3248), + [sym___single_quote] = ACTIONS(3250), + [sym___c_double_quote] = ACTIONS(3252), + [sym___c_single_quote] = ACTIONS(3254), + [sym___r_double_quote] = ACTIONS(3256), + [sym___r_single_quote] = ACTIONS(3258), }, [578] = { [sym_line_comment] = STATE(578), [sym_block_comment] = STATE(578), - [sym__expression] = STATE(2264), - [sym__expression_without_blocks] = STATE(2300), - [sym__expression_with_blocks] = STATE(2300), - [sym_inc_expression] = STATE(2307), - [sym_dec_expression] = STATE(2307), - [sym_or_block_expression] = STATE(2307), - [sym_option_propagation_expression] = STATE(2307), - [sym_result_propagation_expression] = STATE(2307), - [sym_anon_struct_value_expression] = STATE(2380), - [sym_go_expression] = STATE(2307), - [sym_spawn_expression] = STATE(2307), - [sym_parenthesized_expression] = STATE(2307), - [sym_call_expression] = STATE(2307), - [sym_type_initializer] = STATE(2380), - [sym_function_literal] = STATE(2307), - [sym_reference_expression] = STATE(2311), - [sym_type_reference_expression] = STATE(3541), - [sym_unary_expression] = STATE(2307), - [sym_receive_expression] = STATE(2307), - [sym_binary_expression] = STATE(2307), - [sym_as_type_cast_expression] = STATE(2307), - [sym__max_group] = STATE(2307), - [sym_literal] = STATE(2292), - [sym_map_init_expression] = STATE(2380), - [sym_array_creation] = STATE(2307), - [sym_fixed_array_creation] = STATE(2307), - [sym_selector_expression] = STATE(2307), - [sym_index_expression] = STATE(2307), - [sym_slice_expression] = STATE(2307), - [sym_if_expression] = STATE(2380), - [sym_compile_time_if_expression] = STATE(2380), - [sym_is_expression] = STATE(2307), - [sym_in_expression] = STATE(2307), - [sym_enum_fetch] = STATE(2307), - [sym_match_expression] = STATE(2380), - [sym_select_expression] = STATE(2380), - [sym_lock_expression] = STATE(2380), - [sym_unsafe_expression] = STATE(2380), - [sym_sql_expression] = STATE(2380), - [sym_c_string_literal] = STATE(2308), - [sym_raw_string_literal] = STATE(2308), - [sym_interpreted_string_literal] = STATE(2308), - [sym_mutability_modifiers] = STATE(632), - [sym_plain_type] = STATE(4297), - [sym__plain_type_without_special] = STATE(2302), - [sym_anon_struct_type] = STATE(2303), - [sym_multi_return_type] = STATE(2302), - [sym_result_type] = STATE(2302), - [sym_option_type] = STATE(2302), - [sym_qualified_type] = STATE(3541), - [sym_fixed_array_type] = STATE(2303), - [sym_array_type] = STATE(2303), - [sym_pointer_type] = STATE(2303), - [sym_wrong_pointer_type] = STATE(2303), - [sym_map_type] = STATE(2303), - [sym_channel_type] = STATE(2303), - [sym_shared_type] = STATE(2303), - [sym_thread_type] = STATE(2303), - [sym_atomic_type] = STATE(2303), - [sym_generic_type] = STATE(2303), - [sym_function_type] = STATE(2303), - [sym_identifier] = ACTIONS(2189), + [sym__expression] = STATE(1755), + [sym__expression_without_blocks] = STATE(1915), + [sym__expression_with_blocks] = STATE(1915), + [sym_inc_expression] = STATE(2035), + [sym_dec_expression] = STATE(2035), + [sym_or_block_expression] = STATE(2035), + [sym_option_propagation_expression] = STATE(2035), + [sym_result_propagation_expression] = STATE(2035), + [sym_anon_struct_value_expression] = STATE(1939), + [sym_go_expression] = STATE(2035), + [sym_spawn_expression] = STATE(2035), + [sym_parenthesized_expression] = STATE(2035), + [sym_call_expression] = STATE(2035), + [sym_type_initializer] = STATE(1939), + [sym_function_literal] = STATE(2035), + [sym_reference_expression] = STATE(1944), + [sym_type_reference_expression] = STATE(3460), + [sym_unary_expression] = STATE(2035), + [sym_receive_expression] = STATE(2035), + [sym_binary_expression] = STATE(2035), + [sym_as_type_cast_expression] = STATE(2035), + [sym__max_group] = STATE(2035), + [sym_literal] = STATE(2030), + [sym_map_init_expression] = STATE(1939), + [sym_array_creation] = STATE(2035), + [sym_fixed_array_creation] = STATE(2035), + [sym_selector_expression] = STATE(2035), + [sym_index_expression] = STATE(2035), + [sym_slice_expression] = STATE(2035), + [sym_if_expression] = STATE(1939), + [sym_compile_time_if_expression] = STATE(1939), + [sym_is_expression] = STATE(2035), + [sym_in_expression] = STATE(2035), + [sym_enum_fetch] = STATE(2035), + [sym_match_expression] = STATE(1939), + [sym_select_expression] = STATE(1939), + [sym_lock_expression] = STATE(1939), + [sym_unsafe_expression] = STATE(1939), + [sym_sql_expression] = STATE(1939), + [sym_c_string_literal] = STATE(2029), + [sym_raw_string_literal] = STATE(2029), + [sym_interpreted_string_literal] = STATE(2029), + [sym_mutability_modifiers] = STATE(555), + [sym_plain_type] = STATE(4274), + [sym__plain_type_without_special] = STATE(2360), + [sym_anon_struct_type] = STATE(2362), + [sym_multi_return_type] = STATE(2360), + [sym_result_type] = STATE(2360), + [sym_option_type] = STATE(2360), + [sym_qualified_type] = STATE(3460), + [sym_fixed_array_type] = STATE(2362), + [sym_array_type] = STATE(2362), + [sym_pointer_type] = STATE(2362), + [sym_wrong_pointer_type] = STATE(2362), + [sym_map_type] = STATE(2362), + [sym_channel_type] = STATE(2362), + [sym_shared_type] = STATE(2362), + [sym_thread_type] = STATE(2362), + [sym_atomic_type] = STATE(2362), + [sym_generic_type] = STATE(2362), + [sym_function_type] = STATE(2362), + [sym_identifier] = ACTIONS(3272), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1428), - [anon_sym_LBRACE] = ACTIONS(1430), - [anon_sym_LPAREN] = ACTIONS(1432), - [anon_sym_fn] = ACTIONS(1434), - [anon_sym_PLUS] = ACTIONS(2191), - [anon_sym_DASH] = ACTIONS(2191), - [anon_sym_STAR] = ACTIONS(2193), - [anon_sym_struct] = ACTIONS(1440), + [anon_sym_DOT] = ACTIONS(769), + [anon_sym_LBRACE] = ACTIONS(3274), + [anon_sym_LPAREN] = ACTIONS(775), + [anon_sym_fn] = ACTIONS(777), + [anon_sym_PLUS] = ACTIONS(779), + [anon_sym_DASH] = ACTIONS(779), + [anon_sym_STAR] = ACTIONS(781), + [anon_sym_struct] = ACTIONS(3276), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(2195), - [anon_sym_go] = ACTIONS(2197), - [anon_sym_spawn] = ACTIONS(2199), - [anon_sym_json_DOTdecode] = ACTIONS(1448), - [anon_sym_LBRACK2] = ACTIONS(2201), - [anon_sym_TILDE] = ACTIONS(2191), - [anon_sym_CARET] = ACTIONS(2191), - [anon_sym_AMP] = ACTIONS(2203), - [anon_sym_LT_DASH] = ACTIONS(2205), - [sym_none] = ACTIONS(1456), - [sym_true] = ACTIONS(1456), - [sym_false] = ACTIONS(1456), - [sym_nil] = ACTIONS(1456), - [anon_sym_if] = ACTIONS(1827), - [anon_sym_DOLLARif] = ACTIONS(1460), - [anon_sym_match] = ACTIONS(1462), - [anon_sym_select] = ACTIONS(2207), - [anon_sym_lock] = ACTIONS(2209), - [anon_sym_rlock] = ACTIONS(2209), - [anon_sym_unsafe] = ACTIONS(1833), - [anon_sym_sql] = ACTIONS(1470), - [sym_int_literal] = ACTIONS(1456), - [sym_float_literal] = ACTIONS(1472), - [sym_rune_literal] = ACTIONS(1472), - [sym_pseudo_compile_time_identifier] = ACTIONS(1474), + [anon_sym_BANG] = ACTIONS(785), + [anon_sym_go] = ACTIONS(787), + [anon_sym_spawn] = ACTIONS(789), + [anon_sym_json_DOTdecode] = ACTIONS(791), + [anon_sym_LBRACK2] = ACTIONS(793), + [anon_sym_TILDE] = ACTIONS(779), + [anon_sym_CARET] = ACTIONS(779), + [anon_sym_AMP] = ACTIONS(795), + [anon_sym_LT_DASH] = ACTIONS(797), + [sym_none] = ACTIONS(799), + [sym_true] = ACTIONS(799), + [sym_false] = ACTIONS(799), + [sym_nil] = ACTIONS(799), + [anon_sym_if] = ACTIONS(3278), + [anon_sym_DOLLARif] = ACTIONS(3280), + [anon_sym_match] = ACTIONS(3282), + [anon_sym_select] = ACTIONS(3284), + [anon_sym_lock] = ACTIONS(3286), + [anon_sym_rlock] = ACTIONS(3286), + [anon_sym_unsafe] = ACTIONS(3288), + [anon_sym_sql] = ACTIONS(3290), + [sym_int_literal] = ACTIONS(799), + [sym_float_literal] = ACTIONS(817), + [sym_rune_literal] = ACTIONS(817), + [sym_pseudo_compile_time_identifier] = ACTIONS(819), [anon_sym_shared] = ACTIONS(83), [anon_sym_map_LBRACK] = ACTIONS(85), [anon_sym_chan] = ACTIONS(87), [anon_sym_thread] = ACTIONS(89), [anon_sym_atomic] = ACTIONS(91), - [sym___double_quote] = ACTIONS(1478), - [sym___single_quote] = ACTIONS(1480), - [sym___c_double_quote] = ACTIONS(1482), - [sym___c_single_quote] = ACTIONS(1484), - [sym___r_double_quote] = ACTIONS(1486), - [sym___r_single_quote] = ACTIONS(1488), + [sym___double_quote] = ACTIONS(821), + [sym___single_quote] = ACTIONS(823), + [sym___c_double_quote] = ACTIONS(825), + [sym___c_single_quote] = ACTIONS(827), + [sym___r_double_quote] = ACTIONS(829), + [sym___r_single_quote] = ACTIONS(831), }, [579] = { [sym_line_comment] = STATE(579), [sym_block_comment] = STATE(579), - [sym__expression] = STATE(1112), - [sym__expression_without_blocks] = STATE(1141), - [sym__expression_with_blocks] = STATE(1141), - [sym_inc_expression] = STATE(1140), - [sym_dec_expression] = STATE(1140), - [sym_or_block_expression] = STATE(1140), - [sym_option_propagation_expression] = STATE(1140), - [sym_result_propagation_expression] = STATE(1140), - [sym_anon_struct_value_expression] = STATE(1199), - [sym_go_expression] = STATE(1140), - [sym_spawn_expression] = STATE(1140), - [sym_parenthesized_expression] = STATE(1140), - [sym_call_expression] = STATE(1140), - [sym_type_initializer] = STATE(1199), - [sym_function_literal] = STATE(1140), - [sym_reference_expression] = STATE(1181), - [sym_type_reference_expression] = STATE(3541), - [sym_unary_expression] = STATE(1140), - [sym_receive_expression] = STATE(1140), - [sym_binary_expression] = STATE(1140), - [sym_as_type_cast_expression] = STATE(1140), - [sym__max_group] = STATE(1140), - [sym_literal] = STATE(1146), - [sym_map_init_expression] = STATE(1199), - [sym_array_creation] = STATE(1140), - [sym_fixed_array_creation] = STATE(1140), - [sym_selector_expression] = STATE(1140), - [sym_index_expression] = STATE(1140), - [sym_slice_expression] = STATE(1140), - [sym_if_expression] = STATE(1199), - [sym_compile_time_if_expression] = STATE(1199), - [sym_is_expression] = STATE(1140), - [sym_in_expression] = STATE(1140), - [sym_enum_fetch] = STATE(1140), - [sym_match_expression] = STATE(1199), - [sym_select_expression] = STATE(1199), - [sym_lock_expression] = STATE(1199), - [sym_unsafe_expression] = STATE(1199), - [sym_sql_expression] = STATE(1199), - [sym_c_string_literal] = STATE(1147), - [sym_raw_string_literal] = STATE(1147), - [sym_interpreted_string_literal] = STATE(1147), - [sym_mutability_modifiers] = STATE(638), - [sym_plain_type] = STATE(4138), - [sym__plain_type_without_special] = STATE(2302), - [sym_anon_struct_type] = STATE(2303), - [sym_multi_return_type] = STATE(2302), - [sym_result_type] = STATE(2302), - [sym_option_type] = STATE(2302), - [sym_qualified_type] = STATE(3541), - [sym_fixed_array_type] = STATE(2303), - [sym_array_type] = STATE(2303), - [sym_pointer_type] = STATE(2303), - [sym_wrong_pointer_type] = STATE(2303), - [sym_map_type] = STATE(2303), - [sym_channel_type] = STATE(2303), - [sym_shared_type] = STATE(2303), - [sym_thread_type] = STATE(2303), - [sym_atomic_type] = STATE(2303), - [sym_generic_type] = STATE(2303), - [sym_function_type] = STATE(2303), - [sym_identifier] = ACTIONS(1071), + [sym__expression] = STATE(1752), + [sym__expression_without_blocks] = STATE(1915), + [sym__expression_with_blocks] = STATE(1915), + [sym_inc_expression] = STATE(2035), + [sym_dec_expression] = STATE(2035), + [sym_or_block_expression] = STATE(2035), + [sym_option_propagation_expression] = STATE(2035), + [sym_result_propagation_expression] = STATE(2035), + [sym_anon_struct_value_expression] = STATE(1939), + [sym_go_expression] = STATE(2035), + [sym_spawn_expression] = STATE(2035), + [sym_parenthesized_expression] = STATE(2035), + [sym_call_expression] = STATE(2035), + [sym_type_initializer] = STATE(1939), + [sym_function_literal] = STATE(2035), + [sym_reference_expression] = STATE(1944), + [sym_type_reference_expression] = STATE(3460), + [sym_unary_expression] = STATE(2035), + [sym_receive_expression] = STATE(2035), + [sym_binary_expression] = STATE(2035), + [sym_as_type_cast_expression] = STATE(2035), + [sym__max_group] = STATE(2035), + [sym_literal] = STATE(2030), + [sym_map_init_expression] = STATE(1939), + [sym_array_creation] = STATE(2035), + [sym_fixed_array_creation] = STATE(2035), + [sym_selector_expression] = STATE(2035), + [sym_index_expression] = STATE(2035), + [sym_slice_expression] = STATE(2035), + [sym_if_expression] = STATE(1939), + [sym_compile_time_if_expression] = STATE(1939), + [sym_is_expression] = STATE(2035), + [sym_in_expression] = STATE(2035), + [sym_enum_fetch] = STATE(2035), + [sym_match_expression] = STATE(1939), + [sym_select_expression] = STATE(1939), + [sym_lock_expression] = STATE(1939), + [sym_unsafe_expression] = STATE(1939), + [sym_sql_expression] = STATE(1939), + [sym_c_string_literal] = STATE(2029), + [sym_raw_string_literal] = STATE(2029), + [sym_interpreted_string_literal] = STATE(2029), + [sym_mutability_modifiers] = STATE(555), + [sym_plain_type] = STATE(4014), + [sym__plain_type_without_special] = STATE(2360), + [sym_anon_struct_type] = STATE(2362), + [sym_multi_return_type] = STATE(2360), + [sym_result_type] = STATE(2360), + [sym_option_type] = STATE(2360), + [sym_qualified_type] = STATE(3460), + [sym_fixed_array_type] = STATE(2362), + [sym_array_type] = STATE(2362), + [sym_pointer_type] = STATE(2362), + [sym_wrong_pointer_type] = STATE(2362), + [sym_map_type] = STATE(2362), + [sym_channel_type] = STATE(2362), + [sym_shared_type] = STATE(2362), + [sym_thread_type] = STATE(2362), + [sym_atomic_type] = STATE(2362), + [sym_generic_type] = STATE(2362), + [sym_function_type] = STATE(2362), + [sym_identifier] = ACTIONS(3272), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(631), - [anon_sym_LBRACE] = ACTIONS(633), - [anon_sym_LPAREN] = ACTIONS(637), - [anon_sym_fn] = ACTIONS(641), - [anon_sym_PLUS] = ACTIONS(643), - [anon_sym_DASH] = ACTIONS(643), - [anon_sym_STAR] = ACTIONS(645), - [anon_sym_struct] = ACTIONS(649), + [anon_sym_DOT] = ACTIONS(769), + [anon_sym_LBRACE] = ACTIONS(3274), + [anon_sym_LPAREN] = ACTIONS(775), + [anon_sym_fn] = ACTIONS(777), + [anon_sym_PLUS] = ACTIONS(779), + [anon_sym_DASH] = ACTIONS(779), + [anon_sym_STAR] = ACTIONS(781), + [anon_sym_struct] = ACTIONS(3276), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(655), - [anon_sym_go] = ACTIONS(657), - [anon_sym_spawn] = ACTIONS(659), - [anon_sym_json_DOTdecode] = ACTIONS(661), - [anon_sym_LBRACK2] = ACTIONS(663), - [anon_sym_TILDE] = ACTIONS(643), - [anon_sym_CARET] = ACTIONS(643), - [anon_sym_AMP] = ACTIONS(665), - [anon_sym_LT_DASH] = ACTIONS(667), - [sym_none] = ACTIONS(669), - [sym_true] = ACTIONS(669), - [sym_false] = ACTIONS(669), - [sym_nil] = ACTIONS(669), - [anon_sym_if] = ACTIONS(671), - [anon_sym_DOLLARif] = ACTIONS(673), - [anon_sym_match] = ACTIONS(675), - [anon_sym_select] = ACTIONS(677), - [anon_sym_lock] = ACTIONS(679), - [anon_sym_rlock] = ACTIONS(679), - [anon_sym_unsafe] = ACTIONS(681), - [anon_sym_sql] = ACTIONS(683), - [sym_int_literal] = ACTIONS(669), - [sym_float_literal] = ACTIONS(685), - [sym_rune_literal] = ACTIONS(685), - [sym_pseudo_compile_time_identifier] = ACTIONS(687), + [anon_sym_BANG] = ACTIONS(785), + [anon_sym_go] = ACTIONS(787), + [anon_sym_spawn] = ACTIONS(789), + [anon_sym_json_DOTdecode] = ACTIONS(791), + [anon_sym_LBRACK2] = ACTIONS(793), + [anon_sym_TILDE] = ACTIONS(779), + [anon_sym_CARET] = ACTIONS(779), + [anon_sym_AMP] = ACTIONS(795), + [anon_sym_LT_DASH] = ACTIONS(797), + [sym_none] = ACTIONS(799), + [sym_true] = ACTIONS(799), + [sym_false] = ACTIONS(799), + [sym_nil] = ACTIONS(799), + [anon_sym_if] = ACTIONS(3278), + [anon_sym_DOLLARif] = ACTIONS(3280), + [anon_sym_match] = ACTIONS(3282), + [anon_sym_select] = ACTIONS(3284), + [anon_sym_lock] = ACTIONS(3286), + [anon_sym_rlock] = ACTIONS(3286), + [anon_sym_unsafe] = ACTIONS(3288), + [anon_sym_sql] = ACTIONS(3290), + [sym_int_literal] = ACTIONS(799), + [sym_float_literal] = ACTIONS(817), + [sym_rune_literal] = ACTIONS(817), + [sym_pseudo_compile_time_identifier] = ACTIONS(819), [anon_sym_shared] = ACTIONS(83), [anon_sym_map_LBRACK] = ACTIONS(85), [anon_sym_chan] = ACTIONS(87), [anon_sym_thread] = ACTIONS(89), [anon_sym_atomic] = ACTIONS(91), - [sym___double_quote] = ACTIONS(689), - [sym___single_quote] = ACTIONS(691), - [sym___c_double_quote] = ACTIONS(693), - [sym___c_single_quote] = ACTIONS(695), - [sym___r_double_quote] = ACTIONS(697), - [sym___r_single_quote] = ACTIONS(699), + [sym___double_quote] = ACTIONS(821), + [sym___single_quote] = ACTIONS(823), + [sym___c_double_quote] = ACTIONS(825), + [sym___c_single_quote] = ACTIONS(827), + [sym___r_double_quote] = ACTIONS(829), + [sym___r_single_quote] = ACTIONS(831), }, [580] = { [sym_line_comment] = STATE(580), [sym_block_comment] = STATE(580), - [sym__expression] = STATE(2258), - [sym__expression_without_blocks] = STATE(2226), - [sym__expression_with_blocks] = STATE(2226), - [sym_inc_expression] = STATE(2247), - [sym_dec_expression] = STATE(2247), - [sym_or_block_expression] = STATE(2247), - [sym_option_propagation_expression] = STATE(2247), - [sym_result_propagation_expression] = STATE(2247), - [sym_anon_struct_value_expression] = STATE(2248), - [sym_go_expression] = STATE(2247), - [sym_spawn_expression] = STATE(2247), - [sym_parenthesized_expression] = STATE(2247), - [sym_call_expression] = STATE(2247), - [sym_type_initializer] = STATE(2248), - [sym_function_literal] = STATE(2247), - [sym_reference_expression] = STATE(2252), - [sym_type_reference_expression] = STATE(3541), - [sym_unary_expression] = STATE(2247), - [sym_receive_expression] = STATE(2247), - [sym_binary_expression] = STATE(2247), - [sym_as_type_cast_expression] = STATE(2247), - [sym__max_group] = STATE(2247), - [sym_literal] = STATE(2155), - [sym_map_init_expression] = STATE(2248), - [sym_array_creation] = STATE(2247), - [sym_fixed_array_creation] = STATE(2247), - [sym_selector_expression] = STATE(2247), - [sym_index_expression] = STATE(2247), - [sym_slice_expression] = STATE(2247), - [sym_if_expression] = STATE(2248), - [sym_compile_time_if_expression] = STATE(2248), - [sym_is_expression] = STATE(2247), - [sym_in_expression] = STATE(2247), - [sym_enum_fetch] = STATE(2247), - [sym_match_expression] = STATE(2248), - [sym_select_expression] = STATE(2248), - [sym_lock_expression] = STATE(2248), - [sym_unsafe_expression] = STATE(2248), - [sym_sql_expression] = STATE(2248), - [sym_c_string_literal] = STATE(2153), - [sym_raw_string_literal] = STATE(2153), - [sym_interpreted_string_literal] = STATE(2153), - [sym_mutability_modifiers] = STATE(631), - [sym_plain_type] = STATE(4146), - [sym__plain_type_without_special] = STATE(2302), - [sym_anon_struct_type] = STATE(2303), - [sym_multi_return_type] = STATE(2302), - [sym_result_type] = STATE(2302), - [sym_option_type] = STATE(2302), - [sym_qualified_type] = STATE(3541), - [sym_fixed_array_type] = STATE(2303), - [sym_array_type] = STATE(2303), - [sym_pointer_type] = STATE(2303), - [sym_wrong_pointer_type] = STATE(2303), - [sym_map_type] = STATE(2303), - [sym_channel_type] = STATE(2303), - [sym_shared_type] = STATE(2303), - [sym_thread_type] = STATE(2303), - [sym_atomic_type] = STATE(2303), - [sym_generic_type] = STATE(2303), - [sym_function_type] = STATE(2303), - [sym_identifier] = ACTIONS(3286), + [sym__expression] = STATE(2433), + [sym__expression_without_blocks] = STATE(2638), + [sym__expression_with_blocks] = STATE(2638), + [sym_inc_expression] = STATE(2765), + [sym_dec_expression] = STATE(2765), + [sym_or_block_expression] = STATE(2765), + [sym_option_propagation_expression] = STATE(2765), + [sym_result_propagation_expression] = STATE(2765), + [sym_anon_struct_value_expression] = STATE(2637), + [sym_go_expression] = STATE(2765), + [sym_spawn_expression] = STATE(2765), + [sym_parenthesized_expression] = STATE(2765), + [sym_call_expression] = STATE(2765), + [sym_type_initializer] = STATE(2637), + [sym_function_literal] = STATE(2765), + [sym_reference_expression] = STATE(2764), + [sym_type_reference_expression] = STATE(3460), + [sym_unary_expression] = STATE(2765), + [sym_receive_expression] = STATE(2765), + [sym_binary_expression] = STATE(2765), + [sym_as_type_cast_expression] = STATE(2765), + [sym__max_group] = STATE(2765), + [sym_literal] = STATE(2771), + [sym_map_init_expression] = STATE(2637), + [sym_array_creation] = STATE(2765), + [sym_fixed_array_creation] = STATE(2765), + [sym_selector_expression] = STATE(2765), + [sym_index_expression] = STATE(2765), + [sym_slice_expression] = STATE(2765), + [sym_if_expression] = STATE(2637), + [sym_compile_time_if_expression] = STATE(2637), + [sym_is_expression] = STATE(2765), + [sym_in_expression] = STATE(2765), + [sym_enum_fetch] = STATE(2765), + [sym_match_expression] = STATE(2637), + [sym_select_expression] = STATE(2637), + [sym_lock_expression] = STATE(2637), + [sym_unsafe_expression] = STATE(2637), + [sym_sql_expression] = STATE(2637), + [sym_c_string_literal] = STATE(2762), + [sym_raw_string_literal] = STATE(2762), + [sym_interpreted_string_literal] = STATE(2762), + [sym_mutability_modifiers] = STATE(822), + [sym_plain_type] = STATE(3934), + [sym__plain_type_without_special] = STATE(2360), + [sym_anon_struct_type] = STATE(2362), + [sym_multi_return_type] = STATE(2360), + [sym_result_type] = STATE(2360), + [sym_option_type] = STATE(2360), + [sym_qualified_type] = STATE(3460), + [sym_fixed_array_type] = STATE(2362), + [sym_array_type] = STATE(2362), + [sym_pointer_type] = STATE(2362), + [sym_wrong_pointer_type] = STATE(2362), + [sym_map_type] = STATE(2362), + [sym_channel_type] = STATE(2362), + [sym_shared_type] = STATE(2362), + [sym_thread_type] = STATE(2362), + [sym_atomic_type] = STATE(2362), + [sym_generic_type] = STATE(2362), + [sym_function_type] = STATE(2362), + [sym_identifier] = ACTIONS(1815), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(3288), - [anon_sym_LBRACE] = ACTIONS(3290), - [anon_sym_LPAREN] = ACTIONS(3292), - [anon_sym_fn] = ACTIONS(3294), - [anon_sym_PLUS] = ACTIONS(3296), - [anon_sym_DASH] = ACTIONS(3296), - [anon_sym_STAR] = ACTIONS(3298), - [anon_sym_struct] = ACTIONS(3300), + [anon_sym_DOT] = ACTIONS(1073), + [anon_sym_LBRACE] = ACTIONS(1075), + [anon_sym_LPAREN] = ACTIONS(1079), + [anon_sym_fn] = ACTIONS(1081), + [anon_sym_PLUS] = ACTIONS(3070), + [anon_sym_DASH] = ACTIONS(3070), + [anon_sym_STAR] = ACTIONS(3072), + [anon_sym_struct] = ACTIONS(1087), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(3302), - [anon_sym_go] = ACTIONS(3304), - [anon_sym_spawn] = ACTIONS(3306), - [anon_sym_json_DOTdecode] = ACTIONS(3308), - [anon_sym_LBRACK2] = ACTIONS(3310), - [anon_sym_TILDE] = ACTIONS(3296), - [anon_sym_CARET] = ACTIONS(3296), - [anon_sym_AMP] = ACTIONS(3312), - [anon_sym_LT_DASH] = ACTIONS(3314), - [sym_none] = ACTIONS(3316), - [sym_true] = ACTIONS(3316), - [sym_false] = ACTIONS(3316), - [sym_nil] = ACTIONS(3316), - [anon_sym_if] = ACTIONS(3318), - [anon_sym_DOLLARif] = ACTIONS(3320), - [anon_sym_match] = ACTIONS(3322), - [anon_sym_select] = ACTIONS(3324), - [anon_sym_lock] = ACTIONS(3326), - [anon_sym_rlock] = ACTIONS(3326), - [anon_sym_unsafe] = ACTIONS(3328), - [anon_sym_sql] = ACTIONS(3330), - [sym_int_literal] = ACTIONS(3316), - [sym_float_literal] = ACTIONS(3332), - [sym_rune_literal] = ACTIONS(3332), - [sym_pseudo_compile_time_identifier] = ACTIONS(3334), + [anon_sym_BANG] = ACTIONS(3074), + [anon_sym_go] = ACTIONS(3076), + [anon_sym_spawn] = ACTIONS(3078), + [anon_sym_json_DOTdecode] = ACTIONS(1095), + [anon_sym_LBRACK2] = ACTIONS(1097), + [anon_sym_TILDE] = ACTIONS(3070), + [anon_sym_CARET] = ACTIONS(3070), + [anon_sym_AMP] = ACTIONS(3080), + [anon_sym_LT_DASH] = ACTIONS(3082), + [sym_none] = ACTIONS(1103), + [sym_true] = ACTIONS(1103), + [sym_false] = ACTIONS(1103), + [sym_nil] = ACTIONS(1103), + [anon_sym_if] = ACTIONS(1105), + [anon_sym_DOLLARif] = ACTIONS(1109), + [anon_sym_match] = ACTIONS(1111), + [anon_sym_select] = ACTIONS(3084), + [anon_sym_lock] = ACTIONS(3086), + [anon_sym_rlock] = ACTIONS(3086), + [anon_sym_unsafe] = ACTIONS(1117), + [anon_sym_sql] = ACTIONS(1119), + [sym_int_literal] = ACTIONS(1103), + [sym_float_literal] = ACTIONS(1121), + [sym_rune_literal] = ACTIONS(1121), + [sym_pseudo_compile_time_identifier] = ACTIONS(1123), [anon_sym_shared] = ACTIONS(83), [anon_sym_map_LBRACK] = ACTIONS(85), [anon_sym_chan] = ACTIONS(87), [anon_sym_thread] = ACTIONS(89), [anon_sym_atomic] = ACTIONS(91), - [sym___double_quote] = ACTIONS(3336), - [sym___single_quote] = ACTIONS(3338), - [sym___c_double_quote] = ACTIONS(3340), - [sym___c_single_quote] = ACTIONS(3342), - [sym___r_double_quote] = ACTIONS(3344), - [sym___r_single_quote] = ACTIONS(3346), + [sym___double_quote] = ACTIONS(1125), + [sym___single_quote] = ACTIONS(1127), + [sym___c_double_quote] = ACTIONS(1129), + [sym___c_single_quote] = ACTIONS(1131), + [sym___r_double_quote] = ACTIONS(1133), + [sym___r_single_quote] = ACTIONS(1135), }, [581] = { [sym_line_comment] = STATE(581), [sym_block_comment] = STATE(581), - [sym__expression] = STATE(2259), - [sym__expression_without_blocks] = STATE(2226), - [sym__expression_with_blocks] = STATE(2226), - [sym_inc_expression] = STATE(2247), - [sym_dec_expression] = STATE(2247), - [sym_or_block_expression] = STATE(2247), - [sym_option_propagation_expression] = STATE(2247), - [sym_result_propagation_expression] = STATE(2247), - [sym_anon_struct_value_expression] = STATE(2248), - [sym_go_expression] = STATE(2247), - [sym_spawn_expression] = STATE(2247), - [sym_parenthesized_expression] = STATE(2247), - [sym_call_expression] = STATE(2247), - [sym_type_initializer] = STATE(2248), - [sym_function_literal] = STATE(2247), - [sym_reference_expression] = STATE(2252), - [sym_type_reference_expression] = STATE(3541), - [sym_unary_expression] = STATE(2247), - [sym_receive_expression] = STATE(2247), - [sym_binary_expression] = STATE(2247), - [sym_as_type_cast_expression] = STATE(2247), - [sym__max_group] = STATE(2247), - [sym_literal] = STATE(2155), - [sym_map_init_expression] = STATE(2248), - [sym_array_creation] = STATE(2247), - [sym_fixed_array_creation] = STATE(2247), - [sym_selector_expression] = STATE(2247), - [sym_index_expression] = STATE(2247), - [sym_slice_expression] = STATE(2247), - [sym_if_expression] = STATE(2248), - [sym_compile_time_if_expression] = STATE(2248), - [sym_is_expression] = STATE(2247), - [sym_in_expression] = STATE(2247), - [sym_enum_fetch] = STATE(2247), - [sym_match_expression] = STATE(2248), - [sym_select_expression] = STATE(2248), - [sym_lock_expression] = STATE(2248), - [sym_unsafe_expression] = STATE(2248), - [sym_sql_expression] = STATE(2248), - [sym_c_string_literal] = STATE(2153), - [sym_raw_string_literal] = STATE(2153), - [sym_interpreted_string_literal] = STATE(2153), - [sym_mutability_modifiers] = STATE(631), - [sym_plain_type] = STATE(4146), - [sym__plain_type_without_special] = STATE(2302), - [sym_anon_struct_type] = STATE(2303), - [sym_multi_return_type] = STATE(2302), - [sym_result_type] = STATE(2302), - [sym_option_type] = STATE(2302), - [sym_qualified_type] = STATE(3541), - [sym_fixed_array_type] = STATE(2303), - [sym_array_type] = STATE(2303), - [sym_pointer_type] = STATE(2303), - [sym_wrong_pointer_type] = STATE(2303), - [sym_map_type] = STATE(2303), - [sym_channel_type] = STATE(2303), - [sym_shared_type] = STATE(2303), - [sym_thread_type] = STATE(2303), - [sym_atomic_type] = STATE(2303), - [sym_generic_type] = STATE(2303), - [sym_function_type] = STATE(2303), - [sym_identifier] = ACTIONS(3286), + [sym__expression] = STATE(1657), + [sym__expression_without_blocks] = STATE(1799), + [sym__expression_with_blocks] = STATE(1799), + [sym_inc_expression] = STATE(1800), + [sym_dec_expression] = STATE(1800), + [sym_or_block_expression] = STATE(1800), + [sym_option_propagation_expression] = STATE(1800), + [sym_result_propagation_expression] = STATE(1800), + [sym_anon_struct_value_expression] = STATE(1801), + [sym_go_expression] = STATE(1800), + [sym_spawn_expression] = STATE(1800), + [sym_parenthesized_expression] = STATE(1800), + [sym_call_expression] = STATE(1800), + [sym_type_initializer] = STATE(1801), + [sym_function_literal] = STATE(1800), + [sym_reference_expression] = STATE(1844), + [sym_type_reference_expression] = STATE(3460), + [sym_unary_expression] = STATE(1800), + [sym_receive_expression] = STATE(1800), + [sym_binary_expression] = STATE(1800), + [sym_as_type_cast_expression] = STATE(1800), + [sym__max_group] = STATE(1800), + [sym_literal] = STATE(1797), + [sym_map_init_expression] = STATE(1801), + [sym_array_creation] = STATE(1800), + [sym_fixed_array_creation] = STATE(1800), + [sym_selector_expression] = STATE(1800), + [sym_index_expression] = STATE(1800), + [sym_slice_expression] = STATE(1800), + [sym_if_expression] = STATE(1801), + [sym_compile_time_if_expression] = STATE(1801), + [sym_is_expression] = STATE(1800), + [sym_in_expression] = STATE(1800), + [sym_enum_fetch] = STATE(1800), + [sym_match_expression] = STATE(1801), + [sym_select_expression] = STATE(1801), + [sym_lock_expression] = STATE(1801), + [sym_unsafe_expression] = STATE(1801), + [sym_sql_expression] = STATE(1801), + [sym_c_string_literal] = STATE(1792), + [sym_raw_string_literal] = STATE(1792), + [sym_interpreted_string_literal] = STATE(1792), + [sym_mutability_modifiers] = STATE(868), + [sym_plain_type] = STATE(4300), + [sym__plain_type_without_special] = STATE(2360), + [sym_anon_struct_type] = STATE(2362), + [sym_multi_return_type] = STATE(2360), + [sym_result_type] = STATE(2360), + [sym_option_type] = STATE(2360), + [sym_qualified_type] = STATE(3460), + [sym_fixed_array_type] = STATE(2362), + [sym_array_type] = STATE(2362), + [sym_pointer_type] = STATE(2362), + [sym_wrong_pointer_type] = STATE(2362), + [sym_map_type] = STATE(2362), + [sym_channel_type] = STATE(2362), + [sym_shared_type] = STATE(2362), + [sym_thread_type] = STATE(2362), + [sym_atomic_type] = STATE(2362), + [sym_generic_type] = STATE(2362), + [sym_function_type] = STATE(2362), + [sym_identifier] = ACTIONS(3198), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(3288), - [anon_sym_LBRACE] = ACTIONS(3290), - [anon_sym_LPAREN] = ACTIONS(3292), - [anon_sym_fn] = ACTIONS(3294), - [anon_sym_PLUS] = ACTIONS(3296), - [anon_sym_DASH] = ACTIONS(3296), - [anon_sym_STAR] = ACTIONS(3298), - [anon_sym_struct] = ACTIONS(3300), + [anon_sym_DOT] = ACTIONS(3200), + [anon_sym_LBRACE] = ACTIONS(3202), + [anon_sym_LPAREN] = ACTIONS(3204), + [anon_sym_fn] = ACTIONS(3206), + [anon_sym_PLUS] = ACTIONS(3208), + [anon_sym_DASH] = ACTIONS(3208), + [anon_sym_STAR] = ACTIONS(3210), + [anon_sym_struct] = ACTIONS(3212), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(3302), - [anon_sym_go] = ACTIONS(3304), - [anon_sym_spawn] = ACTIONS(3306), - [anon_sym_json_DOTdecode] = ACTIONS(3308), - [anon_sym_LBRACK2] = ACTIONS(3310), - [anon_sym_TILDE] = ACTIONS(3296), - [anon_sym_CARET] = ACTIONS(3296), - [anon_sym_AMP] = ACTIONS(3312), - [anon_sym_LT_DASH] = ACTIONS(3314), - [sym_none] = ACTIONS(3316), - [sym_true] = ACTIONS(3316), - [sym_false] = ACTIONS(3316), - [sym_nil] = ACTIONS(3316), - [anon_sym_if] = ACTIONS(3318), - [anon_sym_DOLLARif] = ACTIONS(3320), - [anon_sym_match] = ACTIONS(3322), - [anon_sym_select] = ACTIONS(3324), - [anon_sym_lock] = ACTIONS(3326), - [anon_sym_rlock] = ACTIONS(3326), - [anon_sym_unsafe] = ACTIONS(3328), - [anon_sym_sql] = ACTIONS(3330), - [sym_int_literal] = ACTIONS(3316), - [sym_float_literal] = ACTIONS(3332), - [sym_rune_literal] = ACTIONS(3332), - [sym_pseudo_compile_time_identifier] = ACTIONS(3334), + [anon_sym_BANG] = ACTIONS(3214), + [anon_sym_go] = ACTIONS(3216), + [anon_sym_spawn] = ACTIONS(3218), + [anon_sym_json_DOTdecode] = ACTIONS(3220), + [anon_sym_LBRACK2] = ACTIONS(3222), + [anon_sym_TILDE] = ACTIONS(3208), + [anon_sym_CARET] = ACTIONS(3208), + [anon_sym_AMP] = ACTIONS(3224), + [anon_sym_LT_DASH] = ACTIONS(3226), + [sym_none] = ACTIONS(3228), + [sym_true] = ACTIONS(3228), + [sym_false] = ACTIONS(3228), + [sym_nil] = ACTIONS(3228), + [anon_sym_if] = ACTIONS(3230), + [anon_sym_DOLLARif] = ACTIONS(3232), + [anon_sym_match] = ACTIONS(3234), + [anon_sym_select] = ACTIONS(3236), + [anon_sym_lock] = ACTIONS(3238), + [anon_sym_rlock] = ACTIONS(3238), + [anon_sym_unsafe] = ACTIONS(3240), + [anon_sym_sql] = ACTIONS(3242), + [sym_int_literal] = ACTIONS(3228), + [sym_float_literal] = ACTIONS(3244), + [sym_rune_literal] = ACTIONS(3244), + [sym_pseudo_compile_time_identifier] = ACTIONS(3246), [anon_sym_shared] = ACTIONS(83), [anon_sym_map_LBRACK] = ACTIONS(85), [anon_sym_chan] = ACTIONS(87), [anon_sym_thread] = ACTIONS(89), [anon_sym_atomic] = ACTIONS(91), - [sym___double_quote] = ACTIONS(3336), - [sym___single_quote] = ACTIONS(3338), - [sym___c_double_quote] = ACTIONS(3340), - [sym___c_single_quote] = ACTIONS(3342), - [sym___r_double_quote] = ACTIONS(3344), - [sym___r_single_quote] = ACTIONS(3346), + [sym___double_quote] = ACTIONS(3248), + [sym___single_quote] = ACTIONS(3250), + [sym___c_double_quote] = ACTIONS(3252), + [sym___c_single_quote] = ACTIONS(3254), + [sym___r_double_quote] = ACTIONS(3256), + [sym___r_single_quote] = ACTIONS(3258), }, [582] = { [sym_line_comment] = STATE(582), [sym_block_comment] = STATE(582), - [sym__expression] = STATE(2510), - [sym__expression_without_blocks] = STATE(2300), - [sym__expression_with_blocks] = STATE(2300), - [sym_inc_expression] = STATE(2307), - [sym_dec_expression] = STATE(2307), - [sym_or_block_expression] = STATE(2307), - [sym_option_propagation_expression] = STATE(2307), - [sym_result_propagation_expression] = STATE(2307), - [sym_anon_struct_value_expression] = STATE(2380), - [sym_go_expression] = STATE(2307), - [sym_spawn_expression] = STATE(2307), - [sym_parenthesized_expression] = STATE(2307), - [sym_call_expression] = STATE(2307), - [sym_type_initializer] = STATE(2380), - [sym_function_literal] = STATE(2307), - [sym_reference_expression] = STATE(2311), - [sym_type_reference_expression] = STATE(3541), - [sym_unary_expression] = STATE(2307), - [sym_receive_expression] = STATE(2307), - [sym_binary_expression] = STATE(2307), - [sym_as_type_cast_expression] = STATE(2307), - [sym__max_group] = STATE(2307), - [sym_literal] = STATE(2292), - [sym_map_init_expression] = STATE(2380), - [sym_array_creation] = STATE(2307), - [sym_fixed_array_creation] = STATE(2307), - [sym_selector_expression] = STATE(2307), - [sym_index_expression] = STATE(2307), - [sym_slice_expression] = STATE(2307), - [sym_if_expression] = STATE(2380), - [sym_compile_time_if_expression] = STATE(2380), - [sym_is_expression] = STATE(2307), - [sym_in_expression] = STATE(2307), - [sym_enum_fetch] = STATE(2307), - [sym_match_expression] = STATE(2380), - [sym_select_expression] = STATE(2380), - [sym_lock_expression] = STATE(2380), - [sym_unsafe_expression] = STATE(2380), - [sym_sql_expression] = STATE(2380), - [sym_c_string_literal] = STATE(2308), - [sym_raw_string_literal] = STATE(2308), - [sym_interpreted_string_literal] = STATE(2308), - [sym_mutability_modifiers] = STATE(632), - [sym_plain_type] = STATE(4297), - [sym__plain_type_without_special] = STATE(2302), - [sym_anon_struct_type] = STATE(2303), - [sym_multi_return_type] = STATE(2302), - [sym_result_type] = STATE(2302), - [sym_option_type] = STATE(2302), - [sym_qualified_type] = STATE(3541), - [sym_fixed_array_type] = STATE(2303), - [sym_array_type] = STATE(2303), - [sym_pointer_type] = STATE(2303), - [sym_wrong_pointer_type] = STATE(2303), - [sym_map_type] = STATE(2303), - [sym_channel_type] = STATE(2303), - [sym_shared_type] = STATE(2303), - [sym_thread_type] = STATE(2303), - [sym_atomic_type] = STATE(2303), - [sym_generic_type] = STATE(2303), - [sym_function_type] = STATE(2303), - [sym_identifier] = ACTIONS(2189), + [sym__expression] = STATE(1755), + [sym__expression_without_blocks] = STATE(1915), + [sym__expression_with_blocks] = STATE(1915), + [sym_inc_expression] = STATE(2035), + [sym_dec_expression] = STATE(2035), + [sym_or_block_expression] = STATE(2035), + [sym_option_propagation_expression] = STATE(2035), + [sym_result_propagation_expression] = STATE(2035), + [sym_anon_struct_value_expression] = STATE(1939), + [sym_go_expression] = STATE(2035), + [sym_spawn_expression] = STATE(2035), + [sym_parenthesized_expression] = STATE(2035), + [sym_call_expression] = STATE(2035), + [sym_type_initializer] = STATE(1939), + [sym_function_literal] = STATE(2035), + [sym_reference_expression] = STATE(1944), + [sym_type_reference_expression] = STATE(3460), + [sym_unary_expression] = STATE(2035), + [sym_receive_expression] = STATE(2035), + [sym_binary_expression] = STATE(2035), + [sym_as_type_cast_expression] = STATE(2035), + [sym__max_group] = STATE(2035), + [sym_literal] = STATE(2030), + [sym_map_init_expression] = STATE(1939), + [sym_array_creation] = STATE(2035), + [sym_fixed_array_creation] = STATE(2035), + [sym_selector_expression] = STATE(2035), + [sym_index_expression] = STATE(2035), + [sym_slice_expression] = STATE(2035), + [sym_if_expression] = STATE(1939), + [sym_compile_time_if_expression] = STATE(1939), + [sym_is_expression] = STATE(2035), + [sym_in_expression] = STATE(2035), + [sym_enum_fetch] = STATE(2035), + [sym_match_expression] = STATE(1939), + [sym_select_expression] = STATE(1939), + [sym_lock_expression] = STATE(1939), + [sym_unsafe_expression] = STATE(1939), + [sym_sql_expression] = STATE(1939), + [sym_c_string_literal] = STATE(2029), + [sym_raw_string_literal] = STATE(2029), + [sym_interpreted_string_literal] = STATE(2029), + [sym_mutability_modifiers] = STATE(555), + [sym_plain_type] = STATE(4281), + [sym__plain_type_without_special] = STATE(2360), + [sym_anon_struct_type] = STATE(2362), + [sym_multi_return_type] = STATE(2360), + [sym_result_type] = STATE(2360), + [sym_option_type] = STATE(2360), + [sym_qualified_type] = STATE(3460), + [sym_fixed_array_type] = STATE(2362), + [sym_array_type] = STATE(2362), + [sym_pointer_type] = STATE(2362), + [sym_wrong_pointer_type] = STATE(2362), + [sym_map_type] = STATE(2362), + [sym_channel_type] = STATE(2362), + [sym_shared_type] = STATE(2362), + [sym_thread_type] = STATE(2362), + [sym_atomic_type] = STATE(2362), + [sym_generic_type] = STATE(2362), + [sym_function_type] = STATE(2362), + [sym_identifier] = ACTIONS(3272), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1428), - [anon_sym_LBRACE] = ACTIONS(1430), - [anon_sym_LPAREN] = ACTIONS(1432), - [anon_sym_fn] = ACTIONS(1434), - [anon_sym_PLUS] = ACTIONS(2191), - [anon_sym_DASH] = ACTIONS(2191), - [anon_sym_STAR] = ACTIONS(2193), - [anon_sym_struct] = ACTIONS(1440), + [anon_sym_DOT] = ACTIONS(769), + [anon_sym_LBRACE] = ACTIONS(3274), + [anon_sym_LPAREN] = ACTIONS(775), + [anon_sym_fn] = ACTIONS(777), + [anon_sym_PLUS] = ACTIONS(779), + [anon_sym_DASH] = ACTIONS(779), + [anon_sym_STAR] = ACTIONS(781), + [anon_sym_struct] = ACTIONS(3276), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(2195), - [anon_sym_go] = ACTIONS(2197), - [anon_sym_spawn] = ACTIONS(2199), - [anon_sym_json_DOTdecode] = ACTIONS(1448), - [anon_sym_LBRACK2] = ACTIONS(2201), - [anon_sym_TILDE] = ACTIONS(2191), - [anon_sym_CARET] = ACTIONS(2191), - [anon_sym_AMP] = ACTIONS(2203), - [anon_sym_LT_DASH] = ACTIONS(2205), - [sym_none] = ACTIONS(1456), - [sym_true] = ACTIONS(1456), - [sym_false] = ACTIONS(1456), - [sym_nil] = ACTIONS(1456), - [anon_sym_if] = ACTIONS(1827), - [anon_sym_DOLLARif] = ACTIONS(1460), - [anon_sym_match] = ACTIONS(1462), - [anon_sym_select] = ACTIONS(2207), - [anon_sym_lock] = ACTIONS(2209), - [anon_sym_rlock] = ACTIONS(2209), - [anon_sym_unsafe] = ACTIONS(1833), - [anon_sym_sql] = ACTIONS(1470), - [sym_int_literal] = ACTIONS(1456), - [sym_float_literal] = ACTIONS(1472), - [sym_rune_literal] = ACTIONS(1472), - [sym_pseudo_compile_time_identifier] = ACTIONS(1474), + [anon_sym_BANG] = ACTIONS(785), + [anon_sym_go] = ACTIONS(787), + [anon_sym_spawn] = ACTIONS(789), + [anon_sym_json_DOTdecode] = ACTIONS(791), + [anon_sym_LBRACK2] = ACTIONS(793), + [anon_sym_TILDE] = ACTIONS(779), + [anon_sym_CARET] = ACTIONS(779), + [anon_sym_AMP] = ACTIONS(795), + [anon_sym_LT_DASH] = ACTIONS(797), + [sym_none] = ACTIONS(799), + [sym_true] = ACTIONS(799), + [sym_false] = ACTIONS(799), + [sym_nil] = ACTIONS(799), + [anon_sym_if] = ACTIONS(3278), + [anon_sym_DOLLARif] = ACTIONS(3280), + [anon_sym_match] = ACTIONS(3282), + [anon_sym_select] = ACTIONS(3284), + [anon_sym_lock] = ACTIONS(3286), + [anon_sym_rlock] = ACTIONS(3286), + [anon_sym_unsafe] = ACTIONS(3288), + [anon_sym_sql] = ACTIONS(3290), + [sym_int_literal] = ACTIONS(799), + [sym_float_literal] = ACTIONS(817), + [sym_rune_literal] = ACTIONS(817), + [sym_pseudo_compile_time_identifier] = ACTIONS(819), [anon_sym_shared] = ACTIONS(83), [anon_sym_map_LBRACK] = ACTIONS(85), [anon_sym_chan] = ACTIONS(87), [anon_sym_thread] = ACTIONS(89), [anon_sym_atomic] = ACTIONS(91), - [sym___double_quote] = ACTIONS(1478), - [sym___single_quote] = ACTIONS(1480), - [sym___c_double_quote] = ACTIONS(1482), - [sym___c_single_quote] = ACTIONS(1484), - [sym___r_double_quote] = ACTIONS(1486), - [sym___r_single_quote] = ACTIONS(1488), + [sym___double_quote] = ACTIONS(821), + [sym___single_quote] = ACTIONS(823), + [sym___c_double_quote] = ACTIONS(825), + [sym___c_single_quote] = ACTIONS(827), + [sym___r_double_quote] = ACTIONS(829), + [sym___r_single_quote] = ACTIONS(831), }, [583] = { [sym_line_comment] = STATE(583), [sym_block_comment] = STATE(583), - [sym__expression] = STATE(2273), - [sym__expression_without_blocks] = STATE(2226), - [sym__expression_with_blocks] = STATE(2226), - [sym_inc_expression] = STATE(2247), - [sym_dec_expression] = STATE(2247), - [sym_or_block_expression] = STATE(2247), - [sym_option_propagation_expression] = STATE(2247), - [sym_result_propagation_expression] = STATE(2247), - [sym_anon_struct_value_expression] = STATE(2248), - [sym_go_expression] = STATE(2247), - [sym_spawn_expression] = STATE(2247), - [sym_parenthesized_expression] = STATE(2247), - [sym_call_expression] = STATE(2247), - [sym_type_initializer] = STATE(2248), - [sym_function_literal] = STATE(2247), - [sym_reference_expression] = STATE(2252), - [sym_type_reference_expression] = STATE(3541), - [sym_unary_expression] = STATE(2247), - [sym_receive_expression] = STATE(2247), - [sym_binary_expression] = STATE(2247), - [sym_as_type_cast_expression] = STATE(2247), - [sym__max_group] = STATE(2247), - [sym_literal] = STATE(2155), - [sym_map_init_expression] = STATE(2248), - [sym_array_creation] = STATE(2247), - [sym_fixed_array_creation] = STATE(2247), - [sym_selector_expression] = STATE(2247), - [sym_index_expression] = STATE(2247), - [sym_slice_expression] = STATE(2247), - [sym_if_expression] = STATE(2248), - [sym_compile_time_if_expression] = STATE(2248), - [sym_is_expression] = STATE(2247), - [sym_in_expression] = STATE(2247), - [sym_enum_fetch] = STATE(2247), - [sym_match_expression] = STATE(2248), - [sym_select_expression] = STATE(2248), - [sym_lock_expression] = STATE(2248), - [sym_unsafe_expression] = STATE(2248), - [sym_sql_expression] = STATE(2248), - [sym_c_string_literal] = STATE(2153), - [sym_raw_string_literal] = STATE(2153), - [sym_interpreted_string_literal] = STATE(2153), - [sym_mutability_modifiers] = STATE(631), - [sym_plain_type] = STATE(4146), - [sym__plain_type_without_special] = STATE(2302), - [sym_anon_struct_type] = STATE(2303), - [sym_multi_return_type] = STATE(2302), - [sym_result_type] = STATE(2302), - [sym_option_type] = STATE(2302), - [sym_qualified_type] = STATE(3541), - [sym_fixed_array_type] = STATE(2303), - [sym_array_type] = STATE(2303), - [sym_pointer_type] = STATE(2303), - [sym_wrong_pointer_type] = STATE(2303), - [sym_map_type] = STATE(2303), - [sym_channel_type] = STATE(2303), - [sym_shared_type] = STATE(2303), - [sym_thread_type] = STATE(2303), - [sym_atomic_type] = STATE(2303), - [sym_generic_type] = STATE(2303), - [sym_function_type] = STATE(2303), - [sym_identifier] = ACTIONS(3286), + [sym__expression] = STATE(1656), + [sym__expression_without_blocks] = STATE(1799), + [sym__expression_with_blocks] = STATE(1799), + [sym_inc_expression] = STATE(1800), + [sym_dec_expression] = STATE(1800), + [sym_or_block_expression] = STATE(1800), + [sym_option_propagation_expression] = STATE(1800), + [sym_result_propagation_expression] = STATE(1800), + [sym_anon_struct_value_expression] = STATE(1801), + [sym_go_expression] = STATE(1800), + [sym_spawn_expression] = STATE(1800), + [sym_parenthesized_expression] = STATE(1800), + [sym_call_expression] = STATE(1800), + [sym_type_initializer] = STATE(1801), + [sym_function_literal] = STATE(1800), + [sym_reference_expression] = STATE(1844), + [sym_type_reference_expression] = STATE(3460), + [sym_unary_expression] = STATE(1800), + [sym_receive_expression] = STATE(1800), + [sym_binary_expression] = STATE(1800), + [sym_as_type_cast_expression] = STATE(1800), + [sym__max_group] = STATE(1800), + [sym_literal] = STATE(1797), + [sym_map_init_expression] = STATE(1801), + [sym_array_creation] = STATE(1800), + [sym_fixed_array_creation] = STATE(1800), + [sym_selector_expression] = STATE(1800), + [sym_index_expression] = STATE(1800), + [sym_slice_expression] = STATE(1800), + [sym_if_expression] = STATE(1801), + [sym_compile_time_if_expression] = STATE(1801), + [sym_is_expression] = STATE(1800), + [sym_in_expression] = STATE(1800), + [sym_enum_fetch] = STATE(1800), + [sym_match_expression] = STATE(1801), + [sym_select_expression] = STATE(1801), + [sym_lock_expression] = STATE(1801), + [sym_unsafe_expression] = STATE(1801), + [sym_sql_expression] = STATE(1801), + [sym_c_string_literal] = STATE(1792), + [sym_raw_string_literal] = STATE(1792), + [sym_interpreted_string_literal] = STATE(1792), + [sym_mutability_modifiers] = STATE(868), + [sym_plain_type] = STATE(4300), + [sym__plain_type_without_special] = STATE(2360), + [sym_anon_struct_type] = STATE(2362), + [sym_multi_return_type] = STATE(2360), + [sym_result_type] = STATE(2360), + [sym_option_type] = STATE(2360), + [sym_qualified_type] = STATE(3460), + [sym_fixed_array_type] = STATE(2362), + [sym_array_type] = STATE(2362), + [sym_pointer_type] = STATE(2362), + [sym_wrong_pointer_type] = STATE(2362), + [sym_map_type] = STATE(2362), + [sym_channel_type] = STATE(2362), + [sym_shared_type] = STATE(2362), + [sym_thread_type] = STATE(2362), + [sym_atomic_type] = STATE(2362), + [sym_generic_type] = STATE(2362), + [sym_function_type] = STATE(2362), + [sym_identifier] = ACTIONS(3198), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(3288), - [anon_sym_LBRACE] = ACTIONS(3290), - [anon_sym_LPAREN] = ACTIONS(3292), - [anon_sym_fn] = ACTIONS(3294), - [anon_sym_PLUS] = ACTIONS(3296), - [anon_sym_DASH] = ACTIONS(3296), - [anon_sym_STAR] = ACTIONS(3298), - [anon_sym_struct] = ACTIONS(3300), + [anon_sym_DOT] = ACTIONS(3200), + [anon_sym_LBRACE] = ACTIONS(3202), + [anon_sym_LPAREN] = ACTIONS(3204), + [anon_sym_fn] = ACTIONS(3206), + [anon_sym_PLUS] = ACTIONS(3208), + [anon_sym_DASH] = ACTIONS(3208), + [anon_sym_STAR] = ACTIONS(3210), + [anon_sym_struct] = ACTIONS(3212), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(3302), - [anon_sym_go] = ACTIONS(3304), - [anon_sym_spawn] = ACTIONS(3306), - [anon_sym_json_DOTdecode] = ACTIONS(3308), - [anon_sym_LBRACK2] = ACTIONS(3310), - [anon_sym_TILDE] = ACTIONS(3296), - [anon_sym_CARET] = ACTIONS(3296), - [anon_sym_AMP] = ACTIONS(3312), - [anon_sym_LT_DASH] = ACTIONS(3314), - [sym_none] = ACTIONS(3316), - [sym_true] = ACTIONS(3316), - [sym_false] = ACTIONS(3316), - [sym_nil] = ACTIONS(3316), - [anon_sym_if] = ACTIONS(3318), - [anon_sym_DOLLARif] = ACTIONS(3320), - [anon_sym_match] = ACTIONS(3322), - [anon_sym_select] = ACTIONS(3324), - [anon_sym_lock] = ACTIONS(3326), - [anon_sym_rlock] = ACTIONS(3326), - [anon_sym_unsafe] = ACTIONS(3328), - [anon_sym_sql] = ACTIONS(3330), - [sym_int_literal] = ACTIONS(3316), - [sym_float_literal] = ACTIONS(3332), - [sym_rune_literal] = ACTIONS(3332), - [sym_pseudo_compile_time_identifier] = ACTIONS(3334), + [anon_sym_BANG] = ACTIONS(3214), + [anon_sym_go] = ACTIONS(3216), + [anon_sym_spawn] = ACTIONS(3218), + [anon_sym_json_DOTdecode] = ACTIONS(3220), + [anon_sym_LBRACK2] = ACTIONS(3222), + [anon_sym_TILDE] = ACTIONS(3208), + [anon_sym_CARET] = ACTIONS(3208), + [anon_sym_AMP] = ACTIONS(3224), + [anon_sym_LT_DASH] = ACTIONS(3226), + [sym_none] = ACTIONS(3228), + [sym_true] = ACTIONS(3228), + [sym_false] = ACTIONS(3228), + [sym_nil] = ACTIONS(3228), + [anon_sym_if] = ACTIONS(3230), + [anon_sym_DOLLARif] = ACTIONS(3232), + [anon_sym_match] = ACTIONS(3234), + [anon_sym_select] = ACTIONS(3236), + [anon_sym_lock] = ACTIONS(3238), + [anon_sym_rlock] = ACTIONS(3238), + [anon_sym_unsafe] = ACTIONS(3240), + [anon_sym_sql] = ACTIONS(3242), + [sym_int_literal] = ACTIONS(3228), + [sym_float_literal] = ACTIONS(3244), + [sym_rune_literal] = ACTIONS(3244), + [sym_pseudo_compile_time_identifier] = ACTIONS(3246), [anon_sym_shared] = ACTIONS(83), [anon_sym_map_LBRACK] = ACTIONS(85), [anon_sym_chan] = ACTIONS(87), [anon_sym_thread] = ACTIONS(89), [anon_sym_atomic] = ACTIONS(91), - [sym___double_quote] = ACTIONS(3336), - [sym___single_quote] = ACTIONS(3338), - [sym___c_double_quote] = ACTIONS(3340), - [sym___c_single_quote] = ACTIONS(3342), - [sym___r_double_quote] = ACTIONS(3344), - [sym___r_single_quote] = ACTIONS(3346), + [sym___double_quote] = ACTIONS(3248), + [sym___single_quote] = ACTIONS(3250), + [sym___c_double_quote] = ACTIONS(3252), + [sym___c_single_quote] = ACTIONS(3254), + [sym___r_double_quote] = ACTIONS(3256), + [sym___r_single_quote] = ACTIONS(3258), }, [584] = { [sym_line_comment] = STATE(584), [sym_block_comment] = STATE(584), - [sym__expression] = STATE(2503), - [sym__expression_without_blocks] = STATE(2300), - [sym__expression_with_blocks] = STATE(2300), - [sym_inc_expression] = STATE(2307), - [sym_dec_expression] = STATE(2307), - [sym_or_block_expression] = STATE(2307), - [sym_option_propagation_expression] = STATE(2307), - [sym_result_propagation_expression] = STATE(2307), - [sym_anon_struct_value_expression] = STATE(2380), - [sym_go_expression] = STATE(2307), - [sym_spawn_expression] = STATE(2307), - [sym_parenthesized_expression] = STATE(2307), - [sym_call_expression] = STATE(2307), - [sym_type_initializer] = STATE(2380), - [sym_function_literal] = STATE(2307), - [sym_reference_expression] = STATE(2311), - [sym_type_reference_expression] = STATE(3541), - [sym_unary_expression] = STATE(2307), - [sym_receive_expression] = STATE(2307), - [sym_binary_expression] = STATE(2307), - [sym_as_type_cast_expression] = STATE(2307), - [sym__max_group] = STATE(2307), - [sym_literal] = STATE(2292), - [sym_map_init_expression] = STATE(2380), - [sym_array_creation] = STATE(2307), - [sym_fixed_array_creation] = STATE(2307), - [sym_selector_expression] = STATE(2307), - [sym_index_expression] = STATE(2307), - [sym_slice_expression] = STATE(2307), - [sym_if_expression] = STATE(2380), - [sym_compile_time_if_expression] = STATE(2380), - [sym_is_expression] = STATE(2307), - [sym_in_expression] = STATE(2307), - [sym_enum_fetch] = STATE(2307), - [sym_match_expression] = STATE(2380), - [sym_select_expression] = STATE(2380), - [sym_lock_expression] = STATE(2380), - [sym_unsafe_expression] = STATE(2380), - [sym_sql_expression] = STATE(2380), - [sym_c_string_literal] = STATE(2308), - [sym_raw_string_literal] = STATE(2308), - [sym_interpreted_string_literal] = STATE(2308), - [sym_mutability_modifiers] = STATE(632), - [sym_plain_type] = STATE(4297), - [sym__plain_type_without_special] = STATE(2302), - [sym_anon_struct_type] = STATE(2303), - [sym_multi_return_type] = STATE(2302), - [sym_result_type] = STATE(2302), - [sym_option_type] = STATE(2302), - [sym_qualified_type] = STATE(3541), - [sym_fixed_array_type] = STATE(2303), - [sym_array_type] = STATE(2303), - [sym_pointer_type] = STATE(2303), - [sym_wrong_pointer_type] = STATE(2303), - [sym_map_type] = STATE(2303), - [sym_channel_type] = STATE(2303), - [sym_shared_type] = STATE(2303), - [sym_thread_type] = STATE(2303), - [sym_atomic_type] = STATE(2303), - [sym_generic_type] = STATE(2303), - [sym_function_type] = STATE(2303), - [sym_identifier] = ACTIONS(2189), + [sym__expression] = STATE(218), + [sym__expression_without_blocks] = STATE(401), + [sym__expression_with_blocks] = STATE(401), + [sym_inc_expression] = STATE(399), + [sym_dec_expression] = STATE(399), + [sym_or_block_expression] = STATE(399), + [sym_option_propagation_expression] = STATE(399), + [sym_result_propagation_expression] = STATE(399), + [sym_anon_struct_value_expression] = STATE(395), + [sym_go_expression] = STATE(399), + [sym_spawn_expression] = STATE(399), + [sym_parenthesized_expression] = STATE(399), + [sym_call_expression] = STATE(399), + [sym_type_initializer] = STATE(395), + [sym_function_literal] = STATE(399), + [sym_reference_expression] = STATE(393), + [sym_type_reference_expression] = STATE(3460), + [sym_unary_expression] = STATE(399), + [sym_receive_expression] = STATE(399), + [sym_binary_expression] = STATE(399), + [sym_as_type_cast_expression] = STATE(399), + [sym__max_group] = STATE(399), + [sym_literal] = STATE(455), + [sym_map_init_expression] = STATE(395), + [sym_array_creation] = STATE(399), + [sym_fixed_array_creation] = STATE(399), + [sym_selector_expression] = STATE(399), + [sym_index_expression] = STATE(399), + [sym_slice_expression] = STATE(399), + [sym_if_expression] = STATE(395), + [sym_compile_time_if_expression] = STATE(395), + [sym_is_expression] = STATE(399), + [sym_in_expression] = STATE(399), + [sym_enum_fetch] = STATE(399), + [sym_match_expression] = STATE(395), + [sym_select_expression] = STATE(395), + [sym_lock_expression] = STATE(395), + [sym_unsafe_expression] = STATE(395), + [sym_sql_expression] = STATE(395), + [sym_c_string_literal] = STATE(479), + [sym_raw_string_literal] = STATE(479), + [sym_interpreted_string_literal] = STATE(479), + [sym_mutability_modifiers] = STATE(845), + [sym_plain_type] = STATE(4135), + [sym__plain_type_without_special] = STATE(2360), + [sym_anon_struct_type] = STATE(2362), + [sym_multi_return_type] = STATE(2360), + [sym_result_type] = STATE(2360), + [sym_option_type] = STATE(2360), + [sym_qualified_type] = STATE(3460), + [sym_fixed_array_type] = STATE(2362), + [sym_array_type] = STATE(2362), + [sym_pointer_type] = STATE(2362), + [sym_wrong_pointer_type] = STATE(2362), + [sym_map_type] = STATE(2362), + [sym_channel_type] = STATE(2362), + [sym_shared_type] = STATE(2362), + [sym_thread_type] = STATE(2362), + [sym_atomic_type] = STATE(2362), + [sym_generic_type] = STATE(2362), + [sym_function_type] = STATE(2362), + [sym_identifier] = ACTIONS(3184), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1428), - [anon_sym_LBRACE] = ACTIONS(1430), - [anon_sym_LPAREN] = ACTIONS(1432), - [anon_sym_fn] = ACTIONS(1434), - [anon_sym_PLUS] = ACTIONS(2191), - [anon_sym_DASH] = ACTIONS(2191), - [anon_sym_STAR] = ACTIONS(2193), - [anon_sym_struct] = ACTIONS(1440), + [anon_sym_DOT] = ACTIONS(17), + [anon_sym_LBRACE] = ACTIONS(3186), + [anon_sym_LPAREN] = ACTIONS(23), + [anon_sym_fn] = ACTIONS(485), + [anon_sym_PLUS] = ACTIONS(31), + [anon_sym_DASH] = ACTIONS(31), + [anon_sym_STAR] = ACTIONS(33), + [anon_sym_struct] = ACTIONS(487), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(2195), - [anon_sym_go] = ACTIONS(2197), - [anon_sym_spawn] = ACTIONS(2199), - [anon_sym_json_DOTdecode] = ACTIONS(1448), - [anon_sym_LBRACK2] = ACTIONS(2201), - [anon_sym_TILDE] = ACTIONS(2191), - [anon_sym_CARET] = ACTIONS(2191), - [anon_sym_AMP] = ACTIONS(2203), - [anon_sym_LT_DASH] = ACTIONS(2205), - [sym_none] = ACTIONS(1456), - [sym_true] = ACTIONS(1456), - [sym_false] = ACTIONS(1456), - [sym_nil] = ACTIONS(1456), - [anon_sym_if] = ACTIONS(1827), - [anon_sym_DOLLARif] = ACTIONS(1460), - [anon_sym_match] = ACTIONS(1462), - [anon_sym_select] = ACTIONS(2207), - [anon_sym_lock] = ACTIONS(2209), - [anon_sym_rlock] = ACTIONS(2209), - [anon_sym_unsafe] = ACTIONS(1833), - [anon_sym_sql] = ACTIONS(1470), - [sym_int_literal] = ACTIONS(1456), - [sym_float_literal] = ACTIONS(1472), - [sym_rune_literal] = ACTIONS(1472), - [sym_pseudo_compile_time_identifier] = ACTIONS(1474), + [anon_sym_BANG] = ACTIONS(49), + [anon_sym_go] = ACTIONS(51), + [anon_sym_spawn] = ACTIONS(53), + [anon_sym_json_DOTdecode] = ACTIONS(55), + [anon_sym_LBRACK2] = ACTIONS(489), + [anon_sym_TILDE] = ACTIONS(31), + [anon_sym_CARET] = ACTIONS(31), + [anon_sym_AMP] = ACTIONS(59), + [anon_sym_LT_DASH] = ACTIONS(61), + [sym_none] = ACTIONS(63), + [sym_true] = ACTIONS(63), + [sym_false] = ACTIONS(63), + [sym_nil] = ACTIONS(63), + [anon_sym_if] = ACTIONS(65), + [anon_sym_DOLLARif] = ACTIONS(67), + [anon_sym_match] = ACTIONS(69), + [anon_sym_select] = ACTIONS(71), + [anon_sym_lock] = ACTIONS(73), + [anon_sym_rlock] = ACTIONS(73), + [anon_sym_unsafe] = ACTIONS(75), + [anon_sym_sql] = ACTIONS(77), + [sym_int_literal] = ACTIONS(63), + [sym_float_literal] = ACTIONS(79), + [sym_rune_literal] = ACTIONS(79), + [sym_pseudo_compile_time_identifier] = ACTIONS(81), [anon_sym_shared] = ACTIONS(83), [anon_sym_map_LBRACK] = ACTIONS(85), [anon_sym_chan] = ACTIONS(87), [anon_sym_thread] = ACTIONS(89), [anon_sym_atomic] = ACTIONS(91), - [sym___double_quote] = ACTIONS(1478), - [sym___single_quote] = ACTIONS(1480), - [sym___c_double_quote] = ACTIONS(1482), - [sym___c_single_quote] = ACTIONS(1484), - [sym___r_double_quote] = ACTIONS(1486), - [sym___r_single_quote] = ACTIONS(1488), + [sym___double_quote] = ACTIONS(115), + [sym___single_quote] = ACTIONS(117), + [sym___c_double_quote] = ACTIONS(119), + [sym___c_single_quote] = ACTIONS(121), + [sym___r_double_quote] = ACTIONS(123), + [sym___r_single_quote] = ACTIONS(125), }, [585] = { [sym_line_comment] = STATE(585), [sym_block_comment] = STATE(585), - [sym__expression] = STATE(1112), - [sym__expression_without_blocks] = STATE(1141), - [sym__expression_with_blocks] = STATE(1141), - [sym_inc_expression] = STATE(1140), - [sym_dec_expression] = STATE(1140), - [sym_or_block_expression] = STATE(1140), - [sym_option_propagation_expression] = STATE(1140), - [sym_result_propagation_expression] = STATE(1140), - [sym_anon_struct_value_expression] = STATE(1199), - [sym_go_expression] = STATE(1140), - [sym_spawn_expression] = STATE(1140), - [sym_parenthesized_expression] = STATE(1140), - [sym_call_expression] = STATE(1140), - [sym_type_initializer] = STATE(1199), - [sym_function_literal] = STATE(1140), - [sym_reference_expression] = STATE(1181), - [sym_type_reference_expression] = STATE(3541), - [sym_unary_expression] = STATE(1140), - [sym_receive_expression] = STATE(1140), - [sym_binary_expression] = STATE(1140), - [sym_as_type_cast_expression] = STATE(1140), - [sym__max_group] = STATE(1140), - [sym_literal] = STATE(1146), - [sym_map_init_expression] = STATE(1199), - [sym_array_creation] = STATE(1140), - [sym_fixed_array_creation] = STATE(1140), - [sym_selector_expression] = STATE(1140), - [sym_index_expression] = STATE(1140), - [sym_slice_expression] = STATE(1140), - [sym_if_expression] = STATE(1199), - [sym_compile_time_if_expression] = STATE(1199), - [sym_is_expression] = STATE(1140), - [sym_in_expression] = STATE(1140), - [sym_enum_fetch] = STATE(1140), - [sym_match_expression] = STATE(1199), - [sym_select_expression] = STATE(1199), - [sym_lock_expression] = STATE(1199), - [sym_unsafe_expression] = STATE(1199), - [sym_sql_expression] = STATE(1199), - [sym_c_string_literal] = STATE(1147), - [sym_raw_string_literal] = STATE(1147), - [sym_interpreted_string_literal] = STATE(1147), - [sym_mutability_modifiers] = STATE(638), - [sym_plain_type] = STATE(4224), - [sym__plain_type_without_special] = STATE(2302), - [sym_anon_struct_type] = STATE(2303), - [sym_multi_return_type] = STATE(2302), - [sym_result_type] = STATE(2302), - [sym_option_type] = STATE(2302), - [sym_qualified_type] = STATE(3541), - [sym_fixed_array_type] = STATE(2303), - [sym_array_type] = STATE(2303), - [sym_pointer_type] = STATE(2303), - [sym_wrong_pointer_type] = STATE(2303), - [sym_map_type] = STATE(2303), - [sym_channel_type] = STATE(2303), - [sym_shared_type] = STATE(2303), - [sym_thread_type] = STATE(2303), - [sym_atomic_type] = STATE(2303), - [sym_generic_type] = STATE(2303), - [sym_function_type] = STATE(2303), - [sym_identifier] = ACTIONS(1071), + [sym__expression] = STATE(218), + [sym__expression_without_blocks] = STATE(401), + [sym__expression_with_blocks] = STATE(401), + [sym_inc_expression] = STATE(399), + [sym_dec_expression] = STATE(399), + [sym_or_block_expression] = STATE(399), + [sym_option_propagation_expression] = STATE(399), + [sym_result_propagation_expression] = STATE(399), + [sym_anon_struct_value_expression] = STATE(395), + [sym_go_expression] = STATE(399), + [sym_spawn_expression] = STATE(399), + [sym_parenthesized_expression] = STATE(399), + [sym_call_expression] = STATE(399), + [sym_type_initializer] = STATE(395), + [sym_function_literal] = STATE(399), + [sym_reference_expression] = STATE(393), + [sym_type_reference_expression] = STATE(3460), + [sym_unary_expression] = STATE(399), + [sym_receive_expression] = STATE(399), + [sym_binary_expression] = STATE(399), + [sym_as_type_cast_expression] = STATE(399), + [sym__max_group] = STATE(399), + [sym_literal] = STATE(455), + [sym_map_init_expression] = STATE(395), + [sym_array_creation] = STATE(399), + [sym_fixed_array_creation] = STATE(399), + [sym_selector_expression] = STATE(399), + [sym_index_expression] = STATE(399), + [sym_slice_expression] = STATE(399), + [sym_if_expression] = STATE(395), + [sym_compile_time_if_expression] = STATE(395), + [sym_is_expression] = STATE(399), + [sym_in_expression] = STATE(399), + [sym_enum_fetch] = STATE(399), + [sym_match_expression] = STATE(395), + [sym_select_expression] = STATE(395), + [sym_lock_expression] = STATE(395), + [sym_unsafe_expression] = STATE(395), + [sym_sql_expression] = STATE(395), + [sym_c_string_literal] = STATE(479), + [sym_raw_string_literal] = STATE(479), + [sym_interpreted_string_literal] = STATE(479), + [sym_mutability_modifiers] = STATE(845), + [sym_plain_type] = STATE(4181), + [sym__plain_type_without_special] = STATE(2360), + [sym_anon_struct_type] = STATE(2362), + [sym_multi_return_type] = STATE(2360), + [sym_result_type] = STATE(2360), + [sym_option_type] = STATE(2360), + [sym_qualified_type] = STATE(3460), + [sym_fixed_array_type] = STATE(2362), + [sym_array_type] = STATE(2362), + [sym_pointer_type] = STATE(2362), + [sym_wrong_pointer_type] = STATE(2362), + [sym_map_type] = STATE(2362), + [sym_channel_type] = STATE(2362), + [sym_shared_type] = STATE(2362), + [sym_thread_type] = STATE(2362), + [sym_atomic_type] = STATE(2362), + [sym_generic_type] = STATE(2362), + [sym_function_type] = STATE(2362), + [sym_identifier] = ACTIONS(3184), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(631), - [anon_sym_LBRACE] = ACTIONS(633), - [anon_sym_LPAREN] = ACTIONS(637), - [anon_sym_fn] = ACTIONS(641), - [anon_sym_PLUS] = ACTIONS(643), - [anon_sym_DASH] = ACTIONS(643), - [anon_sym_STAR] = ACTIONS(645), - [anon_sym_struct] = ACTIONS(649), + [anon_sym_DOT] = ACTIONS(17), + [anon_sym_LBRACE] = ACTIONS(3186), + [anon_sym_LPAREN] = ACTIONS(23), + [anon_sym_fn] = ACTIONS(485), + [anon_sym_PLUS] = ACTIONS(31), + [anon_sym_DASH] = ACTIONS(31), + [anon_sym_STAR] = ACTIONS(33), + [anon_sym_struct] = ACTIONS(487), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(655), - [anon_sym_go] = ACTIONS(657), - [anon_sym_spawn] = ACTIONS(659), - [anon_sym_json_DOTdecode] = ACTIONS(661), - [anon_sym_LBRACK2] = ACTIONS(663), - [anon_sym_TILDE] = ACTIONS(643), - [anon_sym_CARET] = ACTIONS(643), - [anon_sym_AMP] = ACTIONS(665), - [anon_sym_LT_DASH] = ACTIONS(667), - [sym_none] = ACTIONS(669), - [sym_true] = ACTIONS(669), - [sym_false] = ACTIONS(669), - [sym_nil] = ACTIONS(669), - [anon_sym_if] = ACTIONS(671), - [anon_sym_DOLLARif] = ACTIONS(673), - [anon_sym_match] = ACTIONS(675), - [anon_sym_select] = ACTIONS(677), - [anon_sym_lock] = ACTIONS(679), - [anon_sym_rlock] = ACTIONS(679), - [anon_sym_unsafe] = ACTIONS(681), - [anon_sym_sql] = ACTIONS(683), - [sym_int_literal] = ACTIONS(669), - [sym_float_literal] = ACTIONS(685), - [sym_rune_literal] = ACTIONS(685), - [sym_pseudo_compile_time_identifier] = ACTIONS(687), + [anon_sym_BANG] = ACTIONS(49), + [anon_sym_go] = ACTIONS(51), + [anon_sym_spawn] = ACTIONS(53), + [anon_sym_json_DOTdecode] = ACTIONS(55), + [anon_sym_LBRACK2] = ACTIONS(489), + [anon_sym_TILDE] = ACTIONS(31), + [anon_sym_CARET] = ACTIONS(31), + [anon_sym_AMP] = ACTIONS(59), + [anon_sym_LT_DASH] = ACTIONS(61), + [sym_none] = ACTIONS(63), + [sym_true] = ACTIONS(63), + [sym_false] = ACTIONS(63), + [sym_nil] = ACTIONS(63), + [anon_sym_if] = ACTIONS(65), + [anon_sym_DOLLARif] = ACTIONS(67), + [anon_sym_match] = ACTIONS(69), + [anon_sym_select] = ACTIONS(71), + [anon_sym_lock] = ACTIONS(73), + [anon_sym_rlock] = ACTIONS(73), + [anon_sym_unsafe] = ACTIONS(75), + [anon_sym_sql] = ACTIONS(77), + [sym_int_literal] = ACTIONS(63), + [sym_float_literal] = ACTIONS(79), + [sym_rune_literal] = ACTIONS(79), + [sym_pseudo_compile_time_identifier] = ACTIONS(81), [anon_sym_shared] = ACTIONS(83), [anon_sym_map_LBRACK] = ACTIONS(85), [anon_sym_chan] = ACTIONS(87), [anon_sym_thread] = ACTIONS(89), [anon_sym_atomic] = ACTIONS(91), - [sym___double_quote] = ACTIONS(689), - [sym___single_quote] = ACTIONS(691), - [sym___c_double_quote] = ACTIONS(693), - [sym___c_single_quote] = ACTIONS(695), - [sym___r_double_quote] = ACTIONS(697), - [sym___r_single_quote] = ACTIONS(699), + [sym___double_quote] = ACTIONS(115), + [sym___single_quote] = ACTIONS(117), + [sym___c_double_quote] = ACTIONS(119), + [sym___c_single_quote] = ACTIONS(121), + [sym___r_double_quote] = ACTIONS(123), + [sym___r_single_quote] = ACTIONS(125), }, [586] = { [sym_line_comment] = STATE(586), [sym_block_comment] = STATE(586), - [sym__expression] = STATE(1112), - [sym__expression_without_blocks] = STATE(1141), - [sym__expression_with_blocks] = STATE(1141), - [sym_inc_expression] = STATE(1140), - [sym_dec_expression] = STATE(1140), - [sym_or_block_expression] = STATE(1140), - [sym_option_propagation_expression] = STATE(1140), - [sym_result_propagation_expression] = STATE(1140), - [sym_anon_struct_value_expression] = STATE(1199), - [sym_go_expression] = STATE(1140), - [sym_spawn_expression] = STATE(1140), - [sym_parenthesized_expression] = STATE(1140), - [sym_call_expression] = STATE(1140), - [sym_type_initializer] = STATE(1199), - [sym_function_literal] = STATE(1140), - [sym_reference_expression] = STATE(1181), - [sym_type_reference_expression] = STATE(3541), - [sym_unary_expression] = STATE(1140), - [sym_receive_expression] = STATE(1140), - [sym_binary_expression] = STATE(1140), - [sym_as_type_cast_expression] = STATE(1140), - [sym__max_group] = STATE(1140), - [sym_literal] = STATE(1146), - [sym_map_init_expression] = STATE(1199), - [sym_array_creation] = STATE(1140), - [sym_fixed_array_creation] = STATE(1140), - [sym_selector_expression] = STATE(1140), - [sym_index_expression] = STATE(1140), - [sym_slice_expression] = STATE(1140), - [sym_if_expression] = STATE(1199), - [sym_compile_time_if_expression] = STATE(1199), - [sym_is_expression] = STATE(1140), - [sym_in_expression] = STATE(1140), - [sym_enum_fetch] = STATE(1140), - [sym_match_expression] = STATE(1199), - [sym_select_expression] = STATE(1199), - [sym_lock_expression] = STATE(1199), - [sym_unsafe_expression] = STATE(1199), - [sym_sql_expression] = STATE(1199), - [sym_c_string_literal] = STATE(1147), - [sym_raw_string_literal] = STATE(1147), - [sym_interpreted_string_literal] = STATE(1147), - [sym_mutability_modifiers] = STATE(638), - [sym_plain_type] = STATE(4228), - [sym__plain_type_without_special] = STATE(2302), - [sym_anon_struct_type] = STATE(2303), - [sym_multi_return_type] = STATE(2302), - [sym_result_type] = STATE(2302), - [sym_option_type] = STATE(2302), - [sym_qualified_type] = STATE(3541), - [sym_fixed_array_type] = STATE(2303), - [sym_array_type] = STATE(2303), - [sym_pointer_type] = STATE(2303), - [sym_wrong_pointer_type] = STATE(2303), - [sym_map_type] = STATE(2303), - [sym_channel_type] = STATE(2303), - [sym_shared_type] = STATE(2303), - [sym_thread_type] = STATE(2303), - [sym_atomic_type] = STATE(2303), - [sym_generic_type] = STATE(2303), - [sym_function_type] = STATE(2303), - [sym_identifier] = ACTIONS(1071), + [sym__expression] = STATE(2260), + [sym__expression_without_blocks] = STATE(2162), + [sym__expression_with_blocks] = STATE(2162), + [sym_inc_expression] = STATE(2161), + [sym_dec_expression] = STATE(2161), + [sym_or_block_expression] = STATE(2161), + [sym_option_propagation_expression] = STATE(2161), + [sym_result_propagation_expression] = STATE(2161), + [sym_anon_struct_value_expression] = STATE(2160), + [sym_go_expression] = STATE(2161), + [sym_spawn_expression] = STATE(2161), + [sym_parenthesized_expression] = STATE(2161), + [sym_call_expression] = STATE(2161), + [sym_type_initializer] = STATE(2160), + [sym_function_literal] = STATE(2161), + [sym_reference_expression] = STATE(2159), + [sym_type_reference_expression] = STATE(3460), + [sym_unary_expression] = STATE(2161), + [sym_receive_expression] = STATE(2161), + [sym_binary_expression] = STATE(2161), + [sym_as_type_cast_expression] = STATE(2161), + [sym__max_group] = STATE(2161), + [sym_literal] = STATE(2164), + [sym_map_init_expression] = STATE(2160), + [sym_array_creation] = STATE(2161), + [sym_fixed_array_creation] = STATE(2161), + [sym_selector_expression] = STATE(2161), + [sym_index_expression] = STATE(2161), + [sym_slice_expression] = STATE(2161), + [sym_if_expression] = STATE(2160), + [sym_compile_time_if_expression] = STATE(2160), + [sym_is_expression] = STATE(2161), + [sym_in_expression] = STATE(2161), + [sym_enum_fetch] = STATE(2161), + [sym_match_expression] = STATE(2160), + [sym_select_expression] = STATE(2160), + [sym_lock_expression] = STATE(2160), + [sym_unsafe_expression] = STATE(2160), + [sym_sql_expression] = STATE(2160), + [sym_c_string_literal] = STATE(2166), + [sym_raw_string_literal] = STATE(2166), + [sym_interpreted_string_literal] = STATE(2166), + [sym_mutability_modifiers] = STATE(575), + [sym_plain_type] = STATE(4173), + [sym__plain_type_without_special] = STATE(2360), + [sym_anon_struct_type] = STATE(2362), + [sym_multi_return_type] = STATE(2360), + [sym_result_type] = STATE(2360), + [sym_option_type] = STATE(2360), + [sym_qualified_type] = STATE(3460), + [sym_fixed_array_type] = STATE(2362), + [sym_array_type] = STATE(2362), + [sym_pointer_type] = STATE(2362), + [sym_wrong_pointer_type] = STATE(2362), + [sym_map_type] = STATE(2362), + [sym_channel_type] = STATE(2362), + [sym_shared_type] = STATE(2362), + [sym_thread_type] = STATE(2362), + [sym_atomic_type] = STATE(2362), + [sym_generic_type] = STATE(2362), + [sym_function_type] = STATE(2362), + [sym_identifier] = ACTIONS(3292), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(631), - [anon_sym_LBRACE] = ACTIONS(633), - [anon_sym_LPAREN] = ACTIONS(637), - [anon_sym_fn] = ACTIONS(641), - [anon_sym_PLUS] = ACTIONS(643), - [anon_sym_DASH] = ACTIONS(643), - [anon_sym_STAR] = ACTIONS(645), - [anon_sym_struct] = ACTIONS(649), + [anon_sym_DOT] = ACTIONS(3294), + [anon_sym_LBRACE] = ACTIONS(3296), + [anon_sym_LPAREN] = ACTIONS(3298), + [anon_sym_fn] = ACTIONS(3300), + [anon_sym_PLUS] = ACTIONS(3302), + [anon_sym_DASH] = ACTIONS(3302), + [anon_sym_STAR] = ACTIONS(3304), + [anon_sym_struct] = ACTIONS(3306), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(655), - [anon_sym_go] = ACTIONS(657), - [anon_sym_spawn] = ACTIONS(659), - [anon_sym_json_DOTdecode] = ACTIONS(661), - [anon_sym_LBRACK2] = ACTIONS(663), - [anon_sym_TILDE] = ACTIONS(643), - [anon_sym_CARET] = ACTIONS(643), - [anon_sym_AMP] = ACTIONS(665), - [anon_sym_LT_DASH] = ACTIONS(667), - [sym_none] = ACTIONS(669), - [sym_true] = ACTIONS(669), - [sym_false] = ACTIONS(669), - [sym_nil] = ACTIONS(669), - [anon_sym_if] = ACTIONS(671), - [anon_sym_DOLLARif] = ACTIONS(673), - [anon_sym_match] = ACTIONS(675), - [anon_sym_select] = ACTIONS(677), - [anon_sym_lock] = ACTIONS(679), - [anon_sym_rlock] = ACTIONS(679), - [anon_sym_unsafe] = ACTIONS(681), - [anon_sym_sql] = ACTIONS(683), - [sym_int_literal] = ACTIONS(669), - [sym_float_literal] = ACTIONS(685), - [sym_rune_literal] = ACTIONS(685), - [sym_pseudo_compile_time_identifier] = ACTIONS(687), + [anon_sym_BANG] = ACTIONS(3308), + [anon_sym_go] = ACTIONS(3310), + [anon_sym_spawn] = ACTIONS(3312), + [anon_sym_json_DOTdecode] = ACTIONS(3314), + [anon_sym_LBRACK2] = ACTIONS(3316), + [anon_sym_TILDE] = ACTIONS(3302), + [anon_sym_CARET] = ACTIONS(3302), + [anon_sym_AMP] = ACTIONS(3318), + [anon_sym_LT_DASH] = ACTIONS(3320), + [sym_none] = ACTIONS(3322), + [sym_true] = ACTIONS(3322), + [sym_false] = ACTIONS(3322), + [sym_nil] = ACTIONS(3322), + [anon_sym_if] = ACTIONS(3324), + [anon_sym_DOLLARif] = ACTIONS(3326), + [anon_sym_match] = ACTIONS(3328), + [anon_sym_select] = ACTIONS(3330), + [anon_sym_lock] = ACTIONS(3332), + [anon_sym_rlock] = ACTIONS(3332), + [anon_sym_unsafe] = ACTIONS(3334), + [anon_sym_sql] = ACTIONS(3336), + [sym_int_literal] = ACTIONS(3322), + [sym_float_literal] = ACTIONS(3338), + [sym_rune_literal] = ACTIONS(3338), + [sym_pseudo_compile_time_identifier] = ACTIONS(3340), [anon_sym_shared] = ACTIONS(83), [anon_sym_map_LBRACK] = ACTIONS(85), [anon_sym_chan] = ACTIONS(87), [anon_sym_thread] = ACTIONS(89), [anon_sym_atomic] = ACTIONS(91), - [sym___double_quote] = ACTIONS(689), - [sym___single_quote] = ACTIONS(691), - [sym___c_double_quote] = ACTIONS(693), - [sym___c_single_quote] = ACTIONS(695), - [sym___r_double_quote] = ACTIONS(697), - [sym___r_single_quote] = ACTIONS(699), + [sym___double_quote] = ACTIONS(3342), + [sym___single_quote] = ACTIONS(3344), + [sym___c_double_quote] = ACTIONS(3346), + [sym___c_single_quote] = ACTIONS(3348), + [sym___r_double_quote] = ACTIONS(3350), + [sym___r_single_quote] = ACTIONS(3352), }, [587] = { [sym_line_comment] = STATE(587), [sym_block_comment] = STATE(587), - [sym__expression] = STATE(2263), - [sym__expression_without_blocks] = STATE(2300), - [sym__expression_with_blocks] = STATE(2300), - [sym_inc_expression] = STATE(2307), - [sym_dec_expression] = STATE(2307), - [sym_or_block_expression] = STATE(2307), - [sym_option_propagation_expression] = STATE(2307), - [sym_result_propagation_expression] = STATE(2307), - [sym_anon_struct_value_expression] = STATE(2380), - [sym_go_expression] = STATE(2307), - [sym_spawn_expression] = STATE(2307), - [sym_parenthesized_expression] = STATE(2307), - [sym_call_expression] = STATE(2307), - [sym_type_initializer] = STATE(2380), - [sym_function_literal] = STATE(2307), - [sym_reference_expression] = STATE(2311), - [sym_type_reference_expression] = STATE(3541), - [sym_unary_expression] = STATE(2307), - [sym_receive_expression] = STATE(2307), - [sym_binary_expression] = STATE(2307), - [sym_as_type_cast_expression] = STATE(2307), - [sym__max_group] = STATE(2307), - [sym_literal] = STATE(2292), - [sym_map_init_expression] = STATE(2380), - [sym_array_creation] = STATE(2307), - [sym_fixed_array_creation] = STATE(2307), - [sym_selector_expression] = STATE(2307), - [sym_index_expression] = STATE(2307), - [sym_slice_expression] = STATE(2307), - [sym_if_expression] = STATE(2380), - [sym_compile_time_if_expression] = STATE(2380), - [sym_is_expression] = STATE(2307), - [sym_in_expression] = STATE(2307), - [sym_enum_fetch] = STATE(2307), - [sym_match_expression] = STATE(2380), - [sym_select_expression] = STATE(2380), - [sym_lock_expression] = STATE(2380), - [sym_unsafe_expression] = STATE(2380), - [sym_sql_expression] = STATE(2380), - [sym_c_string_literal] = STATE(2308), - [sym_raw_string_literal] = STATE(2308), - [sym_interpreted_string_literal] = STATE(2308), - [sym_mutability_modifiers] = STATE(632), - [sym_plain_type] = STATE(4297), - [sym__plain_type_without_special] = STATE(2302), - [sym_anon_struct_type] = STATE(2303), - [sym_multi_return_type] = STATE(2302), - [sym_result_type] = STATE(2302), - [sym_option_type] = STATE(2302), - [sym_qualified_type] = STATE(3541), - [sym_fixed_array_type] = STATE(2303), - [sym_array_type] = STATE(2303), - [sym_pointer_type] = STATE(2303), - [sym_wrong_pointer_type] = STATE(2303), - [sym_map_type] = STATE(2303), - [sym_channel_type] = STATE(2303), - [sym_shared_type] = STATE(2303), - [sym_thread_type] = STATE(2303), - [sym_atomic_type] = STATE(2303), - [sym_generic_type] = STATE(2303), - [sym_function_type] = STATE(2303), - [sym_identifier] = ACTIONS(2189), + [sym__expression] = STATE(221), + [sym__expression_without_blocks] = STATE(401), + [sym__expression_with_blocks] = STATE(401), + [sym_inc_expression] = STATE(399), + [sym_dec_expression] = STATE(399), + [sym_or_block_expression] = STATE(399), + [sym_option_propagation_expression] = STATE(399), + [sym_result_propagation_expression] = STATE(399), + [sym_anon_struct_value_expression] = STATE(395), + [sym_go_expression] = STATE(399), + [sym_spawn_expression] = STATE(399), + [sym_parenthesized_expression] = STATE(399), + [sym_call_expression] = STATE(399), + [sym_type_initializer] = STATE(395), + [sym_function_literal] = STATE(399), + [sym_reference_expression] = STATE(393), + [sym_type_reference_expression] = STATE(3460), + [sym_unary_expression] = STATE(399), + [sym_receive_expression] = STATE(399), + [sym_binary_expression] = STATE(399), + [sym_as_type_cast_expression] = STATE(399), + [sym__max_group] = STATE(399), + [sym_literal] = STATE(455), + [sym_map_init_expression] = STATE(395), + [sym_array_creation] = STATE(399), + [sym_fixed_array_creation] = STATE(399), + [sym_selector_expression] = STATE(399), + [sym_index_expression] = STATE(399), + [sym_slice_expression] = STATE(399), + [sym_if_expression] = STATE(395), + [sym_compile_time_if_expression] = STATE(395), + [sym_is_expression] = STATE(399), + [sym_in_expression] = STATE(399), + [sym_enum_fetch] = STATE(399), + [sym_match_expression] = STATE(395), + [sym_select_expression] = STATE(395), + [sym_lock_expression] = STATE(395), + [sym_unsafe_expression] = STATE(395), + [sym_sql_expression] = STATE(395), + [sym_c_string_literal] = STATE(479), + [sym_raw_string_literal] = STATE(479), + [sym_interpreted_string_literal] = STATE(479), + [sym_mutability_modifiers] = STATE(845), + [sym_plain_type] = STATE(4069), + [sym__plain_type_without_special] = STATE(2360), + [sym_anon_struct_type] = STATE(2362), + [sym_multi_return_type] = STATE(2360), + [sym_result_type] = STATE(2360), + [sym_option_type] = STATE(2360), + [sym_qualified_type] = STATE(3460), + [sym_fixed_array_type] = STATE(2362), + [sym_array_type] = STATE(2362), + [sym_pointer_type] = STATE(2362), + [sym_wrong_pointer_type] = STATE(2362), + [sym_map_type] = STATE(2362), + [sym_channel_type] = STATE(2362), + [sym_shared_type] = STATE(2362), + [sym_thread_type] = STATE(2362), + [sym_atomic_type] = STATE(2362), + [sym_generic_type] = STATE(2362), + [sym_function_type] = STATE(2362), + [sym_identifier] = ACTIONS(3184), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1428), - [anon_sym_LBRACE] = ACTIONS(1430), - [anon_sym_LPAREN] = ACTIONS(1432), - [anon_sym_fn] = ACTIONS(1434), - [anon_sym_PLUS] = ACTIONS(2191), - [anon_sym_DASH] = ACTIONS(2191), - [anon_sym_STAR] = ACTIONS(2193), - [anon_sym_struct] = ACTIONS(1440), + [anon_sym_DOT] = ACTIONS(17), + [anon_sym_LBRACE] = ACTIONS(3186), + [anon_sym_LPAREN] = ACTIONS(23), + [anon_sym_fn] = ACTIONS(485), + [anon_sym_PLUS] = ACTIONS(31), + [anon_sym_DASH] = ACTIONS(31), + [anon_sym_STAR] = ACTIONS(33), + [anon_sym_struct] = ACTIONS(487), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(2195), - [anon_sym_go] = ACTIONS(2197), - [anon_sym_spawn] = ACTIONS(2199), - [anon_sym_json_DOTdecode] = ACTIONS(1448), - [anon_sym_LBRACK2] = ACTIONS(2201), - [anon_sym_TILDE] = ACTIONS(2191), - [anon_sym_CARET] = ACTIONS(2191), - [anon_sym_AMP] = ACTIONS(2203), - [anon_sym_LT_DASH] = ACTIONS(2205), - [sym_none] = ACTIONS(1456), - [sym_true] = ACTIONS(1456), - [sym_false] = ACTIONS(1456), - [sym_nil] = ACTIONS(1456), - [anon_sym_if] = ACTIONS(1827), - [anon_sym_DOLLARif] = ACTIONS(1460), - [anon_sym_match] = ACTIONS(1462), - [anon_sym_select] = ACTIONS(2207), - [anon_sym_lock] = ACTIONS(2209), - [anon_sym_rlock] = ACTIONS(2209), - [anon_sym_unsafe] = ACTIONS(1833), - [anon_sym_sql] = ACTIONS(1470), - [sym_int_literal] = ACTIONS(1456), - [sym_float_literal] = ACTIONS(1472), - [sym_rune_literal] = ACTIONS(1472), - [sym_pseudo_compile_time_identifier] = ACTIONS(1474), + [anon_sym_BANG] = ACTIONS(49), + [anon_sym_go] = ACTIONS(51), + [anon_sym_spawn] = ACTIONS(53), + [anon_sym_json_DOTdecode] = ACTIONS(55), + [anon_sym_LBRACK2] = ACTIONS(489), + [anon_sym_TILDE] = ACTIONS(31), + [anon_sym_CARET] = ACTIONS(31), + [anon_sym_AMP] = ACTIONS(59), + [anon_sym_LT_DASH] = ACTIONS(61), + [sym_none] = ACTIONS(63), + [sym_true] = ACTIONS(63), + [sym_false] = ACTIONS(63), + [sym_nil] = ACTIONS(63), + [anon_sym_if] = ACTIONS(65), + [anon_sym_DOLLARif] = ACTIONS(67), + [anon_sym_match] = ACTIONS(69), + [anon_sym_select] = ACTIONS(71), + [anon_sym_lock] = ACTIONS(73), + [anon_sym_rlock] = ACTIONS(73), + [anon_sym_unsafe] = ACTIONS(75), + [anon_sym_sql] = ACTIONS(77), + [sym_int_literal] = ACTIONS(63), + [sym_float_literal] = ACTIONS(79), + [sym_rune_literal] = ACTIONS(79), + [sym_pseudo_compile_time_identifier] = ACTIONS(81), [anon_sym_shared] = ACTIONS(83), [anon_sym_map_LBRACK] = ACTIONS(85), [anon_sym_chan] = ACTIONS(87), [anon_sym_thread] = ACTIONS(89), [anon_sym_atomic] = ACTIONS(91), - [sym___double_quote] = ACTIONS(1478), - [sym___single_quote] = ACTIONS(1480), - [sym___c_double_quote] = ACTIONS(1482), - [sym___c_single_quote] = ACTIONS(1484), - [sym___r_double_quote] = ACTIONS(1486), - [sym___r_single_quote] = ACTIONS(1488), + [sym___double_quote] = ACTIONS(115), + [sym___single_quote] = ACTIONS(117), + [sym___c_double_quote] = ACTIONS(119), + [sym___c_single_quote] = ACTIONS(121), + [sym___r_double_quote] = ACTIONS(123), + [sym___r_single_quote] = ACTIONS(125), }, [588] = { [sym_line_comment] = STATE(588), [sym_block_comment] = STATE(588), - [sym__expression] = STATE(2263), - [sym__expression_without_blocks] = STATE(2300), - [sym__expression_with_blocks] = STATE(2300), - [sym_inc_expression] = STATE(2307), - [sym_dec_expression] = STATE(2307), - [sym_or_block_expression] = STATE(2307), - [sym_option_propagation_expression] = STATE(2307), - [sym_result_propagation_expression] = STATE(2307), - [sym_anon_struct_value_expression] = STATE(2380), - [sym_go_expression] = STATE(2307), - [sym_spawn_expression] = STATE(2307), - [sym_parenthesized_expression] = STATE(2307), - [sym_call_expression] = STATE(2307), - [sym_type_initializer] = STATE(2380), - [sym_function_literal] = STATE(2307), - [sym_reference_expression] = STATE(2311), - [sym_type_reference_expression] = STATE(3541), - [sym_unary_expression] = STATE(2307), - [sym_receive_expression] = STATE(2307), - [sym_binary_expression] = STATE(2307), - [sym_as_type_cast_expression] = STATE(2307), - [sym__max_group] = STATE(2307), - [sym_literal] = STATE(2292), - [sym_map_init_expression] = STATE(2380), - [sym_array_creation] = STATE(2307), - [sym_fixed_array_creation] = STATE(2307), - [sym_selector_expression] = STATE(2307), - [sym_index_expression] = STATE(2307), - [sym_slice_expression] = STATE(2307), - [sym_if_expression] = STATE(2380), - [sym_compile_time_if_expression] = STATE(2380), - [sym_is_expression] = STATE(2307), - [sym_in_expression] = STATE(2307), - [sym_enum_fetch] = STATE(2307), - [sym_match_expression] = STATE(2380), - [sym_select_expression] = STATE(2380), - [sym_lock_expression] = STATE(2380), - [sym_unsafe_expression] = STATE(2380), - [sym_sql_expression] = STATE(2380), - [sym_c_string_literal] = STATE(2308), - [sym_raw_string_literal] = STATE(2308), - [sym_interpreted_string_literal] = STATE(2308), - [sym_mutability_modifiers] = STATE(939), - [sym_plain_type] = STATE(3566), - [sym__plain_type_without_special] = STATE(2302), - [sym_anon_struct_type] = STATE(2303), - [sym_multi_return_type] = STATE(2302), - [sym_result_type] = STATE(2302), - [sym_option_type] = STATE(2302), - [sym_qualified_type] = STATE(3541), - [sym_fixed_array_type] = STATE(2303), - [sym_array_type] = STATE(2303), - [sym_pointer_type] = STATE(2303), - [sym_wrong_pointer_type] = STATE(2303), - [sym_map_type] = STATE(2303), - [sym_channel_type] = STATE(2303), - [sym_shared_type] = STATE(2303), - [sym_thread_type] = STATE(2303), - [sym_atomic_type] = STATE(2303), - [sym_generic_type] = STATE(2303), - [sym_function_type] = STATE(2303), - [sym_identifier] = ACTIONS(2135), + [sym__expression] = STATE(228), + [sym__expression_without_blocks] = STATE(401), + [sym__expression_with_blocks] = STATE(401), + [sym_inc_expression] = STATE(399), + [sym_dec_expression] = STATE(399), + [sym_or_block_expression] = STATE(399), + [sym_option_propagation_expression] = STATE(399), + [sym_result_propagation_expression] = STATE(399), + [sym_anon_struct_value_expression] = STATE(395), + [sym_go_expression] = STATE(399), + [sym_spawn_expression] = STATE(399), + [sym_parenthesized_expression] = STATE(399), + [sym_call_expression] = STATE(399), + [sym_type_initializer] = STATE(395), + [sym_function_literal] = STATE(399), + [sym_reference_expression] = STATE(393), + [sym_type_reference_expression] = STATE(3460), + [sym_unary_expression] = STATE(399), + [sym_receive_expression] = STATE(399), + [sym_binary_expression] = STATE(399), + [sym_as_type_cast_expression] = STATE(399), + [sym__max_group] = STATE(399), + [sym_literal] = STATE(455), + [sym_map_init_expression] = STATE(395), + [sym_array_creation] = STATE(399), + [sym_fixed_array_creation] = STATE(399), + [sym_selector_expression] = STATE(399), + [sym_index_expression] = STATE(399), + [sym_slice_expression] = STATE(399), + [sym_if_expression] = STATE(395), + [sym_compile_time_if_expression] = STATE(395), + [sym_is_expression] = STATE(399), + [sym_in_expression] = STATE(399), + [sym_enum_fetch] = STATE(399), + [sym_match_expression] = STATE(395), + [sym_select_expression] = STATE(395), + [sym_lock_expression] = STATE(395), + [sym_unsafe_expression] = STATE(395), + [sym_sql_expression] = STATE(395), + [sym_c_string_literal] = STATE(479), + [sym_raw_string_literal] = STATE(479), + [sym_interpreted_string_literal] = STATE(479), + [sym_mutability_modifiers] = STATE(845), + [sym_plain_type] = STATE(4069), + [sym__plain_type_without_special] = STATE(2360), + [sym_anon_struct_type] = STATE(2362), + [sym_multi_return_type] = STATE(2360), + [sym_result_type] = STATE(2360), + [sym_option_type] = STATE(2360), + [sym_qualified_type] = STATE(3460), + [sym_fixed_array_type] = STATE(2362), + [sym_array_type] = STATE(2362), + [sym_pointer_type] = STATE(2362), + [sym_wrong_pointer_type] = STATE(2362), + [sym_map_type] = STATE(2362), + [sym_channel_type] = STATE(2362), + [sym_shared_type] = STATE(2362), + [sym_thread_type] = STATE(2362), + [sym_atomic_type] = STATE(2362), + [sym_generic_type] = STATE(2362), + [sym_function_type] = STATE(2362), + [sym_identifier] = ACTIONS(3184), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1428), - [anon_sym_LBRACE] = ACTIONS(1430), - [anon_sym_LPAREN] = ACTIONS(1432), - [anon_sym_fn] = ACTIONS(1434), - [anon_sym_PLUS] = ACTIONS(1436), - [anon_sym_DASH] = ACTIONS(1436), - [anon_sym_STAR] = ACTIONS(2137), - [anon_sym_struct] = ACTIONS(1440), + [anon_sym_DOT] = ACTIONS(17), + [anon_sym_LBRACE] = ACTIONS(3186), + [anon_sym_LPAREN] = ACTIONS(23), + [anon_sym_fn] = ACTIONS(485), + [anon_sym_PLUS] = ACTIONS(31), + [anon_sym_DASH] = ACTIONS(31), + [anon_sym_STAR] = ACTIONS(33), + [anon_sym_struct] = ACTIONS(487), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(2139), - [anon_sym_go] = ACTIONS(1444), - [anon_sym_spawn] = ACTIONS(1446), - [anon_sym_json_DOTdecode] = ACTIONS(1448), - [anon_sym_LBRACK2] = ACTIONS(1450), - [anon_sym_TILDE] = ACTIONS(1436), - [anon_sym_CARET] = ACTIONS(1436), - [anon_sym_AMP] = ACTIONS(2141), - [anon_sym_LT_DASH] = ACTIONS(1454), - [sym_none] = ACTIONS(1456), - [sym_true] = ACTIONS(1456), - [sym_false] = ACTIONS(1456), - [sym_nil] = ACTIONS(1456), - [anon_sym_if] = ACTIONS(1827), - [anon_sym_DOLLARif] = ACTIONS(1460), - [anon_sym_match] = ACTIONS(1462), - [anon_sym_select] = ACTIONS(1464), - [anon_sym_lock] = ACTIONS(1466), - [anon_sym_rlock] = ACTIONS(1466), - [anon_sym_unsafe] = ACTIONS(1833), - [anon_sym_sql] = ACTIONS(1470), - [sym_int_literal] = ACTIONS(1456), - [sym_float_literal] = ACTIONS(1472), - [sym_rune_literal] = ACTIONS(1472), - [sym_pseudo_compile_time_identifier] = ACTIONS(1474), + [anon_sym_BANG] = ACTIONS(49), + [anon_sym_go] = ACTIONS(51), + [anon_sym_spawn] = ACTIONS(53), + [anon_sym_json_DOTdecode] = ACTIONS(55), + [anon_sym_LBRACK2] = ACTIONS(489), + [anon_sym_TILDE] = ACTIONS(31), + [anon_sym_CARET] = ACTIONS(31), + [anon_sym_AMP] = ACTIONS(59), + [anon_sym_LT_DASH] = ACTIONS(61), + [sym_none] = ACTIONS(63), + [sym_true] = ACTIONS(63), + [sym_false] = ACTIONS(63), + [sym_nil] = ACTIONS(63), + [anon_sym_if] = ACTIONS(65), + [anon_sym_DOLLARif] = ACTIONS(67), + [anon_sym_match] = ACTIONS(69), + [anon_sym_select] = ACTIONS(71), + [anon_sym_lock] = ACTIONS(73), + [anon_sym_rlock] = ACTIONS(73), + [anon_sym_unsafe] = ACTIONS(75), + [anon_sym_sql] = ACTIONS(77), + [sym_int_literal] = ACTIONS(63), + [sym_float_literal] = ACTIONS(79), + [sym_rune_literal] = ACTIONS(79), + [sym_pseudo_compile_time_identifier] = ACTIONS(81), [anon_sym_shared] = ACTIONS(83), [anon_sym_map_LBRACK] = ACTIONS(85), [anon_sym_chan] = ACTIONS(87), [anon_sym_thread] = ACTIONS(89), [anon_sym_atomic] = ACTIONS(91), - [sym___double_quote] = ACTIONS(1478), - [sym___single_quote] = ACTIONS(1480), - [sym___c_double_quote] = ACTIONS(1482), - [sym___c_single_quote] = ACTIONS(1484), - [sym___r_double_quote] = ACTIONS(1486), - [sym___r_single_quote] = ACTIONS(1488), + [sym___double_quote] = ACTIONS(115), + [sym___single_quote] = ACTIONS(117), + [sym___c_double_quote] = ACTIONS(119), + [sym___c_single_quote] = ACTIONS(121), + [sym___r_double_quote] = ACTIONS(123), + [sym___r_single_quote] = ACTIONS(125), }, [589] = { [sym_line_comment] = STATE(589), [sym_block_comment] = STATE(589), - [sym__expression] = STATE(2122), - [sym__expression_without_blocks] = STATE(2226), - [sym__expression_with_blocks] = STATE(2226), - [sym_inc_expression] = STATE(2247), - [sym_dec_expression] = STATE(2247), - [sym_or_block_expression] = STATE(2247), - [sym_option_propagation_expression] = STATE(2247), - [sym_result_propagation_expression] = STATE(2247), - [sym_anon_struct_value_expression] = STATE(2248), - [sym_go_expression] = STATE(2247), - [sym_spawn_expression] = STATE(2247), - [sym_parenthesized_expression] = STATE(2247), - [sym_call_expression] = STATE(2247), - [sym_type_initializer] = STATE(2248), - [sym_function_literal] = STATE(2247), - [sym_reference_expression] = STATE(2252), - [sym_type_reference_expression] = STATE(3541), - [sym_unary_expression] = STATE(2247), - [sym_receive_expression] = STATE(2247), - [sym_binary_expression] = STATE(2247), - [sym_as_type_cast_expression] = STATE(2247), - [sym__max_group] = STATE(2247), - [sym_literal] = STATE(2155), - [sym_map_init_expression] = STATE(2248), - [sym_array_creation] = STATE(2247), - [sym_fixed_array_creation] = STATE(2247), - [sym_selector_expression] = STATE(2247), - [sym_index_expression] = STATE(2247), - [sym_slice_expression] = STATE(2247), - [sym_if_expression] = STATE(2248), - [sym_compile_time_if_expression] = STATE(2248), - [sym_is_expression] = STATE(2247), - [sym_in_expression] = STATE(2247), - [sym_enum_fetch] = STATE(2247), - [sym_match_expression] = STATE(2248), - [sym_select_expression] = STATE(2248), - [sym_lock_expression] = STATE(2248), - [sym_unsafe_expression] = STATE(2248), - [sym_sql_expression] = STATE(2248), - [sym_c_string_literal] = STATE(2153), - [sym_raw_string_literal] = STATE(2153), - [sym_interpreted_string_literal] = STATE(2153), - [sym_mutability_modifiers] = STATE(631), - [sym_plain_type] = STATE(4146), - [sym__plain_type_without_special] = STATE(2302), - [sym_anon_struct_type] = STATE(2303), - [sym_multi_return_type] = STATE(2302), - [sym_result_type] = STATE(2302), - [sym_option_type] = STATE(2302), - [sym_qualified_type] = STATE(3541), - [sym_fixed_array_type] = STATE(2303), - [sym_array_type] = STATE(2303), - [sym_pointer_type] = STATE(2303), - [sym_wrong_pointer_type] = STATE(2303), - [sym_map_type] = STATE(2303), - [sym_channel_type] = STATE(2303), - [sym_shared_type] = STATE(2303), - [sym_thread_type] = STATE(2303), - [sym_atomic_type] = STATE(2303), - [sym_generic_type] = STATE(2303), - [sym_function_type] = STATE(2303), - [sym_identifier] = ACTIONS(3286), + [sym__expression] = STATE(2807), + [sym__expression_without_blocks] = STATE(2347), + [sym__expression_with_blocks] = STATE(2347), + [sym_inc_expression] = STATE(2379), + [sym_dec_expression] = STATE(2379), + [sym_or_block_expression] = STATE(2379), + [sym_option_propagation_expression] = STATE(2379), + [sym_result_propagation_expression] = STATE(2379), + [sym_anon_struct_value_expression] = STATE(2378), + [sym_go_expression] = STATE(2379), + [sym_spawn_expression] = STATE(2379), + [sym_parenthesized_expression] = STATE(2379), + [sym_call_expression] = STATE(2379), + [sym_type_initializer] = STATE(2378), + [sym_function_literal] = STATE(2379), + [sym_reference_expression] = STATE(2377), + [sym_type_reference_expression] = STATE(3460), + [sym_unary_expression] = STATE(2379), + [sym_receive_expression] = STATE(2379), + [sym_binary_expression] = STATE(2379), + [sym_as_type_cast_expression] = STATE(2379), + [sym__max_group] = STATE(2379), + [sym_literal] = STATE(2392), + [sym_map_init_expression] = STATE(2378), + [sym_array_creation] = STATE(2379), + [sym_fixed_array_creation] = STATE(2379), + [sym_selector_expression] = STATE(2379), + [sym_index_expression] = STATE(2379), + [sym_slice_expression] = STATE(2379), + [sym_if_expression] = STATE(2378), + [sym_compile_time_if_expression] = STATE(2378), + [sym_is_expression] = STATE(2379), + [sym_in_expression] = STATE(2379), + [sym_enum_fetch] = STATE(2379), + [sym_match_expression] = STATE(2378), + [sym_select_expression] = STATE(2378), + [sym_lock_expression] = STATE(2378), + [sym_unsafe_expression] = STATE(2378), + [sym_sql_expression] = STATE(2378), + [sym_c_string_literal] = STATE(2401), + [sym_raw_string_literal] = STATE(2401), + [sym_interpreted_string_literal] = STATE(2401), + [sym_mutability_modifiers] = STATE(939), + [sym_plain_type] = STATE(4160), + [sym__plain_type_without_special] = STATE(2360), + [sym_anon_struct_type] = STATE(2362), + [sym_multi_return_type] = STATE(2360), + [sym_result_type] = STATE(2360), + [sym_option_type] = STATE(2360), + [sym_qualified_type] = STATE(3460), + [sym_fixed_array_type] = STATE(2362), + [sym_array_type] = STATE(2362), + [sym_pointer_type] = STATE(2362), + [sym_wrong_pointer_type] = STATE(2362), + [sym_map_type] = STATE(2362), + [sym_channel_type] = STATE(2362), + [sym_shared_type] = STATE(2362), + [sym_thread_type] = STATE(2362), + [sym_atomic_type] = STATE(2362), + [sym_generic_type] = STATE(2362), + [sym_function_type] = STATE(2362), + [sym_identifier] = ACTIONS(1428), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(3288), - [anon_sym_LBRACE] = ACTIONS(3290), - [anon_sym_LPAREN] = ACTIONS(3292), - [anon_sym_fn] = ACTIONS(3294), - [anon_sym_PLUS] = ACTIONS(3296), - [anon_sym_DASH] = ACTIONS(3296), - [anon_sym_STAR] = ACTIONS(3298), - [anon_sym_struct] = ACTIONS(3300), + [anon_sym_DOT] = ACTIONS(1430), + [anon_sym_LBRACE] = ACTIONS(1432), + [anon_sym_LPAREN] = ACTIONS(1434), + [anon_sym_fn] = ACTIONS(1436), + [anon_sym_PLUS] = ACTIONS(1438), + [anon_sym_DASH] = ACTIONS(1438), + [anon_sym_STAR] = ACTIONS(1440), + [anon_sym_struct] = ACTIONS(1442), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(3302), - [anon_sym_go] = ACTIONS(3304), - [anon_sym_spawn] = ACTIONS(3306), - [anon_sym_json_DOTdecode] = ACTIONS(3308), - [anon_sym_LBRACK2] = ACTIONS(3310), - [anon_sym_TILDE] = ACTIONS(3296), - [anon_sym_CARET] = ACTIONS(3296), - [anon_sym_AMP] = ACTIONS(3312), - [anon_sym_LT_DASH] = ACTIONS(3314), - [sym_none] = ACTIONS(3316), - [sym_true] = ACTIONS(3316), - [sym_false] = ACTIONS(3316), - [sym_nil] = ACTIONS(3316), - [anon_sym_if] = ACTIONS(3318), - [anon_sym_DOLLARif] = ACTIONS(3320), - [anon_sym_match] = ACTIONS(3322), - [anon_sym_select] = ACTIONS(3324), - [anon_sym_lock] = ACTIONS(3326), - [anon_sym_rlock] = ACTIONS(3326), - [anon_sym_unsafe] = ACTIONS(3328), - [anon_sym_sql] = ACTIONS(3330), - [sym_int_literal] = ACTIONS(3316), - [sym_float_literal] = ACTIONS(3332), - [sym_rune_literal] = ACTIONS(3332), - [sym_pseudo_compile_time_identifier] = ACTIONS(3334), + [anon_sym_BANG] = ACTIONS(1444), + [anon_sym_go] = ACTIONS(1446), + [anon_sym_spawn] = ACTIONS(1448), + [anon_sym_json_DOTdecode] = ACTIONS(1450), + [anon_sym_LBRACK2] = ACTIONS(1452), + [anon_sym_TILDE] = ACTIONS(1438), + [anon_sym_CARET] = ACTIONS(1438), + [anon_sym_AMP] = ACTIONS(1454), + [anon_sym_LT_DASH] = ACTIONS(1456), + [sym_none] = ACTIONS(1458), + [sym_true] = ACTIONS(1458), + [sym_false] = ACTIONS(1458), + [sym_nil] = ACTIONS(1458), + [anon_sym_if] = ACTIONS(1833), + [anon_sym_DOLLARif] = ACTIONS(1462), + [anon_sym_match] = ACTIONS(1464), + [anon_sym_select] = ACTIONS(1466), + [anon_sym_lock] = ACTIONS(1468), + [anon_sym_rlock] = ACTIONS(1468), + [anon_sym_unsafe] = ACTIONS(1839), + [anon_sym_sql] = ACTIONS(1472), + [sym_int_literal] = ACTIONS(1458), + [sym_float_literal] = ACTIONS(1474), + [sym_rune_literal] = ACTIONS(1474), + [sym_pseudo_compile_time_identifier] = ACTIONS(1476), [anon_sym_shared] = ACTIONS(83), [anon_sym_map_LBRACK] = ACTIONS(85), [anon_sym_chan] = ACTIONS(87), [anon_sym_thread] = ACTIONS(89), [anon_sym_atomic] = ACTIONS(91), - [sym___double_quote] = ACTIONS(3336), - [sym___single_quote] = ACTIONS(3338), - [sym___c_double_quote] = ACTIONS(3340), - [sym___c_single_quote] = ACTIONS(3342), - [sym___r_double_quote] = ACTIONS(3344), - [sym___r_single_quote] = ACTIONS(3346), + [sym___double_quote] = ACTIONS(1480), + [sym___single_quote] = ACTIONS(1482), + [sym___c_double_quote] = ACTIONS(1484), + [sym___c_single_quote] = ACTIONS(1486), + [sym___r_double_quote] = ACTIONS(1488), + [sym___r_single_quote] = ACTIONS(1490), }, [590] = { [sym_line_comment] = STATE(590), [sym_block_comment] = STATE(590), - [sym__expression] = STATE(2269), - [sym__expression_without_blocks] = STATE(2226), - [sym__expression_with_blocks] = STATE(2226), - [sym_inc_expression] = STATE(2247), - [sym_dec_expression] = STATE(2247), - [sym_or_block_expression] = STATE(2247), - [sym_option_propagation_expression] = STATE(2247), - [sym_result_propagation_expression] = STATE(2247), - [sym_anon_struct_value_expression] = STATE(2248), - [sym_go_expression] = STATE(2247), - [sym_spawn_expression] = STATE(2247), - [sym_parenthesized_expression] = STATE(2247), - [sym_call_expression] = STATE(2247), - [sym_type_initializer] = STATE(2248), - [sym_function_literal] = STATE(2247), - [sym_reference_expression] = STATE(2252), - [sym_type_reference_expression] = STATE(3541), - [sym_unary_expression] = STATE(2247), - [sym_receive_expression] = STATE(2247), - [sym_binary_expression] = STATE(2247), - [sym_as_type_cast_expression] = STATE(2247), - [sym__max_group] = STATE(2247), - [sym_literal] = STATE(2155), - [sym_map_init_expression] = STATE(2248), - [sym_array_creation] = STATE(2247), - [sym_fixed_array_creation] = STATE(2247), - [sym_selector_expression] = STATE(2247), - [sym_index_expression] = STATE(2247), - [sym_slice_expression] = STATE(2247), - [sym_if_expression] = STATE(2248), - [sym_compile_time_if_expression] = STATE(2248), - [sym_is_expression] = STATE(2247), - [sym_in_expression] = STATE(2247), - [sym_enum_fetch] = STATE(2247), - [sym_match_expression] = STATE(2248), - [sym_select_expression] = STATE(2248), - [sym_lock_expression] = STATE(2248), - [sym_unsafe_expression] = STATE(2248), - [sym_sql_expression] = STATE(2248), - [sym_c_string_literal] = STATE(2153), - [sym_raw_string_literal] = STATE(2153), - [sym_interpreted_string_literal] = STATE(2153), - [sym_mutability_modifiers] = STATE(631), - [sym_plain_type] = STATE(4146), - [sym__plain_type_without_special] = STATE(2302), - [sym_anon_struct_type] = STATE(2303), - [sym_multi_return_type] = STATE(2302), - [sym_result_type] = STATE(2302), - [sym_option_type] = STATE(2302), - [sym_qualified_type] = STATE(3541), - [sym_fixed_array_type] = STATE(2303), - [sym_array_type] = STATE(2303), - [sym_pointer_type] = STATE(2303), - [sym_wrong_pointer_type] = STATE(2303), - [sym_map_type] = STATE(2303), - [sym_channel_type] = STATE(2303), - [sym_shared_type] = STATE(2303), - [sym_thread_type] = STATE(2303), - [sym_atomic_type] = STATE(2303), - [sym_generic_type] = STATE(2303), - [sym_function_type] = STATE(2303), - [sym_identifier] = ACTIONS(3286), + [sym__expression] = STATE(2122), + [sym__expression_without_blocks] = STATE(2162), + [sym__expression_with_blocks] = STATE(2162), + [sym_inc_expression] = STATE(2161), + [sym_dec_expression] = STATE(2161), + [sym_or_block_expression] = STATE(2161), + [sym_option_propagation_expression] = STATE(2161), + [sym_result_propagation_expression] = STATE(2161), + [sym_anon_struct_value_expression] = STATE(2160), + [sym_go_expression] = STATE(2161), + [sym_spawn_expression] = STATE(2161), + [sym_parenthesized_expression] = STATE(2161), + [sym_call_expression] = STATE(2161), + [sym_type_initializer] = STATE(2160), + [sym_function_literal] = STATE(2161), + [sym_reference_expression] = STATE(2159), + [sym_type_reference_expression] = STATE(3460), + [sym_unary_expression] = STATE(2161), + [sym_receive_expression] = STATE(2161), + [sym_binary_expression] = STATE(2161), + [sym_as_type_cast_expression] = STATE(2161), + [sym__max_group] = STATE(2161), + [sym_literal] = STATE(2164), + [sym_map_init_expression] = STATE(2160), + [sym_array_creation] = STATE(2161), + [sym_fixed_array_creation] = STATE(2161), + [sym_selector_expression] = STATE(2161), + [sym_index_expression] = STATE(2161), + [sym_slice_expression] = STATE(2161), + [sym_if_expression] = STATE(2160), + [sym_compile_time_if_expression] = STATE(2160), + [sym_is_expression] = STATE(2161), + [sym_in_expression] = STATE(2161), + [sym_enum_fetch] = STATE(2161), + [sym_match_expression] = STATE(2160), + [sym_select_expression] = STATE(2160), + [sym_lock_expression] = STATE(2160), + [sym_unsafe_expression] = STATE(2160), + [sym_sql_expression] = STATE(2160), + [sym_c_string_literal] = STATE(2166), + [sym_raw_string_literal] = STATE(2166), + [sym_interpreted_string_literal] = STATE(2166), + [sym_mutability_modifiers] = STATE(575), + [sym_plain_type] = STATE(4173), + [sym__plain_type_without_special] = STATE(2360), + [sym_anon_struct_type] = STATE(2362), + [sym_multi_return_type] = STATE(2360), + [sym_result_type] = STATE(2360), + [sym_option_type] = STATE(2360), + [sym_qualified_type] = STATE(3460), + [sym_fixed_array_type] = STATE(2362), + [sym_array_type] = STATE(2362), + [sym_pointer_type] = STATE(2362), + [sym_wrong_pointer_type] = STATE(2362), + [sym_map_type] = STATE(2362), + [sym_channel_type] = STATE(2362), + [sym_shared_type] = STATE(2362), + [sym_thread_type] = STATE(2362), + [sym_atomic_type] = STATE(2362), + [sym_generic_type] = STATE(2362), + [sym_function_type] = STATE(2362), + [sym_identifier] = ACTIONS(3292), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(3288), - [anon_sym_LBRACE] = ACTIONS(3290), - [anon_sym_LPAREN] = ACTIONS(3292), - [anon_sym_fn] = ACTIONS(3294), - [anon_sym_PLUS] = ACTIONS(3296), - [anon_sym_DASH] = ACTIONS(3296), - [anon_sym_STAR] = ACTIONS(3298), - [anon_sym_struct] = ACTIONS(3300), + [anon_sym_DOT] = ACTIONS(3294), + [anon_sym_LBRACE] = ACTIONS(3296), + [anon_sym_LPAREN] = ACTIONS(3298), + [anon_sym_fn] = ACTIONS(3300), + [anon_sym_PLUS] = ACTIONS(3302), + [anon_sym_DASH] = ACTIONS(3302), + [anon_sym_STAR] = ACTIONS(3304), + [anon_sym_struct] = ACTIONS(3306), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(3302), - [anon_sym_go] = ACTIONS(3304), - [anon_sym_spawn] = ACTIONS(3306), - [anon_sym_json_DOTdecode] = ACTIONS(3308), - [anon_sym_LBRACK2] = ACTIONS(3310), - [anon_sym_TILDE] = ACTIONS(3296), - [anon_sym_CARET] = ACTIONS(3296), - [anon_sym_AMP] = ACTIONS(3312), - [anon_sym_LT_DASH] = ACTIONS(3314), - [sym_none] = ACTIONS(3316), - [sym_true] = ACTIONS(3316), - [sym_false] = ACTIONS(3316), - [sym_nil] = ACTIONS(3316), - [anon_sym_if] = ACTIONS(3318), - [anon_sym_DOLLARif] = ACTIONS(3320), - [anon_sym_match] = ACTIONS(3322), - [anon_sym_select] = ACTIONS(3324), - [anon_sym_lock] = ACTIONS(3326), - [anon_sym_rlock] = ACTIONS(3326), - [anon_sym_unsafe] = ACTIONS(3328), - [anon_sym_sql] = ACTIONS(3330), - [sym_int_literal] = ACTIONS(3316), - [sym_float_literal] = ACTIONS(3332), - [sym_rune_literal] = ACTIONS(3332), - [sym_pseudo_compile_time_identifier] = ACTIONS(3334), + [anon_sym_BANG] = ACTIONS(3308), + [anon_sym_go] = ACTIONS(3310), + [anon_sym_spawn] = ACTIONS(3312), + [anon_sym_json_DOTdecode] = ACTIONS(3314), + [anon_sym_LBRACK2] = ACTIONS(3316), + [anon_sym_TILDE] = ACTIONS(3302), + [anon_sym_CARET] = ACTIONS(3302), + [anon_sym_AMP] = ACTIONS(3318), + [anon_sym_LT_DASH] = ACTIONS(3320), + [sym_none] = ACTIONS(3322), + [sym_true] = ACTIONS(3322), + [sym_false] = ACTIONS(3322), + [sym_nil] = ACTIONS(3322), + [anon_sym_if] = ACTIONS(3324), + [anon_sym_DOLLARif] = ACTIONS(3326), + [anon_sym_match] = ACTIONS(3328), + [anon_sym_select] = ACTIONS(3330), + [anon_sym_lock] = ACTIONS(3332), + [anon_sym_rlock] = ACTIONS(3332), + [anon_sym_unsafe] = ACTIONS(3334), + [anon_sym_sql] = ACTIONS(3336), + [sym_int_literal] = ACTIONS(3322), + [sym_float_literal] = ACTIONS(3338), + [sym_rune_literal] = ACTIONS(3338), + [sym_pseudo_compile_time_identifier] = ACTIONS(3340), [anon_sym_shared] = ACTIONS(83), [anon_sym_map_LBRACK] = ACTIONS(85), [anon_sym_chan] = ACTIONS(87), [anon_sym_thread] = ACTIONS(89), [anon_sym_atomic] = ACTIONS(91), - [sym___double_quote] = ACTIONS(3336), - [sym___single_quote] = ACTIONS(3338), - [sym___c_double_quote] = ACTIONS(3340), - [sym___c_single_quote] = ACTIONS(3342), - [sym___r_double_quote] = ACTIONS(3344), - [sym___r_single_quote] = ACTIONS(3346), + [sym___double_quote] = ACTIONS(3342), + [sym___single_quote] = ACTIONS(3344), + [sym___c_double_quote] = ACTIONS(3346), + [sym___c_single_quote] = ACTIONS(3348), + [sym___r_double_quote] = ACTIONS(3350), + [sym___r_single_quote] = ACTIONS(3352), }, [591] = { [sym_line_comment] = STATE(591), [sym_block_comment] = STATE(591), - [sym__expression] = STATE(2271), - [sym__expression_without_blocks] = STATE(2226), - [sym__expression_with_blocks] = STATE(2226), - [sym_inc_expression] = STATE(2247), - [sym_dec_expression] = STATE(2247), - [sym_or_block_expression] = STATE(2247), - [sym_option_propagation_expression] = STATE(2247), - [sym_result_propagation_expression] = STATE(2247), - [sym_anon_struct_value_expression] = STATE(2248), - [sym_go_expression] = STATE(2247), - [sym_spawn_expression] = STATE(2247), - [sym_parenthesized_expression] = STATE(2247), - [sym_call_expression] = STATE(2247), - [sym_type_initializer] = STATE(2248), - [sym_function_literal] = STATE(2247), - [sym_reference_expression] = STATE(2252), - [sym_type_reference_expression] = STATE(3541), - [sym_unary_expression] = STATE(2247), - [sym_receive_expression] = STATE(2247), - [sym_binary_expression] = STATE(2247), - [sym_as_type_cast_expression] = STATE(2247), - [sym__max_group] = STATE(2247), - [sym_literal] = STATE(2155), - [sym_map_init_expression] = STATE(2248), - [sym_array_creation] = STATE(2247), - [sym_fixed_array_creation] = STATE(2247), - [sym_selector_expression] = STATE(2247), - [sym_index_expression] = STATE(2247), - [sym_slice_expression] = STATE(2247), - [sym_if_expression] = STATE(2248), - [sym_compile_time_if_expression] = STATE(2248), - [sym_is_expression] = STATE(2247), - [sym_in_expression] = STATE(2247), - [sym_enum_fetch] = STATE(2247), - [sym_match_expression] = STATE(2248), - [sym_select_expression] = STATE(2248), - [sym_lock_expression] = STATE(2248), - [sym_unsafe_expression] = STATE(2248), - [sym_sql_expression] = STATE(2248), - [sym_c_string_literal] = STATE(2153), - [sym_raw_string_literal] = STATE(2153), - [sym_interpreted_string_literal] = STATE(2153), - [sym_mutability_modifiers] = STATE(631), - [sym_plain_type] = STATE(4146), - [sym__plain_type_without_special] = STATE(2302), - [sym_anon_struct_type] = STATE(2303), - [sym_multi_return_type] = STATE(2302), - [sym_result_type] = STATE(2302), - [sym_option_type] = STATE(2302), - [sym_qualified_type] = STATE(3541), - [sym_fixed_array_type] = STATE(2303), - [sym_array_type] = STATE(2303), - [sym_pointer_type] = STATE(2303), - [sym_wrong_pointer_type] = STATE(2303), - [sym_map_type] = STATE(2303), - [sym_channel_type] = STATE(2303), - [sym_shared_type] = STATE(2303), - [sym_thread_type] = STATE(2303), - [sym_atomic_type] = STATE(2303), - [sym_generic_type] = STATE(2303), - [sym_function_type] = STATE(2303), - [sym_identifier] = ACTIONS(3286), + [sym__expression] = STATE(2267), + [sym__expression_without_blocks] = STATE(2347), + [sym__expression_with_blocks] = STATE(2347), + [sym_inc_expression] = STATE(2379), + [sym_dec_expression] = STATE(2379), + [sym_or_block_expression] = STATE(2379), + [sym_option_propagation_expression] = STATE(2379), + [sym_result_propagation_expression] = STATE(2379), + [sym_anon_struct_value_expression] = STATE(2378), + [sym_go_expression] = STATE(2379), + [sym_spawn_expression] = STATE(2379), + [sym_parenthesized_expression] = STATE(2379), + [sym_call_expression] = STATE(2379), + [sym_type_initializer] = STATE(2378), + [sym_function_literal] = STATE(2379), + [sym_reference_expression] = STATE(2377), + [sym_type_reference_expression] = STATE(3460), + [sym_unary_expression] = STATE(2379), + [sym_receive_expression] = STATE(2379), + [sym_binary_expression] = STATE(2379), + [sym_as_type_cast_expression] = STATE(2379), + [sym__max_group] = STATE(2379), + [sym_literal] = STATE(2392), + [sym_map_init_expression] = STATE(2378), + [sym_array_creation] = STATE(2379), + [sym_fixed_array_creation] = STATE(2379), + [sym_selector_expression] = STATE(2379), + [sym_index_expression] = STATE(2379), + [sym_slice_expression] = STATE(2379), + [sym_if_expression] = STATE(2378), + [sym_compile_time_if_expression] = STATE(2378), + [sym_is_expression] = STATE(2379), + [sym_in_expression] = STATE(2379), + [sym_enum_fetch] = STATE(2379), + [sym_match_expression] = STATE(2378), + [sym_select_expression] = STATE(2378), + [sym_lock_expression] = STATE(2378), + [sym_unsafe_expression] = STATE(2378), + [sym_sql_expression] = STATE(2378), + [sym_c_string_literal] = STATE(2401), + [sym_raw_string_literal] = STATE(2401), + [sym_interpreted_string_literal] = STATE(2401), + [sym_mutability_modifiers] = STATE(939), + [sym_plain_type] = STATE(3557), + [sym__plain_type_without_special] = STATE(2360), + [sym_anon_struct_type] = STATE(2362), + [sym_multi_return_type] = STATE(2360), + [sym_result_type] = STATE(2360), + [sym_option_type] = STATE(2360), + [sym_qualified_type] = STATE(3460), + [sym_fixed_array_type] = STATE(2362), + [sym_array_type] = STATE(2362), + [sym_pointer_type] = STATE(2362), + [sym_wrong_pointer_type] = STATE(2362), + [sym_map_type] = STATE(2362), + [sym_channel_type] = STATE(2362), + [sym_shared_type] = STATE(2362), + [sym_thread_type] = STATE(2362), + [sym_atomic_type] = STATE(2362), + [sym_generic_type] = STATE(2362), + [sym_function_type] = STATE(2362), + [sym_identifier] = ACTIONS(2127), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(3288), - [anon_sym_LBRACE] = ACTIONS(3290), - [anon_sym_LPAREN] = ACTIONS(3292), - [anon_sym_fn] = ACTIONS(3294), - [anon_sym_PLUS] = ACTIONS(3296), - [anon_sym_DASH] = ACTIONS(3296), - [anon_sym_STAR] = ACTIONS(3298), - [anon_sym_struct] = ACTIONS(3300), + [anon_sym_DOT] = ACTIONS(1430), + [anon_sym_LBRACE] = ACTIONS(1432), + [anon_sym_LPAREN] = ACTIONS(1434), + [anon_sym_fn] = ACTIONS(1436), + [anon_sym_PLUS] = ACTIONS(1438), + [anon_sym_DASH] = ACTIONS(1438), + [anon_sym_STAR] = ACTIONS(2129), + [anon_sym_struct] = ACTIONS(1442), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(3302), - [anon_sym_go] = ACTIONS(3304), - [anon_sym_spawn] = ACTIONS(3306), - [anon_sym_json_DOTdecode] = ACTIONS(3308), - [anon_sym_LBRACK2] = ACTIONS(3310), - [anon_sym_TILDE] = ACTIONS(3296), - [anon_sym_CARET] = ACTIONS(3296), - [anon_sym_AMP] = ACTIONS(3312), - [anon_sym_LT_DASH] = ACTIONS(3314), - [sym_none] = ACTIONS(3316), - [sym_true] = ACTIONS(3316), - [sym_false] = ACTIONS(3316), - [sym_nil] = ACTIONS(3316), - [anon_sym_if] = ACTIONS(3318), - [anon_sym_DOLLARif] = ACTIONS(3320), - [anon_sym_match] = ACTIONS(3322), - [anon_sym_select] = ACTIONS(3324), - [anon_sym_lock] = ACTIONS(3326), - [anon_sym_rlock] = ACTIONS(3326), - [anon_sym_unsafe] = ACTIONS(3328), - [anon_sym_sql] = ACTIONS(3330), - [sym_int_literal] = ACTIONS(3316), - [sym_float_literal] = ACTIONS(3332), - [sym_rune_literal] = ACTIONS(3332), - [sym_pseudo_compile_time_identifier] = ACTIONS(3334), + [anon_sym_BANG] = ACTIONS(2131), + [anon_sym_go] = ACTIONS(1446), + [anon_sym_spawn] = ACTIONS(1448), + [anon_sym_json_DOTdecode] = ACTIONS(1450), + [anon_sym_LBRACK2] = ACTIONS(1452), + [anon_sym_TILDE] = ACTIONS(1438), + [anon_sym_CARET] = ACTIONS(1438), + [anon_sym_AMP] = ACTIONS(2133), + [anon_sym_LT_DASH] = ACTIONS(1456), + [sym_none] = ACTIONS(1458), + [sym_true] = ACTIONS(1458), + [sym_false] = ACTIONS(1458), + [sym_nil] = ACTIONS(1458), + [anon_sym_if] = ACTIONS(1833), + [anon_sym_DOLLARif] = ACTIONS(1462), + [anon_sym_match] = ACTIONS(1464), + [anon_sym_select] = ACTIONS(1466), + [anon_sym_lock] = ACTIONS(1468), + [anon_sym_rlock] = ACTIONS(1468), + [anon_sym_unsafe] = ACTIONS(1839), + [anon_sym_sql] = ACTIONS(1472), + [sym_int_literal] = ACTIONS(1458), + [sym_float_literal] = ACTIONS(1474), + [sym_rune_literal] = ACTIONS(1474), + [sym_pseudo_compile_time_identifier] = ACTIONS(1476), [anon_sym_shared] = ACTIONS(83), [anon_sym_map_LBRACK] = ACTIONS(85), [anon_sym_chan] = ACTIONS(87), [anon_sym_thread] = ACTIONS(89), [anon_sym_atomic] = ACTIONS(91), - [sym___double_quote] = ACTIONS(3336), - [sym___single_quote] = ACTIONS(3338), - [sym___c_double_quote] = ACTIONS(3340), - [sym___c_single_quote] = ACTIONS(3342), - [sym___r_double_quote] = ACTIONS(3344), - [sym___r_single_quote] = ACTIONS(3346), + [sym___double_quote] = ACTIONS(1480), + [sym___single_quote] = ACTIONS(1482), + [sym___c_double_quote] = ACTIONS(1484), + [sym___c_single_quote] = ACTIONS(1486), + [sym___r_double_quote] = ACTIONS(1488), + [sym___r_single_quote] = ACTIONS(1490), }, [592] = { [sym_line_comment] = STATE(592), [sym_block_comment] = STATE(592), - [sym__expression] = STATE(2272), - [sym__expression_without_blocks] = STATE(2226), - [sym__expression_with_blocks] = STATE(2226), - [sym_inc_expression] = STATE(2247), - [sym_dec_expression] = STATE(2247), - [sym_or_block_expression] = STATE(2247), - [sym_option_propagation_expression] = STATE(2247), - [sym_result_propagation_expression] = STATE(2247), - [sym_anon_struct_value_expression] = STATE(2248), - [sym_go_expression] = STATE(2247), - [sym_spawn_expression] = STATE(2247), - [sym_parenthesized_expression] = STATE(2247), - [sym_call_expression] = STATE(2247), - [sym_type_initializer] = STATE(2248), - [sym_function_literal] = STATE(2247), - [sym_reference_expression] = STATE(2252), - [sym_type_reference_expression] = STATE(3541), - [sym_unary_expression] = STATE(2247), - [sym_receive_expression] = STATE(2247), - [sym_binary_expression] = STATE(2247), - [sym_as_type_cast_expression] = STATE(2247), - [sym__max_group] = STATE(2247), - [sym_literal] = STATE(2155), - [sym_map_init_expression] = STATE(2248), - [sym_array_creation] = STATE(2247), - [sym_fixed_array_creation] = STATE(2247), - [sym_selector_expression] = STATE(2247), - [sym_index_expression] = STATE(2247), - [sym_slice_expression] = STATE(2247), - [sym_if_expression] = STATE(2248), - [sym_compile_time_if_expression] = STATE(2248), - [sym_is_expression] = STATE(2247), - [sym_in_expression] = STATE(2247), - [sym_enum_fetch] = STATE(2247), - [sym_match_expression] = STATE(2248), - [sym_select_expression] = STATE(2248), - [sym_lock_expression] = STATE(2248), - [sym_unsafe_expression] = STATE(2248), - [sym_sql_expression] = STATE(2248), - [sym_c_string_literal] = STATE(2153), - [sym_raw_string_literal] = STATE(2153), - [sym_interpreted_string_literal] = STATE(2153), - [sym_mutability_modifiers] = STATE(631), - [sym_plain_type] = STATE(4146), - [sym__plain_type_without_special] = STATE(2302), - [sym_anon_struct_type] = STATE(2303), - [sym_multi_return_type] = STATE(2302), - [sym_result_type] = STATE(2302), - [sym_option_type] = STATE(2302), - [sym_qualified_type] = STATE(3541), - [sym_fixed_array_type] = STATE(2303), - [sym_array_type] = STATE(2303), - [sym_pointer_type] = STATE(2303), - [sym_wrong_pointer_type] = STATE(2303), - [sym_map_type] = STATE(2303), - [sym_channel_type] = STATE(2303), - [sym_shared_type] = STATE(2303), - [sym_thread_type] = STATE(2303), - [sym_atomic_type] = STATE(2303), - [sym_generic_type] = STATE(2303), - [sym_function_type] = STATE(2303), - [sym_identifier] = ACTIONS(3286), + [sym__expression] = STATE(2274), + [sym__expression_without_blocks] = STATE(2162), + [sym__expression_with_blocks] = STATE(2162), + [sym_inc_expression] = STATE(2161), + [sym_dec_expression] = STATE(2161), + [sym_or_block_expression] = STATE(2161), + [sym_option_propagation_expression] = STATE(2161), + [sym_result_propagation_expression] = STATE(2161), + [sym_anon_struct_value_expression] = STATE(2160), + [sym_go_expression] = STATE(2161), + [sym_spawn_expression] = STATE(2161), + [sym_parenthesized_expression] = STATE(2161), + [sym_call_expression] = STATE(2161), + [sym_type_initializer] = STATE(2160), + [sym_function_literal] = STATE(2161), + [sym_reference_expression] = STATE(2159), + [sym_type_reference_expression] = STATE(3460), + [sym_unary_expression] = STATE(2161), + [sym_receive_expression] = STATE(2161), + [sym_binary_expression] = STATE(2161), + [sym_as_type_cast_expression] = STATE(2161), + [sym__max_group] = STATE(2161), + [sym_literal] = STATE(2164), + [sym_map_init_expression] = STATE(2160), + [sym_array_creation] = STATE(2161), + [sym_fixed_array_creation] = STATE(2161), + [sym_selector_expression] = STATE(2161), + [sym_index_expression] = STATE(2161), + [sym_slice_expression] = STATE(2161), + [sym_if_expression] = STATE(2160), + [sym_compile_time_if_expression] = STATE(2160), + [sym_is_expression] = STATE(2161), + [sym_in_expression] = STATE(2161), + [sym_enum_fetch] = STATE(2161), + [sym_match_expression] = STATE(2160), + [sym_select_expression] = STATE(2160), + [sym_lock_expression] = STATE(2160), + [sym_unsafe_expression] = STATE(2160), + [sym_sql_expression] = STATE(2160), + [sym_c_string_literal] = STATE(2166), + [sym_raw_string_literal] = STATE(2166), + [sym_interpreted_string_literal] = STATE(2166), + [sym_mutability_modifiers] = STATE(575), + [sym_plain_type] = STATE(4173), + [sym__plain_type_without_special] = STATE(2360), + [sym_anon_struct_type] = STATE(2362), + [sym_multi_return_type] = STATE(2360), + [sym_result_type] = STATE(2360), + [sym_option_type] = STATE(2360), + [sym_qualified_type] = STATE(3460), + [sym_fixed_array_type] = STATE(2362), + [sym_array_type] = STATE(2362), + [sym_pointer_type] = STATE(2362), + [sym_wrong_pointer_type] = STATE(2362), + [sym_map_type] = STATE(2362), + [sym_channel_type] = STATE(2362), + [sym_shared_type] = STATE(2362), + [sym_thread_type] = STATE(2362), + [sym_atomic_type] = STATE(2362), + [sym_generic_type] = STATE(2362), + [sym_function_type] = STATE(2362), + [sym_identifier] = ACTIONS(3292), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(3288), - [anon_sym_LBRACE] = ACTIONS(3290), - [anon_sym_LPAREN] = ACTIONS(3292), - [anon_sym_fn] = ACTIONS(3294), - [anon_sym_PLUS] = ACTIONS(3296), - [anon_sym_DASH] = ACTIONS(3296), - [anon_sym_STAR] = ACTIONS(3298), - [anon_sym_struct] = ACTIONS(3300), + [anon_sym_DOT] = ACTIONS(3294), + [anon_sym_LBRACE] = ACTIONS(3296), + [anon_sym_LPAREN] = ACTIONS(3298), + [anon_sym_fn] = ACTIONS(3300), + [anon_sym_PLUS] = ACTIONS(3302), + [anon_sym_DASH] = ACTIONS(3302), + [anon_sym_STAR] = ACTIONS(3304), + [anon_sym_struct] = ACTIONS(3306), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(3302), - [anon_sym_go] = ACTIONS(3304), - [anon_sym_spawn] = ACTIONS(3306), - [anon_sym_json_DOTdecode] = ACTIONS(3308), - [anon_sym_LBRACK2] = ACTIONS(3310), - [anon_sym_TILDE] = ACTIONS(3296), - [anon_sym_CARET] = ACTIONS(3296), - [anon_sym_AMP] = ACTIONS(3312), - [anon_sym_LT_DASH] = ACTIONS(3314), - [sym_none] = ACTIONS(3316), - [sym_true] = ACTIONS(3316), - [sym_false] = ACTIONS(3316), - [sym_nil] = ACTIONS(3316), - [anon_sym_if] = ACTIONS(3318), - [anon_sym_DOLLARif] = ACTIONS(3320), - [anon_sym_match] = ACTIONS(3322), - [anon_sym_select] = ACTIONS(3324), - [anon_sym_lock] = ACTIONS(3326), - [anon_sym_rlock] = ACTIONS(3326), - [anon_sym_unsafe] = ACTIONS(3328), - [anon_sym_sql] = ACTIONS(3330), - [sym_int_literal] = ACTIONS(3316), - [sym_float_literal] = ACTIONS(3332), - [sym_rune_literal] = ACTIONS(3332), - [sym_pseudo_compile_time_identifier] = ACTIONS(3334), + [anon_sym_BANG] = ACTIONS(3308), + [anon_sym_go] = ACTIONS(3310), + [anon_sym_spawn] = ACTIONS(3312), + [anon_sym_json_DOTdecode] = ACTIONS(3314), + [anon_sym_LBRACK2] = ACTIONS(3316), + [anon_sym_TILDE] = ACTIONS(3302), + [anon_sym_CARET] = ACTIONS(3302), + [anon_sym_AMP] = ACTIONS(3318), + [anon_sym_LT_DASH] = ACTIONS(3320), + [sym_none] = ACTIONS(3322), + [sym_true] = ACTIONS(3322), + [sym_false] = ACTIONS(3322), + [sym_nil] = ACTIONS(3322), + [anon_sym_if] = ACTIONS(3324), + [anon_sym_DOLLARif] = ACTIONS(3326), + [anon_sym_match] = ACTIONS(3328), + [anon_sym_select] = ACTIONS(3330), + [anon_sym_lock] = ACTIONS(3332), + [anon_sym_rlock] = ACTIONS(3332), + [anon_sym_unsafe] = ACTIONS(3334), + [anon_sym_sql] = ACTIONS(3336), + [sym_int_literal] = ACTIONS(3322), + [sym_float_literal] = ACTIONS(3338), + [sym_rune_literal] = ACTIONS(3338), + [sym_pseudo_compile_time_identifier] = ACTIONS(3340), [anon_sym_shared] = ACTIONS(83), [anon_sym_map_LBRACK] = ACTIONS(85), [anon_sym_chan] = ACTIONS(87), [anon_sym_thread] = ACTIONS(89), [anon_sym_atomic] = ACTIONS(91), - [sym___double_quote] = ACTIONS(3336), - [sym___single_quote] = ACTIONS(3338), - [sym___c_double_quote] = ACTIONS(3340), - [sym___c_single_quote] = ACTIONS(3342), - [sym___r_double_quote] = ACTIONS(3344), - [sym___r_single_quote] = ACTIONS(3346), + [sym___double_quote] = ACTIONS(3342), + [sym___single_quote] = ACTIONS(3344), + [sym___c_double_quote] = ACTIONS(3346), + [sym___c_single_quote] = ACTIONS(3348), + [sym___r_double_quote] = ACTIONS(3350), + [sym___r_single_quote] = ACTIONS(3352), }, [593] = { [sym_line_comment] = STATE(593), [sym_block_comment] = STATE(593), - [sym__expression] = STATE(1661), - [sym__expression_without_blocks] = STATE(1891), - [sym__expression_with_blocks] = STATE(1891), - [sym_inc_expression] = STATE(1893), - [sym_dec_expression] = STATE(1893), - [sym_or_block_expression] = STATE(1893), - [sym_option_propagation_expression] = STATE(1893), - [sym_result_propagation_expression] = STATE(1893), - [sym_anon_struct_value_expression] = STATE(1895), - [sym_go_expression] = STATE(1893), - [sym_spawn_expression] = STATE(1893), - [sym_parenthesized_expression] = STATE(1893), - [sym_call_expression] = STATE(1893), - [sym_type_initializer] = STATE(1895), - [sym_function_literal] = STATE(1893), - [sym_reference_expression] = STATE(1782), - [sym_type_reference_expression] = STATE(3541), - [sym_unary_expression] = STATE(1893), - [sym_receive_expression] = STATE(1893), - [sym_binary_expression] = STATE(1893), - [sym_as_type_cast_expression] = STATE(1893), - [sym__max_group] = STATE(1893), - [sym_literal] = STATE(1889), - [sym_map_init_expression] = STATE(1895), - [sym_array_creation] = STATE(1893), - [sym_fixed_array_creation] = STATE(1893), - [sym_selector_expression] = STATE(1893), - [sym_index_expression] = STATE(1893), - [sym_slice_expression] = STATE(1893), - [sym_if_expression] = STATE(1895), - [sym_compile_time_if_expression] = STATE(1895), - [sym_is_expression] = STATE(1893), - [sym_in_expression] = STATE(1893), - [sym_enum_fetch] = STATE(1893), - [sym_match_expression] = STATE(1895), - [sym_select_expression] = STATE(1895), - [sym_lock_expression] = STATE(1895), - [sym_unsafe_expression] = STATE(1895), - [sym_sql_expression] = STATE(1895), - [sym_c_string_literal] = STATE(1882), - [sym_raw_string_literal] = STATE(1882), - [sym_interpreted_string_literal] = STATE(1882), - [sym_mutability_modifiers] = STATE(561), - [sym_plain_type] = STATE(4316), - [sym__plain_type_without_special] = STATE(2302), - [sym_anon_struct_type] = STATE(2303), - [sym_multi_return_type] = STATE(2302), - [sym_result_type] = STATE(2302), - [sym_option_type] = STATE(2302), - [sym_qualified_type] = STATE(3541), - [sym_fixed_array_type] = STATE(2303), - [sym_array_type] = STATE(2303), - [sym_pointer_type] = STATE(2303), - [sym_wrong_pointer_type] = STATE(2303), - [sym_map_type] = STATE(2303), - [sym_channel_type] = STATE(2303), - [sym_shared_type] = STATE(2303), - [sym_thread_type] = STATE(2303), - [sym_atomic_type] = STATE(2303), - [sym_generic_type] = STATE(2303), - [sym_function_type] = STATE(2303), - [sym_identifier] = ACTIONS(3170), + [sym__expression] = STATE(2275), + [sym__expression_without_blocks] = STATE(2162), + [sym__expression_with_blocks] = STATE(2162), + [sym_inc_expression] = STATE(2161), + [sym_dec_expression] = STATE(2161), + [sym_or_block_expression] = STATE(2161), + [sym_option_propagation_expression] = STATE(2161), + [sym_result_propagation_expression] = STATE(2161), + [sym_anon_struct_value_expression] = STATE(2160), + [sym_go_expression] = STATE(2161), + [sym_spawn_expression] = STATE(2161), + [sym_parenthesized_expression] = STATE(2161), + [sym_call_expression] = STATE(2161), + [sym_type_initializer] = STATE(2160), + [sym_function_literal] = STATE(2161), + [sym_reference_expression] = STATE(2159), + [sym_type_reference_expression] = STATE(3460), + [sym_unary_expression] = STATE(2161), + [sym_receive_expression] = STATE(2161), + [sym_binary_expression] = STATE(2161), + [sym_as_type_cast_expression] = STATE(2161), + [sym__max_group] = STATE(2161), + [sym_literal] = STATE(2164), + [sym_map_init_expression] = STATE(2160), + [sym_array_creation] = STATE(2161), + [sym_fixed_array_creation] = STATE(2161), + [sym_selector_expression] = STATE(2161), + [sym_index_expression] = STATE(2161), + [sym_slice_expression] = STATE(2161), + [sym_if_expression] = STATE(2160), + [sym_compile_time_if_expression] = STATE(2160), + [sym_is_expression] = STATE(2161), + [sym_in_expression] = STATE(2161), + [sym_enum_fetch] = STATE(2161), + [sym_match_expression] = STATE(2160), + [sym_select_expression] = STATE(2160), + [sym_lock_expression] = STATE(2160), + [sym_unsafe_expression] = STATE(2160), + [sym_sql_expression] = STATE(2160), + [sym_c_string_literal] = STATE(2166), + [sym_raw_string_literal] = STATE(2166), + [sym_interpreted_string_literal] = STATE(2166), + [sym_mutability_modifiers] = STATE(575), + [sym_plain_type] = STATE(4173), + [sym__plain_type_without_special] = STATE(2360), + [sym_anon_struct_type] = STATE(2362), + [sym_multi_return_type] = STATE(2360), + [sym_result_type] = STATE(2360), + [sym_option_type] = STATE(2360), + [sym_qualified_type] = STATE(3460), + [sym_fixed_array_type] = STATE(2362), + [sym_array_type] = STATE(2362), + [sym_pointer_type] = STATE(2362), + [sym_wrong_pointer_type] = STATE(2362), + [sym_map_type] = STATE(2362), + [sym_channel_type] = STATE(2362), + [sym_shared_type] = STATE(2362), + [sym_thread_type] = STATE(2362), + [sym_atomic_type] = STATE(2362), + [sym_generic_type] = STATE(2362), + [sym_function_type] = STATE(2362), + [sym_identifier] = ACTIONS(3292), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(3172), - [anon_sym_LBRACE] = ACTIONS(3174), - [anon_sym_LPAREN] = ACTIONS(3176), - [anon_sym_fn] = ACTIONS(3178), - [anon_sym_PLUS] = ACTIONS(3180), - [anon_sym_DASH] = ACTIONS(3180), - [anon_sym_STAR] = ACTIONS(3182), - [anon_sym_struct] = ACTIONS(3184), + [anon_sym_DOT] = ACTIONS(3294), + [anon_sym_LBRACE] = ACTIONS(3296), + [anon_sym_LPAREN] = ACTIONS(3298), + [anon_sym_fn] = ACTIONS(3300), + [anon_sym_PLUS] = ACTIONS(3302), + [anon_sym_DASH] = ACTIONS(3302), + [anon_sym_STAR] = ACTIONS(3304), + [anon_sym_struct] = ACTIONS(3306), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(3186), - [anon_sym_go] = ACTIONS(3188), - [anon_sym_spawn] = ACTIONS(3190), - [anon_sym_json_DOTdecode] = ACTIONS(3192), - [anon_sym_LBRACK2] = ACTIONS(3194), - [anon_sym_TILDE] = ACTIONS(3180), - [anon_sym_CARET] = ACTIONS(3180), - [anon_sym_AMP] = ACTIONS(3196), - [anon_sym_LT_DASH] = ACTIONS(3198), - [sym_none] = ACTIONS(3200), - [sym_true] = ACTIONS(3200), - [sym_false] = ACTIONS(3200), - [sym_nil] = ACTIONS(3200), - [anon_sym_if] = ACTIONS(3202), - [anon_sym_DOLLARif] = ACTIONS(3204), - [anon_sym_match] = ACTIONS(3206), - [anon_sym_select] = ACTIONS(3208), - [anon_sym_lock] = ACTIONS(3210), - [anon_sym_rlock] = ACTIONS(3210), - [anon_sym_unsafe] = ACTIONS(3212), - [anon_sym_sql] = ACTIONS(3214), - [sym_int_literal] = ACTIONS(3200), - [sym_float_literal] = ACTIONS(3216), - [sym_rune_literal] = ACTIONS(3216), - [sym_pseudo_compile_time_identifier] = ACTIONS(3218), + [anon_sym_BANG] = ACTIONS(3308), + [anon_sym_go] = ACTIONS(3310), + [anon_sym_spawn] = ACTIONS(3312), + [anon_sym_json_DOTdecode] = ACTIONS(3314), + [anon_sym_LBRACK2] = ACTIONS(3316), + [anon_sym_TILDE] = ACTIONS(3302), + [anon_sym_CARET] = ACTIONS(3302), + [anon_sym_AMP] = ACTIONS(3318), + [anon_sym_LT_DASH] = ACTIONS(3320), + [sym_none] = ACTIONS(3322), + [sym_true] = ACTIONS(3322), + [sym_false] = ACTIONS(3322), + [sym_nil] = ACTIONS(3322), + [anon_sym_if] = ACTIONS(3324), + [anon_sym_DOLLARif] = ACTIONS(3326), + [anon_sym_match] = ACTIONS(3328), + [anon_sym_select] = ACTIONS(3330), + [anon_sym_lock] = ACTIONS(3332), + [anon_sym_rlock] = ACTIONS(3332), + [anon_sym_unsafe] = ACTIONS(3334), + [anon_sym_sql] = ACTIONS(3336), + [sym_int_literal] = ACTIONS(3322), + [sym_float_literal] = ACTIONS(3338), + [sym_rune_literal] = ACTIONS(3338), + [sym_pseudo_compile_time_identifier] = ACTIONS(3340), [anon_sym_shared] = ACTIONS(83), [anon_sym_map_LBRACK] = ACTIONS(85), [anon_sym_chan] = ACTIONS(87), [anon_sym_thread] = ACTIONS(89), [anon_sym_atomic] = ACTIONS(91), - [sym___double_quote] = ACTIONS(3220), - [sym___single_quote] = ACTIONS(3222), - [sym___c_double_quote] = ACTIONS(3224), - [sym___c_single_quote] = ACTIONS(3226), - [sym___r_double_quote] = ACTIONS(3228), - [sym___r_single_quote] = ACTIONS(3230), + [sym___double_quote] = ACTIONS(3342), + [sym___single_quote] = ACTIONS(3344), + [sym___c_double_quote] = ACTIONS(3346), + [sym___c_single_quote] = ACTIONS(3348), + [sym___r_double_quote] = ACTIONS(3350), + [sym___r_single_quote] = ACTIONS(3352), }, [594] = { [sym_line_comment] = STATE(594), [sym_block_comment] = STATE(594), - [sym__expression] = STATE(1658), - [sym__expression_without_blocks] = STATE(1891), - [sym__expression_with_blocks] = STATE(1891), - [sym_inc_expression] = STATE(1893), - [sym_dec_expression] = STATE(1893), - [sym_or_block_expression] = STATE(1893), - [sym_option_propagation_expression] = STATE(1893), - [sym_result_propagation_expression] = STATE(1893), - [sym_anon_struct_value_expression] = STATE(1895), - [sym_go_expression] = STATE(1893), - [sym_spawn_expression] = STATE(1893), - [sym_parenthesized_expression] = STATE(1893), - [sym_call_expression] = STATE(1893), - [sym_type_initializer] = STATE(1895), - [sym_function_literal] = STATE(1893), - [sym_reference_expression] = STATE(1782), - [sym_type_reference_expression] = STATE(3541), - [sym_unary_expression] = STATE(1893), - [sym_receive_expression] = STATE(1893), - [sym_binary_expression] = STATE(1893), - [sym_as_type_cast_expression] = STATE(1893), - [sym__max_group] = STATE(1893), - [sym_literal] = STATE(1889), - [sym_map_init_expression] = STATE(1895), - [sym_array_creation] = STATE(1893), - [sym_fixed_array_creation] = STATE(1893), - [sym_selector_expression] = STATE(1893), - [sym_index_expression] = STATE(1893), - [sym_slice_expression] = STATE(1893), - [sym_if_expression] = STATE(1895), - [sym_compile_time_if_expression] = STATE(1895), - [sym_is_expression] = STATE(1893), - [sym_in_expression] = STATE(1893), - [sym_enum_fetch] = STATE(1893), - [sym_match_expression] = STATE(1895), - [sym_select_expression] = STATE(1895), - [sym_lock_expression] = STATE(1895), - [sym_unsafe_expression] = STATE(1895), - [sym_sql_expression] = STATE(1895), - [sym_c_string_literal] = STATE(1882), - [sym_raw_string_literal] = STATE(1882), - [sym_interpreted_string_literal] = STATE(1882), - [sym_mutability_modifiers] = STATE(561), - [sym_plain_type] = STATE(4316), - [sym__plain_type_without_special] = STATE(2302), - [sym_anon_struct_type] = STATE(2303), - [sym_multi_return_type] = STATE(2302), - [sym_result_type] = STATE(2302), - [sym_option_type] = STATE(2302), - [sym_qualified_type] = STATE(3541), - [sym_fixed_array_type] = STATE(2303), - [sym_array_type] = STATE(2303), - [sym_pointer_type] = STATE(2303), - [sym_wrong_pointer_type] = STATE(2303), - [sym_map_type] = STATE(2303), - [sym_channel_type] = STATE(2303), - [sym_shared_type] = STATE(2303), - [sym_thread_type] = STATE(2303), - [sym_atomic_type] = STATE(2303), - [sym_generic_type] = STATE(2303), - [sym_function_type] = STATE(2303), - [sym_identifier] = ACTIONS(3170), + [sym__expression] = STATE(226), + [sym__expression_without_blocks] = STATE(401), + [sym__expression_with_blocks] = STATE(401), + [sym_inc_expression] = STATE(399), + [sym_dec_expression] = STATE(399), + [sym_or_block_expression] = STATE(399), + [sym_option_propagation_expression] = STATE(399), + [sym_result_propagation_expression] = STATE(399), + [sym_anon_struct_value_expression] = STATE(395), + [sym_go_expression] = STATE(399), + [sym_spawn_expression] = STATE(399), + [sym_parenthesized_expression] = STATE(399), + [sym_call_expression] = STATE(399), + [sym_type_initializer] = STATE(395), + [sym_function_literal] = STATE(399), + [sym_reference_expression] = STATE(393), + [sym_type_reference_expression] = STATE(3460), + [sym_unary_expression] = STATE(399), + [sym_receive_expression] = STATE(399), + [sym_binary_expression] = STATE(399), + [sym_as_type_cast_expression] = STATE(399), + [sym__max_group] = STATE(399), + [sym_literal] = STATE(455), + [sym_map_init_expression] = STATE(395), + [sym_array_creation] = STATE(399), + [sym_fixed_array_creation] = STATE(399), + [sym_selector_expression] = STATE(399), + [sym_index_expression] = STATE(399), + [sym_slice_expression] = STATE(399), + [sym_if_expression] = STATE(395), + [sym_compile_time_if_expression] = STATE(395), + [sym_is_expression] = STATE(399), + [sym_in_expression] = STATE(399), + [sym_enum_fetch] = STATE(399), + [sym_match_expression] = STATE(395), + [sym_select_expression] = STATE(395), + [sym_lock_expression] = STATE(395), + [sym_unsafe_expression] = STATE(395), + [sym_sql_expression] = STATE(395), + [sym_c_string_literal] = STATE(479), + [sym_raw_string_literal] = STATE(479), + [sym_interpreted_string_literal] = STATE(479), + [sym_mutability_modifiers] = STATE(845), + [sym_plain_type] = STATE(4069), + [sym__plain_type_without_special] = STATE(2360), + [sym_anon_struct_type] = STATE(2362), + [sym_multi_return_type] = STATE(2360), + [sym_result_type] = STATE(2360), + [sym_option_type] = STATE(2360), + [sym_qualified_type] = STATE(3460), + [sym_fixed_array_type] = STATE(2362), + [sym_array_type] = STATE(2362), + [sym_pointer_type] = STATE(2362), + [sym_wrong_pointer_type] = STATE(2362), + [sym_map_type] = STATE(2362), + [sym_channel_type] = STATE(2362), + [sym_shared_type] = STATE(2362), + [sym_thread_type] = STATE(2362), + [sym_atomic_type] = STATE(2362), + [sym_generic_type] = STATE(2362), + [sym_function_type] = STATE(2362), + [sym_identifier] = ACTIONS(3184), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(3172), - [anon_sym_LBRACE] = ACTIONS(3174), - [anon_sym_LPAREN] = ACTIONS(3176), - [anon_sym_fn] = ACTIONS(3178), - [anon_sym_PLUS] = ACTIONS(3180), - [anon_sym_DASH] = ACTIONS(3180), - [anon_sym_STAR] = ACTIONS(3182), - [anon_sym_struct] = ACTIONS(3184), + [anon_sym_DOT] = ACTIONS(17), + [anon_sym_LBRACE] = ACTIONS(3186), + [anon_sym_LPAREN] = ACTIONS(23), + [anon_sym_fn] = ACTIONS(485), + [anon_sym_PLUS] = ACTIONS(31), + [anon_sym_DASH] = ACTIONS(31), + [anon_sym_STAR] = ACTIONS(33), + [anon_sym_struct] = ACTIONS(487), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(3186), - [anon_sym_go] = ACTIONS(3188), - [anon_sym_spawn] = ACTIONS(3190), - [anon_sym_json_DOTdecode] = ACTIONS(3192), - [anon_sym_LBRACK2] = ACTIONS(3194), - [anon_sym_TILDE] = ACTIONS(3180), - [anon_sym_CARET] = ACTIONS(3180), - [anon_sym_AMP] = ACTIONS(3196), - [anon_sym_LT_DASH] = ACTIONS(3198), - [sym_none] = ACTIONS(3200), - [sym_true] = ACTIONS(3200), - [sym_false] = ACTIONS(3200), - [sym_nil] = ACTIONS(3200), - [anon_sym_if] = ACTIONS(3202), - [anon_sym_DOLLARif] = ACTIONS(3204), - [anon_sym_match] = ACTIONS(3206), - [anon_sym_select] = ACTIONS(3208), - [anon_sym_lock] = ACTIONS(3210), - [anon_sym_rlock] = ACTIONS(3210), - [anon_sym_unsafe] = ACTIONS(3212), - [anon_sym_sql] = ACTIONS(3214), - [sym_int_literal] = ACTIONS(3200), - [sym_float_literal] = ACTIONS(3216), - [sym_rune_literal] = ACTIONS(3216), - [sym_pseudo_compile_time_identifier] = ACTIONS(3218), + [anon_sym_BANG] = ACTIONS(49), + [anon_sym_go] = ACTIONS(51), + [anon_sym_spawn] = ACTIONS(53), + [anon_sym_json_DOTdecode] = ACTIONS(55), + [anon_sym_LBRACK2] = ACTIONS(489), + [anon_sym_TILDE] = ACTIONS(31), + [anon_sym_CARET] = ACTIONS(31), + [anon_sym_AMP] = ACTIONS(59), + [anon_sym_LT_DASH] = ACTIONS(61), + [sym_none] = ACTIONS(63), + [sym_true] = ACTIONS(63), + [sym_false] = ACTIONS(63), + [sym_nil] = ACTIONS(63), + [anon_sym_if] = ACTIONS(65), + [anon_sym_DOLLARif] = ACTIONS(67), + [anon_sym_match] = ACTIONS(69), + [anon_sym_select] = ACTIONS(71), + [anon_sym_lock] = ACTIONS(73), + [anon_sym_rlock] = ACTIONS(73), + [anon_sym_unsafe] = ACTIONS(75), + [anon_sym_sql] = ACTIONS(77), + [sym_int_literal] = ACTIONS(63), + [sym_float_literal] = ACTIONS(79), + [sym_rune_literal] = ACTIONS(79), + [sym_pseudo_compile_time_identifier] = ACTIONS(81), [anon_sym_shared] = ACTIONS(83), [anon_sym_map_LBRACK] = ACTIONS(85), [anon_sym_chan] = ACTIONS(87), [anon_sym_thread] = ACTIONS(89), [anon_sym_atomic] = ACTIONS(91), - [sym___double_quote] = ACTIONS(3220), - [sym___single_quote] = ACTIONS(3222), - [sym___c_double_quote] = ACTIONS(3224), - [sym___c_single_quote] = ACTIONS(3226), - [sym___r_double_quote] = ACTIONS(3228), - [sym___r_single_quote] = ACTIONS(3230), + [sym___double_quote] = ACTIONS(115), + [sym___single_quote] = ACTIONS(117), + [sym___c_double_quote] = ACTIONS(119), + [sym___c_single_quote] = ACTIONS(121), + [sym___r_double_quote] = ACTIONS(123), + [sym___r_single_quote] = ACTIONS(125), }, [595] = { [sym_line_comment] = STATE(595), [sym_block_comment] = STATE(595), - [sym__expression] = STATE(2445), - [sym__expression_without_blocks] = STATE(2625), - [sym__expression_with_blocks] = STATE(2625), - [sym_inc_expression] = STATE(2765), - [sym_dec_expression] = STATE(2765), - [sym_or_block_expression] = STATE(2765), - [sym_option_propagation_expression] = STATE(2765), - [sym_result_propagation_expression] = STATE(2765), - [sym_anon_struct_value_expression] = STATE(2619), - [sym_go_expression] = STATE(2765), - [sym_spawn_expression] = STATE(2765), - [sym_parenthesized_expression] = STATE(2765), - [sym_call_expression] = STATE(2765), - [sym_type_initializer] = STATE(2619), - [sym_function_literal] = STATE(2765), - [sym_reference_expression] = STATE(2764), - [sym_type_reference_expression] = STATE(3541), - [sym_unary_expression] = STATE(2765), - [sym_receive_expression] = STATE(2765), - [sym_binary_expression] = STATE(2765), - [sym_as_type_cast_expression] = STATE(2765), - [sym__max_group] = STATE(2765), - [sym_literal] = STATE(2769), - [sym_map_init_expression] = STATE(2619), - [sym_array_creation] = STATE(2765), - [sym_fixed_array_creation] = STATE(2765), - [sym_selector_expression] = STATE(2765), - [sym_index_expression] = STATE(2765), - [sym_slice_expression] = STATE(2765), - [sym_if_expression] = STATE(2619), - [sym_compile_time_if_expression] = STATE(2619), - [sym_is_expression] = STATE(2765), - [sym_in_expression] = STATE(2765), - [sym_enum_fetch] = STATE(2765), - [sym_match_expression] = STATE(2619), - [sym_select_expression] = STATE(2619), - [sym_lock_expression] = STATE(2619), - [sym_unsafe_expression] = STATE(2619), - [sym_sql_expression] = STATE(2619), - [sym_c_string_literal] = STATE(2660), - [sym_raw_string_literal] = STATE(2660), - [sym_interpreted_string_literal] = STATE(2660), - [sym_mutability_modifiers] = STATE(567), - [sym_plain_type] = STATE(4008), - [sym__plain_type_without_special] = STATE(2302), - [sym_anon_struct_type] = STATE(2303), - [sym_multi_return_type] = STATE(2302), - [sym_result_type] = STATE(2302), - [sym_option_type] = STATE(2302), - [sym_qualified_type] = STATE(3541), - [sym_fixed_array_type] = STATE(2303), - [sym_array_type] = STATE(2303), - [sym_pointer_type] = STATE(2303), - [sym_wrong_pointer_type] = STATE(2303), - [sym_map_type] = STATE(2303), - [sym_channel_type] = STATE(2303), - [sym_shared_type] = STATE(2303), - [sym_thread_type] = STATE(2303), - [sym_atomic_type] = STATE(2303), - [sym_generic_type] = STATE(2303), - [sym_function_type] = STATE(2303), - [sym_identifier] = ACTIONS(1807), + [sym__expression] = STATE(1112), + [sym__expression_without_blocks] = STATE(1210), + [sym__expression_with_blocks] = STATE(1210), + [sym_inc_expression] = STATE(1211), + [sym_dec_expression] = STATE(1211), + [sym_or_block_expression] = STATE(1211), + [sym_option_propagation_expression] = STATE(1211), + [sym_result_propagation_expression] = STATE(1211), + [sym_anon_struct_value_expression] = STATE(1212), + [sym_go_expression] = STATE(1211), + [sym_spawn_expression] = STATE(1211), + [sym_parenthesized_expression] = STATE(1211), + [sym_call_expression] = STATE(1211), + [sym_type_initializer] = STATE(1212), + [sym_function_literal] = STATE(1211), + [sym_reference_expression] = STATE(1233), + [sym_type_reference_expression] = STATE(3460), + [sym_unary_expression] = STATE(1211), + [sym_receive_expression] = STATE(1211), + [sym_binary_expression] = STATE(1211), + [sym_as_type_cast_expression] = STATE(1211), + [sym__max_group] = STATE(1211), + [sym_literal] = STATE(1209), + [sym_map_init_expression] = STATE(1212), + [sym_array_creation] = STATE(1211), + [sym_fixed_array_creation] = STATE(1211), + [sym_selector_expression] = STATE(1211), + [sym_index_expression] = STATE(1211), + [sym_slice_expression] = STATE(1211), + [sym_if_expression] = STATE(1212), + [sym_compile_time_if_expression] = STATE(1212), + [sym_is_expression] = STATE(1211), + [sym_in_expression] = STATE(1211), + [sym_enum_fetch] = STATE(1211), + [sym_match_expression] = STATE(1212), + [sym_select_expression] = STATE(1212), + [sym_lock_expression] = STATE(1212), + [sym_unsafe_expression] = STATE(1212), + [sym_sql_expression] = STATE(1212), + [sym_c_string_literal] = STATE(1201), + [sym_raw_string_literal] = STATE(1201), + [sym_interpreted_string_literal] = STATE(1201), + [sym_mutability_modifiers] = STATE(589), + [sym_plain_type] = STATE(4123), + [sym__plain_type_without_special] = STATE(2360), + [sym_anon_struct_type] = STATE(2362), + [sym_multi_return_type] = STATE(2360), + [sym_result_type] = STATE(2360), + [sym_option_type] = STATE(2360), + [sym_qualified_type] = STATE(3460), + [sym_fixed_array_type] = STATE(2362), + [sym_array_type] = STATE(2362), + [sym_pointer_type] = STATE(2362), + [sym_wrong_pointer_type] = STATE(2362), + [sym_map_type] = STATE(2362), + [sym_channel_type] = STATE(2362), + [sym_shared_type] = STATE(2362), + [sym_thread_type] = STATE(2362), + [sym_atomic_type] = STATE(2362), + [sym_generic_type] = STATE(2362), + [sym_function_type] = STATE(2362), + [sym_identifier] = ACTIONS(1139), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1081), - [anon_sym_LBRACE] = ACTIONS(1083), - [anon_sym_LPAREN] = ACTIONS(1087), - [anon_sym_fn] = ACTIONS(1089), - [anon_sym_PLUS] = ACTIONS(1091), - [anon_sym_DASH] = ACTIONS(1091), - [anon_sym_STAR] = ACTIONS(3348), - [anon_sym_struct] = ACTIONS(1095), + [anon_sym_DOT] = ACTIONS(631), + [anon_sym_LBRACE] = ACTIONS(633), + [anon_sym_LPAREN] = ACTIONS(637), + [anon_sym_fn] = ACTIONS(641), + [anon_sym_PLUS] = ACTIONS(643), + [anon_sym_DASH] = ACTIONS(643), + [anon_sym_STAR] = ACTIONS(645), + [anon_sym_struct] = ACTIONS(649), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(3350), - [anon_sym_go] = ACTIONS(1099), - [anon_sym_spawn] = ACTIONS(1101), - [anon_sym_json_DOTdecode] = ACTIONS(1103), - [anon_sym_LBRACK2] = ACTIONS(1105), - [anon_sym_TILDE] = ACTIONS(1091), - [anon_sym_CARET] = ACTIONS(1091), - [anon_sym_AMP] = ACTIONS(3352), - [anon_sym_LT_DASH] = ACTIONS(1109), - [sym_none] = ACTIONS(1111), - [sym_true] = ACTIONS(1111), - [sym_false] = ACTIONS(1111), - [sym_nil] = ACTIONS(1111), - [anon_sym_if] = ACTIONS(1113), - [anon_sym_DOLLARif] = ACTIONS(1117), - [anon_sym_match] = ACTIONS(1119), - [anon_sym_select] = ACTIONS(3104), - [anon_sym_lock] = ACTIONS(3106), - [anon_sym_rlock] = ACTIONS(3106), - [anon_sym_unsafe] = ACTIONS(1125), - [anon_sym_sql] = ACTIONS(1127), - [sym_int_literal] = ACTIONS(1111), - [sym_float_literal] = ACTIONS(1129), - [sym_rune_literal] = ACTIONS(1129), - [sym_pseudo_compile_time_identifier] = ACTIONS(1131), + [anon_sym_BANG] = ACTIONS(655), + [anon_sym_go] = ACTIONS(657), + [anon_sym_spawn] = ACTIONS(659), + [anon_sym_json_DOTdecode] = ACTIONS(661), + [anon_sym_LBRACK2] = ACTIONS(663), + [anon_sym_TILDE] = ACTIONS(643), + [anon_sym_CARET] = ACTIONS(643), + [anon_sym_AMP] = ACTIONS(665), + [anon_sym_LT_DASH] = ACTIONS(667), + [sym_none] = ACTIONS(669), + [sym_true] = ACTIONS(669), + [sym_false] = ACTIONS(669), + [sym_nil] = ACTIONS(669), + [anon_sym_if] = ACTIONS(671), + [anon_sym_DOLLARif] = ACTIONS(673), + [anon_sym_match] = ACTIONS(675), + [anon_sym_select] = ACTIONS(677), + [anon_sym_lock] = ACTIONS(679), + [anon_sym_rlock] = ACTIONS(679), + [anon_sym_unsafe] = ACTIONS(681), + [anon_sym_sql] = ACTIONS(683), + [sym_int_literal] = ACTIONS(669), + [sym_float_literal] = ACTIONS(685), + [sym_rune_literal] = ACTIONS(685), + [sym_pseudo_compile_time_identifier] = ACTIONS(687), [anon_sym_shared] = ACTIONS(83), [anon_sym_map_LBRACK] = ACTIONS(85), [anon_sym_chan] = ACTIONS(87), [anon_sym_thread] = ACTIONS(89), [anon_sym_atomic] = ACTIONS(91), - [sym___double_quote] = ACTIONS(1133), - [sym___single_quote] = ACTIONS(1135), - [sym___c_double_quote] = ACTIONS(1137), - [sym___c_single_quote] = ACTIONS(1139), - [sym___r_double_quote] = ACTIONS(1141), - [sym___r_single_quote] = ACTIONS(1143), + [sym___double_quote] = ACTIONS(689), + [sym___single_quote] = ACTIONS(691), + [sym___c_double_quote] = ACTIONS(693), + [sym___c_single_quote] = ACTIONS(695), + [sym___r_double_quote] = ACTIONS(697), + [sym___r_single_quote] = ACTIONS(699), }, [596] = { [sym_line_comment] = STATE(596), [sym_block_comment] = STATE(596), - [sym__expression] = STATE(1273), - [sym__expression_without_blocks] = STATE(1312), - [sym__expression_with_blocks] = STATE(1312), - [sym_inc_expression] = STATE(1313), - [sym_dec_expression] = STATE(1313), - [sym_or_block_expression] = STATE(1313), - [sym_option_propagation_expression] = STATE(1313), - [sym_result_propagation_expression] = STATE(1313), - [sym_anon_struct_value_expression] = STATE(1314), - [sym_go_expression] = STATE(1313), - [sym_spawn_expression] = STATE(1313), - [sym_parenthesized_expression] = STATE(1313), - [sym_call_expression] = STATE(1313), - [sym_type_initializer] = STATE(1314), - [sym_function_literal] = STATE(1313), - [sym_reference_expression] = STATE(1334), - [sym_type_reference_expression] = STATE(3541), - [sym_unary_expression] = STATE(1313), - [sym_receive_expression] = STATE(1313), - [sym_binary_expression] = STATE(1313), - [sym_as_type_cast_expression] = STATE(1313), - [sym__max_group] = STATE(1313), - [sym_literal] = STATE(1308), - [sym_map_init_expression] = STATE(1314), - [sym_array_creation] = STATE(1313), - [sym_fixed_array_creation] = STATE(1313), - [sym_selector_expression] = STATE(1313), - [sym_index_expression] = STATE(1313), - [sym_slice_expression] = STATE(1313), - [sym_if_expression] = STATE(1314), - [sym_compile_time_if_expression] = STATE(1314), - [sym_is_expression] = STATE(1313), - [sym_in_expression] = STATE(1313), - [sym_enum_fetch] = STATE(1313), - [sym_match_expression] = STATE(1314), - [sym_select_expression] = STATE(1314), - [sym_lock_expression] = STATE(1314), - [sym_unsafe_expression] = STATE(1314), - [sym_sql_expression] = STATE(1314), - [sym_c_string_literal] = STATE(1286), - [sym_raw_string_literal] = STATE(1286), - [sym_interpreted_string_literal] = STATE(1286), - [sym_mutability_modifiers] = STATE(699), - [sym_plain_type] = STATE(4192), - [sym__plain_type_without_special] = STATE(2302), - [sym_anon_struct_type] = STATE(2303), - [sym_multi_return_type] = STATE(2302), - [sym_result_type] = STATE(2302), - [sym_option_type] = STATE(2302), - [sym_qualified_type] = STATE(3541), - [sym_fixed_array_type] = STATE(2303), - [sym_array_type] = STATE(2303), - [sym_pointer_type] = STATE(2303), - [sym_wrong_pointer_type] = STATE(2303), - [sym_map_type] = STATE(2303), - [sym_channel_type] = STATE(2303), - [sym_shared_type] = STATE(2303), - [sym_thread_type] = STATE(2303), - [sym_atomic_type] = STATE(2303), - [sym_generic_type] = STATE(2303), - [sym_function_type] = STATE(2303), - [sym_identifier] = ACTIONS(1354), + [sym__expression] = STATE(2581), + [sym__expression_without_blocks] = STATE(2347), + [sym__expression_with_blocks] = STATE(2347), + [sym_inc_expression] = STATE(2379), + [sym_dec_expression] = STATE(2379), + [sym_or_block_expression] = STATE(2379), + [sym_option_propagation_expression] = STATE(2379), + [sym_result_propagation_expression] = STATE(2379), + [sym_anon_struct_value_expression] = STATE(2378), + [sym_go_expression] = STATE(2379), + [sym_spawn_expression] = STATE(2379), + [sym_parenthesized_expression] = STATE(2379), + [sym_call_expression] = STATE(2379), + [sym_type_initializer] = STATE(2378), + [sym_function_literal] = STATE(2379), + [sym_reference_expression] = STATE(2377), + [sym_type_reference_expression] = STATE(3460), + [sym_unary_expression] = STATE(2379), + [sym_receive_expression] = STATE(2379), + [sym_binary_expression] = STATE(2379), + [sym_as_type_cast_expression] = STATE(2379), + [sym__max_group] = STATE(2379), + [sym_literal] = STATE(2392), + [sym_map_init_expression] = STATE(2378), + [sym_array_creation] = STATE(2379), + [sym_fixed_array_creation] = STATE(2379), + [sym_selector_expression] = STATE(2379), + [sym_index_expression] = STATE(2379), + [sym_slice_expression] = STATE(2379), + [sym_if_expression] = STATE(2378), + [sym_compile_time_if_expression] = STATE(2378), + [sym_is_expression] = STATE(2379), + [sym_in_expression] = STATE(2379), + [sym_enum_fetch] = STATE(2379), + [sym_match_expression] = STATE(2378), + [sym_select_expression] = STATE(2378), + [sym_lock_expression] = STATE(2378), + [sym_unsafe_expression] = STATE(2378), + [sym_sql_expression] = STATE(2378), + [sym_c_string_literal] = STATE(2401), + [sym_raw_string_literal] = STATE(2401), + [sym_interpreted_string_literal] = STATE(2401), + [sym_mutability_modifiers] = STATE(939), + [sym_plain_type] = STATE(4160), + [sym__plain_type_without_special] = STATE(2360), + [sym_anon_struct_type] = STATE(2362), + [sym_multi_return_type] = STATE(2360), + [sym_result_type] = STATE(2360), + [sym_option_type] = STATE(2360), + [sym_qualified_type] = STATE(3460), + [sym_fixed_array_type] = STATE(2362), + [sym_array_type] = STATE(2362), + [sym_pointer_type] = STATE(2362), + [sym_wrong_pointer_type] = STATE(2362), + [sym_map_type] = STATE(2362), + [sym_channel_type] = STATE(2362), + [sym_shared_type] = STATE(2362), + [sym_thread_type] = STATE(2362), + [sym_atomic_type] = STATE(2362), + [sym_generic_type] = STATE(2362), + [sym_function_type] = STATE(2362), + [sym_identifier] = ACTIONS(1815), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1356), - [anon_sym_LBRACE] = ACTIONS(1358), - [anon_sym_LPAREN] = ACTIONS(1360), - [anon_sym_fn] = ACTIONS(1362), - [anon_sym_PLUS] = ACTIONS(1364), - [anon_sym_DASH] = ACTIONS(1364), - [anon_sym_STAR] = ACTIONS(1366), - [anon_sym_struct] = ACTIONS(1370), + [anon_sym_DOT] = ACTIONS(1430), + [anon_sym_LBRACE] = ACTIONS(1432), + [anon_sym_LPAREN] = ACTIONS(1434), + [anon_sym_fn] = ACTIONS(1436), + [anon_sym_PLUS] = ACTIONS(3090), + [anon_sym_DASH] = ACTIONS(3090), + [anon_sym_STAR] = ACTIONS(3092), + [anon_sym_struct] = ACTIONS(1442), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(1372), - [anon_sym_go] = ACTIONS(1374), - [anon_sym_spawn] = ACTIONS(1376), - [anon_sym_json_DOTdecode] = ACTIONS(1378), - [anon_sym_LBRACK2] = ACTIONS(1380), - [anon_sym_TILDE] = ACTIONS(1364), - [anon_sym_CARET] = ACTIONS(1364), - [anon_sym_AMP] = ACTIONS(1382), - [anon_sym_LT_DASH] = ACTIONS(1384), - [sym_none] = ACTIONS(1386), - [sym_true] = ACTIONS(1386), - [sym_false] = ACTIONS(1386), - [sym_nil] = ACTIONS(1386), - [anon_sym_if] = ACTIONS(1877), - [anon_sym_DOLLARif] = ACTIONS(1390), - [anon_sym_match] = ACTIONS(1392), - [anon_sym_select] = ACTIONS(1394), - [anon_sym_lock] = ACTIONS(1396), - [anon_sym_rlock] = ACTIONS(1396), - [anon_sym_unsafe] = ACTIONS(1883), - [anon_sym_sql] = ACTIONS(1400), - [sym_int_literal] = ACTIONS(1386), - [sym_float_literal] = ACTIONS(1404), - [sym_rune_literal] = ACTIONS(1404), - [sym_pseudo_compile_time_identifier] = ACTIONS(1406), + [anon_sym_BANG] = ACTIONS(3094), + [anon_sym_go] = ACTIONS(3096), + [anon_sym_spawn] = ACTIONS(3098), + [anon_sym_json_DOTdecode] = ACTIONS(1450), + [anon_sym_LBRACK2] = ACTIONS(1827), + [anon_sym_TILDE] = ACTIONS(3090), + [anon_sym_CARET] = ACTIONS(3090), + [anon_sym_AMP] = ACTIONS(3100), + [anon_sym_LT_DASH] = ACTIONS(3102), + [sym_none] = ACTIONS(1458), + [sym_true] = ACTIONS(1458), + [sym_false] = ACTIONS(1458), + [sym_nil] = ACTIONS(1458), + [anon_sym_if] = ACTIONS(1833), + [anon_sym_DOLLARif] = ACTIONS(1462), + [anon_sym_match] = ACTIONS(1464), + [anon_sym_select] = ACTIONS(3104), + [anon_sym_lock] = ACTIONS(3106), + [anon_sym_rlock] = ACTIONS(3106), + [anon_sym_unsafe] = ACTIONS(1839), + [anon_sym_sql] = ACTIONS(1472), + [sym_int_literal] = ACTIONS(1458), + [sym_float_literal] = ACTIONS(1474), + [sym_rune_literal] = ACTIONS(1474), + [sym_pseudo_compile_time_identifier] = ACTIONS(1476), [anon_sym_shared] = ACTIONS(83), [anon_sym_map_LBRACK] = ACTIONS(85), [anon_sym_chan] = ACTIONS(87), [anon_sym_thread] = ACTIONS(89), [anon_sym_atomic] = ACTIONS(91), - [sym___double_quote] = ACTIONS(1408), - [sym___single_quote] = ACTIONS(1410), - [sym___c_double_quote] = ACTIONS(1412), - [sym___c_single_quote] = ACTIONS(1414), - [sym___r_double_quote] = ACTIONS(1416), - [sym___r_single_quote] = ACTIONS(1418), + [sym___double_quote] = ACTIONS(1480), + [sym___single_quote] = ACTIONS(1482), + [sym___c_double_quote] = ACTIONS(1484), + [sym___c_single_quote] = ACTIONS(1486), + [sym___r_double_quote] = ACTIONS(1488), + [sym___r_single_quote] = ACTIONS(1490), }, [597] = { [sym_line_comment] = STATE(597), [sym_block_comment] = STATE(597), - [sym__expression] = STATE(1257), - [sym__expression_without_blocks] = STATE(1312), - [sym__expression_with_blocks] = STATE(1312), - [sym_inc_expression] = STATE(1313), - [sym_dec_expression] = STATE(1313), - [sym_or_block_expression] = STATE(1313), - [sym_option_propagation_expression] = STATE(1313), - [sym_result_propagation_expression] = STATE(1313), - [sym_anon_struct_value_expression] = STATE(1314), - [sym_go_expression] = STATE(1313), - [sym_spawn_expression] = STATE(1313), - [sym_parenthesized_expression] = STATE(1313), - [sym_call_expression] = STATE(1313), - [sym_type_initializer] = STATE(1314), - [sym_function_literal] = STATE(1313), - [sym_reference_expression] = STATE(1334), - [sym_type_reference_expression] = STATE(3541), - [sym_unary_expression] = STATE(1313), - [sym_receive_expression] = STATE(1313), - [sym_binary_expression] = STATE(1313), - [sym_as_type_cast_expression] = STATE(1313), - [sym__max_group] = STATE(1313), - [sym_literal] = STATE(1308), - [sym_map_init_expression] = STATE(1314), - [sym_array_creation] = STATE(1313), - [sym_fixed_array_creation] = STATE(1313), - [sym_selector_expression] = STATE(1313), - [sym_index_expression] = STATE(1313), - [sym_slice_expression] = STATE(1313), - [sym_if_expression] = STATE(1314), - [sym_compile_time_if_expression] = STATE(1314), - [sym_is_expression] = STATE(1313), - [sym_in_expression] = STATE(1313), - [sym_enum_fetch] = STATE(1313), - [sym_match_expression] = STATE(1314), - [sym_select_expression] = STATE(1314), - [sym_lock_expression] = STATE(1314), - [sym_unsafe_expression] = STATE(1314), - [sym_sql_expression] = STATE(1314), - [sym_c_string_literal] = STATE(1286), - [sym_raw_string_literal] = STATE(1286), - [sym_interpreted_string_literal] = STATE(1286), - [sym_mutability_modifiers] = STATE(699), - [sym_plain_type] = STATE(4192), - [sym__plain_type_without_special] = STATE(2302), - [sym_anon_struct_type] = STATE(2303), - [sym_multi_return_type] = STATE(2302), - [sym_result_type] = STATE(2302), - [sym_option_type] = STATE(2302), - [sym_qualified_type] = STATE(3541), - [sym_fixed_array_type] = STATE(2303), - [sym_array_type] = STATE(2303), - [sym_pointer_type] = STATE(2303), - [sym_wrong_pointer_type] = STATE(2303), - [sym_map_type] = STATE(2303), - [sym_channel_type] = STATE(2303), - [sym_shared_type] = STATE(2303), - [sym_thread_type] = STATE(2303), - [sym_atomic_type] = STATE(2303), - [sym_generic_type] = STATE(2303), - [sym_function_type] = STATE(2303), - [sym_identifier] = ACTIONS(1354), + [sym__expression] = STATE(2267), + [sym__expression_without_blocks] = STATE(2347), + [sym__expression_with_blocks] = STATE(2347), + [sym_inc_expression] = STATE(2379), + [sym_dec_expression] = STATE(2379), + [sym_or_block_expression] = STATE(2379), + [sym_option_propagation_expression] = STATE(2379), + [sym_result_propagation_expression] = STATE(2379), + [sym_anon_struct_value_expression] = STATE(2378), + [sym_go_expression] = STATE(2379), + [sym_spawn_expression] = STATE(2379), + [sym_parenthesized_expression] = STATE(2379), + [sym_call_expression] = STATE(2379), + [sym_type_initializer] = STATE(2378), + [sym_function_literal] = STATE(2379), + [sym_reference_expression] = STATE(2377), + [sym_type_reference_expression] = STATE(3460), + [sym_unary_expression] = STATE(2379), + [sym_receive_expression] = STATE(2379), + [sym_binary_expression] = STATE(2379), + [sym_as_type_cast_expression] = STATE(2379), + [sym__max_group] = STATE(2379), + [sym_literal] = STATE(2392), + [sym_map_init_expression] = STATE(2378), + [sym_array_creation] = STATE(2379), + [sym_fixed_array_creation] = STATE(2379), + [sym_selector_expression] = STATE(2379), + [sym_index_expression] = STATE(2379), + [sym_slice_expression] = STATE(2379), + [sym_if_expression] = STATE(2378), + [sym_compile_time_if_expression] = STATE(2378), + [sym_is_expression] = STATE(2379), + [sym_in_expression] = STATE(2379), + [sym_enum_fetch] = STATE(2379), + [sym_match_expression] = STATE(2378), + [sym_select_expression] = STATE(2378), + [sym_lock_expression] = STATE(2378), + [sym_unsafe_expression] = STATE(2378), + [sym_sql_expression] = STATE(2378), + [sym_c_string_literal] = STATE(2401), + [sym_raw_string_literal] = STATE(2401), + [sym_interpreted_string_literal] = STATE(2401), + [sym_mutability_modifiers] = STATE(939), + [sym_plain_type] = STATE(3559), + [sym__plain_type_without_special] = STATE(2360), + [sym_anon_struct_type] = STATE(2362), + [sym_multi_return_type] = STATE(2360), + [sym_result_type] = STATE(2360), + [sym_option_type] = STATE(2360), + [sym_qualified_type] = STATE(3460), + [sym_fixed_array_type] = STATE(2362), + [sym_array_type] = STATE(2362), + [sym_pointer_type] = STATE(2362), + [sym_wrong_pointer_type] = STATE(2362), + [sym_map_type] = STATE(2362), + [sym_channel_type] = STATE(2362), + [sym_shared_type] = STATE(2362), + [sym_thread_type] = STATE(2362), + [sym_atomic_type] = STATE(2362), + [sym_generic_type] = STATE(2362), + [sym_function_type] = STATE(2362), + [sym_identifier] = ACTIONS(2477), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1356), - [anon_sym_LBRACE] = ACTIONS(1358), - [anon_sym_LPAREN] = ACTIONS(1360), - [anon_sym_fn] = ACTIONS(1362), - [anon_sym_PLUS] = ACTIONS(1364), - [anon_sym_DASH] = ACTIONS(1364), - [anon_sym_STAR] = ACTIONS(1366), - [anon_sym_struct] = ACTIONS(1370), + [anon_sym_DOT] = ACTIONS(1430), + [anon_sym_LBRACE] = ACTIONS(1432), + [anon_sym_LPAREN] = ACTIONS(1434), + [anon_sym_fn] = ACTIONS(1436), + [anon_sym_PLUS] = ACTIONS(2271), + [anon_sym_DASH] = ACTIONS(2271), + [anon_sym_STAR] = ACTIONS(3354), + [anon_sym_struct] = ACTIONS(1442), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(1372), - [anon_sym_go] = ACTIONS(1374), - [anon_sym_spawn] = ACTIONS(1376), - [anon_sym_json_DOTdecode] = ACTIONS(1378), - [anon_sym_LBRACK2] = ACTIONS(1380), - [anon_sym_TILDE] = ACTIONS(1364), - [anon_sym_CARET] = ACTIONS(1364), - [anon_sym_AMP] = ACTIONS(1382), - [anon_sym_LT_DASH] = ACTIONS(1384), - [sym_none] = ACTIONS(1386), - [sym_true] = ACTIONS(1386), - [sym_false] = ACTIONS(1386), - [sym_nil] = ACTIONS(1386), - [anon_sym_if] = ACTIONS(1877), - [anon_sym_DOLLARif] = ACTIONS(1390), - [anon_sym_match] = ACTIONS(1392), - [anon_sym_select] = ACTIONS(1394), - [anon_sym_lock] = ACTIONS(1396), - [anon_sym_rlock] = ACTIONS(1396), - [anon_sym_unsafe] = ACTIONS(1883), - [anon_sym_sql] = ACTIONS(1400), - [sym_int_literal] = ACTIONS(1386), - [sym_float_literal] = ACTIONS(1404), - [sym_rune_literal] = ACTIONS(1404), - [sym_pseudo_compile_time_identifier] = ACTIONS(1406), + [anon_sym_BANG] = ACTIONS(3356), + [anon_sym_go] = ACTIONS(2277), + [anon_sym_spawn] = ACTIONS(2279), + [anon_sym_json_DOTdecode] = ACTIONS(1450), + [anon_sym_LBRACK2] = ACTIONS(1452), + [anon_sym_TILDE] = ACTIONS(2271), + [anon_sym_CARET] = ACTIONS(2271), + [anon_sym_AMP] = ACTIONS(3358), + [anon_sym_LT_DASH] = ACTIONS(2283), + [sym_none] = ACTIONS(1458), + [sym_true] = ACTIONS(1458), + [sym_false] = ACTIONS(1458), + [sym_nil] = ACTIONS(1458), + [anon_sym_if] = ACTIONS(1833), + [anon_sym_DOLLARif] = ACTIONS(1462), + [anon_sym_match] = ACTIONS(1464), + [anon_sym_select] = ACTIONS(1466), + [anon_sym_lock] = ACTIONS(1468), + [anon_sym_rlock] = ACTIONS(1468), + [anon_sym_unsafe] = ACTIONS(1839), + [anon_sym_sql] = ACTIONS(1472), + [sym_int_literal] = ACTIONS(1458), + [sym_float_literal] = ACTIONS(1474), + [sym_rune_literal] = ACTIONS(1474), + [sym_pseudo_compile_time_identifier] = ACTIONS(1476), [anon_sym_shared] = ACTIONS(83), [anon_sym_map_LBRACK] = ACTIONS(85), [anon_sym_chan] = ACTIONS(87), [anon_sym_thread] = ACTIONS(89), [anon_sym_atomic] = ACTIONS(91), - [sym___double_quote] = ACTIONS(1408), - [sym___single_quote] = ACTIONS(1410), - [sym___c_double_quote] = ACTIONS(1412), - [sym___c_single_quote] = ACTIONS(1414), - [sym___r_double_quote] = ACTIONS(1416), - [sym___r_single_quote] = ACTIONS(1418), + [sym___double_quote] = ACTIONS(1480), + [sym___single_quote] = ACTIONS(1482), + [sym___c_double_quote] = ACTIONS(1484), + [sym___c_single_quote] = ACTIONS(1486), + [sym___r_double_quote] = ACTIONS(1488), + [sym___r_single_quote] = ACTIONS(1490), }, [598] = { [sym_line_comment] = STATE(598), [sym_block_comment] = STATE(598), - [sym__expression] = STATE(217), - [sym__expression_without_blocks] = STATE(442), - [sym__expression_with_blocks] = STATE(442), - [sym_inc_expression] = STATE(439), - [sym_dec_expression] = STATE(439), - [sym_or_block_expression] = STATE(439), - [sym_option_propagation_expression] = STATE(439), - [sym_result_propagation_expression] = STATE(439), - [sym_anon_struct_value_expression] = STATE(438), - [sym_go_expression] = STATE(439), - [sym_spawn_expression] = STATE(439), - [sym_parenthesized_expression] = STATE(439), - [sym_call_expression] = STATE(439), - [sym_type_initializer] = STATE(438), - [sym_function_literal] = STATE(439), - [sym_reference_expression] = STATE(437), - [sym_type_reference_expression] = STATE(3541), - [sym_unary_expression] = STATE(439), - [sym_receive_expression] = STATE(439), - [sym_binary_expression] = STATE(439), - [sym_as_type_cast_expression] = STATE(439), - [sym__max_group] = STATE(439), - [sym_literal] = STATE(495), - [sym_map_init_expression] = STATE(438), - [sym_array_creation] = STATE(439), - [sym_fixed_array_creation] = STATE(439), - [sym_selector_expression] = STATE(439), - [sym_index_expression] = STATE(439), - [sym_slice_expression] = STATE(439), - [sym_if_expression] = STATE(438), - [sym_compile_time_if_expression] = STATE(438), - [sym_is_expression] = STATE(439), - [sym_in_expression] = STATE(439), - [sym_enum_fetch] = STATE(439), - [sym_match_expression] = STATE(438), - [sym_select_expression] = STATE(438), - [sym_lock_expression] = STATE(438), - [sym_unsafe_expression] = STATE(438), - [sym_sql_expression] = STATE(438), - [sym_c_string_literal] = STATE(496), - [sym_raw_string_literal] = STATE(496), - [sym_interpreted_string_literal] = STATE(496), - [sym_mutability_modifiers] = STATE(862), - [sym_plain_type] = STATE(4117), - [sym__plain_type_without_special] = STATE(2302), - [sym_anon_struct_type] = STATE(2303), - [sym_multi_return_type] = STATE(2302), - [sym_result_type] = STATE(2302), - [sym_option_type] = STATE(2302), - [sym_qualified_type] = STATE(3541), - [sym_fixed_array_type] = STATE(2303), - [sym_array_type] = STATE(2303), - [sym_pointer_type] = STATE(2303), - [sym_wrong_pointer_type] = STATE(2303), - [sym_map_type] = STATE(2303), - [sym_channel_type] = STATE(2303), - [sym_shared_type] = STATE(2303), - [sym_thread_type] = STATE(2303), - [sym_atomic_type] = STATE(2303), - [sym_generic_type] = STATE(2303), - [sym_function_type] = STATE(2303), - [sym_identifier] = ACTIONS(3096), + [sym__expression] = STATE(1107), + [sym__expression_without_blocks] = STATE(1210), + [sym__expression_with_blocks] = STATE(1210), + [sym_inc_expression] = STATE(1211), + [sym_dec_expression] = STATE(1211), + [sym_or_block_expression] = STATE(1211), + [sym_option_propagation_expression] = STATE(1211), + [sym_result_propagation_expression] = STATE(1211), + [sym_anon_struct_value_expression] = STATE(1212), + [sym_go_expression] = STATE(1211), + [sym_spawn_expression] = STATE(1211), + [sym_parenthesized_expression] = STATE(1211), + [sym_call_expression] = STATE(1211), + [sym_type_initializer] = STATE(1212), + [sym_function_literal] = STATE(1211), + [sym_reference_expression] = STATE(1233), + [sym_type_reference_expression] = STATE(3460), + [sym_unary_expression] = STATE(1211), + [sym_receive_expression] = STATE(1211), + [sym_binary_expression] = STATE(1211), + [sym_as_type_cast_expression] = STATE(1211), + [sym__max_group] = STATE(1211), + [sym_literal] = STATE(1209), + [sym_map_init_expression] = STATE(1212), + [sym_array_creation] = STATE(1211), + [sym_fixed_array_creation] = STATE(1211), + [sym_selector_expression] = STATE(1211), + [sym_index_expression] = STATE(1211), + [sym_slice_expression] = STATE(1211), + [sym_if_expression] = STATE(1212), + [sym_compile_time_if_expression] = STATE(1212), + [sym_is_expression] = STATE(1211), + [sym_in_expression] = STATE(1211), + [sym_enum_fetch] = STATE(1211), + [sym_match_expression] = STATE(1212), + [sym_select_expression] = STATE(1212), + [sym_lock_expression] = STATE(1212), + [sym_unsafe_expression] = STATE(1212), + [sym_sql_expression] = STATE(1212), + [sym_c_string_literal] = STATE(1201), + [sym_raw_string_literal] = STATE(1201), + [sym_interpreted_string_literal] = STATE(1201), + [sym_mutability_modifiers] = STATE(589), + [sym_plain_type] = STATE(4123), + [sym__plain_type_without_special] = STATE(2360), + [sym_anon_struct_type] = STATE(2362), + [sym_multi_return_type] = STATE(2360), + [sym_result_type] = STATE(2360), + [sym_option_type] = STATE(2360), + [sym_qualified_type] = STATE(3460), + [sym_fixed_array_type] = STATE(2362), + [sym_array_type] = STATE(2362), + [sym_pointer_type] = STATE(2362), + [sym_wrong_pointer_type] = STATE(2362), + [sym_map_type] = STATE(2362), + [sym_channel_type] = STATE(2362), + [sym_shared_type] = STATE(2362), + [sym_thread_type] = STATE(2362), + [sym_atomic_type] = STATE(2362), + [sym_generic_type] = STATE(2362), + [sym_function_type] = STATE(2362), + [sym_identifier] = ACTIONS(1139), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(17), - [anon_sym_LBRACE] = ACTIONS(3098), - [anon_sym_LPAREN] = ACTIONS(23), - [anon_sym_fn] = ACTIONS(485), - [anon_sym_PLUS] = ACTIONS(31), - [anon_sym_DASH] = ACTIONS(31), - [anon_sym_STAR] = ACTIONS(33), - [anon_sym_struct] = ACTIONS(487), + [anon_sym_DOT] = ACTIONS(631), + [anon_sym_LBRACE] = ACTIONS(633), + [anon_sym_LPAREN] = ACTIONS(637), + [anon_sym_fn] = ACTIONS(641), + [anon_sym_PLUS] = ACTIONS(643), + [anon_sym_DASH] = ACTIONS(643), + [anon_sym_STAR] = ACTIONS(645), + [anon_sym_struct] = ACTIONS(649), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(49), - [anon_sym_go] = ACTIONS(51), - [anon_sym_spawn] = ACTIONS(53), - [anon_sym_json_DOTdecode] = ACTIONS(55), - [anon_sym_LBRACK2] = ACTIONS(489), - [anon_sym_TILDE] = ACTIONS(31), - [anon_sym_CARET] = ACTIONS(31), - [anon_sym_AMP] = ACTIONS(59), - [anon_sym_LT_DASH] = ACTIONS(61), - [sym_none] = ACTIONS(63), - [sym_true] = ACTIONS(63), - [sym_false] = ACTIONS(63), - [sym_nil] = ACTIONS(63), - [anon_sym_if] = ACTIONS(65), - [anon_sym_DOLLARif] = ACTIONS(67), - [anon_sym_match] = ACTIONS(69), - [anon_sym_select] = ACTIONS(71), - [anon_sym_lock] = ACTIONS(73), - [anon_sym_rlock] = ACTIONS(73), - [anon_sym_unsafe] = ACTIONS(75), - [anon_sym_sql] = ACTIONS(77), - [sym_int_literal] = ACTIONS(63), - [sym_float_literal] = ACTIONS(79), - [sym_rune_literal] = ACTIONS(79), - [sym_pseudo_compile_time_identifier] = ACTIONS(81), + [anon_sym_BANG] = ACTIONS(655), + [anon_sym_go] = ACTIONS(657), + [anon_sym_spawn] = ACTIONS(659), + [anon_sym_json_DOTdecode] = ACTIONS(661), + [anon_sym_LBRACK2] = ACTIONS(663), + [anon_sym_TILDE] = ACTIONS(643), + [anon_sym_CARET] = ACTIONS(643), + [anon_sym_AMP] = ACTIONS(665), + [anon_sym_LT_DASH] = ACTIONS(667), + [sym_none] = ACTIONS(669), + [sym_true] = ACTIONS(669), + [sym_false] = ACTIONS(669), + [sym_nil] = ACTIONS(669), + [anon_sym_if] = ACTIONS(671), + [anon_sym_DOLLARif] = ACTIONS(673), + [anon_sym_match] = ACTIONS(675), + [anon_sym_select] = ACTIONS(677), + [anon_sym_lock] = ACTIONS(679), + [anon_sym_rlock] = ACTIONS(679), + [anon_sym_unsafe] = ACTIONS(681), + [anon_sym_sql] = ACTIONS(683), + [sym_int_literal] = ACTIONS(669), + [sym_float_literal] = ACTIONS(685), + [sym_rune_literal] = ACTIONS(685), + [sym_pseudo_compile_time_identifier] = ACTIONS(687), [anon_sym_shared] = ACTIONS(83), [anon_sym_map_LBRACK] = ACTIONS(85), [anon_sym_chan] = ACTIONS(87), [anon_sym_thread] = ACTIONS(89), [anon_sym_atomic] = ACTIONS(91), - [sym___double_quote] = ACTIONS(115), - [sym___single_quote] = ACTIONS(117), - [sym___c_double_quote] = ACTIONS(119), - [sym___c_single_quote] = ACTIONS(121), - [sym___r_double_quote] = ACTIONS(123), - [sym___r_single_quote] = ACTIONS(125), + [sym___double_quote] = ACTIONS(689), + [sym___single_quote] = ACTIONS(691), + [sym___c_double_quote] = ACTIONS(693), + [sym___c_single_quote] = ACTIONS(695), + [sym___r_double_quote] = ACTIONS(697), + [sym___r_single_quote] = ACTIONS(699), }, [599] = { [sym_line_comment] = STATE(599), [sym_block_comment] = STATE(599), - [sym__expression] = STATE(2440), - [sym__expression_without_blocks] = STATE(2625), - [sym__expression_with_blocks] = STATE(2625), - [sym_inc_expression] = STATE(2765), - [sym_dec_expression] = STATE(2765), - [sym_or_block_expression] = STATE(2765), - [sym_option_propagation_expression] = STATE(2765), - [sym_result_propagation_expression] = STATE(2765), - [sym_anon_struct_value_expression] = STATE(2619), - [sym_go_expression] = STATE(2765), - [sym_spawn_expression] = STATE(2765), - [sym_parenthesized_expression] = STATE(2765), - [sym_call_expression] = STATE(2765), - [sym_type_initializer] = STATE(2619), - [sym_function_literal] = STATE(2765), - [sym_reference_expression] = STATE(2764), - [sym_type_reference_expression] = STATE(3541), - [sym_unary_expression] = STATE(2765), - [sym_receive_expression] = STATE(2765), - [sym_binary_expression] = STATE(2765), - [sym_as_type_cast_expression] = STATE(2765), - [sym__max_group] = STATE(2765), - [sym_literal] = STATE(2769), - [sym_map_init_expression] = STATE(2619), - [sym_array_creation] = STATE(2765), - [sym_fixed_array_creation] = STATE(2765), - [sym_selector_expression] = STATE(2765), - [sym_index_expression] = STATE(2765), - [sym_slice_expression] = STATE(2765), - [sym_if_expression] = STATE(2619), - [sym_compile_time_if_expression] = STATE(2619), - [sym_is_expression] = STATE(2765), - [sym_in_expression] = STATE(2765), - [sym_enum_fetch] = STATE(2765), - [sym_match_expression] = STATE(2619), - [sym_select_expression] = STATE(2619), - [sym_lock_expression] = STATE(2619), - [sym_unsafe_expression] = STATE(2619), - [sym_sql_expression] = STATE(2619), - [sym_c_string_literal] = STATE(2660), - [sym_raw_string_literal] = STATE(2660), - [sym_interpreted_string_literal] = STATE(2660), - [sym_mutability_modifiers] = STATE(567), - [sym_plain_type] = STATE(4008), - [sym__plain_type_without_special] = STATE(2302), - [sym_anon_struct_type] = STATE(2303), - [sym_multi_return_type] = STATE(2302), - [sym_result_type] = STATE(2302), - [sym_option_type] = STATE(2302), - [sym_qualified_type] = STATE(3541), - [sym_fixed_array_type] = STATE(2303), - [sym_array_type] = STATE(2303), - [sym_pointer_type] = STATE(2303), - [sym_wrong_pointer_type] = STATE(2303), - [sym_map_type] = STATE(2303), - [sym_channel_type] = STATE(2303), - [sym_shared_type] = STATE(2303), - [sym_thread_type] = STATE(2303), - [sym_atomic_type] = STATE(2303), - [sym_generic_type] = STATE(2303), - [sym_function_type] = STATE(2303), - [sym_identifier] = ACTIONS(1807), + [sym__expression] = STATE(1111), + [sym__expression_without_blocks] = STATE(1210), + [sym__expression_with_blocks] = STATE(1210), + [sym_inc_expression] = STATE(1211), + [sym_dec_expression] = STATE(1211), + [sym_or_block_expression] = STATE(1211), + [sym_option_propagation_expression] = STATE(1211), + [sym_result_propagation_expression] = STATE(1211), + [sym_anon_struct_value_expression] = STATE(1212), + [sym_go_expression] = STATE(1211), + [sym_spawn_expression] = STATE(1211), + [sym_parenthesized_expression] = STATE(1211), + [sym_call_expression] = STATE(1211), + [sym_type_initializer] = STATE(1212), + [sym_function_literal] = STATE(1211), + [sym_reference_expression] = STATE(1233), + [sym_type_reference_expression] = STATE(3460), + [sym_unary_expression] = STATE(1211), + [sym_receive_expression] = STATE(1211), + [sym_binary_expression] = STATE(1211), + [sym_as_type_cast_expression] = STATE(1211), + [sym__max_group] = STATE(1211), + [sym_literal] = STATE(1209), + [sym_map_init_expression] = STATE(1212), + [sym_array_creation] = STATE(1211), + [sym_fixed_array_creation] = STATE(1211), + [sym_selector_expression] = STATE(1211), + [sym_index_expression] = STATE(1211), + [sym_slice_expression] = STATE(1211), + [sym_if_expression] = STATE(1212), + [sym_compile_time_if_expression] = STATE(1212), + [sym_is_expression] = STATE(1211), + [sym_in_expression] = STATE(1211), + [sym_enum_fetch] = STATE(1211), + [sym_match_expression] = STATE(1212), + [sym_select_expression] = STATE(1212), + [sym_lock_expression] = STATE(1212), + [sym_unsafe_expression] = STATE(1212), + [sym_sql_expression] = STATE(1212), + [sym_c_string_literal] = STATE(1201), + [sym_raw_string_literal] = STATE(1201), + [sym_interpreted_string_literal] = STATE(1201), + [sym_mutability_modifiers] = STATE(589), + [sym_plain_type] = STATE(4123), + [sym__plain_type_without_special] = STATE(2360), + [sym_anon_struct_type] = STATE(2362), + [sym_multi_return_type] = STATE(2360), + [sym_result_type] = STATE(2360), + [sym_option_type] = STATE(2360), + [sym_qualified_type] = STATE(3460), + [sym_fixed_array_type] = STATE(2362), + [sym_array_type] = STATE(2362), + [sym_pointer_type] = STATE(2362), + [sym_wrong_pointer_type] = STATE(2362), + [sym_map_type] = STATE(2362), + [sym_channel_type] = STATE(2362), + [sym_shared_type] = STATE(2362), + [sym_thread_type] = STATE(2362), + [sym_atomic_type] = STATE(2362), + [sym_generic_type] = STATE(2362), + [sym_function_type] = STATE(2362), + [sym_identifier] = ACTIONS(1139), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1081), - [anon_sym_LBRACE] = ACTIONS(1083), - [anon_sym_LPAREN] = ACTIONS(1087), - [anon_sym_fn] = ACTIONS(1089), - [anon_sym_PLUS] = ACTIONS(1091), - [anon_sym_DASH] = ACTIONS(1091), - [anon_sym_STAR] = ACTIONS(3348), - [anon_sym_struct] = ACTIONS(1095), + [anon_sym_DOT] = ACTIONS(631), + [anon_sym_LBRACE] = ACTIONS(633), + [anon_sym_LPAREN] = ACTIONS(637), + [anon_sym_fn] = ACTIONS(641), + [anon_sym_PLUS] = ACTIONS(643), + [anon_sym_DASH] = ACTIONS(643), + [anon_sym_STAR] = ACTIONS(645), + [anon_sym_struct] = ACTIONS(649), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(3350), - [anon_sym_go] = ACTIONS(1099), - [anon_sym_spawn] = ACTIONS(1101), - [anon_sym_json_DOTdecode] = ACTIONS(1103), - [anon_sym_LBRACK2] = ACTIONS(1105), - [anon_sym_TILDE] = ACTIONS(1091), - [anon_sym_CARET] = ACTIONS(1091), - [anon_sym_AMP] = ACTIONS(3352), - [anon_sym_LT_DASH] = ACTIONS(1109), - [sym_none] = ACTIONS(1111), - [sym_true] = ACTIONS(1111), - [sym_false] = ACTIONS(1111), - [sym_nil] = ACTIONS(1111), - [anon_sym_if] = ACTIONS(1113), - [anon_sym_DOLLARif] = ACTIONS(1117), - [anon_sym_match] = ACTIONS(1119), - [anon_sym_select] = ACTIONS(3104), - [anon_sym_lock] = ACTIONS(3106), - [anon_sym_rlock] = ACTIONS(3106), - [anon_sym_unsafe] = ACTIONS(1125), - [anon_sym_sql] = ACTIONS(1127), - [sym_int_literal] = ACTIONS(1111), - [sym_float_literal] = ACTIONS(1129), - [sym_rune_literal] = ACTIONS(1129), - [sym_pseudo_compile_time_identifier] = ACTIONS(1131), + [anon_sym_BANG] = ACTIONS(655), + [anon_sym_go] = ACTIONS(657), + [anon_sym_spawn] = ACTIONS(659), + [anon_sym_json_DOTdecode] = ACTIONS(661), + [anon_sym_LBRACK2] = ACTIONS(663), + [anon_sym_TILDE] = ACTIONS(643), + [anon_sym_CARET] = ACTIONS(643), + [anon_sym_AMP] = ACTIONS(665), + [anon_sym_LT_DASH] = ACTIONS(667), + [sym_none] = ACTIONS(669), + [sym_true] = ACTIONS(669), + [sym_false] = ACTIONS(669), + [sym_nil] = ACTIONS(669), + [anon_sym_if] = ACTIONS(671), + [anon_sym_DOLLARif] = ACTIONS(673), + [anon_sym_match] = ACTIONS(675), + [anon_sym_select] = ACTIONS(677), + [anon_sym_lock] = ACTIONS(679), + [anon_sym_rlock] = ACTIONS(679), + [anon_sym_unsafe] = ACTIONS(681), + [anon_sym_sql] = ACTIONS(683), + [sym_int_literal] = ACTIONS(669), + [sym_float_literal] = ACTIONS(685), + [sym_rune_literal] = ACTIONS(685), + [sym_pseudo_compile_time_identifier] = ACTIONS(687), [anon_sym_shared] = ACTIONS(83), [anon_sym_map_LBRACK] = ACTIONS(85), [anon_sym_chan] = ACTIONS(87), [anon_sym_thread] = ACTIONS(89), [anon_sym_atomic] = ACTIONS(91), - [sym___double_quote] = ACTIONS(1133), - [sym___single_quote] = ACTIONS(1135), - [sym___c_double_quote] = ACTIONS(1137), - [sym___c_single_quote] = ACTIONS(1139), - [sym___r_double_quote] = ACTIONS(1141), - [sym___r_single_quote] = ACTIONS(1143), + [sym___double_quote] = ACTIONS(689), + [sym___single_quote] = ACTIONS(691), + [sym___c_double_quote] = ACTIONS(693), + [sym___c_single_quote] = ACTIONS(695), + [sym___r_double_quote] = ACTIONS(697), + [sym___r_single_quote] = ACTIONS(699), }, [600] = { [sym_line_comment] = STATE(600), [sym_block_comment] = STATE(600), - [sym__expression] = STATE(1659), - [sym__expression_without_blocks] = STATE(1891), - [sym__expression_with_blocks] = STATE(1891), - [sym_inc_expression] = STATE(1893), - [sym_dec_expression] = STATE(1893), - [sym_or_block_expression] = STATE(1893), - [sym_option_propagation_expression] = STATE(1893), - [sym_result_propagation_expression] = STATE(1893), - [sym_anon_struct_value_expression] = STATE(1895), - [sym_go_expression] = STATE(1893), - [sym_spawn_expression] = STATE(1893), - [sym_parenthesized_expression] = STATE(1893), - [sym_call_expression] = STATE(1893), - [sym_type_initializer] = STATE(1895), - [sym_function_literal] = STATE(1893), - [sym_reference_expression] = STATE(1782), - [sym_type_reference_expression] = STATE(3541), - [sym_unary_expression] = STATE(1893), - [sym_receive_expression] = STATE(1893), - [sym_binary_expression] = STATE(1893), - [sym_as_type_cast_expression] = STATE(1893), - [sym__max_group] = STATE(1893), - [sym_literal] = STATE(1889), - [sym_map_init_expression] = STATE(1895), - [sym_array_creation] = STATE(1893), - [sym_fixed_array_creation] = STATE(1893), - [sym_selector_expression] = STATE(1893), - [sym_index_expression] = STATE(1893), - [sym_slice_expression] = STATE(1893), - [sym_if_expression] = STATE(1895), - [sym_compile_time_if_expression] = STATE(1895), - [sym_is_expression] = STATE(1893), - [sym_in_expression] = STATE(1893), - [sym_enum_fetch] = STATE(1893), - [sym_match_expression] = STATE(1895), - [sym_select_expression] = STATE(1895), - [sym_lock_expression] = STATE(1895), - [sym_unsafe_expression] = STATE(1895), - [sym_sql_expression] = STATE(1895), - [sym_c_string_literal] = STATE(1882), - [sym_raw_string_literal] = STATE(1882), - [sym_interpreted_string_literal] = STATE(1882), - [sym_mutability_modifiers] = STATE(561), - [sym_plain_type] = STATE(4133), - [sym__plain_type_without_special] = STATE(2302), - [sym_anon_struct_type] = STATE(2303), - [sym_multi_return_type] = STATE(2302), - [sym_result_type] = STATE(2302), - [sym_option_type] = STATE(2302), - [sym_qualified_type] = STATE(3541), - [sym_fixed_array_type] = STATE(2303), - [sym_array_type] = STATE(2303), - [sym_pointer_type] = STATE(2303), - [sym_wrong_pointer_type] = STATE(2303), - [sym_map_type] = STATE(2303), - [sym_channel_type] = STATE(2303), - [sym_shared_type] = STATE(2303), - [sym_thread_type] = STATE(2303), - [sym_atomic_type] = STATE(2303), - [sym_generic_type] = STATE(2303), - [sym_function_type] = STATE(2303), - [sym_identifier] = ACTIONS(3170), + [sym__expression] = STATE(2808), + [sym__expression_without_blocks] = STATE(2347), + [sym__expression_with_blocks] = STATE(2347), + [sym_inc_expression] = STATE(2379), + [sym_dec_expression] = STATE(2379), + [sym_or_block_expression] = STATE(2379), + [sym_option_propagation_expression] = STATE(2379), + [sym_result_propagation_expression] = STATE(2379), + [sym_anon_struct_value_expression] = STATE(2378), + [sym_go_expression] = STATE(2379), + [sym_spawn_expression] = STATE(2379), + [sym_parenthesized_expression] = STATE(2379), + [sym_call_expression] = STATE(2379), + [sym_type_initializer] = STATE(2378), + [sym_function_literal] = STATE(2379), + [sym_reference_expression] = STATE(2377), + [sym_type_reference_expression] = STATE(3460), + [sym_unary_expression] = STATE(2379), + [sym_receive_expression] = STATE(2379), + [sym_binary_expression] = STATE(2379), + [sym_as_type_cast_expression] = STATE(2379), + [sym__max_group] = STATE(2379), + [sym_literal] = STATE(2392), + [sym_map_init_expression] = STATE(2378), + [sym_array_creation] = STATE(2379), + [sym_fixed_array_creation] = STATE(2379), + [sym_selector_expression] = STATE(2379), + [sym_index_expression] = STATE(2379), + [sym_slice_expression] = STATE(2379), + [sym_if_expression] = STATE(2378), + [sym_compile_time_if_expression] = STATE(2378), + [sym_is_expression] = STATE(2379), + [sym_in_expression] = STATE(2379), + [sym_enum_fetch] = STATE(2379), + [sym_match_expression] = STATE(2378), + [sym_select_expression] = STATE(2378), + [sym_lock_expression] = STATE(2378), + [sym_unsafe_expression] = STATE(2378), + [sym_sql_expression] = STATE(2378), + [sym_c_string_literal] = STATE(2401), + [sym_raw_string_literal] = STATE(2401), + [sym_interpreted_string_literal] = STATE(2401), + [sym_mutability_modifiers] = STATE(939), + [sym_plain_type] = STATE(4160), + [sym__plain_type_without_special] = STATE(2360), + [sym_anon_struct_type] = STATE(2362), + [sym_multi_return_type] = STATE(2360), + [sym_result_type] = STATE(2360), + [sym_option_type] = STATE(2360), + [sym_qualified_type] = STATE(3460), + [sym_fixed_array_type] = STATE(2362), + [sym_array_type] = STATE(2362), + [sym_pointer_type] = STATE(2362), + [sym_wrong_pointer_type] = STATE(2362), + [sym_map_type] = STATE(2362), + [sym_channel_type] = STATE(2362), + [sym_shared_type] = STATE(2362), + [sym_thread_type] = STATE(2362), + [sym_atomic_type] = STATE(2362), + [sym_generic_type] = STATE(2362), + [sym_function_type] = STATE(2362), + [sym_identifier] = ACTIONS(1428), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(3172), - [anon_sym_LBRACE] = ACTIONS(3174), - [anon_sym_LPAREN] = ACTIONS(3176), - [anon_sym_fn] = ACTIONS(3178), - [anon_sym_PLUS] = ACTIONS(3180), - [anon_sym_DASH] = ACTIONS(3180), - [anon_sym_STAR] = ACTIONS(3182), - [anon_sym_struct] = ACTIONS(3184), + [anon_sym_DOT] = ACTIONS(1430), + [anon_sym_LBRACE] = ACTIONS(1432), + [anon_sym_LPAREN] = ACTIONS(1434), + [anon_sym_fn] = ACTIONS(1436), + [anon_sym_PLUS] = ACTIONS(1438), + [anon_sym_DASH] = ACTIONS(1438), + [anon_sym_STAR] = ACTIONS(1440), + [anon_sym_struct] = ACTIONS(1442), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(3186), - [anon_sym_go] = ACTIONS(3188), - [anon_sym_spawn] = ACTIONS(3190), - [anon_sym_json_DOTdecode] = ACTIONS(3192), - [anon_sym_LBRACK2] = ACTIONS(3194), - [anon_sym_TILDE] = ACTIONS(3180), - [anon_sym_CARET] = ACTIONS(3180), - [anon_sym_AMP] = ACTIONS(3196), - [anon_sym_LT_DASH] = ACTIONS(3198), - [sym_none] = ACTIONS(3200), - [sym_true] = ACTIONS(3200), - [sym_false] = ACTIONS(3200), - [sym_nil] = ACTIONS(3200), - [anon_sym_if] = ACTIONS(3202), - [anon_sym_DOLLARif] = ACTIONS(3204), - [anon_sym_match] = ACTIONS(3206), - [anon_sym_select] = ACTIONS(3208), - [anon_sym_lock] = ACTIONS(3210), - [anon_sym_rlock] = ACTIONS(3210), - [anon_sym_unsafe] = ACTIONS(3212), - [anon_sym_sql] = ACTIONS(3214), - [sym_int_literal] = ACTIONS(3200), - [sym_float_literal] = ACTIONS(3216), - [sym_rune_literal] = ACTIONS(3216), - [sym_pseudo_compile_time_identifier] = ACTIONS(3218), + [anon_sym_BANG] = ACTIONS(1444), + [anon_sym_go] = ACTIONS(1446), + [anon_sym_spawn] = ACTIONS(1448), + [anon_sym_json_DOTdecode] = ACTIONS(1450), + [anon_sym_LBRACK2] = ACTIONS(1452), + [anon_sym_TILDE] = ACTIONS(1438), + [anon_sym_CARET] = ACTIONS(1438), + [anon_sym_AMP] = ACTIONS(1454), + [anon_sym_LT_DASH] = ACTIONS(1456), + [sym_none] = ACTIONS(1458), + [sym_true] = ACTIONS(1458), + [sym_false] = ACTIONS(1458), + [sym_nil] = ACTIONS(1458), + [anon_sym_if] = ACTIONS(1833), + [anon_sym_DOLLARif] = ACTIONS(1462), + [anon_sym_match] = ACTIONS(1464), + [anon_sym_select] = ACTIONS(1466), + [anon_sym_lock] = ACTIONS(1468), + [anon_sym_rlock] = ACTIONS(1468), + [anon_sym_unsafe] = ACTIONS(1839), + [anon_sym_sql] = ACTIONS(1472), + [sym_int_literal] = ACTIONS(1458), + [sym_float_literal] = ACTIONS(1474), + [sym_rune_literal] = ACTIONS(1474), + [sym_pseudo_compile_time_identifier] = ACTIONS(1476), [anon_sym_shared] = ACTIONS(83), [anon_sym_map_LBRACK] = ACTIONS(85), [anon_sym_chan] = ACTIONS(87), [anon_sym_thread] = ACTIONS(89), [anon_sym_atomic] = ACTIONS(91), - [sym___double_quote] = ACTIONS(3220), - [sym___single_quote] = ACTIONS(3222), - [sym___c_double_quote] = ACTIONS(3224), - [sym___c_single_quote] = ACTIONS(3226), - [sym___r_double_quote] = ACTIONS(3228), - [sym___r_single_quote] = ACTIONS(3230), + [sym___double_quote] = ACTIONS(1480), + [sym___single_quote] = ACTIONS(1482), + [sym___c_double_quote] = ACTIONS(1484), + [sym___c_single_quote] = ACTIONS(1486), + [sym___r_double_quote] = ACTIONS(1488), + [sym___r_single_quote] = ACTIONS(1490), }, [601] = { [sym_line_comment] = STATE(601), [sym_block_comment] = STATE(601), - [sym__expression] = STATE(1659), - [sym__expression_without_blocks] = STATE(1891), - [sym__expression_with_blocks] = STATE(1891), - [sym_inc_expression] = STATE(1893), - [sym_dec_expression] = STATE(1893), - [sym_or_block_expression] = STATE(1893), - [sym_option_propagation_expression] = STATE(1893), - [sym_result_propagation_expression] = STATE(1893), - [sym_anon_struct_value_expression] = STATE(1895), - [sym_go_expression] = STATE(1893), - [sym_spawn_expression] = STATE(1893), - [sym_parenthesized_expression] = STATE(1893), - [sym_call_expression] = STATE(1893), - [sym_type_initializer] = STATE(1895), - [sym_function_literal] = STATE(1893), - [sym_reference_expression] = STATE(1782), - [sym_type_reference_expression] = STATE(3541), - [sym_unary_expression] = STATE(1893), - [sym_receive_expression] = STATE(1893), - [sym_binary_expression] = STATE(1893), - [sym_as_type_cast_expression] = STATE(1893), - [sym__max_group] = STATE(1893), - [sym_literal] = STATE(1889), - [sym_map_init_expression] = STATE(1895), - [sym_array_creation] = STATE(1893), - [sym_fixed_array_creation] = STATE(1893), - [sym_selector_expression] = STATE(1893), - [sym_index_expression] = STATE(1893), - [sym_slice_expression] = STATE(1893), - [sym_if_expression] = STATE(1895), - [sym_compile_time_if_expression] = STATE(1895), - [sym_is_expression] = STATE(1893), - [sym_in_expression] = STATE(1893), - [sym_enum_fetch] = STATE(1893), - [sym_match_expression] = STATE(1895), - [sym_select_expression] = STATE(1895), - [sym_lock_expression] = STATE(1895), - [sym_unsafe_expression] = STATE(1895), - [sym_sql_expression] = STATE(1895), - [sym_c_string_literal] = STATE(1882), - [sym_raw_string_literal] = STATE(1882), - [sym_interpreted_string_literal] = STATE(1882), - [sym_mutability_modifiers] = STATE(561), - [sym_plain_type] = STATE(4260), - [sym__plain_type_without_special] = STATE(2302), - [sym_anon_struct_type] = STATE(2303), - [sym_multi_return_type] = STATE(2302), - [sym_result_type] = STATE(2302), - [sym_option_type] = STATE(2302), - [sym_qualified_type] = STATE(3541), - [sym_fixed_array_type] = STATE(2303), - [sym_array_type] = STATE(2303), - [sym_pointer_type] = STATE(2303), - [sym_wrong_pointer_type] = STATE(2303), - [sym_map_type] = STATE(2303), - [sym_channel_type] = STATE(2303), - [sym_shared_type] = STATE(2303), - [sym_thread_type] = STATE(2303), - [sym_atomic_type] = STATE(2303), - [sym_generic_type] = STATE(2303), - [sym_function_type] = STATE(2303), - [sym_identifier] = ACTIONS(3170), + [sym__expression] = STATE(2809), + [sym__expression_without_blocks] = STATE(2347), + [sym__expression_with_blocks] = STATE(2347), + [sym_inc_expression] = STATE(2379), + [sym_dec_expression] = STATE(2379), + [sym_or_block_expression] = STATE(2379), + [sym_option_propagation_expression] = STATE(2379), + [sym_result_propagation_expression] = STATE(2379), + [sym_anon_struct_value_expression] = STATE(2378), + [sym_go_expression] = STATE(2379), + [sym_spawn_expression] = STATE(2379), + [sym_parenthesized_expression] = STATE(2379), + [sym_call_expression] = STATE(2379), + [sym_type_initializer] = STATE(2378), + [sym_function_literal] = STATE(2379), + [sym_reference_expression] = STATE(2377), + [sym_type_reference_expression] = STATE(3460), + [sym_unary_expression] = STATE(2379), + [sym_receive_expression] = STATE(2379), + [sym_binary_expression] = STATE(2379), + [sym_as_type_cast_expression] = STATE(2379), + [sym__max_group] = STATE(2379), + [sym_literal] = STATE(2392), + [sym_map_init_expression] = STATE(2378), + [sym_array_creation] = STATE(2379), + [sym_fixed_array_creation] = STATE(2379), + [sym_selector_expression] = STATE(2379), + [sym_index_expression] = STATE(2379), + [sym_slice_expression] = STATE(2379), + [sym_if_expression] = STATE(2378), + [sym_compile_time_if_expression] = STATE(2378), + [sym_is_expression] = STATE(2379), + [sym_in_expression] = STATE(2379), + [sym_enum_fetch] = STATE(2379), + [sym_match_expression] = STATE(2378), + [sym_select_expression] = STATE(2378), + [sym_lock_expression] = STATE(2378), + [sym_unsafe_expression] = STATE(2378), + [sym_sql_expression] = STATE(2378), + [sym_c_string_literal] = STATE(2401), + [sym_raw_string_literal] = STATE(2401), + [sym_interpreted_string_literal] = STATE(2401), + [sym_mutability_modifiers] = STATE(939), + [sym_plain_type] = STATE(4160), + [sym__plain_type_without_special] = STATE(2360), + [sym_anon_struct_type] = STATE(2362), + [sym_multi_return_type] = STATE(2360), + [sym_result_type] = STATE(2360), + [sym_option_type] = STATE(2360), + [sym_qualified_type] = STATE(3460), + [sym_fixed_array_type] = STATE(2362), + [sym_array_type] = STATE(2362), + [sym_pointer_type] = STATE(2362), + [sym_wrong_pointer_type] = STATE(2362), + [sym_map_type] = STATE(2362), + [sym_channel_type] = STATE(2362), + [sym_shared_type] = STATE(2362), + [sym_thread_type] = STATE(2362), + [sym_atomic_type] = STATE(2362), + [sym_generic_type] = STATE(2362), + [sym_function_type] = STATE(2362), + [sym_identifier] = ACTIONS(1428), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(3172), - [anon_sym_LBRACE] = ACTIONS(3174), - [anon_sym_LPAREN] = ACTIONS(3176), - [anon_sym_fn] = ACTIONS(3178), - [anon_sym_PLUS] = ACTIONS(3180), - [anon_sym_DASH] = ACTIONS(3180), - [anon_sym_STAR] = ACTIONS(3182), - [anon_sym_struct] = ACTIONS(3184), + [anon_sym_DOT] = ACTIONS(1430), + [anon_sym_LBRACE] = ACTIONS(1432), + [anon_sym_LPAREN] = ACTIONS(1434), + [anon_sym_fn] = ACTIONS(1436), + [anon_sym_PLUS] = ACTIONS(1438), + [anon_sym_DASH] = ACTIONS(1438), + [anon_sym_STAR] = ACTIONS(1440), + [anon_sym_struct] = ACTIONS(1442), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(3186), - [anon_sym_go] = ACTIONS(3188), - [anon_sym_spawn] = ACTIONS(3190), - [anon_sym_json_DOTdecode] = ACTIONS(3192), - [anon_sym_LBRACK2] = ACTIONS(3194), - [anon_sym_TILDE] = ACTIONS(3180), - [anon_sym_CARET] = ACTIONS(3180), - [anon_sym_AMP] = ACTIONS(3196), - [anon_sym_LT_DASH] = ACTIONS(3198), - [sym_none] = ACTIONS(3200), - [sym_true] = ACTIONS(3200), - [sym_false] = ACTIONS(3200), - [sym_nil] = ACTIONS(3200), - [anon_sym_if] = ACTIONS(3202), - [anon_sym_DOLLARif] = ACTIONS(3204), - [anon_sym_match] = ACTIONS(3206), - [anon_sym_select] = ACTIONS(3208), - [anon_sym_lock] = ACTIONS(3210), - [anon_sym_rlock] = ACTIONS(3210), - [anon_sym_unsafe] = ACTIONS(3212), - [anon_sym_sql] = ACTIONS(3214), - [sym_int_literal] = ACTIONS(3200), - [sym_float_literal] = ACTIONS(3216), - [sym_rune_literal] = ACTIONS(3216), - [sym_pseudo_compile_time_identifier] = ACTIONS(3218), + [anon_sym_BANG] = ACTIONS(1444), + [anon_sym_go] = ACTIONS(1446), + [anon_sym_spawn] = ACTIONS(1448), + [anon_sym_json_DOTdecode] = ACTIONS(1450), + [anon_sym_LBRACK2] = ACTIONS(1452), + [anon_sym_TILDE] = ACTIONS(1438), + [anon_sym_CARET] = ACTIONS(1438), + [anon_sym_AMP] = ACTIONS(1454), + [anon_sym_LT_DASH] = ACTIONS(1456), + [sym_none] = ACTIONS(1458), + [sym_true] = ACTIONS(1458), + [sym_false] = ACTIONS(1458), + [sym_nil] = ACTIONS(1458), + [anon_sym_if] = ACTIONS(1833), + [anon_sym_DOLLARif] = ACTIONS(1462), + [anon_sym_match] = ACTIONS(1464), + [anon_sym_select] = ACTIONS(1466), + [anon_sym_lock] = ACTIONS(1468), + [anon_sym_rlock] = ACTIONS(1468), + [anon_sym_unsafe] = ACTIONS(1839), + [anon_sym_sql] = ACTIONS(1472), + [sym_int_literal] = ACTIONS(1458), + [sym_float_literal] = ACTIONS(1474), + [sym_rune_literal] = ACTIONS(1474), + [sym_pseudo_compile_time_identifier] = ACTIONS(1476), [anon_sym_shared] = ACTIONS(83), [anon_sym_map_LBRACK] = ACTIONS(85), [anon_sym_chan] = ACTIONS(87), [anon_sym_thread] = ACTIONS(89), [anon_sym_atomic] = ACTIONS(91), - [sym___double_quote] = ACTIONS(3220), - [sym___single_quote] = ACTIONS(3222), - [sym___c_double_quote] = ACTIONS(3224), - [sym___c_single_quote] = ACTIONS(3226), - [sym___r_double_quote] = ACTIONS(3228), - [sym___r_single_quote] = ACTIONS(3230), + [sym___double_quote] = ACTIONS(1480), + [sym___single_quote] = ACTIONS(1482), + [sym___c_double_quote] = ACTIONS(1484), + [sym___c_single_quote] = ACTIONS(1486), + [sym___r_double_quote] = ACTIONS(1488), + [sym___r_single_quote] = ACTIONS(1490), }, [602] = { [sym_line_comment] = STATE(602), [sym_block_comment] = STATE(602), - [sym__expression] = STATE(2433), - [sym__expression_without_blocks] = STATE(2625), - [sym__expression_with_blocks] = STATE(2625), - [sym_inc_expression] = STATE(2765), - [sym_dec_expression] = STATE(2765), - [sym_or_block_expression] = STATE(2765), - [sym_option_propagation_expression] = STATE(2765), - [sym_result_propagation_expression] = STATE(2765), - [sym_anon_struct_value_expression] = STATE(2619), - [sym_go_expression] = STATE(2765), - [sym_spawn_expression] = STATE(2765), - [sym_parenthesized_expression] = STATE(2765), - [sym_call_expression] = STATE(2765), - [sym_type_initializer] = STATE(2619), - [sym_function_literal] = STATE(2765), - [sym_reference_expression] = STATE(2764), - [sym_type_reference_expression] = STATE(3541), - [sym_unary_expression] = STATE(2765), - [sym_receive_expression] = STATE(2765), - [sym_binary_expression] = STATE(2765), - [sym_as_type_cast_expression] = STATE(2765), - [sym__max_group] = STATE(2765), - [sym_literal] = STATE(2769), - [sym_map_init_expression] = STATE(2619), - [sym_array_creation] = STATE(2765), - [sym_fixed_array_creation] = STATE(2765), - [sym_selector_expression] = STATE(2765), - [sym_index_expression] = STATE(2765), - [sym_slice_expression] = STATE(2765), - [sym_if_expression] = STATE(2619), - [sym_compile_time_if_expression] = STATE(2619), - [sym_is_expression] = STATE(2765), - [sym_in_expression] = STATE(2765), - [sym_enum_fetch] = STATE(2765), - [sym_match_expression] = STATE(2619), - [sym_select_expression] = STATE(2619), - [sym_lock_expression] = STATE(2619), - [sym_unsafe_expression] = STATE(2619), - [sym_sql_expression] = STATE(2619), - [sym_c_string_literal] = STATE(2660), - [sym_raw_string_literal] = STATE(2660), - [sym_interpreted_string_literal] = STATE(2660), - [sym_mutability_modifiers] = STATE(567), - [sym_plain_type] = STATE(4008), - [sym__plain_type_without_special] = STATE(2302), - [sym_anon_struct_type] = STATE(2303), - [sym_multi_return_type] = STATE(2302), - [sym_result_type] = STATE(2302), - [sym_option_type] = STATE(2302), - [sym_qualified_type] = STATE(3541), - [sym_fixed_array_type] = STATE(2303), - [sym_array_type] = STATE(2303), - [sym_pointer_type] = STATE(2303), - [sym_wrong_pointer_type] = STATE(2303), - [sym_map_type] = STATE(2303), - [sym_channel_type] = STATE(2303), - [sym_shared_type] = STATE(2303), - [sym_thread_type] = STATE(2303), - [sym_atomic_type] = STATE(2303), - [sym_generic_type] = STATE(2303), - [sym_function_type] = STATE(2303), - [sym_identifier] = ACTIONS(1807), + [sym__expression] = STATE(2267), + [sym__expression_without_blocks] = STATE(2347), + [sym__expression_with_blocks] = STATE(2347), + [sym_inc_expression] = STATE(2379), + [sym_dec_expression] = STATE(2379), + [sym_or_block_expression] = STATE(2379), + [sym_option_propagation_expression] = STATE(2379), + [sym_result_propagation_expression] = STATE(2379), + [sym_anon_struct_value_expression] = STATE(2378), + [sym_go_expression] = STATE(2379), + [sym_spawn_expression] = STATE(2379), + [sym_parenthesized_expression] = STATE(2379), + [sym_call_expression] = STATE(2379), + [sym_type_initializer] = STATE(2378), + [sym_function_literal] = STATE(2379), + [sym_reference_expression] = STATE(2377), + [sym_type_reference_expression] = STATE(3460), + [sym_unary_expression] = STATE(2379), + [sym_receive_expression] = STATE(2379), + [sym_binary_expression] = STATE(2379), + [sym_as_type_cast_expression] = STATE(2379), + [sym__max_group] = STATE(2379), + [sym_literal] = STATE(2392), + [sym_map_init_expression] = STATE(2378), + [sym_array_creation] = STATE(2379), + [sym_fixed_array_creation] = STATE(2379), + [sym_selector_expression] = STATE(2379), + [sym_index_expression] = STATE(2379), + [sym_slice_expression] = STATE(2379), + [sym_if_expression] = STATE(2378), + [sym_compile_time_if_expression] = STATE(2378), + [sym_is_expression] = STATE(2379), + [sym_in_expression] = STATE(2379), + [sym_enum_fetch] = STATE(2379), + [sym_match_expression] = STATE(2378), + [sym_select_expression] = STATE(2378), + [sym_lock_expression] = STATE(2378), + [sym_unsafe_expression] = STATE(2378), + [sym_sql_expression] = STATE(2378), + [sym_c_string_literal] = STATE(2401), + [sym_raw_string_literal] = STATE(2401), + [sym_interpreted_string_literal] = STATE(2401), + [sym_mutability_modifiers] = STATE(939), + [sym_plain_type] = STATE(3558), + [sym__plain_type_without_special] = STATE(2360), + [sym_anon_struct_type] = STATE(2362), + [sym_multi_return_type] = STATE(2360), + [sym_result_type] = STATE(2360), + [sym_option_type] = STATE(2360), + [sym_qualified_type] = STATE(3460), + [sym_fixed_array_type] = STATE(2362), + [sym_array_type] = STATE(2362), + [sym_pointer_type] = STATE(2362), + [sym_wrong_pointer_type] = STATE(2362), + [sym_map_type] = STATE(2362), + [sym_channel_type] = STATE(2362), + [sym_shared_type] = STATE(2362), + [sym_thread_type] = STATE(2362), + [sym_atomic_type] = STATE(2362), + [sym_generic_type] = STATE(2362), + [sym_function_type] = STATE(2362), + [sym_identifier] = ACTIONS(2477), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1081), - [anon_sym_LBRACE] = ACTIONS(1083), - [anon_sym_LPAREN] = ACTIONS(1087), - [anon_sym_fn] = ACTIONS(1089), - [anon_sym_PLUS] = ACTIONS(1091), - [anon_sym_DASH] = ACTIONS(1091), - [anon_sym_STAR] = ACTIONS(3348), - [anon_sym_struct] = ACTIONS(1095), + [anon_sym_DOT] = ACTIONS(1430), + [anon_sym_LBRACE] = ACTIONS(1432), + [anon_sym_LPAREN] = ACTIONS(1434), + [anon_sym_fn] = ACTIONS(1436), + [anon_sym_PLUS] = ACTIONS(2271), + [anon_sym_DASH] = ACTIONS(2271), + [anon_sym_STAR] = ACTIONS(3354), + [anon_sym_struct] = ACTIONS(1442), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(3350), - [anon_sym_go] = ACTIONS(1099), - [anon_sym_spawn] = ACTIONS(1101), - [anon_sym_json_DOTdecode] = ACTIONS(1103), - [anon_sym_LBRACK2] = ACTIONS(1105), - [anon_sym_TILDE] = ACTIONS(1091), - [anon_sym_CARET] = ACTIONS(1091), - [anon_sym_AMP] = ACTIONS(3352), - [anon_sym_LT_DASH] = ACTIONS(1109), - [sym_none] = ACTIONS(1111), - [sym_true] = ACTIONS(1111), - [sym_false] = ACTIONS(1111), - [sym_nil] = ACTIONS(1111), - [anon_sym_if] = ACTIONS(1113), - [anon_sym_DOLLARif] = ACTIONS(1117), - [anon_sym_match] = ACTIONS(1119), - [anon_sym_select] = ACTIONS(3104), - [anon_sym_lock] = ACTIONS(3106), - [anon_sym_rlock] = ACTIONS(3106), - [anon_sym_unsafe] = ACTIONS(1125), - [anon_sym_sql] = ACTIONS(1127), - [sym_int_literal] = ACTIONS(1111), - [sym_float_literal] = ACTIONS(1129), - [sym_rune_literal] = ACTIONS(1129), - [sym_pseudo_compile_time_identifier] = ACTIONS(1131), + [anon_sym_BANG] = ACTIONS(3356), + [anon_sym_go] = ACTIONS(2277), + [anon_sym_spawn] = ACTIONS(2279), + [anon_sym_json_DOTdecode] = ACTIONS(1450), + [anon_sym_LBRACK2] = ACTIONS(1452), + [anon_sym_TILDE] = ACTIONS(2271), + [anon_sym_CARET] = ACTIONS(2271), + [anon_sym_AMP] = ACTIONS(3358), + [anon_sym_LT_DASH] = ACTIONS(2283), + [sym_none] = ACTIONS(1458), + [sym_true] = ACTIONS(1458), + [sym_false] = ACTIONS(1458), + [sym_nil] = ACTIONS(1458), + [anon_sym_if] = ACTIONS(1833), + [anon_sym_DOLLARif] = ACTIONS(1462), + [anon_sym_match] = ACTIONS(1464), + [anon_sym_select] = ACTIONS(1466), + [anon_sym_lock] = ACTIONS(1468), + [anon_sym_rlock] = ACTIONS(1468), + [anon_sym_unsafe] = ACTIONS(1839), + [anon_sym_sql] = ACTIONS(1472), + [sym_int_literal] = ACTIONS(1458), + [sym_float_literal] = ACTIONS(1474), + [sym_rune_literal] = ACTIONS(1474), + [sym_pseudo_compile_time_identifier] = ACTIONS(1476), [anon_sym_shared] = ACTIONS(83), [anon_sym_map_LBRACK] = ACTIONS(85), [anon_sym_chan] = ACTIONS(87), [anon_sym_thread] = ACTIONS(89), [anon_sym_atomic] = ACTIONS(91), - [sym___double_quote] = ACTIONS(1133), - [sym___single_quote] = ACTIONS(1135), - [sym___c_double_quote] = ACTIONS(1137), - [sym___c_single_quote] = ACTIONS(1139), - [sym___r_double_quote] = ACTIONS(1141), - [sym___r_single_quote] = ACTIONS(1143), + [sym___double_quote] = ACTIONS(1480), + [sym___single_quote] = ACTIONS(1482), + [sym___c_double_quote] = ACTIONS(1484), + [sym___c_single_quote] = ACTIONS(1486), + [sym___r_double_quote] = ACTIONS(1488), + [sym___r_single_quote] = ACTIONS(1490), }, [603] = { [sym_line_comment] = STATE(603), [sym_block_comment] = STATE(603), - [sym__expression] = STATE(2630), - [sym__expression_without_blocks] = STATE(2300), - [sym__expression_with_blocks] = STATE(2300), - [sym_inc_expression] = STATE(2307), - [sym_dec_expression] = STATE(2307), - [sym_or_block_expression] = STATE(2307), - [sym_option_propagation_expression] = STATE(2307), - [sym_result_propagation_expression] = STATE(2307), - [sym_anon_struct_value_expression] = STATE(2380), - [sym_go_expression] = STATE(2307), - [sym_spawn_expression] = STATE(2307), - [sym_parenthesized_expression] = STATE(2307), - [sym_call_expression] = STATE(2307), - [sym_type_initializer] = STATE(2380), - [sym_function_literal] = STATE(2307), - [sym_reference_expression] = STATE(2311), - [sym_type_reference_expression] = STATE(3541), - [sym_unary_expression] = STATE(2307), - [sym_receive_expression] = STATE(2307), - [sym_binary_expression] = STATE(2307), - [sym_as_type_cast_expression] = STATE(2307), - [sym__max_group] = STATE(2307), - [sym_literal] = STATE(2292), - [sym_map_init_expression] = STATE(2380), - [sym_array_creation] = STATE(2307), - [sym_fixed_array_creation] = STATE(2307), - [sym_selector_expression] = STATE(2307), - [sym_index_expression] = STATE(2307), - [sym_slice_expression] = STATE(2307), - [sym_if_expression] = STATE(2380), - [sym_compile_time_if_expression] = STATE(2380), - [sym_is_expression] = STATE(2307), - [sym_in_expression] = STATE(2307), - [sym_enum_fetch] = STATE(2307), - [sym_match_expression] = STATE(2380), - [sym_select_expression] = STATE(2380), - [sym_lock_expression] = STATE(2380), - [sym_unsafe_expression] = STATE(2380), - [sym_sql_expression] = STATE(2380), - [sym_c_string_literal] = STATE(2308), - [sym_raw_string_literal] = STATE(2308), - [sym_interpreted_string_literal] = STATE(2308), + [sym__expression] = STATE(2267), + [sym__expression_without_blocks] = STATE(2347), + [sym__expression_with_blocks] = STATE(2347), + [sym_inc_expression] = STATE(2379), + [sym_dec_expression] = STATE(2379), + [sym_or_block_expression] = STATE(2379), + [sym_option_propagation_expression] = STATE(2379), + [sym_result_propagation_expression] = STATE(2379), + [sym_anon_struct_value_expression] = STATE(2378), + [sym_go_expression] = STATE(2379), + [sym_spawn_expression] = STATE(2379), + [sym_parenthesized_expression] = STATE(2379), + [sym_call_expression] = STATE(2379), + [sym_type_initializer] = STATE(2378), + [sym_function_literal] = STATE(2379), + [sym_reference_expression] = STATE(2377), + [sym_type_reference_expression] = STATE(3460), + [sym_unary_expression] = STATE(2379), + [sym_receive_expression] = STATE(2379), + [sym_binary_expression] = STATE(2379), + [sym_as_type_cast_expression] = STATE(2379), + [sym__max_group] = STATE(2379), + [sym_literal] = STATE(2392), + [sym_map_init_expression] = STATE(2378), + [sym_array_creation] = STATE(2379), + [sym_fixed_array_creation] = STATE(2379), + [sym_selector_expression] = STATE(2379), + [sym_index_expression] = STATE(2379), + [sym_slice_expression] = STATE(2379), + [sym_if_expression] = STATE(2378), + [sym_compile_time_if_expression] = STATE(2378), + [sym_is_expression] = STATE(2379), + [sym_in_expression] = STATE(2379), + [sym_enum_fetch] = STATE(2379), + [sym_match_expression] = STATE(2378), + [sym_select_expression] = STATE(2378), + [sym_lock_expression] = STATE(2378), + [sym_unsafe_expression] = STATE(2378), + [sym_sql_expression] = STATE(2378), + [sym_c_string_literal] = STATE(2401), + [sym_raw_string_literal] = STATE(2401), + [sym_interpreted_string_literal] = STATE(2401), [sym_mutability_modifiers] = STATE(939), - [sym_plain_type] = STATE(4297), - [sym__plain_type_without_special] = STATE(2302), - [sym_anon_struct_type] = STATE(2303), - [sym_multi_return_type] = STATE(2302), - [sym_result_type] = STATE(2302), - [sym_option_type] = STATE(2302), - [sym_qualified_type] = STATE(3541), - [sym_fixed_array_type] = STATE(2303), - [sym_array_type] = STATE(2303), - [sym_pointer_type] = STATE(2303), - [sym_wrong_pointer_type] = STATE(2303), - [sym_map_type] = STATE(2303), - [sym_channel_type] = STATE(2303), - [sym_shared_type] = STATE(2303), - [sym_thread_type] = STATE(2303), - [sym_atomic_type] = STATE(2303), - [sym_generic_type] = STATE(2303), - [sym_function_type] = STATE(2303), - [sym_identifier] = ACTIONS(2189), + [sym_plain_type] = STATE(3557), + [sym__plain_type_without_special] = STATE(2360), + [sym_anon_struct_type] = STATE(2362), + [sym_multi_return_type] = STATE(2360), + [sym_result_type] = STATE(2360), + [sym_option_type] = STATE(2360), + [sym_qualified_type] = STATE(3460), + [sym_fixed_array_type] = STATE(2362), + [sym_array_type] = STATE(2362), + [sym_pointer_type] = STATE(2362), + [sym_wrong_pointer_type] = STATE(2362), + [sym_map_type] = STATE(2362), + [sym_channel_type] = STATE(2362), + [sym_shared_type] = STATE(2362), + [sym_thread_type] = STATE(2362), + [sym_atomic_type] = STATE(2362), + [sym_generic_type] = STATE(2362), + [sym_function_type] = STATE(2362), + [sym_identifier] = ACTIONS(2477), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1428), - [anon_sym_LBRACE] = ACTIONS(1430), - [anon_sym_LPAREN] = ACTIONS(1432), - [anon_sym_fn] = ACTIONS(1434), - [anon_sym_PLUS] = ACTIONS(2491), - [anon_sym_DASH] = ACTIONS(2491), + [anon_sym_DOT] = ACTIONS(1430), + [anon_sym_LBRACE] = ACTIONS(1432), + [anon_sym_LPAREN] = ACTIONS(1434), + [anon_sym_fn] = ACTIONS(1436), + [anon_sym_PLUS] = ACTIONS(2271), + [anon_sym_DASH] = ACTIONS(2271), [anon_sym_STAR] = ACTIONS(3354), - [anon_sym_struct] = ACTIONS(1440), + [anon_sym_struct] = ACTIONS(1442), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), [anon_sym_BANG] = ACTIONS(3356), - [anon_sym_go] = ACTIONS(2497), - [anon_sym_spawn] = ACTIONS(2499), - [anon_sym_json_DOTdecode] = ACTIONS(1448), - [anon_sym_LBRACK2] = ACTIONS(1450), - [anon_sym_TILDE] = ACTIONS(2491), - [anon_sym_CARET] = ACTIONS(2491), + [anon_sym_go] = ACTIONS(2277), + [anon_sym_spawn] = ACTIONS(2279), + [anon_sym_json_DOTdecode] = ACTIONS(1450), + [anon_sym_LBRACK2] = ACTIONS(1452), + [anon_sym_TILDE] = ACTIONS(2271), + [anon_sym_CARET] = ACTIONS(2271), [anon_sym_AMP] = ACTIONS(3358), - [anon_sym_LT_DASH] = ACTIONS(2503), - [sym_none] = ACTIONS(1456), - [sym_true] = ACTIONS(1456), - [sym_false] = ACTIONS(1456), - [sym_nil] = ACTIONS(1456), - [anon_sym_if] = ACTIONS(1827), - [anon_sym_DOLLARif] = ACTIONS(1460), - [anon_sym_match] = ACTIONS(1462), - [anon_sym_select] = ACTIONS(1464), - [anon_sym_lock] = ACTIONS(1466), - [anon_sym_rlock] = ACTIONS(1466), - [anon_sym_unsafe] = ACTIONS(1833), - [anon_sym_sql] = ACTIONS(1470), - [sym_int_literal] = ACTIONS(1456), - [sym_float_literal] = ACTIONS(1472), - [sym_rune_literal] = ACTIONS(1472), - [sym_pseudo_compile_time_identifier] = ACTIONS(1474), + [anon_sym_LT_DASH] = ACTIONS(2283), + [sym_none] = ACTIONS(1458), + [sym_true] = ACTIONS(1458), + [sym_false] = ACTIONS(1458), + [sym_nil] = ACTIONS(1458), + [anon_sym_if] = ACTIONS(1833), + [anon_sym_DOLLARif] = ACTIONS(1462), + [anon_sym_match] = ACTIONS(1464), + [anon_sym_select] = ACTIONS(1466), + [anon_sym_lock] = ACTIONS(1468), + [anon_sym_rlock] = ACTIONS(1468), + [anon_sym_unsafe] = ACTIONS(1839), + [anon_sym_sql] = ACTIONS(1472), + [sym_int_literal] = ACTIONS(1458), + [sym_float_literal] = ACTIONS(1474), + [sym_rune_literal] = ACTIONS(1474), + [sym_pseudo_compile_time_identifier] = ACTIONS(1476), [anon_sym_shared] = ACTIONS(83), [anon_sym_map_LBRACK] = ACTIONS(85), [anon_sym_chan] = ACTIONS(87), [anon_sym_thread] = ACTIONS(89), [anon_sym_atomic] = ACTIONS(91), - [sym___double_quote] = ACTIONS(1478), - [sym___single_quote] = ACTIONS(1480), - [sym___c_double_quote] = ACTIONS(1482), - [sym___c_single_quote] = ACTIONS(1484), - [sym___r_double_quote] = ACTIONS(1486), - [sym___r_single_quote] = ACTIONS(1488), + [sym___double_quote] = ACTIONS(1480), + [sym___single_quote] = ACTIONS(1482), + [sym___c_double_quote] = ACTIONS(1484), + [sym___c_single_quote] = ACTIONS(1486), + [sym___r_double_quote] = ACTIONS(1488), + [sym___r_single_quote] = ACTIONS(1490), }, [604] = { [sym_line_comment] = STATE(604), [sym_block_comment] = STATE(604), - [sym__expression] = STATE(2449), - [sym__expression_without_blocks] = STATE(2625), - [sym__expression_with_blocks] = STATE(2625), - [sym_inc_expression] = STATE(2765), - [sym_dec_expression] = STATE(2765), - [sym_or_block_expression] = STATE(2765), - [sym_option_propagation_expression] = STATE(2765), - [sym_result_propagation_expression] = STATE(2765), - [sym_anon_struct_value_expression] = STATE(2619), - [sym_go_expression] = STATE(2765), - [sym_spawn_expression] = STATE(2765), - [sym_parenthesized_expression] = STATE(2765), - [sym_call_expression] = STATE(2765), - [sym_type_initializer] = STATE(2619), - [sym_function_literal] = STATE(2765), - [sym_reference_expression] = STATE(2764), - [sym_type_reference_expression] = STATE(3541), - [sym_unary_expression] = STATE(2765), - [sym_receive_expression] = STATE(2765), - [sym_binary_expression] = STATE(2765), - [sym_as_type_cast_expression] = STATE(2765), - [sym__max_group] = STATE(2765), - [sym_literal] = STATE(2769), - [sym_map_init_expression] = STATE(2619), - [sym_array_creation] = STATE(2765), - [sym_fixed_array_creation] = STATE(2765), - [sym_selector_expression] = STATE(2765), - [sym_index_expression] = STATE(2765), - [sym_slice_expression] = STATE(2765), - [sym_if_expression] = STATE(2619), - [sym_compile_time_if_expression] = STATE(2619), - [sym_is_expression] = STATE(2765), - [sym_in_expression] = STATE(2765), - [sym_enum_fetch] = STATE(2765), - [sym_match_expression] = STATE(2619), - [sym_select_expression] = STATE(2619), - [sym_lock_expression] = STATE(2619), - [sym_unsafe_expression] = STATE(2619), - [sym_sql_expression] = STATE(2619), - [sym_c_string_literal] = STATE(2660), - [sym_raw_string_literal] = STATE(2660), - [sym_interpreted_string_literal] = STATE(2660), - [sym_mutability_modifiers] = STATE(567), - [sym_plain_type] = STATE(4008), - [sym__plain_type_without_special] = STATE(2302), - [sym_anon_struct_type] = STATE(2303), - [sym_multi_return_type] = STATE(2302), - [sym_result_type] = STATE(2302), - [sym_option_type] = STATE(2302), - [sym_qualified_type] = STATE(3541), - [sym_fixed_array_type] = STATE(2303), - [sym_array_type] = STATE(2303), - [sym_pointer_type] = STATE(2303), - [sym_wrong_pointer_type] = STATE(2303), - [sym_map_type] = STATE(2303), - [sym_channel_type] = STATE(2303), - [sym_shared_type] = STATE(2303), - [sym_thread_type] = STATE(2303), - [sym_atomic_type] = STATE(2303), - [sym_generic_type] = STATE(2303), - [sym_function_type] = STATE(2303), - [sym_identifier] = ACTIONS(1807), + [sym__expression] = STATE(1109), + [sym__expression_without_blocks] = STATE(1210), + [sym__expression_with_blocks] = STATE(1210), + [sym_inc_expression] = STATE(1211), + [sym_dec_expression] = STATE(1211), + [sym_or_block_expression] = STATE(1211), + [sym_option_propagation_expression] = STATE(1211), + [sym_result_propagation_expression] = STATE(1211), + [sym_anon_struct_value_expression] = STATE(1212), + [sym_go_expression] = STATE(1211), + [sym_spawn_expression] = STATE(1211), + [sym_parenthesized_expression] = STATE(1211), + [sym_call_expression] = STATE(1211), + [sym_type_initializer] = STATE(1212), + [sym_function_literal] = STATE(1211), + [sym_reference_expression] = STATE(1233), + [sym_type_reference_expression] = STATE(3460), + [sym_unary_expression] = STATE(1211), + [sym_receive_expression] = STATE(1211), + [sym_binary_expression] = STATE(1211), + [sym_as_type_cast_expression] = STATE(1211), + [sym__max_group] = STATE(1211), + [sym_literal] = STATE(1209), + [sym_map_init_expression] = STATE(1212), + [sym_array_creation] = STATE(1211), + [sym_fixed_array_creation] = STATE(1211), + [sym_selector_expression] = STATE(1211), + [sym_index_expression] = STATE(1211), + [sym_slice_expression] = STATE(1211), + [sym_if_expression] = STATE(1212), + [sym_compile_time_if_expression] = STATE(1212), + [sym_is_expression] = STATE(1211), + [sym_in_expression] = STATE(1211), + [sym_enum_fetch] = STATE(1211), + [sym_match_expression] = STATE(1212), + [sym_select_expression] = STATE(1212), + [sym_lock_expression] = STATE(1212), + [sym_unsafe_expression] = STATE(1212), + [sym_sql_expression] = STATE(1212), + [sym_c_string_literal] = STATE(1201), + [sym_raw_string_literal] = STATE(1201), + [sym_interpreted_string_literal] = STATE(1201), + [sym_mutability_modifiers] = STATE(589), + [sym_plain_type] = STATE(4123), + [sym__plain_type_without_special] = STATE(2360), + [sym_anon_struct_type] = STATE(2362), + [sym_multi_return_type] = STATE(2360), + [sym_result_type] = STATE(2360), + [sym_option_type] = STATE(2360), + [sym_qualified_type] = STATE(3460), + [sym_fixed_array_type] = STATE(2362), + [sym_array_type] = STATE(2362), + [sym_pointer_type] = STATE(2362), + [sym_wrong_pointer_type] = STATE(2362), + [sym_map_type] = STATE(2362), + [sym_channel_type] = STATE(2362), + [sym_shared_type] = STATE(2362), + [sym_thread_type] = STATE(2362), + [sym_atomic_type] = STATE(2362), + [sym_generic_type] = STATE(2362), + [sym_function_type] = STATE(2362), + [sym_identifier] = ACTIONS(1139), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1081), - [anon_sym_LBRACE] = ACTIONS(1083), - [anon_sym_LPAREN] = ACTIONS(1087), - [anon_sym_fn] = ACTIONS(1089), - [anon_sym_PLUS] = ACTIONS(1091), - [anon_sym_DASH] = ACTIONS(1091), - [anon_sym_STAR] = ACTIONS(3348), - [anon_sym_struct] = ACTIONS(1095), - [anon_sym_mut] = ACTIONS(41), - [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(3350), - [anon_sym_go] = ACTIONS(1099), - [anon_sym_spawn] = ACTIONS(1101), - [anon_sym_json_DOTdecode] = ACTIONS(1103), - [anon_sym_LBRACK2] = ACTIONS(1105), - [anon_sym_TILDE] = ACTIONS(1091), - [anon_sym_CARET] = ACTIONS(1091), - [anon_sym_AMP] = ACTIONS(3352), - [anon_sym_LT_DASH] = ACTIONS(1109), - [sym_none] = ACTIONS(1111), - [sym_true] = ACTIONS(1111), - [sym_false] = ACTIONS(1111), - [sym_nil] = ACTIONS(1111), - [anon_sym_if] = ACTIONS(1113), - [anon_sym_DOLLARif] = ACTIONS(1117), - [anon_sym_match] = ACTIONS(1119), - [anon_sym_select] = ACTIONS(3104), - [anon_sym_lock] = ACTIONS(3106), - [anon_sym_rlock] = ACTIONS(3106), - [anon_sym_unsafe] = ACTIONS(1125), - [anon_sym_sql] = ACTIONS(1127), - [sym_int_literal] = ACTIONS(1111), - [sym_float_literal] = ACTIONS(1129), - [sym_rune_literal] = ACTIONS(1129), - [sym_pseudo_compile_time_identifier] = ACTIONS(1131), + [anon_sym_DOT] = ACTIONS(631), + [anon_sym_LBRACE] = ACTIONS(633), + [anon_sym_LPAREN] = ACTIONS(637), + [anon_sym_fn] = ACTIONS(641), + [anon_sym_PLUS] = ACTIONS(643), + [anon_sym_DASH] = ACTIONS(643), + [anon_sym_STAR] = ACTIONS(645), + [anon_sym_struct] = ACTIONS(649), + [anon_sym_mut] = ACTIONS(41), + [anon_sym_QMARK] = ACTIONS(47), + [anon_sym_BANG] = ACTIONS(655), + [anon_sym_go] = ACTIONS(657), + [anon_sym_spawn] = ACTIONS(659), + [anon_sym_json_DOTdecode] = ACTIONS(661), + [anon_sym_LBRACK2] = ACTIONS(663), + [anon_sym_TILDE] = ACTIONS(643), + [anon_sym_CARET] = ACTIONS(643), + [anon_sym_AMP] = ACTIONS(665), + [anon_sym_LT_DASH] = ACTIONS(667), + [sym_none] = ACTIONS(669), + [sym_true] = ACTIONS(669), + [sym_false] = ACTIONS(669), + [sym_nil] = ACTIONS(669), + [anon_sym_if] = ACTIONS(671), + [anon_sym_DOLLARif] = ACTIONS(673), + [anon_sym_match] = ACTIONS(675), + [anon_sym_select] = ACTIONS(677), + [anon_sym_lock] = ACTIONS(679), + [anon_sym_rlock] = ACTIONS(679), + [anon_sym_unsafe] = ACTIONS(681), + [anon_sym_sql] = ACTIONS(683), + [sym_int_literal] = ACTIONS(669), + [sym_float_literal] = ACTIONS(685), + [sym_rune_literal] = ACTIONS(685), + [sym_pseudo_compile_time_identifier] = ACTIONS(687), [anon_sym_shared] = ACTIONS(83), [anon_sym_map_LBRACK] = ACTIONS(85), [anon_sym_chan] = ACTIONS(87), [anon_sym_thread] = ACTIONS(89), [anon_sym_atomic] = ACTIONS(91), - [sym___double_quote] = ACTIONS(1133), - [sym___single_quote] = ACTIONS(1135), - [sym___c_double_quote] = ACTIONS(1137), - [sym___c_single_quote] = ACTIONS(1139), - [sym___r_double_quote] = ACTIONS(1141), - [sym___r_single_quote] = ACTIONS(1143), + [sym___double_quote] = ACTIONS(689), + [sym___single_quote] = ACTIONS(691), + [sym___c_double_quote] = ACTIONS(693), + [sym___c_single_quote] = ACTIONS(695), + [sym___r_double_quote] = ACTIONS(697), + [sym___r_single_quote] = ACTIONS(699), }, [605] = { [sym_line_comment] = STATE(605), [sym_block_comment] = STATE(605), - [sym__expression] = STATE(2450), - [sym__expression_without_blocks] = STATE(2625), - [sym__expression_with_blocks] = STATE(2625), - [sym_inc_expression] = STATE(2765), - [sym_dec_expression] = STATE(2765), - [sym_or_block_expression] = STATE(2765), - [sym_option_propagation_expression] = STATE(2765), - [sym_result_propagation_expression] = STATE(2765), - [sym_anon_struct_value_expression] = STATE(2619), - [sym_go_expression] = STATE(2765), - [sym_spawn_expression] = STATE(2765), - [sym_parenthesized_expression] = STATE(2765), - [sym_call_expression] = STATE(2765), - [sym_type_initializer] = STATE(2619), - [sym_function_literal] = STATE(2765), - [sym_reference_expression] = STATE(2764), - [sym_type_reference_expression] = STATE(3541), - [sym_unary_expression] = STATE(2765), - [sym_receive_expression] = STATE(2765), - [sym_binary_expression] = STATE(2765), - [sym_as_type_cast_expression] = STATE(2765), - [sym__max_group] = STATE(2765), - [sym_literal] = STATE(2769), - [sym_map_init_expression] = STATE(2619), - [sym_array_creation] = STATE(2765), - [sym_fixed_array_creation] = STATE(2765), - [sym_selector_expression] = STATE(2765), - [sym_index_expression] = STATE(2765), - [sym_slice_expression] = STATE(2765), - [sym_if_expression] = STATE(2619), - [sym_compile_time_if_expression] = STATE(2619), - [sym_is_expression] = STATE(2765), - [sym_in_expression] = STATE(2765), - [sym_enum_fetch] = STATE(2765), - [sym_match_expression] = STATE(2619), - [sym_select_expression] = STATE(2619), - [sym_lock_expression] = STATE(2619), - [sym_unsafe_expression] = STATE(2619), - [sym_sql_expression] = STATE(2619), - [sym_c_string_literal] = STATE(2660), - [sym_raw_string_literal] = STATE(2660), - [sym_interpreted_string_literal] = STATE(2660), - [sym_mutability_modifiers] = STATE(567), - [sym_plain_type] = STATE(4008), - [sym__plain_type_without_special] = STATE(2302), - [sym_anon_struct_type] = STATE(2303), - [sym_multi_return_type] = STATE(2302), - [sym_result_type] = STATE(2302), - [sym_option_type] = STATE(2302), - [sym_qualified_type] = STATE(3541), - [sym_fixed_array_type] = STATE(2303), - [sym_array_type] = STATE(2303), - [sym_pointer_type] = STATE(2303), - [sym_wrong_pointer_type] = STATE(2303), - [sym_map_type] = STATE(2303), - [sym_channel_type] = STATE(2303), - [sym_shared_type] = STATE(2303), - [sym_thread_type] = STATE(2303), - [sym_atomic_type] = STATE(2303), - [sym_generic_type] = STATE(2303), - [sym_function_type] = STATE(2303), - [sym_identifier] = ACTIONS(1807), + [sym__expression] = STATE(1108), + [sym__expression_without_blocks] = STATE(1210), + [sym__expression_with_blocks] = STATE(1210), + [sym_inc_expression] = STATE(1211), + [sym_dec_expression] = STATE(1211), + [sym_or_block_expression] = STATE(1211), + [sym_option_propagation_expression] = STATE(1211), + [sym_result_propagation_expression] = STATE(1211), + [sym_anon_struct_value_expression] = STATE(1212), + [sym_go_expression] = STATE(1211), + [sym_spawn_expression] = STATE(1211), + [sym_parenthesized_expression] = STATE(1211), + [sym_call_expression] = STATE(1211), + [sym_type_initializer] = STATE(1212), + [sym_function_literal] = STATE(1211), + [sym_reference_expression] = STATE(1233), + [sym_type_reference_expression] = STATE(3460), + [sym_unary_expression] = STATE(1211), + [sym_receive_expression] = STATE(1211), + [sym_binary_expression] = STATE(1211), + [sym_as_type_cast_expression] = STATE(1211), + [sym__max_group] = STATE(1211), + [sym_literal] = STATE(1209), + [sym_map_init_expression] = STATE(1212), + [sym_array_creation] = STATE(1211), + [sym_fixed_array_creation] = STATE(1211), + [sym_selector_expression] = STATE(1211), + [sym_index_expression] = STATE(1211), + [sym_slice_expression] = STATE(1211), + [sym_if_expression] = STATE(1212), + [sym_compile_time_if_expression] = STATE(1212), + [sym_is_expression] = STATE(1211), + [sym_in_expression] = STATE(1211), + [sym_enum_fetch] = STATE(1211), + [sym_match_expression] = STATE(1212), + [sym_select_expression] = STATE(1212), + [sym_lock_expression] = STATE(1212), + [sym_unsafe_expression] = STATE(1212), + [sym_sql_expression] = STATE(1212), + [sym_c_string_literal] = STATE(1201), + [sym_raw_string_literal] = STATE(1201), + [sym_interpreted_string_literal] = STATE(1201), + [sym_mutability_modifiers] = STATE(589), + [sym_plain_type] = STATE(4123), + [sym__plain_type_without_special] = STATE(2360), + [sym_anon_struct_type] = STATE(2362), + [sym_multi_return_type] = STATE(2360), + [sym_result_type] = STATE(2360), + [sym_option_type] = STATE(2360), + [sym_qualified_type] = STATE(3460), + [sym_fixed_array_type] = STATE(2362), + [sym_array_type] = STATE(2362), + [sym_pointer_type] = STATE(2362), + [sym_wrong_pointer_type] = STATE(2362), + [sym_map_type] = STATE(2362), + [sym_channel_type] = STATE(2362), + [sym_shared_type] = STATE(2362), + [sym_thread_type] = STATE(2362), + [sym_atomic_type] = STATE(2362), + [sym_generic_type] = STATE(2362), + [sym_function_type] = STATE(2362), + [sym_identifier] = ACTIONS(1139), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1081), - [anon_sym_LBRACE] = ACTIONS(1083), - [anon_sym_LPAREN] = ACTIONS(1087), - [anon_sym_fn] = ACTIONS(1089), - [anon_sym_PLUS] = ACTIONS(1091), - [anon_sym_DASH] = ACTIONS(1091), - [anon_sym_STAR] = ACTIONS(3348), - [anon_sym_struct] = ACTIONS(1095), + [anon_sym_DOT] = ACTIONS(631), + [anon_sym_LBRACE] = ACTIONS(633), + [anon_sym_LPAREN] = ACTIONS(637), + [anon_sym_fn] = ACTIONS(641), + [anon_sym_PLUS] = ACTIONS(643), + [anon_sym_DASH] = ACTIONS(643), + [anon_sym_STAR] = ACTIONS(645), + [anon_sym_struct] = ACTIONS(649), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(3350), - [anon_sym_go] = ACTIONS(1099), - [anon_sym_spawn] = ACTIONS(1101), - [anon_sym_json_DOTdecode] = ACTIONS(1103), - [anon_sym_LBRACK2] = ACTIONS(1105), - [anon_sym_TILDE] = ACTIONS(1091), - [anon_sym_CARET] = ACTIONS(1091), - [anon_sym_AMP] = ACTIONS(3352), - [anon_sym_LT_DASH] = ACTIONS(1109), - [sym_none] = ACTIONS(1111), - [sym_true] = ACTIONS(1111), - [sym_false] = ACTIONS(1111), - [sym_nil] = ACTIONS(1111), - [anon_sym_if] = ACTIONS(1113), - [anon_sym_DOLLARif] = ACTIONS(1117), - [anon_sym_match] = ACTIONS(1119), - [anon_sym_select] = ACTIONS(3104), - [anon_sym_lock] = ACTIONS(3106), - [anon_sym_rlock] = ACTIONS(3106), - [anon_sym_unsafe] = ACTIONS(1125), - [anon_sym_sql] = ACTIONS(1127), - [sym_int_literal] = ACTIONS(1111), - [sym_float_literal] = ACTIONS(1129), - [sym_rune_literal] = ACTIONS(1129), - [sym_pseudo_compile_time_identifier] = ACTIONS(1131), + [anon_sym_BANG] = ACTIONS(655), + [anon_sym_go] = ACTIONS(657), + [anon_sym_spawn] = ACTIONS(659), + [anon_sym_json_DOTdecode] = ACTIONS(661), + [anon_sym_LBRACK2] = ACTIONS(663), + [anon_sym_TILDE] = ACTIONS(643), + [anon_sym_CARET] = ACTIONS(643), + [anon_sym_AMP] = ACTIONS(665), + [anon_sym_LT_DASH] = ACTIONS(667), + [sym_none] = ACTIONS(669), + [sym_true] = ACTIONS(669), + [sym_false] = ACTIONS(669), + [sym_nil] = ACTIONS(669), + [anon_sym_if] = ACTIONS(671), + [anon_sym_DOLLARif] = ACTIONS(673), + [anon_sym_match] = ACTIONS(675), + [anon_sym_select] = ACTIONS(677), + [anon_sym_lock] = ACTIONS(679), + [anon_sym_rlock] = ACTIONS(679), + [anon_sym_unsafe] = ACTIONS(681), + [anon_sym_sql] = ACTIONS(683), + [sym_int_literal] = ACTIONS(669), + [sym_float_literal] = ACTIONS(685), + [sym_rune_literal] = ACTIONS(685), + [sym_pseudo_compile_time_identifier] = ACTIONS(687), [anon_sym_shared] = ACTIONS(83), [anon_sym_map_LBRACK] = ACTIONS(85), [anon_sym_chan] = ACTIONS(87), [anon_sym_thread] = ACTIONS(89), [anon_sym_atomic] = ACTIONS(91), - [sym___double_quote] = ACTIONS(1133), - [sym___single_quote] = ACTIONS(1135), - [sym___c_double_quote] = ACTIONS(1137), - [sym___c_single_quote] = ACTIONS(1139), - [sym___r_double_quote] = ACTIONS(1141), - [sym___r_single_quote] = ACTIONS(1143), + [sym___double_quote] = ACTIONS(689), + [sym___single_quote] = ACTIONS(691), + [sym___c_double_quote] = ACTIONS(693), + [sym___c_single_quote] = ACTIONS(695), + [sym___r_double_quote] = ACTIONS(697), + [sym___r_single_quote] = ACTIONS(699), }, [606] = { [sym_line_comment] = STATE(606), [sym_block_comment] = STATE(606), - [sym__expression] = STATE(1659), - [sym__expression_without_blocks] = STATE(1891), - [sym__expression_with_blocks] = STATE(1891), - [sym_inc_expression] = STATE(1893), - [sym_dec_expression] = STATE(1893), - [sym_or_block_expression] = STATE(1893), - [sym_option_propagation_expression] = STATE(1893), - [sym_result_propagation_expression] = STATE(1893), - [sym_anon_struct_value_expression] = STATE(1895), - [sym_go_expression] = STATE(1893), - [sym_spawn_expression] = STATE(1893), - [sym_parenthesized_expression] = STATE(1893), - [sym_call_expression] = STATE(1893), - [sym_type_initializer] = STATE(1895), - [sym_function_literal] = STATE(1893), - [sym_reference_expression] = STATE(1782), - [sym_type_reference_expression] = STATE(3541), - [sym_unary_expression] = STATE(1893), - [sym_receive_expression] = STATE(1893), - [sym_binary_expression] = STATE(1893), - [sym_as_type_cast_expression] = STATE(1893), - [sym__max_group] = STATE(1893), - [sym_literal] = STATE(1889), - [sym_map_init_expression] = STATE(1895), - [sym_array_creation] = STATE(1893), - [sym_fixed_array_creation] = STATE(1893), - [sym_selector_expression] = STATE(1893), - [sym_index_expression] = STATE(1893), - [sym_slice_expression] = STATE(1893), - [sym_if_expression] = STATE(1895), - [sym_compile_time_if_expression] = STATE(1895), - [sym_is_expression] = STATE(1893), - [sym_in_expression] = STATE(1893), - [sym_enum_fetch] = STATE(1893), - [sym_match_expression] = STATE(1895), - [sym_select_expression] = STATE(1895), - [sym_lock_expression] = STATE(1895), - [sym_unsafe_expression] = STATE(1895), - [sym_sql_expression] = STATE(1895), - [sym_c_string_literal] = STATE(1882), - [sym_raw_string_literal] = STATE(1882), - [sym_interpreted_string_literal] = STATE(1882), - [sym_mutability_modifiers] = STATE(561), - [sym_plain_type] = STATE(4199), - [sym__plain_type_without_special] = STATE(2302), - [sym_anon_struct_type] = STATE(2303), - [sym_multi_return_type] = STATE(2302), - [sym_result_type] = STATE(2302), - [sym_option_type] = STATE(2302), - [sym_qualified_type] = STATE(3541), - [sym_fixed_array_type] = STATE(2303), - [sym_array_type] = STATE(2303), - [sym_pointer_type] = STATE(2303), - [sym_wrong_pointer_type] = STATE(2303), - [sym_map_type] = STATE(2303), - [sym_channel_type] = STATE(2303), - [sym_shared_type] = STATE(2303), - [sym_thread_type] = STATE(2303), - [sym_atomic_type] = STATE(2303), - [sym_generic_type] = STATE(2303), - [sym_function_type] = STATE(2303), - [sym_identifier] = ACTIONS(3170), + [sym__expression] = STATE(2774), + [sym__expression_without_blocks] = STATE(2347), + [sym__expression_with_blocks] = STATE(2347), + [sym_inc_expression] = STATE(2379), + [sym_dec_expression] = STATE(2379), + [sym_or_block_expression] = STATE(2379), + [sym_option_propagation_expression] = STATE(2379), + [sym_result_propagation_expression] = STATE(2379), + [sym_anon_struct_value_expression] = STATE(2378), + [sym_go_expression] = STATE(2379), + [sym_spawn_expression] = STATE(2379), + [sym_parenthesized_expression] = STATE(2379), + [sym_call_expression] = STATE(2379), + [sym_type_initializer] = STATE(2378), + [sym_function_literal] = STATE(2379), + [sym_reference_expression] = STATE(2377), + [sym_type_reference_expression] = STATE(3460), + [sym_unary_expression] = STATE(2379), + [sym_receive_expression] = STATE(2379), + [sym_binary_expression] = STATE(2379), + [sym_as_type_cast_expression] = STATE(2379), + [sym__max_group] = STATE(2379), + [sym_literal] = STATE(2392), + [sym_map_init_expression] = STATE(2378), + [sym_array_creation] = STATE(2379), + [sym_fixed_array_creation] = STATE(2379), + [sym_selector_expression] = STATE(2379), + [sym_index_expression] = STATE(2379), + [sym_slice_expression] = STATE(2379), + [sym_if_expression] = STATE(2378), + [sym_compile_time_if_expression] = STATE(2378), + [sym_is_expression] = STATE(2379), + [sym_in_expression] = STATE(2379), + [sym_enum_fetch] = STATE(2379), + [sym_match_expression] = STATE(2378), + [sym_select_expression] = STATE(2378), + [sym_lock_expression] = STATE(2378), + [sym_unsafe_expression] = STATE(2378), + [sym_sql_expression] = STATE(2378), + [sym_c_string_literal] = STATE(2401), + [sym_raw_string_literal] = STATE(2401), + [sym_interpreted_string_literal] = STATE(2401), + [sym_mutability_modifiers] = STATE(939), + [sym_plain_type] = STATE(4160), + [sym__plain_type_without_special] = STATE(2360), + [sym_anon_struct_type] = STATE(2362), + [sym_multi_return_type] = STATE(2360), + [sym_result_type] = STATE(2360), + [sym_option_type] = STATE(2360), + [sym_qualified_type] = STATE(3460), + [sym_fixed_array_type] = STATE(2362), + [sym_array_type] = STATE(2362), + [sym_pointer_type] = STATE(2362), + [sym_wrong_pointer_type] = STATE(2362), + [sym_map_type] = STATE(2362), + [sym_channel_type] = STATE(2362), + [sym_shared_type] = STATE(2362), + [sym_thread_type] = STATE(2362), + [sym_atomic_type] = STATE(2362), + [sym_generic_type] = STATE(2362), + [sym_function_type] = STATE(2362), + [sym_identifier] = ACTIONS(2477), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(3172), - [anon_sym_LBRACE] = ACTIONS(3174), - [anon_sym_LPAREN] = ACTIONS(3176), - [anon_sym_fn] = ACTIONS(3178), - [anon_sym_PLUS] = ACTIONS(3180), - [anon_sym_DASH] = ACTIONS(3180), - [anon_sym_STAR] = ACTIONS(3182), - [anon_sym_struct] = ACTIONS(3184), + [anon_sym_DOT] = ACTIONS(1430), + [anon_sym_LBRACE] = ACTIONS(1432), + [anon_sym_LPAREN] = ACTIONS(1434), + [anon_sym_fn] = ACTIONS(1436), + [anon_sym_PLUS] = ACTIONS(2271), + [anon_sym_DASH] = ACTIONS(2271), + [anon_sym_STAR] = ACTIONS(3354), + [anon_sym_struct] = ACTIONS(1442), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(3186), - [anon_sym_go] = ACTIONS(3188), - [anon_sym_spawn] = ACTIONS(3190), - [anon_sym_json_DOTdecode] = ACTIONS(3192), - [anon_sym_LBRACK2] = ACTIONS(3194), - [anon_sym_TILDE] = ACTIONS(3180), - [anon_sym_CARET] = ACTIONS(3180), - [anon_sym_AMP] = ACTIONS(3196), - [anon_sym_LT_DASH] = ACTIONS(3198), - [sym_none] = ACTIONS(3200), - [sym_true] = ACTIONS(3200), - [sym_false] = ACTIONS(3200), - [sym_nil] = ACTIONS(3200), - [anon_sym_if] = ACTIONS(3202), - [anon_sym_DOLLARif] = ACTIONS(3204), - [anon_sym_match] = ACTIONS(3206), - [anon_sym_select] = ACTIONS(3208), - [anon_sym_lock] = ACTIONS(3210), - [anon_sym_rlock] = ACTIONS(3210), - [anon_sym_unsafe] = ACTIONS(3212), - [anon_sym_sql] = ACTIONS(3214), - [sym_int_literal] = ACTIONS(3200), - [sym_float_literal] = ACTIONS(3216), - [sym_rune_literal] = ACTIONS(3216), - [sym_pseudo_compile_time_identifier] = ACTIONS(3218), + [anon_sym_BANG] = ACTIONS(3356), + [anon_sym_go] = ACTIONS(2277), + [anon_sym_spawn] = ACTIONS(2279), + [anon_sym_json_DOTdecode] = ACTIONS(1450), + [anon_sym_LBRACK2] = ACTIONS(1452), + [anon_sym_TILDE] = ACTIONS(2271), + [anon_sym_CARET] = ACTIONS(2271), + [anon_sym_AMP] = ACTIONS(3358), + [anon_sym_LT_DASH] = ACTIONS(2283), + [sym_none] = ACTIONS(1458), + [sym_true] = ACTIONS(1458), + [sym_false] = ACTIONS(1458), + [sym_nil] = ACTIONS(1458), + [anon_sym_if] = ACTIONS(1833), + [anon_sym_DOLLARif] = ACTIONS(1462), + [anon_sym_match] = ACTIONS(1464), + [anon_sym_select] = ACTIONS(1466), + [anon_sym_lock] = ACTIONS(1468), + [anon_sym_rlock] = ACTIONS(1468), + [anon_sym_unsafe] = ACTIONS(1839), + [anon_sym_sql] = ACTIONS(1472), + [sym_int_literal] = ACTIONS(1458), + [sym_float_literal] = ACTIONS(1474), + [sym_rune_literal] = ACTIONS(1474), + [sym_pseudo_compile_time_identifier] = ACTIONS(1476), [anon_sym_shared] = ACTIONS(83), [anon_sym_map_LBRACK] = ACTIONS(85), [anon_sym_chan] = ACTIONS(87), [anon_sym_thread] = ACTIONS(89), [anon_sym_atomic] = ACTIONS(91), - [sym___double_quote] = ACTIONS(3220), - [sym___single_quote] = ACTIONS(3222), - [sym___c_double_quote] = ACTIONS(3224), - [sym___c_single_quote] = ACTIONS(3226), - [sym___r_double_quote] = ACTIONS(3228), - [sym___r_single_quote] = ACTIONS(3230), + [sym___double_quote] = ACTIONS(1480), + [sym___single_quote] = ACTIONS(1482), + [sym___c_double_quote] = ACTIONS(1484), + [sym___c_single_quote] = ACTIONS(1486), + [sym___r_double_quote] = ACTIONS(1488), + [sym___r_single_quote] = ACTIONS(1490), }, [607] = { [sym_line_comment] = STATE(607), [sym_block_comment] = STATE(607), - [sym__expression] = STATE(2416), - [sym__expression_without_blocks] = STATE(2625), - [sym__expression_with_blocks] = STATE(2625), - [sym_inc_expression] = STATE(2765), - [sym_dec_expression] = STATE(2765), - [sym_or_block_expression] = STATE(2765), - [sym_option_propagation_expression] = STATE(2765), - [sym_result_propagation_expression] = STATE(2765), - [sym_anon_struct_value_expression] = STATE(2619), - [sym_go_expression] = STATE(2765), - [sym_spawn_expression] = STATE(2765), - [sym_parenthesized_expression] = STATE(2765), - [sym_call_expression] = STATE(2765), - [sym_type_initializer] = STATE(2619), - [sym_function_literal] = STATE(2765), - [sym_reference_expression] = STATE(2764), - [sym_type_reference_expression] = STATE(3541), - [sym_unary_expression] = STATE(2765), - [sym_receive_expression] = STATE(2765), - [sym_binary_expression] = STATE(2765), - [sym_as_type_cast_expression] = STATE(2765), - [sym__max_group] = STATE(2765), - [sym_literal] = STATE(2769), - [sym_map_init_expression] = STATE(2619), - [sym_array_creation] = STATE(2765), - [sym_fixed_array_creation] = STATE(2765), - [sym_selector_expression] = STATE(2765), - [sym_index_expression] = STATE(2765), - [sym_slice_expression] = STATE(2765), - [sym_if_expression] = STATE(2619), - [sym_compile_time_if_expression] = STATE(2619), - [sym_is_expression] = STATE(2765), - [sym_in_expression] = STATE(2765), - [sym_enum_fetch] = STATE(2765), - [sym_match_expression] = STATE(2619), - [sym_select_expression] = STATE(2619), - [sym_lock_expression] = STATE(2619), - [sym_unsafe_expression] = STATE(2619), - [sym_sql_expression] = STATE(2619), - [sym_c_string_literal] = STATE(2660), - [sym_raw_string_literal] = STATE(2660), - [sym_interpreted_string_literal] = STATE(2660), - [sym_mutability_modifiers] = STATE(567), - [sym_plain_type] = STATE(4008), - [sym__plain_type_without_special] = STATE(2302), - [sym_anon_struct_type] = STATE(2303), - [sym_multi_return_type] = STATE(2302), - [sym_result_type] = STATE(2302), - [sym_option_type] = STATE(2302), - [sym_qualified_type] = STATE(3541), - [sym_fixed_array_type] = STATE(2303), - [sym_array_type] = STATE(2303), - [sym_pointer_type] = STATE(2303), - [sym_wrong_pointer_type] = STATE(2303), - [sym_map_type] = STATE(2303), - [sym_channel_type] = STATE(2303), - [sym_shared_type] = STATE(2303), - [sym_thread_type] = STATE(2303), - [sym_atomic_type] = STATE(2303), - [sym_generic_type] = STATE(2303), - [sym_function_type] = STATE(2303), - [sym_identifier] = ACTIONS(1807), + [sym__expression] = STATE(2267), + [sym__expression_without_blocks] = STATE(2347), + [sym__expression_with_blocks] = STATE(2347), + [sym_inc_expression] = STATE(2379), + [sym_dec_expression] = STATE(2379), + [sym_or_block_expression] = STATE(2379), + [sym_option_propagation_expression] = STATE(2379), + [sym_result_propagation_expression] = STATE(2379), + [sym_anon_struct_value_expression] = STATE(2378), + [sym_go_expression] = STATE(2379), + [sym_spawn_expression] = STATE(2379), + [sym_parenthesized_expression] = STATE(2379), + [sym_call_expression] = STATE(2379), + [sym_type_initializer] = STATE(2378), + [sym_function_literal] = STATE(2379), + [sym_reference_expression] = STATE(2377), + [sym_type_reference_expression] = STATE(3460), + [sym_unary_expression] = STATE(2379), + [sym_receive_expression] = STATE(2379), + [sym_binary_expression] = STATE(2379), + [sym_as_type_cast_expression] = STATE(2379), + [sym__max_group] = STATE(2379), + [sym_literal] = STATE(2392), + [sym_map_init_expression] = STATE(2378), + [sym_array_creation] = STATE(2379), + [sym_fixed_array_creation] = STATE(2379), + [sym_selector_expression] = STATE(2379), + [sym_index_expression] = STATE(2379), + [sym_slice_expression] = STATE(2379), + [sym_if_expression] = STATE(2378), + [sym_compile_time_if_expression] = STATE(2378), + [sym_is_expression] = STATE(2379), + [sym_in_expression] = STATE(2379), + [sym_enum_fetch] = STATE(2379), + [sym_match_expression] = STATE(2378), + [sym_select_expression] = STATE(2378), + [sym_lock_expression] = STATE(2378), + [sym_unsafe_expression] = STATE(2378), + [sym_sql_expression] = STATE(2378), + [sym_c_string_literal] = STATE(2401), + [sym_raw_string_literal] = STATE(2401), + [sym_interpreted_string_literal] = STATE(2401), + [sym_mutability_modifiers] = STATE(939), + [sym_plain_type] = STATE(3559), + [sym__plain_type_without_special] = STATE(2360), + [sym_anon_struct_type] = STATE(2362), + [sym_multi_return_type] = STATE(2360), + [sym_result_type] = STATE(2360), + [sym_option_type] = STATE(2360), + [sym_qualified_type] = STATE(3460), + [sym_fixed_array_type] = STATE(2362), + [sym_array_type] = STATE(2362), + [sym_pointer_type] = STATE(2362), + [sym_wrong_pointer_type] = STATE(2362), + [sym_map_type] = STATE(2362), + [sym_channel_type] = STATE(2362), + [sym_shared_type] = STATE(2362), + [sym_thread_type] = STATE(2362), + [sym_atomic_type] = STATE(2362), + [sym_generic_type] = STATE(2362), + [sym_function_type] = STATE(2362), + [sym_identifier] = ACTIONS(2127), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1081), - [anon_sym_LBRACE] = ACTIONS(1083), - [anon_sym_LPAREN] = ACTIONS(1087), - [anon_sym_fn] = ACTIONS(1089), - [anon_sym_PLUS] = ACTIONS(1091), - [anon_sym_DASH] = ACTIONS(1091), - [anon_sym_STAR] = ACTIONS(3348), - [anon_sym_struct] = ACTIONS(1095), + [anon_sym_DOT] = ACTIONS(1430), + [anon_sym_LBRACE] = ACTIONS(1432), + [anon_sym_LPAREN] = ACTIONS(1434), + [anon_sym_fn] = ACTIONS(1436), + [anon_sym_PLUS] = ACTIONS(1438), + [anon_sym_DASH] = ACTIONS(1438), + [anon_sym_STAR] = ACTIONS(2129), + [anon_sym_struct] = ACTIONS(1442), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(3350), - [anon_sym_go] = ACTIONS(1099), - [anon_sym_spawn] = ACTIONS(1101), - [anon_sym_json_DOTdecode] = ACTIONS(1103), - [anon_sym_LBRACK2] = ACTIONS(1105), - [anon_sym_TILDE] = ACTIONS(1091), - [anon_sym_CARET] = ACTIONS(1091), - [anon_sym_AMP] = ACTIONS(3352), - [anon_sym_LT_DASH] = ACTIONS(1109), - [sym_none] = ACTIONS(1111), - [sym_true] = ACTIONS(1111), - [sym_false] = ACTIONS(1111), - [sym_nil] = ACTIONS(1111), - [anon_sym_if] = ACTIONS(1113), - [anon_sym_DOLLARif] = ACTIONS(1117), - [anon_sym_match] = ACTIONS(1119), - [anon_sym_select] = ACTIONS(3104), - [anon_sym_lock] = ACTIONS(3106), - [anon_sym_rlock] = ACTIONS(3106), - [anon_sym_unsafe] = ACTIONS(1125), - [anon_sym_sql] = ACTIONS(1127), - [sym_int_literal] = ACTIONS(1111), - [sym_float_literal] = ACTIONS(1129), - [sym_rune_literal] = ACTIONS(1129), - [sym_pseudo_compile_time_identifier] = ACTIONS(1131), + [anon_sym_BANG] = ACTIONS(2131), + [anon_sym_go] = ACTIONS(1446), + [anon_sym_spawn] = ACTIONS(1448), + [anon_sym_json_DOTdecode] = ACTIONS(1450), + [anon_sym_LBRACK2] = ACTIONS(1452), + [anon_sym_TILDE] = ACTIONS(1438), + [anon_sym_CARET] = ACTIONS(1438), + [anon_sym_AMP] = ACTIONS(2133), + [anon_sym_LT_DASH] = ACTIONS(1456), + [sym_none] = ACTIONS(1458), + [sym_true] = ACTIONS(1458), + [sym_false] = ACTIONS(1458), + [sym_nil] = ACTIONS(1458), + [anon_sym_if] = ACTIONS(1833), + [anon_sym_DOLLARif] = ACTIONS(1462), + [anon_sym_match] = ACTIONS(1464), + [anon_sym_select] = ACTIONS(1466), + [anon_sym_lock] = ACTIONS(1468), + [anon_sym_rlock] = ACTIONS(1468), + [anon_sym_unsafe] = ACTIONS(1839), + [anon_sym_sql] = ACTIONS(1472), + [sym_int_literal] = ACTIONS(1458), + [sym_float_literal] = ACTIONS(1474), + [sym_rune_literal] = ACTIONS(1474), + [sym_pseudo_compile_time_identifier] = ACTIONS(1476), [anon_sym_shared] = ACTIONS(83), [anon_sym_map_LBRACK] = ACTIONS(85), [anon_sym_chan] = ACTIONS(87), [anon_sym_thread] = ACTIONS(89), [anon_sym_atomic] = ACTIONS(91), - [sym___double_quote] = ACTIONS(1133), - [sym___single_quote] = ACTIONS(1135), - [sym___c_double_quote] = ACTIONS(1137), - [sym___c_single_quote] = ACTIONS(1139), - [sym___r_double_quote] = ACTIONS(1141), - [sym___r_single_quote] = ACTIONS(1143), + [sym___double_quote] = ACTIONS(1480), + [sym___single_quote] = ACTIONS(1482), + [sym___c_double_quote] = ACTIONS(1484), + [sym___c_single_quote] = ACTIONS(1486), + [sym___r_double_quote] = ACTIONS(1488), + [sym___r_single_quote] = ACTIONS(1490), }, [608] = { [sym_line_comment] = STATE(608), [sym_block_comment] = STATE(608), - [sym__expression] = STATE(2119), - [sym__expression_without_blocks] = STATE(2226), - [sym__expression_with_blocks] = STATE(2226), - [sym_inc_expression] = STATE(2247), - [sym_dec_expression] = STATE(2247), - [sym_or_block_expression] = STATE(2247), - [sym_option_propagation_expression] = STATE(2247), - [sym_result_propagation_expression] = STATE(2247), - [sym_anon_struct_value_expression] = STATE(2248), - [sym_go_expression] = STATE(2247), - [sym_spawn_expression] = STATE(2247), - [sym_parenthesized_expression] = STATE(2247), - [sym_call_expression] = STATE(2247), - [sym_type_initializer] = STATE(2248), - [sym_function_literal] = STATE(2247), - [sym_reference_expression] = STATE(2252), - [sym_type_reference_expression] = STATE(3541), - [sym_unary_expression] = STATE(2247), - [sym_receive_expression] = STATE(2247), - [sym_binary_expression] = STATE(2247), - [sym_as_type_cast_expression] = STATE(2247), - [sym__max_group] = STATE(2247), - [sym_literal] = STATE(2155), - [sym_map_init_expression] = STATE(2248), - [sym_array_creation] = STATE(2247), - [sym_fixed_array_creation] = STATE(2247), - [sym_selector_expression] = STATE(2247), - [sym_index_expression] = STATE(2247), - [sym_slice_expression] = STATE(2247), - [sym_if_expression] = STATE(2248), - [sym_compile_time_if_expression] = STATE(2248), - [sym_is_expression] = STATE(2247), - [sym_in_expression] = STATE(2247), - [sym_enum_fetch] = STATE(2247), - [sym_match_expression] = STATE(2248), - [sym_select_expression] = STATE(2248), - [sym_lock_expression] = STATE(2248), - [sym_unsafe_expression] = STATE(2248), - [sym_sql_expression] = STATE(2248), - [sym_c_string_literal] = STATE(2153), - [sym_raw_string_literal] = STATE(2153), - [sym_interpreted_string_literal] = STATE(2153), - [sym_mutability_modifiers] = STATE(631), - [sym_plain_type] = STATE(4180), - [sym__plain_type_without_special] = STATE(2302), - [sym_anon_struct_type] = STATE(2303), - [sym_multi_return_type] = STATE(2302), - [sym_result_type] = STATE(2302), - [sym_option_type] = STATE(2302), - [sym_qualified_type] = STATE(3541), - [sym_fixed_array_type] = STATE(2303), - [sym_array_type] = STATE(2303), - [sym_pointer_type] = STATE(2303), - [sym_wrong_pointer_type] = STATE(2303), - [sym_map_type] = STATE(2303), - [sym_channel_type] = STATE(2303), - [sym_shared_type] = STATE(2303), - [sym_thread_type] = STATE(2303), - [sym_atomic_type] = STATE(2303), - [sym_generic_type] = STATE(2303), - [sym_function_type] = STATE(2303), - [sym_identifier] = ACTIONS(3286), + [sym__expression] = STATE(2121), + [sym__expression_without_blocks] = STATE(2162), + [sym__expression_with_blocks] = STATE(2162), + [sym_inc_expression] = STATE(2161), + [sym_dec_expression] = STATE(2161), + [sym_or_block_expression] = STATE(2161), + [sym_option_propagation_expression] = STATE(2161), + [sym_result_propagation_expression] = STATE(2161), + [sym_anon_struct_value_expression] = STATE(2160), + [sym_go_expression] = STATE(2161), + [sym_spawn_expression] = STATE(2161), + [sym_parenthesized_expression] = STATE(2161), + [sym_call_expression] = STATE(2161), + [sym_type_initializer] = STATE(2160), + [sym_function_literal] = STATE(2161), + [sym_reference_expression] = STATE(2159), + [sym_type_reference_expression] = STATE(3460), + [sym_unary_expression] = STATE(2161), + [sym_receive_expression] = STATE(2161), + [sym_binary_expression] = STATE(2161), + [sym_as_type_cast_expression] = STATE(2161), + [sym__max_group] = STATE(2161), + [sym_literal] = STATE(2164), + [sym_map_init_expression] = STATE(2160), + [sym_array_creation] = STATE(2161), + [sym_fixed_array_creation] = STATE(2161), + [sym_selector_expression] = STATE(2161), + [sym_index_expression] = STATE(2161), + [sym_slice_expression] = STATE(2161), + [sym_if_expression] = STATE(2160), + [sym_compile_time_if_expression] = STATE(2160), + [sym_is_expression] = STATE(2161), + [sym_in_expression] = STATE(2161), + [sym_enum_fetch] = STATE(2161), + [sym_match_expression] = STATE(2160), + [sym_select_expression] = STATE(2160), + [sym_lock_expression] = STATE(2160), + [sym_unsafe_expression] = STATE(2160), + [sym_sql_expression] = STATE(2160), + [sym_c_string_literal] = STATE(2166), + [sym_raw_string_literal] = STATE(2166), + [sym_interpreted_string_literal] = STATE(2166), + [sym_mutability_modifiers] = STATE(575), + [sym_plain_type] = STATE(4173), + [sym__plain_type_without_special] = STATE(2360), + [sym_anon_struct_type] = STATE(2362), + [sym_multi_return_type] = STATE(2360), + [sym_result_type] = STATE(2360), + [sym_option_type] = STATE(2360), + [sym_qualified_type] = STATE(3460), + [sym_fixed_array_type] = STATE(2362), + [sym_array_type] = STATE(2362), + [sym_pointer_type] = STATE(2362), + [sym_wrong_pointer_type] = STATE(2362), + [sym_map_type] = STATE(2362), + [sym_channel_type] = STATE(2362), + [sym_shared_type] = STATE(2362), + [sym_thread_type] = STATE(2362), + [sym_atomic_type] = STATE(2362), + [sym_generic_type] = STATE(2362), + [sym_function_type] = STATE(2362), + [sym_identifier] = ACTIONS(3292), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(3288), - [anon_sym_LBRACE] = ACTIONS(3290), - [anon_sym_LPAREN] = ACTIONS(3292), - [anon_sym_fn] = ACTIONS(3294), - [anon_sym_PLUS] = ACTIONS(3296), - [anon_sym_DASH] = ACTIONS(3296), - [anon_sym_STAR] = ACTIONS(3298), - [anon_sym_struct] = ACTIONS(3300), + [anon_sym_DOT] = ACTIONS(3294), + [anon_sym_LBRACE] = ACTIONS(3296), + [anon_sym_LPAREN] = ACTIONS(3298), + [anon_sym_fn] = ACTIONS(3300), + [anon_sym_PLUS] = ACTIONS(3302), + [anon_sym_DASH] = ACTIONS(3302), + [anon_sym_STAR] = ACTIONS(3304), + [anon_sym_struct] = ACTIONS(3306), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(3302), - [anon_sym_go] = ACTIONS(3304), - [anon_sym_spawn] = ACTIONS(3306), - [anon_sym_json_DOTdecode] = ACTIONS(3308), - [anon_sym_LBRACK2] = ACTIONS(3310), - [anon_sym_TILDE] = ACTIONS(3296), - [anon_sym_CARET] = ACTIONS(3296), - [anon_sym_AMP] = ACTIONS(3312), - [anon_sym_LT_DASH] = ACTIONS(3314), - [sym_none] = ACTIONS(3316), - [sym_true] = ACTIONS(3316), - [sym_false] = ACTIONS(3316), - [sym_nil] = ACTIONS(3316), - [anon_sym_if] = ACTIONS(3318), - [anon_sym_DOLLARif] = ACTIONS(3320), - [anon_sym_match] = ACTIONS(3322), - [anon_sym_select] = ACTIONS(3324), - [anon_sym_lock] = ACTIONS(3326), - [anon_sym_rlock] = ACTIONS(3326), - [anon_sym_unsafe] = ACTIONS(3328), - [anon_sym_sql] = ACTIONS(3330), - [sym_int_literal] = ACTIONS(3316), - [sym_float_literal] = ACTIONS(3332), - [sym_rune_literal] = ACTIONS(3332), - [sym_pseudo_compile_time_identifier] = ACTIONS(3334), + [anon_sym_BANG] = ACTIONS(3308), + [anon_sym_go] = ACTIONS(3310), + [anon_sym_spawn] = ACTIONS(3312), + [anon_sym_json_DOTdecode] = ACTIONS(3314), + [anon_sym_LBRACK2] = ACTIONS(3316), + [anon_sym_TILDE] = ACTIONS(3302), + [anon_sym_CARET] = ACTIONS(3302), + [anon_sym_AMP] = ACTIONS(3318), + [anon_sym_LT_DASH] = ACTIONS(3320), + [sym_none] = ACTIONS(3322), + [sym_true] = ACTIONS(3322), + [sym_false] = ACTIONS(3322), + [sym_nil] = ACTIONS(3322), + [anon_sym_if] = ACTIONS(3324), + [anon_sym_DOLLARif] = ACTIONS(3326), + [anon_sym_match] = ACTIONS(3328), + [anon_sym_select] = ACTIONS(3330), + [anon_sym_lock] = ACTIONS(3332), + [anon_sym_rlock] = ACTIONS(3332), + [anon_sym_unsafe] = ACTIONS(3334), + [anon_sym_sql] = ACTIONS(3336), + [sym_int_literal] = ACTIONS(3322), + [sym_float_literal] = ACTIONS(3338), + [sym_rune_literal] = ACTIONS(3338), + [sym_pseudo_compile_time_identifier] = ACTIONS(3340), [anon_sym_shared] = ACTIONS(83), [anon_sym_map_LBRACK] = ACTIONS(85), [anon_sym_chan] = ACTIONS(87), [anon_sym_thread] = ACTIONS(89), [anon_sym_atomic] = ACTIONS(91), - [sym___double_quote] = ACTIONS(3336), - [sym___single_quote] = ACTIONS(3338), - [sym___c_double_quote] = ACTIONS(3340), - [sym___c_single_quote] = ACTIONS(3342), - [sym___r_double_quote] = ACTIONS(3344), - [sym___r_single_quote] = ACTIONS(3346), + [sym___double_quote] = ACTIONS(3342), + [sym___single_quote] = ACTIONS(3344), + [sym___c_double_quote] = ACTIONS(3346), + [sym___c_single_quote] = ACTIONS(3348), + [sym___r_double_quote] = ACTIONS(3350), + [sym___r_single_quote] = ACTIONS(3352), }, [609] = { [sym_line_comment] = STATE(609), [sym_block_comment] = STATE(609), - [sym__expression] = STATE(2119), - [sym__expression_without_blocks] = STATE(2226), - [sym__expression_with_blocks] = STATE(2226), - [sym_inc_expression] = STATE(2247), - [sym_dec_expression] = STATE(2247), - [sym_or_block_expression] = STATE(2247), - [sym_option_propagation_expression] = STATE(2247), - [sym_result_propagation_expression] = STATE(2247), - [sym_anon_struct_value_expression] = STATE(2248), - [sym_go_expression] = STATE(2247), - [sym_spawn_expression] = STATE(2247), - [sym_parenthesized_expression] = STATE(2247), - [sym_call_expression] = STATE(2247), - [sym_type_initializer] = STATE(2248), - [sym_function_literal] = STATE(2247), - [sym_reference_expression] = STATE(2252), - [sym_type_reference_expression] = STATE(3541), - [sym_unary_expression] = STATE(2247), - [sym_receive_expression] = STATE(2247), - [sym_binary_expression] = STATE(2247), - [sym_as_type_cast_expression] = STATE(2247), - [sym__max_group] = STATE(2247), - [sym_literal] = STATE(2155), - [sym_map_init_expression] = STATE(2248), - [sym_array_creation] = STATE(2247), - [sym_fixed_array_creation] = STATE(2247), - [sym_selector_expression] = STATE(2247), - [sym_index_expression] = STATE(2247), - [sym_slice_expression] = STATE(2247), - [sym_if_expression] = STATE(2248), - [sym_compile_time_if_expression] = STATE(2248), - [sym_is_expression] = STATE(2247), - [sym_in_expression] = STATE(2247), - [sym_enum_fetch] = STATE(2247), - [sym_match_expression] = STATE(2248), - [sym_select_expression] = STATE(2248), - [sym_lock_expression] = STATE(2248), - [sym_unsafe_expression] = STATE(2248), - [sym_sql_expression] = STATE(2248), - [sym_c_string_literal] = STATE(2153), - [sym_raw_string_literal] = STATE(2153), - [sym_interpreted_string_literal] = STATE(2153), - [sym_mutability_modifiers] = STATE(631), - [sym_plain_type] = STATE(4223), - [sym__plain_type_without_special] = STATE(2302), - [sym_anon_struct_type] = STATE(2303), - [sym_multi_return_type] = STATE(2302), - [sym_result_type] = STATE(2302), - [sym_option_type] = STATE(2302), - [sym_qualified_type] = STATE(3541), - [sym_fixed_array_type] = STATE(2303), - [sym_array_type] = STATE(2303), - [sym_pointer_type] = STATE(2303), - [sym_wrong_pointer_type] = STATE(2303), - [sym_map_type] = STATE(2303), - [sym_channel_type] = STATE(2303), - [sym_shared_type] = STATE(2303), - [sym_thread_type] = STATE(2303), - [sym_atomic_type] = STATE(2303), - [sym_generic_type] = STATE(2303), - [sym_function_type] = STATE(2303), - [sym_identifier] = ACTIONS(3286), + [sym__expression] = STATE(2433), + [sym__expression_without_blocks] = STATE(2638), + [sym__expression_with_blocks] = STATE(2638), + [sym_inc_expression] = STATE(2765), + [sym_dec_expression] = STATE(2765), + [sym_or_block_expression] = STATE(2765), + [sym_option_propagation_expression] = STATE(2765), + [sym_result_propagation_expression] = STATE(2765), + [sym_anon_struct_value_expression] = STATE(2637), + [sym_go_expression] = STATE(2765), + [sym_spawn_expression] = STATE(2765), + [sym_parenthesized_expression] = STATE(2765), + [sym_call_expression] = STATE(2765), + [sym_type_initializer] = STATE(2637), + [sym_function_literal] = STATE(2765), + [sym_reference_expression] = STATE(2764), + [sym_type_reference_expression] = STATE(3460), + [sym_unary_expression] = STATE(2765), + [sym_receive_expression] = STATE(2765), + [sym_binary_expression] = STATE(2765), + [sym_as_type_cast_expression] = STATE(2765), + [sym__max_group] = STATE(2765), + [sym_literal] = STATE(2771), + [sym_map_init_expression] = STATE(2637), + [sym_array_creation] = STATE(2765), + [sym_fixed_array_creation] = STATE(2765), + [sym_selector_expression] = STATE(2765), + [sym_index_expression] = STATE(2765), + [sym_slice_expression] = STATE(2765), + [sym_if_expression] = STATE(2637), + [sym_compile_time_if_expression] = STATE(2637), + [sym_is_expression] = STATE(2765), + [sym_in_expression] = STATE(2765), + [sym_enum_fetch] = STATE(2765), + [sym_match_expression] = STATE(2637), + [sym_select_expression] = STATE(2637), + [sym_lock_expression] = STATE(2637), + [sym_unsafe_expression] = STATE(2637), + [sym_sql_expression] = STATE(2637), + [sym_c_string_literal] = STATE(2762), + [sym_raw_string_literal] = STATE(2762), + [sym_interpreted_string_literal] = STATE(2762), + [sym_mutability_modifiers] = STATE(822), + [sym_plain_type] = STATE(4011), + [sym__plain_type_without_special] = STATE(2360), + [sym_anon_struct_type] = STATE(2362), + [sym_multi_return_type] = STATE(2360), + [sym_result_type] = STATE(2360), + [sym_option_type] = STATE(2360), + [sym_qualified_type] = STATE(3460), + [sym_fixed_array_type] = STATE(2362), + [sym_array_type] = STATE(2362), + [sym_pointer_type] = STATE(2362), + [sym_wrong_pointer_type] = STATE(2362), + [sym_map_type] = STATE(2362), + [sym_channel_type] = STATE(2362), + [sym_shared_type] = STATE(2362), + [sym_thread_type] = STATE(2362), + [sym_atomic_type] = STATE(2362), + [sym_generic_type] = STATE(2362), + [sym_function_type] = STATE(2362), + [sym_identifier] = ACTIONS(1815), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(3288), - [anon_sym_LBRACE] = ACTIONS(3290), - [anon_sym_LPAREN] = ACTIONS(3292), - [anon_sym_fn] = ACTIONS(3294), - [anon_sym_PLUS] = ACTIONS(3296), - [anon_sym_DASH] = ACTIONS(3296), - [anon_sym_STAR] = ACTIONS(3298), - [anon_sym_struct] = ACTIONS(3300), + [anon_sym_DOT] = ACTIONS(1073), + [anon_sym_LBRACE] = ACTIONS(1075), + [anon_sym_LPAREN] = ACTIONS(1079), + [anon_sym_fn] = ACTIONS(1081), + [anon_sym_PLUS] = ACTIONS(1083), + [anon_sym_DASH] = ACTIONS(1083), + [anon_sym_STAR] = ACTIONS(3360), + [anon_sym_struct] = ACTIONS(1087), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(3302), - [anon_sym_go] = ACTIONS(3304), - [anon_sym_spawn] = ACTIONS(3306), - [anon_sym_json_DOTdecode] = ACTIONS(3308), - [anon_sym_LBRACK2] = ACTIONS(3310), - [anon_sym_TILDE] = ACTIONS(3296), - [anon_sym_CARET] = ACTIONS(3296), - [anon_sym_AMP] = ACTIONS(3312), - [anon_sym_LT_DASH] = ACTIONS(3314), - [sym_none] = ACTIONS(3316), - [sym_true] = ACTIONS(3316), - [sym_false] = ACTIONS(3316), - [sym_nil] = ACTIONS(3316), - [anon_sym_if] = ACTIONS(3318), - [anon_sym_DOLLARif] = ACTIONS(3320), - [anon_sym_match] = ACTIONS(3322), - [anon_sym_select] = ACTIONS(3324), - [anon_sym_lock] = ACTIONS(3326), - [anon_sym_rlock] = ACTIONS(3326), - [anon_sym_unsafe] = ACTIONS(3328), - [anon_sym_sql] = ACTIONS(3330), - [sym_int_literal] = ACTIONS(3316), - [sym_float_literal] = ACTIONS(3332), - [sym_rune_literal] = ACTIONS(3332), - [sym_pseudo_compile_time_identifier] = ACTIONS(3334), + [anon_sym_BANG] = ACTIONS(3362), + [anon_sym_go] = ACTIONS(1091), + [anon_sym_spawn] = ACTIONS(1093), + [anon_sym_json_DOTdecode] = ACTIONS(1095), + [anon_sym_LBRACK2] = ACTIONS(1097), + [anon_sym_TILDE] = ACTIONS(1083), + [anon_sym_CARET] = ACTIONS(1083), + [anon_sym_AMP] = ACTIONS(3364), + [anon_sym_LT_DASH] = ACTIONS(1101), + [sym_none] = ACTIONS(1103), + [sym_true] = ACTIONS(1103), + [sym_false] = ACTIONS(1103), + [sym_nil] = ACTIONS(1103), + [anon_sym_if] = ACTIONS(1105), + [anon_sym_DOLLARif] = ACTIONS(1109), + [anon_sym_match] = ACTIONS(1111), + [anon_sym_select] = ACTIONS(3138), + [anon_sym_lock] = ACTIONS(3140), + [anon_sym_rlock] = ACTIONS(3140), + [anon_sym_unsafe] = ACTIONS(1117), + [anon_sym_sql] = ACTIONS(1119), + [sym_int_literal] = ACTIONS(1103), + [sym_float_literal] = ACTIONS(1121), + [sym_rune_literal] = ACTIONS(1121), + [sym_pseudo_compile_time_identifier] = ACTIONS(1123), [anon_sym_shared] = ACTIONS(83), [anon_sym_map_LBRACK] = ACTIONS(85), [anon_sym_chan] = ACTIONS(87), [anon_sym_thread] = ACTIONS(89), [anon_sym_atomic] = ACTIONS(91), - [sym___double_quote] = ACTIONS(3336), - [sym___single_quote] = ACTIONS(3338), - [sym___c_double_quote] = ACTIONS(3340), - [sym___c_single_quote] = ACTIONS(3342), - [sym___r_double_quote] = ACTIONS(3344), - [sym___r_single_quote] = ACTIONS(3346), + [sym___double_quote] = ACTIONS(1125), + [sym___single_quote] = ACTIONS(1127), + [sym___c_double_quote] = ACTIONS(1129), + [sym___c_single_quote] = ACTIONS(1131), + [sym___r_double_quote] = ACTIONS(1133), + [sym___r_single_quote] = ACTIONS(1135), }, [610] = { [sym_line_comment] = STATE(610), [sym_block_comment] = STATE(610), - [sym__expression] = STATE(2119), - [sym__expression_without_blocks] = STATE(2226), - [sym__expression_with_blocks] = STATE(2226), - [sym_inc_expression] = STATE(2247), - [sym_dec_expression] = STATE(2247), - [sym_or_block_expression] = STATE(2247), - [sym_option_propagation_expression] = STATE(2247), - [sym_result_propagation_expression] = STATE(2247), - [sym_anon_struct_value_expression] = STATE(2248), - [sym_go_expression] = STATE(2247), - [sym_spawn_expression] = STATE(2247), - [sym_parenthesized_expression] = STATE(2247), - [sym_call_expression] = STATE(2247), - [sym_type_initializer] = STATE(2248), - [sym_function_literal] = STATE(2247), - [sym_reference_expression] = STATE(2252), - [sym_type_reference_expression] = STATE(3541), - [sym_unary_expression] = STATE(2247), - [sym_receive_expression] = STATE(2247), - [sym_binary_expression] = STATE(2247), - [sym_as_type_cast_expression] = STATE(2247), - [sym__max_group] = STATE(2247), - [sym_literal] = STATE(2155), - [sym_map_init_expression] = STATE(2248), - [sym_array_creation] = STATE(2247), - [sym_fixed_array_creation] = STATE(2247), - [sym_selector_expression] = STATE(2247), - [sym_index_expression] = STATE(2247), - [sym_slice_expression] = STATE(2247), - [sym_if_expression] = STATE(2248), - [sym_compile_time_if_expression] = STATE(2248), - [sym_is_expression] = STATE(2247), - [sym_in_expression] = STATE(2247), - [sym_enum_fetch] = STATE(2247), - [sym_match_expression] = STATE(2248), - [sym_select_expression] = STATE(2248), - [sym_lock_expression] = STATE(2248), - [sym_unsafe_expression] = STATE(2248), - [sym_sql_expression] = STATE(2248), - [sym_c_string_literal] = STATE(2153), - [sym_raw_string_literal] = STATE(2153), - [sym_interpreted_string_literal] = STATE(2153), - [sym_mutability_modifiers] = STATE(631), - [sym_plain_type] = STATE(4230), - [sym__plain_type_without_special] = STATE(2302), - [sym_anon_struct_type] = STATE(2303), - [sym_multi_return_type] = STATE(2302), - [sym_result_type] = STATE(2302), - [sym_option_type] = STATE(2302), - [sym_qualified_type] = STATE(3541), - [sym_fixed_array_type] = STATE(2303), - [sym_array_type] = STATE(2303), - [sym_pointer_type] = STATE(2303), - [sym_wrong_pointer_type] = STATE(2303), - [sym_map_type] = STATE(2303), - [sym_channel_type] = STATE(2303), - [sym_shared_type] = STATE(2303), - [sym_thread_type] = STATE(2303), - [sym_atomic_type] = STATE(2303), - [sym_generic_type] = STATE(2303), - [sym_function_type] = STATE(2303), - [sym_identifier] = ACTIONS(3286), + [sym__expression] = STATE(1113), + [sym__expression_without_blocks] = STATE(1210), + [sym__expression_with_blocks] = STATE(1210), + [sym_inc_expression] = STATE(1211), + [sym_dec_expression] = STATE(1211), + [sym_or_block_expression] = STATE(1211), + [sym_option_propagation_expression] = STATE(1211), + [sym_result_propagation_expression] = STATE(1211), + [sym_anon_struct_value_expression] = STATE(1212), + [sym_go_expression] = STATE(1211), + [sym_spawn_expression] = STATE(1211), + [sym_parenthesized_expression] = STATE(1211), + [sym_call_expression] = STATE(1211), + [sym_type_initializer] = STATE(1212), + [sym_function_literal] = STATE(1211), + [sym_reference_expression] = STATE(1233), + [sym_type_reference_expression] = STATE(3460), + [sym_unary_expression] = STATE(1211), + [sym_receive_expression] = STATE(1211), + [sym_binary_expression] = STATE(1211), + [sym_as_type_cast_expression] = STATE(1211), + [sym__max_group] = STATE(1211), + [sym_literal] = STATE(1209), + [sym_map_init_expression] = STATE(1212), + [sym_array_creation] = STATE(1211), + [sym_fixed_array_creation] = STATE(1211), + [sym_selector_expression] = STATE(1211), + [sym_index_expression] = STATE(1211), + [sym_slice_expression] = STATE(1211), + [sym_if_expression] = STATE(1212), + [sym_compile_time_if_expression] = STATE(1212), + [sym_is_expression] = STATE(1211), + [sym_in_expression] = STATE(1211), + [sym_enum_fetch] = STATE(1211), + [sym_match_expression] = STATE(1212), + [sym_select_expression] = STATE(1212), + [sym_lock_expression] = STATE(1212), + [sym_unsafe_expression] = STATE(1212), + [sym_sql_expression] = STATE(1212), + [sym_c_string_literal] = STATE(1201), + [sym_raw_string_literal] = STATE(1201), + [sym_interpreted_string_literal] = STATE(1201), + [sym_mutability_modifiers] = STATE(589), + [sym_plain_type] = STATE(4123), + [sym__plain_type_without_special] = STATE(2360), + [sym_anon_struct_type] = STATE(2362), + [sym_multi_return_type] = STATE(2360), + [sym_result_type] = STATE(2360), + [sym_option_type] = STATE(2360), + [sym_qualified_type] = STATE(3460), + [sym_fixed_array_type] = STATE(2362), + [sym_array_type] = STATE(2362), + [sym_pointer_type] = STATE(2362), + [sym_wrong_pointer_type] = STATE(2362), + [sym_map_type] = STATE(2362), + [sym_channel_type] = STATE(2362), + [sym_shared_type] = STATE(2362), + [sym_thread_type] = STATE(2362), + [sym_atomic_type] = STATE(2362), + [sym_generic_type] = STATE(2362), + [sym_function_type] = STATE(2362), + [sym_identifier] = ACTIONS(1139), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(3288), - [anon_sym_LBRACE] = ACTIONS(3290), - [anon_sym_LPAREN] = ACTIONS(3292), - [anon_sym_fn] = ACTIONS(3294), - [anon_sym_PLUS] = ACTIONS(3296), - [anon_sym_DASH] = ACTIONS(3296), - [anon_sym_STAR] = ACTIONS(3298), - [anon_sym_struct] = ACTIONS(3300), + [anon_sym_DOT] = ACTIONS(631), + [anon_sym_LBRACE] = ACTIONS(633), + [anon_sym_LPAREN] = ACTIONS(637), + [anon_sym_fn] = ACTIONS(641), + [anon_sym_PLUS] = ACTIONS(643), + [anon_sym_DASH] = ACTIONS(643), + [anon_sym_STAR] = ACTIONS(645), + [anon_sym_struct] = ACTIONS(649), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(3302), - [anon_sym_go] = ACTIONS(3304), - [anon_sym_spawn] = ACTIONS(3306), - [anon_sym_json_DOTdecode] = ACTIONS(3308), - [anon_sym_LBRACK2] = ACTIONS(3310), - [anon_sym_TILDE] = ACTIONS(3296), - [anon_sym_CARET] = ACTIONS(3296), - [anon_sym_AMP] = ACTIONS(3312), - [anon_sym_LT_DASH] = ACTIONS(3314), - [sym_none] = ACTIONS(3316), - [sym_true] = ACTIONS(3316), - [sym_false] = ACTIONS(3316), - [sym_nil] = ACTIONS(3316), - [anon_sym_if] = ACTIONS(3318), - [anon_sym_DOLLARif] = ACTIONS(3320), - [anon_sym_match] = ACTIONS(3322), - [anon_sym_select] = ACTIONS(3324), - [anon_sym_lock] = ACTIONS(3326), - [anon_sym_rlock] = ACTIONS(3326), - [anon_sym_unsafe] = ACTIONS(3328), - [anon_sym_sql] = ACTIONS(3330), - [sym_int_literal] = ACTIONS(3316), - [sym_float_literal] = ACTIONS(3332), - [sym_rune_literal] = ACTIONS(3332), - [sym_pseudo_compile_time_identifier] = ACTIONS(3334), + [anon_sym_BANG] = ACTIONS(655), + [anon_sym_go] = ACTIONS(657), + [anon_sym_spawn] = ACTIONS(659), + [anon_sym_json_DOTdecode] = ACTIONS(661), + [anon_sym_LBRACK2] = ACTIONS(663), + [anon_sym_TILDE] = ACTIONS(643), + [anon_sym_CARET] = ACTIONS(643), + [anon_sym_AMP] = ACTIONS(665), + [anon_sym_LT_DASH] = ACTIONS(667), + [sym_none] = ACTIONS(669), + [sym_true] = ACTIONS(669), + [sym_false] = ACTIONS(669), + [sym_nil] = ACTIONS(669), + [anon_sym_if] = ACTIONS(671), + [anon_sym_DOLLARif] = ACTIONS(673), + [anon_sym_match] = ACTIONS(675), + [anon_sym_select] = ACTIONS(677), + [anon_sym_lock] = ACTIONS(679), + [anon_sym_rlock] = ACTIONS(679), + [anon_sym_unsafe] = ACTIONS(681), + [anon_sym_sql] = ACTIONS(683), + [sym_int_literal] = ACTIONS(669), + [sym_float_literal] = ACTIONS(685), + [sym_rune_literal] = ACTIONS(685), + [sym_pseudo_compile_time_identifier] = ACTIONS(687), [anon_sym_shared] = ACTIONS(83), [anon_sym_map_LBRACK] = ACTIONS(85), [anon_sym_chan] = ACTIONS(87), [anon_sym_thread] = ACTIONS(89), [anon_sym_atomic] = ACTIONS(91), - [sym___double_quote] = ACTIONS(3336), - [sym___single_quote] = ACTIONS(3338), - [sym___c_double_quote] = ACTIONS(3340), - [sym___c_single_quote] = ACTIONS(3342), - [sym___r_double_quote] = ACTIONS(3344), - [sym___r_single_quote] = ACTIONS(3346), + [sym___double_quote] = ACTIONS(689), + [sym___single_quote] = ACTIONS(691), + [sym___c_double_quote] = ACTIONS(693), + [sym___c_single_quote] = ACTIONS(695), + [sym___r_double_quote] = ACTIONS(697), + [sym___r_single_quote] = ACTIONS(699), }, [611] = { [sym_line_comment] = STATE(611), [sym_block_comment] = STATE(611), - [sym__expression] = STATE(2438), - [sym__expression_without_blocks] = STATE(2625), - [sym__expression_with_blocks] = STATE(2625), - [sym_inc_expression] = STATE(2765), - [sym_dec_expression] = STATE(2765), - [sym_or_block_expression] = STATE(2765), - [sym_option_propagation_expression] = STATE(2765), - [sym_result_propagation_expression] = STATE(2765), - [sym_anon_struct_value_expression] = STATE(2619), - [sym_go_expression] = STATE(2765), - [sym_spawn_expression] = STATE(2765), - [sym_parenthesized_expression] = STATE(2765), - [sym_call_expression] = STATE(2765), - [sym_type_initializer] = STATE(2619), - [sym_function_literal] = STATE(2765), - [sym_reference_expression] = STATE(2764), - [sym_type_reference_expression] = STATE(3541), - [sym_unary_expression] = STATE(2765), - [sym_receive_expression] = STATE(2765), - [sym_binary_expression] = STATE(2765), - [sym_as_type_cast_expression] = STATE(2765), - [sym__max_group] = STATE(2765), - [sym_literal] = STATE(2769), - [sym_map_init_expression] = STATE(2619), - [sym_array_creation] = STATE(2765), - [sym_fixed_array_creation] = STATE(2765), - [sym_selector_expression] = STATE(2765), - [sym_index_expression] = STATE(2765), - [sym_slice_expression] = STATE(2765), - [sym_if_expression] = STATE(2619), - [sym_compile_time_if_expression] = STATE(2619), - [sym_is_expression] = STATE(2765), - [sym_in_expression] = STATE(2765), - [sym_enum_fetch] = STATE(2765), - [sym_match_expression] = STATE(2619), - [sym_select_expression] = STATE(2619), - [sym_lock_expression] = STATE(2619), - [sym_unsafe_expression] = STATE(2619), - [sym_sql_expression] = STATE(2619), - [sym_c_string_literal] = STATE(2660), - [sym_raw_string_literal] = STATE(2660), - [sym_interpreted_string_literal] = STATE(2660), - [sym_mutability_modifiers] = STATE(567), - [sym_plain_type] = STATE(4008), - [sym__plain_type_without_special] = STATE(2302), - [sym_anon_struct_type] = STATE(2303), - [sym_multi_return_type] = STATE(2302), - [sym_result_type] = STATE(2302), - [sym_option_type] = STATE(2302), - [sym_qualified_type] = STATE(3541), - [sym_fixed_array_type] = STATE(2303), - [sym_array_type] = STATE(2303), - [sym_pointer_type] = STATE(2303), - [sym_wrong_pointer_type] = STATE(2303), - [sym_map_type] = STATE(2303), - [sym_channel_type] = STATE(2303), - [sym_shared_type] = STATE(2303), - [sym_thread_type] = STATE(2303), - [sym_atomic_type] = STATE(2303), - [sym_generic_type] = STATE(2303), - [sym_function_type] = STATE(2303), - [sym_identifier] = ACTIONS(1807), + [sym__expression] = STATE(1659), + [sym__expression_without_blocks] = STATE(1799), + [sym__expression_with_blocks] = STATE(1799), + [sym_inc_expression] = STATE(1800), + [sym_dec_expression] = STATE(1800), + [sym_or_block_expression] = STATE(1800), + [sym_option_propagation_expression] = STATE(1800), + [sym_result_propagation_expression] = STATE(1800), + [sym_anon_struct_value_expression] = STATE(1801), + [sym_go_expression] = STATE(1800), + [sym_spawn_expression] = STATE(1800), + [sym_parenthesized_expression] = STATE(1800), + [sym_call_expression] = STATE(1800), + [sym_type_initializer] = STATE(1801), + [sym_function_literal] = STATE(1800), + [sym_reference_expression] = STATE(1844), + [sym_type_reference_expression] = STATE(3460), + [sym_unary_expression] = STATE(1800), + [sym_receive_expression] = STATE(1800), + [sym_binary_expression] = STATE(1800), + [sym_as_type_cast_expression] = STATE(1800), + [sym__max_group] = STATE(1800), + [sym_literal] = STATE(1797), + [sym_map_init_expression] = STATE(1801), + [sym_array_creation] = STATE(1800), + [sym_fixed_array_creation] = STATE(1800), + [sym_selector_expression] = STATE(1800), + [sym_index_expression] = STATE(1800), + [sym_slice_expression] = STATE(1800), + [sym_if_expression] = STATE(1801), + [sym_compile_time_if_expression] = STATE(1801), + [sym_is_expression] = STATE(1800), + [sym_in_expression] = STATE(1800), + [sym_enum_fetch] = STATE(1800), + [sym_match_expression] = STATE(1801), + [sym_select_expression] = STATE(1801), + [sym_lock_expression] = STATE(1801), + [sym_unsafe_expression] = STATE(1801), + [sym_sql_expression] = STATE(1801), + [sym_c_string_literal] = STATE(1792), + [sym_raw_string_literal] = STATE(1792), + [sym_interpreted_string_literal] = STATE(1792), + [sym_mutability_modifiers] = STATE(868), + [sym_plain_type] = STATE(4294), + [sym__plain_type_without_special] = STATE(2360), + [sym_anon_struct_type] = STATE(2362), + [sym_multi_return_type] = STATE(2360), + [sym_result_type] = STATE(2360), + [sym_option_type] = STATE(2360), + [sym_qualified_type] = STATE(3460), + [sym_fixed_array_type] = STATE(2362), + [sym_array_type] = STATE(2362), + [sym_pointer_type] = STATE(2362), + [sym_wrong_pointer_type] = STATE(2362), + [sym_map_type] = STATE(2362), + [sym_channel_type] = STATE(2362), + [sym_shared_type] = STATE(2362), + [sym_thread_type] = STATE(2362), + [sym_atomic_type] = STATE(2362), + [sym_generic_type] = STATE(2362), + [sym_function_type] = STATE(2362), + [sym_identifier] = ACTIONS(3198), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1081), - [anon_sym_LBRACE] = ACTIONS(1083), - [anon_sym_LPAREN] = ACTIONS(1087), - [anon_sym_fn] = ACTIONS(1089), - [anon_sym_PLUS] = ACTIONS(1091), - [anon_sym_DASH] = ACTIONS(1091), - [anon_sym_STAR] = ACTIONS(3348), - [anon_sym_struct] = ACTIONS(1095), + [anon_sym_DOT] = ACTIONS(3200), + [anon_sym_LBRACE] = ACTIONS(3202), + [anon_sym_LPAREN] = ACTIONS(3204), + [anon_sym_fn] = ACTIONS(3206), + [anon_sym_PLUS] = ACTIONS(3208), + [anon_sym_DASH] = ACTIONS(3208), + [anon_sym_STAR] = ACTIONS(3210), + [anon_sym_struct] = ACTIONS(3212), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(3350), - [anon_sym_go] = ACTIONS(1099), - [anon_sym_spawn] = ACTIONS(1101), - [anon_sym_json_DOTdecode] = ACTIONS(1103), - [anon_sym_LBRACK2] = ACTIONS(1105), - [anon_sym_TILDE] = ACTIONS(1091), - [anon_sym_CARET] = ACTIONS(1091), - [anon_sym_AMP] = ACTIONS(3352), - [anon_sym_LT_DASH] = ACTIONS(1109), - [sym_none] = ACTIONS(1111), - [sym_true] = ACTIONS(1111), - [sym_false] = ACTIONS(1111), - [sym_nil] = ACTIONS(1111), - [anon_sym_if] = ACTIONS(1113), - [anon_sym_DOLLARif] = ACTIONS(1117), - [anon_sym_match] = ACTIONS(1119), - [anon_sym_select] = ACTIONS(3104), - [anon_sym_lock] = ACTIONS(3106), - [anon_sym_rlock] = ACTIONS(3106), - [anon_sym_unsafe] = ACTIONS(1125), - [anon_sym_sql] = ACTIONS(1127), - [sym_int_literal] = ACTIONS(1111), - [sym_float_literal] = ACTIONS(1129), - [sym_rune_literal] = ACTIONS(1129), - [sym_pseudo_compile_time_identifier] = ACTIONS(1131), + [anon_sym_BANG] = ACTIONS(3214), + [anon_sym_go] = ACTIONS(3216), + [anon_sym_spawn] = ACTIONS(3218), + [anon_sym_json_DOTdecode] = ACTIONS(3220), + [anon_sym_LBRACK2] = ACTIONS(3222), + [anon_sym_TILDE] = ACTIONS(3208), + [anon_sym_CARET] = ACTIONS(3208), + [anon_sym_AMP] = ACTIONS(3224), + [anon_sym_LT_DASH] = ACTIONS(3226), + [sym_none] = ACTIONS(3228), + [sym_true] = ACTIONS(3228), + [sym_false] = ACTIONS(3228), + [sym_nil] = ACTIONS(3228), + [anon_sym_if] = ACTIONS(3230), + [anon_sym_DOLLARif] = ACTIONS(3232), + [anon_sym_match] = ACTIONS(3234), + [anon_sym_select] = ACTIONS(3236), + [anon_sym_lock] = ACTIONS(3238), + [anon_sym_rlock] = ACTIONS(3238), + [anon_sym_unsafe] = ACTIONS(3240), + [anon_sym_sql] = ACTIONS(3242), + [sym_int_literal] = ACTIONS(3228), + [sym_float_literal] = ACTIONS(3244), + [sym_rune_literal] = ACTIONS(3244), + [sym_pseudo_compile_time_identifier] = ACTIONS(3246), [anon_sym_shared] = ACTIONS(83), [anon_sym_map_LBRACK] = ACTIONS(85), [anon_sym_chan] = ACTIONS(87), [anon_sym_thread] = ACTIONS(89), [anon_sym_atomic] = ACTIONS(91), - [sym___double_quote] = ACTIONS(1133), - [sym___single_quote] = ACTIONS(1135), - [sym___c_double_quote] = ACTIONS(1137), - [sym___c_single_quote] = ACTIONS(1139), - [sym___r_double_quote] = ACTIONS(1141), - [sym___r_single_quote] = ACTIONS(1143), + [sym___double_quote] = ACTIONS(3248), + [sym___single_quote] = ACTIONS(3250), + [sym___c_double_quote] = ACTIONS(3252), + [sym___c_single_quote] = ACTIONS(3254), + [sym___r_double_quote] = ACTIONS(3256), + [sym___r_single_quote] = ACTIONS(3258), }, [612] = { [sym_line_comment] = STATE(612), [sym_block_comment] = STATE(612), - [sym__expression] = STATE(2445), - [sym__expression_without_blocks] = STATE(2625), - [sym__expression_with_blocks] = STATE(2625), + [sym__expression] = STATE(1659), + [sym__expression_without_blocks] = STATE(1799), + [sym__expression_with_blocks] = STATE(1799), + [sym_inc_expression] = STATE(1800), + [sym_dec_expression] = STATE(1800), + [sym_or_block_expression] = STATE(1800), + [sym_option_propagation_expression] = STATE(1800), + [sym_result_propagation_expression] = STATE(1800), + [sym_anon_struct_value_expression] = STATE(1801), + [sym_go_expression] = STATE(1800), + [sym_spawn_expression] = STATE(1800), + [sym_parenthesized_expression] = STATE(1800), + [sym_call_expression] = STATE(1800), + [sym_type_initializer] = STATE(1801), + [sym_function_literal] = STATE(1800), + [sym_reference_expression] = STATE(1844), + [sym_type_reference_expression] = STATE(3460), + [sym_unary_expression] = STATE(1800), + [sym_receive_expression] = STATE(1800), + [sym_binary_expression] = STATE(1800), + [sym_as_type_cast_expression] = STATE(1800), + [sym__max_group] = STATE(1800), + [sym_literal] = STATE(1797), + [sym_map_init_expression] = STATE(1801), + [sym_array_creation] = STATE(1800), + [sym_fixed_array_creation] = STATE(1800), + [sym_selector_expression] = STATE(1800), + [sym_index_expression] = STATE(1800), + [sym_slice_expression] = STATE(1800), + [sym_if_expression] = STATE(1801), + [sym_compile_time_if_expression] = STATE(1801), + [sym_is_expression] = STATE(1800), + [sym_in_expression] = STATE(1800), + [sym_enum_fetch] = STATE(1800), + [sym_match_expression] = STATE(1801), + [sym_select_expression] = STATE(1801), + [sym_lock_expression] = STATE(1801), + [sym_unsafe_expression] = STATE(1801), + [sym_sql_expression] = STATE(1801), + [sym_c_string_literal] = STATE(1792), + [sym_raw_string_literal] = STATE(1792), + [sym_interpreted_string_literal] = STATE(1792), + [sym_mutability_modifiers] = STATE(868), + [sym_plain_type] = STATE(4290), + [sym__plain_type_without_special] = STATE(2360), + [sym_anon_struct_type] = STATE(2362), + [sym_multi_return_type] = STATE(2360), + [sym_result_type] = STATE(2360), + [sym_option_type] = STATE(2360), + [sym_qualified_type] = STATE(3460), + [sym_fixed_array_type] = STATE(2362), + [sym_array_type] = STATE(2362), + [sym_pointer_type] = STATE(2362), + [sym_wrong_pointer_type] = STATE(2362), + [sym_map_type] = STATE(2362), + [sym_channel_type] = STATE(2362), + [sym_shared_type] = STATE(2362), + [sym_thread_type] = STATE(2362), + [sym_atomic_type] = STATE(2362), + [sym_generic_type] = STATE(2362), + [sym_function_type] = STATE(2362), + [sym_identifier] = ACTIONS(3198), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(3200), + [anon_sym_LBRACE] = ACTIONS(3202), + [anon_sym_LPAREN] = ACTIONS(3204), + [anon_sym_fn] = ACTIONS(3206), + [anon_sym_PLUS] = ACTIONS(3208), + [anon_sym_DASH] = ACTIONS(3208), + [anon_sym_STAR] = ACTIONS(3210), + [anon_sym_struct] = ACTIONS(3212), + [anon_sym_mut] = ACTIONS(41), + [anon_sym_QMARK] = ACTIONS(47), + [anon_sym_BANG] = ACTIONS(3214), + [anon_sym_go] = ACTIONS(3216), + [anon_sym_spawn] = ACTIONS(3218), + [anon_sym_json_DOTdecode] = ACTIONS(3220), + [anon_sym_LBRACK2] = ACTIONS(3222), + [anon_sym_TILDE] = ACTIONS(3208), + [anon_sym_CARET] = ACTIONS(3208), + [anon_sym_AMP] = ACTIONS(3224), + [anon_sym_LT_DASH] = ACTIONS(3226), + [sym_none] = ACTIONS(3228), + [sym_true] = ACTIONS(3228), + [sym_false] = ACTIONS(3228), + [sym_nil] = ACTIONS(3228), + [anon_sym_if] = ACTIONS(3230), + [anon_sym_DOLLARif] = ACTIONS(3232), + [anon_sym_match] = ACTIONS(3234), + [anon_sym_select] = ACTIONS(3236), + [anon_sym_lock] = ACTIONS(3238), + [anon_sym_rlock] = ACTIONS(3238), + [anon_sym_unsafe] = ACTIONS(3240), + [anon_sym_sql] = ACTIONS(3242), + [sym_int_literal] = ACTIONS(3228), + [sym_float_literal] = ACTIONS(3244), + [sym_rune_literal] = ACTIONS(3244), + [sym_pseudo_compile_time_identifier] = ACTIONS(3246), + [anon_sym_shared] = ACTIONS(83), + [anon_sym_map_LBRACK] = ACTIONS(85), + [anon_sym_chan] = ACTIONS(87), + [anon_sym_thread] = ACTIONS(89), + [anon_sym_atomic] = ACTIONS(91), + [sym___double_quote] = ACTIONS(3248), + [sym___single_quote] = ACTIONS(3250), + [sym___c_double_quote] = ACTIONS(3252), + [sym___c_single_quote] = ACTIONS(3254), + [sym___r_double_quote] = ACTIONS(3256), + [sym___r_single_quote] = ACTIONS(3258), + }, + [613] = { + [sym_line_comment] = STATE(613), + [sym_block_comment] = STATE(613), + [sym__expression] = STATE(2444), + [sym__expression_without_blocks] = STATE(2638), + [sym__expression_with_blocks] = STATE(2638), [sym_inc_expression] = STATE(2765), [sym_dec_expression] = STATE(2765), [sym_or_block_expression] = STATE(2765), [sym_option_propagation_expression] = STATE(2765), [sym_result_propagation_expression] = STATE(2765), - [sym_anon_struct_value_expression] = STATE(2619), + [sym_anon_struct_value_expression] = STATE(2637), [sym_go_expression] = STATE(2765), [sym_spawn_expression] = STATE(2765), [sym_parenthesized_expression] = STATE(2765), [sym_call_expression] = STATE(2765), - [sym_type_initializer] = STATE(2619), + [sym_type_initializer] = STATE(2637), [sym_function_literal] = STATE(2765), [sym_reference_expression] = STATE(2764), - [sym_type_reference_expression] = STATE(3541), + [sym_type_reference_expression] = STATE(3460), [sym_unary_expression] = STATE(2765), [sym_receive_expression] = STATE(2765), [sym_binary_expression] = STATE(2765), [sym_as_type_cast_expression] = STATE(2765), [sym__max_group] = STATE(2765), - [sym_literal] = STATE(2769), - [sym_map_init_expression] = STATE(2619), + [sym_literal] = STATE(2771), + [sym_map_init_expression] = STATE(2637), [sym_array_creation] = STATE(2765), [sym_fixed_array_creation] = STATE(2765), [sym_selector_expression] = STATE(2765), [sym_index_expression] = STATE(2765), [sym_slice_expression] = STATE(2765), - [sym_if_expression] = STATE(2619), - [sym_compile_time_if_expression] = STATE(2619), + [sym_if_expression] = STATE(2637), + [sym_compile_time_if_expression] = STATE(2637), [sym_is_expression] = STATE(2765), [sym_in_expression] = STATE(2765), [sym_enum_fetch] = STATE(2765), - [sym_match_expression] = STATE(2619), - [sym_select_expression] = STATE(2619), - [sym_lock_expression] = STATE(2619), - [sym_unsafe_expression] = STATE(2619), - [sym_sql_expression] = STATE(2619), - [sym_c_string_literal] = STATE(2660), - [sym_raw_string_literal] = STATE(2660), - [sym_interpreted_string_literal] = STATE(2660), - [sym_mutability_modifiers] = STATE(567), - [sym_plain_type] = STATE(3926), - [sym__plain_type_without_special] = STATE(2302), - [sym_anon_struct_type] = STATE(2303), - [sym_multi_return_type] = STATE(2302), - [sym_result_type] = STATE(2302), - [sym_option_type] = STATE(2302), - [sym_qualified_type] = STATE(3541), - [sym_fixed_array_type] = STATE(2303), - [sym_array_type] = STATE(2303), - [sym_pointer_type] = STATE(2303), - [sym_wrong_pointer_type] = STATE(2303), - [sym_map_type] = STATE(2303), - [sym_channel_type] = STATE(2303), - [sym_shared_type] = STATE(2303), - [sym_thread_type] = STATE(2303), - [sym_atomic_type] = STATE(2303), - [sym_generic_type] = STATE(2303), - [sym_function_type] = STATE(2303), - [sym_identifier] = ACTIONS(1079), + [sym_match_expression] = STATE(2637), + [sym_select_expression] = STATE(2637), + [sym_lock_expression] = STATE(2637), + [sym_unsafe_expression] = STATE(2637), + [sym_sql_expression] = STATE(2637), + [sym_c_string_literal] = STATE(2762), + [sym_raw_string_literal] = STATE(2762), + [sym_interpreted_string_literal] = STATE(2762), + [sym_mutability_modifiers] = STATE(822), + [sym_plain_type] = STATE(4011), + [sym__plain_type_without_special] = STATE(2360), + [sym_anon_struct_type] = STATE(2362), + [sym_multi_return_type] = STATE(2360), + [sym_result_type] = STATE(2360), + [sym_option_type] = STATE(2360), + [sym_qualified_type] = STATE(3460), + [sym_fixed_array_type] = STATE(2362), + [sym_array_type] = STATE(2362), + [sym_pointer_type] = STATE(2362), + [sym_wrong_pointer_type] = STATE(2362), + [sym_map_type] = STATE(2362), + [sym_channel_type] = STATE(2362), + [sym_shared_type] = STATE(2362), + [sym_thread_type] = STATE(2362), + [sym_atomic_type] = STATE(2362), + [sym_generic_type] = STATE(2362), + [sym_function_type] = STATE(2362), + [sym_identifier] = ACTIONS(1815), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1081), - [anon_sym_LBRACE] = ACTIONS(1083), - [anon_sym_LPAREN] = ACTIONS(1087), - [anon_sym_fn] = ACTIONS(1089), - [anon_sym_PLUS] = ACTIONS(1091), - [anon_sym_DASH] = ACTIONS(1091), - [anon_sym_STAR] = ACTIONS(1093), - [anon_sym_struct] = ACTIONS(1095), + [anon_sym_DOT] = ACTIONS(1073), + [anon_sym_LBRACE] = ACTIONS(1075), + [anon_sym_LPAREN] = ACTIONS(1079), + [anon_sym_fn] = ACTIONS(1081), + [anon_sym_PLUS] = ACTIONS(1083), + [anon_sym_DASH] = ACTIONS(1083), + [anon_sym_STAR] = ACTIONS(3360), + [anon_sym_struct] = ACTIONS(1087), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(1097), - [anon_sym_go] = ACTIONS(1099), - [anon_sym_spawn] = ACTIONS(1101), - [anon_sym_json_DOTdecode] = ACTIONS(1103), - [anon_sym_LBRACK2] = ACTIONS(1105), - [anon_sym_TILDE] = ACTIONS(1091), - [anon_sym_CARET] = ACTIONS(1091), - [anon_sym_AMP] = ACTIONS(1107), - [anon_sym_LT_DASH] = ACTIONS(1109), - [sym_none] = ACTIONS(1111), - [sym_true] = ACTIONS(1111), - [sym_false] = ACTIONS(1111), - [sym_nil] = ACTIONS(1111), - [anon_sym_if] = ACTIONS(1113), - [anon_sym_DOLLARif] = ACTIONS(1117), - [anon_sym_match] = ACTIONS(1119), - [anon_sym_select] = ACTIONS(3104), - [anon_sym_lock] = ACTIONS(3106), - [anon_sym_rlock] = ACTIONS(3106), - [anon_sym_unsafe] = ACTIONS(1125), - [anon_sym_sql] = ACTIONS(1127), - [sym_int_literal] = ACTIONS(1111), - [sym_float_literal] = ACTIONS(1129), - [sym_rune_literal] = ACTIONS(1129), - [sym_pseudo_compile_time_identifier] = ACTIONS(1131), + [anon_sym_BANG] = ACTIONS(3362), + [anon_sym_go] = ACTIONS(1091), + [anon_sym_spawn] = ACTIONS(1093), + [anon_sym_json_DOTdecode] = ACTIONS(1095), + [anon_sym_LBRACK2] = ACTIONS(1097), + [anon_sym_TILDE] = ACTIONS(1083), + [anon_sym_CARET] = ACTIONS(1083), + [anon_sym_AMP] = ACTIONS(3364), + [anon_sym_LT_DASH] = ACTIONS(1101), + [sym_none] = ACTIONS(1103), + [sym_true] = ACTIONS(1103), + [sym_false] = ACTIONS(1103), + [sym_nil] = ACTIONS(1103), + [anon_sym_if] = ACTIONS(1105), + [anon_sym_DOLLARif] = ACTIONS(1109), + [anon_sym_match] = ACTIONS(1111), + [anon_sym_select] = ACTIONS(3138), + [anon_sym_lock] = ACTIONS(3140), + [anon_sym_rlock] = ACTIONS(3140), + [anon_sym_unsafe] = ACTIONS(1117), + [anon_sym_sql] = ACTIONS(1119), + [sym_int_literal] = ACTIONS(1103), + [sym_float_literal] = ACTIONS(1121), + [sym_rune_literal] = ACTIONS(1121), + [sym_pseudo_compile_time_identifier] = ACTIONS(1123), [anon_sym_shared] = ACTIONS(83), [anon_sym_map_LBRACK] = ACTIONS(85), [anon_sym_chan] = ACTIONS(87), [anon_sym_thread] = ACTIONS(89), [anon_sym_atomic] = ACTIONS(91), - [sym___double_quote] = ACTIONS(1133), - [sym___single_quote] = ACTIONS(1135), - [sym___c_double_quote] = ACTIONS(1137), - [sym___c_single_quote] = ACTIONS(1139), - [sym___r_double_quote] = ACTIONS(1141), - [sym___r_single_quote] = ACTIONS(1143), + [sym___double_quote] = ACTIONS(1125), + [sym___single_quote] = ACTIONS(1127), + [sym___c_double_quote] = ACTIONS(1129), + [sym___c_single_quote] = ACTIONS(1131), + [sym___r_double_quote] = ACTIONS(1133), + [sym___r_single_quote] = ACTIONS(1135), }, - [613] = { - [sym_line_comment] = STATE(613), - [sym_block_comment] = STATE(613), - [sym__expression] = STATE(1113), - [sym__expression_without_blocks] = STATE(1141), - [sym__expression_with_blocks] = STATE(1141), - [sym_inc_expression] = STATE(1140), - [sym_dec_expression] = STATE(1140), - [sym_or_block_expression] = STATE(1140), - [sym_option_propagation_expression] = STATE(1140), - [sym_result_propagation_expression] = STATE(1140), - [sym_anon_struct_value_expression] = STATE(1199), - [sym_go_expression] = STATE(1140), - [sym_spawn_expression] = STATE(1140), - [sym_parenthesized_expression] = STATE(1140), - [sym_call_expression] = STATE(1140), - [sym_type_initializer] = STATE(1199), - [sym_function_literal] = STATE(1140), - [sym_reference_expression] = STATE(1181), - [sym_type_reference_expression] = STATE(3541), - [sym_unary_expression] = STATE(1140), - [sym_receive_expression] = STATE(1140), - [sym_binary_expression] = STATE(1140), - [sym_as_type_cast_expression] = STATE(1140), - [sym__max_group] = STATE(1140), - [sym_literal] = STATE(1146), - [sym_map_init_expression] = STATE(1199), - [sym_array_creation] = STATE(1140), - [sym_fixed_array_creation] = STATE(1140), - [sym_selector_expression] = STATE(1140), - [sym_index_expression] = STATE(1140), - [sym_slice_expression] = STATE(1140), - [sym_if_expression] = STATE(1199), - [sym_compile_time_if_expression] = STATE(1199), - [sym_is_expression] = STATE(1140), - [sym_in_expression] = STATE(1140), - [sym_enum_fetch] = STATE(1140), - [sym_match_expression] = STATE(1199), - [sym_select_expression] = STATE(1199), - [sym_lock_expression] = STATE(1199), - [sym_unsafe_expression] = STATE(1199), - [sym_sql_expression] = STATE(1199), - [sym_c_string_literal] = STATE(1147), - [sym_raw_string_literal] = STATE(1147), - [sym_interpreted_string_literal] = STATE(1147), - [sym_mutability_modifiers] = STATE(638), - [sym_plain_type] = STATE(4234), - [sym__plain_type_without_special] = STATE(2302), - [sym_anon_struct_type] = STATE(2303), - [sym_multi_return_type] = STATE(2302), - [sym_result_type] = STATE(2302), - [sym_option_type] = STATE(2302), - [sym_qualified_type] = STATE(3541), - [sym_fixed_array_type] = STATE(2303), - [sym_array_type] = STATE(2303), - [sym_pointer_type] = STATE(2303), - [sym_wrong_pointer_type] = STATE(2303), - [sym_map_type] = STATE(2303), - [sym_channel_type] = STATE(2303), - [sym_shared_type] = STATE(2303), - [sym_thread_type] = STATE(2303), - [sym_atomic_type] = STATE(2303), - [sym_generic_type] = STATE(2303), - [sym_function_type] = STATE(2303), - [sym_identifier] = ACTIONS(1071), + [614] = { + [sym_line_comment] = STATE(614), + [sym_block_comment] = STATE(614), + [sym__expression] = STATE(1117), + [sym__expression_without_blocks] = STATE(1210), + [sym__expression_with_blocks] = STATE(1210), + [sym_inc_expression] = STATE(1211), + [sym_dec_expression] = STATE(1211), + [sym_or_block_expression] = STATE(1211), + [sym_option_propagation_expression] = STATE(1211), + [sym_result_propagation_expression] = STATE(1211), + [sym_anon_struct_value_expression] = STATE(1212), + [sym_go_expression] = STATE(1211), + [sym_spawn_expression] = STATE(1211), + [sym_parenthesized_expression] = STATE(1211), + [sym_call_expression] = STATE(1211), + [sym_type_initializer] = STATE(1212), + [sym_function_literal] = STATE(1211), + [sym_reference_expression] = STATE(1233), + [sym_type_reference_expression] = STATE(3460), + [sym_unary_expression] = STATE(1211), + [sym_receive_expression] = STATE(1211), + [sym_binary_expression] = STATE(1211), + [sym_as_type_cast_expression] = STATE(1211), + [sym__max_group] = STATE(1211), + [sym_literal] = STATE(1209), + [sym_map_init_expression] = STATE(1212), + [sym_array_creation] = STATE(1211), + [sym_fixed_array_creation] = STATE(1211), + [sym_selector_expression] = STATE(1211), + [sym_index_expression] = STATE(1211), + [sym_slice_expression] = STATE(1211), + [sym_if_expression] = STATE(1212), + [sym_compile_time_if_expression] = STATE(1212), + [sym_is_expression] = STATE(1211), + [sym_in_expression] = STATE(1211), + [sym_enum_fetch] = STATE(1211), + [sym_match_expression] = STATE(1212), + [sym_select_expression] = STATE(1212), + [sym_lock_expression] = STATE(1212), + [sym_unsafe_expression] = STATE(1212), + [sym_sql_expression] = STATE(1212), + [sym_c_string_literal] = STATE(1201), + [sym_raw_string_literal] = STATE(1201), + [sym_interpreted_string_literal] = STATE(1201), + [sym_mutability_modifiers] = STATE(589), + [sym_plain_type] = STATE(4123), + [sym__plain_type_without_special] = STATE(2360), + [sym_anon_struct_type] = STATE(2362), + [sym_multi_return_type] = STATE(2360), + [sym_result_type] = STATE(2360), + [sym_option_type] = STATE(2360), + [sym_qualified_type] = STATE(3460), + [sym_fixed_array_type] = STATE(2362), + [sym_array_type] = STATE(2362), + [sym_pointer_type] = STATE(2362), + [sym_wrong_pointer_type] = STATE(2362), + [sym_map_type] = STATE(2362), + [sym_channel_type] = STATE(2362), + [sym_shared_type] = STATE(2362), + [sym_thread_type] = STATE(2362), + [sym_atomic_type] = STATE(2362), + [sym_generic_type] = STATE(2362), + [sym_function_type] = STATE(2362), + [sym_identifier] = ACTIONS(1139), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), [anon_sym_DOT] = ACTIONS(631), @@ -93849,755 +93983,527 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym___r_double_quote] = ACTIONS(697), [sym___r_single_quote] = ACTIONS(699), }, - [614] = { - [sym_line_comment] = STATE(614), - [sym_block_comment] = STATE(614), - [sym__expression] = STATE(2263), - [sym__expression_without_blocks] = STATE(2300), - [sym__expression_with_blocks] = STATE(2300), - [sym_inc_expression] = STATE(2307), - [sym_dec_expression] = STATE(2307), - [sym_or_block_expression] = STATE(2307), - [sym_option_propagation_expression] = STATE(2307), - [sym_result_propagation_expression] = STATE(2307), - [sym_anon_struct_value_expression] = STATE(2380), - [sym_go_expression] = STATE(2307), - [sym_spawn_expression] = STATE(2307), - [sym_parenthesized_expression] = STATE(2307), - [sym_call_expression] = STATE(2307), - [sym_type_initializer] = STATE(2380), - [sym_function_literal] = STATE(2307), - [sym_reference_expression] = STATE(2311), - [sym_type_reference_expression] = STATE(3541), - [sym_unary_expression] = STATE(2307), - [sym_receive_expression] = STATE(2307), - [sym_binary_expression] = STATE(2307), - [sym_as_type_cast_expression] = STATE(2307), - [sym__max_group] = STATE(2307), - [sym_literal] = STATE(2292), - [sym_map_init_expression] = STATE(2380), - [sym_array_creation] = STATE(2307), - [sym_fixed_array_creation] = STATE(2307), - [sym_selector_expression] = STATE(2307), - [sym_index_expression] = STATE(2307), - [sym_slice_expression] = STATE(2307), - [sym_if_expression] = STATE(2380), - [sym_compile_time_if_expression] = STATE(2380), - [sym_is_expression] = STATE(2307), - [sym_in_expression] = STATE(2307), - [sym_enum_fetch] = STATE(2307), - [sym_match_expression] = STATE(2380), - [sym_select_expression] = STATE(2380), - [sym_lock_expression] = STATE(2380), - [sym_unsafe_expression] = STATE(2380), - [sym_sql_expression] = STATE(2380), - [sym_c_string_literal] = STATE(2308), - [sym_raw_string_literal] = STATE(2308), - [sym_interpreted_string_literal] = STATE(2308), - [sym_mutability_modifiers] = STATE(939), - [sym_plain_type] = STATE(3566), - [sym__plain_type_without_special] = STATE(2302), - [sym_anon_struct_type] = STATE(2303), - [sym_multi_return_type] = STATE(2302), - [sym_result_type] = STATE(2302), - [sym_option_type] = STATE(2302), - [sym_qualified_type] = STATE(3541), - [sym_fixed_array_type] = STATE(2303), - [sym_array_type] = STATE(2303), - [sym_pointer_type] = STATE(2303), - [sym_wrong_pointer_type] = STATE(2303), - [sym_map_type] = STATE(2303), - [sym_channel_type] = STATE(2303), - [sym_shared_type] = STATE(2303), - [sym_thread_type] = STATE(2303), - [sym_atomic_type] = STATE(2303), - [sym_generic_type] = STATE(2303), - [sym_function_type] = STATE(2303), - [sym_identifier] = ACTIONS(2189), - [anon_sym_SLASH_SLASH] = ACTIONS(3), - [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1428), - [anon_sym_LBRACE] = ACTIONS(1430), - [anon_sym_LPAREN] = ACTIONS(1432), - [anon_sym_fn] = ACTIONS(1434), - [anon_sym_PLUS] = ACTIONS(2491), - [anon_sym_DASH] = ACTIONS(2491), - [anon_sym_STAR] = ACTIONS(3354), - [anon_sym_struct] = ACTIONS(1440), - [anon_sym_mut] = ACTIONS(41), - [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(3356), - [anon_sym_go] = ACTIONS(2497), - [anon_sym_spawn] = ACTIONS(2499), - [anon_sym_json_DOTdecode] = ACTIONS(1448), - [anon_sym_LBRACK2] = ACTIONS(1450), - [anon_sym_TILDE] = ACTIONS(2491), - [anon_sym_CARET] = ACTIONS(2491), - [anon_sym_AMP] = ACTIONS(3358), - [anon_sym_LT_DASH] = ACTIONS(2503), - [sym_none] = ACTIONS(1456), - [sym_true] = ACTIONS(1456), - [sym_false] = ACTIONS(1456), - [sym_nil] = ACTIONS(1456), - [anon_sym_if] = ACTIONS(1827), - [anon_sym_DOLLARif] = ACTIONS(1460), - [anon_sym_match] = ACTIONS(1462), - [anon_sym_select] = ACTIONS(1464), - [anon_sym_lock] = ACTIONS(1466), - [anon_sym_rlock] = ACTIONS(1466), - [anon_sym_unsafe] = ACTIONS(1833), - [anon_sym_sql] = ACTIONS(1470), - [sym_int_literal] = ACTIONS(1456), - [sym_float_literal] = ACTIONS(1472), - [sym_rune_literal] = ACTIONS(1472), - [sym_pseudo_compile_time_identifier] = ACTIONS(1474), - [anon_sym_shared] = ACTIONS(83), - [anon_sym_map_LBRACK] = ACTIONS(85), - [anon_sym_chan] = ACTIONS(87), - [anon_sym_thread] = ACTIONS(89), - [anon_sym_atomic] = ACTIONS(91), - [sym___double_quote] = ACTIONS(1478), - [sym___single_quote] = ACTIONS(1480), - [sym___c_double_quote] = ACTIONS(1482), - [sym___c_single_quote] = ACTIONS(1484), - [sym___r_double_quote] = ACTIONS(1486), - [sym___r_single_quote] = ACTIONS(1488), - }, [615] = { [sym_line_comment] = STATE(615), [sym_block_comment] = STATE(615), - [sym__expression] = STATE(2437), - [sym__expression_without_blocks] = STATE(2625), - [sym__expression_with_blocks] = STATE(2625), + [sym__expression] = STATE(2448), + [sym__expression_without_blocks] = STATE(2638), + [sym__expression_with_blocks] = STATE(2638), [sym_inc_expression] = STATE(2765), [sym_dec_expression] = STATE(2765), [sym_or_block_expression] = STATE(2765), [sym_option_propagation_expression] = STATE(2765), [sym_result_propagation_expression] = STATE(2765), - [sym_anon_struct_value_expression] = STATE(2619), + [sym_anon_struct_value_expression] = STATE(2637), [sym_go_expression] = STATE(2765), [sym_spawn_expression] = STATE(2765), [sym_parenthesized_expression] = STATE(2765), [sym_call_expression] = STATE(2765), - [sym_type_initializer] = STATE(2619), + [sym_type_initializer] = STATE(2637), [sym_function_literal] = STATE(2765), [sym_reference_expression] = STATE(2764), - [sym_type_reference_expression] = STATE(3541), + [sym_type_reference_expression] = STATE(3460), [sym_unary_expression] = STATE(2765), [sym_receive_expression] = STATE(2765), [sym_binary_expression] = STATE(2765), [sym_as_type_cast_expression] = STATE(2765), [sym__max_group] = STATE(2765), - [sym_literal] = STATE(2769), - [sym_map_init_expression] = STATE(2619), + [sym_literal] = STATE(2771), + [sym_map_init_expression] = STATE(2637), [sym_array_creation] = STATE(2765), [sym_fixed_array_creation] = STATE(2765), [sym_selector_expression] = STATE(2765), [sym_index_expression] = STATE(2765), [sym_slice_expression] = STATE(2765), - [sym_if_expression] = STATE(2619), - [sym_compile_time_if_expression] = STATE(2619), + [sym_if_expression] = STATE(2637), + [sym_compile_time_if_expression] = STATE(2637), [sym_is_expression] = STATE(2765), [sym_in_expression] = STATE(2765), [sym_enum_fetch] = STATE(2765), - [sym_match_expression] = STATE(2619), - [sym_select_expression] = STATE(2619), - [sym_lock_expression] = STATE(2619), - [sym_unsafe_expression] = STATE(2619), - [sym_sql_expression] = STATE(2619), - [sym_c_string_literal] = STATE(2660), - [sym_raw_string_literal] = STATE(2660), - [sym_interpreted_string_literal] = STATE(2660), - [sym_mutability_modifiers] = STATE(567), - [sym_plain_type] = STATE(4008), - [sym__plain_type_without_special] = STATE(2302), - [sym_anon_struct_type] = STATE(2303), - [sym_multi_return_type] = STATE(2302), - [sym_result_type] = STATE(2302), - [sym_option_type] = STATE(2302), - [sym_qualified_type] = STATE(3541), - [sym_fixed_array_type] = STATE(2303), - [sym_array_type] = STATE(2303), - [sym_pointer_type] = STATE(2303), - [sym_wrong_pointer_type] = STATE(2303), - [sym_map_type] = STATE(2303), - [sym_channel_type] = STATE(2303), - [sym_shared_type] = STATE(2303), - [sym_thread_type] = STATE(2303), - [sym_atomic_type] = STATE(2303), - [sym_generic_type] = STATE(2303), - [sym_function_type] = STATE(2303), - [sym_identifier] = ACTIONS(1807), + [sym_match_expression] = STATE(2637), + [sym_select_expression] = STATE(2637), + [sym_lock_expression] = STATE(2637), + [sym_unsafe_expression] = STATE(2637), + [sym_sql_expression] = STATE(2637), + [sym_c_string_literal] = STATE(2762), + [sym_raw_string_literal] = STATE(2762), + [sym_interpreted_string_literal] = STATE(2762), + [sym_mutability_modifiers] = STATE(822), + [sym_plain_type] = STATE(4011), + [sym__plain_type_without_special] = STATE(2360), + [sym_anon_struct_type] = STATE(2362), + [sym_multi_return_type] = STATE(2360), + [sym_result_type] = STATE(2360), + [sym_option_type] = STATE(2360), + [sym_qualified_type] = STATE(3460), + [sym_fixed_array_type] = STATE(2362), + [sym_array_type] = STATE(2362), + [sym_pointer_type] = STATE(2362), + [sym_wrong_pointer_type] = STATE(2362), + [sym_map_type] = STATE(2362), + [sym_channel_type] = STATE(2362), + [sym_shared_type] = STATE(2362), + [sym_thread_type] = STATE(2362), + [sym_atomic_type] = STATE(2362), + [sym_generic_type] = STATE(2362), + [sym_function_type] = STATE(2362), + [sym_identifier] = ACTIONS(1815), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1081), - [anon_sym_LBRACE] = ACTIONS(1083), - [anon_sym_LPAREN] = ACTIONS(1087), - [anon_sym_fn] = ACTIONS(1089), - [anon_sym_PLUS] = ACTIONS(1091), - [anon_sym_DASH] = ACTIONS(1091), - [anon_sym_STAR] = ACTIONS(3348), - [anon_sym_struct] = ACTIONS(1095), + [anon_sym_DOT] = ACTIONS(1073), + [anon_sym_LBRACE] = ACTIONS(1075), + [anon_sym_LPAREN] = ACTIONS(1079), + [anon_sym_fn] = ACTIONS(1081), + [anon_sym_PLUS] = ACTIONS(1083), + [anon_sym_DASH] = ACTIONS(1083), + [anon_sym_STAR] = ACTIONS(3360), + [anon_sym_struct] = ACTIONS(1087), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(3350), - [anon_sym_go] = ACTIONS(1099), - [anon_sym_spawn] = ACTIONS(1101), - [anon_sym_json_DOTdecode] = ACTIONS(1103), - [anon_sym_LBRACK2] = ACTIONS(1105), - [anon_sym_TILDE] = ACTIONS(1091), - [anon_sym_CARET] = ACTIONS(1091), - [anon_sym_AMP] = ACTIONS(3352), - [anon_sym_LT_DASH] = ACTIONS(1109), - [sym_none] = ACTIONS(1111), - [sym_true] = ACTIONS(1111), - [sym_false] = ACTIONS(1111), - [sym_nil] = ACTIONS(1111), - [anon_sym_if] = ACTIONS(1113), - [anon_sym_DOLLARif] = ACTIONS(1117), - [anon_sym_match] = ACTIONS(1119), - [anon_sym_select] = ACTIONS(3104), - [anon_sym_lock] = ACTIONS(3106), - [anon_sym_rlock] = ACTIONS(3106), - [anon_sym_unsafe] = ACTIONS(1125), - [anon_sym_sql] = ACTIONS(1127), - [sym_int_literal] = ACTIONS(1111), - [sym_float_literal] = ACTIONS(1129), - [sym_rune_literal] = ACTIONS(1129), - [sym_pseudo_compile_time_identifier] = ACTIONS(1131), + [anon_sym_BANG] = ACTIONS(3362), + [anon_sym_go] = ACTIONS(1091), + [anon_sym_spawn] = ACTIONS(1093), + [anon_sym_json_DOTdecode] = ACTIONS(1095), + [anon_sym_LBRACK2] = ACTIONS(1097), + [anon_sym_TILDE] = ACTIONS(1083), + [anon_sym_CARET] = ACTIONS(1083), + [anon_sym_AMP] = ACTIONS(3364), + [anon_sym_LT_DASH] = ACTIONS(1101), + [sym_none] = ACTIONS(1103), + [sym_true] = ACTIONS(1103), + [sym_false] = ACTIONS(1103), + [sym_nil] = ACTIONS(1103), + [anon_sym_if] = ACTIONS(1105), + [anon_sym_DOLLARif] = ACTIONS(1109), + [anon_sym_match] = ACTIONS(1111), + [anon_sym_select] = ACTIONS(3138), + [anon_sym_lock] = ACTIONS(3140), + [anon_sym_rlock] = ACTIONS(3140), + [anon_sym_unsafe] = ACTIONS(1117), + [anon_sym_sql] = ACTIONS(1119), + [sym_int_literal] = ACTIONS(1103), + [sym_float_literal] = ACTIONS(1121), + [sym_rune_literal] = ACTIONS(1121), + [sym_pseudo_compile_time_identifier] = ACTIONS(1123), [anon_sym_shared] = ACTIONS(83), [anon_sym_map_LBRACK] = ACTIONS(85), [anon_sym_chan] = ACTIONS(87), [anon_sym_thread] = ACTIONS(89), [anon_sym_atomic] = ACTIONS(91), - [sym___double_quote] = ACTIONS(1133), - [sym___single_quote] = ACTIONS(1135), - [sym___c_double_quote] = ACTIONS(1137), - [sym___c_single_quote] = ACTIONS(1139), - [sym___r_double_quote] = ACTIONS(1141), - [sym___r_single_quote] = ACTIONS(1143), + [sym___double_quote] = ACTIONS(1125), + [sym___single_quote] = ACTIONS(1127), + [sym___c_double_quote] = ACTIONS(1129), + [sym___c_single_quote] = ACTIONS(1131), + [sym___r_double_quote] = ACTIONS(1133), + [sym___r_single_quote] = ACTIONS(1135), }, [616] = { [sym_line_comment] = STATE(616), [sym_block_comment] = STATE(616), - [sym__expression] = STATE(1276), - [sym__expression_without_blocks] = STATE(1312), - [sym__expression_with_blocks] = STATE(1312), - [sym_inc_expression] = STATE(1313), - [sym_dec_expression] = STATE(1313), - [sym_or_block_expression] = STATE(1313), - [sym_option_propagation_expression] = STATE(1313), - [sym_result_propagation_expression] = STATE(1313), - [sym_anon_struct_value_expression] = STATE(1314), - [sym_go_expression] = STATE(1313), - [sym_spawn_expression] = STATE(1313), - [sym_parenthesized_expression] = STATE(1313), - [sym_call_expression] = STATE(1313), - [sym_type_initializer] = STATE(1314), - [sym_function_literal] = STATE(1313), - [sym_reference_expression] = STATE(1334), - [sym_type_reference_expression] = STATE(3541), - [sym_unary_expression] = STATE(1313), - [sym_receive_expression] = STATE(1313), - [sym_binary_expression] = STATE(1313), - [sym_as_type_cast_expression] = STATE(1313), - [sym__max_group] = STATE(1313), - [sym_literal] = STATE(1308), - [sym_map_init_expression] = STATE(1314), - [sym_array_creation] = STATE(1313), - [sym_fixed_array_creation] = STATE(1313), - [sym_selector_expression] = STATE(1313), - [sym_index_expression] = STATE(1313), - [sym_slice_expression] = STATE(1313), - [sym_if_expression] = STATE(1314), - [sym_compile_time_if_expression] = STATE(1314), - [sym_is_expression] = STATE(1313), - [sym_in_expression] = STATE(1313), - [sym_enum_fetch] = STATE(1313), - [sym_match_expression] = STATE(1314), - [sym_select_expression] = STATE(1314), - [sym_lock_expression] = STATE(1314), - [sym_unsafe_expression] = STATE(1314), - [sym_sql_expression] = STATE(1314), - [sym_c_string_literal] = STATE(1286), - [sym_raw_string_literal] = STATE(1286), - [sym_interpreted_string_literal] = STATE(1286), - [sym_mutability_modifiers] = STATE(699), - [sym_plain_type] = STATE(4192), - [sym__plain_type_without_special] = STATE(2302), - [sym_anon_struct_type] = STATE(2303), - [sym_multi_return_type] = STATE(2302), - [sym_result_type] = STATE(2302), - [sym_option_type] = STATE(2302), - [sym_qualified_type] = STATE(3541), - [sym_fixed_array_type] = STATE(2303), - [sym_array_type] = STATE(2303), - [sym_pointer_type] = STATE(2303), - [sym_wrong_pointer_type] = STATE(2303), - [sym_map_type] = STATE(2303), - [sym_channel_type] = STATE(2303), - [sym_shared_type] = STATE(2303), - [sym_thread_type] = STATE(2303), - [sym_atomic_type] = STATE(2303), - [sym_generic_type] = STATE(2303), - [sym_function_type] = STATE(2303), - [sym_identifier] = ACTIONS(1354), + [sym__expression] = STATE(1659), + [sym__expression_without_blocks] = STATE(1799), + [sym__expression_with_blocks] = STATE(1799), + [sym_inc_expression] = STATE(1800), + [sym_dec_expression] = STATE(1800), + [sym_or_block_expression] = STATE(1800), + [sym_option_propagation_expression] = STATE(1800), + [sym_result_propagation_expression] = STATE(1800), + [sym_anon_struct_value_expression] = STATE(1801), + [sym_go_expression] = STATE(1800), + [sym_spawn_expression] = STATE(1800), + [sym_parenthesized_expression] = STATE(1800), + [sym_call_expression] = STATE(1800), + [sym_type_initializer] = STATE(1801), + [sym_function_literal] = STATE(1800), + [sym_reference_expression] = STATE(1844), + [sym_type_reference_expression] = STATE(3460), + [sym_unary_expression] = STATE(1800), + [sym_receive_expression] = STATE(1800), + [sym_binary_expression] = STATE(1800), + [sym_as_type_cast_expression] = STATE(1800), + [sym__max_group] = STATE(1800), + [sym_literal] = STATE(1797), + [sym_map_init_expression] = STATE(1801), + [sym_array_creation] = STATE(1800), + [sym_fixed_array_creation] = STATE(1800), + [sym_selector_expression] = STATE(1800), + [sym_index_expression] = STATE(1800), + [sym_slice_expression] = STATE(1800), + [sym_if_expression] = STATE(1801), + [sym_compile_time_if_expression] = STATE(1801), + [sym_is_expression] = STATE(1800), + [sym_in_expression] = STATE(1800), + [sym_enum_fetch] = STATE(1800), + [sym_match_expression] = STATE(1801), + [sym_select_expression] = STATE(1801), + [sym_lock_expression] = STATE(1801), + [sym_unsafe_expression] = STATE(1801), + [sym_sql_expression] = STATE(1801), + [sym_c_string_literal] = STATE(1792), + [sym_raw_string_literal] = STATE(1792), + [sym_interpreted_string_literal] = STATE(1792), + [sym_mutability_modifiers] = STATE(868), + [sym_plain_type] = STATE(4285), + [sym__plain_type_without_special] = STATE(2360), + [sym_anon_struct_type] = STATE(2362), + [sym_multi_return_type] = STATE(2360), + [sym_result_type] = STATE(2360), + [sym_option_type] = STATE(2360), + [sym_qualified_type] = STATE(3460), + [sym_fixed_array_type] = STATE(2362), + [sym_array_type] = STATE(2362), + [sym_pointer_type] = STATE(2362), + [sym_wrong_pointer_type] = STATE(2362), + [sym_map_type] = STATE(2362), + [sym_channel_type] = STATE(2362), + [sym_shared_type] = STATE(2362), + [sym_thread_type] = STATE(2362), + [sym_atomic_type] = STATE(2362), + [sym_generic_type] = STATE(2362), + [sym_function_type] = STATE(2362), + [sym_identifier] = ACTIONS(3198), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1356), - [anon_sym_LBRACE] = ACTIONS(1358), - [anon_sym_LPAREN] = ACTIONS(1360), - [anon_sym_fn] = ACTIONS(1362), - [anon_sym_PLUS] = ACTIONS(1364), - [anon_sym_DASH] = ACTIONS(1364), - [anon_sym_STAR] = ACTIONS(1366), - [anon_sym_struct] = ACTIONS(1370), + [anon_sym_DOT] = ACTIONS(3200), + [anon_sym_LBRACE] = ACTIONS(3202), + [anon_sym_LPAREN] = ACTIONS(3204), + [anon_sym_fn] = ACTIONS(3206), + [anon_sym_PLUS] = ACTIONS(3208), + [anon_sym_DASH] = ACTIONS(3208), + [anon_sym_STAR] = ACTIONS(3210), + [anon_sym_struct] = ACTIONS(3212), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(1372), - [anon_sym_go] = ACTIONS(1374), - [anon_sym_spawn] = ACTIONS(1376), - [anon_sym_json_DOTdecode] = ACTIONS(1378), - [anon_sym_LBRACK2] = ACTIONS(1380), - [anon_sym_TILDE] = ACTIONS(1364), - [anon_sym_CARET] = ACTIONS(1364), - [anon_sym_AMP] = ACTIONS(1382), - [anon_sym_LT_DASH] = ACTIONS(1384), - [sym_none] = ACTIONS(1386), - [sym_true] = ACTIONS(1386), - [sym_false] = ACTIONS(1386), - [sym_nil] = ACTIONS(1386), - [anon_sym_if] = ACTIONS(1877), - [anon_sym_DOLLARif] = ACTIONS(1390), - [anon_sym_match] = ACTIONS(1392), - [anon_sym_select] = ACTIONS(1394), - [anon_sym_lock] = ACTIONS(1396), - [anon_sym_rlock] = ACTIONS(1396), - [anon_sym_unsafe] = ACTIONS(1883), - [anon_sym_sql] = ACTIONS(1400), - [sym_int_literal] = ACTIONS(1386), - [sym_float_literal] = ACTIONS(1404), - [sym_rune_literal] = ACTIONS(1404), - [sym_pseudo_compile_time_identifier] = ACTIONS(1406), + [anon_sym_BANG] = ACTIONS(3214), + [anon_sym_go] = ACTIONS(3216), + [anon_sym_spawn] = ACTIONS(3218), + [anon_sym_json_DOTdecode] = ACTIONS(3220), + [anon_sym_LBRACK2] = ACTIONS(3222), + [anon_sym_TILDE] = ACTIONS(3208), + [anon_sym_CARET] = ACTIONS(3208), + [anon_sym_AMP] = ACTIONS(3224), + [anon_sym_LT_DASH] = ACTIONS(3226), + [sym_none] = ACTIONS(3228), + [sym_true] = ACTIONS(3228), + [sym_false] = ACTIONS(3228), + [sym_nil] = ACTIONS(3228), + [anon_sym_if] = ACTIONS(3230), + [anon_sym_DOLLARif] = ACTIONS(3232), + [anon_sym_match] = ACTIONS(3234), + [anon_sym_select] = ACTIONS(3236), + [anon_sym_lock] = ACTIONS(3238), + [anon_sym_rlock] = ACTIONS(3238), + [anon_sym_unsafe] = ACTIONS(3240), + [anon_sym_sql] = ACTIONS(3242), + [sym_int_literal] = ACTIONS(3228), + [sym_float_literal] = ACTIONS(3244), + [sym_rune_literal] = ACTIONS(3244), + [sym_pseudo_compile_time_identifier] = ACTIONS(3246), [anon_sym_shared] = ACTIONS(83), [anon_sym_map_LBRACK] = ACTIONS(85), [anon_sym_chan] = ACTIONS(87), [anon_sym_thread] = ACTIONS(89), [anon_sym_atomic] = ACTIONS(91), - [sym___double_quote] = ACTIONS(1408), - [sym___single_quote] = ACTIONS(1410), - [sym___c_double_quote] = ACTIONS(1412), - [sym___c_single_quote] = ACTIONS(1414), - [sym___r_double_quote] = ACTIONS(1416), - [sym___r_single_quote] = ACTIONS(1418), + [sym___double_quote] = ACTIONS(3248), + [sym___single_quote] = ACTIONS(3250), + [sym___c_double_quote] = ACTIONS(3252), + [sym___c_single_quote] = ACTIONS(3254), + [sym___r_double_quote] = ACTIONS(3256), + [sym___r_single_quote] = ACTIONS(3258), }, [617] = { [sym_line_comment] = STATE(617), [sym_block_comment] = STATE(617), - [sym__expression] = STATE(2436), - [sym__expression_without_blocks] = STATE(2625), - [sym__expression_with_blocks] = STATE(2625), + [sym__expression] = STATE(2451), + [sym__expression_without_blocks] = STATE(2638), + [sym__expression_with_blocks] = STATE(2638), [sym_inc_expression] = STATE(2765), [sym_dec_expression] = STATE(2765), [sym_or_block_expression] = STATE(2765), [sym_option_propagation_expression] = STATE(2765), [sym_result_propagation_expression] = STATE(2765), - [sym_anon_struct_value_expression] = STATE(2619), + [sym_anon_struct_value_expression] = STATE(2637), [sym_go_expression] = STATE(2765), [sym_spawn_expression] = STATE(2765), [sym_parenthesized_expression] = STATE(2765), [sym_call_expression] = STATE(2765), - [sym_type_initializer] = STATE(2619), + [sym_type_initializer] = STATE(2637), [sym_function_literal] = STATE(2765), [sym_reference_expression] = STATE(2764), - [sym_type_reference_expression] = STATE(3541), + [sym_type_reference_expression] = STATE(3460), [sym_unary_expression] = STATE(2765), [sym_receive_expression] = STATE(2765), [sym_binary_expression] = STATE(2765), [sym_as_type_cast_expression] = STATE(2765), [sym__max_group] = STATE(2765), - [sym_literal] = STATE(2769), - [sym_map_init_expression] = STATE(2619), + [sym_literal] = STATE(2771), + [sym_map_init_expression] = STATE(2637), [sym_array_creation] = STATE(2765), [sym_fixed_array_creation] = STATE(2765), [sym_selector_expression] = STATE(2765), [sym_index_expression] = STATE(2765), [sym_slice_expression] = STATE(2765), - [sym_if_expression] = STATE(2619), - [sym_compile_time_if_expression] = STATE(2619), + [sym_if_expression] = STATE(2637), + [sym_compile_time_if_expression] = STATE(2637), [sym_is_expression] = STATE(2765), [sym_in_expression] = STATE(2765), [sym_enum_fetch] = STATE(2765), - [sym_match_expression] = STATE(2619), - [sym_select_expression] = STATE(2619), - [sym_lock_expression] = STATE(2619), - [sym_unsafe_expression] = STATE(2619), - [sym_sql_expression] = STATE(2619), - [sym_c_string_literal] = STATE(2660), - [sym_raw_string_literal] = STATE(2660), - [sym_interpreted_string_literal] = STATE(2660), - [sym_mutability_modifiers] = STATE(567), - [sym_plain_type] = STATE(4008), - [sym__plain_type_without_special] = STATE(2302), - [sym_anon_struct_type] = STATE(2303), - [sym_multi_return_type] = STATE(2302), - [sym_result_type] = STATE(2302), - [sym_option_type] = STATE(2302), - [sym_qualified_type] = STATE(3541), - [sym_fixed_array_type] = STATE(2303), - [sym_array_type] = STATE(2303), - [sym_pointer_type] = STATE(2303), - [sym_wrong_pointer_type] = STATE(2303), - [sym_map_type] = STATE(2303), - [sym_channel_type] = STATE(2303), - [sym_shared_type] = STATE(2303), - [sym_thread_type] = STATE(2303), - [sym_atomic_type] = STATE(2303), - [sym_generic_type] = STATE(2303), - [sym_function_type] = STATE(2303), - [sym_identifier] = ACTIONS(1807), + [sym_match_expression] = STATE(2637), + [sym_select_expression] = STATE(2637), + [sym_lock_expression] = STATE(2637), + [sym_unsafe_expression] = STATE(2637), + [sym_sql_expression] = STATE(2637), + [sym_c_string_literal] = STATE(2762), + [sym_raw_string_literal] = STATE(2762), + [sym_interpreted_string_literal] = STATE(2762), + [sym_mutability_modifiers] = STATE(822), + [sym_plain_type] = STATE(4011), + [sym__plain_type_without_special] = STATE(2360), + [sym_anon_struct_type] = STATE(2362), + [sym_multi_return_type] = STATE(2360), + [sym_result_type] = STATE(2360), + [sym_option_type] = STATE(2360), + [sym_qualified_type] = STATE(3460), + [sym_fixed_array_type] = STATE(2362), + [sym_array_type] = STATE(2362), + [sym_pointer_type] = STATE(2362), + [sym_wrong_pointer_type] = STATE(2362), + [sym_map_type] = STATE(2362), + [sym_channel_type] = STATE(2362), + [sym_shared_type] = STATE(2362), + [sym_thread_type] = STATE(2362), + [sym_atomic_type] = STATE(2362), + [sym_generic_type] = STATE(2362), + [sym_function_type] = STATE(2362), + [sym_identifier] = ACTIONS(1815), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1081), - [anon_sym_LBRACE] = ACTIONS(1083), - [anon_sym_LPAREN] = ACTIONS(1087), - [anon_sym_fn] = ACTIONS(1089), - [anon_sym_PLUS] = ACTIONS(1091), - [anon_sym_DASH] = ACTIONS(1091), - [anon_sym_STAR] = ACTIONS(3348), - [anon_sym_struct] = ACTIONS(1095), + [anon_sym_DOT] = ACTIONS(1073), + [anon_sym_LBRACE] = ACTIONS(1075), + [anon_sym_LPAREN] = ACTIONS(1079), + [anon_sym_fn] = ACTIONS(1081), + [anon_sym_PLUS] = ACTIONS(1083), + [anon_sym_DASH] = ACTIONS(1083), + [anon_sym_STAR] = ACTIONS(3360), + [anon_sym_struct] = ACTIONS(1087), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(3350), - [anon_sym_go] = ACTIONS(1099), - [anon_sym_spawn] = ACTIONS(1101), - [anon_sym_json_DOTdecode] = ACTIONS(1103), - [anon_sym_LBRACK2] = ACTIONS(1105), - [anon_sym_TILDE] = ACTIONS(1091), - [anon_sym_CARET] = ACTIONS(1091), - [anon_sym_AMP] = ACTIONS(3352), - [anon_sym_LT_DASH] = ACTIONS(1109), - [sym_none] = ACTIONS(1111), - [sym_true] = ACTIONS(1111), - [sym_false] = ACTIONS(1111), - [sym_nil] = ACTIONS(1111), - [anon_sym_if] = ACTIONS(1113), - [anon_sym_DOLLARif] = ACTIONS(1117), - [anon_sym_match] = ACTIONS(1119), - [anon_sym_select] = ACTIONS(3104), - [anon_sym_lock] = ACTIONS(3106), - [anon_sym_rlock] = ACTIONS(3106), - [anon_sym_unsafe] = ACTIONS(1125), - [anon_sym_sql] = ACTIONS(1127), - [sym_int_literal] = ACTIONS(1111), - [sym_float_literal] = ACTIONS(1129), - [sym_rune_literal] = ACTIONS(1129), - [sym_pseudo_compile_time_identifier] = ACTIONS(1131), + [anon_sym_BANG] = ACTIONS(3362), + [anon_sym_go] = ACTIONS(1091), + [anon_sym_spawn] = ACTIONS(1093), + [anon_sym_json_DOTdecode] = ACTIONS(1095), + [anon_sym_LBRACK2] = ACTIONS(1097), + [anon_sym_TILDE] = ACTIONS(1083), + [anon_sym_CARET] = ACTIONS(1083), + [anon_sym_AMP] = ACTIONS(3364), + [anon_sym_LT_DASH] = ACTIONS(1101), + [sym_none] = ACTIONS(1103), + [sym_true] = ACTIONS(1103), + [sym_false] = ACTIONS(1103), + [sym_nil] = ACTIONS(1103), + [anon_sym_if] = ACTIONS(1105), + [anon_sym_DOLLARif] = ACTIONS(1109), + [anon_sym_match] = ACTIONS(1111), + [anon_sym_select] = ACTIONS(3138), + [anon_sym_lock] = ACTIONS(3140), + [anon_sym_rlock] = ACTIONS(3140), + [anon_sym_unsafe] = ACTIONS(1117), + [anon_sym_sql] = ACTIONS(1119), + [sym_int_literal] = ACTIONS(1103), + [sym_float_literal] = ACTIONS(1121), + [sym_rune_literal] = ACTIONS(1121), + [sym_pseudo_compile_time_identifier] = ACTIONS(1123), [anon_sym_shared] = ACTIONS(83), [anon_sym_map_LBRACK] = ACTIONS(85), [anon_sym_chan] = ACTIONS(87), [anon_sym_thread] = ACTIONS(89), [anon_sym_atomic] = ACTIONS(91), - [sym___double_quote] = ACTIONS(1133), - [sym___single_quote] = ACTIONS(1135), - [sym___c_double_quote] = ACTIONS(1137), - [sym___c_single_quote] = ACTIONS(1139), - [sym___r_double_quote] = ACTIONS(1141), - [sym___r_single_quote] = ACTIONS(1143), + [sym___double_quote] = ACTIONS(1125), + [sym___single_quote] = ACTIONS(1127), + [sym___c_double_quote] = ACTIONS(1129), + [sym___c_single_quote] = ACTIONS(1131), + [sym___r_double_quote] = ACTIONS(1133), + [sym___r_single_quote] = ACTIONS(1135), }, [618] = { [sym_line_comment] = STATE(618), [sym_block_comment] = STATE(618), - [sym__expression] = STATE(1107), - [sym__expression_without_blocks] = STATE(1141), - [sym__expression_with_blocks] = STATE(1141), - [sym_inc_expression] = STATE(1140), - [sym_dec_expression] = STATE(1140), - [sym_or_block_expression] = STATE(1140), - [sym_option_propagation_expression] = STATE(1140), - [sym_result_propagation_expression] = STATE(1140), - [sym_anon_struct_value_expression] = STATE(1199), - [sym_go_expression] = STATE(1140), - [sym_spawn_expression] = STATE(1140), - [sym_parenthesized_expression] = STATE(1140), - [sym_call_expression] = STATE(1140), - [sym_type_initializer] = STATE(1199), - [sym_function_literal] = STATE(1140), - [sym_reference_expression] = STATE(1181), - [sym_type_reference_expression] = STATE(3541), - [sym_unary_expression] = STATE(1140), - [sym_receive_expression] = STATE(1140), - [sym_binary_expression] = STATE(1140), - [sym_as_type_cast_expression] = STATE(1140), - [sym__max_group] = STATE(1140), - [sym_literal] = STATE(1146), - [sym_map_init_expression] = STATE(1199), - [sym_array_creation] = STATE(1140), - [sym_fixed_array_creation] = STATE(1140), - [sym_selector_expression] = STATE(1140), - [sym_index_expression] = STATE(1140), - [sym_slice_expression] = STATE(1140), - [sym_if_expression] = STATE(1199), - [sym_compile_time_if_expression] = STATE(1199), - [sym_is_expression] = STATE(1140), - [sym_in_expression] = STATE(1140), - [sym_enum_fetch] = STATE(1140), - [sym_match_expression] = STATE(1199), - [sym_select_expression] = STATE(1199), - [sym_lock_expression] = STATE(1199), - [sym_unsafe_expression] = STATE(1199), - [sym_sql_expression] = STATE(1199), - [sym_c_string_literal] = STATE(1147), - [sym_raw_string_literal] = STATE(1147), - [sym_interpreted_string_literal] = STATE(1147), - [sym_mutability_modifiers] = STATE(638), - [sym_plain_type] = STATE(4234), - [sym__plain_type_without_special] = STATE(2302), - [sym_anon_struct_type] = STATE(2303), - [sym_multi_return_type] = STATE(2302), - [sym_result_type] = STATE(2302), - [sym_option_type] = STATE(2302), - [sym_qualified_type] = STATE(3541), - [sym_fixed_array_type] = STATE(2303), - [sym_array_type] = STATE(2303), - [sym_pointer_type] = STATE(2303), - [sym_wrong_pointer_type] = STATE(2303), - [sym_map_type] = STATE(2303), - [sym_channel_type] = STATE(2303), - [sym_shared_type] = STATE(2303), - [sym_thread_type] = STATE(2303), - [sym_atomic_type] = STATE(2303), - [sym_generic_type] = STATE(2303), - [sym_function_type] = STATE(2303), - [sym_identifier] = ACTIONS(1071), + [sym__expression] = STATE(2811), + [sym__expression_without_blocks] = STATE(2347), + [sym__expression_with_blocks] = STATE(2347), + [sym_inc_expression] = STATE(2379), + [sym_dec_expression] = STATE(2379), + [sym_or_block_expression] = STATE(2379), + [sym_option_propagation_expression] = STATE(2379), + [sym_result_propagation_expression] = STATE(2379), + [sym_anon_struct_value_expression] = STATE(2378), + [sym_go_expression] = STATE(2379), + [sym_spawn_expression] = STATE(2379), + [sym_parenthesized_expression] = STATE(2379), + [sym_call_expression] = STATE(2379), + [sym_type_initializer] = STATE(2378), + [sym_function_literal] = STATE(2379), + [sym_reference_expression] = STATE(2377), + [sym_type_reference_expression] = STATE(3460), + [sym_unary_expression] = STATE(2379), + [sym_receive_expression] = STATE(2379), + [sym_binary_expression] = STATE(2379), + [sym_as_type_cast_expression] = STATE(2379), + [sym__max_group] = STATE(2379), + [sym_literal] = STATE(2392), + [sym_map_init_expression] = STATE(2378), + [sym_array_creation] = STATE(2379), + [sym_fixed_array_creation] = STATE(2379), + [sym_selector_expression] = STATE(2379), + [sym_index_expression] = STATE(2379), + [sym_slice_expression] = STATE(2379), + [sym_if_expression] = STATE(2378), + [sym_compile_time_if_expression] = STATE(2378), + [sym_is_expression] = STATE(2379), + [sym_in_expression] = STATE(2379), + [sym_enum_fetch] = STATE(2379), + [sym_match_expression] = STATE(2378), + [sym_select_expression] = STATE(2378), + [sym_lock_expression] = STATE(2378), + [sym_unsafe_expression] = STATE(2378), + [sym_sql_expression] = STATE(2378), + [sym_c_string_literal] = STATE(2401), + [sym_raw_string_literal] = STATE(2401), + [sym_interpreted_string_literal] = STATE(2401), + [sym_mutability_modifiers] = STATE(939), + [sym_plain_type] = STATE(4160), + [sym__plain_type_without_special] = STATE(2360), + [sym_anon_struct_type] = STATE(2362), + [sym_multi_return_type] = STATE(2360), + [sym_result_type] = STATE(2360), + [sym_option_type] = STATE(2360), + [sym_qualified_type] = STATE(3460), + [sym_fixed_array_type] = STATE(2362), + [sym_array_type] = STATE(2362), + [sym_pointer_type] = STATE(2362), + [sym_wrong_pointer_type] = STATE(2362), + [sym_map_type] = STATE(2362), + [sym_channel_type] = STATE(2362), + [sym_shared_type] = STATE(2362), + [sym_thread_type] = STATE(2362), + [sym_atomic_type] = STATE(2362), + [sym_generic_type] = STATE(2362), + [sym_function_type] = STATE(2362), + [sym_identifier] = ACTIONS(1428), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(631), - [anon_sym_LBRACE] = ACTIONS(633), - [anon_sym_LPAREN] = ACTIONS(637), - [anon_sym_fn] = ACTIONS(641), - [anon_sym_PLUS] = ACTIONS(643), - [anon_sym_DASH] = ACTIONS(643), - [anon_sym_STAR] = ACTIONS(645), - [anon_sym_struct] = ACTIONS(649), + [anon_sym_DOT] = ACTIONS(1430), + [anon_sym_LBRACE] = ACTIONS(1432), + [anon_sym_LPAREN] = ACTIONS(1434), + [anon_sym_fn] = ACTIONS(1436), + [anon_sym_PLUS] = ACTIONS(1438), + [anon_sym_DASH] = ACTIONS(1438), + [anon_sym_STAR] = ACTIONS(1440), + [anon_sym_struct] = ACTIONS(1442), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(655), - [anon_sym_go] = ACTIONS(657), - [anon_sym_spawn] = ACTIONS(659), - [anon_sym_json_DOTdecode] = ACTIONS(661), - [anon_sym_LBRACK2] = ACTIONS(663), - [anon_sym_TILDE] = ACTIONS(643), - [anon_sym_CARET] = ACTIONS(643), - [anon_sym_AMP] = ACTIONS(665), - [anon_sym_LT_DASH] = ACTIONS(667), - [sym_none] = ACTIONS(669), - [sym_true] = ACTIONS(669), - [sym_false] = ACTIONS(669), - [sym_nil] = ACTIONS(669), - [anon_sym_if] = ACTIONS(671), - [anon_sym_DOLLARif] = ACTIONS(673), - [anon_sym_match] = ACTIONS(675), - [anon_sym_select] = ACTIONS(677), - [anon_sym_lock] = ACTIONS(679), - [anon_sym_rlock] = ACTIONS(679), - [anon_sym_unsafe] = ACTIONS(681), - [anon_sym_sql] = ACTIONS(683), - [sym_int_literal] = ACTIONS(669), - [sym_float_literal] = ACTIONS(685), - [sym_rune_literal] = ACTIONS(685), - [sym_pseudo_compile_time_identifier] = ACTIONS(687), + [anon_sym_BANG] = ACTIONS(1444), + [anon_sym_go] = ACTIONS(1446), + [anon_sym_spawn] = ACTIONS(1448), + [anon_sym_json_DOTdecode] = ACTIONS(1450), + [anon_sym_LBRACK2] = ACTIONS(1452), + [anon_sym_TILDE] = ACTIONS(1438), + [anon_sym_CARET] = ACTIONS(1438), + [anon_sym_AMP] = ACTIONS(1454), + [anon_sym_LT_DASH] = ACTIONS(1456), + [sym_none] = ACTIONS(1458), + [sym_true] = ACTIONS(1458), + [sym_false] = ACTIONS(1458), + [sym_nil] = ACTIONS(1458), + [anon_sym_if] = ACTIONS(1833), + [anon_sym_DOLLARif] = ACTIONS(1462), + [anon_sym_match] = ACTIONS(1464), + [anon_sym_select] = ACTIONS(1466), + [anon_sym_lock] = ACTIONS(1468), + [anon_sym_rlock] = ACTIONS(1468), + [anon_sym_unsafe] = ACTIONS(1839), + [anon_sym_sql] = ACTIONS(1472), + [sym_int_literal] = ACTIONS(1458), + [sym_float_literal] = ACTIONS(1474), + [sym_rune_literal] = ACTIONS(1474), + [sym_pseudo_compile_time_identifier] = ACTIONS(1476), [anon_sym_shared] = ACTIONS(83), [anon_sym_map_LBRACK] = ACTIONS(85), [anon_sym_chan] = ACTIONS(87), [anon_sym_thread] = ACTIONS(89), [anon_sym_atomic] = ACTIONS(91), - [sym___double_quote] = ACTIONS(689), - [sym___single_quote] = ACTIONS(691), - [sym___c_double_quote] = ACTIONS(693), - [sym___c_single_quote] = ACTIONS(695), - [sym___r_double_quote] = ACTIONS(697), - [sym___r_single_quote] = ACTIONS(699), + [sym___double_quote] = ACTIONS(1480), + [sym___single_quote] = ACTIONS(1482), + [sym___c_double_quote] = ACTIONS(1484), + [sym___c_single_quote] = ACTIONS(1486), + [sym___r_double_quote] = ACTIONS(1488), + [sym___r_single_quote] = ACTIONS(1490), }, [619] = { [sym_line_comment] = STATE(619), [sym_block_comment] = STATE(619), - [sym__expression] = STATE(2434), - [sym__expression_without_blocks] = STATE(2625), - [sym__expression_with_blocks] = STATE(2625), - [sym_inc_expression] = STATE(2765), - [sym_dec_expression] = STATE(2765), - [sym_or_block_expression] = STATE(2765), - [sym_option_propagation_expression] = STATE(2765), - [sym_result_propagation_expression] = STATE(2765), - [sym_anon_struct_value_expression] = STATE(2619), - [sym_go_expression] = STATE(2765), - [sym_spawn_expression] = STATE(2765), - [sym_parenthesized_expression] = STATE(2765), - [sym_call_expression] = STATE(2765), - [sym_type_initializer] = STATE(2619), - [sym_function_literal] = STATE(2765), - [sym_reference_expression] = STATE(2764), - [sym_type_reference_expression] = STATE(3541), - [sym_unary_expression] = STATE(2765), - [sym_receive_expression] = STATE(2765), - [sym_binary_expression] = STATE(2765), - [sym_as_type_cast_expression] = STATE(2765), - [sym__max_group] = STATE(2765), - [sym_literal] = STATE(2769), - [sym_map_init_expression] = STATE(2619), - [sym_array_creation] = STATE(2765), - [sym_fixed_array_creation] = STATE(2765), - [sym_selector_expression] = STATE(2765), - [sym_index_expression] = STATE(2765), - [sym_slice_expression] = STATE(2765), - [sym_if_expression] = STATE(2619), - [sym_compile_time_if_expression] = STATE(2619), - [sym_is_expression] = STATE(2765), - [sym_in_expression] = STATE(2765), - [sym_enum_fetch] = STATE(2765), - [sym_match_expression] = STATE(2619), - [sym_select_expression] = STATE(2619), - [sym_lock_expression] = STATE(2619), - [sym_unsafe_expression] = STATE(2619), - [sym_sql_expression] = STATE(2619), - [sym_c_string_literal] = STATE(2660), - [sym_raw_string_literal] = STATE(2660), - [sym_interpreted_string_literal] = STATE(2660), - [sym_mutability_modifiers] = STATE(567), - [sym_plain_type] = STATE(4008), - [sym__plain_type_without_special] = STATE(2302), - [sym_anon_struct_type] = STATE(2303), - [sym_multi_return_type] = STATE(2302), - [sym_result_type] = STATE(2302), - [sym_option_type] = STATE(2302), - [sym_qualified_type] = STATE(3541), - [sym_fixed_array_type] = STATE(2303), - [sym_array_type] = STATE(2303), - [sym_pointer_type] = STATE(2303), - [sym_wrong_pointer_type] = STATE(2303), - [sym_map_type] = STATE(2303), - [sym_channel_type] = STATE(2303), - [sym_shared_type] = STATE(2303), - [sym_thread_type] = STATE(2303), - [sym_atomic_type] = STATE(2303), - [sym_generic_type] = STATE(2303), - [sym_function_type] = STATE(2303), - [sym_identifier] = ACTIONS(1807), - [anon_sym_SLASH_SLASH] = ACTIONS(3), - [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1081), - [anon_sym_LBRACE] = ACTIONS(1083), - [anon_sym_LPAREN] = ACTIONS(1087), - [anon_sym_fn] = ACTIONS(1089), - [anon_sym_PLUS] = ACTIONS(1091), - [anon_sym_DASH] = ACTIONS(1091), - [anon_sym_STAR] = ACTIONS(3348), - [anon_sym_struct] = ACTIONS(1095), - [anon_sym_mut] = ACTIONS(41), - [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(3350), - [anon_sym_go] = ACTIONS(1099), - [anon_sym_spawn] = ACTIONS(1101), - [anon_sym_json_DOTdecode] = ACTIONS(1103), - [anon_sym_LBRACK2] = ACTIONS(1105), - [anon_sym_TILDE] = ACTIONS(1091), - [anon_sym_CARET] = ACTIONS(1091), - [anon_sym_AMP] = ACTIONS(3352), - [anon_sym_LT_DASH] = ACTIONS(1109), - [sym_none] = ACTIONS(1111), - [sym_true] = ACTIONS(1111), - [sym_false] = ACTIONS(1111), - [sym_nil] = ACTIONS(1111), - [anon_sym_if] = ACTIONS(1113), - [anon_sym_DOLLARif] = ACTIONS(1117), - [anon_sym_match] = ACTIONS(1119), - [anon_sym_select] = ACTIONS(3104), - [anon_sym_lock] = ACTIONS(3106), - [anon_sym_rlock] = ACTIONS(3106), - [anon_sym_unsafe] = ACTIONS(1125), - [anon_sym_sql] = ACTIONS(1127), - [sym_int_literal] = ACTIONS(1111), - [sym_float_literal] = ACTIONS(1129), - [sym_rune_literal] = ACTIONS(1129), - [sym_pseudo_compile_time_identifier] = ACTIONS(1131), - [anon_sym_shared] = ACTIONS(83), - [anon_sym_map_LBRACK] = ACTIONS(85), - [anon_sym_chan] = ACTIONS(87), - [anon_sym_thread] = ACTIONS(89), - [anon_sym_atomic] = ACTIONS(91), - [sym___double_quote] = ACTIONS(1133), - [sym___single_quote] = ACTIONS(1135), - [sym___c_double_quote] = ACTIONS(1137), - [sym___c_single_quote] = ACTIONS(1139), - [sym___r_double_quote] = ACTIONS(1141), - [sym___r_single_quote] = ACTIONS(1143), - }, - [620] = { - [sym_line_comment] = STATE(620), - [sym_block_comment] = STATE(620), - [sym__expression] = STATE(1114), - [sym__expression_without_blocks] = STATE(1141), - [sym__expression_with_blocks] = STATE(1141), - [sym_inc_expression] = STATE(1140), - [sym_dec_expression] = STATE(1140), - [sym_or_block_expression] = STATE(1140), - [sym_option_propagation_expression] = STATE(1140), - [sym_result_propagation_expression] = STATE(1140), - [sym_anon_struct_value_expression] = STATE(1199), - [sym_go_expression] = STATE(1140), - [sym_spawn_expression] = STATE(1140), - [sym_parenthesized_expression] = STATE(1140), - [sym_call_expression] = STATE(1140), - [sym_type_initializer] = STATE(1199), - [sym_function_literal] = STATE(1140), - [sym_reference_expression] = STATE(1181), - [sym_type_reference_expression] = STATE(3541), - [sym_unary_expression] = STATE(1140), - [sym_receive_expression] = STATE(1140), - [sym_binary_expression] = STATE(1140), - [sym_as_type_cast_expression] = STATE(1140), - [sym__max_group] = STATE(1140), - [sym_literal] = STATE(1146), - [sym_map_init_expression] = STATE(1199), - [sym_array_creation] = STATE(1140), - [sym_fixed_array_creation] = STATE(1140), - [sym_selector_expression] = STATE(1140), - [sym_index_expression] = STATE(1140), - [sym_slice_expression] = STATE(1140), - [sym_if_expression] = STATE(1199), - [sym_compile_time_if_expression] = STATE(1199), - [sym_is_expression] = STATE(1140), - [sym_in_expression] = STATE(1140), - [sym_enum_fetch] = STATE(1140), - [sym_match_expression] = STATE(1199), - [sym_select_expression] = STATE(1199), - [sym_lock_expression] = STATE(1199), - [sym_unsafe_expression] = STATE(1199), - [sym_sql_expression] = STATE(1199), - [sym_c_string_literal] = STATE(1147), - [sym_raw_string_literal] = STATE(1147), - [sym_interpreted_string_literal] = STATE(1147), - [sym_mutability_modifiers] = STATE(638), - [sym_plain_type] = STATE(4234), - [sym__plain_type_without_special] = STATE(2302), - [sym_anon_struct_type] = STATE(2303), - [sym_multi_return_type] = STATE(2302), - [sym_result_type] = STATE(2302), - [sym_option_type] = STATE(2302), - [sym_qualified_type] = STATE(3541), - [sym_fixed_array_type] = STATE(2303), - [sym_array_type] = STATE(2303), - [sym_pointer_type] = STATE(2303), - [sym_wrong_pointer_type] = STATE(2303), - [sym_map_type] = STATE(2303), - [sym_channel_type] = STATE(2303), - [sym_shared_type] = STATE(2303), - [sym_thread_type] = STATE(2303), - [sym_atomic_type] = STATE(2303), - [sym_generic_type] = STATE(2303), - [sym_function_type] = STATE(2303), - [sym_identifier] = ACTIONS(1071), + [sym__expression] = STATE(1115), + [sym__expression_without_blocks] = STATE(1210), + [sym__expression_with_blocks] = STATE(1210), + [sym_inc_expression] = STATE(1211), + [sym_dec_expression] = STATE(1211), + [sym_or_block_expression] = STATE(1211), + [sym_option_propagation_expression] = STATE(1211), + [sym_result_propagation_expression] = STATE(1211), + [sym_anon_struct_value_expression] = STATE(1212), + [sym_go_expression] = STATE(1211), + [sym_spawn_expression] = STATE(1211), + [sym_parenthesized_expression] = STATE(1211), + [sym_call_expression] = STATE(1211), + [sym_type_initializer] = STATE(1212), + [sym_function_literal] = STATE(1211), + [sym_reference_expression] = STATE(1233), + [sym_type_reference_expression] = STATE(3460), + [sym_unary_expression] = STATE(1211), + [sym_receive_expression] = STATE(1211), + [sym_binary_expression] = STATE(1211), + [sym_as_type_cast_expression] = STATE(1211), + [sym__max_group] = STATE(1211), + [sym_literal] = STATE(1209), + [sym_map_init_expression] = STATE(1212), + [sym_array_creation] = STATE(1211), + [sym_fixed_array_creation] = STATE(1211), + [sym_selector_expression] = STATE(1211), + [sym_index_expression] = STATE(1211), + [sym_slice_expression] = STATE(1211), + [sym_if_expression] = STATE(1212), + [sym_compile_time_if_expression] = STATE(1212), + [sym_is_expression] = STATE(1211), + [sym_in_expression] = STATE(1211), + [sym_enum_fetch] = STATE(1211), + [sym_match_expression] = STATE(1212), + [sym_select_expression] = STATE(1212), + [sym_lock_expression] = STATE(1212), + [sym_unsafe_expression] = STATE(1212), + [sym_sql_expression] = STATE(1212), + [sym_c_string_literal] = STATE(1201), + [sym_raw_string_literal] = STATE(1201), + [sym_interpreted_string_literal] = STATE(1201), + [sym_mutability_modifiers] = STATE(589), + [sym_plain_type] = STATE(4123), + [sym__plain_type_without_special] = STATE(2360), + [sym_anon_struct_type] = STATE(2362), + [sym_multi_return_type] = STATE(2360), + [sym_result_type] = STATE(2360), + [sym_option_type] = STATE(2360), + [sym_qualified_type] = STATE(3460), + [sym_fixed_array_type] = STATE(2362), + [sym_array_type] = STATE(2362), + [sym_pointer_type] = STATE(2362), + [sym_wrong_pointer_type] = STATE(2362), + [sym_map_type] = STATE(2362), + [sym_channel_type] = STATE(2362), + [sym_shared_type] = STATE(2362), + [sym_thread_type] = STATE(2362), + [sym_atomic_type] = STATE(2362), + [sym_generic_type] = STATE(2362), + [sym_function_type] = STATE(2362), + [sym_identifier] = ACTIONS(1139), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), [anon_sym_DOT] = ACTIONS(631), @@ -94647,299 +94553,413 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym___r_double_quote] = ACTIONS(697), [sym___r_single_quote] = ACTIONS(699), }, + [620] = { + [sym_line_comment] = STATE(620), + [sym_block_comment] = STATE(620), + [sym__expression] = STATE(2122), + [sym__expression_without_blocks] = STATE(2162), + [sym__expression_with_blocks] = STATE(2162), + [sym_inc_expression] = STATE(2161), + [sym_dec_expression] = STATE(2161), + [sym_or_block_expression] = STATE(2161), + [sym_option_propagation_expression] = STATE(2161), + [sym_result_propagation_expression] = STATE(2161), + [sym_anon_struct_value_expression] = STATE(2160), + [sym_go_expression] = STATE(2161), + [sym_spawn_expression] = STATE(2161), + [sym_parenthesized_expression] = STATE(2161), + [sym_call_expression] = STATE(2161), + [sym_type_initializer] = STATE(2160), + [sym_function_literal] = STATE(2161), + [sym_reference_expression] = STATE(2159), + [sym_type_reference_expression] = STATE(3460), + [sym_unary_expression] = STATE(2161), + [sym_receive_expression] = STATE(2161), + [sym_binary_expression] = STATE(2161), + [sym_as_type_cast_expression] = STATE(2161), + [sym__max_group] = STATE(2161), + [sym_literal] = STATE(2164), + [sym_map_init_expression] = STATE(2160), + [sym_array_creation] = STATE(2161), + [sym_fixed_array_creation] = STATE(2161), + [sym_selector_expression] = STATE(2161), + [sym_index_expression] = STATE(2161), + [sym_slice_expression] = STATE(2161), + [sym_if_expression] = STATE(2160), + [sym_compile_time_if_expression] = STATE(2160), + [sym_is_expression] = STATE(2161), + [sym_in_expression] = STATE(2161), + [sym_enum_fetch] = STATE(2161), + [sym_match_expression] = STATE(2160), + [sym_select_expression] = STATE(2160), + [sym_lock_expression] = STATE(2160), + [sym_unsafe_expression] = STATE(2160), + [sym_sql_expression] = STATE(2160), + [sym_c_string_literal] = STATE(2166), + [sym_raw_string_literal] = STATE(2166), + [sym_interpreted_string_literal] = STATE(2166), + [sym_mutability_modifiers] = STATE(575), + [sym_plain_type] = STATE(4168), + [sym__plain_type_without_special] = STATE(2360), + [sym_anon_struct_type] = STATE(2362), + [sym_multi_return_type] = STATE(2360), + [sym_result_type] = STATE(2360), + [sym_option_type] = STATE(2360), + [sym_qualified_type] = STATE(3460), + [sym_fixed_array_type] = STATE(2362), + [sym_array_type] = STATE(2362), + [sym_pointer_type] = STATE(2362), + [sym_wrong_pointer_type] = STATE(2362), + [sym_map_type] = STATE(2362), + [sym_channel_type] = STATE(2362), + [sym_shared_type] = STATE(2362), + [sym_thread_type] = STATE(2362), + [sym_atomic_type] = STATE(2362), + [sym_generic_type] = STATE(2362), + [sym_function_type] = STATE(2362), + [sym_identifier] = ACTIONS(3292), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(3294), + [anon_sym_LBRACE] = ACTIONS(3296), + [anon_sym_LPAREN] = ACTIONS(3298), + [anon_sym_fn] = ACTIONS(3300), + [anon_sym_PLUS] = ACTIONS(3302), + [anon_sym_DASH] = ACTIONS(3302), + [anon_sym_STAR] = ACTIONS(3304), + [anon_sym_struct] = ACTIONS(3306), + [anon_sym_mut] = ACTIONS(41), + [anon_sym_QMARK] = ACTIONS(47), + [anon_sym_BANG] = ACTIONS(3308), + [anon_sym_go] = ACTIONS(3310), + [anon_sym_spawn] = ACTIONS(3312), + [anon_sym_json_DOTdecode] = ACTIONS(3314), + [anon_sym_LBRACK2] = ACTIONS(3316), + [anon_sym_TILDE] = ACTIONS(3302), + [anon_sym_CARET] = ACTIONS(3302), + [anon_sym_AMP] = ACTIONS(3318), + [anon_sym_LT_DASH] = ACTIONS(3320), + [sym_none] = ACTIONS(3322), + [sym_true] = ACTIONS(3322), + [sym_false] = ACTIONS(3322), + [sym_nil] = ACTIONS(3322), + [anon_sym_if] = ACTIONS(3324), + [anon_sym_DOLLARif] = ACTIONS(3326), + [anon_sym_match] = ACTIONS(3328), + [anon_sym_select] = ACTIONS(3330), + [anon_sym_lock] = ACTIONS(3332), + [anon_sym_rlock] = ACTIONS(3332), + [anon_sym_unsafe] = ACTIONS(3334), + [anon_sym_sql] = ACTIONS(3336), + [sym_int_literal] = ACTIONS(3322), + [sym_float_literal] = ACTIONS(3338), + [sym_rune_literal] = ACTIONS(3338), + [sym_pseudo_compile_time_identifier] = ACTIONS(3340), + [anon_sym_shared] = ACTIONS(83), + [anon_sym_map_LBRACK] = ACTIONS(85), + [anon_sym_chan] = ACTIONS(87), + [anon_sym_thread] = ACTIONS(89), + [anon_sym_atomic] = ACTIONS(91), + [sym___double_quote] = ACTIONS(3342), + [sym___single_quote] = ACTIONS(3344), + [sym___c_double_quote] = ACTIONS(3346), + [sym___c_single_quote] = ACTIONS(3348), + [sym___r_double_quote] = ACTIONS(3350), + [sym___r_single_quote] = ACTIONS(3352), + }, [621] = { [sym_line_comment] = STATE(621), [sym_block_comment] = STATE(621), - [sym__expression] = STATE(2263), - [sym__expression_without_blocks] = STATE(2300), - [sym__expression_with_blocks] = STATE(2300), - [sym_inc_expression] = STATE(2307), - [sym_dec_expression] = STATE(2307), - [sym_or_block_expression] = STATE(2307), - [sym_option_propagation_expression] = STATE(2307), - [sym_result_propagation_expression] = STATE(2307), - [sym_anon_struct_value_expression] = STATE(2380), - [sym_go_expression] = STATE(2307), - [sym_spawn_expression] = STATE(2307), - [sym_parenthesized_expression] = STATE(2307), - [sym_call_expression] = STATE(2307), - [sym_type_initializer] = STATE(2380), - [sym_function_literal] = STATE(2307), - [sym_reference_expression] = STATE(2311), - [sym_type_reference_expression] = STATE(3541), - [sym_unary_expression] = STATE(2307), - [sym_receive_expression] = STATE(2307), - [sym_binary_expression] = STATE(2307), - [sym_as_type_cast_expression] = STATE(2307), - [sym__max_group] = STATE(2307), - [sym_literal] = STATE(2292), - [sym_map_init_expression] = STATE(2380), - [sym_array_creation] = STATE(2307), - [sym_fixed_array_creation] = STATE(2307), - [sym_selector_expression] = STATE(2307), - [sym_index_expression] = STATE(2307), - [sym_slice_expression] = STATE(2307), - [sym_if_expression] = STATE(2380), - [sym_compile_time_if_expression] = STATE(2380), - [sym_is_expression] = STATE(2307), - [sym_in_expression] = STATE(2307), - [sym_enum_fetch] = STATE(2307), - [sym_match_expression] = STATE(2380), - [sym_select_expression] = STATE(2380), - [sym_lock_expression] = STATE(2380), - [sym_unsafe_expression] = STATE(2380), - [sym_sql_expression] = STATE(2380), - [sym_c_string_literal] = STATE(2308), - [sym_raw_string_literal] = STATE(2308), - [sym_interpreted_string_literal] = STATE(2308), - [sym_mutability_modifiers] = STATE(939), - [sym_plain_type] = STATE(3565), - [sym__plain_type_without_special] = STATE(2302), - [sym_anon_struct_type] = STATE(2303), - [sym_multi_return_type] = STATE(2302), - [sym_result_type] = STATE(2302), - [sym_option_type] = STATE(2302), - [sym_qualified_type] = STATE(3541), - [sym_fixed_array_type] = STATE(2303), - [sym_array_type] = STATE(2303), - [sym_pointer_type] = STATE(2303), - [sym_wrong_pointer_type] = STATE(2303), - [sym_map_type] = STATE(2303), - [sym_channel_type] = STATE(2303), - [sym_shared_type] = STATE(2303), - [sym_thread_type] = STATE(2303), - [sym_atomic_type] = STATE(2303), - [sym_generic_type] = STATE(2303), - [sym_function_type] = STATE(2303), - [sym_identifier] = ACTIONS(2189), + [sym__expression] = STATE(2122), + [sym__expression_without_blocks] = STATE(2162), + [sym__expression_with_blocks] = STATE(2162), + [sym_inc_expression] = STATE(2161), + [sym_dec_expression] = STATE(2161), + [sym_or_block_expression] = STATE(2161), + [sym_option_propagation_expression] = STATE(2161), + [sym_result_propagation_expression] = STATE(2161), + [sym_anon_struct_value_expression] = STATE(2160), + [sym_go_expression] = STATE(2161), + [sym_spawn_expression] = STATE(2161), + [sym_parenthesized_expression] = STATE(2161), + [sym_call_expression] = STATE(2161), + [sym_type_initializer] = STATE(2160), + [sym_function_literal] = STATE(2161), + [sym_reference_expression] = STATE(2159), + [sym_type_reference_expression] = STATE(3460), + [sym_unary_expression] = STATE(2161), + [sym_receive_expression] = STATE(2161), + [sym_binary_expression] = STATE(2161), + [sym_as_type_cast_expression] = STATE(2161), + [sym__max_group] = STATE(2161), + [sym_literal] = STATE(2164), + [sym_map_init_expression] = STATE(2160), + [sym_array_creation] = STATE(2161), + [sym_fixed_array_creation] = STATE(2161), + [sym_selector_expression] = STATE(2161), + [sym_index_expression] = STATE(2161), + [sym_slice_expression] = STATE(2161), + [sym_if_expression] = STATE(2160), + [sym_compile_time_if_expression] = STATE(2160), + [sym_is_expression] = STATE(2161), + [sym_in_expression] = STATE(2161), + [sym_enum_fetch] = STATE(2161), + [sym_match_expression] = STATE(2160), + [sym_select_expression] = STATE(2160), + [sym_lock_expression] = STATE(2160), + [sym_unsafe_expression] = STATE(2160), + [sym_sql_expression] = STATE(2160), + [sym_c_string_literal] = STATE(2166), + [sym_raw_string_literal] = STATE(2166), + [sym_interpreted_string_literal] = STATE(2166), + [sym_mutability_modifiers] = STATE(575), + [sym_plain_type] = STATE(4166), + [sym__plain_type_without_special] = STATE(2360), + [sym_anon_struct_type] = STATE(2362), + [sym_multi_return_type] = STATE(2360), + [sym_result_type] = STATE(2360), + [sym_option_type] = STATE(2360), + [sym_qualified_type] = STATE(3460), + [sym_fixed_array_type] = STATE(2362), + [sym_array_type] = STATE(2362), + [sym_pointer_type] = STATE(2362), + [sym_wrong_pointer_type] = STATE(2362), + [sym_map_type] = STATE(2362), + [sym_channel_type] = STATE(2362), + [sym_shared_type] = STATE(2362), + [sym_thread_type] = STATE(2362), + [sym_atomic_type] = STATE(2362), + [sym_generic_type] = STATE(2362), + [sym_function_type] = STATE(2362), + [sym_identifier] = ACTIONS(3292), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1428), - [anon_sym_LBRACE] = ACTIONS(1430), - [anon_sym_LPAREN] = ACTIONS(1432), - [anon_sym_fn] = ACTIONS(1434), - [anon_sym_PLUS] = ACTIONS(2491), - [anon_sym_DASH] = ACTIONS(2491), - [anon_sym_STAR] = ACTIONS(3354), - [anon_sym_struct] = ACTIONS(1440), + [anon_sym_DOT] = ACTIONS(3294), + [anon_sym_LBRACE] = ACTIONS(3296), + [anon_sym_LPAREN] = ACTIONS(3298), + [anon_sym_fn] = ACTIONS(3300), + [anon_sym_PLUS] = ACTIONS(3302), + [anon_sym_DASH] = ACTIONS(3302), + [anon_sym_STAR] = ACTIONS(3304), + [anon_sym_struct] = ACTIONS(3306), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(3356), - [anon_sym_go] = ACTIONS(2497), - [anon_sym_spawn] = ACTIONS(2499), - [anon_sym_json_DOTdecode] = ACTIONS(1448), - [anon_sym_LBRACK2] = ACTIONS(1450), - [anon_sym_TILDE] = ACTIONS(2491), - [anon_sym_CARET] = ACTIONS(2491), - [anon_sym_AMP] = ACTIONS(3358), - [anon_sym_LT_DASH] = ACTIONS(2503), - [sym_none] = ACTIONS(1456), - [sym_true] = ACTIONS(1456), - [sym_false] = ACTIONS(1456), - [sym_nil] = ACTIONS(1456), - [anon_sym_if] = ACTIONS(1827), - [anon_sym_DOLLARif] = ACTIONS(1460), - [anon_sym_match] = ACTIONS(1462), - [anon_sym_select] = ACTIONS(1464), - [anon_sym_lock] = ACTIONS(1466), - [anon_sym_rlock] = ACTIONS(1466), - [anon_sym_unsafe] = ACTIONS(1833), - [anon_sym_sql] = ACTIONS(1470), - [sym_int_literal] = ACTIONS(1456), - [sym_float_literal] = ACTIONS(1472), - [sym_rune_literal] = ACTIONS(1472), - [sym_pseudo_compile_time_identifier] = ACTIONS(1474), + [anon_sym_BANG] = ACTIONS(3308), + [anon_sym_go] = ACTIONS(3310), + [anon_sym_spawn] = ACTIONS(3312), + [anon_sym_json_DOTdecode] = ACTIONS(3314), + [anon_sym_LBRACK2] = ACTIONS(3316), + [anon_sym_TILDE] = ACTIONS(3302), + [anon_sym_CARET] = ACTIONS(3302), + [anon_sym_AMP] = ACTIONS(3318), + [anon_sym_LT_DASH] = ACTIONS(3320), + [sym_none] = ACTIONS(3322), + [sym_true] = ACTIONS(3322), + [sym_false] = ACTIONS(3322), + [sym_nil] = ACTIONS(3322), + [anon_sym_if] = ACTIONS(3324), + [anon_sym_DOLLARif] = ACTIONS(3326), + [anon_sym_match] = ACTIONS(3328), + [anon_sym_select] = ACTIONS(3330), + [anon_sym_lock] = ACTIONS(3332), + [anon_sym_rlock] = ACTIONS(3332), + [anon_sym_unsafe] = ACTIONS(3334), + [anon_sym_sql] = ACTIONS(3336), + [sym_int_literal] = ACTIONS(3322), + [sym_float_literal] = ACTIONS(3338), + [sym_rune_literal] = ACTIONS(3338), + [sym_pseudo_compile_time_identifier] = ACTIONS(3340), [anon_sym_shared] = ACTIONS(83), [anon_sym_map_LBRACK] = ACTIONS(85), [anon_sym_chan] = ACTIONS(87), [anon_sym_thread] = ACTIONS(89), [anon_sym_atomic] = ACTIONS(91), - [sym___double_quote] = ACTIONS(1478), - [sym___single_quote] = ACTIONS(1480), - [sym___c_double_quote] = ACTIONS(1482), - [sym___c_single_quote] = ACTIONS(1484), - [sym___r_double_quote] = ACTIONS(1486), - [sym___r_single_quote] = ACTIONS(1488), + [sym___double_quote] = ACTIONS(3342), + [sym___single_quote] = ACTIONS(3344), + [sym___c_double_quote] = ACTIONS(3346), + [sym___c_single_quote] = ACTIONS(3348), + [sym___r_double_quote] = ACTIONS(3350), + [sym___r_single_quote] = ACTIONS(3352), }, [622] = { [sym_line_comment] = STATE(622), [sym_block_comment] = STATE(622), - [sym__expression] = STATE(2263), - [sym__expression_without_blocks] = STATE(2300), - [sym__expression_with_blocks] = STATE(2300), - [sym_inc_expression] = STATE(2307), - [sym_dec_expression] = STATE(2307), - [sym_or_block_expression] = STATE(2307), - [sym_option_propagation_expression] = STATE(2307), - [sym_result_propagation_expression] = STATE(2307), - [sym_anon_struct_value_expression] = STATE(2380), - [sym_go_expression] = STATE(2307), - [sym_spawn_expression] = STATE(2307), - [sym_parenthesized_expression] = STATE(2307), - [sym_call_expression] = STATE(2307), - [sym_type_initializer] = STATE(2380), - [sym_function_literal] = STATE(2307), - [sym_reference_expression] = STATE(2311), - [sym_type_reference_expression] = STATE(3541), - [sym_unary_expression] = STATE(2307), - [sym_receive_expression] = STATE(2307), - [sym_binary_expression] = STATE(2307), - [sym_as_type_cast_expression] = STATE(2307), - [sym__max_group] = STATE(2307), - [sym_literal] = STATE(2292), - [sym_map_init_expression] = STATE(2380), - [sym_array_creation] = STATE(2307), - [sym_fixed_array_creation] = STATE(2307), - [sym_selector_expression] = STATE(2307), - [sym_index_expression] = STATE(2307), - [sym_slice_expression] = STATE(2307), - [sym_if_expression] = STATE(2380), - [sym_compile_time_if_expression] = STATE(2380), - [sym_is_expression] = STATE(2307), - [sym_in_expression] = STATE(2307), - [sym_enum_fetch] = STATE(2307), - [sym_match_expression] = STATE(2380), - [sym_select_expression] = STATE(2380), - [sym_lock_expression] = STATE(2380), - [sym_unsafe_expression] = STATE(2380), - [sym_sql_expression] = STATE(2380), - [sym_c_string_literal] = STATE(2308), - [sym_raw_string_literal] = STATE(2308), - [sym_interpreted_string_literal] = STATE(2308), - [sym_mutability_modifiers] = STATE(939), - [sym_plain_type] = STATE(3560), - [sym__plain_type_without_special] = STATE(2302), - [sym_anon_struct_type] = STATE(2303), - [sym_multi_return_type] = STATE(2302), - [sym_result_type] = STATE(2302), - [sym_option_type] = STATE(2302), - [sym_qualified_type] = STATE(3541), - [sym_fixed_array_type] = STATE(2303), - [sym_array_type] = STATE(2303), - [sym_pointer_type] = STATE(2303), - [sym_wrong_pointer_type] = STATE(2303), - [sym_map_type] = STATE(2303), - [sym_channel_type] = STATE(2303), - [sym_shared_type] = STATE(2303), - [sym_thread_type] = STATE(2303), - [sym_atomic_type] = STATE(2303), - [sym_generic_type] = STATE(2303), - [sym_function_type] = STATE(2303), - [sym_identifier] = ACTIONS(2189), + [sym__expression] = STATE(2122), + [sym__expression_without_blocks] = STATE(2162), + [sym__expression_with_blocks] = STATE(2162), + [sym_inc_expression] = STATE(2161), + [sym_dec_expression] = STATE(2161), + [sym_or_block_expression] = STATE(2161), + [sym_option_propagation_expression] = STATE(2161), + [sym_result_propagation_expression] = STATE(2161), + [sym_anon_struct_value_expression] = STATE(2160), + [sym_go_expression] = STATE(2161), + [sym_spawn_expression] = STATE(2161), + [sym_parenthesized_expression] = STATE(2161), + [sym_call_expression] = STATE(2161), + [sym_type_initializer] = STATE(2160), + [sym_function_literal] = STATE(2161), + [sym_reference_expression] = STATE(2159), + [sym_type_reference_expression] = STATE(3460), + [sym_unary_expression] = STATE(2161), + [sym_receive_expression] = STATE(2161), + [sym_binary_expression] = STATE(2161), + [sym_as_type_cast_expression] = STATE(2161), + [sym__max_group] = STATE(2161), + [sym_literal] = STATE(2164), + [sym_map_init_expression] = STATE(2160), + [sym_array_creation] = STATE(2161), + [sym_fixed_array_creation] = STATE(2161), + [sym_selector_expression] = STATE(2161), + [sym_index_expression] = STATE(2161), + [sym_slice_expression] = STATE(2161), + [sym_if_expression] = STATE(2160), + [sym_compile_time_if_expression] = STATE(2160), + [sym_is_expression] = STATE(2161), + [sym_in_expression] = STATE(2161), + [sym_enum_fetch] = STATE(2161), + [sym_match_expression] = STATE(2160), + [sym_select_expression] = STATE(2160), + [sym_lock_expression] = STATE(2160), + [sym_unsafe_expression] = STATE(2160), + [sym_sql_expression] = STATE(2160), + [sym_c_string_literal] = STATE(2166), + [sym_raw_string_literal] = STATE(2166), + [sym_interpreted_string_literal] = STATE(2166), + [sym_mutability_modifiers] = STATE(575), + [sym_plain_type] = STATE(4165), + [sym__plain_type_without_special] = STATE(2360), + [sym_anon_struct_type] = STATE(2362), + [sym_multi_return_type] = STATE(2360), + [sym_result_type] = STATE(2360), + [sym_option_type] = STATE(2360), + [sym_qualified_type] = STATE(3460), + [sym_fixed_array_type] = STATE(2362), + [sym_array_type] = STATE(2362), + [sym_pointer_type] = STATE(2362), + [sym_wrong_pointer_type] = STATE(2362), + [sym_map_type] = STATE(2362), + [sym_channel_type] = STATE(2362), + [sym_shared_type] = STATE(2362), + [sym_thread_type] = STATE(2362), + [sym_atomic_type] = STATE(2362), + [sym_generic_type] = STATE(2362), + [sym_function_type] = STATE(2362), + [sym_identifier] = ACTIONS(3292), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1428), - [anon_sym_LBRACE] = ACTIONS(1430), - [anon_sym_LPAREN] = ACTIONS(1432), - [anon_sym_fn] = ACTIONS(1434), - [anon_sym_PLUS] = ACTIONS(2491), - [anon_sym_DASH] = ACTIONS(2491), - [anon_sym_STAR] = ACTIONS(3354), - [anon_sym_struct] = ACTIONS(1440), + [anon_sym_DOT] = ACTIONS(3294), + [anon_sym_LBRACE] = ACTIONS(3296), + [anon_sym_LPAREN] = ACTIONS(3298), + [anon_sym_fn] = ACTIONS(3300), + [anon_sym_PLUS] = ACTIONS(3302), + [anon_sym_DASH] = ACTIONS(3302), + [anon_sym_STAR] = ACTIONS(3304), + [anon_sym_struct] = ACTIONS(3306), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(3356), - [anon_sym_go] = ACTIONS(2497), - [anon_sym_spawn] = ACTIONS(2499), - [anon_sym_json_DOTdecode] = ACTIONS(1448), - [anon_sym_LBRACK2] = ACTIONS(1450), - [anon_sym_TILDE] = ACTIONS(2491), - [anon_sym_CARET] = ACTIONS(2491), - [anon_sym_AMP] = ACTIONS(3358), - [anon_sym_LT_DASH] = ACTIONS(2503), - [sym_none] = ACTIONS(1456), - [sym_true] = ACTIONS(1456), - [sym_false] = ACTIONS(1456), - [sym_nil] = ACTIONS(1456), - [anon_sym_if] = ACTIONS(1827), - [anon_sym_DOLLARif] = ACTIONS(1460), - [anon_sym_match] = ACTIONS(1462), - [anon_sym_select] = ACTIONS(1464), - [anon_sym_lock] = ACTIONS(1466), - [anon_sym_rlock] = ACTIONS(1466), - [anon_sym_unsafe] = ACTIONS(1833), - [anon_sym_sql] = ACTIONS(1470), - [sym_int_literal] = ACTIONS(1456), - [sym_float_literal] = ACTIONS(1472), - [sym_rune_literal] = ACTIONS(1472), - [sym_pseudo_compile_time_identifier] = ACTIONS(1474), + [anon_sym_BANG] = ACTIONS(3308), + [anon_sym_go] = ACTIONS(3310), + [anon_sym_spawn] = ACTIONS(3312), + [anon_sym_json_DOTdecode] = ACTIONS(3314), + [anon_sym_LBRACK2] = ACTIONS(3316), + [anon_sym_TILDE] = ACTIONS(3302), + [anon_sym_CARET] = ACTIONS(3302), + [anon_sym_AMP] = ACTIONS(3318), + [anon_sym_LT_DASH] = ACTIONS(3320), + [sym_none] = ACTIONS(3322), + [sym_true] = ACTIONS(3322), + [sym_false] = ACTIONS(3322), + [sym_nil] = ACTIONS(3322), + [anon_sym_if] = ACTIONS(3324), + [anon_sym_DOLLARif] = ACTIONS(3326), + [anon_sym_match] = ACTIONS(3328), + [anon_sym_select] = ACTIONS(3330), + [anon_sym_lock] = ACTIONS(3332), + [anon_sym_rlock] = ACTIONS(3332), + [anon_sym_unsafe] = ACTIONS(3334), + [anon_sym_sql] = ACTIONS(3336), + [sym_int_literal] = ACTIONS(3322), + [sym_float_literal] = ACTIONS(3338), + [sym_rune_literal] = ACTIONS(3338), + [sym_pseudo_compile_time_identifier] = ACTIONS(3340), [anon_sym_shared] = ACTIONS(83), [anon_sym_map_LBRACK] = ACTIONS(85), [anon_sym_chan] = ACTIONS(87), [anon_sym_thread] = ACTIONS(89), [anon_sym_atomic] = ACTIONS(91), - [sym___double_quote] = ACTIONS(1478), - [sym___single_quote] = ACTIONS(1480), - [sym___c_double_quote] = ACTIONS(1482), - [sym___c_single_quote] = ACTIONS(1484), - [sym___r_double_quote] = ACTIONS(1486), - [sym___r_single_quote] = ACTIONS(1488), + [sym___double_quote] = ACTIONS(3342), + [sym___single_quote] = ACTIONS(3344), + [sym___c_double_quote] = ACTIONS(3346), + [sym___c_single_quote] = ACTIONS(3348), + [sym___r_double_quote] = ACTIONS(3350), + [sym___r_single_quote] = ACTIONS(3352), }, [623] = { [sym_line_comment] = STATE(623), [sym_block_comment] = STATE(623), - [sym__expression] = STATE(1112), - [sym__expression_without_blocks] = STATE(1141), - [sym__expression_with_blocks] = STATE(1141), - [sym_inc_expression] = STATE(1140), - [sym_dec_expression] = STATE(1140), - [sym_or_block_expression] = STATE(1140), - [sym_option_propagation_expression] = STATE(1140), - [sym_result_propagation_expression] = STATE(1140), - [sym_anon_struct_value_expression] = STATE(1199), - [sym_go_expression] = STATE(1140), - [sym_spawn_expression] = STATE(1140), - [sym_parenthesized_expression] = STATE(1140), - [sym_call_expression] = STATE(1140), - [sym_type_initializer] = STATE(1199), - [sym_function_literal] = STATE(1140), - [sym_reference_expression] = STATE(1181), - [sym_type_reference_expression] = STATE(3541), - [sym_unary_expression] = STATE(1140), - [sym_receive_expression] = STATE(1140), - [sym_binary_expression] = STATE(1140), - [sym_as_type_cast_expression] = STATE(1140), - [sym__max_group] = STATE(1140), - [sym_literal] = STATE(1146), - [sym_map_init_expression] = STATE(1199), - [sym_array_creation] = STATE(1140), - [sym_fixed_array_creation] = STATE(1140), - [sym_selector_expression] = STATE(1140), - [sym_index_expression] = STATE(1140), - [sym_slice_expression] = STATE(1140), - [sym_if_expression] = STATE(1199), - [sym_compile_time_if_expression] = STATE(1199), - [sym_is_expression] = STATE(1140), - [sym_in_expression] = STATE(1140), - [sym_enum_fetch] = STATE(1140), - [sym_match_expression] = STATE(1199), - [sym_select_expression] = STATE(1199), - [sym_lock_expression] = STATE(1199), - [sym_unsafe_expression] = STATE(1199), - [sym_sql_expression] = STATE(1199), - [sym_c_string_literal] = STATE(1147), - [sym_raw_string_literal] = STATE(1147), - [sym_interpreted_string_literal] = STATE(1147), - [sym_mutability_modifiers] = STATE(638), - [sym_plain_type] = STATE(4234), - [sym__plain_type_without_special] = STATE(2302), - [sym_anon_struct_type] = STATE(2303), - [sym_multi_return_type] = STATE(2302), - [sym_result_type] = STATE(2302), - [sym_option_type] = STATE(2302), - [sym_qualified_type] = STATE(3541), - [sym_fixed_array_type] = STATE(2303), - [sym_array_type] = STATE(2303), - [sym_pointer_type] = STATE(2303), - [sym_wrong_pointer_type] = STATE(2303), - [sym_map_type] = STATE(2303), - [sym_channel_type] = STATE(2303), - [sym_shared_type] = STATE(2303), - [sym_thread_type] = STATE(2303), - [sym_atomic_type] = STATE(2303), - [sym_generic_type] = STATE(2303), - [sym_function_type] = STATE(2303), - [sym_identifier] = ACTIONS(1071), + [sym__expression] = STATE(1114), + [sym__expression_without_blocks] = STATE(1210), + [sym__expression_with_blocks] = STATE(1210), + [sym_inc_expression] = STATE(1211), + [sym_dec_expression] = STATE(1211), + [sym_or_block_expression] = STATE(1211), + [sym_option_propagation_expression] = STATE(1211), + [sym_result_propagation_expression] = STATE(1211), + [sym_anon_struct_value_expression] = STATE(1212), + [sym_go_expression] = STATE(1211), + [sym_spawn_expression] = STATE(1211), + [sym_parenthesized_expression] = STATE(1211), + [sym_call_expression] = STATE(1211), + [sym_type_initializer] = STATE(1212), + [sym_function_literal] = STATE(1211), + [sym_reference_expression] = STATE(1233), + [sym_type_reference_expression] = STATE(3460), + [sym_unary_expression] = STATE(1211), + [sym_receive_expression] = STATE(1211), + [sym_binary_expression] = STATE(1211), + [sym_as_type_cast_expression] = STATE(1211), + [sym__max_group] = STATE(1211), + [sym_literal] = STATE(1209), + [sym_map_init_expression] = STATE(1212), + [sym_array_creation] = STATE(1211), + [sym_fixed_array_creation] = STATE(1211), + [sym_selector_expression] = STATE(1211), + [sym_index_expression] = STATE(1211), + [sym_slice_expression] = STATE(1211), + [sym_if_expression] = STATE(1212), + [sym_compile_time_if_expression] = STATE(1212), + [sym_is_expression] = STATE(1211), + [sym_in_expression] = STATE(1211), + [sym_enum_fetch] = STATE(1211), + [sym_match_expression] = STATE(1212), + [sym_select_expression] = STATE(1212), + [sym_lock_expression] = STATE(1212), + [sym_unsafe_expression] = STATE(1212), + [sym_sql_expression] = STATE(1212), + [sym_c_string_literal] = STATE(1201), + [sym_raw_string_literal] = STATE(1201), + [sym_interpreted_string_literal] = STATE(1201), + [sym_mutability_modifiers] = STATE(589), + [sym_plain_type] = STATE(4123), + [sym__plain_type_without_special] = STATE(2360), + [sym_anon_struct_type] = STATE(2362), + [sym_multi_return_type] = STATE(2360), + [sym_result_type] = STATE(2360), + [sym_option_type] = STATE(2360), + [sym_qualified_type] = STATE(3460), + [sym_fixed_array_type] = STATE(2362), + [sym_array_type] = STATE(2362), + [sym_pointer_type] = STATE(2362), + [sym_wrong_pointer_type] = STATE(2362), + [sym_map_type] = STATE(2362), + [sym_channel_type] = STATE(2362), + [sym_shared_type] = STATE(2362), + [sym_thread_type] = STATE(2362), + [sym_atomic_type] = STATE(2362), + [sym_generic_type] = STATE(2362), + [sym_function_type] = STATE(2362), + [sym_identifier] = ACTIONS(1139), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), [anon_sym_DOT] = ACTIONS(631), @@ -94992,2922 +95012,2694 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [624] = { [sym_line_comment] = STATE(624), [sym_block_comment] = STATE(624), - [sym__expression] = STATE(2445), - [sym__expression_without_blocks] = STATE(2625), - [sym__expression_with_blocks] = STATE(2625), - [sym_inc_expression] = STATE(2765), - [sym_dec_expression] = STATE(2765), - [sym_or_block_expression] = STATE(2765), - [sym_option_propagation_expression] = STATE(2765), - [sym_result_propagation_expression] = STATE(2765), - [sym_anon_struct_value_expression] = STATE(2619), - [sym_go_expression] = STATE(2765), - [sym_spawn_expression] = STATE(2765), - [sym_parenthesized_expression] = STATE(2765), - [sym_call_expression] = STATE(2765), - [sym_type_initializer] = STATE(2619), - [sym_function_literal] = STATE(2765), - [sym_reference_expression] = STATE(2764), - [sym_type_reference_expression] = STATE(3541), - [sym_unary_expression] = STATE(2765), - [sym_receive_expression] = STATE(2765), - [sym_binary_expression] = STATE(2765), - [sym_as_type_cast_expression] = STATE(2765), - [sym__max_group] = STATE(2765), - [sym_literal] = STATE(2769), - [sym_map_init_expression] = STATE(2619), - [sym_array_creation] = STATE(2765), - [sym_fixed_array_creation] = STATE(2765), - [sym_selector_expression] = STATE(2765), - [sym_index_expression] = STATE(2765), - [sym_slice_expression] = STATE(2765), - [sym_if_expression] = STATE(2619), - [sym_compile_time_if_expression] = STATE(2619), - [sym_is_expression] = STATE(2765), - [sym_in_expression] = STATE(2765), - [sym_enum_fetch] = STATE(2765), - [sym_match_expression] = STATE(2619), - [sym_select_expression] = STATE(2619), - [sym_lock_expression] = STATE(2619), - [sym_unsafe_expression] = STATE(2619), - [sym_sql_expression] = STATE(2619), - [sym_c_string_literal] = STATE(2660), - [sym_raw_string_literal] = STATE(2660), - [sym_interpreted_string_literal] = STATE(2660), - [sym_mutability_modifiers] = STATE(567), - [sym_plain_type] = STATE(3933), - [sym__plain_type_without_special] = STATE(2302), - [sym_anon_struct_type] = STATE(2303), - [sym_multi_return_type] = STATE(2302), - [sym_result_type] = STATE(2302), - [sym_option_type] = STATE(2302), - [sym_qualified_type] = STATE(3541), - [sym_fixed_array_type] = STATE(2303), - [sym_array_type] = STATE(2303), - [sym_pointer_type] = STATE(2303), - [sym_wrong_pointer_type] = STATE(2303), - [sym_map_type] = STATE(2303), - [sym_channel_type] = STATE(2303), - [sym_shared_type] = STATE(2303), - [sym_thread_type] = STATE(2303), - [sym_atomic_type] = STATE(2303), - [sym_generic_type] = STATE(2303), - [sym_function_type] = STATE(2303), - [sym_identifier] = ACTIONS(1079), + [sym__expression] = STATE(218), + [sym__expression_without_blocks] = STATE(401), + [sym__expression_with_blocks] = STATE(401), + [sym_inc_expression] = STATE(399), + [sym_dec_expression] = STATE(399), + [sym_or_block_expression] = STATE(399), + [sym_option_propagation_expression] = STATE(399), + [sym_result_propagation_expression] = STATE(399), + [sym_anon_struct_value_expression] = STATE(395), + [sym_go_expression] = STATE(399), + [sym_spawn_expression] = STATE(399), + [sym_parenthesized_expression] = STATE(399), + [sym_call_expression] = STATE(399), + [sym_type_initializer] = STATE(395), + [sym_function_literal] = STATE(399), + [sym_reference_expression] = STATE(393), + [sym_type_reference_expression] = STATE(3460), + [sym_unary_expression] = STATE(399), + [sym_receive_expression] = STATE(399), + [sym_binary_expression] = STATE(399), + [sym_as_type_cast_expression] = STATE(399), + [sym__max_group] = STATE(399), + [sym_literal] = STATE(455), + [sym_map_init_expression] = STATE(395), + [sym_array_creation] = STATE(399), + [sym_fixed_array_creation] = STATE(399), + [sym_selector_expression] = STATE(399), + [sym_index_expression] = STATE(399), + [sym_slice_expression] = STATE(399), + [sym_if_expression] = STATE(395), + [sym_compile_time_if_expression] = STATE(395), + [sym_is_expression] = STATE(399), + [sym_in_expression] = STATE(399), + [sym_enum_fetch] = STATE(399), + [sym_match_expression] = STATE(395), + [sym_select_expression] = STATE(395), + [sym_lock_expression] = STATE(395), + [sym_unsafe_expression] = STATE(395), + [sym_sql_expression] = STATE(395), + [sym_c_string_literal] = STATE(479), + [sym_raw_string_literal] = STATE(479), + [sym_interpreted_string_literal] = STATE(479), + [sym_mutability_modifiers] = STATE(845), + [sym_plain_type] = STATE(4069), + [sym__plain_type_without_special] = STATE(2360), + [sym_anon_struct_type] = STATE(2362), + [sym_multi_return_type] = STATE(2360), + [sym_result_type] = STATE(2360), + [sym_option_type] = STATE(2360), + [sym_qualified_type] = STATE(3460), + [sym_fixed_array_type] = STATE(2362), + [sym_array_type] = STATE(2362), + [sym_pointer_type] = STATE(2362), + [sym_wrong_pointer_type] = STATE(2362), + [sym_map_type] = STATE(2362), + [sym_channel_type] = STATE(2362), + [sym_shared_type] = STATE(2362), + [sym_thread_type] = STATE(2362), + [sym_atomic_type] = STATE(2362), + [sym_generic_type] = STATE(2362), + [sym_function_type] = STATE(2362), + [sym_identifier] = ACTIONS(3184), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1081), - [anon_sym_LBRACE] = ACTIONS(1083), - [anon_sym_LPAREN] = ACTIONS(1087), - [anon_sym_fn] = ACTIONS(1089), - [anon_sym_PLUS] = ACTIONS(1091), - [anon_sym_DASH] = ACTIONS(1091), - [anon_sym_STAR] = ACTIONS(1093), - [anon_sym_struct] = ACTIONS(1095), + [anon_sym_DOT] = ACTIONS(17), + [anon_sym_LBRACE] = ACTIONS(3186), + [anon_sym_LPAREN] = ACTIONS(23), + [anon_sym_fn] = ACTIONS(485), + [anon_sym_PLUS] = ACTIONS(31), + [anon_sym_DASH] = ACTIONS(31), + [anon_sym_STAR] = ACTIONS(33), + [anon_sym_struct] = ACTIONS(487), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(1097), - [anon_sym_go] = ACTIONS(1099), - [anon_sym_spawn] = ACTIONS(1101), - [anon_sym_json_DOTdecode] = ACTIONS(1103), - [anon_sym_LBRACK2] = ACTIONS(1105), - [anon_sym_TILDE] = ACTIONS(1091), - [anon_sym_CARET] = ACTIONS(1091), - [anon_sym_AMP] = ACTIONS(1107), - [anon_sym_LT_DASH] = ACTIONS(1109), - [sym_none] = ACTIONS(1111), - [sym_true] = ACTIONS(1111), - [sym_false] = ACTIONS(1111), - [sym_nil] = ACTIONS(1111), - [anon_sym_if] = ACTIONS(1113), - [anon_sym_DOLLARif] = ACTIONS(1117), - [anon_sym_match] = ACTIONS(1119), - [anon_sym_select] = ACTIONS(3104), - [anon_sym_lock] = ACTIONS(3106), - [anon_sym_rlock] = ACTIONS(3106), - [anon_sym_unsafe] = ACTIONS(1125), - [anon_sym_sql] = ACTIONS(1127), - [sym_int_literal] = ACTIONS(1111), - [sym_float_literal] = ACTIONS(1129), - [sym_rune_literal] = ACTIONS(1129), - [sym_pseudo_compile_time_identifier] = ACTIONS(1131), + [anon_sym_BANG] = ACTIONS(49), + [anon_sym_go] = ACTIONS(51), + [anon_sym_spawn] = ACTIONS(53), + [anon_sym_json_DOTdecode] = ACTIONS(55), + [anon_sym_LBRACK2] = ACTIONS(489), + [anon_sym_TILDE] = ACTIONS(31), + [anon_sym_CARET] = ACTIONS(31), + [anon_sym_AMP] = ACTIONS(59), + [anon_sym_LT_DASH] = ACTIONS(61), + [sym_none] = ACTIONS(63), + [sym_true] = ACTIONS(63), + [sym_false] = ACTIONS(63), + [sym_nil] = ACTIONS(63), + [anon_sym_if] = ACTIONS(65), + [anon_sym_DOLLARif] = ACTIONS(67), + [anon_sym_match] = ACTIONS(69), + [anon_sym_select] = ACTIONS(71), + [anon_sym_lock] = ACTIONS(73), + [anon_sym_rlock] = ACTIONS(73), + [anon_sym_unsafe] = ACTIONS(75), + [anon_sym_sql] = ACTIONS(77), + [sym_int_literal] = ACTIONS(63), + [sym_float_literal] = ACTIONS(79), + [sym_rune_literal] = ACTIONS(79), + [sym_pseudo_compile_time_identifier] = ACTIONS(81), [anon_sym_shared] = ACTIONS(83), [anon_sym_map_LBRACK] = ACTIONS(85), [anon_sym_chan] = ACTIONS(87), [anon_sym_thread] = ACTIONS(89), [anon_sym_atomic] = ACTIONS(91), - [sym___double_quote] = ACTIONS(1133), - [sym___single_quote] = ACTIONS(1135), - [sym___c_double_quote] = ACTIONS(1137), - [sym___c_single_quote] = ACTIONS(1139), - [sym___r_double_quote] = ACTIONS(1141), - [sym___r_single_quote] = ACTIONS(1143), + [sym___double_quote] = ACTIONS(115), + [sym___single_quote] = ACTIONS(117), + [sym___c_double_quote] = ACTIONS(119), + [sym___c_single_quote] = ACTIONS(121), + [sym___r_double_quote] = ACTIONS(123), + [sym___r_single_quote] = ACTIONS(125), }, [625] = { [sym_line_comment] = STATE(625), [sym_block_comment] = STATE(625), - [sym__expression] = STATE(1281), - [sym__expression_without_blocks] = STATE(1312), - [sym__expression_with_blocks] = STATE(1312), - [sym_inc_expression] = STATE(1313), - [sym_dec_expression] = STATE(1313), - [sym_or_block_expression] = STATE(1313), - [sym_option_propagation_expression] = STATE(1313), - [sym_result_propagation_expression] = STATE(1313), - [sym_anon_struct_value_expression] = STATE(1314), - [sym_go_expression] = STATE(1313), - [sym_spawn_expression] = STATE(1313), - [sym_parenthesized_expression] = STATE(1313), - [sym_call_expression] = STATE(1313), - [sym_type_initializer] = STATE(1314), - [sym_function_literal] = STATE(1313), - [sym_reference_expression] = STATE(1334), - [sym_type_reference_expression] = STATE(3541), - [sym_unary_expression] = STATE(1313), - [sym_receive_expression] = STATE(1313), - [sym_binary_expression] = STATE(1313), - [sym_as_type_cast_expression] = STATE(1313), - [sym__max_group] = STATE(1313), - [sym_literal] = STATE(1308), - [sym_map_init_expression] = STATE(1314), - [sym_array_creation] = STATE(1313), - [sym_fixed_array_creation] = STATE(1313), - [sym_selector_expression] = STATE(1313), - [sym_index_expression] = STATE(1313), - [sym_slice_expression] = STATE(1313), - [sym_if_expression] = STATE(1314), - [sym_compile_time_if_expression] = STATE(1314), - [sym_is_expression] = STATE(1313), - [sym_in_expression] = STATE(1313), - [sym_enum_fetch] = STATE(1313), - [sym_match_expression] = STATE(1314), - [sym_select_expression] = STATE(1314), - [sym_lock_expression] = STATE(1314), - [sym_unsafe_expression] = STATE(1314), - [sym_sql_expression] = STATE(1314), - [sym_c_string_literal] = STATE(1286), - [sym_raw_string_literal] = STATE(1286), - [sym_interpreted_string_literal] = STATE(1286), - [sym_mutability_modifiers] = STATE(699), - [sym_plain_type] = STATE(4192), - [sym__plain_type_without_special] = STATE(2302), - [sym_anon_struct_type] = STATE(2303), - [sym_multi_return_type] = STATE(2302), - [sym_result_type] = STATE(2302), - [sym_option_type] = STATE(2302), - [sym_qualified_type] = STATE(3541), - [sym_fixed_array_type] = STATE(2303), - [sym_array_type] = STATE(2303), - [sym_pointer_type] = STATE(2303), - [sym_wrong_pointer_type] = STATE(2303), - [sym_map_type] = STATE(2303), - [sym_channel_type] = STATE(2303), - [sym_shared_type] = STATE(2303), - [sym_thread_type] = STATE(2303), - [sym_atomic_type] = STATE(2303), - [sym_generic_type] = STATE(2303), - [sym_function_type] = STATE(2303), - [sym_identifier] = ACTIONS(1354), + [sym__expression] = STATE(1864), + [sym__expression_without_blocks] = STATE(1953), + [sym__expression_with_blocks] = STATE(1953), + [sym_inc_expression] = STATE(1955), + [sym_dec_expression] = STATE(1955), + [sym_or_block_expression] = STATE(1955), + [sym_option_propagation_expression] = STATE(1955), + [sym_result_propagation_expression] = STATE(1955), + [sym_anon_struct_value_expression] = STATE(1958), + [sym_go_expression] = STATE(1955), + [sym_spawn_expression] = STATE(1955), + [sym_parenthesized_expression] = STATE(1955), + [sym_call_expression] = STATE(1955), + [sym_type_initializer] = STATE(1958), + [sym_function_literal] = STATE(1955), + [sym_reference_expression] = STATE(1956), + [sym_type_reference_expression] = STATE(3460), + [sym_unary_expression] = STATE(1955), + [sym_receive_expression] = STATE(1955), + [sym_binary_expression] = STATE(1955), + [sym_as_type_cast_expression] = STATE(1955), + [sym__max_group] = STATE(1955), + [sym_literal] = STATE(1943), + [sym_map_init_expression] = STATE(1958), + [sym_array_creation] = STATE(1955), + [sym_fixed_array_creation] = STATE(1955), + [sym_selector_expression] = STATE(1955), + [sym_index_expression] = STATE(1955), + [sym_slice_expression] = STATE(1955), + [sym_if_expression] = STATE(1958), + [sym_compile_time_if_expression] = STATE(1958), + [sym_is_expression] = STATE(1955), + [sym_in_expression] = STATE(1955), + [sym_enum_fetch] = STATE(1955), + [sym_match_expression] = STATE(1958), + [sym_select_expression] = STATE(1958), + [sym_lock_expression] = STATE(1958), + [sym_unsafe_expression] = STATE(1958), + [sym_sql_expression] = STATE(1958), + [sym_c_string_literal] = STATE(1942), + [sym_raw_string_literal] = STATE(1942), + [sym_interpreted_string_literal] = STATE(1942), + [sym_mutability_modifiers] = STATE(601), + [sym_plain_type] = STATE(4266), + [sym__plain_type_without_special] = STATE(2360), + [sym_anon_struct_type] = STATE(2362), + [sym_multi_return_type] = STATE(2360), + [sym_result_type] = STATE(2360), + [sym_option_type] = STATE(2360), + [sym_qualified_type] = STATE(3460), + [sym_fixed_array_type] = STATE(2362), + [sym_array_type] = STATE(2362), + [sym_pointer_type] = STATE(2362), + [sym_wrong_pointer_type] = STATE(2362), + [sym_map_type] = STATE(2362), + [sym_channel_type] = STATE(2362), + [sym_shared_type] = STATE(2362), + [sym_thread_type] = STATE(2362), + [sym_atomic_type] = STATE(2362), + [sym_generic_type] = STATE(2362), + [sym_function_type] = STATE(2362), + [sym_identifier] = ACTIONS(3158), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1356), - [anon_sym_LBRACE] = ACTIONS(1358), - [anon_sym_LPAREN] = ACTIONS(1360), - [anon_sym_fn] = ACTIONS(1362), - [anon_sym_PLUS] = ACTIONS(1364), - [anon_sym_DASH] = ACTIONS(1364), - [anon_sym_STAR] = ACTIONS(1366), - [anon_sym_struct] = ACTIONS(1370), + [anon_sym_DOT] = ACTIONS(705), + [anon_sym_LBRACE] = ACTIONS(3118), + [anon_sym_LPAREN] = ACTIONS(709), + [anon_sym_fn] = ACTIONS(711), + [anon_sym_PLUS] = ACTIONS(3160), + [anon_sym_DASH] = ACTIONS(3160), + [anon_sym_STAR] = ACTIONS(3162), + [anon_sym_struct] = ACTIONS(717), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(1372), - [anon_sym_go] = ACTIONS(1374), - [anon_sym_spawn] = ACTIONS(1376), - [anon_sym_json_DOTdecode] = ACTIONS(1378), - [anon_sym_LBRACK2] = ACTIONS(1380), - [anon_sym_TILDE] = ACTIONS(1364), - [anon_sym_CARET] = ACTIONS(1364), - [anon_sym_AMP] = ACTIONS(1382), - [anon_sym_LT_DASH] = ACTIONS(1384), - [sym_none] = ACTIONS(1386), - [sym_true] = ACTIONS(1386), - [sym_false] = ACTIONS(1386), - [sym_nil] = ACTIONS(1386), - [anon_sym_if] = ACTIONS(1877), - [anon_sym_DOLLARif] = ACTIONS(1390), - [anon_sym_match] = ACTIONS(1392), - [anon_sym_select] = ACTIONS(1394), - [anon_sym_lock] = ACTIONS(1396), - [anon_sym_rlock] = ACTIONS(1396), - [anon_sym_unsafe] = ACTIONS(1883), - [anon_sym_sql] = ACTIONS(1400), - [sym_int_literal] = ACTIONS(1386), - [sym_float_literal] = ACTIONS(1404), - [sym_rune_literal] = ACTIONS(1404), - [sym_pseudo_compile_time_identifier] = ACTIONS(1406), + [anon_sym_BANG] = ACTIONS(3164), + [anon_sym_go] = ACTIONS(3166), + [anon_sym_spawn] = ACTIONS(3168), + [anon_sym_json_DOTdecode] = ACTIONS(727), + [anon_sym_LBRACK2] = ACTIONS(3170), + [anon_sym_TILDE] = ACTIONS(3160), + [anon_sym_CARET] = ACTIONS(3160), + [anon_sym_AMP] = ACTIONS(3172), + [anon_sym_LT_DASH] = ACTIONS(3174), + [sym_none] = ACTIONS(735), + [sym_true] = ACTIONS(735), + [sym_false] = ACTIONS(735), + [sym_nil] = ACTIONS(735), + [anon_sym_if] = ACTIONS(737), + [anon_sym_DOLLARif] = ACTIONS(739), + [anon_sym_match] = ACTIONS(741), + [anon_sym_select] = ACTIONS(3176), + [anon_sym_lock] = ACTIONS(3178), + [anon_sym_rlock] = ACTIONS(3178), + [anon_sym_unsafe] = ACTIONS(747), + [anon_sym_sql] = ACTIONS(749), + [sym_int_literal] = ACTIONS(735), + [sym_float_literal] = ACTIONS(751), + [sym_rune_literal] = ACTIONS(751), + [sym_pseudo_compile_time_identifier] = ACTIONS(753), [anon_sym_shared] = ACTIONS(83), [anon_sym_map_LBRACK] = ACTIONS(85), [anon_sym_chan] = ACTIONS(87), [anon_sym_thread] = ACTIONS(89), [anon_sym_atomic] = ACTIONS(91), - [sym___double_quote] = ACTIONS(1408), - [sym___single_quote] = ACTIONS(1410), - [sym___c_double_quote] = ACTIONS(1412), - [sym___c_single_quote] = ACTIONS(1414), - [sym___r_double_quote] = ACTIONS(1416), - [sym___r_single_quote] = ACTIONS(1418), + [sym___double_quote] = ACTIONS(755), + [sym___single_quote] = ACTIONS(757), + [sym___c_double_quote] = ACTIONS(759), + [sym___c_single_quote] = ACTIONS(761), + [sym___r_double_quote] = ACTIONS(763), + [sym___r_single_quote] = ACTIONS(765), }, [626] = { [sym_line_comment] = STATE(626), [sym_block_comment] = STATE(626), - [sym__expression] = STATE(2445), - [sym__expression_without_blocks] = STATE(2625), - [sym__expression_with_blocks] = STATE(2625), + [sym__expression] = STATE(2433), + [sym__expression_without_blocks] = STATE(2638), + [sym__expression_with_blocks] = STATE(2638), [sym_inc_expression] = STATE(2765), [sym_dec_expression] = STATE(2765), [sym_or_block_expression] = STATE(2765), [sym_option_propagation_expression] = STATE(2765), [sym_result_propagation_expression] = STATE(2765), - [sym_anon_struct_value_expression] = STATE(2619), + [sym_anon_struct_value_expression] = STATE(2637), [sym_go_expression] = STATE(2765), [sym_spawn_expression] = STATE(2765), [sym_parenthesized_expression] = STATE(2765), [sym_call_expression] = STATE(2765), - [sym_type_initializer] = STATE(2619), + [sym_type_initializer] = STATE(2637), [sym_function_literal] = STATE(2765), [sym_reference_expression] = STATE(2764), - [sym_type_reference_expression] = STATE(3541), + [sym_type_reference_expression] = STATE(3460), [sym_unary_expression] = STATE(2765), [sym_receive_expression] = STATE(2765), [sym_binary_expression] = STATE(2765), [sym_as_type_cast_expression] = STATE(2765), [sym__max_group] = STATE(2765), - [sym_literal] = STATE(2769), - [sym_map_init_expression] = STATE(2619), + [sym_literal] = STATE(2771), + [sym_map_init_expression] = STATE(2637), [sym_array_creation] = STATE(2765), [sym_fixed_array_creation] = STATE(2765), [sym_selector_expression] = STATE(2765), [sym_index_expression] = STATE(2765), [sym_slice_expression] = STATE(2765), - [sym_if_expression] = STATE(2619), - [sym_compile_time_if_expression] = STATE(2619), + [sym_if_expression] = STATE(2637), + [sym_compile_time_if_expression] = STATE(2637), [sym_is_expression] = STATE(2765), [sym_in_expression] = STATE(2765), [sym_enum_fetch] = STATE(2765), - [sym_match_expression] = STATE(2619), - [sym_select_expression] = STATE(2619), - [sym_lock_expression] = STATE(2619), - [sym_unsafe_expression] = STATE(2619), - [sym_sql_expression] = STATE(2619), - [sym_c_string_literal] = STATE(2660), - [sym_raw_string_literal] = STATE(2660), - [sym_interpreted_string_literal] = STATE(2660), - [sym_mutability_modifiers] = STATE(567), - [sym_plain_type] = STATE(3926), - [sym__plain_type_without_special] = STATE(2302), - [sym_anon_struct_type] = STATE(2303), - [sym_multi_return_type] = STATE(2302), - [sym_result_type] = STATE(2302), - [sym_option_type] = STATE(2302), - [sym_qualified_type] = STATE(3541), - [sym_fixed_array_type] = STATE(2303), - [sym_array_type] = STATE(2303), - [sym_pointer_type] = STATE(2303), - [sym_wrong_pointer_type] = STATE(2303), - [sym_map_type] = STATE(2303), - [sym_channel_type] = STATE(2303), - [sym_shared_type] = STATE(2303), - [sym_thread_type] = STATE(2303), - [sym_atomic_type] = STATE(2303), - [sym_generic_type] = STATE(2303), - [sym_function_type] = STATE(2303), - [sym_identifier] = ACTIONS(1807), + [sym_match_expression] = STATE(2637), + [sym_select_expression] = STATE(2637), + [sym_lock_expression] = STATE(2637), + [sym_unsafe_expression] = STATE(2637), + [sym_sql_expression] = STATE(2637), + [sym_c_string_literal] = STATE(2762), + [sym_raw_string_literal] = STATE(2762), + [sym_interpreted_string_literal] = STATE(2762), + [sym_mutability_modifiers] = STATE(822), + [sym_plain_type] = STATE(3929), + [sym__plain_type_without_special] = STATE(2360), + [sym_anon_struct_type] = STATE(2362), + [sym_multi_return_type] = STATE(2360), + [sym_result_type] = STATE(2360), + [sym_option_type] = STATE(2360), + [sym_qualified_type] = STATE(3460), + [sym_fixed_array_type] = STATE(2362), + [sym_array_type] = STATE(2362), + [sym_pointer_type] = STATE(2362), + [sym_wrong_pointer_type] = STATE(2362), + [sym_map_type] = STATE(2362), + [sym_channel_type] = STATE(2362), + [sym_shared_type] = STATE(2362), + [sym_thread_type] = STATE(2362), + [sym_atomic_type] = STATE(2362), + [sym_generic_type] = STATE(2362), + [sym_function_type] = STATE(2362), + [sym_identifier] = ACTIONS(1071), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1081), - [anon_sym_LBRACE] = ACTIONS(1083), - [anon_sym_LPAREN] = ACTIONS(1087), - [anon_sym_fn] = ACTIONS(1089), - [anon_sym_PLUS] = ACTIONS(3120), - [anon_sym_DASH] = ACTIONS(3120), - [anon_sym_STAR] = ACTIONS(3122), - [anon_sym_struct] = ACTIONS(1095), + [anon_sym_DOT] = ACTIONS(1073), + [anon_sym_LBRACE] = ACTIONS(1075), + [anon_sym_LPAREN] = ACTIONS(1079), + [anon_sym_fn] = ACTIONS(1081), + [anon_sym_PLUS] = ACTIONS(1083), + [anon_sym_DASH] = ACTIONS(1083), + [anon_sym_STAR] = ACTIONS(1085), + [anon_sym_struct] = ACTIONS(1087), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(3124), - [anon_sym_go] = ACTIONS(3126), - [anon_sym_spawn] = ACTIONS(3128), - [anon_sym_json_DOTdecode] = ACTIONS(1103), - [anon_sym_LBRACK2] = ACTIONS(1105), - [anon_sym_TILDE] = ACTIONS(3120), - [anon_sym_CARET] = ACTIONS(3120), - [anon_sym_AMP] = ACTIONS(3130), - [anon_sym_LT_DASH] = ACTIONS(3132), - [sym_none] = ACTIONS(1111), - [sym_true] = ACTIONS(1111), - [sym_false] = ACTIONS(1111), - [sym_nil] = ACTIONS(1111), - [anon_sym_if] = ACTIONS(1113), - [anon_sym_DOLLARif] = ACTIONS(1117), - [anon_sym_match] = ACTIONS(1119), - [anon_sym_select] = ACTIONS(3134), - [anon_sym_lock] = ACTIONS(3136), - [anon_sym_rlock] = ACTIONS(3136), - [anon_sym_unsafe] = ACTIONS(1125), - [anon_sym_sql] = ACTIONS(1127), - [sym_int_literal] = ACTIONS(1111), - [sym_float_literal] = ACTIONS(1129), - [sym_rune_literal] = ACTIONS(1129), - [sym_pseudo_compile_time_identifier] = ACTIONS(1131), + [anon_sym_BANG] = ACTIONS(1089), + [anon_sym_go] = ACTIONS(1091), + [anon_sym_spawn] = ACTIONS(1093), + [anon_sym_json_DOTdecode] = ACTIONS(1095), + [anon_sym_LBRACK2] = ACTIONS(1097), + [anon_sym_TILDE] = ACTIONS(1083), + [anon_sym_CARET] = ACTIONS(1083), + [anon_sym_AMP] = ACTIONS(1099), + [anon_sym_LT_DASH] = ACTIONS(1101), + [sym_none] = ACTIONS(1103), + [sym_true] = ACTIONS(1103), + [sym_false] = ACTIONS(1103), + [sym_nil] = ACTIONS(1103), + [anon_sym_if] = ACTIONS(1105), + [anon_sym_DOLLARif] = ACTIONS(1109), + [anon_sym_match] = ACTIONS(1111), + [anon_sym_select] = ACTIONS(3138), + [anon_sym_lock] = ACTIONS(3140), + [anon_sym_rlock] = ACTIONS(3140), + [anon_sym_unsafe] = ACTIONS(1117), + [anon_sym_sql] = ACTIONS(1119), + [sym_int_literal] = ACTIONS(1103), + [sym_float_literal] = ACTIONS(1121), + [sym_rune_literal] = ACTIONS(1121), + [sym_pseudo_compile_time_identifier] = ACTIONS(1123), [anon_sym_shared] = ACTIONS(83), [anon_sym_map_LBRACK] = ACTIONS(85), [anon_sym_chan] = ACTIONS(87), [anon_sym_thread] = ACTIONS(89), [anon_sym_atomic] = ACTIONS(91), - [sym___double_quote] = ACTIONS(1133), - [sym___single_quote] = ACTIONS(1135), - [sym___c_double_quote] = ACTIONS(1137), - [sym___c_single_quote] = ACTIONS(1139), - [sym___r_double_quote] = ACTIONS(1141), - [sym___r_single_quote] = ACTIONS(1143), + [sym___double_quote] = ACTIONS(1125), + [sym___single_quote] = ACTIONS(1127), + [sym___c_double_quote] = ACTIONS(1129), + [sym___c_single_quote] = ACTIONS(1131), + [sym___r_double_quote] = ACTIONS(1133), + [sym___r_single_quote] = ACTIONS(1135), }, [627] = { [sym_line_comment] = STATE(627), [sym_block_comment] = STATE(627), - [sym__expression] = STATE(2445), - [sym__expression_without_blocks] = STATE(2625), - [sym__expression_with_blocks] = STATE(2625), - [sym_inc_expression] = STATE(2765), - [sym_dec_expression] = STATE(2765), - [sym_or_block_expression] = STATE(2765), - [sym_option_propagation_expression] = STATE(2765), - [sym_result_propagation_expression] = STATE(2765), - [sym_anon_struct_value_expression] = STATE(2619), - [sym_go_expression] = STATE(2765), - [sym_spawn_expression] = STATE(2765), - [sym_parenthesized_expression] = STATE(2765), - [sym_call_expression] = STATE(2765), - [sym_type_initializer] = STATE(2619), - [sym_function_literal] = STATE(2765), - [sym_reference_expression] = STATE(2764), - [sym_type_reference_expression] = STATE(3541), - [sym_unary_expression] = STATE(2765), - [sym_receive_expression] = STATE(2765), - [sym_binary_expression] = STATE(2765), - [sym_as_type_cast_expression] = STATE(2765), - [sym__max_group] = STATE(2765), - [sym_literal] = STATE(2769), - [sym_map_init_expression] = STATE(2619), - [sym_array_creation] = STATE(2765), - [sym_fixed_array_creation] = STATE(2765), - [sym_selector_expression] = STATE(2765), - [sym_index_expression] = STATE(2765), - [sym_slice_expression] = STATE(2765), - [sym_if_expression] = STATE(2619), - [sym_compile_time_if_expression] = STATE(2619), - [sym_is_expression] = STATE(2765), - [sym_in_expression] = STATE(2765), - [sym_enum_fetch] = STATE(2765), - [sym_match_expression] = STATE(2619), - [sym_select_expression] = STATE(2619), - [sym_lock_expression] = STATE(2619), - [sym_unsafe_expression] = STATE(2619), - [sym_sql_expression] = STATE(2619), - [sym_c_string_literal] = STATE(2660), - [sym_raw_string_literal] = STATE(2660), - [sym_interpreted_string_literal] = STATE(2660), - [sym_mutability_modifiers] = STATE(567), - [sym_plain_type] = STATE(3931), - [sym__plain_type_without_special] = STATE(2302), - [sym_anon_struct_type] = STATE(2303), - [sym_multi_return_type] = STATE(2302), - [sym_result_type] = STATE(2302), - [sym_option_type] = STATE(2302), - [sym_qualified_type] = STATE(3541), - [sym_fixed_array_type] = STATE(2303), - [sym_array_type] = STATE(2303), - [sym_pointer_type] = STATE(2303), - [sym_wrong_pointer_type] = STATE(2303), - [sym_map_type] = STATE(2303), - [sym_channel_type] = STATE(2303), - [sym_shared_type] = STATE(2303), - [sym_thread_type] = STATE(2303), - [sym_atomic_type] = STATE(2303), - [sym_generic_type] = STATE(2303), - [sym_function_type] = STATE(2303), - [sym_identifier] = ACTIONS(1807), + [sym__expression] = STATE(964), + [sym__expression_without_blocks] = STATE(1086), + [sym__expression_with_blocks] = STATE(1086), + [sym_inc_expression] = STATE(1088), + [sym_dec_expression] = STATE(1088), + [sym_or_block_expression] = STATE(1088), + [sym_option_propagation_expression] = STATE(1088), + [sym_result_propagation_expression] = STATE(1088), + [sym_anon_struct_value_expression] = STATE(1025), + [sym_go_expression] = STATE(1088), + [sym_spawn_expression] = STATE(1088), + [sym_parenthesized_expression] = STATE(1088), + [sym_call_expression] = STATE(1088), + [sym_type_initializer] = STATE(1025), + [sym_function_literal] = STATE(1088), + [sym_reference_expression] = STATE(1024), + [sym_type_reference_expression] = STATE(3460), + [sym_unary_expression] = STATE(1088), + [sym_receive_expression] = STATE(1088), + [sym_binary_expression] = STATE(1088), + [sym_as_type_cast_expression] = STATE(1088), + [sym__max_group] = STATE(1088), + [sym_literal] = STATE(1078), + [sym_map_init_expression] = STATE(1025), + [sym_array_creation] = STATE(1088), + [sym_fixed_array_creation] = STATE(1088), + [sym_selector_expression] = STATE(1088), + [sym_index_expression] = STATE(1088), + [sym_slice_expression] = STATE(1088), + [sym_if_expression] = STATE(1025), + [sym_compile_time_if_expression] = STATE(1025), + [sym_is_expression] = STATE(1088), + [sym_in_expression] = STATE(1088), + [sym_enum_fetch] = STATE(1088), + [sym_match_expression] = STATE(1025), + [sym_select_expression] = STATE(1025), + [sym_lock_expression] = STATE(1025), + [sym_unsafe_expression] = STATE(1025), + [sym_sql_expression] = STATE(1025), + [sym_c_string_literal] = STATE(993), + [sym_raw_string_literal] = STATE(993), + [sym_interpreted_string_literal] = STATE(993), + [sym_mutability_modifiers] = STATE(618), + [sym_plain_type] = STATE(4090), + [sym__plain_type_without_special] = STATE(2360), + [sym_anon_struct_type] = STATE(2362), + [sym_multi_return_type] = STATE(2360), + [sym_result_type] = STATE(2360), + [sym_option_type] = STATE(2360), + [sym_qualified_type] = STATE(3460), + [sym_fixed_array_type] = STATE(2362), + [sym_array_type] = STATE(2362), + [sym_pointer_type] = STATE(2362), + [sym_wrong_pointer_type] = STATE(2362), + [sym_map_type] = STATE(2362), + [sym_channel_type] = STATE(2362), + [sym_shared_type] = STATE(2362), + [sym_thread_type] = STATE(2362), + [sym_atomic_type] = STATE(2362), + [sym_generic_type] = STATE(2362), + [sym_function_type] = STATE(2362), + [sym_identifier] = ACTIONS(493), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1081), - [anon_sym_LBRACE] = ACTIONS(1083), - [anon_sym_LPAREN] = ACTIONS(1087), - [anon_sym_fn] = ACTIONS(1089), - [anon_sym_PLUS] = ACTIONS(3120), - [anon_sym_DASH] = ACTIONS(3120), - [anon_sym_STAR] = ACTIONS(3122), - [anon_sym_struct] = ACTIONS(1095), + [anon_sym_DOT] = ACTIONS(501), + [anon_sym_LBRACE] = ACTIONS(2235), + [anon_sym_LPAREN] = ACTIONS(2237), + [anon_sym_fn] = ACTIONS(507), + [anon_sym_PLUS] = ACTIONS(2239), + [anon_sym_DASH] = ACTIONS(2239), + [anon_sym_STAR] = ACTIONS(2241), + [anon_sym_struct] = ACTIONS(513), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(3124), - [anon_sym_go] = ACTIONS(3126), - [anon_sym_spawn] = ACTIONS(3128), - [anon_sym_json_DOTdecode] = ACTIONS(1103), - [anon_sym_LBRACK2] = ACTIONS(1105), - [anon_sym_TILDE] = ACTIONS(3120), - [anon_sym_CARET] = ACTIONS(3120), - [anon_sym_AMP] = ACTIONS(3130), - [anon_sym_LT_DASH] = ACTIONS(3132), - [sym_none] = ACTIONS(1111), - [sym_true] = ACTIONS(1111), - [sym_false] = ACTIONS(1111), - [sym_nil] = ACTIONS(1111), - [anon_sym_if] = ACTIONS(1113), - [anon_sym_DOLLARif] = ACTIONS(1117), - [anon_sym_match] = ACTIONS(1119), - [anon_sym_select] = ACTIONS(3134), - [anon_sym_lock] = ACTIONS(3136), - [anon_sym_rlock] = ACTIONS(3136), - [anon_sym_unsafe] = ACTIONS(1125), - [anon_sym_sql] = ACTIONS(1127), - [sym_int_literal] = ACTIONS(1111), - [sym_float_literal] = ACTIONS(1129), - [sym_rune_literal] = ACTIONS(1129), - [sym_pseudo_compile_time_identifier] = ACTIONS(1131), + [anon_sym_BANG] = ACTIONS(2243), + [anon_sym_go] = ACTIONS(519), + [anon_sym_spawn] = ACTIONS(521), + [anon_sym_json_DOTdecode] = ACTIONS(2245), + [anon_sym_LBRACK2] = ACTIONS(2247), + [anon_sym_TILDE] = ACTIONS(2239), + [anon_sym_CARET] = ACTIONS(2239), + [anon_sym_AMP] = ACTIONS(2249), + [anon_sym_LT_DASH] = ACTIONS(2251), + [sym_none] = ACTIONS(531), + [sym_true] = ACTIONS(531), + [sym_false] = ACTIONS(531), + [sym_nil] = ACTIONS(531), + [anon_sym_if] = ACTIONS(533), + [anon_sym_DOLLARif] = ACTIONS(535), + [anon_sym_match] = ACTIONS(537), + [anon_sym_select] = ACTIONS(539), + [anon_sym_lock] = ACTIONS(541), + [anon_sym_rlock] = ACTIONS(541), + [anon_sym_unsafe] = ACTIONS(543), + [anon_sym_sql] = ACTIONS(545), + [sym_int_literal] = ACTIONS(531), + [sym_float_literal] = ACTIONS(2253), + [sym_rune_literal] = ACTIONS(2253), + [sym_pseudo_compile_time_identifier] = ACTIONS(547), [anon_sym_shared] = ACTIONS(83), [anon_sym_map_LBRACK] = ACTIONS(85), [anon_sym_chan] = ACTIONS(87), [anon_sym_thread] = ACTIONS(89), [anon_sym_atomic] = ACTIONS(91), - [sym___double_quote] = ACTIONS(1133), - [sym___single_quote] = ACTIONS(1135), - [sym___c_double_quote] = ACTIONS(1137), - [sym___c_single_quote] = ACTIONS(1139), - [sym___r_double_quote] = ACTIONS(1141), - [sym___r_single_quote] = ACTIONS(1143), + [sym___double_quote] = ACTIONS(2255), + [sym___single_quote] = ACTIONS(2257), + [sym___c_double_quote] = ACTIONS(2259), + [sym___c_single_quote] = ACTIONS(2261), + [sym___r_double_quote] = ACTIONS(2263), + [sym___r_single_quote] = ACTIONS(2265), }, [628] = { [sym_line_comment] = STATE(628), [sym_block_comment] = STATE(628), - [sym__expression] = STATE(2445), - [sym__expression_without_blocks] = STATE(2625), - [sym__expression_with_blocks] = STATE(2625), + [sym__expression] = STATE(2433), + [sym__expression_without_blocks] = STATE(2638), + [sym__expression_with_blocks] = STATE(2638), [sym_inc_expression] = STATE(2765), [sym_dec_expression] = STATE(2765), [sym_or_block_expression] = STATE(2765), [sym_option_propagation_expression] = STATE(2765), [sym_result_propagation_expression] = STATE(2765), - [sym_anon_struct_value_expression] = STATE(2619), + [sym_anon_struct_value_expression] = STATE(2637), [sym_go_expression] = STATE(2765), [sym_spawn_expression] = STATE(2765), [sym_parenthesized_expression] = STATE(2765), [sym_call_expression] = STATE(2765), - [sym_type_initializer] = STATE(2619), + [sym_type_initializer] = STATE(2637), [sym_function_literal] = STATE(2765), [sym_reference_expression] = STATE(2764), - [sym_type_reference_expression] = STATE(3541), + [sym_type_reference_expression] = STATE(3460), [sym_unary_expression] = STATE(2765), [sym_receive_expression] = STATE(2765), [sym_binary_expression] = STATE(2765), [sym_as_type_cast_expression] = STATE(2765), [sym__max_group] = STATE(2765), - [sym_literal] = STATE(2769), - [sym_map_init_expression] = STATE(2619), + [sym_literal] = STATE(2771), + [sym_map_init_expression] = STATE(2637), [sym_array_creation] = STATE(2765), [sym_fixed_array_creation] = STATE(2765), [sym_selector_expression] = STATE(2765), [sym_index_expression] = STATE(2765), [sym_slice_expression] = STATE(2765), - [sym_if_expression] = STATE(2619), - [sym_compile_time_if_expression] = STATE(2619), + [sym_if_expression] = STATE(2637), + [sym_compile_time_if_expression] = STATE(2637), [sym_is_expression] = STATE(2765), [sym_in_expression] = STATE(2765), [sym_enum_fetch] = STATE(2765), - [sym_match_expression] = STATE(2619), - [sym_select_expression] = STATE(2619), - [sym_lock_expression] = STATE(2619), - [sym_unsafe_expression] = STATE(2619), - [sym_sql_expression] = STATE(2619), - [sym_c_string_literal] = STATE(2660), - [sym_raw_string_literal] = STATE(2660), - [sym_interpreted_string_literal] = STATE(2660), - [sym_mutability_modifiers] = STATE(567), - [sym_plain_type] = STATE(3933), - [sym__plain_type_without_special] = STATE(2302), - [sym_anon_struct_type] = STATE(2303), - [sym_multi_return_type] = STATE(2302), - [sym_result_type] = STATE(2302), - [sym_option_type] = STATE(2302), - [sym_qualified_type] = STATE(3541), - [sym_fixed_array_type] = STATE(2303), - [sym_array_type] = STATE(2303), - [sym_pointer_type] = STATE(2303), - [sym_wrong_pointer_type] = STATE(2303), - [sym_map_type] = STATE(2303), - [sym_channel_type] = STATE(2303), - [sym_shared_type] = STATE(2303), - [sym_thread_type] = STATE(2303), - [sym_atomic_type] = STATE(2303), - [sym_generic_type] = STATE(2303), - [sym_function_type] = STATE(2303), - [sym_identifier] = ACTIONS(1807), + [sym_match_expression] = STATE(2637), + [sym_select_expression] = STATE(2637), + [sym_lock_expression] = STATE(2637), + [sym_unsafe_expression] = STATE(2637), + [sym_sql_expression] = STATE(2637), + [sym_c_string_literal] = STATE(2762), + [sym_raw_string_literal] = STATE(2762), + [sym_interpreted_string_literal] = STATE(2762), + [sym_mutability_modifiers] = STATE(822), + [sym_plain_type] = STATE(3936), + [sym__plain_type_without_special] = STATE(2360), + [sym_anon_struct_type] = STATE(2362), + [sym_multi_return_type] = STATE(2360), + [sym_result_type] = STATE(2360), + [sym_option_type] = STATE(2360), + [sym_qualified_type] = STATE(3460), + [sym_fixed_array_type] = STATE(2362), + [sym_array_type] = STATE(2362), + [sym_pointer_type] = STATE(2362), + [sym_wrong_pointer_type] = STATE(2362), + [sym_map_type] = STATE(2362), + [sym_channel_type] = STATE(2362), + [sym_shared_type] = STATE(2362), + [sym_thread_type] = STATE(2362), + [sym_atomic_type] = STATE(2362), + [sym_generic_type] = STATE(2362), + [sym_function_type] = STATE(2362), + [sym_identifier] = ACTIONS(1071), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1081), - [anon_sym_LBRACE] = ACTIONS(1083), - [anon_sym_LPAREN] = ACTIONS(1087), - [anon_sym_fn] = ACTIONS(1089), - [anon_sym_PLUS] = ACTIONS(3120), - [anon_sym_DASH] = ACTIONS(3120), - [anon_sym_STAR] = ACTIONS(3122), - [anon_sym_struct] = ACTIONS(1095), + [anon_sym_DOT] = ACTIONS(1073), + [anon_sym_LBRACE] = ACTIONS(1075), + [anon_sym_LPAREN] = ACTIONS(1079), + [anon_sym_fn] = ACTIONS(1081), + [anon_sym_PLUS] = ACTIONS(1083), + [anon_sym_DASH] = ACTIONS(1083), + [anon_sym_STAR] = ACTIONS(1085), + [anon_sym_struct] = ACTIONS(1087), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(3124), - [anon_sym_go] = ACTIONS(3126), - [anon_sym_spawn] = ACTIONS(3128), - [anon_sym_json_DOTdecode] = ACTIONS(1103), - [anon_sym_LBRACK2] = ACTIONS(1105), - [anon_sym_TILDE] = ACTIONS(3120), - [anon_sym_CARET] = ACTIONS(3120), - [anon_sym_AMP] = ACTIONS(3130), - [anon_sym_LT_DASH] = ACTIONS(3132), - [sym_none] = ACTIONS(1111), - [sym_true] = ACTIONS(1111), - [sym_false] = ACTIONS(1111), - [sym_nil] = ACTIONS(1111), - [anon_sym_if] = ACTIONS(1113), - [anon_sym_DOLLARif] = ACTIONS(1117), - [anon_sym_match] = ACTIONS(1119), - [anon_sym_select] = ACTIONS(3134), - [anon_sym_lock] = ACTIONS(3136), - [anon_sym_rlock] = ACTIONS(3136), - [anon_sym_unsafe] = ACTIONS(1125), - [anon_sym_sql] = ACTIONS(1127), - [sym_int_literal] = ACTIONS(1111), - [sym_float_literal] = ACTIONS(1129), - [sym_rune_literal] = ACTIONS(1129), - [sym_pseudo_compile_time_identifier] = ACTIONS(1131), + [anon_sym_BANG] = ACTIONS(1089), + [anon_sym_go] = ACTIONS(1091), + [anon_sym_spawn] = ACTIONS(1093), + [anon_sym_json_DOTdecode] = ACTIONS(1095), + [anon_sym_LBRACK2] = ACTIONS(1097), + [anon_sym_TILDE] = ACTIONS(1083), + [anon_sym_CARET] = ACTIONS(1083), + [anon_sym_AMP] = ACTIONS(1099), + [anon_sym_LT_DASH] = ACTIONS(1101), + [sym_none] = ACTIONS(1103), + [sym_true] = ACTIONS(1103), + [sym_false] = ACTIONS(1103), + [sym_nil] = ACTIONS(1103), + [anon_sym_if] = ACTIONS(1105), + [anon_sym_DOLLARif] = ACTIONS(1109), + [anon_sym_match] = ACTIONS(1111), + [anon_sym_select] = ACTIONS(3138), + [anon_sym_lock] = ACTIONS(3140), + [anon_sym_rlock] = ACTIONS(3140), + [anon_sym_unsafe] = ACTIONS(1117), + [anon_sym_sql] = ACTIONS(1119), + [sym_int_literal] = ACTIONS(1103), + [sym_float_literal] = ACTIONS(1121), + [sym_rune_literal] = ACTIONS(1121), + [sym_pseudo_compile_time_identifier] = ACTIONS(1123), [anon_sym_shared] = ACTIONS(83), [anon_sym_map_LBRACK] = ACTIONS(85), [anon_sym_chan] = ACTIONS(87), [anon_sym_thread] = ACTIONS(89), [anon_sym_atomic] = ACTIONS(91), - [sym___double_quote] = ACTIONS(1133), - [sym___single_quote] = ACTIONS(1135), - [sym___c_double_quote] = ACTIONS(1137), - [sym___c_single_quote] = ACTIONS(1139), - [sym___r_double_quote] = ACTIONS(1141), - [sym___r_single_quote] = ACTIONS(1143), + [sym___double_quote] = ACTIONS(1125), + [sym___single_quote] = ACTIONS(1127), + [sym___c_double_quote] = ACTIONS(1129), + [sym___c_single_quote] = ACTIONS(1131), + [sym___r_double_quote] = ACTIONS(1133), + [sym___r_single_quote] = ACTIONS(1135), }, [629] = { [sym_line_comment] = STATE(629), [sym_block_comment] = STATE(629), - [sym__expression] = STATE(1284), - [sym__expression_without_blocks] = STATE(1312), - [sym__expression_with_blocks] = STATE(1312), - [sym_inc_expression] = STATE(1313), - [sym_dec_expression] = STATE(1313), - [sym_or_block_expression] = STATE(1313), - [sym_option_propagation_expression] = STATE(1313), - [sym_result_propagation_expression] = STATE(1313), - [sym_anon_struct_value_expression] = STATE(1314), - [sym_go_expression] = STATE(1313), - [sym_spawn_expression] = STATE(1313), - [sym_parenthesized_expression] = STATE(1313), - [sym_call_expression] = STATE(1313), - [sym_type_initializer] = STATE(1314), - [sym_function_literal] = STATE(1313), - [sym_reference_expression] = STATE(1334), - [sym_type_reference_expression] = STATE(3541), - [sym_unary_expression] = STATE(1313), - [sym_receive_expression] = STATE(1313), - [sym_binary_expression] = STATE(1313), - [sym_as_type_cast_expression] = STATE(1313), - [sym__max_group] = STATE(1313), - [sym_literal] = STATE(1308), - [sym_map_init_expression] = STATE(1314), - [sym_array_creation] = STATE(1313), - [sym_fixed_array_creation] = STATE(1313), - [sym_selector_expression] = STATE(1313), - [sym_index_expression] = STATE(1313), - [sym_slice_expression] = STATE(1313), - [sym_if_expression] = STATE(1314), - [sym_compile_time_if_expression] = STATE(1314), - [sym_is_expression] = STATE(1313), - [sym_in_expression] = STATE(1313), - [sym_enum_fetch] = STATE(1313), - [sym_match_expression] = STATE(1314), - [sym_select_expression] = STATE(1314), - [sym_lock_expression] = STATE(1314), - [sym_unsafe_expression] = STATE(1314), - [sym_sql_expression] = STATE(1314), - [sym_c_string_literal] = STATE(1286), - [sym_raw_string_literal] = STATE(1286), - [sym_interpreted_string_literal] = STATE(1286), - [sym_mutability_modifiers] = STATE(699), - [sym_plain_type] = STATE(4192), - [sym__plain_type_without_special] = STATE(2302), - [sym_anon_struct_type] = STATE(2303), - [sym_multi_return_type] = STATE(2302), - [sym_result_type] = STATE(2302), - [sym_option_type] = STATE(2302), - [sym_qualified_type] = STATE(3541), - [sym_fixed_array_type] = STATE(2303), - [sym_array_type] = STATE(2303), - [sym_pointer_type] = STATE(2303), - [sym_wrong_pointer_type] = STATE(2303), - [sym_map_type] = STATE(2303), - [sym_channel_type] = STATE(2303), - [sym_shared_type] = STATE(2303), - [sym_thread_type] = STATE(2303), - [sym_atomic_type] = STATE(2303), - [sym_generic_type] = STATE(2303), - [sym_function_type] = STATE(2303), - [sym_identifier] = ACTIONS(1354), + [sym__expression] = STATE(2261), + [sym__expression_without_blocks] = STATE(2347), + [sym__expression_with_blocks] = STATE(2347), + [sym_inc_expression] = STATE(2379), + [sym_dec_expression] = STATE(2379), + [sym_or_block_expression] = STATE(2379), + [sym_option_propagation_expression] = STATE(2379), + [sym_result_propagation_expression] = STATE(2379), + [sym_anon_struct_value_expression] = STATE(2378), + [sym_go_expression] = STATE(2379), + [sym_spawn_expression] = STATE(2379), + [sym_parenthesized_expression] = STATE(2379), + [sym_call_expression] = STATE(2379), + [sym_type_initializer] = STATE(2378), + [sym_function_literal] = STATE(2379), + [sym_reference_expression] = STATE(2377), + [sym_type_reference_expression] = STATE(3460), + [sym_unary_expression] = STATE(2379), + [sym_receive_expression] = STATE(2379), + [sym_binary_expression] = STATE(2379), + [sym_as_type_cast_expression] = STATE(2379), + [sym__max_group] = STATE(2379), + [sym_literal] = STATE(2392), + [sym_map_init_expression] = STATE(2378), + [sym_array_creation] = STATE(2379), + [sym_fixed_array_creation] = STATE(2379), + [sym_selector_expression] = STATE(2379), + [sym_index_expression] = STATE(2379), + [sym_slice_expression] = STATE(2379), + [sym_if_expression] = STATE(2378), + [sym_compile_time_if_expression] = STATE(2378), + [sym_is_expression] = STATE(2379), + [sym_in_expression] = STATE(2379), + [sym_enum_fetch] = STATE(2379), + [sym_match_expression] = STATE(2378), + [sym_select_expression] = STATE(2378), + [sym_lock_expression] = STATE(2378), + [sym_unsafe_expression] = STATE(2378), + [sym_sql_expression] = STATE(2378), + [sym_c_string_literal] = STATE(2401), + [sym_raw_string_literal] = STATE(2401), + [sym_interpreted_string_literal] = STATE(2401), + [sym_mutability_modifiers] = STATE(939), + [sym_plain_type] = STATE(4160), + [sym__plain_type_without_special] = STATE(2360), + [sym_anon_struct_type] = STATE(2362), + [sym_multi_return_type] = STATE(2360), + [sym_result_type] = STATE(2360), + [sym_option_type] = STATE(2360), + [sym_qualified_type] = STATE(3460), + [sym_fixed_array_type] = STATE(2362), + [sym_array_type] = STATE(2362), + [sym_pointer_type] = STATE(2362), + [sym_wrong_pointer_type] = STATE(2362), + [sym_map_type] = STATE(2362), + [sym_channel_type] = STATE(2362), + [sym_shared_type] = STATE(2362), + [sym_thread_type] = STATE(2362), + [sym_atomic_type] = STATE(2362), + [sym_generic_type] = STATE(2362), + [sym_function_type] = STATE(2362), + [sym_identifier] = ACTIONS(1428), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1356), - [anon_sym_LBRACE] = ACTIONS(1358), - [anon_sym_LPAREN] = ACTIONS(1360), - [anon_sym_fn] = ACTIONS(1362), - [anon_sym_PLUS] = ACTIONS(1364), - [anon_sym_DASH] = ACTIONS(1364), - [anon_sym_STAR] = ACTIONS(1366), - [anon_sym_struct] = ACTIONS(1370), + [anon_sym_DOT] = ACTIONS(1430), + [anon_sym_LBRACE] = ACTIONS(1432), + [anon_sym_LPAREN] = ACTIONS(1434), + [anon_sym_fn] = ACTIONS(1436), + [anon_sym_PLUS] = ACTIONS(1438), + [anon_sym_DASH] = ACTIONS(1438), + [anon_sym_STAR] = ACTIONS(1440), + [anon_sym_struct] = ACTIONS(1442), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(1372), - [anon_sym_go] = ACTIONS(1374), - [anon_sym_spawn] = ACTIONS(1376), - [anon_sym_json_DOTdecode] = ACTIONS(1378), - [anon_sym_LBRACK2] = ACTIONS(1380), - [anon_sym_TILDE] = ACTIONS(1364), - [anon_sym_CARET] = ACTIONS(1364), - [anon_sym_AMP] = ACTIONS(1382), - [anon_sym_LT_DASH] = ACTIONS(1384), - [sym_none] = ACTIONS(1386), - [sym_true] = ACTIONS(1386), - [sym_false] = ACTIONS(1386), - [sym_nil] = ACTIONS(1386), - [anon_sym_if] = ACTIONS(1877), - [anon_sym_DOLLARif] = ACTIONS(1390), - [anon_sym_match] = ACTIONS(1392), - [anon_sym_select] = ACTIONS(1394), - [anon_sym_lock] = ACTIONS(1396), - [anon_sym_rlock] = ACTIONS(1396), - [anon_sym_unsafe] = ACTIONS(1883), - [anon_sym_sql] = ACTIONS(1400), - [sym_int_literal] = ACTIONS(1386), - [sym_float_literal] = ACTIONS(1404), - [sym_rune_literal] = ACTIONS(1404), - [sym_pseudo_compile_time_identifier] = ACTIONS(1406), + [anon_sym_BANG] = ACTIONS(1444), + [anon_sym_go] = ACTIONS(1446), + [anon_sym_spawn] = ACTIONS(1448), + [anon_sym_json_DOTdecode] = ACTIONS(1450), + [anon_sym_LBRACK2] = ACTIONS(1452), + [anon_sym_TILDE] = ACTIONS(1438), + [anon_sym_CARET] = ACTIONS(1438), + [anon_sym_AMP] = ACTIONS(1454), + [anon_sym_LT_DASH] = ACTIONS(1456), + [sym_none] = ACTIONS(1458), + [sym_true] = ACTIONS(1458), + [sym_false] = ACTIONS(1458), + [sym_nil] = ACTIONS(1458), + [anon_sym_if] = ACTIONS(1833), + [anon_sym_DOLLARif] = ACTIONS(1462), + [anon_sym_match] = ACTIONS(1464), + [anon_sym_select] = ACTIONS(1466), + [anon_sym_lock] = ACTIONS(1468), + [anon_sym_rlock] = ACTIONS(1468), + [anon_sym_unsafe] = ACTIONS(1839), + [anon_sym_sql] = ACTIONS(1472), + [sym_int_literal] = ACTIONS(1458), + [sym_float_literal] = ACTIONS(1474), + [sym_rune_literal] = ACTIONS(1474), + [sym_pseudo_compile_time_identifier] = ACTIONS(1476), [anon_sym_shared] = ACTIONS(83), [anon_sym_map_LBRACK] = ACTIONS(85), [anon_sym_chan] = ACTIONS(87), [anon_sym_thread] = ACTIONS(89), [anon_sym_atomic] = ACTIONS(91), - [sym___double_quote] = ACTIONS(1408), - [sym___single_quote] = ACTIONS(1410), - [sym___c_double_quote] = ACTIONS(1412), - [sym___c_single_quote] = ACTIONS(1414), - [sym___r_double_quote] = ACTIONS(1416), - [sym___r_single_quote] = ACTIONS(1418), + [sym___double_quote] = ACTIONS(1480), + [sym___single_quote] = ACTIONS(1482), + [sym___c_double_quote] = ACTIONS(1484), + [sym___c_single_quote] = ACTIONS(1486), + [sym___r_double_quote] = ACTIONS(1488), + [sym___r_single_quote] = ACTIONS(1490), }, [630] = { [sym_line_comment] = STATE(630), [sym_block_comment] = STATE(630), - [sym__expression] = STATE(1285), - [sym__expression_without_blocks] = STATE(1312), - [sym__expression_with_blocks] = STATE(1312), - [sym_inc_expression] = STATE(1313), - [sym_dec_expression] = STATE(1313), - [sym_or_block_expression] = STATE(1313), - [sym_option_propagation_expression] = STATE(1313), - [sym_result_propagation_expression] = STATE(1313), - [sym_anon_struct_value_expression] = STATE(1314), - [sym_go_expression] = STATE(1313), - [sym_spawn_expression] = STATE(1313), - [sym_parenthesized_expression] = STATE(1313), - [sym_call_expression] = STATE(1313), - [sym_type_initializer] = STATE(1314), - [sym_function_literal] = STATE(1313), - [sym_reference_expression] = STATE(1334), - [sym_type_reference_expression] = STATE(3541), - [sym_unary_expression] = STATE(1313), - [sym_receive_expression] = STATE(1313), - [sym_binary_expression] = STATE(1313), - [sym_as_type_cast_expression] = STATE(1313), - [sym__max_group] = STATE(1313), - [sym_literal] = STATE(1308), - [sym_map_init_expression] = STATE(1314), - [sym_array_creation] = STATE(1313), - [sym_fixed_array_creation] = STATE(1313), - [sym_selector_expression] = STATE(1313), - [sym_index_expression] = STATE(1313), - [sym_slice_expression] = STATE(1313), - [sym_if_expression] = STATE(1314), - [sym_compile_time_if_expression] = STATE(1314), - [sym_is_expression] = STATE(1313), - [sym_in_expression] = STATE(1313), - [sym_enum_fetch] = STATE(1313), - [sym_match_expression] = STATE(1314), - [sym_select_expression] = STATE(1314), - [sym_lock_expression] = STATE(1314), - [sym_unsafe_expression] = STATE(1314), - [sym_sql_expression] = STATE(1314), - [sym_c_string_literal] = STATE(1286), - [sym_raw_string_literal] = STATE(1286), - [sym_interpreted_string_literal] = STATE(1286), - [sym_mutability_modifiers] = STATE(699), - [sym_plain_type] = STATE(4192), - [sym__plain_type_without_special] = STATE(2302), - [sym_anon_struct_type] = STATE(2303), - [sym_multi_return_type] = STATE(2302), - [sym_result_type] = STATE(2302), - [sym_option_type] = STATE(2302), - [sym_qualified_type] = STATE(3541), - [sym_fixed_array_type] = STATE(2303), - [sym_array_type] = STATE(2303), - [sym_pointer_type] = STATE(2303), - [sym_wrong_pointer_type] = STATE(2303), - [sym_map_type] = STATE(2303), - [sym_channel_type] = STATE(2303), - [sym_shared_type] = STATE(2303), - [sym_thread_type] = STATE(2303), - [sym_atomic_type] = STATE(2303), - [sym_generic_type] = STATE(2303), - [sym_function_type] = STATE(2303), - [sym_identifier] = ACTIONS(1354), + [sym__expression] = STATE(2267), + [sym__expression_without_blocks] = STATE(2347), + [sym__expression_with_blocks] = STATE(2347), + [sym_inc_expression] = STATE(2379), + [sym_dec_expression] = STATE(2379), + [sym_or_block_expression] = STATE(2379), + [sym_option_propagation_expression] = STATE(2379), + [sym_result_propagation_expression] = STATE(2379), + [sym_anon_struct_value_expression] = STATE(2378), + [sym_go_expression] = STATE(2379), + [sym_spawn_expression] = STATE(2379), + [sym_parenthesized_expression] = STATE(2379), + [sym_call_expression] = STATE(2379), + [sym_type_initializer] = STATE(2378), + [sym_function_literal] = STATE(2379), + [sym_reference_expression] = STATE(2377), + [sym_type_reference_expression] = STATE(3460), + [sym_unary_expression] = STATE(2379), + [sym_receive_expression] = STATE(2379), + [sym_binary_expression] = STATE(2379), + [sym_as_type_cast_expression] = STATE(2379), + [sym__max_group] = STATE(2379), + [sym_literal] = STATE(2392), + [sym_map_init_expression] = STATE(2378), + [sym_array_creation] = STATE(2379), + [sym_fixed_array_creation] = STATE(2379), + [sym_selector_expression] = STATE(2379), + [sym_index_expression] = STATE(2379), + [sym_slice_expression] = STATE(2379), + [sym_if_expression] = STATE(2378), + [sym_compile_time_if_expression] = STATE(2378), + [sym_is_expression] = STATE(2379), + [sym_in_expression] = STATE(2379), + [sym_enum_fetch] = STATE(2379), + [sym_match_expression] = STATE(2378), + [sym_select_expression] = STATE(2378), + [sym_lock_expression] = STATE(2378), + [sym_unsafe_expression] = STATE(2378), + [sym_sql_expression] = STATE(2378), + [sym_c_string_literal] = STATE(2401), + [sym_raw_string_literal] = STATE(2401), + [sym_interpreted_string_literal] = STATE(2401), + [sym_mutability_modifiers] = STATE(939), + [sym_plain_type] = STATE(3559), + [sym__plain_type_without_special] = STATE(2360), + [sym_anon_struct_type] = STATE(2362), + [sym_multi_return_type] = STATE(2360), + [sym_result_type] = STATE(2360), + [sym_option_type] = STATE(2360), + [sym_qualified_type] = STATE(3460), + [sym_fixed_array_type] = STATE(2362), + [sym_array_type] = STATE(2362), + [sym_pointer_type] = STATE(2362), + [sym_wrong_pointer_type] = STATE(2362), + [sym_map_type] = STATE(2362), + [sym_channel_type] = STATE(2362), + [sym_shared_type] = STATE(2362), + [sym_thread_type] = STATE(2362), + [sym_atomic_type] = STATE(2362), + [sym_generic_type] = STATE(2362), + [sym_function_type] = STATE(2362), + [sym_identifier] = ACTIONS(1428), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1356), - [anon_sym_LBRACE] = ACTIONS(1358), - [anon_sym_LPAREN] = ACTIONS(1360), - [anon_sym_fn] = ACTIONS(1362), - [anon_sym_PLUS] = ACTIONS(1364), - [anon_sym_DASH] = ACTIONS(1364), - [anon_sym_STAR] = ACTIONS(1366), - [anon_sym_struct] = ACTIONS(1370), + [anon_sym_DOT] = ACTIONS(1430), + [anon_sym_LBRACE] = ACTIONS(1432), + [anon_sym_LPAREN] = ACTIONS(1434), + [anon_sym_fn] = ACTIONS(1436), + [anon_sym_PLUS] = ACTIONS(1438), + [anon_sym_DASH] = ACTIONS(1438), + [anon_sym_STAR] = ACTIONS(1440), + [anon_sym_struct] = ACTIONS(1442), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(1372), - [anon_sym_go] = ACTIONS(1374), - [anon_sym_spawn] = ACTIONS(1376), - [anon_sym_json_DOTdecode] = ACTIONS(1378), - [anon_sym_LBRACK2] = ACTIONS(1380), - [anon_sym_TILDE] = ACTIONS(1364), - [anon_sym_CARET] = ACTIONS(1364), - [anon_sym_AMP] = ACTIONS(1382), - [anon_sym_LT_DASH] = ACTIONS(1384), - [sym_none] = ACTIONS(1386), - [sym_true] = ACTIONS(1386), - [sym_false] = ACTIONS(1386), - [sym_nil] = ACTIONS(1386), - [anon_sym_if] = ACTIONS(1877), - [anon_sym_DOLLARif] = ACTIONS(1390), - [anon_sym_match] = ACTIONS(1392), - [anon_sym_select] = ACTIONS(1394), - [anon_sym_lock] = ACTIONS(1396), - [anon_sym_rlock] = ACTIONS(1396), - [anon_sym_unsafe] = ACTIONS(1883), - [anon_sym_sql] = ACTIONS(1400), - [sym_int_literal] = ACTIONS(1386), - [sym_float_literal] = ACTIONS(1404), - [sym_rune_literal] = ACTIONS(1404), - [sym_pseudo_compile_time_identifier] = ACTIONS(1406), + [anon_sym_BANG] = ACTIONS(1444), + [anon_sym_go] = ACTIONS(1446), + [anon_sym_spawn] = ACTIONS(1448), + [anon_sym_json_DOTdecode] = ACTIONS(1450), + [anon_sym_LBRACK2] = ACTIONS(1452), + [anon_sym_TILDE] = ACTIONS(1438), + [anon_sym_CARET] = ACTIONS(1438), + [anon_sym_AMP] = ACTIONS(1454), + [anon_sym_LT_DASH] = ACTIONS(1456), + [sym_none] = ACTIONS(1458), + [sym_true] = ACTIONS(1458), + [sym_false] = ACTIONS(1458), + [sym_nil] = ACTIONS(1458), + [anon_sym_if] = ACTIONS(1833), + [anon_sym_DOLLARif] = ACTIONS(1462), + [anon_sym_match] = ACTIONS(1464), + [anon_sym_select] = ACTIONS(1466), + [anon_sym_lock] = ACTIONS(1468), + [anon_sym_rlock] = ACTIONS(1468), + [anon_sym_unsafe] = ACTIONS(1839), + [anon_sym_sql] = ACTIONS(1472), + [sym_int_literal] = ACTIONS(1458), + [sym_float_literal] = ACTIONS(1474), + [sym_rune_literal] = ACTIONS(1474), + [sym_pseudo_compile_time_identifier] = ACTIONS(1476), [anon_sym_shared] = ACTIONS(83), [anon_sym_map_LBRACK] = ACTIONS(85), [anon_sym_chan] = ACTIONS(87), [anon_sym_thread] = ACTIONS(89), [anon_sym_atomic] = ACTIONS(91), - [sym___double_quote] = ACTIONS(1408), - [sym___single_quote] = ACTIONS(1410), - [sym___c_double_quote] = ACTIONS(1412), - [sym___c_single_quote] = ACTIONS(1414), - [sym___r_double_quote] = ACTIONS(1416), - [sym___r_single_quote] = ACTIONS(1418), + [sym___double_quote] = ACTIONS(1480), + [sym___single_quote] = ACTIONS(1482), + [sym___c_double_quote] = ACTIONS(1484), + [sym___c_single_quote] = ACTIONS(1486), + [sym___r_double_quote] = ACTIONS(1488), + [sym___r_single_quote] = ACTIONS(1490), }, [631] = { [sym_line_comment] = STATE(631), [sym_block_comment] = STATE(631), - [sym__expression] = STATE(2821), - [sym__expression_without_blocks] = STATE(2300), - [sym__expression_with_blocks] = STATE(2300), - [sym_inc_expression] = STATE(2307), - [sym_dec_expression] = STATE(2307), - [sym_or_block_expression] = STATE(2307), - [sym_option_propagation_expression] = STATE(2307), - [sym_result_propagation_expression] = STATE(2307), - [sym_anon_struct_value_expression] = STATE(2380), - [sym_go_expression] = STATE(2307), - [sym_spawn_expression] = STATE(2307), - [sym_parenthesized_expression] = STATE(2307), - [sym_call_expression] = STATE(2307), - [sym_type_initializer] = STATE(2380), - [sym_function_literal] = STATE(2307), - [sym_reference_expression] = STATE(2311), - [sym_type_reference_expression] = STATE(3541), - [sym_unary_expression] = STATE(2307), - [sym_receive_expression] = STATE(2307), - [sym_binary_expression] = STATE(2307), - [sym_as_type_cast_expression] = STATE(2307), - [sym__max_group] = STATE(2307), - [sym_literal] = STATE(2292), - [sym_map_init_expression] = STATE(2380), - [sym_array_creation] = STATE(2307), - [sym_fixed_array_creation] = STATE(2307), - [sym_selector_expression] = STATE(2307), - [sym_index_expression] = STATE(2307), - [sym_slice_expression] = STATE(2307), - [sym_if_expression] = STATE(2380), - [sym_compile_time_if_expression] = STATE(2380), - [sym_is_expression] = STATE(2307), - [sym_in_expression] = STATE(2307), - [sym_enum_fetch] = STATE(2307), - [sym_match_expression] = STATE(2380), - [sym_select_expression] = STATE(2380), - [sym_lock_expression] = STATE(2380), - [sym_unsafe_expression] = STATE(2380), - [sym_sql_expression] = STATE(2380), - [sym_c_string_literal] = STATE(2308), - [sym_raw_string_literal] = STATE(2308), - [sym_interpreted_string_literal] = STATE(2308), + [sym__expression] = STATE(2434), + [sym__expression_without_blocks] = STATE(2347), + [sym__expression_with_blocks] = STATE(2347), + [sym_inc_expression] = STATE(2379), + [sym_dec_expression] = STATE(2379), + [sym_or_block_expression] = STATE(2379), + [sym_option_propagation_expression] = STATE(2379), + [sym_result_propagation_expression] = STATE(2379), + [sym_anon_struct_value_expression] = STATE(2378), + [sym_go_expression] = STATE(2379), + [sym_spawn_expression] = STATE(2379), + [sym_parenthesized_expression] = STATE(2379), + [sym_call_expression] = STATE(2379), + [sym_type_initializer] = STATE(2378), + [sym_function_literal] = STATE(2379), + [sym_reference_expression] = STATE(2377), + [sym_type_reference_expression] = STATE(3460), + [sym_unary_expression] = STATE(2379), + [sym_receive_expression] = STATE(2379), + [sym_binary_expression] = STATE(2379), + [sym_as_type_cast_expression] = STATE(2379), + [sym__max_group] = STATE(2379), + [sym_literal] = STATE(2392), + [sym_map_init_expression] = STATE(2378), + [sym_array_creation] = STATE(2379), + [sym_fixed_array_creation] = STATE(2379), + [sym_selector_expression] = STATE(2379), + [sym_index_expression] = STATE(2379), + [sym_slice_expression] = STATE(2379), + [sym_if_expression] = STATE(2378), + [sym_compile_time_if_expression] = STATE(2378), + [sym_is_expression] = STATE(2379), + [sym_in_expression] = STATE(2379), + [sym_enum_fetch] = STATE(2379), + [sym_match_expression] = STATE(2378), + [sym_select_expression] = STATE(2378), + [sym_lock_expression] = STATE(2378), + [sym_unsafe_expression] = STATE(2378), + [sym_sql_expression] = STATE(2378), + [sym_c_string_literal] = STATE(2401), + [sym_raw_string_literal] = STATE(2401), + [sym_interpreted_string_literal] = STATE(2401), [sym_mutability_modifiers] = STATE(939), - [sym_plain_type] = STATE(4297), - [sym__plain_type_without_special] = STATE(2302), - [sym_anon_struct_type] = STATE(2303), - [sym_multi_return_type] = STATE(2302), - [sym_result_type] = STATE(2302), - [sym_option_type] = STATE(2302), - [sym_qualified_type] = STATE(3541), - [sym_fixed_array_type] = STATE(2303), - [sym_array_type] = STATE(2303), - [sym_pointer_type] = STATE(2303), - [sym_wrong_pointer_type] = STATE(2303), - [sym_map_type] = STATE(2303), - [sym_channel_type] = STATE(2303), - [sym_shared_type] = STATE(2303), - [sym_thread_type] = STATE(2303), - [sym_atomic_type] = STATE(2303), - [sym_generic_type] = STATE(2303), - [sym_function_type] = STATE(2303), - [sym_identifier] = ACTIONS(1426), + [sym_plain_type] = STATE(4160), + [sym__plain_type_without_special] = STATE(2360), + [sym_anon_struct_type] = STATE(2362), + [sym_multi_return_type] = STATE(2360), + [sym_result_type] = STATE(2360), + [sym_option_type] = STATE(2360), + [sym_qualified_type] = STATE(3460), + [sym_fixed_array_type] = STATE(2362), + [sym_array_type] = STATE(2362), + [sym_pointer_type] = STATE(2362), + [sym_wrong_pointer_type] = STATE(2362), + [sym_map_type] = STATE(2362), + [sym_channel_type] = STATE(2362), + [sym_shared_type] = STATE(2362), + [sym_thread_type] = STATE(2362), + [sym_atomic_type] = STATE(2362), + [sym_generic_type] = STATE(2362), + [sym_function_type] = STATE(2362), + [sym_identifier] = ACTIONS(1428), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1428), - [anon_sym_LBRACE] = ACTIONS(1430), - [anon_sym_LPAREN] = ACTIONS(1432), - [anon_sym_fn] = ACTIONS(1434), - [anon_sym_PLUS] = ACTIONS(1436), - [anon_sym_DASH] = ACTIONS(1436), - [anon_sym_STAR] = ACTIONS(1438), - [anon_sym_struct] = ACTIONS(1440), + [anon_sym_DOT] = ACTIONS(1430), + [anon_sym_LBRACE] = ACTIONS(1432), + [anon_sym_LPAREN] = ACTIONS(1434), + [anon_sym_fn] = ACTIONS(1436), + [anon_sym_PLUS] = ACTIONS(1438), + [anon_sym_DASH] = ACTIONS(1438), + [anon_sym_STAR] = ACTIONS(1440), + [anon_sym_struct] = ACTIONS(1442), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(1442), - [anon_sym_go] = ACTIONS(1444), - [anon_sym_spawn] = ACTIONS(1446), - [anon_sym_json_DOTdecode] = ACTIONS(1448), - [anon_sym_LBRACK2] = ACTIONS(1450), - [anon_sym_TILDE] = ACTIONS(1436), - [anon_sym_CARET] = ACTIONS(1436), - [anon_sym_AMP] = ACTIONS(1452), - [anon_sym_LT_DASH] = ACTIONS(1454), - [sym_none] = ACTIONS(1456), - [sym_true] = ACTIONS(1456), - [sym_false] = ACTIONS(1456), - [sym_nil] = ACTIONS(1456), - [anon_sym_if] = ACTIONS(1827), - [anon_sym_DOLLARif] = ACTIONS(1460), - [anon_sym_match] = ACTIONS(1462), - [anon_sym_select] = ACTIONS(1464), - [anon_sym_lock] = ACTIONS(1466), - [anon_sym_rlock] = ACTIONS(1466), - [anon_sym_unsafe] = ACTIONS(1833), - [anon_sym_sql] = ACTIONS(1470), - [sym_int_literal] = ACTIONS(1456), - [sym_float_literal] = ACTIONS(1472), - [sym_rune_literal] = ACTIONS(1472), - [sym_pseudo_compile_time_identifier] = ACTIONS(1474), + [anon_sym_BANG] = ACTIONS(1444), + [anon_sym_go] = ACTIONS(1446), + [anon_sym_spawn] = ACTIONS(1448), + [anon_sym_json_DOTdecode] = ACTIONS(1450), + [anon_sym_LBRACK2] = ACTIONS(1452), + [anon_sym_TILDE] = ACTIONS(1438), + [anon_sym_CARET] = ACTIONS(1438), + [anon_sym_AMP] = ACTIONS(1454), + [anon_sym_LT_DASH] = ACTIONS(1456), + [sym_none] = ACTIONS(1458), + [sym_true] = ACTIONS(1458), + [sym_false] = ACTIONS(1458), + [sym_nil] = ACTIONS(1458), + [anon_sym_if] = ACTIONS(1833), + [anon_sym_DOLLARif] = ACTIONS(1462), + [anon_sym_match] = ACTIONS(1464), + [anon_sym_select] = ACTIONS(1466), + [anon_sym_lock] = ACTIONS(1468), + [anon_sym_rlock] = ACTIONS(1468), + [anon_sym_unsafe] = ACTIONS(1839), + [anon_sym_sql] = ACTIONS(1472), + [sym_int_literal] = ACTIONS(1458), + [sym_float_literal] = ACTIONS(1474), + [sym_rune_literal] = ACTIONS(1474), + [sym_pseudo_compile_time_identifier] = ACTIONS(1476), [anon_sym_shared] = ACTIONS(83), [anon_sym_map_LBRACK] = ACTIONS(85), [anon_sym_chan] = ACTIONS(87), [anon_sym_thread] = ACTIONS(89), [anon_sym_atomic] = ACTIONS(91), - [sym___double_quote] = ACTIONS(1478), - [sym___single_quote] = ACTIONS(1480), - [sym___c_double_quote] = ACTIONS(1482), - [sym___c_single_quote] = ACTIONS(1484), - [sym___r_double_quote] = ACTIONS(1486), - [sym___r_single_quote] = ACTIONS(1488), + [sym___double_quote] = ACTIONS(1480), + [sym___single_quote] = ACTIONS(1482), + [sym___c_double_quote] = ACTIONS(1484), + [sym___c_single_quote] = ACTIONS(1486), + [sym___r_double_quote] = ACTIONS(1488), + [sym___r_single_quote] = ACTIONS(1490), }, [632] = { [sym_line_comment] = STATE(632), [sym_block_comment] = STATE(632), - [sym__expression] = STATE(2812), - [sym__expression_without_blocks] = STATE(2300), - [sym__expression_with_blocks] = STATE(2300), - [sym_inc_expression] = STATE(2307), - [sym_dec_expression] = STATE(2307), - [sym_or_block_expression] = STATE(2307), - [sym_option_propagation_expression] = STATE(2307), - [sym_result_propagation_expression] = STATE(2307), - [sym_anon_struct_value_expression] = STATE(2380), - [sym_go_expression] = STATE(2307), - [sym_spawn_expression] = STATE(2307), - [sym_parenthesized_expression] = STATE(2307), - [sym_call_expression] = STATE(2307), - [sym_type_initializer] = STATE(2380), - [sym_function_literal] = STATE(2307), - [sym_reference_expression] = STATE(2311), - [sym_type_reference_expression] = STATE(3541), - [sym_unary_expression] = STATE(2307), - [sym_receive_expression] = STATE(2307), - [sym_binary_expression] = STATE(2307), - [sym_as_type_cast_expression] = STATE(2307), - [sym__max_group] = STATE(2307), - [sym_literal] = STATE(2292), - [sym_map_init_expression] = STATE(2380), - [sym_array_creation] = STATE(2307), - [sym_fixed_array_creation] = STATE(2307), - [sym_selector_expression] = STATE(2307), - [sym_index_expression] = STATE(2307), - [sym_slice_expression] = STATE(2307), - [sym_if_expression] = STATE(2380), - [sym_compile_time_if_expression] = STATE(2380), - [sym_is_expression] = STATE(2307), - [sym_in_expression] = STATE(2307), - [sym_enum_fetch] = STATE(2307), - [sym_match_expression] = STATE(2380), - [sym_select_expression] = STATE(2380), - [sym_lock_expression] = STATE(2380), - [sym_unsafe_expression] = STATE(2380), - [sym_sql_expression] = STATE(2380), - [sym_c_string_literal] = STATE(2308), - [sym_raw_string_literal] = STATE(2308), - [sym_interpreted_string_literal] = STATE(2308), - [sym_mutability_modifiers] = STATE(939), - [sym_plain_type] = STATE(4297), - [sym__plain_type_without_special] = STATE(2302), - [sym_anon_struct_type] = STATE(2303), - [sym_multi_return_type] = STATE(2302), - [sym_result_type] = STATE(2302), - [sym_option_type] = STATE(2302), - [sym_qualified_type] = STATE(3541), - [sym_fixed_array_type] = STATE(2303), - [sym_array_type] = STATE(2303), - [sym_pointer_type] = STATE(2303), - [sym_wrong_pointer_type] = STATE(2303), - [sym_map_type] = STATE(2303), - [sym_channel_type] = STATE(2303), - [sym_shared_type] = STATE(2303), - [sym_thread_type] = STATE(2303), - [sym_atomic_type] = STATE(2303), - [sym_generic_type] = STATE(2303), - [sym_function_type] = STATE(2303), - [sym_identifier] = ACTIONS(1426), + [sym__expression] = STATE(976), + [sym__expression_without_blocks] = STATE(1086), + [sym__expression_with_blocks] = STATE(1086), + [sym_inc_expression] = STATE(1088), + [sym_dec_expression] = STATE(1088), + [sym_or_block_expression] = STATE(1088), + [sym_option_propagation_expression] = STATE(1088), + [sym_result_propagation_expression] = STATE(1088), + [sym_anon_struct_value_expression] = STATE(1025), + [sym_go_expression] = STATE(1088), + [sym_spawn_expression] = STATE(1088), + [sym_parenthesized_expression] = STATE(1088), + [sym_call_expression] = STATE(1088), + [sym_type_initializer] = STATE(1025), + [sym_function_literal] = STATE(1088), + [sym_reference_expression] = STATE(1024), + [sym_type_reference_expression] = STATE(3460), + [sym_unary_expression] = STATE(1088), + [sym_receive_expression] = STATE(1088), + [sym_binary_expression] = STATE(1088), + [sym_as_type_cast_expression] = STATE(1088), + [sym__max_group] = STATE(1088), + [sym_literal] = STATE(1078), + [sym_map_init_expression] = STATE(1025), + [sym_array_creation] = STATE(1088), + [sym_fixed_array_creation] = STATE(1088), + [sym_selector_expression] = STATE(1088), + [sym_index_expression] = STATE(1088), + [sym_slice_expression] = STATE(1088), + [sym_if_expression] = STATE(1025), + [sym_compile_time_if_expression] = STATE(1025), + [sym_is_expression] = STATE(1088), + [sym_in_expression] = STATE(1088), + [sym_enum_fetch] = STATE(1088), + [sym_match_expression] = STATE(1025), + [sym_select_expression] = STATE(1025), + [sym_lock_expression] = STATE(1025), + [sym_unsafe_expression] = STATE(1025), + [sym_sql_expression] = STATE(1025), + [sym_c_string_literal] = STATE(993), + [sym_raw_string_literal] = STATE(993), + [sym_interpreted_string_literal] = STATE(993), + [sym_mutability_modifiers] = STATE(618), + [sym_plain_type] = STATE(4090), + [sym__plain_type_without_special] = STATE(2360), + [sym_anon_struct_type] = STATE(2362), + [sym_multi_return_type] = STATE(2360), + [sym_result_type] = STATE(2360), + [sym_option_type] = STATE(2360), + [sym_qualified_type] = STATE(3460), + [sym_fixed_array_type] = STATE(2362), + [sym_array_type] = STATE(2362), + [sym_pointer_type] = STATE(2362), + [sym_wrong_pointer_type] = STATE(2362), + [sym_map_type] = STATE(2362), + [sym_channel_type] = STATE(2362), + [sym_shared_type] = STATE(2362), + [sym_thread_type] = STATE(2362), + [sym_atomic_type] = STATE(2362), + [sym_generic_type] = STATE(2362), + [sym_function_type] = STATE(2362), + [sym_identifier] = ACTIONS(493), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1428), - [anon_sym_LBRACE] = ACTIONS(1430), - [anon_sym_LPAREN] = ACTIONS(1432), - [anon_sym_fn] = ACTIONS(1434), - [anon_sym_PLUS] = ACTIONS(1436), - [anon_sym_DASH] = ACTIONS(1436), - [anon_sym_STAR] = ACTIONS(1438), - [anon_sym_struct] = ACTIONS(1440), + [anon_sym_DOT] = ACTIONS(501), + [anon_sym_LBRACE] = ACTIONS(2235), + [anon_sym_LPAREN] = ACTIONS(2237), + [anon_sym_fn] = ACTIONS(507), + [anon_sym_PLUS] = ACTIONS(3366), + [anon_sym_DASH] = ACTIONS(3366), + [anon_sym_STAR] = ACTIONS(3368), + [anon_sym_struct] = ACTIONS(513), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(1442), - [anon_sym_go] = ACTIONS(1444), - [anon_sym_spawn] = ACTIONS(1446), - [anon_sym_json_DOTdecode] = ACTIONS(1448), - [anon_sym_LBRACK2] = ACTIONS(1450), - [anon_sym_TILDE] = ACTIONS(1436), - [anon_sym_CARET] = ACTIONS(1436), - [anon_sym_AMP] = ACTIONS(1452), - [anon_sym_LT_DASH] = ACTIONS(1454), - [sym_none] = ACTIONS(1456), - [sym_true] = ACTIONS(1456), - [sym_false] = ACTIONS(1456), - [sym_nil] = ACTIONS(1456), - [anon_sym_if] = ACTIONS(1827), - [anon_sym_DOLLARif] = ACTIONS(1460), - [anon_sym_match] = ACTIONS(1462), - [anon_sym_select] = ACTIONS(1464), - [anon_sym_lock] = ACTIONS(1466), - [anon_sym_rlock] = ACTIONS(1466), - [anon_sym_unsafe] = ACTIONS(1833), - [anon_sym_sql] = ACTIONS(1470), - [sym_int_literal] = ACTIONS(1456), - [sym_float_literal] = ACTIONS(1472), - [sym_rune_literal] = ACTIONS(1472), - [sym_pseudo_compile_time_identifier] = ACTIONS(1474), + [anon_sym_BANG] = ACTIONS(3370), + [anon_sym_go] = ACTIONS(3372), + [anon_sym_spawn] = ACTIONS(3374), + [anon_sym_json_DOTdecode] = ACTIONS(2245), + [anon_sym_LBRACK2] = ACTIONS(2247), + [anon_sym_TILDE] = ACTIONS(3366), + [anon_sym_CARET] = ACTIONS(3366), + [anon_sym_AMP] = ACTIONS(3376), + [anon_sym_LT_DASH] = ACTIONS(3378), + [sym_none] = ACTIONS(531), + [sym_true] = ACTIONS(531), + [sym_false] = ACTIONS(531), + [sym_nil] = ACTIONS(531), + [anon_sym_if] = ACTIONS(533), + [anon_sym_DOLLARif] = ACTIONS(535), + [anon_sym_match] = ACTIONS(537), + [anon_sym_select] = ACTIONS(3380), + [anon_sym_lock] = ACTIONS(3382), + [anon_sym_rlock] = ACTIONS(3382), + [anon_sym_unsafe] = ACTIONS(543), + [anon_sym_sql] = ACTIONS(545), + [sym_int_literal] = ACTIONS(531), + [sym_float_literal] = ACTIONS(2253), + [sym_rune_literal] = ACTIONS(2253), + [sym_pseudo_compile_time_identifier] = ACTIONS(547), [anon_sym_shared] = ACTIONS(83), [anon_sym_map_LBRACK] = ACTIONS(85), [anon_sym_chan] = ACTIONS(87), [anon_sym_thread] = ACTIONS(89), [anon_sym_atomic] = ACTIONS(91), - [sym___double_quote] = ACTIONS(1478), - [sym___single_quote] = ACTIONS(1480), - [sym___c_double_quote] = ACTIONS(1482), - [sym___c_single_quote] = ACTIONS(1484), - [sym___r_double_quote] = ACTIONS(1486), - [sym___r_single_quote] = ACTIONS(1488), + [sym___double_quote] = ACTIONS(2255), + [sym___single_quote] = ACTIONS(2257), + [sym___c_double_quote] = ACTIONS(2259), + [sym___c_single_quote] = ACTIONS(2261), + [sym___r_double_quote] = ACTIONS(2263), + [sym___r_single_quote] = ACTIONS(2265), }, [633] = { [sym_line_comment] = STATE(633), [sym_block_comment] = STATE(633), - [sym__expression] = STATE(2809), - [sym__expression_without_blocks] = STATE(2120), - [sym__expression_with_blocks] = STATE(2300), - [sym_inc_expression] = STATE(2045), - [sym_dec_expression] = STATE(2045), - [sym_or_block_expression] = STATE(2045), - [sym_option_propagation_expression] = STATE(2045), - [sym_result_propagation_expression] = STATE(2045), - [sym_anon_struct_value_expression] = STATE(2380), - [sym_go_expression] = STATE(2045), - [sym_spawn_expression] = STATE(2045), - [sym_parenthesized_expression] = STATE(2045), - [sym_call_expression] = STATE(2045), - [sym_type_initializer] = STATE(2380), - [sym_function_literal] = STATE(2045), - [sym_reference_expression] = STATE(1912), - [sym_type_reference_expression] = STATE(3541), - [sym_unary_expression] = STATE(2045), - [sym_receive_expression] = STATE(2045), - [sym_binary_expression] = STATE(2045), - [sym_as_type_cast_expression] = STATE(2045), - [sym__max_group] = STATE(2045), - [sym_literal] = STATE(2043), - [sym_map_init_expression] = STATE(2380), - [sym_array_creation] = STATE(2045), - [sym_fixed_array_creation] = STATE(2045), - [sym_selector_expression] = STATE(2045), - [sym_index_expression] = STATE(2045), - [sym_slice_expression] = STATE(2045), - [sym_if_expression] = STATE(2380), - [sym_compile_time_if_expression] = STATE(2380), - [sym_is_expression] = STATE(2045), - [sym_in_expression] = STATE(2045), - [sym_enum_fetch] = STATE(2045), - [sym_match_expression] = STATE(2380), - [sym_select_expression] = STATE(2380), - [sym_lock_expression] = STATE(2380), - [sym_unsafe_expression] = STATE(2380), - [sym_sql_expression] = STATE(2380), - [sym_c_string_literal] = STATE(2041), - [sym_raw_string_literal] = STATE(2041), - [sym_interpreted_string_literal] = STATE(2041), - [sym_mutability_modifiers] = STATE(689), - [sym_plain_type] = STATE(4297), - [sym__plain_type_without_special] = STATE(2302), - [sym_anon_struct_type] = STATE(2303), - [sym_multi_return_type] = STATE(2302), - [sym_result_type] = STATE(2302), - [sym_option_type] = STATE(2302), - [sym_qualified_type] = STATE(3541), - [sym_fixed_array_type] = STATE(2303), - [sym_array_type] = STATE(2303), - [sym_pointer_type] = STATE(2303), - [sym_wrong_pointer_type] = STATE(2303), - [sym_map_type] = STATE(2303), - [sym_channel_type] = STATE(2303), - [sym_shared_type] = STATE(2303), - [sym_thread_type] = STATE(2303), - [sym_atomic_type] = STATE(2303), - [sym_generic_type] = STATE(2303), - [sym_function_type] = STATE(2303), - [sym_identifier] = ACTIONS(1641), + [sym__expression] = STATE(2437), + [sym__expression_without_blocks] = STATE(2347), + [sym__expression_with_blocks] = STATE(2347), + [sym_inc_expression] = STATE(2379), + [sym_dec_expression] = STATE(2379), + [sym_or_block_expression] = STATE(2379), + [sym_option_propagation_expression] = STATE(2379), + [sym_result_propagation_expression] = STATE(2379), + [sym_anon_struct_value_expression] = STATE(2378), + [sym_go_expression] = STATE(2379), + [sym_spawn_expression] = STATE(2379), + [sym_parenthesized_expression] = STATE(2379), + [sym_call_expression] = STATE(2379), + [sym_type_initializer] = STATE(2378), + [sym_function_literal] = STATE(2379), + [sym_reference_expression] = STATE(2377), + [sym_type_reference_expression] = STATE(3460), + [sym_unary_expression] = STATE(2379), + [sym_receive_expression] = STATE(2379), + [sym_binary_expression] = STATE(2379), + [sym_as_type_cast_expression] = STATE(2379), + [sym__max_group] = STATE(2379), + [sym_literal] = STATE(2392), + [sym_map_init_expression] = STATE(2378), + [sym_array_creation] = STATE(2379), + [sym_fixed_array_creation] = STATE(2379), + [sym_selector_expression] = STATE(2379), + [sym_index_expression] = STATE(2379), + [sym_slice_expression] = STATE(2379), + [sym_if_expression] = STATE(2378), + [sym_compile_time_if_expression] = STATE(2378), + [sym_is_expression] = STATE(2379), + [sym_in_expression] = STATE(2379), + [sym_enum_fetch] = STATE(2379), + [sym_match_expression] = STATE(2378), + [sym_select_expression] = STATE(2378), + [sym_lock_expression] = STATE(2378), + [sym_unsafe_expression] = STATE(2378), + [sym_sql_expression] = STATE(2378), + [sym_c_string_literal] = STATE(2401), + [sym_raw_string_literal] = STATE(2401), + [sym_interpreted_string_literal] = STATE(2401), + [sym_mutability_modifiers] = STATE(939), + [sym_plain_type] = STATE(4160), + [sym__plain_type_without_special] = STATE(2360), + [sym_anon_struct_type] = STATE(2362), + [sym_multi_return_type] = STATE(2360), + [sym_result_type] = STATE(2360), + [sym_option_type] = STATE(2360), + [sym_qualified_type] = STATE(3460), + [sym_fixed_array_type] = STATE(2362), + [sym_array_type] = STATE(2362), + [sym_pointer_type] = STATE(2362), + [sym_wrong_pointer_type] = STATE(2362), + [sym_map_type] = STATE(2362), + [sym_channel_type] = STATE(2362), + [sym_shared_type] = STATE(2362), + [sym_thread_type] = STATE(2362), + [sym_atomic_type] = STATE(2362), + [sym_generic_type] = STATE(2362), + [sym_function_type] = STATE(2362), + [sym_identifier] = ACTIONS(1428), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(811), - [anon_sym_LBRACE] = ACTIONS(1430), - [anon_sym_LPAREN] = ACTIONS(815), - [anon_sym_fn] = ACTIONS(817), - [anon_sym_PLUS] = ACTIONS(819), - [anon_sym_DASH] = ACTIONS(819), - [anon_sym_STAR] = ACTIONS(821), - [anon_sym_struct] = ACTIONS(1440), + [anon_sym_DOT] = ACTIONS(1430), + [anon_sym_LBRACE] = ACTIONS(1432), + [anon_sym_LPAREN] = ACTIONS(1434), + [anon_sym_fn] = ACTIONS(1436), + [anon_sym_PLUS] = ACTIONS(1438), + [anon_sym_DASH] = ACTIONS(1438), + [anon_sym_STAR] = ACTIONS(1440), + [anon_sym_struct] = ACTIONS(1442), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(827), - [anon_sym_go] = ACTIONS(829), - [anon_sym_spawn] = ACTIONS(831), - [anon_sym_json_DOTdecode] = ACTIONS(833), - [anon_sym_LBRACK2] = ACTIONS(835), - [anon_sym_TILDE] = ACTIONS(819), - [anon_sym_CARET] = ACTIONS(819), - [anon_sym_AMP] = ACTIONS(837), - [anon_sym_LT_DASH] = ACTIONS(839), - [sym_none] = ACTIONS(841), - [sym_true] = ACTIONS(841), - [sym_false] = ACTIONS(841), - [sym_nil] = ACTIONS(841), - [anon_sym_if] = ACTIONS(1827), - [anon_sym_DOLLARif] = ACTIONS(1460), - [anon_sym_match] = ACTIONS(1462), - [anon_sym_select] = ACTIONS(1464), - [anon_sym_lock] = ACTIONS(1466), - [anon_sym_rlock] = ACTIONS(1466), - [anon_sym_unsafe] = ACTIONS(1833), - [anon_sym_sql] = ACTIONS(1470), - [sym_int_literal] = ACTIONS(841), - [sym_float_literal] = ACTIONS(857), - [sym_rune_literal] = ACTIONS(857), - [sym_pseudo_compile_time_identifier] = ACTIONS(859), + [anon_sym_BANG] = ACTIONS(1444), + [anon_sym_go] = ACTIONS(1446), + [anon_sym_spawn] = ACTIONS(1448), + [anon_sym_json_DOTdecode] = ACTIONS(1450), + [anon_sym_LBRACK2] = ACTIONS(1452), + [anon_sym_TILDE] = ACTIONS(1438), + [anon_sym_CARET] = ACTIONS(1438), + [anon_sym_AMP] = ACTIONS(1454), + [anon_sym_LT_DASH] = ACTIONS(1456), + [sym_none] = ACTIONS(1458), + [sym_true] = ACTIONS(1458), + [sym_false] = ACTIONS(1458), + [sym_nil] = ACTIONS(1458), + [anon_sym_if] = ACTIONS(1833), + [anon_sym_DOLLARif] = ACTIONS(1462), + [anon_sym_match] = ACTIONS(1464), + [anon_sym_select] = ACTIONS(1466), + [anon_sym_lock] = ACTIONS(1468), + [anon_sym_rlock] = ACTIONS(1468), + [anon_sym_unsafe] = ACTIONS(1839), + [anon_sym_sql] = ACTIONS(1472), + [sym_int_literal] = ACTIONS(1458), + [sym_float_literal] = ACTIONS(1474), + [sym_rune_literal] = ACTIONS(1474), + [sym_pseudo_compile_time_identifier] = ACTIONS(1476), [anon_sym_shared] = ACTIONS(83), [anon_sym_map_LBRACK] = ACTIONS(85), [anon_sym_chan] = ACTIONS(87), [anon_sym_thread] = ACTIONS(89), [anon_sym_atomic] = ACTIONS(91), - [sym___double_quote] = ACTIONS(861), - [sym___single_quote] = ACTIONS(863), - [sym___c_double_quote] = ACTIONS(865), - [sym___c_single_quote] = ACTIONS(867), - [sym___r_double_quote] = ACTIONS(869), - [sym___r_single_quote] = ACTIONS(871), + [sym___double_quote] = ACTIONS(1480), + [sym___single_quote] = ACTIONS(1482), + [sym___c_double_quote] = ACTIONS(1484), + [sym___c_single_quote] = ACTIONS(1486), + [sym___r_double_quote] = ACTIONS(1488), + [sym___r_single_quote] = ACTIONS(1490), }, [634] = { [sym_line_comment] = STATE(634), [sym_block_comment] = STATE(634), - [sym__expression] = STATE(967), - [sym__expression_without_blocks] = STATE(1017), - [sym__expression_with_blocks] = STATE(1017), - [sym_inc_expression] = STATE(1018), - [sym_dec_expression] = STATE(1018), - [sym_or_block_expression] = STATE(1018), - [sym_option_propagation_expression] = STATE(1018), - [sym_result_propagation_expression] = STATE(1018), - [sym_anon_struct_value_expression] = STATE(993), - [sym_go_expression] = STATE(1018), - [sym_spawn_expression] = STATE(1018), - [sym_parenthesized_expression] = STATE(1018), - [sym_call_expression] = STATE(1018), - [sym_type_initializer] = STATE(993), - [sym_function_literal] = STATE(1018), - [sym_reference_expression] = STATE(1046), - [sym_type_reference_expression] = STATE(3541), - [sym_unary_expression] = STATE(1018), - [sym_receive_expression] = STATE(1018), - [sym_binary_expression] = STATE(1018), - [sym_as_type_cast_expression] = STATE(1018), - [sym__max_group] = STATE(1018), - [sym_literal] = STATE(1014), - [sym_map_init_expression] = STATE(993), - [sym_array_creation] = STATE(1018), - [sym_fixed_array_creation] = STATE(1018), - [sym_selector_expression] = STATE(1018), - [sym_index_expression] = STATE(1018), - [sym_slice_expression] = STATE(1018), - [sym_if_expression] = STATE(993), - [sym_compile_time_if_expression] = STATE(993), - [sym_is_expression] = STATE(1018), - [sym_in_expression] = STATE(1018), - [sym_enum_fetch] = STATE(1018), - [sym_match_expression] = STATE(993), - [sym_select_expression] = STATE(993), - [sym_lock_expression] = STATE(993), - [sym_unsafe_expression] = STATE(993), - [sym_sql_expression] = STATE(993), - [sym_c_string_literal] = STATE(1006), - [sym_raw_string_literal] = STATE(1006), - [sym_interpreted_string_literal] = STATE(1006), - [sym_mutability_modifiers] = STATE(691), - [sym_plain_type] = STATE(4296), - [sym__plain_type_without_special] = STATE(2302), - [sym_anon_struct_type] = STATE(2303), - [sym_multi_return_type] = STATE(2302), - [sym_result_type] = STATE(2302), - [sym_option_type] = STATE(2302), - [sym_qualified_type] = STATE(3541), - [sym_fixed_array_type] = STATE(2303), - [sym_array_type] = STATE(2303), - [sym_pointer_type] = STATE(2303), - [sym_wrong_pointer_type] = STATE(2303), - [sym_map_type] = STATE(2303), - [sym_channel_type] = STATE(2303), - [sym_shared_type] = STATE(2303), - [sym_thread_type] = STATE(2303), - [sym_atomic_type] = STATE(2303), - [sym_generic_type] = STATE(2303), - [sym_function_type] = STATE(2303), - [sym_identifier] = ACTIONS(493), + [sym__expression] = STATE(2267), + [sym__expression_without_blocks] = STATE(2347), + [sym__expression_with_blocks] = STATE(2347), + [sym_inc_expression] = STATE(2379), + [sym_dec_expression] = STATE(2379), + [sym_or_block_expression] = STATE(2379), + [sym_option_propagation_expression] = STATE(2379), + [sym_result_propagation_expression] = STATE(2379), + [sym_anon_struct_value_expression] = STATE(2378), + [sym_go_expression] = STATE(2379), + [sym_spawn_expression] = STATE(2379), + [sym_parenthesized_expression] = STATE(2379), + [sym_call_expression] = STATE(2379), + [sym_type_initializer] = STATE(2378), + [sym_function_literal] = STATE(2379), + [sym_reference_expression] = STATE(2377), + [sym_type_reference_expression] = STATE(3460), + [sym_unary_expression] = STATE(2379), + [sym_receive_expression] = STATE(2379), + [sym_binary_expression] = STATE(2379), + [sym_as_type_cast_expression] = STATE(2379), + [sym__max_group] = STATE(2379), + [sym_literal] = STATE(2392), + [sym_map_init_expression] = STATE(2378), + [sym_array_creation] = STATE(2379), + [sym_fixed_array_creation] = STATE(2379), + [sym_selector_expression] = STATE(2379), + [sym_index_expression] = STATE(2379), + [sym_slice_expression] = STATE(2379), + [sym_if_expression] = STATE(2378), + [sym_compile_time_if_expression] = STATE(2378), + [sym_is_expression] = STATE(2379), + [sym_in_expression] = STATE(2379), + [sym_enum_fetch] = STATE(2379), + [sym_match_expression] = STATE(2378), + [sym_select_expression] = STATE(2378), + [sym_lock_expression] = STATE(2378), + [sym_unsafe_expression] = STATE(2378), + [sym_sql_expression] = STATE(2378), + [sym_c_string_literal] = STATE(2401), + [sym_raw_string_literal] = STATE(2401), + [sym_interpreted_string_literal] = STATE(2401), + [sym_mutability_modifiers] = STATE(939), + [sym_plain_type] = STATE(3558), + [sym__plain_type_without_special] = STATE(2360), + [sym_anon_struct_type] = STATE(2362), + [sym_multi_return_type] = STATE(2360), + [sym_result_type] = STATE(2360), + [sym_option_type] = STATE(2360), + [sym_qualified_type] = STATE(3460), + [sym_fixed_array_type] = STATE(2362), + [sym_array_type] = STATE(2362), + [sym_pointer_type] = STATE(2362), + [sym_wrong_pointer_type] = STATE(2362), + [sym_map_type] = STATE(2362), + [sym_channel_type] = STATE(2362), + [sym_shared_type] = STATE(2362), + [sym_thread_type] = STATE(2362), + [sym_atomic_type] = STATE(2362), + [sym_generic_type] = STATE(2362), + [sym_function_type] = STATE(2362), + [sym_identifier] = ACTIONS(1428), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(501), - [anon_sym_LBRACE] = ACTIONS(2319), - [anon_sym_LPAREN] = ACTIONS(2321), - [anon_sym_fn] = ACTIONS(507), - [anon_sym_PLUS] = ACTIONS(3360), - [anon_sym_DASH] = ACTIONS(3360), - [anon_sym_STAR] = ACTIONS(3362), - [anon_sym_struct] = ACTIONS(513), + [anon_sym_DOT] = ACTIONS(1430), + [anon_sym_LBRACE] = ACTIONS(1432), + [anon_sym_LPAREN] = ACTIONS(1434), + [anon_sym_fn] = ACTIONS(1436), + [anon_sym_PLUS] = ACTIONS(1438), + [anon_sym_DASH] = ACTIONS(1438), + [anon_sym_STAR] = ACTIONS(1440), + [anon_sym_struct] = ACTIONS(1442), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(3364), - [anon_sym_go] = ACTIONS(3366), - [anon_sym_spawn] = ACTIONS(3368), - [anon_sym_json_DOTdecode] = ACTIONS(2329), - [anon_sym_LBRACK2] = ACTIONS(2331), - [anon_sym_TILDE] = ACTIONS(3360), - [anon_sym_CARET] = ACTIONS(3360), - [anon_sym_AMP] = ACTIONS(3370), - [anon_sym_LT_DASH] = ACTIONS(3372), - [sym_none] = ACTIONS(531), - [sym_true] = ACTIONS(531), - [sym_false] = ACTIONS(531), - [sym_nil] = ACTIONS(531), - [anon_sym_if] = ACTIONS(533), - [anon_sym_DOLLARif] = ACTIONS(535), - [anon_sym_match] = ACTIONS(537), - [anon_sym_select] = ACTIONS(3374), - [anon_sym_lock] = ACTIONS(3376), - [anon_sym_rlock] = ACTIONS(3376), - [anon_sym_unsafe] = ACTIONS(543), - [anon_sym_sql] = ACTIONS(545), - [sym_int_literal] = ACTIONS(531), - [sym_float_literal] = ACTIONS(2337), - [sym_rune_literal] = ACTIONS(2337), - [sym_pseudo_compile_time_identifier] = ACTIONS(547), + [anon_sym_BANG] = ACTIONS(1444), + [anon_sym_go] = ACTIONS(1446), + [anon_sym_spawn] = ACTIONS(1448), + [anon_sym_json_DOTdecode] = ACTIONS(1450), + [anon_sym_LBRACK2] = ACTIONS(1452), + [anon_sym_TILDE] = ACTIONS(1438), + [anon_sym_CARET] = ACTIONS(1438), + [anon_sym_AMP] = ACTIONS(1454), + [anon_sym_LT_DASH] = ACTIONS(1456), + [sym_none] = ACTIONS(1458), + [sym_true] = ACTIONS(1458), + [sym_false] = ACTIONS(1458), + [sym_nil] = ACTIONS(1458), + [anon_sym_if] = ACTIONS(1833), + [anon_sym_DOLLARif] = ACTIONS(1462), + [anon_sym_match] = ACTIONS(1464), + [anon_sym_select] = ACTIONS(1466), + [anon_sym_lock] = ACTIONS(1468), + [anon_sym_rlock] = ACTIONS(1468), + [anon_sym_unsafe] = ACTIONS(1839), + [anon_sym_sql] = ACTIONS(1472), + [sym_int_literal] = ACTIONS(1458), + [sym_float_literal] = ACTIONS(1474), + [sym_rune_literal] = ACTIONS(1474), + [sym_pseudo_compile_time_identifier] = ACTIONS(1476), [anon_sym_shared] = ACTIONS(83), [anon_sym_map_LBRACK] = ACTIONS(85), [anon_sym_chan] = ACTIONS(87), [anon_sym_thread] = ACTIONS(89), [anon_sym_atomic] = ACTIONS(91), - [sym___double_quote] = ACTIONS(2339), - [sym___single_quote] = ACTIONS(2341), - [sym___c_double_quote] = ACTIONS(2343), - [sym___c_single_quote] = ACTIONS(2345), - [sym___r_double_quote] = ACTIONS(2347), - [sym___r_single_quote] = ACTIONS(2349), + [sym___double_quote] = ACTIONS(1480), + [sym___single_quote] = ACTIONS(1482), + [sym___c_double_quote] = ACTIONS(1484), + [sym___c_single_quote] = ACTIONS(1486), + [sym___r_double_quote] = ACTIONS(1488), + [sym___r_single_quote] = ACTIONS(1490), }, [635] = { [sym_line_comment] = STATE(635), [sym_block_comment] = STATE(635), - [sym__expression] = STATE(2815), - [sym__expression_without_blocks] = STATE(2300), - [sym__expression_with_blocks] = STATE(2300), - [sym_inc_expression] = STATE(2307), - [sym_dec_expression] = STATE(2307), - [sym_or_block_expression] = STATE(2307), - [sym_option_propagation_expression] = STATE(2307), - [sym_result_propagation_expression] = STATE(2307), - [sym_anon_struct_value_expression] = STATE(2380), - [sym_go_expression] = STATE(2307), - [sym_spawn_expression] = STATE(2307), - [sym_parenthesized_expression] = STATE(2307), - [sym_call_expression] = STATE(2307), - [sym_type_initializer] = STATE(2380), - [sym_function_literal] = STATE(2307), - [sym_reference_expression] = STATE(2311), - [sym_type_reference_expression] = STATE(3541), - [sym_unary_expression] = STATE(2307), - [sym_receive_expression] = STATE(2307), - [sym_binary_expression] = STATE(2307), - [sym_as_type_cast_expression] = STATE(2307), - [sym__max_group] = STATE(2307), - [sym_literal] = STATE(2292), - [sym_map_init_expression] = STATE(2380), - [sym_array_creation] = STATE(2307), - [sym_fixed_array_creation] = STATE(2307), - [sym_selector_expression] = STATE(2307), - [sym_index_expression] = STATE(2307), - [sym_slice_expression] = STATE(2307), - [sym_if_expression] = STATE(2380), - [sym_compile_time_if_expression] = STATE(2380), - [sym_is_expression] = STATE(2307), - [sym_in_expression] = STATE(2307), - [sym_enum_fetch] = STATE(2307), - [sym_match_expression] = STATE(2380), - [sym_select_expression] = STATE(2380), - [sym_lock_expression] = STATE(2380), - [sym_unsafe_expression] = STATE(2380), - [sym_sql_expression] = STATE(2380), - [sym_c_string_literal] = STATE(2308), - [sym_raw_string_literal] = STATE(2308), - [sym_interpreted_string_literal] = STATE(2308), + [sym__expression] = STATE(2267), + [sym__expression_without_blocks] = STATE(2347), + [sym__expression_with_blocks] = STATE(2347), + [sym_inc_expression] = STATE(2379), + [sym_dec_expression] = STATE(2379), + [sym_or_block_expression] = STATE(2379), + [sym_option_propagation_expression] = STATE(2379), + [sym_result_propagation_expression] = STATE(2379), + [sym_anon_struct_value_expression] = STATE(2378), + [sym_go_expression] = STATE(2379), + [sym_spawn_expression] = STATE(2379), + [sym_parenthesized_expression] = STATE(2379), + [sym_call_expression] = STATE(2379), + [sym_type_initializer] = STATE(2378), + [sym_function_literal] = STATE(2379), + [sym_reference_expression] = STATE(2377), + [sym_type_reference_expression] = STATE(3460), + [sym_unary_expression] = STATE(2379), + [sym_receive_expression] = STATE(2379), + [sym_binary_expression] = STATE(2379), + [sym_as_type_cast_expression] = STATE(2379), + [sym__max_group] = STATE(2379), + [sym_literal] = STATE(2392), + [sym_map_init_expression] = STATE(2378), + [sym_array_creation] = STATE(2379), + [sym_fixed_array_creation] = STATE(2379), + [sym_selector_expression] = STATE(2379), + [sym_index_expression] = STATE(2379), + [sym_slice_expression] = STATE(2379), + [sym_if_expression] = STATE(2378), + [sym_compile_time_if_expression] = STATE(2378), + [sym_is_expression] = STATE(2379), + [sym_in_expression] = STATE(2379), + [sym_enum_fetch] = STATE(2379), + [sym_match_expression] = STATE(2378), + [sym_select_expression] = STATE(2378), + [sym_lock_expression] = STATE(2378), + [sym_unsafe_expression] = STATE(2378), + [sym_sql_expression] = STATE(2378), + [sym_c_string_literal] = STATE(2401), + [sym_raw_string_literal] = STATE(2401), + [sym_interpreted_string_literal] = STATE(2401), [sym_mutability_modifiers] = STATE(939), - [sym_plain_type] = STATE(4297), - [sym__plain_type_without_special] = STATE(2302), - [sym_anon_struct_type] = STATE(2303), - [sym_multi_return_type] = STATE(2302), - [sym_result_type] = STATE(2302), - [sym_option_type] = STATE(2302), - [sym_qualified_type] = STATE(3541), - [sym_fixed_array_type] = STATE(2303), - [sym_array_type] = STATE(2303), - [sym_pointer_type] = STATE(2303), - [sym_wrong_pointer_type] = STATE(2303), - [sym_map_type] = STATE(2303), - [sym_channel_type] = STATE(2303), - [sym_shared_type] = STATE(2303), - [sym_thread_type] = STATE(2303), - [sym_atomic_type] = STATE(2303), - [sym_generic_type] = STATE(2303), - [sym_function_type] = STATE(2303), - [sym_identifier] = ACTIONS(3378), + [sym_plain_type] = STATE(3557), + [sym__plain_type_without_special] = STATE(2360), + [sym_anon_struct_type] = STATE(2362), + [sym_multi_return_type] = STATE(2360), + [sym_result_type] = STATE(2360), + [sym_option_type] = STATE(2360), + [sym_qualified_type] = STATE(3460), + [sym_fixed_array_type] = STATE(2362), + [sym_array_type] = STATE(2362), + [sym_pointer_type] = STATE(2362), + [sym_wrong_pointer_type] = STATE(2362), + [sym_map_type] = STATE(2362), + [sym_channel_type] = STATE(2362), + [sym_shared_type] = STATE(2362), + [sym_thread_type] = STATE(2362), + [sym_atomic_type] = STATE(2362), + [sym_generic_type] = STATE(2362), + [sym_function_type] = STATE(2362), + [sym_identifier] = ACTIONS(1428), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1428), - [anon_sym_LBRACE] = ACTIONS(1430), - [anon_sym_LPAREN] = ACTIONS(1432), - [anon_sym_fn] = ACTIONS(1434), - [anon_sym_PLUS] = ACTIONS(1436), - [anon_sym_DASH] = ACTIONS(1436), - [anon_sym_STAR] = ACTIONS(1438), - [anon_sym_struct] = ACTIONS(1440), + [anon_sym_DOT] = ACTIONS(1430), + [anon_sym_LBRACE] = ACTIONS(1432), + [anon_sym_LPAREN] = ACTIONS(1434), + [anon_sym_fn] = ACTIONS(1436), + [anon_sym_PLUS] = ACTIONS(1438), + [anon_sym_DASH] = ACTIONS(1438), + [anon_sym_STAR] = ACTIONS(1440), + [anon_sym_struct] = ACTIONS(1442), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(1442), - [anon_sym_go] = ACTIONS(1444), - [anon_sym_spawn] = ACTIONS(1446), - [anon_sym_json_DOTdecode] = ACTIONS(1448), - [anon_sym_LBRACK2] = ACTIONS(1450), - [anon_sym_TILDE] = ACTIONS(1436), - [anon_sym_CARET] = ACTIONS(1436), - [anon_sym_AMP] = ACTIONS(1452), - [anon_sym_LT_DASH] = ACTIONS(1454), - [sym_none] = ACTIONS(1456), - [sym_true] = ACTIONS(1456), - [sym_false] = ACTIONS(1456), - [sym_nil] = ACTIONS(1456), - [anon_sym_if] = ACTIONS(1827), - [anon_sym_DOLLARif] = ACTIONS(1460), - [anon_sym_match] = ACTIONS(1462), - [anon_sym_select] = ACTIONS(1464), - [anon_sym_lock] = ACTIONS(1466), - [anon_sym_rlock] = ACTIONS(1466), - [anon_sym_unsafe] = ACTIONS(1833), - [anon_sym_sql] = ACTIONS(1470), - [sym_int_literal] = ACTIONS(1456), - [sym_float_literal] = ACTIONS(1472), - [sym_rune_literal] = ACTIONS(1472), - [sym_pseudo_compile_time_identifier] = ACTIONS(1474), + [anon_sym_BANG] = ACTIONS(1444), + [anon_sym_go] = ACTIONS(1446), + [anon_sym_spawn] = ACTIONS(1448), + [anon_sym_json_DOTdecode] = ACTIONS(1450), + [anon_sym_LBRACK2] = ACTIONS(1452), + [anon_sym_TILDE] = ACTIONS(1438), + [anon_sym_CARET] = ACTIONS(1438), + [anon_sym_AMP] = ACTIONS(1454), + [anon_sym_LT_DASH] = ACTIONS(1456), + [sym_none] = ACTIONS(1458), + [sym_true] = ACTIONS(1458), + [sym_false] = ACTIONS(1458), + [sym_nil] = ACTIONS(1458), + [anon_sym_if] = ACTIONS(1833), + [anon_sym_DOLLARif] = ACTIONS(1462), + [anon_sym_match] = ACTIONS(1464), + [anon_sym_select] = ACTIONS(1466), + [anon_sym_lock] = ACTIONS(1468), + [anon_sym_rlock] = ACTIONS(1468), + [anon_sym_unsafe] = ACTIONS(1839), + [anon_sym_sql] = ACTIONS(1472), + [sym_int_literal] = ACTIONS(1458), + [sym_float_literal] = ACTIONS(1474), + [sym_rune_literal] = ACTIONS(1474), + [sym_pseudo_compile_time_identifier] = ACTIONS(1476), [anon_sym_shared] = ACTIONS(83), [anon_sym_map_LBRACK] = ACTIONS(85), [anon_sym_chan] = ACTIONS(87), [anon_sym_thread] = ACTIONS(89), [anon_sym_atomic] = ACTIONS(91), - [sym___double_quote] = ACTIONS(1478), - [sym___single_quote] = ACTIONS(1480), - [sym___c_double_quote] = ACTIONS(1482), - [sym___c_single_quote] = ACTIONS(1484), - [sym___r_double_quote] = ACTIONS(1486), - [sym___r_single_quote] = ACTIONS(1488), + [sym___double_quote] = ACTIONS(1480), + [sym___single_quote] = ACTIONS(1482), + [sym___c_double_quote] = ACTIONS(1484), + [sym___c_single_quote] = ACTIONS(1486), + [sym___r_double_quote] = ACTIONS(1488), + [sym___r_single_quote] = ACTIONS(1490), }, [636] = { [sym_line_comment] = STATE(636), [sym_block_comment] = STATE(636), - [sym__expression] = STATE(1641), - [sym__expression_without_blocks] = STATE(1891), - [sym__expression_with_blocks] = STATE(1891), - [sym_inc_expression] = STATE(1893), - [sym_dec_expression] = STATE(1893), - [sym_or_block_expression] = STATE(1893), - [sym_option_propagation_expression] = STATE(1893), - [sym_result_propagation_expression] = STATE(1893), - [sym_anon_struct_value_expression] = STATE(1895), - [sym_go_expression] = STATE(1893), - [sym_spawn_expression] = STATE(1893), - [sym_parenthesized_expression] = STATE(1893), - [sym_call_expression] = STATE(1893), - [sym_type_initializer] = STATE(1895), - [sym_function_literal] = STATE(1893), - [sym_reference_expression] = STATE(1782), - [sym_type_reference_expression] = STATE(3541), - [sym_unary_expression] = STATE(1893), - [sym_receive_expression] = STATE(1893), - [sym_binary_expression] = STATE(1893), - [sym_as_type_cast_expression] = STATE(1893), - [sym__max_group] = STATE(1893), - [sym_literal] = STATE(1889), - [sym_map_init_expression] = STATE(1895), - [sym_array_creation] = STATE(1893), - [sym_fixed_array_creation] = STATE(1893), - [sym_selector_expression] = STATE(1893), - [sym_index_expression] = STATE(1893), - [sym_slice_expression] = STATE(1893), - [sym_if_expression] = STATE(1895), - [sym_compile_time_if_expression] = STATE(1895), - [sym_is_expression] = STATE(1893), - [sym_in_expression] = STATE(1893), - [sym_enum_fetch] = STATE(1893), - [sym_match_expression] = STATE(1895), - [sym_select_expression] = STATE(1895), - [sym_lock_expression] = STATE(1895), - [sym_unsafe_expression] = STATE(1895), - [sym_sql_expression] = STATE(1895), - [sym_c_string_literal] = STATE(1882), - [sym_raw_string_literal] = STATE(1882), - [sym_interpreted_string_literal] = STATE(1882), - [sym_mutability_modifiers] = STATE(561), - [sym_plain_type] = STATE(4316), - [sym__plain_type_without_special] = STATE(2302), - [sym_anon_struct_type] = STATE(2303), - [sym_multi_return_type] = STATE(2302), - [sym_result_type] = STATE(2302), - [sym_option_type] = STATE(2302), - [sym_qualified_type] = STATE(3541), - [sym_fixed_array_type] = STATE(2303), - [sym_array_type] = STATE(2303), - [sym_pointer_type] = STATE(2303), - [sym_wrong_pointer_type] = STATE(2303), - [sym_map_type] = STATE(2303), - [sym_channel_type] = STATE(2303), - [sym_shared_type] = STATE(2303), - [sym_thread_type] = STATE(2303), - [sym_atomic_type] = STATE(2303), - [sym_generic_type] = STATE(2303), - [sym_function_type] = STATE(2303), - [sym_identifier] = ACTIONS(3170), + [sym__expression] = STATE(2812), + [sym__expression_without_blocks] = STATE(2123), + [sym__expression_with_blocks] = STATE(2347), + [sym_inc_expression] = STATE(1955), + [sym_dec_expression] = STATE(1955), + [sym_or_block_expression] = STATE(1955), + [sym_option_propagation_expression] = STATE(1955), + [sym_result_propagation_expression] = STATE(1955), + [sym_anon_struct_value_expression] = STATE(2378), + [sym_go_expression] = STATE(1955), + [sym_spawn_expression] = STATE(1955), + [sym_parenthesized_expression] = STATE(1955), + [sym_call_expression] = STATE(1955), + [sym_type_initializer] = STATE(2378), + [sym_function_literal] = STATE(1955), + [sym_reference_expression] = STATE(1956), + [sym_type_reference_expression] = STATE(3460), + [sym_unary_expression] = STATE(1955), + [sym_receive_expression] = STATE(1955), + [sym_binary_expression] = STATE(1955), + [sym_as_type_cast_expression] = STATE(1955), + [sym__max_group] = STATE(1955), + [sym_literal] = STATE(1943), + [sym_map_init_expression] = STATE(2378), + [sym_array_creation] = STATE(1955), + [sym_fixed_array_creation] = STATE(1955), + [sym_selector_expression] = STATE(1955), + [sym_index_expression] = STATE(1955), + [sym_slice_expression] = STATE(1955), + [sym_if_expression] = STATE(2378), + [sym_compile_time_if_expression] = STATE(2378), + [sym_is_expression] = STATE(1955), + [sym_in_expression] = STATE(1955), + [sym_enum_fetch] = STATE(1955), + [sym_match_expression] = STATE(2378), + [sym_select_expression] = STATE(2378), + [sym_lock_expression] = STATE(2378), + [sym_unsafe_expression] = STATE(2378), + [sym_sql_expression] = STATE(2378), + [sym_c_string_literal] = STATE(1942), + [sym_raw_string_literal] = STATE(1942), + [sym_interpreted_string_literal] = STATE(1942), + [sym_mutability_modifiers] = STATE(601), + [sym_plain_type] = STATE(4160), + [sym__plain_type_without_special] = STATE(2360), + [sym_anon_struct_type] = STATE(2362), + [sym_multi_return_type] = STATE(2360), + [sym_result_type] = STATE(2360), + [sym_option_type] = STATE(2360), + [sym_qualified_type] = STATE(3460), + [sym_fixed_array_type] = STATE(2362), + [sym_array_type] = STATE(2362), + [sym_pointer_type] = STATE(2362), + [sym_wrong_pointer_type] = STATE(2362), + [sym_map_type] = STATE(2362), + [sym_channel_type] = STATE(2362), + [sym_shared_type] = STATE(2362), + [sym_thread_type] = STATE(2362), + [sym_atomic_type] = STATE(2362), + [sym_generic_type] = STATE(2362), + [sym_function_type] = STATE(2362), + [sym_identifier] = ACTIONS(1681), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(3172), - [anon_sym_LBRACE] = ACTIONS(3174), - [anon_sym_LPAREN] = ACTIONS(3176), - [anon_sym_fn] = ACTIONS(3178), - [anon_sym_PLUS] = ACTIONS(3180), - [anon_sym_DASH] = ACTIONS(3180), - [anon_sym_STAR] = ACTIONS(3182), - [anon_sym_struct] = ACTIONS(3184), + [anon_sym_DOT] = ACTIONS(705), + [anon_sym_LBRACE] = ACTIONS(1432), + [anon_sym_LPAREN] = ACTIONS(709), + [anon_sym_fn] = ACTIONS(711), + [anon_sym_PLUS] = ACTIONS(713), + [anon_sym_DASH] = ACTIONS(713), + [anon_sym_STAR] = ACTIONS(715), + [anon_sym_struct] = ACTIONS(1442), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(3186), - [anon_sym_go] = ACTIONS(3188), - [anon_sym_spawn] = ACTIONS(3190), - [anon_sym_json_DOTdecode] = ACTIONS(3192), - [anon_sym_LBRACK2] = ACTIONS(3194), - [anon_sym_TILDE] = ACTIONS(3180), - [anon_sym_CARET] = ACTIONS(3180), - [anon_sym_AMP] = ACTIONS(3196), - [anon_sym_LT_DASH] = ACTIONS(3198), - [sym_none] = ACTIONS(3200), - [sym_true] = ACTIONS(3200), - [sym_false] = ACTIONS(3200), - [sym_nil] = ACTIONS(3200), - [anon_sym_if] = ACTIONS(3202), - [anon_sym_DOLLARif] = ACTIONS(3204), - [anon_sym_match] = ACTIONS(3206), - [anon_sym_select] = ACTIONS(3208), - [anon_sym_lock] = ACTIONS(3210), - [anon_sym_rlock] = ACTIONS(3210), - [anon_sym_unsafe] = ACTIONS(3212), - [anon_sym_sql] = ACTIONS(3214), - [sym_int_literal] = ACTIONS(3200), - [sym_float_literal] = ACTIONS(3216), - [sym_rune_literal] = ACTIONS(3216), - [sym_pseudo_compile_time_identifier] = ACTIONS(3218), + [anon_sym_BANG] = ACTIONS(721), + [anon_sym_go] = ACTIONS(723), + [anon_sym_spawn] = ACTIONS(725), + [anon_sym_json_DOTdecode] = ACTIONS(727), + [anon_sym_LBRACK2] = ACTIONS(729), + [anon_sym_TILDE] = ACTIONS(713), + [anon_sym_CARET] = ACTIONS(713), + [anon_sym_AMP] = ACTIONS(731), + [anon_sym_LT_DASH] = ACTIONS(733), + [sym_none] = ACTIONS(735), + [sym_true] = ACTIONS(735), + [sym_false] = ACTIONS(735), + [sym_nil] = ACTIONS(735), + [anon_sym_if] = ACTIONS(1833), + [anon_sym_DOLLARif] = ACTIONS(1462), + [anon_sym_match] = ACTIONS(1464), + [anon_sym_select] = ACTIONS(1466), + [anon_sym_lock] = ACTIONS(1468), + [anon_sym_rlock] = ACTIONS(1468), + [anon_sym_unsafe] = ACTIONS(1839), + [anon_sym_sql] = ACTIONS(1472), + [sym_int_literal] = ACTIONS(735), + [sym_float_literal] = ACTIONS(751), + [sym_rune_literal] = ACTIONS(751), + [sym_pseudo_compile_time_identifier] = ACTIONS(753), [anon_sym_shared] = ACTIONS(83), [anon_sym_map_LBRACK] = ACTIONS(85), [anon_sym_chan] = ACTIONS(87), [anon_sym_thread] = ACTIONS(89), [anon_sym_atomic] = ACTIONS(91), - [sym___double_quote] = ACTIONS(3220), - [sym___single_quote] = ACTIONS(3222), - [sym___c_double_quote] = ACTIONS(3224), - [sym___c_single_quote] = ACTIONS(3226), - [sym___r_double_quote] = ACTIONS(3228), - [sym___r_single_quote] = ACTIONS(3230), + [sym___double_quote] = ACTIONS(755), + [sym___single_quote] = ACTIONS(757), + [sym___c_double_quote] = ACTIONS(759), + [sym___c_single_quote] = ACTIONS(761), + [sym___r_double_quote] = ACTIONS(763), + [sym___r_single_quote] = ACTIONS(765), }, [637] = { [sym_line_comment] = STATE(637), [sym_block_comment] = STATE(637), - [sym__expression] = STATE(2779), - [sym__expression_without_blocks] = STATE(2300), - [sym__expression_with_blocks] = STATE(2300), - [sym_inc_expression] = STATE(2307), - [sym_dec_expression] = STATE(2307), - [sym_or_block_expression] = STATE(2307), - [sym_option_propagation_expression] = STATE(2307), - [sym_result_propagation_expression] = STATE(2307), - [sym_anon_struct_value_expression] = STATE(2380), - [sym_go_expression] = STATE(2307), - [sym_spawn_expression] = STATE(2307), - [sym_parenthesized_expression] = STATE(2307), - [sym_call_expression] = STATE(2307), - [sym_type_initializer] = STATE(2380), - [sym_function_literal] = STATE(2307), - [sym_reference_expression] = STATE(2311), - [sym_type_reference_expression] = STATE(3541), - [sym_unary_expression] = STATE(2307), - [sym_receive_expression] = STATE(2307), - [sym_binary_expression] = STATE(2307), - [sym_as_type_cast_expression] = STATE(2307), - [sym__max_group] = STATE(2307), - [sym_literal] = STATE(2292), - [sym_map_init_expression] = STATE(2380), - [sym_array_creation] = STATE(2307), - [sym_fixed_array_creation] = STATE(2307), - [sym_selector_expression] = STATE(2307), - [sym_index_expression] = STATE(2307), - [sym_slice_expression] = STATE(2307), - [sym_if_expression] = STATE(2380), - [sym_compile_time_if_expression] = STATE(2380), - [sym_is_expression] = STATE(2307), - [sym_in_expression] = STATE(2307), - [sym_enum_fetch] = STATE(2307), - [sym_match_expression] = STATE(2380), - [sym_select_expression] = STATE(2380), - [sym_lock_expression] = STATE(2380), - [sym_unsafe_expression] = STATE(2380), - [sym_sql_expression] = STATE(2380), - [sym_c_string_literal] = STATE(2308), - [sym_raw_string_literal] = STATE(2308), - [sym_interpreted_string_literal] = STATE(2308), + [sym__expression] = STATE(2267), + [sym__expression_without_blocks] = STATE(2347), + [sym__expression_with_blocks] = STATE(2347), + [sym_inc_expression] = STATE(2379), + [sym_dec_expression] = STATE(2379), + [sym_or_block_expression] = STATE(2379), + [sym_option_propagation_expression] = STATE(2379), + [sym_result_propagation_expression] = STATE(2379), + [sym_anon_struct_value_expression] = STATE(2378), + [sym_go_expression] = STATE(2379), + [sym_spawn_expression] = STATE(2379), + [sym_parenthesized_expression] = STATE(2379), + [sym_call_expression] = STATE(2379), + [sym_type_initializer] = STATE(2378), + [sym_function_literal] = STATE(2379), + [sym_reference_expression] = STATE(2377), + [sym_type_reference_expression] = STATE(3460), + [sym_unary_expression] = STATE(2379), + [sym_receive_expression] = STATE(2379), + [sym_binary_expression] = STATE(2379), + [sym_as_type_cast_expression] = STATE(2379), + [sym__max_group] = STATE(2379), + [sym_literal] = STATE(2392), + [sym_map_init_expression] = STATE(2378), + [sym_array_creation] = STATE(2379), + [sym_fixed_array_creation] = STATE(2379), + [sym_selector_expression] = STATE(2379), + [sym_index_expression] = STATE(2379), + [sym_slice_expression] = STATE(2379), + [sym_if_expression] = STATE(2378), + [sym_compile_time_if_expression] = STATE(2378), + [sym_is_expression] = STATE(2379), + [sym_in_expression] = STATE(2379), + [sym_enum_fetch] = STATE(2379), + [sym_match_expression] = STATE(2378), + [sym_select_expression] = STATE(2378), + [sym_lock_expression] = STATE(2378), + [sym_unsafe_expression] = STATE(2378), + [sym_sql_expression] = STATE(2378), + [sym_c_string_literal] = STATE(2401), + [sym_raw_string_literal] = STATE(2401), + [sym_interpreted_string_literal] = STATE(2401), [sym_mutability_modifiers] = STATE(939), - [sym_plain_type] = STATE(3552), - [sym__plain_type_without_special] = STATE(2302), - [sym_anon_struct_type] = STATE(2303), - [sym_multi_return_type] = STATE(2302), - [sym_result_type] = STATE(2302), - [sym_option_type] = STATE(2302), - [sym_qualified_type] = STATE(3541), - [sym_fixed_array_type] = STATE(2303), - [sym_array_type] = STATE(2303), - [sym_pointer_type] = STATE(2303), - [sym_wrong_pointer_type] = STATE(2303), - [sym_map_type] = STATE(2303), - [sym_channel_type] = STATE(2303), - [sym_shared_type] = STATE(2303), - [sym_thread_type] = STATE(2303), - [sym_atomic_type] = STATE(2303), - [sym_generic_type] = STATE(2303), - [sym_function_type] = STATE(2303), - [sym_identifier] = ACTIONS(1426), + [sym_plain_type] = STATE(4160), + [sym__plain_type_without_special] = STATE(2360), + [sym_anon_struct_type] = STATE(2362), + [sym_multi_return_type] = STATE(2360), + [sym_result_type] = STATE(2360), + [sym_option_type] = STATE(2360), + [sym_qualified_type] = STATE(3460), + [sym_fixed_array_type] = STATE(2362), + [sym_array_type] = STATE(2362), + [sym_pointer_type] = STATE(2362), + [sym_wrong_pointer_type] = STATE(2362), + [sym_map_type] = STATE(2362), + [sym_channel_type] = STATE(2362), + [sym_shared_type] = STATE(2362), + [sym_thread_type] = STATE(2362), + [sym_atomic_type] = STATE(2362), + [sym_generic_type] = STATE(2362), + [sym_function_type] = STATE(2362), + [sym_identifier] = ACTIONS(1428), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1428), - [anon_sym_LBRACE] = ACTIONS(1430), - [anon_sym_LPAREN] = ACTIONS(1432), - [anon_sym_fn] = ACTIONS(1434), - [anon_sym_PLUS] = ACTIONS(2491), - [anon_sym_DASH] = ACTIONS(2491), - [anon_sym_STAR] = ACTIONS(2493), - [anon_sym_struct] = ACTIONS(1440), + [anon_sym_DOT] = ACTIONS(1430), + [anon_sym_LBRACE] = ACTIONS(1432), + [anon_sym_LPAREN] = ACTIONS(1434), + [anon_sym_fn] = ACTIONS(1436), + [anon_sym_PLUS] = ACTIONS(1438), + [anon_sym_DASH] = ACTIONS(1438), + [anon_sym_STAR] = ACTIONS(1440), + [anon_sym_struct] = ACTIONS(1442), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(2495), - [anon_sym_go] = ACTIONS(2497), - [anon_sym_spawn] = ACTIONS(2499), - [anon_sym_json_DOTdecode] = ACTIONS(1448), - [anon_sym_LBRACK2] = ACTIONS(1450), - [anon_sym_TILDE] = ACTIONS(2491), - [anon_sym_CARET] = ACTIONS(2491), - [anon_sym_AMP] = ACTIONS(2501), - [anon_sym_LT_DASH] = ACTIONS(2503), - [sym_none] = ACTIONS(1456), - [sym_true] = ACTIONS(1456), - [sym_false] = ACTIONS(1456), - [sym_nil] = ACTIONS(1456), - [anon_sym_if] = ACTIONS(1827), - [anon_sym_DOLLARif] = ACTIONS(1460), - [anon_sym_match] = ACTIONS(1462), - [anon_sym_select] = ACTIONS(1464), - [anon_sym_lock] = ACTIONS(1466), - [anon_sym_rlock] = ACTIONS(1466), - [anon_sym_unsafe] = ACTIONS(1833), - [anon_sym_sql] = ACTIONS(1470), - [sym_int_literal] = ACTIONS(1456), - [sym_float_literal] = ACTIONS(1472), - [sym_rune_literal] = ACTIONS(1472), - [sym_pseudo_compile_time_identifier] = ACTIONS(1474), + [anon_sym_BANG] = ACTIONS(1444), + [anon_sym_go] = ACTIONS(1446), + [anon_sym_spawn] = ACTIONS(1448), + [anon_sym_json_DOTdecode] = ACTIONS(1450), + [anon_sym_LBRACK2] = ACTIONS(1452), + [anon_sym_TILDE] = ACTIONS(1438), + [anon_sym_CARET] = ACTIONS(1438), + [anon_sym_AMP] = ACTIONS(1454), + [anon_sym_LT_DASH] = ACTIONS(1456), + [sym_none] = ACTIONS(1458), + [sym_true] = ACTIONS(1458), + [sym_false] = ACTIONS(1458), + [sym_nil] = ACTIONS(1458), + [anon_sym_if] = ACTIONS(1833), + [anon_sym_DOLLARif] = ACTIONS(1462), + [anon_sym_match] = ACTIONS(1464), + [anon_sym_select] = ACTIONS(1466), + [anon_sym_lock] = ACTIONS(1468), + [anon_sym_rlock] = ACTIONS(1468), + [anon_sym_unsafe] = ACTIONS(1839), + [anon_sym_sql] = ACTIONS(1472), + [sym_int_literal] = ACTIONS(1458), + [sym_float_literal] = ACTIONS(1474), + [sym_rune_literal] = ACTIONS(1474), + [sym_pseudo_compile_time_identifier] = ACTIONS(1476), [anon_sym_shared] = ACTIONS(83), [anon_sym_map_LBRACK] = ACTIONS(85), [anon_sym_chan] = ACTIONS(87), [anon_sym_thread] = ACTIONS(89), [anon_sym_atomic] = ACTIONS(91), - [sym___double_quote] = ACTIONS(1478), - [sym___single_quote] = ACTIONS(1480), - [sym___c_double_quote] = ACTIONS(1482), - [sym___c_single_quote] = ACTIONS(1484), - [sym___r_double_quote] = ACTIONS(1486), - [sym___r_single_quote] = ACTIONS(1488), + [sym___double_quote] = ACTIONS(1480), + [sym___single_quote] = ACTIONS(1482), + [sym___c_double_quote] = ACTIONS(1484), + [sym___c_single_quote] = ACTIONS(1486), + [sym___r_double_quote] = ACTIONS(1488), + [sym___r_single_quote] = ACTIONS(1490), }, [638] = { [sym_line_comment] = STATE(638), [sym_block_comment] = STATE(638), - [sym__expression] = STATE(2807), - [sym__expression_without_blocks] = STATE(2300), - [sym__expression_with_blocks] = STATE(2300), - [sym_inc_expression] = STATE(2307), - [sym_dec_expression] = STATE(2307), - [sym_or_block_expression] = STATE(2307), - [sym_option_propagation_expression] = STATE(2307), - [sym_result_propagation_expression] = STATE(2307), - [sym_anon_struct_value_expression] = STATE(2380), - [sym_go_expression] = STATE(2307), - [sym_spawn_expression] = STATE(2307), - [sym_parenthesized_expression] = STATE(2307), - [sym_call_expression] = STATE(2307), - [sym_type_initializer] = STATE(2380), - [sym_function_literal] = STATE(2307), - [sym_reference_expression] = STATE(2311), - [sym_type_reference_expression] = STATE(3541), - [sym_unary_expression] = STATE(2307), - [sym_receive_expression] = STATE(2307), - [sym_binary_expression] = STATE(2307), - [sym_as_type_cast_expression] = STATE(2307), - [sym__max_group] = STATE(2307), - [sym_literal] = STATE(2292), - [sym_map_init_expression] = STATE(2380), - [sym_array_creation] = STATE(2307), - [sym_fixed_array_creation] = STATE(2307), - [sym_selector_expression] = STATE(2307), - [sym_index_expression] = STATE(2307), - [sym_slice_expression] = STATE(2307), - [sym_if_expression] = STATE(2380), - [sym_compile_time_if_expression] = STATE(2380), - [sym_is_expression] = STATE(2307), - [sym_in_expression] = STATE(2307), - [sym_enum_fetch] = STATE(2307), - [sym_match_expression] = STATE(2380), - [sym_select_expression] = STATE(2380), - [sym_lock_expression] = STATE(2380), - [sym_unsafe_expression] = STATE(2380), - [sym_sql_expression] = STATE(2380), - [sym_c_string_literal] = STATE(2308), - [sym_raw_string_literal] = STATE(2308), - [sym_interpreted_string_literal] = STATE(2308), - [sym_mutability_modifiers] = STATE(939), - [sym_plain_type] = STATE(4297), - [sym__plain_type_without_special] = STATE(2302), - [sym_anon_struct_type] = STATE(2303), - [sym_multi_return_type] = STATE(2302), - [sym_result_type] = STATE(2302), - [sym_option_type] = STATE(2302), - [sym_qualified_type] = STATE(3541), - [sym_fixed_array_type] = STATE(2303), - [sym_array_type] = STATE(2303), - [sym_pointer_type] = STATE(2303), - [sym_wrong_pointer_type] = STATE(2303), - [sym_map_type] = STATE(2303), - [sym_channel_type] = STATE(2303), - [sym_shared_type] = STATE(2303), - [sym_thread_type] = STATE(2303), - [sym_atomic_type] = STATE(2303), - [sym_generic_type] = STATE(2303), - [sym_function_type] = STATE(2303), - [sym_identifier] = ACTIONS(1426), + [sym__expression] = STATE(2433), + [sym__expression_without_blocks] = STATE(2638), + [sym__expression_with_blocks] = STATE(2638), + [sym_inc_expression] = STATE(2765), + [sym_dec_expression] = STATE(2765), + [sym_or_block_expression] = STATE(2765), + [sym_option_propagation_expression] = STATE(2765), + [sym_result_propagation_expression] = STATE(2765), + [sym_anon_struct_value_expression] = STATE(2637), + [sym_go_expression] = STATE(2765), + [sym_spawn_expression] = STATE(2765), + [sym_parenthesized_expression] = STATE(2765), + [sym_call_expression] = STATE(2765), + [sym_type_initializer] = STATE(2637), + [sym_function_literal] = STATE(2765), + [sym_reference_expression] = STATE(2764), + [sym_type_reference_expression] = STATE(3460), + [sym_unary_expression] = STATE(2765), + [sym_receive_expression] = STATE(2765), + [sym_binary_expression] = STATE(2765), + [sym_as_type_cast_expression] = STATE(2765), + [sym__max_group] = STATE(2765), + [sym_literal] = STATE(2771), + [sym_map_init_expression] = STATE(2637), + [sym_array_creation] = STATE(2765), + [sym_fixed_array_creation] = STATE(2765), + [sym_selector_expression] = STATE(2765), + [sym_index_expression] = STATE(2765), + [sym_slice_expression] = STATE(2765), + [sym_if_expression] = STATE(2637), + [sym_compile_time_if_expression] = STATE(2637), + [sym_is_expression] = STATE(2765), + [sym_in_expression] = STATE(2765), + [sym_enum_fetch] = STATE(2765), + [sym_match_expression] = STATE(2637), + [sym_select_expression] = STATE(2637), + [sym_lock_expression] = STATE(2637), + [sym_unsafe_expression] = STATE(2637), + [sym_sql_expression] = STATE(2637), + [sym_c_string_literal] = STATE(2762), + [sym_raw_string_literal] = STATE(2762), + [sym_interpreted_string_literal] = STATE(2762), + [sym_mutability_modifiers] = STATE(822), + [sym_plain_type] = STATE(3929), + [sym__plain_type_without_special] = STATE(2360), + [sym_anon_struct_type] = STATE(2362), + [sym_multi_return_type] = STATE(2360), + [sym_result_type] = STATE(2360), + [sym_option_type] = STATE(2360), + [sym_qualified_type] = STATE(3460), + [sym_fixed_array_type] = STATE(2362), + [sym_array_type] = STATE(2362), + [sym_pointer_type] = STATE(2362), + [sym_wrong_pointer_type] = STATE(2362), + [sym_map_type] = STATE(2362), + [sym_channel_type] = STATE(2362), + [sym_shared_type] = STATE(2362), + [sym_thread_type] = STATE(2362), + [sym_atomic_type] = STATE(2362), + [sym_generic_type] = STATE(2362), + [sym_function_type] = STATE(2362), + [sym_identifier] = ACTIONS(1815), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1428), - [anon_sym_LBRACE] = ACTIONS(1430), - [anon_sym_LPAREN] = ACTIONS(1432), - [anon_sym_fn] = ACTIONS(1434), - [anon_sym_PLUS] = ACTIONS(1436), - [anon_sym_DASH] = ACTIONS(1436), - [anon_sym_STAR] = ACTIONS(1438), - [anon_sym_struct] = ACTIONS(1440), + [anon_sym_DOT] = ACTIONS(1073), + [anon_sym_LBRACE] = ACTIONS(1075), + [anon_sym_LPAREN] = ACTIONS(1079), + [anon_sym_fn] = ACTIONS(1081), + [anon_sym_PLUS] = ACTIONS(3070), + [anon_sym_DASH] = ACTIONS(3070), + [anon_sym_STAR] = ACTIONS(3072), + [anon_sym_struct] = ACTIONS(1087), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(1442), - [anon_sym_go] = ACTIONS(1444), - [anon_sym_spawn] = ACTIONS(1446), - [anon_sym_json_DOTdecode] = ACTIONS(1448), - [anon_sym_LBRACK2] = ACTIONS(1450), - [anon_sym_TILDE] = ACTIONS(1436), - [anon_sym_CARET] = ACTIONS(1436), - [anon_sym_AMP] = ACTIONS(1452), - [anon_sym_LT_DASH] = ACTIONS(1454), - [sym_none] = ACTIONS(1456), - [sym_true] = ACTIONS(1456), - [sym_false] = ACTIONS(1456), - [sym_nil] = ACTIONS(1456), - [anon_sym_if] = ACTIONS(1827), - [anon_sym_DOLLARif] = ACTIONS(1460), - [anon_sym_match] = ACTIONS(1462), - [anon_sym_select] = ACTIONS(1464), - [anon_sym_lock] = ACTIONS(1466), - [anon_sym_rlock] = ACTIONS(1466), - [anon_sym_unsafe] = ACTIONS(1833), - [anon_sym_sql] = ACTIONS(1470), - [sym_int_literal] = ACTIONS(1456), - [sym_float_literal] = ACTIONS(1472), - [sym_rune_literal] = ACTIONS(1472), - [sym_pseudo_compile_time_identifier] = ACTIONS(1474), + [anon_sym_BANG] = ACTIONS(3074), + [anon_sym_go] = ACTIONS(3076), + [anon_sym_spawn] = ACTIONS(3078), + [anon_sym_json_DOTdecode] = ACTIONS(1095), + [anon_sym_LBRACK2] = ACTIONS(1097), + [anon_sym_TILDE] = ACTIONS(3070), + [anon_sym_CARET] = ACTIONS(3070), + [anon_sym_AMP] = ACTIONS(3080), + [anon_sym_LT_DASH] = ACTIONS(3082), + [sym_none] = ACTIONS(1103), + [sym_true] = ACTIONS(1103), + [sym_false] = ACTIONS(1103), + [sym_nil] = ACTIONS(1103), + [anon_sym_if] = ACTIONS(1105), + [anon_sym_DOLLARif] = ACTIONS(1109), + [anon_sym_match] = ACTIONS(1111), + [anon_sym_select] = ACTIONS(3084), + [anon_sym_lock] = ACTIONS(3086), + [anon_sym_rlock] = ACTIONS(3086), + [anon_sym_unsafe] = ACTIONS(1117), + [anon_sym_sql] = ACTIONS(1119), + [sym_int_literal] = ACTIONS(1103), + [sym_float_literal] = ACTIONS(1121), + [sym_rune_literal] = ACTIONS(1121), + [sym_pseudo_compile_time_identifier] = ACTIONS(1123), [anon_sym_shared] = ACTIONS(83), [anon_sym_map_LBRACK] = ACTIONS(85), [anon_sym_chan] = ACTIONS(87), [anon_sym_thread] = ACTIONS(89), [anon_sym_atomic] = ACTIONS(91), - [sym___double_quote] = ACTIONS(1478), - [sym___single_quote] = ACTIONS(1480), - [sym___c_double_quote] = ACTIONS(1482), - [sym___c_single_quote] = ACTIONS(1484), - [sym___r_double_quote] = ACTIONS(1486), - [sym___r_single_quote] = ACTIONS(1488), + [sym___double_quote] = ACTIONS(1125), + [sym___single_quote] = ACTIONS(1127), + [sym___c_double_quote] = ACTIONS(1129), + [sym___c_single_quote] = ACTIONS(1131), + [sym___r_double_quote] = ACTIONS(1133), + [sym___r_single_quote] = ACTIONS(1135), }, [639] = { [sym_line_comment] = STATE(639), [sym_block_comment] = STATE(639), - [sym__expression] = STATE(2593), - [sym__expression_without_blocks] = STATE(2300), - [sym__expression_with_blocks] = STATE(2300), - [sym_inc_expression] = STATE(2307), - [sym_dec_expression] = STATE(2307), - [sym_or_block_expression] = STATE(2307), - [sym_option_propagation_expression] = STATE(2307), - [sym_result_propagation_expression] = STATE(2307), - [sym_anon_struct_value_expression] = STATE(2380), - [sym_go_expression] = STATE(2307), - [sym_spawn_expression] = STATE(2307), - [sym_parenthesized_expression] = STATE(2307), - [sym_call_expression] = STATE(2307), - [sym_type_initializer] = STATE(2380), - [sym_function_literal] = STATE(2307), - [sym_reference_expression] = STATE(2311), - [sym_type_reference_expression] = STATE(3541), - [sym_unary_expression] = STATE(2307), - [sym_receive_expression] = STATE(2307), - [sym_binary_expression] = STATE(2307), - [sym_as_type_cast_expression] = STATE(2307), - [sym__max_group] = STATE(2307), - [sym_literal] = STATE(2292), - [sym_map_init_expression] = STATE(2380), - [sym_array_creation] = STATE(2307), - [sym_fixed_array_creation] = STATE(2307), - [sym_selector_expression] = STATE(2307), - [sym_index_expression] = STATE(2307), - [sym_slice_expression] = STATE(2307), - [sym_if_expression] = STATE(2380), - [sym_compile_time_if_expression] = STATE(2380), - [sym_is_expression] = STATE(2307), - [sym_in_expression] = STATE(2307), - [sym_enum_fetch] = STATE(2307), - [sym_match_expression] = STATE(2380), - [sym_select_expression] = STATE(2380), - [sym_lock_expression] = STATE(2380), - [sym_unsafe_expression] = STATE(2380), - [sym_sql_expression] = STATE(2380), - [sym_c_string_literal] = STATE(2308), - [sym_raw_string_literal] = STATE(2308), - [sym_interpreted_string_literal] = STATE(2308), + [sym__expression] = STATE(2817), + [sym__expression_without_blocks] = STATE(2347), + [sym__expression_with_blocks] = STATE(2347), + [sym_inc_expression] = STATE(2379), + [sym_dec_expression] = STATE(2379), + [sym_or_block_expression] = STATE(2379), + [sym_option_propagation_expression] = STATE(2379), + [sym_result_propagation_expression] = STATE(2379), + [sym_anon_struct_value_expression] = STATE(2378), + [sym_go_expression] = STATE(2379), + [sym_spawn_expression] = STATE(2379), + [sym_parenthesized_expression] = STATE(2379), + [sym_call_expression] = STATE(2379), + [sym_type_initializer] = STATE(2378), + [sym_function_literal] = STATE(2379), + [sym_reference_expression] = STATE(2377), + [sym_type_reference_expression] = STATE(3460), + [sym_unary_expression] = STATE(2379), + [sym_receive_expression] = STATE(2379), + [sym_binary_expression] = STATE(2379), + [sym_as_type_cast_expression] = STATE(2379), + [sym__max_group] = STATE(2379), + [sym_literal] = STATE(2392), + [sym_map_init_expression] = STATE(2378), + [sym_array_creation] = STATE(2379), + [sym_fixed_array_creation] = STATE(2379), + [sym_selector_expression] = STATE(2379), + [sym_index_expression] = STATE(2379), + [sym_slice_expression] = STATE(2379), + [sym_if_expression] = STATE(2378), + [sym_compile_time_if_expression] = STATE(2378), + [sym_is_expression] = STATE(2379), + [sym_in_expression] = STATE(2379), + [sym_enum_fetch] = STATE(2379), + [sym_match_expression] = STATE(2378), + [sym_select_expression] = STATE(2378), + [sym_lock_expression] = STATE(2378), + [sym_unsafe_expression] = STATE(2378), + [sym_sql_expression] = STATE(2378), + [sym_c_string_literal] = STATE(2401), + [sym_raw_string_literal] = STATE(2401), + [sym_interpreted_string_literal] = STATE(2401), [sym_mutability_modifiers] = STATE(939), - [sym_plain_type] = STATE(4297), - [sym__plain_type_without_special] = STATE(2302), - [sym_anon_struct_type] = STATE(2303), - [sym_multi_return_type] = STATE(2302), - [sym_result_type] = STATE(2302), - [sym_option_type] = STATE(2302), - [sym_qualified_type] = STATE(3541), - [sym_fixed_array_type] = STATE(2303), - [sym_array_type] = STATE(2303), - [sym_pointer_type] = STATE(2303), - [sym_wrong_pointer_type] = STATE(2303), - [sym_map_type] = STATE(2303), - [sym_channel_type] = STATE(2303), - [sym_shared_type] = STATE(2303), - [sym_thread_type] = STATE(2303), - [sym_atomic_type] = STATE(2303), - [sym_generic_type] = STATE(2303), - [sym_function_type] = STATE(2303), - [sym_identifier] = ACTIONS(1807), + [sym_plain_type] = STATE(4160), + [sym__plain_type_without_special] = STATE(2360), + [sym_anon_struct_type] = STATE(2362), + [sym_multi_return_type] = STATE(2360), + [sym_result_type] = STATE(2360), + [sym_option_type] = STATE(2360), + [sym_qualified_type] = STATE(3460), + [sym_fixed_array_type] = STATE(2362), + [sym_array_type] = STATE(2362), + [sym_pointer_type] = STATE(2362), + [sym_wrong_pointer_type] = STATE(2362), + [sym_map_type] = STATE(2362), + [sym_channel_type] = STATE(2362), + [sym_shared_type] = STATE(2362), + [sym_thread_type] = STATE(2362), + [sym_atomic_type] = STATE(2362), + [sym_generic_type] = STATE(2362), + [sym_function_type] = STATE(2362), + [sym_identifier] = ACTIONS(1428), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1428), - [anon_sym_LBRACE] = ACTIONS(1430), - [anon_sym_LPAREN] = ACTIONS(1432), - [anon_sym_fn] = ACTIONS(1434), - [anon_sym_PLUS] = ACTIONS(3064), - [anon_sym_DASH] = ACTIONS(3064), - [anon_sym_STAR] = ACTIONS(3066), - [anon_sym_struct] = ACTIONS(1440), + [anon_sym_DOT] = ACTIONS(1430), + [anon_sym_LBRACE] = ACTIONS(1432), + [anon_sym_LPAREN] = ACTIONS(1434), + [anon_sym_fn] = ACTIONS(1436), + [anon_sym_PLUS] = ACTIONS(1438), + [anon_sym_DASH] = ACTIONS(1438), + [anon_sym_STAR] = ACTIONS(1440), + [anon_sym_struct] = ACTIONS(1442), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(3068), - [anon_sym_go] = ACTIONS(3070), - [anon_sym_spawn] = ACTIONS(3072), - [anon_sym_json_DOTdecode] = ACTIONS(1448), - [anon_sym_LBRACK2] = ACTIONS(1821), - [anon_sym_TILDE] = ACTIONS(3064), - [anon_sym_CARET] = ACTIONS(3064), - [anon_sym_AMP] = ACTIONS(3074), - [anon_sym_LT_DASH] = ACTIONS(3076), - [sym_none] = ACTIONS(1456), - [sym_true] = ACTIONS(1456), - [sym_false] = ACTIONS(1456), - [sym_nil] = ACTIONS(1456), - [anon_sym_if] = ACTIONS(1827), - [anon_sym_DOLLARif] = ACTIONS(1460), - [anon_sym_match] = ACTIONS(1462), - [anon_sym_select] = ACTIONS(3078), - [anon_sym_lock] = ACTIONS(3080), - [anon_sym_rlock] = ACTIONS(3080), - [anon_sym_unsafe] = ACTIONS(1833), - [anon_sym_sql] = ACTIONS(1470), - [sym_int_literal] = ACTIONS(1456), - [sym_float_literal] = ACTIONS(1472), - [sym_rune_literal] = ACTIONS(1472), - [sym_pseudo_compile_time_identifier] = ACTIONS(1474), + [anon_sym_BANG] = ACTIONS(1444), + [anon_sym_go] = ACTIONS(1446), + [anon_sym_spawn] = ACTIONS(1448), + [anon_sym_json_DOTdecode] = ACTIONS(1450), + [anon_sym_LBRACK2] = ACTIONS(1452), + [anon_sym_TILDE] = ACTIONS(1438), + [anon_sym_CARET] = ACTIONS(1438), + [anon_sym_AMP] = ACTIONS(1454), + [anon_sym_LT_DASH] = ACTIONS(1456), + [sym_none] = ACTIONS(1458), + [sym_true] = ACTIONS(1458), + [sym_false] = ACTIONS(1458), + [sym_nil] = ACTIONS(1458), + [anon_sym_if] = ACTIONS(1833), + [anon_sym_DOLLARif] = ACTIONS(1462), + [anon_sym_match] = ACTIONS(1464), + [anon_sym_select] = ACTIONS(1466), + [anon_sym_lock] = ACTIONS(1468), + [anon_sym_rlock] = ACTIONS(1468), + [anon_sym_unsafe] = ACTIONS(1839), + [anon_sym_sql] = ACTIONS(1472), + [sym_int_literal] = ACTIONS(1458), + [sym_float_literal] = ACTIONS(1474), + [sym_rune_literal] = ACTIONS(1474), + [sym_pseudo_compile_time_identifier] = ACTIONS(1476), [anon_sym_shared] = ACTIONS(83), [anon_sym_map_LBRACK] = ACTIONS(85), [anon_sym_chan] = ACTIONS(87), [anon_sym_thread] = ACTIONS(89), [anon_sym_atomic] = ACTIONS(91), - [sym___double_quote] = ACTIONS(1478), - [sym___single_quote] = ACTIONS(1480), - [sym___c_double_quote] = ACTIONS(1482), - [sym___c_single_quote] = ACTIONS(1484), - [sym___r_double_quote] = ACTIONS(1486), - [sym___r_single_quote] = ACTIONS(1488), + [sym___double_quote] = ACTIONS(1480), + [sym___single_quote] = ACTIONS(1482), + [sym___c_double_quote] = ACTIONS(1484), + [sym___c_single_quote] = ACTIONS(1486), + [sym___r_double_quote] = ACTIONS(1488), + [sym___r_single_quote] = ACTIONS(1490), }, [640] = { [sym_line_comment] = STATE(640), [sym_block_comment] = STATE(640), - [sym__expression] = STATE(2823), - [sym__expression_without_blocks] = STATE(2300), - [sym__expression_with_blocks] = STATE(2300), - [sym_inc_expression] = STATE(2307), - [sym_dec_expression] = STATE(2307), - [sym_or_block_expression] = STATE(2307), - [sym_option_propagation_expression] = STATE(2307), - [sym_result_propagation_expression] = STATE(2307), - [sym_anon_struct_value_expression] = STATE(2380), - [sym_go_expression] = STATE(2307), - [sym_spawn_expression] = STATE(2307), - [sym_parenthesized_expression] = STATE(2307), - [sym_call_expression] = STATE(2307), - [sym_type_initializer] = STATE(2380), - [sym_function_literal] = STATE(2307), - [sym_reference_expression] = STATE(2311), - [sym_type_reference_expression] = STATE(3541), - [sym_unary_expression] = STATE(2307), - [sym_receive_expression] = STATE(2307), - [sym_binary_expression] = STATE(2307), - [sym_as_type_cast_expression] = STATE(2307), - [sym__max_group] = STATE(2307), - [sym_literal] = STATE(2292), - [sym_map_init_expression] = STATE(2380), - [sym_array_creation] = STATE(2307), - [sym_fixed_array_creation] = STATE(2307), - [sym_selector_expression] = STATE(2307), - [sym_index_expression] = STATE(2307), - [sym_slice_expression] = STATE(2307), - [sym_if_expression] = STATE(2380), - [sym_compile_time_if_expression] = STATE(2380), - [sym_is_expression] = STATE(2307), - [sym_in_expression] = STATE(2307), - [sym_enum_fetch] = STATE(2307), - [sym_match_expression] = STATE(2380), - [sym_select_expression] = STATE(2380), - [sym_lock_expression] = STATE(2380), - [sym_unsafe_expression] = STATE(2380), - [sym_sql_expression] = STATE(2380), - [sym_c_string_literal] = STATE(2308), - [sym_raw_string_literal] = STATE(2308), - [sym_interpreted_string_literal] = STATE(2308), - [sym_mutability_modifiers] = STATE(939), - [sym_plain_type] = STATE(4297), - [sym__plain_type_without_special] = STATE(2302), - [sym_anon_struct_type] = STATE(2303), - [sym_multi_return_type] = STATE(2302), - [sym_result_type] = STATE(2302), - [sym_option_type] = STATE(2302), - [sym_qualified_type] = STATE(3541), - [sym_fixed_array_type] = STATE(2303), - [sym_array_type] = STATE(2303), - [sym_pointer_type] = STATE(2303), - [sym_wrong_pointer_type] = STATE(2303), - [sym_map_type] = STATE(2303), - [sym_channel_type] = STATE(2303), - [sym_shared_type] = STATE(2303), - [sym_thread_type] = STATE(2303), - [sym_atomic_type] = STATE(2303), - [sym_generic_type] = STATE(2303), - [sym_function_type] = STATE(2303), - [sym_identifier] = ACTIONS(1426), + [sym__expression] = STATE(2433), + [sym__expression_without_blocks] = STATE(2638), + [sym__expression_with_blocks] = STATE(2638), + [sym_inc_expression] = STATE(2765), + [sym_dec_expression] = STATE(2765), + [sym_or_block_expression] = STATE(2765), + [sym_option_propagation_expression] = STATE(2765), + [sym_result_propagation_expression] = STATE(2765), + [sym_anon_struct_value_expression] = STATE(2637), + [sym_go_expression] = STATE(2765), + [sym_spawn_expression] = STATE(2765), + [sym_parenthesized_expression] = STATE(2765), + [sym_call_expression] = STATE(2765), + [sym_type_initializer] = STATE(2637), + [sym_function_literal] = STATE(2765), + [sym_reference_expression] = STATE(2764), + [sym_type_reference_expression] = STATE(3460), + [sym_unary_expression] = STATE(2765), + [sym_receive_expression] = STATE(2765), + [sym_binary_expression] = STATE(2765), + [sym_as_type_cast_expression] = STATE(2765), + [sym__max_group] = STATE(2765), + [sym_literal] = STATE(2771), + [sym_map_init_expression] = STATE(2637), + [sym_array_creation] = STATE(2765), + [sym_fixed_array_creation] = STATE(2765), + [sym_selector_expression] = STATE(2765), + [sym_index_expression] = STATE(2765), + [sym_slice_expression] = STATE(2765), + [sym_if_expression] = STATE(2637), + [sym_compile_time_if_expression] = STATE(2637), + [sym_is_expression] = STATE(2765), + [sym_in_expression] = STATE(2765), + [sym_enum_fetch] = STATE(2765), + [sym_match_expression] = STATE(2637), + [sym_select_expression] = STATE(2637), + [sym_lock_expression] = STATE(2637), + [sym_unsafe_expression] = STATE(2637), + [sym_sql_expression] = STATE(2637), + [sym_c_string_literal] = STATE(2762), + [sym_raw_string_literal] = STATE(2762), + [sym_interpreted_string_literal] = STATE(2762), + [sym_mutability_modifiers] = STATE(822), + [sym_plain_type] = STATE(3936), + [sym__plain_type_without_special] = STATE(2360), + [sym_anon_struct_type] = STATE(2362), + [sym_multi_return_type] = STATE(2360), + [sym_result_type] = STATE(2360), + [sym_option_type] = STATE(2360), + [sym_qualified_type] = STATE(3460), + [sym_fixed_array_type] = STATE(2362), + [sym_array_type] = STATE(2362), + [sym_pointer_type] = STATE(2362), + [sym_wrong_pointer_type] = STATE(2362), + [sym_map_type] = STATE(2362), + [sym_channel_type] = STATE(2362), + [sym_shared_type] = STATE(2362), + [sym_thread_type] = STATE(2362), + [sym_atomic_type] = STATE(2362), + [sym_generic_type] = STATE(2362), + [sym_function_type] = STATE(2362), + [sym_identifier] = ACTIONS(1815), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1428), - [anon_sym_LBRACE] = ACTIONS(1430), - [anon_sym_LPAREN] = ACTIONS(1432), - [anon_sym_fn] = ACTIONS(1434), - [anon_sym_PLUS] = ACTIONS(1436), - [anon_sym_DASH] = ACTIONS(1436), - [anon_sym_STAR] = ACTIONS(1438), - [anon_sym_struct] = ACTIONS(1440), + [anon_sym_DOT] = ACTIONS(1073), + [anon_sym_LBRACE] = ACTIONS(1075), + [anon_sym_LPAREN] = ACTIONS(1079), + [anon_sym_fn] = ACTIONS(1081), + [anon_sym_PLUS] = ACTIONS(3070), + [anon_sym_DASH] = ACTIONS(3070), + [anon_sym_STAR] = ACTIONS(3072), + [anon_sym_struct] = ACTIONS(1087), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(1442), - [anon_sym_go] = ACTIONS(1444), - [anon_sym_spawn] = ACTIONS(1446), - [anon_sym_json_DOTdecode] = ACTIONS(1448), - [anon_sym_LBRACK2] = ACTIONS(1450), - [anon_sym_TILDE] = ACTIONS(1436), - [anon_sym_CARET] = ACTIONS(1436), - [anon_sym_AMP] = ACTIONS(1452), - [anon_sym_LT_DASH] = ACTIONS(1454), - [sym_none] = ACTIONS(1456), - [sym_true] = ACTIONS(1456), - [sym_false] = ACTIONS(1456), - [sym_nil] = ACTIONS(1456), - [anon_sym_if] = ACTIONS(1827), - [anon_sym_DOLLARif] = ACTIONS(1460), - [anon_sym_match] = ACTIONS(1462), - [anon_sym_select] = ACTIONS(1464), - [anon_sym_lock] = ACTIONS(1466), - [anon_sym_rlock] = ACTIONS(1466), - [anon_sym_unsafe] = ACTIONS(1833), - [anon_sym_sql] = ACTIONS(1470), - [sym_int_literal] = ACTIONS(1456), - [sym_float_literal] = ACTIONS(1472), - [sym_rune_literal] = ACTIONS(1472), - [sym_pseudo_compile_time_identifier] = ACTIONS(1474), + [anon_sym_BANG] = ACTIONS(3074), + [anon_sym_go] = ACTIONS(3076), + [anon_sym_spawn] = ACTIONS(3078), + [anon_sym_json_DOTdecode] = ACTIONS(1095), + [anon_sym_LBRACK2] = ACTIONS(1097), + [anon_sym_TILDE] = ACTIONS(3070), + [anon_sym_CARET] = ACTIONS(3070), + [anon_sym_AMP] = ACTIONS(3080), + [anon_sym_LT_DASH] = ACTIONS(3082), + [sym_none] = ACTIONS(1103), + [sym_true] = ACTIONS(1103), + [sym_false] = ACTIONS(1103), + [sym_nil] = ACTIONS(1103), + [anon_sym_if] = ACTIONS(1105), + [anon_sym_DOLLARif] = ACTIONS(1109), + [anon_sym_match] = ACTIONS(1111), + [anon_sym_select] = ACTIONS(3084), + [anon_sym_lock] = ACTIONS(3086), + [anon_sym_rlock] = ACTIONS(3086), + [anon_sym_unsafe] = ACTIONS(1117), + [anon_sym_sql] = ACTIONS(1119), + [sym_int_literal] = ACTIONS(1103), + [sym_float_literal] = ACTIONS(1121), + [sym_rune_literal] = ACTIONS(1121), + [sym_pseudo_compile_time_identifier] = ACTIONS(1123), [anon_sym_shared] = ACTIONS(83), [anon_sym_map_LBRACK] = ACTIONS(85), [anon_sym_chan] = ACTIONS(87), [anon_sym_thread] = ACTIONS(89), [anon_sym_atomic] = ACTIONS(91), - [sym___double_quote] = ACTIONS(1478), - [sym___single_quote] = ACTIONS(1480), - [sym___c_double_quote] = ACTIONS(1482), - [sym___c_single_quote] = ACTIONS(1484), - [sym___r_double_quote] = ACTIONS(1486), - [sym___r_single_quote] = ACTIONS(1488), + [sym___double_quote] = ACTIONS(1125), + [sym___single_quote] = ACTIONS(1127), + [sym___c_double_quote] = ACTIONS(1129), + [sym___c_single_quote] = ACTIONS(1131), + [sym___r_double_quote] = ACTIONS(1133), + [sym___r_single_quote] = ACTIONS(1135), }, [641] = { [sym_line_comment] = STATE(641), [sym_block_comment] = STATE(641), - [sym__expression] = STATE(2752), - [sym__expression_without_blocks] = STATE(2300), - [sym__expression_with_blocks] = STATE(2300), - [sym_inc_expression] = STATE(2307), - [sym_dec_expression] = STATE(2307), - [sym_or_block_expression] = STATE(2307), - [sym_option_propagation_expression] = STATE(2307), - [sym_result_propagation_expression] = STATE(2307), - [sym_anon_struct_value_expression] = STATE(2380), - [sym_go_expression] = STATE(2307), - [sym_spawn_expression] = STATE(2307), - [sym_parenthesized_expression] = STATE(2307), - [sym_call_expression] = STATE(2307), - [sym_type_initializer] = STATE(2380), - [sym_function_literal] = STATE(2307), - [sym_reference_expression] = STATE(2311), - [sym_type_reference_expression] = STATE(3541), - [sym_unary_expression] = STATE(2307), - [sym_receive_expression] = STATE(2307), - [sym_binary_expression] = STATE(2307), - [sym_as_type_cast_expression] = STATE(2307), - [sym__max_group] = STATE(2307), - [sym_literal] = STATE(2292), - [sym_map_init_expression] = STATE(2380), - [sym_array_creation] = STATE(2307), - [sym_fixed_array_creation] = STATE(2307), - [sym_selector_expression] = STATE(2307), - [sym_index_expression] = STATE(2307), - [sym_slice_expression] = STATE(2307), - [sym_if_expression] = STATE(2380), - [sym_compile_time_if_expression] = STATE(2380), - [sym_is_expression] = STATE(2307), - [sym_in_expression] = STATE(2307), - [sym_enum_fetch] = STATE(2307), - [sym_match_expression] = STATE(2380), - [sym_select_expression] = STATE(2380), - [sym_lock_expression] = STATE(2380), - [sym_unsafe_expression] = STATE(2380), - [sym_sql_expression] = STATE(2380), - [sym_c_string_literal] = STATE(2308), - [sym_raw_string_literal] = STATE(2308), - [sym_interpreted_string_literal] = STATE(2308), + [sym__expression] = STATE(2827), + [sym__expression_without_blocks] = STATE(2347), + [sym__expression_with_blocks] = STATE(2347), + [sym_inc_expression] = STATE(2379), + [sym_dec_expression] = STATE(2379), + [sym_or_block_expression] = STATE(2379), + [sym_option_propagation_expression] = STATE(2379), + [sym_result_propagation_expression] = STATE(2379), + [sym_anon_struct_value_expression] = STATE(2378), + [sym_go_expression] = STATE(2379), + [sym_spawn_expression] = STATE(2379), + [sym_parenthesized_expression] = STATE(2379), + [sym_call_expression] = STATE(2379), + [sym_type_initializer] = STATE(2378), + [sym_function_literal] = STATE(2379), + [sym_reference_expression] = STATE(2377), + [sym_type_reference_expression] = STATE(3460), + [sym_unary_expression] = STATE(2379), + [sym_receive_expression] = STATE(2379), + [sym_binary_expression] = STATE(2379), + [sym_as_type_cast_expression] = STATE(2379), + [sym__max_group] = STATE(2379), + [sym_literal] = STATE(2392), + [sym_map_init_expression] = STATE(2378), + [sym_array_creation] = STATE(2379), + [sym_fixed_array_creation] = STATE(2379), + [sym_selector_expression] = STATE(2379), + [sym_index_expression] = STATE(2379), + [sym_slice_expression] = STATE(2379), + [sym_if_expression] = STATE(2378), + [sym_compile_time_if_expression] = STATE(2378), + [sym_is_expression] = STATE(2379), + [sym_in_expression] = STATE(2379), + [sym_enum_fetch] = STATE(2379), + [sym_match_expression] = STATE(2378), + [sym_select_expression] = STATE(2378), + [sym_lock_expression] = STATE(2378), + [sym_unsafe_expression] = STATE(2378), + [sym_sql_expression] = STATE(2378), + [sym_c_string_literal] = STATE(2401), + [sym_raw_string_literal] = STATE(2401), + [sym_interpreted_string_literal] = STATE(2401), [sym_mutability_modifiers] = STATE(939), - [sym_plain_type] = STATE(4297), - [sym__plain_type_without_special] = STATE(2302), - [sym_anon_struct_type] = STATE(2303), - [sym_multi_return_type] = STATE(2302), - [sym_result_type] = STATE(2302), - [sym_option_type] = STATE(2302), - [sym_qualified_type] = STATE(3541), - [sym_fixed_array_type] = STATE(2303), - [sym_array_type] = STATE(2303), - [sym_pointer_type] = STATE(2303), - [sym_wrong_pointer_type] = STATE(2303), - [sym_map_type] = STATE(2303), - [sym_channel_type] = STATE(2303), - [sym_shared_type] = STATE(2303), - [sym_thread_type] = STATE(2303), - [sym_atomic_type] = STATE(2303), - [sym_generic_type] = STATE(2303), - [sym_function_type] = STATE(2303), - [sym_identifier] = ACTIONS(2189), + [sym_plain_type] = STATE(4160), + [sym__plain_type_without_special] = STATE(2360), + [sym_anon_struct_type] = STATE(2362), + [sym_multi_return_type] = STATE(2360), + [sym_result_type] = STATE(2360), + [sym_option_type] = STATE(2360), + [sym_qualified_type] = STATE(3460), + [sym_fixed_array_type] = STATE(2362), + [sym_array_type] = STATE(2362), + [sym_pointer_type] = STATE(2362), + [sym_wrong_pointer_type] = STATE(2362), + [sym_map_type] = STATE(2362), + [sym_channel_type] = STATE(2362), + [sym_shared_type] = STATE(2362), + [sym_thread_type] = STATE(2362), + [sym_atomic_type] = STATE(2362), + [sym_generic_type] = STATE(2362), + [sym_function_type] = STATE(2362), + [sym_identifier] = ACTIONS(3384), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1428), - [anon_sym_LBRACE] = ACTIONS(1430), - [anon_sym_LPAREN] = ACTIONS(1432), - [anon_sym_fn] = ACTIONS(1434), - [anon_sym_PLUS] = ACTIONS(2491), - [anon_sym_DASH] = ACTIONS(2491), - [anon_sym_STAR] = ACTIONS(3354), - [anon_sym_struct] = ACTIONS(1440), + [anon_sym_DOT] = ACTIONS(1430), + [anon_sym_LBRACE] = ACTIONS(1432), + [anon_sym_LPAREN] = ACTIONS(1434), + [anon_sym_fn] = ACTIONS(1436), + [anon_sym_PLUS] = ACTIONS(1438), + [anon_sym_DASH] = ACTIONS(1438), + [anon_sym_STAR] = ACTIONS(1440), + [anon_sym_struct] = ACTIONS(1442), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(3356), - [anon_sym_go] = ACTIONS(2497), - [anon_sym_spawn] = ACTIONS(2499), - [anon_sym_json_DOTdecode] = ACTIONS(1448), - [anon_sym_LBRACK2] = ACTIONS(1450), - [anon_sym_TILDE] = ACTIONS(2491), - [anon_sym_CARET] = ACTIONS(2491), - [anon_sym_AMP] = ACTIONS(3358), - [anon_sym_LT_DASH] = ACTIONS(2503), - [sym_none] = ACTIONS(1456), - [sym_true] = ACTIONS(1456), - [sym_false] = ACTIONS(1456), - [sym_nil] = ACTIONS(1456), - [anon_sym_if] = ACTIONS(1827), - [anon_sym_DOLLARif] = ACTIONS(1460), - [anon_sym_match] = ACTIONS(1462), - [anon_sym_select] = ACTIONS(1464), - [anon_sym_lock] = ACTIONS(1466), - [anon_sym_rlock] = ACTIONS(1466), - [anon_sym_unsafe] = ACTIONS(1833), - [anon_sym_sql] = ACTIONS(1470), - [sym_int_literal] = ACTIONS(1456), - [sym_float_literal] = ACTIONS(1472), - [sym_rune_literal] = ACTIONS(1472), - [sym_pseudo_compile_time_identifier] = ACTIONS(1474), + [anon_sym_BANG] = ACTIONS(1444), + [anon_sym_go] = ACTIONS(1446), + [anon_sym_spawn] = ACTIONS(1448), + [anon_sym_json_DOTdecode] = ACTIONS(1450), + [anon_sym_LBRACK2] = ACTIONS(1452), + [anon_sym_TILDE] = ACTIONS(1438), + [anon_sym_CARET] = ACTIONS(1438), + [anon_sym_AMP] = ACTIONS(1454), + [anon_sym_LT_DASH] = ACTIONS(1456), + [sym_none] = ACTIONS(1458), + [sym_true] = ACTIONS(1458), + [sym_false] = ACTIONS(1458), + [sym_nil] = ACTIONS(1458), + [anon_sym_if] = ACTIONS(1833), + [anon_sym_DOLLARif] = ACTIONS(1462), + [anon_sym_match] = ACTIONS(1464), + [anon_sym_select] = ACTIONS(1466), + [anon_sym_lock] = ACTIONS(1468), + [anon_sym_rlock] = ACTIONS(1468), + [anon_sym_unsafe] = ACTIONS(1839), + [anon_sym_sql] = ACTIONS(1472), + [sym_int_literal] = ACTIONS(1458), + [sym_float_literal] = ACTIONS(1474), + [sym_rune_literal] = ACTIONS(1474), + [sym_pseudo_compile_time_identifier] = ACTIONS(1476), [anon_sym_shared] = ACTIONS(83), [anon_sym_map_LBRACK] = ACTIONS(85), [anon_sym_chan] = ACTIONS(87), [anon_sym_thread] = ACTIONS(89), [anon_sym_atomic] = ACTIONS(91), - [sym___double_quote] = ACTIONS(1478), - [sym___single_quote] = ACTIONS(1480), - [sym___c_double_quote] = ACTIONS(1482), - [sym___c_single_quote] = ACTIONS(1484), - [sym___r_double_quote] = ACTIONS(1486), - [sym___r_single_quote] = ACTIONS(1488), + [sym___double_quote] = ACTIONS(1480), + [sym___single_quote] = ACTIONS(1482), + [sym___c_double_quote] = ACTIONS(1484), + [sym___c_single_quote] = ACTIONS(1486), + [sym___r_double_quote] = ACTIONS(1488), + [sym___r_single_quote] = ACTIONS(1490), }, [642] = { [sym_line_comment] = STATE(642), [sym_block_comment] = STATE(642), - [sym__expression] = STATE(2831), - [sym__expression_without_blocks] = STATE(2300), - [sym__expression_with_blocks] = STATE(2300), - [sym_inc_expression] = STATE(2307), - [sym_dec_expression] = STATE(2307), - [sym_or_block_expression] = STATE(2307), - [sym_option_propagation_expression] = STATE(2307), - [sym_result_propagation_expression] = STATE(2307), - [sym_anon_struct_value_expression] = STATE(2380), - [sym_go_expression] = STATE(2307), - [sym_spawn_expression] = STATE(2307), - [sym_parenthesized_expression] = STATE(2307), - [sym_call_expression] = STATE(2307), - [sym_type_initializer] = STATE(2380), - [sym_function_literal] = STATE(2307), - [sym_reference_expression] = STATE(2930), - [sym_type_reference_expression] = STATE(3541), - [sym_unary_expression] = STATE(2307), - [sym_receive_expression] = STATE(2307), - [sym_binary_expression] = STATE(2307), - [sym_as_type_cast_expression] = STATE(2307), - [sym__max_group] = STATE(2307), - [sym_literal] = STATE(2292), - [sym_map_init_expression] = STATE(2380), - [sym_array_creation] = STATE(2307), - [sym_fixed_array_creation] = STATE(2307), - [sym_selector_expression] = STATE(2931), - [sym_index_expression] = STATE(2307), - [sym_slice_expression] = STATE(2307), - [sym_if_expression] = STATE(2380), - [sym_compile_time_if_expression] = STATE(2380), - [sym_is_expression] = STATE(2307), - [sym_in_expression] = STATE(2307), - [sym_enum_fetch] = STATE(2307), - [sym_match_expression] = STATE(2380), - [sym_select_expression] = STATE(2380), - [sym_lock_expression] = STATE(2380), - [sym_unsafe_expression] = STATE(2380), - [sym_sql_expression] = STATE(2380), - [sym_c_string_literal] = STATE(2308), - [sym_raw_string_literal] = STATE(2308), - [sym_interpreted_string_literal] = STATE(2308), + [sym__expression] = STATE(2802), + [sym__expression_without_blocks] = STATE(2347), + [sym__expression_with_blocks] = STATE(2347), + [sym_inc_expression] = STATE(2379), + [sym_dec_expression] = STATE(2379), + [sym_or_block_expression] = STATE(2379), + [sym_option_propagation_expression] = STATE(2379), + [sym_result_propagation_expression] = STATE(2379), + [sym_anon_struct_value_expression] = STATE(2378), + [sym_go_expression] = STATE(2379), + [sym_spawn_expression] = STATE(2379), + [sym_parenthesized_expression] = STATE(2379), + [sym_call_expression] = STATE(2379), + [sym_type_initializer] = STATE(2378), + [sym_function_literal] = STATE(2379), + [sym_reference_expression] = STATE(2377), + [sym_type_reference_expression] = STATE(3460), + [sym_unary_expression] = STATE(2379), + [sym_receive_expression] = STATE(2379), + [sym_binary_expression] = STATE(2379), + [sym_as_type_cast_expression] = STATE(2379), + [sym__max_group] = STATE(2379), + [sym_literal] = STATE(2392), + [sym_map_init_expression] = STATE(2378), + [sym_array_creation] = STATE(2379), + [sym_fixed_array_creation] = STATE(2379), + [sym_selector_expression] = STATE(2379), + [sym_index_expression] = STATE(2379), + [sym_slice_expression] = STATE(2379), + [sym_if_expression] = STATE(2378), + [sym_compile_time_if_expression] = STATE(2378), + [sym_is_expression] = STATE(2379), + [sym_in_expression] = STATE(2379), + [sym_enum_fetch] = STATE(2379), + [sym_match_expression] = STATE(2378), + [sym_select_expression] = STATE(2378), + [sym_lock_expression] = STATE(2378), + [sym_unsafe_expression] = STATE(2378), + [sym_sql_expression] = STATE(2378), + [sym_c_string_literal] = STATE(2401), + [sym_raw_string_literal] = STATE(2401), + [sym_interpreted_string_literal] = STATE(2401), [sym_mutability_modifiers] = STATE(939), - [sym_plain_type] = STATE(4297), - [sym__plain_type_without_special] = STATE(2302), - [sym_anon_struct_type] = STATE(2303), - [sym_multi_return_type] = STATE(2302), - [sym_result_type] = STATE(2302), - [sym_option_type] = STATE(2302), - [sym_qualified_type] = STATE(3541), - [sym_fixed_array_type] = STATE(2303), - [sym_array_type] = STATE(2303), - [sym_pointer_type] = STATE(2303), - [sym_wrong_pointer_type] = STATE(2303), - [sym_map_type] = STATE(2303), - [sym_channel_type] = STATE(2303), - [sym_shared_type] = STATE(2303), - [sym_thread_type] = STATE(2303), - [sym_atomic_type] = STATE(2303), - [sym_generic_type] = STATE(2303), - [sym_function_type] = STATE(2303), - [sym_identifier] = ACTIONS(2189), + [sym_plain_type] = STATE(3564), + [sym__plain_type_without_special] = STATE(2360), + [sym_anon_struct_type] = STATE(2362), + [sym_multi_return_type] = STATE(2360), + [sym_result_type] = STATE(2360), + [sym_option_type] = STATE(2360), + [sym_qualified_type] = STATE(3460), + [sym_fixed_array_type] = STATE(2362), + [sym_array_type] = STATE(2362), + [sym_pointer_type] = STATE(2362), + [sym_wrong_pointer_type] = STATE(2362), + [sym_map_type] = STATE(2362), + [sym_channel_type] = STATE(2362), + [sym_shared_type] = STATE(2362), + [sym_thread_type] = STATE(2362), + [sym_atomic_type] = STATE(2362), + [sym_generic_type] = STATE(2362), + [sym_function_type] = STATE(2362), + [sym_identifier] = ACTIONS(1428), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1428), - [anon_sym_LBRACE] = ACTIONS(1430), - [anon_sym_LPAREN] = ACTIONS(1432), - [anon_sym_fn] = ACTIONS(1434), - [anon_sym_PLUS] = ACTIONS(1436), - [anon_sym_DASH] = ACTIONS(1436), - [anon_sym_STAR] = ACTIONS(1438), - [anon_sym_struct] = ACTIONS(1440), + [anon_sym_DOT] = ACTIONS(1430), + [anon_sym_LBRACE] = ACTIONS(1432), + [anon_sym_LPAREN] = ACTIONS(1434), + [anon_sym_fn] = ACTIONS(1436), + [anon_sym_PLUS] = ACTIONS(2271), + [anon_sym_DASH] = ACTIONS(2271), + [anon_sym_STAR] = ACTIONS(2273), + [anon_sym_struct] = ACTIONS(1442), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(1442), - [anon_sym_go] = ACTIONS(1444), - [anon_sym_spawn] = ACTIONS(1446), - [anon_sym_json_DOTdecode] = ACTIONS(1448), - [anon_sym_LBRACK2] = ACTIONS(1450), - [anon_sym_TILDE] = ACTIONS(1436), - [anon_sym_CARET] = ACTIONS(1436), - [anon_sym_AMP] = ACTIONS(1452), - [anon_sym_LT_DASH] = ACTIONS(1454), - [sym_none] = ACTIONS(1456), - [sym_true] = ACTIONS(1456), - [sym_false] = ACTIONS(1456), - [sym_nil] = ACTIONS(1456), - [anon_sym_if] = ACTIONS(1827), - [anon_sym_DOLLARif] = ACTIONS(1460), - [anon_sym_match] = ACTIONS(1462), - [anon_sym_select] = ACTIONS(1464), - [anon_sym_lock] = ACTIONS(1466), - [anon_sym_rlock] = ACTIONS(1466), - [anon_sym_unsafe] = ACTIONS(1833), - [anon_sym_sql] = ACTIONS(1470), - [sym_int_literal] = ACTIONS(1456), - [sym_float_literal] = ACTIONS(1472), - [sym_rune_literal] = ACTIONS(1472), - [sym_pseudo_compile_time_identifier] = ACTIONS(1474), + [anon_sym_BANG] = ACTIONS(2275), + [anon_sym_go] = ACTIONS(2277), + [anon_sym_spawn] = ACTIONS(2279), + [anon_sym_json_DOTdecode] = ACTIONS(1450), + [anon_sym_LBRACK2] = ACTIONS(1452), + [anon_sym_TILDE] = ACTIONS(2271), + [anon_sym_CARET] = ACTIONS(2271), + [anon_sym_AMP] = ACTIONS(2281), + [anon_sym_LT_DASH] = ACTIONS(2283), + [sym_none] = ACTIONS(1458), + [sym_true] = ACTIONS(1458), + [sym_false] = ACTIONS(1458), + [sym_nil] = ACTIONS(1458), + [anon_sym_if] = ACTIONS(1833), + [anon_sym_DOLLARif] = ACTIONS(1462), + [anon_sym_match] = ACTIONS(1464), + [anon_sym_select] = ACTIONS(1466), + [anon_sym_lock] = ACTIONS(1468), + [anon_sym_rlock] = ACTIONS(1468), + [anon_sym_unsafe] = ACTIONS(1839), + [anon_sym_sql] = ACTIONS(1472), + [sym_int_literal] = ACTIONS(1458), + [sym_float_literal] = ACTIONS(1474), + [sym_rune_literal] = ACTIONS(1474), + [sym_pseudo_compile_time_identifier] = ACTIONS(1476), [anon_sym_shared] = ACTIONS(83), [anon_sym_map_LBRACK] = ACTIONS(85), [anon_sym_chan] = ACTIONS(87), [anon_sym_thread] = ACTIONS(89), [anon_sym_atomic] = ACTIONS(91), - [sym___double_quote] = ACTIONS(1478), - [sym___single_quote] = ACTIONS(1480), - [sym___c_double_quote] = ACTIONS(1482), - [sym___c_single_quote] = ACTIONS(1484), - [sym___r_double_quote] = ACTIONS(1486), - [sym___r_single_quote] = ACTIONS(1488), + [sym___double_quote] = ACTIONS(1480), + [sym___single_quote] = ACTIONS(1482), + [sym___c_double_quote] = ACTIONS(1484), + [sym___c_single_quote] = ACTIONS(1486), + [sym___r_double_quote] = ACTIONS(1488), + [sym___r_single_quote] = ACTIONS(1490), }, [643] = { [sym_line_comment] = STATE(643), [sym_block_comment] = STATE(643), - [sym__expression] = STATE(2474), - [sym__expression_without_blocks] = STATE(2300), - [sym__expression_with_blocks] = STATE(2300), - [sym_inc_expression] = STATE(2307), - [sym_dec_expression] = STATE(2307), - [sym_or_block_expression] = STATE(2307), - [sym_option_propagation_expression] = STATE(2307), - [sym_result_propagation_expression] = STATE(2307), - [sym_anon_struct_value_expression] = STATE(2380), - [sym_go_expression] = STATE(2307), - [sym_spawn_expression] = STATE(2307), - [sym_parenthesized_expression] = STATE(2307), - [sym_call_expression] = STATE(2307), - [sym_type_initializer] = STATE(2380), - [sym_function_literal] = STATE(2307), - [sym_reference_expression] = STATE(2311), - [sym_type_reference_expression] = STATE(3541), - [sym_unary_expression] = STATE(2307), - [sym_receive_expression] = STATE(2307), - [sym_binary_expression] = STATE(2307), - [sym_as_type_cast_expression] = STATE(2307), - [sym__max_group] = STATE(2307), - [sym_literal] = STATE(2292), - [sym_map_init_expression] = STATE(2380), - [sym_array_creation] = STATE(2307), - [sym_fixed_array_creation] = STATE(2307), - [sym_selector_expression] = STATE(2307), - [sym_index_expression] = STATE(2307), - [sym_slice_expression] = STATE(2307), - [sym_if_expression] = STATE(2380), - [sym_compile_time_if_expression] = STATE(2380), - [sym_is_expression] = STATE(2307), - [sym_in_expression] = STATE(2307), - [sym_enum_fetch] = STATE(2307), - [sym_match_expression] = STATE(2380), - [sym_select_expression] = STATE(2380), - [sym_lock_expression] = STATE(2380), - [sym_unsafe_expression] = STATE(2380), - [sym_sql_expression] = STATE(2380), - [sym_c_string_literal] = STATE(2308), - [sym_raw_string_literal] = STATE(2308), - [sym_interpreted_string_literal] = STATE(2308), - [sym_mutability_modifiers] = STATE(632), - [sym_plain_type] = STATE(4297), - [sym__plain_type_without_special] = STATE(2302), - [sym_anon_struct_type] = STATE(2303), - [sym_multi_return_type] = STATE(2302), - [sym_result_type] = STATE(2302), - [sym_option_type] = STATE(2302), - [sym_qualified_type] = STATE(3541), - [sym_fixed_array_type] = STATE(2303), - [sym_array_type] = STATE(2303), - [sym_pointer_type] = STATE(2303), - [sym_wrong_pointer_type] = STATE(2303), - [sym_map_type] = STATE(2303), - [sym_channel_type] = STATE(2303), - [sym_shared_type] = STATE(2303), - [sym_thread_type] = STATE(2303), - [sym_atomic_type] = STATE(2303), - [sym_generic_type] = STATE(2303), - [sym_function_type] = STATE(2303), - [sym_identifier] = ACTIONS(2189), + [sym__expression] = STATE(2593), + [sym__expression_without_blocks] = STATE(2347), + [sym__expression_with_blocks] = STATE(2347), + [sym_inc_expression] = STATE(2379), + [sym_dec_expression] = STATE(2379), + [sym_or_block_expression] = STATE(2379), + [sym_option_propagation_expression] = STATE(2379), + [sym_result_propagation_expression] = STATE(2379), + [sym_anon_struct_value_expression] = STATE(2378), + [sym_go_expression] = STATE(2379), + [sym_spawn_expression] = STATE(2379), + [sym_parenthesized_expression] = STATE(2379), + [sym_call_expression] = STATE(2379), + [sym_type_initializer] = STATE(2378), + [sym_function_literal] = STATE(2379), + [sym_reference_expression] = STATE(2377), + [sym_type_reference_expression] = STATE(3460), + [sym_unary_expression] = STATE(2379), + [sym_receive_expression] = STATE(2379), + [sym_binary_expression] = STATE(2379), + [sym_as_type_cast_expression] = STATE(2379), + [sym__max_group] = STATE(2379), + [sym_literal] = STATE(2392), + [sym_map_init_expression] = STATE(2378), + [sym_array_creation] = STATE(2379), + [sym_fixed_array_creation] = STATE(2379), + [sym_selector_expression] = STATE(2379), + [sym_index_expression] = STATE(2379), + [sym_slice_expression] = STATE(2379), + [sym_if_expression] = STATE(2378), + [sym_compile_time_if_expression] = STATE(2378), + [sym_is_expression] = STATE(2379), + [sym_in_expression] = STATE(2379), + [sym_enum_fetch] = STATE(2379), + [sym_match_expression] = STATE(2378), + [sym_select_expression] = STATE(2378), + [sym_lock_expression] = STATE(2378), + [sym_unsafe_expression] = STATE(2378), + [sym_sql_expression] = STATE(2378), + [sym_c_string_literal] = STATE(2401), + [sym_raw_string_literal] = STATE(2401), + [sym_interpreted_string_literal] = STATE(2401), + [sym_mutability_modifiers] = STATE(939), + [sym_plain_type] = STATE(4160), + [sym__plain_type_without_special] = STATE(2360), + [sym_anon_struct_type] = STATE(2362), + [sym_multi_return_type] = STATE(2360), + [sym_result_type] = STATE(2360), + [sym_option_type] = STATE(2360), + [sym_qualified_type] = STATE(3460), + [sym_fixed_array_type] = STATE(2362), + [sym_array_type] = STATE(2362), + [sym_pointer_type] = STATE(2362), + [sym_wrong_pointer_type] = STATE(2362), + [sym_map_type] = STATE(2362), + [sym_channel_type] = STATE(2362), + [sym_shared_type] = STATE(2362), + [sym_thread_type] = STATE(2362), + [sym_atomic_type] = STATE(2362), + [sym_generic_type] = STATE(2362), + [sym_function_type] = STATE(2362), + [sym_identifier] = ACTIONS(1815), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1428), - [anon_sym_LBRACE] = ACTIONS(1430), - [anon_sym_LPAREN] = ACTIONS(1432), - [anon_sym_fn] = ACTIONS(1434), - [anon_sym_PLUS] = ACTIONS(2191), - [anon_sym_DASH] = ACTIONS(2191), - [anon_sym_STAR] = ACTIONS(2193), - [anon_sym_struct] = ACTIONS(1440), + [anon_sym_DOT] = ACTIONS(1430), + [anon_sym_LBRACE] = ACTIONS(1432), + [anon_sym_LPAREN] = ACTIONS(1434), + [anon_sym_fn] = ACTIONS(1436), + [anon_sym_PLUS] = ACTIONS(3090), + [anon_sym_DASH] = ACTIONS(3090), + [anon_sym_STAR] = ACTIONS(3092), + [anon_sym_struct] = ACTIONS(1442), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(2195), - [anon_sym_go] = ACTIONS(2197), - [anon_sym_spawn] = ACTIONS(2199), - [anon_sym_json_DOTdecode] = ACTIONS(1448), - [anon_sym_LBRACK2] = ACTIONS(2201), - [anon_sym_TILDE] = ACTIONS(2191), - [anon_sym_CARET] = ACTIONS(2191), - [anon_sym_AMP] = ACTIONS(2203), - [anon_sym_LT_DASH] = ACTIONS(2205), - [sym_none] = ACTIONS(1456), - [sym_true] = ACTIONS(1456), - [sym_false] = ACTIONS(1456), - [sym_nil] = ACTIONS(1456), - [anon_sym_if] = ACTIONS(1827), - [anon_sym_DOLLARif] = ACTIONS(1460), - [anon_sym_match] = ACTIONS(1462), - [anon_sym_select] = ACTIONS(2207), - [anon_sym_lock] = ACTIONS(2209), - [anon_sym_rlock] = ACTIONS(2209), - [anon_sym_unsafe] = ACTIONS(1833), - [anon_sym_sql] = ACTIONS(1470), - [sym_int_literal] = ACTIONS(1456), - [sym_float_literal] = ACTIONS(1472), - [sym_rune_literal] = ACTIONS(1472), - [sym_pseudo_compile_time_identifier] = ACTIONS(1474), + [anon_sym_BANG] = ACTIONS(3094), + [anon_sym_go] = ACTIONS(3096), + [anon_sym_spawn] = ACTIONS(3098), + [anon_sym_json_DOTdecode] = ACTIONS(1450), + [anon_sym_LBRACK2] = ACTIONS(1827), + [anon_sym_TILDE] = ACTIONS(3090), + [anon_sym_CARET] = ACTIONS(3090), + [anon_sym_AMP] = ACTIONS(3100), + [anon_sym_LT_DASH] = ACTIONS(3102), + [sym_none] = ACTIONS(1458), + [sym_true] = ACTIONS(1458), + [sym_false] = ACTIONS(1458), + [sym_nil] = ACTIONS(1458), + [anon_sym_if] = ACTIONS(1833), + [anon_sym_DOLLARif] = ACTIONS(1462), + [anon_sym_match] = ACTIONS(1464), + [anon_sym_select] = ACTIONS(3104), + [anon_sym_lock] = ACTIONS(3106), + [anon_sym_rlock] = ACTIONS(3106), + [anon_sym_unsafe] = ACTIONS(1839), + [anon_sym_sql] = ACTIONS(1472), + [sym_int_literal] = ACTIONS(1458), + [sym_float_literal] = ACTIONS(1474), + [sym_rune_literal] = ACTIONS(1474), + [sym_pseudo_compile_time_identifier] = ACTIONS(1476), [anon_sym_shared] = ACTIONS(83), [anon_sym_map_LBRACK] = ACTIONS(85), [anon_sym_chan] = ACTIONS(87), [anon_sym_thread] = ACTIONS(89), [anon_sym_atomic] = ACTIONS(91), - [sym___double_quote] = ACTIONS(1478), - [sym___single_quote] = ACTIONS(1480), - [sym___c_double_quote] = ACTIONS(1482), - [sym___c_single_quote] = ACTIONS(1484), - [sym___r_double_quote] = ACTIONS(1486), - [sym___r_single_quote] = ACTIONS(1488), + [sym___double_quote] = ACTIONS(1480), + [sym___single_quote] = ACTIONS(1482), + [sym___c_double_quote] = ACTIONS(1484), + [sym___c_single_quote] = ACTIONS(1486), + [sym___r_double_quote] = ACTIONS(1488), + [sym___r_single_quote] = ACTIONS(1490), }, [644] = { [sym_line_comment] = STATE(644), [sym_block_comment] = STATE(644), - [sym__expression] = STATE(2274), - [sym__expression_without_blocks] = STATE(2300), - [sym__expression_with_blocks] = STATE(2300), - [sym_inc_expression] = STATE(2307), - [sym_dec_expression] = STATE(2307), - [sym_or_block_expression] = STATE(2307), - [sym_option_propagation_expression] = STATE(2307), - [sym_result_propagation_expression] = STATE(2307), - [sym_anon_struct_value_expression] = STATE(2380), - [sym_go_expression] = STATE(2307), - [sym_spawn_expression] = STATE(2307), - [sym_parenthesized_expression] = STATE(2307), - [sym_call_expression] = STATE(2307), - [sym_type_initializer] = STATE(2380), - [sym_function_literal] = STATE(2307), - [sym_reference_expression] = STATE(2311), - [sym_type_reference_expression] = STATE(3541), - [sym_unary_expression] = STATE(2307), - [sym_receive_expression] = STATE(2307), - [sym_binary_expression] = STATE(2307), - [sym_as_type_cast_expression] = STATE(2307), - [sym__max_group] = STATE(2307), - [sym_literal] = STATE(2292), - [sym_map_init_expression] = STATE(2380), - [sym_array_creation] = STATE(2307), - [sym_fixed_array_creation] = STATE(2307), - [sym_selector_expression] = STATE(2307), - [sym_index_expression] = STATE(2307), - [sym_slice_expression] = STATE(2307), - [sym_if_expression] = STATE(2380), - [sym_compile_time_if_expression] = STATE(2380), - [sym_is_expression] = STATE(2307), - [sym_in_expression] = STATE(2307), - [sym_enum_fetch] = STATE(2307), - [sym_match_expression] = STATE(2380), - [sym_select_expression] = STATE(2380), - [sym_lock_expression] = STATE(2380), - [sym_unsafe_expression] = STATE(2380), - [sym_sql_expression] = STATE(2380), - [sym_c_string_literal] = STATE(2308), - [sym_raw_string_literal] = STATE(2308), - [sym_interpreted_string_literal] = STATE(2308), - [sym_mutability_modifiers] = STATE(632), - [sym_plain_type] = STATE(4297), - [sym__plain_type_without_special] = STATE(2302), - [sym_anon_struct_type] = STATE(2303), - [sym_multi_return_type] = STATE(2302), - [sym_result_type] = STATE(2302), - [sym_option_type] = STATE(2302), - [sym_qualified_type] = STATE(3541), - [sym_fixed_array_type] = STATE(2303), - [sym_array_type] = STATE(2303), - [sym_pointer_type] = STATE(2303), - [sym_wrong_pointer_type] = STATE(2303), - [sym_map_type] = STATE(2303), - [sym_channel_type] = STATE(2303), - [sym_shared_type] = STATE(2303), - [sym_thread_type] = STATE(2303), - [sym_atomic_type] = STATE(2303), - [sym_generic_type] = STATE(2303), - [sym_function_type] = STATE(2303), - [sym_identifier] = ACTIONS(2189), + [sym__expression] = STATE(2734), + [sym__expression_without_blocks] = STATE(2347), + [sym__expression_with_blocks] = STATE(2347), + [sym_inc_expression] = STATE(2379), + [sym_dec_expression] = STATE(2379), + [sym_or_block_expression] = STATE(2379), + [sym_option_propagation_expression] = STATE(2379), + [sym_result_propagation_expression] = STATE(2379), + [sym_anon_struct_value_expression] = STATE(2378), + [sym_go_expression] = STATE(2379), + [sym_spawn_expression] = STATE(2379), + [sym_parenthesized_expression] = STATE(2379), + [sym_call_expression] = STATE(2379), + [sym_type_initializer] = STATE(2378), + [sym_function_literal] = STATE(2379), + [sym_reference_expression] = STATE(2377), + [sym_type_reference_expression] = STATE(3460), + [sym_unary_expression] = STATE(2379), + [sym_receive_expression] = STATE(2379), + [sym_binary_expression] = STATE(2379), + [sym_as_type_cast_expression] = STATE(2379), + [sym__max_group] = STATE(2379), + [sym_literal] = STATE(2392), + [sym_map_init_expression] = STATE(2378), + [sym_array_creation] = STATE(2379), + [sym_fixed_array_creation] = STATE(2379), + [sym_selector_expression] = STATE(2379), + [sym_index_expression] = STATE(2379), + [sym_slice_expression] = STATE(2379), + [sym_if_expression] = STATE(2378), + [sym_compile_time_if_expression] = STATE(2378), + [sym_is_expression] = STATE(2379), + [sym_in_expression] = STATE(2379), + [sym_enum_fetch] = STATE(2379), + [sym_match_expression] = STATE(2378), + [sym_select_expression] = STATE(2378), + [sym_lock_expression] = STATE(2378), + [sym_unsafe_expression] = STATE(2378), + [sym_sql_expression] = STATE(2378), + [sym_c_string_literal] = STATE(2401), + [sym_raw_string_literal] = STATE(2401), + [sym_interpreted_string_literal] = STATE(2401), + [sym_mutability_modifiers] = STATE(939), + [sym_plain_type] = STATE(4160), + [sym__plain_type_without_special] = STATE(2360), + [sym_anon_struct_type] = STATE(2362), + [sym_multi_return_type] = STATE(2360), + [sym_result_type] = STATE(2360), + [sym_option_type] = STATE(2360), + [sym_qualified_type] = STATE(3460), + [sym_fixed_array_type] = STATE(2362), + [sym_array_type] = STATE(2362), + [sym_pointer_type] = STATE(2362), + [sym_wrong_pointer_type] = STATE(2362), + [sym_map_type] = STATE(2362), + [sym_channel_type] = STATE(2362), + [sym_shared_type] = STATE(2362), + [sym_thread_type] = STATE(2362), + [sym_atomic_type] = STATE(2362), + [sym_generic_type] = STATE(2362), + [sym_function_type] = STATE(2362), + [sym_identifier] = ACTIONS(2477), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1428), - [anon_sym_LBRACE] = ACTIONS(1430), - [anon_sym_LPAREN] = ACTIONS(1432), - [anon_sym_fn] = ACTIONS(1434), - [anon_sym_PLUS] = ACTIONS(2191), - [anon_sym_DASH] = ACTIONS(2191), - [anon_sym_STAR] = ACTIONS(2193), - [anon_sym_struct] = ACTIONS(1440), + [anon_sym_DOT] = ACTIONS(1430), + [anon_sym_LBRACE] = ACTIONS(1432), + [anon_sym_LPAREN] = ACTIONS(1434), + [anon_sym_fn] = ACTIONS(1436), + [anon_sym_PLUS] = ACTIONS(2271), + [anon_sym_DASH] = ACTIONS(2271), + [anon_sym_STAR] = ACTIONS(3354), + [anon_sym_struct] = ACTIONS(1442), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(2195), - [anon_sym_go] = ACTIONS(2197), - [anon_sym_spawn] = ACTIONS(2199), - [anon_sym_json_DOTdecode] = ACTIONS(1448), - [anon_sym_LBRACK2] = ACTIONS(2201), - [anon_sym_TILDE] = ACTIONS(2191), - [anon_sym_CARET] = ACTIONS(2191), - [anon_sym_AMP] = ACTIONS(2203), - [anon_sym_LT_DASH] = ACTIONS(2205), - [sym_none] = ACTIONS(1456), - [sym_true] = ACTIONS(1456), - [sym_false] = ACTIONS(1456), - [sym_nil] = ACTIONS(1456), - [anon_sym_if] = ACTIONS(1827), - [anon_sym_DOLLARif] = ACTIONS(1460), - [anon_sym_match] = ACTIONS(1462), - [anon_sym_select] = ACTIONS(2207), - [anon_sym_lock] = ACTIONS(2209), - [anon_sym_rlock] = ACTIONS(2209), - [anon_sym_unsafe] = ACTIONS(1833), - [anon_sym_sql] = ACTIONS(1470), - [sym_int_literal] = ACTIONS(1456), - [sym_float_literal] = ACTIONS(1472), - [sym_rune_literal] = ACTIONS(1472), - [sym_pseudo_compile_time_identifier] = ACTIONS(1474), + [anon_sym_BANG] = ACTIONS(3356), + [anon_sym_go] = ACTIONS(2277), + [anon_sym_spawn] = ACTIONS(2279), + [anon_sym_json_DOTdecode] = ACTIONS(1450), + [anon_sym_LBRACK2] = ACTIONS(1452), + [anon_sym_TILDE] = ACTIONS(2271), + [anon_sym_CARET] = ACTIONS(2271), + [anon_sym_AMP] = ACTIONS(3358), + [anon_sym_LT_DASH] = ACTIONS(2283), + [sym_none] = ACTIONS(1458), + [sym_true] = ACTIONS(1458), + [sym_false] = ACTIONS(1458), + [sym_nil] = ACTIONS(1458), + [anon_sym_if] = ACTIONS(1833), + [anon_sym_DOLLARif] = ACTIONS(1462), + [anon_sym_match] = ACTIONS(1464), + [anon_sym_select] = ACTIONS(1466), + [anon_sym_lock] = ACTIONS(1468), + [anon_sym_rlock] = ACTIONS(1468), + [anon_sym_unsafe] = ACTIONS(1839), + [anon_sym_sql] = ACTIONS(1472), + [sym_int_literal] = ACTIONS(1458), + [sym_float_literal] = ACTIONS(1474), + [sym_rune_literal] = ACTIONS(1474), + [sym_pseudo_compile_time_identifier] = ACTIONS(1476), [anon_sym_shared] = ACTIONS(83), [anon_sym_map_LBRACK] = ACTIONS(85), [anon_sym_chan] = ACTIONS(87), [anon_sym_thread] = ACTIONS(89), [anon_sym_atomic] = ACTIONS(91), - [sym___double_quote] = ACTIONS(1478), - [sym___single_quote] = ACTIONS(1480), - [sym___c_double_quote] = ACTIONS(1482), - [sym___c_single_quote] = ACTIONS(1484), - [sym___r_double_quote] = ACTIONS(1486), - [sym___r_single_quote] = ACTIONS(1488), + [sym___double_quote] = ACTIONS(1480), + [sym___single_quote] = ACTIONS(1482), + [sym___c_double_quote] = ACTIONS(1484), + [sym___c_single_quote] = ACTIONS(1486), + [sym___r_double_quote] = ACTIONS(1488), + [sym___r_single_quote] = ACTIONS(1490), }, [645] = { [sym_line_comment] = STATE(645), [sym_block_comment] = STATE(645), - [sym__expression] = STATE(2473), - [sym__expression_without_blocks] = STATE(2300), - [sym__expression_with_blocks] = STATE(2300), - [sym_inc_expression] = STATE(2307), - [sym_dec_expression] = STATE(2307), - [sym_or_block_expression] = STATE(2307), - [sym_option_propagation_expression] = STATE(2307), - [sym_result_propagation_expression] = STATE(2307), - [sym_anon_struct_value_expression] = STATE(2380), - [sym_go_expression] = STATE(2307), - [sym_spawn_expression] = STATE(2307), - [sym_parenthesized_expression] = STATE(2307), - [sym_call_expression] = STATE(2307), - [sym_type_initializer] = STATE(2380), - [sym_function_literal] = STATE(2307), - [sym_reference_expression] = STATE(2311), - [sym_type_reference_expression] = STATE(3541), - [sym_unary_expression] = STATE(2307), - [sym_receive_expression] = STATE(2307), - [sym_binary_expression] = STATE(2307), - [sym_as_type_cast_expression] = STATE(2307), - [sym__max_group] = STATE(2307), - [sym_literal] = STATE(2292), - [sym_map_init_expression] = STATE(2380), - [sym_array_creation] = STATE(2307), - [sym_fixed_array_creation] = STATE(2307), - [sym_selector_expression] = STATE(2307), - [sym_index_expression] = STATE(2307), - [sym_slice_expression] = STATE(2307), - [sym_if_expression] = STATE(2380), - [sym_compile_time_if_expression] = STATE(2380), - [sym_is_expression] = STATE(2307), - [sym_in_expression] = STATE(2307), - [sym_enum_fetch] = STATE(2307), - [sym_match_expression] = STATE(2380), - [sym_select_expression] = STATE(2380), - [sym_lock_expression] = STATE(2380), - [sym_unsafe_expression] = STATE(2380), - [sym_sql_expression] = STATE(2380), - [sym_c_string_literal] = STATE(2308), - [sym_raw_string_literal] = STATE(2308), - [sym_interpreted_string_literal] = STATE(2308), - [sym_mutability_modifiers] = STATE(632), - [sym_plain_type] = STATE(4297), - [sym__plain_type_without_special] = STATE(2302), - [sym_anon_struct_type] = STATE(2303), - [sym_multi_return_type] = STATE(2302), - [sym_result_type] = STATE(2302), - [sym_option_type] = STATE(2302), - [sym_qualified_type] = STATE(3541), - [sym_fixed_array_type] = STATE(2303), - [sym_array_type] = STATE(2303), - [sym_pointer_type] = STATE(2303), - [sym_wrong_pointer_type] = STATE(2303), - [sym_map_type] = STATE(2303), - [sym_channel_type] = STATE(2303), - [sym_shared_type] = STATE(2303), - [sym_thread_type] = STATE(2303), - [sym_atomic_type] = STATE(2303), - [sym_generic_type] = STATE(2303), - [sym_function_type] = STATE(2303), - [sym_identifier] = ACTIONS(2189), + [sym__expression] = STATE(2830), + [sym__expression_without_blocks] = STATE(2347), + [sym__expression_with_blocks] = STATE(2347), + [sym_inc_expression] = STATE(2379), + [sym_dec_expression] = STATE(2379), + [sym_or_block_expression] = STATE(2379), + [sym_option_propagation_expression] = STATE(2379), + [sym_result_propagation_expression] = STATE(2379), + [sym_anon_struct_value_expression] = STATE(2378), + [sym_go_expression] = STATE(2379), + [sym_spawn_expression] = STATE(2379), + [sym_parenthesized_expression] = STATE(2379), + [sym_call_expression] = STATE(2379), + [sym_type_initializer] = STATE(2378), + [sym_function_literal] = STATE(2379), + [sym_reference_expression] = STATE(2933), + [sym_type_reference_expression] = STATE(3460), + [sym_unary_expression] = STATE(2379), + [sym_receive_expression] = STATE(2379), + [sym_binary_expression] = STATE(2379), + [sym_as_type_cast_expression] = STATE(2379), + [sym__max_group] = STATE(2379), + [sym_literal] = STATE(2392), + [sym_map_init_expression] = STATE(2378), + [sym_array_creation] = STATE(2379), + [sym_fixed_array_creation] = STATE(2379), + [sym_selector_expression] = STATE(2934), + [sym_index_expression] = STATE(2379), + [sym_slice_expression] = STATE(2379), + [sym_if_expression] = STATE(2378), + [sym_compile_time_if_expression] = STATE(2378), + [sym_is_expression] = STATE(2379), + [sym_in_expression] = STATE(2379), + [sym_enum_fetch] = STATE(2379), + [sym_match_expression] = STATE(2378), + [sym_select_expression] = STATE(2378), + [sym_lock_expression] = STATE(2378), + [sym_unsafe_expression] = STATE(2378), + [sym_sql_expression] = STATE(2378), + [sym_c_string_literal] = STATE(2401), + [sym_raw_string_literal] = STATE(2401), + [sym_interpreted_string_literal] = STATE(2401), + [sym_mutability_modifiers] = STATE(939), + [sym_plain_type] = STATE(4160), + [sym__plain_type_without_special] = STATE(2360), + [sym_anon_struct_type] = STATE(2362), + [sym_multi_return_type] = STATE(2360), + [sym_result_type] = STATE(2360), + [sym_option_type] = STATE(2360), + [sym_qualified_type] = STATE(3460), + [sym_fixed_array_type] = STATE(2362), + [sym_array_type] = STATE(2362), + [sym_pointer_type] = STATE(2362), + [sym_wrong_pointer_type] = STATE(2362), + [sym_map_type] = STATE(2362), + [sym_channel_type] = STATE(2362), + [sym_shared_type] = STATE(2362), + [sym_thread_type] = STATE(2362), + [sym_atomic_type] = STATE(2362), + [sym_generic_type] = STATE(2362), + [sym_function_type] = STATE(2362), + [sym_identifier] = ACTIONS(2477), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1428), - [anon_sym_LBRACE] = ACTIONS(1430), - [anon_sym_LPAREN] = ACTIONS(1432), - [anon_sym_fn] = ACTIONS(1434), - [anon_sym_PLUS] = ACTIONS(2191), - [anon_sym_DASH] = ACTIONS(2191), - [anon_sym_STAR] = ACTIONS(2193), - [anon_sym_struct] = ACTIONS(1440), + [anon_sym_DOT] = ACTIONS(1430), + [anon_sym_LBRACE] = ACTIONS(1432), + [anon_sym_LPAREN] = ACTIONS(1434), + [anon_sym_fn] = ACTIONS(1436), + [anon_sym_PLUS] = ACTIONS(1438), + [anon_sym_DASH] = ACTIONS(1438), + [anon_sym_STAR] = ACTIONS(1440), + [anon_sym_struct] = ACTIONS(1442), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(2195), - [anon_sym_go] = ACTIONS(2197), - [anon_sym_spawn] = ACTIONS(2199), - [anon_sym_json_DOTdecode] = ACTIONS(1448), - [anon_sym_LBRACK2] = ACTIONS(2201), - [anon_sym_TILDE] = ACTIONS(2191), - [anon_sym_CARET] = ACTIONS(2191), - [anon_sym_AMP] = ACTIONS(2203), - [anon_sym_LT_DASH] = ACTIONS(2205), - [sym_none] = ACTIONS(1456), - [sym_true] = ACTIONS(1456), - [sym_false] = ACTIONS(1456), - [sym_nil] = ACTIONS(1456), - [anon_sym_if] = ACTIONS(1827), - [anon_sym_DOLLARif] = ACTIONS(1460), - [anon_sym_match] = ACTIONS(1462), - [anon_sym_select] = ACTIONS(2207), - [anon_sym_lock] = ACTIONS(2209), - [anon_sym_rlock] = ACTIONS(2209), - [anon_sym_unsafe] = ACTIONS(1833), - [anon_sym_sql] = ACTIONS(1470), - [sym_int_literal] = ACTIONS(1456), - [sym_float_literal] = ACTIONS(1472), - [sym_rune_literal] = ACTIONS(1472), - [sym_pseudo_compile_time_identifier] = ACTIONS(1474), + [anon_sym_BANG] = ACTIONS(1444), + [anon_sym_go] = ACTIONS(1446), + [anon_sym_spawn] = ACTIONS(1448), + [anon_sym_json_DOTdecode] = ACTIONS(1450), + [anon_sym_LBRACK2] = ACTIONS(1452), + [anon_sym_TILDE] = ACTIONS(1438), + [anon_sym_CARET] = ACTIONS(1438), + [anon_sym_AMP] = ACTIONS(1454), + [anon_sym_LT_DASH] = ACTIONS(1456), + [sym_none] = ACTIONS(1458), + [sym_true] = ACTIONS(1458), + [sym_false] = ACTIONS(1458), + [sym_nil] = ACTIONS(1458), + [anon_sym_if] = ACTIONS(1833), + [anon_sym_DOLLARif] = ACTIONS(1462), + [anon_sym_match] = ACTIONS(1464), + [anon_sym_select] = ACTIONS(1466), + [anon_sym_lock] = ACTIONS(1468), + [anon_sym_rlock] = ACTIONS(1468), + [anon_sym_unsafe] = ACTIONS(1839), + [anon_sym_sql] = ACTIONS(1472), + [sym_int_literal] = ACTIONS(1458), + [sym_float_literal] = ACTIONS(1474), + [sym_rune_literal] = ACTIONS(1474), + [sym_pseudo_compile_time_identifier] = ACTIONS(1476), [anon_sym_shared] = ACTIONS(83), [anon_sym_map_LBRACK] = ACTIONS(85), [anon_sym_chan] = ACTIONS(87), [anon_sym_thread] = ACTIONS(89), [anon_sym_atomic] = ACTIONS(91), - [sym___double_quote] = ACTIONS(1478), - [sym___single_quote] = ACTIONS(1480), - [sym___c_double_quote] = ACTIONS(1482), - [sym___c_single_quote] = ACTIONS(1484), - [sym___r_double_quote] = ACTIONS(1486), - [sym___r_single_quote] = ACTIONS(1488), + [sym___double_quote] = ACTIONS(1480), + [sym___single_quote] = ACTIONS(1482), + [sym___c_double_quote] = ACTIONS(1484), + [sym___c_single_quote] = ACTIONS(1486), + [sym___r_double_quote] = ACTIONS(1488), + [sym___r_single_quote] = ACTIONS(1490), }, [646] = { [sym_line_comment] = STATE(646), [sym_block_comment] = STATE(646), - [sym__expression] = STATE(2468), - [sym__expression_without_blocks] = STATE(2300), - [sym__expression_with_blocks] = STATE(2300), - [sym_inc_expression] = STATE(2307), - [sym_dec_expression] = STATE(2307), - [sym_or_block_expression] = STATE(2307), - [sym_option_propagation_expression] = STATE(2307), - [sym_result_propagation_expression] = STATE(2307), - [sym_anon_struct_value_expression] = STATE(2380), - [sym_go_expression] = STATE(2307), - [sym_spawn_expression] = STATE(2307), - [sym_parenthesized_expression] = STATE(2307), - [sym_call_expression] = STATE(2307), - [sym_type_initializer] = STATE(2380), - [sym_function_literal] = STATE(2307), - [sym_reference_expression] = STATE(2311), - [sym_type_reference_expression] = STATE(3541), - [sym_unary_expression] = STATE(2307), - [sym_receive_expression] = STATE(2307), - [sym_binary_expression] = STATE(2307), - [sym_as_type_cast_expression] = STATE(2307), - [sym__max_group] = STATE(2307), - [sym_literal] = STATE(2292), - [sym_map_init_expression] = STATE(2380), - [sym_array_creation] = STATE(2307), - [sym_fixed_array_creation] = STATE(2307), - [sym_selector_expression] = STATE(2307), - [sym_index_expression] = STATE(2307), - [sym_slice_expression] = STATE(2307), - [sym_if_expression] = STATE(2380), - [sym_compile_time_if_expression] = STATE(2380), - [sym_is_expression] = STATE(2307), - [sym_in_expression] = STATE(2307), - [sym_enum_fetch] = STATE(2307), - [sym_match_expression] = STATE(2380), - [sym_select_expression] = STATE(2380), - [sym_lock_expression] = STATE(2380), - [sym_unsafe_expression] = STATE(2380), - [sym_sql_expression] = STATE(2380), - [sym_c_string_literal] = STATE(2308), - [sym_raw_string_literal] = STATE(2308), - [sym_interpreted_string_literal] = STATE(2308), - [sym_mutability_modifiers] = STATE(632), - [sym_plain_type] = STATE(4297), - [sym__plain_type_without_special] = STATE(2302), - [sym_anon_struct_type] = STATE(2303), - [sym_multi_return_type] = STATE(2302), - [sym_result_type] = STATE(2302), - [sym_option_type] = STATE(2302), - [sym_qualified_type] = STATE(3541), - [sym_fixed_array_type] = STATE(2303), - [sym_array_type] = STATE(2303), - [sym_pointer_type] = STATE(2303), - [sym_wrong_pointer_type] = STATE(2303), - [sym_map_type] = STATE(2303), - [sym_channel_type] = STATE(2303), - [sym_shared_type] = STATE(2303), - [sym_thread_type] = STATE(2303), - [sym_atomic_type] = STATE(2303), - [sym_generic_type] = STATE(2303), - [sym_function_type] = STATE(2303), - [sym_identifier] = ACTIONS(2189), + [sym__expression] = STATE(2496), + [sym__expression_without_blocks] = STATE(2347), + [sym__expression_with_blocks] = STATE(2347), + [sym_inc_expression] = STATE(2379), + [sym_dec_expression] = STATE(2379), + [sym_or_block_expression] = STATE(2379), + [sym_option_propagation_expression] = STATE(2379), + [sym_result_propagation_expression] = STATE(2379), + [sym_anon_struct_value_expression] = STATE(2378), + [sym_go_expression] = STATE(2379), + [sym_spawn_expression] = STATE(2379), + [sym_parenthesized_expression] = STATE(2379), + [sym_call_expression] = STATE(2379), + [sym_type_initializer] = STATE(2378), + [sym_function_literal] = STATE(2379), + [sym_reference_expression] = STATE(2377), + [sym_type_reference_expression] = STATE(3460), + [sym_unary_expression] = STATE(2379), + [sym_receive_expression] = STATE(2379), + [sym_binary_expression] = STATE(2379), + [sym_as_type_cast_expression] = STATE(2379), + [sym__max_group] = STATE(2379), + [sym_literal] = STATE(2392), + [sym_map_init_expression] = STATE(2378), + [sym_array_creation] = STATE(2379), + [sym_fixed_array_creation] = STATE(2379), + [sym_selector_expression] = STATE(2379), + [sym_index_expression] = STATE(2379), + [sym_slice_expression] = STATE(2379), + [sym_if_expression] = STATE(2378), + [sym_compile_time_if_expression] = STATE(2378), + [sym_is_expression] = STATE(2379), + [sym_in_expression] = STATE(2379), + [sym_enum_fetch] = STATE(2379), + [sym_match_expression] = STATE(2378), + [sym_select_expression] = STATE(2378), + [sym_lock_expression] = STATE(2378), + [sym_unsafe_expression] = STATE(2378), + [sym_sql_expression] = STATE(2378), + [sym_c_string_literal] = STATE(2401), + [sym_raw_string_literal] = STATE(2401), + [sym_interpreted_string_literal] = STATE(2401), + [sym_mutability_modifiers] = STATE(553), + [sym_plain_type] = STATE(4160), + [sym__plain_type_without_special] = STATE(2360), + [sym_anon_struct_type] = STATE(2362), + [sym_multi_return_type] = STATE(2360), + [sym_result_type] = STATE(2360), + [sym_option_type] = STATE(2360), + [sym_qualified_type] = STATE(3460), + [sym_fixed_array_type] = STATE(2362), + [sym_array_type] = STATE(2362), + [sym_pointer_type] = STATE(2362), + [sym_wrong_pointer_type] = STATE(2362), + [sym_map_type] = STATE(2362), + [sym_channel_type] = STATE(2362), + [sym_shared_type] = STATE(2362), + [sym_thread_type] = STATE(2362), + [sym_atomic_type] = STATE(2362), + [sym_generic_type] = STATE(2362), + [sym_function_type] = STATE(2362), + [sym_identifier] = ACTIONS(2477), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1428), - [anon_sym_LBRACE] = ACTIONS(1430), - [anon_sym_LPAREN] = ACTIONS(1432), - [anon_sym_fn] = ACTIONS(1434), - [anon_sym_PLUS] = ACTIONS(2191), - [anon_sym_DASH] = ACTIONS(2191), - [anon_sym_STAR] = ACTIONS(2193), - [anon_sym_struct] = ACTIONS(1440), + [anon_sym_DOT] = ACTIONS(1430), + [anon_sym_LBRACE] = ACTIONS(1432), + [anon_sym_LPAREN] = ACTIONS(1434), + [anon_sym_fn] = ACTIONS(1436), + [anon_sym_PLUS] = ACTIONS(2479), + [anon_sym_DASH] = ACTIONS(2479), + [anon_sym_STAR] = ACTIONS(2481), + [anon_sym_struct] = ACTIONS(1442), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(2195), - [anon_sym_go] = ACTIONS(2197), - [anon_sym_spawn] = ACTIONS(2199), - [anon_sym_json_DOTdecode] = ACTIONS(1448), - [anon_sym_LBRACK2] = ACTIONS(2201), - [anon_sym_TILDE] = ACTIONS(2191), - [anon_sym_CARET] = ACTIONS(2191), - [anon_sym_AMP] = ACTIONS(2203), - [anon_sym_LT_DASH] = ACTIONS(2205), - [sym_none] = ACTIONS(1456), - [sym_true] = ACTIONS(1456), - [sym_false] = ACTIONS(1456), - [sym_nil] = ACTIONS(1456), - [anon_sym_if] = ACTIONS(1827), - [anon_sym_DOLLARif] = ACTIONS(1460), - [anon_sym_match] = ACTIONS(1462), - [anon_sym_select] = ACTIONS(2207), - [anon_sym_lock] = ACTIONS(2209), - [anon_sym_rlock] = ACTIONS(2209), - [anon_sym_unsafe] = ACTIONS(1833), - [anon_sym_sql] = ACTIONS(1470), - [sym_int_literal] = ACTIONS(1456), - [sym_float_literal] = ACTIONS(1472), - [sym_rune_literal] = ACTIONS(1472), - [sym_pseudo_compile_time_identifier] = ACTIONS(1474), + [anon_sym_BANG] = ACTIONS(2483), + [anon_sym_go] = ACTIONS(2485), + [anon_sym_spawn] = ACTIONS(2487), + [anon_sym_json_DOTdecode] = ACTIONS(1450), + [anon_sym_LBRACK2] = ACTIONS(2489), + [anon_sym_TILDE] = ACTIONS(2479), + [anon_sym_CARET] = ACTIONS(2479), + [anon_sym_AMP] = ACTIONS(2491), + [anon_sym_LT_DASH] = ACTIONS(2493), + [sym_none] = ACTIONS(1458), + [sym_true] = ACTIONS(1458), + [sym_false] = ACTIONS(1458), + [sym_nil] = ACTIONS(1458), + [anon_sym_if] = ACTIONS(1833), + [anon_sym_DOLLARif] = ACTIONS(1462), + [anon_sym_match] = ACTIONS(1464), + [anon_sym_select] = ACTIONS(2495), + [anon_sym_lock] = ACTIONS(2497), + [anon_sym_rlock] = ACTIONS(2497), + [anon_sym_unsafe] = ACTIONS(1839), + [anon_sym_sql] = ACTIONS(1472), + [sym_int_literal] = ACTIONS(1458), + [sym_float_literal] = ACTIONS(1474), + [sym_rune_literal] = ACTIONS(1474), + [sym_pseudo_compile_time_identifier] = ACTIONS(1476), [anon_sym_shared] = ACTIONS(83), [anon_sym_map_LBRACK] = ACTIONS(85), [anon_sym_chan] = ACTIONS(87), [anon_sym_thread] = ACTIONS(89), [anon_sym_atomic] = ACTIONS(91), - [sym___double_quote] = ACTIONS(1478), - [sym___single_quote] = ACTIONS(1480), - [sym___c_double_quote] = ACTIONS(1482), - [sym___c_single_quote] = ACTIONS(1484), - [sym___r_double_quote] = ACTIONS(1486), - [sym___r_single_quote] = ACTIONS(1488), + [sym___double_quote] = ACTIONS(1480), + [sym___single_quote] = ACTIONS(1482), + [sym___c_double_quote] = ACTIONS(1484), + [sym___c_single_quote] = ACTIONS(1486), + [sym___r_double_quote] = ACTIONS(1488), + [sym___r_single_quote] = ACTIONS(1490), }, [647] = { [sym_line_comment] = STATE(647), [sym_block_comment] = STATE(647), - [sym__expression] = STATE(2461), - [sym__expression_without_blocks] = STATE(2300), - [sym__expression_with_blocks] = STATE(2300), - [sym_inc_expression] = STATE(2307), - [sym_dec_expression] = STATE(2307), - [sym_or_block_expression] = STATE(2307), - [sym_option_propagation_expression] = STATE(2307), - [sym_result_propagation_expression] = STATE(2307), - [sym_anon_struct_value_expression] = STATE(2380), - [sym_go_expression] = STATE(2307), - [sym_spawn_expression] = STATE(2307), - [sym_parenthesized_expression] = STATE(2307), - [sym_call_expression] = STATE(2307), - [sym_type_initializer] = STATE(2380), - [sym_function_literal] = STATE(2307), - [sym_reference_expression] = STATE(2311), - [sym_type_reference_expression] = STATE(3541), - [sym_unary_expression] = STATE(2307), - [sym_receive_expression] = STATE(2307), - [sym_binary_expression] = STATE(2307), - [sym_as_type_cast_expression] = STATE(2307), - [sym__max_group] = STATE(2307), - [sym_literal] = STATE(2292), - [sym_map_init_expression] = STATE(2380), - [sym_array_creation] = STATE(2307), - [sym_fixed_array_creation] = STATE(2307), - [sym_selector_expression] = STATE(2307), - [sym_index_expression] = STATE(2307), - [sym_slice_expression] = STATE(2307), - [sym_if_expression] = STATE(2380), - [sym_compile_time_if_expression] = STATE(2380), - [sym_is_expression] = STATE(2307), - [sym_in_expression] = STATE(2307), - [sym_enum_fetch] = STATE(2307), - [sym_match_expression] = STATE(2380), - [sym_select_expression] = STATE(2380), - [sym_lock_expression] = STATE(2380), - [sym_unsafe_expression] = STATE(2380), - [sym_sql_expression] = STATE(2380), - [sym_c_string_literal] = STATE(2308), - [sym_raw_string_literal] = STATE(2308), - [sym_interpreted_string_literal] = STATE(2308), - [sym_mutability_modifiers] = STATE(632), - [sym_plain_type] = STATE(4297), - [sym__plain_type_without_special] = STATE(2302), - [sym_anon_struct_type] = STATE(2303), - [sym_multi_return_type] = STATE(2302), - [sym_result_type] = STATE(2302), - [sym_option_type] = STATE(2302), - [sym_qualified_type] = STATE(3541), - [sym_fixed_array_type] = STATE(2303), - [sym_array_type] = STATE(2303), - [sym_pointer_type] = STATE(2303), - [sym_wrong_pointer_type] = STATE(2303), - [sym_map_type] = STATE(2303), - [sym_channel_type] = STATE(2303), - [sym_shared_type] = STATE(2303), - [sym_thread_type] = STATE(2303), - [sym_atomic_type] = STATE(2303), - [sym_generic_type] = STATE(2303), - [sym_function_type] = STATE(2303), - [sym_identifier] = ACTIONS(2189), - [anon_sym_SLASH_SLASH] = ACTIONS(3), - [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1428), - [anon_sym_LBRACE] = ACTIONS(1430), - [anon_sym_LPAREN] = ACTIONS(1432), - [anon_sym_fn] = ACTIONS(1434), - [anon_sym_PLUS] = ACTIONS(2191), - [anon_sym_DASH] = ACTIONS(2191), - [anon_sym_STAR] = ACTIONS(2193), - [anon_sym_struct] = ACTIONS(1440), - [anon_sym_mut] = ACTIONS(41), - [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(2195), - [anon_sym_go] = ACTIONS(2197), - [anon_sym_spawn] = ACTIONS(2199), - [anon_sym_json_DOTdecode] = ACTIONS(1448), - [anon_sym_LBRACK2] = ACTIONS(2201), - [anon_sym_TILDE] = ACTIONS(2191), - [anon_sym_CARET] = ACTIONS(2191), - [anon_sym_AMP] = ACTIONS(2203), - [anon_sym_LT_DASH] = ACTIONS(2205), - [sym_none] = ACTIONS(1456), - [sym_true] = ACTIONS(1456), - [sym_false] = ACTIONS(1456), - [sym_nil] = ACTIONS(1456), - [anon_sym_if] = ACTIONS(1827), - [anon_sym_DOLLARif] = ACTIONS(1460), - [anon_sym_match] = ACTIONS(1462), - [anon_sym_select] = ACTIONS(2207), - [anon_sym_lock] = ACTIONS(2209), - [anon_sym_rlock] = ACTIONS(2209), - [anon_sym_unsafe] = ACTIONS(1833), - [anon_sym_sql] = ACTIONS(1470), - [sym_int_literal] = ACTIONS(1456), - [sym_float_literal] = ACTIONS(1472), - [sym_rune_literal] = ACTIONS(1472), - [sym_pseudo_compile_time_identifier] = ACTIONS(1474), - [anon_sym_shared] = ACTIONS(83), - [anon_sym_map_LBRACK] = ACTIONS(85), - [anon_sym_chan] = ACTIONS(87), - [anon_sym_thread] = ACTIONS(89), - [anon_sym_atomic] = ACTIONS(91), - [sym___double_quote] = ACTIONS(1478), - [sym___single_quote] = ACTIONS(1480), - [sym___c_double_quote] = ACTIONS(1482), - [sym___c_single_quote] = ACTIONS(1484), - [sym___r_double_quote] = ACTIONS(1486), - [sym___r_single_quote] = ACTIONS(1488), - }, - [648] = { - [sym_line_comment] = STATE(648), - [sym_block_comment] = STATE(648), - [sym__expression] = STATE(2478), - [sym__expression_without_blocks] = STATE(2300), - [sym__expression_with_blocks] = STATE(2300), - [sym_inc_expression] = STATE(2307), - [sym_dec_expression] = STATE(2307), - [sym_or_block_expression] = STATE(2307), - [sym_option_propagation_expression] = STATE(2307), - [sym_result_propagation_expression] = STATE(2307), - [sym_anon_struct_value_expression] = STATE(2380), - [sym_go_expression] = STATE(2307), - [sym_spawn_expression] = STATE(2307), - [sym_parenthesized_expression] = STATE(2307), - [sym_call_expression] = STATE(2307), - [sym_type_initializer] = STATE(2380), - [sym_function_literal] = STATE(2307), - [sym_reference_expression] = STATE(2311), - [sym_type_reference_expression] = STATE(3541), - [sym_unary_expression] = STATE(2307), - [sym_receive_expression] = STATE(2307), - [sym_binary_expression] = STATE(2307), - [sym_as_type_cast_expression] = STATE(2307), - [sym__max_group] = STATE(2307), - [sym_literal] = STATE(2292), - [sym_map_init_expression] = STATE(2380), - [sym_array_creation] = STATE(2307), - [sym_fixed_array_creation] = STATE(2307), - [sym_selector_expression] = STATE(2307), - [sym_index_expression] = STATE(2307), - [sym_slice_expression] = STATE(2307), - [sym_if_expression] = STATE(2380), - [sym_compile_time_if_expression] = STATE(2380), - [sym_is_expression] = STATE(2307), - [sym_in_expression] = STATE(2307), - [sym_enum_fetch] = STATE(2307), - [sym_match_expression] = STATE(2380), - [sym_select_expression] = STATE(2380), - [sym_lock_expression] = STATE(2380), - [sym_unsafe_expression] = STATE(2380), - [sym_sql_expression] = STATE(2380), - [sym_c_string_literal] = STATE(2308), - [sym_raw_string_literal] = STATE(2308), - [sym_interpreted_string_literal] = STATE(2308), - [sym_mutability_modifiers] = STATE(632), - [sym_plain_type] = STATE(4297), - [sym__plain_type_without_special] = STATE(2302), - [sym_anon_struct_type] = STATE(2303), - [sym_multi_return_type] = STATE(2302), - [sym_result_type] = STATE(2302), - [sym_option_type] = STATE(2302), - [sym_qualified_type] = STATE(3541), - [sym_fixed_array_type] = STATE(2303), - [sym_array_type] = STATE(2303), - [sym_pointer_type] = STATE(2303), - [sym_wrong_pointer_type] = STATE(2303), - [sym_map_type] = STATE(2303), - [sym_channel_type] = STATE(2303), - [sym_shared_type] = STATE(2303), - [sym_thread_type] = STATE(2303), - [sym_atomic_type] = STATE(2303), - [sym_generic_type] = STATE(2303), - [sym_function_type] = STATE(2303), - [sym_identifier] = ACTIONS(2189), - [anon_sym_SLASH_SLASH] = ACTIONS(3), - [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1428), - [anon_sym_LBRACE] = ACTIONS(1430), - [anon_sym_LPAREN] = ACTIONS(1432), - [anon_sym_fn] = ACTIONS(1434), - [anon_sym_PLUS] = ACTIONS(2191), - [anon_sym_DASH] = ACTIONS(2191), - [anon_sym_STAR] = ACTIONS(2193), - [anon_sym_struct] = ACTIONS(1440), - [anon_sym_mut] = ACTIONS(41), - [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(2195), - [anon_sym_go] = ACTIONS(2197), - [anon_sym_spawn] = ACTIONS(2199), - [anon_sym_json_DOTdecode] = ACTIONS(1448), - [anon_sym_LBRACK2] = ACTIONS(2201), - [anon_sym_TILDE] = ACTIONS(2191), - [anon_sym_CARET] = ACTIONS(2191), - [anon_sym_AMP] = ACTIONS(2203), - [anon_sym_LT_DASH] = ACTIONS(2205), - [sym_none] = ACTIONS(1456), - [sym_true] = ACTIONS(1456), - [sym_false] = ACTIONS(1456), - [sym_nil] = ACTIONS(1456), - [anon_sym_if] = ACTIONS(1827), - [anon_sym_DOLLARif] = ACTIONS(1460), - [anon_sym_match] = ACTIONS(1462), - [anon_sym_select] = ACTIONS(2207), - [anon_sym_lock] = ACTIONS(2209), - [anon_sym_rlock] = ACTIONS(2209), - [anon_sym_unsafe] = ACTIONS(1833), - [anon_sym_sql] = ACTIONS(1470), - [sym_int_literal] = ACTIONS(1456), - [sym_float_literal] = ACTIONS(1472), - [sym_rune_literal] = ACTIONS(1472), - [sym_pseudo_compile_time_identifier] = ACTIONS(1474), - [anon_sym_shared] = ACTIONS(83), - [anon_sym_map_LBRACK] = ACTIONS(85), - [anon_sym_chan] = ACTIONS(87), - [anon_sym_thread] = ACTIONS(89), - [anon_sym_atomic] = ACTIONS(91), - [sym___double_quote] = ACTIONS(1478), - [sym___single_quote] = ACTIONS(1480), - [sym___c_double_quote] = ACTIONS(1482), - [sym___c_single_quote] = ACTIONS(1484), - [sym___r_double_quote] = ACTIONS(1486), - [sym___r_single_quote] = ACTIONS(1488), - }, - [649] = { - [sym_line_comment] = STATE(649), - [sym_block_comment] = STATE(649), - [sym__expression] = STATE(217), - [sym__expression_without_blocks] = STATE(442), - [sym__expression_with_blocks] = STATE(442), - [sym_inc_expression] = STATE(439), - [sym_dec_expression] = STATE(439), - [sym_or_block_expression] = STATE(439), - [sym_option_propagation_expression] = STATE(439), - [sym_result_propagation_expression] = STATE(439), - [sym_anon_struct_value_expression] = STATE(438), - [sym_go_expression] = STATE(439), - [sym_spawn_expression] = STATE(439), - [sym_parenthesized_expression] = STATE(439), - [sym_call_expression] = STATE(439), - [sym_type_initializer] = STATE(438), - [sym_function_literal] = STATE(439), - [sym_reference_expression] = STATE(437), - [sym_type_reference_expression] = STATE(3541), - [sym_unary_expression] = STATE(439), - [sym_receive_expression] = STATE(439), - [sym_binary_expression] = STATE(439), - [sym_as_type_cast_expression] = STATE(439), - [sym__max_group] = STATE(439), - [sym_literal] = STATE(495), - [sym_map_init_expression] = STATE(438), - [sym_array_creation] = STATE(439), - [sym_fixed_array_creation] = STATE(439), - [sym_selector_expression] = STATE(439), - [sym_index_expression] = STATE(439), - [sym_slice_expression] = STATE(439), - [sym_if_expression] = STATE(438), - [sym_compile_time_if_expression] = STATE(438), - [sym_is_expression] = STATE(439), - [sym_in_expression] = STATE(439), - [sym_enum_fetch] = STATE(439), - [sym_match_expression] = STATE(438), - [sym_select_expression] = STATE(438), - [sym_lock_expression] = STATE(438), - [sym_unsafe_expression] = STATE(438), - [sym_sql_expression] = STATE(438), - [sym_c_string_literal] = STATE(496), - [sym_raw_string_literal] = STATE(496), - [sym_interpreted_string_literal] = STATE(496), - [sym_mutability_modifiers] = STATE(862), - [sym_plain_type] = STATE(4140), - [sym__plain_type_without_special] = STATE(2302), - [sym_anon_struct_type] = STATE(2303), - [sym_multi_return_type] = STATE(2302), - [sym_result_type] = STATE(2302), - [sym_option_type] = STATE(2302), - [sym_qualified_type] = STATE(3541), - [sym_fixed_array_type] = STATE(2303), - [sym_array_type] = STATE(2303), - [sym_pointer_type] = STATE(2303), - [sym_wrong_pointer_type] = STATE(2303), - [sym_map_type] = STATE(2303), - [sym_channel_type] = STATE(2303), - [sym_shared_type] = STATE(2303), - [sym_thread_type] = STATE(2303), - [sym_atomic_type] = STATE(2303), - [sym_generic_type] = STATE(2303), - [sym_function_type] = STATE(2303), - [sym_identifier] = ACTIONS(3096), + [sym__expression] = STATE(222), + [sym__expression_without_blocks] = STATE(401), + [sym__expression_with_blocks] = STATE(401), + [sym_inc_expression] = STATE(399), + [sym_dec_expression] = STATE(399), + [sym_or_block_expression] = STATE(399), + [sym_option_propagation_expression] = STATE(399), + [sym_result_propagation_expression] = STATE(399), + [sym_anon_struct_value_expression] = STATE(395), + [sym_go_expression] = STATE(399), + [sym_spawn_expression] = STATE(399), + [sym_parenthesized_expression] = STATE(399), + [sym_call_expression] = STATE(399), + [sym_type_initializer] = STATE(395), + [sym_function_literal] = STATE(399), + [sym_reference_expression] = STATE(393), + [sym_type_reference_expression] = STATE(3460), + [sym_unary_expression] = STATE(399), + [sym_receive_expression] = STATE(399), + [sym_binary_expression] = STATE(399), + [sym_as_type_cast_expression] = STATE(399), + [sym__max_group] = STATE(399), + [sym_literal] = STATE(455), + [sym_map_init_expression] = STATE(395), + [sym_array_creation] = STATE(399), + [sym_fixed_array_creation] = STATE(399), + [sym_selector_expression] = STATE(399), + [sym_index_expression] = STATE(399), + [sym_slice_expression] = STATE(399), + [sym_if_expression] = STATE(395), + [sym_compile_time_if_expression] = STATE(395), + [sym_is_expression] = STATE(399), + [sym_in_expression] = STATE(399), + [sym_enum_fetch] = STATE(399), + [sym_match_expression] = STATE(395), + [sym_select_expression] = STATE(395), + [sym_lock_expression] = STATE(395), + [sym_unsafe_expression] = STATE(395), + [sym_sql_expression] = STATE(395), + [sym_c_string_literal] = STATE(479), + [sym_raw_string_literal] = STATE(479), + [sym_interpreted_string_literal] = STATE(479), + [sym_mutability_modifiers] = STATE(845), + [sym_plain_type] = STATE(4069), + [sym__plain_type_without_special] = STATE(2360), + [sym_anon_struct_type] = STATE(2362), + [sym_multi_return_type] = STATE(2360), + [sym_result_type] = STATE(2360), + [sym_option_type] = STATE(2360), + [sym_qualified_type] = STATE(3460), + [sym_fixed_array_type] = STATE(2362), + [sym_array_type] = STATE(2362), + [sym_pointer_type] = STATE(2362), + [sym_wrong_pointer_type] = STATE(2362), + [sym_map_type] = STATE(2362), + [sym_channel_type] = STATE(2362), + [sym_shared_type] = STATE(2362), + [sym_thread_type] = STATE(2362), + [sym_atomic_type] = STATE(2362), + [sym_generic_type] = STATE(2362), + [sym_function_type] = STATE(2362), + [sym_identifier] = ACTIONS(3184), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), [anon_sym_DOT] = ACTIONS(17), - [anon_sym_LBRACE] = ACTIONS(3098), + [anon_sym_LBRACE] = ACTIONS(3186), [anon_sym_LPAREN] = ACTIONS(23), [anon_sym_fn] = ACTIONS(485), [anon_sym_PLUS] = ACTIONS(31), @@ -97953,2144 +97745,2258 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym___r_double_quote] = ACTIONS(123), [sym___r_single_quote] = ACTIONS(125), }, + [648] = { + [sym_line_comment] = STATE(648), + [sym_block_comment] = STATE(648), + [sym__expression] = STATE(2265), + [sym__expression_without_blocks] = STATE(2347), + [sym__expression_with_blocks] = STATE(2347), + [sym_inc_expression] = STATE(2379), + [sym_dec_expression] = STATE(2379), + [sym_or_block_expression] = STATE(2379), + [sym_option_propagation_expression] = STATE(2379), + [sym_result_propagation_expression] = STATE(2379), + [sym_anon_struct_value_expression] = STATE(2378), + [sym_go_expression] = STATE(2379), + [sym_spawn_expression] = STATE(2379), + [sym_parenthesized_expression] = STATE(2379), + [sym_call_expression] = STATE(2379), + [sym_type_initializer] = STATE(2378), + [sym_function_literal] = STATE(2379), + [sym_reference_expression] = STATE(2377), + [sym_type_reference_expression] = STATE(3460), + [sym_unary_expression] = STATE(2379), + [sym_receive_expression] = STATE(2379), + [sym_binary_expression] = STATE(2379), + [sym_as_type_cast_expression] = STATE(2379), + [sym__max_group] = STATE(2379), + [sym_literal] = STATE(2392), + [sym_map_init_expression] = STATE(2378), + [sym_array_creation] = STATE(2379), + [sym_fixed_array_creation] = STATE(2379), + [sym_selector_expression] = STATE(2379), + [sym_index_expression] = STATE(2379), + [sym_slice_expression] = STATE(2379), + [sym_if_expression] = STATE(2378), + [sym_compile_time_if_expression] = STATE(2378), + [sym_is_expression] = STATE(2379), + [sym_in_expression] = STATE(2379), + [sym_enum_fetch] = STATE(2379), + [sym_match_expression] = STATE(2378), + [sym_select_expression] = STATE(2378), + [sym_lock_expression] = STATE(2378), + [sym_unsafe_expression] = STATE(2378), + [sym_sql_expression] = STATE(2378), + [sym_c_string_literal] = STATE(2401), + [sym_raw_string_literal] = STATE(2401), + [sym_interpreted_string_literal] = STATE(2401), + [sym_mutability_modifiers] = STATE(553), + [sym_plain_type] = STATE(4160), + [sym__plain_type_without_special] = STATE(2360), + [sym_anon_struct_type] = STATE(2362), + [sym_multi_return_type] = STATE(2360), + [sym_result_type] = STATE(2360), + [sym_option_type] = STATE(2360), + [sym_qualified_type] = STATE(3460), + [sym_fixed_array_type] = STATE(2362), + [sym_array_type] = STATE(2362), + [sym_pointer_type] = STATE(2362), + [sym_wrong_pointer_type] = STATE(2362), + [sym_map_type] = STATE(2362), + [sym_channel_type] = STATE(2362), + [sym_shared_type] = STATE(2362), + [sym_thread_type] = STATE(2362), + [sym_atomic_type] = STATE(2362), + [sym_generic_type] = STATE(2362), + [sym_function_type] = STATE(2362), + [sym_identifier] = ACTIONS(2477), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(1430), + [anon_sym_LBRACE] = ACTIONS(1432), + [anon_sym_LPAREN] = ACTIONS(1434), + [anon_sym_fn] = ACTIONS(1436), + [anon_sym_PLUS] = ACTIONS(2479), + [anon_sym_DASH] = ACTIONS(2479), + [anon_sym_STAR] = ACTIONS(2481), + [anon_sym_struct] = ACTIONS(1442), + [anon_sym_mut] = ACTIONS(41), + [anon_sym_QMARK] = ACTIONS(47), + [anon_sym_BANG] = ACTIONS(2483), + [anon_sym_go] = ACTIONS(2485), + [anon_sym_spawn] = ACTIONS(2487), + [anon_sym_json_DOTdecode] = ACTIONS(1450), + [anon_sym_LBRACK2] = ACTIONS(2489), + [anon_sym_TILDE] = ACTIONS(2479), + [anon_sym_CARET] = ACTIONS(2479), + [anon_sym_AMP] = ACTIONS(2491), + [anon_sym_LT_DASH] = ACTIONS(2493), + [sym_none] = ACTIONS(1458), + [sym_true] = ACTIONS(1458), + [sym_false] = ACTIONS(1458), + [sym_nil] = ACTIONS(1458), + [anon_sym_if] = ACTIONS(1833), + [anon_sym_DOLLARif] = ACTIONS(1462), + [anon_sym_match] = ACTIONS(1464), + [anon_sym_select] = ACTIONS(2495), + [anon_sym_lock] = ACTIONS(2497), + [anon_sym_rlock] = ACTIONS(2497), + [anon_sym_unsafe] = ACTIONS(1839), + [anon_sym_sql] = ACTIONS(1472), + [sym_int_literal] = ACTIONS(1458), + [sym_float_literal] = ACTIONS(1474), + [sym_rune_literal] = ACTIONS(1474), + [sym_pseudo_compile_time_identifier] = ACTIONS(1476), + [anon_sym_shared] = ACTIONS(83), + [anon_sym_map_LBRACK] = ACTIONS(85), + [anon_sym_chan] = ACTIONS(87), + [anon_sym_thread] = ACTIONS(89), + [anon_sym_atomic] = ACTIONS(91), + [sym___double_quote] = ACTIONS(1480), + [sym___single_quote] = ACTIONS(1482), + [sym___c_double_quote] = ACTIONS(1484), + [sym___c_single_quote] = ACTIONS(1486), + [sym___r_double_quote] = ACTIONS(1488), + [sym___r_single_quote] = ACTIONS(1490), + }, + [649] = { + [sym_line_comment] = STATE(649), + [sym_block_comment] = STATE(649), + [sym__expression] = STATE(2499), + [sym__expression_without_blocks] = STATE(2347), + [sym__expression_with_blocks] = STATE(2347), + [sym_inc_expression] = STATE(2379), + [sym_dec_expression] = STATE(2379), + [sym_or_block_expression] = STATE(2379), + [sym_option_propagation_expression] = STATE(2379), + [sym_result_propagation_expression] = STATE(2379), + [sym_anon_struct_value_expression] = STATE(2378), + [sym_go_expression] = STATE(2379), + [sym_spawn_expression] = STATE(2379), + [sym_parenthesized_expression] = STATE(2379), + [sym_call_expression] = STATE(2379), + [sym_type_initializer] = STATE(2378), + [sym_function_literal] = STATE(2379), + [sym_reference_expression] = STATE(2377), + [sym_type_reference_expression] = STATE(3460), + [sym_unary_expression] = STATE(2379), + [sym_receive_expression] = STATE(2379), + [sym_binary_expression] = STATE(2379), + [sym_as_type_cast_expression] = STATE(2379), + [sym__max_group] = STATE(2379), + [sym_literal] = STATE(2392), + [sym_map_init_expression] = STATE(2378), + [sym_array_creation] = STATE(2379), + [sym_fixed_array_creation] = STATE(2379), + [sym_selector_expression] = STATE(2379), + [sym_index_expression] = STATE(2379), + [sym_slice_expression] = STATE(2379), + [sym_if_expression] = STATE(2378), + [sym_compile_time_if_expression] = STATE(2378), + [sym_is_expression] = STATE(2379), + [sym_in_expression] = STATE(2379), + [sym_enum_fetch] = STATE(2379), + [sym_match_expression] = STATE(2378), + [sym_select_expression] = STATE(2378), + [sym_lock_expression] = STATE(2378), + [sym_unsafe_expression] = STATE(2378), + [sym_sql_expression] = STATE(2378), + [sym_c_string_literal] = STATE(2401), + [sym_raw_string_literal] = STATE(2401), + [sym_interpreted_string_literal] = STATE(2401), + [sym_mutability_modifiers] = STATE(553), + [sym_plain_type] = STATE(4160), + [sym__plain_type_without_special] = STATE(2360), + [sym_anon_struct_type] = STATE(2362), + [sym_multi_return_type] = STATE(2360), + [sym_result_type] = STATE(2360), + [sym_option_type] = STATE(2360), + [sym_qualified_type] = STATE(3460), + [sym_fixed_array_type] = STATE(2362), + [sym_array_type] = STATE(2362), + [sym_pointer_type] = STATE(2362), + [sym_wrong_pointer_type] = STATE(2362), + [sym_map_type] = STATE(2362), + [sym_channel_type] = STATE(2362), + [sym_shared_type] = STATE(2362), + [sym_thread_type] = STATE(2362), + [sym_atomic_type] = STATE(2362), + [sym_generic_type] = STATE(2362), + [sym_function_type] = STATE(2362), + [sym_identifier] = ACTIONS(2477), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(1430), + [anon_sym_LBRACE] = ACTIONS(1432), + [anon_sym_LPAREN] = ACTIONS(1434), + [anon_sym_fn] = ACTIONS(1436), + [anon_sym_PLUS] = ACTIONS(2479), + [anon_sym_DASH] = ACTIONS(2479), + [anon_sym_STAR] = ACTIONS(2481), + [anon_sym_struct] = ACTIONS(1442), + [anon_sym_mut] = ACTIONS(41), + [anon_sym_QMARK] = ACTIONS(47), + [anon_sym_BANG] = ACTIONS(2483), + [anon_sym_go] = ACTIONS(2485), + [anon_sym_spawn] = ACTIONS(2487), + [anon_sym_json_DOTdecode] = ACTIONS(1450), + [anon_sym_LBRACK2] = ACTIONS(2489), + [anon_sym_TILDE] = ACTIONS(2479), + [anon_sym_CARET] = ACTIONS(2479), + [anon_sym_AMP] = ACTIONS(2491), + [anon_sym_LT_DASH] = ACTIONS(2493), + [sym_none] = ACTIONS(1458), + [sym_true] = ACTIONS(1458), + [sym_false] = ACTIONS(1458), + [sym_nil] = ACTIONS(1458), + [anon_sym_if] = ACTIONS(1833), + [anon_sym_DOLLARif] = ACTIONS(1462), + [anon_sym_match] = ACTIONS(1464), + [anon_sym_select] = ACTIONS(2495), + [anon_sym_lock] = ACTIONS(2497), + [anon_sym_rlock] = ACTIONS(2497), + [anon_sym_unsafe] = ACTIONS(1839), + [anon_sym_sql] = ACTIONS(1472), + [sym_int_literal] = ACTIONS(1458), + [sym_float_literal] = ACTIONS(1474), + [sym_rune_literal] = ACTIONS(1474), + [sym_pseudo_compile_time_identifier] = ACTIONS(1476), + [anon_sym_shared] = ACTIONS(83), + [anon_sym_map_LBRACK] = ACTIONS(85), + [anon_sym_chan] = ACTIONS(87), + [anon_sym_thread] = ACTIONS(89), + [anon_sym_atomic] = ACTIONS(91), + [sym___double_quote] = ACTIONS(1480), + [sym___single_quote] = ACTIONS(1482), + [sym___c_double_quote] = ACTIONS(1484), + [sym___c_single_quote] = ACTIONS(1486), + [sym___r_double_quote] = ACTIONS(1488), + [sym___r_single_quote] = ACTIONS(1490), + }, [650] = { [sym_line_comment] = STATE(650), [sym_block_comment] = STATE(650), - [sym__expression] = STATE(2264), - [sym__expression_without_blocks] = STATE(2300), - [sym__expression_with_blocks] = STATE(2300), - [sym_inc_expression] = STATE(2307), - [sym_dec_expression] = STATE(2307), - [sym_or_block_expression] = STATE(2307), - [sym_option_propagation_expression] = STATE(2307), - [sym_result_propagation_expression] = STATE(2307), - [sym_anon_struct_value_expression] = STATE(2380), - [sym_go_expression] = STATE(2307), - [sym_spawn_expression] = STATE(2307), - [sym_parenthesized_expression] = STATE(2307), - [sym_call_expression] = STATE(2307), - [sym_type_initializer] = STATE(2380), - [sym_function_literal] = STATE(2307), - [sym_reference_expression] = STATE(2311), - [sym_type_reference_expression] = STATE(3541), - [sym_unary_expression] = STATE(2307), - [sym_receive_expression] = STATE(2307), - [sym_binary_expression] = STATE(2307), - [sym_as_type_cast_expression] = STATE(2307), - [sym__max_group] = STATE(2307), - [sym_literal] = STATE(2292), - [sym_map_init_expression] = STATE(2380), - [sym_array_creation] = STATE(2307), - [sym_fixed_array_creation] = STATE(2307), - [sym_selector_expression] = STATE(2307), - [sym_index_expression] = STATE(2307), - [sym_slice_expression] = STATE(2307), - [sym_if_expression] = STATE(2380), - [sym_compile_time_if_expression] = STATE(2380), - [sym_is_expression] = STATE(2307), - [sym_in_expression] = STATE(2307), - [sym_enum_fetch] = STATE(2307), - [sym_match_expression] = STATE(2380), - [sym_select_expression] = STATE(2380), - [sym_lock_expression] = STATE(2380), - [sym_unsafe_expression] = STATE(2380), - [sym_sql_expression] = STATE(2380), - [sym_c_string_literal] = STATE(2308), - [sym_raw_string_literal] = STATE(2308), - [sym_interpreted_string_literal] = STATE(2308), - [sym_mutability_modifiers] = STATE(939), - [sym_plain_type] = STATE(4297), - [sym__plain_type_without_special] = STATE(2302), - [sym_anon_struct_type] = STATE(2303), - [sym_multi_return_type] = STATE(2302), - [sym_result_type] = STATE(2302), - [sym_option_type] = STATE(2302), - [sym_qualified_type] = STATE(3541), - [sym_fixed_array_type] = STATE(2303), - [sym_array_type] = STATE(2303), - [sym_pointer_type] = STATE(2303), - [sym_wrong_pointer_type] = STATE(2303), - [sym_map_type] = STATE(2303), - [sym_channel_type] = STATE(2303), - [sym_shared_type] = STATE(2303), - [sym_thread_type] = STATE(2303), - [sym_atomic_type] = STATE(2303), - [sym_generic_type] = STATE(2303), - [sym_function_type] = STATE(2303), - [sym_identifier] = ACTIONS(1426), + [sym__expression] = STATE(1770), + [sym__expression_without_blocks] = STATE(1953), + [sym__expression_with_blocks] = STATE(1953), + [sym_inc_expression] = STATE(1955), + [sym_dec_expression] = STATE(1955), + [sym_or_block_expression] = STATE(1955), + [sym_option_propagation_expression] = STATE(1955), + [sym_result_propagation_expression] = STATE(1955), + [sym_anon_struct_value_expression] = STATE(1958), + [sym_go_expression] = STATE(1955), + [sym_spawn_expression] = STATE(1955), + [sym_parenthesized_expression] = STATE(1955), + [sym_call_expression] = STATE(1955), + [sym_type_initializer] = STATE(1958), + [sym_function_literal] = STATE(1955), + [sym_reference_expression] = STATE(1956), + [sym_type_reference_expression] = STATE(3460), + [sym_unary_expression] = STATE(1955), + [sym_receive_expression] = STATE(1955), + [sym_binary_expression] = STATE(1955), + [sym_as_type_cast_expression] = STATE(1955), + [sym__max_group] = STATE(1955), + [sym_literal] = STATE(1943), + [sym_map_init_expression] = STATE(1958), + [sym_array_creation] = STATE(1955), + [sym_fixed_array_creation] = STATE(1955), + [sym_selector_expression] = STATE(1955), + [sym_index_expression] = STATE(1955), + [sym_slice_expression] = STATE(1955), + [sym_if_expression] = STATE(1958), + [sym_compile_time_if_expression] = STATE(1958), + [sym_is_expression] = STATE(1955), + [sym_in_expression] = STATE(1955), + [sym_enum_fetch] = STATE(1955), + [sym_match_expression] = STATE(1958), + [sym_select_expression] = STATE(1958), + [sym_lock_expression] = STATE(1958), + [sym_unsafe_expression] = STATE(1958), + [sym_sql_expression] = STATE(1958), + [sym_c_string_literal] = STATE(1942), + [sym_raw_string_literal] = STATE(1942), + [sym_interpreted_string_literal] = STATE(1942), + [sym_mutability_modifiers] = STATE(601), + [sym_plain_type] = STATE(4266), + [sym__plain_type_without_special] = STATE(2360), + [sym_anon_struct_type] = STATE(2362), + [sym_multi_return_type] = STATE(2360), + [sym_result_type] = STATE(2360), + [sym_option_type] = STATE(2360), + [sym_qualified_type] = STATE(3460), + [sym_fixed_array_type] = STATE(2362), + [sym_array_type] = STATE(2362), + [sym_pointer_type] = STATE(2362), + [sym_wrong_pointer_type] = STATE(2362), + [sym_map_type] = STATE(2362), + [sym_channel_type] = STATE(2362), + [sym_shared_type] = STATE(2362), + [sym_thread_type] = STATE(2362), + [sym_atomic_type] = STATE(2362), + [sym_generic_type] = STATE(2362), + [sym_function_type] = STATE(2362), + [sym_identifier] = ACTIONS(1681), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1428), - [anon_sym_LBRACE] = ACTIONS(1430), - [anon_sym_LPAREN] = ACTIONS(1432), - [anon_sym_fn] = ACTIONS(1434), - [anon_sym_PLUS] = ACTIONS(1436), - [anon_sym_DASH] = ACTIONS(1436), - [anon_sym_STAR] = ACTIONS(1438), - [anon_sym_struct] = ACTIONS(1440), + [anon_sym_DOT] = ACTIONS(705), + [anon_sym_LBRACE] = ACTIONS(3118), + [anon_sym_LPAREN] = ACTIONS(709), + [anon_sym_fn] = ACTIONS(711), + [anon_sym_PLUS] = ACTIONS(713), + [anon_sym_DASH] = ACTIONS(713), + [anon_sym_STAR] = ACTIONS(715), + [anon_sym_struct] = ACTIONS(717), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(1442), - [anon_sym_go] = ACTIONS(1444), - [anon_sym_spawn] = ACTIONS(1446), - [anon_sym_json_DOTdecode] = ACTIONS(1448), - [anon_sym_LBRACK2] = ACTIONS(1450), - [anon_sym_TILDE] = ACTIONS(1436), - [anon_sym_CARET] = ACTIONS(1436), - [anon_sym_AMP] = ACTIONS(1452), - [anon_sym_LT_DASH] = ACTIONS(1454), - [sym_none] = ACTIONS(1456), - [sym_true] = ACTIONS(1456), - [sym_false] = ACTIONS(1456), - [sym_nil] = ACTIONS(1456), - [anon_sym_if] = ACTIONS(1827), - [anon_sym_DOLLARif] = ACTIONS(1460), - [anon_sym_match] = ACTIONS(1462), - [anon_sym_select] = ACTIONS(1464), - [anon_sym_lock] = ACTIONS(1466), - [anon_sym_rlock] = ACTIONS(1466), - [anon_sym_unsafe] = ACTIONS(1833), - [anon_sym_sql] = ACTIONS(1470), - [sym_int_literal] = ACTIONS(1456), - [sym_float_literal] = ACTIONS(1472), - [sym_rune_literal] = ACTIONS(1472), - [sym_pseudo_compile_time_identifier] = ACTIONS(1474), + [anon_sym_BANG] = ACTIONS(721), + [anon_sym_go] = ACTIONS(723), + [anon_sym_spawn] = ACTIONS(725), + [anon_sym_json_DOTdecode] = ACTIONS(727), + [anon_sym_LBRACK2] = ACTIONS(729), + [anon_sym_TILDE] = ACTIONS(713), + [anon_sym_CARET] = ACTIONS(713), + [anon_sym_AMP] = ACTIONS(731), + [anon_sym_LT_DASH] = ACTIONS(733), + [sym_none] = ACTIONS(735), + [sym_true] = ACTIONS(735), + [sym_false] = ACTIONS(735), + [sym_nil] = ACTIONS(735), + [anon_sym_if] = ACTIONS(737), + [anon_sym_DOLLARif] = ACTIONS(739), + [anon_sym_match] = ACTIONS(741), + [anon_sym_select] = ACTIONS(743), + [anon_sym_lock] = ACTIONS(745), + [anon_sym_rlock] = ACTIONS(745), + [anon_sym_unsafe] = ACTIONS(747), + [anon_sym_sql] = ACTIONS(749), + [sym_int_literal] = ACTIONS(735), + [sym_float_literal] = ACTIONS(751), + [sym_rune_literal] = ACTIONS(751), + [sym_pseudo_compile_time_identifier] = ACTIONS(753), [anon_sym_shared] = ACTIONS(83), [anon_sym_map_LBRACK] = ACTIONS(85), [anon_sym_chan] = ACTIONS(87), [anon_sym_thread] = ACTIONS(89), [anon_sym_atomic] = ACTIONS(91), - [sym___double_quote] = ACTIONS(1478), - [sym___single_quote] = ACTIONS(1480), - [sym___c_double_quote] = ACTIONS(1482), - [sym___c_single_quote] = ACTIONS(1484), - [sym___r_double_quote] = ACTIONS(1486), - [sym___r_single_quote] = ACTIONS(1488), + [sym___double_quote] = ACTIONS(755), + [sym___single_quote] = ACTIONS(757), + [sym___c_double_quote] = ACTIONS(759), + [sym___c_single_quote] = ACTIONS(761), + [sym___r_double_quote] = ACTIONS(763), + [sym___r_single_quote] = ACTIONS(765), }, [651] = { [sym_line_comment] = STATE(651), [sym_block_comment] = STATE(651), - [sym__expression] = STATE(2263), - [sym__expression_without_blocks] = STATE(2300), - [sym__expression_with_blocks] = STATE(2300), - [sym_inc_expression] = STATE(2307), - [sym_dec_expression] = STATE(2307), - [sym_or_block_expression] = STATE(2307), - [sym_option_propagation_expression] = STATE(2307), - [sym_result_propagation_expression] = STATE(2307), - [sym_anon_struct_value_expression] = STATE(2380), - [sym_go_expression] = STATE(2307), - [sym_spawn_expression] = STATE(2307), - [sym_parenthesized_expression] = STATE(2307), - [sym_call_expression] = STATE(2307), - [sym_type_initializer] = STATE(2380), - [sym_function_literal] = STATE(2307), - [sym_reference_expression] = STATE(2311), - [sym_type_reference_expression] = STATE(3541), - [sym_unary_expression] = STATE(2307), - [sym_receive_expression] = STATE(2307), - [sym_binary_expression] = STATE(2307), - [sym_as_type_cast_expression] = STATE(2307), - [sym__max_group] = STATE(2307), - [sym_literal] = STATE(2292), - [sym_map_init_expression] = STATE(2380), - [sym_array_creation] = STATE(2307), - [sym_fixed_array_creation] = STATE(2307), - [sym_selector_expression] = STATE(2307), - [sym_index_expression] = STATE(2307), - [sym_slice_expression] = STATE(2307), - [sym_if_expression] = STATE(2380), - [sym_compile_time_if_expression] = STATE(2380), - [sym_is_expression] = STATE(2307), - [sym_in_expression] = STATE(2307), - [sym_enum_fetch] = STATE(2307), - [sym_match_expression] = STATE(2380), - [sym_select_expression] = STATE(2380), - [sym_lock_expression] = STATE(2380), - [sym_unsafe_expression] = STATE(2380), - [sym_sql_expression] = STATE(2380), - [sym_c_string_literal] = STATE(2308), - [sym_raw_string_literal] = STATE(2308), - [sym_interpreted_string_literal] = STATE(2308), - [sym_mutability_modifiers] = STATE(939), - [sym_plain_type] = STATE(3566), - [sym__plain_type_without_special] = STATE(2302), - [sym_anon_struct_type] = STATE(2303), - [sym_multi_return_type] = STATE(2302), - [sym_result_type] = STATE(2302), - [sym_option_type] = STATE(2302), - [sym_qualified_type] = STATE(3541), - [sym_fixed_array_type] = STATE(2303), - [sym_array_type] = STATE(2303), - [sym_pointer_type] = STATE(2303), - [sym_wrong_pointer_type] = STATE(2303), - [sym_map_type] = STATE(2303), - [sym_channel_type] = STATE(2303), - [sym_shared_type] = STATE(2303), - [sym_thread_type] = STATE(2303), - [sym_atomic_type] = STATE(2303), - [sym_generic_type] = STATE(2303), - [sym_function_type] = STATE(2303), - [sym_identifier] = ACTIONS(1426), + [sym__expression] = STATE(2502), + [sym__expression_without_blocks] = STATE(2347), + [sym__expression_with_blocks] = STATE(2347), + [sym_inc_expression] = STATE(2379), + [sym_dec_expression] = STATE(2379), + [sym_or_block_expression] = STATE(2379), + [sym_option_propagation_expression] = STATE(2379), + [sym_result_propagation_expression] = STATE(2379), + [sym_anon_struct_value_expression] = STATE(2378), + [sym_go_expression] = STATE(2379), + [sym_spawn_expression] = STATE(2379), + [sym_parenthesized_expression] = STATE(2379), + [sym_call_expression] = STATE(2379), + [sym_type_initializer] = STATE(2378), + [sym_function_literal] = STATE(2379), + [sym_reference_expression] = STATE(2377), + [sym_type_reference_expression] = STATE(3460), + [sym_unary_expression] = STATE(2379), + [sym_receive_expression] = STATE(2379), + [sym_binary_expression] = STATE(2379), + [sym_as_type_cast_expression] = STATE(2379), + [sym__max_group] = STATE(2379), + [sym_literal] = STATE(2392), + [sym_map_init_expression] = STATE(2378), + [sym_array_creation] = STATE(2379), + [sym_fixed_array_creation] = STATE(2379), + [sym_selector_expression] = STATE(2379), + [sym_index_expression] = STATE(2379), + [sym_slice_expression] = STATE(2379), + [sym_if_expression] = STATE(2378), + [sym_compile_time_if_expression] = STATE(2378), + [sym_is_expression] = STATE(2379), + [sym_in_expression] = STATE(2379), + [sym_enum_fetch] = STATE(2379), + [sym_match_expression] = STATE(2378), + [sym_select_expression] = STATE(2378), + [sym_lock_expression] = STATE(2378), + [sym_unsafe_expression] = STATE(2378), + [sym_sql_expression] = STATE(2378), + [sym_c_string_literal] = STATE(2401), + [sym_raw_string_literal] = STATE(2401), + [sym_interpreted_string_literal] = STATE(2401), + [sym_mutability_modifiers] = STATE(553), + [sym_plain_type] = STATE(4160), + [sym__plain_type_without_special] = STATE(2360), + [sym_anon_struct_type] = STATE(2362), + [sym_multi_return_type] = STATE(2360), + [sym_result_type] = STATE(2360), + [sym_option_type] = STATE(2360), + [sym_qualified_type] = STATE(3460), + [sym_fixed_array_type] = STATE(2362), + [sym_array_type] = STATE(2362), + [sym_pointer_type] = STATE(2362), + [sym_wrong_pointer_type] = STATE(2362), + [sym_map_type] = STATE(2362), + [sym_channel_type] = STATE(2362), + [sym_shared_type] = STATE(2362), + [sym_thread_type] = STATE(2362), + [sym_atomic_type] = STATE(2362), + [sym_generic_type] = STATE(2362), + [sym_function_type] = STATE(2362), + [sym_identifier] = ACTIONS(2477), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1428), - [anon_sym_LBRACE] = ACTIONS(1430), - [anon_sym_LPAREN] = ACTIONS(1432), - [anon_sym_fn] = ACTIONS(1434), - [anon_sym_PLUS] = ACTIONS(1436), - [anon_sym_DASH] = ACTIONS(1436), - [anon_sym_STAR] = ACTIONS(1438), - [anon_sym_struct] = ACTIONS(1440), + [anon_sym_DOT] = ACTIONS(1430), + [anon_sym_LBRACE] = ACTIONS(1432), + [anon_sym_LPAREN] = ACTIONS(1434), + [anon_sym_fn] = ACTIONS(1436), + [anon_sym_PLUS] = ACTIONS(2479), + [anon_sym_DASH] = ACTIONS(2479), + [anon_sym_STAR] = ACTIONS(2481), + [anon_sym_struct] = ACTIONS(1442), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(1442), - [anon_sym_go] = ACTIONS(1444), - [anon_sym_spawn] = ACTIONS(1446), - [anon_sym_json_DOTdecode] = ACTIONS(1448), - [anon_sym_LBRACK2] = ACTIONS(1450), - [anon_sym_TILDE] = ACTIONS(1436), - [anon_sym_CARET] = ACTIONS(1436), - [anon_sym_AMP] = ACTIONS(1452), - [anon_sym_LT_DASH] = ACTIONS(1454), - [sym_none] = ACTIONS(1456), - [sym_true] = ACTIONS(1456), - [sym_false] = ACTIONS(1456), - [sym_nil] = ACTIONS(1456), - [anon_sym_if] = ACTIONS(1827), - [anon_sym_DOLLARif] = ACTIONS(1460), - [anon_sym_match] = ACTIONS(1462), - [anon_sym_select] = ACTIONS(1464), - [anon_sym_lock] = ACTIONS(1466), - [anon_sym_rlock] = ACTIONS(1466), - [anon_sym_unsafe] = ACTIONS(1833), - [anon_sym_sql] = ACTIONS(1470), - [sym_int_literal] = ACTIONS(1456), - [sym_float_literal] = ACTIONS(1472), - [sym_rune_literal] = ACTIONS(1472), - [sym_pseudo_compile_time_identifier] = ACTIONS(1474), + [anon_sym_BANG] = ACTIONS(2483), + [anon_sym_go] = ACTIONS(2485), + [anon_sym_spawn] = ACTIONS(2487), + [anon_sym_json_DOTdecode] = ACTIONS(1450), + [anon_sym_LBRACK2] = ACTIONS(2489), + [anon_sym_TILDE] = ACTIONS(2479), + [anon_sym_CARET] = ACTIONS(2479), + [anon_sym_AMP] = ACTIONS(2491), + [anon_sym_LT_DASH] = ACTIONS(2493), + [sym_none] = ACTIONS(1458), + [sym_true] = ACTIONS(1458), + [sym_false] = ACTIONS(1458), + [sym_nil] = ACTIONS(1458), + [anon_sym_if] = ACTIONS(1833), + [anon_sym_DOLLARif] = ACTIONS(1462), + [anon_sym_match] = ACTIONS(1464), + [anon_sym_select] = ACTIONS(2495), + [anon_sym_lock] = ACTIONS(2497), + [anon_sym_rlock] = ACTIONS(2497), + [anon_sym_unsafe] = ACTIONS(1839), + [anon_sym_sql] = ACTIONS(1472), + [sym_int_literal] = ACTIONS(1458), + [sym_float_literal] = ACTIONS(1474), + [sym_rune_literal] = ACTIONS(1474), + [sym_pseudo_compile_time_identifier] = ACTIONS(1476), [anon_sym_shared] = ACTIONS(83), [anon_sym_map_LBRACK] = ACTIONS(85), [anon_sym_chan] = ACTIONS(87), [anon_sym_thread] = ACTIONS(89), [anon_sym_atomic] = ACTIONS(91), - [sym___double_quote] = ACTIONS(1478), - [sym___single_quote] = ACTIONS(1480), - [sym___c_double_quote] = ACTIONS(1482), - [sym___c_single_quote] = ACTIONS(1484), - [sym___r_double_quote] = ACTIONS(1486), - [sym___r_single_quote] = ACTIONS(1488), + [sym___double_quote] = ACTIONS(1480), + [sym___single_quote] = ACTIONS(1482), + [sym___c_double_quote] = ACTIONS(1484), + [sym___c_single_quote] = ACTIONS(1486), + [sym___r_double_quote] = ACTIONS(1488), + [sym___r_single_quote] = ACTIONS(1490), }, [652] = { [sym_line_comment] = STATE(652), [sym_block_comment] = STATE(652), - [sym__expression] = STATE(2426), - [sym__expression_without_blocks] = STATE(2300), - [sym__expression_with_blocks] = STATE(2300), - [sym_inc_expression] = STATE(2307), - [sym_dec_expression] = STATE(2307), - [sym_or_block_expression] = STATE(2307), - [sym_option_propagation_expression] = STATE(2307), - [sym_result_propagation_expression] = STATE(2307), - [sym_anon_struct_value_expression] = STATE(2380), - [sym_go_expression] = STATE(2307), - [sym_spawn_expression] = STATE(2307), - [sym_parenthesized_expression] = STATE(2307), - [sym_call_expression] = STATE(2307), - [sym_type_initializer] = STATE(2380), - [sym_function_literal] = STATE(2307), - [sym_reference_expression] = STATE(2311), - [sym_type_reference_expression] = STATE(3541), - [sym_unary_expression] = STATE(2307), - [sym_receive_expression] = STATE(2307), - [sym_binary_expression] = STATE(2307), - [sym_as_type_cast_expression] = STATE(2307), - [sym__max_group] = STATE(2307), - [sym_literal] = STATE(2292), - [sym_map_init_expression] = STATE(2380), - [sym_array_creation] = STATE(2307), - [sym_fixed_array_creation] = STATE(2307), - [sym_selector_expression] = STATE(2307), - [sym_index_expression] = STATE(2307), - [sym_slice_expression] = STATE(2307), - [sym_if_expression] = STATE(2380), - [sym_compile_time_if_expression] = STATE(2380), - [sym_is_expression] = STATE(2307), - [sym_in_expression] = STATE(2307), - [sym_enum_fetch] = STATE(2307), - [sym_match_expression] = STATE(2380), - [sym_select_expression] = STATE(2380), - [sym_lock_expression] = STATE(2380), - [sym_unsafe_expression] = STATE(2380), - [sym_sql_expression] = STATE(2380), - [sym_c_string_literal] = STATE(2308), - [sym_raw_string_literal] = STATE(2308), - [sym_interpreted_string_literal] = STATE(2308), - [sym_mutability_modifiers] = STATE(939), - [sym_plain_type] = STATE(4297), - [sym__plain_type_without_special] = STATE(2302), - [sym_anon_struct_type] = STATE(2303), - [sym_multi_return_type] = STATE(2302), - [sym_result_type] = STATE(2302), - [sym_option_type] = STATE(2302), - [sym_qualified_type] = STATE(3541), - [sym_fixed_array_type] = STATE(2303), - [sym_array_type] = STATE(2303), - [sym_pointer_type] = STATE(2303), - [sym_wrong_pointer_type] = STATE(2303), - [sym_map_type] = STATE(2303), - [sym_channel_type] = STATE(2303), - [sym_shared_type] = STATE(2303), - [sym_thread_type] = STATE(2303), - [sym_atomic_type] = STATE(2303), - [sym_generic_type] = STATE(2303), - [sym_function_type] = STATE(2303), - [sym_identifier] = ACTIONS(1426), + [sym__expression] = STATE(1902), + [sym__expression_without_blocks] = STATE(1953), + [sym__expression_with_blocks] = STATE(1953), + [sym_inc_expression] = STATE(1955), + [sym_dec_expression] = STATE(1955), + [sym_or_block_expression] = STATE(1955), + [sym_option_propagation_expression] = STATE(1955), + [sym_result_propagation_expression] = STATE(1955), + [sym_anon_struct_value_expression] = STATE(1958), + [sym_go_expression] = STATE(1955), + [sym_spawn_expression] = STATE(1955), + [sym_parenthesized_expression] = STATE(1955), + [sym_call_expression] = STATE(1955), + [sym_type_initializer] = STATE(1958), + [sym_function_literal] = STATE(1955), + [sym_reference_expression] = STATE(1956), + [sym_type_reference_expression] = STATE(3460), + [sym_unary_expression] = STATE(1955), + [sym_receive_expression] = STATE(1955), + [sym_binary_expression] = STATE(1955), + [sym_as_type_cast_expression] = STATE(1955), + [sym__max_group] = STATE(1955), + [sym_literal] = STATE(1943), + [sym_map_init_expression] = STATE(1958), + [sym_array_creation] = STATE(1955), + [sym_fixed_array_creation] = STATE(1955), + [sym_selector_expression] = STATE(1955), + [sym_index_expression] = STATE(1955), + [sym_slice_expression] = STATE(1955), + [sym_if_expression] = STATE(1958), + [sym_compile_time_if_expression] = STATE(1958), + [sym_is_expression] = STATE(1955), + [sym_in_expression] = STATE(1955), + [sym_enum_fetch] = STATE(1955), + [sym_match_expression] = STATE(1958), + [sym_select_expression] = STATE(1958), + [sym_lock_expression] = STATE(1958), + [sym_unsafe_expression] = STATE(1958), + [sym_sql_expression] = STATE(1958), + [sym_c_string_literal] = STATE(1942), + [sym_raw_string_literal] = STATE(1942), + [sym_interpreted_string_literal] = STATE(1942), + [sym_mutability_modifiers] = STATE(601), + [sym_plain_type] = STATE(4266), + [sym__plain_type_without_special] = STATE(2360), + [sym_anon_struct_type] = STATE(2362), + [sym_multi_return_type] = STATE(2360), + [sym_result_type] = STATE(2360), + [sym_option_type] = STATE(2360), + [sym_qualified_type] = STATE(3460), + [sym_fixed_array_type] = STATE(2362), + [sym_array_type] = STATE(2362), + [sym_pointer_type] = STATE(2362), + [sym_wrong_pointer_type] = STATE(2362), + [sym_map_type] = STATE(2362), + [sym_channel_type] = STATE(2362), + [sym_shared_type] = STATE(2362), + [sym_thread_type] = STATE(2362), + [sym_atomic_type] = STATE(2362), + [sym_generic_type] = STATE(2362), + [sym_function_type] = STATE(2362), + [sym_identifier] = ACTIONS(3158), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1428), - [anon_sym_LBRACE] = ACTIONS(1430), - [anon_sym_LPAREN] = ACTIONS(1432), - [anon_sym_fn] = ACTIONS(1434), - [anon_sym_PLUS] = ACTIONS(1436), - [anon_sym_DASH] = ACTIONS(1436), - [anon_sym_STAR] = ACTIONS(1438), - [anon_sym_struct] = ACTIONS(1440), + [anon_sym_DOT] = ACTIONS(705), + [anon_sym_LBRACE] = ACTIONS(3118), + [anon_sym_LPAREN] = ACTIONS(709), + [anon_sym_fn] = ACTIONS(711), + [anon_sym_PLUS] = ACTIONS(3160), + [anon_sym_DASH] = ACTIONS(3160), + [anon_sym_STAR] = ACTIONS(3162), + [anon_sym_struct] = ACTIONS(717), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(1442), - [anon_sym_go] = ACTIONS(1444), - [anon_sym_spawn] = ACTIONS(1446), - [anon_sym_json_DOTdecode] = ACTIONS(1448), - [anon_sym_LBRACK2] = ACTIONS(1450), - [anon_sym_TILDE] = ACTIONS(1436), - [anon_sym_CARET] = ACTIONS(1436), - [anon_sym_AMP] = ACTIONS(1452), - [anon_sym_LT_DASH] = ACTIONS(1454), - [sym_none] = ACTIONS(1456), - [sym_true] = ACTIONS(1456), - [sym_false] = ACTIONS(1456), - [sym_nil] = ACTIONS(1456), - [anon_sym_if] = ACTIONS(1827), - [anon_sym_DOLLARif] = ACTIONS(1460), - [anon_sym_match] = ACTIONS(1462), - [anon_sym_select] = ACTIONS(1464), - [anon_sym_lock] = ACTIONS(1466), - [anon_sym_rlock] = ACTIONS(1466), - [anon_sym_unsafe] = ACTIONS(1833), - [anon_sym_sql] = ACTIONS(1470), - [sym_int_literal] = ACTIONS(1456), - [sym_float_literal] = ACTIONS(1472), - [sym_rune_literal] = ACTIONS(1472), - [sym_pseudo_compile_time_identifier] = ACTIONS(1474), + [anon_sym_BANG] = ACTIONS(3164), + [anon_sym_go] = ACTIONS(3166), + [anon_sym_spawn] = ACTIONS(3168), + [anon_sym_json_DOTdecode] = ACTIONS(727), + [anon_sym_LBRACK2] = ACTIONS(3170), + [anon_sym_TILDE] = ACTIONS(3160), + [anon_sym_CARET] = ACTIONS(3160), + [anon_sym_AMP] = ACTIONS(3172), + [anon_sym_LT_DASH] = ACTIONS(3174), + [sym_none] = ACTIONS(735), + [sym_true] = ACTIONS(735), + [sym_false] = ACTIONS(735), + [sym_nil] = ACTIONS(735), + [anon_sym_if] = ACTIONS(737), + [anon_sym_DOLLARif] = ACTIONS(739), + [anon_sym_match] = ACTIONS(741), + [anon_sym_select] = ACTIONS(3176), + [anon_sym_lock] = ACTIONS(3178), + [anon_sym_rlock] = ACTIONS(3178), + [anon_sym_unsafe] = ACTIONS(747), + [anon_sym_sql] = ACTIONS(749), + [sym_int_literal] = ACTIONS(735), + [sym_float_literal] = ACTIONS(751), + [sym_rune_literal] = ACTIONS(751), + [sym_pseudo_compile_time_identifier] = ACTIONS(753), [anon_sym_shared] = ACTIONS(83), [anon_sym_map_LBRACK] = ACTIONS(85), [anon_sym_chan] = ACTIONS(87), [anon_sym_thread] = ACTIONS(89), [anon_sym_atomic] = ACTIONS(91), - [sym___double_quote] = ACTIONS(1478), - [sym___single_quote] = ACTIONS(1480), - [sym___c_double_quote] = ACTIONS(1482), - [sym___c_single_quote] = ACTIONS(1484), - [sym___r_double_quote] = ACTIONS(1486), - [sym___r_single_quote] = ACTIONS(1488), + [sym___double_quote] = ACTIONS(755), + [sym___single_quote] = ACTIONS(757), + [sym___c_double_quote] = ACTIONS(759), + [sym___c_single_quote] = ACTIONS(761), + [sym___r_double_quote] = ACTIONS(763), + [sym___r_single_quote] = ACTIONS(765), }, [653] = { [sym_line_comment] = STATE(653), [sym_block_comment] = STATE(653), - [sym__expression] = STATE(2447), - [sym__expression_without_blocks] = STATE(2300), - [sym__expression_with_blocks] = STATE(2300), - [sym_inc_expression] = STATE(2307), - [sym_dec_expression] = STATE(2307), - [sym_or_block_expression] = STATE(2307), - [sym_option_propagation_expression] = STATE(2307), - [sym_result_propagation_expression] = STATE(2307), - [sym_anon_struct_value_expression] = STATE(2380), - [sym_go_expression] = STATE(2307), - [sym_spawn_expression] = STATE(2307), - [sym_parenthesized_expression] = STATE(2307), - [sym_call_expression] = STATE(2307), - [sym_type_initializer] = STATE(2380), - [sym_function_literal] = STATE(2307), - [sym_reference_expression] = STATE(2311), - [sym_type_reference_expression] = STATE(3541), - [sym_unary_expression] = STATE(2307), - [sym_receive_expression] = STATE(2307), - [sym_binary_expression] = STATE(2307), - [sym_as_type_cast_expression] = STATE(2307), - [sym__max_group] = STATE(2307), - [sym_literal] = STATE(2292), - [sym_map_init_expression] = STATE(2380), - [sym_array_creation] = STATE(2307), - [sym_fixed_array_creation] = STATE(2307), - [sym_selector_expression] = STATE(2307), - [sym_index_expression] = STATE(2307), - [sym_slice_expression] = STATE(2307), - [sym_if_expression] = STATE(2380), - [sym_compile_time_if_expression] = STATE(2380), - [sym_is_expression] = STATE(2307), - [sym_in_expression] = STATE(2307), - [sym_enum_fetch] = STATE(2307), - [sym_match_expression] = STATE(2380), - [sym_select_expression] = STATE(2380), - [sym_lock_expression] = STATE(2380), - [sym_unsafe_expression] = STATE(2380), - [sym_sql_expression] = STATE(2380), - [sym_c_string_literal] = STATE(2308), - [sym_raw_string_literal] = STATE(2308), - [sym_interpreted_string_literal] = STATE(2308), - [sym_mutability_modifiers] = STATE(939), - [sym_plain_type] = STATE(4297), - [sym__plain_type_without_special] = STATE(2302), - [sym_anon_struct_type] = STATE(2303), - [sym_multi_return_type] = STATE(2302), - [sym_result_type] = STATE(2302), - [sym_option_type] = STATE(2302), - [sym_qualified_type] = STATE(3541), - [sym_fixed_array_type] = STATE(2303), - [sym_array_type] = STATE(2303), - [sym_pointer_type] = STATE(2303), - [sym_wrong_pointer_type] = STATE(2303), - [sym_map_type] = STATE(2303), - [sym_channel_type] = STATE(2303), - [sym_shared_type] = STATE(2303), - [sym_thread_type] = STATE(2303), - [sym_atomic_type] = STATE(2303), - [sym_generic_type] = STATE(2303), - [sym_function_type] = STATE(2303), - [sym_identifier] = ACTIONS(1426), + [sym__expression] = STATE(2505), + [sym__expression_without_blocks] = STATE(2347), + [sym__expression_with_blocks] = STATE(2347), + [sym_inc_expression] = STATE(2379), + [sym_dec_expression] = STATE(2379), + [sym_or_block_expression] = STATE(2379), + [sym_option_propagation_expression] = STATE(2379), + [sym_result_propagation_expression] = STATE(2379), + [sym_anon_struct_value_expression] = STATE(2378), + [sym_go_expression] = STATE(2379), + [sym_spawn_expression] = STATE(2379), + [sym_parenthesized_expression] = STATE(2379), + [sym_call_expression] = STATE(2379), + [sym_type_initializer] = STATE(2378), + [sym_function_literal] = STATE(2379), + [sym_reference_expression] = STATE(2377), + [sym_type_reference_expression] = STATE(3460), + [sym_unary_expression] = STATE(2379), + [sym_receive_expression] = STATE(2379), + [sym_binary_expression] = STATE(2379), + [sym_as_type_cast_expression] = STATE(2379), + [sym__max_group] = STATE(2379), + [sym_literal] = STATE(2392), + [sym_map_init_expression] = STATE(2378), + [sym_array_creation] = STATE(2379), + [sym_fixed_array_creation] = STATE(2379), + [sym_selector_expression] = STATE(2379), + [sym_index_expression] = STATE(2379), + [sym_slice_expression] = STATE(2379), + [sym_if_expression] = STATE(2378), + [sym_compile_time_if_expression] = STATE(2378), + [sym_is_expression] = STATE(2379), + [sym_in_expression] = STATE(2379), + [sym_enum_fetch] = STATE(2379), + [sym_match_expression] = STATE(2378), + [sym_select_expression] = STATE(2378), + [sym_lock_expression] = STATE(2378), + [sym_unsafe_expression] = STATE(2378), + [sym_sql_expression] = STATE(2378), + [sym_c_string_literal] = STATE(2401), + [sym_raw_string_literal] = STATE(2401), + [sym_interpreted_string_literal] = STATE(2401), + [sym_mutability_modifiers] = STATE(553), + [sym_plain_type] = STATE(4160), + [sym__plain_type_without_special] = STATE(2360), + [sym_anon_struct_type] = STATE(2362), + [sym_multi_return_type] = STATE(2360), + [sym_result_type] = STATE(2360), + [sym_option_type] = STATE(2360), + [sym_qualified_type] = STATE(3460), + [sym_fixed_array_type] = STATE(2362), + [sym_array_type] = STATE(2362), + [sym_pointer_type] = STATE(2362), + [sym_wrong_pointer_type] = STATE(2362), + [sym_map_type] = STATE(2362), + [sym_channel_type] = STATE(2362), + [sym_shared_type] = STATE(2362), + [sym_thread_type] = STATE(2362), + [sym_atomic_type] = STATE(2362), + [sym_generic_type] = STATE(2362), + [sym_function_type] = STATE(2362), + [sym_identifier] = ACTIONS(2477), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1428), - [anon_sym_LBRACE] = ACTIONS(1430), - [anon_sym_LPAREN] = ACTIONS(1432), - [anon_sym_fn] = ACTIONS(1434), - [anon_sym_PLUS] = ACTIONS(1436), - [anon_sym_DASH] = ACTIONS(1436), - [anon_sym_STAR] = ACTIONS(1438), - [anon_sym_struct] = ACTIONS(1440), + [anon_sym_DOT] = ACTIONS(1430), + [anon_sym_LBRACE] = ACTIONS(1432), + [anon_sym_LPAREN] = ACTIONS(1434), + [anon_sym_fn] = ACTIONS(1436), + [anon_sym_PLUS] = ACTIONS(2479), + [anon_sym_DASH] = ACTIONS(2479), + [anon_sym_STAR] = ACTIONS(2481), + [anon_sym_struct] = ACTIONS(1442), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(1442), - [anon_sym_go] = ACTIONS(1444), - [anon_sym_spawn] = ACTIONS(1446), - [anon_sym_json_DOTdecode] = ACTIONS(1448), - [anon_sym_LBRACK2] = ACTIONS(1450), - [anon_sym_TILDE] = ACTIONS(1436), - [anon_sym_CARET] = ACTIONS(1436), - [anon_sym_AMP] = ACTIONS(1452), - [anon_sym_LT_DASH] = ACTIONS(1454), - [sym_none] = ACTIONS(1456), - [sym_true] = ACTIONS(1456), - [sym_false] = ACTIONS(1456), - [sym_nil] = ACTIONS(1456), - [anon_sym_if] = ACTIONS(1827), - [anon_sym_DOLLARif] = ACTIONS(1460), - [anon_sym_match] = ACTIONS(1462), - [anon_sym_select] = ACTIONS(1464), - [anon_sym_lock] = ACTIONS(1466), - [anon_sym_rlock] = ACTIONS(1466), - [anon_sym_unsafe] = ACTIONS(1833), - [anon_sym_sql] = ACTIONS(1470), - [sym_int_literal] = ACTIONS(1456), - [sym_float_literal] = ACTIONS(1472), - [sym_rune_literal] = ACTIONS(1472), - [sym_pseudo_compile_time_identifier] = ACTIONS(1474), + [anon_sym_BANG] = ACTIONS(2483), + [anon_sym_go] = ACTIONS(2485), + [anon_sym_spawn] = ACTIONS(2487), + [anon_sym_json_DOTdecode] = ACTIONS(1450), + [anon_sym_LBRACK2] = ACTIONS(2489), + [anon_sym_TILDE] = ACTIONS(2479), + [anon_sym_CARET] = ACTIONS(2479), + [anon_sym_AMP] = ACTIONS(2491), + [anon_sym_LT_DASH] = ACTIONS(2493), + [sym_none] = ACTIONS(1458), + [sym_true] = ACTIONS(1458), + [sym_false] = ACTIONS(1458), + [sym_nil] = ACTIONS(1458), + [anon_sym_if] = ACTIONS(1833), + [anon_sym_DOLLARif] = ACTIONS(1462), + [anon_sym_match] = ACTIONS(1464), + [anon_sym_select] = ACTIONS(2495), + [anon_sym_lock] = ACTIONS(2497), + [anon_sym_rlock] = ACTIONS(2497), + [anon_sym_unsafe] = ACTIONS(1839), + [anon_sym_sql] = ACTIONS(1472), + [sym_int_literal] = ACTIONS(1458), + [sym_float_literal] = ACTIONS(1474), + [sym_rune_literal] = ACTIONS(1474), + [sym_pseudo_compile_time_identifier] = ACTIONS(1476), [anon_sym_shared] = ACTIONS(83), [anon_sym_map_LBRACK] = ACTIONS(85), [anon_sym_chan] = ACTIONS(87), [anon_sym_thread] = ACTIONS(89), [anon_sym_atomic] = ACTIONS(91), - [sym___double_quote] = ACTIONS(1478), - [sym___single_quote] = ACTIONS(1480), - [sym___c_double_quote] = ACTIONS(1482), - [sym___c_single_quote] = ACTIONS(1484), - [sym___r_double_quote] = ACTIONS(1486), - [sym___r_single_quote] = ACTIONS(1488), + [sym___double_quote] = ACTIONS(1480), + [sym___single_quote] = ACTIONS(1482), + [sym___c_double_quote] = ACTIONS(1484), + [sym___c_single_quote] = ACTIONS(1486), + [sym___r_double_quote] = ACTIONS(1488), + [sym___r_single_quote] = ACTIONS(1490), }, [654] = { [sym_line_comment] = STATE(654), [sym_block_comment] = STATE(654), - [sym__expression] = STATE(221), - [sym__expression_without_blocks] = STATE(442), - [sym__expression_with_blocks] = STATE(442), - [sym_inc_expression] = STATE(439), - [sym_dec_expression] = STATE(439), - [sym_or_block_expression] = STATE(439), - [sym_option_propagation_expression] = STATE(439), - [sym_result_propagation_expression] = STATE(439), - [sym_anon_struct_value_expression] = STATE(438), - [sym_go_expression] = STATE(439), - [sym_spawn_expression] = STATE(439), - [sym_parenthesized_expression] = STATE(439), - [sym_call_expression] = STATE(439), - [sym_type_initializer] = STATE(438), - [sym_function_literal] = STATE(439), - [sym_reference_expression] = STATE(437), - [sym_type_reference_expression] = STATE(3541), - [sym_unary_expression] = STATE(439), - [sym_receive_expression] = STATE(439), - [sym_binary_expression] = STATE(439), - [sym_as_type_cast_expression] = STATE(439), - [sym__max_group] = STATE(439), - [sym_literal] = STATE(495), - [sym_map_init_expression] = STATE(438), - [sym_array_creation] = STATE(439), - [sym_fixed_array_creation] = STATE(439), - [sym_selector_expression] = STATE(439), - [sym_index_expression] = STATE(439), - [sym_slice_expression] = STATE(439), - [sym_if_expression] = STATE(438), - [sym_compile_time_if_expression] = STATE(438), - [sym_is_expression] = STATE(439), - [sym_in_expression] = STATE(439), - [sym_enum_fetch] = STATE(439), - [sym_match_expression] = STATE(438), - [sym_select_expression] = STATE(438), - [sym_lock_expression] = STATE(438), - [sym_unsafe_expression] = STATE(438), - [sym_sql_expression] = STATE(438), - [sym_c_string_literal] = STATE(496), - [sym_raw_string_literal] = STATE(496), - [sym_interpreted_string_literal] = STATE(496), - [sym_mutability_modifiers] = STATE(862), - [sym_plain_type] = STATE(4049), - [sym__plain_type_without_special] = STATE(2302), - [sym_anon_struct_type] = STATE(2303), - [sym_multi_return_type] = STATE(2302), - [sym_result_type] = STATE(2302), - [sym_option_type] = STATE(2302), - [sym_qualified_type] = STATE(3541), - [sym_fixed_array_type] = STATE(2303), - [sym_array_type] = STATE(2303), - [sym_pointer_type] = STATE(2303), - [sym_wrong_pointer_type] = STATE(2303), - [sym_map_type] = STATE(2303), - [sym_channel_type] = STATE(2303), - [sym_shared_type] = STATE(2303), - [sym_thread_type] = STATE(2303), - [sym_atomic_type] = STATE(2303), - [sym_generic_type] = STATE(2303), - [sym_function_type] = STATE(2303), - [sym_identifier] = ACTIONS(3096), + [sym__expression] = STATE(2495), + [sym__expression_without_blocks] = STATE(2347), + [sym__expression_with_blocks] = STATE(2347), + [sym_inc_expression] = STATE(2379), + [sym_dec_expression] = STATE(2379), + [sym_or_block_expression] = STATE(2379), + [sym_option_propagation_expression] = STATE(2379), + [sym_result_propagation_expression] = STATE(2379), + [sym_anon_struct_value_expression] = STATE(2378), + [sym_go_expression] = STATE(2379), + [sym_spawn_expression] = STATE(2379), + [sym_parenthesized_expression] = STATE(2379), + [sym_call_expression] = STATE(2379), + [sym_type_initializer] = STATE(2378), + [sym_function_literal] = STATE(2379), + [sym_reference_expression] = STATE(2377), + [sym_type_reference_expression] = STATE(3460), + [sym_unary_expression] = STATE(2379), + [sym_receive_expression] = STATE(2379), + [sym_binary_expression] = STATE(2379), + [sym_as_type_cast_expression] = STATE(2379), + [sym__max_group] = STATE(2379), + [sym_literal] = STATE(2392), + [sym_map_init_expression] = STATE(2378), + [sym_array_creation] = STATE(2379), + [sym_fixed_array_creation] = STATE(2379), + [sym_selector_expression] = STATE(2379), + [sym_index_expression] = STATE(2379), + [sym_slice_expression] = STATE(2379), + [sym_if_expression] = STATE(2378), + [sym_compile_time_if_expression] = STATE(2378), + [sym_is_expression] = STATE(2379), + [sym_in_expression] = STATE(2379), + [sym_enum_fetch] = STATE(2379), + [sym_match_expression] = STATE(2378), + [sym_select_expression] = STATE(2378), + [sym_lock_expression] = STATE(2378), + [sym_unsafe_expression] = STATE(2378), + [sym_sql_expression] = STATE(2378), + [sym_c_string_literal] = STATE(2401), + [sym_raw_string_literal] = STATE(2401), + [sym_interpreted_string_literal] = STATE(2401), + [sym_mutability_modifiers] = STATE(553), + [sym_plain_type] = STATE(4160), + [sym__plain_type_without_special] = STATE(2360), + [sym_anon_struct_type] = STATE(2362), + [sym_multi_return_type] = STATE(2360), + [sym_result_type] = STATE(2360), + [sym_option_type] = STATE(2360), + [sym_qualified_type] = STATE(3460), + [sym_fixed_array_type] = STATE(2362), + [sym_array_type] = STATE(2362), + [sym_pointer_type] = STATE(2362), + [sym_wrong_pointer_type] = STATE(2362), + [sym_map_type] = STATE(2362), + [sym_channel_type] = STATE(2362), + [sym_shared_type] = STATE(2362), + [sym_thread_type] = STATE(2362), + [sym_atomic_type] = STATE(2362), + [sym_generic_type] = STATE(2362), + [sym_function_type] = STATE(2362), + [sym_identifier] = ACTIONS(2477), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(17), - [anon_sym_LBRACE] = ACTIONS(3098), - [anon_sym_LPAREN] = ACTIONS(23), - [anon_sym_fn] = ACTIONS(485), - [anon_sym_PLUS] = ACTIONS(31), - [anon_sym_DASH] = ACTIONS(31), - [anon_sym_STAR] = ACTIONS(33), - [anon_sym_struct] = ACTIONS(487), + [anon_sym_DOT] = ACTIONS(1430), + [anon_sym_LBRACE] = ACTIONS(1432), + [anon_sym_LPAREN] = ACTIONS(1434), + [anon_sym_fn] = ACTIONS(1436), + [anon_sym_PLUS] = ACTIONS(2479), + [anon_sym_DASH] = ACTIONS(2479), + [anon_sym_STAR] = ACTIONS(2481), + [anon_sym_struct] = ACTIONS(1442), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(49), - [anon_sym_go] = ACTIONS(51), - [anon_sym_spawn] = ACTIONS(53), - [anon_sym_json_DOTdecode] = ACTIONS(55), - [anon_sym_LBRACK2] = ACTIONS(489), - [anon_sym_TILDE] = ACTIONS(31), - [anon_sym_CARET] = ACTIONS(31), - [anon_sym_AMP] = ACTIONS(59), - [anon_sym_LT_DASH] = ACTIONS(61), - [sym_none] = ACTIONS(63), - [sym_true] = ACTIONS(63), - [sym_false] = ACTIONS(63), - [sym_nil] = ACTIONS(63), - [anon_sym_if] = ACTIONS(65), - [anon_sym_DOLLARif] = ACTIONS(67), - [anon_sym_match] = ACTIONS(69), - [anon_sym_select] = ACTIONS(71), - [anon_sym_lock] = ACTIONS(73), - [anon_sym_rlock] = ACTIONS(73), - [anon_sym_unsafe] = ACTIONS(75), - [anon_sym_sql] = ACTIONS(77), - [sym_int_literal] = ACTIONS(63), - [sym_float_literal] = ACTIONS(79), - [sym_rune_literal] = ACTIONS(79), - [sym_pseudo_compile_time_identifier] = ACTIONS(81), + [anon_sym_BANG] = ACTIONS(2483), + [anon_sym_go] = ACTIONS(2485), + [anon_sym_spawn] = ACTIONS(2487), + [anon_sym_json_DOTdecode] = ACTIONS(1450), + [anon_sym_LBRACK2] = ACTIONS(2489), + [anon_sym_TILDE] = ACTIONS(2479), + [anon_sym_CARET] = ACTIONS(2479), + [anon_sym_AMP] = ACTIONS(2491), + [anon_sym_LT_DASH] = ACTIONS(2493), + [sym_none] = ACTIONS(1458), + [sym_true] = ACTIONS(1458), + [sym_false] = ACTIONS(1458), + [sym_nil] = ACTIONS(1458), + [anon_sym_if] = ACTIONS(1833), + [anon_sym_DOLLARif] = ACTIONS(1462), + [anon_sym_match] = ACTIONS(1464), + [anon_sym_select] = ACTIONS(2495), + [anon_sym_lock] = ACTIONS(2497), + [anon_sym_rlock] = ACTIONS(2497), + [anon_sym_unsafe] = ACTIONS(1839), + [anon_sym_sql] = ACTIONS(1472), + [sym_int_literal] = ACTIONS(1458), + [sym_float_literal] = ACTIONS(1474), + [sym_rune_literal] = ACTIONS(1474), + [sym_pseudo_compile_time_identifier] = ACTIONS(1476), [anon_sym_shared] = ACTIONS(83), [anon_sym_map_LBRACK] = ACTIONS(85), [anon_sym_chan] = ACTIONS(87), [anon_sym_thread] = ACTIONS(89), [anon_sym_atomic] = ACTIONS(91), - [sym___double_quote] = ACTIONS(115), - [sym___single_quote] = ACTIONS(117), - [sym___c_double_quote] = ACTIONS(119), - [sym___c_single_quote] = ACTIONS(121), - [sym___r_double_quote] = ACTIONS(123), - [sym___r_single_quote] = ACTIONS(125), + [sym___double_quote] = ACTIONS(1480), + [sym___single_quote] = ACTIONS(1482), + [sym___c_double_quote] = ACTIONS(1484), + [sym___c_single_quote] = ACTIONS(1486), + [sym___r_double_quote] = ACTIONS(1488), + [sym___r_single_quote] = ACTIONS(1490), }, [655] = { [sym_line_comment] = STATE(655), [sym_block_comment] = STATE(655), - [sym__expression] = STATE(2263), - [sym__expression_without_blocks] = STATE(2300), - [sym__expression_with_blocks] = STATE(2300), - [sym_inc_expression] = STATE(2307), - [sym_dec_expression] = STATE(2307), - [sym_or_block_expression] = STATE(2307), - [sym_option_propagation_expression] = STATE(2307), - [sym_result_propagation_expression] = STATE(2307), - [sym_anon_struct_value_expression] = STATE(2380), - [sym_go_expression] = STATE(2307), - [sym_spawn_expression] = STATE(2307), - [sym_parenthesized_expression] = STATE(2307), - [sym_call_expression] = STATE(2307), - [sym_type_initializer] = STATE(2380), - [sym_function_literal] = STATE(2307), - [sym_reference_expression] = STATE(2311), - [sym_type_reference_expression] = STATE(3541), - [sym_unary_expression] = STATE(2307), - [sym_receive_expression] = STATE(2307), - [sym_binary_expression] = STATE(2307), - [sym_as_type_cast_expression] = STATE(2307), - [sym__max_group] = STATE(2307), - [sym_literal] = STATE(2292), - [sym_map_init_expression] = STATE(2380), - [sym_array_creation] = STATE(2307), - [sym_fixed_array_creation] = STATE(2307), - [sym_selector_expression] = STATE(2307), - [sym_index_expression] = STATE(2307), - [sym_slice_expression] = STATE(2307), - [sym_if_expression] = STATE(2380), - [sym_compile_time_if_expression] = STATE(2380), - [sym_is_expression] = STATE(2307), - [sym_in_expression] = STATE(2307), - [sym_enum_fetch] = STATE(2307), - [sym_match_expression] = STATE(2380), - [sym_select_expression] = STATE(2380), - [sym_lock_expression] = STATE(2380), - [sym_unsafe_expression] = STATE(2380), - [sym_sql_expression] = STATE(2380), - [sym_c_string_literal] = STATE(2308), - [sym_raw_string_literal] = STATE(2308), - [sym_interpreted_string_literal] = STATE(2308), - [sym_mutability_modifiers] = STATE(939), - [sym_plain_type] = STATE(3565), - [sym__plain_type_without_special] = STATE(2302), - [sym_anon_struct_type] = STATE(2303), - [sym_multi_return_type] = STATE(2302), - [sym_result_type] = STATE(2302), - [sym_option_type] = STATE(2302), - [sym_qualified_type] = STATE(3541), - [sym_fixed_array_type] = STATE(2303), - [sym_array_type] = STATE(2303), - [sym_pointer_type] = STATE(2303), - [sym_wrong_pointer_type] = STATE(2303), - [sym_map_type] = STATE(2303), - [sym_channel_type] = STATE(2303), - [sym_shared_type] = STATE(2303), - [sym_thread_type] = STATE(2303), - [sym_atomic_type] = STATE(2303), - [sym_generic_type] = STATE(2303), - [sym_function_type] = STATE(2303), - [sym_identifier] = ACTIONS(1426), + [sym__expression] = STATE(2591), + [sym__expression_without_blocks] = STATE(2347), + [sym__expression_with_blocks] = STATE(2347), + [sym_inc_expression] = STATE(2379), + [sym_dec_expression] = STATE(2379), + [sym_or_block_expression] = STATE(2379), + [sym_option_propagation_expression] = STATE(2379), + [sym_result_propagation_expression] = STATE(2379), + [sym_anon_struct_value_expression] = STATE(2378), + [sym_go_expression] = STATE(2379), + [sym_spawn_expression] = STATE(2379), + [sym_parenthesized_expression] = STATE(2379), + [sym_call_expression] = STATE(2379), + [sym_type_initializer] = STATE(2378), + [sym_function_literal] = STATE(2379), + [sym_reference_expression] = STATE(2377), + [sym_type_reference_expression] = STATE(3460), + [sym_unary_expression] = STATE(2379), + [sym_receive_expression] = STATE(2379), + [sym_binary_expression] = STATE(2379), + [sym_as_type_cast_expression] = STATE(2379), + [sym__max_group] = STATE(2379), + [sym_literal] = STATE(2392), + [sym_map_init_expression] = STATE(2378), + [sym_array_creation] = STATE(2379), + [sym_fixed_array_creation] = STATE(2379), + [sym_selector_expression] = STATE(2379), + [sym_index_expression] = STATE(2379), + [sym_slice_expression] = STATE(2379), + [sym_if_expression] = STATE(2378), + [sym_compile_time_if_expression] = STATE(2378), + [sym_is_expression] = STATE(2379), + [sym_in_expression] = STATE(2379), + [sym_enum_fetch] = STATE(2379), + [sym_match_expression] = STATE(2378), + [sym_select_expression] = STATE(2378), + [sym_lock_expression] = STATE(2378), + [sym_unsafe_expression] = STATE(2378), + [sym_sql_expression] = STATE(2378), + [sym_c_string_literal] = STATE(2401), + [sym_raw_string_literal] = STATE(2401), + [sym_interpreted_string_literal] = STATE(2401), + [sym_mutability_modifiers] = STATE(553), + [sym_plain_type] = STATE(4160), + [sym__plain_type_without_special] = STATE(2360), + [sym_anon_struct_type] = STATE(2362), + [sym_multi_return_type] = STATE(2360), + [sym_result_type] = STATE(2360), + [sym_option_type] = STATE(2360), + [sym_qualified_type] = STATE(3460), + [sym_fixed_array_type] = STATE(2362), + [sym_array_type] = STATE(2362), + [sym_pointer_type] = STATE(2362), + [sym_wrong_pointer_type] = STATE(2362), + [sym_map_type] = STATE(2362), + [sym_channel_type] = STATE(2362), + [sym_shared_type] = STATE(2362), + [sym_thread_type] = STATE(2362), + [sym_atomic_type] = STATE(2362), + [sym_generic_type] = STATE(2362), + [sym_function_type] = STATE(2362), + [sym_identifier] = ACTIONS(2477), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1428), - [anon_sym_LBRACE] = ACTIONS(1430), - [anon_sym_LPAREN] = ACTIONS(1432), - [anon_sym_fn] = ACTIONS(1434), - [anon_sym_PLUS] = ACTIONS(1436), - [anon_sym_DASH] = ACTIONS(1436), - [anon_sym_STAR] = ACTIONS(1438), - [anon_sym_struct] = ACTIONS(1440), + [anon_sym_DOT] = ACTIONS(1430), + [anon_sym_LBRACE] = ACTIONS(1432), + [anon_sym_LPAREN] = ACTIONS(1434), + [anon_sym_fn] = ACTIONS(1436), + [anon_sym_PLUS] = ACTIONS(2479), + [anon_sym_DASH] = ACTIONS(2479), + [anon_sym_STAR] = ACTIONS(2481), + [anon_sym_struct] = ACTIONS(1442), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(1442), - [anon_sym_go] = ACTIONS(1444), - [anon_sym_spawn] = ACTIONS(1446), - [anon_sym_json_DOTdecode] = ACTIONS(1448), - [anon_sym_LBRACK2] = ACTIONS(1450), - [anon_sym_TILDE] = ACTIONS(1436), - [anon_sym_CARET] = ACTIONS(1436), - [anon_sym_AMP] = ACTIONS(1452), - [anon_sym_LT_DASH] = ACTIONS(1454), - [sym_none] = ACTIONS(1456), - [sym_true] = ACTIONS(1456), - [sym_false] = ACTIONS(1456), - [sym_nil] = ACTIONS(1456), - [anon_sym_if] = ACTIONS(1827), - [anon_sym_DOLLARif] = ACTIONS(1460), - [anon_sym_match] = ACTIONS(1462), - [anon_sym_select] = ACTIONS(1464), - [anon_sym_lock] = ACTIONS(1466), - [anon_sym_rlock] = ACTIONS(1466), - [anon_sym_unsafe] = ACTIONS(1833), - [anon_sym_sql] = ACTIONS(1470), - [sym_int_literal] = ACTIONS(1456), - [sym_float_literal] = ACTIONS(1472), - [sym_rune_literal] = ACTIONS(1472), - [sym_pseudo_compile_time_identifier] = ACTIONS(1474), + [anon_sym_BANG] = ACTIONS(2483), + [anon_sym_go] = ACTIONS(2485), + [anon_sym_spawn] = ACTIONS(2487), + [anon_sym_json_DOTdecode] = ACTIONS(1450), + [anon_sym_LBRACK2] = ACTIONS(2489), + [anon_sym_TILDE] = ACTIONS(2479), + [anon_sym_CARET] = ACTIONS(2479), + [anon_sym_AMP] = ACTIONS(2491), + [anon_sym_LT_DASH] = ACTIONS(2493), + [sym_none] = ACTIONS(1458), + [sym_true] = ACTIONS(1458), + [sym_false] = ACTIONS(1458), + [sym_nil] = ACTIONS(1458), + [anon_sym_if] = ACTIONS(1833), + [anon_sym_DOLLARif] = ACTIONS(1462), + [anon_sym_match] = ACTIONS(1464), + [anon_sym_select] = ACTIONS(2495), + [anon_sym_lock] = ACTIONS(2497), + [anon_sym_rlock] = ACTIONS(2497), + [anon_sym_unsafe] = ACTIONS(1839), + [anon_sym_sql] = ACTIONS(1472), + [sym_int_literal] = ACTIONS(1458), + [sym_float_literal] = ACTIONS(1474), + [sym_rune_literal] = ACTIONS(1474), + [sym_pseudo_compile_time_identifier] = ACTIONS(1476), [anon_sym_shared] = ACTIONS(83), [anon_sym_map_LBRACK] = ACTIONS(85), [anon_sym_chan] = ACTIONS(87), [anon_sym_thread] = ACTIONS(89), [anon_sym_atomic] = ACTIONS(91), - [sym___double_quote] = ACTIONS(1478), - [sym___single_quote] = ACTIONS(1480), - [sym___c_double_quote] = ACTIONS(1482), - [sym___c_single_quote] = ACTIONS(1484), - [sym___r_double_quote] = ACTIONS(1486), - [sym___r_single_quote] = ACTIONS(1488), + [sym___double_quote] = ACTIONS(1480), + [sym___single_quote] = ACTIONS(1482), + [sym___c_double_quote] = ACTIONS(1484), + [sym___c_single_quote] = ACTIONS(1486), + [sym___r_double_quote] = ACTIONS(1488), + [sym___r_single_quote] = ACTIONS(1490), }, [656] = { [sym_line_comment] = STATE(656), [sym_block_comment] = STATE(656), - [sym__expression] = STATE(219), - [sym__expression_without_blocks] = STATE(442), - [sym__expression_with_blocks] = STATE(442), - [sym_inc_expression] = STATE(439), - [sym_dec_expression] = STATE(439), - [sym_or_block_expression] = STATE(439), - [sym_option_propagation_expression] = STATE(439), - [sym_result_propagation_expression] = STATE(439), - [sym_anon_struct_value_expression] = STATE(438), - [sym_go_expression] = STATE(439), - [sym_spawn_expression] = STATE(439), - [sym_parenthesized_expression] = STATE(439), - [sym_call_expression] = STATE(439), - [sym_type_initializer] = STATE(438), - [sym_function_literal] = STATE(439), - [sym_reference_expression] = STATE(437), - [sym_type_reference_expression] = STATE(3541), - [sym_unary_expression] = STATE(439), - [sym_receive_expression] = STATE(439), - [sym_binary_expression] = STATE(439), - [sym_as_type_cast_expression] = STATE(439), - [sym__max_group] = STATE(439), - [sym_literal] = STATE(495), - [sym_map_init_expression] = STATE(438), - [sym_array_creation] = STATE(439), - [sym_fixed_array_creation] = STATE(439), - [sym_selector_expression] = STATE(439), - [sym_index_expression] = STATE(439), - [sym_slice_expression] = STATE(439), - [sym_if_expression] = STATE(438), - [sym_compile_time_if_expression] = STATE(438), - [sym_is_expression] = STATE(439), - [sym_in_expression] = STATE(439), - [sym_enum_fetch] = STATE(439), - [sym_match_expression] = STATE(438), - [sym_select_expression] = STATE(438), - [sym_lock_expression] = STATE(438), - [sym_unsafe_expression] = STATE(438), - [sym_sql_expression] = STATE(438), - [sym_c_string_literal] = STATE(496), - [sym_raw_string_literal] = STATE(496), - [sym_interpreted_string_literal] = STATE(496), - [sym_mutability_modifiers] = STATE(862), - [sym_plain_type] = STATE(4049), - [sym__plain_type_without_special] = STATE(2302), - [sym_anon_struct_type] = STATE(2303), - [sym_multi_return_type] = STATE(2302), - [sym_result_type] = STATE(2302), - [sym_option_type] = STATE(2302), - [sym_qualified_type] = STATE(3541), - [sym_fixed_array_type] = STATE(2303), - [sym_array_type] = STATE(2303), - [sym_pointer_type] = STATE(2303), - [sym_wrong_pointer_type] = STATE(2303), - [sym_map_type] = STATE(2303), - [sym_channel_type] = STATE(2303), - [sym_shared_type] = STATE(2303), - [sym_thread_type] = STATE(2303), - [sym_atomic_type] = STATE(2303), - [sym_generic_type] = STATE(2303), - [sym_function_type] = STATE(2303), - [sym_identifier] = ACTIONS(3096), + [sym__expression] = STATE(1771), + [sym__expression_without_blocks] = STATE(1953), + [sym__expression_with_blocks] = STATE(1953), + [sym_inc_expression] = STATE(1955), + [sym_dec_expression] = STATE(1955), + [sym_or_block_expression] = STATE(1955), + [sym_option_propagation_expression] = STATE(1955), + [sym_result_propagation_expression] = STATE(1955), + [sym_anon_struct_value_expression] = STATE(1958), + [sym_go_expression] = STATE(1955), + [sym_spawn_expression] = STATE(1955), + [sym_parenthesized_expression] = STATE(1955), + [sym_call_expression] = STATE(1955), + [sym_type_initializer] = STATE(1958), + [sym_function_literal] = STATE(1955), + [sym_reference_expression] = STATE(1956), + [sym_type_reference_expression] = STATE(3460), + [sym_unary_expression] = STATE(1955), + [sym_receive_expression] = STATE(1955), + [sym_binary_expression] = STATE(1955), + [sym_as_type_cast_expression] = STATE(1955), + [sym__max_group] = STATE(1955), + [sym_literal] = STATE(1943), + [sym_map_init_expression] = STATE(1958), + [sym_array_creation] = STATE(1955), + [sym_fixed_array_creation] = STATE(1955), + [sym_selector_expression] = STATE(1955), + [sym_index_expression] = STATE(1955), + [sym_slice_expression] = STATE(1955), + [sym_if_expression] = STATE(1958), + [sym_compile_time_if_expression] = STATE(1958), + [sym_is_expression] = STATE(1955), + [sym_in_expression] = STATE(1955), + [sym_enum_fetch] = STATE(1955), + [sym_match_expression] = STATE(1958), + [sym_select_expression] = STATE(1958), + [sym_lock_expression] = STATE(1958), + [sym_unsafe_expression] = STATE(1958), + [sym_sql_expression] = STATE(1958), + [sym_c_string_literal] = STATE(1942), + [sym_raw_string_literal] = STATE(1942), + [sym_interpreted_string_literal] = STATE(1942), + [sym_mutability_modifiers] = STATE(601), + [sym_plain_type] = STATE(4266), + [sym__plain_type_without_special] = STATE(2360), + [sym_anon_struct_type] = STATE(2362), + [sym_multi_return_type] = STATE(2360), + [sym_result_type] = STATE(2360), + [sym_option_type] = STATE(2360), + [sym_qualified_type] = STATE(3460), + [sym_fixed_array_type] = STATE(2362), + [sym_array_type] = STATE(2362), + [sym_pointer_type] = STATE(2362), + [sym_wrong_pointer_type] = STATE(2362), + [sym_map_type] = STATE(2362), + [sym_channel_type] = STATE(2362), + [sym_shared_type] = STATE(2362), + [sym_thread_type] = STATE(2362), + [sym_atomic_type] = STATE(2362), + [sym_generic_type] = STATE(2362), + [sym_function_type] = STATE(2362), + [sym_identifier] = ACTIONS(1681), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(17), - [anon_sym_LBRACE] = ACTIONS(3098), - [anon_sym_LPAREN] = ACTIONS(23), - [anon_sym_fn] = ACTIONS(485), - [anon_sym_PLUS] = ACTIONS(31), - [anon_sym_DASH] = ACTIONS(31), - [anon_sym_STAR] = ACTIONS(33), - [anon_sym_struct] = ACTIONS(487), + [anon_sym_DOT] = ACTIONS(705), + [anon_sym_LBRACE] = ACTIONS(3118), + [anon_sym_LPAREN] = ACTIONS(709), + [anon_sym_fn] = ACTIONS(711), + [anon_sym_PLUS] = ACTIONS(713), + [anon_sym_DASH] = ACTIONS(713), + [anon_sym_STAR] = ACTIONS(715), + [anon_sym_struct] = ACTIONS(717), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(49), - [anon_sym_go] = ACTIONS(51), - [anon_sym_spawn] = ACTIONS(53), - [anon_sym_json_DOTdecode] = ACTIONS(55), - [anon_sym_LBRACK2] = ACTIONS(489), - [anon_sym_TILDE] = ACTIONS(31), - [anon_sym_CARET] = ACTIONS(31), - [anon_sym_AMP] = ACTIONS(59), - [anon_sym_LT_DASH] = ACTIONS(61), - [sym_none] = ACTIONS(63), - [sym_true] = ACTIONS(63), - [sym_false] = ACTIONS(63), - [sym_nil] = ACTIONS(63), - [anon_sym_if] = ACTIONS(65), - [anon_sym_DOLLARif] = ACTIONS(67), - [anon_sym_match] = ACTIONS(69), - [anon_sym_select] = ACTIONS(71), - [anon_sym_lock] = ACTIONS(73), - [anon_sym_rlock] = ACTIONS(73), - [anon_sym_unsafe] = ACTIONS(75), - [anon_sym_sql] = ACTIONS(77), - [sym_int_literal] = ACTIONS(63), - [sym_float_literal] = ACTIONS(79), - [sym_rune_literal] = ACTIONS(79), - [sym_pseudo_compile_time_identifier] = ACTIONS(81), + [anon_sym_BANG] = ACTIONS(721), + [anon_sym_go] = ACTIONS(723), + [anon_sym_spawn] = ACTIONS(725), + [anon_sym_json_DOTdecode] = ACTIONS(727), + [anon_sym_LBRACK2] = ACTIONS(729), + [anon_sym_TILDE] = ACTIONS(713), + [anon_sym_CARET] = ACTIONS(713), + [anon_sym_AMP] = ACTIONS(731), + [anon_sym_LT_DASH] = ACTIONS(733), + [sym_none] = ACTIONS(735), + [sym_true] = ACTIONS(735), + [sym_false] = ACTIONS(735), + [sym_nil] = ACTIONS(735), + [anon_sym_if] = ACTIONS(737), + [anon_sym_DOLLARif] = ACTIONS(739), + [anon_sym_match] = ACTIONS(741), + [anon_sym_select] = ACTIONS(743), + [anon_sym_lock] = ACTIONS(745), + [anon_sym_rlock] = ACTIONS(745), + [anon_sym_unsafe] = ACTIONS(747), + [anon_sym_sql] = ACTIONS(749), + [sym_int_literal] = ACTIONS(735), + [sym_float_literal] = ACTIONS(751), + [sym_rune_literal] = ACTIONS(751), + [sym_pseudo_compile_time_identifier] = ACTIONS(753), [anon_sym_shared] = ACTIONS(83), [anon_sym_map_LBRACK] = ACTIONS(85), [anon_sym_chan] = ACTIONS(87), [anon_sym_thread] = ACTIONS(89), [anon_sym_atomic] = ACTIONS(91), - [sym___double_quote] = ACTIONS(115), - [sym___single_quote] = ACTIONS(117), - [sym___c_double_quote] = ACTIONS(119), - [sym___c_single_quote] = ACTIONS(121), - [sym___r_double_quote] = ACTIONS(123), - [sym___r_single_quote] = ACTIONS(125), + [sym___double_quote] = ACTIONS(755), + [sym___single_quote] = ACTIONS(757), + [sym___c_double_quote] = ACTIONS(759), + [sym___c_single_quote] = ACTIONS(761), + [sym___r_double_quote] = ACTIONS(763), + [sym___r_single_quote] = ACTIONS(765), }, [657] = { [sym_line_comment] = STATE(657), [sym_block_comment] = STATE(657), - [sym__expression] = STATE(224), - [sym__expression_without_blocks] = STATE(442), - [sym__expression_with_blocks] = STATE(442), - [sym_inc_expression] = STATE(439), - [sym_dec_expression] = STATE(439), - [sym_or_block_expression] = STATE(439), - [sym_option_propagation_expression] = STATE(439), - [sym_result_propagation_expression] = STATE(439), - [sym_anon_struct_value_expression] = STATE(438), - [sym_go_expression] = STATE(439), - [sym_spawn_expression] = STATE(439), - [sym_parenthesized_expression] = STATE(439), - [sym_call_expression] = STATE(439), - [sym_type_initializer] = STATE(438), - [sym_function_literal] = STATE(439), - [sym_reference_expression] = STATE(437), - [sym_type_reference_expression] = STATE(3541), - [sym_unary_expression] = STATE(439), - [sym_receive_expression] = STATE(439), - [sym_binary_expression] = STATE(439), - [sym_as_type_cast_expression] = STATE(439), - [sym__max_group] = STATE(439), - [sym_literal] = STATE(495), - [sym_map_init_expression] = STATE(438), - [sym_array_creation] = STATE(439), - [sym_fixed_array_creation] = STATE(439), - [sym_selector_expression] = STATE(439), - [sym_index_expression] = STATE(439), - [sym_slice_expression] = STATE(439), - [sym_if_expression] = STATE(438), - [sym_compile_time_if_expression] = STATE(438), - [sym_is_expression] = STATE(439), - [sym_in_expression] = STATE(439), - [sym_enum_fetch] = STATE(439), - [sym_match_expression] = STATE(438), - [sym_select_expression] = STATE(438), - [sym_lock_expression] = STATE(438), - [sym_unsafe_expression] = STATE(438), - [sym_sql_expression] = STATE(438), - [sym_c_string_literal] = STATE(496), - [sym_raw_string_literal] = STATE(496), - [sym_interpreted_string_literal] = STATE(496), - [sym_mutability_modifiers] = STATE(862), - [sym_plain_type] = STATE(4049), - [sym__plain_type_without_special] = STATE(2302), - [sym_anon_struct_type] = STATE(2303), - [sym_multi_return_type] = STATE(2302), - [sym_result_type] = STATE(2302), - [sym_option_type] = STATE(2302), - [sym_qualified_type] = STATE(3541), - [sym_fixed_array_type] = STATE(2303), - [sym_array_type] = STATE(2303), - [sym_pointer_type] = STATE(2303), - [sym_wrong_pointer_type] = STATE(2303), - [sym_map_type] = STATE(2303), - [sym_channel_type] = STATE(2303), - [sym_shared_type] = STATE(2303), - [sym_thread_type] = STATE(2303), - [sym_atomic_type] = STATE(2303), - [sym_generic_type] = STATE(2303), - [sym_function_type] = STATE(2303), - [sym_identifier] = ACTIONS(3096), + [sym__expression] = STATE(965), + [sym__expression_without_blocks] = STATE(1086), + [sym__expression_with_blocks] = STATE(1086), + [sym_inc_expression] = STATE(1088), + [sym_dec_expression] = STATE(1088), + [sym_or_block_expression] = STATE(1088), + [sym_option_propagation_expression] = STATE(1088), + [sym_result_propagation_expression] = STATE(1088), + [sym_anon_struct_value_expression] = STATE(1025), + [sym_go_expression] = STATE(1088), + [sym_spawn_expression] = STATE(1088), + [sym_parenthesized_expression] = STATE(1088), + [sym_call_expression] = STATE(1088), + [sym_type_initializer] = STATE(1025), + [sym_function_literal] = STATE(1088), + [sym_reference_expression] = STATE(1024), + [sym_type_reference_expression] = STATE(3460), + [sym_unary_expression] = STATE(1088), + [sym_receive_expression] = STATE(1088), + [sym_binary_expression] = STATE(1088), + [sym_as_type_cast_expression] = STATE(1088), + [sym__max_group] = STATE(1088), + [sym_literal] = STATE(1078), + [sym_map_init_expression] = STATE(1025), + [sym_array_creation] = STATE(1088), + [sym_fixed_array_creation] = STATE(1088), + [sym_selector_expression] = STATE(1088), + [sym_index_expression] = STATE(1088), + [sym_slice_expression] = STATE(1088), + [sym_if_expression] = STATE(1025), + [sym_compile_time_if_expression] = STATE(1025), + [sym_is_expression] = STATE(1088), + [sym_in_expression] = STATE(1088), + [sym_enum_fetch] = STATE(1088), + [sym_match_expression] = STATE(1025), + [sym_select_expression] = STATE(1025), + [sym_lock_expression] = STATE(1025), + [sym_unsafe_expression] = STATE(1025), + [sym_sql_expression] = STATE(1025), + [sym_c_string_literal] = STATE(993), + [sym_raw_string_literal] = STATE(993), + [sym_interpreted_string_literal] = STATE(993), + [sym_mutability_modifiers] = STATE(618), + [sym_plain_type] = STATE(4090), + [sym__plain_type_without_special] = STATE(2360), + [sym_anon_struct_type] = STATE(2362), + [sym_multi_return_type] = STATE(2360), + [sym_result_type] = STATE(2360), + [sym_option_type] = STATE(2360), + [sym_qualified_type] = STATE(3460), + [sym_fixed_array_type] = STATE(2362), + [sym_array_type] = STATE(2362), + [sym_pointer_type] = STATE(2362), + [sym_wrong_pointer_type] = STATE(2362), + [sym_map_type] = STATE(2362), + [sym_channel_type] = STATE(2362), + [sym_shared_type] = STATE(2362), + [sym_thread_type] = STATE(2362), + [sym_atomic_type] = STATE(2362), + [sym_generic_type] = STATE(2362), + [sym_function_type] = STATE(2362), + [sym_identifier] = ACTIONS(493), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(17), - [anon_sym_LBRACE] = ACTIONS(3098), - [anon_sym_LPAREN] = ACTIONS(23), - [anon_sym_fn] = ACTIONS(485), - [anon_sym_PLUS] = ACTIONS(31), - [anon_sym_DASH] = ACTIONS(31), - [anon_sym_STAR] = ACTIONS(33), - [anon_sym_struct] = ACTIONS(487), + [anon_sym_DOT] = ACTIONS(501), + [anon_sym_LBRACE] = ACTIONS(2235), + [anon_sym_LPAREN] = ACTIONS(2237), + [anon_sym_fn] = ACTIONS(507), + [anon_sym_PLUS] = ACTIONS(3366), + [anon_sym_DASH] = ACTIONS(3366), + [anon_sym_STAR] = ACTIONS(3368), + [anon_sym_struct] = ACTIONS(513), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(49), - [anon_sym_go] = ACTIONS(51), - [anon_sym_spawn] = ACTIONS(53), - [anon_sym_json_DOTdecode] = ACTIONS(55), - [anon_sym_LBRACK2] = ACTIONS(489), - [anon_sym_TILDE] = ACTIONS(31), - [anon_sym_CARET] = ACTIONS(31), - [anon_sym_AMP] = ACTIONS(59), - [anon_sym_LT_DASH] = ACTIONS(61), - [sym_none] = ACTIONS(63), - [sym_true] = ACTIONS(63), - [sym_false] = ACTIONS(63), - [sym_nil] = ACTIONS(63), - [anon_sym_if] = ACTIONS(65), - [anon_sym_DOLLARif] = ACTIONS(67), - [anon_sym_match] = ACTIONS(69), - [anon_sym_select] = ACTIONS(71), - [anon_sym_lock] = ACTIONS(73), - [anon_sym_rlock] = ACTIONS(73), - [anon_sym_unsafe] = ACTIONS(75), - [anon_sym_sql] = ACTIONS(77), - [sym_int_literal] = ACTIONS(63), - [sym_float_literal] = ACTIONS(79), - [sym_rune_literal] = ACTIONS(79), - [sym_pseudo_compile_time_identifier] = ACTIONS(81), + [anon_sym_BANG] = ACTIONS(3370), + [anon_sym_go] = ACTIONS(3372), + [anon_sym_spawn] = ACTIONS(3374), + [anon_sym_json_DOTdecode] = ACTIONS(2245), + [anon_sym_LBRACK2] = ACTIONS(2247), + [anon_sym_TILDE] = ACTIONS(3366), + [anon_sym_CARET] = ACTIONS(3366), + [anon_sym_AMP] = ACTIONS(3376), + [anon_sym_LT_DASH] = ACTIONS(3378), + [sym_none] = ACTIONS(531), + [sym_true] = ACTIONS(531), + [sym_false] = ACTIONS(531), + [sym_nil] = ACTIONS(531), + [anon_sym_if] = ACTIONS(533), + [anon_sym_DOLLARif] = ACTIONS(535), + [anon_sym_match] = ACTIONS(537), + [anon_sym_select] = ACTIONS(3380), + [anon_sym_lock] = ACTIONS(3382), + [anon_sym_rlock] = ACTIONS(3382), + [anon_sym_unsafe] = ACTIONS(543), + [anon_sym_sql] = ACTIONS(545), + [sym_int_literal] = ACTIONS(531), + [sym_float_literal] = ACTIONS(2253), + [sym_rune_literal] = ACTIONS(2253), + [sym_pseudo_compile_time_identifier] = ACTIONS(547), [anon_sym_shared] = ACTIONS(83), [anon_sym_map_LBRACK] = ACTIONS(85), [anon_sym_chan] = ACTIONS(87), [anon_sym_thread] = ACTIONS(89), [anon_sym_atomic] = ACTIONS(91), - [sym___double_quote] = ACTIONS(115), - [sym___single_quote] = ACTIONS(117), - [sym___c_double_quote] = ACTIONS(119), - [sym___c_single_quote] = ACTIONS(121), - [sym___r_double_quote] = ACTIONS(123), - [sym___r_single_quote] = ACTIONS(125), + [sym___double_quote] = ACTIONS(2255), + [sym___single_quote] = ACTIONS(2257), + [sym___c_double_quote] = ACTIONS(2259), + [sym___c_single_quote] = ACTIONS(2261), + [sym___r_double_quote] = ACTIONS(2263), + [sym___r_single_quote] = ACTIONS(2265), }, [658] = { [sym_line_comment] = STATE(658), [sym_block_comment] = STATE(658), - [sym__expression] = STATE(2263), - [sym__expression_without_blocks] = STATE(2300), - [sym__expression_with_blocks] = STATE(2300), - [sym_inc_expression] = STATE(2307), - [sym_dec_expression] = STATE(2307), - [sym_or_block_expression] = STATE(2307), - [sym_option_propagation_expression] = STATE(2307), - [sym_result_propagation_expression] = STATE(2307), - [sym_anon_struct_value_expression] = STATE(2380), - [sym_go_expression] = STATE(2307), - [sym_spawn_expression] = STATE(2307), - [sym_parenthesized_expression] = STATE(2307), - [sym_call_expression] = STATE(2307), - [sym_type_initializer] = STATE(2380), - [sym_function_literal] = STATE(2307), - [sym_reference_expression] = STATE(2311), - [sym_type_reference_expression] = STATE(3541), - [sym_unary_expression] = STATE(2307), - [sym_receive_expression] = STATE(2307), - [sym_binary_expression] = STATE(2307), - [sym_as_type_cast_expression] = STATE(2307), - [sym__max_group] = STATE(2307), - [sym_literal] = STATE(2292), - [sym_map_init_expression] = STATE(2380), - [sym_array_creation] = STATE(2307), - [sym_fixed_array_creation] = STATE(2307), - [sym_selector_expression] = STATE(2307), - [sym_index_expression] = STATE(2307), - [sym_slice_expression] = STATE(2307), - [sym_if_expression] = STATE(2380), - [sym_compile_time_if_expression] = STATE(2380), - [sym_is_expression] = STATE(2307), - [sym_in_expression] = STATE(2307), - [sym_enum_fetch] = STATE(2307), - [sym_match_expression] = STATE(2380), - [sym_select_expression] = STATE(2380), - [sym_lock_expression] = STATE(2380), - [sym_unsafe_expression] = STATE(2380), - [sym_sql_expression] = STATE(2380), - [sym_c_string_literal] = STATE(2308), - [sym_raw_string_literal] = STATE(2308), - [sym_interpreted_string_literal] = STATE(2308), - [sym_mutability_modifiers] = STATE(939), - [sym_plain_type] = STATE(3560), - [sym__plain_type_without_special] = STATE(2302), - [sym_anon_struct_type] = STATE(2303), - [sym_multi_return_type] = STATE(2302), - [sym_result_type] = STATE(2302), - [sym_option_type] = STATE(2302), - [sym_qualified_type] = STATE(3541), - [sym_fixed_array_type] = STATE(2303), - [sym_array_type] = STATE(2303), - [sym_pointer_type] = STATE(2303), - [sym_wrong_pointer_type] = STATE(2303), - [sym_map_type] = STATE(2303), - [sym_channel_type] = STATE(2303), - [sym_shared_type] = STATE(2303), - [sym_thread_type] = STATE(2303), - [sym_atomic_type] = STATE(2303), - [sym_generic_type] = STATE(2303), - [sym_function_type] = STATE(2303), - [sym_identifier] = ACTIONS(1426), + [sym__expression] = STATE(965), + [sym__expression_without_blocks] = STATE(1086), + [sym__expression_with_blocks] = STATE(1086), + [sym_inc_expression] = STATE(1088), + [sym_dec_expression] = STATE(1088), + [sym_or_block_expression] = STATE(1088), + [sym_option_propagation_expression] = STATE(1088), + [sym_result_propagation_expression] = STATE(1088), + [sym_anon_struct_value_expression] = STATE(1025), + [sym_go_expression] = STATE(1088), + [sym_spawn_expression] = STATE(1088), + [sym_parenthesized_expression] = STATE(1088), + [sym_call_expression] = STATE(1088), + [sym_type_initializer] = STATE(1025), + [sym_function_literal] = STATE(1088), + [sym_reference_expression] = STATE(1024), + [sym_type_reference_expression] = STATE(3460), + [sym_unary_expression] = STATE(1088), + [sym_receive_expression] = STATE(1088), + [sym_binary_expression] = STATE(1088), + [sym_as_type_cast_expression] = STATE(1088), + [sym__max_group] = STATE(1088), + [sym_literal] = STATE(1078), + [sym_map_init_expression] = STATE(1025), + [sym_array_creation] = STATE(1088), + [sym_fixed_array_creation] = STATE(1088), + [sym_selector_expression] = STATE(1088), + [sym_index_expression] = STATE(1088), + [sym_slice_expression] = STATE(1088), + [sym_if_expression] = STATE(1025), + [sym_compile_time_if_expression] = STATE(1025), + [sym_is_expression] = STATE(1088), + [sym_in_expression] = STATE(1088), + [sym_enum_fetch] = STATE(1088), + [sym_match_expression] = STATE(1025), + [sym_select_expression] = STATE(1025), + [sym_lock_expression] = STATE(1025), + [sym_unsafe_expression] = STATE(1025), + [sym_sql_expression] = STATE(1025), + [sym_c_string_literal] = STATE(993), + [sym_raw_string_literal] = STATE(993), + [sym_interpreted_string_literal] = STATE(993), + [sym_mutability_modifiers] = STATE(618), + [sym_plain_type] = STATE(4114), + [sym__plain_type_without_special] = STATE(2360), + [sym_anon_struct_type] = STATE(2362), + [sym_multi_return_type] = STATE(2360), + [sym_result_type] = STATE(2360), + [sym_option_type] = STATE(2360), + [sym_qualified_type] = STATE(3460), + [sym_fixed_array_type] = STATE(2362), + [sym_array_type] = STATE(2362), + [sym_pointer_type] = STATE(2362), + [sym_wrong_pointer_type] = STATE(2362), + [sym_map_type] = STATE(2362), + [sym_channel_type] = STATE(2362), + [sym_shared_type] = STATE(2362), + [sym_thread_type] = STATE(2362), + [sym_atomic_type] = STATE(2362), + [sym_generic_type] = STATE(2362), + [sym_function_type] = STATE(2362), + [sym_identifier] = ACTIONS(493), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1428), - [anon_sym_LBRACE] = ACTIONS(1430), - [anon_sym_LPAREN] = ACTIONS(1432), - [anon_sym_fn] = ACTIONS(1434), - [anon_sym_PLUS] = ACTIONS(1436), - [anon_sym_DASH] = ACTIONS(1436), - [anon_sym_STAR] = ACTIONS(1438), - [anon_sym_struct] = ACTIONS(1440), + [anon_sym_DOT] = ACTIONS(501), + [anon_sym_LBRACE] = ACTIONS(2235), + [anon_sym_LPAREN] = ACTIONS(2237), + [anon_sym_fn] = ACTIONS(507), + [anon_sym_PLUS] = ACTIONS(3366), + [anon_sym_DASH] = ACTIONS(3366), + [anon_sym_STAR] = ACTIONS(3368), + [anon_sym_struct] = ACTIONS(513), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(1442), - [anon_sym_go] = ACTIONS(1444), - [anon_sym_spawn] = ACTIONS(1446), - [anon_sym_json_DOTdecode] = ACTIONS(1448), - [anon_sym_LBRACK2] = ACTIONS(1450), - [anon_sym_TILDE] = ACTIONS(1436), - [anon_sym_CARET] = ACTIONS(1436), - [anon_sym_AMP] = ACTIONS(1452), - [anon_sym_LT_DASH] = ACTIONS(1454), - [sym_none] = ACTIONS(1456), - [sym_true] = ACTIONS(1456), - [sym_false] = ACTIONS(1456), - [sym_nil] = ACTIONS(1456), - [anon_sym_if] = ACTIONS(1827), - [anon_sym_DOLLARif] = ACTIONS(1460), - [anon_sym_match] = ACTIONS(1462), - [anon_sym_select] = ACTIONS(1464), - [anon_sym_lock] = ACTIONS(1466), - [anon_sym_rlock] = ACTIONS(1466), - [anon_sym_unsafe] = ACTIONS(1833), - [anon_sym_sql] = ACTIONS(1470), - [sym_int_literal] = ACTIONS(1456), - [sym_float_literal] = ACTIONS(1472), - [sym_rune_literal] = ACTIONS(1472), - [sym_pseudo_compile_time_identifier] = ACTIONS(1474), + [anon_sym_BANG] = ACTIONS(3370), + [anon_sym_go] = ACTIONS(3372), + [anon_sym_spawn] = ACTIONS(3374), + [anon_sym_json_DOTdecode] = ACTIONS(2245), + [anon_sym_LBRACK2] = ACTIONS(2247), + [anon_sym_TILDE] = ACTIONS(3366), + [anon_sym_CARET] = ACTIONS(3366), + [anon_sym_AMP] = ACTIONS(3376), + [anon_sym_LT_DASH] = ACTIONS(3378), + [sym_none] = ACTIONS(531), + [sym_true] = ACTIONS(531), + [sym_false] = ACTIONS(531), + [sym_nil] = ACTIONS(531), + [anon_sym_if] = ACTIONS(533), + [anon_sym_DOLLARif] = ACTIONS(535), + [anon_sym_match] = ACTIONS(537), + [anon_sym_select] = ACTIONS(3380), + [anon_sym_lock] = ACTIONS(3382), + [anon_sym_rlock] = ACTIONS(3382), + [anon_sym_unsafe] = ACTIONS(543), + [anon_sym_sql] = ACTIONS(545), + [sym_int_literal] = ACTIONS(531), + [sym_float_literal] = ACTIONS(2253), + [sym_rune_literal] = ACTIONS(2253), + [sym_pseudo_compile_time_identifier] = ACTIONS(547), [anon_sym_shared] = ACTIONS(83), [anon_sym_map_LBRACK] = ACTIONS(85), [anon_sym_chan] = ACTIONS(87), [anon_sym_thread] = ACTIONS(89), [anon_sym_atomic] = ACTIONS(91), - [sym___double_quote] = ACTIONS(1478), - [sym___single_quote] = ACTIONS(1480), - [sym___c_double_quote] = ACTIONS(1482), - [sym___c_single_quote] = ACTIONS(1484), - [sym___r_double_quote] = ACTIONS(1486), - [sym___r_single_quote] = ACTIONS(1488), + [sym___double_quote] = ACTIONS(2255), + [sym___single_quote] = ACTIONS(2257), + [sym___c_double_quote] = ACTIONS(2259), + [sym___c_single_quote] = ACTIONS(2261), + [sym___r_double_quote] = ACTIONS(2263), + [sym___r_single_quote] = ACTIONS(2265), }, [659] = { [sym_line_comment] = STATE(659), [sym_block_comment] = STATE(659), - [sym__expression] = STATE(2263), - [sym__expression_without_blocks] = STATE(2300), - [sym__expression_with_blocks] = STATE(2300), - [sym_inc_expression] = STATE(2307), - [sym_dec_expression] = STATE(2307), - [sym_or_block_expression] = STATE(2307), - [sym_option_propagation_expression] = STATE(2307), - [sym_result_propagation_expression] = STATE(2307), - [sym_anon_struct_value_expression] = STATE(2380), - [sym_go_expression] = STATE(2307), - [sym_spawn_expression] = STATE(2307), - [sym_parenthesized_expression] = STATE(2307), - [sym_call_expression] = STATE(2307), - [sym_type_initializer] = STATE(2380), - [sym_function_literal] = STATE(2307), - [sym_reference_expression] = STATE(2311), - [sym_type_reference_expression] = STATE(3541), - [sym_unary_expression] = STATE(2307), - [sym_receive_expression] = STATE(2307), - [sym_binary_expression] = STATE(2307), - [sym_as_type_cast_expression] = STATE(2307), - [sym__max_group] = STATE(2307), - [sym_literal] = STATE(2292), - [sym_map_init_expression] = STATE(2380), - [sym_array_creation] = STATE(2307), - [sym_fixed_array_creation] = STATE(2307), - [sym_selector_expression] = STATE(2307), - [sym_index_expression] = STATE(2307), - [sym_slice_expression] = STATE(2307), - [sym_if_expression] = STATE(2380), - [sym_compile_time_if_expression] = STATE(2380), - [sym_is_expression] = STATE(2307), - [sym_in_expression] = STATE(2307), - [sym_enum_fetch] = STATE(2307), - [sym_match_expression] = STATE(2380), - [sym_select_expression] = STATE(2380), - [sym_lock_expression] = STATE(2380), - [sym_unsafe_expression] = STATE(2380), - [sym_sql_expression] = STATE(2380), - [sym_c_string_literal] = STATE(2308), - [sym_raw_string_literal] = STATE(2308), - [sym_interpreted_string_literal] = STATE(2308), - [sym_mutability_modifiers] = STATE(939), - [sym_plain_type] = STATE(4297), - [sym__plain_type_without_special] = STATE(2302), - [sym_anon_struct_type] = STATE(2303), - [sym_multi_return_type] = STATE(2302), - [sym_result_type] = STATE(2302), - [sym_option_type] = STATE(2302), - [sym_qualified_type] = STATE(3541), - [sym_fixed_array_type] = STATE(2303), - [sym_array_type] = STATE(2303), - [sym_pointer_type] = STATE(2303), - [sym_wrong_pointer_type] = STATE(2303), - [sym_map_type] = STATE(2303), - [sym_channel_type] = STATE(2303), - [sym_shared_type] = STATE(2303), - [sym_thread_type] = STATE(2303), - [sym_atomic_type] = STATE(2303), - [sym_generic_type] = STATE(2303), - [sym_function_type] = STATE(2303), - [sym_identifier] = ACTIONS(1426), + [sym__expression] = STATE(965), + [sym__expression_without_blocks] = STATE(1086), + [sym__expression_with_blocks] = STATE(1086), + [sym_inc_expression] = STATE(1088), + [sym_dec_expression] = STATE(1088), + [sym_or_block_expression] = STATE(1088), + [sym_option_propagation_expression] = STATE(1088), + [sym_result_propagation_expression] = STATE(1088), + [sym_anon_struct_value_expression] = STATE(1025), + [sym_go_expression] = STATE(1088), + [sym_spawn_expression] = STATE(1088), + [sym_parenthesized_expression] = STATE(1088), + [sym_call_expression] = STATE(1088), + [sym_type_initializer] = STATE(1025), + [sym_function_literal] = STATE(1088), + [sym_reference_expression] = STATE(1024), + [sym_type_reference_expression] = STATE(3460), + [sym_unary_expression] = STATE(1088), + [sym_receive_expression] = STATE(1088), + [sym_binary_expression] = STATE(1088), + [sym_as_type_cast_expression] = STATE(1088), + [sym__max_group] = STATE(1088), + [sym_literal] = STATE(1078), + [sym_map_init_expression] = STATE(1025), + [sym_array_creation] = STATE(1088), + [sym_fixed_array_creation] = STATE(1088), + [sym_selector_expression] = STATE(1088), + [sym_index_expression] = STATE(1088), + [sym_slice_expression] = STATE(1088), + [sym_if_expression] = STATE(1025), + [sym_compile_time_if_expression] = STATE(1025), + [sym_is_expression] = STATE(1088), + [sym_in_expression] = STATE(1088), + [sym_enum_fetch] = STATE(1088), + [sym_match_expression] = STATE(1025), + [sym_select_expression] = STATE(1025), + [sym_lock_expression] = STATE(1025), + [sym_unsafe_expression] = STATE(1025), + [sym_sql_expression] = STATE(1025), + [sym_c_string_literal] = STATE(993), + [sym_raw_string_literal] = STATE(993), + [sym_interpreted_string_literal] = STATE(993), + [sym_mutability_modifiers] = STATE(618), + [sym_plain_type] = STATE(4119), + [sym__plain_type_without_special] = STATE(2360), + [sym_anon_struct_type] = STATE(2362), + [sym_multi_return_type] = STATE(2360), + [sym_result_type] = STATE(2360), + [sym_option_type] = STATE(2360), + [sym_qualified_type] = STATE(3460), + [sym_fixed_array_type] = STATE(2362), + [sym_array_type] = STATE(2362), + [sym_pointer_type] = STATE(2362), + [sym_wrong_pointer_type] = STATE(2362), + [sym_map_type] = STATE(2362), + [sym_channel_type] = STATE(2362), + [sym_shared_type] = STATE(2362), + [sym_thread_type] = STATE(2362), + [sym_atomic_type] = STATE(2362), + [sym_generic_type] = STATE(2362), + [sym_function_type] = STATE(2362), + [sym_identifier] = ACTIONS(493), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1428), - [anon_sym_LBRACE] = ACTIONS(1430), - [anon_sym_LPAREN] = ACTIONS(1432), - [anon_sym_fn] = ACTIONS(1434), - [anon_sym_PLUS] = ACTIONS(1436), - [anon_sym_DASH] = ACTIONS(1436), - [anon_sym_STAR] = ACTIONS(1438), - [anon_sym_struct] = ACTIONS(1440), + [anon_sym_DOT] = ACTIONS(501), + [anon_sym_LBRACE] = ACTIONS(2235), + [anon_sym_LPAREN] = ACTIONS(2237), + [anon_sym_fn] = ACTIONS(507), + [anon_sym_PLUS] = ACTIONS(3366), + [anon_sym_DASH] = ACTIONS(3366), + [anon_sym_STAR] = ACTIONS(3368), + [anon_sym_struct] = ACTIONS(513), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(1442), - [anon_sym_go] = ACTIONS(1444), - [anon_sym_spawn] = ACTIONS(1446), - [anon_sym_json_DOTdecode] = ACTIONS(1448), - [anon_sym_LBRACK2] = ACTIONS(1450), - [anon_sym_TILDE] = ACTIONS(1436), - [anon_sym_CARET] = ACTIONS(1436), - [anon_sym_AMP] = ACTIONS(1452), - [anon_sym_LT_DASH] = ACTIONS(1454), - [sym_none] = ACTIONS(1456), - [sym_true] = ACTIONS(1456), - [sym_false] = ACTIONS(1456), - [sym_nil] = ACTIONS(1456), - [anon_sym_if] = ACTIONS(1827), - [anon_sym_DOLLARif] = ACTIONS(1460), - [anon_sym_match] = ACTIONS(1462), - [anon_sym_select] = ACTIONS(1464), - [anon_sym_lock] = ACTIONS(1466), - [anon_sym_rlock] = ACTIONS(1466), - [anon_sym_unsafe] = ACTIONS(1833), - [anon_sym_sql] = ACTIONS(1470), - [sym_int_literal] = ACTIONS(1456), - [sym_float_literal] = ACTIONS(1472), - [sym_rune_literal] = ACTIONS(1472), - [sym_pseudo_compile_time_identifier] = ACTIONS(1474), + [anon_sym_BANG] = ACTIONS(3370), + [anon_sym_go] = ACTIONS(3372), + [anon_sym_spawn] = ACTIONS(3374), + [anon_sym_json_DOTdecode] = ACTIONS(2245), + [anon_sym_LBRACK2] = ACTIONS(2247), + [anon_sym_TILDE] = ACTIONS(3366), + [anon_sym_CARET] = ACTIONS(3366), + [anon_sym_AMP] = ACTIONS(3376), + [anon_sym_LT_DASH] = ACTIONS(3378), + [sym_none] = ACTIONS(531), + [sym_true] = ACTIONS(531), + [sym_false] = ACTIONS(531), + [sym_nil] = ACTIONS(531), + [anon_sym_if] = ACTIONS(533), + [anon_sym_DOLLARif] = ACTIONS(535), + [anon_sym_match] = ACTIONS(537), + [anon_sym_select] = ACTIONS(3380), + [anon_sym_lock] = ACTIONS(3382), + [anon_sym_rlock] = ACTIONS(3382), + [anon_sym_unsafe] = ACTIONS(543), + [anon_sym_sql] = ACTIONS(545), + [sym_int_literal] = ACTIONS(531), + [sym_float_literal] = ACTIONS(2253), + [sym_rune_literal] = ACTIONS(2253), + [sym_pseudo_compile_time_identifier] = ACTIONS(547), [anon_sym_shared] = ACTIONS(83), [anon_sym_map_LBRACK] = ACTIONS(85), [anon_sym_chan] = ACTIONS(87), [anon_sym_thread] = ACTIONS(89), [anon_sym_atomic] = ACTIONS(91), - [sym___double_quote] = ACTIONS(1478), - [sym___single_quote] = ACTIONS(1480), - [sym___c_double_quote] = ACTIONS(1482), - [sym___c_single_quote] = ACTIONS(1484), - [sym___r_double_quote] = ACTIONS(1486), - [sym___r_single_quote] = ACTIONS(1488), + [sym___double_quote] = ACTIONS(2255), + [sym___single_quote] = ACTIONS(2257), + [sym___c_double_quote] = ACTIONS(2259), + [sym___c_single_quote] = ACTIONS(2261), + [sym___r_double_quote] = ACTIONS(2263), + [sym___r_single_quote] = ACTIONS(2265), }, [660] = { [sym_line_comment] = STATE(660), [sym_block_comment] = STATE(660), - [sym__expression] = STATE(217), - [sym__expression_without_blocks] = STATE(442), - [sym__expression_with_blocks] = STATE(442), - [sym_inc_expression] = STATE(439), - [sym_dec_expression] = STATE(439), - [sym_or_block_expression] = STATE(439), - [sym_option_propagation_expression] = STATE(439), - [sym_result_propagation_expression] = STATE(439), - [sym_anon_struct_value_expression] = STATE(438), - [sym_go_expression] = STATE(439), - [sym_spawn_expression] = STATE(439), - [sym_parenthesized_expression] = STATE(439), - [sym_call_expression] = STATE(439), - [sym_type_initializer] = STATE(438), - [sym_function_literal] = STATE(439), - [sym_reference_expression] = STATE(437), - [sym_type_reference_expression] = STATE(3541), - [sym_unary_expression] = STATE(439), - [sym_receive_expression] = STATE(439), - [sym_binary_expression] = STATE(439), - [sym_as_type_cast_expression] = STATE(439), - [sym__max_group] = STATE(439), - [sym_literal] = STATE(495), - [sym_map_init_expression] = STATE(438), - [sym_array_creation] = STATE(439), - [sym_fixed_array_creation] = STATE(439), - [sym_selector_expression] = STATE(439), - [sym_index_expression] = STATE(439), - [sym_slice_expression] = STATE(439), - [sym_if_expression] = STATE(438), - [sym_compile_time_if_expression] = STATE(438), - [sym_is_expression] = STATE(439), - [sym_in_expression] = STATE(439), - [sym_enum_fetch] = STATE(439), - [sym_match_expression] = STATE(438), - [sym_select_expression] = STATE(438), - [sym_lock_expression] = STATE(438), - [sym_unsafe_expression] = STATE(438), - [sym_sql_expression] = STATE(438), - [sym_c_string_literal] = STATE(496), - [sym_raw_string_literal] = STATE(496), - [sym_interpreted_string_literal] = STATE(496), - [sym_mutability_modifiers] = STATE(862), - [sym_plain_type] = STATE(4155), - [sym__plain_type_without_special] = STATE(2302), - [sym_anon_struct_type] = STATE(2303), - [sym_multi_return_type] = STATE(2302), - [sym_result_type] = STATE(2302), - [sym_option_type] = STATE(2302), - [sym_qualified_type] = STATE(3541), - [sym_fixed_array_type] = STATE(2303), - [sym_array_type] = STATE(2303), - [sym_pointer_type] = STATE(2303), - [sym_wrong_pointer_type] = STATE(2303), - [sym_map_type] = STATE(2303), - [sym_channel_type] = STATE(2303), - [sym_shared_type] = STATE(2303), - [sym_thread_type] = STATE(2303), - [sym_atomic_type] = STATE(2303), - [sym_generic_type] = STATE(2303), - [sym_function_type] = STATE(2303), - [sym_identifier] = ACTIONS(3096), + [sym__expression] = STATE(2433), + [sym__expression_without_blocks] = STATE(2638), + [sym__expression_with_blocks] = STATE(2638), + [sym_inc_expression] = STATE(2765), + [sym_dec_expression] = STATE(2765), + [sym_or_block_expression] = STATE(2765), + [sym_option_propagation_expression] = STATE(2765), + [sym_result_propagation_expression] = STATE(2765), + [sym_anon_struct_value_expression] = STATE(2637), + [sym_go_expression] = STATE(2765), + [sym_spawn_expression] = STATE(2765), + [sym_parenthesized_expression] = STATE(2765), + [sym_call_expression] = STATE(2765), + [sym_type_initializer] = STATE(2637), + [sym_function_literal] = STATE(2765), + [sym_reference_expression] = STATE(2764), + [sym_type_reference_expression] = STATE(3460), + [sym_unary_expression] = STATE(2765), + [sym_receive_expression] = STATE(2765), + [sym_binary_expression] = STATE(2765), + [sym_as_type_cast_expression] = STATE(2765), + [sym__max_group] = STATE(2765), + [sym_literal] = STATE(2771), + [sym_map_init_expression] = STATE(2637), + [sym_array_creation] = STATE(2765), + [sym_fixed_array_creation] = STATE(2765), + [sym_selector_expression] = STATE(2765), + [sym_index_expression] = STATE(2765), + [sym_slice_expression] = STATE(2765), + [sym_if_expression] = STATE(2637), + [sym_compile_time_if_expression] = STATE(2637), + [sym_is_expression] = STATE(2765), + [sym_in_expression] = STATE(2765), + [sym_enum_fetch] = STATE(2765), + [sym_match_expression] = STATE(2637), + [sym_select_expression] = STATE(2637), + [sym_lock_expression] = STATE(2637), + [sym_unsafe_expression] = STATE(2637), + [sym_sql_expression] = STATE(2637), + [sym_c_string_literal] = STATE(2762), + [sym_raw_string_literal] = STATE(2762), + [sym_interpreted_string_literal] = STATE(2762), + [sym_mutability_modifiers] = STATE(822), + [sym_plain_type] = STATE(3936), + [sym__plain_type_without_special] = STATE(2360), + [sym_anon_struct_type] = STATE(2362), + [sym_multi_return_type] = STATE(2360), + [sym_result_type] = STATE(2360), + [sym_option_type] = STATE(2360), + [sym_qualified_type] = STATE(3460), + [sym_fixed_array_type] = STATE(2362), + [sym_array_type] = STATE(2362), + [sym_pointer_type] = STATE(2362), + [sym_wrong_pointer_type] = STATE(2362), + [sym_map_type] = STATE(2362), + [sym_channel_type] = STATE(2362), + [sym_shared_type] = STATE(2362), + [sym_thread_type] = STATE(2362), + [sym_atomic_type] = STATE(2362), + [sym_generic_type] = STATE(2362), + [sym_function_type] = STATE(2362), + [sym_identifier] = ACTIONS(1815), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(17), - [anon_sym_LBRACE] = ACTIONS(3098), - [anon_sym_LPAREN] = ACTIONS(23), - [anon_sym_fn] = ACTIONS(485), - [anon_sym_PLUS] = ACTIONS(31), - [anon_sym_DASH] = ACTIONS(31), - [anon_sym_STAR] = ACTIONS(33), - [anon_sym_struct] = ACTIONS(487), + [anon_sym_DOT] = ACTIONS(1073), + [anon_sym_LBRACE] = ACTIONS(1075), + [anon_sym_LPAREN] = ACTIONS(1079), + [anon_sym_fn] = ACTIONS(1081), + [anon_sym_PLUS] = ACTIONS(1083), + [anon_sym_DASH] = ACTIONS(1083), + [anon_sym_STAR] = ACTIONS(3360), + [anon_sym_struct] = ACTIONS(1087), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(49), - [anon_sym_go] = ACTIONS(51), - [anon_sym_spawn] = ACTIONS(53), - [anon_sym_json_DOTdecode] = ACTIONS(55), - [anon_sym_LBRACK2] = ACTIONS(489), - [anon_sym_TILDE] = ACTIONS(31), - [anon_sym_CARET] = ACTIONS(31), - [anon_sym_AMP] = ACTIONS(59), - [anon_sym_LT_DASH] = ACTIONS(61), - [sym_none] = ACTIONS(63), - [sym_true] = ACTIONS(63), - [sym_false] = ACTIONS(63), - [sym_nil] = ACTIONS(63), - [anon_sym_if] = ACTIONS(65), - [anon_sym_DOLLARif] = ACTIONS(67), - [anon_sym_match] = ACTIONS(69), - [anon_sym_select] = ACTIONS(71), - [anon_sym_lock] = ACTIONS(73), - [anon_sym_rlock] = ACTIONS(73), - [anon_sym_unsafe] = ACTIONS(75), - [anon_sym_sql] = ACTIONS(77), - [sym_int_literal] = ACTIONS(63), - [sym_float_literal] = ACTIONS(79), - [sym_rune_literal] = ACTIONS(79), - [sym_pseudo_compile_time_identifier] = ACTIONS(81), + [anon_sym_BANG] = ACTIONS(3362), + [anon_sym_go] = ACTIONS(1091), + [anon_sym_spawn] = ACTIONS(1093), + [anon_sym_json_DOTdecode] = ACTIONS(1095), + [anon_sym_LBRACK2] = ACTIONS(1097), + [anon_sym_TILDE] = ACTIONS(1083), + [anon_sym_CARET] = ACTIONS(1083), + [anon_sym_AMP] = ACTIONS(3364), + [anon_sym_LT_DASH] = ACTIONS(1101), + [sym_none] = ACTIONS(1103), + [sym_true] = ACTIONS(1103), + [sym_false] = ACTIONS(1103), + [sym_nil] = ACTIONS(1103), + [anon_sym_if] = ACTIONS(1105), + [anon_sym_DOLLARif] = ACTIONS(1109), + [anon_sym_match] = ACTIONS(1111), + [anon_sym_select] = ACTIONS(3138), + [anon_sym_lock] = ACTIONS(3140), + [anon_sym_rlock] = ACTIONS(3140), + [anon_sym_unsafe] = ACTIONS(1117), + [anon_sym_sql] = ACTIONS(1119), + [sym_int_literal] = ACTIONS(1103), + [sym_float_literal] = ACTIONS(1121), + [sym_rune_literal] = ACTIONS(1121), + [sym_pseudo_compile_time_identifier] = ACTIONS(1123), [anon_sym_shared] = ACTIONS(83), [anon_sym_map_LBRACK] = ACTIONS(85), [anon_sym_chan] = ACTIONS(87), [anon_sym_thread] = ACTIONS(89), [anon_sym_atomic] = ACTIONS(91), - [sym___double_quote] = ACTIONS(115), - [sym___single_quote] = ACTIONS(117), - [sym___c_double_quote] = ACTIONS(119), - [sym___c_single_quote] = ACTIONS(121), - [sym___r_double_quote] = ACTIONS(123), - [sym___r_single_quote] = ACTIONS(125), + [sym___double_quote] = ACTIONS(1125), + [sym___single_quote] = ACTIONS(1127), + [sym___c_double_quote] = ACTIONS(1129), + [sym___c_single_quote] = ACTIONS(1131), + [sym___r_double_quote] = ACTIONS(1133), + [sym___r_single_quote] = ACTIONS(1135), }, [661] = { [sym_line_comment] = STATE(661), [sym_block_comment] = STATE(661), - [sym__expression] = STATE(220), - [sym__expression_without_blocks] = STATE(442), - [sym__expression_with_blocks] = STATE(442), - [sym_inc_expression] = STATE(439), - [sym_dec_expression] = STATE(439), - [sym_or_block_expression] = STATE(439), - [sym_option_propagation_expression] = STATE(439), - [sym_result_propagation_expression] = STATE(439), - [sym_anon_struct_value_expression] = STATE(438), - [sym_go_expression] = STATE(439), - [sym_spawn_expression] = STATE(439), - [sym_parenthesized_expression] = STATE(439), - [sym_call_expression] = STATE(439), - [sym_type_initializer] = STATE(438), - [sym_function_literal] = STATE(439), - [sym_reference_expression] = STATE(437), - [sym_type_reference_expression] = STATE(3541), - [sym_unary_expression] = STATE(439), - [sym_receive_expression] = STATE(439), - [sym_binary_expression] = STATE(439), - [sym_as_type_cast_expression] = STATE(439), - [sym__max_group] = STATE(439), - [sym_literal] = STATE(495), - [sym_map_init_expression] = STATE(438), - [sym_array_creation] = STATE(439), - [sym_fixed_array_creation] = STATE(439), - [sym_selector_expression] = STATE(439), - [sym_index_expression] = STATE(439), - [sym_slice_expression] = STATE(439), - [sym_if_expression] = STATE(438), - [sym_compile_time_if_expression] = STATE(438), - [sym_is_expression] = STATE(439), - [sym_in_expression] = STATE(439), - [sym_enum_fetch] = STATE(439), - [sym_match_expression] = STATE(438), - [sym_select_expression] = STATE(438), - [sym_lock_expression] = STATE(438), - [sym_unsafe_expression] = STATE(438), - [sym_sql_expression] = STATE(438), - [sym_c_string_literal] = STATE(496), - [sym_raw_string_literal] = STATE(496), - [sym_interpreted_string_literal] = STATE(496), - [sym_mutability_modifiers] = STATE(862), - [sym_plain_type] = STATE(4049), - [sym__plain_type_without_special] = STATE(2302), - [sym_anon_struct_type] = STATE(2303), - [sym_multi_return_type] = STATE(2302), - [sym_result_type] = STATE(2302), - [sym_option_type] = STATE(2302), - [sym_qualified_type] = STATE(3541), - [sym_fixed_array_type] = STATE(2303), - [sym_array_type] = STATE(2303), - [sym_pointer_type] = STATE(2303), - [sym_wrong_pointer_type] = STATE(2303), - [sym_map_type] = STATE(2303), - [sym_channel_type] = STATE(2303), - [sym_shared_type] = STATE(2303), - [sym_thread_type] = STATE(2303), - [sym_atomic_type] = STATE(2303), - [sym_generic_type] = STATE(2303), - [sym_function_type] = STATE(2303), - [sym_identifier] = ACTIONS(3096), + [sym__expression] = STATE(970), + [sym__expression_without_blocks] = STATE(1086), + [sym__expression_with_blocks] = STATE(1086), + [sym_inc_expression] = STATE(1088), + [sym_dec_expression] = STATE(1088), + [sym_or_block_expression] = STATE(1088), + [sym_option_propagation_expression] = STATE(1088), + [sym_result_propagation_expression] = STATE(1088), + [sym_anon_struct_value_expression] = STATE(1025), + [sym_go_expression] = STATE(1088), + [sym_spawn_expression] = STATE(1088), + [sym_parenthesized_expression] = STATE(1088), + [sym_call_expression] = STATE(1088), + [sym_type_initializer] = STATE(1025), + [sym_function_literal] = STATE(1088), + [sym_reference_expression] = STATE(1024), + [sym_type_reference_expression] = STATE(3460), + [sym_unary_expression] = STATE(1088), + [sym_receive_expression] = STATE(1088), + [sym_binary_expression] = STATE(1088), + [sym_as_type_cast_expression] = STATE(1088), + [sym__max_group] = STATE(1088), + [sym_literal] = STATE(1078), + [sym_map_init_expression] = STATE(1025), + [sym_array_creation] = STATE(1088), + [sym_fixed_array_creation] = STATE(1088), + [sym_selector_expression] = STATE(1088), + [sym_index_expression] = STATE(1088), + [sym_slice_expression] = STATE(1088), + [sym_if_expression] = STATE(1025), + [sym_compile_time_if_expression] = STATE(1025), + [sym_is_expression] = STATE(1088), + [sym_in_expression] = STATE(1088), + [sym_enum_fetch] = STATE(1088), + [sym_match_expression] = STATE(1025), + [sym_select_expression] = STATE(1025), + [sym_lock_expression] = STATE(1025), + [sym_unsafe_expression] = STATE(1025), + [sym_sql_expression] = STATE(1025), + [sym_c_string_literal] = STATE(993), + [sym_raw_string_literal] = STATE(993), + [sym_interpreted_string_literal] = STATE(993), + [sym_mutability_modifiers] = STATE(618), + [sym_plain_type] = STATE(4090), + [sym__plain_type_without_special] = STATE(2360), + [sym_anon_struct_type] = STATE(2362), + [sym_multi_return_type] = STATE(2360), + [sym_result_type] = STATE(2360), + [sym_option_type] = STATE(2360), + [sym_qualified_type] = STATE(3460), + [sym_fixed_array_type] = STATE(2362), + [sym_array_type] = STATE(2362), + [sym_pointer_type] = STATE(2362), + [sym_wrong_pointer_type] = STATE(2362), + [sym_map_type] = STATE(2362), + [sym_channel_type] = STATE(2362), + [sym_shared_type] = STATE(2362), + [sym_thread_type] = STATE(2362), + [sym_atomic_type] = STATE(2362), + [sym_generic_type] = STATE(2362), + [sym_function_type] = STATE(2362), + [sym_identifier] = ACTIONS(493), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(17), - [anon_sym_LBRACE] = ACTIONS(3098), - [anon_sym_LPAREN] = ACTIONS(23), - [anon_sym_fn] = ACTIONS(485), - [anon_sym_PLUS] = ACTIONS(31), - [anon_sym_DASH] = ACTIONS(31), - [anon_sym_STAR] = ACTIONS(33), - [anon_sym_struct] = ACTIONS(487), + [anon_sym_DOT] = ACTIONS(501), + [anon_sym_LBRACE] = ACTIONS(2235), + [anon_sym_LPAREN] = ACTIONS(2237), + [anon_sym_fn] = ACTIONS(507), + [anon_sym_PLUS] = ACTIONS(3366), + [anon_sym_DASH] = ACTIONS(3366), + [anon_sym_STAR] = ACTIONS(3368), + [anon_sym_struct] = ACTIONS(513), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(49), - [anon_sym_go] = ACTIONS(51), - [anon_sym_spawn] = ACTIONS(53), - [anon_sym_json_DOTdecode] = ACTIONS(55), - [anon_sym_LBRACK2] = ACTIONS(489), - [anon_sym_TILDE] = ACTIONS(31), - [anon_sym_CARET] = ACTIONS(31), - [anon_sym_AMP] = ACTIONS(59), - [anon_sym_LT_DASH] = ACTIONS(61), - [sym_none] = ACTIONS(63), - [sym_true] = ACTIONS(63), - [sym_false] = ACTIONS(63), - [sym_nil] = ACTIONS(63), - [anon_sym_if] = ACTIONS(65), - [anon_sym_DOLLARif] = ACTIONS(67), - [anon_sym_match] = ACTIONS(69), - [anon_sym_select] = ACTIONS(71), - [anon_sym_lock] = ACTIONS(73), - [anon_sym_rlock] = ACTIONS(73), - [anon_sym_unsafe] = ACTIONS(75), - [anon_sym_sql] = ACTIONS(77), - [sym_int_literal] = ACTIONS(63), - [sym_float_literal] = ACTIONS(79), - [sym_rune_literal] = ACTIONS(79), - [sym_pseudo_compile_time_identifier] = ACTIONS(81), + [anon_sym_BANG] = ACTIONS(3370), + [anon_sym_go] = ACTIONS(3372), + [anon_sym_spawn] = ACTIONS(3374), + [anon_sym_json_DOTdecode] = ACTIONS(2245), + [anon_sym_LBRACK2] = ACTIONS(2247), + [anon_sym_TILDE] = ACTIONS(3366), + [anon_sym_CARET] = ACTIONS(3366), + [anon_sym_AMP] = ACTIONS(3376), + [anon_sym_LT_DASH] = ACTIONS(3378), + [sym_none] = ACTIONS(531), + [sym_true] = ACTIONS(531), + [sym_false] = ACTIONS(531), + [sym_nil] = ACTIONS(531), + [anon_sym_if] = ACTIONS(533), + [anon_sym_DOLLARif] = ACTIONS(535), + [anon_sym_match] = ACTIONS(537), + [anon_sym_select] = ACTIONS(3380), + [anon_sym_lock] = ACTIONS(3382), + [anon_sym_rlock] = ACTIONS(3382), + [anon_sym_unsafe] = ACTIONS(543), + [anon_sym_sql] = ACTIONS(545), + [sym_int_literal] = ACTIONS(531), + [sym_float_literal] = ACTIONS(2253), + [sym_rune_literal] = ACTIONS(2253), + [sym_pseudo_compile_time_identifier] = ACTIONS(547), [anon_sym_shared] = ACTIONS(83), [anon_sym_map_LBRACK] = ACTIONS(85), [anon_sym_chan] = ACTIONS(87), [anon_sym_thread] = ACTIONS(89), [anon_sym_atomic] = ACTIONS(91), - [sym___double_quote] = ACTIONS(115), - [sym___single_quote] = ACTIONS(117), - [sym___c_double_quote] = ACTIONS(119), - [sym___c_single_quote] = ACTIONS(121), - [sym___r_double_quote] = ACTIONS(123), - [sym___r_single_quote] = ACTIONS(125), + [sym___double_quote] = ACTIONS(2255), + [sym___single_quote] = ACTIONS(2257), + [sym___c_double_quote] = ACTIONS(2259), + [sym___c_single_quote] = ACTIONS(2261), + [sym___r_double_quote] = ACTIONS(2263), + [sym___r_single_quote] = ACTIONS(2265), }, [662] = { [sym_line_comment] = STATE(662), [sym_block_comment] = STATE(662), - [sym__expression] = STATE(2607), - [sym__expression_without_blocks] = STATE(2300), - [sym__expression_with_blocks] = STATE(2300), - [sym_inc_expression] = STATE(2307), - [sym_dec_expression] = STATE(2307), - [sym_or_block_expression] = STATE(2307), - [sym_option_propagation_expression] = STATE(2307), - [sym_result_propagation_expression] = STATE(2307), - [sym_anon_struct_value_expression] = STATE(2380), - [sym_go_expression] = STATE(2307), - [sym_spawn_expression] = STATE(2307), - [sym_parenthesized_expression] = STATE(2307), - [sym_call_expression] = STATE(2307), - [sym_type_initializer] = STATE(2380), - [sym_function_literal] = STATE(2307), - [sym_reference_expression] = STATE(2311), - [sym_type_reference_expression] = STATE(3541), - [sym_unary_expression] = STATE(2307), - [sym_receive_expression] = STATE(2307), - [sym_binary_expression] = STATE(2307), - [sym_as_type_cast_expression] = STATE(2307), - [sym__max_group] = STATE(2307), - [sym_literal] = STATE(2292), - [sym_map_init_expression] = STATE(2380), - [sym_array_creation] = STATE(2307), - [sym_fixed_array_creation] = STATE(2307), - [sym_selector_expression] = STATE(2307), - [sym_index_expression] = STATE(2307), - [sym_slice_expression] = STATE(2307), - [sym_if_expression] = STATE(2380), - [sym_compile_time_if_expression] = STATE(2380), - [sym_is_expression] = STATE(2307), - [sym_in_expression] = STATE(2307), - [sym_enum_fetch] = STATE(2307), - [sym_match_expression] = STATE(2380), - [sym_select_expression] = STATE(2380), - [sym_lock_expression] = STATE(2380), - [sym_unsafe_expression] = STATE(2380), - [sym_sql_expression] = STATE(2380), - [sym_c_string_literal] = STATE(2308), - [sym_raw_string_literal] = STATE(2308), - [sym_interpreted_string_literal] = STATE(2308), - [sym_mutability_modifiers] = STATE(939), - [sym_plain_type] = STATE(4297), - [sym__plain_type_without_special] = STATE(2302), - [sym_anon_struct_type] = STATE(2303), - [sym_multi_return_type] = STATE(2302), - [sym_result_type] = STATE(2302), - [sym_option_type] = STATE(2302), - [sym_qualified_type] = STATE(3541), - [sym_fixed_array_type] = STATE(2303), - [sym_array_type] = STATE(2303), - [sym_pointer_type] = STATE(2303), - [sym_wrong_pointer_type] = STATE(2303), - [sym_map_type] = STATE(2303), - [sym_channel_type] = STATE(2303), - [sym_shared_type] = STATE(2303), - [sym_thread_type] = STATE(2303), - [sym_atomic_type] = STATE(2303), - [sym_generic_type] = STATE(2303), - [sym_function_type] = STATE(2303), - [sym_identifier] = ACTIONS(1807), + [sym__expression] = STATE(977), + [sym__expression_without_blocks] = STATE(1086), + [sym__expression_with_blocks] = STATE(1086), + [sym_inc_expression] = STATE(1088), + [sym_dec_expression] = STATE(1088), + [sym_or_block_expression] = STATE(1088), + [sym_option_propagation_expression] = STATE(1088), + [sym_result_propagation_expression] = STATE(1088), + [sym_anon_struct_value_expression] = STATE(1025), + [sym_go_expression] = STATE(1088), + [sym_spawn_expression] = STATE(1088), + [sym_parenthesized_expression] = STATE(1088), + [sym_call_expression] = STATE(1088), + [sym_type_initializer] = STATE(1025), + [sym_function_literal] = STATE(1088), + [sym_reference_expression] = STATE(1024), + [sym_type_reference_expression] = STATE(3460), + [sym_unary_expression] = STATE(1088), + [sym_receive_expression] = STATE(1088), + [sym_binary_expression] = STATE(1088), + [sym_as_type_cast_expression] = STATE(1088), + [sym__max_group] = STATE(1088), + [sym_literal] = STATE(1078), + [sym_map_init_expression] = STATE(1025), + [sym_array_creation] = STATE(1088), + [sym_fixed_array_creation] = STATE(1088), + [sym_selector_expression] = STATE(1088), + [sym_index_expression] = STATE(1088), + [sym_slice_expression] = STATE(1088), + [sym_if_expression] = STATE(1025), + [sym_compile_time_if_expression] = STATE(1025), + [sym_is_expression] = STATE(1088), + [sym_in_expression] = STATE(1088), + [sym_enum_fetch] = STATE(1088), + [sym_match_expression] = STATE(1025), + [sym_select_expression] = STATE(1025), + [sym_lock_expression] = STATE(1025), + [sym_unsafe_expression] = STATE(1025), + [sym_sql_expression] = STATE(1025), + [sym_c_string_literal] = STATE(993), + [sym_raw_string_literal] = STATE(993), + [sym_interpreted_string_literal] = STATE(993), + [sym_mutability_modifiers] = STATE(618), + [sym_plain_type] = STATE(4090), + [sym__plain_type_without_special] = STATE(2360), + [sym_anon_struct_type] = STATE(2362), + [sym_multi_return_type] = STATE(2360), + [sym_result_type] = STATE(2360), + [sym_option_type] = STATE(2360), + [sym_qualified_type] = STATE(3460), + [sym_fixed_array_type] = STATE(2362), + [sym_array_type] = STATE(2362), + [sym_pointer_type] = STATE(2362), + [sym_wrong_pointer_type] = STATE(2362), + [sym_map_type] = STATE(2362), + [sym_channel_type] = STATE(2362), + [sym_shared_type] = STATE(2362), + [sym_thread_type] = STATE(2362), + [sym_atomic_type] = STATE(2362), + [sym_generic_type] = STATE(2362), + [sym_function_type] = STATE(2362), + [sym_identifier] = ACTIONS(493), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1428), - [anon_sym_LBRACE] = ACTIONS(1430), - [anon_sym_LPAREN] = ACTIONS(1432), - [anon_sym_fn] = ACTIONS(1434), - [anon_sym_PLUS] = ACTIONS(3064), - [anon_sym_DASH] = ACTIONS(3064), - [anon_sym_STAR] = ACTIONS(3066), - [anon_sym_struct] = ACTIONS(1440), + [anon_sym_DOT] = ACTIONS(501), + [anon_sym_LBRACE] = ACTIONS(2235), + [anon_sym_LPAREN] = ACTIONS(2237), + [anon_sym_fn] = ACTIONS(507), + [anon_sym_PLUS] = ACTIONS(3366), + [anon_sym_DASH] = ACTIONS(3366), + [anon_sym_STAR] = ACTIONS(3368), + [anon_sym_struct] = ACTIONS(513), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(3068), - [anon_sym_go] = ACTIONS(3070), - [anon_sym_spawn] = ACTIONS(3072), - [anon_sym_json_DOTdecode] = ACTIONS(1448), - [anon_sym_LBRACK2] = ACTIONS(1821), - [anon_sym_TILDE] = ACTIONS(3064), - [anon_sym_CARET] = ACTIONS(3064), - [anon_sym_AMP] = ACTIONS(3074), - [anon_sym_LT_DASH] = ACTIONS(3076), - [sym_none] = ACTIONS(1456), - [sym_true] = ACTIONS(1456), - [sym_false] = ACTIONS(1456), - [sym_nil] = ACTIONS(1456), - [anon_sym_if] = ACTIONS(1827), - [anon_sym_DOLLARif] = ACTIONS(1460), - [anon_sym_match] = ACTIONS(1462), - [anon_sym_select] = ACTIONS(3078), - [anon_sym_lock] = ACTIONS(3080), - [anon_sym_rlock] = ACTIONS(3080), - [anon_sym_unsafe] = ACTIONS(1833), - [anon_sym_sql] = ACTIONS(1470), - [sym_int_literal] = ACTIONS(1456), - [sym_float_literal] = ACTIONS(1472), - [sym_rune_literal] = ACTIONS(1472), - [sym_pseudo_compile_time_identifier] = ACTIONS(1474), + [anon_sym_BANG] = ACTIONS(3370), + [anon_sym_go] = ACTIONS(3372), + [anon_sym_spawn] = ACTIONS(3374), + [anon_sym_json_DOTdecode] = ACTIONS(2245), + [anon_sym_LBRACK2] = ACTIONS(2247), + [anon_sym_TILDE] = ACTIONS(3366), + [anon_sym_CARET] = ACTIONS(3366), + [anon_sym_AMP] = ACTIONS(3376), + [anon_sym_LT_DASH] = ACTIONS(3378), + [sym_none] = ACTIONS(531), + [sym_true] = ACTIONS(531), + [sym_false] = ACTIONS(531), + [sym_nil] = ACTIONS(531), + [anon_sym_if] = ACTIONS(533), + [anon_sym_DOLLARif] = ACTIONS(535), + [anon_sym_match] = ACTIONS(537), + [anon_sym_select] = ACTIONS(3380), + [anon_sym_lock] = ACTIONS(3382), + [anon_sym_rlock] = ACTIONS(3382), + [anon_sym_unsafe] = ACTIONS(543), + [anon_sym_sql] = ACTIONS(545), + [sym_int_literal] = ACTIONS(531), + [sym_float_literal] = ACTIONS(2253), + [sym_rune_literal] = ACTIONS(2253), + [sym_pseudo_compile_time_identifier] = ACTIONS(547), [anon_sym_shared] = ACTIONS(83), [anon_sym_map_LBRACK] = ACTIONS(85), [anon_sym_chan] = ACTIONS(87), [anon_sym_thread] = ACTIONS(89), [anon_sym_atomic] = ACTIONS(91), - [sym___double_quote] = ACTIONS(1478), - [sym___single_quote] = ACTIONS(1480), - [sym___c_double_quote] = ACTIONS(1482), - [sym___c_single_quote] = ACTIONS(1484), - [sym___r_double_quote] = ACTIONS(1486), - [sym___r_single_quote] = ACTIONS(1488), + [sym___double_quote] = ACTIONS(2255), + [sym___single_quote] = ACTIONS(2257), + [sym___c_double_quote] = ACTIONS(2259), + [sym___c_single_quote] = ACTIONS(2261), + [sym___r_double_quote] = ACTIONS(2263), + [sym___r_single_quote] = ACTIONS(2265), }, [663] = { [sym_line_comment] = STATE(663), [sym_block_comment] = STATE(663), - [sym__expression] = STATE(2592), - [sym__expression_without_blocks] = STATE(2300), - [sym__expression_with_blocks] = STATE(2300), - [sym_inc_expression] = STATE(2307), - [sym_dec_expression] = STATE(2307), - [sym_or_block_expression] = STATE(2307), - [sym_option_propagation_expression] = STATE(2307), - [sym_result_propagation_expression] = STATE(2307), - [sym_anon_struct_value_expression] = STATE(2380), - [sym_go_expression] = STATE(2307), - [sym_spawn_expression] = STATE(2307), - [sym_parenthesized_expression] = STATE(2307), - [sym_call_expression] = STATE(2307), - [sym_type_initializer] = STATE(2380), - [sym_function_literal] = STATE(2307), - [sym_reference_expression] = STATE(2311), - [sym_type_reference_expression] = STATE(3541), - [sym_unary_expression] = STATE(2307), - [sym_receive_expression] = STATE(2307), - [sym_binary_expression] = STATE(2307), - [sym_as_type_cast_expression] = STATE(2307), - [sym__max_group] = STATE(2307), - [sym_literal] = STATE(2292), - [sym_map_init_expression] = STATE(2380), - [sym_array_creation] = STATE(2307), - [sym_fixed_array_creation] = STATE(2307), - [sym_selector_expression] = STATE(2307), - [sym_index_expression] = STATE(2307), - [sym_slice_expression] = STATE(2307), - [sym_if_expression] = STATE(2380), - [sym_compile_time_if_expression] = STATE(2380), - [sym_is_expression] = STATE(2307), - [sym_in_expression] = STATE(2307), - [sym_enum_fetch] = STATE(2307), - [sym_match_expression] = STATE(2380), - [sym_select_expression] = STATE(2380), - [sym_lock_expression] = STATE(2380), - [sym_unsafe_expression] = STATE(2380), - [sym_sql_expression] = STATE(2380), - [sym_c_string_literal] = STATE(2308), - [sym_raw_string_literal] = STATE(2308), - [sym_interpreted_string_literal] = STATE(2308), - [sym_mutability_modifiers] = STATE(632), - [sym_plain_type] = STATE(4297), - [sym__plain_type_without_special] = STATE(2302), - [sym_anon_struct_type] = STATE(2303), - [sym_multi_return_type] = STATE(2302), - [sym_result_type] = STATE(2302), - [sym_option_type] = STATE(2302), - [sym_qualified_type] = STATE(3541), - [sym_fixed_array_type] = STATE(2303), - [sym_array_type] = STATE(2303), - [sym_pointer_type] = STATE(2303), - [sym_wrong_pointer_type] = STATE(2303), - [sym_map_type] = STATE(2303), - [sym_channel_type] = STATE(2303), - [sym_shared_type] = STATE(2303), - [sym_thread_type] = STATE(2303), - [sym_atomic_type] = STATE(2303), - [sym_generic_type] = STATE(2303), - [sym_function_type] = STATE(2303), - [sym_identifier] = ACTIONS(2189), + [sym__expression] = STATE(965), + [sym__expression_without_blocks] = STATE(1086), + [sym__expression_with_blocks] = STATE(1086), + [sym_inc_expression] = STATE(1088), + [sym_dec_expression] = STATE(1088), + [sym_or_block_expression] = STATE(1088), + [sym_option_propagation_expression] = STATE(1088), + [sym_result_propagation_expression] = STATE(1088), + [sym_anon_struct_value_expression] = STATE(1025), + [sym_go_expression] = STATE(1088), + [sym_spawn_expression] = STATE(1088), + [sym_parenthesized_expression] = STATE(1088), + [sym_call_expression] = STATE(1088), + [sym_type_initializer] = STATE(1025), + [sym_function_literal] = STATE(1088), + [sym_reference_expression] = STATE(1024), + [sym_type_reference_expression] = STATE(3460), + [sym_unary_expression] = STATE(1088), + [sym_receive_expression] = STATE(1088), + [sym_binary_expression] = STATE(1088), + [sym_as_type_cast_expression] = STATE(1088), + [sym__max_group] = STATE(1088), + [sym_literal] = STATE(1078), + [sym_map_init_expression] = STATE(1025), + [sym_array_creation] = STATE(1088), + [sym_fixed_array_creation] = STATE(1088), + [sym_selector_expression] = STATE(1088), + [sym_index_expression] = STATE(1088), + [sym_slice_expression] = STATE(1088), + [sym_if_expression] = STATE(1025), + [sym_compile_time_if_expression] = STATE(1025), + [sym_is_expression] = STATE(1088), + [sym_in_expression] = STATE(1088), + [sym_enum_fetch] = STATE(1088), + [sym_match_expression] = STATE(1025), + [sym_select_expression] = STATE(1025), + [sym_lock_expression] = STATE(1025), + [sym_unsafe_expression] = STATE(1025), + [sym_sql_expression] = STATE(1025), + [sym_c_string_literal] = STATE(993), + [sym_raw_string_literal] = STATE(993), + [sym_interpreted_string_literal] = STATE(993), + [sym_mutability_modifiers] = STATE(618), + [sym_plain_type] = STATE(4129), + [sym__plain_type_without_special] = STATE(2360), + [sym_anon_struct_type] = STATE(2362), + [sym_multi_return_type] = STATE(2360), + [sym_result_type] = STATE(2360), + [sym_option_type] = STATE(2360), + [sym_qualified_type] = STATE(3460), + [sym_fixed_array_type] = STATE(2362), + [sym_array_type] = STATE(2362), + [sym_pointer_type] = STATE(2362), + [sym_wrong_pointer_type] = STATE(2362), + [sym_map_type] = STATE(2362), + [sym_channel_type] = STATE(2362), + [sym_shared_type] = STATE(2362), + [sym_thread_type] = STATE(2362), + [sym_atomic_type] = STATE(2362), + [sym_generic_type] = STATE(2362), + [sym_function_type] = STATE(2362), + [sym_identifier] = ACTIONS(493), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1428), - [anon_sym_LBRACE] = ACTIONS(1430), - [anon_sym_LPAREN] = ACTIONS(1432), - [anon_sym_fn] = ACTIONS(1434), - [anon_sym_PLUS] = ACTIONS(2191), - [anon_sym_DASH] = ACTIONS(2191), - [anon_sym_STAR] = ACTIONS(2193), - [anon_sym_struct] = ACTIONS(1440), + [anon_sym_DOT] = ACTIONS(501), + [anon_sym_LBRACE] = ACTIONS(2235), + [anon_sym_LPAREN] = ACTIONS(2237), + [anon_sym_fn] = ACTIONS(507), + [anon_sym_PLUS] = ACTIONS(3366), + [anon_sym_DASH] = ACTIONS(3366), + [anon_sym_STAR] = ACTIONS(3368), + [anon_sym_struct] = ACTIONS(513), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(2195), - [anon_sym_go] = ACTIONS(2197), - [anon_sym_spawn] = ACTIONS(2199), - [anon_sym_json_DOTdecode] = ACTIONS(1448), - [anon_sym_LBRACK2] = ACTIONS(2201), - [anon_sym_TILDE] = ACTIONS(2191), - [anon_sym_CARET] = ACTIONS(2191), - [anon_sym_AMP] = ACTIONS(2203), - [anon_sym_LT_DASH] = ACTIONS(2205), - [sym_none] = ACTIONS(1456), - [sym_true] = ACTIONS(1456), - [sym_false] = ACTIONS(1456), - [sym_nil] = ACTIONS(1456), - [anon_sym_if] = ACTIONS(1827), - [anon_sym_DOLLARif] = ACTIONS(1460), - [anon_sym_match] = ACTIONS(1462), - [anon_sym_select] = ACTIONS(2207), - [anon_sym_lock] = ACTIONS(2209), - [anon_sym_rlock] = ACTIONS(2209), - [anon_sym_unsafe] = ACTIONS(1833), - [anon_sym_sql] = ACTIONS(1470), - [sym_int_literal] = ACTIONS(1456), - [sym_float_literal] = ACTIONS(1472), - [sym_rune_literal] = ACTIONS(1472), - [sym_pseudo_compile_time_identifier] = ACTIONS(1474), + [anon_sym_BANG] = ACTIONS(3370), + [anon_sym_go] = ACTIONS(3372), + [anon_sym_spawn] = ACTIONS(3374), + [anon_sym_json_DOTdecode] = ACTIONS(2245), + [anon_sym_LBRACK2] = ACTIONS(2247), + [anon_sym_TILDE] = ACTIONS(3366), + [anon_sym_CARET] = ACTIONS(3366), + [anon_sym_AMP] = ACTIONS(3376), + [anon_sym_LT_DASH] = ACTIONS(3378), + [sym_none] = ACTIONS(531), + [sym_true] = ACTIONS(531), + [sym_false] = ACTIONS(531), + [sym_nil] = ACTIONS(531), + [anon_sym_if] = ACTIONS(533), + [anon_sym_DOLLARif] = ACTIONS(535), + [anon_sym_match] = ACTIONS(537), + [anon_sym_select] = ACTIONS(3380), + [anon_sym_lock] = ACTIONS(3382), + [anon_sym_rlock] = ACTIONS(3382), + [anon_sym_unsafe] = ACTIONS(543), + [anon_sym_sql] = ACTIONS(545), + [sym_int_literal] = ACTIONS(531), + [sym_float_literal] = ACTIONS(2253), + [sym_rune_literal] = ACTIONS(2253), + [sym_pseudo_compile_time_identifier] = ACTIONS(547), [anon_sym_shared] = ACTIONS(83), [anon_sym_map_LBRACK] = ACTIONS(85), [anon_sym_chan] = ACTIONS(87), [anon_sym_thread] = ACTIONS(89), [anon_sym_atomic] = ACTIONS(91), - [sym___double_quote] = ACTIONS(1478), - [sym___single_quote] = ACTIONS(1480), - [sym___c_double_quote] = ACTIONS(1482), - [sym___c_single_quote] = ACTIONS(1484), - [sym___r_double_quote] = ACTIONS(1486), - [sym___r_single_quote] = ACTIONS(1488), + [sym___double_quote] = ACTIONS(2255), + [sym___single_quote] = ACTIONS(2257), + [sym___c_double_quote] = ACTIONS(2259), + [sym___c_single_quote] = ACTIONS(2261), + [sym___r_double_quote] = ACTIONS(2263), + [sym___r_single_quote] = ACTIONS(2265), }, [664] = { [sym_line_comment] = STATE(664), [sym_block_comment] = STATE(664), - [sym__expression] = STATE(2810), - [sym__expression_without_blocks] = STATE(2300), - [sym__expression_with_blocks] = STATE(2300), - [sym_inc_expression] = STATE(2307), - [sym_dec_expression] = STATE(2307), - [sym_or_block_expression] = STATE(2307), - [sym_option_propagation_expression] = STATE(2307), - [sym_result_propagation_expression] = STATE(2307), - [sym_anon_struct_value_expression] = STATE(2380), - [sym_go_expression] = STATE(2307), - [sym_spawn_expression] = STATE(2307), - [sym_parenthesized_expression] = STATE(2307), - [sym_call_expression] = STATE(2307), - [sym_type_initializer] = STATE(2380), - [sym_function_literal] = STATE(2307), - [sym_reference_expression] = STATE(2311), - [sym_type_reference_expression] = STATE(3541), - [sym_unary_expression] = STATE(2307), - [sym_receive_expression] = STATE(2307), - [sym_binary_expression] = STATE(2307), - [sym_as_type_cast_expression] = STATE(2307), - [sym__max_group] = STATE(2307), - [sym_literal] = STATE(2292), - [sym_map_init_expression] = STATE(2380), - [sym_array_creation] = STATE(2307), - [sym_fixed_array_creation] = STATE(2307), - [sym_selector_expression] = STATE(2307), - [sym_index_expression] = STATE(2307), - [sym_slice_expression] = STATE(2307), - [sym_if_expression] = STATE(2380), - [sym_compile_time_if_expression] = STATE(2380), - [sym_is_expression] = STATE(2307), - [sym_in_expression] = STATE(2307), - [sym_enum_fetch] = STATE(2307), - [sym_match_expression] = STATE(2380), - [sym_select_expression] = STATE(2380), - [sym_lock_expression] = STATE(2380), - [sym_unsafe_expression] = STATE(2380), - [sym_sql_expression] = STATE(2380), - [sym_c_string_literal] = STATE(2308), - [sym_raw_string_literal] = STATE(2308), - [sym_interpreted_string_literal] = STATE(2308), - [sym_mutability_modifiers] = STATE(939), - [sym_plain_type] = STATE(4297), - [sym__plain_type_without_special] = STATE(2302), - [sym_anon_struct_type] = STATE(2303), - [sym_multi_return_type] = STATE(2302), - [sym_result_type] = STATE(2302), - [sym_option_type] = STATE(2302), - [sym_qualified_type] = STATE(3541), - [sym_fixed_array_type] = STATE(2303), - [sym_array_type] = STATE(2303), - [sym_pointer_type] = STATE(2303), - [sym_wrong_pointer_type] = STATE(2303), - [sym_map_type] = STATE(2303), - [sym_channel_type] = STATE(2303), - [sym_shared_type] = STATE(2303), - [sym_thread_type] = STATE(2303), - [sym_atomic_type] = STATE(2303), - [sym_generic_type] = STATE(2303), - [sym_function_type] = STATE(2303), - [sym_identifier] = ACTIONS(1426), + [sym__expression] = STATE(2433), + [sym__expression_without_blocks] = STATE(2638), + [sym__expression_with_blocks] = STATE(2638), + [sym_inc_expression] = STATE(2765), + [sym_dec_expression] = STATE(2765), + [sym_or_block_expression] = STATE(2765), + [sym_option_propagation_expression] = STATE(2765), + [sym_result_propagation_expression] = STATE(2765), + [sym_anon_struct_value_expression] = STATE(2637), + [sym_go_expression] = STATE(2765), + [sym_spawn_expression] = STATE(2765), + [sym_parenthesized_expression] = STATE(2765), + [sym_call_expression] = STATE(2765), + [sym_type_initializer] = STATE(2637), + [sym_function_literal] = STATE(2765), + [sym_reference_expression] = STATE(2764), + [sym_type_reference_expression] = STATE(3460), + [sym_unary_expression] = STATE(2765), + [sym_receive_expression] = STATE(2765), + [sym_binary_expression] = STATE(2765), + [sym_as_type_cast_expression] = STATE(2765), + [sym__max_group] = STATE(2765), + [sym_literal] = STATE(2771), + [sym_map_init_expression] = STATE(2637), + [sym_array_creation] = STATE(2765), + [sym_fixed_array_creation] = STATE(2765), + [sym_selector_expression] = STATE(2765), + [sym_index_expression] = STATE(2765), + [sym_slice_expression] = STATE(2765), + [sym_if_expression] = STATE(2637), + [sym_compile_time_if_expression] = STATE(2637), + [sym_is_expression] = STATE(2765), + [sym_in_expression] = STATE(2765), + [sym_enum_fetch] = STATE(2765), + [sym_match_expression] = STATE(2637), + [sym_select_expression] = STATE(2637), + [sym_lock_expression] = STATE(2637), + [sym_unsafe_expression] = STATE(2637), + [sym_sql_expression] = STATE(2637), + [sym_c_string_literal] = STATE(2762), + [sym_raw_string_literal] = STATE(2762), + [sym_interpreted_string_literal] = STATE(2762), + [sym_mutability_modifiers] = STATE(822), + [sym_plain_type] = STATE(3934), + [sym__plain_type_without_special] = STATE(2360), + [sym_anon_struct_type] = STATE(2362), + [sym_multi_return_type] = STATE(2360), + [sym_result_type] = STATE(2360), + [sym_option_type] = STATE(2360), + [sym_qualified_type] = STATE(3460), + [sym_fixed_array_type] = STATE(2362), + [sym_array_type] = STATE(2362), + [sym_pointer_type] = STATE(2362), + [sym_wrong_pointer_type] = STATE(2362), + [sym_map_type] = STATE(2362), + [sym_channel_type] = STATE(2362), + [sym_shared_type] = STATE(2362), + [sym_thread_type] = STATE(2362), + [sym_atomic_type] = STATE(2362), + [sym_generic_type] = STATE(2362), + [sym_function_type] = STATE(2362), + [sym_identifier] = ACTIONS(1815), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1428), - [anon_sym_LBRACE] = ACTIONS(1430), - [anon_sym_LPAREN] = ACTIONS(1432), - [anon_sym_fn] = ACTIONS(1434), - [anon_sym_PLUS] = ACTIONS(1436), - [anon_sym_DASH] = ACTIONS(1436), - [anon_sym_STAR] = ACTIONS(1438), - [anon_sym_struct] = ACTIONS(1440), + [anon_sym_DOT] = ACTIONS(1073), + [anon_sym_LBRACE] = ACTIONS(1075), + [anon_sym_LPAREN] = ACTIONS(1079), + [anon_sym_fn] = ACTIONS(1081), + [anon_sym_PLUS] = ACTIONS(1083), + [anon_sym_DASH] = ACTIONS(1083), + [anon_sym_STAR] = ACTIONS(3360), + [anon_sym_struct] = ACTIONS(1087), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(1442), - [anon_sym_go] = ACTIONS(1444), - [anon_sym_spawn] = ACTIONS(1446), - [anon_sym_json_DOTdecode] = ACTIONS(1448), - [anon_sym_LBRACK2] = ACTIONS(1450), - [anon_sym_TILDE] = ACTIONS(1436), - [anon_sym_CARET] = ACTIONS(1436), - [anon_sym_AMP] = ACTIONS(1452), - [anon_sym_LT_DASH] = ACTIONS(1454), - [sym_none] = ACTIONS(1456), - [sym_true] = ACTIONS(1456), - [sym_false] = ACTIONS(1456), - [sym_nil] = ACTIONS(1456), - [anon_sym_if] = ACTIONS(1827), - [anon_sym_DOLLARif] = ACTIONS(1460), - [anon_sym_match] = ACTIONS(1462), - [anon_sym_select] = ACTIONS(1464), - [anon_sym_lock] = ACTIONS(1466), - [anon_sym_rlock] = ACTIONS(1466), - [anon_sym_unsafe] = ACTIONS(1833), - [anon_sym_sql] = ACTIONS(1470), - [sym_int_literal] = ACTIONS(1456), - [sym_float_literal] = ACTIONS(1472), - [sym_rune_literal] = ACTIONS(1472), - [sym_pseudo_compile_time_identifier] = ACTIONS(1474), + [anon_sym_BANG] = ACTIONS(3362), + [anon_sym_go] = ACTIONS(1091), + [anon_sym_spawn] = ACTIONS(1093), + [anon_sym_json_DOTdecode] = ACTIONS(1095), + [anon_sym_LBRACK2] = ACTIONS(1097), + [anon_sym_TILDE] = ACTIONS(1083), + [anon_sym_CARET] = ACTIONS(1083), + [anon_sym_AMP] = ACTIONS(3364), + [anon_sym_LT_DASH] = ACTIONS(1101), + [sym_none] = ACTIONS(1103), + [sym_true] = ACTIONS(1103), + [sym_false] = ACTIONS(1103), + [sym_nil] = ACTIONS(1103), + [anon_sym_if] = ACTIONS(1105), + [anon_sym_DOLLARif] = ACTIONS(1109), + [anon_sym_match] = ACTIONS(1111), + [anon_sym_select] = ACTIONS(3138), + [anon_sym_lock] = ACTIONS(3140), + [anon_sym_rlock] = ACTIONS(3140), + [anon_sym_unsafe] = ACTIONS(1117), + [anon_sym_sql] = ACTIONS(1119), + [sym_int_literal] = ACTIONS(1103), + [sym_float_literal] = ACTIONS(1121), + [sym_rune_literal] = ACTIONS(1121), + [sym_pseudo_compile_time_identifier] = ACTIONS(1123), [anon_sym_shared] = ACTIONS(83), [anon_sym_map_LBRACK] = ACTIONS(85), [anon_sym_chan] = ACTIONS(87), [anon_sym_thread] = ACTIONS(89), [anon_sym_atomic] = ACTIONS(91), - [sym___double_quote] = ACTIONS(1478), - [sym___single_quote] = ACTIONS(1480), - [sym___c_double_quote] = ACTIONS(1482), - [sym___c_single_quote] = ACTIONS(1484), - [sym___r_double_quote] = ACTIONS(1486), - [sym___r_single_quote] = ACTIONS(1488), + [sym___double_quote] = ACTIONS(1125), + [sym___single_quote] = ACTIONS(1127), + [sym___c_double_quote] = ACTIONS(1129), + [sym___c_single_quote] = ACTIONS(1131), + [sym___r_double_quote] = ACTIONS(1133), + [sym___r_single_quote] = ACTIONS(1135), }, [665] = { [sym_line_comment] = STATE(665), [sym_block_comment] = STATE(665), - [sym__expression] = STATE(2831), - [sym__expression_without_blocks] = STATE(2300), - [sym__expression_with_blocks] = STATE(2300), - [sym_inc_expression] = STATE(2307), - [sym_dec_expression] = STATE(2307), - [sym_or_block_expression] = STATE(2307), - [sym_option_propagation_expression] = STATE(2307), - [sym_result_propagation_expression] = STATE(2307), - [sym_anon_struct_value_expression] = STATE(2380), - [sym_go_expression] = STATE(2307), - [sym_spawn_expression] = STATE(2307), - [sym_parenthesized_expression] = STATE(2307), - [sym_call_expression] = STATE(2307), - [sym_type_initializer] = STATE(2380), - [sym_function_literal] = STATE(2307), - [sym_reference_expression] = STATE(2884), - [sym_type_reference_expression] = STATE(3541), - [sym_unary_expression] = STATE(2307), - [sym_receive_expression] = STATE(2307), - [sym_binary_expression] = STATE(2307), - [sym_as_type_cast_expression] = STATE(2307), - [sym__max_group] = STATE(2307), - [sym_literal] = STATE(2292), - [sym_map_init_expression] = STATE(2380), - [sym_array_creation] = STATE(2307), - [sym_fixed_array_creation] = STATE(2307), - [sym_selector_expression] = STATE(2885), - [sym_index_expression] = STATE(2307), - [sym_slice_expression] = STATE(2307), - [sym_if_expression] = STATE(2380), - [sym_compile_time_if_expression] = STATE(2380), - [sym_is_expression] = STATE(2307), - [sym_in_expression] = STATE(2307), - [sym_enum_fetch] = STATE(2307), - [sym_match_expression] = STATE(2380), - [sym_select_expression] = STATE(2380), - [sym_lock_expression] = STATE(2380), - [sym_unsafe_expression] = STATE(2380), - [sym_sql_expression] = STATE(2380), - [sym_c_string_literal] = STATE(2308), - [sym_raw_string_literal] = STATE(2308), - [sym_interpreted_string_literal] = STATE(2308), - [sym_mutability_modifiers] = STATE(939), - [sym_plain_type] = STATE(4297), - [sym__plain_type_without_special] = STATE(2302), - [sym_anon_struct_type] = STATE(2303), - [sym_multi_return_type] = STATE(2302), - [sym_result_type] = STATE(2302), - [sym_option_type] = STATE(2302), - [sym_qualified_type] = STATE(3541), - [sym_fixed_array_type] = STATE(2303), - [sym_array_type] = STATE(2303), - [sym_pointer_type] = STATE(2303), - [sym_wrong_pointer_type] = STATE(2303), - [sym_map_type] = STATE(2303), - [sym_channel_type] = STATE(2303), - [sym_shared_type] = STATE(2303), - [sym_thread_type] = STATE(2303), - [sym_atomic_type] = STATE(2303), - [sym_generic_type] = STATE(2303), - [sym_function_type] = STATE(2303), - [sym_identifier] = ACTIONS(2189), + [sym__expression] = STATE(2285), + [sym__expression_without_blocks] = STATE(2468), + [sym__expression_with_blocks] = STATE(2468), + [sym_inc_expression] = STATE(2469), + [sym_dec_expression] = STATE(2469), + [sym_or_block_expression] = STATE(2469), + [sym_option_propagation_expression] = STATE(2469), + [sym_result_propagation_expression] = STATE(2469), + [sym_anon_struct_value_expression] = STATE(2470), + [sym_go_expression] = STATE(2469), + [sym_spawn_expression] = STATE(2469), + [sym_parenthesized_expression] = STATE(2469), + [sym_call_expression] = STATE(2469), + [sym_type_initializer] = STATE(2470), + [sym_function_literal] = STATE(2469), + [sym_reference_expression] = STATE(2487), + [sym_type_reference_expression] = STATE(3460), + [sym_unary_expression] = STATE(2469), + [sym_receive_expression] = STATE(2469), + [sym_binary_expression] = STATE(2469), + [sym_as_type_cast_expression] = STATE(2469), + [sym__max_group] = STATE(2469), + [sym_literal] = STATE(2465), + [sym_map_init_expression] = STATE(2470), + [sym_array_creation] = STATE(2469), + [sym_fixed_array_creation] = STATE(2469), + [sym_selector_expression] = STATE(2469), + [sym_index_expression] = STATE(2469), + [sym_slice_expression] = STATE(2469), + [sym_if_expression] = STATE(2470), + [sym_compile_time_if_expression] = STATE(2470), + [sym_is_expression] = STATE(2469), + [sym_in_expression] = STATE(2469), + [sym_enum_fetch] = STATE(2469), + [sym_match_expression] = STATE(2470), + [sym_select_expression] = STATE(2470), + [sym_lock_expression] = STATE(2470), + [sym_unsafe_expression] = STATE(2470), + [sym_sql_expression] = STATE(2470), + [sym_c_string_literal] = STATE(2464), + [sym_raw_string_literal] = STATE(2464), + [sym_interpreted_string_literal] = STATE(2464), + [sym_mutability_modifiers] = STATE(561), + [sym_plain_type] = STATE(4038), + [sym__plain_type_without_special] = STATE(2360), + [sym_anon_struct_type] = STATE(2362), + [sym_multi_return_type] = STATE(2360), + [sym_result_type] = STATE(2360), + [sym_option_type] = STATE(2360), + [sym_qualified_type] = STATE(3460), + [sym_fixed_array_type] = STATE(2362), + [sym_array_type] = STATE(2362), + [sym_pointer_type] = STATE(2362), + [sym_wrong_pointer_type] = STATE(2362), + [sym_map_type] = STATE(2362), + [sym_channel_type] = STATE(2362), + [sym_shared_type] = STATE(2362), + [sym_thread_type] = STATE(2362), + [sym_atomic_type] = STATE(2362), + [sym_generic_type] = STATE(2362), + [sym_function_type] = STATE(2362), + [sym_identifier] = ACTIONS(1691), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1428), - [anon_sym_LBRACE] = ACTIONS(1430), - [anon_sym_LPAREN] = ACTIONS(1432), - [anon_sym_fn] = ACTIONS(1434), - [anon_sym_PLUS] = ACTIONS(1436), - [anon_sym_DASH] = ACTIONS(1436), - [anon_sym_STAR] = ACTIONS(1438), - [anon_sym_struct] = ACTIONS(1440), + [anon_sym_DOT] = ACTIONS(1693), + [anon_sym_LBRACE] = ACTIONS(2151), + [anon_sym_LPAREN] = ACTIONS(2153), + [anon_sym_fn] = ACTIONS(1699), + [anon_sym_PLUS] = ACTIONS(2155), + [anon_sym_DASH] = ACTIONS(2155), + [anon_sym_STAR] = ACTIONS(2157), + [anon_sym_struct] = ACTIONS(1705), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(1442), - [anon_sym_go] = ACTIONS(1444), - [anon_sym_spawn] = ACTIONS(1446), - [anon_sym_json_DOTdecode] = ACTIONS(1448), - [anon_sym_LBRACK2] = ACTIONS(1450), - [anon_sym_TILDE] = ACTIONS(1436), - [anon_sym_CARET] = ACTIONS(1436), - [anon_sym_AMP] = ACTIONS(1452), - [anon_sym_LT_DASH] = ACTIONS(1454), - [sym_none] = ACTIONS(1456), - [sym_true] = ACTIONS(1456), - [sym_false] = ACTIONS(1456), - [sym_nil] = ACTIONS(1456), - [anon_sym_if] = ACTIONS(1827), - [anon_sym_DOLLARif] = ACTIONS(1460), - [anon_sym_match] = ACTIONS(1462), - [anon_sym_select] = ACTIONS(1464), - [anon_sym_lock] = ACTIONS(1466), - [anon_sym_rlock] = ACTIONS(1466), - [anon_sym_unsafe] = ACTIONS(1833), - [anon_sym_sql] = ACTIONS(1470), - [sym_int_literal] = ACTIONS(1456), - [sym_float_literal] = ACTIONS(1472), - [sym_rune_literal] = ACTIONS(1472), - [sym_pseudo_compile_time_identifier] = ACTIONS(1474), + [anon_sym_BANG] = ACTIONS(2159), + [anon_sym_go] = ACTIONS(1709), + [anon_sym_spawn] = ACTIONS(1711), + [anon_sym_json_DOTdecode] = ACTIONS(2161), + [anon_sym_LBRACK2] = ACTIONS(2163), + [anon_sym_TILDE] = ACTIONS(2155), + [anon_sym_CARET] = ACTIONS(2155), + [anon_sym_AMP] = ACTIONS(2165), + [anon_sym_LT_DASH] = ACTIONS(2167), + [sym_none] = ACTIONS(1721), + [sym_true] = ACTIONS(1721), + [sym_false] = ACTIONS(1721), + [sym_nil] = ACTIONS(1721), + [anon_sym_if] = ACTIONS(1723), + [anon_sym_DOLLARif] = ACTIONS(1725), + [anon_sym_match] = ACTIONS(1727), + [anon_sym_select] = ACTIONS(1729), + [anon_sym_lock] = ACTIONS(1731), + [anon_sym_rlock] = ACTIONS(1731), + [anon_sym_unsafe] = ACTIONS(1733), + [anon_sym_sql] = ACTIONS(1735), + [sym_int_literal] = ACTIONS(1721), + [sym_float_literal] = ACTIONS(2169), + [sym_rune_literal] = ACTIONS(2169), + [sym_pseudo_compile_time_identifier] = ACTIONS(1737), [anon_sym_shared] = ACTIONS(83), [anon_sym_map_LBRACK] = ACTIONS(85), [anon_sym_chan] = ACTIONS(87), [anon_sym_thread] = ACTIONS(89), [anon_sym_atomic] = ACTIONS(91), - [sym___double_quote] = ACTIONS(1478), - [sym___single_quote] = ACTIONS(1480), - [sym___c_double_quote] = ACTIONS(1482), - [sym___c_single_quote] = ACTIONS(1484), - [sym___r_double_quote] = ACTIONS(1486), - [sym___r_single_quote] = ACTIONS(1488), + [sym___double_quote] = ACTIONS(2171), + [sym___single_quote] = ACTIONS(2173), + [sym___c_double_quote] = ACTIONS(2175), + [sym___c_single_quote] = ACTIONS(2177), + [sym___r_double_quote] = ACTIONS(2179), + [sym___r_single_quote] = ACTIONS(2181), }, [666] = { [sym_line_comment] = STATE(666), [sym_block_comment] = STATE(666), - [sym__expression] = STATE(2700), - [sym__expression_without_blocks] = STATE(2300), - [sym__expression_with_blocks] = STATE(2300), - [sym_inc_expression] = STATE(2307), - [sym_dec_expression] = STATE(2307), - [sym_or_block_expression] = STATE(2307), - [sym_option_propagation_expression] = STATE(2307), - [sym_result_propagation_expression] = STATE(2307), - [sym_anon_struct_value_expression] = STATE(2380), - [sym_go_expression] = STATE(2307), - [sym_spawn_expression] = STATE(2307), - [sym_parenthesized_expression] = STATE(2307), - [sym_call_expression] = STATE(2307), - [sym_type_initializer] = STATE(2380), - [sym_function_literal] = STATE(2307), - [sym_reference_expression] = STATE(2311), - [sym_type_reference_expression] = STATE(3541), - [sym_unary_expression] = STATE(2307), - [sym_receive_expression] = STATE(2307), - [sym_binary_expression] = STATE(2307), - [sym_as_type_cast_expression] = STATE(2307), - [sym__max_group] = STATE(2307), - [sym_literal] = STATE(2292), - [sym_map_init_expression] = STATE(2380), - [sym_array_creation] = STATE(2307), - [sym_fixed_array_creation] = STATE(2307), - [sym_selector_expression] = STATE(2307), - [sym_index_expression] = STATE(2307), - [sym_slice_expression] = STATE(2307), - [sym_if_expression] = STATE(2380), - [sym_compile_time_if_expression] = STATE(2380), - [sym_is_expression] = STATE(2307), - [sym_in_expression] = STATE(2307), - [sym_enum_fetch] = STATE(2307), - [sym_match_expression] = STATE(2380), - [sym_select_expression] = STATE(2380), - [sym_lock_expression] = STATE(2380), - [sym_unsafe_expression] = STATE(2380), - [sym_sql_expression] = STATE(2380), - [sym_c_string_literal] = STATE(2308), - [sym_raw_string_literal] = STATE(2308), - [sym_interpreted_string_literal] = STATE(2308), - [sym_mutability_modifiers] = STATE(939), - [sym_plain_type] = STATE(4297), - [sym__plain_type_without_special] = STATE(2302), - [sym_anon_struct_type] = STATE(2303), - [sym_multi_return_type] = STATE(2302), - [sym_result_type] = STATE(2302), - [sym_option_type] = STATE(2302), - [sym_qualified_type] = STATE(3541), - [sym_fixed_array_type] = STATE(2303), - [sym_array_type] = STATE(2303), - [sym_pointer_type] = STATE(2303), - [sym_wrong_pointer_type] = STATE(2303), - [sym_map_type] = STATE(2303), - [sym_channel_type] = STATE(2303), - [sym_shared_type] = STATE(2303), - [sym_thread_type] = STATE(2303), - [sym_atomic_type] = STATE(2303), - [sym_generic_type] = STATE(2303), - [sym_function_type] = STATE(2303), - [sym_identifier] = ACTIONS(2189), + [sym__expression] = STATE(2433), + [sym__expression_without_blocks] = STATE(2638), + [sym__expression_with_blocks] = STATE(2638), + [sym_inc_expression] = STATE(2765), + [sym_dec_expression] = STATE(2765), + [sym_or_block_expression] = STATE(2765), + [sym_option_propagation_expression] = STATE(2765), + [sym_result_propagation_expression] = STATE(2765), + [sym_anon_struct_value_expression] = STATE(2637), + [sym_go_expression] = STATE(2765), + [sym_spawn_expression] = STATE(2765), + [sym_parenthesized_expression] = STATE(2765), + [sym_call_expression] = STATE(2765), + [sym_type_initializer] = STATE(2637), + [sym_function_literal] = STATE(2765), + [sym_reference_expression] = STATE(2764), + [sym_type_reference_expression] = STATE(3460), + [sym_unary_expression] = STATE(2765), + [sym_receive_expression] = STATE(2765), + [sym_binary_expression] = STATE(2765), + [sym_as_type_cast_expression] = STATE(2765), + [sym__max_group] = STATE(2765), + [sym_literal] = STATE(2771), + [sym_map_init_expression] = STATE(2637), + [sym_array_creation] = STATE(2765), + [sym_fixed_array_creation] = STATE(2765), + [sym_selector_expression] = STATE(2765), + [sym_index_expression] = STATE(2765), + [sym_slice_expression] = STATE(2765), + [sym_if_expression] = STATE(2637), + [sym_compile_time_if_expression] = STATE(2637), + [sym_is_expression] = STATE(2765), + [sym_in_expression] = STATE(2765), + [sym_enum_fetch] = STATE(2765), + [sym_match_expression] = STATE(2637), + [sym_select_expression] = STATE(2637), + [sym_lock_expression] = STATE(2637), + [sym_unsafe_expression] = STATE(2637), + [sym_sql_expression] = STATE(2637), + [sym_c_string_literal] = STATE(2762), + [sym_raw_string_literal] = STATE(2762), + [sym_interpreted_string_literal] = STATE(2762), + [sym_mutability_modifiers] = STATE(822), + [sym_plain_type] = STATE(3929), + [sym__plain_type_without_special] = STATE(2360), + [sym_anon_struct_type] = STATE(2362), + [sym_multi_return_type] = STATE(2360), + [sym_result_type] = STATE(2360), + [sym_option_type] = STATE(2360), + [sym_qualified_type] = STATE(3460), + [sym_fixed_array_type] = STATE(2362), + [sym_array_type] = STATE(2362), + [sym_pointer_type] = STATE(2362), + [sym_wrong_pointer_type] = STATE(2362), + [sym_map_type] = STATE(2362), + [sym_channel_type] = STATE(2362), + [sym_shared_type] = STATE(2362), + [sym_thread_type] = STATE(2362), + [sym_atomic_type] = STATE(2362), + [sym_generic_type] = STATE(2362), + [sym_function_type] = STATE(2362), + [sym_identifier] = ACTIONS(1815), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1428), - [anon_sym_LBRACE] = ACTIONS(1430), - [anon_sym_LPAREN] = ACTIONS(1432), - [anon_sym_fn] = ACTIONS(1434), - [anon_sym_PLUS] = ACTIONS(2491), - [anon_sym_DASH] = ACTIONS(2491), - [anon_sym_STAR] = ACTIONS(3354), - [anon_sym_struct] = ACTIONS(1440), + [anon_sym_DOT] = ACTIONS(1073), + [anon_sym_LBRACE] = ACTIONS(1075), + [anon_sym_LPAREN] = ACTIONS(1079), + [anon_sym_fn] = ACTIONS(1081), + [anon_sym_PLUS] = ACTIONS(1083), + [anon_sym_DASH] = ACTIONS(1083), + [anon_sym_STAR] = ACTIONS(3360), + [anon_sym_struct] = ACTIONS(1087), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(3356), - [anon_sym_go] = ACTIONS(2497), - [anon_sym_spawn] = ACTIONS(2499), - [anon_sym_json_DOTdecode] = ACTIONS(1448), - [anon_sym_LBRACK2] = ACTIONS(1450), - [anon_sym_TILDE] = ACTIONS(2491), - [anon_sym_CARET] = ACTIONS(2491), - [anon_sym_AMP] = ACTIONS(3358), - [anon_sym_LT_DASH] = ACTIONS(2503), - [sym_none] = ACTIONS(1456), - [sym_true] = ACTIONS(1456), - [sym_false] = ACTIONS(1456), - [sym_nil] = ACTIONS(1456), - [anon_sym_if] = ACTIONS(1827), - [anon_sym_DOLLARif] = ACTIONS(1460), - [anon_sym_match] = ACTIONS(1462), - [anon_sym_select] = ACTIONS(1464), - [anon_sym_lock] = ACTIONS(1466), - [anon_sym_rlock] = ACTIONS(1466), - [anon_sym_unsafe] = ACTIONS(1833), - [anon_sym_sql] = ACTIONS(1470), - [sym_int_literal] = ACTIONS(1456), - [sym_float_literal] = ACTIONS(1472), - [sym_rune_literal] = ACTIONS(1472), - [sym_pseudo_compile_time_identifier] = ACTIONS(1474), + [anon_sym_BANG] = ACTIONS(3362), + [anon_sym_go] = ACTIONS(1091), + [anon_sym_spawn] = ACTIONS(1093), + [anon_sym_json_DOTdecode] = ACTIONS(1095), + [anon_sym_LBRACK2] = ACTIONS(1097), + [anon_sym_TILDE] = ACTIONS(1083), + [anon_sym_CARET] = ACTIONS(1083), + [anon_sym_AMP] = ACTIONS(3364), + [anon_sym_LT_DASH] = ACTIONS(1101), + [sym_none] = ACTIONS(1103), + [sym_true] = ACTIONS(1103), + [sym_false] = ACTIONS(1103), + [sym_nil] = ACTIONS(1103), + [anon_sym_if] = ACTIONS(1105), + [anon_sym_DOLLARif] = ACTIONS(1109), + [anon_sym_match] = ACTIONS(1111), + [anon_sym_select] = ACTIONS(3138), + [anon_sym_lock] = ACTIONS(3140), + [anon_sym_rlock] = ACTIONS(3140), + [anon_sym_unsafe] = ACTIONS(1117), + [anon_sym_sql] = ACTIONS(1119), + [sym_int_literal] = ACTIONS(1103), + [sym_float_literal] = ACTIONS(1121), + [sym_rune_literal] = ACTIONS(1121), + [sym_pseudo_compile_time_identifier] = ACTIONS(1123), [anon_sym_shared] = ACTIONS(83), [anon_sym_map_LBRACK] = ACTIONS(85), [anon_sym_chan] = ACTIONS(87), [anon_sym_thread] = ACTIONS(89), [anon_sym_atomic] = ACTIONS(91), - [sym___double_quote] = ACTIONS(1478), - [sym___single_quote] = ACTIONS(1480), - [sym___c_double_quote] = ACTIONS(1482), - [sym___c_single_quote] = ACTIONS(1484), - [sym___r_double_quote] = ACTIONS(1486), - [sym___r_single_quote] = ACTIONS(1488), + [sym___double_quote] = ACTIONS(1125), + [sym___single_quote] = ACTIONS(1127), + [sym___c_double_quote] = ACTIONS(1129), + [sym___c_single_quote] = ACTIONS(1131), + [sym___r_double_quote] = ACTIONS(1133), + [sym___r_single_quote] = ACTIONS(1135), }, [667] = { [sym_line_comment] = STATE(667), [sym_block_comment] = STATE(667), - [sym__expression] = STATE(2814), - [sym__expression_without_blocks] = STATE(2886), - [sym__expression_with_blocks] = STATE(2300), - [sym_inc_expression] = STATE(2307), - [sym_dec_expression] = STATE(2307), - [sym_or_block_expression] = STATE(2307), - [sym_option_propagation_expression] = STATE(2307), - [sym_result_propagation_expression] = STATE(2307), - [sym_anon_struct_value_expression] = STATE(2380), - [sym_go_expression] = STATE(2307), - [sym_spawn_expression] = STATE(2307), - [sym_parenthesized_expression] = STATE(2307), - [sym_call_expression] = STATE(2307), - [sym_type_initializer] = STATE(2380), - [sym_function_literal] = STATE(2307), - [sym_reference_expression] = STATE(2311), - [sym_type_reference_expression] = STATE(3541), - [sym_unary_expression] = STATE(2307), - [sym_receive_expression] = STATE(2307), - [sym_binary_expression] = STATE(2307), - [sym_as_type_cast_expression] = STATE(2307), - [sym__max_group] = STATE(2307), - [sym_literal] = STATE(2292), - [sym_map_init_expression] = STATE(2380), - [sym_array_creation] = STATE(2307), - [sym_fixed_array_creation] = STATE(2307), - [sym_selector_expression] = STATE(2307), - [sym_index_expression] = STATE(2307), - [sym_slice_expression] = STATE(2307), - [sym_if_expression] = STATE(2380), - [sym_compile_time_if_expression] = STATE(2380), - [sym_is_expression] = STATE(2307), - [sym_in_expression] = STATE(2307), - [sym_enum_fetch] = STATE(2307), - [sym_match_expression] = STATE(2380), - [sym_select_expression] = STATE(2380), - [sym_lock_expression] = STATE(2380), - [sym_unsafe_expression] = STATE(2380), - [sym_sql_expression] = STATE(2380), - [sym_c_string_literal] = STATE(2308), - [sym_raw_string_literal] = STATE(2308), - [sym_interpreted_string_literal] = STATE(2308), - [sym_mutability_modifiers] = STATE(939), - [sym_plain_type] = STATE(4297), - [sym__plain_type_without_special] = STATE(2302), - [sym_anon_struct_type] = STATE(2303), - [sym_multi_return_type] = STATE(2302), - [sym_result_type] = STATE(2302), - [sym_option_type] = STATE(2302), - [sym_qualified_type] = STATE(3541), - [sym_fixed_array_type] = STATE(2303), - [sym_array_type] = STATE(2303), - [sym_pointer_type] = STATE(2303), - [sym_wrong_pointer_type] = STATE(2303), - [sym_map_type] = STATE(2303), - [sym_channel_type] = STATE(2303), - [sym_shared_type] = STATE(2303), - [sym_thread_type] = STATE(2303), - [sym_atomic_type] = STATE(2303), - [sym_generic_type] = STATE(2303), - [sym_function_type] = STATE(2303), - [sym_identifier] = ACTIONS(2189), - [anon_sym_SLASH_SLASH] = ACTIONS(3), - [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1428), - [anon_sym_LBRACE] = ACTIONS(1430), - [anon_sym_LPAREN] = ACTIONS(1432), - [anon_sym_fn] = ACTIONS(1434), - [anon_sym_PLUS] = ACTIONS(2491), - [anon_sym_DASH] = ACTIONS(2491), - [anon_sym_STAR] = ACTIONS(3354), - [anon_sym_struct] = ACTIONS(1440), - [anon_sym_mut] = ACTIONS(41), - [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(3356), - [anon_sym_go] = ACTIONS(2497), - [anon_sym_spawn] = ACTIONS(2499), - [anon_sym_json_DOTdecode] = ACTIONS(1448), - [anon_sym_LBRACK2] = ACTIONS(1450), - [anon_sym_TILDE] = ACTIONS(2491), - [anon_sym_CARET] = ACTIONS(2491), - [anon_sym_AMP] = ACTIONS(3358), - [anon_sym_LT_DASH] = ACTIONS(2503), - [sym_none] = ACTIONS(1456), - [sym_true] = ACTIONS(1456), - [sym_false] = ACTIONS(1456), - [sym_nil] = ACTIONS(1456), - [anon_sym_if] = ACTIONS(1827), - [anon_sym_DOLLARif] = ACTIONS(1460), - [anon_sym_match] = ACTIONS(1462), - [anon_sym_select] = ACTIONS(1464), - [anon_sym_lock] = ACTIONS(1466), - [anon_sym_rlock] = ACTIONS(1466), - [anon_sym_unsafe] = ACTIONS(1833), - [anon_sym_sql] = ACTIONS(1470), - [sym_int_literal] = ACTIONS(1456), - [sym_float_literal] = ACTIONS(1472), - [sym_rune_literal] = ACTIONS(1472), - [sym_pseudo_compile_time_identifier] = ACTIONS(1474), - [anon_sym_shared] = ACTIONS(83), - [anon_sym_map_LBRACK] = ACTIONS(85), - [anon_sym_chan] = ACTIONS(87), - [anon_sym_thread] = ACTIONS(89), - [anon_sym_atomic] = ACTIONS(91), - [sym___double_quote] = ACTIONS(1478), - [sym___single_quote] = ACTIONS(1480), - [sym___c_double_quote] = ACTIONS(1482), - [sym___c_single_quote] = ACTIONS(1484), - [sym___r_double_quote] = ACTIONS(1486), - [sym___r_single_quote] = ACTIONS(1488), - }, - [668] = { - [sym_line_comment] = STATE(668), - [sym_block_comment] = STATE(668), - [sym__expression] = STATE(959), - [sym__expression_without_blocks] = STATE(1017), - [sym__expression_with_blocks] = STATE(1017), - [sym_inc_expression] = STATE(1018), - [sym_dec_expression] = STATE(1018), - [sym_or_block_expression] = STATE(1018), - [sym_option_propagation_expression] = STATE(1018), - [sym_result_propagation_expression] = STATE(1018), - [sym_anon_struct_value_expression] = STATE(993), - [sym_go_expression] = STATE(1018), - [sym_spawn_expression] = STATE(1018), - [sym_parenthesized_expression] = STATE(1018), - [sym_call_expression] = STATE(1018), - [sym_type_initializer] = STATE(993), - [sym_function_literal] = STATE(1018), - [sym_reference_expression] = STATE(1046), - [sym_type_reference_expression] = STATE(3541), - [sym_unary_expression] = STATE(1018), - [sym_receive_expression] = STATE(1018), - [sym_binary_expression] = STATE(1018), - [sym_as_type_cast_expression] = STATE(1018), - [sym__max_group] = STATE(1018), - [sym_literal] = STATE(1014), - [sym_map_init_expression] = STATE(993), - [sym_array_creation] = STATE(1018), - [sym_fixed_array_creation] = STATE(1018), - [sym_selector_expression] = STATE(1018), - [sym_index_expression] = STATE(1018), - [sym_slice_expression] = STATE(1018), - [sym_if_expression] = STATE(993), - [sym_compile_time_if_expression] = STATE(993), - [sym_is_expression] = STATE(1018), - [sym_in_expression] = STATE(1018), - [sym_enum_fetch] = STATE(1018), - [sym_match_expression] = STATE(993), - [sym_select_expression] = STATE(993), - [sym_lock_expression] = STATE(993), - [sym_unsafe_expression] = STATE(993), - [sym_sql_expression] = STATE(993), - [sym_c_string_literal] = STATE(1006), - [sym_raw_string_literal] = STATE(1006), - [sym_interpreted_string_literal] = STATE(1006), - [sym_mutability_modifiers] = STATE(691), - [sym_plain_type] = STATE(4296), - [sym__plain_type_without_special] = STATE(2302), - [sym_anon_struct_type] = STATE(2303), - [sym_multi_return_type] = STATE(2302), - [sym_result_type] = STATE(2302), - [sym_option_type] = STATE(2302), - [sym_qualified_type] = STATE(3541), - [sym_fixed_array_type] = STATE(2303), - [sym_array_type] = STATE(2303), - [sym_pointer_type] = STATE(2303), - [sym_wrong_pointer_type] = STATE(2303), - [sym_map_type] = STATE(2303), - [sym_channel_type] = STATE(2303), - [sym_shared_type] = STATE(2303), - [sym_thread_type] = STATE(2303), - [sym_atomic_type] = STATE(2303), - [sym_generic_type] = STATE(2303), - [sym_function_type] = STATE(2303), + [sym__expression] = STATE(961), + [sym__expression_without_blocks] = STATE(1086), + [sym__expression_with_blocks] = STATE(1086), + [sym_inc_expression] = STATE(1088), + [sym_dec_expression] = STATE(1088), + [sym_or_block_expression] = STATE(1088), + [sym_option_propagation_expression] = STATE(1088), + [sym_result_propagation_expression] = STATE(1088), + [sym_anon_struct_value_expression] = STATE(1025), + [sym_go_expression] = STATE(1088), + [sym_spawn_expression] = STATE(1088), + [sym_parenthesized_expression] = STATE(1088), + [sym_call_expression] = STATE(1088), + [sym_type_initializer] = STATE(1025), + [sym_function_literal] = STATE(1088), + [sym_reference_expression] = STATE(1024), + [sym_type_reference_expression] = STATE(3460), + [sym_unary_expression] = STATE(1088), + [sym_receive_expression] = STATE(1088), + [sym_binary_expression] = STATE(1088), + [sym_as_type_cast_expression] = STATE(1088), + [sym__max_group] = STATE(1088), + [sym_literal] = STATE(1078), + [sym_map_init_expression] = STATE(1025), + [sym_array_creation] = STATE(1088), + [sym_fixed_array_creation] = STATE(1088), + [sym_selector_expression] = STATE(1088), + [sym_index_expression] = STATE(1088), + [sym_slice_expression] = STATE(1088), + [sym_if_expression] = STATE(1025), + [sym_compile_time_if_expression] = STATE(1025), + [sym_is_expression] = STATE(1088), + [sym_in_expression] = STATE(1088), + [sym_enum_fetch] = STATE(1088), + [sym_match_expression] = STATE(1025), + [sym_select_expression] = STATE(1025), + [sym_lock_expression] = STATE(1025), + [sym_unsafe_expression] = STATE(1025), + [sym_sql_expression] = STATE(1025), + [sym_c_string_literal] = STATE(993), + [sym_raw_string_literal] = STATE(993), + [sym_interpreted_string_literal] = STATE(993), + [sym_mutability_modifiers] = STATE(618), + [sym_plain_type] = STATE(4090), + [sym__plain_type_without_special] = STATE(2360), + [sym_anon_struct_type] = STATE(2362), + [sym_multi_return_type] = STATE(2360), + [sym_result_type] = STATE(2360), + [sym_option_type] = STATE(2360), + [sym_qualified_type] = STATE(3460), + [sym_fixed_array_type] = STATE(2362), + [sym_array_type] = STATE(2362), + [sym_pointer_type] = STATE(2362), + [sym_wrong_pointer_type] = STATE(2362), + [sym_map_type] = STATE(2362), + [sym_channel_type] = STATE(2362), + [sym_shared_type] = STATE(2362), + [sym_thread_type] = STATE(2362), + [sym_atomic_type] = STATE(2362), + [sym_generic_type] = STATE(2362), + [sym_function_type] = STATE(2362), [sym_identifier] = ACTIONS(493), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), [anon_sym_DOT] = ACTIONS(501), - [anon_sym_LBRACE] = ACTIONS(2319), - [anon_sym_LPAREN] = ACTIONS(2321), + [anon_sym_LBRACE] = ACTIONS(2235), + [anon_sym_LPAREN] = ACTIONS(2237), [anon_sym_fn] = ACTIONS(507), - [anon_sym_PLUS] = ACTIONS(3360), - [anon_sym_DASH] = ACTIONS(3360), - [anon_sym_STAR] = ACTIONS(3362), + [anon_sym_PLUS] = ACTIONS(3366), + [anon_sym_DASH] = ACTIONS(3366), + [anon_sym_STAR] = ACTIONS(3368), [anon_sym_struct] = ACTIONS(513), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(3364), - [anon_sym_go] = ACTIONS(3366), - [anon_sym_spawn] = ACTIONS(3368), - [anon_sym_json_DOTdecode] = ACTIONS(2329), - [anon_sym_LBRACK2] = ACTIONS(2331), - [anon_sym_TILDE] = ACTIONS(3360), - [anon_sym_CARET] = ACTIONS(3360), - [anon_sym_AMP] = ACTIONS(3370), - [anon_sym_LT_DASH] = ACTIONS(3372), + [anon_sym_BANG] = ACTIONS(3370), + [anon_sym_go] = ACTIONS(3372), + [anon_sym_spawn] = ACTIONS(3374), + [anon_sym_json_DOTdecode] = ACTIONS(2245), + [anon_sym_LBRACK2] = ACTIONS(2247), + [anon_sym_TILDE] = ACTIONS(3366), + [anon_sym_CARET] = ACTIONS(3366), + [anon_sym_AMP] = ACTIONS(3376), + [anon_sym_LT_DASH] = ACTIONS(3378), [sym_none] = ACTIONS(531), [sym_true] = ACTIONS(531), [sym_false] = ACTIONS(531), @@ -100098,12180 +100004,12522 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_if] = ACTIONS(533), [anon_sym_DOLLARif] = ACTIONS(535), [anon_sym_match] = ACTIONS(537), - [anon_sym_select] = ACTIONS(3374), - [anon_sym_lock] = ACTIONS(3376), - [anon_sym_rlock] = ACTIONS(3376), + [anon_sym_select] = ACTIONS(3380), + [anon_sym_lock] = ACTIONS(3382), + [anon_sym_rlock] = ACTIONS(3382), [anon_sym_unsafe] = ACTIONS(543), [anon_sym_sql] = ACTIONS(545), [sym_int_literal] = ACTIONS(531), - [sym_float_literal] = ACTIONS(2337), - [sym_rune_literal] = ACTIONS(2337), + [sym_float_literal] = ACTIONS(2253), + [sym_rune_literal] = ACTIONS(2253), [sym_pseudo_compile_time_identifier] = ACTIONS(547), [anon_sym_shared] = ACTIONS(83), [anon_sym_map_LBRACK] = ACTIONS(85), [anon_sym_chan] = ACTIONS(87), [anon_sym_thread] = ACTIONS(89), [anon_sym_atomic] = ACTIONS(91), - [sym___double_quote] = ACTIONS(2339), - [sym___single_quote] = ACTIONS(2341), - [sym___c_double_quote] = ACTIONS(2343), - [sym___c_single_quote] = ACTIONS(2345), - [sym___r_double_quote] = ACTIONS(2347), - [sym___r_single_quote] = ACTIONS(2349), + [sym___double_quote] = ACTIONS(2255), + [sym___single_quote] = ACTIONS(2257), + [sym___c_double_quote] = ACTIONS(2259), + [sym___c_single_quote] = ACTIONS(2261), + [sym___r_double_quote] = ACTIONS(2263), + [sym___r_single_quote] = ACTIONS(2265), + }, + [668] = { + [sym_line_comment] = STATE(668), + [sym_block_comment] = STATE(668), + [sym__expression] = STATE(2830), + [sym__expression_without_blocks] = STATE(2347), + [sym__expression_with_blocks] = STATE(2347), + [sym_inc_expression] = STATE(2379), + [sym_dec_expression] = STATE(2379), + [sym_or_block_expression] = STATE(2379), + [sym_option_propagation_expression] = STATE(2379), + [sym_result_propagation_expression] = STATE(2379), + [sym_anon_struct_value_expression] = STATE(2378), + [sym_go_expression] = STATE(2379), + [sym_spawn_expression] = STATE(2379), + [sym_parenthesized_expression] = STATE(2379), + [sym_call_expression] = STATE(2379), + [sym_type_initializer] = STATE(2378), + [sym_function_literal] = STATE(2379), + [sym_reference_expression] = STATE(2917), + [sym_type_reference_expression] = STATE(3460), + [sym_unary_expression] = STATE(2379), + [sym_receive_expression] = STATE(2379), + [sym_binary_expression] = STATE(2379), + [sym_as_type_cast_expression] = STATE(2379), + [sym__max_group] = STATE(2379), + [sym_literal] = STATE(2392), + [sym_map_init_expression] = STATE(2378), + [sym_array_creation] = STATE(2379), + [sym_fixed_array_creation] = STATE(2379), + [sym_selector_expression] = STATE(2914), + [sym_index_expression] = STATE(2379), + [sym_slice_expression] = STATE(2379), + [sym_if_expression] = STATE(2378), + [sym_compile_time_if_expression] = STATE(2378), + [sym_is_expression] = STATE(2379), + [sym_in_expression] = STATE(2379), + [sym_enum_fetch] = STATE(2379), + [sym_match_expression] = STATE(2378), + [sym_select_expression] = STATE(2378), + [sym_lock_expression] = STATE(2378), + [sym_unsafe_expression] = STATE(2378), + [sym_sql_expression] = STATE(2378), + [sym_c_string_literal] = STATE(2401), + [sym_raw_string_literal] = STATE(2401), + [sym_interpreted_string_literal] = STATE(2401), + [sym_mutability_modifiers] = STATE(939), + [sym_plain_type] = STATE(4160), + [sym__plain_type_without_special] = STATE(2360), + [sym_anon_struct_type] = STATE(2362), + [sym_multi_return_type] = STATE(2360), + [sym_result_type] = STATE(2360), + [sym_option_type] = STATE(2360), + [sym_qualified_type] = STATE(3460), + [sym_fixed_array_type] = STATE(2362), + [sym_array_type] = STATE(2362), + [sym_pointer_type] = STATE(2362), + [sym_wrong_pointer_type] = STATE(2362), + [sym_map_type] = STATE(2362), + [sym_channel_type] = STATE(2362), + [sym_shared_type] = STATE(2362), + [sym_thread_type] = STATE(2362), + [sym_atomic_type] = STATE(2362), + [sym_generic_type] = STATE(2362), + [sym_function_type] = STATE(2362), + [sym_identifier] = ACTIONS(2477), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(1430), + [anon_sym_LBRACE] = ACTIONS(1432), + [anon_sym_LPAREN] = ACTIONS(1434), + [anon_sym_fn] = ACTIONS(1436), + [anon_sym_PLUS] = ACTIONS(1438), + [anon_sym_DASH] = ACTIONS(1438), + [anon_sym_STAR] = ACTIONS(1440), + [anon_sym_struct] = ACTIONS(1442), + [anon_sym_mut] = ACTIONS(41), + [anon_sym_QMARK] = ACTIONS(47), + [anon_sym_BANG] = ACTIONS(1444), + [anon_sym_go] = ACTIONS(1446), + [anon_sym_spawn] = ACTIONS(1448), + [anon_sym_json_DOTdecode] = ACTIONS(1450), + [anon_sym_LBRACK2] = ACTIONS(1452), + [anon_sym_TILDE] = ACTIONS(1438), + [anon_sym_CARET] = ACTIONS(1438), + [anon_sym_AMP] = ACTIONS(1454), + [anon_sym_LT_DASH] = ACTIONS(1456), + [sym_none] = ACTIONS(1458), + [sym_true] = ACTIONS(1458), + [sym_false] = ACTIONS(1458), + [sym_nil] = ACTIONS(1458), + [anon_sym_if] = ACTIONS(1833), + [anon_sym_DOLLARif] = ACTIONS(1462), + [anon_sym_match] = ACTIONS(1464), + [anon_sym_select] = ACTIONS(1466), + [anon_sym_lock] = ACTIONS(1468), + [anon_sym_rlock] = ACTIONS(1468), + [anon_sym_unsafe] = ACTIONS(1839), + [anon_sym_sql] = ACTIONS(1472), + [sym_int_literal] = ACTIONS(1458), + [sym_float_literal] = ACTIONS(1474), + [sym_rune_literal] = ACTIONS(1474), + [sym_pseudo_compile_time_identifier] = ACTIONS(1476), + [anon_sym_shared] = ACTIONS(83), + [anon_sym_map_LBRACK] = ACTIONS(85), + [anon_sym_chan] = ACTIONS(87), + [anon_sym_thread] = ACTIONS(89), + [anon_sym_atomic] = ACTIONS(91), + [sym___double_quote] = ACTIONS(1480), + [sym___single_quote] = ACTIONS(1482), + [sym___c_double_quote] = ACTIONS(1484), + [sym___c_single_quote] = ACTIONS(1486), + [sym___r_double_quote] = ACTIONS(1488), + [sym___r_single_quote] = ACTIONS(1490), }, [669] = { [sym_line_comment] = STATE(669), [sym_block_comment] = STATE(669), - [sym__expression] = STATE(2661), - [sym__expression_without_blocks] = STATE(2300), - [sym__expression_with_blocks] = STATE(2300), - [sym_inc_expression] = STATE(2307), - [sym_dec_expression] = STATE(2307), - [sym_or_block_expression] = STATE(2307), - [sym_option_propagation_expression] = STATE(2307), - [sym_result_propagation_expression] = STATE(2307), - [sym_anon_struct_value_expression] = STATE(2380), - [sym_go_expression] = STATE(2307), - [sym_spawn_expression] = STATE(2307), - [sym_parenthesized_expression] = STATE(2307), - [sym_call_expression] = STATE(2307), - [sym_type_initializer] = STATE(2380), - [sym_function_literal] = STATE(2307), - [sym_reference_expression] = STATE(2311), - [sym_type_reference_expression] = STATE(3541), - [sym_unary_expression] = STATE(2307), - [sym_receive_expression] = STATE(2307), - [sym_binary_expression] = STATE(2307), - [sym_as_type_cast_expression] = STATE(2307), - [sym__max_group] = STATE(2307), - [sym_literal] = STATE(2292), - [sym_map_init_expression] = STATE(2380), - [sym_array_creation] = STATE(2307), - [sym_fixed_array_creation] = STATE(2307), - [sym_selector_expression] = STATE(2307), - [sym_index_expression] = STATE(2307), - [sym_slice_expression] = STATE(2307), - [sym_if_expression] = STATE(2380), - [sym_compile_time_if_expression] = STATE(2380), - [sym_is_expression] = STATE(2307), - [sym_in_expression] = STATE(2307), - [sym_enum_fetch] = STATE(2307), - [sym_match_expression] = STATE(2380), - [sym_select_expression] = STATE(2380), - [sym_lock_expression] = STATE(2380), - [sym_unsafe_expression] = STATE(2380), - [sym_sql_expression] = STATE(2380), - [sym_c_string_literal] = STATE(2308), - [sym_raw_string_literal] = STATE(2308), - [sym_interpreted_string_literal] = STATE(2308), - [sym_mutability_modifiers] = STATE(939), - [sym_plain_type] = STATE(4297), - [sym__plain_type_without_special] = STATE(2302), - [sym_anon_struct_type] = STATE(2303), - [sym_multi_return_type] = STATE(2302), - [sym_result_type] = STATE(2302), - [sym_option_type] = STATE(2302), - [sym_qualified_type] = STATE(3541), - [sym_fixed_array_type] = STATE(2303), - [sym_array_type] = STATE(2303), - [sym_pointer_type] = STATE(2303), - [sym_wrong_pointer_type] = STATE(2303), - [sym_map_type] = STATE(2303), - [sym_channel_type] = STATE(2303), - [sym_shared_type] = STATE(2303), - [sym_thread_type] = STATE(2303), - [sym_atomic_type] = STATE(2303), - [sym_generic_type] = STATE(2303), - [sym_function_type] = STATE(2303), - [sym_identifier] = ACTIONS(2189), + [sym__expression] = STATE(2451), + [sym__expression_without_blocks] = STATE(2638), + [sym__expression_with_blocks] = STATE(2638), + [sym_inc_expression] = STATE(2765), + [sym_dec_expression] = STATE(2765), + [sym_or_block_expression] = STATE(2765), + [sym_option_propagation_expression] = STATE(2765), + [sym_result_propagation_expression] = STATE(2765), + [sym_anon_struct_value_expression] = STATE(2637), + [sym_go_expression] = STATE(2765), + [sym_spawn_expression] = STATE(2765), + [sym_parenthesized_expression] = STATE(2765), + [sym_call_expression] = STATE(2765), + [sym_type_initializer] = STATE(2637), + [sym_function_literal] = STATE(2765), + [sym_reference_expression] = STATE(2764), + [sym_type_reference_expression] = STATE(3460), + [sym_unary_expression] = STATE(2765), + [sym_receive_expression] = STATE(2765), + [sym_binary_expression] = STATE(2765), + [sym_as_type_cast_expression] = STATE(2765), + [sym__max_group] = STATE(2765), + [sym_literal] = STATE(2771), + [sym_map_init_expression] = STATE(2637), + [sym_array_creation] = STATE(2765), + [sym_fixed_array_creation] = STATE(2765), + [sym_selector_expression] = STATE(2765), + [sym_index_expression] = STATE(2765), + [sym_slice_expression] = STATE(2765), + [sym_if_expression] = STATE(2637), + [sym_compile_time_if_expression] = STATE(2637), + [sym_is_expression] = STATE(2765), + [sym_in_expression] = STATE(2765), + [sym_enum_fetch] = STATE(2765), + [sym_match_expression] = STATE(2637), + [sym_select_expression] = STATE(2637), + [sym_lock_expression] = STATE(2637), + [sym_unsafe_expression] = STATE(2637), + [sym_sql_expression] = STATE(2637), + [sym_c_string_literal] = STATE(2762), + [sym_raw_string_literal] = STATE(2762), + [sym_interpreted_string_literal] = STATE(2762), + [sym_mutability_modifiers] = STATE(822), + [sym_plain_type] = STATE(4011), + [sym__plain_type_without_special] = STATE(2360), + [sym_anon_struct_type] = STATE(2362), + [sym_multi_return_type] = STATE(2360), + [sym_result_type] = STATE(2360), + [sym_option_type] = STATE(2360), + [sym_qualified_type] = STATE(3460), + [sym_fixed_array_type] = STATE(2362), + [sym_array_type] = STATE(2362), + [sym_pointer_type] = STATE(2362), + [sym_wrong_pointer_type] = STATE(2362), + [sym_map_type] = STATE(2362), + [sym_channel_type] = STATE(2362), + [sym_shared_type] = STATE(2362), + [sym_thread_type] = STATE(2362), + [sym_atomic_type] = STATE(2362), + [sym_generic_type] = STATE(2362), + [sym_function_type] = STATE(2362), + [sym_identifier] = ACTIONS(1815), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1428), - [anon_sym_LBRACE] = ACTIONS(1430), - [anon_sym_LPAREN] = ACTIONS(1432), - [anon_sym_fn] = ACTIONS(1434), - [anon_sym_PLUS] = ACTIONS(2491), - [anon_sym_DASH] = ACTIONS(2491), - [anon_sym_STAR] = ACTIONS(3354), - [anon_sym_struct] = ACTIONS(1440), + [anon_sym_DOT] = ACTIONS(1073), + [anon_sym_LBRACE] = ACTIONS(1075), + [anon_sym_LPAREN] = ACTIONS(1079), + [anon_sym_fn] = ACTIONS(1081), + [anon_sym_PLUS] = ACTIONS(3070), + [anon_sym_DASH] = ACTIONS(3070), + [anon_sym_STAR] = ACTIONS(3072), + [anon_sym_struct] = ACTIONS(1087), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(3356), - [anon_sym_go] = ACTIONS(2497), - [anon_sym_spawn] = ACTIONS(2499), - [anon_sym_json_DOTdecode] = ACTIONS(1448), - [anon_sym_LBRACK2] = ACTIONS(1450), - [anon_sym_TILDE] = ACTIONS(2491), - [anon_sym_CARET] = ACTIONS(2491), - [anon_sym_AMP] = ACTIONS(3358), - [anon_sym_LT_DASH] = ACTIONS(2503), - [sym_none] = ACTIONS(1456), - [sym_true] = ACTIONS(1456), - [sym_false] = ACTIONS(1456), - [sym_nil] = ACTIONS(1456), - [anon_sym_if] = ACTIONS(1827), - [anon_sym_DOLLARif] = ACTIONS(1460), - [anon_sym_match] = ACTIONS(1462), - [anon_sym_select] = ACTIONS(1464), - [anon_sym_lock] = ACTIONS(1466), - [anon_sym_rlock] = ACTIONS(1466), - [anon_sym_unsafe] = ACTIONS(1833), - [anon_sym_sql] = ACTIONS(1470), - [sym_int_literal] = ACTIONS(1456), - [sym_float_literal] = ACTIONS(1472), - [sym_rune_literal] = ACTIONS(1472), - [sym_pseudo_compile_time_identifier] = ACTIONS(1474), + [anon_sym_BANG] = ACTIONS(3074), + [anon_sym_go] = ACTIONS(3076), + [anon_sym_spawn] = ACTIONS(3078), + [anon_sym_json_DOTdecode] = ACTIONS(1095), + [anon_sym_LBRACK2] = ACTIONS(1097), + [anon_sym_TILDE] = ACTIONS(3070), + [anon_sym_CARET] = ACTIONS(3070), + [anon_sym_AMP] = ACTIONS(3080), + [anon_sym_LT_DASH] = ACTIONS(3082), + [sym_none] = ACTIONS(1103), + [sym_true] = ACTIONS(1103), + [sym_false] = ACTIONS(1103), + [sym_nil] = ACTIONS(1103), + [anon_sym_if] = ACTIONS(1105), + [anon_sym_DOLLARif] = ACTIONS(1109), + [anon_sym_match] = ACTIONS(1111), + [anon_sym_select] = ACTIONS(3084), + [anon_sym_lock] = ACTIONS(3086), + [anon_sym_rlock] = ACTIONS(3086), + [anon_sym_unsafe] = ACTIONS(1117), + [anon_sym_sql] = ACTIONS(1119), + [sym_int_literal] = ACTIONS(1103), + [sym_float_literal] = ACTIONS(1121), + [sym_rune_literal] = ACTIONS(1121), + [sym_pseudo_compile_time_identifier] = ACTIONS(1123), [anon_sym_shared] = ACTIONS(83), [anon_sym_map_LBRACK] = ACTIONS(85), [anon_sym_chan] = ACTIONS(87), [anon_sym_thread] = ACTIONS(89), [anon_sym_atomic] = ACTIONS(91), - [sym___double_quote] = ACTIONS(1478), - [sym___single_quote] = ACTIONS(1480), - [sym___c_double_quote] = ACTIONS(1482), - [sym___c_single_quote] = ACTIONS(1484), - [sym___r_double_quote] = ACTIONS(1486), - [sym___r_single_quote] = ACTIONS(1488), + [sym___double_quote] = ACTIONS(1125), + [sym___single_quote] = ACTIONS(1127), + [sym___c_double_quote] = ACTIONS(1129), + [sym___c_single_quote] = ACTIONS(1131), + [sym___r_double_quote] = ACTIONS(1133), + [sym___r_single_quote] = ACTIONS(1135), }, [670] = { [sym_line_comment] = STATE(670), [sym_block_comment] = STATE(670), - [sym__expression] = STATE(959), - [sym__expression_without_blocks] = STATE(1017), - [sym__expression_with_blocks] = STATE(1017), - [sym_inc_expression] = STATE(1018), - [sym_dec_expression] = STATE(1018), - [sym_or_block_expression] = STATE(1018), - [sym_option_propagation_expression] = STATE(1018), - [sym_result_propagation_expression] = STATE(1018), - [sym_anon_struct_value_expression] = STATE(993), - [sym_go_expression] = STATE(1018), - [sym_spawn_expression] = STATE(1018), - [sym_parenthesized_expression] = STATE(1018), - [sym_call_expression] = STATE(1018), - [sym_type_initializer] = STATE(993), - [sym_function_literal] = STATE(1018), - [sym_reference_expression] = STATE(1046), - [sym_type_reference_expression] = STATE(3541), - [sym_unary_expression] = STATE(1018), - [sym_receive_expression] = STATE(1018), - [sym_binary_expression] = STATE(1018), - [sym_as_type_cast_expression] = STATE(1018), - [sym__max_group] = STATE(1018), - [sym_literal] = STATE(1014), - [sym_map_init_expression] = STATE(993), - [sym_array_creation] = STATE(1018), - [sym_fixed_array_creation] = STATE(1018), - [sym_selector_expression] = STATE(1018), - [sym_index_expression] = STATE(1018), - [sym_slice_expression] = STATE(1018), - [sym_if_expression] = STATE(993), - [sym_compile_time_if_expression] = STATE(993), - [sym_is_expression] = STATE(1018), - [sym_in_expression] = STATE(1018), - [sym_enum_fetch] = STATE(1018), - [sym_match_expression] = STATE(993), - [sym_select_expression] = STATE(993), - [sym_lock_expression] = STATE(993), - [sym_unsafe_expression] = STATE(993), - [sym_sql_expression] = STATE(993), - [sym_c_string_literal] = STATE(1006), - [sym_raw_string_literal] = STATE(1006), - [sym_interpreted_string_literal] = STATE(1006), - [sym_mutability_modifiers] = STATE(691), - [sym_plain_type] = STATE(4290), - [sym__plain_type_without_special] = STATE(2302), - [sym_anon_struct_type] = STATE(2303), - [sym_multi_return_type] = STATE(2302), - [sym_result_type] = STATE(2302), - [sym_option_type] = STATE(2302), - [sym_qualified_type] = STATE(3541), - [sym_fixed_array_type] = STATE(2303), - [sym_array_type] = STATE(2303), - [sym_pointer_type] = STATE(2303), - [sym_wrong_pointer_type] = STATE(2303), - [sym_map_type] = STATE(2303), - [sym_channel_type] = STATE(2303), - [sym_shared_type] = STATE(2303), - [sym_thread_type] = STATE(2303), - [sym_atomic_type] = STATE(2303), - [sym_generic_type] = STATE(2303), - [sym_function_type] = STATE(2303), - [sym_identifier] = ACTIONS(493), + [sym__expression] = STATE(2829), + [sym__expression_without_blocks] = STATE(2912), + [sym__expression_with_blocks] = STATE(2347), + [sym_inc_expression] = STATE(2379), + [sym_dec_expression] = STATE(2379), + [sym_or_block_expression] = STATE(2379), + [sym_option_propagation_expression] = STATE(2379), + [sym_result_propagation_expression] = STATE(2379), + [sym_anon_struct_value_expression] = STATE(2378), + [sym_go_expression] = STATE(2379), + [sym_spawn_expression] = STATE(2379), + [sym_parenthesized_expression] = STATE(2379), + [sym_call_expression] = STATE(2379), + [sym_type_initializer] = STATE(2378), + [sym_function_literal] = STATE(2379), + [sym_reference_expression] = STATE(2377), + [sym_type_reference_expression] = STATE(3460), + [sym_unary_expression] = STATE(2379), + [sym_receive_expression] = STATE(2379), + [sym_binary_expression] = STATE(2379), + [sym_as_type_cast_expression] = STATE(2379), + [sym__max_group] = STATE(2379), + [sym_literal] = STATE(2392), + [sym_map_init_expression] = STATE(2378), + [sym_array_creation] = STATE(2379), + [sym_fixed_array_creation] = STATE(2379), + [sym_selector_expression] = STATE(2379), + [sym_index_expression] = STATE(2379), + [sym_slice_expression] = STATE(2379), + [sym_if_expression] = STATE(2378), + [sym_compile_time_if_expression] = STATE(2378), + [sym_is_expression] = STATE(2379), + [sym_in_expression] = STATE(2379), + [sym_enum_fetch] = STATE(2379), + [sym_match_expression] = STATE(2378), + [sym_select_expression] = STATE(2378), + [sym_lock_expression] = STATE(2378), + [sym_unsafe_expression] = STATE(2378), + [sym_sql_expression] = STATE(2378), + [sym_c_string_literal] = STATE(2401), + [sym_raw_string_literal] = STATE(2401), + [sym_interpreted_string_literal] = STATE(2401), + [sym_mutability_modifiers] = STATE(939), + [sym_plain_type] = STATE(4160), + [sym__plain_type_without_special] = STATE(2360), + [sym_anon_struct_type] = STATE(2362), + [sym_multi_return_type] = STATE(2360), + [sym_result_type] = STATE(2360), + [sym_option_type] = STATE(2360), + [sym_qualified_type] = STATE(3460), + [sym_fixed_array_type] = STATE(2362), + [sym_array_type] = STATE(2362), + [sym_pointer_type] = STATE(2362), + [sym_wrong_pointer_type] = STATE(2362), + [sym_map_type] = STATE(2362), + [sym_channel_type] = STATE(2362), + [sym_shared_type] = STATE(2362), + [sym_thread_type] = STATE(2362), + [sym_atomic_type] = STATE(2362), + [sym_generic_type] = STATE(2362), + [sym_function_type] = STATE(2362), + [sym_identifier] = ACTIONS(2477), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(501), - [anon_sym_LBRACE] = ACTIONS(2319), - [anon_sym_LPAREN] = ACTIONS(2321), - [anon_sym_fn] = ACTIONS(507), - [anon_sym_PLUS] = ACTIONS(3360), - [anon_sym_DASH] = ACTIONS(3360), - [anon_sym_STAR] = ACTIONS(3362), - [anon_sym_struct] = ACTIONS(513), + [anon_sym_DOT] = ACTIONS(1430), + [anon_sym_LBRACE] = ACTIONS(1432), + [anon_sym_LPAREN] = ACTIONS(1434), + [anon_sym_fn] = ACTIONS(1436), + [anon_sym_PLUS] = ACTIONS(2271), + [anon_sym_DASH] = ACTIONS(2271), + [anon_sym_STAR] = ACTIONS(3354), + [anon_sym_struct] = ACTIONS(1442), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(3364), - [anon_sym_go] = ACTIONS(3366), - [anon_sym_spawn] = ACTIONS(3368), - [anon_sym_json_DOTdecode] = ACTIONS(2329), - [anon_sym_LBRACK2] = ACTIONS(2331), - [anon_sym_TILDE] = ACTIONS(3360), - [anon_sym_CARET] = ACTIONS(3360), - [anon_sym_AMP] = ACTIONS(3370), - [anon_sym_LT_DASH] = ACTIONS(3372), - [sym_none] = ACTIONS(531), - [sym_true] = ACTIONS(531), - [sym_false] = ACTIONS(531), - [sym_nil] = ACTIONS(531), - [anon_sym_if] = ACTIONS(533), - [anon_sym_DOLLARif] = ACTIONS(535), - [anon_sym_match] = ACTIONS(537), - [anon_sym_select] = ACTIONS(3374), - [anon_sym_lock] = ACTIONS(3376), - [anon_sym_rlock] = ACTIONS(3376), - [anon_sym_unsafe] = ACTIONS(543), - [anon_sym_sql] = ACTIONS(545), - [sym_int_literal] = ACTIONS(531), - [sym_float_literal] = ACTIONS(2337), - [sym_rune_literal] = ACTIONS(2337), - [sym_pseudo_compile_time_identifier] = ACTIONS(547), + [anon_sym_BANG] = ACTIONS(3356), + [anon_sym_go] = ACTIONS(2277), + [anon_sym_spawn] = ACTIONS(2279), + [anon_sym_json_DOTdecode] = ACTIONS(1450), + [anon_sym_LBRACK2] = ACTIONS(1452), + [anon_sym_TILDE] = ACTIONS(2271), + [anon_sym_CARET] = ACTIONS(2271), + [anon_sym_AMP] = ACTIONS(3358), + [anon_sym_LT_DASH] = ACTIONS(2283), + [sym_none] = ACTIONS(1458), + [sym_true] = ACTIONS(1458), + [sym_false] = ACTIONS(1458), + [sym_nil] = ACTIONS(1458), + [anon_sym_if] = ACTIONS(1833), + [anon_sym_DOLLARif] = ACTIONS(1462), + [anon_sym_match] = ACTIONS(1464), + [anon_sym_select] = ACTIONS(1466), + [anon_sym_lock] = ACTIONS(1468), + [anon_sym_rlock] = ACTIONS(1468), + [anon_sym_unsafe] = ACTIONS(1839), + [anon_sym_sql] = ACTIONS(1472), + [sym_int_literal] = ACTIONS(1458), + [sym_float_literal] = ACTIONS(1474), + [sym_rune_literal] = ACTIONS(1474), + [sym_pseudo_compile_time_identifier] = ACTIONS(1476), [anon_sym_shared] = ACTIONS(83), [anon_sym_map_LBRACK] = ACTIONS(85), [anon_sym_chan] = ACTIONS(87), [anon_sym_thread] = ACTIONS(89), [anon_sym_atomic] = ACTIONS(91), - [sym___double_quote] = ACTIONS(2339), - [sym___single_quote] = ACTIONS(2341), - [sym___c_double_quote] = ACTIONS(2343), - [sym___c_single_quote] = ACTIONS(2345), - [sym___r_double_quote] = ACTIONS(2347), - [sym___r_single_quote] = ACTIONS(2349), + [sym___double_quote] = ACTIONS(1480), + [sym___single_quote] = ACTIONS(1482), + [sym___c_double_quote] = ACTIONS(1484), + [sym___c_single_quote] = ACTIONS(1486), + [sym___r_double_quote] = ACTIONS(1488), + [sym___r_single_quote] = ACTIONS(1490), }, [671] = { [sym_line_comment] = STATE(671), [sym_block_comment] = STATE(671), - [sym__expression] = STATE(959), - [sym__expression_without_blocks] = STATE(1017), - [sym__expression_with_blocks] = STATE(1017), - [sym_inc_expression] = STATE(1018), - [sym_dec_expression] = STATE(1018), - [sym_or_block_expression] = STATE(1018), - [sym_option_propagation_expression] = STATE(1018), - [sym_result_propagation_expression] = STATE(1018), - [sym_anon_struct_value_expression] = STATE(993), - [sym_go_expression] = STATE(1018), - [sym_spawn_expression] = STATE(1018), - [sym_parenthesized_expression] = STATE(1018), - [sym_call_expression] = STATE(1018), - [sym_type_initializer] = STATE(993), - [sym_function_literal] = STATE(1018), - [sym_reference_expression] = STATE(1046), - [sym_type_reference_expression] = STATE(3541), - [sym_unary_expression] = STATE(1018), - [sym_receive_expression] = STATE(1018), - [sym_binary_expression] = STATE(1018), - [sym_as_type_cast_expression] = STATE(1018), - [sym__max_group] = STATE(1018), - [sym_literal] = STATE(1014), - [sym_map_init_expression] = STATE(993), - [sym_array_creation] = STATE(1018), - [sym_fixed_array_creation] = STATE(1018), - [sym_selector_expression] = STATE(1018), - [sym_index_expression] = STATE(1018), - [sym_slice_expression] = STATE(1018), - [sym_if_expression] = STATE(993), - [sym_compile_time_if_expression] = STATE(993), - [sym_is_expression] = STATE(1018), - [sym_in_expression] = STATE(1018), - [sym_enum_fetch] = STATE(1018), - [sym_match_expression] = STATE(993), - [sym_select_expression] = STATE(993), - [sym_lock_expression] = STATE(993), - [sym_unsafe_expression] = STATE(993), - [sym_sql_expression] = STATE(993), - [sym_c_string_literal] = STATE(1006), - [sym_raw_string_literal] = STATE(1006), - [sym_interpreted_string_literal] = STATE(1006), - [sym_mutability_modifiers] = STATE(691), - [sym_plain_type] = STATE(4308), - [sym__plain_type_without_special] = STATE(2302), - [sym_anon_struct_type] = STATE(2303), - [sym_multi_return_type] = STATE(2302), - [sym_result_type] = STATE(2302), - [sym_option_type] = STATE(2302), - [sym_qualified_type] = STATE(3541), - [sym_fixed_array_type] = STATE(2303), - [sym_array_type] = STATE(2303), - [sym_pointer_type] = STATE(2303), - [sym_wrong_pointer_type] = STATE(2303), - [sym_map_type] = STATE(2303), - [sym_channel_type] = STATE(2303), - [sym_shared_type] = STATE(2303), - [sym_thread_type] = STATE(2303), - [sym_atomic_type] = STATE(2303), - [sym_generic_type] = STATE(2303), - [sym_function_type] = STATE(2303), - [sym_identifier] = ACTIONS(493), + [sym__expression] = STATE(2286), + [sym__expression_without_blocks] = STATE(2468), + [sym__expression_with_blocks] = STATE(2468), + [sym_inc_expression] = STATE(2469), + [sym_dec_expression] = STATE(2469), + [sym_or_block_expression] = STATE(2469), + [sym_option_propagation_expression] = STATE(2469), + [sym_result_propagation_expression] = STATE(2469), + [sym_anon_struct_value_expression] = STATE(2470), + [sym_go_expression] = STATE(2469), + [sym_spawn_expression] = STATE(2469), + [sym_parenthesized_expression] = STATE(2469), + [sym_call_expression] = STATE(2469), + [sym_type_initializer] = STATE(2470), + [sym_function_literal] = STATE(2469), + [sym_reference_expression] = STATE(2487), + [sym_type_reference_expression] = STATE(3460), + [sym_unary_expression] = STATE(2469), + [sym_receive_expression] = STATE(2469), + [sym_binary_expression] = STATE(2469), + [sym_as_type_cast_expression] = STATE(2469), + [sym__max_group] = STATE(2469), + [sym_literal] = STATE(2465), + [sym_map_init_expression] = STATE(2470), + [sym_array_creation] = STATE(2469), + [sym_fixed_array_creation] = STATE(2469), + [sym_selector_expression] = STATE(2469), + [sym_index_expression] = STATE(2469), + [sym_slice_expression] = STATE(2469), + [sym_if_expression] = STATE(2470), + [sym_compile_time_if_expression] = STATE(2470), + [sym_is_expression] = STATE(2469), + [sym_in_expression] = STATE(2469), + [sym_enum_fetch] = STATE(2469), + [sym_match_expression] = STATE(2470), + [sym_select_expression] = STATE(2470), + [sym_lock_expression] = STATE(2470), + [sym_unsafe_expression] = STATE(2470), + [sym_sql_expression] = STATE(2470), + [sym_c_string_literal] = STATE(2464), + [sym_raw_string_literal] = STATE(2464), + [sym_interpreted_string_literal] = STATE(2464), + [sym_mutability_modifiers] = STATE(561), + [sym_plain_type] = STATE(4058), + [sym__plain_type_without_special] = STATE(2360), + [sym_anon_struct_type] = STATE(2362), + [sym_multi_return_type] = STATE(2360), + [sym_result_type] = STATE(2360), + [sym_option_type] = STATE(2360), + [sym_qualified_type] = STATE(3460), + [sym_fixed_array_type] = STATE(2362), + [sym_array_type] = STATE(2362), + [sym_pointer_type] = STATE(2362), + [sym_wrong_pointer_type] = STATE(2362), + [sym_map_type] = STATE(2362), + [sym_channel_type] = STATE(2362), + [sym_shared_type] = STATE(2362), + [sym_thread_type] = STATE(2362), + [sym_atomic_type] = STATE(2362), + [sym_generic_type] = STATE(2362), + [sym_function_type] = STATE(2362), + [sym_identifier] = ACTIONS(1691), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(501), - [anon_sym_LBRACE] = ACTIONS(2319), - [anon_sym_LPAREN] = ACTIONS(2321), - [anon_sym_fn] = ACTIONS(507), - [anon_sym_PLUS] = ACTIONS(3360), - [anon_sym_DASH] = ACTIONS(3360), - [anon_sym_STAR] = ACTIONS(3362), - [anon_sym_struct] = ACTIONS(513), + [anon_sym_DOT] = ACTIONS(1693), + [anon_sym_LBRACE] = ACTIONS(2151), + [anon_sym_LPAREN] = ACTIONS(2153), + [anon_sym_fn] = ACTIONS(1699), + [anon_sym_PLUS] = ACTIONS(2155), + [anon_sym_DASH] = ACTIONS(2155), + [anon_sym_STAR] = ACTIONS(2157), + [anon_sym_struct] = ACTIONS(1705), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(3364), - [anon_sym_go] = ACTIONS(3366), - [anon_sym_spawn] = ACTIONS(3368), - [anon_sym_json_DOTdecode] = ACTIONS(2329), - [anon_sym_LBRACK2] = ACTIONS(2331), - [anon_sym_TILDE] = ACTIONS(3360), - [anon_sym_CARET] = ACTIONS(3360), - [anon_sym_AMP] = ACTIONS(3370), - [anon_sym_LT_DASH] = ACTIONS(3372), - [sym_none] = ACTIONS(531), - [sym_true] = ACTIONS(531), - [sym_false] = ACTIONS(531), - [sym_nil] = ACTIONS(531), - [anon_sym_if] = ACTIONS(533), - [anon_sym_DOLLARif] = ACTIONS(535), - [anon_sym_match] = ACTIONS(537), - [anon_sym_select] = ACTIONS(3374), - [anon_sym_lock] = ACTIONS(3376), - [anon_sym_rlock] = ACTIONS(3376), - [anon_sym_unsafe] = ACTIONS(543), - [anon_sym_sql] = ACTIONS(545), - [sym_int_literal] = ACTIONS(531), - [sym_float_literal] = ACTIONS(2337), - [sym_rune_literal] = ACTIONS(2337), - [sym_pseudo_compile_time_identifier] = ACTIONS(547), + [anon_sym_BANG] = ACTIONS(2159), + [anon_sym_go] = ACTIONS(1709), + [anon_sym_spawn] = ACTIONS(1711), + [anon_sym_json_DOTdecode] = ACTIONS(2161), + [anon_sym_LBRACK2] = ACTIONS(2163), + [anon_sym_TILDE] = ACTIONS(2155), + [anon_sym_CARET] = ACTIONS(2155), + [anon_sym_AMP] = ACTIONS(2165), + [anon_sym_LT_DASH] = ACTIONS(2167), + [sym_none] = ACTIONS(1721), + [sym_true] = ACTIONS(1721), + [sym_false] = ACTIONS(1721), + [sym_nil] = ACTIONS(1721), + [anon_sym_if] = ACTIONS(1723), + [anon_sym_DOLLARif] = ACTIONS(1725), + [anon_sym_match] = ACTIONS(1727), + [anon_sym_select] = ACTIONS(1729), + [anon_sym_lock] = ACTIONS(1731), + [anon_sym_rlock] = ACTIONS(1731), + [anon_sym_unsafe] = ACTIONS(1733), + [anon_sym_sql] = ACTIONS(1735), + [sym_int_literal] = ACTIONS(1721), + [sym_float_literal] = ACTIONS(2169), + [sym_rune_literal] = ACTIONS(2169), + [sym_pseudo_compile_time_identifier] = ACTIONS(1737), [anon_sym_shared] = ACTIONS(83), [anon_sym_map_LBRACK] = ACTIONS(85), [anon_sym_chan] = ACTIONS(87), [anon_sym_thread] = ACTIONS(89), [anon_sym_atomic] = ACTIONS(91), - [sym___double_quote] = ACTIONS(2339), - [sym___single_quote] = ACTIONS(2341), - [sym___c_double_quote] = ACTIONS(2343), - [sym___c_single_quote] = ACTIONS(2345), - [sym___r_double_quote] = ACTIONS(2347), - [sym___r_single_quote] = ACTIONS(2349), + [sym___double_quote] = ACTIONS(2171), + [sym___single_quote] = ACTIONS(2173), + [sym___c_double_quote] = ACTIONS(2175), + [sym___c_single_quote] = ACTIONS(2177), + [sym___r_double_quote] = ACTIONS(2179), + [sym___r_single_quote] = ACTIONS(2181), }, [672] = { [sym_line_comment] = STATE(672), [sym_block_comment] = STATE(672), - [sym__expression] = STATE(977), - [sym__expression_without_blocks] = STATE(1017), - [sym__expression_with_blocks] = STATE(1017), - [sym_inc_expression] = STATE(1018), - [sym_dec_expression] = STATE(1018), - [sym_or_block_expression] = STATE(1018), - [sym_option_propagation_expression] = STATE(1018), - [sym_result_propagation_expression] = STATE(1018), - [sym_anon_struct_value_expression] = STATE(993), - [sym_go_expression] = STATE(1018), - [sym_spawn_expression] = STATE(1018), - [sym_parenthesized_expression] = STATE(1018), - [sym_call_expression] = STATE(1018), - [sym_type_initializer] = STATE(993), - [sym_function_literal] = STATE(1018), - [sym_reference_expression] = STATE(1046), - [sym_type_reference_expression] = STATE(3541), - [sym_unary_expression] = STATE(1018), - [sym_receive_expression] = STATE(1018), - [sym_binary_expression] = STATE(1018), - [sym_as_type_cast_expression] = STATE(1018), - [sym__max_group] = STATE(1018), - [sym_literal] = STATE(1014), - [sym_map_init_expression] = STATE(993), - [sym_array_creation] = STATE(1018), - [sym_fixed_array_creation] = STATE(1018), - [sym_selector_expression] = STATE(1018), - [sym_index_expression] = STATE(1018), - [sym_slice_expression] = STATE(1018), - [sym_if_expression] = STATE(993), - [sym_compile_time_if_expression] = STATE(993), - [sym_is_expression] = STATE(1018), - [sym_in_expression] = STATE(1018), - [sym_enum_fetch] = STATE(1018), - [sym_match_expression] = STATE(993), - [sym_select_expression] = STATE(993), - [sym_lock_expression] = STATE(993), - [sym_unsafe_expression] = STATE(993), - [sym_sql_expression] = STATE(993), - [sym_c_string_literal] = STATE(1006), - [sym_raw_string_literal] = STATE(1006), - [sym_interpreted_string_literal] = STATE(1006), - [sym_mutability_modifiers] = STATE(691), - [sym_plain_type] = STATE(4296), - [sym__plain_type_without_special] = STATE(2302), - [sym_anon_struct_type] = STATE(2303), - [sym_multi_return_type] = STATE(2302), - [sym_result_type] = STATE(2302), - [sym_option_type] = STATE(2302), - [sym_qualified_type] = STATE(3541), - [sym_fixed_array_type] = STATE(2303), - [sym_array_type] = STATE(2303), - [sym_pointer_type] = STATE(2303), - [sym_wrong_pointer_type] = STATE(2303), - [sym_map_type] = STATE(2303), - [sym_channel_type] = STATE(2303), - [sym_shared_type] = STATE(2303), - [sym_thread_type] = STATE(2303), - [sym_atomic_type] = STATE(2303), - [sym_generic_type] = STATE(2303), - [sym_function_type] = STATE(2303), - [sym_identifier] = ACTIONS(493), + [sym__expression] = STATE(1758), + [sym__expression_without_blocks] = STATE(1915), + [sym__expression_with_blocks] = STATE(1915), + [sym_inc_expression] = STATE(2035), + [sym_dec_expression] = STATE(2035), + [sym_or_block_expression] = STATE(2035), + [sym_option_propagation_expression] = STATE(2035), + [sym_result_propagation_expression] = STATE(2035), + [sym_anon_struct_value_expression] = STATE(1939), + [sym_go_expression] = STATE(2035), + [sym_spawn_expression] = STATE(2035), + [sym_parenthesized_expression] = STATE(2035), + [sym_call_expression] = STATE(2035), + [sym_type_initializer] = STATE(1939), + [sym_function_literal] = STATE(2035), + [sym_reference_expression] = STATE(1944), + [sym_type_reference_expression] = STATE(3460), + [sym_unary_expression] = STATE(2035), + [sym_receive_expression] = STATE(2035), + [sym_binary_expression] = STATE(2035), + [sym_as_type_cast_expression] = STATE(2035), + [sym__max_group] = STATE(2035), + [sym_literal] = STATE(2030), + [sym_map_init_expression] = STATE(1939), + [sym_array_creation] = STATE(2035), + [sym_fixed_array_creation] = STATE(2035), + [sym_selector_expression] = STATE(2035), + [sym_index_expression] = STATE(2035), + [sym_slice_expression] = STATE(2035), + [sym_if_expression] = STATE(1939), + [sym_compile_time_if_expression] = STATE(1939), + [sym_is_expression] = STATE(2035), + [sym_in_expression] = STATE(2035), + [sym_enum_fetch] = STATE(2035), + [sym_match_expression] = STATE(1939), + [sym_select_expression] = STATE(1939), + [sym_lock_expression] = STATE(1939), + [sym_unsafe_expression] = STATE(1939), + [sym_sql_expression] = STATE(1939), + [sym_c_string_literal] = STATE(2029), + [sym_raw_string_literal] = STATE(2029), + [sym_interpreted_string_literal] = STATE(2029), + [sym_mutability_modifiers] = STATE(555), + [sym_plain_type] = STATE(4014), + [sym__plain_type_without_special] = STATE(2360), + [sym_anon_struct_type] = STATE(2362), + [sym_multi_return_type] = STATE(2360), + [sym_result_type] = STATE(2360), + [sym_option_type] = STATE(2360), + [sym_qualified_type] = STATE(3460), + [sym_fixed_array_type] = STATE(2362), + [sym_array_type] = STATE(2362), + [sym_pointer_type] = STATE(2362), + [sym_wrong_pointer_type] = STATE(2362), + [sym_map_type] = STATE(2362), + [sym_channel_type] = STATE(2362), + [sym_shared_type] = STATE(2362), + [sym_thread_type] = STATE(2362), + [sym_atomic_type] = STATE(2362), + [sym_generic_type] = STATE(2362), + [sym_function_type] = STATE(2362), + [sym_identifier] = ACTIONS(3272), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(501), - [anon_sym_LBRACE] = ACTIONS(2319), - [anon_sym_LPAREN] = ACTIONS(2321), - [anon_sym_fn] = ACTIONS(507), - [anon_sym_PLUS] = ACTIONS(3360), - [anon_sym_DASH] = ACTIONS(3360), - [anon_sym_STAR] = ACTIONS(3362), - [anon_sym_struct] = ACTIONS(513), + [anon_sym_DOT] = ACTIONS(769), + [anon_sym_LBRACE] = ACTIONS(3274), + [anon_sym_LPAREN] = ACTIONS(775), + [anon_sym_fn] = ACTIONS(777), + [anon_sym_PLUS] = ACTIONS(779), + [anon_sym_DASH] = ACTIONS(779), + [anon_sym_STAR] = ACTIONS(781), + [anon_sym_struct] = ACTIONS(3276), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(3364), - [anon_sym_go] = ACTIONS(3366), - [anon_sym_spawn] = ACTIONS(3368), - [anon_sym_json_DOTdecode] = ACTIONS(2329), - [anon_sym_LBRACK2] = ACTIONS(2331), - [anon_sym_TILDE] = ACTIONS(3360), - [anon_sym_CARET] = ACTIONS(3360), - [anon_sym_AMP] = ACTIONS(3370), - [anon_sym_LT_DASH] = ACTIONS(3372), - [sym_none] = ACTIONS(531), - [sym_true] = ACTIONS(531), - [sym_false] = ACTIONS(531), - [sym_nil] = ACTIONS(531), - [anon_sym_if] = ACTIONS(533), - [anon_sym_DOLLARif] = ACTIONS(535), - [anon_sym_match] = ACTIONS(537), - [anon_sym_select] = ACTIONS(3374), - [anon_sym_lock] = ACTIONS(3376), - [anon_sym_rlock] = ACTIONS(3376), - [anon_sym_unsafe] = ACTIONS(543), - [anon_sym_sql] = ACTIONS(545), - [sym_int_literal] = ACTIONS(531), - [sym_float_literal] = ACTIONS(2337), - [sym_rune_literal] = ACTIONS(2337), - [sym_pseudo_compile_time_identifier] = ACTIONS(547), + [anon_sym_BANG] = ACTIONS(785), + [anon_sym_go] = ACTIONS(787), + [anon_sym_spawn] = ACTIONS(789), + [anon_sym_json_DOTdecode] = ACTIONS(791), + [anon_sym_LBRACK2] = ACTIONS(793), + [anon_sym_TILDE] = ACTIONS(779), + [anon_sym_CARET] = ACTIONS(779), + [anon_sym_AMP] = ACTIONS(795), + [anon_sym_LT_DASH] = ACTIONS(797), + [sym_none] = ACTIONS(799), + [sym_true] = ACTIONS(799), + [sym_false] = ACTIONS(799), + [sym_nil] = ACTIONS(799), + [anon_sym_if] = ACTIONS(3278), + [anon_sym_DOLLARif] = ACTIONS(3280), + [anon_sym_match] = ACTIONS(3282), + [anon_sym_select] = ACTIONS(3284), + [anon_sym_lock] = ACTIONS(3286), + [anon_sym_rlock] = ACTIONS(3286), + [anon_sym_unsafe] = ACTIONS(3288), + [anon_sym_sql] = ACTIONS(3290), + [sym_int_literal] = ACTIONS(799), + [sym_float_literal] = ACTIONS(817), + [sym_rune_literal] = ACTIONS(817), + [sym_pseudo_compile_time_identifier] = ACTIONS(819), [anon_sym_shared] = ACTIONS(83), [anon_sym_map_LBRACK] = ACTIONS(85), [anon_sym_chan] = ACTIONS(87), [anon_sym_thread] = ACTIONS(89), [anon_sym_atomic] = ACTIONS(91), - [sym___double_quote] = ACTIONS(2339), - [sym___single_quote] = ACTIONS(2341), - [sym___c_double_quote] = ACTIONS(2343), - [sym___c_single_quote] = ACTIONS(2345), - [sym___r_double_quote] = ACTIONS(2347), - [sym___r_single_quote] = ACTIONS(2349), + [sym___double_quote] = ACTIONS(821), + [sym___single_quote] = ACTIONS(823), + [sym___c_double_quote] = ACTIONS(825), + [sym___c_single_quote] = ACTIONS(827), + [sym___r_double_quote] = ACTIONS(829), + [sym___r_single_quote] = ACTIONS(831), }, [673] = { [sym_line_comment] = STATE(673), [sym_block_comment] = STATE(673), - [sym__expression] = STATE(972), - [sym__expression_without_blocks] = STATE(1017), - [sym__expression_with_blocks] = STATE(1017), - [sym_inc_expression] = STATE(1018), - [sym_dec_expression] = STATE(1018), - [sym_or_block_expression] = STATE(1018), - [sym_option_propagation_expression] = STATE(1018), - [sym_result_propagation_expression] = STATE(1018), - [sym_anon_struct_value_expression] = STATE(993), - [sym_go_expression] = STATE(1018), - [sym_spawn_expression] = STATE(1018), - [sym_parenthesized_expression] = STATE(1018), - [sym_call_expression] = STATE(1018), - [sym_type_initializer] = STATE(993), - [sym_function_literal] = STATE(1018), - [sym_reference_expression] = STATE(1046), - [sym_type_reference_expression] = STATE(3541), - [sym_unary_expression] = STATE(1018), - [sym_receive_expression] = STATE(1018), - [sym_binary_expression] = STATE(1018), - [sym_as_type_cast_expression] = STATE(1018), - [sym__max_group] = STATE(1018), - [sym_literal] = STATE(1014), - [sym_map_init_expression] = STATE(993), - [sym_array_creation] = STATE(1018), - [sym_fixed_array_creation] = STATE(1018), - [sym_selector_expression] = STATE(1018), - [sym_index_expression] = STATE(1018), - [sym_slice_expression] = STATE(1018), - [sym_if_expression] = STATE(993), - [sym_compile_time_if_expression] = STATE(993), - [sym_is_expression] = STATE(1018), - [sym_in_expression] = STATE(1018), - [sym_enum_fetch] = STATE(1018), - [sym_match_expression] = STATE(993), - [sym_select_expression] = STATE(993), - [sym_lock_expression] = STATE(993), - [sym_unsafe_expression] = STATE(993), - [sym_sql_expression] = STATE(993), - [sym_c_string_literal] = STATE(1006), - [sym_raw_string_literal] = STATE(1006), - [sym_interpreted_string_literal] = STATE(1006), - [sym_mutability_modifiers] = STATE(691), - [sym_plain_type] = STATE(4296), - [sym__plain_type_without_special] = STATE(2302), - [sym_anon_struct_type] = STATE(2303), - [sym_multi_return_type] = STATE(2302), - [sym_result_type] = STATE(2302), - [sym_option_type] = STATE(2302), - [sym_qualified_type] = STATE(3541), - [sym_fixed_array_type] = STATE(2303), - [sym_array_type] = STATE(2303), - [sym_pointer_type] = STATE(2303), - [sym_wrong_pointer_type] = STATE(2303), - [sym_map_type] = STATE(2303), - [sym_channel_type] = STATE(2303), - [sym_shared_type] = STATE(2303), - [sym_thread_type] = STATE(2303), - [sym_atomic_type] = STATE(2303), - [sym_generic_type] = STATE(2303), - [sym_function_type] = STATE(2303), - [sym_identifier] = ACTIONS(493), + [sym__expression] = STATE(2318), + [sym__expression_without_blocks] = STATE(2468), + [sym__expression_with_blocks] = STATE(2468), + [sym_inc_expression] = STATE(2469), + [sym_dec_expression] = STATE(2469), + [sym_or_block_expression] = STATE(2469), + [sym_option_propagation_expression] = STATE(2469), + [sym_result_propagation_expression] = STATE(2469), + [sym_anon_struct_value_expression] = STATE(2470), + [sym_go_expression] = STATE(2469), + [sym_spawn_expression] = STATE(2469), + [sym_parenthesized_expression] = STATE(2469), + [sym_call_expression] = STATE(2469), + [sym_type_initializer] = STATE(2470), + [sym_function_literal] = STATE(2469), + [sym_reference_expression] = STATE(2487), + [sym_type_reference_expression] = STATE(3460), + [sym_unary_expression] = STATE(2469), + [sym_receive_expression] = STATE(2469), + [sym_binary_expression] = STATE(2469), + [sym_as_type_cast_expression] = STATE(2469), + [sym__max_group] = STATE(2469), + [sym_literal] = STATE(2465), + [sym_map_init_expression] = STATE(2470), + [sym_array_creation] = STATE(2469), + [sym_fixed_array_creation] = STATE(2469), + [sym_selector_expression] = STATE(2469), + [sym_index_expression] = STATE(2469), + [sym_slice_expression] = STATE(2469), + [sym_if_expression] = STATE(2470), + [sym_compile_time_if_expression] = STATE(2470), + [sym_is_expression] = STATE(2469), + [sym_in_expression] = STATE(2469), + [sym_enum_fetch] = STATE(2469), + [sym_match_expression] = STATE(2470), + [sym_select_expression] = STATE(2470), + [sym_lock_expression] = STATE(2470), + [sym_unsafe_expression] = STATE(2470), + [sym_sql_expression] = STATE(2470), + [sym_c_string_literal] = STATE(2464), + [sym_raw_string_literal] = STATE(2464), + [sym_interpreted_string_literal] = STATE(2464), + [sym_mutability_modifiers] = STATE(561), + [sym_plain_type] = STATE(4038), + [sym__plain_type_without_special] = STATE(2360), + [sym_anon_struct_type] = STATE(2362), + [sym_multi_return_type] = STATE(2360), + [sym_result_type] = STATE(2360), + [sym_option_type] = STATE(2360), + [sym_qualified_type] = STATE(3460), + [sym_fixed_array_type] = STATE(2362), + [sym_array_type] = STATE(2362), + [sym_pointer_type] = STATE(2362), + [sym_wrong_pointer_type] = STATE(2362), + [sym_map_type] = STATE(2362), + [sym_channel_type] = STATE(2362), + [sym_shared_type] = STATE(2362), + [sym_thread_type] = STATE(2362), + [sym_atomic_type] = STATE(2362), + [sym_generic_type] = STATE(2362), + [sym_function_type] = STATE(2362), + [sym_identifier] = ACTIONS(1691), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(501), - [anon_sym_LBRACE] = ACTIONS(2319), - [anon_sym_LPAREN] = ACTIONS(2321), - [anon_sym_fn] = ACTIONS(507), - [anon_sym_PLUS] = ACTIONS(3360), - [anon_sym_DASH] = ACTIONS(3360), - [anon_sym_STAR] = ACTIONS(3362), - [anon_sym_struct] = ACTIONS(513), + [anon_sym_DOT] = ACTIONS(1693), + [anon_sym_LBRACE] = ACTIONS(2151), + [anon_sym_LPAREN] = ACTIONS(2153), + [anon_sym_fn] = ACTIONS(1699), + [anon_sym_PLUS] = ACTIONS(2155), + [anon_sym_DASH] = ACTIONS(2155), + [anon_sym_STAR] = ACTIONS(2157), + [anon_sym_struct] = ACTIONS(1705), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(3364), - [anon_sym_go] = ACTIONS(3366), - [anon_sym_spawn] = ACTIONS(3368), - [anon_sym_json_DOTdecode] = ACTIONS(2329), - [anon_sym_LBRACK2] = ACTIONS(2331), - [anon_sym_TILDE] = ACTIONS(3360), - [anon_sym_CARET] = ACTIONS(3360), - [anon_sym_AMP] = ACTIONS(3370), - [anon_sym_LT_DASH] = ACTIONS(3372), - [sym_none] = ACTIONS(531), - [sym_true] = ACTIONS(531), - [sym_false] = ACTIONS(531), - [sym_nil] = ACTIONS(531), - [anon_sym_if] = ACTIONS(533), - [anon_sym_DOLLARif] = ACTIONS(535), - [anon_sym_match] = ACTIONS(537), - [anon_sym_select] = ACTIONS(3374), - [anon_sym_lock] = ACTIONS(3376), - [anon_sym_rlock] = ACTIONS(3376), - [anon_sym_unsafe] = ACTIONS(543), - [anon_sym_sql] = ACTIONS(545), - [sym_int_literal] = ACTIONS(531), - [sym_float_literal] = ACTIONS(2337), - [sym_rune_literal] = ACTIONS(2337), - [sym_pseudo_compile_time_identifier] = ACTIONS(547), + [anon_sym_BANG] = ACTIONS(2159), + [anon_sym_go] = ACTIONS(1709), + [anon_sym_spawn] = ACTIONS(1711), + [anon_sym_json_DOTdecode] = ACTIONS(2161), + [anon_sym_LBRACK2] = ACTIONS(2163), + [anon_sym_TILDE] = ACTIONS(2155), + [anon_sym_CARET] = ACTIONS(2155), + [anon_sym_AMP] = ACTIONS(2165), + [anon_sym_LT_DASH] = ACTIONS(2167), + [sym_none] = ACTIONS(1721), + [sym_true] = ACTIONS(1721), + [sym_false] = ACTIONS(1721), + [sym_nil] = ACTIONS(1721), + [anon_sym_if] = ACTIONS(1723), + [anon_sym_DOLLARif] = ACTIONS(1725), + [anon_sym_match] = ACTIONS(1727), + [anon_sym_select] = ACTIONS(1729), + [anon_sym_lock] = ACTIONS(1731), + [anon_sym_rlock] = ACTIONS(1731), + [anon_sym_unsafe] = ACTIONS(1733), + [anon_sym_sql] = ACTIONS(1735), + [sym_int_literal] = ACTIONS(1721), + [sym_float_literal] = ACTIONS(2169), + [sym_rune_literal] = ACTIONS(2169), + [sym_pseudo_compile_time_identifier] = ACTIONS(1737), [anon_sym_shared] = ACTIONS(83), [anon_sym_map_LBRACK] = ACTIONS(85), [anon_sym_chan] = ACTIONS(87), [anon_sym_thread] = ACTIONS(89), [anon_sym_atomic] = ACTIONS(91), - [sym___double_quote] = ACTIONS(2339), - [sym___single_quote] = ACTIONS(2341), - [sym___c_double_quote] = ACTIONS(2343), - [sym___c_single_quote] = ACTIONS(2345), - [sym___r_double_quote] = ACTIONS(2347), - [sym___r_single_quote] = ACTIONS(2349), + [sym___double_quote] = ACTIONS(2171), + [sym___single_quote] = ACTIONS(2173), + [sym___c_double_quote] = ACTIONS(2175), + [sym___c_single_quote] = ACTIONS(2177), + [sym___r_double_quote] = ACTIONS(2179), + [sym___r_single_quote] = ACTIONS(2181), }, [674] = { [sym_line_comment] = STATE(674), [sym_block_comment] = STATE(674), - [sym__expression] = STATE(959), - [sym__expression_without_blocks] = STATE(1017), - [sym__expression_with_blocks] = STATE(1017), - [sym_inc_expression] = STATE(1018), - [sym_dec_expression] = STATE(1018), - [sym_or_block_expression] = STATE(1018), - [sym_option_propagation_expression] = STATE(1018), - [sym_result_propagation_expression] = STATE(1018), - [sym_anon_struct_value_expression] = STATE(993), - [sym_go_expression] = STATE(1018), - [sym_spawn_expression] = STATE(1018), - [sym_parenthesized_expression] = STATE(1018), - [sym_call_expression] = STATE(1018), - [sym_type_initializer] = STATE(993), - [sym_function_literal] = STATE(1018), - [sym_reference_expression] = STATE(1046), - [sym_type_reference_expression] = STATE(3541), - [sym_unary_expression] = STATE(1018), - [sym_receive_expression] = STATE(1018), - [sym_binary_expression] = STATE(1018), - [sym_as_type_cast_expression] = STATE(1018), - [sym__max_group] = STATE(1018), - [sym_literal] = STATE(1014), - [sym_map_init_expression] = STATE(993), - [sym_array_creation] = STATE(1018), - [sym_fixed_array_creation] = STATE(1018), - [sym_selector_expression] = STATE(1018), - [sym_index_expression] = STATE(1018), - [sym_slice_expression] = STATE(1018), - [sym_if_expression] = STATE(993), - [sym_compile_time_if_expression] = STATE(993), - [sym_is_expression] = STATE(1018), - [sym_in_expression] = STATE(1018), - [sym_enum_fetch] = STATE(1018), - [sym_match_expression] = STATE(993), - [sym_select_expression] = STATE(993), - [sym_lock_expression] = STATE(993), - [sym_unsafe_expression] = STATE(993), - [sym_sql_expression] = STATE(993), - [sym_c_string_literal] = STATE(1006), - [sym_raw_string_literal] = STATE(1006), - [sym_interpreted_string_literal] = STATE(1006), - [sym_mutability_modifiers] = STATE(691), - [sym_plain_type] = STATE(4299), - [sym__plain_type_without_special] = STATE(2302), - [sym_anon_struct_type] = STATE(2303), - [sym_multi_return_type] = STATE(2302), - [sym_result_type] = STATE(2302), - [sym_option_type] = STATE(2302), - [sym_qualified_type] = STATE(3541), - [sym_fixed_array_type] = STATE(2303), - [sym_array_type] = STATE(2303), - [sym_pointer_type] = STATE(2303), - [sym_wrong_pointer_type] = STATE(2303), - [sym_map_type] = STATE(2303), - [sym_channel_type] = STATE(2303), - [sym_shared_type] = STATE(2303), - [sym_thread_type] = STATE(2303), - [sym_atomic_type] = STATE(2303), - [sym_generic_type] = STATE(2303), - [sym_function_type] = STATE(2303), - [sym_identifier] = ACTIONS(493), + [sym__expression] = STATE(2286), + [sym__expression_without_blocks] = STATE(2468), + [sym__expression_with_blocks] = STATE(2468), + [sym_inc_expression] = STATE(2469), + [sym_dec_expression] = STATE(2469), + [sym_or_block_expression] = STATE(2469), + [sym_option_propagation_expression] = STATE(2469), + [sym_result_propagation_expression] = STATE(2469), + [sym_anon_struct_value_expression] = STATE(2470), + [sym_go_expression] = STATE(2469), + [sym_spawn_expression] = STATE(2469), + [sym_parenthesized_expression] = STATE(2469), + [sym_call_expression] = STATE(2469), + [sym_type_initializer] = STATE(2470), + [sym_function_literal] = STATE(2469), + [sym_reference_expression] = STATE(2487), + [sym_type_reference_expression] = STATE(3460), + [sym_unary_expression] = STATE(2469), + [sym_receive_expression] = STATE(2469), + [sym_binary_expression] = STATE(2469), + [sym_as_type_cast_expression] = STATE(2469), + [sym__max_group] = STATE(2469), + [sym_literal] = STATE(2465), + [sym_map_init_expression] = STATE(2470), + [sym_array_creation] = STATE(2469), + [sym_fixed_array_creation] = STATE(2469), + [sym_selector_expression] = STATE(2469), + [sym_index_expression] = STATE(2469), + [sym_slice_expression] = STATE(2469), + [sym_if_expression] = STATE(2470), + [sym_compile_time_if_expression] = STATE(2470), + [sym_is_expression] = STATE(2469), + [sym_in_expression] = STATE(2469), + [sym_enum_fetch] = STATE(2469), + [sym_match_expression] = STATE(2470), + [sym_select_expression] = STATE(2470), + [sym_lock_expression] = STATE(2470), + [sym_unsafe_expression] = STATE(2470), + [sym_sql_expression] = STATE(2470), + [sym_c_string_literal] = STATE(2464), + [sym_raw_string_literal] = STATE(2464), + [sym_interpreted_string_literal] = STATE(2464), + [sym_mutability_modifiers] = STATE(561), + [sym_plain_type] = STATE(4038), + [sym__plain_type_without_special] = STATE(2360), + [sym_anon_struct_type] = STATE(2362), + [sym_multi_return_type] = STATE(2360), + [sym_result_type] = STATE(2360), + [sym_option_type] = STATE(2360), + [sym_qualified_type] = STATE(3460), + [sym_fixed_array_type] = STATE(2362), + [sym_array_type] = STATE(2362), + [sym_pointer_type] = STATE(2362), + [sym_wrong_pointer_type] = STATE(2362), + [sym_map_type] = STATE(2362), + [sym_channel_type] = STATE(2362), + [sym_shared_type] = STATE(2362), + [sym_thread_type] = STATE(2362), + [sym_atomic_type] = STATE(2362), + [sym_generic_type] = STATE(2362), + [sym_function_type] = STATE(2362), + [sym_identifier] = ACTIONS(1691), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(501), - [anon_sym_LBRACE] = ACTIONS(2319), - [anon_sym_LPAREN] = ACTIONS(2321), - [anon_sym_fn] = ACTIONS(507), - [anon_sym_PLUS] = ACTIONS(3360), - [anon_sym_DASH] = ACTIONS(3360), - [anon_sym_STAR] = ACTIONS(3362), - [anon_sym_struct] = ACTIONS(513), + [anon_sym_DOT] = ACTIONS(1693), + [anon_sym_LBRACE] = ACTIONS(2151), + [anon_sym_LPAREN] = ACTIONS(2153), + [anon_sym_fn] = ACTIONS(1699), + [anon_sym_PLUS] = ACTIONS(3386), + [anon_sym_DASH] = ACTIONS(3386), + [anon_sym_STAR] = ACTIONS(3388), + [anon_sym_struct] = ACTIONS(1705), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(3364), - [anon_sym_go] = ACTIONS(3366), - [anon_sym_spawn] = ACTIONS(3368), - [anon_sym_json_DOTdecode] = ACTIONS(2329), - [anon_sym_LBRACK2] = ACTIONS(2331), - [anon_sym_TILDE] = ACTIONS(3360), - [anon_sym_CARET] = ACTIONS(3360), - [anon_sym_AMP] = ACTIONS(3370), - [anon_sym_LT_DASH] = ACTIONS(3372), - [sym_none] = ACTIONS(531), - [sym_true] = ACTIONS(531), - [sym_false] = ACTIONS(531), - [sym_nil] = ACTIONS(531), - [anon_sym_if] = ACTIONS(533), - [anon_sym_DOLLARif] = ACTIONS(535), - [anon_sym_match] = ACTIONS(537), - [anon_sym_select] = ACTIONS(3374), - [anon_sym_lock] = ACTIONS(3376), - [anon_sym_rlock] = ACTIONS(3376), - [anon_sym_unsafe] = ACTIONS(543), - [anon_sym_sql] = ACTIONS(545), - [sym_int_literal] = ACTIONS(531), - [sym_float_literal] = ACTIONS(2337), - [sym_rune_literal] = ACTIONS(2337), - [sym_pseudo_compile_time_identifier] = ACTIONS(547), + [anon_sym_BANG] = ACTIONS(3390), + [anon_sym_go] = ACTIONS(3392), + [anon_sym_spawn] = ACTIONS(3394), + [anon_sym_json_DOTdecode] = ACTIONS(2161), + [anon_sym_LBRACK2] = ACTIONS(2163), + [anon_sym_TILDE] = ACTIONS(3386), + [anon_sym_CARET] = ACTIONS(3386), + [anon_sym_AMP] = ACTIONS(3396), + [anon_sym_LT_DASH] = ACTIONS(3398), + [sym_none] = ACTIONS(1721), + [sym_true] = ACTIONS(1721), + [sym_false] = ACTIONS(1721), + [sym_nil] = ACTIONS(1721), + [anon_sym_if] = ACTIONS(1723), + [anon_sym_DOLLARif] = ACTIONS(1725), + [anon_sym_match] = ACTIONS(1727), + [anon_sym_select] = ACTIONS(3400), + [anon_sym_lock] = ACTIONS(3402), + [anon_sym_rlock] = ACTIONS(3402), + [anon_sym_unsafe] = ACTIONS(1733), + [anon_sym_sql] = ACTIONS(1735), + [sym_int_literal] = ACTIONS(1721), + [sym_float_literal] = ACTIONS(2169), + [sym_rune_literal] = ACTIONS(2169), + [sym_pseudo_compile_time_identifier] = ACTIONS(1737), [anon_sym_shared] = ACTIONS(83), [anon_sym_map_LBRACK] = ACTIONS(85), [anon_sym_chan] = ACTIONS(87), [anon_sym_thread] = ACTIONS(89), [anon_sym_atomic] = ACTIONS(91), - [sym___double_quote] = ACTIONS(2339), - [sym___single_quote] = ACTIONS(2341), - [sym___c_double_quote] = ACTIONS(2343), - [sym___c_single_quote] = ACTIONS(2345), - [sym___r_double_quote] = ACTIONS(2347), - [sym___r_single_quote] = ACTIONS(2349), + [sym___double_quote] = ACTIONS(2171), + [sym___single_quote] = ACTIONS(2173), + [sym___c_double_quote] = ACTIONS(2175), + [sym___c_single_quote] = ACTIONS(2177), + [sym___r_double_quote] = ACTIONS(2179), + [sym___r_single_quote] = ACTIONS(2181), }, [675] = { [sym_line_comment] = STATE(675), [sym_block_comment] = STATE(675), - [sym__expression] = STATE(954), - [sym__expression_without_blocks] = STATE(1017), - [sym__expression_with_blocks] = STATE(1017), - [sym_inc_expression] = STATE(1018), - [sym_dec_expression] = STATE(1018), - [sym_or_block_expression] = STATE(1018), - [sym_option_propagation_expression] = STATE(1018), - [sym_result_propagation_expression] = STATE(1018), - [sym_anon_struct_value_expression] = STATE(993), - [sym_go_expression] = STATE(1018), - [sym_spawn_expression] = STATE(1018), - [sym_parenthesized_expression] = STATE(1018), - [sym_call_expression] = STATE(1018), - [sym_type_initializer] = STATE(993), - [sym_function_literal] = STATE(1018), - [sym_reference_expression] = STATE(1046), - [sym_type_reference_expression] = STATE(3541), - [sym_unary_expression] = STATE(1018), - [sym_receive_expression] = STATE(1018), - [sym_binary_expression] = STATE(1018), - [sym_as_type_cast_expression] = STATE(1018), - [sym__max_group] = STATE(1018), - [sym_literal] = STATE(1014), - [sym_map_init_expression] = STATE(993), - [sym_array_creation] = STATE(1018), - [sym_fixed_array_creation] = STATE(1018), - [sym_selector_expression] = STATE(1018), - [sym_index_expression] = STATE(1018), - [sym_slice_expression] = STATE(1018), - [sym_if_expression] = STATE(993), - [sym_compile_time_if_expression] = STATE(993), - [sym_is_expression] = STATE(1018), - [sym_in_expression] = STATE(1018), - [sym_enum_fetch] = STATE(1018), - [sym_match_expression] = STATE(993), - [sym_select_expression] = STATE(993), - [sym_lock_expression] = STATE(993), - [sym_unsafe_expression] = STATE(993), - [sym_sql_expression] = STATE(993), - [sym_c_string_literal] = STATE(1006), - [sym_raw_string_literal] = STATE(1006), - [sym_interpreted_string_literal] = STATE(1006), - [sym_mutability_modifiers] = STATE(691), - [sym_plain_type] = STATE(4296), - [sym__plain_type_without_special] = STATE(2302), - [sym_anon_struct_type] = STATE(2303), - [sym_multi_return_type] = STATE(2302), - [sym_result_type] = STATE(2302), - [sym_option_type] = STATE(2302), - [sym_qualified_type] = STATE(3541), - [sym_fixed_array_type] = STATE(2303), - [sym_array_type] = STATE(2303), - [sym_pointer_type] = STATE(2303), - [sym_wrong_pointer_type] = STATE(2303), - [sym_map_type] = STATE(2303), - [sym_channel_type] = STATE(2303), - [sym_shared_type] = STATE(2303), - [sym_thread_type] = STATE(2303), - [sym_atomic_type] = STATE(2303), - [sym_generic_type] = STATE(2303), - [sym_function_type] = STATE(2303), - [sym_identifier] = ACTIONS(493), + [sym__expression] = STATE(2315), + [sym__expression_without_blocks] = STATE(2468), + [sym__expression_with_blocks] = STATE(2468), + [sym_inc_expression] = STATE(2469), + [sym_dec_expression] = STATE(2469), + [sym_or_block_expression] = STATE(2469), + [sym_option_propagation_expression] = STATE(2469), + [sym_result_propagation_expression] = STATE(2469), + [sym_anon_struct_value_expression] = STATE(2470), + [sym_go_expression] = STATE(2469), + [sym_spawn_expression] = STATE(2469), + [sym_parenthesized_expression] = STATE(2469), + [sym_call_expression] = STATE(2469), + [sym_type_initializer] = STATE(2470), + [sym_function_literal] = STATE(2469), + [sym_reference_expression] = STATE(2487), + [sym_type_reference_expression] = STATE(3460), + [sym_unary_expression] = STATE(2469), + [sym_receive_expression] = STATE(2469), + [sym_binary_expression] = STATE(2469), + [sym_as_type_cast_expression] = STATE(2469), + [sym__max_group] = STATE(2469), + [sym_literal] = STATE(2465), + [sym_map_init_expression] = STATE(2470), + [sym_array_creation] = STATE(2469), + [sym_fixed_array_creation] = STATE(2469), + [sym_selector_expression] = STATE(2469), + [sym_index_expression] = STATE(2469), + [sym_slice_expression] = STATE(2469), + [sym_if_expression] = STATE(2470), + [sym_compile_time_if_expression] = STATE(2470), + [sym_is_expression] = STATE(2469), + [sym_in_expression] = STATE(2469), + [sym_enum_fetch] = STATE(2469), + [sym_match_expression] = STATE(2470), + [sym_select_expression] = STATE(2470), + [sym_lock_expression] = STATE(2470), + [sym_unsafe_expression] = STATE(2470), + [sym_sql_expression] = STATE(2470), + [sym_c_string_literal] = STATE(2464), + [sym_raw_string_literal] = STATE(2464), + [sym_interpreted_string_literal] = STATE(2464), + [sym_mutability_modifiers] = STATE(561), + [sym_plain_type] = STATE(4038), + [sym__plain_type_without_special] = STATE(2360), + [sym_anon_struct_type] = STATE(2362), + [sym_multi_return_type] = STATE(2360), + [sym_result_type] = STATE(2360), + [sym_option_type] = STATE(2360), + [sym_qualified_type] = STATE(3460), + [sym_fixed_array_type] = STATE(2362), + [sym_array_type] = STATE(2362), + [sym_pointer_type] = STATE(2362), + [sym_wrong_pointer_type] = STATE(2362), + [sym_map_type] = STATE(2362), + [sym_channel_type] = STATE(2362), + [sym_shared_type] = STATE(2362), + [sym_thread_type] = STATE(2362), + [sym_atomic_type] = STATE(2362), + [sym_generic_type] = STATE(2362), + [sym_function_type] = STATE(2362), + [sym_identifier] = ACTIONS(1691), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(501), - [anon_sym_LBRACE] = ACTIONS(2319), - [anon_sym_LPAREN] = ACTIONS(2321), - [anon_sym_fn] = ACTIONS(507), - [anon_sym_PLUS] = ACTIONS(3360), - [anon_sym_DASH] = ACTIONS(3360), - [anon_sym_STAR] = ACTIONS(3362), - [anon_sym_struct] = ACTIONS(513), + [anon_sym_DOT] = ACTIONS(1693), + [anon_sym_LBRACE] = ACTIONS(2151), + [anon_sym_LPAREN] = ACTIONS(2153), + [anon_sym_fn] = ACTIONS(1699), + [anon_sym_PLUS] = ACTIONS(2155), + [anon_sym_DASH] = ACTIONS(2155), + [anon_sym_STAR] = ACTIONS(2157), + [anon_sym_struct] = ACTIONS(1705), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(3364), - [anon_sym_go] = ACTIONS(3366), - [anon_sym_spawn] = ACTIONS(3368), - [anon_sym_json_DOTdecode] = ACTIONS(2329), - [anon_sym_LBRACK2] = ACTIONS(2331), - [anon_sym_TILDE] = ACTIONS(3360), - [anon_sym_CARET] = ACTIONS(3360), - [anon_sym_AMP] = ACTIONS(3370), - [anon_sym_LT_DASH] = ACTIONS(3372), - [sym_none] = ACTIONS(531), - [sym_true] = ACTIONS(531), - [sym_false] = ACTIONS(531), - [sym_nil] = ACTIONS(531), - [anon_sym_if] = ACTIONS(533), - [anon_sym_DOLLARif] = ACTIONS(535), - [anon_sym_match] = ACTIONS(537), - [anon_sym_select] = ACTIONS(3374), - [anon_sym_lock] = ACTIONS(3376), - [anon_sym_rlock] = ACTIONS(3376), - [anon_sym_unsafe] = ACTIONS(543), - [anon_sym_sql] = ACTIONS(545), - [sym_int_literal] = ACTIONS(531), - [sym_float_literal] = ACTIONS(2337), - [sym_rune_literal] = ACTIONS(2337), - [sym_pseudo_compile_time_identifier] = ACTIONS(547), + [anon_sym_BANG] = ACTIONS(2159), + [anon_sym_go] = ACTIONS(1709), + [anon_sym_spawn] = ACTIONS(1711), + [anon_sym_json_DOTdecode] = ACTIONS(2161), + [anon_sym_LBRACK2] = ACTIONS(2163), + [anon_sym_TILDE] = ACTIONS(2155), + [anon_sym_CARET] = ACTIONS(2155), + [anon_sym_AMP] = ACTIONS(2165), + [anon_sym_LT_DASH] = ACTIONS(2167), + [sym_none] = ACTIONS(1721), + [sym_true] = ACTIONS(1721), + [sym_false] = ACTIONS(1721), + [sym_nil] = ACTIONS(1721), + [anon_sym_if] = ACTIONS(1723), + [anon_sym_DOLLARif] = ACTIONS(1725), + [anon_sym_match] = ACTIONS(1727), + [anon_sym_select] = ACTIONS(1729), + [anon_sym_lock] = ACTIONS(1731), + [anon_sym_rlock] = ACTIONS(1731), + [anon_sym_unsafe] = ACTIONS(1733), + [anon_sym_sql] = ACTIONS(1735), + [sym_int_literal] = ACTIONS(1721), + [sym_float_literal] = ACTIONS(2169), + [sym_rune_literal] = ACTIONS(2169), + [sym_pseudo_compile_time_identifier] = ACTIONS(1737), [anon_sym_shared] = ACTIONS(83), [anon_sym_map_LBRACK] = ACTIONS(85), [anon_sym_chan] = ACTIONS(87), [anon_sym_thread] = ACTIONS(89), [anon_sym_atomic] = ACTIONS(91), - [sym___double_quote] = ACTIONS(2339), - [sym___single_quote] = ACTIONS(2341), - [sym___c_double_quote] = ACTIONS(2343), - [sym___c_single_quote] = ACTIONS(2345), - [sym___r_double_quote] = ACTIONS(2347), - [sym___r_single_quote] = ACTIONS(2349), + [sym___double_quote] = ACTIONS(2171), + [sym___single_quote] = ACTIONS(2173), + [sym___c_double_quote] = ACTIONS(2175), + [sym___c_single_quote] = ACTIONS(2177), + [sym___r_double_quote] = ACTIONS(2179), + [sym___r_single_quote] = ACTIONS(2181), }, [676] = { [sym_line_comment] = STATE(676), [sym_block_comment] = STATE(676), - [sym__expression] = STATE(2642), - [sym__expression_without_blocks] = STATE(2300), - [sym__expression_with_blocks] = STATE(2300), - [sym_inc_expression] = STATE(2307), - [sym_dec_expression] = STATE(2307), - [sym_or_block_expression] = STATE(2307), - [sym_option_propagation_expression] = STATE(2307), - [sym_result_propagation_expression] = STATE(2307), - [sym_anon_struct_value_expression] = STATE(2380), - [sym_go_expression] = STATE(2307), - [sym_spawn_expression] = STATE(2307), - [sym_parenthesized_expression] = STATE(2307), - [sym_call_expression] = STATE(2307), - [sym_type_initializer] = STATE(2380), - [sym_function_literal] = STATE(2307), - [sym_reference_expression] = STATE(2311), - [sym_type_reference_expression] = STATE(3541), - [sym_unary_expression] = STATE(2307), - [sym_receive_expression] = STATE(2307), - [sym_binary_expression] = STATE(2307), - [sym_as_type_cast_expression] = STATE(2307), - [sym__max_group] = STATE(2307), - [sym_literal] = STATE(2292), - [sym_map_init_expression] = STATE(2380), - [sym_array_creation] = STATE(2307), - [sym_fixed_array_creation] = STATE(2307), - [sym_selector_expression] = STATE(2307), - [sym_index_expression] = STATE(2307), - [sym_slice_expression] = STATE(2307), - [sym_if_expression] = STATE(2380), - [sym_compile_time_if_expression] = STATE(2380), - [sym_is_expression] = STATE(2307), - [sym_in_expression] = STATE(2307), - [sym_enum_fetch] = STATE(2307), - [sym_match_expression] = STATE(2380), - [sym_select_expression] = STATE(2380), - [sym_lock_expression] = STATE(2380), - [sym_unsafe_expression] = STATE(2380), - [sym_sql_expression] = STATE(2380), - [sym_c_string_literal] = STATE(2308), - [sym_raw_string_literal] = STATE(2308), - [sym_interpreted_string_literal] = STATE(2308), - [sym_mutability_modifiers] = STATE(939), - [sym_plain_type] = STATE(4297), - [sym__plain_type_without_special] = STATE(2302), - [sym_anon_struct_type] = STATE(2303), - [sym_multi_return_type] = STATE(2302), - [sym_result_type] = STATE(2302), - [sym_option_type] = STATE(2302), - [sym_qualified_type] = STATE(3541), - [sym_fixed_array_type] = STATE(2303), - [sym_array_type] = STATE(2303), - [sym_pointer_type] = STATE(2303), - [sym_wrong_pointer_type] = STATE(2303), - [sym_map_type] = STATE(2303), - [sym_channel_type] = STATE(2303), - [sym_shared_type] = STATE(2303), - [sym_thread_type] = STATE(2303), - [sym_atomic_type] = STATE(2303), - [sym_generic_type] = STATE(2303), - [sym_function_type] = STATE(2303), - [sym_identifier] = ACTIONS(2189), + [sym__expression] = STATE(2286), + [sym__expression_without_blocks] = STATE(2468), + [sym__expression_with_blocks] = STATE(2468), + [sym_inc_expression] = STATE(2469), + [sym_dec_expression] = STATE(2469), + [sym_or_block_expression] = STATE(2469), + [sym_option_propagation_expression] = STATE(2469), + [sym_result_propagation_expression] = STATE(2469), + [sym_anon_struct_value_expression] = STATE(2470), + [sym_go_expression] = STATE(2469), + [sym_spawn_expression] = STATE(2469), + [sym_parenthesized_expression] = STATE(2469), + [sym_call_expression] = STATE(2469), + [sym_type_initializer] = STATE(2470), + [sym_function_literal] = STATE(2469), + [sym_reference_expression] = STATE(2487), + [sym_type_reference_expression] = STATE(3460), + [sym_unary_expression] = STATE(2469), + [sym_receive_expression] = STATE(2469), + [sym_binary_expression] = STATE(2469), + [sym_as_type_cast_expression] = STATE(2469), + [sym__max_group] = STATE(2469), + [sym_literal] = STATE(2465), + [sym_map_init_expression] = STATE(2470), + [sym_array_creation] = STATE(2469), + [sym_fixed_array_creation] = STATE(2469), + [sym_selector_expression] = STATE(2469), + [sym_index_expression] = STATE(2469), + [sym_slice_expression] = STATE(2469), + [sym_if_expression] = STATE(2470), + [sym_compile_time_if_expression] = STATE(2470), + [sym_is_expression] = STATE(2469), + [sym_in_expression] = STATE(2469), + [sym_enum_fetch] = STATE(2469), + [sym_match_expression] = STATE(2470), + [sym_select_expression] = STATE(2470), + [sym_lock_expression] = STATE(2470), + [sym_unsafe_expression] = STATE(2470), + [sym_sql_expression] = STATE(2470), + [sym_c_string_literal] = STATE(2464), + [sym_raw_string_literal] = STATE(2464), + [sym_interpreted_string_literal] = STATE(2464), + [sym_mutability_modifiers] = STATE(561), + [sym_plain_type] = STATE(4055), + [sym__plain_type_without_special] = STATE(2360), + [sym_anon_struct_type] = STATE(2362), + [sym_multi_return_type] = STATE(2360), + [sym_result_type] = STATE(2360), + [sym_option_type] = STATE(2360), + [sym_qualified_type] = STATE(3460), + [sym_fixed_array_type] = STATE(2362), + [sym_array_type] = STATE(2362), + [sym_pointer_type] = STATE(2362), + [sym_wrong_pointer_type] = STATE(2362), + [sym_map_type] = STATE(2362), + [sym_channel_type] = STATE(2362), + [sym_shared_type] = STATE(2362), + [sym_thread_type] = STATE(2362), + [sym_atomic_type] = STATE(2362), + [sym_generic_type] = STATE(2362), + [sym_function_type] = STATE(2362), + [sym_identifier] = ACTIONS(1691), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1428), - [anon_sym_LBRACE] = ACTIONS(1430), - [anon_sym_LPAREN] = ACTIONS(1432), - [anon_sym_fn] = ACTIONS(1434), - [anon_sym_PLUS] = ACTIONS(2491), - [anon_sym_DASH] = ACTIONS(2491), - [anon_sym_STAR] = ACTIONS(3354), - [anon_sym_struct] = ACTIONS(1440), + [anon_sym_DOT] = ACTIONS(1693), + [anon_sym_LBRACE] = ACTIONS(2151), + [anon_sym_LPAREN] = ACTIONS(2153), + [anon_sym_fn] = ACTIONS(1699), + [anon_sym_PLUS] = ACTIONS(3386), + [anon_sym_DASH] = ACTIONS(3386), + [anon_sym_STAR] = ACTIONS(3388), + [anon_sym_struct] = ACTIONS(1705), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(3356), - [anon_sym_go] = ACTIONS(2497), - [anon_sym_spawn] = ACTIONS(2499), - [anon_sym_json_DOTdecode] = ACTIONS(1448), - [anon_sym_LBRACK2] = ACTIONS(1450), - [anon_sym_TILDE] = ACTIONS(2491), - [anon_sym_CARET] = ACTIONS(2491), - [anon_sym_AMP] = ACTIONS(3358), - [anon_sym_LT_DASH] = ACTIONS(2503), - [sym_none] = ACTIONS(1456), - [sym_true] = ACTIONS(1456), - [sym_false] = ACTIONS(1456), - [sym_nil] = ACTIONS(1456), - [anon_sym_if] = ACTIONS(1827), - [anon_sym_DOLLARif] = ACTIONS(1460), - [anon_sym_match] = ACTIONS(1462), - [anon_sym_select] = ACTIONS(1464), - [anon_sym_lock] = ACTIONS(1466), - [anon_sym_rlock] = ACTIONS(1466), - [anon_sym_unsafe] = ACTIONS(1833), - [anon_sym_sql] = ACTIONS(1470), - [sym_int_literal] = ACTIONS(1456), - [sym_float_literal] = ACTIONS(1472), - [sym_rune_literal] = ACTIONS(1472), - [sym_pseudo_compile_time_identifier] = ACTIONS(1474), + [anon_sym_BANG] = ACTIONS(3390), + [anon_sym_go] = ACTIONS(3392), + [anon_sym_spawn] = ACTIONS(3394), + [anon_sym_json_DOTdecode] = ACTIONS(2161), + [anon_sym_LBRACK2] = ACTIONS(2163), + [anon_sym_TILDE] = ACTIONS(3386), + [anon_sym_CARET] = ACTIONS(3386), + [anon_sym_AMP] = ACTIONS(3396), + [anon_sym_LT_DASH] = ACTIONS(3398), + [sym_none] = ACTIONS(1721), + [sym_true] = ACTIONS(1721), + [sym_false] = ACTIONS(1721), + [sym_nil] = ACTIONS(1721), + [anon_sym_if] = ACTIONS(1723), + [anon_sym_DOLLARif] = ACTIONS(1725), + [anon_sym_match] = ACTIONS(1727), + [anon_sym_select] = ACTIONS(3400), + [anon_sym_lock] = ACTIONS(3402), + [anon_sym_rlock] = ACTIONS(3402), + [anon_sym_unsafe] = ACTIONS(1733), + [anon_sym_sql] = ACTIONS(1735), + [sym_int_literal] = ACTIONS(1721), + [sym_float_literal] = ACTIONS(2169), + [sym_rune_literal] = ACTIONS(2169), + [sym_pseudo_compile_time_identifier] = ACTIONS(1737), [anon_sym_shared] = ACTIONS(83), [anon_sym_map_LBRACK] = ACTIONS(85), [anon_sym_chan] = ACTIONS(87), [anon_sym_thread] = ACTIONS(89), [anon_sym_atomic] = ACTIONS(91), - [sym___double_quote] = ACTIONS(1478), - [sym___single_quote] = ACTIONS(1480), - [sym___c_double_quote] = ACTIONS(1482), - [sym___c_single_quote] = ACTIONS(1484), - [sym___r_double_quote] = ACTIONS(1486), - [sym___r_single_quote] = ACTIONS(1488), + [sym___double_quote] = ACTIONS(2171), + [sym___single_quote] = ACTIONS(2173), + [sym___c_double_quote] = ACTIONS(2175), + [sym___c_single_quote] = ACTIONS(2177), + [sym___r_double_quote] = ACTIONS(2179), + [sym___r_single_quote] = ACTIONS(2181), }, [677] = { [sym_line_comment] = STATE(677), [sym_block_comment] = STATE(677), - [sym__expression] = STATE(2279), - [sym__expression_without_blocks] = STATE(2489), - [sym__expression_with_blocks] = STATE(2489), - [sym_inc_expression] = STATE(2479), - [sym_dec_expression] = STATE(2479), - [sym_or_block_expression] = STATE(2479), - [sym_option_propagation_expression] = STATE(2479), - [sym_result_propagation_expression] = STATE(2479), - [sym_anon_struct_value_expression] = STATE(2491), - [sym_go_expression] = STATE(2479), - [sym_spawn_expression] = STATE(2479), - [sym_parenthesized_expression] = STATE(2479), - [sym_call_expression] = STATE(2479), - [sym_type_initializer] = STATE(2491), - [sym_function_literal] = STATE(2479), - [sym_reference_expression] = STATE(2542), - [sym_type_reference_expression] = STATE(3541), - [sym_unary_expression] = STATE(2479), - [sym_receive_expression] = STATE(2479), - [sym_binary_expression] = STATE(2479), - [sym_as_type_cast_expression] = STATE(2479), - [sym__max_group] = STATE(2479), - [sym_literal] = STATE(2454), - [sym_map_init_expression] = STATE(2491), - [sym_array_creation] = STATE(2479), - [sym_fixed_array_creation] = STATE(2479), - [sym_selector_expression] = STATE(2479), - [sym_index_expression] = STATE(2479), - [sym_slice_expression] = STATE(2479), - [sym_if_expression] = STATE(2491), - [sym_compile_time_if_expression] = STATE(2491), - [sym_is_expression] = STATE(2479), - [sym_in_expression] = STATE(2479), - [sym_enum_fetch] = STATE(2479), - [sym_match_expression] = STATE(2491), - [sym_select_expression] = STATE(2491), - [sym_lock_expression] = STATE(2491), - [sym_unsafe_expression] = STATE(2491), - [sym_sql_expression] = STATE(2491), - [sym_c_string_literal] = STATE(2469), - [sym_raw_string_literal] = STATE(2469), - [sym_interpreted_string_literal] = STATE(2469), - [sym_mutability_modifiers] = STATE(640), - [sym_plain_type] = STATE(4255), - [sym__plain_type_without_special] = STATE(2302), - [sym_anon_struct_type] = STATE(2303), - [sym_multi_return_type] = STATE(2302), - [sym_result_type] = STATE(2302), - [sym_option_type] = STATE(2302), - [sym_qualified_type] = STATE(3541), - [sym_fixed_array_type] = STATE(2303), - [sym_array_type] = STATE(2303), - [sym_pointer_type] = STATE(2303), - [sym_wrong_pointer_type] = STATE(2303), - [sym_map_type] = STATE(2303), - [sym_channel_type] = STATE(2303), - [sym_shared_type] = STATE(2303), - [sym_thread_type] = STATE(2303), - [sym_atomic_type] = STATE(2303), - [sym_generic_type] = STATE(2303), - [sym_function_type] = STATE(2303), - [sym_identifier] = ACTIONS(1695), + [sym__expression] = STATE(2272), + [sym__expression_without_blocks] = STATE(2162), + [sym__expression_with_blocks] = STATE(2162), + [sym_inc_expression] = STATE(2161), + [sym_dec_expression] = STATE(2161), + [sym_or_block_expression] = STATE(2161), + [sym_option_propagation_expression] = STATE(2161), + [sym_result_propagation_expression] = STATE(2161), + [sym_anon_struct_value_expression] = STATE(2160), + [sym_go_expression] = STATE(2161), + [sym_spawn_expression] = STATE(2161), + [sym_parenthesized_expression] = STATE(2161), + [sym_call_expression] = STATE(2161), + [sym_type_initializer] = STATE(2160), + [sym_function_literal] = STATE(2161), + [sym_reference_expression] = STATE(2159), + [sym_type_reference_expression] = STATE(3460), + [sym_unary_expression] = STATE(2161), + [sym_receive_expression] = STATE(2161), + [sym_binary_expression] = STATE(2161), + [sym_as_type_cast_expression] = STATE(2161), + [sym__max_group] = STATE(2161), + [sym_literal] = STATE(2164), + [sym_map_init_expression] = STATE(2160), + [sym_array_creation] = STATE(2161), + [sym_fixed_array_creation] = STATE(2161), + [sym_selector_expression] = STATE(2161), + [sym_index_expression] = STATE(2161), + [sym_slice_expression] = STATE(2161), + [sym_if_expression] = STATE(2160), + [sym_compile_time_if_expression] = STATE(2160), + [sym_is_expression] = STATE(2161), + [sym_in_expression] = STATE(2161), + [sym_enum_fetch] = STATE(2161), + [sym_match_expression] = STATE(2160), + [sym_select_expression] = STATE(2160), + [sym_lock_expression] = STATE(2160), + [sym_unsafe_expression] = STATE(2160), + [sym_sql_expression] = STATE(2160), + [sym_c_string_literal] = STATE(2166), + [sym_raw_string_literal] = STATE(2166), + [sym_interpreted_string_literal] = STATE(2166), + [sym_mutability_modifiers] = STATE(575), + [sym_plain_type] = STATE(4173), + [sym__plain_type_without_special] = STATE(2360), + [sym_anon_struct_type] = STATE(2362), + [sym_multi_return_type] = STATE(2360), + [sym_result_type] = STATE(2360), + [sym_option_type] = STATE(2360), + [sym_qualified_type] = STATE(3460), + [sym_fixed_array_type] = STATE(2362), + [sym_array_type] = STATE(2362), + [sym_pointer_type] = STATE(2362), + [sym_wrong_pointer_type] = STATE(2362), + [sym_map_type] = STATE(2362), + [sym_channel_type] = STATE(2362), + [sym_shared_type] = STATE(2362), + [sym_thread_type] = STATE(2362), + [sym_atomic_type] = STATE(2362), + [sym_generic_type] = STATE(2362), + [sym_function_type] = STATE(2362), + [sym_identifier] = ACTIONS(3292), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1697), - [anon_sym_LBRACE] = ACTIONS(2697), - [anon_sym_LPAREN] = ACTIONS(2699), - [anon_sym_fn] = ACTIONS(1703), - [anon_sym_PLUS] = ACTIONS(3380), - [anon_sym_DASH] = ACTIONS(3380), - [anon_sym_STAR] = ACTIONS(3382), - [anon_sym_struct] = ACTIONS(1709), + [anon_sym_DOT] = ACTIONS(3294), + [anon_sym_LBRACE] = ACTIONS(3296), + [anon_sym_LPAREN] = ACTIONS(3298), + [anon_sym_fn] = ACTIONS(3300), + [anon_sym_PLUS] = ACTIONS(3302), + [anon_sym_DASH] = ACTIONS(3302), + [anon_sym_STAR] = ACTIONS(3304), + [anon_sym_struct] = ACTIONS(3306), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(3384), - [anon_sym_go] = ACTIONS(3386), - [anon_sym_spawn] = ACTIONS(3388), - [anon_sym_json_DOTdecode] = ACTIONS(2707), - [anon_sym_LBRACK2] = ACTIONS(2709), - [anon_sym_TILDE] = ACTIONS(3380), - [anon_sym_CARET] = ACTIONS(3380), - [anon_sym_AMP] = ACTIONS(3390), - [anon_sym_LT_DASH] = ACTIONS(3392), - [sym_none] = ACTIONS(1725), - [sym_true] = ACTIONS(1725), - [sym_false] = ACTIONS(1725), - [sym_nil] = ACTIONS(1725), - [anon_sym_if] = ACTIONS(1727), - [anon_sym_DOLLARif] = ACTIONS(1729), - [anon_sym_match] = ACTIONS(1731), - [anon_sym_select] = ACTIONS(3394), - [anon_sym_lock] = ACTIONS(3396), - [anon_sym_rlock] = ACTIONS(3396), - [anon_sym_unsafe] = ACTIONS(1737), - [anon_sym_sql] = ACTIONS(1739), - [sym_int_literal] = ACTIONS(1725), - [sym_float_literal] = ACTIONS(2715), - [sym_rune_literal] = ACTIONS(2715), - [sym_pseudo_compile_time_identifier] = ACTIONS(1741), + [anon_sym_BANG] = ACTIONS(3308), + [anon_sym_go] = ACTIONS(3310), + [anon_sym_spawn] = ACTIONS(3312), + [anon_sym_json_DOTdecode] = ACTIONS(3314), + [anon_sym_LBRACK2] = ACTIONS(3316), + [anon_sym_TILDE] = ACTIONS(3302), + [anon_sym_CARET] = ACTIONS(3302), + [anon_sym_AMP] = ACTIONS(3318), + [anon_sym_LT_DASH] = ACTIONS(3320), + [sym_none] = ACTIONS(3322), + [sym_true] = ACTIONS(3322), + [sym_false] = ACTIONS(3322), + [sym_nil] = ACTIONS(3322), + [anon_sym_if] = ACTIONS(3324), + [anon_sym_DOLLARif] = ACTIONS(3326), + [anon_sym_match] = ACTIONS(3328), + [anon_sym_select] = ACTIONS(3330), + [anon_sym_lock] = ACTIONS(3332), + [anon_sym_rlock] = ACTIONS(3332), + [anon_sym_unsafe] = ACTIONS(3334), + [anon_sym_sql] = ACTIONS(3336), + [sym_int_literal] = ACTIONS(3322), + [sym_float_literal] = ACTIONS(3338), + [sym_rune_literal] = ACTIONS(3338), + [sym_pseudo_compile_time_identifier] = ACTIONS(3340), [anon_sym_shared] = ACTIONS(83), [anon_sym_map_LBRACK] = ACTIONS(85), [anon_sym_chan] = ACTIONS(87), [anon_sym_thread] = ACTIONS(89), [anon_sym_atomic] = ACTIONS(91), - [sym___double_quote] = ACTIONS(2717), - [sym___single_quote] = ACTIONS(2719), - [sym___c_double_quote] = ACTIONS(2721), - [sym___c_single_quote] = ACTIONS(2723), - [sym___r_double_quote] = ACTIONS(2725), - [sym___r_single_quote] = ACTIONS(2727), + [sym___double_quote] = ACTIONS(3342), + [sym___single_quote] = ACTIONS(3344), + [sym___c_double_quote] = ACTIONS(3346), + [sym___c_single_quote] = ACTIONS(3348), + [sym___r_double_quote] = ACTIONS(3350), + [sym___r_single_quote] = ACTIONS(3352), }, [678] = { [sym_line_comment] = STATE(678), [sym_block_comment] = STATE(678), - [sym__expression] = STATE(2646), - [sym__expression_without_blocks] = STATE(2300), - [sym__expression_with_blocks] = STATE(2300), - [sym_inc_expression] = STATE(2307), - [sym_dec_expression] = STATE(2307), - [sym_or_block_expression] = STATE(2307), - [sym_option_propagation_expression] = STATE(2307), - [sym_result_propagation_expression] = STATE(2307), - [sym_anon_struct_value_expression] = STATE(2380), - [sym_go_expression] = STATE(2307), - [sym_spawn_expression] = STATE(2307), - [sym_parenthesized_expression] = STATE(2307), - [sym_call_expression] = STATE(2307), - [sym_type_initializer] = STATE(2380), - [sym_function_literal] = STATE(2307), - [sym_reference_expression] = STATE(2311), - [sym_type_reference_expression] = STATE(3541), - [sym_unary_expression] = STATE(2307), - [sym_receive_expression] = STATE(2307), - [sym_binary_expression] = STATE(2307), - [sym_as_type_cast_expression] = STATE(2307), - [sym__max_group] = STATE(2307), - [sym_literal] = STATE(2292), - [sym_map_init_expression] = STATE(2380), - [sym_array_creation] = STATE(2307), - [sym_fixed_array_creation] = STATE(2307), - [sym_selector_expression] = STATE(2307), - [sym_index_expression] = STATE(2307), - [sym_slice_expression] = STATE(2307), - [sym_if_expression] = STATE(2380), - [sym_compile_time_if_expression] = STATE(2380), - [sym_is_expression] = STATE(2307), - [sym_in_expression] = STATE(2307), - [sym_enum_fetch] = STATE(2307), - [sym_match_expression] = STATE(2380), - [sym_select_expression] = STATE(2380), - [sym_lock_expression] = STATE(2380), - [sym_unsafe_expression] = STATE(2380), - [sym_sql_expression] = STATE(2380), - [sym_c_string_literal] = STATE(2308), - [sym_raw_string_literal] = STATE(2308), - [sym_interpreted_string_literal] = STATE(2308), - [sym_mutability_modifiers] = STATE(939), - [sym_plain_type] = STATE(4297), - [sym__plain_type_without_special] = STATE(2302), - [sym_anon_struct_type] = STATE(2303), - [sym_multi_return_type] = STATE(2302), - [sym_result_type] = STATE(2302), - [sym_option_type] = STATE(2302), - [sym_qualified_type] = STATE(3541), - [sym_fixed_array_type] = STATE(2303), - [sym_array_type] = STATE(2303), - [sym_pointer_type] = STATE(2303), - [sym_wrong_pointer_type] = STATE(2303), - [sym_map_type] = STATE(2303), - [sym_channel_type] = STATE(2303), - [sym_shared_type] = STATE(2303), - [sym_thread_type] = STATE(2303), - [sym_atomic_type] = STATE(2303), - [sym_generic_type] = STATE(2303), - [sym_function_type] = STATE(2303), - [sym_identifier] = ACTIONS(2189), + [sym__expression] = STATE(2286), + [sym__expression_without_blocks] = STATE(2468), + [sym__expression_with_blocks] = STATE(2468), + [sym_inc_expression] = STATE(2469), + [sym_dec_expression] = STATE(2469), + [sym_or_block_expression] = STATE(2469), + [sym_option_propagation_expression] = STATE(2469), + [sym_result_propagation_expression] = STATE(2469), + [sym_anon_struct_value_expression] = STATE(2470), + [sym_go_expression] = STATE(2469), + [sym_spawn_expression] = STATE(2469), + [sym_parenthesized_expression] = STATE(2469), + [sym_call_expression] = STATE(2469), + [sym_type_initializer] = STATE(2470), + [sym_function_literal] = STATE(2469), + [sym_reference_expression] = STATE(2487), + [sym_type_reference_expression] = STATE(3460), + [sym_unary_expression] = STATE(2469), + [sym_receive_expression] = STATE(2469), + [sym_binary_expression] = STATE(2469), + [sym_as_type_cast_expression] = STATE(2469), + [sym__max_group] = STATE(2469), + [sym_literal] = STATE(2465), + [sym_map_init_expression] = STATE(2470), + [sym_array_creation] = STATE(2469), + [sym_fixed_array_creation] = STATE(2469), + [sym_selector_expression] = STATE(2469), + [sym_index_expression] = STATE(2469), + [sym_slice_expression] = STATE(2469), + [sym_if_expression] = STATE(2470), + [sym_compile_time_if_expression] = STATE(2470), + [sym_is_expression] = STATE(2469), + [sym_in_expression] = STATE(2469), + [sym_enum_fetch] = STATE(2469), + [sym_match_expression] = STATE(2470), + [sym_select_expression] = STATE(2470), + [sym_lock_expression] = STATE(2470), + [sym_unsafe_expression] = STATE(2470), + [sym_sql_expression] = STATE(2470), + [sym_c_string_literal] = STATE(2464), + [sym_raw_string_literal] = STATE(2464), + [sym_interpreted_string_literal] = STATE(2464), + [sym_mutability_modifiers] = STATE(561), + [sym_plain_type] = STATE(4057), + [sym__plain_type_without_special] = STATE(2360), + [sym_anon_struct_type] = STATE(2362), + [sym_multi_return_type] = STATE(2360), + [sym_result_type] = STATE(2360), + [sym_option_type] = STATE(2360), + [sym_qualified_type] = STATE(3460), + [sym_fixed_array_type] = STATE(2362), + [sym_array_type] = STATE(2362), + [sym_pointer_type] = STATE(2362), + [sym_wrong_pointer_type] = STATE(2362), + [sym_map_type] = STATE(2362), + [sym_channel_type] = STATE(2362), + [sym_shared_type] = STATE(2362), + [sym_thread_type] = STATE(2362), + [sym_atomic_type] = STATE(2362), + [sym_generic_type] = STATE(2362), + [sym_function_type] = STATE(2362), + [sym_identifier] = ACTIONS(1691), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1428), - [anon_sym_LBRACE] = ACTIONS(1430), - [anon_sym_LPAREN] = ACTIONS(1432), - [anon_sym_fn] = ACTIONS(1434), - [anon_sym_PLUS] = ACTIONS(2491), - [anon_sym_DASH] = ACTIONS(2491), - [anon_sym_STAR] = ACTIONS(3354), - [anon_sym_struct] = ACTIONS(1440), + [anon_sym_DOT] = ACTIONS(1693), + [anon_sym_LBRACE] = ACTIONS(2151), + [anon_sym_LPAREN] = ACTIONS(2153), + [anon_sym_fn] = ACTIONS(1699), + [anon_sym_PLUS] = ACTIONS(2155), + [anon_sym_DASH] = ACTIONS(2155), + [anon_sym_STAR] = ACTIONS(2157), + [anon_sym_struct] = ACTIONS(1705), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(3356), - [anon_sym_go] = ACTIONS(2497), - [anon_sym_spawn] = ACTIONS(2499), - [anon_sym_json_DOTdecode] = ACTIONS(1448), - [anon_sym_LBRACK2] = ACTIONS(1450), - [anon_sym_TILDE] = ACTIONS(2491), - [anon_sym_CARET] = ACTIONS(2491), - [anon_sym_AMP] = ACTIONS(3358), - [anon_sym_LT_DASH] = ACTIONS(2503), - [sym_none] = ACTIONS(1456), - [sym_true] = ACTIONS(1456), - [sym_false] = ACTIONS(1456), - [sym_nil] = ACTIONS(1456), - [anon_sym_if] = ACTIONS(1827), - [anon_sym_DOLLARif] = ACTIONS(1460), - [anon_sym_match] = ACTIONS(1462), - [anon_sym_select] = ACTIONS(1464), - [anon_sym_lock] = ACTIONS(1466), - [anon_sym_rlock] = ACTIONS(1466), - [anon_sym_unsafe] = ACTIONS(1833), - [anon_sym_sql] = ACTIONS(1470), - [sym_int_literal] = ACTIONS(1456), - [sym_float_literal] = ACTIONS(1472), - [sym_rune_literal] = ACTIONS(1472), - [sym_pseudo_compile_time_identifier] = ACTIONS(1474), + [anon_sym_BANG] = ACTIONS(2159), + [anon_sym_go] = ACTIONS(1709), + [anon_sym_spawn] = ACTIONS(1711), + [anon_sym_json_DOTdecode] = ACTIONS(2161), + [anon_sym_LBRACK2] = ACTIONS(2163), + [anon_sym_TILDE] = ACTIONS(2155), + [anon_sym_CARET] = ACTIONS(2155), + [anon_sym_AMP] = ACTIONS(2165), + [anon_sym_LT_DASH] = ACTIONS(2167), + [sym_none] = ACTIONS(1721), + [sym_true] = ACTIONS(1721), + [sym_false] = ACTIONS(1721), + [sym_nil] = ACTIONS(1721), + [anon_sym_if] = ACTIONS(1723), + [anon_sym_DOLLARif] = ACTIONS(1725), + [anon_sym_match] = ACTIONS(1727), + [anon_sym_select] = ACTIONS(1729), + [anon_sym_lock] = ACTIONS(1731), + [anon_sym_rlock] = ACTIONS(1731), + [anon_sym_unsafe] = ACTIONS(1733), + [anon_sym_sql] = ACTIONS(1735), + [sym_int_literal] = ACTIONS(1721), + [sym_float_literal] = ACTIONS(2169), + [sym_rune_literal] = ACTIONS(2169), + [sym_pseudo_compile_time_identifier] = ACTIONS(1737), [anon_sym_shared] = ACTIONS(83), [anon_sym_map_LBRACK] = ACTIONS(85), [anon_sym_chan] = ACTIONS(87), [anon_sym_thread] = ACTIONS(89), [anon_sym_atomic] = ACTIONS(91), - [sym___double_quote] = ACTIONS(1478), - [sym___single_quote] = ACTIONS(1480), - [sym___c_double_quote] = ACTIONS(1482), - [sym___c_single_quote] = ACTIONS(1484), - [sym___r_double_quote] = ACTIONS(1486), - [sym___r_single_quote] = ACTIONS(1488), + [sym___double_quote] = ACTIONS(2171), + [sym___single_quote] = ACTIONS(2173), + [sym___c_double_quote] = ACTIONS(2175), + [sym___c_single_quote] = ACTIONS(2177), + [sym___r_double_quote] = ACTIONS(2179), + [sym___r_single_quote] = ACTIONS(2181), }, [679] = { [sym_line_comment] = STATE(679), [sym_block_comment] = STATE(679), - [sym__expression] = STATE(2279), - [sym__expression_without_blocks] = STATE(2489), - [sym__expression_with_blocks] = STATE(2489), - [sym_inc_expression] = STATE(2479), - [sym_dec_expression] = STATE(2479), - [sym_or_block_expression] = STATE(2479), - [sym_option_propagation_expression] = STATE(2479), - [sym_result_propagation_expression] = STATE(2479), - [sym_anon_struct_value_expression] = STATE(2491), - [sym_go_expression] = STATE(2479), - [sym_spawn_expression] = STATE(2479), - [sym_parenthesized_expression] = STATE(2479), - [sym_call_expression] = STATE(2479), - [sym_type_initializer] = STATE(2491), - [sym_function_literal] = STATE(2479), - [sym_reference_expression] = STATE(2542), - [sym_type_reference_expression] = STATE(3541), - [sym_unary_expression] = STATE(2479), - [sym_receive_expression] = STATE(2479), - [sym_binary_expression] = STATE(2479), - [sym_as_type_cast_expression] = STATE(2479), - [sym__max_group] = STATE(2479), - [sym_literal] = STATE(2454), - [sym_map_init_expression] = STATE(2491), - [sym_array_creation] = STATE(2479), - [sym_fixed_array_creation] = STATE(2479), - [sym_selector_expression] = STATE(2479), - [sym_index_expression] = STATE(2479), - [sym_slice_expression] = STATE(2479), - [sym_if_expression] = STATE(2491), - [sym_compile_time_if_expression] = STATE(2491), - [sym_is_expression] = STATE(2479), - [sym_in_expression] = STATE(2479), - [sym_enum_fetch] = STATE(2479), - [sym_match_expression] = STATE(2491), - [sym_select_expression] = STATE(2491), - [sym_lock_expression] = STATE(2491), - [sym_unsafe_expression] = STATE(2491), - [sym_sql_expression] = STATE(2491), - [sym_c_string_literal] = STATE(2469), - [sym_raw_string_literal] = STATE(2469), - [sym_interpreted_string_literal] = STATE(2469), - [sym_mutability_modifiers] = STATE(640), - [sym_plain_type] = STATE(4272), - [sym__plain_type_without_special] = STATE(2302), - [sym_anon_struct_type] = STATE(2303), - [sym_multi_return_type] = STATE(2302), - [sym_result_type] = STATE(2302), - [sym_option_type] = STATE(2302), - [sym_qualified_type] = STATE(3541), - [sym_fixed_array_type] = STATE(2303), - [sym_array_type] = STATE(2303), - [sym_pointer_type] = STATE(2303), - [sym_wrong_pointer_type] = STATE(2303), - [sym_map_type] = STATE(2303), - [sym_channel_type] = STATE(2303), - [sym_shared_type] = STATE(2303), - [sym_thread_type] = STATE(2303), - [sym_atomic_type] = STATE(2303), - [sym_generic_type] = STATE(2303), - [sym_function_type] = STATE(2303), - [sym_identifier] = ACTIONS(1695), + [sym__expression] = STATE(2286), + [sym__expression_without_blocks] = STATE(2468), + [sym__expression_with_blocks] = STATE(2468), + [sym_inc_expression] = STATE(2469), + [sym_dec_expression] = STATE(2469), + [sym_or_block_expression] = STATE(2469), + [sym_option_propagation_expression] = STATE(2469), + [sym_result_propagation_expression] = STATE(2469), + [sym_anon_struct_value_expression] = STATE(2470), + [sym_go_expression] = STATE(2469), + [sym_spawn_expression] = STATE(2469), + [sym_parenthesized_expression] = STATE(2469), + [sym_call_expression] = STATE(2469), + [sym_type_initializer] = STATE(2470), + [sym_function_literal] = STATE(2469), + [sym_reference_expression] = STATE(2487), + [sym_type_reference_expression] = STATE(3460), + [sym_unary_expression] = STATE(2469), + [sym_receive_expression] = STATE(2469), + [sym_binary_expression] = STATE(2469), + [sym_as_type_cast_expression] = STATE(2469), + [sym__max_group] = STATE(2469), + [sym_literal] = STATE(2465), + [sym_map_init_expression] = STATE(2470), + [sym_array_creation] = STATE(2469), + [sym_fixed_array_creation] = STATE(2469), + [sym_selector_expression] = STATE(2469), + [sym_index_expression] = STATE(2469), + [sym_slice_expression] = STATE(2469), + [sym_if_expression] = STATE(2470), + [sym_compile_time_if_expression] = STATE(2470), + [sym_is_expression] = STATE(2469), + [sym_in_expression] = STATE(2469), + [sym_enum_fetch] = STATE(2469), + [sym_match_expression] = STATE(2470), + [sym_select_expression] = STATE(2470), + [sym_lock_expression] = STATE(2470), + [sym_unsafe_expression] = STATE(2470), + [sym_sql_expression] = STATE(2470), + [sym_c_string_literal] = STATE(2464), + [sym_raw_string_literal] = STATE(2464), + [sym_interpreted_string_literal] = STATE(2464), + [sym_mutability_modifiers] = STATE(561), + [sym_plain_type] = STATE(4055), + [sym__plain_type_without_special] = STATE(2360), + [sym_anon_struct_type] = STATE(2362), + [sym_multi_return_type] = STATE(2360), + [sym_result_type] = STATE(2360), + [sym_option_type] = STATE(2360), + [sym_qualified_type] = STATE(3460), + [sym_fixed_array_type] = STATE(2362), + [sym_array_type] = STATE(2362), + [sym_pointer_type] = STATE(2362), + [sym_wrong_pointer_type] = STATE(2362), + [sym_map_type] = STATE(2362), + [sym_channel_type] = STATE(2362), + [sym_shared_type] = STATE(2362), + [sym_thread_type] = STATE(2362), + [sym_atomic_type] = STATE(2362), + [sym_generic_type] = STATE(2362), + [sym_function_type] = STATE(2362), + [sym_identifier] = ACTIONS(1691), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1697), - [anon_sym_LBRACE] = ACTIONS(2697), - [anon_sym_LPAREN] = ACTIONS(2699), - [anon_sym_fn] = ACTIONS(1703), - [anon_sym_PLUS] = ACTIONS(3380), - [anon_sym_DASH] = ACTIONS(3380), - [anon_sym_STAR] = ACTIONS(3382), - [anon_sym_struct] = ACTIONS(1709), + [anon_sym_DOT] = ACTIONS(1693), + [anon_sym_LBRACE] = ACTIONS(2151), + [anon_sym_LPAREN] = ACTIONS(2153), + [anon_sym_fn] = ACTIONS(1699), + [anon_sym_PLUS] = ACTIONS(2155), + [anon_sym_DASH] = ACTIONS(2155), + [anon_sym_STAR] = ACTIONS(2157), + [anon_sym_struct] = ACTIONS(1705), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(3384), - [anon_sym_go] = ACTIONS(3386), - [anon_sym_spawn] = ACTIONS(3388), - [anon_sym_json_DOTdecode] = ACTIONS(2707), - [anon_sym_LBRACK2] = ACTIONS(2709), - [anon_sym_TILDE] = ACTIONS(3380), - [anon_sym_CARET] = ACTIONS(3380), - [anon_sym_AMP] = ACTIONS(3390), - [anon_sym_LT_DASH] = ACTIONS(3392), - [sym_none] = ACTIONS(1725), - [sym_true] = ACTIONS(1725), - [sym_false] = ACTIONS(1725), - [sym_nil] = ACTIONS(1725), - [anon_sym_if] = ACTIONS(1727), - [anon_sym_DOLLARif] = ACTIONS(1729), - [anon_sym_match] = ACTIONS(1731), - [anon_sym_select] = ACTIONS(3394), - [anon_sym_lock] = ACTIONS(3396), - [anon_sym_rlock] = ACTIONS(3396), - [anon_sym_unsafe] = ACTIONS(1737), - [anon_sym_sql] = ACTIONS(1739), - [sym_int_literal] = ACTIONS(1725), - [sym_float_literal] = ACTIONS(2715), - [sym_rune_literal] = ACTIONS(2715), - [sym_pseudo_compile_time_identifier] = ACTIONS(1741), + [anon_sym_BANG] = ACTIONS(2159), + [anon_sym_go] = ACTIONS(1709), + [anon_sym_spawn] = ACTIONS(1711), + [anon_sym_json_DOTdecode] = ACTIONS(2161), + [anon_sym_LBRACK2] = ACTIONS(2163), + [anon_sym_TILDE] = ACTIONS(2155), + [anon_sym_CARET] = ACTIONS(2155), + [anon_sym_AMP] = ACTIONS(2165), + [anon_sym_LT_DASH] = ACTIONS(2167), + [sym_none] = ACTIONS(1721), + [sym_true] = ACTIONS(1721), + [sym_false] = ACTIONS(1721), + [sym_nil] = ACTIONS(1721), + [anon_sym_if] = ACTIONS(1723), + [anon_sym_DOLLARif] = ACTIONS(1725), + [anon_sym_match] = ACTIONS(1727), + [anon_sym_select] = ACTIONS(1729), + [anon_sym_lock] = ACTIONS(1731), + [anon_sym_rlock] = ACTIONS(1731), + [anon_sym_unsafe] = ACTIONS(1733), + [anon_sym_sql] = ACTIONS(1735), + [sym_int_literal] = ACTIONS(1721), + [sym_float_literal] = ACTIONS(2169), + [sym_rune_literal] = ACTIONS(2169), + [sym_pseudo_compile_time_identifier] = ACTIONS(1737), [anon_sym_shared] = ACTIONS(83), [anon_sym_map_LBRACK] = ACTIONS(85), [anon_sym_chan] = ACTIONS(87), [anon_sym_thread] = ACTIONS(89), [anon_sym_atomic] = ACTIONS(91), - [sym___double_quote] = ACTIONS(2717), - [sym___single_quote] = ACTIONS(2719), - [sym___c_double_quote] = ACTIONS(2721), - [sym___c_single_quote] = ACTIONS(2723), - [sym___r_double_quote] = ACTIONS(2725), - [sym___r_single_quote] = ACTIONS(2727), + [sym___double_quote] = ACTIONS(2171), + [sym___single_quote] = ACTIONS(2173), + [sym___c_double_quote] = ACTIONS(2175), + [sym___c_single_quote] = ACTIONS(2177), + [sym___r_double_quote] = ACTIONS(2179), + [sym___r_single_quote] = ACTIONS(2181), }, [680] = { [sym_line_comment] = STATE(680), [sym_block_comment] = STATE(680), - [sym__expression] = STATE(2279), - [sym__expression_without_blocks] = STATE(2489), - [sym__expression_with_blocks] = STATE(2489), - [sym_inc_expression] = STATE(2479), - [sym_dec_expression] = STATE(2479), - [sym_or_block_expression] = STATE(2479), - [sym_option_propagation_expression] = STATE(2479), - [sym_result_propagation_expression] = STATE(2479), - [sym_anon_struct_value_expression] = STATE(2491), - [sym_go_expression] = STATE(2479), - [sym_spawn_expression] = STATE(2479), - [sym_parenthesized_expression] = STATE(2479), - [sym_call_expression] = STATE(2479), - [sym_type_initializer] = STATE(2491), - [sym_function_literal] = STATE(2479), - [sym_reference_expression] = STATE(2542), - [sym_type_reference_expression] = STATE(3541), - [sym_unary_expression] = STATE(2479), - [sym_receive_expression] = STATE(2479), - [sym_binary_expression] = STATE(2479), - [sym_as_type_cast_expression] = STATE(2479), - [sym__max_group] = STATE(2479), - [sym_literal] = STATE(2454), - [sym_map_init_expression] = STATE(2491), - [sym_array_creation] = STATE(2479), - [sym_fixed_array_creation] = STATE(2479), - [sym_selector_expression] = STATE(2479), - [sym_index_expression] = STATE(2479), - [sym_slice_expression] = STATE(2479), - [sym_if_expression] = STATE(2491), - [sym_compile_time_if_expression] = STATE(2491), - [sym_is_expression] = STATE(2479), - [sym_in_expression] = STATE(2479), - [sym_enum_fetch] = STATE(2479), - [sym_match_expression] = STATE(2491), - [sym_select_expression] = STATE(2491), - [sym_lock_expression] = STATE(2491), - [sym_unsafe_expression] = STATE(2491), - [sym_sql_expression] = STATE(2491), - [sym_c_string_literal] = STATE(2469), - [sym_raw_string_literal] = STATE(2469), - [sym_interpreted_string_literal] = STATE(2469), - [sym_mutability_modifiers] = STATE(640), - [sym_plain_type] = STATE(4284), - [sym__plain_type_without_special] = STATE(2302), - [sym_anon_struct_type] = STATE(2303), - [sym_multi_return_type] = STATE(2302), - [sym_result_type] = STATE(2302), - [sym_option_type] = STATE(2302), - [sym_qualified_type] = STATE(3541), - [sym_fixed_array_type] = STATE(2303), - [sym_array_type] = STATE(2303), - [sym_pointer_type] = STATE(2303), - [sym_wrong_pointer_type] = STATE(2303), - [sym_map_type] = STATE(2303), - [sym_channel_type] = STATE(2303), - [sym_shared_type] = STATE(2303), - [sym_thread_type] = STATE(2303), - [sym_atomic_type] = STATE(2303), - [sym_generic_type] = STATE(2303), - [sym_function_type] = STATE(2303), - [sym_identifier] = ACTIONS(1695), + [sym__expression] = STATE(2286), + [sym__expression_without_blocks] = STATE(2468), + [sym__expression_with_blocks] = STATE(2468), + [sym_inc_expression] = STATE(2469), + [sym_dec_expression] = STATE(2469), + [sym_or_block_expression] = STATE(2469), + [sym_option_propagation_expression] = STATE(2469), + [sym_result_propagation_expression] = STATE(2469), + [sym_anon_struct_value_expression] = STATE(2470), + [sym_go_expression] = STATE(2469), + [sym_spawn_expression] = STATE(2469), + [sym_parenthesized_expression] = STATE(2469), + [sym_call_expression] = STATE(2469), + [sym_type_initializer] = STATE(2470), + [sym_function_literal] = STATE(2469), + [sym_reference_expression] = STATE(2487), + [sym_type_reference_expression] = STATE(3460), + [sym_unary_expression] = STATE(2469), + [sym_receive_expression] = STATE(2469), + [sym_binary_expression] = STATE(2469), + [sym_as_type_cast_expression] = STATE(2469), + [sym__max_group] = STATE(2469), + [sym_literal] = STATE(2465), + [sym_map_init_expression] = STATE(2470), + [sym_array_creation] = STATE(2469), + [sym_fixed_array_creation] = STATE(2469), + [sym_selector_expression] = STATE(2469), + [sym_index_expression] = STATE(2469), + [sym_slice_expression] = STATE(2469), + [sym_if_expression] = STATE(2470), + [sym_compile_time_if_expression] = STATE(2470), + [sym_is_expression] = STATE(2469), + [sym_in_expression] = STATE(2469), + [sym_enum_fetch] = STATE(2469), + [sym_match_expression] = STATE(2470), + [sym_select_expression] = STATE(2470), + [sym_lock_expression] = STATE(2470), + [sym_unsafe_expression] = STATE(2470), + [sym_sql_expression] = STATE(2470), + [sym_c_string_literal] = STATE(2464), + [sym_raw_string_literal] = STATE(2464), + [sym_interpreted_string_literal] = STATE(2464), + [sym_mutability_modifiers] = STATE(561), + [sym_plain_type] = STATE(4038), + [sym__plain_type_without_special] = STATE(2360), + [sym_anon_struct_type] = STATE(2362), + [sym_multi_return_type] = STATE(2360), + [sym_result_type] = STATE(2360), + [sym_option_type] = STATE(2360), + [sym_qualified_type] = STATE(3460), + [sym_fixed_array_type] = STATE(2362), + [sym_array_type] = STATE(2362), + [sym_pointer_type] = STATE(2362), + [sym_wrong_pointer_type] = STATE(2362), + [sym_map_type] = STATE(2362), + [sym_channel_type] = STATE(2362), + [sym_shared_type] = STATE(2362), + [sym_thread_type] = STATE(2362), + [sym_atomic_type] = STATE(2362), + [sym_generic_type] = STATE(2362), + [sym_function_type] = STATE(2362), + [sym_identifier] = ACTIONS(1691), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1697), - [anon_sym_LBRACE] = ACTIONS(2697), - [anon_sym_LPAREN] = ACTIONS(2699), - [anon_sym_fn] = ACTIONS(1703), - [anon_sym_PLUS] = ACTIONS(3380), - [anon_sym_DASH] = ACTIONS(3380), - [anon_sym_STAR] = ACTIONS(3382), - [anon_sym_struct] = ACTIONS(1709), + [anon_sym_DOT] = ACTIONS(1693), + [anon_sym_LBRACE] = ACTIONS(2151), + [anon_sym_LPAREN] = ACTIONS(2153), + [anon_sym_fn] = ACTIONS(1699), + [anon_sym_PLUS] = ACTIONS(2155), + [anon_sym_DASH] = ACTIONS(2155), + [anon_sym_STAR] = ACTIONS(2157), + [anon_sym_struct] = ACTIONS(1705), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(3384), - [anon_sym_go] = ACTIONS(3386), - [anon_sym_spawn] = ACTIONS(3388), - [anon_sym_json_DOTdecode] = ACTIONS(2707), - [anon_sym_LBRACK2] = ACTIONS(2709), - [anon_sym_TILDE] = ACTIONS(3380), - [anon_sym_CARET] = ACTIONS(3380), - [anon_sym_AMP] = ACTIONS(3390), - [anon_sym_LT_DASH] = ACTIONS(3392), - [sym_none] = ACTIONS(1725), - [sym_true] = ACTIONS(1725), - [sym_false] = ACTIONS(1725), - [sym_nil] = ACTIONS(1725), - [anon_sym_if] = ACTIONS(1727), - [anon_sym_DOLLARif] = ACTIONS(1729), - [anon_sym_match] = ACTIONS(1731), - [anon_sym_select] = ACTIONS(3394), - [anon_sym_lock] = ACTIONS(3396), - [anon_sym_rlock] = ACTIONS(3396), - [anon_sym_unsafe] = ACTIONS(1737), - [anon_sym_sql] = ACTIONS(1739), - [sym_int_literal] = ACTIONS(1725), - [sym_float_literal] = ACTIONS(2715), - [sym_rune_literal] = ACTIONS(2715), - [sym_pseudo_compile_time_identifier] = ACTIONS(1741), + [anon_sym_BANG] = ACTIONS(2159), + [anon_sym_go] = ACTIONS(1709), + [anon_sym_spawn] = ACTIONS(1711), + [anon_sym_json_DOTdecode] = ACTIONS(2161), + [anon_sym_LBRACK2] = ACTIONS(2163), + [anon_sym_TILDE] = ACTIONS(2155), + [anon_sym_CARET] = ACTIONS(2155), + [anon_sym_AMP] = ACTIONS(2165), + [anon_sym_LT_DASH] = ACTIONS(2167), + [sym_none] = ACTIONS(1721), + [sym_true] = ACTIONS(1721), + [sym_false] = ACTIONS(1721), + [sym_nil] = ACTIONS(1721), + [anon_sym_if] = ACTIONS(1723), + [anon_sym_DOLLARif] = ACTIONS(1725), + [anon_sym_match] = ACTIONS(1727), + [anon_sym_select] = ACTIONS(1729), + [anon_sym_lock] = ACTIONS(1731), + [anon_sym_rlock] = ACTIONS(1731), + [anon_sym_unsafe] = ACTIONS(1733), + [anon_sym_sql] = ACTIONS(1735), + [sym_int_literal] = ACTIONS(1721), + [sym_float_literal] = ACTIONS(2169), + [sym_rune_literal] = ACTIONS(2169), + [sym_pseudo_compile_time_identifier] = ACTIONS(1737), [anon_sym_shared] = ACTIONS(83), [anon_sym_map_LBRACK] = ACTIONS(85), [anon_sym_chan] = ACTIONS(87), [anon_sym_thread] = ACTIONS(89), [anon_sym_atomic] = ACTIONS(91), - [sym___double_quote] = ACTIONS(2717), - [sym___single_quote] = ACTIONS(2719), - [sym___c_double_quote] = ACTIONS(2721), - [sym___c_single_quote] = ACTIONS(2723), - [sym___r_double_quote] = ACTIONS(2725), - [sym___r_single_quote] = ACTIONS(2727), + [sym___double_quote] = ACTIONS(2171), + [sym___single_quote] = ACTIONS(2173), + [sym___c_double_quote] = ACTIONS(2175), + [sym___c_single_quote] = ACTIONS(2177), + [sym___r_double_quote] = ACTIONS(2179), + [sym___r_single_quote] = ACTIONS(2181), }, [681] = { [sym_line_comment] = STATE(681), [sym_block_comment] = STATE(681), - [sym__expression] = STATE(2319), - [sym__expression_without_blocks] = STATE(2489), - [sym__expression_with_blocks] = STATE(2489), - [sym_inc_expression] = STATE(2479), - [sym_dec_expression] = STATE(2479), - [sym_or_block_expression] = STATE(2479), - [sym_option_propagation_expression] = STATE(2479), - [sym_result_propagation_expression] = STATE(2479), - [sym_anon_struct_value_expression] = STATE(2491), - [sym_go_expression] = STATE(2479), - [sym_spawn_expression] = STATE(2479), - [sym_parenthesized_expression] = STATE(2479), - [sym_call_expression] = STATE(2479), - [sym_type_initializer] = STATE(2491), - [sym_function_literal] = STATE(2479), - [sym_reference_expression] = STATE(2542), - [sym_type_reference_expression] = STATE(3541), - [sym_unary_expression] = STATE(2479), - [sym_receive_expression] = STATE(2479), - [sym_binary_expression] = STATE(2479), - [sym_as_type_cast_expression] = STATE(2479), - [sym__max_group] = STATE(2479), - [sym_literal] = STATE(2454), - [sym_map_init_expression] = STATE(2491), - [sym_array_creation] = STATE(2479), - [sym_fixed_array_creation] = STATE(2479), - [sym_selector_expression] = STATE(2479), - [sym_index_expression] = STATE(2479), - [sym_slice_expression] = STATE(2479), - [sym_if_expression] = STATE(2491), - [sym_compile_time_if_expression] = STATE(2491), - [sym_is_expression] = STATE(2479), - [sym_in_expression] = STATE(2479), - [sym_enum_fetch] = STATE(2479), - [sym_match_expression] = STATE(2491), - [sym_select_expression] = STATE(2491), - [sym_lock_expression] = STATE(2491), - [sym_unsafe_expression] = STATE(2491), - [sym_sql_expression] = STATE(2491), - [sym_c_string_literal] = STATE(2469), - [sym_raw_string_literal] = STATE(2469), - [sym_interpreted_string_literal] = STATE(2469), - [sym_mutability_modifiers] = STATE(640), - [sym_plain_type] = STATE(4255), - [sym__plain_type_without_special] = STATE(2302), - [sym_anon_struct_type] = STATE(2303), - [sym_multi_return_type] = STATE(2302), - [sym_result_type] = STATE(2302), - [sym_option_type] = STATE(2302), - [sym_qualified_type] = STATE(3541), - [sym_fixed_array_type] = STATE(2303), - [sym_array_type] = STATE(2303), - [sym_pointer_type] = STATE(2303), - [sym_wrong_pointer_type] = STATE(2303), - [sym_map_type] = STATE(2303), - [sym_channel_type] = STATE(2303), - [sym_shared_type] = STATE(2303), - [sym_thread_type] = STATE(2303), - [sym_atomic_type] = STATE(2303), - [sym_generic_type] = STATE(2303), - [sym_function_type] = STATE(2303), - [sym_identifier] = ACTIONS(1695), + [sym__expression] = STATE(2286), + [sym__expression_without_blocks] = STATE(2468), + [sym__expression_with_blocks] = STATE(2468), + [sym_inc_expression] = STATE(2469), + [sym_dec_expression] = STATE(2469), + [sym_or_block_expression] = STATE(2469), + [sym_option_propagation_expression] = STATE(2469), + [sym_result_propagation_expression] = STATE(2469), + [sym_anon_struct_value_expression] = STATE(2470), + [sym_go_expression] = STATE(2469), + [sym_spawn_expression] = STATE(2469), + [sym_parenthesized_expression] = STATE(2469), + [sym_call_expression] = STATE(2469), + [sym_type_initializer] = STATE(2470), + [sym_function_literal] = STATE(2469), + [sym_reference_expression] = STATE(2487), + [sym_type_reference_expression] = STATE(3460), + [sym_unary_expression] = STATE(2469), + [sym_receive_expression] = STATE(2469), + [sym_binary_expression] = STATE(2469), + [sym_as_type_cast_expression] = STATE(2469), + [sym__max_group] = STATE(2469), + [sym_literal] = STATE(2465), + [sym_map_init_expression] = STATE(2470), + [sym_array_creation] = STATE(2469), + [sym_fixed_array_creation] = STATE(2469), + [sym_selector_expression] = STATE(2469), + [sym_index_expression] = STATE(2469), + [sym_slice_expression] = STATE(2469), + [sym_if_expression] = STATE(2470), + [sym_compile_time_if_expression] = STATE(2470), + [sym_is_expression] = STATE(2469), + [sym_in_expression] = STATE(2469), + [sym_enum_fetch] = STATE(2469), + [sym_match_expression] = STATE(2470), + [sym_select_expression] = STATE(2470), + [sym_lock_expression] = STATE(2470), + [sym_unsafe_expression] = STATE(2470), + [sym_sql_expression] = STATE(2470), + [sym_c_string_literal] = STATE(2464), + [sym_raw_string_literal] = STATE(2464), + [sym_interpreted_string_literal] = STATE(2464), + [sym_mutability_modifiers] = STATE(561), + [sym_plain_type] = STATE(4057), + [sym__plain_type_without_special] = STATE(2360), + [sym_anon_struct_type] = STATE(2362), + [sym_multi_return_type] = STATE(2360), + [sym_result_type] = STATE(2360), + [sym_option_type] = STATE(2360), + [sym_qualified_type] = STATE(3460), + [sym_fixed_array_type] = STATE(2362), + [sym_array_type] = STATE(2362), + [sym_pointer_type] = STATE(2362), + [sym_wrong_pointer_type] = STATE(2362), + [sym_map_type] = STATE(2362), + [sym_channel_type] = STATE(2362), + [sym_shared_type] = STATE(2362), + [sym_thread_type] = STATE(2362), + [sym_atomic_type] = STATE(2362), + [sym_generic_type] = STATE(2362), + [sym_function_type] = STATE(2362), + [sym_identifier] = ACTIONS(1691), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1697), - [anon_sym_LBRACE] = ACTIONS(2697), - [anon_sym_LPAREN] = ACTIONS(2699), - [anon_sym_fn] = ACTIONS(1703), - [anon_sym_PLUS] = ACTIONS(3380), - [anon_sym_DASH] = ACTIONS(3380), - [anon_sym_STAR] = ACTIONS(3382), - [anon_sym_struct] = ACTIONS(1709), + [anon_sym_DOT] = ACTIONS(1693), + [anon_sym_LBRACE] = ACTIONS(2151), + [anon_sym_LPAREN] = ACTIONS(2153), + [anon_sym_fn] = ACTIONS(1699), + [anon_sym_PLUS] = ACTIONS(3386), + [anon_sym_DASH] = ACTIONS(3386), + [anon_sym_STAR] = ACTIONS(3388), + [anon_sym_struct] = ACTIONS(1705), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(3384), - [anon_sym_go] = ACTIONS(3386), - [anon_sym_spawn] = ACTIONS(3388), - [anon_sym_json_DOTdecode] = ACTIONS(2707), - [anon_sym_LBRACK2] = ACTIONS(2709), - [anon_sym_TILDE] = ACTIONS(3380), - [anon_sym_CARET] = ACTIONS(3380), - [anon_sym_AMP] = ACTIONS(3390), - [anon_sym_LT_DASH] = ACTIONS(3392), - [sym_none] = ACTIONS(1725), - [sym_true] = ACTIONS(1725), - [sym_false] = ACTIONS(1725), - [sym_nil] = ACTIONS(1725), - [anon_sym_if] = ACTIONS(1727), - [anon_sym_DOLLARif] = ACTIONS(1729), - [anon_sym_match] = ACTIONS(1731), - [anon_sym_select] = ACTIONS(3394), - [anon_sym_lock] = ACTIONS(3396), - [anon_sym_rlock] = ACTIONS(3396), - [anon_sym_unsafe] = ACTIONS(1737), - [anon_sym_sql] = ACTIONS(1739), - [sym_int_literal] = ACTIONS(1725), - [sym_float_literal] = ACTIONS(2715), - [sym_rune_literal] = ACTIONS(2715), - [sym_pseudo_compile_time_identifier] = ACTIONS(1741), + [anon_sym_BANG] = ACTIONS(3390), + [anon_sym_go] = ACTIONS(3392), + [anon_sym_spawn] = ACTIONS(3394), + [anon_sym_json_DOTdecode] = ACTIONS(2161), + [anon_sym_LBRACK2] = ACTIONS(2163), + [anon_sym_TILDE] = ACTIONS(3386), + [anon_sym_CARET] = ACTIONS(3386), + [anon_sym_AMP] = ACTIONS(3396), + [anon_sym_LT_DASH] = ACTIONS(3398), + [sym_none] = ACTIONS(1721), + [sym_true] = ACTIONS(1721), + [sym_false] = ACTIONS(1721), + [sym_nil] = ACTIONS(1721), + [anon_sym_if] = ACTIONS(1723), + [anon_sym_DOLLARif] = ACTIONS(1725), + [anon_sym_match] = ACTIONS(1727), + [anon_sym_select] = ACTIONS(3400), + [anon_sym_lock] = ACTIONS(3402), + [anon_sym_rlock] = ACTIONS(3402), + [anon_sym_unsafe] = ACTIONS(1733), + [anon_sym_sql] = ACTIONS(1735), + [sym_int_literal] = ACTIONS(1721), + [sym_float_literal] = ACTIONS(2169), + [sym_rune_literal] = ACTIONS(2169), + [sym_pseudo_compile_time_identifier] = ACTIONS(1737), [anon_sym_shared] = ACTIONS(83), [anon_sym_map_LBRACK] = ACTIONS(85), [anon_sym_chan] = ACTIONS(87), [anon_sym_thread] = ACTIONS(89), [anon_sym_atomic] = ACTIONS(91), - [sym___double_quote] = ACTIONS(2717), - [sym___single_quote] = ACTIONS(2719), - [sym___c_double_quote] = ACTIONS(2721), - [sym___c_single_quote] = ACTIONS(2723), - [sym___r_double_quote] = ACTIONS(2725), - [sym___r_single_quote] = ACTIONS(2727), + [sym___double_quote] = ACTIONS(2171), + [sym___single_quote] = ACTIONS(2173), + [sym___c_double_quote] = ACTIONS(2175), + [sym___c_single_quote] = ACTIONS(2177), + [sym___r_double_quote] = ACTIONS(2179), + [sym___r_single_quote] = ACTIONS(2181), }, [682] = { [sym_line_comment] = STATE(682), [sym_block_comment] = STATE(682), - [sym__expression] = STATE(2274), - [sym__expression_without_blocks] = STATE(2300), - [sym__expression_with_blocks] = STATE(2300), - [sym_inc_expression] = STATE(2307), - [sym_dec_expression] = STATE(2307), - [sym_or_block_expression] = STATE(2307), - [sym_option_propagation_expression] = STATE(2307), - [sym_result_propagation_expression] = STATE(2307), - [sym_anon_struct_value_expression] = STATE(2380), - [sym_go_expression] = STATE(2307), - [sym_spawn_expression] = STATE(2307), - [sym_parenthesized_expression] = STATE(2307), - [sym_call_expression] = STATE(2307), - [sym_type_initializer] = STATE(2380), - [sym_function_literal] = STATE(2307), - [sym_reference_expression] = STATE(2311), - [sym_type_reference_expression] = STATE(3541), - [sym_unary_expression] = STATE(2307), - [sym_receive_expression] = STATE(2307), - [sym_binary_expression] = STATE(2307), - [sym_as_type_cast_expression] = STATE(2307), - [sym__max_group] = STATE(2307), - [sym_literal] = STATE(2292), - [sym_map_init_expression] = STATE(2380), - [sym_array_creation] = STATE(2307), - [sym_fixed_array_creation] = STATE(2307), - [sym_selector_expression] = STATE(2307), - [sym_index_expression] = STATE(2307), - [sym_slice_expression] = STATE(2307), - [sym_if_expression] = STATE(2380), - [sym_compile_time_if_expression] = STATE(2380), - [sym_is_expression] = STATE(2307), - [sym_in_expression] = STATE(2307), - [sym_enum_fetch] = STATE(2307), - [sym_match_expression] = STATE(2380), - [sym_select_expression] = STATE(2380), - [sym_lock_expression] = STATE(2380), - [sym_unsafe_expression] = STATE(2380), - [sym_sql_expression] = STATE(2380), - [sym_c_string_literal] = STATE(2308), - [sym_raw_string_literal] = STATE(2308), - [sym_interpreted_string_literal] = STATE(2308), - [sym_mutability_modifiers] = STATE(939), - [sym_plain_type] = STATE(4297), - [sym__plain_type_without_special] = STATE(2302), - [sym_anon_struct_type] = STATE(2303), - [sym_multi_return_type] = STATE(2302), - [sym_result_type] = STATE(2302), - [sym_option_type] = STATE(2302), - [sym_qualified_type] = STATE(3541), - [sym_fixed_array_type] = STATE(2303), - [sym_array_type] = STATE(2303), - [sym_pointer_type] = STATE(2303), - [sym_wrong_pointer_type] = STATE(2303), - [sym_map_type] = STATE(2303), - [sym_channel_type] = STATE(2303), - [sym_shared_type] = STATE(2303), - [sym_thread_type] = STATE(2303), - [sym_atomic_type] = STATE(2303), - [sym_generic_type] = STATE(2303), - [sym_function_type] = STATE(2303), - [sym_identifier] = ACTIONS(2189), + [sym__expression] = STATE(2384), + [sym__expression_without_blocks] = STATE(2468), + [sym__expression_with_blocks] = STATE(2468), + [sym_inc_expression] = STATE(2469), + [sym_dec_expression] = STATE(2469), + [sym_or_block_expression] = STATE(2469), + [sym_option_propagation_expression] = STATE(2469), + [sym_result_propagation_expression] = STATE(2469), + [sym_anon_struct_value_expression] = STATE(2470), + [sym_go_expression] = STATE(2469), + [sym_spawn_expression] = STATE(2469), + [sym_parenthesized_expression] = STATE(2469), + [sym_call_expression] = STATE(2469), + [sym_type_initializer] = STATE(2470), + [sym_function_literal] = STATE(2469), + [sym_reference_expression] = STATE(2487), + [sym_type_reference_expression] = STATE(3460), + [sym_unary_expression] = STATE(2469), + [sym_receive_expression] = STATE(2469), + [sym_binary_expression] = STATE(2469), + [sym_as_type_cast_expression] = STATE(2469), + [sym__max_group] = STATE(2469), + [sym_literal] = STATE(2465), + [sym_map_init_expression] = STATE(2470), + [sym_array_creation] = STATE(2469), + [sym_fixed_array_creation] = STATE(2469), + [sym_selector_expression] = STATE(2469), + [sym_index_expression] = STATE(2469), + [sym_slice_expression] = STATE(2469), + [sym_if_expression] = STATE(2470), + [sym_compile_time_if_expression] = STATE(2470), + [sym_is_expression] = STATE(2469), + [sym_in_expression] = STATE(2469), + [sym_enum_fetch] = STATE(2469), + [sym_match_expression] = STATE(2470), + [sym_select_expression] = STATE(2470), + [sym_lock_expression] = STATE(2470), + [sym_unsafe_expression] = STATE(2470), + [sym_sql_expression] = STATE(2470), + [sym_c_string_literal] = STATE(2464), + [sym_raw_string_literal] = STATE(2464), + [sym_interpreted_string_literal] = STATE(2464), + [sym_mutability_modifiers] = STATE(561), + [sym_plain_type] = STATE(4038), + [sym__plain_type_without_special] = STATE(2360), + [sym_anon_struct_type] = STATE(2362), + [sym_multi_return_type] = STATE(2360), + [sym_result_type] = STATE(2360), + [sym_option_type] = STATE(2360), + [sym_qualified_type] = STATE(3460), + [sym_fixed_array_type] = STATE(2362), + [sym_array_type] = STATE(2362), + [sym_pointer_type] = STATE(2362), + [sym_wrong_pointer_type] = STATE(2362), + [sym_map_type] = STATE(2362), + [sym_channel_type] = STATE(2362), + [sym_shared_type] = STATE(2362), + [sym_thread_type] = STATE(2362), + [sym_atomic_type] = STATE(2362), + [sym_generic_type] = STATE(2362), + [sym_function_type] = STATE(2362), + [sym_identifier] = ACTIONS(1691), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1428), - [anon_sym_LBRACE] = ACTIONS(1430), - [anon_sym_LPAREN] = ACTIONS(1432), - [anon_sym_fn] = ACTIONS(1434), - [anon_sym_PLUS] = ACTIONS(2491), - [anon_sym_DASH] = ACTIONS(2491), - [anon_sym_STAR] = ACTIONS(3354), - [anon_sym_struct] = ACTIONS(1440), + [anon_sym_DOT] = ACTIONS(1693), + [anon_sym_LBRACE] = ACTIONS(2151), + [anon_sym_LPAREN] = ACTIONS(2153), + [anon_sym_fn] = ACTIONS(1699), + [anon_sym_PLUS] = ACTIONS(3386), + [anon_sym_DASH] = ACTIONS(3386), + [anon_sym_STAR] = ACTIONS(3388), + [anon_sym_struct] = ACTIONS(1705), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(3356), - [anon_sym_go] = ACTIONS(2497), - [anon_sym_spawn] = ACTIONS(2499), - [anon_sym_json_DOTdecode] = ACTIONS(1448), - [anon_sym_LBRACK2] = ACTIONS(1450), - [anon_sym_TILDE] = ACTIONS(2491), - [anon_sym_CARET] = ACTIONS(2491), - [anon_sym_AMP] = ACTIONS(3358), - [anon_sym_LT_DASH] = ACTIONS(2503), - [sym_none] = ACTIONS(1456), - [sym_true] = ACTIONS(1456), - [sym_false] = ACTIONS(1456), - [sym_nil] = ACTIONS(1456), - [anon_sym_if] = ACTIONS(1827), - [anon_sym_DOLLARif] = ACTIONS(1460), - [anon_sym_match] = ACTIONS(1462), - [anon_sym_select] = ACTIONS(1464), - [anon_sym_lock] = ACTIONS(1466), - [anon_sym_rlock] = ACTIONS(1466), - [anon_sym_unsafe] = ACTIONS(1833), - [anon_sym_sql] = ACTIONS(1470), - [sym_int_literal] = ACTIONS(1456), - [sym_float_literal] = ACTIONS(1472), - [sym_rune_literal] = ACTIONS(1472), - [sym_pseudo_compile_time_identifier] = ACTIONS(1474), + [anon_sym_BANG] = ACTIONS(3390), + [anon_sym_go] = ACTIONS(3392), + [anon_sym_spawn] = ACTIONS(3394), + [anon_sym_json_DOTdecode] = ACTIONS(2161), + [anon_sym_LBRACK2] = ACTIONS(2163), + [anon_sym_TILDE] = ACTIONS(3386), + [anon_sym_CARET] = ACTIONS(3386), + [anon_sym_AMP] = ACTIONS(3396), + [anon_sym_LT_DASH] = ACTIONS(3398), + [sym_none] = ACTIONS(1721), + [sym_true] = ACTIONS(1721), + [sym_false] = ACTIONS(1721), + [sym_nil] = ACTIONS(1721), + [anon_sym_if] = ACTIONS(1723), + [anon_sym_DOLLARif] = ACTIONS(1725), + [anon_sym_match] = ACTIONS(1727), + [anon_sym_select] = ACTIONS(3400), + [anon_sym_lock] = ACTIONS(3402), + [anon_sym_rlock] = ACTIONS(3402), + [anon_sym_unsafe] = ACTIONS(1733), + [anon_sym_sql] = ACTIONS(1735), + [sym_int_literal] = ACTIONS(1721), + [sym_float_literal] = ACTIONS(2169), + [sym_rune_literal] = ACTIONS(2169), + [sym_pseudo_compile_time_identifier] = ACTIONS(1737), [anon_sym_shared] = ACTIONS(83), [anon_sym_map_LBRACK] = ACTIONS(85), [anon_sym_chan] = ACTIONS(87), [anon_sym_thread] = ACTIONS(89), [anon_sym_atomic] = ACTIONS(91), - [sym___double_quote] = ACTIONS(1478), - [sym___single_quote] = ACTIONS(1480), - [sym___c_double_quote] = ACTIONS(1482), - [sym___c_single_quote] = ACTIONS(1484), - [sym___r_double_quote] = ACTIONS(1486), - [sym___r_single_quote] = ACTIONS(1488), + [sym___double_quote] = ACTIONS(2171), + [sym___single_quote] = ACTIONS(2173), + [sym___c_double_quote] = ACTIONS(2175), + [sym___c_single_quote] = ACTIONS(2177), + [sym___r_double_quote] = ACTIONS(2179), + [sym___r_single_quote] = ACTIONS(2181), }, [683] = { [sym_line_comment] = STATE(683), [sym_block_comment] = STATE(683), - [sym__expression] = STATE(2344), - [sym__expression_without_blocks] = STATE(2489), - [sym__expression_with_blocks] = STATE(2489), - [sym_inc_expression] = STATE(2479), - [sym_dec_expression] = STATE(2479), - [sym_or_block_expression] = STATE(2479), - [sym_option_propagation_expression] = STATE(2479), - [sym_result_propagation_expression] = STATE(2479), - [sym_anon_struct_value_expression] = STATE(2491), - [sym_go_expression] = STATE(2479), - [sym_spawn_expression] = STATE(2479), - [sym_parenthesized_expression] = STATE(2479), - [sym_call_expression] = STATE(2479), - [sym_type_initializer] = STATE(2491), - [sym_function_literal] = STATE(2479), - [sym_reference_expression] = STATE(2542), - [sym_type_reference_expression] = STATE(3541), - [sym_unary_expression] = STATE(2479), - [sym_receive_expression] = STATE(2479), - [sym_binary_expression] = STATE(2479), - [sym_as_type_cast_expression] = STATE(2479), - [sym__max_group] = STATE(2479), - [sym_literal] = STATE(2454), - [sym_map_init_expression] = STATE(2491), - [sym_array_creation] = STATE(2479), - [sym_fixed_array_creation] = STATE(2479), - [sym_selector_expression] = STATE(2479), - [sym_index_expression] = STATE(2479), - [sym_slice_expression] = STATE(2479), - [sym_if_expression] = STATE(2491), - [sym_compile_time_if_expression] = STATE(2491), - [sym_is_expression] = STATE(2479), - [sym_in_expression] = STATE(2479), - [sym_enum_fetch] = STATE(2479), - [sym_match_expression] = STATE(2491), - [sym_select_expression] = STATE(2491), - [sym_lock_expression] = STATE(2491), - [sym_unsafe_expression] = STATE(2491), - [sym_sql_expression] = STATE(2491), - [sym_c_string_literal] = STATE(2469), - [sym_raw_string_literal] = STATE(2469), - [sym_interpreted_string_literal] = STATE(2469), - [sym_mutability_modifiers] = STATE(640), - [sym_plain_type] = STATE(4255), - [sym__plain_type_without_special] = STATE(2302), - [sym_anon_struct_type] = STATE(2303), - [sym_multi_return_type] = STATE(2302), - [sym_result_type] = STATE(2302), - [sym_option_type] = STATE(2302), - [sym_qualified_type] = STATE(3541), - [sym_fixed_array_type] = STATE(2303), - [sym_array_type] = STATE(2303), - [sym_pointer_type] = STATE(2303), - [sym_wrong_pointer_type] = STATE(2303), - [sym_map_type] = STATE(2303), - [sym_channel_type] = STATE(2303), - [sym_shared_type] = STATE(2303), - [sym_thread_type] = STATE(2303), - [sym_atomic_type] = STATE(2303), - [sym_generic_type] = STATE(2303), - [sym_function_type] = STATE(2303), - [sym_identifier] = ACTIONS(1695), + [sym__expression] = STATE(2390), + [sym__expression_without_blocks] = STATE(2468), + [sym__expression_with_blocks] = STATE(2468), + [sym_inc_expression] = STATE(2469), + [sym_dec_expression] = STATE(2469), + [sym_or_block_expression] = STATE(2469), + [sym_option_propagation_expression] = STATE(2469), + [sym_result_propagation_expression] = STATE(2469), + [sym_anon_struct_value_expression] = STATE(2470), + [sym_go_expression] = STATE(2469), + [sym_spawn_expression] = STATE(2469), + [sym_parenthesized_expression] = STATE(2469), + [sym_call_expression] = STATE(2469), + [sym_type_initializer] = STATE(2470), + [sym_function_literal] = STATE(2469), + [sym_reference_expression] = STATE(2487), + [sym_type_reference_expression] = STATE(3460), + [sym_unary_expression] = STATE(2469), + [sym_receive_expression] = STATE(2469), + [sym_binary_expression] = STATE(2469), + [sym_as_type_cast_expression] = STATE(2469), + [sym__max_group] = STATE(2469), + [sym_literal] = STATE(2465), + [sym_map_init_expression] = STATE(2470), + [sym_array_creation] = STATE(2469), + [sym_fixed_array_creation] = STATE(2469), + [sym_selector_expression] = STATE(2469), + [sym_index_expression] = STATE(2469), + [sym_slice_expression] = STATE(2469), + [sym_if_expression] = STATE(2470), + [sym_compile_time_if_expression] = STATE(2470), + [sym_is_expression] = STATE(2469), + [sym_in_expression] = STATE(2469), + [sym_enum_fetch] = STATE(2469), + [sym_match_expression] = STATE(2470), + [sym_select_expression] = STATE(2470), + [sym_lock_expression] = STATE(2470), + [sym_unsafe_expression] = STATE(2470), + [sym_sql_expression] = STATE(2470), + [sym_c_string_literal] = STATE(2464), + [sym_raw_string_literal] = STATE(2464), + [sym_interpreted_string_literal] = STATE(2464), + [sym_mutability_modifiers] = STATE(561), + [sym_plain_type] = STATE(4038), + [sym__plain_type_without_special] = STATE(2360), + [sym_anon_struct_type] = STATE(2362), + [sym_multi_return_type] = STATE(2360), + [sym_result_type] = STATE(2360), + [sym_option_type] = STATE(2360), + [sym_qualified_type] = STATE(3460), + [sym_fixed_array_type] = STATE(2362), + [sym_array_type] = STATE(2362), + [sym_pointer_type] = STATE(2362), + [sym_wrong_pointer_type] = STATE(2362), + [sym_map_type] = STATE(2362), + [sym_channel_type] = STATE(2362), + [sym_shared_type] = STATE(2362), + [sym_thread_type] = STATE(2362), + [sym_atomic_type] = STATE(2362), + [sym_generic_type] = STATE(2362), + [sym_function_type] = STATE(2362), + [sym_identifier] = ACTIONS(1691), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1697), - [anon_sym_LBRACE] = ACTIONS(2697), - [anon_sym_LPAREN] = ACTIONS(2699), - [anon_sym_fn] = ACTIONS(1703), - [anon_sym_PLUS] = ACTIONS(3380), - [anon_sym_DASH] = ACTIONS(3380), - [anon_sym_STAR] = ACTIONS(3382), - [anon_sym_struct] = ACTIONS(1709), + [anon_sym_DOT] = ACTIONS(1693), + [anon_sym_LBRACE] = ACTIONS(2151), + [anon_sym_LPAREN] = ACTIONS(2153), + [anon_sym_fn] = ACTIONS(1699), + [anon_sym_PLUS] = ACTIONS(3386), + [anon_sym_DASH] = ACTIONS(3386), + [anon_sym_STAR] = ACTIONS(3388), + [anon_sym_struct] = ACTIONS(1705), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(3384), - [anon_sym_go] = ACTIONS(3386), - [anon_sym_spawn] = ACTIONS(3388), - [anon_sym_json_DOTdecode] = ACTIONS(2707), - [anon_sym_LBRACK2] = ACTIONS(2709), - [anon_sym_TILDE] = ACTIONS(3380), - [anon_sym_CARET] = ACTIONS(3380), - [anon_sym_AMP] = ACTIONS(3390), - [anon_sym_LT_DASH] = ACTIONS(3392), - [sym_none] = ACTIONS(1725), - [sym_true] = ACTIONS(1725), - [sym_false] = ACTIONS(1725), - [sym_nil] = ACTIONS(1725), - [anon_sym_if] = ACTIONS(1727), - [anon_sym_DOLLARif] = ACTIONS(1729), - [anon_sym_match] = ACTIONS(1731), - [anon_sym_select] = ACTIONS(3394), - [anon_sym_lock] = ACTIONS(3396), - [anon_sym_rlock] = ACTIONS(3396), - [anon_sym_unsafe] = ACTIONS(1737), - [anon_sym_sql] = ACTIONS(1739), - [sym_int_literal] = ACTIONS(1725), - [sym_float_literal] = ACTIONS(2715), - [sym_rune_literal] = ACTIONS(2715), - [sym_pseudo_compile_time_identifier] = ACTIONS(1741), + [anon_sym_BANG] = ACTIONS(3390), + [anon_sym_go] = ACTIONS(3392), + [anon_sym_spawn] = ACTIONS(3394), + [anon_sym_json_DOTdecode] = ACTIONS(2161), + [anon_sym_LBRACK2] = ACTIONS(2163), + [anon_sym_TILDE] = ACTIONS(3386), + [anon_sym_CARET] = ACTIONS(3386), + [anon_sym_AMP] = ACTIONS(3396), + [anon_sym_LT_DASH] = ACTIONS(3398), + [sym_none] = ACTIONS(1721), + [sym_true] = ACTIONS(1721), + [sym_false] = ACTIONS(1721), + [sym_nil] = ACTIONS(1721), + [anon_sym_if] = ACTIONS(1723), + [anon_sym_DOLLARif] = ACTIONS(1725), + [anon_sym_match] = ACTIONS(1727), + [anon_sym_select] = ACTIONS(3400), + [anon_sym_lock] = ACTIONS(3402), + [anon_sym_rlock] = ACTIONS(3402), + [anon_sym_unsafe] = ACTIONS(1733), + [anon_sym_sql] = ACTIONS(1735), + [sym_int_literal] = ACTIONS(1721), + [sym_float_literal] = ACTIONS(2169), + [sym_rune_literal] = ACTIONS(2169), + [sym_pseudo_compile_time_identifier] = ACTIONS(1737), [anon_sym_shared] = ACTIONS(83), [anon_sym_map_LBRACK] = ACTIONS(85), [anon_sym_chan] = ACTIONS(87), [anon_sym_thread] = ACTIONS(89), [anon_sym_atomic] = ACTIONS(91), - [sym___double_quote] = ACTIONS(2717), - [sym___single_quote] = ACTIONS(2719), - [sym___c_double_quote] = ACTIONS(2721), - [sym___c_single_quote] = ACTIONS(2723), - [sym___r_double_quote] = ACTIONS(2725), - [sym___r_single_quote] = ACTIONS(2727), + [sym___double_quote] = ACTIONS(2171), + [sym___single_quote] = ACTIONS(2173), + [sym___c_double_quote] = ACTIONS(2175), + [sym___c_single_quote] = ACTIONS(2177), + [sym___r_double_quote] = ACTIONS(2179), + [sym___r_single_quote] = ACTIONS(2181), }, [684] = { [sym_line_comment] = STATE(684), [sym_block_comment] = STATE(684), - [sym__expression] = STATE(2279), - [sym__expression_without_blocks] = STATE(2489), - [sym__expression_with_blocks] = STATE(2489), - [sym_inc_expression] = STATE(2479), - [sym_dec_expression] = STATE(2479), - [sym_or_block_expression] = STATE(2479), - [sym_option_propagation_expression] = STATE(2479), - [sym_result_propagation_expression] = STATE(2479), - [sym_anon_struct_value_expression] = STATE(2491), - [sym_go_expression] = STATE(2479), - [sym_spawn_expression] = STATE(2479), - [sym_parenthesized_expression] = STATE(2479), - [sym_call_expression] = STATE(2479), - [sym_type_initializer] = STATE(2491), - [sym_function_literal] = STATE(2479), - [sym_reference_expression] = STATE(2542), - [sym_type_reference_expression] = STATE(3541), - [sym_unary_expression] = STATE(2479), - [sym_receive_expression] = STATE(2479), - [sym_binary_expression] = STATE(2479), - [sym_as_type_cast_expression] = STATE(2479), - [sym__max_group] = STATE(2479), - [sym_literal] = STATE(2454), - [sym_map_init_expression] = STATE(2491), - [sym_array_creation] = STATE(2479), - [sym_fixed_array_creation] = STATE(2479), - [sym_selector_expression] = STATE(2479), - [sym_index_expression] = STATE(2479), - [sym_slice_expression] = STATE(2479), - [sym_if_expression] = STATE(2491), - [sym_compile_time_if_expression] = STATE(2491), - [sym_is_expression] = STATE(2479), - [sym_in_expression] = STATE(2479), - [sym_enum_fetch] = STATE(2479), - [sym_match_expression] = STATE(2491), - [sym_select_expression] = STATE(2491), - [sym_lock_expression] = STATE(2491), - [sym_unsafe_expression] = STATE(2491), - [sym_sql_expression] = STATE(2491), - [sym_c_string_literal] = STATE(2469), - [sym_raw_string_literal] = STATE(2469), - [sym_interpreted_string_literal] = STATE(2469), - [sym_mutability_modifiers] = STATE(640), - [sym_plain_type] = STATE(4312), - [sym__plain_type_without_special] = STATE(2302), - [sym_anon_struct_type] = STATE(2303), - [sym_multi_return_type] = STATE(2302), - [sym_result_type] = STATE(2302), - [sym_option_type] = STATE(2302), - [sym_qualified_type] = STATE(3541), - [sym_fixed_array_type] = STATE(2303), - [sym_array_type] = STATE(2303), - [sym_pointer_type] = STATE(2303), - [sym_wrong_pointer_type] = STATE(2303), - [sym_map_type] = STATE(2303), - [sym_channel_type] = STATE(2303), - [sym_shared_type] = STATE(2303), - [sym_thread_type] = STATE(2303), - [sym_atomic_type] = STATE(2303), - [sym_generic_type] = STATE(2303), - [sym_function_type] = STATE(2303), - [sym_identifier] = ACTIONS(1695), + [sym__expression] = STATE(2286), + [sym__expression_without_blocks] = STATE(2468), + [sym__expression_with_blocks] = STATE(2468), + [sym_inc_expression] = STATE(2469), + [sym_dec_expression] = STATE(2469), + [sym_or_block_expression] = STATE(2469), + [sym_option_propagation_expression] = STATE(2469), + [sym_result_propagation_expression] = STATE(2469), + [sym_anon_struct_value_expression] = STATE(2470), + [sym_go_expression] = STATE(2469), + [sym_spawn_expression] = STATE(2469), + [sym_parenthesized_expression] = STATE(2469), + [sym_call_expression] = STATE(2469), + [sym_type_initializer] = STATE(2470), + [sym_function_literal] = STATE(2469), + [sym_reference_expression] = STATE(2487), + [sym_type_reference_expression] = STATE(3460), + [sym_unary_expression] = STATE(2469), + [sym_receive_expression] = STATE(2469), + [sym_binary_expression] = STATE(2469), + [sym_as_type_cast_expression] = STATE(2469), + [sym__max_group] = STATE(2469), + [sym_literal] = STATE(2465), + [sym_map_init_expression] = STATE(2470), + [sym_array_creation] = STATE(2469), + [sym_fixed_array_creation] = STATE(2469), + [sym_selector_expression] = STATE(2469), + [sym_index_expression] = STATE(2469), + [sym_slice_expression] = STATE(2469), + [sym_if_expression] = STATE(2470), + [sym_compile_time_if_expression] = STATE(2470), + [sym_is_expression] = STATE(2469), + [sym_in_expression] = STATE(2469), + [sym_enum_fetch] = STATE(2469), + [sym_match_expression] = STATE(2470), + [sym_select_expression] = STATE(2470), + [sym_lock_expression] = STATE(2470), + [sym_unsafe_expression] = STATE(2470), + [sym_sql_expression] = STATE(2470), + [sym_c_string_literal] = STATE(2464), + [sym_raw_string_literal] = STATE(2464), + [sym_interpreted_string_literal] = STATE(2464), + [sym_mutability_modifiers] = STATE(561), + [sym_plain_type] = STATE(4058), + [sym__plain_type_without_special] = STATE(2360), + [sym_anon_struct_type] = STATE(2362), + [sym_multi_return_type] = STATE(2360), + [sym_result_type] = STATE(2360), + [sym_option_type] = STATE(2360), + [sym_qualified_type] = STATE(3460), + [sym_fixed_array_type] = STATE(2362), + [sym_array_type] = STATE(2362), + [sym_pointer_type] = STATE(2362), + [sym_wrong_pointer_type] = STATE(2362), + [sym_map_type] = STATE(2362), + [sym_channel_type] = STATE(2362), + [sym_shared_type] = STATE(2362), + [sym_thread_type] = STATE(2362), + [sym_atomic_type] = STATE(2362), + [sym_generic_type] = STATE(2362), + [sym_function_type] = STATE(2362), + [sym_identifier] = ACTIONS(1691), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1697), - [anon_sym_LBRACE] = ACTIONS(2697), - [anon_sym_LPAREN] = ACTIONS(2699), - [anon_sym_fn] = ACTIONS(1703), - [anon_sym_PLUS] = ACTIONS(3380), - [anon_sym_DASH] = ACTIONS(3380), - [anon_sym_STAR] = ACTIONS(3382), - [anon_sym_struct] = ACTIONS(1709), + [anon_sym_DOT] = ACTIONS(1693), + [anon_sym_LBRACE] = ACTIONS(2151), + [anon_sym_LPAREN] = ACTIONS(2153), + [anon_sym_fn] = ACTIONS(1699), + [anon_sym_PLUS] = ACTIONS(3386), + [anon_sym_DASH] = ACTIONS(3386), + [anon_sym_STAR] = ACTIONS(3388), + [anon_sym_struct] = ACTIONS(1705), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(3384), - [anon_sym_go] = ACTIONS(3386), - [anon_sym_spawn] = ACTIONS(3388), - [anon_sym_json_DOTdecode] = ACTIONS(2707), - [anon_sym_LBRACK2] = ACTIONS(2709), - [anon_sym_TILDE] = ACTIONS(3380), - [anon_sym_CARET] = ACTIONS(3380), - [anon_sym_AMP] = ACTIONS(3390), - [anon_sym_LT_DASH] = ACTIONS(3392), - [sym_none] = ACTIONS(1725), - [sym_true] = ACTIONS(1725), - [sym_false] = ACTIONS(1725), - [sym_nil] = ACTIONS(1725), - [anon_sym_if] = ACTIONS(1727), - [anon_sym_DOLLARif] = ACTIONS(1729), - [anon_sym_match] = ACTIONS(1731), - [anon_sym_select] = ACTIONS(3394), - [anon_sym_lock] = ACTIONS(3396), - [anon_sym_rlock] = ACTIONS(3396), - [anon_sym_unsafe] = ACTIONS(1737), - [anon_sym_sql] = ACTIONS(1739), - [sym_int_literal] = ACTIONS(1725), - [sym_float_literal] = ACTIONS(2715), - [sym_rune_literal] = ACTIONS(2715), - [sym_pseudo_compile_time_identifier] = ACTIONS(1741), + [anon_sym_BANG] = ACTIONS(3390), + [anon_sym_go] = ACTIONS(3392), + [anon_sym_spawn] = ACTIONS(3394), + [anon_sym_json_DOTdecode] = ACTIONS(2161), + [anon_sym_LBRACK2] = ACTIONS(2163), + [anon_sym_TILDE] = ACTIONS(3386), + [anon_sym_CARET] = ACTIONS(3386), + [anon_sym_AMP] = ACTIONS(3396), + [anon_sym_LT_DASH] = ACTIONS(3398), + [sym_none] = ACTIONS(1721), + [sym_true] = ACTIONS(1721), + [sym_false] = ACTIONS(1721), + [sym_nil] = ACTIONS(1721), + [anon_sym_if] = ACTIONS(1723), + [anon_sym_DOLLARif] = ACTIONS(1725), + [anon_sym_match] = ACTIONS(1727), + [anon_sym_select] = ACTIONS(3400), + [anon_sym_lock] = ACTIONS(3402), + [anon_sym_rlock] = ACTIONS(3402), + [anon_sym_unsafe] = ACTIONS(1733), + [anon_sym_sql] = ACTIONS(1735), + [sym_int_literal] = ACTIONS(1721), + [sym_float_literal] = ACTIONS(2169), + [sym_rune_literal] = ACTIONS(2169), + [sym_pseudo_compile_time_identifier] = ACTIONS(1737), [anon_sym_shared] = ACTIONS(83), [anon_sym_map_LBRACK] = ACTIONS(85), [anon_sym_chan] = ACTIONS(87), [anon_sym_thread] = ACTIONS(89), [anon_sym_atomic] = ACTIONS(91), - [sym___double_quote] = ACTIONS(2717), - [sym___single_quote] = ACTIONS(2719), - [sym___c_double_quote] = ACTIONS(2721), - [sym___c_single_quote] = ACTIONS(2723), - [sym___r_double_quote] = ACTIONS(2725), - [sym___r_single_quote] = ACTIONS(2727), + [sym___double_quote] = ACTIONS(2171), + [sym___single_quote] = ACTIONS(2173), + [sym___c_double_quote] = ACTIONS(2175), + [sym___c_single_quote] = ACTIONS(2177), + [sym___r_double_quote] = ACTIONS(2179), + [sym___r_single_quote] = ACTIONS(2181), }, [685] = { [sym_line_comment] = STATE(685), [sym_block_comment] = STATE(685), - [sym__expression] = STATE(2621), - [sym__expression_without_blocks] = STATE(2300), - [sym__expression_with_blocks] = STATE(2300), - [sym_inc_expression] = STATE(2307), - [sym_dec_expression] = STATE(2307), - [sym_or_block_expression] = STATE(2307), - [sym_option_propagation_expression] = STATE(2307), - [sym_result_propagation_expression] = STATE(2307), - [sym_anon_struct_value_expression] = STATE(2380), - [sym_go_expression] = STATE(2307), - [sym_spawn_expression] = STATE(2307), - [sym_parenthesized_expression] = STATE(2307), - [sym_call_expression] = STATE(2307), - [sym_type_initializer] = STATE(2380), - [sym_function_literal] = STATE(2307), - [sym_reference_expression] = STATE(2311), - [sym_type_reference_expression] = STATE(3541), - [sym_unary_expression] = STATE(2307), - [sym_receive_expression] = STATE(2307), - [sym_binary_expression] = STATE(2307), - [sym_as_type_cast_expression] = STATE(2307), - [sym__max_group] = STATE(2307), - [sym_literal] = STATE(2292), - [sym_map_init_expression] = STATE(2380), - [sym_array_creation] = STATE(2307), - [sym_fixed_array_creation] = STATE(2307), - [sym_selector_expression] = STATE(2307), - [sym_index_expression] = STATE(2307), - [sym_slice_expression] = STATE(2307), - [sym_if_expression] = STATE(2380), - [sym_compile_time_if_expression] = STATE(2380), - [sym_is_expression] = STATE(2307), - [sym_in_expression] = STATE(2307), - [sym_enum_fetch] = STATE(2307), - [sym_match_expression] = STATE(2380), - [sym_select_expression] = STATE(2380), - [sym_lock_expression] = STATE(2380), - [sym_unsafe_expression] = STATE(2380), - [sym_sql_expression] = STATE(2380), - [sym_c_string_literal] = STATE(2308), - [sym_raw_string_literal] = STATE(2308), - [sym_interpreted_string_literal] = STATE(2308), - [sym_mutability_modifiers] = STATE(939), - [sym_plain_type] = STATE(4297), - [sym__plain_type_without_special] = STATE(2302), - [sym_anon_struct_type] = STATE(2303), - [sym_multi_return_type] = STATE(2302), - [sym_result_type] = STATE(2302), - [sym_option_type] = STATE(2302), - [sym_qualified_type] = STATE(3541), - [sym_fixed_array_type] = STATE(2303), - [sym_array_type] = STATE(2303), - [sym_pointer_type] = STATE(2303), - [sym_wrong_pointer_type] = STATE(2303), - [sym_map_type] = STATE(2303), - [sym_channel_type] = STATE(2303), - [sym_shared_type] = STATE(2303), - [sym_thread_type] = STATE(2303), - [sym_atomic_type] = STATE(2303), - [sym_generic_type] = STATE(2303), - [sym_function_type] = STATE(2303), - [sym_identifier] = ACTIONS(2189), + [sym__expression] = STATE(2285), + [sym__expression_without_blocks] = STATE(2468), + [sym__expression_with_blocks] = STATE(2468), + [sym_inc_expression] = STATE(2469), + [sym_dec_expression] = STATE(2469), + [sym_or_block_expression] = STATE(2469), + [sym_option_propagation_expression] = STATE(2469), + [sym_result_propagation_expression] = STATE(2469), + [sym_anon_struct_value_expression] = STATE(2470), + [sym_go_expression] = STATE(2469), + [sym_spawn_expression] = STATE(2469), + [sym_parenthesized_expression] = STATE(2469), + [sym_call_expression] = STATE(2469), + [sym_type_initializer] = STATE(2470), + [sym_function_literal] = STATE(2469), + [sym_reference_expression] = STATE(2487), + [sym_type_reference_expression] = STATE(3460), + [sym_unary_expression] = STATE(2469), + [sym_receive_expression] = STATE(2469), + [sym_binary_expression] = STATE(2469), + [sym_as_type_cast_expression] = STATE(2469), + [sym__max_group] = STATE(2469), + [sym_literal] = STATE(2465), + [sym_map_init_expression] = STATE(2470), + [sym_array_creation] = STATE(2469), + [sym_fixed_array_creation] = STATE(2469), + [sym_selector_expression] = STATE(2469), + [sym_index_expression] = STATE(2469), + [sym_slice_expression] = STATE(2469), + [sym_if_expression] = STATE(2470), + [sym_compile_time_if_expression] = STATE(2470), + [sym_is_expression] = STATE(2469), + [sym_in_expression] = STATE(2469), + [sym_enum_fetch] = STATE(2469), + [sym_match_expression] = STATE(2470), + [sym_select_expression] = STATE(2470), + [sym_lock_expression] = STATE(2470), + [sym_unsafe_expression] = STATE(2470), + [sym_sql_expression] = STATE(2470), + [sym_c_string_literal] = STATE(2464), + [sym_raw_string_literal] = STATE(2464), + [sym_interpreted_string_literal] = STATE(2464), + [sym_mutability_modifiers] = STATE(561), + [sym_plain_type] = STATE(4038), + [sym__plain_type_without_special] = STATE(2360), + [sym_anon_struct_type] = STATE(2362), + [sym_multi_return_type] = STATE(2360), + [sym_result_type] = STATE(2360), + [sym_option_type] = STATE(2360), + [sym_qualified_type] = STATE(3460), + [sym_fixed_array_type] = STATE(2362), + [sym_array_type] = STATE(2362), + [sym_pointer_type] = STATE(2362), + [sym_wrong_pointer_type] = STATE(2362), + [sym_map_type] = STATE(2362), + [sym_channel_type] = STATE(2362), + [sym_shared_type] = STATE(2362), + [sym_thread_type] = STATE(2362), + [sym_atomic_type] = STATE(2362), + [sym_generic_type] = STATE(2362), + [sym_function_type] = STATE(2362), + [sym_identifier] = ACTIONS(1691), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1428), - [anon_sym_LBRACE] = ACTIONS(1430), - [anon_sym_LPAREN] = ACTIONS(1432), - [anon_sym_fn] = ACTIONS(1434), - [anon_sym_PLUS] = ACTIONS(2491), - [anon_sym_DASH] = ACTIONS(2491), - [anon_sym_STAR] = ACTIONS(3354), - [anon_sym_struct] = ACTIONS(1440), + [anon_sym_DOT] = ACTIONS(1693), + [anon_sym_LBRACE] = ACTIONS(2151), + [anon_sym_LPAREN] = ACTIONS(2153), + [anon_sym_fn] = ACTIONS(1699), + [anon_sym_PLUS] = ACTIONS(3386), + [anon_sym_DASH] = ACTIONS(3386), + [anon_sym_STAR] = ACTIONS(3388), + [anon_sym_struct] = ACTIONS(1705), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(3356), - [anon_sym_go] = ACTIONS(2497), - [anon_sym_spawn] = ACTIONS(2499), - [anon_sym_json_DOTdecode] = ACTIONS(1448), - [anon_sym_LBRACK2] = ACTIONS(1450), - [anon_sym_TILDE] = ACTIONS(2491), - [anon_sym_CARET] = ACTIONS(2491), - [anon_sym_AMP] = ACTIONS(3358), - [anon_sym_LT_DASH] = ACTIONS(2503), - [sym_none] = ACTIONS(1456), - [sym_true] = ACTIONS(1456), - [sym_false] = ACTIONS(1456), - [sym_nil] = ACTIONS(1456), - [anon_sym_if] = ACTIONS(1827), - [anon_sym_DOLLARif] = ACTIONS(1460), - [anon_sym_match] = ACTIONS(1462), - [anon_sym_select] = ACTIONS(1464), - [anon_sym_lock] = ACTIONS(1466), - [anon_sym_rlock] = ACTIONS(1466), - [anon_sym_unsafe] = ACTIONS(1833), - [anon_sym_sql] = ACTIONS(1470), - [sym_int_literal] = ACTIONS(1456), - [sym_float_literal] = ACTIONS(1472), - [sym_rune_literal] = ACTIONS(1472), - [sym_pseudo_compile_time_identifier] = ACTIONS(1474), + [anon_sym_BANG] = ACTIONS(3390), + [anon_sym_go] = ACTIONS(3392), + [anon_sym_spawn] = ACTIONS(3394), + [anon_sym_json_DOTdecode] = ACTIONS(2161), + [anon_sym_LBRACK2] = ACTIONS(2163), + [anon_sym_TILDE] = ACTIONS(3386), + [anon_sym_CARET] = ACTIONS(3386), + [anon_sym_AMP] = ACTIONS(3396), + [anon_sym_LT_DASH] = ACTIONS(3398), + [sym_none] = ACTIONS(1721), + [sym_true] = ACTIONS(1721), + [sym_false] = ACTIONS(1721), + [sym_nil] = ACTIONS(1721), + [anon_sym_if] = ACTIONS(1723), + [anon_sym_DOLLARif] = ACTIONS(1725), + [anon_sym_match] = ACTIONS(1727), + [anon_sym_select] = ACTIONS(3400), + [anon_sym_lock] = ACTIONS(3402), + [anon_sym_rlock] = ACTIONS(3402), + [anon_sym_unsafe] = ACTIONS(1733), + [anon_sym_sql] = ACTIONS(1735), + [sym_int_literal] = ACTIONS(1721), + [sym_float_literal] = ACTIONS(2169), + [sym_rune_literal] = ACTIONS(2169), + [sym_pseudo_compile_time_identifier] = ACTIONS(1737), [anon_sym_shared] = ACTIONS(83), [anon_sym_map_LBRACK] = ACTIONS(85), [anon_sym_chan] = ACTIONS(87), [anon_sym_thread] = ACTIONS(89), [anon_sym_atomic] = ACTIONS(91), - [sym___double_quote] = ACTIONS(1478), - [sym___single_quote] = ACTIONS(1480), - [sym___c_double_quote] = ACTIONS(1482), - [sym___c_single_quote] = ACTIONS(1484), - [sym___r_double_quote] = ACTIONS(1486), - [sym___r_single_quote] = ACTIONS(1488), + [sym___double_quote] = ACTIONS(2171), + [sym___single_quote] = ACTIONS(2173), + [sym___c_double_quote] = ACTIONS(2175), + [sym___c_single_quote] = ACTIONS(2177), + [sym___r_double_quote] = ACTIONS(2179), + [sym___r_single_quote] = ACTIONS(2181), }, [686] = { [sym_line_comment] = STATE(686), [sym_block_comment] = STATE(686), - [sym__expression] = STATE(2257), - [sym__expression_without_blocks] = STATE(2226), - [sym__expression_with_blocks] = STATE(2226), - [sym_inc_expression] = STATE(2247), - [sym_dec_expression] = STATE(2247), - [sym_or_block_expression] = STATE(2247), - [sym_option_propagation_expression] = STATE(2247), - [sym_result_propagation_expression] = STATE(2247), - [sym_anon_struct_value_expression] = STATE(2248), - [sym_go_expression] = STATE(2247), - [sym_spawn_expression] = STATE(2247), - [sym_parenthesized_expression] = STATE(2247), - [sym_call_expression] = STATE(2247), - [sym_type_initializer] = STATE(2248), - [sym_function_literal] = STATE(2247), - [sym_reference_expression] = STATE(2252), - [sym_type_reference_expression] = STATE(3541), - [sym_unary_expression] = STATE(2247), - [sym_receive_expression] = STATE(2247), - [sym_binary_expression] = STATE(2247), - [sym_as_type_cast_expression] = STATE(2247), - [sym__max_group] = STATE(2247), - [sym_literal] = STATE(2155), - [sym_map_init_expression] = STATE(2248), - [sym_array_creation] = STATE(2247), - [sym_fixed_array_creation] = STATE(2247), - [sym_selector_expression] = STATE(2247), - [sym_index_expression] = STATE(2247), - [sym_slice_expression] = STATE(2247), - [sym_if_expression] = STATE(2248), - [sym_compile_time_if_expression] = STATE(2248), - [sym_is_expression] = STATE(2247), - [sym_in_expression] = STATE(2247), - [sym_enum_fetch] = STATE(2247), - [sym_match_expression] = STATE(2248), - [sym_select_expression] = STATE(2248), - [sym_lock_expression] = STATE(2248), - [sym_unsafe_expression] = STATE(2248), - [sym_sql_expression] = STATE(2248), - [sym_c_string_literal] = STATE(2153), - [sym_raw_string_literal] = STATE(2153), - [sym_interpreted_string_literal] = STATE(2153), - [sym_mutability_modifiers] = STATE(631), - [sym_plain_type] = STATE(4146), - [sym__plain_type_without_special] = STATE(2302), - [sym_anon_struct_type] = STATE(2303), - [sym_multi_return_type] = STATE(2302), - [sym_result_type] = STATE(2302), - [sym_option_type] = STATE(2302), - [sym_qualified_type] = STATE(3541), - [sym_fixed_array_type] = STATE(2303), - [sym_array_type] = STATE(2303), - [sym_pointer_type] = STATE(2303), - [sym_wrong_pointer_type] = STATE(2303), - [sym_map_type] = STATE(2303), - [sym_channel_type] = STATE(2303), - [sym_shared_type] = STATE(2303), - [sym_thread_type] = STATE(2303), - [sym_atomic_type] = STATE(2303), - [sym_generic_type] = STATE(2303), - [sym_function_type] = STATE(2303), - [sym_identifier] = ACTIONS(3286), + [sym__expression] = STATE(2122), + [sym__expression_without_blocks] = STATE(2162), + [sym__expression_with_blocks] = STATE(2162), + [sym_inc_expression] = STATE(2161), + [sym_dec_expression] = STATE(2161), + [sym_or_block_expression] = STATE(2161), + [sym_option_propagation_expression] = STATE(2161), + [sym_result_propagation_expression] = STATE(2161), + [sym_anon_struct_value_expression] = STATE(2160), + [sym_go_expression] = STATE(2161), + [sym_spawn_expression] = STATE(2161), + [sym_parenthesized_expression] = STATE(2161), + [sym_call_expression] = STATE(2161), + [sym_type_initializer] = STATE(2160), + [sym_function_literal] = STATE(2161), + [sym_reference_expression] = STATE(2159), + [sym_type_reference_expression] = STATE(3460), + [sym_unary_expression] = STATE(2161), + [sym_receive_expression] = STATE(2161), + [sym_binary_expression] = STATE(2161), + [sym_as_type_cast_expression] = STATE(2161), + [sym__max_group] = STATE(2161), + [sym_literal] = STATE(2164), + [sym_map_init_expression] = STATE(2160), + [sym_array_creation] = STATE(2161), + [sym_fixed_array_creation] = STATE(2161), + [sym_selector_expression] = STATE(2161), + [sym_index_expression] = STATE(2161), + [sym_slice_expression] = STATE(2161), + [sym_if_expression] = STATE(2160), + [sym_compile_time_if_expression] = STATE(2160), + [sym_is_expression] = STATE(2161), + [sym_in_expression] = STATE(2161), + [sym_enum_fetch] = STATE(2161), + [sym_match_expression] = STATE(2160), + [sym_select_expression] = STATE(2160), + [sym_lock_expression] = STATE(2160), + [sym_unsafe_expression] = STATE(2160), + [sym_sql_expression] = STATE(2160), + [sym_c_string_literal] = STATE(2166), + [sym_raw_string_literal] = STATE(2166), + [sym_interpreted_string_literal] = STATE(2166), + [sym_mutability_modifiers] = STATE(575), + [sym_plain_type] = STATE(4173), + [sym__plain_type_without_special] = STATE(2360), + [sym_anon_struct_type] = STATE(2362), + [sym_multi_return_type] = STATE(2360), + [sym_result_type] = STATE(2360), + [sym_option_type] = STATE(2360), + [sym_qualified_type] = STATE(3460), + [sym_fixed_array_type] = STATE(2362), + [sym_array_type] = STATE(2362), + [sym_pointer_type] = STATE(2362), + [sym_wrong_pointer_type] = STATE(2362), + [sym_map_type] = STATE(2362), + [sym_channel_type] = STATE(2362), + [sym_shared_type] = STATE(2362), + [sym_thread_type] = STATE(2362), + [sym_atomic_type] = STATE(2362), + [sym_generic_type] = STATE(2362), + [sym_function_type] = STATE(2362), + [sym_identifier] = ACTIONS(3292), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(3288), - [anon_sym_LBRACE] = ACTIONS(3290), - [anon_sym_LPAREN] = ACTIONS(3292), - [anon_sym_fn] = ACTIONS(3294), - [anon_sym_PLUS] = ACTIONS(3296), - [anon_sym_DASH] = ACTIONS(3296), - [anon_sym_STAR] = ACTIONS(3298), - [anon_sym_struct] = ACTIONS(3300), + [anon_sym_DOT] = ACTIONS(3294), + [anon_sym_LBRACE] = ACTIONS(3296), + [anon_sym_LPAREN] = ACTIONS(3298), + [anon_sym_fn] = ACTIONS(3300), + [anon_sym_PLUS] = ACTIONS(3404), + [anon_sym_DASH] = ACTIONS(3404), + [anon_sym_STAR] = ACTIONS(3406), + [anon_sym_struct] = ACTIONS(3306), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(3302), - [anon_sym_go] = ACTIONS(3304), - [anon_sym_spawn] = ACTIONS(3306), - [anon_sym_json_DOTdecode] = ACTIONS(3308), - [anon_sym_LBRACK2] = ACTIONS(3310), - [anon_sym_TILDE] = ACTIONS(3296), - [anon_sym_CARET] = ACTIONS(3296), - [anon_sym_AMP] = ACTIONS(3312), - [anon_sym_LT_DASH] = ACTIONS(3314), - [sym_none] = ACTIONS(3316), - [sym_true] = ACTIONS(3316), - [sym_false] = ACTIONS(3316), - [sym_nil] = ACTIONS(3316), - [anon_sym_if] = ACTIONS(3318), - [anon_sym_DOLLARif] = ACTIONS(3320), - [anon_sym_match] = ACTIONS(3322), - [anon_sym_select] = ACTIONS(3324), - [anon_sym_lock] = ACTIONS(3326), - [anon_sym_rlock] = ACTIONS(3326), - [anon_sym_unsafe] = ACTIONS(3328), - [anon_sym_sql] = ACTIONS(3330), - [sym_int_literal] = ACTIONS(3316), - [sym_float_literal] = ACTIONS(3332), - [sym_rune_literal] = ACTIONS(3332), - [sym_pseudo_compile_time_identifier] = ACTIONS(3334), + [anon_sym_BANG] = ACTIONS(3408), + [anon_sym_go] = ACTIONS(3410), + [anon_sym_spawn] = ACTIONS(3412), + [anon_sym_json_DOTdecode] = ACTIONS(3314), + [anon_sym_LBRACK2] = ACTIONS(3316), + [anon_sym_TILDE] = ACTIONS(3404), + [anon_sym_CARET] = ACTIONS(3404), + [anon_sym_AMP] = ACTIONS(3414), + [anon_sym_LT_DASH] = ACTIONS(3416), + [sym_none] = ACTIONS(3322), + [sym_true] = ACTIONS(3322), + [sym_false] = ACTIONS(3322), + [sym_nil] = ACTIONS(3322), + [anon_sym_if] = ACTIONS(3324), + [anon_sym_DOLLARif] = ACTIONS(3326), + [anon_sym_match] = ACTIONS(3328), + [anon_sym_select] = ACTIONS(3418), + [anon_sym_lock] = ACTIONS(3420), + [anon_sym_rlock] = ACTIONS(3420), + [anon_sym_unsafe] = ACTIONS(3334), + [anon_sym_sql] = ACTIONS(3336), + [sym_int_literal] = ACTIONS(3322), + [sym_float_literal] = ACTIONS(3338), + [sym_rune_literal] = ACTIONS(3338), + [sym_pseudo_compile_time_identifier] = ACTIONS(3340), [anon_sym_shared] = ACTIONS(83), [anon_sym_map_LBRACK] = ACTIONS(85), [anon_sym_chan] = ACTIONS(87), [anon_sym_thread] = ACTIONS(89), [anon_sym_atomic] = ACTIONS(91), - [sym___double_quote] = ACTIONS(3336), - [sym___single_quote] = ACTIONS(3338), - [sym___c_double_quote] = ACTIONS(3340), - [sym___c_single_quote] = ACTIONS(3342), - [sym___r_double_quote] = ACTIONS(3344), - [sym___r_single_quote] = ACTIONS(3346), + [sym___double_quote] = ACTIONS(3342), + [sym___single_quote] = ACTIONS(3344), + [sym___c_double_quote] = ACTIONS(3346), + [sym___c_single_quote] = ACTIONS(3348), + [sym___r_double_quote] = ACTIONS(3350), + [sym___r_single_quote] = ACTIONS(3352), }, [687] = { [sym_line_comment] = STATE(687), [sym_block_comment] = STATE(687), - [sym__expression] = STATE(2286), - [sym__expression_without_blocks] = STATE(2489), - [sym__expression_with_blocks] = STATE(2489), - [sym_inc_expression] = STATE(2479), - [sym_dec_expression] = STATE(2479), - [sym_or_block_expression] = STATE(2479), - [sym_option_propagation_expression] = STATE(2479), - [sym_result_propagation_expression] = STATE(2479), - [sym_anon_struct_value_expression] = STATE(2491), - [sym_go_expression] = STATE(2479), - [sym_spawn_expression] = STATE(2479), - [sym_parenthesized_expression] = STATE(2479), - [sym_call_expression] = STATE(2479), - [sym_type_initializer] = STATE(2491), - [sym_function_literal] = STATE(2479), - [sym_reference_expression] = STATE(2542), - [sym_type_reference_expression] = STATE(3541), - [sym_unary_expression] = STATE(2479), - [sym_receive_expression] = STATE(2479), - [sym_binary_expression] = STATE(2479), - [sym_as_type_cast_expression] = STATE(2479), - [sym__max_group] = STATE(2479), - [sym_literal] = STATE(2454), - [sym_map_init_expression] = STATE(2491), - [sym_array_creation] = STATE(2479), - [sym_fixed_array_creation] = STATE(2479), - [sym_selector_expression] = STATE(2479), - [sym_index_expression] = STATE(2479), - [sym_slice_expression] = STATE(2479), - [sym_if_expression] = STATE(2491), - [sym_compile_time_if_expression] = STATE(2491), - [sym_is_expression] = STATE(2479), - [sym_in_expression] = STATE(2479), - [sym_enum_fetch] = STATE(2479), - [sym_match_expression] = STATE(2491), - [sym_select_expression] = STATE(2491), - [sym_lock_expression] = STATE(2491), - [sym_unsafe_expression] = STATE(2491), - [sym_sql_expression] = STATE(2491), - [sym_c_string_literal] = STATE(2469), - [sym_raw_string_literal] = STATE(2469), - [sym_interpreted_string_literal] = STATE(2469), - [sym_mutability_modifiers] = STATE(640), - [sym_plain_type] = STATE(4255), - [sym__plain_type_without_special] = STATE(2302), - [sym_anon_struct_type] = STATE(2303), - [sym_multi_return_type] = STATE(2302), - [sym_result_type] = STATE(2302), - [sym_option_type] = STATE(2302), - [sym_qualified_type] = STATE(3541), - [sym_fixed_array_type] = STATE(2303), - [sym_array_type] = STATE(2303), - [sym_pointer_type] = STATE(2303), - [sym_wrong_pointer_type] = STATE(2303), - [sym_map_type] = STATE(2303), - [sym_channel_type] = STATE(2303), - [sym_shared_type] = STATE(2303), - [sym_thread_type] = STATE(2303), - [sym_atomic_type] = STATE(2303), - [sym_generic_type] = STATE(2303), - [sym_function_type] = STATE(2303), - [sym_identifier] = ACTIONS(1695), + [sym__expression] = STATE(1772), + [sym__expression_without_blocks] = STATE(1953), + [sym__expression_with_blocks] = STATE(1953), + [sym_inc_expression] = STATE(1955), + [sym_dec_expression] = STATE(1955), + [sym_or_block_expression] = STATE(1955), + [sym_option_propagation_expression] = STATE(1955), + [sym_result_propagation_expression] = STATE(1955), + [sym_anon_struct_value_expression] = STATE(1958), + [sym_go_expression] = STATE(1955), + [sym_spawn_expression] = STATE(1955), + [sym_parenthesized_expression] = STATE(1955), + [sym_call_expression] = STATE(1955), + [sym_type_initializer] = STATE(1958), + [sym_function_literal] = STATE(1955), + [sym_reference_expression] = STATE(1956), + [sym_type_reference_expression] = STATE(3460), + [sym_unary_expression] = STATE(1955), + [sym_receive_expression] = STATE(1955), + [sym_binary_expression] = STATE(1955), + [sym_as_type_cast_expression] = STATE(1955), + [sym__max_group] = STATE(1955), + [sym_literal] = STATE(1943), + [sym_map_init_expression] = STATE(1958), + [sym_array_creation] = STATE(1955), + [sym_fixed_array_creation] = STATE(1955), + [sym_selector_expression] = STATE(1955), + [sym_index_expression] = STATE(1955), + [sym_slice_expression] = STATE(1955), + [sym_if_expression] = STATE(1958), + [sym_compile_time_if_expression] = STATE(1958), + [sym_is_expression] = STATE(1955), + [sym_in_expression] = STATE(1955), + [sym_enum_fetch] = STATE(1955), + [sym_match_expression] = STATE(1958), + [sym_select_expression] = STATE(1958), + [sym_lock_expression] = STATE(1958), + [sym_unsafe_expression] = STATE(1958), + [sym_sql_expression] = STATE(1958), + [sym_c_string_literal] = STATE(1942), + [sym_raw_string_literal] = STATE(1942), + [sym_interpreted_string_literal] = STATE(1942), + [sym_mutability_modifiers] = STATE(601), + [sym_plain_type] = STATE(4266), + [sym__plain_type_without_special] = STATE(2360), + [sym_anon_struct_type] = STATE(2362), + [sym_multi_return_type] = STATE(2360), + [sym_result_type] = STATE(2360), + [sym_option_type] = STATE(2360), + [sym_qualified_type] = STATE(3460), + [sym_fixed_array_type] = STATE(2362), + [sym_array_type] = STATE(2362), + [sym_pointer_type] = STATE(2362), + [sym_wrong_pointer_type] = STATE(2362), + [sym_map_type] = STATE(2362), + [sym_channel_type] = STATE(2362), + [sym_shared_type] = STATE(2362), + [sym_thread_type] = STATE(2362), + [sym_atomic_type] = STATE(2362), + [sym_generic_type] = STATE(2362), + [sym_function_type] = STATE(2362), + [sym_identifier] = ACTIONS(1681), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1697), - [anon_sym_LBRACE] = ACTIONS(2697), - [anon_sym_LPAREN] = ACTIONS(2699), - [anon_sym_fn] = ACTIONS(1703), - [anon_sym_PLUS] = ACTIONS(3380), - [anon_sym_DASH] = ACTIONS(3380), - [anon_sym_STAR] = ACTIONS(3382), - [anon_sym_struct] = ACTIONS(1709), + [anon_sym_DOT] = ACTIONS(705), + [anon_sym_LBRACE] = ACTIONS(3118), + [anon_sym_LPAREN] = ACTIONS(709), + [anon_sym_fn] = ACTIONS(711), + [anon_sym_PLUS] = ACTIONS(713), + [anon_sym_DASH] = ACTIONS(713), + [anon_sym_STAR] = ACTIONS(715), + [anon_sym_struct] = ACTIONS(717), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(3384), - [anon_sym_go] = ACTIONS(3386), - [anon_sym_spawn] = ACTIONS(3388), - [anon_sym_json_DOTdecode] = ACTIONS(2707), - [anon_sym_LBRACK2] = ACTIONS(2709), - [anon_sym_TILDE] = ACTIONS(3380), - [anon_sym_CARET] = ACTIONS(3380), - [anon_sym_AMP] = ACTIONS(3390), - [anon_sym_LT_DASH] = ACTIONS(3392), - [sym_none] = ACTIONS(1725), - [sym_true] = ACTIONS(1725), - [sym_false] = ACTIONS(1725), - [sym_nil] = ACTIONS(1725), - [anon_sym_if] = ACTIONS(1727), - [anon_sym_DOLLARif] = ACTIONS(1729), - [anon_sym_match] = ACTIONS(1731), - [anon_sym_select] = ACTIONS(3394), - [anon_sym_lock] = ACTIONS(3396), - [anon_sym_rlock] = ACTIONS(3396), - [anon_sym_unsafe] = ACTIONS(1737), - [anon_sym_sql] = ACTIONS(1739), - [sym_int_literal] = ACTIONS(1725), - [sym_float_literal] = ACTIONS(2715), - [sym_rune_literal] = ACTIONS(2715), - [sym_pseudo_compile_time_identifier] = ACTIONS(1741), + [anon_sym_BANG] = ACTIONS(721), + [anon_sym_go] = ACTIONS(723), + [anon_sym_spawn] = ACTIONS(725), + [anon_sym_json_DOTdecode] = ACTIONS(727), + [anon_sym_LBRACK2] = ACTIONS(729), + [anon_sym_TILDE] = ACTIONS(713), + [anon_sym_CARET] = ACTIONS(713), + [anon_sym_AMP] = ACTIONS(731), + [anon_sym_LT_DASH] = ACTIONS(733), + [sym_none] = ACTIONS(735), + [sym_true] = ACTIONS(735), + [sym_false] = ACTIONS(735), + [sym_nil] = ACTIONS(735), + [anon_sym_if] = ACTIONS(737), + [anon_sym_DOLLARif] = ACTIONS(739), + [anon_sym_match] = ACTIONS(741), + [anon_sym_select] = ACTIONS(743), + [anon_sym_lock] = ACTIONS(745), + [anon_sym_rlock] = ACTIONS(745), + [anon_sym_unsafe] = ACTIONS(747), + [anon_sym_sql] = ACTIONS(749), + [sym_int_literal] = ACTIONS(735), + [sym_float_literal] = ACTIONS(751), + [sym_rune_literal] = ACTIONS(751), + [sym_pseudo_compile_time_identifier] = ACTIONS(753), [anon_sym_shared] = ACTIONS(83), [anon_sym_map_LBRACK] = ACTIONS(85), [anon_sym_chan] = ACTIONS(87), [anon_sym_thread] = ACTIONS(89), [anon_sym_atomic] = ACTIONS(91), - [sym___double_quote] = ACTIONS(2717), - [sym___single_quote] = ACTIONS(2719), - [sym___c_double_quote] = ACTIONS(2721), - [sym___c_single_quote] = ACTIONS(2723), - [sym___r_double_quote] = ACTIONS(2725), - [sym___r_single_quote] = ACTIONS(2727), + [sym___double_quote] = ACTIONS(755), + [sym___single_quote] = ACTIONS(757), + [sym___c_double_quote] = ACTIONS(759), + [sym___c_single_quote] = ACTIONS(761), + [sym___r_double_quote] = ACTIONS(763), + [sym___r_single_quote] = ACTIONS(765), }, [688] = { [sym_line_comment] = STATE(688), [sym_block_comment] = STATE(688), - [sym__expression] = STATE(2286), - [sym__expression_without_blocks] = STATE(2489), - [sym__expression_with_blocks] = STATE(2489), - [sym_inc_expression] = STATE(2479), - [sym_dec_expression] = STATE(2479), - [sym_or_block_expression] = STATE(2479), - [sym_option_propagation_expression] = STATE(2479), - [sym_result_propagation_expression] = STATE(2479), - [sym_anon_struct_value_expression] = STATE(2491), - [sym_go_expression] = STATE(2479), - [sym_spawn_expression] = STATE(2479), - [sym_parenthesized_expression] = STATE(2479), - [sym_call_expression] = STATE(2479), - [sym_type_initializer] = STATE(2491), - [sym_function_literal] = STATE(2479), - [sym_reference_expression] = STATE(2542), - [sym_type_reference_expression] = STATE(3541), - [sym_unary_expression] = STATE(2479), - [sym_receive_expression] = STATE(2479), - [sym_binary_expression] = STATE(2479), - [sym_as_type_cast_expression] = STATE(2479), - [sym__max_group] = STATE(2479), - [sym_literal] = STATE(2454), - [sym_map_init_expression] = STATE(2491), - [sym_array_creation] = STATE(2479), - [sym_fixed_array_creation] = STATE(2479), - [sym_selector_expression] = STATE(2479), - [sym_index_expression] = STATE(2479), - [sym_slice_expression] = STATE(2479), - [sym_if_expression] = STATE(2491), - [sym_compile_time_if_expression] = STATE(2491), - [sym_is_expression] = STATE(2479), - [sym_in_expression] = STATE(2479), - [sym_enum_fetch] = STATE(2479), - [sym_match_expression] = STATE(2491), - [sym_select_expression] = STATE(2491), - [sym_lock_expression] = STATE(2491), - [sym_unsafe_expression] = STATE(2491), - [sym_sql_expression] = STATE(2491), - [sym_c_string_literal] = STATE(2469), - [sym_raw_string_literal] = STATE(2469), - [sym_interpreted_string_literal] = STATE(2469), - [sym_mutability_modifiers] = STATE(640), - [sym_plain_type] = STATE(4255), - [sym__plain_type_without_special] = STATE(2302), - [sym_anon_struct_type] = STATE(2303), - [sym_multi_return_type] = STATE(2302), - [sym_result_type] = STATE(2302), - [sym_option_type] = STATE(2302), - [sym_qualified_type] = STATE(3541), - [sym_fixed_array_type] = STATE(2303), - [sym_array_type] = STATE(2303), - [sym_pointer_type] = STATE(2303), - [sym_wrong_pointer_type] = STATE(2303), - [sym_map_type] = STATE(2303), - [sym_channel_type] = STATE(2303), - [sym_shared_type] = STATE(2303), - [sym_thread_type] = STATE(2303), - [sym_atomic_type] = STATE(2303), - [sym_generic_type] = STATE(2303), - [sym_function_type] = STATE(2303), - [sym_identifier] = ACTIONS(1695), + [sym__expression] = STATE(1768), + [sym__expression_without_blocks] = STATE(1915), + [sym__expression_with_blocks] = STATE(1915), + [sym_inc_expression] = STATE(2035), + [sym_dec_expression] = STATE(2035), + [sym_or_block_expression] = STATE(2035), + [sym_option_propagation_expression] = STATE(2035), + [sym_result_propagation_expression] = STATE(2035), + [sym_anon_struct_value_expression] = STATE(1939), + [sym_go_expression] = STATE(2035), + [sym_spawn_expression] = STATE(2035), + [sym_parenthesized_expression] = STATE(2035), + [sym_call_expression] = STATE(2035), + [sym_type_initializer] = STATE(1939), + [sym_function_literal] = STATE(2035), + [sym_reference_expression] = STATE(1944), + [sym_type_reference_expression] = STATE(3460), + [sym_unary_expression] = STATE(2035), + [sym_receive_expression] = STATE(2035), + [sym_binary_expression] = STATE(2035), + [sym_as_type_cast_expression] = STATE(2035), + [sym__max_group] = STATE(2035), + [sym_literal] = STATE(2030), + [sym_map_init_expression] = STATE(1939), + [sym_array_creation] = STATE(2035), + [sym_fixed_array_creation] = STATE(2035), + [sym_selector_expression] = STATE(2035), + [sym_index_expression] = STATE(2035), + [sym_slice_expression] = STATE(2035), + [sym_if_expression] = STATE(1939), + [sym_compile_time_if_expression] = STATE(1939), + [sym_is_expression] = STATE(2035), + [sym_in_expression] = STATE(2035), + [sym_enum_fetch] = STATE(2035), + [sym_match_expression] = STATE(1939), + [sym_select_expression] = STATE(1939), + [sym_lock_expression] = STATE(1939), + [sym_unsafe_expression] = STATE(1939), + [sym_sql_expression] = STATE(1939), + [sym_c_string_literal] = STATE(2029), + [sym_raw_string_literal] = STATE(2029), + [sym_interpreted_string_literal] = STATE(2029), + [sym_mutability_modifiers] = STATE(555), + [sym_plain_type] = STATE(4014), + [sym__plain_type_without_special] = STATE(2360), + [sym_anon_struct_type] = STATE(2362), + [sym_multi_return_type] = STATE(2360), + [sym_result_type] = STATE(2360), + [sym_option_type] = STATE(2360), + [sym_qualified_type] = STATE(3460), + [sym_fixed_array_type] = STATE(2362), + [sym_array_type] = STATE(2362), + [sym_pointer_type] = STATE(2362), + [sym_wrong_pointer_type] = STATE(2362), + [sym_map_type] = STATE(2362), + [sym_channel_type] = STATE(2362), + [sym_shared_type] = STATE(2362), + [sym_thread_type] = STATE(2362), + [sym_atomic_type] = STATE(2362), + [sym_generic_type] = STATE(2362), + [sym_function_type] = STATE(2362), + [sym_identifier] = ACTIONS(3272), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1697), - [anon_sym_LBRACE] = ACTIONS(2697), - [anon_sym_LPAREN] = ACTIONS(2699), - [anon_sym_fn] = ACTIONS(1703), - [anon_sym_PLUS] = ACTIONS(2701), - [anon_sym_DASH] = ACTIONS(2701), - [anon_sym_STAR] = ACTIONS(2703), - [anon_sym_struct] = ACTIONS(1709), + [anon_sym_DOT] = ACTIONS(769), + [anon_sym_LBRACE] = ACTIONS(3274), + [anon_sym_LPAREN] = ACTIONS(775), + [anon_sym_fn] = ACTIONS(777), + [anon_sym_PLUS] = ACTIONS(779), + [anon_sym_DASH] = ACTIONS(779), + [anon_sym_STAR] = ACTIONS(781), + [anon_sym_struct] = ACTIONS(3276), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(2705), - [anon_sym_go] = ACTIONS(1713), - [anon_sym_spawn] = ACTIONS(1715), - [anon_sym_json_DOTdecode] = ACTIONS(2707), - [anon_sym_LBRACK2] = ACTIONS(2709), - [anon_sym_TILDE] = ACTIONS(2701), - [anon_sym_CARET] = ACTIONS(2701), - [anon_sym_AMP] = ACTIONS(2711), - [anon_sym_LT_DASH] = ACTIONS(2713), - [sym_none] = ACTIONS(1725), - [sym_true] = ACTIONS(1725), - [sym_false] = ACTIONS(1725), - [sym_nil] = ACTIONS(1725), - [anon_sym_if] = ACTIONS(1727), - [anon_sym_DOLLARif] = ACTIONS(1729), - [anon_sym_match] = ACTIONS(1731), - [anon_sym_select] = ACTIONS(1733), - [anon_sym_lock] = ACTIONS(1735), - [anon_sym_rlock] = ACTIONS(1735), - [anon_sym_unsafe] = ACTIONS(1737), - [anon_sym_sql] = ACTIONS(1739), - [sym_int_literal] = ACTIONS(1725), - [sym_float_literal] = ACTIONS(2715), - [sym_rune_literal] = ACTIONS(2715), - [sym_pseudo_compile_time_identifier] = ACTIONS(1741), + [anon_sym_BANG] = ACTIONS(785), + [anon_sym_go] = ACTIONS(787), + [anon_sym_spawn] = ACTIONS(789), + [anon_sym_json_DOTdecode] = ACTIONS(791), + [anon_sym_LBRACK2] = ACTIONS(793), + [anon_sym_TILDE] = ACTIONS(779), + [anon_sym_CARET] = ACTIONS(779), + [anon_sym_AMP] = ACTIONS(795), + [anon_sym_LT_DASH] = ACTIONS(797), + [sym_none] = ACTIONS(799), + [sym_true] = ACTIONS(799), + [sym_false] = ACTIONS(799), + [sym_nil] = ACTIONS(799), + [anon_sym_if] = ACTIONS(3278), + [anon_sym_DOLLARif] = ACTIONS(3280), + [anon_sym_match] = ACTIONS(3282), + [anon_sym_select] = ACTIONS(3284), + [anon_sym_lock] = ACTIONS(3286), + [anon_sym_rlock] = ACTIONS(3286), + [anon_sym_unsafe] = ACTIONS(3288), + [anon_sym_sql] = ACTIONS(3290), + [sym_int_literal] = ACTIONS(799), + [sym_float_literal] = ACTIONS(817), + [sym_rune_literal] = ACTIONS(817), + [sym_pseudo_compile_time_identifier] = ACTIONS(819), [anon_sym_shared] = ACTIONS(83), [anon_sym_map_LBRACK] = ACTIONS(85), [anon_sym_chan] = ACTIONS(87), [anon_sym_thread] = ACTIONS(89), [anon_sym_atomic] = ACTIONS(91), - [sym___double_quote] = ACTIONS(2717), - [sym___single_quote] = ACTIONS(2719), - [sym___c_double_quote] = ACTIONS(2721), - [sym___c_single_quote] = ACTIONS(2723), - [sym___r_double_quote] = ACTIONS(2725), - [sym___r_single_quote] = ACTIONS(2727), + [sym___double_quote] = ACTIONS(821), + [sym___single_quote] = ACTIONS(823), + [sym___c_double_quote] = ACTIONS(825), + [sym___c_single_quote] = ACTIONS(827), + [sym___r_double_quote] = ACTIONS(829), + [sym___r_single_quote] = ACTIONS(831), }, [689] = { [sym_line_comment] = STATE(689), [sym_block_comment] = STATE(689), - [sym__expression] = STATE(2811), - [sym__expression_without_blocks] = STATE(2300), - [sym__expression_with_blocks] = STATE(2300), - [sym_inc_expression] = STATE(2307), - [sym_dec_expression] = STATE(2307), - [sym_or_block_expression] = STATE(2307), - [sym_option_propagation_expression] = STATE(2307), - [sym_result_propagation_expression] = STATE(2307), - [sym_anon_struct_value_expression] = STATE(2380), - [sym_go_expression] = STATE(2307), - [sym_spawn_expression] = STATE(2307), - [sym_parenthesized_expression] = STATE(2307), - [sym_call_expression] = STATE(2307), - [sym_type_initializer] = STATE(2380), - [sym_function_literal] = STATE(2307), - [sym_reference_expression] = STATE(2311), - [sym_type_reference_expression] = STATE(3541), - [sym_unary_expression] = STATE(2307), - [sym_receive_expression] = STATE(2307), - [sym_binary_expression] = STATE(2307), - [sym_as_type_cast_expression] = STATE(2307), - [sym__max_group] = STATE(2307), - [sym_literal] = STATE(2292), - [sym_map_init_expression] = STATE(2380), - [sym_array_creation] = STATE(2307), - [sym_fixed_array_creation] = STATE(2307), - [sym_selector_expression] = STATE(2307), - [sym_index_expression] = STATE(2307), - [sym_slice_expression] = STATE(2307), - [sym_if_expression] = STATE(2380), - [sym_compile_time_if_expression] = STATE(2380), - [sym_is_expression] = STATE(2307), - [sym_in_expression] = STATE(2307), - [sym_enum_fetch] = STATE(2307), - [sym_match_expression] = STATE(2380), - [sym_select_expression] = STATE(2380), - [sym_lock_expression] = STATE(2380), - [sym_unsafe_expression] = STATE(2380), - [sym_sql_expression] = STATE(2380), - [sym_c_string_literal] = STATE(2308), - [sym_raw_string_literal] = STATE(2308), - [sym_interpreted_string_literal] = STATE(2308), - [sym_mutability_modifiers] = STATE(939), - [sym_plain_type] = STATE(4297), - [sym__plain_type_without_special] = STATE(2302), - [sym_anon_struct_type] = STATE(2303), - [sym_multi_return_type] = STATE(2302), - [sym_result_type] = STATE(2302), - [sym_option_type] = STATE(2302), - [sym_qualified_type] = STATE(3541), - [sym_fixed_array_type] = STATE(2303), - [sym_array_type] = STATE(2303), - [sym_pointer_type] = STATE(2303), - [sym_wrong_pointer_type] = STATE(2303), - [sym_map_type] = STATE(2303), - [sym_channel_type] = STATE(2303), - [sym_shared_type] = STATE(2303), - [sym_thread_type] = STATE(2303), - [sym_atomic_type] = STATE(2303), - [sym_generic_type] = STATE(2303), - [sym_function_type] = STATE(2303), - [sym_identifier] = ACTIONS(1426), + [sym__expression] = STATE(2244), + [sym__expression_without_blocks] = STATE(2162), + [sym__expression_with_blocks] = STATE(2162), + [sym_inc_expression] = STATE(2161), + [sym_dec_expression] = STATE(2161), + [sym_or_block_expression] = STATE(2161), + [sym_option_propagation_expression] = STATE(2161), + [sym_result_propagation_expression] = STATE(2161), + [sym_anon_struct_value_expression] = STATE(2160), + [sym_go_expression] = STATE(2161), + [sym_spawn_expression] = STATE(2161), + [sym_parenthesized_expression] = STATE(2161), + [sym_call_expression] = STATE(2161), + [sym_type_initializer] = STATE(2160), + [sym_function_literal] = STATE(2161), + [sym_reference_expression] = STATE(2159), + [sym_type_reference_expression] = STATE(3460), + [sym_unary_expression] = STATE(2161), + [sym_receive_expression] = STATE(2161), + [sym_binary_expression] = STATE(2161), + [sym_as_type_cast_expression] = STATE(2161), + [sym__max_group] = STATE(2161), + [sym_literal] = STATE(2164), + [sym_map_init_expression] = STATE(2160), + [sym_array_creation] = STATE(2161), + [sym_fixed_array_creation] = STATE(2161), + [sym_selector_expression] = STATE(2161), + [sym_index_expression] = STATE(2161), + [sym_slice_expression] = STATE(2161), + [sym_if_expression] = STATE(2160), + [sym_compile_time_if_expression] = STATE(2160), + [sym_is_expression] = STATE(2161), + [sym_in_expression] = STATE(2161), + [sym_enum_fetch] = STATE(2161), + [sym_match_expression] = STATE(2160), + [sym_select_expression] = STATE(2160), + [sym_lock_expression] = STATE(2160), + [sym_unsafe_expression] = STATE(2160), + [sym_sql_expression] = STATE(2160), + [sym_c_string_literal] = STATE(2166), + [sym_raw_string_literal] = STATE(2166), + [sym_interpreted_string_literal] = STATE(2166), + [sym_mutability_modifiers] = STATE(575), + [sym_plain_type] = STATE(4173), + [sym__plain_type_without_special] = STATE(2360), + [sym_anon_struct_type] = STATE(2362), + [sym_multi_return_type] = STATE(2360), + [sym_result_type] = STATE(2360), + [sym_option_type] = STATE(2360), + [sym_qualified_type] = STATE(3460), + [sym_fixed_array_type] = STATE(2362), + [sym_array_type] = STATE(2362), + [sym_pointer_type] = STATE(2362), + [sym_wrong_pointer_type] = STATE(2362), + [sym_map_type] = STATE(2362), + [sym_channel_type] = STATE(2362), + [sym_shared_type] = STATE(2362), + [sym_thread_type] = STATE(2362), + [sym_atomic_type] = STATE(2362), + [sym_generic_type] = STATE(2362), + [sym_function_type] = STATE(2362), + [sym_identifier] = ACTIONS(3292), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1428), - [anon_sym_LBRACE] = ACTIONS(1430), - [anon_sym_LPAREN] = ACTIONS(1432), - [anon_sym_fn] = ACTIONS(1434), - [anon_sym_PLUS] = ACTIONS(1436), - [anon_sym_DASH] = ACTIONS(1436), - [anon_sym_STAR] = ACTIONS(1438), - [anon_sym_struct] = ACTIONS(1440), + [anon_sym_DOT] = ACTIONS(3294), + [anon_sym_LBRACE] = ACTIONS(3296), + [anon_sym_LPAREN] = ACTIONS(3298), + [anon_sym_fn] = ACTIONS(3300), + [anon_sym_PLUS] = ACTIONS(3404), + [anon_sym_DASH] = ACTIONS(3404), + [anon_sym_STAR] = ACTIONS(3406), + [anon_sym_struct] = ACTIONS(3306), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(1442), - [anon_sym_go] = ACTIONS(1444), - [anon_sym_spawn] = ACTIONS(1446), - [anon_sym_json_DOTdecode] = ACTIONS(1448), - [anon_sym_LBRACK2] = ACTIONS(1450), - [anon_sym_TILDE] = ACTIONS(1436), - [anon_sym_CARET] = ACTIONS(1436), - [anon_sym_AMP] = ACTIONS(1452), - [anon_sym_LT_DASH] = ACTIONS(1454), - [sym_none] = ACTIONS(1456), - [sym_true] = ACTIONS(1456), - [sym_false] = ACTIONS(1456), - [sym_nil] = ACTIONS(1456), - [anon_sym_if] = ACTIONS(1827), - [anon_sym_DOLLARif] = ACTIONS(1460), - [anon_sym_match] = ACTIONS(1462), - [anon_sym_select] = ACTIONS(1464), - [anon_sym_lock] = ACTIONS(1466), - [anon_sym_rlock] = ACTIONS(1466), - [anon_sym_unsafe] = ACTIONS(1833), - [anon_sym_sql] = ACTIONS(1470), - [sym_int_literal] = ACTIONS(1456), - [sym_float_literal] = ACTIONS(1472), - [sym_rune_literal] = ACTIONS(1472), - [sym_pseudo_compile_time_identifier] = ACTIONS(1474), + [anon_sym_BANG] = ACTIONS(3408), + [anon_sym_go] = ACTIONS(3410), + [anon_sym_spawn] = ACTIONS(3412), + [anon_sym_json_DOTdecode] = ACTIONS(3314), + [anon_sym_LBRACK2] = ACTIONS(3316), + [anon_sym_TILDE] = ACTIONS(3404), + [anon_sym_CARET] = ACTIONS(3404), + [anon_sym_AMP] = ACTIONS(3414), + [anon_sym_LT_DASH] = ACTIONS(3416), + [sym_none] = ACTIONS(3322), + [sym_true] = ACTIONS(3322), + [sym_false] = ACTIONS(3322), + [sym_nil] = ACTIONS(3322), + [anon_sym_if] = ACTIONS(3324), + [anon_sym_DOLLARif] = ACTIONS(3326), + [anon_sym_match] = ACTIONS(3328), + [anon_sym_select] = ACTIONS(3418), + [anon_sym_lock] = ACTIONS(3420), + [anon_sym_rlock] = ACTIONS(3420), + [anon_sym_unsafe] = ACTIONS(3334), + [anon_sym_sql] = ACTIONS(3336), + [sym_int_literal] = ACTIONS(3322), + [sym_float_literal] = ACTIONS(3338), + [sym_rune_literal] = ACTIONS(3338), + [sym_pseudo_compile_time_identifier] = ACTIONS(3340), [anon_sym_shared] = ACTIONS(83), [anon_sym_map_LBRACK] = ACTIONS(85), [anon_sym_chan] = ACTIONS(87), [anon_sym_thread] = ACTIONS(89), [anon_sym_atomic] = ACTIONS(91), - [sym___double_quote] = ACTIONS(1478), - [sym___single_quote] = ACTIONS(1480), - [sym___c_double_quote] = ACTIONS(1482), - [sym___c_single_quote] = ACTIONS(1484), - [sym___r_double_quote] = ACTIONS(1486), - [sym___r_single_quote] = ACTIONS(1488), + [sym___double_quote] = ACTIONS(3342), + [sym___single_quote] = ACTIONS(3344), + [sym___c_double_quote] = ACTIONS(3346), + [sym___c_single_quote] = ACTIONS(3348), + [sym___r_double_quote] = ACTIONS(3350), + [sym___r_single_quote] = ACTIONS(3352), }, [690] = { [sym_line_comment] = STATE(690), [sym_block_comment] = STATE(690), - [sym__expression] = STATE(2279), - [sym__expression_without_blocks] = STATE(2489), - [sym__expression_with_blocks] = STATE(2489), - [sym_inc_expression] = STATE(2479), - [sym_dec_expression] = STATE(2479), - [sym_or_block_expression] = STATE(2479), - [sym_option_propagation_expression] = STATE(2479), - [sym_result_propagation_expression] = STATE(2479), - [sym_anon_struct_value_expression] = STATE(2491), - [sym_go_expression] = STATE(2479), - [sym_spawn_expression] = STATE(2479), - [sym_parenthesized_expression] = STATE(2479), - [sym_call_expression] = STATE(2479), - [sym_type_initializer] = STATE(2491), - [sym_function_literal] = STATE(2479), - [sym_reference_expression] = STATE(2542), - [sym_type_reference_expression] = STATE(3541), - [sym_unary_expression] = STATE(2479), - [sym_receive_expression] = STATE(2479), - [sym_binary_expression] = STATE(2479), - [sym_as_type_cast_expression] = STATE(2479), - [sym__max_group] = STATE(2479), - [sym_literal] = STATE(2454), - [sym_map_init_expression] = STATE(2491), - [sym_array_creation] = STATE(2479), - [sym_fixed_array_creation] = STATE(2479), - [sym_selector_expression] = STATE(2479), - [sym_index_expression] = STATE(2479), - [sym_slice_expression] = STATE(2479), - [sym_if_expression] = STATE(2491), - [sym_compile_time_if_expression] = STATE(2491), - [sym_is_expression] = STATE(2479), - [sym_in_expression] = STATE(2479), - [sym_enum_fetch] = STATE(2479), - [sym_match_expression] = STATE(2491), - [sym_select_expression] = STATE(2491), - [sym_lock_expression] = STATE(2491), - [sym_unsafe_expression] = STATE(2491), - [sym_sql_expression] = STATE(2491), - [sym_c_string_literal] = STATE(2469), - [sym_raw_string_literal] = STATE(2469), - [sym_interpreted_string_literal] = STATE(2469), - [sym_mutability_modifiers] = STATE(640), - [sym_plain_type] = STATE(4312), - [sym__plain_type_without_special] = STATE(2302), - [sym_anon_struct_type] = STATE(2303), - [sym_multi_return_type] = STATE(2302), - [sym_result_type] = STATE(2302), - [sym_option_type] = STATE(2302), - [sym_qualified_type] = STATE(3541), - [sym_fixed_array_type] = STATE(2303), - [sym_array_type] = STATE(2303), - [sym_pointer_type] = STATE(2303), - [sym_wrong_pointer_type] = STATE(2303), - [sym_map_type] = STATE(2303), - [sym_channel_type] = STATE(2303), - [sym_shared_type] = STATE(2303), - [sym_thread_type] = STATE(2303), - [sym_atomic_type] = STATE(2303), - [sym_generic_type] = STATE(2303), - [sym_function_type] = STATE(2303), - [sym_identifier] = ACTIONS(1695), + [sym__expression] = STATE(2168), + [sym__expression_without_blocks] = STATE(2162), + [sym__expression_with_blocks] = STATE(2162), + [sym_inc_expression] = STATE(2161), + [sym_dec_expression] = STATE(2161), + [sym_or_block_expression] = STATE(2161), + [sym_option_propagation_expression] = STATE(2161), + [sym_result_propagation_expression] = STATE(2161), + [sym_anon_struct_value_expression] = STATE(2160), + [sym_go_expression] = STATE(2161), + [sym_spawn_expression] = STATE(2161), + [sym_parenthesized_expression] = STATE(2161), + [sym_call_expression] = STATE(2161), + [sym_type_initializer] = STATE(2160), + [sym_function_literal] = STATE(2161), + [sym_reference_expression] = STATE(2159), + [sym_type_reference_expression] = STATE(3460), + [sym_unary_expression] = STATE(2161), + [sym_receive_expression] = STATE(2161), + [sym_binary_expression] = STATE(2161), + [sym_as_type_cast_expression] = STATE(2161), + [sym__max_group] = STATE(2161), + [sym_literal] = STATE(2164), + [sym_map_init_expression] = STATE(2160), + [sym_array_creation] = STATE(2161), + [sym_fixed_array_creation] = STATE(2161), + [sym_selector_expression] = STATE(2161), + [sym_index_expression] = STATE(2161), + [sym_slice_expression] = STATE(2161), + [sym_if_expression] = STATE(2160), + [sym_compile_time_if_expression] = STATE(2160), + [sym_is_expression] = STATE(2161), + [sym_in_expression] = STATE(2161), + [sym_enum_fetch] = STATE(2161), + [sym_match_expression] = STATE(2160), + [sym_select_expression] = STATE(2160), + [sym_lock_expression] = STATE(2160), + [sym_unsafe_expression] = STATE(2160), + [sym_sql_expression] = STATE(2160), + [sym_c_string_literal] = STATE(2166), + [sym_raw_string_literal] = STATE(2166), + [sym_interpreted_string_literal] = STATE(2166), + [sym_mutability_modifiers] = STATE(575), + [sym_plain_type] = STATE(4173), + [sym__plain_type_without_special] = STATE(2360), + [sym_anon_struct_type] = STATE(2362), + [sym_multi_return_type] = STATE(2360), + [sym_result_type] = STATE(2360), + [sym_option_type] = STATE(2360), + [sym_qualified_type] = STATE(3460), + [sym_fixed_array_type] = STATE(2362), + [sym_array_type] = STATE(2362), + [sym_pointer_type] = STATE(2362), + [sym_wrong_pointer_type] = STATE(2362), + [sym_map_type] = STATE(2362), + [sym_channel_type] = STATE(2362), + [sym_shared_type] = STATE(2362), + [sym_thread_type] = STATE(2362), + [sym_atomic_type] = STATE(2362), + [sym_generic_type] = STATE(2362), + [sym_function_type] = STATE(2362), + [sym_identifier] = ACTIONS(3292), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1697), - [anon_sym_LBRACE] = ACTIONS(2697), - [anon_sym_LPAREN] = ACTIONS(2699), - [anon_sym_fn] = ACTIONS(1703), - [anon_sym_PLUS] = ACTIONS(2701), - [anon_sym_DASH] = ACTIONS(2701), - [anon_sym_STAR] = ACTIONS(2703), - [anon_sym_struct] = ACTIONS(1709), + [anon_sym_DOT] = ACTIONS(3294), + [anon_sym_LBRACE] = ACTIONS(3296), + [anon_sym_LPAREN] = ACTIONS(3298), + [anon_sym_fn] = ACTIONS(3300), + [anon_sym_PLUS] = ACTIONS(3404), + [anon_sym_DASH] = ACTIONS(3404), + [anon_sym_STAR] = ACTIONS(3406), + [anon_sym_struct] = ACTIONS(3306), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(2705), - [anon_sym_go] = ACTIONS(1713), - [anon_sym_spawn] = ACTIONS(1715), - [anon_sym_json_DOTdecode] = ACTIONS(2707), - [anon_sym_LBRACK2] = ACTIONS(2709), - [anon_sym_TILDE] = ACTIONS(2701), - [anon_sym_CARET] = ACTIONS(2701), - [anon_sym_AMP] = ACTIONS(2711), - [anon_sym_LT_DASH] = ACTIONS(2713), - [sym_none] = ACTIONS(1725), - [sym_true] = ACTIONS(1725), - [sym_false] = ACTIONS(1725), - [sym_nil] = ACTIONS(1725), - [anon_sym_if] = ACTIONS(1727), - [anon_sym_DOLLARif] = ACTIONS(1729), - [anon_sym_match] = ACTIONS(1731), - [anon_sym_select] = ACTIONS(1733), - [anon_sym_lock] = ACTIONS(1735), - [anon_sym_rlock] = ACTIONS(1735), - [anon_sym_unsafe] = ACTIONS(1737), - [anon_sym_sql] = ACTIONS(1739), - [sym_int_literal] = ACTIONS(1725), - [sym_float_literal] = ACTIONS(2715), - [sym_rune_literal] = ACTIONS(2715), - [sym_pseudo_compile_time_identifier] = ACTIONS(1741), + [anon_sym_BANG] = ACTIONS(3408), + [anon_sym_go] = ACTIONS(3410), + [anon_sym_spawn] = ACTIONS(3412), + [anon_sym_json_DOTdecode] = ACTIONS(3314), + [anon_sym_LBRACK2] = ACTIONS(3316), + [anon_sym_TILDE] = ACTIONS(3404), + [anon_sym_CARET] = ACTIONS(3404), + [anon_sym_AMP] = ACTIONS(3414), + [anon_sym_LT_DASH] = ACTIONS(3416), + [sym_none] = ACTIONS(3322), + [sym_true] = ACTIONS(3322), + [sym_false] = ACTIONS(3322), + [sym_nil] = ACTIONS(3322), + [anon_sym_if] = ACTIONS(3324), + [anon_sym_DOLLARif] = ACTIONS(3326), + [anon_sym_match] = ACTIONS(3328), + [anon_sym_select] = ACTIONS(3418), + [anon_sym_lock] = ACTIONS(3420), + [anon_sym_rlock] = ACTIONS(3420), + [anon_sym_unsafe] = ACTIONS(3334), + [anon_sym_sql] = ACTIONS(3336), + [sym_int_literal] = ACTIONS(3322), + [sym_float_literal] = ACTIONS(3338), + [sym_rune_literal] = ACTIONS(3338), + [sym_pseudo_compile_time_identifier] = ACTIONS(3340), [anon_sym_shared] = ACTIONS(83), [anon_sym_map_LBRACK] = ACTIONS(85), [anon_sym_chan] = ACTIONS(87), [anon_sym_thread] = ACTIONS(89), [anon_sym_atomic] = ACTIONS(91), - [sym___double_quote] = ACTIONS(2717), - [sym___single_quote] = ACTIONS(2719), - [sym___c_double_quote] = ACTIONS(2721), - [sym___c_single_quote] = ACTIONS(2723), - [sym___r_double_quote] = ACTIONS(2725), - [sym___r_single_quote] = ACTIONS(2727), + [sym___double_quote] = ACTIONS(3342), + [sym___single_quote] = ACTIONS(3344), + [sym___c_double_quote] = ACTIONS(3346), + [sym___c_single_quote] = ACTIONS(3348), + [sym___r_double_quote] = ACTIONS(3350), + [sym___r_single_quote] = ACTIONS(3352), }, [691] = { [sym_line_comment] = STATE(691), [sym_block_comment] = STATE(691), - [sym__expression] = STATE(2819), - [sym__expression_without_blocks] = STATE(2300), - [sym__expression_with_blocks] = STATE(2300), - [sym_inc_expression] = STATE(2307), - [sym_dec_expression] = STATE(2307), - [sym_or_block_expression] = STATE(2307), - [sym_option_propagation_expression] = STATE(2307), - [sym_result_propagation_expression] = STATE(2307), - [sym_anon_struct_value_expression] = STATE(2380), - [sym_go_expression] = STATE(2307), - [sym_spawn_expression] = STATE(2307), - [sym_parenthesized_expression] = STATE(2307), - [sym_call_expression] = STATE(2307), - [sym_type_initializer] = STATE(2380), - [sym_function_literal] = STATE(2307), - [sym_reference_expression] = STATE(2311), - [sym_type_reference_expression] = STATE(3541), - [sym_unary_expression] = STATE(2307), - [sym_receive_expression] = STATE(2307), - [sym_binary_expression] = STATE(2307), - [sym_as_type_cast_expression] = STATE(2307), - [sym__max_group] = STATE(2307), - [sym_literal] = STATE(2292), - [sym_map_init_expression] = STATE(2380), - [sym_array_creation] = STATE(2307), - [sym_fixed_array_creation] = STATE(2307), - [sym_selector_expression] = STATE(2307), - [sym_index_expression] = STATE(2307), - [sym_slice_expression] = STATE(2307), - [sym_if_expression] = STATE(2380), - [sym_compile_time_if_expression] = STATE(2380), - [sym_is_expression] = STATE(2307), - [sym_in_expression] = STATE(2307), - [sym_enum_fetch] = STATE(2307), - [sym_match_expression] = STATE(2380), - [sym_select_expression] = STATE(2380), - [sym_lock_expression] = STATE(2380), - [sym_unsafe_expression] = STATE(2380), - [sym_sql_expression] = STATE(2380), - [sym_c_string_literal] = STATE(2308), - [sym_raw_string_literal] = STATE(2308), - [sym_interpreted_string_literal] = STATE(2308), - [sym_mutability_modifiers] = STATE(939), - [sym_plain_type] = STATE(4297), - [sym__plain_type_without_special] = STATE(2302), - [sym_anon_struct_type] = STATE(2303), - [sym_multi_return_type] = STATE(2302), - [sym_result_type] = STATE(2302), - [sym_option_type] = STATE(2302), - [sym_qualified_type] = STATE(3541), - [sym_fixed_array_type] = STATE(2303), - [sym_array_type] = STATE(2303), - [sym_pointer_type] = STATE(2303), - [sym_wrong_pointer_type] = STATE(2303), - [sym_map_type] = STATE(2303), - [sym_channel_type] = STATE(2303), - [sym_shared_type] = STATE(2303), - [sym_thread_type] = STATE(2303), - [sym_atomic_type] = STATE(2303), - [sym_generic_type] = STATE(2303), - [sym_function_type] = STATE(2303), - [sym_identifier] = ACTIONS(1426), + [sym__expression] = STATE(2121), + [sym__expression_without_blocks] = STATE(2162), + [sym__expression_with_blocks] = STATE(2162), + [sym_inc_expression] = STATE(2161), + [sym_dec_expression] = STATE(2161), + [sym_or_block_expression] = STATE(2161), + [sym_option_propagation_expression] = STATE(2161), + [sym_result_propagation_expression] = STATE(2161), + [sym_anon_struct_value_expression] = STATE(2160), + [sym_go_expression] = STATE(2161), + [sym_spawn_expression] = STATE(2161), + [sym_parenthesized_expression] = STATE(2161), + [sym_call_expression] = STATE(2161), + [sym_type_initializer] = STATE(2160), + [sym_function_literal] = STATE(2161), + [sym_reference_expression] = STATE(2159), + [sym_type_reference_expression] = STATE(3460), + [sym_unary_expression] = STATE(2161), + [sym_receive_expression] = STATE(2161), + [sym_binary_expression] = STATE(2161), + [sym_as_type_cast_expression] = STATE(2161), + [sym__max_group] = STATE(2161), + [sym_literal] = STATE(2164), + [sym_map_init_expression] = STATE(2160), + [sym_array_creation] = STATE(2161), + [sym_fixed_array_creation] = STATE(2161), + [sym_selector_expression] = STATE(2161), + [sym_index_expression] = STATE(2161), + [sym_slice_expression] = STATE(2161), + [sym_if_expression] = STATE(2160), + [sym_compile_time_if_expression] = STATE(2160), + [sym_is_expression] = STATE(2161), + [sym_in_expression] = STATE(2161), + [sym_enum_fetch] = STATE(2161), + [sym_match_expression] = STATE(2160), + [sym_select_expression] = STATE(2160), + [sym_lock_expression] = STATE(2160), + [sym_unsafe_expression] = STATE(2160), + [sym_sql_expression] = STATE(2160), + [sym_c_string_literal] = STATE(2166), + [sym_raw_string_literal] = STATE(2166), + [sym_interpreted_string_literal] = STATE(2166), + [sym_mutability_modifiers] = STATE(575), + [sym_plain_type] = STATE(4173), + [sym__plain_type_without_special] = STATE(2360), + [sym_anon_struct_type] = STATE(2362), + [sym_multi_return_type] = STATE(2360), + [sym_result_type] = STATE(2360), + [sym_option_type] = STATE(2360), + [sym_qualified_type] = STATE(3460), + [sym_fixed_array_type] = STATE(2362), + [sym_array_type] = STATE(2362), + [sym_pointer_type] = STATE(2362), + [sym_wrong_pointer_type] = STATE(2362), + [sym_map_type] = STATE(2362), + [sym_channel_type] = STATE(2362), + [sym_shared_type] = STATE(2362), + [sym_thread_type] = STATE(2362), + [sym_atomic_type] = STATE(2362), + [sym_generic_type] = STATE(2362), + [sym_function_type] = STATE(2362), + [sym_identifier] = ACTIONS(3292), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1428), - [anon_sym_LBRACE] = ACTIONS(1430), - [anon_sym_LPAREN] = ACTIONS(1432), - [anon_sym_fn] = ACTIONS(1434), - [anon_sym_PLUS] = ACTIONS(1436), - [anon_sym_DASH] = ACTIONS(1436), - [anon_sym_STAR] = ACTIONS(1438), - [anon_sym_struct] = ACTIONS(1440), + [anon_sym_DOT] = ACTIONS(3294), + [anon_sym_LBRACE] = ACTIONS(3296), + [anon_sym_LPAREN] = ACTIONS(3298), + [anon_sym_fn] = ACTIONS(3300), + [anon_sym_PLUS] = ACTIONS(3404), + [anon_sym_DASH] = ACTIONS(3404), + [anon_sym_STAR] = ACTIONS(3406), + [anon_sym_struct] = ACTIONS(3306), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(1442), - [anon_sym_go] = ACTIONS(1444), - [anon_sym_spawn] = ACTIONS(1446), - [anon_sym_json_DOTdecode] = ACTIONS(1448), - [anon_sym_LBRACK2] = ACTIONS(1450), - [anon_sym_TILDE] = ACTIONS(1436), - [anon_sym_CARET] = ACTIONS(1436), - [anon_sym_AMP] = ACTIONS(1452), - [anon_sym_LT_DASH] = ACTIONS(1454), - [sym_none] = ACTIONS(1456), - [sym_true] = ACTIONS(1456), - [sym_false] = ACTIONS(1456), - [sym_nil] = ACTIONS(1456), - [anon_sym_if] = ACTIONS(1827), - [anon_sym_DOLLARif] = ACTIONS(1460), - [anon_sym_match] = ACTIONS(1462), - [anon_sym_select] = ACTIONS(1464), - [anon_sym_lock] = ACTIONS(1466), - [anon_sym_rlock] = ACTIONS(1466), - [anon_sym_unsafe] = ACTIONS(1833), - [anon_sym_sql] = ACTIONS(1470), - [sym_int_literal] = ACTIONS(1456), - [sym_float_literal] = ACTIONS(1472), - [sym_rune_literal] = ACTIONS(1472), - [sym_pseudo_compile_time_identifier] = ACTIONS(1474), + [anon_sym_BANG] = ACTIONS(3408), + [anon_sym_go] = ACTIONS(3410), + [anon_sym_spawn] = ACTIONS(3412), + [anon_sym_json_DOTdecode] = ACTIONS(3314), + [anon_sym_LBRACK2] = ACTIONS(3316), + [anon_sym_TILDE] = ACTIONS(3404), + [anon_sym_CARET] = ACTIONS(3404), + [anon_sym_AMP] = ACTIONS(3414), + [anon_sym_LT_DASH] = ACTIONS(3416), + [sym_none] = ACTIONS(3322), + [sym_true] = ACTIONS(3322), + [sym_false] = ACTIONS(3322), + [sym_nil] = ACTIONS(3322), + [anon_sym_if] = ACTIONS(3324), + [anon_sym_DOLLARif] = ACTIONS(3326), + [anon_sym_match] = ACTIONS(3328), + [anon_sym_select] = ACTIONS(3418), + [anon_sym_lock] = ACTIONS(3420), + [anon_sym_rlock] = ACTIONS(3420), + [anon_sym_unsafe] = ACTIONS(3334), + [anon_sym_sql] = ACTIONS(3336), + [sym_int_literal] = ACTIONS(3322), + [sym_float_literal] = ACTIONS(3338), + [sym_rune_literal] = ACTIONS(3338), + [sym_pseudo_compile_time_identifier] = ACTIONS(3340), [anon_sym_shared] = ACTIONS(83), [anon_sym_map_LBRACK] = ACTIONS(85), [anon_sym_chan] = ACTIONS(87), [anon_sym_thread] = ACTIONS(89), [anon_sym_atomic] = ACTIONS(91), - [sym___double_quote] = ACTIONS(1478), - [sym___single_quote] = ACTIONS(1480), - [sym___c_double_quote] = ACTIONS(1482), - [sym___c_single_quote] = ACTIONS(1484), - [sym___r_double_quote] = ACTIONS(1486), - [sym___r_single_quote] = ACTIONS(1488), + [sym___double_quote] = ACTIONS(3342), + [sym___single_quote] = ACTIONS(3344), + [sym___c_double_quote] = ACTIONS(3346), + [sym___c_single_quote] = ACTIONS(3348), + [sym___r_double_quote] = ACTIONS(3350), + [sym___r_single_quote] = ACTIONS(3352), }, [692] = { [sym_line_comment] = STATE(692), [sym_block_comment] = STATE(692), - [sym__expression] = STATE(2339), - [sym__expression_without_blocks] = STATE(2489), - [sym__expression_with_blocks] = STATE(2489), - [sym_inc_expression] = STATE(2479), - [sym_dec_expression] = STATE(2479), - [sym_or_block_expression] = STATE(2479), - [sym_option_propagation_expression] = STATE(2479), - [sym_result_propagation_expression] = STATE(2479), - [sym_anon_struct_value_expression] = STATE(2491), - [sym_go_expression] = STATE(2479), - [sym_spawn_expression] = STATE(2479), - [sym_parenthesized_expression] = STATE(2479), - [sym_call_expression] = STATE(2479), - [sym_type_initializer] = STATE(2491), - [sym_function_literal] = STATE(2479), - [sym_reference_expression] = STATE(2542), - [sym_type_reference_expression] = STATE(3541), - [sym_unary_expression] = STATE(2479), - [sym_receive_expression] = STATE(2479), - [sym_binary_expression] = STATE(2479), - [sym_as_type_cast_expression] = STATE(2479), - [sym__max_group] = STATE(2479), - [sym_literal] = STATE(2454), - [sym_map_init_expression] = STATE(2491), - [sym_array_creation] = STATE(2479), - [sym_fixed_array_creation] = STATE(2479), - [sym_selector_expression] = STATE(2479), - [sym_index_expression] = STATE(2479), - [sym_slice_expression] = STATE(2479), - [sym_if_expression] = STATE(2491), - [sym_compile_time_if_expression] = STATE(2491), - [sym_is_expression] = STATE(2479), - [sym_in_expression] = STATE(2479), - [sym_enum_fetch] = STATE(2479), - [sym_match_expression] = STATE(2491), - [sym_select_expression] = STATE(2491), - [sym_lock_expression] = STATE(2491), - [sym_unsafe_expression] = STATE(2491), - [sym_sql_expression] = STATE(2491), - [sym_c_string_literal] = STATE(2469), - [sym_raw_string_literal] = STATE(2469), - [sym_interpreted_string_literal] = STATE(2469), - [sym_mutability_modifiers] = STATE(640), - [sym_plain_type] = STATE(4255), - [sym__plain_type_without_special] = STATE(2302), - [sym_anon_struct_type] = STATE(2303), - [sym_multi_return_type] = STATE(2302), - [sym_result_type] = STATE(2302), - [sym_option_type] = STATE(2302), - [sym_qualified_type] = STATE(3541), - [sym_fixed_array_type] = STATE(2303), - [sym_array_type] = STATE(2303), - [sym_pointer_type] = STATE(2303), - [sym_wrong_pointer_type] = STATE(2303), - [sym_map_type] = STATE(2303), - [sym_channel_type] = STATE(2303), - [sym_shared_type] = STATE(2303), - [sym_thread_type] = STATE(2303), - [sym_atomic_type] = STATE(2303), - [sym_generic_type] = STATE(2303), - [sym_function_type] = STATE(2303), - [sym_identifier] = ACTIONS(1695), + [sym__expression] = STATE(1759), + [sym__expression_without_blocks] = STATE(1915), + [sym__expression_with_blocks] = STATE(1915), + [sym_inc_expression] = STATE(2035), + [sym_dec_expression] = STATE(2035), + [sym_or_block_expression] = STATE(2035), + [sym_option_propagation_expression] = STATE(2035), + [sym_result_propagation_expression] = STATE(2035), + [sym_anon_struct_value_expression] = STATE(1939), + [sym_go_expression] = STATE(2035), + [sym_spawn_expression] = STATE(2035), + [sym_parenthesized_expression] = STATE(2035), + [sym_call_expression] = STATE(2035), + [sym_type_initializer] = STATE(1939), + [sym_function_literal] = STATE(2035), + [sym_reference_expression] = STATE(1944), + [sym_type_reference_expression] = STATE(3460), + [sym_unary_expression] = STATE(2035), + [sym_receive_expression] = STATE(2035), + [sym_binary_expression] = STATE(2035), + [sym_as_type_cast_expression] = STATE(2035), + [sym__max_group] = STATE(2035), + [sym_literal] = STATE(2030), + [sym_map_init_expression] = STATE(1939), + [sym_array_creation] = STATE(2035), + [sym_fixed_array_creation] = STATE(2035), + [sym_selector_expression] = STATE(2035), + [sym_index_expression] = STATE(2035), + [sym_slice_expression] = STATE(2035), + [sym_if_expression] = STATE(1939), + [sym_compile_time_if_expression] = STATE(1939), + [sym_is_expression] = STATE(2035), + [sym_in_expression] = STATE(2035), + [sym_enum_fetch] = STATE(2035), + [sym_match_expression] = STATE(1939), + [sym_select_expression] = STATE(1939), + [sym_lock_expression] = STATE(1939), + [sym_unsafe_expression] = STATE(1939), + [sym_sql_expression] = STATE(1939), + [sym_c_string_literal] = STATE(2029), + [sym_raw_string_literal] = STATE(2029), + [sym_interpreted_string_literal] = STATE(2029), + [sym_mutability_modifiers] = STATE(555), + [sym_plain_type] = STATE(4014), + [sym__plain_type_without_special] = STATE(2360), + [sym_anon_struct_type] = STATE(2362), + [sym_multi_return_type] = STATE(2360), + [sym_result_type] = STATE(2360), + [sym_option_type] = STATE(2360), + [sym_qualified_type] = STATE(3460), + [sym_fixed_array_type] = STATE(2362), + [sym_array_type] = STATE(2362), + [sym_pointer_type] = STATE(2362), + [sym_wrong_pointer_type] = STATE(2362), + [sym_map_type] = STATE(2362), + [sym_channel_type] = STATE(2362), + [sym_shared_type] = STATE(2362), + [sym_thread_type] = STATE(2362), + [sym_atomic_type] = STATE(2362), + [sym_generic_type] = STATE(2362), + [sym_function_type] = STATE(2362), + [sym_identifier] = ACTIONS(3272), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1697), - [anon_sym_LBRACE] = ACTIONS(2697), - [anon_sym_LPAREN] = ACTIONS(2699), - [anon_sym_fn] = ACTIONS(1703), - [anon_sym_PLUS] = ACTIONS(2701), - [anon_sym_DASH] = ACTIONS(2701), - [anon_sym_STAR] = ACTIONS(2703), - [anon_sym_struct] = ACTIONS(1709), + [anon_sym_DOT] = ACTIONS(769), + [anon_sym_LBRACE] = ACTIONS(3274), + [anon_sym_LPAREN] = ACTIONS(775), + [anon_sym_fn] = ACTIONS(777), + [anon_sym_PLUS] = ACTIONS(779), + [anon_sym_DASH] = ACTIONS(779), + [anon_sym_STAR] = ACTIONS(781), + [anon_sym_struct] = ACTIONS(3276), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(2705), - [anon_sym_go] = ACTIONS(1713), - [anon_sym_spawn] = ACTIONS(1715), - [anon_sym_json_DOTdecode] = ACTIONS(2707), - [anon_sym_LBRACK2] = ACTIONS(2709), - [anon_sym_TILDE] = ACTIONS(2701), - [anon_sym_CARET] = ACTIONS(2701), - [anon_sym_AMP] = ACTIONS(2711), - [anon_sym_LT_DASH] = ACTIONS(2713), - [sym_none] = ACTIONS(1725), - [sym_true] = ACTIONS(1725), - [sym_false] = ACTIONS(1725), - [sym_nil] = ACTIONS(1725), - [anon_sym_if] = ACTIONS(1727), - [anon_sym_DOLLARif] = ACTIONS(1729), - [anon_sym_match] = ACTIONS(1731), - [anon_sym_select] = ACTIONS(1733), - [anon_sym_lock] = ACTIONS(1735), - [anon_sym_rlock] = ACTIONS(1735), - [anon_sym_unsafe] = ACTIONS(1737), - [anon_sym_sql] = ACTIONS(1739), - [sym_int_literal] = ACTIONS(1725), - [sym_float_literal] = ACTIONS(2715), - [sym_rune_literal] = ACTIONS(2715), - [sym_pseudo_compile_time_identifier] = ACTIONS(1741), + [anon_sym_BANG] = ACTIONS(785), + [anon_sym_go] = ACTIONS(787), + [anon_sym_spawn] = ACTIONS(789), + [anon_sym_json_DOTdecode] = ACTIONS(791), + [anon_sym_LBRACK2] = ACTIONS(793), + [anon_sym_TILDE] = ACTIONS(779), + [anon_sym_CARET] = ACTIONS(779), + [anon_sym_AMP] = ACTIONS(795), + [anon_sym_LT_DASH] = ACTIONS(797), + [sym_none] = ACTIONS(799), + [sym_true] = ACTIONS(799), + [sym_false] = ACTIONS(799), + [sym_nil] = ACTIONS(799), + [anon_sym_if] = ACTIONS(3278), + [anon_sym_DOLLARif] = ACTIONS(3280), + [anon_sym_match] = ACTIONS(3282), + [anon_sym_select] = ACTIONS(3284), + [anon_sym_lock] = ACTIONS(3286), + [anon_sym_rlock] = ACTIONS(3286), + [anon_sym_unsafe] = ACTIONS(3288), + [anon_sym_sql] = ACTIONS(3290), + [sym_int_literal] = ACTIONS(799), + [sym_float_literal] = ACTIONS(817), + [sym_rune_literal] = ACTIONS(817), + [sym_pseudo_compile_time_identifier] = ACTIONS(819), [anon_sym_shared] = ACTIONS(83), [anon_sym_map_LBRACK] = ACTIONS(85), [anon_sym_chan] = ACTIONS(87), [anon_sym_thread] = ACTIONS(89), [anon_sym_atomic] = ACTIONS(91), - [sym___double_quote] = ACTIONS(2717), - [sym___single_quote] = ACTIONS(2719), - [sym___c_double_quote] = ACTIONS(2721), - [sym___c_single_quote] = ACTIONS(2723), - [sym___r_double_quote] = ACTIONS(2725), - [sym___r_single_quote] = ACTIONS(2727), + [sym___double_quote] = ACTIONS(821), + [sym___single_quote] = ACTIONS(823), + [sym___c_double_quote] = ACTIONS(825), + [sym___c_single_quote] = ACTIONS(827), + [sym___r_double_quote] = ACTIONS(829), + [sym___r_single_quote] = ACTIONS(831), }, [693] = { [sym_line_comment] = STATE(693), [sym_block_comment] = STATE(693), - [sym__expression] = STATE(1873), - [sym__expression_without_blocks] = STATE(2044), - [sym__expression_with_blocks] = STATE(2044), - [sym_inc_expression] = STATE(2045), - [sym_dec_expression] = STATE(2045), - [sym_or_block_expression] = STATE(2045), - [sym_option_propagation_expression] = STATE(2045), - [sym_result_propagation_expression] = STATE(2045), - [sym_anon_struct_value_expression] = STATE(2046), - [sym_go_expression] = STATE(2045), - [sym_spawn_expression] = STATE(2045), - [sym_parenthesized_expression] = STATE(2045), - [sym_call_expression] = STATE(2045), - [sym_type_initializer] = STATE(2046), - [sym_function_literal] = STATE(2045), - [sym_reference_expression] = STATE(1912), - [sym_type_reference_expression] = STATE(3541), - [sym_unary_expression] = STATE(2045), - [sym_receive_expression] = STATE(2045), - [sym_binary_expression] = STATE(2045), - [sym_as_type_cast_expression] = STATE(2045), - [sym__max_group] = STATE(2045), - [sym_literal] = STATE(2043), - [sym_map_init_expression] = STATE(2046), - [sym_array_creation] = STATE(2045), - [sym_fixed_array_creation] = STATE(2045), - [sym_selector_expression] = STATE(2045), - [sym_index_expression] = STATE(2045), - [sym_slice_expression] = STATE(2045), - [sym_if_expression] = STATE(2046), - [sym_compile_time_if_expression] = STATE(2046), - [sym_is_expression] = STATE(2045), - [sym_in_expression] = STATE(2045), - [sym_enum_fetch] = STATE(2045), - [sym_match_expression] = STATE(2046), - [sym_select_expression] = STATE(2046), - [sym_lock_expression] = STATE(2046), - [sym_unsafe_expression] = STATE(2046), - [sym_sql_expression] = STATE(2046), - [sym_c_string_literal] = STATE(2041), - [sym_raw_string_literal] = STATE(2041), - [sym_interpreted_string_literal] = STATE(2041), - [sym_mutability_modifiers] = STATE(689), - [sym_plain_type] = STATE(4052), - [sym__plain_type_without_special] = STATE(2302), - [sym_anon_struct_type] = STATE(2303), - [sym_multi_return_type] = STATE(2302), - [sym_result_type] = STATE(2302), - [sym_option_type] = STATE(2302), - [sym_qualified_type] = STATE(3541), - [sym_fixed_array_type] = STATE(2303), - [sym_array_type] = STATE(2303), - [sym_pointer_type] = STATE(2303), - [sym_wrong_pointer_type] = STATE(2303), - [sym_map_type] = STATE(2303), - [sym_channel_type] = STATE(2303), - [sym_shared_type] = STATE(2303), - [sym_thread_type] = STATE(2303), - [sym_atomic_type] = STATE(2303), - [sym_generic_type] = STATE(2303), - [sym_function_type] = STATE(2303), - [sym_identifier] = ACTIONS(3142), + [sym__expression] = STATE(2122), + [sym__expression_without_blocks] = STATE(2162), + [sym__expression_with_blocks] = STATE(2162), + [sym_inc_expression] = STATE(2161), + [sym_dec_expression] = STATE(2161), + [sym_or_block_expression] = STATE(2161), + [sym_option_propagation_expression] = STATE(2161), + [sym_result_propagation_expression] = STATE(2161), + [sym_anon_struct_value_expression] = STATE(2160), + [sym_go_expression] = STATE(2161), + [sym_spawn_expression] = STATE(2161), + [sym_parenthesized_expression] = STATE(2161), + [sym_call_expression] = STATE(2161), + [sym_type_initializer] = STATE(2160), + [sym_function_literal] = STATE(2161), + [sym_reference_expression] = STATE(2159), + [sym_type_reference_expression] = STATE(3460), + [sym_unary_expression] = STATE(2161), + [sym_receive_expression] = STATE(2161), + [sym_binary_expression] = STATE(2161), + [sym_as_type_cast_expression] = STATE(2161), + [sym__max_group] = STATE(2161), + [sym_literal] = STATE(2164), + [sym_map_init_expression] = STATE(2160), + [sym_array_creation] = STATE(2161), + [sym_fixed_array_creation] = STATE(2161), + [sym_selector_expression] = STATE(2161), + [sym_index_expression] = STATE(2161), + [sym_slice_expression] = STATE(2161), + [sym_if_expression] = STATE(2160), + [sym_compile_time_if_expression] = STATE(2160), + [sym_is_expression] = STATE(2161), + [sym_in_expression] = STATE(2161), + [sym_enum_fetch] = STATE(2161), + [sym_match_expression] = STATE(2160), + [sym_select_expression] = STATE(2160), + [sym_lock_expression] = STATE(2160), + [sym_unsafe_expression] = STATE(2160), + [sym_sql_expression] = STATE(2160), + [sym_c_string_literal] = STATE(2166), + [sym_raw_string_literal] = STATE(2166), + [sym_interpreted_string_literal] = STATE(2166), + [sym_mutability_modifiers] = STATE(575), + [sym_plain_type] = STATE(4168), + [sym__plain_type_without_special] = STATE(2360), + [sym_anon_struct_type] = STATE(2362), + [sym_multi_return_type] = STATE(2360), + [sym_result_type] = STATE(2360), + [sym_option_type] = STATE(2360), + [sym_qualified_type] = STATE(3460), + [sym_fixed_array_type] = STATE(2362), + [sym_array_type] = STATE(2362), + [sym_pointer_type] = STATE(2362), + [sym_wrong_pointer_type] = STATE(2362), + [sym_map_type] = STATE(2362), + [sym_channel_type] = STATE(2362), + [sym_shared_type] = STATE(2362), + [sym_thread_type] = STATE(2362), + [sym_atomic_type] = STATE(2362), + [sym_generic_type] = STATE(2362), + [sym_function_type] = STATE(2362), + [sym_identifier] = ACTIONS(3292), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(811), - [anon_sym_LBRACE] = ACTIONS(3144), - [anon_sym_LPAREN] = ACTIONS(815), - [anon_sym_fn] = ACTIONS(817), - [anon_sym_PLUS] = ACTIONS(3146), - [anon_sym_DASH] = ACTIONS(3146), - [anon_sym_STAR] = ACTIONS(3148), - [anon_sym_struct] = ACTIONS(823), + [anon_sym_DOT] = ACTIONS(3294), + [anon_sym_LBRACE] = ACTIONS(3296), + [anon_sym_LPAREN] = ACTIONS(3298), + [anon_sym_fn] = ACTIONS(3300), + [anon_sym_PLUS] = ACTIONS(3404), + [anon_sym_DASH] = ACTIONS(3404), + [anon_sym_STAR] = ACTIONS(3406), + [anon_sym_struct] = ACTIONS(3306), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(3150), - [anon_sym_go] = ACTIONS(3152), - [anon_sym_spawn] = ACTIONS(3154), - [anon_sym_json_DOTdecode] = ACTIONS(833), - [anon_sym_LBRACK2] = ACTIONS(3156), - [anon_sym_TILDE] = ACTIONS(3146), - [anon_sym_CARET] = ACTIONS(3146), - [anon_sym_AMP] = ACTIONS(3158), - [anon_sym_LT_DASH] = ACTIONS(3160), - [sym_none] = ACTIONS(841), - [sym_true] = ACTIONS(841), - [sym_false] = ACTIONS(841), - [sym_nil] = ACTIONS(841), - [anon_sym_if] = ACTIONS(843), - [anon_sym_DOLLARif] = ACTIONS(845), - [anon_sym_match] = ACTIONS(847), - [anon_sym_select] = ACTIONS(3162), - [anon_sym_lock] = ACTIONS(3164), - [anon_sym_rlock] = ACTIONS(3164), - [anon_sym_unsafe] = ACTIONS(853), - [anon_sym_sql] = ACTIONS(855), - [sym_int_literal] = ACTIONS(841), - [sym_float_literal] = ACTIONS(857), - [sym_rune_literal] = ACTIONS(857), - [sym_pseudo_compile_time_identifier] = ACTIONS(859), + [anon_sym_BANG] = ACTIONS(3408), + [anon_sym_go] = ACTIONS(3410), + [anon_sym_spawn] = ACTIONS(3412), + [anon_sym_json_DOTdecode] = ACTIONS(3314), + [anon_sym_LBRACK2] = ACTIONS(3316), + [anon_sym_TILDE] = ACTIONS(3404), + [anon_sym_CARET] = ACTIONS(3404), + [anon_sym_AMP] = ACTIONS(3414), + [anon_sym_LT_DASH] = ACTIONS(3416), + [sym_none] = ACTIONS(3322), + [sym_true] = ACTIONS(3322), + [sym_false] = ACTIONS(3322), + [sym_nil] = ACTIONS(3322), + [anon_sym_if] = ACTIONS(3324), + [anon_sym_DOLLARif] = ACTIONS(3326), + [anon_sym_match] = ACTIONS(3328), + [anon_sym_select] = ACTIONS(3418), + [anon_sym_lock] = ACTIONS(3420), + [anon_sym_rlock] = ACTIONS(3420), + [anon_sym_unsafe] = ACTIONS(3334), + [anon_sym_sql] = ACTIONS(3336), + [sym_int_literal] = ACTIONS(3322), + [sym_float_literal] = ACTIONS(3338), + [sym_rune_literal] = ACTIONS(3338), + [sym_pseudo_compile_time_identifier] = ACTIONS(3340), [anon_sym_shared] = ACTIONS(83), [anon_sym_map_LBRACK] = ACTIONS(85), [anon_sym_chan] = ACTIONS(87), [anon_sym_thread] = ACTIONS(89), [anon_sym_atomic] = ACTIONS(91), - [sym___double_quote] = ACTIONS(861), - [sym___single_quote] = ACTIONS(863), - [sym___c_double_quote] = ACTIONS(865), - [sym___c_single_quote] = ACTIONS(867), - [sym___r_double_quote] = ACTIONS(869), - [sym___r_single_quote] = ACTIONS(871), + [sym___double_quote] = ACTIONS(3342), + [sym___single_quote] = ACTIONS(3344), + [sym___c_double_quote] = ACTIONS(3346), + [sym___c_single_quote] = ACTIONS(3348), + [sym___r_double_quote] = ACTIONS(3350), + [sym___r_single_quote] = ACTIONS(3352), }, [694] = { [sym_line_comment] = STATE(694), [sym_block_comment] = STATE(694), - [sym__expression] = STATE(2119), - [sym__expression_without_blocks] = STATE(2226), - [sym__expression_with_blocks] = STATE(2226), - [sym_inc_expression] = STATE(2247), - [sym_dec_expression] = STATE(2247), - [sym_or_block_expression] = STATE(2247), - [sym_option_propagation_expression] = STATE(2247), - [sym_result_propagation_expression] = STATE(2247), - [sym_anon_struct_value_expression] = STATE(2248), - [sym_go_expression] = STATE(2247), - [sym_spawn_expression] = STATE(2247), - [sym_parenthesized_expression] = STATE(2247), - [sym_call_expression] = STATE(2247), - [sym_type_initializer] = STATE(2248), - [sym_function_literal] = STATE(2247), - [sym_reference_expression] = STATE(2252), - [sym_type_reference_expression] = STATE(3541), - [sym_unary_expression] = STATE(2247), - [sym_receive_expression] = STATE(2247), - [sym_binary_expression] = STATE(2247), - [sym_as_type_cast_expression] = STATE(2247), - [sym__max_group] = STATE(2247), - [sym_literal] = STATE(2155), - [sym_map_init_expression] = STATE(2248), - [sym_array_creation] = STATE(2247), - [sym_fixed_array_creation] = STATE(2247), - [sym_selector_expression] = STATE(2247), - [sym_index_expression] = STATE(2247), - [sym_slice_expression] = STATE(2247), - [sym_if_expression] = STATE(2248), - [sym_compile_time_if_expression] = STATE(2248), - [sym_is_expression] = STATE(2247), - [sym_in_expression] = STATE(2247), - [sym_enum_fetch] = STATE(2247), - [sym_match_expression] = STATE(2248), - [sym_select_expression] = STATE(2248), - [sym_lock_expression] = STATE(2248), - [sym_unsafe_expression] = STATE(2248), - [sym_sql_expression] = STATE(2248), - [sym_c_string_literal] = STATE(2153), - [sym_raw_string_literal] = STATE(2153), - [sym_interpreted_string_literal] = STATE(2153), - [sym_mutability_modifiers] = STATE(631), - [sym_plain_type] = STATE(4146), - [sym__plain_type_without_special] = STATE(2302), - [sym_anon_struct_type] = STATE(2303), - [sym_multi_return_type] = STATE(2302), - [sym_result_type] = STATE(2302), - [sym_option_type] = STATE(2302), - [sym_qualified_type] = STATE(3541), - [sym_fixed_array_type] = STATE(2303), - [sym_array_type] = STATE(2303), - [sym_pointer_type] = STATE(2303), - [sym_wrong_pointer_type] = STATE(2303), - [sym_map_type] = STATE(2303), - [sym_channel_type] = STATE(2303), - [sym_shared_type] = STATE(2303), - [sym_thread_type] = STATE(2303), - [sym_atomic_type] = STATE(2303), - [sym_generic_type] = STATE(2303), - [sym_function_type] = STATE(2303), - [sym_identifier] = ACTIONS(3286), + [sym__expression] = STATE(1760), + [sym__expression_without_blocks] = STATE(1915), + [sym__expression_with_blocks] = STATE(1915), + [sym_inc_expression] = STATE(2035), + [sym_dec_expression] = STATE(2035), + [sym_or_block_expression] = STATE(2035), + [sym_option_propagation_expression] = STATE(2035), + [sym_result_propagation_expression] = STATE(2035), + [sym_anon_struct_value_expression] = STATE(1939), + [sym_go_expression] = STATE(2035), + [sym_spawn_expression] = STATE(2035), + [sym_parenthesized_expression] = STATE(2035), + [sym_call_expression] = STATE(2035), + [sym_type_initializer] = STATE(1939), + [sym_function_literal] = STATE(2035), + [sym_reference_expression] = STATE(1944), + [sym_type_reference_expression] = STATE(3460), + [sym_unary_expression] = STATE(2035), + [sym_receive_expression] = STATE(2035), + [sym_binary_expression] = STATE(2035), + [sym_as_type_cast_expression] = STATE(2035), + [sym__max_group] = STATE(2035), + [sym_literal] = STATE(2030), + [sym_map_init_expression] = STATE(1939), + [sym_array_creation] = STATE(2035), + [sym_fixed_array_creation] = STATE(2035), + [sym_selector_expression] = STATE(2035), + [sym_index_expression] = STATE(2035), + [sym_slice_expression] = STATE(2035), + [sym_if_expression] = STATE(1939), + [sym_compile_time_if_expression] = STATE(1939), + [sym_is_expression] = STATE(2035), + [sym_in_expression] = STATE(2035), + [sym_enum_fetch] = STATE(2035), + [sym_match_expression] = STATE(1939), + [sym_select_expression] = STATE(1939), + [sym_lock_expression] = STATE(1939), + [sym_unsafe_expression] = STATE(1939), + [sym_sql_expression] = STATE(1939), + [sym_c_string_literal] = STATE(2029), + [sym_raw_string_literal] = STATE(2029), + [sym_interpreted_string_literal] = STATE(2029), + [sym_mutability_modifiers] = STATE(555), + [sym_plain_type] = STATE(4014), + [sym__plain_type_without_special] = STATE(2360), + [sym_anon_struct_type] = STATE(2362), + [sym_multi_return_type] = STATE(2360), + [sym_result_type] = STATE(2360), + [sym_option_type] = STATE(2360), + [sym_qualified_type] = STATE(3460), + [sym_fixed_array_type] = STATE(2362), + [sym_array_type] = STATE(2362), + [sym_pointer_type] = STATE(2362), + [sym_wrong_pointer_type] = STATE(2362), + [sym_map_type] = STATE(2362), + [sym_channel_type] = STATE(2362), + [sym_shared_type] = STATE(2362), + [sym_thread_type] = STATE(2362), + [sym_atomic_type] = STATE(2362), + [sym_generic_type] = STATE(2362), + [sym_function_type] = STATE(2362), + [sym_identifier] = ACTIONS(3272), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(3288), - [anon_sym_LBRACE] = ACTIONS(3290), - [anon_sym_LPAREN] = ACTIONS(3292), - [anon_sym_fn] = ACTIONS(3294), - [anon_sym_PLUS] = ACTIONS(3398), - [anon_sym_DASH] = ACTIONS(3398), - [anon_sym_STAR] = ACTIONS(3400), - [anon_sym_struct] = ACTIONS(3300), + [anon_sym_DOT] = ACTIONS(769), + [anon_sym_LBRACE] = ACTIONS(3274), + [anon_sym_LPAREN] = ACTIONS(775), + [anon_sym_fn] = ACTIONS(777), + [anon_sym_PLUS] = ACTIONS(779), + [anon_sym_DASH] = ACTIONS(779), + [anon_sym_STAR] = ACTIONS(781), + [anon_sym_struct] = ACTIONS(3276), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(3402), - [anon_sym_go] = ACTIONS(3404), - [anon_sym_spawn] = ACTIONS(3406), - [anon_sym_json_DOTdecode] = ACTIONS(3308), - [anon_sym_LBRACK2] = ACTIONS(3310), - [anon_sym_TILDE] = ACTIONS(3398), - [anon_sym_CARET] = ACTIONS(3398), - [anon_sym_AMP] = ACTIONS(3408), - [anon_sym_LT_DASH] = ACTIONS(3410), - [sym_none] = ACTIONS(3316), - [sym_true] = ACTIONS(3316), - [sym_false] = ACTIONS(3316), - [sym_nil] = ACTIONS(3316), - [anon_sym_if] = ACTIONS(3318), - [anon_sym_DOLLARif] = ACTIONS(3320), - [anon_sym_match] = ACTIONS(3322), - [anon_sym_select] = ACTIONS(3412), - [anon_sym_lock] = ACTIONS(3414), - [anon_sym_rlock] = ACTIONS(3414), - [anon_sym_unsafe] = ACTIONS(3328), - [anon_sym_sql] = ACTIONS(3330), - [sym_int_literal] = ACTIONS(3316), - [sym_float_literal] = ACTIONS(3332), - [sym_rune_literal] = ACTIONS(3332), - [sym_pseudo_compile_time_identifier] = ACTIONS(3334), + [anon_sym_BANG] = ACTIONS(785), + [anon_sym_go] = ACTIONS(787), + [anon_sym_spawn] = ACTIONS(789), + [anon_sym_json_DOTdecode] = ACTIONS(791), + [anon_sym_LBRACK2] = ACTIONS(793), + [anon_sym_TILDE] = ACTIONS(779), + [anon_sym_CARET] = ACTIONS(779), + [anon_sym_AMP] = ACTIONS(795), + [anon_sym_LT_DASH] = ACTIONS(797), + [sym_none] = ACTIONS(799), + [sym_true] = ACTIONS(799), + [sym_false] = ACTIONS(799), + [sym_nil] = ACTIONS(799), + [anon_sym_if] = ACTIONS(3278), + [anon_sym_DOLLARif] = ACTIONS(3280), + [anon_sym_match] = ACTIONS(3282), + [anon_sym_select] = ACTIONS(3284), + [anon_sym_lock] = ACTIONS(3286), + [anon_sym_rlock] = ACTIONS(3286), + [anon_sym_unsafe] = ACTIONS(3288), + [anon_sym_sql] = ACTIONS(3290), + [sym_int_literal] = ACTIONS(799), + [sym_float_literal] = ACTIONS(817), + [sym_rune_literal] = ACTIONS(817), + [sym_pseudo_compile_time_identifier] = ACTIONS(819), [anon_sym_shared] = ACTIONS(83), [anon_sym_map_LBRACK] = ACTIONS(85), [anon_sym_chan] = ACTIONS(87), [anon_sym_thread] = ACTIONS(89), [anon_sym_atomic] = ACTIONS(91), - [sym___double_quote] = ACTIONS(3336), - [sym___single_quote] = ACTIONS(3338), - [sym___c_double_quote] = ACTIONS(3340), - [sym___c_single_quote] = ACTIONS(3342), - [sym___r_double_quote] = ACTIONS(3344), - [sym___r_single_quote] = ACTIONS(3346), + [sym___double_quote] = ACTIONS(821), + [sym___single_quote] = ACTIONS(823), + [sym___c_double_quote] = ACTIONS(825), + [sym___c_single_quote] = ACTIONS(827), + [sym___r_double_quote] = ACTIONS(829), + [sym___r_single_quote] = ACTIONS(831), }, [695] = { [sym_line_comment] = STATE(695), [sym_block_comment] = STATE(695), - [sym__expression] = STATE(2210), - [sym__expression_without_blocks] = STATE(2226), - [sym__expression_with_blocks] = STATE(2226), - [sym_inc_expression] = STATE(2247), - [sym_dec_expression] = STATE(2247), - [sym_or_block_expression] = STATE(2247), - [sym_option_propagation_expression] = STATE(2247), - [sym_result_propagation_expression] = STATE(2247), - [sym_anon_struct_value_expression] = STATE(2248), - [sym_go_expression] = STATE(2247), - [sym_spawn_expression] = STATE(2247), - [sym_parenthesized_expression] = STATE(2247), - [sym_call_expression] = STATE(2247), - [sym_type_initializer] = STATE(2248), - [sym_function_literal] = STATE(2247), - [sym_reference_expression] = STATE(2252), - [sym_type_reference_expression] = STATE(3541), - [sym_unary_expression] = STATE(2247), - [sym_receive_expression] = STATE(2247), - [sym_binary_expression] = STATE(2247), - [sym_as_type_cast_expression] = STATE(2247), - [sym__max_group] = STATE(2247), - [sym_literal] = STATE(2155), - [sym_map_init_expression] = STATE(2248), - [sym_array_creation] = STATE(2247), - [sym_fixed_array_creation] = STATE(2247), - [sym_selector_expression] = STATE(2247), - [sym_index_expression] = STATE(2247), - [sym_slice_expression] = STATE(2247), - [sym_if_expression] = STATE(2248), - [sym_compile_time_if_expression] = STATE(2248), - [sym_is_expression] = STATE(2247), - [sym_in_expression] = STATE(2247), - [sym_enum_fetch] = STATE(2247), - [sym_match_expression] = STATE(2248), - [sym_select_expression] = STATE(2248), - [sym_lock_expression] = STATE(2248), - [sym_unsafe_expression] = STATE(2248), - [sym_sql_expression] = STATE(2248), - [sym_c_string_literal] = STATE(2153), - [sym_raw_string_literal] = STATE(2153), - [sym_interpreted_string_literal] = STATE(2153), - [sym_mutability_modifiers] = STATE(631), - [sym_plain_type] = STATE(4146), - [sym__plain_type_without_special] = STATE(2302), - [sym_anon_struct_type] = STATE(2303), - [sym_multi_return_type] = STATE(2302), - [sym_result_type] = STATE(2302), - [sym_option_type] = STATE(2302), - [sym_qualified_type] = STATE(3541), - [sym_fixed_array_type] = STATE(2303), - [sym_array_type] = STATE(2303), - [sym_pointer_type] = STATE(2303), - [sym_wrong_pointer_type] = STATE(2303), - [sym_map_type] = STATE(2303), - [sym_channel_type] = STATE(2303), - [sym_shared_type] = STATE(2303), - [sym_thread_type] = STATE(2303), - [sym_atomic_type] = STATE(2303), - [sym_generic_type] = STATE(2303), - [sym_function_type] = STATE(2303), - [sym_identifier] = ACTIONS(3286), + [sym__expression] = STATE(2122), + [sym__expression_without_blocks] = STATE(2162), + [sym__expression_with_blocks] = STATE(2162), + [sym_inc_expression] = STATE(2161), + [sym_dec_expression] = STATE(2161), + [sym_or_block_expression] = STATE(2161), + [sym_option_propagation_expression] = STATE(2161), + [sym_result_propagation_expression] = STATE(2161), + [sym_anon_struct_value_expression] = STATE(2160), + [sym_go_expression] = STATE(2161), + [sym_spawn_expression] = STATE(2161), + [sym_parenthesized_expression] = STATE(2161), + [sym_call_expression] = STATE(2161), + [sym_type_initializer] = STATE(2160), + [sym_function_literal] = STATE(2161), + [sym_reference_expression] = STATE(2159), + [sym_type_reference_expression] = STATE(3460), + [sym_unary_expression] = STATE(2161), + [sym_receive_expression] = STATE(2161), + [sym_binary_expression] = STATE(2161), + [sym_as_type_cast_expression] = STATE(2161), + [sym__max_group] = STATE(2161), + [sym_literal] = STATE(2164), + [sym_map_init_expression] = STATE(2160), + [sym_array_creation] = STATE(2161), + [sym_fixed_array_creation] = STATE(2161), + [sym_selector_expression] = STATE(2161), + [sym_index_expression] = STATE(2161), + [sym_slice_expression] = STATE(2161), + [sym_if_expression] = STATE(2160), + [sym_compile_time_if_expression] = STATE(2160), + [sym_is_expression] = STATE(2161), + [sym_in_expression] = STATE(2161), + [sym_enum_fetch] = STATE(2161), + [sym_match_expression] = STATE(2160), + [sym_select_expression] = STATE(2160), + [sym_lock_expression] = STATE(2160), + [sym_unsafe_expression] = STATE(2160), + [sym_sql_expression] = STATE(2160), + [sym_c_string_literal] = STATE(2166), + [sym_raw_string_literal] = STATE(2166), + [sym_interpreted_string_literal] = STATE(2166), + [sym_mutability_modifiers] = STATE(575), + [sym_plain_type] = STATE(4166), + [sym__plain_type_without_special] = STATE(2360), + [sym_anon_struct_type] = STATE(2362), + [sym_multi_return_type] = STATE(2360), + [sym_result_type] = STATE(2360), + [sym_option_type] = STATE(2360), + [sym_qualified_type] = STATE(3460), + [sym_fixed_array_type] = STATE(2362), + [sym_array_type] = STATE(2362), + [sym_pointer_type] = STATE(2362), + [sym_wrong_pointer_type] = STATE(2362), + [sym_map_type] = STATE(2362), + [sym_channel_type] = STATE(2362), + [sym_shared_type] = STATE(2362), + [sym_thread_type] = STATE(2362), + [sym_atomic_type] = STATE(2362), + [sym_generic_type] = STATE(2362), + [sym_function_type] = STATE(2362), + [sym_identifier] = ACTIONS(3292), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(3288), - [anon_sym_LBRACE] = ACTIONS(3290), - [anon_sym_LPAREN] = ACTIONS(3292), - [anon_sym_fn] = ACTIONS(3294), - [anon_sym_PLUS] = ACTIONS(3398), - [anon_sym_DASH] = ACTIONS(3398), - [anon_sym_STAR] = ACTIONS(3400), - [anon_sym_struct] = ACTIONS(3300), + [anon_sym_DOT] = ACTIONS(3294), + [anon_sym_LBRACE] = ACTIONS(3296), + [anon_sym_LPAREN] = ACTIONS(3298), + [anon_sym_fn] = ACTIONS(3300), + [anon_sym_PLUS] = ACTIONS(3404), + [anon_sym_DASH] = ACTIONS(3404), + [anon_sym_STAR] = ACTIONS(3406), + [anon_sym_struct] = ACTIONS(3306), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(3402), - [anon_sym_go] = ACTIONS(3404), - [anon_sym_spawn] = ACTIONS(3406), - [anon_sym_json_DOTdecode] = ACTIONS(3308), - [anon_sym_LBRACK2] = ACTIONS(3310), - [anon_sym_TILDE] = ACTIONS(3398), - [anon_sym_CARET] = ACTIONS(3398), - [anon_sym_AMP] = ACTIONS(3408), - [anon_sym_LT_DASH] = ACTIONS(3410), - [sym_none] = ACTIONS(3316), - [sym_true] = ACTIONS(3316), - [sym_false] = ACTIONS(3316), - [sym_nil] = ACTIONS(3316), - [anon_sym_if] = ACTIONS(3318), - [anon_sym_DOLLARif] = ACTIONS(3320), - [anon_sym_match] = ACTIONS(3322), - [anon_sym_select] = ACTIONS(3412), - [anon_sym_lock] = ACTIONS(3414), - [anon_sym_rlock] = ACTIONS(3414), - [anon_sym_unsafe] = ACTIONS(3328), - [anon_sym_sql] = ACTIONS(3330), - [sym_int_literal] = ACTIONS(3316), - [sym_float_literal] = ACTIONS(3332), - [sym_rune_literal] = ACTIONS(3332), - [sym_pseudo_compile_time_identifier] = ACTIONS(3334), + [anon_sym_BANG] = ACTIONS(3408), + [anon_sym_go] = ACTIONS(3410), + [anon_sym_spawn] = ACTIONS(3412), + [anon_sym_json_DOTdecode] = ACTIONS(3314), + [anon_sym_LBRACK2] = ACTIONS(3316), + [anon_sym_TILDE] = ACTIONS(3404), + [anon_sym_CARET] = ACTIONS(3404), + [anon_sym_AMP] = ACTIONS(3414), + [anon_sym_LT_DASH] = ACTIONS(3416), + [sym_none] = ACTIONS(3322), + [sym_true] = ACTIONS(3322), + [sym_false] = ACTIONS(3322), + [sym_nil] = ACTIONS(3322), + [anon_sym_if] = ACTIONS(3324), + [anon_sym_DOLLARif] = ACTIONS(3326), + [anon_sym_match] = ACTIONS(3328), + [anon_sym_select] = ACTIONS(3418), + [anon_sym_lock] = ACTIONS(3420), + [anon_sym_rlock] = ACTIONS(3420), + [anon_sym_unsafe] = ACTIONS(3334), + [anon_sym_sql] = ACTIONS(3336), + [sym_int_literal] = ACTIONS(3322), + [sym_float_literal] = ACTIONS(3338), + [sym_rune_literal] = ACTIONS(3338), + [sym_pseudo_compile_time_identifier] = ACTIONS(3340), [anon_sym_shared] = ACTIONS(83), [anon_sym_map_LBRACK] = ACTIONS(85), [anon_sym_chan] = ACTIONS(87), [anon_sym_thread] = ACTIONS(89), [anon_sym_atomic] = ACTIONS(91), - [sym___double_quote] = ACTIONS(3336), - [sym___single_quote] = ACTIONS(3338), - [sym___c_double_quote] = ACTIONS(3340), - [sym___c_single_quote] = ACTIONS(3342), - [sym___r_double_quote] = ACTIONS(3344), - [sym___r_single_quote] = ACTIONS(3346), + [sym___double_quote] = ACTIONS(3342), + [sym___single_quote] = ACTIONS(3344), + [sym___c_double_quote] = ACTIONS(3346), + [sym___c_single_quote] = ACTIONS(3348), + [sym___r_double_quote] = ACTIONS(3350), + [sym___r_single_quote] = ACTIONS(3352), }, [696] = { [sym_line_comment] = STATE(696), [sym_block_comment] = STATE(696), - [sym__expression] = STATE(2207), - [sym__expression_without_blocks] = STATE(2226), - [sym__expression_with_blocks] = STATE(2226), - [sym_inc_expression] = STATE(2247), - [sym_dec_expression] = STATE(2247), - [sym_or_block_expression] = STATE(2247), - [sym_option_propagation_expression] = STATE(2247), - [sym_result_propagation_expression] = STATE(2247), - [sym_anon_struct_value_expression] = STATE(2248), - [sym_go_expression] = STATE(2247), - [sym_spawn_expression] = STATE(2247), - [sym_parenthesized_expression] = STATE(2247), - [sym_call_expression] = STATE(2247), - [sym_type_initializer] = STATE(2248), - [sym_function_literal] = STATE(2247), - [sym_reference_expression] = STATE(2252), - [sym_type_reference_expression] = STATE(3541), - [sym_unary_expression] = STATE(2247), - [sym_receive_expression] = STATE(2247), - [sym_binary_expression] = STATE(2247), - [sym_as_type_cast_expression] = STATE(2247), - [sym__max_group] = STATE(2247), - [sym_literal] = STATE(2155), - [sym_map_init_expression] = STATE(2248), - [sym_array_creation] = STATE(2247), - [sym_fixed_array_creation] = STATE(2247), - [sym_selector_expression] = STATE(2247), - [sym_index_expression] = STATE(2247), - [sym_slice_expression] = STATE(2247), - [sym_if_expression] = STATE(2248), - [sym_compile_time_if_expression] = STATE(2248), - [sym_is_expression] = STATE(2247), - [sym_in_expression] = STATE(2247), - [sym_enum_fetch] = STATE(2247), - [sym_match_expression] = STATE(2248), - [sym_select_expression] = STATE(2248), - [sym_lock_expression] = STATE(2248), - [sym_unsafe_expression] = STATE(2248), - [sym_sql_expression] = STATE(2248), - [sym_c_string_literal] = STATE(2153), - [sym_raw_string_literal] = STATE(2153), - [sym_interpreted_string_literal] = STATE(2153), - [sym_mutability_modifiers] = STATE(631), - [sym_plain_type] = STATE(4146), - [sym__plain_type_without_special] = STATE(2302), - [sym_anon_struct_type] = STATE(2303), - [sym_multi_return_type] = STATE(2302), - [sym_result_type] = STATE(2302), - [sym_option_type] = STATE(2302), - [sym_qualified_type] = STATE(3541), - [sym_fixed_array_type] = STATE(2303), - [sym_array_type] = STATE(2303), - [sym_pointer_type] = STATE(2303), - [sym_wrong_pointer_type] = STATE(2303), - [sym_map_type] = STATE(2303), - [sym_channel_type] = STATE(2303), - [sym_shared_type] = STATE(2303), - [sym_thread_type] = STATE(2303), - [sym_atomic_type] = STATE(2303), - [sym_generic_type] = STATE(2303), - [sym_function_type] = STATE(2303), - [sym_identifier] = ACTIONS(3286), + [sym__expression] = STATE(1761), + [sym__expression_without_blocks] = STATE(1915), + [sym__expression_with_blocks] = STATE(1915), + [sym_inc_expression] = STATE(2035), + [sym_dec_expression] = STATE(2035), + [sym_or_block_expression] = STATE(2035), + [sym_option_propagation_expression] = STATE(2035), + [sym_result_propagation_expression] = STATE(2035), + [sym_anon_struct_value_expression] = STATE(1939), + [sym_go_expression] = STATE(2035), + [sym_spawn_expression] = STATE(2035), + [sym_parenthesized_expression] = STATE(2035), + [sym_call_expression] = STATE(2035), + [sym_type_initializer] = STATE(1939), + [sym_function_literal] = STATE(2035), + [sym_reference_expression] = STATE(1944), + [sym_type_reference_expression] = STATE(3460), + [sym_unary_expression] = STATE(2035), + [sym_receive_expression] = STATE(2035), + [sym_binary_expression] = STATE(2035), + [sym_as_type_cast_expression] = STATE(2035), + [sym__max_group] = STATE(2035), + [sym_literal] = STATE(2030), + [sym_map_init_expression] = STATE(1939), + [sym_array_creation] = STATE(2035), + [sym_fixed_array_creation] = STATE(2035), + [sym_selector_expression] = STATE(2035), + [sym_index_expression] = STATE(2035), + [sym_slice_expression] = STATE(2035), + [sym_if_expression] = STATE(1939), + [sym_compile_time_if_expression] = STATE(1939), + [sym_is_expression] = STATE(2035), + [sym_in_expression] = STATE(2035), + [sym_enum_fetch] = STATE(2035), + [sym_match_expression] = STATE(1939), + [sym_select_expression] = STATE(1939), + [sym_lock_expression] = STATE(1939), + [sym_unsafe_expression] = STATE(1939), + [sym_sql_expression] = STATE(1939), + [sym_c_string_literal] = STATE(2029), + [sym_raw_string_literal] = STATE(2029), + [sym_interpreted_string_literal] = STATE(2029), + [sym_mutability_modifiers] = STATE(555), + [sym_plain_type] = STATE(4014), + [sym__plain_type_without_special] = STATE(2360), + [sym_anon_struct_type] = STATE(2362), + [sym_multi_return_type] = STATE(2360), + [sym_result_type] = STATE(2360), + [sym_option_type] = STATE(2360), + [sym_qualified_type] = STATE(3460), + [sym_fixed_array_type] = STATE(2362), + [sym_array_type] = STATE(2362), + [sym_pointer_type] = STATE(2362), + [sym_wrong_pointer_type] = STATE(2362), + [sym_map_type] = STATE(2362), + [sym_channel_type] = STATE(2362), + [sym_shared_type] = STATE(2362), + [sym_thread_type] = STATE(2362), + [sym_atomic_type] = STATE(2362), + [sym_generic_type] = STATE(2362), + [sym_function_type] = STATE(2362), + [sym_identifier] = ACTIONS(3272), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(3288), - [anon_sym_LBRACE] = ACTIONS(3290), - [anon_sym_LPAREN] = ACTIONS(3292), - [anon_sym_fn] = ACTIONS(3294), - [anon_sym_PLUS] = ACTIONS(3398), - [anon_sym_DASH] = ACTIONS(3398), - [anon_sym_STAR] = ACTIONS(3400), - [anon_sym_struct] = ACTIONS(3300), + [anon_sym_DOT] = ACTIONS(769), + [anon_sym_LBRACE] = ACTIONS(3274), + [anon_sym_LPAREN] = ACTIONS(775), + [anon_sym_fn] = ACTIONS(777), + [anon_sym_PLUS] = ACTIONS(779), + [anon_sym_DASH] = ACTIONS(779), + [anon_sym_STAR] = ACTIONS(781), + [anon_sym_struct] = ACTIONS(3276), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(3402), - [anon_sym_go] = ACTIONS(3404), - [anon_sym_spawn] = ACTIONS(3406), - [anon_sym_json_DOTdecode] = ACTIONS(3308), - [anon_sym_LBRACK2] = ACTIONS(3310), - [anon_sym_TILDE] = ACTIONS(3398), - [anon_sym_CARET] = ACTIONS(3398), - [anon_sym_AMP] = ACTIONS(3408), - [anon_sym_LT_DASH] = ACTIONS(3410), - [sym_none] = ACTIONS(3316), - [sym_true] = ACTIONS(3316), - [sym_false] = ACTIONS(3316), - [sym_nil] = ACTIONS(3316), - [anon_sym_if] = ACTIONS(3318), - [anon_sym_DOLLARif] = ACTIONS(3320), - [anon_sym_match] = ACTIONS(3322), - [anon_sym_select] = ACTIONS(3412), - [anon_sym_lock] = ACTIONS(3414), - [anon_sym_rlock] = ACTIONS(3414), - [anon_sym_unsafe] = ACTIONS(3328), - [anon_sym_sql] = ACTIONS(3330), - [sym_int_literal] = ACTIONS(3316), - [sym_float_literal] = ACTIONS(3332), - [sym_rune_literal] = ACTIONS(3332), - [sym_pseudo_compile_time_identifier] = ACTIONS(3334), + [anon_sym_BANG] = ACTIONS(785), + [anon_sym_go] = ACTIONS(787), + [anon_sym_spawn] = ACTIONS(789), + [anon_sym_json_DOTdecode] = ACTIONS(791), + [anon_sym_LBRACK2] = ACTIONS(793), + [anon_sym_TILDE] = ACTIONS(779), + [anon_sym_CARET] = ACTIONS(779), + [anon_sym_AMP] = ACTIONS(795), + [anon_sym_LT_DASH] = ACTIONS(797), + [sym_none] = ACTIONS(799), + [sym_true] = ACTIONS(799), + [sym_false] = ACTIONS(799), + [sym_nil] = ACTIONS(799), + [anon_sym_if] = ACTIONS(3278), + [anon_sym_DOLLARif] = ACTIONS(3280), + [anon_sym_match] = ACTIONS(3282), + [anon_sym_select] = ACTIONS(3284), + [anon_sym_lock] = ACTIONS(3286), + [anon_sym_rlock] = ACTIONS(3286), + [anon_sym_unsafe] = ACTIONS(3288), + [anon_sym_sql] = ACTIONS(3290), + [sym_int_literal] = ACTIONS(799), + [sym_float_literal] = ACTIONS(817), + [sym_rune_literal] = ACTIONS(817), + [sym_pseudo_compile_time_identifier] = ACTIONS(819), [anon_sym_shared] = ACTIONS(83), [anon_sym_map_LBRACK] = ACTIONS(85), [anon_sym_chan] = ACTIONS(87), [anon_sym_thread] = ACTIONS(89), [anon_sym_atomic] = ACTIONS(91), - [sym___double_quote] = ACTIONS(3336), - [sym___single_quote] = ACTIONS(3338), - [sym___c_double_quote] = ACTIONS(3340), - [sym___c_single_quote] = ACTIONS(3342), - [sym___r_double_quote] = ACTIONS(3344), - [sym___r_single_quote] = ACTIONS(3346), + [sym___double_quote] = ACTIONS(821), + [sym___single_quote] = ACTIONS(823), + [sym___c_double_quote] = ACTIONS(825), + [sym___c_single_quote] = ACTIONS(827), + [sym___r_double_quote] = ACTIONS(829), + [sym___r_single_quote] = ACTIONS(831), }, [697] = { [sym_line_comment] = STATE(697), [sym_block_comment] = STATE(697), - [sym__expression] = STATE(957), - [sym__expression_without_blocks] = STATE(1017), - [sym__expression_with_blocks] = STATE(1017), - [sym_inc_expression] = STATE(1018), - [sym_dec_expression] = STATE(1018), - [sym_or_block_expression] = STATE(1018), - [sym_option_propagation_expression] = STATE(1018), - [sym_result_propagation_expression] = STATE(1018), - [sym_anon_struct_value_expression] = STATE(993), - [sym_go_expression] = STATE(1018), - [sym_spawn_expression] = STATE(1018), - [sym_parenthesized_expression] = STATE(1018), - [sym_call_expression] = STATE(1018), - [sym_type_initializer] = STATE(993), - [sym_function_literal] = STATE(1018), - [sym_reference_expression] = STATE(1046), - [sym_type_reference_expression] = STATE(3541), - [sym_unary_expression] = STATE(1018), - [sym_receive_expression] = STATE(1018), - [sym_binary_expression] = STATE(1018), - [sym_as_type_cast_expression] = STATE(1018), - [sym__max_group] = STATE(1018), - [sym_literal] = STATE(1014), - [sym_map_init_expression] = STATE(993), - [sym_array_creation] = STATE(1018), - [sym_fixed_array_creation] = STATE(1018), - [sym_selector_expression] = STATE(1018), - [sym_index_expression] = STATE(1018), - [sym_slice_expression] = STATE(1018), - [sym_if_expression] = STATE(993), - [sym_compile_time_if_expression] = STATE(993), - [sym_is_expression] = STATE(1018), - [sym_in_expression] = STATE(1018), - [sym_enum_fetch] = STATE(1018), - [sym_match_expression] = STATE(993), - [sym_select_expression] = STATE(993), - [sym_lock_expression] = STATE(993), - [sym_unsafe_expression] = STATE(993), - [sym_sql_expression] = STATE(993), - [sym_c_string_literal] = STATE(1006), - [sym_raw_string_literal] = STATE(1006), - [sym_interpreted_string_literal] = STATE(1006), - [sym_mutability_modifiers] = STATE(691), - [sym_plain_type] = STATE(4296), - [sym__plain_type_without_special] = STATE(2302), - [sym_anon_struct_type] = STATE(2303), - [sym_multi_return_type] = STATE(2302), - [sym_result_type] = STATE(2302), - [sym_option_type] = STATE(2302), - [sym_qualified_type] = STATE(3541), - [sym_fixed_array_type] = STATE(2303), - [sym_array_type] = STATE(2303), - [sym_pointer_type] = STATE(2303), - [sym_wrong_pointer_type] = STATE(2303), - [sym_map_type] = STATE(2303), - [sym_channel_type] = STATE(2303), - [sym_shared_type] = STATE(2303), - [sym_thread_type] = STATE(2303), - [sym_atomic_type] = STATE(2303), - [sym_generic_type] = STATE(2303), - [sym_function_type] = STATE(2303), - [sym_identifier] = ACTIONS(493), + [sym__expression] = STATE(2122), + [sym__expression_without_blocks] = STATE(2162), + [sym__expression_with_blocks] = STATE(2162), + [sym_inc_expression] = STATE(2161), + [sym_dec_expression] = STATE(2161), + [sym_or_block_expression] = STATE(2161), + [sym_option_propagation_expression] = STATE(2161), + [sym_result_propagation_expression] = STATE(2161), + [sym_anon_struct_value_expression] = STATE(2160), + [sym_go_expression] = STATE(2161), + [sym_spawn_expression] = STATE(2161), + [sym_parenthesized_expression] = STATE(2161), + [sym_call_expression] = STATE(2161), + [sym_type_initializer] = STATE(2160), + [sym_function_literal] = STATE(2161), + [sym_reference_expression] = STATE(2159), + [sym_type_reference_expression] = STATE(3460), + [sym_unary_expression] = STATE(2161), + [sym_receive_expression] = STATE(2161), + [sym_binary_expression] = STATE(2161), + [sym_as_type_cast_expression] = STATE(2161), + [sym__max_group] = STATE(2161), + [sym_literal] = STATE(2164), + [sym_map_init_expression] = STATE(2160), + [sym_array_creation] = STATE(2161), + [sym_fixed_array_creation] = STATE(2161), + [sym_selector_expression] = STATE(2161), + [sym_index_expression] = STATE(2161), + [sym_slice_expression] = STATE(2161), + [sym_if_expression] = STATE(2160), + [sym_compile_time_if_expression] = STATE(2160), + [sym_is_expression] = STATE(2161), + [sym_in_expression] = STATE(2161), + [sym_enum_fetch] = STATE(2161), + [sym_match_expression] = STATE(2160), + [sym_select_expression] = STATE(2160), + [sym_lock_expression] = STATE(2160), + [sym_unsafe_expression] = STATE(2160), + [sym_sql_expression] = STATE(2160), + [sym_c_string_literal] = STATE(2166), + [sym_raw_string_literal] = STATE(2166), + [sym_interpreted_string_literal] = STATE(2166), + [sym_mutability_modifiers] = STATE(575), + [sym_plain_type] = STATE(4165), + [sym__plain_type_without_special] = STATE(2360), + [sym_anon_struct_type] = STATE(2362), + [sym_multi_return_type] = STATE(2360), + [sym_result_type] = STATE(2360), + [sym_option_type] = STATE(2360), + [sym_qualified_type] = STATE(3460), + [sym_fixed_array_type] = STATE(2362), + [sym_array_type] = STATE(2362), + [sym_pointer_type] = STATE(2362), + [sym_wrong_pointer_type] = STATE(2362), + [sym_map_type] = STATE(2362), + [sym_channel_type] = STATE(2362), + [sym_shared_type] = STATE(2362), + [sym_thread_type] = STATE(2362), + [sym_atomic_type] = STATE(2362), + [sym_generic_type] = STATE(2362), + [sym_function_type] = STATE(2362), + [sym_identifier] = ACTIONS(3292), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(501), - [anon_sym_LBRACE] = ACTIONS(2319), - [anon_sym_LPAREN] = ACTIONS(2321), - [anon_sym_fn] = ACTIONS(507), - [anon_sym_PLUS] = ACTIONS(2323), - [anon_sym_DASH] = ACTIONS(2323), - [anon_sym_STAR] = ACTIONS(2325), - [anon_sym_struct] = ACTIONS(513), + [anon_sym_DOT] = ACTIONS(3294), + [anon_sym_LBRACE] = ACTIONS(3296), + [anon_sym_LPAREN] = ACTIONS(3298), + [anon_sym_fn] = ACTIONS(3300), + [anon_sym_PLUS] = ACTIONS(3404), + [anon_sym_DASH] = ACTIONS(3404), + [anon_sym_STAR] = ACTIONS(3406), + [anon_sym_struct] = ACTIONS(3306), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(2327), - [anon_sym_go] = ACTIONS(519), - [anon_sym_spawn] = ACTIONS(521), - [anon_sym_json_DOTdecode] = ACTIONS(2329), - [anon_sym_LBRACK2] = ACTIONS(2331), - [anon_sym_TILDE] = ACTIONS(2323), - [anon_sym_CARET] = ACTIONS(2323), - [anon_sym_AMP] = ACTIONS(2333), - [anon_sym_LT_DASH] = ACTIONS(2335), - [sym_none] = ACTIONS(531), - [sym_true] = ACTIONS(531), - [sym_false] = ACTIONS(531), - [sym_nil] = ACTIONS(531), - [anon_sym_if] = ACTIONS(533), - [anon_sym_DOLLARif] = ACTIONS(535), - [anon_sym_match] = ACTIONS(537), - [anon_sym_select] = ACTIONS(539), - [anon_sym_lock] = ACTIONS(541), - [anon_sym_rlock] = ACTIONS(541), - [anon_sym_unsafe] = ACTIONS(543), - [anon_sym_sql] = ACTIONS(545), - [sym_int_literal] = ACTIONS(531), - [sym_float_literal] = ACTIONS(2337), - [sym_rune_literal] = ACTIONS(2337), - [sym_pseudo_compile_time_identifier] = ACTIONS(547), + [anon_sym_BANG] = ACTIONS(3408), + [anon_sym_go] = ACTIONS(3410), + [anon_sym_spawn] = ACTIONS(3412), + [anon_sym_json_DOTdecode] = ACTIONS(3314), + [anon_sym_LBRACK2] = ACTIONS(3316), + [anon_sym_TILDE] = ACTIONS(3404), + [anon_sym_CARET] = ACTIONS(3404), + [anon_sym_AMP] = ACTIONS(3414), + [anon_sym_LT_DASH] = ACTIONS(3416), + [sym_none] = ACTIONS(3322), + [sym_true] = ACTIONS(3322), + [sym_false] = ACTIONS(3322), + [sym_nil] = ACTIONS(3322), + [anon_sym_if] = ACTIONS(3324), + [anon_sym_DOLLARif] = ACTIONS(3326), + [anon_sym_match] = ACTIONS(3328), + [anon_sym_select] = ACTIONS(3418), + [anon_sym_lock] = ACTIONS(3420), + [anon_sym_rlock] = ACTIONS(3420), + [anon_sym_unsafe] = ACTIONS(3334), + [anon_sym_sql] = ACTIONS(3336), + [sym_int_literal] = ACTIONS(3322), + [sym_float_literal] = ACTIONS(3338), + [sym_rune_literal] = ACTIONS(3338), + [sym_pseudo_compile_time_identifier] = ACTIONS(3340), [anon_sym_shared] = ACTIONS(83), [anon_sym_map_LBRACK] = ACTIONS(85), [anon_sym_chan] = ACTIONS(87), [anon_sym_thread] = ACTIONS(89), [anon_sym_atomic] = ACTIONS(91), - [sym___double_quote] = ACTIONS(2339), - [sym___single_quote] = ACTIONS(2341), - [sym___c_double_quote] = ACTIONS(2343), - [sym___c_single_quote] = ACTIONS(2345), - [sym___r_double_quote] = ACTIONS(2347), - [sym___r_single_quote] = ACTIONS(2349), + [sym___double_quote] = ACTIONS(3342), + [sym___single_quote] = ACTIONS(3344), + [sym___c_double_quote] = ACTIONS(3346), + [sym___c_single_quote] = ACTIONS(3348), + [sym___r_double_quote] = ACTIONS(3350), + [sym___r_single_quote] = ACTIONS(3352), }, [698] = { [sym_line_comment] = STATE(698), [sym_block_comment] = STATE(698), - [sym__expression] = STATE(2331), - [sym__expression_without_blocks] = STATE(2489), - [sym__expression_with_blocks] = STATE(2489), - [sym_inc_expression] = STATE(2479), - [sym_dec_expression] = STATE(2479), - [sym_or_block_expression] = STATE(2479), - [sym_option_propagation_expression] = STATE(2479), - [sym_result_propagation_expression] = STATE(2479), - [sym_anon_struct_value_expression] = STATE(2491), - [sym_go_expression] = STATE(2479), - [sym_spawn_expression] = STATE(2479), - [sym_parenthesized_expression] = STATE(2479), - [sym_call_expression] = STATE(2479), - [sym_type_initializer] = STATE(2491), - [sym_function_literal] = STATE(2479), - [sym_reference_expression] = STATE(2542), - [sym_type_reference_expression] = STATE(3541), - [sym_unary_expression] = STATE(2479), - [sym_receive_expression] = STATE(2479), - [sym_binary_expression] = STATE(2479), - [sym_as_type_cast_expression] = STATE(2479), - [sym__max_group] = STATE(2479), - [sym_literal] = STATE(2454), - [sym_map_init_expression] = STATE(2491), - [sym_array_creation] = STATE(2479), - [sym_fixed_array_creation] = STATE(2479), - [sym_selector_expression] = STATE(2479), - [sym_index_expression] = STATE(2479), - [sym_slice_expression] = STATE(2479), - [sym_if_expression] = STATE(2491), - [sym_compile_time_if_expression] = STATE(2491), - [sym_is_expression] = STATE(2479), - [sym_in_expression] = STATE(2479), - [sym_enum_fetch] = STATE(2479), - [sym_match_expression] = STATE(2491), - [sym_select_expression] = STATE(2491), - [sym_lock_expression] = STATE(2491), - [sym_unsafe_expression] = STATE(2491), - [sym_sql_expression] = STATE(2491), - [sym_c_string_literal] = STATE(2469), - [sym_raw_string_literal] = STATE(2469), - [sym_interpreted_string_literal] = STATE(2469), - [sym_mutability_modifiers] = STATE(640), - [sym_plain_type] = STATE(4255), - [sym__plain_type_without_special] = STATE(2302), - [sym_anon_struct_type] = STATE(2303), - [sym_multi_return_type] = STATE(2302), - [sym_result_type] = STATE(2302), - [sym_option_type] = STATE(2302), - [sym_qualified_type] = STATE(3541), - [sym_fixed_array_type] = STATE(2303), - [sym_array_type] = STATE(2303), - [sym_pointer_type] = STATE(2303), - [sym_wrong_pointer_type] = STATE(2303), - [sym_map_type] = STATE(2303), - [sym_channel_type] = STATE(2303), - [sym_shared_type] = STATE(2303), - [sym_thread_type] = STATE(2303), - [sym_atomic_type] = STATE(2303), - [sym_generic_type] = STATE(2303), - [sym_function_type] = STATE(2303), - [sym_identifier] = ACTIONS(1695), + [sym__expression] = STATE(2636), + [sym__expression_without_blocks] = STATE(2347), + [sym__expression_with_blocks] = STATE(2347), + [sym_inc_expression] = STATE(2379), + [sym_dec_expression] = STATE(2379), + [sym_or_block_expression] = STATE(2379), + [sym_option_propagation_expression] = STATE(2379), + [sym_result_propagation_expression] = STATE(2379), + [sym_anon_struct_value_expression] = STATE(2378), + [sym_go_expression] = STATE(2379), + [sym_spawn_expression] = STATE(2379), + [sym_parenthesized_expression] = STATE(2379), + [sym_call_expression] = STATE(2379), + [sym_type_initializer] = STATE(2378), + [sym_function_literal] = STATE(2379), + [sym_reference_expression] = STATE(2377), + [sym_type_reference_expression] = STATE(3460), + [sym_unary_expression] = STATE(2379), + [sym_receive_expression] = STATE(2379), + [sym_binary_expression] = STATE(2379), + [sym_as_type_cast_expression] = STATE(2379), + [sym__max_group] = STATE(2379), + [sym_literal] = STATE(2392), + [sym_map_init_expression] = STATE(2378), + [sym_array_creation] = STATE(2379), + [sym_fixed_array_creation] = STATE(2379), + [sym_selector_expression] = STATE(2379), + [sym_index_expression] = STATE(2379), + [sym_slice_expression] = STATE(2379), + [sym_if_expression] = STATE(2378), + [sym_compile_time_if_expression] = STATE(2378), + [sym_is_expression] = STATE(2379), + [sym_in_expression] = STATE(2379), + [sym_enum_fetch] = STATE(2379), + [sym_match_expression] = STATE(2378), + [sym_select_expression] = STATE(2378), + [sym_lock_expression] = STATE(2378), + [sym_unsafe_expression] = STATE(2378), + [sym_sql_expression] = STATE(2378), + [sym_c_string_literal] = STATE(2401), + [sym_raw_string_literal] = STATE(2401), + [sym_interpreted_string_literal] = STATE(2401), + [sym_mutability_modifiers] = STATE(939), + [sym_plain_type] = STATE(3564), + [sym__plain_type_without_special] = STATE(2360), + [sym_anon_struct_type] = STATE(2362), + [sym_multi_return_type] = STATE(2360), + [sym_result_type] = STATE(2360), + [sym_option_type] = STATE(2360), + [sym_qualified_type] = STATE(3460), + [sym_fixed_array_type] = STATE(2362), + [sym_array_type] = STATE(2362), + [sym_pointer_type] = STATE(2362), + [sym_wrong_pointer_type] = STATE(2362), + [sym_map_type] = STATE(2362), + [sym_channel_type] = STATE(2362), + [sym_shared_type] = STATE(2362), + [sym_thread_type] = STATE(2362), + [sym_atomic_type] = STATE(2362), + [sym_generic_type] = STATE(2362), + [sym_function_type] = STATE(2362), + [sym_identifier] = ACTIONS(1428), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1697), - [anon_sym_LBRACE] = ACTIONS(2697), - [anon_sym_LPAREN] = ACTIONS(2699), - [anon_sym_fn] = ACTIONS(1703), - [anon_sym_PLUS] = ACTIONS(2701), - [anon_sym_DASH] = ACTIONS(2701), - [anon_sym_STAR] = ACTIONS(2703), - [anon_sym_struct] = ACTIONS(1709), + [anon_sym_DOT] = ACTIONS(1430), + [anon_sym_LBRACE] = ACTIONS(1432), + [anon_sym_LPAREN] = ACTIONS(1434), + [anon_sym_fn] = ACTIONS(1436), + [anon_sym_PLUS] = ACTIONS(2271), + [anon_sym_DASH] = ACTIONS(2271), + [anon_sym_STAR] = ACTIONS(2273), + [anon_sym_struct] = ACTIONS(1442), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(2705), - [anon_sym_go] = ACTIONS(1713), - [anon_sym_spawn] = ACTIONS(1715), - [anon_sym_json_DOTdecode] = ACTIONS(2707), - [anon_sym_LBRACK2] = ACTIONS(2709), - [anon_sym_TILDE] = ACTIONS(2701), - [anon_sym_CARET] = ACTIONS(2701), - [anon_sym_AMP] = ACTIONS(2711), - [anon_sym_LT_DASH] = ACTIONS(2713), - [sym_none] = ACTIONS(1725), - [sym_true] = ACTIONS(1725), - [sym_false] = ACTIONS(1725), - [sym_nil] = ACTIONS(1725), - [anon_sym_if] = ACTIONS(1727), - [anon_sym_DOLLARif] = ACTIONS(1729), - [anon_sym_match] = ACTIONS(1731), - [anon_sym_select] = ACTIONS(1733), - [anon_sym_lock] = ACTIONS(1735), - [anon_sym_rlock] = ACTIONS(1735), - [anon_sym_unsafe] = ACTIONS(1737), - [anon_sym_sql] = ACTIONS(1739), - [sym_int_literal] = ACTIONS(1725), - [sym_float_literal] = ACTIONS(2715), - [sym_rune_literal] = ACTIONS(2715), - [sym_pseudo_compile_time_identifier] = ACTIONS(1741), + [anon_sym_BANG] = ACTIONS(2275), + [anon_sym_go] = ACTIONS(2277), + [anon_sym_spawn] = ACTIONS(2279), + [anon_sym_json_DOTdecode] = ACTIONS(1450), + [anon_sym_LBRACK2] = ACTIONS(1452), + [anon_sym_TILDE] = ACTIONS(2271), + [anon_sym_CARET] = ACTIONS(2271), + [anon_sym_AMP] = ACTIONS(2281), + [anon_sym_LT_DASH] = ACTIONS(2283), + [sym_none] = ACTIONS(1458), + [sym_true] = ACTIONS(1458), + [sym_false] = ACTIONS(1458), + [sym_nil] = ACTIONS(1458), + [anon_sym_if] = ACTIONS(1833), + [anon_sym_DOLLARif] = ACTIONS(1462), + [anon_sym_match] = ACTIONS(1464), + [anon_sym_select] = ACTIONS(1466), + [anon_sym_lock] = ACTIONS(1468), + [anon_sym_rlock] = ACTIONS(1468), + [anon_sym_unsafe] = ACTIONS(1839), + [anon_sym_sql] = ACTIONS(1472), + [sym_int_literal] = ACTIONS(1458), + [sym_float_literal] = ACTIONS(1474), + [sym_rune_literal] = ACTIONS(1474), + [sym_pseudo_compile_time_identifier] = ACTIONS(1476), [anon_sym_shared] = ACTIONS(83), [anon_sym_map_LBRACK] = ACTIONS(85), [anon_sym_chan] = ACTIONS(87), [anon_sym_thread] = ACTIONS(89), [anon_sym_atomic] = ACTIONS(91), - [sym___double_quote] = ACTIONS(2717), - [sym___single_quote] = ACTIONS(2719), - [sym___c_double_quote] = ACTIONS(2721), - [sym___c_single_quote] = ACTIONS(2723), - [sym___r_double_quote] = ACTIONS(2725), - [sym___r_single_quote] = ACTIONS(2727), + [sym___double_quote] = ACTIONS(1480), + [sym___single_quote] = ACTIONS(1482), + [sym___c_double_quote] = ACTIONS(1484), + [sym___c_single_quote] = ACTIONS(1486), + [sym___r_double_quote] = ACTIONS(1488), + [sym___r_single_quote] = ACTIONS(1490), }, [699] = { [sym_line_comment] = STATE(699), [sym_block_comment] = STATE(699), - [sym__expression] = STATE(2826), - [sym__expression_without_blocks] = STATE(2300), - [sym__expression_with_blocks] = STATE(2300), - [sym_inc_expression] = STATE(2307), - [sym_dec_expression] = STATE(2307), - [sym_or_block_expression] = STATE(2307), - [sym_option_propagation_expression] = STATE(2307), - [sym_result_propagation_expression] = STATE(2307), - [sym_anon_struct_value_expression] = STATE(2380), - [sym_go_expression] = STATE(2307), - [sym_spawn_expression] = STATE(2307), - [sym_parenthesized_expression] = STATE(2307), - [sym_call_expression] = STATE(2307), - [sym_type_initializer] = STATE(2380), - [sym_function_literal] = STATE(2307), - [sym_reference_expression] = STATE(2311), - [sym_type_reference_expression] = STATE(3541), - [sym_unary_expression] = STATE(2307), - [sym_receive_expression] = STATE(2307), - [sym_binary_expression] = STATE(2307), - [sym_as_type_cast_expression] = STATE(2307), - [sym__max_group] = STATE(2307), - [sym_literal] = STATE(2292), - [sym_map_init_expression] = STATE(2380), - [sym_array_creation] = STATE(2307), - [sym_fixed_array_creation] = STATE(2307), - [sym_selector_expression] = STATE(2307), - [sym_index_expression] = STATE(2307), - [sym_slice_expression] = STATE(2307), - [sym_if_expression] = STATE(2380), - [sym_compile_time_if_expression] = STATE(2380), - [sym_is_expression] = STATE(2307), - [sym_in_expression] = STATE(2307), - [sym_enum_fetch] = STATE(2307), - [sym_match_expression] = STATE(2380), - [sym_select_expression] = STATE(2380), - [sym_lock_expression] = STATE(2380), - [sym_unsafe_expression] = STATE(2380), - [sym_sql_expression] = STATE(2380), - [sym_c_string_literal] = STATE(2308), - [sym_raw_string_literal] = STATE(2308), - [sym_interpreted_string_literal] = STATE(2308), + [sym__expression] = STATE(2590), + [sym__expression_without_blocks] = STATE(2347), + [sym__expression_with_blocks] = STATE(2347), + [sym_inc_expression] = STATE(2379), + [sym_dec_expression] = STATE(2379), + [sym_or_block_expression] = STATE(2379), + [sym_option_propagation_expression] = STATE(2379), + [sym_result_propagation_expression] = STATE(2379), + [sym_anon_struct_value_expression] = STATE(2378), + [sym_go_expression] = STATE(2379), + [sym_spawn_expression] = STATE(2379), + [sym_parenthesized_expression] = STATE(2379), + [sym_call_expression] = STATE(2379), + [sym_type_initializer] = STATE(2378), + [sym_function_literal] = STATE(2379), + [sym_reference_expression] = STATE(2377), + [sym_type_reference_expression] = STATE(3460), + [sym_unary_expression] = STATE(2379), + [sym_receive_expression] = STATE(2379), + [sym_binary_expression] = STATE(2379), + [sym_as_type_cast_expression] = STATE(2379), + [sym__max_group] = STATE(2379), + [sym_literal] = STATE(2392), + [sym_map_init_expression] = STATE(2378), + [sym_array_creation] = STATE(2379), + [sym_fixed_array_creation] = STATE(2379), + [sym_selector_expression] = STATE(2379), + [sym_index_expression] = STATE(2379), + [sym_slice_expression] = STATE(2379), + [sym_if_expression] = STATE(2378), + [sym_compile_time_if_expression] = STATE(2378), + [sym_is_expression] = STATE(2379), + [sym_in_expression] = STATE(2379), + [sym_enum_fetch] = STATE(2379), + [sym_match_expression] = STATE(2378), + [sym_select_expression] = STATE(2378), + [sym_lock_expression] = STATE(2378), + [sym_unsafe_expression] = STATE(2378), + [sym_sql_expression] = STATE(2378), + [sym_c_string_literal] = STATE(2401), + [sym_raw_string_literal] = STATE(2401), + [sym_interpreted_string_literal] = STATE(2401), [sym_mutability_modifiers] = STATE(939), - [sym_plain_type] = STATE(4297), - [sym__plain_type_without_special] = STATE(2302), - [sym_anon_struct_type] = STATE(2303), - [sym_multi_return_type] = STATE(2302), - [sym_result_type] = STATE(2302), - [sym_option_type] = STATE(2302), - [sym_qualified_type] = STATE(3541), - [sym_fixed_array_type] = STATE(2303), - [sym_array_type] = STATE(2303), - [sym_pointer_type] = STATE(2303), - [sym_wrong_pointer_type] = STATE(2303), - [sym_map_type] = STATE(2303), - [sym_channel_type] = STATE(2303), - [sym_shared_type] = STATE(2303), - [sym_thread_type] = STATE(2303), - [sym_atomic_type] = STATE(2303), - [sym_generic_type] = STATE(2303), - [sym_function_type] = STATE(2303), - [sym_identifier] = ACTIONS(1426), + [sym_plain_type] = STATE(4160), + [sym__plain_type_without_special] = STATE(2360), + [sym_anon_struct_type] = STATE(2362), + [sym_multi_return_type] = STATE(2360), + [sym_result_type] = STATE(2360), + [sym_option_type] = STATE(2360), + [sym_qualified_type] = STATE(3460), + [sym_fixed_array_type] = STATE(2362), + [sym_array_type] = STATE(2362), + [sym_pointer_type] = STATE(2362), + [sym_wrong_pointer_type] = STATE(2362), + [sym_map_type] = STATE(2362), + [sym_channel_type] = STATE(2362), + [sym_shared_type] = STATE(2362), + [sym_thread_type] = STATE(2362), + [sym_atomic_type] = STATE(2362), + [sym_generic_type] = STATE(2362), + [sym_function_type] = STATE(2362), + [sym_identifier] = ACTIONS(1815), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1428), - [anon_sym_LBRACE] = ACTIONS(1430), - [anon_sym_LPAREN] = ACTIONS(1432), - [anon_sym_fn] = ACTIONS(1434), - [anon_sym_PLUS] = ACTIONS(1436), - [anon_sym_DASH] = ACTIONS(1436), - [anon_sym_STAR] = ACTIONS(1438), - [anon_sym_struct] = ACTIONS(1440), + [anon_sym_DOT] = ACTIONS(1430), + [anon_sym_LBRACE] = ACTIONS(1432), + [anon_sym_LPAREN] = ACTIONS(1434), + [anon_sym_fn] = ACTIONS(1436), + [anon_sym_PLUS] = ACTIONS(3090), + [anon_sym_DASH] = ACTIONS(3090), + [anon_sym_STAR] = ACTIONS(3092), + [anon_sym_struct] = ACTIONS(1442), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(1442), - [anon_sym_go] = ACTIONS(1444), - [anon_sym_spawn] = ACTIONS(1446), - [anon_sym_json_DOTdecode] = ACTIONS(1448), - [anon_sym_LBRACK2] = ACTIONS(1450), - [anon_sym_TILDE] = ACTIONS(1436), - [anon_sym_CARET] = ACTIONS(1436), - [anon_sym_AMP] = ACTIONS(1452), - [anon_sym_LT_DASH] = ACTIONS(1454), - [sym_none] = ACTIONS(1456), - [sym_true] = ACTIONS(1456), - [sym_false] = ACTIONS(1456), - [sym_nil] = ACTIONS(1456), - [anon_sym_if] = ACTIONS(1827), - [anon_sym_DOLLARif] = ACTIONS(1460), - [anon_sym_match] = ACTIONS(1462), - [anon_sym_select] = ACTIONS(1464), - [anon_sym_lock] = ACTIONS(1466), - [anon_sym_rlock] = ACTIONS(1466), - [anon_sym_unsafe] = ACTIONS(1833), - [anon_sym_sql] = ACTIONS(1470), - [sym_int_literal] = ACTIONS(1456), - [sym_float_literal] = ACTIONS(1472), - [sym_rune_literal] = ACTIONS(1472), - [sym_pseudo_compile_time_identifier] = ACTIONS(1474), + [anon_sym_BANG] = ACTIONS(3094), + [anon_sym_go] = ACTIONS(3096), + [anon_sym_spawn] = ACTIONS(3098), + [anon_sym_json_DOTdecode] = ACTIONS(1450), + [anon_sym_LBRACK2] = ACTIONS(1827), + [anon_sym_TILDE] = ACTIONS(3090), + [anon_sym_CARET] = ACTIONS(3090), + [anon_sym_AMP] = ACTIONS(3100), + [anon_sym_LT_DASH] = ACTIONS(3102), + [sym_none] = ACTIONS(1458), + [sym_true] = ACTIONS(1458), + [sym_false] = ACTIONS(1458), + [sym_nil] = ACTIONS(1458), + [anon_sym_if] = ACTIONS(1833), + [anon_sym_DOLLARif] = ACTIONS(1462), + [anon_sym_match] = ACTIONS(1464), + [anon_sym_select] = ACTIONS(3104), + [anon_sym_lock] = ACTIONS(3106), + [anon_sym_rlock] = ACTIONS(3106), + [anon_sym_unsafe] = ACTIONS(1839), + [anon_sym_sql] = ACTIONS(1472), + [sym_int_literal] = ACTIONS(1458), + [sym_float_literal] = ACTIONS(1474), + [sym_rune_literal] = ACTIONS(1474), + [sym_pseudo_compile_time_identifier] = ACTIONS(1476), [anon_sym_shared] = ACTIONS(83), [anon_sym_map_LBRACK] = ACTIONS(85), [anon_sym_chan] = ACTIONS(87), [anon_sym_thread] = ACTIONS(89), [anon_sym_atomic] = ACTIONS(91), - [sym___double_quote] = ACTIONS(1478), - [sym___single_quote] = ACTIONS(1480), - [sym___c_double_quote] = ACTIONS(1482), - [sym___c_single_quote] = ACTIONS(1484), - [sym___r_double_quote] = ACTIONS(1486), - [sym___r_single_quote] = ACTIONS(1488), + [sym___double_quote] = ACTIONS(1480), + [sym___single_quote] = ACTIONS(1482), + [sym___c_double_quote] = ACTIONS(1484), + [sym___c_single_quote] = ACTIONS(1486), + [sym___r_double_quote] = ACTIONS(1488), + [sym___r_single_quote] = ACTIONS(1490), }, [700] = { [sym_line_comment] = STATE(700), [sym_block_comment] = STATE(700), - [sym__expression] = STATE(2279), - [sym__expression_without_blocks] = STATE(2489), - [sym__expression_with_blocks] = STATE(2489), - [sym_inc_expression] = STATE(2479), - [sym_dec_expression] = STATE(2479), - [sym_or_block_expression] = STATE(2479), - [sym_option_propagation_expression] = STATE(2479), - [sym_result_propagation_expression] = STATE(2479), - [sym_anon_struct_value_expression] = STATE(2491), - [sym_go_expression] = STATE(2479), - [sym_spawn_expression] = STATE(2479), - [sym_parenthesized_expression] = STATE(2479), - [sym_call_expression] = STATE(2479), - [sym_type_initializer] = STATE(2491), - [sym_function_literal] = STATE(2479), - [sym_reference_expression] = STATE(2542), - [sym_type_reference_expression] = STATE(3541), - [sym_unary_expression] = STATE(2479), - [sym_receive_expression] = STATE(2479), - [sym_binary_expression] = STATE(2479), - [sym_as_type_cast_expression] = STATE(2479), - [sym__max_group] = STATE(2479), - [sym_literal] = STATE(2454), - [sym_map_init_expression] = STATE(2491), - [sym_array_creation] = STATE(2479), - [sym_fixed_array_creation] = STATE(2479), - [sym_selector_expression] = STATE(2479), - [sym_index_expression] = STATE(2479), - [sym_slice_expression] = STATE(2479), - [sym_if_expression] = STATE(2491), - [sym_compile_time_if_expression] = STATE(2491), - [sym_is_expression] = STATE(2479), - [sym_in_expression] = STATE(2479), - [sym_enum_fetch] = STATE(2479), - [sym_match_expression] = STATE(2491), - [sym_select_expression] = STATE(2491), - [sym_lock_expression] = STATE(2491), - [sym_unsafe_expression] = STATE(2491), - [sym_sql_expression] = STATE(2491), - [sym_c_string_literal] = STATE(2469), - [sym_raw_string_literal] = STATE(2469), - [sym_interpreted_string_literal] = STATE(2469), - [sym_mutability_modifiers] = STATE(640), - [sym_plain_type] = STATE(4284), - [sym__plain_type_without_special] = STATE(2302), - [sym_anon_struct_type] = STATE(2303), - [sym_multi_return_type] = STATE(2302), - [sym_result_type] = STATE(2302), - [sym_option_type] = STATE(2302), - [sym_qualified_type] = STATE(3541), - [sym_fixed_array_type] = STATE(2303), - [sym_array_type] = STATE(2303), - [sym_pointer_type] = STATE(2303), - [sym_wrong_pointer_type] = STATE(2303), - [sym_map_type] = STATE(2303), - [sym_channel_type] = STATE(2303), - [sym_shared_type] = STATE(2303), - [sym_thread_type] = STATE(2303), - [sym_atomic_type] = STATE(2303), - [sym_generic_type] = STATE(2303), - [sym_function_type] = STATE(2303), - [sym_identifier] = ACTIONS(1695), + [sym__expression] = STATE(1773), + [sym__expression_without_blocks] = STATE(1953), + [sym__expression_with_blocks] = STATE(1953), + [sym_inc_expression] = STATE(1955), + [sym_dec_expression] = STATE(1955), + [sym_or_block_expression] = STATE(1955), + [sym_option_propagation_expression] = STATE(1955), + [sym_result_propagation_expression] = STATE(1955), + [sym_anon_struct_value_expression] = STATE(1958), + [sym_go_expression] = STATE(1955), + [sym_spawn_expression] = STATE(1955), + [sym_parenthesized_expression] = STATE(1955), + [sym_call_expression] = STATE(1955), + [sym_type_initializer] = STATE(1958), + [sym_function_literal] = STATE(1955), + [sym_reference_expression] = STATE(1956), + [sym_type_reference_expression] = STATE(3460), + [sym_unary_expression] = STATE(1955), + [sym_receive_expression] = STATE(1955), + [sym_binary_expression] = STATE(1955), + [sym_as_type_cast_expression] = STATE(1955), + [sym__max_group] = STATE(1955), + [sym_literal] = STATE(1943), + [sym_map_init_expression] = STATE(1958), + [sym_array_creation] = STATE(1955), + [sym_fixed_array_creation] = STATE(1955), + [sym_selector_expression] = STATE(1955), + [sym_index_expression] = STATE(1955), + [sym_slice_expression] = STATE(1955), + [sym_if_expression] = STATE(1958), + [sym_compile_time_if_expression] = STATE(1958), + [sym_is_expression] = STATE(1955), + [sym_in_expression] = STATE(1955), + [sym_enum_fetch] = STATE(1955), + [sym_match_expression] = STATE(1958), + [sym_select_expression] = STATE(1958), + [sym_lock_expression] = STATE(1958), + [sym_unsafe_expression] = STATE(1958), + [sym_sql_expression] = STATE(1958), + [sym_c_string_literal] = STATE(1942), + [sym_raw_string_literal] = STATE(1942), + [sym_interpreted_string_literal] = STATE(1942), + [sym_mutability_modifiers] = STATE(601), + [sym_plain_type] = STATE(4266), + [sym__plain_type_without_special] = STATE(2360), + [sym_anon_struct_type] = STATE(2362), + [sym_multi_return_type] = STATE(2360), + [sym_result_type] = STATE(2360), + [sym_option_type] = STATE(2360), + [sym_qualified_type] = STATE(3460), + [sym_fixed_array_type] = STATE(2362), + [sym_array_type] = STATE(2362), + [sym_pointer_type] = STATE(2362), + [sym_wrong_pointer_type] = STATE(2362), + [sym_map_type] = STATE(2362), + [sym_channel_type] = STATE(2362), + [sym_shared_type] = STATE(2362), + [sym_thread_type] = STATE(2362), + [sym_atomic_type] = STATE(2362), + [sym_generic_type] = STATE(2362), + [sym_function_type] = STATE(2362), + [sym_identifier] = ACTIONS(1681), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1697), - [anon_sym_LBRACE] = ACTIONS(2697), - [anon_sym_LPAREN] = ACTIONS(2699), - [anon_sym_fn] = ACTIONS(1703), - [anon_sym_PLUS] = ACTIONS(2701), - [anon_sym_DASH] = ACTIONS(2701), - [anon_sym_STAR] = ACTIONS(2703), - [anon_sym_struct] = ACTIONS(1709), + [anon_sym_DOT] = ACTIONS(705), + [anon_sym_LBRACE] = ACTIONS(3118), + [anon_sym_LPAREN] = ACTIONS(709), + [anon_sym_fn] = ACTIONS(711), + [anon_sym_PLUS] = ACTIONS(713), + [anon_sym_DASH] = ACTIONS(713), + [anon_sym_STAR] = ACTIONS(715), + [anon_sym_struct] = ACTIONS(717), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(2705), - [anon_sym_go] = ACTIONS(1713), - [anon_sym_spawn] = ACTIONS(1715), - [anon_sym_json_DOTdecode] = ACTIONS(2707), - [anon_sym_LBRACK2] = ACTIONS(2709), - [anon_sym_TILDE] = ACTIONS(2701), - [anon_sym_CARET] = ACTIONS(2701), - [anon_sym_AMP] = ACTIONS(2711), - [anon_sym_LT_DASH] = ACTIONS(2713), - [sym_none] = ACTIONS(1725), - [sym_true] = ACTIONS(1725), - [sym_false] = ACTIONS(1725), - [sym_nil] = ACTIONS(1725), - [anon_sym_if] = ACTIONS(1727), - [anon_sym_DOLLARif] = ACTIONS(1729), - [anon_sym_match] = ACTIONS(1731), - [anon_sym_select] = ACTIONS(1733), - [anon_sym_lock] = ACTIONS(1735), - [anon_sym_rlock] = ACTIONS(1735), - [anon_sym_unsafe] = ACTIONS(1737), - [anon_sym_sql] = ACTIONS(1739), - [sym_int_literal] = ACTIONS(1725), - [sym_float_literal] = ACTIONS(2715), - [sym_rune_literal] = ACTIONS(2715), - [sym_pseudo_compile_time_identifier] = ACTIONS(1741), + [anon_sym_BANG] = ACTIONS(721), + [anon_sym_go] = ACTIONS(723), + [anon_sym_spawn] = ACTIONS(725), + [anon_sym_json_DOTdecode] = ACTIONS(727), + [anon_sym_LBRACK2] = ACTIONS(729), + [anon_sym_TILDE] = ACTIONS(713), + [anon_sym_CARET] = ACTIONS(713), + [anon_sym_AMP] = ACTIONS(731), + [anon_sym_LT_DASH] = ACTIONS(733), + [sym_none] = ACTIONS(735), + [sym_true] = ACTIONS(735), + [sym_false] = ACTIONS(735), + [sym_nil] = ACTIONS(735), + [anon_sym_if] = ACTIONS(737), + [anon_sym_DOLLARif] = ACTIONS(739), + [anon_sym_match] = ACTIONS(741), + [anon_sym_select] = ACTIONS(743), + [anon_sym_lock] = ACTIONS(745), + [anon_sym_rlock] = ACTIONS(745), + [anon_sym_unsafe] = ACTIONS(747), + [anon_sym_sql] = ACTIONS(749), + [sym_int_literal] = ACTIONS(735), + [sym_float_literal] = ACTIONS(751), + [sym_rune_literal] = ACTIONS(751), + [sym_pseudo_compile_time_identifier] = ACTIONS(753), [anon_sym_shared] = ACTIONS(83), [anon_sym_map_LBRACK] = ACTIONS(85), [anon_sym_chan] = ACTIONS(87), [anon_sym_thread] = ACTIONS(89), [anon_sym_atomic] = ACTIONS(91), - [sym___double_quote] = ACTIONS(2717), - [sym___single_quote] = ACTIONS(2719), - [sym___c_double_quote] = ACTIONS(2721), - [sym___c_single_quote] = ACTIONS(2723), - [sym___r_double_quote] = ACTIONS(2725), - [sym___r_single_quote] = ACTIONS(2727), + [sym___double_quote] = ACTIONS(755), + [sym___single_quote] = ACTIONS(757), + [sym___c_double_quote] = ACTIONS(759), + [sym___c_single_quote] = ACTIONS(761), + [sym___r_double_quote] = ACTIONS(763), + [sym___r_single_quote] = ACTIONS(765), }, [701] = { [sym_line_comment] = STATE(701), [sym_block_comment] = STATE(701), - [sym__expression] = STATE(2279), - [sym__expression_without_blocks] = STATE(2489), - [sym__expression_with_blocks] = STATE(2489), - [sym_inc_expression] = STATE(2479), - [sym_dec_expression] = STATE(2479), - [sym_or_block_expression] = STATE(2479), - [sym_option_propagation_expression] = STATE(2479), - [sym_result_propagation_expression] = STATE(2479), - [sym_anon_struct_value_expression] = STATE(2491), - [sym_go_expression] = STATE(2479), - [sym_spawn_expression] = STATE(2479), - [sym_parenthesized_expression] = STATE(2479), - [sym_call_expression] = STATE(2479), - [sym_type_initializer] = STATE(2491), - [sym_function_literal] = STATE(2479), - [sym_reference_expression] = STATE(2542), - [sym_type_reference_expression] = STATE(3541), - [sym_unary_expression] = STATE(2479), - [sym_receive_expression] = STATE(2479), - [sym_binary_expression] = STATE(2479), - [sym_as_type_cast_expression] = STATE(2479), - [sym__max_group] = STATE(2479), - [sym_literal] = STATE(2454), - [sym_map_init_expression] = STATE(2491), - [sym_array_creation] = STATE(2479), - [sym_fixed_array_creation] = STATE(2479), - [sym_selector_expression] = STATE(2479), - [sym_index_expression] = STATE(2479), - [sym_slice_expression] = STATE(2479), - [sym_if_expression] = STATE(2491), - [sym_compile_time_if_expression] = STATE(2491), - [sym_is_expression] = STATE(2479), - [sym_in_expression] = STATE(2479), - [sym_enum_fetch] = STATE(2479), - [sym_match_expression] = STATE(2491), - [sym_select_expression] = STATE(2491), - [sym_lock_expression] = STATE(2491), - [sym_unsafe_expression] = STATE(2491), - [sym_sql_expression] = STATE(2491), - [sym_c_string_literal] = STATE(2469), - [sym_raw_string_literal] = STATE(2469), - [sym_interpreted_string_literal] = STATE(2469), - [sym_mutability_modifiers] = STATE(640), - [sym_plain_type] = STATE(4272), - [sym__plain_type_without_special] = STATE(2302), - [sym_anon_struct_type] = STATE(2303), - [sym_multi_return_type] = STATE(2302), - [sym_result_type] = STATE(2302), - [sym_option_type] = STATE(2302), - [sym_qualified_type] = STATE(3541), - [sym_fixed_array_type] = STATE(2303), - [sym_array_type] = STATE(2303), - [sym_pointer_type] = STATE(2303), - [sym_wrong_pointer_type] = STATE(2303), - [sym_map_type] = STATE(2303), - [sym_channel_type] = STATE(2303), - [sym_shared_type] = STATE(2303), - [sym_thread_type] = STATE(2303), - [sym_atomic_type] = STATE(2303), - [sym_generic_type] = STATE(2303), - [sym_function_type] = STATE(2303), - [sym_identifier] = ACTIONS(1695), + [sym__expression] = STATE(2697), + [sym__expression_without_blocks] = STATE(2347), + [sym__expression_with_blocks] = STATE(2347), + [sym_inc_expression] = STATE(2379), + [sym_dec_expression] = STATE(2379), + [sym_or_block_expression] = STATE(2379), + [sym_option_propagation_expression] = STATE(2379), + [sym_result_propagation_expression] = STATE(2379), + [sym_anon_struct_value_expression] = STATE(2378), + [sym_go_expression] = STATE(2379), + [sym_spawn_expression] = STATE(2379), + [sym_parenthesized_expression] = STATE(2379), + [sym_call_expression] = STATE(2379), + [sym_type_initializer] = STATE(2378), + [sym_function_literal] = STATE(2379), + [sym_reference_expression] = STATE(2377), + [sym_type_reference_expression] = STATE(3460), + [sym_unary_expression] = STATE(2379), + [sym_receive_expression] = STATE(2379), + [sym_binary_expression] = STATE(2379), + [sym_as_type_cast_expression] = STATE(2379), + [sym__max_group] = STATE(2379), + [sym_literal] = STATE(2392), + [sym_map_init_expression] = STATE(2378), + [sym_array_creation] = STATE(2379), + [sym_fixed_array_creation] = STATE(2379), + [sym_selector_expression] = STATE(2379), + [sym_index_expression] = STATE(2379), + [sym_slice_expression] = STATE(2379), + [sym_if_expression] = STATE(2378), + [sym_compile_time_if_expression] = STATE(2378), + [sym_is_expression] = STATE(2379), + [sym_in_expression] = STATE(2379), + [sym_enum_fetch] = STATE(2379), + [sym_match_expression] = STATE(2378), + [sym_select_expression] = STATE(2378), + [sym_lock_expression] = STATE(2378), + [sym_unsafe_expression] = STATE(2378), + [sym_sql_expression] = STATE(2378), + [sym_c_string_literal] = STATE(2401), + [sym_raw_string_literal] = STATE(2401), + [sym_interpreted_string_literal] = STATE(2401), + [sym_mutability_modifiers] = STATE(939), + [sym_plain_type] = STATE(4160), + [sym__plain_type_without_special] = STATE(2360), + [sym_anon_struct_type] = STATE(2362), + [sym_multi_return_type] = STATE(2360), + [sym_result_type] = STATE(2360), + [sym_option_type] = STATE(2360), + [sym_qualified_type] = STATE(3460), + [sym_fixed_array_type] = STATE(2362), + [sym_array_type] = STATE(2362), + [sym_pointer_type] = STATE(2362), + [sym_wrong_pointer_type] = STATE(2362), + [sym_map_type] = STATE(2362), + [sym_channel_type] = STATE(2362), + [sym_shared_type] = STATE(2362), + [sym_thread_type] = STATE(2362), + [sym_atomic_type] = STATE(2362), + [sym_generic_type] = STATE(2362), + [sym_function_type] = STATE(2362), + [sym_identifier] = ACTIONS(2477), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1697), - [anon_sym_LBRACE] = ACTIONS(2697), - [anon_sym_LPAREN] = ACTIONS(2699), - [anon_sym_fn] = ACTIONS(1703), - [anon_sym_PLUS] = ACTIONS(2701), - [anon_sym_DASH] = ACTIONS(2701), - [anon_sym_STAR] = ACTIONS(2703), - [anon_sym_struct] = ACTIONS(1709), + [anon_sym_DOT] = ACTIONS(1430), + [anon_sym_LBRACE] = ACTIONS(1432), + [anon_sym_LPAREN] = ACTIONS(1434), + [anon_sym_fn] = ACTIONS(1436), + [anon_sym_PLUS] = ACTIONS(2271), + [anon_sym_DASH] = ACTIONS(2271), + [anon_sym_STAR] = ACTIONS(3354), + [anon_sym_struct] = ACTIONS(1442), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(2705), - [anon_sym_go] = ACTIONS(1713), - [anon_sym_spawn] = ACTIONS(1715), - [anon_sym_json_DOTdecode] = ACTIONS(2707), - [anon_sym_LBRACK2] = ACTIONS(2709), - [anon_sym_TILDE] = ACTIONS(2701), - [anon_sym_CARET] = ACTIONS(2701), - [anon_sym_AMP] = ACTIONS(2711), - [anon_sym_LT_DASH] = ACTIONS(2713), - [sym_none] = ACTIONS(1725), - [sym_true] = ACTIONS(1725), - [sym_false] = ACTIONS(1725), - [sym_nil] = ACTIONS(1725), - [anon_sym_if] = ACTIONS(1727), - [anon_sym_DOLLARif] = ACTIONS(1729), - [anon_sym_match] = ACTIONS(1731), - [anon_sym_select] = ACTIONS(1733), - [anon_sym_lock] = ACTIONS(1735), - [anon_sym_rlock] = ACTIONS(1735), - [anon_sym_unsafe] = ACTIONS(1737), - [anon_sym_sql] = ACTIONS(1739), - [sym_int_literal] = ACTIONS(1725), - [sym_float_literal] = ACTIONS(2715), - [sym_rune_literal] = ACTIONS(2715), - [sym_pseudo_compile_time_identifier] = ACTIONS(1741), + [anon_sym_BANG] = ACTIONS(3356), + [anon_sym_go] = ACTIONS(2277), + [anon_sym_spawn] = ACTIONS(2279), + [anon_sym_json_DOTdecode] = ACTIONS(1450), + [anon_sym_LBRACK2] = ACTIONS(1452), + [anon_sym_TILDE] = ACTIONS(2271), + [anon_sym_CARET] = ACTIONS(2271), + [anon_sym_AMP] = ACTIONS(3358), + [anon_sym_LT_DASH] = ACTIONS(2283), + [sym_none] = ACTIONS(1458), + [sym_true] = ACTIONS(1458), + [sym_false] = ACTIONS(1458), + [sym_nil] = ACTIONS(1458), + [anon_sym_if] = ACTIONS(1833), + [anon_sym_DOLLARif] = ACTIONS(1462), + [anon_sym_match] = ACTIONS(1464), + [anon_sym_select] = ACTIONS(1466), + [anon_sym_lock] = ACTIONS(1468), + [anon_sym_rlock] = ACTIONS(1468), + [anon_sym_unsafe] = ACTIONS(1839), + [anon_sym_sql] = ACTIONS(1472), + [sym_int_literal] = ACTIONS(1458), + [sym_float_literal] = ACTIONS(1474), + [sym_rune_literal] = ACTIONS(1474), + [sym_pseudo_compile_time_identifier] = ACTIONS(1476), [anon_sym_shared] = ACTIONS(83), [anon_sym_map_LBRACK] = ACTIONS(85), [anon_sym_chan] = ACTIONS(87), [anon_sym_thread] = ACTIONS(89), [anon_sym_atomic] = ACTIONS(91), - [sym___double_quote] = ACTIONS(2717), - [sym___single_quote] = ACTIONS(2719), - [sym___c_double_quote] = ACTIONS(2721), - [sym___c_single_quote] = ACTIONS(2723), - [sym___r_double_quote] = ACTIONS(2725), - [sym___r_single_quote] = ACTIONS(2727), + [sym___double_quote] = ACTIONS(1480), + [sym___single_quote] = ACTIONS(1482), + [sym___c_double_quote] = ACTIONS(1484), + [sym___c_single_quote] = ACTIONS(1486), + [sym___r_double_quote] = ACTIONS(1488), + [sym___r_single_quote] = ACTIONS(1490), }, [702] = { [sym_line_comment] = STATE(702), [sym_block_comment] = STATE(702), - [sym__expression] = STATE(1899), - [sym__expression_without_blocks] = STATE(2044), - [sym__expression_with_blocks] = STATE(2044), - [sym_inc_expression] = STATE(2045), - [sym_dec_expression] = STATE(2045), - [sym_or_block_expression] = STATE(2045), - [sym_option_propagation_expression] = STATE(2045), - [sym_result_propagation_expression] = STATE(2045), - [sym_anon_struct_value_expression] = STATE(2046), - [sym_go_expression] = STATE(2045), - [sym_spawn_expression] = STATE(2045), - [sym_parenthesized_expression] = STATE(2045), - [sym_call_expression] = STATE(2045), - [sym_type_initializer] = STATE(2046), - [sym_function_literal] = STATE(2045), - [sym_reference_expression] = STATE(1912), - [sym_type_reference_expression] = STATE(3541), - [sym_unary_expression] = STATE(2045), - [sym_receive_expression] = STATE(2045), - [sym_binary_expression] = STATE(2045), - [sym_as_type_cast_expression] = STATE(2045), - [sym__max_group] = STATE(2045), - [sym_literal] = STATE(2043), - [sym_map_init_expression] = STATE(2046), - [sym_array_creation] = STATE(2045), - [sym_fixed_array_creation] = STATE(2045), - [sym_selector_expression] = STATE(2045), - [sym_index_expression] = STATE(2045), - [sym_slice_expression] = STATE(2045), - [sym_if_expression] = STATE(2046), - [sym_compile_time_if_expression] = STATE(2046), - [sym_is_expression] = STATE(2045), - [sym_in_expression] = STATE(2045), - [sym_enum_fetch] = STATE(2045), - [sym_match_expression] = STATE(2046), - [sym_select_expression] = STATE(2046), - [sym_lock_expression] = STATE(2046), - [sym_unsafe_expression] = STATE(2046), - [sym_sql_expression] = STATE(2046), - [sym_c_string_literal] = STATE(2041), - [sym_raw_string_literal] = STATE(2041), - [sym_interpreted_string_literal] = STATE(2041), - [sym_mutability_modifiers] = STATE(689), - [sym_plain_type] = STATE(4052), - [sym__plain_type_without_special] = STATE(2302), - [sym_anon_struct_type] = STATE(2303), - [sym_multi_return_type] = STATE(2302), - [sym_result_type] = STATE(2302), - [sym_option_type] = STATE(2302), - [sym_qualified_type] = STATE(3541), - [sym_fixed_array_type] = STATE(2303), - [sym_array_type] = STATE(2303), - [sym_pointer_type] = STATE(2303), - [sym_wrong_pointer_type] = STATE(2303), - [sym_map_type] = STATE(2303), - [sym_channel_type] = STATE(2303), - [sym_shared_type] = STATE(2303), - [sym_thread_type] = STATE(2303), - [sym_atomic_type] = STATE(2303), - [sym_generic_type] = STATE(2303), - [sym_function_type] = STATE(2303), - [sym_identifier] = ACTIONS(3142), + [sym__expression] = STATE(1774), + [sym__expression_without_blocks] = STATE(1953), + [sym__expression_with_blocks] = STATE(1953), + [sym_inc_expression] = STATE(1955), + [sym_dec_expression] = STATE(1955), + [sym_or_block_expression] = STATE(1955), + [sym_option_propagation_expression] = STATE(1955), + [sym_result_propagation_expression] = STATE(1955), + [sym_anon_struct_value_expression] = STATE(1958), + [sym_go_expression] = STATE(1955), + [sym_spawn_expression] = STATE(1955), + [sym_parenthesized_expression] = STATE(1955), + [sym_call_expression] = STATE(1955), + [sym_type_initializer] = STATE(1958), + [sym_function_literal] = STATE(1955), + [sym_reference_expression] = STATE(1956), + [sym_type_reference_expression] = STATE(3460), + [sym_unary_expression] = STATE(1955), + [sym_receive_expression] = STATE(1955), + [sym_binary_expression] = STATE(1955), + [sym_as_type_cast_expression] = STATE(1955), + [sym__max_group] = STATE(1955), + [sym_literal] = STATE(1943), + [sym_map_init_expression] = STATE(1958), + [sym_array_creation] = STATE(1955), + [sym_fixed_array_creation] = STATE(1955), + [sym_selector_expression] = STATE(1955), + [sym_index_expression] = STATE(1955), + [sym_slice_expression] = STATE(1955), + [sym_if_expression] = STATE(1958), + [sym_compile_time_if_expression] = STATE(1958), + [sym_is_expression] = STATE(1955), + [sym_in_expression] = STATE(1955), + [sym_enum_fetch] = STATE(1955), + [sym_match_expression] = STATE(1958), + [sym_select_expression] = STATE(1958), + [sym_lock_expression] = STATE(1958), + [sym_unsafe_expression] = STATE(1958), + [sym_sql_expression] = STATE(1958), + [sym_c_string_literal] = STATE(1942), + [sym_raw_string_literal] = STATE(1942), + [sym_interpreted_string_literal] = STATE(1942), + [sym_mutability_modifiers] = STATE(601), + [sym_plain_type] = STATE(4266), + [sym__plain_type_without_special] = STATE(2360), + [sym_anon_struct_type] = STATE(2362), + [sym_multi_return_type] = STATE(2360), + [sym_result_type] = STATE(2360), + [sym_option_type] = STATE(2360), + [sym_qualified_type] = STATE(3460), + [sym_fixed_array_type] = STATE(2362), + [sym_array_type] = STATE(2362), + [sym_pointer_type] = STATE(2362), + [sym_wrong_pointer_type] = STATE(2362), + [sym_map_type] = STATE(2362), + [sym_channel_type] = STATE(2362), + [sym_shared_type] = STATE(2362), + [sym_thread_type] = STATE(2362), + [sym_atomic_type] = STATE(2362), + [sym_generic_type] = STATE(2362), + [sym_function_type] = STATE(2362), + [sym_identifier] = ACTIONS(1681), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(811), - [anon_sym_LBRACE] = ACTIONS(3144), - [anon_sym_LPAREN] = ACTIONS(815), - [anon_sym_fn] = ACTIONS(817), - [anon_sym_PLUS] = ACTIONS(3146), - [anon_sym_DASH] = ACTIONS(3146), - [anon_sym_STAR] = ACTIONS(3148), - [anon_sym_struct] = ACTIONS(823), + [anon_sym_DOT] = ACTIONS(705), + [anon_sym_LBRACE] = ACTIONS(3118), + [anon_sym_LPAREN] = ACTIONS(709), + [anon_sym_fn] = ACTIONS(711), + [anon_sym_PLUS] = ACTIONS(713), + [anon_sym_DASH] = ACTIONS(713), + [anon_sym_STAR] = ACTIONS(715), + [anon_sym_struct] = ACTIONS(717), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(3150), - [anon_sym_go] = ACTIONS(3152), - [anon_sym_spawn] = ACTIONS(3154), - [anon_sym_json_DOTdecode] = ACTIONS(833), - [anon_sym_LBRACK2] = ACTIONS(3156), - [anon_sym_TILDE] = ACTIONS(3146), - [anon_sym_CARET] = ACTIONS(3146), - [anon_sym_AMP] = ACTIONS(3158), - [anon_sym_LT_DASH] = ACTIONS(3160), - [sym_none] = ACTIONS(841), - [sym_true] = ACTIONS(841), - [sym_false] = ACTIONS(841), - [sym_nil] = ACTIONS(841), - [anon_sym_if] = ACTIONS(843), - [anon_sym_DOLLARif] = ACTIONS(845), - [anon_sym_match] = ACTIONS(847), - [anon_sym_select] = ACTIONS(3162), - [anon_sym_lock] = ACTIONS(3164), - [anon_sym_rlock] = ACTIONS(3164), - [anon_sym_unsafe] = ACTIONS(853), - [anon_sym_sql] = ACTIONS(855), - [sym_int_literal] = ACTIONS(841), - [sym_float_literal] = ACTIONS(857), - [sym_rune_literal] = ACTIONS(857), - [sym_pseudo_compile_time_identifier] = ACTIONS(859), + [anon_sym_BANG] = ACTIONS(721), + [anon_sym_go] = ACTIONS(723), + [anon_sym_spawn] = ACTIONS(725), + [anon_sym_json_DOTdecode] = ACTIONS(727), + [anon_sym_LBRACK2] = ACTIONS(729), + [anon_sym_TILDE] = ACTIONS(713), + [anon_sym_CARET] = ACTIONS(713), + [anon_sym_AMP] = ACTIONS(731), + [anon_sym_LT_DASH] = ACTIONS(733), + [sym_none] = ACTIONS(735), + [sym_true] = ACTIONS(735), + [sym_false] = ACTIONS(735), + [sym_nil] = ACTIONS(735), + [anon_sym_if] = ACTIONS(737), + [anon_sym_DOLLARif] = ACTIONS(739), + [anon_sym_match] = ACTIONS(741), + [anon_sym_select] = ACTIONS(743), + [anon_sym_lock] = ACTIONS(745), + [anon_sym_rlock] = ACTIONS(745), + [anon_sym_unsafe] = ACTIONS(747), + [anon_sym_sql] = ACTIONS(749), + [sym_int_literal] = ACTIONS(735), + [sym_float_literal] = ACTIONS(751), + [sym_rune_literal] = ACTIONS(751), + [sym_pseudo_compile_time_identifier] = ACTIONS(753), [anon_sym_shared] = ACTIONS(83), [anon_sym_map_LBRACK] = ACTIONS(85), [anon_sym_chan] = ACTIONS(87), [anon_sym_thread] = ACTIONS(89), [anon_sym_atomic] = ACTIONS(91), - [sym___double_quote] = ACTIONS(861), - [sym___single_quote] = ACTIONS(863), - [sym___c_double_quote] = ACTIONS(865), - [sym___c_single_quote] = ACTIONS(867), - [sym___r_double_quote] = ACTIONS(869), - [sym___r_single_quote] = ACTIONS(871), + [sym___double_quote] = ACTIONS(755), + [sym___single_quote] = ACTIONS(757), + [sym___c_double_quote] = ACTIONS(759), + [sym___c_single_quote] = ACTIONS(761), + [sym___r_double_quote] = ACTIONS(763), + [sym___r_single_quote] = ACTIONS(765), }, [703] = { [sym_line_comment] = STATE(703), [sym_block_comment] = STATE(703), - [sym__expression] = STATE(2279), - [sym__expression_without_blocks] = STATE(2489), - [sym__expression_with_blocks] = STATE(2489), - [sym_inc_expression] = STATE(2479), - [sym_dec_expression] = STATE(2479), - [sym_or_block_expression] = STATE(2479), - [sym_option_propagation_expression] = STATE(2479), - [sym_result_propagation_expression] = STATE(2479), - [sym_anon_struct_value_expression] = STATE(2491), - [sym_go_expression] = STATE(2479), - [sym_spawn_expression] = STATE(2479), - [sym_parenthesized_expression] = STATE(2479), - [sym_call_expression] = STATE(2479), - [sym_type_initializer] = STATE(2491), - [sym_function_literal] = STATE(2479), - [sym_reference_expression] = STATE(2542), - [sym_type_reference_expression] = STATE(3541), - [sym_unary_expression] = STATE(2479), - [sym_receive_expression] = STATE(2479), - [sym_binary_expression] = STATE(2479), - [sym_as_type_cast_expression] = STATE(2479), - [sym__max_group] = STATE(2479), - [sym_literal] = STATE(2454), - [sym_map_init_expression] = STATE(2491), - [sym_array_creation] = STATE(2479), - [sym_fixed_array_creation] = STATE(2479), - [sym_selector_expression] = STATE(2479), - [sym_index_expression] = STATE(2479), - [sym_slice_expression] = STATE(2479), - [sym_if_expression] = STATE(2491), - [sym_compile_time_if_expression] = STATE(2491), - [sym_is_expression] = STATE(2479), - [sym_in_expression] = STATE(2479), - [sym_enum_fetch] = STATE(2479), - [sym_match_expression] = STATE(2491), - [sym_select_expression] = STATE(2491), - [sym_lock_expression] = STATE(2491), - [sym_unsafe_expression] = STATE(2491), - [sym_sql_expression] = STATE(2491), - [sym_c_string_literal] = STATE(2469), - [sym_raw_string_literal] = STATE(2469), - [sym_interpreted_string_literal] = STATE(2469), - [sym_mutability_modifiers] = STATE(640), - [sym_plain_type] = STATE(4255), - [sym__plain_type_without_special] = STATE(2302), - [sym_anon_struct_type] = STATE(2303), - [sym_multi_return_type] = STATE(2302), - [sym_result_type] = STATE(2302), - [sym_option_type] = STATE(2302), - [sym_qualified_type] = STATE(3541), - [sym_fixed_array_type] = STATE(2303), - [sym_array_type] = STATE(2303), - [sym_pointer_type] = STATE(2303), - [sym_wrong_pointer_type] = STATE(2303), - [sym_map_type] = STATE(2303), - [sym_channel_type] = STATE(2303), - [sym_shared_type] = STATE(2303), - [sym_thread_type] = STATE(2303), - [sym_atomic_type] = STATE(2303), - [sym_generic_type] = STATE(2303), - [sym_function_type] = STATE(2303), - [sym_identifier] = ACTIONS(1695), + [sym__expression] = STATE(2830), + [sym__expression_without_blocks] = STATE(2347), + [sym__expression_with_blocks] = STATE(2347), + [sym_inc_expression] = STATE(2379), + [sym_dec_expression] = STATE(2379), + [sym_or_block_expression] = STATE(2379), + [sym_option_propagation_expression] = STATE(2379), + [sym_result_propagation_expression] = STATE(2379), + [sym_anon_struct_value_expression] = STATE(2378), + [sym_go_expression] = STATE(2379), + [sym_spawn_expression] = STATE(2379), + [sym_parenthesized_expression] = STATE(2379), + [sym_call_expression] = STATE(2379), + [sym_type_initializer] = STATE(2378), + [sym_function_literal] = STATE(2379), + [sym_reference_expression] = STATE(2954), + [sym_type_reference_expression] = STATE(3460), + [sym_unary_expression] = STATE(2379), + [sym_receive_expression] = STATE(2379), + [sym_binary_expression] = STATE(2379), + [sym_as_type_cast_expression] = STATE(2379), + [sym__max_group] = STATE(2379), + [sym_literal] = STATE(2392), + [sym_map_init_expression] = STATE(2378), + [sym_array_creation] = STATE(2379), + [sym_fixed_array_creation] = STATE(2379), + [sym_selector_expression] = STATE(2953), + [sym_index_expression] = STATE(2379), + [sym_slice_expression] = STATE(2379), + [sym_if_expression] = STATE(2378), + [sym_compile_time_if_expression] = STATE(2378), + [sym_is_expression] = STATE(2379), + [sym_in_expression] = STATE(2379), + [sym_enum_fetch] = STATE(2379), + [sym_match_expression] = STATE(2378), + [sym_select_expression] = STATE(2378), + [sym_lock_expression] = STATE(2378), + [sym_unsafe_expression] = STATE(2378), + [sym_sql_expression] = STATE(2378), + [sym_c_string_literal] = STATE(2401), + [sym_raw_string_literal] = STATE(2401), + [sym_interpreted_string_literal] = STATE(2401), + [sym_mutability_modifiers] = STATE(939), + [sym_plain_type] = STATE(4160), + [sym__plain_type_without_special] = STATE(2360), + [sym_anon_struct_type] = STATE(2362), + [sym_multi_return_type] = STATE(2360), + [sym_result_type] = STATE(2360), + [sym_option_type] = STATE(2360), + [sym_qualified_type] = STATE(3460), + [sym_fixed_array_type] = STATE(2362), + [sym_array_type] = STATE(2362), + [sym_pointer_type] = STATE(2362), + [sym_wrong_pointer_type] = STATE(2362), + [sym_map_type] = STATE(2362), + [sym_channel_type] = STATE(2362), + [sym_shared_type] = STATE(2362), + [sym_thread_type] = STATE(2362), + [sym_atomic_type] = STATE(2362), + [sym_generic_type] = STATE(2362), + [sym_function_type] = STATE(2362), + [sym_identifier] = ACTIONS(2477), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1697), - [anon_sym_LBRACE] = ACTIONS(2697), - [anon_sym_LPAREN] = ACTIONS(2699), - [anon_sym_fn] = ACTIONS(1703), - [anon_sym_PLUS] = ACTIONS(2701), - [anon_sym_DASH] = ACTIONS(2701), - [anon_sym_STAR] = ACTIONS(2703), - [anon_sym_struct] = ACTIONS(1709), + [anon_sym_DOT] = ACTIONS(1430), + [anon_sym_LBRACE] = ACTIONS(1432), + [anon_sym_LPAREN] = ACTIONS(1434), + [anon_sym_fn] = ACTIONS(1436), + [anon_sym_PLUS] = ACTIONS(1438), + [anon_sym_DASH] = ACTIONS(1438), + [anon_sym_STAR] = ACTIONS(1440), + [anon_sym_struct] = ACTIONS(1442), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(2705), - [anon_sym_go] = ACTIONS(1713), - [anon_sym_spawn] = ACTIONS(1715), - [anon_sym_json_DOTdecode] = ACTIONS(2707), - [anon_sym_LBRACK2] = ACTIONS(2709), - [anon_sym_TILDE] = ACTIONS(2701), - [anon_sym_CARET] = ACTIONS(2701), - [anon_sym_AMP] = ACTIONS(2711), - [anon_sym_LT_DASH] = ACTIONS(2713), - [sym_none] = ACTIONS(1725), - [sym_true] = ACTIONS(1725), - [sym_false] = ACTIONS(1725), - [sym_nil] = ACTIONS(1725), - [anon_sym_if] = ACTIONS(1727), - [anon_sym_DOLLARif] = ACTIONS(1729), - [anon_sym_match] = ACTIONS(1731), - [anon_sym_select] = ACTIONS(1733), - [anon_sym_lock] = ACTIONS(1735), - [anon_sym_rlock] = ACTIONS(1735), - [anon_sym_unsafe] = ACTIONS(1737), - [anon_sym_sql] = ACTIONS(1739), - [sym_int_literal] = ACTIONS(1725), - [sym_float_literal] = ACTIONS(2715), - [sym_rune_literal] = ACTIONS(2715), - [sym_pseudo_compile_time_identifier] = ACTIONS(1741), + [anon_sym_BANG] = ACTIONS(1444), + [anon_sym_go] = ACTIONS(1446), + [anon_sym_spawn] = ACTIONS(1448), + [anon_sym_json_DOTdecode] = ACTIONS(1450), + [anon_sym_LBRACK2] = ACTIONS(1452), + [anon_sym_TILDE] = ACTIONS(1438), + [anon_sym_CARET] = ACTIONS(1438), + [anon_sym_AMP] = ACTIONS(1454), + [anon_sym_LT_DASH] = ACTIONS(1456), + [sym_none] = ACTIONS(1458), + [sym_true] = ACTIONS(1458), + [sym_false] = ACTIONS(1458), + [sym_nil] = ACTIONS(1458), + [anon_sym_if] = ACTIONS(1833), + [anon_sym_DOLLARif] = ACTIONS(1462), + [anon_sym_match] = ACTIONS(1464), + [anon_sym_select] = ACTIONS(1466), + [anon_sym_lock] = ACTIONS(1468), + [anon_sym_rlock] = ACTIONS(1468), + [anon_sym_unsafe] = ACTIONS(1839), + [anon_sym_sql] = ACTIONS(1472), + [sym_int_literal] = ACTIONS(1458), + [sym_float_literal] = ACTIONS(1474), + [sym_rune_literal] = ACTIONS(1474), + [sym_pseudo_compile_time_identifier] = ACTIONS(1476), [anon_sym_shared] = ACTIONS(83), [anon_sym_map_LBRACK] = ACTIONS(85), [anon_sym_chan] = ACTIONS(87), [anon_sym_thread] = ACTIONS(89), [anon_sym_atomic] = ACTIONS(91), - [sym___double_quote] = ACTIONS(2717), - [sym___single_quote] = ACTIONS(2719), - [sym___c_double_quote] = ACTIONS(2721), - [sym___c_single_quote] = ACTIONS(2723), - [sym___r_double_quote] = ACTIONS(2725), - [sym___r_single_quote] = ACTIONS(2727), + [sym___double_quote] = ACTIONS(1480), + [sym___single_quote] = ACTIONS(1482), + [sym___c_double_quote] = ACTIONS(1484), + [sym___c_single_quote] = ACTIONS(1486), + [sym___r_double_quote] = ACTIONS(1488), + [sym___r_single_quote] = ACTIONS(1490), }, [704] = { [sym_line_comment] = STATE(704), [sym_block_comment] = STATE(704), - [sym__expression] = STATE(2122), - [sym__expression_without_blocks] = STATE(2226), - [sym__expression_with_blocks] = STATE(2226), - [sym_inc_expression] = STATE(2247), - [sym_dec_expression] = STATE(2247), - [sym_or_block_expression] = STATE(2247), - [sym_option_propagation_expression] = STATE(2247), - [sym_result_propagation_expression] = STATE(2247), - [sym_anon_struct_value_expression] = STATE(2248), - [sym_go_expression] = STATE(2247), - [sym_spawn_expression] = STATE(2247), - [sym_parenthesized_expression] = STATE(2247), - [sym_call_expression] = STATE(2247), - [sym_type_initializer] = STATE(2248), - [sym_function_literal] = STATE(2247), - [sym_reference_expression] = STATE(2252), - [sym_type_reference_expression] = STATE(3541), - [sym_unary_expression] = STATE(2247), - [sym_receive_expression] = STATE(2247), - [sym_binary_expression] = STATE(2247), - [sym_as_type_cast_expression] = STATE(2247), - [sym__max_group] = STATE(2247), - [sym_literal] = STATE(2155), - [sym_map_init_expression] = STATE(2248), - [sym_array_creation] = STATE(2247), - [sym_fixed_array_creation] = STATE(2247), - [sym_selector_expression] = STATE(2247), - [sym_index_expression] = STATE(2247), - [sym_slice_expression] = STATE(2247), - [sym_if_expression] = STATE(2248), - [sym_compile_time_if_expression] = STATE(2248), - [sym_is_expression] = STATE(2247), - [sym_in_expression] = STATE(2247), - [sym_enum_fetch] = STATE(2247), - [sym_match_expression] = STATE(2248), - [sym_select_expression] = STATE(2248), - [sym_lock_expression] = STATE(2248), - [sym_unsafe_expression] = STATE(2248), - [sym_sql_expression] = STATE(2248), - [sym_c_string_literal] = STATE(2153), - [sym_raw_string_literal] = STATE(2153), - [sym_interpreted_string_literal] = STATE(2153), - [sym_mutability_modifiers] = STATE(631), - [sym_plain_type] = STATE(4146), - [sym__plain_type_without_special] = STATE(2302), - [sym_anon_struct_type] = STATE(2303), - [sym_multi_return_type] = STATE(2302), - [sym_result_type] = STATE(2302), - [sym_option_type] = STATE(2302), - [sym_qualified_type] = STATE(3541), - [sym_fixed_array_type] = STATE(2303), - [sym_array_type] = STATE(2303), - [sym_pointer_type] = STATE(2303), - [sym_wrong_pointer_type] = STATE(2303), - [sym_map_type] = STATE(2303), - [sym_channel_type] = STATE(2303), - [sym_shared_type] = STATE(2303), - [sym_thread_type] = STATE(2303), - [sym_atomic_type] = STATE(2303), - [sym_generic_type] = STATE(2303), - [sym_function_type] = STATE(2303), - [sym_identifier] = ACTIONS(3286), + [sym__expression] = STATE(2750), + [sym__expression_without_blocks] = STATE(2347), + [sym__expression_with_blocks] = STATE(2347), + [sym_inc_expression] = STATE(2379), + [sym_dec_expression] = STATE(2379), + [sym_or_block_expression] = STATE(2379), + [sym_option_propagation_expression] = STATE(2379), + [sym_result_propagation_expression] = STATE(2379), + [sym_anon_struct_value_expression] = STATE(2378), + [sym_go_expression] = STATE(2379), + [sym_spawn_expression] = STATE(2379), + [sym_parenthesized_expression] = STATE(2379), + [sym_call_expression] = STATE(2379), + [sym_type_initializer] = STATE(2378), + [sym_function_literal] = STATE(2379), + [sym_reference_expression] = STATE(2377), + [sym_type_reference_expression] = STATE(3460), + [sym_unary_expression] = STATE(2379), + [sym_receive_expression] = STATE(2379), + [sym_binary_expression] = STATE(2379), + [sym_as_type_cast_expression] = STATE(2379), + [sym__max_group] = STATE(2379), + [sym_literal] = STATE(2392), + [sym_map_init_expression] = STATE(2378), + [sym_array_creation] = STATE(2379), + [sym_fixed_array_creation] = STATE(2379), + [sym_selector_expression] = STATE(2379), + [sym_index_expression] = STATE(2379), + [sym_slice_expression] = STATE(2379), + [sym_if_expression] = STATE(2378), + [sym_compile_time_if_expression] = STATE(2378), + [sym_is_expression] = STATE(2379), + [sym_in_expression] = STATE(2379), + [sym_enum_fetch] = STATE(2379), + [sym_match_expression] = STATE(2378), + [sym_select_expression] = STATE(2378), + [sym_lock_expression] = STATE(2378), + [sym_unsafe_expression] = STATE(2378), + [sym_sql_expression] = STATE(2378), + [sym_c_string_literal] = STATE(2401), + [sym_raw_string_literal] = STATE(2401), + [sym_interpreted_string_literal] = STATE(2401), + [sym_mutability_modifiers] = STATE(939), + [sym_plain_type] = STATE(3564), + [sym__plain_type_without_special] = STATE(2360), + [sym_anon_struct_type] = STATE(2362), + [sym_multi_return_type] = STATE(2360), + [sym_result_type] = STATE(2360), + [sym_option_type] = STATE(2360), + [sym_qualified_type] = STATE(3460), + [sym_fixed_array_type] = STATE(2362), + [sym_array_type] = STATE(2362), + [sym_pointer_type] = STATE(2362), + [sym_wrong_pointer_type] = STATE(2362), + [sym_map_type] = STATE(2362), + [sym_channel_type] = STATE(2362), + [sym_shared_type] = STATE(2362), + [sym_thread_type] = STATE(2362), + [sym_atomic_type] = STATE(2362), + [sym_generic_type] = STATE(2362), + [sym_function_type] = STATE(2362), + [sym_identifier] = ACTIONS(1428), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(3288), - [anon_sym_LBRACE] = ACTIONS(3290), - [anon_sym_LPAREN] = ACTIONS(3292), - [anon_sym_fn] = ACTIONS(3294), - [anon_sym_PLUS] = ACTIONS(3398), - [anon_sym_DASH] = ACTIONS(3398), - [anon_sym_STAR] = ACTIONS(3400), - [anon_sym_struct] = ACTIONS(3300), + [anon_sym_DOT] = ACTIONS(1430), + [anon_sym_LBRACE] = ACTIONS(1432), + [anon_sym_LPAREN] = ACTIONS(1434), + [anon_sym_fn] = ACTIONS(1436), + [anon_sym_PLUS] = ACTIONS(2271), + [anon_sym_DASH] = ACTIONS(2271), + [anon_sym_STAR] = ACTIONS(2273), + [anon_sym_struct] = ACTIONS(1442), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(3402), - [anon_sym_go] = ACTIONS(3404), - [anon_sym_spawn] = ACTIONS(3406), - [anon_sym_json_DOTdecode] = ACTIONS(3308), - [anon_sym_LBRACK2] = ACTIONS(3310), - [anon_sym_TILDE] = ACTIONS(3398), - [anon_sym_CARET] = ACTIONS(3398), - [anon_sym_AMP] = ACTIONS(3408), - [anon_sym_LT_DASH] = ACTIONS(3410), - [sym_none] = ACTIONS(3316), - [sym_true] = ACTIONS(3316), - [sym_false] = ACTIONS(3316), - [sym_nil] = ACTIONS(3316), - [anon_sym_if] = ACTIONS(3318), - [anon_sym_DOLLARif] = ACTIONS(3320), - [anon_sym_match] = ACTIONS(3322), - [anon_sym_select] = ACTIONS(3412), - [anon_sym_lock] = ACTIONS(3414), - [anon_sym_rlock] = ACTIONS(3414), - [anon_sym_unsafe] = ACTIONS(3328), - [anon_sym_sql] = ACTIONS(3330), - [sym_int_literal] = ACTIONS(3316), - [sym_float_literal] = ACTIONS(3332), - [sym_rune_literal] = ACTIONS(3332), - [sym_pseudo_compile_time_identifier] = ACTIONS(3334), + [anon_sym_BANG] = ACTIONS(2275), + [anon_sym_go] = ACTIONS(2277), + [anon_sym_spawn] = ACTIONS(2279), + [anon_sym_json_DOTdecode] = ACTIONS(1450), + [anon_sym_LBRACK2] = ACTIONS(1452), + [anon_sym_TILDE] = ACTIONS(2271), + [anon_sym_CARET] = ACTIONS(2271), + [anon_sym_AMP] = ACTIONS(2281), + [anon_sym_LT_DASH] = ACTIONS(2283), + [sym_none] = ACTIONS(1458), + [sym_true] = ACTIONS(1458), + [sym_false] = ACTIONS(1458), + [sym_nil] = ACTIONS(1458), + [anon_sym_if] = ACTIONS(1833), + [anon_sym_DOLLARif] = ACTIONS(1462), + [anon_sym_match] = ACTIONS(1464), + [anon_sym_select] = ACTIONS(1466), + [anon_sym_lock] = ACTIONS(1468), + [anon_sym_rlock] = ACTIONS(1468), + [anon_sym_unsafe] = ACTIONS(1839), + [anon_sym_sql] = ACTIONS(1472), + [sym_int_literal] = ACTIONS(1458), + [sym_float_literal] = ACTIONS(1474), + [sym_rune_literal] = ACTIONS(1474), + [sym_pseudo_compile_time_identifier] = ACTIONS(1476), [anon_sym_shared] = ACTIONS(83), [anon_sym_map_LBRACK] = ACTIONS(85), [anon_sym_chan] = ACTIONS(87), [anon_sym_thread] = ACTIONS(89), [anon_sym_atomic] = ACTIONS(91), - [sym___double_quote] = ACTIONS(3336), - [sym___single_quote] = ACTIONS(3338), - [sym___c_double_quote] = ACTIONS(3340), - [sym___c_single_quote] = ACTIONS(3342), - [sym___r_double_quote] = ACTIONS(3344), - [sym___r_single_quote] = ACTIONS(3346), + [sym___double_quote] = ACTIONS(1480), + [sym___single_quote] = ACTIONS(1482), + [sym___c_double_quote] = ACTIONS(1484), + [sym___c_single_quote] = ACTIONS(1486), + [sym___r_double_quote] = ACTIONS(1488), + [sym___r_single_quote] = ACTIONS(1490), }, [705] = { [sym_line_comment] = STATE(705), [sym_block_comment] = STATE(705), - [sym__expression] = STATE(2119), - [sym__expression_without_blocks] = STATE(2226), - [sym__expression_with_blocks] = STATE(2226), - [sym_inc_expression] = STATE(2247), - [sym_dec_expression] = STATE(2247), - [sym_or_block_expression] = STATE(2247), - [sym_option_propagation_expression] = STATE(2247), - [sym_result_propagation_expression] = STATE(2247), - [sym_anon_struct_value_expression] = STATE(2248), - [sym_go_expression] = STATE(2247), - [sym_spawn_expression] = STATE(2247), - [sym_parenthesized_expression] = STATE(2247), - [sym_call_expression] = STATE(2247), - [sym_type_initializer] = STATE(2248), - [sym_function_literal] = STATE(2247), - [sym_reference_expression] = STATE(2252), - [sym_type_reference_expression] = STATE(3541), - [sym_unary_expression] = STATE(2247), - [sym_receive_expression] = STATE(2247), - [sym_binary_expression] = STATE(2247), - [sym_as_type_cast_expression] = STATE(2247), - [sym__max_group] = STATE(2247), - [sym_literal] = STATE(2155), - [sym_map_init_expression] = STATE(2248), - [sym_array_creation] = STATE(2247), - [sym_fixed_array_creation] = STATE(2247), - [sym_selector_expression] = STATE(2247), - [sym_index_expression] = STATE(2247), - [sym_slice_expression] = STATE(2247), - [sym_if_expression] = STATE(2248), - [sym_compile_time_if_expression] = STATE(2248), - [sym_is_expression] = STATE(2247), - [sym_in_expression] = STATE(2247), - [sym_enum_fetch] = STATE(2247), - [sym_match_expression] = STATE(2248), - [sym_select_expression] = STATE(2248), - [sym_lock_expression] = STATE(2248), - [sym_unsafe_expression] = STATE(2248), - [sym_sql_expression] = STATE(2248), - [sym_c_string_literal] = STATE(2153), - [sym_raw_string_literal] = STATE(2153), - [sym_interpreted_string_literal] = STATE(2153), - [sym_mutability_modifiers] = STATE(631), - [sym_plain_type] = STATE(4180), - [sym__plain_type_without_special] = STATE(2302), - [sym_anon_struct_type] = STATE(2303), - [sym_multi_return_type] = STATE(2302), - [sym_result_type] = STATE(2302), - [sym_option_type] = STATE(2302), - [sym_qualified_type] = STATE(3541), - [sym_fixed_array_type] = STATE(2303), - [sym_array_type] = STATE(2303), - [sym_pointer_type] = STATE(2303), - [sym_wrong_pointer_type] = STATE(2303), - [sym_map_type] = STATE(2303), - [sym_channel_type] = STATE(2303), - [sym_shared_type] = STATE(2303), - [sym_thread_type] = STATE(2303), - [sym_atomic_type] = STATE(2303), - [sym_generic_type] = STATE(2303), - [sym_function_type] = STATE(2303), - [sym_identifier] = ACTIONS(3286), + [sym__expression] = STATE(1775), + [sym__expression_without_blocks] = STATE(1953), + [sym__expression_with_blocks] = STATE(1953), + [sym_inc_expression] = STATE(1955), + [sym_dec_expression] = STATE(1955), + [sym_or_block_expression] = STATE(1955), + [sym_option_propagation_expression] = STATE(1955), + [sym_result_propagation_expression] = STATE(1955), + [sym_anon_struct_value_expression] = STATE(1958), + [sym_go_expression] = STATE(1955), + [sym_spawn_expression] = STATE(1955), + [sym_parenthesized_expression] = STATE(1955), + [sym_call_expression] = STATE(1955), + [sym_type_initializer] = STATE(1958), + [sym_function_literal] = STATE(1955), + [sym_reference_expression] = STATE(1956), + [sym_type_reference_expression] = STATE(3460), + [sym_unary_expression] = STATE(1955), + [sym_receive_expression] = STATE(1955), + [sym_binary_expression] = STATE(1955), + [sym_as_type_cast_expression] = STATE(1955), + [sym__max_group] = STATE(1955), + [sym_literal] = STATE(1943), + [sym_map_init_expression] = STATE(1958), + [sym_array_creation] = STATE(1955), + [sym_fixed_array_creation] = STATE(1955), + [sym_selector_expression] = STATE(1955), + [sym_index_expression] = STATE(1955), + [sym_slice_expression] = STATE(1955), + [sym_if_expression] = STATE(1958), + [sym_compile_time_if_expression] = STATE(1958), + [sym_is_expression] = STATE(1955), + [sym_in_expression] = STATE(1955), + [sym_enum_fetch] = STATE(1955), + [sym_match_expression] = STATE(1958), + [sym_select_expression] = STATE(1958), + [sym_lock_expression] = STATE(1958), + [sym_unsafe_expression] = STATE(1958), + [sym_sql_expression] = STATE(1958), + [sym_c_string_literal] = STATE(1942), + [sym_raw_string_literal] = STATE(1942), + [sym_interpreted_string_literal] = STATE(1942), + [sym_mutability_modifiers] = STATE(601), + [sym_plain_type] = STATE(4266), + [sym__plain_type_without_special] = STATE(2360), + [sym_anon_struct_type] = STATE(2362), + [sym_multi_return_type] = STATE(2360), + [sym_result_type] = STATE(2360), + [sym_option_type] = STATE(2360), + [sym_qualified_type] = STATE(3460), + [sym_fixed_array_type] = STATE(2362), + [sym_array_type] = STATE(2362), + [sym_pointer_type] = STATE(2362), + [sym_wrong_pointer_type] = STATE(2362), + [sym_map_type] = STATE(2362), + [sym_channel_type] = STATE(2362), + [sym_shared_type] = STATE(2362), + [sym_thread_type] = STATE(2362), + [sym_atomic_type] = STATE(2362), + [sym_generic_type] = STATE(2362), + [sym_function_type] = STATE(2362), + [sym_identifier] = ACTIONS(1681), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(3288), - [anon_sym_LBRACE] = ACTIONS(3290), - [anon_sym_LPAREN] = ACTIONS(3292), - [anon_sym_fn] = ACTIONS(3294), - [anon_sym_PLUS] = ACTIONS(3398), - [anon_sym_DASH] = ACTIONS(3398), - [anon_sym_STAR] = ACTIONS(3400), - [anon_sym_struct] = ACTIONS(3300), + [anon_sym_DOT] = ACTIONS(705), + [anon_sym_LBRACE] = ACTIONS(3118), + [anon_sym_LPAREN] = ACTIONS(709), + [anon_sym_fn] = ACTIONS(711), + [anon_sym_PLUS] = ACTIONS(713), + [anon_sym_DASH] = ACTIONS(713), + [anon_sym_STAR] = ACTIONS(715), + [anon_sym_struct] = ACTIONS(717), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(3402), - [anon_sym_go] = ACTIONS(3404), - [anon_sym_spawn] = ACTIONS(3406), - [anon_sym_json_DOTdecode] = ACTIONS(3308), - [anon_sym_LBRACK2] = ACTIONS(3310), - [anon_sym_TILDE] = ACTIONS(3398), - [anon_sym_CARET] = ACTIONS(3398), - [anon_sym_AMP] = ACTIONS(3408), - [anon_sym_LT_DASH] = ACTIONS(3410), - [sym_none] = ACTIONS(3316), - [sym_true] = ACTIONS(3316), - [sym_false] = ACTIONS(3316), - [sym_nil] = ACTIONS(3316), - [anon_sym_if] = ACTIONS(3318), - [anon_sym_DOLLARif] = ACTIONS(3320), - [anon_sym_match] = ACTIONS(3322), - [anon_sym_select] = ACTIONS(3412), - [anon_sym_lock] = ACTIONS(3414), - [anon_sym_rlock] = ACTIONS(3414), - [anon_sym_unsafe] = ACTIONS(3328), - [anon_sym_sql] = ACTIONS(3330), - [sym_int_literal] = ACTIONS(3316), - [sym_float_literal] = ACTIONS(3332), - [sym_rune_literal] = ACTIONS(3332), - [sym_pseudo_compile_time_identifier] = ACTIONS(3334), + [anon_sym_BANG] = ACTIONS(721), + [anon_sym_go] = ACTIONS(723), + [anon_sym_spawn] = ACTIONS(725), + [anon_sym_json_DOTdecode] = ACTIONS(727), + [anon_sym_LBRACK2] = ACTIONS(729), + [anon_sym_TILDE] = ACTIONS(713), + [anon_sym_CARET] = ACTIONS(713), + [anon_sym_AMP] = ACTIONS(731), + [anon_sym_LT_DASH] = ACTIONS(733), + [sym_none] = ACTIONS(735), + [sym_true] = ACTIONS(735), + [sym_false] = ACTIONS(735), + [sym_nil] = ACTIONS(735), + [anon_sym_if] = ACTIONS(737), + [anon_sym_DOLLARif] = ACTIONS(739), + [anon_sym_match] = ACTIONS(741), + [anon_sym_select] = ACTIONS(743), + [anon_sym_lock] = ACTIONS(745), + [anon_sym_rlock] = ACTIONS(745), + [anon_sym_unsafe] = ACTIONS(747), + [anon_sym_sql] = ACTIONS(749), + [sym_int_literal] = ACTIONS(735), + [sym_float_literal] = ACTIONS(751), + [sym_rune_literal] = ACTIONS(751), + [sym_pseudo_compile_time_identifier] = ACTIONS(753), [anon_sym_shared] = ACTIONS(83), [anon_sym_map_LBRACK] = ACTIONS(85), [anon_sym_chan] = ACTIONS(87), [anon_sym_thread] = ACTIONS(89), [anon_sym_atomic] = ACTIONS(91), - [sym___double_quote] = ACTIONS(3336), - [sym___single_quote] = ACTIONS(3338), - [sym___c_double_quote] = ACTIONS(3340), - [sym___c_single_quote] = ACTIONS(3342), - [sym___r_double_quote] = ACTIONS(3344), - [sym___r_single_quote] = ACTIONS(3346), + [sym___double_quote] = ACTIONS(755), + [sym___single_quote] = ACTIONS(757), + [sym___c_double_quote] = ACTIONS(759), + [sym___c_single_quote] = ACTIONS(761), + [sym___r_double_quote] = ACTIONS(763), + [sym___r_single_quote] = ACTIONS(765), }, [706] = { [sym_line_comment] = STATE(706), [sym_block_comment] = STATE(706), - [sym__expression] = STATE(2445), - [sym__expression_without_blocks] = STATE(2625), - [sym__expression_with_blocks] = STATE(2625), - [sym_inc_expression] = STATE(2765), - [sym_dec_expression] = STATE(2765), - [sym_or_block_expression] = STATE(2765), - [sym_option_propagation_expression] = STATE(2765), - [sym_result_propagation_expression] = STATE(2765), - [sym_anon_struct_value_expression] = STATE(2619), - [sym_go_expression] = STATE(2765), - [sym_spawn_expression] = STATE(2765), - [sym_parenthesized_expression] = STATE(2765), - [sym_call_expression] = STATE(2765), - [sym_type_initializer] = STATE(2619), - [sym_function_literal] = STATE(2765), - [sym_reference_expression] = STATE(2764), - [sym_type_reference_expression] = STATE(3541), - [sym_unary_expression] = STATE(2765), - [sym_receive_expression] = STATE(2765), - [sym_binary_expression] = STATE(2765), - [sym_as_type_cast_expression] = STATE(2765), - [sym__max_group] = STATE(2765), - [sym_literal] = STATE(2769), - [sym_map_init_expression] = STATE(2619), - [sym_array_creation] = STATE(2765), - [sym_fixed_array_creation] = STATE(2765), - [sym_selector_expression] = STATE(2765), - [sym_index_expression] = STATE(2765), - [sym_slice_expression] = STATE(2765), - [sym_if_expression] = STATE(2619), - [sym_compile_time_if_expression] = STATE(2619), - [sym_is_expression] = STATE(2765), - [sym_in_expression] = STATE(2765), - [sym_enum_fetch] = STATE(2765), - [sym_match_expression] = STATE(2619), - [sym_select_expression] = STATE(2619), - [sym_lock_expression] = STATE(2619), - [sym_unsafe_expression] = STATE(2619), - [sym_sql_expression] = STATE(2619), - [sym_c_string_literal] = STATE(2660), - [sym_raw_string_literal] = STATE(2660), - [sym_interpreted_string_literal] = STATE(2660), - [sym_mutability_modifiers] = STATE(567), - [sym_plain_type] = STATE(3933), - [sym__plain_type_without_special] = STATE(2302), - [sym_anon_struct_type] = STATE(2303), - [sym_multi_return_type] = STATE(2302), - [sym_result_type] = STATE(2302), - [sym_option_type] = STATE(2302), - [sym_qualified_type] = STATE(3541), - [sym_fixed_array_type] = STATE(2303), - [sym_array_type] = STATE(2303), - [sym_pointer_type] = STATE(2303), - [sym_wrong_pointer_type] = STATE(2303), - [sym_map_type] = STATE(2303), - [sym_channel_type] = STATE(2303), - [sym_shared_type] = STATE(2303), - [sym_thread_type] = STATE(2303), - [sym_atomic_type] = STATE(2303), - [sym_generic_type] = STATE(2303), - [sym_function_type] = STATE(2303), - [sym_identifier] = ACTIONS(1807), + [sym__expression] = STATE(2694), + [sym__expression_without_blocks] = STATE(2347), + [sym__expression_with_blocks] = STATE(2347), + [sym_inc_expression] = STATE(2379), + [sym_dec_expression] = STATE(2379), + [sym_or_block_expression] = STATE(2379), + [sym_option_propagation_expression] = STATE(2379), + [sym_result_propagation_expression] = STATE(2379), + [sym_anon_struct_value_expression] = STATE(2378), + [sym_go_expression] = STATE(2379), + [sym_spawn_expression] = STATE(2379), + [sym_parenthesized_expression] = STATE(2379), + [sym_call_expression] = STATE(2379), + [sym_type_initializer] = STATE(2378), + [sym_function_literal] = STATE(2379), + [sym_reference_expression] = STATE(2377), + [sym_type_reference_expression] = STATE(3460), + [sym_unary_expression] = STATE(2379), + [sym_receive_expression] = STATE(2379), + [sym_binary_expression] = STATE(2379), + [sym_as_type_cast_expression] = STATE(2379), + [sym__max_group] = STATE(2379), + [sym_literal] = STATE(2392), + [sym_map_init_expression] = STATE(2378), + [sym_array_creation] = STATE(2379), + [sym_fixed_array_creation] = STATE(2379), + [sym_selector_expression] = STATE(2379), + [sym_index_expression] = STATE(2379), + [sym_slice_expression] = STATE(2379), + [sym_if_expression] = STATE(2378), + [sym_compile_time_if_expression] = STATE(2378), + [sym_is_expression] = STATE(2379), + [sym_in_expression] = STATE(2379), + [sym_enum_fetch] = STATE(2379), + [sym_match_expression] = STATE(2378), + [sym_select_expression] = STATE(2378), + [sym_lock_expression] = STATE(2378), + [sym_unsafe_expression] = STATE(2378), + [sym_sql_expression] = STATE(2378), + [sym_c_string_literal] = STATE(2401), + [sym_raw_string_literal] = STATE(2401), + [sym_interpreted_string_literal] = STATE(2401), + [sym_mutability_modifiers] = STATE(939), + [sym_plain_type] = STATE(4160), + [sym__plain_type_without_special] = STATE(2360), + [sym_anon_struct_type] = STATE(2362), + [sym_multi_return_type] = STATE(2360), + [sym_result_type] = STATE(2360), + [sym_option_type] = STATE(2360), + [sym_qualified_type] = STATE(3460), + [sym_fixed_array_type] = STATE(2362), + [sym_array_type] = STATE(2362), + [sym_pointer_type] = STATE(2362), + [sym_wrong_pointer_type] = STATE(2362), + [sym_map_type] = STATE(2362), + [sym_channel_type] = STATE(2362), + [sym_shared_type] = STATE(2362), + [sym_thread_type] = STATE(2362), + [sym_atomic_type] = STATE(2362), + [sym_generic_type] = STATE(2362), + [sym_function_type] = STATE(2362), + [sym_identifier] = ACTIONS(2477), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1081), - [anon_sym_LBRACE] = ACTIONS(1083), - [anon_sym_LPAREN] = ACTIONS(1087), - [anon_sym_fn] = ACTIONS(1089), - [anon_sym_PLUS] = ACTIONS(1091), - [anon_sym_DASH] = ACTIONS(1091), - [anon_sym_STAR] = ACTIONS(3348), - [anon_sym_struct] = ACTIONS(1095), + [anon_sym_DOT] = ACTIONS(1430), + [anon_sym_LBRACE] = ACTIONS(1432), + [anon_sym_LPAREN] = ACTIONS(1434), + [anon_sym_fn] = ACTIONS(1436), + [anon_sym_PLUS] = ACTIONS(2271), + [anon_sym_DASH] = ACTIONS(2271), + [anon_sym_STAR] = ACTIONS(3354), + [anon_sym_struct] = ACTIONS(1442), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(3350), - [anon_sym_go] = ACTIONS(1099), - [anon_sym_spawn] = ACTIONS(1101), - [anon_sym_json_DOTdecode] = ACTIONS(1103), - [anon_sym_LBRACK2] = ACTIONS(1105), - [anon_sym_TILDE] = ACTIONS(1091), - [anon_sym_CARET] = ACTIONS(1091), - [anon_sym_AMP] = ACTIONS(3352), - [anon_sym_LT_DASH] = ACTIONS(1109), - [sym_none] = ACTIONS(1111), - [sym_true] = ACTIONS(1111), - [sym_false] = ACTIONS(1111), - [sym_nil] = ACTIONS(1111), - [anon_sym_if] = ACTIONS(1113), - [anon_sym_DOLLARif] = ACTIONS(1117), - [anon_sym_match] = ACTIONS(1119), - [anon_sym_select] = ACTIONS(3104), - [anon_sym_lock] = ACTIONS(3106), - [anon_sym_rlock] = ACTIONS(3106), - [anon_sym_unsafe] = ACTIONS(1125), - [anon_sym_sql] = ACTIONS(1127), - [sym_int_literal] = ACTIONS(1111), - [sym_float_literal] = ACTIONS(1129), - [sym_rune_literal] = ACTIONS(1129), - [sym_pseudo_compile_time_identifier] = ACTIONS(1131), + [anon_sym_BANG] = ACTIONS(3356), + [anon_sym_go] = ACTIONS(2277), + [anon_sym_spawn] = ACTIONS(2279), + [anon_sym_json_DOTdecode] = ACTIONS(1450), + [anon_sym_LBRACK2] = ACTIONS(1452), + [anon_sym_TILDE] = ACTIONS(2271), + [anon_sym_CARET] = ACTIONS(2271), + [anon_sym_AMP] = ACTIONS(3358), + [anon_sym_LT_DASH] = ACTIONS(2283), + [sym_none] = ACTIONS(1458), + [sym_true] = ACTIONS(1458), + [sym_false] = ACTIONS(1458), + [sym_nil] = ACTIONS(1458), + [anon_sym_if] = ACTIONS(1833), + [anon_sym_DOLLARif] = ACTIONS(1462), + [anon_sym_match] = ACTIONS(1464), + [anon_sym_select] = ACTIONS(1466), + [anon_sym_lock] = ACTIONS(1468), + [anon_sym_rlock] = ACTIONS(1468), + [anon_sym_unsafe] = ACTIONS(1839), + [anon_sym_sql] = ACTIONS(1472), + [sym_int_literal] = ACTIONS(1458), + [sym_float_literal] = ACTIONS(1474), + [sym_rune_literal] = ACTIONS(1474), + [sym_pseudo_compile_time_identifier] = ACTIONS(1476), [anon_sym_shared] = ACTIONS(83), [anon_sym_map_LBRACK] = ACTIONS(85), [anon_sym_chan] = ACTIONS(87), [anon_sym_thread] = ACTIONS(89), [anon_sym_atomic] = ACTIONS(91), - [sym___double_quote] = ACTIONS(1133), - [sym___single_quote] = ACTIONS(1135), - [sym___c_double_quote] = ACTIONS(1137), - [sym___c_single_quote] = ACTIONS(1139), - [sym___r_double_quote] = ACTIONS(1141), - [sym___r_single_quote] = ACTIONS(1143), + [sym___double_quote] = ACTIONS(1480), + [sym___single_quote] = ACTIONS(1482), + [sym___c_double_quote] = ACTIONS(1484), + [sym___c_single_quote] = ACTIONS(1486), + [sym___r_double_quote] = ACTIONS(1488), + [sym___r_single_quote] = ACTIONS(1490), }, [707] = { [sym_line_comment] = STATE(707), [sym_block_comment] = STATE(707), - [sym__expression] = STATE(2445), - [sym__expression_without_blocks] = STATE(2625), - [sym__expression_with_blocks] = STATE(2625), - [sym_inc_expression] = STATE(2765), - [sym_dec_expression] = STATE(2765), - [sym_or_block_expression] = STATE(2765), - [sym_option_propagation_expression] = STATE(2765), - [sym_result_propagation_expression] = STATE(2765), - [sym_anon_struct_value_expression] = STATE(2619), - [sym_go_expression] = STATE(2765), - [sym_spawn_expression] = STATE(2765), - [sym_parenthesized_expression] = STATE(2765), - [sym_call_expression] = STATE(2765), - [sym_type_initializer] = STATE(2619), - [sym_function_literal] = STATE(2765), - [sym_reference_expression] = STATE(2764), - [sym_type_reference_expression] = STATE(3541), - [sym_unary_expression] = STATE(2765), - [sym_receive_expression] = STATE(2765), - [sym_binary_expression] = STATE(2765), - [sym_as_type_cast_expression] = STATE(2765), - [sym__max_group] = STATE(2765), - [sym_literal] = STATE(2769), - [sym_map_init_expression] = STATE(2619), - [sym_array_creation] = STATE(2765), - [sym_fixed_array_creation] = STATE(2765), - [sym_selector_expression] = STATE(2765), - [sym_index_expression] = STATE(2765), - [sym_slice_expression] = STATE(2765), - [sym_if_expression] = STATE(2619), - [sym_compile_time_if_expression] = STATE(2619), - [sym_is_expression] = STATE(2765), - [sym_in_expression] = STATE(2765), - [sym_enum_fetch] = STATE(2765), - [sym_match_expression] = STATE(2619), - [sym_select_expression] = STATE(2619), - [sym_lock_expression] = STATE(2619), - [sym_unsafe_expression] = STATE(2619), - [sym_sql_expression] = STATE(2619), - [sym_c_string_literal] = STATE(2660), - [sym_raw_string_literal] = STATE(2660), - [sym_interpreted_string_literal] = STATE(2660), - [sym_mutability_modifiers] = STATE(567), - [sym_plain_type] = STATE(3931), - [sym__plain_type_without_special] = STATE(2302), - [sym_anon_struct_type] = STATE(2303), - [sym_multi_return_type] = STATE(2302), - [sym_result_type] = STATE(2302), - [sym_option_type] = STATE(2302), - [sym_qualified_type] = STATE(3541), - [sym_fixed_array_type] = STATE(2303), - [sym_array_type] = STATE(2303), - [sym_pointer_type] = STATE(2303), - [sym_wrong_pointer_type] = STATE(2303), - [sym_map_type] = STATE(2303), - [sym_channel_type] = STATE(2303), - [sym_shared_type] = STATE(2303), - [sym_thread_type] = STATE(2303), - [sym_atomic_type] = STATE(2303), - [sym_generic_type] = STATE(2303), - [sym_function_type] = STATE(2303), - [sym_identifier] = ACTIONS(1807), + [sym__expression] = STATE(1857), + [sym__expression_without_blocks] = STATE(1953), + [sym__expression_with_blocks] = STATE(1953), + [sym_inc_expression] = STATE(1955), + [sym_dec_expression] = STATE(1955), + [sym_or_block_expression] = STATE(1955), + [sym_option_propagation_expression] = STATE(1955), + [sym_result_propagation_expression] = STATE(1955), + [sym_anon_struct_value_expression] = STATE(1958), + [sym_go_expression] = STATE(1955), + [sym_spawn_expression] = STATE(1955), + [sym_parenthesized_expression] = STATE(1955), + [sym_call_expression] = STATE(1955), + [sym_type_initializer] = STATE(1958), + [sym_function_literal] = STATE(1955), + [sym_reference_expression] = STATE(1956), + [sym_type_reference_expression] = STATE(3460), + [sym_unary_expression] = STATE(1955), + [sym_receive_expression] = STATE(1955), + [sym_binary_expression] = STATE(1955), + [sym_as_type_cast_expression] = STATE(1955), + [sym__max_group] = STATE(1955), + [sym_literal] = STATE(1943), + [sym_map_init_expression] = STATE(1958), + [sym_array_creation] = STATE(1955), + [sym_fixed_array_creation] = STATE(1955), + [sym_selector_expression] = STATE(1955), + [sym_index_expression] = STATE(1955), + [sym_slice_expression] = STATE(1955), + [sym_if_expression] = STATE(1958), + [sym_compile_time_if_expression] = STATE(1958), + [sym_is_expression] = STATE(1955), + [sym_in_expression] = STATE(1955), + [sym_enum_fetch] = STATE(1955), + [sym_match_expression] = STATE(1958), + [sym_select_expression] = STATE(1958), + [sym_lock_expression] = STATE(1958), + [sym_unsafe_expression] = STATE(1958), + [sym_sql_expression] = STATE(1958), + [sym_c_string_literal] = STATE(1942), + [sym_raw_string_literal] = STATE(1942), + [sym_interpreted_string_literal] = STATE(1942), + [sym_mutability_modifiers] = STATE(601), + [sym_plain_type] = STATE(4266), + [sym__plain_type_without_special] = STATE(2360), + [sym_anon_struct_type] = STATE(2362), + [sym_multi_return_type] = STATE(2360), + [sym_result_type] = STATE(2360), + [sym_option_type] = STATE(2360), + [sym_qualified_type] = STATE(3460), + [sym_fixed_array_type] = STATE(2362), + [sym_array_type] = STATE(2362), + [sym_pointer_type] = STATE(2362), + [sym_wrong_pointer_type] = STATE(2362), + [sym_map_type] = STATE(2362), + [sym_channel_type] = STATE(2362), + [sym_shared_type] = STATE(2362), + [sym_thread_type] = STATE(2362), + [sym_atomic_type] = STATE(2362), + [sym_generic_type] = STATE(2362), + [sym_function_type] = STATE(2362), + [sym_identifier] = ACTIONS(1681), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1081), - [anon_sym_LBRACE] = ACTIONS(1083), - [anon_sym_LPAREN] = ACTIONS(1087), - [anon_sym_fn] = ACTIONS(1089), - [anon_sym_PLUS] = ACTIONS(1091), - [anon_sym_DASH] = ACTIONS(1091), - [anon_sym_STAR] = ACTIONS(3348), - [anon_sym_struct] = ACTIONS(1095), + [anon_sym_DOT] = ACTIONS(705), + [anon_sym_LBRACE] = ACTIONS(3118), + [anon_sym_LPAREN] = ACTIONS(709), + [anon_sym_fn] = ACTIONS(711), + [anon_sym_PLUS] = ACTIONS(713), + [anon_sym_DASH] = ACTIONS(713), + [anon_sym_STAR] = ACTIONS(715), + [anon_sym_struct] = ACTIONS(717), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(3350), - [anon_sym_go] = ACTIONS(1099), - [anon_sym_spawn] = ACTIONS(1101), - [anon_sym_json_DOTdecode] = ACTIONS(1103), - [anon_sym_LBRACK2] = ACTIONS(1105), - [anon_sym_TILDE] = ACTIONS(1091), - [anon_sym_CARET] = ACTIONS(1091), - [anon_sym_AMP] = ACTIONS(3352), - [anon_sym_LT_DASH] = ACTIONS(1109), - [sym_none] = ACTIONS(1111), - [sym_true] = ACTIONS(1111), - [sym_false] = ACTIONS(1111), - [sym_nil] = ACTIONS(1111), - [anon_sym_if] = ACTIONS(1113), - [anon_sym_DOLLARif] = ACTIONS(1117), - [anon_sym_match] = ACTIONS(1119), - [anon_sym_select] = ACTIONS(3104), - [anon_sym_lock] = ACTIONS(3106), - [anon_sym_rlock] = ACTIONS(3106), - [anon_sym_unsafe] = ACTIONS(1125), - [anon_sym_sql] = ACTIONS(1127), - [sym_int_literal] = ACTIONS(1111), - [sym_float_literal] = ACTIONS(1129), - [sym_rune_literal] = ACTIONS(1129), - [sym_pseudo_compile_time_identifier] = ACTIONS(1131), + [anon_sym_BANG] = ACTIONS(721), + [anon_sym_go] = ACTIONS(723), + [anon_sym_spawn] = ACTIONS(725), + [anon_sym_json_DOTdecode] = ACTIONS(727), + [anon_sym_LBRACK2] = ACTIONS(729), + [anon_sym_TILDE] = ACTIONS(713), + [anon_sym_CARET] = ACTIONS(713), + [anon_sym_AMP] = ACTIONS(731), + [anon_sym_LT_DASH] = ACTIONS(733), + [sym_none] = ACTIONS(735), + [sym_true] = ACTIONS(735), + [sym_false] = ACTIONS(735), + [sym_nil] = ACTIONS(735), + [anon_sym_if] = ACTIONS(737), + [anon_sym_DOLLARif] = ACTIONS(739), + [anon_sym_match] = ACTIONS(741), + [anon_sym_select] = ACTIONS(743), + [anon_sym_lock] = ACTIONS(745), + [anon_sym_rlock] = ACTIONS(745), + [anon_sym_unsafe] = ACTIONS(747), + [anon_sym_sql] = ACTIONS(749), + [sym_int_literal] = ACTIONS(735), + [sym_float_literal] = ACTIONS(751), + [sym_rune_literal] = ACTIONS(751), + [sym_pseudo_compile_time_identifier] = ACTIONS(753), [anon_sym_shared] = ACTIONS(83), [anon_sym_map_LBRACK] = ACTIONS(85), [anon_sym_chan] = ACTIONS(87), [anon_sym_thread] = ACTIONS(89), [anon_sym_atomic] = ACTIONS(91), - [sym___double_quote] = ACTIONS(1133), - [sym___single_quote] = ACTIONS(1135), - [sym___c_double_quote] = ACTIONS(1137), - [sym___c_single_quote] = ACTIONS(1139), - [sym___r_double_quote] = ACTIONS(1141), - [sym___r_single_quote] = ACTIONS(1143), + [sym___double_quote] = ACTIONS(755), + [sym___single_quote] = ACTIONS(757), + [sym___c_double_quote] = ACTIONS(759), + [sym___c_single_quote] = ACTIONS(761), + [sym___r_double_quote] = ACTIONS(763), + [sym___r_single_quote] = ACTIONS(765), }, [708] = { [sym_line_comment] = STATE(708), [sym_block_comment] = STATE(708), - [sym__expression] = STATE(2445), - [sym__expression_without_blocks] = STATE(2625), - [sym__expression_with_blocks] = STATE(2625), - [sym_inc_expression] = STATE(2765), - [sym_dec_expression] = STATE(2765), - [sym_or_block_expression] = STATE(2765), - [sym_option_propagation_expression] = STATE(2765), - [sym_result_propagation_expression] = STATE(2765), - [sym_anon_struct_value_expression] = STATE(2619), - [sym_go_expression] = STATE(2765), - [sym_spawn_expression] = STATE(2765), - [sym_parenthesized_expression] = STATE(2765), - [sym_call_expression] = STATE(2765), - [sym_type_initializer] = STATE(2619), - [sym_function_literal] = STATE(2765), - [sym_reference_expression] = STATE(2764), - [sym_type_reference_expression] = STATE(3541), - [sym_unary_expression] = STATE(2765), - [sym_receive_expression] = STATE(2765), - [sym_binary_expression] = STATE(2765), - [sym_as_type_cast_expression] = STATE(2765), - [sym__max_group] = STATE(2765), - [sym_literal] = STATE(2769), - [sym_map_init_expression] = STATE(2619), - [sym_array_creation] = STATE(2765), - [sym_fixed_array_creation] = STATE(2765), - [sym_selector_expression] = STATE(2765), - [sym_index_expression] = STATE(2765), - [sym_slice_expression] = STATE(2765), - [sym_if_expression] = STATE(2619), - [sym_compile_time_if_expression] = STATE(2619), - [sym_is_expression] = STATE(2765), - [sym_in_expression] = STATE(2765), - [sym_enum_fetch] = STATE(2765), - [sym_match_expression] = STATE(2619), - [sym_select_expression] = STATE(2619), - [sym_lock_expression] = STATE(2619), - [sym_unsafe_expression] = STATE(2619), - [sym_sql_expression] = STATE(2619), - [sym_c_string_literal] = STATE(2660), - [sym_raw_string_literal] = STATE(2660), - [sym_interpreted_string_literal] = STATE(2660), - [sym_mutability_modifiers] = STATE(567), - [sym_plain_type] = STATE(3926), - [sym__plain_type_without_special] = STATE(2302), - [sym_anon_struct_type] = STATE(2303), - [sym_multi_return_type] = STATE(2302), - [sym_result_type] = STATE(2302), - [sym_option_type] = STATE(2302), - [sym_qualified_type] = STATE(3541), - [sym_fixed_array_type] = STATE(2303), - [sym_array_type] = STATE(2303), - [sym_pointer_type] = STATE(2303), - [sym_wrong_pointer_type] = STATE(2303), - [sym_map_type] = STATE(2303), - [sym_channel_type] = STATE(2303), - [sym_shared_type] = STATE(2303), - [sym_thread_type] = STATE(2303), - [sym_atomic_type] = STATE(2303), - [sym_generic_type] = STATE(2303), - [sym_function_type] = STATE(2303), - [sym_identifier] = ACTIONS(1807), + [sym__expression] = STATE(2709), + [sym__expression_without_blocks] = STATE(2347), + [sym__expression_with_blocks] = STATE(2347), + [sym_inc_expression] = STATE(2379), + [sym_dec_expression] = STATE(2379), + [sym_or_block_expression] = STATE(2379), + [sym_option_propagation_expression] = STATE(2379), + [sym_result_propagation_expression] = STATE(2379), + [sym_anon_struct_value_expression] = STATE(2378), + [sym_go_expression] = STATE(2379), + [sym_spawn_expression] = STATE(2379), + [sym_parenthesized_expression] = STATE(2379), + [sym_call_expression] = STATE(2379), + [sym_type_initializer] = STATE(2378), + [sym_function_literal] = STATE(2379), + [sym_reference_expression] = STATE(2377), + [sym_type_reference_expression] = STATE(3460), + [sym_unary_expression] = STATE(2379), + [sym_receive_expression] = STATE(2379), + [sym_binary_expression] = STATE(2379), + [sym_as_type_cast_expression] = STATE(2379), + [sym__max_group] = STATE(2379), + [sym_literal] = STATE(2392), + [sym_map_init_expression] = STATE(2378), + [sym_array_creation] = STATE(2379), + [sym_fixed_array_creation] = STATE(2379), + [sym_selector_expression] = STATE(2379), + [sym_index_expression] = STATE(2379), + [sym_slice_expression] = STATE(2379), + [sym_if_expression] = STATE(2378), + [sym_compile_time_if_expression] = STATE(2378), + [sym_is_expression] = STATE(2379), + [sym_in_expression] = STATE(2379), + [sym_enum_fetch] = STATE(2379), + [sym_match_expression] = STATE(2378), + [sym_select_expression] = STATE(2378), + [sym_lock_expression] = STATE(2378), + [sym_unsafe_expression] = STATE(2378), + [sym_sql_expression] = STATE(2378), + [sym_c_string_literal] = STATE(2401), + [sym_raw_string_literal] = STATE(2401), + [sym_interpreted_string_literal] = STATE(2401), + [sym_mutability_modifiers] = STATE(939), + [sym_plain_type] = STATE(4160), + [sym__plain_type_without_special] = STATE(2360), + [sym_anon_struct_type] = STATE(2362), + [sym_multi_return_type] = STATE(2360), + [sym_result_type] = STATE(2360), + [sym_option_type] = STATE(2360), + [sym_qualified_type] = STATE(3460), + [sym_fixed_array_type] = STATE(2362), + [sym_array_type] = STATE(2362), + [sym_pointer_type] = STATE(2362), + [sym_wrong_pointer_type] = STATE(2362), + [sym_map_type] = STATE(2362), + [sym_channel_type] = STATE(2362), + [sym_shared_type] = STATE(2362), + [sym_thread_type] = STATE(2362), + [sym_atomic_type] = STATE(2362), + [sym_generic_type] = STATE(2362), + [sym_function_type] = STATE(2362), + [sym_identifier] = ACTIONS(2477), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1081), - [anon_sym_LBRACE] = ACTIONS(1083), - [anon_sym_LPAREN] = ACTIONS(1087), - [anon_sym_fn] = ACTIONS(1089), - [anon_sym_PLUS] = ACTIONS(1091), - [anon_sym_DASH] = ACTIONS(1091), - [anon_sym_STAR] = ACTIONS(3348), - [anon_sym_struct] = ACTIONS(1095), + [anon_sym_DOT] = ACTIONS(1430), + [anon_sym_LBRACE] = ACTIONS(1432), + [anon_sym_LPAREN] = ACTIONS(1434), + [anon_sym_fn] = ACTIONS(1436), + [anon_sym_PLUS] = ACTIONS(2271), + [anon_sym_DASH] = ACTIONS(2271), + [anon_sym_STAR] = ACTIONS(3354), + [anon_sym_struct] = ACTIONS(1442), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(3350), - [anon_sym_go] = ACTIONS(1099), - [anon_sym_spawn] = ACTIONS(1101), - [anon_sym_json_DOTdecode] = ACTIONS(1103), - [anon_sym_LBRACK2] = ACTIONS(1105), - [anon_sym_TILDE] = ACTIONS(1091), - [anon_sym_CARET] = ACTIONS(1091), - [anon_sym_AMP] = ACTIONS(3352), - [anon_sym_LT_DASH] = ACTIONS(1109), - [sym_none] = ACTIONS(1111), - [sym_true] = ACTIONS(1111), - [sym_false] = ACTIONS(1111), - [sym_nil] = ACTIONS(1111), - [anon_sym_if] = ACTIONS(1113), - [anon_sym_DOLLARif] = ACTIONS(1117), - [anon_sym_match] = ACTIONS(1119), - [anon_sym_select] = ACTIONS(3104), - [anon_sym_lock] = ACTIONS(3106), - [anon_sym_rlock] = ACTIONS(3106), - [anon_sym_unsafe] = ACTIONS(1125), - [anon_sym_sql] = ACTIONS(1127), - [sym_int_literal] = ACTIONS(1111), - [sym_float_literal] = ACTIONS(1129), - [sym_rune_literal] = ACTIONS(1129), - [sym_pseudo_compile_time_identifier] = ACTIONS(1131), + [anon_sym_BANG] = ACTIONS(3356), + [anon_sym_go] = ACTIONS(2277), + [anon_sym_spawn] = ACTIONS(2279), + [anon_sym_json_DOTdecode] = ACTIONS(1450), + [anon_sym_LBRACK2] = ACTIONS(1452), + [anon_sym_TILDE] = ACTIONS(2271), + [anon_sym_CARET] = ACTIONS(2271), + [anon_sym_AMP] = ACTIONS(3358), + [anon_sym_LT_DASH] = ACTIONS(2283), + [sym_none] = ACTIONS(1458), + [sym_true] = ACTIONS(1458), + [sym_false] = ACTIONS(1458), + [sym_nil] = ACTIONS(1458), + [anon_sym_if] = ACTIONS(1833), + [anon_sym_DOLLARif] = ACTIONS(1462), + [anon_sym_match] = ACTIONS(1464), + [anon_sym_select] = ACTIONS(1466), + [anon_sym_lock] = ACTIONS(1468), + [anon_sym_rlock] = ACTIONS(1468), + [anon_sym_unsafe] = ACTIONS(1839), + [anon_sym_sql] = ACTIONS(1472), + [sym_int_literal] = ACTIONS(1458), + [sym_float_literal] = ACTIONS(1474), + [sym_rune_literal] = ACTIONS(1474), + [sym_pseudo_compile_time_identifier] = ACTIONS(1476), [anon_sym_shared] = ACTIONS(83), [anon_sym_map_LBRACK] = ACTIONS(85), [anon_sym_chan] = ACTIONS(87), [anon_sym_thread] = ACTIONS(89), [anon_sym_atomic] = ACTIONS(91), - [sym___double_quote] = ACTIONS(1133), - [sym___single_quote] = ACTIONS(1135), - [sym___c_double_quote] = ACTIONS(1137), - [sym___c_single_quote] = ACTIONS(1139), - [sym___r_double_quote] = ACTIONS(1141), - [sym___r_single_quote] = ACTIONS(1143), + [sym___double_quote] = ACTIONS(1480), + [sym___single_quote] = ACTIONS(1482), + [sym___c_double_quote] = ACTIONS(1484), + [sym___c_single_quote] = ACTIONS(1486), + [sym___r_double_quote] = ACTIONS(1488), + [sym___r_single_quote] = ACTIONS(1490), }, [709] = { [sym_line_comment] = STATE(709), [sym_block_comment] = STATE(709), - [sym__expression] = STATE(2119), - [sym__expression_without_blocks] = STATE(2226), - [sym__expression_with_blocks] = STATE(2226), - [sym_inc_expression] = STATE(2247), - [sym_dec_expression] = STATE(2247), - [sym_or_block_expression] = STATE(2247), - [sym_option_propagation_expression] = STATE(2247), - [sym_result_propagation_expression] = STATE(2247), - [sym_anon_struct_value_expression] = STATE(2248), - [sym_go_expression] = STATE(2247), - [sym_spawn_expression] = STATE(2247), - [sym_parenthesized_expression] = STATE(2247), - [sym_call_expression] = STATE(2247), - [sym_type_initializer] = STATE(2248), - [sym_function_literal] = STATE(2247), - [sym_reference_expression] = STATE(2252), - [sym_type_reference_expression] = STATE(3541), - [sym_unary_expression] = STATE(2247), - [sym_receive_expression] = STATE(2247), - [sym_binary_expression] = STATE(2247), - [sym_as_type_cast_expression] = STATE(2247), - [sym__max_group] = STATE(2247), - [sym_literal] = STATE(2155), - [sym_map_init_expression] = STATE(2248), - [sym_array_creation] = STATE(2247), - [sym_fixed_array_creation] = STATE(2247), - [sym_selector_expression] = STATE(2247), - [sym_index_expression] = STATE(2247), - [sym_slice_expression] = STATE(2247), - [sym_if_expression] = STATE(2248), - [sym_compile_time_if_expression] = STATE(2248), - [sym_is_expression] = STATE(2247), - [sym_in_expression] = STATE(2247), - [sym_enum_fetch] = STATE(2247), - [sym_match_expression] = STATE(2248), - [sym_select_expression] = STATE(2248), - [sym_lock_expression] = STATE(2248), - [sym_unsafe_expression] = STATE(2248), - [sym_sql_expression] = STATE(2248), - [sym_c_string_literal] = STATE(2153), - [sym_raw_string_literal] = STATE(2153), - [sym_interpreted_string_literal] = STATE(2153), - [sym_mutability_modifiers] = STATE(631), - [sym_plain_type] = STATE(4223), - [sym__plain_type_without_special] = STATE(2302), - [sym_anon_struct_type] = STATE(2303), - [sym_multi_return_type] = STATE(2302), - [sym_result_type] = STATE(2302), - [sym_option_type] = STATE(2302), - [sym_qualified_type] = STATE(3541), - [sym_fixed_array_type] = STATE(2303), - [sym_array_type] = STATE(2303), - [sym_pointer_type] = STATE(2303), - [sym_wrong_pointer_type] = STATE(2303), - [sym_map_type] = STATE(2303), - [sym_channel_type] = STATE(2303), - [sym_shared_type] = STATE(2303), - [sym_thread_type] = STATE(2303), - [sym_atomic_type] = STATE(2303), - [sym_generic_type] = STATE(2303), - [sym_function_type] = STATE(2303), - [sym_identifier] = ACTIONS(3286), + [sym__expression] = STATE(2711), + [sym__expression_without_blocks] = STATE(2347), + [sym__expression_with_blocks] = STATE(2347), + [sym_inc_expression] = STATE(2379), + [sym_dec_expression] = STATE(2379), + [sym_or_block_expression] = STATE(2379), + [sym_option_propagation_expression] = STATE(2379), + [sym_result_propagation_expression] = STATE(2379), + [sym_anon_struct_value_expression] = STATE(2378), + [sym_go_expression] = STATE(2379), + [sym_spawn_expression] = STATE(2379), + [sym_parenthesized_expression] = STATE(2379), + [sym_call_expression] = STATE(2379), + [sym_type_initializer] = STATE(2378), + [sym_function_literal] = STATE(2379), + [sym_reference_expression] = STATE(2377), + [sym_type_reference_expression] = STATE(3460), + [sym_unary_expression] = STATE(2379), + [sym_receive_expression] = STATE(2379), + [sym_binary_expression] = STATE(2379), + [sym_as_type_cast_expression] = STATE(2379), + [sym__max_group] = STATE(2379), + [sym_literal] = STATE(2392), + [sym_map_init_expression] = STATE(2378), + [sym_array_creation] = STATE(2379), + [sym_fixed_array_creation] = STATE(2379), + [sym_selector_expression] = STATE(2379), + [sym_index_expression] = STATE(2379), + [sym_slice_expression] = STATE(2379), + [sym_if_expression] = STATE(2378), + [sym_compile_time_if_expression] = STATE(2378), + [sym_is_expression] = STATE(2379), + [sym_in_expression] = STATE(2379), + [sym_enum_fetch] = STATE(2379), + [sym_match_expression] = STATE(2378), + [sym_select_expression] = STATE(2378), + [sym_lock_expression] = STATE(2378), + [sym_unsafe_expression] = STATE(2378), + [sym_sql_expression] = STATE(2378), + [sym_c_string_literal] = STATE(2401), + [sym_raw_string_literal] = STATE(2401), + [sym_interpreted_string_literal] = STATE(2401), + [sym_mutability_modifiers] = STATE(939), + [sym_plain_type] = STATE(4160), + [sym__plain_type_without_special] = STATE(2360), + [sym_anon_struct_type] = STATE(2362), + [sym_multi_return_type] = STATE(2360), + [sym_result_type] = STATE(2360), + [sym_option_type] = STATE(2360), + [sym_qualified_type] = STATE(3460), + [sym_fixed_array_type] = STATE(2362), + [sym_array_type] = STATE(2362), + [sym_pointer_type] = STATE(2362), + [sym_wrong_pointer_type] = STATE(2362), + [sym_map_type] = STATE(2362), + [sym_channel_type] = STATE(2362), + [sym_shared_type] = STATE(2362), + [sym_thread_type] = STATE(2362), + [sym_atomic_type] = STATE(2362), + [sym_generic_type] = STATE(2362), + [sym_function_type] = STATE(2362), + [sym_identifier] = ACTIONS(2477), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(3288), - [anon_sym_LBRACE] = ACTIONS(3290), - [anon_sym_LPAREN] = ACTIONS(3292), - [anon_sym_fn] = ACTIONS(3294), - [anon_sym_PLUS] = ACTIONS(3398), - [anon_sym_DASH] = ACTIONS(3398), - [anon_sym_STAR] = ACTIONS(3400), - [anon_sym_struct] = ACTIONS(3300), + [anon_sym_DOT] = ACTIONS(1430), + [anon_sym_LBRACE] = ACTIONS(1432), + [anon_sym_LPAREN] = ACTIONS(1434), + [anon_sym_fn] = ACTIONS(1436), + [anon_sym_PLUS] = ACTIONS(2271), + [anon_sym_DASH] = ACTIONS(2271), + [anon_sym_STAR] = ACTIONS(3354), + [anon_sym_struct] = ACTIONS(1442), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(3402), - [anon_sym_go] = ACTIONS(3404), - [anon_sym_spawn] = ACTIONS(3406), - [anon_sym_json_DOTdecode] = ACTIONS(3308), - [anon_sym_LBRACK2] = ACTIONS(3310), - [anon_sym_TILDE] = ACTIONS(3398), - [anon_sym_CARET] = ACTIONS(3398), - [anon_sym_AMP] = ACTIONS(3408), - [anon_sym_LT_DASH] = ACTIONS(3410), - [sym_none] = ACTIONS(3316), - [sym_true] = ACTIONS(3316), - [sym_false] = ACTIONS(3316), - [sym_nil] = ACTIONS(3316), - [anon_sym_if] = ACTIONS(3318), - [anon_sym_DOLLARif] = ACTIONS(3320), - [anon_sym_match] = ACTIONS(3322), - [anon_sym_select] = ACTIONS(3412), - [anon_sym_lock] = ACTIONS(3414), - [anon_sym_rlock] = ACTIONS(3414), - [anon_sym_unsafe] = ACTIONS(3328), - [anon_sym_sql] = ACTIONS(3330), - [sym_int_literal] = ACTIONS(3316), - [sym_float_literal] = ACTIONS(3332), - [sym_rune_literal] = ACTIONS(3332), - [sym_pseudo_compile_time_identifier] = ACTIONS(3334), + [anon_sym_BANG] = ACTIONS(3356), + [anon_sym_go] = ACTIONS(2277), + [anon_sym_spawn] = ACTIONS(2279), + [anon_sym_json_DOTdecode] = ACTIONS(1450), + [anon_sym_LBRACK2] = ACTIONS(1452), + [anon_sym_TILDE] = ACTIONS(2271), + [anon_sym_CARET] = ACTIONS(2271), + [anon_sym_AMP] = ACTIONS(3358), + [anon_sym_LT_DASH] = ACTIONS(2283), + [sym_none] = ACTIONS(1458), + [sym_true] = ACTIONS(1458), + [sym_false] = ACTIONS(1458), + [sym_nil] = ACTIONS(1458), + [anon_sym_if] = ACTIONS(1833), + [anon_sym_DOLLARif] = ACTIONS(1462), + [anon_sym_match] = ACTIONS(1464), + [anon_sym_select] = ACTIONS(1466), + [anon_sym_lock] = ACTIONS(1468), + [anon_sym_rlock] = ACTIONS(1468), + [anon_sym_unsafe] = ACTIONS(1839), + [anon_sym_sql] = ACTIONS(1472), + [sym_int_literal] = ACTIONS(1458), + [sym_float_literal] = ACTIONS(1474), + [sym_rune_literal] = ACTIONS(1474), + [sym_pseudo_compile_time_identifier] = ACTIONS(1476), [anon_sym_shared] = ACTIONS(83), [anon_sym_map_LBRACK] = ACTIONS(85), [anon_sym_chan] = ACTIONS(87), [anon_sym_thread] = ACTIONS(89), [anon_sym_atomic] = ACTIONS(91), - [sym___double_quote] = ACTIONS(3336), - [sym___single_quote] = ACTIONS(3338), - [sym___c_double_quote] = ACTIONS(3340), - [sym___c_single_quote] = ACTIONS(3342), - [sym___r_double_quote] = ACTIONS(3344), - [sym___r_single_quote] = ACTIONS(3346), + [sym___double_quote] = ACTIONS(1480), + [sym___single_quote] = ACTIONS(1482), + [sym___c_double_quote] = ACTIONS(1484), + [sym___c_single_quote] = ACTIONS(1486), + [sym___r_double_quote] = ACTIONS(1488), + [sym___r_single_quote] = ACTIONS(1490), }, [710] = { [sym_line_comment] = STATE(710), [sym_block_comment] = STATE(710), - [sym__expression] = STATE(1620), - [sym__expression_without_blocks] = STATE(1692), - [sym__expression_with_blocks] = STATE(1692), - [sym_inc_expression] = STATE(1684), - [sym_dec_expression] = STATE(1684), - [sym_or_block_expression] = STATE(1684), - [sym_option_propagation_expression] = STATE(1684), - [sym_result_propagation_expression] = STATE(1684), - [sym_anon_struct_value_expression] = STATE(1677), - [sym_go_expression] = STATE(1684), - [sym_spawn_expression] = STATE(1684), - [sym_parenthesized_expression] = STATE(1684), - [sym_call_expression] = STATE(1684), - [sym_type_initializer] = STATE(1677), - [sym_function_literal] = STATE(1684), - [sym_reference_expression] = STATE(1674), - [sym_type_reference_expression] = STATE(3541), - [sym_unary_expression] = STATE(1684), - [sym_receive_expression] = STATE(1684), - [sym_binary_expression] = STATE(1684), - [sym_as_type_cast_expression] = STATE(1684), - [sym__max_group] = STATE(1684), - [sym_literal] = STATE(1698), - [sym_map_init_expression] = STATE(1677), - [sym_array_creation] = STATE(1684), - [sym_fixed_array_creation] = STATE(1684), - [sym_selector_expression] = STATE(1684), - [sym_index_expression] = STATE(1684), - [sym_slice_expression] = STATE(1684), - [sym_if_expression] = STATE(1677), - [sym_compile_time_if_expression] = STATE(1677), - [sym_is_expression] = STATE(1684), - [sym_in_expression] = STATE(1684), - [sym_enum_fetch] = STATE(1684), - [sym_match_expression] = STATE(1677), - [sym_select_expression] = STATE(1677), - [sym_lock_expression] = STATE(1677), - [sym_unsafe_expression] = STATE(1677), - [sym_sql_expression] = STATE(1677), - [sym_c_string_literal] = STATE(1705), - [sym_raw_string_literal] = STATE(1705), - [sym_interpreted_string_literal] = STATE(1705), - [sym_mutability_modifiers] = STATE(664), - [sym_plain_type] = STATE(4157), - [sym__plain_type_without_special] = STATE(2302), - [sym_anon_struct_type] = STATE(2303), - [sym_multi_return_type] = STATE(2302), - [sym_result_type] = STATE(2302), - [sym_option_type] = STATE(2302), - [sym_qualified_type] = STATE(3541), - [sym_fixed_array_type] = STATE(2303), - [sym_array_type] = STATE(2303), - [sym_pointer_type] = STATE(2303), - [sym_wrong_pointer_type] = STATE(2303), - [sym_map_type] = STATE(2303), - [sym_channel_type] = STATE(2303), - [sym_shared_type] = STATE(2303), - [sym_thread_type] = STATE(2303), - [sym_atomic_type] = STATE(2303), - [sym_generic_type] = STATE(2303), - [sym_function_type] = STATE(2303), - [sym_identifier] = ACTIONS(3416), + [sym__expression] = STATE(1777), + [sym__expression_without_blocks] = STATE(1953), + [sym__expression_with_blocks] = STATE(1953), + [sym_inc_expression] = STATE(1955), + [sym_dec_expression] = STATE(1955), + [sym_or_block_expression] = STATE(1955), + [sym_option_propagation_expression] = STATE(1955), + [sym_result_propagation_expression] = STATE(1955), + [sym_anon_struct_value_expression] = STATE(1958), + [sym_go_expression] = STATE(1955), + [sym_spawn_expression] = STATE(1955), + [sym_parenthesized_expression] = STATE(1955), + [sym_call_expression] = STATE(1955), + [sym_type_initializer] = STATE(1958), + [sym_function_literal] = STATE(1955), + [sym_reference_expression] = STATE(1956), + [sym_type_reference_expression] = STATE(3460), + [sym_unary_expression] = STATE(1955), + [sym_receive_expression] = STATE(1955), + [sym_binary_expression] = STATE(1955), + [sym_as_type_cast_expression] = STATE(1955), + [sym__max_group] = STATE(1955), + [sym_literal] = STATE(1943), + [sym_map_init_expression] = STATE(1958), + [sym_array_creation] = STATE(1955), + [sym_fixed_array_creation] = STATE(1955), + [sym_selector_expression] = STATE(1955), + [sym_index_expression] = STATE(1955), + [sym_slice_expression] = STATE(1955), + [sym_if_expression] = STATE(1958), + [sym_compile_time_if_expression] = STATE(1958), + [sym_is_expression] = STATE(1955), + [sym_in_expression] = STATE(1955), + [sym_enum_fetch] = STATE(1955), + [sym_match_expression] = STATE(1958), + [sym_select_expression] = STATE(1958), + [sym_lock_expression] = STATE(1958), + [sym_unsafe_expression] = STATE(1958), + [sym_sql_expression] = STATE(1958), + [sym_c_string_literal] = STATE(1942), + [sym_raw_string_literal] = STATE(1942), + [sym_interpreted_string_literal] = STATE(1942), + [sym_mutability_modifiers] = STATE(601), + [sym_plain_type] = STATE(4266), + [sym__plain_type_without_special] = STATE(2360), + [sym_anon_struct_type] = STATE(2362), + [sym_multi_return_type] = STATE(2360), + [sym_result_type] = STATE(2360), + [sym_option_type] = STATE(2360), + [sym_qualified_type] = STATE(3460), + [sym_fixed_array_type] = STATE(2362), + [sym_array_type] = STATE(2362), + [sym_pointer_type] = STATE(2362), + [sym_wrong_pointer_type] = STATE(2362), + [sym_map_type] = STATE(2362), + [sym_channel_type] = STATE(2362), + [sym_shared_type] = STATE(2362), + [sym_thread_type] = STATE(2362), + [sym_atomic_type] = STATE(2362), + [sym_generic_type] = STATE(2362), + [sym_function_type] = STATE(2362), + [sym_identifier] = ACTIONS(3158), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(309), - [anon_sym_LBRACE] = ACTIONS(3418), - [anon_sym_LPAREN] = ACTIONS(315), - [anon_sym_fn] = ACTIONS(317), - [anon_sym_PLUS] = ACTIONS(319), - [anon_sym_DASH] = ACTIONS(319), - [anon_sym_STAR] = ACTIONS(321), - [anon_sym_struct] = ACTIONS(323), + [anon_sym_DOT] = ACTIONS(705), + [anon_sym_LBRACE] = ACTIONS(3118), + [anon_sym_LPAREN] = ACTIONS(709), + [anon_sym_fn] = ACTIONS(711), + [anon_sym_PLUS] = ACTIONS(3160), + [anon_sym_DASH] = ACTIONS(3160), + [anon_sym_STAR] = ACTIONS(3162), + [anon_sym_struct] = ACTIONS(717), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(325), - [anon_sym_go] = ACTIONS(327), - [anon_sym_spawn] = ACTIONS(329), - [anon_sym_json_DOTdecode] = ACTIONS(331), - [anon_sym_LBRACK2] = ACTIONS(333), - [anon_sym_TILDE] = ACTIONS(319), - [anon_sym_CARET] = ACTIONS(319), - [anon_sym_AMP] = ACTIONS(335), - [anon_sym_LT_DASH] = ACTIONS(337), - [sym_none] = ACTIONS(339), - [sym_true] = ACTIONS(339), - [sym_false] = ACTIONS(339), - [sym_nil] = ACTIONS(339), - [anon_sym_if] = ACTIONS(341), - [anon_sym_DOLLARif] = ACTIONS(343), - [anon_sym_match] = ACTIONS(345), - [anon_sym_select] = ACTIONS(347), - [anon_sym_lock] = ACTIONS(349), - [anon_sym_rlock] = ACTIONS(349), - [anon_sym_unsafe] = ACTIONS(351), - [anon_sym_sql] = ACTIONS(353), - [sym_int_literal] = ACTIONS(339), - [sym_float_literal] = ACTIONS(355), - [sym_rune_literal] = ACTIONS(355), - [sym_pseudo_compile_time_identifier] = ACTIONS(357), + [anon_sym_BANG] = ACTIONS(3164), + [anon_sym_go] = ACTIONS(3166), + [anon_sym_spawn] = ACTIONS(3168), + [anon_sym_json_DOTdecode] = ACTIONS(727), + [anon_sym_LBRACK2] = ACTIONS(3170), + [anon_sym_TILDE] = ACTIONS(3160), + [anon_sym_CARET] = ACTIONS(3160), + [anon_sym_AMP] = ACTIONS(3172), + [anon_sym_LT_DASH] = ACTIONS(3174), + [sym_none] = ACTIONS(735), + [sym_true] = ACTIONS(735), + [sym_false] = ACTIONS(735), + [sym_nil] = ACTIONS(735), + [anon_sym_if] = ACTIONS(737), + [anon_sym_DOLLARif] = ACTIONS(739), + [anon_sym_match] = ACTIONS(741), + [anon_sym_select] = ACTIONS(3176), + [anon_sym_lock] = ACTIONS(3178), + [anon_sym_rlock] = ACTIONS(3178), + [anon_sym_unsafe] = ACTIONS(747), + [anon_sym_sql] = ACTIONS(749), + [sym_int_literal] = ACTIONS(735), + [sym_float_literal] = ACTIONS(751), + [sym_rune_literal] = ACTIONS(751), + [sym_pseudo_compile_time_identifier] = ACTIONS(753), [anon_sym_shared] = ACTIONS(83), [anon_sym_map_LBRACK] = ACTIONS(85), [anon_sym_chan] = ACTIONS(87), [anon_sym_thread] = ACTIONS(89), [anon_sym_atomic] = ACTIONS(91), - [sym___double_quote] = ACTIONS(379), - [sym___single_quote] = ACTIONS(381), - [sym___c_double_quote] = ACTIONS(383), - [sym___c_single_quote] = ACTIONS(385), - [sym___r_double_quote] = ACTIONS(387), - [sym___r_single_quote] = ACTIONS(389), + [sym___double_quote] = ACTIONS(755), + [sym___single_quote] = ACTIONS(757), + [sym___c_double_quote] = ACTIONS(759), + [sym___c_single_quote] = ACTIONS(761), + [sym___r_double_quote] = ACTIONS(763), + [sym___r_single_quote] = ACTIONS(765), }, [711] = { [sym_line_comment] = STATE(711), [sym_block_comment] = STATE(711), - [sym__expression] = STATE(2119), - [sym__expression_without_blocks] = STATE(2226), - [sym__expression_with_blocks] = STATE(2226), - [sym_inc_expression] = STATE(2247), - [sym_dec_expression] = STATE(2247), - [sym_or_block_expression] = STATE(2247), - [sym_option_propagation_expression] = STATE(2247), - [sym_result_propagation_expression] = STATE(2247), - [sym_anon_struct_value_expression] = STATE(2248), - [sym_go_expression] = STATE(2247), - [sym_spawn_expression] = STATE(2247), - [sym_parenthesized_expression] = STATE(2247), - [sym_call_expression] = STATE(2247), - [sym_type_initializer] = STATE(2248), - [sym_function_literal] = STATE(2247), - [sym_reference_expression] = STATE(2252), - [sym_type_reference_expression] = STATE(3541), - [sym_unary_expression] = STATE(2247), - [sym_receive_expression] = STATE(2247), - [sym_binary_expression] = STATE(2247), - [sym_as_type_cast_expression] = STATE(2247), - [sym__max_group] = STATE(2247), - [sym_literal] = STATE(2155), - [sym_map_init_expression] = STATE(2248), - [sym_array_creation] = STATE(2247), - [sym_fixed_array_creation] = STATE(2247), - [sym_selector_expression] = STATE(2247), - [sym_index_expression] = STATE(2247), - [sym_slice_expression] = STATE(2247), - [sym_if_expression] = STATE(2248), - [sym_compile_time_if_expression] = STATE(2248), - [sym_is_expression] = STATE(2247), - [sym_in_expression] = STATE(2247), - [sym_enum_fetch] = STATE(2247), - [sym_match_expression] = STATE(2248), - [sym_select_expression] = STATE(2248), - [sym_lock_expression] = STATE(2248), - [sym_unsafe_expression] = STATE(2248), - [sym_sql_expression] = STATE(2248), - [sym_c_string_literal] = STATE(2153), - [sym_raw_string_literal] = STATE(2153), - [sym_interpreted_string_literal] = STATE(2153), - [sym_mutability_modifiers] = STATE(631), - [sym_plain_type] = STATE(4230), - [sym__plain_type_without_special] = STATE(2302), - [sym_anon_struct_type] = STATE(2303), - [sym_multi_return_type] = STATE(2302), - [sym_result_type] = STATE(2302), - [sym_option_type] = STATE(2302), - [sym_qualified_type] = STATE(3541), - [sym_fixed_array_type] = STATE(2303), - [sym_array_type] = STATE(2303), - [sym_pointer_type] = STATE(2303), - [sym_wrong_pointer_type] = STATE(2303), - [sym_map_type] = STATE(2303), - [sym_channel_type] = STATE(2303), - [sym_shared_type] = STATE(2303), - [sym_thread_type] = STATE(2303), - [sym_atomic_type] = STATE(2303), - [sym_generic_type] = STATE(2303), - [sym_function_type] = STATE(2303), - [sym_identifier] = ACTIONS(3286), + [sym__expression] = STATE(1763), + [sym__expression_without_blocks] = STATE(1915), + [sym__expression_with_blocks] = STATE(1915), + [sym_inc_expression] = STATE(2035), + [sym_dec_expression] = STATE(2035), + [sym_or_block_expression] = STATE(2035), + [sym_option_propagation_expression] = STATE(2035), + [sym_result_propagation_expression] = STATE(2035), + [sym_anon_struct_value_expression] = STATE(1939), + [sym_go_expression] = STATE(2035), + [sym_spawn_expression] = STATE(2035), + [sym_parenthesized_expression] = STATE(2035), + [sym_call_expression] = STATE(2035), + [sym_type_initializer] = STATE(1939), + [sym_function_literal] = STATE(2035), + [sym_reference_expression] = STATE(1944), + [sym_type_reference_expression] = STATE(3460), + [sym_unary_expression] = STATE(2035), + [sym_receive_expression] = STATE(2035), + [sym_binary_expression] = STATE(2035), + [sym_as_type_cast_expression] = STATE(2035), + [sym__max_group] = STATE(2035), + [sym_literal] = STATE(2030), + [sym_map_init_expression] = STATE(1939), + [sym_array_creation] = STATE(2035), + [sym_fixed_array_creation] = STATE(2035), + [sym_selector_expression] = STATE(2035), + [sym_index_expression] = STATE(2035), + [sym_slice_expression] = STATE(2035), + [sym_if_expression] = STATE(1939), + [sym_compile_time_if_expression] = STATE(1939), + [sym_is_expression] = STATE(2035), + [sym_in_expression] = STATE(2035), + [sym_enum_fetch] = STATE(2035), + [sym_match_expression] = STATE(1939), + [sym_select_expression] = STATE(1939), + [sym_lock_expression] = STATE(1939), + [sym_unsafe_expression] = STATE(1939), + [sym_sql_expression] = STATE(1939), + [sym_c_string_literal] = STATE(2029), + [sym_raw_string_literal] = STATE(2029), + [sym_interpreted_string_literal] = STATE(2029), + [sym_mutability_modifiers] = STATE(555), + [sym_plain_type] = STATE(4014), + [sym__plain_type_without_special] = STATE(2360), + [sym_anon_struct_type] = STATE(2362), + [sym_multi_return_type] = STATE(2360), + [sym_result_type] = STATE(2360), + [sym_option_type] = STATE(2360), + [sym_qualified_type] = STATE(3460), + [sym_fixed_array_type] = STATE(2362), + [sym_array_type] = STATE(2362), + [sym_pointer_type] = STATE(2362), + [sym_wrong_pointer_type] = STATE(2362), + [sym_map_type] = STATE(2362), + [sym_channel_type] = STATE(2362), + [sym_shared_type] = STATE(2362), + [sym_thread_type] = STATE(2362), + [sym_atomic_type] = STATE(2362), + [sym_generic_type] = STATE(2362), + [sym_function_type] = STATE(2362), + [sym_identifier] = ACTIONS(3272), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(3288), - [anon_sym_LBRACE] = ACTIONS(3290), - [anon_sym_LPAREN] = ACTIONS(3292), - [anon_sym_fn] = ACTIONS(3294), - [anon_sym_PLUS] = ACTIONS(3398), - [anon_sym_DASH] = ACTIONS(3398), - [anon_sym_STAR] = ACTIONS(3400), - [anon_sym_struct] = ACTIONS(3300), + [anon_sym_DOT] = ACTIONS(769), + [anon_sym_LBRACE] = ACTIONS(3274), + [anon_sym_LPAREN] = ACTIONS(775), + [anon_sym_fn] = ACTIONS(777), + [anon_sym_PLUS] = ACTIONS(779), + [anon_sym_DASH] = ACTIONS(779), + [anon_sym_STAR] = ACTIONS(781), + [anon_sym_struct] = ACTIONS(3276), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(3402), - [anon_sym_go] = ACTIONS(3404), - [anon_sym_spawn] = ACTIONS(3406), - [anon_sym_json_DOTdecode] = ACTIONS(3308), - [anon_sym_LBRACK2] = ACTIONS(3310), - [anon_sym_TILDE] = ACTIONS(3398), - [anon_sym_CARET] = ACTIONS(3398), - [anon_sym_AMP] = ACTIONS(3408), - [anon_sym_LT_DASH] = ACTIONS(3410), - [sym_none] = ACTIONS(3316), - [sym_true] = ACTIONS(3316), - [sym_false] = ACTIONS(3316), - [sym_nil] = ACTIONS(3316), - [anon_sym_if] = ACTIONS(3318), - [anon_sym_DOLLARif] = ACTIONS(3320), - [anon_sym_match] = ACTIONS(3322), - [anon_sym_select] = ACTIONS(3412), - [anon_sym_lock] = ACTIONS(3414), - [anon_sym_rlock] = ACTIONS(3414), - [anon_sym_unsafe] = ACTIONS(3328), - [anon_sym_sql] = ACTIONS(3330), - [sym_int_literal] = ACTIONS(3316), - [sym_float_literal] = ACTIONS(3332), - [sym_rune_literal] = ACTIONS(3332), - [sym_pseudo_compile_time_identifier] = ACTIONS(3334), + [anon_sym_BANG] = ACTIONS(785), + [anon_sym_go] = ACTIONS(787), + [anon_sym_spawn] = ACTIONS(789), + [anon_sym_json_DOTdecode] = ACTIONS(791), + [anon_sym_LBRACK2] = ACTIONS(793), + [anon_sym_TILDE] = ACTIONS(779), + [anon_sym_CARET] = ACTIONS(779), + [anon_sym_AMP] = ACTIONS(795), + [anon_sym_LT_DASH] = ACTIONS(797), + [sym_none] = ACTIONS(799), + [sym_true] = ACTIONS(799), + [sym_false] = ACTIONS(799), + [sym_nil] = ACTIONS(799), + [anon_sym_if] = ACTIONS(3278), + [anon_sym_DOLLARif] = ACTIONS(3280), + [anon_sym_match] = ACTIONS(3282), + [anon_sym_select] = ACTIONS(3284), + [anon_sym_lock] = ACTIONS(3286), + [anon_sym_rlock] = ACTIONS(3286), + [anon_sym_unsafe] = ACTIONS(3288), + [anon_sym_sql] = ACTIONS(3290), + [sym_int_literal] = ACTIONS(799), + [sym_float_literal] = ACTIONS(817), + [sym_rune_literal] = ACTIONS(817), + [sym_pseudo_compile_time_identifier] = ACTIONS(819), [anon_sym_shared] = ACTIONS(83), [anon_sym_map_LBRACK] = ACTIONS(85), [anon_sym_chan] = ACTIONS(87), [anon_sym_thread] = ACTIONS(89), [anon_sym_atomic] = ACTIONS(91), - [sym___double_quote] = ACTIONS(3336), - [sym___single_quote] = ACTIONS(3338), - [sym___c_double_quote] = ACTIONS(3340), - [sym___c_single_quote] = ACTIONS(3342), - [sym___r_double_quote] = ACTIONS(3344), - [sym___r_single_quote] = ACTIONS(3346), + [sym___double_quote] = ACTIONS(821), + [sym___single_quote] = ACTIONS(823), + [sym___c_double_quote] = ACTIONS(825), + [sym___c_single_quote] = ACTIONS(827), + [sym___r_double_quote] = ACTIONS(829), + [sym___r_single_quote] = ACTIONS(831), }, [712] = { [sym_line_comment] = STATE(712), [sym_block_comment] = STATE(712), - [sym__expression] = STATE(2782), - [sym__expression_without_blocks] = STATE(2300), - [sym__expression_with_blocks] = STATE(2300), - [sym_inc_expression] = STATE(2307), - [sym_dec_expression] = STATE(2307), - [sym_or_block_expression] = STATE(2307), - [sym_option_propagation_expression] = STATE(2307), - [sym_result_propagation_expression] = STATE(2307), - [sym_anon_struct_value_expression] = STATE(2380), - [sym_go_expression] = STATE(2307), - [sym_spawn_expression] = STATE(2307), - [sym_parenthesized_expression] = STATE(2307), - [sym_call_expression] = STATE(2307), - [sym_type_initializer] = STATE(2380), - [sym_function_literal] = STATE(2307), - [sym_reference_expression] = STATE(2311), - [sym_type_reference_expression] = STATE(3541), - [sym_unary_expression] = STATE(2307), - [sym_receive_expression] = STATE(2307), - [sym_binary_expression] = STATE(2307), - [sym_as_type_cast_expression] = STATE(2307), - [sym__max_group] = STATE(2307), - [sym_literal] = STATE(2292), - [sym_map_init_expression] = STATE(2380), - [sym_array_creation] = STATE(2307), - [sym_fixed_array_creation] = STATE(2307), - [sym_selector_expression] = STATE(2307), - [sym_index_expression] = STATE(2307), - [sym_slice_expression] = STATE(2307), - [sym_if_expression] = STATE(2380), - [sym_compile_time_if_expression] = STATE(2380), - [sym_is_expression] = STATE(2307), - [sym_in_expression] = STATE(2307), - [sym_enum_fetch] = STATE(2307), - [sym_match_expression] = STATE(2380), - [sym_select_expression] = STATE(2380), - [sym_lock_expression] = STATE(2380), - [sym_unsafe_expression] = STATE(2380), - [sym_sql_expression] = STATE(2380), - [sym_c_string_literal] = STATE(2308), - [sym_raw_string_literal] = STATE(2308), - [sym_interpreted_string_literal] = STATE(2308), - [sym_mutability_modifiers] = STATE(939), - [sym_plain_type] = STATE(3552), - [sym__plain_type_without_special] = STATE(2302), - [sym_anon_struct_type] = STATE(2303), - [sym_multi_return_type] = STATE(2302), - [sym_result_type] = STATE(2302), - [sym_option_type] = STATE(2302), - [sym_qualified_type] = STATE(3541), - [sym_fixed_array_type] = STATE(2303), - [sym_array_type] = STATE(2303), - [sym_pointer_type] = STATE(2303), - [sym_wrong_pointer_type] = STATE(2303), - [sym_map_type] = STATE(2303), - [sym_channel_type] = STATE(2303), - [sym_shared_type] = STATE(2303), - [sym_thread_type] = STATE(2303), - [sym_atomic_type] = STATE(2303), - [sym_generic_type] = STATE(2303), - [sym_function_type] = STATE(2303), - [sym_identifier] = ACTIONS(1426), + [sym__expression] = STATE(1764), + [sym__expression_without_blocks] = STATE(1953), + [sym__expression_with_blocks] = STATE(1953), + [sym_inc_expression] = STATE(1955), + [sym_dec_expression] = STATE(1955), + [sym_or_block_expression] = STATE(1955), + [sym_option_propagation_expression] = STATE(1955), + [sym_result_propagation_expression] = STATE(1955), + [sym_anon_struct_value_expression] = STATE(1958), + [sym_go_expression] = STATE(1955), + [sym_spawn_expression] = STATE(1955), + [sym_parenthesized_expression] = STATE(1955), + [sym_call_expression] = STATE(1955), + [sym_type_initializer] = STATE(1958), + [sym_function_literal] = STATE(1955), + [sym_reference_expression] = STATE(1956), + [sym_type_reference_expression] = STATE(3460), + [sym_unary_expression] = STATE(1955), + [sym_receive_expression] = STATE(1955), + [sym_binary_expression] = STATE(1955), + [sym_as_type_cast_expression] = STATE(1955), + [sym__max_group] = STATE(1955), + [sym_literal] = STATE(1943), + [sym_map_init_expression] = STATE(1958), + [sym_array_creation] = STATE(1955), + [sym_fixed_array_creation] = STATE(1955), + [sym_selector_expression] = STATE(1955), + [sym_index_expression] = STATE(1955), + [sym_slice_expression] = STATE(1955), + [sym_if_expression] = STATE(1958), + [sym_compile_time_if_expression] = STATE(1958), + [sym_is_expression] = STATE(1955), + [sym_in_expression] = STATE(1955), + [sym_enum_fetch] = STATE(1955), + [sym_match_expression] = STATE(1958), + [sym_select_expression] = STATE(1958), + [sym_lock_expression] = STATE(1958), + [sym_unsafe_expression] = STATE(1958), + [sym_sql_expression] = STATE(1958), + [sym_c_string_literal] = STATE(1942), + [sym_raw_string_literal] = STATE(1942), + [sym_interpreted_string_literal] = STATE(1942), + [sym_mutability_modifiers] = STATE(601), + [sym_plain_type] = STATE(4106), + [sym__plain_type_without_special] = STATE(2360), + [sym_anon_struct_type] = STATE(2362), + [sym_multi_return_type] = STATE(2360), + [sym_result_type] = STATE(2360), + [sym_option_type] = STATE(2360), + [sym_qualified_type] = STATE(3460), + [sym_fixed_array_type] = STATE(2362), + [sym_array_type] = STATE(2362), + [sym_pointer_type] = STATE(2362), + [sym_wrong_pointer_type] = STATE(2362), + [sym_map_type] = STATE(2362), + [sym_channel_type] = STATE(2362), + [sym_shared_type] = STATE(2362), + [sym_thread_type] = STATE(2362), + [sym_atomic_type] = STATE(2362), + [sym_generic_type] = STATE(2362), + [sym_function_type] = STATE(2362), + [sym_identifier] = ACTIONS(3158), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1428), - [anon_sym_LBRACE] = ACTIONS(1430), - [anon_sym_LPAREN] = ACTIONS(1432), - [anon_sym_fn] = ACTIONS(1434), - [anon_sym_PLUS] = ACTIONS(2491), - [anon_sym_DASH] = ACTIONS(2491), - [anon_sym_STAR] = ACTIONS(2493), - [anon_sym_struct] = ACTIONS(1440), + [anon_sym_DOT] = ACTIONS(705), + [anon_sym_LBRACE] = ACTIONS(3118), + [anon_sym_LPAREN] = ACTIONS(709), + [anon_sym_fn] = ACTIONS(711), + [anon_sym_PLUS] = ACTIONS(3160), + [anon_sym_DASH] = ACTIONS(3160), + [anon_sym_STAR] = ACTIONS(3162), + [anon_sym_struct] = ACTIONS(717), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(2495), - [anon_sym_go] = ACTIONS(2497), - [anon_sym_spawn] = ACTIONS(2499), - [anon_sym_json_DOTdecode] = ACTIONS(1448), - [anon_sym_LBRACK2] = ACTIONS(1450), - [anon_sym_TILDE] = ACTIONS(2491), - [anon_sym_CARET] = ACTIONS(2491), - [anon_sym_AMP] = ACTIONS(2501), - [anon_sym_LT_DASH] = ACTIONS(2503), - [sym_none] = ACTIONS(1456), - [sym_true] = ACTIONS(1456), - [sym_false] = ACTIONS(1456), - [sym_nil] = ACTIONS(1456), - [anon_sym_if] = ACTIONS(1827), - [anon_sym_DOLLARif] = ACTIONS(1460), - [anon_sym_match] = ACTIONS(1462), - [anon_sym_select] = ACTIONS(1464), - [anon_sym_lock] = ACTIONS(1466), - [anon_sym_rlock] = ACTIONS(1466), - [anon_sym_unsafe] = ACTIONS(1833), - [anon_sym_sql] = ACTIONS(1470), - [sym_int_literal] = ACTIONS(1456), - [sym_float_literal] = ACTIONS(1472), - [sym_rune_literal] = ACTIONS(1472), - [sym_pseudo_compile_time_identifier] = ACTIONS(1474), + [anon_sym_BANG] = ACTIONS(3164), + [anon_sym_go] = ACTIONS(3166), + [anon_sym_spawn] = ACTIONS(3168), + [anon_sym_json_DOTdecode] = ACTIONS(727), + [anon_sym_LBRACK2] = ACTIONS(3170), + [anon_sym_TILDE] = ACTIONS(3160), + [anon_sym_CARET] = ACTIONS(3160), + [anon_sym_AMP] = ACTIONS(3172), + [anon_sym_LT_DASH] = ACTIONS(3174), + [sym_none] = ACTIONS(735), + [sym_true] = ACTIONS(735), + [sym_false] = ACTIONS(735), + [sym_nil] = ACTIONS(735), + [anon_sym_if] = ACTIONS(737), + [anon_sym_DOLLARif] = ACTIONS(739), + [anon_sym_match] = ACTIONS(741), + [anon_sym_select] = ACTIONS(3176), + [anon_sym_lock] = ACTIONS(3178), + [anon_sym_rlock] = ACTIONS(3178), + [anon_sym_unsafe] = ACTIONS(747), + [anon_sym_sql] = ACTIONS(749), + [sym_int_literal] = ACTIONS(735), + [sym_float_literal] = ACTIONS(751), + [sym_rune_literal] = ACTIONS(751), + [sym_pseudo_compile_time_identifier] = ACTIONS(753), [anon_sym_shared] = ACTIONS(83), [anon_sym_map_LBRACK] = ACTIONS(85), [anon_sym_chan] = ACTIONS(87), [anon_sym_thread] = ACTIONS(89), [anon_sym_atomic] = ACTIONS(91), - [sym___double_quote] = ACTIONS(1478), - [sym___single_quote] = ACTIONS(1480), - [sym___c_double_quote] = ACTIONS(1482), - [sym___c_single_quote] = ACTIONS(1484), - [sym___r_double_quote] = ACTIONS(1486), - [sym___r_single_quote] = ACTIONS(1488), + [sym___double_quote] = ACTIONS(755), + [sym___single_quote] = ACTIONS(757), + [sym___c_double_quote] = ACTIONS(759), + [sym___c_single_quote] = ACTIONS(761), + [sym___r_double_quote] = ACTIONS(763), + [sym___r_single_quote] = ACTIONS(765), }, [713] = { [sym_line_comment] = STATE(713), [sym_block_comment] = STATE(713), - [sym__expression] = STATE(2589), - [sym__expression_without_blocks] = STATE(2300), - [sym__expression_with_blocks] = STATE(2300), - [sym_inc_expression] = STATE(2307), - [sym_dec_expression] = STATE(2307), - [sym_or_block_expression] = STATE(2307), - [sym_option_propagation_expression] = STATE(2307), - [sym_result_propagation_expression] = STATE(2307), - [sym_anon_struct_value_expression] = STATE(2380), - [sym_go_expression] = STATE(2307), - [sym_spawn_expression] = STATE(2307), - [sym_parenthesized_expression] = STATE(2307), - [sym_call_expression] = STATE(2307), - [sym_type_initializer] = STATE(2380), - [sym_function_literal] = STATE(2307), - [sym_reference_expression] = STATE(2311), - [sym_type_reference_expression] = STATE(3541), - [sym_unary_expression] = STATE(2307), - [sym_receive_expression] = STATE(2307), - [sym_binary_expression] = STATE(2307), - [sym_as_type_cast_expression] = STATE(2307), - [sym__max_group] = STATE(2307), - [sym_literal] = STATE(2292), - [sym_map_init_expression] = STATE(2380), - [sym_array_creation] = STATE(2307), - [sym_fixed_array_creation] = STATE(2307), - [sym_selector_expression] = STATE(2307), - [sym_index_expression] = STATE(2307), - [sym_slice_expression] = STATE(2307), - [sym_if_expression] = STATE(2380), - [sym_compile_time_if_expression] = STATE(2380), - [sym_is_expression] = STATE(2307), - [sym_in_expression] = STATE(2307), - [sym_enum_fetch] = STATE(2307), - [sym_match_expression] = STATE(2380), - [sym_select_expression] = STATE(2380), - [sym_lock_expression] = STATE(2380), - [sym_unsafe_expression] = STATE(2380), - [sym_sql_expression] = STATE(2380), - [sym_c_string_literal] = STATE(2308), - [sym_raw_string_literal] = STATE(2308), - [sym_interpreted_string_literal] = STATE(2308), + [sym__expression] = STATE(2718), + [sym__expression_without_blocks] = STATE(2347), + [sym__expression_with_blocks] = STATE(2347), + [sym_inc_expression] = STATE(2379), + [sym_dec_expression] = STATE(2379), + [sym_or_block_expression] = STATE(2379), + [sym_option_propagation_expression] = STATE(2379), + [sym_result_propagation_expression] = STATE(2379), + [sym_anon_struct_value_expression] = STATE(2378), + [sym_go_expression] = STATE(2379), + [sym_spawn_expression] = STATE(2379), + [sym_parenthesized_expression] = STATE(2379), + [sym_call_expression] = STATE(2379), + [sym_type_initializer] = STATE(2378), + [sym_function_literal] = STATE(2379), + [sym_reference_expression] = STATE(2377), + [sym_type_reference_expression] = STATE(3460), + [sym_unary_expression] = STATE(2379), + [sym_receive_expression] = STATE(2379), + [sym_binary_expression] = STATE(2379), + [sym_as_type_cast_expression] = STATE(2379), + [sym__max_group] = STATE(2379), + [sym_literal] = STATE(2392), + [sym_map_init_expression] = STATE(2378), + [sym_array_creation] = STATE(2379), + [sym_fixed_array_creation] = STATE(2379), + [sym_selector_expression] = STATE(2379), + [sym_index_expression] = STATE(2379), + [sym_slice_expression] = STATE(2379), + [sym_if_expression] = STATE(2378), + [sym_compile_time_if_expression] = STATE(2378), + [sym_is_expression] = STATE(2379), + [sym_in_expression] = STATE(2379), + [sym_enum_fetch] = STATE(2379), + [sym_match_expression] = STATE(2378), + [sym_select_expression] = STATE(2378), + [sym_lock_expression] = STATE(2378), + [sym_unsafe_expression] = STATE(2378), + [sym_sql_expression] = STATE(2378), + [sym_c_string_literal] = STATE(2401), + [sym_raw_string_literal] = STATE(2401), + [sym_interpreted_string_literal] = STATE(2401), [sym_mutability_modifiers] = STATE(939), - [sym_plain_type] = STATE(4297), - [sym__plain_type_without_special] = STATE(2302), - [sym_anon_struct_type] = STATE(2303), - [sym_multi_return_type] = STATE(2302), - [sym_result_type] = STATE(2302), - [sym_option_type] = STATE(2302), - [sym_qualified_type] = STATE(3541), - [sym_fixed_array_type] = STATE(2303), - [sym_array_type] = STATE(2303), - [sym_pointer_type] = STATE(2303), - [sym_wrong_pointer_type] = STATE(2303), - [sym_map_type] = STATE(2303), - [sym_channel_type] = STATE(2303), - [sym_shared_type] = STATE(2303), - [sym_thread_type] = STATE(2303), - [sym_atomic_type] = STATE(2303), - [sym_generic_type] = STATE(2303), - [sym_function_type] = STATE(2303), - [sym_identifier] = ACTIONS(1807), + [sym_plain_type] = STATE(4160), + [sym__plain_type_without_special] = STATE(2360), + [sym_anon_struct_type] = STATE(2362), + [sym_multi_return_type] = STATE(2360), + [sym_result_type] = STATE(2360), + [sym_option_type] = STATE(2360), + [sym_qualified_type] = STATE(3460), + [sym_fixed_array_type] = STATE(2362), + [sym_array_type] = STATE(2362), + [sym_pointer_type] = STATE(2362), + [sym_wrong_pointer_type] = STATE(2362), + [sym_map_type] = STATE(2362), + [sym_channel_type] = STATE(2362), + [sym_shared_type] = STATE(2362), + [sym_thread_type] = STATE(2362), + [sym_atomic_type] = STATE(2362), + [sym_generic_type] = STATE(2362), + [sym_function_type] = STATE(2362), + [sym_identifier] = ACTIONS(2477), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1428), - [anon_sym_LBRACE] = ACTIONS(1430), - [anon_sym_LPAREN] = ACTIONS(1432), - [anon_sym_fn] = ACTIONS(1434), - [anon_sym_PLUS] = ACTIONS(3064), - [anon_sym_DASH] = ACTIONS(3064), - [anon_sym_STAR] = ACTIONS(3066), - [anon_sym_struct] = ACTIONS(1440), + [anon_sym_DOT] = ACTIONS(1430), + [anon_sym_LBRACE] = ACTIONS(1432), + [anon_sym_LPAREN] = ACTIONS(1434), + [anon_sym_fn] = ACTIONS(1436), + [anon_sym_PLUS] = ACTIONS(2271), + [anon_sym_DASH] = ACTIONS(2271), + [anon_sym_STAR] = ACTIONS(3354), + [anon_sym_struct] = ACTIONS(1442), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(3068), - [anon_sym_go] = ACTIONS(3070), - [anon_sym_spawn] = ACTIONS(3072), - [anon_sym_json_DOTdecode] = ACTIONS(1448), - [anon_sym_LBRACK2] = ACTIONS(1821), - [anon_sym_TILDE] = ACTIONS(3064), - [anon_sym_CARET] = ACTIONS(3064), - [anon_sym_AMP] = ACTIONS(3074), - [anon_sym_LT_DASH] = ACTIONS(3076), - [sym_none] = ACTIONS(1456), - [sym_true] = ACTIONS(1456), - [sym_false] = ACTIONS(1456), - [sym_nil] = ACTIONS(1456), - [anon_sym_if] = ACTIONS(1827), - [anon_sym_DOLLARif] = ACTIONS(1460), - [anon_sym_match] = ACTIONS(1462), - [anon_sym_select] = ACTIONS(3078), - [anon_sym_lock] = ACTIONS(3080), - [anon_sym_rlock] = ACTIONS(3080), - [anon_sym_unsafe] = ACTIONS(1833), - [anon_sym_sql] = ACTIONS(1470), - [sym_int_literal] = ACTIONS(1456), - [sym_float_literal] = ACTIONS(1472), - [sym_rune_literal] = ACTIONS(1472), - [sym_pseudo_compile_time_identifier] = ACTIONS(1474), + [anon_sym_BANG] = ACTIONS(3356), + [anon_sym_go] = ACTIONS(2277), + [anon_sym_spawn] = ACTIONS(2279), + [anon_sym_json_DOTdecode] = ACTIONS(1450), + [anon_sym_LBRACK2] = ACTIONS(1452), + [anon_sym_TILDE] = ACTIONS(2271), + [anon_sym_CARET] = ACTIONS(2271), + [anon_sym_AMP] = ACTIONS(3358), + [anon_sym_LT_DASH] = ACTIONS(2283), + [sym_none] = ACTIONS(1458), + [sym_true] = ACTIONS(1458), + [sym_false] = ACTIONS(1458), + [sym_nil] = ACTIONS(1458), + [anon_sym_if] = ACTIONS(1833), + [anon_sym_DOLLARif] = ACTIONS(1462), + [anon_sym_match] = ACTIONS(1464), + [anon_sym_select] = ACTIONS(1466), + [anon_sym_lock] = ACTIONS(1468), + [anon_sym_rlock] = ACTIONS(1468), + [anon_sym_unsafe] = ACTIONS(1839), + [anon_sym_sql] = ACTIONS(1472), + [sym_int_literal] = ACTIONS(1458), + [sym_float_literal] = ACTIONS(1474), + [sym_rune_literal] = ACTIONS(1474), + [sym_pseudo_compile_time_identifier] = ACTIONS(1476), [anon_sym_shared] = ACTIONS(83), [anon_sym_map_LBRACK] = ACTIONS(85), [anon_sym_chan] = ACTIONS(87), [anon_sym_thread] = ACTIONS(89), [anon_sym_atomic] = ACTIONS(91), - [sym___double_quote] = ACTIONS(1478), - [sym___single_quote] = ACTIONS(1480), - [sym___c_double_quote] = ACTIONS(1482), - [sym___c_single_quote] = ACTIONS(1484), - [sym___r_double_quote] = ACTIONS(1486), - [sym___r_single_quote] = ACTIONS(1488), + [sym___double_quote] = ACTIONS(1480), + [sym___single_quote] = ACTIONS(1482), + [sym___c_double_quote] = ACTIONS(1484), + [sym___c_single_quote] = ACTIONS(1486), + [sym___r_double_quote] = ACTIONS(1488), + [sym___r_single_quote] = ACTIONS(1490), }, [714] = { [sym_line_comment] = STATE(714), [sym_block_comment] = STATE(714), - [sym__expression] = STATE(1620), - [sym__expression_without_blocks] = STATE(1692), - [sym__expression_with_blocks] = STATE(1692), - [sym_inc_expression] = STATE(1684), - [sym_dec_expression] = STATE(1684), - [sym_or_block_expression] = STATE(1684), - [sym_option_propagation_expression] = STATE(1684), - [sym_result_propagation_expression] = STATE(1684), - [sym_anon_struct_value_expression] = STATE(1677), - [sym_go_expression] = STATE(1684), - [sym_spawn_expression] = STATE(1684), - [sym_parenthesized_expression] = STATE(1684), - [sym_call_expression] = STATE(1684), - [sym_type_initializer] = STATE(1677), - [sym_function_literal] = STATE(1684), - [sym_reference_expression] = STATE(1674), - [sym_type_reference_expression] = STATE(3541), - [sym_unary_expression] = STATE(1684), - [sym_receive_expression] = STATE(1684), - [sym_binary_expression] = STATE(1684), - [sym_as_type_cast_expression] = STATE(1684), - [sym__max_group] = STATE(1684), - [sym_literal] = STATE(1698), - [sym_map_init_expression] = STATE(1677), - [sym_array_creation] = STATE(1684), - [sym_fixed_array_creation] = STATE(1684), - [sym_selector_expression] = STATE(1684), - [sym_index_expression] = STATE(1684), - [sym_slice_expression] = STATE(1684), - [sym_if_expression] = STATE(1677), - [sym_compile_time_if_expression] = STATE(1677), - [sym_is_expression] = STATE(1684), - [sym_in_expression] = STATE(1684), - [sym_enum_fetch] = STATE(1684), - [sym_match_expression] = STATE(1677), - [sym_select_expression] = STATE(1677), - [sym_lock_expression] = STATE(1677), - [sym_unsafe_expression] = STATE(1677), - [sym_sql_expression] = STATE(1677), - [sym_c_string_literal] = STATE(1705), - [sym_raw_string_literal] = STATE(1705), - [sym_interpreted_string_literal] = STATE(1705), - [sym_mutability_modifiers] = STATE(664), - [sym_plain_type] = STATE(4165), - [sym__plain_type_without_special] = STATE(2302), - [sym_anon_struct_type] = STATE(2303), - [sym_multi_return_type] = STATE(2302), - [sym_result_type] = STATE(2302), - [sym_option_type] = STATE(2302), - [sym_qualified_type] = STATE(3541), - [sym_fixed_array_type] = STATE(2303), - [sym_array_type] = STATE(2303), - [sym_pointer_type] = STATE(2303), - [sym_wrong_pointer_type] = STATE(2303), - [sym_map_type] = STATE(2303), - [sym_channel_type] = STATE(2303), - [sym_shared_type] = STATE(2303), - [sym_thread_type] = STATE(2303), - [sym_atomic_type] = STATE(2303), - [sym_generic_type] = STATE(2303), - [sym_function_type] = STATE(2303), - [sym_identifier] = ACTIONS(3416), + [sym__expression] = STATE(1875), + [sym__expression_without_blocks] = STATE(1953), + [sym__expression_with_blocks] = STATE(1953), + [sym_inc_expression] = STATE(1955), + [sym_dec_expression] = STATE(1955), + [sym_or_block_expression] = STATE(1955), + [sym_option_propagation_expression] = STATE(1955), + [sym_result_propagation_expression] = STATE(1955), + [sym_anon_struct_value_expression] = STATE(1958), + [sym_go_expression] = STATE(1955), + [sym_spawn_expression] = STATE(1955), + [sym_parenthesized_expression] = STATE(1955), + [sym_call_expression] = STATE(1955), + [sym_type_initializer] = STATE(1958), + [sym_function_literal] = STATE(1955), + [sym_reference_expression] = STATE(1956), + [sym_type_reference_expression] = STATE(3460), + [sym_unary_expression] = STATE(1955), + [sym_receive_expression] = STATE(1955), + [sym_binary_expression] = STATE(1955), + [sym_as_type_cast_expression] = STATE(1955), + [sym__max_group] = STATE(1955), + [sym_literal] = STATE(1943), + [sym_map_init_expression] = STATE(1958), + [sym_array_creation] = STATE(1955), + [sym_fixed_array_creation] = STATE(1955), + [sym_selector_expression] = STATE(1955), + [sym_index_expression] = STATE(1955), + [sym_slice_expression] = STATE(1955), + [sym_if_expression] = STATE(1958), + [sym_compile_time_if_expression] = STATE(1958), + [sym_is_expression] = STATE(1955), + [sym_in_expression] = STATE(1955), + [sym_enum_fetch] = STATE(1955), + [sym_match_expression] = STATE(1958), + [sym_select_expression] = STATE(1958), + [sym_lock_expression] = STATE(1958), + [sym_unsafe_expression] = STATE(1958), + [sym_sql_expression] = STATE(1958), + [sym_c_string_literal] = STATE(1942), + [sym_raw_string_literal] = STATE(1942), + [sym_interpreted_string_literal] = STATE(1942), + [sym_mutability_modifiers] = STATE(601), + [sym_plain_type] = STATE(4266), + [sym__plain_type_without_special] = STATE(2360), + [sym_anon_struct_type] = STATE(2362), + [sym_multi_return_type] = STATE(2360), + [sym_result_type] = STATE(2360), + [sym_option_type] = STATE(2360), + [sym_qualified_type] = STATE(3460), + [sym_fixed_array_type] = STATE(2362), + [sym_array_type] = STATE(2362), + [sym_pointer_type] = STATE(2362), + [sym_wrong_pointer_type] = STATE(2362), + [sym_map_type] = STATE(2362), + [sym_channel_type] = STATE(2362), + [sym_shared_type] = STATE(2362), + [sym_thread_type] = STATE(2362), + [sym_atomic_type] = STATE(2362), + [sym_generic_type] = STATE(2362), + [sym_function_type] = STATE(2362), + [sym_identifier] = ACTIONS(3158), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(309), - [anon_sym_LBRACE] = ACTIONS(3418), - [anon_sym_LPAREN] = ACTIONS(315), - [anon_sym_fn] = ACTIONS(317), - [anon_sym_PLUS] = ACTIONS(319), - [anon_sym_DASH] = ACTIONS(319), - [anon_sym_STAR] = ACTIONS(321), - [anon_sym_struct] = ACTIONS(323), + [anon_sym_DOT] = ACTIONS(705), + [anon_sym_LBRACE] = ACTIONS(3118), + [anon_sym_LPAREN] = ACTIONS(709), + [anon_sym_fn] = ACTIONS(711), + [anon_sym_PLUS] = ACTIONS(3160), + [anon_sym_DASH] = ACTIONS(3160), + [anon_sym_STAR] = ACTIONS(3162), + [anon_sym_struct] = ACTIONS(717), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(325), - [anon_sym_go] = ACTIONS(327), - [anon_sym_spawn] = ACTIONS(329), - [anon_sym_json_DOTdecode] = ACTIONS(331), - [anon_sym_LBRACK2] = ACTIONS(333), - [anon_sym_TILDE] = ACTIONS(319), - [anon_sym_CARET] = ACTIONS(319), - [anon_sym_AMP] = ACTIONS(335), - [anon_sym_LT_DASH] = ACTIONS(337), - [sym_none] = ACTIONS(339), - [sym_true] = ACTIONS(339), - [sym_false] = ACTIONS(339), - [sym_nil] = ACTIONS(339), - [anon_sym_if] = ACTIONS(341), - [anon_sym_DOLLARif] = ACTIONS(343), - [anon_sym_match] = ACTIONS(345), - [anon_sym_select] = ACTIONS(347), - [anon_sym_lock] = ACTIONS(349), - [anon_sym_rlock] = ACTIONS(349), - [anon_sym_unsafe] = ACTIONS(351), - [anon_sym_sql] = ACTIONS(353), - [sym_int_literal] = ACTIONS(339), - [sym_float_literal] = ACTIONS(355), - [sym_rune_literal] = ACTIONS(355), - [sym_pseudo_compile_time_identifier] = ACTIONS(357), + [anon_sym_BANG] = ACTIONS(3164), + [anon_sym_go] = ACTIONS(3166), + [anon_sym_spawn] = ACTIONS(3168), + [anon_sym_json_DOTdecode] = ACTIONS(727), + [anon_sym_LBRACK2] = ACTIONS(3170), + [anon_sym_TILDE] = ACTIONS(3160), + [anon_sym_CARET] = ACTIONS(3160), + [anon_sym_AMP] = ACTIONS(3172), + [anon_sym_LT_DASH] = ACTIONS(3174), + [sym_none] = ACTIONS(735), + [sym_true] = ACTIONS(735), + [sym_false] = ACTIONS(735), + [sym_nil] = ACTIONS(735), + [anon_sym_if] = ACTIONS(737), + [anon_sym_DOLLARif] = ACTIONS(739), + [anon_sym_match] = ACTIONS(741), + [anon_sym_select] = ACTIONS(3176), + [anon_sym_lock] = ACTIONS(3178), + [anon_sym_rlock] = ACTIONS(3178), + [anon_sym_unsafe] = ACTIONS(747), + [anon_sym_sql] = ACTIONS(749), + [sym_int_literal] = ACTIONS(735), + [sym_float_literal] = ACTIONS(751), + [sym_rune_literal] = ACTIONS(751), + [sym_pseudo_compile_time_identifier] = ACTIONS(753), [anon_sym_shared] = ACTIONS(83), [anon_sym_map_LBRACK] = ACTIONS(85), [anon_sym_chan] = ACTIONS(87), [anon_sym_thread] = ACTIONS(89), [anon_sym_atomic] = ACTIONS(91), - [sym___double_quote] = ACTIONS(379), - [sym___single_quote] = ACTIONS(381), - [sym___c_double_quote] = ACTIONS(383), - [sym___c_single_quote] = ACTIONS(385), - [sym___r_double_quote] = ACTIONS(387), - [sym___r_single_quote] = ACTIONS(389), + [sym___double_quote] = ACTIONS(755), + [sym___single_quote] = ACTIONS(757), + [sym___c_double_quote] = ACTIONS(759), + [sym___c_single_quote] = ACTIONS(761), + [sym___r_double_quote] = ACTIONS(763), + [sym___r_single_quote] = ACTIONS(765), }, [715] = { [sym_line_comment] = STATE(715), [sym_block_comment] = STATE(715), - [sym__expression] = STATE(2785), - [sym__expression_without_blocks] = STATE(2300), - [sym__expression_with_blocks] = STATE(2300), - [sym_inc_expression] = STATE(2307), - [sym_dec_expression] = STATE(2307), - [sym_or_block_expression] = STATE(2307), - [sym_option_propagation_expression] = STATE(2307), - [sym_result_propagation_expression] = STATE(2307), - [sym_anon_struct_value_expression] = STATE(2380), - [sym_go_expression] = STATE(2307), - [sym_spawn_expression] = STATE(2307), - [sym_parenthesized_expression] = STATE(2307), - [sym_call_expression] = STATE(2307), - [sym_type_initializer] = STATE(2380), - [sym_function_literal] = STATE(2307), - [sym_reference_expression] = STATE(2311), - [sym_type_reference_expression] = STATE(3541), - [sym_unary_expression] = STATE(2307), - [sym_receive_expression] = STATE(2307), - [sym_binary_expression] = STATE(2307), - [sym_as_type_cast_expression] = STATE(2307), - [sym__max_group] = STATE(2307), - [sym_literal] = STATE(2292), - [sym_map_init_expression] = STATE(2380), - [sym_array_creation] = STATE(2307), - [sym_fixed_array_creation] = STATE(2307), - [sym_selector_expression] = STATE(2307), - [sym_index_expression] = STATE(2307), - [sym_slice_expression] = STATE(2307), - [sym_if_expression] = STATE(2380), - [sym_compile_time_if_expression] = STATE(2380), - [sym_is_expression] = STATE(2307), - [sym_in_expression] = STATE(2307), - [sym_enum_fetch] = STATE(2307), - [sym_match_expression] = STATE(2380), - [sym_select_expression] = STATE(2380), - [sym_lock_expression] = STATE(2380), - [sym_unsafe_expression] = STATE(2380), - [sym_sql_expression] = STATE(2380), - [sym_c_string_literal] = STATE(2308), - [sym_raw_string_literal] = STATE(2308), - [sym_interpreted_string_literal] = STATE(2308), - [sym_mutability_modifiers] = STATE(939), - [sym_plain_type] = STATE(4297), - [sym__plain_type_without_special] = STATE(2302), - [sym_anon_struct_type] = STATE(2303), - [sym_multi_return_type] = STATE(2302), - [sym_result_type] = STATE(2302), - [sym_option_type] = STATE(2302), - [sym_qualified_type] = STATE(3541), - [sym_fixed_array_type] = STATE(2303), - [sym_array_type] = STATE(2303), - [sym_pointer_type] = STATE(2303), - [sym_wrong_pointer_type] = STATE(2303), - [sym_map_type] = STATE(2303), - [sym_channel_type] = STATE(2303), - [sym_shared_type] = STATE(2303), - [sym_thread_type] = STATE(2303), - [sym_atomic_type] = STATE(2303), - [sym_generic_type] = STATE(2303), - [sym_function_type] = STATE(2303), - [sym_identifier] = ACTIONS(2189), + [sym__expression] = STATE(1877), + [sym__expression_without_blocks] = STATE(1953), + [sym__expression_with_blocks] = STATE(1953), + [sym_inc_expression] = STATE(1955), + [sym_dec_expression] = STATE(1955), + [sym_or_block_expression] = STATE(1955), + [sym_option_propagation_expression] = STATE(1955), + [sym_result_propagation_expression] = STATE(1955), + [sym_anon_struct_value_expression] = STATE(1958), + [sym_go_expression] = STATE(1955), + [sym_spawn_expression] = STATE(1955), + [sym_parenthesized_expression] = STATE(1955), + [sym_call_expression] = STATE(1955), + [sym_type_initializer] = STATE(1958), + [sym_function_literal] = STATE(1955), + [sym_reference_expression] = STATE(1956), + [sym_type_reference_expression] = STATE(3460), + [sym_unary_expression] = STATE(1955), + [sym_receive_expression] = STATE(1955), + [sym_binary_expression] = STATE(1955), + [sym_as_type_cast_expression] = STATE(1955), + [sym__max_group] = STATE(1955), + [sym_literal] = STATE(1943), + [sym_map_init_expression] = STATE(1958), + [sym_array_creation] = STATE(1955), + [sym_fixed_array_creation] = STATE(1955), + [sym_selector_expression] = STATE(1955), + [sym_index_expression] = STATE(1955), + [sym_slice_expression] = STATE(1955), + [sym_if_expression] = STATE(1958), + [sym_compile_time_if_expression] = STATE(1958), + [sym_is_expression] = STATE(1955), + [sym_in_expression] = STATE(1955), + [sym_enum_fetch] = STATE(1955), + [sym_match_expression] = STATE(1958), + [sym_select_expression] = STATE(1958), + [sym_lock_expression] = STATE(1958), + [sym_unsafe_expression] = STATE(1958), + [sym_sql_expression] = STATE(1958), + [sym_c_string_literal] = STATE(1942), + [sym_raw_string_literal] = STATE(1942), + [sym_interpreted_string_literal] = STATE(1942), + [sym_mutability_modifiers] = STATE(601), + [sym_plain_type] = STATE(4266), + [sym__plain_type_without_special] = STATE(2360), + [sym_anon_struct_type] = STATE(2362), + [sym_multi_return_type] = STATE(2360), + [sym_result_type] = STATE(2360), + [sym_option_type] = STATE(2360), + [sym_qualified_type] = STATE(3460), + [sym_fixed_array_type] = STATE(2362), + [sym_array_type] = STATE(2362), + [sym_pointer_type] = STATE(2362), + [sym_wrong_pointer_type] = STATE(2362), + [sym_map_type] = STATE(2362), + [sym_channel_type] = STATE(2362), + [sym_shared_type] = STATE(2362), + [sym_thread_type] = STATE(2362), + [sym_atomic_type] = STATE(2362), + [sym_generic_type] = STATE(2362), + [sym_function_type] = STATE(2362), + [sym_identifier] = ACTIONS(3158), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1428), - [anon_sym_LBRACE] = ACTIONS(1430), - [anon_sym_LPAREN] = ACTIONS(1432), - [anon_sym_fn] = ACTIONS(1434), - [anon_sym_PLUS] = ACTIONS(2491), - [anon_sym_DASH] = ACTIONS(2491), - [anon_sym_STAR] = ACTIONS(3354), - [anon_sym_struct] = ACTIONS(1440), + [anon_sym_DOT] = ACTIONS(705), + [anon_sym_LBRACE] = ACTIONS(3118), + [anon_sym_LPAREN] = ACTIONS(709), + [anon_sym_fn] = ACTIONS(711), + [anon_sym_PLUS] = ACTIONS(3160), + [anon_sym_DASH] = ACTIONS(3160), + [anon_sym_STAR] = ACTIONS(3162), + [anon_sym_struct] = ACTIONS(717), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(3356), - [anon_sym_go] = ACTIONS(2497), - [anon_sym_spawn] = ACTIONS(2499), - [anon_sym_json_DOTdecode] = ACTIONS(1448), - [anon_sym_LBRACK2] = ACTIONS(1450), - [anon_sym_TILDE] = ACTIONS(2491), - [anon_sym_CARET] = ACTIONS(2491), - [anon_sym_AMP] = ACTIONS(3358), - [anon_sym_LT_DASH] = ACTIONS(2503), - [sym_none] = ACTIONS(1456), - [sym_true] = ACTIONS(1456), - [sym_false] = ACTIONS(1456), - [sym_nil] = ACTIONS(1456), - [anon_sym_if] = ACTIONS(1827), - [anon_sym_DOLLARif] = ACTIONS(1460), - [anon_sym_match] = ACTIONS(1462), - [anon_sym_select] = ACTIONS(1464), - [anon_sym_lock] = ACTIONS(1466), - [anon_sym_rlock] = ACTIONS(1466), - [anon_sym_unsafe] = ACTIONS(1833), - [anon_sym_sql] = ACTIONS(1470), - [sym_int_literal] = ACTIONS(1456), - [sym_float_literal] = ACTIONS(1472), - [sym_rune_literal] = ACTIONS(1472), - [sym_pseudo_compile_time_identifier] = ACTIONS(1474), + [anon_sym_BANG] = ACTIONS(3164), + [anon_sym_go] = ACTIONS(3166), + [anon_sym_spawn] = ACTIONS(3168), + [anon_sym_json_DOTdecode] = ACTIONS(727), + [anon_sym_LBRACK2] = ACTIONS(3170), + [anon_sym_TILDE] = ACTIONS(3160), + [anon_sym_CARET] = ACTIONS(3160), + [anon_sym_AMP] = ACTIONS(3172), + [anon_sym_LT_DASH] = ACTIONS(3174), + [sym_none] = ACTIONS(735), + [sym_true] = ACTIONS(735), + [sym_false] = ACTIONS(735), + [sym_nil] = ACTIONS(735), + [anon_sym_if] = ACTIONS(737), + [anon_sym_DOLLARif] = ACTIONS(739), + [anon_sym_match] = ACTIONS(741), + [anon_sym_select] = ACTIONS(3176), + [anon_sym_lock] = ACTIONS(3178), + [anon_sym_rlock] = ACTIONS(3178), + [anon_sym_unsafe] = ACTIONS(747), + [anon_sym_sql] = ACTIONS(749), + [sym_int_literal] = ACTIONS(735), + [sym_float_literal] = ACTIONS(751), + [sym_rune_literal] = ACTIONS(751), + [sym_pseudo_compile_time_identifier] = ACTIONS(753), [anon_sym_shared] = ACTIONS(83), [anon_sym_map_LBRACK] = ACTIONS(85), [anon_sym_chan] = ACTIONS(87), [anon_sym_thread] = ACTIONS(89), [anon_sym_atomic] = ACTIONS(91), - [sym___double_quote] = ACTIONS(1478), - [sym___single_quote] = ACTIONS(1480), - [sym___c_double_quote] = ACTIONS(1482), - [sym___c_single_quote] = ACTIONS(1484), - [sym___r_double_quote] = ACTIONS(1486), - [sym___r_single_quote] = ACTIONS(1488), + [sym___double_quote] = ACTIONS(755), + [sym___single_quote] = ACTIONS(757), + [sym___c_double_quote] = ACTIONS(759), + [sym___c_single_quote] = ACTIONS(761), + [sym___r_double_quote] = ACTIONS(763), + [sym___r_single_quote] = ACTIONS(765), }, [716] = { [sym_line_comment] = STATE(716), [sym_block_comment] = STATE(716), - [sym__expression] = STATE(2831), - [sym__expression_without_blocks] = STATE(2300), - [sym__expression_with_blocks] = STATE(2300), - [sym_inc_expression] = STATE(2307), - [sym_dec_expression] = STATE(2307), - [sym_or_block_expression] = STATE(2307), - [sym_option_propagation_expression] = STATE(2307), - [sym_result_propagation_expression] = STATE(2307), - [sym_anon_struct_value_expression] = STATE(2380), - [sym_go_expression] = STATE(2307), - [sym_spawn_expression] = STATE(2307), - [sym_parenthesized_expression] = STATE(2307), - [sym_call_expression] = STATE(2307), - [sym_type_initializer] = STATE(2380), - [sym_function_literal] = STATE(2307), - [sym_reference_expression] = STATE(2883), - [sym_type_reference_expression] = STATE(3541), - [sym_unary_expression] = STATE(2307), - [sym_receive_expression] = STATE(2307), - [sym_binary_expression] = STATE(2307), - [sym_as_type_cast_expression] = STATE(2307), - [sym__max_group] = STATE(2307), - [sym_literal] = STATE(2292), - [sym_map_init_expression] = STATE(2380), - [sym_array_creation] = STATE(2307), - [sym_fixed_array_creation] = STATE(2307), - [sym_selector_expression] = STATE(2923), - [sym_index_expression] = STATE(2307), - [sym_slice_expression] = STATE(2307), - [sym_if_expression] = STATE(2380), - [sym_compile_time_if_expression] = STATE(2380), - [sym_is_expression] = STATE(2307), - [sym_in_expression] = STATE(2307), - [sym_enum_fetch] = STATE(2307), - [sym_match_expression] = STATE(2380), - [sym_select_expression] = STATE(2380), - [sym_lock_expression] = STATE(2380), - [sym_unsafe_expression] = STATE(2380), - [sym_sql_expression] = STATE(2380), - [sym_c_string_literal] = STATE(2308), - [sym_raw_string_literal] = STATE(2308), - [sym_interpreted_string_literal] = STATE(2308), - [sym_mutability_modifiers] = STATE(939), - [sym_plain_type] = STATE(4297), - [sym__plain_type_without_special] = STATE(2302), - [sym_anon_struct_type] = STATE(2303), - [sym_multi_return_type] = STATE(2302), - [sym_result_type] = STATE(2302), - [sym_option_type] = STATE(2302), - [sym_qualified_type] = STATE(3541), - [sym_fixed_array_type] = STATE(2303), - [sym_array_type] = STATE(2303), - [sym_pointer_type] = STATE(2303), - [sym_wrong_pointer_type] = STATE(2303), - [sym_map_type] = STATE(2303), - [sym_channel_type] = STATE(2303), - [sym_shared_type] = STATE(2303), - [sym_thread_type] = STATE(2303), - [sym_atomic_type] = STATE(2303), - [sym_generic_type] = STATE(2303), - [sym_function_type] = STATE(2303), - [sym_identifier] = ACTIONS(2189), + [sym__expression] = STATE(1764), + [sym__expression_without_blocks] = STATE(1953), + [sym__expression_with_blocks] = STATE(1953), + [sym_inc_expression] = STATE(1955), + [sym_dec_expression] = STATE(1955), + [sym_or_block_expression] = STATE(1955), + [sym_option_propagation_expression] = STATE(1955), + [sym_result_propagation_expression] = STATE(1955), + [sym_anon_struct_value_expression] = STATE(1958), + [sym_go_expression] = STATE(1955), + [sym_spawn_expression] = STATE(1955), + [sym_parenthesized_expression] = STATE(1955), + [sym_call_expression] = STATE(1955), + [sym_type_initializer] = STATE(1958), + [sym_function_literal] = STATE(1955), + [sym_reference_expression] = STATE(1956), + [sym_type_reference_expression] = STATE(3460), + [sym_unary_expression] = STATE(1955), + [sym_receive_expression] = STATE(1955), + [sym_binary_expression] = STATE(1955), + [sym_as_type_cast_expression] = STATE(1955), + [sym__max_group] = STATE(1955), + [sym_literal] = STATE(1943), + [sym_map_init_expression] = STATE(1958), + [sym_array_creation] = STATE(1955), + [sym_fixed_array_creation] = STATE(1955), + [sym_selector_expression] = STATE(1955), + [sym_index_expression] = STATE(1955), + [sym_slice_expression] = STATE(1955), + [sym_if_expression] = STATE(1958), + [sym_compile_time_if_expression] = STATE(1958), + [sym_is_expression] = STATE(1955), + [sym_in_expression] = STATE(1955), + [sym_enum_fetch] = STATE(1955), + [sym_match_expression] = STATE(1958), + [sym_select_expression] = STATE(1958), + [sym_lock_expression] = STATE(1958), + [sym_unsafe_expression] = STATE(1958), + [sym_sql_expression] = STATE(1958), + [sym_c_string_literal] = STATE(1942), + [sym_raw_string_literal] = STATE(1942), + [sym_interpreted_string_literal] = STATE(1942), + [sym_mutability_modifiers] = STATE(601), + [sym_plain_type] = STATE(4243), + [sym__plain_type_without_special] = STATE(2360), + [sym_anon_struct_type] = STATE(2362), + [sym_multi_return_type] = STATE(2360), + [sym_result_type] = STATE(2360), + [sym_option_type] = STATE(2360), + [sym_qualified_type] = STATE(3460), + [sym_fixed_array_type] = STATE(2362), + [sym_array_type] = STATE(2362), + [sym_pointer_type] = STATE(2362), + [sym_wrong_pointer_type] = STATE(2362), + [sym_map_type] = STATE(2362), + [sym_channel_type] = STATE(2362), + [sym_shared_type] = STATE(2362), + [sym_thread_type] = STATE(2362), + [sym_atomic_type] = STATE(2362), + [sym_generic_type] = STATE(2362), + [sym_function_type] = STATE(2362), + [sym_identifier] = ACTIONS(3158), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1428), - [anon_sym_LBRACE] = ACTIONS(1430), - [anon_sym_LPAREN] = ACTIONS(1432), - [anon_sym_fn] = ACTIONS(1434), - [anon_sym_PLUS] = ACTIONS(1436), - [anon_sym_DASH] = ACTIONS(1436), - [anon_sym_STAR] = ACTIONS(1438), - [anon_sym_struct] = ACTIONS(1440), + [anon_sym_DOT] = ACTIONS(705), + [anon_sym_LBRACE] = ACTIONS(3118), + [anon_sym_LPAREN] = ACTIONS(709), + [anon_sym_fn] = ACTIONS(711), + [anon_sym_PLUS] = ACTIONS(3160), + [anon_sym_DASH] = ACTIONS(3160), + [anon_sym_STAR] = ACTIONS(3162), + [anon_sym_struct] = ACTIONS(717), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(1442), - [anon_sym_go] = ACTIONS(1444), - [anon_sym_spawn] = ACTIONS(1446), - [anon_sym_json_DOTdecode] = ACTIONS(1448), - [anon_sym_LBRACK2] = ACTIONS(1450), - [anon_sym_TILDE] = ACTIONS(1436), - [anon_sym_CARET] = ACTIONS(1436), - [anon_sym_AMP] = ACTIONS(1452), - [anon_sym_LT_DASH] = ACTIONS(1454), - [sym_none] = ACTIONS(1456), - [sym_true] = ACTIONS(1456), - [sym_false] = ACTIONS(1456), - [sym_nil] = ACTIONS(1456), - [anon_sym_if] = ACTIONS(1827), - [anon_sym_DOLLARif] = ACTIONS(1460), - [anon_sym_match] = ACTIONS(1462), - [anon_sym_select] = ACTIONS(1464), - [anon_sym_lock] = ACTIONS(1466), - [anon_sym_rlock] = ACTIONS(1466), - [anon_sym_unsafe] = ACTIONS(1833), - [anon_sym_sql] = ACTIONS(1470), - [sym_int_literal] = ACTIONS(1456), - [sym_float_literal] = ACTIONS(1472), - [sym_rune_literal] = ACTIONS(1472), - [sym_pseudo_compile_time_identifier] = ACTIONS(1474), + [anon_sym_BANG] = ACTIONS(3164), + [anon_sym_go] = ACTIONS(3166), + [anon_sym_spawn] = ACTIONS(3168), + [anon_sym_json_DOTdecode] = ACTIONS(727), + [anon_sym_LBRACK2] = ACTIONS(3170), + [anon_sym_TILDE] = ACTIONS(3160), + [anon_sym_CARET] = ACTIONS(3160), + [anon_sym_AMP] = ACTIONS(3172), + [anon_sym_LT_DASH] = ACTIONS(3174), + [sym_none] = ACTIONS(735), + [sym_true] = ACTIONS(735), + [sym_false] = ACTIONS(735), + [sym_nil] = ACTIONS(735), + [anon_sym_if] = ACTIONS(737), + [anon_sym_DOLLARif] = ACTIONS(739), + [anon_sym_match] = ACTIONS(741), + [anon_sym_select] = ACTIONS(3176), + [anon_sym_lock] = ACTIONS(3178), + [anon_sym_rlock] = ACTIONS(3178), + [anon_sym_unsafe] = ACTIONS(747), + [anon_sym_sql] = ACTIONS(749), + [sym_int_literal] = ACTIONS(735), + [sym_float_literal] = ACTIONS(751), + [sym_rune_literal] = ACTIONS(751), + [sym_pseudo_compile_time_identifier] = ACTIONS(753), [anon_sym_shared] = ACTIONS(83), [anon_sym_map_LBRACK] = ACTIONS(85), [anon_sym_chan] = ACTIONS(87), [anon_sym_thread] = ACTIONS(89), [anon_sym_atomic] = ACTIONS(91), - [sym___double_quote] = ACTIONS(1478), - [sym___single_quote] = ACTIONS(1480), - [sym___c_double_quote] = ACTIONS(1482), - [sym___c_single_quote] = ACTIONS(1484), - [sym___r_double_quote] = ACTIONS(1486), - [sym___r_single_quote] = ACTIONS(1488), + [sym___double_quote] = ACTIONS(755), + [sym___single_quote] = ACTIONS(757), + [sym___c_double_quote] = ACTIONS(759), + [sym___c_single_quote] = ACTIONS(761), + [sym___r_double_quote] = ACTIONS(763), + [sym___r_single_quote] = ACTIONS(765), }, [717] = { [sym_line_comment] = STATE(717), [sym_block_comment] = STATE(717), - [sym__expression] = STATE(2771), - [sym__expression_without_blocks] = STATE(2300), - [sym__expression_with_blocks] = STATE(2300), - [sym_inc_expression] = STATE(2307), - [sym_dec_expression] = STATE(2307), - [sym_or_block_expression] = STATE(2307), - [sym_option_propagation_expression] = STATE(2307), - [sym_result_propagation_expression] = STATE(2307), - [sym_anon_struct_value_expression] = STATE(2380), - [sym_go_expression] = STATE(2307), - [sym_spawn_expression] = STATE(2307), - [sym_parenthesized_expression] = STATE(2307), - [sym_call_expression] = STATE(2307), - [sym_type_initializer] = STATE(2380), - [sym_function_literal] = STATE(2307), - [sym_reference_expression] = STATE(2311), - [sym_type_reference_expression] = STATE(3541), - [sym_unary_expression] = STATE(2307), - [sym_receive_expression] = STATE(2307), - [sym_binary_expression] = STATE(2307), - [sym_as_type_cast_expression] = STATE(2307), - [sym__max_group] = STATE(2307), - [sym_literal] = STATE(2292), - [sym_map_init_expression] = STATE(2380), - [sym_array_creation] = STATE(2307), - [sym_fixed_array_creation] = STATE(2307), - [sym_selector_expression] = STATE(2307), - [sym_index_expression] = STATE(2307), - [sym_slice_expression] = STATE(2307), - [sym_if_expression] = STATE(2380), - [sym_compile_time_if_expression] = STATE(2380), - [sym_is_expression] = STATE(2307), - [sym_in_expression] = STATE(2307), - [sym_enum_fetch] = STATE(2307), - [sym_match_expression] = STATE(2380), - [sym_select_expression] = STATE(2380), - [sym_lock_expression] = STATE(2380), - [sym_unsafe_expression] = STATE(2380), - [sym_sql_expression] = STATE(2380), - [sym_c_string_literal] = STATE(2308), - [sym_raw_string_literal] = STATE(2308), - [sym_interpreted_string_literal] = STATE(2308), - [sym_mutability_modifiers] = STATE(939), - [sym_plain_type] = STATE(3552), - [sym__plain_type_without_special] = STATE(2302), - [sym_anon_struct_type] = STATE(2303), - [sym_multi_return_type] = STATE(2302), - [sym_result_type] = STATE(2302), - [sym_option_type] = STATE(2302), - [sym_qualified_type] = STATE(3541), - [sym_fixed_array_type] = STATE(2303), - [sym_array_type] = STATE(2303), - [sym_pointer_type] = STATE(2303), - [sym_wrong_pointer_type] = STATE(2303), - [sym_map_type] = STATE(2303), - [sym_channel_type] = STATE(2303), - [sym_shared_type] = STATE(2303), - [sym_thread_type] = STATE(2303), - [sym_atomic_type] = STATE(2303), - [sym_generic_type] = STATE(2303), - [sym_function_type] = STATE(2303), - [sym_identifier] = ACTIONS(1426), + [sym__expression] = STATE(1764), + [sym__expression_without_blocks] = STATE(1953), + [sym__expression_with_blocks] = STATE(1953), + [sym_inc_expression] = STATE(1955), + [sym_dec_expression] = STATE(1955), + [sym_or_block_expression] = STATE(1955), + [sym_option_propagation_expression] = STATE(1955), + [sym_result_propagation_expression] = STATE(1955), + [sym_anon_struct_value_expression] = STATE(1958), + [sym_go_expression] = STATE(1955), + [sym_spawn_expression] = STATE(1955), + [sym_parenthesized_expression] = STATE(1955), + [sym_call_expression] = STATE(1955), + [sym_type_initializer] = STATE(1958), + [sym_function_literal] = STATE(1955), + [sym_reference_expression] = STATE(1956), + [sym_type_reference_expression] = STATE(3460), + [sym_unary_expression] = STATE(1955), + [sym_receive_expression] = STATE(1955), + [sym_binary_expression] = STATE(1955), + [sym_as_type_cast_expression] = STATE(1955), + [sym__max_group] = STATE(1955), + [sym_literal] = STATE(1943), + [sym_map_init_expression] = STATE(1958), + [sym_array_creation] = STATE(1955), + [sym_fixed_array_creation] = STATE(1955), + [sym_selector_expression] = STATE(1955), + [sym_index_expression] = STATE(1955), + [sym_slice_expression] = STATE(1955), + [sym_if_expression] = STATE(1958), + [sym_compile_time_if_expression] = STATE(1958), + [sym_is_expression] = STATE(1955), + [sym_in_expression] = STATE(1955), + [sym_enum_fetch] = STATE(1955), + [sym_match_expression] = STATE(1958), + [sym_select_expression] = STATE(1958), + [sym_lock_expression] = STATE(1958), + [sym_unsafe_expression] = STATE(1958), + [sym_sql_expression] = STATE(1958), + [sym_c_string_literal] = STATE(1942), + [sym_raw_string_literal] = STATE(1942), + [sym_interpreted_string_literal] = STATE(1942), + [sym_mutability_modifiers] = STATE(601), + [sym_plain_type] = STATE(4249), + [sym__plain_type_without_special] = STATE(2360), + [sym_anon_struct_type] = STATE(2362), + [sym_multi_return_type] = STATE(2360), + [sym_result_type] = STATE(2360), + [sym_option_type] = STATE(2360), + [sym_qualified_type] = STATE(3460), + [sym_fixed_array_type] = STATE(2362), + [sym_array_type] = STATE(2362), + [sym_pointer_type] = STATE(2362), + [sym_wrong_pointer_type] = STATE(2362), + [sym_map_type] = STATE(2362), + [sym_channel_type] = STATE(2362), + [sym_shared_type] = STATE(2362), + [sym_thread_type] = STATE(2362), + [sym_atomic_type] = STATE(2362), + [sym_generic_type] = STATE(2362), + [sym_function_type] = STATE(2362), + [sym_identifier] = ACTIONS(3158), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1428), - [anon_sym_LBRACE] = ACTIONS(1430), - [anon_sym_LPAREN] = ACTIONS(1432), - [anon_sym_fn] = ACTIONS(1434), - [anon_sym_PLUS] = ACTIONS(2491), - [anon_sym_DASH] = ACTIONS(2491), - [anon_sym_STAR] = ACTIONS(2493), - [anon_sym_struct] = ACTIONS(1440), + [anon_sym_DOT] = ACTIONS(705), + [anon_sym_LBRACE] = ACTIONS(3118), + [anon_sym_LPAREN] = ACTIONS(709), + [anon_sym_fn] = ACTIONS(711), + [anon_sym_PLUS] = ACTIONS(3160), + [anon_sym_DASH] = ACTIONS(3160), + [anon_sym_STAR] = ACTIONS(3162), + [anon_sym_struct] = ACTIONS(717), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(2495), - [anon_sym_go] = ACTIONS(2497), - [anon_sym_spawn] = ACTIONS(2499), - [anon_sym_json_DOTdecode] = ACTIONS(1448), - [anon_sym_LBRACK2] = ACTIONS(1450), - [anon_sym_TILDE] = ACTIONS(2491), - [anon_sym_CARET] = ACTIONS(2491), - [anon_sym_AMP] = ACTIONS(2501), - [anon_sym_LT_DASH] = ACTIONS(2503), - [sym_none] = ACTIONS(1456), - [sym_true] = ACTIONS(1456), - [sym_false] = ACTIONS(1456), - [sym_nil] = ACTIONS(1456), - [anon_sym_if] = ACTIONS(1827), - [anon_sym_DOLLARif] = ACTIONS(1460), - [anon_sym_match] = ACTIONS(1462), - [anon_sym_select] = ACTIONS(1464), - [anon_sym_lock] = ACTIONS(1466), - [anon_sym_rlock] = ACTIONS(1466), - [anon_sym_unsafe] = ACTIONS(1833), - [anon_sym_sql] = ACTIONS(1470), - [sym_int_literal] = ACTIONS(1456), - [sym_float_literal] = ACTIONS(1472), - [sym_rune_literal] = ACTIONS(1472), - [sym_pseudo_compile_time_identifier] = ACTIONS(1474), + [anon_sym_BANG] = ACTIONS(3164), + [anon_sym_go] = ACTIONS(3166), + [anon_sym_spawn] = ACTIONS(3168), + [anon_sym_json_DOTdecode] = ACTIONS(727), + [anon_sym_LBRACK2] = ACTIONS(3170), + [anon_sym_TILDE] = ACTIONS(3160), + [anon_sym_CARET] = ACTIONS(3160), + [anon_sym_AMP] = ACTIONS(3172), + [anon_sym_LT_DASH] = ACTIONS(3174), + [sym_none] = ACTIONS(735), + [sym_true] = ACTIONS(735), + [sym_false] = ACTIONS(735), + [sym_nil] = ACTIONS(735), + [anon_sym_if] = ACTIONS(737), + [anon_sym_DOLLARif] = ACTIONS(739), + [anon_sym_match] = ACTIONS(741), + [anon_sym_select] = ACTIONS(3176), + [anon_sym_lock] = ACTIONS(3178), + [anon_sym_rlock] = ACTIONS(3178), + [anon_sym_unsafe] = ACTIONS(747), + [anon_sym_sql] = ACTIONS(749), + [sym_int_literal] = ACTIONS(735), + [sym_float_literal] = ACTIONS(751), + [sym_rune_literal] = ACTIONS(751), + [sym_pseudo_compile_time_identifier] = ACTIONS(753), [anon_sym_shared] = ACTIONS(83), [anon_sym_map_LBRACK] = ACTIONS(85), [anon_sym_chan] = ACTIONS(87), [anon_sym_thread] = ACTIONS(89), [anon_sym_atomic] = ACTIONS(91), - [sym___double_quote] = ACTIONS(1478), - [sym___single_quote] = ACTIONS(1480), - [sym___c_double_quote] = ACTIONS(1482), - [sym___c_single_quote] = ACTIONS(1484), - [sym___r_double_quote] = ACTIONS(1486), - [sym___r_single_quote] = ACTIONS(1488), + [sym___double_quote] = ACTIONS(755), + [sym___single_quote] = ACTIONS(757), + [sym___c_double_quote] = ACTIONS(759), + [sym___c_single_quote] = ACTIONS(761), + [sym___r_double_quote] = ACTIONS(763), + [sym___r_single_quote] = ACTIONS(765), }, [718] = { [sym_line_comment] = STATE(718), [sym_block_comment] = STATE(718), - [sym__expression] = STATE(2596), - [sym__expression_without_blocks] = STATE(2300), - [sym__expression_with_blocks] = STATE(2300), - [sym_inc_expression] = STATE(2307), - [sym_dec_expression] = STATE(2307), - [sym_or_block_expression] = STATE(2307), - [sym_option_propagation_expression] = STATE(2307), - [sym_result_propagation_expression] = STATE(2307), - [sym_anon_struct_value_expression] = STATE(2380), - [sym_go_expression] = STATE(2307), - [sym_spawn_expression] = STATE(2307), - [sym_parenthesized_expression] = STATE(2307), - [sym_call_expression] = STATE(2307), - [sym_type_initializer] = STATE(2380), - [sym_function_literal] = STATE(2307), - [sym_reference_expression] = STATE(2311), - [sym_type_reference_expression] = STATE(3541), - [sym_unary_expression] = STATE(2307), - [sym_receive_expression] = STATE(2307), - [sym_binary_expression] = STATE(2307), - [sym_as_type_cast_expression] = STATE(2307), - [sym__max_group] = STATE(2307), - [sym_literal] = STATE(2292), - [sym_map_init_expression] = STATE(2380), - [sym_array_creation] = STATE(2307), - [sym_fixed_array_creation] = STATE(2307), - [sym_selector_expression] = STATE(2307), - [sym_index_expression] = STATE(2307), - [sym_slice_expression] = STATE(2307), - [sym_if_expression] = STATE(2380), - [sym_compile_time_if_expression] = STATE(2380), - [sym_is_expression] = STATE(2307), - [sym_in_expression] = STATE(2307), - [sym_enum_fetch] = STATE(2307), - [sym_match_expression] = STATE(2380), - [sym_select_expression] = STATE(2380), - [sym_lock_expression] = STATE(2380), - [sym_unsafe_expression] = STATE(2380), - [sym_sql_expression] = STATE(2380), - [sym_c_string_literal] = STATE(2308), - [sym_raw_string_literal] = STATE(2308), - [sym_interpreted_string_literal] = STATE(2308), - [sym_mutability_modifiers] = STATE(939), - [sym_plain_type] = STATE(4297), - [sym__plain_type_without_special] = STATE(2302), - [sym_anon_struct_type] = STATE(2303), - [sym_multi_return_type] = STATE(2302), - [sym_result_type] = STATE(2302), - [sym_option_type] = STATE(2302), - [sym_qualified_type] = STATE(3541), - [sym_fixed_array_type] = STATE(2303), - [sym_array_type] = STATE(2303), - [sym_pointer_type] = STATE(2303), - [sym_wrong_pointer_type] = STATE(2303), - [sym_map_type] = STATE(2303), - [sym_channel_type] = STATE(2303), - [sym_shared_type] = STATE(2303), - [sym_thread_type] = STATE(2303), - [sym_atomic_type] = STATE(2303), - [sym_generic_type] = STATE(2303), - [sym_function_type] = STATE(2303), - [sym_identifier] = ACTIONS(1807), + [sym__expression] = STATE(1764), + [sym__expression_without_blocks] = STATE(1953), + [sym__expression_with_blocks] = STATE(1953), + [sym_inc_expression] = STATE(1955), + [sym_dec_expression] = STATE(1955), + [sym_or_block_expression] = STATE(1955), + [sym_option_propagation_expression] = STATE(1955), + [sym_result_propagation_expression] = STATE(1955), + [sym_anon_struct_value_expression] = STATE(1958), + [sym_go_expression] = STATE(1955), + [sym_spawn_expression] = STATE(1955), + [sym_parenthesized_expression] = STATE(1955), + [sym_call_expression] = STATE(1955), + [sym_type_initializer] = STATE(1958), + [sym_function_literal] = STATE(1955), + [sym_reference_expression] = STATE(1956), + [sym_type_reference_expression] = STATE(3460), + [sym_unary_expression] = STATE(1955), + [sym_receive_expression] = STATE(1955), + [sym_binary_expression] = STATE(1955), + [sym_as_type_cast_expression] = STATE(1955), + [sym__max_group] = STATE(1955), + [sym_literal] = STATE(1943), + [sym_map_init_expression] = STATE(1958), + [sym_array_creation] = STATE(1955), + [sym_fixed_array_creation] = STATE(1955), + [sym_selector_expression] = STATE(1955), + [sym_index_expression] = STATE(1955), + [sym_slice_expression] = STATE(1955), + [sym_if_expression] = STATE(1958), + [sym_compile_time_if_expression] = STATE(1958), + [sym_is_expression] = STATE(1955), + [sym_in_expression] = STATE(1955), + [sym_enum_fetch] = STATE(1955), + [sym_match_expression] = STATE(1958), + [sym_select_expression] = STATE(1958), + [sym_lock_expression] = STATE(1958), + [sym_unsafe_expression] = STATE(1958), + [sym_sql_expression] = STATE(1958), + [sym_c_string_literal] = STATE(1942), + [sym_raw_string_literal] = STATE(1942), + [sym_interpreted_string_literal] = STATE(1942), + [sym_mutability_modifiers] = STATE(601), + [sym_plain_type] = STATE(4266), + [sym__plain_type_without_special] = STATE(2360), + [sym_anon_struct_type] = STATE(2362), + [sym_multi_return_type] = STATE(2360), + [sym_result_type] = STATE(2360), + [sym_option_type] = STATE(2360), + [sym_qualified_type] = STATE(3460), + [sym_fixed_array_type] = STATE(2362), + [sym_array_type] = STATE(2362), + [sym_pointer_type] = STATE(2362), + [sym_wrong_pointer_type] = STATE(2362), + [sym_map_type] = STATE(2362), + [sym_channel_type] = STATE(2362), + [sym_shared_type] = STATE(2362), + [sym_thread_type] = STATE(2362), + [sym_atomic_type] = STATE(2362), + [sym_generic_type] = STATE(2362), + [sym_function_type] = STATE(2362), + [sym_identifier] = ACTIONS(3158), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1428), - [anon_sym_LBRACE] = ACTIONS(1430), - [anon_sym_LPAREN] = ACTIONS(1432), - [anon_sym_fn] = ACTIONS(1434), - [anon_sym_PLUS] = ACTIONS(3064), - [anon_sym_DASH] = ACTIONS(3064), - [anon_sym_STAR] = ACTIONS(3066), - [anon_sym_struct] = ACTIONS(1440), + [anon_sym_DOT] = ACTIONS(705), + [anon_sym_LBRACE] = ACTIONS(3118), + [anon_sym_LPAREN] = ACTIONS(709), + [anon_sym_fn] = ACTIONS(711), + [anon_sym_PLUS] = ACTIONS(3160), + [anon_sym_DASH] = ACTIONS(3160), + [anon_sym_STAR] = ACTIONS(3162), + [anon_sym_struct] = ACTIONS(717), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(3068), - [anon_sym_go] = ACTIONS(3070), - [anon_sym_spawn] = ACTIONS(3072), - [anon_sym_json_DOTdecode] = ACTIONS(1448), - [anon_sym_LBRACK2] = ACTIONS(1821), - [anon_sym_TILDE] = ACTIONS(3064), - [anon_sym_CARET] = ACTIONS(3064), - [anon_sym_AMP] = ACTIONS(3074), - [anon_sym_LT_DASH] = ACTIONS(3076), - [sym_none] = ACTIONS(1456), - [sym_true] = ACTIONS(1456), - [sym_false] = ACTIONS(1456), - [sym_nil] = ACTIONS(1456), - [anon_sym_if] = ACTIONS(1827), - [anon_sym_DOLLARif] = ACTIONS(1460), - [anon_sym_match] = ACTIONS(1462), - [anon_sym_select] = ACTIONS(3078), - [anon_sym_lock] = ACTIONS(3080), - [anon_sym_rlock] = ACTIONS(3080), - [anon_sym_unsafe] = ACTIONS(1833), - [anon_sym_sql] = ACTIONS(1470), - [sym_int_literal] = ACTIONS(1456), - [sym_float_literal] = ACTIONS(1472), - [sym_rune_literal] = ACTIONS(1472), - [sym_pseudo_compile_time_identifier] = ACTIONS(1474), + [anon_sym_BANG] = ACTIONS(3164), + [anon_sym_go] = ACTIONS(3166), + [anon_sym_spawn] = ACTIONS(3168), + [anon_sym_json_DOTdecode] = ACTIONS(727), + [anon_sym_LBRACK2] = ACTIONS(3170), + [anon_sym_TILDE] = ACTIONS(3160), + [anon_sym_CARET] = ACTIONS(3160), + [anon_sym_AMP] = ACTIONS(3172), + [anon_sym_LT_DASH] = ACTIONS(3174), + [sym_none] = ACTIONS(735), + [sym_true] = ACTIONS(735), + [sym_false] = ACTIONS(735), + [sym_nil] = ACTIONS(735), + [anon_sym_if] = ACTIONS(737), + [anon_sym_DOLLARif] = ACTIONS(739), + [anon_sym_match] = ACTIONS(741), + [anon_sym_select] = ACTIONS(3176), + [anon_sym_lock] = ACTIONS(3178), + [anon_sym_rlock] = ACTIONS(3178), + [anon_sym_unsafe] = ACTIONS(747), + [anon_sym_sql] = ACTIONS(749), + [sym_int_literal] = ACTIONS(735), + [sym_float_literal] = ACTIONS(751), + [sym_rune_literal] = ACTIONS(751), + [sym_pseudo_compile_time_identifier] = ACTIONS(753), [anon_sym_shared] = ACTIONS(83), [anon_sym_map_LBRACK] = ACTIONS(85), [anon_sym_chan] = ACTIONS(87), [anon_sym_thread] = ACTIONS(89), [anon_sym_atomic] = ACTIONS(91), - [sym___double_quote] = ACTIONS(1478), - [sym___single_quote] = ACTIONS(1480), - [sym___c_double_quote] = ACTIONS(1482), - [sym___c_single_quote] = ACTIONS(1484), - [sym___r_double_quote] = ACTIONS(1486), - [sym___r_single_quote] = ACTIONS(1488), + [sym___double_quote] = ACTIONS(755), + [sym___single_quote] = ACTIONS(757), + [sym___c_double_quote] = ACTIONS(759), + [sym___c_single_quote] = ACTIONS(761), + [sym___r_double_quote] = ACTIONS(763), + [sym___r_single_quote] = ACTIONS(765), }, [719] = { [sym_line_comment] = STATE(719), [sym_block_comment] = STATE(719), - [sym__expression] = STATE(1620), - [sym__expression_without_blocks] = STATE(1692), - [sym__expression_with_blocks] = STATE(1692), - [sym_inc_expression] = STATE(1684), - [sym_dec_expression] = STATE(1684), - [sym_or_block_expression] = STATE(1684), - [sym_option_propagation_expression] = STATE(1684), - [sym_result_propagation_expression] = STATE(1684), - [sym_anon_struct_value_expression] = STATE(1677), - [sym_go_expression] = STATE(1684), - [sym_spawn_expression] = STATE(1684), - [sym_parenthesized_expression] = STATE(1684), - [sym_call_expression] = STATE(1684), - [sym_type_initializer] = STATE(1677), - [sym_function_literal] = STATE(1684), - [sym_reference_expression] = STATE(1674), - [sym_type_reference_expression] = STATE(3541), - [sym_unary_expression] = STATE(1684), - [sym_receive_expression] = STATE(1684), - [sym_binary_expression] = STATE(1684), - [sym_as_type_cast_expression] = STATE(1684), - [sym__max_group] = STATE(1684), - [sym_literal] = STATE(1698), - [sym_map_init_expression] = STATE(1677), - [sym_array_creation] = STATE(1684), - [sym_fixed_array_creation] = STATE(1684), - [sym_selector_expression] = STATE(1684), - [sym_index_expression] = STATE(1684), - [sym_slice_expression] = STATE(1684), - [sym_if_expression] = STATE(1677), - [sym_compile_time_if_expression] = STATE(1677), - [sym_is_expression] = STATE(1684), - [sym_in_expression] = STATE(1684), - [sym_enum_fetch] = STATE(1684), - [sym_match_expression] = STATE(1677), - [sym_select_expression] = STATE(1677), - [sym_lock_expression] = STATE(1677), - [sym_unsafe_expression] = STATE(1677), - [sym_sql_expression] = STATE(1677), - [sym_c_string_literal] = STATE(1705), - [sym_raw_string_literal] = STATE(1705), - [sym_interpreted_string_literal] = STATE(1705), - [sym_mutability_modifiers] = STATE(664), - [sym_plain_type] = STATE(4168), - [sym__plain_type_without_special] = STATE(2302), - [sym_anon_struct_type] = STATE(2303), - [sym_multi_return_type] = STATE(2302), - [sym_result_type] = STATE(2302), - [sym_option_type] = STATE(2302), - [sym_qualified_type] = STATE(3541), - [sym_fixed_array_type] = STATE(2303), - [sym_array_type] = STATE(2303), - [sym_pointer_type] = STATE(2303), - [sym_wrong_pointer_type] = STATE(2303), - [sym_map_type] = STATE(2303), - [sym_channel_type] = STATE(2303), - [sym_shared_type] = STATE(2303), - [sym_thread_type] = STATE(2303), - [sym_atomic_type] = STATE(2303), - [sym_generic_type] = STATE(2303), - [sym_function_type] = STATE(2303), - [sym_identifier] = ACTIONS(3416), + [sym__expression] = STATE(971), + [sym__expression_without_blocks] = STATE(1086), + [sym__expression_with_blocks] = STATE(1086), + [sym_inc_expression] = STATE(1088), + [sym_dec_expression] = STATE(1088), + [sym_or_block_expression] = STATE(1088), + [sym_option_propagation_expression] = STATE(1088), + [sym_result_propagation_expression] = STATE(1088), + [sym_anon_struct_value_expression] = STATE(1025), + [sym_go_expression] = STATE(1088), + [sym_spawn_expression] = STATE(1088), + [sym_parenthesized_expression] = STATE(1088), + [sym_call_expression] = STATE(1088), + [sym_type_initializer] = STATE(1025), + [sym_function_literal] = STATE(1088), + [sym_reference_expression] = STATE(1024), + [sym_type_reference_expression] = STATE(3460), + [sym_unary_expression] = STATE(1088), + [sym_receive_expression] = STATE(1088), + [sym_binary_expression] = STATE(1088), + [sym_as_type_cast_expression] = STATE(1088), + [sym__max_group] = STATE(1088), + [sym_literal] = STATE(1078), + [sym_map_init_expression] = STATE(1025), + [sym_array_creation] = STATE(1088), + [sym_fixed_array_creation] = STATE(1088), + [sym_selector_expression] = STATE(1088), + [sym_index_expression] = STATE(1088), + [sym_slice_expression] = STATE(1088), + [sym_if_expression] = STATE(1025), + [sym_compile_time_if_expression] = STATE(1025), + [sym_is_expression] = STATE(1088), + [sym_in_expression] = STATE(1088), + [sym_enum_fetch] = STATE(1088), + [sym_match_expression] = STATE(1025), + [sym_select_expression] = STATE(1025), + [sym_lock_expression] = STATE(1025), + [sym_unsafe_expression] = STATE(1025), + [sym_sql_expression] = STATE(1025), + [sym_c_string_literal] = STATE(993), + [sym_raw_string_literal] = STATE(993), + [sym_interpreted_string_literal] = STATE(993), + [sym_mutability_modifiers] = STATE(618), + [sym_plain_type] = STATE(4090), + [sym__plain_type_without_special] = STATE(2360), + [sym_anon_struct_type] = STATE(2362), + [sym_multi_return_type] = STATE(2360), + [sym_result_type] = STATE(2360), + [sym_option_type] = STATE(2360), + [sym_qualified_type] = STATE(3460), + [sym_fixed_array_type] = STATE(2362), + [sym_array_type] = STATE(2362), + [sym_pointer_type] = STATE(2362), + [sym_wrong_pointer_type] = STATE(2362), + [sym_map_type] = STATE(2362), + [sym_channel_type] = STATE(2362), + [sym_shared_type] = STATE(2362), + [sym_thread_type] = STATE(2362), + [sym_atomic_type] = STATE(2362), + [sym_generic_type] = STATE(2362), + [sym_function_type] = STATE(2362), + [sym_identifier] = ACTIONS(493), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(309), - [anon_sym_LBRACE] = ACTIONS(3418), - [anon_sym_LPAREN] = ACTIONS(315), - [anon_sym_fn] = ACTIONS(317), - [anon_sym_PLUS] = ACTIONS(319), - [anon_sym_DASH] = ACTIONS(319), - [anon_sym_STAR] = ACTIONS(321), - [anon_sym_struct] = ACTIONS(323), + [anon_sym_DOT] = ACTIONS(501), + [anon_sym_LBRACE] = ACTIONS(2235), + [anon_sym_LPAREN] = ACTIONS(2237), + [anon_sym_fn] = ACTIONS(507), + [anon_sym_PLUS] = ACTIONS(3366), + [anon_sym_DASH] = ACTIONS(3366), + [anon_sym_STAR] = ACTIONS(3368), + [anon_sym_struct] = ACTIONS(513), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(325), - [anon_sym_go] = ACTIONS(327), - [anon_sym_spawn] = ACTIONS(329), - [anon_sym_json_DOTdecode] = ACTIONS(331), - [anon_sym_LBRACK2] = ACTIONS(333), - [anon_sym_TILDE] = ACTIONS(319), - [anon_sym_CARET] = ACTIONS(319), - [anon_sym_AMP] = ACTIONS(335), - [anon_sym_LT_DASH] = ACTIONS(337), - [sym_none] = ACTIONS(339), - [sym_true] = ACTIONS(339), - [sym_false] = ACTIONS(339), - [sym_nil] = ACTIONS(339), - [anon_sym_if] = ACTIONS(341), - [anon_sym_DOLLARif] = ACTIONS(343), - [anon_sym_match] = ACTIONS(345), - [anon_sym_select] = ACTIONS(347), - [anon_sym_lock] = ACTIONS(349), - [anon_sym_rlock] = ACTIONS(349), - [anon_sym_unsafe] = ACTIONS(351), - [anon_sym_sql] = ACTIONS(353), - [sym_int_literal] = ACTIONS(339), - [sym_float_literal] = ACTIONS(355), - [sym_rune_literal] = ACTIONS(355), - [sym_pseudo_compile_time_identifier] = ACTIONS(357), + [anon_sym_BANG] = ACTIONS(3370), + [anon_sym_go] = ACTIONS(3372), + [anon_sym_spawn] = ACTIONS(3374), + [anon_sym_json_DOTdecode] = ACTIONS(2245), + [anon_sym_LBRACK2] = ACTIONS(2247), + [anon_sym_TILDE] = ACTIONS(3366), + [anon_sym_CARET] = ACTIONS(3366), + [anon_sym_AMP] = ACTIONS(3376), + [anon_sym_LT_DASH] = ACTIONS(3378), + [sym_none] = ACTIONS(531), + [sym_true] = ACTIONS(531), + [sym_false] = ACTIONS(531), + [sym_nil] = ACTIONS(531), + [anon_sym_if] = ACTIONS(533), + [anon_sym_DOLLARif] = ACTIONS(535), + [anon_sym_match] = ACTIONS(537), + [anon_sym_select] = ACTIONS(3380), + [anon_sym_lock] = ACTIONS(3382), + [anon_sym_rlock] = ACTIONS(3382), + [anon_sym_unsafe] = ACTIONS(543), + [anon_sym_sql] = ACTIONS(545), + [sym_int_literal] = ACTIONS(531), + [sym_float_literal] = ACTIONS(2253), + [sym_rune_literal] = ACTIONS(2253), + [sym_pseudo_compile_time_identifier] = ACTIONS(547), [anon_sym_shared] = ACTIONS(83), [anon_sym_map_LBRACK] = ACTIONS(85), [anon_sym_chan] = ACTIONS(87), [anon_sym_thread] = ACTIONS(89), [anon_sym_atomic] = ACTIONS(91), - [sym___double_quote] = ACTIONS(379), - [sym___single_quote] = ACTIONS(381), - [sym___c_double_quote] = ACTIONS(383), - [sym___c_single_quote] = ACTIONS(385), - [sym___r_double_quote] = ACTIONS(387), - [sym___r_single_quote] = ACTIONS(389), + [sym___double_quote] = ACTIONS(2255), + [sym___single_quote] = ACTIONS(2257), + [sym___c_double_quote] = ACTIONS(2259), + [sym___c_single_quote] = ACTIONS(2261), + [sym___r_double_quote] = ACTIONS(2263), + [sym___r_single_quote] = ACTIONS(2265), }, [720] = { [sym_line_comment] = STATE(720), [sym_block_comment] = STATE(720), - [sym__expression] = STATE(2420), - [sym__expression_without_blocks] = STATE(2300), - [sym__expression_with_blocks] = STATE(2300), - [sym_inc_expression] = STATE(2307), - [sym_dec_expression] = STATE(2307), - [sym_or_block_expression] = STATE(2307), - [sym_option_propagation_expression] = STATE(2307), - [sym_result_propagation_expression] = STATE(2307), - [sym_anon_struct_value_expression] = STATE(2380), - [sym_go_expression] = STATE(2307), - [sym_spawn_expression] = STATE(2307), - [sym_parenthesized_expression] = STATE(2307), - [sym_call_expression] = STATE(2307), - [sym_type_initializer] = STATE(2380), - [sym_function_literal] = STATE(2307), - [sym_reference_expression] = STATE(2311), - [sym_type_reference_expression] = STATE(3541), - [sym_unary_expression] = STATE(2307), - [sym_receive_expression] = STATE(2307), - [sym_binary_expression] = STATE(2307), - [sym_as_type_cast_expression] = STATE(2307), - [sym__max_group] = STATE(2307), - [sym_literal] = STATE(2292), - [sym_map_init_expression] = STATE(2380), - [sym_array_creation] = STATE(2307), - [sym_fixed_array_creation] = STATE(2307), - [sym_selector_expression] = STATE(2307), - [sym_index_expression] = STATE(2307), - [sym_slice_expression] = STATE(2307), - [sym_if_expression] = STATE(2380), - [sym_compile_time_if_expression] = STATE(2380), - [sym_is_expression] = STATE(2307), - [sym_in_expression] = STATE(2307), - [sym_enum_fetch] = STATE(2307), - [sym_match_expression] = STATE(2380), - [sym_select_expression] = STATE(2380), - [sym_lock_expression] = STATE(2380), - [sym_unsafe_expression] = STATE(2380), - [sym_sql_expression] = STATE(2380), - [sym_c_string_literal] = STATE(2308), - [sym_raw_string_literal] = STATE(2308), - [sym_interpreted_string_literal] = STATE(2308), + [sym__expression] = STATE(2612), + [sym__expression_without_blocks] = STATE(2347), + [sym__expression_with_blocks] = STATE(2347), + [sym_inc_expression] = STATE(2379), + [sym_dec_expression] = STATE(2379), + [sym_or_block_expression] = STATE(2379), + [sym_option_propagation_expression] = STATE(2379), + [sym_result_propagation_expression] = STATE(2379), + [sym_anon_struct_value_expression] = STATE(2378), + [sym_go_expression] = STATE(2379), + [sym_spawn_expression] = STATE(2379), + [sym_parenthesized_expression] = STATE(2379), + [sym_call_expression] = STATE(2379), + [sym_type_initializer] = STATE(2378), + [sym_function_literal] = STATE(2379), + [sym_reference_expression] = STATE(2377), + [sym_type_reference_expression] = STATE(3460), + [sym_unary_expression] = STATE(2379), + [sym_receive_expression] = STATE(2379), + [sym_binary_expression] = STATE(2379), + [sym_as_type_cast_expression] = STATE(2379), + [sym__max_group] = STATE(2379), + [sym_literal] = STATE(2392), + [sym_map_init_expression] = STATE(2378), + [sym_array_creation] = STATE(2379), + [sym_fixed_array_creation] = STATE(2379), + [sym_selector_expression] = STATE(2379), + [sym_index_expression] = STATE(2379), + [sym_slice_expression] = STATE(2379), + [sym_if_expression] = STATE(2378), + [sym_compile_time_if_expression] = STATE(2378), + [sym_is_expression] = STATE(2379), + [sym_in_expression] = STATE(2379), + [sym_enum_fetch] = STATE(2379), + [sym_match_expression] = STATE(2378), + [sym_select_expression] = STATE(2378), + [sym_lock_expression] = STATE(2378), + [sym_unsafe_expression] = STATE(2378), + [sym_sql_expression] = STATE(2378), + [sym_c_string_literal] = STATE(2401), + [sym_raw_string_literal] = STATE(2401), + [sym_interpreted_string_literal] = STATE(2401), [sym_mutability_modifiers] = STATE(939), - [sym_plain_type] = STATE(4297), - [sym__plain_type_without_special] = STATE(2302), - [sym_anon_struct_type] = STATE(2303), - [sym_multi_return_type] = STATE(2302), - [sym_result_type] = STATE(2302), - [sym_option_type] = STATE(2302), - [sym_qualified_type] = STATE(3541), - [sym_fixed_array_type] = STATE(2303), - [sym_array_type] = STATE(2303), - [sym_pointer_type] = STATE(2303), - [sym_wrong_pointer_type] = STATE(2303), - [sym_map_type] = STATE(2303), - [sym_channel_type] = STATE(2303), - [sym_shared_type] = STATE(2303), - [sym_thread_type] = STATE(2303), - [sym_atomic_type] = STATE(2303), - [sym_generic_type] = STATE(2303), - [sym_function_type] = STATE(2303), - [sym_identifier] = ACTIONS(1426), + [sym_plain_type] = STATE(4160), + [sym__plain_type_without_special] = STATE(2360), + [sym_anon_struct_type] = STATE(2362), + [sym_multi_return_type] = STATE(2360), + [sym_result_type] = STATE(2360), + [sym_option_type] = STATE(2360), + [sym_qualified_type] = STATE(3460), + [sym_fixed_array_type] = STATE(2362), + [sym_array_type] = STATE(2362), + [sym_pointer_type] = STATE(2362), + [sym_wrong_pointer_type] = STATE(2362), + [sym_map_type] = STATE(2362), + [sym_channel_type] = STATE(2362), + [sym_shared_type] = STATE(2362), + [sym_thread_type] = STATE(2362), + [sym_atomic_type] = STATE(2362), + [sym_generic_type] = STATE(2362), + [sym_function_type] = STATE(2362), + [sym_identifier] = ACTIONS(1815), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1428), - [anon_sym_LBRACE] = ACTIONS(1430), - [anon_sym_LPAREN] = ACTIONS(1432), - [anon_sym_fn] = ACTIONS(1434), - [anon_sym_PLUS] = ACTIONS(1436), - [anon_sym_DASH] = ACTIONS(1436), - [anon_sym_STAR] = ACTIONS(1438), - [anon_sym_struct] = ACTIONS(1440), + [anon_sym_DOT] = ACTIONS(1430), + [anon_sym_LBRACE] = ACTIONS(1432), + [anon_sym_LPAREN] = ACTIONS(1434), + [anon_sym_fn] = ACTIONS(1436), + [anon_sym_PLUS] = ACTIONS(3090), + [anon_sym_DASH] = ACTIONS(3090), + [anon_sym_STAR] = ACTIONS(3092), + [anon_sym_struct] = ACTIONS(1442), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(1442), - [anon_sym_go] = ACTIONS(1444), - [anon_sym_spawn] = ACTIONS(1446), - [anon_sym_json_DOTdecode] = ACTIONS(1448), - [anon_sym_LBRACK2] = ACTIONS(1450), - [anon_sym_TILDE] = ACTIONS(1436), - [anon_sym_CARET] = ACTIONS(1436), - [anon_sym_AMP] = ACTIONS(1452), - [anon_sym_LT_DASH] = ACTIONS(1454), - [sym_none] = ACTIONS(1456), - [sym_true] = ACTIONS(1456), - [sym_false] = ACTIONS(1456), - [sym_nil] = ACTIONS(1456), - [anon_sym_if] = ACTIONS(1827), - [anon_sym_DOLLARif] = ACTIONS(1460), - [anon_sym_match] = ACTIONS(1462), - [anon_sym_select] = ACTIONS(1464), - [anon_sym_lock] = ACTIONS(1466), - [anon_sym_rlock] = ACTIONS(1466), - [anon_sym_unsafe] = ACTIONS(1833), - [anon_sym_sql] = ACTIONS(1470), - [sym_int_literal] = ACTIONS(1456), - [sym_float_literal] = ACTIONS(1472), - [sym_rune_literal] = ACTIONS(1472), - [sym_pseudo_compile_time_identifier] = ACTIONS(1474), + [anon_sym_BANG] = ACTIONS(3094), + [anon_sym_go] = ACTIONS(3096), + [anon_sym_spawn] = ACTIONS(3098), + [anon_sym_json_DOTdecode] = ACTIONS(1450), + [anon_sym_LBRACK2] = ACTIONS(1827), + [anon_sym_TILDE] = ACTIONS(3090), + [anon_sym_CARET] = ACTIONS(3090), + [anon_sym_AMP] = ACTIONS(3100), + [anon_sym_LT_DASH] = ACTIONS(3102), + [sym_none] = ACTIONS(1458), + [sym_true] = ACTIONS(1458), + [sym_false] = ACTIONS(1458), + [sym_nil] = ACTIONS(1458), + [anon_sym_if] = ACTIONS(1833), + [anon_sym_DOLLARif] = ACTIONS(1462), + [anon_sym_match] = ACTIONS(1464), + [anon_sym_select] = ACTIONS(3104), + [anon_sym_lock] = ACTIONS(3106), + [anon_sym_rlock] = ACTIONS(3106), + [anon_sym_unsafe] = ACTIONS(1839), + [anon_sym_sql] = ACTIONS(1472), + [sym_int_literal] = ACTIONS(1458), + [sym_float_literal] = ACTIONS(1474), + [sym_rune_literal] = ACTIONS(1474), + [sym_pseudo_compile_time_identifier] = ACTIONS(1476), [anon_sym_shared] = ACTIONS(83), [anon_sym_map_LBRACK] = ACTIONS(85), [anon_sym_chan] = ACTIONS(87), [anon_sym_thread] = ACTIONS(89), [anon_sym_atomic] = ACTIONS(91), - [sym___double_quote] = ACTIONS(1478), - [sym___single_quote] = ACTIONS(1480), - [sym___c_double_quote] = ACTIONS(1482), - [sym___c_single_quote] = ACTIONS(1484), - [sym___r_double_quote] = ACTIONS(1486), - [sym___r_single_quote] = ACTIONS(1488), + [sym___double_quote] = ACTIONS(1480), + [sym___single_quote] = ACTIONS(1482), + [sym___c_double_quote] = ACTIONS(1484), + [sym___c_single_quote] = ACTIONS(1486), + [sym___r_double_quote] = ACTIONS(1488), + [sym___r_single_quote] = ACTIONS(1490), }, [721] = { [sym_line_comment] = STATE(721), [sym_block_comment] = STATE(721), - [sym__expression] = STATE(976), - [sym__expression_without_blocks] = STATE(1017), - [sym__expression_with_blocks] = STATE(1017), - [sym_inc_expression] = STATE(1018), - [sym_dec_expression] = STATE(1018), - [sym_or_block_expression] = STATE(1018), - [sym_option_propagation_expression] = STATE(1018), - [sym_result_propagation_expression] = STATE(1018), - [sym_anon_struct_value_expression] = STATE(993), - [sym_go_expression] = STATE(1018), - [sym_spawn_expression] = STATE(1018), - [sym_parenthesized_expression] = STATE(1018), - [sym_call_expression] = STATE(1018), - [sym_type_initializer] = STATE(993), - [sym_function_literal] = STATE(1018), - [sym_reference_expression] = STATE(1046), - [sym_type_reference_expression] = STATE(3541), - [sym_unary_expression] = STATE(1018), - [sym_receive_expression] = STATE(1018), - [sym_binary_expression] = STATE(1018), - [sym_as_type_cast_expression] = STATE(1018), - [sym__max_group] = STATE(1018), - [sym_literal] = STATE(1014), - [sym_map_init_expression] = STATE(993), - [sym_array_creation] = STATE(1018), - [sym_fixed_array_creation] = STATE(1018), - [sym_selector_expression] = STATE(1018), - [sym_index_expression] = STATE(1018), - [sym_slice_expression] = STATE(1018), - [sym_if_expression] = STATE(993), - [sym_compile_time_if_expression] = STATE(993), - [sym_is_expression] = STATE(1018), - [sym_in_expression] = STATE(1018), - [sym_enum_fetch] = STATE(1018), - [sym_match_expression] = STATE(993), - [sym_select_expression] = STATE(993), - [sym_lock_expression] = STATE(993), - [sym_unsafe_expression] = STATE(993), - [sym_sql_expression] = STATE(993), - [sym_c_string_literal] = STATE(1006), - [sym_raw_string_literal] = STATE(1006), - [sym_interpreted_string_literal] = STATE(1006), - [sym_mutability_modifiers] = STATE(691), - [sym_plain_type] = STATE(4296), - [sym__plain_type_without_special] = STATE(2302), - [sym_anon_struct_type] = STATE(2303), - [sym_multi_return_type] = STATE(2302), - [sym_result_type] = STATE(2302), - [sym_option_type] = STATE(2302), - [sym_qualified_type] = STATE(3541), - [sym_fixed_array_type] = STATE(2303), - [sym_array_type] = STATE(2303), - [sym_pointer_type] = STATE(2303), - [sym_wrong_pointer_type] = STATE(2303), - [sym_map_type] = STATE(2303), - [sym_channel_type] = STATE(2303), - [sym_shared_type] = STATE(2303), - [sym_thread_type] = STATE(2303), - [sym_atomic_type] = STATE(2303), - [sym_generic_type] = STATE(2303), - [sym_function_type] = STATE(2303), - [sym_identifier] = ACTIONS(493), + [sym__expression] = STATE(2265), + [sym__expression_without_blocks] = STATE(2347), + [sym__expression_with_blocks] = STATE(2347), + [sym_inc_expression] = STATE(2379), + [sym_dec_expression] = STATE(2379), + [sym_or_block_expression] = STATE(2379), + [sym_option_propagation_expression] = STATE(2379), + [sym_result_propagation_expression] = STATE(2379), + [sym_anon_struct_value_expression] = STATE(2378), + [sym_go_expression] = STATE(2379), + [sym_spawn_expression] = STATE(2379), + [sym_parenthesized_expression] = STATE(2379), + [sym_call_expression] = STATE(2379), + [sym_type_initializer] = STATE(2378), + [sym_function_literal] = STATE(2379), + [sym_reference_expression] = STATE(2377), + [sym_type_reference_expression] = STATE(3460), + [sym_unary_expression] = STATE(2379), + [sym_receive_expression] = STATE(2379), + [sym_binary_expression] = STATE(2379), + [sym_as_type_cast_expression] = STATE(2379), + [sym__max_group] = STATE(2379), + [sym_literal] = STATE(2392), + [sym_map_init_expression] = STATE(2378), + [sym_array_creation] = STATE(2379), + [sym_fixed_array_creation] = STATE(2379), + [sym_selector_expression] = STATE(2379), + [sym_index_expression] = STATE(2379), + [sym_slice_expression] = STATE(2379), + [sym_if_expression] = STATE(2378), + [sym_compile_time_if_expression] = STATE(2378), + [sym_is_expression] = STATE(2379), + [sym_in_expression] = STATE(2379), + [sym_enum_fetch] = STATE(2379), + [sym_match_expression] = STATE(2378), + [sym_select_expression] = STATE(2378), + [sym_lock_expression] = STATE(2378), + [sym_unsafe_expression] = STATE(2378), + [sym_sql_expression] = STATE(2378), + [sym_c_string_literal] = STATE(2401), + [sym_raw_string_literal] = STATE(2401), + [sym_interpreted_string_literal] = STATE(2401), + [sym_mutability_modifiers] = STATE(939), + [sym_plain_type] = STATE(4160), + [sym__plain_type_without_special] = STATE(2360), + [sym_anon_struct_type] = STATE(2362), + [sym_multi_return_type] = STATE(2360), + [sym_result_type] = STATE(2360), + [sym_option_type] = STATE(2360), + [sym_qualified_type] = STATE(3460), + [sym_fixed_array_type] = STATE(2362), + [sym_array_type] = STATE(2362), + [sym_pointer_type] = STATE(2362), + [sym_wrong_pointer_type] = STATE(2362), + [sym_map_type] = STATE(2362), + [sym_channel_type] = STATE(2362), + [sym_shared_type] = STATE(2362), + [sym_thread_type] = STATE(2362), + [sym_atomic_type] = STATE(2362), + [sym_generic_type] = STATE(2362), + [sym_function_type] = STATE(2362), + [sym_identifier] = ACTIONS(2477), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(501), - [anon_sym_LBRACE] = ACTIONS(2319), - [anon_sym_LPAREN] = ACTIONS(2321), - [anon_sym_fn] = ACTIONS(507), - [anon_sym_PLUS] = ACTIONS(3360), - [anon_sym_DASH] = ACTIONS(3360), - [anon_sym_STAR] = ACTIONS(3362), - [anon_sym_struct] = ACTIONS(513), + [anon_sym_DOT] = ACTIONS(1430), + [anon_sym_LBRACE] = ACTIONS(1432), + [anon_sym_LPAREN] = ACTIONS(1434), + [anon_sym_fn] = ACTIONS(1436), + [anon_sym_PLUS] = ACTIONS(2271), + [anon_sym_DASH] = ACTIONS(2271), + [anon_sym_STAR] = ACTIONS(3354), + [anon_sym_struct] = ACTIONS(1442), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(3364), - [anon_sym_go] = ACTIONS(3366), - [anon_sym_spawn] = ACTIONS(3368), - [anon_sym_json_DOTdecode] = ACTIONS(2329), - [anon_sym_LBRACK2] = ACTIONS(2331), - [anon_sym_TILDE] = ACTIONS(3360), - [anon_sym_CARET] = ACTIONS(3360), - [anon_sym_AMP] = ACTIONS(3370), - [anon_sym_LT_DASH] = ACTIONS(3372), - [sym_none] = ACTIONS(531), - [sym_true] = ACTIONS(531), - [sym_false] = ACTIONS(531), - [sym_nil] = ACTIONS(531), - [anon_sym_if] = ACTIONS(533), - [anon_sym_DOLLARif] = ACTIONS(535), - [anon_sym_match] = ACTIONS(537), - [anon_sym_select] = ACTIONS(3374), - [anon_sym_lock] = ACTIONS(3376), - [anon_sym_rlock] = ACTIONS(3376), - [anon_sym_unsafe] = ACTIONS(543), - [anon_sym_sql] = ACTIONS(545), - [sym_int_literal] = ACTIONS(531), - [sym_float_literal] = ACTIONS(2337), - [sym_rune_literal] = ACTIONS(2337), - [sym_pseudo_compile_time_identifier] = ACTIONS(547), + [anon_sym_BANG] = ACTIONS(3356), + [anon_sym_go] = ACTIONS(2277), + [anon_sym_spawn] = ACTIONS(2279), + [anon_sym_json_DOTdecode] = ACTIONS(1450), + [anon_sym_LBRACK2] = ACTIONS(1452), + [anon_sym_TILDE] = ACTIONS(2271), + [anon_sym_CARET] = ACTIONS(2271), + [anon_sym_AMP] = ACTIONS(3358), + [anon_sym_LT_DASH] = ACTIONS(2283), + [sym_none] = ACTIONS(1458), + [sym_true] = ACTIONS(1458), + [sym_false] = ACTIONS(1458), + [sym_nil] = ACTIONS(1458), + [anon_sym_if] = ACTIONS(1833), + [anon_sym_DOLLARif] = ACTIONS(1462), + [anon_sym_match] = ACTIONS(1464), + [anon_sym_select] = ACTIONS(1466), + [anon_sym_lock] = ACTIONS(1468), + [anon_sym_rlock] = ACTIONS(1468), + [anon_sym_unsafe] = ACTIONS(1839), + [anon_sym_sql] = ACTIONS(1472), + [sym_int_literal] = ACTIONS(1458), + [sym_float_literal] = ACTIONS(1474), + [sym_rune_literal] = ACTIONS(1474), + [sym_pseudo_compile_time_identifier] = ACTIONS(1476), [anon_sym_shared] = ACTIONS(83), [anon_sym_map_LBRACK] = ACTIONS(85), [anon_sym_chan] = ACTIONS(87), [anon_sym_thread] = ACTIONS(89), [anon_sym_atomic] = ACTIONS(91), - [sym___double_quote] = ACTIONS(2339), - [sym___single_quote] = ACTIONS(2341), - [sym___c_double_quote] = ACTIONS(2343), - [sym___c_single_quote] = ACTIONS(2345), - [sym___r_double_quote] = ACTIONS(2347), - [sym___r_single_quote] = ACTIONS(2349), + [sym___double_quote] = ACTIONS(1480), + [sym___single_quote] = ACTIONS(1482), + [sym___c_double_quote] = ACTIONS(1484), + [sym___c_single_quote] = ACTIONS(1486), + [sym___r_double_quote] = ACTIONS(1488), + [sym___r_single_quote] = ACTIONS(1490), }, [722] = { [sym_line_comment] = STATE(722), [sym_block_comment] = STATE(722), - [sym__expression] = STATE(1877), - [sym__expression_without_blocks] = STATE(2044), - [sym__expression_with_blocks] = STATE(2044), - [sym_inc_expression] = STATE(2045), - [sym_dec_expression] = STATE(2045), - [sym_or_block_expression] = STATE(2045), - [sym_option_propagation_expression] = STATE(2045), - [sym_result_propagation_expression] = STATE(2045), - [sym_anon_struct_value_expression] = STATE(2046), - [sym_go_expression] = STATE(2045), - [sym_spawn_expression] = STATE(2045), - [sym_parenthesized_expression] = STATE(2045), - [sym_call_expression] = STATE(2045), - [sym_type_initializer] = STATE(2046), - [sym_function_literal] = STATE(2045), - [sym_reference_expression] = STATE(1912), - [sym_type_reference_expression] = STATE(3541), - [sym_unary_expression] = STATE(2045), - [sym_receive_expression] = STATE(2045), - [sym_binary_expression] = STATE(2045), - [sym_as_type_cast_expression] = STATE(2045), - [sym__max_group] = STATE(2045), - [sym_literal] = STATE(2043), - [sym_map_init_expression] = STATE(2046), - [sym_array_creation] = STATE(2045), - [sym_fixed_array_creation] = STATE(2045), - [sym_selector_expression] = STATE(2045), - [sym_index_expression] = STATE(2045), - [sym_slice_expression] = STATE(2045), - [sym_if_expression] = STATE(2046), - [sym_compile_time_if_expression] = STATE(2046), - [sym_is_expression] = STATE(2045), - [sym_in_expression] = STATE(2045), - [sym_enum_fetch] = STATE(2045), - [sym_match_expression] = STATE(2046), - [sym_select_expression] = STATE(2046), - [sym_lock_expression] = STATE(2046), - [sym_unsafe_expression] = STATE(2046), - [sym_sql_expression] = STATE(2046), - [sym_c_string_literal] = STATE(2041), - [sym_raw_string_literal] = STATE(2041), - [sym_interpreted_string_literal] = STATE(2041), - [sym_mutability_modifiers] = STATE(689), - [sym_plain_type] = STATE(4052), - [sym__plain_type_without_special] = STATE(2302), - [sym_anon_struct_type] = STATE(2303), - [sym_multi_return_type] = STATE(2302), - [sym_result_type] = STATE(2302), - [sym_option_type] = STATE(2302), - [sym_qualified_type] = STATE(3541), - [sym_fixed_array_type] = STATE(2303), - [sym_array_type] = STATE(2303), - [sym_pointer_type] = STATE(2303), - [sym_wrong_pointer_type] = STATE(2303), - [sym_map_type] = STATE(2303), - [sym_channel_type] = STATE(2303), - [sym_shared_type] = STATE(2303), - [sym_thread_type] = STATE(2303), - [sym_atomic_type] = STATE(2303), - [sym_generic_type] = STATE(2303), - [sym_function_type] = STATE(2303), - [sym_identifier] = ACTIONS(1641), + [sym__expression] = STATE(2776), + [sym__expression_without_blocks] = STATE(2347), + [sym__expression_with_blocks] = STATE(2347), + [sym_inc_expression] = STATE(2379), + [sym_dec_expression] = STATE(2379), + [sym_or_block_expression] = STATE(2379), + [sym_option_propagation_expression] = STATE(2379), + [sym_result_propagation_expression] = STATE(2379), + [sym_anon_struct_value_expression] = STATE(2378), + [sym_go_expression] = STATE(2379), + [sym_spawn_expression] = STATE(2379), + [sym_parenthesized_expression] = STATE(2379), + [sym_call_expression] = STATE(2379), + [sym_type_initializer] = STATE(2378), + [sym_function_literal] = STATE(2379), + [sym_reference_expression] = STATE(2377), + [sym_type_reference_expression] = STATE(3460), + [sym_unary_expression] = STATE(2379), + [sym_receive_expression] = STATE(2379), + [sym_binary_expression] = STATE(2379), + [sym_as_type_cast_expression] = STATE(2379), + [sym__max_group] = STATE(2379), + [sym_literal] = STATE(2392), + [sym_map_init_expression] = STATE(2378), + [sym_array_creation] = STATE(2379), + [sym_fixed_array_creation] = STATE(2379), + [sym_selector_expression] = STATE(2379), + [sym_index_expression] = STATE(2379), + [sym_slice_expression] = STATE(2379), + [sym_if_expression] = STATE(2378), + [sym_compile_time_if_expression] = STATE(2378), + [sym_is_expression] = STATE(2379), + [sym_in_expression] = STATE(2379), + [sym_enum_fetch] = STATE(2379), + [sym_match_expression] = STATE(2378), + [sym_select_expression] = STATE(2378), + [sym_lock_expression] = STATE(2378), + [sym_unsafe_expression] = STATE(2378), + [sym_sql_expression] = STATE(2378), + [sym_c_string_literal] = STATE(2401), + [sym_raw_string_literal] = STATE(2401), + [sym_interpreted_string_literal] = STATE(2401), + [sym_mutability_modifiers] = STATE(939), + [sym_plain_type] = STATE(4160), + [sym__plain_type_without_special] = STATE(2360), + [sym_anon_struct_type] = STATE(2362), + [sym_multi_return_type] = STATE(2360), + [sym_result_type] = STATE(2360), + [sym_option_type] = STATE(2360), + [sym_qualified_type] = STATE(3460), + [sym_fixed_array_type] = STATE(2362), + [sym_array_type] = STATE(2362), + [sym_pointer_type] = STATE(2362), + [sym_wrong_pointer_type] = STATE(2362), + [sym_map_type] = STATE(2362), + [sym_channel_type] = STATE(2362), + [sym_shared_type] = STATE(2362), + [sym_thread_type] = STATE(2362), + [sym_atomic_type] = STATE(2362), + [sym_generic_type] = STATE(2362), + [sym_function_type] = STATE(2362), + [sym_identifier] = ACTIONS(2477), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(811), - [anon_sym_LBRACE] = ACTIONS(3144), - [anon_sym_LPAREN] = ACTIONS(815), - [anon_sym_fn] = ACTIONS(817), - [anon_sym_PLUS] = ACTIONS(819), - [anon_sym_DASH] = ACTIONS(819), - [anon_sym_STAR] = ACTIONS(821), - [anon_sym_struct] = ACTIONS(823), + [anon_sym_DOT] = ACTIONS(1430), + [anon_sym_LBRACE] = ACTIONS(1432), + [anon_sym_LPAREN] = ACTIONS(1434), + [anon_sym_fn] = ACTIONS(1436), + [anon_sym_PLUS] = ACTIONS(2271), + [anon_sym_DASH] = ACTIONS(2271), + [anon_sym_STAR] = ACTIONS(3354), + [anon_sym_struct] = ACTIONS(1442), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(827), - [anon_sym_go] = ACTIONS(829), - [anon_sym_spawn] = ACTIONS(831), - [anon_sym_json_DOTdecode] = ACTIONS(833), - [anon_sym_LBRACK2] = ACTIONS(835), - [anon_sym_TILDE] = ACTIONS(819), - [anon_sym_CARET] = ACTIONS(819), - [anon_sym_AMP] = ACTIONS(837), - [anon_sym_LT_DASH] = ACTIONS(839), - [sym_none] = ACTIONS(841), - [sym_true] = ACTIONS(841), - [sym_false] = ACTIONS(841), - [sym_nil] = ACTIONS(841), - [anon_sym_if] = ACTIONS(843), - [anon_sym_DOLLARif] = ACTIONS(845), - [anon_sym_match] = ACTIONS(847), - [anon_sym_select] = ACTIONS(849), - [anon_sym_lock] = ACTIONS(851), - [anon_sym_rlock] = ACTIONS(851), - [anon_sym_unsafe] = ACTIONS(853), - [anon_sym_sql] = ACTIONS(855), - [sym_int_literal] = ACTIONS(841), - [sym_float_literal] = ACTIONS(857), - [sym_rune_literal] = ACTIONS(857), - [sym_pseudo_compile_time_identifier] = ACTIONS(859), + [anon_sym_BANG] = ACTIONS(3356), + [anon_sym_go] = ACTIONS(2277), + [anon_sym_spawn] = ACTIONS(2279), + [anon_sym_json_DOTdecode] = ACTIONS(1450), + [anon_sym_LBRACK2] = ACTIONS(1452), + [anon_sym_TILDE] = ACTIONS(2271), + [anon_sym_CARET] = ACTIONS(2271), + [anon_sym_AMP] = ACTIONS(3358), + [anon_sym_LT_DASH] = ACTIONS(2283), + [sym_none] = ACTIONS(1458), + [sym_true] = ACTIONS(1458), + [sym_false] = ACTIONS(1458), + [sym_nil] = ACTIONS(1458), + [anon_sym_if] = ACTIONS(1833), + [anon_sym_DOLLARif] = ACTIONS(1462), + [anon_sym_match] = ACTIONS(1464), + [anon_sym_select] = ACTIONS(1466), + [anon_sym_lock] = ACTIONS(1468), + [anon_sym_rlock] = ACTIONS(1468), + [anon_sym_unsafe] = ACTIONS(1839), + [anon_sym_sql] = ACTIONS(1472), + [sym_int_literal] = ACTIONS(1458), + [sym_float_literal] = ACTIONS(1474), + [sym_rune_literal] = ACTIONS(1474), + [sym_pseudo_compile_time_identifier] = ACTIONS(1476), [anon_sym_shared] = ACTIONS(83), [anon_sym_map_LBRACK] = ACTIONS(85), [anon_sym_chan] = ACTIONS(87), [anon_sym_thread] = ACTIONS(89), [anon_sym_atomic] = ACTIONS(91), - [sym___double_quote] = ACTIONS(861), - [sym___single_quote] = ACTIONS(863), - [sym___c_double_quote] = ACTIONS(865), - [sym___c_single_quote] = ACTIONS(867), - [sym___r_double_quote] = ACTIONS(869), - [sym___r_single_quote] = ACTIONS(871), + [sym___double_quote] = ACTIONS(1480), + [sym___single_quote] = ACTIONS(1482), + [sym___c_double_quote] = ACTIONS(1484), + [sym___c_single_quote] = ACTIONS(1486), + [sym___r_double_quote] = ACTIONS(1488), + [sym___r_single_quote] = ACTIONS(1490), }, [723] = { [sym_line_comment] = STATE(723), [sym_block_comment] = STATE(723), - [sym__expression] = STATE(2422), - [sym__expression_without_blocks] = STATE(2300), - [sym__expression_with_blocks] = STATE(2300), - [sym_inc_expression] = STATE(2307), - [sym_dec_expression] = STATE(2307), - [sym_or_block_expression] = STATE(2307), - [sym_option_propagation_expression] = STATE(2307), - [sym_result_propagation_expression] = STATE(2307), - [sym_anon_struct_value_expression] = STATE(2380), - [sym_go_expression] = STATE(2307), - [sym_spawn_expression] = STATE(2307), - [sym_parenthesized_expression] = STATE(2307), - [sym_call_expression] = STATE(2307), - [sym_type_initializer] = STATE(2380), - [sym_function_literal] = STATE(2307), - [sym_reference_expression] = STATE(2311), - [sym_type_reference_expression] = STATE(3541), - [sym_unary_expression] = STATE(2307), - [sym_receive_expression] = STATE(2307), - [sym_binary_expression] = STATE(2307), - [sym_as_type_cast_expression] = STATE(2307), - [sym__max_group] = STATE(2307), - [sym_literal] = STATE(2292), - [sym_map_init_expression] = STATE(2380), - [sym_array_creation] = STATE(2307), - [sym_fixed_array_creation] = STATE(2307), - [sym_selector_expression] = STATE(2307), - [sym_index_expression] = STATE(2307), - [sym_slice_expression] = STATE(2307), - [sym_if_expression] = STATE(2380), - [sym_compile_time_if_expression] = STATE(2380), - [sym_is_expression] = STATE(2307), - [sym_in_expression] = STATE(2307), - [sym_enum_fetch] = STATE(2307), - [sym_match_expression] = STATE(2380), - [sym_select_expression] = STATE(2380), - [sym_lock_expression] = STATE(2380), - [sym_unsafe_expression] = STATE(2380), - [sym_sql_expression] = STATE(2380), - [sym_c_string_literal] = STATE(2308), - [sym_raw_string_literal] = STATE(2308), - [sym_interpreted_string_literal] = STATE(2308), - [sym_mutability_modifiers] = STATE(939), - [sym_plain_type] = STATE(4297), - [sym__plain_type_without_special] = STATE(2302), - [sym_anon_struct_type] = STATE(2303), - [sym_multi_return_type] = STATE(2302), - [sym_result_type] = STATE(2302), - [sym_option_type] = STATE(2302), - [sym_qualified_type] = STATE(3541), - [sym_fixed_array_type] = STATE(2303), - [sym_array_type] = STATE(2303), - [sym_pointer_type] = STATE(2303), - [sym_wrong_pointer_type] = STATE(2303), - [sym_map_type] = STATE(2303), - [sym_channel_type] = STATE(2303), - [sym_shared_type] = STATE(2303), - [sym_thread_type] = STATE(2303), - [sym_atomic_type] = STATE(2303), - [sym_generic_type] = STATE(2303), - [sym_function_type] = STATE(2303), - [sym_identifier] = ACTIONS(1426), + [sym__expression] = STATE(974), + [sym__expression_without_blocks] = STATE(1086), + [sym__expression_with_blocks] = STATE(1086), + [sym_inc_expression] = STATE(1088), + [sym_dec_expression] = STATE(1088), + [sym_or_block_expression] = STATE(1088), + [sym_option_propagation_expression] = STATE(1088), + [sym_result_propagation_expression] = STATE(1088), + [sym_anon_struct_value_expression] = STATE(1025), + [sym_go_expression] = STATE(1088), + [sym_spawn_expression] = STATE(1088), + [sym_parenthesized_expression] = STATE(1088), + [sym_call_expression] = STATE(1088), + [sym_type_initializer] = STATE(1025), + [sym_function_literal] = STATE(1088), + [sym_reference_expression] = STATE(1024), + [sym_type_reference_expression] = STATE(3460), + [sym_unary_expression] = STATE(1088), + [sym_receive_expression] = STATE(1088), + [sym_binary_expression] = STATE(1088), + [sym_as_type_cast_expression] = STATE(1088), + [sym__max_group] = STATE(1088), + [sym_literal] = STATE(1078), + [sym_map_init_expression] = STATE(1025), + [sym_array_creation] = STATE(1088), + [sym_fixed_array_creation] = STATE(1088), + [sym_selector_expression] = STATE(1088), + [sym_index_expression] = STATE(1088), + [sym_slice_expression] = STATE(1088), + [sym_if_expression] = STATE(1025), + [sym_compile_time_if_expression] = STATE(1025), + [sym_is_expression] = STATE(1088), + [sym_in_expression] = STATE(1088), + [sym_enum_fetch] = STATE(1088), + [sym_match_expression] = STATE(1025), + [sym_select_expression] = STATE(1025), + [sym_lock_expression] = STATE(1025), + [sym_unsafe_expression] = STATE(1025), + [sym_sql_expression] = STATE(1025), + [sym_c_string_literal] = STATE(993), + [sym_raw_string_literal] = STATE(993), + [sym_interpreted_string_literal] = STATE(993), + [sym_mutability_modifiers] = STATE(618), + [sym_plain_type] = STATE(4090), + [sym__plain_type_without_special] = STATE(2360), + [sym_anon_struct_type] = STATE(2362), + [sym_multi_return_type] = STATE(2360), + [sym_result_type] = STATE(2360), + [sym_option_type] = STATE(2360), + [sym_qualified_type] = STATE(3460), + [sym_fixed_array_type] = STATE(2362), + [sym_array_type] = STATE(2362), + [sym_pointer_type] = STATE(2362), + [sym_wrong_pointer_type] = STATE(2362), + [sym_map_type] = STATE(2362), + [sym_channel_type] = STATE(2362), + [sym_shared_type] = STATE(2362), + [sym_thread_type] = STATE(2362), + [sym_atomic_type] = STATE(2362), + [sym_generic_type] = STATE(2362), + [sym_function_type] = STATE(2362), + [sym_identifier] = ACTIONS(493), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1428), - [anon_sym_LBRACE] = ACTIONS(1430), - [anon_sym_LPAREN] = ACTIONS(1432), - [anon_sym_fn] = ACTIONS(1434), - [anon_sym_PLUS] = ACTIONS(1436), - [anon_sym_DASH] = ACTIONS(1436), - [anon_sym_STAR] = ACTIONS(1438), - [anon_sym_struct] = ACTIONS(1440), + [anon_sym_DOT] = ACTIONS(501), + [anon_sym_LBRACE] = ACTIONS(2235), + [anon_sym_LPAREN] = ACTIONS(2237), + [anon_sym_fn] = ACTIONS(507), + [anon_sym_PLUS] = ACTIONS(3366), + [anon_sym_DASH] = ACTIONS(3366), + [anon_sym_STAR] = ACTIONS(3368), + [anon_sym_struct] = ACTIONS(513), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(1442), - [anon_sym_go] = ACTIONS(1444), - [anon_sym_spawn] = ACTIONS(1446), - [anon_sym_json_DOTdecode] = ACTIONS(1448), - [anon_sym_LBRACK2] = ACTIONS(1450), - [anon_sym_TILDE] = ACTIONS(1436), - [anon_sym_CARET] = ACTIONS(1436), - [anon_sym_AMP] = ACTIONS(1452), - [anon_sym_LT_DASH] = ACTIONS(1454), - [sym_none] = ACTIONS(1456), - [sym_true] = ACTIONS(1456), - [sym_false] = ACTIONS(1456), - [sym_nil] = ACTIONS(1456), - [anon_sym_if] = ACTIONS(1827), - [anon_sym_DOLLARif] = ACTIONS(1460), - [anon_sym_match] = ACTIONS(1462), - [anon_sym_select] = ACTIONS(1464), - [anon_sym_lock] = ACTIONS(1466), - [anon_sym_rlock] = ACTIONS(1466), - [anon_sym_unsafe] = ACTIONS(1833), - [anon_sym_sql] = ACTIONS(1470), - [sym_int_literal] = ACTIONS(1456), - [sym_float_literal] = ACTIONS(1472), - [sym_rune_literal] = ACTIONS(1472), - [sym_pseudo_compile_time_identifier] = ACTIONS(1474), + [anon_sym_BANG] = ACTIONS(3370), + [anon_sym_go] = ACTIONS(3372), + [anon_sym_spawn] = ACTIONS(3374), + [anon_sym_json_DOTdecode] = ACTIONS(2245), + [anon_sym_LBRACK2] = ACTIONS(2247), + [anon_sym_TILDE] = ACTIONS(3366), + [anon_sym_CARET] = ACTIONS(3366), + [anon_sym_AMP] = ACTIONS(3376), + [anon_sym_LT_DASH] = ACTIONS(3378), + [sym_none] = ACTIONS(531), + [sym_true] = ACTIONS(531), + [sym_false] = ACTIONS(531), + [sym_nil] = ACTIONS(531), + [anon_sym_if] = ACTIONS(533), + [anon_sym_DOLLARif] = ACTIONS(535), + [anon_sym_match] = ACTIONS(537), + [anon_sym_select] = ACTIONS(3380), + [anon_sym_lock] = ACTIONS(3382), + [anon_sym_rlock] = ACTIONS(3382), + [anon_sym_unsafe] = ACTIONS(543), + [anon_sym_sql] = ACTIONS(545), + [sym_int_literal] = ACTIONS(531), + [sym_float_literal] = ACTIONS(2253), + [sym_rune_literal] = ACTIONS(2253), + [sym_pseudo_compile_time_identifier] = ACTIONS(547), [anon_sym_shared] = ACTIONS(83), [anon_sym_map_LBRACK] = ACTIONS(85), [anon_sym_chan] = ACTIONS(87), [anon_sym_thread] = ACTIONS(89), [anon_sym_atomic] = ACTIONS(91), - [sym___double_quote] = ACTIONS(1478), - [sym___single_quote] = ACTIONS(1480), - [sym___c_double_quote] = ACTIONS(1482), - [sym___c_single_quote] = ACTIONS(1484), - [sym___r_double_quote] = ACTIONS(1486), - [sym___r_single_quote] = ACTIONS(1488), + [sym___double_quote] = ACTIONS(2255), + [sym___single_quote] = ACTIONS(2257), + [sym___c_double_quote] = ACTIONS(2259), + [sym___c_single_quote] = ACTIONS(2261), + [sym___r_double_quote] = ACTIONS(2263), + [sym___r_single_quote] = ACTIONS(2265), }, [724] = { [sym_line_comment] = STATE(724), [sym_block_comment] = STATE(724), - [sym__expression] = STATE(2694), - [sym__expression_without_blocks] = STATE(2300), - [sym__expression_with_blocks] = STATE(2300), - [sym_inc_expression] = STATE(2307), - [sym_dec_expression] = STATE(2307), - [sym_or_block_expression] = STATE(2307), - [sym_option_propagation_expression] = STATE(2307), - [sym_result_propagation_expression] = STATE(2307), - [sym_anon_struct_value_expression] = STATE(2380), - [sym_go_expression] = STATE(2307), - [sym_spawn_expression] = STATE(2307), - [sym_parenthesized_expression] = STATE(2307), - [sym_call_expression] = STATE(2307), - [sym_type_initializer] = STATE(2380), - [sym_function_literal] = STATE(2307), - [sym_reference_expression] = STATE(2311), - [sym_type_reference_expression] = STATE(3541), - [sym_unary_expression] = STATE(2307), - [sym_receive_expression] = STATE(2307), - [sym_binary_expression] = STATE(2307), - [sym_as_type_cast_expression] = STATE(2307), - [sym__max_group] = STATE(2307), - [sym_literal] = STATE(2292), - [sym_map_init_expression] = STATE(2380), - [sym_array_creation] = STATE(2307), - [sym_fixed_array_creation] = STATE(2307), - [sym_selector_expression] = STATE(2307), - [sym_index_expression] = STATE(2307), - [sym_slice_expression] = STATE(2307), - [sym_if_expression] = STATE(2380), - [sym_compile_time_if_expression] = STATE(2380), - [sym_is_expression] = STATE(2307), - [sym_in_expression] = STATE(2307), - [sym_enum_fetch] = STATE(2307), - [sym_match_expression] = STATE(2380), - [sym_select_expression] = STATE(2380), - [sym_lock_expression] = STATE(2380), - [sym_unsafe_expression] = STATE(2380), - [sym_sql_expression] = STATE(2380), - [sym_c_string_literal] = STATE(2308), - [sym_raw_string_literal] = STATE(2308), - [sym_interpreted_string_literal] = STATE(2308), + [sym__expression] = STATE(2830), + [sym__expression_without_blocks] = STATE(2347), + [sym__expression_with_blocks] = STATE(2347), + [sym_inc_expression] = STATE(2379), + [sym_dec_expression] = STATE(2379), + [sym_or_block_expression] = STATE(2379), + [sym_option_propagation_expression] = STATE(2379), + [sym_result_propagation_expression] = STATE(2379), + [sym_anon_struct_value_expression] = STATE(2378), + [sym_go_expression] = STATE(2379), + [sym_spawn_expression] = STATE(2379), + [sym_parenthesized_expression] = STATE(2379), + [sym_call_expression] = STATE(2379), + [sym_type_initializer] = STATE(2378), + [sym_function_literal] = STATE(2379), + [sym_reference_expression] = STATE(2940), + [sym_type_reference_expression] = STATE(3460), + [sym_unary_expression] = STATE(2379), + [sym_receive_expression] = STATE(2379), + [sym_binary_expression] = STATE(2379), + [sym_as_type_cast_expression] = STATE(2379), + [sym__max_group] = STATE(2379), + [sym_literal] = STATE(2392), + [sym_map_init_expression] = STATE(2378), + [sym_array_creation] = STATE(2379), + [sym_fixed_array_creation] = STATE(2379), + [sym_selector_expression] = STATE(2908), + [sym_index_expression] = STATE(2379), + [sym_slice_expression] = STATE(2379), + [sym_if_expression] = STATE(2378), + [sym_compile_time_if_expression] = STATE(2378), + [sym_is_expression] = STATE(2379), + [sym_in_expression] = STATE(2379), + [sym_enum_fetch] = STATE(2379), + [sym_match_expression] = STATE(2378), + [sym_select_expression] = STATE(2378), + [sym_lock_expression] = STATE(2378), + [sym_unsafe_expression] = STATE(2378), + [sym_sql_expression] = STATE(2378), + [sym_c_string_literal] = STATE(2401), + [sym_raw_string_literal] = STATE(2401), + [sym_interpreted_string_literal] = STATE(2401), [sym_mutability_modifiers] = STATE(939), - [sym_plain_type] = STATE(4297), - [sym__plain_type_without_special] = STATE(2302), - [sym_anon_struct_type] = STATE(2303), - [sym_multi_return_type] = STATE(2302), - [sym_result_type] = STATE(2302), - [sym_option_type] = STATE(2302), - [sym_qualified_type] = STATE(3541), - [sym_fixed_array_type] = STATE(2303), - [sym_array_type] = STATE(2303), - [sym_pointer_type] = STATE(2303), - [sym_wrong_pointer_type] = STATE(2303), - [sym_map_type] = STATE(2303), - [sym_channel_type] = STATE(2303), - [sym_shared_type] = STATE(2303), - [sym_thread_type] = STATE(2303), - [sym_atomic_type] = STATE(2303), - [sym_generic_type] = STATE(2303), - [sym_function_type] = STATE(2303), - [sym_identifier] = ACTIONS(2189), + [sym_plain_type] = STATE(4160), + [sym__plain_type_without_special] = STATE(2360), + [sym_anon_struct_type] = STATE(2362), + [sym_multi_return_type] = STATE(2360), + [sym_result_type] = STATE(2360), + [sym_option_type] = STATE(2360), + [sym_qualified_type] = STATE(3460), + [sym_fixed_array_type] = STATE(2362), + [sym_array_type] = STATE(2362), + [sym_pointer_type] = STATE(2362), + [sym_wrong_pointer_type] = STATE(2362), + [sym_map_type] = STATE(2362), + [sym_channel_type] = STATE(2362), + [sym_shared_type] = STATE(2362), + [sym_thread_type] = STATE(2362), + [sym_atomic_type] = STATE(2362), + [sym_generic_type] = STATE(2362), + [sym_function_type] = STATE(2362), + [sym_identifier] = ACTIONS(2477), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1428), - [anon_sym_LBRACE] = ACTIONS(1430), - [anon_sym_LPAREN] = ACTIONS(1432), - [anon_sym_fn] = ACTIONS(1434), - [anon_sym_PLUS] = ACTIONS(2491), - [anon_sym_DASH] = ACTIONS(2491), - [anon_sym_STAR] = ACTIONS(3354), - [anon_sym_struct] = ACTIONS(1440), + [anon_sym_DOT] = ACTIONS(1430), + [anon_sym_LBRACE] = ACTIONS(1432), + [anon_sym_LPAREN] = ACTIONS(1434), + [anon_sym_fn] = ACTIONS(1436), + [anon_sym_PLUS] = ACTIONS(1438), + [anon_sym_DASH] = ACTIONS(1438), + [anon_sym_STAR] = ACTIONS(1440), + [anon_sym_struct] = ACTIONS(1442), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(3356), - [anon_sym_go] = ACTIONS(2497), - [anon_sym_spawn] = ACTIONS(2499), - [anon_sym_json_DOTdecode] = ACTIONS(1448), - [anon_sym_LBRACK2] = ACTIONS(1450), - [anon_sym_TILDE] = ACTIONS(2491), - [anon_sym_CARET] = ACTIONS(2491), - [anon_sym_AMP] = ACTIONS(3358), - [anon_sym_LT_DASH] = ACTIONS(2503), - [sym_none] = ACTIONS(1456), - [sym_true] = ACTIONS(1456), - [sym_false] = ACTIONS(1456), - [sym_nil] = ACTIONS(1456), - [anon_sym_if] = ACTIONS(1827), - [anon_sym_DOLLARif] = ACTIONS(1460), - [anon_sym_match] = ACTIONS(1462), - [anon_sym_select] = ACTIONS(1464), - [anon_sym_lock] = ACTIONS(1466), - [anon_sym_rlock] = ACTIONS(1466), - [anon_sym_unsafe] = ACTIONS(1833), - [anon_sym_sql] = ACTIONS(1470), - [sym_int_literal] = ACTIONS(1456), - [sym_float_literal] = ACTIONS(1472), - [sym_rune_literal] = ACTIONS(1472), - [sym_pseudo_compile_time_identifier] = ACTIONS(1474), + [anon_sym_BANG] = ACTIONS(1444), + [anon_sym_go] = ACTIONS(1446), + [anon_sym_spawn] = ACTIONS(1448), + [anon_sym_json_DOTdecode] = ACTIONS(1450), + [anon_sym_LBRACK2] = ACTIONS(1452), + [anon_sym_TILDE] = ACTIONS(1438), + [anon_sym_CARET] = ACTIONS(1438), + [anon_sym_AMP] = ACTIONS(1454), + [anon_sym_LT_DASH] = ACTIONS(1456), + [sym_none] = ACTIONS(1458), + [sym_true] = ACTIONS(1458), + [sym_false] = ACTIONS(1458), + [sym_nil] = ACTIONS(1458), + [anon_sym_if] = ACTIONS(1833), + [anon_sym_DOLLARif] = ACTIONS(1462), + [anon_sym_match] = ACTIONS(1464), + [anon_sym_select] = ACTIONS(1466), + [anon_sym_lock] = ACTIONS(1468), + [anon_sym_rlock] = ACTIONS(1468), + [anon_sym_unsafe] = ACTIONS(1839), + [anon_sym_sql] = ACTIONS(1472), + [sym_int_literal] = ACTIONS(1458), + [sym_float_literal] = ACTIONS(1474), + [sym_rune_literal] = ACTIONS(1474), + [sym_pseudo_compile_time_identifier] = ACTIONS(1476), [anon_sym_shared] = ACTIONS(83), [anon_sym_map_LBRACK] = ACTIONS(85), [anon_sym_chan] = ACTIONS(87), [anon_sym_thread] = ACTIONS(89), [anon_sym_atomic] = ACTIONS(91), - [sym___double_quote] = ACTIONS(1478), - [sym___single_quote] = ACTIONS(1480), - [sym___c_double_quote] = ACTIONS(1482), - [sym___c_single_quote] = ACTIONS(1484), - [sym___r_double_quote] = ACTIONS(1486), - [sym___r_single_quote] = ACTIONS(1488), + [sym___double_quote] = ACTIONS(1480), + [sym___single_quote] = ACTIONS(1482), + [sym___c_double_quote] = ACTIONS(1484), + [sym___c_single_quote] = ACTIONS(1486), + [sym___r_double_quote] = ACTIONS(1488), + [sym___r_single_quote] = ACTIONS(1490), }, [725] = { [sym_line_comment] = STATE(725), [sym_block_comment] = STATE(725), - [sym__expression] = STATE(1753), - [sym__expression_without_blocks] = STATE(2044), - [sym__expression_with_blocks] = STATE(2044), - [sym_inc_expression] = STATE(2045), - [sym_dec_expression] = STATE(2045), - [sym_or_block_expression] = STATE(2045), - [sym_option_propagation_expression] = STATE(2045), - [sym_result_propagation_expression] = STATE(2045), - [sym_anon_struct_value_expression] = STATE(2046), - [sym_go_expression] = STATE(2045), - [sym_spawn_expression] = STATE(2045), - [sym_parenthesized_expression] = STATE(2045), - [sym_call_expression] = STATE(2045), - [sym_type_initializer] = STATE(2046), - [sym_function_literal] = STATE(2045), - [sym_reference_expression] = STATE(1912), - [sym_type_reference_expression] = STATE(3541), - [sym_unary_expression] = STATE(2045), - [sym_receive_expression] = STATE(2045), - [sym_binary_expression] = STATE(2045), - [sym_as_type_cast_expression] = STATE(2045), - [sym__max_group] = STATE(2045), - [sym_literal] = STATE(2043), - [sym_map_init_expression] = STATE(2046), - [sym_array_creation] = STATE(2045), - [sym_fixed_array_creation] = STATE(2045), - [sym_selector_expression] = STATE(2045), - [sym_index_expression] = STATE(2045), - [sym_slice_expression] = STATE(2045), - [sym_if_expression] = STATE(2046), - [sym_compile_time_if_expression] = STATE(2046), - [sym_is_expression] = STATE(2045), - [sym_in_expression] = STATE(2045), - [sym_enum_fetch] = STATE(2045), - [sym_match_expression] = STATE(2046), - [sym_select_expression] = STATE(2046), - [sym_lock_expression] = STATE(2046), - [sym_unsafe_expression] = STATE(2046), - [sym_sql_expression] = STATE(2046), - [sym_c_string_literal] = STATE(2041), - [sym_raw_string_literal] = STATE(2041), - [sym_interpreted_string_literal] = STATE(2041), - [sym_mutability_modifiers] = STATE(689), - [sym_plain_type] = STATE(4052), - [sym__plain_type_without_special] = STATE(2302), - [sym_anon_struct_type] = STATE(2303), - [sym_multi_return_type] = STATE(2302), - [sym_result_type] = STATE(2302), - [sym_option_type] = STATE(2302), - [sym_qualified_type] = STATE(3541), - [sym_fixed_array_type] = STATE(2303), - [sym_array_type] = STATE(2303), - [sym_pointer_type] = STATE(2303), - [sym_wrong_pointer_type] = STATE(2303), - [sym_map_type] = STATE(2303), - [sym_channel_type] = STATE(2303), - [sym_shared_type] = STATE(2303), - [sym_thread_type] = STATE(2303), - [sym_atomic_type] = STATE(2303), - [sym_generic_type] = STATE(2303), - [sym_function_type] = STATE(2303), - [sym_identifier] = ACTIONS(3142), + [sym__expression] = STATE(2641), + [sym__expression_without_blocks] = STATE(2347), + [sym__expression_with_blocks] = STATE(2347), + [sym_inc_expression] = STATE(2379), + [sym_dec_expression] = STATE(2379), + [sym_or_block_expression] = STATE(2379), + [sym_option_propagation_expression] = STATE(2379), + [sym_result_propagation_expression] = STATE(2379), + [sym_anon_struct_value_expression] = STATE(2378), + [sym_go_expression] = STATE(2379), + [sym_spawn_expression] = STATE(2379), + [sym_parenthesized_expression] = STATE(2379), + [sym_call_expression] = STATE(2379), + [sym_type_initializer] = STATE(2378), + [sym_function_literal] = STATE(2379), + [sym_reference_expression] = STATE(2377), + [sym_type_reference_expression] = STATE(3460), + [sym_unary_expression] = STATE(2379), + [sym_receive_expression] = STATE(2379), + [sym_binary_expression] = STATE(2379), + [sym_as_type_cast_expression] = STATE(2379), + [sym__max_group] = STATE(2379), + [sym_literal] = STATE(2392), + [sym_map_init_expression] = STATE(2378), + [sym_array_creation] = STATE(2379), + [sym_fixed_array_creation] = STATE(2379), + [sym_selector_expression] = STATE(2379), + [sym_index_expression] = STATE(2379), + [sym_slice_expression] = STATE(2379), + [sym_if_expression] = STATE(2378), + [sym_compile_time_if_expression] = STATE(2378), + [sym_is_expression] = STATE(2379), + [sym_in_expression] = STATE(2379), + [sym_enum_fetch] = STATE(2379), + [sym_match_expression] = STATE(2378), + [sym_select_expression] = STATE(2378), + [sym_lock_expression] = STATE(2378), + [sym_unsafe_expression] = STATE(2378), + [sym_sql_expression] = STATE(2378), + [sym_c_string_literal] = STATE(2401), + [sym_raw_string_literal] = STATE(2401), + [sym_interpreted_string_literal] = STATE(2401), + [sym_mutability_modifiers] = STATE(939), + [sym_plain_type] = STATE(4160), + [sym__plain_type_without_special] = STATE(2360), + [sym_anon_struct_type] = STATE(2362), + [sym_multi_return_type] = STATE(2360), + [sym_result_type] = STATE(2360), + [sym_option_type] = STATE(2360), + [sym_qualified_type] = STATE(3460), + [sym_fixed_array_type] = STATE(2362), + [sym_array_type] = STATE(2362), + [sym_pointer_type] = STATE(2362), + [sym_wrong_pointer_type] = STATE(2362), + [sym_map_type] = STATE(2362), + [sym_channel_type] = STATE(2362), + [sym_shared_type] = STATE(2362), + [sym_thread_type] = STATE(2362), + [sym_atomic_type] = STATE(2362), + [sym_generic_type] = STATE(2362), + [sym_function_type] = STATE(2362), + [sym_identifier] = ACTIONS(2477), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(811), - [anon_sym_LBRACE] = ACTIONS(3144), - [anon_sym_LPAREN] = ACTIONS(815), - [anon_sym_fn] = ACTIONS(817), - [anon_sym_PLUS] = ACTIONS(3146), - [anon_sym_DASH] = ACTIONS(3146), - [anon_sym_STAR] = ACTIONS(3148), - [anon_sym_struct] = ACTIONS(823), + [anon_sym_DOT] = ACTIONS(1430), + [anon_sym_LBRACE] = ACTIONS(1432), + [anon_sym_LPAREN] = ACTIONS(1434), + [anon_sym_fn] = ACTIONS(1436), + [anon_sym_PLUS] = ACTIONS(2271), + [anon_sym_DASH] = ACTIONS(2271), + [anon_sym_STAR] = ACTIONS(3354), + [anon_sym_struct] = ACTIONS(1442), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(3150), - [anon_sym_go] = ACTIONS(3152), - [anon_sym_spawn] = ACTIONS(3154), - [anon_sym_json_DOTdecode] = ACTIONS(833), - [anon_sym_LBRACK2] = ACTIONS(3156), - [anon_sym_TILDE] = ACTIONS(3146), - [anon_sym_CARET] = ACTIONS(3146), - [anon_sym_AMP] = ACTIONS(3158), - [anon_sym_LT_DASH] = ACTIONS(3160), - [sym_none] = ACTIONS(841), - [sym_true] = ACTIONS(841), - [sym_false] = ACTIONS(841), - [sym_nil] = ACTIONS(841), - [anon_sym_if] = ACTIONS(843), - [anon_sym_DOLLARif] = ACTIONS(845), - [anon_sym_match] = ACTIONS(847), - [anon_sym_select] = ACTIONS(3162), - [anon_sym_lock] = ACTIONS(3164), - [anon_sym_rlock] = ACTIONS(3164), - [anon_sym_unsafe] = ACTIONS(853), - [anon_sym_sql] = ACTIONS(855), - [sym_int_literal] = ACTIONS(841), - [sym_float_literal] = ACTIONS(857), - [sym_rune_literal] = ACTIONS(857), - [sym_pseudo_compile_time_identifier] = ACTIONS(859), + [anon_sym_BANG] = ACTIONS(3356), + [anon_sym_go] = ACTIONS(2277), + [anon_sym_spawn] = ACTIONS(2279), + [anon_sym_json_DOTdecode] = ACTIONS(1450), + [anon_sym_LBRACK2] = ACTIONS(1452), + [anon_sym_TILDE] = ACTIONS(2271), + [anon_sym_CARET] = ACTIONS(2271), + [anon_sym_AMP] = ACTIONS(3358), + [anon_sym_LT_DASH] = ACTIONS(2283), + [sym_none] = ACTIONS(1458), + [sym_true] = ACTIONS(1458), + [sym_false] = ACTIONS(1458), + [sym_nil] = ACTIONS(1458), + [anon_sym_if] = ACTIONS(1833), + [anon_sym_DOLLARif] = ACTIONS(1462), + [anon_sym_match] = ACTIONS(1464), + [anon_sym_select] = ACTIONS(1466), + [anon_sym_lock] = ACTIONS(1468), + [anon_sym_rlock] = ACTIONS(1468), + [anon_sym_unsafe] = ACTIONS(1839), + [anon_sym_sql] = ACTIONS(1472), + [sym_int_literal] = ACTIONS(1458), + [sym_float_literal] = ACTIONS(1474), + [sym_rune_literal] = ACTIONS(1474), + [sym_pseudo_compile_time_identifier] = ACTIONS(1476), [anon_sym_shared] = ACTIONS(83), [anon_sym_map_LBRACK] = ACTIONS(85), [anon_sym_chan] = ACTIONS(87), [anon_sym_thread] = ACTIONS(89), [anon_sym_atomic] = ACTIONS(91), - [sym___double_quote] = ACTIONS(861), - [sym___single_quote] = ACTIONS(863), - [sym___c_double_quote] = ACTIONS(865), - [sym___c_single_quote] = ACTIONS(867), - [sym___r_double_quote] = ACTIONS(869), - [sym___r_single_quote] = ACTIONS(871), + [sym___double_quote] = ACTIONS(1480), + [sym___single_quote] = ACTIONS(1482), + [sym___c_double_quote] = ACTIONS(1484), + [sym___c_single_quote] = ACTIONS(1486), + [sym___r_double_quote] = ACTIONS(1488), + [sym___r_single_quote] = ACTIONS(1490), }, [726] = { [sym_line_comment] = STATE(726), [sym_block_comment] = STATE(726), - [sym__expression] = STATE(1764), - [sym__expression_without_blocks] = STATE(2044), - [sym__expression_with_blocks] = STATE(2044), - [sym_inc_expression] = STATE(2045), - [sym_dec_expression] = STATE(2045), - [sym_or_block_expression] = STATE(2045), - [sym_option_propagation_expression] = STATE(2045), - [sym_result_propagation_expression] = STATE(2045), - [sym_anon_struct_value_expression] = STATE(2046), - [sym_go_expression] = STATE(2045), - [sym_spawn_expression] = STATE(2045), - [sym_parenthesized_expression] = STATE(2045), - [sym_call_expression] = STATE(2045), - [sym_type_initializer] = STATE(2046), - [sym_function_literal] = STATE(2045), - [sym_reference_expression] = STATE(1912), - [sym_type_reference_expression] = STATE(3541), - [sym_unary_expression] = STATE(2045), - [sym_receive_expression] = STATE(2045), - [sym_binary_expression] = STATE(2045), - [sym_as_type_cast_expression] = STATE(2045), - [sym__max_group] = STATE(2045), - [sym_literal] = STATE(2043), - [sym_map_init_expression] = STATE(2046), - [sym_array_creation] = STATE(2045), - [sym_fixed_array_creation] = STATE(2045), - [sym_selector_expression] = STATE(2045), - [sym_index_expression] = STATE(2045), - [sym_slice_expression] = STATE(2045), - [sym_if_expression] = STATE(2046), - [sym_compile_time_if_expression] = STATE(2046), - [sym_is_expression] = STATE(2045), - [sym_in_expression] = STATE(2045), - [sym_enum_fetch] = STATE(2045), - [sym_match_expression] = STATE(2046), - [sym_select_expression] = STATE(2046), - [sym_lock_expression] = STATE(2046), - [sym_unsafe_expression] = STATE(2046), - [sym_sql_expression] = STATE(2046), - [sym_c_string_literal] = STATE(2041), - [sym_raw_string_literal] = STATE(2041), - [sym_interpreted_string_literal] = STATE(2041), - [sym_mutability_modifiers] = STATE(689), - [sym_plain_type] = STATE(4074), - [sym__plain_type_without_special] = STATE(2302), - [sym_anon_struct_type] = STATE(2303), - [sym_multi_return_type] = STATE(2302), - [sym_result_type] = STATE(2302), - [sym_option_type] = STATE(2302), - [sym_qualified_type] = STATE(3541), - [sym_fixed_array_type] = STATE(2303), - [sym_array_type] = STATE(2303), - [sym_pointer_type] = STATE(2303), - [sym_wrong_pointer_type] = STATE(2303), - [sym_map_type] = STATE(2303), - [sym_channel_type] = STATE(2303), - [sym_shared_type] = STATE(2303), - [sym_thread_type] = STATE(2303), - [sym_atomic_type] = STATE(2303), - [sym_generic_type] = STATE(2303), - [sym_function_type] = STATE(2303), - [sym_identifier] = ACTIONS(3142), + [sym__expression] = STATE(2783), + [sym__expression_without_blocks] = STATE(2347), + [sym__expression_with_blocks] = STATE(2347), + [sym_inc_expression] = STATE(2379), + [sym_dec_expression] = STATE(2379), + [sym_or_block_expression] = STATE(2379), + [sym_option_propagation_expression] = STATE(2379), + [sym_result_propagation_expression] = STATE(2379), + [sym_anon_struct_value_expression] = STATE(2378), + [sym_go_expression] = STATE(2379), + [sym_spawn_expression] = STATE(2379), + [sym_parenthesized_expression] = STATE(2379), + [sym_call_expression] = STATE(2379), + [sym_type_initializer] = STATE(2378), + [sym_function_literal] = STATE(2379), + [sym_reference_expression] = STATE(2377), + [sym_type_reference_expression] = STATE(3460), + [sym_unary_expression] = STATE(2379), + [sym_receive_expression] = STATE(2379), + [sym_binary_expression] = STATE(2379), + [sym_as_type_cast_expression] = STATE(2379), + [sym__max_group] = STATE(2379), + [sym_literal] = STATE(2392), + [sym_map_init_expression] = STATE(2378), + [sym_array_creation] = STATE(2379), + [sym_fixed_array_creation] = STATE(2379), + [sym_selector_expression] = STATE(2379), + [sym_index_expression] = STATE(2379), + [sym_slice_expression] = STATE(2379), + [sym_if_expression] = STATE(2378), + [sym_compile_time_if_expression] = STATE(2378), + [sym_is_expression] = STATE(2379), + [sym_in_expression] = STATE(2379), + [sym_enum_fetch] = STATE(2379), + [sym_match_expression] = STATE(2378), + [sym_select_expression] = STATE(2378), + [sym_lock_expression] = STATE(2378), + [sym_unsafe_expression] = STATE(2378), + [sym_sql_expression] = STATE(2378), + [sym_c_string_literal] = STATE(2401), + [sym_raw_string_literal] = STATE(2401), + [sym_interpreted_string_literal] = STATE(2401), + [sym_mutability_modifiers] = STATE(939), + [sym_plain_type] = STATE(3564), + [sym__plain_type_without_special] = STATE(2360), + [sym_anon_struct_type] = STATE(2362), + [sym_multi_return_type] = STATE(2360), + [sym_result_type] = STATE(2360), + [sym_option_type] = STATE(2360), + [sym_qualified_type] = STATE(3460), + [sym_fixed_array_type] = STATE(2362), + [sym_array_type] = STATE(2362), + [sym_pointer_type] = STATE(2362), + [sym_wrong_pointer_type] = STATE(2362), + [sym_map_type] = STATE(2362), + [sym_channel_type] = STATE(2362), + [sym_shared_type] = STATE(2362), + [sym_thread_type] = STATE(2362), + [sym_atomic_type] = STATE(2362), + [sym_generic_type] = STATE(2362), + [sym_function_type] = STATE(2362), + [sym_identifier] = ACTIONS(1428), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(811), - [anon_sym_LBRACE] = ACTIONS(3144), - [anon_sym_LPAREN] = ACTIONS(815), - [anon_sym_fn] = ACTIONS(817), - [anon_sym_PLUS] = ACTIONS(3146), - [anon_sym_DASH] = ACTIONS(3146), - [anon_sym_STAR] = ACTIONS(3148), - [anon_sym_struct] = ACTIONS(823), + [anon_sym_DOT] = ACTIONS(1430), + [anon_sym_LBRACE] = ACTIONS(1432), + [anon_sym_LPAREN] = ACTIONS(1434), + [anon_sym_fn] = ACTIONS(1436), + [anon_sym_PLUS] = ACTIONS(2271), + [anon_sym_DASH] = ACTIONS(2271), + [anon_sym_STAR] = ACTIONS(2273), + [anon_sym_struct] = ACTIONS(1442), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(3150), - [anon_sym_go] = ACTIONS(3152), - [anon_sym_spawn] = ACTIONS(3154), - [anon_sym_json_DOTdecode] = ACTIONS(833), - [anon_sym_LBRACK2] = ACTIONS(3156), - [anon_sym_TILDE] = ACTIONS(3146), - [anon_sym_CARET] = ACTIONS(3146), - [anon_sym_AMP] = ACTIONS(3158), - [anon_sym_LT_DASH] = ACTIONS(3160), - [sym_none] = ACTIONS(841), - [sym_true] = ACTIONS(841), - [sym_false] = ACTIONS(841), - [sym_nil] = ACTIONS(841), - [anon_sym_if] = ACTIONS(843), - [anon_sym_DOLLARif] = ACTIONS(845), - [anon_sym_match] = ACTIONS(847), - [anon_sym_select] = ACTIONS(3162), - [anon_sym_lock] = ACTIONS(3164), - [anon_sym_rlock] = ACTIONS(3164), - [anon_sym_unsafe] = ACTIONS(853), - [anon_sym_sql] = ACTIONS(855), - [sym_int_literal] = ACTIONS(841), - [sym_float_literal] = ACTIONS(857), - [sym_rune_literal] = ACTIONS(857), - [sym_pseudo_compile_time_identifier] = ACTIONS(859), + [anon_sym_BANG] = ACTIONS(2275), + [anon_sym_go] = ACTIONS(2277), + [anon_sym_spawn] = ACTIONS(2279), + [anon_sym_json_DOTdecode] = ACTIONS(1450), + [anon_sym_LBRACK2] = ACTIONS(1452), + [anon_sym_TILDE] = ACTIONS(2271), + [anon_sym_CARET] = ACTIONS(2271), + [anon_sym_AMP] = ACTIONS(2281), + [anon_sym_LT_DASH] = ACTIONS(2283), + [sym_none] = ACTIONS(1458), + [sym_true] = ACTIONS(1458), + [sym_false] = ACTIONS(1458), + [sym_nil] = ACTIONS(1458), + [anon_sym_if] = ACTIONS(1833), + [anon_sym_DOLLARif] = ACTIONS(1462), + [anon_sym_match] = ACTIONS(1464), + [anon_sym_select] = ACTIONS(1466), + [anon_sym_lock] = ACTIONS(1468), + [anon_sym_rlock] = ACTIONS(1468), + [anon_sym_unsafe] = ACTIONS(1839), + [anon_sym_sql] = ACTIONS(1472), + [sym_int_literal] = ACTIONS(1458), + [sym_float_literal] = ACTIONS(1474), + [sym_rune_literal] = ACTIONS(1474), + [sym_pseudo_compile_time_identifier] = ACTIONS(1476), [anon_sym_shared] = ACTIONS(83), [anon_sym_map_LBRACK] = ACTIONS(85), [anon_sym_chan] = ACTIONS(87), [anon_sym_thread] = ACTIONS(89), [anon_sym_atomic] = ACTIONS(91), - [sym___double_quote] = ACTIONS(861), - [sym___single_quote] = ACTIONS(863), - [sym___c_double_quote] = ACTIONS(865), - [sym___c_single_quote] = ACTIONS(867), - [sym___r_double_quote] = ACTIONS(869), - [sym___r_single_quote] = ACTIONS(871), + [sym___double_quote] = ACTIONS(1480), + [sym___single_quote] = ACTIONS(1482), + [sym___c_double_quote] = ACTIONS(1484), + [sym___c_single_quote] = ACTIONS(1486), + [sym___r_double_quote] = ACTIONS(1488), + [sym___r_single_quote] = ACTIONS(1490), }, [727] = { [sym_line_comment] = STATE(727), [sym_block_comment] = STATE(727), - [sym__expression] = STATE(1619), - [sym__expression_without_blocks] = STATE(1692), - [sym__expression_with_blocks] = STATE(1692), - [sym_inc_expression] = STATE(1684), - [sym_dec_expression] = STATE(1684), - [sym_or_block_expression] = STATE(1684), - [sym_option_propagation_expression] = STATE(1684), - [sym_result_propagation_expression] = STATE(1684), - [sym_anon_struct_value_expression] = STATE(1677), - [sym_go_expression] = STATE(1684), - [sym_spawn_expression] = STATE(1684), - [sym_parenthesized_expression] = STATE(1684), - [sym_call_expression] = STATE(1684), - [sym_type_initializer] = STATE(1677), - [sym_function_literal] = STATE(1684), - [sym_reference_expression] = STATE(1674), - [sym_type_reference_expression] = STATE(3541), - [sym_unary_expression] = STATE(1684), - [sym_receive_expression] = STATE(1684), - [sym_binary_expression] = STATE(1684), - [sym_as_type_cast_expression] = STATE(1684), - [sym__max_group] = STATE(1684), - [sym_literal] = STATE(1698), - [sym_map_init_expression] = STATE(1677), - [sym_array_creation] = STATE(1684), - [sym_fixed_array_creation] = STATE(1684), - [sym_selector_expression] = STATE(1684), - [sym_index_expression] = STATE(1684), - [sym_slice_expression] = STATE(1684), - [sym_if_expression] = STATE(1677), - [sym_compile_time_if_expression] = STATE(1677), - [sym_is_expression] = STATE(1684), - [sym_in_expression] = STATE(1684), - [sym_enum_fetch] = STATE(1684), - [sym_match_expression] = STATE(1677), - [sym_select_expression] = STATE(1677), - [sym_lock_expression] = STATE(1677), - [sym_unsafe_expression] = STATE(1677), - [sym_sql_expression] = STATE(1677), - [sym_c_string_literal] = STATE(1705), - [sym_raw_string_literal] = STATE(1705), - [sym_interpreted_string_literal] = STATE(1705), - [sym_mutability_modifiers] = STATE(664), - [sym_plain_type] = STATE(4157), - [sym__plain_type_without_special] = STATE(2302), - [sym_anon_struct_type] = STATE(2303), - [sym_multi_return_type] = STATE(2302), - [sym_result_type] = STATE(2302), - [sym_option_type] = STATE(2302), - [sym_qualified_type] = STATE(3541), - [sym_fixed_array_type] = STATE(2303), - [sym_array_type] = STATE(2303), - [sym_pointer_type] = STATE(2303), - [sym_wrong_pointer_type] = STATE(2303), - [sym_map_type] = STATE(2303), - [sym_channel_type] = STATE(2303), - [sym_shared_type] = STATE(2303), - [sym_thread_type] = STATE(2303), - [sym_atomic_type] = STATE(2303), - [sym_generic_type] = STATE(2303), - [sym_function_type] = STATE(2303), - [sym_identifier] = ACTIONS(3416), - [anon_sym_SLASH_SLASH] = ACTIONS(3), - [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(309), - [anon_sym_LBRACE] = ACTIONS(3418), - [anon_sym_LPAREN] = ACTIONS(315), - [anon_sym_fn] = ACTIONS(317), - [anon_sym_PLUS] = ACTIONS(319), - [anon_sym_DASH] = ACTIONS(319), - [anon_sym_STAR] = ACTIONS(321), - [anon_sym_struct] = ACTIONS(323), - [anon_sym_mut] = ACTIONS(41), - [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(325), - [anon_sym_go] = ACTIONS(327), - [anon_sym_spawn] = ACTIONS(329), - [anon_sym_json_DOTdecode] = ACTIONS(331), - [anon_sym_LBRACK2] = ACTIONS(333), - [anon_sym_TILDE] = ACTIONS(319), - [anon_sym_CARET] = ACTIONS(319), - [anon_sym_AMP] = ACTIONS(335), - [anon_sym_LT_DASH] = ACTIONS(337), - [sym_none] = ACTIONS(339), - [sym_true] = ACTIONS(339), - [sym_false] = ACTIONS(339), - [sym_nil] = ACTIONS(339), - [anon_sym_if] = ACTIONS(341), - [anon_sym_DOLLARif] = ACTIONS(343), - [anon_sym_match] = ACTIONS(345), - [anon_sym_select] = ACTIONS(347), - [anon_sym_lock] = ACTIONS(349), - [anon_sym_rlock] = ACTIONS(349), - [anon_sym_unsafe] = ACTIONS(351), - [anon_sym_sql] = ACTIONS(353), - [sym_int_literal] = ACTIONS(339), - [sym_float_literal] = ACTIONS(355), - [sym_rune_literal] = ACTIONS(355), - [sym_pseudo_compile_time_identifier] = ACTIONS(357), - [anon_sym_shared] = ACTIONS(83), - [anon_sym_map_LBRACK] = ACTIONS(85), - [anon_sym_chan] = ACTIONS(87), - [anon_sym_thread] = ACTIONS(89), - [anon_sym_atomic] = ACTIONS(91), - [sym___double_quote] = ACTIONS(379), - [sym___single_quote] = ACTIONS(381), - [sym___c_double_quote] = ACTIONS(383), - [sym___c_single_quote] = ACTIONS(385), - [sym___r_double_quote] = ACTIONS(387), - [sym___r_single_quote] = ACTIONS(389), - }, - [728] = { - [sym_line_comment] = STATE(728), - [sym_block_comment] = STATE(728), - [sym__expression] = STATE(2467), - [sym__expression_without_blocks] = STATE(2625), - [sym__expression_with_blocks] = STATE(2625), + [sym__expression] = STATE(2458), + [sym__expression_without_blocks] = STATE(2638), + [sym__expression_with_blocks] = STATE(2638), [sym_inc_expression] = STATE(2765), [sym_dec_expression] = STATE(2765), [sym_or_block_expression] = STATE(2765), [sym_option_propagation_expression] = STATE(2765), [sym_result_propagation_expression] = STATE(2765), - [sym_anon_struct_value_expression] = STATE(2619), + [sym_anon_struct_value_expression] = STATE(2637), [sym_go_expression] = STATE(2765), [sym_spawn_expression] = STATE(2765), [sym_parenthesized_expression] = STATE(2765), [sym_call_expression] = STATE(2765), - [sym_type_initializer] = STATE(2619), + [sym_type_initializer] = STATE(2637), [sym_function_literal] = STATE(2765), [sym_reference_expression] = STATE(2764), - [sym_type_reference_expression] = STATE(3541), + [sym_type_reference_expression] = STATE(3460), [sym_unary_expression] = STATE(2765), [sym_receive_expression] = STATE(2765), [sym_binary_expression] = STATE(2765), [sym_as_type_cast_expression] = STATE(2765), [sym__max_group] = STATE(2765), - [sym_literal] = STATE(2769), - [sym_map_init_expression] = STATE(2619), + [sym_literal] = STATE(2771), + [sym_map_init_expression] = STATE(2637), [sym_array_creation] = STATE(2765), [sym_fixed_array_creation] = STATE(2765), [sym_selector_expression] = STATE(2765), [sym_index_expression] = STATE(2765), [sym_slice_expression] = STATE(2765), - [sym_if_expression] = STATE(2619), - [sym_compile_time_if_expression] = STATE(2619), + [sym_if_expression] = STATE(2637), + [sym_compile_time_if_expression] = STATE(2637), [sym_is_expression] = STATE(2765), [sym_in_expression] = STATE(2765), [sym_enum_fetch] = STATE(2765), - [sym_match_expression] = STATE(2619), - [sym_select_expression] = STATE(2619), - [sym_lock_expression] = STATE(2619), - [sym_unsafe_expression] = STATE(2619), - [sym_sql_expression] = STATE(2619), - [sym_c_string_literal] = STATE(2660), - [sym_raw_string_literal] = STATE(2660), - [sym_interpreted_string_literal] = STATE(2660), - [sym_mutability_modifiers] = STATE(567), - [sym_plain_type] = STATE(4008), - [sym__plain_type_without_special] = STATE(2302), - [sym_anon_struct_type] = STATE(2303), - [sym_multi_return_type] = STATE(2302), - [sym_result_type] = STATE(2302), - [sym_option_type] = STATE(2302), - [sym_qualified_type] = STATE(3541), - [sym_fixed_array_type] = STATE(2303), - [sym_array_type] = STATE(2303), - [sym_pointer_type] = STATE(2303), - [sym_wrong_pointer_type] = STATE(2303), - [sym_map_type] = STATE(2303), - [sym_channel_type] = STATE(2303), - [sym_shared_type] = STATE(2303), - [sym_thread_type] = STATE(2303), - [sym_atomic_type] = STATE(2303), - [sym_generic_type] = STATE(2303), - [sym_function_type] = STATE(2303), - [sym_identifier] = ACTIONS(1807), + [sym_match_expression] = STATE(2637), + [sym_select_expression] = STATE(2637), + [sym_lock_expression] = STATE(2637), + [sym_unsafe_expression] = STATE(2637), + [sym_sql_expression] = STATE(2637), + [sym_c_string_literal] = STATE(2762), + [sym_raw_string_literal] = STATE(2762), + [sym_interpreted_string_literal] = STATE(2762), + [sym_mutability_modifiers] = STATE(822), + [sym_plain_type] = STATE(4011), + [sym__plain_type_without_special] = STATE(2360), + [sym_anon_struct_type] = STATE(2362), + [sym_multi_return_type] = STATE(2360), + [sym_result_type] = STATE(2360), + [sym_option_type] = STATE(2360), + [sym_qualified_type] = STATE(3460), + [sym_fixed_array_type] = STATE(2362), + [sym_array_type] = STATE(2362), + [sym_pointer_type] = STATE(2362), + [sym_wrong_pointer_type] = STATE(2362), + [sym_map_type] = STATE(2362), + [sym_channel_type] = STATE(2362), + [sym_shared_type] = STATE(2362), + [sym_thread_type] = STATE(2362), + [sym_atomic_type] = STATE(2362), + [sym_generic_type] = STATE(2362), + [sym_function_type] = STATE(2362), + [sym_identifier] = ACTIONS(1815), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(1073), + [anon_sym_LBRACE] = ACTIONS(1075), + [anon_sym_LPAREN] = ACTIONS(1079), + [anon_sym_fn] = ACTIONS(1081), + [anon_sym_PLUS] = ACTIONS(3070), + [anon_sym_DASH] = ACTIONS(3070), + [anon_sym_STAR] = ACTIONS(3072), + [anon_sym_struct] = ACTIONS(1087), + [anon_sym_mut] = ACTIONS(41), + [anon_sym_QMARK] = ACTIONS(47), + [anon_sym_BANG] = ACTIONS(3074), + [anon_sym_go] = ACTIONS(3076), + [anon_sym_spawn] = ACTIONS(3078), + [anon_sym_json_DOTdecode] = ACTIONS(1095), + [anon_sym_LBRACK2] = ACTIONS(1097), + [anon_sym_TILDE] = ACTIONS(3070), + [anon_sym_CARET] = ACTIONS(3070), + [anon_sym_AMP] = ACTIONS(3080), + [anon_sym_LT_DASH] = ACTIONS(3082), + [sym_none] = ACTIONS(1103), + [sym_true] = ACTIONS(1103), + [sym_false] = ACTIONS(1103), + [sym_nil] = ACTIONS(1103), + [anon_sym_if] = ACTIONS(1105), + [anon_sym_DOLLARif] = ACTIONS(1109), + [anon_sym_match] = ACTIONS(1111), + [anon_sym_select] = ACTIONS(3084), + [anon_sym_lock] = ACTIONS(3086), + [anon_sym_rlock] = ACTIONS(3086), + [anon_sym_unsafe] = ACTIONS(1117), + [anon_sym_sql] = ACTIONS(1119), + [sym_int_literal] = ACTIONS(1103), + [sym_float_literal] = ACTIONS(1121), + [sym_rune_literal] = ACTIONS(1121), + [sym_pseudo_compile_time_identifier] = ACTIONS(1123), + [anon_sym_shared] = ACTIONS(83), + [anon_sym_map_LBRACK] = ACTIONS(85), + [anon_sym_chan] = ACTIONS(87), + [anon_sym_thread] = ACTIONS(89), + [anon_sym_atomic] = ACTIONS(91), + [sym___double_quote] = ACTIONS(1125), + [sym___single_quote] = ACTIONS(1127), + [sym___c_double_quote] = ACTIONS(1129), + [sym___c_single_quote] = ACTIONS(1131), + [sym___r_double_quote] = ACTIONS(1133), + [sym___r_single_quote] = ACTIONS(1135), + }, + [728] = { + [sym_line_comment] = STATE(728), + [sym_block_comment] = STATE(728), + [sym__expression] = STATE(2580), + [sym__expression_without_blocks] = STATE(2347), + [sym__expression_with_blocks] = STATE(2347), + [sym_inc_expression] = STATE(2379), + [sym_dec_expression] = STATE(2379), + [sym_or_block_expression] = STATE(2379), + [sym_option_propagation_expression] = STATE(2379), + [sym_result_propagation_expression] = STATE(2379), + [sym_anon_struct_value_expression] = STATE(2378), + [sym_go_expression] = STATE(2379), + [sym_spawn_expression] = STATE(2379), + [sym_parenthesized_expression] = STATE(2379), + [sym_call_expression] = STATE(2379), + [sym_type_initializer] = STATE(2378), + [sym_function_literal] = STATE(2379), + [sym_reference_expression] = STATE(2377), + [sym_type_reference_expression] = STATE(3460), + [sym_unary_expression] = STATE(2379), + [sym_receive_expression] = STATE(2379), + [sym_binary_expression] = STATE(2379), + [sym_as_type_cast_expression] = STATE(2379), + [sym__max_group] = STATE(2379), + [sym_literal] = STATE(2392), + [sym_map_init_expression] = STATE(2378), + [sym_array_creation] = STATE(2379), + [sym_fixed_array_creation] = STATE(2379), + [sym_selector_expression] = STATE(2379), + [sym_index_expression] = STATE(2379), + [sym_slice_expression] = STATE(2379), + [sym_if_expression] = STATE(2378), + [sym_compile_time_if_expression] = STATE(2378), + [sym_is_expression] = STATE(2379), + [sym_in_expression] = STATE(2379), + [sym_enum_fetch] = STATE(2379), + [sym_match_expression] = STATE(2378), + [sym_select_expression] = STATE(2378), + [sym_lock_expression] = STATE(2378), + [sym_unsafe_expression] = STATE(2378), + [sym_sql_expression] = STATE(2378), + [sym_c_string_literal] = STATE(2401), + [sym_raw_string_literal] = STATE(2401), + [sym_interpreted_string_literal] = STATE(2401), + [sym_mutability_modifiers] = STATE(939), + [sym_plain_type] = STATE(4160), + [sym__plain_type_without_special] = STATE(2360), + [sym_anon_struct_type] = STATE(2362), + [sym_multi_return_type] = STATE(2360), + [sym_result_type] = STATE(2360), + [sym_option_type] = STATE(2360), + [sym_qualified_type] = STATE(3460), + [sym_fixed_array_type] = STATE(2362), + [sym_array_type] = STATE(2362), + [sym_pointer_type] = STATE(2362), + [sym_wrong_pointer_type] = STATE(2362), + [sym_map_type] = STATE(2362), + [sym_channel_type] = STATE(2362), + [sym_shared_type] = STATE(2362), + [sym_thread_type] = STATE(2362), + [sym_atomic_type] = STATE(2362), + [sym_generic_type] = STATE(2362), + [sym_function_type] = STATE(2362), + [sym_identifier] = ACTIONS(1815), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1081), - [anon_sym_LBRACE] = ACTIONS(1083), - [anon_sym_LPAREN] = ACTIONS(1087), - [anon_sym_fn] = ACTIONS(1089), - [anon_sym_PLUS] = ACTIONS(3120), - [anon_sym_DASH] = ACTIONS(3120), - [anon_sym_STAR] = ACTIONS(3122), - [anon_sym_struct] = ACTIONS(1095), + [anon_sym_DOT] = ACTIONS(1430), + [anon_sym_LBRACE] = ACTIONS(1432), + [anon_sym_LPAREN] = ACTIONS(1434), + [anon_sym_fn] = ACTIONS(1436), + [anon_sym_PLUS] = ACTIONS(3090), + [anon_sym_DASH] = ACTIONS(3090), + [anon_sym_STAR] = ACTIONS(3092), + [anon_sym_struct] = ACTIONS(1442), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(3124), - [anon_sym_go] = ACTIONS(3126), - [anon_sym_spawn] = ACTIONS(3128), - [anon_sym_json_DOTdecode] = ACTIONS(1103), - [anon_sym_LBRACK2] = ACTIONS(1105), - [anon_sym_TILDE] = ACTIONS(3120), - [anon_sym_CARET] = ACTIONS(3120), - [anon_sym_AMP] = ACTIONS(3130), - [anon_sym_LT_DASH] = ACTIONS(3132), - [sym_none] = ACTIONS(1111), - [sym_true] = ACTIONS(1111), - [sym_false] = ACTIONS(1111), - [sym_nil] = ACTIONS(1111), - [anon_sym_if] = ACTIONS(1113), - [anon_sym_DOLLARif] = ACTIONS(1117), - [anon_sym_match] = ACTIONS(1119), - [anon_sym_select] = ACTIONS(3134), - [anon_sym_lock] = ACTIONS(3136), - [anon_sym_rlock] = ACTIONS(3136), - [anon_sym_unsafe] = ACTIONS(1125), - [anon_sym_sql] = ACTIONS(1127), - [sym_int_literal] = ACTIONS(1111), - [sym_float_literal] = ACTIONS(1129), - [sym_rune_literal] = ACTIONS(1129), - [sym_pseudo_compile_time_identifier] = ACTIONS(1131), + [anon_sym_BANG] = ACTIONS(3094), + [anon_sym_go] = ACTIONS(3096), + [anon_sym_spawn] = ACTIONS(3098), + [anon_sym_json_DOTdecode] = ACTIONS(1450), + [anon_sym_LBRACK2] = ACTIONS(1827), + [anon_sym_TILDE] = ACTIONS(3090), + [anon_sym_CARET] = ACTIONS(3090), + [anon_sym_AMP] = ACTIONS(3100), + [anon_sym_LT_DASH] = ACTIONS(3102), + [sym_none] = ACTIONS(1458), + [sym_true] = ACTIONS(1458), + [sym_false] = ACTIONS(1458), + [sym_nil] = ACTIONS(1458), + [anon_sym_if] = ACTIONS(1833), + [anon_sym_DOLLARif] = ACTIONS(1462), + [anon_sym_match] = ACTIONS(1464), + [anon_sym_select] = ACTIONS(3104), + [anon_sym_lock] = ACTIONS(3106), + [anon_sym_rlock] = ACTIONS(3106), + [anon_sym_unsafe] = ACTIONS(1839), + [anon_sym_sql] = ACTIONS(1472), + [sym_int_literal] = ACTIONS(1458), + [sym_float_literal] = ACTIONS(1474), + [sym_rune_literal] = ACTIONS(1474), + [sym_pseudo_compile_time_identifier] = ACTIONS(1476), [anon_sym_shared] = ACTIONS(83), [anon_sym_map_LBRACK] = ACTIONS(85), [anon_sym_chan] = ACTIONS(87), [anon_sym_thread] = ACTIONS(89), [anon_sym_atomic] = ACTIONS(91), - [sym___double_quote] = ACTIONS(1133), - [sym___single_quote] = ACTIONS(1135), - [sym___c_double_quote] = ACTIONS(1137), - [sym___c_single_quote] = ACTIONS(1139), - [sym___r_double_quote] = ACTIONS(1141), - [sym___r_single_quote] = ACTIONS(1143), + [sym___double_quote] = ACTIONS(1480), + [sym___single_quote] = ACTIONS(1482), + [sym___c_double_quote] = ACTIONS(1484), + [sym___c_single_quote] = ACTIONS(1486), + [sym___r_double_quote] = ACTIONS(1488), + [sym___r_single_quote] = ACTIONS(1490), }, [729] = { [sym_line_comment] = STATE(729), [sym_block_comment] = STATE(729), - [sym__expression] = STATE(1863), - [sym__expression_without_blocks] = STATE(2044), - [sym__expression_with_blocks] = STATE(2044), - [sym_inc_expression] = STATE(2045), - [sym_dec_expression] = STATE(2045), - [sym_or_block_expression] = STATE(2045), - [sym_option_propagation_expression] = STATE(2045), - [sym_result_propagation_expression] = STATE(2045), - [sym_anon_struct_value_expression] = STATE(2046), - [sym_go_expression] = STATE(2045), - [sym_spawn_expression] = STATE(2045), - [sym_parenthesized_expression] = STATE(2045), - [sym_call_expression] = STATE(2045), - [sym_type_initializer] = STATE(2046), - [sym_function_literal] = STATE(2045), - [sym_reference_expression] = STATE(1912), - [sym_type_reference_expression] = STATE(3541), - [sym_unary_expression] = STATE(2045), - [sym_receive_expression] = STATE(2045), - [sym_binary_expression] = STATE(2045), - [sym_as_type_cast_expression] = STATE(2045), - [sym__max_group] = STATE(2045), - [sym_literal] = STATE(2043), - [sym_map_init_expression] = STATE(2046), - [sym_array_creation] = STATE(2045), - [sym_fixed_array_creation] = STATE(2045), - [sym_selector_expression] = STATE(2045), - [sym_index_expression] = STATE(2045), - [sym_slice_expression] = STATE(2045), - [sym_if_expression] = STATE(2046), - [sym_compile_time_if_expression] = STATE(2046), - [sym_is_expression] = STATE(2045), - [sym_in_expression] = STATE(2045), - [sym_enum_fetch] = STATE(2045), - [sym_match_expression] = STATE(2046), - [sym_select_expression] = STATE(2046), - [sym_lock_expression] = STATE(2046), - [sym_unsafe_expression] = STATE(2046), - [sym_sql_expression] = STATE(2046), - [sym_c_string_literal] = STATE(2041), - [sym_raw_string_literal] = STATE(2041), - [sym_interpreted_string_literal] = STATE(2041), - [sym_mutability_modifiers] = STATE(689), - [sym_plain_type] = STATE(4052), - [sym__plain_type_without_special] = STATE(2302), - [sym_anon_struct_type] = STATE(2303), - [sym_multi_return_type] = STATE(2302), - [sym_result_type] = STATE(2302), - [sym_option_type] = STATE(2302), - [sym_qualified_type] = STATE(3541), - [sym_fixed_array_type] = STATE(2303), - [sym_array_type] = STATE(2303), - [sym_pointer_type] = STATE(2303), - [sym_wrong_pointer_type] = STATE(2303), - [sym_map_type] = STATE(2303), - [sym_channel_type] = STATE(2303), - [sym_shared_type] = STATE(2303), - [sym_thread_type] = STATE(2303), - [sym_atomic_type] = STATE(2303), - [sym_generic_type] = STATE(2303), - [sym_function_type] = STATE(2303), - [sym_identifier] = ACTIONS(3142), + [sym__expression] = STATE(1137), + [sym__expression_without_blocks] = STATE(1210), + [sym__expression_with_blocks] = STATE(1210), + [sym_inc_expression] = STATE(1211), + [sym_dec_expression] = STATE(1211), + [sym_or_block_expression] = STATE(1211), + [sym_option_propagation_expression] = STATE(1211), + [sym_result_propagation_expression] = STATE(1211), + [sym_anon_struct_value_expression] = STATE(1212), + [sym_go_expression] = STATE(1211), + [sym_spawn_expression] = STATE(1211), + [sym_parenthesized_expression] = STATE(1211), + [sym_call_expression] = STATE(1211), + [sym_type_initializer] = STATE(1212), + [sym_function_literal] = STATE(1211), + [sym_reference_expression] = STATE(1233), + [sym_type_reference_expression] = STATE(3460), + [sym_unary_expression] = STATE(1211), + [sym_receive_expression] = STATE(1211), + [sym_binary_expression] = STATE(1211), + [sym_as_type_cast_expression] = STATE(1211), + [sym__max_group] = STATE(1211), + [sym_literal] = STATE(1209), + [sym_map_init_expression] = STATE(1212), + [sym_array_creation] = STATE(1211), + [sym_fixed_array_creation] = STATE(1211), + [sym_selector_expression] = STATE(1211), + [sym_index_expression] = STATE(1211), + [sym_slice_expression] = STATE(1211), + [sym_if_expression] = STATE(1212), + [sym_compile_time_if_expression] = STATE(1212), + [sym_is_expression] = STATE(1211), + [sym_in_expression] = STATE(1211), + [sym_enum_fetch] = STATE(1211), + [sym_match_expression] = STATE(1212), + [sym_select_expression] = STATE(1212), + [sym_lock_expression] = STATE(1212), + [sym_unsafe_expression] = STATE(1212), + [sym_sql_expression] = STATE(1212), + [sym_c_string_literal] = STATE(1201), + [sym_raw_string_literal] = STATE(1201), + [sym_interpreted_string_literal] = STATE(1201), + [sym_mutability_modifiers] = STATE(589), + [sym_plain_type] = STATE(4123), + [sym__plain_type_without_special] = STATE(2360), + [sym_anon_struct_type] = STATE(2362), + [sym_multi_return_type] = STATE(2360), + [sym_result_type] = STATE(2360), + [sym_option_type] = STATE(2360), + [sym_qualified_type] = STATE(3460), + [sym_fixed_array_type] = STATE(2362), + [sym_array_type] = STATE(2362), + [sym_pointer_type] = STATE(2362), + [sym_wrong_pointer_type] = STATE(2362), + [sym_map_type] = STATE(2362), + [sym_channel_type] = STATE(2362), + [sym_shared_type] = STATE(2362), + [sym_thread_type] = STATE(2362), + [sym_atomic_type] = STATE(2362), + [sym_generic_type] = STATE(2362), + [sym_function_type] = STATE(2362), + [sym_identifier] = ACTIONS(1139), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(811), - [anon_sym_LBRACE] = ACTIONS(3144), - [anon_sym_LPAREN] = ACTIONS(815), - [anon_sym_fn] = ACTIONS(817), - [anon_sym_PLUS] = ACTIONS(3146), - [anon_sym_DASH] = ACTIONS(3146), - [anon_sym_STAR] = ACTIONS(3148), - [anon_sym_struct] = ACTIONS(823), + [anon_sym_DOT] = ACTIONS(631), + [anon_sym_LBRACE] = ACTIONS(633), + [anon_sym_LPAREN] = ACTIONS(637), + [anon_sym_fn] = ACTIONS(641), + [anon_sym_PLUS] = ACTIONS(643), + [anon_sym_DASH] = ACTIONS(643), + [anon_sym_STAR] = ACTIONS(645), + [anon_sym_struct] = ACTIONS(649), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(3150), - [anon_sym_go] = ACTIONS(3152), - [anon_sym_spawn] = ACTIONS(3154), - [anon_sym_json_DOTdecode] = ACTIONS(833), - [anon_sym_LBRACK2] = ACTIONS(3156), - [anon_sym_TILDE] = ACTIONS(3146), - [anon_sym_CARET] = ACTIONS(3146), - [anon_sym_AMP] = ACTIONS(3158), - [anon_sym_LT_DASH] = ACTIONS(3160), - [sym_none] = ACTIONS(841), - [sym_true] = ACTIONS(841), - [sym_false] = ACTIONS(841), - [sym_nil] = ACTIONS(841), - [anon_sym_if] = ACTIONS(843), - [anon_sym_DOLLARif] = ACTIONS(845), - [anon_sym_match] = ACTIONS(847), - [anon_sym_select] = ACTIONS(3162), - [anon_sym_lock] = ACTIONS(3164), - [anon_sym_rlock] = ACTIONS(3164), - [anon_sym_unsafe] = ACTIONS(853), - [anon_sym_sql] = ACTIONS(855), - [sym_int_literal] = ACTIONS(841), - [sym_float_literal] = ACTIONS(857), - [sym_rune_literal] = ACTIONS(857), - [sym_pseudo_compile_time_identifier] = ACTIONS(859), + [anon_sym_BANG] = ACTIONS(655), + [anon_sym_go] = ACTIONS(657), + [anon_sym_spawn] = ACTIONS(659), + [anon_sym_json_DOTdecode] = ACTIONS(661), + [anon_sym_LBRACK2] = ACTIONS(663), + [anon_sym_TILDE] = ACTIONS(643), + [anon_sym_CARET] = ACTIONS(643), + [anon_sym_AMP] = ACTIONS(665), + [anon_sym_LT_DASH] = ACTIONS(667), + [sym_none] = ACTIONS(669), + [sym_true] = ACTIONS(669), + [sym_false] = ACTIONS(669), + [sym_nil] = ACTIONS(669), + [anon_sym_if] = ACTIONS(671), + [anon_sym_DOLLARif] = ACTIONS(673), + [anon_sym_match] = ACTIONS(675), + [anon_sym_select] = ACTIONS(677), + [anon_sym_lock] = ACTIONS(679), + [anon_sym_rlock] = ACTIONS(679), + [anon_sym_unsafe] = ACTIONS(681), + [anon_sym_sql] = ACTIONS(683), + [sym_int_literal] = ACTIONS(669), + [sym_float_literal] = ACTIONS(685), + [sym_rune_literal] = ACTIONS(685), + [sym_pseudo_compile_time_identifier] = ACTIONS(687), [anon_sym_shared] = ACTIONS(83), [anon_sym_map_LBRACK] = ACTIONS(85), [anon_sym_chan] = ACTIONS(87), [anon_sym_thread] = ACTIONS(89), [anon_sym_atomic] = ACTIONS(91), - [sym___double_quote] = ACTIONS(861), - [sym___single_quote] = ACTIONS(863), - [sym___c_double_quote] = ACTIONS(865), - [sym___c_single_quote] = ACTIONS(867), - [sym___r_double_quote] = ACTIONS(869), - [sym___r_single_quote] = ACTIONS(871), + [sym___double_quote] = ACTIONS(689), + [sym___single_quote] = ACTIONS(691), + [sym___c_double_quote] = ACTIONS(693), + [sym___c_single_quote] = ACTIONS(695), + [sym___r_double_quote] = ACTIONS(697), + [sym___r_single_quote] = ACTIONS(699), }, [730] = { [sym_line_comment] = STATE(730), [sym_block_comment] = STATE(730), - [sym__expression] = STATE(1860), - [sym__expression_without_blocks] = STATE(2044), - [sym__expression_with_blocks] = STATE(2044), - [sym_inc_expression] = STATE(2045), - [sym_dec_expression] = STATE(2045), - [sym_or_block_expression] = STATE(2045), - [sym_option_propagation_expression] = STATE(2045), - [sym_result_propagation_expression] = STATE(2045), - [sym_anon_struct_value_expression] = STATE(2046), - [sym_go_expression] = STATE(2045), - [sym_spawn_expression] = STATE(2045), - [sym_parenthesized_expression] = STATE(2045), - [sym_call_expression] = STATE(2045), - [sym_type_initializer] = STATE(2046), - [sym_function_literal] = STATE(2045), - [sym_reference_expression] = STATE(1912), - [sym_type_reference_expression] = STATE(3541), - [sym_unary_expression] = STATE(2045), - [sym_receive_expression] = STATE(2045), - [sym_binary_expression] = STATE(2045), - [sym_as_type_cast_expression] = STATE(2045), - [sym__max_group] = STATE(2045), - [sym_literal] = STATE(2043), - [sym_map_init_expression] = STATE(2046), - [sym_array_creation] = STATE(2045), - [sym_fixed_array_creation] = STATE(2045), - [sym_selector_expression] = STATE(2045), - [sym_index_expression] = STATE(2045), - [sym_slice_expression] = STATE(2045), - [sym_if_expression] = STATE(2046), - [sym_compile_time_if_expression] = STATE(2046), - [sym_is_expression] = STATE(2045), - [sym_in_expression] = STATE(2045), - [sym_enum_fetch] = STATE(2045), - [sym_match_expression] = STATE(2046), - [sym_select_expression] = STATE(2046), - [sym_lock_expression] = STATE(2046), - [sym_unsafe_expression] = STATE(2046), - [sym_sql_expression] = STATE(2046), - [sym_c_string_literal] = STATE(2041), - [sym_raw_string_literal] = STATE(2041), - [sym_interpreted_string_literal] = STATE(2041), - [sym_mutability_modifiers] = STATE(689), - [sym_plain_type] = STATE(4052), - [sym__plain_type_without_special] = STATE(2302), - [sym_anon_struct_type] = STATE(2303), - [sym_multi_return_type] = STATE(2302), - [sym_result_type] = STATE(2302), - [sym_option_type] = STATE(2302), - [sym_qualified_type] = STATE(3541), - [sym_fixed_array_type] = STATE(2303), - [sym_array_type] = STATE(2303), - [sym_pointer_type] = STATE(2303), - [sym_wrong_pointer_type] = STATE(2303), - [sym_map_type] = STATE(2303), - [sym_channel_type] = STATE(2303), - [sym_shared_type] = STATE(2303), - [sym_thread_type] = STATE(2303), - [sym_atomic_type] = STATE(2303), - [sym_generic_type] = STATE(2303), - [sym_function_type] = STATE(2303), - [sym_identifier] = ACTIONS(3142), + [sym__expression] = STATE(2555), + [sym__expression_without_blocks] = STATE(2638), + [sym__expression_with_blocks] = STATE(2638), + [sym_inc_expression] = STATE(2765), + [sym_dec_expression] = STATE(2765), + [sym_or_block_expression] = STATE(2765), + [sym_option_propagation_expression] = STATE(2765), + [sym_result_propagation_expression] = STATE(2765), + [sym_anon_struct_value_expression] = STATE(2637), + [sym_go_expression] = STATE(2765), + [sym_spawn_expression] = STATE(2765), + [sym_parenthesized_expression] = STATE(2765), + [sym_call_expression] = STATE(2765), + [sym_type_initializer] = STATE(2637), + [sym_function_literal] = STATE(2765), + [sym_reference_expression] = STATE(2764), + [sym_type_reference_expression] = STATE(3460), + [sym_unary_expression] = STATE(2765), + [sym_receive_expression] = STATE(2765), + [sym_binary_expression] = STATE(2765), + [sym_as_type_cast_expression] = STATE(2765), + [sym__max_group] = STATE(2765), + [sym_literal] = STATE(2771), + [sym_map_init_expression] = STATE(2637), + [sym_array_creation] = STATE(2765), + [sym_fixed_array_creation] = STATE(2765), + [sym_selector_expression] = STATE(2765), + [sym_index_expression] = STATE(2765), + [sym_slice_expression] = STATE(2765), + [sym_if_expression] = STATE(2637), + [sym_compile_time_if_expression] = STATE(2637), + [sym_is_expression] = STATE(2765), + [sym_in_expression] = STATE(2765), + [sym_enum_fetch] = STATE(2765), + [sym_match_expression] = STATE(2637), + [sym_select_expression] = STATE(2637), + [sym_lock_expression] = STATE(2637), + [sym_unsafe_expression] = STATE(2637), + [sym_sql_expression] = STATE(2637), + [sym_c_string_literal] = STATE(2762), + [sym_raw_string_literal] = STATE(2762), + [sym_interpreted_string_literal] = STATE(2762), + [sym_mutability_modifiers] = STATE(822), + [sym_plain_type] = STATE(4011), + [sym__plain_type_without_special] = STATE(2360), + [sym_anon_struct_type] = STATE(2362), + [sym_multi_return_type] = STATE(2360), + [sym_result_type] = STATE(2360), + [sym_option_type] = STATE(2360), + [sym_qualified_type] = STATE(3460), + [sym_fixed_array_type] = STATE(2362), + [sym_array_type] = STATE(2362), + [sym_pointer_type] = STATE(2362), + [sym_wrong_pointer_type] = STATE(2362), + [sym_map_type] = STATE(2362), + [sym_channel_type] = STATE(2362), + [sym_shared_type] = STATE(2362), + [sym_thread_type] = STATE(2362), + [sym_atomic_type] = STATE(2362), + [sym_generic_type] = STATE(2362), + [sym_function_type] = STATE(2362), + [sym_identifier] = ACTIONS(1815), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(811), - [anon_sym_LBRACE] = ACTIONS(3144), - [anon_sym_LPAREN] = ACTIONS(815), - [anon_sym_fn] = ACTIONS(817), - [anon_sym_PLUS] = ACTIONS(3146), - [anon_sym_DASH] = ACTIONS(3146), - [anon_sym_STAR] = ACTIONS(3148), - [anon_sym_struct] = ACTIONS(823), + [anon_sym_DOT] = ACTIONS(1073), + [anon_sym_LBRACE] = ACTIONS(1075), + [anon_sym_LPAREN] = ACTIONS(1079), + [anon_sym_fn] = ACTIONS(1081), + [anon_sym_PLUS] = ACTIONS(3070), + [anon_sym_DASH] = ACTIONS(3070), + [anon_sym_STAR] = ACTIONS(3072), + [anon_sym_struct] = ACTIONS(1087), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(3150), - [anon_sym_go] = ACTIONS(3152), - [anon_sym_spawn] = ACTIONS(3154), - [anon_sym_json_DOTdecode] = ACTIONS(833), - [anon_sym_LBRACK2] = ACTIONS(3156), - [anon_sym_TILDE] = ACTIONS(3146), - [anon_sym_CARET] = ACTIONS(3146), - [anon_sym_AMP] = ACTIONS(3158), - [anon_sym_LT_DASH] = ACTIONS(3160), - [sym_none] = ACTIONS(841), - [sym_true] = ACTIONS(841), - [sym_false] = ACTIONS(841), - [sym_nil] = ACTIONS(841), - [anon_sym_if] = ACTIONS(843), - [anon_sym_DOLLARif] = ACTIONS(845), - [anon_sym_match] = ACTIONS(847), - [anon_sym_select] = ACTIONS(3162), - [anon_sym_lock] = ACTIONS(3164), - [anon_sym_rlock] = ACTIONS(3164), - [anon_sym_unsafe] = ACTIONS(853), - [anon_sym_sql] = ACTIONS(855), - [sym_int_literal] = ACTIONS(841), - [sym_float_literal] = ACTIONS(857), - [sym_rune_literal] = ACTIONS(857), - [sym_pseudo_compile_time_identifier] = ACTIONS(859), + [anon_sym_BANG] = ACTIONS(3074), + [anon_sym_go] = ACTIONS(3076), + [anon_sym_spawn] = ACTIONS(3078), + [anon_sym_json_DOTdecode] = ACTIONS(1095), + [anon_sym_LBRACK2] = ACTIONS(1097), + [anon_sym_TILDE] = ACTIONS(3070), + [anon_sym_CARET] = ACTIONS(3070), + [anon_sym_AMP] = ACTIONS(3080), + [anon_sym_LT_DASH] = ACTIONS(3082), + [sym_none] = ACTIONS(1103), + [sym_true] = ACTIONS(1103), + [sym_false] = ACTIONS(1103), + [sym_nil] = ACTIONS(1103), + [anon_sym_if] = ACTIONS(1105), + [anon_sym_DOLLARif] = ACTIONS(1109), + [anon_sym_match] = ACTIONS(1111), + [anon_sym_select] = ACTIONS(3084), + [anon_sym_lock] = ACTIONS(3086), + [anon_sym_rlock] = ACTIONS(3086), + [anon_sym_unsafe] = ACTIONS(1117), + [anon_sym_sql] = ACTIONS(1119), + [sym_int_literal] = ACTIONS(1103), + [sym_float_literal] = ACTIONS(1121), + [sym_rune_literal] = ACTIONS(1121), + [sym_pseudo_compile_time_identifier] = ACTIONS(1123), [anon_sym_shared] = ACTIONS(83), [anon_sym_map_LBRACK] = ACTIONS(85), [anon_sym_chan] = ACTIONS(87), [anon_sym_thread] = ACTIONS(89), [anon_sym_atomic] = ACTIONS(91), - [sym___double_quote] = ACTIONS(861), - [sym___single_quote] = ACTIONS(863), - [sym___c_double_quote] = ACTIONS(865), - [sym___c_single_quote] = ACTIONS(867), - [sym___r_double_quote] = ACTIONS(869), - [sym___r_single_quote] = ACTIONS(871), + [sym___double_quote] = ACTIONS(1125), + [sym___single_quote] = ACTIONS(1127), + [sym___c_double_quote] = ACTIONS(1129), + [sym___c_single_quote] = ACTIONS(1131), + [sym___r_double_quote] = ACTIONS(1133), + [sym___r_single_quote] = ACTIONS(1135), }, [731] = { [sym_line_comment] = STATE(731), [sym_block_comment] = STATE(731), - [sym__expression] = STATE(1764), - [sym__expression_without_blocks] = STATE(2044), - [sym__expression_with_blocks] = STATE(2044), - [sym_inc_expression] = STATE(2045), - [sym_dec_expression] = STATE(2045), - [sym_or_block_expression] = STATE(2045), - [sym_option_propagation_expression] = STATE(2045), - [sym_result_propagation_expression] = STATE(2045), - [sym_anon_struct_value_expression] = STATE(2046), - [sym_go_expression] = STATE(2045), - [sym_spawn_expression] = STATE(2045), - [sym_parenthesized_expression] = STATE(2045), - [sym_call_expression] = STATE(2045), - [sym_type_initializer] = STATE(2046), - [sym_function_literal] = STATE(2045), - [sym_reference_expression] = STATE(1912), - [sym_type_reference_expression] = STATE(3541), - [sym_unary_expression] = STATE(2045), - [sym_receive_expression] = STATE(2045), - [sym_binary_expression] = STATE(2045), - [sym_as_type_cast_expression] = STATE(2045), - [sym__max_group] = STATE(2045), - [sym_literal] = STATE(2043), - [sym_map_init_expression] = STATE(2046), - [sym_array_creation] = STATE(2045), - [sym_fixed_array_creation] = STATE(2045), - [sym_selector_expression] = STATE(2045), - [sym_index_expression] = STATE(2045), - [sym_slice_expression] = STATE(2045), - [sym_if_expression] = STATE(2046), - [sym_compile_time_if_expression] = STATE(2046), - [sym_is_expression] = STATE(2045), - [sym_in_expression] = STATE(2045), - [sym_enum_fetch] = STATE(2045), - [sym_match_expression] = STATE(2046), - [sym_select_expression] = STATE(2046), - [sym_lock_expression] = STATE(2046), - [sym_unsafe_expression] = STATE(2046), - [sym_sql_expression] = STATE(2046), - [sym_c_string_literal] = STATE(2041), - [sym_raw_string_literal] = STATE(2041), - [sym_interpreted_string_literal] = STATE(2041), - [sym_mutability_modifiers] = STATE(689), - [sym_plain_type] = STATE(4066), - [sym__plain_type_without_special] = STATE(2302), - [sym_anon_struct_type] = STATE(2303), - [sym_multi_return_type] = STATE(2302), - [sym_result_type] = STATE(2302), - [sym_option_type] = STATE(2302), - [sym_qualified_type] = STATE(3541), - [sym_fixed_array_type] = STATE(2303), - [sym_array_type] = STATE(2303), - [sym_pointer_type] = STATE(2303), - [sym_wrong_pointer_type] = STATE(2303), - [sym_map_type] = STATE(2303), - [sym_channel_type] = STATE(2303), - [sym_shared_type] = STATE(2303), - [sym_thread_type] = STATE(2303), - [sym_atomic_type] = STATE(2303), - [sym_generic_type] = STATE(2303), - [sym_function_type] = STATE(2303), - [sym_identifier] = ACTIONS(3142), + [sym__expression] = STATE(2368), + [sym__expression_without_blocks] = STATE(2468), + [sym__expression_with_blocks] = STATE(2468), + [sym_inc_expression] = STATE(2469), + [sym_dec_expression] = STATE(2469), + [sym_or_block_expression] = STATE(2469), + [sym_option_propagation_expression] = STATE(2469), + [sym_result_propagation_expression] = STATE(2469), + [sym_anon_struct_value_expression] = STATE(2470), + [sym_go_expression] = STATE(2469), + [sym_spawn_expression] = STATE(2469), + [sym_parenthesized_expression] = STATE(2469), + [sym_call_expression] = STATE(2469), + [sym_type_initializer] = STATE(2470), + [sym_function_literal] = STATE(2469), + [sym_reference_expression] = STATE(2487), + [sym_type_reference_expression] = STATE(3460), + [sym_unary_expression] = STATE(2469), + [sym_receive_expression] = STATE(2469), + [sym_binary_expression] = STATE(2469), + [sym_as_type_cast_expression] = STATE(2469), + [sym__max_group] = STATE(2469), + [sym_literal] = STATE(2465), + [sym_map_init_expression] = STATE(2470), + [sym_array_creation] = STATE(2469), + [sym_fixed_array_creation] = STATE(2469), + [sym_selector_expression] = STATE(2469), + [sym_index_expression] = STATE(2469), + [sym_slice_expression] = STATE(2469), + [sym_if_expression] = STATE(2470), + [sym_compile_time_if_expression] = STATE(2470), + [sym_is_expression] = STATE(2469), + [sym_in_expression] = STATE(2469), + [sym_enum_fetch] = STATE(2469), + [sym_match_expression] = STATE(2470), + [sym_select_expression] = STATE(2470), + [sym_lock_expression] = STATE(2470), + [sym_unsafe_expression] = STATE(2470), + [sym_sql_expression] = STATE(2470), + [sym_c_string_literal] = STATE(2464), + [sym_raw_string_literal] = STATE(2464), + [sym_interpreted_string_literal] = STATE(2464), + [sym_mutability_modifiers] = STATE(561), + [sym_plain_type] = STATE(4038), + [sym__plain_type_without_special] = STATE(2360), + [sym_anon_struct_type] = STATE(2362), + [sym_multi_return_type] = STATE(2360), + [sym_result_type] = STATE(2360), + [sym_option_type] = STATE(2360), + [sym_qualified_type] = STATE(3460), + [sym_fixed_array_type] = STATE(2362), + [sym_array_type] = STATE(2362), + [sym_pointer_type] = STATE(2362), + [sym_wrong_pointer_type] = STATE(2362), + [sym_map_type] = STATE(2362), + [sym_channel_type] = STATE(2362), + [sym_shared_type] = STATE(2362), + [sym_thread_type] = STATE(2362), + [sym_atomic_type] = STATE(2362), + [sym_generic_type] = STATE(2362), + [sym_function_type] = STATE(2362), + [sym_identifier] = ACTIONS(1691), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(811), - [anon_sym_LBRACE] = ACTIONS(3144), - [anon_sym_LPAREN] = ACTIONS(815), - [anon_sym_fn] = ACTIONS(817), - [anon_sym_PLUS] = ACTIONS(3146), - [anon_sym_DASH] = ACTIONS(3146), - [anon_sym_STAR] = ACTIONS(3148), - [anon_sym_struct] = ACTIONS(823), + [anon_sym_DOT] = ACTIONS(1693), + [anon_sym_LBRACE] = ACTIONS(2151), + [anon_sym_LPAREN] = ACTIONS(2153), + [anon_sym_fn] = ACTIONS(1699), + [anon_sym_PLUS] = ACTIONS(2155), + [anon_sym_DASH] = ACTIONS(2155), + [anon_sym_STAR] = ACTIONS(2157), + [anon_sym_struct] = ACTIONS(1705), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(3150), - [anon_sym_go] = ACTIONS(3152), - [anon_sym_spawn] = ACTIONS(3154), - [anon_sym_json_DOTdecode] = ACTIONS(833), - [anon_sym_LBRACK2] = ACTIONS(3156), - [anon_sym_TILDE] = ACTIONS(3146), - [anon_sym_CARET] = ACTIONS(3146), - [anon_sym_AMP] = ACTIONS(3158), - [anon_sym_LT_DASH] = ACTIONS(3160), - [sym_none] = ACTIONS(841), - [sym_true] = ACTIONS(841), - [sym_false] = ACTIONS(841), - [sym_nil] = ACTIONS(841), - [anon_sym_if] = ACTIONS(843), - [anon_sym_DOLLARif] = ACTIONS(845), - [anon_sym_match] = ACTIONS(847), - [anon_sym_select] = ACTIONS(3162), - [anon_sym_lock] = ACTIONS(3164), - [anon_sym_rlock] = ACTIONS(3164), - [anon_sym_unsafe] = ACTIONS(853), - [anon_sym_sql] = ACTIONS(855), - [sym_int_literal] = ACTIONS(841), - [sym_float_literal] = ACTIONS(857), - [sym_rune_literal] = ACTIONS(857), - [sym_pseudo_compile_time_identifier] = ACTIONS(859), + [anon_sym_BANG] = ACTIONS(2159), + [anon_sym_go] = ACTIONS(1709), + [anon_sym_spawn] = ACTIONS(1711), + [anon_sym_json_DOTdecode] = ACTIONS(2161), + [anon_sym_LBRACK2] = ACTIONS(2163), + [anon_sym_TILDE] = ACTIONS(2155), + [anon_sym_CARET] = ACTIONS(2155), + [anon_sym_AMP] = ACTIONS(2165), + [anon_sym_LT_DASH] = ACTIONS(2167), + [sym_none] = ACTIONS(1721), + [sym_true] = ACTIONS(1721), + [sym_false] = ACTIONS(1721), + [sym_nil] = ACTIONS(1721), + [anon_sym_if] = ACTIONS(1723), + [anon_sym_DOLLARif] = ACTIONS(1725), + [anon_sym_match] = ACTIONS(1727), + [anon_sym_select] = ACTIONS(1729), + [anon_sym_lock] = ACTIONS(1731), + [anon_sym_rlock] = ACTIONS(1731), + [anon_sym_unsafe] = ACTIONS(1733), + [anon_sym_sql] = ACTIONS(1735), + [sym_int_literal] = ACTIONS(1721), + [sym_float_literal] = ACTIONS(2169), + [sym_rune_literal] = ACTIONS(2169), + [sym_pseudo_compile_time_identifier] = ACTIONS(1737), [anon_sym_shared] = ACTIONS(83), [anon_sym_map_LBRACK] = ACTIONS(85), [anon_sym_chan] = ACTIONS(87), [anon_sym_thread] = ACTIONS(89), [anon_sym_atomic] = ACTIONS(91), - [sym___double_quote] = ACTIONS(861), - [sym___single_quote] = ACTIONS(863), - [sym___c_double_quote] = ACTIONS(865), - [sym___c_single_quote] = ACTIONS(867), - [sym___r_double_quote] = ACTIONS(869), - [sym___r_single_quote] = ACTIONS(871), + [sym___double_quote] = ACTIONS(2171), + [sym___single_quote] = ACTIONS(2173), + [sym___c_double_quote] = ACTIONS(2175), + [sym___c_single_quote] = ACTIONS(2177), + [sym___r_double_quote] = ACTIONS(2179), + [sym___r_single_quote] = ACTIONS(2181), }, [732] = { [sym_line_comment] = STATE(732), [sym_block_comment] = STATE(732), - [sym__expression] = STATE(1764), - [sym__expression_without_blocks] = STATE(2044), - [sym__expression_with_blocks] = STATE(2044), - [sym_inc_expression] = STATE(2045), - [sym_dec_expression] = STATE(2045), - [sym_or_block_expression] = STATE(2045), - [sym_option_propagation_expression] = STATE(2045), - [sym_result_propagation_expression] = STATE(2045), - [sym_anon_struct_value_expression] = STATE(2046), - [sym_go_expression] = STATE(2045), - [sym_spawn_expression] = STATE(2045), - [sym_parenthesized_expression] = STATE(2045), - [sym_call_expression] = STATE(2045), - [sym_type_initializer] = STATE(2046), - [sym_function_literal] = STATE(2045), - [sym_reference_expression] = STATE(1912), - [sym_type_reference_expression] = STATE(3541), - [sym_unary_expression] = STATE(2045), - [sym_receive_expression] = STATE(2045), - [sym_binary_expression] = STATE(2045), - [sym_as_type_cast_expression] = STATE(2045), - [sym__max_group] = STATE(2045), - [sym_literal] = STATE(2043), - [sym_map_init_expression] = STATE(2046), - [sym_array_creation] = STATE(2045), - [sym_fixed_array_creation] = STATE(2045), - [sym_selector_expression] = STATE(2045), - [sym_index_expression] = STATE(2045), - [sym_slice_expression] = STATE(2045), - [sym_if_expression] = STATE(2046), - [sym_compile_time_if_expression] = STATE(2046), - [sym_is_expression] = STATE(2045), - [sym_in_expression] = STATE(2045), - [sym_enum_fetch] = STATE(2045), - [sym_match_expression] = STATE(2046), - [sym_select_expression] = STATE(2046), - [sym_lock_expression] = STATE(2046), - [sym_unsafe_expression] = STATE(2046), - [sym_sql_expression] = STATE(2046), - [sym_c_string_literal] = STATE(2041), - [sym_raw_string_literal] = STATE(2041), - [sym_interpreted_string_literal] = STATE(2041), - [sym_mutability_modifiers] = STATE(689), - [sym_plain_type] = STATE(4058), - [sym__plain_type_without_special] = STATE(2302), - [sym_anon_struct_type] = STATE(2303), - [sym_multi_return_type] = STATE(2302), - [sym_result_type] = STATE(2302), - [sym_option_type] = STATE(2302), - [sym_qualified_type] = STATE(3541), - [sym_fixed_array_type] = STATE(2303), - [sym_array_type] = STATE(2303), - [sym_pointer_type] = STATE(2303), - [sym_wrong_pointer_type] = STATE(2303), - [sym_map_type] = STATE(2303), - [sym_channel_type] = STATE(2303), - [sym_shared_type] = STATE(2303), - [sym_thread_type] = STATE(2303), - [sym_atomic_type] = STATE(2303), - [sym_generic_type] = STATE(2303), - [sym_function_type] = STATE(2303), - [sym_identifier] = ACTIONS(3142), + [sym__expression] = STATE(2433), + [sym__expression_without_blocks] = STATE(2638), + [sym__expression_with_blocks] = STATE(2638), + [sym_inc_expression] = STATE(2765), + [sym_dec_expression] = STATE(2765), + [sym_or_block_expression] = STATE(2765), + [sym_option_propagation_expression] = STATE(2765), + [sym_result_propagation_expression] = STATE(2765), + [sym_anon_struct_value_expression] = STATE(2637), + [sym_go_expression] = STATE(2765), + [sym_spawn_expression] = STATE(2765), + [sym_parenthesized_expression] = STATE(2765), + [sym_call_expression] = STATE(2765), + [sym_type_initializer] = STATE(2637), + [sym_function_literal] = STATE(2765), + [sym_reference_expression] = STATE(2764), + [sym_type_reference_expression] = STATE(3460), + [sym_unary_expression] = STATE(2765), + [sym_receive_expression] = STATE(2765), + [sym_binary_expression] = STATE(2765), + [sym_as_type_cast_expression] = STATE(2765), + [sym__max_group] = STATE(2765), + [sym_literal] = STATE(2771), + [sym_map_init_expression] = STATE(2637), + [sym_array_creation] = STATE(2765), + [sym_fixed_array_creation] = STATE(2765), + [sym_selector_expression] = STATE(2765), + [sym_index_expression] = STATE(2765), + [sym_slice_expression] = STATE(2765), + [sym_if_expression] = STATE(2637), + [sym_compile_time_if_expression] = STATE(2637), + [sym_is_expression] = STATE(2765), + [sym_in_expression] = STATE(2765), + [sym_enum_fetch] = STATE(2765), + [sym_match_expression] = STATE(2637), + [sym_select_expression] = STATE(2637), + [sym_lock_expression] = STATE(2637), + [sym_unsafe_expression] = STATE(2637), + [sym_sql_expression] = STATE(2637), + [sym_c_string_literal] = STATE(2762), + [sym_raw_string_literal] = STATE(2762), + [sym_interpreted_string_literal] = STATE(2762), + [sym_mutability_modifiers] = STATE(822), + [sym_plain_type] = STATE(4011), + [sym__plain_type_without_special] = STATE(2360), + [sym_anon_struct_type] = STATE(2362), + [sym_multi_return_type] = STATE(2360), + [sym_result_type] = STATE(2360), + [sym_option_type] = STATE(2360), + [sym_qualified_type] = STATE(3460), + [sym_fixed_array_type] = STATE(2362), + [sym_array_type] = STATE(2362), + [sym_pointer_type] = STATE(2362), + [sym_wrong_pointer_type] = STATE(2362), + [sym_map_type] = STATE(2362), + [sym_channel_type] = STATE(2362), + [sym_shared_type] = STATE(2362), + [sym_thread_type] = STATE(2362), + [sym_atomic_type] = STATE(2362), + [sym_generic_type] = STATE(2362), + [sym_function_type] = STATE(2362), + [sym_identifier] = ACTIONS(1815), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(811), - [anon_sym_LBRACE] = ACTIONS(3144), - [anon_sym_LPAREN] = ACTIONS(815), - [anon_sym_fn] = ACTIONS(817), - [anon_sym_PLUS] = ACTIONS(3146), - [anon_sym_DASH] = ACTIONS(3146), - [anon_sym_STAR] = ACTIONS(3148), - [anon_sym_struct] = ACTIONS(823), + [anon_sym_DOT] = ACTIONS(1073), + [anon_sym_LBRACE] = ACTIONS(1075), + [anon_sym_LPAREN] = ACTIONS(1079), + [anon_sym_fn] = ACTIONS(1081), + [anon_sym_PLUS] = ACTIONS(3070), + [anon_sym_DASH] = ACTIONS(3070), + [anon_sym_STAR] = ACTIONS(3072), + [anon_sym_struct] = ACTIONS(1087), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(3150), - [anon_sym_go] = ACTIONS(3152), - [anon_sym_spawn] = ACTIONS(3154), - [anon_sym_json_DOTdecode] = ACTIONS(833), - [anon_sym_LBRACK2] = ACTIONS(3156), - [anon_sym_TILDE] = ACTIONS(3146), - [anon_sym_CARET] = ACTIONS(3146), - [anon_sym_AMP] = ACTIONS(3158), - [anon_sym_LT_DASH] = ACTIONS(3160), - [sym_none] = ACTIONS(841), - [sym_true] = ACTIONS(841), - [sym_false] = ACTIONS(841), - [sym_nil] = ACTIONS(841), - [anon_sym_if] = ACTIONS(843), - [anon_sym_DOLLARif] = ACTIONS(845), - [anon_sym_match] = ACTIONS(847), - [anon_sym_select] = ACTIONS(3162), - [anon_sym_lock] = ACTIONS(3164), - [anon_sym_rlock] = ACTIONS(3164), - [anon_sym_unsafe] = ACTIONS(853), - [anon_sym_sql] = ACTIONS(855), - [sym_int_literal] = ACTIONS(841), - [sym_float_literal] = ACTIONS(857), - [sym_rune_literal] = ACTIONS(857), - [sym_pseudo_compile_time_identifier] = ACTIONS(859), + [anon_sym_BANG] = ACTIONS(3074), + [anon_sym_go] = ACTIONS(3076), + [anon_sym_spawn] = ACTIONS(3078), + [anon_sym_json_DOTdecode] = ACTIONS(1095), + [anon_sym_LBRACK2] = ACTIONS(1097), + [anon_sym_TILDE] = ACTIONS(3070), + [anon_sym_CARET] = ACTIONS(3070), + [anon_sym_AMP] = ACTIONS(3080), + [anon_sym_LT_DASH] = ACTIONS(3082), + [sym_none] = ACTIONS(1103), + [sym_true] = ACTIONS(1103), + [sym_false] = ACTIONS(1103), + [sym_nil] = ACTIONS(1103), + [anon_sym_if] = ACTIONS(1105), + [anon_sym_DOLLARif] = ACTIONS(1109), + [anon_sym_match] = ACTIONS(1111), + [anon_sym_select] = ACTIONS(3084), + [anon_sym_lock] = ACTIONS(3086), + [anon_sym_rlock] = ACTIONS(3086), + [anon_sym_unsafe] = ACTIONS(1117), + [anon_sym_sql] = ACTIONS(1119), + [sym_int_literal] = ACTIONS(1103), + [sym_float_literal] = ACTIONS(1121), + [sym_rune_literal] = ACTIONS(1121), + [sym_pseudo_compile_time_identifier] = ACTIONS(1123), [anon_sym_shared] = ACTIONS(83), [anon_sym_map_LBRACK] = ACTIONS(85), [anon_sym_chan] = ACTIONS(87), [anon_sym_thread] = ACTIONS(89), [anon_sym_atomic] = ACTIONS(91), - [sym___double_quote] = ACTIONS(861), - [sym___single_quote] = ACTIONS(863), - [sym___c_double_quote] = ACTIONS(865), - [sym___c_single_quote] = ACTIONS(867), - [sym___r_double_quote] = ACTIONS(869), - [sym___r_single_quote] = ACTIONS(871), + [sym___double_quote] = ACTIONS(1125), + [sym___single_quote] = ACTIONS(1127), + [sym___c_double_quote] = ACTIONS(1129), + [sym___c_single_quote] = ACTIONS(1131), + [sym___r_double_quote] = ACTIONS(1133), + [sym___r_single_quote] = ACTIONS(1135), }, [733] = { [sym_line_comment] = STATE(733), [sym_block_comment] = STATE(733), - [sym__expression] = STATE(1764), - [sym__expression_without_blocks] = STATE(2044), - [sym__expression_with_blocks] = STATE(2044), - [sym_inc_expression] = STATE(2045), - [sym_dec_expression] = STATE(2045), - [sym_or_block_expression] = STATE(2045), - [sym_option_propagation_expression] = STATE(2045), - [sym_result_propagation_expression] = STATE(2045), - [sym_anon_struct_value_expression] = STATE(2046), - [sym_go_expression] = STATE(2045), - [sym_spawn_expression] = STATE(2045), - [sym_parenthesized_expression] = STATE(2045), - [sym_call_expression] = STATE(2045), - [sym_type_initializer] = STATE(2046), - [sym_function_literal] = STATE(2045), - [sym_reference_expression] = STATE(1912), - [sym_type_reference_expression] = STATE(3541), - [sym_unary_expression] = STATE(2045), - [sym_receive_expression] = STATE(2045), - [sym_binary_expression] = STATE(2045), - [sym_as_type_cast_expression] = STATE(2045), - [sym__max_group] = STATE(2045), - [sym_literal] = STATE(2043), - [sym_map_init_expression] = STATE(2046), - [sym_array_creation] = STATE(2045), - [sym_fixed_array_creation] = STATE(2045), - [sym_selector_expression] = STATE(2045), - [sym_index_expression] = STATE(2045), - [sym_slice_expression] = STATE(2045), - [sym_if_expression] = STATE(2046), - [sym_compile_time_if_expression] = STATE(2046), - [sym_is_expression] = STATE(2045), - [sym_in_expression] = STATE(2045), - [sym_enum_fetch] = STATE(2045), - [sym_match_expression] = STATE(2046), - [sym_select_expression] = STATE(2046), - [sym_lock_expression] = STATE(2046), - [sym_unsafe_expression] = STATE(2046), - [sym_sql_expression] = STATE(2046), - [sym_c_string_literal] = STATE(2041), - [sym_raw_string_literal] = STATE(2041), - [sym_interpreted_string_literal] = STATE(2041), - [sym_mutability_modifiers] = STATE(689), - [sym_plain_type] = STATE(4052), - [sym__plain_type_without_special] = STATE(2302), - [sym_anon_struct_type] = STATE(2303), - [sym_multi_return_type] = STATE(2302), - [sym_result_type] = STATE(2302), - [sym_option_type] = STATE(2302), - [sym_qualified_type] = STATE(3541), - [sym_fixed_array_type] = STATE(2303), - [sym_array_type] = STATE(2303), - [sym_pointer_type] = STATE(2303), - [sym_wrong_pointer_type] = STATE(2303), - [sym_map_type] = STATE(2303), - [sym_channel_type] = STATE(2303), - [sym_shared_type] = STATE(2303), - [sym_thread_type] = STATE(2303), - [sym_atomic_type] = STATE(2303), - [sym_generic_type] = STATE(2303), - [sym_function_type] = STATE(2303), - [sym_identifier] = ACTIONS(3142), + [sym__expression] = STATE(2785), + [sym__expression_without_blocks] = STATE(2347), + [sym__expression_with_blocks] = STATE(2347), + [sym_inc_expression] = STATE(2379), + [sym_dec_expression] = STATE(2379), + [sym_or_block_expression] = STATE(2379), + [sym_option_propagation_expression] = STATE(2379), + [sym_result_propagation_expression] = STATE(2379), + [sym_anon_struct_value_expression] = STATE(2378), + [sym_go_expression] = STATE(2379), + [sym_spawn_expression] = STATE(2379), + [sym_parenthesized_expression] = STATE(2379), + [sym_call_expression] = STATE(2379), + [sym_type_initializer] = STATE(2378), + [sym_function_literal] = STATE(2379), + [sym_reference_expression] = STATE(2377), + [sym_type_reference_expression] = STATE(3460), + [sym_unary_expression] = STATE(2379), + [sym_receive_expression] = STATE(2379), + [sym_binary_expression] = STATE(2379), + [sym_as_type_cast_expression] = STATE(2379), + [sym__max_group] = STATE(2379), + [sym_literal] = STATE(2392), + [sym_map_init_expression] = STATE(2378), + [sym_array_creation] = STATE(2379), + [sym_fixed_array_creation] = STATE(2379), + [sym_selector_expression] = STATE(2379), + [sym_index_expression] = STATE(2379), + [sym_slice_expression] = STATE(2379), + [sym_if_expression] = STATE(2378), + [sym_compile_time_if_expression] = STATE(2378), + [sym_is_expression] = STATE(2379), + [sym_in_expression] = STATE(2379), + [sym_enum_fetch] = STATE(2379), + [sym_match_expression] = STATE(2378), + [sym_select_expression] = STATE(2378), + [sym_lock_expression] = STATE(2378), + [sym_unsafe_expression] = STATE(2378), + [sym_sql_expression] = STATE(2378), + [sym_c_string_literal] = STATE(2401), + [sym_raw_string_literal] = STATE(2401), + [sym_interpreted_string_literal] = STATE(2401), + [sym_mutability_modifiers] = STATE(939), + [sym_plain_type] = STATE(4160), + [sym__plain_type_without_special] = STATE(2360), + [sym_anon_struct_type] = STATE(2362), + [sym_multi_return_type] = STATE(2360), + [sym_result_type] = STATE(2360), + [sym_option_type] = STATE(2360), + [sym_qualified_type] = STATE(3460), + [sym_fixed_array_type] = STATE(2362), + [sym_array_type] = STATE(2362), + [sym_pointer_type] = STATE(2362), + [sym_wrong_pointer_type] = STATE(2362), + [sym_map_type] = STATE(2362), + [sym_channel_type] = STATE(2362), + [sym_shared_type] = STATE(2362), + [sym_thread_type] = STATE(2362), + [sym_atomic_type] = STATE(2362), + [sym_generic_type] = STATE(2362), + [sym_function_type] = STATE(2362), + [sym_identifier] = ACTIONS(2477), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(811), - [anon_sym_LBRACE] = ACTIONS(3144), - [anon_sym_LPAREN] = ACTIONS(815), - [anon_sym_fn] = ACTIONS(817), - [anon_sym_PLUS] = ACTIONS(3146), - [anon_sym_DASH] = ACTIONS(3146), - [anon_sym_STAR] = ACTIONS(3148), - [anon_sym_struct] = ACTIONS(823), + [anon_sym_DOT] = ACTIONS(1430), + [anon_sym_LBRACE] = ACTIONS(1432), + [anon_sym_LPAREN] = ACTIONS(1434), + [anon_sym_fn] = ACTIONS(1436), + [anon_sym_PLUS] = ACTIONS(2271), + [anon_sym_DASH] = ACTIONS(2271), + [anon_sym_STAR] = ACTIONS(3354), + [anon_sym_struct] = ACTIONS(1442), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(3150), - [anon_sym_go] = ACTIONS(3152), - [anon_sym_spawn] = ACTIONS(3154), - [anon_sym_json_DOTdecode] = ACTIONS(833), - [anon_sym_LBRACK2] = ACTIONS(3156), - [anon_sym_TILDE] = ACTIONS(3146), - [anon_sym_CARET] = ACTIONS(3146), - [anon_sym_AMP] = ACTIONS(3158), - [anon_sym_LT_DASH] = ACTIONS(3160), - [sym_none] = ACTIONS(841), - [sym_true] = ACTIONS(841), - [sym_false] = ACTIONS(841), - [sym_nil] = ACTIONS(841), - [anon_sym_if] = ACTIONS(843), - [anon_sym_DOLLARif] = ACTIONS(845), - [anon_sym_match] = ACTIONS(847), - [anon_sym_select] = ACTIONS(3162), - [anon_sym_lock] = ACTIONS(3164), - [anon_sym_rlock] = ACTIONS(3164), - [anon_sym_unsafe] = ACTIONS(853), - [anon_sym_sql] = ACTIONS(855), - [sym_int_literal] = ACTIONS(841), - [sym_float_literal] = ACTIONS(857), - [sym_rune_literal] = ACTIONS(857), - [sym_pseudo_compile_time_identifier] = ACTIONS(859), + [anon_sym_BANG] = ACTIONS(3356), + [anon_sym_go] = ACTIONS(2277), + [anon_sym_spawn] = ACTIONS(2279), + [anon_sym_json_DOTdecode] = ACTIONS(1450), + [anon_sym_LBRACK2] = ACTIONS(1452), + [anon_sym_TILDE] = ACTIONS(2271), + [anon_sym_CARET] = ACTIONS(2271), + [anon_sym_AMP] = ACTIONS(3358), + [anon_sym_LT_DASH] = ACTIONS(2283), + [sym_none] = ACTIONS(1458), + [sym_true] = ACTIONS(1458), + [sym_false] = ACTIONS(1458), + [sym_nil] = ACTIONS(1458), + [anon_sym_if] = ACTIONS(1833), + [anon_sym_DOLLARif] = ACTIONS(1462), + [anon_sym_match] = ACTIONS(1464), + [anon_sym_select] = ACTIONS(1466), + [anon_sym_lock] = ACTIONS(1468), + [anon_sym_rlock] = ACTIONS(1468), + [anon_sym_unsafe] = ACTIONS(1839), + [anon_sym_sql] = ACTIONS(1472), + [sym_int_literal] = ACTIONS(1458), + [sym_float_literal] = ACTIONS(1474), + [sym_rune_literal] = ACTIONS(1474), + [sym_pseudo_compile_time_identifier] = ACTIONS(1476), [anon_sym_shared] = ACTIONS(83), [anon_sym_map_LBRACK] = ACTIONS(85), [anon_sym_chan] = ACTIONS(87), [anon_sym_thread] = ACTIONS(89), [anon_sym_atomic] = ACTIONS(91), - [sym___double_quote] = ACTIONS(861), - [sym___single_quote] = ACTIONS(863), - [sym___c_double_quote] = ACTIONS(865), - [sym___c_single_quote] = ACTIONS(867), - [sym___r_double_quote] = ACTIONS(869), - [sym___r_single_quote] = ACTIONS(871), + [sym___double_quote] = ACTIONS(1480), + [sym___single_quote] = ACTIONS(1482), + [sym___c_double_quote] = ACTIONS(1484), + [sym___c_single_quote] = ACTIONS(1486), + [sym___r_double_quote] = ACTIONS(1488), + [sym___r_single_quote] = ACTIONS(1490), }, [734] = { [sym_line_comment] = STATE(734), [sym_block_comment] = STATE(734), - [sym__expression] = STATE(2831), - [sym__expression_without_blocks] = STATE(2300), - [sym__expression_with_blocks] = STATE(2300), - [sym_inc_expression] = STATE(2307), - [sym_dec_expression] = STATE(2307), - [sym_or_block_expression] = STATE(2307), - [sym_option_propagation_expression] = STATE(2307), - [sym_result_propagation_expression] = STATE(2307), - [sym_anon_struct_value_expression] = STATE(2380), - [sym_go_expression] = STATE(2307), - [sym_spawn_expression] = STATE(2307), - [sym_parenthesized_expression] = STATE(2307), - [sym_call_expression] = STATE(2307), - [sym_type_initializer] = STATE(2380), - [sym_function_literal] = STATE(2307), - [sym_reference_expression] = STATE(2913), - [sym_type_reference_expression] = STATE(3541), - [sym_unary_expression] = STATE(2307), - [sym_receive_expression] = STATE(2307), - [sym_binary_expression] = STATE(2307), - [sym_as_type_cast_expression] = STATE(2307), - [sym__max_group] = STATE(2307), - [sym_literal] = STATE(2292), - [sym_map_init_expression] = STATE(2380), - [sym_array_creation] = STATE(2307), - [sym_fixed_array_creation] = STATE(2307), - [sym_selector_expression] = STATE(2911), - [sym_index_expression] = STATE(2307), - [sym_slice_expression] = STATE(2307), - [sym_if_expression] = STATE(2380), - [sym_compile_time_if_expression] = STATE(2380), - [sym_is_expression] = STATE(2307), - [sym_in_expression] = STATE(2307), - [sym_enum_fetch] = STATE(2307), - [sym_match_expression] = STATE(2380), - [sym_select_expression] = STATE(2380), - [sym_lock_expression] = STATE(2380), - [sym_unsafe_expression] = STATE(2380), - [sym_sql_expression] = STATE(2380), - [sym_c_string_literal] = STATE(2308), - [sym_raw_string_literal] = STATE(2308), - [sym_interpreted_string_literal] = STATE(2308), + [sym__expression] = STATE(2830), + [sym__expression_without_blocks] = STATE(2347), + [sym__expression_with_blocks] = STATE(2347), + [sym_inc_expression] = STATE(2379), + [sym_dec_expression] = STATE(2379), + [sym_or_block_expression] = STATE(2379), + [sym_option_propagation_expression] = STATE(2379), + [sym_result_propagation_expression] = STATE(2379), + [sym_anon_struct_value_expression] = STATE(2378), + [sym_go_expression] = STATE(2379), + [sym_spawn_expression] = STATE(2379), + [sym_parenthesized_expression] = STATE(2379), + [sym_call_expression] = STATE(2379), + [sym_type_initializer] = STATE(2378), + [sym_function_literal] = STATE(2379), + [sym_reference_expression] = STATE(2889), + [sym_type_reference_expression] = STATE(3460), + [sym_unary_expression] = STATE(2379), + [sym_receive_expression] = STATE(2379), + [sym_binary_expression] = STATE(2379), + [sym_as_type_cast_expression] = STATE(2379), + [sym__max_group] = STATE(2379), + [sym_literal] = STATE(2392), + [sym_map_init_expression] = STATE(2378), + [sym_array_creation] = STATE(2379), + [sym_fixed_array_creation] = STATE(2379), + [sym_selector_expression] = STATE(2905), + [sym_index_expression] = STATE(2379), + [sym_slice_expression] = STATE(2379), + [sym_if_expression] = STATE(2378), + [sym_compile_time_if_expression] = STATE(2378), + [sym_is_expression] = STATE(2379), + [sym_in_expression] = STATE(2379), + [sym_enum_fetch] = STATE(2379), + [sym_match_expression] = STATE(2378), + [sym_select_expression] = STATE(2378), + [sym_lock_expression] = STATE(2378), + [sym_unsafe_expression] = STATE(2378), + [sym_sql_expression] = STATE(2378), + [sym_c_string_literal] = STATE(2401), + [sym_raw_string_literal] = STATE(2401), + [sym_interpreted_string_literal] = STATE(2401), [sym_mutability_modifiers] = STATE(939), - [sym_plain_type] = STATE(4297), - [sym__plain_type_without_special] = STATE(2302), - [sym_anon_struct_type] = STATE(2303), - [sym_multi_return_type] = STATE(2302), - [sym_result_type] = STATE(2302), - [sym_option_type] = STATE(2302), - [sym_qualified_type] = STATE(3541), - [sym_fixed_array_type] = STATE(2303), - [sym_array_type] = STATE(2303), - [sym_pointer_type] = STATE(2303), - [sym_wrong_pointer_type] = STATE(2303), - [sym_map_type] = STATE(2303), - [sym_channel_type] = STATE(2303), - [sym_shared_type] = STATE(2303), - [sym_thread_type] = STATE(2303), - [sym_atomic_type] = STATE(2303), - [sym_generic_type] = STATE(2303), - [sym_function_type] = STATE(2303), - [sym_identifier] = ACTIONS(2189), + [sym_plain_type] = STATE(4160), + [sym__plain_type_without_special] = STATE(2360), + [sym_anon_struct_type] = STATE(2362), + [sym_multi_return_type] = STATE(2360), + [sym_result_type] = STATE(2360), + [sym_option_type] = STATE(2360), + [sym_qualified_type] = STATE(3460), + [sym_fixed_array_type] = STATE(2362), + [sym_array_type] = STATE(2362), + [sym_pointer_type] = STATE(2362), + [sym_wrong_pointer_type] = STATE(2362), + [sym_map_type] = STATE(2362), + [sym_channel_type] = STATE(2362), + [sym_shared_type] = STATE(2362), + [sym_thread_type] = STATE(2362), + [sym_atomic_type] = STATE(2362), + [sym_generic_type] = STATE(2362), + [sym_function_type] = STATE(2362), + [sym_identifier] = ACTIONS(2477), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1428), - [anon_sym_LBRACE] = ACTIONS(1430), - [anon_sym_LPAREN] = ACTIONS(1432), - [anon_sym_fn] = ACTIONS(1434), - [anon_sym_PLUS] = ACTIONS(1436), - [anon_sym_DASH] = ACTIONS(1436), - [anon_sym_STAR] = ACTIONS(1438), - [anon_sym_struct] = ACTIONS(1440), + [anon_sym_DOT] = ACTIONS(1430), + [anon_sym_LBRACE] = ACTIONS(1432), + [anon_sym_LPAREN] = ACTIONS(1434), + [anon_sym_fn] = ACTIONS(1436), + [anon_sym_PLUS] = ACTIONS(1438), + [anon_sym_DASH] = ACTIONS(1438), + [anon_sym_STAR] = ACTIONS(1440), + [anon_sym_struct] = ACTIONS(1442), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(1442), - [anon_sym_go] = ACTIONS(1444), - [anon_sym_spawn] = ACTIONS(1446), - [anon_sym_json_DOTdecode] = ACTIONS(1448), - [anon_sym_LBRACK2] = ACTIONS(1450), - [anon_sym_TILDE] = ACTIONS(1436), - [anon_sym_CARET] = ACTIONS(1436), - [anon_sym_AMP] = ACTIONS(1452), - [anon_sym_LT_DASH] = ACTIONS(1454), - [sym_none] = ACTIONS(1456), - [sym_true] = ACTIONS(1456), - [sym_false] = ACTIONS(1456), - [sym_nil] = ACTIONS(1456), - [anon_sym_if] = ACTIONS(1827), - [anon_sym_DOLLARif] = ACTIONS(1460), - [anon_sym_match] = ACTIONS(1462), - [anon_sym_select] = ACTIONS(1464), - [anon_sym_lock] = ACTIONS(1466), - [anon_sym_rlock] = ACTIONS(1466), - [anon_sym_unsafe] = ACTIONS(1833), - [anon_sym_sql] = ACTIONS(1470), - [sym_int_literal] = ACTIONS(1456), - [sym_float_literal] = ACTIONS(1472), - [sym_rune_literal] = ACTIONS(1472), - [sym_pseudo_compile_time_identifier] = ACTIONS(1474), + [anon_sym_BANG] = ACTIONS(1444), + [anon_sym_go] = ACTIONS(1446), + [anon_sym_spawn] = ACTIONS(1448), + [anon_sym_json_DOTdecode] = ACTIONS(1450), + [anon_sym_LBRACK2] = ACTIONS(1452), + [anon_sym_TILDE] = ACTIONS(1438), + [anon_sym_CARET] = ACTIONS(1438), + [anon_sym_AMP] = ACTIONS(1454), + [anon_sym_LT_DASH] = ACTIONS(1456), + [sym_none] = ACTIONS(1458), + [sym_true] = ACTIONS(1458), + [sym_false] = ACTIONS(1458), + [sym_nil] = ACTIONS(1458), + [anon_sym_if] = ACTIONS(1833), + [anon_sym_DOLLARif] = ACTIONS(1462), + [anon_sym_match] = ACTIONS(1464), + [anon_sym_select] = ACTIONS(1466), + [anon_sym_lock] = ACTIONS(1468), + [anon_sym_rlock] = ACTIONS(1468), + [anon_sym_unsafe] = ACTIONS(1839), + [anon_sym_sql] = ACTIONS(1472), + [sym_int_literal] = ACTIONS(1458), + [sym_float_literal] = ACTIONS(1474), + [sym_rune_literal] = ACTIONS(1474), + [sym_pseudo_compile_time_identifier] = ACTIONS(1476), [anon_sym_shared] = ACTIONS(83), [anon_sym_map_LBRACK] = ACTIONS(85), [anon_sym_chan] = ACTIONS(87), [anon_sym_thread] = ACTIONS(89), [anon_sym_atomic] = ACTIONS(91), - [sym___double_quote] = ACTIONS(1478), - [sym___single_quote] = ACTIONS(1480), - [sym___c_double_quote] = ACTIONS(1482), - [sym___c_single_quote] = ACTIONS(1484), - [sym___r_double_quote] = ACTIONS(1486), - [sym___r_single_quote] = ACTIONS(1488), + [sym___double_quote] = ACTIONS(1480), + [sym___single_quote] = ACTIONS(1482), + [sym___c_double_quote] = ACTIONS(1484), + [sym___c_single_quote] = ACTIONS(1486), + [sym___r_double_quote] = ACTIONS(1488), + [sym___r_single_quote] = ACTIONS(1490), }, [735] = { [sym_line_comment] = STATE(735), [sym_block_comment] = STATE(735), - [sym__expression] = STATE(978), - [sym__expression_without_blocks] = STATE(1017), - [sym__expression_with_blocks] = STATE(1017), - [sym_inc_expression] = STATE(1018), - [sym_dec_expression] = STATE(1018), - [sym_or_block_expression] = STATE(1018), - [sym_option_propagation_expression] = STATE(1018), - [sym_result_propagation_expression] = STATE(1018), - [sym_anon_struct_value_expression] = STATE(993), - [sym_go_expression] = STATE(1018), - [sym_spawn_expression] = STATE(1018), - [sym_parenthesized_expression] = STATE(1018), - [sym_call_expression] = STATE(1018), - [sym_type_initializer] = STATE(993), - [sym_function_literal] = STATE(1018), - [sym_reference_expression] = STATE(1046), - [sym_type_reference_expression] = STATE(3541), - [sym_unary_expression] = STATE(1018), - [sym_receive_expression] = STATE(1018), - [sym_binary_expression] = STATE(1018), - [sym_as_type_cast_expression] = STATE(1018), - [sym__max_group] = STATE(1018), - [sym_literal] = STATE(1014), - [sym_map_init_expression] = STATE(993), - [sym_array_creation] = STATE(1018), - [sym_fixed_array_creation] = STATE(1018), - [sym_selector_expression] = STATE(1018), - [sym_index_expression] = STATE(1018), - [sym_slice_expression] = STATE(1018), - [sym_if_expression] = STATE(993), - [sym_compile_time_if_expression] = STATE(993), - [sym_is_expression] = STATE(1018), - [sym_in_expression] = STATE(1018), - [sym_enum_fetch] = STATE(1018), - [sym_match_expression] = STATE(993), - [sym_select_expression] = STATE(993), - [sym_lock_expression] = STATE(993), - [sym_unsafe_expression] = STATE(993), - [sym_sql_expression] = STATE(993), - [sym_c_string_literal] = STATE(1006), - [sym_raw_string_literal] = STATE(1006), - [sym_interpreted_string_literal] = STATE(1006), - [sym_mutability_modifiers] = STATE(691), - [sym_plain_type] = STATE(4296), - [sym__plain_type_without_special] = STATE(2302), - [sym_anon_struct_type] = STATE(2303), - [sym_multi_return_type] = STATE(2302), - [sym_result_type] = STATE(2302), - [sym_option_type] = STATE(2302), - [sym_qualified_type] = STATE(3541), - [sym_fixed_array_type] = STATE(2303), - [sym_array_type] = STATE(2303), - [sym_pointer_type] = STATE(2303), - [sym_wrong_pointer_type] = STATE(2303), - [sym_map_type] = STATE(2303), - [sym_channel_type] = STATE(2303), - [sym_shared_type] = STATE(2303), - [sym_thread_type] = STATE(2303), - [sym_atomic_type] = STATE(2303), - [sym_generic_type] = STATE(2303), - [sym_function_type] = STATE(2303), - [sym_identifier] = ACTIONS(493), + [sym__expression] = STATE(2763), + [sym__expression_without_blocks] = STATE(2347), + [sym__expression_with_blocks] = STATE(2347), + [sym_inc_expression] = STATE(2379), + [sym_dec_expression] = STATE(2379), + [sym_or_block_expression] = STATE(2379), + [sym_option_propagation_expression] = STATE(2379), + [sym_result_propagation_expression] = STATE(2379), + [sym_anon_struct_value_expression] = STATE(2378), + [sym_go_expression] = STATE(2379), + [sym_spawn_expression] = STATE(2379), + [sym_parenthesized_expression] = STATE(2379), + [sym_call_expression] = STATE(2379), + [sym_type_initializer] = STATE(2378), + [sym_function_literal] = STATE(2379), + [sym_reference_expression] = STATE(2377), + [sym_type_reference_expression] = STATE(3460), + [sym_unary_expression] = STATE(2379), + [sym_receive_expression] = STATE(2379), + [sym_binary_expression] = STATE(2379), + [sym_as_type_cast_expression] = STATE(2379), + [sym__max_group] = STATE(2379), + [sym_literal] = STATE(2392), + [sym_map_init_expression] = STATE(2378), + [sym_array_creation] = STATE(2379), + [sym_fixed_array_creation] = STATE(2379), + [sym_selector_expression] = STATE(2379), + [sym_index_expression] = STATE(2379), + [sym_slice_expression] = STATE(2379), + [sym_if_expression] = STATE(2378), + [sym_compile_time_if_expression] = STATE(2378), + [sym_is_expression] = STATE(2379), + [sym_in_expression] = STATE(2379), + [sym_enum_fetch] = STATE(2379), + [sym_match_expression] = STATE(2378), + [sym_select_expression] = STATE(2378), + [sym_lock_expression] = STATE(2378), + [sym_unsafe_expression] = STATE(2378), + [sym_sql_expression] = STATE(2378), + [sym_c_string_literal] = STATE(2401), + [sym_raw_string_literal] = STATE(2401), + [sym_interpreted_string_literal] = STATE(2401), + [sym_mutability_modifiers] = STATE(939), + [sym_plain_type] = STATE(3564), + [sym__plain_type_without_special] = STATE(2360), + [sym_anon_struct_type] = STATE(2362), + [sym_multi_return_type] = STATE(2360), + [sym_result_type] = STATE(2360), + [sym_option_type] = STATE(2360), + [sym_qualified_type] = STATE(3460), + [sym_fixed_array_type] = STATE(2362), + [sym_array_type] = STATE(2362), + [sym_pointer_type] = STATE(2362), + [sym_wrong_pointer_type] = STATE(2362), + [sym_map_type] = STATE(2362), + [sym_channel_type] = STATE(2362), + [sym_shared_type] = STATE(2362), + [sym_thread_type] = STATE(2362), + [sym_atomic_type] = STATE(2362), + [sym_generic_type] = STATE(2362), + [sym_function_type] = STATE(2362), + [sym_identifier] = ACTIONS(1428), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(501), - [anon_sym_LBRACE] = ACTIONS(2319), - [anon_sym_LPAREN] = ACTIONS(2321), - [anon_sym_fn] = ACTIONS(507), - [anon_sym_PLUS] = ACTIONS(3360), - [anon_sym_DASH] = ACTIONS(3360), - [anon_sym_STAR] = ACTIONS(3362), - [anon_sym_struct] = ACTIONS(513), + [anon_sym_DOT] = ACTIONS(1430), + [anon_sym_LBRACE] = ACTIONS(1432), + [anon_sym_LPAREN] = ACTIONS(1434), + [anon_sym_fn] = ACTIONS(1436), + [anon_sym_PLUS] = ACTIONS(2271), + [anon_sym_DASH] = ACTIONS(2271), + [anon_sym_STAR] = ACTIONS(2273), + [anon_sym_struct] = ACTIONS(1442), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(3364), - [anon_sym_go] = ACTIONS(3366), - [anon_sym_spawn] = ACTIONS(3368), - [anon_sym_json_DOTdecode] = ACTIONS(2329), - [anon_sym_LBRACK2] = ACTIONS(2331), - [anon_sym_TILDE] = ACTIONS(3360), - [anon_sym_CARET] = ACTIONS(3360), - [anon_sym_AMP] = ACTIONS(3370), - [anon_sym_LT_DASH] = ACTIONS(3372), - [sym_none] = ACTIONS(531), - [sym_true] = ACTIONS(531), - [sym_false] = ACTIONS(531), - [sym_nil] = ACTIONS(531), - [anon_sym_if] = ACTIONS(533), - [anon_sym_DOLLARif] = ACTIONS(535), - [anon_sym_match] = ACTIONS(537), - [anon_sym_select] = ACTIONS(3374), - [anon_sym_lock] = ACTIONS(3376), - [anon_sym_rlock] = ACTIONS(3376), - [anon_sym_unsafe] = ACTIONS(543), - [anon_sym_sql] = ACTIONS(545), - [sym_int_literal] = ACTIONS(531), - [sym_float_literal] = ACTIONS(2337), - [sym_rune_literal] = ACTIONS(2337), - [sym_pseudo_compile_time_identifier] = ACTIONS(547), + [anon_sym_BANG] = ACTIONS(2275), + [anon_sym_go] = ACTIONS(2277), + [anon_sym_spawn] = ACTIONS(2279), + [anon_sym_json_DOTdecode] = ACTIONS(1450), + [anon_sym_LBRACK2] = ACTIONS(1452), + [anon_sym_TILDE] = ACTIONS(2271), + [anon_sym_CARET] = ACTIONS(2271), + [anon_sym_AMP] = ACTIONS(2281), + [anon_sym_LT_DASH] = ACTIONS(2283), + [sym_none] = ACTIONS(1458), + [sym_true] = ACTIONS(1458), + [sym_false] = ACTIONS(1458), + [sym_nil] = ACTIONS(1458), + [anon_sym_if] = ACTIONS(1833), + [anon_sym_DOLLARif] = ACTIONS(1462), + [anon_sym_match] = ACTIONS(1464), + [anon_sym_select] = ACTIONS(1466), + [anon_sym_lock] = ACTIONS(1468), + [anon_sym_rlock] = ACTIONS(1468), + [anon_sym_unsafe] = ACTIONS(1839), + [anon_sym_sql] = ACTIONS(1472), + [sym_int_literal] = ACTIONS(1458), + [sym_float_literal] = ACTIONS(1474), + [sym_rune_literal] = ACTIONS(1474), + [sym_pseudo_compile_time_identifier] = ACTIONS(1476), [anon_sym_shared] = ACTIONS(83), [anon_sym_map_LBRACK] = ACTIONS(85), [anon_sym_chan] = ACTIONS(87), [anon_sym_thread] = ACTIONS(89), [anon_sym_atomic] = ACTIONS(91), - [sym___double_quote] = ACTIONS(2339), - [sym___single_quote] = ACTIONS(2341), - [sym___c_double_quote] = ACTIONS(2343), - [sym___c_single_quote] = ACTIONS(2345), - [sym___r_double_quote] = ACTIONS(2347), - [sym___r_single_quote] = ACTIONS(2349), + [sym___double_quote] = ACTIONS(1480), + [sym___single_quote] = ACTIONS(1482), + [sym___c_double_quote] = ACTIONS(1484), + [sym___c_single_quote] = ACTIONS(1486), + [sym___r_double_quote] = ACTIONS(1488), + [sym___r_single_quote] = ACTIONS(1490), }, [736] = { [sym_line_comment] = STATE(736), [sym_block_comment] = STATE(736), - [sym__expression] = STATE(2638), - [sym__expression_without_blocks] = STATE(2300), - [sym__expression_with_blocks] = STATE(2300), - [sym_inc_expression] = STATE(2307), - [sym_dec_expression] = STATE(2307), - [sym_or_block_expression] = STATE(2307), - [sym_option_propagation_expression] = STATE(2307), - [sym_result_propagation_expression] = STATE(2307), - [sym_anon_struct_value_expression] = STATE(2380), - [sym_go_expression] = STATE(2307), - [sym_spawn_expression] = STATE(2307), - [sym_parenthesized_expression] = STATE(2307), - [sym_call_expression] = STATE(2307), - [sym_type_initializer] = STATE(2380), - [sym_function_literal] = STATE(2307), - [sym_reference_expression] = STATE(2311), - [sym_type_reference_expression] = STATE(3541), - [sym_unary_expression] = STATE(2307), - [sym_receive_expression] = STATE(2307), - [sym_binary_expression] = STATE(2307), - [sym_as_type_cast_expression] = STATE(2307), - [sym__max_group] = STATE(2307), - [sym_literal] = STATE(2292), - [sym_map_init_expression] = STATE(2380), - [sym_array_creation] = STATE(2307), - [sym_fixed_array_creation] = STATE(2307), - [sym_selector_expression] = STATE(2307), - [sym_index_expression] = STATE(2307), - [sym_slice_expression] = STATE(2307), - [sym_if_expression] = STATE(2380), - [sym_compile_time_if_expression] = STATE(2380), - [sym_is_expression] = STATE(2307), - [sym_in_expression] = STATE(2307), - [sym_enum_fetch] = STATE(2307), - [sym_match_expression] = STATE(2380), - [sym_select_expression] = STATE(2380), - [sym_lock_expression] = STATE(2380), - [sym_unsafe_expression] = STATE(2380), - [sym_sql_expression] = STATE(2380), - [sym_c_string_literal] = STATE(2308), - [sym_raw_string_literal] = STATE(2308), - [sym_interpreted_string_literal] = STATE(2308), - [sym_mutability_modifiers] = STATE(939), - [sym_plain_type] = STATE(3552), - [sym__plain_type_without_special] = STATE(2302), - [sym_anon_struct_type] = STATE(2303), - [sym_multi_return_type] = STATE(2302), - [sym_result_type] = STATE(2302), - [sym_option_type] = STATE(2302), - [sym_qualified_type] = STATE(3541), - [sym_fixed_array_type] = STATE(2303), - [sym_array_type] = STATE(2303), - [sym_pointer_type] = STATE(2303), - [sym_wrong_pointer_type] = STATE(2303), - [sym_map_type] = STATE(2303), - [sym_channel_type] = STATE(2303), - [sym_shared_type] = STATE(2303), - [sym_thread_type] = STATE(2303), - [sym_atomic_type] = STATE(2303), - [sym_generic_type] = STATE(2303), - [sym_function_type] = STATE(2303), - [sym_identifier] = ACTIONS(1426), + [sym__expression] = STATE(2281), + [sym__expression_without_blocks] = STATE(2468), + [sym__expression_with_blocks] = STATE(2468), + [sym_inc_expression] = STATE(2469), + [sym_dec_expression] = STATE(2469), + [sym_or_block_expression] = STATE(2469), + [sym_option_propagation_expression] = STATE(2469), + [sym_result_propagation_expression] = STATE(2469), + [sym_anon_struct_value_expression] = STATE(2470), + [sym_go_expression] = STATE(2469), + [sym_spawn_expression] = STATE(2469), + [sym_parenthesized_expression] = STATE(2469), + [sym_call_expression] = STATE(2469), + [sym_type_initializer] = STATE(2470), + [sym_function_literal] = STATE(2469), + [sym_reference_expression] = STATE(2487), + [sym_type_reference_expression] = STATE(3460), + [sym_unary_expression] = STATE(2469), + [sym_receive_expression] = STATE(2469), + [sym_binary_expression] = STATE(2469), + [sym_as_type_cast_expression] = STATE(2469), + [sym__max_group] = STATE(2469), + [sym_literal] = STATE(2465), + [sym_map_init_expression] = STATE(2470), + [sym_array_creation] = STATE(2469), + [sym_fixed_array_creation] = STATE(2469), + [sym_selector_expression] = STATE(2469), + [sym_index_expression] = STATE(2469), + [sym_slice_expression] = STATE(2469), + [sym_if_expression] = STATE(2470), + [sym_compile_time_if_expression] = STATE(2470), + [sym_is_expression] = STATE(2469), + [sym_in_expression] = STATE(2469), + [sym_enum_fetch] = STATE(2469), + [sym_match_expression] = STATE(2470), + [sym_select_expression] = STATE(2470), + [sym_lock_expression] = STATE(2470), + [sym_unsafe_expression] = STATE(2470), + [sym_sql_expression] = STATE(2470), + [sym_c_string_literal] = STATE(2464), + [sym_raw_string_literal] = STATE(2464), + [sym_interpreted_string_literal] = STATE(2464), + [sym_mutability_modifiers] = STATE(561), + [sym_plain_type] = STATE(4038), + [sym__plain_type_without_special] = STATE(2360), + [sym_anon_struct_type] = STATE(2362), + [sym_multi_return_type] = STATE(2360), + [sym_result_type] = STATE(2360), + [sym_option_type] = STATE(2360), + [sym_qualified_type] = STATE(3460), + [sym_fixed_array_type] = STATE(2362), + [sym_array_type] = STATE(2362), + [sym_pointer_type] = STATE(2362), + [sym_wrong_pointer_type] = STATE(2362), + [sym_map_type] = STATE(2362), + [sym_channel_type] = STATE(2362), + [sym_shared_type] = STATE(2362), + [sym_thread_type] = STATE(2362), + [sym_atomic_type] = STATE(2362), + [sym_generic_type] = STATE(2362), + [sym_function_type] = STATE(2362), + [sym_identifier] = ACTIONS(1691), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1428), - [anon_sym_LBRACE] = ACTIONS(1430), - [anon_sym_LPAREN] = ACTIONS(1432), - [anon_sym_fn] = ACTIONS(1434), - [anon_sym_PLUS] = ACTIONS(2491), - [anon_sym_DASH] = ACTIONS(2491), - [anon_sym_STAR] = ACTIONS(2493), - [anon_sym_struct] = ACTIONS(1440), + [anon_sym_DOT] = ACTIONS(1693), + [anon_sym_LBRACE] = ACTIONS(2151), + [anon_sym_LPAREN] = ACTIONS(2153), + [anon_sym_fn] = ACTIONS(1699), + [anon_sym_PLUS] = ACTIONS(2155), + [anon_sym_DASH] = ACTIONS(2155), + [anon_sym_STAR] = ACTIONS(2157), + [anon_sym_struct] = ACTIONS(1705), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(2495), - [anon_sym_go] = ACTIONS(2497), - [anon_sym_spawn] = ACTIONS(2499), - [anon_sym_json_DOTdecode] = ACTIONS(1448), - [anon_sym_LBRACK2] = ACTIONS(1450), - [anon_sym_TILDE] = ACTIONS(2491), - [anon_sym_CARET] = ACTIONS(2491), - [anon_sym_AMP] = ACTIONS(2501), - [anon_sym_LT_DASH] = ACTIONS(2503), - [sym_none] = ACTIONS(1456), - [sym_true] = ACTIONS(1456), - [sym_false] = ACTIONS(1456), - [sym_nil] = ACTIONS(1456), - [anon_sym_if] = ACTIONS(1827), - [anon_sym_DOLLARif] = ACTIONS(1460), - [anon_sym_match] = ACTIONS(1462), - [anon_sym_select] = ACTIONS(1464), - [anon_sym_lock] = ACTIONS(1466), - [anon_sym_rlock] = ACTIONS(1466), - [anon_sym_unsafe] = ACTIONS(1833), - [anon_sym_sql] = ACTIONS(1470), - [sym_int_literal] = ACTIONS(1456), - [sym_float_literal] = ACTIONS(1472), - [sym_rune_literal] = ACTIONS(1472), - [sym_pseudo_compile_time_identifier] = ACTIONS(1474), + [anon_sym_BANG] = ACTIONS(2159), + [anon_sym_go] = ACTIONS(1709), + [anon_sym_spawn] = ACTIONS(1711), + [anon_sym_json_DOTdecode] = ACTIONS(2161), + [anon_sym_LBRACK2] = ACTIONS(2163), + [anon_sym_TILDE] = ACTIONS(2155), + [anon_sym_CARET] = ACTIONS(2155), + [anon_sym_AMP] = ACTIONS(2165), + [anon_sym_LT_DASH] = ACTIONS(2167), + [sym_none] = ACTIONS(1721), + [sym_true] = ACTIONS(1721), + [sym_false] = ACTIONS(1721), + [sym_nil] = ACTIONS(1721), + [anon_sym_if] = ACTIONS(1723), + [anon_sym_DOLLARif] = ACTIONS(1725), + [anon_sym_match] = ACTIONS(1727), + [anon_sym_select] = ACTIONS(1729), + [anon_sym_lock] = ACTIONS(1731), + [anon_sym_rlock] = ACTIONS(1731), + [anon_sym_unsafe] = ACTIONS(1733), + [anon_sym_sql] = ACTIONS(1735), + [sym_int_literal] = ACTIONS(1721), + [sym_float_literal] = ACTIONS(2169), + [sym_rune_literal] = ACTIONS(2169), + [sym_pseudo_compile_time_identifier] = ACTIONS(1737), [anon_sym_shared] = ACTIONS(83), [anon_sym_map_LBRACK] = ACTIONS(85), [anon_sym_chan] = ACTIONS(87), [anon_sym_thread] = ACTIONS(89), [anon_sym_atomic] = ACTIONS(91), - [sym___double_quote] = ACTIONS(1478), - [sym___single_quote] = ACTIONS(1480), - [sym___c_double_quote] = ACTIONS(1482), - [sym___c_single_quote] = ACTIONS(1484), - [sym___r_double_quote] = ACTIONS(1486), - [sym___r_single_quote] = ACTIONS(1488), + [sym___double_quote] = ACTIONS(2171), + [sym___single_quote] = ACTIONS(2173), + [sym___c_double_quote] = ACTIONS(2175), + [sym___c_single_quote] = ACTIONS(2177), + [sym___r_double_quote] = ACTIONS(2179), + [sym___r_single_quote] = ACTIONS(2181), }, [737] = { [sym_line_comment] = STATE(737), [sym_block_comment] = STATE(737), - [sym__expression] = STATE(1618), - [sym__expression_without_blocks] = STATE(1692), - [sym__expression_with_blocks] = STATE(1692), - [sym_inc_expression] = STATE(1684), - [sym_dec_expression] = STATE(1684), - [sym_or_block_expression] = STATE(1684), - [sym_option_propagation_expression] = STATE(1684), - [sym_result_propagation_expression] = STATE(1684), - [sym_anon_struct_value_expression] = STATE(1677), - [sym_go_expression] = STATE(1684), - [sym_spawn_expression] = STATE(1684), - [sym_parenthesized_expression] = STATE(1684), - [sym_call_expression] = STATE(1684), - [sym_type_initializer] = STATE(1677), - [sym_function_literal] = STATE(1684), - [sym_reference_expression] = STATE(1674), - [sym_type_reference_expression] = STATE(3541), - [sym_unary_expression] = STATE(1684), - [sym_receive_expression] = STATE(1684), - [sym_binary_expression] = STATE(1684), - [sym_as_type_cast_expression] = STATE(1684), - [sym__max_group] = STATE(1684), - [sym_literal] = STATE(1698), - [sym_map_init_expression] = STATE(1677), - [sym_array_creation] = STATE(1684), - [sym_fixed_array_creation] = STATE(1684), - [sym_selector_expression] = STATE(1684), - [sym_index_expression] = STATE(1684), - [sym_slice_expression] = STATE(1684), - [sym_if_expression] = STATE(1677), - [sym_compile_time_if_expression] = STATE(1677), - [sym_is_expression] = STATE(1684), - [sym_in_expression] = STATE(1684), - [sym_enum_fetch] = STATE(1684), - [sym_match_expression] = STATE(1677), - [sym_select_expression] = STATE(1677), - [sym_lock_expression] = STATE(1677), - [sym_unsafe_expression] = STATE(1677), - [sym_sql_expression] = STATE(1677), - [sym_c_string_literal] = STATE(1705), - [sym_raw_string_literal] = STATE(1705), - [sym_interpreted_string_literal] = STATE(1705), - [sym_mutability_modifiers] = STATE(664), - [sym_plain_type] = STATE(4157), - [sym__plain_type_without_special] = STATE(2302), - [sym_anon_struct_type] = STATE(2303), - [sym_multi_return_type] = STATE(2302), - [sym_result_type] = STATE(2302), - [sym_option_type] = STATE(2302), - [sym_qualified_type] = STATE(3541), - [sym_fixed_array_type] = STATE(2303), - [sym_array_type] = STATE(2303), - [sym_pointer_type] = STATE(2303), - [sym_wrong_pointer_type] = STATE(2303), - [sym_map_type] = STATE(2303), - [sym_channel_type] = STATE(2303), - [sym_shared_type] = STATE(2303), - [sym_thread_type] = STATE(2303), - [sym_atomic_type] = STATE(2303), - [sym_generic_type] = STATE(2303), - [sym_function_type] = STATE(2303), - [sym_identifier] = ACTIONS(3416), + [sym__expression] = STATE(1632), + [sym__expression_without_blocks] = STATE(1799), + [sym__expression_with_blocks] = STATE(1799), + [sym_inc_expression] = STATE(1800), + [sym_dec_expression] = STATE(1800), + [sym_or_block_expression] = STATE(1800), + [sym_option_propagation_expression] = STATE(1800), + [sym_result_propagation_expression] = STATE(1800), + [sym_anon_struct_value_expression] = STATE(1801), + [sym_go_expression] = STATE(1800), + [sym_spawn_expression] = STATE(1800), + [sym_parenthesized_expression] = STATE(1800), + [sym_call_expression] = STATE(1800), + [sym_type_initializer] = STATE(1801), + [sym_function_literal] = STATE(1800), + [sym_reference_expression] = STATE(1844), + [sym_type_reference_expression] = STATE(3460), + [sym_unary_expression] = STATE(1800), + [sym_receive_expression] = STATE(1800), + [sym_binary_expression] = STATE(1800), + [sym_as_type_cast_expression] = STATE(1800), + [sym__max_group] = STATE(1800), + [sym_literal] = STATE(1797), + [sym_map_init_expression] = STATE(1801), + [sym_array_creation] = STATE(1800), + [sym_fixed_array_creation] = STATE(1800), + [sym_selector_expression] = STATE(1800), + [sym_index_expression] = STATE(1800), + [sym_slice_expression] = STATE(1800), + [sym_if_expression] = STATE(1801), + [sym_compile_time_if_expression] = STATE(1801), + [sym_is_expression] = STATE(1800), + [sym_in_expression] = STATE(1800), + [sym_enum_fetch] = STATE(1800), + [sym_match_expression] = STATE(1801), + [sym_select_expression] = STATE(1801), + [sym_lock_expression] = STATE(1801), + [sym_unsafe_expression] = STATE(1801), + [sym_sql_expression] = STATE(1801), + [sym_c_string_literal] = STATE(1792), + [sym_raw_string_literal] = STATE(1792), + [sym_interpreted_string_literal] = STATE(1792), + [sym_mutability_modifiers] = STATE(868), + [sym_plain_type] = STATE(4300), + [sym__plain_type_without_special] = STATE(2360), + [sym_anon_struct_type] = STATE(2362), + [sym_multi_return_type] = STATE(2360), + [sym_result_type] = STATE(2360), + [sym_option_type] = STATE(2360), + [sym_qualified_type] = STATE(3460), + [sym_fixed_array_type] = STATE(2362), + [sym_array_type] = STATE(2362), + [sym_pointer_type] = STATE(2362), + [sym_wrong_pointer_type] = STATE(2362), + [sym_map_type] = STATE(2362), + [sym_channel_type] = STATE(2362), + [sym_shared_type] = STATE(2362), + [sym_thread_type] = STATE(2362), + [sym_atomic_type] = STATE(2362), + [sym_generic_type] = STATE(2362), + [sym_function_type] = STATE(2362), + [sym_identifier] = ACTIONS(3198), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(309), - [anon_sym_LBRACE] = ACTIONS(3418), - [anon_sym_LPAREN] = ACTIONS(315), - [anon_sym_fn] = ACTIONS(317), - [anon_sym_PLUS] = ACTIONS(319), - [anon_sym_DASH] = ACTIONS(319), - [anon_sym_STAR] = ACTIONS(321), - [anon_sym_struct] = ACTIONS(323), + [anon_sym_DOT] = ACTIONS(3200), + [anon_sym_LBRACE] = ACTIONS(3202), + [anon_sym_LPAREN] = ACTIONS(3204), + [anon_sym_fn] = ACTIONS(3206), + [anon_sym_PLUS] = ACTIONS(3208), + [anon_sym_DASH] = ACTIONS(3208), + [anon_sym_STAR] = ACTIONS(3210), + [anon_sym_struct] = ACTIONS(3212), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(325), - [anon_sym_go] = ACTIONS(327), - [anon_sym_spawn] = ACTIONS(329), - [anon_sym_json_DOTdecode] = ACTIONS(331), - [anon_sym_LBRACK2] = ACTIONS(333), - [anon_sym_TILDE] = ACTIONS(319), - [anon_sym_CARET] = ACTIONS(319), - [anon_sym_AMP] = ACTIONS(335), - [anon_sym_LT_DASH] = ACTIONS(337), - [sym_none] = ACTIONS(339), - [sym_true] = ACTIONS(339), - [sym_false] = ACTIONS(339), - [sym_nil] = ACTIONS(339), - [anon_sym_if] = ACTIONS(341), - [anon_sym_DOLLARif] = ACTIONS(343), - [anon_sym_match] = ACTIONS(345), - [anon_sym_select] = ACTIONS(347), - [anon_sym_lock] = ACTIONS(349), - [anon_sym_rlock] = ACTIONS(349), - [anon_sym_unsafe] = ACTIONS(351), - [anon_sym_sql] = ACTIONS(353), - [sym_int_literal] = ACTIONS(339), - [sym_float_literal] = ACTIONS(355), - [sym_rune_literal] = ACTIONS(355), - [sym_pseudo_compile_time_identifier] = ACTIONS(357), + [anon_sym_BANG] = ACTIONS(3214), + [anon_sym_go] = ACTIONS(3216), + [anon_sym_spawn] = ACTIONS(3218), + [anon_sym_json_DOTdecode] = ACTIONS(3220), + [anon_sym_LBRACK2] = ACTIONS(3222), + [anon_sym_TILDE] = ACTIONS(3208), + [anon_sym_CARET] = ACTIONS(3208), + [anon_sym_AMP] = ACTIONS(3224), + [anon_sym_LT_DASH] = ACTIONS(3226), + [sym_none] = ACTIONS(3228), + [sym_true] = ACTIONS(3228), + [sym_false] = ACTIONS(3228), + [sym_nil] = ACTIONS(3228), + [anon_sym_if] = ACTIONS(3230), + [anon_sym_DOLLARif] = ACTIONS(3232), + [anon_sym_match] = ACTIONS(3234), + [anon_sym_select] = ACTIONS(3236), + [anon_sym_lock] = ACTIONS(3238), + [anon_sym_rlock] = ACTIONS(3238), + [anon_sym_unsafe] = ACTIONS(3240), + [anon_sym_sql] = ACTIONS(3242), + [sym_int_literal] = ACTIONS(3228), + [sym_float_literal] = ACTIONS(3244), + [sym_rune_literal] = ACTIONS(3244), + [sym_pseudo_compile_time_identifier] = ACTIONS(3246), [anon_sym_shared] = ACTIONS(83), [anon_sym_map_LBRACK] = ACTIONS(85), [anon_sym_chan] = ACTIONS(87), [anon_sym_thread] = ACTIONS(89), [anon_sym_atomic] = ACTIONS(91), - [sym___double_quote] = ACTIONS(379), - [sym___single_quote] = ACTIONS(381), - [sym___c_double_quote] = ACTIONS(383), - [sym___c_single_quote] = ACTIONS(385), - [sym___r_double_quote] = ACTIONS(387), - [sym___r_single_quote] = ACTIONS(389), + [sym___double_quote] = ACTIONS(3248), + [sym___single_quote] = ACTIONS(3250), + [sym___c_double_quote] = ACTIONS(3252), + [sym___c_single_quote] = ACTIONS(3254), + [sym___r_double_quote] = ACTIONS(3256), + [sym___r_single_quote] = ACTIONS(3258), }, [738] = { [sym_line_comment] = STATE(738), [sym_block_comment] = STATE(738), - [sym__expression] = STATE(2583), - [sym__expression_without_blocks] = STATE(2300), - [sym__expression_with_blocks] = STATE(2300), - [sym_inc_expression] = STATE(2307), - [sym_dec_expression] = STATE(2307), - [sym_or_block_expression] = STATE(2307), - [sym_option_propagation_expression] = STATE(2307), - [sym_result_propagation_expression] = STATE(2307), - [sym_anon_struct_value_expression] = STATE(2380), - [sym_go_expression] = STATE(2307), - [sym_spawn_expression] = STATE(2307), - [sym_parenthesized_expression] = STATE(2307), - [sym_call_expression] = STATE(2307), - [sym_type_initializer] = STATE(2380), - [sym_function_literal] = STATE(2307), - [sym_reference_expression] = STATE(2311), - [sym_type_reference_expression] = STATE(3541), - [sym_unary_expression] = STATE(2307), - [sym_receive_expression] = STATE(2307), - [sym_binary_expression] = STATE(2307), - [sym_as_type_cast_expression] = STATE(2307), - [sym__max_group] = STATE(2307), - [sym_literal] = STATE(2292), - [sym_map_init_expression] = STATE(2380), - [sym_array_creation] = STATE(2307), - [sym_fixed_array_creation] = STATE(2307), - [sym_selector_expression] = STATE(2307), - [sym_index_expression] = STATE(2307), - [sym_slice_expression] = STATE(2307), - [sym_if_expression] = STATE(2380), - [sym_compile_time_if_expression] = STATE(2380), - [sym_is_expression] = STATE(2307), - [sym_in_expression] = STATE(2307), - [sym_enum_fetch] = STATE(2307), - [sym_match_expression] = STATE(2380), - [sym_select_expression] = STATE(2380), - [sym_lock_expression] = STATE(2380), - [sym_unsafe_expression] = STATE(2380), - [sym_sql_expression] = STATE(2380), - [sym_c_string_literal] = STATE(2308), - [sym_raw_string_literal] = STATE(2308), - [sym_interpreted_string_literal] = STATE(2308), + [sym__expression] = STATE(2611), + [sym__expression_without_blocks] = STATE(2347), + [sym__expression_with_blocks] = STATE(2347), + [sym_inc_expression] = STATE(2379), + [sym_dec_expression] = STATE(2379), + [sym_or_block_expression] = STATE(2379), + [sym_option_propagation_expression] = STATE(2379), + [sym_result_propagation_expression] = STATE(2379), + [sym_anon_struct_value_expression] = STATE(2378), + [sym_go_expression] = STATE(2379), + [sym_spawn_expression] = STATE(2379), + [sym_parenthesized_expression] = STATE(2379), + [sym_call_expression] = STATE(2379), + [sym_type_initializer] = STATE(2378), + [sym_function_literal] = STATE(2379), + [sym_reference_expression] = STATE(2377), + [sym_type_reference_expression] = STATE(3460), + [sym_unary_expression] = STATE(2379), + [sym_receive_expression] = STATE(2379), + [sym_binary_expression] = STATE(2379), + [sym_as_type_cast_expression] = STATE(2379), + [sym__max_group] = STATE(2379), + [sym_literal] = STATE(2392), + [sym_map_init_expression] = STATE(2378), + [sym_array_creation] = STATE(2379), + [sym_fixed_array_creation] = STATE(2379), + [sym_selector_expression] = STATE(2379), + [sym_index_expression] = STATE(2379), + [sym_slice_expression] = STATE(2379), + [sym_if_expression] = STATE(2378), + [sym_compile_time_if_expression] = STATE(2378), + [sym_is_expression] = STATE(2379), + [sym_in_expression] = STATE(2379), + [sym_enum_fetch] = STATE(2379), + [sym_match_expression] = STATE(2378), + [sym_select_expression] = STATE(2378), + [sym_lock_expression] = STATE(2378), + [sym_unsafe_expression] = STATE(2378), + [sym_sql_expression] = STATE(2378), + [sym_c_string_literal] = STATE(2401), + [sym_raw_string_literal] = STATE(2401), + [sym_interpreted_string_literal] = STATE(2401), [sym_mutability_modifiers] = STATE(939), - [sym_plain_type] = STATE(4297), - [sym__plain_type_without_special] = STATE(2302), - [sym_anon_struct_type] = STATE(2303), - [sym_multi_return_type] = STATE(2302), - [sym_result_type] = STATE(2302), - [sym_option_type] = STATE(2302), - [sym_qualified_type] = STATE(3541), - [sym_fixed_array_type] = STATE(2303), - [sym_array_type] = STATE(2303), - [sym_pointer_type] = STATE(2303), - [sym_wrong_pointer_type] = STATE(2303), - [sym_map_type] = STATE(2303), - [sym_channel_type] = STATE(2303), - [sym_shared_type] = STATE(2303), - [sym_thread_type] = STATE(2303), - [sym_atomic_type] = STATE(2303), - [sym_generic_type] = STATE(2303), - [sym_function_type] = STATE(2303), - [sym_identifier] = ACTIONS(1807), + [sym_plain_type] = STATE(4160), + [sym__plain_type_without_special] = STATE(2360), + [sym_anon_struct_type] = STATE(2362), + [sym_multi_return_type] = STATE(2360), + [sym_result_type] = STATE(2360), + [sym_option_type] = STATE(2360), + [sym_qualified_type] = STATE(3460), + [sym_fixed_array_type] = STATE(2362), + [sym_array_type] = STATE(2362), + [sym_pointer_type] = STATE(2362), + [sym_wrong_pointer_type] = STATE(2362), + [sym_map_type] = STATE(2362), + [sym_channel_type] = STATE(2362), + [sym_shared_type] = STATE(2362), + [sym_thread_type] = STATE(2362), + [sym_atomic_type] = STATE(2362), + [sym_generic_type] = STATE(2362), + [sym_function_type] = STATE(2362), + [sym_identifier] = ACTIONS(1815), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1428), - [anon_sym_LBRACE] = ACTIONS(1430), - [anon_sym_LPAREN] = ACTIONS(1432), - [anon_sym_fn] = ACTIONS(1434), - [anon_sym_PLUS] = ACTIONS(3064), - [anon_sym_DASH] = ACTIONS(3064), - [anon_sym_STAR] = ACTIONS(3066), - [anon_sym_struct] = ACTIONS(1440), + [anon_sym_DOT] = ACTIONS(1430), + [anon_sym_LBRACE] = ACTIONS(1432), + [anon_sym_LPAREN] = ACTIONS(1434), + [anon_sym_fn] = ACTIONS(1436), + [anon_sym_PLUS] = ACTIONS(3090), + [anon_sym_DASH] = ACTIONS(3090), + [anon_sym_STAR] = ACTIONS(3092), + [anon_sym_struct] = ACTIONS(1442), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(3068), - [anon_sym_go] = ACTIONS(3070), - [anon_sym_spawn] = ACTIONS(3072), - [anon_sym_json_DOTdecode] = ACTIONS(1448), - [anon_sym_LBRACK2] = ACTIONS(1821), - [anon_sym_TILDE] = ACTIONS(3064), - [anon_sym_CARET] = ACTIONS(3064), - [anon_sym_AMP] = ACTIONS(3074), - [anon_sym_LT_DASH] = ACTIONS(3076), - [sym_none] = ACTIONS(1456), - [sym_true] = ACTIONS(1456), - [sym_false] = ACTIONS(1456), - [sym_nil] = ACTIONS(1456), - [anon_sym_if] = ACTIONS(1827), - [anon_sym_DOLLARif] = ACTIONS(1460), - [anon_sym_match] = ACTIONS(1462), - [anon_sym_select] = ACTIONS(3078), - [anon_sym_lock] = ACTIONS(3080), - [anon_sym_rlock] = ACTIONS(3080), - [anon_sym_unsafe] = ACTIONS(1833), - [anon_sym_sql] = ACTIONS(1470), - [sym_int_literal] = ACTIONS(1456), - [sym_float_literal] = ACTIONS(1472), - [sym_rune_literal] = ACTIONS(1472), - [sym_pseudo_compile_time_identifier] = ACTIONS(1474), + [anon_sym_BANG] = ACTIONS(3094), + [anon_sym_go] = ACTIONS(3096), + [anon_sym_spawn] = ACTIONS(3098), + [anon_sym_json_DOTdecode] = ACTIONS(1450), + [anon_sym_LBRACK2] = ACTIONS(1827), + [anon_sym_TILDE] = ACTIONS(3090), + [anon_sym_CARET] = ACTIONS(3090), + [anon_sym_AMP] = ACTIONS(3100), + [anon_sym_LT_DASH] = ACTIONS(3102), + [sym_none] = ACTIONS(1458), + [sym_true] = ACTIONS(1458), + [sym_false] = ACTIONS(1458), + [sym_nil] = ACTIONS(1458), + [anon_sym_if] = ACTIONS(1833), + [anon_sym_DOLLARif] = ACTIONS(1462), + [anon_sym_match] = ACTIONS(1464), + [anon_sym_select] = ACTIONS(3104), + [anon_sym_lock] = ACTIONS(3106), + [anon_sym_rlock] = ACTIONS(3106), + [anon_sym_unsafe] = ACTIONS(1839), + [anon_sym_sql] = ACTIONS(1472), + [sym_int_literal] = ACTIONS(1458), + [sym_float_literal] = ACTIONS(1474), + [sym_rune_literal] = ACTIONS(1474), + [sym_pseudo_compile_time_identifier] = ACTIONS(1476), [anon_sym_shared] = ACTIONS(83), [anon_sym_map_LBRACK] = ACTIONS(85), [anon_sym_chan] = ACTIONS(87), [anon_sym_thread] = ACTIONS(89), [anon_sym_atomic] = ACTIONS(91), - [sym___double_quote] = ACTIONS(1478), - [sym___single_quote] = ACTIONS(1480), - [sym___c_double_quote] = ACTIONS(1482), - [sym___c_single_quote] = ACTIONS(1484), - [sym___r_double_quote] = ACTIONS(1486), - [sym___r_single_quote] = ACTIONS(1488), + [sym___double_quote] = ACTIONS(1480), + [sym___single_quote] = ACTIONS(1482), + [sym___c_double_quote] = ACTIONS(1484), + [sym___c_single_quote] = ACTIONS(1486), + [sym___r_double_quote] = ACTIONS(1488), + [sym___r_single_quote] = ACTIONS(1490), }, [739] = { [sym_line_comment] = STATE(739), [sym_block_comment] = STATE(739), - [sym__expression] = STATE(2494), - [sym__expression_without_blocks] = STATE(2625), - [sym__expression_with_blocks] = STATE(2625), - [sym_inc_expression] = STATE(2765), - [sym_dec_expression] = STATE(2765), - [sym_or_block_expression] = STATE(2765), - [sym_option_propagation_expression] = STATE(2765), - [sym_result_propagation_expression] = STATE(2765), - [sym_anon_struct_value_expression] = STATE(2619), - [sym_go_expression] = STATE(2765), - [sym_spawn_expression] = STATE(2765), - [sym_parenthesized_expression] = STATE(2765), - [sym_call_expression] = STATE(2765), - [sym_type_initializer] = STATE(2619), - [sym_function_literal] = STATE(2765), - [sym_reference_expression] = STATE(2764), - [sym_type_reference_expression] = STATE(3541), - [sym_unary_expression] = STATE(2765), - [sym_receive_expression] = STATE(2765), - [sym_binary_expression] = STATE(2765), - [sym_as_type_cast_expression] = STATE(2765), - [sym__max_group] = STATE(2765), - [sym_literal] = STATE(2769), - [sym_map_init_expression] = STATE(2619), - [sym_array_creation] = STATE(2765), - [sym_fixed_array_creation] = STATE(2765), - [sym_selector_expression] = STATE(2765), - [sym_index_expression] = STATE(2765), - [sym_slice_expression] = STATE(2765), - [sym_if_expression] = STATE(2619), - [sym_compile_time_if_expression] = STATE(2619), - [sym_is_expression] = STATE(2765), - [sym_in_expression] = STATE(2765), - [sym_enum_fetch] = STATE(2765), - [sym_match_expression] = STATE(2619), - [sym_select_expression] = STATE(2619), - [sym_lock_expression] = STATE(2619), - [sym_unsafe_expression] = STATE(2619), - [sym_sql_expression] = STATE(2619), - [sym_c_string_literal] = STATE(2660), - [sym_raw_string_literal] = STATE(2660), - [sym_interpreted_string_literal] = STATE(2660), - [sym_mutability_modifiers] = STATE(567), - [sym_plain_type] = STATE(4008), - [sym__plain_type_without_special] = STATE(2302), - [sym_anon_struct_type] = STATE(2303), - [sym_multi_return_type] = STATE(2302), - [sym_result_type] = STATE(2302), - [sym_option_type] = STATE(2302), - [sym_qualified_type] = STATE(3541), - [sym_fixed_array_type] = STATE(2303), - [sym_array_type] = STATE(2303), - [sym_pointer_type] = STATE(2303), - [sym_wrong_pointer_type] = STATE(2303), - [sym_map_type] = STATE(2303), - [sym_channel_type] = STATE(2303), - [sym_shared_type] = STATE(2303), - [sym_thread_type] = STATE(2303), - [sym_atomic_type] = STATE(2303), - [sym_generic_type] = STATE(2303), - [sym_function_type] = STATE(2303), - [sym_identifier] = ACTIONS(1807), + [sym__expression] = STATE(1777), + [sym__expression_without_blocks] = STATE(1953), + [sym__expression_with_blocks] = STATE(1953), + [sym_inc_expression] = STATE(1955), + [sym_dec_expression] = STATE(1955), + [sym_or_block_expression] = STATE(1955), + [sym_option_propagation_expression] = STATE(1955), + [sym_result_propagation_expression] = STATE(1955), + [sym_anon_struct_value_expression] = STATE(1958), + [sym_go_expression] = STATE(1955), + [sym_spawn_expression] = STATE(1955), + [sym_parenthesized_expression] = STATE(1955), + [sym_call_expression] = STATE(1955), + [sym_type_initializer] = STATE(1958), + [sym_function_literal] = STATE(1955), + [sym_reference_expression] = STATE(1956), + [sym_type_reference_expression] = STATE(3460), + [sym_unary_expression] = STATE(1955), + [sym_receive_expression] = STATE(1955), + [sym_binary_expression] = STATE(1955), + [sym_as_type_cast_expression] = STATE(1955), + [sym__max_group] = STATE(1955), + [sym_literal] = STATE(1943), + [sym_map_init_expression] = STATE(1958), + [sym_array_creation] = STATE(1955), + [sym_fixed_array_creation] = STATE(1955), + [sym_selector_expression] = STATE(1955), + [sym_index_expression] = STATE(1955), + [sym_slice_expression] = STATE(1955), + [sym_if_expression] = STATE(1958), + [sym_compile_time_if_expression] = STATE(1958), + [sym_is_expression] = STATE(1955), + [sym_in_expression] = STATE(1955), + [sym_enum_fetch] = STATE(1955), + [sym_match_expression] = STATE(1958), + [sym_select_expression] = STATE(1958), + [sym_lock_expression] = STATE(1958), + [sym_unsafe_expression] = STATE(1958), + [sym_sql_expression] = STATE(1958), + [sym_c_string_literal] = STATE(1942), + [sym_raw_string_literal] = STATE(1942), + [sym_interpreted_string_literal] = STATE(1942), + [sym_mutability_modifiers] = STATE(601), + [sym_plain_type] = STATE(4266), + [sym__plain_type_without_special] = STATE(2360), + [sym_anon_struct_type] = STATE(2362), + [sym_multi_return_type] = STATE(2360), + [sym_result_type] = STATE(2360), + [sym_option_type] = STATE(2360), + [sym_qualified_type] = STATE(3460), + [sym_fixed_array_type] = STATE(2362), + [sym_array_type] = STATE(2362), + [sym_pointer_type] = STATE(2362), + [sym_wrong_pointer_type] = STATE(2362), + [sym_map_type] = STATE(2362), + [sym_channel_type] = STATE(2362), + [sym_shared_type] = STATE(2362), + [sym_thread_type] = STATE(2362), + [sym_atomic_type] = STATE(2362), + [sym_generic_type] = STATE(2362), + [sym_function_type] = STATE(2362), + [sym_identifier] = ACTIONS(1681), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1081), - [anon_sym_LBRACE] = ACTIONS(1083), - [anon_sym_LPAREN] = ACTIONS(1087), - [anon_sym_fn] = ACTIONS(1089), - [anon_sym_PLUS] = ACTIONS(3120), - [anon_sym_DASH] = ACTIONS(3120), - [anon_sym_STAR] = ACTIONS(3122), - [anon_sym_struct] = ACTIONS(1095), + [anon_sym_DOT] = ACTIONS(705), + [anon_sym_LBRACE] = ACTIONS(3118), + [anon_sym_LPAREN] = ACTIONS(709), + [anon_sym_fn] = ACTIONS(711), + [anon_sym_PLUS] = ACTIONS(713), + [anon_sym_DASH] = ACTIONS(713), + [anon_sym_STAR] = ACTIONS(715), + [anon_sym_struct] = ACTIONS(717), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(3124), - [anon_sym_go] = ACTIONS(3126), - [anon_sym_spawn] = ACTIONS(3128), - [anon_sym_json_DOTdecode] = ACTIONS(1103), - [anon_sym_LBRACK2] = ACTIONS(1105), - [anon_sym_TILDE] = ACTIONS(3120), - [anon_sym_CARET] = ACTIONS(3120), - [anon_sym_AMP] = ACTIONS(3130), - [anon_sym_LT_DASH] = ACTIONS(3132), - [sym_none] = ACTIONS(1111), - [sym_true] = ACTIONS(1111), - [sym_false] = ACTIONS(1111), - [sym_nil] = ACTIONS(1111), - [anon_sym_if] = ACTIONS(1113), - [anon_sym_DOLLARif] = ACTIONS(1117), - [anon_sym_match] = ACTIONS(1119), - [anon_sym_select] = ACTIONS(3134), - [anon_sym_lock] = ACTIONS(3136), - [anon_sym_rlock] = ACTIONS(3136), - [anon_sym_unsafe] = ACTIONS(1125), - [anon_sym_sql] = ACTIONS(1127), - [sym_int_literal] = ACTIONS(1111), - [sym_float_literal] = ACTIONS(1129), - [sym_rune_literal] = ACTIONS(1129), - [sym_pseudo_compile_time_identifier] = ACTIONS(1131), + [anon_sym_BANG] = ACTIONS(721), + [anon_sym_go] = ACTIONS(723), + [anon_sym_spawn] = ACTIONS(725), + [anon_sym_json_DOTdecode] = ACTIONS(727), + [anon_sym_LBRACK2] = ACTIONS(729), + [anon_sym_TILDE] = ACTIONS(713), + [anon_sym_CARET] = ACTIONS(713), + [anon_sym_AMP] = ACTIONS(731), + [anon_sym_LT_DASH] = ACTIONS(733), + [sym_none] = ACTIONS(735), + [sym_true] = ACTIONS(735), + [sym_false] = ACTIONS(735), + [sym_nil] = ACTIONS(735), + [anon_sym_if] = ACTIONS(737), + [anon_sym_DOLLARif] = ACTIONS(739), + [anon_sym_match] = ACTIONS(741), + [anon_sym_select] = ACTIONS(743), + [anon_sym_lock] = ACTIONS(745), + [anon_sym_rlock] = ACTIONS(745), + [anon_sym_unsafe] = ACTIONS(747), + [anon_sym_sql] = ACTIONS(749), + [sym_int_literal] = ACTIONS(735), + [sym_float_literal] = ACTIONS(751), + [sym_rune_literal] = ACTIONS(751), + [sym_pseudo_compile_time_identifier] = ACTIONS(753), [anon_sym_shared] = ACTIONS(83), [anon_sym_map_LBRACK] = ACTIONS(85), [anon_sym_chan] = ACTIONS(87), [anon_sym_thread] = ACTIONS(89), [anon_sym_atomic] = ACTIONS(91), - [sym___double_quote] = ACTIONS(1133), - [sym___single_quote] = ACTIONS(1135), - [sym___c_double_quote] = ACTIONS(1137), - [sym___c_single_quote] = ACTIONS(1139), - [sym___r_double_quote] = ACTIONS(1141), - [sym___r_single_quote] = ACTIONS(1143), + [sym___double_quote] = ACTIONS(755), + [sym___single_quote] = ACTIONS(757), + [sym___c_double_quote] = ACTIONS(759), + [sym___c_single_quote] = ACTIONS(761), + [sym___r_double_quote] = ACTIONS(763), + [sym___r_single_quote] = ACTIONS(765), }, [740] = { [sym_line_comment] = STATE(740), [sym_block_comment] = STATE(740), - [sym__expression] = STATE(1129), - [sym__expression_without_blocks] = STATE(1141), - [sym__expression_with_blocks] = STATE(1141), - [sym_inc_expression] = STATE(1140), - [sym_dec_expression] = STATE(1140), - [sym_or_block_expression] = STATE(1140), - [sym_option_propagation_expression] = STATE(1140), - [sym_result_propagation_expression] = STATE(1140), - [sym_anon_struct_value_expression] = STATE(1199), - [sym_go_expression] = STATE(1140), - [sym_spawn_expression] = STATE(1140), - [sym_parenthesized_expression] = STATE(1140), - [sym_call_expression] = STATE(1140), - [sym_type_initializer] = STATE(1199), - [sym_function_literal] = STATE(1140), - [sym_reference_expression] = STATE(1181), - [sym_type_reference_expression] = STATE(3541), - [sym_unary_expression] = STATE(1140), - [sym_receive_expression] = STATE(1140), - [sym_binary_expression] = STATE(1140), - [sym_as_type_cast_expression] = STATE(1140), - [sym__max_group] = STATE(1140), - [sym_literal] = STATE(1146), - [sym_map_init_expression] = STATE(1199), - [sym_array_creation] = STATE(1140), - [sym_fixed_array_creation] = STATE(1140), - [sym_selector_expression] = STATE(1140), - [sym_index_expression] = STATE(1140), - [sym_slice_expression] = STATE(1140), - [sym_if_expression] = STATE(1199), - [sym_compile_time_if_expression] = STATE(1199), - [sym_is_expression] = STATE(1140), - [sym_in_expression] = STATE(1140), - [sym_enum_fetch] = STATE(1140), - [sym_match_expression] = STATE(1199), - [sym_select_expression] = STATE(1199), - [sym_lock_expression] = STATE(1199), - [sym_unsafe_expression] = STATE(1199), - [sym_sql_expression] = STATE(1199), - [sym_c_string_literal] = STATE(1147), - [sym_raw_string_literal] = STATE(1147), - [sym_interpreted_string_literal] = STATE(1147), - [sym_mutability_modifiers] = STATE(638), - [sym_plain_type] = STATE(4234), - [sym__plain_type_without_special] = STATE(2302), - [sym_anon_struct_type] = STATE(2303), - [sym_multi_return_type] = STATE(2302), - [sym_result_type] = STATE(2302), - [sym_option_type] = STATE(2302), - [sym_qualified_type] = STATE(3541), - [sym_fixed_array_type] = STATE(2303), - [sym_array_type] = STATE(2303), - [sym_pointer_type] = STATE(2303), - [sym_wrong_pointer_type] = STATE(2303), - [sym_map_type] = STATE(2303), - [sym_channel_type] = STATE(2303), - [sym_shared_type] = STATE(2303), - [sym_thread_type] = STATE(2303), - [sym_atomic_type] = STATE(2303), - [sym_generic_type] = STATE(2303), - [sym_function_type] = STATE(2303), - [sym_identifier] = ACTIONS(1071), + [sym__expression] = STATE(1764), + [sym__expression_without_blocks] = STATE(1953), + [sym__expression_with_blocks] = STATE(1953), + [sym_inc_expression] = STATE(1955), + [sym_dec_expression] = STATE(1955), + [sym_or_block_expression] = STATE(1955), + [sym_option_propagation_expression] = STATE(1955), + [sym_result_propagation_expression] = STATE(1955), + [sym_anon_struct_value_expression] = STATE(1958), + [sym_go_expression] = STATE(1955), + [sym_spawn_expression] = STATE(1955), + [sym_parenthesized_expression] = STATE(1955), + [sym_call_expression] = STATE(1955), + [sym_type_initializer] = STATE(1958), + [sym_function_literal] = STATE(1955), + [sym_reference_expression] = STATE(1956), + [sym_type_reference_expression] = STATE(3460), + [sym_unary_expression] = STATE(1955), + [sym_receive_expression] = STATE(1955), + [sym_binary_expression] = STATE(1955), + [sym_as_type_cast_expression] = STATE(1955), + [sym__max_group] = STATE(1955), + [sym_literal] = STATE(1943), + [sym_map_init_expression] = STATE(1958), + [sym_array_creation] = STATE(1955), + [sym_fixed_array_creation] = STATE(1955), + [sym_selector_expression] = STATE(1955), + [sym_index_expression] = STATE(1955), + [sym_slice_expression] = STATE(1955), + [sym_if_expression] = STATE(1958), + [sym_compile_time_if_expression] = STATE(1958), + [sym_is_expression] = STATE(1955), + [sym_in_expression] = STATE(1955), + [sym_enum_fetch] = STATE(1955), + [sym_match_expression] = STATE(1958), + [sym_select_expression] = STATE(1958), + [sym_lock_expression] = STATE(1958), + [sym_unsafe_expression] = STATE(1958), + [sym_sql_expression] = STATE(1958), + [sym_c_string_literal] = STATE(1942), + [sym_raw_string_literal] = STATE(1942), + [sym_interpreted_string_literal] = STATE(1942), + [sym_mutability_modifiers] = STATE(601), + [sym_plain_type] = STATE(4106), + [sym__plain_type_without_special] = STATE(2360), + [sym_anon_struct_type] = STATE(2362), + [sym_multi_return_type] = STATE(2360), + [sym_result_type] = STATE(2360), + [sym_option_type] = STATE(2360), + [sym_qualified_type] = STATE(3460), + [sym_fixed_array_type] = STATE(2362), + [sym_array_type] = STATE(2362), + [sym_pointer_type] = STATE(2362), + [sym_wrong_pointer_type] = STATE(2362), + [sym_map_type] = STATE(2362), + [sym_channel_type] = STATE(2362), + [sym_shared_type] = STATE(2362), + [sym_thread_type] = STATE(2362), + [sym_atomic_type] = STATE(2362), + [sym_generic_type] = STATE(2362), + [sym_function_type] = STATE(2362), + [sym_identifier] = ACTIONS(1681), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(631), - [anon_sym_LBRACE] = ACTIONS(633), - [anon_sym_LPAREN] = ACTIONS(637), - [anon_sym_fn] = ACTIONS(641), - [anon_sym_PLUS] = ACTIONS(643), - [anon_sym_DASH] = ACTIONS(643), - [anon_sym_STAR] = ACTIONS(645), - [anon_sym_struct] = ACTIONS(649), + [anon_sym_DOT] = ACTIONS(705), + [anon_sym_LBRACE] = ACTIONS(3118), + [anon_sym_LPAREN] = ACTIONS(709), + [anon_sym_fn] = ACTIONS(711), + [anon_sym_PLUS] = ACTIONS(713), + [anon_sym_DASH] = ACTIONS(713), + [anon_sym_STAR] = ACTIONS(715), + [anon_sym_struct] = ACTIONS(717), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(655), - [anon_sym_go] = ACTIONS(657), - [anon_sym_spawn] = ACTIONS(659), - [anon_sym_json_DOTdecode] = ACTIONS(661), - [anon_sym_LBRACK2] = ACTIONS(663), - [anon_sym_TILDE] = ACTIONS(643), - [anon_sym_CARET] = ACTIONS(643), - [anon_sym_AMP] = ACTIONS(665), - [anon_sym_LT_DASH] = ACTIONS(667), - [sym_none] = ACTIONS(669), - [sym_true] = ACTIONS(669), - [sym_false] = ACTIONS(669), - [sym_nil] = ACTIONS(669), - [anon_sym_if] = ACTIONS(671), - [anon_sym_DOLLARif] = ACTIONS(673), - [anon_sym_match] = ACTIONS(675), - [anon_sym_select] = ACTIONS(677), - [anon_sym_lock] = ACTIONS(679), - [anon_sym_rlock] = ACTIONS(679), - [anon_sym_unsafe] = ACTIONS(681), - [anon_sym_sql] = ACTIONS(683), - [sym_int_literal] = ACTIONS(669), - [sym_float_literal] = ACTIONS(685), - [sym_rune_literal] = ACTIONS(685), - [sym_pseudo_compile_time_identifier] = ACTIONS(687), + [anon_sym_BANG] = ACTIONS(721), + [anon_sym_go] = ACTIONS(723), + [anon_sym_spawn] = ACTIONS(725), + [anon_sym_json_DOTdecode] = ACTIONS(727), + [anon_sym_LBRACK2] = ACTIONS(729), + [anon_sym_TILDE] = ACTIONS(713), + [anon_sym_CARET] = ACTIONS(713), + [anon_sym_AMP] = ACTIONS(731), + [anon_sym_LT_DASH] = ACTIONS(733), + [sym_none] = ACTIONS(735), + [sym_true] = ACTIONS(735), + [sym_false] = ACTIONS(735), + [sym_nil] = ACTIONS(735), + [anon_sym_if] = ACTIONS(737), + [anon_sym_DOLLARif] = ACTIONS(739), + [anon_sym_match] = ACTIONS(741), + [anon_sym_select] = ACTIONS(743), + [anon_sym_lock] = ACTIONS(745), + [anon_sym_rlock] = ACTIONS(745), + [anon_sym_unsafe] = ACTIONS(747), + [anon_sym_sql] = ACTIONS(749), + [sym_int_literal] = ACTIONS(735), + [sym_float_literal] = ACTIONS(751), + [sym_rune_literal] = ACTIONS(751), + [sym_pseudo_compile_time_identifier] = ACTIONS(753), [anon_sym_shared] = ACTIONS(83), [anon_sym_map_LBRACK] = ACTIONS(85), [anon_sym_chan] = ACTIONS(87), [anon_sym_thread] = ACTIONS(89), [anon_sym_atomic] = ACTIONS(91), - [sym___double_quote] = ACTIONS(689), - [sym___single_quote] = ACTIONS(691), - [sym___c_double_quote] = ACTIONS(693), - [sym___c_single_quote] = ACTIONS(695), - [sym___r_double_quote] = ACTIONS(697), - [sym___r_single_quote] = ACTIONS(699), + [sym___double_quote] = ACTIONS(755), + [sym___single_quote] = ACTIONS(757), + [sym___c_double_quote] = ACTIONS(759), + [sym___c_single_quote] = ACTIONS(761), + [sym___r_double_quote] = ACTIONS(763), + [sym___r_single_quote] = ACTIONS(765), }, [741] = { [sym_line_comment] = STATE(741), [sym_block_comment] = STATE(741), - [sym__expression] = STATE(1620), - [sym__expression_without_blocks] = STATE(1692), - [sym__expression_with_blocks] = STATE(1692), - [sym_inc_expression] = STATE(1684), - [sym_dec_expression] = STATE(1684), - [sym_or_block_expression] = STATE(1684), - [sym_option_propagation_expression] = STATE(1684), - [sym_result_propagation_expression] = STATE(1684), - [sym_anon_struct_value_expression] = STATE(1677), - [sym_go_expression] = STATE(1684), - [sym_spawn_expression] = STATE(1684), - [sym_parenthesized_expression] = STATE(1684), - [sym_call_expression] = STATE(1684), - [sym_type_initializer] = STATE(1677), - [sym_function_literal] = STATE(1684), - [sym_reference_expression] = STATE(1674), - [sym_type_reference_expression] = STATE(3541), - [sym_unary_expression] = STATE(1684), - [sym_receive_expression] = STATE(1684), - [sym_binary_expression] = STATE(1684), - [sym_as_type_cast_expression] = STATE(1684), - [sym__max_group] = STATE(1684), - [sym_literal] = STATE(1698), - [sym_map_init_expression] = STATE(1677), - [sym_array_creation] = STATE(1684), - [sym_fixed_array_creation] = STATE(1684), - [sym_selector_expression] = STATE(1684), - [sym_index_expression] = STATE(1684), - [sym_slice_expression] = STATE(1684), - [sym_if_expression] = STATE(1677), - [sym_compile_time_if_expression] = STATE(1677), - [sym_is_expression] = STATE(1684), - [sym_in_expression] = STATE(1684), - [sym_enum_fetch] = STATE(1684), - [sym_match_expression] = STATE(1677), - [sym_select_expression] = STATE(1677), - [sym_lock_expression] = STATE(1677), - [sym_unsafe_expression] = STATE(1677), - [sym_sql_expression] = STATE(1677), - [sym_c_string_literal] = STATE(1705), - [sym_raw_string_literal] = STATE(1705), - [sym_interpreted_string_literal] = STATE(1705), - [sym_mutability_modifiers] = STATE(664), - [sym_plain_type] = STATE(4169), - [sym__plain_type_without_special] = STATE(2302), - [sym_anon_struct_type] = STATE(2303), - [sym_multi_return_type] = STATE(2302), - [sym_result_type] = STATE(2302), - [sym_option_type] = STATE(2302), - [sym_qualified_type] = STATE(3541), - [sym_fixed_array_type] = STATE(2303), - [sym_array_type] = STATE(2303), - [sym_pointer_type] = STATE(2303), - [sym_wrong_pointer_type] = STATE(2303), - [sym_map_type] = STATE(2303), - [sym_channel_type] = STATE(2303), - [sym_shared_type] = STATE(2303), - [sym_thread_type] = STATE(2303), - [sym_atomic_type] = STATE(2303), - [sym_generic_type] = STATE(2303), - [sym_function_type] = STATE(2303), - [sym_identifier] = ACTIONS(3416), + [sym__expression] = STATE(1769), + [sym__expression_without_blocks] = STATE(1953), + [sym__expression_with_blocks] = STATE(1953), + [sym_inc_expression] = STATE(1955), + [sym_dec_expression] = STATE(1955), + [sym_or_block_expression] = STATE(1955), + [sym_option_propagation_expression] = STATE(1955), + [sym_result_propagation_expression] = STATE(1955), + [sym_anon_struct_value_expression] = STATE(1958), + [sym_go_expression] = STATE(1955), + [sym_spawn_expression] = STATE(1955), + [sym_parenthesized_expression] = STATE(1955), + [sym_call_expression] = STATE(1955), + [sym_type_initializer] = STATE(1958), + [sym_function_literal] = STATE(1955), + [sym_reference_expression] = STATE(1956), + [sym_type_reference_expression] = STATE(3460), + [sym_unary_expression] = STATE(1955), + [sym_receive_expression] = STATE(1955), + [sym_binary_expression] = STATE(1955), + [sym_as_type_cast_expression] = STATE(1955), + [sym__max_group] = STATE(1955), + [sym_literal] = STATE(1943), + [sym_map_init_expression] = STATE(1958), + [sym_array_creation] = STATE(1955), + [sym_fixed_array_creation] = STATE(1955), + [sym_selector_expression] = STATE(1955), + [sym_index_expression] = STATE(1955), + [sym_slice_expression] = STATE(1955), + [sym_if_expression] = STATE(1958), + [sym_compile_time_if_expression] = STATE(1958), + [sym_is_expression] = STATE(1955), + [sym_in_expression] = STATE(1955), + [sym_enum_fetch] = STATE(1955), + [sym_match_expression] = STATE(1958), + [sym_select_expression] = STATE(1958), + [sym_lock_expression] = STATE(1958), + [sym_unsafe_expression] = STATE(1958), + [sym_sql_expression] = STATE(1958), + [sym_c_string_literal] = STATE(1942), + [sym_raw_string_literal] = STATE(1942), + [sym_interpreted_string_literal] = STATE(1942), + [sym_mutability_modifiers] = STATE(601), + [sym_plain_type] = STATE(4266), + [sym__plain_type_without_special] = STATE(2360), + [sym_anon_struct_type] = STATE(2362), + [sym_multi_return_type] = STATE(2360), + [sym_result_type] = STATE(2360), + [sym_option_type] = STATE(2360), + [sym_qualified_type] = STATE(3460), + [sym_fixed_array_type] = STATE(2362), + [sym_array_type] = STATE(2362), + [sym_pointer_type] = STATE(2362), + [sym_wrong_pointer_type] = STATE(2362), + [sym_map_type] = STATE(2362), + [sym_channel_type] = STATE(2362), + [sym_shared_type] = STATE(2362), + [sym_thread_type] = STATE(2362), + [sym_atomic_type] = STATE(2362), + [sym_generic_type] = STATE(2362), + [sym_function_type] = STATE(2362), + [sym_identifier] = ACTIONS(1681), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(309), - [anon_sym_LBRACE] = ACTIONS(3418), - [anon_sym_LPAREN] = ACTIONS(315), - [anon_sym_fn] = ACTIONS(317), - [anon_sym_PLUS] = ACTIONS(319), - [anon_sym_DASH] = ACTIONS(319), - [anon_sym_STAR] = ACTIONS(321), - [anon_sym_struct] = ACTIONS(323), + [anon_sym_DOT] = ACTIONS(705), + [anon_sym_LBRACE] = ACTIONS(3118), + [anon_sym_LPAREN] = ACTIONS(709), + [anon_sym_fn] = ACTIONS(711), + [anon_sym_PLUS] = ACTIONS(713), + [anon_sym_DASH] = ACTIONS(713), + [anon_sym_STAR] = ACTIONS(715), + [anon_sym_struct] = ACTIONS(717), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(325), - [anon_sym_go] = ACTIONS(327), - [anon_sym_spawn] = ACTIONS(329), - [anon_sym_json_DOTdecode] = ACTIONS(331), - [anon_sym_LBRACK2] = ACTIONS(333), - [anon_sym_TILDE] = ACTIONS(319), - [anon_sym_CARET] = ACTIONS(319), - [anon_sym_AMP] = ACTIONS(335), - [anon_sym_LT_DASH] = ACTIONS(337), - [sym_none] = ACTIONS(339), - [sym_true] = ACTIONS(339), - [sym_false] = ACTIONS(339), - [sym_nil] = ACTIONS(339), - [anon_sym_if] = ACTIONS(341), - [anon_sym_DOLLARif] = ACTIONS(343), - [anon_sym_match] = ACTIONS(345), - [anon_sym_select] = ACTIONS(347), - [anon_sym_lock] = ACTIONS(349), - [anon_sym_rlock] = ACTIONS(349), - [anon_sym_unsafe] = ACTIONS(351), - [anon_sym_sql] = ACTIONS(353), - [sym_int_literal] = ACTIONS(339), - [sym_float_literal] = ACTIONS(355), - [sym_rune_literal] = ACTIONS(355), - [sym_pseudo_compile_time_identifier] = ACTIONS(357), + [anon_sym_BANG] = ACTIONS(721), + [anon_sym_go] = ACTIONS(723), + [anon_sym_spawn] = ACTIONS(725), + [anon_sym_json_DOTdecode] = ACTIONS(727), + [anon_sym_LBRACK2] = ACTIONS(729), + [anon_sym_TILDE] = ACTIONS(713), + [anon_sym_CARET] = ACTIONS(713), + [anon_sym_AMP] = ACTIONS(731), + [anon_sym_LT_DASH] = ACTIONS(733), + [sym_none] = ACTIONS(735), + [sym_true] = ACTIONS(735), + [sym_false] = ACTIONS(735), + [sym_nil] = ACTIONS(735), + [anon_sym_if] = ACTIONS(737), + [anon_sym_DOLLARif] = ACTIONS(739), + [anon_sym_match] = ACTIONS(741), + [anon_sym_select] = ACTIONS(743), + [anon_sym_lock] = ACTIONS(745), + [anon_sym_rlock] = ACTIONS(745), + [anon_sym_unsafe] = ACTIONS(747), + [anon_sym_sql] = ACTIONS(749), + [sym_int_literal] = ACTIONS(735), + [sym_float_literal] = ACTIONS(751), + [sym_rune_literal] = ACTIONS(751), + [sym_pseudo_compile_time_identifier] = ACTIONS(753), [anon_sym_shared] = ACTIONS(83), [anon_sym_map_LBRACK] = ACTIONS(85), [anon_sym_chan] = ACTIONS(87), [anon_sym_thread] = ACTIONS(89), [anon_sym_atomic] = ACTIONS(91), - [sym___double_quote] = ACTIONS(379), - [sym___single_quote] = ACTIONS(381), - [sym___c_double_quote] = ACTIONS(383), - [sym___c_single_quote] = ACTIONS(385), - [sym___r_double_quote] = ACTIONS(387), - [sym___r_single_quote] = ACTIONS(389), + [sym___double_quote] = ACTIONS(755), + [sym___single_quote] = ACTIONS(757), + [sym___c_double_quote] = ACTIONS(759), + [sym___c_single_quote] = ACTIONS(761), + [sym___r_double_quote] = ACTIONS(763), + [sym___r_single_quote] = ACTIONS(765), }, [742] = { [sym_line_comment] = STATE(742), [sym_block_comment] = STATE(742), - [sym__expression] = STATE(2445), - [sym__expression_without_blocks] = STATE(2625), - [sym__expression_with_blocks] = STATE(2625), - [sym_inc_expression] = STATE(2765), - [sym_dec_expression] = STATE(2765), - [sym_or_block_expression] = STATE(2765), - [sym_option_propagation_expression] = STATE(2765), - [sym_result_propagation_expression] = STATE(2765), - [sym_anon_struct_value_expression] = STATE(2619), - [sym_go_expression] = STATE(2765), - [sym_spawn_expression] = STATE(2765), - [sym_parenthesized_expression] = STATE(2765), - [sym_call_expression] = STATE(2765), - [sym_type_initializer] = STATE(2619), - [sym_function_literal] = STATE(2765), - [sym_reference_expression] = STATE(2764), - [sym_type_reference_expression] = STATE(3541), - [sym_unary_expression] = STATE(2765), - [sym_receive_expression] = STATE(2765), - [sym_binary_expression] = STATE(2765), - [sym_as_type_cast_expression] = STATE(2765), - [sym__max_group] = STATE(2765), - [sym_literal] = STATE(2769), - [sym_map_init_expression] = STATE(2619), - [sym_array_creation] = STATE(2765), - [sym_fixed_array_creation] = STATE(2765), - [sym_selector_expression] = STATE(2765), - [sym_index_expression] = STATE(2765), - [sym_slice_expression] = STATE(2765), - [sym_if_expression] = STATE(2619), - [sym_compile_time_if_expression] = STATE(2619), - [sym_is_expression] = STATE(2765), - [sym_in_expression] = STATE(2765), - [sym_enum_fetch] = STATE(2765), - [sym_match_expression] = STATE(2619), - [sym_select_expression] = STATE(2619), - [sym_lock_expression] = STATE(2619), - [sym_unsafe_expression] = STATE(2619), - [sym_sql_expression] = STATE(2619), - [sym_c_string_literal] = STATE(2660), - [sym_raw_string_literal] = STATE(2660), - [sym_interpreted_string_literal] = STATE(2660), - [sym_mutability_modifiers] = STATE(567), - [sym_plain_type] = STATE(4008), - [sym__plain_type_without_special] = STATE(2302), - [sym_anon_struct_type] = STATE(2303), - [sym_multi_return_type] = STATE(2302), - [sym_result_type] = STATE(2302), - [sym_option_type] = STATE(2302), - [sym_qualified_type] = STATE(3541), - [sym_fixed_array_type] = STATE(2303), - [sym_array_type] = STATE(2303), - [sym_pointer_type] = STATE(2303), - [sym_wrong_pointer_type] = STATE(2303), - [sym_map_type] = STATE(2303), - [sym_channel_type] = STATE(2303), - [sym_shared_type] = STATE(2303), - [sym_thread_type] = STATE(2303), - [sym_atomic_type] = STATE(2303), - [sym_generic_type] = STATE(2303), - [sym_function_type] = STATE(2303), - [sym_identifier] = ACTIONS(1807), + [sym__expression] = STATE(1767), + [sym__expression_without_blocks] = STATE(1953), + [sym__expression_with_blocks] = STATE(1953), + [sym_inc_expression] = STATE(1955), + [sym_dec_expression] = STATE(1955), + [sym_or_block_expression] = STATE(1955), + [sym_option_propagation_expression] = STATE(1955), + [sym_result_propagation_expression] = STATE(1955), + [sym_anon_struct_value_expression] = STATE(1958), + [sym_go_expression] = STATE(1955), + [sym_spawn_expression] = STATE(1955), + [sym_parenthesized_expression] = STATE(1955), + [sym_call_expression] = STATE(1955), + [sym_type_initializer] = STATE(1958), + [sym_function_literal] = STATE(1955), + [sym_reference_expression] = STATE(1956), + [sym_type_reference_expression] = STATE(3460), + [sym_unary_expression] = STATE(1955), + [sym_receive_expression] = STATE(1955), + [sym_binary_expression] = STATE(1955), + [sym_as_type_cast_expression] = STATE(1955), + [sym__max_group] = STATE(1955), + [sym_literal] = STATE(1943), + [sym_map_init_expression] = STATE(1958), + [sym_array_creation] = STATE(1955), + [sym_fixed_array_creation] = STATE(1955), + [sym_selector_expression] = STATE(1955), + [sym_index_expression] = STATE(1955), + [sym_slice_expression] = STATE(1955), + [sym_if_expression] = STATE(1958), + [sym_compile_time_if_expression] = STATE(1958), + [sym_is_expression] = STATE(1955), + [sym_in_expression] = STATE(1955), + [sym_enum_fetch] = STATE(1955), + [sym_match_expression] = STATE(1958), + [sym_select_expression] = STATE(1958), + [sym_lock_expression] = STATE(1958), + [sym_unsafe_expression] = STATE(1958), + [sym_sql_expression] = STATE(1958), + [sym_c_string_literal] = STATE(1942), + [sym_raw_string_literal] = STATE(1942), + [sym_interpreted_string_literal] = STATE(1942), + [sym_mutability_modifiers] = STATE(601), + [sym_plain_type] = STATE(4266), + [sym__plain_type_without_special] = STATE(2360), + [sym_anon_struct_type] = STATE(2362), + [sym_multi_return_type] = STATE(2360), + [sym_result_type] = STATE(2360), + [sym_option_type] = STATE(2360), + [sym_qualified_type] = STATE(3460), + [sym_fixed_array_type] = STATE(2362), + [sym_array_type] = STATE(2362), + [sym_pointer_type] = STATE(2362), + [sym_wrong_pointer_type] = STATE(2362), + [sym_map_type] = STATE(2362), + [sym_channel_type] = STATE(2362), + [sym_shared_type] = STATE(2362), + [sym_thread_type] = STATE(2362), + [sym_atomic_type] = STATE(2362), + [sym_generic_type] = STATE(2362), + [sym_function_type] = STATE(2362), + [sym_identifier] = ACTIONS(1681), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1081), - [anon_sym_LBRACE] = ACTIONS(1083), - [anon_sym_LPAREN] = ACTIONS(1087), - [anon_sym_fn] = ACTIONS(1089), - [anon_sym_PLUS] = ACTIONS(3120), - [anon_sym_DASH] = ACTIONS(3120), - [anon_sym_STAR] = ACTIONS(3122), - [anon_sym_struct] = ACTIONS(1095), + [anon_sym_DOT] = ACTIONS(705), + [anon_sym_LBRACE] = ACTIONS(3118), + [anon_sym_LPAREN] = ACTIONS(709), + [anon_sym_fn] = ACTIONS(711), + [anon_sym_PLUS] = ACTIONS(713), + [anon_sym_DASH] = ACTIONS(713), + [anon_sym_STAR] = ACTIONS(715), + [anon_sym_struct] = ACTIONS(717), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(3124), - [anon_sym_go] = ACTIONS(3126), - [anon_sym_spawn] = ACTIONS(3128), - [anon_sym_json_DOTdecode] = ACTIONS(1103), - [anon_sym_LBRACK2] = ACTIONS(1105), - [anon_sym_TILDE] = ACTIONS(3120), - [anon_sym_CARET] = ACTIONS(3120), - [anon_sym_AMP] = ACTIONS(3130), - [anon_sym_LT_DASH] = ACTIONS(3132), - [sym_none] = ACTIONS(1111), - [sym_true] = ACTIONS(1111), - [sym_false] = ACTIONS(1111), - [sym_nil] = ACTIONS(1111), - [anon_sym_if] = ACTIONS(1113), - [anon_sym_DOLLARif] = ACTIONS(1117), - [anon_sym_match] = ACTIONS(1119), - [anon_sym_select] = ACTIONS(3134), - [anon_sym_lock] = ACTIONS(3136), - [anon_sym_rlock] = ACTIONS(3136), - [anon_sym_unsafe] = ACTIONS(1125), - [anon_sym_sql] = ACTIONS(1127), - [sym_int_literal] = ACTIONS(1111), - [sym_float_literal] = ACTIONS(1129), - [sym_rune_literal] = ACTIONS(1129), - [sym_pseudo_compile_time_identifier] = ACTIONS(1131), + [anon_sym_BANG] = ACTIONS(721), + [anon_sym_go] = ACTIONS(723), + [anon_sym_spawn] = ACTIONS(725), + [anon_sym_json_DOTdecode] = ACTIONS(727), + [anon_sym_LBRACK2] = ACTIONS(729), + [anon_sym_TILDE] = ACTIONS(713), + [anon_sym_CARET] = ACTIONS(713), + [anon_sym_AMP] = ACTIONS(731), + [anon_sym_LT_DASH] = ACTIONS(733), + [sym_none] = ACTIONS(735), + [sym_true] = ACTIONS(735), + [sym_false] = ACTIONS(735), + [sym_nil] = ACTIONS(735), + [anon_sym_if] = ACTIONS(737), + [anon_sym_DOLLARif] = ACTIONS(739), + [anon_sym_match] = ACTIONS(741), + [anon_sym_select] = ACTIONS(743), + [anon_sym_lock] = ACTIONS(745), + [anon_sym_rlock] = ACTIONS(745), + [anon_sym_unsafe] = ACTIONS(747), + [anon_sym_sql] = ACTIONS(749), + [sym_int_literal] = ACTIONS(735), + [sym_float_literal] = ACTIONS(751), + [sym_rune_literal] = ACTIONS(751), + [sym_pseudo_compile_time_identifier] = ACTIONS(753), [anon_sym_shared] = ACTIONS(83), [anon_sym_map_LBRACK] = ACTIONS(85), [anon_sym_chan] = ACTIONS(87), [anon_sym_thread] = ACTIONS(89), [anon_sym_atomic] = ACTIONS(91), - [sym___double_quote] = ACTIONS(1133), - [sym___single_quote] = ACTIONS(1135), - [sym___c_double_quote] = ACTIONS(1137), - [sym___c_single_quote] = ACTIONS(1139), - [sym___r_double_quote] = ACTIONS(1141), - [sym___r_single_quote] = ACTIONS(1143), + [sym___double_quote] = ACTIONS(755), + [sym___single_quote] = ACTIONS(757), + [sym___c_double_quote] = ACTIONS(759), + [sym___c_single_quote] = ACTIONS(761), + [sym___r_double_quote] = ACTIONS(763), + [sym___r_single_quote] = ACTIONS(765), }, [743] = { [sym_line_comment] = STATE(743), [sym_block_comment] = STATE(743), - [sym__expression] = STATE(2622), - [sym__expression_without_blocks] = STATE(2300), - [sym__expression_with_blocks] = STATE(2300), - [sym_inc_expression] = STATE(2307), - [sym_dec_expression] = STATE(2307), - [sym_or_block_expression] = STATE(2307), - [sym_option_propagation_expression] = STATE(2307), - [sym_result_propagation_expression] = STATE(2307), - [sym_anon_struct_value_expression] = STATE(2380), - [sym_go_expression] = STATE(2307), - [sym_spawn_expression] = STATE(2307), - [sym_parenthesized_expression] = STATE(2307), - [sym_call_expression] = STATE(2307), - [sym_type_initializer] = STATE(2380), - [sym_function_literal] = STATE(2307), - [sym_reference_expression] = STATE(2311), - [sym_type_reference_expression] = STATE(3541), - [sym_unary_expression] = STATE(2307), - [sym_receive_expression] = STATE(2307), - [sym_binary_expression] = STATE(2307), - [sym_as_type_cast_expression] = STATE(2307), - [sym__max_group] = STATE(2307), - [sym_literal] = STATE(2292), - [sym_map_init_expression] = STATE(2380), - [sym_array_creation] = STATE(2307), - [sym_fixed_array_creation] = STATE(2307), - [sym_selector_expression] = STATE(2307), - [sym_index_expression] = STATE(2307), - [sym_slice_expression] = STATE(2307), - [sym_if_expression] = STATE(2380), - [sym_compile_time_if_expression] = STATE(2380), - [sym_is_expression] = STATE(2307), - [sym_in_expression] = STATE(2307), - [sym_enum_fetch] = STATE(2307), - [sym_match_expression] = STATE(2380), - [sym_select_expression] = STATE(2380), - [sym_lock_expression] = STATE(2380), - [sym_unsafe_expression] = STATE(2380), - [sym_sql_expression] = STATE(2380), - [sym_c_string_literal] = STATE(2308), - [sym_raw_string_literal] = STATE(2308), - [sym_interpreted_string_literal] = STATE(2308), - [sym_mutability_modifiers] = STATE(939), - [sym_plain_type] = STATE(4297), - [sym__plain_type_without_special] = STATE(2302), - [sym_anon_struct_type] = STATE(2303), - [sym_multi_return_type] = STATE(2302), - [sym_result_type] = STATE(2302), - [sym_option_type] = STATE(2302), - [sym_qualified_type] = STATE(3541), - [sym_fixed_array_type] = STATE(2303), - [sym_array_type] = STATE(2303), - [sym_pointer_type] = STATE(2303), - [sym_wrong_pointer_type] = STATE(2303), - [sym_map_type] = STATE(2303), - [sym_channel_type] = STATE(2303), - [sym_shared_type] = STATE(2303), - [sym_thread_type] = STATE(2303), - [sym_atomic_type] = STATE(2303), - [sym_generic_type] = STATE(2303), - [sym_function_type] = STATE(2303), - [sym_identifier] = ACTIONS(2189), + [sym__expression] = STATE(1764), + [sym__expression_without_blocks] = STATE(1953), + [sym__expression_with_blocks] = STATE(1953), + [sym_inc_expression] = STATE(1955), + [sym_dec_expression] = STATE(1955), + [sym_or_block_expression] = STATE(1955), + [sym_option_propagation_expression] = STATE(1955), + [sym_result_propagation_expression] = STATE(1955), + [sym_anon_struct_value_expression] = STATE(1958), + [sym_go_expression] = STATE(1955), + [sym_spawn_expression] = STATE(1955), + [sym_parenthesized_expression] = STATE(1955), + [sym_call_expression] = STATE(1955), + [sym_type_initializer] = STATE(1958), + [sym_function_literal] = STATE(1955), + [sym_reference_expression] = STATE(1956), + [sym_type_reference_expression] = STATE(3460), + [sym_unary_expression] = STATE(1955), + [sym_receive_expression] = STATE(1955), + [sym_binary_expression] = STATE(1955), + [sym_as_type_cast_expression] = STATE(1955), + [sym__max_group] = STATE(1955), + [sym_literal] = STATE(1943), + [sym_map_init_expression] = STATE(1958), + [sym_array_creation] = STATE(1955), + [sym_fixed_array_creation] = STATE(1955), + [sym_selector_expression] = STATE(1955), + [sym_index_expression] = STATE(1955), + [sym_slice_expression] = STATE(1955), + [sym_if_expression] = STATE(1958), + [sym_compile_time_if_expression] = STATE(1958), + [sym_is_expression] = STATE(1955), + [sym_in_expression] = STATE(1955), + [sym_enum_fetch] = STATE(1955), + [sym_match_expression] = STATE(1958), + [sym_select_expression] = STATE(1958), + [sym_lock_expression] = STATE(1958), + [sym_unsafe_expression] = STATE(1958), + [sym_sql_expression] = STATE(1958), + [sym_c_string_literal] = STATE(1942), + [sym_raw_string_literal] = STATE(1942), + [sym_interpreted_string_literal] = STATE(1942), + [sym_mutability_modifiers] = STATE(601), + [sym_plain_type] = STATE(4243), + [sym__plain_type_without_special] = STATE(2360), + [sym_anon_struct_type] = STATE(2362), + [sym_multi_return_type] = STATE(2360), + [sym_result_type] = STATE(2360), + [sym_option_type] = STATE(2360), + [sym_qualified_type] = STATE(3460), + [sym_fixed_array_type] = STATE(2362), + [sym_array_type] = STATE(2362), + [sym_pointer_type] = STATE(2362), + [sym_wrong_pointer_type] = STATE(2362), + [sym_map_type] = STATE(2362), + [sym_channel_type] = STATE(2362), + [sym_shared_type] = STATE(2362), + [sym_thread_type] = STATE(2362), + [sym_atomic_type] = STATE(2362), + [sym_generic_type] = STATE(2362), + [sym_function_type] = STATE(2362), + [sym_identifier] = ACTIONS(1681), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1428), - [anon_sym_LBRACE] = ACTIONS(1430), - [anon_sym_LPAREN] = ACTIONS(1432), - [anon_sym_fn] = ACTIONS(1434), - [anon_sym_PLUS] = ACTIONS(2491), - [anon_sym_DASH] = ACTIONS(2491), - [anon_sym_STAR] = ACTIONS(3354), - [anon_sym_struct] = ACTIONS(1440), + [anon_sym_DOT] = ACTIONS(705), + [anon_sym_LBRACE] = ACTIONS(3118), + [anon_sym_LPAREN] = ACTIONS(709), + [anon_sym_fn] = ACTIONS(711), + [anon_sym_PLUS] = ACTIONS(713), + [anon_sym_DASH] = ACTIONS(713), + [anon_sym_STAR] = ACTIONS(715), + [anon_sym_struct] = ACTIONS(717), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(3356), - [anon_sym_go] = ACTIONS(2497), - [anon_sym_spawn] = ACTIONS(2499), - [anon_sym_json_DOTdecode] = ACTIONS(1448), - [anon_sym_LBRACK2] = ACTIONS(1450), - [anon_sym_TILDE] = ACTIONS(2491), - [anon_sym_CARET] = ACTIONS(2491), - [anon_sym_AMP] = ACTIONS(3358), - [anon_sym_LT_DASH] = ACTIONS(2503), - [sym_none] = ACTIONS(1456), - [sym_true] = ACTIONS(1456), - [sym_false] = ACTIONS(1456), - [sym_nil] = ACTIONS(1456), - [anon_sym_if] = ACTIONS(1827), - [anon_sym_DOLLARif] = ACTIONS(1460), - [anon_sym_match] = ACTIONS(1462), - [anon_sym_select] = ACTIONS(1464), - [anon_sym_lock] = ACTIONS(1466), - [anon_sym_rlock] = ACTIONS(1466), - [anon_sym_unsafe] = ACTIONS(1833), - [anon_sym_sql] = ACTIONS(1470), - [sym_int_literal] = ACTIONS(1456), - [sym_float_literal] = ACTIONS(1472), - [sym_rune_literal] = ACTIONS(1472), - [sym_pseudo_compile_time_identifier] = ACTIONS(1474), + [anon_sym_BANG] = ACTIONS(721), + [anon_sym_go] = ACTIONS(723), + [anon_sym_spawn] = ACTIONS(725), + [anon_sym_json_DOTdecode] = ACTIONS(727), + [anon_sym_LBRACK2] = ACTIONS(729), + [anon_sym_TILDE] = ACTIONS(713), + [anon_sym_CARET] = ACTIONS(713), + [anon_sym_AMP] = ACTIONS(731), + [anon_sym_LT_DASH] = ACTIONS(733), + [sym_none] = ACTIONS(735), + [sym_true] = ACTIONS(735), + [sym_false] = ACTIONS(735), + [sym_nil] = ACTIONS(735), + [anon_sym_if] = ACTIONS(737), + [anon_sym_DOLLARif] = ACTIONS(739), + [anon_sym_match] = ACTIONS(741), + [anon_sym_select] = ACTIONS(743), + [anon_sym_lock] = ACTIONS(745), + [anon_sym_rlock] = ACTIONS(745), + [anon_sym_unsafe] = ACTIONS(747), + [anon_sym_sql] = ACTIONS(749), + [sym_int_literal] = ACTIONS(735), + [sym_float_literal] = ACTIONS(751), + [sym_rune_literal] = ACTIONS(751), + [sym_pseudo_compile_time_identifier] = ACTIONS(753), [anon_sym_shared] = ACTIONS(83), [anon_sym_map_LBRACK] = ACTIONS(85), [anon_sym_chan] = ACTIONS(87), [anon_sym_thread] = ACTIONS(89), [anon_sym_atomic] = ACTIONS(91), - [sym___double_quote] = ACTIONS(1478), - [sym___single_quote] = ACTIONS(1480), - [sym___c_double_quote] = ACTIONS(1482), - [sym___c_single_quote] = ACTIONS(1484), - [sym___r_double_quote] = ACTIONS(1486), - [sym___r_single_quote] = ACTIONS(1488), + [sym___double_quote] = ACTIONS(755), + [sym___single_quote] = ACTIONS(757), + [sym___c_double_quote] = ACTIONS(759), + [sym___c_single_quote] = ACTIONS(761), + [sym___r_double_quote] = ACTIONS(763), + [sym___r_single_quote] = ACTIONS(765), }, [744] = { [sym_line_comment] = STATE(744), [sym_block_comment] = STATE(744), - [sym__expression] = STATE(2831), - [sym__expression_without_blocks] = STATE(2300), - [sym__expression_with_blocks] = STATE(2300), - [sym_inc_expression] = STATE(2307), - [sym_dec_expression] = STATE(2307), - [sym_or_block_expression] = STATE(2307), - [sym_option_propagation_expression] = STATE(2307), - [sym_result_propagation_expression] = STATE(2307), - [sym_anon_struct_value_expression] = STATE(2380), - [sym_go_expression] = STATE(2307), - [sym_spawn_expression] = STATE(2307), - [sym_parenthesized_expression] = STATE(2307), - [sym_call_expression] = STATE(2307), - [sym_type_initializer] = STATE(2380), - [sym_function_literal] = STATE(2307), - [sym_reference_expression] = STATE(2888), - [sym_type_reference_expression] = STATE(3541), - [sym_unary_expression] = STATE(2307), - [sym_receive_expression] = STATE(2307), - [sym_binary_expression] = STATE(2307), - [sym_as_type_cast_expression] = STATE(2307), - [sym__max_group] = STATE(2307), - [sym_literal] = STATE(2292), - [sym_map_init_expression] = STATE(2380), - [sym_array_creation] = STATE(2307), - [sym_fixed_array_creation] = STATE(2307), - [sym_selector_expression] = STATE(2889), - [sym_index_expression] = STATE(2307), - [sym_slice_expression] = STATE(2307), - [sym_if_expression] = STATE(2380), - [sym_compile_time_if_expression] = STATE(2380), - [sym_is_expression] = STATE(2307), - [sym_in_expression] = STATE(2307), - [sym_enum_fetch] = STATE(2307), - [sym_match_expression] = STATE(2380), - [sym_select_expression] = STATE(2380), - [sym_lock_expression] = STATE(2380), - [sym_unsafe_expression] = STATE(2380), - [sym_sql_expression] = STATE(2380), - [sym_c_string_literal] = STATE(2308), - [sym_raw_string_literal] = STATE(2308), - [sym_interpreted_string_literal] = STATE(2308), - [sym_mutability_modifiers] = STATE(939), - [sym_plain_type] = STATE(4297), - [sym__plain_type_without_special] = STATE(2302), - [sym_anon_struct_type] = STATE(2303), - [sym_multi_return_type] = STATE(2302), - [sym_result_type] = STATE(2302), - [sym_option_type] = STATE(2302), - [sym_qualified_type] = STATE(3541), - [sym_fixed_array_type] = STATE(2303), - [sym_array_type] = STATE(2303), - [sym_pointer_type] = STATE(2303), - [sym_wrong_pointer_type] = STATE(2303), - [sym_map_type] = STATE(2303), - [sym_channel_type] = STATE(2303), - [sym_shared_type] = STATE(2303), - [sym_thread_type] = STATE(2303), - [sym_atomic_type] = STATE(2303), - [sym_generic_type] = STATE(2303), - [sym_function_type] = STATE(2303), - [sym_identifier] = ACTIONS(2189), + [sym__expression] = STATE(1764), + [sym__expression_without_blocks] = STATE(1953), + [sym__expression_with_blocks] = STATE(1953), + [sym_inc_expression] = STATE(1955), + [sym_dec_expression] = STATE(1955), + [sym_or_block_expression] = STATE(1955), + [sym_option_propagation_expression] = STATE(1955), + [sym_result_propagation_expression] = STATE(1955), + [sym_anon_struct_value_expression] = STATE(1958), + [sym_go_expression] = STATE(1955), + [sym_spawn_expression] = STATE(1955), + [sym_parenthesized_expression] = STATE(1955), + [sym_call_expression] = STATE(1955), + [sym_type_initializer] = STATE(1958), + [sym_function_literal] = STATE(1955), + [sym_reference_expression] = STATE(1956), + [sym_type_reference_expression] = STATE(3460), + [sym_unary_expression] = STATE(1955), + [sym_receive_expression] = STATE(1955), + [sym_binary_expression] = STATE(1955), + [sym_as_type_cast_expression] = STATE(1955), + [sym__max_group] = STATE(1955), + [sym_literal] = STATE(1943), + [sym_map_init_expression] = STATE(1958), + [sym_array_creation] = STATE(1955), + [sym_fixed_array_creation] = STATE(1955), + [sym_selector_expression] = STATE(1955), + [sym_index_expression] = STATE(1955), + [sym_slice_expression] = STATE(1955), + [sym_if_expression] = STATE(1958), + [sym_compile_time_if_expression] = STATE(1958), + [sym_is_expression] = STATE(1955), + [sym_in_expression] = STATE(1955), + [sym_enum_fetch] = STATE(1955), + [sym_match_expression] = STATE(1958), + [sym_select_expression] = STATE(1958), + [sym_lock_expression] = STATE(1958), + [sym_unsafe_expression] = STATE(1958), + [sym_sql_expression] = STATE(1958), + [sym_c_string_literal] = STATE(1942), + [sym_raw_string_literal] = STATE(1942), + [sym_interpreted_string_literal] = STATE(1942), + [sym_mutability_modifiers] = STATE(601), + [sym_plain_type] = STATE(4249), + [sym__plain_type_without_special] = STATE(2360), + [sym_anon_struct_type] = STATE(2362), + [sym_multi_return_type] = STATE(2360), + [sym_result_type] = STATE(2360), + [sym_option_type] = STATE(2360), + [sym_qualified_type] = STATE(3460), + [sym_fixed_array_type] = STATE(2362), + [sym_array_type] = STATE(2362), + [sym_pointer_type] = STATE(2362), + [sym_wrong_pointer_type] = STATE(2362), + [sym_map_type] = STATE(2362), + [sym_channel_type] = STATE(2362), + [sym_shared_type] = STATE(2362), + [sym_thread_type] = STATE(2362), + [sym_atomic_type] = STATE(2362), + [sym_generic_type] = STATE(2362), + [sym_function_type] = STATE(2362), + [sym_identifier] = ACTIONS(1681), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1428), - [anon_sym_LBRACE] = ACTIONS(1430), - [anon_sym_LPAREN] = ACTIONS(1432), - [anon_sym_fn] = ACTIONS(1434), - [anon_sym_PLUS] = ACTIONS(1436), - [anon_sym_DASH] = ACTIONS(1436), - [anon_sym_STAR] = ACTIONS(1438), - [anon_sym_struct] = ACTIONS(1440), + [anon_sym_DOT] = ACTIONS(705), + [anon_sym_LBRACE] = ACTIONS(3118), + [anon_sym_LPAREN] = ACTIONS(709), + [anon_sym_fn] = ACTIONS(711), + [anon_sym_PLUS] = ACTIONS(713), + [anon_sym_DASH] = ACTIONS(713), + [anon_sym_STAR] = ACTIONS(715), + [anon_sym_struct] = ACTIONS(717), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(1442), - [anon_sym_go] = ACTIONS(1444), - [anon_sym_spawn] = ACTIONS(1446), - [anon_sym_json_DOTdecode] = ACTIONS(1448), - [anon_sym_LBRACK2] = ACTIONS(1450), - [anon_sym_TILDE] = ACTIONS(1436), - [anon_sym_CARET] = ACTIONS(1436), - [anon_sym_AMP] = ACTIONS(1452), - [anon_sym_LT_DASH] = ACTIONS(1454), - [sym_none] = ACTIONS(1456), - [sym_true] = ACTIONS(1456), - [sym_false] = ACTIONS(1456), - [sym_nil] = ACTIONS(1456), - [anon_sym_if] = ACTIONS(1827), - [anon_sym_DOLLARif] = ACTIONS(1460), - [anon_sym_match] = ACTIONS(1462), - [anon_sym_select] = ACTIONS(1464), - [anon_sym_lock] = ACTIONS(1466), - [anon_sym_rlock] = ACTIONS(1466), - [anon_sym_unsafe] = ACTIONS(1833), - [anon_sym_sql] = ACTIONS(1470), - [sym_int_literal] = ACTIONS(1456), - [sym_float_literal] = ACTIONS(1472), - [sym_rune_literal] = ACTIONS(1472), - [sym_pseudo_compile_time_identifier] = ACTIONS(1474), + [anon_sym_BANG] = ACTIONS(721), + [anon_sym_go] = ACTIONS(723), + [anon_sym_spawn] = ACTIONS(725), + [anon_sym_json_DOTdecode] = ACTIONS(727), + [anon_sym_LBRACK2] = ACTIONS(729), + [anon_sym_TILDE] = ACTIONS(713), + [anon_sym_CARET] = ACTIONS(713), + [anon_sym_AMP] = ACTIONS(731), + [anon_sym_LT_DASH] = ACTIONS(733), + [sym_none] = ACTIONS(735), + [sym_true] = ACTIONS(735), + [sym_false] = ACTIONS(735), + [sym_nil] = ACTIONS(735), + [anon_sym_if] = ACTIONS(737), + [anon_sym_DOLLARif] = ACTIONS(739), + [anon_sym_match] = ACTIONS(741), + [anon_sym_select] = ACTIONS(743), + [anon_sym_lock] = ACTIONS(745), + [anon_sym_rlock] = ACTIONS(745), + [anon_sym_unsafe] = ACTIONS(747), + [anon_sym_sql] = ACTIONS(749), + [sym_int_literal] = ACTIONS(735), + [sym_float_literal] = ACTIONS(751), + [sym_rune_literal] = ACTIONS(751), + [sym_pseudo_compile_time_identifier] = ACTIONS(753), [anon_sym_shared] = ACTIONS(83), [anon_sym_map_LBRACK] = ACTIONS(85), [anon_sym_chan] = ACTIONS(87), [anon_sym_thread] = ACTIONS(89), [anon_sym_atomic] = ACTIONS(91), - [sym___double_quote] = ACTIONS(1478), - [sym___single_quote] = ACTIONS(1480), - [sym___c_double_quote] = ACTIONS(1482), - [sym___c_single_quote] = ACTIONS(1484), - [sym___r_double_quote] = ACTIONS(1486), - [sym___r_single_quote] = ACTIONS(1488), + [sym___double_quote] = ACTIONS(755), + [sym___single_quote] = ACTIONS(757), + [sym___c_double_quote] = ACTIONS(759), + [sym___c_single_quote] = ACTIONS(761), + [sym___r_double_quote] = ACTIONS(763), + [sym___r_single_quote] = ACTIONS(765), }, [745] = { [sym_line_comment] = STATE(745), [sym_block_comment] = STATE(745), - [sym__expression] = STATE(2624), - [sym__expression_without_blocks] = STATE(2300), - [sym__expression_with_blocks] = STATE(2300), - [sym_inc_expression] = STATE(2307), - [sym_dec_expression] = STATE(2307), - [sym_or_block_expression] = STATE(2307), - [sym_option_propagation_expression] = STATE(2307), - [sym_result_propagation_expression] = STATE(2307), - [sym_anon_struct_value_expression] = STATE(2380), - [sym_go_expression] = STATE(2307), - [sym_spawn_expression] = STATE(2307), - [sym_parenthesized_expression] = STATE(2307), - [sym_call_expression] = STATE(2307), - [sym_type_initializer] = STATE(2380), - [sym_function_literal] = STATE(2307), - [sym_reference_expression] = STATE(2311), - [sym_type_reference_expression] = STATE(3541), - [sym_unary_expression] = STATE(2307), - [sym_receive_expression] = STATE(2307), - [sym_binary_expression] = STATE(2307), - [sym_as_type_cast_expression] = STATE(2307), - [sym__max_group] = STATE(2307), - [sym_literal] = STATE(2292), - [sym_map_init_expression] = STATE(2380), - [sym_array_creation] = STATE(2307), - [sym_fixed_array_creation] = STATE(2307), - [sym_selector_expression] = STATE(2307), - [sym_index_expression] = STATE(2307), - [sym_slice_expression] = STATE(2307), - [sym_if_expression] = STATE(2380), - [sym_compile_time_if_expression] = STATE(2380), - [sym_is_expression] = STATE(2307), - [sym_in_expression] = STATE(2307), - [sym_enum_fetch] = STATE(2307), - [sym_match_expression] = STATE(2380), - [sym_select_expression] = STATE(2380), - [sym_lock_expression] = STATE(2380), - [sym_unsafe_expression] = STATE(2380), - [sym_sql_expression] = STATE(2380), - [sym_c_string_literal] = STATE(2308), - [sym_raw_string_literal] = STATE(2308), - [sym_interpreted_string_literal] = STATE(2308), - [sym_mutability_modifiers] = STATE(939), - [sym_plain_type] = STATE(3552), - [sym__plain_type_without_special] = STATE(2302), - [sym_anon_struct_type] = STATE(2303), - [sym_multi_return_type] = STATE(2302), - [sym_result_type] = STATE(2302), - [sym_option_type] = STATE(2302), - [sym_qualified_type] = STATE(3541), - [sym_fixed_array_type] = STATE(2303), - [sym_array_type] = STATE(2303), - [sym_pointer_type] = STATE(2303), - [sym_wrong_pointer_type] = STATE(2303), - [sym_map_type] = STATE(2303), - [sym_channel_type] = STATE(2303), - [sym_shared_type] = STATE(2303), - [sym_thread_type] = STATE(2303), - [sym_atomic_type] = STATE(2303), - [sym_generic_type] = STATE(2303), - [sym_function_type] = STATE(2303), - [sym_identifier] = ACTIONS(1426), + [sym__expression] = STATE(1764), + [sym__expression_without_blocks] = STATE(1953), + [sym__expression_with_blocks] = STATE(1953), + [sym_inc_expression] = STATE(1955), + [sym_dec_expression] = STATE(1955), + [sym_or_block_expression] = STATE(1955), + [sym_option_propagation_expression] = STATE(1955), + [sym_result_propagation_expression] = STATE(1955), + [sym_anon_struct_value_expression] = STATE(1958), + [sym_go_expression] = STATE(1955), + [sym_spawn_expression] = STATE(1955), + [sym_parenthesized_expression] = STATE(1955), + [sym_call_expression] = STATE(1955), + [sym_type_initializer] = STATE(1958), + [sym_function_literal] = STATE(1955), + [sym_reference_expression] = STATE(1956), + [sym_type_reference_expression] = STATE(3460), + [sym_unary_expression] = STATE(1955), + [sym_receive_expression] = STATE(1955), + [sym_binary_expression] = STATE(1955), + [sym_as_type_cast_expression] = STATE(1955), + [sym__max_group] = STATE(1955), + [sym_literal] = STATE(1943), + [sym_map_init_expression] = STATE(1958), + [sym_array_creation] = STATE(1955), + [sym_fixed_array_creation] = STATE(1955), + [sym_selector_expression] = STATE(1955), + [sym_index_expression] = STATE(1955), + [sym_slice_expression] = STATE(1955), + [sym_if_expression] = STATE(1958), + [sym_compile_time_if_expression] = STATE(1958), + [sym_is_expression] = STATE(1955), + [sym_in_expression] = STATE(1955), + [sym_enum_fetch] = STATE(1955), + [sym_match_expression] = STATE(1958), + [sym_select_expression] = STATE(1958), + [sym_lock_expression] = STATE(1958), + [sym_unsafe_expression] = STATE(1958), + [sym_sql_expression] = STATE(1958), + [sym_c_string_literal] = STATE(1942), + [sym_raw_string_literal] = STATE(1942), + [sym_interpreted_string_literal] = STATE(1942), + [sym_mutability_modifiers] = STATE(601), + [sym_plain_type] = STATE(4266), + [sym__plain_type_without_special] = STATE(2360), + [sym_anon_struct_type] = STATE(2362), + [sym_multi_return_type] = STATE(2360), + [sym_result_type] = STATE(2360), + [sym_option_type] = STATE(2360), + [sym_qualified_type] = STATE(3460), + [sym_fixed_array_type] = STATE(2362), + [sym_array_type] = STATE(2362), + [sym_pointer_type] = STATE(2362), + [sym_wrong_pointer_type] = STATE(2362), + [sym_map_type] = STATE(2362), + [sym_channel_type] = STATE(2362), + [sym_shared_type] = STATE(2362), + [sym_thread_type] = STATE(2362), + [sym_atomic_type] = STATE(2362), + [sym_generic_type] = STATE(2362), + [sym_function_type] = STATE(2362), + [sym_identifier] = ACTIONS(1681), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1428), - [anon_sym_LBRACE] = ACTIONS(1430), - [anon_sym_LPAREN] = ACTIONS(1432), - [anon_sym_fn] = ACTIONS(1434), - [anon_sym_PLUS] = ACTIONS(2491), - [anon_sym_DASH] = ACTIONS(2491), - [anon_sym_STAR] = ACTIONS(2493), - [anon_sym_struct] = ACTIONS(1440), + [anon_sym_DOT] = ACTIONS(705), + [anon_sym_LBRACE] = ACTIONS(3118), + [anon_sym_LPAREN] = ACTIONS(709), + [anon_sym_fn] = ACTIONS(711), + [anon_sym_PLUS] = ACTIONS(713), + [anon_sym_DASH] = ACTIONS(713), + [anon_sym_STAR] = ACTIONS(715), + [anon_sym_struct] = ACTIONS(717), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(2495), - [anon_sym_go] = ACTIONS(2497), - [anon_sym_spawn] = ACTIONS(2499), - [anon_sym_json_DOTdecode] = ACTIONS(1448), - [anon_sym_LBRACK2] = ACTIONS(1450), - [anon_sym_TILDE] = ACTIONS(2491), - [anon_sym_CARET] = ACTIONS(2491), - [anon_sym_AMP] = ACTIONS(2501), - [anon_sym_LT_DASH] = ACTIONS(2503), - [sym_none] = ACTIONS(1456), - [sym_true] = ACTIONS(1456), - [sym_false] = ACTIONS(1456), - [sym_nil] = ACTIONS(1456), - [anon_sym_if] = ACTIONS(1827), - [anon_sym_DOLLARif] = ACTIONS(1460), - [anon_sym_match] = ACTIONS(1462), - [anon_sym_select] = ACTIONS(1464), - [anon_sym_lock] = ACTIONS(1466), - [anon_sym_rlock] = ACTIONS(1466), - [anon_sym_unsafe] = ACTIONS(1833), - [anon_sym_sql] = ACTIONS(1470), - [sym_int_literal] = ACTIONS(1456), - [sym_float_literal] = ACTIONS(1472), - [sym_rune_literal] = ACTIONS(1472), - [sym_pseudo_compile_time_identifier] = ACTIONS(1474), + [anon_sym_BANG] = ACTIONS(721), + [anon_sym_go] = ACTIONS(723), + [anon_sym_spawn] = ACTIONS(725), + [anon_sym_json_DOTdecode] = ACTIONS(727), + [anon_sym_LBRACK2] = ACTIONS(729), + [anon_sym_TILDE] = ACTIONS(713), + [anon_sym_CARET] = ACTIONS(713), + [anon_sym_AMP] = ACTIONS(731), + [anon_sym_LT_DASH] = ACTIONS(733), + [sym_none] = ACTIONS(735), + [sym_true] = ACTIONS(735), + [sym_false] = ACTIONS(735), + [sym_nil] = ACTIONS(735), + [anon_sym_if] = ACTIONS(737), + [anon_sym_DOLLARif] = ACTIONS(739), + [anon_sym_match] = ACTIONS(741), + [anon_sym_select] = ACTIONS(743), + [anon_sym_lock] = ACTIONS(745), + [anon_sym_rlock] = ACTIONS(745), + [anon_sym_unsafe] = ACTIONS(747), + [anon_sym_sql] = ACTIONS(749), + [sym_int_literal] = ACTIONS(735), + [sym_float_literal] = ACTIONS(751), + [sym_rune_literal] = ACTIONS(751), + [sym_pseudo_compile_time_identifier] = ACTIONS(753), [anon_sym_shared] = ACTIONS(83), [anon_sym_map_LBRACK] = ACTIONS(85), [anon_sym_chan] = ACTIONS(87), [anon_sym_thread] = ACTIONS(89), [anon_sym_atomic] = ACTIONS(91), - [sym___double_quote] = ACTIONS(1478), - [sym___single_quote] = ACTIONS(1480), - [sym___c_double_quote] = ACTIONS(1482), - [sym___c_single_quote] = ACTIONS(1484), - [sym___r_double_quote] = ACTIONS(1486), - [sym___r_single_quote] = ACTIONS(1488), + [sym___double_quote] = ACTIONS(755), + [sym___single_quote] = ACTIONS(757), + [sym___c_double_quote] = ACTIONS(759), + [sym___c_single_quote] = ACTIONS(761), + [sym___r_double_quote] = ACTIONS(763), + [sym___r_single_quote] = ACTIONS(765), }, [746] = { [sym_line_comment] = STATE(746), [sym_block_comment] = STATE(746), - [sym__expression] = STATE(2428), - [sym__expression_without_blocks] = STATE(2300), - [sym__expression_with_blocks] = STATE(2300), - [sym_inc_expression] = STATE(2307), - [sym_dec_expression] = STATE(2307), - [sym_or_block_expression] = STATE(2307), - [sym_option_propagation_expression] = STATE(2307), - [sym_result_propagation_expression] = STATE(2307), - [sym_anon_struct_value_expression] = STATE(2380), - [sym_go_expression] = STATE(2307), - [sym_spawn_expression] = STATE(2307), - [sym_parenthesized_expression] = STATE(2307), - [sym_call_expression] = STATE(2307), - [sym_type_initializer] = STATE(2380), - [sym_function_literal] = STATE(2307), - [sym_reference_expression] = STATE(2311), - [sym_type_reference_expression] = STATE(3541), - [sym_unary_expression] = STATE(2307), - [sym_receive_expression] = STATE(2307), - [sym_binary_expression] = STATE(2307), - [sym_as_type_cast_expression] = STATE(2307), - [sym__max_group] = STATE(2307), - [sym_literal] = STATE(2292), - [sym_map_init_expression] = STATE(2380), - [sym_array_creation] = STATE(2307), - [sym_fixed_array_creation] = STATE(2307), - [sym_selector_expression] = STATE(2307), - [sym_index_expression] = STATE(2307), - [sym_slice_expression] = STATE(2307), - [sym_if_expression] = STATE(2380), - [sym_compile_time_if_expression] = STATE(2380), - [sym_is_expression] = STATE(2307), - [sym_in_expression] = STATE(2307), - [sym_enum_fetch] = STATE(2307), - [sym_match_expression] = STATE(2380), - [sym_select_expression] = STATE(2380), - [sym_lock_expression] = STATE(2380), - [sym_unsafe_expression] = STATE(2380), - [sym_sql_expression] = STATE(2380), - [sym_c_string_literal] = STATE(2308), - [sym_raw_string_literal] = STATE(2308), - [sym_interpreted_string_literal] = STATE(2308), - [sym_mutability_modifiers] = STATE(939), - [sym_plain_type] = STATE(4297), - [sym__plain_type_without_special] = STATE(2302), - [sym_anon_struct_type] = STATE(2303), - [sym_multi_return_type] = STATE(2302), - [sym_result_type] = STATE(2302), - [sym_option_type] = STATE(2302), - [sym_qualified_type] = STATE(3541), - [sym_fixed_array_type] = STATE(2303), - [sym_array_type] = STATE(2303), - [sym_pointer_type] = STATE(2303), - [sym_wrong_pointer_type] = STATE(2303), - [sym_map_type] = STATE(2303), - [sym_channel_type] = STATE(2303), - [sym_shared_type] = STATE(2303), - [sym_thread_type] = STATE(2303), - [sym_atomic_type] = STATE(2303), - [sym_generic_type] = STATE(2303), - [sym_function_type] = STATE(2303), - [sym_identifier] = ACTIONS(1426), + [sym__expression] = STATE(2380), + [sym__expression_without_blocks] = STATE(2468), + [sym__expression_with_blocks] = STATE(2468), + [sym_inc_expression] = STATE(2469), + [sym_dec_expression] = STATE(2469), + [sym_or_block_expression] = STATE(2469), + [sym_option_propagation_expression] = STATE(2469), + [sym_result_propagation_expression] = STATE(2469), + [sym_anon_struct_value_expression] = STATE(2470), + [sym_go_expression] = STATE(2469), + [sym_spawn_expression] = STATE(2469), + [sym_parenthesized_expression] = STATE(2469), + [sym_call_expression] = STATE(2469), + [sym_type_initializer] = STATE(2470), + [sym_function_literal] = STATE(2469), + [sym_reference_expression] = STATE(2487), + [sym_type_reference_expression] = STATE(3460), + [sym_unary_expression] = STATE(2469), + [sym_receive_expression] = STATE(2469), + [sym_binary_expression] = STATE(2469), + [sym_as_type_cast_expression] = STATE(2469), + [sym__max_group] = STATE(2469), + [sym_literal] = STATE(2465), + [sym_map_init_expression] = STATE(2470), + [sym_array_creation] = STATE(2469), + [sym_fixed_array_creation] = STATE(2469), + [sym_selector_expression] = STATE(2469), + [sym_index_expression] = STATE(2469), + [sym_slice_expression] = STATE(2469), + [sym_if_expression] = STATE(2470), + [sym_compile_time_if_expression] = STATE(2470), + [sym_is_expression] = STATE(2469), + [sym_in_expression] = STATE(2469), + [sym_enum_fetch] = STATE(2469), + [sym_match_expression] = STATE(2470), + [sym_select_expression] = STATE(2470), + [sym_lock_expression] = STATE(2470), + [sym_unsafe_expression] = STATE(2470), + [sym_sql_expression] = STATE(2470), + [sym_c_string_literal] = STATE(2464), + [sym_raw_string_literal] = STATE(2464), + [sym_interpreted_string_literal] = STATE(2464), + [sym_mutability_modifiers] = STATE(561), + [sym_plain_type] = STATE(4038), + [sym__plain_type_without_special] = STATE(2360), + [sym_anon_struct_type] = STATE(2362), + [sym_multi_return_type] = STATE(2360), + [sym_result_type] = STATE(2360), + [sym_option_type] = STATE(2360), + [sym_qualified_type] = STATE(3460), + [sym_fixed_array_type] = STATE(2362), + [sym_array_type] = STATE(2362), + [sym_pointer_type] = STATE(2362), + [sym_wrong_pointer_type] = STATE(2362), + [sym_map_type] = STATE(2362), + [sym_channel_type] = STATE(2362), + [sym_shared_type] = STATE(2362), + [sym_thread_type] = STATE(2362), + [sym_atomic_type] = STATE(2362), + [sym_generic_type] = STATE(2362), + [sym_function_type] = STATE(2362), + [sym_identifier] = ACTIONS(1691), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1428), - [anon_sym_LBRACE] = ACTIONS(1430), - [anon_sym_LPAREN] = ACTIONS(1432), - [anon_sym_fn] = ACTIONS(1434), - [anon_sym_PLUS] = ACTIONS(1436), - [anon_sym_DASH] = ACTIONS(1436), - [anon_sym_STAR] = ACTIONS(1438), - [anon_sym_struct] = ACTIONS(1440), + [anon_sym_DOT] = ACTIONS(1693), + [anon_sym_LBRACE] = ACTIONS(2151), + [anon_sym_LPAREN] = ACTIONS(2153), + [anon_sym_fn] = ACTIONS(1699), + [anon_sym_PLUS] = ACTIONS(2155), + [anon_sym_DASH] = ACTIONS(2155), + [anon_sym_STAR] = ACTIONS(2157), + [anon_sym_struct] = ACTIONS(1705), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(1442), - [anon_sym_go] = ACTIONS(1444), - [anon_sym_spawn] = ACTIONS(1446), - [anon_sym_json_DOTdecode] = ACTIONS(1448), - [anon_sym_LBRACK2] = ACTIONS(1450), - [anon_sym_TILDE] = ACTIONS(1436), - [anon_sym_CARET] = ACTIONS(1436), - [anon_sym_AMP] = ACTIONS(1452), - [anon_sym_LT_DASH] = ACTIONS(1454), - [sym_none] = ACTIONS(1456), - [sym_true] = ACTIONS(1456), - [sym_false] = ACTIONS(1456), - [sym_nil] = ACTIONS(1456), - [anon_sym_if] = ACTIONS(1827), - [anon_sym_DOLLARif] = ACTIONS(1460), - [anon_sym_match] = ACTIONS(1462), - [anon_sym_select] = ACTIONS(1464), - [anon_sym_lock] = ACTIONS(1466), - [anon_sym_rlock] = ACTIONS(1466), - [anon_sym_unsafe] = ACTIONS(1833), - [anon_sym_sql] = ACTIONS(1470), - [sym_int_literal] = ACTIONS(1456), - [sym_float_literal] = ACTIONS(1472), - [sym_rune_literal] = ACTIONS(1472), - [sym_pseudo_compile_time_identifier] = ACTIONS(1474), + [anon_sym_BANG] = ACTIONS(2159), + [anon_sym_go] = ACTIONS(1709), + [anon_sym_spawn] = ACTIONS(1711), + [anon_sym_json_DOTdecode] = ACTIONS(2161), + [anon_sym_LBRACK2] = ACTIONS(2163), + [anon_sym_TILDE] = ACTIONS(2155), + [anon_sym_CARET] = ACTIONS(2155), + [anon_sym_AMP] = ACTIONS(2165), + [anon_sym_LT_DASH] = ACTIONS(2167), + [sym_none] = ACTIONS(1721), + [sym_true] = ACTIONS(1721), + [sym_false] = ACTIONS(1721), + [sym_nil] = ACTIONS(1721), + [anon_sym_if] = ACTIONS(1723), + [anon_sym_DOLLARif] = ACTIONS(1725), + [anon_sym_match] = ACTIONS(1727), + [anon_sym_select] = ACTIONS(1729), + [anon_sym_lock] = ACTIONS(1731), + [anon_sym_rlock] = ACTIONS(1731), + [anon_sym_unsafe] = ACTIONS(1733), + [anon_sym_sql] = ACTIONS(1735), + [sym_int_literal] = ACTIONS(1721), + [sym_float_literal] = ACTIONS(2169), + [sym_rune_literal] = ACTIONS(2169), + [sym_pseudo_compile_time_identifier] = ACTIONS(1737), [anon_sym_shared] = ACTIONS(83), [anon_sym_map_LBRACK] = ACTIONS(85), [anon_sym_chan] = ACTIONS(87), [anon_sym_thread] = ACTIONS(89), [anon_sym_atomic] = ACTIONS(91), - [sym___double_quote] = ACTIONS(1478), - [sym___single_quote] = ACTIONS(1480), - [sym___c_double_quote] = ACTIONS(1482), - [sym___c_single_quote] = ACTIONS(1484), - [sym___r_double_quote] = ACTIONS(1486), - [sym___r_single_quote] = ACTIONS(1488), + [sym___double_quote] = ACTIONS(2171), + [sym___single_quote] = ACTIONS(2173), + [sym___c_double_quote] = ACTIONS(2175), + [sym___c_single_quote] = ACTIONS(2177), + [sym___r_double_quote] = ACTIONS(2179), + [sym___r_single_quote] = ACTIONS(2181), }, [747] = { [sym_line_comment] = STATE(747), [sym_block_comment] = STATE(747), - [sym__expression] = STATE(2616), - [sym__expression_without_blocks] = STATE(2300), - [sym__expression_with_blocks] = STATE(2300), - [sym_inc_expression] = STATE(2307), - [sym_dec_expression] = STATE(2307), - [sym_or_block_expression] = STATE(2307), - [sym_option_propagation_expression] = STATE(2307), - [sym_result_propagation_expression] = STATE(2307), - [sym_anon_struct_value_expression] = STATE(2380), - [sym_go_expression] = STATE(2307), - [sym_spawn_expression] = STATE(2307), - [sym_parenthesized_expression] = STATE(2307), - [sym_call_expression] = STATE(2307), - [sym_type_initializer] = STATE(2380), - [sym_function_literal] = STATE(2307), - [sym_reference_expression] = STATE(2311), - [sym_type_reference_expression] = STATE(3541), - [sym_unary_expression] = STATE(2307), - [sym_receive_expression] = STATE(2307), - [sym_binary_expression] = STATE(2307), - [sym_as_type_cast_expression] = STATE(2307), - [sym__max_group] = STATE(2307), - [sym_literal] = STATE(2292), - [sym_map_init_expression] = STATE(2380), - [sym_array_creation] = STATE(2307), - [sym_fixed_array_creation] = STATE(2307), - [sym_selector_expression] = STATE(2307), - [sym_index_expression] = STATE(2307), - [sym_slice_expression] = STATE(2307), - [sym_if_expression] = STATE(2380), - [sym_compile_time_if_expression] = STATE(2380), - [sym_is_expression] = STATE(2307), - [sym_in_expression] = STATE(2307), - [sym_enum_fetch] = STATE(2307), - [sym_match_expression] = STATE(2380), - [sym_select_expression] = STATE(2380), - [sym_lock_expression] = STATE(2380), - [sym_unsafe_expression] = STATE(2380), - [sym_sql_expression] = STATE(2380), - [sym_c_string_literal] = STATE(2308), - [sym_raw_string_literal] = STATE(2308), - [sym_interpreted_string_literal] = STATE(2308), + [sym__expression] = STATE(2646), + [sym__expression_without_blocks] = STATE(2347), + [sym__expression_with_blocks] = STATE(2347), + [sym_inc_expression] = STATE(2379), + [sym_dec_expression] = STATE(2379), + [sym_or_block_expression] = STATE(2379), + [sym_option_propagation_expression] = STATE(2379), + [sym_result_propagation_expression] = STATE(2379), + [sym_anon_struct_value_expression] = STATE(2378), + [sym_go_expression] = STATE(2379), + [sym_spawn_expression] = STATE(2379), + [sym_parenthesized_expression] = STATE(2379), + [sym_call_expression] = STATE(2379), + [sym_type_initializer] = STATE(2378), + [sym_function_literal] = STATE(2379), + [sym_reference_expression] = STATE(2377), + [sym_type_reference_expression] = STATE(3460), + [sym_unary_expression] = STATE(2379), + [sym_receive_expression] = STATE(2379), + [sym_binary_expression] = STATE(2379), + [sym_as_type_cast_expression] = STATE(2379), + [sym__max_group] = STATE(2379), + [sym_literal] = STATE(2392), + [sym_map_init_expression] = STATE(2378), + [sym_array_creation] = STATE(2379), + [sym_fixed_array_creation] = STATE(2379), + [sym_selector_expression] = STATE(2379), + [sym_index_expression] = STATE(2379), + [sym_slice_expression] = STATE(2379), + [sym_if_expression] = STATE(2378), + [sym_compile_time_if_expression] = STATE(2378), + [sym_is_expression] = STATE(2379), + [sym_in_expression] = STATE(2379), + [sym_enum_fetch] = STATE(2379), + [sym_match_expression] = STATE(2378), + [sym_select_expression] = STATE(2378), + [sym_lock_expression] = STATE(2378), + [sym_unsafe_expression] = STATE(2378), + [sym_sql_expression] = STATE(2378), + [sym_c_string_literal] = STATE(2401), + [sym_raw_string_literal] = STATE(2401), + [sym_interpreted_string_literal] = STATE(2401), [sym_mutability_modifiers] = STATE(939), - [sym_plain_type] = STATE(4297), - [sym__plain_type_without_special] = STATE(2302), - [sym_anon_struct_type] = STATE(2303), - [sym_multi_return_type] = STATE(2302), - [sym_result_type] = STATE(2302), - [sym_option_type] = STATE(2302), - [sym_qualified_type] = STATE(3541), - [sym_fixed_array_type] = STATE(2303), - [sym_array_type] = STATE(2303), - [sym_pointer_type] = STATE(2303), - [sym_wrong_pointer_type] = STATE(2303), - [sym_map_type] = STATE(2303), - [sym_channel_type] = STATE(2303), - [sym_shared_type] = STATE(2303), - [sym_thread_type] = STATE(2303), - [sym_atomic_type] = STATE(2303), - [sym_generic_type] = STATE(2303), - [sym_function_type] = STATE(2303), - [sym_identifier] = ACTIONS(1807), + [sym_plain_type] = STATE(4160), + [sym__plain_type_without_special] = STATE(2360), + [sym_anon_struct_type] = STATE(2362), + [sym_multi_return_type] = STATE(2360), + [sym_result_type] = STATE(2360), + [sym_option_type] = STATE(2360), + [sym_qualified_type] = STATE(3460), + [sym_fixed_array_type] = STATE(2362), + [sym_array_type] = STATE(2362), + [sym_pointer_type] = STATE(2362), + [sym_wrong_pointer_type] = STATE(2362), + [sym_map_type] = STATE(2362), + [sym_channel_type] = STATE(2362), + [sym_shared_type] = STATE(2362), + [sym_thread_type] = STATE(2362), + [sym_atomic_type] = STATE(2362), + [sym_generic_type] = STATE(2362), + [sym_function_type] = STATE(2362), + [sym_identifier] = ACTIONS(2477), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1428), - [anon_sym_LBRACE] = ACTIONS(1430), - [anon_sym_LPAREN] = ACTIONS(1432), - [anon_sym_fn] = ACTIONS(1434), - [anon_sym_PLUS] = ACTIONS(3064), - [anon_sym_DASH] = ACTIONS(3064), - [anon_sym_STAR] = ACTIONS(3066), - [anon_sym_struct] = ACTIONS(1440), + [anon_sym_DOT] = ACTIONS(1430), + [anon_sym_LBRACE] = ACTIONS(1432), + [anon_sym_LPAREN] = ACTIONS(1434), + [anon_sym_fn] = ACTIONS(1436), + [anon_sym_PLUS] = ACTIONS(2271), + [anon_sym_DASH] = ACTIONS(2271), + [anon_sym_STAR] = ACTIONS(3354), + [anon_sym_struct] = ACTIONS(1442), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(3068), - [anon_sym_go] = ACTIONS(3070), - [anon_sym_spawn] = ACTIONS(3072), - [anon_sym_json_DOTdecode] = ACTIONS(1448), - [anon_sym_LBRACK2] = ACTIONS(1821), - [anon_sym_TILDE] = ACTIONS(3064), - [anon_sym_CARET] = ACTIONS(3064), - [anon_sym_AMP] = ACTIONS(3074), - [anon_sym_LT_DASH] = ACTIONS(3076), - [sym_none] = ACTIONS(1456), - [sym_true] = ACTIONS(1456), - [sym_false] = ACTIONS(1456), - [sym_nil] = ACTIONS(1456), - [anon_sym_if] = ACTIONS(1827), - [anon_sym_DOLLARif] = ACTIONS(1460), - [anon_sym_match] = ACTIONS(1462), - [anon_sym_select] = ACTIONS(3078), - [anon_sym_lock] = ACTIONS(3080), - [anon_sym_rlock] = ACTIONS(3080), - [anon_sym_unsafe] = ACTIONS(1833), - [anon_sym_sql] = ACTIONS(1470), - [sym_int_literal] = ACTIONS(1456), - [sym_float_literal] = ACTIONS(1472), - [sym_rune_literal] = ACTIONS(1472), - [sym_pseudo_compile_time_identifier] = ACTIONS(1474), + [anon_sym_BANG] = ACTIONS(3356), + [anon_sym_go] = ACTIONS(2277), + [anon_sym_spawn] = ACTIONS(2279), + [anon_sym_json_DOTdecode] = ACTIONS(1450), + [anon_sym_LBRACK2] = ACTIONS(1452), + [anon_sym_TILDE] = ACTIONS(2271), + [anon_sym_CARET] = ACTIONS(2271), + [anon_sym_AMP] = ACTIONS(3358), + [anon_sym_LT_DASH] = ACTIONS(2283), + [sym_none] = ACTIONS(1458), + [sym_true] = ACTIONS(1458), + [sym_false] = ACTIONS(1458), + [sym_nil] = ACTIONS(1458), + [anon_sym_if] = ACTIONS(1833), + [anon_sym_DOLLARif] = ACTIONS(1462), + [anon_sym_match] = ACTIONS(1464), + [anon_sym_select] = ACTIONS(1466), + [anon_sym_lock] = ACTIONS(1468), + [anon_sym_rlock] = ACTIONS(1468), + [anon_sym_unsafe] = ACTIONS(1839), + [anon_sym_sql] = ACTIONS(1472), + [sym_int_literal] = ACTIONS(1458), + [sym_float_literal] = ACTIONS(1474), + [sym_rune_literal] = ACTIONS(1474), + [sym_pseudo_compile_time_identifier] = ACTIONS(1476), [anon_sym_shared] = ACTIONS(83), [anon_sym_map_LBRACK] = ACTIONS(85), [anon_sym_chan] = ACTIONS(87), [anon_sym_thread] = ACTIONS(89), [anon_sym_atomic] = ACTIONS(91), - [sym___double_quote] = ACTIONS(1478), - [sym___single_quote] = ACTIONS(1480), - [sym___c_double_quote] = ACTIONS(1482), - [sym___c_single_quote] = ACTIONS(1484), - [sym___r_double_quote] = ACTIONS(1486), - [sym___r_single_quote] = ACTIONS(1488), + [sym___double_quote] = ACTIONS(1480), + [sym___single_quote] = ACTIONS(1482), + [sym___c_double_quote] = ACTIONS(1484), + [sym___c_single_quote] = ACTIONS(1486), + [sym___r_double_quote] = ACTIONS(1488), + [sym___r_single_quote] = ACTIONS(1490), }, [748] = { [sym_line_comment] = STATE(748), [sym_block_comment] = STATE(748), - [sym__expression] = STATE(2274), - [sym__expression_without_blocks] = STATE(2300), - [sym__expression_with_blocks] = STATE(2300), - [sym_inc_expression] = STATE(2307), - [sym_dec_expression] = STATE(2307), - [sym_or_block_expression] = STATE(2307), - [sym_option_propagation_expression] = STATE(2307), - [sym_result_propagation_expression] = STATE(2307), - [sym_anon_struct_value_expression] = STATE(2380), - [sym_go_expression] = STATE(2307), - [sym_spawn_expression] = STATE(2307), - [sym_parenthesized_expression] = STATE(2307), - [sym_call_expression] = STATE(2307), - [sym_type_initializer] = STATE(2380), - [sym_function_literal] = STATE(2307), - [sym_reference_expression] = STATE(2311), - [sym_type_reference_expression] = STATE(3541), - [sym_unary_expression] = STATE(2307), - [sym_receive_expression] = STATE(2307), - [sym_binary_expression] = STATE(2307), - [sym_as_type_cast_expression] = STATE(2307), - [sym__max_group] = STATE(2307), - [sym_literal] = STATE(2292), - [sym_map_init_expression] = STATE(2380), - [sym_array_creation] = STATE(2307), - [sym_fixed_array_creation] = STATE(2307), - [sym_selector_expression] = STATE(2307), - [sym_index_expression] = STATE(2307), - [sym_slice_expression] = STATE(2307), - [sym_if_expression] = STATE(2380), - [sym_compile_time_if_expression] = STATE(2380), - [sym_is_expression] = STATE(2307), - [sym_in_expression] = STATE(2307), - [sym_enum_fetch] = STATE(2307), - [sym_match_expression] = STATE(2380), - [sym_select_expression] = STATE(2380), - [sym_lock_expression] = STATE(2380), - [sym_unsafe_expression] = STATE(2380), - [sym_sql_expression] = STATE(2380), - [sym_c_string_literal] = STATE(2308), - [sym_raw_string_literal] = STATE(2308), - [sym_interpreted_string_literal] = STATE(2308), + [sym__expression] = STATE(2830), + [sym__expression_without_blocks] = STATE(2347), + [sym__expression_with_blocks] = STATE(2347), + [sym_inc_expression] = STATE(2379), + [sym_dec_expression] = STATE(2379), + [sym_or_block_expression] = STATE(2379), + [sym_option_propagation_expression] = STATE(2379), + [sym_result_propagation_expression] = STATE(2379), + [sym_anon_struct_value_expression] = STATE(2378), + [sym_go_expression] = STATE(2379), + [sym_spawn_expression] = STATE(2379), + [sym_parenthesized_expression] = STATE(2379), + [sym_call_expression] = STATE(2379), + [sym_type_initializer] = STATE(2378), + [sym_function_literal] = STATE(2379), + [sym_reference_expression] = STATE(2911), + [sym_type_reference_expression] = STATE(3460), + [sym_unary_expression] = STATE(2379), + [sym_receive_expression] = STATE(2379), + [sym_binary_expression] = STATE(2379), + [sym_as_type_cast_expression] = STATE(2379), + [sym__max_group] = STATE(2379), + [sym_literal] = STATE(2392), + [sym_map_init_expression] = STATE(2378), + [sym_array_creation] = STATE(2379), + [sym_fixed_array_creation] = STATE(2379), + [sym_selector_expression] = STATE(2910), + [sym_index_expression] = STATE(2379), + [sym_slice_expression] = STATE(2379), + [sym_if_expression] = STATE(2378), + [sym_compile_time_if_expression] = STATE(2378), + [sym_is_expression] = STATE(2379), + [sym_in_expression] = STATE(2379), + [sym_enum_fetch] = STATE(2379), + [sym_match_expression] = STATE(2378), + [sym_select_expression] = STATE(2378), + [sym_lock_expression] = STATE(2378), + [sym_unsafe_expression] = STATE(2378), + [sym_sql_expression] = STATE(2378), + [sym_c_string_literal] = STATE(2401), + [sym_raw_string_literal] = STATE(2401), + [sym_interpreted_string_literal] = STATE(2401), [sym_mutability_modifiers] = STATE(939), - [sym_plain_type] = STATE(4297), - [sym__plain_type_without_special] = STATE(2302), - [sym_anon_struct_type] = STATE(2303), - [sym_multi_return_type] = STATE(2302), - [sym_result_type] = STATE(2302), - [sym_option_type] = STATE(2302), - [sym_qualified_type] = STATE(3541), - [sym_fixed_array_type] = STATE(2303), - [sym_array_type] = STATE(2303), - [sym_pointer_type] = STATE(2303), - [sym_wrong_pointer_type] = STATE(2303), - [sym_map_type] = STATE(2303), - [sym_channel_type] = STATE(2303), - [sym_shared_type] = STATE(2303), - [sym_thread_type] = STATE(2303), - [sym_atomic_type] = STATE(2303), - [sym_generic_type] = STATE(2303), - [sym_function_type] = STATE(2303), - [sym_identifier] = ACTIONS(1426), + [sym_plain_type] = STATE(4160), + [sym__plain_type_without_special] = STATE(2360), + [sym_anon_struct_type] = STATE(2362), + [sym_multi_return_type] = STATE(2360), + [sym_result_type] = STATE(2360), + [sym_option_type] = STATE(2360), + [sym_qualified_type] = STATE(3460), + [sym_fixed_array_type] = STATE(2362), + [sym_array_type] = STATE(2362), + [sym_pointer_type] = STATE(2362), + [sym_wrong_pointer_type] = STATE(2362), + [sym_map_type] = STATE(2362), + [sym_channel_type] = STATE(2362), + [sym_shared_type] = STATE(2362), + [sym_thread_type] = STATE(2362), + [sym_atomic_type] = STATE(2362), + [sym_generic_type] = STATE(2362), + [sym_function_type] = STATE(2362), + [sym_identifier] = ACTIONS(2477), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1428), - [anon_sym_LBRACE] = ACTIONS(1430), - [anon_sym_LPAREN] = ACTIONS(1432), - [anon_sym_fn] = ACTIONS(1434), - [anon_sym_PLUS] = ACTIONS(1436), - [anon_sym_DASH] = ACTIONS(1436), - [anon_sym_STAR] = ACTIONS(1438), - [anon_sym_struct] = ACTIONS(1440), + [anon_sym_DOT] = ACTIONS(1430), + [anon_sym_LBRACE] = ACTIONS(1432), + [anon_sym_LPAREN] = ACTIONS(1434), + [anon_sym_fn] = ACTIONS(1436), + [anon_sym_PLUS] = ACTIONS(1438), + [anon_sym_DASH] = ACTIONS(1438), + [anon_sym_STAR] = ACTIONS(1440), + [anon_sym_struct] = ACTIONS(1442), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(1442), - [anon_sym_go] = ACTIONS(1444), - [anon_sym_spawn] = ACTIONS(1446), - [anon_sym_json_DOTdecode] = ACTIONS(1448), - [anon_sym_LBRACK2] = ACTIONS(1450), - [anon_sym_TILDE] = ACTIONS(1436), - [anon_sym_CARET] = ACTIONS(1436), - [anon_sym_AMP] = ACTIONS(1452), - [anon_sym_LT_DASH] = ACTIONS(1454), - [sym_none] = ACTIONS(1456), - [sym_true] = ACTIONS(1456), - [sym_false] = ACTIONS(1456), - [sym_nil] = ACTIONS(1456), - [anon_sym_if] = ACTIONS(1827), - [anon_sym_DOLLARif] = ACTIONS(1460), - [anon_sym_match] = ACTIONS(1462), - [anon_sym_select] = ACTIONS(1464), - [anon_sym_lock] = ACTIONS(1466), - [anon_sym_rlock] = ACTIONS(1466), - [anon_sym_unsafe] = ACTIONS(1833), - [anon_sym_sql] = ACTIONS(1470), - [sym_int_literal] = ACTIONS(1456), - [sym_float_literal] = ACTIONS(1472), - [sym_rune_literal] = ACTIONS(1472), - [sym_pseudo_compile_time_identifier] = ACTIONS(1474), + [anon_sym_BANG] = ACTIONS(1444), + [anon_sym_go] = ACTIONS(1446), + [anon_sym_spawn] = ACTIONS(1448), + [anon_sym_json_DOTdecode] = ACTIONS(1450), + [anon_sym_LBRACK2] = ACTIONS(1452), + [anon_sym_TILDE] = ACTIONS(1438), + [anon_sym_CARET] = ACTIONS(1438), + [anon_sym_AMP] = ACTIONS(1454), + [anon_sym_LT_DASH] = ACTIONS(1456), + [sym_none] = ACTIONS(1458), + [sym_true] = ACTIONS(1458), + [sym_false] = ACTIONS(1458), + [sym_nil] = ACTIONS(1458), + [anon_sym_if] = ACTIONS(1833), + [anon_sym_DOLLARif] = ACTIONS(1462), + [anon_sym_match] = ACTIONS(1464), + [anon_sym_select] = ACTIONS(1466), + [anon_sym_lock] = ACTIONS(1468), + [anon_sym_rlock] = ACTIONS(1468), + [anon_sym_unsafe] = ACTIONS(1839), + [anon_sym_sql] = ACTIONS(1472), + [sym_int_literal] = ACTIONS(1458), + [sym_float_literal] = ACTIONS(1474), + [sym_rune_literal] = ACTIONS(1474), + [sym_pseudo_compile_time_identifier] = ACTIONS(1476), [anon_sym_shared] = ACTIONS(83), [anon_sym_map_LBRACK] = ACTIONS(85), [anon_sym_chan] = ACTIONS(87), [anon_sym_thread] = ACTIONS(89), [anon_sym_atomic] = ACTIONS(91), - [sym___double_quote] = ACTIONS(1478), - [sym___single_quote] = ACTIONS(1480), - [sym___c_double_quote] = ACTIONS(1482), - [sym___c_single_quote] = ACTIONS(1484), - [sym___r_double_quote] = ACTIONS(1486), - [sym___r_single_quote] = ACTIONS(1488), + [sym___double_quote] = ACTIONS(1480), + [sym___single_quote] = ACTIONS(1482), + [sym___c_double_quote] = ACTIONS(1484), + [sym___c_single_quote] = ACTIONS(1486), + [sym___r_double_quote] = ACTIONS(1488), + [sym___r_single_quote] = ACTIONS(1490), }, [749] = { [sym_line_comment] = STATE(749), [sym_block_comment] = STATE(749), - [sym__expression] = STATE(1643), - [sym__expression_without_blocks] = STATE(1891), - [sym__expression_with_blocks] = STATE(1891), - [sym_inc_expression] = STATE(1893), - [sym_dec_expression] = STATE(1893), - [sym_or_block_expression] = STATE(1893), - [sym_option_propagation_expression] = STATE(1893), - [sym_result_propagation_expression] = STATE(1893), - [sym_anon_struct_value_expression] = STATE(1895), - [sym_go_expression] = STATE(1893), - [sym_spawn_expression] = STATE(1893), - [sym_parenthesized_expression] = STATE(1893), - [sym_call_expression] = STATE(1893), - [sym_type_initializer] = STATE(1895), - [sym_function_literal] = STATE(1893), - [sym_reference_expression] = STATE(1782), - [sym_type_reference_expression] = STATE(3541), - [sym_unary_expression] = STATE(1893), - [sym_receive_expression] = STATE(1893), - [sym_binary_expression] = STATE(1893), - [sym_as_type_cast_expression] = STATE(1893), - [sym__max_group] = STATE(1893), - [sym_literal] = STATE(1889), - [sym_map_init_expression] = STATE(1895), - [sym_array_creation] = STATE(1893), - [sym_fixed_array_creation] = STATE(1893), - [sym_selector_expression] = STATE(1893), - [sym_index_expression] = STATE(1893), - [sym_slice_expression] = STATE(1893), - [sym_if_expression] = STATE(1895), - [sym_compile_time_if_expression] = STATE(1895), - [sym_is_expression] = STATE(1893), - [sym_in_expression] = STATE(1893), - [sym_enum_fetch] = STATE(1893), - [sym_match_expression] = STATE(1895), - [sym_select_expression] = STATE(1895), - [sym_lock_expression] = STATE(1895), - [sym_unsafe_expression] = STATE(1895), - [sym_sql_expression] = STATE(1895), - [sym_c_string_literal] = STATE(1882), - [sym_raw_string_literal] = STATE(1882), - [sym_interpreted_string_literal] = STATE(1882), - [sym_mutability_modifiers] = STATE(561), - [sym_plain_type] = STATE(4316), - [sym__plain_type_without_special] = STATE(2302), - [sym_anon_struct_type] = STATE(2303), - [sym_multi_return_type] = STATE(2302), - [sym_result_type] = STATE(2302), - [sym_option_type] = STATE(2302), - [sym_qualified_type] = STATE(3541), - [sym_fixed_array_type] = STATE(2303), - [sym_array_type] = STATE(2303), - [sym_pointer_type] = STATE(2303), - [sym_wrong_pointer_type] = STATE(2303), - [sym_map_type] = STATE(2303), - [sym_channel_type] = STATE(2303), - [sym_shared_type] = STATE(2303), - [sym_thread_type] = STATE(2303), - [sym_atomic_type] = STATE(2303), - [sym_generic_type] = STATE(2303), - [sym_function_type] = STATE(2303), - [sym_identifier] = ACTIONS(3170), + [sym__expression] = STATE(2642), + [sym__expression_without_blocks] = STATE(2347), + [sym__expression_with_blocks] = STATE(2347), + [sym_inc_expression] = STATE(2379), + [sym_dec_expression] = STATE(2379), + [sym_or_block_expression] = STATE(2379), + [sym_option_propagation_expression] = STATE(2379), + [sym_result_propagation_expression] = STATE(2379), + [sym_anon_struct_value_expression] = STATE(2378), + [sym_go_expression] = STATE(2379), + [sym_spawn_expression] = STATE(2379), + [sym_parenthesized_expression] = STATE(2379), + [sym_call_expression] = STATE(2379), + [sym_type_initializer] = STATE(2378), + [sym_function_literal] = STATE(2379), + [sym_reference_expression] = STATE(2377), + [sym_type_reference_expression] = STATE(3460), + [sym_unary_expression] = STATE(2379), + [sym_receive_expression] = STATE(2379), + [sym_binary_expression] = STATE(2379), + [sym_as_type_cast_expression] = STATE(2379), + [sym__max_group] = STATE(2379), + [sym_literal] = STATE(2392), + [sym_map_init_expression] = STATE(2378), + [sym_array_creation] = STATE(2379), + [sym_fixed_array_creation] = STATE(2379), + [sym_selector_expression] = STATE(2379), + [sym_index_expression] = STATE(2379), + [sym_slice_expression] = STATE(2379), + [sym_if_expression] = STATE(2378), + [sym_compile_time_if_expression] = STATE(2378), + [sym_is_expression] = STATE(2379), + [sym_in_expression] = STATE(2379), + [sym_enum_fetch] = STATE(2379), + [sym_match_expression] = STATE(2378), + [sym_select_expression] = STATE(2378), + [sym_lock_expression] = STATE(2378), + [sym_unsafe_expression] = STATE(2378), + [sym_sql_expression] = STATE(2378), + [sym_c_string_literal] = STATE(2401), + [sym_raw_string_literal] = STATE(2401), + [sym_interpreted_string_literal] = STATE(2401), + [sym_mutability_modifiers] = STATE(939), + [sym_plain_type] = STATE(3564), + [sym__plain_type_without_special] = STATE(2360), + [sym_anon_struct_type] = STATE(2362), + [sym_multi_return_type] = STATE(2360), + [sym_result_type] = STATE(2360), + [sym_option_type] = STATE(2360), + [sym_qualified_type] = STATE(3460), + [sym_fixed_array_type] = STATE(2362), + [sym_array_type] = STATE(2362), + [sym_pointer_type] = STATE(2362), + [sym_wrong_pointer_type] = STATE(2362), + [sym_map_type] = STATE(2362), + [sym_channel_type] = STATE(2362), + [sym_shared_type] = STATE(2362), + [sym_thread_type] = STATE(2362), + [sym_atomic_type] = STATE(2362), + [sym_generic_type] = STATE(2362), + [sym_function_type] = STATE(2362), + [sym_identifier] = ACTIONS(1428), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(3172), - [anon_sym_LBRACE] = ACTIONS(3174), - [anon_sym_LPAREN] = ACTIONS(3176), - [anon_sym_fn] = ACTIONS(3178), - [anon_sym_PLUS] = ACTIONS(3180), - [anon_sym_DASH] = ACTIONS(3180), - [anon_sym_STAR] = ACTIONS(3182), - [anon_sym_struct] = ACTIONS(3184), + [anon_sym_DOT] = ACTIONS(1430), + [anon_sym_LBRACE] = ACTIONS(1432), + [anon_sym_LPAREN] = ACTIONS(1434), + [anon_sym_fn] = ACTIONS(1436), + [anon_sym_PLUS] = ACTIONS(2271), + [anon_sym_DASH] = ACTIONS(2271), + [anon_sym_STAR] = ACTIONS(2273), + [anon_sym_struct] = ACTIONS(1442), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(3186), - [anon_sym_go] = ACTIONS(3188), - [anon_sym_spawn] = ACTIONS(3190), - [anon_sym_json_DOTdecode] = ACTIONS(3192), - [anon_sym_LBRACK2] = ACTIONS(3194), - [anon_sym_TILDE] = ACTIONS(3180), - [anon_sym_CARET] = ACTIONS(3180), - [anon_sym_AMP] = ACTIONS(3196), - [anon_sym_LT_DASH] = ACTIONS(3198), - [sym_none] = ACTIONS(3200), - [sym_true] = ACTIONS(3200), - [sym_false] = ACTIONS(3200), - [sym_nil] = ACTIONS(3200), - [anon_sym_if] = ACTIONS(3202), - [anon_sym_DOLLARif] = ACTIONS(3204), - [anon_sym_match] = ACTIONS(3206), - [anon_sym_select] = ACTIONS(3208), - [anon_sym_lock] = ACTIONS(3210), - [anon_sym_rlock] = ACTIONS(3210), - [anon_sym_unsafe] = ACTIONS(3212), - [anon_sym_sql] = ACTIONS(3214), - [sym_int_literal] = ACTIONS(3200), - [sym_float_literal] = ACTIONS(3216), - [sym_rune_literal] = ACTIONS(3216), - [sym_pseudo_compile_time_identifier] = ACTIONS(3218), + [anon_sym_BANG] = ACTIONS(2275), + [anon_sym_go] = ACTIONS(2277), + [anon_sym_spawn] = ACTIONS(2279), + [anon_sym_json_DOTdecode] = ACTIONS(1450), + [anon_sym_LBRACK2] = ACTIONS(1452), + [anon_sym_TILDE] = ACTIONS(2271), + [anon_sym_CARET] = ACTIONS(2271), + [anon_sym_AMP] = ACTIONS(2281), + [anon_sym_LT_DASH] = ACTIONS(2283), + [sym_none] = ACTIONS(1458), + [sym_true] = ACTIONS(1458), + [sym_false] = ACTIONS(1458), + [sym_nil] = ACTIONS(1458), + [anon_sym_if] = ACTIONS(1833), + [anon_sym_DOLLARif] = ACTIONS(1462), + [anon_sym_match] = ACTIONS(1464), + [anon_sym_select] = ACTIONS(1466), + [anon_sym_lock] = ACTIONS(1468), + [anon_sym_rlock] = ACTIONS(1468), + [anon_sym_unsafe] = ACTIONS(1839), + [anon_sym_sql] = ACTIONS(1472), + [sym_int_literal] = ACTIONS(1458), + [sym_float_literal] = ACTIONS(1474), + [sym_rune_literal] = ACTIONS(1474), + [sym_pseudo_compile_time_identifier] = ACTIONS(1476), [anon_sym_shared] = ACTIONS(83), [anon_sym_map_LBRACK] = ACTIONS(85), [anon_sym_chan] = ACTIONS(87), [anon_sym_thread] = ACTIONS(89), [anon_sym_atomic] = ACTIONS(91), - [sym___double_quote] = ACTIONS(3220), - [sym___single_quote] = ACTIONS(3222), - [sym___c_double_quote] = ACTIONS(3224), - [sym___c_single_quote] = ACTIONS(3226), - [sym___r_double_quote] = ACTIONS(3228), - [sym___r_single_quote] = ACTIONS(3230), + [sym___double_quote] = ACTIONS(1480), + [sym___single_quote] = ACTIONS(1482), + [sym___c_double_quote] = ACTIONS(1484), + [sym___c_single_quote] = ACTIONS(1486), + [sym___r_double_quote] = ACTIONS(1488), + [sym___r_single_quote] = ACTIONS(1490), }, [750] = { [sym_line_comment] = STATE(750), [sym_block_comment] = STATE(750), - [sym__expression] = STATE(2631), - [sym__expression_without_blocks] = STATE(2300), - [sym__expression_with_blocks] = STATE(2300), - [sym_inc_expression] = STATE(2307), - [sym_dec_expression] = STATE(2307), - [sym_or_block_expression] = STATE(2307), - [sym_option_propagation_expression] = STATE(2307), - [sym_result_propagation_expression] = STATE(2307), - [sym_anon_struct_value_expression] = STATE(2380), - [sym_go_expression] = STATE(2307), - [sym_spawn_expression] = STATE(2307), - [sym_parenthesized_expression] = STATE(2307), - [sym_call_expression] = STATE(2307), - [sym_type_initializer] = STATE(2380), - [sym_function_literal] = STATE(2307), - [sym_reference_expression] = STATE(2311), - [sym_type_reference_expression] = STATE(3541), - [sym_unary_expression] = STATE(2307), - [sym_receive_expression] = STATE(2307), - [sym_binary_expression] = STATE(2307), - [sym_as_type_cast_expression] = STATE(2307), - [sym__max_group] = STATE(2307), - [sym_literal] = STATE(2292), - [sym_map_init_expression] = STATE(2380), - [sym_array_creation] = STATE(2307), - [sym_fixed_array_creation] = STATE(2307), - [sym_selector_expression] = STATE(2307), - [sym_index_expression] = STATE(2307), - [sym_slice_expression] = STATE(2307), - [sym_if_expression] = STATE(2380), - [sym_compile_time_if_expression] = STATE(2380), - [sym_is_expression] = STATE(2307), - [sym_in_expression] = STATE(2307), - [sym_enum_fetch] = STATE(2307), - [sym_match_expression] = STATE(2380), - [sym_select_expression] = STATE(2380), - [sym_lock_expression] = STATE(2380), - [sym_unsafe_expression] = STATE(2380), - [sym_sql_expression] = STATE(2380), - [sym_c_string_literal] = STATE(2308), - [sym_raw_string_literal] = STATE(2308), - [sym_interpreted_string_literal] = STATE(2308), + [sym__expression] = STATE(2616), + [sym__expression_without_blocks] = STATE(2347), + [sym__expression_with_blocks] = STATE(2347), + [sym_inc_expression] = STATE(2379), + [sym_dec_expression] = STATE(2379), + [sym_or_block_expression] = STATE(2379), + [sym_option_propagation_expression] = STATE(2379), + [sym_result_propagation_expression] = STATE(2379), + [sym_anon_struct_value_expression] = STATE(2378), + [sym_go_expression] = STATE(2379), + [sym_spawn_expression] = STATE(2379), + [sym_parenthesized_expression] = STATE(2379), + [sym_call_expression] = STATE(2379), + [sym_type_initializer] = STATE(2378), + [sym_function_literal] = STATE(2379), + [sym_reference_expression] = STATE(2377), + [sym_type_reference_expression] = STATE(3460), + [sym_unary_expression] = STATE(2379), + [sym_receive_expression] = STATE(2379), + [sym_binary_expression] = STATE(2379), + [sym_as_type_cast_expression] = STATE(2379), + [sym__max_group] = STATE(2379), + [sym_literal] = STATE(2392), + [sym_map_init_expression] = STATE(2378), + [sym_array_creation] = STATE(2379), + [sym_fixed_array_creation] = STATE(2379), + [sym_selector_expression] = STATE(2379), + [sym_index_expression] = STATE(2379), + [sym_slice_expression] = STATE(2379), + [sym_if_expression] = STATE(2378), + [sym_compile_time_if_expression] = STATE(2378), + [sym_is_expression] = STATE(2379), + [sym_in_expression] = STATE(2379), + [sym_enum_fetch] = STATE(2379), + [sym_match_expression] = STATE(2378), + [sym_select_expression] = STATE(2378), + [sym_lock_expression] = STATE(2378), + [sym_unsafe_expression] = STATE(2378), + [sym_sql_expression] = STATE(2378), + [sym_c_string_literal] = STATE(2401), + [sym_raw_string_literal] = STATE(2401), + [sym_interpreted_string_literal] = STATE(2401), [sym_mutability_modifiers] = STATE(939), - [sym_plain_type] = STATE(4297), - [sym__plain_type_without_special] = STATE(2302), - [sym_anon_struct_type] = STATE(2303), - [sym_multi_return_type] = STATE(2302), - [sym_result_type] = STATE(2302), - [sym_option_type] = STATE(2302), - [sym_qualified_type] = STATE(3541), - [sym_fixed_array_type] = STATE(2303), - [sym_array_type] = STATE(2303), - [sym_pointer_type] = STATE(2303), - [sym_wrong_pointer_type] = STATE(2303), - [sym_map_type] = STATE(2303), - [sym_channel_type] = STATE(2303), - [sym_shared_type] = STATE(2303), - [sym_thread_type] = STATE(2303), - [sym_atomic_type] = STATE(2303), - [sym_generic_type] = STATE(2303), - [sym_function_type] = STATE(2303), - [sym_identifier] = ACTIONS(2189), + [sym_plain_type] = STATE(4160), + [sym__plain_type_without_special] = STATE(2360), + [sym_anon_struct_type] = STATE(2362), + [sym_multi_return_type] = STATE(2360), + [sym_result_type] = STATE(2360), + [sym_option_type] = STATE(2360), + [sym_qualified_type] = STATE(3460), + [sym_fixed_array_type] = STATE(2362), + [sym_array_type] = STATE(2362), + [sym_pointer_type] = STATE(2362), + [sym_wrong_pointer_type] = STATE(2362), + [sym_map_type] = STATE(2362), + [sym_channel_type] = STATE(2362), + [sym_shared_type] = STATE(2362), + [sym_thread_type] = STATE(2362), + [sym_atomic_type] = STATE(2362), + [sym_generic_type] = STATE(2362), + [sym_function_type] = STATE(2362), + [sym_identifier] = ACTIONS(1815), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1428), - [anon_sym_LBRACE] = ACTIONS(1430), - [anon_sym_LPAREN] = ACTIONS(1432), - [anon_sym_fn] = ACTIONS(1434), - [anon_sym_PLUS] = ACTIONS(2491), - [anon_sym_DASH] = ACTIONS(2491), - [anon_sym_STAR] = ACTIONS(3354), - [anon_sym_struct] = ACTIONS(1440), + [anon_sym_DOT] = ACTIONS(1430), + [anon_sym_LBRACE] = ACTIONS(1432), + [anon_sym_LPAREN] = ACTIONS(1434), + [anon_sym_fn] = ACTIONS(1436), + [anon_sym_PLUS] = ACTIONS(3090), + [anon_sym_DASH] = ACTIONS(3090), + [anon_sym_STAR] = ACTIONS(3092), + [anon_sym_struct] = ACTIONS(1442), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(3356), - [anon_sym_go] = ACTIONS(2497), - [anon_sym_spawn] = ACTIONS(2499), - [anon_sym_json_DOTdecode] = ACTIONS(1448), - [anon_sym_LBRACK2] = ACTIONS(1450), - [anon_sym_TILDE] = ACTIONS(2491), - [anon_sym_CARET] = ACTIONS(2491), - [anon_sym_AMP] = ACTIONS(3358), - [anon_sym_LT_DASH] = ACTIONS(2503), - [sym_none] = ACTIONS(1456), - [sym_true] = ACTIONS(1456), - [sym_false] = ACTIONS(1456), - [sym_nil] = ACTIONS(1456), - [anon_sym_if] = ACTIONS(1827), - [anon_sym_DOLLARif] = ACTIONS(1460), - [anon_sym_match] = ACTIONS(1462), - [anon_sym_select] = ACTIONS(1464), - [anon_sym_lock] = ACTIONS(1466), - [anon_sym_rlock] = ACTIONS(1466), - [anon_sym_unsafe] = ACTIONS(1833), - [anon_sym_sql] = ACTIONS(1470), - [sym_int_literal] = ACTIONS(1456), - [sym_float_literal] = ACTIONS(1472), - [sym_rune_literal] = ACTIONS(1472), - [sym_pseudo_compile_time_identifier] = ACTIONS(1474), - [anon_sym_shared] = ACTIONS(83), - [anon_sym_map_LBRACK] = ACTIONS(85), + [anon_sym_BANG] = ACTIONS(3094), + [anon_sym_go] = ACTIONS(3096), + [anon_sym_spawn] = ACTIONS(3098), + [anon_sym_json_DOTdecode] = ACTIONS(1450), + [anon_sym_LBRACK2] = ACTIONS(1827), + [anon_sym_TILDE] = ACTIONS(3090), + [anon_sym_CARET] = ACTIONS(3090), + [anon_sym_AMP] = ACTIONS(3100), + [anon_sym_LT_DASH] = ACTIONS(3102), + [sym_none] = ACTIONS(1458), + [sym_true] = ACTIONS(1458), + [sym_false] = ACTIONS(1458), + [sym_nil] = ACTIONS(1458), + [anon_sym_if] = ACTIONS(1833), + [anon_sym_DOLLARif] = ACTIONS(1462), + [anon_sym_match] = ACTIONS(1464), + [anon_sym_select] = ACTIONS(3104), + [anon_sym_lock] = ACTIONS(3106), + [anon_sym_rlock] = ACTIONS(3106), + [anon_sym_unsafe] = ACTIONS(1839), + [anon_sym_sql] = ACTIONS(1472), + [sym_int_literal] = ACTIONS(1458), + [sym_float_literal] = ACTIONS(1474), + [sym_rune_literal] = ACTIONS(1474), + [sym_pseudo_compile_time_identifier] = ACTIONS(1476), + [anon_sym_shared] = ACTIONS(83), + [anon_sym_map_LBRACK] = ACTIONS(85), [anon_sym_chan] = ACTIONS(87), [anon_sym_thread] = ACTIONS(89), [anon_sym_atomic] = ACTIONS(91), - [sym___double_quote] = ACTIONS(1478), - [sym___single_quote] = ACTIONS(1480), - [sym___c_double_quote] = ACTIONS(1482), - [sym___c_single_quote] = ACTIONS(1484), - [sym___r_double_quote] = ACTIONS(1486), - [sym___r_single_quote] = ACTIONS(1488), + [sym___double_quote] = ACTIONS(1480), + [sym___single_quote] = ACTIONS(1482), + [sym___c_double_quote] = ACTIONS(1484), + [sym___c_single_quote] = ACTIONS(1486), + [sym___r_double_quote] = ACTIONS(1488), + [sym___r_single_quote] = ACTIONS(1490), }, [751] = { [sym_line_comment] = STATE(751), [sym_block_comment] = STATE(751), - [sym__expression] = STATE(1753), - [sym__expression_without_blocks] = STATE(2044), - [sym__expression_with_blocks] = STATE(2044), - [sym_inc_expression] = STATE(2045), - [sym_dec_expression] = STATE(2045), - [sym_or_block_expression] = STATE(2045), - [sym_option_propagation_expression] = STATE(2045), - [sym_result_propagation_expression] = STATE(2045), - [sym_anon_struct_value_expression] = STATE(2046), - [sym_go_expression] = STATE(2045), - [sym_spawn_expression] = STATE(2045), - [sym_parenthesized_expression] = STATE(2045), - [sym_call_expression] = STATE(2045), - [sym_type_initializer] = STATE(2046), - [sym_function_literal] = STATE(2045), - [sym_reference_expression] = STATE(1912), - [sym_type_reference_expression] = STATE(3541), - [sym_unary_expression] = STATE(2045), - [sym_receive_expression] = STATE(2045), - [sym_binary_expression] = STATE(2045), - [sym_as_type_cast_expression] = STATE(2045), - [sym__max_group] = STATE(2045), - [sym_literal] = STATE(2043), - [sym_map_init_expression] = STATE(2046), - [sym_array_creation] = STATE(2045), - [sym_fixed_array_creation] = STATE(2045), - [sym_selector_expression] = STATE(2045), - [sym_index_expression] = STATE(2045), - [sym_slice_expression] = STATE(2045), - [sym_if_expression] = STATE(2046), - [sym_compile_time_if_expression] = STATE(2046), - [sym_is_expression] = STATE(2045), - [sym_in_expression] = STATE(2045), - [sym_enum_fetch] = STATE(2045), - [sym_match_expression] = STATE(2046), - [sym_select_expression] = STATE(2046), - [sym_lock_expression] = STATE(2046), - [sym_unsafe_expression] = STATE(2046), - [sym_sql_expression] = STATE(2046), - [sym_c_string_literal] = STATE(2041), - [sym_raw_string_literal] = STATE(2041), - [sym_interpreted_string_literal] = STATE(2041), - [sym_mutability_modifiers] = STATE(689), - [sym_plain_type] = STATE(4052), - [sym__plain_type_without_special] = STATE(2302), - [sym_anon_struct_type] = STATE(2303), - [sym_multi_return_type] = STATE(2302), - [sym_result_type] = STATE(2302), - [sym_option_type] = STATE(2302), - [sym_qualified_type] = STATE(3541), - [sym_fixed_array_type] = STATE(2303), - [sym_array_type] = STATE(2303), - [sym_pointer_type] = STATE(2303), - [sym_wrong_pointer_type] = STATE(2303), - [sym_map_type] = STATE(2303), - [sym_channel_type] = STATE(2303), - [sym_shared_type] = STATE(2303), - [sym_thread_type] = STATE(2303), - [sym_atomic_type] = STATE(2303), - [sym_generic_type] = STATE(2303), - [sym_function_type] = STATE(2303), - [sym_identifier] = ACTIONS(1641), + [sym__expression] = STATE(2393), + [sym__expression_without_blocks] = STATE(2468), + [sym__expression_with_blocks] = STATE(2468), + [sym_inc_expression] = STATE(2469), + [sym_dec_expression] = STATE(2469), + [sym_or_block_expression] = STATE(2469), + [sym_option_propagation_expression] = STATE(2469), + [sym_result_propagation_expression] = STATE(2469), + [sym_anon_struct_value_expression] = STATE(2470), + [sym_go_expression] = STATE(2469), + [sym_spawn_expression] = STATE(2469), + [sym_parenthesized_expression] = STATE(2469), + [sym_call_expression] = STATE(2469), + [sym_type_initializer] = STATE(2470), + [sym_function_literal] = STATE(2469), + [sym_reference_expression] = STATE(2487), + [sym_type_reference_expression] = STATE(3460), + [sym_unary_expression] = STATE(2469), + [sym_receive_expression] = STATE(2469), + [sym_binary_expression] = STATE(2469), + [sym_as_type_cast_expression] = STATE(2469), + [sym__max_group] = STATE(2469), + [sym_literal] = STATE(2465), + [sym_map_init_expression] = STATE(2470), + [sym_array_creation] = STATE(2469), + [sym_fixed_array_creation] = STATE(2469), + [sym_selector_expression] = STATE(2469), + [sym_index_expression] = STATE(2469), + [sym_slice_expression] = STATE(2469), + [sym_if_expression] = STATE(2470), + [sym_compile_time_if_expression] = STATE(2470), + [sym_is_expression] = STATE(2469), + [sym_in_expression] = STATE(2469), + [sym_enum_fetch] = STATE(2469), + [sym_match_expression] = STATE(2470), + [sym_select_expression] = STATE(2470), + [sym_lock_expression] = STATE(2470), + [sym_unsafe_expression] = STATE(2470), + [sym_sql_expression] = STATE(2470), + [sym_c_string_literal] = STATE(2464), + [sym_raw_string_literal] = STATE(2464), + [sym_interpreted_string_literal] = STATE(2464), + [sym_mutability_modifiers] = STATE(561), + [sym_plain_type] = STATE(4038), + [sym__plain_type_without_special] = STATE(2360), + [sym_anon_struct_type] = STATE(2362), + [sym_multi_return_type] = STATE(2360), + [sym_result_type] = STATE(2360), + [sym_option_type] = STATE(2360), + [sym_qualified_type] = STATE(3460), + [sym_fixed_array_type] = STATE(2362), + [sym_array_type] = STATE(2362), + [sym_pointer_type] = STATE(2362), + [sym_wrong_pointer_type] = STATE(2362), + [sym_map_type] = STATE(2362), + [sym_channel_type] = STATE(2362), + [sym_shared_type] = STATE(2362), + [sym_thread_type] = STATE(2362), + [sym_atomic_type] = STATE(2362), + [sym_generic_type] = STATE(2362), + [sym_function_type] = STATE(2362), + [sym_identifier] = ACTIONS(1691), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(811), - [anon_sym_LBRACE] = ACTIONS(3144), - [anon_sym_LPAREN] = ACTIONS(815), - [anon_sym_fn] = ACTIONS(817), - [anon_sym_PLUS] = ACTIONS(819), - [anon_sym_DASH] = ACTIONS(819), - [anon_sym_STAR] = ACTIONS(821), - [anon_sym_struct] = ACTIONS(823), + [anon_sym_DOT] = ACTIONS(1693), + [anon_sym_LBRACE] = ACTIONS(2151), + [anon_sym_LPAREN] = ACTIONS(2153), + [anon_sym_fn] = ACTIONS(1699), + [anon_sym_PLUS] = ACTIONS(2155), + [anon_sym_DASH] = ACTIONS(2155), + [anon_sym_STAR] = ACTIONS(2157), + [anon_sym_struct] = ACTIONS(1705), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(827), - [anon_sym_go] = ACTIONS(829), - [anon_sym_spawn] = ACTIONS(831), - [anon_sym_json_DOTdecode] = ACTIONS(833), - [anon_sym_LBRACK2] = ACTIONS(835), - [anon_sym_TILDE] = ACTIONS(819), - [anon_sym_CARET] = ACTIONS(819), - [anon_sym_AMP] = ACTIONS(837), - [anon_sym_LT_DASH] = ACTIONS(839), - [sym_none] = ACTIONS(841), - [sym_true] = ACTIONS(841), - [sym_false] = ACTIONS(841), - [sym_nil] = ACTIONS(841), - [anon_sym_if] = ACTIONS(843), - [anon_sym_DOLLARif] = ACTIONS(845), - [anon_sym_match] = ACTIONS(847), - [anon_sym_select] = ACTIONS(849), - [anon_sym_lock] = ACTIONS(851), - [anon_sym_rlock] = ACTIONS(851), - [anon_sym_unsafe] = ACTIONS(853), - [anon_sym_sql] = ACTIONS(855), - [sym_int_literal] = ACTIONS(841), - [sym_float_literal] = ACTIONS(857), - [sym_rune_literal] = ACTIONS(857), - [sym_pseudo_compile_time_identifier] = ACTIONS(859), + [anon_sym_BANG] = ACTIONS(2159), + [anon_sym_go] = ACTIONS(1709), + [anon_sym_spawn] = ACTIONS(1711), + [anon_sym_json_DOTdecode] = ACTIONS(2161), + [anon_sym_LBRACK2] = ACTIONS(2163), + [anon_sym_TILDE] = ACTIONS(2155), + [anon_sym_CARET] = ACTIONS(2155), + [anon_sym_AMP] = ACTIONS(2165), + [anon_sym_LT_DASH] = ACTIONS(2167), + [sym_none] = ACTIONS(1721), + [sym_true] = ACTIONS(1721), + [sym_false] = ACTIONS(1721), + [sym_nil] = ACTIONS(1721), + [anon_sym_if] = ACTIONS(1723), + [anon_sym_DOLLARif] = ACTIONS(1725), + [anon_sym_match] = ACTIONS(1727), + [anon_sym_select] = ACTIONS(1729), + [anon_sym_lock] = ACTIONS(1731), + [anon_sym_rlock] = ACTIONS(1731), + [anon_sym_unsafe] = ACTIONS(1733), + [anon_sym_sql] = ACTIONS(1735), + [sym_int_literal] = ACTIONS(1721), + [sym_float_literal] = ACTIONS(2169), + [sym_rune_literal] = ACTIONS(2169), + [sym_pseudo_compile_time_identifier] = ACTIONS(1737), [anon_sym_shared] = ACTIONS(83), [anon_sym_map_LBRACK] = ACTIONS(85), [anon_sym_chan] = ACTIONS(87), [anon_sym_thread] = ACTIONS(89), [anon_sym_atomic] = ACTIONS(91), - [sym___double_quote] = ACTIONS(861), - [sym___single_quote] = ACTIONS(863), - [sym___c_double_quote] = ACTIONS(865), - [sym___c_single_quote] = ACTIONS(867), - [sym___r_double_quote] = ACTIONS(869), - [sym___r_single_quote] = ACTIONS(871), + [sym___double_quote] = ACTIONS(2171), + [sym___single_quote] = ACTIONS(2173), + [sym___c_double_quote] = ACTIONS(2175), + [sym___c_single_quote] = ACTIONS(2177), + [sym___r_double_quote] = ACTIONS(2179), + [sym___r_single_quote] = ACTIONS(2181), }, [752] = { [sym_line_comment] = STATE(752), [sym_block_comment] = STATE(752), - [sym__expression] = STATE(2264), - [sym__expression_without_blocks] = STATE(2300), - [sym__expression_with_blocks] = STATE(2300), - [sym_inc_expression] = STATE(2307), - [sym_dec_expression] = STATE(2307), - [sym_or_block_expression] = STATE(2307), - [sym_option_propagation_expression] = STATE(2307), - [sym_result_propagation_expression] = STATE(2307), - [sym_anon_struct_value_expression] = STATE(2380), - [sym_go_expression] = STATE(2307), - [sym_spawn_expression] = STATE(2307), - [sym_parenthesized_expression] = STATE(2307), - [sym_call_expression] = STATE(2307), - [sym_type_initializer] = STATE(2380), - [sym_function_literal] = STATE(2307), - [sym_reference_expression] = STATE(2311), - [sym_type_reference_expression] = STATE(3541), - [sym_unary_expression] = STATE(2307), - [sym_receive_expression] = STATE(2307), - [sym_binary_expression] = STATE(2307), - [sym_as_type_cast_expression] = STATE(2307), - [sym__max_group] = STATE(2307), - [sym_literal] = STATE(2292), - [sym_map_init_expression] = STATE(2380), - [sym_array_creation] = STATE(2307), - [sym_fixed_array_creation] = STATE(2307), - [sym_selector_expression] = STATE(2307), - [sym_index_expression] = STATE(2307), - [sym_slice_expression] = STATE(2307), - [sym_if_expression] = STATE(2380), - [sym_compile_time_if_expression] = STATE(2380), - [sym_is_expression] = STATE(2307), - [sym_in_expression] = STATE(2307), - [sym_enum_fetch] = STATE(2307), - [sym_match_expression] = STATE(2380), - [sym_select_expression] = STATE(2380), - [sym_lock_expression] = STATE(2380), - [sym_unsafe_expression] = STATE(2380), - [sym_sql_expression] = STATE(2380), - [sym_c_string_literal] = STATE(2308), - [sym_raw_string_literal] = STATE(2308), - [sym_interpreted_string_literal] = STATE(2308), + [sym__expression] = STATE(2683), + [sym__expression_without_blocks] = STATE(2347), + [sym__expression_with_blocks] = STATE(2347), + [sym_inc_expression] = STATE(2379), + [sym_dec_expression] = STATE(2379), + [sym_or_block_expression] = STATE(2379), + [sym_option_propagation_expression] = STATE(2379), + [sym_result_propagation_expression] = STATE(2379), + [sym_anon_struct_value_expression] = STATE(2378), + [sym_go_expression] = STATE(2379), + [sym_spawn_expression] = STATE(2379), + [sym_parenthesized_expression] = STATE(2379), + [sym_call_expression] = STATE(2379), + [sym_type_initializer] = STATE(2378), + [sym_function_literal] = STATE(2379), + [sym_reference_expression] = STATE(2377), + [sym_type_reference_expression] = STATE(3460), + [sym_unary_expression] = STATE(2379), + [sym_receive_expression] = STATE(2379), + [sym_binary_expression] = STATE(2379), + [sym_as_type_cast_expression] = STATE(2379), + [sym__max_group] = STATE(2379), + [sym_literal] = STATE(2392), + [sym_map_init_expression] = STATE(2378), + [sym_array_creation] = STATE(2379), + [sym_fixed_array_creation] = STATE(2379), + [sym_selector_expression] = STATE(2379), + [sym_index_expression] = STATE(2379), + [sym_slice_expression] = STATE(2379), + [sym_if_expression] = STATE(2378), + [sym_compile_time_if_expression] = STATE(2378), + [sym_is_expression] = STATE(2379), + [sym_in_expression] = STATE(2379), + [sym_enum_fetch] = STATE(2379), + [sym_match_expression] = STATE(2378), + [sym_select_expression] = STATE(2378), + [sym_lock_expression] = STATE(2378), + [sym_unsafe_expression] = STATE(2378), + [sym_sql_expression] = STATE(2378), + [sym_c_string_literal] = STATE(2401), + [sym_raw_string_literal] = STATE(2401), + [sym_interpreted_string_literal] = STATE(2401), [sym_mutability_modifiers] = STATE(939), - [sym_plain_type] = STATE(4297), - [sym__plain_type_without_special] = STATE(2302), - [sym_anon_struct_type] = STATE(2303), - [sym_multi_return_type] = STATE(2302), - [sym_result_type] = STATE(2302), - [sym_option_type] = STATE(2302), - [sym_qualified_type] = STATE(3541), - [sym_fixed_array_type] = STATE(2303), - [sym_array_type] = STATE(2303), - [sym_pointer_type] = STATE(2303), - [sym_wrong_pointer_type] = STATE(2303), - [sym_map_type] = STATE(2303), - [sym_channel_type] = STATE(2303), - [sym_shared_type] = STATE(2303), - [sym_thread_type] = STATE(2303), - [sym_atomic_type] = STATE(2303), - [sym_generic_type] = STATE(2303), - [sym_function_type] = STATE(2303), - [sym_identifier] = ACTIONS(1807), + [sym_plain_type] = STATE(4160), + [sym__plain_type_without_special] = STATE(2360), + [sym_anon_struct_type] = STATE(2362), + [sym_multi_return_type] = STATE(2360), + [sym_result_type] = STATE(2360), + [sym_option_type] = STATE(2360), + [sym_qualified_type] = STATE(3460), + [sym_fixed_array_type] = STATE(2362), + [sym_array_type] = STATE(2362), + [sym_pointer_type] = STATE(2362), + [sym_wrong_pointer_type] = STATE(2362), + [sym_map_type] = STATE(2362), + [sym_channel_type] = STATE(2362), + [sym_shared_type] = STATE(2362), + [sym_thread_type] = STATE(2362), + [sym_atomic_type] = STATE(2362), + [sym_generic_type] = STATE(2362), + [sym_function_type] = STATE(2362), + [sym_identifier] = ACTIONS(2477), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1428), - [anon_sym_LBRACE] = ACTIONS(1430), - [anon_sym_LPAREN] = ACTIONS(1432), - [anon_sym_fn] = ACTIONS(1434), - [anon_sym_PLUS] = ACTIONS(3064), - [anon_sym_DASH] = ACTIONS(3064), - [anon_sym_STAR] = ACTIONS(3066), - [anon_sym_struct] = ACTIONS(1440), + [anon_sym_DOT] = ACTIONS(1430), + [anon_sym_LBRACE] = ACTIONS(1432), + [anon_sym_LPAREN] = ACTIONS(1434), + [anon_sym_fn] = ACTIONS(1436), + [anon_sym_PLUS] = ACTIONS(2271), + [anon_sym_DASH] = ACTIONS(2271), + [anon_sym_STAR] = ACTIONS(3354), + [anon_sym_struct] = ACTIONS(1442), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(3068), - [anon_sym_go] = ACTIONS(3070), - [anon_sym_spawn] = ACTIONS(3072), - [anon_sym_json_DOTdecode] = ACTIONS(1448), - [anon_sym_LBRACK2] = ACTIONS(1821), - [anon_sym_TILDE] = ACTIONS(3064), - [anon_sym_CARET] = ACTIONS(3064), - [anon_sym_AMP] = ACTIONS(3074), - [anon_sym_LT_DASH] = ACTIONS(3076), - [sym_none] = ACTIONS(1456), - [sym_true] = ACTIONS(1456), - [sym_false] = ACTIONS(1456), - [sym_nil] = ACTIONS(1456), - [anon_sym_if] = ACTIONS(1827), - [anon_sym_DOLLARif] = ACTIONS(1460), - [anon_sym_match] = ACTIONS(1462), - [anon_sym_select] = ACTIONS(3078), - [anon_sym_lock] = ACTIONS(3080), - [anon_sym_rlock] = ACTIONS(3080), - [anon_sym_unsafe] = ACTIONS(1833), - [anon_sym_sql] = ACTIONS(1470), - [sym_int_literal] = ACTIONS(1456), - [sym_float_literal] = ACTIONS(1472), - [sym_rune_literal] = ACTIONS(1472), - [sym_pseudo_compile_time_identifier] = ACTIONS(1474), + [anon_sym_BANG] = ACTIONS(3356), + [anon_sym_go] = ACTIONS(2277), + [anon_sym_spawn] = ACTIONS(2279), + [anon_sym_json_DOTdecode] = ACTIONS(1450), + [anon_sym_LBRACK2] = ACTIONS(1452), + [anon_sym_TILDE] = ACTIONS(2271), + [anon_sym_CARET] = ACTIONS(2271), + [anon_sym_AMP] = ACTIONS(3358), + [anon_sym_LT_DASH] = ACTIONS(2283), + [sym_none] = ACTIONS(1458), + [sym_true] = ACTIONS(1458), + [sym_false] = ACTIONS(1458), + [sym_nil] = ACTIONS(1458), + [anon_sym_if] = ACTIONS(1833), + [anon_sym_DOLLARif] = ACTIONS(1462), + [anon_sym_match] = ACTIONS(1464), + [anon_sym_select] = ACTIONS(1466), + [anon_sym_lock] = ACTIONS(1468), + [anon_sym_rlock] = ACTIONS(1468), + [anon_sym_unsafe] = ACTIONS(1839), + [anon_sym_sql] = ACTIONS(1472), + [sym_int_literal] = ACTIONS(1458), + [sym_float_literal] = ACTIONS(1474), + [sym_rune_literal] = ACTIONS(1474), + [sym_pseudo_compile_time_identifier] = ACTIONS(1476), [anon_sym_shared] = ACTIONS(83), [anon_sym_map_LBRACK] = ACTIONS(85), [anon_sym_chan] = ACTIONS(87), [anon_sym_thread] = ACTIONS(89), [anon_sym_atomic] = ACTIONS(91), - [sym___double_quote] = ACTIONS(1478), - [sym___single_quote] = ACTIONS(1480), - [sym___c_double_quote] = ACTIONS(1482), - [sym___c_single_quote] = ACTIONS(1484), - [sym___r_double_quote] = ACTIONS(1486), - [sym___r_single_quote] = ACTIONS(1488), + [sym___double_quote] = ACTIONS(1480), + [sym___single_quote] = ACTIONS(1482), + [sym___c_double_quote] = ACTIONS(1484), + [sym___c_single_quote] = ACTIONS(1486), + [sym___r_double_quote] = ACTIONS(1488), + [sym___r_single_quote] = ACTIONS(1490), }, [753] = { [sym_line_comment] = STATE(753), [sym_block_comment] = STATE(753), - [sym__expression] = STATE(1764), - [sym__expression_without_blocks] = STATE(2044), - [sym__expression_with_blocks] = STATE(2044), - [sym_inc_expression] = STATE(2045), - [sym_dec_expression] = STATE(2045), - [sym_or_block_expression] = STATE(2045), - [sym_option_propagation_expression] = STATE(2045), - [sym_result_propagation_expression] = STATE(2045), - [sym_anon_struct_value_expression] = STATE(2046), - [sym_go_expression] = STATE(2045), - [sym_spawn_expression] = STATE(2045), - [sym_parenthesized_expression] = STATE(2045), - [sym_call_expression] = STATE(2045), - [sym_type_initializer] = STATE(2046), - [sym_function_literal] = STATE(2045), - [sym_reference_expression] = STATE(1912), - [sym_type_reference_expression] = STATE(3541), - [sym_unary_expression] = STATE(2045), - [sym_receive_expression] = STATE(2045), - [sym_binary_expression] = STATE(2045), - [sym_as_type_cast_expression] = STATE(2045), - [sym__max_group] = STATE(2045), - [sym_literal] = STATE(2043), - [sym_map_init_expression] = STATE(2046), - [sym_array_creation] = STATE(2045), - [sym_fixed_array_creation] = STATE(2045), - [sym_selector_expression] = STATE(2045), - [sym_index_expression] = STATE(2045), - [sym_slice_expression] = STATE(2045), - [sym_if_expression] = STATE(2046), - [sym_compile_time_if_expression] = STATE(2046), - [sym_is_expression] = STATE(2045), - [sym_in_expression] = STATE(2045), - [sym_enum_fetch] = STATE(2045), - [sym_match_expression] = STATE(2046), - [sym_select_expression] = STATE(2046), - [sym_lock_expression] = STATE(2046), - [sym_unsafe_expression] = STATE(2046), - [sym_sql_expression] = STATE(2046), - [sym_c_string_literal] = STATE(2041), - [sym_raw_string_literal] = STATE(2041), - [sym_interpreted_string_literal] = STATE(2041), - [sym_mutability_modifiers] = STATE(689), - [sym_plain_type] = STATE(4074), - [sym__plain_type_without_special] = STATE(2302), - [sym_anon_struct_type] = STATE(2303), - [sym_multi_return_type] = STATE(2302), - [sym_result_type] = STATE(2302), - [sym_option_type] = STATE(2302), - [sym_qualified_type] = STATE(3541), - [sym_fixed_array_type] = STATE(2303), - [sym_array_type] = STATE(2303), - [sym_pointer_type] = STATE(2303), - [sym_wrong_pointer_type] = STATE(2303), - [sym_map_type] = STATE(2303), - [sym_channel_type] = STATE(2303), - [sym_shared_type] = STATE(2303), - [sym_thread_type] = STATE(2303), - [sym_atomic_type] = STATE(2303), - [sym_generic_type] = STATE(2303), - [sym_function_type] = STATE(2303), - [sym_identifier] = ACTIONS(1641), + [sym__expression] = STATE(2830), + [sym__expression_without_blocks] = STATE(2347), + [sym__expression_with_blocks] = STATE(2347), + [sym_inc_expression] = STATE(2379), + [sym_dec_expression] = STATE(2379), + [sym_or_block_expression] = STATE(2379), + [sym_option_propagation_expression] = STATE(2379), + [sym_result_propagation_expression] = STATE(2379), + [sym_anon_struct_value_expression] = STATE(2378), + [sym_go_expression] = STATE(2379), + [sym_spawn_expression] = STATE(2379), + [sym_parenthesized_expression] = STATE(2379), + [sym_call_expression] = STATE(2379), + [sym_type_initializer] = STATE(2378), + [sym_function_literal] = STATE(2379), + [sym_reference_expression] = STATE(2957), + [sym_type_reference_expression] = STATE(3460), + [sym_unary_expression] = STATE(2379), + [sym_receive_expression] = STATE(2379), + [sym_binary_expression] = STATE(2379), + [sym_as_type_cast_expression] = STATE(2379), + [sym__max_group] = STATE(2379), + [sym_literal] = STATE(2392), + [sym_map_init_expression] = STATE(2378), + [sym_array_creation] = STATE(2379), + [sym_fixed_array_creation] = STATE(2379), + [sym_selector_expression] = STATE(2956), + [sym_index_expression] = STATE(2379), + [sym_slice_expression] = STATE(2379), + [sym_if_expression] = STATE(2378), + [sym_compile_time_if_expression] = STATE(2378), + [sym_is_expression] = STATE(2379), + [sym_in_expression] = STATE(2379), + [sym_enum_fetch] = STATE(2379), + [sym_match_expression] = STATE(2378), + [sym_select_expression] = STATE(2378), + [sym_lock_expression] = STATE(2378), + [sym_unsafe_expression] = STATE(2378), + [sym_sql_expression] = STATE(2378), + [sym_c_string_literal] = STATE(2401), + [sym_raw_string_literal] = STATE(2401), + [sym_interpreted_string_literal] = STATE(2401), + [sym_mutability_modifiers] = STATE(939), + [sym_plain_type] = STATE(4160), + [sym__plain_type_without_special] = STATE(2360), + [sym_anon_struct_type] = STATE(2362), + [sym_multi_return_type] = STATE(2360), + [sym_result_type] = STATE(2360), + [sym_option_type] = STATE(2360), + [sym_qualified_type] = STATE(3460), + [sym_fixed_array_type] = STATE(2362), + [sym_array_type] = STATE(2362), + [sym_pointer_type] = STATE(2362), + [sym_wrong_pointer_type] = STATE(2362), + [sym_map_type] = STATE(2362), + [sym_channel_type] = STATE(2362), + [sym_shared_type] = STATE(2362), + [sym_thread_type] = STATE(2362), + [sym_atomic_type] = STATE(2362), + [sym_generic_type] = STATE(2362), + [sym_function_type] = STATE(2362), + [sym_identifier] = ACTIONS(2477), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(811), - [anon_sym_LBRACE] = ACTIONS(3144), - [anon_sym_LPAREN] = ACTIONS(815), - [anon_sym_fn] = ACTIONS(817), - [anon_sym_PLUS] = ACTIONS(819), - [anon_sym_DASH] = ACTIONS(819), - [anon_sym_STAR] = ACTIONS(821), - [anon_sym_struct] = ACTIONS(823), + [anon_sym_DOT] = ACTIONS(1430), + [anon_sym_LBRACE] = ACTIONS(1432), + [anon_sym_LPAREN] = ACTIONS(1434), + [anon_sym_fn] = ACTIONS(1436), + [anon_sym_PLUS] = ACTIONS(1438), + [anon_sym_DASH] = ACTIONS(1438), + [anon_sym_STAR] = ACTIONS(1440), + [anon_sym_struct] = ACTIONS(1442), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(827), - [anon_sym_go] = ACTIONS(829), - [anon_sym_spawn] = ACTIONS(831), - [anon_sym_json_DOTdecode] = ACTIONS(833), - [anon_sym_LBRACK2] = ACTIONS(835), - [anon_sym_TILDE] = ACTIONS(819), - [anon_sym_CARET] = ACTIONS(819), - [anon_sym_AMP] = ACTIONS(837), - [anon_sym_LT_DASH] = ACTIONS(839), - [sym_none] = ACTIONS(841), - [sym_true] = ACTIONS(841), - [sym_false] = ACTIONS(841), - [sym_nil] = ACTIONS(841), - [anon_sym_if] = ACTIONS(843), - [anon_sym_DOLLARif] = ACTIONS(845), - [anon_sym_match] = ACTIONS(847), - [anon_sym_select] = ACTIONS(849), - [anon_sym_lock] = ACTIONS(851), - [anon_sym_rlock] = ACTIONS(851), - [anon_sym_unsafe] = ACTIONS(853), - [anon_sym_sql] = ACTIONS(855), - [sym_int_literal] = ACTIONS(841), - [sym_float_literal] = ACTIONS(857), - [sym_rune_literal] = ACTIONS(857), - [sym_pseudo_compile_time_identifier] = ACTIONS(859), + [anon_sym_BANG] = ACTIONS(1444), + [anon_sym_go] = ACTIONS(1446), + [anon_sym_spawn] = ACTIONS(1448), + [anon_sym_json_DOTdecode] = ACTIONS(1450), + [anon_sym_LBRACK2] = ACTIONS(1452), + [anon_sym_TILDE] = ACTIONS(1438), + [anon_sym_CARET] = ACTIONS(1438), + [anon_sym_AMP] = ACTIONS(1454), + [anon_sym_LT_DASH] = ACTIONS(1456), + [sym_none] = ACTIONS(1458), + [sym_true] = ACTIONS(1458), + [sym_false] = ACTIONS(1458), + [sym_nil] = ACTIONS(1458), + [anon_sym_if] = ACTIONS(1833), + [anon_sym_DOLLARif] = ACTIONS(1462), + [anon_sym_match] = ACTIONS(1464), + [anon_sym_select] = ACTIONS(1466), + [anon_sym_lock] = ACTIONS(1468), + [anon_sym_rlock] = ACTIONS(1468), + [anon_sym_unsafe] = ACTIONS(1839), + [anon_sym_sql] = ACTIONS(1472), + [sym_int_literal] = ACTIONS(1458), + [sym_float_literal] = ACTIONS(1474), + [sym_rune_literal] = ACTIONS(1474), + [sym_pseudo_compile_time_identifier] = ACTIONS(1476), [anon_sym_shared] = ACTIONS(83), [anon_sym_map_LBRACK] = ACTIONS(85), [anon_sym_chan] = ACTIONS(87), [anon_sym_thread] = ACTIONS(89), [anon_sym_atomic] = ACTIONS(91), - [sym___double_quote] = ACTIONS(861), - [sym___single_quote] = ACTIONS(863), - [sym___c_double_quote] = ACTIONS(865), - [sym___c_single_quote] = ACTIONS(867), - [sym___r_double_quote] = ACTIONS(869), - [sym___r_single_quote] = ACTIONS(871), + [sym___double_quote] = ACTIONS(1480), + [sym___single_quote] = ACTIONS(1482), + [sym___c_double_quote] = ACTIONS(1484), + [sym___c_single_quote] = ACTIONS(1486), + [sym___r_double_quote] = ACTIONS(1488), + [sym___r_single_quote] = ACTIONS(1490), }, [754] = { [sym_line_comment] = STATE(754), [sym_block_comment] = STATE(754), - [sym__expression] = STATE(2263), - [sym__expression_without_blocks] = STATE(2300), - [sym__expression_with_blocks] = STATE(2300), - [sym_inc_expression] = STATE(2307), - [sym_dec_expression] = STATE(2307), - [sym_or_block_expression] = STATE(2307), - [sym_option_propagation_expression] = STATE(2307), - [sym_result_propagation_expression] = STATE(2307), - [sym_anon_struct_value_expression] = STATE(2380), - [sym_go_expression] = STATE(2307), - [sym_spawn_expression] = STATE(2307), - [sym_parenthesized_expression] = STATE(2307), - [sym_call_expression] = STATE(2307), - [sym_type_initializer] = STATE(2380), - [sym_function_literal] = STATE(2307), - [sym_reference_expression] = STATE(2311), - [sym_type_reference_expression] = STATE(3541), - [sym_unary_expression] = STATE(2307), - [sym_receive_expression] = STATE(2307), - [sym_binary_expression] = STATE(2307), - [sym_as_type_cast_expression] = STATE(2307), - [sym__max_group] = STATE(2307), - [sym_literal] = STATE(2292), - [sym_map_init_expression] = STATE(2380), - [sym_array_creation] = STATE(2307), - [sym_fixed_array_creation] = STATE(2307), - [sym_selector_expression] = STATE(2307), - [sym_index_expression] = STATE(2307), - [sym_slice_expression] = STATE(2307), - [sym_if_expression] = STATE(2380), - [sym_compile_time_if_expression] = STATE(2380), - [sym_is_expression] = STATE(2307), - [sym_in_expression] = STATE(2307), - [sym_enum_fetch] = STATE(2307), - [sym_match_expression] = STATE(2380), - [sym_select_expression] = STATE(2380), - [sym_lock_expression] = STATE(2380), - [sym_unsafe_expression] = STATE(2380), - [sym_sql_expression] = STATE(2380), - [sym_c_string_literal] = STATE(2308), - [sym_raw_string_literal] = STATE(2308), - [sym_interpreted_string_literal] = STATE(2308), + [sym__expression] = STATE(2708), + [sym__expression_without_blocks] = STATE(2347), + [sym__expression_with_blocks] = STATE(2347), + [sym_inc_expression] = STATE(2379), + [sym_dec_expression] = STATE(2379), + [sym_or_block_expression] = STATE(2379), + [sym_option_propagation_expression] = STATE(2379), + [sym_result_propagation_expression] = STATE(2379), + [sym_anon_struct_value_expression] = STATE(2378), + [sym_go_expression] = STATE(2379), + [sym_spawn_expression] = STATE(2379), + [sym_parenthesized_expression] = STATE(2379), + [sym_call_expression] = STATE(2379), + [sym_type_initializer] = STATE(2378), + [sym_function_literal] = STATE(2379), + [sym_reference_expression] = STATE(2377), + [sym_type_reference_expression] = STATE(3460), + [sym_unary_expression] = STATE(2379), + [sym_receive_expression] = STATE(2379), + [sym_binary_expression] = STATE(2379), + [sym_as_type_cast_expression] = STATE(2379), + [sym__max_group] = STATE(2379), + [sym_literal] = STATE(2392), + [sym_map_init_expression] = STATE(2378), + [sym_array_creation] = STATE(2379), + [sym_fixed_array_creation] = STATE(2379), + [sym_selector_expression] = STATE(2379), + [sym_index_expression] = STATE(2379), + [sym_slice_expression] = STATE(2379), + [sym_if_expression] = STATE(2378), + [sym_compile_time_if_expression] = STATE(2378), + [sym_is_expression] = STATE(2379), + [sym_in_expression] = STATE(2379), + [sym_enum_fetch] = STATE(2379), + [sym_match_expression] = STATE(2378), + [sym_select_expression] = STATE(2378), + [sym_lock_expression] = STATE(2378), + [sym_unsafe_expression] = STATE(2378), + [sym_sql_expression] = STATE(2378), + [sym_c_string_literal] = STATE(2401), + [sym_raw_string_literal] = STATE(2401), + [sym_interpreted_string_literal] = STATE(2401), [sym_mutability_modifiers] = STATE(939), - [sym_plain_type] = STATE(3566), - [sym__plain_type_without_special] = STATE(2302), - [sym_anon_struct_type] = STATE(2303), - [sym_multi_return_type] = STATE(2302), - [sym_result_type] = STATE(2302), - [sym_option_type] = STATE(2302), - [sym_qualified_type] = STATE(3541), - [sym_fixed_array_type] = STATE(2303), - [sym_array_type] = STATE(2303), - [sym_pointer_type] = STATE(2303), - [sym_wrong_pointer_type] = STATE(2303), - [sym_map_type] = STATE(2303), - [sym_channel_type] = STATE(2303), - [sym_shared_type] = STATE(2303), - [sym_thread_type] = STATE(2303), - [sym_atomic_type] = STATE(2303), - [sym_generic_type] = STATE(2303), - [sym_function_type] = STATE(2303), - [sym_identifier] = ACTIONS(1807), + [sym_plain_type] = STATE(3564), + [sym__plain_type_without_special] = STATE(2360), + [sym_anon_struct_type] = STATE(2362), + [sym_multi_return_type] = STATE(2360), + [sym_result_type] = STATE(2360), + [sym_option_type] = STATE(2360), + [sym_qualified_type] = STATE(3460), + [sym_fixed_array_type] = STATE(2362), + [sym_array_type] = STATE(2362), + [sym_pointer_type] = STATE(2362), + [sym_wrong_pointer_type] = STATE(2362), + [sym_map_type] = STATE(2362), + [sym_channel_type] = STATE(2362), + [sym_shared_type] = STATE(2362), + [sym_thread_type] = STATE(2362), + [sym_atomic_type] = STATE(2362), + [sym_generic_type] = STATE(2362), + [sym_function_type] = STATE(2362), + [sym_identifier] = ACTIONS(1428), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1428), - [anon_sym_LBRACE] = ACTIONS(1430), - [anon_sym_LPAREN] = ACTIONS(1432), - [anon_sym_fn] = ACTIONS(1434), - [anon_sym_PLUS] = ACTIONS(3064), - [anon_sym_DASH] = ACTIONS(3064), - [anon_sym_STAR] = ACTIONS(3066), - [anon_sym_struct] = ACTIONS(1440), + [anon_sym_DOT] = ACTIONS(1430), + [anon_sym_LBRACE] = ACTIONS(1432), + [anon_sym_LPAREN] = ACTIONS(1434), + [anon_sym_fn] = ACTIONS(1436), + [anon_sym_PLUS] = ACTIONS(2271), + [anon_sym_DASH] = ACTIONS(2271), + [anon_sym_STAR] = ACTIONS(2273), + [anon_sym_struct] = ACTIONS(1442), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(3068), - [anon_sym_go] = ACTIONS(3070), - [anon_sym_spawn] = ACTIONS(3072), - [anon_sym_json_DOTdecode] = ACTIONS(1448), - [anon_sym_LBRACK2] = ACTIONS(1821), - [anon_sym_TILDE] = ACTIONS(3064), - [anon_sym_CARET] = ACTIONS(3064), - [anon_sym_AMP] = ACTIONS(3074), - [anon_sym_LT_DASH] = ACTIONS(3076), - [sym_none] = ACTIONS(1456), - [sym_true] = ACTIONS(1456), - [sym_false] = ACTIONS(1456), - [sym_nil] = ACTIONS(1456), - [anon_sym_if] = ACTIONS(1827), - [anon_sym_DOLLARif] = ACTIONS(1460), - [anon_sym_match] = ACTIONS(1462), - [anon_sym_select] = ACTIONS(3078), - [anon_sym_lock] = ACTIONS(3080), - [anon_sym_rlock] = ACTIONS(3080), - [anon_sym_unsafe] = ACTIONS(1833), - [anon_sym_sql] = ACTIONS(1470), - [sym_int_literal] = ACTIONS(1456), - [sym_float_literal] = ACTIONS(1472), - [sym_rune_literal] = ACTIONS(1472), - [sym_pseudo_compile_time_identifier] = ACTIONS(1474), + [anon_sym_BANG] = ACTIONS(2275), + [anon_sym_go] = ACTIONS(2277), + [anon_sym_spawn] = ACTIONS(2279), + [anon_sym_json_DOTdecode] = ACTIONS(1450), + [anon_sym_LBRACK2] = ACTIONS(1452), + [anon_sym_TILDE] = ACTIONS(2271), + [anon_sym_CARET] = ACTIONS(2271), + [anon_sym_AMP] = ACTIONS(2281), + [anon_sym_LT_DASH] = ACTIONS(2283), + [sym_none] = ACTIONS(1458), + [sym_true] = ACTIONS(1458), + [sym_false] = ACTIONS(1458), + [sym_nil] = ACTIONS(1458), + [anon_sym_if] = ACTIONS(1833), + [anon_sym_DOLLARif] = ACTIONS(1462), + [anon_sym_match] = ACTIONS(1464), + [anon_sym_select] = ACTIONS(1466), + [anon_sym_lock] = ACTIONS(1468), + [anon_sym_rlock] = ACTIONS(1468), + [anon_sym_unsafe] = ACTIONS(1839), + [anon_sym_sql] = ACTIONS(1472), + [sym_int_literal] = ACTIONS(1458), + [sym_float_literal] = ACTIONS(1474), + [sym_rune_literal] = ACTIONS(1474), + [sym_pseudo_compile_time_identifier] = ACTIONS(1476), [anon_sym_shared] = ACTIONS(83), [anon_sym_map_LBRACK] = ACTIONS(85), [anon_sym_chan] = ACTIONS(87), [anon_sym_thread] = ACTIONS(89), [anon_sym_atomic] = ACTIONS(91), - [sym___double_quote] = ACTIONS(1478), - [sym___single_quote] = ACTIONS(1480), - [sym___c_double_quote] = ACTIONS(1482), - [sym___c_single_quote] = ACTIONS(1484), - [sym___r_double_quote] = ACTIONS(1486), - [sym___r_single_quote] = ACTIONS(1488), + [sym___double_quote] = ACTIONS(1480), + [sym___single_quote] = ACTIONS(1482), + [sym___c_double_quote] = ACTIONS(1484), + [sym___c_single_quote] = ACTIONS(1486), + [sym___r_double_quote] = ACTIONS(1488), + [sym___r_single_quote] = ACTIONS(1490), }, [755] = { [sym_line_comment] = STATE(755), [sym_block_comment] = STATE(755), - [sym__expression] = STATE(1616), - [sym__expression_without_blocks] = STATE(1692), - [sym__expression_with_blocks] = STATE(1692), - [sym_inc_expression] = STATE(1684), - [sym_dec_expression] = STATE(1684), - [sym_or_block_expression] = STATE(1684), - [sym_option_propagation_expression] = STATE(1684), - [sym_result_propagation_expression] = STATE(1684), - [sym_anon_struct_value_expression] = STATE(1677), - [sym_go_expression] = STATE(1684), - [sym_spawn_expression] = STATE(1684), - [sym_parenthesized_expression] = STATE(1684), - [sym_call_expression] = STATE(1684), - [sym_type_initializer] = STATE(1677), - [sym_function_literal] = STATE(1684), - [sym_reference_expression] = STATE(1674), - [sym_type_reference_expression] = STATE(3541), - [sym_unary_expression] = STATE(1684), - [sym_receive_expression] = STATE(1684), - [sym_binary_expression] = STATE(1684), - [sym_as_type_cast_expression] = STATE(1684), - [sym__max_group] = STATE(1684), - [sym_literal] = STATE(1698), - [sym_map_init_expression] = STATE(1677), - [sym_array_creation] = STATE(1684), - [sym_fixed_array_creation] = STATE(1684), - [sym_selector_expression] = STATE(1684), - [sym_index_expression] = STATE(1684), - [sym_slice_expression] = STATE(1684), - [sym_if_expression] = STATE(1677), - [sym_compile_time_if_expression] = STATE(1677), - [sym_is_expression] = STATE(1684), - [sym_in_expression] = STATE(1684), - [sym_enum_fetch] = STATE(1684), - [sym_match_expression] = STATE(1677), - [sym_select_expression] = STATE(1677), - [sym_lock_expression] = STATE(1677), - [sym_unsafe_expression] = STATE(1677), - [sym_sql_expression] = STATE(1677), - [sym_c_string_literal] = STATE(1705), - [sym_raw_string_literal] = STATE(1705), - [sym_interpreted_string_literal] = STATE(1705), - [sym_mutability_modifiers] = STATE(664), - [sym_plain_type] = STATE(4157), - [sym__plain_type_without_special] = STATE(2302), - [sym_anon_struct_type] = STATE(2303), - [sym_multi_return_type] = STATE(2302), - [sym_result_type] = STATE(2302), - [sym_option_type] = STATE(2302), - [sym_qualified_type] = STATE(3541), - [sym_fixed_array_type] = STATE(2303), - [sym_array_type] = STATE(2303), - [sym_pointer_type] = STATE(2303), - [sym_wrong_pointer_type] = STATE(2303), - [sym_map_type] = STATE(2303), - [sym_channel_type] = STATE(2303), - [sym_shared_type] = STATE(2303), - [sym_thread_type] = STATE(2303), - [sym_atomic_type] = STATE(2303), - [sym_generic_type] = STATE(2303), - [sym_function_type] = STATE(2303), - [sym_identifier] = ACTIONS(3416), + [sym__expression] = STATE(2261), + [sym__expression_without_blocks] = STATE(2347), + [sym__expression_with_blocks] = STATE(2347), + [sym_inc_expression] = STATE(2379), + [sym_dec_expression] = STATE(2379), + [sym_or_block_expression] = STATE(2379), + [sym_option_propagation_expression] = STATE(2379), + [sym_result_propagation_expression] = STATE(2379), + [sym_anon_struct_value_expression] = STATE(2378), + [sym_go_expression] = STATE(2379), + [sym_spawn_expression] = STATE(2379), + [sym_parenthesized_expression] = STATE(2379), + [sym_call_expression] = STATE(2379), + [sym_type_initializer] = STATE(2378), + [sym_function_literal] = STATE(2379), + [sym_reference_expression] = STATE(2377), + [sym_type_reference_expression] = STATE(3460), + [sym_unary_expression] = STATE(2379), + [sym_receive_expression] = STATE(2379), + [sym_binary_expression] = STATE(2379), + [sym_as_type_cast_expression] = STATE(2379), + [sym__max_group] = STATE(2379), + [sym_literal] = STATE(2392), + [sym_map_init_expression] = STATE(2378), + [sym_array_creation] = STATE(2379), + [sym_fixed_array_creation] = STATE(2379), + [sym_selector_expression] = STATE(2379), + [sym_index_expression] = STATE(2379), + [sym_slice_expression] = STATE(2379), + [sym_if_expression] = STATE(2378), + [sym_compile_time_if_expression] = STATE(2378), + [sym_is_expression] = STATE(2379), + [sym_in_expression] = STATE(2379), + [sym_enum_fetch] = STATE(2379), + [sym_match_expression] = STATE(2378), + [sym_select_expression] = STATE(2378), + [sym_lock_expression] = STATE(2378), + [sym_unsafe_expression] = STATE(2378), + [sym_sql_expression] = STATE(2378), + [sym_c_string_literal] = STATE(2401), + [sym_raw_string_literal] = STATE(2401), + [sym_interpreted_string_literal] = STATE(2401), + [sym_mutability_modifiers] = STATE(939), + [sym_plain_type] = STATE(4160), + [sym__plain_type_without_special] = STATE(2360), + [sym_anon_struct_type] = STATE(2362), + [sym_multi_return_type] = STATE(2360), + [sym_result_type] = STATE(2360), + [sym_option_type] = STATE(2360), + [sym_qualified_type] = STATE(3460), + [sym_fixed_array_type] = STATE(2362), + [sym_array_type] = STATE(2362), + [sym_pointer_type] = STATE(2362), + [sym_wrong_pointer_type] = STATE(2362), + [sym_map_type] = STATE(2362), + [sym_channel_type] = STATE(2362), + [sym_shared_type] = STATE(2362), + [sym_thread_type] = STATE(2362), + [sym_atomic_type] = STATE(2362), + [sym_generic_type] = STATE(2362), + [sym_function_type] = STATE(2362), + [sym_identifier] = ACTIONS(1815), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(309), - [anon_sym_LBRACE] = ACTIONS(3418), - [anon_sym_LPAREN] = ACTIONS(315), - [anon_sym_fn] = ACTIONS(317), - [anon_sym_PLUS] = ACTIONS(319), - [anon_sym_DASH] = ACTIONS(319), - [anon_sym_STAR] = ACTIONS(321), - [anon_sym_struct] = ACTIONS(323), + [anon_sym_DOT] = ACTIONS(1430), + [anon_sym_LBRACE] = ACTIONS(1432), + [anon_sym_LPAREN] = ACTIONS(1434), + [anon_sym_fn] = ACTIONS(1436), + [anon_sym_PLUS] = ACTIONS(3090), + [anon_sym_DASH] = ACTIONS(3090), + [anon_sym_STAR] = ACTIONS(3092), + [anon_sym_struct] = ACTIONS(1442), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(325), - [anon_sym_go] = ACTIONS(327), - [anon_sym_spawn] = ACTIONS(329), - [anon_sym_json_DOTdecode] = ACTIONS(331), - [anon_sym_LBRACK2] = ACTIONS(333), - [anon_sym_TILDE] = ACTIONS(319), - [anon_sym_CARET] = ACTIONS(319), - [anon_sym_AMP] = ACTIONS(335), - [anon_sym_LT_DASH] = ACTIONS(337), - [sym_none] = ACTIONS(339), - [sym_true] = ACTIONS(339), - [sym_false] = ACTIONS(339), - [sym_nil] = ACTIONS(339), - [anon_sym_if] = ACTIONS(341), - [anon_sym_DOLLARif] = ACTIONS(343), - [anon_sym_match] = ACTIONS(345), - [anon_sym_select] = ACTIONS(347), - [anon_sym_lock] = ACTIONS(349), - [anon_sym_rlock] = ACTIONS(349), - [anon_sym_unsafe] = ACTIONS(351), - [anon_sym_sql] = ACTIONS(353), - [sym_int_literal] = ACTIONS(339), - [sym_float_literal] = ACTIONS(355), - [sym_rune_literal] = ACTIONS(355), - [sym_pseudo_compile_time_identifier] = ACTIONS(357), + [anon_sym_BANG] = ACTIONS(3094), + [anon_sym_go] = ACTIONS(3096), + [anon_sym_spawn] = ACTIONS(3098), + [anon_sym_json_DOTdecode] = ACTIONS(1450), + [anon_sym_LBRACK2] = ACTIONS(1827), + [anon_sym_TILDE] = ACTIONS(3090), + [anon_sym_CARET] = ACTIONS(3090), + [anon_sym_AMP] = ACTIONS(3100), + [anon_sym_LT_DASH] = ACTIONS(3102), + [sym_none] = ACTIONS(1458), + [sym_true] = ACTIONS(1458), + [sym_false] = ACTIONS(1458), + [sym_nil] = ACTIONS(1458), + [anon_sym_if] = ACTIONS(1833), + [anon_sym_DOLLARif] = ACTIONS(1462), + [anon_sym_match] = ACTIONS(1464), + [anon_sym_select] = ACTIONS(3104), + [anon_sym_lock] = ACTIONS(3106), + [anon_sym_rlock] = ACTIONS(3106), + [anon_sym_unsafe] = ACTIONS(1839), + [anon_sym_sql] = ACTIONS(1472), + [sym_int_literal] = ACTIONS(1458), + [sym_float_literal] = ACTIONS(1474), + [sym_rune_literal] = ACTIONS(1474), + [sym_pseudo_compile_time_identifier] = ACTIONS(1476), [anon_sym_shared] = ACTIONS(83), [anon_sym_map_LBRACK] = ACTIONS(85), [anon_sym_chan] = ACTIONS(87), [anon_sym_thread] = ACTIONS(89), [anon_sym_atomic] = ACTIONS(91), - [sym___double_quote] = ACTIONS(379), - [sym___single_quote] = ACTIONS(381), - [sym___c_double_quote] = ACTIONS(383), - [sym___c_single_quote] = ACTIONS(385), - [sym___r_double_quote] = ACTIONS(387), - [sym___r_single_quote] = ACTIONS(389), + [sym___double_quote] = ACTIONS(1480), + [sym___single_quote] = ACTIONS(1482), + [sym___c_double_quote] = ACTIONS(1484), + [sym___c_single_quote] = ACTIONS(1486), + [sym___r_double_quote] = ACTIONS(1488), + [sym___r_single_quote] = ACTIONS(1490), }, [756] = { [sym_line_comment] = STATE(756), [sym_block_comment] = STATE(756), - [sym__expression] = STATE(2334), - [sym__expression_without_blocks] = STATE(2489), - [sym__expression_with_blocks] = STATE(2489), - [sym_inc_expression] = STATE(2479), - [sym_dec_expression] = STATE(2479), - [sym_or_block_expression] = STATE(2479), - [sym_option_propagation_expression] = STATE(2479), - [sym_result_propagation_expression] = STATE(2479), - [sym_anon_struct_value_expression] = STATE(2491), - [sym_go_expression] = STATE(2479), - [sym_spawn_expression] = STATE(2479), - [sym_parenthesized_expression] = STATE(2479), - [sym_call_expression] = STATE(2479), - [sym_type_initializer] = STATE(2491), - [sym_function_literal] = STATE(2479), - [sym_reference_expression] = STATE(2542), - [sym_type_reference_expression] = STATE(3541), - [sym_unary_expression] = STATE(2479), - [sym_receive_expression] = STATE(2479), - [sym_binary_expression] = STATE(2479), - [sym_as_type_cast_expression] = STATE(2479), - [sym__max_group] = STATE(2479), - [sym_literal] = STATE(2454), - [sym_map_init_expression] = STATE(2491), - [sym_array_creation] = STATE(2479), - [sym_fixed_array_creation] = STATE(2479), - [sym_selector_expression] = STATE(2479), - [sym_index_expression] = STATE(2479), - [sym_slice_expression] = STATE(2479), - [sym_if_expression] = STATE(2491), - [sym_compile_time_if_expression] = STATE(2491), - [sym_is_expression] = STATE(2479), - [sym_in_expression] = STATE(2479), - [sym_enum_fetch] = STATE(2479), - [sym_match_expression] = STATE(2491), - [sym_select_expression] = STATE(2491), - [sym_lock_expression] = STATE(2491), - [sym_unsafe_expression] = STATE(2491), - [sym_sql_expression] = STATE(2491), - [sym_c_string_literal] = STATE(2469), - [sym_raw_string_literal] = STATE(2469), - [sym_interpreted_string_literal] = STATE(2469), - [sym_mutability_modifiers] = STATE(640), - [sym_plain_type] = STATE(4255), - [sym__plain_type_without_special] = STATE(2302), - [sym_anon_struct_type] = STATE(2303), - [sym_multi_return_type] = STATE(2302), - [sym_result_type] = STATE(2302), - [sym_option_type] = STATE(2302), - [sym_qualified_type] = STATE(3541), - [sym_fixed_array_type] = STATE(2303), - [sym_array_type] = STATE(2303), - [sym_pointer_type] = STATE(2303), - [sym_wrong_pointer_type] = STATE(2303), - [sym_map_type] = STATE(2303), - [sym_channel_type] = STATE(2303), - [sym_shared_type] = STATE(2303), - [sym_thread_type] = STATE(2303), - [sym_atomic_type] = STATE(2303), - [sym_generic_type] = STATE(2303), - [sym_function_type] = STATE(2303), - [sym_identifier] = ACTIONS(1695), + [sym__expression] = STATE(2613), + [sym__expression_without_blocks] = STATE(2347), + [sym__expression_with_blocks] = STATE(2347), + [sym_inc_expression] = STATE(2379), + [sym_dec_expression] = STATE(2379), + [sym_or_block_expression] = STATE(2379), + [sym_option_propagation_expression] = STATE(2379), + [sym_result_propagation_expression] = STATE(2379), + [sym_anon_struct_value_expression] = STATE(2378), + [sym_go_expression] = STATE(2379), + [sym_spawn_expression] = STATE(2379), + [sym_parenthesized_expression] = STATE(2379), + [sym_call_expression] = STATE(2379), + [sym_type_initializer] = STATE(2378), + [sym_function_literal] = STATE(2379), + [sym_reference_expression] = STATE(2377), + [sym_type_reference_expression] = STATE(3460), + [sym_unary_expression] = STATE(2379), + [sym_receive_expression] = STATE(2379), + [sym_binary_expression] = STATE(2379), + [sym_as_type_cast_expression] = STATE(2379), + [sym__max_group] = STATE(2379), + [sym_literal] = STATE(2392), + [sym_map_init_expression] = STATE(2378), + [sym_array_creation] = STATE(2379), + [sym_fixed_array_creation] = STATE(2379), + [sym_selector_expression] = STATE(2379), + [sym_index_expression] = STATE(2379), + [sym_slice_expression] = STATE(2379), + [sym_if_expression] = STATE(2378), + [sym_compile_time_if_expression] = STATE(2378), + [sym_is_expression] = STATE(2379), + [sym_in_expression] = STATE(2379), + [sym_enum_fetch] = STATE(2379), + [sym_match_expression] = STATE(2378), + [sym_select_expression] = STATE(2378), + [sym_lock_expression] = STATE(2378), + [sym_unsafe_expression] = STATE(2378), + [sym_sql_expression] = STATE(2378), + [sym_c_string_literal] = STATE(2401), + [sym_raw_string_literal] = STATE(2401), + [sym_interpreted_string_literal] = STATE(2401), + [sym_mutability_modifiers] = STATE(939), + [sym_plain_type] = STATE(4160), + [sym__plain_type_without_special] = STATE(2360), + [sym_anon_struct_type] = STATE(2362), + [sym_multi_return_type] = STATE(2360), + [sym_result_type] = STATE(2360), + [sym_option_type] = STATE(2360), + [sym_qualified_type] = STATE(3460), + [sym_fixed_array_type] = STATE(2362), + [sym_array_type] = STATE(2362), + [sym_pointer_type] = STATE(2362), + [sym_wrong_pointer_type] = STATE(2362), + [sym_map_type] = STATE(2362), + [sym_channel_type] = STATE(2362), + [sym_shared_type] = STATE(2362), + [sym_thread_type] = STATE(2362), + [sym_atomic_type] = STATE(2362), + [sym_generic_type] = STATE(2362), + [sym_function_type] = STATE(2362), + [sym_identifier] = ACTIONS(1815), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1697), - [anon_sym_LBRACE] = ACTIONS(2697), - [anon_sym_LPAREN] = ACTIONS(2699), - [anon_sym_fn] = ACTIONS(1703), - [anon_sym_PLUS] = ACTIONS(2701), - [anon_sym_DASH] = ACTIONS(2701), - [anon_sym_STAR] = ACTIONS(2703), - [anon_sym_struct] = ACTIONS(1709), + [anon_sym_DOT] = ACTIONS(1430), + [anon_sym_LBRACE] = ACTIONS(1432), + [anon_sym_LPAREN] = ACTIONS(1434), + [anon_sym_fn] = ACTIONS(1436), + [anon_sym_PLUS] = ACTIONS(3090), + [anon_sym_DASH] = ACTIONS(3090), + [anon_sym_STAR] = ACTIONS(3092), + [anon_sym_struct] = ACTIONS(1442), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(2705), - [anon_sym_go] = ACTIONS(1713), - [anon_sym_spawn] = ACTIONS(1715), - [anon_sym_json_DOTdecode] = ACTIONS(2707), - [anon_sym_LBRACK2] = ACTIONS(2709), - [anon_sym_TILDE] = ACTIONS(2701), - [anon_sym_CARET] = ACTIONS(2701), - [anon_sym_AMP] = ACTIONS(2711), - [anon_sym_LT_DASH] = ACTIONS(2713), - [sym_none] = ACTIONS(1725), - [sym_true] = ACTIONS(1725), - [sym_false] = ACTIONS(1725), - [sym_nil] = ACTIONS(1725), - [anon_sym_if] = ACTIONS(1727), - [anon_sym_DOLLARif] = ACTIONS(1729), - [anon_sym_match] = ACTIONS(1731), - [anon_sym_select] = ACTIONS(1733), - [anon_sym_lock] = ACTIONS(1735), - [anon_sym_rlock] = ACTIONS(1735), - [anon_sym_unsafe] = ACTIONS(1737), - [anon_sym_sql] = ACTIONS(1739), - [sym_int_literal] = ACTIONS(1725), - [sym_float_literal] = ACTIONS(2715), - [sym_rune_literal] = ACTIONS(2715), - [sym_pseudo_compile_time_identifier] = ACTIONS(1741), + [anon_sym_BANG] = ACTIONS(3094), + [anon_sym_go] = ACTIONS(3096), + [anon_sym_spawn] = ACTIONS(3098), + [anon_sym_json_DOTdecode] = ACTIONS(1450), + [anon_sym_LBRACK2] = ACTIONS(1827), + [anon_sym_TILDE] = ACTIONS(3090), + [anon_sym_CARET] = ACTIONS(3090), + [anon_sym_AMP] = ACTIONS(3100), + [anon_sym_LT_DASH] = ACTIONS(3102), + [sym_none] = ACTIONS(1458), + [sym_true] = ACTIONS(1458), + [sym_false] = ACTIONS(1458), + [sym_nil] = ACTIONS(1458), + [anon_sym_if] = ACTIONS(1833), + [anon_sym_DOLLARif] = ACTIONS(1462), + [anon_sym_match] = ACTIONS(1464), + [anon_sym_select] = ACTIONS(3104), + [anon_sym_lock] = ACTIONS(3106), + [anon_sym_rlock] = ACTIONS(3106), + [anon_sym_unsafe] = ACTIONS(1839), + [anon_sym_sql] = ACTIONS(1472), + [sym_int_literal] = ACTIONS(1458), + [sym_float_literal] = ACTIONS(1474), + [sym_rune_literal] = ACTIONS(1474), + [sym_pseudo_compile_time_identifier] = ACTIONS(1476), [anon_sym_shared] = ACTIONS(83), [anon_sym_map_LBRACK] = ACTIONS(85), [anon_sym_chan] = ACTIONS(87), [anon_sym_thread] = ACTIONS(89), [anon_sym_atomic] = ACTIONS(91), - [sym___double_quote] = ACTIONS(2717), - [sym___single_quote] = ACTIONS(2719), - [sym___c_double_quote] = ACTIONS(2721), - [sym___c_single_quote] = ACTIONS(2723), - [sym___r_double_quote] = ACTIONS(2725), - [sym___r_single_quote] = ACTIONS(2727), + [sym___double_quote] = ACTIONS(1480), + [sym___single_quote] = ACTIONS(1482), + [sym___c_double_quote] = ACTIONS(1484), + [sym___c_single_quote] = ACTIONS(1486), + [sym___r_double_quote] = ACTIONS(1488), + [sym___r_single_quote] = ACTIONS(1490), }, [757] = { [sym_line_comment] = STATE(757), [sym_block_comment] = STATE(757), - [sym__expression] = STATE(2831), - [sym__expression_without_blocks] = STATE(2300), - [sym__expression_with_blocks] = STATE(2300), - [sym_inc_expression] = STATE(2307), - [sym_dec_expression] = STATE(2307), - [sym_or_block_expression] = STATE(2307), - [sym_option_propagation_expression] = STATE(2307), - [sym_result_propagation_expression] = STATE(2307), - [sym_anon_struct_value_expression] = STATE(2380), - [sym_go_expression] = STATE(2307), - [sym_spawn_expression] = STATE(2307), - [sym_parenthesized_expression] = STATE(2307), - [sym_call_expression] = STATE(2307), - [sym_type_initializer] = STATE(2380), - [sym_function_literal] = STATE(2307), - [sym_reference_expression] = STATE(2899), - [sym_type_reference_expression] = STATE(3541), - [sym_unary_expression] = STATE(2307), - [sym_receive_expression] = STATE(2307), - [sym_binary_expression] = STATE(2307), - [sym_as_type_cast_expression] = STATE(2307), - [sym__max_group] = STATE(2307), - [sym_literal] = STATE(2292), - [sym_map_init_expression] = STATE(2380), - [sym_array_creation] = STATE(2307), - [sym_fixed_array_creation] = STATE(2307), - [sym_selector_expression] = STATE(2901), - [sym_index_expression] = STATE(2307), - [sym_slice_expression] = STATE(2307), - [sym_if_expression] = STATE(2380), - [sym_compile_time_if_expression] = STATE(2380), - [sym_is_expression] = STATE(2307), - [sym_in_expression] = STATE(2307), - [sym_enum_fetch] = STATE(2307), - [sym_match_expression] = STATE(2380), - [sym_select_expression] = STATE(2380), - [sym_lock_expression] = STATE(2380), - [sym_unsafe_expression] = STATE(2380), - [sym_sql_expression] = STATE(2380), - [sym_c_string_literal] = STATE(2308), - [sym_raw_string_literal] = STATE(2308), - [sym_interpreted_string_literal] = STATE(2308), - [sym_mutability_modifiers] = STATE(939), - [sym_plain_type] = STATE(4297), - [sym__plain_type_without_special] = STATE(2302), - [sym_anon_struct_type] = STATE(2303), - [sym_multi_return_type] = STATE(2302), - [sym_result_type] = STATE(2302), - [sym_option_type] = STATE(2302), - [sym_qualified_type] = STATE(3541), - [sym_fixed_array_type] = STATE(2303), - [sym_array_type] = STATE(2303), - [sym_pointer_type] = STATE(2303), - [sym_wrong_pointer_type] = STATE(2303), - [sym_map_type] = STATE(2303), - [sym_channel_type] = STATE(2303), - [sym_shared_type] = STATE(2303), - [sym_thread_type] = STATE(2303), - [sym_atomic_type] = STATE(2303), - [sym_generic_type] = STATE(2303), - [sym_function_type] = STATE(2303), - [sym_identifier] = ACTIONS(2189), + [sym__expression] = STATE(2413), + [sym__expression_without_blocks] = STATE(2468), + [sym__expression_with_blocks] = STATE(2468), + [sym_inc_expression] = STATE(2469), + [sym_dec_expression] = STATE(2469), + [sym_or_block_expression] = STATE(2469), + [sym_option_propagation_expression] = STATE(2469), + [sym_result_propagation_expression] = STATE(2469), + [sym_anon_struct_value_expression] = STATE(2470), + [sym_go_expression] = STATE(2469), + [sym_spawn_expression] = STATE(2469), + [sym_parenthesized_expression] = STATE(2469), + [sym_call_expression] = STATE(2469), + [sym_type_initializer] = STATE(2470), + [sym_function_literal] = STATE(2469), + [sym_reference_expression] = STATE(2487), + [sym_type_reference_expression] = STATE(3460), + [sym_unary_expression] = STATE(2469), + [sym_receive_expression] = STATE(2469), + [sym_binary_expression] = STATE(2469), + [sym_as_type_cast_expression] = STATE(2469), + [sym__max_group] = STATE(2469), + [sym_literal] = STATE(2465), + [sym_map_init_expression] = STATE(2470), + [sym_array_creation] = STATE(2469), + [sym_fixed_array_creation] = STATE(2469), + [sym_selector_expression] = STATE(2469), + [sym_index_expression] = STATE(2469), + [sym_slice_expression] = STATE(2469), + [sym_if_expression] = STATE(2470), + [sym_compile_time_if_expression] = STATE(2470), + [sym_is_expression] = STATE(2469), + [sym_in_expression] = STATE(2469), + [sym_enum_fetch] = STATE(2469), + [sym_match_expression] = STATE(2470), + [sym_select_expression] = STATE(2470), + [sym_lock_expression] = STATE(2470), + [sym_unsafe_expression] = STATE(2470), + [sym_sql_expression] = STATE(2470), + [sym_c_string_literal] = STATE(2464), + [sym_raw_string_literal] = STATE(2464), + [sym_interpreted_string_literal] = STATE(2464), + [sym_mutability_modifiers] = STATE(561), + [sym_plain_type] = STATE(4038), + [sym__plain_type_without_special] = STATE(2360), + [sym_anon_struct_type] = STATE(2362), + [sym_multi_return_type] = STATE(2360), + [sym_result_type] = STATE(2360), + [sym_option_type] = STATE(2360), + [sym_qualified_type] = STATE(3460), + [sym_fixed_array_type] = STATE(2362), + [sym_array_type] = STATE(2362), + [sym_pointer_type] = STATE(2362), + [sym_wrong_pointer_type] = STATE(2362), + [sym_map_type] = STATE(2362), + [sym_channel_type] = STATE(2362), + [sym_shared_type] = STATE(2362), + [sym_thread_type] = STATE(2362), + [sym_atomic_type] = STATE(2362), + [sym_generic_type] = STATE(2362), + [sym_function_type] = STATE(2362), + [sym_identifier] = ACTIONS(1691), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1428), - [anon_sym_LBRACE] = ACTIONS(1430), - [anon_sym_LPAREN] = ACTIONS(1432), - [anon_sym_fn] = ACTIONS(1434), - [anon_sym_PLUS] = ACTIONS(1436), - [anon_sym_DASH] = ACTIONS(1436), - [anon_sym_STAR] = ACTIONS(1438), - [anon_sym_struct] = ACTIONS(1440), + [anon_sym_DOT] = ACTIONS(1693), + [anon_sym_LBRACE] = ACTIONS(2151), + [anon_sym_LPAREN] = ACTIONS(2153), + [anon_sym_fn] = ACTIONS(1699), + [anon_sym_PLUS] = ACTIONS(2155), + [anon_sym_DASH] = ACTIONS(2155), + [anon_sym_STAR] = ACTIONS(2157), + [anon_sym_struct] = ACTIONS(1705), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(1442), - [anon_sym_go] = ACTIONS(1444), - [anon_sym_spawn] = ACTIONS(1446), - [anon_sym_json_DOTdecode] = ACTIONS(1448), - [anon_sym_LBRACK2] = ACTIONS(1450), - [anon_sym_TILDE] = ACTIONS(1436), - [anon_sym_CARET] = ACTIONS(1436), - [anon_sym_AMP] = ACTIONS(1452), - [anon_sym_LT_DASH] = ACTIONS(1454), - [sym_none] = ACTIONS(1456), - [sym_true] = ACTIONS(1456), - [sym_false] = ACTIONS(1456), - [sym_nil] = ACTIONS(1456), - [anon_sym_if] = ACTIONS(1827), - [anon_sym_DOLLARif] = ACTIONS(1460), - [anon_sym_match] = ACTIONS(1462), - [anon_sym_select] = ACTIONS(1464), - [anon_sym_lock] = ACTIONS(1466), - [anon_sym_rlock] = ACTIONS(1466), - [anon_sym_unsafe] = ACTIONS(1833), - [anon_sym_sql] = ACTIONS(1470), - [sym_int_literal] = ACTIONS(1456), - [sym_float_literal] = ACTIONS(1472), - [sym_rune_literal] = ACTIONS(1472), - [sym_pseudo_compile_time_identifier] = ACTIONS(1474), + [anon_sym_BANG] = ACTIONS(2159), + [anon_sym_go] = ACTIONS(1709), + [anon_sym_spawn] = ACTIONS(1711), + [anon_sym_json_DOTdecode] = ACTIONS(2161), + [anon_sym_LBRACK2] = ACTIONS(2163), + [anon_sym_TILDE] = ACTIONS(2155), + [anon_sym_CARET] = ACTIONS(2155), + [anon_sym_AMP] = ACTIONS(2165), + [anon_sym_LT_DASH] = ACTIONS(2167), + [sym_none] = ACTIONS(1721), + [sym_true] = ACTIONS(1721), + [sym_false] = ACTIONS(1721), + [sym_nil] = ACTIONS(1721), + [anon_sym_if] = ACTIONS(1723), + [anon_sym_DOLLARif] = ACTIONS(1725), + [anon_sym_match] = ACTIONS(1727), + [anon_sym_select] = ACTIONS(1729), + [anon_sym_lock] = ACTIONS(1731), + [anon_sym_rlock] = ACTIONS(1731), + [anon_sym_unsafe] = ACTIONS(1733), + [anon_sym_sql] = ACTIONS(1735), + [sym_int_literal] = ACTIONS(1721), + [sym_float_literal] = ACTIONS(2169), + [sym_rune_literal] = ACTIONS(2169), + [sym_pseudo_compile_time_identifier] = ACTIONS(1737), [anon_sym_shared] = ACTIONS(83), [anon_sym_map_LBRACK] = ACTIONS(85), [anon_sym_chan] = ACTIONS(87), [anon_sym_thread] = ACTIONS(89), [anon_sym_atomic] = ACTIONS(91), - [sym___double_quote] = ACTIONS(1478), - [sym___single_quote] = ACTIONS(1480), - [sym___c_double_quote] = ACTIONS(1482), - [sym___c_single_quote] = ACTIONS(1484), - [sym___r_double_quote] = ACTIONS(1486), - [sym___r_single_quote] = ACTIONS(1488), + [sym___double_quote] = ACTIONS(2171), + [sym___single_quote] = ACTIONS(2173), + [sym___c_double_quote] = ACTIONS(2175), + [sym___c_single_quote] = ACTIONS(2177), + [sym___r_double_quote] = ACTIONS(2179), + [sym___r_single_quote] = ACTIONS(2181), }, [758] = { [sym_line_comment] = STATE(758), [sym_block_comment] = STATE(758), - [sym__expression] = STATE(1751), - [sym__expression_without_blocks] = STATE(2044), - [sym__expression_with_blocks] = STATE(2044), - [sym_inc_expression] = STATE(2045), - [sym_dec_expression] = STATE(2045), - [sym_or_block_expression] = STATE(2045), - [sym_option_propagation_expression] = STATE(2045), - [sym_result_propagation_expression] = STATE(2045), - [sym_anon_struct_value_expression] = STATE(2046), - [sym_go_expression] = STATE(2045), - [sym_spawn_expression] = STATE(2045), - [sym_parenthesized_expression] = STATE(2045), - [sym_call_expression] = STATE(2045), - [sym_type_initializer] = STATE(2046), - [sym_function_literal] = STATE(2045), - [sym_reference_expression] = STATE(1912), - [sym_type_reference_expression] = STATE(3541), - [sym_unary_expression] = STATE(2045), - [sym_receive_expression] = STATE(2045), - [sym_binary_expression] = STATE(2045), - [sym_as_type_cast_expression] = STATE(2045), - [sym__max_group] = STATE(2045), - [sym_literal] = STATE(2043), - [sym_map_init_expression] = STATE(2046), - [sym_array_creation] = STATE(2045), - [sym_fixed_array_creation] = STATE(2045), - [sym_selector_expression] = STATE(2045), - [sym_index_expression] = STATE(2045), - [sym_slice_expression] = STATE(2045), - [sym_if_expression] = STATE(2046), - [sym_compile_time_if_expression] = STATE(2046), - [sym_is_expression] = STATE(2045), - [sym_in_expression] = STATE(2045), - [sym_enum_fetch] = STATE(2045), - [sym_match_expression] = STATE(2046), - [sym_select_expression] = STATE(2046), - [sym_lock_expression] = STATE(2046), - [sym_unsafe_expression] = STATE(2046), - [sym_sql_expression] = STATE(2046), - [sym_c_string_literal] = STATE(2041), - [sym_raw_string_literal] = STATE(2041), - [sym_interpreted_string_literal] = STATE(2041), - [sym_mutability_modifiers] = STATE(689), - [sym_plain_type] = STATE(4052), - [sym__plain_type_without_special] = STATE(2302), - [sym_anon_struct_type] = STATE(2303), - [sym_multi_return_type] = STATE(2302), - [sym_result_type] = STATE(2302), - [sym_option_type] = STATE(2302), - [sym_qualified_type] = STATE(3541), - [sym_fixed_array_type] = STATE(2303), - [sym_array_type] = STATE(2303), - [sym_pointer_type] = STATE(2303), - [sym_wrong_pointer_type] = STATE(2303), - [sym_map_type] = STATE(2303), - [sym_channel_type] = STATE(2303), - [sym_shared_type] = STATE(2303), - [sym_thread_type] = STATE(2303), - [sym_atomic_type] = STATE(2303), - [sym_generic_type] = STATE(2303), - [sym_function_type] = STATE(2303), - [sym_identifier] = ACTIONS(1641), + [sym__expression] = STATE(2414), + [sym__expression_without_blocks] = STATE(2468), + [sym__expression_with_blocks] = STATE(2468), + [sym_inc_expression] = STATE(2469), + [sym_dec_expression] = STATE(2469), + [sym_or_block_expression] = STATE(2469), + [sym_option_propagation_expression] = STATE(2469), + [sym_result_propagation_expression] = STATE(2469), + [sym_anon_struct_value_expression] = STATE(2470), + [sym_go_expression] = STATE(2469), + [sym_spawn_expression] = STATE(2469), + [sym_parenthesized_expression] = STATE(2469), + [sym_call_expression] = STATE(2469), + [sym_type_initializer] = STATE(2470), + [sym_function_literal] = STATE(2469), + [sym_reference_expression] = STATE(2487), + [sym_type_reference_expression] = STATE(3460), + [sym_unary_expression] = STATE(2469), + [sym_receive_expression] = STATE(2469), + [sym_binary_expression] = STATE(2469), + [sym_as_type_cast_expression] = STATE(2469), + [sym__max_group] = STATE(2469), + [sym_literal] = STATE(2465), + [sym_map_init_expression] = STATE(2470), + [sym_array_creation] = STATE(2469), + [sym_fixed_array_creation] = STATE(2469), + [sym_selector_expression] = STATE(2469), + [sym_index_expression] = STATE(2469), + [sym_slice_expression] = STATE(2469), + [sym_if_expression] = STATE(2470), + [sym_compile_time_if_expression] = STATE(2470), + [sym_is_expression] = STATE(2469), + [sym_in_expression] = STATE(2469), + [sym_enum_fetch] = STATE(2469), + [sym_match_expression] = STATE(2470), + [sym_select_expression] = STATE(2470), + [sym_lock_expression] = STATE(2470), + [sym_unsafe_expression] = STATE(2470), + [sym_sql_expression] = STATE(2470), + [sym_c_string_literal] = STATE(2464), + [sym_raw_string_literal] = STATE(2464), + [sym_interpreted_string_literal] = STATE(2464), + [sym_mutability_modifiers] = STATE(561), + [sym_plain_type] = STATE(4038), + [sym__plain_type_without_special] = STATE(2360), + [sym_anon_struct_type] = STATE(2362), + [sym_multi_return_type] = STATE(2360), + [sym_result_type] = STATE(2360), + [sym_option_type] = STATE(2360), + [sym_qualified_type] = STATE(3460), + [sym_fixed_array_type] = STATE(2362), + [sym_array_type] = STATE(2362), + [sym_pointer_type] = STATE(2362), + [sym_wrong_pointer_type] = STATE(2362), + [sym_map_type] = STATE(2362), + [sym_channel_type] = STATE(2362), + [sym_shared_type] = STATE(2362), + [sym_thread_type] = STATE(2362), + [sym_atomic_type] = STATE(2362), + [sym_generic_type] = STATE(2362), + [sym_function_type] = STATE(2362), + [sym_identifier] = ACTIONS(1691), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(811), - [anon_sym_LBRACE] = ACTIONS(3144), - [anon_sym_LPAREN] = ACTIONS(815), - [anon_sym_fn] = ACTIONS(817), - [anon_sym_PLUS] = ACTIONS(819), - [anon_sym_DASH] = ACTIONS(819), - [anon_sym_STAR] = ACTIONS(821), - [anon_sym_struct] = ACTIONS(823), + [anon_sym_DOT] = ACTIONS(1693), + [anon_sym_LBRACE] = ACTIONS(2151), + [anon_sym_LPAREN] = ACTIONS(2153), + [anon_sym_fn] = ACTIONS(1699), + [anon_sym_PLUS] = ACTIONS(2155), + [anon_sym_DASH] = ACTIONS(2155), + [anon_sym_STAR] = ACTIONS(2157), + [anon_sym_struct] = ACTIONS(1705), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(827), - [anon_sym_go] = ACTIONS(829), - [anon_sym_spawn] = ACTIONS(831), - [anon_sym_json_DOTdecode] = ACTIONS(833), - [anon_sym_LBRACK2] = ACTIONS(835), - [anon_sym_TILDE] = ACTIONS(819), - [anon_sym_CARET] = ACTIONS(819), - [anon_sym_AMP] = ACTIONS(837), - [anon_sym_LT_DASH] = ACTIONS(839), - [sym_none] = ACTIONS(841), - [sym_true] = ACTIONS(841), - [sym_false] = ACTIONS(841), - [sym_nil] = ACTIONS(841), - [anon_sym_if] = ACTIONS(843), - [anon_sym_DOLLARif] = ACTIONS(845), - [anon_sym_match] = ACTIONS(847), - [anon_sym_select] = ACTIONS(849), - [anon_sym_lock] = ACTIONS(851), - [anon_sym_rlock] = ACTIONS(851), - [anon_sym_unsafe] = ACTIONS(853), - [anon_sym_sql] = ACTIONS(855), - [sym_int_literal] = ACTIONS(841), - [sym_float_literal] = ACTIONS(857), - [sym_rune_literal] = ACTIONS(857), - [sym_pseudo_compile_time_identifier] = ACTIONS(859), + [anon_sym_BANG] = ACTIONS(2159), + [anon_sym_go] = ACTIONS(1709), + [anon_sym_spawn] = ACTIONS(1711), + [anon_sym_json_DOTdecode] = ACTIONS(2161), + [anon_sym_LBRACK2] = ACTIONS(2163), + [anon_sym_TILDE] = ACTIONS(2155), + [anon_sym_CARET] = ACTIONS(2155), + [anon_sym_AMP] = ACTIONS(2165), + [anon_sym_LT_DASH] = ACTIONS(2167), + [sym_none] = ACTIONS(1721), + [sym_true] = ACTIONS(1721), + [sym_false] = ACTIONS(1721), + [sym_nil] = ACTIONS(1721), + [anon_sym_if] = ACTIONS(1723), + [anon_sym_DOLLARif] = ACTIONS(1725), + [anon_sym_match] = ACTIONS(1727), + [anon_sym_select] = ACTIONS(1729), + [anon_sym_lock] = ACTIONS(1731), + [anon_sym_rlock] = ACTIONS(1731), + [anon_sym_unsafe] = ACTIONS(1733), + [anon_sym_sql] = ACTIONS(1735), + [sym_int_literal] = ACTIONS(1721), + [sym_float_literal] = ACTIONS(2169), + [sym_rune_literal] = ACTIONS(2169), + [sym_pseudo_compile_time_identifier] = ACTIONS(1737), [anon_sym_shared] = ACTIONS(83), [anon_sym_map_LBRACK] = ACTIONS(85), [anon_sym_chan] = ACTIONS(87), [anon_sym_thread] = ACTIONS(89), [anon_sym_atomic] = ACTIONS(91), - [sym___double_quote] = ACTIONS(861), - [sym___single_quote] = ACTIONS(863), - [sym___c_double_quote] = ACTIONS(865), - [sym___c_single_quote] = ACTIONS(867), - [sym___r_double_quote] = ACTIONS(869), - [sym___r_single_quote] = ACTIONS(871), + [sym___double_quote] = ACTIONS(2171), + [sym___single_quote] = ACTIONS(2173), + [sym___c_double_quote] = ACTIONS(2175), + [sym___c_single_quote] = ACTIONS(2177), + [sym___r_double_quote] = ACTIONS(2179), + [sym___r_single_quote] = ACTIONS(2181), }, [759] = { [sym_line_comment] = STATE(759), [sym_block_comment] = STATE(759), - [sym__expression] = STATE(2135), - [sym__expression_without_blocks] = STATE(2226), - [sym__expression_with_blocks] = STATE(2226), - [sym_inc_expression] = STATE(2247), - [sym_dec_expression] = STATE(2247), - [sym_or_block_expression] = STATE(2247), - [sym_option_propagation_expression] = STATE(2247), - [sym_result_propagation_expression] = STATE(2247), - [sym_anon_struct_value_expression] = STATE(2248), - [sym_go_expression] = STATE(2247), - [sym_spawn_expression] = STATE(2247), - [sym_parenthesized_expression] = STATE(2247), - [sym_call_expression] = STATE(2247), - [sym_type_initializer] = STATE(2248), - [sym_function_literal] = STATE(2247), - [sym_reference_expression] = STATE(2252), - [sym_type_reference_expression] = STATE(3541), - [sym_unary_expression] = STATE(2247), - [sym_receive_expression] = STATE(2247), - [sym_binary_expression] = STATE(2247), - [sym_as_type_cast_expression] = STATE(2247), - [sym__max_group] = STATE(2247), - [sym_literal] = STATE(2155), - [sym_map_init_expression] = STATE(2248), - [sym_array_creation] = STATE(2247), - [sym_fixed_array_creation] = STATE(2247), - [sym_selector_expression] = STATE(2247), - [sym_index_expression] = STATE(2247), - [sym_slice_expression] = STATE(2247), - [sym_if_expression] = STATE(2248), - [sym_compile_time_if_expression] = STATE(2248), - [sym_is_expression] = STATE(2247), - [sym_in_expression] = STATE(2247), - [sym_enum_fetch] = STATE(2247), - [sym_match_expression] = STATE(2248), - [sym_select_expression] = STATE(2248), - [sym_lock_expression] = STATE(2248), - [sym_unsafe_expression] = STATE(2248), - [sym_sql_expression] = STATE(2248), - [sym_c_string_literal] = STATE(2153), - [sym_raw_string_literal] = STATE(2153), - [sym_interpreted_string_literal] = STATE(2153), - [sym_mutability_modifiers] = STATE(631), - [sym_plain_type] = STATE(4146), - [sym__plain_type_without_special] = STATE(2302), - [sym_anon_struct_type] = STATE(2303), - [sym_multi_return_type] = STATE(2302), - [sym_result_type] = STATE(2302), - [sym_option_type] = STATE(2302), - [sym_qualified_type] = STATE(3541), - [sym_fixed_array_type] = STATE(2303), - [sym_array_type] = STATE(2303), - [sym_pointer_type] = STATE(2303), - [sym_wrong_pointer_type] = STATE(2303), - [sym_map_type] = STATE(2303), - [sym_channel_type] = STATE(2303), - [sym_shared_type] = STATE(2303), - [sym_thread_type] = STATE(2303), - [sym_atomic_type] = STATE(2303), - [sym_generic_type] = STATE(2303), - [sym_function_type] = STATE(2303), - [sym_identifier] = ACTIONS(3286), + [sym__expression] = STATE(1650), + [sym__expression_without_blocks] = STATE(1799), + [sym__expression_with_blocks] = STATE(1799), + [sym_inc_expression] = STATE(1800), + [sym_dec_expression] = STATE(1800), + [sym_or_block_expression] = STATE(1800), + [sym_option_propagation_expression] = STATE(1800), + [sym_result_propagation_expression] = STATE(1800), + [sym_anon_struct_value_expression] = STATE(1801), + [sym_go_expression] = STATE(1800), + [sym_spawn_expression] = STATE(1800), + [sym_parenthesized_expression] = STATE(1800), + [sym_call_expression] = STATE(1800), + [sym_type_initializer] = STATE(1801), + [sym_function_literal] = STATE(1800), + [sym_reference_expression] = STATE(1844), + [sym_type_reference_expression] = STATE(3460), + [sym_unary_expression] = STATE(1800), + [sym_receive_expression] = STATE(1800), + [sym_binary_expression] = STATE(1800), + [sym_as_type_cast_expression] = STATE(1800), + [sym__max_group] = STATE(1800), + [sym_literal] = STATE(1797), + [sym_map_init_expression] = STATE(1801), + [sym_array_creation] = STATE(1800), + [sym_fixed_array_creation] = STATE(1800), + [sym_selector_expression] = STATE(1800), + [sym_index_expression] = STATE(1800), + [sym_slice_expression] = STATE(1800), + [sym_if_expression] = STATE(1801), + [sym_compile_time_if_expression] = STATE(1801), + [sym_is_expression] = STATE(1800), + [sym_in_expression] = STATE(1800), + [sym_enum_fetch] = STATE(1800), + [sym_match_expression] = STATE(1801), + [sym_select_expression] = STATE(1801), + [sym_lock_expression] = STATE(1801), + [sym_unsafe_expression] = STATE(1801), + [sym_sql_expression] = STATE(1801), + [sym_c_string_literal] = STATE(1792), + [sym_raw_string_literal] = STATE(1792), + [sym_interpreted_string_literal] = STATE(1792), + [sym_mutability_modifiers] = STATE(868), + [sym_plain_type] = STATE(4300), + [sym__plain_type_without_special] = STATE(2360), + [sym_anon_struct_type] = STATE(2362), + [sym_multi_return_type] = STATE(2360), + [sym_result_type] = STATE(2360), + [sym_option_type] = STATE(2360), + [sym_qualified_type] = STATE(3460), + [sym_fixed_array_type] = STATE(2362), + [sym_array_type] = STATE(2362), + [sym_pointer_type] = STATE(2362), + [sym_wrong_pointer_type] = STATE(2362), + [sym_map_type] = STATE(2362), + [sym_channel_type] = STATE(2362), + [sym_shared_type] = STATE(2362), + [sym_thread_type] = STATE(2362), + [sym_atomic_type] = STATE(2362), + [sym_generic_type] = STATE(2362), + [sym_function_type] = STATE(2362), + [sym_identifier] = ACTIONS(3198), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(3288), - [anon_sym_LBRACE] = ACTIONS(3290), - [anon_sym_LPAREN] = ACTIONS(3292), - [anon_sym_fn] = ACTIONS(3294), - [anon_sym_PLUS] = ACTIONS(3398), - [anon_sym_DASH] = ACTIONS(3398), - [anon_sym_STAR] = ACTIONS(3400), - [anon_sym_struct] = ACTIONS(3300), + [anon_sym_DOT] = ACTIONS(3200), + [anon_sym_LBRACE] = ACTIONS(3202), + [anon_sym_LPAREN] = ACTIONS(3204), + [anon_sym_fn] = ACTIONS(3206), + [anon_sym_PLUS] = ACTIONS(3208), + [anon_sym_DASH] = ACTIONS(3208), + [anon_sym_STAR] = ACTIONS(3210), + [anon_sym_struct] = ACTIONS(3212), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(3402), - [anon_sym_go] = ACTIONS(3404), - [anon_sym_spawn] = ACTIONS(3406), - [anon_sym_json_DOTdecode] = ACTIONS(3308), - [anon_sym_LBRACK2] = ACTIONS(3310), - [anon_sym_TILDE] = ACTIONS(3398), - [anon_sym_CARET] = ACTIONS(3398), - [anon_sym_AMP] = ACTIONS(3408), - [anon_sym_LT_DASH] = ACTIONS(3410), - [sym_none] = ACTIONS(3316), - [sym_true] = ACTIONS(3316), - [sym_false] = ACTIONS(3316), - [sym_nil] = ACTIONS(3316), - [anon_sym_if] = ACTIONS(3318), - [anon_sym_DOLLARif] = ACTIONS(3320), - [anon_sym_match] = ACTIONS(3322), - [anon_sym_select] = ACTIONS(3412), - [anon_sym_lock] = ACTIONS(3414), - [anon_sym_rlock] = ACTIONS(3414), - [anon_sym_unsafe] = ACTIONS(3328), - [anon_sym_sql] = ACTIONS(3330), - [sym_int_literal] = ACTIONS(3316), - [sym_float_literal] = ACTIONS(3332), - [sym_rune_literal] = ACTIONS(3332), - [sym_pseudo_compile_time_identifier] = ACTIONS(3334), + [anon_sym_BANG] = ACTIONS(3214), + [anon_sym_go] = ACTIONS(3216), + [anon_sym_spawn] = ACTIONS(3218), + [anon_sym_json_DOTdecode] = ACTIONS(3220), + [anon_sym_LBRACK2] = ACTIONS(3222), + [anon_sym_TILDE] = ACTIONS(3208), + [anon_sym_CARET] = ACTIONS(3208), + [anon_sym_AMP] = ACTIONS(3224), + [anon_sym_LT_DASH] = ACTIONS(3226), + [sym_none] = ACTIONS(3228), + [sym_true] = ACTIONS(3228), + [sym_false] = ACTIONS(3228), + [sym_nil] = ACTIONS(3228), + [anon_sym_if] = ACTIONS(3230), + [anon_sym_DOLLARif] = ACTIONS(3232), + [anon_sym_match] = ACTIONS(3234), + [anon_sym_select] = ACTIONS(3236), + [anon_sym_lock] = ACTIONS(3238), + [anon_sym_rlock] = ACTIONS(3238), + [anon_sym_unsafe] = ACTIONS(3240), + [anon_sym_sql] = ACTIONS(3242), + [sym_int_literal] = ACTIONS(3228), + [sym_float_literal] = ACTIONS(3244), + [sym_rune_literal] = ACTIONS(3244), + [sym_pseudo_compile_time_identifier] = ACTIONS(3246), [anon_sym_shared] = ACTIONS(83), [anon_sym_map_LBRACK] = ACTIONS(85), [anon_sym_chan] = ACTIONS(87), [anon_sym_thread] = ACTIONS(89), [anon_sym_atomic] = ACTIONS(91), - [sym___double_quote] = ACTIONS(3336), - [sym___single_quote] = ACTIONS(3338), - [sym___c_double_quote] = ACTIONS(3340), - [sym___c_single_quote] = ACTIONS(3342), - [sym___r_double_quote] = ACTIONS(3344), - [sym___r_single_quote] = ACTIONS(3346), + [sym___double_quote] = ACTIONS(3248), + [sym___single_quote] = ACTIONS(3250), + [sym___c_double_quote] = ACTIONS(3252), + [sym___c_single_quote] = ACTIONS(3254), + [sym___r_double_quote] = ACTIONS(3256), + [sym___r_single_quote] = ACTIONS(3258), }, [760] = { [sym_line_comment] = STATE(760), [sym_block_comment] = STATE(760), - [sym__expression] = STATE(1750), - [sym__expression_without_blocks] = STATE(2044), - [sym__expression_with_blocks] = STATE(2044), - [sym_inc_expression] = STATE(2045), - [sym_dec_expression] = STATE(2045), - [sym_or_block_expression] = STATE(2045), - [sym_option_propagation_expression] = STATE(2045), - [sym_result_propagation_expression] = STATE(2045), - [sym_anon_struct_value_expression] = STATE(2046), - [sym_go_expression] = STATE(2045), - [sym_spawn_expression] = STATE(2045), - [sym_parenthesized_expression] = STATE(2045), - [sym_call_expression] = STATE(2045), - [sym_type_initializer] = STATE(2046), - [sym_function_literal] = STATE(2045), - [sym_reference_expression] = STATE(1912), - [sym_type_reference_expression] = STATE(3541), - [sym_unary_expression] = STATE(2045), - [sym_receive_expression] = STATE(2045), - [sym_binary_expression] = STATE(2045), - [sym_as_type_cast_expression] = STATE(2045), - [sym__max_group] = STATE(2045), - [sym_literal] = STATE(2043), - [sym_map_init_expression] = STATE(2046), - [sym_array_creation] = STATE(2045), - [sym_fixed_array_creation] = STATE(2045), - [sym_selector_expression] = STATE(2045), - [sym_index_expression] = STATE(2045), - [sym_slice_expression] = STATE(2045), - [sym_if_expression] = STATE(2046), - [sym_compile_time_if_expression] = STATE(2046), - [sym_is_expression] = STATE(2045), - [sym_in_expression] = STATE(2045), - [sym_enum_fetch] = STATE(2045), - [sym_match_expression] = STATE(2046), - [sym_select_expression] = STATE(2046), - [sym_lock_expression] = STATE(2046), - [sym_unsafe_expression] = STATE(2046), - [sym_sql_expression] = STATE(2046), - [sym_c_string_literal] = STATE(2041), - [sym_raw_string_literal] = STATE(2041), - [sym_interpreted_string_literal] = STATE(2041), - [sym_mutability_modifiers] = STATE(689), - [sym_plain_type] = STATE(4052), - [sym__plain_type_without_special] = STATE(2302), - [sym_anon_struct_type] = STATE(2303), - [sym_multi_return_type] = STATE(2302), - [sym_result_type] = STATE(2302), - [sym_option_type] = STATE(2302), - [sym_qualified_type] = STATE(3541), - [sym_fixed_array_type] = STATE(2303), - [sym_array_type] = STATE(2303), - [sym_pointer_type] = STATE(2303), - [sym_wrong_pointer_type] = STATE(2303), - [sym_map_type] = STATE(2303), - [sym_channel_type] = STATE(2303), - [sym_shared_type] = STATE(2303), - [sym_thread_type] = STATE(2303), - [sym_atomic_type] = STATE(2303), - [sym_generic_type] = STATE(2303), - [sym_function_type] = STATE(2303), - [sym_identifier] = ACTIONS(1641), + [sym__expression] = STATE(225), + [sym__expression_without_blocks] = STATE(401), + [sym__expression_with_blocks] = STATE(401), + [sym_inc_expression] = STATE(399), + [sym_dec_expression] = STATE(399), + [sym_or_block_expression] = STATE(399), + [sym_option_propagation_expression] = STATE(399), + [sym_result_propagation_expression] = STATE(399), + [sym_anon_struct_value_expression] = STATE(395), + [sym_go_expression] = STATE(399), + [sym_spawn_expression] = STATE(399), + [sym_parenthesized_expression] = STATE(399), + [sym_call_expression] = STATE(399), + [sym_type_initializer] = STATE(395), + [sym_function_literal] = STATE(399), + [sym_reference_expression] = STATE(393), + [sym_type_reference_expression] = STATE(3460), + [sym_unary_expression] = STATE(399), + [sym_receive_expression] = STATE(399), + [sym_binary_expression] = STATE(399), + [sym_as_type_cast_expression] = STATE(399), + [sym__max_group] = STATE(399), + [sym_literal] = STATE(455), + [sym_map_init_expression] = STATE(395), + [sym_array_creation] = STATE(399), + [sym_fixed_array_creation] = STATE(399), + [sym_selector_expression] = STATE(399), + [sym_index_expression] = STATE(399), + [sym_slice_expression] = STATE(399), + [sym_if_expression] = STATE(395), + [sym_compile_time_if_expression] = STATE(395), + [sym_is_expression] = STATE(399), + [sym_in_expression] = STATE(399), + [sym_enum_fetch] = STATE(399), + [sym_match_expression] = STATE(395), + [sym_select_expression] = STATE(395), + [sym_lock_expression] = STATE(395), + [sym_unsafe_expression] = STATE(395), + [sym_sql_expression] = STATE(395), + [sym_c_string_literal] = STATE(479), + [sym_raw_string_literal] = STATE(479), + [sym_interpreted_string_literal] = STATE(479), + [sym_mutability_modifiers] = STATE(845), + [sym_plain_type] = STATE(4069), + [sym__plain_type_without_special] = STATE(2360), + [sym_anon_struct_type] = STATE(2362), + [sym_multi_return_type] = STATE(2360), + [sym_result_type] = STATE(2360), + [sym_option_type] = STATE(2360), + [sym_qualified_type] = STATE(3460), + [sym_fixed_array_type] = STATE(2362), + [sym_array_type] = STATE(2362), + [sym_pointer_type] = STATE(2362), + [sym_wrong_pointer_type] = STATE(2362), + [sym_map_type] = STATE(2362), + [sym_channel_type] = STATE(2362), + [sym_shared_type] = STATE(2362), + [sym_thread_type] = STATE(2362), + [sym_atomic_type] = STATE(2362), + [sym_generic_type] = STATE(2362), + [sym_function_type] = STATE(2362), + [sym_identifier] = ACTIONS(3184), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(811), - [anon_sym_LBRACE] = ACTIONS(3144), - [anon_sym_LPAREN] = ACTIONS(815), - [anon_sym_fn] = ACTIONS(817), - [anon_sym_PLUS] = ACTIONS(819), - [anon_sym_DASH] = ACTIONS(819), - [anon_sym_STAR] = ACTIONS(821), - [anon_sym_struct] = ACTIONS(823), + [anon_sym_DOT] = ACTIONS(17), + [anon_sym_LBRACE] = ACTIONS(3186), + [anon_sym_LPAREN] = ACTIONS(23), + [anon_sym_fn] = ACTIONS(485), + [anon_sym_PLUS] = ACTIONS(31), + [anon_sym_DASH] = ACTIONS(31), + [anon_sym_STAR] = ACTIONS(33), + [anon_sym_struct] = ACTIONS(487), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(827), - [anon_sym_go] = ACTIONS(829), - [anon_sym_spawn] = ACTIONS(831), - [anon_sym_json_DOTdecode] = ACTIONS(833), - [anon_sym_LBRACK2] = ACTIONS(835), - [anon_sym_TILDE] = ACTIONS(819), - [anon_sym_CARET] = ACTIONS(819), - [anon_sym_AMP] = ACTIONS(837), - [anon_sym_LT_DASH] = ACTIONS(839), - [sym_none] = ACTIONS(841), - [sym_true] = ACTIONS(841), - [sym_false] = ACTIONS(841), - [sym_nil] = ACTIONS(841), - [anon_sym_if] = ACTIONS(843), - [anon_sym_DOLLARif] = ACTIONS(845), - [anon_sym_match] = ACTIONS(847), - [anon_sym_select] = ACTIONS(849), - [anon_sym_lock] = ACTIONS(851), - [anon_sym_rlock] = ACTIONS(851), - [anon_sym_unsafe] = ACTIONS(853), - [anon_sym_sql] = ACTIONS(855), - [sym_int_literal] = ACTIONS(841), - [sym_float_literal] = ACTIONS(857), - [sym_rune_literal] = ACTIONS(857), - [sym_pseudo_compile_time_identifier] = ACTIONS(859), + [anon_sym_BANG] = ACTIONS(49), + [anon_sym_go] = ACTIONS(51), + [anon_sym_spawn] = ACTIONS(53), + [anon_sym_json_DOTdecode] = ACTIONS(55), + [anon_sym_LBRACK2] = ACTIONS(489), + [anon_sym_TILDE] = ACTIONS(31), + [anon_sym_CARET] = ACTIONS(31), + [anon_sym_AMP] = ACTIONS(59), + [anon_sym_LT_DASH] = ACTIONS(61), + [sym_none] = ACTIONS(63), + [sym_true] = ACTIONS(63), + [sym_false] = ACTIONS(63), + [sym_nil] = ACTIONS(63), + [anon_sym_if] = ACTIONS(65), + [anon_sym_DOLLARif] = ACTIONS(67), + [anon_sym_match] = ACTIONS(69), + [anon_sym_select] = ACTIONS(71), + [anon_sym_lock] = ACTIONS(73), + [anon_sym_rlock] = ACTIONS(73), + [anon_sym_unsafe] = ACTIONS(75), + [anon_sym_sql] = ACTIONS(77), + [sym_int_literal] = ACTIONS(63), + [sym_float_literal] = ACTIONS(79), + [sym_rune_literal] = ACTIONS(79), + [sym_pseudo_compile_time_identifier] = ACTIONS(81), [anon_sym_shared] = ACTIONS(83), [anon_sym_map_LBRACK] = ACTIONS(85), [anon_sym_chan] = ACTIONS(87), [anon_sym_thread] = ACTIONS(89), [anon_sym_atomic] = ACTIONS(91), - [sym___double_quote] = ACTIONS(861), - [sym___single_quote] = ACTIONS(863), - [sym___c_double_quote] = ACTIONS(865), - [sym___c_single_quote] = ACTIONS(867), - [sym___r_double_quote] = ACTIONS(869), - [sym___r_single_quote] = ACTIONS(871), + [sym___double_quote] = ACTIONS(115), + [sym___single_quote] = ACTIONS(117), + [sym___c_double_quote] = ACTIONS(119), + [sym___c_single_quote] = ACTIONS(121), + [sym___r_double_quote] = ACTIONS(123), + [sym___r_single_quote] = ACTIONS(125), }, [761] = { [sym_line_comment] = STATE(761), [sym_block_comment] = STATE(761), - [sym__expression] = STATE(1764), - [sym__expression_without_blocks] = STATE(2044), - [sym__expression_with_blocks] = STATE(2044), - [sym_inc_expression] = STATE(2045), - [sym_dec_expression] = STATE(2045), - [sym_or_block_expression] = STATE(2045), - [sym_option_propagation_expression] = STATE(2045), - [sym_result_propagation_expression] = STATE(2045), - [sym_anon_struct_value_expression] = STATE(2046), - [sym_go_expression] = STATE(2045), - [sym_spawn_expression] = STATE(2045), - [sym_parenthesized_expression] = STATE(2045), - [sym_call_expression] = STATE(2045), - [sym_type_initializer] = STATE(2046), - [sym_function_literal] = STATE(2045), - [sym_reference_expression] = STATE(1912), - [sym_type_reference_expression] = STATE(3541), - [sym_unary_expression] = STATE(2045), - [sym_receive_expression] = STATE(2045), - [sym_binary_expression] = STATE(2045), - [sym_as_type_cast_expression] = STATE(2045), - [sym__max_group] = STATE(2045), - [sym_literal] = STATE(2043), - [sym_map_init_expression] = STATE(2046), - [sym_array_creation] = STATE(2045), - [sym_fixed_array_creation] = STATE(2045), - [sym_selector_expression] = STATE(2045), - [sym_index_expression] = STATE(2045), - [sym_slice_expression] = STATE(2045), - [sym_if_expression] = STATE(2046), - [sym_compile_time_if_expression] = STATE(2046), - [sym_is_expression] = STATE(2045), - [sym_in_expression] = STATE(2045), - [sym_enum_fetch] = STATE(2045), - [sym_match_expression] = STATE(2046), - [sym_select_expression] = STATE(2046), - [sym_lock_expression] = STATE(2046), - [sym_unsafe_expression] = STATE(2046), - [sym_sql_expression] = STATE(2046), - [sym_c_string_literal] = STATE(2041), - [sym_raw_string_literal] = STATE(2041), - [sym_interpreted_string_literal] = STATE(2041), - [sym_mutability_modifiers] = STATE(689), - [sym_plain_type] = STATE(4066), - [sym__plain_type_without_special] = STATE(2302), - [sym_anon_struct_type] = STATE(2303), - [sym_multi_return_type] = STATE(2302), - [sym_result_type] = STATE(2302), - [sym_option_type] = STATE(2302), - [sym_qualified_type] = STATE(3541), - [sym_fixed_array_type] = STATE(2303), - [sym_array_type] = STATE(2303), - [sym_pointer_type] = STATE(2303), - [sym_wrong_pointer_type] = STATE(2303), - [sym_map_type] = STATE(2303), - [sym_channel_type] = STATE(2303), - [sym_shared_type] = STATE(2303), - [sym_thread_type] = STATE(2303), - [sym_atomic_type] = STATE(2303), - [sym_generic_type] = STATE(2303), - [sym_function_type] = STATE(2303), - [sym_identifier] = ACTIONS(1641), + [sym__expression] = STATE(2739), + [sym__expression_without_blocks] = STATE(2347), + [sym__expression_with_blocks] = STATE(2347), + [sym_inc_expression] = STATE(2379), + [sym_dec_expression] = STATE(2379), + [sym_or_block_expression] = STATE(2379), + [sym_option_propagation_expression] = STATE(2379), + [sym_result_propagation_expression] = STATE(2379), + [sym_anon_struct_value_expression] = STATE(2378), + [sym_go_expression] = STATE(2379), + [sym_spawn_expression] = STATE(2379), + [sym_parenthesized_expression] = STATE(2379), + [sym_call_expression] = STATE(2379), + [sym_type_initializer] = STATE(2378), + [sym_function_literal] = STATE(2379), + [sym_reference_expression] = STATE(2377), + [sym_type_reference_expression] = STATE(3460), + [sym_unary_expression] = STATE(2379), + [sym_receive_expression] = STATE(2379), + [sym_binary_expression] = STATE(2379), + [sym_as_type_cast_expression] = STATE(2379), + [sym__max_group] = STATE(2379), + [sym_literal] = STATE(2392), + [sym_map_init_expression] = STATE(2378), + [sym_array_creation] = STATE(2379), + [sym_fixed_array_creation] = STATE(2379), + [sym_selector_expression] = STATE(2379), + [sym_index_expression] = STATE(2379), + [sym_slice_expression] = STATE(2379), + [sym_if_expression] = STATE(2378), + [sym_compile_time_if_expression] = STATE(2378), + [sym_is_expression] = STATE(2379), + [sym_in_expression] = STATE(2379), + [sym_enum_fetch] = STATE(2379), + [sym_match_expression] = STATE(2378), + [sym_select_expression] = STATE(2378), + [sym_lock_expression] = STATE(2378), + [sym_unsafe_expression] = STATE(2378), + [sym_sql_expression] = STATE(2378), + [sym_c_string_literal] = STATE(2401), + [sym_raw_string_literal] = STATE(2401), + [sym_interpreted_string_literal] = STATE(2401), + [sym_mutability_modifiers] = STATE(939), + [sym_plain_type] = STATE(4160), + [sym__plain_type_without_special] = STATE(2360), + [sym_anon_struct_type] = STATE(2362), + [sym_multi_return_type] = STATE(2360), + [sym_result_type] = STATE(2360), + [sym_option_type] = STATE(2360), + [sym_qualified_type] = STATE(3460), + [sym_fixed_array_type] = STATE(2362), + [sym_array_type] = STATE(2362), + [sym_pointer_type] = STATE(2362), + [sym_wrong_pointer_type] = STATE(2362), + [sym_map_type] = STATE(2362), + [sym_channel_type] = STATE(2362), + [sym_shared_type] = STATE(2362), + [sym_thread_type] = STATE(2362), + [sym_atomic_type] = STATE(2362), + [sym_generic_type] = STATE(2362), + [sym_function_type] = STATE(2362), + [sym_identifier] = ACTIONS(2477), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(811), - [anon_sym_LBRACE] = ACTIONS(3144), - [anon_sym_LPAREN] = ACTIONS(815), - [anon_sym_fn] = ACTIONS(817), - [anon_sym_PLUS] = ACTIONS(819), - [anon_sym_DASH] = ACTIONS(819), - [anon_sym_STAR] = ACTIONS(821), - [anon_sym_struct] = ACTIONS(823), + [anon_sym_DOT] = ACTIONS(1430), + [anon_sym_LBRACE] = ACTIONS(1432), + [anon_sym_LPAREN] = ACTIONS(1434), + [anon_sym_fn] = ACTIONS(1436), + [anon_sym_PLUS] = ACTIONS(2271), + [anon_sym_DASH] = ACTIONS(2271), + [anon_sym_STAR] = ACTIONS(3354), + [anon_sym_struct] = ACTIONS(1442), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(827), - [anon_sym_go] = ACTIONS(829), - [anon_sym_spawn] = ACTIONS(831), - [anon_sym_json_DOTdecode] = ACTIONS(833), - [anon_sym_LBRACK2] = ACTIONS(835), - [anon_sym_TILDE] = ACTIONS(819), - [anon_sym_CARET] = ACTIONS(819), - [anon_sym_AMP] = ACTIONS(837), - [anon_sym_LT_DASH] = ACTIONS(839), - [sym_none] = ACTIONS(841), - [sym_true] = ACTIONS(841), - [sym_false] = ACTIONS(841), - [sym_nil] = ACTIONS(841), - [anon_sym_if] = ACTIONS(843), - [anon_sym_DOLLARif] = ACTIONS(845), - [anon_sym_match] = ACTIONS(847), - [anon_sym_select] = ACTIONS(849), - [anon_sym_lock] = ACTIONS(851), - [anon_sym_rlock] = ACTIONS(851), - [anon_sym_unsafe] = ACTIONS(853), - [anon_sym_sql] = ACTIONS(855), - [sym_int_literal] = ACTIONS(841), - [sym_float_literal] = ACTIONS(857), - [sym_rune_literal] = ACTIONS(857), - [sym_pseudo_compile_time_identifier] = ACTIONS(859), + [anon_sym_BANG] = ACTIONS(3356), + [anon_sym_go] = ACTIONS(2277), + [anon_sym_spawn] = ACTIONS(2279), + [anon_sym_json_DOTdecode] = ACTIONS(1450), + [anon_sym_LBRACK2] = ACTIONS(1452), + [anon_sym_TILDE] = ACTIONS(2271), + [anon_sym_CARET] = ACTIONS(2271), + [anon_sym_AMP] = ACTIONS(3358), + [anon_sym_LT_DASH] = ACTIONS(2283), + [sym_none] = ACTIONS(1458), + [sym_true] = ACTIONS(1458), + [sym_false] = ACTIONS(1458), + [sym_nil] = ACTIONS(1458), + [anon_sym_if] = ACTIONS(1833), + [anon_sym_DOLLARif] = ACTIONS(1462), + [anon_sym_match] = ACTIONS(1464), + [anon_sym_select] = ACTIONS(1466), + [anon_sym_lock] = ACTIONS(1468), + [anon_sym_rlock] = ACTIONS(1468), + [anon_sym_unsafe] = ACTIONS(1839), + [anon_sym_sql] = ACTIONS(1472), + [sym_int_literal] = ACTIONS(1458), + [sym_float_literal] = ACTIONS(1474), + [sym_rune_literal] = ACTIONS(1474), + [sym_pseudo_compile_time_identifier] = ACTIONS(1476), [anon_sym_shared] = ACTIONS(83), [anon_sym_map_LBRACK] = ACTIONS(85), [anon_sym_chan] = ACTIONS(87), [anon_sym_thread] = ACTIONS(89), [anon_sym_atomic] = ACTIONS(91), - [sym___double_quote] = ACTIONS(861), - [sym___single_quote] = ACTIONS(863), - [sym___c_double_quote] = ACTIONS(865), - [sym___c_single_quote] = ACTIONS(867), - [sym___r_double_quote] = ACTIONS(869), - [sym___r_single_quote] = ACTIONS(871), + [sym___double_quote] = ACTIONS(1480), + [sym___single_quote] = ACTIONS(1482), + [sym___c_double_quote] = ACTIONS(1484), + [sym___c_single_quote] = ACTIONS(1486), + [sym___r_double_quote] = ACTIONS(1488), + [sym___r_single_quote] = ACTIONS(1490), }, [762] = { [sym_line_comment] = STATE(762), [sym_block_comment] = STATE(762), - [sym__expression] = STATE(2275), - [sym__expression_without_blocks] = STATE(2226), - [sym__expression_with_blocks] = STATE(2226), - [sym_inc_expression] = STATE(2247), - [sym_dec_expression] = STATE(2247), - [sym_or_block_expression] = STATE(2247), - [sym_option_propagation_expression] = STATE(2247), - [sym_result_propagation_expression] = STATE(2247), - [sym_anon_struct_value_expression] = STATE(2248), - [sym_go_expression] = STATE(2247), - [sym_spawn_expression] = STATE(2247), - [sym_parenthesized_expression] = STATE(2247), - [sym_call_expression] = STATE(2247), - [sym_type_initializer] = STATE(2248), - [sym_function_literal] = STATE(2247), - [sym_reference_expression] = STATE(2252), - [sym_type_reference_expression] = STATE(3541), - [sym_unary_expression] = STATE(2247), - [sym_receive_expression] = STATE(2247), - [sym_binary_expression] = STATE(2247), - [sym_as_type_cast_expression] = STATE(2247), - [sym__max_group] = STATE(2247), - [sym_literal] = STATE(2155), - [sym_map_init_expression] = STATE(2248), - [sym_array_creation] = STATE(2247), - [sym_fixed_array_creation] = STATE(2247), - [sym_selector_expression] = STATE(2247), - [sym_index_expression] = STATE(2247), - [sym_slice_expression] = STATE(2247), - [sym_if_expression] = STATE(2248), - [sym_compile_time_if_expression] = STATE(2248), - [sym_is_expression] = STATE(2247), - [sym_in_expression] = STATE(2247), - [sym_enum_fetch] = STATE(2247), - [sym_match_expression] = STATE(2248), - [sym_select_expression] = STATE(2248), - [sym_lock_expression] = STATE(2248), - [sym_unsafe_expression] = STATE(2248), - [sym_sql_expression] = STATE(2248), - [sym_c_string_literal] = STATE(2153), - [sym_raw_string_literal] = STATE(2153), - [sym_interpreted_string_literal] = STATE(2153), - [sym_mutability_modifiers] = STATE(631), - [sym_plain_type] = STATE(4146), - [sym__plain_type_without_special] = STATE(2302), - [sym_anon_struct_type] = STATE(2303), - [sym_multi_return_type] = STATE(2302), - [sym_result_type] = STATE(2302), - [sym_option_type] = STATE(2302), - [sym_qualified_type] = STATE(3541), - [sym_fixed_array_type] = STATE(2303), - [sym_array_type] = STATE(2303), - [sym_pointer_type] = STATE(2303), - [sym_wrong_pointer_type] = STATE(2303), - [sym_map_type] = STATE(2303), - [sym_channel_type] = STATE(2303), - [sym_shared_type] = STATE(2303), - [sym_thread_type] = STATE(2303), - [sym_atomic_type] = STATE(2303), - [sym_generic_type] = STATE(2303), - [sym_function_type] = STATE(2303), - [sym_identifier] = ACTIONS(3286), + [sym__expression] = STATE(2137), + [sym__expression_without_blocks] = STATE(2162), + [sym__expression_with_blocks] = STATE(2162), + [sym_inc_expression] = STATE(2161), + [sym_dec_expression] = STATE(2161), + [sym_or_block_expression] = STATE(2161), + [sym_option_propagation_expression] = STATE(2161), + [sym_result_propagation_expression] = STATE(2161), + [sym_anon_struct_value_expression] = STATE(2160), + [sym_go_expression] = STATE(2161), + [sym_spawn_expression] = STATE(2161), + [sym_parenthesized_expression] = STATE(2161), + [sym_call_expression] = STATE(2161), + [sym_type_initializer] = STATE(2160), + [sym_function_literal] = STATE(2161), + [sym_reference_expression] = STATE(2159), + [sym_type_reference_expression] = STATE(3460), + [sym_unary_expression] = STATE(2161), + [sym_receive_expression] = STATE(2161), + [sym_binary_expression] = STATE(2161), + [sym_as_type_cast_expression] = STATE(2161), + [sym__max_group] = STATE(2161), + [sym_literal] = STATE(2164), + [sym_map_init_expression] = STATE(2160), + [sym_array_creation] = STATE(2161), + [sym_fixed_array_creation] = STATE(2161), + [sym_selector_expression] = STATE(2161), + [sym_index_expression] = STATE(2161), + [sym_slice_expression] = STATE(2161), + [sym_if_expression] = STATE(2160), + [sym_compile_time_if_expression] = STATE(2160), + [sym_is_expression] = STATE(2161), + [sym_in_expression] = STATE(2161), + [sym_enum_fetch] = STATE(2161), + [sym_match_expression] = STATE(2160), + [sym_select_expression] = STATE(2160), + [sym_lock_expression] = STATE(2160), + [sym_unsafe_expression] = STATE(2160), + [sym_sql_expression] = STATE(2160), + [sym_c_string_literal] = STATE(2166), + [sym_raw_string_literal] = STATE(2166), + [sym_interpreted_string_literal] = STATE(2166), + [sym_mutability_modifiers] = STATE(575), + [sym_plain_type] = STATE(4173), + [sym__plain_type_without_special] = STATE(2360), + [sym_anon_struct_type] = STATE(2362), + [sym_multi_return_type] = STATE(2360), + [sym_result_type] = STATE(2360), + [sym_option_type] = STATE(2360), + [sym_qualified_type] = STATE(3460), + [sym_fixed_array_type] = STATE(2362), + [sym_array_type] = STATE(2362), + [sym_pointer_type] = STATE(2362), + [sym_wrong_pointer_type] = STATE(2362), + [sym_map_type] = STATE(2362), + [sym_channel_type] = STATE(2362), + [sym_shared_type] = STATE(2362), + [sym_thread_type] = STATE(2362), + [sym_atomic_type] = STATE(2362), + [sym_generic_type] = STATE(2362), + [sym_function_type] = STATE(2362), + [sym_identifier] = ACTIONS(3292), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(3288), - [anon_sym_LBRACE] = ACTIONS(3290), - [anon_sym_LPAREN] = ACTIONS(3292), - [anon_sym_fn] = ACTIONS(3294), - [anon_sym_PLUS] = ACTIONS(3398), - [anon_sym_DASH] = ACTIONS(3398), - [anon_sym_STAR] = ACTIONS(3400), - [anon_sym_struct] = ACTIONS(3300), + [anon_sym_DOT] = ACTIONS(3294), + [anon_sym_LBRACE] = ACTIONS(3296), + [anon_sym_LPAREN] = ACTIONS(3298), + [anon_sym_fn] = ACTIONS(3300), + [anon_sym_PLUS] = ACTIONS(3404), + [anon_sym_DASH] = ACTIONS(3404), + [anon_sym_STAR] = ACTIONS(3406), + [anon_sym_struct] = ACTIONS(3306), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(3402), - [anon_sym_go] = ACTIONS(3404), - [anon_sym_spawn] = ACTIONS(3406), - [anon_sym_json_DOTdecode] = ACTIONS(3308), - [anon_sym_LBRACK2] = ACTIONS(3310), - [anon_sym_TILDE] = ACTIONS(3398), - [anon_sym_CARET] = ACTIONS(3398), - [anon_sym_AMP] = ACTIONS(3408), - [anon_sym_LT_DASH] = ACTIONS(3410), - [sym_none] = ACTIONS(3316), - [sym_true] = ACTIONS(3316), - [sym_false] = ACTIONS(3316), - [sym_nil] = ACTIONS(3316), - [anon_sym_if] = ACTIONS(3318), - [anon_sym_DOLLARif] = ACTIONS(3320), - [anon_sym_match] = ACTIONS(3322), - [anon_sym_select] = ACTIONS(3412), - [anon_sym_lock] = ACTIONS(3414), - [anon_sym_rlock] = ACTIONS(3414), - [anon_sym_unsafe] = ACTIONS(3328), - [anon_sym_sql] = ACTIONS(3330), - [sym_int_literal] = ACTIONS(3316), - [sym_float_literal] = ACTIONS(3332), - [sym_rune_literal] = ACTIONS(3332), - [sym_pseudo_compile_time_identifier] = ACTIONS(3334), + [anon_sym_BANG] = ACTIONS(3408), + [anon_sym_go] = ACTIONS(3410), + [anon_sym_spawn] = ACTIONS(3412), + [anon_sym_json_DOTdecode] = ACTIONS(3314), + [anon_sym_LBRACK2] = ACTIONS(3316), + [anon_sym_TILDE] = ACTIONS(3404), + [anon_sym_CARET] = ACTIONS(3404), + [anon_sym_AMP] = ACTIONS(3414), + [anon_sym_LT_DASH] = ACTIONS(3416), + [sym_none] = ACTIONS(3322), + [sym_true] = ACTIONS(3322), + [sym_false] = ACTIONS(3322), + [sym_nil] = ACTIONS(3322), + [anon_sym_if] = ACTIONS(3324), + [anon_sym_DOLLARif] = ACTIONS(3326), + [anon_sym_match] = ACTIONS(3328), + [anon_sym_select] = ACTIONS(3418), + [anon_sym_lock] = ACTIONS(3420), + [anon_sym_rlock] = ACTIONS(3420), + [anon_sym_unsafe] = ACTIONS(3334), + [anon_sym_sql] = ACTIONS(3336), + [sym_int_literal] = ACTIONS(3322), + [sym_float_literal] = ACTIONS(3338), + [sym_rune_literal] = ACTIONS(3338), + [sym_pseudo_compile_time_identifier] = ACTIONS(3340), [anon_sym_shared] = ACTIONS(83), [anon_sym_map_LBRACK] = ACTIONS(85), [anon_sym_chan] = ACTIONS(87), [anon_sym_thread] = ACTIONS(89), [anon_sym_atomic] = ACTIONS(91), - [sym___double_quote] = ACTIONS(3336), - [sym___single_quote] = ACTIONS(3338), - [sym___c_double_quote] = ACTIONS(3340), - [sym___c_single_quote] = ACTIONS(3342), - [sym___r_double_quote] = ACTIONS(3344), - [sym___r_single_quote] = ACTIONS(3346), + [sym___double_quote] = ACTIONS(3342), + [sym___single_quote] = ACTIONS(3344), + [sym___c_double_quote] = ACTIONS(3346), + [sym___c_single_quote] = ACTIONS(3348), + [sym___r_double_quote] = ACTIONS(3350), + [sym___r_single_quote] = ACTIONS(3352), }, [763] = { [sym_line_comment] = STATE(763), [sym_block_comment] = STATE(763), - [sym__expression] = STATE(1764), - [sym__expression_without_blocks] = STATE(2044), - [sym__expression_with_blocks] = STATE(2044), - [sym_inc_expression] = STATE(2045), - [sym_dec_expression] = STATE(2045), - [sym_or_block_expression] = STATE(2045), - [sym_option_propagation_expression] = STATE(2045), - [sym_result_propagation_expression] = STATE(2045), - [sym_anon_struct_value_expression] = STATE(2046), - [sym_go_expression] = STATE(2045), - [sym_spawn_expression] = STATE(2045), - [sym_parenthesized_expression] = STATE(2045), - [sym_call_expression] = STATE(2045), - [sym_type_initializer] = STATE(2046), - [sym_function_literal] = STATE(2045), - [sym_reference_expression] = STATE(1912), - [sym_type_reference_expression] = STATE(3541), - [sym_unary_expression] = STATE(2045), - [sym_receive_expression] = STATE(2045), - [sym_binary_expression] = STATE(2045), - [sym_as_type_cast_expression] = STATE(2045), - [sym__max_group] = STATE(2045), - [sym_literal] = STATE(2043), - [sym_map_init_expression] = STATE(2046), - [sym_array_creation] = STATE(2045), - [sym_fixed_array_creation] = STATE(2045), - [sym_selector_expression] = STATE(2045), - [sym_index_expression] = STATE(2045), - [sym_slice_expression] = STATE(2045), - [sym_if_expression] = STATE(2046), - [sym_compile_time_if_expression] = STATE(2046), - [sym_is_expression] = STATE(2045), - [sym_in_expression] = STATE(2045), - [sym_enum_fetch] = STATE(2045), - [sym_match_expression] = STATE(2046), - [sym_select_expression] = STATE(2046), - [sym_lock_expression] = STATE(2046), - [sym_unsafe_expression] = STATE(2046), - [sym_sql_expression] = STATE(2046), - [sym_c_string_literal] = STATE(2041), - [sym_raw_string_literal] = STATE(2041), - [sym_interpreted_string_literal] = STATE(2041), - [sym_mutability_modifiers] = STATE(689), - [sym_plain_type] = STATE(4058), - [sym__plain_type_without_special] = STATE(2302), - [sym_anon_struct_type] = STATE(2303), - [sym_multi_return_type] = STATE(2302), - [sym_result_type] = STATE(2302), - [sym_option_type] = STATE(2302), - [sym_qualified_type] = STATE(3541), - [sym_fixed_array_type] = STATE(2303), - [sym_array_type] = STATE(2303), - [sym_pointer_type] = STATE(2303), - [sym_wrong_pointer_type] = STATE(2303), - [sym_map_type] = STATE(2303), - [sym_channel_type] = STATE(2303), - [sym_shared_type] = STATE(2303), - [sym_thread_type] = STATE(2303), - [sym_atomic_type] = STATE(2303), - [sym_generic_type] = STATE(2303), - [sym_function_type] = STATE(2303), - [sym_identifier] = ACTIONS(1641), + [sym__expression] = STATE(2830), + [sym__expression_without_blocks] = STATE(2347), + [sym__expression_with_blocks] = STATE(2347), + [sym_inc_expression] = STATE(2379), + [sym_dec_expression] = STATE(2379), + [sym_or_block_expression] = STATE(2379), + [sym_option_propagation_expression] = STATE(2379), + [sym_result_propagation_expression] = STATE(2379), + [sym_anon_struct_value_expression] = STATE(2378), + [sym_go_expression] = STATE(2379), + [sym_spawn_expression] = STATE(2379), + [sym_parenthesized_expression] = STATE(2379), + [sym_call_expression] = STATE(2379), + [sym_type_initializer] = STATE(2378), + [sym_function_literal] = STATE(2379), + [sym_reference_expression] = STATE(2919), + [sym_type_reference_expression] = STATE(3460), + [sym_unary_expression] = STATE(2379), + [sym_receive_expression] = STATE(2379), + [sym_binary_expression] = STATE(2379), + [sym_as_type_cast_expression] = STATE(2379), + [sym__max_group] = STATE(2379), + [sym_literal] = STATE(2392), + [sym_map_init_expression] = STATE(2378), + [sym_array_creation] = STATE(2379), + [sym_fixed_array_creation] = STATE(2379), + [sym_selector_expression] = STATE(2913), + [sym_index_expression] = STATE(2379), + [sym_slice_expression] = STATE(2379), + [sym_if_expression] = STATE(2378), + [sym_compile_time_if_expression] = STATE(2378), + [sym_is_expression] = STATE(2379), + [sym_in_expression] = STATE(2379), + [sym_enum_fetch] = STATE(2379), + [sym_match_expression] = STATE(2378), + [sym_select_expression] = STATE(2378), + [sym_lock_expression] = STATE(2378), + [sym_unsafe_expression] = STATE(2378), + [sym_sql_expression] = STATE(2378), + [sym_c_string_literal] = STATE(2401), + [sym_raw_string_literal] = STATE(2401), + [sym_interpreted_string_literal] = STATE(2401), + [sym_mutability_modifiers] = STATE(939), + [sym_plain_type] = STATE(4160), + [sym__plain_type_without_special] = STATE(2360), + [sym_anon_struct_type] = STATE(2362), + [sym_multi_return_type] = STATE(2360), + [sym_result_type] = STATE(2360), + [sym_option_type] = STATE(2360), + [sym_qualified_type] = STATE(3460), + [sym_fixed_array_type] = STATE(2362), + [sym_array_type] = STATE(2362), + [sym_pointer_type] = STATE(2362), + [sym_wrong_pointer_type] = STATE(2362), + [sym_map_type] = STATE(2362), + [sym_channel_type] = STATE(2362), + [sym_shared_type] = STATE(2362), + [sym_thread_type] = STATE(2362), + [sym_atomic_type] = STATE(2362), + [sym_generic_type] = STATE(2362), + [sym_function_type] = STATE(2362), + [sym_identifier] = ACTIONS(2477), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(811), - [anon_sym_LBRACE] = ACTIONS(3144), - [anon_sym_LPAREN] = ACTIONS(815), - [anon_sym_fn] = ACTIONS(817), - [anon_sym_PLUS] = ACTIONS(819), - [anon_sym_DASH] = ACTIONS(819), - [anon_sym_STAR] = ACTIONS(821), - [anon_sym_struct] = ACTIONS(823), + [anon_sym_DOT] = ACTIONS(1430), + [anon_sym_LBRACE] = ACTIONS(1432), + [anon_sym_LPAREN] = ACTIONS(1434), + [anon_sym_fn] = ACTIONS(1436), + [anon_sym_PLUS] = ACTIONS(1438), + [anon_sym_DASH] = ACTIONS(1438), + [anon_sym_STAR] = ACTIONS(1440), + [anon_sym_struct] = ACTIONS(1442), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(827), - [anon_sym_go] = ACTIONS(829), - [anon_sym_spawn] = ACTIONS(831), - [anon_sym_json_DOTdecode] = ACTIONS(833), - [anon_sym_LBRACK2] = ACTIONS(835), - [anon_sym_TILDE] = ACTIONS(819), - [anon_sym_CARET] = ACTIONS(819), - [anon_sym_AMP] = ACTIONS(837), - [anon_sym_LT_DASH] = ACTIONS(839), - [sym_none] = ACTIONS(841), - [sym_true] = ACTIONS(841), - [sym_false] = ACTIONS(841), - [sym_nil] = ACTIONS(841), - [anon_sym_if] = ACTIONS(843), - [anon_sym_DOLLARif] = ACTIONS(845), - [anon_sym_match] = ACTIONS(847), - [anon_sym_select] = ACTIONS(849), - [anon_sym_lock] = ACTIONS(851), - [anon_sym_rlock] = ACTIONS(851), - [anon_sym_unsafe] = ACTIONS(853), - [anon_sym_sql] = ACTIONS(855), - [sym_int_literal] = ACTIONS(841), - [sym_float_literal] = ACTIONS(857), - [sym_rune_literal] = ACTIONS(857), - [sym_pseudo_compile_time_identifier] = ACTIONS(859), + [anon_sym_BANG] = ACTIONS(1444), + [anon_sym_go] = ACTIONS(1446), + [anon_sym_spawn] = ACTIONS(1448), + [anon_sym_json_DOTdecode] = ACTIONS(1450), + [anon_sym_LBRACK2] = ACTIONS(1452), + [anon_sym_TILDE] = ACTIONS(1438), + [anon_sym_CARET] = ACTIONS(1438), + [anon_sym_AMP] = ACTIONS(1454), + [anon_sym_LT_DASH] = ACTIONS(1456), + [sym_none] = ACTIONS(1458), + [sym_true] = ACTIONS(1458), + [sym_false] = ACTIONS(1458), + [sym_nil] = ACTIONS(1458), + [anon_sym_if] = ACTIONS(1833), + [anon_sym_DOLLARif] = ACTIONS(1462), + [anon_sym_match] = ACTIONS(1464), + [anon_sym_select] = ACTIONS(1466), + [anon_sym_lock] = ACTIONS(1468), + [anon_sym_rlock] = ACTIONS(1468), + [anon_sym_unsafe] = ACTIONS(1839), + [anon_sym_sql] = ACTIONS(1472), + [sym_int_literal] = ACTIONS(1458), + [sym_float_literal] = ACTIONS(1474), + [sym_rune_literal] = ACTIONS(1474), + [sym_pseudo_compile_time_identifier] = ACTIONS(1476), [anon_sym_shared] = ACTIONS(83), [anon_sym_map_LBRACK] = ACTIONS(85), [anon_sym_chan] = ACTIONS(87), [anon_sym_thread] = ACTIONS(89), [anon_sym_atomic] = ACTIONS(91), - [sym___double_quote] = ACTIONS(861), - [sym___single_quote] = ACTIONS(863), - [sym___c_double_quote] = ACTIONS(865), - [sym___c_single_quote] = ACTIONS(867), - [sym___r_double_quote] = ACTIONS(869), - [sym___r_single_quote] = ACTIONS(871), + [sym___double_quote] = ACTIONS(1480), + [sym___single_quote] = ACTIONS(1482), + [sym___c_double_quote] = ACTIONS(1484), + [sym___c_single_quote] = ACTIONS(1486), + [sym___r_double_quote] = ACTIONS(1488), + [sym___r_single_quote] = ACTIONS(1490), }, [764] = { [sym_line_comment] = STATE(764), [sym_block_comment] = STATE(764), - [sym__expression] = STATE(1764), - [sym__expression_without_blocks] = STATE(2044), - [sym__expression_with_blocks] = STATE(2044), - [sym_inc_expression] = STATE(2045), - [sym_dec_expression] = STATE(2045), - [sym_or_block_expression] = STATE(2045), - [sym_option_propagation_expression] = STATE(2045), - [sym_result_propagation_expression] = STATE(2045), - [sym_anon_struct_value_expression] = STATE(2046), - [sym_go_expression] = STATE(2045), - [sym_spawn_expression] = STATE(2045), - [sym_parenthesized_expression] = STATE(2045), - [sym_call_expression] = STATE(2045), - [sym_type_initializer] = STATE(2046), - [sym_function_literal] = STATE(2045), - [sym_reference_expression] = STATE(1912), - [sym_type_reference_expression] = STATE(3541), - [sym_unary_expression] = STATE(2045), - [sym_receive_expression] = STATE(2045), - [sym_binary_expression] = STATE(2045), - [sym_as_type_cast_expression] = STATE(2045), - [sym__max_group] = STATE(2045), - [sym_literal] = STATE(2043), - [sym_map_init_expression] = STATE(2046), - [sym_array_creation] = STATE(2045), - [sym_fixed_array_creation] = STATE(2045), - [sym_selector_expression] = STATE(2045), - [sym_index_expression] = STATE(2045), - [sym_slice_expression] = STATE(2045), - [sym_if_expression] = STATE(2046), - [sym_compile_time_if_expression] = STATE(2046), - [sym_is_expression] = STATE(2045), - [sym_in_expression] = STATE(2045), - [sym_enum_fetch] = STATE(2045), - [sym_match_expression] = STATE(2046), - [sym_select_expression] = STATE(2046), - [sym_lock_expression] = STATE(2046), - [sym_unsafe_expression] = STATE(2046), - [sym_sql_expression] = STATE(2046), - [sym_c_string_literal] = STATE(2041), - [sym_raw_string_literal] = STATE(2041), - [sym_interpreted_string_literal] = STATE(2041), - [sym_mutability_modifiers] = STATE(689), - [sym_plain_type] = STATE(4052), - [sym__plain_type_without_special] = STATE(2302), - [sym_anon_struct_type] = STATE(2303), - [sym_multi_return_type] = STATE(2302), - [sym_result_type] = STATE(2302), - [sym_option_type] = STATE(2302), - [sym_qualified_type] = STATE(3541), - [sym_fixed_array_type] = STATE(2303), - [sym_array_type] = STATE(2303), - [sym_pointer_type] = STATE(2303), - [sym_wrong_pointer_type] = STATE(2303), - [sym_map_type] = STATE(2303), - [sym_channel_type] = STATE(2303), - [sym_shared_type] = STATE(2303), - [sym_thread_type] = STATE(2303), - [sym_atomic_type] = STATE(2303), - [sym_generic_type] = STATE(2303), - [sym_function_type] = STATE(2303), - [sym_identifier] = ACTIONS(1641), + [sym__expression] = STATE(224), + [sym__expression_without_blocks] = STATE(401), + [sym__expression_with_blocks] = STATE(401), + [sym_inc_expression] = STATE(399), + [sym_dec_expression] = STATE(399), + [sym_or_block_expression] = STATE(399), + [sym_option_propagation_expression] = STATE(399), + [sym_result_propagation_expression] = STATE(399), + [sym_anon_struct_value_expression] = STATE(395), + [sym_go_expression] = STATE(399), + [sym_spawn_expression] = STATE(399), + [sym_parenthesized_expression] = STATE(399), + [sym_call_expression] = STATE(399), + [sym_type_initializer] = STATE(395), + [sym_function_literal] = STATE(399), + [sym_reference_expression] = STATE(393), + [sym_type_reference_expression] = STATE(3460), + [sym_unary_expression] = STATE(399), + [sym_receive_expression] = STATE(399), + [sym_binary_expression] = STATE(399), + [sym_as_type_cast_expression] = STATE(399), + [sym__max_group] = STATE(399), + [sym_literal] = STATE(455), + [sym_map_init_expression] = STATE(395), + [sym_array_creation] = STATE(399), + [sym_fixed_array_creation] = STATE(399), + [sym_selector_expression] = STATE(399), + [sym_index_expression] = STATE(399), + [sym_slice_expression] = STATE(399), + [sym_if_expression] = STATE(395), + [sym_compile_time_if_expression] = STATE(395), + [sym_is_expression] = STATE(399), + [sym_in_expression] = STATE(399), + [sym_enum_fetch] = STATE(399), + [sym_match_expression] = STATE(395), + [sym_select_expression] = STATE(395), + [sym_lock_expression] = STATE(395), + [sym_unsafe_expression] = STATE(395), + [sym_sql_expression] = STATE(395), + [sym_c_string_literal] = STATE(479), + [sym_raw_string_literal] = STATE(479), + [sym_interpreted_string_literal] = STATE(479), + [sym_mutability_modifiers] = STATE(845), + [sym_plain_type] = STATE(4069), + [sym__plain_type_without_special] = STATE(2360), + [sym_anon_struct_type] = STATE(2362), + [sym_multi_return_type] = STATE(2360), + [sym_result_type] = STATE(2360), + [sym_option_type] = STATE(2360), + [sym_qualified_type] = STATE(3460), + [sym_fixed_array_type] = STATE(2362), + [sym_array_type] = STATE(2362), + [sym_pointer_type] = STATE(2362), + [sym_wrong_pointer_type] = STATE(2362), + [sym_map_type] = STATE(2362), + [sym_channel_type] = STATE(2362), + [sym_shared_type] = STATE(2362), + [sym_thread_type] = STATE(2362), + [sym_atomic_type] = STATE(2362), + [sym_generic_type] = STATE(2362), + [sym_function_type] = STATE(2362), + [sym_identifier] = ACTIONS(3184), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(811), - [anon_sym_LBRACE] = ACTIONS(3144), - [anon_sym_LPAREN] = ACTIONS(815), - [anon_sym_fn] = ACTIONS(817), - [anon_sym_PLUS] = ACTIONS(819), - [anon_sym_DASH] = ACTIONS(819), - [anon_sym_STAR] = ACTIONS(821), - [anon_sym_struct] = ACTIONS(823), + [anon_sym_DOT] = ACTIONS(17), + [anon_sym_LBRACE] = ACTIONS(3186), + [anon_sym_LPAREN] = ACTIONS(23), + [anon_sym_fn] = ACTIONS(485), + [anon_sym_PLUS] = ACTIONS(31), + [anon_sym_DASH] = ACTIONS(31), + [anon_sym_STAR] = ACTIONS(33), + [anon_sym_struct] = ACTIONS(487), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(827), - [anon_sym_go] = ACTIONS(829), - [anon_sym_spawn] = ACTIONS(831), - [anon_sym_json_DOTdecode] = ACTIONS(833), - [anon_sym_LBRACK2] = ACTIONS(835), - [anon_sym_TILDE] = ACTIONS(819), - [anon_sym_CARET] = ACTIONS(819), - [anon_sym_AMP] = ACTIONS(837), - [anon_sym_LT_DASH] = ACTIONS(839), - [sym_none] = ACTIONS(841), - [sym_true] = ACTIONS(841), - [sym_false] = ACTIONS(841), - [sym_nil] = ACTIONS(841), - [anon_sym_if] = ACTIONS(843), - [anon_sym_DOLLARif] = ACTIONS(845), - [anon_sym_match] = ACTIONS(847), - [anon_sym_select] = ACTIONS(849), - [anon_sym_lock] = ACTIONS(851), - [anon_sym_rlock] = ACTIONS(851), - [anon_sym_unsafe] = ACTIONS(853), - [anon_sym_sql] = ACTIONS(855), - [sym_int_literal] = ACTIONS(841), - [sym_float_literal] = ACTIONS(857), - [sym_rune_literal] = ACTIONS(857), - [sym_pseudo_compile_time_identifier] = ACTIONS(859), + [anon_sym_BANG] = ACTIONS(49), + [anon_sym_go] = ACTIONS(51), + [anon_sym_spawn] = ACTIONS(53), + [anon_sym_json_DOTdecode] = ACTIONS(55), + [anon_sym_LBRACK2] = ACTIONS(489), + [anon_sym_TILDE] = ACTIONS(31), + [anon_sym_CARET] = ACTIONS(31), + [anon_sym_AMP] = ACTIONS(59), + [anon_sym_LT_DASH] = ACTIONS(61), + [sym_none] = ACTIONS(63), + [sym_true] = ACTIONS(63), + [sym_false] = ACTIONS(63), + [sym_nil] = ACTIONS(63), + [anon_sym_if] = ACTIONS(65), + [anon_sym_DOLLARif] = ACTIONS(67), + [anon_sym_match] = ACTIONS(69), + [anon_sym_select] = ACTIONS(71), + [anon_sym_lock] = ACTIONS(73), + [anon_sym_rlock] = ACTIONS(73), + [anon_sym_unsafe] = ACTIONS(75), + [anon_sym_sql] = ACTIONS(77), + [sym_int_literal] = ACTIONS(63), + [sym_float_literal] = ACTIONS(79), + [sym_rune_literal] = ACTIONS(79), + [sym_pseudo_compile_time_identifier] = ACTIONS(81), [anon_sym_shared] = ACTIONS(83), [anon_sym_map_LBRACK] = ACTIONS(85), [anon_sym_chan] = ACTIONS(87), [anon_sym_thread] = ACTIONS(89), [anon_sym_atomic] = ACTIONS(91), - [sym___double_quote] = ACTIONS(861), - [sym___single_quote] = ACTIONS(863), - [sym___c_double_quote] = ACTIONS(865), - [sym___c_single_quote] = ACTIONS(867), - [sym___r_double_quote] = ACTIONS(869), - [sym___r_single_quote] = ACTIONS(871), + [sym___double_quote] = ACTIONS(115), + [sym___single_quote] = ACTIONS(117), + [sym___c_double_quote] = ACTIONS(119), + [sym___c_single_quote] = ACTIONS(121), + [sym___r_double_quote] = ACTIONS(123), + [sym___r_single_quote] = ACTIONS(125), }, [765] = { [sym_line_comment] = STATE(765), [sym_block_comment] = STATE(765), - [sym__expression] = STATE(2605), - [sym__expression_without_blocks] = STATE(2300), - [sym__expression_with_blocks] = STATE(2300), - [sym_inc_expression] = STATE(2307), - [sym_dec_expression] = STATE(2307), - [sym_or_block_expression] = STATE(2307), - [sym_option_propagation_expression] = STATE(2307), - [sym_result_propagation_expression] = STATE(2307), - [sym_anon_struct_value_expression] = STATE(2380), - [sym_go_expression] = STATE(2307), - [sym_spawn_expression] = STATE(2307), - [sym_parenthesized_expression] = STATE(2307), - [sym_call_expression] = STATE(2307), - [sym_type_initializer] = STATE(2380), - [sym_function_literal] = STATE(2307), - [sym_reference_expression] = STATE(2311), - [sym_type_reference_expression] = STATE(3541), - [sym_unary_expression] = STATE(2307), - [sym_receive_expression] = STATE(2307), - [sym_binary_expression] = STATE(2307), - [sym_as_type_cast_expression] = STATE(2307), - [sym__max_group] = STATE(2307), - [sym_literal] = STATE(2292), - [sym_map_init_expression] = STATE(2380), - [sym_array_creation] = STATE(2307), - [sym_fixed_array_creation] = STATE(2307), - [sym_selector_expression] = STATE(2307), - [sym_index_expression] = STATE(2307), - [sym_slice_expression] = STATE(2307), - [sym_if_expression] = STATE(2380), - [sym_compile_time_if_expression] = STATE(2380), - [sym_is_expression] = STATE(2307), - [sym_in_expression] = STATE(2307), - [sym_enum_fetch] = STATE(2307), - [sym_match_expression] = STATE(2380), - [sym_select_expression] = STATE(2380), - [sym_lock_expression] = STATE(2380), - [sym_unsafe_expression] = STATE(2380), - [sym_sql_expression] = STATE(2380), - [sym_c_string_literal] = STATE(2308), - [sym_raw_string_literal] = STATE(2308), - [sym_interpreted_string_literal] = STATE(2308), - [sym_mutability_modifiers] = STATE(632), - [sym_plain_type] = STATE(4297), - [sym__plain_type_without_special] = STATE(2302), - [sym_anon_struct_type] = STATE(2303), - [sym_multi_return_type] = STATE(2302), - [sym_result_type] = STATE(2302), - [sym_option_type] = STATE(2302), - [sym_qualified_type] = STATE(3541), - [sym_fixed_array_type] = STATE(2303), - [sym_array_type] = STATE(2303), - [sym_pointer_type] = STATE(2303), - [sym_wrong_pointer_type] = STATE(2303), - [sym_map_type] = STATE(2303), - [sym_channel_type] = STATE(2303), - [sym_shared_type] = STATE(2303), - [sym_thread_type] = STATE(2303), - [sym_atomic_type] = STATE(2303), - [sym_generic_type] = STATE(2303), - [sym_function_type] = STATE(2303), - [sym_identifier] = ACTIONS(2189), + [sym__expression] = STATE(2276), + [sym__expression_without_blocks] = STATE(2162), + [sym__expression_with_blocks] = STATE(2162), + [sym_inc_expression] = STATE(2161), + [sym_dec_expression] = STATE(2161), + [sym_or_block_expression] = STATE(2161), + [sym_option_propagation_expression] = STATE(2161), + [sym_result_propagation_expression] = STATE(2161), + [sym_anon_struct_value_expression] = STATE(2160), + [sym_go_expression] = STATE(2161), + [sym_spawn_expression] = STATE(2161), + [sym_parenthesized_expression] = STATE(2161), + [sym_call_expression] = STATE(2161), + [sym_type_initializer] = STATE(2160), + [sym_function_literal] = STATE(2161), + [sym_reference_expression] = STATE(2159), + [sym_type_reference_expression] = STATE(3460), + [sym_unary_expression] = STATE(2161), + [sym_receive_expression] = STATE(2161), + [sym_binary_expression] = STATE(2161), + [sym_as_type_cast_expression] = STATE(2161), + [sym__max_group] = STATE(2161), + [sym_literal] = STATE(2164), + [sym_map_init_expression] = STATE(2160), + [sym_array_creation] = STATE(2161), + [sym_fixed_array_creation] = STATE(2161), + [sym_selector_expression] = STATE(2161), + [sym_index_expression] = STATE(2161), + [sym_slice_expression] = STATE(2161), + [sym_if_expression] = STATE(2160), + [sym_compile_time_if_expression] = STATE(2160), + [sym_is_expression] = STATE(2161), + [sym_in_expression] = STATE(2161), + [sym_enum_fetch] = STATE(2161), + [sym_match_expression] = STATE(2160), + [sym_select_expression] = STATE(2160), + [sym_lock_expression] = STATE(2160), + [sym_unsafe_expression] = STATE(2160), + [sym_sql_expression] = STATE(2160), + [sym_c_string_literal] = STATE(2166), + [sym_raw_string_literal] = STATE(2166), + [sym_interpreted_string_literal] = STATE(2166), + [sym_mutability_modifiers] = STATE(575), + [sym_plain_type] = STATE(4173), + [sym__plain_type_without_special] = STATE(2360), + [sym_anon_struct_type] = STATE(2362), + [sym_multi_return_type] = STATE(2360), + [sym_result_type] = STATE(2360), + [sym_option_type] = STATE(2360), + [sym_qualified_type] = STATE(3460), + [sym_fixed_array_type] = STATE(2362), + [sym_array_type] = STATE(2362), + [sym_pointer_type] = STATE(2362), + [sym_wrong_pointer_type] = STATE(2362), + [sym_map_type] = STATE(2362), + [sym_channel_type] = STATE(2362), + [sym_shared_type] = STATE(2362), + [sym_thread_type] = STATE(2362), + [sym_atomic_type] = STATE(2362), + [sym_generic_type] = STATE(2362), + [sym_function_type] = STATE(2362), + [sym_identifier] = ACTIONS(3292), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1428), - [anon_sym_LBRACE] = ACTIONS(1430), - [anon_sym_LPAREN] = ACTIONS(1432), - [anon_sym_fn] = ACTIONS(1434), - [anon_sym_PLUS] = ACTIONS(2191), - [anon_sym_DASH] = ACTIONS(2191), - [anon_sym_STAR] = ACTIONS(2193), - [anon_sym_struct] = ACTIONS(1440), + [anon_sym_DOT] = ACTIONS(3294), + [anon_sym_LBRACE] = ACTIONS(3296), + [anon_sym_LPAREN] = ACTIONS(3298), + [anon_sym_fn] = ACTIONS(3300), + [anon_sym_PLUS] = ACTIONS(3404), + [anon_sym_DASH] = ACTIONS(3404), + [anon_sym_STAR] = ACTIONS(3406), + [anon_sym_struct] = ACTIONS(3306), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(2195), - [anon_sym_go] = ACTIONS(2197), - [anon_sym_spawn] = ACTIONS(2199), - [anon_sym_json_DOTdecode] = ACTIONS(1448), - [anon_sym_LBRACK2] = ACTIONS(2201), - [anon_sym_TILDE] = ACTIONS(2191), - [anon_sym_CARET] = ACTIONS(2191), - [anon_sym_AMP] = ACTIONS(2203), - [anon_sym_LT_DASH] = ACTIONS(2205), - [sym_none] = ACTIONS(1456), - [sym_true] = ACTIONS(1456), - [sym_false] = ACTIONS(1456), - [sym_nil] = ACTIONS(1456), - [anon_sym_if] = ACTIONS(1827), - [anon_sym_DOLLARif] = ACTIONS(1460), - [anon_sym_match] = ACTIONS(1462), - [anon_sym_select] = ACTIONS(2207), - [anon_sym_lock] = ACTIONS(2209), - [anon_sym_rlock] = ACTIONS(2209), - [anon_sym_unsafe] = ACTIONS(1833), - [anon_sym_sql] = ACTIONS(1470), - [sym_int_literal] = ACTIONS(1456), - [sym_float_literal] = ACTIONS(1472), - [sym_rune_literal] = ACTIONS(1472), - [sym_pseudo_compile_time_identifier] = ACTIONS(1474), + [anon_sym_BANG] = ACTIONS(3408), + [anon_sym_go] = ACTIONS(3410), + [anon_sym_spawn] = ACTIONS(3412), + [anon_sym_json_DOTdecode] = ACTIONS(3314), + [anon_sym_LBRACK2] = ACTIONS(3316), + [anon_sym_TILDE] = ACTIONS(3404), + [anon_sym_CARET] = ACTIONS(3404), + [anon_sym_AMP] = ACTIONS(3414), + [anon_sym_LT_DASH] = ACTIONS(3416), + [sym_none] = ACTIONS(3322), + [sym_true] = ACTIONS(3322), + [sym_false] = ACTIONS(3322), + [sym_nil] = ACTIONS(3322), + [anon_sym_if] = ACTIONS(3324), + [anon_sym_DOLLARif] = ACTIONS(3326), + [anon_sym_match] = ACTIONS(3328), + [anon_sym_select] = ACTIONS(3418), + [anon_sym_lock] = ACTIONS(3420), + [anon_sym_rlock] = ACTIONS(3420), + [anon_sym_unsafe] = ACTIONS(3334), + [anon_sym_sql] = ACTIONS(3336), + [sym_int_literal] = ACTIONS(3322), + [sym_float_literal] = ACTIONS(3338), + [sym_rune_literal] = ACTIONS(3338), + [sym_pseudo_compile_time_identifier] = ACTIONS(3340), [anon_sym_shared] = ACTIONS(83), [anon_sym_map_LBRACK] = ACTIONS(85), [anon_sym_chan] = ACTIONS(87), [anon_sym_thread] = ACTIONS(89), [anon_sym_atomic] = ACTIONS(91), - [sym___double_quote] = ACTIONS(1478), - [sym___single_quote] = ACTIONS(1480), - [sym___c_double_quote] = ACTIONS(1482), - [sym___c_single_quote] = ACTIONS(1484), - [sym___r_double_quote] = ACTIONS(1486), - [sym___r_single_quote] = ACTIONS(1488), + [sym___double_quote] = ACTIONS(3342), + [sym___single_quote] = ACTIONS(3344), + [sym___c_double_quote] = ACTIONS(3346), + [sym___c_single_quote] = ACTIONS(3348), + [sym___r_double_quote] = ACTIONS(3350), + [sym___r_single_quote] = ACTIONS(3352), }, [766] = { [sym_line_comment] = STATE(766), [sym_block_comment] = STATE(766), - [sym__expression] = STATE(2636), - [sym__expression_without_blocks] = STATE(2300), - [sym__expression_with_blocks] = STATE(2300), - [sym_inc_expression] = STATE(2307), - [sym_dec_expression] = STATE(2307), - [sym_or_block_expression] = STATE(2307), - [sym_option_propagation_expression] = STATE(2307), - [sym_result_propagation_expression] = STATE(2307), - [sym_anon_struct_value_expression] = STATE(2380), - [sym_go_expression] = STATE(2307), - [sym_spawn_expression] = STATE(2307), - [sym_parenthesized_expression] = STATE(2307), - [sym_call_expression] = STATE(2307), - [sym_type_initializer] = STATE(2380), - [sym_function_literal] = STATE(2307), - [sym_reference_expression] = STATE(2311), - [sym_type_reference_expression] = STATE(3541), - [sym_unary_expression] = STATE(2307), - [sym_receive_expression] = STATE(2307), - [sym_binary_expression] = STATE(2307), - [sym_as_type_cast_expression] = STATE(2307), - [sym__max_group] = STATE(2307), - [sym_literal] = STATE(2292), - [sym_map_init_expression] = STATE(2380), - [sym_array_creation] = STATE(2307), - [sym_fixed_array_creation] = STATE(2307), - [sym_selector_expression] = STATE(2307), - [sym_index_expression] = STATE(2307), - [sym_slice_expression] = STATE(2307), - [sym_if_expression] = STATE(2380), - [sym_compile_time_if_expression] = STATE(2380), - [sym_is_expression] = STATE(2307), - [sym_in_expression] = STATE(2307), - [sym_enum_fetch] = STATE(2307), - [sym_match_expression] = STATE(2380), - [sym_select_expression] = STATE(2380), - [sym_lock_expression] = STATE(2380), - [sym_unsafe_expression] = STATE(2380), - [sym_sql_expression] = STATE(2380), - [sym_c_string_literal] = STATE(2308), - [sym_raw_string_literal] = STATE(2308), - [sym_interpreted_string_literal] = STATE(2308), - [sym_mutability_modifiers] = STATE(939), - [sym_plain_type] = STATE(3552), - [sym__plain_type_without_special] = STATE(2302), - [sym_anon_struct_type] = STATE(2303), - [sym_multi_return_type] = STATE(2302), - [sym_result_type] = STATE(2302), - [sym_option_type] = STATE(2302), - [sym_qualified_type] = STATE(3541), - [sym_fixed_array_type] = STATE(2303), - [sym_array_type] = STATE(2303), - [sym_pointer_type] = STATE(2303), - [sym_wrong_pointer_type] = STATE(2303), - [sym_map_type] = STATE(2303), - [sym_channel_type] = STATE(2303), - [sym_shared_type] = STATE(2303), - [sym_thread_type] = STATE(2303), - [sym_atomic_type] = STATE(2303), - [sym_generic_type] = STATE(2303), - [sym_function_type] = STATE(2303), - [sym_identifier] = ACTIONS(1426), + [sym__expression] = STATE(223), + [sym__expression_without_blocks] = STATE(401), + [sym__expression_with_blocks] = STATE(401), + [sym_inc_expression] = STATE(399), + [sym_dec_expression] = STATE(399), + [sym_or_block_expression] = STATE(399), + [sym_option_propagation_expression] = STATE(399), + [sym_result_propagation_expression] = STATE(399), + [sym_anon_struct_value_expression] = STATE(395), + [sym_go_expression] = STATE(399), + [sym_spawn_expression] = STATE(399), + [sym_parenthesized_expression] = STATE(399), + [sym_call_expression] = STATE(399), + [sym_type_initializer] = STATE(395), + [sym_function_literal] = STATE(399), + [sym_reference_expression] = STATE(393), + [sym_type_reference_expression] = STATE(3460), + [sym_unary_expression] = STATE(399), + [sym_receive_expression] = STATE(399), + [sym_binary_expression] = STATE(399), + [sym_as_type_cast_expression] = STATE(399), + [sym__max_group] = STATE(399), + [sym_literal] = STATE(455), + [sym_map_init_expression] = STATE(395), + [sym_array_creation] = STATE(399), + [sym_fixed_array_creation] = STATE(399), + [sym_selector_expression] = STATE(399), + [sym_index_expression] = STATE(399), + [sym_slice_expression] = STATE(399), + [sym_if_expression] = STATE(395), + [sym_compile_time_if_expression] = STATE(395), + [sym_is_expression] = STATE(399), + [sym_in_expression] = STATE(399), + [sym_enum_fetch] = STATE(399), + [sym_match_expression] = STATE(395), + [sym_select_expression] = STATE(395), + [sym_lock_expression] = STATE(395), + [sym_unsafe_expression] = STATE(395), + [sym_sql_expression] = STATE(395), + [sym_c_string_literal] = STATE(479), + [sym_raw_string_literal] = STATE(479), + [sym_interpreted_string_literal] = STATE(479), + [sym_mutability_modifiers] = STATE(845), + [sym_plain_type] = STATE(4069), + [sym__plain_type_without_special] = STATE(2360), + [sym_anon_struct_type] = STATE(2362), + [sym_multi_return_type] = STATE(2360), + [sym_result_type] = STATE(2360), + [sym_option_type] = STATE(2360), + [sym_qualified_type] = STATE(3460), + [sym_fixed_array_type] = STATE(2362), + [sym_array_type] = STATE(2362), + [sym_pointer_type] = STATE(2362), + [sym_wrong_pointer_type] = STATE(2362), + [sym_map_type] = STATE(2362), + [sym_channel_type] = STATE(2362), + [sym_shared_type] = STATE(2362), + [sym_thread_type] = STATE(2362), + [sym_atomic_type] = STATE(2362), + [sym_generic_type] = STATE(2362), + [sym_function_type] = STATE(2362), + [sym_identifier] = ACTIONS(3184), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1428), - [anon_sym_LBRACE] = ACTIONS(1430), - [anon_sym_LPAREN] = ACTIONS(1432), - [anon_sym_fn] = ACTIONS(1434), - [anon_sym_PLUS] = ACTIONS(2491), - [anon_sym_DASH] = ACTIONS(2491), - [anon_sym_STAR] = ACTIONS(2493), - [anon_sym_struct] = ACTIONS(1440), + [anon_sym_DOT] = ACTIONS(17), + [anon_sym_LBRACE] = ACTIONS(3186), + [anon_sym_LPAREN] = ACTIONS(23), + [anon_sym_fn] = ACTIONS(485), + [anon_sym_PLUS] = ACTIONS(31), + [anon_sym_DASH] = ACTIONS(31), + [anon_sym_STAR] = ACTIONS(33), + [anon_sym_struct] = ACTIONS(487), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(2495), - [anon_sym_go] = ACTIONS(2497), - [anon_sym_spawn] = ACTIONS(2499), - [anon_sym_json_DOTdecode] = ACTIONS(1448), - [anon_sym_LBRACK2] = ACTIONS(1450), - [anon_sym_TILDE] = ACTIONS(2491), - [anon_sym_CARET] = ACTIONS(2491), - [anon_sym_AMP] = ACTIONS(2501), - [anon_sym_LT_DASH] = ACTIONS(2503), - [sym_none] = ACTIONS(1456), - [sym_true] = ACTIONS(1456), - [sym_false] = ACTIONS(1456), - [sym_nil] = ACTIONS(1456), - [anon_sym_if] = ACTIONS(1827), - [anon_sym_DOLLARif] = ACTIONS(1460), - [anon_sym_match] = ACTIONS(1462), - [anon_sym_select] = ACTIONS(1464), - [anon_sym_lock] = ACTIONS(1466), - [anon_sym_rlock] = ACTIONS(1466), - [anon_sym_unsafe] = ACTIONS(1833), - [anon_sym_sql] = ACTIONS(1470), - [sym_int_literal] = ACTIONS(1456), - [sym_float_literal] = ACTIONS(1472), - [sym_rune_literal] = ACTIONS(1472), - [sym_pseudo_compile_time_identifier] = ACTIONS(1474), + [anon_sym_BANG] = ACTIONS(49), + [anon_sym_go] = ACTIONS(51), + [anon_sym_spawn] = ACTIONS(53), + [anon_sym_json_DOTdecode] = ACTIONS(55), + [anon_sym_LBRACK2] = ACTIONS(489), + [anon_sym_TILDE] = ACTIONS(31), + [anon_sym_CARET] = ACTIONS(31), + [anon_sym_AMP] = ACTIONS(59), + [anon_sym_LT_DASH] = ACTIONS(61), + [sym_none] = ACTIONS(63), + [sym_true] = ACTIONS(63), + [sym_false] = ACTIONS(63), + [sym_nil] = ACTIONS(63), + [anon_sym_if] = ACTIONS(65), + [anon_sym_DOLLARif] = ACTIONS(67), + [anon_sym_match] = ACTIONS(69), + [anon_sym_select] = ACTIONS(71), + [anon_sym_lock] = ACTIONS(73), + [anon_sym_rlock] = ACTIONS(73), + [anon_sym_unsafe] = ACTIONS(75), + [anon_sym_sql] = ACTIONS(77), + [sym_int_literal] = ACTIONS(63), + [sym_float_literal] = ACTIONS(79), + [sym_rune_literal] = ACTIONS(79), + [sym_pseudo_compile_time_identifier] = ACTIONS(81), [anon_sym_shared] = ACTIONS(83), [anon_sym_map_LBRACK] = ACTIONS(85), [anon_sym_chan] = ACTIONS(87), [anon_sym_thread] = ACTIONS(89), [anon_sym_atomic] = ACTIONS(91), - [sym___double_quote] = ACTIONS(1478), - [sym___single_quote] = ACTIONS(1480), - [sym___c_double_quote] = ACTIONS(1482), - [sym___c_single_quote] = ACTIONS(1484), - [sym___r_double_quote] = ACTIONS(1486), - [sym___r_single_quote] = ACTIONS(1488), + [sym___double_quote] = ACTIONS(115), + [sym___single_quote] = ACTIONS(117), + [sym___c_double_quote] = ACTIONS(119), + [sym___c_single_quote] = ACTIONS(121), + [sym___r_double_quote] = ACTIONS(123), + [sym___r_single_quote] = ACTIONS(125), }, [767] = { [sym_line_comment] = STATE(767), [sym_block_comment] = STATE(767), - [sym__expression] = STATE(2606), - [sym__expression_without_blocks] = STATE(2300), - [sym__expression_with_blocks] = STATE(2300), - [sym_inc_expression] = STATE(2307), - [sym_dec_expression] = STATE(2307), - [sym_or_block_expression] = STATE(2307), - [sym_option_propagation_expression] = STATE(2307), - [sym_result_propagation_expression] = STATE(2307), - [sym_anon_struct_value_expression] = STATE(2380), - [sym_go_expression] = STATE(2307), - [sym_spawn_expression] = STATE(2307), - [sym_parenthesized_expression] = STATE(2307), - [sym_call_expression] = STATE(2307), - [sym_type_initializer] = STATE(2380), - [sym_function_literal] = STATE(2307), - [sym_reference_expression] = STATE(2311), - [sym_type_reference_expression] = STATE(3541), - [sym_unary_expression] = STATE(2307), - [sym_receive_expression] = STATE(2307), - [sym_binary_expression] = STATE(2307), - [sym_as_type_cast_expression] = STATE(2307), - [sym__max_group] = STATE(2307), - [sym_literal] = STATE(2292), - [sym_map_init_expression] = STATE(2380), - [sym_array_creation] = STATE(2307), - [sym_fixed_array_creation] = STATE(2307), - [sym_selector_expression] = STATE(2307), - [sym_index_expression] = STATE(2307), - [sym_slice_expression] = STATE(2307), - [sym_if_expression] = STATE(2380), - [sym_compile_time_if_expression] = STATE(2380), - [sym_is_expression] = STATE(2307), - [sym_in_expression] = STATE(2307), - [sym_enum_fetch] = STATE(2307), - [sym_match_expression] = STATE(2380), - [sym_select_expression] = STATE(2380), - [sym_lock_expression] = STATE(2380), - [sym_unsafe_expression] = STATE(2380), - [sym_sql_expression] = STATE(2380), - [sym_c_string_literal] = STATE(2308), - [sym_raw_string_literal] = STATE(2308), - [sym_interpreted_string_literal] = STATE(2308), - [sym_mutability_modifiers] = STATE(939), - [sym_plain_type] = STATE(4297), - [sym__plain_type_without_special] = STATE(2302), - [sym_anon_struct_type] = STATE(2303), - [sym_multi_return_type] = STATE(2302), - [sym_result_type] = STATE(2302), - [sym_option_type] = STATE(2302), - [sym_qualified_type] = STATE(3541), - [sym_fixed_array_type] = STATE(2303), - [sym_array_type] = STATE(2303), - [sym_pointer_type] = STATE(2303), - [sym_wrong_pointer_type] = STATE(2303), - [sym_map_type] = STATE(2303), - [sym_channel_type] = STATE(2303), - [sym_shared_type] = STATE(2303), - [sym_thread_type] = STATE(2303), - [sym_atomic_type] = STATE(2303), - [sym_generic_type] = STATE(2303), - [sym_function_type] = STATE(2303), - [sym_identifier] = ACTIONS(1807), + [sym__expression] = STATE(978), + [sym__expression_without_blocks] = STATE(1086), + [sym__expression_with_blocks] = STATE(1086), + [sym_inc_expression] = STATE(1088), + [sym_dec_expression] = STATE(1088), + [sym_or_block_expression] = STATE(1088), + [sym_option_propagation_expression] = STATE(1088), + [sym_result_propagation_expression] = STATE(1088), + [sym_anon_struct_value_expression] = STATE(1025), + [sym_go_expression] = STATE(1088), + [sym_spawn_expression] = STATE(1088), + [sym_parenthesized_expression] = STATE(1088), + [sym_call_expression] = STATE(1088), + [sym_type_initializer] = STATE(1025), + [sym_function_literal] = STATE(1088), + [sym_reference_expression] = STATE(1024), + [sym_type_reference_expression] = STATE(3460), + [sym_unary_expression] = STATE(1088), + [sym_receive_expression] = STATE(1088), + [sym_binary_expression] = STATE(1088), + [sym_as_type_cast_expression] = STATE(1088), + [sym__max_group] = STATE(1088), + [sym_literal] = STATE(1078), + [sym_map_init_expression] = STATE(1025), + [sym_array_creation] = STATE(1088), + [sym_fixed_array_creation] = STATE(1088), + [sym_selector_expression] = STATE(1088), + [sym_index_expression] = STATE(1088), + [sym_slice_expression] = STATE(1088), + [sym_if_expression] = STATE(1025), + [sym_compile_time_if_expression] = STATE(1025), + [sym_is_expression] = STATE(1088), + [sym_in_expression] = STATE(1088), + [sym_enum_fetch] = STATE(1088), + [sym_match_expression] = STATE(1025), + [sym_select_expression] = STATE(1025), + [sym_lock_expression] = STATE(1025), + [sym_unsafe_expression] = STATE(1025), + [sym_sql_expression] = STATE(1025), + [sym_c_string_literal] = STATE(993), + [sym_raw_string_literal] = STATE(993), + [sym_interpreted_string_literal] = STATE(993), + [sym_mutability_modifiers] = STATE(618), + [sym_plain_type] = STATE(4090), + [sym__plain_type_without_special] = STATE(2360), + [sym_anon_struct_type] = STATE(2362), + [sym_multi_return_type] = STATE(2360), + [sym_result_type] = STATE(2360), + [sym_option_type] = STATE(2360), + [sym_qualified_type] = STATE(3460), + [sym_fixed_array_type] = STATE(2362), + [sym_array_type] = STATE(2362), + [sym_pointer_type] = STATE(2362), + [sym_wrong_pointer_type] = STATE(2362), + [sym_map_type] = STATE(2362), + [sym_channel_type] = STATE(2362), + [sym_shared_type] = STATE(2362), + [sym_thread_type] = STATE(2362), + [sym_atomic_type] = STATE(2362), + [sym_generic_type] = STATE(2362), + [sym_function_type] = STATE(2362), + [sym_identifier] = ACTIONS(493), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1428), - [anon_sym_LBRACE] = ACTIONS(1430), - [anon_sym_LPAREN] = ACTIONS(1432), - [anon_sym_fn] = ACTIONS(1434), - [anon_sym_PLUS] = ACTIONS(3064), - [anon_sym_DASH] = ACTIONS(3064), - [anon_sym_STAR] = ACTIONS(3066), - [anon_sym_struct] = ACTIONS(1440), + [anon_sym_DOT] = ACTIONS(501), + [anon_sym_LBRACE] = ACTIONS(2235), + [anon_sym_LPAREN] = ACTIONS(2237), + [anon_sym_fn] = ACTIONS(507), + [anon_sym_PLUS] = ACTIONS(3366), + [anon_sym_DASH] = ACTIONS(3366), + [anon_sym_STAR] = ACTIONS(3368), + [anon_sym_struct] = ACTIONS(513), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(3068), - [anon_sym_go] = ACTIONS(3070), - [anon_sym_spawn] = ACTIONS(3072), - [anon_sym_json_DOTdecode] = ACTIONS(1448), - [anon_sym_LBRACK2] = ACTIONS(1821), - [anon_sym_TILDE] = ACTIONS(3064), - [anon_sym_CARET] = ACTIONS(3064), - [anon_sym_AMP] = ACTIONS(3074), - [anon_sym_LT_DASH] = ACTIONS(3076), - [sym_none] = ACTIONS(1456), - [sym_true] = ACTIONS(1456), - [sym_false] = ACTIONS(1456), - [sym_nil] = ACTIONS(1456), - [anon_sym_if] = ACTIONS(1827), - [anon_sym_DOLLARif] = ACTIONS(1460), - [anon_sym_match] = ACTIONS(1462), - [anon_sym_select] = ACTIONS(3078), - [anon_sym_lock] = ACTIONS(3080), - [anon_sym_rlock] = ACTIONS(3080), - [anon_sym_unsafe] = ACTIONS(1833), - [anon_sym_sql] = ACTIONS(1470), - [sym_int_literal] = ACTIONS(1456), - [sym_float_literal] = ACTIONS(1472), - [sym_rune_literal] = ACTIONS(1472), - [sym_pseudo_compile_time_identifier] = ACTIONS(1474), + [anon_sym_BANG] = ACTIONS(3370), + [anon_sym_go] = ACTIONS(3372), + [anon_sym_spawn] = ACTIONS(3374), + [anon_sym_json_DOTdecode] = ACTIONS(2245), + [anon_sym_LBRACK2] = ACTIONS(2247), + [anon_sym_TILDE] = ACTIONS(3366), + [anon_sym_CARET] = ACTIONS(3366), + [anon_sym_AMP] = ACTIONS(3376), + [anon_sym_LT_DASH] = ACTIONS(3378), + [sym_none] = ACTIONS(531), + [sym_true] = ACTIONS(531), + [sym_false] = ACTIONS(531), + [sym_nil] = ACTIONS(531), + [anon_sym_if] = ACTIONS(533), + [anon_sym_DOLLARif] = ACTIONS(535), + [anon_sym_match] = ACTIONS(537), + [anon_sym_select] = ACTIONS(3380), + [anon_sym_lock] = ACTIONS(3382), + [anon_sym_rlock] = ACTIONS(3382), + [anon_sym_unsafe] = ACTIONS(543), + [anon_sym_sql] = ACTIONS(545), + [sym_int_literal] = ACTIONS(531), + [sym_float_literal] = ACTIONS(2253), + [sym_rune_literal] = ACTIONS(2253), + [sym_pseudo_compile_time_identifier] = ACTIONS(547), [anon_sym_shared] = ACTIONS(83), [anon_sym_map_LBRACK] = ACTIONS(85), [anon_sym_chan] = ACTIONS(87), [anon_sym_thread] = ACTIONS(89), [anon_sym_atomic] = ACTIONS(91), - [sym___double_quote] = ACTIONS(1478), - [sym___single_quote] = ACTIONS(1480), - [sym___c_double_quote] = ACTIONS(1482), - [sym___c_single_quote] = ACTIONS(1484), - [sym___r_double_quote] = ACTIONS(1486), - [sym___r_single_quote] = ACTIONS(1488), + [sym___double_quote] = ACTIONS(2255), + [sym___single_quote] = ACTIONS(2257), + [sym___c_double_quote] = ACTIONS(2259), + [sym___c_single_quote] = ACTIONS(2261), + [sym___r_double_quote] = ACTIONS(2263), + [sym___r_single_quote] = ACTIONS(2265), }, [768] = { [sym_line_comment] = STATE(768), [sym_block_comment] = STATE(768), - [sym__expression] = STATE(2431), - [sym__expression_without_blocks] = STATE(2300), - [sym__expression_with_blocks] = STATE(2300), - [sym_inc_expression] = STATE(2307), - [sym_dec_expression] = STATE(2307), - [sym_or_block_expression] = STATE(2307), - [sym_option_propagation_expression] = STATE(2307), - [sym_result_propagation_expression] = STATE(2307), - [sym_anon_struct_value_expression] = STATE(2380), - [sym_go_expression] = STATE(2307), - [sym_spawn_expression] = STATE(2307), - [sym_parenthesized_expression] = STATE(2307), - [sym_call_expression] = STATE(2307), - [sym_type_initializer] = STATE(2380), - [sym_function_literal] = STATE(2307), - [sym_reference_expression] = STATE(2311), - [sym_type_reference_expression] = STATE(3541), - [sym_unary_expression] = STATE(2307), - [sym_receive_expression] = STATE(2307), - [sym_binary_expression] = STATE(2307), - [sym_as_type_cast_expression] = STATE(2307), - [sym__max_group] = STATE(2307), - [sym_literal] = STATE(2292), - [sym_map_init_expression] = STATE(2380), - [sym_array_creation] = STATE(2307), - [sym_fixed_array_creation] = STATE(2307), - [sym_selector_expression] = STATE(2307), - [sym_index_expression] = STATE(2307), - [sym_slice_expression] = STATE(2307), - [sym_if_expression] = STATE(2380), - [sym_compile_time_if_expression] = STATE(2380), - [sym_is_expression] = STATE(2307), - [sym_in_expression] = STATE(2307), - [sym_enum_fetch] = STATE(2307), - [sym_match_expression] = STATE(2380), - [sym_select_expression] = STATE(2380), - [sym_lock_expression] = STATE(2380), - [sym_unsafe_expression] = STATE(2380), - [sym_sql_expression] = STATE(2380), - [sym_c_string_literal] = STATE(2308), - [sym_raw_string_literal] = STATE(2308), - [sym_interpreted_string_literal] = STATE(2308), + [sym__expression] = STATE(2267), + [sym__expression_without_blocks] = STATE(2347), + [sym__expression_with_blocks] = STATE(2347), + [sym_inc_expression] = STATE(2379), + [sym_dec_expression] = STATE(2379), + [sym_or_block_expression] = STATE(2379), + [sym_option_propagation_expression] = STATE(2379), + [sym_result_propagation_expression] = STATE(2379), + [sym_anon_struct_value_expression] = STATE(2378), + [sym_go_expression] = STATE(2379), + [sym_spawn_expression] = STATE(2379), + [sym_parenthesized_expression] = STATE(2379), + [sym_call_expression] = STATE(2379), + [sym_type_initializer] = STATE(2378), + [sym_function_literal] = STATE(2379), + [sym_reference_expression] = STATE(2377), + [sym_type_reference_expression] = STATE(3460), + [sym_unary_expression] = STATE(2379), + [sym_receive_expression] = STATE(2379), + [sym_binary_expression] = STATE(2379), + [sym_as_type_cast_expression] = STATE(2379), + [sym__max_group] = STATE(2379), + [sym_literal] = STATE(2392), + [sym_map_init_expression] = STATE(2378), + [sym_array_creation] = STATE(2379), + [sym_fixed_array_creation] = STATE(2379), + [sym_selector_expression] = STATE(2379), + [sym_index_expression] = STATE(2379), + [sym_slice_expression] = STATE(2379), + [sym_if_expression] = STATE(2378), + [sym_compile_time_if_expression] = STATE(2378), + [sym_is_expression] = STATE(2379), + [sym_in_expression] = STATE(2379), + [sym_enum_fetch] = STATE(2379), + [sym_match_expression] = STATE(2378), + [sym_select_expression] = STATE(2378), + [sym_lock_expression] = STATE(2378), + [sym_unsafe_expression] = STATE(2378), + [sym_sql_expression] = STATE(2378), + [sym_c_string_literal] = STATE(2401), + [sym_raw_string_literal] = STATE(2401), + [sym_interpreted_string_literal] = STATE(2401), [sym_mutability_modifiers] = STATE(939), - [sym_plain_type] = STATE(4297), - [sym__plain_type_without_special] = STATE(2302), - [sym_anon_struct_type] = STATE(2303), - [sym_multi_return_type] = STATE(2302), - [sym_result_type] = STATE(2302), - [sym_option_type] = STATE(2302), - [sym_qualified_type] = STATE(3541), - [sym_fixed_array_type] = STATE(2303), - [sym_array_type] = STATE(2303), - [sym_pointer_type] = STATE(2303), - [sym_wrong_pointer_type] = STATE(2303), - [sym_map_type] = STATE(2303), - [sym_channel_type] = STATE(2303), - [sym_shared_type] = STATE(2303), - [sym_thread_type] = STATE(2303), - [sym_atomic_type] = STATE(2303), - [sym_generic_type] = STATE(2303), - [sym_function_type] = STATE(2303), - [sym_identifier] = ACTIONS(1426), + [sym_plain_type] = STATE(3559), + [sym__plain_type_without_special] = STATE(2360), + [sym_anon_struct_type] = STATE(2362), + [sym_multi_return_type] = STATE(2360), + [sym_result_type] = STATE(2360), + [sym_option_type] = STATE(2360), + [sym_qualified_type] = STATE(3460), + [sym_fixed_array_type] = STATE(2362), + [sym_array_type] = STATE(2362), + [sym_pointer_type] = STATE(2362), + [sym_wrong_pointer_type] = STATE(2362), + [sym_map_type] = STATE(2362), + [sym_channel_type] = STATE(2362), + [sym_shared_type] = STATE(2362), + [sym_thread_type] = STATE(2362), + [sym_atomic_type] = STATE(2362), + [sym_generic_type] = STATE(2362), + [sym_function_type] = STATE(2362), + [sym_identifier] = ACTIONS(1815), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1428), - [anon_sym_LBRACE] = ACTIONS(1430), - [anon_sym_LPAREN] = ACTIONS(1432), - [anon_sym_fn] = ACTIONS(1434), - [anon_sym_PLUS] = ACTIONS(1436), - [anon_sym_DASH] = ACTIONS(1436), - [anon_sym_STAR] = ACTIONS(1438), - [anon_sym_struct] = ACTIONS(1440), + [anon_sym_DOT] = ACTIONS(1430), + [anon_sym_LBRACE] = ACTIONS(1432), + [anon_sym_LPAREN] = ACTIONS(1434), + [anon_sym_fn] = ACTIONS(1436), + [anon_sym_PLUS] = ACTIONS(3090), + [anon_sym_DASH] = ACTIONS(3090), + [anon_sym_STAR] = ACTIONS(3092), + [anon_sym_struct] = ACTIONS(1442), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(1442), - [anon_sym_go] = ACTIONS(1444), - [anon_sym_spawn] = ACTIONS(1446), - [anon_sym_json_DOTdecode] = ACTIONS(1448), - [anon_sym_LBRACK2] = ACTIONS(1450), - [anon_sym_TILDE] = ACTIONS(1436), - [anon_sym_CARET] = ACTIONS(1436), - [anon_sym_AMP] = ACTIONS(1452), - [anon_sym_LT_DASH] = ACTIONS(1454), - [sym_none] = ACTIONS(1456), - [sym_true] = ACTIONS(1456), - [sym_false] = ACTIONS(1456), - [sym_nil] = ACTIONS(1456), - [anon_sym_if] = ACTIONS(1827), - [anon_sym_DOLLARif] = ACTIONS(1460), - [anon_sym_match] = ACTIONS(1462), - [anon_sym_select] = ACTIONS(1464), - [anon_sym_lock] = ACTIONS(1466), - [anon_sym_rlock] = ACTIONS(1466), - [anon_sym_unsafe] = ACTIONS(1833), - [anon_sym_sql] = ACTIONS(1470), - [sym_int_literal] = ACTIONS(1456), - [sym_float_literal] = ACTIONS(1472), - [sym_rune_literal] = ACTIONS(1472), - [sym_pseudo_compile_time_identifier] = ACTIONS(1474), + [anon_sym_BANG] = ACTIONS(3094), + [anon_sym_go] = ACTIONS(3096), + [anon_sym_spawn] = ACTIONS(3098), + [anon_sym_json_DOTdecode] = ACTIONS(1450), + [anon_sym_LBRACK2] = ACTIONS(1827), + [anon_sym_TILDE] = ACTIONS(3090), + [anon_sym_CARET] = ACTIONS(3090), + [anon_sym_AMP] = ACTIONS(3100), + [anon_sym_LT_DASH] = ACTIONS(3102), + [sym_none] = ACTIONS(1458), + [sym_true] = ACTIONS(1458), + [sym_false] = ACTIONS(1458), + [sym_nil] = ACTIONS(1458), + [anon_sym_if] = ACTIONS(1833), + [anon_sym_DOLLARif] = ACTIONS(1462), + [anon_sym_match] = ACTIONS(1464), + [anon_sym_select] = ACTIONS(3104), + [anon_sym_lock] = ACTIONS(3106), + [anon_sym_rlock] = ACTIONS(3106), + [anon_sym_unsafe] = ACTIONS(1839), + [anon_sym_sql] = ACTIONS(1472), + [sym_int_literal] = ACTIONS(1458), + [sym_float_literal] = ACTIONS(1474), + [sym_rune_literal] = ACTIONS(1474), + [sym_pseudo_compile_time_identifier] = ACTIONS(1476), [anon_sym_shared] = ACTIONS(83), [anon_sym_map_LBRACK] = ACTIONS(85), [anon_sym_chan] = ACTIONS(87), [anon_sym_thread] = ACTIONS(89), [anon_sym_atomic] = ACTIONS(91), - [sym___double_quote] = ACTIONS(1478), - [sym___single_quote] = ACTIONS(1480), - [sym___c_double_quote] = ACTIONS(1482), - [sym___c_single_quote] = ACTIONS(1484), - [sym___r_double_quote] = ACTIONS(1486), - [sym___r_single_quote] = ACTIONS(1488), + [sym___double_quote] = ACTIONS(1480), + [sym___single_quote] = ACTIONS(1482), + [sym___c_double_quote] = ACTIONS(1484), + [sym___c_single_quote] = ACTIONS(1486), + [sym___r_double_quote] = ACTIONS(1488), + [sym___r_single_quote] = ACTIONS(1490), }, [769] = { [sym_line_comment] = STATE(769), [sym_block_comment] = STATE(769), - [sym__expression] = STATE(2760), - [sym__expression_without_blocks] = STATE(2300), - [sym__expression_with_blocks] = STATE(2300), - [sym_inc_expression] = STATE(2307), - [sym_dec_expression] = STATE(2307), - [sym_or_block_expression] = STATE(2307), - [sym_option_propagation_expression] = STATE(2307), - [sym_result_propagation_expression] = STATE(2307), - [sym_anon_struct_value_expression] = STATE(2380), - [sym_go_expression] = STATE(2307), - [sym_spawn_expression] = STATE(2307), - [sym_parenthesized_expression] = STATE(2307), - [sym_call_expression] = STATE(2307), - [sym_type_initializer] = STATE(2380), - [sym_function_literal] = STATE(2307), - [sym_reference_expression] = STATE(2311), - [sym_type_reference_expression] = STATE(3541), - [sym_unary_expression] = STATE(2307), - [sym_receive_expression] = STATE(2307), - [sym_binary_expression] = STATE(2307), - [sym_as_type_cast_expression] = STATE(2307), - [sym__max_group] = STATE(2307), - [sym_literal] = STATE(2292), - [sym_map_init_expression] = STATE(2380), - [sym_array_creation] = STATE(2307), - [sym_fixed_array_creation] = STATE(2307), - [sym_selector_expression] = STATE(2307), - [sym_index_expression] = STATE(2307), - [sym_slice_expression] = STATE(2307), - [sym_if_expression] = STATE(2380), - [sym_compile_time_if_expression] = STATE(2380), - [sym_is_expression] = STATE(2307), - [sym_in_expression] = STATE(2307), - [sym_enum_fetch] = STATE(2307), - [sym_match_expression] = STATE(2380), - [sym_select_expression] = STATE(2380), - [sym_lock_expression] = STATE(2380), - [sym_unsafe_expression] = STATE(2380), - [sym_sql_expression] = STATE(2380), - [sym_c_string_literal] = STATE(2308), - [sym_raw_string_literal] = STATE(2308), - [sym_interpreted_string_literal] = STATE(2308), - [sym_mutability_modifiers] = STATE(939), - [sym_plain_type] = STATE(4297), - [sym__plain_type_without_special] = STATE(2302), - [sym_anon_struct_type] = STATE(2303), - [sym_multi_return_type] = STATE(2302), - [sym_result_type] = STATE(2302), - [sym_option_type] = STATE(2302), - [sym_qualified_type] = STATE(3541), - [sym_fixed_array_type] = STATE(2303), - [sym_array_type] = STATE(2303), - [sym_pointer_type] = STATE(2303), - [sym_wrong_pointer_type] = STATE(2303), - [sym_map_type] = STATE(2303), - [sym_channel_type] = STATE(2303), - [sym_shared_type] = STATE(2303), - [sym_thread_type] = STATE(2303), - [sym_atomic_type] = STATE(2303), - [sym_generic_type] = STATE(2303), - [sym_function_type] = STATE(2303), - [sym_identifier] = ACTIONS(1807), + [sym__expression] = STATE(1124), + [sym__expression_without_blocks] = STATE(1210), + [sym__expression_with_blocks] = STATE(1210), + [sym_inc_expression] = STATE(1211), + [sym_dec_expression] = STATE(1211), + [sym_or_block_expression] = STATE(1211), + [sym_option_propagation_expression] = STATE(1211), + [sym_result_propagation_expression] = STATE(1211), + [sym_anon_struct_value_expression] = STATE(1212), + [sym_go_expression] = STATE(1211), + [sym_spawn_expression] = STATE(1211), + [sym_parenthesized_expression] = STATE(1211), + [sym_call_expression] = STATE(1211), + [sym_type_initializer] = STATE(1212), + [sym_function_literal] = STATE(1211), + [sym_reference_expression] = STATE(1233), + [sym_type_reference_expression] = STATE(3460), + [sym_unary_expression] = STATE(1211), + [sym_receive_expression] = STATE(1211), + [sym_binary_expression] = STATE(1211), + [sym_as_type_cast_expression] = STATE(1211), + [sym__max_group] = STATE(1211), + [sym_literal] = STATE(1209), + [sym_map_init_expression] = STATE(1212), + [sym_array_creation] = STATE(1211), + [sym_fixed_array_creation] = STATE(1211), + [sym_selector_expression] = STATE(1211), + [sym_index_expression] = STATE(1211), + [sym_slice_expression] = STATE(1211), + [sym_if_expression] = STATE(1212), + [sym_compile_time_if_expression] = STATE(1212), + [sym_is_expression] = STATE(1211), + [sym_in_expression] = STATE(1211), + [sym_enum_fetch] = STATE(1211), + [sym_match_expression] = STATE(1212), + [sym_select_expression] = STATE(1212), + [sym_lock_expression] = STATE(1212), + [sym_unsafe_expression] = STATE(1212), + [sym_sql_expression] = STATE(1212), + [sym_c_string_literal] = STATE(1201), + [sym_raw_string_literal] = STATE(1201), + [sym_interpreted_string_literal] = STATE(1201), + [sym_mutability_modifiers] = STATE(589), + [sym_plain_type] = STATE(4123), + [sym__plain_type_without_special] = STATE(2360), + [sym_anon_struct_type] = STATE(2362), + [sym_multi_return_type] = STATE(2360), + [sym_result_type] = STATE(2360), + [sym_option_type] = STATE(2360), + [sym_qualified_type] = STATE(3460), + [sym_fixed_array_type] = STATE(2362), + [sym_array_type] = STATE(2362), + [sym_pointer_type] = STATE(2362), + [sym_wrong_pointer_type] = STATE(2362), + [sym_map_type] = STATE(2362), + [sym_channel_type] = STATE(2362), + [sym_shared_type] = STATE(2362), + [sym_thread_type] = STATE(2362), + [sym_atomic_type] = STATE(2362), + [sym_generic_type] = STATE(2362), + [sym_function_type] = STATE(2362), + [sym_identifier] = ACTIONS(1139), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1428), - [anon_sym_LBRACE] = ACTIONS(1430), - [anon_sym_LPAREN] = ACTIONS(1432), - [anon_sym_fn] = ACTIONS(1434), - [anon_sym_PLUS] = ACTIONS(3064), - [anon_sym_DASH] = ACTIONS(3064), - [anon_sym_STAR] = ACTIONS(3066), - [anon_sym_struct] = ACTIONS(1440), + [anon_sym_DOT] = ACTIONS(631), + [anon_sym_LBRACE] = ACTIONS(633), + [anon_sym_LPAREN] = ACTIONS(637), + [anon_sym_fn] = ACTIONS(641), + [anon_sym_PLUS] = ACTIONS(643), + [anon_sym_DASH] = ACTIONS(643), + [anon_sym_STAR] = ACTIONS(645), + [anon_sym_struct] = ACTIONS(649), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(3068), - [anon_sym_go] = ACTIONS(3070), - [anon_sym_spawn] = ACTIONS(3072), - [anon_sym_json_DOTdecode] = ACTIONS(1448), - [anon_sym_LBRACK2] = ACTIONS(1821), - [anon_sym_TILDE] = ACTIONS(3064), - [anon_sym_CARET] = ACTIONS(3064), - [anon_sym_AMP] = ACTIONS(3074), - [anon_sym_LT_DASH] = ACTIONS(3076), - [sym_none] = ACTIONS(1456), - [sym_true] = ACTIONS(1456), - [sym_false] = ACTIONS(1456), - [sym_nil] = ACTIONS(1456), - [anon_sym_if] = ACTIONS(1827), - [anon_sym_DOLLARif] = ACTIONS(1460), - [anon_sym_match] = ACTIONS(1462), - [anon_sym_select] = ACTIONS(3078), - [anon_sym_lock] = ACTIONS(3080), - [anon_sym_rlock] = ACTIONS(3080), - [anon_sym_unsafe] = ACTIONS(1833), - [anon_sym_sql] = ACTIONS(1470), - [sym_int_literal] = ACTIONS(1456), - [sym_float_literal] = ACTIONS(1472), - [sym_rune_literal] = ACTIONS(1472), - [sym_pseudo_compile_time_identifier] = ACTIONS(1474), + [anon_sym_BANG] = ACTIONS(655), + [anon_sym_go] = ACTIONS(657), + [anon_sym_spawn] = ACTIONS(659), + [anon_sym_json_DOTdecode] = ACTIONS(661), + [anon_sym_LBRACK2] = ACTIONS(663), + [anon_sym_TILDE] = ACTIONS(643), + [anon_sym_CARET] = ACTIONS(643), + [anon_sym_AMP] = ACTIONS(665), + [anon_sym_LT_DASH] = ACTIONS(667), + [sym_none] = ACTIONS(669), + [sym_true] = ACTIONS(669), + [sym_false] = ACTIONS(669), + [sym_nil] = ACTIONS(669), + [anon_sym_if] = ACTIONS(671), + [anon_sym_DOLLARif] = ACTIONS(673), + [anon_sym_match] = ACTIONS(675), + [anon_sym_select] = ACTIONS(677), + [anon_sym_lock] = ACTIONS(679), + [anon_sym_rlock] = ACTIONS(679), + [anon_sym_unsafe] = ACTIONS(681), + [anon_sym_sql] = ACTIONS(683), + [sym_int_literal] = ACTIONS(669), + [sym_float_literal] = ACTIONS(685), + [sym_rune_literal] = ACTIONS(685), + [sym_pseudo_compile_time_identifier] = ACTIONS(687), [anon_sym_shared] = ACTIONS(83), [anon_sym_map_LBRACK] = ACTIONS(85), [anon_sym_chan] = ACTIONS(87), [anon_sym_thread] = ACTIONS(89), [anon_sym_atomic] = ACTIONS(91), - [sym___double_quote] = ACTIONS(1478), - [sym___single_quote] = ACTIONS(1480), - [sym___c_double_quote] = ACTIONS(1482), - [sym___c_single_quote] = ACTIONS(1484), - [sym___r_double_quote] = ACTIONS(1486), - [sym___r_single_quote] = ACTIONS(1488), + [sym___double_quote] = ACTIONS(689), + [sym___single_quote] = ACTIONS(691), + [sym___c_double_quote] = ACTIONS(693), + [sym___c_single_quote] = ACTIONS(695), + [sym___r_double_quote] = ACTIONS(697), + [sym___r_single_quote] = ACTIONS(699), }, [770] = { [sym_line_comment] = STATE(770), [sym_block_comment] = STATE(770), - [sym__expression] = STATE(2651), - [sym__expression_without_blocks] = STATE(2300), - [sym__expression_with_blocks] = STATE(2300), - [sym_inc_expression] = STATE(2307), - [sym_dec_expression] = STATE(2307), - [sym_or_block_expression] = STATE(2307), - [sym_option_propagation_expression] = STATE(2307), - [sym_result_propagation_expression] = STATE(2307), - [sym_anon_struct_value_expression] = STATE(2380), - [sym_go_expression] = STATE(2307), - [sym_spawn_expression] = STATE(2307), - [sym_parenthesized_expression] = STATE(2307), - [sym_call_expression] = STATE(2307), - [sym_type_initializer] = STATE(2380), - [sym_function_literal] = STATE(2307), - [sym_reference_expression] = STATE(2311), - [sym_type_reference_expression] = STATE(3541), - [sym_unary_expression] = STATE(2307), - [sym_receive_expression] = STATE(2307), - [sym_binary_expression] = STATE(2307), - [sym_as_type_cast_expression] = STATE(2307), - [sym__max_group] = STATE(2307), - [sym_literal] = STATE(2292), - [sym_map_init_expression] = STATE(2380), - [sym_array_creation] = STATE(2307), - [sym_fixed_array_creation] = STATE(2307), - [sym_selector_expression] = STATE(2307), - [sym_index_expression] = STATE(2307), - [sym_slice_expression] = STATE(2307), - [sym_if_expression] = STATE(2380), - [sym_compile_time_if_expression] = STATE(2380), - [sym_is_expression] = STATE(2307), - [sym_in_expression] = STATE(2307), - [sym_enum_fetch] = STATE(2307), - [sym_match_expression] = STATE(2380), - [sym_select_expression] = STATE(2380), - [sym_lock_expression] = STATE(2380), - [sym_unsafe_expression] = STATE(2380), - [sym_sql_expression] = STATE(2380), - [sym_c_string_literal] = STATE(2308), - [sym_raw_string_literal] = STATE(2308), - [sym_interpreted_string_literal] = STATE(2308), - [sym_mutability_modifiers] = STATE(939), - [sym_plain_type] = STATE(4297), - [sym__plain_type_without_special] = STATE(2302), - [sym_anon_struct_type] = STATE(2303), - [sym_multi_return_type] = STATE(2302), - [sym_result_type] = STATE(2302), - [sym_option_type] = STATE(2302), - [sym_qualified_type] = STATE(3541), - [sym_fixed_array_type] = STATE(2303), - [sym_array_type] = STATE(2303), - [sym_pointer_type] = STATE(2303), - [sym_wrong_pointer_type] = STATE(2303), - [sym_map_type] = STATE(2303), - [sym_channel_type] = STATE(2303), - [sym_shared_type] = STATE(2303), - [sym_thread_type] = STATE(2303), - [sym_atomic_type] = STATE(2303), - [sym_generic_type] = STATE(2303), - [sym_function_type] = STATE(2303), - [sym_identifier] = ACTIONS(2189), + [sym__expression] = STATE(1654), + [sym__expression_without_blocks] = STATE(1799), + [sym__expression_with_blocks] = STATE(1799), + [sym_inc_expression] = STATE(1800), + [sym_dec_expression] = STATE(1800), + [sym_or_block_expression] = STATE(1800), + [sym_option_propagation_expression] = STATE(1800), + [sym_result_propagation_expression] = STATE(1800), + [sym_anon_struct_value_expression] = STATE(1801), + [sym_go_expression] = STATE(1800), + [sym_spawn_expression] = STATE(1800), + [sym_parenthesized_expression] = STATE(1800), + [sym_call_expression] = STATE(1800), + [sym_type_initializer] = STATE(1801), + [sym_function_literal] = STATE(1800), + [sym_reference_expression] = STATE(1844), + [sym_type_reference_expression] = STATE(3460), + [sym_unary_expression] = STATE(1800), + [sym_receive_expression] = STATE(1800), + [sym_binary_expression] = STATE(1800), + [sym_as_type_cast_expression] = STATE(1800), + [sym__max_group] = STATE(1800), + [sym_literal] = STATE(1797), + [sym_map_init_expression] = STATE(1801), + [sym_array_creation] = STATE(1800), + [sym_fixed_array_creation] = STATE(1800), + [sym_selector_expression] = STATE(1800), + [sym_index_expression] = STATE(1800), + [sym_slice_expression] = STATE(1800), + [sym_if_expression] = STATE(1801), + [sym_compile_time_if_expression] = STATE(1801), + [sym_is_expression] = STATE(1800), + [sym_in_expression] = STATE(1800), + [sym_enum_fetch] = STATE(1800), + [sym_match_expression] = STATE(1801), + [sym_select_expression] = STATE(1801), + [sym_lock_expression] = STATE(1801), + [sym_unsafe_expression] = STATE(1801), + [sym_sql_expression] = STATE(1801), + [sym_c_string_literal] = STATE(1792), + [sym_raw_string_literal] = STATE(1792), + [sym_interpreted_string_literal] = STATE(1792), + [sym_mutability_modifiers] = STATE(868), + [sym_plain_type] = STATE(4300), + [sym__plain_type_without_special] = STATE(2360), + [sym_anon_struct_type] = STATE(2362), + [sym_multi_return_type] = STATE(2360), + [sym_result_type] = STATE(2360), + [sym_option_type] = STATE(2360), + [sym_qualified_type] = STATE(3460), + [sym_fixed_array_type] = STATE(2362), + [sym_array_type] = STATE(2362), + [sym_pointer_type] = STATE(2362), + [sym_wrong_pointer_type] = STATE(2362), + [sym_map_type] = STATE(2362), + [sym_channel_type] = STATE(2362), + [sym_shared_type] = STATE(2362), + [sym_thread_type] = STATE(2362), + [sym_atomic_type] = STATE(2362), + [sym_generic_type] = STATE(2362), + [sym_function_type] = STATE(2362), + [sym_identifier] = ACTIONS(3198), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1428), - [anon_sym_LBRACE] = ACTIONS(1430), - [anon_sym_LPAREN] = ACTIONS(1432), - [anon_sym_fn] = ACTIONS(1434), - [anon_sym_PLUS] = ACTIONS(2491), - [anon_sym_DASH] = ACTIONS(2491), - [anon_sym_STAR] = ACTIONS(3354), - [anon_sym_struct] = ACTIONS(1440), + [anon_sym_DOT] = ACTIONS(3200), + [anon_sym_LBRACE] = ACTIONS(3202), + [anon_sym_LPAREN] = ACTIONS(3204), + [anon_sym_fn] = ACTIONS(3206), + [anon_sym_PLUS] = ACTIONS(3208), + [anon_sym_DASH] = ACTIONS(3208), + [anon_sym_STAR] = ACTIONS(3210), + [anon_sym_struct] = ACTIONS(3212), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(3356), - [anon_sym_go] = ACTIONS(2497), - [anon_sym_spawn] = ACTIONS(2499), - [anon_sym_json_DOTdecode] = ACTIONS(1448), - [anon_sym_LBRACK2] = ACTIONS(1450), - [anon_sym_TILDE] = ACTIONS(2491), - [anon_sym_CARET] = ACTIONS(2491), - [anon_sym_AMP] = ACTIONS(3358), - [anon_sym_LT_DASH] = ACTIONS(2503), - [sym_none] = ACTIONS(1456), - [sym_true] = ACTIONS(1456), - [sym_false] = ACTIONS(1456), - [sym_nil] = ACTIONS(1456), - [anon_sym_if] = ACTIONS(1827), - [anon_sym_DOLLARif] = ACTIONS(1460), - [anon_sym_match] = ACTIONS(1462), - [anon_sym_select] = ACTIONS(1464), - [anon_sym_lock] = ACTIONS(1466), - [anon_sym_rlock] = ACTIONS(1466), - [anon_sym_unsafe] = ACTIONS(1833), - [anon_sym_sql] = ACTIONS(1470), - [sym_int_literal] = ACTIONS(1456), - [sym_float_literal] = ACTIONS(1472), - [sym_rune_literal] = ACTIONS(1472), - [sym_pseudo_compile_time_identifier] = ACTIONS(1474), + [anon_sym_BANG] = ACTIONS(3214), + [anon_sym_go] = ACTIONS(3216), + [anon_sym_spawn] = ACTIONS(3218), + [anon_sym_json_DOTdecode] = ACTIONS(3220), + [anon_sym_LBRACK2] = ACTIONS(3222), + [anon_sym_TILDE] = ACTIONS(3208), + [anon_sym_CARET] = ACTIONS(3208), + [anon_sym_AMP] = ACTIONS(3224), + [anon_sym_LT_DASH] = ACTIONS(3226), + [sym_none] = ACTIONS(3228), + [sym_true] = ACTIONS(3228), + [sym_false] = ACTIONS(3228), + [sym_nil] = ACTIONS(3228), + [anon_sym_if] = ACTIONS(3230), + [anon_sym_DOLLARif] = ACTIONS(3232), + [anon_sym_match] = ACTIONS(3234), + [anon_sym_select] = ACTIONS(3236), + [anon_sym_lock] = ACTIONS(3238), + [anon_sym_rlock] = ACTIONS(3238), + [anon_sym_unsafe] = ACTIONS(3240), + [anon_sym_sql] = ACTIONS(3242), + [sym_int_literal] = ACTIONS(3228), + [sym_float_literal] = ACTIONS(3244), + [sym_rune_literal] = ACTIONS(3244), + [sym_pseudo_compile_time_identifier] = ACTIONS(3246), [anon_sym_shared] = ACTIONS(83), [anon_sym_map_LBRACK] = ACTIONS(85), [anon_sym_chan] = ACTIONS(87), [anon_sym_thread] = ACTIONS(89), [anon_sym_atomic] = ACTIONS(91), - [sym___double_quote] = ACTIONS(1478), - [sym___single_quote] = ACTIONS(1480), - [sym___c_double_quote] = ACTIONS(1482), - [sym___c_single_quote] = ACTIONS(1484), - [sym___r_double_quote] = ACTIONS(1486), - [sym___r_single_quote] = ACTIONS(1488), + [sym___double_quote] = ACTIONS(3248), + [sym___single_quote] = ACTIONS(3250), + [sym___c_double_quote] = ACTIONS(3252), + [sym___c_single_quote] = ACTIONS(3254), + [sym___r_double_quote] = ACTIONS(3256), + [sym___r_single_quote] = ACTIONS(3258), }, [771] = { [sym_line_comment] = STATE(771), [sym_block_comment] = STATE(771), - [sym__expression] = STATE(2761), - [sym__expression_without_blocks] = STATE(2300), - [sym__expression_with_blocks] = STATE(2300), - [sym_inc_expression] = STATE(2307), - [sym_dec_expression] = STATE(2307), - [sym_or_block_expression] = STATE(2307), - [sym_option_propagation_expression] = STATE(2307), - [sym_result_propagation_expression] = STATE(2307), - [sym_anon_struct_value_expression] = STATE(2380), - [sym_go_expression] = STATE(2307), - [sym_spawn_expression] = STATE(2307), - [sym_parenthesized_expression] = STATE(2307), - [sym_call_expression] = STATE(2307), - [sym_type_initializer] = STATE(2380), - [sym_function_literal] = STATE(2307), - [sym_reference_expression] = STATE(2311), - [sym_type_reference_expression] = STATE(3541), - [sym_unary_expression] = STATE(2307), - [sym_receive_expression] = STATE(2307), - [sym_binary_expression] = STATE(2307), - [sym_as_type_cast_expression] = STATE(2307), - [sym__max_group] = STATE(2307), - [sym_literal] = STATE(2292), - [sym_map_init_expression] = STATE(2380), - [sym_array_creation] = STATE(2307), - [sym_fixed_array_creation] = STATE(2307), - [sym_selector_expression] = STATE(2307), - [sym_index_expression] = STATE(2307), - [sym_slice_expression] = STATE(2307), - [sym_if_expression] = STATE(2380), - [sym_compile_time_if_expression] = STATE(2380), - [sym_is_expression] = STATE(2307), - [sym_in_expression] = STATE(2307), - [sym_enum_fetch] = STATE(2307), - [sym_match_expression] = STATE(2380), - [sym_select_expression] = STATE(2380), - [sym_lock_expression] = STATE(2380), - [sym_unsafe_expression] = STATE(2380), - [sym_sql_expression] = STATE(2380), - [sym_c_string_literal] = STATE(2308), - [sym_raw_string_literal] = STATE(2308), - [sym_interpreted_string_literal] = STATE(2308), - [sym_mutability_modifiers] = STATE(939), - [sym_plain_type] = STATE(4297), - [sym__plain_type_without_special] = STATE(2302), - [sym_anon_struct_type] = STATE(2303), - [sym_multi_return_type] = STATE(2302), - [sym_result_type] = STATE(2302), - [sym_option_type] = STATE(2302), - [sym_qualified_type] = STATE(3541), - [sym_fixed_array_type] = STATE(2303), - [sym_array_type] = STATE(2303), - [sym_pointer_type] = STATE(2303), - [sym_wrong_pointer_type] = STATE(2303), - [sym_map_type] = STATE(2303), - [sym_channel_type] = STATE(2303), - [sym_shared_type] = STATE(2303), - [sym_thread_type] = STATE(2303), - [sym_atomic_type] = STATE(2303), - [sym_generic_type] = STATE(2303), - [sym_function_type] = STATE(2303), - [sym_identifier] = ACTIONS(1807), + [sym__expression] = STATE(961), + [sym__expression_without_blocks] = STATE(1086), + [sym__expression_with_blocks] = STATE(1086), + [sym_inc_expression] = STATE(1088), + [sym_dec_expression] = STATE(1088), + [sym_or_block_expression] = STATE(1088), + [sym_option_propagation_expression] = STATE(1088), + [sym_result_propagation_expression] = STATE(1088), + [sym_anon_struct_value_expression] = STATE(1025), + [sym_go_expression] = STATE(1088), + [sym_spawn_expression] = STATE(1088), + [sym_parenthesized_expression] = STATE(1088), + [sym_call_expression] = STATE(1088), + [sym_type_initializer] = STATE(1025), + [sym_function_literal] = STATE(1088), + [sym_reference_expression] = STATE(1024), + [sym_type_reference_expression] = STATE(3460), + [sym_unary_expression] = STATE(1088), + [sym_receive_expression] = STATE(1088), + [sym_binary_expression] = STATE(1088), + [sym_as_type_cast_expression] = STATE(1088), + [sym__max_group] = STATE(1088), + [sym_literal] = STATE(1078), + [sym_map_init_expression] = STATE(1025), + [sym_array_creation] = STATE(1088), + [sym_fixed_array_creation] = STATE(1088), + [sym_selector_expression] = STATE(1088), + [sym_index_expression] = STATE(1088), + [sym_slice_expression] = STATE(1088), + [sym_if_expression] = STATE(1025), + [sym_compile_time_if_expression] = STATE(1025), + [sym_is_expression] = STATE(1088), + [sym_in_expression] = STATE(1088), + [sym_enum_fetch] = STATE(1088), + [sym_match_expression] = STATE(1025), + [sym_select_expression] = STATE(1025), + [sym_lock_expression] = STATE(1025), + [sym_unsafe_expression] = STATE(1025), + [sym_sql_expression] = STATE(1025), + [sym_c_string_literal] = STATE(993), + [sym_raw_string_literal] = STATE(993), + [sym_interpreted_string_literal] = STATE(993), + [sym_mutability_modifiers] = STATE(618), + [sym_plain_type] = STATE(4090), + [sym__plain_type_without_special] = STATE(2360), + [sym_anon_struct_type] = STATE(2362), + [sym_multi_return_type] = STATE(2360), + [sym_result_type] = STATE(2360), + [sym_option_type] = STATE(2360), + [sym_qualified_type] = STATE(3460), + [sym_fixed_array_type] = STATE(2362), + [sym_array_type] = STATE(2362), + [sym_pointer_type] = STATE(2362), + [sym_wrong_pointer_type] = STATE(2362), + [sym_map_type] = STATE(2362), + [sym_channel_type] = STATE(2362), + [sym_shared_type] = STATE(2362), + [sym_thread_type] = STATE(2362), + [sym_atomic_type] = STATE(2362), + [sym_generic_type] = STATE(2362), + [sym_function_type] = STATE(2362), + [sym_identifier] = ACTIONS(493), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1428), - [anon_sym_LBRACE] = ACTIONS(1430), - [anon_sym_LPAREN] = ACTIONS(1432), - [anon_sym_fn] = ACTIONS(1434), - [anon_sym_PLUS] = ACTIONS(3064), - [anon_sym_DASH] = ACTIONS(3064), - [anon_sym_STAR] = ACTIONS(3066), - [anon_sym_struct] = ACTIONS(1440), + [anon_sym_DOT] = ACTIONS(501), + [anon_sym_LBRACE] = ACTIONS(2235), + [anon_sym_LPAREN] = ACTIONS(2237), + [anon_sym_fn] = ACTIONS(507), + [anon_sym_PLUS] = ACTIONS(2239), + [anon_sym_DASH] = ACTIONS(2239), + [anon_sym_STAR] = ACTIONS(2241), + [anon_sym_struct] = ACTIONS(513), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(3068), - [anon_sym_go] = ACTIONS(3070), - [anon_sym_spawn] = ACTIONS(3072), - [anon_sym_json_DOTdecode] = ACTIONS(1448), - [anon_sym_LBRACK2] = ACTIONS(1821), - [anon_sym_TILDE] = ACTIONS(3064), - [anon_sym_CARET] = ACTIONS(3064), - [anon_sym_AMP] = ACTIONS(3074), - [anon_sym_LT_DASH] = ACTIONS(3076), - [sym_none] = ACTIONS(1456), - [sym_true] = ACTIONS(1456), - [sym_false] = ACTIONS(1456), - [sym_nil] = ACTIONS(1456), - [anon_sym_if] = ACTIONS(1827), - [anon_sym_DOLLARif] = ACTIONS(1460), - [anon_sym_match] = ACTIONS(1462), - [anon_sym_select] = ACTIONS(3078), - [anon_sym_lock] = ACTIONS(3080), - [anon_sym_rlock] = ACTIONS(3080), - [anon_sym_unsafe] = ACTIONS(1833), - [anon_sym_sql] = ACTIONS(1470), - [sym_int_literal] = ACTIONS(1456), - [sym_float_literal] = ACTIONS(1472), - [sym_rune_literal] = ACTIONS(1472), - [sym_pseudo_compile_time_identifier] = ACTIONS(1474), + [anon_sym_BANG] = ACTIONS(2243), + [anon_sym_go] = ACTIONS(519), + [anon_sym_spawn] = ACTIONS(521), + [anon_sym_json_DOTdecode] = ACTIONS(2245), + [anon_sym_LBRACK2] = ACTIONS(2247), + [anon_sym_TILDE] = ACTIONS(2239), + [anon_sym_CARET] = ACTIONS(2239), + [anon_sym_AMP] = ACTIONS(2249), + [anon_sym_LT_DASH] = ACTIONS(2251), + [sym_none] = ACTIONS(531), + [sym_true] = ACTIONS(531), + [sym_false] = ACTIONS(531), + [sym_nil] = ACTIONS(531), + [anon_sym_if] = ACTIONS(533), + [anon_sym_DOLLARif] = ACTIONS(535), + [anon_sym_match] = ACTIONS(537), + [anon_sym_select] = ACTIONS(539), + [anon_sym_lock] = ACTIONS(541), + [anon_sym_rlock] = ACTIONS(541), + [anon_sym_unsafe] = ACTIONS(543), + [anon_sym_sql] = ACTIONS(545), + [sym_int_literal] = ACTIONS(531), + [sym_float_literal] = ACTIONS(2253), + [sym_rune_literal] = ACTIONS(2253), + [sym_pseudo_compile_time_identifier] = ACTIONS(547), [anon_sym_shared] = ACTIONS(83), [anon_sym_map_LBRACK] = ACTIONS(85), [anon_sym_chan] = ACTIONS(87), [anon_sym_thread] = ACTIONS(89), [anon_sym_atomic] = ACTIONS(91), - [sym___double_quote] = ACTIONS(1478), - [sym___single_quote] = ACTIONS(1480), - [sym___c_double_quote] = ACTIONS(1482), - [sym___c_single_quote] = ACTIONS(1484), - [sym___r_double_quote] = ACTIONS(1486), - [sym___r_single_quote] = ACTIONS(1488), + [sym___double_quote] = ACTIONS(2255), + [sym___single_quote] = ACTIONS(2257), + [sym___c_double_quote] = ACTIONS(2259), + [sym___c_single_quote] = ACTIONS(2261), + [sym___r_double_quote] = ACTIONS(2263), + [sym___r_single_quote] = ACTIONS(2265), }, [772] = { [sym_line_comment] = STATE(772), [sym_block_comment] = STATE(772), - [sym__expression] = STATE(2831), - [sym__expression_without_blocks] = STATE(2300), - [sym__expression_with_blocks] = STATE(2300), - [sym_inc_expression] = STATE(2307), - [sym_dec_expression] = STATE(2307), - [sym_or_block_expression] = STATE(2307), - [sym_option_propagation_expression] = STATE(2307), - [sym_result_propagation_expression] = STATE(2307), - [sym_anon_struct_value_expression] = STATE(2380), - [sym_go_expression] = STATE(2307), - [sym_spawn_expression] = STATE(2307), - [sym_parenthesized_expression] = STATE(2307), - [sym_call_expression] = STATE(2307), - [sym_type_initializer] = STATE(2380), - [sym_function_literal] = STATE(2307), - [sym_reference_expression] = STATE(2907), - [sym_type_reference_expression] = STATE(3541), - [sym_unary_expression] = STATE(2307), - [sym_receive_expression] = STATE(2307), - [sym_binary_expression] = STATE(2307), - [sym_as_type_cast_expression] = STATE(2307), - [sym__max_group] = STATE(2307), - [sym_literal] = STATE(2292), - [sym_map_init_expression] = STATE(2380), - [sym_array_creation] = STATE(2307), - [sym_fixed_array_creation] = STATE(2307), - [sym_selector_expression] = STATE(2908), - [sym_index_expression] = STATE(2307), - [sym_slice_expression] = STATE(2307), - [sym_if_expression] = STATE(2380), - [sym_compile_time_if_expression] = STATE(2380), - [sym_is_expression] = STATE(2307), - [sym_in_expression] = STATE(2307), - [sym_enum_fetch] = STATE(2307), - [sym_match_expression] = STATE(2380), - [sym_select_expression] = STATE(2380), - [sym_lock_expression] = STATE(2380), - [sym_unsafe_expression] = STATE(2380), - [sym_sql_expression] = STATE(2380), - [sym_c_string_literal] = STATE(2308), - [sym_raw_string_literal] = STATE(2308), - [sym_interpreted_string_literal] = STATE(2308), - [sym_mutability_modifiers] = STATE(939), - [sym_plain_type] = STATE(4297), - [sym__plain_type_without_special] = STATE(2302), - [sym_anon_struct_type] = STATE(2303), - [sym_multi_return_type] = STATE(2302), - [sym_result_type] = STATE(2302), - [sym_option_type] = STATE(2302), - [sym_qualified_type] = STATE(3541), - [sym_fixed_array_type] = STATE(2303), - [sym_array_type] = STATE(2303), - [sym_pointer_type] = STATE(2303), - [sym_wrong_pointer_type] = STATE(2303), - [sym_map_type] = STATE(2303), - [sym_channel_type] = STATE(2303), - [sym_shared_type] = STATE(2303), - [sym_thread_type] = STATE(2303), - [sym_atomic_type] = STATE(2303), - [sym_generic_type] = STATE(2303), - [sym_function_type] = STATE(2303), - [sym_identifier] = ACTIONS(2189), + [sym__expression] = STATE(965), + [sym__expression_without_blocks] = STATE(1086), + [sym__expression_with_blocks] = STATE(1086), + [sym_inc_expression] = STATE(1088), + [sym_dec_expression] = STATE(1088), + [sym_or_block_expression] = STATE(1088), + [sym_option_propagation_expression] = STATE(1088), + [sym_result_propagation_expression] = STATE(1088), + [sym_anon_struct_value_expression] = STATE(1025), + [sym_go_expression] = STATE(1088), + [sym_spawn_expression] = STATE(1088), + [sym_parenthesized_expression] = STATE(1088), + [sym_call_expression] = STATE(1088), + [sym_type_initializer] = STATE(1025), + [sym_function_literal] = STATE(1088), + [sym_reference_expression] = STATE(1024), + [sym_type_reference_expression] = STATE(3460), + [sym_unary_expression] = STATE(1088), + [sym_receive_expression] = STATE(1088), + [sym_binary_expression] = STATE(1088), + [sym_as_type_cast_expression] = STATE(1088), + [sym__max_group] = STATE(1088), + [sym_literal] = STATE(1078), + [sym_map_init_expression] = STATE(1025), + [sym_array_creation] = STATE(1088), + [sym_fixed_array_creation] = STATE(1088), + [sym_selector_expression] = STATE(1088), + [sym_index_expression] = STATE(1088), + [sym_slice_expression] = STATE(1088), + [sym_if_expression] = STATE(1025), + [sym_compile_time_if_expression] = STATE(1025), + [sym_is_expression] = STATE(1088), + [sym_in_expression] = STATE(1088), + [sym_enum_fetch] = STATE(1088), + [sym_match_expression] = STATE(1025), + [sym_select_expression] = STATE(1025), + [sym_lock_expression] = STATE(1025), + [sym_unsafe_expression] = STATE(1025), + [sym_sql_expression] = STATE(1025), + [sym_c_string_literal] = STATE(993), + [sym_raw_string_literal] = STATE(993), + [sym_interpreted_string_literal] = STATE(993), + [sym_mutability_modifiers] = STATE(618), + [sym_plain_type] = STATE(4129), + [sym__plain_type_without_special] = STATE(2360), + [sym_anon_struct_type] = STATE(2362), + [sym_multi_return_type] = STATE(2360), + [sym_result_type] = STATE(2360), + [sym_option_type] = STATE(2360), + [sym_qualified_type] = STATE(3460), + [sym_fixed_array_type] = STATE(2362), + [sym_array_type] = STATE(2362), + [sym_pointer_type] = STATE(2362), + [sym_wrong_pointer_type] = STATE(2362), + [sym_map_type] = STATE(2362), + [sym_channel_type] = STATE(2362), + [sym_shared_type] = STATE(2362), + [sym_thread_type] = STATE(2362), + [sym_atomic_type] = STATE(2362), + [sym_generic_type] = STATE(2362), + [sym_function_type] = STATE(2362), + [sym_identifier] = ACTIONS(493), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1428), - [anon_sym_LBRACE] = ACTIONS(1430), - [anon_sym_LPAREN] = ACTIONS(1432), - [anon_sym_fn] = ACTIONS(1434), - [anon_sym_PLUS] = ACTIONS(1436), - [anon_sym_DASH] = ACTIONS(1436), - [anon_sym_STAR] = ACTIONS(1438), - [anon_sym_struct] = ACTIONS(1440), + [anon_sym_DOT] = ACTIONS(501), + [anon_sym_LBRACE] = ACTIONS(2235), + [anon_sym_LPAREN] = ACTIONS(2237), + [anon_sym_fn] = ACTIONS(507), + [anon_sym_PLUS] = ACTIONS(2239), + [anon_sym_DASH] = ACTIONS(2239), + [anon_sym_STAR] = ACTIONS(2241), + [anon_sym_struct] = ACTIONS(513), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(1442), - [anon_sym_go] = ACTIONS(1444), - [anon_sym_spawn] = ACTIONS(1446), - [anon_sym_json_DOTdecode] = ACTIONS(1448), - [anon_sym_LBRACK2] = ACTIONS(1450), - [anon_sym_TILDE] = ACTIONS(1436), - [anon_sym_CARET] = ACTIONS(1436), - [anon_sym_AMP] = ACTIONS(1452), - [anon_sym_LT_DASH] = ACTIONS(1454), - [sym_none] = ACTIONS(1456), - [sym_true] = ACTIONS(1456), - [sym_false] = ACTIONS(1456), - [sym_nil] = ACTIONS(1456), - [anon_sym_if] = ACTIONS(1827), - [anon_sym_DOLLARif] = ACTIONS(1460), - [anon_sym_match] = ACTIONS(1462), - [anon_sym_select] = ACTIONS(1464), - [anon_sym_lock] = ACTIONS(1466), - [anon_sym_rlock] = ACTIONS(1466), - [anon_sym_unsafe] = ACTIONS(1833), - [anon_sym_sql] = ACTIONS(1470), - [sym_int_literal] = ACTIONS(1456), - [sym_float_literal] = ACTIONS(1472), - [sym_rune_literal] = ACTIONS(1472), - [sym_pseudo_compile_time_identifier] = ACTIONS(1474), + [anon_sym_BANG] = ACTIONS(2243), + [anon_sym_go] = ACTIONS(519), + [anon_sym_spawn] = ACTIONS(521), + [anon_sym_json_DOTdecode] = ACTIONS(2245), + [anon_sym_LBRACK2] = ACTIONS(2247), + [anon_sym_TILDE] = ACTIONS(2239), + [anon_sym_CARET] = ACTIONS(2239), + [anon_sym_AMP] = ACTIONS(2249), + [anon_sym_LT_DASH] = ACTIONS(2251), + [sym_none] = ACTIONS(531), + [sym_true] = ACTIONS(531), + [sym_false] = ACTIONS(531), + [sym_nil] = ACTIONS(531), + [anon_sym_if] = ACTIONS(533), + [anon_sym_DOLLARif] = ACTIONS(535), + [anon_sym_match] = ACTIONS(537), + [anon_sym_select] = ACTIONS(539), + [anon_sym_lock] = ACTIONS(541), + [anon_sym_rlock] = ACTIONS(541), + [anon_sym_unsafe] = ACTIONS(543), + [anon_sym_sql] = ACTIONS(545), + [sym_int_literal] = ACTIONS(531), + [sym_float_literal] = ACTIONS(2253), + [sym_rune_literal] = ACTIONS(2253), + [sym_pseudo_compile_time_identifier] = ACTIONS(547), [anon_sym_shared] = ACTIONS(83), [anon_sym_map_LBRACK] = ACTIONS(85), [anon_sym_chan] = ACTIONS(87), [anon_sym_thread] = ACTIONS(89), [anon_sym_atomic] = ACTIONS(91), - [sym___double_quote] = ACTIONS(1478), - [sym___single_quote] = ACTIONS(1480), - [sym___c_double_quote] = ACTIONS(1482), - [sym___c_single_quote] = ACTIONS(1484), - [sym___r_double_quote] = ACTIONS(1486), - [sym___r_single_quote] = ACTIONS(1488), + [sym___double_quote] = ACTIONS(2255), + [sym___single_quote] = ACTIONS(2257), + [sym___c_double_quote] = ACTIONS(2259), + [sym___c_single_quote] = ACTIONS(2261), + [sym___r_double_quote] = ACTIONS(2263), + [sym___r_single_quote] = ACTIONS(2265), }, [773] = { [sym_line_comment] = STATE(773), [sym_block_comment] = STATE(773), - [sym__expression] = STATE(2680), - [sym__expression_without_blocks] = STATE(2300), - [sym__expression_with_blocks] = STATE(2300), - [sym_inc_expression] = STATE(2307), - [sym_dec_expression] = STATE(2307), - [sym_or_block_expression] = STATE(2307), - [sym_option_propagation_expression] = STATE(2307), - [sym_result_propagation_expression] = STATE(2307), - [sym_anon_struct_value_expression] = STATE(2380), - [sym_go_expression] = STATE(2307), - [sym_spawn_expression] = STATE(2307), - [sym_parenthesized_expression] = STATE(2307), - [sym_call_expression] = STATE(2307), - [sym_type_initializer] = STATE(2380), - [sym_function_literal] = STATE(2307), - [sym_reference_expression] = STATE(2311), - [sym_type_reference_expression] = STATE(3541), - [sym_unary_expression] = STATE(2307), - [sym_receive_expression] = STATE(2307), - [sym_binary_expression] = STATE(2307), - [sym_as_type_cast_expression] = STATE(2307), - [sym__max_group] = STATE(2307), - [sym_literal] = STATE(2292), - [sym_map_init_expression] = STATE(2380), - [sym_array_creation] = STATE(2307), - [sym_fixed_array_creation] = STATE(2307), - [sym_selector_expression] = STATE(2307), - [sym_index_expression] = STATE(2307), - [sym_slice_expression] = STATE(2307), - [sym_if_expression] = STATE(2380), - [sym_compile_time_if_expression] = STATE(2380), - [sym_is_expression] = STATE(2307), - [sym_in_expression] = STATE(2307), - [sym_enum_fetch] = STATE(2307), - [sym_match_expression] = STATE(2380), - [sym_select_expression] = STATE(2380), - [sym_lock_expression] = STATE(2380), - [sym_unsafe_expression] = STATE(2380), - [sym_sql_expression] = STATE(2380), - [sym_c_string_literal] = STATE(2308), - [sym_raw_string_literal] = STATE(2308), - [sym_interpreted_string_literal] = STATE(2308), - [sym_mutability_modifiers] = STATE(939), - [sym_plain_type] = STATE(3552), - [sym__plain_type_without_special] = STATE(2302), - [sym_anon_struct_type] = STATE(2303), - [sym_multi_return_type] = STATE(2302), - [sym_result_type] = STATE(2302), - [sym_option_type] = STATE(2302), - [sym_qualified_type] = STATE(3541), - [sym_fixed_array_type] = STATE(2303), - [sym_array_type] = STATE(2303), - [sym_pointer_type] = STATE(2303), - [sym_wrong_pointer_type] = STATE(2303), - [sym_map_type] = STATE(2303), - [sym_channel_type] = STATE(2303), - [sym_shared_type] = STATE(2303), - [sym_thread_type] = STATE(2303), - [sym_atomic_type] = STATE(2303), - [sym_generic_type] = STATE(2303), - [sym_function_type] = STATE(2303), - [sym_identifier] = ACTIONS(1426), + [sym__expression] = STATE(966), + [sym__expression_without_blocks] = STATE(1086), + [sym__expression_with_blocks] = STATE(1086), + [sym_inc_expression] = STATE(1088), + [sym_dec_expression] = STATE(1088), + [sym_or_block_expression] = STATE(1088), + [sym_option_propagation_expression] = STATE(1088), + [sym_result_propagation_expression] = STATE(1088), + [sym_anon_struct_value_expression] = STATE(1025), + [sym_go_expression] = STATE(1088), + [sym_spawn_expression] = STATE(1088), + [sym_parenthesized_expression] = STATE(1088), + [sym_call_expression] = STATE(1088), + [sym_type_initializer] = STATE(1025), + [sym_function_literal] = STATE(1088), + [sym_reference_expression] = STATE(1024), + [sym_type_reference_expression] = STATE(3460), + [sym_unary_expression] = STATE(1088), + [sym_receive_expression] = STATE(1088), + [sym_binary_expression] = STATE(1088), + [sym_as_type_cast_expression] = STATE(1088), + [sym__max_group] = STATE(1088), + [sym_literal] = STATE(1078), + [sym_map_init_expression] = STATE(1025), + [sym_array_creation] = STATE(1088), + [sym_fixed_array_creation] = STATE(1088), + [sym_selector_expression] = STATE(1088), + [sym_index_expression] = STATE(1088), + [sym_slice_expression] = STATE(1088), + [sym_if_expression] = STATE(1025), + [sym_compile_time_if_expression] = STATE(1025), + [sym_is_expression] = STATE(1088), + [sym_in_expression] = STATE(1088), + [sym_enum_fetch] = STATE(1088), + [sym_match_expression] = STATE(1025), + [sym_select_expression] = STATE(1025), + [sym_lock_expression] = STATE(1025), + [sym_unsafe_expression] = STATE(1025), + [sym_sql_expression] = STATE(1025), + [sym_c_string_literal] = STATE(993), + [sym_raw_string_literal] = STATE(993), + [sym_interpreted_string_literal] = STATE(993), + [sym_mutability_modifiers] = STATE(618), + [sym_plain_type] = STATE(4090), + [sym__plain_type_without_special] = STATE(2360), + [sym_anon_struct_type] = STATE(2362), + [sym_multi_return_type] = STATE(2360), + [sym_result_type] = STATE(2360), + [sym_option_type] = STATE(2360), + [sym_qualified_type] = STATE(3460), + [sym_fixed_array_type] = STATE(2362), + [sym_array_type] = STATE(2362), + [sym_pointer_type] = STATE(2362), + [sym_wrong_pointer_type] = STATE(2362), + [sym_map_type] = STATE(2362), + [sym_channel_type] = STATE(2362), + [sym_shared_type] = STATE(2362), + [sym_thread_type] = STATE(2362), + [sym_atomic_type] = STATE(2362), + [sym_generic_type] = STATE(2362), + [sym_function_type] = STATE(2362), + [sym_identifier] = ACTIONS(493), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1428), - [anon_sym_LBRACE] = ACTIONS(1430), - [anon_sym_LPAREN] = ACTIONS(1432), - [anon_sym_fn] = ACTIONS(1434), - [anon_sym_PLUS] = ACTIONS(2491), - [anon_sym_DASH] = ACTIONS(2491), - [anon_sym_STAR] = ACTIONS(2493), - [anon_sym_struct] = ACTIONS(1440), + [anon_sym_DOT] = ACTIONS(501), + [anon_sym_LBRACE] = ACTIONS(2235), + [anon_sym_LPAREN] = ACTIONS(2237), + [anon_sym_fn] = ACTIONS(507), + [anon_sym_PLUS] = ACTIONS(2239), + [anon_sym_DASH] = ACTIONS(2239), + [anon_sym_STAR] = ACTIONS(2241), + [anon_sym_struct] = ACTIONS(513), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(2495), - [anon_sym_go] = ACTIONS(2497), - [anon_sym_spawn] = ACTIONS(2499), - [anon_sym_json_DOTdecode] = ACTIONS(1448), - [anon_sym_LBRACK2] = ACTIONS(1450), - [anon_sym_TILDE] = ACTIONS(2491), - [anon_sym_CARET] = ACTIONS(2491), - [anon_sym_AMP] = ACTIONS(2501), - [anon_sym_LT_DASH] = ACTIONS(2503), - [sym_none] = ACTIONS(1456), - [sym_true] = ACTIONS(1456), - [sym_false] = ACTIONS(1456), - [sym_nil] = ACTIONS(1456), - [anon_sym_if] = ACTIONS(1827), - [anon_sym_DOLLARif] = ACTIONS(1460), - [anon_sym_match] = ACTIONS(1462), - [anon_sym_select] = ACTIONS(1464), - [anon_sym_lock] = ACTIONS(1466), - [anon_sym_rlock] = ACTIONS(1466), - [anon_sym_unsafe] = ACTIONS(1833), - [anon_sym_sql] = ACTIONS(1470), - [sym_int_literal] = ACTIONS(1456), - [sym_float_literal] = ACTIONS(1472), - [sym_rune_literal] = ACTIONS(1472), - [sym_pseudo_compile_time_identifier] = ACTIONS(1474), + [anon_sym_BANG] = ACTIONS(2243), + [anon_sym_go] = ACTIONS(519), + [anon_sym_spawn] = ACTIONS(521), + [anon_sym_json_DOTdecode] = ACTIONS(2245), + [anon_sym_LBRACK2] = ACTIONS(2247), + [anon_sym_TILDE] = ACTIONS(2239), + [anon_sym_CARET] = ACTIONS(2239), + [anon_sym_AMP] = ACTIONS(2249), + [anon_sym_LT_DASH] = ACTIONS(2251), + [sym_none] = ACTIONS(531), + [sym_true] = ACTIONS(531), + [sym_false] = ACTIONS(531), + [sym_nil] = ACTIONS(531), + [anon_sym_if] = ACTIONS(533), + [anon_sym_DOLLARif] = ACTIONS(535), + [anon_sym_match] = ACTIONS(537), + [anon_sym_select] = ACTIONS(539), + [anon_sym_lock] = ACTIONS(541), + [anon_sym_rlock] = ACTIONS(541), + [anon_sym_unsafe] = ACTIONS(543), + [anon_sym_sql] = ACTIONS(545), + [sym_int_literal] = ACTIONS(531), + [sym_float_literal] = ACTIONS(2253), + [sym_rune_literal] = ACTIONS(2253), + [sym_pseudo_compile_time_identifier] = ACTIONS(547), [anon_sym_shared] = ACTIONS(83), [anon_sym_map_LBRACK] = ACTIONS(85), [anon_sym_chan] = ACTIONS(87), [anon_sym_thread] = ACTIONS(89), [anon_sym_atomic] = ACTIONS(91), - [sym___double_quote] = ACTIONS(1478), - [sym___single_quote] = ACTIONS(1480), - [sym___c_double_quote] = ACTIONS(1482), - [sym___c_single_quote] = ACTIONS(1484), - [sym___r_double_quote] = ACTIONS(1486), - [sym___r_single_quote] = ACTIONS(1488), + [sym___double_quote] = ACTIONS(2255), + [sym___single_quote] = ACTIONS(2257), + [sym___c_double_quote] = ACTIONS(2259), + [sym___c_single_quote] = ACTIONS(2261), + [sym___r_double_quote] = ACTIONS(2263), + [sym___r_single_quote] = ACTIONS(2265), }, [774] = { [sym_line_comment] = STATE(774), [sym_block_comment] = STATE(774), - [sym__expression] = STATE(2581), - [sym__expression_without_blocks] = STATE(2300), - [sym__expression_with_blocks] = STATE(2300), - [sym_inc_expression] = STATE(2307), - [sym_dec_expression] = STATE(2307), - [sym_or_block_expression] = STATE(2307), - [sym_option_propagation_expression] = STATE(2307), - [sym_result_propagation_expression] = STATE(2307), - [sym_anon_struct_value_expression] = STATE(2380), - [sym_go_expression] = STATE(2307), - [sym_spawn_expression] = STATE(2307), - [sym_parenthesized_expression] = STATE(2307), - [sym_call_expression] = STATE(2307), - [sym_type_initializer] = STATE(2380), - [sym_function_literal] = STATE(2307), - [sym_reference_expression] = STATE(2311), - [sym_type_reference_expression] = STATE(3541), - [sym_unary_expression] = STATE(2307), - [sym_receive_expression] = STATE(2307), - [sym_binary_expression] = STATE(2307), - [sym_as_type_cast_expression] = STATE(2307), - [sym__max_group] = STATE(2307), - [sym_literal] = STATE(2292), - [sym_map_init_expression] = STATE(2380), - [sym_array_creation] = STATE(2307), - [sym_fixed_array_creation] = STATE(2307), - [sym_selector_expression] = STATE(2307), - [sym_index_expression] = STATE(2307), - [sym_slice_expression] = STATE(2307), - [sym_if_expression] = STATE(2380), - [sym_compile_time_if_expression] = STATE(2380), - [sym_is_expression] = STATE(2307), - [sym_in_expression] = STATE(2307), - [sym_enum_fetch] = STATE(2307), - [sym_match_expression] = STATE(2380), - [sym_select_expression] = STATE(2380), - [sym_lock_expression] = STATE(2380), - [sym_unsafe_expression] = STATE(2380), - [sym_sql_expression] = STATE(2380), - [sym_c_string_literal] = STATE(2308), - [sym_raw_string_literal] = STATE(2308), - [sym_interpreted_string_literal] = STATE(2308), - [sym_mutability_modifiers] = STATE(939), - [sym_plain_type] = STATE(4297), - [sym__plain_type_without_special] = STATE(2302), - [sym_anon_struct_type] = STATE(2303), - [sym_multi_return_type] = STATE(2302), - [sym_result_type] = STATE(2302), - [sym_option_type] = STATE(2302), - [sym_qualified_type] = STATE(3541), - [sym_fixed_array_type] = STATE(2303), - [sym_array_type] = STATE(2303), - [sym_pointer_type] = STATE(2303), - [sym_wrong_pointer_type] = STATE(2303), - [sym_map_type] = STATE(2303), - [sym_channel_type] = STATE(2303), - [sym_shared_type] = STATE(2303), - [sym_thread_type] = STATE(2303), - [sym_atomic_type] = STATE(2303), - [sym_generic_type] = STATE(2303), - [sym_function_type] = STATE(2303), - [sym_identifier] = ACTIONS(1807), + [sym__expression] = STATE(1649), + [sym__expression_without_blocks] = STATE(1799), + [sym__expression_with_blocks] = STATE(1799), + [sym_inc_expression] = STATE(1800), + [sym_dec_expression] = STATE(1800), + [sym_or_block_expression] = STATE(1800), + [sym_option_propagation_expression] = STATE(1800), + [sym_result_propagation_expression] = STATE(1800), + [sym_anon_struct_value_expression] = STATE(1801), + [sym_go_expression] = STATE(1800), + [sym_spawn_expression] = STATE(1800), + [sym_parenthesized_expression] = STATE(1800), + [sym_call_expression] = STATE(1800), + [sym_type_initializer] = STATE(1801), + [sym_function_literal] = STATE(1800), + [sym_reference_expression] = STATE(1844), + [sym_type_reference_expression] = STATE(3460), + [sym_unary_expression] = STATE(1800), + [sym_receive_expression] = STATE(1800), + [sym_binary_expression] = STATE(1800), + [sym_as_type_cast_expression] = STATE(1800), + [sym__max_group] = STATE(1800), + [sym_literal] = STATE(1797), + [sym_map_init_expression] = STATE(1801), + [sym_array_creation] = STATE(1800), + [sym_fixed_array_creation] = STATE(1800), + [sym_selector_expression] = STATE(1800), + [sym_index_expression] = STATE(1800), + [sym_slice_expression] = STATE(1800), + [sym_if_expression] = STATE(1801), + [sym_compile_time_if_expression] = STATE(1801), + [sym_is_expression] = STATE(1800), + [sym_in_expression] = STATE(1800), + [sym_enum_fetch] = STATE(1800), + [sym_match_expression] = STATE(1801), + [sym_select_expression] = STATE(1801), + [sym_lock_expression] = STATE(1801), + [sym_unsafe_expression] = STATE(1801), + [sym_sql_expression] = STATE(1801), + [sym_c_string_literal] = STATE(1792), + [sym_raw_string_literal] = STATE(1792), + [sym_interpreted_string_literal] = STATE(1792), + [sym_mutability_modifiers] = STATE(868), + [sym_plain_type] = STATE(4300), + [sym__plain_type_without_special] = STATE(2360), + [sym_anon_struct_type] = STATE(2362), + [sym_multi_return_type] = STATE(2360), + [sym_result_type] = STATE(2360), + [sym_option_type] = STATE(2360), + [sym_qualified_type] = STATE(3460), + [sym_fixed_array_type] = STATE(2362), + [sym_array_type] = STATE(2362), + [sym_pointer_type] = STATE(2362), + [sym_wrong_pointer_type] = STATE(2362), + [sym_map_type] = STATE(2362), + [sym_channel_type] = STATE(2362), + [sym_shared_type] = STATE(2362), + [sym_thread_type] = STATE(2362), + [sym_atomic_type] = STATE(2362), + [sym_generic_type] = STATE(2362), + [sym_function_type] = STATE(2362), + [sym_identifier] = ACTIONS(3198), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1428), - [anon_sym_LBRACE] = ACTIONS(1430), - [anon_sym_LPAREN] = ACTIONS(1432), - [anon_sym_fn] = ACTIONS(1434), - [anon_sym_PLUS] = ACTIONS(3064), - [anon_sym_DASH] = ACTIONS(3064), - [anon_sym_STAR] = ACTIONS(3066), - [anon_sym_struct] = ACTIONS(1440), + [anon_sym_DOT] = ACTIONS(3200), + [anon_sym_LBRACE] = ACTIONS(3202), + [anon_sym_LPAREN] = ACTIONS(3204), + [anon_sym_fn] = ACTIONS(3206), + [anon_sym_PLUS] = ACTIONS(3208), + [anon_sym_DASH] = ACTIONS(3208), + [anon_sym_STAR] = ACTIONS(3210), + [anon_sym_struct] = ACTIONS(3212), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(3068), - [anon_sym_go] = ACTIONS(3070), - [anon_sym_spawn] = ACTIONS(3072), - [anon_sym_json_DOTdecode] = ACTIONS(1448), - [anon_sym_LBRACK2] = ACTIONS(1821), - [anon_sym_TILDE] = ACTIONS(3064), - [anon_sym_CARET] = ACTIONS(3064), - [anon_sym_AMP] = ACTIONS(3074), - [anon_sym_LT_DASH] = ACTIONS(3076), - [sym_none] = ACTIONS(1456), - [sym_true] = ACTIONS(1456), - [sym_false] = ACTIONS(1456), - [sym_nil] = ACTIONS(1456), - [anon_sym_if] = ACTIONS(1827), - [anon_sym_DOLLARif] = ACTIONS(1460), - [anon_sym_match] = ACTIONS(1462), - [anon_sym_select] = ACTIONS(3078), - [anon_sym_lock] = ACTIONS(3080), - [anon_sym_rlock] = ACTIONS(3080), - [anon_sym_unsafe] = ACTIONS(1833), - [anon_sym_sql] = ACTIONS(1470), - [sym_int_literal] = ACTIONS(1456), - [sym_float_literal] = ACTIONS(1472), - [sym_rune_literal] = ACTIONS(1472), - [sym_pseudo_compile_time_identifier] = ACTIONS(1474), + [anon_sym_BANG] = ACTIONS(3214), + [anon_sym_go] = ACTIONS(3216), + [anon_sym_spawn] = ACTIONS(3218), + [anon_sym_json_DOTdecode] = ACTIONS(3220), + [anon_sym_LBRACK2] = ACTIONS(3222), + [anon_sym_TILDE] = ACTIONS(3208), + [anon_sym_CARET] = ACTIONS(3208), + [anon_sym_AMP] = ACTIONS(3224), + [anon_sym_LT_DASH] = ACTIONS(3226), + [sym_none] = ACTIONS(3228), + [sym_true] = ACTIONS(3228), + [sym_false] = ACTIONS(3228), + [sym_nil] = ACTIONS(3228), + [anon_sym_if] = ACTIONS(3230), + [anon_sym_DOLLARif] = ACTIONS(3232), + [anon_sym_match] = ACTIONS(3234), + [anon_sym_select] = ACTIONS(3236), + [anon_sym_lock] = ACTIONS(3238), + [anon_sym_rlock] = ACTIONS(3238), + [anon_sym_unsafe] = ACTIONS(3240), + [anon_sym_sql] = ACTIONS(3242), + [sym_int_literal] = ACTIONS(3228), + [sym_float_literal] = ACTIONS(3244), + [sym_rune_literal] = ACTIONS(3244), + [sym_pseudo_compile_time_identifier] = ACTIONS(3246), [anon_sym_shared] = ACTIONS(83), [anon_sym_map_LBRACK] = ACTIONS(85), [anon_sym_chan] = ACTIONS(87), [anon_sym_thread] = ACTIONS(89), [anon_sym_atomic] = ACTIONS(91), - [sym___double_quote] = ACTIONS(1478), - [sym___single_quote] = ACTIONS(1480), - [sym___c_double_quote] = ACTIONS(1482), - [sym___c_single_quote] = ACTIONS(1484), - [sym___r_double_quote] = ACTIONS(1486), - [sym___r_single_quote] = ACTIONS(1488), + [sym___double_quote] = ACTIONS(3248), + [sym___single_quote] = ACTIONS(3250), + [sym___c_double_quote] = ACTIONS(3252), + [sym___c_single_quote] = ACTIONS(3254), + [sym___r_double_quote] = ACTIONS(3256), + [sym___r_single_quote] = ACTIONS(3258), }, [775] = { [sym_line_comment] = STATE(775), [sym_block_comment] = STATE(775), - [sym__expression] = STATE(218), - [sym__expression_without_blocks] = STATE(442), - [sym__expression_with_blocks] = STATE(442), - [sym_inc_expression] = STATE(439), - [sym_dec_expression] = STATE(439), - [sym_or_block_expression] = STATE(439), - [sym_option_propagation_expression] = STATE(439), - [sym_result_propagation_expression] = STATE(439), - [sym_anon_struct_value_expression] = STATE(438), - [sym_go_expression] = STATE(439), - [sym_spawn_expression] = STATE(439), - [sym_parenthesized_expression] = STATE(439), - [sym_call_expression] = STATE(439), - [sym_type_initializer] = STATE(438), - [sym_function_literal] = STATE(439), - [sym_reference_expression] = STATE(437), - [sym_type_reference_expression] = STATE(3541), - [sym_unary_expression] = STATE(439), - [sym_receive_expression] = STATE(439), - [sym_binary_expression] = STATE(439), - [sym_as_type_cast_expression] = STATE(439), - [sym__max_group] = STATE(439), - [sym_literal] = STATE(495), - [sym_map_init_expression] = STATE(438), - [sym_array_creation] = STATE(439), - [sym_fixed_array_creation] = STATE(439), - [sym_selector_expression] = STATE(439), - [sym_index_expression] = STATE(439), - [sym_slice_expression] = STATE(439), - [sym_if_expression] = STATE(438), - [sym_compile_time_if_expression] = STATE(438), - [sym_is_expression] = STATE(439), - [sym_in_expression] = STATE(439), - [sym_enum_fetch] = STATE(439), - [sym_match_expression] = STATE(438), - [sym_select_expression] = STATE(438), - [sym_lock_expression] = STATE(438), - [sym_unsafe_expression] = STATE(438), - [sym_sql_expression] = STATE(438), - [sym_c_string_literal] = STATE(496), - [sym_raw_string_literal] = STATE(496), - [sym_interpreted_string_literal] = STATE(496), - [sym_mutability_modifiers] = STATE(862), - [sym_plain_type] = STATE(4049), - [sym__plain_type_without_special] = STATE(2302), - [sym_anon_struct_type] = STATE(2303), - [sym_multi_return_type] = STATE(2302), - [sym_result_type] = STATE(2302), - [sym_option_type] = STATE(2302), - [sym_qualified_type] = STATE(3541), - [sym_fixed_array_type] = STATE(2303), - [sym_array_type] = STATE(2303), - [sym_pointer_type] = STATE(2303), - [sym_wrong_pointer_type] = STATE(2303), - [sym_map_type] = STATE(2303), - [sym_channel_type] = STATE(2303), - [sym_shared_type] = STATE(2303), - [sym_thread_type] = STATE(2303), - [sym_atomic_type] = STATE(2303), - [sym_generic_type] = STATE(2303), - [sym_function_type] = STATE(2303), - [sym_identifier] = ACTIONS(3096), + [sym__expression] = STATE(962), + [sym__expression_without_blocks] = STATE(1086), + [sym__expression_with_blocks] = STATE(1086), + [sym_inc_expression] = STATE(1088), + [sym_dec_expression] = STATE(1088), + [sym_or_block_expression] = STATE(1088), + [sym_option_propagation_expression] = STATE(1088), + [sym_result_propagation_expression] = STATE(1088), + [sym_anon_struct_value_expression] = STATE(1025), + [sym_go_expression] = STATE(1088), + [sym_spawn_expression] = STATE(1088), + [sym_parenthesized_expression] = STATE(1088), + [sym_call_expression] = STATE(1088), + [sym_type_initializer] = STATE(1025), + [sym_function_literal] = STATE(1088), + [sym_reference_expression] = STATE(1024), + [sym_type_reference_expression] = STATE(3460), + [sym_unary_expression] = STATE(1088), + [sym_receive_expression] = STATE(1088), + [sym_binary_expression] = STATE(1088), + [sym_as_type_cast_expression] = STATE(1088), + [sym__max_group] = STATE(1088), + [sym_literal] = STATE(1078), + [sym_map_init_expression] = STATE(1025), + [sym_array_creation] = STATE(1088), + [sym_fixed_array_creation] = STATE(1088), + [sym_selector_expression] = STATE(1088), + [sym_index_expression] = STATE(1088), + [sym_slice_expression] = STATE(1088), + [sym_if_expression] = STATE(1025), + [sym_compile_time_if_expression] = STATE(1025), + [sym_is_expression] = STATE(1088), + [sym_in_expression] = STATE(1088), + [sym_enum_fetch] = STATE(1088), + [sym_match_expression] = STATE(1025), + [sym_select_expression] = STATE(1025), + [sym_lock_expression] = STATE(1025), + [sym_unsafe_expression] = STATE(1025), + [sym_sql_expression] = STATE(1025), + [sym_c_string_literal] = STATE(993), + [sym_raw_string_literal] = STATE(993), + [sym_interpreted_string_literal] = STATE(993), + [sym_mutability_modifiers] = STATE(618), + [sym_plain_type] = STATE(4090), + [sym__plain_type_without_special] = STATE(2360), + [sym_anon_struct_type] = STATE(2362), + [sym_multi_return_type] = STATE(2360), + [sym_result_type] = STATE(2360), + [sym_option_type] = STATE(2360), + [sym_qualified_type] = STATE(3460), + [sym_fixed_array_type] = STATE(2362), + [sym_array_type] = STATE(2362), + [sym_pointer_type] = STATE(2362), + [sym_wrong_pointer_type] = STATE(2362), + [sym_map_type] = STATE(2362), + [sym_channel_type] = STATE(2362), + [sym_shared_type] = STATE(2362), + [sym_thread_type] = STATE(2362), + [sym_atomic_type] = STATE(2362), + [sym_generic_type] = STATE(2362), + [sym_function_type] = STATE(2362), + [sym_identifier] = ACTIONS(493), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(501), + [anon_sym_LBRACE] = ACTIONS(2235), + [anon_sym_LPAREN] = ACTIONS(2237), + [anon_sym_fn] = ACTIONS(507), + [anon_sym_PLUS] = ACTIONS(2239), + [anon_sym_DASH] = ACTIONS(2239), + [anon_sym_STAR] = ACTIONS(2241), + [anon_sym_struct] = ACTIONS(513), + [anon_sym_mut] = ACTIONS(41), + [anon_sym_QMARK] = ACTIONS(47), + [anon_sym_BANG] = ACTIONS(2243), + [anon_sym_go] = ACTIONS(519), + [anon_sym_spawn] = ACTIONS(521), + [anon_sym_json_DOTdecode] = ACTIONS(2245), + [anon_sym_LBRACK2] = ACTIONS(2247), + [anon_sym_TILDE] = ACTIONS(2239), + [anon_sym_CARET] = ACTIONS(2239), + [anon_sym_AMP] = ACTIONS(2249), + [anon_sym_LT_DASH] = ACTIONS(2251), + [sym_none] = ACTIONS(531), + [sym_true] = ACTIONS(531), + [sym_false] = ACTIONS(531), + [sym_nil] = ACTIONS(531), + [anon_sym_if] = ACTIONS(533), + [anon_sym_DOLLARif] = ACTIONS(535), + [anon_sym_match] = ACTIONS(537), + [anon_sym_select] = ACTIONS(539), + [anon_sym_lock] = ACTIONS(541), + [anon_sym_rlock] = ACTIONS(541), + [anon_sym_unsafe] = ACTIONS(543), + [anon_sym_sql] = ACTIONS(545), + [sym_int_literal] = ACTIONS(531), + [sym_float_literal] = ACTIONS(2253), + [sym_rune_literal] = ACTIONS(2253), + [sym_pseudo_compile_time_identifier] = ACTIONS(547), + [anon_sym_shared] = ACTIONS(83), + [anon_sym_map_LBRACK] = ACTIONS(85), + [anon_sym_chan] = ACTIONS(87), + [anon_sym_thread] = ACTIONS(89), + [anon_sym_atomic] = ACTIONS(91), + [sym___double_quote] = ACTIONS(2255), + [sym___single_quote] = ACTIONS(2257), + [sym___c_double_quote] = ACTIONS(2259), + [sym___c_single_quote] = ACTIONS(2261), + [sym___r_double_quote] = ACTIONS(2263), + [sym___r_single_quote] = ACTIONS(2265), + }, + [776] = { + [sym_line_comment] = STATE(776), + [sym_block_comment] = STATE(776), + [sym__expression] = STATE(965), + [sym__expression_without_blocks] = STATE(1086), + [sym__expression_with_blocks] = STATE(1086), + [sym_inc_expression] = STATE(1088), + [sym_dec_expression] = STATE(1088), + [sym_or_block_expression] = STATE(1088), + [sym_option_propagation_expression] = STATE(1088), + [sym_result_propagation_expression] = STATE(1088), + [sym_anon_struct_value_expression] = STATE(1025), + [sym_go_expression] = STATE(1088), + [sym_spawn_expression] = STATE(1088), + [sym_parenthesized_expression] = STATE(1088), + [sym_call_expression] = STATE(1088), + [sym_type_initializer] = STATE(1025), + [sym_function_literal] = STATE(1088), + [sym_reference_expression] = STATE(1024), + [sym_type_reference_expression] = STATE(3460), + [sym_unary_expression] = STATE(1088), + [sym_receive_expression] = STATE(1088), + [sym_binary_expression] = STATE(1088), + [sym_as_type_cast_expression] = STATE(1088), + [sym__max_group] = STATE(1088), + [sym_literal] = STATE(1078), + [sym_map_init_expression] = STATE(1025), + [sym_array_creation] = STATE(1088), + [sym_fixed_array_creation] = STATE(1088), + [sym_selector_expression] = STATE(1088), + [sym_index_expression] = STATE(1088), + [sym_slice_expression] = STATE(1088), + [sym_if_expression] = STATE(1025), + [sym_compile_time_if_expression] = STATE(1025), + [sym_is_expression] = STATE(1088), + [sym_in_expression] = STATE(1088), + [sym_enum_fetch] = STATE(1088), + [sym_match_expression] = STATE(1025), + [sym_select_expression] = STATE(1025), + [sym_lock_expression] = STATE(1025), + [sym_unsafe_expression] = STATE(1025), + [sym_sql_expression] = STATE(1025), + [sym_c_string_literal] = STATE(993), + [sym_raw_string_literal] = STATE(993), + [sym_interpreted_string_literal] = STATE(993), + [sym_mutability_modifiers] = STATE(618), + [sym_plain_type] = STATE(4119), + [sym__plain_type_without_special] = STATE(2360), + [sym_anon_struct_type] = STATE(2362), + [sym_multi_return_type] = STATE(2360), + [sym_result_type] = STATE(2360), + [sym_option_type] = STATE(2360), + [sym_qualified_type] = STATE(3460), + [sym_fixed_array_type] = STATE(2362), + [sym_array_type] = STATE(2362), + [sym_pointer_type] = STATE(2362), + [sym_wrong_pointer_type] = STATE(2362), + [sym_map_type] = STATE(2362), + [sym_channel_type] = STATE(2362), + [sym_shared_type] = STATE(2362), + [sym_thread_type] = STATE(2362), + [sym_atomic_type] = STATE(2362), + [sym_generic_type] = STATE(2362), + [sym_function_type] = STATE(2362), + [sym_identifier] = ACTIONS(493), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(501), + [anon_sym_LBRACE] = ACTIONS(2235), + [anon_sym_LPAREN] = ACTIONS(2237), + [anon_sym_fn] = ACTIONS(507), + [anon_sym_PLUS] = ACTIONS(2239), + [anon_sym_DASH] = ACTIONS(2239), + [anon_sym_STAR] = ACTIONS(2241), + [anon_sym_struct] = ACTIONS(513), + [anon_sym_mut] = ACTIONS(41), + [anon_sym_QMARK] = ACTIONS(47), + [anon_sym_BANG] = ACTIONS(2243), + [anon_sym_go] = ACTIONS(519), + [anon_sym_spawn] = ACTIONS(521), + [anon_sym_json_DOTdecode] = ACTIONS(2245), + [anon_sym_LBRACK2] = ACTIONS(2247), + [anon_sym_TILDE] = ACTIONS(2239), + [anon_sym_CARET] = ACTIONS(2239), + [anon_sym_AMP] = ACTIONS(2249), + [anon_sym_LT_DASH] = ACTIONS(2251), + [sym_none] = ACTIONS(531), + [sym_true] = ACTIONS(531), + [sym_false] = ACTIONS(531), + [sym_nil] = ACTIONS(531), + [anon_sym_if] = ACTIONS(533), + [anon_sym_DOLLARif] = ACTIONS(535), + [anon_sym_match] = ACTIONS(537), + [anon_sym_select] = ACTIONS(539), + [anon_sym_lock] = ACTIONS(541), + [anon_sym_rlock] = ACTIONS(541), + [anon_sym_unsafe] = ACTIONS(543), + [anon_sym_sql] = ACTIONS(545), + [sym_int_literal] = ACTIONS(531), + [sym_float_literal] = ACTIONS(2253), + [sym_rune_literal] = ACTIONS(2253), + [sym_pseudo_compile_time_identifier] = ACTIONS(547), + [anon_sym_shared] = ACTIONS(83), + [anon_sym_map_LBRACK] = ACTIONS(85), + [anon_sym_chan] = ACTIONS(87), + [anon_sym_thread] = ACTIONS(89), + [anon_sym_atomic] = ACTIONS(91), + [sym___double_quote] = ACTIONS(2255), + [sym___single_quote] = ACTIONS(2257), + [sym___c_double_quote] = ACTIONS(2259), + [sym___c_single_quote] = ACTIONS(2261), + [sym___r_double_quote] = ACTIONS(2263), + [sym___r_single_quote] = ACTIONS(2265), + }, + [777] = { + [sym_line_comment] = STATE(777), + [sym_block_comment] = STATE(777), + [sym__expression] = STATE(219), + [sym__expression_without_blocks] = STATE(401), + [sym__expression_with_blocks] = STATE(401), + [sym_inc_expression] = STATE(399), + [sym_dec_expression] = STATE(399), + [sym_or_block_expression] = STATE(399), + [sym_option_propagation_expression] = STATE(399), + [sym_result_propagation_expression] = STATE(399), + [sym_anon_struct_value_expression] = STATE(395), + [sym_go_expression] = STATE(399), + [sym_spawn_expression] = STATE(399), + [sym_parenthesized_expression] = STATE(399), + [sym_call_expression] = STATE(399), + [sym_type_initializer] = STATE(395), + [sym_function_literal] = STATE(399), + [sym_reference_expression] = STATE(393), + [sym_type_reference_expression] = STATE(3460), + [sym_unary_expression] = STATE(399), + [sym_receive_expression] = STATE(399), + [sym_binary_expression] = STATE(399), + [sym_as_type_cast_expression] = STATE(399), + [sym__max_group] = STATE(399), + [sym_literal] = STATE(455), + [sym_map_init_expression] = STATE(395), + [sym_array_creation] = STATE(399), + [sym_fixed_array_creation] = STATE(399), + [sym_selector_expression] = STATE(399), + [sym_index_expression] = STATE(399), + [sym_slice_expression] = STATE(399), + [sym_if_expression] = STATE(395), + [sym_compile_time_if_expression] = STATE(395), + [sym_is_expression] = STATE(399), + [sym_in_expression] = STATE(399), + [sym_enum_fetch] = STATE(399), + [sym_match_expression] = STATE(395), + [sym_select_expression] = STATE(395), + [sym_lock_expression] = STATE(395), + [sym_unsafe_expression] = STATE(395), + [sym_sql_expression] = STATE(395), + [sym_c_string_literal] = STATE(479), + [sym_raw_string_literal] = STATE(479), + [sym_interpreted_string_literal] = STATE(479), + [sym_mutability_modifiers] = STATE(845), + [sym_plain_type] = STATE(4069), + [sym__plain_type_without_special] = STATE(2360), + [sym_anon_struct_type] = STATE(2362), + [sym_multi_return_type] = STATE(2360), + [sym_result_type] = STATE(2360), + [sym_option_type] = STATE(2360), + [sym_qualified_type] = STATE(3460), + [sym_fixed_array_type] = STATE(2362), + [sym_array_type] = STATE(2362), + [sym_pointer_type] = STATE(2362), + [sym_wrong_pointer_type] = STATE(2362), + [sym_map_type] = STATE(2362), + [sym_channel_type] = STATE(2362), + [sym_shared_type] = STATE(2362), + [sym_thread_type] = STATE(2362), + [sym_atomic_type] = STATE(2362), + [sym_generic_type] = STATE(2362), + [sym_function_type] = STATE(2362), + [sym_identifier] = ACTIONS(3184), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), [anon_sym_DOT] = ACTIONS(17), - [anon_sym_LBRACE] = ACTIONS(3098), + [anon_sym_LBRACE] = ACTIONS(3186), [anon_sym_LPAREN] = ACTIONS(23), [anon_sym_fn] = ACTIONS(485), [anon_sym_PLUS] = ACTIONS(31), @@ -112317,303 +112565,75 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym___r_double_quote] = ACTIONS(123), [sym___r_single_quote] = ACTIONS(125), }, - [776] = { - [sym_line_comment] = STATE(776), - [sym_block_comment] = STATE(776), - [sym__expression] = STATE(2693), - [sym__expression_without_blocks] = STATE(2300), - [sym__expression_with_blocks] = STATE(2300), - [sym_inc_expression] = STATE(2307), - [sym_dec_expression] = STATE(2307), - [sym_or_block_expression] = STATE(2307), - [sym_option_propagation_expression] = STATE(2307), - [sym_result_propagation_expression] = STATE(2307), - [sym_anon_struct_value_expression] = STATE(2380), - [sym_go_expression] = STATE(2307), - [sym_spawn_expression] = STATE(2307), - [sym_parenthesized_expression] = STATE(2307), - [sym_call_expression] = STATE(2307), - [sym_type_initializer] = STATE(2380), - [sym_function_literal] = STATE(2307), - [sym_reference_expression] = STATE(2311), - [sym_type_reference_expression] = STATE(3541), - [sym_unary_expression] = STATE(2307), - [sym_receive_expression] = STATE(2307), - [sym_binary_expression] = STATE(2307), - [sym_as_type_cast_expression] = STATE(2307), - [sym__max_group] = STATE(2307), - [sym_literal] = STATE(2292), - [sym_map_init_expression] = STATE(2380), - [sym_array_creation] = STATE(2307), - [sym_fixed_array_creation] = STATE(2307), - [sym_selector_expression] = STATE(2307), - [sym_index_expression] = STATE(2307), - [sym_slice_expression] = STATE(2307), - [sym_if_expression] = STATE(2380), - [sym_compile_time_if_expression] = STATE(2380), - [sym_is_expression] = STATE(2307), - [sym_in_expression] = STATE(2307), - [sym_enum_fetch] = STATE(2307), - [sym_match_expression] = STATE(2380), - [sym_select_expression] = STATE(2380), - [sym_lock_expression] = STATE(2380), - [sym_unsafe_expression] = STATE(2380), - [sym_sql_expression] = STATE(2380), - [sym_c_string_literal] = STATE(2308), - [sym_raw_string_literal] = STATE(2308), - [sym_interpreted_string_literal] = STATE(2308), - [sym_mutability_modifiers] = STATE(939), - [sym_plain_type] = STATE(4297), - [sym__plain_type_without_special] = STATE(2302), - [sym_anon_struct_type] = STATE(2303), - [sym_multi_return_type] = STATE(2302), - [sym_result_type] = STATE(2302), - [sym_option_type] = STATE(2302), - [sym_qualified_type] = STATE(3541), - [sym_fixed_array_type] = STATE(2303), - [sym_array_type] = STATE(2303), - [sym_pointer_type] = STATE(2303), - [sym_wrong_pointer_type] = STATE(2303), - [sym_map_type] = STATE(2303), - [sym_channel_type] = STATE(2303), - [sym_shared_type] = STATE(2303), - [sym_thread_type] = STATE(2303), - [sym_atomic_type] = STATE(2303), - [sym_generic_type] = STATE(2303), - [sym_function_type] = STATE(2303), - [sym_identifier] = ACTIONS(2189), - [anon_sym_SLASH_SLASH] = ACTIONS(3), - [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1428), - [anon_sym_LBRACE] = ACTIONS(1430), - [anon_sym_LPAREN] = ACTIONS(1432), - [anon_sym_fn] = ACTIONS(1434), - [anon_sym_PLUS] = ACTIONS(2491), - [anon_sym_DASH] = ACTIONS(2491), - [anon_sym_STAR] = ACTIONS(3354), - [anon_sym_struct] = ACTIONS(1440), - [anon_sym_mut] = ACTIONS(41), - [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(3356), - [anon_sym_go] = ACTIONS(2497), - [anon_sym_spawn] = ACTIONS(2499), - [anon_sym_json_DOTdecode] = ACTIONS(1448), - [anon_sym_LBRACK2] = ACTIONS(1450), - [anon_sym_TILDE] = ACTIONS(2491), - [anon_sym_CARET] = ACTIONS(2491), - [anon_sym_AMP] = ACTIONS(3358), - [anon_sym_LT_DASH] = ACTIONS(2503), - [sym_none] = ACTIONS(1456), - [sym_true] = ACTIONS(1456), - [sym_false] = ACTIONS(1456), - [sym_nil] = ACTIONS(1456), - [anon_sym_if] = ACTIONS(1827), - [anon_sym_DOLLARif] = ACTIONS(1460), - [anon_sym_match] = ACTIONS(1462), - [anon_sym_select] = ACTIONS(1464), - [anon_sym_lock] = ACTIONS(1466), - [anon_sym_rlock] = ACTIONS(1466), - [anon_sym_unsafe] = ACTIONS(1833), - [anon_sym_sql] = ACTIONS(1470), - [sym_int_literal] = ACTIONS(1456), - [sym_float_literal] = ACTIONS(1472), - [sym_rune_literal] = ACTIONS(1472), - [sym_pseudo_compile_time_identifier] = ACTIONS(1474), - [anon_sym_shared] = ACTIONS(83), - [anon_sym_map_LBRACK] = ACTIONS(85), - [anon_sym_chan] = ACTIONS(87), - [anon_sym_thread] = ACTIONS(89), - [anon_sym_atomic] = ACTIONS(91), - [sym___double_quote] = ACTIONS(1478), - [sym___single_quote] = ACTIONS(1480), - [sym___c_double_quote] = ACTIONS(1482), - [sym___c_single_quote] = ACTIONS(1484), - [sym___r_double_quote] = ACTIONS(1486), - [sym___r_single_quote] = ACTIONS(1488), - }, - [777] = { - [sym_line_comment] = STATE(777), - [sym_block_comment] = STATE(777), - [sym__expression] = STATE(2831), - [sym__expression_without_blocks] = STATE(2300), - [sym__expression_with_blocks] = STATE(2300), - [sym_inc_expression] = STATE(2307), - [sym_dec_expression] = STATE(2307), - [sym_or_block_expression] = STATE(2307), - [sym_option_propagation_expression] = STATE(2307), - [sym_result_propagation_expression] = STATE(2307), - [sym_anon_struct_value_expression] = STATE(2380), - [sym_go_expression] = STATE(2307), - [sym_spawn_expression] = STATE(2307), - [sym_parenthesized_expression] = STATE(2307), - [sym_call_expression] = STATE(2307), - [sym_type_initializer] = STATE(2380), - [sym_function_literal] = STATE(2307), - [sym_reference_expression] = STATE(2916), - [sym_type_reference_expression] = STATE(3541), - [sym_unary_expression] = STATE(2307), - [sym_receive_expression] = STATE(2307), - [sym_binary_expression] = STATE(2307), - [sym_as_type_cast_expression] = STATE(2307), - [sym__max_group] = STATE(2307), - [sym_literal] = STATE(2292), - [sym_map_init_expression] = STATE(2380), - [sym_array_creation] = STATE(2307), - [sym_fixed_array_creation] = STATE(2307), - [sym_selector_expression] = STATE(2917), - [sym_index_expression] = STATE(2307), - [sym_slice_expression] = STATE(2307), - [sym_if_expression] = STATE(2380), - [sym_compile_time_if_expression] = STATE(2380), - [sym_is_expression] = STATE(2307), - [sym_in_expression] = STATE(2307), - [sym_enum_fetch] = STATE(2307), - [sym_match_expression] = STATE(2380), - [sym_select_expression] = STATE(2380), - [sym_lock_expression] = STATE(2380), - [sym_unsafe_expression] = STATE(2380), - [sym_sql_expression] = STATE(2380), - [sym_c_string_literal] = STATE(2308), - [sym_raw_string_literal] = STATE(2308), - [sym_interpreted_string_literal] = STATE(2308), - [sym_mutability_modifiers] = STATE(939), - [sym_plain_type] = STATE(4297), - [sym__plain_type_without_special] = STATE(2302), - [sym_anon_struct_type] = STATE(2303), - [sym_multi_return_type] = STATE(2302), - [sym_result_type] = STATE(2302), - [sym_option_type] = STATE(2302), - [sym_qualified_type] = STATE(3541), - [sym_fixed_array_type] = STATE(2303), - [sym_array_type] = STATE(2303), - [sym_pointer_type] = STATE(2303), - [sym_wrong_pointer_type] = STATE(2303), - [sym_map_type] = STATE(2303), - [sym_channel_type] = STATE(2303), - [sym_shared_type] = STATE(2303), - [sym_thread_type] = STATE(2303), - [sym_atomic_type] = STATE(2303), - [sym_generic_type] = STATE(2303), - [sym_function_type] = STATE(2303), - [sym_identifier] = ACTIONS(2189), - [anon_sym_SLASH_SLASH] = ACTIONS(3), - [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1428), - [anon_sym_LBRACE] = ACTIONS(1430), - [anon_sym_LPAREN] = ACTIONS(1432), - [anon_sym_fn] = ACTIONS(1434), - [anon_sym_PLUS] = ACTIONS(1436), - [anon_sym_DASH] = ACTIONS(1436), - [anon_sym_STAR] = ACTIONS(1438), - [anon_sym_struct] = ACTIONS(1440), - [anon_sym_mut] = ACTIONS(41), - [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(1442), - [anon_sym_go] = ACTIONS(1444), - [anon_sym_spawn] = ACTIONS(1446), - [anon_sym_json_DOTdecode] = ACTIONS(1448), - [anon_sym_LBRACK2] = ACTIONS(1450), - [anon_sym_TILDE] = ACTIONS(1436), - [anon_sym_CARET] = ACTIONS(1436), - [anon_sym_AMP] = ACTIONS(1452), - [anon_sym_LT_DASH] = ACTIONS(1454), - [sym_none] = ACTIONS(1456), - [sym_true] = ACTIONS(1456), - [sym_false] = ACTIONS(1456), - [sym_nil] = ACTIONS(1456), - [anon_sym_if] = ACTIONS(1827), - [anon_sym_DOLLARif] = ACTIONS(1460), - [anon_sym_match] = ACTIONS(1462), - [anon_sym_select] = ACTIONS(1464), - [anon_sym_lock] = ACTIONS(1466), - [anon_sym_rlock] = ACTIONS(1466), - [anon_sym_unsafe] = ACTIONS(1833), - [anon_sym_sql] = ACTIONS(1470), - [sym_int_literal] = ACTIONS(1456), - [sym_float_literal] = ACTIONS(1472), - [sym_rune_literal] = ACTIONS(1472), - [sym_pseudo_compile_time_identifier] = ACTIONS(1474), - [anon_sym_shared] = ACTIONS(83), - [anon_sym_map_LBRACK] = ACTIONS(85), - [anon_sym_chan] = ACTIONS(87), - [anon_sym_thread] = ACTIONS(89), - [anon_sym_atomic] = ACTIONS(91), - [sym___double_quote] = ACTIONS(1478), - [sym___single_quote] = ACTIONS(1480), - [sym___c_double_quote] = ACTIONS(1482), - [sym___c_single_quote] = ACTIONS(1484), - [sym___r_double_quote] = ACTIONS(1486), - [sym___r_single_quote] = ACTIONS(1488), - }, [778] = { [sym_line_comment] = STATE(778), [sym_block_comment] = STATE(778), - [sym__expression] = STATE(222), - [sym__expression_without_blocks] = STATE(442), - [sym__expression_with_blocks] = STATE(442), - [sym_inc_expression] = STATE(439), - [sym_dec_expression] = STATE(439), - [sym_or_block_expression] = STATE(439), - [sym_option_propagation_expression] = STATE(439), - [sym_result_propagation_expression] = STATE(439), - [sym_anon_struct_value_expression] = STATE(438), - [sym_go_expression] = STATE(439), - [sym_spawn_expression] = STATE(439), - [sym_parenthesized_expression] = STATE(439), - [sym_call_expression] = STATE(439), - [sym_type_initializer] = STATE(438), - [sym_function_literal] = STATE(439), - [sym_reference_expression] = STATE(437), - [sym_type_reference_expression] = STATE(3541), - [sym_unary_expression] = STATE(439), - [sym_receive_expression] = STATE(439), - [sym_binary_expression] = STATE(439), - [sym_as_type_cast_expression] = STATE(439), - [sym__max_group] = STATE(439), - [sym_literal] = STATE(495), - [sym_map_init_expression] = STATE(438), - [sym_array_creation] = STATE(439), - [sym_fixed_array_creation] = STATE(439), - [sym_selector_expression] = STATE(439), - [sym_index_expression] = STATE(439), - [sym_slice_expression] = STATE(439), - [sym_if_expression] = STATE(438), - [sym_compile_time_if_expression] = STATE(438), - [sym_is_expression] = STATE(439), - [sym_in_expression] = STATE(439), - [sym_enum_fetch] = STATE(439), - [sym_match_expression] = STATE(438), - [sym_select_expression] = STATE(438), - [sym_lock_expression] = STATE(438), - [sym_unsafe_expression] = STATE(438), - [sym_sql_expression] = STATE(438), - [sym_c_string_literal] = STATE(496), - [sym_raw_string_literal] = STATE(496), - [sym_interpreted_string_literal] = STATE(496), - [sym_mutability_modifiers] = STATE(862), - [sym_plain_type] = STATE(4049), - [sym__plain_type_without_special] = STATE(2302), - [sym_anon_struct_type] = STATE(2303), - [sym_multi_return_type] = STATE(2302), - [sym_result_type] = STATE(2302), - [sym_option_type] = STATE(2302), - [sym_qualified_type] = STATE(3541), - [sym_fixed_array_type] = STATE(2303), - [sym_array_type] = STATE(2303), - [sym_pointer_type] = STATE(2303), - [sym_wrong_pointer_type] = STATE(2303), - [sym_map_type] = STATE(2303), - [sym_channel_type] = STATE(2303), - [sym_shared_type] = STATE(2303), - [sym_thread_type] = STATE(2303), - [sym_atomic_type] = STATE(2303), - [sym_generic_type] = STATE(2303), - [sym_function_type] = STATE(2303), - [sym_identifier] = ACTIONS(3096), + [sym__expression] = STATE(220), + [sym__expression_without_blocks] = STATE(401), + [sym__expression_with_blocks] = STATE(401), + [sym_inc_expression] = STATE(399), + [sym_dec_expression] = STATE(399), + [sym_or_block_expression] = STATE(399), + [sym_option_propagation_expression] = STATE(399), + [sym_result_propagation_expression] = STATE(399), + [sym_anon_struct_value_expression] = STATE(395), + [sym_go_expression] = STATE(399), + [sym_spawn_expression] = STATE(399), + [sym_parenthesized_expression] = STATE(399), + [sym_call_expression] = STATE(399), + [sym_type_initializer] = STATE(395), + [sym_function_literal] = STATE(399), + [sym_reference_expression] = STATE(393), + [sym_type_reference_expression] = STATE(3460), + [sym_unary_expression] = STATE(399), + [sym_receive_expression] = STATE(399), + [sym_binary_expression] = STATE(399), + [sym_as_type_cast_expression] = STATE(399), + [sym__max_group] = STATE(399), + [sym_literal] = STATE(455), + [sym_map_init_expression] = STATE(395), + [sym_array_creation] = STATE(399), + [sym_fixed_array_creation] = STATE(399), + [sym_selector_expression] = STATE(399), + [sym_index_expression] = STATE(399), + [sym_slice_expression] = STATE(399), + [sym_if_expression] = STATE(395), + [sym_compile_time_if_expression] = STATE(395), + [sym_is_expression] = STATE(399), + [sym_in_expression] = STATE(399), + [sym_enum_fetch] = STATE(399), + [sym_match_expression] = STATE(395), + [sym_select_expression] = STATE(395), + [sym_lock_expression] = STATE(395), + [sym_unsafe_expression] = STATE(395), + [sym_sql_expression] = STATE(395), + [sym_c_string_literal] = STATE(479), + [sym_raw_string_literal] = STATE(479), + [sym_interpreted_string_literal] = STATE(479), + [sym_mutability_modifiers] = STATE(845), + [sym_plain_type] = STATE(4069), + [sym__plain_type_without_special] = STATE(2360), + [sym_anon_struct_type] = STATE(2362), + [sym_multi_return_type] = STATE(2360), + [sym_result_type] = STATE(2360), + [sym_option_type] = STATE(2360), + [sym_qualified_type] = STATE(3460), + [sym_fixed_array_type] = STATE(2362), + [sym_array_type] = STATE(2362), + [sym_pointer_type] = STATE(2362), + [sym_wrong_pointer_type] = STATE(2362), + [sym_map_type] = STATE(2362), + [sym_channel_type] = STATE(2362), + [sym_shared_type] = STATE(2362), + [sym_thread_type] = STATE(2362), + [sym_atomic_type] = STATE(2362), + [sym_generic_type] = STATE(2362), + [sym_function_type] = STATE(2362), + [sym_identifier] = ACTIONS(3184), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), [anon_sym_DOT] = ACTIONS(17), - [anon_sym_LBRACE] = ACTIONS(3098), + [anon_sym_LBRACE] = ACTIONS(3186), [anon_sym_LPAREN] = ACTIONS(23), [anon_sym_fn] = ACTIONS(485), [anon_sym_PLUS] = ACTIONS(31), @@ -112662,186 +112682,186 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [779] = { [sym_line_comment] = STATE(779), [sym_block_comment] = STATE(779), - [sym__expression] = STATE(2615), - [sym__expression_without_blocks] = STATE(2300), - [sym__expression_with_blocks] = STATE(2300), - [sym_inc_expression] = STATE(2307), - [sym_dec_expression] = STATE(2307), - [sym_or_block_expression] = STATE(2307), - [sym_option_propagation_expression] = STATE(2307), - [sym_result_propagation_expression] = STATE(2307), - [sym_anon_struct_value_expression] = STATE(2380), - [sym_go_expression] = STATE(2307), - [sym_spawn_expression] = STATE(2307), - [sym_parenthesized_expression] = STATE(2307), - [sym_call_expression] = STATE(2307), - [sym_type_initializer] = STATE(2380), - [sym_function_literal] = STATE(2307), - [sym_reference_expression] = STATE(2311), - [sym_type_reference_expression] = STATE(3541), - [sym_unary_expression] = STATE(2307), - [sym_receive_expression] = STATE(2307), - [sym_binary_expression] = STATE(2307), - [sym_as_type_cast_expression] = STATE(2307), - [sym__max_group] = STATE(2307), - [sym_literal] = STATE(2292), - [sym_map_init_expression] = STATE(2380), - [sym_array_creation] = STATE(2307), - [sym_fixed_array_creation] = STATE(2307), - [sym_selector_expression] = STATE(2307), - [sym_index_expression] = STATE(2307), - [sym_slice_expression] = STATE(2307), - [sym_if_expression] = STATE(2380), - [sym_compile_time_if_expression] = STATE(2380), - [sym_is_expression] = STATE(2307), - [sym_in_expression] = STATE(2307), - [sym_enum_fetch] = STATE(2307), - [sym_match_expression] = STATE(2380), - [sym_select_expression] = STATE(2380), - [sym_lock_expression] = STATE(2380), - [sym_unsafe_expression] = STATE(2380), - [sym_sql_expression] = STATE(2380), - [sym_c_string_literal] = STATE(2308), - [sym_raw_string_literal] = STATE(2308), - [sym_interpreted_string_literal] = STATE(2308), - [sym_mutability_modifiers] = STATE(632), - [sym_plain_type] = STATE(4297), - [sym__plain_type_without_special] = STATE(2302), - [sym_anon_struct_type] = STATE(2303), - [sym_multi_return_type] = STATE(2302), - [sym_result_type] = STATE(2302), - [sym_option_type] = STATE(2302), - [sym_qualified_type] = STATE(3541), - [sym_fixed_array_type] = STATE(2303), - [sym_array_type] = STATE(2303), - [sym_pointer_type] = STATE(2303), - [sym_wrong_pointer_type] = STATE(2303), - [sym_map_type] = STATE(2303), - [sym_channel_type] = STATE(2303), - [sym_shared_type] = STATE(2303), - [sym_thread_type] = STATE(2303), - [sym_atomic_type] = STATE(2303), - [sym_generic_type] = STATE(2303), - [sym_function_type] = STATE(2303), - [sym_identifier] = ACTIONS(1807), + [sym__expression] = STATE(965), + [sym__expression_without_blocks] = STATE(1086), + [sym__expression_with_blocks] = STATE(1086), + [sym_inc_expression] = STATE(1088), + [sym_dec_expression] = STATE(1088), + [sym_or_block_expression] = STATE(1088), + [sym_option_propagation_expression] = STATE(1088), + [sym_result_propagation_expression] = STATE(1088), + [sym_anon_struct_value_expression] = STATE(1025), + [sym_go_expression] = STATE(1088), + [sym_spawn_expression] = STATE(1088), + [sym_parenthesized_expression] = STATE(1088), + [sym_call_expression] = STATE(1088), + [sym_type_initializer] = STATE(1025), + [sym_function_literal] = STATE(1088), + [sym_reference_expression] = STATE(1024), + [sym_type_reference_expression] = STATE(3460), + [sym_unary_expression] = STATE(1088), + [sym_receive_expression] = STATE(1088), + [sym_binary_expression] = STATE(1088), + [sym_as_type_cast_expression] = STATE(1088), + [sym__max_group] = STATE(1088), + [sym_literal] = STATE(1078), + [sym_map_init_expression] = STATE(1025), + [sym_array_creation] = STATE(1088), + [sym_fixed_array_creation] = STATE(1088), + [sym_selector_expression] = STATE(1088), + [sym_index_expression] = STATE(1088), + [sym_slice_expression] = STATE(1088), + [sym_if_expression] = STATE(1025), + [sym_compile_time_if_expression] = STATE(1025), + [sym_is_expression] = STATE(1088), + [sym_in_expression] = STATE(1088), + [sym_enum_fetch] = STATE(1088), + [sym_match_expression] = STATE(1025), + [sym_select_expression] = STATE(1025), + [sym_lock_expression] = STATE(1025), + [sym_unsafe_expression] = STATE(1025), + [sym_sql_expression] = STATE(1025), + [sym_c_string_literal] = STATE(993), + [sym_raw_string_literal] = STATE(993), + [sym_interpreted_string_literal] = STATE(993), + [sym_mutability_modifiers] = STATE(618), + [sym_plain_type] = STATE(4114), + [sym__plain_type_without_special] = STATE(2360), + [sym_anon_struct_type] = STATE(2362), + [sym_multi_return_type] = STATE(2360), + [sym_result_type] = STATE(2360), + [sym_option_type] = STATE(2360), + [sym_qualified_type] = STATE(3460), + [sym_fixed_array_type] = STATE(2362), + [sym_array_type] = STATE(2362), + [sym_pointer_type] = STATE(2362), + [sym_wrong_pointer_type] = STATE(2362), + [sym_map_type] = STATE(2362), + [sym_channel_type] = STATE(2362), + [sym_shared_type] = STATE(2362), + [sym_thread_type] = STATE(2362), + [sym_atomic_type] = STATE(2362), + [sym_generic_type] = STATE(2362), + [sym_function_type] = STATE(2362), + [sym_identifier] = ACTIONS(493), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1428), - [anon_sym_LBRACE] = ACTIONS(1430), - [anon_sym_LPAREN] = ACTIONS(1432), - [anon_sym_fn] = ACTIONS(1434), - [anon_sym_PLUS] = ACTIONS(1811), - [anon_sym_DASH] = ACTIONS(1811), - [anon_sym_STAR] = ACTIONS(1813), - [anon_sym_struct] = ACTIONS(1440), + [anon_sym_DOT] = ACTIONS(501), + [anon_sym_LBRACE] = ACTIONS(2235), + [anon_sym_LPAREN] = ACTIONS(2237), + [anon_sym_fn] = ACTIONS(507), + [anon_sym_PLUS] = ACTIONS(2239), + [anon_sym_DASH] = ACTIONS(2239), + [anon_sym_STAR] = ACTIONS(2241), + [anon_sym_struct] = ACTIONS(513), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(1815), - [anon_sym_go] = ACTIONS(1817), - [anon_sym_spawn] = ACTIONS(1819), - [anon_sym_json_DOTdecode] = ACTIONS(1448), - [anon_sym_LBRACK2] = ACTIONS(1821), - [anon_sym_TILDE] = ACTIONS(1811), - [anon_sym_CARET] = ACTIONS(1811), - [anon_sym_AMP] = ACTIONS(1823), - [anon_sym_LT_DASH] = ACTIONS(1825), - [sym_none] = ACTIONS(1456), - [sym_true] = ACTIONS(1456), - [sym_false] = ACTIONS(1456), - [sym_nil] = ACTIONS(1456), - [anon_sym_if] = ACTIONS(1827), - [anon_sym_DOLLARif] = ACTIONS(1460), - [anon_sym_match] = ACTIONS(1462), - [anon_sym_select] = ACTIONS(1829), - [anon_sym_lock] = ACTIONS(1831), - [anon_sym_rlock] = ACTIONS(1831), - [anon_sym_unsafe] = ACTIONS(1833), - [anon_sym_sql] = ACTIONS(1470), - [sym_int_literal] = ACTIONS(1456), - [sym_float_literal] = ACTIONS(1472), - [sym_rune_literal] = ACTIONS(1472), - [sym_pseudo_compile_time_identifier] = ACTIONS(1474), + [anon_sym_BANG] = ACTIONS(2243), + [anon_sym_go] = ACTIONS(519), + [anon_sym_spawn] = ACTIONS(521), + [anon_sym_json_DOTdecode] = ACTIONS(2245), + [anon_sym_LBRACK2] = ACTIONS(2247), + [anon_sym_TILDE] = ACTIONS(2239), + [anon_sym_CARET] = ACTIONS(2239), + [anon_sym_AMP] = ACTIONS(2249), + [anon_sym_LT_DASH] = ACTIONS(2251), + [sym_none] = ACTIONS(531), + [sym_true] = ACTIONS(531), + [sym_false] = ACTIONS(531), + [sym_nil] = ACTIONS(531), + [anon_sym_if] = ACTIONS(533), + [anon_sym_DOLLARif] = ACTIONS(535), + [anon_sym_match] = ACTIONS(537), + [anon_sym_select] = ACTIONS(539), + [anon_sym_lock] = ACTIONS(541), + [anon_sym_rlock] = ACTIONS(541), + [anon_sym_unsafe] = ACTIONS(543), + [anon_sym_sql] = ACTIONS(545), + [sym_int_literal] = ACTIONS(531), + [sym_float_literal] = ACTIONS(2253), + [sym_rune_literal] = ACTIONS(2253), + [sym_pseudo_compile_time_identifier] = ACTIONS(547), [anon_sym_shared] = ACTIONS(83), [anon_sym_map_LBRACK] = ACTIONS(85), [anon_sym_chan] = ACTIONS(87), [anon_sym_thread] = ACTIONS(89), [anon_sym_atomic] = ACTIONS(91), - [sym___double_quote] = ACTIONS(1478), - [sym___single_quote] = ACTIONS(1480), - [sym___c_double_quote] = ACTIONS(1482), - [sym___c_single_quote] = ACTIONS(1484), - [sym___r_double_quote] = ACTIONS(1486), - [sym___r_single_quote] = ACTIONS(1488), + [sym___double_quote] = ACTIONS(2255), + [sym___single_quote] = ACTIONS(2257), + [sym___c_double_quote] = ACTIONS(2259), + [sym___c_single_quote] = ACTIONS(2261), + [sym___r_double_quote] = ACTIONS(2263), + [sym___r_single_quote] = ACTIONS(2265), }, [780] = { [sym_line_comment] = STATE(780), [sym_block_comment] = STATE(780), - [sym__expression] = STATE(225), - [sym__expression_without_blocks] = STATE(442), - [sym__expression_with_blocks] = STATE(442), - [sym_inc_expression] = STATE(439), - [sym_dec_expression] = STATE(439), - [sym_or_block_expression] = STATE(439), - [sym_option_propagation_expression] = STATE(439), - [sym_result_propagation_expression] = STATE(439), - [sym_anon_struct_value_expression] = STATE(438), - [sym_go_expression] = STATE(439), - [sym_spawn_expression] = STATE(439), - [sym_parenthesized_expression] = STATE(439), - [sym_call_expression] = STATE(439), - [sym_type_initializer] = STATE(438), - [sym_function_literal] = STATE(439), - [sym_reference_expression] = STATE(437), - [sym_type_reference_expression] = STATE(3541), - [sym_unary_expression] = STATE(439), - [sym_receive_expression] = STATE(439), - [sym_binary_expression] = STATE(439), - [sym_as_type_cast_expression] = STATE(439), - [sym__max_group] = STATE(439), - [sym_literal] = STATE(495), - [sym_map_init_expression] = STATE(438), - [sym_array_creation] = STATE(439), - [sym_fixed_array_creation] = STATE(439), - [sym_selector_expression] = STATE(439), - [sym_index_expression] = STATE(439), - [sym_slice_expression] = STATE(439), - [sym_if_expression] = STATE(438), - [sym_compile_time_if_expression] = STATE(438), - [sym_is_expression] = STATE(439), - [sym_in_expression] = STATE(439), - [sym_enum_fetch] = STATE(439), - [sym_match_expression] = STATE(438), - [sym_select_expression] = STATE(438), - [sym_lock_expression] = STATE(438), - [sym_unsafe_expression] = STATE(438), - [sym_sql_expression] = STATE(438), - [sym_c_string_literal] = STATE(496), - [sym_raw_string_literal] = STATE(496), - [sym_interpreted_string_literal] = STATE(496), - [sym_mutability_modifiers] = STATE(862), - [sym_plain_type] = STATE(4049), - [sym__plain_type_without_special] = STATE(2302), - [sym_anon_struct_type] = STATE(2303), - [sym_multi_return_type] = STATE(2302), - [sym_result_type] = STATE(2302), - [sym_option_type] = STATE(2302), - [sym_qualified_type] = STATE(3541), - [sym_fixed_array_type] = STATE(2303), - [sym_array_type] = STATE(2303), - [sym_pointer_type] = STATE(2303), - [sym_wrong_pointer_type] = STATE(2303), - [sym_map_type] = STATE(2303), - [sym_channel_type] = STATE(2303), - [sym_shared_type] = STATE(2303), - [sym_thread_type] = STATE(2303), - [sym_atomic_type] = STATE(2303), - [sym_generic_type] = STATE(2303), - [sym_function_type] = STATE(2303), - [sym_identifier] = ACTIONS(3096), + [sym__expression] = STATE(217), + [sym__expression_without_blocks] = STATE(401), + [sym__expression_with_blocks] = STATE(401), + [sym_inc_expression] = STATE(399), + [sym_dec_expression] = STATE(399), + [sym_or_block_expression] = STATE(399), + [sym_option_propagation_expression] = STATE(399), + [sym_result_propagation_expression] = STATE(399), + [sym_anon_struct_value_expression] = STATE(395), + [sym_go_expression] = STATE(399), + [sym_spawn_expression] = STATE(399), + [sym_parenthesized_expression] = STATE(399), + [sym_call_expression] = STATE(399), + [sym_type_initializer] = STATE(395), + [sym_function_literal] = STATE(399), + [sym_reference_expression] = STATE(393), + [sym_type_reference_expression] = STATE(3460), + [sym_unary_expression] = STATE(399), + [sym_receive_expression] = STATE(399), + [sym_binary_expression] = STATE(399), + [sym_as_type_cast_expression] = STATE(399), + [sym__max_group] = STATE(399), + [sym_literal] = STATE(455), + [sym_map_init_expression] = STATE(395), + [sym_array_creation] = STATE(399), + [sym_fixed_array_creation] = STATE(399), + [sym_selector_expression] = STATE(399), + [sym_index_expression] = STATE(399), + [sym_slice_expression] = STATE(399), + [sym_if_expression] = STATE(395), + [sym_compile_time_if_expression] = STATE(395), + [sym_is_expression] = STATE(399), + [sym_in_expression] = STATE(399), + [sym_enum_fetch] = STATE(399), + [sym_match_expression] = STATE(395), + [sym_select_expression] = STATE(395), + [sym_lock_expression] = STATE(395), + [sym_unsafe_expression] = STATE(395), + [sym_sql_expression] = STATE(395), + [sym_c_string_literal] = STATE(479), + [sym_raw_string_literal] = STATE(479), + [sym_interpreted_string_literal] = STATE(479), + [sym_mutability_modifiers] = STATE(845), + [sym_plain_type] = STATE(4069), + [sym__plain_type_without_special] = STATE(2360), + [sym_anon_struct_type] = STATE(2362), + [sym_multi_return_type] = STATE(2360), + [sym_result_type] = STATE(2360), + [sym_option_type] = STATE(2360), + [sym_qualified_type] = STATE(3460), + [sym_fixed_array_type] = STATE(2362), + [sym_array_type] = STATE(2362), + [sym_pointer_type] = STATE(2362), + [sym_wrong_pointer_type] = STATE(2362), + [sym_map_type] = STATE(2362), + [sym_channel_type] = STATE(2362), + [sym_shared_type] = STATE(2362), + [sym_thread_type] = STATE(2362), + [sym_atomic_type] = STATE(2362), + [sym_generic_type] = STATE(2362), + [sym_function_type] = STATE(2362), + [sym_identifier] = ACTIONS(3184), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), [anon_sym_DOT] = ACTIONS(17), - [anon_sym_LBRACE] = ACTIONS(3098), + [anon_sym_LBRACE] = ACTIONS(3186), [anon_sym_LPAREN] = ACTIONS(23), [anon_sym_fn] = ACTIONS(485), [anon_sym_PLUS] = ACTIONS(31), @@ -112890,203 +112910,89 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [781] = { [sym_line_comment] = STATE(781), [sym_block_comment] = STATE(781), - [sym__expression] = STATE(1898), - [sym__expression_without_blocks] = STATE(2044), - [sym__expression_with_blocks] = STATE(2044), - [sym_inc_expression] = STATE(2045), - [sym_dec_expression] = STATE(2045), - [sym_or_block_expression] = STATE(2045), - [sym_option_propagation_expression] = STATE(2045), - [sym_result_propagation_expression] = STATE(2045), - [sym_anon_struct_value_expression] = STATE(2046), - [sym_go_expression] = STATE(2045), - [sym_spawn_expression] = STATE(2045), - [sym_parenthesized_expression] = STATE(2045), - [sym_call_expression] = STATE(2045), - [sym_type_initializer] = STATE(2046), - [sym_function_literal] = STATE(2045), - [sym_reference_expression] = STATE(1912), - [sym_type_reference_expression] = STATE(3541), - [sym_unary_expression] = STATE(2045), - [sym_receive_expression] = STATE(2045), - [sym_binary_expression] = STATE(2045), - [sym_as_type_cast_expression] = STATE(2045), - [sym__max_group] = STATE(2045), - [sym_literal] = STATE(2043), - [sym_map_init_expression] = STATE(2046), - [sym_array_creation] = STATE(2045), - [sym_fixed_array_creation] = STATE(2045), - [sym_selector_expression] = STATE(2045), - [sym_index_expression] = STATE(2045), - [sym_slice_expression] = STATE(2045), - [sym_if_expression] = STATE(2046), - [sym_compile_time_if_expression] = STATE(2046), - [sym_is_expression] = STATE(2045), - [sym_in_expression] = STATE(2045), - [sym_enum_fetch] = STATE(2045), - [sym_match_expression] = STATE(2046), - [sym_select_expression] = STATE(2046), - [sym_lock_expression] = STATE(2046), - [sym_unsafe_expression] = STATE(2046), - [sym_sql_expression] = STATE(2046), - [sym_c_string_literal] = STATE(2041), - [sym_raw_string_literal] = STATE(2041), - [sym_interpreted_string_literal] = STATE(2041), - [sym_mutability_modifiers] = STATE(689), - [sym_plain_type] = STATE(4052), - [sym__plain_type_without_special] = STATE(2302), - [sym_anon_struct_type] = STATE(2303), - [sym_multi_return_type] = STATE(2302), - [sym_result_type] = STATE(2302), - [sym_option_type] = STATE(2302), - [sym_qualified_type] = STATE(3541), - [sym_fixed_array_type] = STATE(2303), - [sym_array_type] = STATE(2303), - [sym_pointer_type] = STATE(2303), - [sym_wrong_pointer_type] = STATE(2303), - [sym_map_type] = STATE(2303), - [sym_channel_type] = STATE(2303), - [sym_shared_type] = STATE(2303), - [sym_thread_type] = STATE(2303), - [sym_atomic_type] = STATE(2303), - [sym_generic_type] = STATE(2303), - [sym_function_type] = STATE(2303), - [sym_identifier] = ACTIONS(3142), - [anon_sym_SLASH_SLASH] = ACTIONS(3), - [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(811), - [anon_sym_LBRACE] = ACTIONS(3144), - [anon_sym_LPAREN] = ACTIONS(815), - [anon_sym_fn] = ACTIONS(817), - [anon_sym_PLUS] = ACTIONS(3146), - [anon_sym_DASH] = ACTIONS(3146), - [anon_sym_STAR] = ACTIONS(3148), - [anon_sym_struct] = ACTIONS(823), - [anon_sym_mut] = ACTIONS(41), - [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(3150), - [anon_sym_go] = ACTIONS(3152), - [anon_sym_spawn] = ACTIONS(3154), - [anon_sym_json_DOTdecode] = ACTIONS(833), - [anon_sym_LBRACK2] = ACTIONS(3156), - [anon_sym_TILDE] = ACTIONS(3146), - [anon_sym_CARET] = ACTIONS(3146), - [anon_sym_AMP] = ACTIONS(3158), - [anon_sym_LT_DASH] = ACTIONS(3160), - [sym_none] = ACTIONS(841), - [sym_true] = ACTIONS(841), - [sym_false] = ACTIONS(841), - [sym_nil] = ACTIONS(841), - [anon_sym_if] = ACTIONS(843), - [anon_sym_DOLLARif] = ACTIONS(845), - [anon_sym_match] = ACTIONS(847), - [anon_sym_select] = ACTIONS(3162), - [anon_sym_lock] = ACTIONS(3164), - [anon_sym_rlock] = ACTIONS(3164), - [anon_sym_unsafe] = ACTIONS(853), - [anon_sym_sql] = ACTIONS(855), - [sym_int_literal] = ACTIONS(841), - [sym_float_literal] = ACTIONS(857), - [sym_rune_literal] = ACTIONS(857), - [sym_pseudo_compile_time_identifier] = ACTIONS(859), - [anon_sym_shared] = ACTIONS(83), - [anon_sym_map_LBRACK] = ACTIONS(85), - [anon_sym_chan] = ACTIONS(87), - [anon_sym_thread] = ACTIONS(89), - [anon_sym_atomic] = ACTIONS(91), - [sym___double_quote] = ACTIONS(861), - [sym___single_quote] = ACTIONS(863), - [sym___c_double_quote] = ACTIONS(865), - [sym___c_single_quote] = ACTIONS(867), - [sym___r_double_quote] = ACTIONS(869), - [sym___r_single_quote] = ACTIONS(871), - }, - [782] = { - [sym_line_comment] = STATE(782), - [sym_block_comment] = STATE(782), - [sym__expression] = STATE(974), - [sym__expression_without_blocks] = STATE(1017), - [sym__expression_with_blocks] = STATE(1017), - [sym_inc_expression] = STATE(1018), - [sym_dec_expression] = STATE(1018), - [sym_or_block_expression] = STATE(1018), - [sym_option_propagation_expression] = STATE(1018), - [sym_result_propagation_expression] = STATE(1018), - [sym_anon_struct_value_expression] = STATE(993), - [sym_go_expression] = STATE(1018), - [sym_spawn_expression] = STATE(1018), - [sym_parenthesized_expression] = STATE(1018), - [sym_call_expression] = STATE(1018), - [sym_type_initializer] = STATE(993), - [sym_function_literal] = STATE(1018), - [sym_reference_expression] = STATE(1046), - [sym_type_reference_expression] = STATE(3541), - [sym_unary_expression] = STATE(1018), - [sym_receive_expression] = STATE(1018), - [sym_binary_expression] = STATE(1018), - [sym_as_type_cast_expression] = STATE(1018), - [sym__max_group] = STATE(1018), - [sym_literal] = STATE(1014), - [sym_map_init_expression] = STATE(993), - [sym_array_creation] = STATE(1018), - [sym_fixed_array_creation] = STATE(1018), - [sym_selector_expression] = STATE(1018), - [sym_index_expression] = STATE(1018), - [sym_slice_expression] = STATE(1018), - [sym_if_expression] = STATE(993), - [sym_compile_time_if_expression] = STATE(993), - [sym_is_expression] = STATE(1018), - [sym_in_expression] = STATE(1018), - [sym_enum_fetch] = STATE(1018), - [sym_match_expression] = STATE(993), - [sym_select_expression] = STATE(993), - [sym_lock_expression] = STATE(993), - [sym_unsafe_expression] = STATE(993), - [sym_sql_expression] = STATE(993), - [sym_c_string_literal] = STATE(1006), - [sym_raw_string_literal] = STATE(1006), - [sym_interpreted_string_literal] = STATE(1006), - [sym_mutability_modifiers] = STATE(691), - [sym_plain_type] = STATE(4296), - [sym__plain_type_without_special] = STATE(2302), - [sym_anon_struct_type] = STATE(2303), - [sym_multi_return_type] = STATE(2302), - [sym_result_type] = STATE(2302), - [sym_option_type] = STATE(2302), - [sym_qualified_type] = STATE(3541), - [sym_fixed_array_type] = STATE(2303), - [sym_array_type] = STATE(2303), - [sym_pointer_type] = STATE(2303), - [sym_wrong_pointer_type] = STATE(2303), - [sym_map_type] = STATE(2303), - [sym_channel_type] = STATE(2303), - [sym_shared_type] = STATE(2303), - [sym_thread_type] = STATE(2303), - [sym_atomic_type] = STATE(2303), - [sym_generic_type] = STATE(2303), - [sym_function_type] = STATE(2303), + [sym__expression] = STATE(965), + [sym__expression_without_blocks] = STATE(1086), + [sym__expression_with_blocks] = STATE(1086), + [sym_inc_expression] = STATE(1088), + [sym_dec_expression] = STATE(1088), + [sym_or_block_expression] = STATE(1088), + [sym_option_propagation_expression] = STATE(1088), + [sym_result_propagation_expression] = STATE(1088), + [sym_anon_struct_value_expression] = STATE(1025), + [sym_go_expression] = STATE(1088), + [sym_spawn_expression] = STATE(1088), + [sym_parenthesized_expression] = STATE(1088), + [sym_call_expression] = STATE(1088), + [sym_type_initializer] = STATE(1025), + [sym_function_literal] = STATE(1088), + [sym_reference_expression] = STATE(1024), + [sym_type_reference_expression] = STATE(3460), + [sym_unary_expression] = STATE(1088), + [sym_receive_expression] = STATE(1088), + [sym_binary_expression] = STATE(1088), + [sym_as_type_cast_expression] = STATE(1088), + [sym__max_group] = STATE(1088), + [sym_literal] = STATE(1078), + [sym_map_init_expression] = STATE(1025), + [sym_array_creation] = STATE(1088), + [sym_fixed_array_creation] = STATE(1088), + [sym_selector_expression] = STATE(1088), + [sym_index_expression] = STATE(1088), + [sym_slice_expression] = STATE(1088), + [sym_if_expression] = STATE(1025), + [sym_compile_time_if_expression] = STATE(1025), + [sym_is_expression] = STATE(1088), + [sym_in_expression] = STATE(1088), + [sym_enum_fetch] = STATE(1088), + [sym_match_expression] = STATE(1025), + [sym_select_expression] = STATE(1025), + [sym_lock_expression] = STATE(1025), + [sym_unsafe_expression] = STATE(1025), + [sym_sql_expression] = STATE(1025), + [sym_c_string_literal] = STATE(993), + [sym_raw_string_literal] = STATE(993), + [sym_interpreted_string_literal] = STATE(993), + [sym_mutability_modifiers] = STATE(618), + [sym_plain_type] = STATE(4090), + [sym__plain_type_without_special] = STATE(2360), + [sym_anon_struct_type] = STATE(2362), + [sym_multi_return_type] = STATE(2360), + [sym_result_type] = STATE(2360), + [sym_option_type] = STATE(2360), + [sym_qualified_type] = STATE(3460), + [sym_fixed_array_type] = STATE(2362), + [sym_array_type] = STATE(2362), + [sym_pointer_type] = STATE(2362), + [sym_wrong_pointer_type] = STATE(2362), + [sym_map_type] = STATE(2362), + [sym_channel_type] = STATE(2362), + [sym_shared_type] = STATE(2362), + [sym_thread_type] = STATE(2362), + [sym_atomic_type] = STATE(2362), + [sym_generic_type] = STATE(2362), + [sym_function_type] = STATE(2362), [sym_identifier] = ACTIONS(493), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), [anon_sym_DOT] = ACTIONS(501), - [anon_sym_LBRACE] = ACTIONS(2319), - [anon_sym_LPAREN] = ACTIONS(2321), + [anon_sym_LBRACE] = ACTIONS(2235), + [anon_sym_LPAREN] = ACTIONS(2237), [anon_sym_fn] = ACTIONS(507), - [anon_sym_PLUS] = ACTIONS(3360), - [anon_sym_DASH] = ACTIONS(3360), - [anon_sym_STAR] = ACTIONS(3362), + [anon_sym_PLUS] = ACTIONS(2239), + [anon_sym_DASH] = ACTIONS(2239), + [anon_sym_STAR] = ACTIONS(2241), [anon_sym_struct] = ACTIONS(513), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(3364), - [anon_sym_go] = ACTIONS(3366), - [anon_sym_spawn] = ACTIONS(3368), - [anon_sym_json_DOTdecode] = ACTIONS(2329), - [anon_sym_LBRACK2] = ACTIONS(2331), - [anon_sym_TILDE] = ACTIONS(3360), - [anon_sym_CARET] = ACTIONS(3360), - [anon_sym_AMP] = ACTIONS(3370), - [anon_sym_LT_DASH] = ACTIONS(3372), + [anon_sym_BANG] = ACTIONS(2243), + [anon_sym_go] = ACTIONS(519), + [anon_sym_spawn] = ACTIONS(521), + [anon_sym_json_DOTdecode] = ACTIONS(2245), + [anon_sym_LBRACK2] = ACTIONS(2247), + [anon_sym_TILDE] = ACTIONS(2239), + [anon_sym_CARET] = ACTIONS(2239), + [anon_sym_AMP] = ACTIONS(2249), + [anon_sym_LT_DASH] = ACTIONS(2251), [sym_none] = ACTIONS(531), [sym_true] = ACTIONS(531), [sym_false] = ACTIONS(531), @@ -113094,10584 +113000,10470 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_if] = ACTIONS(533), [anon_sym_DOLLARif] = ACTIONS(535), [anon_sym_match] = ACTIONS(537), - [anon_sym_select] = ACTIONS(3374), - [anon_sym_lock] = ACTIONS(3376), - [anon_sym_rlock] = ACTIONS(3376), + [anon_sym_select] = ACTIONS(539), + [anon_sym_lock] = ACTIONS(541), + [anon_sym_rlock] = ACTIONS(541), [anon_sym_unsafe] = ACTIONS(543), [anon_sym_sql] = ACTIONS(545), [sym_int_literal] = ACTIONS(531), - [sym_float_literal] = ACTIONS(2337), - [sym_rune_literal] = ACTIONS(2337), + [sym_float_literal] = ACTIONS(2253), + [sym_rune_literal] = ACTIONS(2253), [sym_pseudo_compile_time_identifier] = ACTIONS(547), [anon_sym_shared] = ACTIONS(83), [anon_sym_map_LBRACK] = ACTIONS(85), [anon_sym_chan] = ACTIONS(87), [anon_sym_thread] = ACTIONS(89), [anon_sym_atomic] = ACTIONS(91), - [sym___double_quote] = ACTIONS(2339), - [sym___single_quote] = ACTIONS(2341), - [sym___c_double_quote] = ACTIONS(2343), - [sym___c_single_quote] = ACTIONS(2345), - [sym___r_double_quote] = ACTIONS(2347), - [sym___r_single_quote] = ACTIONS(2349), + [sym___double_quote] = ACTIONS(2255), + [sym___single_quote] = ACTIONS(2257), + [sym___c_double_quote] = ACTIONS(2259), + [sym___c_single_quote] = ACTIONS(2261), + [sym___r_double_quote] = ACTIONS(2263), + [sym___r_single_quote] = ACTIONS(2265), + }, + [782] = { + [sym_line_comment] = STATE(782), + [sym_block_comment] = STATE(782), + [sym__expression] = STATE(2618), + [sym__expression_without_blocks] = STATE(2347), + [sym__expression_with_blocks] = STATE(2347), + [sym_inc_expression] = STATE(2379), + [sym_dec_expression] = STATE(2379), + [sym_or_block_expression] = STATE(2379), + [sym_option_propagation_expression] = STATE(2379), + [sym_result_propagation_expression] = STATE(2379), + [sym_anon_struct_value_expression] = STATE(2378), + [sym_go_expression] = STATE(2379), + [sym_spawn_expression] = STATE(2379), + [sym_parenthesized_expression] = STATE(2379), + [sym_call_expression] = STATE(2379), + [sym_type_initializer] = STATE(2378), + [sym_function_literal] = STATE(2379), + [sym_reference_expression] = STATE(2377), + [sym_type_reference_expression] = STATE(3460), + [sym_unary_expression] = STATE(2379), + [sym_receive_expression] = STATE(2379), + [sym_binary_expression] = STATE(2379), + [sym_as_type_cast_expression] = STATE(2379), + [sym__max_group] = STATE(2379), + [sym_literal] = STATE(2392), + [sym_map_init_expression] = STATE(2378), + [sym_array_creation] = STATE(2379), + [sym_fixed_array_creation] = STATE(2379), + [sym_selector_expression] = STATE(2379), + [sym_index_expression] = STATE(2379), + [sym_slice_expression] = STATE(2379), + [sym_if_expression] = STATE(2378), + [sym_compile_time_if_expression] = STATE(2378), + [sym_is_expression] = STATE(2379), + [sym_in_expression] = STATE(2379), + [sym_enum_fetch] = STATE(2379), + [sym_match_expression] = STATE(2378), + [sym_select_expression] = STATE(2378), + [sym_lock_expression] = STATE(2378), + [sym_unsafe_expression] = STATE(2378), + [sym_sql_expression] = STATE(2378), + [sym_c_string_literal] = STATE(2401), + [sym_raw_string_literal] = STATE(2401), + [sym_interpreted_string_literal] = STATE(2401), + [sym_mutability_modifiers] = STATE(553), + [sym_plain_type] = STATE(4160), + [sym__plain_type_without_special] = STATE(2360), + [sym_anon_struct_type] = STATE(2362), + [sym_multi_return_type] = STATE(2360), + [sym_result_type] = STATE(2360), + [sym_option_type] = STATE(2360), + [sym_qualified_type] = STATE(3460), + [sym_fixed_array_type] = STATE(2362), + [sym_array_type] = STATE(2362), + [sym_pointer_type] = STATE(2362), + [sym_wrong_pointer_type] = STATE(2362), + [sym_map_type] = STATE(2362), + [sym_channel_type] = STATE(2362), + [sym_shared_type] = STATE(2362), + [sym_thread_type] = STATE(2362), + [sym_atomic_type] = STATE(2362), + [sym_generic_type] = STATE(2362), + [sym_function_type] = STATE(2362), + [sym_identifier] = ACTIONS(1815), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(1430), + [anon_sym_LBRACE] = ACTIONS(1432), + [anon_sym_LPAREN] = ACTIONS(1434), + [anon_sym_fn] = ACTIONS(1436), + [anon_sym_PLUS] = ACTIONS(1817), + [anon_sym_DASH] = ACTIONS(1817), + [anon_sym_STAR] = ACTIONS(1819), + [anon_sym_struct] = ACTIONS(1442), + [anon_sym_mut] = ACTIONS(41), + [anon_sym_QMARK] = ACTIONS(47), + [anon_sym_BANG] = ACTIONS(1821), + [anon_sym_go] = ACTIONS(1823), + [anon_sym_spawn] = ACTIONS(1825), + [anon_sym_json_DOTdecode] = ACTIONS(1450), + [anon_sym_LBRACK2] = ACTIONS(1827), + [anon_sym_TILDE] = ACTIONS(1817), + [anon_sym_CARET] = ACTIONS(1817), + [anon_sym_AMP] = ACTIONS(1829), + [anon_sym_LT_DASH] = ACTIONS(1831), + [sym_none] = ACTIONS(1458), + [sym_true] = ACTIONS(1458), + [sym_false] = ACTIONS(1458), + [sym_nil] = ACTIONS(1458), + [anon_sym_if] = ACTIONS(1833), + [anon_sym_DOLLARif] = ACTIONS(1462), + [anon_sym_match] = ACTIONS(1464), + [anon_sym_select] = ACTIONS(1835), + [anon_sym_lock] = ACTIONS(1837), + [anon_sym_rlock] = ACTIONS(1837), + [anon_sym_unsafe] = ACTIONS(1839), + [anon_sym_sql] = ACTIONS(1472), + [sym_int_literal] = ACTIONS(1458), + [sym_float_literal] = ACTIONS(1474), + [sym_rune_literal] = ACTIONS(1474), + [sym_pseudo_compile_time_identifier] = ACTIONS(1476), + [anon_sym_shared] = ACTIONS(83), + [anon_sym_map_LBRACK] = ACTIONS(85), + [anon_sym_chan] = ACTIONS(87), + [anon_sym_thread] = ACTIONS(89), + [anon_sym_atomic] = ACTIONS(91), + [sym___double_quote] = ACTIONS(1480), + [sym___single_quote] = ACTIONS(1482), + [sym___c_double_quote] = ACTIONS(1484), + [sym___c_single_quote] = ACTIONS(1486), + [sym___r_double_quote] = ACTIONS(1488), + [sym___r_single_quote] = ACTIONS(1490), }, [783] = { [sym_line_comment] = STATE(783), [sym_block_comment] = STATE(783), - [sym__expression] = STATE(226), - [sym__expression_without_blocks] = STATE(442), - [sym__expression_with_blocks] = STATE(442), - [sym_inc_expression] = STATE(439), - [sym_dec_expression] = STATE(439), - [sym_or_block_expression] = STATE(439), - [sym_option_propagation_expression] = STATE(439), - [sym_result_propagation_expression] = STATE(439), - [sym_anon_struct_value_expression] = STATE(438), - [sym_go_expression] = STATE(439), - [sym_spawn_expression] = STATE(439), - [sym_parenthesized_expression] = STATE(439), - [sym_call_expression] = STATE(439), - [sym_type_initializer] = STATE(438), - [sym_function_literal] = STATE(439), - [sym_reference_expression] = STATE(437), - [sym_type_reference_expression] = STATE(3541), - [sym_unary_expression] = STATE(439), - [sym_receive_expression] = STATE(439), - [sym_binary_expression] = STATE(439), - [sym_as_type_cast_expression] = STATE(439), - [sym__max_group] = STATE(439), - [sym_literal] = STATE(495), - [sym_map_init_expression] = STATE(438), - [sym_array_creation] = STATE(439), - [sym_fixed_array_creation] = STATE(439), - [sym_selector_expression] = STATE(439), - [sym_index_expression] = STATE(439), - [sym_slice_expression] = STATE(439), - [sym_if_expression] = STATE(438), - [sym_compile_time_if_expression] = STATE(438), - [sym_is_expression] = STATE(439), - [sym_in_expression] = STATE(439), - [sym_enum_fetch] = STATE(439), - [sym_match_expression] = STATE(438), - [sym_select_expression] = STATE(438), - [sym_lock_expression] = STATE(438), - [sym_unsafe_expression] = STATE(438), - [sym_sql_expression] = STATE(438), - [sym_c_string_literal] = STATE(496), - [sym_raw_string_literal] = STATE(496), - [sym_interpreted_string_literal] = STATE(496), - [sym_mutability_modifiers] = STATE(862), - [sym_plain_type] = STATE(4049), - [sym__plain_type_without_special] = STATE(2302), - [sym_anon_struct_type] = STATE(2303), - [sym_multi_return_type] = STATE(2302), - [sym_result_type] = STATE(2302), - [sym_option_type] = STATE(2302), - [sym_qualified_type] = STATE(3541), - [sym_fixed_array_type] = STATE(2303), - [sym_array_type] = STATE(2303), - [sym_pointer_type] = STATE(2303), - [sym_wrong_pointer_type] = STATE(2303), - [sym_map_type] = STATE(2303), - [sym_channel_type] = STATE(2303), - [sym_shared_type] = STATE(2303), - [sym_thread_type] = STATE(2303), - [sym_atomic_type] = STATE(2303), - [sym_generic_type] = STATE(2303), - [sym_function_type] = STATE(2303), - [sym_identifier] = ACTIONS(3096), + [sym__expression] = STATE(2768), + [sym__expression_without_blocks] = STATE(2347), + [sym__expression_with_blocks] = STATE(2347), + [sym_inc_expression] = STATE(2379), + [sym_dec_expression] = STATE(2379), + [sym_or_block_expression] = STATE(2379), + [sym_option_propagation_expression] = STATE(2379), + [sym_result_propagation_expression] = STATE(2379), + [sym_anon_struct_value_expression] = STATE(2378), + [sym_go_expression] = STATE(2379), + [sym_spawn_expression] = STATE(2379), + [sym_parenthesized_expression] = STATE(2379), + [sym_call_expression] = STATE(2379), + [sym_type_initializer] = STATE(2378), + [sym_function_literal] = STATE(2379), + [sym_reference_expression] = STATE(2377), + [sym_type_reference_expression] = STATE(3460), + [sym_unary_expression] = STATE(2379), + [sym_receive_expression] = STATE(2379), + [sym_binary_expression] = STATE(2379), + [sym_as_type_cast_expression] = STATE(2379), + [sym__max_group] = STATE(2379), + [sym_literal] = STATE(2392), + [sym_map_init_expression] = STATE(2378), + [sym_array_creation] = STATE(2379), + [sym_fixed_array_creation] = STATE(2379), + [sym_selector_expression] = STATE(2379), + [sym_index_expression] = STATE(2379), + [sym_slice_expression] = STATE(2379), + [sym_if_expression] = STATE(2378), + [sym_compile_time_if_expression] = STATE(2378), + [sym_is_expression] = STATE(2379), + [sym_in_expression] = STATE(2379), + [sym_enum_fetch] = STATE(2379), + [sym_match_expression] = STATE(2378), + [sym_select_expression] = STATE(2378), + [sym_lock_expression] = STATE(2378), + [sym_unsafe_expression] = STATE(2378), + [sym_sql_expression] = STATE(2378), + [sym_c_string_literal] = STATE(2401), + [sym_raw_string_literal] = STATE(2401), + [sym_interpreted_string_literal] = STATE(2401), + [sym_mutability_modifiers] = STATE(939), + [sym_plain_type] = STATE(3564), + [sym__plain_type_without_special] = STATE(2360), + [sym_anon_struct_type] = STATE(2362), + [sym_multi_return_type] = STATE(2360), + [sym_result_type] = STATE(2360), + [sym_option_type] = STATE(2360), + [sym_qualified_type] = STATE(3460), + [sym_fixed_array_type] = STATE(2362), + [sym_array_type] = STATE(2362), + [sym_pointer_type] = STATE(2362), + [sym_wrong_pointer_type] = STATE(2362), + [sym_map_type] = STATE(2362), + [sym_channel_type] = STATE(2362), + [sym_shared_type] = STATE(2362), + [sym_thread_type] = STATE(2362), + [sym_atomic_type] = STATE(2362), + [sym_generic_type] = STATE(2362), + [sym_function_type] = STATE(2362), + [sym_identifier] = ACTIONS(1428), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(17), - [anon_sym_LBRACE] = ACTIONS(3098), - [anon_sym_LPAREN] = ACTIONS(23), - [anon_sym_fn] = ACTIONS(485), - [anon_sym_PLUS] = ACTIONS(31), - [anon_sym_DASH] = ACTIONS(31), - [anon_sym_STAR] = ACTIONS(33), - [anon_sym_struct] = ACTIONS(487), + [anon_sym_DOT] = ACTIONS(1430), + [anon_sym_LBRACE] = ACTIONS(1432), + [anon_sym_LPAREN] = ACTIONS(1434), + [anon_sym_fn] = ACTIONS(1436), + [anon_sym_PLUS] = ACTIONS(2271), + [anon_sym_DASH] = ACTIONS(2271), + [anon_sym_STAR] = ACTIONS(2273), + [anon_sym_struct] = ACTIONS(1442), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(49), - [anon_sym_go] = ACTIONS(51), - [anon_sym_spawn] = ACTIONS(53), - [anon_sym_json_DOTdecode] = ACTIONS(55), - [anon_sym_LBRACK2] = ACTIONS(489), - [anon_sym_TILDE] = ACTIONS(31), - [anon_sym_CARET] = ACTIONS(31), - [anon_sym_AMP] = ACTIONS(59), - [anon_sym_LT_DASH] = ACTIONS(61), - [sym_none] = ACTIONS(63), - [sym_true] = ACTIONS(63), - [sym_false] = ACTIONS(63), - [sym_nil] = ACTIONS(63), - [anon_sym_if] = ACTIONS(65), - [anon_sym_DOLLARif] = ACTIONS(67), - [anon_sym_match] = ACTIONS(69), - [anon_sym_select] = ACTIONS(71), - [anon_sym_lock] = ACTIONS(73), - [anon_sym_rlock] = ACTIONS(73), - [anon_sym_unsafe] = ACTIONS(75), - [anon_sym_sql] = ACTIONS(77), - [sym_int_literal] = ACTIONS(63), - [sym_float_literal] = ACTIONS(79), - [sym_rune_literal] = ACTIONS(79), - [sym_pseudo_compile_time_identifier] = ACTIONS(81), + [anon_sym_BANG] = ACTIONS(2275), + [anon_sym_go] = ACTIONS(2277), + [anon_sym_spawn] = ACTIONS(2279), + [anon_sym_json_DOTdecode] = ACTIONS(1450), + [anon_sym_LBRACK2] = ACTIONS(1452), + [anon_sym_TILDE] = ACTIONS(2271), + [anon_sym_CARET] = ACTIONS(2271), + [anon_sym_AMP] = ACTIONS(2281), + [anon_sym_LT_DASH] = ACTIONS(2283), + [sym_none] = ACTIONS(1458), + [sym_true] = ACTIONS(1458), + [sym_false] = ACTIONS(1458), + [sym_nil] = ACTIONS(1458), + [anon_sym_if] = ACTIONS(1833), + [anon_sym_DOLLARif] = ACTIONS(1462), + [anon_sym_match] = ACTIONS(1464), + [anon_sym_select] = ACTIONS(1466), + [anon_sym_lock] = ACTIONS(1468), + [anon_sym_rlock] = ACTIONS(1468), + [anon_sym_unsafe] = ACTIONS(1839), + [anon_sym_sql] = ACTIONS(1472), + [sym_int_literal] = ACTIONS(1458), + [sym_float_literal] = ACTIONS(1474), + [sym_rune_literal] = ACTIONS(1474), + [sym_pseudo_compile_time_identifier] = ACTIONS(1476), [anon_sym_shared] = ACTIONS(83), [anon_sym_map_LBRACK] = ACTIONS(85), [anon_sym_chan] = ACTIONS(87), [anon_sym_thread] = ACTIONS(89), [anon_sym_atomic] = ACTIONS(91), - [sym___double_quote] = ACTIONS(115), - [sym___single_quote] = ACTIONS(117), - [sym___c_double_quote] = ACTIONS(119), - [sym___c_single_quote] = ACTIONS(121), - [sym___r_double_quote] = ACTIONS(123), - [sym___r_single_quote] = ACTIONS(125), + [sym___double_quote] = ACTIONS(1480), + [sym___single_quote] = ACTIONS(1482), + [sym___c_double_quote] = ACTIONS(1484), + [sym___c_single_quote] = ACTIONS(1486), + [sym___r_double_quote] = ACTIONS(1488), + [sym___r_single_quote] = ACTIONS(1490), }, [784] = { [sym_line_comment] = STATE(784), [sym_block_comment] = STATE(784), - [sym__expression] = STATE(227), - [sym__expression_without_blocks] = STATE(442), - [sym__expression_with_blocks] = STATE(442), - [sym_inc_expression] = STATE(439), - [sym_dec_expression] = STATE(439), - [sym_or_block_expression] = STATE(439), - [sym_option_propagation_expression] = STATE(439), - [sym_result_propagation_expression] = STATE(439), - [sym_anon_struct_value_expression] = STATE(438), - [sym_go_expression] = STATE(439), - [sym_spawn_expression] = STATE(439), - [sym_parenthesized_expression] = STATE(439), - [sym_call_expression] = STATE(439), - [sym_type_initializer] = STATE(438), - [sym_function_literal] = STATE(439), - [sym_reference_expression] = STATE(437), - [sym_type_reference_expression] = STATE(3541), - [sym_unary_expression] = STATE(439), - [sym_receive_expression] = STATE(439), - [sym_binary_expression] = STATE(439), - [sym_as_type_cast_expression] = STATE(439), - [sym__max_group] = STATE(439), - [sym_literal] = STATE(495), - [sym_map_init_expression] = STATE(438), - [sym_array_creation] = STATE(439), - [sym_fixed_array_creation] = STATE(439), - [sym_selector_expression] = STATE(439), - [sym_index_expression] = STATE(439), - [sym_slice_expression] = STATE(439), - [sym_if_expression] = STATE(438), - [sym_compile_time_if_expression] = STATE(438), - [sym_is_expression] = STATE(439), - [sym_in_expression] = STATE(439), - [sym_enum_fetch] = STATE(439), - [sym_match_expression] = STATE(438), - [sym_select_expression] = STATE(438), - [sym_lock_expression] = STATE(438), - [sym_unsafe_expression] = STATE(438), - [sym_sql_expression] = STATE(438), - [sym_c_string_literal] = STATE(496), - [sym_raw_string_literal] = STATE(496), - [sym_interpreted_string_literal] = STATE(496), - [sym_mutability_modifiers] = STATE(862), - [sym_plain_type] = STATE(4049), - [sym__plain_type_without_special] = STATE(2302), - [sym_anon_struct_type] = STATE(2303), - [sym_multi_return_type] = STATE(2302), - [sym_result_type] = STATE(2302), - [sym_option_type] = STATE(2302), - [sym_qualified_type] = STATE(3541), - [sym_fixed_array_type] = STATE(2303), - [sym_array_type] = STATE(2303), - [sym_pointer_type] = STATE(2303), - [sym_wrong_pointer_type] = STATE(2303), - [sym_map_type] = STATE(2303), - [sym_channel_type] = STATE(2303), - [sym_shared_type] = STATE(2303), - [sym_thread_type] = STATE(2303), - [sym_atomic_type] = STATE(2303), - [sym_generic_type] = STATE(2303), - [sym_function_type] = STATE(2303), - [sym_identifier] = ACTIONS(3096), + [sym__expression] = STATE(1628), + [sym__expression_without_blocks] = STATE(1799), + [sym__expression_with_blocks] = STATE(1799), + [sym_inc_expression] = STATE(1800), + [sym_dec_expression] = STATE(1800), + [sym_or_block_expression] = STATE(1800), + [sym_option_propagation_expression] = STATE(1800), + [sym_result_propagation_expression] = STATE(1800), + [sym_anon_struct_value_expression] = STATE(1801), + [sym_go_expression] = STATE(1800), + [sym_spawn_expression] = STATE(1800), + [sym_parenthesized_expression] = STATE(1800), + [sym_call_expression] = STATE(1800), + [sym_type_initializer] = STATE(1801), + [sym_function_literal] = STATE(1800), + [sym_reference_expression] = STATE(1844), + [sym_type_reference_expression] = STATE(3460), + [sym_unary_expression] = STATE(1800), + [sym_receive_expression] = STATE(1800), + [sym_binary_expression] = STATE(1800), + [sym_as_type_cast_expression] = STATE(1800), + [sym__max_group] = STATE(1800), + [sym_literal] = STATE(1797), + [sym_map_init_expression] = STATE(1801), + [sym_array_creation] = STATE(1800), + [sym_fixed_array_creation] = STATE(1800), + [sym_selector_expression] = STATE(1800), + [sym_index_expression] = STATE(1800), + [sym_slice_expression] = STATE(1800), + [sym_if_expression] = STATE(1801), + [sym_compile_time_if_expression] = STATE(1801), + [sym_is_expression] = STATE(1800), + [sym_in_expression] = STATE(1800), + [sym_enum_fetch] = STATE(1800), + [sym_match_expression] = STATE(1801), + [sym_select_expression] = STATE(1801), + [sym_lock_expression] = STATE(1801), + [sym_unsafe_expression] = STATE(1801), + [sym_sql_expression] = STATE(1801), + [sym_c_string_literal] = STATE(1792), + [sym_raw_string_literal] = STATE(1792), + [sym_interpreted_string_literal] = STATE(1792), + [sym_mutability_modifiers] = STATE(868), + [sym_plain_type] = STATE(4300), + [sym__plain_type_without_special] = STATE(2360), + [sym_anon_struct_type] = STATE(2362), + [sym_multi_return_type] = STATE(2360), + [sym_result_type] = STATE(2360), + [sym_option_type] = STATE(2360), + [sym_qualified_type] = STATE(3460), + [sym_fixed_array_type] = STATE(2362), + [sym_array_type] = STATE(2362), + [sym_pointer_type] = STATE(2362), + [sym_wrong_pointer_type] = STATE(2362), + [sym_map_type] = STATE(2362), + [sym_channel_type] = STATE(2362), + [sym_shared_type] = STATE(2362), + [sym_thread_type] = STATE(2362), + [sym_atomic_type] = STATE(2362), + [sym_generic_type] = STATE(2362), + [sym_function_type] = STATE(2362), + [sym_identifier] = ACTIONS(3198), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(17), - [anon_sym_LBRACE] = ACTIONS(3098), - [anon_sym_LPAREN] = ACTIONS(23), - [anon_sym_fn] = ACTIONS(485), - [anon_sym_PLUS] = ACTIONS(31), - [anon_sym_DASH] = ACTIONS(31), - [anon_sym_STAR] = ACTIONS(33), - [anon_sym_struct] = ACTIONS(487), + [anon_sym_DOT] = ACTIONS(3200), + [anon_sym_LBRACE] = ACTIONS(3202), + [anon_sym_LPAREN] = ACTIONS(3204), + [anon_sym_fn] = ACTIONS(3206), + [anon_sym_PLUS] = ACTIONS(3208), + [anon_sym_DASH] = ACTIONS(3208), + [anon_sym_STAR] = ACTIONS(3210), + [anon_sym_struct] = ACTIONS(3212), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(49), - [anon_sym_go] = ACTIONS(51), - [anon_sym_spawn] = ACTIONS(53), - [anon_sym_json_DOTdecode] = ACTIONS(55), - [anon_sym_LBRACK2] = ACTIONS(489), - [anon_sym_TILDE] = ACTIONS(31), - [anon_sym_CARET] = ACTIONS(31), - [anon_sym_AMP] = ACTIONS(59), - [anon_sym_LT_DASH] = ACTIONS(61), - [sym_none] = ACTIONS(63), - [sym_true] = ACTIONS(63), - [sym_false] = ACTIONS(63), - [sym_nil] = ACTIONS(63), - [anon_sym_if] = ACTIONS(65), - [anon_sym_DOLLARif] = ACTIONS(67), - [anon_sym_match] = ACTIONS(69), - [anon_sym_select] = ACTIONS(71), - [anon_sym_lock] = ACTIONS(73), - [anon_sym_rlock] = ACTIONS(73), - [anon_sym_unsafe] = ACTIONS(75), - [anon_sym_sql] = ACTIONS(77), - [sym_int_literal] = ACTIONS(63), - [sym_float_literal] = ACTIONS(79), - [sym_rune_literal] = ACTIONS(79), - [sym_pseudo_compile_time_identifier] = ACTIONS(81), + [anon_sym_BANG] = ACTIONS(3214), + [anon_sym_go] = ACTIONS(3216), + [anon_sym_spawn] = ACTIONS(3218), + [anon_sym_json_DOTdecode] = ACTIONS(3220), + [anon_sym_LBRACK2] = ACTIONS(3222), + [anon_sym_TILDE] = ACTIONS(3208), + [anon_sym_CARET] = ACTIONS(3208), + [anon_sym_AMP] = ACTIONS(3224), + [anon_sym_LT_DASH] = ACTIONS(3226), + [sym_none] = ACTIONS(3228), + [sym_true] = ACTIONS(3228), + [sym_false] = ACTIONS(3228), + [sym_nil] = ACTIONS(3228), + [anon_sym_if] = ACTIONS(3230), + [anon_sym_DOLLARif] = ACTIONS(3232), + [anon_sym_match] = ACTIONS(3234), + [anon_sym_select] = ACTIONS(3236), + [anon_sym_lock] = ACTIONS(3238), + [anon_sym_rlock] = ACTIONS(3238), + [anon_sym_unsafe] = ACTIONS(3240), + [anon_sym_sql] = ACTIONS(3242), + [sym_int_literal] = ACTIONS(3228), + [sym_float_literal] = ACTIONS(3244), + [sym_rune_literal] = ACTIONS(3244), + [sym_pseudo_compile_time_identifier] = ACTIONS(3246), [anon_sym_shared] = ACTIONS(83), [anon_sym_map_LBRACK] = ACTIONS(85), [anon_sym_chan] = ACTIONS(87), [anon_sym_thread] = ACTIONS(89), [anon_sym_atomic] = ACTIONS(91), - [sym___double_quote] = ACTIONS(115), - [sym___single_quote] = ACTIONS(117), - [sym___c_double_quote] = ACTIONS(119), - [sym___c_single_quote] = ACTIONS(121), - [sym___r_double_quote] = ACTIONS(123), - [sym___r_single_quote] = ACTIONS(125), + [sym___double_quote] = ACTIONS(3248), + [sym___single_quote] = ACTIONS(3250), + [sym___c_double_quote] = ACTIONS(3252), + [sym___c_single_quote] = ACTIONS(3254), + [sym___r_double_quote] = ACTIONS(3256), + [sym___r_single_quote] = ACTIONS(3258), }, [785] = { [sym_line_comment] = STATE(785), [sym_block_comment] = STATE(785), - [sym__expression] = STATE(228), - [sym__expression_without_blocks] = STATE(442), - [sym__expression_with_blocks] = STATE(442), - [sym_inc_expression] = STATE(439), - [sym_dec_expression] = STATE(439), - [sym_or_block_expression] = STATE(439), - [sym_option_propagation_expression] = STATE(439), - [sym_result_propagation_expression] = STATE(439), - [sym_anon_struct_value_expression] = STATE(438), - [sym_go_expression] = STATE(439), - [sym_spawn_expression] = STATE(439), - [sym_parenthesized_expression] = STATE(439), - [sym_call_expression] = STATE(439), - [sym_type_initializer] = STATE(438), - [sym_function_literal] = STATE(439), - [sym_reference_expression] = STATE(437), - [sym_type_reference_expression] = STATE(3541), - [sym_unary_expression] = STATE(439), - [sym_receive_expression] = STATE(439), - [sym_binary_expression] = STATE(439), - [sym_as_type_cast_expression] = STATE(439), - [sym__max_group] = STATE(439), - [sym_literal] = STATE(495), - [sym_map_init_expression] = STATE(438), - [sym_array_creation] = STATE(439), - [sym_fixed_array_creation] = STATE(439), - [sym_selector_expression] = STATE(439), - [sym_index_expression] = STATE(439), - [sym_slice_expression] = STATE(439), - [sym_if_expression] = STATE(438), - [sym_compile_time_if_expression] = STATE(438), - [sym_is_expression] = STATE(439), - [sym_in_expression] = STATE(439), - [sym_enum_fetch] = STATE(439), - [sym_match_expression] = STATE(438), - [sym_select_expression] = STATE(438), - [sym_lock_expression] = STATE(438), - [sym_unsafe_expression] = STATE(438), - [sym_sql_expression] = STATE(438), - [sym_c_string_literal] = STATE(496), - [sym_raw_string_literal] = STATE(496), - [sym_interpreted_string_literal] = STATE(496), - [sym_mutability_modifiers] = STATE(862), - [sym_plain_type] = STATE(4049), - [sym__plain_type_without_special] = STATE(2302), - [sym_anon_struct_type] = STATE(2303), - [sym_multi_return_type] = STATE(2302), - [sym_result_type] = STATE(2302), - [sym_option_type] = STATE(2302), - [sym_qualified_type] = STATE(3541), - [sym_fixed_array_type] = STATE(2303), - [sym_array_type] = STATE(2303), - [sym_pointer_type] = STATE(2303), - [sym_wrong_pointer_type] = STATE(2303), - [sym_map_type] = STATE(2303), - [sym_channel_type] = STATE(2303), - [sym_shared_type] = STATE(2303), - [sym_thread_type] = STATE(2303), - [sym_atomic_type] = STATE(2303), - [sym_generic_type] = STATE(2303), - [sym_function_type] = STATE(2303), - [sym_identifier] = ACTIONS(3096), + [sym__expression] = STATE(2595), + [sym__expression_without_blocks] = STATE(2347), + [sym__expression_with_blocks] = STATE(2347), + [sym_inc_expression] = STATE(2379), + [sym_dec_expression] = STATE(2379), + [sym_or_block_expression] = STATE(2379), + [sym_option_propagation_expression] = STATE(2379), + [sym_result_propagation_expression] = STATE(2379), + [sym_anon_struct_value_expression] = STATE(2378), + [sym_go_expression] = STATE(2379), + [sym_spawn_expression] = STATE(2379), + [sym_parenthesized_expression] = STATE(2379), + [sym_call_expression] = STATE(2379), + [sym_type_initializer] = STATE(2378), + [sym_function_literal] = STATE(2379), + [sym_reference_expression] = STATE(2377), + [sym_type_reference_expression] = STATE(3460), + [sym_unary_expression] = STATE(2379), + [sym_receive_expression] = STATE(2379), + [sym_binary_expression] = STATE(2379), + [sym_as_type_cast_expression] = STATE(2379), + [sym__max_group] = STATE(2379), + [sym_literal] = STATE(2392), + [sym_map_init_expression] = STATE(2378), + [sym_array_creation] = STATE(2379), + [sym_fixed_array_creation] = STATE(2379), + [sym_selector_expression] = STATE(2379), + [sym_index_expression] = STATE(2379), + [sym_slice_expression] = STATE(2379), + [sym_if_expression] = STATE(2378), + [sym_compile_time_if_expression] = STATE(2378), + [sym_is_expression] = STATE(2379), + [sym_in_expression] = STATE(2379), + [sym_enum_fetch] = STATE(2379), + [sym_match_expression] = STATE(2378), + [sym_select_expression] = STATE(2378), + [sym_lock_expression] = STATE(2378), + [sym_unsafe_expression] = STATE(2378), + [sym_sql_expression] = STATE(2378), + [sym_c_string_literal] = STATE(2401), + [sym_raw_string_literal] = STATE(2401), + [sym_interpreted_string_literal] = STATE(2401), + [sym_mutability_modifiers] = STATE(939), + [sym_plain_type] = STATE(4160), + [sym__plain_type_without_special] = STATE(2360), + [sym_anon_struct_type] = STATE(2362), + [sym_multi_return_type] = STATE(2360), + [sym_result_type] = STATE(2360), + [sym_option_type] = STATE(2360), + [sym_qualified_type] = STATE(3460), + [sym_fixed_array_type] = STATE(2362), + [sym_array_type] = STATE(2362), + [sym_pointer_type] = STATE(2362), + [sym_wrong_pointer_type] = STATE(2362), + [sym_map_type] = STATE(2362), + [sym_channel_type] = STATE(2362), + [sym_shared_type] = STATE(2362), + [sym_thread_type] = STATE(2362), + [sym_atomic_type] = STATE(2362), + [sym_generic_type] = STATE(2362), + [sym_function_type] = STATE(2362), + [sym_identifier] = ACTIONS(1815), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(17), - [anon_sym_LBRACE] = ACTIONS(3098), - [anon_sym_LPAREN] = ACTIONS(23), - [anon_sym_fn] = ACTIONS(485), - [anon_sym_PLUS] = ACTIONS(31), - [anon_sym_DASH] = ACTIONS(31), - [anon_sym_STAR] = ACTIONS(33), - [anon_sym_struct] = ACTIONS(487), + [anon_sym_DOT] = ACTIONS(1430), + [anon_sym_LBRACE] = ACTIONS(1432), + [anon_sym_LPAREN] = ACTIONS(1434), + [anon_sym_fn] = ACTIONS(1436), + [anon_sym_PLUS] = ACTIONS(3090), + [anon_sym_DASH] = ACTIONS(3090), + [anon_sym_STAR] = ACTIONS(3092), + [anon_sym_struct] = ACTIONS(1442), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(49), - [anon_sym_go] = ACTIONS(51), - [anon_sym_spawn] = ACTIONS(53), - [anon_sym_json_DOTdecode] = ACTIONS(55), - [anon_sym_LBRACK2] = ACTIONS(489), - [anon_sym_TILDE] = ACTIONS(31), - [anon_sym_CARET] = ACTIONS(31), - [anon_sym_AMP] = ACTIONS(59), - [anon_sym_LT_DASH] = ACTIONS(61), - [sym_none] = ACTIONS(63), - [sym_true] = ACTIONS(63), - [sym_false] = ACTIONS(63), - [sym_nil] = ACTIONS(63), - [anon_sym_if] = ACTIONS(65), - [anon_sym_DOLLARif] = ACTIONS(67), - [anon_sym_match] = ACTIONS(69), - [anon_sym_select] = ACTIONS(71), - [anon_sym_lock] = ACTIONS(73), - [anon_sym_rlock] = ACTIONS(73), - [anon_sym_unsafe] = ACTIONS(75), - [anon_sym_sql] = ACTIONS(77), - [sym_int_literal] = ACTIONS(63), - [sym_float_literal] = ACTIONS(79), - [sym_rune_literal] = ACTIONS(79), - [sym_pseudo_compile_time_identifier] = ACTIONS(81), + [anon_sym_BANG] = ACTIONS(3094), + [anon_sym_go] = ACTIONS(3096), + [anon_sym_spawn] = ACTIONS(3098), + [anon_sym_json_DOTdecode] = ACTIONS(1450), + [anon_sym_LBRACK2] = ACTIONS(1827), + [anon_sym_TILDE] = ACTIONS(3090), + [anon_sym_CARET] = ACTIONS(3090), + [anon_sym_AMP] = ACTIONS(3100), + [anon_sym_LT_DASH] = ACTIONS(3102), + [sym_none] = ACTIONS(1458), + [sym_true] = ACTIONS(1458), + [sym_false] = ACTIONS(1458), + [sym_nil] = ACTIONS(1458), + [anon_sym_if] = ACTIONS(1833), + [anon_sym_DOLLARif] = ACTIONS(1462), + [anon_sym_match] = ACTIONS(1464), + [anon_sym_select] = ACTIONS(3104), + [anon_sym_lock] = ACTIONS(3106), + [anon_sym_rlock] = ACTIONS(3106), + [anon_sym_unsafe] = ACTIONS(1839), + [anon_sym_sql] = ACTIONS(1472), + [sym_int_literal] = ACTIONS(1458), + [sym_float_literal] = ACTIONS(1474), + [sym_rune_literal] = ACTIONS(1474), + [sym_pseudo_compile_time_identifier] = ACTIONS(1476), [anon_sym_shared] = ACTIONS(83), [anon_sym_map_LBRACK] = ACTIONS(85), [anon_sym_chan] = ACTIONS(87), [anon_sym_thread] = ACTIONS(89), [anon_sym_atomic] = ACTIONS(91), - [sym___double_quote] = ACTIONS(115), - [sym___single_quote] = ACTIONS(117), - [sym___c_double_quote] = ACTIONS(119), - [sym___c_single_quote] = ACTIONS(121), - [sym___r_double_quote] = ACTIONS(123), - [sym___r_single_quote] = ACTIONS(125), + [sym___double_quote] = ACTIONS(1480), + [sym___single_quote] = ACTIONS(1482), + [sym___c_double_quote] = ACTIONS(1484), + [sym___c_single_quote] = ACTIONS(1486), + [sym___r_double_quote] = ACTIONS(1488), + [sym___r_single_quote] = ACTIONS(1490), }, [786] = { [sym_line_comment] = STATE(786), [sym_block_comment] = STATE(786), - [sym__expression] = STATE(2703), - [sym__expression_without_blocks] = STATE(2300), - [sym__expression_with_blocks] = STATE(2300), - [sym_inc_expression] = STATE(2307), - [sym_dec_expression] = STATE(2307), - [sym_or_block_expression] = STATE(2307), - [sym_option_propagation_expression] = STATE(2307), - [sym_result_propagation_expression] = STATE(2307), - [sym_anon_struct_value_expression] = STATE(2380), - [sym_go_expression] = STATE(2307), - [sym_spawn_expression] = STATE(2307), - [sym_parenthesized_expression] = STATE(2307), - [sym_call_expression] = STATE(2307), - [sym_type_initializer] = STATE(2380), - [sym_function_literal] = STATE(2307), - [sym_reference_expression] = STATE(2311), - [sym_type_reference_expression] = STATE(3541), - [sym_unary_expression] = STATE(2307), - [sym_receive_expression] = STATE(2307), - [sym_binary_expression] = STATE(2307), - [sym_as_type_cast_expression] = STATE(2307), - [sym__max_group] = STATE(2307), - [sym_literal] = STATE(2292), - [sym_map_init_expression] = STATE(2380), - [sym_array_creation] = STATE(2307), - [sym_fixed_array_creation] = STATE(2307), - [sym_selector_expression] = STATE(2307), - [sym_index_expression] = STATE(2307), - [sym_slice_expression] = STATE(2307), - [sym_if_expression] = STATE(2380), - [sym_compile_time_if_expression] = STATE(2380), - [sym_is_expression] = STATE(2307), - [sym_in_expression] = STATE(2307), - [sym_enum_fetch] = STATE(2307), - [sym_match_expression] = STATE(2380), - [sym_select_expression] = STATE(2380), - [sym_lock_expression] = STATE(2380), - [sym_unsafe_expression] = STATE(2380), - [sym_sql_expression] = STATE(2380), - [sym_c_string_literal] = STATE(2308), - [sym_raw_string_literal] = STATE(2308), - [sym_interpreted_string_literal] = STATE(2308), + [sym__expression] = STATE(2784), + [sym__expression_without_blocks] = STATE(2347), + [sym__expression_with_blocks] = STATE(2347), + [sym_inc_expression] = STATE(2379), + [sym_dec_expression] = STATE(2379), + [sym_or_block_expression] = STATE(2379), + [sym_option_propagation_expression] = STATE(2379), + [sym_result_propagation_expression] = STATE(2379), + [sym_anon_struct_value_expression] = STATE(2378), + [sym_go_expression] = STATE(2379), + [sym_spawn_expression] = STATE(2379), + [sym_parenthesized_expression] = STATE(2379), + [sym_call_expression] = STATE(2379), + [sym_type_initializer] = STATE(2378), + [sym_function_literal] = STATE(2379), + [sym_reference_expression] = STATE(2377), + [sym_type_reference_expression] = STATE(3460), + [sym_unary_expression] = STATE(2379), + [sym_receive_expression] = STATE(2379), + [sym_binary_expression] = STATE(2379), + [sym_as_type_cast_expression] = STATE(2379), + [sym__max_group] = STATE(2379), + [sym_literal] = STATE(2392), + [sym_map_init_expression] = STATE(2378), + [sym_array_creation] = STATE(2379), + [sym_fixed_array_creation] = STATE(2379), + [sym_selector_expression] = STATE(2379), + [sym_index_expression] = STATE(2379), + [sym_slice_expression] = STATE(2379), + [sym_if_expression] = STATE(2378), + [sym_compile_time_if_expression] = STATE(2378), + [sym_is_expression] = STATE(2379), + [sym_in_expression] = STATE(2379), + [sym_enum_fetch] = STATE(2379), + [sym_match_expression] = STATE(2378), + [sym_select_expression] = STATE(2378), + [sym_lock_expression] = STATE(2378), + [sym_unsafe_expression] = STATE(2378), + [sym_sql_expression] = STATE(2378), + [sym_c_string_literal] = STATE(2401), + [sym_raw_string_literal] = STATE(2401), + [sym_interpreted_string_literal] = STATE(2401), [sym_mutability_modifiers] = STATE(939), - [sym_plain_type] = STATE(3552), - [sym__plain_type_without_special] = STATE(2302), - [sym_anon_struct_type] = STATE(2303), - [sym_multi_return_type] = STATE(2302), - [sym_result_type] = STATE(2302), - [sym_option_type] = STATE(2302), - [sym_qualified_type] = STATE(3541), - [sym_fixed_array_type] = STATE(2303), - [sym_array_type] = STATE(2303), - [sym_pointer_type] = STATE(2303), - [sym_wrong_pointer_type] = STATE(2303), - [sym_map_type] = STATE(2303), - [sym_channel_type] = STATE(2303), - [sym_shared_type] = STATE(2303), - [sym_thread_type] = STATE(2303), - [sym_atomic_type] = STATE(2303), - [sym_generic_type] = STATE(2303), - [sym_function_type] = STATE(2303), - [sym_identifier] = ACTIONS(1426), + [sym_plain_type] = STATE(4160), + [sym__plain_type_without_special] = STATE(2360), + [sym_anon_struct_type] = STATE(2362), + [sym_multi_return_type] = STATE(2360), + [sym_result_type] = STATE(2360), + [sym_option_type] = STATE(2360), + [sym_qualified_type] = STATE(3460), + [sym_fixed_array_type] = STATE(2362), + [sym_array_type] = STATE(2362), + [sym_pointer_type] = STATE(2362), + [sym_wrong_pointer_type] = STATE(2362), + [sym_map_type] = STATE(2362), + [sym_channel_type] = STATE(2362), + [sym_shared_type] = STATE(2362), + [sym_thread_type] = STATE(2362), + [sym_atomic_type] = STATE(2362), + [sym_generic_type] = STATE(2362), + [sym_function_type] = STATE(2362), + [sym_identifier] = ACTIONS(2477), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1428), - [anon_sym_LBRACE] = ACTIONS(1430), - [anon_sym_LPAREN] = ACTIONS(1432), - [anon_sym_fn] = ACTIONS(1434), - [anon_sym_PLUS] = ACTIONS(2491), - [anon_sym_DASH] = ACTIONS(2491), - [anon_sym_STAR] = ACTIONS(2493), - [anon_sym_struct] = ACTIONS(1440), + [anon_sym_DOT] = ACTIONS(1430), + [anon_sym_LBRACE] = ACTIONS(1432), + [anon_sym_LPAREN] = ACTIONS(1434), + [anon_sym_fn] = ACTIONS(1436), + [anon_sym_PLUS] = ACTIONS(2271), + [anon_sym_DASH] = ACTIONS(2271), + [anon_sym_STAR] = ACTIONS(3354), + [anon_sym_struct] = ACTIONS(1442), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(2495), - [anon_sym_go] = ACTIONS(2497), - [anon_sym_spawn] = ACTIONS(2499), - [anon_sym_json_DOTdecode] = ACTIONS(1448), - [anon_sym_LBRACK2] = ACTIONS(1450), - [anon_sym_TILDE] = ACTIONS(2491), - [anon_sym_CARET] = ACTIONS(2491), - [anon_sym_AMP] = ACTIONS(2501), - [anon_sym_LT_DASH] = ACTIONS(2503), - [sym_none] = ACTIONS(1456), - [sym_true] = ACTIONS(1456), - [sym_false] = ACTIONS(1456), - [sym_nil] = ACTIONS(1456), - [anon_sym_if] = ACTIONS(1827), - [anon_sym_DOLLARif] = ACTIONS(1460), - [anon_sym_match] = ACTIONS(1462), - [anon_sym_select] = ACTIONS(1464), - [anon_sym_lock] = ACTIONS(1466), - [anon_sym_rlock] = ACTIONS(1466), - [anon_sym_unsafe] = ACTIONS(1833), - [anon_sym_sql] = ACTIONS(1470), - [sym_int_literal] = ACTIONS(1456), - [sym_float_literal] = ACTIONS(1472), - [sym_rune_literal] = ACTIONS(1472), - [sym_pseudo_compile_time_identifier] = ACTIONS(1474), + [anon_sym_BANG] = ACTIONS(3356), + [anon_sym_go] = ACTIONS(2277), + [anon_sym_spawn] = ACTIONS(2279), + [anon_sym_json_DOTdecode] = ACTIONS(1450), + [anon_sym_LBRACK2] = ACTIONS(1452), + [anon_sym_TILDE] = ACTIONS(2271), + [anon_sym_CARET] = ACTIONS(2271), + [anon_sym_AMP] = ACTIONS(3358), + [anon_sym_LT_DASH] = ACTIONS(2283), + [sym_none] = ACTIONS(1458), + [sym_true] = ACTIONS(1458), + [sym_false] = ACTIONS(1458), + [sym_nil] = ACTIONS(1458), + [anon_sym_if] = ACTIONS(1833), + [anon_sym_DOLLARif] = ACTIONS(1462), + [anon_sym_match] = ACTIONS(1464), + [anon_sym_select] = ACTIONS(1466), + [anon_sym_lock] = ACTIONS(1468), + [anon_sym_rlock] = ACTIONS(1468), + [anon_sym_unsafe] = ACTIONS(1839), + [anon_sym_sql] = ACTIONS(1472), + [sym_int_literal] = ACTIONS(1458), + [sym_float_literal] = ACTIONS(1474), + [sym_rune_literal] = ACTIONS(1474), + [sym_pseudo_compile_time_identifier] = ACTIONS(1476), [anon_sym_shared] = ACTIONS(83), [anon_sym_map_LBRACK] = ACTIONS(85), [anon_sym_chan] = ACTIONS(87), [anon_sym_thread] = ACTIONS(89), [anon_sym_atomic] = ACTIONS(91), - [sym___double_quote] = ACTIONS(1478), - [sym___single_quote] = ACTIONS(1480), - [sym___c_double_quote] = ACTIONS(1482), - [sym___c_single_quote] = ACTIONS(1484), - [sym___r_double_quote] = ACTIONS(1486), - [sym___r_single_quote] = ACTIONS(1488), + [sym___double_quote] = ACTIONS(1480), + [sym___single_quote] = ACTIONS(1482), + [sym___c_double_quote] = ACTIONS(1484), + [sym___c_single_quote] = ACTIONS(1486), + [sym___r_double_quote] = ACTIONS(1488), + [sym___r_single_quote] = ACTIONS(1490), }, [787] = { [sym_line_comment] = STATE(787), [sym_block_comment] = STATE(787), - [sym__expression] = STATE(2263), - [sym__expression_without_blocks] = STATE(2300), - [sym__expression_with_blocks] = STATE(2300), - [sym_inc_expression] = STATE(2307), - [sym_dec_expression] = STATE(2307), - [sym_or_block_expression] = STATE(2307), - [sym_option_propagation_expression] = STATE(2307), - [sym_result_propagation_expression] = STATE(2307), - [sym_anon_struct_value_expression] = STATE(2380), - [sym_go_expression] = STATE(2307), - [sym_spawn_expression] = STATE(2307), - [sym_parenthesized_expression] = STATE(2307), - [sym_call_expression] = STATE(2307), - [sym_type_initializer] = STATE(2380), - [sym_function_literal] = STATE(2307), - [sym_reference_expression] = STATE(2311), - [sym_type_reference_expression] = STATE(3541), - [sym_unary_expression] = STATE(2307), - [sym_receive_expression] = STATE(2307), - [sym_binary_expression] = STATE(2307), - [sym_as_type_cast_expression] = STATE(2307), - [sym__max_group] = STATE(2307), - [sym_literal] = STATE(2292), - [sym_map_init_expression] = STATE(2380), - [sym_array_creation] = STATE(2307), - [sym_fixed_array_creation] = STATE(2307), - [sym_selector_expression] = STATE(2307), - [sym_index_expression] = STATE(2307), - [sym_slice_expression] = STATE(2307), - [sym_if_expression] = STATE(2380), - [sym_compile_time_if_expression] = STATE(2380), - [sym_is_expression] = STATE(2307), - [sym_in_expression] = STATE(2307), - [sym_enum_fetch] = STATE(2307), - [sym_match_expression] = STATE(2380), - [sym_select_expression] = STATE(2380), - [sym_lock_expression] = STATE(2380), - [sym_unsafe_expression] = STATE(2380), - [sym_sql_expression] = STATE(2380), - [sym_c_string_literal] = STATE(2308), - [sym_raw_string_literal] = STATE(2308), - [sym_interpreted_string_literal] = STATE(2308), + [sym__expression] = STATE(2830), + [sym__expression_without_blocks] = STATE(2347), + [sym__expression_with_blocks] = STATE(2347), + [sym_inc_expression] = STATE(2379), + [sym_dec_expression] = STATE(2379), + [sym_or_block_expression] = STATE(2379), + [sym_option_propagation_expression] = STATE(2379), + [sym_result_propagation_expression] = STATE(2379), + [sym_anon_struct_value_expression] = STATE(2378), + [sym_go_expression] = STATE(2379), + [sym_spawn_expression] = STATE(2379), + [sym_parenthesized_expression] = STATE(2379), + [sym_call_expression] = STATE(2379), + [sym_type_initializer] = STATE(2378), + [sym_function_literal] = STATE(2379), + [sym_reference_expression] = STATE(2909), + [sym_type_reference_expression] = STATE(3460), + [sym_unary_expression] = STATE(2379), + [sym_receive_expression] = STATE(2379), + [sym_binary_expression] = STATE(2379), + [sym_as_type_cast_expression] = STATE(2379), + [sym__max_group] = STATE(2379), + [sym_literal] = STATE(2392), + [sym_map_init_expression] = STATE(2378), + [sym_array_creation] = STATE(2379), + [sym_fixed_array_creation] = STATE(2379), + [sym_selector_expression] = STATE(2915), + [sym_index_expression] = STATE(2379), + [sym_slice_expression] = STATE(2379), + [sym_if_expression] = STATE(2378), + [sym_compile_time_if_expression] = STATE(2378), + [sym_is_expression] = STATE(2379), + [sym_in_expression] = STATE(2379), + [sym_enum_fetch] = STATE(2379), + [sym_match_expression] = STATE(2378), + [sym_select_expression] = STATE(2378), + [sym_lock_expression] = STATE(2378), + [sym_unsafe_expression] = STATE(2378), + [sym_sql_expression] = STATE(2378), + [sym_c_string_literal] = STATE(2401), + [sym_raw_string_literal] = STATE(2401), + [sym_interpreted_string_literal] = STATE(2401), [sym_mutability_modifiers] = STATE(939), - [sym_plain_type] = STATE(3565), - [sym__plain_type_without_special] = STATE(2302), - [sym_anon_struct_type] = STATE(2303), - [sym_multi_return_type] = STATE(2302), - [sym_result_type] = STATE(2302), - [sym_option_type] = STATE(2302), - [sym_qualified_type] = STATE(3541), - [sym_fixed_array_type] = STATE(2303), - [sym_array_type] = STATE(2303), - [sym_pointer_type] = STATE(2303), - [sym_wrong_pointer_type] = STATE(2303), - [sym_map_type] = STATE(2303), - [sym_channel_type] = STATE(2303), - [sym_shared_type] = STATE(2303), - [sym_thread_type] = STATE(2303), - [sym_atomic_type] = STATE(2303), - [sym_generic_type] = STATE(2303), - [sym_function_type] = STATE(2303), - [sym_identifier] = ACTIONS(1807), + [sym_plain_type] = STATE(4160), + [sym__plain_type_without_special] = STATE(2360), + [sym_anon_struct_type] = STATE(2362), + [sym_multi_return_type] = STATE(2360), + [sym_result_type] = STATE(2360), + [sym_option_type] = STATE(2360), + [sym_qualified_type] = STATE(3460), + [sym_fixed_array_type] = STATE(2362), + [sym_array_type] = STATE(2362), + [sym_pointer_type] = STATE(2362), + [sym_wrong_pointer_type] = STATE(2362), + [sym_map_type] = STATE(2362), + [sym_channel_type] = STATE(2362), + [sym_shared_type] = STATE(2362), + [sym_thread_type] = STATE(2362), + [sym_atomic_type] = STATE(2362), + [sym_generic_type] = STATE(2362), + [sym_function_type] = STATE(2362), + [sym_identifier] = ACTIONS(2477), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1428), - [anon_sym_LBRACE] = ACTIONS(1430), - [anon_sym_LPAREN] = ACTIONS(1432), - [anon_sym_fn] = ACTIONS(1434), - [anon_sym_PLUS] = ACTIONS(3064), - [anon_sym_DASH] = ACTIONS(3064), - [anon_sym_STAR] = ACTIONS(3066), - [anon_sym_struct] = ACTIONS(1440), + [anon_sym_DOT] = ACTIONS(1430), + [anon_sym_LBRACE] = ACTIONS(1432), + [anon_sym_LPAREN] = ACTIONS(1434), + [anon_sym_fn] = ACTIONS(1436), + [anon_sym_PLUS] = ACTIONS(1438), + [anon_sym_DASH] = ACTIONS(1438), + [anon_sym_STAR] = ACTIONS(1440), + [anon_sym_struct] = ACTIONS(1442), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(3068), - [anon_sym_go] = ACTIONS(3070), - [anon_sym_spawn] = ACTIONS(3072), - [anon_sym_json_DOTdecode] = ACTIONS(1448), - [anon_sym_LBRACK2] = ACTIONS(1821), - [anon_sym_TILDE] = ACTIONS(3064), - [anon_sym_CARET] = ACTIONS(3064), - [anon_sym_AMP] = ACTIONS(3074), - [anon_sym_LT_DASH] = ACTIONS(3076), - [sym_none] = ACTIONS(1456), - [sym_true] = ACTIONS(1456), - [sym_false] = ACTIONS(1456), - [sym_nil] = ACTIONS(1456), - [anon_sym_if] = ACTIONS(1827), - [anon_sym_DOLLARif] = ACTIONS(1460), - [anon_sym_match] = ACTIONS(1462), - [anon_sym_select] = ACTIONS(3078), - [anon_sym_lock] = ACTIONS(3080), - [anon_sym_rlock] = ACTIONS(3080), - [anon_sym_unsafe] = ACTIONS(1833), - [anon_sym_sql] = ACTIONS(1470), - [sym_int_literal] = ACTIONS(1456), - [sym_float_literal] = ACTIONS(1472), - [sym_rune_literal] = ACTIONS(1472), - [sym_pseudo_compile_time_identifier] = ACTIONS(1474), + [anon_sym_BANG] = ACTIONS(1444), + [anon_sym_go] = ACTIONS(1446), + [anon_sym_spawn] = ACTIONS(1448), + [anon_sym_json_DOTdecode] = ACTIONS(1450), + [anon_sym_LBRACK2] = ACTIONS(1452), + [anon_sym_TILDE] = ACTIONS(1438), + [anon_sym_CARET] = ACTIONS(1438), + [anon_sym_AMP] = ACTIONS(1454), + [anon_sym_LT_DASH] = ACTIONS(1456), + [sym_none] = ACTIONS(1458), + [sym_true] = ACTIONS(1458), + [sym_false] = ACTIONS(1458), + [sym_nil] = ACTIONS(1458), + [anon_sym_if] = ACTIONS(1833), + [anon_sym_DOLLARif] = ACTIONS(1462), + [anon_sym_match] = ACTIONS(1464), + [anon_sym_select] = ACTIONS(1466), + [anon_sym_lock] = ACTIONS(1468), + [anon_sym_rlock] = ACTIONS(1468), + [anon_sym_unsafe] = ACTIONS(1839), + [anon_sym_sql] = ACTIONS(1472), + [sym_int_literal] = ACTIONS(1458), + [sym_float_literal] = ACTIONS(1474), + [sym_rune_literal] = ACTIONS(1474), + [sym_pseudo_compile_time_identifier] = ACTIONS(1476), [anon_sym_shared] = ACTIONS(83), [anon_sym_map_LBRACK] = ACTIONS(85), [anon_sym_chan] = ACTIONS(87), [anon_sym_thread] = ACTIONS(89), [anon_sym_atomic] = ACTIONS(91), - [sym___double_quote] = ACTIONS(1478), - [sym___single_quote] = ACTIONS(1480), - [sym___c_double_quote] = ACTIONS(1482), - [sym___c_single_quote] = ACTIONS(1484), - [sym___r_double_quote] = ACTIONS(1486), - [sym___r_single_quote] = ACTIONS(1488), + [sym___double_quote] = ACTIONS(1480), + [sym___single_quote] = ACTIONS(1482), + [sym___c_double_quote] = ACTIONS(1484), + [sym___c_single_quote] = ACTIONS(1486), + [sym___r_double_quote] = ACTIONS(1488), + [sym___r_single_quote] = ACTIONS(1490), }, [788] = { [sym_line_comment] = STATE(788), [sym_block_comment] = STATE(788), - [sym__expression] = STATE(2604), - [sym__expression_without_blocks] = STATE(2300), - [sym__expression_with_blocks] = STATE(2300), - [sym_inc_expression] = STATE(2307), - [sym_dec_expression] = STATE(2307), - [sym_or_block_expression] = STATE(2307), - [sym_option_propagation_expression] = STATE(2307), - [sym_result_propagation_expression] = STATE(2307), - [sym_anon_struct_value_expression] = STATE(2380), - [sym_go_expression] = STATE(2307), - [sym_spawn_expression] = STATE(2307), - [sym_parenthesized_expression] = STATE(2307), - [sym_call_expression] = STATE(2307), - [sym_type_initializer] = STATE(2380), - [sym_function_literal] = STATE(2307), - [sym_reference_expression] = STATE(2311), - [sym_type_reference_expression] = STATE(3541), - [sym_unary_expression] = STATE(2307), - [sym_receive_expression] = STATE(2307), - [sym_binary_expression] = STATE(2307), - [sym_as_type_cast_expression] = STATE(2307), - [sym__max_group] = STATE(2307), - [sym_literal] = STATE(2292), - [sym_map_init_expression] = STATE(2380), - [sym_array_creation] = STATE(2307), - [sym_fixed_array_creation] = STATE(2307), - [sym_selector_expression] = STATE(2307), - [sym_index_expression] = STATE(2307), - [sym_slice_expression] = STATE(2307), - [sym_if_expression] = STATE(2380), - [sym_compile_time_if_expression] = STATE(2380), - [sym_is_expression] = STATE(2307), - [sym_in_expression] = STATE(2307), - [sym_enum_fetch] = STATE(2307), - [sym_match_expression] = STATE(2380), - [sym_select_expression] = STATE(2380), - [sym_lock_expression] = STATE(2380), - [sym_unsafe_expression] = STATE(2380), - [sym_sql_expression] = STATE(2380), - [sym_c_string_literal] = STATE(2308), - [sym_raw_string_literal] = STATE(2308), - [sym_interpreted_string_literal] = STATE(2308), + [sym__expression] = STATE(2795), + [sym__expression_without_blocks] = STATE(2347), + [sym__expression_with_blocks] = STATE(2347), + [sym_inc_expression] = STATE(2379), + [sym_dec_expression] = STATE(2379), + [sym_or_block_expression] = STATE(2379), + [sym_option_propagation_expression] = STATE(2379), + [sym_result_propagation_expression] = STATE(2379), + [sym_anon_struct_value_expression] = STATE(2378), + [sym_go_expression] = STATE(2379), + [sym_spawn_expression] = STATE(2379), + [sym_parenthesized_expression] = STATE(2379), + [sym_call_expression] = STATE(2379), + [sym_type_initializer] = STATE(2378), + [sym_function_literal] = STATE(2379), + [sym_reference_expression] = STATE(2377), + [sym_type_reference_expression] = STATE(3460), + [sym_unary_expression] = STATE(2379), + [sym_receive_expression] = STATE(2379), + [sym_binary_expression] = STATE(2379), + [sym_as_type_cast_expression] = STATE(2379), + [sym__max_group] = STATE(2379), + [sym_literal] = STATE(2392), + [sym_map_init_expression] = STATE(2378), + [sym_array_creation] = STATE(2379), + [sym_fixed_array_creation] = STATE(2379), + [sym_selector_expression] = STATE(2379), + [sym_index_expression] = STATE(2379), + [sym_slice_expression] = STATE(2379), + [sym_if_expression] = STATE(2378), + [sym_compile_time_if_expression] = STATE(2378), + [sym_is_expression] = STATE(2379), + [sym_in_expression] = STATE(2379), + [sym_enum_fetch] = STATE(2379), + [sym_match_expression] = STATE(2378), + [sym_select_expression] = STATE(2378), + [sym_lock_expression] = STATE(2378), + [sym_unsafe_expression] = STATE(2378), + [sym_sql_expression] = STATE(2378), + [sym_c_string_literal] = STATE(2401), + [sym_raw_string_literal] = STATE(2401), + [sym_interpreted_string_literal] = STATE(2401), [sym_mutability_modifiers] = STATE(939), - [sym_plain_type] = STATE(4297), - [sym__plain_type_without_special] = STATE(2302), - [sym_anon_struct_type] = STATE(2303), - [sym_multi_return_type] = STATE(2302), - [sym_result_type] = STATE(2302), - [sym_option_type] = STATE(2302), - [sym_qualified_type] = STATE(3541), - [sym_fixed_array_type] = STATE(2303), - [sym_array_type] = STATE(2303), - [sym_pointer_type] = STATE(2303), - [sym_wrong_pointer_type] = STATE(2303), - [sym_map_type] = STATE(2303), - [sym_channel_type] = STATE(2303), - [sym_shared_type] = STATE(2303), - [sym_thread_type] = STATE(2303), - [sym_atomic_type] = STATE(2303), - [sym_generic_type] = STATE(2303), - [sym_function_type] = STATE(2303), - [sym_identifier] = ACTIONS(1807), + [sym_plain_type] = STATE(3564), + [sym__plain_type_without_special] = STATE(2360), + [sym_anon_struct_type] = STATE(2362), + [sym_multi_return_type] = STATE(2360), + [sym_result_type] = STATE(2360), + [sym_option_type] = STATE(2360), + [sym_qualified_type] = STATE(3460), + [sym_fixed_array_type] = STATE(2362), + [sym_array_type] = STATE(2362), + [sym_pointer_type] = STATE(2362), + [sym_wrong_pointer_type] = STATE(2362), + [sym_map_type] = STATE(2362), + [sym_channel_type] = STATE(2362), + [sym_shared_type] = STATE(2362), + [sym_thread_type] = STATE(2362), + [sym_atomic_type] = STATE(2362), + [sym_generic_type] = STATE(2362), + [sym_function_type] = STATE(2362), + [sym_identifier] = ACTIONS(1428), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1428), - [anon_sym_LBRACE] = ACTIONS(1430), - [anon_sym_LPAREN] = ACTIONS(1432), - [anon_sym_fn] = ACTIONS(1434), - [anon_sym_PLUS] = ACTIONS(3064), - [anon_sym_DASH] = ACTIONS(3064), - [anon_sym_STAR] = ACTIONS(3066), - [anon_sym_struct] = ACTIONS(1440), + [anon_sym_DOT] = ACTIONS(1430), + [anon_sym_LBRACE] = ACTIONS(1432), + [anon_sym_LPAREN] = ACTIONS(1434), + [anon_sym_fn] = ACTIONS(1436), + [anon_sym_PLUS] = ACTIONS(2271), + [anon_sym_DASH] = ACTIONS(2271), + [anon_sym_STAR] = ACTIONS(2273), + [anon_sym_struct] = ACTIONS(1442), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(3068), - [anon_sym_go] = ACTIONS(3070), - [anon_sym_spawn] = ACTIONS(3072), - [anon_sym_json_DOTdecode] = ACTIONS(1448), - [anon_sym_LBRACK2] = ACTIONS(1821), - [anon_sym_TILDE] = ACTIONS(3064), - [anon_sym_CARET] = ACTIONS(3064), - [anon_sym_AMP] = ACTIONS(3074), - [anon_sym_LT_DASH] = ACTIONS(3076), - [sym_none] = ACTIONS(1456), - [sym_true] = ACTIONS(1456), - [sym_false] = ACTIONS(1456), - [sym_nil] = ACTIONS(1456), - [anon_sym_if] = ACTIONS(1827), - [anon_sym_DOLLARif] = ACTIONS(1460), - [anon_sym_match] = ACTIONS(1462), - [anon_sym_select] = ACTIONS(3078), - [anon_sym_lock] = ACTIONS(3080), - [anon_sym_rlock] = ACTIONS(3080), - [anon_sym_unsafe] = ACTIONS(1833), - [anon_sym_sql] = ACTIONS(1470), - [sym_int_literal] = ACTIONS(1456), - [sym_float_literal] = ACTIONS(1472), - [sym_rune_literal] = ACTIONS(1472), - [sym_pseudo_compile_time_identifier] = ACTIONS(1474), + [anon_sym_BANG] = ACTIONS(2275), + [anon_sym_go] = ACTIONS(2277), + [anon_sym_spawn] = ACTIONS(2279), + [anon_sym_json_DOTdecode] = ACTIONS(1450), + [anon_sym_LBRACK2] = ACTIONS(1452), + [anon_sym_TILDE] = ACTIONS(2271), + [anon_sym_CARET] = ACTIONS(2271), + [anon_sym_AMP] = ACTIONS(2281), + [anon_sym_LT_DASH] = ACTIONS(2283), + [sym_none] = ACTIONS(1458), + [sym_true] = ACTIONS(1458), + [sym_false] = ACTIONS(1458), + [sym_nil] = ACTIONS(1458), + [anon_sym_if] = ACTIONS(1833), + [anon_sym_DOLLARif] = ACTIONS(1462), + [anon_sym_match] = ACTIONS(1464), + [anon_sym_select] = ACTIONS(1466), + [anon_sym_lock] = ACTIONS(1468), + [anon_sym_rlock] = ACTIONS(1468), + [anon_sym_unsafe] = ACTIONS(1839), + [anon_sym_sql] = ACTIONS(1472), + [sym_int_literal] = ACTIONS(1458), + [sym_float_literal] = ACTIONS(1474), + [sym_rune_literal] = ACTIONS(1474), + [sym_pseudo_compile_time_identifier] = ACTIONS(1476), [anon_sym_shared] = ACTIONS(83), [anon_sym_map_LBRACK] = ACTIONS(85), [anon_sym_chan] = ACTIONS(87), [anon_sym_thread] = ACTIONS(89), [anon_sym_atomic] = ACTIONS(91), - [sym___double_quote] = ACTIONS(1478), - [sym___single_quote] = ACTIONS(1480), - [sym___c_double_quote] = ACTIONS(1482), - [sym___c_single_quote] = ACTIONS(1484), - [sym___r_double_quote] = ACTIONS(1486), - [sym___r_single_quote] = ACTIONS(1488), + [sym___double_quote] = ACTIONS(1480), + [sym___single_quote] = ACTIONS(1482), + [sym___c_double_quote] = ACTIONS(1484), + [sym___c_single_quote] = ACTIONS(1486), + [sym___r_double_quote] = ACTIONS(1488), + [sym___r_single_quote] = ACTIONS(1490), }, [789] = { [sym_line_comment] = STATE(789), [sym_block_comment] = STATE(789), - [sym__expression] = STATE(1126), - [sym__expression_without_blocks] = STATE(1141), - [sym__expression_with_blocks] = STATE(1141), - [sym_inc_expression] = STATE(1140), - [sym_dec_expression] = STATE(1140), - [sym_or_block_expression] = STATE(1140), - [sym_option_propagation_expression] = STATE(1140), - [sym_result_propagation_expression] = STATE(1140), - [sym_anon_struct_value_expression] = STATE(1199), - [sym_go_expression] = STATE(1140), - [sym_spawn_expression] = STATE(1140), - [sym_parenthesized_expression] = STATE(1140), - [sym_call_expression] = STATE(1140), - [sym_type_initializer] = STATE(1199), - [sym_function_literal] = STATE(1140), - [sym_reference_expression] = STATE(1181), - [sym_type_reference_expression] = STATE(3541), - [sym_unary_expression] = STATE(1140), - [sym_receive_expression] = STATE(1140), - [sym_binary_expression] = STATE(1140), - [sym_as_type_cast_expression] = STATE(1140), - [sym__max_group] = STATE(1140), - [sym_literal] = STATE(1146), - [sym_map_init_expression] = STATE(1199), - [sym_array_creation] = STATE(1140), - [sym_fixed_array_creation] = STATE(1140), - [sym_selector_expression] = STATE(1140), - [sym_index_expression] = STATE(1140), - [sym_slice_expression] = STATE(1140), - [sym_if_expression] = STATE(1199), - [sym_compile_time_if_expression] = STATE(1199), - [sym_is_expression] = STATE(1140), - [sym_in_expression] = STATE(1140), - [sym_enum_fetch] = STATE(1140), - [sym_match_expression] = STATE(1199), - [sym_select_expression] = STATE(1199), - [sym_lock_expression] = STATE(1199), - [sym_unsafe_expression] = STATE(1199), - [sym_sql_expression] = STATE(1199), - [sym_c_string_literal] = STATE(1147), - [sym_raw_string_literal] = STATE(1147), - [sym_interpreted_string_literal] = STATE(1147), - [sym_mutability_modifiers] = STATE(638), - [sym_plain_type] = STATE(4234), - [sym__plain_type_without_special] = STATE(2302), - [sym_anon_struct_type] = STATE(2303), - [sym_multi_return_type] = STATE(2302), - [sym_result_type] = STATE(2302), - [sym_option_type] = STATE(2302), - [sym_qualified_type] = STATE(3541), - [sym_fixed_array_type] = STATE(2303), - [sym_array_type] = STATE(2303), - [sym_pointer_type] = STATE(2303), - [sym_wrong_pointer_type] = STATE(2303), - [sym_map_type] = STATE(2303), - [sym_channel_type] = STATE(2303), - [sym_shared_type] = STATE(2303), - [sym_thread_type] = STATE(2303), - [sym_atomic_type] = STATE(2303), - [sym_generic_type] = STATE(2303), - [sym_function_type] = STATE(2303), - [sym_identifier] = ACTIONS(1071), + [sym__expression] = STATE(2587), + [sym__expression_without_blocks] = STATE(2347), + [sym__expression_with_blocks] = STATE(2347), + [sym_inc_expression] = STATE(2379), + [sym_dec_expression] = STATE(2379), + [sym_or_block_expression] = STATE(2379), + [sym_option_propagation_expression] = STATE(2379), + [sym_result_propagation_expression] = STATE(2379), + [sym_anon_struct_value_expression] = STATE(2378), + [sym_go_expression] = STATE(2379), + [sym_spawn_expression] = STATE(2379), + [sym_parenthesized_expression] = STATE(2379), + [sym_call_expression] = STATE(2379), + [sym_type_initializer] = STATE(2378), + [sym_function_literal] = STATE(2379), + [sym_reference_expression] = STATE(2377), + [sym_type_reference_expression] = STATE(3460), + [sym_unary_expression] = STATE(2379), + [sym_receive_expression] = STATE(2379), + [sym_binary_expression] = STATE(2379), + [sym_as_type_cast_expression] = STATE(2379), + [sym__max_group] = STATE(2379), + [sym_literal] = STATE(2392), + [sym_map_init_expression] = STATE(2378), + [sym_array_creation] = STATE(2379), + [sym_fixed_array_creation] = STATE(2379), + [sym_selector_expression] = STATE(2379), + [sym_index_expression] = STATE(2379), + [sym_slice_expression] = STATE(2379), + [sym_if_expression] = STATE(2378), + [sym_compile_time_if_expression] = STATE(2378), + [sym_is_expression] = STATE(2379), + [sym_in_expression] = STATE(2379), + [sym_enum_fetch] = STATE(2379), + [sym_match_expression] = STATE(2378), + [sym_select_expression] = STATE(2378), + [sym_lock_expression] = STATE(2378), + [sym_unsafe_expression] = STATE(2378), + [sym_sql_expression] = STATE(2378), + [sym_c_string_literal] = STATE(2401), + [sym_raw_string_literal] = STATE(2401), + [sym_interpreted_string_literal] = STATE(2401), + [sym_mutability_modifiers] = STATE(939), + [sym_plain_type] = STATE(4160), + [sym__plain_type_without_special] = STATE(2360), + [sym_anon_struct_type] = STATE(2362), + [sym_multi_return_type] = STATE(2360), + [sym_result_type] = STATE(2360), + [sym_option_type] = STATE(2360), + [sym_qualified_type] = STATE(3460), + [sym_fixed_array_type] = STATE(2362), + [sym_array_type] = STATE(2362), + [sym_pointer_type] = STATE(2362), + [sym_wrong_pointer_type] = STATE(2362), + [sym_map_type] = STATE(2362), + [sym_channel_type] = STATE(2362), + [sym_shared_type] = STATE(2362), + [sym_thread_type] = STATE(2362), + [sym_atomic_type] = STATE(2362), + [sym_generic_type] = STATE(2362), + [sym_function_type] = STATE(2362), + [sym_identifier] = ACTIONS(1815), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(631), - [anon_sym_LBRACE] = ACTIONS(633), - [anon_sym_LPAREN] = ACTIONS(637), - [anon_sym_fn] = ACTIONS(641), - [anon_sym_PLUS] = ACTIONS(643), - [anon_sym_DASH] = ACTIONS(643), - [anon_sym_STAR] = ACTIONS(645), - [anon_sym_struct] = ACTIONS(649), + [anon_sym_DOT] = ACTIONS(1430), + [anon_sym_LBRACE] = ACTIONS(1432), + [anon_sym_LPAREN] = ACTIONS(1434), + [anon_sym_fn] = ACTIONS(1436), + [anon_sym_PLUS] = ACTIONS(3090), + [anon_sym_DASH] = ACTIONS(3090), + [anon_sym_STAR] = ACTIONS(3092), + [anon_sym_struct] = ACTIONS(1442), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(655), - [anon_sym_go] = ACTIONS(657), - [anon_sym_spawn] = ACTIONS(659), - [anon_sym_json_DOTdecode] = ACTIONS(661), - [anon_sym_LBRACK2] = ACTIONS(663), - [anon_sym_TILDE] = ACTIONS(643), - [anon_sym_CARET] = ACTIONS(643), - [anon_sym_AMP] = ACTIONS(665), - [anon_sym_LT_DASH] = ACTIONS(667), - [sym_none] = ACTIONS(669), - [sym_true] = ACTIONS(669), - [sym_false] = ACTIONS(669), - [sym_nil] = ACTIONS(669), - [anon_sym_if] = ACTIONS(671), - [anon_sym_DOLLARif] = ACTIONS(673), - [anon_sym_match] = ACTIONS(675), - [anon_sym_select] = ACTIONS(677), - [anon_sym_lock] = ACTIONS(679), - [anon_sym_rlock] = ACTIONS(679), - [anon_sym_unsafe] = ACTIONS(681), - [anon_sym_sql] = ACTIONS(683), - [sym_int_literal] = ACTIONS(669), - [sym_float_literal] = ACTIONS(685), - [sym_rune_literal] = ACTIONS(685), - [sym_pseudo_compile_time_identifier] = ACTIONS(687), + [anon_sym_BANG] = ACTIONS(3094), + [anon_sym_go] = ACTIONS(3096), + [anon_sym_spawn] = ACTIONS(3098), + [anon_sym_json_DOTdecode] = ACTIONS(1450), + [anon_sym_LBRACK2] = ACTIONS(1827), + [anon_sym_TILDE] = ACTIONS(3090), + [anon_sym_CARET] = ACTIONS(3090), + [anon_sym_AMP] = ACTIONS(3100), + [anon_sym_LT_DASH] = ACTIONS(3102), + [sym_none] = ACTIONS(1458), + [sym_true] = ACTIONS(1458), + [sym_false] = ACTIONS(1458), + [sym_nil] = ACTIONS(1458), + [anon_sym_if] = ACTIONS(1833), + [anon_sym_DOLLARif] = ACTIONS(1462), + [anon_sym_match] = ACTIONS(1464), + [anon_sym_select] = ACTIONS(3104), + [anon_sym_lock] = ACTIONS(3106), + [anon_sym_rlock] = ACTIONS(3106), + [anon_sym_unsafe] = ACTIONS(1839), + [anon_sym_sql] = ACTIONS(1472), + [sym_int_literal] = ACTIONS(1458), + [sym_float_literal] = ACTIONS(1474), + [sym_rune_literal] = ACTIONS(1474), + [sym_pseudo_compile_time_identifier] = ACTIONS(1476), [anon_sym_shared] = ACTIONS(83), [anon_sym_map_LBRACK] = ACTIONS(85), [anon_sym_chan] = ACTIONS(87), [anon_sym_thread] = ACTIONS(89), [anon_sym_atomic] = ACTIONS(91), - [sym___double_quote] = ACTIONS(689), - [sym___single_quote] = ACTIONS(691), - [sym___c_double_quote] = ACTIONS(693), - [sym___c_single_quote] = ACTIONS(695), - [sym___r_double_quote] = ACTIONS(697), - [sym___r_single_quote] = ACTIONS(699), + [sym___double_quote] = ACTIONS(1480), + [sym___single_quote] = ACTIONS(1482), + [sym___c_double_quote] = ACTIONS(1484), + [sym___c_single_quote] = ACTIONS(1486), + [sym___r_double_quote] = ACTIONS(1488), + [sym___r_single_quote] = ACTIONS(1490), }, [790] = { [sym_line_comment] = STATE(790), [sym_block_comment] = STATE(790), - [sym__expression] = STATE(2718), - [sym__expression_without_blocks] = STATE(2300), - [sym__expression_with_blocks] = STATE(2300), - [sym_inc_expression] = STATE(2307), - [sym_dec_expression] = STATE(2307), - [sym_or_block_expression] = STATE(2307), - [sym_option_propagation_expression] = STATE(2307), - [sym_result_propagation_expression] = STATE(2307), - [sym_anon_struct_value_expression] = STATE(2380), - [sym_go_expression] = STATE(2307), - [sym_spawn_expression] = STATE(2307), - [sym_parenthesized_expression] = STATE(2307), - [sym_call_expression] = STATE(2307), - [sym_type_initializer] = STATE(2380), - [sym_function_literal] = STATE(2307), - [sym_reference_expression] = STATE(2311), - [sym_type_reference_expression] = STATE(3541), - [sym_unary_expression] = STATE(2307), - [sym_receive_expression] = STATE(2307), - [sym_binary_expression] = STATE(2307), - [sym_as_type_cast_expression] = STATE(2307), - [sym__max_group] = STATE(2307), - [sym_literal] = STATE(2292), - [sym_map_init_expression] = STATE(2380), - [sym_array_creation] = STATE(2307), - [sym_fixed_array_creation] = STATE(2307), - [sym_selector_expression] = STATE(2307), - [sym_index_expression] = STATE(2307), - [sym_slice_expression] = STATE(2307), - [sym_if_expression] = STATE(2380), - [sym_compile_time_if_expression] = STATE(2380), - [sym_is_expression] = STATE(2307), - [sym_in_expression] = STATE(2307), - [sym_enum_fetch] = STATE(2307), - [sym_match_expression] = STATE(2380), - [sym_select_expression] = STATE(2380), - [sym_lock_expression] = STATE(2380), - [sym_unsafe_expression] = STATE(2380), - [sym_sql_expression] = STATE(2380), - [sym_c_string_literal] = STATE(2308), - [sym_raw_string_literal] = STATE(2308), - [sym_interpreted_string_literal] = STATE(2308), + [sym__expression] = STATE(2793), + [sym__expression_without_blocks] = STATE(2347), + [sym__expression_with_blocks] = STATE(2347), + [sym_inc_expression] = STATE(2379), + [sym_dec_expression] = STATE(2379), + [sym_or_block_expression] = STATE(2379), + [sym_option_propagation_expression] = STATE(2379), + [sym_result_propagation_expression] = STATE(2379), + [sym_anon_struct_value_expression] = STATE(2378), + [sym_go_expression] = STATE(2379), + [sym_spawn_expression] = STATE(2379), + [sym_parenthesized_expression] = STATE(2379), + [sym_call_expression] = STATE(2379), + [sym_type_initializer] = STATE(2378), + [sym_function_literal] = STATE(2379), + [sym_reference_expression] = STATE(2377), + [sym_type_reference_expression] = STATE(3460), + [sym_unary_expression] = STATE(2379), + [sym_receive_expression] = STATE(2379), + [sym_binary_expression] = STATE(2379), + [sym_as_type_cast_expression] = STATE(2379), + [sym__max_group] = STATE(2379), + [sym_literal] = STATE(2392), + [sym_map_init_expression] = STATE(2378), + [sym_array_creation] = STATE(2379), + [sym_fixed_array_creation] = STATE(2379), + [sym_selector_expression] = STATE(2379), + [sym_index_expression] = STATE(2379), + [sym_slice_expression] = STATE(2379), + [sym_if_expression] = STATE(2378), + [sym_compile_time_if_expression] = STATE(2378), + [sym_is_expression] = STATE(2379), + [sym_in_expression] = STATE(2379), + [sym_enum_fetch] = STATE(2379), + [sym_match_expression] = STATE(2378), + [sym_select_expression] = STATE(2378), + [sym_lock_expression] = STATE(2378), + [sym_unsafe_expression] = STATE(2378), + [sym_sql_expression] = STATE(2378), + [sym_c_string_literal] = STATE(2401), + [sym_raw_string_literal] = STATE(2401), + [sym_interpreted_string_literal] = STATE(2401), [sym_mutability_modifiers] = STATE(939), - [sym_plain_type] = STATE(4297), - [sym__plain_type_without_special] = STATE(2302), - [sym_anon_struct_type] = STATE(2303), - [sym_multi_return_type] = STATE(2302), - [sym_result_type] = STATE(2302), - [sym_option_type] = STATE(2302), - [sym_qualified_type] = STATE(3541), - [sym_fixed_array_type] = STATE(2303), - [sym_array_type] = STATE(2303), - [sym_pointer_type] = STATE(2303), - [sym_wrong_pointer_type] = STATE(2303), - [sym_map_type] = STATE(2303), - [sym_channel_type] = STATE(2303), - [sym_shared_type] = STATE(2303), - [sym_thread_type] = STATE(2303), - [sym_atomic_type] = STATE(2303), - [sym_generic_type] = STATE(2303), - [sym_function_type] = STATE(2303), - [sym_identifier] = ACTIONS(2189), + [sym_plain_type] = STATE(4160), + [sym__plain_type_without_special] = STATE(2360), + [sym_anon_struct_type] = STATE(2362), + [sym_multi_return_type] = STATE(2360), + [sym_result_type] = STATE(2360), + [sym_option_type] = STATE(2360), + [sym_qualified_type] = STATE(3460), + [sym_fixed_array_type] = STATE(2362), + [sym_array_type] = STATE(2362), + [sym_pointer_type] = STATE(2362), + [sym_wrong_pointer_type] = STATE(2362), + [sym_map_type] = STATE(2362), + [sym_channel_type] = STATE(2362), + [sym_shared_type] = STATE(2362), + [sym_thread_type] = STATE(2362), + [sym_atomic_type] = STATE(2362), + [sym_generic_type] = STATE(2362), + [sym_function_type] = STATE(2362), + [sym_identifier] = ACTIONS(2477), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1428), - [anon_sym_LBRACE] = ACTIONS(1430), - [anon_sym_LPAREN] = ACTIONS(1432), - [anon_sym_fn] = ACTIONS(1434), - [anon_sym_PLUS] = ACTIONS(2491), - [anon_sym_DASH] = ACTIONS(2491), + [anon_sym_DOT] = ACTIONS(1430), + [anon_sym_LBRACE] = ACTIONS(1432), + [anon_sym_LPAREN] = ACTIONS(1434), + [anon_sym_fn] = ACTIONS(1436), + [anon_sym_PLUS] = ACTIONS(2271), + [anon_sym_DASH] = ACTIONS(2271), [anon_sym_STAR] = ACTIONS(3354), - [anon_sym_struct] = ACTIONS(1440), + [anon_sym_struct] = ACTIONS(1442), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), [anon_sym_BANG] = ACTIONS(3356), - [anon_sym_go] = ACTIONS(2497), - [anon_sym_spawn] = ACTIONS(2499), - [anon_sym_json_DOTdecode] = ACTIONS(1448), - [anon_sym_LBRACK2] = ACTIONS(1450), - [anon_sym_TILDE] = ACTIONS(2491), - [anon_sym_CARET] = ACTIONS(2491), + [anon_sym_go] = ACTIONS(2277), + [anon_sym_spawn] = ACTIONS(2279), + [anon_sym_json_DOTdecode] = ACTIONS(1450), + [anon_sym_LBRACK2] = ACTIONS(1452), + [anon_sym_TILDE] = ACTIONS(2271), + [anon_sym_CARET] = ACTIONS(2271), [anon_sym_AMP] = ACTIONS(3358), - [anon_sym_LT_DASH] = ACTIONS(2503), - [sym_none] = ACTIONS(1456), - [sym_true] = ACTIONS(1456), - [sym_false] = ACTIONS(1456), - [sym_nil] = ACTIONS(1456), - [anon_sym_if] = ACTIONS(1827), - [anon_sym_DOLLARif] = ACTIONS(1460), - [anon_sym_match] = ACTIONS(1462), - [anon_sym_select] = ACTIONS(1464), - [anon_sym_lock] = ACTIONS(1466), - [anon_sym_rlock] = ACTIONS(1466), - [anon_sym_unsafe] = ACTIONS(1833), - [anon_sym_sql] = ACTIONS(1470), - [sym_int_literal] = ACTIONS(1456), - [sym_float_literal] = ACTIONS(1472), - [sym_rune_literal] = ACTIONS(1472), - [sym_pseudo_compile_time_identifier] = ACTIONS(1474), + [anon_sym_LT_DASH] = ACTIONS(2283), + [sym_none] = ACTIONS(1458), + [sym_true] = ACTIONS(1458), + [sym_false] = ACTIONS(1458), + [sym_nil] = ACTIONS(1458), + [anon_sym_if] = ACTIONS(1833), + [anon_sym_DOLLARif] = ACTIONS(1462), + [anon_sym_match] = ACTIONS(1464), + [anon_sym_select] = ACTIONS(1466), + [anon_sym_lock] = ACTIONS(1468), + [anon_sym_rlock] = ACTIONS(1468), + [anon_sym_unsafe] = ACTIONS(1839), + [anon_sym_sql] = ACTIONS(1472), + [sym_int_literal] = ACTIONS(1458), + [sym_float_literal] = ACTIONS(1474), + [sym_rune_literal] = ACTIONS(1474), + [sym_pseudo_compile_time_identifier] = ACTIONS(1476), [anon_sym_shared] = ACTIONS(83), [anon_sym_map_LBRACK] = ACTIONS(85), [anon_sym_chan] = ACTIONS(87), [anon_sym_thread] = ACTIONS(89), [anon_sym_atomic] = ACTIONS(91), - [sym___double_quote] = ACTIONS(1478), - [sym___single_quote] = ACTIONS(1480), - [sym___c_double_quote] = ACTIONS(1482), - [sym___c_single_quote] = ACTIONS(1484), - [sym___r_double_quote] = ACTIONS(1486), - [sym___r_single_quote] = ACTIONS(1488), + [sym___double_quote] = ACTIONS(1480), + [sym___single_quote] = ACTIONS(1482), + [sym___c_double_quote] = ACTIONS(1484), + [sym___c_single_quote] = ACTIONS(1486), + [sym___r_double_quote] = ACTIONS(1488), + [sym___r_single_quote] = ACTIONS(1490), }, [791] = { [sym_line_comment] = STATE(791), [sym_block_comment] = STATE(791), - [sym__expression] = STATE(954), - [sym__expression_without_blocks] = STATE(1017), - [sym__expression_with_blocks] = STATE(1017), - [sym_inc_expression] = STATE(1018), - [sym_dec_expression] = STATE(1018), - [sym_or_block_expression] = STATE(1018), - [sym_option_propagation_expression] = STATE(1018), - [sym_result_propagation_expression] = STATE(1018), - [sym_anon_struct_value_expression] = STATE(993), - [sym_go_expression] = STATE(1018), - [sym_spawn_expression] = STATE(1018), - [sym_parenthesized_expression] = STATE(1018), - [sym_call_expression] = STATE(1018), - [sym_type_initializer] = STATE(993), - [sym_function_literal] = STATE(1018), - [sym_reference_expression] = STATE(1046), - [sym_type_reference_expression] = STATE(3541), - [sym_unary_expression] = STATE(1018), - [sym_receive_expression] = STATE(1018), - [sym_binary_expression] = STATE(1018), - [sym_as_type_cast_expression] = STATE(1018), - [sym__max_group] = STATE(1018), - [sym_literal] = STATE(1014), - [sym_map_init_expression] = STATE(993), - [sym_array_creation] = STATE(1018), - [sym_fixed_array_creation] = STATE(1018), - [sym_selector_expression] = STATE(1018), - [sym_index_expression] = STATE(1018), - [sym_slice_expression] = STATE(1018), - [sym_if_expression] = STATE(993), - [sym_compile_time_if_expression] = STATE(993), - [sym_is_expression] = STATE(1018), - [sym_in_expression] = STATE(1018), - [sym_enum_fetch] = STATE(1018), - [sym_match_expression] = STATE(993), - [sym_select_expression] = STATE(993), - [sym_lock_expression] = STATE(993), - [sym_unsafe_expression] = STATE(993), - [sym_sql_expression] = STATE(993), - [sym_c_string_literal] = STATE(1006), - [sym_raw_string_literal] = STATE(1006), - [sym_interpreted_string_literal] = STATE(1006), - [sym_mutability_modifiers] = STATE(691), - [sym_plain_type] = STATE(4296), - [sym__plain_type_without_special] = STATE(2302), - [sym_anon_struct_type] = STATE(2303), - [sym_multi_return_type] = STATE(2302), - [sym_result_type] = STATE(2302), - [sym_option_type] = STATE(2302), - [sym_qualified_type] = STATE(3541), - [sym_fixed_array_type] = STATE(2303), - [sym_array_type] = STATE(2303), - [sym_pointer_type] = STATE(2303), - [sym_wrong_pointer_type] = STATE(2303), - [sym_map_type] = STATE(2303), - [sym_channel_type] = STATE(2303), - [sym_shared_type] = STATE(2303), - [sym_thread_type] = STATE(2303), - [sym_atomic_type] = STATE(2303), - [sym_generic_type] = STATE(2303), - [sym_function_type] = STATE(2303), - [sym_identifier] = ACTIONS(493), + [sym__expression] = STATE(2830), + [sym__expression_without_blocks] = STATE(2347), + [sym__expression_with_blocks] = STATE(2347), + [sym_inc_expression] = STATE(2379), + [sym_dec_expression] = STATE(2379), + [sym_or_block_expression] = STATE(2379), + [sym_option_propagation_expression] = STATE(2379), + [sym_result_propagation_expression] = STATE(2379), + [sym_anon_struct_value_expression] = STATE(2378), + [sym_go_expression] = STATE(2379), + [sym_spawn_expression] = STATE(2379), + [sym_parenthesized_expression] = STATE(2379), + [sym_call_expression] = STATE(2379), + [sym_type_initializer] = STATE(2378), + [sym_function_literal] = STATE(2379), + [sym_reference_expression] = STATE(2930), + [sym_type_reference_expression] = STATE(3460), + [sym_unary_expression] = STATE(2379), + [sym_receive_expression] = STATE(2379), + [sym_binary_expression] = STATE(2379), + [sym_as_type_cast_expression] = STATE(2379), + [sym__max_group] = STATE(2379), + [sym_literal] = STATE(2392), + [sym_map_init_expression] = STATE(2378), + [sym_array_creation] = STATE(2379), + [sym_fixed_array_creation] = STATE(2379), + [sym_selector_expression] = STATE(2952), + [sym_index_expression] = STATE(2379), + [sym_slice_expression] = STATE(2379), + [sym_if_expression] = STATE(2378), + [sym_compile_time_if_expression] = STATE(2378), + [sym_is_expression] = STATE(2379), + [sym_in_expression] = STATE(2379), + [sym_enum_fetch] = STATE(2379), + [sym_match_expression] = STATE(2378), + [sym_select_expression] = STATE(2378), + [sym_lock_expression] = STATE(2378), + [sym_unsafe_expression] = STATE(2378), + [sym_sql_expression] = STATE(2378), + [sym_c_string_literal] = STATE(2401), + [sym_raw_string_literal] = STATE(2401), + [sym_interpreted_string_literal] = STATE(2401), + [sym_mutability_modifiers] = STATE(939), + [sym_plain_type] = STATE(4160), + [sym__plain_type_without_special] = STATE(2360), + [sym_anon_struct_type] = STATE(2362), + [sym_multi_return_type] = STATE(2360), + [sym_result_type] = STATE(2360), + [sym_option_type] = STATE(2360), + [sym_qualified_type] = STATE(3460), + [sym_fixed_array_type] = STATE(2362), + [sym_array_type] = STATE(2362), + [sym_pointer_type] = STATE(2362), + [sym_wrong_pointer_type] = STATE(2362), + [sym_map_type] = STATE(2362), + [sym_channel_type] = STATE(2362), + [sym_shared_type] = STATE(2362), + [sym_thread_type] = STATE(2362), + [sym_atomic_type] = STATE(2362), + [sym_generic_type] = STATE(2362), + [sym_function_type] = STATE(2362), + [sym_identifier] = ACTIONS(2477), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(501), - [anon_sym_LBRACE] = ACTIONS(2319), - [anon_sym_LPAREN] = ACTIONS(2321), - [anon_sym_fn] = ACTIONS(507), - [anon_sym_PLUS] = ACTIONS(2323), - [anon_sym_DASH] = ACTIONS(2323), - [anon_sym_STAR] = ACTIONS(2325), - [anon_sym_struct] = ACTIONS(513), + [anon_sym_DOT] = ACTIONS(1430), + [anon_sym_LBRACE] = ACTIONS(1432), + [anon_sym_LPAREN] = ACTIONS(1434), + [anon_sym_fn] = ACTIONS(1436), + [anon_sym_PLUS] = ACTIONS(1438), + [anon_sym_DASH] = ACTIONS(1438), + [anon_sym_STAR] = ACTIONS(1440), + [anon_sym_struct] = ACTIONS(1442), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(2327), - [anon_sym_go] = ACTIONS(519), - [anon_sym_spawn] = ACTIONS(521), - [anon_sym_json_DOTdecode] = ACTIONS(2329), - [anon_sym_LBRACK2] = ACTIONS(2331), - [anon_sym_TILDE] = ACTIONS(2323), - [anon_sym_CARET] = ACTIONS(2323), - [anon_sym_AMP] = ACTIONS(2333), - [anon_sym_LT_DASH] = ACTIONS(2335), - [sym_none] = ACTIONS(531), - [sym_true] = ACTIONS(531), - [sym_false] = ACTIONS(531), - [sym_nil] = ACTIONS(531), - [anon_sym_if] = ACTIONS(533), - [anon_sym_DOLLARif] = ACTIONS(535), - [anon_sym_match] = ACTIONS(537), - [anon_sym_select] = ACTIONS(539), - [anon_sym_lock] = ACTIONS(541), - [anon_sym_rlock] = ACTIONS(541), - [anon_sym_unsafe] = ACTIONS(543), - [anon_sym_sql] = ACTIONS(545), - [sym_int_literal] = ACTIONS(531), - [sym_float_literal] = ACTIONS(2337), - [sym_rune_literal] = ACTIONS(2337), - [sym_pseudo_compile_time_identifier] = ACTIONS(547), + [anon_sym_BANG] = ACTIONS(1444), + [anon_sym_go] = ACTIONS(1446), + [anon_sym_spawn] = ACTIONS(1448), + [anon_sym_json_DOTdecode] = ACTIONS(1450), + [anon_sym_LBRACK2] = ACTIONS(1452), + [anon_sym_TILDE] = ACTIONS(1438), + [anon_sym_CARET] = ACTIONS(1438), + [anon_sym_AMP] = ACTIONS(1454), + [anon_sym_LT_DASH] = ACTIONS(1456), + [sym_none] = ACTIONS(1458), + [sym_true] = ACTIONS(1458), + [sym_false] = ACTIONS(1458), + [sym_nil] = ACTIONS(1458), + [anon_sym_if] = ACTIONS(1833), + [anon_sym_DOLLARif] = ACTIONS(1462), + [anon_sym_match] = ACTIONS(1464), + [anon_sym_select] = ACTIONS(1466), + [anon_sym_lock] = ACTIONS(1468), + [anon_sym_rlock] = ACTIONS(1468), + [anon_sym_unsafe] = ACTIONS(1839), + [anon_sym_sql] = ACTIONS(1472), + [sym_int_literal] = ACTIONS(1458), + [sym_float_literal] = ACTIONS(1474), + [sym_rune_literal] = ACTIONS(1474), + [sym_pseudo_compile_time_identifier] = ACTIONS(1476), [anon_sym_shared] = ACTIONS(83), [anon_sym_map_LBRACK] = ACTIONS(85), [anon_sym_chan] = ACTIONS(87), [anon_sym_thread] = ACTIONS(89), [anon_sym_atomic] = ACTIONS(91), - [sym___double_quote] = ACTIONS(2339), - [sym___single_quote] = ACTIONS(2341), - [sym___c_double_quote] = ACTIONS(2343), - [sym___c_single_quote] = ACTIONS(2345), - [sym___r_double_quote] = ACTIONS(2347), - [sym___r_single_quote] = ACTIONS(2349), + [sym___double_quote] = ACTIONS(1480), + [sym___single_quote] = ACTIONS(1482), + [sym___c_double_quote] = ACTIONS(1484), + [sym___c_single_quote] = ACTIONS(1486), + [sym___r_double_quote] = ACTIONS(1488), + [sym___r_single_quote] = ACTIONS(1490), }, [792] = { [sym_line_comment] = STATE(792), [sym_block_comment] = STATE(792), - [sym__expression] = STATE(959), - [sym__expression_without_blocks] = STATE(1017), - [sym__expression_with_blocks] = STATE(1017), - [sym_inc_expression] = STATE(1018), - [sym_dec_expression] = STATE(1018), - [sym_or_block_expression] = STATE(1018), - [sym_option_propagation_expression] = STATE(1018), - [sym_result_propagation_expression] = STATE(1018), - [sym_anon_struct_value_expression] = STATE(993), - [sym_go_expression] = STATE(1018), - [sym_spawn_expression] = STATE(1018), - [sym_parenthesized_expression] = STATE(1018), - [sym_call_expression] = STATE(1018), - [sym_type_initializer] = STATE(993), - [sym_function_literal] = STATE(1018), - [sym_reference_expression] = STATE(1046), - [sym_type_reference_expression] = STATE(3541), - [sym_unary_expression] = STATE(1018), - [sym_receive_expression] = STATE(1018), - [sym_binary_expression] = STATE(1018), - [sym_as_type_cast_expression] = STATE(1018), - [sym__max_group] = STATE(1018), - [sym_literal] = STATE(1014), - [sym_map_init_expression] = STATE(993), - [sym_array_creation] = STATE(1018), - [sym_fixed_array_creation] = STATE(1018), - [sym_selector_expression] = STATE(1018), - [sym_index_expression] = STATE(1018), - [sym_slice_expression] = STATE(1018), - [sym_if_expression] = STATE(993), - [sym_compile_time_if_expression] = STATE(993), - [sym_is_expression] = STATE(1018), - [sym_in_expression] = STATE(1018), - [sym_enum_fetch] = STATE(1018), - [sym_match_expression] = STATE(993), - [sym_select_expression] = STATE(993), - [sym_lock_expression] = STATE(993), - [sym_unsafe_expression] = STATE(993), - [sym_sql_expression] = STATE(993), - [sym_c_string_literal] = STATE(1006), - [sym_raw_string_literal] = STATE(1006), - [sym_interpreted_string_literal] = STATE(1006), - [sym_mutability_modifiers] = STATE(691), - [sym_plain_type] = STATE(4299), - [sym__plain_type_without_special] = STATE(2302), - [sym_anon_struct_type] = STATE(2303), - [sym_multi_return_type] = STATE(2302), - [sym_result_type] = STATE(2302), - [sym_option_type] = STATE(2302), - [sym_qualified_type] = STATE(3541), - [sym_fixed_array_type] = STATE(2303), - [sym_array_type] = STATE(2303), - [sym_pointer_type] = STATE(2303), - [sym_wrong_pointer_type] = STATE(2303), - [sym_map_type] = STATE(2303), - [sym_channel_type] = STATE(2303), - [sym_shared_type] = STATE(2303), - [sym_thread_type] = STATE(2303), - [sym_atomic_type] = STATE(2303), - [sym_generic_type] = STATE(2303), - [sym_function_type] = STATE(2303), - [sym_identifier] = ACTIONS(493), + [sym__expression] = STATE(1646), + [sym__expression_without_blocks] = STATE(1799), + [sym__expression_with_blocks] = STATE(1799), + [sym_inc_expression] = STATE(1800), + [sym_dec_expression] = STATE(1800), + [sym_or_block_expression] = STATE(1800), + [sym_option_propagation_expression] = STATE(1800), + [sym_result_propagation_expression] = STATE(1800), + [sym_anon_struct_value_expression] = STATE(1801), + [sym_go_expression] = STATE(1800), + [sym_spawn_expression] = STATE(1800), + [sym_parenthesized_expression] = STATE(1800), + [sym_call_expression] = STATE(1800), + [sym_type_initializer] = STATE(1801), + [sym_function_literal] = STATE(1800), + [sym_reference_expression] = STATE(1844), + [sym_type_reference_expression] = STATE(3460), + [sym_unary_expression] = STATE(1800), + [sym_receive_expression] = STATE(1800), + [sym_binary_expression] = STATE(1800), + [sym_as_type_cast_expression] = STATE(1800), + [sym__max_group] = STATE(1800), + [sym_literal] = STATE(1797), + [sym_map_init_expression] = STATE(1801), + [sym_array_creation] = STATE(1800), + [sym_fixed_array_creation] = STATE(1800), + [sym_selector_expression] = STATE(1800), + [sym_index_expression] = STATE(1800), + [sym_slice_expression] = STATE(1800), + [sym_if_expression] = STATE(1801), + [sym_compile_time_if_expression] = STATE(1801), + [sym_is_expression] = STATE(1800), + [sym_in_expression] = STATE(1800), + [sym_enum_fetch] = STATE(1800), + [sym_match_expression] = STATE(1801), + [sym_select_expression] = STATE(1801), + [sym_lock_expression] = STATE(1801), + [sym_unsafe_expression] = STATE(1801), + [sym_sql_expression] = STATE(1801), + [sym_c_string_literal] = STATE(1792), + [sym_raw_string_literal] = STATE(1792), + [sym_interpreted_string_literal] = STATE(1792), + [sym_mutability_modifiers] = STATE(868), + [sym_plain_type] = STATE(4300), + [sym__plain_type_without_special] = STATE(2360), + [sym_anon_struct_type] = STATE(2362), + [sym_multi_return_type] = STATE(2360), + [sym_result_type] = STATE(2360), + [sym_option_type] = STATE(2360), + [sym_qualified_type] = STATE(3460), + [sym_fixed_array_type] = STATE(2362), + [sym_array_type] = STATE(2362), + [sym_pointer_type] = STATE(2362), + [sym_wrong_pointer_type] = STATE(2362), + [sym_map_type] = STATE(2362), + [sym_channel_type] = STATE(2362), + [sym_shared_type] = STATE(2362), + [sym_thread_type] = STATE(2362), + [sym_atomic_type] = STATE(2362), + [sym_generic_type] = STATE(2362), + [sym_function_type] = STATE(2362), + [sym_identifier] = ACTIONS(3198), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(501), - [anon_sym_LBRACE] = ACTIONS(2319), - [anon_sym_LPAREN] = ACTIONS(2321), - [anon_sym_fn] = ACTIONS(507), - [anon_sym_PLUS] = ACTIONS(2323), - [anon_sym_DASH] = ACTIONS(2323), - [anon_sym_STAR] = ACTIONS(2325), - [anon_sym_struct] = ACTIONS(513), + [anon_sym_DOT] = ACTIONS(3200), + [anon_sym_LBRACE] = ACTIONS(3202), + [anon_sym_LPAREN] = ACTIONS(3204), + [anon_sym_fn] = ACTIONS(3206), + [anon_sym_PLUS] = ACTIONS(3208), + [anon_sym_DASH] = ACTIONS(3208), + [anon_sym_STAR] = ACTIONS(3210), + [anon_sym_struct] = ACTIONS(3212), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(2327), - [anon_sym_go] = ACTIONS(519), - [anon_sym_spawn] = ACTIONS(521), - [anon_sym_json_DOTdecode] = ACTIONS(2329), - [anon_sym_LBRACK2] = ACTIONS(2331), - [anon_sym_TILDE] = ACTIONS(2323), - [anon_sym_CARET] = ACTIONS(2323), - [anon_sym_AMP] = ACTIONS(2333), - [anon_sym_LT_DASH] = ACTIONS(2335), - [sym_none] = ACTIONS(531), - [sym_true] = ACTIONS(531), - [sym_false] = ACTIONS(531), - [sym_nil] = ACTIONS(531), - [anon_sym_if] = ACTIONS(533), - [anon_sym_DOLLARif] = ACTIONS(535), - [anon_sym_match] = ACTIONS(537), - [anon_sym_select] = ACTIONS(539), - [anon_sym_lock] = ACTIONS(541), - [anon_sym_rlock] = ACTIONS(541), - [anon_sym_unsafe] = ACTIONS(543), - [anon_sym_sql] = ACTIONS(545), - [sym_int_literal] = ACTIONS(531), - [sym_float_literal] = ACTIONS(2337), - [sym_rune_literal] = ACTIONS(2337), - [sym_pseudo_compile_time_identifier] = ACTIONS(547), + [anon_sym_BANG] = ACTIONS(3214), + [anon_sym_go] = ACTIONS(3216), + [anon_sym_spawn] = ACTIONS(3218), + [anon_sym_json_DOTdecode] = ACTIONS(3220), + [anon_sym_LBRACK2] = ACTIONS(3222), + [anon_sym_TILDE] = ACTIONS(3208), + [anon_sym_CARET] = ACTIONS(3208), + [anon_sym_AMP] = ACTIONS(3224), + [anon_sym_LT_DASH] = ACTIONS(3226), + [sym_none] = ACTIONS(3228), + [sym_true] = ACTIONS(3228), + [sym_false] = ACTIONS(3228), + [sym_nil] = ACTIONS(3228), + [anon_sym_if] = ACTIONS(3230), + [anon_sym_DOLLARif] = ACTIONS(3232), + [anon_sym_match] = ACTIONS(3234), + [anon_sym_select] = ACTIONS(3236), + [anon_sym_lock] = ACTIONS(3238), + [anon_sym_rlock] = ACTIONS(3238), + [anon_sym_unsafe] = ACTIONS(3240), + [anon_sym_sql] = ACTIONS(3242), + [sym_int_literal] = ACTIONS(3228), + [sym_float_literal] = ACTIONS(3244), + [sym_rune_literal] = ACTIONS(3244), + [sym_pseudo_compile_time_identifier] = ACTIONS(3246), [anon_sym_shared] = ACTIONS(83), [anon_sym_map_LBRACK] = ACTIONS(85), [anon_sym_chan] = ACTIONS(87), [anon_sym_thread] = ACTIONS(89), [anon_sym_atomic] = ACTIONS(91), - [sym___double_quote] = ACTIONS(2339), - [sym___single_quote] = ACTIONS(2341), - [sym___c_double_quote] = ACTIONS(2343), - [sym___c_single_quote] = ACTIONS(2345), - [sym___r_double_quote] = ACTIONS(2347), - [sym___r_single_quote] = ACTIONS(2349), + [sym___double_quote] = ACTIONS(3248), + [sym___single_quote] = ACTIONS(3250), + [sym___c_double_quote] = ACTIONS(3252), + [sym___c_single_quote] = ACTIONS(3254), + [sym___r_double_quote] = ACTIONS(3256), + [sym___r_single_quote] = ACTIONS(3258), }, [793] = { [sym_line_comment] = STATE(793), [sym_block_comment] = STATE(793), - [sym__expression] = STATE(2831), - [sym__expression_without_blocks] = STATE(2300), - [sym__expression_with_blocks] = STATE(2300), - [sym_inc_expression] = STATE(2307), - [sym_dec_expression] = STATE(2307), - [sym_or_block_expression] = STATE(2307), - [sym_option_propagation_expression] = STATE(2307), - [sym_result_propagation_expression] = STATE(2307), - [sym_anon_struct_value_expression] = STATE(2380), - [sym_go_expression] = STATE(2307), - [sym_spawn_expression] = STATE(2307), - [sym_parenthesized_expression] = STATE(2307), - [sym_call_expression] = STATE(2307), - [sym_type_initializer] = STATE(2380), - [sym_function_literal] = STATE(2307), - [sym_reference_expression] = STATE(2929), - [sym_type_reference_expression] = STATE(3541), - [sym_unary_expression] = STATE(2307), - [sym_receive_expression] = STATE(2307), - [sym_binary_expression] = STATE(2307), - [sym_as_type_cast_expression] = STATE(2307), - [sym__max_group] = STATE(2307), - [sym_literal] = STATE(2292), - [sym_map_init_expression] = STATE(2380), - [sym_array_creation] = STATE(2307), - [sym_fixed_array_creation] = STATE(2307), - [sym_selector_expression] = STATE(2933), - [sym_index_expression] = STATE(2307), - [sym_slice_expression] = STATE(2307), - [sym_if_expression] = STATE(2380), - [sym_compile_time_if_expression] = STATE(2380), - [sym_is_expression] = STATE(2307), - [sym_in_expression] = STATE(2307), - [sym_enum_fetch] = STATE(2307), - [sym_match_expression] = STATE(2380), - [sym_select_expression] = STATE(2380), - [sym_lock_expression] = STATE(2380), - [sym_unsafe_expression] = STATE(2380), - [sym_sql_expression] = STATE(2380), - [sym_c_string_literal] = STATE(2308), - [sym_raw_string_literal] = STATE(2308), - [sym_interpreted_string_literal] = STATE(2308), + [sym__expression] = STATE(2805), + [sym__expression_without_blocks] = STATE(2347), + [sym__expression_with_blocks] = STATE(2347), + [sym_inc_expression] = STATE(2379), + [sym_dec_expression] = STATE(2379), + [sym_or_block_expression] = STATE(2379), + [sym_option_propagation_expression] = STATE(2379), + [sym_result_propagation_expression] = STATE(2379), + [sym_anon_struct_value_expression] = STATE(2378), + [sym_go_expression] = STATE(2379), + [sym_spawn_expression] = STATE(2379), + [sym_parenthesized_expression] = STATE(2379), + [sym_call_expression] = STATE(2379), + [sym_type_initializer] = STATE(2378), + [sym_function_literal] = STATE(2379), + [sym_reference_expression] = STATE(2377), + [sym_type_reference_expression] = STATE(3460), + [sym_unary_expression] = STATE(2379), + [sym_receive_expression] = STATE(2379), + [sym_binary_expression] = STATE(2379), + [sym_as_type_cast_expression] = STATE(2379), + [sym__max_group] = STATE(2379), + [sym_literal] = STATE(2392), + [sym_map_init_expression] = STATE(2378), + [sym_array_creation] = STATE(2379), + [sym_fixed_array_creation] = STATE(2379), + [sym_selector_expression] = STATE(2379), + [sym_index_expression] = STATE(2379), + [sym_slice_expression] = STATE(2379), + [sym_if_expression] = STATE(2378), + [sym_compile_time_if_expression] = STATE(2378), + [sym_is_expression] = STATE(2379), + [sym_in_expression] = STATE(2379), + [sym_enum_fetch] = STATE(2379), + [sym_match_expression] = STATE(2378), + [sym_select_expression] = STATE(2378), + [sym_lock_expression] = STATE(2378), + [sym_unsafe_expression] = STATE(2378), + [sym_sql_expression] = STATE(2378), + [sym_c_string_literal] = STATE(2401), + [sym_raw_string_literal] = STATE(2401), + [sym_interpreted_string_literal] = STATE(2401), [sym_mutability_modifiers] = STATE(939), - [sym_plain_type] = STATE(4297), - [sym__plain_type_without_special] = STATE(2302), - [sym_anon_struct_type] = STATE(2303), - [sym_multi_return_type] = STATE(2302), - [sym_result_type] = STATE(2302), - [sym_option_type] = STATE(2302), - [sym_qualified_type] = STATE(3541), - [sym_fixed_array_type] = STATE(2303), - [sym_array_type] = STATE(2303), - [sym_pointer_type] = STATE(2303), - [sym_wrong_pointer_type] = STATE(2303), - [sym_map_type] = STATE(2303), - [sym_channel_type] = STATE(2303), - [sym_shared_type] = STATE(2303), - [sym_thread_type] = STATE(2303), - [sym_atomic_type] = STATE(2303), - [sym_generic_type] = STATE(2303), - [sym_function_type] = STATE(2303), - [sym_identifier] = ACTIONS(2189), + [sym_plain_type] = STATE(3564), + [sym__plain_type_without_special] = STATE(2360), + [sym_anon_struct_type] = STATE(2362), + [sym_multi_return_type] = STATE(2360), + [sym_result_type] = STATE(2360), + [sym_option_type] = STATE(2360), + [sym_qualified_type] = STATE(3460), + [sym_fixed_array_type] = STATE(2362), + [sym_array_type] = STATE(2362), + [sym_pointer_type] = STATE(2362), + [sym_wrong_pointer_type] = STATE(2362), + [sym_map_type] = STATE(2362), + [sym_channel_type] = STATE(2362), + [sym_shared_type] = STATE(2362), + [sym_thread_type] = STATE(2362), + [sym_atomic_type] = STATE(2362), + [sym_generic_type] = STATE(2362), + [sym_function_type] = STATE(2362), + [sym_identifier] = ACTIONS(1428), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1428), - [anon_sym_LBRACE] = ACTIONS(1430), - [anon_sym_LPAREN] = ACTIONS(1432), - [anon_sym_fn] = ACTIONS(1434), - [anon_sym_PLUS] = ACTIONS(1436), - [anon_sym_DASH] = ACTIONS(1436), - [anon_sym_STAR] = ACTIONS(1438), - [anon_sym_struct] = ACTIONS(1440), + [anon_sym_DOT] = ACTIONS(1430), + [anon_sym_LBRACE] = ACTIONS(1432), + [anon_sym_LPAREN] = ACTIONS(1434), + [anon_sym_fn] = ACTIONS(1436), + [anon_sym_PLUS] = ACTIONS(2271), + [anon_sym_DASH] = ACTIONS(2271), + [anon_sym_STAR] = ACTIONS(2273), + [anon_sym_struct] = ACTIONS(1442), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(1442), - [anon_sym_go] = ACTIONS(1444), - [anon_sym_spawn] = ACTIONS(1446), - [anon_sym_json_DOTdecode] = ACTIONS(1448), - [anon_sym_LBRACK2] = ACTIONS(1450), - [anon_sym_TILDE] = ACTIONS(1436), - [anon_sym_CARET] = ACTIONS(1436), - [anon_sym_AMP] = ACTIONS(1452), - [anon_sym_LT_DASH] = ACTIONS(1454), - [sym_none] = ACTIONS(1456), - [sym_true] = ACTIONS(1456), - [sym_false] = ACTIONS(1456), - [sym_nil] = ACTIONS(1456), - [anon_sym_if] = ACTIONS(1827), - [anon_sym_DOLLARif] = ACTIONS(1460), - [anon_sym_match] = ACTIONS(1462), - [anon_sym_select] = ACTIONS(1464), - [anon_sym_lock] = ACTIONS(1466), - [anon_sym_rlock] = ACTIONS(1466), - [anon_sym_unsafe] = ACTIONS(1833), - [anon_sym_sql] = ACTIONS(1470), - [sym_int_literal] = ACTIONS(1456), - [sym_float_literal] = ACTIONS(1472), - [sym_rune_literal] = ACTIONS(1472), - [sym_pseudo_compile_time_identifier] = ACTIONS(1474), + [anon_sym_BANG] = ACTIONS(2275), + [anon_sym_go] = ACTIONS(2277), + [anon_sym_spawn] = ACTIONS(2279), + [anon_sym_json_DOTdecode] = ACTIONS(1450), + [anon_sym_LBRACK2] = ACTIONS(1452), + [anon_sym_TILDE] = ACTIONS(2271), + [anon_sym_CARET] = ACTIONS(2271), + [anon_sym_AMP] = ACTIONS(2281), + [anon_sym_LT_DASH] = ACTIONS(2283), + [sym_none] = ACTIONS(1458), + [sym_true] = ACTIONS(1458), + [sym_false] = ACTIONS(1458), + [sym_nil] = ACTIONS(1458), + [anon_sym_if] = ACTIONS(1833), + [anon_sym_DOLLARif] = ACTIONS(1462), + [anon_sym_match] = ACTIONS(1464), + [anon_sym_select] = ACTIONS(1466), + [anon_sym_lock] = ACTIONS(1468), + [anon_sym_rlock] = ACTIONS(1468), + [anon_sym_unsafe] = ACTIONS(1839), + [anon_sym_sql] = ACTIONS(1472), + [sym_int_literal] = ACTIONS(1458), + [sym_float_literal] = ACTIONS(1474), + [sym_rune_literal] = ACTIONS(1474), + [sym_pseudo_compile_time_identifier] = ACTIONS(1476), [anon_sym_shared] = ACTIONS(83), [anon_sym_map_LBRACK] = ACTIONS(85), [anon_sym_chan] = ACTIONS(87), [anon_sym_thread] = ACTIONS(89), [anon_sym_atomic] = ACTIONS(91), - [sym___double_quote] = ACTIONS(1478), - [sym___single_quote] = ACTIONS(1480), - [sym___c_double_quote] = ACTIONS(1482), - [sym___c_single_quote] = ACTIONS(1484), - [sym___r_double_quote] = ACTIONS(1486), - [sym___r_single_quote] = ACTIONS(1488), + [sym___double_quote] = ACTIONS(1480), + [sym___single_quote] = ACTIONS(1482), + [sym___c_double_quote] = ACTIONS(1484), + [sym___c_single_quote] = ACTIONS(1486), + [sym___r_double_quote] = ACTIONS(1488), + [sym___r_single_quote] = ACTIONS(1490), }, [794] = { [sym_line_comment] = STATE(794), [sym_block_comment] = STATE(794), - [sym__expression] = STATE(2729), - [sym__expression_without_blocks] = STATE(2300), - [sym__expression_with_blocks] = STATE(2300), - [sym_inc_expression] = STATE(2307), - [sym_dec_expression] = STATE(2307), - [sym_or_block_expression] = STATE(2307), - [sym_option_propagation_expression] = STATE(2307), - [sym_result_propagation_expression] = STATE(2307), - [sym_anon_struct_value_expression] = STATE(2380), - [sym_go_expression] = STATE(2307), - [sym_spawn_expression] = STATE(2307), - [sym_parenthesized_expression] = STATE(2307), - [sym_call_expression] = STATE(2307), - [sym_type_initializer] = STATE(2380), - [sym_function_literal] = STATE(2307), - [sym_reference_expression] = STATE(2311), - [sym_type_reference_expression] = STATE(3541), - [sym_unary_expression] = STATE(2307), - [sym_receive_expression] = STATE(2307), - [sym_binary_expression] = STATE(2307), - [sym_as_type_cast_expression] = STATE(2307), - [sym__max_group] = STATE(2307), - [sym_literal] = STATE(2292), - [sym_map_init_expression] = STATE(2380), - [sym_array_creation] = STATE(2307), - [sym_fixed_array_creation] = STATE(2307), - [sym_selector_expression] = STATE(2307), - [sym_index_expression] = STATE(2307), - [sym_slice_expression] = STATE(2307), - [sym_if_expression] = STATE(2380), - [sym_compile_time_if_expression] = STATE(2380), - [sym_is_expression] = STATE(2307), - [sym_in_expression] = STATE(2307), - [sym_enum_fetch] = STATE(2307), - [sym_match_expression] = STATE(2380), - [sym_select_expression] = STATE(2380), - [sym_lock_expression] = STATE(2380), - [sym_unsafe_expression] = STATE(2380), - [sym_sql_expression] = STATE(2380), - [sym_c_string_literal] = STATE(2308), - [sym_raw_string_literal] = STATE(2308), - [sym_interpreted_string_literal] = STATE(2308), - [sym_mutability_modifiers] = STATE(939), - [sym_plain_type] = STATE(3552), - [sym__plain_type_without_special] = STATE(2302), - [sym_anon_struct_type] = STATE(2303), - [sym_multi_return_type] = STATE(2302), - [sym_result_type] = STATE(2302), - [sym_option_type] = STATE(2302), - [sym_qualified_type] = STATE(3541), - [sym_fixed_array_type] = STATE(2303), - [sym_array_type] = STATE(2303), - [sym_pointer_type] = STATE(2303), - [sym_wrong_pointer_type] = STATE(2303), - [sym_map_type] = STATE(2303), - [sym_channel_type] = STATE(2303), - [sym_shared_type] = STATE(2303), - [sym_thread_type] = STATE(2303), - [sym_atomic_type] = STATE(2303), - [sym_generic_type] = STATE(2303), - [sym_function_type] = STATE(2303), - [sym_identifier] = ACTIONS(1426), + [sym__expression] = STATE(1645), + [sym__expression_without_blocks] = STATE(1799), + [sym__expression_with_blocks] = STATE(1799), + [sym_inc_expression] = STATE(1800), + [sym_dec_expression] = STATE(1800), + [sym_or_block_expression] = STATE(1800), + [sym_option_propagation_expression] = STATE(1800), + [sym_result_propagation_expression] = STATE(1800), + [sym_anon_struct_value_expression] = STATE(1801), + [sym_go_expression] = STATE(1800), + [sym_spawn_expression] = STATE(1800), + [sym_parenthesized_expression] = STATE(1800), + [sym_call_expression] = STATE(1800), + [sym_type_initializer] = STATE(1801), + [sym_function_literal] = STATE(1800), + [sym_reference_expression] = STATE(1844), + [sym_type_reference_expression] = STATE(3460), + [sym_unary_expression] = STATE(1800), + [sym_receive_expression] = STATE(1800), + [sym_binary_expression] = STATE(1800), + [sym_as_type_cast_expression] = STATE(1800), + [sym__max_group] = STATE(1800), + [sym_literal] = STATE(1797), + [sym_map_init_expression] = STATE(1801), + [sym_array_creation] = STATE(1800), + [sym_fixed_array_creation] = STATE(1800), + [sym_selector_expression] = STATE(1800), + [sym_index_expression] = STATE(1800), + [sym_slice_expression] = STATE(1800), + [sym_if_expression] = STATE(1801), + [sym_compile_time_if_expression] = STATE(1801), + [sym_is_expression] = STATE(1800), + [sym_in_expression] = STATE(1800), + [sym_enum_fetch] = STATE(1800), + [sym_match_expression] = STATE(1801), + [sym_select_expression] = STATE(1801), + [sym_lock_expression] = STATE(1801), + [sym_unsafe_expression] = STATE(1801), + [sym_sql_expression] = STATE(1801), + [sym_c_string_literal] = STATE(1792), + [sym_raw_string_literal] = STATE(1792), + [sym_interpreted_string_literal] = STATE(1792), + [sym_mutability_modifiers] = STATE(868), + [sym_plain_type] = STATE(4300), + [sym__plain_type_without_special] = STATE(2360), + [sym_anon_struct_type] = STATE(2362), + [sym_multi_return_type] = STATE(2360), + [sym_result_type] = STATE(2360), + [sym_option_type] = STATE(2360), + [sym_qualified_type] = STATE(3460), + [sym_fixed_array_type] = STATE(2362), + [sym_array_type] = STATE(2362), + [sym_pointer_type] = STATE(2362), + [sym_wrong_pointer_type] = STATE(2362), + [sym_map_type] = STATE(2362), + [sym_channel_type] = STATE(2362), + [sym_shared_type] = STATE(2362), + [sym_thread_type] = STATE(2362), + [sym_atomic_type] = STATE(2362), + [sym_generic_type] = STATE(2362), + [sym_function_type] = STATE(2362), + [sym_identifier] = ACTIONS(3198), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1428), - [anon_sym_LBRACE] = ACTIONS(1430), - [anon_sym_LPAREN] = ACTIONS(1432), - [anon_sym_fn] = ACTIONS(1434), - [anon_sym_PLUS] = ACTIONS(2491), - [anon_sym_DASH] = ACTIONS(2491), - [anon_sym_STAR] = ACTIONS(2493), - [anon_sym_struct] = ACTIONS(1440), + [anon_sym_DOT] = ACTIONS(3200), + [anon_sym_LBRACE] = ACTIONS(3202), + [anon_sym_LPAREN] = ACTIONS(3204), + [anon_sym_fn] = ACTIONS(3206), + [anon_sym_PLUS] = ACTIONS(3208), + [anon_sym_DASH] = ACTIONS(3208), + [anon_sym_STAR] = ACTIONS(3210), + [anon_sym_struct] = ACTIONS(3212), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(2495), - [anon_sym_go] = ACTIONS(2497), - [anon_sym_spawn] = ACTIONS(2499), - [anon_sym_json_DOTdecode] = ACTIONS(1448), - [anon_sym_LBRACK2] = ACTIONS(1450), - [anon_sym_TILDE] = ACTIONS(2491), - [anon_sym_CARET] = ACTIONS(2491), - [anon_sym_AMP] = ACTIONS(2501), - [anon_sym_LT_DASH] = ACTIONS(2503), - [sym_none] = ACTIONS(1456), - [sym_true] = ACTIONS(1456), - [sym_false] = ACTIONS(1456), - [sym_nil] = ACTIONS(1456), - [anon_sym_if] = ACTIONS(1827), - [anon_sym_DOLLARif] = ACTIONS(1460), - [anon_sym_match] = ACTIONS(1462), - [anon_sym_select] = ACTIONS(1464), - [anon_sym_lock] = ACTIONS(1466), - [anon_sym_rlock] = ACTIONS(1466), - [anon_sym_unsafe] = ACTIONS(1833), - [anon_sym_sql] = ACTIONS(1470), - [sym_int_literal] = ACTIONS(1456), - [sym_float_literal] = ACTIONS(1472), - [sym_rune_literal] = ACTIONS(1472), - [sym_pseudo_compile_time_identifier] = ACTIONS(1474), + [anon_sym_BANG] = ACTIONS(3214), + [anon_sym_go] = ACTIONS(3216), + [anon_sym_spawn] = ACTIONS(3218), + [anon_sym_json_DOTdecode] = ACTIONS(3220), + [anon_sym_LBRACK2] = ACTIONS(3222), + [anon_sym_TILDE] = ACTIONS(3208), + [anon_sym_CARET] = ACTIONS(3208), + [anon_sym_AMP] = ACTIONS(3224), + [anon_sym_LT_DASH] = ACTIONS(3226), + [sym_none] = ACTIONS(3228), + [sym_true] = ACTIONS(3228), + [sym_false] = ACTIONS(3228), + [sym_nil] = ACTIONS(3228), + [anon_sym_if] = ACTIONS(3230), + [anon_sym_DOLLARif] = ACTIONS(3232), + [anon_sym_match] = ACTIONS(3234), + [anon_sym_select] = ACTIONS(3236), + [anon_sym_lock] = ACTIONS(3238), + [anon_sym_rlock] = ACTIONS(3238), + [anon_sym_unsafe] = ACTIONS(3240), + [anon_sym_sql] = ACTIONS(3242), + [sym_int_literal] = ACTIONS(3228), + [sym_float_literal] = ACTIONS(3244), + [sym_rune_literal] = ACTIONS(3244), + [sym_pseudo_compile_time_identifier] = ACTIONS(3246), [anon_sym_shared] = ACTIONS(83), [anon_sym_map_LBRACK] = ACTIONS(85), [anon_sym_chan] = ACTIONS(87), [anon_sym_thread] = ACTIONS(89), [anon_sym_atomic] = ACTIONS(91), - [sym___double_quote] = ACTIONS(1478), - [sym___single_quote] = ACTIONS(1480), - [sym___c_double_quote] = ACTIONS(1482), - [sym___c_single_quote] = ACTIONS(1484), - [sym___r_double_quote] = ACTIONS(1486), - [sym___r_single_quote] = ACTIONS(1488), + [sym___double_quote] = ACTIONS(3248), + [sym___single_quote] = ACTIONS(3250), + [sym___c_double_quote] = ACTIONS(3252), + [sym___c_single_quote] = ACTIONS(3254), + [sym___r_double_quote] = ACTIONS(3256), + [sym___r_single_quote] = ACTIONS(3258), }, [795] = { [sym_line_comment] = STATE(795), [sym_block_comment] = STATE(795), - [sym__expression] = STATE(955), - [sym__expression_without_blocks] = STATE(1017), - [sym__expression_with_blocks] = STATE(1017), - [sym_inc_expression] = STATE(1018), - [sym_dec_expression] = STATE(1018), - [sym_or_block_expression] = STATE(1018), - [sym_option_propagation_expression] = STATE(1018), - [sym_result_propagation_expression] = STATE(1018), - [sym_anon_struct_value_expression] = STATE(993), - [sym_go_expression] = STATE(1018), - [sym_spawn_expression] = STATE(1018), - [sym_parenthesized_expression] = STATE(1018), - [sym_call_expression] = STATE(1018), - [sym_type_initializer] = STATE(993), - [sym_function_literal] = STATE(1018), - [sym_reference_expression] = STATE(1046), - [sym_type_reference_expression] = STATE(3541), - [sym_unary_expression] = STATE(1018), - [sym_receive_expression] = STATE(1018), - [sym_binary_expression] = STATE(1018), - [sym_as_type_cast_expression] = STATE(1018), - [sym__max_group] = STATE(1018), - [sym_literal] = STATE(1014), - [sym_map_init_expression] = STATE(993), - [sym_array_creation] = STATE(1018), - [sym_fixed_array_creation] = STATE(1018), - [sym_selector_expression] = STATE(1018), - [sym_index_expression] = STATE(1018), - [sym_slice_expression] = STATE(1018), - [sym_if_expression] = STATE(993), - [sym_compile_time_if_expression] = STATE(993), - [sym_is_expression] = STATE(1018), - [sym_in_expression] = STATE(1018), - [sym_enum_fetch] = STATE(1018), - [sym_match_expression] = STATE(993), - [sym_select_expression] = STATE(993), - [sym_lock_expression] = STATE(993), - [sym_unsafe_expression] = STATE(993), - [sym_sql_expression] = STATE(993), - [sym_c_string_literal] = STATE(1006), - [sym_raw_string_literal] = STATE(1006), - [sym_interpreted_string_literal] = STATE(1006), - [sym_mutability_modifiers] = STATE(691), - [sym_plain_type] = STATE(4296), - [sym__plain_type_without_special] = STATE(2302), - [sym_anon_struct_type] = STATE(2303), - [sym_multi_return_type] = STATE(2302), - [sym_result_type] = STATE(2302), - [sym_option_type] = STATE(2302), - [sym_qualified_type] = STATE(3541), - [sym_fixed_array_type] = STATE(2303), - [sym_array_type] = STATE(2303), - [sym_pointer_type] = STATE(2303), - [sym_wrong_pointer_type] = STATE(2303), - [sym_map_type] = STATE(2303), - [sym_channel_type] = STATE(2303), - [sym_shared_type] = STATE(2303), - [sym_thread_type] = STATE(2303), - [sym_atomic_type] = STATE(2303), - [sym_generic_type] = STATE(2303), - [sym_function_type] = STATE(2303), - [sym_identifier] = ACTIONS(493), + [sym__expression] = STATE(2579), + [sym__expression_without_blocks] = STATE(2347), + [sym__expression_with_blocks] = STATE(2347), + [sym_inc_expression] = STATE(2379), + [sym_dec_expression] = STATE(2379), + [sym_or_block_expression] = STATE(2379), + [sym_option_propagation_expression] = STATE(2379), + [sym_result_propagation_expression] = STATE(2379), + [sym_anon_struct_value_expression] = STATE(2378), + [sym_go_expression] = STATE(2379), + [sym_spawn_expression] = STATE(2379), + [sym_parenthesized_expression] = STATE(2379), + [sym_call_expression] = STATE(2379), + [sym_type_initializer] = STATE(2378), + [sym_function_literal] = STATE(2379), + [sym_reference_expression] = STATE(2377), + [sym_type_reference_expression] = STATE(3460), + [sym_unary_expression] = STATE(2379), + [sym_receive_expression] = STATE(2379), + [sym_binary_expression] = STATE(2379), + [sym_as_type_cast_expression] = STATE(2379), + [sym__max_group] = STATE(2379), + [sym_literal] = STATE(2392), + [sym_map_init_expression] = STATE(2378), + [sym_array_creation] = STATE(2379), + [sym_fixed_array_creation] = STATE(2379), + [sym_selector_expression] = STATE(2379), + [sym_index_expression] = STATE(2379), + [sym_slice_expression] = STATE(2379), + [sym_if_expression] = STATE(2378), + [sym_compile_time_if_expression] = STATE(2378), + [sym_is_expression] = STATE(2379), + [sym_in_expression] = STATE(2379), + [sym_enum_fetch] = STATE(2379), + [sym_match_expression] = STATE(2378), + [sym_select_expression] = STATE(2378), + [sym_lock_expression] = STATE(2378), + [sym_unsafe_expression] = STATE(2378), + [sym_sql_expression] = STATE(2378), + [sym_c_string_literal] = STATE(2401), + [sym_raw_string_literal] = STATE(2401), + [sym_interpreted_string_literal] = STATE(2401), + [sym_mutability_modifiers] = STATE(939), + [sym_plain_type] = STATE(4160), + [sym__plain_type_without_special] = STATE(2360), + [sym_anon_struct_type] = STATE(2362), + [sym_multi_return_type] = STATE(2360), + [sym_result_type] = STATE(2360), + [sym_option_type] = STATE(2360), + [sym_qualified_type] = STATE(3460), + [sym_fixed_array_type] = STATE(2362), + [sym_array_type] = STATE(2362), + [sym_pointer_type] = STATE(2362), + [sym_wrong_pointer_type] = STATE(2362), + [sym_map_type] = STATE(2362), + [sym_channel_type] = STATE(2362), + [sym_shared_type] = STATE(2362), + [sym_thread_type] = STATE(2362), + [sym_atomic_type] = STATE(2362), + [sym_generic_type] = STATE(2362), + [sym_function_type] = STATE(2362), + [sym_identifier] = ACTIONS(1815), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(501), - [anon_sym_LBRACE] = ACTIONS(2319), - [anon_sym_LPAREN] = ACTIONS(2321), - [anon_sym_fn] = ACTIONS(507), - [anon_sym_PLUS] = ACTIONS(2323), - [anon_sym_DASH] = ACTIONS(2323), - [anon_sym_STAR] = ACTIONS(2325), - [anon_sym_struct] = ACTIONS(513), + [anon_sym_DOT] = ACTIONS(1430), + [anon_sym_LBRACE] = ACTIONS(1432), + [anon_sym_LPAREN] = ACTIONS(1434), + [anon_sym_fn] = ACTIONS(1436), + [anon_sym_PLUS] = ACTIONS(3090), + [anon_sym_DASH] = ACTIONS(3090), + [anon_sym_STAR] = ACTIONS(3092), + [anon_sym_struct] = ACTIONS(1442), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(2327), - [anon_sym_go] = ACTIONS(519), - [anon_sym_spawn] = ACTIONS(521), - [anon_sym_json_DOTdecode] = ACTIONS(2329), - [anon_sym_LBRACK2] = ACTIONS(2331), - [anon_sym_TILDE] = ACTIONS(2323), - [anon_sym_CARET] = ACTIONS(2323), - [anon_sym_AMP] = ACTIONS(2333), - [anon_sym_LT_DASH] = ACTIONS(2335), - [sym_none] = ACTIONS(531), - [sym_true] = ACTIONS(531), - [sym_false] = ACTIONS(531), - [sym_nil] = ACTIONS(531), - [anon_sym_if] = ACTIONS(533), - [anon_sym_DOLLARif] = ACTIONS(535), - [anon_sym_match] = ACTIONS(537), - [anon_sym_select] = ACTIONS(539), - [anon_sym_lock] = ACTIONS(541), - [anon_sym_rlock] = ACTIONS(541), - [anon_sym_unsafe] = ACTIONS(543), - [anon_sym_sql] = ACTIONS(545), - [sym_int_literal] = ACTIONS(531), - [sym_float_literal] = ACTIONS(2337), - [sym_rune_literal] = ACTIONS(2337), - [sym_pseudo_compile_time_identifier] = ACTIONS(547), + [anon_sym_BANG] = ACTIONS(3094), + [anon_sym_go] = ACTIONS(3096), + [anon_sym_spawn] = ACTIONS(3098), + [anon_sym_json_DOTdecode] = ACTIONS(1450), + [anon_sym_LBRACK2] = ACTIONS(1827), + [anon_sym_TILDE] = ACTIONS(3090), + [anon_sym_CARET] = ACTIONS(3090), + [anon_sym_AMP] = ACTIONS(3100), + [anon_sym_LT_DASH] = ACTIONS(3102), + [sym_none] = ACTIONS(1458), + [sym_true] = ACTIONS(1458), + [sym_false] = ACTIONS(1458), + [sym_nil] = ACTIONS(1458), + [anon_sym_if] = ACTIONS(1833), + [anon_sym_DOLLARif] = ACTIONS(1462), + [anon_sym_match] = ACTIONS(1464), + [anon_sym_select] = ACTIONS(3104), + [anon_sym_lock] = ACTIONS(3106), + [anon_sym_rlock] = ACTIONS(3106), + [anon_sym_unsafe] = ACTIONS(1839), + [anon_sym_sql] = ACTIONS(1472), + [sym_int_literal] = ACTIONS(1458), + [sym_float_literal] = ACTIONS(1474), + [sym_rune_literal] = ACTIONS(1474), + [sym_pseudo_compile_time_identifier] = ACTIONS(1476), [anon_sym_shared] = ACTIONS(83), [anon_sym_map_LBRACK] = ACTIONS(85), [anon_sym_chan] = ACTIONS(87), [anon_sym_thread] = ACTIONS(89), [anon_sym_atomic] = ACTIONS(91), - [sym___double_quote] = ACTIONS(2339), - [sym___single_quote] = ACTIONS(2341), - [sym___c_double_quote] = ACTIONS(2343), - [sym___c_single_quote] = ACTIONS(2345), - [sym___r_double_quote] = ACTIONS(2347), - [sym___r_single_quote] = ACTIONS(2349), + [sym___double_quote] = ACTIONS(1480), + [sym___single_quote] = ACTIONS(1482), + [sym___c_double_quote] = ACTIONS(1484), + [sym___c_single_quote] = ACTIONS(1486), + [sym___r_double_quote] = ACTIONS(1488), + [sym___r_single_quote] = ACTIONS(1490), }, [796] = { [sym_line_comment] = STATE(796), [sym_block_comment] = STATE(796), - [sym__expression] = STATE(960), - [sym__expression_without_blocks] = STATE(1017), - [sym__expression_with_blocks] = STATE(1017), - [sym_inc_expression] = STATE(1018), - [sym_dec_expression] = STATE(1018), - [sym_or_block_expression] = STATE(1018), - [sym_option_propagation_expression] = STATE(1018), - [sym_result_propagation_expression] = STATE(1018), - [sym_anon_struct_value_expression] = STATE(993), - [sym_go_expression] = STATE(1018), - [sym_spawn_expression] = STATE(1018), - [sym_parenthesized_expression] = STATE(1018), - [sym_call_expression] = STATE(1018), - [sym_type_initializer] = STATE(993), - [sym_function_literal] = STATE(1018), - [sym_reference_expression] = STATE(1046), - [sym_type_reference_expression] = STATE(3541), - [sym_unary_expression] = STATE(1018), - [sym_receive_expression] = STATE(1018), - [sym_binary_expression] = STATE(1018), - [sym_as_type_cast_expression] = STATE(1018), - [sym__max_group] = STATE(1018), - [sym_literal] = STATE(1014), - [sym_map_init_expression] = STATE(993), - [sym_array_creation] = STATE(1018), - [sym_fixed_array_creation] = STATE(1018), - [sym_selector_expression] = STATE(1018), - [sym_index_expression] = STATE(1018), - [sym_slice_expression] = STATE(1018), - [sym_if_expression] = STATE(993), - [sym_compile_time_if_expression] = STATE(993), - [sym_is_expression] = STATE(1018), - [sym_in_expression] = STATE(1018), - [sym_enum_fetch] = STATE(1018), - [sym_match_expression] = STATE(993), - [sym_select_expression] = STATE(993), - [sym_lock_expression] = STATE(993), - [sym_unsafe_expression] = STATE(993), - [sym_sql_expression] = STATE(993), - [sym_c_string_literal] = STATE(1006), - [sym_raw_string_literal] = STATE(1006), - [sym_interpreted_string_literal] = STATE(1006), - [sym_mutability_modifiers] = STATE(691), - [sym_plain_type] = STATE(4296), - [sym__plain_type_without_special] = STATE(2302), - [sym_anon_struct_type] = STATE(2303), - [sym_multi_return_type] = STATE(2302), - [sym_result_type] = STATE(2302), - [sym_option_type] = STATE(2302), - [sym_qualified_type] = STATE(3541), - [sym_fixed_array_type] = STATE(2303), - [sym_array_type] = STATE(2303), - [sym_pointer_type] = STATE(2303), - [sym_wrong_pointer_type] = STATE(2303), - [sym_map_type] = STATE(2303), - [sym_channel_type] = STATE(2303), - [sym_shared_type] = STATE(2303), - [sym_thread_type] = STATE(2303), - [sym_atomic_type] = STATE(2303), - [sym_generic_type] = STATE(2303), - [sym_function_type] = STATE(2303), - [sym_identifier] = ACTIONS(493), + [sym__expression] = STATE(2788), + [sym__expression_without_blocks] = STATE(2347), + [sym__expression_with_blocks] = STATE(2347), + [sym_inc_expression] = STATE(2379), + [sym_dec_expression] = STATE(2379), + [sym_or_block_expression] = STATE(2379), + [sym_option_propagation_expression] = STATE(2379), + [sym_result_propagation_expression] = STATE(2379), + [sym_anon_struct_value_expression] = STATE(2378), + [sym_go_expression] = STATE(2379), + [sym_spawn_expression] = STATE(2379), + [sym_parenthesized_expression] = STATE(2379), + [sym_call_expression] = STATE(2379), + [sym_type_initializer] = STATE(2378), + [sym_function_literal] = STATE(2379), + [sym_reference_expression] = STATE(2377), + [sym_type_reference_expression] = STATE(3460), + [sym_unary_expression] = STATE(2379), + [sym_receive_expression] = STATE(2379), + [sym_binary_expression] = STATE(2379), + [sym_as_type_cast_expression] = STATE(2379), + [sym__max_group] = STATE(2379), + [sym_literal] = STATE(2392), + [sym_map_init_expression] = STATE(2378), + [sym_array_creation] = STATE(2379), + [sym_fixed_array_creation] = STATE(2379), + [sym_selector_expression] = STATE(2379), + [sym_index_expression] = STATE(2379), + [sym_slice_expression] = STATE(2379), + [sym_if_expression] = STATE(2378), + [sym_compile_time_if_expression] = STATE(2378), + [sym_is_expression] = STATE(2379), + [sym_in_expression] = STATE(2379), + [sym_enum_fetch] = STATE(2379), + [sym_match_expression] = STATE(2378), + [sym_select_expression] = STATE(2378), + [sym_lock_expression] = STATE(2378), + [sym_unsafe_expression] = STATE(2378), + [sym_sql_expression] = STATE(2378), + [sym_c_string_literal] = STATE(2401), + [sym_raw_string_literal] = STATE(2401), + [sym_interpreted_string_literal] = STATE(2401), + [sym_mutability_modifiers] = STATE(939), + [sym_plain_type] = STATE(4160), + [sym__plain_type_without_special] = STATE(2360), + [sym_anon_struct_type] = STATE(2362), + [sym_multi_return_type] = STATE(2360), + [sym_result_type] = STATE(2360), + [sym_option_type] = STATE(2360), + [sym_qualified_type] = STATE(3460), + [sym_fixed_array_type] = STATE(2362), + [sym_array_type] = STATE(2362), + [sym_pointer_type] = STATE(2362), + [sym_wrong_pointer_type] = STATE(2362), + [sym_map_type] = STATE(2362), + [sym_channel_type] = STATE(2362), + [sym_shared_type] = STATE(2362), + [sym_thread_type] = STATE(2362), + [sym_atomic_type] = STATE(2362), + [sym_generic_type] = STATE(2362), + [sym_function_type] = STATE(2362), + [sym_identifier] = ACTIONS(1815), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(501), - [anon_sym_LBRACE] = ACTIONS(2319), - [anon_sym_LPAREN] = ACTIONS(2321), - [anon_sym_fn] = ACTIONS(507), - [anon_sym_PLUS] = ACTIONS(2323), - [anon_sym_DASH] = ACTIONS(2323), - [anon_sym_STAR] = ACTIONS(2325), - [anon_sym_struct] = ACTIONS(513), + [anon_sym_DOT] = ACTIONS(1430), + [anon_sym_LBRACE] = ACTIONS(1432), + [anon_sym_LPAREN] = ACTIONS(1434), + [anon_sym_fn] = ACTIONS(1436), + [anon_sym_PLUS] = ACTIONS(3090), + [anon_sym_DASH] = ACTIONS(3090), + [anon_sym_STAR] = ACTIONS(3092), + [anon_sym_struct] = ACTIONS(1442), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(2327), - [anon_sym_go] = ACTIONS(519), - [anon_sym_spawn] = ACTIONS(521), - [anon_sym_json_DOTdecode] = ACTIONS(2329), - [anon_sym_LBRACK2] = ACTIONS(2331), - [anon_sym_TILDE] = ACTIONS(2323), - [anon_sym_CARET] = ACTIONS(2323), - [anon_sym_AMP] = ACTIONS(2333), - [anon_sym_LT_DASH] = ACTIONS(2335), - [sym_none] = ACTIONS(531), - [sym_true] = ACTIONS(531), - [sym_false] = ACTIONS(531), - [sym_nil] = ACTIONS(531), - [anon_sym_if] = ACTIONS(533), - [anon_sym_DOLLARif] = ACTIONS(535), - [anon_sym_match] = ACTIONS(537), - [anon_sym_select] = ACTIONS(539), - [anon_sym_lock] = ACTIONS(541), - [anon_sym_rlock] = ACTIONS(541), - [anon_sym_unsafe] = ACTIONS(543), - [anon_sym_sql] = ACTIONS(545), - [sym_int_literal] = ACTIONS(531), - [sym_float_literal] = ACTIONS(2337), - [sym_rune_literal] = ACTIONS(2337), - [sym_pseudo_compile_time_identifier] = ACTIONS(547), + [anon_sym_BANG] = ACTIONS(3094), + [anon_sym_go] = ACTIONS(3096), + [anon_sym_spawn] = ACTIONS(3098), + [anon_sym_json_DOTdecode] = ACTIONS(1450), + [anon_sym_LBRACK2] = ACTIONS(1827), + [anon_sym_TILDE] = ACTIONS(3090), + [anon_sym_CARET] = ACTIONS(3090), + [anon_sym_AMP] = ACTIONS(3100), + [anon_sym_LT_DASH] = ACTIONS(3102), + [sym_none] = ACTIONS(1458), + [sym_true] = ACTIONS(1458), + [sym_false] = ACTIONS(1458), + [sym_nil] = ACTIONS(1458), + [anon_sym_if] = ACTIONS(1833), + [anon_sym_DOLLARif] = ACTIONS(1462), + [anon_sym_match] = ACTIONS(1464), + [anon_sym_select] = ACTIONS(3104), + [anon_sym_lock] = ACTIONS(3106), + [anon_sym_rlock] = ACTIONS(3106), + [anon_sym_unsafe] = ACTIONS(1839), + [anon_sym_sql] = ACTIONS(1472), + [sym_int_literal] = ACTIONS(1458), + [sym_float_literal] = ACTIONS(1474), + [sym_rune_literal] = ACTIONS(1474), + [sym_pseudo_compile_time_identifier] = ACTIONS(1476), [anon_sym_shared] = ACTIONS(83), [anon_sym_map_LBRACK] = ACTIONS(85), [anon_sym_chan] = ACTIONS(87), [anon_sym_thread] = ACTIONS(89), [anon_sym_atomic] = ACTIONS(91), - [sym___double_quote] = ACTIONS(2339), - [sym___single_quote] = ACTIONS(2341), - [sym___c_double_quote] = ACTIONS(2343), - [sym___c_single_quote] = ACTIONS(2345), - [sym___r_double_quote] = ACTIONS(2347), - [sym___r_single_quote] = ACTIONS(2349), + [sym___double_quote] = ACTIONS(1480), + [sym___single_quote] = ACTIONS(1482), + [sym___c_double_quote] = ACTIONS(1484), + [sym___c_single_quote] = ACTIONS(1486), + [sym___r_double_quote] = ACTIONS(1488), + [sym___r_single_quote] = ACTIONS(1490), }, [797] = { [sym_line_comment] = STATE(797), [sym_block_comment] = STATE(797), - [sym__expression] = STATE(959), - [sym__expression_without_blocks] = STATE(1017), - [sym__expression_with_blocks] = STATE(1017), - [sym_inc_expression] = STATE(1018), - [sym_dec_expression] = STATE(1018), - [sym_or_block_expression] = STATE(1018), - [sym_option_propagation_expression] = STATE(1018), - [sym_result_propagation_expression] = STATE(1018), - [sym_anon_struct_value_expression] = STATE(993), - [sym_go_expression] = STATE(1018), - [sym_spawn_expression] = STATE(1018), - [sym_parenthesized_expression] = STATE(1018), - [sym_call_expression] = STATE(1018), - [sym_type_initializer] = STATE(993), - [sym_function_literal] = STATE(1018), - [sym_reference_expression] = STATE(1046), - [sym_type_reference_expression] = STATE(3541), - [sym_unary_expression] = STATE(1018), - [sym_receive_expression] = STATE(1018), - [sym_binary_expression] = STATE(1018), - [sym_as_type_cast_expression] = STATE(1018), - [sym__max_group] = STATE(1018), - [sym_literal] = STATE(1014), - [sym_map_init_expression] = STATE(993), - [sym_array_creation] = STATE(1018), - [sym_fixed_array_creation] = STATE(1018), - [sym_selector_expression] = STATE(1018), - [sym_index_expression] = STATE(1018), - [sym_slice_expression] = STATE(1018), - [sym_if_expression] = STATE(993), - [sym_compile_time_if_expression] = STATE(993), - [sym_is_expression] = STATE(1018), - [sym_in_expression] = STATE(1018), - [sym_enum_fetch] = STATE(1018), - [sym_match_expression] = STATE(993), - [sym_select_expression] = STATE(993), - [sym_lock_expression] = STATE(993), - [sym_unsafe_expression] = STATE(993), - [sym_sql_expression] = STATE(993), - [sym_c_string_literal] = STATE(1006), - [sym_raw_string_literal] = STATE(1006), - [sym_interpreted_string_literal] = STATE(1006), - [sym_mutability_modifiers] = STATE(691), - [sym_plain_type] = STATE(4308), - [sym__plain_type_without_special] = STATE(2302), - [sym_anon_struct_type] = STATE(2303), - [sym_multi_return_type] = STATE(2302), - [sym_result_type] = STATE(2302), - [sym_option_type] = STATE(2302), - [sym_qualified_type] = STATE(3541), - [sym_fixed_array_type] = STATE(2303), - [sym_array_type] = STATE(2303), - [sym_pointer_type] = STATE(2303), - [sym_wrong_pointer_type] = STATE(2303), - [sym_map_type] = STATE(2303), - [sym_channel_type] = STATE(2303), - [sym_shared_type] = STATE(2303), - [sym_thread_type] = STATE(2303), - [sym_atomic_type] = STATE(2303), - [sym_generic_type] = STATE(2303), - [sym_function_type] = STATE(2303), - [sym_identifier] = ACTIONS(493), + [sym__expression] = STATE(2790), + [sym__expression_without_blocks] = STATE(2347), + [sym__expression_with_blocks] = STATE(2347), + [sym_inc_expression] = STATE(2379), + [sym_dec_expression] = STATE(2379), + [sym_or_block_expression] = STATE(2379), + [sym_option_propagation_expression] = STATE(2379), + [sym_result_propagation_expression] = STATE(2379), + [sym_anon_struct_value_expression] = STATE(2378), + [sym_go_expression] = STATE(2379), + [sym_spawn_expression] = STATE(2379), + [sym_parenthesized_expression] = STATE(2379), + [sym_call_expression] = STATE(2379), + [sym_type_initializer] = STATE(2378), + [sym_function_literal] = STATE(2379), + [sym_reference_expression] = STATE(2377), + [sym_type_reference_expression] = STATE(3460), + [sym_unary_expression] = STATE(2379), + [sym_receive_expression] = STATE(2379), + [sym_binary_expression] = STATE(2379), + [sym_as_type_cast_expression] = STATE(2379), + [sym__max_group] = STATE(2379), + [sym_literal] = STATE(2392), + [sym_map_init_expression] = STATE(2378), + [sym_array_creation] = STATE(2379), + [sym_fixed_array_creation] = STATE(2379), + [sym_selector_expression] = STATE(2379), + [sym_index_expression] = STATE(2379), + [sym_slice_expression] = STATE(2379), + [sym_if_expression] = STATE(2378), + [sym_compile_time_if_expression] = STATE(2378), + [sym_is_expression] = STATE(2379), + [sym_in_expression] = STATE(2379), + [sym_enum_fetch] = STATE(2379), + [sym_match_expression] = STATE(2378), + [sym_select_expression] = STATE(2378), + [sym_lock_expression] = STATE(2378), + [sym_unsafe_expression] = STATE(2378), + [sym_sql_expression] = STATE(2378), + [sym_c_string_literal] = STATE(2401), + [sym_raw_string_literal] = STATE(2401), + [sym_interpreted_string_literal] = STATE(2401), + [sym_mutability_modifiers] = STATE(939), + [sym_plain_type] = STATE(4160), + [sym__plain_type_without_special] = STATE(2360), + [sym_anon_struct_type] = STATE(2362), + [sym_multi_return_type] = STATE(2360), + [sym_result_type] = STATE(2360), + [sym_option_type] = STATE(2360), + [sym_qualified_type] = STATE(3460), + [sym_fixed_array_type] = STATE(2362), + [sym_array_type] = STATE(2362), + [sym_pointer_type] = STATE(2362), + [sym_wrong_pointer_type] = STATE(2362), + [sym_map_type] = STATE(2362), + [sym_channel_type] = STATE(2362), + [sym_shared_type] = STATE(2362), + [sym_thread_type] = STATE(2362), + [sym_atomic_type] = STATE(2362), + [sym_generic_type] = STATE(2362), + [sym_function_type] = STATE(2362), + [sym_identifier] = ACTIONS(2477), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(501), - [anon_sym_LBRACE] = ACTIONS(2319), - [anon_sym_LPAREN] = ACTIONS(2321), - [anon_sym_fn] = ACTIONS(507), - [anon_sym_PLUS] = ACTIONS(2323), - [anon_sym_DASH] = ACTIONS(2323), - [anon_sym_STAR] = ACTIONS(2325), - [anon_sym_struct] = ACTIONS(513), + [anon_sym_DOT] = ACTIONS(1430), + [anon_sym_LBRACE] = ACTIONS(1432), + [anon_sym_LPAREN] = ACTIONS(1434), + [anon_sym_fn] = ACTIONS(1436), + [anon_sym_PLUS] = ACTIONS(2271), + [anon_sym_DASH] = ACTIONS(2271), + [anon_sym_STAR] = ACTIONS(3354), + [anon_sym_struct] = ACTIONS(1442), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(2327), - [anon_sym_go] = ACTIONS(519), - [anon_sym_spawn] = ACTIONS(521), - [anon_sym_json_DOTdecode] = ACTIONS(2329), - [anon_sym_LBRACK2] = ACTIONS(2331), - [anon_sym_TILDE] = ACTIONS(2323), - [anon_sym_CARET] = ACTIONS(2323), - [anon_sym_AMP] = ACTIONS(2333), - [anon_sym_LT_DASH] = ACTIONS(2335), - [sym_none] = ACTIONS(531), - [sym_true] = ACTIONS(531), - [sym_false] = ACTIONS(531), - [sym_nil] = ACTIONS(531), - [anon_sym_if] = ACTIONS(533), - [anon_sym_DOLLARif] = ACTIONS(535), - [anon_sym_match] = ACTIONS(537), - [anon_sym_select] = ACTIONS(539), - [anon_sym_lock] = ACTIONS(541), - [anon_sym_rlock] = ACTIONS(541), - [anon_sym_unsafe] = ACTIONS(543), - [anon_sym_sql] = ACTIONS(545), - [sym_int_literal] = ACTIONS(531), - [sym_float_literal] = ACTIONS(2337), - [sym_rune_literal] = ACTIONS(2337), - [sym_pseudo_compile_time_identifier] = ACTIONS(547), + [anon_sym_BANG] = ACTIONS(3356), + [anon_sym_go] = ACTIONS(2277), + [anon_sym_spawn] = ACTIONS(2279), + [anon_sym_json_DOTdecode] = ACTIONS(1450), + [anon_sym_LBRACK2] = ACTIONS(1452), + [anon_sym_TILDE] = ACTIONS(2271), + [anon_sym_CARET] = ACTIONS(2271), + [anon_sym_AMP] = ACTIONS(3358), + [anon_sym_LT_DASH] = ACTIONS(2283), + [sym_none] = ACTIONS(1458), + [sym_true] = ACTIONS(1458), + [sym_false] = ACTIONS(1458), + [sym_nil] = ACTIONS(1458), + [anon_sym_if] = ACTIONS(1833), + [anon_sym_DOLLARif] = ACTIONS(1462), + [anon_sym_match] = ACTIONS(1464), + [anon_sym_select] = ACTIONS(1466), + [anon_sym_lock] = ACTIONS(1468), + [anon_sym_rlock] = ACTIONS(1468), + [anon_sym_unsafe] = ACTIONS(1839), + [anon_sym_sql] = ACTIONS(1472), + [sym_int_literal] = ACTIONS(1458), + [sym_float_literal] = ACTIONS(1474), + [sym_rune_literal] = ACTIONS(1474), + [sym_pseudo_compile_time_identifier] = ACTIONS(1476), [anon_sym_shared] = ACTIONS(83), [anon_sym_map_LBRACK] = ACTIONS(85), [anon_sym_chan] = ACTIONS(87), [anon_sym_thread] = ACTIONS(89), [anon_sym_atomic] = ACTIONS(91), - [sym___double_quote] = ACTIONS(2339), - [sym___single_quote] = ACTIONS(2341), - [sym___c_double_quote] = ACTIONS(2343), - [sym___c_single_quote] = ACTIONS(2345), - [sym___r_double_quote] = ACTIONS(2347), - [sym___r_single_quote] = ACTIONS(2349), + [sym___double_quote] = ACTIONS(1480), + [sym___single_quote] = ACTIONS(1482), + [sym___c_double_quote] = ACTIONS(1484), + [sym___c_single_quote] = ACTIONS(1486), + [sym___r_double_quote] = ACTIONS(1488), + [sym___r_single_quote] = ACTIONS(1490), }, [798] = { [sym_line_comment] = STATE(798), [sym_block_comment] = STATE(798), - [sym__expression] = STATE(2594), - [sym__expression_without_blocks] = STATE(2300), - [sym__expression_with_blocks] = STATE(2300), - [sym_inc_expression] = STATE(2307), - [sym_dec_expression] = STATE(2307), - [sym_or_block_expression] = STATE(2307), - [sym_option_propagation_expression] = STATE(2307), - [sym_result_propagation_expression] = STATE(2307), - [sym_anon_struct_value_expression] = STATE(2380), - [sym_go_expression] = STATE(2307), - [sym_spawn_expression] = STATE(2307), - [sym_parenthesized_expression] = STATE(2307), - [sym_call_expression] = STATE(2307), - [sym_type_initializer] = STATE(2380), - [sym_function_literal] = STATE(2307), - [sym_reference_expression] = STATE(2311), - [sym_type_reference_expression] = STATE(3541), - [sym_unary_expression] = STATE(2307), - [sym_receive_expression] = STATE(2307), - [sym_binary_expression] = STATE(2307), - [sym_as_type_cast_expression] = STATE(2307), - [sym__max_group] = STATE(2307), - [sym_literal] = STATE(2292), - [sym_map_init_expression] = STATE(2380), - [sym_array_creation] = STATE(2307), - [sym_fixed_array_creation] = STATE(2307), - [sym_selector_expression] = STATE(2307), - [sym_index_expression] = STATE(2307), - [sym_slice_expression] = STATE(2307), - [sym_if_expression] = STATE(2380), - [sym_compile_time_if_expression] = STATE(2380), - [sym_is_expression] = STATE(2307), - [sym_in_expression] = STATE(2307), - [sym_enum_fetch] = STATE(2307), - [sym_match_expression] = STATE(2380), - [sym_select_expression] = STATE(2380), - [sym_lock_expression] = STATE(2380), - [sym_unsafe_expression] = STATE(2380), - [sym_sql_expression] = STATE(2380), - [sym_c_string_literal] = STATE(2308), - [sym_raw_string_literal] = STATE(2308), - [sym_interpreted_string_literal] = STATE(2308), + [sym__expression] = STATE(2830), + [sym__expression_without_blocks] = STATE(2347), + [sym__expression_with_blocks] = STATE(2347), + [sym_inc_expression] = STATE(2379), + [sym_dec_expression] = STATE(2379), + [sym_or_block_expression] = STATE(2379), + [sym_option_propagation_expression] = STATE(2379), + [sym_result_propagation_expression] = STATE(2379), + [sym_anon_struct_value_expression] = STATE(2378), + [sym_go_expression] = STATE(2379), + [sym_spawn_expression] = STATE(2379), + [sym_parenthesized_expression] = STATE(2379), + [sym_call_expression] = STATE(2379), + [sym_type_initializer] = STATE(2378), + [sym_function_literal] = STATE(2379), + [sym_reference_expression] = STATE(2935), + [sym_type_reference_expression] = STATE(3460), + [sym_unary_expression] = STATE(2379), + [sym_receive_expression] = STATE(2379), + [sym_binary_expression] = STATE(2379), + [sym_as_type_cast_expression] = STATE(2379), + [sym__max_group] = STATE(2379), + [sym_literal] = STATE(2392), + [sym_map_init_expression] = STATE(2378), + [sym_array_creation] = STATE(2379), + [sym_fixed_array_creation] = STATE(2379), + [sym_selector_expression] = STATE(2918), + [sym_index_expression] = STATE(2379), + [sym_slice_expression] = STATE(2379), + [sym_if_expression] = STATE(2378), + [sym_compile_time_if_expression] = STATE(2378), + [sym_is_expression] = STATE(2379), + [sym_in_expression] = STATE(2379), + [sym_enum_fetch] = STATE(2379), + [sym_match_expression] = STATE(2378), + [sym_select_expression] = STATE(2378), + [sym_lock_expression] = STATE(2378), + [sym_unsafe_expression] = STATE(2378), + [sym_sql_expression] = STATE(2378), + [sym_c_string_literal] = STATE(2401), + [sym_raw_string_literal] = STATE(2401), + [sym_interpreted_string_literal] = STATE(2401), [sym_mutability_modifiers] = STATE(939), - [sym_plain_type] = STATE(4297), - [sym__plain_type_without_special] = STATE(2302), - [sym_anon_struct_type] = STATE(2303), - [sym_multi_return_type] = STATE(2302), - [sym_result_type] = STATE(2302), - [sym_option_type] = STATE(2302), - [sym_qualified_type] = STATE(3541), - [sym_fixed_array_type] = STATE(2303), - [sym_array_type] = STATE(2303), - [sym_pointer_type] = STATE(2303), - [sym_wrong_pointer_type] = STATE(2303), - [sym_map_type] = STATE(2303), - [sym_channel_type] = STATE(2303), - [sym_shared_type] = STATE(2303), - [sym_thread_type] = STATE(2303), - [sym_atomic_type] = STATE(2303), - [sym_generic_type] = STATE(2303), - [sym_function_type] = STATE(2303), - [sym_identifier] = ACTIONS(1807), + [sym_plain_type] = STATE(4160), + [sym__plain_type_without_special] = STATE(2360), + [sym_anon_struct_type] = STATE(2362), + [sym_multi_return_type] = STATE(2360), + [sym_result_type] = STATE(2360), + [sym_option_type] = STATE(2360), + [sym_qualified_type] = STATE(3460), + [sym_fixed_array_type] = STATE(2362), + [sym_array_type] = STATE(2362), + [sym_pointer_type] = STATE(2362), + [sym_wrong_pointer_type] = STATE(2362), + [sym_map_type] = STATE(2362), + [sym_channel_type] = STATE(2362), + [sym_shared_type] = STATE(2362), + [sym_thread_type] = STATE(2362), + [sym_atomic_type] = STATE(2362), + [sym_generic_type] = STATE(2362), + [sym_function_type] = STATE(2362), + [sym_identifier] = ACTIONS(2477), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1428), - [anon_sym_LBRACE] = ACTIONS(1430), - [anon_sym_LPAREN] = ACTIONS(1432), - [anon_sym_fn] = ACTIONS(1434), - [anon_sym_PLUS] = ACTIONS(3064), - [anon_sym_DASH] = ACTIONS(3064), - [anon_sym_STAR] = ACTIONS(3066), - [anon_sym_struct] = ACTIONS(1440), + [anon_sym_DOT] = ACTIONS(1430), + [anon_sym_LBRACE] = ACTIONS(1432), + [anon_sym_LPAREN] = ACTIONS(1434), + [anon_sym_fn] = ACTIONS(1436), + [anon_sym_PLUS] = ACTIONS(1438), + [anon_sym_DASH] = ACTIONS(1438), + [anon_sym_STAR] = ACTIONS(1440), + [anon_sym_struct] = ACTIONS(1442), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(3068), - [anon_sym_go] = ACTIONS(3070), - [anon_sym_spawn] = ACTIONS(3072), - [anon_sym_json_DOTdecode] = ACTIONS(1448), - [anon_sym_LBRACK2] = ACTIONS(1821), - [anon_sym_TILDE] = ACTIONS(3064), - [anon_sym_CARET] = ACTIONS(3064), - [anon_sym_AMP] = ACTIONS(3074), - [anon_sym_LT_DASH] = ACTIONS(3076), - [sym_none] = ACTIONS(1456), - [sym_true] = ACTIONS(1456), - [sym_false] = ACTIONS(1456), - [sym_nil] = ACTIONS(1456), - [anon_sym_if] = ACTIONS(1827), - [anon_sym_DOLLARif] = ACTIONS(1460), - [anon_sym_match] = ACTIONS(1462), - [anon_sym_select] = ACTIONS(3078), - [anon_sym_lock] = ACTIONS(3080), - [anon_sym_rlock] = ACTIONS(3080), - [anon_sym_unsafe] = ACTIONS(1833), - [anon_sym_sql] = ACTIONS(1470), - [sym_int_literal] = ACTIONS(1456), - [sym_float_literal] = ACTIONS(1472), - [sym_rune_literal] = ACTIONS(1472), - [sym_pseudo_compile_time_identifier] = ACTIONS(1474), + [anon_sym_BANG] = ACTIONS(1444), + [anon_sym_go] = ACTIONS(1446), + [anon_sym_spawn] = ACTIONS(1448), + [anon_sym_json_DOTdecode] = ACTIONS(1450), + [anon_sym_LBRACK2] = ACTIONS(1452), + [anon_sym_TILDE] = ACTIONS(1438), + [anon_sym_CARET] = ACTIONS(1438), + [anon_sym_AMP] = ACTIONS(1454), + [anon_sym_LT_DASH] = ACTIONS(1456), + [sym_none] = ACTIONS(1458), + [sym_true] = ACTIONS(1458), + [sym_false] = ACTIONS(1458), + [sym_nil] = ACTIONS(1458), + [anon_sym_if] = ACTIONS(1833), + [anon_sym_DOLLARif] = ACTIONS(1462), + [anon_sym_match] = ACTIONS(1464), + [anon_sym_select] = ACTIONS(1466), + [anon_sym_lock] = ACTIONS(1468), + [anon_sym_rlock] = ACTIONS(1468), + [anon_sym_unsafe] = ACTIONS(1839), + [anon_sym_sql] = ACTIONS(1472), + [sym_int_literal] = ACTIONS(1458), + [sym_float_literal] = ACTIONS(1474), + [sym_rune_literal] = ACTIONS(1474), + [sym_pseudo_compile_time_identifier] = ACTIONS(1476), [anon_sym_shared] = ACTIONS(83), [anon_sym_map_LBRACK] = ACTIONS(85), [anon_sym_chan] = ACTIONS(87), [anon_sym_thread] = ACTIONS(89), [anon_sym_atomic] = ACTIONS(91), - [sym___double_quote] = ACTIONS(1478), - [sym___single_quote] = ACTIONS(1480), - [sym___c_double_quote] = ACTIONS(1482), - [sym___c_single_quote] = ACTIONS(1484), - [sym___r_double_quote] = ACTIONS(1486), - [sym___r_single_quote] = ACTIONS(1488), + [sym___double_quote] = ACTIONS(1480), + [sym___single_quote] = ACTIONS(1482), + [sym___c_double_quote] = ACTIONS(1484), + [sym___c_single_quote] = ACTIONS(1486), + [sym___r_double_quote] = ACTIONS(1488), + [sym___r_single_quote] = ACTIONS(1490), }, [799] = { [sym_line_comment] = STATE(799), [sym_block_comment] = STATE(799), - [sym__expression] = STATE(959), - [sym__expression_without_blocks] = STATE(1017), - [sym__expression_with_blocks] = STATE(1017), - [sym_inc_expression] = STATE(1018), - [sym_dec_expression] = STATE(1018), - [sym_or_block_expression] = STATE(1018), - [sym_option_propagation_expression] = STATE(1018), - [sym_result_propagation_expression] = STATE(1018), - [sym_anon_struct_value_expression] = STATE(993), - [sym_go_expression] = STATE(1018), - [sym_spawn_expression] = STATE(1018), - [sym_parenthesized_expression] = STATE(1018), - [sym_call_expression] = STATE(1018), - [sym_type_initializer] = STATE(993), - [sym_function_literal] = STATE(1018), - [sym_reference_expression] = STATE(1046), - [sym_type_reference_expression] = STATE(3541), - [sym_unary_expression] = STATE(1018), - [sym_receive_expression] = STATE(1018), - [sym_binary_expression] = STATE(1018), - [sym_as_type_cast_expression] = STATE(1018), - [sym__max_group] = STATE(1018), - [sym_literal] = STATE(1014), - [sym_map_init_expression] = STATE(993), - [sym_array_creation] = STATE(1018), - [sym_fixed_array_creation] = STATE(1018), - [sym_selector_expression] = STATE(1018), - [sym_index_expression] = STATE(1018), - [sym_slice_expression] = STATE(1018), - [sym_if_expression] = STATE(993), - [sym_compile_time_if_expression] = STATE(993), - [sym_is_expression] = STATE(1018), - [sym_in_expression] = STATE(1018), - [sym_enum_fetch] = STATE(1018), - [sym_match_expression] = STATE(993), - [sym_select_expression] = STATE(993), - [sym_lock_expression] = STATE(993), - [sym_unsafe_expression] = STATE(993), - [sym_sql_expression] = STATE(993), - [sym_c_string_literal] = STATE(1006), - [sym_raw_string_literal] = STATE(1006), - [sym_interpreted_string_literal] = STATE(1006), - [sym_mutability_modifiers] = STATE(691), - [sym_plain_type] = STATE(4290), - [sym__plain_type_without_special] = STATE(2302), - [sym_anon_struct_type] = STATE(2303), - [sym_multi_return_type] = STATE(2302), - [sym_result_type] = STATE(2302), - [sym_option_type] = STATE(2302), - [sym_qualified_type] = STATE(3541), - [sym_fixed_array_type] = STATE(2303), - [sym_array_type] = STATE(2303), - [sym_pointer_type] = STATE(2303), - [sym_wrong_pointer_type] = STATE(2303), - [sym_map_type] = STATE(2303), - [sym_channel_type] = STATE(2303), - [sym_shared_type] = STATE(2303), - [sym_thread_type] = STATE(2303), - [sym_atomic_type] = STATE(2303), - [sym_generic_type] = STATE(2303), - [sym_function_type] = STATE(2303), - [sym_identifier] = ACTIONS(493), + [sym__expression] = STATE(2786), + [sym__expression_without_blocks] = STATE(2347), + [sym__expression_with_blocks] = STATE(2347), + [sym_inc_expression] = STATE(2379), + [sym_dec_expression] = STATE(2379), + [sym_or_block_expression] = STATE(2379), + [sym_option_propagation_expression] = STATE(2379), + [sym_result_propagation_expression] = STATE(2379), + [sym_anon_struct_value_expression] = STATE(2378), + [sym_go_expression] = STATE(2379), + [sym_spawn_expression] = STATE(2379), + [sym_parenthesized_expression] = STATE(2379), + [sym_call_expression] = STATE(2379), + [sym_type_initializer] = STATE(2378), + [sym_function_literal] = STATE(2379), + [sym_reference_expression] = STATE(2377), + [sym_type_reference_expression] = STATE(3460), + [sym_unary_expression] = STATE(2379), + [sym_receive_expression] = STATE(2379), + [sym_binary_expression] = STATE(2379), + [sym_as_type_cast_expression] = STATE(2379), + [sym__max_group] = STATE(2379), + [sym_literal] = STATE(2392), + [sym_map_init_expression] = STATE(2378), + [sym_array_creation] = STATE(2379), + [sym_fixed_array_creation] = STATE(2379), + [sym_selector_expression] = STATE(2379), + [sym_index_expression] = STATE(2379), + [sym_slice_expression] = STATE(2379), + [sym_if_expression] = STATE(2378), + [sym_compile_time_if_expression] = STATE(2378), + [sym_is_expression] = STATE(2379), + [sym_in_expression] = STATE(2379), + [sym_enum_fetch] = STATE(2379), + [sym_match_expression] = STATE(2378), + [sym_select_expression] = STATE(2378), + [sym_lock_expression] = STATE(2378), + [sym_unsafe_expression] = STATE(2378), + [sym_sql_expression] = STATE(2378), + [sym_c_string_literal] = STATE(2401), + [sym_raw_string_literal] = STATE(2401), + [sym_interpreted_string_literal] = STATE(2401), + [sym_mutability_modifiers] = STATE(939), + [sym_plain_type] = STATE(4160), + [sym__plain_type_without_special] = STATE(2360), + [sym_anon_struct_type] = STATE(2362), + [sym_multi_return_type] = STATE(2360), + [sym_result_type] = STATE(2360), + [sym_option_type] = STATE(2360), + [sym_qualified_type] = STATE(3460), + [sym_fixed_array_type] = STATE(2362), + [sym_array_type] = STATE(2362), + [sym_pointer_type] = STATE(2362), + [sym_wrong_pointer_type] = STATE(2362), + [sym_map_type] = STATE(2362), + [sym_channel_type] = STATE(2362), + [sym_shared_type] = STATE(2362), + [sym_thread_type] = STATE(2362), + [sym_atomic_type] = STATE(2362), + [sym_generic_type] = STATE(2362), + [sym_function_type] = STATE(2362), + [sym_identifier] = ACTIONS(1815), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(501), - [anon_sym_LBRACE] = ACTIONS(2319), - [anon_sym_LPAREN] = ACTIONS(2321), - [anon_sym_fn] = ACTIONS(507), - [anon_sym_PLUS] = ACTIONS(2323), - [anon_sym_DASH] = ACTIONS(2323), - [anon_sym_STAR] = ACTIONS(2325), - [anon_sym_struct] = ACTIONS(513), + [anon_sym_DOT] = ACTIONS(1430), + [anon_sym_LBRACE] = ACTIONS(1432), + [anon_sym_LPAREN] = ACTIONS(1434), + [anon_sym_fn] = ACTIONS(1436), + [anon_sym_PLUS] = ACTIONS(3090), + [anon_sym_DASH] = ACTIONS(3090), + [anon_sym_STAR] = ACTIONS(3092), + [anon_sym_struct] = ACTIONS(1442), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(2327), - [anon_sym_go] = ACTIONS(519), - [anon_sym_spawn] = ACTIONS(521), - [anon_sym_json_DOTdecode] = ACTIONS(2329), - [anon_sym_LBRACK2] = ACTIONS(2331), - [anon_sym_TILDE] = ACTIONS(2323), - [anon_sym_CARET] = ACTIONS(2323), - [anon_sym_AMP] = ACTIONS(2333), - [anon_sym_LT_DASH] = ACTIONS(2335), - [sym_none] = ACTIONS(531), - [sym_true] = ACTIONS(531), - [sym_false] = ACTIONS(531), - [sym_nil] = ACTIONS(531), - [anon_sym_if] = ACTIONS(533), - [anon_sym_DOLLARif] = ACTIONS(535), - [anon_sym_match] = ACTIONS(537), - [anon_sym_select] = ACTIONS(539), - [anon_sym_lock] = ACTIONS(541), - [anon_sym_rlock] = ACTIONS(541), - [anon_sym_unsafe] = ACTIONS(543), - [anon_sym_sql] = ACTIONS(545), - [sym_int_literal] = ACTIONS(531), - [sym_float_literal] = ACTIONS(2337), - [sym_rune_literal] = ACTIONS(2337), - [sym_pseudo_compile_time_identifier] = ACTIONS(547), + [anon_sym_BANG] = ACTIONS(3094), + [anon_sym_go] = ACTIONS(3096), + [anon_sym_spawn] = ACTIONS(3098), + [anon_sym_json_DOTdecode] = ACTIONS(1450), + [anon_sym_LBRACK2] = ACTIONS(1827), + [anon_sym_TILDE] = ACTIONS(3090), + [anon_sym_CARET] = ACTIONS(3090), + [anon_sym_AMP] = ACTIONS(3100), + [anon_sym_LT_DASH] = ACTIONS(3102), + [sym_none] = ACTIONS(1458), + [sym_true] = ACTIONS(1458), + [sym_false] = ACTIONS(1458), + [sym_nil] = ACTIONS(1458), + [anon_sym_if] = ACTIONS(1833), + [anon_sym_DOLLARif] = ACTIONS(1462), + [anon_sym_match] = ACTIONS(1464), + [anon_sym_select] = ACTIONS(3104), + [anon_sym_lock] = ACTIONS(3106), + [anon_sym_rlock] = ACTIONS(3106), + [anon_sym_unsafe] = ACTIONS(1839), + [anon_sym_sql] = ACTIONS(1472), + [sym_int_literal] = ACTIONS(1458), + [sym_float_literal] = ACTIONS(1474), + [sym_rune_literal] = ACTIONS(1474), + [sym_pseudo_compile_time_identifier] = ACTIONS(1476), [anon_sym_shared] = ACTIONS(83), [anon_sym_map_LBRACK] = ACTIONS(85), [anon_sym_chan] = ACTIONS(87), [anon_sym_thread] = ACTIONS(89), [anon_sym_atomic] = ACTIONS(91), - [sym___double_quote] = ACTIONS(2339), - [sym___single_quote] = ACTIONS(2341), - [sym___c_double_quote] = ACTIONS(2343), - [sym___c_single_quote] = ACTIONS(2345), - [sym___r_double_quote] = ACTIONS(2347), - [sym___r_single_quote] = ACTIONS(2349), + [sym___double_quote] = ACTIONS(1480), + [sym___single_quote] = ACTIONS(1482), + [sym___c_double_quote] = ACTIONS(1484), + [sym___c_single_quote] = ACTIONS(1486), + [sym___r_double_quote] = ACTIONS(1488), + [sym___r_single_quote] = ACTIONS(1490), }, [800] = { [sym_line_comment] = STATE(800), [sym_block_comment] = STATE(800), - [sym__expression] = STATE(959), - [sym__expression_without_blocks] = STATE(1017), - [sym__expression_with_blocks] = STATE(1017), - [sym_inc_expression] = STATE(1018), - [sym_dec_expression] = STATE(1018), - [sym_or_block_expression] = STATE(1018), - [sym_option_propagation_expression] = STATE(1018), - [sym_result_propagation_expression] = STATE(1018), - [sym_anon_struct_value_expression] = STATE(993), - [sym_go_expression] = STATE(1018), - [sym_spawn_expression] = STATE(1018), - [sym_parenthesized_expression] = STATE(1018), - [sym_call_expression] = STATE(1018), - [sym_type_initializer] = STATE(993), - [sym_function_literal] = STATE(1018), - [sym_reference_expression] = STATE(1046), - [sym_type_reference_expression] = STATE(3541), - [sym_unary_expression] = STATE(1018), - [sym_receive_expression] = STATE(1018), - [sym_binary_expression] = STATE(1018), - [sym_as_type_cast_expression] = STATE(1018), - [sym__max_group] = STATE(1018), - [sym_literal] = STATE(1014), - [sym_map_init_expression] = STATE(993), - [sym_array_creation] = STATE(1018), - [sym_fixed_array_creation] = STATE(1018), - [sym_selector_expression] = STATE(1018), - [sym_index_expression] = STATE(1018), - [sym_slice_expression] = STATE(1018), - [sym_if_expression] = STATE(993), - [sym_compile_time_if_expression] = STATE(993), - [sym_is_expression] = STATE(1018), - [sym_in_expression] = STATE(1018), - [sym_enum_fetch] = STATE(1018), - [sym_match_expression] = STATE(993), - [sym_select_expression] = STATE(993), - [sym_lock_expression] = STATE(993), - [sym_unsafe_expression] = STATE(993), - [sym_sql_expression] = STATE(993), - [sym_c_string_literal] = STATE(1006), - [sym_raw_string_literal] = STATE(1006), - [sym_interpreted_string_literal] = STATE(1006), - [sym_mutability_modifiers] = STATE(691), - [sym_plain_type] = STATE(4296), - [sym__plain_type_without_special] = STATE(2302), - [sym_anon_struct_type] = STATE(2303), - [sym_multi_return_type] = STATE(2302), - [sym_result_type] = STATE(2302), - [sym_option_type] = STATE(2302), - [sym_qualified_type] = STATE(3541), - [sym_fixed_array_type] = STATE(2303), - [sym_array_type] = STATE(2303), - [sym_pointer_type] = STATE(2303), - [sym_wrong_pointer_type] = STATE(2303), - [sym_map_type] = STATE(2303), - [sym_channel_type] = STATE(2303), - [sym_shared_type] = STATE(2303), - [sym_thread_type] = STATE(2303), - [sym_atomic_type] = STATE(2303), - [sym_generic_type] = STATE(2303), - [sym_function_type] = STATE(2303), - [sym_identifier] = ACTIONS(493), + [sym__expression] = STATE(1908), + [sym__expression_without_blocks] = STATE(1953), + [sym__expression_with_blocks] = STATE(1953), + [sym_inc_expression] = STATE(1955), + [sym_dec_expression] = STATE(1955), + [sym_or_block_expression] = STATE(1955), + [sym_option_propagation_expression] = STATE(1955), + [sym_result_propagation_expression] = STATE(1955), + [sym_anon_struct_value_expression] = STATE(1958), + [sym_go_expression] = STATE(1955), + [sym_spawn_expression] = STATE(1955), + [sym_parenthesized_expression] = STATE(1955), + [sym_call_expression] = STATE(1955), + [sym_type_initializer] = STATE(1958), + [sym_function_literal] = STATE(1955), + [sym_reference_expression] = STATE(1956), + [sym_type_reference_expression] = STATE(3460), + [sym_unary_expression] = STATE(1955), + [sym_receive_expression] = STATE(1955), + [sym_binary_expression] = STATE(1955), + [sym_as_type_cast_expression] = STATE(1955), + [sym__max_group] = STATE(1955), + [sym_literal] = STATE(1943), + [sym_map_init_expression] = STATE(1958), + [sym_array_creation] = STATE(1955), + [sym_fixed_array_creation] = STATE(1955), + [sym_selector_expression] = STATE(1955), + [sym_index_expression] = STATE(1955), + [sym_slice_expression] = STATE(1955), + [sym_if_expression] = STATE(1958), + [sym_compile_time_if_expression] = STATE(1958), + [sym_is_expression] = STATE(1955), + [sym_in_expression] = STATE(1955), + [sym_enum_fetch] = STATE(1955), + [sym_match_expression] = STATE(1958), + [sym_select_expression] = STATE(1958), + [sym_lock_expression] = STATE(1958), + [sym_unsafe_expression] = STATE(1958), + [sym_sql_expression] = STATE(1958), + [sym_c_string_literal] = STATE(1942), + [sym_raw_string_literal] = STATE(1942), + [sym_interpreted_string_literal] = STATE(1942), + [sym_mutability_modifiers] = STATE(601), + [sym_plain_type] = STATE(4266), + [sym__plain_type_without_special] = STATE(2360), + [sym_anon_struct_type] = STATE(2362), + [sym_multi_return_type] = STATE(2360), + [sym_result_type] = STATE(2360), + [sym_option_type] = STATE(2360), + [sym_qualified_type] = STATE(3460), + [sym_fixed_array_type] = STATE(2362), + [sym_array_type] = STATE(2362), + [sym_pointer_type] = STATE(2362), + [sym_wrong_pointer_type] = STATE(2362), + [sym_map_type] = STATE(2362), + [sym_channel_type] = STATE(2362), + [sym_shared_type] = STATE(2362), + [sym_thread_type] = STATE(2362), + [sym_atomic_type] = STATE(2362), + [sym_generic_type] = STATE(2362), + [sym_function_type] = STATE(2362), + [sym_identifier] = ACTIONS(3158), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(501), - [anon_sym_LBRACE] = ACTIONS(2319), - [anon_sym_LPAREN] = ACTIONS(2321), - [anon_sym_fn] = ACTIONS(507), - [anon_sym_PLUS] = ACTIONS(2323), - [anon_sym_DASH] = ACTIONS(2323), - [anon_sym_STAR] = ACTIONS(2325), - [anon_sym_struct] = ACTIONS(513), + [anon_sym_DOT] = ACTIONS(705), + [anon_sym_LBRACE] = ACTIONS(3118), + [anon_sym_LPAREN] = ACTIONS(709), + [anon_sym_fn] = ACTIONS(711), + [anon_sym_PLUS] = ACTIONS(3160), + [anon_sym_DASH] = ACTIONS(3160), + [anon_sym_STAR] = ACTIONS(3162), + [anon_sym_struct] = ACTIONS(717), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(2327), - [anon_sym_go] = ACTIONS(519), - [anon_sym_spawn] = ACTIONS(521), - [anon_sym_json_DOTdecode] = ACTIONS(2329), - [anon_sym_LBRACK2] = ACTIONS(2331), - [anon_sym_TILDE] = ACTIONS(2323), - [anon_sym_CARET] = ACTIONS(2323), - [anon_sym_AMP] = ACTIONS(2333), - [anon_sym_LT_DASH] = ACTIONS(2335), - [sym_none] = ACTIONS(531), - [sym_true] = ACTIONS(531), - [sym_false] = ACTIONS(531), - [sym_nil] = ACTIONS(531), - [anon_sym_if] = ACTIONS(533), - [anon_sym_DOLLARif] = ACTIONS(535), - [anon_sym_match] = ACTIONS(537), - [anon_sym_select] = ACTIONS(539), - [anon_sym_lock] = ACTIONS(541), - [anon_sym_rlock] = ACTIONS(541), - [anon_sym_unsafe] = ACTIONS(543), - [anon_sym_sql] = ACTIONS(545), - [sym_int_literal] = ACTIONS(531), - [sym_float_literal] = ACTIONS(2337), - [sym_rune_literal] = ACTIONS(2337), - [sym_pseudo_compile_time_identifier] = ACTIONS(547), + [anon_sym_BANG] = ACTIONS(3164), + [anon_sym_go] = ACTIONS(3166), + [anon_sym_spawn] = ACTIONS(3168), + [anon_sym_json_DOTdecode] = ACTIONS(727), + [anon_sym_LBRACK2] = ACTIONS(3170), + [anon_sym_TILDE] = ACTIONS(3160), + [anon_sym_CARET] = ACTIONS(3160), + [anon_sym_AMP] = ACTIONS(3172), + [anon_sym_LT_DASH] = ACTIONS(3174), + [sym_none] = ACTIONS(735), + [sym_true] = ACTIONS(735), + [sym_false] = ACTIONS(735), + [sym_nil] = ACTIONS(735), + [anon_sym_if] = ACTIONS(737), + [anon_sym_DOLLARif] = ACTIONS(739), + [anon_sym_match] = ACTIONS(741), + [anon_sym_select] = ACTIONS(3176), + [anon_sym_lock] = ACTIONS(3178), + [anon_sym_rlock] = ACTIONS(3178), + [anon_sym_unsafe] = ACTIONS(747), + [anon_sym_sql] = ACTIONS(749), + [sym_int_literal] = ACTIONS(735), + [sym_float_literal] = ACTIONS(751), + [sym_rune_literal] = ACTIONS(751), + [sym_pseudo_compile_time_identifier] = ACTIONS(753), [anon_sym_shared] = ACTIONS(83), [anon_sym_map_LBRACK] = ACTIONS(85), [anon_sym_chan] = ACTIONS(87), [anon_sym_thread] = ACTIONS(89), [anon_sym_atomic] = ACTIONS(91), - [sym___double_quote] = ACTIONS(2339), - [sym___single_quote] = ACTIONS(2341), - [sym___c_double_quote] = ACTIONS(2343), - [sym___c_single_quote] = ACTIONS(2345), - [sym___r_double_quote] = ACTIONS(2347), - [sym___r_single_quote] = ACTIONS(2349), + [sym___double_quote] = ACTIONS(755), + [sym___single_quote] = ACTIONS(757), + [sym___c_double_quote] = ACTIONS(759), + [sym___c_single_quote] = ACTIONS(761), + [sym___r_double_quote] = ACTIONS(763), + [sym___r_single_quote] = ACTIONS(765), }, [801] = { [sym_line_comment] = STATE(801), [sym_block_comment] = STATE(801), - [sym__expression] = STATE(2758), - [sym__expression_without_blocks] = STATE(2300), - [sym__expression_with_blocks] = STATE(2300), - [sym_inc_expression] = STATE(2307), - [sym_dec_expression] = STATE(2307), - [sym_or_block_expression] = STATE(2307), - [sym_option_propagation_expression] = STATE(2307), - [sym_result_propagation_expression] = STATE(2307), - [sym_anon_struct_value_expression] = STATE(2380), - [sym_go_expression] = STATE(2307), - [sym_spawn_expression] = STATE(2307), - [sym_parenthesized_expression] = STATE(2307), - [sym_call_expression] = STATE(2307), - [sym_type_initializer] = STATE(2380), - [sym_function_literal] = STATE(2307), - [sym_reference_expression] = STATE(2311), - [sym_type_reference_expression] = STATE(3541), - [sym_unary_expression] = STATE(2307), - [sym_receive_expression] = STATE(2307), - [sym_binary_expression] = STATE(2307), - [sym_as_type_cast_expression] = STATE(2307), - [sym__max_group] = STATE(2307), - [sym_literal] = STATE(2292), - [sym_map_init_expression] = STATE(2380), - [sym_array_creation] = STATE(2307), - [sym_fixed_array_creation] = STATE(2307), - [sym_selector_expression] = STATE(2307), - [sym_index_expression] = STATE(2307), - [sym_slice_expression] = STATE(2307), - [sym_if_expression] = STATE(2380), - [sym_compile_time_if_expression] = STATE(2380), - [sym_is_expression] = STATE(2307), - [sym_in_expression] = STATE(2307), - [sym_enum_fetch] = STATE(2307), - [sym_match_expression] = STATE(2380), - [sym_select_expression] = STATE(2380), - [sym_lock_expression] = STATE(2380), - [sym_unsafe_expression] = STATE(2380), - [sym_sql_expression] = STATE(2380), - [sym_c_string_literal] = STATE(2308), - [sym_raw_string_literal] = STATE(2308), - [sym_interpreted_string_literal] = STATE(2308), + [sym__expression] = STATE(2267), + [sym__expression_without_blocks] = STATE(2347), + [sym__expression_with_blocks] = STATE(2347), + [sym_inc_expression] = STATE(2379), + [sym_dec_expression] = STATE(2379), + [sym_or_block_expression] = STATE(2379), + [sym_option_propagation_expression] = STATE(2379), + [sym_result_propagation_expression] = STATE(2379), + [sym_anon_struct_value_expression] = STATE(2378), + [sym_go_expression] = STATE(2379), + [sym_spawn_expression] = STATE(2379), + [sym_parenthesized_expression] = STATE(2379), + [sym_call_expression] = STATE(2379), + [sym_type_initializer] = STATE(2378), + [sym_function_literal] = STATE(2379), + [sym_reference_expression] = STATE(2377), + [sym_type_reference_expression] = STATE(3460), + [sym_unary_expression] = STATE(2379), + [sym_receive_expression] = STATE(2379), + [sym_binary_expression] = STATE(2379), + [sym_as_type_cast_expression] = STATE(2379), + [sym__max_group] = STATE(2379), + [sym_literal] = STATE(2392), + [sym_map_init_expression] = STATE(2378), + [sym_array_creation] = STATE(2379), + [sym_fixed_array_creation] = STATE(2379), + [sym_selector_expression] = STATE(2379), + [sym_index_expression] = STATE(2379), + [sym_slice_expression] = STATE(2379), + [sym_if_expression] = STATE(2378), + [sym_compile_time_if_expression] = STATE(2378), + [sym_is_expression] = STATE(2379), + [sym_in_expression] = STATE(2379), + [sym_enum_fetch] = STATE(2379), + [sym_match_expression] = STATE(2378), + [sym_select_expression] = STATE(2378), + [sym_lock_expression] = STATE(2378), + [sym_unsafe_expression] = STATE(2378), + [sym_sql_expression] = STATE(2378), + [sym_c_string_literal] = STATE(2401), + [sym_raw_string_literal] = STATE(2401), + [sym_interpreted_string_literal] = STATE(2401), [sym_mutability_modifiers] = STATE(939), - [sym_plain_type] = STATE(4297), - [sym__plain_type_without_special] = STATE(2302), - [sym_anon_struct_type] = STATE(2303), - [sym_multi_return_type] = STATE(2302), - [sym_result_type] = STATE(2302), - [sym_option_type] = STATE(2302), - [sym_qualified_type] = STATE(3541), - [sym_fixed_array_type] = STATE(2303), - [sym_array_type] = STATE(2303), - [sym_pointer_type] = STATE(2303), - [sym_wrong_pointer_type] = STATE(2303), - [sym_map_type] = STATE(2303), - [sym_channel_type] = STATE(2303), - [sym_shared_type] = STATE(2303), - [sym_thread_type] = STATE(2303), - [sym_atomic_type] = STATE(2303), - [sym_generic_type] = STATE(2303), - [sym_function_type] = STATE(2303), - [sym_identifier] = ACTIONS(2189), + [sym_plain_type] = STATE(3558), + [sym__plain_type_without_special] = STATE(2360), + [sym_anon_struct_type] = STATE(2362), + [sym_multi_return_type] = STATE(2360), + [sym_result_type] = STATE(2360), + [sym_option_type] = STATE(2360), + [sym_qualified_type] = STATE(3460), + [sym_fixed_array_type] = STATE(2362), + [sym_array_type] = STATE(2362), + [sym_pointer_type] = STATE(2362), + [sym_wrong_pointer_type] = STATE(2362), + [sym_map_type] = STATE(2362), + [sym_channel_type] = STATE(2362), + [sym_shared_type] = STATE(2362), + [sym_thread_type] = STATE(2362), + [sym_atomic_type] = STATE(2362), + [sym_generic_type] = STATE(2362), + [sym_function_type] = STATE(2362), + [sym_identifier] = ACTIONS(1815), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1428), - [anon_sym_LBRACE] = ACTIONS(1430), - [anon_sym_LPAREN] = ACTIONS(1432), - [anon_sym_fn] = ACTIONS(1434), - [anon_sym_PLUS] = ACTIONS(2491), - [anon_sym_DASH] = ACTIONS(2491), - [anon_sym_STAR] = ACTIONS(3354), - [anon_sym_struct] = ACTIONS(1440), + [anon_sym_DOT] = ACTIONS(1430), + [anon_sym_LBRACE] = ACTIONS(1432), + [anon_sym_LPAREN] = ACTIONS(1434), + [anon_sym_fn] = ACTIONS(1436), + [anon_sym_PLUS] = ACTIONS(3090), + [anon_sym_DASH] = ACTIONS(3090), + [anon_sym_STAR] = ACTIONS(3092), + [anon_sym_struct] = ACTIONS(1442), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(3356), - [anon_sym_go] = ACTIONS(2497), - [anon_sym_spawn] = ACTIONS(2499), - [anon_sym_json_DOTdecode] = ACTIONS(1448), - [anon_sym_LBRACK2] = ACTIONS(1450), - [anon_sym_TILDE] = ACTIONS(2491), - [anon_sym_CARET] = ACTIONS(2491), - [anon_sym_AMP] = ACTIONS(3358), - [anon_sym_LT_DASH] = ACTIONS(2503), - [sym_none] = ACTIONS(1456), - [sym_true] = ACTIONS(1456), - [sym_false] = ACTIONS(1456), - [sym_nil] = ACTIONS(1456), - [anon_sym_if] = ACTIONS(1827), - [anon_sym_DOLLARif] = ACTIONS(1460), - [anon_sym_match] = ACTIONS(1462), - [anon_sym_select] = ACTIONS(1464), - [anon_sym_lock] = ACTIONS(1466), - [anon_sym_rlock] = ACTIONS(1466), - [anon_sym_unsafe] = ACTIONS(1833), - [anon_sym_sql] = ACTIONS(1470), - [sym_int_literal] = ACTIONS(1456), - [sym_float_literal] = ACTIONS(1472), - [sym_rune_literal] = ACTIONS(1472), - [sym_pseudo_compile_time_identifier] = ACTIONS(1474), + [anon_sym_BANG] = ACTIONS(3094), + [anon_sym_go] = ACTIONS(3096), + [anon_sym_spawn] = ACTIONS(3098), + [anon_sym_json_DOTdecode] = ACTIONS(1450), + [anon_sym_LBRACK2] = ACTIONS(1827), + [anon_sym_TILDE] = ACTIONS(3090), + [anon_sym_CARET] = ACTIONS(3090), + [anon_sym_AMP] = ACTIONS(3100), + [anon_sym_LT_DASH] = ACTIONS(3102), + [sym_none] = ACTIONS(1458), + [sym_true] = ACTIONS(1458), + [sym_false] = ACTIONS(1458), + [sym_nil] = ACTIONS(1458), + [anon_sym_if] = ACTIONS(1833), + [anon_sym_DOLLARif] = ACTIONS(1462), + [anon_sym_match] = ACTIONS(1464), + [anon_sym_select] = ACTIONS(3104), + [anon_sym_lock] = ACTIONS(3106), + [anon_sym_rlock] = ACTIONS(3106), + [anon_sym_unsafe] = ACTIONS(1839), + [anon_sym_sql] = ACTIONS(1472), + [sym_int_literal] = ACTIONS(1458), + [sym_float_literal] = ACTIONS(1474), + [sym_rune_literal] = ACTIONS(1474), + [sym_pseudo_compile_time_identifier] = ACTIONS(1476), [anon_sym_shared] = ACTIONS(83), [anon_sym_map_LBRACK] = ACTIONS(85), [anon_sym_chan] = ACTIONS(87), [anon_sym_thread] = ACTIONS(89), [anon_sym_atomic] = ACTIONS(91), - [sym___double_quote] = ACTIONS(1478), - [sym___single_quote] = ACTIONS(1480), - [sym___c_double_quote] = ACTIONS(1482), - [sym___c_single_quote] = ACTIONS(1484), - [sym___r_double_quote] = ACTIONS(1486), - [sym___r_single_quote] = ACTIONS(1488), + [sym___double_quote] = ACTIONS(1480), + [sym___single_quote] = ACTIONS(1482), + [sym___c_double_quote] = ACTIONS(1484), + [sym___c_single_quote] = ACTIONS(1486), + [sym___r_double_quote] = ACTIONS(1488), + [sym___r_single_quote] = ACTIONS(1490), }, [802] = { [sym_line_comment] = STATE(802), [sym_block_comment] = STATE(802), - [sym__expression] = STATE(2831), - [sym__expression_without_blocks] = STATE(2300), - [sym__expression_with_blocks] = STATE(2300), - [sym_inc_expression] = STATE(2307), - [sym_dec_expression] = STATE(2307), - [sym_or_block_expression] = STATE(2307), - [sym_option_propagation_expression] = STATE(2307), - [sym_result_propagation_expression] = STATE(2307), - [sym_anon_struct_value_expression] = STATE(2380), - [sym_go_expression] = STATE(2307), - [sym_spawn_expression] = STATE(2307), - [sym_parenthesized_expression] = STATE(2307), - [sym_call_expression] = STATE(2307), - [sym_type_initializer] = STATE(2380), - [sym_function_literal] = STATE(2307), - [sym_reference_expression] = STATE(2949), - [sym_type_reference_expression] = STATE(3541), - [sym_unary_expression] = STATE(2307), - [sym_receive_expression] = STATE(2307), - [sym_binary_expression] = STATE(2307), - [sym_as_type_cast_expression] = STATE(2307), - [sym__max_group] = STATE(2307), - [sym_literal] = STATE(2292), - [sym_map_init_expression] = STATE(2380), - [sym_array_creation] = STATE(2307), - [sym_fixed_array_creation] = STATE(2307), - [sym_selector_expression] = STATE(2950), - [sym_index_expression] = STATE(2307), - [sym_slice_expression] = STATE(2307), - [sym_if_expression] = STATE(2380), - [sym_compile_time_if_expression] = STATE(2380), - [sym_is_expression] = STATE(2307), - [sym_in_expression] = STATE(2307), - [sym_enum_fetch] = STATE(2307), - [sym_match_expression] = STATE(2380), - [sym_select_expression] = STATE(2380), - [sym_lock_expression] = STATE(2380), - [sym_unsafe_expression] = STATE(2380), - [sym_sql_expression] = STATE(2380), - [sym_c_string_literal] = STATE(2308), - [sym_raw_string_literal] = STATE(2308), - [sym_interpreted_string_literal] = STATE(2308), - [sym_mutability_modifiers] = STATE(939), - [sym_plain_type] = STATE(4297), - [sym__plain_type_without_special] = STATE(2302), - [sym_anon_struct_type] = STATE(2303), - [sym_multi_return_type] = STATE(2302), - [sym_result_type] = STATE(2302), - [sym_option_type] = STATE(2302), - [sym_qualified_type] = STATE(3541), - [sym_fixed_array_type] = STATE(2303), - [sym_array_type] = STATE(2303), - [sym_pointer_type] = STATE(2303), - [sym_wrong_pointer_type] = STATE(2303), - [sym_map_type] = STATE(2303), - [sym_channel_type] = STATE(2303), - [sym_shared_type] = STATE(2303), - [sym_thread_type] = STATE(2303), - [sym_atomic_type] = STATE(2303), - [sym_generic_type] = STATE(2303), - [sym_function_type] = STATE(2303), - [sym_identifier] = ACTIONS(2189), + [sym__expression] = STATE(218), + [sym__expression_without_blocks] = STATE(401), + [sym__expression_with_blocks] = STATE(401), + [sym_inc_expression] = STATE(399), + [sym_dec_expression] = STATE(399), + [sym_or_block_expression] = STATE(399), + [sym_option_propagation_expression] = STATE(399), + [sym_result_propagation_expression] = STATE(399), + [sym_anon_struct_value_expression] = STATE(395), + [sym_go_expression] = STATE(399), + [sym_spawn_expression] = STATE(399), + [sym_parenthesized_expression] = STATE(399), + [sym_call_expression] = STATE(399), + [sym_type_initializer] = STATE(395), + [sym_function_literal] = STATE(399), + [sym_reference_expression] = STATE(393), + [sym_type_reference_expression] = STATE(3460), + [sym_unary_expression] = STATE(399), + [sym_receive_expression] = STATE(399), + [sym_binary_expression] = STATE(399), + [sym_as_type_cast_expression] = STATE(399), + [sym__max_group] = STATE(399), + [sym_literal] = STATE(455), + [sym_map_init_expression] = STATE(395), + [sym_array_creation] = STATE(399), + [sym_fixed_array_creation] = STATE(399), + [sym_selector_expression] = STATE(399), + [sym_index_expression] = STATE(399), + [sym_slice_expression] = STATE(399), + [sym_if_expression] = STATE(395), + [sym_compile_time_if_expression] = STATE(395), + [sym_is_expression] = STATE(399), + [sym_in_expression] = STATE(399), + [sym_enum_fetch] = STATE(399), + [sym_match_expression] = STATE(395), + [sym_select_expression] = STATE(395), + [sym_lock_expression] = STATE(395), + [sym_unsafe_expression] = STATE(395), + [sym_sql_expression] = STATE(395), + [sym_c_string_literal] = STATE(479), + [sym_raw_string_literal] = STATE(479), + [sym_interpreted_string_literal] = STATE(479), + [sym_mutability_modifiers] = STATE(845), + [sym_plain_type] = STATE(4195), + [sym__plain_type_without_special] = STATE(2360), + [sym_anon_struct_type] = STATE(2362), + [sym_multi_return_type] = STATE(2360), + [sym_result_type] = STATE(2360), + [sym_option_type] = STATE(2360), + [sym_qualified_type] = STATE(3460), + [sym_fixed_array_type] = STATE(2362), + [sym_array_type] = STATE(2362), + [sym_pointer_type] = STATE(2362), + [sym_wrong_pointer_type] = STATE(2362), + [sym_map_type] = STATE(2362), + [sym_channel_type] = STATE(2362), + [sym_shared_type] = STATE(2362), + [sym_thread_type] = STATE(2362), + [sym_atomic_type] = STATE(2362), + [sym_generic_type] = STATE(2362), + [sym_function_type] = STATE(2362), + [sym_identifier] = ACTIONS(3184), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1428), - [anon_sym_LBRACE] = ACTIONS(1430), - [anon_sym_LPAREN] = ACTIONS(1432), - [anon_sym_fn] = ACTIONS(1434), - [anon_sym_PLUS] = ACTIONS(1436), - [anon_sym_DASH] = ACTIONS(1436), - [anon_sym_STAR] = ACTIONS(1438), - [anon_sym_struct] = ACTIONS(1440), + [anon_sym_DOT] = ACTIONS(17), + [anon_sym_LBRACE] = ACTIONS(3186), + [anon_sym_LPAREN] = ACTIONS(23), + [anon_sym_fn] = ACTIONS(485), + [anon_sym_PLUS] = ACTIONS(31), + [anon_sym_DASH] = ACTIONS(31), + [anon_sym_STAR] = ACTIONS(33), + [anon_sym_struct] = ACTIONS(487), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(1442), - [anon_sym_go] = ACTIONS(1444), - [anon_sym_spawn] = ACTIONS(1446), - [anon_sym_json_DOTdecode] = ACTIONS(1448), - [anon_sym_LBRACK2] = ACTIONS(1450), - [anon_sym_TILDE] = ACTIONS(1436), - [anon_sym_CARET] = ACTIONS(1436), - [anon_sym_AMP] = ACTIONS(1452), - [anon_sym_LT_DASH] = ACTIONS(1454), - [sym_none] = ACTIONS(1456), - [sym_true] = ACTIONS(1456), - [sym_false] = ACTIONS(1456), - [sym_nil] = ACTIONS(1456), - [anon_sym_if] = ACTIONS(1827), - [anon_sym_DOLLARif] = ACTIONS(1460), - [anon_sym_match] = ACTIONS(1462), - [anon_sym_select] = ACTIONS(1464), - [anon_sym_lock] = ACTIONS(1466), - [anon_sym_rlock] = ACTIONS(1466), - [anon_sym_unsafe] = ACTIONS(1833), - [anon_sym_sql] = ACTIONS(1470), - [sym_int_literal] = ACTIONS(1456), - [sym_float_literal] = ACTIONS(1472), - [sym_rune_literal] = ACTIONS(1472), - [sym_pseudo_compile_time_identifier] = ACTIONS(1474), + [anon_sym_BANG] = ACTIONS(49), + [anon_sym_go] = ACTIONS(51), + [anon_sym_spawn] = ACTIONS(53), + [anon_sym_json_DOTdecode] = ACTIONS(55), + [anon_sym_LBRACK2] = ACTIONS(489), + [anon_sym_TILDE] = ACTIONS(31), + [anon_sym_CARET] = ACTIONS(31), + [anon_sym_AMP] = ACTIONS(59), + [anon_sym_LT_DASH] = ACTIONS(61), + [sym_none] = ACTIONS(63), + [sym_true] = ACTIONS(63), + [sym_false] = ACTIONS(63), + [sym_nil] = ACTIONS(63), + [anon_sym_if] = ACTIONS(65), + [anon_sym_DOLLARif] = ACTIONS(67), + [anon_sym_match] = ACTIONS(69), + [anon_sym_select] = ACTIONS(71), + [anon_sym_lock] = ACTIONS(73), + [anon_sym_rlock] = ACTIONS(73), + [anon_sym_unsafe] = ACTIONS(75), + [anon_sym_sql] = ACTIONS(77), + [sym_int_literal] = ACTIONS(63), + [sym_float_literal] = ACTIONS(79), + [sym_rune_literal] = ACTIONS(79), + [sym_pseudo_compile_time_identifier] = ACTIONS(81), [anon_sym_shared] = ACTIONS(83), [anon_sym_map_LBRACK] = ACTIONS(85), [anon_sym_chan] = ACTIONS(87), [anon_sym_thread] = ACTIONS(89), [anon_sym_atomic] = ACTIONS(91), - [sym___double_quote] = ACTIONS(1478), - [sym___single_quote] = ACTIONS(1480), - [sym___c_double_quote] = ACTIONS(1482), - [sym___c_single_quote] = ACTIONS(1484), - [sym___r_double_quote] = ACTIONS(1486), - [sym___r_single_quote] = ACTIONS(1488), + [sym___double_quote] = ACTIONS(115), + [sym___single_quote] = ACTIONS(117), + [sym___c_double_quote] = ACTIONS(119), + [sym___c_single_quote] = ACTIONS(121), + [sym___r_double_quote] = ACTIONS(123), + [sym___r_single_quote] = ACTIONS(125), }, [803] = { [sym_line_comment] = STATE(803), [sym_block_comment] = STATE(803), - [sym__expression] = STATE(2263), - [sym__expression_without_blocks] = STATE(2300), - [sym__expression_with_blocks] = STATE(2300), - [sym_inc_expression] = STATE(2307), - [sym_dec_expression] = STATE(2307), - [sym_or_block_expression] = STATE(2307), - [sym_option_propagation_expression] = STATE(2307), - [sym_result_propagation_expression] = STATE(2307), - [sym_anon_struct_value_expression] = STATE(2380), - [sym_go_expression] = STATE(2307), - [sym_spawn_expression] = STATE(2307), - [sym_parenthesized_expression] = STATE(2307), - [sym_call_expression] = STATE(2307), - [sym_type_initializer] = STATE(2380), - [sym_function_literal] = STATE(2307), - [sym_reference_expression] = STATE(2311), - [sym_type_reference_expression] = STATE(3541), - [sym_unary_expression] = STATE(2307), - [sym_receive_expression] = STATE(2307), - [sym_binary_expression] = STATE(2307), - [sym_as_type_cast_expression] = STATE(2307), - [sym__max_group] = STATE(2307), - [sym_literal] = STATE(2292), - [sym_map_init_expression] = STATE(2380), - [sym_array_creation] = STATE(2307), - [sym_fixed_array_creation] = STATE(2307), - [sym_selector_expression] = STATE(2307), - [sym_index_expression] = STATE(2307), - [sym_slice_expression] = STATE(2307), - [sym_if_expression] = STATE(2380), - [sym_compile_time_if_expression] = STATE(2380), - [sym_is_expression] = STATE(2307), - [sym_in_expression] = STATE(2307), - [sym_enum_fetch] = STATE(2307), - [sym_match_expression] = STATE(2380), - [sym_select_expression] = STATE(2380), - [sym_lock_expression] = STATE(2380), - [sym_unsafe_expression] = STATE(2380), - [sym_sql_expression] = STATE(2380), - [sym_c_string_literal] = STATE(2308), - [sym_raw_string_literal] = STATE(2308), - [sym_interpreted_string_literal] = STATE(2308), + [sym__expression] = STATE(2267), + [sym__expression_without_blocks] = STATE(2347), + [sym__expression_with_blocks] = STATE(2347), + [sym_inc_expression] = STATE(2379), + [sym_dec_expression] = STATE(2379), + [sym_or_block_expression] = STATE(2379), + [sym_option_propagation_expression] = STATE(2379), + [sym_result_propagation_expression] = STATE(2379), + [sym_anon_struct_value_expression] = STATE(2378), + [sym_go_expression] = STATE(2379), + [sym_spawn_expression] = STATE(2379), + [sym_parenthesized_expression] = STATE(2379), + [sym_call_expression] = STATE(2379), + [sym_type_initializer] = STATE(2378), + [sym_function_literal] = STATE(2379), + [sym_reference_expression] = STATE(2377), + [sym_type_reference_expression] = STATE(3460), + [sym_unary_expression] = STATE(2379), + [sym_receive_expression] = STATE(2379), + [sym_binary_expression] = STATE(2379), + [sym_as_type_cast_expression] = STATE(2379), + [sym__max_group] = STATE(2379), + [sym_literal] = STATE(2392), + [sym_map_init_expression] = STATE(2378), + [sym_array_creation] = STATE(2379), + [sym_fixed_array_creation] = STATE(2379), + [sym_selector_expression] = STATE(2379), + [sym_index_expression] = STATE(2379), + [sym_slice_expression] = STATE(2379), + [sym_if_expression] = STATE(2378), + [sym_compile_time_if_expression] = STATE(2378), + [sym_is_expression] = STATE(2379), + [sym_in_expression] = STATE(2379), + [sym_enum_fetch] = STATE(2379), + [sym_match_expression] = STATE(2378), + [sym_select_expression] = STATE(2378), + [sym_lock_expression] = STATE(2378), + [sym_unsafe_expression] = STATE(2378), + [sym_sql_expression] = STATE(2378), + [sym_c_string_literal] = STATE(2401), + [sym_raw_string_literal] = STATE(2401), + [sym_interpreted_string_literal] = STATE(2401), [sym_mutability_modifiers] = STATE(939), - [sym_plain_type] = STATE(3560), - [sym__plain_type_without_special] = STATE(2302), - [sym_anon_struct_type] = STATE(2303), - [sym_multi_return_type] = STATE(2302), - [sym_result_type] = STATE(2302), - [sym_option_type] = STATE(2302), - [sym_qualified_type] = STATE(3541), - [sym_fixed_array_type] = STATE(2303), - [sym_array_type] = STATE(2303), - [sym_pointer_type] = STATE(2303), - [sym_wrong_pointer_type] = STATE(2303), - [sym_map_type] = STATE(2303), - [sym_channel_type] = STATE(2303), - [sym_shared_type] = STATE(2303), - [sym_thread_type] = STATE(2303), - [sym_atomic_type] = STATE(2303), - [sym_generic_type] = STATE(2303), - [sym_function_type] = STATE(2303), - [sym_identifier] = ACTIONS(1807), + [sym_plain_type] = STATE(4160), + [sym__plain_type_without_special] = STATE(2360), + [sym_anon_struct_type] = STATE(2362), + [sym_multi_return_type] = STATE(2360), + [sym_result_type] = STATE(2360), + [sym_option_type] = STATE(2360), + [sym_qualified_type] = STATE(3460), + [sym_fixed_array_type] = STATE(2362), + [sym_array_type] = STATE(2362), + [sym_pointer_type] = STATE(2362), + [sym_wrong_pointer_type] = STATE(2362), + [sym_map_type] = STATE(2362), + [sym_channel_type] = STATE(2362), + [sym_shared_type] = STATE(2362), + [sym_thread_type] = STATE(2362), + [sym_atomic_type] = STATE(2362), + [sym_generic_type] = STATE(2362), + [sym_function_type] = STATE(2362), + [sym_identifier] = ACTIONS(1815), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1428), - [anon_sym_LBRACE] = ACTIONS(1430), - [anon_sym_LPAREN] = ACTIONS(1432), - [anon_sym_fn] = ACTIONS(1434), - [anon_sym_PLUS] = ACTIONS(3064), - [anon_sym_DASH] = ACTIONS(3064), - [anon_sym_STAR] = ACTIONS(3066), - [anon_sym_struct] = ACTIONS(1440), + [anon_sym_DOT] = ACTIONS(1430), + [anon_sym_LBRACE] = ACTIONS(1432), + [anon_sym_LPAREN] = ACTIONS(1434), + [anon_sym_fn] = ACTIONS(1436), + [anon_sym_PLUS] = ACTIONS(3090), + [anon_sym_DASH] = ACTIONS(3090), + [anon_sym_STAR] = ACTIONS(3092), + [anon_sym_struct] = ACTIONS(1442), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(3068), - [anon_sym_go] = ACTIONS(3070), - [anon_sym_spawn] = ACTIONS(3072), - [anon_sym_json_DOTdecode] = ACTIONS(1448), - [anon_sym_LBRACK2] = ACTIONS(1821), - [anon_sym_TILDE] = ACTIONS(3064), - [anon_sym_CARET] = ACTIONS(3064), - [anon_sym_AMP] = ACTIONS(3074), - [anon_sym_LT_DASH] = ACTIONS(3076), - [sym_none] = ACTIONS(1456), - [sym_true] = ACTIONS(1456), - [sym_false] = ACTIONS(1456), - [sym_nil] = ACTIONS(1456), - [anon_sym_if] = ACTIONS(1827), - [anon_sym_DOLLARif] = ACTIONS(1460), - [anon_sym_match] = ACTIONS(1462), - [anon_sym_select] = ACTIONS(3078), - [anon_sym_lock] = ACTIONS(3080), - [anon_sym_rlock] = ACTIONS(3080), - [anon_sym_unsafe] = ACTIONS(1833), - [anon_sym_sql] = ACTIONS(1470), - [sym_int_literal] = ACTIONS(1456), - [sym_float_literal] = ACTIONS(1472), - [sym_rune_literal] = ACTIONS(1472), - [sym_pseudo_compile_time_identifier] = ACTIONS(1474), + [anon_sym_BANG] = ACTIONS(3094), + [anon_sym_go] = ACTIONS(3096), + [anon_sym_spawn] = ACTIONS(3098), + [anon_sym_json_DOTdecode] = ACTIONS(1450), + [anon_sym_LBRACK2] = ACTIONS(1827), + [anon_sym_TILDE] = ACTIONS(3090), + [anon_sym_CARET] = ACTIONS(3090), + [anon_sym_AMP] = ACTIONS(3100), + [anon_sym_LT_DASH] = ACTIONS(3102), + [sym_none] = ACTIONS(1458), + [sym_true] = ACTIONS(1458), + [sym_false] = ACTIONS(1458), + [sym_nil] = ACTIONS(1458), + [anon_sym_if] = ACTIONS(1833), + [anon_sym_DOLLARif] = ACTIONS(1462), + [anon_sym_match] = ACTIONS(1464), + [anon_sym_select] = ACTIONS(3104), + [anon_sym_lock] = ACTIONS(3106), + [anon_sym_rlock] = ACTIONS(3106), + [anon_sym_unsafe] = ACTIONS(1839), + [anon_sym_sql] = ACTIONS(1472), + [sym_int_literal] = ACTIONS(1458), + [sym_float_literal] = ACTIONS(1474), + [sym_rune_literal] = ACTIONS(1474), + [sym_pseudo_compile_time_identifier] = ACTIONS(1476), [anon_sym_shared] = ACTIONS(83), [anon_sym_map_LBRACK] = ACTIONS(85), [anon_sym_chan] = ACTIONS(87), [anon_sym_thread] = ACTIONS(89), [anon_sym_atomic] = ACTIONS(91), - [sym___double_quote] = ACTIONS(1478), - [sym___single_quote] = ACTIONS(1480), - [sym___c_double_quote] = ACTIONS(1482), - [sym___c_single_quote] = ACTIONS(1484), - [sym___r_double_quote] = ACTIONS(1486), - [sym___r_single_quote] = ACTIONS(1488), + [sym___double_quote] = ACTIONS(1480), + [sym___single_quote] = ACTIONS(1482), + [sym___c_double_quote] = ACTIONS(1484), + [sym___c_single_quote] = ACTIONS(1486), + [sym___r_double_quote] = ACTIONS(1488), + [sym___r_single_quote] = ACTIONS(1490), }, [804] = { [sym_line_comment] = STATE(804), [sym_block_comment] = STATE(804), - [sym__expression] = STATE(2767), - [sym__expression_without_blocks] = STATE(2300), - [sym__expression_with_blocks] = STATE(2300), - [sym_inc_expression] = STATE(2307), - [sym_dec_expression] = STATE(2307), - [sym_or_block_expression] = STATE(2307), - [sym_option_propagation_expression] = STATE(2307), - [sym_result_propagation_expression] = STATE(2307), - [sym_anon_struct_value_expression] = STATE(2380), - [sym_go_expression] = STATE(2307), - [sym_spawn_expression] = STATE(2307), - [sym_parenthesized_expression] = STATE(2307), - [sym_call_expression] = STATE(2307), - [sym_type_initializer] = STATE(2380), - [sym_function_literal] = STATE(2307), - [sym_reference_expression] = STATE(2311), - [sym_type_reference_expression] = STATE(3541), - [sym_unary_expression] = STATE(2307), - [sym_receive_expression] = STATE(2307), - [sym_binary_expression] = STATE(2307), - [sym_as_type_cast_expression] = STATE(2307), - [sym__max_group] = STATE(2307), - [sym_literal] = STATE(2292), - [sym_map_init_expression] = STATE(2380), - [sym_array_creation] = STATE(2307), - [sym_fixed_array_creation] = STATE(2307), - [sym_selector_expression] = STATE(2307), - [sym_index_expression] = STATE(2307), - [sym_slice_expression] = STATE(2307), - [sym_if_expression] = STATE(2380), - [sym_compile_time_if_expression] = STATE(2380), - [sym_is_expression] = STATE(2307), - [sym_in_expression] = STATE(2307), - [sym_enum_fetch] = STATE(2307), - [sym_match_expression] = STATE(2380), - [sym_select_expression] = STATE(2380), - [sym_lock_expression] = STATE(2380), - [sym_unsafe_expression] = STATE(2380), - [sym_sql_expression] = STATE(2380), - [sym_c_string_literal] = STATE(2308), - [sym_raw_string_literal] = STATE(2308), - [sym_interpreted_string_literal] = STATE(2308), - [sym_mutability_modifiers] = STATE(939), - [sym_plain_type] = STATE(3552), - [sym__plain_type_without_special] = STATE(2302), - [sym_anon_struct_type] = STATE(2303), - [sym_multi_return_type] = STATE(2302), - [sym_result_type] = STATE(2302), - [sym_option_type] = STATE(2302), - [sym_qualified_type] = STATE(3541), - [sym_fixed_array_type] = STATE(2303), - [sym_array_type] = STATE(2303), - [sym_pointer_type] = STATE(2303), - [sym_wrong_pointer_type] = STATE(2303), - [sym_map_type] = STATE(2303), - [sym_channel_type] = STATE(2303), - [sym_shared_type] = STATE(2303), - [sym_thread_type] = STATE(2303), - [sym_atomic_type] = STATE(2303), - [sym_generic_type] = STATE(2303), - [sym_function_type] = STATE(2303), - [sym_identifier] = ACTIONS(1426), + [sym__expression] = STATE(2266), + [sym__expression_without_blocks] = STATE(2162), + [sym__expression_with_blocks] = STATE(2162), + [sym_inc_expression] = STATE(2161), + [sym_dec_expression] = STATE(2161), + [sym_or_block_expression] = STATE(2161), + [sym_option_propagation_expression] = STATE(2161), + [sym_result_propagation_expression] = STATE(2161), + [sym_anon_struct_value_expression] = STATE(2160), + [sym_go_expression] = STATE(2161), + [sym_spawn_expression] = STATE(2161), + [sym_parenthesized_expression] = STATE(2161), + [sym_call_expression] = STATE(2161), + [sym_type_initializer] = STATE(2160), + [sym_function_literal] = STATE(2161), + [sym_reference_expression] = STATE(2159), + [sym_type_reference_expression] = STATE(3460), + [sym_unary_expression] = STATE(2161), + [sym_receive_expression] = STATE(2161), + [sym_binary_expression] = STATE(2161), + [sym_as_type_cast_expression] = STATE(2161), + [sym__max_group] = STATE(2161), + [sym_literal] = STATE(2164), + [sym_map_init_expression] = STATE(2160), + [sym_array_creation] = STATE(2161), + [sym_fixed_array_creation] = STATE(2161), + [sym_selector_expression] = STATE(2161), + [sym_index_expression] = STATE(2161), + [sym_slice_expression] = STATE(2161), + [sym_if_expression] = STATE(2160), + [sym_compile_time_if_expression] = STATE(2160), + [sym_is_expression] = STATE(2161), + [sym_in_expression] = STATE(2161), + [sym_enum_fetch] = STATE(2161), + [sym_match_expression] = STATE(2160), + [sym_select_expression] = STATE(2160), + [sym_lock_expression] = STATE(2160), + [sym_unsafe_expression] = STATE(2160), + [sym_sql_expression] = STATE(2160), + [sym_c_string_literal] = STATE(2166), + [sym_raw_string_literal] = STATE(2166), + [sym_interpreted_string_literal] = STATE(2166), + [sym_mutability_modifiers] = STATE(575), + [sym_plain_type] = STATE(4173), + [sym__plain_type_without_special] = STATE(2360), + [sym_anon_struct_type] = STATE(2362), + [sym_multi_return_type] = STATE(2360), + [sym_result_type] = STATE(2360), + [sym_option_type] = STATE(2360), + [sym_qualified_type] = STATE(3460), + [sym_fixed_array_type] = STATE(2362), + [sym_array_type] = STATE(2362), + [sym_pointer_type] = STATE(2362), + [sym_wrong_pointer_type] = STATE(2362), + [sym_map_type] = STATE(2362), + [sym_channel_type] = STATE(2362), + [sym_shared_type] = STATE(2362), + [sym_thread_type] = STATE(2362), + [sym_atomic_type] = STATE(2362), + [sym_generic_type] = STATE(2362), + [sym_function_type] = STATE(2362), + [sym_identifier] = ACTIONS(3292), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1428), - [anon_sym_LBRACE] = ACTIONS(1430), - [anon_sym_LPAREN] = ACTIONS(1432), - [anon_sym_fn] = ACTIONS(1434), - [anon_sym_PLUS] = ACTIONS(2491), - [anon_sym_DASH] = ACTIONS(2491), - [anon_sym_STAR] = ACTIONS(2493), - [anon_sym_struct] = ACTIONS(1440), + [anon_sym_DOT] = ACTIONS(3294), + [anon_sym_LBRACE] = ACTIONS(3296), + [anon_sym_LPAREN] = ACTIONS(3298), + [anon_sym_fn] = ACTIONS(3300), + [anon_sym_PLUS] = ACTIONS(3302), + [anon_sym_DASH] = ACTIONS(3302), + [anon_sym_STAR] = ACTIONS(3304), + [anon_sym_struct] = ACTIONS(3306), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(2495), - [anon_sym_go] = ACTIONS(2497), - [anon_sym_spawn] = ACTIONS(2499), - [anon_sym_json_DOTdecode] = ACTIONS(1448), - [anon_sym_LBRACK2] = ACTIONS(1450), - [anon_sym_TILDE] = ACTIONS(2491), - [anon_sym_CARET] = ACTIONS(2491), - [anon_sym_AMP] = ACTIONS(2501), - [anon_sym_LT_DASH] = ACTIONS(2503), - [sym_none] = ACTIONS(1456), - [sym_true] = ACTIONS(1456), - [sym_false] = ACTIONS(1456), - [sym_nil] = ACTIONS(1456), - [anon_sym_if] = ACTIONS(1827), - [anon_sym_DOLLARif] = ACTIONS(1460), - [anon_sym_match] = ACTIONS(1462), - [anon_sym_select] = ACTIONS(1464), - [anon_sym_lock] = ACTIONS(1466), - [anon_sym_rlock] = ACTIONS(1466), - [anon_sym_unsafe] = ACTIONS(1833), - [anon_sym_sql] = ACTIONS(1470), - [sym_int_literal] = ACTIONS(1456), - [sym_float_literal] = ACTIONS(1472), - [sym_rune_literal] = ACTIONS(1472), - [sym_pseudo_compile_time_identifier] = ACTIONS(1474), + [anon_sym_BANG] = ACTIONS(3308), + [anon_sym_go] = ACTIONS(3310), + [anon_sym_spawn] = ACTIONS(3312), + [anon_sym_json_DOTdecode] = ACTIONS(3314), + [anon_sym_LBRACK2] = ACTIONS(3316), + [anon_sym_TILDE] = ACTIONS(3302), + [anon_sym_CARET] = ACTIONS(3302), + [anon_sym_AMP] = ACTIONS(3318), + [anon_sym_LT_DASH] = ACTIONS(3320), + [sym_none] = ACTIONS(3322), + [sym_true] = ACTIONS(3322), + [sym_false] = ACTIONS(3322), + [sym_nil] = ACTIONS(3322), + [anon_sym_if] = ACTIONS(3324), + [anon_sym_DOLLARif] = ACTIONS(3326), + [anon_sym_match] = ACTIONS(3328), + [anon_sym_select] = ACTIONS(3330), + [anon_sym_lock] = ACTIONS(3332), + [anon_sym_rlock] = ACTIONS(3332), + [anon_sym_unsafe] = ACTIONS(3334), + [anon_sym_sql] = ACTIONS(3336), + [sym_int_literal] = ACTIONS(3322), + [sym_float_literal] = ACTIONS(3338), + [sym_rune_literal] = ACTIONS(3338), + [sym_pseudo_compile_time_identifier] = ACTIONS(3340), [anon_sym_shared] = ACTIONS(83), [anon_sym_map_LBRACK] = ACTIONS(85), [anon_sym_chan] = ACTIONS(87), [anon_sym_thread] = ACTIONS(89), [anon_sym_atomic] = ACTIONS(91), - [sym___double_quote] = ACTIONS(1478), - [sym___single_quote] = ACTIONS(1480), - [sym___c_double_quote] = ACTIONS(1482), - [sym___c_single_quote] = ACTIONS(1484), - [sym___r_double_quote] = ACTIONS(1486), - [sym___r_single_quote] = ACTIONS(1488), + [sym___double_quote] = ACTIONS(3342), + [sym___single_quote] = ACTIONS(3344), + [sym___c_double_quote] = ACTIONS(3346), + [sym___c_single_quote] = ACTIONS(3348), + [sym___r_double_quote] = ACTIONS(3350), + [sym___r_single_quote] = ACTIONS(3352), }, [805] = { [sym_line_comment] = STATE(805), [sym_block_comment] = STATE(805), - [sym__expression] = STATE(2263), - [sym__expression_without_blocks] = STATE(2300), - [sym__expression_with_blocks] = STATE(2300), - [sym_inc_expression] = STATE(2307), - [sym_dec_expression] = STATE(2307), - [sym_or_block_expression] = STATE(2307), - [sym_option_propagation_expression] = STATE(2307), - [sym_result_propagation_expression] = STATE(2307), - [sym_anon_struct_value_expression] = STATE(2380), - [sym_go_expression] = STATE(2307), - [sym_spawn_expression] = STATE(2307), - [sym_parenthesized_expression] = STATE(2307), - [sym_call_expression] = STATE(2307), - [sym_type_initializer] = STATE(2380), - [sym_function_literal] = STATE(2307), - [sym_reference_expression] = STATE(2311), - [sym_type_reference_expression] = STATE(3541), - [sym_unary_expression] = STATE(2307), - [sym_receive_expression] = STATE(2307), - [sym_binary_expression] = STATE(2307), - [sym_as_type_cast_expression] = STATE(2307), - [sym__max_group] = STATE(2307), - [sym_literal] = STATE(2292), - [sym_map_init_expression] = STATE(2380), - [sym_array_creation] = STATE(2307), - [sym_fixed_array_creation] = STATE(2307), - [sym_selector_expression] = STATE(2307), - [sym_index_expression] = STATE(2307), - [sym_slice_expression] = STATE(2307), - [sym_if_expression] = STATE(2380), - [sym_compile_time_if_expression] = STATE(2380), - [sym_is_expression] = STATE(2307), - [sym_in_expression] = STATE(2307), - [sym_enum_fetch] = STATE(2307), - [sym_match_expression] = STATE(2380), - [sym_select_expression] = STATE(2380), - [sym_lock_expression] = STATE(2380), - [sym_unsafe_expression] = STATE(2380), - [sym_sql_expression] = STATE(2380), - [sym_c_string_literal] = STATE(2308), - [sym_raw_string_literal] = STATE(2308), - [sym_interpreted_string_literal] = STATE(2308), - [sym_mutability_modifiers] = STATE(939), - [sym_plain_type] = STATE(4297), - [sym__plain_type_without_special] = STATE(2302), - [sym_anon_struct_type] = STATE(2303), - [sym_multi_return_type] = STATE(2302), - [sym_result_type] = STATE(2302), - [sym_option_type] = STATE(2302), - [sym_qualified_type] = STATE(3541), - [sym_fixed_array_type] = STATE(2303), - [sym_array_type] = STATE(2303), - [sym_pointer_type] = STATE(2303), - [sym_wrong_pointer_type] = STATE(2303), - [sym_map_type] = STATE(2303), - [sym_channel_type] = STATE(2303), - [sym_shared_type] = STATE(2303), - [sym_thread_type] = STATE(2303), - [sym_atomic_type] = STATE(2303), - [sym_generic_type] = STATE(2303), - [sym_function_type] = STATE(2303), - [sym_identifier] = ACTIONS(1807), + [sym__expression] = STATE(2374), + [sym__expression_without_blocks] = STATE(2468), + [sym__expression_with_blocks] = STATE(2468), + [sym_inc_expression] = STATE(2469), + [sym_dec_expression] = STATE(2469), + [sym_or_block_expression] = STATE(2469), + [sym_option_propagation_expression] = STATE(2469), + [sym_result_propagation_expression] = STATE(2469), + [sym_anon_struct_value_expression] = STATE(2470), + [sym_go_expression] = STATE(2469), + [sym_spawn_expression] = STATE(2469), + [sym_parenthesized_expression] = STATE(2469), + [sym_call_expression] = STATE(2469), + [sym_type_initializer] = STATE(2470), + [sym_function_literal] = STATE(2469), + [sym_reference_expression] = STATE(2487), + [sym_type_reference_expression] = STATE(3460), + [sym_unary_expression] = STATE(2469), + [sym_receive_expression] = STATE(2469), + [sym_binary_expression] = STATE(2469), + [sym_as_type_cast_expression] = STATE(2469), + [sym__max_group] = STATE(2469), + [sym_literal] = STATE(2465), + [sym_map_init_expression] = STATE(2470), + [sym_array_creation] = STATE(2469), + [sym_fixed_array_creation] = STATE(2469), + [sym_selector_expression] = STATE(2469), + [sym_index_expression] = STATE(2469), + [sym_slice_expression] = STATE(2469), + [sym_if_expression] = STATE(2470), + [sym_compile_time_if_expression] = STATE(2470), + [sym_is_expression] = STATE(2469), + [sym_in_expression] = STATE(2469), + [sym_enum_fetch] = STATE(2469), + [sym_match_expression] = STATE(2470), + [sym_select_expression] = STATE(2470), + [sym_lock_expression] = STATE(2470), + [sym_unsafe_expression] = STATE(2470), + [sym_sql_expression] = STATE(2470), + [sym_c_string_literal] = STATE(2464), + [sym_raw_string_literal] = STATE(2464), + [sym_interpreted_string_literal] = STATE(2464), + [sym_mutability_modifiers] = STATE(561), + [sym_plain_type] = STATE(4038), + [sym__plain_type_without_special] = STATE(2360), + [sym_anon_struct_type] = STATE(2362), + [sym_multi_return_type] = STATE(2360), + [sym_result_type] = STATE(2360), + [sym_option_type] = STATE(2360), + [sym_qualified_type] = STATE(3460), + [sym_fixed_array_type] = STATE(2362), + [sym_array_type] = STATE(2362), + [sym_pointer_type] = STATE(2362), + [sym_wrong_pointer_type] = STATE(2362), + [sym_map_type] = STATE(2362), + [sym_channel_type] = STATE(2362), + [sym_shared_type] = STATE(2362), + [sym_thread_type] = STATE(2362), + [sym_atomic_type] = STATE(2362), + [sym_generic_type] = STATE(2362), + [sym_function_type] = STATE(2362), + [sym_identifier] = ACTIONS(1691), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1428), - [anon_sym_LBRACE] = ACTIONS(1430), - [anon_sym_LPAREN] = ACTIONS(1432), - [anon_sym_fn] = ACTIONS(1434), - [anon_sym_PLUS] = ACTIONS(3064), - [anon_sym_DASH] = ACTIONS(3064), - [anon_sym_STAR] = ACTIONS(3066), - [anon_sym_struct] = ACTIONS(1440), + [anon_sym_DOT] = ACTIONS(1693), + [anon_sym_LBRACE] = ACTIONS(2151), + [anon_sym_LPAREN] = ACTIONS(2153), + [anon_sym_fn] = ACTIONS(1699), + [anon_sym_PLUS] = ACTIONS(2155), + [anon_sym_DASH] = ACTIONS(2155), + [anon_sym_STAR] = ACTIONS(2157), + [anon_sym_struct] = ACTIONS(1705), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(3068), - [anon_sym_go] = ACTIONS(3070), - [anon_sym_spawn] = ACTIONS(3072), - [anon_sym_json_DOTdecode] = ACTIONS(1448), - [anon_sym_LBRACK2] = ACTIONS(1821), - [anon_sym_TILDE] = ACTIONS(3064), - [anon_sym_CARET] = ACTIONS(3064), - [anon_sym_AMP] = ACTIONS(3074), - [anon_sym_LT_DASH] = ACTIONS(3076), - [sym_none] = ACTIONS(1456), - [sym_true] = ACTIONS(1456), - [sym_false] = ACTIONS(1456), - [sym_nil] = ACTIONS(1456), - [anon_sym_if] = ACTIONS(1827), - [anon_sym_DOLLARif] = ACTIONS(1460), - [anon_sym_match] = ACTIONS(1462), - [anon_sym_select] = ACTIONS(3078), - [anon_sym_lock] = ACTIONS(3080), - [anon_sym_rlock] = ACTIONS(3080), - [anon_sym_unsafe] = ACTIONS(1833), - [anon_sym_sql] = ACTIONS(1470), - [sym_int_literal] = ACTIONS(1456), - [sym_float_literal] = ACTIONS(1472), - [sym_rune_literal] = ACTIONS(1472), - [sym_pseudo_compile_time_identifier] = ACTIONS(1474), + [anon_sym_BANG] = ACTIONS(2159), + [anon_sym_go] = ACTIONS(1709), + [anon_sym_spawn] = ACTIONS(1711), + [anon_sym_json_DOTdecode] = ACTIONS(2161), + [anon_sym_LBRACK2] = ACTIONS(2163), + [anon_sym_TILDE] = ACTIONS(2155), + [anon_sym_CARET] = ACTIONS(2155), + [anon_sym_AMP] = ACTIONS(2165), + [anon_sym_LT_DASH] = ACTIONS(2167), + [sym_none] = ACTIONS(1721), + [sym_true] = ACTIONS(1721), + [sym_false] = ACTIONS(1721), + [sym_nil] = ACTIONS(1721), + [anon_sym_if] = ACTIONS(1723), + [anon_sym_DOLLARif] = ACTIONS(1725), + [anon_sym_match] = ACTIONS(1727), + [anon_sym_select] = ACTIONS(1729), + [anon_sym_lock] = ACTIONS(1731), + [anon_sym_rlock] = ACTIONS(1731), + [anon_sym_unsafe] = ACTIONS(1733), + [anon_sym_sql] = ACTIONS(1735), + [sym_int_literal] = ACTIONS(1721), + [sym_float_literal] = ACTIONS(2169), + [sym_rune_literal] = ACTIONS(2169), + [sym_pseudo_compile_time_identifier] = ACTIONS(1737), [anon_sym_shared] = ACTIONS(83), [anon_sym_map_LBRACK] = ACTIONS(85), [anon_sym_chan] = ACTIONS(87), [anon_sym_thread] = ACTIONS(89), [anon_sym_atomic] = ACTIONS(91), - [sym___double_quote] = ACTIONS(1478), - [sym___single_quote] = ACTIONS(1480), - [sym___c_double_quote] = ACTIONS(1482), - [sym___c_single_quote] = ACTIONS(1484), - [sym___r_double_quote] = ACTIONS(1486), - [sym___r_single_quote] = ACTIONS(1488), + [sym___double_quote] = ACTIONS(2171), + [sym___single_quote] = ACTIONS(2173), + [sym___c_double_quote] = ACTIONS(2175), + [sym___c_single_quote] = ACTIONS(2177), + [sym___r_double_quote] = ACTIONS(2179), + [sym___r_single_quote] = ACTIONS(2181), }, [806] = { [sym_line_comment] = STATE(806), [sym_block_comment] = STATE(806), - [sym__expression] = STATE(2612), - [sym__expression_without_blocks] = STATE(2300), - [sym__expression_with_blocks] = STATE(2300), - [sym_inc_expression] = STATE(2307), - [sym_dec_expression] = STATE(2307), - [sym_or_block_expression] = STATE(2307), - [sym_option_propagation_expression] = STATE(2307), - [sym_result_propagation_expression] = STATE(2307), - [sym_anon_struct_value_expression] = STATE(2380), - [sym_go_expression] = STATE(2307), - [sym_spawn_expression] = STATE(2307), - [sym_parenthesized_expression] = STATE(2307), - [sym_call_expression] = STATE(2307), - [sym_type_initializer] = STATE(2380), - [sym_function_literal] = STATE(2307), - [sym_reference_expression] = STATE(2311), - [sym_type_reference_expression] = STATE(3541), - [sym_unary_expression] = STATE(2307), - [sym_receive_expression] = STATE(2307), - [sym_binary_expression] = STATE(2307), - [sym_as_type_cast_expression] = STATE(2307), - [sym__max_group] = STATE(2307), - [sym_literal] = STATE(2292), - [sym_map_init_expression] = STATE(2380), - [sym_array_creation] = STATE(2307), - [sym_fixed_array_creation] = STATE(2307), - [sym_selector_expression] = STATE(2307), - [sym_index_expression] = STATE(2307), - [sym_slice_expression] = STATE(2307), - [sym_if_expression] = STATE(2380), - [sym_compile_time_if_expression] = STATE(2380), - [sym_is_expression] = STATE(2307), - [sym_in_expression] = STATE(2307), - [sym_enum_fetch] = STATE(2307), - [sym_match_expression] = STATE(2380), - [sym_select_expression] = STATE(2380), - [sym_lock_expression] = STATE(2380), - [sym_unsafe_expression] = STATE(2380), - [sym_sql_expression] = STATE(2380), - [sym_c_string_literal] = STATE(2308), - [sym_raw_string_literal] = STATE(2308), - [sym_interpreted_string_literal] = STATE(2308), - [sym_mutability_modifiers] = STATE(939), - [sym_plain_type] = STATE(4297), - [sym__plain_type_without_special] = STATE(2302), - [sym_anon_struct_type] = STATE(2303), - [sym_multi_return_type] = STATE(2302), - [sym_result_type] = STATE(2302), - [sym_option_type] = STATE(2302), - [sym_qualified_type] = STATE(3541), - [sym_fixed_array_type] = STATE(2303), - [sym_array_type] = STATE(2303), - [sym_pointer_type] = STATE(2303), - [sym_wrong_pointer_type] = STATE(2303), - [sym_map_type] = STATE(2303), - [sym_channel_type] = STATE(2303), - [sym_shared_type] = STATE(2303), - [sym_thread_type] = STATE(2303), - [sym_atomic_type] = STATE(2303), - [sym_generic_type] = STATE(2303), - [sym_function_type] = STATE(2303), - [sym_identifier] = ACTIONS(1807), + [sym__expression] = STATE(2124), + [sym__expression_without_blocks] = STATE(2162), + [sym__expression_with_blocks] = STATE(2162), + [sym_inc_expression] = STATE(2161), + [sym_dec_expression] = STATE(2161), + [sym_or_block_expression] = STATE(2161), + [sym_option_propagation_expression] = STATE(2161), + [sym_result_propagation_expression] = STATE(2161), + [sym_anon_struct_value_expression] = STATE(2160), + [sym_go_expression] = STATE(2161), + [sym_spawn_expression] = STATE(2161), + [sym_parenthesized_expression] = STATE(2161), + [sym_call_expression] = STATE(2161), + [sym_type_initializer] = STATE(2160), + [sym_function_literal] = STATE(2161), + [sym_reference_expression] = STATE(2159), + [sym_type_reference_expression] = STATE(3460), + [sym_unary_expression] = STATE(2161), + [sym_receive_expression] = STATE(2161), + [sym_binary_expression] = STATE(2161), + [sym_as_type_cast_expression] = STATE(2161), + [sym__max_group] = STATE(2161), + [sym_literal] = STATE(2164), + [sym_map_init_expression] = STATE(2160), + [sym_array_creation] = STATE(2161), + [sym_fixed_array_creation] = STATE(2161), + [sym_selector_expression] = STATE(2161), + [sym_index_expression] = STATE(2161), + [sym_slice_expression] = STATE(2161), + [sym_if_expression] = STATE(2160), + [sym_compile_time_if_expression] = STATE(2160), + [sym_is_expression] = STATE(2161), + [sym_in_expression] = STATE(2161), + [sym_enum_fetch] = STATE(2161), + [sym_match_expression] = STATE(2160), + [sym_select_expression] = STATE(2160), + [sym_lock_expression] = STATE(2160), + [sym_unsafe_expression] = STATE(2160), + [sym_sql_expression] = STATE(2160), + [sym_c_string_literal] = STATE(2166), + [sym_raw_string_literal] = STATE(2166), + [sym_interpreted_string_literal] = STATE(2166), + [sym_mutability_modifiers] = STATE(575), + [sym_plain_type] = STATE(4173), + [sym__plain_type_without_special] = STATE(2360), + [sym_anon_struct_type] = STATE(2362), + [sym_multi_return_type] = STATE(2360), + [sym_result_type] = STATE(2360), + [sym_option_type] = STATE(2360), + [sym_qualified_type] = STATE(3460), + [sym_fixed_array_type] = STATE(2362), + [sym_array_type] = STATE(2362), + [sym_pointer_type] = STATE(2362), + [sym_wrong_pointer_type] = STATE(2362), + [sym_map_type] = STATE(2362), + [sym_channel_type] = STATE(2362), + [sym_shared_type] = STATE(2362), + [sym_thread_type] = STATE(2362), + [sym_atomic_type] = STATE(2362), + [sym_generic_type] = STATE(2362), + [sym_function_type] = STATE(2362), + [sym_identifier] = ACTIONS(3292), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1428), - [anon_sym_LBRACE] = ACTIONS(1430), - [anon_sym_LPAREN] = ACTIONS(1432), - [anon_sym_fn] = ACTIONS(1434), - [anon_sym_PLUS] = ACTIONS(3064), - [anon_sym_DASH] = ACTIONS(3064), - [anon_sym_STAR] = ACTIONS(3066), - [anon_sym_struct] = ACTIONS(1440), + [anon_sym_DOT] = ACTIONS(3294), + [anon_sym_LBRACE] = ACTIONS(3296), + [anon_sym_LPAREN] = ACTIONS(3298), + [anon_sym_fn] = ACTIONS(3300), + [anon_sym_PLUS] = ACTIONS(3302), + [anon_sym_DASH] = ACTIONS(3302), + [anon_sym_STAR] = ACTIONS(3304), + [anon_sym_struct] = ACTIONS(3306), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(3068), - [anon_sym_go] = ACTIONS(3070), - [anon_sym_spawn] = ACTIONS(3072), - [anon_sym_json_DOTdecode] = ACTIONS(1448), - [anon_sym_LBRACK2] = ACTIONS(1821), - [anon_sym_TILDE] = ACTIONS(3064), - [anon_sym_CARET] = ACTIONS(3064), - [anon_sym_AMP] = ACTIONS(3074), - [anon_sym_LT_DASH] = ACTIONS(3076), - [sym_none] = ACTIONS(1456), - [sym_true] = ACTIONS(1456), - [sym_false] = ACTIONS(1456), - [sym_nil] = ACTIONS(1456), - [anon_sym_if] = ACTIONS(1827), - [anon_sym_DOLLARif] = ACTIONS(1460), - [anon_sym_match] = ACTIONS(1462), - [anon_sym_select] = ACTIONS(3078), - [anon_sym_lock] = ACTIONS(3080), - [anon_sym_rlock] = ACTIONS(3080), - [anon_sym_unsafe] = ACTIONS(1833), - [anon_sym_sql] = ACTIONS(1470), - [sym_int_literal] = ACTIONS(1456), - [sym_float_literal] = ACTIONS(1472), - [sym_rune_literal] = ACTIONS(1472), - [sym_pseudo_compile_time_identifier] = ACTIONS(1474), + [anon_sym_BANG] = ACTIONS(3308), + [anon_sym_go] = ACTIONS(3310), + [anon_sym_spawn] = ACTIONS(3312), + [anon_sym_json_DOTdecode] = ACTIONS(3314), + [anon_sym_LBRACK2] = ACTIONS(3316), + [anon_sym_TILDE] = ACTIONS(3302), + [anon_sym_CARET] = ACTIONS(3302), + [anon_sym_AMP] = ACTIONS(3318), + [anon_sym_LT_DASH] = ACTIONS(3320), + [sym_none] = ACTIONS(3322), + [sym_true] = ACTIONS(3322), + [sym_false] = ACTIONS(3322), + [sym_nil] = ACTIONS(3322), + [anon_sym_if] = ACTIONS(3324), + [anon_sym_DOLLARif] = ACTIONS(3326), + [anon_sym_match] = ACTIONS(3328), + [anon_sym_select] = ACTIONS(3330), + [anon_sym_lock] = ACTIONS(3332), + [anon_sym_rlock] = ACTIONS(3332), + [anon_sym_unsafe] = ACTIONS(3334), + [anon_sym_sql] = ACTIONS(3336), + [sym_int_literal] = ACTIONS(3322), + [sym_float_literal] = ACTIONS(3338), + [sym_rune_literal] = ACTIONS(3338), + [sym_pseudo_compile_time_identifier] = ACTIONS(3340), [anon_sym_shared] = ACTIONS(83), [anon_sym_map_LBRACK] = ACTIONS(85), [anon_sym_chan] = ACTIONS(87), [anon_sym_thread] = ACTIONS(89), [anon_sym_atomic] = ACTIONS(91), - [sym___double_quote] = ACTIONS(1478), - [sym___single_quote] = ACTIONS(1480), - [sym___c_double_quote] = ACTIONS(1482), - [sym___c_single_quote] = ACTIONS(1484), - [sym___r_double_quote] = ACTIONS(1486), - [sym___r_single_quote] = ACTIONS(1488), + [sym___double_quote] = ACTIONS(3342), + [sym___single_quote] = ACTIONS(3344), + [sym___c_double_quote] = ACTIONS(3346), + [sym___c_single_quote] = ACTIONS(3348), + [sym___r_double_quote] = ACTIONS(3350), + [sym___r_single_quote] = ACTIONS(3352), }, [807] = { [sym_line_comment] = STATE(807), [sym_block_comment] = STATE(807), - [sym__expression] = STATE(2777), - [sym__expression_without_blocks] = STATE(2300), - [sym__expression_with_blocks] = STATE(2300), - [sym_inc_expression] = STATE(2307), - [sym_dec_expression] = STATE(2307), - [sym_or_block_expression] = STATE(2307), - [sym_option_propagation_expression] = STATE(2307), - [sym_result_propagation_expression] = STATE(2307), - [sym_anon_struct_value_expression] = STATE(2380), - [sym_go_expression] = STATE(2307), - [sym_spawn_expression] = STATE(2307), - [sym_parenthesized_expression] = STATE(2307), - [sym_call_expression] = STATE(2307), - [sym_type_initializer] = STATE(2380), - [sym_function_literal] = STATE(2307), - [sym_reference_expression] = STATE(2311), - [sym_type_reference_expression] = STATE(3541), - [sym_unary_expression] = STATE(2307), - [sym_receive_expression] = STATE(2307), - [sym_binary_expression] = STATE(2307), - [sym_as_type_cast_expression] = STATE(2307), - [sym__max_group] = STATE(2307), - [sym_literal] = STATE(2292), - [sym_map_init_expression] = STATE(2380), - [sym_array_creation] = STATE(2307), - [sym_fixed_array_creation] = STATE(2307), - [sym_selector_expression] = STATE(2307), - [sym_index_expression] = STATE(2307), - [sym_slice_expression] = STATE(2307), - [sym_if_expression] = STATE(2380), - [sym_compile_time_if_expression] = STATE(2380), - [sym_is_expression] = STATE(2307), - [sym_in_expression] = STATE(2307), - [sym_enum_fetch] = STATE(2307), - [sym_match_expression] = STATE(2380), - [sym_select_expression] = STATE(2380), - [sym_lock_expression] = STATE(2380), - [sym_unsafe_expression] = STATE(2380), - [sym_sql_expression] = STATE(2380), - [sym_c_string_literal] = STATE(2308), - [sym_raw_string_literal] = STATE(2308), - [sym_interpreted_string_literal] = STATE(2308), - [sym_mutability_modifiers] = STATE(939), - [sym_plain_type] = STATE(4297), - [sym__plain_type_without_special] = STATE(2302), - [sym_anon_struct_type] = STATE(2303), - [sym_multi_return_type] = STATE(2302), - [sym_result_type] = STATE(2302), - [sym_option_type] = STATE(2302), - [sym_qualified_type] = STATE(3541), - [sym_fixed_array_type] = STATE(2303), - [sym_array_type] = STATE(2303), - [sym_pointer_type] = STATE(2303), - [sym_wrong_pointer_type] = STATE(2303), - [sym_map_type] = STATE(2303), - [sym_channel_type] = STATE(2303), - [sym_shared_type] = STATE(2303), - [sym_thread_type] = STATE(2303), - [sym_atomic_type] = STATE(2303), - [sym_generic_type] = STATE(2303), - [sym_function_type] = STATE(2303), - [sym_identifier] = ACTIONS(2189), + [sym__expression] = STATE(2261), + [sym__expression_without_blocks] = STATE(2347), + [sym__expression_with_blocks] = STATE(2347), + [sym_inc_expression] = STATE(2379), + [sym_dec_expression] = STATE(2379), + [sym_or_block_expression] = STATE(2379), + [sym_option_propagation_expression] = STATE(2379), + [sym_result_propagation_expression] = STATE(2379), + [sym_anon_struct_value_expression] = STATE(2378), + [sym_go_expression] = STATE(2379), + [sym_spawn_expression] = STATE(2379), + [sym_parenthesized_expression] = STATE(2379), + [sym_call_expression] = STATE(2379), + [sym_type_initializer] = STATE(2378), + [sym_function_literal] = STATE(2379), + [sym_reference_expression] = STATE(2377), + [sym_type_reference_expression] = STATE(3460), + [sym_unary_expression] = STATE(2379), + [sym_receive_expression] = STATE(2379), + [sym_binary_expression] = STATE(2379), + [sym_as_type_cast_expression] = STATE(2379), + [sym__max_group] = STATE(2379), + [sym_literal] = STATE(2392), + [sym_map_init_expression] = STATE(2378), + [sym_array_creation] = STATE(2379), + [sym_fixed_array_creation] = STATE(2379), + [sym_selector_expression] = STATE(2379), + [sym_index_expression] = STATE(2379), + [sym_slice_expression] = STATE(2379), + [sym_if_expression] = STATE(2378), + [sym_compile_time_if_expression] = STATE(2378), + [sym_is_expression] = STATE(2379), + [sym_in_expression] = STATE(2379), + [sym_enum_fetch] = STATE(2379), + [sym_match_expression] = STATE(2378), + [sym_select_expression] = STATE(2378), + [sym_lock_expression] = STATE(2378), + [sym_unsafe_expression] = STATE(2378), + [sym_sql_expression] = STATE(2378), + [sym_c_string_literal] = STATE(2401), + [sym_raw_string_literal] = STATE(2401), + [sym_interpreted_string_literal] = STATE(2401), + [sym_mutability_modifiers] = STATE(553), + [sym_plain_type] = STATE(4160), + [sym__plain_type_without_special] = STATE(2360), + [sym_anon_struct_type] = STATE(2362), + [sym_multi_return_type] = STATE(2360), + [sym_result_type] = STATE(2360), + [sym_option_type] = STATE(2360), + [sym_qualified_type] = STATE(3460), + [sym_fixed_array_type] = STATE(2362), + [sym_array_type] = STATE(2362), + [sym_pointer_type] = STATE(2362), + [sym_wrong_pointer_type] = STATE(2362), + [sym_map_type] = STATE(2362), + [sym_channel_type] = STATE(2362), + [sym_shared_type] = STATE(2362), + [sym_thread_type] = STATE(2362), + [sym_atomic_type] = STATE(2362), + [sym_generic_type] = STATE(2362), + [sym_function_type] = STATE(2362), + [sym_identifier] = ACTIONS(1815), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1428), - [anon_sym_LBRACE] = ACTIONS(1430), - [anon_sym_LPAREN] = ACTIONS(1432), - [anon_sym_fn] = ACTIONS(1434), - [anon_sym_PLUS] = ACTIONS(2491), - [anon_sym_DASH] = ACTIONS(2491), - [anon_sym_STAR] = ACTIONS(3354), - [anon_sym_struct] = ACTIONS(1440), + [anon_sym_DOT] = ACTIONS(1430), + [anon_sym_LBRACE] = ACTIONS(1432), + [anon_sym_LPAREN] = ACTIONS(1434), + [anon_sym_fn] = ACTIONS(1436), + [anon_sym_PLUS] = ACTIONS(1817), + [anon_sym_DASH] = ACTIONS(1817), + [anon_sym_STAR] = ACTIONS(1819), + [anon_sym_struct] = ACTIONS(1442), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(3356), - [anon_sym_go] = ACTIONS(2497), - [anon_sym_spawn] = ACTIONS(2499), - [anon_sym_json_DOTdecode] = ACTIONS(1448), - [anon_sym_LBRACK2] = ACTIONS(1450), - [anon_sym_TILDE] = ACTIONS(2491), - [anon_sym_CARET] = ACTIONS(2491), - [anon_sym_AMP] = ACTIONS(3358), - [anon_sym_LT_DASH] = ACTIONS(2503), - [sym_none] = ACTIONS(1456), - [sym_true] = ACTIONS(1456), - [sym_false] = ACTIONS(1456), - [sym_nil] = ACTIONS(1456), - [anon_sym_if] = ACTIONS(1827), - [anon_sym_DOLLARif] = ACTIONS(1460), - [anon_sym_match] = ACTIONS(1462), - [anon_sym_select] = ACTIONS(1464), - [anon_sym_lock] = ACTIONS(1466), - [anon_sym_rlock] = ACTIONS(1466), - [anon_sym_unsafe] = ACTIONS(1833), - [anon_sym_sql] = ACTIONS(1470), - [sym_int_literal] = ACTIONS(1456), - [sym_float_literal] = ACTIONS(1472), - [sym_rune_literal] = ACTIONS(1472), - [sym_pseudo_compile_time_identifier] = ACTIONS(1474), + [anon_sym_BANG] = ACTIONS(1821), + [anon_sym_go] = ACTIONS(1823), + [anon_sym_spawn] = ACTIONS(1825), + [anon_sym_json_DOTdecode] = ACTIONS(1450), + [anon_sym_LBRACK2] = ACTIONS(1827), + [anon_sym_TILDE] = ACTIONS(1817), + [anon_sym_CARET] = ACTIONS(1817), + [anon_sym_AMP] = ACTIONS(1829), + [anon_sym_LT_DASH] = ACTIONS(1831), + [sym_none] = ACTIONS(1458), + [sym_true] = ACTIONS(1458), + [sym_false] = ACTIONS(1458), + [sym_nil] = ACTIONS(1458), + [anon_sym_if] = ACTIONS(1833), + [anon_sym_DOLLARif] = ACTIONS(1462), + [anon_sym_match] = ACTIONS(1464), + [anon_sym_select] = ACTIONS(1835), + [anon_sym_lock] = ACTIONS(1837), + [anon_sym_rlock] = ACTIONS(1837), + [anon_sym_unsafe] = ACTIONS(1839), + [anon_sym_sql] = ACTIONS(1472), + [sym_int_literal] = ACTIONS(1458), + [sym_float_literal] = ACTIONS(1474), + [sym_rune_literal] = ACTIONS(1474), + [sym_pseudo_compile_time_identifier] = ACTIONS(1476), [anon_sym_shared] = ACTIONS(83), [anon_sym_map_LBRACK] = ACTIONS(85), [anon_sym_chan] = ACTIONS(87), [anon_sym_thread] = ACTIONS(89), [anon_sym_atomic] = ACTIONS(91), - [sym___double_quote] = ACTIONS(1478), - [sym___single_quote] = ACTIONS(1480), - [sym___c_double_quote] = ACTIONS(1482), - [sym___c_single_quote] = ACTIONS(1484), - [sym___r_double_quote] = ACTIONS(1486), - [sym___r_single_quote] = ACTIONS(1488), + [sym___double_quote] = ACTIONS(1480), + [sym___single_quote] = ACTIONS(1482), + [sym___c_double_quote] = ACTIONS(1484), + [sym___c_single_quote] = ACTIONS(1486), + [sym___r_double_quote] = ACTIONS(1488), + [sym___r_single_quote] = ACTIONS(1490), }, [808] = { [sym_line_comment] = STATE(808), [sym_block_comment] = STATE(808), - [sym__expression] = STATE(2814), - [sym__expression_without_blocks] = STATE(2932), - [sym__expression_with_blocks] = STATE(2300), - [sym_inc_expression] = STATE(2307), - [sym_dec_expression] = STATE(2307), - [sym_or_block_expression] = STATE(2307), - [sym_option_propagation_expression] = STATE(2307), - [sym_result_propagation_expression] = STATE(2307), - [sym_anon_struct_value_expression] = STATE(2380), - [sym_go_expression] = STATE(2307), - [sym_spawn_expression] = STATE(2307), - [sym_parenthesized_expression] = STATE(2307), - [sym_call_expression] = STATE(2307), - [sym_type_initializer] = STATE(2380), - [sym_function_literal] = STATE(2307), - [sym_reference_expression] = STATE(2311), - [sym_type_reference_expression] = STATE(3541), - [sym_unary_expression] = STATE(2307), - [sym_receive_expression] = STATE(2307), - [sym_binary_expression] = STATE(2307), - [sym_as_type_cast_expression] = STATE(2307), - [sym__max_group] = STATE(2307), - [sym_literal] = STATE(2292), - [sym_map_init_expression] = STATE(2380), - [sym_array_creation] = STATE(2307), - [sym_fixed_array_creation] = STATE(2307), - [sym_selector_expression] = STATE(2307), - [sym_index_expression] = STATE(2307), - [sym_slice_expression] = STATE(2307), - [sym_if_expression] = STATE(2380), - [sym_compile_time_if_expression] = STATE(2380), - [sym_is_expression] = STATE(2307), - [sym_in_expression] = STATE(2307), - [sym_enum_fetch] = STATE(2307), - [sym_match_expression] = STATE(2380), - [sym_select_expression] = STATE(2380), - [sym_lock_expression] = STATE(2380), - [sym_unsafe_expression] = STATE(2380), - [sym_sql_expression] = STATE(2380), - [sym_c_string_literal] = STATE(2308), - [sym_raw_string_literal] = STATE(2308), - [sym_interpreted_string_literal] = STATE(2308), - [sym_mutability_modifiers] = STATE(939), - [sym_plain_type] = STATE(4297), - [sym__plain_type_without_special] = STATE(2302), - [sym_anon_struct_type] = STATE(2303), - [sym_multi_return_type] = STATE(2302), - [sym_result_type] = STATE(2302), - [sym_option_type] = STATE(2302), - [sym_qualified_type] = STATE(3541), - [sym_fixed_array_type] = STATE(2303), - [sym_array_type] = STATE(2303), - [sym_pointer_type] = STATE(2303), - [sym_wrong_pointer_type] = STATE(2303), - [sym_map_type] = STATE(2303), - [sym_channel_type] = STATE(2303), - [sym_shared_type] = STATE(2303), - [sym_thread_type] = STATE(2303), - [sym_atomic_type] = STATE(2303), - [sym_generic_type] = STATE(2303), - [sym_function_type] = STATE(2303), - [sym_identifier] = ACTIONS(2189), + [sym__expression] = STATE(2267), + [sym__expression_without_blocks] = STATE(2347), + [sym__expression_with_blocks] = STATE(2347), + [sym_inc_expression] = STATE(2379), + [sym_dec_expression] = STATE(2379), + [sym_or_block_expression] = STATE(2379), + [sym_option_propagation_expression] = STATE(2379), + [sym_result_propagation_expression] = STATE(2379), + [sym_anon_struct_value_expression] = STATE(2378), + [sym_go_expression] = STATE(2379), + [sym_spawn_expression] = STATE(2379), + [sym_parenthesized_expression] = STATE(2379), + [sym_call_expression] = STATE(2379), + [sym_type_initializer] = STATE(2378), + [sym_function_literal] = STATE(2379), + [sym_reference_expression] = STATE(2377), + [sym_type_reference_expression] = STATE(3460), + [sym_unary_expression] = STATE(2379), + [sym_receive_expression] = STATE(2379), + [sym_binary_expression] = STATE(2379), + [sym_as_type_cast_expression] = STATE(2379), + [sym__max_group] = STATE(2379), + [sym_literal] = STATE(2392), + [sym_map_init_expression] = STATE(2378), + [sym_array_creation] = STATE(2379), + [sym_fixed_array_creation] = STATE(2379), + [sym_selector_expression] = STATE(2379), + [sym_index_expression] = STATE(2379), + [sym_slice_expression] = STATE(2379), + [sym_if_expression] = STATE(2378), + [sym_compile_time_if_expression] = STATE(2378), + [sym_is_expression] = STATE(2379), + [sym_in_expression] = STATE(2379), + [sym_enum_fetch] = STATE(2379), + [sym_match_expression] = STATE(2378), + [sym_select_expression] = STATE(2378), + [sym_lock_expression] = STATE(2378), + [sym_unsafe_expression] = STATE(2378), + [sym_sql_expression] = STATE(2378), + [sym_c_string_literal] = STATE(2401), + [sym_raw_string_literal] = STATE(2401), + [sym_interpreted_string_literal] = STATE(2401), + [sym_mutability_modifiers] = STATE(553), + [sym_plain_type] = STATE(3559), + [sym__plain_type_without_special] = STATE(2360), + [sym_anon_struct_type] = STATE(2362), + [sym_multi_return_type] = STATE(2360), + [sym_result_type] = STATE(2360), + [sym_option_type] = STATE(2360), + [sym_qualified_type] = STATE(3460), + [sym_fixed_array_type] = STATE(2362), + [sym_array_type] = STATE(2362), + [sym_pointer_type] = STATE(2362), + [sym_wrong_pointer_type] = STATE(2362), + [sym_map_type] = STATE(2362), + [sym_channel_type] = STATE(2362), + [sym_shared_type] = STATE(2362), + [sym_thread_type] = STATE(2362), + [sym_atomic_type] = STATE(2362), + [sym_generic_type] = STATE(2362), + [sym_function_type] = STATE(2362), + [sym_identifier] = ACTIONS(1815), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1428), - [anon_sym_LBRACE] = ACTIONS(1430), - [anon_sym_LPAREN] = ACTIONS(1432), - [anon_sym_fn] = ACTIONS(1434), - [anon_sym_PLUS] = ACTIONS(2491), - [anon_sym_DASH] = ACTIONS(2491), - [anon_sym_STAR] = ACTIONS(3354), - [anon_sym_struct] = ACTIONS(1440), + [anon_sym_DOT] = ACTIONS(1430), + [anon_sym_LBRACE] = ACTIONS(1432), + [anon_sym_LPAREN] = ACTIONS(1434), + [anon_sym_fn] = ACTIONS(1436), + [anon_sym_PLUS] = ACTIONS(1817), + [anon_sym_DASH] = ACTIONS(1817), + [anon_sym_STAR] = ACTIONS(1819), + [anon_sym_struct] = ACTIONS(1442), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(3356), - [anon_sym_go] = ACTIONS(2497), - [anon_sym_spawn] = ACTIONS(2499), - [anon_sym_json_DOTdecode] = ACTIONS(1448), - [anon_sym_LBRACK2] = ACTIONS(1450), - [anon_sym_TILDE] = ACTIONS(2491), - [anon_sym_CARET] = ACTIONS(2491), - [anon_sym_AMP] = ACTIONS(3358), - [anon_sym_LT_DASH] = ACTIONS(2503), - [sym_none] = ACTIONS(1456), - [sym_true] = ACTIONS(1456), - [sym_false] = ACTIONS(1456), - [sym_nil] = ACTIONS(1456), - [anon_sym_if] = ACTIONS(1827), - [anon_sym_DOLLARif] = ACTIONS(1460), - [anon_sym_match] = ACTIONS(1462), - [anon_sym_select] = ACTIONS(1464), - [anon_sym_lock] = ACTIONS(1466), - [anon_sym_rlock] = ACTIONS(1466), - [anon_sym_unsafe] = ACTIONS(1833), - [anon_sym_sql] = ACTIONS(1470), - [sym_int_literal] = ACTIONS(1456), - [sym_float_literal] = ACTIONS(1472), - [sym_rune_literal] = ACTIONS(1472), - [sym_pseudo_compile_time_identifier] = ACTIONS(1474), + [anon_sym_BANG] = ACTIONS(1821), + [anon_sym_go] = ACTIONS(1823), + [anon_sym_spawn] = ACTIONS(1825), + [anon_sym_json_DOTdecode] = ACTIONS(1450), + [anon_sym_LBRACK2] = ACTIONS(1827), + [anon_sym_TILDE] = ACTIONS(1817), + [anon_sym_CARET] = ACTIONS(1817), + [anon_sym_AMP] = ACTIONS(1829), + [anon_sym_LT_DASH] = ACTIONS(1831), + [sym_none] = ACTIONS(1458), + [sym_true] = ACTIONS(1458), + [sym_false] = ACTIONS(1458), + [sym_nil] = ACTIONS(1458), + [anon_sym_if] = ACTIONS(1833), + [anon_sym_DOLLARif] = ACTIONS(1462), + [anon_sym_match] = ACTIONS(1464), + [anon_sym_select] = ACTIONS(1835), + [anon_sym_lock] = ACTIONS(1837), + [anon_sym_rlock] = ACTIONS(1837), + [anon_sym_unsafe] = ACTIONS(1839), + [anon_sym_sql] = ACTIONS(1472), + [sym_int_literal] = ACTIONS(1458), + [sym_float_literal] = ACTIONS(1474), + [sym_rune_literal] = ACTIONS(1474), + [sym_pseudo_compile_time_identifier] = ACTIONS(1476), [anon_sym_shared] = ACTIONS(83), [anon_sym_map_LBRACK] = ACTIONS(85), [anon_sym_chan] = ACTIONS(87), [anon_sym_thread] = ACTIONS(89), [anon_sym_atomic] = ACTIONS(91), - [sym___double_quote] = ACTIONS(1478), - [sym___single_quote] = ACTIONS(1480), - [sym___c_double_quote] = ACTIONS(1482), - [sym___c_single_quote] = ACTIONS(1484), - [sym___r_double_quote] = ACTIONS(1486), - [sym___r_single_quote] = ACTIONS(1488), + [sym___double_quote] = ACTIONS(1480), + [sym___single_quote] = ACTIONS(1482), + [sym___c_double_quote] = ACTIONS(1484), + [sym___c_single_quote] = ACTIONS(1486), + [sym___r_double_quote] = ACTIONS(1488), + [sym___r_single_quote] = ACTIONS(1490), }, [809] = { [sym_line_comment] = STATE(809), [sym_block_comment] = STATE(809), - [sym__expression] = STATE(2831), - [sym__expression_without_blocks] = STATE(2300), - [sym__expression_with_blocks] = STATE(2300), - [sym_inc_expression] = STATE(2307), - [sym_dec_expression] = STATE(2307), - [sym_or_block_expression] = STATE(2307), - [sym_option_propagation_expression] = STATE(2307), - [sym_result_propagation_expression] = STATE(2307), - [sym_anon_struct_value_expression] = STATE(2380), - [sym_go_expression] = STATE(2307), - [sym_spawn_expression] = STATE(2307), - [sym_parenthesized_expression] = STATE(2307), - [sym_call_expression] = STATE(2307), - [sym_type_initializer] = STATE(2380), - [sym_function_literal] = STATE(2307), - [sym_reference_expression] = STATE(2956), - [sym_type_reference_expression] = STATE(3541), - [sym_unary_expression] = STATE(2307), - [sym_receive_expression] = STATE(2307), - [sym_binary_expression] = STATE(2307), - [sym_as_type_cast_expression] = STATE(2307), - [sym__max_group] = STATE(2307), - [sym_literal] = STATE(2292), - [sym_map_init_expression] = STATE(2380), - [sym_array_creation] = STATE(2307), - [sym_fixed_array_creation] = STATE(2307), - [sym_selector_expression] = STATE(2952), - [sym_index_expression] = STATE(2307), - [sym_slice_expression] = STATE(2307), - [sym_if_expression] = STATE(2380), - [sym_compile_time_if_expression] = STATE(2380), - [sym_is_expression] = STATE(2307), - [sym_in_expression] = STATE(2307), - [sym_enum_fetch] = STATE(2307), - [sym_match_expression] = STATE(2380), - [sym_select_expression] = STATE(2380), - [sym_lock_expression] = STATE(2380), - [sym_unsafe_expression] = STATE(2380), - [sym_sql_expression] = STATE(2380), - [sym_c_string_literal] = STATE(2308), - [sym_raw_string_literal] = STATE(2308), - [sym_interpreted_string_literal] = STATE(2308), - [sym_mutability_modifiers] = STATE(939), - [sym_plain_type] = STATE(4297), - [sym__plain_type_without_special] = STATE(2302), - [sym_anon_struct_type] = STATE(2303), - [sym_multi_return_type] = STATE(2302), - [sym_result_type] = STATE(2302), - [sym_option_type] = STATE(2302), - [sym_qualified_type] = STATE(3541), - [sym_fixed_array_type] = STATE(2303), - [sym_array_type] = STATE(2303), - [sym_pointer_type] = STATE(2303), - [sym_wrong_pointer_type] = STATE(2303), - [sym_map_type] = STATE(2303), - [sym_channel_type] = STATE(2303), - [sym_shared_type] = STATE(2303), - [sym_thread_type] = STATE(2303), - [sym_atomic_type] = STATE(2303), - [sym_generic_type] = STATE(2303), - [sym_function_type] = STATE(2303), - [sym_identifier] = ACTIONS(2189), + [sym__expression] = STATE(2536), + [sym__expression_without_blocks] = STATE(2347), + [sym__expression_with_blocks] = STATE(2347), + [sym_inc_expression] = STATE(2379), + [sym_dec_expression] = STATE(2379), + [sym_or_block_expression] = STATE(2379), + [sym_option_propagation_expression] = STATE(2379), + [sym_result_propagation_expression] = STATE(2379), + [sym_anon_struct_value_expression] = STATE(2378), + [sym_go_expression] = STATE(2379), + [sym_spawn_expression] = STATE(2379), + [sym_parenthesized_expression] = STATE(2379), + [sym_call_expression] = STATE(2379), + [sym_type_initializer] = STATE(2378), + [sym_function_literal] = STATE(2379), + [sym_reference_expression] = STATE(2377), + [sym_type_reference_expression] = STATE(3460), + [sym_unary_expression] = STATE(2379), + [sym_receive_expression] = STATE(2379), + [sym_binary_expression] = STATE(2379), + [sym_as_type_cast_expression] = STATE(2379), + [sym__max_group] = STATE(2379), + [sym_literal] = STATE(2392), + [sym_map_init_expression] = STATE(2378), + [sym_array_creation] = STATE(2379), + [sym_fixed_array_creation] = STATE(2379), + [sym_selector_expression] = STATE(2379), + [sym_index_expression] = STATE(2379), + [sym_slice_expression] = STATE(2379), + [sym_if_expression] = STATE(2378), + [sym_compile_time_if_expression] = STATE(2378), + [sym_is_expression] = STATE(2379), + [sym_in_expression] = STATE(2379), + [sym_enum_fetch] = STATE(2379), + [sym_match_expression] = STATE(2378), + [sym_select_expression] = STATE(2378), + [sym_lock_expression] = STATE(2378), + [sym_unsafe_expression] = STATE(2378), + [sym_sql_expression] = STATE(2378), + [sym_c_string_literal] = STATE(2401), + [sym_raw_string_literal] = STATE(2401), + [sym_interpreted_string_literal] = STATE(2401), + [sym_mutability_modifiers] = STATE(553), + [sym_plain_type] = STATE(4160), + [sym__plain_type_without_special] = STATE(2360), + [sym_anon_struct_type] = STATE(2362), + [sym_multi_return_type] = STATE(2360), + [sym_result_type] = STATE(2360), + [sym_option_type] = STATE(2360), + [sym_qualified_type] = STATE(3460), + [sym_fixed_array_type] = STATE(2362), + [sym_array_type] = STATE(2362), + [sym_pointer_type] = STATE(2362), + [sym_wrong_pointer_type] = STATE(2362), + [sym_map_type] = STATE(2362), + [sym_channel_type] = STATE(2362), + [sym_shared_type] = STATE(2362), + [sym_thread_type] = STATE(2362), + [sym_atomic_type] = STATE(2362), + [sym_generic_type] = STATE(2362), + [sym_function_type] = STATE(2362), + [sym_identifier] = ACTIONS(1815), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1428), - [anon_sym_LBRACE] = ACTIONS(1430), - [anon_sym_LPAREN] = ACTIONS(1432), - [anon_sym_fn] = ACTIONS(1434), - [anon_sym_PLUS] = ACTIONS(1436), - [anon_sym_DASH] = ACTIONS(1436), - [anon_sym_STAR] = ACTIONS(1438), - [anon_sym_struct] = ACTIONS(1440), + [anon_sym_DOT] = ACTIONS(1430), + [anon_sym_LBRACE] = ACTIONS(1432), + [anon_sym_LPAREN] = ACTIONS(1434), + [anon_sym_fn] = ACTIONS(1436), + [anon_sym_PLUS] = ACTIONS(1817), + [anon_sym_DASH] = ACTIONS(1817), + [anon_sym_STAR] = ACTIONS(1819), + [anon_sym_struct] = ACTIONS(1442), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(1442), - [anon_sym_go] = ACTIONS(1444), - [anon_sym_spawn] = ACTIONS(1446), - [anon_sym_json_DOTdecode] = ACTIONS(1448), - [anon_sym_LBRACK2] = ACTIONS(1450), - [anon_sym_TILDE] = ACTIONS(1436), - [anon_sym_CARET] = ACTIONS(1436), - [anon_sym_AMP] = ACTIONS(1452), - [anon_sym_LT_DASH] = ACTIONS(1454), - [sym_none] = ACTIONS(1456), - [sym_true] = ACTIONS(1456), - [sym_false] = ACTIONS(1456), - [sym_nil] = ACTIONS(1456), - [anon_sym_if] = ACTIONS(1827), - [anon_sym_DOLLARif] = ACTIONS(1460), - [anon_sym_match] = ACTIONS(1462), - [anon_sym_select] = ACTIONS(1464), - [anon_sym_lock] = ACTIONS(1466), - [anon_sym_rlock] = ACTIONS(1466), - [anon_sym_unsafe] = ACTIONS(1833), - [anon_sym_sql] = ACTIONS(1470), - [sym_int_literal] = ACTIONS(1456), - [sym_float_literal] = ACTIONS(1472), - [sym_rune_literal] = ACTIONS(1472), - [sym_pseudo_compile_time_identifier] = ACTIONS(1474), + [anon_sym_BANG] = ACTIONS(1821), + [anon_sym_go] = ACTIONS(1823), + [anon_sym_spawn] = ACTIONS(1825), + [anon_sym_json_DOTdecode] = ACTIONS(1450), + [anon_sym_LBRACK2] = ACTIONS(1827), + [anon_sym_TILDE] = ACTIONS(1817), + [anon_sym_CARET] = ACTIONS(1817), + [anon_sym_AMP] = ACTIONS(1829), + [anon_sym_LT_DASH] = ACTIONS(1831), + [sym_none] = ACTIONS(1458), + [sym_true] = ACTIONS(1458), + [sym_false] = ACTIONS(1458), + [sym_nil] = ACTIONS(1458), + [anon_sym_if] = ACTIONS(1833), + [anon_sym_DOLLARif] = ACTIONS(1462), + [anon_sym_match] = ACTIONS(1464), + [anon_sym_select] = ACTIONS(1835), + [anon_sym_lock] = ACTIONS(1837), + [anon_sym_rlock] = ACTIONS(1837), + [anon_sym_unsafe] = ACTIONS(1839), + [anon_sym_sql] = ACTIONS(1472), + [sym_int_literal] = ACTIONS(1458), + [sym_float_literal] = ACTIONS(1474), + [sym_rune_literal] = ACTIONS(1474), + [sym_pseudo_compile_time_identifier] = ACTIONS(1476), [anon_sym_shared] = ACTIONS(83), [anon_sym_map_LBRACK] = ACTIONS(85), [anon_sym_chan] = ACTIONS(87), [anon_sym_thread] = ACTIONS(89), [anon_sym_atomic] = ACTIONS(91), - [sym___double_quote] = ACTIONS(1478), - [sym___single_quote] = ACTIONS(1480), - [sym___c_double_quote] = ACTIONS(1482), - [sym___c_single_quote] = ACTIONS(1484), - [sym___r_double_quote] = ACTIONS(1486), - [sym___r_single_quote] = ACTIONS(1488), + [sym___double_quote] = ACTIONS(1480), + [sym___single_quote] = ACTIONS(1482), + [sym___c_double_quote] = ACTIONS(1484), + [sym___c_single_quote] = ACTIONS(1486), + [sym___r_double_quote] = ACTIONS(1488), + [sym___r_single_quote] = ACTIONS(1490), }, [810] = { [sym_line_comment] = STATE(810), [sym_block_comment] = STATE(810), - [sym__expression] = STATE(1253), - [sym__expression_without_blocks] = STATE(1312), - [sym__expression_with_blocks] = STATE(1312), - [sym_inc_expression] = STATE(1313), - [sym_dec_expression] = STATE(1313), - [sym_or_block_expression] = STATE(1313), - [sym_option_propagation_expression] = STATE(1313), - [sym_result_propagation_expression] = STATE(1313), - [sym_anon_struct_value_expression] = STATE(1314), - [sym_go_expression] = STATE(1313), - [sym_spawn_expression] = STATE(1313), - [sym_parenthesized_expression] = STATE(1313), - [sym_call_expression] = STATE(1313), - [sym_type_initializer] = STATE(1314), - [sym_function_literal] = STATE(1313), - [sym_reference_expression] = STATE(1334), - [sym_type_reference_expression] = STATE(3541), - [sym_unary_expression] = STATE(1313), - [sym_receive_expression] = STATE(1313), - [sym_binary_expression] = STATE(1313), - [sym_as_type_cast_expression] = STATE(1313), - [sym__max_group] = STATE(1313), - [sym_literal] = STATE(1308), - [sym_map_init_expression] = STATE(1314), - [sym_array_creation] = STATE(1313), - [sym_fixed_array_creation] = STATE(1313), - [sym_selector_expression] = STATE(1313), - [sym_index_expression] = STATE(1313), - [sym_slice_expression] = STATE(1313), - [sym_if_expression] = STATE(1314), - [sym_compile_time_if_expression] = STATE(1314), - [sym_is_expression] = STATE(1313), - [sym_in_expression] = STATE(1313), - [sym_enum_fetch] = STATE(1313), - [sym_match_expression] = STATE(1314), - [sym_select_expression] = STATE(1314), - [sym_lock_expression] = STATE(1314), - [sym_unsafe_expression] = STATE(1314), - [sym_sql_expression] = STATE(1314), - [sym_c_string_literal] = STATE(1286), - [sym_raw_string_literal] = STATE(1286), - [sym_interpreted_string_literal] = STATE(1286), - [sym_mutability_modifiers] = STATE(699), - [sym_plain_type] = STATE(4192), - [sym__plain_type_without_special] = STATE(2302), - [sym_anon_struct_type] = STATE(2303), - [sym_multi_return_type] = STATE(2302), - [sym_result_type] = STATE(2302), - [sym_option_type] = STATE(2302), - [sym_qualified_type] = STATE(3541), - [sym_fixed_array_type] = STATE(2303), - [sym_array_type] = STATE(2303), - [sym_pointer_type] = STATE(2303), - [sym_wrong_pointer_type] = STATE(2303), - [sym_map_type] = STATE(2303), - [sym_channel_type] = STATE(2303), - [sym_shared_type] = STATE(2303), - [sym_thread_type] = STATE(2303), - [sym_atomic_type] = STATE(2303), - [sym_generic_type] = STATE(2303), - [sym_function_type] = STATE(2303), - [sym_identifier] = ACTIONS(1354), + [sym__expression] = STATE(2454), + [sym__expression_without_blocks] = STATE(2347), + [sym__expression_with_blocks] = STATE(2347), + [sym_inc_expression] = STATE(2379), + [sym_dec_expression] = STATE(2379), + [sym_or_block_expression] = STATE(2379), + [sym_option_propagation_expression] = STATE(2379), + [sym_result_propagation_expression] = STATE(2379), + [sym_anon_struct_value_expression] = STATE(2378), + [sym_go_expression] = STATE(2379), + [sym_spawn_expression] = STATE(2379), + [sym_parenthesized_expression] = STATE(2379), + [sym_call_expression] = STATE(2379), + [sym_type_initializer] = STATE(2378), + [sym_function_literal] = STATE(2379), + [sym_reference_expression] = STATE(2377), + [sym_type_reference_expression] = STATE(3460), + [sym_unary_expression] = STATE(2379), + [sym_receive_expression] = STATE(2379), + [sym_binary_expression] = STATE(2379), + [sym_as_type_cast_expression] = STATE(2379), + [sym__max_group] = STATE(2379), + [sym_literal] = STATE(2392), + [sym_map_init_expression] = STATE(2378), + [sym_array_creation] = STATE(2379), + [sym_fixed_array_creation] = STATE(2379), + [sym_selector_expression] = STATE(2379), + [sym_index_expression] = STATE(2379), + [sym_slice_expression] = STATE(2379), + [sym_if_expression] = STATE(2378), + [sym_compile_time_if_expression] = STATE(2378), + [sym_is_expression] = STATE(2379), + [sym_in_expression] = STATE(2379), + [sym_enum_fetch] = STATE(2379), + [sym_match_expression] = STATE(2378), + [sym_select_expression] = STATE(2378), + [sym_lock_expression] = STATE(2378), + [sym_unsafe_expression] = STATE(2378), + [sym_sql_expression] = STATE(2378), + [sym_c_string_literal] = STATE(2401), + [sym_raw_string_literal] = STATE(2401), + [sym_interpreted_string_literal] = STATE(2401), + [sym_mutability_modifiers] = STATE(553), + [sym_plain_type] = STATE(4160), + [sym__plain_type_without_special] = STATE(2360), + [sym_anon_struct_type] = STATE(2362), + [sym_multi_return_type] = STATE(2360), + [sym_result_type] = STATE(2360), + [sym_option_type] = STATE(2360), + [sym_qualified_type] = STATE(3460), + [sym_fixed_array_type] = STATE(2362), + [sym_array_type] = STATE(2362), + [sym_pointer_type] = STATE(2362), + [sym_wrong_pointer_type] = STATE(2362), + [sym_map_type] = STATE(2362), + [sym_channel_type] = STATE(2362), + [sym_shared_type] = STATE(2362), + [sym_thread_type] = STATE(2362), + [sym_atomic_type] = STATE(2362), + [sym_generic_type] = STATE(2362), + [sym_function_type] = STATE(2362), + [sym_identifier] = ACTIONS(1815), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1356), - [anon_sym_LBRACE] = ACTIONS(1358), - [anon_sym_LPAREN] = ACTIONS(1360), - [anon_sym_fn] = ACTIONS(1362), - [anon_sym_PLUS] = ACTIONS(1863), - [anon_sym_DASH] = ACTIONS(1863), - [anon_sym_STAR] = ACTIONS(1865), - [anon_sym_struct] = ACTIONS(1370), + [anon_sym_DOT] = ACTIONS(1430), + [anon_sym_LBRACE] = ACTIONS(1432), + [anon_sym_LPAREN] = ACTIONS(1434), + [anon_sym_fn] = ACTIONS(1436), + [anon_sym_PLUS] = ACTIONS(1817), + [anon_sym_DASH] = ACTIONS(1817), + [anon_sym_STAR] = ACTIONS(1819), + [anon_sym_struct] = ACTIONS(1442), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(1867), - [anon_sym_go] = ACTIONS(1869), - [anon_sym_spawn] = ACTIONS(1871), - [anon_sym_json_DOTdecode] = ACTIONS(1378), - [anon_sym_LBRACK2] = ACTIONS(1380), - [anon_sym_TILDE] = ACTIONS(1863), - [anon_sym_CARET] = ACTIONS(1863), - [anon_sym_AMP] = ACTIONS(1873), - [anon_sym_LT_DASH] = ACTIONS(1875), - [sym_none] = ACTIONS(1386), - [sym_true] = ACTIONS(1386), - [sym_false] = ACTIONS(1386), - [sym_nil] = ACTIONS(1386), - [anon_sym_if] = ACTIONS(1877), - [anon_sym_DOLLARif] = ACTIONS(1390), - [anon_sym_match] = ACTIONS(1392), - [anon_sym_select] = ACTIONS(1879), - [anon_sym_lock] = ACTIONS(1881), - [anon_sym_rlock] = ACTIONS(1881), - [anon_sym_unsafe] = ACTIONS(1883), - [anon_sym_sql] = ACTIONS(1400), - [sym_int_literal] = ACTIONS(1386), - [sym_float_literal] = ACTIONS(1404), - [sym_rune_literal] = ACTIONS(1404), - [sym_pseudo_compile_time_identifier] = ACTIONS(1406), + [anon_sym_BANG] = ACTIONS(1821), + [anon_sym_go] = ACTIONS(1823), + [anon_sym_spawn] = ACTIONS(1825), + [anon_sym_json_DOTdecode] = ACTIONS(1450), + [anon_sym_LBRACK2] = ACTIONS(1827), + [anon_sym_TILDE] = ACTIONS(1817), + [anon_sym_CARET] = ACTIONS(1817), + [anon_sym_AMP] = ACTIONS(1829), + [anon_sym_LT_DASH] = ACTIONS(1831), + [sym_none] = ACTIONS(1458), + [sym_true] = ACTIONS(1458), + [sym_false] = ACTIONS(1458), + [sym_nil] = ACTIONS(1458), + [anon_sym_if] = ACTIONS(1833), + [anon_sym_DOLLARif] = ACTIONS(1462), + [anon_sym_match] = ACTIONS(1464), + [anon_sym_select] = ACTIONS(1835), + [anon_sym_lock] = ACTIONS(1837), + [anon_sym_rlock] = ACTIONS(1837), + [anon_sym_unsafe] = ACTIONS(1839), + [anon_sym_sql] = ACTIONS(1472), + [sym_int_literal] = ACTIONS(1458), + [sym_float_literal] = ACTIONS(1474), + [sym_rune_literal] = ACTIONS(1474), + [sym_pseudo_compile_time_identifier] = ACTIONS(1476), [anon_sym_shared] = ACTIONS(83), [anon_sym_map_LBRACK] = ACTIONS(85), [anon_sym_chan] = ACTIONS(87), [anon_sym_thread] = ACTIONS(89), [anon_sym_atomic] = ACTIONS(91), - [sym___double_quote] = ACTIONS(1408), - [sym___single_quote] = ACTIONS(1410), - [sym___c_double_quote] = ACTIONS(1412), - [sym___c_single_quote] = ACTIONS(1414), - [sym___r_double_quote] = ACTIONS(1416), - [sym___r_single_quote] = ACTIONS(1418), + [sym___double_quote] = ACTIONS(1480), + [sym___single_quote] = ACTIONS(1482), + [sym___c_double_quote] = ACTIONS(1484), + [sym___c_single_quote] = ACTIONS(1486), + [sym___r_double_quote] = ACTIONS(1488), + [sym___r_single_quote] = ACTIONS(1490), }, [811] = { [sym_line_comment] = STATE(811), [sym_block_comment] = STATE(811), - [sym__expression] = STATE(1255), - [sym__expression_without_blocks] = STATE(1312), - [sym__expression_with_blocks] = STATE(1312), - [sym_inc_expression] = STATE(1313), - [sym_dec_expression] = STATE(1313), - [sym_or_block_expression] = STATE(1313), - [sym_option_propagation_expression] = STATE(1313), - [sym_result_propagation_expression] = STATE(1313), - [sym_anon_struct_value_expression] = STATE(1314), - [sym_go_expression] = STATE(1313), - [sym_spawn_expression] = STATE(1313), - [sym_parenthesized_expression] = STATE(1313), - [sym_call_expression] = STATE(1313), - [sym_type_initializer] = STATE(1314), - [sym_function_literal] = STATE(1313), - [sym_reference_expression] = STATE(1334), - [sym_type_reference_expression] = STATE(3541), - [sym_unary_expression] = STATE(1313), - [sym_receive_expression] = STATE(1313), - [sym_binary_expression] = STATE(1313), - [sym_as_type_cast_expression] = STATE(1313), - [sym__max_group] = STATE(1313), - [sym_literal] = STATE(1308), - [sym_map_init_expression] = STATE(1314), - [sym_array_creation] = STATE(1313), - [sym_fixed_array_creation] = STATE(1313), - [sym_selector_expression] = STATE(1313), - [sym_index_expression] = STATE(1313), - [sym_slice_expression] = STATE(1313), - [sym_if_expression] = STATE(1314), - [sym_compile_time_if_expression] = STATE(1314), - [sym_is_expression] = STATE(1313), - [sym_in_expression] = STATE(1313), - [sym_enum_fetch] = STATE(1313), - [sym_match_expression] = STATE(1314), - [sym_select_expression] = STATE(1314), - [sym_lock_expression] = STATE(1314), - [sym_unsafe_expression] = STATE(1314), - [sym_sql_expression] = STATE(1314), - [sym_c_string_literal] = STATE(1286), - [sym_raw_string_literal] = STATE(1286), - [sym_interpreted_string_literal] = STATE(1286), - [sym_mutability_modifiers] = STATE(699), - [sym_plain_type] = STATE(4129), - [sym__plain_type_without_special] = STATE(2302), - [sym_anon_struct_type] = STATE(2303), - [sym_multi_return_type] = STATE(2302), - [sym_result_type] = STATE(2302), - [sym_option_type] = STATE(2302), - [sym_qualified_type] = STATE(3541), - [sym_fixed_array_type] = STATE(2303), - [sym_array_type] = STATE(2303), - [sym_pointer_type] = STATE(2303), - [sym_wrong_pointer_type] = STATE(2303), - [sym_map_type] = STATE(2303), - [sym_channel_type] = STATE(2303), - [sym_shared_type] = STATE(2303), - [sym_thread_type] = STATE(2303), - [sym_atomic_type] = STATE(2303), - [sym_generic_type] = STATE(2303), - [sym_function_type] = STATE(2303), - [sym_identifier] = ACTIONS(1354), + [sym__expression] = STATE(2829), + [sym__expression_without_blocks] = STATE(2921), + [sym__expression_with_blocks] = STATE(2347), + [sym_inc_expression] = STATE(2379), + [sym_dec_expression] = STATE(2379), + [sym_or_block_expression] = STATE(2379), + [sym_option_propagation_expression] = STATE(2379), + [sym_result_propagation_expression] = STATE(2379), + [sym_anon_struct_value_expression] = STATE(2378), + [sym_go_expression] = STATE(2379), + [sym_spawn_expression] = STATE(2379), + [sym_parenthesized_expression] = STATE(2379), + [sym_call_expression] = STATE(2379), + [sym_type_initializer] = STATE(2378), + [sym_function_literal] = STATE(2379), + [sym_reference_expression] = STATE(2377), + [sym_type_reference_expression] = STATE(3460), + [sym_unary_expression] = STATE(2379), + [sym_receive_expression] = STATE(2379), + [sym_binary_expression] = STATE(2379), + [sym_as_type_cast_expression] = STATE(2379), + [sym__max_group] = STATE(2379), + [sym_literal] = STATE(2392), + [sym_map_init_expression] = STATE(2378), + [sym_array_creation] = STATE(2379), + [sym_fixed_array_creation] = STATE(2379), + [sym_selector_expression] = STATE(2379), + [sym_index_expression] = STATE(2379), + [sym_slice_expression] = STATE(2379), + [sym_if_expression] = STATE(2378), + [sym_compile_time_if_expression] = STATE(2378), + [sym_is_expression] = STATE(2379), + [sym_in_expression] = STATE(2379), + [sym_enum_fetch] = STATE(2379), + [sym_match_expression] = STATE(2378), + [sym_select_expression] = STATE(2378), + [sym_lock_expression] = STATE(2378), + [sym_unsafe_expression] = STATE(2378), + [sym_sql_expression] = STATE(2378), + [sym_c_string_literal] = STATE(2401), + [sym_raw_string_literal] = STATE(2401), + [sym_interpreted_string_literal] = STATE(2401), + [sym_mutability_modifiers] = STATE(939), + [sym_plain_type] = STATE(4160), + [sym__plain_type_without_special] = STATE(2360), + [sym_anon_struct_type] = STATE(2362), + [sym_multi_return_type] = STATE(2360), + [sym_result_type] = STATE(2360), + [sym_option_type] = STATE(2360), + [sym_qualified_type] = STATE(3460), + [sym_fixed_array_type] = STATE(2362), + [sym_array_type] = STATE(2362), + [sym_pointer_type] = STATE(2362), + [sym_wrong_pointer_type] = STATE(2362), + [sym_map_type] = STATE(2362), + [sym_channel_type] = STATE(2362), + [sym_shared_type] = STATE(2362), + [sym_thread_type] = STATE(2362), + [sym_atomic_type] = STATE(2362), + [sym_generic_type] = STATE(2362), + [sym_function_type] = STATE(2362), + [sym_identifier] = ACTIONS(2477), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1356), - [anon_sym_LBRACE] = ACTIONS(1358), - [anon_sym_LPAREN] = ACTIONS(1360), - [anon_sym_fn] = ACTIONS(1362), - [anon_sym_PLUS] = ACTIONS(1863), - [anon_sym_DASH] = ACTIONS(1863), - [anon_sym_STAR] = ACTIONS(1865), - [anon_sym_struct] = ACTIONS(1370), + [anon_sym_DOT] = ACTIONS(1430), + [anon_sym_LBRACE] = ACTIONS(1432), + [anon_sym_LPAREN] = ACTIONS(1434), + [anon_sym_fn] = ACTIONS(1436), + [anon_sym_PLUS] = ACTIONS(2271), + [anon_sym_DASH] = ACTIONS(2271), + [anon_sym_STAR] = ACTIONS(3354), + [anon_sym_struct] = ACTIONS(1442), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(1867), - [anon_sym_go] = ACTIONS(1869), - [anon_sym_spawn] = ACTIONS(1871), - [anon_sym_json_DOTdecode] = ACTIONS(1378), - [anon_sym_LBRACK2] = ACTIONS(1380), - [anon_sym_TILDE] = ACTIONS(1863), - [anon_sym_CARET] = ACTIONS(1863), - [anon_sym_AMP] = ACTIONS(1873), - [anon_sym_LT_DASH] = ACTIONS(1875), - [sym_none] = ACTIONS(1386), - [sym_true] = ACTIONS(1386), - [sym_false] = ACTIONS(1386), - [sym_nil] = ACTIONS(1386), - [anon_sym_if] = ACTIONS(1877), - [anon_sym_DOLLARif] = ACTIONS(1390), - [anon_sym_match] = ACTIONS(1392), - [anon_sym_select] = ACTIONS(1879), - [anon_sym_lock] = ACTIONS(1881), - [anon_sym_rlock] = ACTIONS(1881), - [anon_sym_unsafe] = ACTIONS(1883), - [anon_sym_sql] = ACTIONS(1400), - [sym_int_literal] = ACTIONS(1386), - [sym_float_literal] = ACTIONS(1404), - [sym_rune_literal] = ACTIONS(1404), - [sym_pseudo_compile_time_identifier] = ACTIONS(1406), + [anon_sym_BANG] = ACTIONS(3356), + [anon_sym_go] = ACTIONS(2277), + [anon_sym_spawn] = ACTIONS(2279), + [anon_sym_json_DOTdecode] = ACTIONS(1450), + [anon_sym_LBRACK2] = ACTIONS(1452), + [anon_sym_TILDE] = ACTIONS(2271), + [anon_sym_CARET] = ACTIONS(2271), + [anon_sym_AMP] = ACTIONS(3358), + [anon_sym_LT_DASH] = ACTIONS(2283), + [sym_none] = ACTIONS(1458), + [sym_true] = ACTIONS(1458), + [sym_false] = ACTIONS(1458), + [sym_nil] = ACTIONS(1458), + [anon_sym_if] = ACTIONS(1833), + [anon_sym_DOLLARif] = ACTIONS(1462), + [anon_sym_match] = ACTIONS(1464), + [anon_sym_select] = ACTIONS(1466), + [anon_sym_lock] = ACTIONS(1468), + [anon_sym_rlock] = ACTIONS(1468), + [anon_sym_unsafe] = ACTIONS(1839), + [anon_sym_sql] = ACTIONS(1472), + [sym_int_literal] = ACTIONS(1458), + [sym_float_literal] = ACTIONS(1474), + [sym_rune_literal] = ACTIONS(1474), + [sym_pseudo_compile_time_identifier] = ACTIONS(1476), [anon_sym_shared] = ACTIONS(83), [anon_sym_map_LBRACK] = ACTIONS(85), [anon_sym_chan] = ACTIONS(87), [anon_sym_thread] = ACTIONS(89), [anon_sym_atomic] = ACTIONS(91), - [sym___double_quote] = ACTIONS(1408), - [sym___single_quote] = ACTIONS(1410), - [sym___c_double_quote] = ACTIONS(1412), - [sym___c_single_quote] = ACTIONS(1414), - [sym___r_double_quote] = ACTIONS(1416), - [sym___r_single_quote] = ACTIONS(1418), + [sym___double_quote] = ACTIONS(1480), + [sym___single_quote] = ACTIONS(1482), + [sym___c_double_quote] = ACTIONS(1484), + [sym___c_single_quote] = ACTIONS(1486), + [sym___r_double_quote] = ACTIONS(1488), + [sym___r_single_quote] = ACTIONS(1490), }, [812] = { [sym_line_comment] = STATE(812), [sym_block_comment] = STATE(812), - [sym__expression] = STATE(1290), - [sym__expression_without_blocks] = STATE(1312), - [sym__expression_with_blocks] = STATE(1312), - [sym_inc_expression] = STATE(1313), - [sym_dec_expression] = STATE(1313), - [sym_or_block_expression] = STATE(1313), - [sym_option_propagation_expression] = STATE(1313), - [sym_result_propagation_expression] = STATE(1313), - [sym_anon_struct_value_expression] = STATE(1314), - [sym_go_expression] = STATE(1313), - [sym_spawn_expression] = STATE(1313), - [sym_parenthesized_expression] = STATE(1313), - [sym_call_expression] = STATE(1313), - [sym_type_initializer] = STATE(1314), - [sym_function_literal] = STATE(1313), - [sym_reference_expression] = STATE(1334), - [sym_type_reference_expression] = STATE(3541), - [sym_unary_expression] = STATE(1313), - [sym_receive_expression] = STATE(1313), - [sym_binary_expression] = STATE(1313), - [sym_as_type_cast_expression] = STATE(1313), - [sym__max_group] = STATE(1313), - [sym_literal] = STATE(1308), - [sym_map_init_expression] = STATE(1314), - [sym_array_creation] = STATE(1313), - [sym_fixed_array_creation] = STATE(1313), - [sym_selector_expression] = STATE(1313), - [sym_index_expression] = STATE(1313), - [sym_slice_expression] = STATE(1313), - [sym_if_expression] = STATE(1314), - [sym_compile_time_if_expression] = STATE(1314), - [sym_is_expression] = STATE(1313), - [sym_in_expression] = STATE(1313), - [sym_enum_fetch] = STATE(1313), - [sym_match_expression] = STATE(1314), - [sym_select_expression] = STATE(1314), - [sym_lock_expression] = STATE(1314), - [sym_unsafe_expression] = STATE(1314), - [sym_sql_expression] = STATE(1314), - [sym_c_string_literal] = STATE(1286), - [sym_raw_string_literal] = STATE(1286), - [sym_interpreted_string_literal] = STATE(1286), - [sym_mutability_modifiers] = STATE(699), - [sym_plain_type] = STATE(4192), - [sym__plain_type_without_special] = STATE(2302), - [sym_anon_struct_type] = STATE(2303), - [sym_multi_return_type] = STATE(2302), - [sym_result_type] = STATE(2302), - [sym_option_type] = STATE(2302), - [sym_qualified_type] = STATE(3541), - [sym_fixed_array_type] = STATE(2303), - [sym_array_type] = STATE(2303), - [sym_pointer_type] = STATE(2303), - [sym_wrong_pointer_type] = STATE(2303), - [sym_map_type] = STATE(2303), - [sym_channel_type] = STATE(2303), - [sym_shared_type] = STATE(2303), - [sym_thread_type] = STATE(2303), - [sym_atomic_type] = STATE(2303), - [sym_generic_type] = STATE(2303), - [sym_function_type] = STATE(2303), - [sym_identifier] = ACTIONS(1354), + [sym__expression] = STATE(2267), + [sym__expression_without_blocks] = STATE(2347), + [sym__expression_with_blocks] = STATE(2347), + [sym_inc_expression] = STATE(2379), + [sym_dec_expression] = STATE(2379), + [sym_or_block_expression] = STATE(2379), + [sym_option_propagation_expression] = STATE(2379), + [sym_result_propagation_expression] = STATE(2379), + [sym_anon_struct_value_expression] = STATE(2378), + [sym_go_expression] = STATE(2379), + [sym_spawn_expression] = STATE(2379), + [sym_parenthesized_expression] = STATE(2379), + [sym_call_expression] = STATE(2379), + [sym_type_initializer] = STATE(2378), + [sym_function_literal] = STATE(2379), + [sym_reference_expression] = STATE(2377), + [sym_type_reference_expression] = STATE(3460), + [sym_unary_expression] = STATE(2379), + [sym_receive_expression] = STATE(2379), + [sym_binary_expression] = STATE(2379), + [sym_as_type_cast_expression] = STATE(2379), + [sym__max_group] = STATE(2379), + [sym_literal] = STATE(2392), + [sym_map_init_expression] = STATE(2378), + [sym_array_creation] = STATE(2379), + [sym_fixed_array_creation] = STATE(2379), + [sym_selector_expression] = STATE(2379), + [sym_index_expression] = STATE(2379), + [sym_slice_expression] = STATE(2379), + [sym_if_expression] = STATE(2378), + [sym_compile_time_if_expression] = STATE(2378), + [sym_is_expression] = STATE(2379), + [sym_in_expression] = STATE(2379), + [sym_enum_fetch] = STATE(2379), + [sym_match_expression] = STATE(2378), + [sym_select_expression] = STATE(2378), + [sym_lock_expression] = STATE(2378), + [sym_unsafe_expression] = STATE(2378), + [sym_sql_expression] = STATE(2378), + [sym_c_string_literal] = STATE(2401), + [sym_raw_string_literal] = STATE(2401), + [sym_interpreted_string_literal] = STATE(2401), + [sym_mutability_modifiers] = STATE(553), + [sym_plain_type] = STATE(3558), + [sym__plain_type_without_special] = STATE(2360), + [sym_anon_struct_type] = STATE(2362), + [sym_multi_return_type] = STATE(2360), + [sym_result_type] = STATE(2360), + [sym_option_type] = STATE(2360), + [sym_qualified_type] = STATE(3460), + [sym_fixed_array_type] = STATE(2362), + [sym_array_type] = STATE(2362), + [sym_pointer_type] = STATE(2362), + [sym_wrong_pointer_type] = STATE(2362), + [sym_map_type] = STATE(2362), + [sym_channel_type] = STATE(2362), + [sym_shared_type] = STATE(2362), + [sym_thread_type] = STATE(2362), + [sym_atomic_type] = STATE(2362), + [sym_generic_type] = STATE(2362), + [sym_function_type] = STATE(2362), + [sym_identifier] = ACTIONS(1815), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1356), - [anon_sym_LBRACE] = ACTIONS(1358), - [anon_sym_LPAREN] = ACTIONS(1360), - [anon_sym_fn] = ACTIONS(1362), - [anon_sym_PLUS] = ACTIONS(1863), - [anon_sym_DASH] = ACTIONS(1863), - [anon_sym_STAR] = ACTIONS(1865), - [anon_sym_struct] = ACTIONS(1370), + [anon_sym_DOT] = ACTIONS(1430), + [anon_sym_LBRACE] = ACTIONS(1432), + [anon_sym_LPAREN] = ACTIONS(1434), + [anon_sym_fn] = ACTIONS(1436), + [anon_sym_PLUS] = ACTIONS(1817), + [anon_sym_DASH] = ACTIONS(1817), + [anon_sym_STAR] = ACTIONS(1819), + [anon_sym_struct] = ACTIONS(1442), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(1867), - [anon_sym_go] = ACTIONS(1869), - [anon_sym_spawn] = ACTIONS(1871), - [anon_sym_json_DOTdecode] = ACTIONS(1378), - [anon_sym_LBRACK2] = ACTIONS(1380), - [anon_sym_TILDE] = ACTIONS(1863), - [anon_sym_CARET] = ACTIONS(1863), - [anon_sym_AMP] = ACTIONS(1873), - [anon_sym_LT_DASH] = ACTIONS(1875), - [sym_none] = ACTIONS(1386), - [sym_true] = ACTIONS(1386), - [sym_false] = ACTIONS(1386), - [sym_nil] = ACTIONS(1386), - [anon_sym_if] = ACTIONS(1877), - [anon_sym_DOLLARif] = ACTIONS(1390), - [anon_sym_match] = ACTIONS(1392), - [anon_sym_select] = ACTIONS(1879), - [anon_sym_lock] = ACTIONS(1881), - [anon_sym_rlock] = ACTIONS(1881), - [anon_sym_unsafe] = ACTIONS(1883), - [anon_sym_sql] = ACTIONS(1400), - [sym_int_literal] = ACTIONS(1386), - [sym_float_literal] = ACTIONS(1404), - [sym_rune_literal] = ACTIONS(1404), - [sym_pseudo_compile_time_identifier] = ACTIONS(1406), + [anon_sym_BANG] = ACTIONS(1821), + [anon_sym_go] = ACTIONS(1823), + [anon_sym_spawn] = ACTIONS(1825), + [anon_sym_json_DOTdecode] = ACTIONS(1450), + [anon_sym_LBRACK2] = ACTIONS(1827), + [anon_sym_TILDE] = ACTIONS(1817), + [anon_sym_CARET] = ACTIONS(1817), + [anon_sym_AMP] = ACTIONS(1829), + [anon_sym_LT_DASH] = ACTIONS(1831), + [sym_none] = ACTIONS(1458), + [sym_true] = ACTIONS(1458), + [sym_false] = ACTIONS(1458), + [sym_nil] = ACTIONS(1458), + [anon_sym_if] = ACTIONS(1833), + [anon_sym_DOLLARif] = ACTIONS(1462), + [anon_sym_match] = ACTIONS(1464), + [anon_sym_select] = ACTIONS(1835), + [anon_sym_lock] = ACTIONS(1837), + [anon_sym_rlock] = ACTIONS(1837), + [anon_sym_unsafe] = ACTIONS(1839), + [anon_sym_sql] = ACTIONS(1472), + [sym_int_literal] = ACTIONS(1458), + [sym_float_literal] = ACTIONS(1474), + [sym_rune_literal] = ACTIONS(1474), + [sym_pseudo_compile_time_identifier] = ACTIONS(1476), [anon_sym_shared] = ACTIONS(83), [anon_sym_map_LBRACK] = ACTIONS(85), [anon_sym_chan] = ACTIONS(87), [anon_sym_thread] = ACTIONS(89), [anon_sym_atomic] = ACTIONS(91), - [sym___double_quote] = ACTIONS(1408), - [sym___single_quote] = ACTIONS(1410), - [sym___c_double_quote] = ACTIONS(1412), - [sym___c_single_quote] = ACTIONS(1414), - [sym___r_double_quote] = ACTIONS(1416), - [sym___r_single_quote] = ACTIONS(1418), + [sym___double_quote] = ACTIONS(1480), + [sym___single_quote] = ACTIONS(1482), + [sym___c_double_quote] = ACTIONS(1484), + [sym___c_single_quote] = ACTIONS(1486), + [sym___r_double_quote] = ACTIONS(1488), + [sym___r_single_quote] = ACTIONS(1490), }, [813] = { [sym_line_comment] = STATE(813), [sym_block_comment] = STATE(813), - [sym__expression] = STATE(1282), - [sym__expression_without_blocks] = STATE(1312), - [sym__expression_with_blocks] = STATE(1312), - [sym_inc_expression] = STATE(1313), - [sym_dec_expression] = STATE(1313), - [sym_or_block_expression] = STATE(1313), - [sym_option_propagation_expression] = STATE(1313), - [sym_result_propagation_expression] = STATE(1313), - [sym_anon_struct_value_expression] = STATE(1314), - [sym_go_expression] = STATE(1313), - [sym_spawn_expression] = STATE(1313), - [sym_parenthesized_expression] = STATE(1313), - [sym_call_expression] = STATE(1313), - [sym_type_initializer] = STATE(1314), - [sym_function_literal] = STATE(1313), - [sym_reference_expression] = STATE(1334), - [sym_type_reference_expression] = STATE(3541), - [sym_unary_expression] = STATE(1313), - [sym_receive_expression] = STATE(1313), - [sym_binary_expression] = STATE(1313), - [sym_as_type_cast_expression] = STATE(1313), - [sym__max_group] = STATE(1313), - [sym_literal] = STATE(1308), - [sym_map_init_expression] = STATE(1314), - [sym_array_creation] = STATE(1313), - [sym_fixed_array_creation] = STATE(1313), - [sym_selector_expression] = STATE(1313), - [sym_index_expression] = STATE(1313), - [sym_slice_expression] = STATE(1313), - [sym_if_expression] = STATE(1314), - [sym_compile_time_if_expression] = STATE(1314), - [sym_is_expression] = STATE(1313), - [sym_in_expression] = STATE(1313), - [sym_enum_fetch] = STATE(1313), - [sym_match_expression] = STATE(1314), - [sym_select_expression] = STATE(1314), - [sym_lock_expression] = STATE(1314), - [sym_unsafe_expression] = STATE(1314), - [sym_sql_expression] = STATE(1314), - [sym_c_string_literal] = STATE(1286), - [sym_raw_string_literal] = STATE(1286), - [sym_interpreted_string_literal] = STATE(1286), - [sym_mutability_modifiers] = STATE(699), - [sym_plain_type] = STATE(4192), - [sym__plain_type_without_special] = STATE(2302), - [sym_anon_struct_type] = STATE(2303), - [sym_multi_return_type] = STATE(2302), - [sym_result_type] = STATE(2302), - [sym_option_type] = STATE(2302), - [sym_qualified_type] = STATE(3541), - [sym_fixed_array_type] = STATE(2303), - [sym_array_type] = STATE(2303), - [sym_pointer_type] = STATE(2303), - [sym_wrong_pointer_type] = STATE(2303), - [sym_map_type] = STATE(2303), - [sym_channel_type] = STATE(2303), - [sym_shared_type] = STATE(2303), - [sym_thread_type] = STATE(2303), - [sym_atomic_type] = STATE(2303), - [sym_generic_type] = STATE(2303), - [sym_function_type] = STATE(2303), - [sym_identifier] = ACTIONS(1354), + [sym__expression] = STATE(2267), + [sym__expression_without_blocks] = STATE(2347), + [sym__expression_with_blocks] = STATE(2347), + [sym_inc_expression] = STATE(2379), + [sym_dec_expression] = STATE(2379), + [sym_or_block_expression] = STATE(2379), + [sym_option_propagation_expression] = STATE(2379), + [sym_result_propagation_expression] = STATE(2379), + [sym_anon_struct_value_expression] = STATE(2378), + [sym_go_expression] = STATE(2379), + [sym_spawn_expression] = STATE(2379), + [sym_parenthesized_expression] = STATE(2379), + [sym_call_expression] = STATE(2379), + [sym_type_initializer] = STATE(2378), + [sym_function_literal] = STATE(2379), + [sym_reference_expression] = STATE(2377), + [sym_type_reference_expression] = STATE(3460), + [sym_unary_expression] = STATE(2379), + [sym_receive_expression] = STATE(2379), + [sym_binary_expression] = STATE(2379), + [sym_as_type_cast_expression] = STATE(2379), + [sym__max_group] = STATE(2379), + [sym_literal] = STATE(2392), + [sym_map_init_expression] = STATE(2378), + [sym_array_creation] = STATE(2379), + [sym_fixed_array_creation] = STATE(2379), + [sym_selector_expression] = STATE(2379), + [sym_index_expression] = STATE(2379), + [sym_slice_expression] = STATE(2379), + [sym_if_expression] = STATE(2378), + [sym_compile_time_if_expression] = STATE(2378), + [sym_is_expression] = STATE(2379), + [sym_in_expression] = STATE(2379), + [sym_enum_fetch] = STATE(2379), + [sym_match_expression] = STATE(2378), + [sym_select_expression] = STATE(2378), + [sym_lock_expression] = STATE(2378), + [sym_unsafe_expression] = STATE(2378), + [sym_sql_expression] = STATE(2378), + [sym_c_string_literal] = STATE(2401), + [sym_raw_string_literal] = STATE(2401), + [sym_interpreted_string_literal] = STATE(2401), + [sym_mutability_modifiers] = STATE(553), + [sym_plain_type] = STATE(3557), + [sym__plain_type_without_special] = STATE(2360), + [sym_anon_struct_type] = STATE(2362), + [sym_multi_return_type] = STATE(2360), + [sym_result_type] = STATE(2360), + [sym_option_type] = STATE(2360), + [sym_qualified_type] = STATE(3460), + [sym_fixed_array_type] = STATE(2362), + [sym_array_type] = STATE(2362), + [sym_pointer_type] = STATE(2362), + [sym_wrong_pointer_type] = STATE(2362), + [sym_map_type] = STATE(2362), + [sym_channel_type] = STATE(2362), + [sym_shared_type] = STATE(2362), + [sym_thread_type] = STATE(2362), + [sym_atomic_type] = STATE(2362), + [sym_generic_type] = STATE(2362), + [sym_function_type] = STATE(2362), + [sym_identifier] = ACTIONS(1815), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1356), - [anon_sym_LBRACE] = ACTIONS(1358), - [anon_sym_LPAREN] = ACTIONS(1360), - [anon_sym_fn] = ACTIONS(1362), - [anon_sym_PLUS] = ACTIONS(1863), - [anon_sym_DASH] = ACTIONS(1863), - [anon_sym_STAR] = ACTIONS(1865), - [anon_sym_struct] = ACTIONS(1370), + [anon_sym_DOT] = ACTIONS(1430), + [anon_sym_LBRACE] = ACTIONS(1432), + [anon_sym_LPAREN] = ACTIONS(1434), + [anon_sym_fn] = ACTIONS(1436), + [anon_sym_PLUS] = ACTIONS(1817), + [anon_sym_DASH] = ACTIONS(1817), + [anon_sym_STAR] = ACTIONS(1819), + [anon_sym_struct] = ACTIONS(1442), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(1867), - [anon_sym_go] = ACTIONS(1869), - [anon_sym_spawn] = ACTIONS(1871), - [anon_sym_json_DOTdecode] = ACTIONS(1378), - [anon_sym_LBRACK2] = ACTIONS(1380), - [anon_sym_TILDE] = ACTIONS(1863), - [anon_sym_CARET] = ACTIONS(1863), - [anon_sym_AMP] = ACTIONS(1873), - [anon_sym_LT_DASH] = ACTIONS(1875), - [sym_none] = ACTIONS(1386), - [sym_true] = ACTIONS(1386), - [sym_false] = ACTIONS(1386), - [sym_nil] = ACTIONS(1386), - [anon_sym_if] = ACTIONS(1877), - [anon_sym_DOLLARif] = ACTIONS(1390), - [anon_sym_match] = ACTIONS(1392), - [anon_sym_select] = ACTIONS(1879), - [anon_sym_lock] = ACTIONS(1881), - [anon_sym_rlock] = ACTIONS(1881), - [anon_sym_unsafe] = ACTIONS(1883), - [anon_sym_sql] = ACTIONS(1400), - [sym_int_literal] = ACTIONS(1386), - [sym_float_literal] = ACTIONS(1404), - [sym_rune_literal] = ACTIONS(1404), - [sym_pseudo_compile_time_identifier] = ACTIONS(1406), + [anon_sym_BANG] = ACTIONS(1821), + [anon_sym_go] = ACTIONS(1823), + [anon_sym_spawn] = ACTIONS(1825), + [anon_sym_json_DOTdecode] = ACTIONS(1450), + [anon_sym_LBRACK2] = ACTIONS(1827), + [anon_sym_TILDE] = ACTIONS(1817), + [anon_sym_CARET] = ACTIONS(1817), + [anon_sym_AMP] = ACTIONS(1829), + [anon_sym_LT_DASH] = ACTIONS(1831), + [sym_none] = ACTIONS(1458), + [sym_true] = ACTIONS(1458), + [sym_false] = ACTIONS(1458), + [sym_nil] = ACTIONS(1458), + [anon_sym_if] = ACTIONS(1833), + [anon_sym_DOLLARif] = ACTIONS(1462), + [anon_sym_match] = ACTIONS(1464), + [anon_sym_select] = ACTIONS(1835), + [anon_sym_lock] = ACTIONS(1837), + [anon_sym_rlock] = ACTIONS(1837), + [anon_sym_unsafe] = ACTIONS(1839), + [anon_sym_sql] = ACTIONS(1472), + [sym_int_literal] = ACTIONS(1458), + [sym_float_literal] = ACTIONS(1474), + [sym_rune_literal] = ACTIONS(1474), + [sym_pseudo_compile_time_identifier] = ACTIONS(1476), [anon_sym_shared] = ACTIONS(83), [anon_sym_map_LBRACK] = ACTIONS(85), [anon_sym_chan] = ACTIONS(87), [anon_sym_thread] = ACTIONS(89), [anon_sym_atomic] = ACTIONS(91), - [sym___double_quote] = ACTIONS(1408), - [sym___single_quote] = ACTIONS(1410), - [sym___c_double_quote] = ACTIONS(1412), - [sym___c_single_quote] = ACTIONS(1414), - [sym___r_double_quote] = ACTIONS(1416), - [sym___r_single_quote] = ACTIONS(1418), + [sym___double_quote] = ACTIONS(1480), + [sym___single_quote] = ACTIONS(1482), + [sym___c_double_quote] = ACTIONS(1484), + [sym___c_single_quote] = ACTIONS(1486), + [sym___r_double_quote] = ACTIONS(1488), + [sym___r_single_quote] = ACTIONS(1490), }, [814] = { [sym_line_comment] = STATE(814), [sym_block_comment] = STATE(814), - [sym__expression] = STATE(963), - [sym__expression_without_blocks] = STATE(1017), - [sym__expression_with_blocks] = STATE(1017), - [sym_inc_expression] = STATE(1018), - [sym_dec_expression] = STATE(1018), - [sym_or_block_expression] = STATE(1018), - [sym_option_propagation_expression] = STATE(1018), - [sym_result_propagation_expression] = STATE(1018), - [sym_anon_struct_value_expression] = STATE(993), - [sym_go_expression] = STATE(1018), - [sym_spawn_expression] = STATE(1018), - [sym_parenthesized_expression] = STATE(1018), - [sym_call_expression] = STATE(1018), - [sym_type_initializer] = STATE(993), - [sym_function_literal] = STATE(1018), - [sym_reference_expression] = STATE(1046), - [sym_type_reference_expression] = STATE(3541), - [sym_unary_expression] = STATE(1018), - [sym_receive_expression] = STATE(1018), - [sym_binary_expression] = STATE(1018), - [sym_as_type_cast_expression] = STATE(1018), - [sym__max_group] = STATE(1018), - [sym_literal] = STATE(1014), - [sym_map_init_expression] = STATE(993), - [sym_array_creation] = STATE(1018), - [sym_fixed_array_creation] = STATE(1018), - [sym_selector_expression] = STATE(1018), - [sym_index_expression] = STATE(1018), - [sym_slice_expression] = STATE(1018), - [sym_if_expression] = STATE(993), - [sym_compile_time_if_expression] = STATE(993), - [sym_is_expression] = STATE(1018), - [sym_in_expression] = STATE(1018), - [sym_enum_fetch] = STATE(1018), - [sym_match_expression] = STATE(993), - [sym_select_expression] = STATE(993), - [sym_lock_expression] = STATE(993), - [sym_unsafe_expression] = STATE(993), - [sym_sql_expression] = STATE(993), - [sym_c_string_literal] = STATE(1006), - [sym_raw_string_literal] = STATE(1006), - [sym_interpreted_string_literal] = STATE(1006), - [sym_mutability_modifiers] = STATE(691), - [sym_plain_type] = STATE(4296), - [sym__plain_type_without_special] = STATE(2302), - [sym_anon_struct_type] = STATE(2303), - [sym_multi_return_type] = STATE(2302), - [sym_result_type] = STATE(2302), - [sym_option_type] = STATE(2302), - [sym_qualified_type] = STATE(3541), - [sym_fixed_array_type] = STATE(2303), - [sym_array_type] = STATE(2303), - [sym_pointer_type] = STATE(2303), - [sym_wrong_pointer_type] = STATE(2303), - [sym_map_type] = STATE(2303), - [sym_channel_type] = STATE(2303), - [sym_shared_type] = STATE(2303), - [sym_thread_type] = STATE(2303), - [sym_atomic_type] = STATE(2303), - [sym_generic_type] = STATE(2303), - [sym_function_type] = STATE(2303), - [sym_identifier] = ACTIONS(493), + [sym__expression] = STATE(2267), + [sym__expression_without_blocks] = STATE(2347), + [sym__expression_with_blocks] = STATE(2347), + [sym_inc_expression] = STATE(2379), + [sym_dec_expression] = STATE(2379), + [sym_or_block_expression] = STATE(2379), + [sym_option_propagation_expression] = STATE(2379), + [sym_result_propagation_expression] = STATE(2379), + [sym_anon_struct_value_expression] = STATE(2378), + [sym_go_expression] = STATE(2379), + [sym_spawn_expression] = STATE(2379), + [sym_parenthesized_expression] = STATE(2379), + [sym_call_expression] = STATE(2379), + [sym_type_initializer] = STATE(2378), + [sym_function_literal] = STATE(2379), + [sym_reference_expression] = STATE(2377), + [sym_type_reference_expression] = STATE(3460), + [sym_unary_expression] = STATE(2379), + [sym_receive_expression] = STATE(2379), + [sym_binary_expression] = STATE(2379), + [sym_as_type_cast_expression] = STATE(2379), + [sym__max_group] = STATE(2379), + [sym_literal] = STATE(2392), + [sym_map_init_expression] = STATE(2378), + [sym_array_creation] = STATE(2379), + [sym_fixed_array_creation] = STATE(2379), + [sym_selector_expression] = STATE(2379), + [sym_index_expression] = STATE(2379), + [sym_slice_expression] = STATE(2379), + [sym_if_expression] = STATE(2378), + [sym_compile_time_if_expression] = STATE(2378), + [sym_is_expression] = STATE(2379), + [sym_in_expression] = STATE(2379), + [sym_enum_fetch] = STATE(2379), + [sym_match_expression] = STATE(2378), + [sym_select_expression] = STATE(2378), + [sym_lock_expression] = STATE(2378), + [sym_unsafe_expression] = STATE(2378), + [sym_sql_expression] = STATE(2378), + [sym_c_string_literal] = STATE(2401), + [sym_raw_string_literal] = STATE(2401), + [sym_interpreted_string_literal] = STATE(2401), + [sym_mutability_modifiers] = STATE(553), + [sym_plain_type] = STATE(4160), + [sym__plain_type_without_special] = STATE(2360), + [sym_anon_struct_type] = STATE(2362), + [sym_multi_return_type] = STATE(2360), + [sym_result_type] = STATE(2360), + [sym_option_type] = STATE(2360), + [sym_qualified_type] = STATE(3460), + [sym_fixed_array_type] = STATE(2362), + [sym_array_type] = STATE(2362), + [sym_pointer_type] = STATE(2362), + [sym_wrong_pointer_type] = STATE(2362), + [sym_map_type] = STATE(2362), + [sym_channel_type] = STATE(2362), + [sym_shared_type] = STATE(2362), + [sym_thread_type] = STATE(2362), + [sym_atomic_type] = STATE(2362), + [sym_generic_type] = STATE(2362), + [sym_function_type] = STATE(2362), + [sym_identifier] = ACTIONS(1815), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(501), - [anon_sym_LBRACE] = ACTIONS(2319), - [anon_sym_LPAREN] = ACTIONS(2321), - [anon_sym_fn] = ACTIONS(507), - [anon_sym_PLUS] = ACTIONS(2323), - [anon_sym_DASH] = ACTIONS(2323), - [anon_sym_STAR] = ACTIONS(2325), - [anon_sym_struct] = ACTIONS(513), + [anon_sym_DOT] = ACTIONS(1430), + [anon_sym_LBRACE] = ACTIONS(1432), + [anon_sym_LPAREN] = ACTIONS(1434), + [anon_sym_fn] = ACTIONS(1436), + [anon_sym_PLUS] = ACTIONS(1817), + [anon_sym_DASH] = ACTIONS(1817), + [anon_sym_STAR] = ACTIONS(1819), + [anon_sym_struct] = ACTIONS(1442), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(2327), - [anon_sym_go] = ACTIONS(519), - [anon_sym_spawn] = ACTIONS(521), - [anon_sym_json_DOTdecode] = ACTIONS(2329), - [anon_sym_LBRACK2] = ACTIONS(2331), - [anon_sym_TILDE] = ACTIONS(2323), - [anon_sym_CARET] = ACTIONS(2323), - [anon_sym_AMP] = ACTIONS(2333), - [anon_sym_LT_DASH] = ACTIONS(2335), - [sym_none] = ACTIONS(531), - [sym_true] = ACTIONS(531), - [sym_false] = ACTIONS(531), - [sym_nil] = ACTIONS(531), - [anon_sym_if] = ACTIONS(533), - [anon_sym_DOLLARif] = ACTIONS(535), - [anon_sym_match] = ACTIONS(537), - [anon_sym_select] = ACTIONS(539), - [anon_sym_lock] = ACTIONS(541), - [anon_sym_rlock] = ACTIONS(541), - [anon_sym_unsafe] = ACTIONS(543), - [anon_sym_sql] = ACTIONS(545), - [sym_int_literal] = ACTIONS(531), - [sym_float_literal] = ACTIONS(2337), - [sym_rune_literal] = ACTIONS(2337), - [sym_pseudo_compile_time_identifier] = ACTIONS(547), + [anon_sym_BANG] = ACTIONS(1821), + [anon_sym_go] = ACTIONS(1823), + [anon_sym_spawn] = ACTIONS(1825), + [anon_sym_json_DOTdecode] = ACTIONS(1450), + [anon_sym_LBRACK2] = ACTIONS(1827), + [anon_sym_TILDE] = ACTIONS(1817), + [anon_sym_CARET] = ACTIONS(1817), + [anon_sym_AMP] = ACTIONS(1829), + [anon_sym_LT_DASH] = ACTIONS(1831), + [sym_none] = ACTIONS(1458), + [sym_true] = ACTIONS(1458), + [sym_false] = ACTIONS(1458), + [sym_nil] = ACTIONS(1458), + [anon_sym_if] = ACTIONS(1833), + [anon_sym_DOLLARif] = ACTIONS(1462), + [anon_sym_match] = ACTIONS(1464), + [anon_sym_select] = ACTIONS(1835), + [anon_sym_lock] = ACTIONS(1837), + [anon_sym_rlock] = ACTIONS(1837), + [anon_sym_unsafe] = ACTIONS(1839), + [anon_sym_sql] = ACTIONS(1472), + [sym_int_literal] = ACTIONS(1458), + [sym_float_literal] = ACTIONS(1474), + [sym_rune_literal] = ACTIONS(1474), + [sym_pseudo_compile_time_identifier] = ACTIONS(1476), [anon_sym_shared] = ACTIONS(83), [anon_sym_map_LBRACK] = ACTIONS(85), [anon_sym_chan] = ACTIONS(87), [anon_sym_thread] = ACTIONS(89), [anon_sym_atomic] = ACTIONS(91), - [sym___double_quote] = ACTIONS(2339), - [sym___single_quote] = ACTIONS(2341), - [sym___c_double_quote] = ACTIONS(2343), - [sym___c_single_quote] = ACTIONS(2345), - [sym___r_double_quote] = ACTIONS(2347), - [sym___r_single_quote] = ACTIONS(2349), + [sym___double_quote] = ACTIONS(1480), + [sym___single_quote] = ACTIONS(1482), + [sym___c_double_quote] = ACTIONS(1484), + [sym___c_single_quote] = ACTIONS(1486), + [sym___r_double_quote] = ACTIONS(1488), + [sym___r_single_quote] = ACTIONS(1490), }, [815] = { [sym_line_comment] = STATE(815), [sym_block_comment] = STATE(815), - [sym__expression] = STATE(964), - [sym__expression_without_blocks] = STATE(1017), - [sym__expression_with_blocks] = STATE(1017), - [sym_inc_expression] = STATE(1018), - [sym_dec_expression] = STATE(1018), - [sym_or_block_expression] = STATE(1018), - [sym_option_propagation_expression] = STATE(1018), - [sym_result_propagation_expression] = STATE(1018), - [sym_anon_struct_value_expression] = STATE(993), - [sym_go_expression] = STATE(1018), - [sym_spawn_expression] = STATE(1018), - [sym_parenthesized_expression] = STATE(1018), - [sym_call_expression] = STATE(1018), - [sym_type_initializer] = STATE(993), - [sym_function_literal] = STATE(1018), - [sym_reference_expression] = STATE(1046), - [sym_type_reference_expression] = STATE(3541), - [sym_unary_expression] = STATE(1018), - [sym_receive_expression] = STATE(1018), - [sym_binary_expression] = STATE(1018), - [sym_as_type_cast_expression] = STATE(1018), - [sym__max_group] = STATE(1018), - [sym_literal] = STATE(1014), - [sym_map_init_expression] = STATE(993), - [sym_array_creation] = STATE(1018), - [sym_fixed_array_creation] = STATE(1018), - [sym_selector_expression] = STATE(1018), - [sym_index_expression] = STATE(1018), - [sym_slice_expression] = STATE(1018), - [sym_if_expression] = STATE(993), - [sym_compile_time_if_expression] = STATE(993), - [sym_is_expression] = STATE(1018), - [sym_in_expression] = STATE(1018), - [sym_enum_fetch] = STATE(1018), - [sym_match_expression] = STATE(993), - [sym_select_expression] = STATE(993), - [sym_lock_expression] = STATE(993), - [sym_unsafe_expression] = STATE(993), - [sym_sql_expression] = STATE(993), - [sym_c_string_literal] = STATE(1006), - [sym_raw_string_literal] = STATE(1006), - [sym_interpreted_string_literal] = STATE(1006), - [sym_mutability_modifiers] = STATE(691), - [sym_plain_type] = STATE(4296), - [sym__plain_type_without_special] = STATE(2302), - [sym_anon_struct_type] = STATE(2303), - [sym_multi_return_type] = STATE(2302), - [sym_result_type] = STATE(2302), - [sym_option_type] = STATE(2302), - [sym_qualified_type] = STATE(3541), - [sym_fixed_array_type] = STATE(2303), - [sym_array_type] = STATE(2303), - [sym_pointer_type] = STATE(2303), - [sym_wrong_pointer_type] = STATE(2303), - [sym_map_type] = STATE(2303), - [sym_channel_type] = STATE(2303), - [sym_shared_type] = STATE(2303), - [sym_thread_type] = STATE(2303), - [sym_atomic_type] = STATE(2303), - [sym_generic_type] = STATE(2303), - [sym_function_type] = STATE(2303), - [sym_identifier] = ACTIONS(493), + [sym__expression] = STATE(2268), + [sym__expression_without_blocks] = STATE(2162), + [sym__expression_with_blocks] = STATE(2162), + [sym_inc_expression] = STATE(2161), + [sym_dec_expression] = STATE(2161), + [sym_or_block_expression] = STATE(2161), + [sym_option_propagation_expression] = STATE(2161), + [sym_result_propagation_expression] = STATE(2161), + [sym_anon_struct_value_expression] = STATE(2160), + [sym_go_expression] = STATE(2161), + [sym_spawn_expression] = STATE(2161), + [sym_parenthesized_expression] = STATE(2161), + [sym_call_expression] = STATE(2161), + [sym_type_initializer] = STATE(2160), + [sym_function_literal] = STATE(2161), + [sym_reference_expression] = STATE(2159), + [sym_type_reference_expression] = STATE(3460), + [sym_unary_expression] = STATE(2161), + [sym_receive_expression] = STATE(2161), + [sym_binary_expression] = STATE(2161), + [sym_as_type_cast_expression] = STATE(2161), + [sym__max_group] = STATE(2161), + [sym_literal] = STATE(2164), + [sym_map_init_expression] = STATE(2160), + [sym_array_creation] = STATE(2161), + [sym_fixed_array_creation] = STATE(2161), + [sym_selector_expression] = STATE(2161), + [sym_index_expression] = STATE(2161), + [sym_slice_expression] = STATE(2161), + [sym_if_expression] = STATE(2160), + [sym_compile_time_if_expression] = STATE(2160), + [sym_is_expression] = STATE(2161), + [sym_in_expression] = STATE(2161), + [sym_enum_fetch] = STATE(2161), + [sym_match_expression] = STATE(2160), + [sym_select_expression] = STATE(2160), + [sym_lock_expression] = STATE(2160), + [sym_unsafe_expression] = STATE(2160), + [sym_sql_expression] = STATE(2160), + [sym_c_string_literal] = STATE(2166), + [sym_raw_string_literal] = STATE(2166), + [sym_interpreted_string_literal] = STATE(2166), + [sym_mutability_modifiers] = STATE(575), + [sym_plain_type] = STATE(4173), + [sym__plain_type_without_special] = STATE(2360), + [sym_anon_struct_type] = STATE(2362), + [sym_multi_return_type] = STATE(2360), + [sym_result_type] = STATE(2360), + [sym_option_type] = STATE(2360), + [sym_qualified_type] = STATE(3460), + [sym_fixed_array_type] = STATE(2362), + [sym_array_type] = STATE(2362), + [sym_pointer_type] = STATE(2362), + [sym_wrong_pointer_type] = STATE(2362), + [sym_map_type] = STATE(2362), + [sym_channel_type] = STATE(2362), + [sym_shared_type] = STATE(2362), + [sym_thread_type] = STATE(2362), + [sym_atomic_type] = STATE(2362), + [sym_generic_type] = STATE(2362), + [sym_function_type] = STATE(2362), + [sym_identifier] = ACTIONS(3292), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(501), - [anon_sym_LBRACE] = ACTIONS(2319), - [anon_sym_LPAREN] = ACTIONS(2321), - [anon_sym_fn] = ACTIONS(507), - [anon_sym_PLUS] = ACTIONS(2323), - [anon_sym_DASH] = ACTIONS(2323), - [anon_sym_STAR] = ACTIONS(2325), - [anon_sym_struct] = ACTIONS(513), + [anon_sym_DOT] = ACTIONS(3294), + [anon_sym_LBRACE] = ACTIONS(3296), + [anon_sym_LPAREN] = ACTIONS(3298), + [anon_sym_fn] = ACTIONS(3300), + [anon_sym_PLUS] = ACTIONS(3302), + [anon_sym_DASH] = ACTIONS(3302), + [anon_sym_STAR] = ACTIONS(3304), + [anon_sym_struct] = ACTIONS(3306), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(2327), - [anon_sym_go] = ACTIONS(519), - [anon_sym_spawn] = ACTIONS(521), - [anon_sym_json_DOTdecode] = ACTIONS(2329), - [anon_sym_LBRACK2] = ACTIONS(2331), - [anon_sym_TILDE] = ACTIONS(2323), - [anon_sym_CARET] = ACTIONS(2323), - [anon_sym_AMP] = ACTIONS(2333), - [anon_sym_LT_DASH] = ACTIONS(2335), - [sym_none] = ACTIONS(531), - [sym_true] = ACTIONS(531), - [sym_false] = ACTIONS(531), - [sym_nil] = ACTIONS(531), - [anon_sym_if] = ACTIONS(533), - [anon_sym_DOLLARif] = ACTIONS(535), - [anon_sym_match] = ACTIONS(537), - [anon_sym_select] = ACTIONS(539), - [anon_sym_lock] = ACTIONS(541), - [anon_sym_rlock] = ACTIONS(541), - [anon_sym_unsafe] = ACTIONS(543), - [anon_sym_sql] = ACTIONS(545), - [sym_int_literal] = ACTIONS(531), - [sym_float_literal] = ACTIONS(2337), - [sym_rune_literal] = ACTIONS(2337), - [sym_pseudo_compile_time_identifier] = ACTIONS(547), + [anon_sym_BANG] = ACTIONS(3308), + [anon_sym_go] = ACTIONS(3310), + [anon_sym_spawn] = ACTIONS(3312), + [anon_sym_json_DOTdecode] = ACTIONS(3314), + [anon_sym_LBRACK2] = ACTIONS(3316), + [anon_sym_TILDE] = ACTIONS(3302), + [anon_sym_CARET] = ACTIONS(3302), + [anon_sym_AMP] = ACTIONS(3318), + [anon_sym_LT_DASH] = ACTIONS(3320), + [sym_none] = ACTIONS(3322), + [sym_true] = ACTIONS(3322), + [sym_false] = ACTIONS(3322), + [sym_nil] = ACTIONS(3322), + [anon_sym_if] = ACTIONS(3324), + [anon_sym_DOLLARif] = ACTIONS(3326), + [anon_sym_match] = ACTIONS(3328), + [anon_sym_select] = ACTIONS(3330), + [anon_sym_lock] = ACTIONS(3332), + [anon_sym_rlock] = ACTIONS(3332), + [anon_sym_unsafe] = ACTIONS(3334), + [anon_sym_sql] = ACTIONS(3336), + [sym_int_literal] = ACTIONS(3322), + [sym_float_literal] = ACTIONS(3338), + [sym_rune_literal] = ACTIONS(3338), + [sym_pseudo_compile_time_identifier] = ACTIONS(3340), [anon_sym_shared] = ACTIONS(83), [anon_sym_map_LBRACK] = ACTIONS(85), [anon_sym_chan] = ACTIONS(87), [anon_sym_thread] = ACTIONS(89), [anon_sym_atomic] = ACTIONS(91), - [sym___double_quote] = ACTIONS(2339), - [sym___single_quote] = ACTIONS(2341), - [sym___c_double_quote] = ACTIONS(2343), - [sym___c_single_quote] = ACTIONS(2345), - [sym___r_double_quote] = ACTIONS(2347), - [sym___r_single_quote] = ACTIONS(2349), + [sym___double_quote] = ACTIONS(3342), + [sym___single_quote] = ACTIONS(3344), + [sym___c_double_quote] = ACTIONS(3346), + [sym___c_single_quote] = ACTIONS(3348), + [sym___r_double_quote] = ACTIONS(3350), + [sym___r_single_quote] = ACTIONS(3352), }, [816] = { [sym_line_comment] = STATE(816), [sym_block_comment] = STATE(816), - [sym__expression] = STATE(1255), - [sym__expression_without_blocks] = STATE(1312), - [sym__expression_with_blocks] = STATE(1312), - [sym_inc_expression] = STATE(1313), - [sym_dec_expression] = STATE(1313), - [sym_or_block_expression] = STATE(1313), - [sym_option_propagation_expression] = STATE(1313), - [sym_result_propagation_expression] = STATE(1313), - [sym_anon_struct_value_expression] = STATE(1314), - [sym_go_expression] = STATE(1313), - [sym_spawn_expression] = STATE(1313), - [sym_parenthesized_expression] = STATE(1313), - [sym_call_expression] = STATE(1313), - [sym_type_initializer] = STATE(1314), - [sym_function_literal] = STATE(1313), - [sym_reference_expression] = STATE(1334), - [sym_type_reference_expression] = STATE(3541), - [sym_unary_expression] = STATE(1313), - [sym_receive_expression] = STATE(1313), - [sym_binary_expression] = STATE(1313), - [sym_as_type_cast_expression] = STATE(1313), - [sym__max_group] = STATE(1313), - [sym_literal] = STATE(1308), - [sym_map_init_expression] = STATE(1314), - [sym_array_creation] = STATE(1313), - [sym_fixed_array_creation] = STATE(1313), - [sym_selector_expression] = STATE(1313), - [sym_index_expression] = STATE(1313), - [sym_slice_expression] = STATE(1313), - [sym_if_expression] = STATE(1314), - [sym_compile_time_if_expression] = STATE(1314), - [sym_is_expression] = STATE(1313), - [sym_in_expression] = STATE(1313), - [sym_enum_fetch] = STATE(1313), - [sym_match_expression] = STATE(1314), - [sym_select_expression] = STATE(1314), - [sym_lock_expression] = STATE(1314), - [sym_unsafe_expression] = STATE(1314), - [sym_sql_expression] = STATE(1314), - [sym_c_string_literal] = STATE(1286), - [sym_raw_string_literal] = STATE(1286), - [sym_interpreted_string_literal] = STATE(1286), - [sym_mutability_modifiers] = STATE(699), - [sym_plain_type] = STATE(4178), - [sym__plain_type_without_special] = STATE(2302), - [sym_anon_struct_type] = STATE(2303), - [sym_multi_return_type] = STATE(2302), - [sym_result_type] = STATE(2302), - [sym_option_type] = STATE(2302), - [sym_qualified_type] = STATE(3541), - [sym_fixed_array_type] = STATE(2303), - [sym_array_type] = STATE(2303), - [sym_pointer_type] = STATE(2303), - [sym_wrong_pointer_type] = STATE(2303), - [sym_map_type] = STATE(2303), - [sym_channel_type] = STATE(2303), - [sym_shared_type] = STATE(2303), - [sym_thread_type] = STATE(2303), - [sym_atomic_type] = STATE(2303), - [sym_generic_type] = STATE(2303), - [sym_function_type] = STATE(2303), - [sym_identifier] = ACTIONS(1354), + [sym__expression] = STATE(2270), + [sym__expression_without_blocks] = STATE(2162), + [sym__expression_with_blocks] = STATE(2162), + [sym_inc_expression] = STATE(2161), + [sym_dec_expression] = STATE(2161), + [sym_or_block_expression] = STATE(2161), + [sym_option_propagation_expression] = STATE(2161), + [sym_result_propagation_expression] = STATE(2161), + [sym_anon_struct_value_expression] = STATE(2160), + [sym_go_expression] = STATE(2161), + [sym_spawn_expression] = STATE(2161), + [sym_parenthesized_expression] = STATE(2161), + [sym_call_expression] = STATE(2161), + [sym_type_initializer] = STATE(2160), + [sym_function_literal] = STATE(2161), + [sym_reference_expression] = STATE(2159), + [sym_type_reference_expression] = STATE(3460), + [sym_unary_expression] = STATE(2161), + [sym_receive_expression] = STATE(2161), + [sym_binary_expression] = STATE(2161), + [sym_as_type_cast_expression] = STATE(2161), + [sym__max_group] = STATE(2161), + [sym_literal] = STATE(2164), + [sym_map_init_expression] = STATE(2160), + [sym_array_creation] = STATE(2161), + [sym_fixed_array_creation] = STATE(2161), + [sym_selector_expression] = STATE(2161), + [sym_index_expression] = STATE(2161), + [sym_slice_expression] = STATE(2161), + [sym_if_expression] = STATE(2160), + [sym_compile_time_if_expression] = STATE(2160), + [sym_is_expression] = STATE(2161), + [sym_in_expression] = STATE(2161), + [sym_enum_fetch] = STATE(2161), + [sym_match_expression] = STATE(2160), + [sym_select_expression] = STATE(2160), + [sym_lock_expression] = STATE(2160), + [sym_unsafe_expression] = STATE(2160), + [sym_sql_expression] = STATE(2160), + [sym_c_string_literal] = STATE(2166), + [sym_raw_string_literal] = STATE(2166), + [sym_interpreted_string_literal] = STATE(2166), + [sym_mutability_modifiers] = STATE(575), + [sym_plain_type] = STATE(4173), + [sym__plain_type_without_special] = STATE(2360), + [sym_anon_struct_type] = STATE(2362), + [sym_multi_return_type] = STATE(2360), + [sym_result_type] = STATE(2360), + [sym_option_type] = STATE(2360), + [sym_qualified_type] = STATE(3460), + [sym_fixed_array_type] = STATE(2362), + [sym_array_type] = STATE(2362), + [sym_pointer_type] = STATE(2362), + [sym_wrong_pointer_type] = STATE(2362), + [sym_map_type] = STATE(2362), + [sym_channel_type] = STATE(2362), + [sym_shared_type] = STATE(2362), + [sym_thread_type] = STATE(2362), + [sym_atomic_type] = STATE(2362), + [sym_generic_type] = STATE(2362), + [sym_function_type] = STATE(2362), + [sym_identifier] = ACTIONS(3292), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1356), - [anon_sym_LBRACE] = ACTIONS(1358), - [anon_sym_LPAREN] = ACTIONS(1360), - [anon_sym_fn] = ACTIONS(1362), - [anon_sym_PLUS] = ACTIONS(1863), - [anon_sym_DASH] = ACTIONS(1863), - [anon_sym_STAR] = ACTIONS(1865), - [anon_sym_struct] = ACTIONS(1370), + [anon_sym_DOT] = ACTIONS(3294), + [anon_sym_LBRACE] = ACTIONS(3296), + [anon_sym_LPAREN] = ACTIONS(3298), + [anon_sym_fn] = ACTIONS(3300), + [anon_sym_PLUS] = ACTIONS(3302), + [anon_sym_DASH] = ACTIONS(3302), + [anon_sym_STAR] = ACTIONS(3304), + [anon_sym_struct] = ACTIONS(3306), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(1867), - [anon_sym_go] = ACTIONS(1869), - [anon_sym_spawn] = ACTIONS(1871), - [anon_sym_json_DOTdecode] = ACTIONS(1378), - [anon_sym_LBRACK2] = ACTIONS(1380), - [anon_sym_TILDE] = ACTIONS(1863), - [anon_sym_CARET] = ACTIONS(1863), - [anon_sym_AMP] = ACTIONS(1873), - [anon_sym_LT_DASH] = ACTIONS(1875), - [sym_none] = ACTIONS(1386), - [sym_true] = ACTIONS(1386), - [sym_false] = ACTIONS(1386), - [sym_nil] = ACTIONS(1386), - [anon_sym_if] = ACTIONS(1877), - [anon_sym_DOLLARif] = ACTIONS(1390), - [anon_sym_match] = ACTIONS(1392), - [anon_sym_select] = ACTIONS(1879), - [anon_sym_lock] = ACTIONS(1881), - [anon_sym_rlock] = ACTIONS(1881), - [anon_sym_unsafe] = ACTIONS(1883), - [anon_sym_sql] = ACTIONS(1400), - [sym_int_literal] = ACTIONS(1386), - [sym_float_literal] = ACTIONS(1404), - [sym_rune_literal] = ACTIONS(1404), - [sym_pseudo_compile_time_identifier] = ACTIONS(1406), + [anon_sym_BANG] = ACTIONS(3308), + [anon_sym_go] = ACTIONS(3310), + [anon_sym_spawn] = ACTIONS(3312), + [anon_sym_json_DOTdecode] = ACTIONS(3314), + [anon_sym_LBRACK2] = ACTIONS(3316), + [anon_sym_TILDE] = ACTIONS(3302), + [anon_sym_CARET] = ACTIONS(3302), + [anon_sym_AMP] = ACTIONS(3318), + [anon_sym_LT_DASH] = ACTIONS(3320), + [sym_none] = ACTIONS(3322), + [sym_true] = ACTIONS(3322), + [sym_false] = ACTIONS(3322), + [sym_nil] = ACTIONS(3322), + [anon_sym_if] = ACTIONS(3324), + [anon_sym_DOLLARif] = ACTIONS(3326), + [anon_sym_match] = ACTIONS(3328), + [anon_sym_select] = ACTIONS(3330), + [anon_sym_lock] = ACTIONS(3332), + [anon_sym_rlock] = ACTIONS(3332), + [anon_sym_unsafe] = ACTIONS(3334), + [anon_sym_sql] = ACTIONS(3336), + [sym_int_literal] = ACTIONS(3322), + [sym_float_literal] = ACTIONS(3338), + [sym_rune_literal] = ACTIONS(3338), + [sym_pseudo_compile_time_identifier] = ACTIONS(3340), [anon_sym_shared] = ACTIONS(83), [anon_sym_map_LBRACK] = ACTIONS(85), [anon_sym_chan] = ACTIONS(87), [anon_sym_thread] = ACTIONS(89), [anon_sym_atomic] = ACTIONS(91), - [sym___double_quote] = ACTIONS(1408), - [sym___single_quote] = ACTIONS(1410), - [sym___c_double_quote] = ACTIONS(1412), - [sym___c_single_quote] = ACTIONS(1414), - [sym___r_double_quote] = ACTIONS(1416), - [sym___r_single_quote] = ACTIONS(1418), + [sym___double_quote] = ACTIONS(3342), + [sym___single_quote] = ACTIONS(3344), + [sym___c_double_quote] = ACTIONS(3346), + [sym___c_single_quote] = ACTIONS(3348), + [sym___r_double_quote] = ACTIONS(3350), + [sym___r_single_quote] = ACTIONS(3352), }, [817] = { [sym_line_comment] = STATE(817), [sym_block_comment] = STATE(817), - [sym__expression] = STATE(2435), - [sym__expression_without_blocks] = STATE(2489), - [sym__expression_with_blocks] = STATE(2489), - [sym_inc_expression] = STATE(2479), - [sym_dec_expression] = STATE(2479), - [sym_or_block_expression] = STATE(2479), - [sym_option_propagation_expression] = STATE(2479), - [sym_result_propagation_expression] = STATE(2479), - [sym_anon_struct_value_expression] = STATE(2491), - [sym_go_expression] = STATE(2479), - [sym_spawn_expression] = STATE(2479), - [sym_parenthesized_expression] = STATE(2479), - [sym_call_expression] = STATE(2479), - [sym_type_initializer] = STATE(2491), - [sym_function_literal] = STATE(2479), - [sym_reference_expression] = STATE(2542), - [sym_type_reference_expression] = STATE(3541), - [sym_unary_expression] = STATE(2479), - [sym_receive_expression] = STATE(2479), - [sym_binary_expression] = STATE(2479), - [sym_as_type_cast_expression] = STATE(2479), - [sym__max_group] = STATE(2479), - [sym_literal] = STATE(2454), - [sym_map_init_expression] = STATE(2491), - [sym_array_creation] = STATE(2479), - [sym_fixed_array_creation] = STATE(2479), - [sym_selector_expression] = STATE(2479), - [sym_index_expression] = STATE(2479), - [sym_slice_expression] = STATE(2479), - [sym_if_expression] = STATE(2491), - [sym_compile_time_if_expression] = STATE(2491), - [sym_is_expression] = STATE(2479), - [sym_in_expression] = STATE(2479), - [sym_enum_fetch] = STATE(2479), - [sym_match_expression] = STATE(2491), - [sym_select_expression] = STATE(2491), - [sym_lock_expression] = STATE(2491), - [sym_unsafe_expression] = STATE(2491), - [sym_sql_expression] = STATE(2491), - [sym_c_string_literal] = STATE(2469), - [sym_raw_string_literal] = STATE(2469), - [sym_interpreted_string_literal] = STATE(2469), - [sym_mutability_modifiers] = STATE(640), - [sym_plain_type] = STATE(4255), - [sym__plain_type_without_special] = STATE(2302), - [sym_anon_struct_type] = STATE(2303), - [sym_multi_return_type] = STATE(2302), - [sym_result_type] = STATE(2302), - [sym_option_type] = STATE(2302), - [sym_qualified_type] = STATE(3541), - [sym_fixed_array_type] = STATE(2303), - [sym_array_type] = STATE(2303), - [sym_pointer_type] = STATE(2303), - [sym_wrong_pointer_type] = STATE(2303), - [sym_map_type] = STATE(2303), - [sym_channel_type] = STATE(2303), - [sym_shared_type] = STATE(2303), - [sym_thread_type] = STATE(2303), - [sym_atomic_type] = STATE(2303), - [sym_generic_type] = STATE(2303), - [sym_function_type] = STATE(2303), - [sym_identifier] = ACTIONS(1695), + [sym__expression] = STATE(2798), + [sym__expression_without_blocks] = STATE(2347), + [sym__expression_with_blocks] = STATE(2347), + [sym_inc_expression] = STATE(2379), + [sym_dec_expression] = STATE(2379), + [sym_or_block_expression] = STATE(2379), + [sym_option_propagation_expression] = STATE(2379), + [sym_result_propagation_expression] = STATE(2379), + [sym_anon_struct_value_expression] = STATE(2378), + [sym_go_expression] = STATE(2379), + [sym_spawn_expression] = STATE(2379), + [sym_parenthesized_expression] = STATE(2379), + [sym_call_expression] = STATE(2379), + [sym_type_initializer] = STATE(2378), + [sym_function_literal] = STATE(2379), + [sym_reference_expression] = STATE(2377), + [sym_type_reference_expression] = STATE(3460), + [sym_unary_expression] = STATE(2379), + [sym_receive_expression] = STATE(2379), + [sym_binary_expression] = STATE(2379), + [sym_as_type_cast_expression] = STATE(2379), + [sym__max_group] = STATE(2379), + [sym_literal] = STATE(2392), + [sym_map_init_expression] = STATE(2378), + [sym_array_creation] = STATE(2379), + [sym_fixed_array_creation] = STATE(2379), + [sym_selector_expression] = STATE(2379), + [sym_index_expression] = STATE(2379), + [sym_slice_expression] = STATE(2379), + [sym_if_expression] = STATE(2378), + [sym_compile_time_if_expression] = STATE(2378), + [sym_is_expression] = STATE(2379), + [sym_in_expression] = STATE(2379), + [sym_enum_fetch] = STATE(2379), + [sym_match_expression] = STATE(2378), + [sym_select_expression] = STATE(2378), + [sym_lock_expression] = STATE(2378), + [sym_unsafe_expression] = STATE(2378), + [sym_sql_expression] = STATE(2378), + [sym_c_string_literal] = STATE(2401), + [sym_raw_string_literal] = STATE(2401), + [sym_interpreted_string_literal] = STATE(2401), + [sym_mutability_modifiers] = STATE(939), + [sym_plain_type] = STATE(3564), + [sym__plain_type_without_special] = STATE(2360), + [sym_anon_struct_type] = STATE(2362), + [sym_multi_return_type] = STATE(2360), + [sym_result_type] = STATE(2360), + [sym_option_type] = STATE(2360), + [sym_qualified_type] = STATE(3460), + [sym_fixed_array_type] = STATE(2362), + [sym_array_type] = STATE(2362), + [sym_pointer_type] = STATE(2362), + [sym_wrong_pointer_type] = STATE(2362), + [sym_map_type] = STATE(2362), + [sym_channel_type] = STATE(2362), + [sym_shared_type] = STATE(2362), + [sym_thread_type] = STATE(2362), + [sym_atomic_type] = STATE(2362), + [sym_generic_type] = STATE(2362), + [sym_function_type] = STATE(2362), + [sym_identifier] = ACTIONS(1428), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1697), - [anon_sym_LBRACE] = ACTIONS(2697), - [anon_sym_LPAREN] = ACTIONS(2699), - [anon_sym_fn] = ACTIONS(1703), - [anon_sym_PLUS] = ACTIONS(3380), - [anon_sym_DASH] = ACTIONS(3380), - [anon_sym_STAR] = ACTIONS(3382), - [anon_sym_struct] = ACTIONS(1709), + [anon_sym_DOT] = ACTIONS(1430), + [anon_sym_LBRACE] = ACTIONS(1432), + [anon_sym_LPAREN] = ACTIONS(1434), + [anon_sym_fn] = ACTIONS(1436), + [anon_sym_PLUS] = ACTIONS(2271), + [anon_sym_DASH] = ACTIONS(2271), + [anon_sym_STAR] = ACTIONS(2273), + [anon_sym_struct] = ACTIONS(1442), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(3384), - [anon_sym_go] = ACTIONS(3386), - [anon_sym_spawn] = ACTIONS(3388), - [anon_sym_json_DOTdecode] = ACTIONS(2707), - [anon_sym_LBRACK2] = ACTIONS(2709), - [anon_sym_TILDE] = ACTIONS(3380), - [anon_sym_CARET] = ACTIONS(3380), - [anon_sym_AMP] = ACTIONS(3390), - [anon_sym_LT_DASH] = ACTIONS(3392), - [sym_none] = ACTIONS(1725), - [sym_true] = ACTIONS(1725), - [sym_false] = ACTIONS(1725), - [sym_nil] = ACTIONS(1725), - [anon_sym_if] = ACTIONS(1727), - [anon_sym_DOLLARif] = ACTIONS(1729), - [anon_sym_match] = ACTIONS(1731), - [anon_sym_select] = ACTIONS(3394), - [anon_sym_lock] = ACTIONS(3396), - [anon_sym_rlock] = ACTIONS(3396), - [anon_sym_unsafe] = ACTIONS(1737), - [anon_sym_sql] = ACTIONS(1739), - [sym_int_literal] = ACTIONS(1725), - [sym_float_literal] = ACTIONS(2715), - [sym_rune_literal] = ACTIONS(2715), - [sym_pseudo_compile_time_identifier] = ACTIONS(1741), + [anon_sym_BANG] = ACTIONS(2275), + [anon_sym_go] = ACTIONS(2277), + [anon_sym_spawn] = ACTIONS(2279), + [anon_sym_json_DOTdecode] = ACTIONS(1450), + [anon_sym_LBRACK2] = ACTIONS(1452), + [anon_sym_TILDE] = ACTIONS(2271), + [anon_sym_CARET] = ACTIONS(2271), + [anon_sym_AMP] = ACTIONS(2281), + [anon_sym_LT_DASH] = ACTIONS(2283), + [sym_none] = ACTIONS(1458), + [sym_true] = ACTIONS(1458), + [sym_false] = ACTIONS(1458), + [sym_nil] = ACTIONS(1458), + [anon_sym_if] = ACTIONS(1833), + [anon_sym_DOLLARif] = ACTIONS(1462), + [anon_sym_match] = ACTIONS(1464), + [anon_sym_select] = ACTIONS(1466), + [anon_sym_lock] = ACTIONS(1468), + [anon_sym_rlock] = ACTIONS(1468), + [anon_sym_unsafe] = ACTIONS(1839), + [anon_sym_sql] = ACTIONS(1472), + [sym_int_literal] = ACTIONS(1458), + [sym_float_literal] = ACTIONS(1474), + [sym_rune_literal] = ACTIONS(1474), + [sym_pseudo_compile_time_identifier] = ACTIONS(1476), [anon_sym_shared] = ACTIONS(83), [anon_sym_map_LBRACK] = ACTIONS(85), [anon_sym_chan] = ACTIONS(87), [anon_sym_thread] = ACTIONS(89), [anon_sym_atomic] = ACTIONS(91), - [sym___double_quote] = ACTIONS(2717), - [sym___single_quote] = ACTIONS(2719), - [sym___c_double_quote] = ACTIONS(2721), - [sym___c_single_quote] = ACTIONS(2723), - [sym___r_double_quote] = ACTIONS(2725), - [sym___r_single_quote] = ACTIONS(2727), + [sym___double_quote] = ACTIONS(1480), + [sym___single_quote] = ACTIONS(1482), + [sym___c_double_quote] = ACTIONS(1484), + [sym___c_single_quote] = ACTIONS(1486), + [sym___r_double_quote] = ACTIONS(1488), + [sym___r_single_quote] = ACTIONS(1490), }, [818] = { [sym_line_comment] = STATE(818), [sym_block_comment] = STATE(818), - [sym__expression] = STATE(1255), - [sym__expression_without_blocks] = STATE(1312), - [sym__expression_with_blocks] = STATE(1312), - [sym_inc_expression] = STATE(1313), - [sym_dec_expression] = STATE(1313), - [sym_or_block_expression] = STATE(1313), - [sym_option_propagation_expression] = STATE(1313), - [sym_result_propagation_expression] = STATE(1313), - [sym_anon_struct_value_expression] = STATE(1314), - [sym_go_expression] = STATE(1313), - [sym_spawn_expression] = STATE(1313), - [sym_parenthesized_expression] = STATE(1313), - [sym_call_expression] = STATE(1313), - [sym_type_initializer] = STATE(1314), - [sym_function_literal] = STATE(1313), - [sym_reference_expression] = STATE(1334), - [sym_type_reference_expression] = STATE(3541), - [sym_unary_expression] = STATE(1313), - [sym_receive_expression] = STATE(1313), - [sym_binary_expression] = STATE(1313), - [sym_as_type_cast_expression] = STATE(1313), - [sym__max_group] = STATE(1313), - [sym_literal] = STATE(1308), - [sym_map_init_expression] = STATE(1314), - [sym_array_creation] = STATE(1313), - [sym_fixed_array_creation] = STATE(1313), - [sym_selector_expression] = STATE(1313), - [sym_index_expression] = STATE(1313), - [sym_slice_expression] = STATE(1313), - [sym_if_expression] = STATE(1314), - [sym_compile_time_if_expression] = STATE(1314), - [sym_is_expression] = STATE(1313), - [sym_in_expression] = STATE(1313), - [sym_enum_fetch] = STATE(1313), - [sym_match_expression] = STATE(1314), - [sym_select_expression] = STATE(1314), - [sym_lock_expression] = STATE(1314), - [sym_unsafe_expression] = STATE(1314), - [sym_sql_expression] = STATE(1314), - [sym_c_string_literal] = STATE(1286), - [sym_raw_string_literal] = STATE(1286), - [sym_interpreted_string_literal] = STATE(1286), - [sym_mutability_modifiers] = STATE(699), - [sym_plain_type] = STATE(4238), - [sym__plain_type_without_special] = STATE(2302), - [sym_anon_struct_type] = STATE(2303), - [sym_multi_return_type] = STATE(2302), - [sym_result_type] = STATE(2302), - [sym_option_type] = STATE(2302), - [sym_qualified_type] = STATE(3541), - [sym_fixed_array_type] = STATE(2303), - [sym_array_type] = STATE(2303), - [sym_pointer_type] = STATE(2303), - [sym_wrong_pointer_type] = STATE(2303), - [sym_map_type] = STATE(2303), - [sym_channel_type] = STATE(2303), - [sym_shared_type] = STATE(2303), - [sym_thread_type] = STATE(2303), - [sym_atomic_type] = STATE(2303), - [sym_generic_type] = STATE(2303), - [sym_function_type] = STATE(2303), - [sym_identifier] = ACTIONS(1354), + [sym__expression] = STATE(2603), + [sym__expression_without_blocks] = STATE(2347), + [sym__expression_with_blocks] = STATE(2347), + [sym_inc_expression] = STATE(2379), + [sym_dec_expression] = STATE(2379), + [sym_or_block_expression] = STATE(2379), + [sym_option_propagation_expression] = STATE(2379), + [sym_result_propagation_expression] = STATE(2379), + [sym_anon_struct_value_expression] = STATE(2378), + [sym_go_expression] = STATE(2379), + [sym_spawn_expression] = STATE(2379), + [sym_parenthesized_expression] = STATE(2379), + [sym_call_expression] = STATE(2379), + [sym_type_initializer] = STATE(2378), + [sym_function_literal] = STATE(2379), + [sym_reference_expression] = STATE(2377), + [sym_type_reference_expression] = STATE(3460), + [sym_unary_expression] = STATE(2379), + [sym_receive_expression] = STATE(2379), + [sym_binary_expression] = STATE(2379), + [sym_as_type_cast_expression] = STATE(2379), + [sym__max_group] = STATE(2379), + [sym_literal] = STATE(2392), + [sym_map_init_expression] = STATE(2378), + [sym_array_creation] = STATE(2379), + [sym_fixed_array_creation] = STATE(2379), + [sym_selector_expression] = STATE(2379), + [sym_index_expression] = STATE(2379), + [sym_slice_expression] = STATE(2379), + [sym_if_expression] = STATE(2378), + [sym_compile_time_if_expression] = STATE(2378), + [sym_is_expression] = STATE(2379), + [sym_in_expression] = STATE(2379), + [sym_enum_fetch] = STATE(2379), + [sym_match_expression] = STATE(2378), + [sym_select_expression] = STATE(2378), + [sym_lock_expression] = STATE(2378), + [sym_unsafe_expression] = STATE(2378), + [sym_sql_expression] = STATE(2378), + [sym_c_string_literal] = STATE(2401), + [sym_raw_string_literal] = STATE(2401), + [sym_interpreted_string_literal] = STATE(2401), + [sym_mutability_modifiers] = STATE(939), + [sym_plain_type] = STATE(4160), + [sym__plain_type_without_special] = STATE(2360), + [sym_anon_struct_type] = STATE(2362), + [sym_multi_return_type] = STATE(2360), + [sym_result_type] = STATE(2360), + [sym_option_type] = STATE(2360), + [sym_qualified_type] = STATE(3460), + [sym_fixed_array_type] = STATE(2362), + [sym_array_type] = STATE(2362), + [sym_pointer_type] = STATE(2362), + [sym_wrong_pointer_type] = STATE(2362), + [sym_map_type] = STATE(2362), + [sym_channel_type] = STATE(2362), + [sym_shared_type] = STATE(2362), + [sym_thread_type] = STATE(2362), + [sym_atomic_type] = STATE(2362), + [sym_generic_type] = STATE(2362), + [sym_function_type] = STATE(2362), + [sym_identifier] = ACTIONS(1815), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1356), - [anon_sym_LBRACE] = ACTIONS(1358), - [anon_sym_LPAREN] = ACTIONS(1360), - [anon_sym_fn] = ACTIONS(1362), - [anon_sym_PLUS] = ACTIONS(1863), - [anon_sym_DASH] = ACTIONS(1863), - [anon_sym_STAR] = ACTIONS(1865), - [anon_sym_struct] = ACTIONS(1370), + [anon_sym_DOT] = ACTIONS(1430), + [anon_sym_LBRACE] = ACTIONS(1432), + [anon_sym_LPAREN] = ACTIONS(1434), + [anon_sym_fn] = ACTIONS(1436), + [anon_sym_PLUS] = ACTIONS(3090), + [anon_sym_DASH] = ACTIONS(3090), + [anon_sym_STAR] = ACTIONS(3092), + [anon_sym_struct] = ACTIONS(1442), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(1867), - [anon_sym_go] = ACTIONS(1869), - [anon_sym_spawn] = ACTIONS(1871), - [anon_sym_json_DOTdecode] = ACTIONS(1378), - [anon_sym_LBRACK2] = ACTIONS(1380), - [anon_sym_TILDE] = ACTIONS(1863), - [anon_sym_CARET] = ACTIONS(1863), - [anon_sym_AMP] = ACTIONS(1873), - [anon_sym_LT_DASH] = ACTIONS(1875), - [sym_none] = ACTIONS(1386), - [sym_true] = ACTIONS(1386), - [sym_false] = ACTIONS(1386), - [sym_nil] = ACTIONS(1386), - [anon_sym_if] = ACTIONS(1877), - [anon_sym_DOLLARif] = ACTIONS(1390), - [anon_sym_match] = ACTIONS(1392), - [anon_sym_select] = ACTIONS(1879), - [anon_sym_lock] = ACTIONS(1881), - [anon_sym_rlock] = ACTIONS(1881), - [anon_sym_unsafe] = ACTIONS(1883), - [anon_sym_sql] = ACTIONS(1400), - [sym_int_literal] = ACTIONS(1386), - [sym_float_literal] = ACTIONS(1404), - [sym_rune_literal] = ACTIONS(1404), - [sym_pseudo_compile_time_identifier] = ACTIONS(1406), + [anon_sym_BANG] = ACTIONS(3094), + [anon_sym_go] = ACTIONS(3096), + [anon_sym_spawn] = ACTIONS(3098), + [anon_sym_json_DOTdecode] = ACTIONS(1450), + [anon_sym_LBRACK2] = ACTIONS(1827), + [anon_sym_TILDE] = ACTIONS(3090), + [anon_sym_CARET] = ACTIONS(3090), + [anon_sym_AMP] = ACTIONS(3100), + [anon_sym_LT_DASH] = ACTIONS(3102), + [sym_none] = ACTIONS(1458), + [sym_true] = ACTIONS(1458), + [sym_false] = ACTIONS(1458), + [sym_nil] = ACTIONS(1458), + [anon_sym_if] = ACTIONS(1833), + [anon_sym_DOLLARif] = ACTIONS(1462), + [anon_sym_match] = ACTIONS(1464), + [anon_sym_select] = ACTIONS(3104), + [anon_sym_lock] = ACTIONS(3106), + [anon_sym_rlock] = ACTIONS(3106), + [anon_sym_unsafe] = ACTIONS(1839), + [anon_sym_sql] = ACTIONS(1472), + [sym_int_literal] = ACTIONS(1458), + [sym_float_literal] = ACTIONS(1474), + [sym_rune_literal] = ACTIONS(1474), + [sym_pseudo_compile_time_identifier] = ACTIONS(1476), [anon_sym_shared] = ACTIONS(83), [anon_sym_map_LBRACK] = ACTIONS(85), [anon_sym_chan] = ACTIONS(87), [anon_sym_thread] = ACTIONS(89), [anon_sym_atomic] = ACTIONS(91), - [sym___double_quote] = ACTIONS(1408), - [sym___single_quote] = ACTIONS(1410), - [sym___c_double_quote] = ACTIONS(1412), - [sym___c_single_quote] = ACTIONS(1414), - [sym___r_double_quote] = ACTIONS(1416), - [sym___r_single_quote] = ACTIONS(1418), + [sym___double_quote] = ACTIONS(1480), + [sym___single_quote] = ACTIONS(1482), + [sym___c_double_quote] = ACTIONS(1484), + [sym___c_single_quote] = ACTIONS(1486), + [sym___r_double_quote] = ACTIONS(1488), + [sym___r_single_quote] = ACTIONS(1490), }, [819] = { [sym_line_comment] = STATE(819), [sym_block_comment] = STATE(819), - [sym__expression] = STATE(965), - [sym__expression_without_blocks] = STATE(1017), - [sym__expression_with_blocks] = STATE(1017), - [sym_inc_expression] = STATE(1018), - [sym_dec_expression] = STATE(1018), - [sym_or_block_expression] = STATE(1018), - [sym_option_propagation_expression] = STATE(1018), - [sym_result_propagation_expression] = STATE(1018), - [sym_anon_struct_value_expression] = STATE(993), - [sym_go_expression] = STATE(1018), - [sym_spawn_expression] = STATE(1018), - [sym_parenthesized_expression] = STATE(1018), - [sym_call_expression] = STATE(1018), - [sym_type_initializer] = STATE(993), - [sym_function_literal] = STATE(1018), - [sym_reference_expression] = STATE(1046), - [sym_type_reference_expression] = STATE(3541), - [sym_unary_expression] = STATE(1018), - [sym_receive_expression] = STATE(1018), - [sym_binary_expression] = STATE(1018), - [sym_as_type_cast_expression] = STATE(1018), - [sym__max_group] = STATE(1018), - [sym_literal] = STATE(1014), - [sym_map_init_expression] = STATE(993), - [sym_array_creation] = STATE(1018), - [sym_fixed_array_creation] = STATE(1018), - [sym_selector_expression] = STATE(1018), - [sym_index_expression] = STATE(1018), - [sym_slice_expression] = STATE(1018), - [sym_if_expression] = STATE(993), - [sym_compile_time_if_expression] = STATE(993), - [sym_is_expression] = STATE(1018), - [sym_in_expression] = STATE(1018), - [sym_enum_fetch] = STATE(1018), - [sym_match_expression] = STATE(993), - [sym_select_expression] = STATE(993), - [sym_lock_expression] = STATE(993), - [sym_unsafe_expression] = STATE(993), - [sym_sql_expression] = STATE(993), - [sym_c_string_literal] = STATE(1006), - [sym_raw_string_literal] = STATE(1006), - [sym_interpreted_string_literal] = STATE(1006), - [sym_mutability_modifiers] = STATE(691), - [sym_plain_type] = STATE(4296), - [sym__plain_type_without_special] = STATE(2302), - [sym_anon_struct_type] = STATE(2303), - [sym_multi_return_type] = STATE(2302), - [sym_result_type] = STATE(2302), - [sym_option_type] = STATE(2302), - [sym_qualified_type] = STATE(3541), - [sym_fixed_array_type] = STATE(2303), - [sym_array_type] = STATE(2303), - [sym_pointer_type] = STATE(2303), - [sym_wrong_pointer_type] = STATE(2303), - [sym_map_type] = STATE(2303), - [sym_channel_type] = STATE(2303), - [sym_shared_type] = STATE(2303), - [sym_thread_type] = STATE(2303), - [sym_atomic_type] = STATE(2303), - [sym_generic_type] = STATE(2303), - [sym_function_type] = STATE(2303), - [sym_identifier] = ACTIONS(493), + [sym__expression] = STATE(2271), + [sym__expression_without_blocks] = STATE(2162), + [sym__expression_with_blocks] = STATE(2162), + [sym_inc_expression] = STATE(2161), + [sym_dec_expression] = STATE(2161), + [sym_or_block_expression] = STATE(2161), + [sym_option_propagation_expression] = STATE(2161), + [sym_result_propagation_expression] = STATE(2161), + [sym_anon_struct_value_expression] = STATE(2160), + [sym_go_expression] = STATE(2161), + [sym_spawn_expression] = STATE(2161), + [sym_parenthesized_expression] = STATE(2161), + [sym_call_expression] = STATE(2161), + [sym_type_initializer] = STATE(2160), + [sym_function_literal] = STATE(2161), + [sym_reference_expression] = STATE(2159), + [sym_type_reference_expression] = STATE(3460), + [sym_unary_expression] = STATE(2161), + [sym_receive_expression] = STATE(2161), + [sym_binary_expression] = STATE(2161), + [sym_as_type_cast_expression] = STATE(2161), + [sym__max_group] = STATE(2161), + [sym_literal] = STATE(2164), + [sym_map_init_expression] = STATE(2160), + [sym_array_creation] = STATE(2161), + [sym_fixed_array_creation] = STATE(2161), + [sym_selector_expression] = STATE(2161), + [sym_index_expression] = STATE(2161), + [sym_slice_expression] = STATE(2161), + [sym_if_expression] = STATE(2160), + [sym_compile_time_if_expression] = STATE(2160), + [sym_is_expression] = STATE(2161), + [sym_in_expression] = STATE(2161), + [sym_enum_fetch] = STATE(2161), + [sym_match_expression] = STATE(2160), + [sym_select_expression] = STATE(2160), + [sym_lock_expression] = STATE(2160), + [sym_unsafe_expression] = STATE(2160), + [sym_sql_expression] = STATE(2160), + [sym_c_string_literal] = STATE(2166), + [sym_raw_string_literal] = STATE(2166), + [sym_interpreted_string_literal] = STATE(2166), + [sym_mutability_modifiers] = STATE(575), + [sym_plain_type] = STATE(4173), + [sym__plain_type_without_special] = STATE(2360), + [sym_anon_struct_type] = STATE(2362), + [sym_multi_return_type] = STATE(2360), + [sym_result_type] = STATE(2360), + [sym_option_type] = STATE(2360), + [sym_qualified_type] = STATE(3460), + [sym_fixed_array_type] = STATE(2362), + [sym_array_type] = STATE(2362), + [sym_pointer_type] = STATE(2362), + [sym_wrong_pointer_type] = STATE(2362), + [sym_map_type] = STATE(2362), + [sym_channel_type] = STATE(2362), + [sym_shared_type] = STATE(2362), + [sym_thread_type] = STATE(2362), + [sym_atomic_type] = STATE(2362), + [sym_generic_type] = STATE(2362), + [sym_function_type] = STATE(2362), + [sym_identifier] = ACTIONS(3292), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(501), - [anon_sym_LBRACE] = ACTIONS(2319), - [anon_sym_LPAREN] = ACTIONS(2321), - [anon_sym_fn] = ACTIONS(507), - [anon_sym_PLUS] = ACTIONS(2323), - [anon_sym_DASH] = ACTIONS(2323), - [anon_sym_STAR] = ACTIONS(2325), - [anon_sym_struct] = ACTIONS(513), + [anon_sym_DOT] = ACTIONS(3294), + [anon_sym_LBRACE] = ACTIONS(3296), + [anon_sym_LPAREN] = ACTIONS(3298), + [anon_sym_fn] = ACTIONS(3300), + [anon_sym_PLUS] = ACTIONS(3302), + [anon_sym_DASH] = ACTIONS(3302), + [anon_sym_STAR] = ACTIONS(3304), + [anon_sym_struct] = ACTIONS(3306), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(2327), - [anon_sym_go] = ACTIONS(519), - [anon_sym_spawn] = ACTIONS(521), - [anon_sym_json_DOTdecode] = ACTIONS(2329), - [anon_sym_LBRACK2] = ACTIONS(2331), - [anon_sym_TILDE] = ACTIONS(2323), - [anon_sym_CARET] = ACTIONS(2323), - [anon_sym_AMP] = ACTIONS(2333), - [anon_sym_LT_DASH] = ACTIONS(2335), - [sym_none] = ACTIONS(531), - [sym_true] = ACTIONS(531), - [sym_false] = ACTIONS(531), - [sym_nil] = ACTIONS(531), - [anon_sym_if] = ACTIONS(533), - [anon_sym_DOLLARif] = ACTIONS(535), - [anon_sym_match] = ACTIONS(537), - [anon_sym_select] = ACTIONS(539), - [anon_sym_lock] = ACTIONS(541), - [anon_sym_rlock] = ACTIONS(541), - [anon_sym_unsafe] = ACTIONS(543), - [anon_sym_sql] = ACTIONS(545), - [sym_int_literal] = ACTIONS(531), - [sym_float_literal] = ACTIONS(2337), - [sym_rune_literal] = ACTIONS(2337), - [sym_pseudo_compile_time_identifier] = ACTIONS(547), + [anon_sym_BANG] = ACTIONS(3308), + [anon_sym_go] = ACTIONS(3310), + [anon_sym_spawn] = ACTIONS(3312), + [anon_sym_json_DOTdecode] = ACTIONS(3314), + [anon_sym_LBRACK2] = ACTIONS(3316), + [anon_sym_TILDE] = ACTIONS(3302), + [anon_sym_CARET] = ACTIONS(3302), + [anon_sym_AMP] = ACTIONS(3318), + [anon_sym_LT_DASH] = ACTIONS(3320), + [sym_none] = ACTIONS(3322), + [sym_true] = ACTIONS(3322), + [sym_false] = ACTIONS(3322), + [sym_nil] = ACTIONS(3322), + [anon_sym_if] = ACTIONS(3324), + [anon_sym_DOLLARif] = ACTIONS(3326), + [anon_sym_match] = ACTIONS(3328), + [anon_sym_select] = ACTIONS(3330), + [anon_sym_lock] = ACTIONS(3332), + [anon_sym_rlock] = ACTIONS(3332), + [anon_sym_unsafe] = ACTIONS(3334), + [anon_sym_sql] = ACTIONS(3336), + [sym_int_literal] = ACTIONS(3322), + [sym_float_literal] = ACTIONS(3338), + [sym_rune_literal] = ACTIONS(3338), + [sym_pseudo_compile_time_identifier] = ACTIONS(3340), [anon_sym_shared] = ACTIONS(83), [anon_sym_map_LBRACK] = ACTIONS(85), [anon_sym_chan] = ACTIONS(87), [anon_sym_thread] = ACTIONS(89), [anon_sym_atomic] = ACTIONS(91), - [sym___double_quote] = ACTIONS(2339), - [sym___single_quote] = ACTIONS(2341), - [sym___c_double_quote] = ACTIONS(2343), - [sym___c_single_quote] = ACTIONS(2345), - [sym___r_double_quote] = ACTIONS(2347), - [sym___r_single_quote] = ACTIONS(2349), + [sym___double_quote] = ACTIONS(3342), + [sym___single_quote] = ACTIONS(3344), + [sym___c_double_quote] = ACTIONS(3346), + [sym___c_single_quote] = ACTIONS(3348), + [sym___r_double_quote] = ACTIONS(3350), + [sym___r_single_quote] = ACTIONS(3352), }, [820] = { [sym_line_comment] = STATE(820), [sym_block_comment] = STATE(820), - [sym__expression] = STATE(962), - [sym__expression_without_blocks] = STATE(1017), - [sym__expression_with_blocks] = STATE(1017), - [sym_inc_expression] = STATE(1018), - [sym_dec_expression] = STATE(1018), - [sym_or_block_expression] = STATE(1018), - [sym_option_propagation_expression] = STATE(1018), - [sym_result_propagation_expression] = STATE(1018), - [sym_anon_struct_value_expression] = STATE(993), - [sym_go_expression] = STATE(1018), - [sym_spawn_expression] = STATE(1018), - [sym_parenthesized_expression] = STATE(1018), - [sym_call_expression] = STATE(1018), - [sym_type_initializer] = STATE(993), - [sym_function_literal] = STATE(1018), - [sym_reference_expression] = STATE(1046), - [sym_type_reference_expression] = STATE(3541), - [sym_unary_expression] = STATE(1018), - [sym_receive_expression] = STATE(1018), - [sym_binary_expression] = STATE(1018), - [sym_as_type_cast_expression] = STATE(1018), - [sym__max_group] = STATE(1018), - [sym_literal] = STATE(1014), - [sym_map_init_expression] = STATE(993), - [sym_array_creation] = STATE(1018), - [sym_fixed_array_creation] = STATE(1018), - [sym_selector_expression] = STATE(1018), - [sym_index_expression] = STATE(1018), - [sym_slice_expression] = STATE(1018), - [sym_if_expression] = STATE(993), - [sym_compile_time_if_expression] = STATE(993), - [sym_is_expression] = STATE(1018), - [sym_in_expression] = STATE(1018), - [sym_enum_fetch] = STATE(1018), - [sym_match_expression] = STATE(993), - [sym_select_expression] = STATE(993), - [sym_lock_expression] = STATE(993), - [sym_unsafe_expression] = STATE(993), - [sym_sql_expression] = STATE(993), - [sym_c_string_literal] = STATE(1006), - [sym_raw_string_literal] = STATE(1006), - [sym_interpreted_string_literal] = STATE(1006), - [sym_mutability_modifiers] = STATE(691), - [sym_plain_type] = STATE(4296), - [sym__plain_type_without_special] = STATE(2302), - [sym_anon_struct_type] = STATE(2303), - [sym_multi_return_type] = STATE(2302), - [sym_result_type] = STATE(2302), - [sym_option_type] = STATE(2302), - [sym_qualified_type] = STATE(3541), - [sym_fixed_array_type] = STATE(2303), - [sym_array_type] = STATE(2303), - [sym_pointer_type] = STATE(2303), - [sym_wrong_pointer_type] = STATE(2303), - [sym_map_type] = STATE(2303), - [sym_channel_type] = STATE(2303), - [sym_shared_type] = STATE(2303), - [sym_thread_type] = STATE(2303), - [sym_atomic_type] = STATE(2303), - [sym_generic_type] = STATE(2303), - [sym_function_type] = STATE(2303), - [sym_identifier] = ACTIONS(493), + [sym__expression] = STATE(2770), + [sym__expression_without_blocks] = STATE(2347), + [sym__expression_with_blocks] = STATE(2347), + [sym_inc_expression] = STATE(2379), + [sym_dec_expression] = STATE(2379), + [sym_or_block_expression] = STATE(2379), + [sym_option_propagation_expression] = STATE(2379), + [sym_result_propagation_expression] = STATE(2379), + [sym_anon_struct_value_expression] = STATE(2378), + [sym_go_expression] = STATE(2379), + [sym_spawn_expression] = STATE(2379), + [sym_parenthesized_expression] = STATE(2379), + [sym_call_expression] = STATE(2379), + [sym_type_initializer] = STATE(2378), + [sym_function_literal] = STATE(2379), + [sym_reference_expression] = STATE(2377), + [sym_type_reference_expression] = STATE(3460), + [sym_unary_expression] = STATE(2379), + [sym_receive_expression] = STATE(2379), + [sym_binary_expression] = STATE(2379), + [sym_as_type_cast_expression] = STATE(2379), + [sym__max_group] = STATE(2379), + [sym_literal] = STATE(2392), + [sym_map_init_expression] = STATE(2378), + [sym_array_creation] = STATE(2379), + [sym_fixed_array_creation] = STATE(2379), + [sym_selector_expression] = STATE(2379), + [sym_index_expression] = STATE(2379), + [sym_slice_expression] = STATE(2379), + [sym_if_expression] = STATE(2378), + [sym_compile_time_if_expression] = STATE(2378), + [sym_is_expression] = STATE(2379), + [sym_in_expression] = STATE(2379), + [sym_enum_fetch] = STATE(2379), + [sym_match_expression] = STATE(2378), + [sym_select_expression] = STATE(2378), + [sym_lock_expression] = STATE(2378), + [sym_unsafe_expression] = STATE(2378), + [sym_sql_expression] = STATE(2378), + [sym_c_string_literal] = STATE(2401), + [sym_raw_string_literal] = STATE(2401), + [sym_interpreted_string_literal] = STATE(2401), + [sym_mutability_modifiers] = STATE(939), + [sym_plain_type] = STATE(4160), + [sym__plain_type_without_special] = STATE(2360), + [sym_anon_struct_type] = STATE(2362), + [sym_multi_return_type] = STATE(2360), + [sym_result_type] = STATE(2360), + [sym_option_type] = STATE(2360), + [sym_qualified_type] = STATE(3460), + [sym_fixed_array_type] = STATE(2362), + [sym_array_type] = STATE(2362), + [sym_pointer_type] = STATE(2362), + [sym_wrong_pointer_type] = STATE(2362), + [sym_map_type] = STATE(2362), + [sym_channel_type] = STATE(2362), + [sym_shared_type] = STATE(2362), + [sym_thread_type] = STATE(2362), + [sym_atomic_type] = STATE(2362), + [sym_generic_type] = STATE(2362), + [sym_function_type] = STATE(2362), + [sym_identifier] = ACTIONS(2477), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(501), - [anon_sym_LBRACE] = ACTIONS(2319), - [anon_sym_LPAREN] = ACTIONS(2321), - [anon_sym_fn] = ACTIONS(507), - [anon_sym_PLUS] = ACTIONS(2323), - [anon_sym_DASH] = ACTIONS(2323), - [anon_sym_STAR] = ACTIONS(2325), - [anon_sym_struct] = ACTIONS(513), + [anon_sym_DOT] = ACTIONS(1430), + [anon_sym_LBRACE] = ACTIONS(1432), + [anon_sym_LPAREN] = ACTIONS(1434), + [anon_sym_fn] = ACTIONS(1436), + [anon_sym_PLUS] = ACTIONS(2271), + [anon_sym_DASH] = ACTIONS(2271), + [anon_sym_STAR] = ACTIONS(3354), + [anon_sym_struct] = ACTIONS(1442), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(2327), - [anon_sym_go] = ACTIONS(519), - [anon_sym_spawn] = ACTIONS(521), - [anon_sym_json_DOTdecode] = ACTIONS(2329), - [anon_sym_LBRACK2] = ACTIONS(2331), - [anon_sym_TILDE] = ACTIONS(2323), - [anon_sym_CARET] = ACTIONS(2323), - [anon_sym_AMP] = ACTIONS(2333), - [anon_sym_LT_DASH] = ACTIONS(2335), - [sym_none] = ACTIONS(531), - [sym_true] = ACTIONS(531), - [sym_false] = ACTIONS(531), - [sym_nil] = ACTIONS(531), - [anon_sym_if] = ACTIONS(533), - [anon_sym_DOLLARif] = ACTIONS(535), - [anon_sym_match] = ACTIONS(537), - [anon_sym_select] = ACTIONS(539), - [anon_sym_lock] = ACTIONS(541), - [anon_sym_rlock] = ACTIONS(541), - [anon_sym_unsafe] = ACTIONS(543), - [anon_sym_sql] = ACTIONS(545), - [sym_int_literal] = ACTIONS(531), - [sym_float_literal] = ACTIONS(2337), - [sym_rune_literal] = ACTIONS(2337), - [sym_pseudo_compile_time_identifier] = ACTIONS(547), + [anon_sym_BANG] = ACTIONS(3356), + [anon_sym_go] = ACTIONS(2277), + [anon_sym_spawn] = ACTIONS(2279), + [anon_sym_json_DOTdecode] = ACTIONS(1450), + [anon_sym_LBRACK2] = ACTIONS(1452), + [anon_sym_TILDE] = ACTIONS(2271), + [anon_sym_CARET] = ACTIONS(2271), + [anon_sym_AMP] = ACTIONS(3358), + [anon_sym_LT_DASH] = ACTIONS(2283), + [sym_none] = ACTIONS(1458), + [sym_true] = ACTIONS(1458), + [sym_false] = ACTIONS(1458), + [sym_nil] = ACTIONS(1458), + [anon_sym_if] = ACTIONS(1833), + [anon_sym_DOLLARif] = ACTIONS(1462), + [anon_sym_match] = ACTIONS(1464), + [anon_sym_select] = ACTIONS(1466), + [anon_sym_lock] = ACTIONS(1468), + [anon_sym_rlock] = ACTIONS(1468), + [anon_sym_unsafe] = ACTIONS(1839), + [anon_sym_sql] = ACTIONS(1472), + [sym_int_literal] = ACTIONS(1458), + [sym_float_literal] = ACTIONS(1474), + [sym_rune_literal] = ACTIONS(1474), + [sym_pseudo_compile_time_identifier] = ACTIONS(1476), [anon_sym_shared] = ACTIONS(83), [anon_sym_map_LBRACK] = ACTIONS(85), [anon_sym_chan] = ACTIONS(87), [anon_sym_thread] = ACTIONS(89), [anon_sym_atomic] = ACTIONS(91), - [sym___double_quote] = ACTIONS(2339), - [sym___single_quote] = ACTIONS(2341), - [sym___c_double_quote] = ACTIONS(2343), - [sym___c_single_quote] = ACTIONS(2345), - [sym___r_double_quote] = ACTIONS(2347), - [sym___r_single_quote] = ACTIONS(2349), + [sym___double_quote] = ACTIONS(1480), + [sym___single_quote] = ACTIONS(1482), + [sym___c_double_quote] = ACTIONS(1484), + [sym___c_single_quote] = ACTIONS(1486), + [sym___r_double_quote] = ACTIONS(1488), + [sym___r_single_quote] = ACTIONS(1490), }, [821] = { [sym_line_comment] = STATE(821), [sym_block_comment] = STATE(821), - [sym__expression] = STATE(2263), - [sym__expression_without_blocks] = STATE(2300), - [sym__expression_with_blocks] = STATE(2300), - [sym_inc_expression] = STATE(2307), - [sym_dec_expression] = STATE(2307), - [sym_or_block_expression] = STATE(2307), - [sym_option_propagation_expression] = STATE(2307), - [sym_result_propagation_expression] = STATE(2307), - [sym_anon_struct_value_expression] = STATE(2380), - [sym_go_expression] = STATE(2307), - [sym_spawn_expression] = STATE(2307), - [sym_parenthesized_expression] = STATE(2307), - [sym_call_expression] = STATE(2307), - [sym_type_initializer] = STATE(2380), - [sym_function_literal] = STATE(2307), - [sym_reference_expression] = STATE(2311), - [sym_type_reference_expression] = STATE(3541), - [sym_unary_expression] = STATE(2307), - [sym_receive_expression] = STATE(2307), - [sym_binary_expression] = STATE(2307), - [sym_as_type_cast_expression] = STATE(2307), - [sym__max_group] = STATE(2307), - [sym_literal] = STATE(2292), - [sym_map_init_expression] = STATE(2380), - [sym_array_creation] = STATE(2307), - [sym_fixed_array_creation] = STATE(2307), - [sym_selector_expression] = STATE(2307), - [sym_index_expression] = STATE(2307), - [sym_slice_expression] = STATE(2307), - [sym_if_expression] = STATE(2380), - [sym_compile_time_if_expression] = STATE(2380), - [sym_is_expression] = STATE(2307), - [sym_in_expression] = STATE(2307), - [sym_enum_fetch] = STATE(2307), - [sym_match_expression] = STATE(2380), - [sym_select_expression] = STATE(2380), - [sym_lock_expression] = STATE(2380), - [sym_unsafe_expression] = STATE(2380), - [sym_sql_expression] = STATE(2380), - [sym_c_string_literal] = STATE(2308), - [sym_raw_string_literal] = STATE(2308), - [sym_interpreted_string_literal] = STATE(2308), - [sym_mutability_modifiers] = STATE(632), - [sym_plain_type] = STATE(3566), - [sym__plain_type_without_special] = STATE(2302), - [sym_anon_struct_type] = STATE(2303), - [sym_multi_return_type] = STATE(2302), - [sym_result_type] = STATE(2302), - [sym_option_type] = STATE(2302), - [sym_qualified_type] = STATE(3541), - [sym_fixed_array_type] = STATE(2303), - [sym_array_type] = STATE(2303), - [sym_pointer_type] = STATE(2303), - [sym_wrong_pointer_type] = STATE(2303), - [sym_map_type] = STATE(2303), - [sym_channel_type] = STATE(2303), - [sym_shared_type] = STATE(2303), - [sym_thread_type] = STATE(2303), - [sym_atomic_type] = STATE(2303), - [sym_generic_type] = STATE(2303), - [sym_function_type] = STATE(2303), - [sym_identifier] = ACTIONS(2189), + [sym__expression] = STATE(2259), + [sym__expression_without_blocks] = STATE(2162), + [sym__expression_with_blocks] = STATE(2162), + [sym_inc_expression] = STATE(2161), + [sym_dec_expression] = STATE(2161), + [sym_or_block_expression] = STATE(2161), + [sym_option_propagation_expression] = STATE(2161), + [sym_result_propagation_expression] = STATE(2161), + [sym_anon_struct_value_expression] = STATE(2160), + [sym_go_expression] = STATE(2161), + [sym_spawn_expression] = STATE(2161), + [sym_parenthesized_expression] = STATE(2161), + [sym_call_expression] = STATE(2161), + [sym_type_initializer] = STATE(2160), + [sym_function_literal] = STATE(2161), + [sym_reference_expression] = STATE(2159), + [sym_type_reference_expression] = STATE(3460), + [sym_unary_expression] = STATE(2161), + [sym_receive_expression] = STATE(2161), + [sym_binary_expression] = STATE(2161), + [sym_as_type_cast_expression] = STATE(2161), + [sym__max_group] = STATE(2161), + [sym_literal] = STATE(2164), + [sym_map_init_expression] = STATE(2160), + [sym_array_creation] = STATE(2161), + [sym_fixed_array_creation] = STATE(2161), + [sym_selector_expression] = STATE(2161), + [sym_index_expression] = STATE(2161), + [sym_slice_expression] = STATE(2161), + [sym_if_expression] = STATE(2160), + [sym_compile_time_if_expression] = STATE(2160), + [sym_is_expression] = STATE(2161), + [sym_in_expression] = STATE(2161), + [sym_enum_fetch] = STATE(2161), + [sym_match_expression] = STATE(2160), + [sym_select_expression] = STATE(2160), + [sym_lock_expression] = STATE(2160), + [sym_unsafe_expression] = STATE(2160), + [sym_sql_expression] = STATE(2160), + [sym_c_string_literal] = STATE(2166), + [sym_raw_string_literal] = STATE(2166), + [sym_interpreted_string_literal] = STATE(2166), + [sym_mutability_modifiers] = STATE(575), + [sym_plain_type] = STATE(4173), + [sym__plain_type_without_special] = STATE(2360), + [sym_anon_struct_type] = STATE(2362), + [sym_multi_return_type] = STATE(2360), + [sym_result_type] = STATE(2360), + [sym_option_type] = STATE(2360), + [sym_qualified_type] = STATE(3460), + [sym_fixed_array_type] = STATE(2362), + [sym_array_type] = STATE(2362), + [sym_pointer_type] = STATE(2362), + [sym_wrong_pointer_type] = STATE(2362), + [sym_map_type] = STATE(2362), + [sym_channel_type] = STATE(2362), + [sym_shared_type] = STATE(2362), + [sym_thread_type] = STATE(2362), + [sym_atomic_type] = STATE(2362), + [sym_generic_type] = STATE(2362), + [sym_function_type] = STATE(2362), + [sym_identifier] = ACTIONS(3292), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1428), - [anon_sym_LBRACE] = ACTIONS(1430), - [anon_sym_LPAREN] = ACTIONS(1432), - [anon_sym_fn] = ACTIONS(1434), - [anon_sym_PLUS] = ACTIONS(2191), - [anon_sym_DASH] = ACTIONS(2191), - [anon_sym_STAR] = ACTIONS(2193), - [anon_sym_struct] = ACTIONS(1440), + [anon_sym_DOT] = ACTIONS(3294), + [anon_sym_LBRACE] = ACTIONS(3296), + [anon_sym_LPAREN] = ACTIONS(3298), + [anon_sym_fn] = ACTIONS(3300), + [anon_sym_PLUS] = ACTIONS(3302), + [anon_sym_DASH] = ACTIONS(3302), + [anon_sym_STAR] = ACTIONS(3304), + [anon_sym_struct] = ACTIONS(3306), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(2195), - [anon_sym_go] = ACTIONS(2197), - [anon_sym_spawn] = ACTIONS(2199), - [anon_sym_json_DOTdecode] = ACTIONS(1448), - [anon_sym_LBRACK2] = ACTIONS(2201), - [anon_sym_TILDE] = ACTIONS(2191), - [anon_sym_CARET] = ACTIONS(2191), - [anon_sym_AMP] = ACTIONS(2203), - [anon_sym_LT_DASH] = ACTIONS(2205), - [sym_none] = ACTIONS(1456), - [sym_true] = ACTIONS(1456), - [sym_false] = ACTIONS(1456), - [sym_nil] = ACTIONS(1456), - [anon_sym_if] = ACTIONS(1827), - [anon_sym_DOLLARif] = ACTIONS(1460), - [anon_sym_match] = ACTIONS(1462), - [anon_sym_select] = ACTIONS(2207), - [anon_sym_lock] = ACTIONS(2209), - [anon_sym_rlock] = ACTIONS(2209), - [anon_sym_unsafe] = ACTIONS(1833), - [anon_sym_sql] = ACTIONS(1470), - [sym_int_literal] = ACTIONS(1456), - [sym_float_literal] = ACTIONS(1472), - [sym_rune_literal] = ACTIONS(1472), - [sym_pseudo_compile_time_identifier] = ACTIONS(1474), + [anon_sym_BANG] = ACTIONS(3308), + [anon_sym_go] = ACTIONS(3310), + [anon_sym_spawn] = ACTIONS(3312), + [anon_sym_json_DOTdecode] = ACTIONS(3314), + [anon_sym_LBRACK2] = ACTIONS(3316), + [anon_sym_TILDE] = ACTIONS(3302), + [anon_sym_CARET] = ACTIONS(3302), + [anon_sym_AMP] = ACTIONS(3318), + [anon_sym_LT_DASH] = ACTIONS(3320), + [sym_none] = ACTIONS(3322), + [sym_true] = ACTIONS(3322), + [sym_false] = ACTIONS(3322), + [sym_nil] = ACTIONS(3322), + [anon_sym_if] = ACTIONS(3324), + [anon_sym_DOLLARif] = ACTIONS(3326), + [anon_sym_match] = ACTIONS(3328), + [anon_sym_select] = ACTIONS(3330), + [anon_sym_lock] = ACTIONS(3332), + [anon_sym_rlock] = ACTIONS(3332), + [anon_sym_unsafe] = ACTIONS(3334), + [anon_sym_sql] = ACTIONS(3336), + [sym_int_literal] = ACTIONS(3322), + [sym_float_literal] = ACTIONS(3338), + [sym_rune_literal] = ACTIONS(3338), + [sym_pseudo_compile_time_identifier] = ACTIONS(3340), [anon_sym_shared] = ACTIONS(83), [anon_sym_map_LBRACK] = ACTIONS(85), [anon_sym_chan] = ACTIONS(87), [anon_sym_thread] = ACTIONS(89), [anon_sym_atomic] = ACTIONS(91), - [sym___double_quote] = ACTIONS(1478), - [sym___single_quote] = ACTIONS(1480), - [sym___c_double_quote] = ACTIONS(1482), - [sym___c_single_quote] = ACTIONS(1484), - [sym___r_double_quote] = ACTIONS(1486), - [sym___r_single_quote] = ACTIONS(1488), + [sym___double_quote] = ACTIONS(3342), + [sym___single_quote] = ACTIONS(3344), + [sym___c_double_quote] = ACTIONS(3346), + [sym___c_single_quote] = ACTIONS(3348), + [sym___r_double_quote] = ACTIONS(3350), + [sym___r_single_quote] = ACTIONS(3352), }, [822] = { [sym_line_comment] = STATE(822), [sym_block_comment] = STATE(822), - [sym__expression] = STATE(953), - [sym__expression_without_blocks] = STATE(1017), - [sym__expression_with_blocks] = STATE(1017), - [sym_inc_expression] = STATE(1018), - [sym_dec_expression] = STATE(1018), - [sym_or_block_expression] = STATE(1018), - [sym_option_propagation_expression] = STATE(1018), - [sym_result_propagation_expression] = STATE(1018), - [sym_anon_struct_value_expression] = STATE(993), - [sym_go_expression] = STATE(1018), - [sym_spawn_expression] = STATE(1018), - [sym_parenthesized_expression] = STATE(1018), - [sym_call_expression] = STATE(1018), - [sym_type_initializer] = STATE(993), - [sym_function_literal] = STATE(1018), - [sym_reference_expression] = STATE(1046), - [sym_type_reference_expression] = STATE(3541), - [sym_unary_expression] = STATE(1018), - [sym_receive_expression] = STATE(1018), - [sym_binary_expression] = STATE(1018), - [sym_as_type_cast_expression] = STATE(1018), - [sym__max_group] = STATE(1018), - [sym_literal] = STATE(1014), - [sym_map_init_expression] = STATE(993), - [sym_array_creation] = STATE(1018), - [sym_fixed_array_creation] = STATE(1018), - [sym_selector_expression] = STATE(1018), - [sym_index_expression] = STATE(1018), - [sym_slice_expression] = STATE(1018), - [sym_if_expression] = STATE(993), - [sym_compile_time_if_expression] = STATE(993), - [sym_is_expression] = STATE(1018), - [sym_in_expression] = STATE(1018), - [sym_enum_fetch] = STATE(1018), - [sym_match_expression] = STATE(993), - [sym_select_expression] = STATE(993), - [sym_lock_expression] = STATE(993), - [sym_unsafe_expression] = STATE(993), - [sym_sql_expression] = STATE(993), - [sym_c_string_literal] = STATE(1006), - [sym_raw_string_literal] = STATE(1006), - [sym_interpreted_string_literal] = STATE(1006), - [sym_mutability_modifiers] = STATE(691), - [sym_plain_type] = STATE(4296), - [sym__plain_type_without_special] = STATE(2302), - [sym_anon_struct_type] = STATE(2303), - [sym_multi_return_type] = STATE(2302), - [sym_result_type] = STATE(2302), - [sym_option_type] = STATE(2302), - [sym_qualified_type] = STATE(3541), - [sym_fixed_array_type] = STATE(2303), - [sym_array_type] = STATE(2303), - [sym_pointer_type] = STATE(2303), - [sym_wrong_pointer_type] = STATE(2303), - [sym_map_type] = STATE(2303), - [sym_channel_type] = STATE(2303), - [sym_shared_type] = STATE(2303), - [sym_thread_type] = STATE(2303), - [sym_atomic_type] = STATE(2303), - [sym_generic_type] = STATE(2303), - [sym_function_type] = STATE(2303), - [sym_identifier] = ACTIONS(493), + [sym__expression] = STATE(2818), + [sym__expression_without_blocks] = STATE(2347), + [sym__expression_with_blocks] = STATE(2347), + [sym_inc_expression] = STATE(2379), + [sym_dec_expression] = STATE(2379), + [sym_or_block_expression] = STATE(2379), + [sym_option_propagation_expression] = STATE(2379), + [sym_result_propagation_expression] = STATE(2379), + [sym_anon_struct_value_expression] = STATE(2378), + [sym_go_expression] = STATE(2379), + [sym_spawn_expression] = STATE(2379), + [sym_parenthesized_expression] = STATE(2379), + [sym_call_expression] = STATE(2379), + [sym_type_initializer] = STATE(2378), + [sym_function_literal] = STATE(2379), + [sym_reference_expression] = STATE(2377), + [sym_type_reference_expression] = STATE(3460), + [sym_unary_expression] = STATE(2379), + [sym_receive_expression] = STATE(2379), + [sym_binary_expression] = STATE(2379), + [sym_as_type_cast_expression] = STATE(2379), + [sym__max_group] = STATE(2379), + [sym_literal] = STATE(2392), + [sym_map_init_expression] = STATE(2378), + [sym_array_creation] = STATE(2379), + [sym_fixed_array_creation] = STATE(2379), + [sym_selector_expression] = STATE(2379), + [sym_index_expression] = STATE(2379), + [sym_slice_expression] = STATE(2379), + [sym_if_expression] = STATE(2378), + [sym_compile_time_if_expression] = STATE(2378), + [sym_is_expression] = STATE(2379), + [sym_in_expression] = STATE(2379), + [sym_enum_fetch] = STATE(2379), + [sym_match_expression] = STATE(2378), + [sym_select_expression] = STATE(2378), + [sym_lock_expression] = STATE(2378), + [sym_unsafe_expression] = STATE(2378), + [sym_sql_expression] = STATE(2378), + [sym_c_string_literal] = STATE(2401), + [sym_raw_string_literal] = STATE(2401), + [sym_interpreted_string_literal] = STATE(2401), + [sym_mutability_modifiers] = STATE(939), + [sym_plain_type] = STATE(4160), + [sym__plain_type_without_special] = STATE(2360), + [sym_anon_struct_type] = STATE(2362), + [sym_multi_return_type] = STATE(2360), + [sym_result_type] = STATE(2360), + [sym_option_type] = STATE(2360), + [sym_qualified_type] = STATE(3460), + [sym_fixed_array_type] = STATE(2362), + [sym_array_type] = STATE(2362), + [sym_pointer_type] = STATE(2362), + [sym_wrong_pointer_type] = STATE(2362), + [sym_map_type] = STATE(2362), + [sym_channel_type] = STATE(2362), + [sym_shared_type] = STATE(2362), + [sym_thread_type] = STATE(2362), + [sym_atomic_type] = STATE(2362), + [sym_generic_type] = STATE(2362), + [sym_function_type] = STATE(2362), + [sym_identifier] = ACTIONS(1428), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(501), - [anon_sym_LBRACE] = ACTIONS(2319), - [anon_sym_LPAREN] = ACTIONS(2321), - [anon_sym_fn] = ACTIONS(507), - [anon_sym_PLUS] = ACTIONS(2323), - [anon_sym_DASH] = ACTIONS(2323), - [anon_sym_STAR] = ACTIONS(2325), - [anon_sym_struct] = ACTIONS(513), + [anon_sym_DOT] = ACTIONS(1430), + [anon_sym_LBRACE] = ACTIONS(1432), + [anon_sym_LPAREN] = ACTIONS(1434), + [anon_sym_fn] = ACTIONS(1436), + [anon_sym_PLUS] = ACTIONS(1438), + [anon_sym_DASH] = ACTIONS(1438), + [anon_sym_STAR] = ACTIONS(1440), + [anon_sym_struct] = ACTIONS(1442), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(2327), - [anon_sym_go] = ACTIONS(519), - [anon_sym_spawn] = ACTIONS(521), - [anon_sym_json_DOTdecode] = ACTIONS(2329), - [anon_sym_LBRACK2] = ACTIONS(2331), - [anon_sym_TILDE] = ACTIONS(2323), - [anon_sym_CARET] = ACTIONS(2323), - [anon_sym_AMP] = ACTIONS(2333), - [anon_sym_LT_DASH] = ACTIONS(2335), - [sym_none] = ACTIONS(531), - [sym_true] = ACTIONS(531), - [sym_false] = ACTIONS(531), - [sym_nil] = ACTIONS(531), - [anon_sym_if] = ACTIONS(533), - [anon_sym_DOLLARif] = ACTIONS(535), - [anon_sym_match] = ACTIONS(537), - [anon_sym_select] = ACTIONS(539), - [anon_sym_lock] = ACTIONS(541), - [anon_sym_rlock] = ACTIONS(541), - [anon_sym_unsafe] = ACTIONS(543), - [anon_sym_sql] = ACTIONS(545), - [sym_int_literal] = ACTIONS(531), - [sym_float_literal] = ACTIONS(2337), - [sym_rune_literal] = ACTIONS(2337), - [sym_pseudo_compile_time_identifier] = ACTIONS(547), + [anon_sym_BANG] = ACTIONS(1444), + [anon_sym_go] = ACTIONS(1446), + [anon_sym_spawn] = ACTIONS(1448), + [anon_sym_json_DOTdecode] = ACTIONS(1450), + [anon_sym_LBRACK2] = ACTIONS(1452), + [anon_sym_TILDE] = ACTIONS(1438), + [anon_sym_CARET] = ACTIONS(1438), + [anon_sym_AMP] = ACTIONS(1454), + [anon_sym_LT_DASH] = ACTIONS(1456), + [sym_none] = ACTIONS(1458), + [sym_true] = ACTIONS(1458), + [sym_false] = ACTIONS(1458), + [sym_nil] = ACTIONS(1458), + [anon_sym_if] = ACTIONS(1833), + [anon_sym_DOLLARif] = ACTIONS(1462), + [anon_sym_match] = ACTIONS(1464), + [anon_sym_select] = ACTIONS(1466), + [anon_sym_lock] = ACTIONS(1468), + [anon_sym_rlock] = ACTIONS(1468), + [anon_sym_unsafe] = ACTIONS(1839), + [anon_sym_sql] = ACTIONS(1472), + [sym_int_literal] = ACTIONS(1458), + [sym_float_literal] = ACTIONS(1474), + [sym_rune_literal] = ACTIONS(1474), + [sym_pseudo_compile_time_identifier] = ACTIONS(1476), [anon_sym_shared] = ACTIONS(83), [anon_sym_map_LBRACK] = ACTIONS(85), [anon_sym_chan] = ACTIONS(87), [anon_sym_thread] = ACTIONS(89), [anon_sym_atomic] = ACTIONS(91), - [sym___double_quote] = ACTIONS(2339), - [sym___single_quote] = ACTIONS(2341), - [sym___c_double_quote] = ACTIONS(2343), - [sym___c_single_quote] = ACTIONS(2345), - [sym___r_double_quote] = ACTIONS(2347), - [sym___r_single_quote] = ACTIONS(2349), + [sym___double_quote] = ACTIONS(1480), + [sym___single_quote] = ACTIONS(1482), + [sym___c_double_quote] = ACTIONS(1484), + [sym___c_single_quote] = ACTIONS(1486), + [sym___r_double_quote] = ACTIONS(1488), + [sym___r_single_quote] = ACTIONS(1490), }, [823] = { [sym_line_comment] = STATE(823), [sym_block_comment] = STATE(823), - [sym__expression] = STATE(1255), - [sym__expression_without_blocks] = STATE(1312), - [sym__expression_with_blocks] = STATE(1312), - [sym_inc_expression] = STATE(1313), - [sym_dec_expression] = STATE(1313), - [sym_or_block_expression] = STATE(1313), - [sym_option_propagation_expression] = STATE(1313), - [sym_result_propagation_expression] = STATE(1313), - [sym_anon_struct_value_expression] = STATE(1314), - [sym_go_expression] = STATE(1313), - [sym_spawn_expression] = STATE(1313), - [sym_parenthesized_expression] = STATE(1313), - [sym_call_expression] = STATE(1313), - [sym_type_initializer] = STATE(1314), - [sym_function_literal] = STATE(1313), - [sym_reference_expression] = STATE(1334), - [sym_type_reference_expression] = STATE(3541), - [sym_unary_expression] = STATE(1313), - [sym_receive_expression] = STATE(1313), - [sym_binary_expression] = STATE(1313), - [sym_as_type_cast_expression] = STATE(1313), - [sym__max_group] = STATE(1313), - [sym_literal] = STATE(1308), - [sym_map_init_expression] = STATE(1314), - [sym_array_creation] = STATE(1313), - [sym_fixed_array_creation] = STATE(1313), - [sym_selector_expression] = STATE(1313), - [sym_index_expression] = STATE(1313), - [sym_slice_expression] = STATE(1313), - [sym_if_expression] = STATE(1314), - [sym_compile_time_if_expression] = STATE(1314), - [sym_is_expression] = STATE(1313), - [sym_in_expression] = STATE(1313), - [sym_enum_fetch] = STATE(1313), - [sym_match_expression] = STATE(1314), - [sym_select_expression] = STATE(1314), - [sym_lock_expression] = STATE(1314), - [sym_unsafe_expression] = STATE(1314), - [sym_sql_expression] = STATE(1314), - [sym_c_string_literal] = STATE(1286), - [sym_raw_string_literal] = STATE(1286), - [sym_interpreted_string_literal] = STATE(1286), - [sym_mutability_modifiers] = STATE(699), - [sym_plain_type] = STATE(4192), - [sym__plain_type_without_special] = STATE(2302), - [sym_anon_struct_type] = STATE(2303), - [sym_multi_return_type] = STATE(2302), - [sym_result_type] = STATE(2302), - [sym_option_type] = STATE(2302), - [sym_qualified_type] = STATE(3541), - [sym_fixed_array_type] = STATE(2303), - [sym_array_type] = STATE(2303), - [sym_pointer_type] = STATE(2303), - [sym_wrong_pointer_type] = STATE(2303), - [sym_map_type] = STATE(2303), - [sym_channel_type] = STATE(2303), - [sym_shared_type] = STATE(2303), - [sym_thread_type] = STATE(2303), - [sym_atomic_type] = STATE(2303), - [sym_generic_type] = STATE(2303), - [sym_function_type] = STATE(2303), - [sym_identifier] = ACTIONS(1354), + [sym__expression] = STATE(1256), + [sym__expression_without_blocks] = STATE(1318), + [sym__expression_with_blocks] = STATE(1318), + [sym_inc_expression] = STATE(1319), + [sym_dec_expression] = STATE(1319), + [sym_or_block_expression] = STATE(1319), + [sym_option_propagation_expression] = STATE(1319), + [sym_result_propagation_expression] = STATE(1319), + [sym_anon_struct_value_expression] = STATE(1320), + [sym_go_expression] = STATE(1319), + [sym_spawn_expression] = STATE(1319), + [sym_parenthesized_expression] = STATE(1319), + [sym_call_expression] = STATE(1319), + [sym_type_initializer] = STATE(1320), + [sym_function_literal] = STATE(1319), + [sym_reference_expression] = STATE(1298), + [sym_type_reference_expression] = STATE(3460), + [sym_unary_expression] = STATE(1319), + [sym_receive_expression] = STATE(1319), + [sym_binary_expression] = STATE(1319), + [sym_as_type_cast_expression] = STATE(1319), + [sym__max_group] = STATE(1319), + [sym_literal] = STATE(1314), + [sym_map_init_expression] = STATE(1320), + [sym_array_creation] = STATE(1319), + [sym_fixed_array_creation] = STATE(1319), + [sym_selector_expression] = STATE(1319), + [sym_index_expression] = STATE(1319), + [sym_slice_expression] = STATE(1319), + [sym_if_expression] = STATE(1320), + [sym_compile_time_if_expression] = STATE(1320), + [sym_is_expression] = STATE(1319), + [sym_in_expression] = STATE(1319), + [sym_enum_fetch] = STATE(1319), + [sym_match_expression] = STATE(1320), + [sym_select_expression] = STATE(1320), + [sym_lock_expression] = STATE(1320), + [sym_unsafe_expression] = STATE(1320), + [sym_sql_expression] = STATE(1320), + [sym_c_string_literal] = STATE(1291), + [sym_raw_string_literal] = STATE(1291), + [sym_interpreted_string_literal] = STATE(1291), + [sym_mutability_modifiers] = STATE(639), + [sym_plain_type] = STATE(4307), + [sym__plain_type_without_special] = STATE(2360), + [sym_anon_struct_type] = STATE(2362), + [sym_multi_return_type] = STATE(2360), + [sym_result_type] = STATE(2360), + [sym_option_type] = STATE(2360), + [sym_qualified_type] = STATE(3460), + [sym_fixed_array_type] = STATE(2362), + [sym_array_type] = STATE(2362), + [sym_pointer_type] = STATE(2362), + [sym_wrong_pointer_type] = STATE(2362), + [sym_map_type] = STATE(2362), + [sym_channel_type] = STATE(2362), + [sym_shared_type] = STATE(2362), + [sym_thread_type] = STATE(2362), + [sym_atomic_type] = STATE(2362), + [sym_generic_type] = STATE(2362), + [sym_function_type] = STATE(2362), + [sym_identifier] = ACTIONS(1360), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1356), - [anon_sym_LBRACE] = ACTIONS(1358), - [anon_sym_LPAREN] = ACTIONS(1360), - [anon_sym_fn] = ACTIONS(1362), - [anon_sym_PLUS] = ACTIONS(1863), - [anon_sym_DASH] = ACTIONS(1863), - [anon_sym_STAR] = ACTIONS(1865), - [anon_sym_struct] = ACTIONS(1370), + [anon_sym_DOT] = ACTIONS(1362), + [anon_sym_LBRACE] = ACTIONS(1364), + [anon_sym_LPAREN] = ACTIONS(1366), + [anon_sym_fn] = ACTIONS(1368), + [anon_sym_PLUS] = ACTIONS(1851), + [anon_sym_DASH] = ACTIONS(1851), + [anon_sym_STAR] = ACTIONS(1853), + [anon_sym_struct] = ACTIONS(1376), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(1867), - [anon_sym_go] = ACTIONS(1869), - [anon_sym_spawn] = ACTIONS(1871), - [anon_sym_json_DOTdecode] = ACTIONS(1378), - [anon_sym_LBRACK2] = ACTIONS(1380), - [anon_sym_TILDE] = ACTIONS(1863), - [anon_sym_CARET] = ACTIONS(1863), - [anon_sym_AMP] = ACTIONS(1873), - [anon_sym_LT_DASH] = ACTIONS(1875), - [sym_none] = ACTIONS(1386), - [sym_true] = ACTIONS(1386), - [sym_false] = ACTIONS(1386), - [sym_nil] = ACTIONS(1386), - [anon_sym_if] = ACTIONS(1877), - [anon_sym_DOLLARif] = ACTIONS(1390), - [anon_sym_match] = ACTIONS(1392), - [anon_sym_select] = ACTIONS(1879), - [anon_sym_lock] = ACTIONS(1881), - [anon_sym_rlock] = ACTIONS(1881), - [anon_sym_unsafe] = ACTIONS(1883), - [anon_sym_sql] = ACTIONS(1400), - [sym_int_literal] = ACTIONS(1386), - [sym_float_literal] = ACTIONS(1404), - [sym_rune_literal] = ACTIONS(1404), - [sym_pseudo_compile_time_identifier] = ACTIONS(1406), + [anon_sym_BANG] = ACTIONS(1855), + [anon_sym_go] = ACTIONS(1857), + [anon_sym_spawn] = ACTIONS(1859), + [anon_sym_json_DOTdecode] = ACTIONS(1384), + [anon_sym_LBRACK2] = ACTIONS(1386), + [anon_sym_TILDE] = ACTIONS(1851), + [anon_sym_CARET] = ACTIONS(1851), + [anon_sym_AMP] = ACTIONS(1861), + [anon_sym_LT_DASH] = ACTIONS(1863), + [sym_none] = ACTIONS(1392), + [sym_true] = ACTIONS(1392), + [sym_false] = ACTIONS(1392), + [sym_nil] = ACTIONS(1392), + [anon_sym_if] = ACTIONS(1865), + [anon_sym_DOLLARif] = ACTIONS(1396), + [anon_sym_match] = ACTIONS(1398), + [anon_sym_select] = ACTIONS(1867), + [anon_sym_lock] = ACTIONS(1869), + [anon_sym_rlock] = ACTIONS(1869), + [anon_sym_unsafe] = ACTIONS(1871), + [anon_sym_sql] = ACTIONS(1406), + [sym_int_literal] = ACTIONS(1392), + [sym_float_literal] = ACTIONS(1410), + [sym_rune_literal] = ACTIONS(1410), + [sym_pseudo_compile_time_identifier] = ACTIONS(1412), [anon_sym_shared] = ACTIONS(83), [anon_sym_map_LBRACK] = ACTIONS(85), [anon_sym_chan] = ACTIONS(87), [anon_sym_thread] = ACTIONS(89), [anon_sym_atomic] = ACTIONS(91), - [sym___double_quote] = ACTIONS(1408), - [sym___single_quote] = ACTIONS(1410), - [sym___c_double_quote] = ACTIONS(1412), - [sym___c_single_quote] = ACTIONS(1414), - [sym___r_double_quote] = ACTIONS(1416), - [sym___r_single_quote] = ACTIONS(1418), + [sym___double_quote] = ACTIONS(1414), + [sym___single_quote] = ACTIONS(1416), + [sym___c_double_quote] = ACTIONS(1418), + [sym___c_single_quote] = ACTIONS(1420), + [sym___r_double_quote] = ACTIONS(1422), + [sym___r_single_quote] = ACTIONS(1424), }, [824] = { [sym_line_comment] = STATE(824), [sym_block_comment] = STATE(824), - [sym__expression] = STATE(2613), - [sym__expression_without_blocks] = STATE(2300), - [sym__expression_with_blocks] = STATE(2300), - [sym_inc_expression] = STATE(2307), - [sym_dec_expression] = STATE(2307), - [sym_or_block_expression] = STATE(2307), - [sym_option_propagation_expression] = STATE(2307), - [sym_result_propagation_expression] = STATE(2307), - [sym_anon_struct_value_expression] = STATE(2380), - [sym_go_expression] = STATE(2307), - [sym_spawn_expression] = STATE(2307), - [sym_parenthesized_expression] = STATE(2307), - [sym_call_expression] = STATE(2307), - [sym_type_initializer] = STATE(2380), - [sym_function_literal] = STATE(2307), - [sym_reference_expression] = STATE(2311), - [sym_type_reference_expression] = STATE(3541), - [sym_unary_expression] = STATE(2307), - [sym_receive_expression] = STATE(2307), - [sym_binary_expression] = STATE(2307), - [sym_as_type_cast_expression] = STATE(2307), - [sym__max_group] = STATE(2307), - [sym_literal] = STATE(2292), - [sym_map_init_expression] = STATE(2380), - [sym_array_creation] = STATE(2307), - [sym_fixed_array_creation] = STATE(2307), - [sym_selector_expression] = STATE(2307), - [sym_index_expression] = STATE(2307), - [sym_slice_expression] = STATE(2307), - [sym_if_expression] = STATE(2380), - [sym_compile_time_if_expression] = STATE(2380), - [sym_is_expression] = STATE(2307), - [sym_in_expression] = STATE(2307), - [sym_enum_fetch] = STATE(2307), - [sym_match_expression] = STATE(2380), - [sym_select_expression] = STATE(2380), - [sym_lock_expression] = STATE(2380), - [sym_unsafe_expression] = STATE(2380), - [sym_sql_expression] = STATE(2380), - [sym_c_string_literal] = STATE(2308), - [sym_raw_string_literal] = STATE(2308), - [sym_interpreted_string_literal] = STATE(2308), - [sym_mutability_modifiers] = STATE(632), - [sym_plain_type] = STATE(4297), - [sym__plain_type_without_special] = STATE(2302), - [sym_anon_struct_type] = STATE(2303), - [sym_multi_return_type] = STATE(2302), - [sym_result_type] = STATE(2302), - [sym_option_type] = STATE(2302), - [sym_qualified_type] = STATE(3541), - [sym_fixed_array_type] = STATE(2303), - [sym_array_type] = STATE(2303), - [sym_pointer_type] = STATE(2303), - [sym_wrong_pointer_type] = STATE(2303), - [sym_map_type] = STATE(2303), - [sym_channel_type] = STATE(2303), - [sym_shared_type] = STATE(2303), - [sym_thread_type] = STATE(2303), - [sym_atomic_type] = STATE(2303), - [sym_generic_type] = STATE(2303), - [sym_function_type] = STATE(2303), - [sym_identifier] = ACTIONS(1807), + [sym__expression] = STATE(2830), + [sym__expression_without_blocks] = STATE(2347), + [sym__expression_with_blocks] = STATE(2347), + [sym_inc_expression] = STATE(2379), + [sym_dec_expression] = STATE(2379), + [sym_or_block_expression] = STATE(2379), + [sym_option_propagation_expression] = STATE(2379), + [sym_result_propagation_expression] = STATE(2379), + [sym_anon_struct_value_expression] = STATE(2378), + [sym_go_expression] = STATE(2379), + [sym_spawn_expression] = STATE(2379), + [sym_parenthesized_expression] = STATE(2379), + [sym_call_expression] = STATE(2379), + [sym_type_initializer] = STATE(2378), + [sym_function_literal] = STATE(2379), + [sym_reference_expression] = STATE(2894), + [sym_type_reference_expression] = STATE(3460), + [sym_unary_expression] = STATE(2379), + [sym_receive_expression] = STATE(2379), + [sym_binary_expression] = STATE(2379), + [sym_as_type_cast_expression] = STATE(2379), + [sym__max_group] = STATE(2379), + [sym_literal] = STATE(2392), + [sym_map_init_expression] = STATE(2378), + [sym_array_creation] = STATE(2379), + [sym_fixed_array_creation] = STATE(2379), + [sym_selector_expression] = STATE(2896), + [sym_index_expression] = STATE(2379), + [sym_slice_expression] = STATE(2379), + [sym_if_expression] = STATE(2378), + [sym_compile_time_if_expression] = STATE(2378), + [sym_is_expression] = STATE(2379), + [sym_in_expression] = STATE(2379), + [sym_enum_fetch] = STATE(2379), + [sym_match_expression] = STATE(2378), + [sym_select_expression] = STATE(2378), + [sym_lock_expression] = STATE(2378), + [sym_unsafe_expression] = STATE(2378), + [sym_sql_expression] = STATE(2378), + [sym_c_string_literal] = STATE(2401), + [sym_raw_string_literal] = STATE(2401), + [sym_interpreted_string_literal] = STATE(2401), + [sym_mutability_modifiers] = STATE(939), + [sym_plain_type] = STATE(4160), + [sym__plain_type_without_special] = STATE(2360), + [sym_anon_struct_type] = STATE(2362), + [sym_multi_return_type] = STATE(2360), + [sym_result_type] = STATE(2360), + [sym_option_type] = STATE(2360), + [sym_qualified_type] = STATE(3460), + [sym_fixed_array_type] = STATE(2362), + [sym_array_type] = STATE(2362), + [sym_pointer_type] = STATE(2362), + [sym_wrong_pointer_type] = STATE(2362), + [sym_map_type] = STATE(2362), + [sym_channel_type] = STATE(2362), + [sym_shared_type] = STATE(2362), + [sym_thread_type] = STATE(2362), + [sym_atomic_type] = STATE(2362), + [sym_generic_type] = STATE(2362), + [sym_function_type] = STATE(2362), + [sym_identifier] = ACTIONS(2477), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1428), - [anon_sym_LBRACE] = ACTIONS(1430), - [anon_sym_LPAREN] = ACTIONS(1432), - [anon_sym_fn] = ACTIONS(1434), - [anon_sym_PLUS] = ACTIONS(1811), - [anon_sym_DASH] = ACTIONS(1811), - [anon_sym_STAR] = ACTIONS(1813), - [anon_sym_struct] = ACTIONS(1440), + [anon_sym_DOT] = ACTIONS(1430), + [anon_sym_LBRACE] = ACTIONS(1432), + [anon_sym_LPAREN] = ACTIONS(1434), + [anon_sym_fn] = ACTIONS(1436), + [anon_sym_PLUS] = ACTIONS(1438), + [anon_sym_DASH] = ACTIONS(1438), + [anon_sym_STAR] = ACTIONS(1440), + [anon_sym_struct] = ACTIONS(1442), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(1815), - [anon_sym_go] = ACTIONS(1817), - [anon_sym_spawn] = ACTIONS(1819), - [anon_sym_json_DOTdecode] = ACTIONS(1448), - [anon_sym_LBRACK2] = ACTIONS(1821), - [anon_sym_TILDE] = ACTIONS(1811), - [anon_sym_CARET] = ACTIONS(1811), - [anon_sym_AMP] = ACTIONS(1823), - [anon_sym_LT_DASH] = ACTIONS(1825), - [sym_none] = ACTIONS(1456), - [sym_true] = ACTIONS(1456), - [sym_false] = ACTIONS(1456), - [sym_nil] = ACTIONS(1456), - [anon_sym_if] = ACTIONS(1827), - [anon_sym_DOLLARif] = ACTIONS(1460), - [anon_sym_match] = ACTIONS(1462), - [anon_sym_select] = ACTIONS(1829), - [anon_sym_lock] = ACTIONS(1831), - [anon_sym_rlock] = ACTIONS(1831), - [anon_sym_unsafe] = ACTIONS(1833), - [anon_sym_sql] = ACTIONS(1470), - [sym_int_literal] = ACTIONS(1456), - [sym_float_literal] = ACTIONS(1472), - [sym_rune_literal] = ACTIONS(1472), - [sym_pseudo_compile_time_identifier] = ACTIONS(1474), + [anon_sym_BANG] = ACTIONS(1444), + [anon_sym_go] = ACTIONS(1446), + [anon_sym_spawn] = ACTIONS(1448), + [anon_sym_json_DOTdecode] = ACTIONS(1450), + [anon_sym_LBRACK2] = ACTIONS(1452), + [anon_sym_TILDE] = ACTIONS(1438), + [anon_sym_CARET] = ACTIONS(1438), + [anon_sym_AMP] = ACTIONS(1454), + [anon_sym_LT_DASH] = ACTIONS(1456), + [sym_none] = ACTIONS(1458), + [sym_true] = ACTIONS(1458), + [sym_false] = ACTIONS(1458), + [sym_nil] = ACTIONS(1458), + [anon_sym_if] = ACTIONS(1833), + [anon_sym_DOLLARif] = ACTIONS(1462), + [anon_sym_match] = ACTIONS(1464), + [anon_sym_select] = ACTIONS(1466), + [anon_sym_lock] = ACTIONS(1468), + [anon_sym_rlock] = ACTIONS(1468), + [anon_sym_unsafe] = ACTIONS(1839), + [anon_sym_sql] = ACTIONS(1472), + [sym_int_literal] = ACTIONS(1458), + [sym_float_literal] = ACTIONS(1474), + [sym_rune_literal] = ACTIONS(1474), + [sym_pseudo_compile_time_identifier] = ACTIONS(1476), [anon_sym_shared] = ACTIONS(83), [anon_sym_map_LBRACK] = ACTIONS(85), [anon_sym_chan] = ACTIONS(87), [anon_sym_thread] = ACTIONS(89), [anon_sym_atomic] = ACTIONS(91), - [sym___double_quote] = ACTIONS(1478), - [sym___single_quote] = ACTIONS(1480), - [sym___c_double_quote] = ACTIONS(1482), - [sym___c_single_quote] = ACTIONS(1484), - [sym___r_double_quote] = ACTIONS(1486), - [sym___r_single_quote] = ACTIONS(1488), + [sym___double_quote] = ACTIONS(1480), + [sym___single_quote] = ACTIONS(1482), + [sym___c_double_quote] = ACTIONS(1484), + [sym___c_single_quote] = ACTIONS(1486), + [sym___r_double_quote] = ACTIONS(1488), + [sym___r_single_quote] = ACTIONS(1490), }, [825] = { [sym_line_comment] = STATE(825), [sym_block_comment] = STATE(825), - [sym__expression] = STATE(2770), - [sym__expression_without_blocks] = STATE(2300), - [sym__expression_with_blocks] = STATE(2300), - [sym_inc_expression] = STATE(2307), - [sym_dec_expression] = STATE(2307), - [sym_or_block_expression] = STATE(2307), - [sym_option_propagation_expression] = STATE(2307), - [sym_result_propagation_expression] = STATE(2307), - [sym_anon_struct_value_expression] = STATE(2380), - [sym_go_expression] = STATE(2307), - [sym_spawn_expression] = STATE(2307), - [sym_parenthesized_expression] = STATE(2307), - [sym_call_expression] = STATE(2307), - [sym_type_initializer] = STATE(2380), - [sym_function_literal] = STATE(2307), - [sym_reference_expression] = STATE(2311), - [sym_type_reference_expression] = STATE(3541), - [sym_unary_expression] = STATE(2307), - [sym_receive_expression] = STATE(2307), - [sym_binary_expression] = STATE(2307), - [sym_as_type_cast_expression] = STATE(2307), - [sym__max_group] = STATE(2307), - [sym_literal] = STATE(2292), - [sym_map_init_expression] = STATE(2380), - [sym_array_creation] = STATE(2307), - [sym_fixed_array_creation] = STATE(2307), - [sym_selector_expression] = STATE(2307), - [sym_index_expression] = STATE(2307), - [sym_slice_expression] = STATE(2307), - [sym_if_expression] = STATE(2380), - [sym_compile_time_if_expression] = STATE(2380), - [sym_is_expression] = STATE(2307), - [sym_in_expression] = STATE(2307), - [sym_enum_fetch] = STATE(2307), - [sym_match_expression] = STATE(2380), - [sym_select_expression] = STATE(2380), - [sym_lock_expression] = STATE(2380), - [sym_unsafe_expression] = STATE(2380), - [sym_sql_expression] = STATE(2380), - [sym_c_string_literal] = STATE(2308), - [sym_raw_string_literal] = STATE(2308), - [sym_interpreted_string_literal] = STATE(2308), + [sym__expression] = STATE(2417), + [sym__expression_without_blocks] = STATE(2347), + [sym__expression_with_blocks] = STATE(2347), + [sym_inc_expression] = STATE(2379), + [sym_dec_expression] = STATE(2379), + [sym_or_block_expression] = STATE(2379), + [sym_option_propagation_expression] = STATE(2379), + [sym_result_propagation_expression] = STATE(2379), + [sym_anon_struct_value_expression] = STATE(2378), + [sym_go_expression] = STATE(2379), + [sym_spawn_expression] = STATE(2379), + [sym_parenthesized_expression] = STATE(2379), + [sym_call_expression] = STATE(2379), + [sym_type_initializer] = STATE(2378), + [sym_function_literal] = STATE(2379), + [sym_reference_expression] = STATE(2377), + [sym_type_reference_expression] = STATE(3460), + [sym_unary_expression] = STATE(2379), + [sym_receive_expression] = STATE(2379), + [sym_binary_expression] = STATE(2379), + [sym_as_type_cast_expression] = STATE(2379), + [sym__max_group] = STATE(2379), + [sym_literal] = STATE(2392), + [sym_map_init_expression] = STATE(2378), + [sym_array_creation] = STATE(2379), + [sym_fixed_array_creation] = STATE(2379), + [sym_selector_expression] = STATE(2379), + [sym_index_expression] = STATE(2379), + [sym_slice_expression] = STATE(2379), + [sym_if_expression] = STATE(2378), + [sym_compile_time_if_expression] = STATE(2378), + [sym_is_expression] = STATE(2379), + [sym_in_expression] = STATE(2379), + [sym_enum_fetch] = STATE(2379), + [sym_match_expression] = STATE(2378), + [sym_select_expression] = STATE(2378), + [sym_lock_expression] = STATE(2378), + [sym_unsafe_expression] = STATE(2378), + [sym_sql_expression] = STATE(2378), + [sym_c_string_literal] = STATE(2401), + [sym_raw_string_literal] = STATE(2401), + [sym_interpreted_string_literal] = STATE(2401), [sym_mutability_modifiers] = STATE(939), - [sym_plain_type] = STATE(4297), - [sym__plain_type_without_special] = STATE(2302), - [sym_anon_struct_type] = STATE(2303), - [sym_multi_return_type] = STATE(2302), - [sym_result_type] = STATE(2302), - [sym_option_type] = STATE(2302), - [sym_qualified_type] = STATE(3541), - [sym_fixed_array_type] = STATE(2303), - [sym_array_type] = STATE(2303), - [sym_pointer_type] = STATE(2303), - [sym_wrong_pointer_type] = STATE(2303), - [sym_map_type] = STATE(2303), - [sym_channel_type] = STATE(2303), - [sym_shared_type] = STATE(2303), - [sym_thread_type] = STATE(2303), - [sym_atomic_type] = STATE(2303), - [sym_generic_type] = STATE(2303), - [sym_function_type] = STATE(2303), - [sym_identifier] = ACTIONS(1807), + [sym_plain_type] = STATE(4160), + [sym__plain_type_without_special] = STATE(2360), + [sym_anon_struct_type] = STATE(2362), + [sym_multi_return_type] = STATE(2360), + [sym_result_type] = STATE(2360), + [sym_option_type] = STATE(2360), + [sym_qualified_type] = STATE(3460), + [sym_fixed_array_type] = STATE(2362), + [sym_array_type] = STATE(2362), + [sym_pointer_type] = STATE(2362), + [sym_wrong_pointer_type] = STATE(2362), + [sym_map_type] = STATE(2362), + [sym_channel_type] = STATE(2362), + [sym_shared_type] = STATE(2362), + [sym_thread_type] = STATE(2362), + [sym_atomic_type] = STATE(2362), + [sym_generic_type] = STATE(2362), + [sym_function_type] = STATE(2362), + [sym_identifier] = ACTIONS(1428), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1428), - [anon_sym_LBRACE] = ACTIONS(1430), - [anon_sym_LPAREN] = ACTIONS(1432), - [anon_sym_fn] = ACTIONS(1434), - [anon_sym_PLUS] = ACTIONS(3064), - [anon_sym_DASH] = ACTIONS(3064), - [anon_sym_STAR] = ACTIONS(3066), - [anon_sym_struct] = ACTIONS(1440), + [anon_sym_DOT] = ACTIONS(1430), + [anon_sym_LBRACE] = ACTIONS(1432), + [anon_sym_LPAREN] = ACTIONS(1434), + [anon_sym_fn] = ACTIONS(1436), + [anon_sym_PLUS] = ACTIONS(1438), + [anon_sym_DASH] = ACTIONS(1438), + [anon_sym_STAR] = ACTIONS(1440), + [anon_sym_struct] = ACTIONS(1442), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(3068), - [anon_sym_go] = ACTIONS(3070), - [anon_sym_spawn] = ACTIONS(3072), - [anon_sym_json_DOTdecode] = ACTIONS(1448), - [anon_sym_LBRACK2] = ACTIONS(1821), - [anon_sym_TILDE] = ACTIONS(3064), - [anon_sym_CARET] = ACTIONS(3064), - [anon_sym_AMP] = ACTIONS(3074), - [anon_sym_LT_DASH] = ACTIONS(3076), - [sym_none] = ACTIONS(1456), - [sym_true] = ACTIONS(1456), - [sym_false] = ACTIONS(1456), - [sym_nil] = ACTIONS(1456), - [anon_sym_if] = ACTIONS(1827), - [anon_sym_DOLLARif] = ACTIONS(1460), - [anon_sym_match] = ACTIONS(1462), - [anon_sym_select] = ACTIONS(3078), - [anon_sym_lock] = ACTIONS(3080), - [anon_sym_rlock] = ACTIONS(3080), - [anon_sym_unsafe] = ACTIONS(1833), - [anon_sym_sql] = ACTIONS(1470), - [sym_int_literal] = ACTIONS(1456), - [sym_float_literal] = ACTIONS(1472), - [sym_rune_literal] = ACTIONS(1472), - [sym_pseudo_compile_time_identifier] = ACTIONS(1474), + [anon_sym_BANG] = ACTIONS(1444), + [anon_sym_go] = ACTIONS(1446), + [anon_sym_spawn] = ACTIONS(1448), + [anon_sym_json_DOTdecode] = ACTIONS(1450), + [anon_sym_LBRACK2] = ACTIONS(1452), + [anon_sym_TILDE] = ACTIONS(1438), + [anon_sym_CARET] = ACTIONS(1438), + [anon_sym_AMP] = ACTIONS(1454), + [anon_sym_LT_DASH] = ACTIONS(1456), + [sym_none] = ACTIONS(1458), + [sym_true] = ACTIONS(1458), + [sym_false] = ACTIONS(1458), + [sym_nil] = ACTIONS(1458), + [anon_sym_if] = ACTIONS(1833), + [anon_sym_DOLLARif] = ACTIONS(1462), + [anon_sym_match] = ACTIONS(1464), + [anon_sym_select] = ACTIONS(1466), + [anon_sym_lock] = ACTIONS(1468), + [anon_sym_rlock] = ACTIONS(1468), + [anon_sym_unsafe] = ACTIONS(1839), + [anon_sym_sql] = ACTIONS(1472), + [sym_int_literal] = ACTIONS(1458), + [sym_float_literal] = ACTIONS(1474), + [sym_rune_literal] = ACTIONS(1474), + [sym_pseudo_compile_time_identifier] = ACTIONS(1476), [anon_sym_shared] = ACTIONS(83), [anon_sym_map_LBRACK] = ACTIONS(85), [anon_sym_chan] = ACTIONS(87), [anon_sym_thread] = ACTIONS(89), [anon_sym_atomic] = ACTIONS(91), - [sym___double_quote] = ACTIONS(1478), - [sym___single_quote] = ACTIONS(1480), - [sym___c_double_quote] = ACTIONS(1482), - [sym___c_single_quote] = ACTIONS(1484), - [sym___r_double_quote] = ACTIONS(1486), - [sym___r_single_quote] = ACTIONS(1488), + [sym___double_quote] = ACTIONS(1480), + [sym___single_quote] = ACTIONS(1482), + [sym___c_double_quote] = ACTIONS(1484), + [sym___c_single_quote] = ACTIONS(1486), + [sym___r_double_quote] = ACTIONS(1488), + [sym___r_single_quote] = ACTIONS(1490), }, [826] = { [sym_line_comment] = STATE(826), [sym_block_comment] = STATE(826), - [sym__expression] = STATE(2442), - [sym__expression_without_blocks] = STATE(2489), - [sym__expression_with_blocks] = STATE(2489), - [sym_inc_expression] = STATE(2479), - [sym_dec_expression] = STATE(2479), - [sym_or_block_expression] = STATE(2479), - [sym_option_propagation_expression] = STATE(2479), - [sym_result_propagation_expression] = STATE(2479), - [sym_anon_struct_value_expression] = STATE(2491), - [sym_go_expression] = STATE(2479), - [sym_spawn_expression] = STATE(2479), - [sym_parenthesized_expression] = STATE(2479), - [sym_call_expression] = STATE(2479), - [sym_type_initializer] = STATE(2491), - [sym_function_literal] = STATE(2479), - [sym_reference_expression] = STATE(2542), - [sym_type_reference_expression] = STATE(3541), - [sym_unary_expression] = STATE(2479), - [sym_receive_expression] = STATE(2479), - [sym_binary_expression] = STATE(2479), - [sym_as_type_cast_expression] = STATE(2479), - [sym__max_group] = STATE(2479), - [sym_literal] = STATE(2454), - [sym_map_init_expression] = STATE(2491), - [sym_array_creation] = STATE(2479), - [sym_fixed_array_creation] = STATE(2479), - [sym_selector_expression] = STATE(2479), - [sym_index_expression] = STATE(2479), - [sym_slice_expression] = STATE(2479), - [sym_if_expression] = STATE(2491), - [sym_compile_time_if_expression] = STATE(2491), - [sym_is_expression] = STATE(2479), - [sym_in_expression] = STATE(2479), - [sym_enum_fetch] = STATE(2479), - [sym_match_expression] = STATE(2491), - [sym_select_expression] = STATE(2491), - [sym_lock_expression] = STATE(2491), - [sym_unsafe_expression] = STATE(2491), - [sym_sql_expression] = STATE(2491), - [sym_c_string_literal] = STATE(2469), - [sym_raw_string_literal] = STATE(2469), - [sym_interpreted_string_literal] = STATE(2469), - [sym_mutability_modifiers] = STATE(640), - [sym_plain_type] = STATE(4255), - [sym__plain_type_without_special] = STATE(2302), - [sym_anon_struct_type] = STATE(2303), - [sym_multi_return_type] = STATE(2302), - [sym_result_type] = STATE(2302), - [sym_option_type] = STATE(2302), - [sym_qualified_type] = STATE(3541), - [sym_fixed_array_type] = STATE(2303), - [sym_array_type] = STATE(2303), - [sym_pointer_type] = STATE(2303), - [sym_wrong_pointer_type] = STATE(2303), - [sym_map_type] = STATE(2303), - [sym_channel_type] = STATE(2303), - [sym_shared_type] = STATE(2303), - [sym_thread_type] = STATE(2303), - [sym_atomic_type] = STATE(2303), - [sym_generic_type] = STATE(2303), - [sym_function_type] = STATE(2303), - [sym_identifier] = ACTIONS(1695), + [sym__expression] = STATE(2418), + [sym__expression_without_blocks] = STATE(2347), + [sym__expression_with_blocks] = STATE(2347), + [sym_inc_expression] = STATE(2379), + [sym_dec_expression] = STATE(2379), + [sym_or_block_expression] = STATE(2379), + [sym_option_propagation_expression] = STATE(2379), + [sym_result_propagation_expression] = STATE(2379), + [sym_anon_struct_value_expression] = STATE(2378), + [sym_go_expression] = STATE(2379), + [sym_spawn_expression] = STATE(2379), + [sym_parenthesized_expression] = STATE(2379), + [sym_call_expression] = STATE(2379), + [sym_type_initializer] = STATE(2378), + [sym_function_literal] = STATE(2379), + [sym_reference_expression] = STATE(2377), + [sym_type_reference_expression] = STATE(3460), + [sym_unary_expression] = STATE(2379), + [sym_receive_expression] = STATE(2379), + [sym_binary_expression] = STATE(2379), + [sym_as_type_cast_expression] = STATE(2379), + [sym__max_group] = STATE(2379), + [sym_literal] = STATE(2392), + [sym_map_init_expression] = STATE(2378), + [sym_array_creation] = STATE(2379), + [sym_fixed_array_creation] = STATE(2379), + [sym_selector_expression] = STATE(2379), + [sym_index_expression] = STATE(2379), + [sym_slice_expression] = STATE(2379), + [sym_if_expression] = STATE(2378), + [sym_compile_time_if_expression] = STATE(2378), + [sym_is_expression] = STATE(2379), + [sym_in_expression] = STATE(2379), + [sym_enum_fetch] = STATE(2379), + [sym_match_expression] = STATE(2378), + [sym_select_expression] = STATE(2378), + [sym_lock_expression] = STATE(2378), + [sym_unsafe_expression] = STATE(2378), + [sym_sql_expression] = STATE(2378), + [sym_c_string_literal] = STATE(2401), + [sym_raw_string_literal] = STATE(2401), + [sym_interpreted_string_literal] = STATE(2401), + [sym_mutability_modifiers] = STATE(939), + [sym_plain_type] = STATE(4160), + [sym__plain_type_without_special] = STATE(2360), + [sym_anon_struct_type] = STATE(2362), + [sym_multi_return_type] = STATE(2360), + [sym_result_type] = STATE(2360), + [sym_option_type] = STATE(2360), + [sym_qualified_type] = STATE(3460), + [sym_fixed_array_type] = STATE(2362), + [sym_array_type] = STATE(2362), + [sym_pointer_type] = STATE(2362), + [sym_wrong_pointer_type] = STATE(2362), + [sym_map_type] = STATE(2362), + [sym_channel_type] = STATE(2362), + [sym_shared_type] = STATE(2362), + [sym_thread_type] = STATE(2362), + [sym_atomic_type] = STATE(2362), + [sym_generic_type] = STATE(2362), + [sym_function_type] = STATE(2362), + [sym_identifier] = ACTIONS(1428), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1697), - [anon_sym_LBRACE] = ACTIONS(2697), - [anon_sym_LPAREN] = ACTIONS(2699), - [anon_sym_fn] = ACTIONS(1703), - [anon_sym_PLUS] = ACTIONS(3380), - [anon_sym_DASH] = ACTIONS(3380), - [anon_sym_STAR] = ACTIONS(3382), - [anon_sym_struct] = ACTIONS(1709), + [anon_sym_DOT] = ACTIONS(1430), + [anon_sym_LBRACE] = ACTIONS(1432), + [anon_sym_LPAREN] = ACTIONS(1434), + [anon_sym_fn] = ACTIONS(1436), + [anon_sym_PLUS] = ACTIONS(1438), + [anon_sym_DASH] = ACTIONS(1438), + [anon_sym_STAR] = ACTIONS(1440), + [anon_sym_struct] = ACTIONS(1442), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(3384), - [anon_sym_go] = ACTIONS(3386), - [anon_sym_spawn] = ACTIONS(3388), - [anon_sym_json_DOTdecode] = ACTIONS(2707), - [anon_sym_LBRACK2] = ACTIONS(2709), - [anon_sym_TILDE] = ACTIONS(3380), - [anon_sym_CARET] = ACTIONS(3380), - [anon_sym_AMP] = ACTIONS(3390), - [anon_sym_LT_DASH] = ACTIONS(3392), - [sym_none] = ACTIONS(1725), - [sym_true] = ACTIONS(1725), - [sym_false] = ACTIONS(1725), - [sym_nil] = ACTIONS(1725), - [anon_sym_if] = ACTIONS(1727), - [anon_sym_DOLLARif] = ACTIONS(1729), - [anon_sym_match] = ACTIONS(1731), - [anon_sym_select] = ACTIONS(3394), - [anon_sym_lock] = ACTIONS(3396), - [anon_sym_rlock] = ACTIONS(3396), - [anon_sym_unsafe] = ACTIONS(1737), - [anon_sym_sql] = ACTIONS(1739), - [sym_int_literal] = ACTIONS(1725), - [sym_float_literal] = ACTIONS(2715), - [sym_rune_literal] = ACTIONS(2715), - [sym_pseudo_compile_time_identifier] = ACTIONS(1741), + [anon_sym_BANG] = ACTIONS(1444), + [anon_sym_go] = ACTIONS(1446), + [anon_sym_spawn] = ACTIONS(1448), + [anon_sym_json_DOTdecode] = ACTIONS(1450), + [anon_sym_LBRACK2] = ACTIONS(1452), + [anon_sym_TILDE] = ACTIONS(1438), + [anon_sym_CARET] = ACTIONS(1438), + [anon_sym_AMP] = ACTIONS(1454), + [anon_sym_LT_DASH] = ACTIONS(1456), + [sym_none] = ACTIONS(1458), + [sym_true] = ACTIONS(1458), + [sym_false] = ACTIONS(1458), + [sym_nil] = ACTIONS(1458), + [anon_sym_if] = ACTIONS(1833), + [anon_sym_DOLLARif] = ACTIONS(1462), + [anon_sym_match] = ACTIONS(1464), + [anon_sym_select] = ACTIONS(1466), + [anon_sym_lock] = ACTIONS(1468), + [anon_sym_rlock] = ACTIONS(1468), + [anon_sym_unsafe] = ACTIONS(1839), + [anon_sym_sql] = ACTIONS(1472), + [sym_int_literal] = ACTIONS(1458), + [sym_float_literal] = ACTIONS(1474), + [sym_rune_literal] = ACTIONS(1474), + [sym_pseudo_compile_time_identifier] = ACTIONS(1476), [anon_sym_shared] = ACTIONS(83), [anon_sym_map_LBRACK] = ACTIONS(85), [anon_sym_chan] = ACTIONS(87), [anon_sym_thread] = ACTIONS(89), [anon_sym_atomic] = ACTIONS(91), - [sym___double_quote] = ACTIONS(2717), - [sym___single_quote] = ACTIONS(2719), - [sym___c_double_quote] = ACTIONS(2721), - [sym___c_single_quote] = ACTIONS(2723), - [sym___r_double_quote] = ACTIONS(2725), - [sym___r_single_quote] = ACTIONS(2727), + [sym___double_quote] = ACTIONS(1480), + [sym___single_quote] = ACTIONS(1482), + [sym___c_double_quote] = ACTIONS(1484), + [sym___c_single_quote] = ACTIONS(1486), + [sym___r_double_quote] = ACTIONS(1488), + [sym___r_single_quote] = ACTIONS(1490), }, [827] = { [sym_line_comment] = STATE(827), [sym_block_comment] = STATE(827), - [sym__expression] = STATE(2781), - [sym__expression_without_blocks] = STATE(2300), - [sym__expression_with_blocks] = STATE(2300), - [sym_inc_expression] = STATE(2307), - [sym_dec_expression] = STATE(2307), - [sym_or_block_expression] = STATE(2307), - [sym_option_propagation_expression] = STATE(2307), - [sym_result_propagation_expression] = STATE(2307), - [sym_anon_struct_value_expression] = STATE(2380), - [sym_go_expression] = STATE(2307), - [sym_spawn_expression] = STATE(2307), - [sym_parenthesized_expression] = STATE(2307), - [sym_call_expression] = STATE(2307), - [sym_type_initializer] = STATE(2380), - [sym_function_literal] = STATE(2307), - [sym_reference_expression] = STATE(2311), - [sym_type_reference_expression] = STATE(3541), - [sym_unary_expression] = STATE(2307), - [sym_receive_expression] = STATE(2307), - [sym_binary_expression] = STATE(2307), - [sym_as_type_cast_expression] = STATE(2307), - [sym__max_group] = STATE(2307), - [sym_literal] = STATE(2292), - [sym_map_init_expression] = STATE(2380), - [sym_array_creation] = STATE(2307), - [sym_fixed_array_creation] = STATE(2307), - [sym_selector_expression] = STATE(2307), - [sym_index_expression] = STATE(2307), - [sym_slice_expression] = STATE(2307), - [sym_if_expression] = STATE(2380), - [sym_compile_time_if_expression] = STATE(2380), - [sym_is_expression] = STATE(2307), - [sym_in_expression] = STATE(2307), - [sym_enum_fetch] = STATE(2307), - [sym_match_expression] = STATE(2380), - [sym_select_expression] = STATE(2380), - [sym_lock_expression] = STATE(2380), - [sym_unsafe_expression] = STATE(2380), - [sym_sql_expression] = STATE(2380), - [sym_c_string_literal] = STATE(2308), - [sym_raw_string_literal] = STATE(2308), - [sym_interpreted_string_literal] = STATE(2308), + [sym__expression] = STATE(2419), + [sym__expression_without_blocks] = STATE(2347), + [sym__expression_with_blocks] = STATE(2347), + [sym_inc_expression] = STATE(2379), + [sym_dec_expression] = STATE(2379), + [sym_or_block_expression] = STATE(2379), + [sym_option_propagation_expression] = STATE(2379), + [sym_result_propagation_expression] = STATE(2379), + [sym_anon_struct_value_expression] = STATE(2378), + [sym_go_expression] = STATE(2379), + [sym_spawn_expression] = STATE(2379), + [sym_parenthesized_expression] = STATE(2379), + [sym_call_expression] = STATE(2379), + [sym_type_initializer] = STATE(2378), + [sym_function_literal] = STATE(2379), + [sym_reference_expression] = STATE(2377), + [sym_type_reference_expression] = STATE(3460), + [sym_unary_expression] = STATE(2379), + [sym_receive_expression] = STATE(2379), + [sym_binary_expression] = STATE(2379), + [sym_as_type_cast_expression] = STATE(2379), + [sym__max_group] = STATE(2379), + [sym_literal] = STATE(2392), + [sym_map_init_expression] = STATE(2378), + [sym_array_creation] = STATE(2379), + [sym_fixed_array_creation] = STATE(2379), + [sym_selector_expression] = STATE(2379), + [sym_index_expression] = STATE(2379), + [sym_slice_expression] = STATE(2379), + [sym_if_expression] = STATE(2378), + [sym_compile_time_if_expression] = STATE(2378), + [sym_is_expression] = STATE(2379), + [sym_in_expression] = STATE(2379), + [sym_enum_fetch] = STATE(2379), + [sym_match_expression] = STATE(2378), + [sym_select_expression] = STATE(2378), + [sym_lock_expression] = STATE(2378), + [sym_unsafe_expression] = STATE(2378), + [sym_sql_expression] = STATE(2378), + [sym_c_string_literal] = STATE(2401), + [sym_raw_string_literal] = STATE(2401), + [sym_interpreted_string_literal] = STATE(2401), [sym_mutability_modifiers] = STATE(939), - [sym_plain_type] = STATE(3552), - [sym__plain_type_without_special] = STATE(2302), - [sym_anon_struct_type] = STATE(2303), - [sym_multi_return_type] = STATE(2302), - [sym_result_type] = STATE(2302), - [sym_option_type] = STATE(2302), - [sym_qualified_type] = STATE(3541), - [sym_fixed_array_type] = STATE(2303), - [sym_array_type] = STATE(2303), - [sym_pointer_type] = STATE(2303), - [sym_wrong_pointer_type] = STATE(2303), - [sym_map_type] = STATE(2303), - [sym_channel_type] = STATE(2303), - [sym_shared_type] = STATE(2303), - [sym_thread_type] = STATE(2303), - [sym_atomic_type] = STATE(2303), - [sym_generic_type] = STATE(2303), - [sym_function_type] = STATE(2303), - [sym_identifier] = ACTIONS(1426), + [sym_plain_type] = STATE(4160), + [sym__plain_type_without_special] = STATE(2360), + [sym_anon_struct_type] = STATE(2362), + [sym_multi_return_type] = STATE(2360), + [sym_result_type] = STATE(2360), + [sym_option_type] = STATE(2360), + [sym_qualified_type] = STATE(3460), + [sym_fixed_array_type] = STATE(2362), + [sym_array_type] = STATE(2362), + [sym_pointer_type] = STATE(2362), + [sym_wrong_pointer_type] = STATE(2362), + [sym_map_type] = STATE(2362), + [sym_channel_type] = STATE(2362), + [sym_shared_type] = STATE(2362), + [sym_thread_type] = STATE(2362), + [sym_atomic_type] = STATE(2362), + [sym_generic_type] = STATE(2362), + [sym_function_type] = STATE(2362), + [sym_identifier] = ACTIONS(1428), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1428), - [anon_sym_LBRACE] = ACTIONS(1430), - [anon_sym_LPAREN] = ACTIONS(1432), - [anon_sym_fn] = ACTIONS(1434), - [anon_sym_PLUS] = ACTIONS(2491), - [anon_sym_DASH] = ACTIONS(2491), - [anon_sym_STAR] = ACTIONS(2493), - [anon_sym_struct] = ACTIONS(1440), + [anon_sym_DOT] = ACTIONS(1430), + [anon_sym_LBRACE] = ACTIONS(1432), + [anon_sym_LPAREN] = ACTIONS(1434), + [anon_sym_fn] = ACTIONS(1436), + [anon_sym_PLUS] = ACTIONS(1438), + [anon_sym_DASH] = ACTIONS(1438), + [anon_sym_STAR] = ACTIONS(1440), + [anon_sym_struct] = ACTIONS(1442), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(2495), - [anon_sym_go] = ACTIONS(2497), - [anon_sym_spawn] = ACTIONS(2499), - [anon_sym_json_DOTdecode] = ACTIONS(1448), - [anon_sym_LBRACK2] = ACTIONS(1450), - [anon_sym_TILDE] = ACTIONS(2491), - [anon_sym_CARET] = ACTIONS(2491), - [anon_sym_AMP] = ACTIONS(2501), - [anon_sym_LT_DASH] = ACTIONS(2503), - [sym_none] = ACTIONS(1456), - [sym_true] = ACTIONS(1456), - [sym_false] = ACTIONS(1456), - [sym_nil] = ACTIONS(1456), - [anon_sym_if] = ACTIONS(1827), - [anon_sym_DOLLARif] = ACTIONS(1460), - [anon_sym_match] = ACTIONS(1462), - [anon_sym_select] = ACTIONS(1464), - [anon_sym_lock] = ACTIONS(1466), - [anon_sym_rlock] = ACTIONS(1466), - [anon_sym_unsafe] = ACTIONS(1833), - [anon_sym_sql] = ACTIONS(1470), - [sym_int_literal] = ACTIONS(1456), - [sym_float_literal] = ACTIONS(1472), - [sym_rune_literal] = ACTIONS(1472), - [sym_pseudo_compile_time_identifier] = ACTIONS(1474), + [anon_sym_BANG] = ACTIONS(1444), + [anon_sym_go] = ACTIONS(1446), + [anon_sym_spawn] = ACTIONS(1448), + [anon_sym_json_DOTdecode] = ACTIONS(1450), + [anon_sym_LBRACK2] = ACTIONS(1452), + [anon_sym_TILDE] = ACTIONS(1438), + [anon_sym_CARET] = ACTIONS(1438), + [anon_sym_AMP] = ACTIONS(1454), + [anon_sym_LT_DASH] = ACTIONS(1456), + [sym_none] = ACTIONS(1458), + [sym_true] = ACTIONS(1458), + [sym_false] = ACTIONS(1458), + [sym_nil] = ACTIONS(1458), + [anon_sym_if] = ACTIONS(1833), + [anon_sym_DOLLARif] = ACTIONS(1462), + [anon_sym_match] = ACTIONS(1464), + [anon_sym_select] = ACTIONS(1466), + [anon_sym_lock] = ACTIONS(1468), + [anon_sym_rlock] = ACTIONS(1468), + [anon_sym_unsafe] = ACTIONS(1839), + [anon_sym_sql] = ACTIONS(1472), + [sym_int_literal] = ACTIONS(1458), + [sym_float_literal] = ACTIONS(1474), + [sym_rune_literal] = ACTIONS(1474), + [sym_pseudo_compile_time_identifier] = ACTIONS(1476), [anon_sym_shared] = ACTIONS(83), [anon_sym_map_LBRACK] = ACTIONS(85), [anon_sym_chan] = ACTIONS(87), [anon_sym_thread] = ACTIONS(89), [anon_sym_atomic] = ACTIONS(91), - [sym___double_quote] = ACTIONS(1478), - [sym___single_quote] = ACTIONS(1480), - [sym___c_double_quote] = ACTIONS(1482), - [sym___c_single_quote] = ACTIONS(1484), - [sym___r_double_quote] = ACTIONS(1486), - [sym___r_single_quote] = ACTIONS(1488), + [sym___double_quote] = ACTIONS(1480), + [sym___single_quote] = ACTIONS(1482), + [sym___c_double_quote] = ACTIONS(1484), + [sym___c_single_quote] = ACTIONS(1486), + [sym___r_double_quote] = ACTIONS(1488), + [sym___r_single_quote] = ACTIONS(1490), }, [828] = { [sym_line_comment] = STATE(828), [sym_block_comment] = STATE(828), - [sym__expression] = STATE(2443), - [sym__expression_without_blocks] = STATE(2489), - [sym__expression_with_blocks] = STATE(2489), - [sym_inc_expression] = STATE(2479), - [sym_dec_expression] = STATE(2479), - [sym_or_block_expression] = STATE(2479), - [sym_option_propagation_expression] = STATE(2479), - [sym_result_propagation_expression] = STATE(2479), - [sym_anon_struct_value_expression] = STATE(2491), - [sym_go_expression] = STATE(2479), - [sym_spawn_expression] = STATE(2479), - [sym_parenthesized_expression] = STATE(2479), - [sym_call_expression] = STATE(2479), - [sym_type_initializer] = STATE(2491), - [sym_function_literal] = STATE(2479), - [sym_reference_expression] = STATE(2542), - [sym_type_reference_expression] = STATE(3541), - [sym_unary_expression] = STATE(2479), - [sym_receive_expression] = STATE(2479), - [sym_binary_expression] = STATE(2479), - [sym_as_type_cast_expression] = STATE(2479), - [sym__max_group] = STATE(2479), - [sym_literal] = STATE(2454), - [sym_map_init_expression] = STATE(2491), - [sym_array_creation] = STATE(2479), - [sym_fixed_array_creation] = STATE(2479), - [sym_selector_expression] = STATE(2479), - [sym_index_expression] = STATE(2479), - [sym_slice_expression] = STATE(2479), - [sym_if_expression] = STATE(2491), - [sym_compile_time_if_expression] = STATE(2491), - [sym_is_expression] = STATE(2479), - [sym_in_expression] = STATE(2479), - [sym_enum_fetch] = STATE(2479), - [sym_match_expression] = STATE(2491), - [sym_select_expression] = STATE(2491), - [sym_lock_expression] = STATE(2491), - [sym_unsafe_expression] = STATE(2491), - [sym_sql_expression] = STATE(2491), - [sym_c_string_literal] = STATE(2469), - [sym_raw_string_literal] = STATE(2469), - [sym_interpreted_string_literal] = STATE(2469), - [sym_mutability_modifiers] = STATE(640), - [sym_plain_type] = STATE(4255), - [sym__plain_type_without_special] = STATE(2302), - [sym_anon_struct_type] = STATE(2303), - [sym_multi_return_type] = STATE(2302), - [sym_result_type] = STATE(2302), - [sym_option_type] = STATE(2302), - [sym_qualified_type] = STATE(3541), - [sym_fixed_array_type] = STATE(2303), - [sym_array_type] = STATE(2303), - [sym_pointer_type] = STATE(2303), - [sym_wrong_pointer_type] = STATE(2303), - [sym_map_type] = STATE(2303), - [sym_channel_type] = STATE(2303), - [sym_shared_type] = STATE(2303), - [sym_thread_type] = STATE(2303), - [sym_atomic_type] = STATE(2303), - [sym_generic_type] = STATE(2303), - [sym_function_type] = STATE(2303), - [sym_identifier] = ACTIONS(1695), + [sym__expression] = STATE(2442), + [sym__expression_without_blocks] = STATE(2638), + [sym__expression_with_blocks] = STATE(2638), + [sym_inc_expression] = STATE(2765), + [sym_dec_expression] = STATE(2765), + [sym_or_block_expression] = STATE(2765), + [sym_option_propagation_expression] = STATE(2765), + [sym_result_propagation_expression] = STATE(2765), + [sym_anon_struct_value_expression] = STATE(2637), + [sym_go_expression] = STATE(2765), + [sym_spawn_expression] = STATE(2765), + [sym_parenthesized_expression] = STATE(2765), + [sym_call_expression] = STATE(2765), + [sym_type_initializer] = STATE(2637), + [sym_function_literal] = STATE(2765), + [sym_reference_expression] = STATE(2764), + [sym_type_reference_expression] = STATE(3460), + [sym_unary_expression] = STATE(2765), + [sym_receive_expression] = STATE(2765), + [sym_binary_expression] = STATE(2765), + [sym_as_type_cast_expression] = STATE(2765), + [sym__max_group] = STATE(2765), + [sym_literal] = STATE(2771), + [sym_map_init_expression] = STATE(2637), + [sym_array_creation] = STATE(2765), + [sym_fixed_array_creation] = STATE(2765), + [sym_selector_expression] = STATE(2765), + [sym_index_expression] = STATE(2765), + [sym_slice_expression] = STATE(2765), + [sym_if_expression] = STATE(2637), + [sym_compile_time_if_expression] = STATE(2637), + [sym_is_expression] = STATE(2765), + [sym_in_expression] = STATE(2765), + [sym_enum_fetch] = STATE(2765), + [sym_match_expression] = STATE(2637), + [sym_select_expression] = STATE(2637), + [sym_lock_expression] = STATE(2637), + [sym_unsafe_expression] = STATE(2637), + [sym_sql_expression] = STATE(2637), + [sym_c_string_literal] = STATE(2762), + [sym_raw_string_literal] = STATE(2762), + [sym_interpreted_string_literal] = STATE(2762), + [sym_mutability_modifiers] = STATE(822), + [sym_plain_type] = STATE(4011), + [sym__plain_type_without_special] = STATE(2360), + [sym_anon_struct_type] = STATE(2362), + [sym_multi_return_type] = STATE(2360), + [sym_result_type] = STATE(2360), + [sym_option_type] = STATE(2360), + [sym_qualified_type] = STATE(3460), + [sym_fixed_array_type] = STATE(2362), + [sym_array_type] = STATE(2362), + [sym_pointer_type] = STATE(2362), + [sym_wrong_pointer_type] = STATE(2362), + [sym_map_type] = STATE(2362), + [sym_channel_type] = STATE(2362), + [sym_shared_type] = STATE(2362), + [sym_thread_type] = STATE(2362), + [sym_atomic_type] = STATE(2362), + [sym_generic_type] = STATE(2362), + [sym_function_type] = STATE(2362), + [sym_identifier] = ACTIONS(1815), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1697), - [anon_sym_LBRACE] = ACTIONS(2697), - [anon_sym_LPAREN] = ACTIONS(2699), - [anon_sym_fn] = ACTIONS(1703), - [anon_sym_PLUS] = ACTIONS(3380), - [anon_sym_DASH] = ACTIONS(3380), - [anon_sym_STAR] = ACTIONS(3382), - [anon_sym_struct] = ACTIONS(1709), + [anon_sym_DOT] = ACTIONS(1073), + [anon_sym_LBRACE] = ACTIONS(1075), + [anon_sym_LPAREN] = ACTIONS(1079), + [anon_sym_fn] = ACTIONS(1081), + [anon_sym_PLUS] = ACTIONS(1083), + [anon_sym_DASH] = ACTIONS(1083), + [anon_sym_STAR] = ACTIONS(3360), + [anon_sym_struct] = ACTIONS(1087), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(3384), - [anon_sym_go] = ACTIONS(3386), - [anon_sym_spawn] = ACTIONS(3388), - [anon_sym_json_DOTdecode] = ACTIONS(2707), - [anon_sym_LBRACK2] = ACTIONS(2709), - [anon_sym_TILDE] = ACTIONS(3380), - [anon_sym_CARET] = ACTIONS(3380), - [anon_sym_AMP] = ACTIONS(3390), - [anon_sym_LT_DASH] = ACTIONS(3392), - [sym_none] = ACTIONS(1725), - [sym_true] = ACTIONS(1725), - [sym_false] = ACTIONS(1725), - [sym_nil] = ACTIONS(1725), - [anon_sym_if] = ACTIONS(1727), - [anon_sym_DOLLARif] = ACTIONS(1729), - [anon_sym_match] = ACTIONS(1731), - [anon_sym_select] = ACTIONS(3394), - [anon_sym_lock] = ACTIONS(3396), - [anon_sym_rlock] = ACTIONS(3396), - [anon_sym_unsafe] = ACTIONS(1737), - [anon_sym_sql] = ACTIONS(1739), - [sym_int_literal] = ACTIONS(1725), - [sym_float_literal] = ACTIONS(2715), - [sym_rune_literal] = ACTIONS(2715), - [sym_pseudo_compile_time_identifier] = ACTIONS(1741), + [anon_sym_BANG] = ACTIONS(3362), + [anon_sym_go] = ACTIONS(1091), + [anon_sym_spawn] = ACTIONS(1093), + [anon_sym_json_DOTdecode] = ACTIONS(1095), + [anon_sym_LBRACK2] = ACTIONS(1097), + [anon_sym_TILDE] = ACTIONS(1083), + [anon_sym_CARET] = ACTIONS(1083), + [anon_sym_AMP] = ACTIONS(3364), + [anon_sym_LT_DASH] = ACTIONS(1101), + [sym_none] = ACTIONS(1103), + [sym_true] = ACTIONS(1103), + [sym_false] = ACTIONS(1103), + [sym_nil] = ACTIONS(1103), + [anon_sym_if] = ACTIONS(1105), + [anon_sym_DOLLARif] = ACTIONS(1109), + [anon_sym_match] = ACTIONS(1111), + [anon_sym_select] = ACTIONS(3138), + [anon_sym_lock] = ACTIONS(3140), + [anon_sym_rlock] = ACTIONS(3140), + [anon_sym_unsafe] = ACTIONS(1117), + [anon_sym_sql] = ACTIONS(1119), + [sym_int_literal] = ACTIONS(1103), + [sym_float_literal] = ACTIONS(1121), + [sym_rune_literal] = ACTIONS(1121), + [sym_pseudo_compile_time_identifier] = ACTIONS(1123), [anon_sym_shared] = ACTIONS(83), [anon_sym_map_LBRACK] = ACTIONS(85), [anon_sym_chan] = ACTIONS(87), [anon_sym_thread] = ACTIONS(89), [anon_sym_atomic] = ACTIONS(91), - [sym___double_quote] = ACTIONS(2717), - [sym___single_quote] = ACTIONS(2719), - [sym___c_double_quote] = ACTIONS(2721), - [sym___c_single_quote] = ACTIONS(2723), - [sym___r_double_quote] = ACTIONS(2725), - [sym___r_single_quote] = ACTIONS(2727), + [sym___double_quote] = ACTIONS(1125), + [sym___single_quote] = ACTIONS(1127), + [sym___c_double_quote] = ACTIONS(1129), + [sym___c_single_quote] = ACTIONS(1131), + [sym___r_double_quote] = ACTIONS(1133), + [sym___r_single_quote] = ACTIONS(1135), }, [829] = { [sym_line_comment] = STATE(829), [sym_block_comment] = STATE(829), - [sym__expression] = STATE(1121), - [sym__expression_without_blocks] = STATE(1141), - [sym__expression_with_blocks] = STATE(1141), - [sym_inc_expression] = STATE(1140), - [sym_dec_expression] = STATE(1140), - [sym_or_block_expression] = STATE(1140), - [sym_option_propagation_expression] = STATE(1140), - [sym_result_propagation_expression] = STATE(1140), - [sym_anon_struct_value_expression] = STATE(1199), - [sym_go_expression] = STATE(1140), - [sym_spawn_expression] = STATE(1140), - [sym_parenthesized_expression] = STATE(1140), - [sym_call_expression] = STATE(1140), - [sym_type_initializer] = STATE(1199), - [sym_function_literal] = STATE(1140), - [sym_reference_expression] = STATE(1181), - [sym_type_reference_expression] = STATE(3541), - [sym_unary_expression] = STATE(1140), - [sym_receive_expression] = STATE(1140), - [sym_binary_expression] = STATE(1140), - [sym_as_type_cast_expression] = STATE(1140), - [sym__max_group] = STATE(1140), - [sym_literal] = STATE(1146), - [sym_map_init_expression] = STATE(1199), - [sym_array_creation] = STATE(1140), - [sym_fixed_array_creation] = STATE(1140), - [sym_selector_expression] = STATE(1140), - [sym_index_expression] = STATE(1140), - [sym_slice_expression] = STATE(1140), - [sym_if_expression] = STATE(1199), - [sym_compile_time_if_expression] = STATE(1199), - [sym_is_expression] = STATE(1140), - [sym_in_expression] = STATE(1140), - [sym_enum_fetch] = STATE(1140), - [sym_match_expression] = STATE(1199), - [sym_select_expression] = STATE(1199), - [sym_lock_expression] = STATE(1199), - [sym_unsafe_expression] = STATE(1199), - [sym_sql_expression] = STATE(1199), - [sym_c_string_literal] = STATE(1147), - [sym_raw_string_literal] = STATE(1147), - [sym_interpreted_string_literal] = STATE(1147), - [sym_mutability_modifiers] = STATE(638), - [sym_plain_type] = STATE(4234), - [sym__plain_type_without_special] = STATE(2302), - [sym_anon_struct_type] = STATE(2303), - [sym_multi_return_type] = STATE(2302), - [sym_result_type] = STATE(2302), - [sym_option_type] = STATE(2302), - [sym_qualified_type] = STATE(3541), - [sym_fixed_array_type] = STATE(2303), - [sym_array_type] = STATE(2303), - [sym_pointer_type] = STATE(2303), - [sym_wrong_pointer_type] = STATE(2303), - [sym_map_type] = STATE(2303), - [sym_channel_type] = STATE(2303), - [sym_shared_type] = STATE(2303), - [sym_thread_type] = STATE(2303), - [sym_atomic_type] = STATE(2303), - [sym_generic_type] = STATE(2303), - [sym_function_type] = STATE(2303), - [sym_identifier] = ACTIONS(1071), + [sym__expression] = STATE(2431), + [sym__expression_without_blocks] = STATE(2638), + [sym__expression_with_blocks] = STATE(2638), + [sym_inc_expression] = STATE(2765), + [sym_dec_expression] = STATE(2765), + [sym_or_block_expression] = STATE(2765), + [sym_option_propagation_expression] = STATE(2765), + [sym_result_propagation_expression] = STATE(2765), + [sym_anon_struct_value_expression] = STATE(2637), + [sym_go_expression] = STATE(2765), + [sym_spawn_expression] = STATE(2765), + [sym_parenthesized_expression] = STATE(2765), + [sym_call_expression] = STATE(2765), + [sym_type_initializer] = STATE(2637), + [sym_function_literal] = STATE(2765), + [sym_reference_expression] = STATE(2764), + [sym_type_reference_expression] = STATE(3460), + [sym_unary_expression] = STATE(2765), + [sym_receive_expression] = STATE(2765), + [sym_binary_expression] = STATE(2765), + [sym_as_type_cast_expression] = STATE(2765), + [sym__max_group] = STATE(2765), + [sym_literal] = STATE(2771), + [sym_map_init_expression] = STATE(2637), + [sym_array_creation] = STATE(2765), + [sym_fixed_array_creation] = STATE(2765), + [sym_selector_expression] = STATE(2765), + [sym_index_expression] = STATE(2765), + [sym_slice_expression] = STATE(2765), + [sym_if_expression] = STATE(2637), + [sym_compile_time_if_expression] = STATE(2637), + [sym_is_expression] = STATE(2765), + [sym_in_expression] = STATE(2765), + [sym_enum_fetch] = STATE(2765), + [sym_match_expression] = STATE(2637), + [sym_select_expression] = STATE(2637), + [sym_lock_expression] = STATE(2637), + [sym_unsafe_expression] = STATE(2637), + [sym_sql_expression] = STATE(2637), + [sym_c_string_literal] = STATE(2762), + [sym_raw_string_literal] = STATE(2762), + [sym_interpreted_string_literal] = STATE(2762), + [sym_mutability_modifiers] = STATE(822), + [sym_plain_type] = STATE(4011), + [sym__plain_type_without_special] = STATE(2360), + [sym_anon_struct_type] = STATE(2362), + [sym_multi_return_type] = STATE(2360), + [sym_result_type] = STATE(2360), + [sym_option_type] = STATE(2360), + [sym_qualified_type] = STATE(3460), + [sym_fixed_array_type] = STATE(2362), + [sym_array_type] = STATE(2362), + [sym_pointer_type] = STATE(2362), + [sym_wrong_pointer_type] = STATE(2362), + [sym_map_type] = STATE(2362), + [sym_channel_type] = STATE(2362), + [sym_shared_type] = STATE(2362), + [sym_thread_type] = STATE(2362), + [sym_atomic_type] = STATE(2362), + [sym_generic_type] = STATE(2362), + [sym_function_type] = STATE(2362), + [sym_identifier] = ACTIONS(1815), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(631), - [anon_sym_LBRACE] = ACTIONS(633), - [anon_sym_LPAREN] = ACTIONS(637), - [anon_sym_fn] = ACTIONS(641), - [anon_sym_PLUS] = ACTIONS(643), - [anon_sym_DASH] = ACTIONS(643), - [anon_sym_STAR] = ACTIONS(645), - [anon_sym_struct] = ACTIONS(649), + [anon_sym_DOT] = ACTIONS(1073), + [anon_sym_LBRACE] = ACTIONS(1075), + [anon_sym_LPAREN] = ACTIONS(1079), + [anon_sym_fn] = ACTIONS(1081), + [anon_sym_PLUS] = ACTIONS(1083), + [anon_sym_DASH] = ACTIONS(1083), + [anon_sym_STAR] = ACTIONS(3360), + [anon_sym_struct] = ACTIONS(1087), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(655), - [anon_sym_go] = ACTIONS(657), - [anon_sym_spawn] = ACTIONS(659), - [anon_sym_json_DOTdecode] = ACTIONS(661), - [anon_sym_LBRACK2] = ACTIONS(663), - [anon_sym_TILDE] = ACTIONS(643), - [anon_sym_CARET] = ACTIONS(643), - [anon_sym_AMP] = ACTIONS(665), - [anon_sym_LT_DASH] = ACTIONS(667), - [sym_none] = ACTIONS(669), - [sym_true] = ACTIONS(669), - [sym_false] = ACTIONS(669), - [sym_nil] = ACTIONS(669), - [anon_sym_if] = ACTIONS(671), - [anon_sym_DOLLARif] = ACTIONS(673), - [anon_sym_match] = ACTIONS(675), - [anon_sym_select] = ACTIONS(677), - [anon_sym_lock] = ACTIONS(679), - [anon_sym_rlock] = ACTIONS(679), - [anon_sym_unsafe] = ACTIONS(681), - [anon_sym_sql] = ACTIONS(683), - [sym_int_literal] = ACTIONS(669), - [sym_float_literal] = ACTIONS(685), - [sym_rune_literal] = ACTIONS(685), - [sym_pseudo_compile_time_identifier] = ACTIONS(687), + [anon_sym_BANG] = ACTIONS(3362), + [anon_sym_go] = ACTIONS(1091), + [anon_sym_spawn] = ACTIONS(1093), + [anon_sym_json_DOTdecode] = ACTIONS(1095), + [anon_sym_LBRACK2] = ACTIONS(1097), + [anon_sym_TILDE] = ACTIONS(1083), + [anon_sym_CARET] = ACTIONS(1083), + [anon_sym_AMP] = ACTIONS(3364), + [anon_sym_LT_DASH] = ACTIONS(1101), + [sym_none] = ACTIONS(1103), + [sym_true] = ACTIONS(1103), + [sym_false] = ACTIONS(1103), + [sym_nil] = ACTIONS(1103), + [anon_sym_if] = ACTIONS(1105), + [anon_sym_DOLLARif] = ACTIONS(1109), + [anon_sym_match] = ACTIONS(1111), + [anon_sym_select] = ACTIONS(3138), + [anon_sym_lock] = ACTIONS(3140), + [anon_sym_rlock] = ACTIONS(3140), + [anon_sym_unsafe] = ACTIONS(1117), + [anon_sym_sql] = ACTIONS(1119), + [sym_int_literal] = ACTIONS(1103), + [sym_float_literal] = ACTIONS(1121), + [sym_rune_literal] = ACTIONS(1121), + [sym_pseudo_compile_time_identifier] = ACTIONS(1123), [anon_sym_shared] = ACTIONS(83), [anon_sym_map_LBRACK] = ACTIONS(85), [anon_sym_chan] = ACTIONS(87), [anon_sym_thread] = ACTIONS(89), [anon_sym_atomic] = ACTIONS(91), - [sym___double_quote] = ACTIONS(689), - [sym___single_quote] = ACTIONS(691), - [sym___c_double_quote] = ACTIONS(693), - [sym___c_single_quote] = ACTIONS(695), - [sym___r_double_quote] = ACTIONS(697), - [sym___r_single_quote] = ACTIONS(699), + [sym___double_quote] = ACTIONS(1125), + [sym___single_quote] = ACTIONS(1127), + [sym___c_double_quote] = ACTIONS(1129), + [sym___c_single_quote] = ACTIONS(1131), + [sym___r_double_quote] = ACTIONS(1133), + [sym___r_single_quote] = ACTIONS(1135), }, [830] = { [sym_line_comment] = STATE(830), [sym_block_comment] = STATE(830), - [sym__expression] = STATE(2784), - [sym__expression_without_blocks] = STATE(2300), - [sym__expression_with_blocks] = STATE(2300), - [sym_inc_expression] = STATE(2307), - [sym_dec_expression] = STATE(2307), - [sym_or_block_expression] = STATE(2307), - [sym_option_propagation_expression] = STATE(2307), - [sym_result_propagation_expression] = STATE(2307), - [sym_anon_struct_value_expression] = STATE(2380), - [sym_go_expression] = STATE(2307), - [sym_spawn_expression] = STATE(2307), - [sym_parenthesized_expression] = STATE(2307), - [sym_call_expression] = STATE(2307), - [sym_type_initializer] = STATE(2380), - [sym_function_literal] = STATE(2307), - [sym_reference_expression] = STATE(2311), - [sym_type_reference_expression] = STATE(3541), - [sym_unary_expression] = STATE(2307), - [sym_receive_expression] = STATE(2307), - [sym_binary_expression] = STATE(2307), - [sym_as_type_cast_expression] = STATE(2307), - [sym__max_group] = STATE(2307), - [sym_literal] = STATE(2292), - [sym_map_init_expression] = STATE(2380), - [sym_array_creation] = STATE(2307), - [sym_fixed_array_creation] = STATE(2307), - [sym_selector_expression] = STATE(2307), - [sym_index_expression] = STATE(2307), - [sym_slice_expression] = STATE(2307), - [sym_if_expression] = STATE(2380), - [sym_compile_time_if_expression] = STATE(2380), - [sym_is_expression] = STATE(2307), - [sym_in_expression] = STATE(2307), - [sym_enum_fetch] = STATE(2307), - [sym_match_expression] = STATE(2380), - [sym_select_expression] = STATE(2380), - [sym_lock_expression] = STATE(2380), - [sym_unsafe_expression] = STATE(2380), - [sym_sql_expression] = STATE(2380), - [sym_c_string_literal] = STATE(2308), - [sym_raw_string_literal] = STATE(2308), - [sym_interpreted_string_literal] = STATE(2308), + [sym__expression] = STATE(2607), + [sym__expression_without_blocks] = STATE(2347), + [sym__expression_with_blocks] = STATE(2347), + [sym_inc_expression] = STATE(2379), + [sym_dec_expression] = STATE(2379), + [sym_or_block_expression] = STATE(2379), + [sym_option_propagation_expression] = STATE(2379), + [sym_result_propagation_expression] = STATE(2379), + [sym_anon_struct_value_expression] = STATE(2378), + [sym_go_expression] = STATE(2379), + [sym_spawn_expression] = STATE(2379), + [sym_parenthesized_expression] = STATE(2379), + [sym_call_expression] = STATE(2379), + [sym_type_initializer] = STATE(2378), + [sym_function_literal] = STATE(2379), + [sym_reference_expression] = STATE(2377), + [sym_type_reference_expression] = STATE(3460), + [sym_unary_expression] = STATE(2379), + [sym_receive_expression] = STATE(2379), + [sym_binary_expression] = STATE(2379), + [sym_as_type_cast_expression] = STATE(2379), + [sym__max_group] = STATE(2379), + [sym_literal] = STATE(2392), + [sym_map_init_expression] = STATE(2378), + [sym_array_creation] = STATE(2379), + [sym_fixed_array_creation] = STATE(2379), + [sym_selector_expression] = STATE(2379), + [sym_index_expression] = STATE(2379), + [sym_slice_expression] = STATE(2379), + [sym_if_expression] = STATE(2378), + [sym_compile_time_if_expression] = STATE(2378), + [sym_is_expression] = STATE(2379), + [sym_in_expression] = STATE(2379), + [sym_enum_fetch] = STATE(2379), + [sym_match_expression] = STATE(2378), + [sym_select_expression] = STATE(2378), + [sym_lock_expression] = STATE(2378), + [sym_unsafe_expression] = STATE(2378), + [sym_sql_expression] = STATE(2378), + [sym_c_string_literal] = STATE(2401), + [sym_raw_string_literal] = STATE(2401), + [sym_interpreted_string_literal] = STATE(2401), [sym_mutability_modifiers] = STATE(939), - [sym_plain_type] = STATE(4297), - [sym__plain_type_without_special] = STATE(2302), - [sym_anon_struct_type] = STATE(2303), - [sym_multi_return_type] = STATE(2302), - [sym_result_type] = STATE(2302), - [sym_option_type] = STATE(2302), - [sym_qualified_type] = STATE(3541), - [sym_fixed_array_type] = STATE(2303), - [sym_array_type] = STATE(2303), - [sym_pointer_type] = STATE(2303), - [sym_wrong_pointer_type] = STATE(2303), - [sym_map_type] = STATE(2303), - [sym_channel_type] = STATE(2303), - [sym_shared_type] = STATE(2303), - [sym_thread_type] = STATE(2303), - [sym_atomic_type] = STATE(2303), - [sym_generic_type] = STATE(2303), - [sym_function_type] = STATE(2303), - [sym_identifier] = ACTIONS(1807), + [sym_plain_type] = STATE(4160), + [sym__plain_type_without_special] = STATE(2360), + [sym_anon_struct_type] = STATE(2362), + [sym_multi_return_type] = STATE(2360), + [sym_result_type] = STATE(2360), + [sym_option_type] = STATE(2360), + [sym_qualified_type] = STATE(3460), + [sym_fixed_array_type] = STATE(2362), + [sym_array_type] = STATE(2362), + [sym_pointer_type] = STATE(2362), + [sym_wrong_pointer_type] = STATE(2362), + [sym_map_type] = STATE(2362), + [sym_channel_type] = STATE(2362), + [sym_shared_type] = STATE(2362), + [sym_thread_type] = STATE(2362), + [sym_atomic_type] = STATE(2362), + [sym_generic_type] = STATE(2362), + [sym_function_type] = STATE(2362), + [sym_identifier] = ACTIONS(1815), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1428), - [anon_sym_LBRACE] = ACTIONS(1430), - [anon_sym_LPAREN] = ACTIONS(1432), - [anon_sym_fn] = ACTIONS(1434), - [anon_sym_PLUS] = ACTIONS(3064), - [anon_sym_DASH] = ACTIONS(3064), - [anon_sym_STAR] = ACTIONS(3066), - [anon_sym_struct] = ACTIONS(1440), + [anon_sym_DOT] = ACTIONS(1430), + [anon_sym_LBRACE] = ACTIONS(1432), + [anon_sym_LPAREN] = ACTIONS(1434), + [anon_sym_fn] = ACTIONS(1436), + [anon_sym_PLUS] = ACTIONS(3090), + [anon_sym_DASH] = ACTIONS(3090), + [anon_sym_STAR] = ACTIONS(3092), + [anon_sym_struct] = ACTIONS(1442), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(3068), - [anon_sym_go] = ACTIONS(3070), - [anon_sym_spawn] = ACTIONS(3072), - [anon_sym_json_DOTdecode] = ACTIONS(1448), - [anon_sym_LBRACK2] = ACTIONS(1821), - [anon_sym_TILDE] = ACTIONS(3064), - [anon_sym_CARET] = ACTIONS(3064), - [anon_sym_AMP] = ACTIONS(3074), - [anon_sym_LT_DASH] = ACTIONS(3076), - [sym_none] = ACTIONS(1456), - [sym_true] = ACTIONS(1456), - [sym_false] = ACTIONS(1456), - [sym_nil] = ACTIONS(1456), - [anon_sym_if] = ACTIONS(1827), - [anon_sym_DOLLARif] = ACTIONS(1460), - [anon_sym_match] = ACTIONS(1462), - [anon_sym_select] = ACTIONS(3078), - [anon_sym_lock] = ACTIONS(3080), - [anon_sym_rlock] = ACTIONS(3080), - [anon_sym_unsafe] = ACTIONS(1833), - [anon_sym_sql] = ACTIONS(1470), - [sym_int_literal] = ACTIONS(1456), - [sym_float_literal] = ACTIONS(1472), - [sym_rune_literal] = ACTIONS(1472), - [sym_pseudo_compile_time_identifier] = ACTIONS(1474), + [anon_sym_BANG] = ACTIONS(3094), + [anon_sym_go] = ACTIONS(3096), + [anon_sym_spawn] = ACTIONS(3098), + [anon_sym_json_DOTdecode] = ACTIONS(1450), + [anon_sym_LBRACK2] = ACTIONS(1827), + [anon_sym_TILDE] = ACTIONS(3090), + [anon_sym_CARET] = ACTIONS(3090), + [anon_sym_AMP] = ACTIONS(3100), + [anon_sym_LT_DASH] = ACTIONS(3102), + [sym_none] = ACTIONS(1458), + [sym_true] = ACTIONS(1458), + [sym_false] = ACTIONS(1458), + [sym_nil] = ACTIONS(1458), + [anon_sym_if] = ACTIONS(1833), + [anon_sym_DOLLARif] = ACTIONS(1462), + [anon_sym_match] = ACTIONS(1464), + [anon_sym_select] = ACTIONS(3104), + [anon_sym_lock] = ACTIONS(3106), + [anon_sym_rlock] = ACTIONS(3106), + [anon_sym_unsafe] = ACTIONS(1839), + [anon_sym_sql] = ACTIONS(1472), + [sym_int_literal] = ACTIONS(1458), + [sym_float_literal] = ACTIONS(1474), + [sym_rune_literal] = ACTIONS(1474), + [sym_pseudo_compile_time_identifier] = ACTIONS(1476), [anon_sym_shared] = ACTIONS(83), [anon_sym_map_LBRACK] = ACTIONS(85), [anon_sym_chan] = ACTIONS(87), [anon_sym_thread] = ACTIONS(89), [anon_sym_atomic] = ACTIONS(91), - [sym___double_quote] = ACTIONS(1478), - [sym___single_quote] = ACTIONS(1480), - [sym___c_double_quote] = ACTIONS(1482), - [sym___c_single_quote] = ACTIONS(1484), - [sym___r_double_quote] = ACTIONS(1486), - [sym___r_single_quote] = ACTIONS(1488), + [sym___double_quote] = ACTIONS(1480), + [sym___single_quote] = ACTIONS(1482), + [sym___c_double_quote] = ACTIONS(1484), + [sym___c_single_quote] = ACTIONS(1486), + [sym___r_double_quote] = ACTIONS(1488), + [sym___r_single_quote] = ACTIONS(1490), }, [831] = { [sym_line_comment] = STATE(831), [sym_block_comment] = STATE(831), - [sym__expression] = STATE(2354), - [sym__expression_without_blocks] = STATE(2489), - [sym__expression_with_blocks] = STATE(2489), - [sym_inc_expression] = STATE(2479), - [sym_dec_expression] = STATE(2479), - [sym_or_block_expression] = STATE(2479), - [sym_option_propagation_expression] = STATE(2479), - [sym_result_propagation_expression] = STATE(2479), - [sym_anon_struct_value_expression] = STATE(2491), - [sym_go_expression] = STATE(2479), - [sym_spawn_expression] = STATE(2479), - [sym_parenthesized_expression] = STATE(2479), - [sym_call_expression] = STATE(2479), - [sym_type_initializer] = STATE(2491), - [sym_function_literal] = STATE(2479), - [sym_reference_expression] = STATE(2542), - [sym_type_reference_expression] = STATE(3541), - [sym_unary_expression] = STATE(2479), - [sym_receive_expression] = STATE(2479), - [sym_binary_expression] = STATE(2479), - [sym_as_type_cast_expression] = STATE(2479), - [sym__max_group] = STATE(2479), - [sym_literal] = STATE(2454), - [sym_map_init_expression] = STATE(2491), - [sym_array_creation] = STATE(2479), - [sym_fixed_array_creation] = STATE(2479), - [sym_selector_expression] = STATE(2479), - [sym_index_expression] = STATE(2479), - [sym_slice_expression] = STATE(2479), - [sym_if_expression] = STATE(2491), - [sym_compile_time_if_expression] = STATE(2491), - [sym_is_expression] = STATE(2479), - [sym_in_expression] = STATE(2479), - [sym_enum_fetch] = STATE(2479), - [sym_match_expression] = STATE(2491), - [sym_select_expression] = STATE(2491), - [sym_lock_expression] = STATE(2491), - [sym_unsafe_expression] = STATE(2491), - [sym_sql_expression] = STATE(2491), - [sym_c_string_literal] = STATE(2469), - [sym_raw_string_literal] = STATE(2469), - [sym_interpreted_string_literal] = STATE(2469), - [sym_mutability_modifiers] = STATE(640), - [sym_plain_type] = STATE(4255), - [sym__plain_type_without_special] = STATE(2302), - [sym_anon_struct_type] = STATE(2303), - [sym_multi_return_type] = STATE(2302), - [sym_result_type] = STATE(2302), - [sym_option_type] = STATE(2302), - [sym_qualified_type] = STATE(3541), - [sym_fixed_array_type] = STATE(2303), - [sym_array_type] = STATE(2303), - [sym_pointer_type] = STATE(2303), - [sym_wrong_pointer_type] = STATE(2303), - [sym_map_type] = STATE(2303), - [sym_channel_type] = STATE(2303), - [sym_shared_type] = STATE(2303), - [sym_thread_type] = STATE(2303), - [sym_atomic_type] = STATE(2303), - [sym_generic_type] = STATE(2303), - [sym_function_type] = STATE(2303), - [sym_identifier] = ACTIONS(1695), + [sym__expression] = STATE(2441), + [sym__expression_without_blocks] = STATE(2638), + [sym__expression_with_blocks] = STATE(2638), + [sym_inc_expression] = STATE(2765), + [sym_dec_expression] = STATE(2765), + [sym_or_block_expression] = STATE(2765), + [sym_option_propagation_expression] = STATE(2765), + [sym_result_propagation_expression] = STATE(2765), + [sym_anon_struct_value_expression] = STATE(2637), + [sym_go_expression] = STATE(2765), + [sym_spawn_expression] = STATE(2765), + [sym_parenthesized_expression] = STATE(2765), + [sym_call_expression] = STATE(2765), + [sym_type_initializer] = STATE(2637), + [sym_function_literal] = STATE(2765), + [sym_reference_expression] = STATE(2764), + [sym_type_reference_expression] = STATE(3460), + [sym_unary_expression] = STATE(2765), + [sym_receive_expression] = STATE(2765), + [sym_binary_expression] = STATE(2765), + [sym_as_type_cast_expression] = STATE(2765), + [sym__max_group] = STATE(2765), + [sym_literal] = STATE(2771), + [sym_map_init_expression] = STATE(2637), + [sym_array_creation] = STATE(2765), + [sym_fixed_array_creation] = STATE(2765), + [sym_selector_expression] = STATE(2765), + [sym_index_expression] = STATE(2765), + [sym_slice_expression] = STATE(2765), + [sym_if_expression] = STATE(2637), + [sym_compile_time_if_expression] = STATE(2637), + [sym_is_expression] = STATE(2765), + [sym_in_expression] = STATE(2765), + [sym_enum_fetch] = STATE(2765), + [sym_match_expression] = STATE(2637), + [sym_select_expression] = STATE(2637), + [sym_lock_expression] = STATE(2637), + [sym_unsafe_expression] = STATE(2637), + [sym_sql_expression] = STATE(2637), + [sym_c_string_literal] = STATE(2762), + [sym_raw_string_literal] = STATE(2762), + [sym_interpreted_string_literal] = STATE(2762), + [sym_mutability_modifiers] = STATE(822), + [sym_plain_type] = STATE(4011), + [sym__plain_type_without_special] = STATE(2360), + [sym_anon_struct_type] = STATE(2362), + [sym_multi_return_type] = STATE(2360), + [sym_result_type] = STATE(2360), + [sym_option_type] = STATE(2360), + [sym_qualified_type] = STATE(3460), + [sym_fixed_array_type] = STATE(2362), + [sym_array_type] = STATE(2362), + [sym_pointer_type] = STATE(2362), + [sym_wrong_pointer_type] = STATE(2362), + [sym_map_type] = STATE(2362), + [sym_channel_type] = STATE(2362), + [sym_shared_type] = STATE(2362), + [sym_thread_type] = STATE(2362), + [sym_atomic_type] = STATE(2362), + [sym_generic_type] = STATE(2362), + [sym_function_type] = STATE(2362), + [sym_identifier] = ACTIONS(1815), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1697), - [anon_sym_LBRACE] = ACTIONS(2697), - [anon_sym_LPAREN] = ACTIONS(2699), - [anon_sym_fn] = ACTIONS(1703), - [anon_sym_PLUS] = ACTIONS(2701), - [anon_sym_DASH] = ACTIONS(2701), - [anon_sym_STAR] = ACTIONS(2703), - [anon_sym_struct] = ACTIONS(1709), + [anon_sym_DOT] = ACTIONS(1073), + [anon_sym_LBRACE] = ACTIONS(1075), + [anon_sym_LPAREN] = ACTIONS(1079), + [anon_sym_fn] = ACTIONS(1081), + [anon_sym_PLUS] = ACTIONS(1083), + [anon_sym_DASH] = ACTIONS(1083), + [anon_sym_STAR] = ACTIONS(3360), + [anon_sym_struct] = ACTIONS(1087), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(2705), - [anon_sym_go] = ACTIONS(1713), - [anon_sym_spawn] = ACTIONS(1715), - [anon_sym_json_DOTdecode] = ACTIONS(2707), - [anon_sym_LBRACK2] = ACTIONS(2709), - [anon_sym_TILDE] = ACTIONS(2701), - [anon_sym_CARET] = ACTIONS(2701), - [anon_sym_AMP] = ACTIONS(2711), - [anon_sym_LT_DASH] = ACTIONS(2713), - [sym_none] = ACTIONS(1725), - [sym_true] = ACTIONS(1725), - [sym_false] = ACTIONS(1725), - [sym_nil] = ACTIONS(1725), - [anon_sym_if] = ACTIONS(1727), - [anon_sym_DOLLARif] = ACTIONS(1729), - [anon_sym_match] = ACTIONS(1731), - [anon_sym_select] = ACTIONS(1733), - [anon_sym_lock] = ACTIONS(1735), - [anon_sym_rlock] = ACTIONS(1735), - [anon_sym_unsafe] = ACTIONS(1737), - [anon_sym_sql] = ACTIONS(1739), - [sym_int_literal] = ACTIONS(1725), - [sym_float_literal] = ACTIONS(2715), - [sym_rune_literal] = ACTIONS(2715), - [sym_pseudo_compile_time_identifier] = ACTIONS(1741), + [anon_sym_BANG] = ACTIONS(3362), + [anon_sym_go] = ACTIONS(1091), + [anon_sym_spawn] = ACTIONS(1093), + [anon_sym_json_DOTdecode] = ACTIONS(1095), + [anon_sym_LBRACK2] = ACTIONS(1097), + [anon_sym_TILDE] = ACTIONS(1083), + [anon_sym_CARET] = ACTIONS(1083), + [anon_sym_AMP] = ACTIONS(3364), + [anon_sym_LT_DASH] = ACTIONS(1101), + [sym_none] = ACTIONS(1103), + [sym_true] = ACTIONS(1103), + [sym_false] = ACTIONS(1103), + [sym_nil] = ACTIONS(1103), + [anon_sym_if] = ACTIONS(1105), + [anon_sym_DOLLARif] = ACTIONS(1109), + [anon_sym_match] = ACTIONS(1111), + [anon_sym_select] = ACTIONS(3138), + [anon_sym_lock] = ACTIONS(3140), + [anon_sym_rlock] = ACTIONS(3140), + [anon_sym_unsafe] = ACTIONS(1117), + [anon_sym_sql] = ACTIONS(1119), + [sym_int_literal] = ACTIONS(1103), + [sym_float_literal] = ACTIONS(1121), + [sym_rune_literal] = ACTIONS(1121), + [sym_pseudo_compile_time_identifier] = ACTIONS(1123), [anon_sym_shared] = ACTIONS(83), [anon_sym_map_LBRACK] = ACTIONS(85), [anon_sym_chan] = ACTIONS(87), [anon_sym_thread] = ACTIONS(89), [anon_sym_atomic] = ACTIONS(91), - [sym___double_quote] = ACTIONS(2717), - [sym___single_quote] = ACTIONS(2719), - [sym___c_double_quote] = ACTIONS(2721), - [sym___c_single_quote] = ACTIONS(2723), - [sym___r_double_quote] = ACTIONS(2725), - [sym___r_single_quote] = ACTIONS(2727), + [sym___double_quote] = ACTIONS(1125), + [sym___single_quote] = ACTIONS(1127), + [sym___c_double_quote] = ACTIONS(1129), + [sym___c_single_quote] = ACTIONS(1131), + [sym___r_double_quote] = ACTIONS(1133), + [sym___r_single_quote] = ACTIONS(1135), }, [832] = { [sym_line_comment] = STATE(832), [sym_block_comment] = STATE(832), - [sym__expression] = STATE(2792), - [sym__expression_without_blocks] = STATE(2300), - [sym__expression_with_blocks] = STATE(2300), - [sym_inc_expression] = STATE(2307), - [sym_dec_expression] = STATE(2307), - [sym_or_block_expression] = STATE(2307), - [sym_option_propagation_expression] = STATE(2307), - [sym_result_propagation_expression] = STATE(2307), - [sym_anon_struct_value_expression] = STATE(2380), - [sym_go_expression] = STATE(2307), - [sym_spawn_expression] = STATE(2307), - [sym_parenthesized_expression] = STATE(2307), - [sym_call_expression] = STATE(2307), - [sym_type_initializer] = STATE(2380), - [sym_function_literal] = STATE(2307), - [sym_reference_expression] = STATE(2311), - [sym_type_reference_expression] = STATE(3541), - [sym_unary_expression] = STATE(2307), - [sym_receive_expression] = STATE(2307), - [sym_binary_expression] = STATE(2307), - [sym_as_type_cast_expression] = STATE(2307), - [sym__max_group] = STATE(2307), - [sym_literal] = STATE(2292), - [sym_map_init_expression] = STATE(2380), - [sym_array_creation] = STATE(2307), - [sym_fixed_array_creation] = STATE(2307), - [sym_selector_expression] = STATE(2307), - [sym_index_expression] = STATE(2307), - [sym_slice_expression] = STATE(2307), - [sym_if_expression] = STATE(2380), - [sym_compile_time_if_expression] = STATE(2380), - [sym_is_expression] = STATE(2307), - [sym_in_expression] = STATE(2307), - [sym_enum_fetch] = STATE(2307), - [sym_match_expression] = STATE(2380), - [sym_select_expression] = STATE(2380), - [sym_lock_expression] = STATE(2380), - [sym_unsafe_expression] = STATE(2380), - [sym_sql_expression] = STATE(2380), - [sym_c_string_literal] = STATE(2308), - [sym_raw_string_literal] = STATE(2308), - [sym_interpreted_string_literal] = STATE(2308), - [sym_mutability_modifiers] = STATE(939), - [sym_plain_type] = STATE(4297), - [sym__plain_type_without_special] = STATE(2302), - [sym_anon_struct_type] = STATE(2303), - [sym_multi_return_type] = STATE(2302), - [sym_result_type] = STATE(2302), - [sym_option_type] = STATE(2302), - [sym_qualified_type] = STATE(3541), - [sym_fixed_array_type] = STATE(2303), - [sym_array_type] = STATE(2303), - [sym_pointer_type] = STATE(2303), - [sym_wrong_pointer_type] = STATE(2303), - [sym_map_type] = STATE(2303), - [sym_channel_type] = STATE(2303), - [sym_shared_type] = STATE(2303), - [sym_thread_type] = STATE(2303), - [sym_atomic_type] = STATE(2303), - [sym_generic_type] = STATE(2303), - [sym_function_type] = STATE(2303), - [sym_identifier] = ACTIONS(1807), + [sym__expression] = STATE(2267), + [sym__expression_without_blocks] = STATE(2347), + [sym__expression_with_blocks] = STATE(2347), + [sym_inc_expression] = STATE(2379), + [sym_dec_expression] = STATE(2379), + [sym_or_block_expression] = STATE(2379), + [sym_option_propagation_expression] = STATE(2379), + [sym_result_propagation_expression] = STATE(2379), + [sym_anon_struct_value_expression] = STATE(2378), + [sym_go_expression] = STATE(2379), + [sym_spawn_expression] = STATE(2379), + [sym_parenthesized_expression] = STATE(2379), + [sym_call_expression] = STATE(2379), + [sym_type_initializer] = STATE(2378), + [sym_function_literal] = STATE(2379), + [sym_reference_expression] = STATE(2377), + [sym_type_reference_expression] = STATE(3460), + [sym_unary_expression] = STATE(2379), + [sym_receive_expression] = STATE(2379), + [sym_binary_expression] = STATE(2379), + [sym_as_type_cast_expression] = STATE(2379), + [sym__max_group] = STATE(2379), + [sym_literal] = STATE(2392), + [sym_map_init_expression] = STATE(2378), + [sym_array_creation] = STATE(2379), + [sym_fixed_array_creation] = STATE(2379), + [sym_selector_expression] = STATE(2379), + [sym_index_expression] = STATE(2379), + [sym_slice_expression] = STATE(2379), + [sym_if_expression] = STATE(2378), + [sym_compile_time_if_expression] = STATE(2378), + [sym_is_expression] = STATE(2379), + [sym_in_expression] = STATE(2379), + [sym_enum_fetch] = STATE(2379), + [sym_match_expression] = STATE(2378), + [sym_select_expression] = STATE(2378), + [sym_lock_expression] = STATE(2378), + [sym_unsafe_expression] = STATE(2378), + [sym_sql_expression] = STATE(2378), + [sym_c_string_literal] = STATE(2401), + [sym_raw_string_literal] = STATE(2401), + [sym_interpreted_string_literal] = STATE(2401), + [sym_mutability_modifiers] = STATE(553), + [sym_plain_type] = STATE(3559), + [sym__plain_type_without_special] = STATE(2360), + [sym_anon_struct_type] = STATE(2362), + [sym_multi_return_type] = STATE(2360), + [sym_result_type] = STATE(2360), + [sym_option_type] = STATE(2360), + [sym_qualified_type] = STATE(3460), + [sym_fixed_array_type] = STATE(2362), + [sym_array_type] = STATE(2362), + [sym_pointer_type] = STATE(2362), + [sym_wrong_pointer_type] = STATE(2362), + [sym_map_type] = STATE(2362), + [sym_channel_type] = STATE(2362), + [sym_shared_type] = STATE(2362), + [sym_thread_type] = STATE(2362), + [sym_atomic_type] = STATE(2362), + [sym_generic_type] = STATE(2362), + [sym_function_type] = STATE(2362), + [sym_identifier] = ACTIONS(2477), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1428), - [anon_sym_LBRACE] = ACTIONS(1430), - [anon_sym_LPAREN] = ACTIONS(1432), - [anon_sym_fn] = ACTIONS(1434), - [anon_sym_PLUS] = ACTIONS(3064), - [anon_sym_DASH] = ACTIONS(3064), - [anon_sym_STAR] = ACTIONS(3066), - [anon_sym_struct] = ACTIONS(1440), + [anon_sym_DOT] = ACTIONS(1430), + [anon_sym_LBRACE] = ACTIONS(1432), + [anon_sym_LPAREN] = ACTIONS(1434), + [anon_sym_fn] = ACTIONS(1436), + [anon_sym_PLUS] = ACTIONS(2479), + [anon_sym_DASH] = ACTIONS(2479), + [anon_sym_STAR] = ACTIONS(2481), + [anon_sym_struct] = ACTIONS(1442), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(3068), - [anon_sym_go] = ACTIONS(3070), - [anon_sym_spawn] = ACTIONS(3072), - [anon_sym_json_DOTdecode] = ACTIONS(1448), - [anon_sym_LBRACK2] = ACTIONS(1821), - [anon_sym_TILDE] = ACTIONS(3064), - [anon_sym_CARET] = ACTIONS(3064), - [anon_sym_AMP] = ACTIONS(3074), - [anon_sym_LT_DASH] = ACTIONS(3076), - [sym_none] = ACTIONS(1456), - [sym_true] = ACTIONS(1456), - [sym_false] = ACTIONS(1456), - [sym_nil] = ACTIONS(1456), - [anon_sym_if] = ACTIONS(1827), - [anon_sym_DOLLARif] = ACTIONS(1460), - [anon_sym_match] = ACTIONS(1462), - [anon_sym_select] = ACTIONS(3078), - [anon_sym_lock] = ACTIONS(3080), - [anon_sym_rlock] = ACTIONS(3080), - [anon_sym_unsafe] = ACTIONS(1833), - [anon_sym_sql] = ACTIONS(1470), - [sym_int_literal] = ACTIONS(1456), - [sym_float_literal] = ACTIONS(1472), - [sym_rune_literal] = ACTIONS(1472), - [sym_pseudo_compile_time_identifier] = ACTIONS(1474), + [anon_sym_BANG] = ACTIONS(2483), + [anon_sym_go] = ACTIONS(2485), + [anon_sym_spawn] = ACTIONS(2487), + [anon_sym_json_DOTdecode] = ACTIONS(1450), + [anon_sym_LBRACK2] = ACTIONS(2489), + [anon_sym_TILDE] = ACTIONS(2479), + [anon_sym_CARET] = ACTIONS(2479), + [anon_sym_AMP] = ACTIONS(2491), + [anon_sym_LT_DASH] = ACTIONS(2493), + [sym_none] = ACTIONS(1458), + [sym_true] = ACTIONS(1458), + [sym_false] = ACTIONS(1458), + [sym_nil] = ACTIONS(1458), + [anon_sym_if] = ACTIONS(1833), + [anon_sym_DOLLARif] = ACTIONS(1462), + [anon_sym_match] = ACTIONS(1464), + [anon_sym_select] = ACTIONS(2495), + [anon_sym_lock] = ACTIONS(2497), + [anon_sym_rlock] = ACTIONS(2497), + [anon_sym_unsafe] = ACTIONS(1839), + [anon_sym_sql] = ACTIONS(1472), + [sym_int_literal] = ACTIONS(1458), + [sym_float_literal] = ACTIONS(1474), + [sym_rune_literal] = ACTIONS(1474), + [sym_pseudo_compile_time_identifier] = ACTIONS(1476), [anon_sym_shared] = ACTIONS(83), [anon_sym_map_LBRACK] = ACTIONS(85), [anon_sym_chan] = ACTIONS(87), [anon_sym_thread] = ACTIONS(89), [anon_sym_atomic] = ACTIONS(91), - [sym___double_quote] = ACTIONS(1478), - [sym___single_quote] = ACTIONS(1480), - [sym___c_double_quote] = ACTIONS(1482), - [sym___c_single_quote] = ACTIONS(1484), - [sym___r_double_quote] = ACTIONS(1486), - [sym___r_single_quote] = ACTIONS(1488), + [sym___double_quote] = ACTIONS(1480), + [sym___single_quote] = ACTIONS(1482), + [sym___c_double_quote] = ACTIONS(1484), + [sym___c_single_quote] = ACTIONS(1486), + [sym___r_double_quote] = ACTIONS(1488), + [sym___r_single_quote] = ACTIONS(1490), }, [833] = { [sym_line_comment] = STATE(833), [sym_block_comment] = STATE(833), - [sym__expression] = STATE(2795), - [sym__expression_without_blocks] = STATE(2300), - [sym__expression_with_blocks] = STATE(2300), - [sym_inc_expression] = STATE(2307), - [sym_dec_expression] = STATE(2307), - [sym_or_block_expression] = STATE(2307), - [sym_option_propagation_expression] = STATE(2307), - [sym_result_propagation_expression] = STATE(2307), - [sym_anon_struct_value_expression] = STATE(2380), - [sym_go_expression] = STATE(2307), - [sym_spawn_expression] = STATE(2307), - [sym_parenthesized_expression] = STATE(2307), - [sym_call_expression] = STATE(2307), - [sym_type_initializer] = STATE(2380), - [sym_function_literal] = STATE(2307), - [sym_reference_expression] = STATE(2311), - [sym_type_reference_expression] = STATE(3541), - [sym_unary_expression] = STATE(2307), - [sym_receive_expression] = STATE(2307), - [sym_binary_expression] = STATE(2307), - [sym_as_type_cast_expression] = STATE(2307), - [sym__max_group] = STATE(2307), - [sym_literal] = STATE(2292), - [sym_map_init_expression] = STATE(2380), - [sym_array_creation] = STATE(2307), - [sym_fixed_array_creation] = STATE(2307), - [sym_selector_expression] = STATE(2307), - [sym_index_expression] = STATE(2307), - [sym_slice_expression] = STATE(2307), - [sym_if_expression] = STATE(2380), - [sym_compile_time_if_expression] = STATE(2380), - [sym_is_expression] = STATE(2307), - [sym_in_expression] = STATE(2307), - [sym_enum_fetch] = STATE(2307), - [sym_match_expression] = STATE(2380), - [sym_select_expression] = STATE(2380), - [sym_lock_expression] = STATE(2380), - [sym_unsafe_expression] = STATE(2380), - [sym_sql_expression] = STATE(2380), - [sym_c_string_literal] = STATE(2308), - [sym_raw_string_literal] = STATE(2308), - [sym_interpreted_string_literal] = STATE(2308), - [sym_mutability_modifiers] = STATE(939), - [sym_plain_type] = STATE(4297), - [sym__plain_type_without_special] = STATE(2302), - [sym_anon_struct_type] = STATE(2303), - [sym_multi_return_type] = STATE(2302), - [sym_result_type] = STATE(2302), - [sym_option_type] = STATE(2302), - [sym_qualified_type] = STATE(3541), - [sym_fixed_array_type] = STATE(2303), - [sym_array_type] = STATE(2303), - [sym_pointer_type] = STATE(2303), - [sym_wrong_pointer_type] = STATE(2303), - [sym_map_type] = STATE(2303), - [sym_channel_type] = STATE(2303), - [sym_shared_type] = STATE(2303), - [sym_thread_type] = STATE(2303), - [sym_atomic_type] = STATE(2303), - [sym_generic_type] = STATE(2303), - [sym_function_type] = STATE(2303), - [sym_identifier] = ACTIONS(1807), + [sym__expression] = STATE(2440), + [sym__expression_without_blocks] = STATE(2638), + [sym__expression_with_blocks] = STATE(2638), + [sym_inc_expression] = STATE(2765), + [sym_dec_expression] = STATE(2765), + [sym_or_block_expression] = STATE(2765), + [sym_option_propagation_expression] = STATE(2765), + [sym_result_propagation_expression] = STATE(2765), + [sym_anon_struct_value_expression] = STATE(2637), + [sym_go_expression] = STATE(2765), + [sym_spawn_expression] = STATE(2765), + [sym_parenthesized_expression] = STATE(2765), + [sym_call_expression] = STATE(2765), + [sym_type_initializer] = STATE(2637), + [sym_function_literal] = STATE(2765), + [sym_reference_expression] = STATE(2764), + [sym_type_reference_expression] = STATE(3460), + [sym_unary_expression] = STATE(2765), + [sym_receive_expression] = STATE(2765), + [sym_binary_expression] = STATE(2765), + [sym_as_type_cast_expression] = STATE(2765), + [sym__max_group] = STATE(2765), + [sym_literal] = STATE(2771), + [sym_map_init_expression] = STATE(2637), + [sym_array_creation] = STATE(2765), + [sym_fixed_array_creation] = STATE(2765), + [sym_selector_expression] = STATE(2765), + [sym_index_expression] = STATE(2765), + [sym_slice_expression] = STATE(2765), + [sym_if_expression] = STATE(2637), + [sym_compile_time_if_expression] = STATE(2637), + [sym_is_expression] = STATE(2765), + [sym_in_expression] = STATE(2765), + [sym_enum_fetch] = STATE(2765), + [sym_match_expression] = STATE(2637), + [sym_select_expression] = STATE(2637), + [sym_lock_expression] = STATE(2637), + [sym_unsafe_expression] = STATE(2637), + [sym_sql_expression] = STATE(2637), + [sym_c_string_literal] = STATE(2762), + [sym_raw_string_literal] = STATE(2762), + [sym_interpreted_string_literal] = STATE(2762), + [sym_mutability_modifiers] = STATE(822), + [sym_plain_type] = STATE(4011), + [sym__plain_type_without_special] = STATE(2360), + [sym_anon_struct_type] = STATE(2362), + [sym_multi_return_type] = STATE(2360), + [sym_result_type] = STATE(2360), + [sym_option_type] = STATE(2360), + [sym_qualified_type] = STATE(3460), + [sym_fixed_array_type] = STATE(2362), + [sym_array_type] = STATE(2362), + [sym_pointer_type] = STATE(2362), + [sym_wrong_pointer_type] = STATE(2362), + [sym_map_type] = STATE(2362), + [sym_channel_type] = STATE(2362), + [sym_shared_type] = STATE(2362), + [sym_thread_type] = STATE(2362), + [sym_atomic_type] = STATE(2362), + [sym_generic_type] = STATE(2362), + [sym_function_type] = STATE(2362), + [sym_identifier] = ACTIONS(1815), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1428), - [anon_sym_LBRACE] = ACTIONS(1430), - [anon_sym_LPAREN] = ACTIONS(1432), - [anon_sym_fn] = ACTIONS(1434), - [anon_sym_PLUS] = ACTIONS(3064), - [anon_sym_DASH] = ACTIONS(3064), - [anon_sym_STAR] = ACTIONS(3066), - [anon_sym_struct] = ACTIONS(1440), + [anon_sym_DOT] = ACTIONS(1073), + [anon_sym_LBRACE] = ACTIONS(1075), + [anon_sym_LPAREN] = ACTIONS(1079), + [anon_sym_fn] = ACTIONS(1081), + [anon_sym_PLUS] = ACTIONS(1083), + [anon_sym_DASH] = ACTIONS(1083), + [anon_sym_STAR] = ACTIONS(3360), + [anon_sym_struct] = ACTIONS(1087), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(3068), - [anon_sym_go] = ACTIONS(3070), - [anon_sym_spawn] = ACTIONS(3072), - [anon_sym_json_DOTdecode] = ACTIONS(1448), - [anon_sym_LBRACK2] = ACTIONS(1821), - [anon_sym_TILDE] = ACTIONS(3064), - [anon_sym_CARET] = ACTIONS(3064), - [anon_sym_AMP] = ACTIONS(3074), - [anon_sym_LT_DASH] = ACTIONS(3076), - [sym_none] = ACTIONS(1456), - [sym_true] = ACTIONS(1456), - [sym_false] = ACTIONS(1456), - [sym_nil] = ACTIONS(1456), - [anon_sym_if] = ACTIONS(1827), - [anon_sym_DOLLARif] = ACTIONS(1460), - [anon_sym_match] = ACTIONS(1462), - [anon_sym_select] = ACTIONS(3078), - [anon_sym_lock] = ACTIONS(3080), - [anon_sym_rlock] = ACTIONS(3080), - [anon_sym_unsafe] = ACTIONS(1833), - [anon_sym_sql] = ACTIONS(1470), - [sym_int_literal] = ACTIONS(1456), - [sym_float_literal] = ACTIONS(1472), - [sym_rune_literal] = ACTIONS(1472), - [sym_pseudo_compile_time_identifier] = ACTIONS(1474), + [anon_sym_BANG] = ACTIONS(3362), + [anon_sym_go] = ACTIONS(1091), + [anon_sym_spawn] = ACTIONS(1093), + [anon_sym_json_DOTdecode] = ACTIONS(1095), + [anon_sym_LBRACK2] = ACTIONS(1097), + [anon_sym_TILDE] = ACTIONS(1083), + [anon_sym_CARET] = ACTIONS(1083), + [anon_sym_AMP] = ACTIONS(3364), + [anon_sym_LT_DASH] = ACTIONS(1101), + [sym_none] = ACTIONS(1103), + [sym_true] = ACTIONS(1103), + [sym_false] = ACTIONS(1103), + [sym_nil] = ACTIONS(1103), + [anon_sym_if] = ACTIONS(1105), + [anon_sym_DOLLARif] = ACTIONS(1109), + [anon_sym_match] = ACTIONS(1111), + [anon_sym_select] = ACTIONS(3138), + [anon_sym_lock] = ACTIONS(3140), + [anon_sym_rlock] = ACTIONS(3140), + [anon_sym_unsafe] = ACTIONS(1117), + [anon_sym_sql] = ACTIONS(1119), + [sym_int_literal] = ACTIONS(1103), + [sym_float_literal] = ACTIONS(1121), + [sym_rune_literal] = ACTIONS(1121), + [sym_pseudo_compile_time_identifier] = ACTIONS(1123), [anon_sym_shared] = ACTIONS(83), [anon_sym_map_LBRACK] = ACTIONS(85), [anon_sym_chan] = ACTIONS(87), [anon_sym_thread] = ACTIONS(89), [anon_sym_atomic] = ACTIONS(91), - [sym___double_quote] = ACTIONS(1478), - [sym___single_quote] = ACTIONS(1480), - [sym___c_double_quote] = ACTIONS(1482), - [sym___c_single_quote] = ACTIONS(1484), - [sym___r_double_quote] = ACTIONS(1486), - [sym___r_single_quote] = ACTIONS(1488), + [sym___double_quote] = ACTIONS(1125), + [sym___single_quote] = ACTIONS(1127), + [sym___c_double_quote] = ACTIONS(1129), + [sym___c_single_quote] = ACTIONS(1131), + [sym___r_double_quote] = ACTIONS(1133), + [sym___r_single_quote] = ACTIONS(1135), }, [834] = { [sym_line_comment] = STATE(834), [sym_block_comment] = STATE(834), - [sym__expression] = STATE(2338), - [sym__expression_without_blocks] = STATE(2489), - [sym__expression_with_blocks] = STATE(2489), - [sym_inc_expression] = STATE(2479), - [sym_dec_expression] = STATE(2479), - [sym_or_block_expression] = STATE(2479), - [sym_option_propagation_expression] = STATE(2479), - [sym_result_propagation_expression] = STATE(2479), - [sym_anon_struct_value_expression] = STATE(2491), - [sym_go_expression] = STATE(2479), - [sym_spawn_expression] = STATE(2479), - [sym_parenthesized_expression] = STATE(2479), - [sym_call_expression] = STATE(2479), - [sym_type_initializer] = STATE(2491), - [sym_function_literal] = STATE(2479), - [sym_reference_expression] = STATE(2542), - [sym_type_reference_expression] = STATE(3541), - [sym_unary_expression] = STATE(2479), - [sym_receive_expression] = STATE(2479), - [sym_binary_expression] = STATE(2479), - [sym_as_type_cast_expression] = STATE(2479), - [sym__max_group] = STATE(2479), - [sym_literal] = STATE(2454), - [sym_map_init_expression] = STATE(2491), - [sym_array_creation] = STATE(2479), - [sym_fixed_array_creation] = STATE(2479), - [sym_selector_expression] = STATE(2479), - [sym_index_expression] = STATE(2479), - [sym_slice_expression] = STATE(2479), - [sym_if_expression] = STATE(2491), - [sym_compile_time_if_expression] = STATE(2491), - [sym_is_expression] = STATE(2479), - [sym_in_expression] = STATE(2479), - [sym_enum_fetch] = STATE(2479), - [sym_match_expression] = STATE(2491), - [sym_select_expression] = STATE(2491), - [sym_lock_expression] = STATE(2491), - [sym_unsafe_expression] = STATE(2491), - [sym_sql_expression] = STATE(2491), - [sym_c_string_literal] = STATE(2469), - [sym_raw_string_literal] = STATE(2469), - [sym_interpreted_string_literal] = STATE(2469), - [sym_mutability_modifiers] = STATE(640), - [sym_plain_type] = STATE(4255), - [sym__plain_type_without_special] = STATE(2302), - [sym_anon_struct_type] = STATE(2303), - [sym_multi_return_type] = STATE(2302), - [sym_result_type] = STATE(2302), - [sym_option_type] = STATE(2302), - [sym_qualified_type] = STATE(3541), - [sym_fixed_array_type] = STATE(2303), - [sym_array_type] = STATE(2303), - [sym_pointer_type] = STATE(2303), - [sym_wrong_pointer_type] = STATE(2303), - [sym_map_type] = STATE(2303), - [sym_channel_type] = STATE(2303), - [sym_shared_type] = STATE(2303), - [sym_thread_type] = STATE(2303), - [sym_atomic_type] = STATE(2303), - [sym_generic_type] = STATE(2303), - [sym_function_type] = STATE(2303), - [sym_identifier] = ACTIONS(1695), + [sym__expression] = STATE(2439), + [sym__expression_without_blocks] = STATE(2638), + [sym__expression_with_blocks] = STATE(2638), + [sym_inc_expression] = STATE(2765), + [sym_dec_expression] = STATE(2765), + [sym_or_block_expression] = STATE(2765), + [sym_option_propagation_expression] = STATE(2765), + [sym_result_propagation_expression] = STATE(2765), + [sym_anon_struct_value_expression] = STATE(2637), + [sym_go_expression] = STATE(2765), + [sym_spawn_expression] = STATE(2765), + [sym_parenthesized_expression] = STATE(2765), + [sym_call_expression] = STATE(2765), + [sym_type_initializer] = STATE(2637), + [sym_function_literal] = STATE(2765), + [sym_reference_expression] = STATE(2764), + [sym_type_reference_expression] = STATE(3460), + [sym_unary_expression] = STATE(2765), + [sym_receive_expression] = STATE(2765), + [sym_binary_expression] = STATE(2765), + [sym_as_type_cast_expression] = STATE(2765), + [sym__max_group] = STATE(2765), + [sym_literal] = STATE(2771), + [sym_map_init_expression] = STATE(2637), + [sym_array_creation] = STATE(2765), + [sym_fixed_array_creation] = STATE(2765), + [sym_selector_expression] = STATE(2765), + [sym_index_expression] = STATE(2765), + [sym_slice_expression] = STATE(2765), + [sym_if_expression] = STATE(2637), + [sym_compile_time_if_expression] = STATE(2637), + [sym_is_expression] = STATE(2765), + [sym_in_expression] = STATE(2765), + [sym_enum_fetch] = STATE(2765), + [sym_match_expression] = STATE(2637), + [sym_select_expression] = STATE(2637), + [sym_lock_expression] = STATE(2637), + [sym_unsafe_expression] = STATE(2637), + [sym_sql_expression] = STATE(2637), + [sym_c_string_literal] = STATE(2762), + [sym_raw_string_literal] = STATE(2762), + [sym_interpreted_string_literal] = STATE(2762), + [sym_mutability_modifiers] = STATE(822), + [sym_plain_type] = STATE(4011), + [sym__plain_type_without_special] = STATE(2360), + [sym_anon_struct_type] = STATE(2362), + [sym_multi_return_type] = STATE(2360), + [sym_result_type] = STATE(2360), + [sym_option_type] = STATE(2360), + [sym_qualified_type] = STATE(3460), + [sym_fixed_array_type] = STATE(2362), + [sym_array_type] = STATE(2362), + [sym_pointer_type] = STATE(2362), + [sym_wrong_pointer_type] = STATE(2362), + [sym_map_type] = STATE(2362), + [sym_channel_type] = STATE(2362), + [sym_shared_type] = STATE(2362), + [sym_thread_type] = STATE(2362), + [sym_atomic_type] = STATE(2362), + [sym_generic_type] = STATE(2362), + [sym_function_type] = STATE(2362), + [sym_identifier] = ACTIONS(1815), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1697), - [anon_sym_LBRACE] = ACTIONS(2697), - [anon_sym_LPAREN] = ACTIONS(2699), - [anon_sym_fn] = ACTIONS(1703), - [anon_sym_PLUS] = ACTIONS(2701), - [anon_sym_DASH] = ACTIONS(2701), - [anon_sym_STAR] = ACTIONS(2703), - [anon_sym_struct] = ACTIONS(1709), + [anon_sym_DOT] = ACTIONS(1073), + [anon_sym_LBRACE] = ACTIONS(1075), + [anon_sym_LPAREN] = ACTIONS(1079), + [anon_sym_fn] = ACTIONS(1081), + [anon_sym_PLUS] = ACTIONS(1083), + [anon_sym_DASH] = ACTIONS(1083), + [anon_sym_STAR] = ACTIONS(3360), + [anon_sym_struct] = ACTIONS(1087), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(2705), - [anon_sym_go] = ACTIONS(1713), - [anon_sym_spawn] = ACTIONS(1715), - [anon_sym_json_DOTdecode] = ACTIONS(2707), - [anon_sym_LBRACK2] = ACTIONS(2709), - [anon_sym_TILDE] = ACTIONS(2701), - [anon_sym_CARET] = ACTIONS(2701), - [anon_sym_AMP] = ACTIONS(2711), - [anon_sym_LT_DASH] = ACTIONS(2713), - [sym_none] = ACTIONS(1725), - [sym_true] = ACTIONS(1725), - [sym_false] = ACTIONS(1725), - [sym_nil] = ACTIONS(1725), - [anon_sym_if] = ACTIONS(1727), - [anon_sym_DOLLARif] = ACTIONS(1729), - [anon_sym_match] = ACTIONS(1731), - [anon_sym_select] = ACTIONS(1733), - [anon_sym_lock] = ACTIONS(1735), - [anon_sym_rlock] = ACTIONS(1735), - [anon_sym_unsafe] = ACTIONS(1737), - [anon_sym_sql] = ACTIONS(1739), - [sym_int_literal] = ACTIONS(1725), - [sym_float_literal] = ACTIONS(2715), - [sym_rune_literal] = ACTIONS(2715), - [sym_pseudo_compile_time_identifier] = ACTIONS(1741), + [anon_sym_BANG] = ACTIONS(3362), + [anon_sym_go] = ACTIONS(1091), + [anon_sym_spawn] = ACTIONS(1093), + [anon_sym_json_DOTdecode] = ACTIONS(1095), + [anon_sym_LBRACK2] = ACTIONS(1097), + [anon_sym_TILDE] = ACTIONS(1083), + [anon_sym_CARET] = ACTIONS(1083), + [anon_sym_AMP] = ACTIONS(3364), + [anon_sym_LT_DASH] = ACTIONS(1101), + [sym_none] = ACTIONS(1103), + [sym_true] = ACTIONS(1103), + [sym_false] = ACTIONS(1103), + [sym_nil] = ACTIONS(1103), + [anon_sym_if] = ACTIONS(1105), + [anon_sym_DOLLARif] = ACTIONS(1109), + [anon_sym_match] = ACTIONS(1111), + [anon_sym_select] = ACTIONS(3138), + [anon_sym_lock] = ACTIONS(3140), + [anon_sym_rlock] = ACTIONS(3140), + [anon_sym_unsafe] = ACTIONS(1117), + [anon_sym_sql] = ACTIONS(1119), + [sym_int_literal] = ACTIONS(1103), + [sym_float_literal] = ACTIONS(1121), + [sym_rune_literal] = ACTIONS(1121), + [sym_pseudo_compile_time_identifier] = ACTIONS(1123), [anon_sym_shared] = ACTIONS(83), [anon_sym_map_LBRACK] = ACTIONS(85), [anon_sym_chan] = ACTIONS(87), [anon_sym_thread] = ACTIONS(89), [anon_sym_atomic] = ACTIONS(91), - [sym___double_quote] = ACTIONS(2717), - [sym___single_quote] = ACTIONS(2719), - [sym___c_double_quote] = ACTIONS(2721), - [sym___c_single_quote] = ACTIONS(2723), - [sym___r_double_quote] = ACTIONS(2725), - [sym___r_single_quote] = ACTIONS(2727), + [sym___double_quote] = ACTIONS(1125), + [sym___single_quote] = ACTIONS(1127), + [sym___c_double_quote] = ACTIONS(1129), + [sym___c_single_quote] = ACTIONS(1131), + [sym___r_double_quote] = ACTIONS(1133), + [sym___r_single_quote] = ACTIONS(1135), }, [835] = { [sym_line_comment] = STATE(835), [sym_block_comment] = STATE(835), - [sym__expression] = STATE(2601), - [sym__expression_without_blocks] = STATE(2300), - [sym__expression_with_blocks] = STATE(2300), - [sym_inc_expression] = STATE(2307), - [sym_dec_expression] = STATE(2307), - [sym_or_block_expression] = STATE(2307), - [sym_option_propagation_expression] = STATE(2307), - [sym_result_propagation_expression] = STATE(2307), - [sym_anon_struct_value_expression] = STATE(2380), - [sym_go_expression] = STATE(2307), - [sym_spawn_expression] = STATE(2307), - [sym_parenthesized_expression] = STATE(2307), - [sym_call_expression] = STATE(2307), - [sym_type_initializer] = STATE(2380), - [sym_function_literal] = STATE(2307), - [sym_reference_expression] = STATE(2311), - [sym_type_reference_expression] = STATE(3541), - [sym_unary_expression] = STATE(2307), - [sym_receive_expression] = STATE(2307), - [sym_binary_expression] = STATE(2307), - [sym_as_type_cast_expression] = STATE(2307), - [sym__max_group] = STATE(2307), - [sym_literal] = STATE(2292), - [sym_map_init_expression] = STATE(2380), - [sym_array_creation] = STATE(2307), - [sym_fixed_array_creation] = STATE(2307), - [sym_selector_expression] = STATE(2307), - [sym_index_expression] = STATE(2307), - [sym_slice_expression] = STATE(2307), - [sym_if_expression] = STATE(2380), - [sym_compile_time_if_expression] = STATE(2380), - [sym_is_expression] = STATE(2307), - [sym_in_expression] = STATE(2307), - [sym_enum_fetch] = STATE(2307), - [sym_match_expression] = STATE(2380), - [sym_select_expression] = STATE(2380), - [sym_lock_expression] = STATE(2380), - [sym_unsafe_expression] = STATE(2380), - [sym_sql_expression] = STATE(2380), - [sym_c_string_literal] = STATE(2308), - [sym_raw_string_literal] = STATE(2308), - [sym_interpreted_string_literal] = STATE(2308), - [sym_mutability_modifiers] = STATE(939), - [sym_plain_type] = STATE(4297), - [sym__plain_type_without_special] = STATE(2302), - [sym_anon_struct_type] = STATE(2303), - [sym_multi_return_type] = STATE(2302), - [sym_result_type] = STATE(2302), - [sym_option_type] = STATE(2302), - [sym_qualified_type] = STATE(3541), - [sym_fixed_array_type] = STATE(2303), - [sym_array_type] = STATE(2303), - [sym_pointer_type] = STATE(2303), - [sym_wrong_pointer_type] = STATE(2303), - [sym_map_type] = STATE(2303), - [sym_channel_type] = STATE(2303), - [sym_shared_type] = STATE(2303), - [sym_thread_type] = STATE(2303), - [sym_atomic_type] = STATE(2303), - [sym_generic_type] = STATE(2303), - [sym_function_type] = STATE(2303), - [sym_identifier] = ACTIONS(1807), + [sym__expression] = STATE(2432), + [sym__expression_without_blocks] = STATE(2638), + [sym__expression_with_blocks] = STATE(2638), + [sym_inc_expression] = STATE(2765), + [sym_dec_expression] = STATE(2765), + [sym_or_block_expression] = STATE(2765), + [sym_option_propagation_expression] = STATE(2765), + [sym_result_propagation_expression] = STATE(2765), + [sym_anon_struct_value_expression] = STATE(2637), + [sym_go_expression] = STATE(2765), + [sym_spawn_expression] = STATE(2765), + [sym_parenthesized_expression] = STATE(2765), + [sym_call_expression] = STATE(2765), + [sym_type_initializer] = STATE(2637), + [sym_function_literal] = STATE(2765), + [sym_reference_expression] = STATE(2764), + [sym_type_reference_expression] = STATE(3460), + [sym_unary_expression] = STATE(2765), + [sym_receive_expression] = STATE(2765), + [sym_binary_expression] = STATE(2765), + [sym_as_type_cast_expression] = STATE(2765), + [sym__max_group] = STATE(2765), + [sym_literal] = STATE(2771), + [sym_map_init_expression] = STATE(2637), + [sym_array_creation] = STATE(2765), + [sym_fixed_array_creation] = STATE(2765), + [sym_selector_expression] = STATE(2765), + [sym_index_expression] = STATE(2765), + [sym_slice_expression] = STATE(2765), + [sym_if_expression] = STATE(2637), + [sym_compile_time_if_expression] = STATE(2637), + [sym_is_expression] = STATE(2765), + [sym_in_expression] = STATE(2765), + [sym_enum_fetch] = STATE(2765), + [sym_match_expression] = STATE(2637), + [sym_select_expression] = STATE(2637), + [sym_lock_expression] = STATE(2637), + [sym_unsafe_expression] = STATE(2637), + [sym_sql_expression] = STATE(2637), + [sym_c_string_literal] = STATE(2762), + [sym_raw_string_literal] = STATE(2762), + [sym_interpreted_string_literal] = STATE(2762), + [sym_mutability_modifiers] = STATE(822), + [sym_plain_type] = STATE(4011), + [sym__plain_type_without_special] = STATE(2360), + [sym_anon_struct_type] = STATE(2362), + [sym_multi_return_type] = STATE(2360), + [sym_result_type] = STATE(2360), + [sym_option_type] = STATE(2360), + [sym_qualified_type] = STATE(3460), + [sym_fixed_array_type] = STATE(2362), + [sym_array_type] = STATE(2362), + [sym_pointer_type] = STATE(2362), + [sym_wrong_pointer_type] = STATE(2362), + [sym_map_type] = STATE(2362), + [sym_channel_type] = STATE(2362), + [sym_shared_type] = STATE(2362), + [sym_thread_type] = STATE(2362), + [sym_atomic_type] = STATE(2362), + [sym_generic_type] = STATE(2362), + [sym_function_type] = STATE(2362), + [sym_identifier] = ACTIONS(1815), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1428), - [anon_sym_LBRACE] = ACTIONS(1430), - [anon_sym_LPAREN] = ACTIONS(1432), - [anon_sym_fn] = ACTIONS(1434), - [anon_sym_PLUS] = ACTIONS(3064), - [anon_sym_DASH] = ACTIONS(3064), - [anon_sym_STAR] = ACTIONS(3066), - [anon_sym_struct] = ACTIONS(1440), + [anon_sym_DOT] = ACTIONS(1073), + [anon_sym_LBRACE] = ACTIONS(1075), + [anon_sym_LPAREN] = ACTIONS(1079), + [anon_sym_fn] = ACTIONS(1081), + [anon_sym_PLUS] = ACTIONS(1083), + [anon_sym_DASH] = ACTIONS(1083), + [anon_sym_STAR] = ACTIONS(3360), + [anon_sym_struct] = ACTIONS(1087), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(3068), - [anon_sym_go] = ACTIONS(3070), - [anon_sym_spawn] = ACTIONS(3072), - [anon_sym_json_DOTdecode] = ACTIONS(1448), - [anon_sym_LBRACK2] = ACTIONS(1821), - [anon_sym_TILDE] = ACTIONS(3064), - [anon_sym_CARET] = ACTIONS(3064), - [anon_sym_AMP] = ACTIONS(3074), - [anon_sym_LT_DASH] = ACTIONS(3076), - [sym_none] = ACTIONS(1456), - [sym_true] = ACTIONS(1456), - [sym_false] = ACTIONS(1456), - [sym_nil] = ACTIONS(1456), - [anon_sym_if] = ACTIONS(1827), - [anon_sym_DOLLARif] = ACTIONS(1460), - [anon_sym_match] = ACTIONS(1462), - [anon_sym_select] = ACTIONS(3078), - [anon_sym_lock] = ACTIONS(3080), - [anon_sym_rlock] = ACTIONS(3080), - [anon_sym_unsafe] = ACTIONS(1833), - [anon_sym_sql] = ACTIONS(1470), - [sym_int_literal] = ACTIONS(1456), - [sym_float_literal] = ACTIONS(1472), - [sym_rune_literal] = ACTIONS(1472), - [sym_pseudo_compile_time_identifier] = ACTIONS(1474), + [anon_sym_BANG] = ACTIONS(3362), + [anon_sym_go] = ACTIONS(1091), + [anon_sym_spawn] = ACTIONS(1093), + [anon_sym_json_DOTdecode] = ACTIONS(1095), + [anon_sym_LBRACK2] = ACTIONS(1097), + [anon_sym_TILDE] = ACTIONS(1083), + [anon_sym_CARET] = ACTIONS(1083), + [anon_sym_AMP] = ACTIONS(3364), + [anon_sym_LT_DASH] = ACTIONS(1101), + [sym_none] = ACTIONS(1103), + [sym_true] = ACTIONS(1103), + [sym_false] = ACTIONS(1103), + [sym_nil] = ACTIONS(1103), + [anon_sym_if] = ACTIONS(1105), + [anon_sym_DOLLARif] = ACTIONS(1109), + [anon_sym_match] = ACTIONS(1111), + [anon_sym_select] = ACTIONS(3138), + [anon_sym_lock] = ACTIONS(3140), + [anon_sym_rlock] = ACTIONS(3140), + [anon_sym_unsafe] = ACTIONS(1117), + [anon_sym_sql] = ACTIONS(1119), + [sym_int_literal] = ACTIONS(1103), + [sym_float_literal] = ACTIONS(1121), + [sym_rune_literal] = ACTIONS(1121), + [sym_pseudo_compile_time_identifier] = ACTIONS(1123), [anon_sym_shared] = ACTIONS(83), [anon_sym_map_LBRACK] = ACTIONS(85), [anon_sym_chan] = ACTIONS(87), [anon_sym_thread] = ACTIONS(89), [anon_sym_atomic] = ACTIONS(91), - [sym___double_quote] = ACTIONS(1478), - [sym___single_quote] = ACTIONS(1480), - [sym___c_double_quote] = ACTIONS(1482), - [sym___c_single_quote] = ACTIONS(1484), - [sym___r_double_quote] = ACTIONS(1486), - [sym___r_single_quote] = ACTIONS(1488), + [sym___double_quote] = ACTIONS(1125), + [sym___single_quote] = ACTIONS(1127), + [sym___c_double_quote] = ACTIONS(1129), + [sym___c_single_quote] = ACTIONS(1131), + [sym___r_double_quote] = ACTIONS(1133), + [sym___r_single_quote] = ACTIONS(1135), }, [836] = { [sym_line_comment] = STATE(836), [sym_block_comment] = STATE(836), - [sym__expression] = STATE(2264), - [sym__expression_without_blocks] = STATE(2300), - [sym__expression_with_blocks] = STATE(2300), - [sym_inc_expression] = STATE(2307), - [sym_dec_expression] = STATE(2307), - [sym_or_block_expression] = STATE(2307), - [sym_option_propagation_expression] = STATE(2307), - [sym_result_propagation_expression] = STATE(2307), - [sym_anon_struct_value_expression] = STATE(2380), - [sym_go_expression] = STATE(2307), - [sym_spawn_expression] = STATE(2307), - [sym_parenthesized_expression] = STATE(2307), - [sym_call_expression] = STATE(2307), - [sym_type_initializer] = STATE(2380), - [sym_function_literal] = STATE(2307), - [sym_reference_expression] = STATE(2311), - [sym_type_reference_expression] = STATE(3541), - [sym_unary_expression] = STATE(2307), - [sym_receive_expression] = STATE(2307), - [sym_binary_expression] = STATE(2307), - [sym_as_type_cast_expression] = STATE(2307), - [sym__max_group] = STATE(2307), - [sym_literal] = STATE(2292), - [sym_map_init_expression] = STATE(2380), - [sym_array_creation] = STATE(2307), - [sym_fixed_array_creation] = STATE(2307), - [sym_selector_expression] = STATE(2307), - [sym_index_expression] = STATE(2307), - [sym_slice_expression] = STATE(2307), - [sym_if_expression] = STATE(2380), - [sym_compile_time_if_expression] = STATE(2380), - [sym_is_expression] = STATE(2307), - [sym_in_expression] = STATE(2307), - [sym_enum_fetch] = STATE(2307), - [sym_match_expression] = STATE(2380), - [sym_select_expression] = STATE(2380), - [sym_lock_expression] = STATE(2380), - [sym_unsafe_expression] = STATE(2380), - [sym_sql_expression] = STATE(2380), - [sym_c_string_literal] = STATE(2308), - [sym_raw_string_literal] = STATE(2308), - [sym_interpreted_string_literal] = STATE(2308), - [sym_mutability_modifiers] = STATE(632), - [sym_plain_type] = STATE(4297), - [sym__plain_type_without_special] = STATE(2302), - [sym_anon_struct_type] = STATE(2303), - [sym_multi_return_type] = STATE(2302), - [sym_result_type] = STATE(2302), - [sym_option_type] = STATE(2302), - [sym_qualified_type] = STATE(3541), - [sym_fixed_array_type] = STATE(2303), - [sym_array_type] = STATE(2303), - [sym_pointer_type] = STATE(2303), - [sym_wrong_pointer_type] = STATE(2303), - [sym_map_type] = STATE(2303), - [sym_channel_type] = STATE(2303), - [sym_shared_type] = STATE(2303), - [sym_thread_type] = STATE(2303), - [sym_atomic_type] = STATE(2303), - [sym_generic_type] = STATE(2303), - [sym_function_type] = STATE(2303), - [sym_identifier] = ACTIONS(1807), + [sym__expression] = STATE(963), + [sym__expression_without_blocks] = STATE(1086), + [sym__expression_with_blocks] = STATE(1086), + [sym_inc_expression] = STATE(1088), + [sym_dec_expression] = STATE(1088), + [sym_or_block_expression] = STATE(1088), + [sym_option_propagation_expression] = STATE(1088), + [sym_result_propagation_expression] = STATE(1088), + [sym_anon_struct_value_expression] = STATE(1025), + [sym_go_expression] = STATE(1088), + [sym_spawn_expression] = STATE(1088), + [sym_parenthesized_expression] = STATE(1088), + [sym_call_expression] = STATE(1088), + [sym_type_initializer] = STATE(1025), + [sym_function_literal] = STATE(1088), + [sym_reference_expression] = STATE(1024), + [sym_type_reference_expression] = STATE(3460), + [sym_unary_expression] = STATE(1088), + [sym_receive_expression] = STATE(1088), + [sym_binary_expression] = STATE(1088), + [sym_as_type_cast_expression] = STATE(1088), + [sym__max_group] = STATE(1088), + [sym_literal] = STATE(1078), + [sym_map_init_expression] = STATE(1025), + [sym_array_creation] = STATE(1088), + [sym_fixed_array_creation] = STATE(1088), + [sym_selector_expression] = STATE(1088), + [sym_index_expression] = STATE(1088), + [sym_slice_expression] = STATE(1088), + [sym_if_expression] = STATE(1025), + [sym_compile_time_if_expression] = STATE(1025), + [sym_is_expression] = STATE(1088), + [sym_in_expression] = STATE(1088), + [sym_enum_fetch] = STATE(1088), + [sym_match_expression] = STATE(1025), + [sym_select_expression] = STATE(1025), + [sym_lock_expression] = STATE(1025), + [sym_unsafe_expression] = STATE(1025), + [sym_sql_expression] = STATE(1025), + [sym_c_string_literal] = STATE(993), + [sym_raw_string_literal] = STATE(993), + [sym_interpreted_string_literal] = STATE(993), + [sym_mutability_modifiers] = STATE(618), + [sym_plain_type] = STATE(4090), + [sym__plain_type_without_special] = STATE(2360), + [sym_anon_struct_type] = STATE(2362), + [sym_multi_return_type] = STATE(2360), + [sym_result_type] = STATE(2360), + [sym_option_type] = STATE(2360), + [sym_qualified_type] = STATE(3460), + [sym_fixed_array_type] = STATE(2362), + [sym_array_type] = STATE(2362), + [sym_pointer_type] = STATE(2362), + [sym_wrong_pointer_type] = STATE(2362), + [sym_map_type] = STATE(2362), + [sym_channel_type] = STATE(2362), + [sym_shared_type] = STATE(2362), + [sym_thread_type] = STATE(2362), + [sym_atomic_type] = STATE(2362), + [sym_generic_type] = STATE(2362), + [sym_function_type] = STATE(2362), + [sym_identifier] = ACTIONS(493), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1428), - [anon_sym_LBRACE] = ACTIONS(1430), - [anon_sym_LPAREN] = ACTIONS(1432), - [anon_sym_fn] = ACTIONS(1434), - [anon_sym_PLUS] = ACTIONS(1811), - [anon_sym_DASH] = ACTIONS(1811), - [anon_sym_STAR] = ACTIONS(1813), - [anon_sym_struct] = ACTIONS(1440), + [anon_sym_DOT] = ACTIONS(501), + [anon_sym_LBRACE] = ACTIONS(2235), + [anon_sym_LPAREN] = ACTIONS(2237), + [anon_sym_fn] = ACTIONS(507), + [anon_sym_PLUS] = ACTIONS(2239), + [anon_sym_DASH] = ACTIONS(2239), + [anon_sym_STAR] = ACTIONS(2241), + [anon_sym_struct] = ACTIONS(513), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(1815), - [anon_sym_go] = ACTIONS(1817), - [anon_sym_spawn] = ACTIONS(1819), - [anon_sym_json_DOTdecode] = ACTIONS(1448), - [anon_sym_LBRACK2] = ACTIONS(1821), - [anon_sym_TILDE] = ACTIONS(1811), - [anon_sym_CARET] = ACTIONS(1811), - [anon_sym_AMP] = ACTIONS(1823), - [anon_sym_LT_DASH] = ACTIONS(1825), - [sym_none] = ACTIONS(1456), - [sym_true] = ACTIONS(1456), - [sym_false] = ACTIONS(1456), - [sym_nil] = ACTIONS(1456), - [anon_sym_if] = ACTIONS(1827), - [anon_sym_DOLLARif] = ACTIONS(1460), - [anon_sym_match] = ACTIONS(1462), - [anon_sym_select] = ACTIONS(1829), - [anon_sym_lock] = ACTIONS(1831), - [anon_sym_rlock] = ACTIONS(1831), - [anon_sym_unsafe] = ACTIONS(1833), - [anon_sym_sql] = ACTIONS(1470), - [sym_int_literal] = ACTIONS(1456), - [sym_float_literal] = ACTIONS(1472), - [sym_rune_literal] = ACTIONS(1472), - [sym_pseudo_compile_time_identifier] = ACTIONS(1474), + [anon_sym_BANG] = ACTIONS(2243), + [anon_sym_go] = ACTIONS(519), + [anon_sym_spawn] = ACTIONS(521), + [anon_sym_json_DOTdecode] = ACTIONS(2245), + [anon_sym_LBRACK2] = ACTIONS(2247), + [anon_sym_TILDE] = ACTIONS(2239), + [anon_sym_CARET] = ACTIONS(2239), + [anon_sym_AMP] = ACTIONS(2249), + [anon_sym_LT_DASH] = ACTIONS(2251), + [sym_none] = ACTIONS(531), + [sym_true] = ACTIONS(531), + [sym_false] = ACTIONS(531), + [sym_nil] = ACTIONS(531), + [anon_sym_if] = ACTIONS(533), + [anon_sym_DOLLARif] = ACTIONS(535), + [anon_sym_match] = ACTIONS(537), + [anon_sym_select] = ACTIONS(539), + [anon_sym_lock] = ACTIONS(541), + [anon_sym_rlock] = ACTIONS(541), + [anon_sym_unsafe] = ACTIONS(543), + [anon_sym_sql] = ACTIONS(545), + [sym_int_literal] = ACTIONS(531), + [sym_float_literal] = ACTIONS(2253), + [sym_rune_literal] = ACTIONS(2253), + [sym_pseudo_compile_time_identifier] = ACTIONS(547), [anon_sym_shared] = ACTIONS(83), [anon_sym_map_LBRACK] = ACTIONS(85), [anon_sym_chan] = ACTIONS(87), [anon_sym_thread] = ACTIONS(89), [anon_sym_atomic] = ACTIONS(91), - [sym___double_quote] = ACTIONS(1478), - [sym___single_quote] = ACTIONS(1480), - [sym___c_double_quote] = ACTIONS(1482), - [sym___c_single_quote] = ACTIONS(1484), - [sym___r_double_quote] = ACTIONS(1486), - [sym___r_single_quote] = ACTIONS(1488), + [sym___double_quote] = ACTIONS(2255), + [sym___single_quote] = ACTIONS(2257), + [sym___c_double_quote] = ACTIONS(2259), + [sym___c_single_quote] = ACTIONS(2261), + [sym___r_double_quote] = ACTIONS(2263), + [sym___r_single_quote] = ACTIONS(2265), }, [837] = { [sym_line_comment] = STATE(837), [sym_block_comment] = STATE(837), - [sym__expression] = STATE(2287), - [sym__expression_without_blocks] = STATE(2489), - [sym__expression_with_blocks] = STATE(2489), - [sym_inc_expression] = STATE(2479), - [sym_dec_expression] = STATE(2479), - [sym_or_block_expression] = STATE(2479), - [sym_option_propagation_expression] = STATE(2479), - [sym_result_propagation_expression] = STATE(2479), - [sym_anon_struct_value_expression] = STATE(2491), - [sym_go_expression] = STATE(2479), - [sym_spawn_expression] = STATE(2479), - [sym_parenthesized_expression] = STATE(2479), - [sym_call_expression] = STATE(2479), - [sym_type_initializer] = STATE(2491), - [sym_function_literal] = STATE(2479), - [sym_reference_expression] = STATE(2542), - [sym_type_reference_expression] = STATE(3541), - [sym_unary_expression] = STATE(2479), - [sym_receive_expression] = STATE(2479), - [sym_binary_expression] = STATE(2479), - [sym_as_type_cast_expression] = STATE(2479), - [sym__max_group] = STATE(2479), - [sym_literal] = STATE(2454), - [sym_map_init_expression] = STATE(2491), - [sym_array_creation] = STATE(2479), - [sym_fixed_array_creation] = STATE(2479), - [sym_selector_expression] = STATE(2479), - [sym_index_expression] = STATE(2479), - [sym_slice_expression] = STATE(2479), - [sym_if_expression] = STATE(2491), - [sym_compile_time_if_expression] = STATE(2491), - [sym_is_expression] = STATE(2479), - [sym_in_expression] = STATE(2479), - [sym_enum_fetch] = STATE(2479), - [sym_match_expression] = STATE(2491), - [sym_select_expression] = STATE(2491), - [sym_lock_expression] = STATE(2491), - [sym_unsafe_expression] = STATE(2491), - [sym_sql_expression] = STATE(2491), - [sym_c_string_literal] = STATE(2469), - [sym_raw_string_literal] = STATE(2469), - [sym_interpreted_string_literal] = STATE(2469), - [sym_mutability_modifiers] = STATE(640), - [sym_plain_type] = STATE(4255), - [sym__plain_type_without_special] = STATE(2302), - [sym_anon_struct_type] = STATE(2303), - [sym_multi_return_type] = STATE(2302), - [sym_result_type] = STATE(2302), - [sym_option_type] = STATE(2302), - [sym_qualified_type] = STATE(3541), - [sym_fixed_array_type] = STATE(2303), - [sym_array_type] = STATE(2303), - [sym_pointer_type] = STATE(2303), - [sym_wrong_pointer_type] = STATE(2303), - [sym_map_type] = STATE(2303), - [sym_channel_type] = STATE(2303), - [sym_shared_type] = STATE(2303), - [sym_thread_type] = STATE(2303), - [sym_atomic_type] = STATE(2303), - [sym_generic_type] = STATE(2303), - [sym_function_type] = STATE(2303), - [sym_identifier] = ACTIONS(1695), + [sym__expression] = STATE(957), + [sym__expression_without_blocks] = STATE(1086), + [sym__expression_with_blocks] = STATE(1086), + [sym_inc_expression] = STATE(1088), + [sym_dec_expression] = STATE(1088), + [sym_or_block_expression] = STATE(1088), + [sym_option_propagation_expression] = STATE(1088), + [sym_result_propagation_expression] = STATE(1088), + [sym_anon_struct_value_expression] = STATE(1025), + [sym_go_expression] = STATE(1088), + [sym_spawn_expression] = STATE(1088), + [sym_parenthesized_expression] = STATE(1088), + [sym_call_expression] = STATE(1088), + [sym_type_initializer] = STATE(1025), + [sym_function_literal] = STATE(1088), + [sym_reference_expression] = STATE(1024), + [sym_type_reference_expression] = STATE(3460), + [sym_unary_expression] = STATE(1088), + [sym_receive_expression] = STATE(1088), + [sym_binary_expression] = STATE(1088), + [sym_as_type_cast_expression] = STATE(1088), + [sym__max_group] = STATE(1088), + [sym_literal] = STATE(1078), + [sym_map_init_expression] = STATE(1025), + [sym_array_creation] = STATE(1088), + [sym_fixed_array_creation] = STATE(1088), + [sym_selector_expression] = STATE(1088), + [sym_index_expression] = STATE(1088), + [sym_slice_expression] = STATE(1088), + [sym_if_expression] = STATE(1025), + [sym_compile_time_if_expression] = STATE(1025), + [sym_is_expression] = STATE(1088), + [sym_in_expression] = STATE(1088), + [sym_enum_fetch] = STATE(1088), + [sym_match_expression] = STATE(1025), + [sym_select_expression] = STATE(1025), + [sym_lock_expression] = STATE(1025), + [sym_unsafe_expression] = STATE(1025), + [sym_sql_expression] = STATE(1025), + [sym_c_string_literal] = STATE(993), + [sym_raw_string_literal] = STATE(993), + [sym_interpreted_string_literal] = STATE(993), + [sym_mutability_modifiers] = STATE(618), + [sym_plain_type] = STATE(4090), + [sym__plain_type_without_special] = STATE(2360), + [sym_anon_struct_type] = STATE(2362), + [sym_multi_return_type] = STATE(2360), + [sym_result_type] = STATE(2360), + [sym_option_type] = STATE(2360), + [sym_qualified_type] = STATE(3460), + [sym_fixed_array_type] = STATE(2362), + [sym_array_type] = STATE(2362), + [sym_pointer_type] = STATE(2362), + [sym_wrong_pointer_type] = STATE(2362), + [sym_map_type] = STATE(2362), + [sym_channel_type] = STATE(2362), + [sym_shared_type] = STATE(2362), + [sym_thread_type] = STATE(2362), + [sym_atomic_type] = STATE(2362), + [sym_generic_type] = STATE(2362), + [sym_function_type] = STATE(2362), + [sym_identifier] = ACTIONS(493), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1697), - [anon_sym_LBRACE] = ACTIONS(2697), - [anon_sym_LPAREN] = ACTIONS(2699), - [anon_sym_fn] = ACTIONS(1703), - [anon_sym_PLUS] = ACTIONS(2701), - [anon_sym_DASH] = ACTIONS(2701), - [anon_sym_STAR] = ACTIONS(2703), - [anon_sym_struct] = ACTIONS(1709), + [anon_sym_DOT] = ACTIONS(501), + [anon_sym_LBRACE] = ACTIONS(2235), + [anon_sym_LPAREN] = ACTIONS(2237), + [anon_sym_fn] = ACTIONS(507), + [anon_sym_PLUS] = ACTIONS(2239), + [anon_sym_DASH] = ACTIONS(2239), + [anon_sym_STAR] = ACTIONS(2241), + [anon_sym_struct] = ACTIONS(513), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(2705), - [anon_sym_go] = ACTIONS(1713), - [anon_sym_spawn] = ACTIONS(1715), - [anon_sym_json_DOTdecode] = ACTIONS(2707), - [anon_sym_LBRACK2] = ACTIONS(2709), - [anon_sym_TILDE] = ACTIONS(2701), - [anon_sym_CARET] = ACTIONS(2701), - [anon_sym_AMP] = ACTIONS(2711), - [anon_sym_LT_DASH] = ACTIONS(2713), - [sym_none] = ACTIONS(1725), - [sym_true] = ACTIONS(1725), - [sym_false] = ACTIONS(1725), - [sym_nil] = ACTIONS(1725), - [anon_sym_if] = ACTIONS(1727), - [anon_sym_DOLLARif] = ACTIONS(1729), - [anon_sym_match] = ACTIONS(1731), - [anon_sym_select] = ACTIONS(1733), - [anon_sym_lock] = ACTIONS(1735), - [anon_sym_rlock] = ACTIONS(1735), - [anon_sym_unsafe] = ACTIONS(1737), - [anon_sym_sql] = ACTIONS(1739), - [sym_int_literal] = ACTIONS(1725), - [sym_float_literal] = ACTIONS(2715), - [sym_rune_literal] = ACTIONS(2715), - [sym_pseudo_compile_time_identifier] = ACTIONS(1741), + [anon_sym_BANG] = ACTIONS(2243), + [anon_sym_go] = ACTIONS(519), + [anon_sym_spawn] = ACTIONS(521), + [anon_sym_json_DOTdecode] = ACTIONS(2245), + [anon_sym_LBRACK2] = ACTIONS(2247), + [anon_sym_TILDE] = ACTIONS(2239), + [anon_sym_CARET] = ACTIONS(2239), + [anon_sym_AMP] = ACTIONS(2249), + [anon_sym_LT_DASH] = ACTIONS(2251), + [sym_none] = ACTIONS(531), + [sym_true] = ACTIONS(531), + [sym_false] = ACTIONS(531), + [sym_nil] = ACTIONS(531), + [anon_sym_if] = ACTIONS(533), + [anon_sym_DOLLARif] = ACTIONS(535), + [anon_sym_match] = ACTIONS(537), + [anon_sym_select] = ACTIONS(539), + [anon_sym_lock] = ACTIONS(541), + [anon_sym_rlock] = ACTIONS(541), + [anon_sym_unsafe] = ACTIONS(543), + [anon_sym_sql] = ACTIONS(545), + [sym_int_literal] = ACTIONS(531), + [sym_float_literal] = ACTIONS(2253), + [sym_rune_literal] = ACTIONS(2253), + [sym_pseudo_compile_time_identifier] = ACTIONS(547), [anon_sym_shared] = ACTIONS(83), [anon_sym_map_LBRACK] = ACTIONS(85), [anon_sym_chan] = ACTIONS(87), [anon_sym_thread] = ACTIONS(89), [anon_sym_atomic] = ACTIONS(91), - [sym___double_quote] = ACTIONS(2717), - [sym___single_quote] = ACTIONS(2719), - [sym___c_double_quote] = ACTIONS(2721), - [sym___c_single_quote] = ACTIONS(2723), - [sym___r_double_quote] = ACTIONS(2725), - [sym___r_single_quote] = ACTIONS(2727), + [sym___double_quote] = ACTIONS(2255), + [sym___single_quote] = ACTIONS(2257), + [sym___c_double_quote] = ACTIONS(2259), + [sym___c_single_quote] = ACTIONS(2261), + [sym___r_double_quote] = ACTIONS(2263), + [sym___r_single_quote] = ACTIONS(2265), }, [838] = { [sym_line_comment] = STATE(838), [sym_block_comment] = STATE(838), - [sym__expression] = STATE(2263), - [sym__expression_without_blocks] = STATE(2300), - [sym__expression_with_blocks] = STATE(2300), - [sym_inc_expression] = STATE(2307), - [sym_dec_expression] = STATE(2307), - [sym_or_block_expression] = STATE(2307), - [sym_option_propagation_expression] = STATE(2307), - [sym_result_propagation_expression] = STATE(2307), - [sym_anon_struct_value_expression] = STATE(2380), - [sym_go_expression] = STATE(2307), - [sym_spawn_expression] = STATE(2307), - [sym_parenthesized_expression] = STATE(2307), - [sym_call_expression] = STATE(2307), - [sym_type_initializer] = STATE(2380), - [sym_function_literal] = STATE(2307), - [sym_reference_expression] = STATE(2311), - [sym_type_reference_expression] = STATE(3541), - [sym_unary_expression] = STATE(2307), - [sym_receive_expression] = STATE(2307), - [sym_binary_expression] = STATE(2307), - [sym_as_type_cast_expression] = STATE(2307), - [sym__max_group] = STATE(2307), - [sym_literal] = STATE(2292), - [sym_map_init_expression] = STATE(2380), - [sym_array_creation] = STATE(2307), - [sym_fixed_array_creation] = STATE(2307), - [sym_selector_expression] = STATE(2307), - [sym_index_expression] = STATE(2307), - [sym_slice_expression] = STATE(2307), - [sym_if_expression] = STATE(2380), - [sym_compile_time_if_expression] = STATE(2380), - [sym_is_expression] = STATE(2307), - [sym_in_expression] = STATE(2307), - [sym_enum_fetch] = STATE(2307), - [sym_match_expression] = STATE(2380), - [sym_select_expression] = STATE(2380), - [sym_lock_expression] = STATE(2380), - [sym_unsafe_expression] = STATE(2380), - [sym_sql_expression] = STATE(2380), - [sym_c_string_literal] = STATE(2308), - [sym_raw_string_literal] = STATE(2308), - [sym_interpreted_string_literal] = STATE(2308), - [sym_mutability_modifiers] = STATE(632), - [sym_plain_type] = STATE(3566), - [sym__plain_type_without_special] = STATE(2302), - [sym_anon_struct_type] = STATE(2303), - [sym_multi_return_type] = STATE(2302), - [sym_result_type] = STATE(2302), - [sym_option_type] = STATE(2302), - [sym_qualified_type] = STATE(3541), - [sym_fixed_array_type] = STATE(2303), - [sym_array_type] = STATE(2303), - [sym_pointer_type] = STATE(2303), - [sym_wrong_pointer_type] = STATE(2303), - [sym_map_type] = STATE(2303), - [sym_channel_type] = STATE(2303), - [sym_shared_type] = STATE(2303), - [sym_thread_type] = STATE(2303), - [sym_atomic_type] = STATE(2303), - [sym_generic_type] = STATE(2303), - [sym_function_type] = STATE(2303), - [sym_identifier] = ACTIONS(1807), + [sym__expression] = STATE(956), + [sym__expression_without_blocks] = STATE(1086), + [sym__expression_with_blocks] = STATE(1086), + [sym_inc_expression] = STATE(1088), + [sym_dec_expression] = STATE(1088), + [sym_or_block_expression] = STATE(1088), + [sym_option_propagation_expression] = STATE(1088), + [sym_result_propagation_expression] = STATE(1088), + [sym_anon_struct_value_expression] = STATE(1025), + [sym_go_expression] = STATE(1088), + [sym_spawn_expression] = STATE(1088), + [sym_parenthesized_expression] = STATE(1088), + [sym_call_expression] = STATE(1088), + [sym_type_initializer] = STATE(1025), + [sym_function_literal] = STATE(1088), + [sym_reference_expression] = STATE(1024), + [sym_type_reference_expression] = STATE(3460), + [sym_unary_expression] = STATE(1088), + [sym_receive_expression] = STATE(1088), + [sym_binary_expression] = STATE(1088), + [sym_as_type_cast_expression] = STATE(1088), + [sym__max_group] = STATE(1088), + [sym_literal] = STATE(1078), + [sym_map_init_expression] = STATE(1025), + [sym_array_creation] = STATE(1088), + [sym_fixed_array_creation] = STATE(1088), + [sym_selector_expression] = STATE(1088), + [sym_index_expression] = STATE(1088), + [sym_slice_expression] = STATE(1088), + [sym_if_expression] = STATE(1025), + [sym_compile_time_if_expression] = STATE(1025), + [sym_is_expression] = STATE(1088), + [sym_in_expression] = STATE(1088), + [sym_enum_fetch] = STATE(1088), + [sym_match_expression] = STATE(1025), + [sym_select_expression] = STATE(1025), + [sym_lock_expression] = STATE(1025), + [sym_unsafe_expression] = STATE(1025), + [sym_sql_expression] = STATE(1025), + [sym_c_string_literal] = STATE(993), + [sym_raw_string_literal] = STATE(993), + [sym_interpreted_string_literal] = STATE(993), + [sym_mutability_modifiers] = STATE(618), + [sym_plain_type] = STATE(4090), + [sym__plain_type_without_special] = STATE(2360), + [sym_anon_struct_type] = STATE(2362), + [sym_multi_return_type] = STATE(2360), + [sym_result_type] = STATE(2360), + [sym_option_type] = STATE(2360), + [sym_qualified_type] = STATE(3460), + [sym_fixed_array_type] = STATE(2362), + [sym_array_type] = STATE(2362), + [sym_pointer_type] = STATE(2362), + [sym_wrong_pointer_type] = STATE(2362), + [sym_map_type] = STATE(2362), + [sym_channel_type] = STATE(2362), + [sym_shared_type] = STATE(2362), + [sym_thread_type] = STATE(2362), + [sym_atomic_type] = STATE(2362), + [sym_generic_type] = STATE(2362), + [sym_function_type] = STATE(2362), + [sym_identifier] = ACTIONS(493), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1428), - [anon_sym_LBRACE] = ACTIONS(1430), - [anon_sym_LPAREN] = ACTIONS(1432), - [anon_sym_fn] = ACTIONS(1434), - [anon_sym_PLUS] = ACTIONS(1811), - [anon_sym_DASH] = ACTIONS(1811), - [anon_sym_STAR] = ACTIONS(1813), - [anon_sym_struct] = ACTIONS(1440), + [anon_sym_DOT] = ACTIONS(501), + [anon_sym_LBRACE] = ACTIONS(2235), + [anon_sym_LPAREN] = ACTIONS(2237), + [anon_sym_fn] = ACTIONS(507), + [anon_sym_PLUS] = ACTIONS(2239), + [anon_sym_DASH] = ACTIONS(2239), + [anon_sym_STAR] = ACTIONS(2241), + [anon_sym_struct] = ACTIONS(513), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(1815), - [anon_sym_go] = ACTIONS(1817), - [anon_sym_spawn] = ACTIONS(1819), - [anon_sym_json_DOTdecode] = ACTIONS(1448), - [anon_sym_LBRACK2] = ACTIONS(1821), - [anon_sym_TILDE] = ACTIONS(1811), - [anon_sym_CARET] = ACTIONS(1811), - [anon_sym_AMP] = ACTIONS(1823), - [anon_sym_LT_DASH] = ACTIONS(1825), - [sym_none] = ACTIONS(1456), - [sym_true] = ACTIONS(1456), - [sym_false] = ACTIONS(1456), - [sym_nil] = ACTIONS(1456), - [anon_sym_if] = ACTIONS(1827), - [anon_sym_DOLLARif] = ACTIONS(1460), - [anon_sym_match] = ACTIONS(1462), - [anon_sym_select] = ACTIONS(1829), - [anon_sym_lock] = ACTIONS(1831), - [anon_sym_rlock] = ACTIONS(1831), - [anon_sym_unsafe] = ACTIONS(1833), - [anon_sym_sql] = ACTIONS(1470), - [sym_int_literal] = ACTIONS(1456), - [sym_float_literal] = ACTIONS(1472), - [sym_rune_literal] = ACTIONS(1472), - [sym_pseudo_compile_time_identifier] = ACTIONS(1474), + [anon_sym_BANG] = ACTIONS(2243), + [anon_sym_go] = ACTIONS(519), + [anon_sym_spawn] = ACTIONS(521), + [anon_sym_json_DOTdecode] = ACTIONS(2245), + [anon_sym_LBRACK2] = ACTIONS(2247), + [anon_sym_TILDE] = ACTIONS(2239), + [anon_sym_CARET] = ACTIONS(2239), + [anon_sym_AMP] = ACTIONS(2249), + [anon_sym_LT_DASH] = ACTIONS(2251), + [sym_none] = ACTIONS(531), + [sym_true] = ACTIONS(531), + [sym_false] = ACTIONS(531), + [sym_nil] = ACTIONS(531), + [anon_sym_if] = ACTIONS(533), + [anon_sym_DOLLARif] = ACTIONS(535), + [anon_sym_match] = ACTIONS(537), + [anon_sym_select] = ACTIONS(539), + [anon_sym_lock] = ACTIONS(541), + [anon_sym_rlock] = ACTIONS(541), + [anon_sym_unsafe] = ACTIONS(543), + [anon_sym_sql] = ACTIONS(545), + [sym_int_literal] = ACTIONS(531), + [sym_float_literal] = ACTIONS(2253), + [sym_rune_literal] = ACTIONS(2253), + [sym_pseudo_compile_time_identifier] = ACTIONS(547), [anon_sym_shared] = ACTIONS(83), [anon_sym_map_LBRACK] = ACTIONS(85), [anon_sym_chan] = ACTIONS(87), [anon_sym_thread] = ACTIONS(89), [anon_sym_atomic] = ACTIONS(91), - [sym___double_quote] = ACTIONS(1478), - [sym___single_quote] = ACTIONS(1480), - [sym___c_double_quote] = ACTIONS(1482), - [sym___c_single_quote] = ACTIONS(1484), - [sym___r_double_quote] = ACTIONS(1486), - [sym___r_single_quote] = ACTIONS(1488), + [sym___double_quote] = ACTIONS(2255), + [sym___single_quote] = ACTIONS(2257), + [sym___c_double_quote] = ACTIONS(2259), + [sym___c_single_quote] = ACTIONS(2261), + [sym___r_double_quote] = ACTIONS(2263), + [sym___r_single_quote] = ACTIONS(2265), }, [839] = { [sym_line_comment] = STATE(839), [sym_block_comment] = STATE(839), - [sym__expression] = STATE(2501), - [sym__expression_without_blocks] = STATE(2300), - [sym__expression_with_blocks] = STATE(2300), - [sym_inc_expression] = STATE(2307), - [sym_dec_expression] = STATE(2307), - [sym_or_block_expression] = STATE(2307), - [sym_option_propagation_expression] = STATE(2307), - [sym_result_propagation_expression] = STATE(2307), - [sym_anon_struct_value_expression] = STATE(2380), - [sym_go_expression] = STATE(2307), - [sym_spawn_expression] = STATE(2307), - [sym_parenthesized_expression] = STATE(2307), - [sym_call_expression] = STATE(2307), - [sym_type_initializer] = STATE(2380), - [sym_function_literal] = STATE(2307), - [sym_reference_expression] = STATE(2311), - [sym_type_reference_expression] = STATE(3541), - [sym_unary_expression] = STATE(2307), - [sym_receive_expression] = STATE(2307), - [sym_binary_expression] = STATE(2307), - [sym_as_type_cast_expression] = STATE(2307), - [sym__max_group] = STATE(2307), - [sym_literal] = STATE(2292), - [sym_map_init_expression] = STATE(2380), - [sym_array_creation] = STATE(2307), - [sym_fixed_array_creation] = STATE(2307), - [sym_selector_expression] = STATE(2307), - [sym_index_expression] = STATE(2307), - [sym_slice_expression] = STATE(2307), - [sym_if_expression] = STATE(2380), - [sym_compile_time_if_expression] = STATE(2380), - [sym_is_expression] = STATE(2307), - [sym_in_expression] = STATE(2307), - [sym_enum_fetch] = STATE(2307), - [sym_match_expression] = STATE(2380), - [sym_select_expression] = STATE(2380), - [sym_lock_expression] = STATE(2380), - [sym_unsafe_expression] = STATE(2380), - [sym_sql_expression] = STATE(2380), - [sym_c_string_literal] = STATE(2308), - [sym_raw_string_literal] = STATE(2308), - [sym_interpreted_string_literal] = STATE(2308), - [sym_mutability_modifiers] = STATE(632), - [sym_plain_type] = STATE(4297), - [sym__plain_type_without_special] = STATE(2302), - [sym_anon_struct_type] = STATE(2303), - [sym_multi_return_type] = STATE(2302), - [sym_result_type] = STATE(2302), - [sym_option_type] = STATE(2302), - [sym_qualified_type] = STATE(3541), - [sym_fixed_array_type] = STATE(2303), - [sym_array_type] = STATE(2303), - [sym_pointer_type] = STATE(2303), - [sym_wrong_pointer_type] = STATE(2303), - [sym_map_type] = STATE(2303), - [sym_channel_type] = STATE(2303), - [sym_shared_type] = STATE(2303), - [sym_thread_type] = STATE(2303), - [sym_atomic_type] = STATE(2303), - [sym_generic_type] = STATE(2303), - [sym_function_type] = STATE(2303), - [sym_identifier] = ACTIONS(1807), + [sym__expression] = STATE(959), + [sym__expression_without_blocks] = STATE(1086), + [sym__expression_with_blocks] = STATE(1086), + [sym_inc_expression] = STATE(1088), + [sym_dec_expression] = STATE(1088), + [sym_or_block_expression] = STATE(1088), + [sym_option_propagation_expression] = STATE(1088), + [sym_result_propagation_expression] = STATE(1088), + [sym_anon_struct_value_expression] = STATE(1025), + [sym_go_expression] = STATE(1088), + [sym_spawn_expression] = STATE(1088), + [sym_parenthesized_expression] = STATE(1088), + [sym_call_expression] = STATE(1088), + [sym_type_initializer] = STATE(1025), + [sym_function_literal] = STATE(1088), + [sym_reference_expression] = STATE(1024), + [sym_type_reference_expression] = STATE(3460), + [sym_unary_expression] = STATE(1088), + [sym_receive_expression] = STATE(1088), + [sym_binary_expression] = STATE(1088), + [sym_as_type_cast_expression] = STATE(1088), + [sym__max_group] = STATE(1088), + [sym_literal] = STATE(1078), + [sym_map_init_expression] = STATE(1025), + [sym_array_creation] = STATE(1088), + [sym_fixed_array_creation] = STATE(1088), + [sym_selector_expression] = STATE(1088), + [sym_index_expression] = STATE(1088), + [sym_slice_expression] = STATE(1088), + [sym_if_expression] = STATE(1025), + [sym_compile_time_if_expression] = STATE(1025), + [sym_is_expression] = STATE(1088), + [sym_in_expression] = STATE(1088), + [sym_enum_fetch] = STATE(1088), + [sym_match_expression] = STATE(1025), + [sym_select_expression] = STATE(1025), + [sym_lock_expression] = STATE(1025), + [sym_unsafe_expression] = STATE(1025), + [sym_sql_expression] = STATE(1025), + [sym_c_string_literal] = STATE(993), + [sym_raw_string_literal] = STATE(993), + [sym_interpreted_string_literal] = STATE(993), + [sym_mutability_modifiers] = STATE(618), + [sym_plain_type] = STATE(4090), + [sym__plain_type_without_special] = STATE(2360), + [sym_anon_struct_type] = STATE(2362), + [sym_multi_return_type] = STATE(2360), + [sym_result_type] = STATE(2360), + [sym_option_type] = STATE(2360), + [sym_qualified_type] = STATE(3460), + [sym_fixed_array_type] = STATE(2362), + [sym_array_type] = STATE(2362), + [sym_pointer_type] = STATE(2362), + [sym_wrong_pointer_type] = STATE(2362), + [sym_map_type] = STATE(2362), + [sym_channel_type] = STATE(2362), + [sym_shared_type] = STATE(2362), + [sym_thread_type] = STATE(2362), + [sym_atomic_type] = STATE(2362), + [sym_generic_type] = STATE(2362), + [sym_function_type] = STATE(2362), + [sym_identifier] = ACTIONS(493), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1428), - [anon_sym_LBRACE] = ACTIONS(1430), - [anon_sym_LPAREN] = ACTIONS(1432), - [anon_sym_fn] = ACTIONS(1434), - [anon_sym_PLUS] = ACTIONS(1811), - [anon_sym_DASH] = ACTIONS(1811), - [anon_sym_STAR] = ACTIONS(1813), - [anon_sym_struct] = ACTIONS(1440), + [anon_sym_DOT] = ACTIONS(501), + [anon_sym_LBRACE] = ACTIONS(2235), + [anon_sym_LPAREN] = ACTIONS(2237), + [anon_sym_fn] = ACTIONS(507), + [anon_sym_PLUS] = ACTIONS(2239), + [anon_sym_DASH] = ACTIONS(2239), + [anon_sym_STAR] = ACTIONS(2241), + [anon_sym_struct] = ACTIONS(513), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(1815), - [anon_sym_go] = ACTIONS(1817), - [anon_sym_spawn] = ACTIONS(1819), - [anon_sym_json_DOTdecode] = ACTIONS(1448), - [anon_sym_LBRACK2] = ACTIONS(1821), - [anon_sym_TILDE] = ACTIONS(1811), - [anon_sym_CARET] = ACTIONS(1811), - [anon_sym_AMP] = ACTIONS(1823), - [anon_sym_LT_DASH] = ACTIONS(1825), - [sym_none] = ACTIONS(1456), - [sym_true] = ACTIONS(1456), - [sym_false] = ACTIONS(1456), - [sym_nil] = ACTIONS(1456), - [anon_sym_if] = ACTIONS(1827), - [anon_sym_DOLLARif] = ACTIONS(1460), - [anon_sym_match] = ACTIONS(1462), - [anon_sym_select] = ACTIONS(1829), - [anon_sym_lock] = ACTIONS(1831), - [anon_sym_rlock] = ACTIONS(1831), - [anon_sym_unsafe] = ACTIONS(1833), - [anon_sym_sql] = ACTIONS(1470), - [sym_int_literal] = ACTIONS(1456), - [sym_float_literal] = ACTIONS(1472), - [sym_rune_literal] = ACTIONS(1472), - [sym_pseudo_compile_time_identifier] = ACTIONS(1474), + [anon_sym_BANG] = ACTIONS(2243), + [anon_sym_go] = ACTIONS(519), + [anon_sym_spawn] = ACTIONS(521), + [anon_sym_json_DOTdecode] = ACTIONS(2245), + [anon_sym_LBRACK2] = ACTIONS(2247), + [anon_sym_TILDE] = ACTIONS(2239), + [anon_sym_CARET] = ACTIONS(2239), + [anon_sym_AMP] = ACTIONS(2249), + [anon_sym_LT_DASH] = ACTIONS(2251), + [sym_none] = ACTIONS(531), + [sym_true] = ACTIONS(531), + [sym_false] = ACTIONS(531), + [sym_nil] = ACTIONS(531), + [anon_sym_if] = ACTIONS(533), + [anon_sym_DOLLARif] = ACTIONS(535), + [anon_sym_match] = ACTIONS(537), + [anon_sym_select] = ACTIONS(539), + [anon_sym_lock] = ACTIONS(541), + [anon_sym_rlock] = ACTIONS(541), + [anon_sym_unsafe] = ACTIONS(543), + [anon_sym_sql] = ACTIONS(545), + [sym_int_literal] = ACTIONS(531), + [sym_float_literal] = ACTIONS(2253), + [sym_rune_literal] = ACTIONS(2253), + [sym_pseudo_compile_time_identifier] = ACTIONS(547), [anon_sym_shared] = ACTIONS(83), [anon_sym_map_LBRACK] = ACTIONS(85), [anon_sym_chan] = ACTIONS(87), [anon_sym_thread] = ACTIONS(89), [anon_sym_atomic] = ACTIONS(91), - [sym___double_quote] = ACTIONS(1478), - [sym___single_quote] = ACTIONS(1480), - [sym___c_double_quote] = ACTIONS(1482), - [sym___c_single_quote] = ACTIONS(1484), - [sym___r_double_quote] = ACTIONS(1486), - [sym___r_single_quote] = ACTIONS(1488), + [sym___double_quote] = ACTIONS(2255), + [sym___single_quote] = ACTIONS(2257), + [sym___c_double_quote] = ACTIONS(2259), + [sym___c_single_quote] = ACTIONS(2261), + [sym___r_double_quote] = ACTIONS(2263), + [sym___r_single_quote] = ACTIONS(2265), }, [840] = { [sym_line_comment] = STATE(840), [sym_block_comment] = STATE(840), - [sym__expression] = STATE(2502), - [sym__expression_without_blocks] = STATE(2300), - [sym__expression_with_blocks] = STATE(2300), - [sym_inc_expression] = STATE(2307), - [sym_dec_expression] = STATE(2307), - [sym_or_block_expression] = STATE(2307), - [sym_option_propagation_expression] = STATE(2307), - [sym_result_propagation_expression] = STATE(2307), - [sym_anon_struct_value_expression] = STATE(2380), - [sym_go_expression] = STATE(2307), - [sym_spawn_expression] = STATE(2307), - [sym_parenthesized_expression] = STATE(2307), - [sym_call_expression] = STATE(2307), - [sym_type_initializer] = STATE(2380), - [sym_function_literal] = STATE(2307), - [sym_reference_expression] = STATE(2311), - [sym_type_reference_expression] = STATE(3541), - [sym_unary_expression] = STATE(2307), - [sym_receive_expression] = STATE(2307), - [sym_binary_expression] = STATE(2307), - [sym_as_type_cast_expression] = STATE(2307), - [sym__max_group] = STATE(2307), - [sym_literal] = STATE(2292), - [sym_map_init_expression] = STATE(2380), - [sym_array_creation] = STATE(2307), - [sym_fixed_array_creation] = STATE(2307), - [sym_selector_expression] = STATE(2307), - [sym_index_expression] = STATE(2307), - [sym_slice_expression] = STATE(2307), - [sym_if_expression] = STATE(2380), - [sym_compile_time_if_expression] = STATE(2380), - [sym_is_expression] = STATE(2307), - [sym_in_expression] = STATE(2307), - [sym_enum_fetch] = STATE(2307), - [sym_match_expression] = STATE(2380), - [sym_select_expression] = STATE(2380), - [sym_lock_expression] = STATE(2380), - [sym_unsafe_expression] = STATE(2380), - [sym_sql_expression] = STATE(2380), - [sym_c_string_literal] = STATE(2308), - [sym_raw_string_literal] = STATE(2308), - [sym_interpreted_string_literal] = STATE(2308), - [sym_mutability_modifiers] = STATE(632), - [sym_plain_type] = STATE(4297), - [sym__plain_type_without_special] = STATE(2302), - [sym_anon_struct_type] = STATE(2303), - [sym_multi_return_type] = STATE(2302), - [sym_result_type] = STATE(2302), - [sym_option_type] = STATE(2302), - [sym_qualified_type] = STATE(3541), - [sym_fixed_array_type] = STATE(2303), - [sym_array_type] = STATE(2303), - [sym_pointer_type] = STATE(2303), - [sym_wrong_pointer_type] = STATE(2303), - [sym_map_type] = STATE(2303), - [sym_channel_type] = STATE(2303), - [sym_shared_type] = STATE(2303), - [sym_thread_type] = STATE(2303), - [sym_atomic_type] = STATE(2303), - [sym_generic_type] = STATE(2303), - [sym_function_type] = STATE(2303), - [sym_identifier] = ACTIONS(1807), + [sym__expression] = STATE(958), + [sym__expression_without_blocks] = STATE(1086), + [sym__expression_with_blocks] = STATE(1086), + [sym_inc_expression] = STATE(1088), + [sym_dec_expression] = STATE(1088), + [sym_or_block_expression] = STATE(1088), + [sym_option_propagation_expression] = STATE(1088), + [sym_result_propagation_expression] = STATE(1088), + [sym_anon_struct_value_expression] = STATE(1025), + [sym_go_expression] = STATE(1088), + [sym_spawn_expression] = STATE(1088), + [sym_parenthesized_expression] = STATE(1088), + [sym_call_expression] = STATE(1088), + [sym_type_initializer] = STATE(1025), + [sym_function_literal] = STATE(1088), + [sym_reference_expression] = STATE(1024), + [sym_type_reference_expression] = STATE(3460), + [sym_unary_expression] = STATE(1088), + [sym_receive_expression] = STATE(1088), + [sym_binary_expression] = STATE(1088), + [sym_as_type_cast_expression] = STATE(1088), + [sym__max_group] = STATE(1088), + [sym_literal] = STATE(1078), + [sym_map_init_expression] = STATE(1025), + [sym_array_creation] = STATE(1088), + [sym_fixed_array_creation] = STATE(1088), + [sym_selector_expression] = STATE(1088), + [sym_index_expression] = STATE(1088), + [sym_slice_expression] = STATE(1088), + [sym_if_expression] = STATE(1025), + [sym_compile_time_if_expression] = STATE(1025), + [sym_is_expression] = STATE(1088), + [sym_in_expression] = STATE(1088), + [sym_enum_fetch] = STATE(1088), + [sym_match_expression] = STATE(1025), + [sym_select_expression] = STATE(1025), + [sym_lock_expression] = STATE(1025), + [sym_unsafe_expression] = STATE(1025), + [sym_sql_expression] = STATE(1025), + [sym_c_string_literal] = STATE(993), + [sym_raw_string_literal] = STATE(993), + [sym_interpreted_string_literal] = STATE(993), + [sym_mutability_modifiers] = STATE(618), + [sym_plain_type] = STATE(4090), + [sym__plain_type_without_special] = STATE(2360), + [sym_anon_struct_type] = STATE(2362), + [sym_multi_return_type] = STATE(2360), + [sym_result_type] = STATE(2360), + [sym_option_type] = STATE(2360), + [sym_qualified_type] = STATE(3460), + [sym_fixed_array_type] = STATE(2362), + [sym_array_type] = STATE(2362), + [sym_pointer_type] = STATE(2362), + [sym_wrong_pointer_type] = STATE(2362), + [sym_map_type] = STATE(2362), + [sym_channel_type] = STATE(2362), + [sym_shared_type] = STATE(2362), + [sym_thread_type] = STATE(2362), + [sym_atomic_type] = STATE(2362), + [sym_generic_type] = STATE(2362), + [sym_function_type] = STATE(2362), + [sym_identifier] = ACTIONS(493), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1428), - [anon_sym_LBRACE] = ACTIONS(1430), - [anon_sym_LPAREN] = ACTIONS(1432), - [anon_sym_fn] = ACTIONS(1434), - [anon_sym_PLUS] = ACTIONS(1811), - [anon_sym_DASH] = ACTIONS(1811), - [anon_sym_STAR] = ACTIONS(1813), - [anon_sym_struct] = ACTIONS(1440), + [anon_sym_DOT] = ACTIONS(501), + [anon_sym_LBRACE] = ACTIONS(2235), + [anon_sym_LPAREN] = ACTIONS(2237), + [anon_sym_fn] = ACTIONS(507), + [anon_sym_PLUS] = ACTIONS(2239), + [anon_sym_DASH] = ACTIONS(2239), + [anon_sym_STAR] = ACTIONS(2241), + [anon_sym_struct] = ACTIONS(513), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(1815), - [anon_sym_go] = ACTIONS(1817), - [anon_sym_spawn] = ACTIONS(1819), - [anon_sym_json_DOTdecode] = ACTIONS(1448), - [anon_sym_LBRACK2] = ACTIONS(1821), - [anon_sym_TILDE] = ACTIONS(1811), - [anon_sym_CARET] = ACTIONS(1811), - [anon_sym_AMP] = ACTIONS(1823), - [anon_sym_LT_DASH] = ACTIONS(1825), - [sym_none] = ACTIONS(1456), - [sym_true] = ACTIONS(1456), - [sym_false] = ACTIONS(1456), - [sym_nil] = ACTIONS(1456), - [anon_sym_if] = ACTIONS(1827), - [anon_sym_DOLLARif] = ACTIONS(1460), - [anon_sym_match] = ACTIONS(1462), - [anon_sym_select] = ACTIONS(1829), - [anon_sym_lock] = ACTIONS(1831), - [anon_sym_rlock] = ACTIONS(1831), - [anon_sym_unsafe] = ACTIONS(1833), - [anon_sym_sql] = ACTIONS(1470), - [sym_int_literal] = ACTIONS(1456), - [sym_float_literal] = ACTIONS(1472), - [sym_rune_literal] = ACTIONS(1472), - [sym_pseudo_compile_time_identifier] = ACTIONS(1474), + [anon_sym_BANG] = ACTIONS(2243), + [anon_sym_go] = ACTIONS(519), + [anon_sym_spawn] = ACTIONS(521), + [anon_sym_json_DOTdecode] = ACTIONS(2245), + [anon_sym_LBRACK2] = ACTIONS(2247), + [anon_sym_TILDE] = ACTIONS(2239), + [anon_sym_CARET] = ACTIONS(2239), + [anon_sym_AMP] = ACTIONS(2249), + [anon_sym_LT_DASH] = ACTIONS(2251), + [sym_none] = ACTIONS(531), + [sym_true] = ACTIONS(531), + [sym_false] = ACTIONS(531), + [sym_nil] = ACTIONS(531), + [anon_sym_if] = ACTIONS(533), + [anon_sym_DOLLARif] = ACTIONS(535), + [anon_sym_match] = ACTIONS(537), + [anon_sym_select] = ACTIONS(539), + [anon_sym_lock] = ACTIONS(541), + [anon_sym_rlock] = ACTIONS(541), + [anon_sym_unsafe] = ACTIONS(543), + [anon_sym_sql] = ACTIONS(545), + [sym_int_literal] = ACTIONS(531), + [sym_float_literal] = ACTIONS(2253), + [sym_rune_literal] = ACTIONS(2253), + [sym_pseudo_compile_time_identifier] = ACTIONS(547), [anon_sym_shared] = ACTIONS(83), [anon_sym_map_LBRACK] = ACTIONS(85), [anon_sym_chan] = ACTIONS(87), [anon_sym_thread] = ACTIONS(89), [anon_sym_atomic] = ACTIONS(91), - [sym___double_quote] = ACTIONS(1478), - [sym___single_quote] = ACTIONS(1480), - [sym___c_double_quote] = ACTIONS(1482), - [sym___c_single_quote] = ACTIONS(1484), - [sym___r_double_quote] = ACTIONS(1486), - [sym___r_single_quote] = ACTIONS(1488), + [sym___double_quote] = ACTIONS(2255), + [sym___single_quote] = ACTIONS(2257), + [sym___c_double_quote] = ACTIONS(2259), + [sym___c_single_quote] = ACTIONS(2261), + [sym___r_double_quote] = ACTIONS(2263), + [sym___r_single_quote] = ACTIONS(2265), }, [841] = { [sym_line_comment] = STATE(841), [sym_block_comment] = STATE(841), - [sym__expression] = STATE(2346), - [sym__expression_without_blocks] = STATE(2489), - [sym__expression_with_blocks] = STATE(2489), - [sym_inc_expression] = STATE(2479), - [sym_dec_expression] = STATE(2479), - [sym_or_block_expression] = STATE(2479), - [sym_option_propagation_expression] = STATE(2479), - [sym_result_propagation_expression] = STATE(2479), - [sym_anon_struct_value_expression] = STATE(2491), - [sym_go_expression] = STATE(2479), - [sym_spawn_expression] = STATE(2479), - [sym_parenthesized_expression] = STATE(2479), - [sym_call_expression] = STATE(2479), - [sym_type_initializer] = STATE(2491), - [sym_function_literal] = STATE(2479), - [sym_reference_expression] = STATE(2542), - [sym_type_reference_expression] = STATE(3541), - [sym_unary_expression] = STATE(2479), - [sym_receive_expression] = STATE(2479), - [sym_binary_expression] = STATE(2479), - [sym_as_type_cast_expression] = STATE(2479), - [sym__max_group] = STATE(2479), - [sym_literal] = STATE(2454), - [sym_map_init_expression] = STATE(2491), - [sym_array_creation] = STATE(2479), - [sym_fixed_array_creation] = STATE(2479), - [sym_selector_expression] = STATE(2479), - [sym_index_expression] = STATE(2479), - [sym_slice_expression] = STATE(2479), - [sym_if_expression] = STATE(2491), - [sym_compile_time_if_expression] = STATE(2491), - [sym_is_expression] = STATE(2479), - [sym_in_expression] = STATE(2479), - [sym_enum_fetch] = STATE(2479), - [sym_match_expression] = STATE(2491), - [sym_select_expression] = STATE(2491), - [sym_lock_expression] = STATE(2491), - [sym_unsafe_expression] = STATE(2491), - [sym_sql_expression] = STATE(2491), - [sym_c_string_literal] = STATE(2469), - [sym_raw_string_literal] = STATE(2469), - [sym_interpreted_string_literal] = STATE(2469), - [sym_mutability_modifiers] = STATE(640), - [sym_plain_type] = STATE(4255), - [sym__plain_type_without_special] = STATE(2302), - [sym_anon_struct_type] = STATE(2303), - [sym_multi_return_type] = STATE(2302), - [sym_result_type] = STATE(2302), - [sym_option_type] = STATE(2302), - [sym_qualified_type] = STATE(3541), - [sym_fixed_array_type] = STATE(2303), - [sym_array_type] = STATE(2303), - [sym_pointer_type] = STATE(2303), - [sym_wrong_pointer_type] = STATE(2303), - [sym_map_type] = STATE(2303), - [sym_channel_type] = STATE(2303), - [sym_shared_type] = STATE(2303), - [sym_thread_type] = STATE(2303), - [sym_atomic_type] = STATE(2303), - [sym_generic_type] = STATE(2303), - [sym_function_type] = STATE(2303), - [sym_identifier] = ACTIONS(1695), + [sym__expression] = STATE(960), + [sym__expression_without_blocks] = STATE(1086), + [sym__expression_with_blocks] = STATE(1086), + [sym_inc_expression] = STATE(1088), + [sym_dec_expression] = STATE(1088), + [sym_or_block_expression] = STATE(1088), + [sym_option_propagation_expression] = STATE(1088), + [sym_result_propagation_expression] = STATE(1088), + [sym_anon_struct_value_expression] = STATE(1025), + [sym_go_expression] = STATE(1088), + [sym_spawn_expression] = STATE(1088), + [sym_parenthesized_expression] = STATE(1088), + [sym_call_expression] = STATE(1088), + [sym_type_initializer] = STATE(1025), + [sym_function_literal] = STATE(1088), + [sym_reference_expression] = STATE(1024), + [sym_type_reference_expression] = STATE(3460), + [sym_unary_expression] = STATE(1088), + [sym_receive_expression] = STATE(1088), + [sym_binary_expression] = STATE(1088), + [sym_as_type_cast_expression] = STATE(1088), + [sym__max_group] = STATE(1088), + [sym_literal] = STATE(1078), + [sym_map_init_expression] = STATE(1025), + [sym_array_creation] = STATE(1088), + [sym_fixed_array_creation] = STATE(1088), + [sym_selector_expression] = STATE(1088), + [sym_index_expression] = STATE(1088), + [sym_slice_expression] = STATE(1088), + [sym_if_expression] = STATE(1025), + [sym_compile_time_if_expression] = STATE(1025), + [sym_is_expression] = STATE(1088), + [sym_in_expression] = STATE(1088), + [sym_enum_fetch] = STATE(1088), + [sym_match_expression] = STATE(1025), + [sym_select_expression] = STATE(1025), + [sym_lock_expression] = STATE(1025), + [sym_unsafe_expression] = STATE(1025), + [sym_sql_expression] = STATE(1025), + [sym_c_string_literal] = STATE(993), + [sym_raw_string_literal] = STATE(993), + [sym_interpreted_string_literal] = STATE(993), + [sym_mutability_modifiers] = STATE(618), + [sym_plain_type] = STATE(4090), + [sym__plain_type_without_special] = STATE(2360), + [sym_anon_struct_type] = STATE(2362), + [sym_multi_return_type] = STATE(2360), + [sym_result_type] = STATE(2360), + [sym_option_type] = STATE(2360), + [sym_qualified_type] = STATE(3460), + [sym_fixed_array_type] = STATE(2362), + [sym_array_type] = STATE(2362), + [sym_pointer_type] = STATE(2362), + [sym_wrong_pointer_type] = STATE(2362), + [sym_map_type] = STATE(2362), + [sym_channel_type] = STATE(2362), + [sym_shared_type] = STATE(2362), + [sym_thread_type] = STATE(2362), + [sym_atomic_type] = STATE(2362), + [sym_generic_type] = STATE(2362), + [sym_function_type] = STATE(2362), + [sym_identifier] = ACTIONS(493), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1697), - [anon_sym_LBRACE] = ACTIONS(2697), - [anon_sym_LPAREN] = ACTIONS(2699), - [anon_sym_fn] = ACTIONS(1703), - [anon_sym_PLUS] = ACTIONS(2701), - [anon_sym_DASH] = ACTIONS(2701), - [anon_sym_STAR] = ACTIONS(2703), - [anon_sym_struct] = ACTIONS(1709), + [anon_sym_DOT] = ACTIONS(501), + [anon_sym_LBRACE] = ACTIONS(2235), + [anon_sym_LPAREN] = ACTIONS(2237), + [anon_sym_fn] = ACTIONS(507), + [anon_sym_PLUS] = ACTIONS(2239), + [anon_sym_DASH] = ACTIONS(2239), + [anon_sym_STAR] = ACTIONS(2241), + [anon_sym_struct] = ACTIONS(513), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(2705), - [anon_sym_go] = ACTIONS(1713), - [anon_sym_spawn] = ACTIONS(1715), - [anon_sym_json_DOTdecode] = ACTIONS(2707), - [anon_sym_LBRACK2] = ACTIONS(2709), - [anon_sym_TILDE] = ACTIONS(2701), - [anon_sym_CARET] = ACTIONS(2701), - [anon_sym_AMP] = ACTIONS(2711), - [anon_sym_LT_DASH] = ACTIONS(2713), - [sym_none] = ACTIONS(1725), - [sym_true] = ACTIONS(1725), - [sym_false] = ACTIONS(1725), - [sym_nil] = ACTIONS(1725), - [anon_sym_if] = ACTIONS(1727), - [anon_sym_DOLLARif] = ACTIONS(1729), - [anon_sym_match] = ACTIONS(1731), - [anon_sym_select] = ACTIONS(1733), - [anon_sym_lock] = ACTIONS(1735), - [anon_sym_rlock] = ACTIONS(1735), - [anon_sym_unsafe] = ACTIONS(1737), - [anon_sym_sql] = ACTIONS(1739), - [sym_int_literal] = ACTIONS(1725), - [sym_float_literal] = ACTIONS(2715), - [sym_rune_literal] = ACTIONS(2715), - [sym_pseudo_compile_time_identifier] = ACTIONS(1741), + [anon_sym_BANG] = ACTIONS(2243), + [anon_sym_go] = ACTIONS(519), + [anon_sym_spawn] = ACTIONS(521), + [anon_sym_json_DOTdecode] = ACTIONS(2245), + [anon_sym_LBRACK2] = ACTIONS(2247), + [anon_sym_TILDE] = ACTIONS(2239), + [anon_sym_CARET] = ACTIONS(2239), + [anon_sym_AMP] = ACTIONS(2249), + [anon_sym_LT_DASH] = ACTIONS(2251), + [sym_none] = ACTIONS(531), + [sym_true] = ACTIONS(531), + [sym_false] = ACTIONS(531), + [sym_nil] = ACTIONS(531), + [anon_sym_if] = ACTIONS(533), + [anon_sym_DOLLARif] = ACTIONS(535), + [anon_sym_match] = ACTIONS(537), + [anon_sym_select] = ACTIONS(539), + [anon_sym_lock] = ACTIONS(541), + [anon_sym_rlock] = ACTIONS(541), + [anon_sym_unsafe] = ACTIONS(543), + [anon_sym_sql] = ACTIONS(545), + [sym_int_literal] = ACTIONS(531), + [sym_float_literal] = ACTIONS(2253), + [sym_rune_literal] = ACTIONS(2253), + [sym_pseudo_compile_time_identifier] = ACTIONS(547), [anon_sym_shared] = ACTIONS(83), [anon_sym_map_LBRACK] = ACTIONS(85), [anon_sym_chan] = ACTIONS(87), [anon_sym_thread] = ACTIONS(89), [anon_sym_atomic] = ACTIONS(91), - [sym___double_quote] = ACTIONS(2717), - [sym___single_quote] = ACTIONS(2719), - [sym___c_double_quote] = ACTIONS(2721), - [sym___c_single_quote] = ACTIONS(2723), - [sym___r_double_quote] = ACTIONS(2725), - [sym___r_single_quote] = ACTIONS(2727), + [sym___double_quote] = ACTIONS(2255), + [sym___single_quote] = ACTIONS(2257), + [sym___c_double_quote] = ACTIONS(2259), + [sym___c_single_quote] = ACTIONS(2261), + [sym___r_double_quote] = ACTIONS(2263), + [sym___r_single_quote] = ACTIONS(2265), }, [842] = { [sym_line_comment] = STATE(842), [sym_block_comment] = STATE(842), - [sym__expression] = STATE(2263), - [sym__expression_without_blocks] = STATE(2300), - [sym__expression_with_blocks] = STATE(2300), - [sym_inc_expression] = STATE(2307), - [sym_dec_expression] = STATE(2307), - [sym_or_block_expression] = STATE(2307), - [sym_option_propagation_expression] = STATE(2307), - [sym_result_propagation_expression] = STATE(2307), - [sym_anon_struct_value_expression] = STATE(2380), - [sym_go_expression] = STATE(2307), - [sym_spawn_expression] = STATE(2307), - [sym_parenthesized_expression] = STATE(2307), - [sym_call_expression] = STATE(2307), - [sym_type_initializer] = STATE(2380), - [sym_function_literal] = STATE(2307), - [sym_reference_expression] = STATE(2311), - [sym_type_reference_expression] = STATE(3541), - [sym_unary_expression] = STATE(2307), - [sym_receive_expression] = STATE(2307), - [sym_binary_expression] = STATE(2307), - [sym_as_type_cast_expression] = STATE(2307), - [sym__max_group] = STATE(2307), - [sym_literal] = STATE(2292), - [sym_map_init_expression] = STATE(2380), - [sym_array_creation] = STATE(2307), - [sym_fixed_array_creation] = STATE(2307), - [sym_selector_expression] = STATE(2307), - [sym_index_expression] = STATE(2307), - [sym_slice_expression] = STATE(2307), - [sym_if_expression] = STATE(2380), - [sym_compile_time_if_expression] = STATE(2380), - [sym_is_expression] = STATE(2307), - [sym_in_expression] = STATE(2307), - [sym_enum_fetch] = STATE(2307), - [sym_match_expression] = STATE(2380), - [sym_select_expression] = STATE(2380), - [sym_lock_expression] = STATE(2380), - [sym_unsafe_expression] = STATE(2380), - [sym_sql_expression] = STATE(2380), - [sym_c_string_literal] = STATE(2308), - [sym_raw_string_literal] = STATE(2308), - [sym_interpreted_string_literal] = STATE(2308), - [sym_mutability_modifiers] = STATE(632), - [sym_plain_type] = STATE(3565), - [sym__plain_type_without_special] = STATE(2302), - [sym_anon_struct_type] = STATE(2303), - [sym_multi_return_type] = STATE(2302), - [sym_result_type] = STATE(2302), - [sym_option_type] = STATE(2302), - [sym_qualified_type] = STATE(3541), - [sym_fixed_array_type] = STATE(2303), - [sym_array_type] = STATE(2303), - [sym_pointer_type] = STATE(2303), - [sym_wrong_pointer_type] = STATE(2303), - [sym_map_type] = STATE(2303), - [sym_channel_type] = STATE(2303), - [sym_shared_type] = STATE(2303), - [sym_thread_type] = STATE(2303), - [sym_atomic_type] = STATE(2303), - [sym_generic_type] = STATE(2303), - [sym_function_type] = STATE(2303), - [sym_identifier] = ACTIONS(1807), + [sym__expression] = STATE(1258), + [sym__expression_without_blocks] = STATE(1318), + [sym__expression_with_blocks] = STATE(1318), + [sym_inc_expression] = STATE(1319), + [sym_dec_expression] = STATE(1319), + [sym_or_block_expression] = STATE(1319), + [sym_option_propagation_expression] = STATE(1319), + [sym_result_propagation_expression] = STATE(1319), + [sym_anon_struct_value_expression] = STATE(1320), + [sym_go_expression] = STATE(1319), + [sym_spawn_expression] = STATE(1319), + [sym_parenthesized_expression] = STATE(1319), + [sym_call_expression] = STATE(1319), + [sym_type_initializer] = STATE(1320), + [sym_function_literal] = STATE(1319), + [sym_reference_expression] = STATE(1298), + [sym_type_reference_expression] = STATE(3460), + [sym_unary_expression] = STATE(1319), + [sym_receive_expression] = STATE(1319), + [sym_binary_expression] = STATE(1319), + [sym_as_type_cast_expression] = STATE(1319), + [sym__max_group] = STATE(1319), + [sym_literal] = STATE(1314), + [sym_map_init_expression] = STATE(1320), + [sym_array_creation] = STATE(1319), + [sym_fixed_array_creation] = STATE(1319), + [sym_selector_expression] = STATE(1319), + [sym_index_expression] = STATE(1319), + [sym_slice_expression] = STATE(1319), + [sym_if_expression] = STATE(1320), + [sym_compile_time_if_expression] = STATE(1320), + [sym_is_expression] = STATE(1319), + [sym_in_expression] = STATE(1319), + [sym_enum_fetch] = STATE(1319), + [sym_match_expression] = STATE(1320), + [sym_select_expression] = STATE(1320), + [sym_lock_expression] = STATE(1320), + [sym_unsafe_expression] = STATE(1320), + [sym_sql_expression] = STATE(1320), + [sym_c_string_literal] = STATE(1291), + [sym_raw_string_literal] = STATE(1291), + [sym_interpreted_string_literal] = STATE(1291), + [sym_mutability_modifiers] = STATE(639), + [sym_plain_type] = STATE(4142), + [sym__plain_type_without_special] = STATE(2360), + [sym_anon_struct_type] = STATE(2362), + [sym_multi_return_type] = STATE(2360), + [sym_result_type] = STATE(2360), + [sym_option_type] = STATE(2360), + [sym_qualified_type] = STATE(3460), + [sym_fixed_array_type] = STATE(2362), + [sym_array_type] = STATE(2362), + [sym_pointer_type] = STATE(2362), + [sym_wrong_pointer_type] = STATE(2362), + [sym_map_type] = STATE(2362), + [sym_channel_type] = STATE(2362), + [sym_shared_type] = STATE(2362), + [sym_thread_type] = STATE(2362), + [sym_atomic_type] = STATE(2362), + [sym_generic_type] = STATE(2362), + [sym_function_type] = STATE(2362), + [sym_identifier] = ACTIONS(1360), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1428), - [anon_sym_LBRACE] = ACTIONS(1430), - [anon_sym_LPAREN] = ACTIONS(1432), - [anon_sym_fn] = ACTIONS(1434), - [anon_sym_PLUS] = ACTIONS(1811), - [anon_sym_DASH] = ACTIONS(1811), - [anon_sym_STAR] = ACTIONS(1813), - [anon_sym_struct] = ACTIONS(1440), + [anon_sym_DOT] = ACTIONS(1362), + [anon_sym_LBRACE] = ACTIONS(1364), + [anon_sym_LPAREN] = ACTIONS(1366), + [anon_sym_fn] = ACTIONS(1368), + [anon_sym_PLUS] = ACTIONS(1851), + [anon_sym_DASH] = ACTIONS(1851), + [anon_sym_STAR] = ACTIONS(1853), + [anon_sym_struct] = ACTIONS(1376), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(1815), - [anon_sym_go] = ACTIONS(1817), - [anon_sym_spawn] = ACTIONS(1819), - [anon_sym_json_DOTdecode] = ACTIONS(1448), - [anon_sym_LBRACK2] = ACTIONS(1821), - [anon_sym_TILDE] = ACTIONS(1811), - [anon_sym_CARET] = ACTIONS(1811), - [anon_sym_AMP] = ACTIONS(1823), - [anon_sym_LT_DASH] = ACTIONS(1825), - [sym_none] = ACTIONS(1456), - [sym_true] = ACTIONS(1456), - [sym_false] = ACTIONS(1456), - [sym_nil] = ACTIONS(1456), - [anon_sym_if] = ACTIONS(1827), - [anon_sym_DOLLARif] = ACTIONS(1460), - [anon_sym_match] = ACTIONS(1462), - [anon_sym_select] = ACTIONS(1829), - [anon_sym_lock] = ACTIONS(1831), - [anon_sym_rlock] = ACTIONS(1831), - [anon_sym_unsafe] = ACTIONS(1833), - [anon_sym_sql] = ACTIONS(1470), - [sym_int_literal] = ACTIONS(1456), - [sym_float_literal] = ACTIONS(1472), - [sym_rune_literal] = ACTIONS(1472), - [sym_pseudo_compile_time_identifier] = ACTIONS(1474), + [anon_sym_BANG] = ACTIONS(1855), + [anon_sym_go] = ACTIONS(1857), + [anon_sym_spawn] = ACTIONS(1859), + [anon_sym_json_DOTdecode] = ACTIONS(1384), + [anon_sym_LBRACK2] = ACTIONS(1386), + [anon_sym_TILDE] = ACTIONS(1851), + [anon_sym_CARET] = ACTIONS(1851), + [anon_sym_AMP] = ACTIONS(1861), + [anon_sym_LT_DASH] = ACTIONS(1863), + [sym_none] = ACTIONS(1392), + [sym_true] = ACTIONS(1392), + [sym_false] = ACTIONS(1392), + [sym_nil] = ACTIONS(1392), + [anon_sym_if] = ACTIONS(1865), + [anon_sym_DOLLARif] = ACTIONS(1396), + [anon_sym_match] = ACTIONS(1398), + [anon_sym_select] = ACTIONS(1867), + [anon_sym_lock] = ACTIONS(1869), + [anon_sym_rlock] = ACTIONS(1869), + [anon_sym_unsafe] = ACTIONS(1871), + [anon_sym_sql] = ACTIONS(1406), + [sym_int_literal] = ACTIONS(1392), + [sym_float_literal] = ACTIONS(1410), + [sym_rune_literal] = ACTIONS(1410), + [sym_pseudo_compile_time_identifier] = ACTIONS(1412), [anon_sym_shared] = ACTIONS(83), [anon_sym_map_LBRACK] = ACTIONS(85), [anon_sym_chan] = ACTIONS(87), [anon_sym_thread] = ACTIONS(89), [anon_sym_atomic] = ACTIONS(91), - [sym___double_quote] = ACTIONS(1478), - [sym___single_quote] = ACTIONS(1480), - [sym___c_double_quote] = ACTIONS(1482), - [sym___c_single_quote] = ACTIONS(1484), - [sym___r_double_quote] = ACTIONS(1486), - [sym___r_single_quote] = ACTIONS(1488), + [sym___double_quote] = ACTIONS(1414), + [sym___single_quote] = ACTIONS(1416), + [sym___c_double_quote] = ACTIONS(1418), + [sym___c_single_quote] = ACTIONS(1420), + [sym___r_double_quote] = ACTIONS(1422), + [sym___r_single_quote] = ACTIONS(1424), }, [843] = { [sym_line_comment] = STATE(843), [sym_block_comment] = STATE(843), - [sym__expression] = STATE(2446), - [sym__expression_without_blocks] = STATE(2489), - [sym__expression_with_blocks] = STATE(2489), - [sym_inc_expression] = STATE(2479), - [sym_dec_expression] = STATE(2479), - [sym_or_block_expression] = STATE(2479), - [sym_option_propagation_expression] = STATE(2479), - [sym_result_propagation_expression] = STATE(2479), - [sym_anon_struct_value_expression] = STATE(2491), - [sym_go_expression] = STATE(2479), - [sym_spawn_expression] = STATE(2479), - [sym_parenthesized_expression] = STATE(2479), - [sym_call_expression] = STATE(2479), - [sym_type_initializer] = STATE(2491), - [sym_function_literal] = STATE(2479), - [sym_reference_expression] = STATE(2542), - [sym_type_reference_expression] = STATE(3541), - [sym_unary_expression] = STATE(2479), - [sym_receive_expression] = STATE(2479), - [sym_binary_expression] = STATE(2479), - [sym_as_type_cast_expression] = STATE(2479), - [sym__max_group] = STATE(2479), - [sym_literal] = STATE(2454), - [sym_map_init_expression] = STATE(2491), - [sym_array_creation] = STATE(2479), - [sym_fixed_array_creation] = STATE(2479), - [sym_selector_expression] = STATE(2479), - [sym_index_expression] = STATE(2479), - [sym_slice_expression] = STATE(2479), - [sym_if_expression] = STATE(2491), - [sym_compile_time_if_expression] = STATE(2491), - [sym_is_expression] = STATE(2479), - [sym_in_expression] = STATE(2479), - [sym_enum_fetch] = STATE(2479), - [sym_match_expression] = STATE(2491), - [sym_select_expression] = STATE(2491), - [sym_lock_expression] = STATE(2491), - [sym_unsafe_expression] = STATE(2491), - [sym_sql_expression] = STATE(2491), - [sym_c_string_literal] = STATE(2469), - [sym_raw_string_literal] = STATE(2469), - [sym_interpreted_string_literal] = STATE(2469), - [sym_mutability_modifiers] = STATE(640), - [sym_plain_type] = STATE(4255), - [sym__plain_type_without_special] = STATE(2302), - [sym_anon_struct_type] = STATE(2303), - [sym_multi_return_type] = STATE(2302), - [sym_result_type] = STATE(2302), - [sym_option_type] = STATE(2302), - [sym_qualified_type] = STATE(3541), - [sym_fixed_array_type] = STATE(2303), - [sym_array_type] = STATE(2303), - [sym_pointer_type] = STATE(2303), - [sym_wrong_pointer_type] = STATE(2303), - [sym_map_type] = STATE(2303), - [sym_channel_type] = STATE(2303), - [sym_shared_type] = STATE(2303), - [sym_thread_type] = STATE(2303), - [sym_atomic_type] = STATE(2303), - [sym_generic_type] = STATE(2303), - [sym_function_type] = STATE(2303), - [sym_identifier] = ACTIONS(1695), + [sym__expression] = STATE(1900), + [sym__expression_without_blocks] = STATE(1953), + [sym__expression_with_blocks] = STATE(1953), + [sym_inc_expression] = STATE(1955), + [sym_dec_expression] = STATE(1955), + [sym_or_block_expression] = STATE(1955), + [sym_option_propagation_expression] = STATE(1955), + [sym_result_propagation_expression] = STATE(1955), + [sym_anon_struct_value_expression] = STATE(1958), + [sym_go_expression] = STATE(1955), + [sym_spawn_expression] = STATE(1955), + [sym_parenthesized_expression] = STATE(1955), + [sym_call_expression] = STATE(1955), + [sym_type_initializer] = STATE(1958), + [sym_function_literal] = STATE(1955), + [sym_reference_expression] = STATE(1956), + [sym_type_reference_expression] = STATE(3460), + [sym_unary_expression] = STATE(1955), + [sym_receive_expression] = STATE(1955), + [sym_binary_expression] = STATE(1955), + [sym_as_type_cast_expression] = STATE(1955), + [sym__max_group] = STATE(1955), + [sym_literal] = STATE(1943), + [sym_map_init_expression] = STATE(1958), + [sym_array_creation] = STATE(1955), + [sym_fixed_array_creation] = STATE(1955), + [sym_selector_expression] = STATE(1955), + [sym_index_expression] = STATE(1955), + [sym_slice_expression] = STATE(1955), + [sym_if_expression] = STATE(1958), + [sym_compile_time_if_expression] = STATE(1958), + [sym_is_expression] = STATE(1955), + [sym_in_expression] = STATE(1955), + [sym_enum_fetch] = STATE(1955), + [sym_match_expression] = STATE(1958), + [sym_select_expression] = STATE(1958), + [sym_lock_expression] = STATE(1958), + [sym_unsafe_expression] = STATE(1958), + [sym_sql_expression] = STATE(1958), + [sym_c_string_literal] = STATE(1942), + [sym_raw_string_literal] = STATE(1942), + [sym_interpreted_string_literal] = STATE(1942), + [sym_mutability_modifiers] = STATE(601), + [sym_plain_type] = STATE(4266), + [sym__plain_type_without_special] = STATE(2360), + [sym_anon_struct_type] = STATE(2362), + [sym_multi_return_type] = STATE(2360), + [sym_result_type] = STATE(2360), + [sym_option_type] = STATE(2360), + [sym_qualified_type] = STATE(3460), + [sym_fixed_array_type] = STATE(2362), + [sym_array_type] = STATE(2362), + [sym_pointer_type] = STATE(2362), + [sym_wrong_pointer_type] = STATE(2362), + [sym_map_type] = STATE(2362), + [sym_channel_type] = STATE(2362), + [sym_shared_type] = STATE(2362), + [sym_thread_type] = STATE(2362), + [sym_atomic_type] = STATE(2362), + [sym_generic_type] = STATE(2362), + [sym_function_type] = STATE(2362), + [sym_identifier] = ACTIONS(3158), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1697), - [anon_sym_LBRACE] = ACTIONS(2697), - [anon_sym_LPAREN] = ACTIONS(2699), - [anon_sym_fn] = ACTIONS(1703), - [anon_sym_PLUS] = ACTIONS(3380), - [anon_sym_DASH] = ACTIONS(3380), - [anon_sym_STAR] = ACTIONS(3382), - [anon_sym_struct] = ACTIONS(1709), + [anon_sym_DOT] = ACTIONS(705), + [anon_sym_LBRACE] = ACTIONS(3118), + [anon_sym_LPAREN] = ACTIONS(709), + [anon_sym_fn] = ACTIONS(711), + [anon_sym_PLUS] = ACTIONS(3160), + [anon_sym_DASH] = ACTIONS(3160), + [anon_sym_STAR] = ACTIONS(3162), + [anon_sym_struct] = ACTIONS(717), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(3384), - [anon_sym_go] = ACTIONS(3386), - [anon_sym_spawn] = ACTIONS(3388), - [anon_sym_json_DOTdecode] = ACTIONS(2707), - [anon_sym_LBRACK2] = ACTIONS(2709), - [anon_sym_TILDE] = ACTIONS(3380), - [anon_sym_CARET] = ACTIONS(3380), - [anon_sym_AMP] = ACTIONS(3390), - [anon_sym_LT_DASH] = ACTIONS(3392), - [sym_none] = ACTIONS(1725), - [sym_true] = ACTIONS(1725), - [sym_false] = ACTIONS(1725), - [sym_nil] = ACTIONS(1725), - [anon_sym_if] = ACTIONS(1727), - [anon_sym_DOLLARif] = ACTIONS(1729), - [anon_sym_match] = ACTIONS(1731), - [anon_sym_select] = ACTIONS(3394), - [anon_sym_lock] = ACTIONS(3396), - [anon_sym_rlock] = ACTIONS(3396), - [anon_sym_unsafe] = ACTIONS(1737), - [anon_sym_sql] = ACTIONS(1739), - [sym_int_literal] = ACTIONS(1725), - [sym_float_literal] = ACTIONS(2715), - [sym_rune_literal] = ACTIONS(2715), - [sym_pseudo_compile_time_identifier] = ACTIONS(1741), + [anon_sym_BANG] = ACTIONS(3164), + [anon_sym_go] = ACTIONS(3166), + [anon_sym_spawn] = ACTIONS(3168), + [anon_sym_json_DOTdecode] = ACTIONS(727), + [anon_sym_LBRACK2] = ACTIONS(3170), + [anon_sym_TILDE] = ACTIONS(3160), + [anon_sym_CARET] = ACTIONS(3160), + [anon_sym_AMP] = ACTIONS(3172), + [anon_sym_LT_DASH] = ACTIONS(3174), + [sym_none] = ACTIONS(735), + [sym_true] = ACTIONS(735), + [sym_false] = ACTIONS(735), + [sym_nil] = ACTIONS(735), + [anon_sym_if] = ACTIONS(737), + [anon_sym_DOLLARif] = ACTIONS(739), + [anon_sym_match] = ACTIONS(741), + [anon_sym_select] = ACTIONS(3176), + [anon_sym_lock] = ACTIONS(3178), + [anon_sym_rlock] = ACTIONS(3178), + [anon_sym_unsafe] = ACTIONS(747), + [anon_sym_sql] = ACTIONS(749), + [sym_int_literal] = ACTIONS(735), + [sym_float_literal] = ACTIONS(751), + [sym_rune_literal] = ACTIONS(751), + [sym_pseudo_compile_time_identifier] = ACTIONS(753), [anon_sym_shared] = ACTIONS(83), [anon_sym_map_LBRACK] = ACTIONS(85), [anon_sym_chan] = ACTIONS(87), [anon_sym_thread] = ACTIONS(89), [anon_sym_atomic] = ACTIONS(91), - [sym___double_quote] = ACTIONS(2717), - [sym___single_quote] = ACTIONS(2719), - [sym___c_double_quote] = ACTIONS(2721), - [sym___c_single_quote] = ACTIONS(2723), - [sym___r_double_quote] = ACTIONS(2725), - [sym___r_single_quote] = ACTIONS(2727), + [sym___double_quote] = ACTIONS(755), + [sym___single_quote] = ACTIONS(757), + [sym___c_double_quote] = ACTIONS(759), + [sym___c_single_quote] = ACTIONS(761), + [sym___r_double_quote] = ACTIONS(763), + [sym___r_single_quote] = ACTIONS(765), }, [844] = { [sym_line_comment] = STATE(844), [sym_block_comment] = STATE(844), - [sym__expression] = STATE(2263), - [sym__expression_without_blocks] = STATE(2300), - [sym__expression_with_blocks] = STATE(2300), - [sym_inc_expression] = STATE(2307), - [sym_dec_expression] = STATE(2307), - [sym_or_block_expression] = STATE(2307), - [sym_option_propagation_expression] = STATE(2307), - [sym_result_propagation_expression] = STATE(2307), - [sym_anon_struct_value_expression] = STATE(2380), - [sym_go_expression] = STATE(2307), - [sym_spawn_expression] = STATE(2307), - [sym_parenthesized_expression] = STATE(2307), - [sym_call_expression] = STATE(2307), - [sym_type_initializer] = STATE(2380), - [sym_function_literal] = STATE(2307), - [sym_reference_expression] = STATE(2311), - [sym_type_reference_expression] = STATE(3541), - [sym_unary_expression] = STATE(2307), - [sym_receive_expression] = STATE(2307), - [sym_binary_expression] = STATE(2307), - [sym_as_type_cast_expression] = STATE(2307), - [sym__max_group] = STATE(2307), - [sym_literal] = STATE(2292), - [sym_map_init_expression] = STATE(2380), - [sym_array_creation] = STATE(2307), - [sym_fixed_array_creation] = STATE(2307), - [sym_selector_expression] = STATE(2307), - [sym_index_expression] = STATE(2307), - [sym_slice_expression] = STATE(2307), - [sym_if_expression] = STATE(2380), - [sym_compile_time_if_expression] = STATE(2380), - [sym_is_expression] = STATE(2307), - [sym_in_expression] = STATE(2307), - [sym_enum_fetch] = STATE(2307), - [sym_match_expression] = STATE(2380), - [sym_select_expression] = STATE(2380), - [sym_lock_expression] = STATE(2380), - [sym_unsafe_expression] = STATE(2380), - [sym_sql_expression] = STATE(2380), - [sym_c_string_literal] = STATE(2308), - [sym_raw_string_literal] = STATE(2308), - [sym_interpreted_string_literal] = STATE(2308), - [sym_mutability_modifiers] = STATE(632), - [sym_plain_type] = STATE(3560), - [sym__plain_type_without_special] = STATE(2302), - [sym_anon_struct_type] = STATE(2303), - [sym_multi_return_type] = STATE(2302), - [sym_result_type] = STATE(2302), - [sym_option_type] = STATE(2302), - [sym_qualified_type] = STATE(3541), - [sym_fixed_array_type] = STATE(2303), - [sym_array_type] = STATE(2303), - [sym_pointer_type] = STATE(2303), - [sym_wrong_pointer_type] = STATE(2303), - [sym_map_type] = STATE(2303), - [sym_channel_type] = STATE(2303), - [sym_shared_type] = STATE(2303), - [sym_thread_type] = STATE(2303), - [sym_atomic_type] = STATE(2303), - [sym_generic_type] = STATE(2303), - [sym_function_type] = STATE(2303), - [sym_identifier] = ACTIONS(1807), + [sym__expression] = STATE(2800), + [sym__expression_without_blocks] = STATE(2347), + [sym__expression_with_blocks] = STATE(2347), + [sym_inc_expression] = STATE(2379), + [sym_dec_expression] = STATE(2379), + [sym_or_block_expression] = STATE(2379), + [sym_option_propagation_expression] = STATE(2379), + [sym_result_propagation_expression] = STATE(2379), + [sym_anon_struct_value_expression] = STATE(2378), + [sym_go_expression] = STATE(2379), + [sym_spawn_expression] = STATE(2379), + [sym_parenthesized_expression] = STATE(2379), + [sym_call_expression] = STATE(2379), + [sym_type_initializer] = STATE(2378), + [sym_function_literal] = STATE(2379), + [sym_reference_expression] = STATE(2377), + [sym_type_reference_expression] = STATE(3460), + [sym_unary_expression] = STATE(2379), + [sym_receive_expression] = STATE(2379), + [sym_binary_expression] = STATE(2379), + [sym_as_type_cast_expression] = STATE(2379), + [sym__max_group] = STATE(2379), + [sym_literal] = STATE(2392), + [sym_map_init_expression] = STATE(2378), + [sym_array_creation] = STATE(2379), + [sym_fixed_array_creation] = STATE(2379), + [sym_selector_expression] = STATE(2379), + [sym_index_expression] = STATE(2379), + [sym_slice_expression] = STATE(2379), + [sym_if_expression] = STATE(2378), + [sym_compile_time_if_expression] = STATE(2378), + [sym_is_expression] = STATE(2379), + [sym_in_expression] = STATE(2379), + [sym_enum_fetch] = STATE(2379), + [sym_match_expression] = STATE(2378), + [sym_select_expression] = STATE(2378), + [sym_lock_expression] = STATE(2378), + [sym_unsafe_expression] = STATE(2378), + [sym_sql_expression] = STATE(2378), + [sym_c_string_literal] = STATE(2401), + [sym_raw_string_literal] = STATE(2401), + [sym_interpreted_string_literal] = STATE(2401), + [sym_mutability_modifiers] = STATE(939), + [sym_plain_type] = STATE(3564), + [sym__plain_type_without_special] = STATE(2360), + [sym_anon_struct_type] = STATE(2362), + [sym_multi_return_type] = STATE(2360), + [sym_result_type] = STATE(2360), + [sym_option_type] = STATE(2360), + [sym_qualified_type] = STATE(3460), + [sym_fixed_array_type] = STATE(2362), + [sym_array_type] = STATE(2362), + [sym_pointer_type] = STATE(2362), + [sym_wrong_pointer_type] = STATE(2362), + [sym_map_type] = STATE(2362), + [sym_channel_type] = STATE(2362), + [sym_shared_type] = STATE(2362), + [sym_thread_type] = STATE(2362), + [sym_atomic_type] = STATE(2362), + [sym_generic_type] = STATE(2362), + [sym_function_type] = STATE(2362), + [sym_identifier] = ACTIONS(1428), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1428), - [anon_sym_LBRACE] = ACTIONS(1430), - [anon_sym_LPAREN] = ACTIONS(1432), - [anon_sym_fn] = ACTIONS(1434), - [anon_sym_PLUS] = ACTIONS(1811), - [anon_sym_DASH] = ACTIONS(1811), - [anon_sym_STAR] = ACTIONS(1813), - [anon_sym_struct] = ACTIONS(1440), + [anon_sym_DOT] = ACTIONS(1430), + [anon_sym_LBRACE] = ACTIONS(1432), + [anon_sym_LPAREN] = ACTIONS(1434), + [anon_sym_fn] = ACTIONS(1436), + [anon_sym_PLUS] = ACTIONS(2271), + [anon_sym_DASH] = ACTIONS(2271), + [anon_sym_STAR] = ACTIONS(2273), + [anon_sym_struct] = ACTIONS(1442), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(1815), - [anon_sym_go] = ACTIONS(1817), - [anon_sym_spawn] = ACTIONS(1819), - [anon_sym_json_DOTdecode] = ACTIONS(1448), - [anon_sym_LBRACK2] = ACTIONS(1821), - [anon_sym_TILDE] = ACTIONS(1811), - [anon_sym_CARET] = ACTIONS(1811), - [anon_sym_AMP] = ACTIONS(1823), - [anon_sym_LT_DASH] = ACTIONS(1825), - [sym_none] = ACTIONS(1456), - [sym_true] = ACTIONS(1456), - [sym_false] = ACTIONS(1456), - [sym_nil] = ACTIONS(1456), - [anon_sym_if] = ACTIONS(1827), - [anon_sym_DOLLARif] = ACTIONS(1460), - [anon_sym_match] = ACTIONS(1462), - [anon_sym_select] = ACTIONS(1829), - [anon_sym_lock] = ACTIONS(1831), - [anon_sym_rlock] = ACTIONS(1831), - [anon_sym_unsafe] = ACTIONS(1833), - [anon_sym_sql] = ACTIONS(1470), - [sym_int_literal] = ACTIONS(1456), - [sym_float_literal] = ACTIONS(1472), - [sym_rune_literal] = ACTIONS(1472), - [sym_pseudo_compile_time_identifier] = ACTIONS(1474), + [anon_sym_BANG] = ACTIONS(2275), + [anon_sym_go] = ACTIONS(2277), + [anon_sym_spawn] = ACTIONS(2279), + [anon_sym_json_DOTdecode] = ACTIONS(1450), + [anon_sym_LBRACK2] = ACTIONS(1452), + [anon_sym_TILDE] = ACTIONS(2271), + [anon_sym_CARET] = ACTIONS(2271), + [anon_sym_AMP] = ACTIONS(2281), + [anon_sym_LT_DASH] = ACTIONS(2283), + [sym_none] = ACTIONS(1458), + [sym_true] = ACTIONS(1458), + [sym_false] = ACTIONS(1458), + [sym_nil] = ACTIONS(1458), + [anon_sym_if] = ACTIONS(1833), + [anon_sym_DOLLARif] = ACTIONS(1462), + [anon_sym_match] = ACTIONS(1464), + [anon_sym_select] = ACTIONS(1466), + [anon_sym_lock] = ACTIONS(1468), + [anon_sym_rlock] = ACTIONS(1468), + [anon_sym_unsafe] = ACTIONS(1839), + [anon_sym_sql] = ACTIONS(1472), + [sym_int_literal] = ACTIONS(1458), + [sym_float_literal] = ACTIONS(1474), + [sym_rune_literal] = ACTIONS(1474), + [sym_pseudo_compile_time_identifier] = ACTIONS(1476), [anon_sym_shared] = ACTIONS(83), [anon_sym_map_LBRACK] = ACTIONS(85), [anon_sym_chan] = ACTIONS(87), [anon_sym_thread] = ACTIONS(89), [anon_sym_atomic] = ACTIONS(91), - [sym___double_quote] = ACTIONS(1478), - [sym___single_quote] = ACTIONS(1480), - [sym___c_double_quote] = ACTIONS(1482), - [sym___c_single_quote] = ACTIONS(1484), - [sym___r_double_quote] = ACTIONS(1486), - [sym___r_single_quote] = ACTIONS(1488), + [sym___double_quote] = ACTIONS(1480), + [sym___single_quote] = ACTIONS(1482), + [sym___c_double_quote] = ACTIONS(1484), + [sym___c_single_quote] = ACTIONS(1486), + [sym___r_double_quote] = ACTIONS(1488), + [sym___r_single_quote] = ACTIONS(1490), }, [845] = { [sym_line_comment] = STATE(845), [sym_block_comment] = STATE(845), - [sym__expression] = STATE(2274), - [sym__expression_without_blocks] = STATE(2300), - [sym__expression_with_blocks] = STATE(2300), - [sym_inc_expression] = STATE(2307), - [sym_dec_expression] = STATE(2307), - [sym_or_block_expression] = STATE(2307), - [sym_option_propagation_expression] = STATE(2307), - [sym_result_propagation_expression] = STATE(2307), - [sym_anon_struct_value_expression] = STATE(2380), - [sym_go_expression] = STATE(2307), - [sym_spawn_expression] = STATE(2307), - [sym_parenthesized_expression] = STATE(2307), - [sym_call_expression] = STATE(2307), - [sym_type_initializer] = STATE(2380), - [sym_function_literal] = STATE(2307), - [sym_reference_expression] = STATE(2311), - [sym_type_reference_expression] = STATE(3541), - [sym_unary_expression] = STATE(2307), - [sym_receive_expression] = STATE(2307), - [sym_binary_expression] = STATE(2307), - [sym_as_type_cast_expression] = STATE(2307), - [sym__max_group] = STATE(2307), - [sym_literal] = STATE(2292), - [sym_map_init_expression] = STATE(2380), - [sym_array_creation] = STATE(2307), - [sym_fixed_array_creation] = STATE(2307), - [sym_selector_expression] = STATE(2307), - [sym_index_expression] = STATE(2307), - [sym_slice_expression] = STATE(2307), - [sym_if_expression] = STATE(2380), - [sym_compile_time_if_expression] = STATE(2380), - [sym_is_expression] = STATE(2307), - [sym_in_expression] = STATE(2307), - [sym_enum_fetch] = STATE(2307), - [sym_match_expression] = STATE(2380), - [sym_select_expression] = STATE(2380), - [sym_lock_expression] = STATE(2380), - [sym_unsafe_expression] = STATE(2380), - [sym_sql_expression] = STATE(2380), - [sym_c_string_literal] = STATE(2308), - [sym_raw_string_literal] = STATE(2308), - [sym_interpreted_string_literal] = STATE(2308), + [sym__expression] = STATE(2828), + [sym__expression_without_blocks] = STATE(2347), + [sym__expression_with_blocks] = STATE(2347), + [sym_inc_expression] = STATE(2379), + [sym_dec_expression] = STATE(2379), + [sym_or_block_expression] = STATE(2379), + [sym_option_propagation_expression] = STATE(2379), + [sym_result_propagation_expression] = STATE(2379), + [sym_anon_struct_value_expression] = STATE(2378), + [sym_go_expression] = STATE(2379), + [sym_spawn_expression] = STATE(2379), + [sym_parenthesized_expression] = STATE(2379), + [sym_call_expression] = STATE(2379), + [sym_type_initializer] = STATE(2378), + [sym_function_literal] = STATE(2379), + [sym_reference_expression] = STATE(2377), + [sym_type_reference_expression] = STATE(3460), + [sym_unary_expression] = STATE(2379), + [sym_receive_expression] = STATE(2379), + [sym_binary_expression] = STATE(2379), + [sym_as_type_cast_expression] = STATE(2379), + [sym__max_group] = STATE(2379), + [sym_literal] = STATE(2392), + [sym_map_init_expression] = STATE(2378), + [sym_array_creation] = STATE(2379), + [sym_fixed_array_creation] = STATE(2379), + [sym_selector_expression] = STATE(2379), + [sym_index_expression] = STATE(2379), + [sym_slice_expression] = STATE(2379), + [sym_if_expression] = STATE(2378), + [sym_compile_time_if_expression] = STATE(2378), + [sym_is_expression] = STATE(2379), + [sym_in_expression] = STATE(2379), + [sym_enum_fetch] = STATE(2379), + [sym_match_expression] = STATE(2378), + [sym_select_expression] = STATE(2378), + [sym_lock_expression] = STATE(2378), + [sym_unsafe_expression] = STATE(2378), + [sym_sql_expression] = STATE(2378), + [sym_c_string_literal] = STATE(2401), + [sym_raw_string_literal] = STATE(2401), + [sym_interpreted_string_literal] = STATE(2401), [sym_mutability_modifiers] = STATE(939), - [sym_plain_type] = STATE(4297), - [sym__plain_type_without_special] = STATE(2302), - [sym_anon_struct_type] = STATE(2303), - [sym_multi_return_type] = STATE(2302), - [sym_result_type] = STATE(2302), - [sym_option_type] = STATE(2302), - [sym_qualified_type] = STATE(3541), - [sym_fixed_array_type] = STATE(2303), - [sym_array_type] = STATE(2303), - [sym_pointer_type] = STATE(2303), - [sym_wrong_pointer_type] = STATE(2303), - [sym_map_type] = STATE(2303), - [sym_channel_type] = STATE(2303), - [sym_shared_type] = STATE(2303), - [sym_thread_type] = STATE(2303), - [sym_atomic_type] = STATE(2303), - [sym_generic_type] = STATE(2303), - [sym_function_type] = STATE(2303), - [sym_identifier] = ACTIONS(1807), + [sym_plain_type] = STATE(4160), + [sym__plain_type_without_special] = STATE(2360), + [sym_anon_struct_type] = STATE(2362), + [sym_multi_return_type] = STATE(2360), + [sym_result_type] = STATE(2360), + [sym_option_type] = STATE(2360), + [sym_qualified_type] = STATE(3460), + [sym_fixed_array_type] = STATE(2362), + [sym_array_type] = STATE(2362), + [sym_pointer_type] = STATE(2362), + [sym_wrong_pointer_type] = STATE(2362), + [sym_map_type] = STATE(2362), + [sym_channel_type] = STATE(2362), + [sym_shared_type] = STATE(2362), + [sym_thread_type] = STATE(2362), + [sym_atomic_type] = STATE(2362), + [sym_generic_type] = STATE(2362), + [sym_function_type] = STATE(2362), + [sym_identifier] = ACTIONS(1428), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1428), - [anon_sym_LBRACE] = ACTIONS(1430), - [anon_sym_LPAREN] = ACTIONS(1432), - [anon_sym_fn] = ACTIONS(1434), - [anon_sym_PLUS] = ACTIONS(3064), - [anon_sym_DASH] = ACTIONS(3064), - [anon_sym_STAR] = ACTIONS(3066), - [anon_sym_struct] = ACTIONS(1440), + [anon_sym_DOT] = ACTIONS(1430), + [anon_sym_LBRACE] = ACTIONS(1432), + [anon_sym_LPAREN] = ACTIONS(1434), + [anon_sym_fn] = ACTIONS(1436), + [anon_sym_PLUS] = ACTIONS(1438), + [anon_sym_DASH] = ACTIONS(1438), + [anon_sym_STAR] = ACTIONS(1440), + [anon_sym_struct] = ACTIONS(1442), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(3068), - [anon_sym_go] = ACTIONS(3070), - [anon_sym_spawn] = ACTIONS(3072), - [anon_sym_json_DOTdecode] = ACTIONS(1448), - [anon_sym_LBRACK2] = ACTIONS(1821), - [anon_sym_TILDE] = ACTIONS(3064), - [anon_sym_CARET] = ACTIONS(3064), - [anon_sym_AMP] = ACTIONS(3074), - [anon_sym_LT_DASH] = ACTIONS(3076), - [sym_none] = ACTIONS(1456), - [sym_true] = ACTIONS(1456), - [sym_false] = ACTIONS(1456), - [sym_nil] = ACTIONS(1456), - [anon_sym_if] = ACTIONS(1827), - [anon_sym_DOLLARif] = ACTIONS(1460), - [anon_sym_match] = ACTIONS(1462), - [anon_sym_select] = ACTIONS(3078), - [anon_sym_lock] = ACTIONS(3080), - [anon_sym_rlock] = ACTIONS(3080), - [anon_sym_unsafe] = ACTIONS(1833), - [anon_sym_sql] = ACTIONS(1470), - [sym_int_literal] = ACTIONS(1456), - [sym_float_literal] = ACTIONS(1472), - [sym_rune_literal] = ACTIONS(1472), - [sym_pseudo_compile_time_identifier] = ACTIONS(1474), + [anon_sym_BANG] = ACTIONS(1444), + [anon_sym_go] = ACTIONS(1446), + [anon_sym_spawn] = ACTIONS(1448), + [anon_sym_json_DOTdecode] = ACTIONS(1450), + [anon_sym_LBRACK2] = ACTIONS(1452), + [anon_sym_TILDE] = ACTIONS(1438), + [anon_sym_CARET] = ACTIONS(1438), + [anon_sym_AMP] = ACTIONS(1454), + [anon_sym_LT_DASH] = ACTIONS(1456), + [sym_none] = ACTIONS(1458), + [sym_true] = ACTIONS(1458), + [sym_false] = ACTIONS(1458), + [sym_nil] = ACTIONS(1458), + [anon_sym_if] = ACTIONS(1833), + [anon_sym_DOLLARif] = ACTIONS(1462), + [anon_sym_match] = ACTIONS(1464), + [anon_sym_select] = ACTIONS(1466), + [anon_sym_lock] = ACTIONS(1468), + [anon_sym_rlock] = ACTIONS(1468), + [anon_sym_unsafe] = ACTIONS(1839), + [anon_sym_sql] = ACTIONS(1472), + [sym_int_literal] = ACTIONS(1458), + [sym_float_literal] = ACTIONS(1474), + [sym_rune_literal] = ACTIONS(1474), + [sym_pseudo_compile_time_identifier] = ACTIONS(1476), [anon_sym_shared] = ACTIONS(83), [anon_sym_map_LBRACK] = ACTIONS(85), [anon_sym_chan] = ACTIONS(87), [anon_sym_thread] = ACTIONS(89), [anon_sym_atomic] = ACTIONS(91), - [sym___double_quote] = ACTIONS(1478), - [sym___single_quote] = ACTIONS(1480), - [sym___c_double_quote] = ACTIONS(1482), - [sym___c_single_quote] = ACTIONS(1484), - [sym___r_double_quote] = ACTIONS(1486), - [sym___r_single_quote] = ACTIONS(1488), + [sym___double_quote] = ACTIONS(1480), + [sym___single_quote] = ACTIONS(1482), + [sym___c_double_quote] = ACTIONS(1484), + [sym___c_single_quote] = ACTIONS(1486), + [sym___r_double_quote] = ACTIONS(1488), + [sym___r_single_quote] = ACTIONS(1490), }, [846] = { [sym_line_comment] = STATE(846), [sym_block_comment] = STATE(846), - [sym__expression] = STATE(2263), - [sym__expression_without_blocks] = STATE(2300), - [sym__expression_with_blocks] = STATE(2300), - [sym_inc_expression] = STATE(2307), - [sym_dec_expression] = STATE(2307), - [sym_or_block_expression] = STATE(2307), - [sym_option_propagation_expression] = STATE(2307), - [sym_result_propagation_expression] = STATE(2307), - [sym_anon_struct_value_expression] = STATE(2380), - [sym_go_expression] = STATE(2307), - [sym_spawn_expression] = STATE(2307), - [sym_parenthesized_expression] = STATE(2307), - [sym_call_expression] = STATE(2307), - [sym_type_initializer] = STATE(2380), - [sym_function_literal] = STATE(2307), - [sym_reference_expression] = STATE(2311), - [sym_type_reference_expression] = STATE(3541), - [sym_unary_expression] = STATE(2307), - [sym_receive_expression] = STATE(2307), - [sym_binary_expression] = STATE(2307), - [sym_as_type_cast_expression] = STATE(2307), - [sym__max_group] = STATE(2307), - [sym_literal] = STATE(2292), - [sym_map_init_expression] = STATE(2380), - [sym_array_creation] = STATE(2307), - [sym_fixed_array_creation] = STATE(2307), - [sym_selector_expression] = STATE(2307), - [sym_index_expression] = STATE(2307), - [sym_slice_expression] = STATE(2307), - [sym_if_expression] = STATE(2380), - [sym_compile_time_if_expression] = STATE(2380), - [sym_is_expression] = STATE(2307), - [sym_in_expression] = STATE(2307), - [sym_enum_fetch] = STATE(2307), - [sym_match_expression] = STATE(2380), - [sym_select_expression] = STATE(2380), - [sym_lock_expression] = STATE(2380), - [sym_unsafe_expression] = STATE(2380), - [sym_sql_expression] = STATE(2380), - [sym_c_string_literal] = STATE(2308), - [sym_raw_string_literal] = STATE(2308), - [sym_interpreted_string_literal] = STATE(2308), - [sym_mutability_modifiers] = STATE(632), - [sym_plain_type] = STATE(4297), - [sym__plain_type_without_special] = STATE(2302), - [sym_anon_struct_type] = STATE(2303), - [sym_multi_return_type] = STATE(2302), - [sym_result_type] = STATE(2302), - [sym_option_type] = STATE(2302), - [sym_qualified_type] = STATE(3541), - [sym_fixed_array_type] = STATE(2303), - [sym_array_type] = STATE(2303), - [sym_pointer_type] = STATE(2303), - [sym_wrong_pointer_type] = STATE(2303), - [sym_map_type] = STATE(2303), - [sym_channel_type] = STATE(2303), - [sym_shared_type] = STATE(2303), - [sym_thread_type] = STATE(2303), - [sym_atomic_type] = STATE(2303), - [sym_generic_type] = STATE(2303), - [sym_function_type] = STATE(2303), - [sym_identifier] = ACTIONS(1807), + [sym__expression] = STATE(2420), + [sym__expression_without_blocks] = STATE(2347), + [sym__expression_with_blocks] = STATE(2347), + [sym_inc_expression] = STATE(2379), + [sym_dec_expression] = STATE(2379), + [sym_or_block_expression] = STATE(2379), + [sym_option_propagation_expression] = STATE(2379), + [sym_result_propagation_expression] = STATE(2379), + [sym_anon_struct_value_expression] = STATE(2378), + [sym_go_expression] = STATE(2379), + [sym_spawn_expression] = STATE(2379), + [sym_parenthesized_expression] = STATE(2379), + [sym_call_expression] = STATE(2379), + [sym_type_initializer] = STATE(2378), + [sym_function_literal] = STATE(2379), + [sym_reference_expression] = STATE(2377), + [sym_type_reference_expression] = STATE(3460), + [sym_unary_expression] = STATE(2379), + [sym_receive_expression] = STATE(2379), + [sym_binary_expression] = STATE(2379), + [sym_as_type_cast_expression] = STATE(2379), + [sym__max_group] = STATE(2379), + [sym_literal] = STATE(2392), + [sym_map_init_expression] = STATE(2378), + [sym_array_creation] = STATE(2379), + [sym_fixed_array_creation] = STATE(2379), + [sym_selector_expression] = STATE(2379), + [sym_index_expression] = STATE(2379), + [sym_slice_expression] = STATE(2379), + [sym_if_expression] = STATE(2378), + [sym_compile_time_if_expression] = STATE(2378), + [sym_is_expression] = STATE(2379), + [sym_in_expression] = STATE(2379), + [sym_enum_fetch] = STATE(2379), + [sym_match_expression] = STATE(2378), + [sym_select_expression] = STATE(2378), + [sym_lock_expression] = STATE(2378), + [sym_unsafe_expression] = STATE(2378), + [sym_sql_expression] = STATE(2378), + [sym_c_string_literal] = STATE(2401), + [sym_raw_string_literal] = STATE(2401), + [sym_interpreted_string_literal] = STATE(2401), + [sym_mutability_modifiers] = STATE(939), + [sym_plain_type] = STATE(4160), + [sym__plain_type_without_special] = STATE(2360), + [sym_anon_struct_type] = STATE(2362), + [sym_multi_return_type] = STATE(2360), + [sym_result_type] = STATE(2360), + [sym_option_type] = STATE(2360), + [sym_qualified_type] = STATE(3460), + [sym_fixed_array_type] = STATE(2362), + [sym_array_type] = STATE(2362), + [sym_pointer_type] = STATE(2362), + [sym_wrong_pointer_type] = STATE(2362), + [sym_map_type] = STATE(2362), + [sym_channel_type] = STATE(2362), + [sym_shared_type] = STATE(2362), + [sym_thread_type] = STATE(2362), + [sym_atomic_type] = STATE(2362), + [sym_generic_type] = STATE(2362), + [sym_function_type] = STATE(2362), + [sym_identifier] = ACTIONS(1428), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1428), - [anon_sym_LBRACE] = ACTIONS(1430), - [anon_sym_LPAREN] = ACTIONS(1432), - [anon_sym_fn] = ACTIONS(1434), - [anon_sym_PLUS] = ACTIONS(1811), - [anon_sym_DASH] = ACTIONS(1811), - [anon_sym_STAR] = ACTIONS(1813), - [anon_sym_struct] = ACTIONS(1440), + [anon_sym_DOT] = ACTIONS(1430), + [anon_sym_LBRACE] = ACTIONS(1432), + [anon_sym_LPAREN] = ACTIONS(1434), + [anon_sym_fn] = ACTIONS(1436), + [anon_sym_PLUS] = ACTIONS(1438), + [anon_sym_DASH] = ACTIONS(1438), + [anon_sym_STAR] = ACTIONS(1440), + [anon_sym_struct] = ACTIONS(1442), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(1815), - [anon_sym_go] = ACTIONS(1817), - [anon_sym_spawn] = ACTIONS(1819), - [anon_sym_json_DOTdecode] = ACTIONS(1448), - [anon_sym_LBRACK2] = ACTIONS(1821), - [anon_sym_TILDE] = ACTIONS(1811), - [anon_sym_CARET] = ACTIONS(1811), - [anon_sym_AMP] = ACTIONS(1823), - [anon_sym_LT_DASH] = ACTIONS(1825), - [sym_none] = ACTIONS(1456), - [sym_true] = ACTIONS(1456), - [sym_false] = ACTIONS(1456), - [sym_nil] = ACTIONS(1456), - [anon_sym_if] = ACTIONS(1827), - [anon_sym_DOLLARif] = ACTIONS(1460), - [anon_sym_match] = ACTIONS(1462), - [anon_sym_select] = ACTIONS(1829), - [anon_sym_lock] = ACTIONS(1831), - [anon_sym_rlock] = ACTIONS(1831), - [anon_sym_unsafe] = ACTIONS(1833), - [anon_sym_sql] = ACTIONS(1470), - [sym_int_literal] = ACTIONS(1456), - [sym_float_literal] = ACTIONS(1472), - [sym_rune_literal] = ACTIONS(1472), - [sym_pseudo_compile_time_identifier] = ACTIONS(1474), + [anon_sym_BANG] = ACTIONS(1444), + [anon_sym_go] = ACTIONS(1446), + [anon_sym_spawn] = ACTIONS(1448), + [anon_sym_json_DOTdecode] = ACTIONS(1450), + [anon_sym_LBRACK2] = ACTIONS(1452), + [anon_sym_TILDE] = ACTIONS(1438), + [anon_sym_CARET] = ACTIONS(1438), + [anon_sym_AMP] = ACTIONS(1454), + [anon_sym_LT_DASH] = ACTIONS(1456), + [sym_none] = ACTIONS(1458), + [sym_true] = ACTIONS(1458), + [sym_false] = ACTIONS(1458), + [sym_nil] = ACTIONS(1458), + [anon_sym_if] = ACTIONS(1833), + [anon_sym_DOLLARif] = ACTIONS(1462), + [anon_sym_match] = ACTIONS(1464), + [anon_sym_select] = ACTIONS(1466), + [anon_sym_lock] = ACTIONS(1468), + [anon_sym_rlock] = ACTIONS(1468), + [anon_sym_unsafe] = ACTIONS(1839), + [anon_sym_sql] = ACTIONS(1472), + [sym_int_literal] = ACTIONS(1458), + [sym_float_literal] = ACTIONS(1474), + [sym_rune_literal] = ACTIONS(1474), + [sym_pseudo_compile_time_identifier] = ACTIONS(1476), [anon_sym_shared] = ACTIONS(83), [anon_sym_map_LBRACK] = ACTIONS(85), [anon_sym_chan] = ACTIONS(87), [anon_sym_thread] = ACTIONS(89), [anon_sym_atomic] = ACTIONS(91), - [sym___double_quote] = ACTIONS(1478), - [sym___single_quote] = ACTIONS(1480), - [sym___c_double_quote] = ACTIONS(1482), - [sym___c_single_quote] = ACTIONS(1484), - [sym___r_double_quote] = ACTIONS(1486), - [sym___r_single_quote] = ACTIONS(1488), + [sym___double_quote] = ACTIONS(1480), + [sym___single_quote] = ACTIONS(1482), + [sym___c_double_quote] = ACTIONS(1484), + [sym___c_single_quote] = ACTIONS(1486), + [sym___r_double_quote] = ACTIONS(1488), + [sym___r_single_quote] = ACTIONS(1490), }, [847] = { [sym_line_comment] = STATE(847), [sym_block_comment] = STATE(847), - [sym__expression] = STATE(1125), - [sym__expression_without_blocks] = STATE(1141), - [sym__expression_with_blocks] = STATE(1141), - [sym_inc_expression] = STATE(1140), - [sym_dec_expression] = STATE(1140), - [sym_or_block_expression] = STATE(1140), - [sym_option_propagation_expression] = STATE(1140), - [sym_result_propagation_expression] = STATE(1140), - [sym_anon_struct_value_expression] = STATE(1199), - [sym_go_expression] = STATE(1140), - [sym_spawn_expression] = STATE(1140), - [sym_parenthesized_expression] = STATE(1140), - [sym_call_expression] = STATE(1140), - [sym_type_initializer] = STATE(1199), - [sym_function_literal] = STATE(1140), - [sym_reference_expression] = STATE(1181), - [sym_type_reference_expression] = STATE(3541), - [sym_unary_expression] = STATE(1140), - [sym_receive_expression] = STATE(1140), - [sym_binary_expression] = STATE(1140), - [sym_as_type_cast_expression] = STATE(1140), - [sym__max_group] = STATE(1140), - [sym_literal] = STATE(1146), - [sym_map_init_expression] = STATE(1199), - [sym_array_creation] = STATE(1140), - [sym_fixed_array_creation] = STATE(1140), - [sym_selector_expression] = STATE(1140), - [sym_index_expression] = STATE(1140), - [sym_slice_expression] = STATE(1140), - [sym_if_expression] = STATE(1199), - [sym_compile_time_if_expression] = STATE(1199), - [sym_is_expression] = STATE(1140), - [sym_in_expression] = STATE(1140), - [sym_enum_fetch] = STATE(1140), - [sym_match_expression] = STATE(1199), - [sym_select_expression] = STATE(1199), - [sym_lock_expression] = STATE(1199), - [sym_unsafe_expression] = STATE(1199), - [sym_sql_expression] = STATE(1199), - [sym_c_string_literal] = STATE(1147), - [sym_raw_string_literal] = STATE(1147), - [sym_interpreted_string_literal] = STATE(1147), - [sym_mutability_modifiers] = STATE(638), - [sym_plain_type] = STATE(4234), - [sym__plain_type_without_special] = STATE(2302), - [sym_anon_struct_type] = STATE(2303), - [sym_multi_return_type] = STATE(2302), - [sym_result_type] = STATE(2302), - [sym_option_type] = STATE(2302), - [sym_qualified_type] = STATE(3541), - [sym_fixed_array_type] = STATE(2303), - [sym_array_type] = STATE(2303), - [sym_pointer_type] = STATE(2303), - [sym_wrong_pointer_type] = STATE(2303), - [sym_map_type] = STATE(2303), - [sym_channel_type] = STATE(2303), - [sym_shared_type] = STATE(2303), - [sym_thread_type] = STATE(2303), - [sym_atomic_type] = STATE(2303), - [sym_generic_type] = STATE(2303), - [sym_function_type] = STATE(2303), - [sym_identifier] = ACTIONS(1071), + [sym__expression] = STATE(2639), + [sym__expression_without_blocks] = STATE(2347), + [sym__expression_with_blocks] = STATE(2347), + [sym_inc_expression] = STATE(2379), + [sym_dec_expression] = STATE(2379), + [sym_or_block_expression] = STATE(2379), + [sym_option_propagation_expression] = STATE(2379), + [sym_result_propagation_expression] = STATE(2379), + [sym_anon_struct_value_expression] = STATE(2378), + [sym_go_expression] = STATE(2379), + [sym_spawn_expression] = STATE(2379), + [sym_parenthesized_expression] = STATE(2379), + [sym_call_expression] = STATE(2379), + [sym_type_initializer] = STATE(2378), + [sym_function_literal] = STATE(2379), + [sym_reference_expression] = STATE(2377), + [sym_type_reference_expression] = STATE(3460), + [sym_unary_expression] = STATE(2379), + [sym_receive_expression] = STATE(2379), + [sym_binary_expression] = STATE(2379), + [sym_as_type_cast_expression] = STATE(2379), + [sym__max_group] = STATE(2379), + [sym_literal] = STATE(2392), + [sym_map_init_expression] = STATE(2378), + [sym_array_creation] = STATE(2379), + [sym_fixed_array_creation] = STATE(2379), + [sym_selector_expression] = STATE(2379), + [sym_index_expression] = STATE(2379), + [sym_slice_expression] = STATE(2379), + [sym_if_expression] = STATE(2378), + [sym_compile_time_if_expression] = STATE(2378), + [sym_is_expression] = STATE(2379), + [sym_in_expression] = STATE(2379), + [sym_enum_fetch] = STATE(2379), + [sym_match_expression] = STATE(2378), + [sym_select_expression] = STATE(2378), + [sym_lock_expression] = STATE(2378), + [sym_unsafe_expression] = STATE(2378), + [sym_sql_expression] = STATE(2378), + [sym_c_string_literal] = STATE(2401), + [sym_raw_string_literal] = STATE(2401), + [sym_interpreted_string_literal] = STATE(2401), + [sym_mutability_modifiers] = STATE(939), + [sym_plain_type] = STATE(4160), + [sym__plain_type_without_special] = STATE(2360), + [sym_anon_struct_type] = STATE(2362), + [sym_multi_return_type] = STATE(2360), + [sym_result_type] = STATE(2360), + [sym_option_type] = STATE(2360), + [sym_qualified_type] = STATE(3460), + [sym_fixed_array_type] = STATE(2362), + [sym_array_type] = STATE(2362), + [sym_pointer_type] = STATE(2362), + [sym_wrong_pointer_type] = STATE(2362), + [sym_map_type] = STATE(2362), + [sym_channel_type] = STATE(2362), + [sym_shared_type] = STATE(2362), + [sym_thread_type] = STATE(2362), + [sym_atomic_type] = STATE(2362), + [sym_generic_type] = STATE(2362), + [sym_function_type] = STATE(2362), + [sym_identifier] = ACTIONS(1815), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(631), - [anon_sym_LBRACE] = ACTIONS(633), - [anon_sym_LPAREN] = ACTIONS(637), - [anon_sym_fn] = ACTIONS(641), - [anon_sym_PLUS] = ACTIONS(643), - [anon_sym_DASH] = ACTIONS(643), - [anon_sym_STAR] = ACTIONS(645), - [anon_sym_struct] = ACTIONS(649), + [anon_sym_DOT] = ACTIONS(1430), + [anon_sym_LBRACE] = ACTIONS(1432), + [anon_sym_LPAREN] = ACTIONS(1434), + [anon_sym_fn] = ACTIONS(1436), + [anon_sym_PLUS] = ACTIONS(3090), + [anon_sym_DASH] = ACTIONS(3090), + [anon_sym_STAR] = ACTIONS(3092), + [anon_sym_struct] = ACTIONS(1442), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(655), - [anon_sym_go] = ACTIONS(657), - [anon_sym_spawn] = ACTIONS(659), - [anon_sym_json_DOTdecode] = ACTIONS(661), - [anon_sym_LBRACK2] = ACTIONS(663), - [anon_sym_TILDE] = ACTIONS(643), - [anon_sym_CARET] = ACTIONS(643), - [anon_sym_AMP] = ACTIONS(665), - [anon_sym_LT_DASH] = ACTIONS(667), - [sym_none] = ACTIONS(669), - [sym_true] = ACTIONS(669), - [sym_false] = ACTIONS(669), - [sym_nil] = ACTIONS(669), - [anon_sym_if] = ACTIONS(671), - [anon_sym_DOLLARif] = ACTIONS(673), - [anon_sym_match] = ACTIONS(675), - [anon_sym_select] = ACTIONS(677), - [anon_sym_lock] = ACTIONS(679), - [anon_sym_rlock] = ACTIONS(679), - [anon_sym_unsafe] = ACTIONS(681), - [anon_sym_sql] = ACTIONS(683), - [sym_int_literal] = ACTIONS(669), - [sym_float_literal] = ACTIONS(685), - [sym_rune_literal] = ACTIONS(685), - [sym_pseudo_compile_time_identifier] = ACTIONS(687), + [anon_sym_BANG] = ACTIONS(3094), + [anon_sym_go] = ACTIONS(3096), + [anon_sym_spawn] = ACTIONS(3098), + [anon_sym_json_DOTdecode] = ACTIONS(1450), + [anon_sym_LBRACK2] = ACTIONS(1827), + [anon_sym_TILDE] = ACTIONS(3090), + [anon_sym_CARET] = ACTIONS(3090), + [anon_sym_AMP] = ACTIONS(3100), + [anon_sym_LT_DASH] = ACTIONS(3102), + [sym_none] = ACTIONS(1458), + [sym_true] = ACTIONS(1458), + [sym_false] = ACTIONS(1458), + [sym_nil] = ACTIONS(1458), + [anon_sym_if] = ACTIONS(1833), + [anon_sym_DOLLARif] = ACTIONS(1462), + [anon_sym_match] = ACTIONS(1464), + [anon_sym_select] = ACTIONS(3104), + [anon_sym_lock] = ACTIONS(3106), + [anon_sym_rlock] = ACTIONS(3106), + [anon_sym_unsafe] = ACTIONS(1839), + [anon_sym_sql] = ACTIONS(1472), + [sym_int_literal] = ACTIONS(1458), + [sym_float_literal] = ACTIONS(1474), + [sym_rune_literal] = ACTIONS(1474), + [sym_pseudo_compile_time_identifier] = ACTIONS(1476), [anon_sym_shared] = ACTIONS(83), [anon_sym_map_LBRACK] = ACTIONS(85), [anon_sym_chan] = ACTIONS(87), [anon_sym_thread] = ACTIONS(89), [anon_sym_atomic] = ACTIONS(91), - [sym___double_quote] = ACTIONS(689), - [sym___single_quote] = ACTIONS(691), - [sym___c_double_quote] = ACTIONS(693), - [sym___c_single_quote] = ACTIONS(695), - [sym___r_double_quote] = ACTIONS(697), - [sym___r_single_quote] = ACTIONS(699), + [sym___double_quote] = ACTIONS(1480), + [sym___single_quote] = ACTIONS(1482), + [sym___c_double_quote] = ACTIONS(1484), + [sym___c_single_quote] = ACTIONS(1486), + [sym___r_double_quote] = ACTIONS(1488), + [sym___r_single_quote] = ACTIONS(1490), }, [848] = { [sym_line_comment] = STATE(848), [sym_block_comment] = STATE(848), - [sym__expression] = STATE(2787), - [sym__expression_without_blocks] = STATE(2300), - [sym__expression_with_blocks] = STATE(2300), - [sym_inc_expression] = STATE(2307), - [sym_dec_expression] = STATE(2307), - [sym_or_block_expression] = STATE(2307), - [sym_option_propagation_expression] = STATE(2307), - [sym_result_propagation_expression] = STATE(2307), - [sym_anon_struct_value_expression] = STATE(2380), - [sym_go_expression] = STATE(2307), - [sym_spawn_expression] = STATE(2307), - [sym_parenthesized_expression] = STATE(2307), - [sym_call_expression] = STATE(2307), - [sym_type_initializer] = STATE(2380), - [sym_function_literal] = STATE(2307), - [sym_reference_expression] = STATE(2311), - [sym_type_reference_expression] = STATE(3541), - [sym_unary_expression] = STATE(2307), - [sym_receive_expression] = STATE(2307), - [sym_binary_expression] = STATE(2307), - [sym_as_type_cast_expression] = STATE(2307), - [sym__max_group] = STATE(2307), - [sym_literal] = STATE(2292), - [sym_map_init_expression] = STATE(2380), - [sym_array_creation] = STATE(2307), - [sym_fixed_array_creation] = STATE(2307), - [sym_selector_expression] = STATE(2307), - [sym_index_expression] = STATE(2307), - [sym_slice_expression] = STATE(2307), - [sym_if_expression] = STATE(2380), - [sym_compile_time_if_expression] = STATE(2380), - [sym_is_expression] = STATE(2307), - [sym_in_expression] = STATE(2307), - [sym_enum_fetch] = STATE(2307), - [sym_match_expression] = STATE(2380), - [sym_select_expression] = STATE(2380), - [sym_lock_expression] = STATE(2380), - [sym_unsafe_expression] = STATE(2380), - [sym_sql_expression] = STATE(2380), - [sym_c_string_literal] = STATE(2308), - [sym_raw_string_literal] = STATE(2308), - [sym_interpreted_string_literal] = STATE(2308), + [sym__expression] = STATE(2265), + [sym__expression_without_blocks] = STATE(2347), + [sym__expression_with_blocks] = STATE(2347), + [sym_inc_expression] = STATE(2379), + [sym_dec_expression] = STATE(2379), + [sym_or_block_expression] = STATE(2379), + [sym_option_propagation_expression] = STATE(2379), + [sym_result_propagation_expression] = STATE(2379), + [sym_anon_struct_value_expression] = STATE(2378), + [sym_go_expression] = STATE(2379), + [sym_spawn_expression] = STATE(2379), + [sym_parenthesized_expression] = STATE(2379), + [sym_call_expression] = STATE(2379), + [sym_type_initializer] = STATE(2378), + [sym_function_literal] = STATE(2379), + [sym_reference_expression] = STATE(2377), + [sym_type_reference_expression] = STATE(3460), + [sym_unary_expression] = STATE(2379), + [sym_receive_expression] = STATE(2379), + [sym_binary_expression] = STATE(2379), + [sym_as_type_cast_expression] = STATE(2379), + [sym__max_group] = STATE(2379), + [sym_literal] = STATE(2392), + [sym_map_init_expression] = STATE(2378), + [sym_array_creation] = STATE(2379), + [sym_fixed_array_creation] = STATE(2379), + [sym_selector_expression] = STATE(2379), + [sym_index_expression] = STATE(2379), + [sym_slice_expression] = STATE(2379), + [sym_if_expression] = STATE(2378), + [sym_compile_time_if_expression] = STATE(2378), + [sym_is_expression] = STATE(2379), + [sym_in_expression] = STATE(2379), + [sym_enum_fetch] = STATE(2379), + [sym_match_expression] = STATE(2378), + [sym_select_expression] = STATE(2378), + [sym_lock_expression] = STATE(2378), + [sym_unsafe_expression] = STATE(2378), + [sym_sql_expression] = STATE(2378), + [sym_c_string_literal] = STATE(2401), + [sym_raw_string_literal] = STATE(2401), + [sym_interpreted_string_literal] = STATE(2401), [sym_mutability_modifiers] = STATE(939), - [sym_plain_type] = STATE(4297), - [sym__plain_type_without_special] = STATE(2302), - [sym_anon_struct_type] = STATE(2303), - [sym_multi_return_type] = STATE(2302), - [sym_result_type] = STATE(2302), - [sym_option_type] = STATE(2302), - [sym_qualified_type] = STATE(3541), - [sym_fixed_array_type] = STATE(2303), - [sym_array_type] = STATE(2303), - [sym_pointer_type] = STATE(2303), - [sym_wrong_pointer_type] = STATE(2303), - [sym_map_type] = STATE(2303), - [sym_channel_type] = STATE(2303), - [sym_shared_type] = STATE(2303), - [sym_thread_type] = STATE(2303), - [sym_atomic_type] = STATE(2303), - [sym_generic_type] = STATE(2303), - [sym_function_type] = STATE(2303), - [sym_identifier] = ACTIONS(2189), + [sym_plain_type] = STATE(4160), + [sym__plain_type_without_special] = STATE(2360), + [sym_anon_struct_type] = STATE(2362), + [sym_multi_return_type] = STATE(2360), + [sym_result_type] = STATE(2360), + [sym_option_type] = STATE(2360), + [sym_qualified_type] = STATE(3460), + [sym_fixed_array_type] = STATE(2362), + [sym_array_type] = STATE(2362), + [sym_pointer_type] = STATE(2362), + [sym_wrong_pointer_type] = STATE(2362), + [sym_map_type] = STATE(2362), + [sym_channel_type] = STATE(2362), + [sym_shared_type] = STATE(2362), + [sym_thread_type] = STATE(2362), + [sym_atomic_type] = STATE(2362), + [sym_generic_type] = STATE(2362), + [sym_function_type] = STATE(2362), + [sym_identifier] = ACTIONS(1428), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1428), - [anon_sym_LBRACE] = ACTIONS(1430), - [anon_sym_LPAREN] = ACTIONS(1432), - [anon_sym_fn] = ACTIONS(1434), - [anon_sym_PLUS] = ACTIONS(2491), - [anon_sym_DASH] = ACTIONS(2491), - [anon_sym_STAR] = ACTIONS(3354), - [anon_sym_struct] = ACTIONS(1440), + [anon_sym_DOT] = ACTIONS(1430), + [anon_sym_LBRACE] = ACTIONS(1432), + [anon_sym_LPAREN] = ACTIONS(1434), + [anon_sym_fn] = ACTIONS(1436), + [anon_sym_PLUS] = ACTIONS(1438), + [anon_sym_DASH] = ACTIONS(1438), + [anon_sym_STAR] = ACTIONS(1440), + [anon_sym_struct] = ACTIONS(1442), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(3356), - [anon_sym_go] = ACTIONS(2497), - [anon_sym_spawn] = ACTIONS(2499), - [anon_sym_json_DOTdecode] = ACTIONS(1448), - [anon_sym_LBRACK2] = ACTIONS(1450), - [anon_sym_TILDE] = ACTIONS(2491), - [anon_sym_CARET] = ACTIONS(2491), - [anon_sym_AMP] = ACTIONS(3358), - [anon_sym_LT_DASH] = ACTIONS(2503), - [sym_none] = ACTIONS(1456), - [sym_true] = ACTIONS(1456), - [sym_false] = ACTIONS(1456), - [sym_nil] = ACTIONS(1456), - [anon_sym_if] = ACTIONS(1827), - [anon_sym_DOLLARif] = ACTIONS(1460), - [anon_sym_match] = ACTIONS(1462), - [anon_sym_select] = ACTIONS(1464), - [anon_sym_lock] = ACTIONS(1466), - [anon_sym_rlock] = ACTIONS(1466), - [anon_sym_unsafe] = ACTIONS(1833), - [anon_sym_sql] = ACTIONS(1470), - [sym_int_literal] = ACTIONS(1456), - [sym_float_literal] = ACTIONS(1472), - [sym_rune_literal] = ACTIONS(1472), - [sym_pseudo_compile_time_identifier] = ACTIONS(1474), + [anon_sym_BANG] = ACTIONS(1444), + [anon_sym_go] = ACTIONS(1446), + [anon_sym_spawn] = ACTIONS(1448), + [anon_sym_json_DOTdecode] = ACTIONS(1450), + [anon_sym_LBRACK2] = ACTIONS(1452), + [anon_sym_TILDE] = ACTIONS(1438), + [anon_sym_CARET] = ACTIONS(1438), + [anon_sym_AMP] = ACTIONS(1454), + [anon_sym_LT_DASH] = ACTIONS(1456), + [sym_none] = ACTIONS(1458), + [sym_true] = ACTIONS(1458), + [sym_false] = ACTIONS(1458), + [sym_nil] = ACTIONS(1458), + [anon_sym_if] = ACTIONS(1833), + [anon_sym_DOLLARif] = ACTIONS(1462), + [anon_sym_match] = ACTIONS(1464), + [anon_sym_select] = ACTIONS(1466), + [anon_sym_lock] = ACTIONS(1468), + [anon_sym_rlock] = ACTIONS(1468), + [anon_sym_unsafe] = ACTIONS(1839), + [anon_sym_sql] = ACTIONS(1472), + [sym_int_literal] = ACTIONS(1458), + [sym_float_literal] = ACTIONS(1474), + [sym_rune_literal] = ACTIONS(1474), + [sym_pseudo_compile_time_identifier] = ACTIONS(1476), [anon_sym_shared] = ACTIONS(83), [anon_sym_map_LBRACK] = ACTIONS(85), [anon_sym_chan] = ACTIONS(87), [anon_sym_thread] = ACTIONS(89), [anon_sym_atomic] = ACTIONS(91), - [sym___double_quote] = ACTIONS(1478), - [sym___single_quote] = ACTIONS(1480), - [sym___c_double_quote] = ACTIONS(1482), - [sym___c_single_quote] = ACTIONS(1484), - [sym___r_double_quote] = ACTIONS(1486), - [sym___r_single_quote] = ACTIONS(1488), + [sym___double_quote] = ACTIONS(1480), + [sym___single_quote] = ACTIONS(1482), + [sym___c_double_quote] = ACTIONS(1484), + [sym___c_single_quote] = ACTIONS(1486), + [sym___r_double_quote] = ACTIONS(1488), + [sym___r_single_quote] = ACTIONS(1490), }, [849] = { [sym_line_comment] = STATE(849), [sym_block_comment] = STATE(849), - [sym__expression] = STATE(2831), - [sym__expression_without_blocks] = STATE(2300), - [sym__expression_with_blocks] = STATE(2300), - [sym_inc_expression] = STATE(2307), - [sym_dec_expression] = STATE(2307), - [sym_or_block_expression] = STATE(2307), - [sym_option_propagation_expression] = STATE(2307), - [sym_result_propagation_expression] = STATE(2307), - [sym_anon_struct_value_expression] = STATE(2380), - [sym_go_expression] = STATE(2307), - [sym_spawn_expression] = STATE(2307), - [sym_parenthesized_expression] = STATE(2307), - [sym_call_expression] = STATE(2307), - [sym_type_initializer] = STATE(2380), - [sym_function_literal] = STATE(2307), - [sym_reference_expression] = STATE(2919), - [sym_type_reference_expression] = STATE(3541), - [sym_unary_expression] = STATE(2307), - [sym_receive_expression] = STATE(2307), - [sym_binary_expression] = STATE(2307), - [sym_as_type_cast_expression] = STATE(2307), - [sym__max_group] = STATE(2307), - [sym_literal] = STATE(2292), - [sym_map_init_expression] = STATE(2380), - [sym_array_creation] = STATE(2307), - [sym_fixed_array_creation] = STATE(2307), - [sym_selector_expression] = STATE(2914), - [sym_index_expression] = STATE(2307), - [sym_slice_expression] = STATE(2307), - [sym_if_expression] = STATE(2380), - [sym_compile_time_if_expression] = STATE(2380), - [sym_is_expression] = STATE(2307), - [sym_in_expression] = STATE(2307), - [sym_enum_fetch] = STATE(2307), - [sym_match_expression] = STATE(2380), - [sym_select_expression] = STATE(2380), - [sym_lock_expression] = STATE(2380), - [sym_unsafe_expression] = STATE(2380), - [sym_sql_expression] = STATE(2380), - [sym_c_string_literal] = STATE(2308), - [sym_raw_string_literal] = STATE(2308), - [sym_interpreted_string_literal] = STATE(2308), - [sym_mutability_modifiers] = STATE(939), - [sym_plain_type] = STATE(4297), - [sym__plain_type_without_special] = STATE(2302), - [sym_anon_struct_type] = STATE(2303), - [sym_multi_return_type] = STATE(2302), - [sym_result_type] = STATE(2302), - [sym_option_type] = STATE(2302), - [sym_qualified_type] = STATE(3541), - [sym_fixed_array_type] = STATE(2303), - [sym_array_type] = STATE(2303), - [sym_pointer_type] = STATE(2303), - [sym_wrong_pointer_type] = STATE(2303), - [sym_map_type] = STATE(2303), - [sym_channel_type] = STATE(2303), - [sym_shared_type] = STATE(2303), - [sym_thread_type] = STATE(2303), - [sym_atomic_type] = STATE(2303), - [sym_generic_type] = STATE(2303), - [sym_function_type] = STATE(2303), - [sym_identifier] = ACTIONS(2189), + [sym__expression] = STATE(1285), + [sym__expression_without_blocks] = STATE(1318), + [sym__expression_with_blocks] = STATE(1318), + [sym_inc_expression] = STATE(1319), + [sym_dec_expression] = STATE(1319), + [sym_or_block_expression] = STATE(1319), + [sym_option_propagation_expression] = STATE(1319), + [sym_result_propagation_expression] = STATE(1319), + [sym_anon_struct_value_expression] = STATE(1320), + [sym_go_expression] = STATE(1319), + [sym_spawn_expression] = STATE(1319), + [sym_parenthesized_expression] = STATE(1319), + [sym_call_expression] = STATE(1319), + [sym_type_initializer] = STATE(1320), + [sym_function_literal] = STATE(1319), + [sym_reference_expression] = STATE(1298), + [sym_type_reference_expression] = STATE(3460), + [sym_unary_expression] = STATE(1319), + [sym_receive_expression] = STATE(1319), + [sym_binary_expression] = STATE(1319), + [sym_as_type_cast_expression] = STATE(1319), + [sym__max_group] = STATE(1319), + [sym_literal] = STATE(1314), + [sym_map_init_expression] = STATE(1320), + [sym_array_creation] = STATE(1319), + [sym_fixed_array_creation] = STATE(1319), + [sym_selector_expression] = STATE(1319), + [sym_index_expression] = STATE(1319), + [sym_slice_expression] = STATE(1319), + [sym_if_expression] = STATE(1320), + [sym_compile_time_if_expression] = STATE(1320), + [sym_is_expression] = STATE(1319), + [sym_in_expression] = STATE(1319), + [sym_enum_fetch] = STATE(1319), + [sym_match_expression] = STATE(1320), + [sym_select_expression] = STATE(1320), + [sym_lock_expression] = STATE(1320), + [sym_unsafe_expression] = STATE(1320), + [sym_sql_expression] = STATE(1320), + [sym_c_string_literal] = STATE(1291), + [sym_raw_string_literal] = STATE(1291), + [sym_interpreted_string_literal] = STATE(1291), + [sym_mutability_modifiers] = STATE(639), + [sym_plain_type] = STATE(4307), + [sym__plain_type_without_special] = STATE(2360), + [sym_anon_struct_type] = STATE(2362), + [sym_multi_return_type] = STATE(2360), + [sym_result_type] = STATE(2360), + [sym_option_type] = STATE(2360), + [sym_qualified_type] = STATE(3460), + [sym_fixed_array_type] = STATE(2362), + [sym_array_type] = STATE(2362), + [sym_pointer_type] = STATE(2362), + [sym_wrong_pointer_type] = STATE(2362), + [sym_map_type] = STATE(2362), + [sym_channel_type] = STATE(2362), + [sym_shared_type] = STATE(2362), + [sym_thread_type] = STATE(2362), + [sym_atomic_type] = STATE(2362), + [sym_generic_type] = STATE(2362), + [sym_function_type] = STATE(2362), + [sym_identifier] = ACTIONS(1360), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1428), - [anon_sym_LBRACE] = ACTIONS(1430), - [anon_sym_LPAREN] = ACTIONS(1432), - [anon_sym_fn] = ACTIONS(1434), - [anon_sym_PLUS] = ACTIONS(1436), - [anon_sym_DASH] = ACTIONS(1436), - [anon_sym_STAR] = ACTIONS(1438), - [anon_sym_struct] = ACTIONS(1440), + [anon_sym_DOT] = ACTIONS(1362), + [anon_sym_LBRACE] = ACTIONS(1364), + [anon_sym_LPAREN] = ACTIONS(1366), + [anon_sym_fn] = ACTIONS(1368), + [anon_sym_PLUS] = ACTIONS(1851), + [anon_sym_DASH] = ACTIONS(1851), + [anon_sym_STAR] = ACTIONS(1853), + [anon_sym_struct] = ACTIONS(1376), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(1442), - [anon_sym_go] = ACTIONS(1444), - [anon_sym_spawn] = ACTIONS(1446), - [anon_sym_json_DOTdecode] = ACTIONS(1448), - [anon_sym_LBRACK2] = ACTIONS(1450), - [anon_sym_TILDE] = ACTIONS(1436), - [anon_sym_CARET] = ACTIONS(1436), - [anon_sym_AMP] = ACTIONS(1452), - [anon_sym_LT_DASH] = ACTIONS(1454), - [sym_none] = ACTIONS(1456), - [sym_true] = ACTIONS(1456), - [sym_false] = ACTIONS(1456), - [sym_nil] = ACTIONS(1456), - [anon_sym_if] = ACTIONS(1827), - [anon_sym_DOLLARif] = ACTIONS(1460), - [anon_sym_match] = ACTIONS(1462), - [anon_sym_select] = ACTIONS(1464), - [anon_sym_lock] = ACTIONS(1466), - [anon_sym_rlock] = ACTIONS(1466), - [anon_sym_unsafe] = ACTIONS(1833), - [anon_sym_sql] = ACTIONS(1470), - [sym_int_literal] = ACTIONS(1456), - [sym_float_literal] = ACTIONS(1472), - [sym_rune_literal] = ACTIONS(1472), - [sym_pseudo_compile_time_identifier] = ACTIONS(1474), + [anon_sym_BANG] = ACTIONS(1855), + [anon_sym_go] = ACTIONS(1857), + [anon_sym_spawn] = ACTIONS(1859), + [anon_sym_json_DOTdecode] = ACTIONS(1384), + [anon_sym_LBRACK2] = ACTIONS(1386), + [anon_sym_TILDE] = ACTIONS(1851), + [anon_sym_CARET] = ACTIONS(1851), + [anon_sym_AMP] = ACTIONS(1861), + [anon_sym_LT_DASH] = ACTIONS(1863), + [sym_none] = ACTIONS(1392), + [sym_true] = ACTIONS(1392), + [sym_false] = ACTIONS(1392), + [sym_nil] = ACTIONS(1392), + [anon_sym_if] = ACTIONS(1865), + [anon_sym_DOLLARif] = ACTIONS(1396), + [anon_sym_match] = ACTIONS(1398), + [anon_sym_select] = ACTIONS(1867), + [anon_sym_lock] = ACTIONS(1869), + [anon_sym_rlock] = ACTIONS(1869), + [anon_sym_unsafe] = ACTIONS(1871), + [anon_sym_sql] = ACTIONS(1406), + [sym_int_literal] = ACTIONS(1392), + [sym_float_literal] = ACTIONS(1410), + [sym_rune_literal] = ACTIONS(1410), + [sym_pseudo_compile_time_identifier] = ACTIONS(1412), [anon_sym_shared] = ACTIONS(83), [anon_sym_map_LBRACK] = ACTIONS(85), [anon_sym_chan] = ACTIONS(87), [anon_sym_thread] = ACTIONS(89), [anon_sym_atomic] = ACTIONS(91), - [sym___double_quote] = ACTIONS(1478), - [sym___single_quote] = ACTIONS(1480), - [sym___c_double_quote] = ACTIONS(1482), - [sym___c_single_quote] = ACTIONS(1484), - [sym___r_double_quote] = ACTIONS(1486), - [sym___r_single_quote] = ACTIONS(1488), + [sym___double_quote] = ACTIONS(1414), + [sym___single_quote] = ACTIONS(1416), + [sym___c_double_quote] = ACTIONS(1418), + [sym___c_single_quote] = ACTIONS(1420), + [sym___r_double_quote] = ACTIONS(1422), + [sym___r_single_quote] = ACTIONS(1424), }, [850] = { [sym_line_comment] = STATE(850), [sym_block_comment] = STATE(850), - [sym__expression] = STATE(2806), - [sym__expression_without_blocks] = STATE(2860), - [sym__expression_with_blocks] = STATE(2300), - [sym_inc_expression] = STATE(2307), - [sym_dec_expression] = STATE(2307), - [sym_or_block_expression] = STATE(2307), - [sym_option_propagation_expression] = STATE(2307), - [sym_result_propagation_expression] = STATE(2307), - [sym_anon_struct_value_expression] = STATE(2380), - [sym_go_expression] = STATE(2307), - [sym_spawn_expression] = STATE(2307), - [sym_parenthesized_expression] = STATE(2307), - [sym_call_expression] = STATE(2307), - [sym_type_initializer] = STATE(2380), - [sym_function_literal] = STATE(2307), - [sym_reference_expression] = STATE(2311), - [sym_type_reference_expression] = STATE(3541), - [sym_unary_expression] = STATE(2307), - [sym_receive_expression] = STATE(2307), - [sym_binary_expression] = STATE(2307), - [sym_as_type_cast_expression] = STATE(2307), - [sym__max_group] = STATE(2307), - [sym_literal] = STATE(2292), - [sym_map_init_expression] = STATE(2380), - [sym_array_creation] = STATE(2307), - [sym_fixed_array_creation] = STATE(2307), - [sym_selector_expression] = STATE(2307), - [sym_index_expression] = STATE(2307), - [sym_slice_expression] = STATE(2307), - [sym_if_expression] = STATE(2380), - [sym_compile_time_if_expression] = STATE(2380), - [sym_is_expression] = STATE(2307), - [sym_in_expression] = STATE(2307), - [sym_enum_fetch] = STATE(2307), - [sym_match_expression] = STATE(2380), - [sym_select_expression] = STATE(2380), - [sym_lock_expression] = STATE(2380), - [sym_unsafe_expression] = STATE(2380), - [sym_sql_expression] = STATE(2380), - [sym_c_string_literal] = STATE(2308), - [sym_raw_string_literal] = STATE(2308), - [sym_interpreted_string_literal] = STATE(2308), - [sym_mutability_modifiers] = STATE(632), - [sym_plain_type] = STATE(4297), - [sym__plain_type_without_special] = STATE(2302), - [sym_anon_struct_type] = STATE(2303), - [sym_multi_return_type] = STATE(2302), - [sym_result_type] = STATE(2302), - [sym_option_type] = STATE(2302), - [sym_qualified_type] = STATE(3541), - [sym_fixed_array_type] = STATE(2303), - [sym_array_type] = STATE(2303), - [sym_pointer_type] = STATE(2303), - [sym_wrong_pointer_type] = STATE(2303), - [sym_map_type] = STATE(2303), - [sym_channel_type] = STATE(2303), - [sym_shared_type] = STATE(2303), - [sym_thread_type] = STATE(2303), - [sym_atomic_type] = STATE(2303), - [sym_generic_type] = STATE(2303), - [sym_function_type] = STATE(2303), - [sym_identifier] = ACTIONS(1807), + [sym__expression] = STATE(1254), + [sym__expression_without_blocks] = STATE(1318), + [sym__expression_with_blocks] = STATE(1318), + [sym_inc_expression] = STATE(1319), + [sym_dec_expression] = STATE(1319), + [sym_or_block_expression] = STATE(1319), + [sym_option_propagation_expression] = STATE(1319), + [sym_result_propagation_expression] = STATE(1319), + [sym_anon_struct_value_expression] = STATE(1320), + [sym_go_expression] = STATE(1319), + [sym_spawn_expression] = STATE(1319), + [sym_parenthesized_expression] = STATE(1319), + [sym_call_expression] = STATE(1319), + [sym_type_initializer] = STATE(1320), + [sym_function_literal] = STATE(1319), + [sym_reference_expression] = STATE(1298), + [sym_type_reference_expression] = STATE(3460), + [sym_unary_expression] = STATE(1319), + [sym_receive_expression] = STATE(1319), + [sym_binary_expression] = STATE(1319), + [sym_as_type_cast_expression] = STATE(1319), + [sym__max_group] = STATE(1319), + [sym_literal] = STATE(1314), + [sym_map_init_expression] = STATE(1320), + [sym_array_creation] = STATE(1319), + [sym_fixed_array_creation] = STATE(1319), + [sym_selector_expression] = STATE(1319), + [sym_index_expression] = STATE(1319), + [sym_slice_expression] = STATE(1319), + [sym_if_expression] = STATE(1320), + [sym_compile_time_if_expression] = STATE(1320), + [sym_is_expression] = STATE(1319), + [sym_in_expression] = STATE(1319), + [sym_enum_fetch] = STATE(1319), + [sym_match_expression] = STATE(1320), + [sym_select_expression] = STATE(1320), + [sym_lock_expression] = STATE(1320), + [sym_unsafe_expression] = STATE(1320), + [sym_sql_expression] = STATE(1320), + [sym_c_string_literal] = STATE(1291), + [sym_raw_string_literal] = STATE(1291), + [sym_interpreted_string_literal] = STATE(1291), + [sym_mutability_modifiers] = STATE(639), + [sym_plain_type] = STATE(4307), + [sym__plain_type_without_special] = STATE(2360), + [sym_anon_struct_type] = STATE(2362), + [sym_multi_return_type] = STATE(2360), + [sym_result_type] = STATE(2360), + [sym_option_type] = STATE(2360), + [sym_qualified_type] = STATE(3460), + [sym_fixed_array_type] = STATE(2362), + [sym_array_type] = STATE(2362), + [sym_pointer_type] = STATE(2362), + [sym_wrong_pointer_type] = STATE(2362), + [sym_map_type] = STATE(2362), + [sym_channel_type] = STATE(2362), + [sym_shared_type] = STATE(2362), + [sym_thread_type] = STATE(2362), + [sym_atomic_type] = STATE(2362), + [sym_generic_type] = STATE(2362), + [sym_function_type] = STATE(2362), + [sym_identifier] = ACTIONS(1360), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1428), - [anon_sym_LBRACE] = ACTIONS(1430), - [anon_sym_LPAREN] = ACTIONS(1432), - [anon_sym_fn] = ACTIONS(1434), - [anon_sym_PLUS] = ACTIONS(1811), - [anon_sym_DASH] = ACTIONS(1811), - [anon_sym_STAR] = ACTIONS(1813), - [anon_sym_struct] = ACTIONS(1440), + [anon_sym_DOT] = ACTIONS(1362), + [anon_sym_LBRACE] = ACTIONS(1364), + [anon_sym_LPAREN] = ACTIONS(1366), + [anon_sym_fn] = ACTIONS(1368), + [anon_sym_PLUS] = ACTIONS(1851), + [anon_sym_DASH] = ACTIONS(1851), + [anon_sym_STAR] = ACTIONS(1853), + [anon_sym_struct] = ACTIONS(1376), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(1815), - [anon_sym_go] = ACTIONS(1817), - [anon_sym_spawn] = ACTIONS(1819), - [anon_sym_json_DOTdecode] = ACTIONS(1448), - [anon_sym_LBRACK2] = ACTIONS(1821), - [anon_sym_TILDE] = ACTIONS(1811), - [anon_sym_CARET] = ACTIONS(1811), - [anon_sym_AMP] = ACTIONS(1823), - [anon_sym_LT_DASH] = ACTIONS(1825), - [sym_none] = ACTIONS(1456), - [sym_true] = ACTIONS(1456), - [sym_false] = ACTIONS(1456), - [sym_nil] = ACTIONS(1456), - [anon_sym_if] = ACTIONS(1827), - [anon_sym_DOLLARif] = ACTIONS(1460), - [anon_sym_match] = ACTIONS(1462), - [anon_sym_select] = ACTIONS(1464), - [anon_sym_lock] = ACTIONS(1466), - [anon_sym_rlock] = ACTIONS(1466), - [anon_sym_unsafe] = ACTIONS(1833), - [anon_sym_sql] = ACTIONS(1470), - [sym_int_literal] = ACTIONS(1456), - [sym_float_literal] = ACTIONS(1472), - [sym_rune_literal] = ACTIONS(1472), - [sym_pseudo_compile_time_identifier] = ACTIONS(1474), + [anon_sym_BANG] = ACTIONS(1855), + [anon_sym_go] = ACTIONS(1857), + [anon_sym_spawn] = ACTIONS(1859), + [anon_sym_json_DOTdecode] = ACTIONS(1384), + [anon_sym_LBRACK2] = ACTIONS(1386), + [anon_sym_TILDE] = ACTIONS(1851), + [anon_sym_CARET] = ACTIONS(1851), + [anon_sym_AMP] = ACTIONS(1861), + [anon_sym_LT_DASH] = ACTIONS(1863), + [sym_none] = ACTIONS(1392), + [sym_true] = ACTIONS(1392), + [sym_false] = ACTIONS(1392), + [sym_nil] = ACTIONS(1392), + [anon_sym_if] = ACTIONS(1865), + [anon_sym_DOLLARif] = ACTIONS(1396), + [anon_sym_match] = ACTIONS(1398), + [anon_sym_select] = ACTIONS(1867), + [anon_sym_lock] = ACTIONS(1869), + [anon_sym_rlock] = ACTIONS(1869), + [anon_sym_unsafe] = ACTIONS(1871), + [anon_sym_sql] = ACTIONS(1406), + [sym_int_literal] = ACTIONS(1392), + [sym_float_literal] = ACTIONS(1410), + [sym_rune_literal] = ACTIONS(1410), + [sym_pseudo_compile_time_identifier] = ACTIONS(1412), [anon_sym_shared] = ACTIONS(83), [anon_sym_map_LBRACK] = ACTIONS(85), [anon_sym_chan] = ACTIONS(87), [anon_sym_thread] = ACTIONS(89), [anon_sym_atomic] = ACTIONS(91), - [sym___double_quote] = ACTIONS(1478), - [sym___single_quote] = ACTIONS(1480), - [sym___c_double_quote] = ACTIONS(1482), - [sym___c_single_quote] = ACTIONS(1484), - [sym___r_double_quote] = ACTIONS(1486), - [sym___r_single_quote] = ACTIONS(1488), + [sym___double_quote] = ACTIONS(1414), + [sym___single_quote] = ACTIONS(1416), + [sym___c_double_quote] = ACTIONS(1418), + [sym___c_single_quote] = ACTIONS(1420), + [sym___r_double_quote] = ACTIONS(1422), + [sym___r_single_quote] = ACTIONS(1424), }, [851] = { [sym_line_comment] = STATE(851), [sym_block_comment] = STATE(851), - [sym__expression] = STATE(2802), - [sym__expression_without_blocks] = STATE(2300), - [sym__expression_with_blocks] = STATE(2300), - [sym_inc_expression] = STATE(2307), - [sym_dec_expression] = STATE(2307), - [sym_or_block_expression] = STATE(2307), - [sym_option_propagation_expression] = STATE(2307), - [sym_result_propagation_expression] = STATE(2307), - [sym_anon_struct_value_expression] = STATE(2380), - [sym_go_expression] = STATE(2307), - [sym_spawn_expression] = STATE(2307), - [sym_parenthesized_expression] = STATE(2307), - [sym_call_expression] = STATE(2307), - [sym_type_initializer] = STATE(2380), - [sym_function_literal] = STATE(2307), - [sym_reference_expression] = STATE(2311), - [sym_type_reference_expression] = STATE(3541), - [sym_unary_expression] = STATE(2307), - [sym_receive_expression] = STATE(2307), - [sym_binary_expression] = STATE(2307), - [sym_as_type_cast_expression] = STATE(2307), - [sym__max_group] = STATE(2307), - [sym_literal] = STATE(2292), - [sym_map_init_expression] = STATE(2380), - [sym_array_creation] = STATE(2307), - [sym_fixed_array_creation] = STATE(2307), - [sym_selector_expression] = STATE(2307), - [sym_index_expression] = STATE(2307), - [sym_slice_expression] = STATE(2307), - [sym_if_expression] = STATE(2380), - [sym_compile_time_if_expression] = STATE(2380), - [sym_is_expression] = STATE(2307), - [sym_in_expression] = STATE(2307), - [sym_enum_fetch] = STATE(2307), - [sym_match_expression] = STATE(2380), - [sym_select_expression] = STATE(2380), - [sym_lock_expression] = STATE(2380), - [sym_unsafe_expression] = STATE(2380), - [sym_sql_expression] = STATE(2380), - [sym_c_string_literal] = STATE(2308), - [sym_raw_string_literal] = STATE(2308), - [sym_interpreted_string_literal] = STATE(2308), - [sym_mutability_modifiers] = STATE(939), - [sym_plain_type] = STATE(4297), - [sym__plain_type_without_special] = STATE(2302), - [sym_anon_struct_type] = STATE(2303), - [sym_multi_return_type] = STATE(2302), - [sym_result_type] = STATE(2302), - [sym_option_type] = STATE(2302), - [sym_qualified_type] = STATE(3541), - [sym_fixed_array_type] = STATE(2303), - [sym_array_type] = STATE(2303), - [sym_pointer_type] = STATE(2303), - [sym_wrong_pointer_type] = STATE(2303), - [sym_map_type] = STATE(2303), - [sym_channel_type] = STATE(2303), - [sym_shared_type] = STATE(2303), - [sym_thread_type] = STATE(2303), - [sym_atomic_type] = STATE(2303), - [sym_generic_type] = STATE(2303), - [sym_function_type] = STATE(2303), - [sym_identifier] = ACTIONS(1807), + [sym__expression] = STATE(1287), + [sym__expression_without_blocks] = STATE(1318), + [sym__expression_with_blocks] = STATE(1318), + [sym_inc_expression] = STATE(1319), + [sym_dec_expression] = STATE(1319), + [sym_or_block_expression] = STATE(1319), + [sym_option_propagation_expression] = STATE(1319), + [sym_result_propagation_expression] = STATE(1319), + [sym_anon_struct_value_expression] = STATE(1320), + [sym_go_expression] = STATE(1319), + [sym_spawn_expression] = STATE(1319), + [sym_parenthesized_expression] = STATE(1319), + [sym_call_expression] = STATE(1319), + [sym_type_initializer] = STATE(1320), + [sym_function_literal] = STATE(1319), + [sym_reference_expression] = STATE(1298), + [sym_type_reference_expression] = STATE(3460), + [sym_unary_expression] = STATE(1319), + [sym_receive_expression] = STATE(1319), + [sym_binary_expression] = STATE(1319), + [sym_as_type_cast_expression] = STATE(1319), + [sym__max_group] = STATE(1319), + [sym_literal] = STATE(1314), + [sym_map_init_expression] = STATE(1320), + [sym_array_creation] = STATE(1319), + [sym_fixed_array_creation] = STATE(1319), + [sym_selector_expression] = STATE(1319), + [sym_index_expression] = STATE(1319), + [sym_slice_expression] = STATE(1319), + [sym_if_expression] = STATE(1320), + [sym_compile_time_if_expression] = STATE(1320), + [sym_is_expression] = STATE(1319), + [sym_in_expression] = STATE(1319), + [sym_enum_fetch] = STATE(1319), + [sym_match_expression] = STATE(1320), + [sym_select_expression] = STATE(1320), + [sym_lock_expression] = STATE(1320), + [sym_unsafe_expression] = STATE(1320), + [sym_sql_expression] = STATE(1320), + [sym_c_string_literal] = STATE(1291), + [sym_raw_string_literal] = STATE(1291), + [sym_interpreted_string_literal] = STATE(1291), + [sym_mutability_modifiers] = STATE(639), + [sym_plain_type] = STATE(4307), + [sym__plain_type_without_special] = STATE(2360), + [sym_anon_struct_type] = STATE(2362), + [sym_multi_return_type] = STATE(2360), + [sym_result_type] = STATE(2360), + [sym_option_type] = STATE(2360), + [sym_qualified_type] = STATE(3460), + [sym_fixed_array_type] = STATE(2362), + [sym_array_type] = STATE(2362), + [sym_pointer_type] = STATE(2362), + [sym_wrong_pointer_type] = STATE(2362), + [sym_map_type] = STATE(2362), + [sym_channel_type] = STATE(2362), + [sym_shared_type] = STATE(2362), + [sym_thread_type] = STATE(2362), + [sym_atomic_type] = STATE(2362), + [sym_generic_type] = STATE(2362), + [sym_function_type] = STATE(2362), + [sym_identifier] = ACTIONS(1360), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1428), - [anon_sym_LBRACE] = ACTIONS(1430), - [anon_sym_LPAREN] = ACTIONS(1432), - [anon_sym_fn] = ACTIONS(1434), - [anon_sym_PLUS] = ACTIONS(3064), - [anon_sym_DASH] = ACTIONS(3064), - [anon_sym_STAR] = ACTIONS(3066), - [anon_sym_struct] = ACTIONS(1440), + [anon_sym_DOT] = ACTIONS(1362), + [anon_sym_LBRACE] = ACTIONS(1364), + [anon_sym_LPAREN] = ACTIONS(1366), + [anon_sym_fn] = ACTIONS(1368), + [anon_sym_PLUS] = ACTIONS(1851), + [anon_sym_DASH] = ACTIONS(1851), + [anon_sym_STAR] = ACTIONS(1853), + [anon_sym_struct] = ACTIONS(1376), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(3068), - [anon_sym_go] = ACTIONS(3070), - [anon_sym_spawn] = ACTIONS(3072), - [anon_sym_json_DOTdecode] = ACTIONS(1448), - [anon_sym_LBRACK2] = ACTIONS(1821), - [anon_sym_TILDE] = ACTIONS(3064), - [anon_sym_CARET] = ACTIONS(3064), - [anon_sym_AMP] = ACTIONS(3074), - [anon_sym_LT_DASH] = ACTIONS(3076), - [sym_none] = ACTIONS(1456), - [sym_true] = ACTIONS(1456), - [sym_false] = ACTIONS(1456), - [sym_nil] = ACTIONS(1456), - [anon_sym_if] = ACTIONS(1827), - [anon_sym_DOLLARif] = ACTIONS(1460), - [anon_sym_match] = ACTIONS(1462), - [anon_sym_select] = ACTIONS(3078), - [anon_sym_lock] = ACTIONS(3080), - [anon_sym_rlock] = ACTIONS(3080), - [anon_sym_unsafe] = ACTIONS(1833), - [anon_sym_sql] = ACTIONS(1470), - [sym_int_literal] = ACTIONS(1456), - [sym_float_literal] = ACTIONS(1472), - [sym_rune_literal] = ACTIONS(1472), - [sym_pseudo_compile_time_identifier] = ACTIONS(1474), + [anon_sym_BANG] = ACTIONS(1855), + [anon_sym_go] = ACTIONS(1857), + [anon_sym_spawn] = ACTIONS(1859), + [anon_sym_json_DOTdecode] = ACTIONS(1384), + [anon_sym_LBRACK2] = ACTIONS(1386), + [anon_sym_TILDE] = ACTIONS(1851), + [anon_sym_CARET] = ACTIONS(1851), + [anon_sym_AMP] = ACTIONS(1861), + [anon_sym_LT_DASH] = ACTIONS(1863), + [sym_none] = ACTIONS(1392), + [sym_true] = ACTIONS(1392), + [sym_false] = ACTIONS(1392), + [sym_nil] = ACTIONS(1392), + [anon_sym_if] = ACTIONS(1865), + [anon_sym_DOLLARif] = ACTIONS(1396), + [anon_sym_match] = ACTIONS(1398), + [anon_sym_select] = ACTIONS(1867), + [anon_sym_lock] = ACTIONS(1869), + [anon_sym_rlock] = ACTIONS(1869), + [anon_sym_unsafe] = ACTIONS(1871), + [anon_sym_sql] = ACTIONS(1406), + [sym_int_literal] = ACTIONS(1392), + [sym_float_literal] = ACTIONS(1410), + [sym_rune_literal] = ACTIONS(1410), + [sym_pseudo_compile_time_identifier] = ACTIONS(1412), [anon_sym_shared] = ACTIONS(83), [anon_sym_map_LBRACK] = ACTIONS(85), [anon_sym_chan] = ACTIONS(87), [anon_sym_thread] = ACTIONS(89), [anon_sym_atomic] = ACTIONS(91), - [sym___double_quote] = ACTIONS(1478), - [sym___single_quote] = ACTIONS(1480), - [sym___c_double_quote] = ACTIONS(1482), - [sym___c_single_quote] = ACTIONS(1484), - [sym___r_double_quote] = ACTIONS(1486), - [sym___r_single_quote] = ACTIONS(1488), + [sym___double_quote] = ACTIONS(1414), + [sym___single_quote] = ACTIONS(1416), + [sym___c_double_quote] = ACTIONS(1418), + [sym___c_single_quote] = ACTIONS(1420), + [sym___r_double_quote] = ACTIONS(1422), + [sym___r_single_quote] = ACTIONS(1424), }, [852] = { [sym_line_comment] = STATE(852), [sym_block_comment] = STATE(852), - [sym__expression] = STATE(2582), - [sym__expression_without_blocks] = STATE(2300), - [sym__expression_with_blocks] = STATE(2300), - [sym_inc_expression] = STATE(2307), - [sym_dec_expression] = STATE(2307), - [sym_or_block_expression] = STATE(2307), - [sym_option_propagation_expression] = STATE(2307), - [sym_result_propagation_expression] = STATE(2307), - [sym_anon_struct_value_expression] = STATE(2380), - [sym_go_expression] = STATE(2307), - [sym_spawn_expression] = STATE(2307), - [sym_parenthesized_expression] = STATE(2307), - [sym_call_expression] = STATE(2307), - [sym_type_initializer] = STATE(2380), - [sym_function_literal] = STATE(2307), - [sym_reference_expression] = STATE(2311), - [sym_type_reference_expression] = STATE(3541), - [sym_unary_expression] = STATE(2307), - [sym_receive_expression] = STATE(2307), - [sym_binary_expression] = STATE(2307), - [sym_as_type_cast_expression] = STATE(2307), - [sym__max_group] = STATE(2307), - [sym_literal] = STATE(2292), - [sym_map_init_expression] = STATE(2380), - [sym_array_creation] = STATE(2307), - [sym_fixed_array_creation] = STATE(2307), - [sym_selector_expression] = STATE(2307), - [sym_index_expression] = STATE(2307), - [sym_slice_expression] = STATE(2307), - [sym_if_expression] = STATE(2380), - [sym_compile_time_if_expression] = STATE(2380), - [sym_is_expression] = STATE(2307), - [sym_in_expression] = STATE(2307), - [sym_enum_fetch] = STATE(2307), - [sym_match_expression] = STATE(2380), - [sym_select_expression] = STATE(2380), - [sym_lock_expression] = STATE(2380), - [sym_unsafe_expression] = STATE(2380), - [sym_sql_expression] = STATE(2380), - [sym_c_string_literal] = STATE(2308), - [sym_raw_string_literal] = STATE(2308), - [sym_interpreted_string_literal] = STATE(2308), - [sym_mutability_modifiers] = STATE(939), - [sym_plain_type] = STATE(4297), - [sym__plain_type_without_special] = STATE(2302), - [sym_anon_struct_type] = STATE(2303), - [sym_multi_return_type] = STATE(2302), - [sym_result_type] = STATE(2302), - [sym_option_type] = STATE(2302), - [sym_qualified_type] = STATE(3541), - [sym_fixed_array_type] = STATE(2303), - [sym_array_type] = STATE(2303), - [sym_pointer_type] = STATE(2303), - [sym_wrong_pointer_type] = STATE(2303), - [sym_map_type] = STATE(2303), - [sym_channel_type] = STATE(2303), - [sym_shared_type] = STATE(2303), - [sym_thread_type] = STATE(2303), - [sym_atomic_type] = STATE(2303), - [sym_generic_type] = STATE(2303), - [sym_function_type] = STATE(2303), - [sym_identifier] = ACTIONS(1807), + [sym__expression] = STATE(1286), + [sym__expression_without_blocks] = STATE(1318), + [sym__expression_with_blocks] = STATE(1318), + [sym_inc_expression] = STATE(1319), + [sym_dec_expression] = STATE(1319), + [sym_or_block_expression] = STATE(1319), + [sym_option_propagation_expression] = STATE(1319), + [sym_result_propagation_expression] = STATE(1319), + [sym_anon_struct_value_expression] = STATE(1320), + [sym_go_expression] = STATE(1319), + [sym_spawn_expression] = STATE(1319), + [sym_parenthesized_expression] = STATE(1319), + [sym_call_expression] = STATE(1319), + [sym_type_initializer] = STATE(1320), + [sym_function_literal] = STATE(1319), + [sym_reference_expression] = STATE(1298), + [sym_type_reference_expression] = STATE(3460), + [sym_unary_expression] = STATE(1319), + [sym_receive_expression] = STATE(1319), + [sym_binary_expression] = STATE(1319), + [sym_as_type_cast_expression] = STATE(1319), + [sym__max_group] = STATE(1319), + [sym_literal] = STATE(1314), + [sym_map_init_expression] = STATE(1320), + [sym_array_creation] = STATE(1319), + [sym_fixed_array_creation] = STATE(1319), + [sym_selector_expression] = STATE(1319), + [sym_index_expression] = STATE(1319), + [sym_slice_expression] = STATE(1319), + [sym_if_expression] = STATE(1320), + [sym_compile_time_if_expression] = STATE(1320), + [sym_is_expression] = STATE(1319), + [sym_in_expression] = STATE(1319), + [sym_enum_fetch] = STATE(1319), + [sym_match_expression] = STATE(1320), + [sym_select_expression] = STATE(1320), + [sym_lock_expression] = STATE(1320), + [sym_unsafe_expression] = STATE(1320), + [sym_sql_expression] = STATE(1320), + [sym_c_string_literal] = STATE(1291), + [sym_raw_string_literal] = STATE(1291), + [sym_interpreted_string_literal] = STATE(1291), + [sym_mutability_modifiers] = STATE(639), + [sym_plain_type] = STATE(4307), + [sym__plain_type_without_special] = STATE(2360), + [sym_anon_struct_type] = STATE(2362), + [sym_multi_return_type] = STATE(2360), + [sym_result_type] = STATE(2360), + [sym_option_type] = STATE(2360), + [sym_qualified_type] = STATE(3460), + [sym_fixed_array_type] = STATE(2362), + [sym_array_type] = STATE(2362), + [sym_pointer_type] = STATE(2362), + [sym_wrong_pointer_type] = STATE(2362), + [sym_map_type] = STATE(2362), + [sym_channel_type] = STATE(2362), + [sym_shared_type] = STATE(2362), + [sym_thread_type] = STATE(2362), + [sym_atomic_type] = STATE(2362), + [sym_generic_type] = STATE(2362), + [sym_function_type] = STATE(2362), + [sym_identifier] = ACTIONS(1360), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1428), - [anon_sym_LBRACE] = ACTIONS(1430), - [anon_sym_LPAREN] = ACTIONS(1432), - [anon_sym_fn] = ACTIONS(1434), - [anon_sym_PLUS] = ACTIONS(3064), - [anon_sym_DASH] = ACTIONS(3064), - [anon_sym_STAR] = ACTIONS(3066), - [anon_sym_struct] = ACTIONS(1440), + [anon_sym_DOT] = ACTIONS(1362), + [anon_sym_LBRACE] = ACTIONS(1364), + [anon_sym_LPAREN] = ACTIONS(1366), + [anon_sym_fn] = ACTIONS(1368), + [anon_sym_PLUS] = ACTIONS(1851), + [anon_sym_DASH] = ACTIONS(1851), + [anon_sym_STAR] = ACTIONS(1853), + [anon_sym_struct] = ACTIONS(1376), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(3068), - [anon_sym_go] = ACTIONS(3070), - [anon_sym_spawn] = ACTIONS(3072), - [anon_sym_json_DOTdecode] = ACTIONS(1448), - [anon_sym_LBRACK2] = ACTIONS(1821), - [anon_sym_TILDE] = ACTIONS(3064), - [anon_sym_CARET] = ACTIONS(3064), - [anon_sym_AMP] = ACTIONS(3074), - [anon_sym_LT_DASH] = ACTIONS(3076), - [sym_none] = ACTIONS(1456), - [sym_true] = ACTIONS(1456), - [sym_false] = ACTIONS(1456), - [sym_nil] = ACTIONS(1456), - [anon_sym_if] = ACTIONS(1827), - [anon_sym_DOLLARif] = ACTIONS(1460), - [anon_sym_match] = ACTIONS(1462), - [anon_sym_select] = ACTIONS(3078), - [anon_sym_lock] = ACTIONS(3080), - [anon_sym_rlock] = ACTIONS(3080), - [anon_sym_unsafe] = ACTIONS(1833), - [anon_sym_sql] = ACTIONS(1470), - [sym_int_literal] = ACTIONS(1456), - [sym_float_literal] = ACTIONS(1472), - [sym_rune_literal] = ACTIONS(1472), - [sym_pseudo_compile_time_identifier] = ACTIONS(1474), + [anon_sym_BANG] = ACTIONS(1855), + [anon_sym_go] = ACTIONS(1857), + [anon_sym_spawn] = ACTIONS(1859), + [anon_sym_json_DOTdecode] = ACTIONS(1384), + [anon_sym_LBRACK2] = ACTIONS(1386), + [anon_sym_TILDE] = ACTIONS(1851), + [anon_sym_CARET] = ACTIONS(1851), + [anon_sym_AMP] = ACTIONS(1861), + [anon_sym_LT_DASH] = ACTIONS(1863), + [sym_none] = ACTIONS(1392), + [sym_true] = ACTIONS(1392), + [sym_false] = ACTIONS(1392), + [sym_nil] = ACTIONS(1392), + [anon_sym_if] = ACTIONS(1865), + [anon_sym_DOLLARif] = ACTIONS(1396), + [anon_sym_match] = ACTIONS(1398), + [anon_sym_select] = ACTIONS(1867), + [anon_sym_lock] = ACTIONS(1869), + [anon_sym_rlock] = ACTIONS(1869), + [anon_sym_unsafe] = ACTIONS(1871), + [anon_sym_sql] = ACTIONS(1406), + [sym_int_literal] = ACTIONS(1392), + [sym_float_literal] = ACTIONS(1410), + [sym_rune_literal] = ACTIONS(1410), + [sym_pseudo_compile_time_identifier] = ACTIONS(1412), [anon_sym_shared] = ACTIONS(83), [anon_sym_map_LBRACK] = ACTIONS(85), [anon_sym_chan] = ACTIONS(87), [anon_sym_thread] = ACTIONS(89), [anon_sym_atomic] = ACTIONS(91), - [sym___double_quote] = ACTIONS(1478), - [sym___single_quote] = ACTIONS(1480), - [sym___c_double_quote] = ACTIONS(1482), - [sym___c_single_quote] = ACTIONS(1484), - [sym___r_double_quote] = ACTIONS(1486), - [sym___r_single_quote] = ACTIONS(1488), + [sym___double_quote] = ACTIONS(1414), + [sym___single_quote] = ACTIONS(1416), + [sym___c_double_quote] = ACTIONS(1418), + [sym___c_single_quote] = ACTIONS(1420), + [sym___r_double_quote] = ACTIONS(1422), + [sym___r_single_quote] = ACTIONS(1424), }, [853] = { [sym_line_comment] = STATE(853), [sym_block_comment] = STATE(853), - [sym__expression] = STATE(2416), - [sym__expression_without_blocks] = STATE(2625), - [sym__expression_with_blocks] = STATE(2625), - [sym_inc_expression] = STATE(2765), - [sym_dec_expression] = STATE(2765), - [sym_or_block_expression] = STATE(2765), - [sym_option_propagation_expression] = STATE(2765), - [sym_result_propagation_expression] = STATE(2765), - [sym_anon_struct_value_expression] = STATE(2619), - [sym_go_expression] = STATE(2765), - [sym_spawn_expression] = STATE(2765), - [sym_parenthesized_expression] = STATE(2765), - [sym_call_expression] = STATE(2765), - [sym_type_initializer] = STATE(2619), - [sym_function_literal] = STATE(2765), - [sym_reference_expression] = STATE(2764), - [sym_type_reference_expression] = STATE(3541), - [sym_unary_expression] = STATE(2765), - [sym_receive_expression] = STATE(2765), - [sym_binary_expression] = STATE(2765), - [sym_as_type_cast_expression] = STATE(2765), - [sym__max_group] = STATE(2765), - [sym_literal] = STATE(2769), - [sym_map_init_expression] = STATE(2619), - [sym_array_creation] = STATE(2765), - [sym_fixed_array_creation] = STATE(2765), - [sym_selector_expression] = STATE(2765), - [sym_index_expression] = STATE(2765), - [sym_slice_expression] = STATE(2765), - [sym_if_expression] = STATE(2619), - [sym_compile_time_if_expression] = STATE(2619), - [sym_is_expression] = STATE(2765), - [sym_in_expression] = STATE(2765), - [sym_enum_fetch] = STATE(2765), - [sym_match_expression] = STATE(2619), - [sym_select_expression] = STATE(2619), - [sym_lock_expression] = STATE(2619), - [sym_unsafe_expression] = STATE(2619), - [sym_sql_expression] = STATE(2619), - [sym_c_string_literal] = STATE(2660), - [sym_raw_string_literal] = STATE(2660), - [sym_interpreted_string_literal] = STATE(2660), - [sym_mutability_modifiers] = STATE(567), - [sym_plain_type] = STATE(4008), - [sym__plain_type_without_special] = STATE(2302), - [sym_anon_struct_type] = STATE(2303), - [sym_multi_return_type] = STATE(2302), - [sym_result_type] = STATE(2302), - [sym_option_type] = STATE(2302), - [sym_qualified_type] = STATE(3541), - [sym_fixed_array_type] = STATE(2303), - [sym_array_type] = STATE(2303), - [sym_pointer_type] = STATE(2303), - [sym_wrong_pointer_type] = STATE(2303), - [sym_map_type] = STATE(2303), - [sym_channel_type] = STATE(2303), - [sym_shared_type] = STATE(2303), - [sym_thread_type] = STATE(2303), - [sym_atomic_type] = STATE(2303), - [sym_generic_type] = STATE(2303), - [sym_function_type] = STATE(2303), - [sym_identifier] = ACTIONS(1807), + [sym__expression] = STATE(2421), + [sym__expression_without_blocks] = STATE(2347), + [sym__expression_with_blocks] = STATE(2347), + [sym_inc_expression] = STATE(2379), + [sym_dec_expression] = STATE(2379), + [sym_or_block_expression] = STATE(2379), + [sym_option_propagation_expression] = STATE(2379), + [sym_result_propagation_expression] = STATE(2379), + [sym_anon_struct_value_expression] = STATE(2378), + [sym_go_expression] = STATE(2379), + [sym_spawn_expression] = STATE(2379), + [sym_parenthesized_expression] = STATE(2379), + [sym_call_expression] = STATE(2379), + [sym_type_initializer] = STATE(2378), + [sym_function_literal] = STATE(2379), + [sym_reference_expression] = STATE(2377), + [sym_type_reference_expression] = STATE(3460), + [sym_unary_expression] = STATE(2379), + [sym_receive_expression] = STATE(2379), + [sym_binary_expression] = STATE(2379), + [sym_as_type_cast_expression] = STATE(2379), + [sym__max_group] = STATE(2379), + [sym_literal] = STATE(2392), + [sym_map_init_expression] = STATE(2378), + [sym_array_creation] = STATE(2379), + [sym_fixed_array_creation] = STATE(2379), + [sym_selector_expression] = STATE(2379), + [sym_index_expression] = STATE(2379), + [sym_slice_expression] = STATE(2379), + [sym_if_expression] = STATE(2378), + [sym_compile_time_if_expression] = STATE(2378), + [sym_is_expression] = STATE(2379), + [sym_in_expression] = STATE(2379), + [sym_enum_fetch] = STATE(2379), + [sym_match_expression] = STATE(2378), + [sym_select_expression] = STATE(2378), + [sym_lock_expression] = STATE(2378), + [sym_unsafe_expression] = STATE(2378), + [sym_sql_expression] = STATE(2378), + [sym_c_string_literal] = STATE(2401), + [sym_raw_string_literal] = STATE(2401), + [sym_interpreted_string_literal] = STATE(2401), + [sym_mutability_modifiers] = STATE(939), + [sym_plain_type] = STATE(4160), + [sym__plain_type_without_special] = STATE(2360), + [sym_anon_struct_type] = STATE(2362), + [sym_multi_return_type] = STATE(2360), + [sym_result_type] = STATE(2360), + [sym_option_type] = STATE(2360), + [sym_qualified_type] = STATE(3460), + [sym_fixed_array_type] = STATE(2362), + [sym_array_type] = STATE(2362), + [sym_pointer_type] = STATE(2362), + [sym_wrong_pointer_type] = STATE(2362), + [sym_map_type] = STATE(2362), + [sym_channel_type] = STATE(2362), + [sym_shared_type] = STATE(2362), + [sym_thread_type] = STATE(2362), + [sym_atomic_type] = STATE(2362), + [sym_generic_type] = STATE(2362), + [sym_function_type] = STATE(2362), + [sym_identifier] = ACTIONS(1428), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1081), - [anon_sym_LBRACE] = ACTIONS(1083), - [anon_sym_LPAREN] = ACTIONS(1087), - [anon_sym_fn] = ACTIONS(1089), - [anon_sym_PLUS] = ACTIONS(3120), - [anon_sym_DASH] = ACTIONS(3120), - [anon_sym_STAR] = ACTIONS(3122), - [anon_sym_struct] = ACTIONS(1095), + [anon_sym_DOT] = ACTIONS(1430), + [anon_sym_LBRACE] = ACTIONS(1432), + [anon_sym_LPAREN] = ACTIONS(1434), + [anon_sym_fn] = ACTIONS(1436), + [anon_sym_PLUS] = ACTIONS(1438), + [anon_sym_DASH] = ACTIONS(1438), + [anon_sym_STAR] = ACTIONS(1440), + [anon_sym_struct] = ACTIONS(1442), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(3124), - [anon_sym_go] = ACTIONS(3126), - [anon_sym_spawn] = ACTIONS(3128), - [anon_sym_json_DOTdecode] = ACTIONS(1103), - [anon_sym_LBRACK2] = ACTIONS(1105), - [anon_sym_TILDE] = ACTIONS(3120), - [anon_sym_CARET] = ACTIONS(3120), - [anon_sym_AMP] = ACTIONS(3130), - [anon_sym_LT_DASH] = ACTIONS(3132), - [sym_none] = ACTIONS(1111), - [sym_true] = ACTIONS(1111), - [sym_false] = ACTIONS(1111), - [sym_nil] = ACTIONS(1111), - [anon_sym_if] = ACTIONS(1113), - [anon_sym_DOLLARif] = ACTIONS(1117), - [anon_sym_match] = ACTIONS(1119), - [anon_sym_select] = ACTIONS(3134), - [anon_sym_lock] = ACTIONS(3136), - [anon_sym_rlock] = ACTIONS(3136), - [anon_sym_unsafe] = ACTIONS(1125), - [anon_sym_sql] = ACTIONS(1127), - [sym_int_literal] = ACTIONS(1111), - [sym_float_literal] = ACTIONS(1129), - [sym_rune_literal] = ACTIONS(1129), - [sym_pseudo_compile_time_identifier] = ACTIONS(1131), + [anon_sym_BANG] = ACTIONS(1444), + [anon_sym_go] = ACTIONS(1446), + [anon_sym_spawn] = ACTIONS(1448), + [anon_sym_json_DOTdecode] = ACTIONS(1450), + [anon_sym_LBRACK2] = ACTIONS(1452), + [anon_sym_TILDE] = ACTIONS(1438), + [anon_sym_CARET] = ACTIONS(1438), + [anon_sym_AMP] = ACTIONS(1454), + [anon_sym_LT_DASH] = ACTIONS(1456), + [sym_none] = ACTIONS(1458), + [sym_true] = ACTIONS(1458), + [sym_false] = ACTIONS(1458), + [sym_nil] = ACTIONS(1458), + [anon_sym_if] = ACTIONS(1833), + [anon_sym_DOLLARif] = ACTIONS(1462), + [anon_sym_match] = ACTIONS(1464), + [anon_sym_select] = ACTIONS(1466), + [anon_sym_lock] = ACTIONS(1468), + [anon_sym_rlock] = ACTIONS(1468), + [anon_sym_unsafe] = ACTIONS(1839), + [anon_sym_sql] = ACTIONS(1472), + [sym_int_literal] = ACTIONS(1458), + [sym_float_literal] = ACTIONS(1474), + [sym_rune_literal] = ACTIONS(1474), + [sym_pseudo_compile_time_identifier] = ACTIONS(1476), [anon_sym_shared] = ACTIONS(83), [anon_sym_map_LBRACK] = ACTIONS(85), [anon_sym_chan] = ACTIONS(87), [anon_sym_thread] = ACTIONS(89), [anon_sym_atomic] = ACTIONS(91), - [sym___double_quote] = ACTIONS(1133), - [sym___single_quote] = ACTIONS(1135), - [sym___c_double_quote] = ACTIONS(1137), - [sym___c_single_quote] = ACTIONS(1139), - [sym___r_double_quote] = ACTIONS(1141), - [sym___r_single_quote] = ACTIONS(1143), + [sym___double_quote] = ACTIONS(1480), + [sym___single_quote] = ACTIONS(1482), + [sym___c_double_quote] = ACTIONS(1484), + [sym___c_single_quote] = ACTIONS(1486), + [sym___r_double_quote] = ACTIONS(1488), + [sym___r_single_quote] = ACTIONS(1490), }, [854] = { [sym_line_comment] = STATE(854), [sym_block_comment] = STATE(854), - [sym__expression] = STATE(2527), - [sym__expression_without_blocks] = STATE(2300), - [sym__expression_with_blocks] = STATE(2300), - [sym_inc_expression] = STATE(2307), - [sym_dec_expression] = STATE(2307), - [sym_or_block_expression] = STATE(2307), - [sym_option_propagation_expression] = STATE(2307), - [sym_result_propagation_expression] = STATE(2307), - [sym_anon_struct_value_expression] = STATE(2380), - [sym_go_expression] = STATE(2307), - [sym_spawn_expression] = STATE(2307), - [sym_parenthesized_expression] = STATE(2307), - [sym_call_expression] = STATE(2307), - [sym_type_initializer] = STATE(2380), - [sym_function_literal] = STATE(2307), - [sym_reference_expression] = STATE(2311), - [sym_type_reference_expression] = STATE(3541), - [sym_unary_expression] = STATE(2307), - [sym_receive_expression] = STATE(2307), - [sym_binary_expression] = STATE(2307), - [sym_as_type_cast_expression] = STATE(2307), - [sym__max_group] = STATE(2307), - [sym_literal] = STATE(2292), - [sym_map_init_expression] = STATE(2380), - [sym_array_creation] = STATE(2307), - [sym_fixed_array_creation] = STATE(2307), - [sym_selector_expression] = STATE(2307), - [sym_index_expression] = STATE(2307), - [sym_slice_expression] = STATE(2307), - [sym_if_expression] = STATE(2380), - [sym_compile_time_if_expression] = STATE(2380), - [sym_is_expression] = STATE(2307), - [sym_in_expression] = STATE(2307), - [sym_enum_fetch] = STATE(2307), - [sym_match_expression] = STATE(2380), - [sym_select_expression] = STATE(2380), - [sym_lock_expression] = STATE(2380), - [sym_unsafe_expression] = STATE(2380), - [sym_sql_expression] = STATE(2380), - [sym_c_string_literal] = STATE(2308), - [sym_raw_string_literal] = STATE(2308), - [sym_interpreted_string_literal] = STATE(2308), - [sym_mutability_modifiers] = STATE(632), - [sym_plain_type] = STATE(4297), - [sym__plain_type_without_special] = STATE(2302), - [sym_anon_struct_type] = STATE(2303), - [sym_multi_return_type] = STATE(2302), - [sym_result_type] = STATE(2302), - [sym_option_type] = STATE(2302), - [sym_qualified_type] = STATE(3541), - [sym_fixed_array_type] = STATE(2303), - [sym_array_type] = STATE(2303), - [sym_pointer_type] = STATE(2303), - [sym_wrong_pointer_type] = STATE(2303), - [sym_map_type] = STATE(2303), - [sym_channel_type] = STATE(2303), - [sym_shared_type] = STATE(2303), - [sym_thread_type] = STATE(2303), - [sym_atomic_type] = STATE(2303), - [sym_generic_type] = STATE(2303), - [sym_function_type] = STATE(2303), - [sym_identifier] = ACTIONS(1807), + [sym__expression] = STATE(1267), + [sym__expression_without_blocks] = STATE(1318), + [sym__expression_with_blocks] = STATE(1318), + [sym_inc_expression] = STATE(1319), + [sym_dec_expression] = STATE(1319), + [sym_or_block_expression] = STATE(1319), + [sym_option_propagation_expression] = STATE(1319), + [sym_result_propagation_expression] = STATE(1319), + [sym_anon_struct_value_expression] = STATE(1320), + [sym_go_expression] = STATE(1319), + [sym_spawn_expression] = STATE(1319), + [sym_parenthesized_expression] = STATE(1319), + [sym_call_expression] = STATE(1319), + [sym_type_initializer] = STATE(1320), + [sym_function_literal] = STATE(1319), + [sym_reference_expression] = STATE(1298), + [sym_type_reference_expression] = STATE(3460), + [sym_unary_expression] = STATE(1319), + [sym_receive_expression] = STATE(1319), + [sym_binary_expression] = STATE(1319), + [sym_as_type_cast_expression] = STATE(1319), + [sym__max_group] = STATE(1319), + [sym_literal] = STATE(1314), + [sym_map_init_expression] = STATE(1320), + [sym_array_creation] = STATE(1319), + [sym_fixed_array_creation] = STATE(1319), + [sym_selector_expression] = STATE(1319), + [sym_index_expression] = STATE(1319), + [sym_slice_expression] = STATE(1319), + [sym_if_expression] = STATE(1320), + [sym_compile_time_if_expression] = STATE(1320), + [sym_is_expression] = STATE(1319), + [sym_in_expression] = STATE(1319), + [sym_enum_fetch] = STATE(1319), + [sym_match_expression] = STATE(1320), + [sym_select_expression] = STATE(1320), + [sym_lock_expression] = STATE(1320), + [sym_unsafe_expression] = STATE(1320), + [sym_sql_expression] = STATE(1320), + [sym_c_string_literal] = STATE(1291), + [sym_raw_string_literal] = STATE(1291), + [sym_interpreted_string_literal] = STATE(1291), + [sym_mutability_modifiers] = STATE(639), + [sym_plain_type] = STATE(4307), + [sym__plain_type_without_special] = STATE(2360), + [sym_anon_struct_type] = STATE(2362), + [sym_multi_return_type] = STATE(2360), + [sym_result_type] = STATE(2360), + [sym_option_type] = STATE(2360), + [sym_qualified_type] = STATE(3460), + [sym_fixed_array_type] = STATE(2362), + [sym_array_type] = STATE(2362), + [sym_pointer_type] = STATE(2362), + [sym_wrong_pointer_type] = STATE(2362), + [sym_map_type] = STATE(2362), + [sym_channel_type] = STATE(2362), + [sym_shared_type] = STATE(2362), + [sym_thread_type] = STATE(2362), + [sym_atomic_type] = STATE(2362), + [sym_generic_type] = STATE(2362), + [sym_function_type] = STATE(2362), + [sym_identifier] = ACTIONS(1360), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1428), - [anon_sym_LBRACE] = ACTIONS(1430), - [anon_sym_LPAREN] = ACTIONS(1432), - [anon_sym_fn] = ACTIONS(1434), - [anon_sym_PLUS] = ACTIONS(1811), - [anon_sym_DASH] = ACTIONS(1811), - [anon_sym_STAR] = ACTIONS(1813), - [anon_sym_struct] = ACTIONS(1440), + [anon_sym_DOT] = ACTIONS(1362), + [anon_sym_LBRACE] = ACTIONS(1364), + [anon_sym_LPAREN] = ACTIONS(1366), + [anon_sym_fn] = ACTIONS(1368), + [anon_sym_PLUS] = ACTIONS(1851), + [anon_sym_DASH] = ACTIONS(1851), + [anon_sym_STAR] = ACTIONS(1853), + [anon_sym_struct] = ACTIONS(1376), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(1815), - [anon_sym_go] = ACTIONS(1817), - [anon_sym_spawn] = ACTIONS(1819), - [anon_sym_json_DOTdecode] = ACTIONS(1448), - [anon_sym_LBRACK2] = ACTIONS(1821), - [anon_sym_TILDE] = ACTIONS(1811), - [anon_sym_CARET] = ACTIONS(1811), - [anon_sym_AMP] = ACTIONS(1823), - [anon_sym_LT_DASH] = ACTIONS(1825), - [sym_none] = ACTIONS(1456), - [sym_true] = ACTIONS(1456), - [sym_false] = ACTIONS(1456), - [sym_nil] = ACTIONS(1456), - [anon_sym_if] = ACTIONS(1827), - [anon_sym_DOLLARif] = ACTIONS(1460), - [anon_sym_match] = ACTIONS(1462), - [anon_sym_select] = ACTIONS(1829), - [anon_sym_lock] = ACTIONS(1831), - [anon_sym_rlock] = ACTIONS(1831), - [anon_sym_unsafe] = ACTIONS(1833), - [anon_sym_sql] = ACTIONS(1470), - [sym_int_literal] = ACTIONS(1456), - [sym_float_literal] = ACTIONS(1472), - [sym_rune_literal] = ACTIONS(1472), - [sym_pseudo_compile_time_identifier] = ACTIONS(1474), + [anon_sym_BANG] = ACTIONS(1855), + [anon_sym_go] = ACTIONS(1857), + [anon_sym_spawn] = ACTIONS(1859), + [anon_sym_json_DOTdecode] = ACTIONS(1384), + [anon_sym_LBRACK2] = ACTIONS(1386), + [anon_sym_TILDE] = ACTIONS(1851), + [anon_sym_CARET] = ACTIONS(1851), + [anon_sym_AMP] = ACTIONS(1861), + [anon_sym_LT_DASH] = ACTIONS(1863), + [sym_none] = ACTIONS(1392), + [sym_true] = ACTIONS(1392), + [sym_false] = ACTIONS(1392), + [sym_nil] = ACTIONS(1392), + [anon_sym_if] = ACTIONS(1865), + [anon_sym_DOLLARif] = ACTIONS(1396), + [anon_sym_match] = ACTIONS(1398), + [anon_sym_select] = ACTIONS(1867), + [anon_sym_lock] = ACTIONS(1869), + [anon_sym_rlock] = ACTIONS(1869), + [anon_sym_unsafe] = ACTIONS(1871), + [anon_sym_sql] = ACTIONS(1406), + [sym_int_literal] = ACTIONS(1392), + [sym_float_literal] = ACTIONS(1410), + [sym_rune_literal] = ACTIONS(1410), + [sym_pseudo_compile_time_identifier] = ACTIONS(1412), [anon_sym_shared] = ACTIONS(83), [anon_sym_map_LBRACK] = ACTIONS(85), [anon_sym_chan] = ACTIONS(87), [anon_sym_thread] = ACTIONS(89), [anon_sym_atomic] = ACTIONS(91), - [sym___double_quote] = ACTIONS(1478), - [sym___single_quote] = ACTIONS(1480), - [sym___c_double_quote] = ACTIONS(1482), - [sym___c_single_quote] = ACTIONS(1484), - [sym___r_double_quote] = ACTIONS(1486), - [sym___r_single_quote] = ACTIONS(1488), + [sym___double_quote] = ACTIONS(1414), + [sym___single_quote] = ACTIONS(1416), + [sym___c_double_quote] = ACTIONS(1418), + [sym___c_single_quote] = ACTIONS(1420), + [sym___r_double_quote] = ACTIONS(1422), + [sym___r_single_quote] = ACTIONS(1424), }, [855] = { [sym_line_comment] = STATE(855), [sym_block_comment] = STATE(855), - [sym__expression] = STATE(2274), - [sym__expression_without_blocks] = STATE(2300), - [sym__expression_with_blocks] = STATE(2300), - [sym_inc_expression] = STATE(2307), - [sym_dec_expression] = STATE(2307), - [sym_or_block_expression] = STATE(2307), - [sym_option_propagation_expression] = STATE(2307), - [sym_result_propagation_expression] = STATE(2307), - [sym_anon_struct_value_expression] = STATE(2380), - [sym_go_expression] = STATE(2307), - [sym_spawn_expression] = STATE(2307), - [sym_parenthesized_expression] = STATE(2307), - [sym_call_expression] = STATE(2307), - [sym_type_initializer] = STATE(2380), - [sym_function_literal] = STATE(2307), - [sym_reference_expression] = STATE(2311), - [sym_type_reference_expression] = STATE(3541), - [sym_unary_expression] = STATE(2307), - [sym_receive_expression] = STATE(2307), - [sym_binary_expression] = STATE(2307), - [sym_as_type_cast_expression] = STATE(2307), - [sym__max_group] = STATE(2307), - [sym_literal] = STATE(2292), - [sym_map_init_expression] = STATE(2380), - [sym_array_creation] = STATE(2307), - [sym_fixed_array_creation] = STATE(2307), - [sym_selector_expression] = STATE(2307), - [sym_index_expression] = STATE(2307), - [sym_slice_expression] = STATE(2307), - [sym_if_expression] = STATE(2380), - [sym_compile_time_if_expression] = STATE(2380), - [sym_is_expression] = STATE(2307), - [sym_in_expression] = STATE(2307), - [sym_enum_fetch] = STATE(2307), - [sym_match_expression] = STATE(2380), - [sym_select_expression] = STATE(2380), - [sym_lock_expression] = STATE(2380), - [sym_unsafe_expression] = STATE(2380), - [sym_sql_expression] = STATE(2380), - [sym_c_string_literal] = STATE(2308), - [sym_raw_string_literal] = STATE(2308), - [sym_interpreted_string_literal] = STATE(2308), - [sym_mutability_modifiers] = STATE(632), - [sym_plain_type] = STATE(4297), - [sym__plain_type_without_special] = STATE(2302), - [sym_anon_struct_type] = STATE(2303), - [sym_multi_return_type] = STATE(2302), - [sym_result_type] = STATE(2302), - [sym_option_type] = STATE(2302), - [sym_qualified_type] = STATE(3541), - [sym_fixed_array_type] = STATE(2303), - [sym_array_type] = STATE(2303), - [sym_pointer_type] = STATE(2303), - [sym_wrong_pointer_type] = STATE(2303), - [sym_map_type] = STATE(2303), - [sym_channel_type] = STATE(2303), - [sym_shared_type] = STATE(2303), - [sym_thread_type] = STATE(2303), - [sym_atomic_type] = STATE(2303), - [sym_generic_type] = STATE(2303), - [sym_function_type] = STATE(2303), - [sym_identifier] = ACTIONS(1807), + [sym__expression] = STATE(955), + [sym__expression_without_blocks] = STATE(1086), + [sym__expression_with_blocks] = STATE(1086), + [sym_inc_expression] = STATE(1088), + [sym_dec_expression] = STATE(1088), + [sym_or_block_expression] = STATE(1088), + [sym_option_propagation_expression] = STATE(1088), + [sym_result_propagation_expression] = STATE(1088), + [sym_anon_struct_value_expression] = STATE(1025), + [sym_go_expression] = STATE(1088), + [sym_spawn_expression] = STATE(1088), + [sym_parenthesized_expression] = STATE(1088), + [sym_call_expression] = STATE(1088), + [sym_type_initializer] = STATE(1025), + [sym_function_literal] = STATE(1088), + [sym_reference_expression] = STATE(1024), + [sym_type_reference_expression] = STATE(3460), + [sym_unary_expression] = STATE(1088), + [sym_receive_expression] = STATE(1088), + [sym_binary_expression] = STATE(1088), + [sym_as_type_cast_expression] = STATE(1088), + [sym__max_group] = STATE(1088), + [sym_literal] = STATE(1078), + [sym_map_init_expression] = STATE(1025), + [sym_array_creation] = STATE(1088), + [sym_fixed_array_creation] = STATE(1088), + [sym_selector_expression] = STATE(1088), + [sym_index_expression] = STATE(1088), + [sym_slice_expression] = STATE(1088), + [sym_if_expression] = STATE(1025), + [sym_compile_time_if_expression] = STATE(1025), + [sym_is_expression] = STATE(1088), + [sym_in_expression] = STATE(1088), + [sym_enum_fetch] = STATE(1088), + [sym_match_expression] = STATE(1025), + [sym_select_expression] = STATE(1025), + [sym_lock_expression] = STATE(1025), + [sym_unsafe_expression] = STATE(1025), + [sym_sql_expression] = STATE(1025), + [sym_c_string_literal] = STATE(993), + [sym_raw_string_literal] = STATE(993), + [sym_interpreted_string_literal] = STATE(993), + [sym_mutability_modifiers] = STATE(618), + [sym_plain_type] = STATE(4090), + [sym__plain_type_without_special] = STATE(2360), + [sym_anon_struct_type] = STATE(2362), + [sym_multi_return_type] = STATE(2360), + [sym_result_type] = STATE(2360), + [sym_option_type] = STATE(2360), + [sym_qualified_type] = STATE(3460), + [sym_fixed_array_type] = STATE(2362), + [sym_array_type] = STATE(2362), + [sym_pointer_type] = STATE(2362), + [sym_wrong_pointer_type] = STATE(2362), + [sym_map_type] = STATE(2362), + [sym_channel_type] = STATE(2362), + [sym_shared_type] = STATE(2362), + [sym_thread_type] = STATE(2362), + [sym_atomic_type] = STATE(2362), + [sym_generic_type] = STATE(2362), + [sym_function_type] = STATE(2362), + [sym_identifier] = ACTIONS(493), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1428), - [anon_sym_LBRACE] = ACTIONS(1430), - [anon_sym_LPAREN] = ACTIONS(1432), - [anon_sym_fn] = ACTIONS(1434), - [anon_sym_PLUS] = ACTIONS(1811), - [anon_sym_DASH] = ACTIONS(1811), - [anon_sym_STAR] = ACTIONS(1813), - [anon_sym_struct] = ACTIONS(1440), + [anon_sym_DOT] = ACTIONS(501), + [anon_sym_LBRACE] = ACTIONS(2235), + [anon_sym_LPAREN] = ACTIONS(2237), + [anon_sym_fn] = ACTIONS(507), + [anon_sym_PLUS] = ACTIONS(2239), + [anon_sym_DASH] = ACTIONS(2239), + [anon_sym_STAR] = ACTIONS(2241), + [anon_sym_struct] = ACTIONS(513), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(1815), - [anon_sym_go] = ACTIONS(1817), - [anon_sym_spawn] = ACTIONS(1819), - [anon_sym_json_DOTdecode] = ACTIONS(1448), - [anon_sym_LBRACK2] = ACTIONS(1821), - [anon_sym_TILDE] = ACTIONS(1811), - [anon_sym_CARET] = ACTIONS(1811), - [anon_sym_AMP] = ACTIONS(1823), - [anon_sym_LT_DASH] = ACTIONS(1825), - [sym_none] = ACTIONS(1456), - [sym_true] = ACTIONS(1456), - [sym_false] = ACTIONS(1456), - [sym_nil] = ACTIONS(1456), - [anon_sym_if] = ACTIONS(1827), - [anon_sym_DOLLARif] = ACTIONS(1460), - [anon_sym_match] = ACTIONS(1462), - [anon_sym_select] = ACTIONS(1829), - [anon_sym_lock] = ACTIONS(1831), - [anon_sym_rlock] = ACTIONS(1831), - [anon_sym_unsafe] = ACTIONS(1833), - [anon_sym_sql] = ACTIONS(1470), - [sym_int_literal] = ACTIONS(1456), - [sym_float_literal] = ACTIONS(1472), - [sym_rune_literal] = ACTIONS(1472), - [sym_pseudo_compile_time_identifier] = ACTIONS(1474), + [anon_sym_BANG] = ACTIONS(2243), + [anon_sym_go] = ACTIONS(519), + [anon_sym_spawn] = ACTIONS(521), + [anon_sym_json_DOTdecode] = ACTIONS(2245), + [anon_sym_LBRACK2] = ACTIONS(2247), + [anon_sym_TILDE] = ACTIONS(2239), + [anon_sym_CARET] = ACTIONS(2239), + [anon_sym_AMP] = ACTIONS(2249), + [anon_sym_LT_DASH] = ACTIONS(2251), + [sym_none] = ACTIONS(531), + [sym_true] = ACTIONS(531), + [sym_false] = ACTIONS(531), + [sym_nil] = ACTIONS(531), + [anon_sym_if] = ACTIONS(533), + [anon_sym_DOLLARif] = ACTIONS(535), + [anon_sym_match] = ACTIONS(537), + [anon_sym_select] = ACTIONS(539), + [anon_sym_lock] = ACTIONS(541), + [anon_sym_rlock] = ACTIONS(541), + [anon_sym_unsafe] = ACTIONS(543), + [anon_sym_sql] = ACTIONS(545), + [sym_int_literal] = ACTIONS(531), + [sym_float_literal] = ACTIONS(2253), + [sym_rune_literal] = ACTIONS(2253), + [sym_pseudo_compile_time_identifier] = ACTIONS(547), [anon_sym_shared] = ACTIONS(83), [anon_sym_map_LBRACK] = ACTIONS(85), [anon_sym_chan] = ACTIONS(87), [anon_sym_thread] = ACTIONS(89), [anon_sym_atomic] = ACTIONS(91), - [sym___double_quote] = ACTIONS(1478), - [sym___single_quote] = ACTIONS(1480), - [sym___c_double_quote] = ACTIONS(1482), - [sym___c_single_quote] = ACTIONS(1484), - [sym___r_double_quote] = ACTIONS(1486), - [sym___r_single_quote] = ACTIONS(1488), + [sym___double_quote] = ACTIONS(2255), + [sym___single_quote] = ACTIONS(2257), + [sym___c_double_quote] = ACTIONS(2259), + [sym___c_single_quote] = ACTIONS(2261), + [sym___r_double_quote] = ACTIONS(2263), + [sym___r_single_quote] = ACTIONS(2265), }, [856] = { [sym_line_comment] = STATE(856), [sym_block_comment] = STATE(856), - [sym__expression] = STATE(2526), - [sym__expression_without_blocks] = STATE(2300), - [sym__expression_with_blocks] = STATE(2300), - [sym_inc_expression] = STATE(2307), - [sym_dec_expression] = STATE(2307), - [sym_or_block_expression] = STATE(2307), - [sym_option_propagation_expression] = STATE(2307), - [sym_result_propagation_expression] = STATE(2307), - [sym_anon_struct_value_expression] = STATE(2380), - [sym_go_expression] = STATE(2307), - [sym_spawn_expression] = STATE(2307), - [sym_parenthesized_expression] = STATE(2307), - [sym_call_expression] = STATE(2307), - [sym_type_initializer] = STATE(2380), - [sym_function_literal] = STATE(2307), - [sym_reference_expression] = STATE(2311), - [sym_type_reference_expression] = STATE(3541), - [sym_unary_expression] = STATE(2307), - [sym_receive_expression] = STATE(2307), - [sym_binary_expression] = STATE(2307), - [sym_as_type_cast_expression] = STATE(2307), - [sym__max_group] = STATE(2307), - [sym_literal] = STATE(2292), - [sym_map_init_expression] = STATE(2380), - [sym_array_creation] = STATE(2307), - [sym_fixed_array_creation] = STATE(2307), - [sym_selector_expression] = STATE(2307), - [sym_index_expression] = STATE(2307), - [sym_slice_expression] = STATE(2307), - [sym_if_expression] = STATE(2380), - [sym_compile_time_if_expression] = STATE(2380), - [sym_is_expression] = STATE(2307), - [sym_in_expression] = STATE(2307), - [sym_enum_fetch] = STATE(2307), - [sym_match_expression] = STATE(2380), - [sym_select_expression] = STATE(2380), - [sym_lock_expression] = STATE(2380), - [sym_unsafe_expression] = STATE(2380), - [sym_sql_expression] = STATE(2380), - [sym_c_string_literal] = STATE(2308), - [sym_raw_string_literal] = STATE(2308), - [sym_interpreted_string_literal] = STATE(2308), - [sym_mutability_modifiers] = STATE(632), - [sym_plain_type] = STATE(4297), - [sym__plain_type_without_special] = STATE(2302), - [sym_anon_struct_type] = STATE(2303), - [sym_multi_return_type] = STATE(2302), - [sym_result_type] = STATE(2302), - [sym_option_type] = STATE(2302), - [sym_qualified_type] = STATE(3541), - [sym_fixed_array_type] = STATE(2303), - [sym_array_type] = STATE(2303), - [sym_pointer_type] = STATE(2303), - [sym_wrong_pointer_type] = STATE(2303), - [sym_map_type] = STATE(2303), - [sym_channel_type] = STATE(2303), - [sym_shared_type] = STATE(2303), - [sym_thread_type] = STATE(2303), - [sym_atomic_type] = STATE(2303), - [sym_generic_type] = STATE(2303), - [sym_function_type] = STATE(2303), - [sym_identifier] = ACTIONS(1807), + [sym__expression] = STATE(1289), + [sym__expression_without_blocks] = STATE(1318), + [sym__expression_with_blocks] = STATE(1318), + [sym_inc_expression] = STATE(1319), + [sym_dec_expression] = STATE(1319), + [sym_or_block_expression] = STATE(1319), + [sym_option_propagation_expression] = STATE(1319), + [sym_result_propagation_expression] = STATE(1319), + [sym_anon_struct_value_expression] = STATE(1320), + [sym_go_expression] = STATE(1319), + [sym_spawn_expression] = STATE(1319), + [sym_parenthesized_expression] = STATE(1319), + [sym_call_expression] = STATE(1319), + [sym_type_initializer] = STATE(1320), + [sym_function_literal] = STATE(1319), + [sym_reference_expression] = STATE(1298), + [sym_type_reference_expression] = STATE(3460), + [sym_unary_expression] = STATE(1319), + [sym_receive_expression] = STATE(1319), + [sym_binary_expression] = STATE(1319), + [sym_as_type_cast_expression] = STATE(1319), + [sym__max_group] = STATE(1319), + [sym_literal] = STATE(1314), + [sym_map_init_expression] = STATE(1320), + [sym_array_creation] = STATE(1319), + [sym_fixed_array_creation] = STATE(1319), + [sym_selector_expression] = STATE(1319), + [sym_index_expression] = STATE(1319), + [sym_slice_expression] = STATE(1319), + [sym_if_expression] = STATE(1320), + [sym_compile_time_if_expression] = STATE(1320), + [sym_is_expression] = STATE(1319), + [sym_in_expression] = STATE(1319), + [sym_enum_fetch] = STATE(1319), + [sym_match_expression] = STATE(1320), + [sym_select_expression] = STATE(1320), + [sym_lock_expression] = STATE(1320), + [sym_unsafe_expression] = STATE(1320), + [sym_sql_expression] = STATE(1320), + [sym_c_string_literal] = STATE(1291), + [sym_raw_string_literal] = STATE(1291), + [sym_interpreted_string_literal] = STATE(1291), + [sym_mutability_modifiers] = STATE(639), + [sym_plain_type] = STATE(4307), + [sym__plain_type_without_special] = STATE(2360), + [sym_anon_struct_type] = STATE(2362), + [sym_multi_return_type] = STATE(2360), + [sym_result_type] = STATE(2360), + [sym_option_type] = STATE(2360), + [sym_qualified_type] = STATE(3460), + [sym_fixed_array_type] = STATE(2362), + [sym_array_type] = STATE(2362), + [sym_pointer_type] = STATE(2362), + [sym_wrong_pointer_type] = STATE(2362), + [sym_map_type] = STATE(2362), + [sym_channel_type] = STATE(2362), + [sym_shared_type] = STATE(2362), + [sym_thread_type] = STATE(2362), + [sym_atomic_type] = STATE(2362), + [sym_generic_type] = STATE(2362), + [sym_function_type] = STATE(2362), + [sym_identifier] = ACTIONS(1360), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1428), - [anon_sym_LBRACE] = ACTIONS(1430), - [anon_sym_LPAREN] = ACTIONS(1432), - [anon_sym_fn] = ACTIONS(1434), - [anon_sym_PLUS] = ACTIONS(1811), - [anon_sym_DASH] = ACTIONS(1811), - [anon_sym_STAR] = ACTIONS(1813), - [anon_sym_struct] = ACTIONS(1440), + [anon_sym_DOT] = ACTIONS(1362), + [anon_sym_LBRACE] = ACTIONS(1364), + [anon_sym_LPAREN] = ACTIONS(1366), + [anon_sym_fn] = ACTIONS(1368), + [anon_sym_PLUS] = ACTIONS(1851), + [anon_sym_DASH] = ACTIONS(1851), + [anon_sym_STAR] = ACTIONS(1853), + [anon_sym_struct] = ACTIONS(1376), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(1815), - [anon_sym_go] = ACTIONS(1817), - [anon_sym_spawn] = ACTIONS(1819), - [anon_sym_json_DOTdecode] = ACTIONS(1448), - [anon_sym_LBRACK2] = ACTIONS(1821), - [anon_sym_TILDE] = ACTIONS(1811), - [anon_sym_CARET] = ACTIONS(1811), - [anon_sym_AMP] = ACTIONS(1823), - [anon_sym_LT_DASH] = ACTIONS(1825), - [sym_none] = ACTIONS(1456), - [sym_true] = ACTIONS(1456), - [sym_false] = ACTIONS(1456), - [sym_nil] = ACTIONS(1456), - [anon_sym_if] = ACTIONS(1827), - [anon_sym_DOLLARif] = ACTIONS(1460), - [anon_sym_match] = ACTIONS(1462), - [anon_sym_select] = ACTIONS(1829), - [anon_sym_lock] = ACTIONS(1831), - [anon_sym_rlock] = ACTIONS(1831), - [anon_sym_unsafe] = ACTIONS(1833), - [anon_sym_sql] = ACTIONS(1470), - [sym_int_literal] = ACTIONS(1456), - [sym_float_literal] = ACTIONS(1472), - [sym_rune_literal] = ACTIONS(1472), - [sym_pseudo_compile_time_identifier] = ACTIONS(1474), + [anon_sym_BANG] = ACTIONS(1855), + [anon_sym_go] = ACTIONS(1857), + [anon_sym_spawn] = ACTIONS(1859), + [anon_sym_json_DOTdecode] = ACTIONS(1384), + [anon_sym_LBRACK2] = ACTIONS(1386), + [anon_sym_TILDE] = ACTIONS(1851), + [anon_sym_CARET] = ACTIONS(1851), + [anon_sym_AMP] = ACTIONS(1861), + [anon_sym_LT_DASH] = ACTIONS(1863), + [sym_none] = ACTIONS(1392), + [sym_true] = ACTIONS(1392), + [sym_false] = ACTIONS(1392), + [sym_nil] = ACTIONS(1392), + [anon_sym_if] = ACTIONS(1865), + [anon_sym_DOLLARif] = ACTIONS(1396), + [anon_sym_match] = ACTIONS(1398), + [anon_sym_select] = ACTIONS(1867), + [anon_sym_lock] = ACTIONS(1869), + [anon_sym_rlock] = ACTIONS(1869), + [anon_sym_unsafe] = ACTIONS(1871), + [anon_sym_sql] = ACTIONS(1406), + [sym_int_literal] = ACTIONS(1392), + [sym_float_literal] = ACTIONS(1410), + [sym_rune_literal] = ACTIONS(1410), + [sym_pseudo_compile_time_identifier] = ACTIONS(1412), [anon_sym_shared] = ACTIONS(83), [anon_sym_map_LBRACK] = ACTIONS(85), [anon_sym_chan] = ACTIONS(87), [anon_sym_thread] = ACTIONS(89), [anon_sym_atomic] = ACTIONS(91), - [sym___double_quote] = ACTIONS(1478), - [sym___single_quote] = ACTIONS(1480), - [sym___c_double_quote] = ACTIONS(1482), - [sym___c_single_quote] = ACTIONS(1484), - [sym___r_double_quote] = ACTIONS(1486), - [sym___r_single_quote] = ACTIONS(1488), + [sym___double_quote] = ACTIONS(1414), + [sym___single_quote] = ACTIONS(1416), + [sym___c_double_quote] = ACTIONS(1418), + [sym___c_single_quote] = ACTIONS(1420), + [sym___r_double_quote] = ACTIONS(1422), + [sym___r_single_quote] = ACTIONS(1424), }, [857] = { [sym_line_comment] = STATE(857), [sym_block_comment] = STATE(857), - [sym__expression] = STATE(2534), - [sym__expression_without_blocks] = STATE(2625), - [sym__expression_with_blocks] = STATE(2625), - [sym_inc_expression] = STATE(2765), - [sym_dec_expression] = STATE(2765), - [sym_or_block_expression] = STATE(2765), - [sym_option_propagation_expression] = STATE(2765), - [sym_result_propagation_expression] = STATE(2765), - [sym_anon_struct_value_expression] = STATE(2619), - [sym_go_expression] = STATE(2765), - [sym_spawn_expression] = STATE(2765), - [sym_parenthesized_expression] = STATE(2765), - [sym_call_expression] = STATE(2765), - [sym_type_initializer] = STATE(2619), - [sym_function_literal] = STATE(2765), - [sym_reference_expression] = STATE(2764), - [sym_type_reference_expression] = STATE(3541), - [sym_unary_expression] = STATE(2765), - [sym_receive_expression] = STATE(2765), - [sym_binary_expression] = STATE(2765), - [sym_as_type_cast_expression] = STATE(2765), - [sym__max_group] = STATE(2765), - [sym_literal] = STATE(2769), - [sym_map_init_expression] = STATE(2619), - [sym_array_creation] = STATE(2765), - [sym_fixed_array_creation] = STATE(2765), - [sym_selector_expression] = STATE(2765), - [sym_index_expression] = STATE(2765), - [sym_slice_expression] = STATE(2765), - [sym_if_expression] = STATE(2619), - [sym_compile_time_if_expression] = STATE(2619), - [sym_is_expression] = STATE(2765), - [sym_in_expression] = STATE(2765), - [sym_enum_fetch] = STATE(2765), - [sym_match_expression] = STATE(2619), - [sym_select_expression] = STATE(2619), - [sym_lock_expression] = STATE(2619), - [sym_unsafe_expression] = STATE(2619), - [sym_sql_expression] = STATE(2619), - [sym_c_string_literal] = STATE(2660), - [sym_raw_string_literal] = STATE(2660), - [sym_interpreted_string_literal] = STATE(2660), - [sym_mutability_modifiers] = STATE(567), - [sym_plain_type] = STATE(4008), - [sym__plain_type_without_special] = STATE(2302), - [sym_anon_struct_type] = STATE(2303), - [sym_multi_return_type] = STATE(2302), - [sym_result_type] = STATE(2302), - [sym_option_type] = STATE(2302), - [sym_qualified_type] = STATE(3541), - [sym_fixed_array_type] = STATE(2303), - [sym_array_type] = STATE(2303), - [sym_pointer_type] = STATE(2303), - [sym_wrong_pointer_type] = STATE(2303), - [sym_map_type] = STATE(2303), - [sym_channel_type] = STATE(2303), - [sym_shared_type] = STATE(2303), - [sym_thread_type] = STATE(2303), - [sym_atomic_type] = STATE(2303), - [sym_generic_type] = STATE(2303), - [sym_function_type] = STATE(2303), - [sym_identifier] = ACTIONS(1807), + [sym__expression] = STATE(1256), + [sym__expression_without_blocks] = STATE(1318), + [sym__expression_with_blocks] = STATE(1318), + [sym_inc_expression] = STATE(1319), + [sym_dec_expression] = STATE(1319), + [sym_or_block_expression] = STATE(1319), + [sym_option_propagation_expression] = STATE(1319), + [sym_result_propagation_expression] = STATE(1319), + [sym_anon_struct_value_expression] = STATE(1320), + [sym_go_expression] = STATE(1319), + [sym_spawn_expression] = STATE(1319), + [sym_parenthesized_expression] = STATE(1319), + [sym_call_expression] = STATE(1319), + [sym_type_initializer] = STATE(1320), + [sym_function_literal] = STATE(1319), + [sym_reference_expression] = STATE(1298), + [sym_type_reference_expression] = STATE(3460), + [sym_unary_expression] = STATE(1319), + [sym_receive_expression] = STATE(1319), + [sym_binary_expression] = STATE(1319), + [sym_as_type_cast_expression] = STATE(1319), + [sym__max_group] = STATE(1319), + [sym_literal] = STATE(1314), + [sym_map_init_expression] = STATE(1320), + [sym_array_creation] = STATE(1319), + [sym_fixed_array_creation] = STATE(1319), + [sym_selector_expression] = STATE(1319), + [sym_index_expression] = STATE(1319), + [sym_slice_expression] = STATE(1319), + [sym_if_expression] = STATE(1320), + [sym_compile_time_if_expression] = STATE(1320), + [sym_is_expression] = STATE(1319), + [sym_in_expression] = STATE(1319), + [sym_enum_fetch] = STATE(1319), + [sym_match_expression] = STATE(1320), + [sym_select_expression] = STATE(1320), + [sym_lock_expression] = STATE(1320), + [sym_unsafe_expression] = STATE(1320), + [sym_sql_expression] = STATE(1320), + [sym_c_string_literal] = STATE(1291), + [sym_raw_string_literal] = STATE(1291), + [sym_interpreted_string_literal] = STATE(1291), + [sym_mutability_modifiers] = STATE(639), + [sym_plain_type] = STATE(4307), + [sym__plain_type_without_special] = STATE(2360), + [sym_anon_struct_type] = STATE(2362), + [sym_multi_return_type] = STATE(2360), + [sym_result_type] = STATE(2360), + [sym_option_type] = STATE(2360), + [sym_qualified_type] = STATE(3460), + [sym_fixed_array_type] = STATE(2362), + [sym_array_type] = STATE(2362), + [sym_pointer_type] = STATE(2362), + [sym_wrong_pointer_type] = STATE(2362), + [sym_map_type] = STATE(2362), + [sym_channel_type] = STATE(2362), + [sym_shared_type] = STATE(2362), + [sym_thread_type] = STATE(2362), + [sym_atomic_type] = STATE(2362), + [sym_generic_type] = STATE(2362), + [sym_function_type] = STATE(2362), + [sym_identifier] = ACTIONS(1360), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1081), - [anon_sym_LBRACE] = ACTIONS(1083), - [anon_sym_LPAREN] = ACTIONS(1087), - [anon_sym_fn] = ACTIONS(1089), - [anon_sym_PLUS] = ACTIONS(3120), - [anon_sym_DASH] = ACTIONS(3120), - [anon_sym_STAR] = ACTIONS(3122), - [anon_sym_struct] = ACTIONS(1095), + [anon_sym_DOT] = ACTIONS(1362), + [anon_sym_LBRACE] = ACTIONS(1364), + [anon_sym_LPAREN] = ACTIONS(1366), + [anon_sym_fn] = ACTIONS(1368), + [anon_sym_PLUS] = ACTIONS(1370), + [anon_sym_DASH] = ACTIONS(1370), + [anon_sym_STAR] = ACTIONS(1372), + [anon_sym_struct] = ACTIONS(1376), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(3124), - [anon_sym_go] = ACTIONS(3126), - [anon_sym_spawn] = ACTIONS(3128), - [anon_sym_json_DOTdecode] = ACTIONS(1103), - [anon_sym_LBRACK2] = ACTIONS(1105), - [anon_sym_TILDE] = ACTIONS(3120), - [anon_sym_CARET] = ACTIONS(3120), - [anon_sym_AMP] = ACTIONS(3130), - [anon_sym_LT_DASH] = ACTIONS(3132), - [sym_none] = ACTIONS(1111), - [sym_true] = ACTIONS(1111), - [sym_false] = ACTIONS(1111), - [sym_nil] = ACTIONS(1111), - [anon_sym_if] = ACTIONS(1113), - [anon_sym_DOLLARif] = ACTIONS(1117), - [anon_sym_match] = ACTIONS(1119), - [anon_sym_select] = ACTIONS(3134), - [anon_sym_lock] = ACTIONS(3136), - [anon_sym_rlock] = ACTIONS(3136), - [anon_sym_unsafe] = ACTIONS(1125), - [anon_sym_sql] = ACTIONS(1127), - [sym_int_literal] = ACTIONS(1111), - [sym_float_literal] = ACTIONS(1129), - [sym_rune_literal] = ACTIONS(1129), - [sym_pseudo_compile_time_identifier] = ACTIONS(1131), + [anon_sym_BANG] = ACTIONS(1378), + [anon_sym_go] = ACTIONS(1380), + [anon_sym_spawn] = ACTIONS(1382), + [anon_sym_json_DOTdecode] = ACTIONS(1384), + [anon_sym_LBRACK2] = ACTIONS(1386), + [anon_sym_TILDE] = ACTIONS(1370), + [anon_sym_CARET] = ACTIONS(1370), + [anon_sym_AMP] = ACTIONS(1388), + [anon_sym_LT_DASH] = ACTIONS(1390), + [sym_none] = ACTIONS(1392), + [sym_true] = ACTIONS(1392), + [sym_false] = ACTIONS(1392), + [sym_nil] = ACTIONS(1392), + [anon_sym_if] = ACTIONS(1865), + [anon_sym_DOLLARif] = ACTIONS(1396), + [anon_sym_match] = ACTIONS(1398), + [anon_sym_select] = ACTIONS(1400), + [anon_sym_lock] = ACTIONS(1402), + [anon_sym_rlock] = ACTIONS(1402), + [anon_sym_unsafe] = ACTIONS(1871), + [anon_sym_sql] = ACTIONS(1406), + [sym_int_literal] = ACTIONS(1392), + [sym_float_literal] = ACTIONS(1410), + [sym_rune_literal] = ACTIONS(1410), + [sym_pseudo_compile_time_identifier] = ACTIONS(1412), [anon_sym_shared] = ACTIONS(83), [anon_sym_map_LBRACK] = ACTIONS(85), [anon_sym_chan] = ACTIONS(87), [anon_sym_thread] = ACTIONS(89), [anon_sym_atomic] = ACTIONS(91), - [sym___double_quote] = ACTIONS(1133), - [sym___single_quote] = ACTIONS(1135), - [sym___c_double_quote] = ACTIONS(1137), - [sym___c_single_quote] = ACTIONS(1139), - [sym___r_double_quote] = ACTIONS(1141), - [sym___r_single_quote] = ACTIONS(1143), + [sym___double_quote] = ACTIONS(1414), + [sym___single_quote] = ACTIONS(1416), + [sym___c_double_quote] = ACTIONS(1418), + [sym___c_single_quote] = ACTIONS(1420), + [sym___r_double_quote] = ACTIONS(1422), + [sym___r_single_quote] = ACTIONS(1424), }, [858] = { [sym_line_comment] = STATE(858), [sym_block_comment] = STATE(858), - [sym__expression] = STATE(1901), - [sym__expression_without_blocks] = STATE(2044), - [sym__expression_with_blocks] = STATE(2044), - [sym_inc_expression] = STATE(2045), - [sym_dec_expression] = STATE(2045), - [sym_or_block_expression] = STATE(2045), - [sym_option_propagation_expression] = STATE(2045), - [sym_result_propagation_expression] = STATE(2045), - [sym_anon_struct_value_expression] = STATE(2046), - [sym_go_expression] = STATE(2045), - [sym_spawn_expression] = STATE(2045), - [sym_parenthesized_expression] = STATE(2045), - [sym_call_expression] = STATE(2045), - [sym_type_initializer] = STATE(2046), - [sym_function_literal] = STATE(2045), - [sym_reference_expression] = STATE(1912), - [sym_type_reference_expression] = STATE(3541), - [sym_unary_expression] = STATE(2045), - [sym_receive_expression] = STATE(2045), - [sym_binary_expression] = STATE(2045), - [sym_as_type_cast_expression] = STATE(2045), - [sym__max_group] = STATE(2045), - [sym_literal] = STATE(2043), - [sym_map_init_expression] = STATE(2046), - [sym_array_creation] = STATE(2045), - [sym_fixed_array_creation] = STATE(2045), - [sym_selector_expression] = STATE(2045), - [sym_index_expression] = STATE(2045), - [sym_slice_expression] = STATE(2045), - [sym_if_expression] = STATE(2046), - [sym_compile_time_if_expression] = STATE(2046), - [sym_is_expression] = STATE(2045), - [sym_in_expression] = STATE(2045), - [sym_enum_fetch] = STATE(2045), - [sym_match_expression] = STATE(2046), - [sym_select_expression] = STATE(2046), - [sym_lock_expression] = STATE(2046), - [sym_unsafe_expression] = STATE(2046), - [sym_sql_expression] = STATE(2046), - [sym_c_string_literal] = STATE(2041), - [sym_raw_string_literal] = STATE(2041), - [sym_interpreted_string_literal] = STATE(2041), - [sym_mutability_modifiers] = STATE(689), - [sym_plain_type] = STATE(4052), - [sym__plain_type_without_special] = STATE(2302), - [sym_anon_struct_type] = STATE(2303), - [sym_multi_return_type] = STATE(2302), - [sym_result_type] = STATE(2302), - [sym_option_type] = STATE(2302), - [sym_qualified_type] = STATE(3541), - [sym_fixed_array_type] = STATE(2303), - [sym_array_type] = STATE(2303), - [sym_pointer_type] = STATE(2303), - [sym_wrong_pointer_type] = STATE(2303), - [sym_map_type] = STATE(2303), - [sym_channel_type] = STATE(2303), - [sym_shared_type] = STATE(2303), - [sym_thread_type] = STATE(2303), - [sym_atomic_type] = STATE(2303), - [sym_generic_type] = STATE(2303), - [sym_function_type] = STATE(2303), - [sym_identifier] = ACTIONS(3142), + [sym__expression] = STATE(1258), + [sym__expression_without_blocks] = STATE(1318), + [sym__expression_with_blocks] = STATE(1318), + [sym_inc_expression] = STATE(1319), + [sym_dec_expression] = STATE(1319), + [sym_or_block_expression] = STATE(1319), + [sym_option_propagation_expression] = STATE(1319), + [sym_result_propagation_expression] = STATE(1319), + [sym_anon_struct_value_expression] = STATE(1320), + [sym_go_expression] = STATE(1319), + [sym_spawn_expression] = STATE(1319), + [sym_parenthesized_expression] = STATE(1319), + [sym_call_expression] = STATE(1319), + [sym_type_initializer] = STATE(1320), + [sym_function_literal] = STATE(1319), + [sym_reference_expression] = STATE(1298), + [sym_type_reference_expression] = STATE(3460), + [sym_unary_expression] = STATE(1319), + [sym_receive_expression] = STATE(1319), + [sym_binary_expression] = STATE(1319), + [sym_as_type_cast_expression] = STATE(1319), + [sym__max_group] = STATE(1319), + [sym_literal] = STATE(1314), + [sym_map_init_expression] = STATE(1320), + [sym_array_creation] = STATE(1319), + [sym_fixed_array_creation] = STATE(1319), + [sym_selector_expression] = STATE(1319), + [sym_index_expression] = STATE(1319), + [sym_slice_expression] = STATE(1319), + [sym_if_expression] = STATE(1320), + [sym_compile_time_if_expression] = STATE(1320), + [sym_is_expression] = STATE(1319), + [sym_in_expression] = STATE(1319), + [sym_enum_fetch] = STATE(1319), + [sym_match_expression] = STATE(1320), + [sym_select_expression] = STATE(1320), + [sym_lock_expression] = STATE(1320), + [sym_unsafe_expression] = STATE(1320), + [sym_sql_expression] = STATE(1320), + [sym_c_string_literal] = STATE(1291), + [sym_raw_string_literal] = STATE(1291), + [sym_interpreted_string_literal] = STATE(1291), + [sym_mutability_modifiers] = STATE(639), + [sym_plain_type] = STATE(4142), + [sym__plain_type_without_special] = STATE(2360), + [sym_anon_struct_type] = STATE(2362), + [sym_multi_return_type] = STATE(2360), + [sym_result_type] = STATE(2360), + [sym_option_type] = STATE(2360), + [sym_qualified_type] = STATE(3460), + [sym_fixed_array_type] = STATE(2362), + [sym_array_type] = STATE(2362), + [sym_pointer_type] = STATE(2362), + [sym_wrong_pointer_type] = STATE(2362), + [sym_map_type] = STATE(2362), + [sym_channel_type] = STATE(2362), + [sym_shared_type] = STATE(2362), + [sym_thread_type] = STATE(2362), + [sym_atomic_type] = STATE(2362), + [sym_generic_type] = STATE(2362), + [sym_function_type] = STATE(2362), + [sym_identifier] = ACTIONS(1360), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(811), - [anon_sym_LBRACE] = ACTIONS(3144), - [anon_sym_LPAREN] = ACTIONS(815), - [anon_sym_fn] = ACTIONS(817), - [anon_sym_PLUS] = ACTIONS(3146), - [anon_sym_DASH] = ACTIONS(3146), - [anon_sym_STAR] = ACTIONS(3148), - [anon_sym_struct] = ACTIONS(823), + [anon_sym_DOT] = ACTIONS(1362), + [anon_sym_LBRACE] = ACTIONS(1364), + [anon_sym_LPAREN] = ACTIONS(1366), + [anon_sym_fn] = ACTIONS(1368), + [anon_sym_PLUS] = ACTIONS(1370), + [anon_sym_DASH] = ACTIONS(1370), + [anon_sym_STAR] = ACTIONS(1372), + [anon_sym_struct] = ACTIONS(1376), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(3150), - [anon_sym_go] = ACTIONS(3152), - [anon_sym_spawn] = ACTIONS(3154), - [anon_sym_json_DOTdecode] = ACTIONS(833), - [anon_sym_LBRACK2] = ACTIONS(3156), - [anon_sym_TILDE] = ACTIONS(3146), - [anon_sym_CARET] = ACTIONS(3146), - [anon_sym_AMP] = ACTIONS(3158), - [anon_sym_LT_DASH] = ACTIONS(3160), - [sym_none] = ACTIONS(841), - [sym_true] = ACTIONS(841), - [sym_false] = ACTIONS(841), - [sym_nil] = ACTIONS(841), - [anon_sym_if] = ACTIONS(843), - [anon_sym_DOLLARif] = ACTIONS(845), - [anon_sym_match] = ACTIONS(847), - [anon_sym_select] = ACTIONS(3162), - [anon_sym_lock] = ACTIONS(3164), - [anon_sym_rlock] = ACTIONS(3164), - [anon_sym_unsafe] = ACTIONS(853), - [anon_sym_sql] = ACTIONS(855), - [sym_int_literal] = ACTIONS(841), - [sym_float_literal] = ACTIONS(857), - [sym_rune_literal] = ACTIONS(857), - [sym_pseudo_compile_time_identifier] = ACTIONS(859), + [anon_sym_BANG] = ACTIONS(1378), + [anon_sym_go] = ACTIONS(1380), + [anon_sym_spawn] = ACTIONS(1382), + [anon_sym_json_DOTdecode] = ACTIONS(1384), + [anon_sym_LBRACK2] = ACTIONS(1386), + [anon_sym_TILDE] = ACTIONS(1370), + [anon_sym_CARET] = ACTIONS(1370), + [anon_sym_AMP] = ACTIONS(1388), + [anon_sym_LT_DASH] = ACTIONS(1390), + [sym_none] = ACTIONS(1392), + [sym_true] = ACTIONS(1392), + [sym_false] = ACTIONS(1392), + [sym_nil] = ACTIONS(1392), + [anon_sym_if] = ACTIONS(1865), + [anon_sym_DOLLARif] = ACTIONS(1396), + [anon_sym_match] = ACTIONS(1398), + [anon_sym_select] = ACTIONS(1400), + [anon_sym_lock] = ACTIONS(1402), + [anon_sym_rlock] = ACTIONS(1402), + [anon_sym_unsafe] = ACTIONS(1871), + [anon_sym_sql] = ACTIONS(1406), + [sym_int_literal] = ACTIONS(1392), + [sym_float_literal] = ACTIONS(1410), + [sym_rune_literal] = ACTIONS(1410), + [sym_pseudo_compile_time_identifier] = ACTIONS(1412), [anon_sym_shared] = ACTIONS(83), [anon_sym_map_LBRACK] = ACTIONS(85), [anon_sym_chan] = ACTIONS(87), [anon_sym_thread] = ACTIONS(89), [anon_sym_atomic] = ACTIONS(91), - [sym___double_quote] = ACTIONS(861), - [sym___single_quote] = ACTIONS(863), - [sym___c_double_quote] = ACTIONS(865), - [sym___c_single_quote] = ACTIONS(867), - [sym___r_double_quote] = ACTIONS(869), - [sym___r_single_quote] = ACTIONS(871), + [sym___double_quote] = ACTIONS(1414), + [sym___single_quote] = ACTIONS(1416), + [sym___c_double_quote] = ACTIONS(1418), + [sym___c_single_quote] = ACTIONS(1420), + [sym___r_double_quote] = ACTIONS(1422), + [sym___r_single_quote] = ACTIONS(1424), }, [859] = { [sym_line_comment] = STATE(859), [sym_block_comment] = STATE(859), - [sym__expression] = STATE(2352), - [sym__expression_without_blocks] = STATE(2489), - [sym__expression_with_blocks] = STATE(2489), - [sym_inc_expression] = STATE(2479), - [sym_dec_expression] = STATE(2479), - [sym_or_block_expression] = STATE(2479), - [sym_option_propagation_expression] = STATE(2479), - [sym_result_propagation_expression] = STATE(2479), - [sym_anon_struct_value_expression] = STATE(2491), - [sym_go_expression] = STATE(2479), - [sym_spawn_expression] = STATE(2479), - [sym_parenthesized_expression] = STATE(2479), - [sym_call_expression] = STATE(2479), - [sym_type_initializer] = STATE(2491), - [sym_function_literal] = STATE(2479), - [sym_reference_expression] = STATE(2542), - [sym_type_reference_expression] = STATE(3541), - [sym_unary_expression] = STATE(2479), - [sym_receive_expression] = STATE(2479), - [sym_binary_expression] = STATE(2479), - [sym_as_type_cast_expression] = STATE(2479), - [sym__max_group] = STATE(2479), - [sym_literal] = STATE(2454), - [sym_map_init_expression] = STATE(2491), - [sym_array_creation] = STATE(2479), - [sym_fixed_array_creation] = STATE(2479), - [sym_selector_expression] = STATE(2479), - [sym_index_expression] = STATE(2479), - [sym_slice_expression] = STATE(2479), - [sym_if_expression] = STATE(2491), - [sym_compile_time_if_expression] = STATE(2491), - [sym_is_expression] = STATE(2479), - [sym_in_expression] = STATE(2479), - [sym_enum_fetch] = STATE(2479), - [sym_match_expression] = STATE(2491), - [sym_select_expression] = STATE(2491), - [sym_lock_expression] = STATE(2491), - [sym_unsafe_expression] = STATE(2491), - [sym_sql_expression] = STATE(2491), - [sym_c_string_literal] = STATE(2469), - [sym_raw_string_literal] = STATE(2469), - [sym_interpreted_string_literal] = STATE(2469), - [sym_mutability_modifiers] = STATE(640), - [sym_plain_type] = STATE(4255), - [sym__plain_type_without_special] = STATE(2302), - [sym_anon_struct_type] = STATE(2303), - [sym_multi_return_type] = STATE(2302), - [sym_result_type] = STATE(2302), - [sym_option_type] = STATE(2302), - [sym_qualified_type] = STATE(3541), - [sym_fixed_array_type] = STATE(2303), - [sym_array_type] = STATE(2303), - [sym_pointer_type] = STATE(2303), - [sym_wrong_pointer_type] = STATE(2303), - [sym_map_type] = STATE(2303), - [sym_channel_type] = STATE(2303), - [sym_shared_type] = STATE(2303), - [sym_thread_type] = STATE(2303), - [sym_atomic_type] = STATE(2303), - [sym_generic_type] = STATE(2303), - [sym_function_type] = STATE(2303), - [sym_identifier] = ACTIONS(1695), + [sym__expression] = STATE(1281), + [sym__expression_without_blocks] = STATE(1318), + [sym__expression_with_blocks] = STATE(1318), + [sym_inc_expression] = STATE(1319), + [sym_dec_expression] = STATE(1319), + [sym_or_block_expression] = STATE(1319), + [sym_option_propagation_expression] = STATE(1319), + [sym_result_propagation_expression] = STATE(1319), + [sym_anon_struct_value_expression] = STATE(1320), + [sym_go_expression] = STATE(1319), + [sym_spawn_expression] = STATE(1319), + [sym_parenthesized_expression] = STATE(1319), + [sym_call_expression] = STATE(1319), + [sym_type_initializer] = STATE(1320), + [sym_function_literal] = STATE(1319), + [sym_reference_expression] = STATE(1298), + [sym_type_reference_expression] = STATE(3460), + [sym_unary_expression] = STATE(1319), + [sym_receive_expression] = STATE(1319), + [sym_binary_expression] = STATE(1319), + [sym_as_type_cast_expression] = STATE(1319), + [sym__max_group] = STATE(1319), + [sym_literal] = STATE(1314), + [sym_map_init_expression] = STATE(1320), + [sym_array_creation] = STATE(1319), + [sym_fixed_array_creation] = STATE(1319), + [sym_selector_expression] = STATE(1319), + [sym_index_expression] = STATE(1319), + [sym_slice_expression] = STATE(1319), + [sym_if_expression] = STATE(1320), + [sym_compile_time_if_expression] = STATE(1320), + [sym_is_expression] = STATE(1319), + [sym_in_expression] = STATE(1319), + [sym_enum_fetch] = STATE(1319), + [sym_match_expression] = STATE(1320), + [sym_select_expression] = STATE(1320), + [sym_lock_expression] = STATE(1320), + [sym_unsafe_expression] = STATE(1320), + [sym_sql_expression] = STATE(1320), + [sym_c_string_literal] = STATE(1291), + [sym_raw_string_literal] = STATE(1291), + [sym_interpreted_string_literal] = STATE(1291), + [sym_mutability_modifiers] = STATE(639), + [sym_plain_type] = STATE(4307), + [sym__plain_type_without_special] = STATE(2360), + [sym_anon_struct_type] = STATE(2362), + [sym_multi_return_type] = STATE(2360), + [sym_result_type] = STATE(2360), + [sym_option_type] = STATE(2360), + [sym_qualified_type] = STATE(3460), + [sym_fixed_array_type] = STATE(2362), + [sym_array_type] = STATE(2362), + [sym_pointer_type] = STATE(2362), + [sym_wrong_pointer_type] = STATE(2362), + [sym_map_type] = STATE(2362), + [sym_channel_type] = STATE(2362), + [sym_shared_type] = STATE(2362), + [sym_thread_type] = STATE(2362), + [sym_atomic_type] = STATE(2362), + [sym_generic_type] = STATE(2362), + [sym_function_type] = STATE(2362), + [sym_identifier] = ACTIONS(1360), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1697), - [anon_sym_LBRACE] = ACTIONS(2697), - [anon_sym_LPAREN] = ACTIONS(2699), - [anon_sym_fn] = ACTIONS(1703), - [anon_sym_PLUS] = ACTIONS(2701), - [anon_sym_DASH] = ACTIONS(2701), - [anon_sym_STAR] = ACTIONS(2703), - [anon_sym_struct] = ACTIONS(1709), + [anon_sym_DOT] = ACTIONS(1362), + [anon_sym_LBRACE] = ACTIONS(1364), + [anon_sym_LPAREN] = ACTIONS(1366), + [anon_sym_fn] = ACTIONS(1368), + [anon_sym_PLUS] = ACTIONS(1370), + [anon_sym_DASH] = ACTIONS(1370), + [anon_sym_STAR] = ACTIONS(1372), + [anon_sym_struct] = ACTIONS(1376), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(2705), - [anon_sym_go] = ACTIONS(1713), - [anon_sym_spawn] = ACTIONS(1715), - [anon_sym_json_DOTdecode] = ACTIONS(2707), - [anon_sym_LBRACK2] = ACTIONS(2709), - [anon_sym_TILDE] = ACTIONS(2701), - [anon_sym_CARET] = ACTIONS(2701), - [anon_sym_AMP] = ACTIONS(2711), - [anon_sym_LT_DASH] = ACTIONS(2713), - [sym_none] = ACTIONS(1725), - [sym_true] = ACTIONS(1725), - [sym_false] = ACTIONS(1725), - [sym_nil] = ACTIONS(1725), - [anon_sym_if] = ACTIONS(1727), - [anon_sym_DOLLARif] = ACTIONS(1729), - [anon_sym_match] = ACTIONS(1731), - [anon_sym_select] = ACTIONS(1733), - [anon_sym_lock] = ACTIONS(1735), - [anon_sym_rlock] = ACTIONS(1735), - [anon_sym_unsafe] = ACTIONS(1737), - [anon_sym_sql] = ACTIONS(1739), - [sym_int_literal] = ACTIONS(1725), - [sym_float_literal] = ACTIONS(2715), - [sym_rune_literal] = ACTIONS(2715), - [sym_pseudo_compile_time_identifier] = ACTIONS(1741), + [anon_sym_BANG] = ACTIONS(1378), + [anon_sym_go] = ACTIONS(1380), + [anon_sym_spawn] = ACTIONS(1382), + [anon_sym_json_DOTdecode] = ACTIONS(1384), + [anon_sym_LBRACK2] = ACTIONS(1386), + [anon_sym_TILDE] = ACTIONS(1370), + [anon_sym_CARET] = ACTIONS(1370), + [anon_sym_AMP] = ACTIONS(1388), + [anon_sym_LT_DASH] = ACTIONS(1390), + [sym_none] = ACTIONS(1392), + [sym_true] = ACTIONS(1392), + [sym_false] = ACTIONS(1392), + [sym_nil] = ACTIONS(1392), + [anon_sym_if] = ACTIONS(1865), + [anon_sym_DOLLARif] = ACTIONS(1396), + [anon_sym_match] = ACTIONS(1398), + [anon_sym_select] = ACTIONS(1400), + [anon_sym_lock] = ACTIONS(1402), + [anon_sym_rlock] = ACTIONS(1402), + [anon_sym_unsafe] = ACTIONS(1871), + [anon_sym_sql] = ACTIONS(1406), + [sym_int_literal] = ACTIONS(1392), + [sym_float_literal] = ACTIONS(1410), + [sym_rune_literal] = ACTIONS(1410), + [sym_pseudo_compile_time_identifier] = ACTIONS(1412), [anon_sym_shared] = ACTIONS(83), [anon_sym_map_LBRACK] = ACTIONS(85), [anon_sym_chan] = ACTIONS(87), [anon_sym_thread] = ACTIONS(89), [anon_sym_atomic] = ACTIONS(91), - [sym___double_quote] = ACTIONS(2717), - [sym___single_quote] = ACTIONS(2719), - [sym___c_double_quote] = ACTIONS(2721), - [sym___c_single_quote] = ACTIONS(2723), - [sym___r_double_quote] = ACTIONS(2725), - [sym___r_single_quote] = ACTIONS(2727), + [sym___double_quote] = ACTIONS(1414), + [sym___single_quote] = ACTIONS(1416), + [sym___c_double_quote] = ACTIONS(1418), + [sym___c_single_quote] = ACTIONS(1420), + [sym___r_double_quote] = ACTIONS(1422), + [sym___r_single_quote] = ACTIONS(1424), }, [860] = { [sym_line_comment] = STATE(860), [sym_block_comment] = STATE(860), - [sym__expression] = STATE(2281), - [sym__expression_without_blocks] = STATE(2489), - [sym__expression_with_blocks] = STATE(2489), - [sym_inc_expression] = STATE(2479), - [sym_dec_expression] = STATE(2479), - [sym_or_block_expression] = STATE(2479), - [sym_option_propagation_expression] = STATE(2479), - [sym_result_propagation_expression] = STATE(2479), - [sym_anon_struct_value_expression] = STATE(2491), - [sym_go_expression] = STATE(2479), - [sym_spawn_expression] = STATE(2479), - [sym_parenthesized_expression] = STATE(2479), - [sym_call_expression] = STATE(2479), - [sym_type_initializer] = STATE(2491), - [sym_function_literal] = STATE(2479), - [sym_reference_expression] = STATE(2542), - [sym_type_reference_expression] = STATE(3541), - [sym_unary_expression] = STATE(2479), - [sym_receive_expression] = STATE(2479), - [sym_binary_expression] = STATE(2479), - [sym_as_type_cast_expression] = STATE(2479), - [sym__max_group] = STATE(2479), - [sym_literal] = STATE(2454), - [sym_map_init_expression] = STATE(2491), - [sym_array_creation] = STATE(2479), - [sym_fixed_array_creation] = STATE(2479), - [sym_selector_expression] = STATE(2479), - [sym_index_expression] = STATE(2479), - [sym_slice_expression] = STATE(2479), - [sym_if_expression] = STATE(2491), - [sym_compile_time_if_expression] = STATE(2491), - [sym_is_expression] = STATE(2479), - [sym_in_expression] = STATE(2479), - [sym_enum_fetch] = STATE(2479), - [sym_match_expression] = STATE(2491), - [sym_select_expression] = STATE(2491), - [sym_lock_expression] = STATE(2491), - [sym_unsafe_expression] = STATE(2491), - [sym_sql_expression] = STATE(2491), - [sym_c_string_literal] = STATE(2469), - [sym_raw_string_literal] = STATE(2469), - [sym_interpreted_string_literal] = STATE(2469), - [sym_mutability_modifiers] = STATE(640), - [sym_plain_type] = STATE(4255), - [sym__plain_type_without_special] = STATE(2302), - [sym_anon_struct_type] = STATE(2303), - [sym_multi_return_type] = STATE(2302), - [sym_result_type] = STATE(2302), - [sym_option_type] = STATE(2302), - [sym_qualified_type] = STATE(3541), - [sym_fixed_array_type] = STATE(2303), - [sym_array_type] = STATE(2303), - [sym_pointer_type] = STATE(2303), - [sym_wrong_pointer_type] = STATE(2303), - [sym_map_type] = STATE(2303), - [sym_channel_type] = STATE(2303), - [sym_shared_type] = STATE(2303), - [sym_thread_type] = STATE(2303), - [sym_atomic_type] = STATE(2303), - [sym_generic_type] = STATE(2303), - [sym_function_type] = STATE(2303), - [sym_identifier] = ACTIONS(1695), + [sym__expression] = STATE(1282), + [sym__expression_without_blocks] = STATE(1318), + [sym__expression_with_blocks] = STATE(1318), + [sym_inc_expression] = STATE(1319), + [sym_dec_expression] = STATE(1319), + [sym_or_block_expression] = STATE(1319), + [sym_option_propagation_expression] = STATE(1319), + [sym_result_propagation_expression] = STATE(1319), + [sym_anon_struct_value_expression] = STATE(1320), + [sym_go_expression] = STATE(1319), + [sym_spawn_expression] = STATE(1319), + [sym_parenthesized_expression] = STATE(1319), + [sym_call_expression] = STATE(1319), + [sym_type_initializer] = STATE(1320), + [sym_function_literal] = STATE(1319), + [sym_reference_expression] = STATE(1298), + [sym_type_reference_expression] = STATE(3460), + [sym_unary_expression] = STATE(1319), + [sym_receive_expression] = STATE(1319), + [sym_binary_expression] = STATE(1319), + [sym_as_type_cast_expression] = STATE(1319), + [sym__max_group] = STATE(1319), + [sym_literal] = STATE(1314), + [sym_map_init_expression] = STATE(1320), + [sym_array_creation] = STATE(1319), + [sym_fixed_array_creation] = STATE(1319), + [sym_selector_expression] = STATE(1319), + [sym_index_expression] = STATE(1319), + [sym_slice_expression] = STATE(1319), + [sym_if_expression] = STATE(1320), + [sym_compile_time_if_expression] = STATE(1320), + [sym_is_expression] = STATE(1319), + [sym_in_expression] = STATE(1319), + [sym_enum_fetch] = STATE(1319), + [sym_match_expression] = STATE(1320), + [sym_select_expression] = STATE(1320), + [sym_lock_expression] = STATE(1320), + [sym_unsafe_expression] = STATE(1320), + [sym_sql_expression] = STATE(1320), + [sym_c_string_literal] = STATE(1291), + [sym_raw_string_literal] = STATE(1291), + [sym_interpreted_string_literal] = STATE(1291), + [sym_mutability_modifiers] = STATE(639), + [sym_plain_type] = STATE(4307), + [sym__plain_type_without_special] = STATE(2360), + [sym_anon_struct_type] = STATE(2362), + [sym_multi_return_type] = STATE(2360), + [sym_result_type] = STATE(2360), + [sym_option_type] = STATE(2360), + [sym_qualified_type] = STATE(3460), + [sym_fixed_array_type] = STATE(2362), + [sym_array_type] = STATE(2362), + [sym_pointer_type] = STATE(2362), + [sym_wrong_pointer_type] = STATE(2362), + [sym_map_type] = STATE(2362), + [sym_channel_type] = STATE(2362), + [sym_shared_type] = STATE(2362), + [sym_thread_type] = STATE(2362), + [sym_atomic_type] = STATE(2362), + [sym_generic_type] = STATE(2362), + [sym_function_type] = STATE(2362), + [sym_identifier] = ACTIONS(1360), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1697), - [anon_sym_LBRACE] = ACTIONS(2697), - [anon_sym_LPAREN] = ACTIONS(2699), - [anon_sym_fn] = ACTIONS(1703), - [anon_sym_PLUS] = ACTIONS(2701), - [anon_sym_DASH] = ACTIONS(2701), - [anon_sym_STAR] = ACTIONS(2703), - [anon_sym_struct] = ACTIONS(1709), + [anon_sym_DOT] = ACTIONS(1362), + [anon_sym_LBRACE] = ACTIONS(1364), + [anon_sym_LPAREN] = ACTIONS(1366), + [anon_sym_fn] = ACTIONS(1368), + [anon_sym_PLUS] = ACTIONS(1370), + [anon_sym_DASH] = ACTIONS(1370), + [anon_sym_STAR] = ACTIONS(1372), + [anon_sym_struct] = ACTIONS(1376), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(2705), - [anon_sym_go] = ACTIONS(1713), - [anon_sym_spawn] = ACTIONS(1715), - [anon_sym_json_DOTdecode] = ACTIONS(2707), - [anon_sym_LBRACK2] = ACTIONS(2709), - [anon_sym_TILDE] = ACTIONS(2701), - [anon_sym_CARET] = ACTIONS(2701), - [anon_sym_AMP] = ACTIONS(2711), - [anon_sym_LT_DASH] = ACTIONS(2713), - [sym_none] = ACTIONS(1725), - [sym_true] = ACTIONS(1725), - [sym_false] = ACTIONS(1725), - [sym_nil] = ACTIONS(1725), - [anon_sym_if] = ACTIONS(1727), - [anon_sym_DOLLARif] = ACTIONS(1729), - [anon_sym_match] = ACTIONS(1731), - [anon_sym_select] = ACTIONS(1733), - [anon_sym_lock] = ACTIONS(1735), - [anon_sym_rlock] = ACTIONS(1735), - [anon_sym_unsafe] = ACTIONS(1737), - [anon_sym_sql] = ACTIONS(1739), - [sym_int_literal] = ACTIONS(1725), - [sym_float_literal] = ACTIONS(2715), - [sym_rune_literal] = ACTIONS(2715), - [sym_pseudo_compile_time_identifier] = ACTIONS(1741), + [anon_sym_BANG] = ACTIONS(1378), + [anon_sym_go] = ACTIONS(1380), + [anon_sym_spawn] = ACTIONS(1382), + [anon_sym_json_DOTdecode] = ACTIONS(1384), + [anon_sym_LBRACK2] = ACTIONS(1386), + [anon_sym_TILDE] = ACTIONS(1370), + [anon_sym_CARET] = ACTIONS(1370), + [anon_sym_AMP] = ACTIONS(1388), + [anon_sym_LT_DASH] = ACTIONS(1390), + [sym_none] = ACTIONS(1392), + [sym_true] = ACTIONS(1392), + [sym_false] = ACTIONS(1392), + [sym_nil] = ACTIONS(1392), + [anon_sym_if] = ACTIONS(1865), + [anon_sym_DOLLARif] = ACTIONS(1396), + [anon_sym_match] = ACTIONS(1398), + [anon_sym_select] = ACTIONS(1400), + [anon_sym_lock] = ACTIONS(1402), + [anon_sym_rlock] = ACTIONS(1402), + [anon_sym_unsafe] = ACTIONS(1871), + [anon_sym_sql] = ACTIONS(1406), + [sym_int_literal] = ACTIONS(1392), + [sym_float_literal] = ACTIONS(1410), + [sym_rune_literal] = ACTIONS(1410), + [sym_pseudo_compile_time_identifier] = ACTIONS(1412), [anon_sym_shared] = ACTIONS(83), [anon_sym_map_LBRACK] = ACTIONS(85), [anon_sym_chan] = ACTIONS(87), [anon_sym_thread] = ACTIONS(89), [anon_sym_atomic] = ACTIONS(91), - [sym___double_quote] = ACTIONS(2717), - [sym___single_quote] = ACTIONS(2719), - [sym___c_double_quote] = ACTIONS(2721), - [sym___c_single_quote] = ACTIONS(2723), - [sym___r_double_quote] = ACTIONS(2725), - [sym___r_single_quote] = ACTIONS(2727), + [sym___double_quote] = ACTIONS(1414), + [sym___single_quote] = ACTIONS(1416), + [sym___c_double_quote] = ACTIONS(1418), + [sym___c_single_quote] = ACTIONS(1420), + [sym___r_double_quote] = ACTIONS(1422), + [sym___r_single_quote] = ACTIONS(1424), }, [861] = { [sym_line_comment] = STATE(861), [sym_block_comment] = STATE(861), - [sym__expression] = STATE(2370), - [sym__expression_without_blocks] = STATE(2489), - [sym__expression_with_blocks] = STATE(2489), - [sym_inc_expression] = STATE(2479), - [sym_dec_expression] = STATE(2479), - [sym_or_block_expression] = STATE(2479), - [sym_option_propagation_expression] = STATE(2479), - [sym_result_propagation_expression] = STATE(2479), - [sym_anon_struct_value_expression] = STATE(2491), - [sym_go_expression] = STATE(2479), - [sym_spawn_expression] = STATE(2479), - [sym_parenthesized_expression] = STATE(2479), - [sym_call_expression] = STATE(2479), - [sym_type_initializer] = STATE(2491), - [sym_function_literal] = STATE(2479), - [sym_reference_expression] = STATE(2542), - [sym_type_reference_expression] = STATE(3541), - [sym_unary_expression] = STATE(2479), - [sym_receive_expression] = STATE(2479), - [sym_binary_expression] = STATE(2479), - [sym_as_type_cast_expression] = STATE(2479), - [sym__max_group] = STATE(2479), - [sym_literal] = STATE(2454), - [sym_map_init_expression] = STATE(2491), - [sym_array_creation] = STATE(2479), - [sym_fixed_array_creation] = STATE(2479), - [sym_selector_expression] = STATE(2479), - [sym_index_expression] = STATE(2479), - [sym_slice_expression] = STATE(2479), - [sym_if_expression] = STATE(2491), - [sym_compile_time_if_expression] = STATE(2491), - [sym_is_expression] = STATE(2479), - [sym_in_expression] = STATE(2479), - [sym_enum_fetch] = STATE(2479), - [sym_match_expression] = STATE(2491), - [sym_select_expression] = STATE(2491), - [sym_lock_expression] = STATE(2491), - [sym_unsafe_expression] = STATE(2491), - [sym_sql_expression] = STATE(2491), - [sym_c_string_literal] = STATE(2469), - [sym_raw_string_literal] = STATE(2469), - [sym_interpreted_string_literal] = STATE(2469), - [sym_mutability_modifiers] = STATE(640), - [sym_plain_type] = STATE(4255), - [sym__plain_type_without_special] = STATE(2302), - [sym_anon_struct_type] = STATE(2303), - [sym_multi_return_type] = STATE(2302), - [sym_result_type] = STATE(2302), - [sym_option_type] = STATE(2302), - [sym_qualified_type] = STATE(3541), - [sym_fixed_array_type] = STATE(2303), - [sym_array_type] = STATE(2303), - [sym_pointer_type] = STATE(2303), - [sym_wrong_pointer_type] = STATE(2303), - [sym_map_type] = STATE(2303), - [sym_channel_type] = STATE(2303), - [sym_shared_type] = STATE(2303), - [sym_thread_type] = STATE(2303), - [sym_atomic_type] = STATE(2303), - [sym_generic_type] = STATE(2303), - [sym_function_type] = STATE(2303), - [sym_identifier] = ACTIONS(1695), + [sym__expression] = STATE(1258), + [sym__expression_without_blocks] = STATE(1318), + [sym__expression_with_blocks] = STATE(1318), + [sym_inc_expression] = STATE(1319), + [sym_dec_expression] = STATE(1319), + [sym_or_block_expression] = STATE(1319), + [sym_option_propagation_expression] = STATE(1319), + [sym_result_propagation_expression] = STATE(1319), + [sym_anon_struct_value_expression] = STATE(1320), + [sym_go_expression] = STATE(1319), + [sym_spawn_expression] = STATE(1319), + [sym_parenthesized_expression] = STATE(1319), + [sym_call_expression] = STATE(1319), + [sym_type_initializer] = STATE(1320), + [sym_function_literal] = STATE(1319), + [sym_reference_expression] = STATE(1298), + [sym_type_reference_expression] = STATE(3460), + [sym_unary_expression] = STATE(1319), + [sym_receive_expression] = STATE(1319), + [sym_binary_expression] = STATE(1319), + [sym_as_type_cast_expression] = STATE(1319), + [sym__max_group] = STATE(1319), + [sym_literal] = STATE(1314), + [sym_map_init_expression] = STATE(1320), + [sym_array_creation] = STATE(1319), + [sym_fixed_array_creation] = STATE(1319), + [sym_selector_expression] = STATE(1319), + [sym_index_expression] = STATE(1319), + [sym_slice_expression] = STATE(1319), + [sym_if_expression] = STATE(1320), + [sym_compile_time_if_expression] = STATE(1320), + [sym_is_expression] = STATE(1319), + [sym_in_expression] = STATE(1319), + [sym_enum_fetch] = STATE(1319), + [sym_match_expression] = STATE(1320), + [sym_select_expression] = STATE(1320), + [sym_lock_expression] = STATE(1320), + [sym_unsafe_expression] = STATE(1320), + [sym_sql_expression] = STATE(1320), + [sym_c_string_literal] = STATE(1291), + [sym_raw_string_literal] = STATE(1291), + [sym_interpreted_string_literal] = STATE(1291), + [sym_mutability_modifiers] = STATE(639), + [sym_plain_type] = STATE(4151), + [sym__plain_type_without_special] = STATE(2360), + [sym_anon_struct_type] = STATE(2362), + [sym_multi_return_type] = STATE(2360), + [sym_result_type] = STATE(2360), + [sym_option_type] = STATE(2360), + [sym_qualified_type] = STATE(3460), + [sym_fixed_array_type] = STATE(2362), + [sym_array_type] = STATE(2362), + [sym_pointer_type] = STATE(2362), + [sym_wrong_pointer_type] = STATE(2362), + [sym_map_type] = STATE(2362), + [sym_channel_type] = STATE(2362), + [sym_shared_type] = STATE(2362), + [sym_thread_type] = STATE(2362), + [sym_atomic_type] = STATE(2362), + [sym_generic_type] = STATE(2362), + [sym_function_type] = STATE(2362), + [sym_identifier] = ACTIONS(1360), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1697), - [anon_sym_LBRACE] = ACTIONS(2697), - [anon_sym_LPAREN] = ACTIONS(2699), - [anon_sym_fn] = ACTIONS(1703), - [anon_sym_PLUS] = ACTIONS(2701), - [anon_sym_DASH] = ACTIONS(2701), - [anon_sym_STAR] = ACTIONS(2703), - [anon_sym_struct] = ACTIONS(1709), + [anon_sym_DOT] = ACTIONS(1362), + [anon_sym_LBRACE] = ACTIONS(1364), + [anon_sym_LPAREN] = ACTIONS(1366), + [anon_sym_fn] = ACTIONS(1368), + [anon_sym_PLUS] = ACTIONS(1370), + [anon_sym_DASH] = ACTIONS(1370), + [anon_sym_STAR] = ACTIONS(1372), + [anon_sym_struct] = ACTIONS(1376), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(2705), - [anon_sym_go] = ACTIONS(1713), - [anon_sym_spawn] = ACTIONS(1715), - [anon_sym_json_DOTdecode] = ACTIONS(2707), - [anon_sym_LBRACK2] = ACTIONS(2709), - [anon_sym_TILDE] = ACTIONS(2701), - [anon_sym_CARET] = ACTIONS(2701), - [anon_sym_AMP] = ACTIONS(2711), - [anon_sym_LT_DASH] = ACTIONS(2713), - [sym_none] = ACTIONS(1725), - [sym_true] = ACTIONS(1725), - [sym_false] = ACTIONS(1725), - [sym_nil] = ACTIONS(1725), - [anon_sym_if] = ACTIONS(1727), - [anon_sym_DOLLARif] = ACTIONS(1729), - [anon_sym_match] = ACTIONS(1731), - [anon_sym_select] = ACTIONS(1733), - [anon_sym_lock] = ACTIONS(1735), - [anon_sym_rlock] = ACTIONS(1735), - [anon_sym_unsafe] = ACTIONS(1737), - [anon_sym_sql] = ACTIONS(1739), - [sym_int_literal] = ACTIONS(1725), - [sym_float_literal] = ACTIONS(2715), - [sym_rune_literal] = ACTIONS(2715), - [sym_pseudo_compile_time_identifier] = ACTIONS(1741), + [anon_sym_BANG] = ACTIONS(1378), + [anon_sym_go] = ACTIONS(1380), + [anon_sym_spawn] = ACTIONS(1382), + [anon_sym_json_DOTdecode] = ACTIONS(1384), + [anon_sym_LBRACK2] = ACTIONS(1386), + [anon_sym_TILDE] = ACTIONS(1370), + [anon_sym_CARET] = ACTIONS(1370), + [anon_sym_AMP] = ACTIONS(1388), + [anon_sym_LT_DASH] = ACTIONS(1390), + [sym_none] = ACTIONS(1392), + [sym_true] = ACTIONS(1392), + [sym_false] = ACTIONS(1392), + [sym_nil] = ACTIONS(1392), + [anon_sym_if] = ACTIONS(1865), + [anon_sym_DOLLARif] = ACTIONS(1396), + [anon_sym_match] = ACTIONS(1398), + [anon_sym_select] = ACTIONS(1400), + [anon_sym_lock] = ACTIONS(1402), + [anon_sym_rlock] = ACTIONS(1402), + [anon_sym_unsafe] = ACTIONS(1871), + [anon_sym_sql] = ACTIONS(1406), + [sym_int_literal] = ACTIONS(1392), + [sym_float_literal] = ACTIONS(1410), + [sym_rune_literal] = ACTIONS(1410), + [sym_pseudo_compile_time_identifier] = ACTIONS(1412), [anon_sym_shared] = ACTIONS(83), [anon_sym_map_LBRACK] = ACTIONS(85), [anon_sym_chan] = ACTIONS(87), [anon_sym_thread] = ACTIONS(89), [anon_sym_atomic] = ACTIONS(91), - [sym___double_quote] = ACTIONS(2717), - [sym___single_quote] = ACTIONS(2719), - [sym___c_double_quote] = ACTIONS(2721), - [sym___c_single_quote] = ACTIONS(2723), - [sym___r_double_quote] = ACTIONS(2725), - [sym___r_single_quote] = ACTIONS(2727), + [sym___double_quote] = ACTIONS(1414), + [sym___single_quote] = ACTIONS(1416), + [sym___c_double_quote] = ACTIONS(1418), + [sym___c_single_quote] = ACTIONS(1420), + [sym___r_double_quote] = ACTIONS(1422), + [sym___r_single_quote] = ACTIONS(1424), }, [862] = { [sym_line_comment] = STATE(862), [sym_block_comment] = STATE(862), - [sym__expression] = STATE(2827), - [sym__expression_without_blocks] = STATE(2300), - [sym__expression_with_blocks] = STATE(2300), - [sym_inc_expression] = STATE(2307), - [sym_dec_expression] = STATE(2307), - [sym_or_block_expression] = STATE(2307), - [sym_option_propagation_expression] = STATE(2307), - [sym_result_propagation_expression] = STATE(2307), - [sym_anon_struct_value_expression] = STATE(2380), - [sym_go_expression] = STATE(2307), - [sym_spawn_expression] = STATE(2307), - [sym_parenthesized_expression] = STATE(2307), - [sym_call_expression] = STATE(2307), - [sym_type_initializer] = STATE(2380), - [sym_function_literal] = STATE(2307), - [sym_reference_expression] = STATE(2311), - [sym_type_reference_expression] = STATE(3541), - [sym_unary_expression] = STATE(2307), - [sym_receive_expression] = STATE(2307), - [sym_binary_expression] = STATE(2307), - [sym_as_type_cast_expression] = STATE(2307), - [sym__max_group] = STATE(2307), - [sym_literal] = STATE(2292), - [sym_map_init_expression] = STATE(2380), - [sym_array_creation] = STATE(2307), - [sym_fixed_array_creation] = STATE(2307), - [sym_selector_expression] = STATE(2307), - [sym_index_expression] = STATE(2307), - [sym_slice_expression] = STATE(2307), - [sym_if_expression] = STATE(2380), - [sym_compile_time_if_expression] = STATE(2380), - [sym_is_expression] = STATE(2307), - [sym_in_expression] = STATE(2307), - [sym_enum_fetch] = STATE(2307), - [sym_match_expression] = STATE(2380), - [sym_select_expression] = STATE(2380), - [sym_lock_expression] = STATE(2380), - [sym_unsafe_expression] = STATE(2380), - [sym_sql_expression] = STATE(2380), - [sym_c_string_literal] = STATE(2308), - [sym_raw_string_literal] = STATE(2308), - [sym_interpreted_string_literal] = STATE(2308), - [sym_mutability_modifiers] = STATE(939), - [sym_plain_type] = STATE(4297), - [sym__plain_type_without_special] = STATE(2302), - [sym_anon_struct_type] = STATE(2303), - [sym_multi_return_type] = STATE(2302), - [sym_result_type] = STATE(2302), - [sym_option_type] = STATE(2302), - [sym_qualified_type] = STATE(3541), - [sym_fixed_array_type] = STATE(2303), - [sym_array_type] = STATE(2303), - [sym_pointer_type] = STATE(2303), - [sym_wrong_pointer_type] = STATE(2303), - [sym_map_type] = STATE(2303), - [sym_channel_type] = STATE(2303), - [sym_shared_type] = STATE(2303), - [sym_thread_type] = STATE(2303), - [sym_atomic_type] = STATE(2303), - [sym_generic_type] = STATE(2303), - [sym_function_type] = STATE(2303), - [sym_identifier] = ACTIONS(1426), + [sym__expression] = STATE(1616), + [sym__expression_without_blocks] = STATE(1747), + [sym__expression_with_blocks] = STATE(1747), + [sym_inc_expression] = STATE(1749), + [sym_dec_expression] = STATE(1749), + [sym_or_block_expression] = STATE(1749), + [sym_option_propagation_expression] = STATE(1749), + [sym_result_propagation_expression] = STATE(1749), + [sym_anon_struct_value_expression] = STATE(1746), + [sym_go_expression] = STATE(1749), + [sym_spawn_expression] = STATE(1749), + [sym_parenthesized_expression] = STATE(1749), + [sym_call_expression] = STATE(1749), + [sym_type_initializer] = STATE(1746), + [sym_function_literal] = STATE(1749), + [sym_reference_expression] = STATE(1745), + [sym_type_reference_expression] = STATE(3460), + [sym_unary_expression] = STATE(1749), + [sym_receive_expression] = STATE(1749), + [sym_binary_expression] = STATE(1749), + [sym_as_type_cast_expression] = STATE(1749), + [sym__max_group] = STATE(1749), + [sym_literal] = STATE(1738), + [sym_map_init_expression] = STATE(1746), + [sym_array_creation] = STATE(1749), + [sym_fixed_array_creation] = STATE(1749), + [sym_selector_expression] = STATE(1749), + [sym_index_expression] = STATE(1749), + [sym_slice_expression] = STATE(1749), + [sym_if_expression] = STATE(1746), + [sym_compile_time_if_expression] = STATE(1746), + [sym_is_expression] = STATE(1749), + [sym_in_expression] = STATE(1749), + [sym_enum_fetch] = STATE(1749), + [sym_match_expression] = STATE(1746), + [sym_select_expression] = STATE(1746), + [sym_lock_expression] = STATE(1746), + [sym_unsafe_expression] = STATE(1746), + [sym_sql_expression] = STATE(1746), + [sym_c_string_literal] = STATE(1733), + [sym_raw_string_literal] = STATE(1733), + [sym_interpreted_string_literal] = STATE(1733), + [sym_mutability_modifiers] = STATE(600), + [sym_plain_type] = STATE(4121), + [sym__plain_type_without_special] = STATE(2360), + [sym_anon_struct_type] = STATE(2362), + [sym_multi_return_type] = STATE(2360), + [sym_result_type] = STATE(2360), + [sym_option_type] = STATE(2360), + [sym_qualified_type] = STATE(3460), + [sym_fixed_array_type] = STATE(2362), + [sym_array_type] = STATE(2362), + [sym_pointer_type] = STATE(2362), + [sym_wrong_pointer_type] = STATE(2362), + [sym_map_type] = STATE(2362), + [sym_channel_type] = STATE(2362), + [sym_shared_type] = STATE(2362), + [sym_thread_type] = STATE(2362), + [sym_atomic_type] = STATE(2362), + [sym_generic_type] = STATE(2362), + [sym_function_type] = STATE(2362), + [sym_identifier] = ACTIONS(3422), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1428), - [anon_sym_LBRACE] = ACTIONS(1430), - [anon_sym_LPAREN] = ACTIONS(1432), - [anon_sym_fn] = ACTIONS(1434), - [anon_sym_PLUS] = ACTIONS(1436), - [anon_sym_DASH] = ACTIONS(1436), - [anon_sym_STAR] = ACTIONS(1438), - [anon_sym_struct] = ACTIONS(1440), + [anon_sym_DOT] = ACTIONS(309), + [anon_sym_LBRACE] = ACTIONS(3424), + [anon_sym_LPAREN] = ACTIONS(315), + [anon_sym_fn] = ACTIONS(317), + [anon_sym_PLUS] = ACTIONS(319), + [anon_sym_DASH] = ACTIONS(319), + [anon_sym_STAR] = ACTIONS(321), + [anon_sym_struct] = ACTIONS(323), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(1442), - [anon_sym_go] = ACTIONS(1444), - [anon_sym_spawn] = ACTIONS(1446), - [anon_sym_json_DOTdecode] = ACTIONS(1448), - [anon_sym_LBRACK2] = ACTIONS(1450), - [anon_sym_TILDE] = ACTIONS(1436), - [anon_sym_CARET] = ACTIONS(1436), - [anon_sym_AMP] = ACTIONS(1452), - [anon_sym_LT_DASH] = ACTIONS(1454), - [sym_none] = ACTIONS(1456), - [sym_true] = ACTIONS(1456), - [sym_false] = ACTIONS(1456), - [sym_nil] = ACTIONS(1456), - [anon_sym_if] = ACTIONS(1827), - [anon_sym_DOLLARif] = ACTIONS(1460), - [anon_sym_match] = ACTIONS(1462), - [anon_sym_select] = ACTIONS(1464), - [anon_sym_lock] = ACTIONS(1466), - [anon_sym_rlock] = ACTIONS(1466), - [anon_sym_unsafe] = ACTIONS(1833), - [anon_sym_sql] = ACTIONS(1470), - [sym_int_literal] = ACTIONS(1456), - [sym_float_literal] = ACTIONS(1472), - [sym_rune_literal] = ACTIONS(1472), - [sym_pseudo_compile_time_identifier] = ACTIONS(1474), + [anon_sym_BANG] = ACTIONS(325), + [anon_sym_go] = ACTIONS(327), + [anon_sym_spawn] = ACTIONS(329), + [anon_sym_json_DOTdecode] = ACTIONS(331), + [anon_sym_LBRACK2] = ACTIONS(333), + [anon_sym_TILDE] = ACTIONS(319), + [anon_sym_CARET] = ACTIONS(319), + [anon_sym_AMP] = ACTIONS(335), + [anon_sym_LT_DASH] = ACTIONS(337), + [sym_none] = ACTIONS(339), + [sym_true] = ACTIONS(339), + [sym_false] = ACTIONS(339), + [sym_nil] = ACTIONS(339), + [anon_sym_if] = ACTIONS(341), + [anon_sym_DOLLARif] = ACTIONS(343), + [anon_sym_match] = ACTIONS(345), + [anon_sym_select] = ACTIONS(347), + [anon_sym_lock] = ACTIONS(349), + [anon_sym_rlock] = ACTIONS(349), + [anon_sym_unsafe] = ACTIONS(351), + [anon_sym_sql] = ACTIONS(353), + [sym_int_literal] = ACTIONS(339), + [sym_float_literal] = ACTIONS(355), + [sym_rune_literal] = ACTIONS(355), + [sym_pseudo_compile_time_identifier] = ACTIONS(357), [anon_sym_shared] = ACTIONS(83), [anon_sym_map_LBRACK] = ACTIONS(85), [anon_sym_chan] = ACTIONS(87), [anon_sym_thread] = ACTIONS(89), [anon_sym_atomic] = ACTIONS(91), - [sym___double_quote] = ACTIONS(1478), - [sym___single_quote] = ACTIONS(1480), - [sym___c_double_quote] = ACTIONS(1482), - [sym___c_single_quote] = ACTIONS(1484), - [sym___r_double_quote] = ACTIONS(1486), - [sym___r_single_quote] = ACTIONS(1488), + [sym___double_quote] = ACTIONS(379), + [sym___single_quote] = ACTIONS(381), + [sym___c_double_quote] = ACTIONS(383), + [sym___c_single_quote] = ACTIONS(385), + [sym___r_double_quote] = ACTIONS(387), + [sym___r_single_quote] = ACTIONS(389), }, [863] = { [sym_line_comment] = STATE(863), [sym_block_comment] = STATE(863), - [sym__expression] = STATE(2623), - [sym__expression_without_blocks] = STATE(2300), - [sym__expression_with_blocks] = STATE(2300), - [sym_inc_expression] = STATE(2307), - [sym_dec_expression] = STATE(2307), - [sym_or_block_expression] = STATE(2307), - [sym_option_propagation_expression] = STATE(2307), - [sym_result_propagation_expression] = STATE(2307), - [sym_anon_struct_value_expression] = STATE(2380), - [sym_go_expression] = STATE(2307), - [sym_spawn_expression] = STATE(2307), - [sym_parenthesized_expression] = STATE(2307), - [sym_call_expression] = STATE(2307), - [sym_type_initializer] = STATE(2380), - [sym_function_literal] = STATE(2307), - [sym_reference_expression] = STATE(2311), - [sym_type_reference_expression] = STATE(3541), - [sym_unary_expression] = STATE(2307), - [sym_receive_expression] = STATE(2307), - [sym_binary_expression] = STATE(2307), - [sym_as_type_cast_expression] = STATE(2307), - [sym__max_group] = STATE(2307), - [sym_literal] = STATE(2292), - [sym_map_init_expression] = STATE(2380), - [sym_array_creation] = STATE(2307), - [sym_fixed_array_creation] = STATE(2307), - [sym_selector_expression] = STATE(2307), - [sym_index_expression] = STATE(2307), - [sym_slice_expression] = STATE(2307), - [sym_if_expression] = STATE(2380), - [sym_compile_time_if_expression] = STATE(2380), - [sym_is_expression] = STATE(2307), - [sym_in_expression] = STATE(2307), - [sym_enum_fetch] = STATE(2307), - [sym_match_expression] = STATE(2380), - [sym_select_expression] = STATE(2380), - [sym_lock_expression] = STATE(2380), - [sym_unsafe_expression] = STATE(2380), - [sym_sql_expression] = STATE(2380), - [sym_c_string_literal] = STATE(2308), - [sym_raw_string_literal] = STATE(2308), - [sym_interpreted_string_literal] = STATE(2308), + [sym__expression] = STATE(2267), + [sym__expression_without_blocks] = STATE(2347), + [sym__expression_with_blocks] = STATE(2347), + [sym_inc_expression] = STATE(2379), + [sym_dec_expression] = STATE(2379), + [sym_or_block_expression] = STATE(2379), + [sym_option_propagation_expression] = STATE(2379), + [sym_result_propagation_expression] = STATE(2379), + [sym_anon_struct_value_expression] = STATE(2378), + [sym_go_expression] = STATE(2379), + [sym_spawn_expression] = STATE(2379), + [sym_parenthesized_expression] = STATE(2379), + [sym_call_expression] = STATE(2379), + [sym_type_initializer] = STATE(2378), + [sym_function_literal] = STATE(2379), + [sym_reference_expression] = STATE(2377), + [sym_type_reference_expression] = STATE(3460), + [sym_unary_expression] = STATE(2379), + [sym_receive_expression] = STATE(2379), + [sym_binary_expression] = STATE(2379), + [sym_as_type_cast_expression] = STATE(2379), + [sym__max_group] = STATE(2379), + [sym_literal] = STATE(2392), + [sym_map_init_expression] = STATE(2378), + [sym_array_creation] = STATE(2379), + [sym_fixed_array_creation] = STATE(2379), + [sym_selector_expression] = STATE(2379), + [sym_index_expression] = STATE(2379), + [sym_slice_expression] = STATE(2379), + [sym_if_expression] = STATE(2378), + [sym_compile_time_if_expression] = STATE(2378), + [sym_is_expression] = STATE(2379), + [sym_in_expression] = STATE(2379), + [sym_enum_fetch] = STATE(2379), + [sym_match_expression] = STATE(2378), + [sym_select_expression] = STATE(2378), + [sym_lock_expression] = STATE(2378), + [sym_unsafe_expression] = STATE(2378), + [sym_sql_expression] = STATE(2378), + [sym_c_string_literal] = STATE(2401), + [sym_raw_string_literal] = STATE(2401), + [sym_interpreted_string_literal] = STATE(2401), [sym_mutability_modifiers] = STATE(939), - [sym_plain_type] = STATE(4297), - [sym__plain_type_without_special] = STATE(2302), - [sym_anon_struct_type] = STATE(2303), - [sym_multi_return_type] = STATE(2302), - [sym_result_type] = STATE(2302), - [sym_option_type] = STATE(2302), - [sym_qualified_type] = STATE(3541), - [sym_fixed_array_type] = STATE(2303), - [sym_array_type] = STATE(2303), - [sym_pointer_type] = STATE(2303), - [sym_wrong_pointer_type] = STATE(2303), - [sym_map_type] = STATE(2303), - [sym_channel_type] = STATE(2303), - [sym_shared_type] = STATE(2303), - [sym_thread_type] = STATE(2303), - [sym_atomic_type] = STATE(2303), - [sym_generic_type] = STATE(2303), - [sym_function_type] = STATE(2303), - [sym_identifier] = ACTIONS(1807), + [sym_plain_type] = STATE(3557), + [sym__plain_type_without_special] = STATE(2360), + [sym_anon_struct_type] = STATE(2362), + [sym_multi_return_type] = STATE(2360), + [sym_result_type] = STATE(2360), + [sym_option_type] = STATE(2360), + [sym_qualified_type] = STATE(3460), + [sym_fixed_array_type] = STATE(2362), + [sym_array_type] = STATE(2362), + [sym_pointer_type] = STATE(2362), + [sym_wrong_pointer_type] = STATE(2362), + [sym_map_type] = STATE(2362), + [sym_channel_type] = STATE(2362), + [sym_shared_type] = STATE(2362), + [sym_thread_type] = STATE(2362), + [sym_atomic_type] = STATE(2362), + [sym_generic_type] = STATE(2362), + [sym_function_type] = STATE(2362), + [sym_identifier] = ACTIONS(1815), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1428), - [anon_sym_LBRACE] = ACTIONS(1430), - [anon_sym_LPAREN] = ACTIONS(1432), - [anon_sym_fn] = ACTIONS(1434), - [anon_sym_PLUS] = ACTIONS(3064), - [anon_sym_DASH] = ACTIONS(3064), - [anon_sym_STAR] = ACTIONS(3066), - [anon_sym_struct] = ACTIONS(1440), + [anon_sym_DOT] = ACTIONS(1430), + [anon_sym_LBRACE] = ACTIONS(1432), + [anon_sym_LPAREN] = ACTIONS(1434), + [anon_sym_fn] = ACTIONS(1436), + [anon_sym_PLUS] = ACTIONS(3090), + [anon_sym_DASH] = ACTIONS(3090), + [anon_sym_STAR] = ACTIONS(3092), + [anon_sym_struct] = ACTIONS(1442), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(3068), - [anon_sym_go] = ACTIONS(3070), - [anon_sym_spawn] = ACTIONS(3072), - [anon_sym_json_DOTdecode] = ACTIONS(1448), - [anon_sym_LBRACK2] = ACTIONS(1821), - [anon_sym_TILDE] = ACTIONS(3064), - [anon_sym_CARET] = ACTIONS(3064), - [anon_sym_AMP] = ACTIONS(3074), - [anon_sym_LT_DASH] = ACTIONS(3076), - [sym_none] = ACTIONS(1456), - [sym_true] = ACTIONS(1456), - [sym_false] = ACTIONS(1456), - [sym_nil] = ACTIONS(1456), - [anon_sym_if] = ACTIONS(1827), - [anon_sym_DOLLARif] = ACTIONS(1460), - [anon_sym_match] = ACTIONS(1462), - [anon_sym_select] = ACTIONS(3078), - [anon_sym_lock] = ACTIONS(3080), - [anon_sym_rlock] = ACTIONS(3080), - [anon_sym_unsafe] = ACTIONS(1833), - [anon_sym_sql] = ACTIONS(1470), - [sym_int_literal] = ACTIONS(1456), - [sym_float_literal] = ACTIONS(1472), - [sym_rune_literal] = ACTIONS(1472), - [sym_pseudo_compile_time_identifier] = ACTIONS(1474), + [anon_sym_BANG] = ACTIONS(3094), + [anon_sym_go] = ACTIONS(3096), + [anon_sym_spawn] = ACTIONS(3098), + [anon_sym_json_DOTdecode] = ACTIONS(1450), + [anon_sym_LBRACK2] = ACTIONS(1827), + [anon_sym_TILDE] = ACTIONS(3090), + [anon_sym_CARET] = ACTIONS(3090), + [anon_sym_AMP] = ACTIONS(3100), + [anon_sym_LT_DASH] = ACTIONS(3102), + [sym_none] = ACTIONS(1458), + [sym_true] = ACTIONS(1458), + [sym_false] = ACTIONS(1458), + [sym_nil] = ACTIONS(1458), + [anon_sym_if] = ACTIONS(1833), + [anon_sym_DOLLARif] = ACTIONS(1462), + [anon_sym_match] = ACTIONS(1464), + [anon_sym_select] = ACTIONS(3104), + [anon_sym_lock] = ACTIONS(3106), + [anon_sym_rlock] = ACTIONS(3106), + [anon_sym_unsafe] = ACTIONS(1839), + [anon_sym_sql] = ACTIONS(1472), + [sym_int_literal] = ACTIONS(1458), + [sym_float_literal] = ACTIONS(1474), + [sym_rune_literal] = ACTIONS(1474), + [sym_pseudo_compile_time_identifier] = ACTIONS(1476), [anon_sym_shared] = ACTIONS(83), [anon_sym_map_LBRACK] = ACTIONS(85), [anon_sym_chan] = ACTIONS(87), [anon_sym_thread] = ACTIONS(89), [anon_sym_atomic] = ACTIONS(91), - [sym___double_quote] = ACTIONS(1478), - [sym___single_quote] = ACTIONS(1480), - [sym___c_double_quote] = ACTIONS(1482), - [sym___c_single_quote] = ACTIONS(1484), - [sym___r_double_quote] = ACTIONS(1486), - [sym___r_single_quote] = ACTIONS(1488), + [sym___double_quote] = ACTIONS(1480), + [sym___single_quote] = ACTIONS(1482), + [sym___c_double_quote] = ACTIONS(1484), + [sym___c_single_quote] = ACTIONS(1486), + [sym___r_double_quote] = ACTIONS(1488), + [sym___r_single_quote] = ACTIONS(1490), }, [864] = { [sym_line_comment] = STATE(864), [sym_block_comment] = STATE(864), - [sym__expression] = STATE(1267), - [sym__expression_without_blocks] = STATE(1312), - [sym__expression_with_blocks] = STATE(1312), - [sym_inc_expression] = STATE(1313), - [sym_dec_expression] = STATE(1313), - [sym_or_block_expression] = STATE(1313), - [sym_option_propagation_expression] = STATE(1313), - [sym_result_propagation_expression] = STATE(1313), - [sym_anon_struct_value_expression] = STATE(1314), - [sym_go_expression] = STATE(1313), - [sym_spawn_expression] = STATE(1313), - [sym_parenthesized_expression] = STATE(1313), - [sym_call_expression] = STATE(1313), - [sym_type_initializer] = STATE(1314), - [sym_function_literal] = STATE(1313), - [sym_reference_expression] = STATE(1334), - [sym_type_reference_expression] = STATE(3541), - [sym_unary_expression] = STATE(1313), - [sym_receive_expression] = STATE(1313), - [sym_binary_expression] = STATE(1313), - [sym_as_type_cast_expression] = STATE(1313), - [sym__max_group] = STATE(1313), - [sym_literal] = STATE(1308), - [sym_map_init_expression] = STATE(1314), - [sym_array_creation] = STATE(1313), - [sym_fixed_array_creation] = STATE(1313), - [sym_selector_expression] = STATE(1313), - [sym_index_expression] = STATE(1313), - [sym_slice_expression] = STATE(1313), - [sym_if_expression] = STATE(1314), - [sym_compile_time_if_expression] = STATE(1314), - [sym_is_expression] = STATE(1313), - [sym_in_expression] = STATE(1313), - [sym_enum_fetch] = STATE(1313), - [sym_match_expression] = STATE(1314), - [sym_select_expression] = STATE(1314), - [sym_lock_expression] = STATE(1314), - [sym_unsafe_expression] = STATE(1314), - [sym_sql_expression] = STATE(1314), - [sym_c_string_literal] = STATE(1286), - [sym_raw_string_literal] = STATE(1286), - [sym_interpreted_string_literal] = STATE(1286), - [sym_mutability_modifiers] = STATE(699), - [sym_plain_type] = STATE(4192), - [sym__plain_type_without_special] = STATE(2302), - [sym_anon_struct_type] = STATE(2303), - [sym_multi_return_type] = STATE(2302), - [sym_result_type] = STATE(2302), - [sym_option_type] = STATE(2302), - [sym_qualified_type] = STATE(3541), - [sym_fixed_array_type] = STATE(2303), - [sym_array_type] = STATE(2303), - [sym_pointer_type] = STATE(2303), - [sym_wrong_pointer_type] = STATE(2303), - [sym_map_type] = STATE(2303), - [sym_channel_type] = STATE(2303), - [sym_shared_type] = STATE(2303), - [sym_thread_type] = STATE(2303), - [sym_atomic_type] = STATE(2303), - [sym_generic_type] = STATE(2303), - [sym_function_type] = STATE(2303), - [sym_identifier] = ACTIONS(1354), + [sym__expression] = STATE(1616), + [sym__expression_without_blocks] = STATE(1747), + [sym__expression_with_blocks] = STATE(1747), + [sym_inc_expression] = STATE(1749), + [sym_dec_expression] = STATE(1749), + [sym_or_block_expression] = STATE(1749), + [sym_option_propagation_expression] = STATE(1749), + [sym_result_propagation_expression] = STATE(1749), + [sym_anon_struct_value_expression] = STATE(1746), + [sym_go_expression] = STATE(1749), + [sym_spawn_expression] = STATE(1749), + [sym_parenthesized_expression] = STATE(1749), + [sym_call_expression] = STATE(1749), + [sym_type_initializer] = STATE(1746), + [sym_function_literal] = STATE(1749), + [sym_reference_expression] = STATE(1745), + [sym_type_reference_expression] = STATE(3460), + [sym_unary_expression] = STATE(1749), + [sym_receive_expression] = STATE(1749), + [sym_binary_expression] = STATE(1749), + [sym_as_type_cast_expression] = STATE(1749), + [sym__max_group] = STATE(1749), + [sym_literal] = STATE(1738), + [sym_map_init_expression] = STATE(1746), + [sym_array_creation] = STATE(1749), + [sym_fixed_array_creation] = STATE(1749), + [sym_selector_expression] = STATE(1749), + [sym_index_expression] = STATE(1749), + [sym_slice_expression] = STATE(1749), + [sym_if_expression] = STATE(1746), + [sym_compile_time_if_expression] = STATE(1746), + [sym_is_expression] = STATE(1749), + [sym_in_expression] = STATE(1749), + [sym_enum_fetch] = STATE(1749), + [sym_match_expression] = STATE(1746), + [sym_select_expression] = STATE(1746), + [sym_lock_expression] = STATE(1746), + [sym_unsafe_expression] = STATE(1746), + [sym_sql_expression] = STATE(1746), + [sym_c_string_literal] = STATE(1733), + [sym_raw_string_literal] = STATE(1733), + [sym_interpreted_string_literal] = STATE(1733), + [sym_mutability_modifiers] = STATE(600), + [sym_plain_type] = STATE(4112), + [sym__plain_type_without_special] = STATE(2360), + [sym_anon_struct_type] = STATE(2362), + [sym_multi_return_type] = STATE(2360), + [sym_result_type] = STATE(2360), + [sym_option_type] = STATE(2360), + [sym_qualified_type] = STATE(3460), + [sym_fixed_array_type] = STATE(2362), + [sym_array_type] = STATE(2362), + [sym_pointer_type] = STATE(2362), + [sym_wrong_pointer_type] = STATE(2362), + [sym_map_type] = STATE(2362), + [sym_channel_type] = STATE(2362), + [sym_shared_type] = STATE(2362), + [sym_thread_type] = STATE(2362), + [sym_atomic_type] = STATE(2362), + [sym_generic_type] = STATE(2362), + [sym_function_type] = STATE(2362), + [sym_identifier] = ACTIONS(3422), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1356), - [anon_sym_LBRACE] = ACTIONS(1358), - [anon_sym_LPAREN] = ACTIONS(1360), - [anon_sym_fn] = ACTIONS(1362), - [anon_sym_PLUS] = ACTIONS(1863), - [anon_sym_DASH] = ACTIONS(1863), - [anon_sym_STAR] = ACTIONS(1865), - [anon_sym_struct] = ACTIONS(1370), + [anon_sym_DOT] = ACTIONS(309), + [anon_sym_LBRACE] = ACTIONS(3424), + [anon_sym_LPAREN] = ACTIONS(315), + [anon_sym_fn] = ACTIONS(317), + [anon_sym_PLUS] = ACTIONS(319), + [anon_sym_DASH] = ACTIONS(319), + [anon_sym_STAR] = ACTIONS(321), + [anon_sym_struct] = ACTIONS(323), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(1867), - [anon_sym_go] = ACTIONS(1869), - [anon_sym_spawn] = ACTIONS(1871), - [anon_sym_json_DOTdecode] = ACTIONS(1378), - [anon_sym_LBRACK2] = ACTIONS(1380), - [anon_sym_TILDE] = ACTIONS(1863), - [anon_sym_CARET] = ACTIONS(1863), - [anon_sym_AMP] = ACTIONS(1873), - [anon_sym_LT_DASH] = ACTIONS(1875), - [sym_none] = ACTIONS(1386), - [sym_true] = ACTIONS(1386), - [sym_false] = ACTIONS(1386), - [sym_nil] = ACTIONS(1386), - [anon_sym_if] = ACTIONS(1877), - [anon_sym_DOLLARif] = ACTIONS(1390), - [anon_sym_match] = ACTIONS(1392), - [anon_sym_select] = ACTIONS(1879), - [anon_sym_lock] = ACTIONS(1881), - [anon_sym_rlock] = ACTIONS(1881), - [anon_sym_unsafe] = ACTIONS(1883), - [anon_sym_sql] = ACTIONS(1400), - [sym_int_literal] = ACTIONS(1386), - [sym_float_literal] = ACTIONS(1404), - [sym_rune_literal] = ACTIONS(1404), - [sym_pseudo_compile_time_identifier] = ACTIONS(1406), + [anon_sym_BANG] = ACTIONS(325), + [anon_sym_go] = ACTIONS(327), + [anon_sym_spawn] = ACTIONS(329), + [anon_sym_json_DOTdecode] = ACTIONS(331), + [anon_sym_LBRACK2] = ACTIONS(333), + [anon_sym_TILDE] = ACTIONS(319), + [anon_sym_CARET] = ACTIONS(319), + [anon_sym_AMP] = ACTIONS(335), + [anon_sym_LT_DASH] = ACTIONS(337), + [sym_none] = ACTIONS(339), + [sym_true] = ACTIONS(339), + [sym_false] = ACTIONS(339), + [sym_nil] = ACTIONS(339), + [anon_sym_if] = ACTIONS(341), + [anon_sym_DOLLARif] = ACTIONS(343), + [anon_sym_match] = ACTIONS(345), + [anon_sym_select] = ACTIONS(347), + [anon_sym_lock] = ACTIONS(349), + [anon_sym_rlock] = ACTIONS(349), + [anon_sym_unsafe] = ACTIONS(351), + [anon_sym_sql] = ACTIONS(353), + [sym_int_literal] = ACTIONS(339), + [sym_float_literal] = ACTIONS(355), + [sym_rune_literal] = ACTIONS(355), + [sym_pseudo_compile_time_identifier] = ACTIONS(357), [anon_sym_shared] = ACTIONS(83), [anon_sym_map_LBRACK] = ACTIONS(85), [anon_sym_chan] = ACTIONS(87), [anon_sym_thread] = ACTIONS(89), [anon_sym_atomic] = ACTIONS(91), - [sym___double_quote] = ACTIONS(1408), - [sym___single_quote] = ACTIONS(1410), - [sym___c_double_quote] = ACTIONS(1412), - [sym___c_single_quote] = ACTIONS(1414), - [sym___r_double_quote] = ACTIONS(1416), - [sym___r_single_quote] = ACTIONS(1418), + [sym___double_quote] = ACTIONS(379), + [sym___single_quote] = ACTIONS(381), + [sym___c_double_quote] = ACTIONS(383), + [sym___c_single_quote] = ACTIONS(385), + [sym___r_double_quote] = ACTIONS(387), + [sym___r_single_quote] = ACTIONS(389), }, [865] = { [sym_line_comment] = STATE(865), [sym_block_comment] = STATE(865), - [sym__expression] = STATE(1257), - [sym__expression_without_blocks] = STATE(1312), - [sym__expression_with_blocks] = STATE(1312), - [sym_inc_expression] = STATE(1313), - [sym_dec_expression] = STATE(1313), - [sym_or_block_expression] = STATE(1313), - [sym_option_propagation_expression] = STATE(1313), - [sym_result_propagation_expression] = STATE(1313), - [sym_anon_struct_value_expression] = STATE(1314), - [sym_go_expression] = STATE(1313), - [sym_spawn_expression] = STATE(1313), - [sym_parenthesized_expression] = STATE(1313), - [sym_call_expression] = STATE(1313), - [sym_type_initializer] = STATE(1314), - [sym_function_literal] = STATE(1313), - [sym_reference_expression] = STATE(1334), - [sym_type_reference_expression] = STATE(3541), - [sym_unary_expression] = STATE(1313), - [sym_receive_expression] = STATE(1313), - [sym_binary_expression] = STATE(1313), - [sym_as_type_cast_expression] = STATE(1313), - [sym__max_group] = STATE(1313), - [sym_literal] = STATE(1308), - [sym_map_init_expression] = STATE(1314), - [sym_array_creation] = STATE(1313), - [sym_fixed_array_creation] = STATE(1313), - [sym_selector_expression] = STATE(1313), - [sym_index_expression] = STATE(1313), - [sym_slice_expression] = STATE(1313), - [sym_if_expression] = STATE(1314), - [sym_compile_time_if_expression] = STATE(1314), - [sym_is_expression] = STATE(1313), - [sym_in_expression] = STATE(1313), - [sym_enum_fetch] = STATE(1313), - [sym_match_expression] = STATE(1314), - [sym_select_expression] = STATE(1314), - [sym_lock_expression] = STATE(1314), - [sym_unsafe_expression] = STATE(1314), - [sym_sql_expression] = STATE(1314), - [sym_c_string_literal] = STATE(1286), - [sym_raw_string_literal] = STATE(1286), - [sym_interpreted_string_literal] = STATE(1286), - [sym_mutability_modifiers] = STATE(699), - [sym_plain_type] = STATE(4192), - [sym__plain_type_without_special] = STATE(2302), - [sym_anon_struct_type] = STATE(2303), - [sym_multi_return_type] = STATE(2302), - [sym_result_type] = STATE(2302), - [sym_option_type] = STATE(2302), - [sym_qualified_type] = STATE(3541), - [sym_fixed_array_type] = STATE(2303), - [sym_array_type] = STATE(2303), - [sym_pointer_type] = STATE(2303), - [sym_wrong_pointer_type] = STATE(2303), - [sym_map_type] = STATE(2303), - [sym_channel_type] = STATE(2303), - [sym_shared_type] = STATE(2303), - [sym_thread_type] = STATE(2303), - [sym_atomic_type] = STATE(2303), - [sym_generic_type] = STATE(2303), - [sym_function_type] = STATE(2303), - [sym_identifier] = ACTIONS(1354), + [sym__expression] = STATE(1258), + [sym__expression_without_blocks] = STATE(1318), + [sym__expression_with_blocks] = STATE(1318), + [sym_inc_expression] = STATE(1319), + [sym_dec_expression] = STATE(1319), + [sym_or_block_expression] = STATE(1319), + [sym_option_propagation_expression] = STATE(1319), + [sym_result_propagation_expression] = STATE(1319), + [sym_anon_struct_value_expression] = STATE(1320), + [sym_go_expression] = STATE(1319), + [sym_spawn_expression] = STATE(1319), + [sym_parenthesized_expression] = STATE(1319), + [sym_call_expression] = STATE(1319), + [sym_type_initializer] = STATE(1320), + [sym_function_literal] = STATE(1319), + [sym_reference_expression] = STATE(1298), + [sym_type_reference_expression] = STATE(3460), + [sym_unary_expression] = STATE(1319), + [sym_receive_expression] = STATE(1319), + [sym_binary_expression] = STATE(1319), + [sym_as_type_cast_expression] = STATE(1319), + [sym__max_group] = STATE(1319), + [sym_literal] = STATE(1314), + [sym_map_init_expression] = STATE(1320), + [sym_array_creation] = STATE(1319), + [sym_fixed_array_creation] = STATE(1319), + [sym_selector_expression] = STATE(1319), + [sym_index_expression] = STATE(1319), + [sym_slice_expression] = STATE(1319), + [sym_if_expression] = STATE(1320), + [sym_compile_time_if_expression] = STATE(1320), + [sym_is_expression] = STATE(1319), + [sym_in_expression] = STATE(1319), + [sym_enum_fetch] = STATE(1319), + [sym_match_expression] = STATE(1320), + [sym_select_expression] = STATE(1320), + [sym_lock_expression] = STATE(1320), + [sym_unsafe_expression] = STATE(1320), + [sym_sql_expression] = STATE(1320), + [sym_c_string_literal] = STATE(1291), + [sym_raw_string_literal] = STATE(1291), + [sym_interpreted_string_literal] = STATE(1291), + [sym_mutability_modifiers] = STATE(639), + [sym_plain_type] = STATE(4155), + [sym__plain_type_without_special] = STATE(2360), + [sym_anon_struct_type] = STATE(2362), + [sym_multi_return_type] = STATE(2360), + [sym_result_type] = STATE(2360), + [sym_option_type] = STATE(2360), + [sym_qualified_type] = STATE(3460), + [sym_fixed_array_type] = STATE(2362), + [sym_array_type] = STATE(2362), + [sym_pointer_type] = STATE(2362), + [sym_wrong_pointer_type] = STATE(2362), + [sym_map_type] = STATE(2362), + [sym_channel_type] = STATE(2362), + [sym_shared_type] = STATE(2362), + [sym_thread_type] = STATE(2362), + [sym_atomic_type] = STATE(2362), + [sym_generic_type] = STATE(2362), + [sym_function_type] = STATE(2362), + [sym_identifier] = ACTIONS(1360), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1356), - [anon_sym_LBRACE] = ACTIONS(1358), - [anon_sym_LPAREN] = ACTIONS(1360), - [anon_sym_fn] = ACTIONS(1362), - [anon_sym_PLUS] = ACTIONS(1863), - [anon_sym_DASH] = ACTIONS(1863), - [anon_sym_STAR] = ACTIONS(1865), - [anon_sym_struct] = ACTIONS(1370), + [anon_sym_DOT] = ACTIONS(1362), + [anon_sym_LBRACE] = ACTIONS(1364), + [anon_sym_LPAREN] = ACTIONS(1366), + [anon_sym_fn] = ACTIONS(1368), + [anon_sym_PLUS] = ACTIONS(1370), + [anon_sym_DASH] = ACTIONS(1370), + [anon_sym_STAR] = ACTIONS(1372), + [anon_sym_struct] = ACTIONS(1376), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(1867), - [anon_sym_go] = ACTIONS(1869), - [anon_sym_spawn] = ACTIONS(1871), - [anon_sym_json_DOTdecode] = ACTIONS(1378), - [anon_sym_LBRACK2] = ACTIONS(1380), - [anon_sym_TILDE] = ACTIONS(1863), - [anon_sym_CARET] = ACTIONS(1863), - [anon_sym_AMP] = ACTIONS(1873), - [anon_sym_LT_DASH] = ACTIONS(1875), - [sym_none] = ACTIONS(1386), - [sym_true] = ACTIONS(1386), - [sym_false] = ACTIONS(1386), - [sym_nil] = ACTIONS(1386), - [anon_sym_if] = ACTIONS(1877), - [anon_sym_DOLLARif] = ACTIONS(1390), - [anon_sym_match] = ACTIONS(1392), - [anon_sym_select] = ACTIONS(1879), - [anon_sym_lock] = ACTIONS(1881), - [anon_sym_rlock] = ACTIONS(1881), - [anon_sym_unsafe] = ACTIONS(1883), - [anon_sym_sql] = ACTIONS(1400), - [sym_int_literal] = ACTIONS(1386), - [sym_float_literal] = ACTIONS(1404), - [sym_rune_literal] = ACTIONS(1404), - [sym_pseudo_compile_time_identifier] = ACTIONS(1406), + [anon_sym_BANG] = ACTIONS(1378), + [anon_sym_go] = ACTIONS(1380), + [anon_sym_spawn] = ACTIONS(1382), + [anon_sym_json_DOTdecode] = ACTIONS(1384), + [anon_sym_LBRACK2] = ACTIONS(1386), + [anon_sym_TILDE] = ACTIONS(1370), + [anon_sym_CARET] = ACTIONS(1370), + [anon_sym_AMP] = ACTIONS(1388), + [anon_sym_LT_DASH] = ACTIONS(1390), + [sym_none] = ACTIONS(1392), + [sym_true] = ACTIONS(1392), + [sym_false] = ACTIONS(1392), + [sym_nil] = ACTIONS(1392), + [anon_sym_if] = ACTIONS(1865), + [anon_sym_DOLLARif] = ACTIONS(1396), + [anon_sym_match] = ACTIONS(1398), + [anon_sym_select] = ACTIONS(1400), + [anon_sym_lock] = ACTIONS(1402), + [anon_sym_rlock] = ACTIONS(1402), + [anon_sym_unsafe] = ACTIONS(1871), + [anon_sym_sql] = ACTIONS(1406), + [sym_int_literal] = ACTIONS(1392), + [sym_float_literal] = ACTIONS(1410), + [sym_rune_literal] = ACTIONS(1410), + [sym_pseudo_compile_time_identifier] = ACTIONS(1412), [anon_sym_shared] = ACTIONS(83), [anon_sym_map_LBRACK] = ACTIONS(85), [anon_sym_chan] = ACTIONS(87), [anon_sym_thread] = ACTIONS(89), [anon_sym_atomic] = ACTIONS(91), - [sym___double_quote] = ACTIONS(1408), - [sym___single_quote] = ACTIONS(1410), - [sym___c_double_quote] = ACTIONS(1412), - [sym___c_single_quote] = ACTIONS(1414), - [sym___r_double_quote] = ACTIONS(1416), - [sym___r_single_quote] = ACTIONS(1418), + [sym___double_quote] = ACTIONS(1414), + [sym___single_quote] = ACTIONS(1416), + [sym___c_double_quote] = ACTIONS(1418), + [sym___c_single_quote] = ACTIONS(1420), + [sym___r_double_quote] = ACTIONS(1422), + [sym___r_single_quote] = ACTIONS(1424), }, [866] = { [sym_line_comment] = STATE(866), [sym_block_comment] = STATE(866), - [sym__expression] = STATE(1266), - [sym__expression_without_blocks] = STATE(1312), - [sym__expression_with_blocks] = STATE(1312), - [sym_inc_expression] = STATE(1313), - [sym_dec_expression] = STATE(1313), - [sym_or_block_expression] = STATE(1313), - [sym_option_propagation_expression] = STATE(1313), - [sym_result_propagation_expression] = STATE(1313), - [sym_anon_struct_value_expression] = STATE(1314), - [sym_go_expression] = STATE(1313), - [sym_spawn_expression] = STATE(1313), - [sym_parenthesized_expression] = STATE(1313), - [sym_call_expression] = STATE(1313), - [sym_type_initializer] = STATE(1314), - [sym_function_literal] = STATE(1313), - [sym_reference_expression] = STATE(1334), - [sym_type_reference_expression] = STATE(3541), - [sym_unary_expression] = STATE(1313), - [sym_receive_expression] = STATE(1313), - [sym_binary_expression] = STATE(1313), - [sym_as_type_cast_expression] = STATE(1313), - [sym__max_group] = STATE(1313), - [sym_literal] = STATE(1308), - [sym_map_init_expression] = STATE(1314), - [sym_array_creation] = STATE(1313), - [sym_fixed_array_creation] = STATE(1313), - [sym_selector_expression] = STATE(1313), - [sym_index_expression] = STATE(1313), - [sym_slice_expression] = STATE(1313), - [sym_if_expression] = STATE(1314), - [sym_compile_time_if_expression] = STATE(1314), - [sym_is_expression] = STATE(1313), - [sym_in_expression] = STATE(1313), - [sym_enum_fetch] = STATE(1313), - [sym_match_expression] = STATE(1314), - [sym_select_expression] = STATE(1314), - [sym_lock_expression] = STATE(1314), - [sym_unsafe_expression] = STATE(1314), - [sym_sql_expression] = STATE(1314), - [sym_c_string_literal] = STATE(1286), - [sym_raw_string_literal] = STATE(1286), - [sym_interpreted_string_literal] = STATE(1286), - [sym_mutability_modifiers] = STATE(699), - [sym_plain_type] = STATE(4192), - [sym__plain_type_without_special] = STATE(2302), - [sym_anon_struct_type] = STATE(2303), - [sym_multi_return_type] = STATE(2302), - [sym_result_type] = STATE(2302), - [sym_option_type] = STATE(2302), - [sym_qualified_type] = STATE(3541), - [sym_fixed_array_type] = STATE(2303), - [sym_array_type] = STATE(2303), - [sym_pointer_type] = STATE(2303), - [sym_wrong_pointer_type] = STATE(2303), - [sym_map_type] = STATE(2303), - [sym_channel_type] = STATE(2303), - [sym_shared_type] = STATE(2303), - [sym_thread_type] = STATE(2303), - [sym_atomic_type] = STATE(2303), - [sym_generic_type] = STATE(2303), - [sym_function_type] = STATE(2303), - [sym_identifier] = ACTIONS(1354), + [sym__expression] = STATE(1258), + [sym__expression_without_blocks] = STATE(1318), + [sym__expression_with_blocks] = STATE(1318), + [sym_inc_expression] = STATE(1319), + [sym_dec_expression] = STATE(1319), + [sym_or_block_expression] = STATE(1319), + [sym_option_propagation_expression] = STATE(1319), + [sym_result_propagation_expression] = STATE(1319), + [sym_anon_struct_value_expression] = STATE(1320), + [sym_go_expression] = STATE(1319), + [sym_spawn_expression] = STATE(1319), + [sym_parenthesized_expression] = STATE(1319), + [sym_call_expression] = STATE(1319), + [sym_type_initializer] = STATE(1320), + [sym_function_literal] = STATE(1319), + [sym_reference_expression] = STATE(1298), + [sym_type_reference_expression] = STATE(3460), + [sym_unary_expression] = STATE(1319), + [sym_receive_expression] = STATE(1319), + [sym_binary_expression] = STATE(1319), + [sym_as_type_cast_expression] = STATE(1319), + [sym__max_group] = STATE(1319), + [sym_literal] = STATE(1314), + [sym_map_init_expression] = STATE(1320), + [sym_array_creation] = STATE(1319), + [sym_fixed_array_creation] = STATE(1319), + [sym_selector_expression] = STATE(1319), + [sym_index_expression] = STATE(1319), + [sym_slice_expression] = STATE(1319), + [sym_if_expression] = STATE(1320), + [sym_compile_time_if_expression] = STATE(1320), + [sym_is_expression] = STATE(1319), + [sym_in_expression] = STATE(1319), + [sym_enum_fetch] = STATE(1319), + [sym_match_expression] = STATE(1320), + [sym_select_expression] = STATE(1320), + [sym_lock_expression] = STATE(1320), + [sym_unsafe_expression] = STATE(1320), + [sym_sql_expression] = STATE(1320), + [sym_c_string_literal] = STATE(1291), + [sym_raw_string_literal] = STATE(1291), + [sym_interpreted_string_literal] = STATE(1291), + [sym_mutability_modifiers] = STATE(639), + [sym_plain_type] = STATE(4307), + [sym__plain_type_without_special] = STATE(2360), + [sym_anon_struct_type] = STATE(2362), + [sym_multi_return_type] = STATE(2360), + [sym_result_type] = STATE(2360), + [sym_option_type] = STATE(2360), + [sym_qualified_type] = STATE(3460), + [sym_fixed_array_type] = STATE(2362), + [sym_array_type] = STATE(2362), + [sym_pointer_type] = STATE(2362), + [sym_wrong_pointer_type] = STATE(2362), + [sym_map_type] = STATE(2362), + [sym_channel_type] = STATE(2362), + [sym_shared_type] = STATE(2362), + [sym_thread_type] = STATE(2362), + [sym_atomic_type] = STATE(2362), + [sym_generic_type] = STATE(2362), + [sym_function_type] = STATE(2362), + [sym_identifier] = ACTIONS(1360), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1356), - [anon_sym_LBRACE] = ACTIONS(1358), - [anon_sym_LPAREN] = ACTIONS(1360), - [anon_sym_fn] = ACTIONS(1362), - [anon_sym_PLUS] = ACTIONS(1863), - [anon_sym_DASH] = ACTIONS(1863), - [anon_sym_STAR] = ACTIONS(1865), - [anon_sym_struct] = ACTIONS(1370), + [anon_sym_DOT] = ACTIONS(1362), + [anon_sym_LBRACE] = ACTIONS(1364), + [anon_sym_LPAREN] = ACTIONS(1366), + [anon_sym_fn] = ACTIONS(1368), + [anon_sym_PLUS] = ACTIONS(1370), + [anon_sym_DASH] = ACTIONS(1370), + [anon_sym_STAR] = ACTIONS(1372), + [anon_sym_struct] = ACTIONS(1376), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(1867), - [anon_sym_go] = ACTIONS(1869), - [anon_sym_spawn] = ACTIONS(1871), - [anon_sym_json_DOTdecode] = ACTIONS(1378), - [anon_sym_LBRACK2] = ACTIONS(1380), - [anon_sym_TILDE] = ACTIONS(1863), - [anon_sym_CARET] = ACTIONS(1863), - [anon_sym_AMP] = ACTIONS(1873), - [anon_sym_LT_DASH] = ACTIONS(1875), - [sym_none] = ACTIONS(1386), - [sym_true] = ACTIONS(1386), - [sym_false] = ACTIONS(1386), - [sym_nil] = ACTIONS(1386), - [anon_sym_if] = ACTIONS(1877), - [anon_sym_DOLLARif] = ACTIONS(1390), - [anon_sym_match] = ACTIONS(1392), - [anon_sym_select] = ACTIONS(1879), - [anon_sym_lock] = ACTIONS(1881), - [anon_sym_rlock] = ACTIONS(1881), - [anon_sym_unsafe] = ACTIONS(1883), - [anon_sym_sql] = ACTIONS(1400), - [sym_int_literal] = ACTIONS(1386), - [sym_float_literal] = ACTIONS(1404), - [sym_rune_literal] = ACTIONS(1404), - [sym_pseudo_compile_time_identifier] = ACTIONS(1406), + [anon_sym_BANG] = ACTIONS(1378), + [anon_sym_go] = ACTIONS(1380), + [anon_sym_spawn] = ACTIONS(1382), + [anon_sym_json_DOTdecode] = ACTIONS(1384), + [anon_sym_LBRACK2] = ACTIONS(1386), + [anon_sym_TILDE] = ACTIONS(1370), + [anon_sym_CARET] = ACTIONS(1370), + [anon_sym_AMP] = ACTIONS(1388), + [anon_sym_LT_DASH] = ACTIONS(1390), + [sym_none] = ACTIONS(1392), + [sym_true] = ACTIONS(1392), + [sym_false] = ACTIONS(1392), + [sym_nil] = ACTIONS(1392), + [anon_sym_if] = ACTIONS(1865), + [anon_sym_DOLLARif] = ACTIONS(1396), + [anon_sym_match] = ACTIONS(1398), + [anon_sym_select] = ACTIONS(1400), + [anon_sym_lock] = ACTIONS(1402), + [anon_sym_rlock] = ACTIONS(1402), + [anon_sym_unsafe] = ACTIONS(1871), + [anon_sym_sql] = ACTIONS(1406), + [sym_int_literal] = ACTIONS(1392), + [sym_float_literal] = ACTIONS(1410), + [sym_rune_literal] = ACTIONS(1410), + [sym_pseudo_compile_time_identifier] = ACTIONS(1412), [anon_sym_shared] = ACTIONS(83), [anon_sym_map_LBRACK] = ACTIONS(85), [anon_sym_chan] = ACTIONS(87), [anon_sym_thread] = ACTIONS(89), [anon_sym_atomic] = ACTIONS(91), - [sym___double_quote] = ACTIONS(1408), - [sym___single_quote] = ACTIONS(1410), - [sym___c_double_quote] = ACTIONS(1412), - [sym___c_single_quote] = ACTIONS(1414), - [sym___r_double_quote] = ACTIONS(1416), - [sym___r_single_quote] = ACTIONS(1418), + [sym___double_quote] = ACTIONS(1414), + [sym___single_quote] = ACTIONS(1416), + [sym___c_double_quote] = ACTIONS(1418), + [sym___c_single_quote] = ACTIONS(1420), + [sym___r_double_quote] = ACTIONS(1422), + [sym___r_single_quote] = ACTIONS(1424), }, [867] = { [sym_line_comment] = STATE(867), [sym_block_comment] = STATE(867), - [sym__expression] = STATE(1265), - [sym__expression_without_blocks] = STATE(1312), - [sym__expression_with_blocks] = STATE(1312), - [sym_inc_expression] = STATE(1313), - [sym_dec_expression] = STATE(1313), - [sym_or_block_expression] = STATE(1313), - [sym_option_propagation_expression] = STATE(1313), - [sym_result_propagation_expression] = STATE(1313), - [sym_anon_struct_value_expression] = STATE(1314), - [sym_go_expression] = STATE(1313), - [sym_spawn_expression] = STATE(1313), - [sym_parenthesized_expression] = STATE(1313), - [sym_call_expression] = STATE(1313), - [sym_type_initializer] = STATE(1314), - [sym_function_literal] = STATE(1313), - [sym_reference_expression] = STATE(1334), - [sym_type_reference_expression] = STATE(3541), - [sym_unary_expression] = STATE(1313), - [sym_receive_expression] = STATE(1313), - [sym_binary_expression] = STATE(1313), - [sym_as_type_cast_expression] = STATE(1313), - [sym__max_group] = STATE(1313), - [sym_literal] = STATE(1308), - [sym_map_init_expression] = STATE(1314), - [sym_array_creation] = STATE(1313), - [sym_fixed_array_creation] = STATE(1313), - [sym_selector_expression] = STATE(1313), - [sym_index_expression] = STATE(1313), - [sym_slice_expression] = STATE(1313), - [sym_if_expression] = STATE(1314), - [sym_compile_time_if_expression] = STATE(1314), - [sym_is_expression] = STATE(1313), - [sym_in_expression] = STATE(1313), - [sym_enum_fetch] = STATE(1313), - [sym_match_expression] = STATE(1314), - [sym_select_expression] = STATE(1314), - [sym_lock_expression] = STATE(1314), - [sym_unsafe_expression] = STATE(1314), - [sym_sql_expression] = STATE(1314), - [sym_c_string_literal] = STATE(1286), - [sym_raw_string_literal] = STATE(1286), - [sym_interpreted_string_literal] = STATE(1286), - [sym_mutability_modifiers] = STATE(699), - [sym_plain_type] = STATE(4192), - [sym__plain_type_without_special] = STATE(2302), - [sym_anon_struct_type] = STATE(2303), - [sym_multi_return_type] = STATE(2302), - [sym_result_type] = STATE(2302), - [sym_option_type] = STATE(2302), - [sym_qualified_type] = STATE(3541), - [sym_fixed_array_type] = STATE(2303), - [sym_array_type] = STATE(2303), - [sym_pointer_type] = STATE(2303), - [sym_wrong_pointer_type] = STATE(2303), - [sym_map_type] = STATE(2303), - [sym_channel_type] = STATE(2303), - [sym_shared_type] = STATE(2303), - [sym_thread_type] = STATE(2303), - [sym_atomic_type] = STATE(2303), - [sym_generic_type] = STATE(2303), - [sym_function_type] = STATE(2303), - [sym_identifier] = ACTIONS(1354), + [sym__expression] = STATE(1284), + [sym__expression_without_blocks] = STATE(1318), + [sym__expression_with_blocks] = STATE(1318), + [sym_inc_expression] = STATE(1319), + [sym_dec_expression] = STATE(1319), + [sym_or_block_expression] = STATE(1319), + [sym_option_propagation_expression] = STATE(1319), + [sym_result_propagation_expression] = STATE(1319), + [sym_anon_struct_value_expression] = STATE(1320), + [sym_go_expression] = STATE(1319), + [sym_spawn_expression] = STATE(1319), + [sym_parenthesized_expression] = STATE(1319), + [sym_call_expression] = STATE(1319), + [sym_type_initializer] = STATE(1320), + [sym_function_literal] = STATE(1319), + [sym_reference_expression] = STATE(1298), + [sym_type_reference_expression] = STATE(3460), + [sym_unary_expression] = STATE(1319), + [sym_receive_expression] = STATE(1319), + [sym_binary_expression] = STATE(1319), + [sym_as_type_cast_expression] = STATE(1319), + [sym__max_group] = STATE(1319), + [sym_literal] = STATE(1314), + [sym_map_init_expression] = STATE(1320), + [sym_array_creation] = STATE(1319), + [sym_fixed_array_creation] = STATE(1319), + [sym_selector_expression] = STATE(1319), + [sym_index_expression] = STATE(1319), + [sym_slice_expression] = STATE(1319), + [sym_if_expression] = STATE(1320), + [sym_compile_time_if_expression] = STATE(1320), + [sym_is_expression] = STATE(1319), + [sym_in_expression] = STATE(1319), + [sym_enum_fetch] = STATE(1319), + [sym_match_expression] = STATE(1320), + [sym_select_expression] = STATE(1320), + [sym_lock_expression] = STATE(1320), + [sym_unsafe_expression] = STATE(1320), + [sym_sql_expression] = STATE(1320), + [sym_c_string_literal] = STATE(1291), + [sym_raw_string_literal] = STATE(1291), + [sym_interpreted_string_literal] = STATE(1291), + [sym_mutability_modifiers] = STATE(639), + [sym_plain_type] = STATE(4307), + [sym__plain_type_without_special] = STATE(2360), + [sym_anon_struct_type] = STATE(2362), + [sym_multi_return_type] = STATE(2360), + [sym_result_type] = STATE(2360), + [sym_option_type] = STATE(2360), + [sym_qualified_type] = STATE(3460), + [sym_fixed_array_type] = STATE(2362), + [sym_array_type] = STATE(2362), + [sym_pointer_type] = STATE(2362), + [sym_wrong_pointer_type] = STATE(2362), + [sym_map_type] = STATE(2362), + [sym_channel_type] = STATE(2362), + [sym_shared_type] = STATE(2362), + [sym_thread_type] = STATE(2362), + [sym_atomic_type] = STATE(2362), + [sym_generic_type] = STATE(2362), + [sym_function_type] = STATE(2362), + [sym_identifier] = ACTIONS(1360), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1356), - [anon_sym_LBRACE] = ACTIONS(1358), - [anon_sym_LPAREN] = ACTIONS(1360), - [anon_sym_fn] = ACTIONS(1362), - [anon_sym_PLUS] = ACTIONS(1863), - [anon_sym_DASH] = ACTIONS(1863), - [anon_sym_STAR] = ACTIONS(1865), - [anon_sym_struct] = ACTIONS(1370), + [anon_sym_DOT] = ACTIONS(1362), + [anon_sym_LBRACE] = ACTIONS(1364), + [anon_sym_LPAREN] = ACTIONS(1366), + [anon_sym_fn] = ACTIONS(1368), + [anon_sym_PLUS] = ACTIONS(1851), + [anon_sym_DASH] = ACTIONS(1851), + [anon_sym_STAR] = ACTIONS(1853), + [anon_sym_struct] = ACTIONS(1376), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(1867), - [anon_sym_go] = ACTIONS(1869), - [anon_sym_spawn] = ACTIONS(1871), - [anon_sym_json_DOTdecode] = ACTIONS(1378), - [anon_sym_LBRACK2] = ACTIONS(1380), - [anon_sym_TILDE] = ACTIONS(1863), - [anon_sym_CARET] = ACTIONS(1863), - [anon_sym_AMP] = ACTIONS(1873), - [anon_sym_LT_DASH] = ACTIONS(1875), - [sym_none] = ACTIONS(1386), - [sym_true] = ACTIONS(1386), - [sym_false] = ACTIONS(1386), - [sym_nil] = ACTIONS(1386), - [anon_sym_if] = ACTIONS(1877), - [anon_sym_DOLLARif] = ACTIONS(1390), - [anon_sym_match] = ACTIONS(1392), - [anon_sym_select] = ACTIONS(1879), - [anon_sym_lock] = ACTIONS(1881), - [anon_sym_rlock] = ACTIONS(1881), - [anon_sym_unsafe] = ACTIONS(1883), - [anon_sym_sql] = ACTIONS(1400), - [sym_int_literal] = ACTIONS(1386), - [sym_float_literal] = ACTIONS(1404), - [sym_rune_literal] = ACTIONS(1404), - [sym_pseudo_compile_time_identifier] = ACTIONS(1406), + [anon_sym_BANG] = ACTIONS(1855), + [anon_sym_go] = ACTIONS(1857), + [anon_sym_spawn] = ACTIONS(1859), + [anon_sym_json_DOTdecode] = ACTIONS(1384), + [anon_sym_LBRACK2] = ACTIONS(1386), + [anon_sym_TILDE] = ACTIONS(1851), + [anon_sym_CARET] = ACTIONS(1851), + [anon_sym_AMP] = ACTIONS(1861), + [anon_sym_LT_DASH] = ACTIONS(1863), + [sym_none] = ACTIONS(1392), + [sym_true] = ACTIONS(1392), + [sym_false] = ACTIONS(1392), + [sym_nil] = ACTIONS(1392), + [anon_sym_if] = ACTIONS(1865), + [anon_sym_DOLLARif] = ACTIONS(1396), + [anon_sym_match] = ACTIONS(1398), + [anon_sym_select] = ACTIONS(1867), + [anon_sym_lock] = ACTIONS(1869), + [anon_sym_rlock] = ACTIONS(1869), + [anon_sym_unsafe] = ACTIONS(1871), + [anon_sym_sql] = ACTIONS(1406), + [sym_int_literal] = ACTIONS(1392), + [sym_float_literal] = ACTIONS(1410), + [sym_rune_literal] = ACTIONS(1410), + [sym_pseudo_compile_time_identifier] = ACTIONS(1412), [anon_sym_shared] = ACTIONS(83), [anon_sym_map_LBRACK] = ACTIONS(85), [anon_sym_chan] = ACTIONS(87), [anon_sym_thread] = ACTIONS(89), [anon_sym_atomic] = ACTIONS(91), - [sym___double_quote] = ACTIONS(1408), - [sym___single_quote] = ACTIONS(1410), - [sym___c_double_quote] = ACTIONS(1412), - [sym___c_single_quote] = ACTIONS(1414), - [sym___r_double_quote] = ACTIONS(1416), - [sym___r_single_quote] = ACTIONS(1418), + [sym___double_quote] = ACTIONS(1414), + [sym___single_quote] = ACTIONS(1416), + [sym___c_double_quote] = ACTIONS(1418), + [sym___c_single_quote] = ACTIONS(1420), + [sym___r_double_quote] = ACTIONS(1422), + [sym___r_single_quote] = ACTIONS(1424), }, [868] = { [sym_line_comment] = STATE(868), [sym_block_comment] = STATE(868), - [sym__expression] = STATE(1264), - [sym__expression_without_blocks] = STATE(1312), - [sym__expression_with_blocks] = STATE(1312), - [sym_inc_expression] = STATE(1313), - [sym_dec_expression] = STATE(1313), - [sym_or_block_expression] = STATE(1313), - [sym_option_propagation_expression] = STATE(1313), - [sym_result_propagation_expression] = STATE(1313), - [sym_anon_struct_value_expression] = STATE(1314), - [sym_go_expression] = STATE(1313), - [sym_spawn_expression] = STATE(1313), - [sym_parenthesized_expression] = STATE(1313), - [sym_call_expression] = STATE(1313), - [sym_type_initializer] = STATE(1314), - [sym_function_literal] = STATE(1313), - [sym_reference_expression] = STATE(1334), - [sym_type_reference_expression] = STATE(3541), - [sym_unary_expression] = STATE(1313), - [sym_receive_expression] = STATE(1313), - [sym_binary_expression] = STATE(1313), - [sym_as_type_cast_expression] = STATE(1313), - [sym__max_group] = STATE(1313), - [sym_literal] = STATE(1308), - [sym_map_init_expression] = STATE(1314), - [sym_array_creation] = STATE(1313), - [sym_fixed_array_creation] = STATE(1313), - [sym_selector_expression] = STATE(1313), - [sym_index_expression] = STATE(1313), - [sym_slice_expression] = STATE(1313), - [sym_if_expression] = STATE(1314), - [sym_compile_time_if_expression] = STATE(1314), - [sym_is_expression] = STATE(1313), - [sym_in_expression] = STATE(1313), - [sym_enum_fetch] = STATE(1313), - [sym_match_expression] = STATE(1314), - [sym_select_expression] = STATE(1314), - [sym_lock_expression] = STATE(1314), - [sym_unsafe_expression] = STATE(1314), - [sym_sql_expression] = STATE(1314), - [sym_c_string_literal] = STATE(1286), - [sym_raw_string_literal] = STATE(1286), - [sym_interpreted_string_literal] = STATE(1286), - [sym_mutability_modifiers] = STATE(699), - [sym_plain_type] = STATE(4192), - [sym__plain_type_without_special] = STATE(2302), - [sym_anon_struct_type] = STATE(2303), - [sym_multi_return_type] = STATE(2302), - [sym_result_type] = STATE(2302), - [sym_option_type] = STATE(2302), - [sym_qualified_type] = STATE(3541), - [sym_fixed_array_type] = STATE(2303), - [sym_array_type] = STATE(2303), - [sym_pointer_type] = STATE(2303), - [sym_wrong_pointer_type] = STATE(2303), - [sym_map_type] = STATE(2303), - [sym_channel_type] = STATE(2303), - [sym_shared_type] = STATE(2303), - [sym_thread_type] = STATE(2303), - [sym_atomic_type] = STATE(2303), - [sym_generic_type] = STATE(2303), - [sym_function_type] = STATE(2303), - [sym_identifier] = ACTIONS(1354), + [sym__expression] = STATE(2819), + [sym__expression_without_blocks] = STATE(2347), + [sym__expression_with_blocks] = STATE(2347), + [sym_inc_expression] = STATE(2379), + [sym_dec_expression] = STATE(2379), + [sym_or_block_expression] = STATE(2379), + [sym_option_propagation_expression] = STATE(2379), + [sym_result_propagation_expression] = STATE(2379), + [sym_anon_struct_value_expression] = STATE(2378), + [sym_go_expression] = STATE(2379), + [sym_spawn_expression] = STATE(2379), + [sym_parenthesized_expression] = STATE(2379), + [sym_call_expression] = STATE(2379), + [sym_type_initializer] = STATE(2378), + [sym_function_literal] = STATE(2379), + [sym_reference_expression] = STATE(2377), + [sym_type_reference_expression] = STATE(3460), + [sym_unary_expression] = STATE(2379), + [sym_receive_expression] = STATE(2379), + [sym_binary_expression] = STATE(2379), + [sym_as_type_cast_expression] = STATE(2379), + [sym__max_group] = STATE(2379), + [sym_literal] = STATE(2392), + [sym_map_init_expression] = STATE(2378), + [sym_array_creation] = STATE(2379), + [sym_fixed_array_creation] = STATE(2379), + [sym_selector_expression] = STATE(2379), + [sym_index_expression] = STATE(2379), + [sym_slice_expression] = STATE(2379), + [sym_if_expression] = STATE(2378), + [sym_compile_time_if_expression] = STATE(2378), + [sym_is_expression] = STATE(2379), + [sym_in_expression] = STATE(2379), + [sym_enum_fetch] = STATE(2379), + [sym_match_expression] = STATE(2378), + [sym_select_expression] = STATE(2378), + [sym_lock_expression] = STATE(2378), + [sym_unsafe_expression] = STATE(2378), + [sym_sql_expression] = STATE(2378), + [sym_c_string_literal] = STATE(2401), + [sym_raw_string_literal] = STATE(2401), + [sym_interpreted_string_literal] = STATE(2401), + [sym_mutability_modifiers] = STATE(939), + [sym_plain_type] = STATE(4160), + [sym__plain_type_without_special] = STATE(2360), + [sym_anon_struct_type] = STATE(2362), + [sym_multi_return_type] = STATE(2360), + [sym_result_type] = STATE(2360), + [sym_option_type] = STATE(2360), + [sym_qualified_type] = STATE(3460), + [sym_fixed_array_type] = STATE(2362), + [sym_array_type] = STATE(2362), + [sym_pointer_type] = STATE(2362), + [sym_wrong_pointer_type] = STATE(2362), + [sym_map_type] = STATE(2362), + [sym_channel_type] = STATE(2362), + [sym_shared_type] = STATE(2362), + [sym_thread_type] = STATE(2362), + [sym_atomic_type] = STATE(2362), + [sym_generic_type] = STATE(2362), + [sym_function_type] = STATE(2362), + [sym_identifier] = ACTIONS(1428), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1356), - [anon_sym_LBRACE] = ACTIONS(1358), - [anon_sym_LPAREN] = ACTIONS(1360), - [anon_sym_fn] = ACTIONS(1362), - [anon_sym_PLUS] = ACTIONS(1863), - [anon_sym_DASH] = ACTIONS(1863), - [anon_sym_STAR] = ACTIONS(1865), - [anon_sym_struct] = ACTIONS(1370), + [anon_sym_DOT] = ACTIONS(1430), + [anon_sym_LBRACE] = ACTIONS(1432), + [anon_sym_LPAREN] = ACTIONS(1434), + [anon_sym_fn] = ACTIONS(1436), + [anon_sym_PLUS] = ACTIONS(1438), + [anon_sym_DASH] = ACTIONS(1438), + [anon_sym_STAR] = ACTIONS(1440), + [anon_sym_struct] = ACTIONS(1442), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(1867), - [anon_sym_go] = ACTIONS(1869), - [anon_sym_spawn] = ACTIONS(1871), - [anon_sym_json_DOTdecode] = ACTIONS(1378), - [anon_sym_LBRACK2] = ACTIONS(1380), - [anon_sym_TILDE] = ACTIONS(1863), - [anon_sym_CARET] = ACTIONS(1863), - [anon_sym_AMP] = ACTIONS(1873), - [anon_sym_LT_DASH] = ACTIONS(1875), - [sym_none] = ACTIONS(1386), - [sym_true] = ACTIONS(1386), - [sym_false] = ACTIONS(1386), - [sym_nil] = ACTIONS(1386), - [anon_sym_if] = ACTIONS(1877), - [anon_sym_DOLLARif] = ACTIONS(1390), - [anon_sym_match] = ACTIONS(1392), - [anon_sym_select] = ACTIONS(1879), - [anon_sym_lock] = ACTIONS(1881), - [anon_sym_rlock] = ACTIONS(1881), - [anon_sym_unsafe] = ACTIONS(1883), - [anon_sym_sql] = ACTIONS(1400), - [sym_int_literal] = ACTIONS(1386), - [sym_float_literal] = ACTIONS(1404), - [sym_rune_literal] = ACTIONS(1404), - [sym_pseudo_compile_time_identifier] = ACTIONS(1406), + [anon_sym_BANG] = ACTIONS(1444), + [anon_sym_go] = ACTIONS(1446), + [anon_sym_spawn] = ACTIONS(1448), + [anon_sym_json_DOTdecode] = ACTIONS(1450), + [anon_sym_LBRACK2] = ACTIONS(1452), + [anon_sym_TILDE] = ACTIONS(1438), + [anon_sym_CARET] = ACTIONS(1438), + [anon_sym_AMP] = ACTIONS(1454), + [anon_sym_LT_DASH] = ACTIONS(1456), + [sym_none] = ACTIONS(1458), + [sym_true] = ACTIONS(1458), + [sym_false] = ACTIONS(1458), + [sym_nil] = ACTIONS(1458), + [anon_sym_if] = ACTIONS(1833), + [anon_sym_DOLLARif] = ACTIONS(1462), + [anon_sym_match] = ACTIONS(1464), + [anon_sym_select] = ACTIONS(1466), + [anon_sym_lock] = ACTIONS(1468), + [anon_sym_rlock] = ACTIONS(1468), + [anon_sym_unsafe] = ACTIONS(1839), + [anon_sym_sql] = ACTIONS(1472), + [sym_int_literal] = ACTIONS(1458), + [sym_float_literal] = ACTIONS(1474), + [sym_rune_literal] = ACTIONS(1474), + [sym_pseudo_compile_time_identifier] = ACTIONS(1476), [anon_sym_shared] = ACTIONS(83), [anon_sym_map_LBRACK] = ACTIONS(85), [anon_sym_chan] = ACTIONS(87), [anon_sym_thread] = ACTIONS(89), [anon_sym_atomic] = ACTIONS(91), - [sym___double_quote] = ACTIONS(1408), - [sym___single_quote] = ACTIONS(1410), - [sym___c_double_quote] = ACTIONS(1412), - [sym___c_single_quote] = ACTIONS(1414), - [sym___r_double_quote] = ACTIONS(1416), - [sym___r_single_quote] = ACTIONS(1418), + [sym___double_quote] = ACTIONS(1480), + [sym___single_quote] = ACTIONS(1482), + [sym___c_double_quote] = ACTIONS(1484), + [sym___c_single_quote] = ACTIONS(1486), + [sym___r_double_quote] = ACTIONS(1488), + [sym___r_single_quote] = ACTIONS(1490), }, [869] = { [sym_line_comment] = STATE(869), [sym_block_comment] = STATE(869), - [sym__expression] = STATE(1277), - [sym__expression_without_blocks] = STATE(1312), - [sym__expression_with_blocks] = STATE(1312), - [sym_inc_expression] = STATE(1313), - [sym_dec_expression] = STATE(1313), - [sym_or_block_expression] = STATE(1313), - [sym_option_propagation_expression] = STATE(1313), - [sym_result_propagation_expression] = STATE(1313), - [sym_anon_struct_value_expression] = STATE(1314), - [sym_go_expression] = STATE(1313), - [sym_spawn_expression] = STATE(1313), - [sym_parenthesized_expression] = STATE(1313), - [sym_call_expression] = STATE(1313), - [sym_type_initializer] = STATE(1314), - [sym_function_literal] = STATE(1313), - [sym_reference_expression] = STATE(1334), - [sym_type_reference_expression] = STATE(3541), - [sym_unary_expression] = STATE(1313), - [sym_receive_expression] = STATE(1313), - [sym_binary_expression] = STATE(1313), - [sym_as_type_cast_expression] = STATE(1313), - [sym__max_group] = STATE(1313), - [sym_literal] = STATE(1308), - [sym_map_init_expression] = STATE(1314), - [sym_array_creation] = STATE(1313), - [sym_fixed_array_creation] = STATE(1313), - [sym_selector_expression] = STATE(1313), - [sym_index_expression] = STATE(1313), - [sym_slice_expression] = STATE(1313), - [sym_if_expression] = STATE(1314), - [sym_compile_time_if_expression] = STATE(1314), - [sym_is_expression] = STATE(1313), - [sym_in_expression] = STATE(1313), - [sym_enum_fetch] = STATE(1313), - [sym_match_expression] = STATE(1314), - [sym_select_expression] = STATE(1314), - [sym_lock_expression] = STATE(1314), - [sym_unsafe_expression] = STATE(1314), - [sym_sql_expression] = STATE(1314), - [sym_c_string_literal] = STATE(1286), - [sym_raw_string_literal] = STATE(1286), - [sym_interpreted_string_literal] = STATE(1286), - [sym_mutability_modifiers] = STATE(699), - [sym_plain_type] = STATE(4192), - [sym__plain_type_without_special] = STATE(2302), - [sym_anon_struct_type] = STATE(2303), - [sym_multi_return_type] = STATE(2302), - [sym_result_type] = STATE(2302), - [sym_option_type] = STATE(2302), - [sym_qualified_type] = STATE(3541), - [sym_fixed_array_type] = STATE(2303), - [sym_array_type] = STATE(2303), - [sym_pointer_type] = STATE(2303), - [sym_wrong_pointer_type] = STATE(2303), - [sym_map_type] = STATE(2303), - [sym_channel_type] = STATE(2303), - [sym_shared_type] = STATE(2303), - [sym_thread_type] = STATE(2303), - [sym_atomic_type] = STATE(2303), - [sym_generic_type] = STATE(2303), - [sym_function_type] = STATE(2303), - [sym_identifier] = ACTIONS(1354), + [sym__expression] = STATE(1616), + [sym__expression_without_blocks] = STATE(1747), + [sym__expression_with_blocks] = STATE(1747), + [sym_inc_expression] = STATE(1749), + [sym_dec_expression] = STATE(1749), + [sym_or_block_expression] = STATE(1749), + [sym_option_propagation_expression] = STATE(1749), + [sym_result_propagation_expression] = STATE(1749), + [sym_anon_struct_value_expression] = STATE(1746), + [sym_go_expression] = STATE(1749), + [sym_spawn_expression] = STATE(1749), + [sym_parenthesized_expression] = STATE(1749), + [sym_call_expression] = STATE(1749), + [sym_type_initializer] = STATE(1746), + [sym_function_literal] = STATE(1749), + [sym_reference_expression] = STATE(1745), + [sym_type_reference_expression] = STATE(3460), + [sym_unary_expression] = STATE(1749), + [sym_receive_expression] = STATE(1749), + [sym_binary_expression] = STATE(1749), + [sym_as_type_cast_expression] = STATE(1749), + [sym__max_group] = STATE(1749), + [sym_literal] = STATE(1738), + [sym_map_init_expression] = STATE(1746), + [sym_array_creation] = STATE(1749), + [sym_fixed_array_creation] = STATE(1749), + [sym_selector_expression] = STATE(1749), + [sym_index_expression] = STATE(1749), + [sym_slice_expression] = STATE(1749), + [sym_if_expression] = STATE(1746), + [sym_compile_time_if_expression] = STATE(1746), + [sym_is_expression] = STATE(1749), + [sym_in_expression] = STATE(1749), + [sym_enum_fetch] = STATE(1749), + [sym_match_expression] = STATE(1746), + [sym_select_expression] = STATE(1746), + [sym_lock_expression] = STATE(1746), + [sym_unsafe_expression] = STATE(1746), + [sym_sql_expression] = STATE(1746), + [sym_c_string_literal] = STATE(1733), + [sym_raw_string_literal] = STATE(1733), + [sym_interpreted_string_literal] = STATE(1733), + [sym_mutability_modifiers] = STATE(600), + [sym_plain_type] = STATE(4259), + [sym__plain_type_without_special] = STATE(2360), + [sym_anon_struct_type] = STATE(2362), + [sym_multi_return_type] = STATE(2360), + [sym_result_type] = STATE(2360), + [sym_option_type] = STATE(2360), + [sym_qualified_type] = STATE(3460), + [sym_fixed_array_type] = STATE(2362), + [sym_array_type] = STATE(2362), + [sym_pointer_type] = STATE(2362), + [sym_wrong_pointer_type] = STATE(2362), + [sym_map_type] = STATE(2362), + [sym_channel_type] = STATE(2362), + [sym_shared_type] = STATE(2362), + [sym_thread_type] = STATE(2362), + [sym_atomic_type] = STATE(2362), + [sym_generic_type] = STATE(2362), + [sym_function_type] = STATE(2362), + [sym_identifier] = ACTIONS(3422), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1356), - [anon_sym_LBRACE] = ACTIONS(1358), - [anon_sym_LPAREN] = ACTIONS(1360), - [anon_sym_fn] = ACTIONS(1362), - [anon_sym_PLUS] = ACTIONS(1863), - [anon_sym_DASH] = ACTIONS(1863), - [anon_sym_STAR] = ACTIONS(1865), - [anon_sym_struct] = ACTIONS(1370), + [anon_sym_DOT] = ACTIONS(309), + [anon_sym_LBRACE] = ACTIONS(3424), + [anon_sym_LPAREN] = ACTIONS(315), + [anon_sym_fn] = ACTIONS(317), + [anon_sym_PLUS] = ACTIONS(319), + [anon_sym_DASH] = ACTIONS(319), + [anon_sym_STAR] = ACTIONS(321), + [anon_sym_struct] = ACTIONS(323), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(1867), - [anon_sym_go] = ACTIONS(1869), - [anon_sym_spawn] = ACTIONS(1871), - [anon_sym_json_DOTdecode] = ACTIONS(1378), - [anon_sym_LBRACK2] = ACTIONS(1380), - [anon_sym_TILDE] = ACTIONS(1863), - [anon_sym_CARET] = ACTIONS(1863), - [anon_sym_AMP] = ACTIONS(1873), - [anon_sym_LT_DASH] = ACTIONS(1875), - [sym_none] = ACTIONS(1386), - [sym_true] = ACTIONS(1386), - [sym_false] = ACTIONS(1386), - [sym_nil] = ACTIONS(1386), - [anon_sym_if] = ACTIONS(1877), - [anon_sym_DOLLARif] = ACTIONS(1390), - [anon_sym_match] = ACTIONS(1392), - [anon_sym_select] = ACTIONS(1879), - [anon_sym_lock] = ACTIONS(1881), - [anon_sym_rlock] = ACTIONS(1881), - [anon_sym_unsafe] = ACTIONS(1883), - [anon_sym_sql] = ACTIONS(1400), - [sym_int_literal] = ACTIONS(1386), - [sym_float_literal] = ACTIONS(1404), - [sym_rune_literal] = ACTIONS(1404), - [sym_pseudo_compile_time_identifier] = ACTIONS(1406), + [anon_sym_BANG] = ACTIONS(325), + [anon_sym_go] = ACTIONS(327), + [anon_sym_spawn] = ACTIONS(329), + [anon_sym_json_DOTdecode] = ACTIONS(331), + [anon_sym_LBRACK2] = ACTIONS(333), + [anon_sym_TILDE] = ACTIONS(319), + [anon_sym_CARET] = ACTIONS(319), + [anon_sym_AMP] = ACTIONS(335), + [anon_sym_LT_DASH] = ACTIONS(337), + [sym_none] = ACTIONS(339), + [sym_true] = ACTIONS(339), + [sym_false] = ACTIONS(339), + [sym_nil] = ACTIONS(339), + [anon_sym_if] = ACTIONS(341), + [anon_sym_DOLLARif] = ACTIONS(343), + [anon_sym_match] = ACTIONS(345), + [anon_sym_select] = ACTIONS(347), + [anon_sym_lock] = ACTIONS(349), + [anon_sym_rlock] = ACTIONS(349), + [anon_sym_unsafe] = ACTIONS(351), + [anon_sym_sql] = ACTIONS(353), + [sym_int_literal] = ACTIONS(339), + [sym_float_literal] = ACTIONS(355), + [sym_rune_literal] = ACTIONS(355), + [sym_pseudo_compile_time_identifier] = ACTIONS(357), [anon_sym_shared] = ACTIONS(83), [anon_sym_map_LBRACK] = ACTIONS(85), [anon_sym_chan] = ACTIONS(87), [anon_sym_thread] = ACTIONS(89), [anon_sym_atomic] = ACTIONS(91), - [sym___double_quote] = ACTIONS(1408), - [sym___single_quote] = ACTIONS(1410), - [sym___c_double_quote] = ACTIONS(1412), - [sym___c_single_quote] = ACTIONS(1414), - [sym___r_double_quote] = ACTIONS(1416), - [sym___r_single_quote] = ACTIONS(1418), + [sym___double_quote] = ACTIONS(379), + [sym___single_quote] = ACTIONS(381), + [sym___c_double_quote] = ACTIONS(383), + [sym___c_single_quote] = ACTIONS(385), + [sym___r_double_quote] = ACTIONS(387), + [sym___r_single_quote] = ACTIONS(389), }, [870] = { [sym_line_comment] = STATE(870), [sym_block_comment] = STATE(870), - [sym__expression] = STATE(2525), - [sym__expression_without_blocks] = STATE(2300), - [sym__expression_with_blocks] = STATE(2300), - [sym_inc_expression] = STATE(2307), - [sym_dec_expression] = STATE(2307), - [sym_or_block_expression] = STATE(2307), - [sym_option_propagation_expression] = STATE(2307), - [sym_result_propagation_expression] = STATE(2307), - [sym_anon_struct_value_expression] = STATE(2380), - [sym_go_expression] = STATE(2307), - [sym_spawn_expression] = STATE(2307), - [sym_parenthesized_expression] = STATE(2307), - [sym_call_expression] = STATE(2307), - [sym_type_initializer] = STATE(2380), - [sym_function_literal] = STATE(2307), - [sym_reference_expression] = STATE(2311), - [sym_type_reference_expression] = STATE(3541), - [sym_unary_expression] = STATE(2307), - [sym_receive_expression] = STATE(2307), - [sym_binary_expression] = STATE(2307), - [sym_as_type_cast_expression] = STATE(2307), - [sym__max_group] = STATE(2307), - [sym_literal] = STATE(2292), - [sym_map_init_expression] = STATE(2380), - [sym_array_creation] = STATE(2307), - [sym_fixed_array_creation] = STATE(2307), - [sym_selector_expression] = STATE(2307), - [sym_index_expression] = STATE(2307), - [sym_slice_expression] = STATE(2307), - [sym_if_expression] = STATE(2380), - [sym_compile_time_if_expression] = STATE(2380), - [sym_is_expression] = STATE(2307), - [sym_in_expression] = STATE(2307), - [sym_enum_fetch] = STATE(2307), - [sym_match_expression] = STATE(2380), - [sym_select_expression] = STATE(2380), - [sym_lock_expression] = STATE(2380), - [sym_unsafe_expression] = STATE(2380), - [sym_sql_expression] = STATE(2380), - [sym_c_string_literal] = STATE(2308), - [sym_raw_string_literal] = STATE(2308), - [sym_interpreted_string_literal] = STATE(2308), - [sym_mutability_modifiers] = STATE(632), - [sym_plain_type] = STATE(4297), - [sym__plain_type_without_special] = STATE(2302), - [sym_anon_struct_type] = STATE(2303), - [sym_multi_return_type] = STATE(2302), - [sym_result_type] = STATE(2302), - [sym_option_type] = STATE(2302), - [sym_qualified_type] = STATE(3541), - [sym_fixed_array_type] = STATE(2303), - [sym_array_type] = STATE(2303), - [sym_pointer_type] = STATE(2303), - [sym_wrong_pointer_type] = STATE(2303), - [sym_map_type] = STATE(2303), - [sym_channel_type] = STATE(2303), - [sym_shared_type] = STATE(2303), - [sym_thread_type] = STATE(2303), - [sym_atomic_type] = STATE(2303), - [sym_generic_type] = STATE(2303), - [sym_function_type] = STATE(2303), - [sym_identifier] = ACTIONS(1807), + [sym__expression] = STATE(1613), + [sym__expression_without_blocks] = STATE(1747), + [sym__expression_with_blocks] = STATE(1747), + [sym_inc_expression] = STATE(1749), + [sym_dec_expression] = STATE(1749), + [sym_or_block_expression] = STATE(1749), + [sym_option_propagation_expression] = STATE(1749), + [sym_result_propagation_expression] = STATE(1749), + [sym_anon_struct_value_expression] = STATE(1746), + [sym_go_expression] = STATE(1749), + [sym_spawn_expression] = STATE(1749), + [sym_parenthesized_expression] = STATE(1749), + [sym_call_expression] = STATE(1749), + [sym_type_initializer] = STATE(1746), + [sym_function_literal] = STATE(1749), + [sym_reference_expression] = STATE(1745), + [sym_type_reference_expression] = STATE(3460), + [sym_unary_expression] = STATE(1749), + [sym_receive_expression] = STATE(1749), + [sym_binary_expression] = STATE(1749), + [sym_as_type_cast_expression] = STATE(1749), + [sym__max_group] = STATE(1749), + [sym_literal] = STATE(1738), + [sym_map_init_expression] = STATE(1746), + [sym_array_creation] = STATE(1749), + [sym_fixed_array_creation] = STATE(1749), + [sym_selector_expression] = STATE(1749), + [sym_index_expression] = STATE(1749), + [sym_slice_expression] = STATE(1749), + [sym_if_expression] = STATE(1746), + [sym_compile_time_if_expression] = STATE(1746), + [sym_is_expression] = STATE(1749), + [sym_in_expression] = STATE(1749), + [sym_enum_fetch] = STATE(1749), + [sym_match_expression] = STATE(1746), + [sym_select_expression] = STATE(1746), + [sym_lock_expression] = STATE(1746), + [sym_unsafe_expression] = STATE(1746), + [sym_sql_expression] = STATE(1746), + [sym_c_string_literal] = STATE(1733), + [sym_raw_string_literal] = STATE(1733), + [sym_interpreted_string_literal] = STATE(1733), + [sym_mutability_modifiers] = STATE(600), + [sym_plain_type] = STATE(4121), + [sym__plain_type_without_special] = STATE(2360), + [sym_anon_struct_type] = STATE(2362), + [sym_multi_return_type] = STATE(2360), + [sym_result_type] = STATE(2360), + [sym_option_type] = STATE(2360), + [sym_qualified_type] = STATE(3460), + [sym_fixed_array_type] = STATE(2362), + [sym_array_type] = STATE(2362), + [sym_pointer_type] = STATE(2362), + [sym_wrong_pointer_type] = STATE(2362), + [sym_map_type] = STATE(2362), + [sym_channel_type] = STATE(2362), + [sym_shared_type] = STATE(2362), + [sym_thread_type] = STATE(2362), + [sym_atomic_type] = STATE(2362), + [sym_generic_type] = STATE(2362), + [sym_function_type] = STATE(2362), + [sym_identifier] = ACTIONS(3422), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1428), - [anon_sym_LBRACE] = ACTIONS(1430), - [anon_sym_LPAREN] = ACTIONS(1432), - [anon_sym_fn] = ACTIONS(1434), - [anon_sym_PLUS] = ACTIONS(1811), - [anon_sym_DASH] = ACTIONS(1811), - [anon_sym_STAR] = ACTIONS(1813), - [anon_sym_struct] = ACTIONS(1440), + [anon_sym_DOT] = ACTIONS(309), + [anon_sym_LBRACE] = ACTIONS(3424), + [anon_sym_LPAREN] = ACTIONS(315), + [anon_sym_fn] = ACTIONS(317), + [anon_sym_PLUS] = ACTIONS(319), + [anon_sym_DASH] = ACTIONS(319), + [anon_sym_STAR] = ACTIONS(321), + [anon_sym_struct] = ACTIONS(323), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(1815), - [anon_sym_go] = ACTIONS(1817), - [anon_sym_spawn] = ACTIONS(1819), - [anon_sym_json_DOTdecode] = ACTIONS(1448), - [anon_sym_LBRACK2] = ACTIONS(1821), - [anon_sym_TILDE] = ACTIONS(1811), - [anon_sym_CARET] = ACTIONS(1811), - [anon_sym_AMP] = ACTIONS(1823), - [anon_sym_LT_DASH] = ACTIONS(1825), - [sym_none] = ACTIONS(1456), - [sym_true] = ACTIONS(1456), - [sym_false] = ACTIONS(1456), - [sym_nil] = ACTIONS(1456), - [anon_sym_if] = ACTIONS(1827), - [anon_sym_DOLLARif] = ACTIONS(1460), - [anon_sym_match] = ACTIONS(1462), - [anon_sym_select] = ACTIONS(1829), - [anon_sym_lock] = ACTIONS(1831), - [anon_sym_rlock] = ACTIONS(1831), - [anon_sym_unsafe] = ACTIONS(1833), - [anon_sym_sql] = ACTIONS(1470), - [sym_int_literal] = ACTIONS(1456), - [sym_float_literal] = ACTIONS(1472), - [sym_rune_literal] = ACTIONS(1472), - [sym_pseudo_compile_time_identifier] = ACTIONS(1474), + [anon_sym_BANG] = ACTIONS(325), + [anon_sym_go] = ACTIONS(327), + [anon_sym_spawn] = ACTIONS(329), + [anon_sym_json_DOTdecode] = ACTIONS(331), + [anon_sym_LBRACK2] = ACTIONS(333), + [anon_sym_TILDE] = ACTIONS(319), + [anon_sym_CARET] = ACTIONS(319), + [anon_sym_AMP] = ACTIONS(335), + [anon_sym_LT_DASH] = ACTIONS(337), + [sym_none] = ACTIONS(339), + [sym_true] = ACTIONS(339), + [sym_false] = ACTIONS(339), + [sym_nil] = ACTIONS(339), + [anon_sym_if] = ACTIONS(341), + [anon_sym_DOLLARif] = ACTIONS(343), + [anon_sym_match] = ACTIONS(345), + [anon_sym_select] = ACTIONS(347), + [anon_sym_lock] = ACTIONS(349), + [anon_sym_rlock] = ACTIONS(349), + [anon_sym_unsafe] = ACTIONS(351), + [anon_sym_sql] = ACTIONS(353), + [sym_int_literal] = ACTIONS(339), + [sym_float_literal] = ACTIONS(355), + [sym_rune_literal] = ACTIONS(355), + [sym_pseudo_compile_time_identifier] = ACTIONS(357), [anon_sym_shared] = ACTIONS(83), [anon_sym_map_LBRACK] = ACTIONS(85), [anon_sym_chan] = ACTIONS(87), [anon_sym_thread] = ACTIONS(89), [anon_sym_atomic] = ACTIONS(91), - [sym___double_quote] = ACTIONS(1478), - [sym___single_quote] = ACTIONS(1480), - [sym___c_double_quote] = ACTIONS(1482), - [sym___c_single_quote] = ACTIONS(1484), - [sym___r_double_quote] = ACTIONS(1486), - [sym___r_single_quote] = ACTIONS(1488), + [sym___double_quote] = ACTIONS(379), + [sym___single_quote] = ACTIONS(381), + [sym___c_double_quote] = ACTIONS(383), + [sym___c_single_quote] = ACTIONS(385), + [sym___r_double_quote] = ACTIONS(387), + [sym___r_single_quote] = ACTIONS(389), }, [871] = { [sym_line_comment] = STATE(871), [sym_block_comment] = STATE(871), - [sym__expression] = STATE(2522), - [sym__expression_without_blocks] = STATE(2300), - [sym__expression_with_blocks] = STATE(2300), - [sym_inc_expression] = STATE(2307), - [sym_dec_expression] = STATE(2307), - [sym_or_block_expression] = STATE(2307), - [sym_option_propagation_expression] = STATE(2307), - [sym_result_propagation_expression] = STATE(2307), - [sym_anon_struct_value_expression] = STATE(2380), - [sym_go_expression] = STATE(2307), - [sym_spawn_expression] = STATE(2307), - [sym_parenthesized_expression] = STATE(2307), - [sym_call_expression] = STATE(2307), - [sym_type_initializer] = STATE(2380), - [sym_function_literal] = STATE(2307), - [sym_reference_expression] = STATE(2311), - [sym_type_reference_expression] = STATE(3541), - [sym_unary_expression] = STATE(2307), - [sym_receive_expression] = STATE(2307), - [sym_binary_expression] = STATE(2307), - [sym_as_type_cast_expression] = STATE(2307), - [sym__max_group] = STATE(2307), - [sym_literal] = STATE(2292), - [sym_map_init_expression] = STATE(2380), - [sym_array_creation] = STATE(2307), - [sym_fixed_array_creation] = STATE(2307), - [sym_selector_expression] = STATE(2307), - [sym_index_expression] = STATE(2307), - [sym_slice_expression] = STATE(2307), - [sym_if_expression] = STATE(2380), - [sym_compile_time_if_expression] = STATE(2380), - [sym_is_expression] = STATE(2307), - [sym_in_expression] = STATE(2307), - [sym_enum_fetch] = STATE(2307), - [sym_match_expression] = STATE(2380), - [sym_select_expression] = STATE(2380), - [sym_lock_expression] = STATE(2380), - [sym_unsafe_expression] = STATE(2380), - [sym_sql_expression] = STATE(2380), - [sym_c_string_literal] = STATE(2308), - [sym_raw_string_literal] = STATE(2308), - [sym_interpreted_string_literal] = STATE(2308), - [sym_mutability_modifiers] = STATE(632), - [sym_plain_type] = STATE(4297), - [sym__plain_type_without_special] = STATE(2302), - [sym_anon_struct_type] = STATE(2303), - [sym_multi_return_type] = STATE(2302), - [sym_result_type] = STATE(2302), - [sym_option_type] = STATE(2302), - [sym_qualified_type] = STATE(3541), - [sym_fixed_array_type] = STATE(2303), - [sym_array_type] = STATE(2303), - [sym_pointer_type] = STATE(2303), - [sym_wrong_pointer_type] = STATE(2303), - [sym_map_type] = STATE(2303), - [sym_channel_type] = STATE(2303), - [sym_shared_type] = STATE(2303), - [sym_thread_type] = STATE(2303), - [sym_atomic_type] = STATE(2303), - [sym_generic_type] = STATE(2303), - [sym_function_type] = STATE(2303), - [sym_identifier] = ACTIONS(1807), + [sym__expression] = STATE(1610), + [sym__expression_without_blocks] = STATE(1747), + [sym__expression_with_blocks] = STATE(1747), + [sym_inc_expression] = STATE(1749), + [sym_dec_expression] = STATE(1749), + [sym_or_block_expression] = STATE(1749), + [sym_option_propagation_expression] = STATE(1749), + [sym_result_propagation_expression] = STATE(1749), + [sym_anon_struct_value_expression] = STATE(1746), + [sym_go_expression] = STATE(1749), + [sym_spawn_expression] = STATE(1749), + [sym_parenthesized_expression] = STATE(1749), + [sym_call_expression] = STATE(1749), + [sym_type_initializer] = STATE(1746), + [sym_function_literal] = STATE(1749), + [sym_reference_expression] = STATE(1745), + [sym_type_reference_expression] = STATE(3460), + [sym_unary_expression] = STATE(1749), + [sym_receive_expression] = STATE(1749), + [sym_binary_expression] = STATE(1749), + [sym_as_type_cast_expression] = STATE(1749), + [sym__max_group] = STATE(1749), + [sym_literal] = STATE(1738), + [sym_map_init_expression] = STATE(1746), + [sym_array_creation] = STATE(1749), + [sym_fixed_array_creation] = STATE(1749), + [sym_selector_expression] = STATE(1749), + [sym_index_expression] = STATE(1749), + [sym_slice_expression] = STATE(1749), + [sym_if_expression] = STATE(1746), + [sym_compile_time_if_expression] = STATE(1746), + [sym_is_expression] = STATE(1749), + [sym_in_expression] = STATE(1749), + [sym_enum_fetch] = STATE(1749), + [sym_match_expression] = STATE(1746), + [sym_select_expression] = STATE(1746), + [sym_lock_expression] = STATE(1746), + [sym_unsafe_expression] = STATE(1746), + [sym_sql_expression] = STATE(1746), + [sym_c_string_literal] = STATE(1733), + [sym_raw_string_literal] = STATE(1733), + [sym_interpreted_string_literal] = STATE(1733), + [sym_mutability_modifiers] = STATE(600), + [sym_plain_type] = STATE(4121), + [sym__plain_type_without_special] = STATE(2360), + [sym_anon_struct_type] = STATE(2362), + [sym_multi_return_type] = STATE(2360), + [sym_result_type] = STATE(2360), + [sym_option_type] = STATE(2360), + [sym_qualified_type] = STATE(3460), + [sym_fixed_array_type] = STATE(2362), + [sym_array_type] = STATE(2362), + [sym_pointer_type] = STATE(2362), + [sym_wrong_pointer_type] = STATE(2362), + [sym_map_type] = STATE(2362), + [sym_channel_type] = STATE(2362), + [sym_shared_type] = STATE(2362), + [sym_thread_type] = STATE(2362), + [sym_atomic_type] = STATE(2362), + [sym_generic_type] = STATE(2362), + [sym_function_type] = STATE(2362), + [sym_identifier] = ACTIONS(3422), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1428), - [anon_sym_LBRACE] = ACTIONS(1430), - [anon_sym_LPAREN] = ACTIONS(1432), - [anon_sym_fn] = ACTIONS(1434), - [anon_sym_PLUS] = ACTIONS(1811), - [anon_sym_DASH] = ACTIONS(1811), - [anon_sym_STAR] = ACTIONS(1813), - [anon_sym_struct] = ACTIONS(1440), + [anon_sym_DOT] = ACTIONS(309), + [anon_sym_LBRACE] = ACTIONS(3424), + [anon_sym_LPAREN] = ACTIONS(315), + [anon_sym_fn] = ACTIONS(317), + [anon_sym_PLUS] = ACTIONS(319), + [anon_sym_DASH] = ACTIONS(319), + [anon_sym_STAR] = ACTIONS(321), + [anon_sym_struct] = ACTIONS(323), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(1815), - [anon_sym_go] = ACTIONS(1817), - [anon_sym_spawn] = ACTIONS(1819), - [anon_sym_json_DOTdecode] = ACTIONS(1448), - [anon_sym_LBRACK2] = ACTIONS(1821), - [anon_sym_TILDE] = ACTIONS(1811), - [anon_sym_CARET] = ACTIONS(1811), - [anon_sym_AMP] = ACTIONS(1823), - [anon_sym_LT_DASH] = ACTIONS(1825), - [sym_none] = ACTIONS(1456), - [sym_true] = ACTIONS(1456), - [sym_false] = ACTIONS(1456), - [sym_nil] = ACTIONS(1456), - [anon_sym_if] = ACTIONS(1827), - [anon_sym_DOLLARif] = ACTIONS(1460), - [anon_sym_match] = ACTIONS(1462), - [anon_sym_select] = ACTIONS(1829), - [anon_sym_lock] = ACTIONS(1831), - [anon_sym_rlock] = ACTIONS(1831), - [anon_sym_unsafe] = ACTIONS(1833), - [anon_sym_sql] = ACTIONS(1470), - [sym_int_literal] = ACTIONS(1456), - [sym_float_literal] = ACTIONS(1472), - [sym_rune_literal] = ACTIONS(1472), - [sym_pseudo_compile_time_identifier] = ACTIONS(1474), + [anon_sym_BANG] = ACTIONS(325), + [anon_sym_go] = ACTIONS(327), + [anon_sym_spawn] = ACTIONS(329), + [anon_sym_json_DOTdecode] = ACTIONS(331), + [anon_sym_LBRACK2] = ACTIONS(333), + [anon_sym_TILDE] = ACTIONS(319), + [anon_sym_CARET] = ACTIONS(319), + [anon_sym_AMP] = ACTIONS(335), + [anon_sym_LT_DASH] = ACTIONS(337), + [sym_none] = ACTIONS(339), + [sym_true] = ACTIONS(339), + [sym_false] = ACTIONS(339), + [sym_nil] = ACTIONS(339), + [anon_sym_if] = ACTIONS(341), + [anon_sym_DOLLARif] = ACTIONS(343), + [anon_sym_match] = ACTIONS(345), + [anon_sym_select] = ACTIONS(347), + [anon_sym_lock] = ACTIONS(349), + [anon_sym_rlock] = ACTIONS(349), + [anon_sym_unsafe] = ACTIONS(351), + [anon_sym_sql] = ACTIONS(353), + [sym_int_literal] = ACTIONS(339), + [sym_float_literal] = ACTIONS(355), + [sym_rune_literal] = ACTIONS(355), + [sym_pseudo_compile_time_identifier] = ACTIONS(357), [anon_sym_shared] = ACTIONS(83), [anon_sym_map_LBRACK] = ACTIONS(85), [anon_sym_chan] = ACTIONS(87), [anon_sym_thread] = ACTIONS(89), [anon_sym_atomic] = ACTIONS(91), - [sym___double_quote] = ACTIONS(1478), - [sym___single_quote] = ACTIONS(1480), - [sym___c_double_quote] = ACTIONS(1482), - [sym___c_single_quote] = ACTIONS(1484), - [sym___r_double_quote] = ACTIONS(1486), - [sym___r_single_quote] = ACTIONS(1488), + [sym___double_quote] = ACTIONS(379), + [sym___single_quote] = ACTIONS(381), + [sym___c_double_quote] = ACTIONS(383), + [sym___c_single_quote] = ACTIONS(385), + [sym___r_double_quote] = ACTIONS(387), + [sym___r_single_quote] = ACTIONS(389), }, [872] = { [sym_line_comment] = STATE(872), [sym_block_comment] = STATE(872), - [sym__expression] = STATE(956), - [sym__expression_without_blocks] = STATE(1017), - [sym__expression_with_blocks] = STATE(1017), - [sym_inc_expression] = STATE(1018), - [sym_dec_expression] = STATE(1018), - [sym_or_block_expression] = STATE(1018), - [sym_option_propagation_expression] = STATE(1018), - [sym_result_propagation_expression] = STATE(1018), - [sym_anon_struct_value_expression] = STATE(993), - [sym_go_expression] = STATE(1018), - [sym_spawn_expression] = STATE(1018), - [sym_parenthesized_expression] = STATE(1018), - [sym_call_expression] = STATE(1018), - [sym_type_initializer] = STATE(993), - [sym_function_literal] = STATE(1018), - [sym_reference_expression] = STATE(1046), - [sym_type_reference_expression] = STATE(3541), - [sym_unary_expression] = STATE(1018), - [sym_receive_expression] = STATE(1018), - [sym_binary_expression] = STATE(1018), - [sym_as_type_cast_expression] = STATE(1018), - [sym__max_group] = STATE(1018), - [sym_literal] = STATE(1014), - [sym_map_init_expression] = STATE(993), - [sym_array_creation] = STATE(1018), - [sym_fixed_array_creation] = STATE(1018), - [sym_selector_expression] = STATE(1018), - [sym_index_expression] = STATE(1018), - [sym_slice_expression] = STATE(1018), - [sym_if_expression] = STATE(993), - [sym_compile_time_if_expression] = STATE(993), - [sym_is_expression] = STATE(1018), - [sym_in_expression] = STATE(1018), - [sym_enum_fetch] = STATE(1018), - [sym_match_expression] = STATE(993), - [sym_select_expression] = STATE(993), - [sym_lock_expression] = STATE(993), - [sym_unsafe_expression] = STATE(993), - [sym_sql_expression] = STATE(993), - [sym_c_string_literal] = STATE(1006), - [sym_raw_string_literal] = STATE(1006), - [sym_interpreted_string_literal] = STATE(1006), - [sym_mutability_modifiers] = STATE(691), - [sym_plain_type] = STATE(4296), - [sym__plain_type_without_special] = STATE(2302), - [sym_anon_struct_type] = STATE(2303), - [sym_multi_return_type] = STATE(2302), - [sym_result_type] = STATE(2302), - [sym_option_type] = STATE(2302), - [sym_qualified_type] = STATE(3541), - [sym_fixed_array_type] = STATE(2303), - [sym_array_type] = STATE(2303), - [sym_pointer_type] = STATE(2303), - [sym_wrong_pointer_type] = STATE(2303), - [sym_map_type] = STATE(2303), - [sym_channel_type] = STATE(2303), - [sym_shared_type] = STATE(2303), - [sym_thread_type] = STATE(2303), - [sym_atomic_type] = STATE(2303), - [sym_generic_type] = STATE(2303), - [sym_function_type] = STATE(2303), - [sym_identifier] = ACTIONS(493), + [sym__expression] = STATE(1616), + [sym__expression_without_blocks] = STATE(1747), + [sym__expression_with_blocks] = STATE(1747), + [sym_inc_expression] = STATE(1749), + [sym_dec_expression] = STATE(1749), + [sym_or_block_expression] = STATE(1749), + [sym_option_propagation_expression] = STATE(1749), + [sym_result_propagation_expression] = STATE(1749), + [sym_anon_struct_value_expression] = STATE(1746), + [sym_go_expression] = STATE(1749), + [sym_spawn_expression] = STATE(1749), + [sym_parenthesized_expression] = STATE(1749), + [sym_call_expression] = STATE(1749), + [sym_type_initializer] = STATE(1746), + [sym_function_literal] = STATE(1749), + [sym_reference_expression] = STATE(1745), + [sym_type_reference_expression] = STATE(3460), + [sym_unary_expression] = STATE(1749), + [sym_receive_expression] = STATE(1749), + [sym_binary_expression] = STATE(1749), + [sym_as_type_cast_expression] = STATE(1749), + [sym__max_group] = STATE(1749), + [sym_literal] = STATE(1738), + [sym_map_init_expression] = STATE(1746), + [sym_array_creation] = STATE(1749), + [sym_fixed_array_creation] = STATE(1749), + [sym_selector_expression] = STATE(1749), + [sym_index_expression] = STATE(1749), + [sym_slice_expression] = STATE(1749), + [sym_if_expression] = STATE(1746), + [sym_compile_time_if_expression] = STATE(1746), + [sym_is_expression] = STATE(1749), + [sym_in_expression] = STATE(1749), + [sym_enum_fetch] = STATE(1749), + [sym_match_expression] = STATE(1746), + [sym_select_expression] = STATE(1746), + [sym_lock_expression] = STATE(1746), + [sym_unsafe_expression] = STATE(1746), + [sym_sql_expression] = STATE(1746), + [sym_c_string_literal] = STATE(1733), + [sym_raw_string_literal] = STATE(1733), + [sym_interpreted_string_literal] = STATE(1733), + [sym_mutability_modifiers] = STATE(600), + [sym_plain_type] = STATE(4127), + [sym__plain_type_without_special] = STATE(2360), + [sym_anon_struct_type] = STATE(2362), + [sym_multi_return_type] = STATE(2360), + [sym_result_type] = STATE(2360), + [sym_option_type] = STATE(2360), + [sym_qualified_type] = STATE(3460), + [sym_fixed_array_type] = STATE(2362), + [sym_array_type] = STATE(2362), + [sym_pointer_type] = STATE(2362), + [sym_wrong_pointer_type] = STATE(2362), + [sym_map_type] = STATE(2362), + [sym_channel_type] = STATE(2362), + [sym_shared_type] = STATE(2362), + [sym_thread_type] = STATE(2362), + [sym_atomic_type] = STATE(2362), + [sym_generic_type] = STATE(2362), + [sym_function_type] = STATE(2362), + [sym_identifier] = ACTIONS(3422), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(501), - [anon_sym_LBRACE] = ACTIONS(2319), - [anon_sym_LPAREN] = ACTIONS(2321), - [anon_sym_fn] = ACTIONS(507), - [anon_sym_PLUS] = ACTIONS(2323), - [anon_sym_DASH] = ACTIONS(2323), - [anon_sym_STAR] = ACTIONS(2325), - [anon_sym_struct] = ACTIONS(513), + [anon_sym_DOT] = ACTIONS(309), + [anon_sym_LBRACE] = ACTIONS(3424), + [anon_sym_LPAREN] = ACTIONS(315), + [anon_sym_fn] = ACTIONS(317), + [anon_sym_PLUS] = ACTIONS(319), + [anon_sym_DASH] = ACTIONS(319), + [anon_sym_STAR] = ACTIONS(321), + [anon_sym_struct] = ACTIONS(323), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(2327), - [anon_sym_go] = ACTIONS(519), - [anon_sym_spawn] = ACTIONS(521), - [anon_sym_json_DOTdecode] = ACTIONS(2329), - [anon_sym_LBRACK2] = ACTIONS(2331), - [anon_sym_TILDE] = ACTIONS(2323), - [anon_sym_CARET] = ACTIONS(2323), - [anon_sym_AMP] = ACTIONS(2333), - [anon_sym_LT_DASH] = ACTIONS(2335), - [sym_none] = ACTIONS(531), - [sym_true] = ACTIONS(531), - [sym_false] = ACTIONS(531), - [sym_nil] = ACTIONS(531), - [anon_sym_if] = ACTIONS(533), - [anon_sym_DOLLARif] = ACTIONS(535), - [anon_sym_match] = ACTIONS(537), - [anon_sym_select] = ACTIONS(539), - [anon_sym_lock] = ACTIONS(541), - [anon_sym_rlock] = ACTIONS(541), - [anon_sym_unsafe] = ACTIONS(543), - [anon_sym_sql] = ACTIONS(545), - [sym_int_literal] = ACTIONS(531), - [sym_float_literal] = ACTIONS(2337), - [sym_rune_literal] = ACTIONS(2337), - [sym_pseudo_compile_time_identifier] = ACTIONS(547), + [anon_sym_BANG] = ACTIONS(325), + [anon_sym_go] = ACTIONS(327), + [anon_sym_spawn] = ACTIONS(329), + [anon_sym_json_DOTdecode] = ACTIONS(331), + [anon_sym_LBRACK2] = ACTIONS(333), + [anon_sym_TILDE] = ACTIONS(319), + [anon_sym_CARET] = ACTIONS(319), + [anon_sym_AMP] = ACTIONS(335), + [anon_sym_LT_DASH] = ACTIONS(337), + [sym_none] = ACTIONS(339), + [sym_true] = ACTIONS(339), + [sym_false] = ACTIONS(339), + [sym_nil] = ACTIONS(339), + [anon_sym_if] = ACTIONS(341), + [anon_sym_DOLLARif] = ACTIONS(343), + [anon_sym_match] = ACTIONS(345), + [anon_sym_select] = ACTIONS(347), + [anon_sym_lock] = ACTIONS(349), + [anon_sym_rlock] = ACTIONS(349), + [anon_sym_unsafe] = ACTIONS(351), + [anon_sym_sql] = ACTIONS(353), + [sym_int_literal] = ACTIONS(339), + [sym_float_literal] = ACTIONS(355), + [sym_rune_literal] = ACTIONS(355), + [sym_pseudo_compile_time_identifier] = ACTIONS(357), [anon_sym_shared] = ACTIONS(83), [anon_sym_map_LBRACK] = ACTIONS(85), [anon_sym_chan] = ACTIONS(87), [anon_sym_thread] = ACTIONS(89), [anon_sym_atomic] = ACTIONS(91), - [sym___double_quote] = ACTIONS(2339), - [sym___single_quote] = ACTIONS(2341), - [sym___c_double_quote] = ACTIONS(2343), - [sym___c_single_quote] = ACTIONS(2345), - [sym___r_double_quote] = ACTIONS(2347), - [sym___r_single_quote] = ACTIONS(2349), + [sym___double_quote] = ACTIONS(379), + [sym___single_quote] = ACTIONS(381), + [sym___c_double_quote] = ACTIONS(383), + [sym___c_single_quote] = ACTIONS(385), + [sym___r_double_quote] = ACTIONS(387), + [sym___r_single_quote] = ACTIONS(389), }, [873] = { [sym_line_comment] = STATE(873), [sym_block_comment] = STATE(873), - [sym__expression] = STATE(2518), - [sym__expression_without_blocks] = STATE(2300), - [sym__expression_with_blocks] = STATE(2300), - [sym_inc_expression] = STATE(2307), - [sym_dec_expression] = STATE(2307), - [sym_or_block_expression] = STATE(2307), - [sym_option_propagation_expression] = STATE(2307), - [sym_result_propagation_expression] = STATE(2307), - [sym_anon_struct_value_expression] = STATE(2380), - [sym_go_expression] = STATE(2307), - [sym_spawn_expression] = STATE(2307), - [sym_parenthesized_expression] = STATE(2307), - [sym_call_expression] = STATE(2307), - [sym_type_initializer] = STATE(2380), - [sym_function_literal] = STATE(2307), - [sym_reference_expression] = STATE(2311), - [sym_type_reference_expression] = STATE(3541), - [sym_unary_expression] = STATE(2307), - [sym_receive_expression] = STATE(2307), - [sym_binary_expression] = STATE(2307), - [sym_as_type_cast_expression] = STATE(2307), - [sym__max_group] = STATE(2307), - [sym_literal] = STATE(2292), - [sym_map_init_expression] = STATE(2380), - [sym_array_creation] = STATE(2307), - [sym_fixed_array_creation] = STATE(2307), - [sym_selector_expression] = STATE(2307), - [sym_index_expression] = STATE(2307), - [sym_slice_expression] = STATE(2307), - [sym_if_expression] = STATE(2380), - [sym_compile_time_if_expression] = STATE(2380), - [sym_is_expression] = STATE(2307), - [sym_in_expression] = STATE(2307), - [sym_enum_fetch] = STATE(2307), - [sym_match_expression] = STATE(2380), - [sym_select_expression] = STATE(2380), - [sym_lock_expression] = STATE(2380), - [sym_unsafe_expression] = STATE(2380), - [sym_sql_expression] = STATE(2380), - [sym_c_string_literal] = STATE(2308), - [sym_raw_string_literal] = STATE(2308), - [sym_interpreted_string_literal] = STATE(2308), - [sym_mutability_modifiers] = STATE(632), - [sym_plain_type] = STATE(4297), - [sym__plain_type_without_special] = STATE(2302), - [sym_anon_struct_type] = STATE(2303), - [sym_multi_return_type] = STATE(2302), - [sym_result_type] = STATE(2302), - [sym_option_type] = STATE(2302), - [sym_qualified_type] = STATE(3541), - [sym_fixed_array_type] = STATE(2303), - [sym_array_type] = STATE(2303), - [sym_pointer_type] = STATE(2303), - [sym_wrong_pointer_type] = STATE(2303), - [sym_map_type] = STATE(2303), - [sym_channel_type] = STATE(2303), - [sym_shared_type] = STATE(2303), - [sym_thread_type] = STATE(2303), - [sym_atomic_type] = STATE(2303), - [sym_generic_type] = STATE(2303), - [sym_function_type] = STATE(2303), - [sym_identifier] = ACTIONS(1807), - [anon_sym_SLASH_SLASH] = ACTIONS(3), - [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1428), - [anon_sym_LBRACE] = ACTIONS(1430), - [anon_sym_LPAREN] = ACTIONS(1432), - [anon_sym_fn] = ACTIONS(1434), - [anon_sym_PLUS] = ACTIONS(1811), - [anon_sym_DASH] = ACTIONS(1811), - [anon_sym_STAR] = ACTIONS(1813), - [anon_sym_struct] = ACTIONS(1440), - [anon_sym_mut] = ACTIONS(41), - [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(1815), - [anon_sym_go] = ACTIONS(1817), - [anon_sym_spawn] = ACTIONS(1819), - [anon_sym_json_DOTdecode] = ACTIONS(1448), - [anon_sym_LBRACK2] = ACTIONS(1821), - [anon_sym_TILDE] = ACTIONS(1811), - [anon_sym_CARET] = ACTIONS(1811), - [anon_sym_AMP] = ACTIONS(1823), - [anon_sym_LT_DASH] = ACTIONS(1825), - [sym_none] = ACTIONS(1456), - [sym_true] = ACTIONS(1456), - [sym_false] = ACTIONS(1456), - [sym_nil] = ACTIONS(1456), - [anon_sym_if] = ACTIONS(1827), - [anon_sym_DOLLARif] = ACTIONS(1460), - [anon_sym_match] = ACTIONS(1462), - [anon_sym_select] = ACTIONS(1829), - [anon_sym_lock] = ACTIONS(1831), - [anon_sym_rlock] = ACTIONS(1831), - [anon_sym_unsafe] = ACTIONS(1833), - [anon_sym_sql] = ACTIONS(1470), - [sym_int_literal] = ACTIONS(1456), - [sym_float_literal] = ACTIONS(1472), - [sym_rune_literal] = ACTIONS(1472), - [sym_pseudo_compile_time_identifier] = ACTIONS(1474), - [anon_sym_shared] = ACTIONS(83), - [anon_sym_map_LBRACK] = ACTIONS(85), - [anon_sym_chan] = ACTIONS(87), - [anon_sym_thread] = ACTIONS(89), - [anon_sym_atomic] = ACTIONS(91), - [sym___double_quote] = ACTIONS(1478), - [sym___single_quote] = ACTIONS(1480), - [sym___c_double_quote] = ACTIONS(1482), - [sym___c_single_quote] = ACTIONS(1484), - [sym___r_double_quote] = ACTIONS(1486), - [sym___r_single_quote] = ACTIONS(1488), - }, - [874] = { - [sym_line_comment] = STATE(874), - [sym_block_comment] = STATE(874), - [sym__expression] = STATE(1253), - [sym__expression_without_blocks] = STATE(1312), - [sym__expression_with_blocks] = STATE(1312), - [sym_inc_expression] = STATE(1313), - [sym_dec_expression] = STATE(1313), - [sym_or_block_expression] = STATE(1313), - [sym_option_propagation_expression] = STATE(1313), - [sym_result_propagation_expression] = STATE(1313), - [sym_anon_struct_value_expression] = STATE(1314), - [sym_go_expression] = STATE(1313), - [sym_spawn_expression] = STATE(1313), - [sym_parenthesized_expression] = STATE(1313), - [sym_call_expression] = STATE(1313), - [sym_type_initializer] = STATE(1314), - [sym_function_literal] = STATE(1313), - [sym_reference_expression] = STATE(1334), - [sym_type_reference_expression] = STATE(3541), - [sym_unary_expression] = STATE(1313), - [sym_receive_expression] = STATE(1313), - [sym_binary_expression] = STATE(1313), - [sym_as_type_cast_expression] = STATE(1313), - [sym__max_group] = STATE(1313), - [sym_literal] = STATE(1308), - [sym_map_init_expression] = STATE(1314), - [sym_array_creation] = STATE(1313), - [sym_fixed_array_creation] = STATE(1313), - [sym_selector_expression] = STATE(1313), - [sym_index_expression] = STATE(1313), - [sym_slice_expression] = STATE(1313), - [sym_if_expression] = STATE(1314), - [sym_compile_time_if_expression] = STATE(1314), - [sym_is_expression] = STATE(1313), - [sym_in_expression] = STATE(1313), - [sym_enum_fetch] = STATE(1313), - [sym_match_expression] = STATE(1314), - [sym_select_expression] = STATE(1314), - [sym_lock_expression] = STATE(1314), - [sym_unsafe_expression] = STATE(1314), - [sym_sql_expression] = STATE(1314), - [sym_c_string_literal] = STATE(1286), - [sym_raw_string_literal] = STATE(1286), - [sym_interpreted_string_literal] = STATE(1286), - [sym_mutability_modifiers] = STATE(699), - [sym_plain_type] = STATE(4192), - [sym__plain_type_without_special] = STATE(2302), - [sym_anon_struct_type] = STATE(2303), - [sym_multi_return_type] = STATE(2302), - [sym_result_type] = STATE(2302), - [sym_option_type] = STATE(2302), - [sym_qualified_type] = STATE(3541), - [sym_fixed_array_type] = STATE(2303), - [sym_array_type] = STATE(2303), - [sym_pointer_type] = STATE(2303), - [sym_wrong_pointer_type] = STATE(2303), - [sym_map_type] = STATE(2303), - [sym_channel_type] = STATE(2303), - [sym_shared_type] = STATE(2303), - [sym_thread_type] = STATE(2303), - [sym_atomic_type] = STATE(2303), - [sym_generic_type] = STATE(2303), - [sym_function_type] = STATE(2303), - [sym_identifier] = ACTIONS(1354), - [anon_sym_SLASH_SLASH] = ACTIONS(3), - [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1356), - [anon_sym_LBRACE] = ACTIONS(1358), - [anon_sym_LPAREN] = ACTIONS(1360), - [anon_sym_fn] = ACTIONS(1362), - [anon_sym_PLUS] = ACTIONS(1364), - [anon_sym_DASH] = ACTIONS(1364), - [anon_sym_STAR] = ACTIONS(1366), - [anon_sym_struct] = ACTIONS(1370), - [anon_sym_mut] = ACTIONS(41), - [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(1372), - [anon_sym_go] = ACTIONS(1374), - [anon_sym_spawn] = ACTIONS(1376), - [anon_sym_json_DOTdecode] = ACTIONS(1378), - [anon_sym_LBRACK2] = ACTIONS(1380), - [anon_sym_TILDE] = ACTIONS(1364), - [anon_sym_CARET] = ACTIONS(1364), - [anon_sym_AMP] = ACTIONS(1382), - [anon_sym_LT_DASH] = ACTIONS(1384), - [sym_none] = ACTIONS(1386), - [sym_true] = ACTIONS(1386), - [sym_false] = ACTIONS(1386), - [sym_nil] = ACTIONS(1386), - [anon_sym_if] = ACTIONS(1877), - [anon_sym_DOLLARif] = ACTIONS(1390), - [anon_sym_match] = ACTIONS(1392), - [anon_sym_select] = ACTIONS(1394), - [anon_sym_lock] = ACTIONS(1396), - [anon_sym_rlock] = ACTIONS(1396), - [anon_sym_unsafe] = ACTIONS(1883), - [anon_sym_sql] = ACTIONS(1400), - [sym_int_literal] = ACTIONS(1386), - [sym_float_literal] = ACTIONS(1404), - [sym_rune_literal] = ACTIONS(1404), - [sym_pseudo_compile_time_identifier] = ACTIONS(1406), - [anon_sym_shared] = ACTIONS(83), - [anon_sym_map_LBRACK] = ACTIONS(85), - [anon_sym_chan] = ACTIONS(87), - [anon_sym_thread] = ACTIONS(89), - [anon_sym_atomic] = ACTIONS(91), - [sym___double_quote] = ACTIONS(1408), - [sym___single_quote] = ACTIONS(1410), - [sym___c_double_quote] = ACTIONS(1412), - [sym___c_single_quote] = ACTIONS(1414), - [sym___r_double_quote] = ACTIONS(1416), - [sym___r_single_quote] = ACTIONS(1418), - }, - [875] = { - [sym_line_comment] = STATE(875), - [sym_block_comment] = STATE(875), - [sym__expression] = STATE(1617), - [sym__expression_without_blocks] = STATE(1692), - [sym__expression_with_blocks] = STATE(1692), - [sym_inc_expression] = STATE(1684), - [sym_dec_expression] = STATE(1684), - [sym_or_block_expression] = STATE(1684), - [sym_option_propagation_expression] = STATE(1684), - [sym_result_propagation_expression] = STATE(1684), - [sym_anon_struct_value_expression] = STATE(1677), - [sym_go_expression] = STATE(1684), - [sym_spawn_expression] = STATE(1684), - [sym_parenthesized_expression] = STATE(1684), - [sym_call_expression] = STATE(1684), - [sym_type_initializer] = STATE(1677), - [sym_function_literal] = STATE(1684), - [sym_reference_expression] = STATE(1674), - [sym_type_reference_expression] = STATE(3541), - [sym_unary_expression] = STATE(1684), - [sym_receive_expression] = STATE(1684), - [sym_binary_expression] = STATE(1684), - [sym_as_type_cast_expression] = STATE(1684), - [sym__max_group] = STATE(1684), - [sym_literal] = STATE(1698), - [sym_map_init_expression] = STATE(1677), - [sym_array_creation] = STATE(1684), - [sym_fixed_array_creation] = STATE(1684), - [sym_selector_expression] = STATE(1684), - [sym_index_expression] = STATE(1684), - [sym_slice_expression] = STATE(1684), - [sym_if_expression] = STATE(1677), - [sym_compile_time_if_expression] = STATE(1677), - [sym_is_expression] = STATE(1684), - [sym_in_expression] = STATE(1684), - [sym_enum_fetch] = STATE(1684), - [sym_match_expression] = STATE(1677), - [sym_select_expression] = STATE(1677), - [sym_lock_expression] = STATE(1677), - [sym_unsafe_expression] = STATE(1677), - [sym_sql_expression] = STATE(1677), - [sym_c_string_literal] = STATE(1705), - [sym_raw_string_literal] = STATE(1705), - [sym_interpreted_string_literal] = STATE(1705), - [sym_mutability_modifiers] = STATE(664), - [sym_plain_type] = STATE(4157), - [sym__plain_type_without_special] = STATE(2302), - [sym_anon_struct_type] = STATE(2303), - [sym_multi_return_type] = STATE(2302), - [sym_result_type] = STATE(2302), - [sym_option_type] = STATE(2302), - [sym_qualified_type] = STATE(3541), - [sym_fixed_array_type] = STATE(2303), - [sym_array_type] = STATE(2303), - [sym_pointer_type] = STATE(2303), - [sym_wrong_pointer_type] = STATE(2303), - [sym_map_type] = STATE(2303), - [sym_channel_type] = STATE(2303), - [sym_shared_type] = STATE(2303), - [sym_thread_type] = STATE(2303), - [sym_atomic_type] = STATE(2303), - [sym_generic_type] = STATE(2303), - [sym_function_type] = STATE(2303), - [sym_identifier] = ACTIONS(3416), + [sym__expression] = STATE(1620), + [sym__expression_without_blocks] = STATE(1747), + [sym__expression_with_blocks] = STATE(1747), + [sym_inc_expression] = STATE(1749), + [sym_dec_expression] = STATE(1749), + [sym_or_block_expression] = STATE(1749), + [sym_option_propagation_expression] = STATE(1749), + [sym_result_propagation_expression] = STATE(1749), + [sym_anon_struct_value_expression] = STATE(1746), + [sym_go_expression] = STATE(1749), + [sym_spawn_expression] = STATE(1749), + [sym_parenthesized_expression] = STATE(1749), + [sym_call_expression] = STATE(1749), + [sym_type_initializer] = STATE(1746), + [sym_function_literal] = STATE(1749), + [sym_reference_expression] = STATE(1745), + [sym_type_reference_expression] = STATE(3460), + [sym_unary_expression] = STATE(1749), + [sym_receive_expression] = STATE(1749), + [sym_binary_expression] = STATE(1749), + [sym_as_type_cast_expression] = STATE(1749), + [sym__max_group] = STATE(1749), + [sym_literal] = STATE(1738), + [sym_map_init_expression] = STATE(1746), + [sym_array_creation] = STATE(1749), + [sym_fixed_array_creation] = STATE(1749), + [sym_selector_expression] = STATE(1749), + [sym_index_expression] = STATE(1749), + [sym_slice_expression] = STATE(1749), + [sym_if_expression] = STATE(1746), + [sym_compile_time_if_expression] = STATE(1746), + [sym_is_expression] = STATE(1749), + [sym_in_expression] = STATE(1749), + [sym_enum_fetch] = STATE(1749), + [sym_match_expression] = STATE(1746), + [sym_select_expression] = STATE(1746), + [sym_lock_expression] = STATE(1746), + [sym_unsafe_expression] = STATE(1746), + [sym_sql_expression] = STATE(1746), + [sym_c_string_literal] = STATE(1733), + [sym_raw_string_literal] = STATE(1733), + [sym_interpreted_string_literal] = STATE(1733), + [sym_mutability_modifiers] = STATE(600), + [sym_plain_type] = STATE(4121), + [sym__plain_type_without_special] = STATE(2360), + [sym_anon_struct_type] = STATE(2362), + [sym_multi_return_type] = STATE(2360), + [sym_result_type] = STATE(2360), + [sym_option_type] = STATE(2360), + [sym_qualified_type] = STATE(3460), + [sym_fixed_array_type] = STATE(2362), + [sym_array_type] = STATE(2362), + [sym_pointer_type] = STATE(2362), + [sym_wrong_pointer_type] = STATE(2362), + [sym_map_type] = STATE(2362), + [sym_channel_type] = STATE(2362), + [sym_shared_type] = STATE(2362), + [sym_thread_type] = STATE(2362), + [sym_atomic_type] = STATE(2362), + [sym_generic_type] = STATE(2362), + [sym_function_type] = STATE(2362), + [sym_identifier] = ACTIONS(3422), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), [anon_sym_DOT] = ACTIONS(309), - [anon_sym_LBRACE] = ACTIONS(3418), + [anon_sym_LBRACE] = ACTIONS(3424), [anon_sym_LPAREN] = ACTIONS(315), [anon_sym_fn] = ACTIONS(317), [anon_sym_PLUS] = ACTIONS(319), @@ -123717,645 +123509,873 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym___r_double_quote] = ACTIONS(387), [sym___r_single_quote] = ACTIONS(389), }, + [874] = { + [sym_line_comment] = STATE(874), + [sym_block_comment] = STATE(874), + [sym__expression] = STATE(972), + [sym__expression_without_blocks] = STATE(1086), + [sym__expression_with_blocks] = STATE(1086), + [sym_inc_expression] = STATE(1088), + [sym_dec_expression] = STATE(1088), + [sym_or_block_expression] = STATE(1088), + [sym_option_propagation_expression] = STATE(1088), + [sym_result_propagation_expression] = STATE(1088), + [sym_anon_struct_value_expression] = STATE(1025), + [sym_go_expression] = STATE(1088), + [sym_spawn_expression] = STATE(1088), + [sym_parenthesized_expression] = STATE(1088), + [sym_call_expression] = STATE(1088), + [sym_type_initializer] = STATE(1025), + [sym_function_literal] = STATE(1088), + [sym_reference_expression] = STATE(1024), + [sym_type_reference_expression] = STATE(3460), + [sym_unary_expression] = STATE(1088), + [sym_receive_expression] = STATE(1088), + [sym_binary_expression] = STATE(1088), + [sym_as_type_cast_expression] = STATE(1088), + [sym__max_group] = STATE(1088), + [sym_literal] = STATE(1078), + [sym_map_init_expression] = STATE(1025), + [sym_array_creation] = STATE(1088), + [sym_fixed_array_creation] = STATE(1088), + [sym_selector_expression] = STATE(1088), + [sym_index_expression] = STATE(1088), + [sym_slice_expression] = STATE(1088), + [sym_if_expression] = STATE(1025), + [sym_compile_time_if_expression] = STATE(1025), + [sym_is_expression] = STATE(1088), + [sym_in_expression] = STATE(1088), + [sym_enum_fetch] = STATE(1088), + [sym_match_expression] = STATE(1025), + [sym_select_expression] = STATE(1025), + [sym_lock_expression] = STATE(1025), + [sym_unsafe_expression] = STATE(1025), + [sym_sql_expression] = STATE(1025), + [sym_c_string_literal] = STATE(993), + [sym_raw_string_literal] = STATE(993), + [sym_interpreted_string_literal] = STATE(993), + [sym_mutability_modifiers] = STATE(618), + [sym_plain_type] = STATE(4090), + [sym__plain_type_without_special] = STATE(2360), + [sym_anon_struct_type] = STATE(2362), + [sym_multi_return_type] = STATE(2360), + [sym_result_type] = STATE(2360), + [sym_option_type] = STATE(2360), + [sym_qualified_type] = STATE(3460), + [sym_fixed_array_type] = STATE(2362), + [sym_array_type] = STATE(2362), + [sym_pointer_type] = STATE(2362), + [sym_wrong_pointer_type] = STATE(2362), + [sym_map_type] = STATE(2362), + [sym_channel_type] = STATE(2362), + [sym_shared_type] = STATE(2362), + [sym_thread_type] = STATE(2362), + [sym_atomic_type] = STATE(2362), + [sym_generic_type] = STATE(2362), + [sym_function_type] = STATE(2362), + [sym_identifier] = ACTIONS(493), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(501), + [anon_sym_LBRACE] = ACTIONS(2235), + [anon_sym_LPAREN] = ACTIONS(2237), + [anon_sym_fn] = ACTIONS(507), + [anon_sym_PLUS] = ACTIONS(3366), + [anon_sym_DASH] = ACTIONS(3366), + [anon_sym_STAR] = ACTIONS(3368), + [anon_sym_struct] = ACTIONS(513), + [anon_sym_mut] = ACTIONS(41), + [anon_sym_QMARK] = ACTIONS(47), + [anon_sym_BANG] = ACTIONS(3370), + [anon_sym_go] = ACTIONS(3372), + [anon_sym_spawn] = ACTIONS(3374), + [anon_sym_json_DOTdecode] = ACTIONS(2245), + [anon_sym_LBRACK2] = ACTIONS(2247), + [anon_sym_TILDE] = ACTIONS(3366), + [anon_sym_CARET] = ACTIONS(3366), + [anon_sym_AMP] = ACTIONS(3376), + [anon_sym_LT_DASH] = ACTIONS(3378), + [sym_none] = ACTIONS(531), + [sym_true] = ACTIONS(531), + [sym_false] = ACTIONS(531), + [sym_nil] = ACTIONS(531), + [anon_sym_if] = ACTIONS(533), + [anon_sym_DOLLARif] = ACTIONS(535), + [anon_sym_match] = ACTIONS(537), + [anon_sym_select] = ACTIONS(3380), + [anon_sym_lock] = ACTIONS(3382), + [anon_sym_rlock] = ACTIONS(3382), + [anon_sym_unsafe] = ACTIONS(543), + [anon_sym_sql] = ACTIONS(545), + [sym_int_literal] = ACTIONS(531), + [sym_float_literal] = ACTIONS(2253), + [sym_rune_literal] = ACTIONS(2253), + [sym_pseudo_compile_time_identifier] = ACTIONS(547), + [anon_sym_shared] = ACTIONS(83), + [anon_sym_map_LBRACK] = ACTIONS(85), + [anon_sym_chan] = ACTIONS(87), + [anon_sym_thread] = ACTIONS(89), + [anon_sym_atomic] = ACTIONS(91), + [sym___double_quote] = ACTIONS(2255), + [sym___single_quote] = ACTIONS(2257), + [sym___c_double_quote] = ACTIONS(2259), + [sym___c_single_quote] = ACTIONS(2261), + [sym___r_double_quote] = ACTIONS(2263), + [sym___r_single_quote] = ACTIONS(2265), + }, + [875] = { + [sym_line_comment] = STATE(875), + [sym_block_comment] = STATE(875), + [sym__expression] = STATE(957), + [sym__expression_without_blocks] = STATE(1086), + [sym__expression_with_blocks] = STATE(1086), + [sym_inc_expression] = STATE(1088), + [sym_dec_expression] = STATE(1088), + [sym_or_block_expression] = STATE(1088), + [sym_option_propagation_expression] = STATE(1088), + [sym_result_propagation_expression] = STATE(1088), + [sym_anon_struct_value_expression] = STATE(1025), + [sym_go_expression] = STATE(1088), + [sym_spawn_expression] = STATE(1088), + [sym_parenthesized_expression] = STATE(1088), + [sym_call_expression] = STATE(1088), + [sym_type_initializer] = STATE(1025), + [sym_function_literal] = STATE(1088), + [sym_reference_expression] = STATE(1024), + [sym_type_reference_expression] = STATE(3460), + [sym_unary_expression] = STATE(1088), + [sym_receive_expression] = STATE(1088), + [sym_binary_expression] = STATE(1088), + [sym_as_type_cast_expression] = STATE(1088), + [sym__max_group] = STATE(1088), + [sym_literal] = STATE(1078), + [sym_map_init_expression] = STATE(1025), + [sym_array_creation] = STATE(1088), + [sym_fixed_array_creation] = STATE(1088), + [sym_selector_expression] = STATE(1088), + [sym_index_expression] = STATE(1088), + [sym_slice_expression] = STATE(1088), + [sym_if_expression] = STATE(1025), + [sym_compile_time_if_expression] = STATE(1025), + [sym_is_expression] = STATE(1088), + [sym_in_expression] = STATE(1088), + [sym_enum_fetch] = STATE(1088), + [sym_match_expression] = STATE(1025), + [sym_select_expression] = STATE(1025), + [sym_lock_expression] = STATE(1025), + [sym_unsafe_expression] = STATE(1025), + [sym_sql_expression] = STATE(1025), + [sym_c_string_literal] = STATE(993), + [sym_raw_string_literal] = STATE(993), + [sym_interpreted_string_literal] = STATE(993), + [sym_mutability_modifiers] = STATE(618), + [sym_plain_type] = STATE(4090), + [sym__plain_type_without_special] = STATE(2360), + [sym_anon_struct_type] = STATE(2362), + [sym_multi_return_type] = STATE(2360), + [sym_result_type] = STATE(2360), + [sym_option_type] = STATE(2360), + [sym_qualified_type] = STATE(3460), + [sym_fixed_array_type] = STATE(2362), + [sym_array_type] = STATE(2362), + [sym_pointer_type] = STATE(2362), + [sym_wrong_pointer_type] = STATE(2362), + [sym_map_type] = STATE(2362), + [sym_channel_type] = STATE(2362), + [sym_shared_type] = STATE(2362), + [sym_thread_type] = STATE(2362), + [sym_atomic_type] = STATE(2362), + [sym_generic_type] = STATE(2362), + [sym_function_type] = STATE(2362), + [sym_identifier] = ACTIONS(493), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(501), + [anon_sym_LBRACE] = ACTIONS(2235), + [anon_sym_LPAREN] = ACTIONS(2237), + [anon_sym_fn] = ACTIONS(507), + [anon_sym_PLUS] = ACTIONS(3366), + [anon_sym_DASH] = ACTIONS(3366), + [anon_sym_STAR] = ACTIONS(3368), + [anon_sym_struct] = ACTIONS(513), + [anon_sym_mut] = ACTIONS(41), + [anon_sym_QMARK] = ACTIONS(47), + [anon_sym_BANG] = ACTIONS(3370), + [anon_sym_go] = ACTIONS(3372), + [anon_sym_spawn] = ACTIONS(3374), + [anon_sym_json_DOTdecode] = ACTIONS(2245), + [anon_sym_LBRACK2] = ACTIONS(2247), + [anon_sym_TILDE] = ACTIONS(3366), + [anon_sym_CARET] = ACTIONS(3366), + [anon_sym_AMP] = ACTIONS(3376), + [anon_sym_LT_DASH] = ACTIONS(3378), + [sym_none] = ACTIONS(531), + [sym_true] = ACTIONS(531), + [sym_false] = ACTIONS(531), + [sym_nil] = ACTIONS(531), + [anon_sym_if] = ACTIONS(533), + [anon_sym_DOLLARif] = ACTIONS(535), + [anon_sym_match] = ACTIONS(537), + [anon_sym_select] = ACTIONS(3380), + [anon_sym_lock] = ACTIONS(3382), + [anon_sym_rlock] = ACTIONS(3382), + [anon_sym_unsafe] = ACTIONS(543), + [anon_sym_sql] = ACTIONS(545), + [sym_int_literal] = ACTIONS(531), + [sym_float_literal] = ACTIONS(2253), + [sym_rune_literal] = ACTIONS(2253), + [sym_pseudo_compile_time_identifier] = ACTIONS(547), + [anon_sym_shared] = ACTIONS(83), + [anon_sym_map_LBRACK] = ACTIONS(85), + [anon_sym_chan] = ACTIONS(87), + [anon_sym_thread] = ACTIONS(89), + [anon_sym_atomic] = ACTIONS(91), + [sym___double_quote] = ACTIONS(2255), + [sym___single_quote] = ACTIONS(2257), + [sym___c_double_quote] = ACTIONS(2259), + [sym___c_single_quote] = ACTIONS(2261), + [sym___r_double_quote] = ACTIONS(2263), + [sym___r_single_quote] = ACTIONS(2265), + }, [876] = { [sym_line_comment] = STATE(876), [sym_block_comment] = STATE(876), - [sym__expression] = STATE(1255), - [sym__expression_without_blocks] = STATE(1312), - [sym__expression_with_blocks] = STATE(1312), - [sym_inc_expression] = STATE(1313), - [sym_dec_expression] = STATE(1313), - [sym_or_block_expression] = STATE(1313), - [sym_option_propagation_expression] = STATE(1313), - [sym_result_propagation_expression] = STATE(1313), - [sym_anon_struct_value_expression] = STATE(1314), - [sym_go_expression] = STATE(1313), - [sym_spawn_expression] = STATE(1313), - [sym_parenthesized_expression] = STATE(1313), - [sym_call_expression] = STATE(1313), - [sym_type_initializer] = STATE(1314), - [sym_function_literal] = STATE(1313), - [sym_reference_expression] = STATE(1334), - [sym_type_reference_expression] = STATE(3541), - [sym_unary_expression] = STATE(1313), - [sym_receive_expression] = STATE(1313), - [sym_binary_expression] = STATE(1313), - [sym_as_type_cast_expression] = STATE(1313), - [sym__max_group] = STATE(1313), - [sym_literal] = STATE(1308), - [sym_map_init_expression] = STATE(1314), - [sym_array_creation] = STATE(1313), - [sym_fixed_array_creation] = STATE(1313), - [sym_selector_expression] = STATE(1313), - [sym_index_expression] = STATE(1313), - [sym_slice_expression] = STATE(1313), - [sym_if_expression] = STATE(1314), - [sym_compile_time_if_expression] = STATE(1314), - [sym_is_expression] = STATE(1313), - [sym_in_expression] = STATE(1313), - [sym_enum_fetch] = STATE(1313), - [sym_match_expression] = STATE(1314), - [sym_select_expression] = STATE(1314), - [sym_lock_expression] = STATE(1314), - [sym_unsafe_expression] = STATE(1314), - [sym_sql_expression] = STATE(1314), - [sym_c_string_literal] = STATE(1286), - [sym_raw_string_literal] = STATE(1286), - [sym_interpreted_string_literal] = STATE(1286), - [sym_mutability_modifiers] = STATE(699), - [sym_plain_type] = STATE(4129), - [sym__plain_type_without_special] = STATE(2302), - [sym_anon_struct_type] = STATE(2303), - [sym_multi_return_type] = STATE(2302), - [sym_result_type] = STATE(2302), - [sym_option_type] = STATE(2302), - [sym_qualified_type] = STATE(3541), - [sym_fixed_array_type] = STATE(2303), - [sym_array_type] = STATE(2303), - [sym_pointer_type] = STATE(2303), - [sym_wrong_pointer_type] = STATE(2303), - [sym_map_type] = STATE(2303), - [sym_channel_type] = STATE(2303), - [sym_shared_type] = STATE(2303), - [sym_thread_type] = STATE(2303), - [sym_atomic_type] = STATE(2303), - [sym_generic_type] = STATE(2303), - [sym_function_type] = STATE(2303), - [sym_identifier] = ACTIONS(1354), + [sym__expression] = STATE(973), + [sym__expression_without_blocks] = STATE(1086), + [sym__expression_with_blocks] = STATE(1086), + [sym_inc_expression] = STATE(1088), + [sym_dec_expression] = STATE(1088), + [sym_or_block_expression] = STATE(1088), + [sym_option_propagation_expression] = STATE(1088), + [sym_result_propagation_expression] = STATE(1088), + [sym_anon_struct_value_expression] = STATE(1025), + [sym_go_expression] = STATE(1088), + [sym_spawn_expression] = STATE(1088), + [sym_parenthesized_expression] = STATE(1088), + [sym_call_expression] = STATE(1088), + [sym_type_initializer] = STATE(1025), + [sym_function_literal] = STATE(1088), + [sym_reference_expression] = STATE(1024), + [sym_type_reference_expression] = STATE(3460), + [sym_unary_expression] = STATE(1088), + [sym_receive_expression] = STATE(1088), + [sym_binary_expression] = STATE(1088), + [sym_as_type_cast_expression] = STATE(1088), + [sym__max_group] = STATE(1088), + [sym_literal] = STATE(1078), + [sym_map_init_expression] = STATE(1025), + [sym_array_creation] = STATE(1088), + [sym_fixed_array_creation] = STATE(1088), + [sym_selector_expression] = STATE(1088), + [sym_index_expression] = STATE(1088), + [sym_slice_expression] = STATE(1088), + [sym_if_expression] = STATE(1025), + [sym_compile_time_if_expression] = STATE(1025), + [sym_is_expression] = STATE(1088), + [sym_in_expression] = STATE(1088), + [sym_enum_fetch] = STATE(1088), + [sym_match_expression] = STATE(1025), + [sym_select_expression] = STATE(1025), + [sym_lock_expression] = STATE(1025), + [sym_unsafe_expression] = STATE(1025), + [sym_sql_expression] = STATE(1025), + [sym_c_string_literal] = STATE(993), + [sym_raw_string_literal] = STATE(993), + [sym_interpreted_string_literal] = STATE(993), + [sym_mutability_modifiers] = STATE(618), + [sym_plain_type] = STATE(4090), + [sym__plain_type_without_special] = STATE(2360), + [sym_anon_struct_type] = STATE(2362), + [sym_multi_return_type] = STATE(2360), + [sym_result_type] = STATE(2360), + [sym_option_type] = STATE(2360), + [sym_qualified_type] = STATE(3460), + [sym_fixed_array_type] = STATE(2362), + [sym_array_type] = STATE(2362), + [sym_pointer_type] = STATE(2362), + [sym_wrong_pointer_type] = STATE(2362), + [sym_map_type] = STATE(2362), + [sym_channel_type] = STATE(2362), + [sym_shared_type] = STATE(2362), + [sym_thread_type] = STATE(2362), + [sym_atomic_type] = STATE(2362), + [sym_generic_type] = STATE(2362), + [sym_function_type] = STATE(2362), + [sym_identifier] = ACTIONS(493), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1356), - [anon_sym_LBRACE] = ACTIONS(1358), - [anon_sym_LPAREN] = ACTIONS(1360), - [anon_sym_fn] = ACTIONS(1362), - [anon_sym_PLUS] = ACTIONS(1364), - [anon_sym_DASH] = ACTIONS(1364), - [anon_sym_STAR] = ACTIONS(1366), - [anon_sym_struct] = ACTIONS(1370), + [anon_sym_DOT] = ACTIONS(501), + [anon_sym_LBRACE] = ACTIONS(2235), + [anon_sym_LPAREN] = ACTIONS(2237), + [anon_sym_fn] = ACTIONS(507), + [anon_sym_PLUS] = ACTIONS(3366), + [anon_sym_DASH] = ACTIONS(3366), + [anon_sym_STAR] = ACTIONS(3368), + [anon_sym_struct] = ACTIONS(513), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(1372), - [anon_sym_go] = ACTIONS(1374), - [anon_sym_spawn] = ACTIONS(1376), - [anon_sym_json_DOTdecode] = ACTIONS(1378), - [anon_sym_LBRACK2] = ACTIONS(1380), - [anon_sym_TILDE] = ACTIONS(1364), - [anon_sym_CARET] = ACTIONS(1364), - [anon_sym_AMP] = ACTIONS(1382), - [anon_sym_LT_DASH] = ACTIONS(1384), - [sym_none] = ACTIONS(1386), - [sym_true] = ACTIONS(1386), - [sym_false] = ACTIONS(1386), - [sym_nil] = ACTIONS(1386), - [anon_sym_if] = ACTIONS(1877), - [anon_sym_DOLLARif] = ACTIONS(1390), - [anon_sym_match] = ACTIONS(1392), - [anon_sym_select] = ACTIONS(1394), - [anon_sym_lock] = ACTIONS(1396), - [anon_sym_rlock] = ACTIONS(1396), - [anon_sym_unsafe] = ACTIONS(1883), - [anon_sym_sql] = ACTIONS(1400), - [sym_int_literal] = ACTIONS(1386), - [sym_float_literal] = ACTIONS(1404), - [sym_rune_literal] = ACTIONS(1404), - [sym_pseudo_compile_time_identifier] = ACTIONS(1406), + [anon_sym_BANG] = ACTIONS(3370), + [anon_sym_go] = ACTIONS(3372), + [anon_sym_spawn] = ACTIONS(3374), + [anon_sym_json_DOTdecode] = ACTIONS(2245), + [anon_sym_LBRACK2] = ACTIONS(2247), + [anon_sym_TILDE] = ACTIONS(3366), + [anon_sym_CARET] = ACTIONS(3366), + [anon_sym_AMP] = ACTIONS(3376), + [anon_sym_LT_DASH] = ACTIONS(3378), + [sym_none] = ACTIONS(531), + [sym_true] = ACTIONS(531), + [sym_false] = ACTIONS(531), + [sym_nil] = ACTIONS(531), + [anon_sym_if] = ACTIONS(533), + [anon_sym_DOLLARif] = ACTIONS(535), + [anon_sym_match] = ACTIONS(537), + [anon_sym_select] = ACTIONS(3380), + [anon_sym_lock] = ACTIONS(3382), + [anon_sym_rlock] = ACTIONS(3382), + [anon_sym_unsafe] = ACTIONS(543), + [anon_sym_sql] = ACTIONS(545), + [sym_int_literal] = ACTIONS(531), + [sym_float_literal] = ACTIONS(2253), + [sym_rune_literal] = ACTIONS(2253), + [sym_pseudo_compile_time_identifier] = ACTIONS(547), [anon_sym_shared] = ACTIONS(83), [anon_sym_map_LBRACK] = ACTIONS(85), [anon_sym_chan] = ACTIONS(87), [anon_sym_thread] = ACTIONS(89), [anon_sym_atomic] = ACTIONS(91), - [sym___double_quote] = ACTIONS(1408), - [sym___single_quote] = ACTIONS(1410), - [sym___c_double_quote] = ACTIONS(1412), - [sym___c_single_quote] = ACTIONS(1414), - [sym___r_double_quote] = ACTIONS(1416), - [sym___r_single_quote] = ACTIONS(1418), + [sym___double_quote] = ACTIONS(2255), + [sym___single_quote] = ACTIONS(2257), + [sym___c_double_quote] = ACTIONS(2259), + [sym___c_single_quote] = ACTIONS(2261), + [sym___r_double_quote] = ACTIONS(2263), + [sym___r_single_quote] = ACTIONS(2265), }, [877] = { [sym_line_comment] = STATE(877), [sym_block_comment] = STATE(877), - [sym__expression] = STATE(1271), - [sym__expression_without_blocks] = STATE(1312), - [sym__expression_with_blocks] = STATE(1312), - [sym_inc_expression] = STATE(1313), - [sym_dec_expression] = STATE(1313), - [sym_or_block_expression] = STATE(1313), - [sym_option_propagation_expression] = STATE(1313), - [sym_result_propagation_expression] = STATE(1313), - [sym_anon_struct_value_expression] = STATE(1314), - [sym_go_expression] = STATE(1313), - [sym_spawn_expression] = STATE(1313), - [sym_parenthesized_expression] = STATE(1313), - [sym_call_expression] = STATE(1313), - [sym_type_initializer] = STATE(1314), - [sym_function_literal] = STATE(1313), - [sym_reference_expression] = STATE(1334), - [sym_type_reference_expression] = STATE(3541), - [sym_unary_expression] = STATE(1313), - [sym_receive_expression] = STATE(1313), - [sym_binary_expression] = STATE(1313), - [sym_as_type_cast_expression] = STATE(1313), - [sym__max_group] = STATE(1313), - [sym_literal] = STATE(1308), - [sym_map_init_expression] = STATE(1314), - [sym_array_creation] = STATE(1313), - [sym_fixed_array_creation] = STATE(1313), - [sym_selector_expression] = STATE(1313), - [sym_index_expression] = STATE(1313), - [sym_slice_expression] = STATE(1313), - [sym_if_expression] = STATE(1314), - [sym_compile_time_if_expression] = STATE(1314), - [sym_is_expression] = STATE(1313), - [sym_in_expression] = STATE(1313), - [sym_enum_fetch] = STATE(1313), - [sym_match_expression] = STATE(1314), - [sym_select_expression] = STATE(1314), - [sym_lock_expression] = STATE(1314), - [sym_unsafe_expression] = STATE(1314), - [sym_sql_expression] = STATE(1314), - [sym_c_string_literal] = STATE(1286), - [sym_raw_string_literal] = STATE(1286), - [sym_interpreted_string_literal] = STATE(1286), - [sym_mutability_modifiers] = STATE(699), - [sym_plain_type] = STATE(4192), - [sym__plain_type_without_special] = STATE(2302), - [sym_anon_struct_type] = STATE(2303), - [sym_multi_return_type] = STATE(2302), - [sym_result_type] = STATE(2302), - [sym_option_type] = STATE(2302), - [sym_qualified_type] = STATE(3541), - [sym_fixed_array_type] = STATE(2303), - [sym_array_type] = STATE(2303), - [sym_pointer_type] = STATE(2303), - [sym_wrong_pointer_type] = STATE(2303), - [sym_map_type] = STATE(2303), - [sym_channel_type] = STATE(2303), - [sym_shared_type] = STATE(2303), - [sym_thread_type] = STATE(2303), - [sym_atomic_type] = STATE(2303), - [sym_generic_type] = STATE(2303), - [sym_function_type] = STATE(2303), - [sym_identifier] = ACTIONS(1354), + [sym__expression] = STATE(975), + [sym__expression_without_blocks] = STATE(1086), + [sym__expression_with_blocks] = STATE(1086), + [sym_inc_expression] = STATE(1088), + [sym_dec_expression] = STATE(1088), + [sym_or_block_expression] = STATE(1088), + [sym_option_propagation_expression] = STATE(1088), + [sym_result_propagation_expression] = STATE(1088), + [sym_anon_struct_value_expression] = STATE(1025), + [sym_go_expression] = STATE(1088), + [sym_spawn_expression] = STATE(1088), + [sym_parenthesized_expression] = STATE(1088), + [sym_call_expression] = STATE(1088), + [sym_type_initializer] = STATE(1025), + [sym_function_literal] = STATE(1088), + [sym_reference_expression] = STATE(1024), + [sym_type_reference_expression] = STATE(3460), + [sym_unary_expression] = STATE(1088), + [sym_receive_expression] = STATE(1088), + [sym_binary_expression] = STATE(1088), + [sym_as_type_cast_expression] = STATE(1088), + [sym__max_group] = STATE(1088), + [sym_literal] = STATE(1078), + [sym_map_init_expression] = STATE(1025), + [sym_array_creation] = STATE(1088), + [sym_fixed_array_creation] = STATE(1088), + [sym_selector_expression] = STATE(1088), + [sym_index_expression] = STATE(1088), + [sym_slice_expression] = STATE(1088), + [sym_if_expression] = STATE(1025), + [sym_compile_time_if_expression] = STATE(1025), + [sym_is_expression] = STATE(1088), + [sym_in_expression] = STATE(1088), + [sym_enum_fetch] = STATE(1088), + [sym_match_expression] = STATE(1025), + [sym_select_expression] = STATE(1025), + [sym_lock_expression] = STATE(1025), + [sym_unsafe_expression] = STATE(1025), + [sym_sql_expression] = STATE(1025), + [sym_c_string_literal] = STATE(993), + [sym_raw_string_literal] = STATE(993), + [sym_interpreted_string_literal] = STATE(993), + [sym_mutability_modifiers] = STATE(618), + [sym_plain_type] = STATE(4090), + [sym__plain_type_without_special] = STATE(2360), + [sym_anon_struct_type] = STATE(2362), + [sym_multi_return_type] = STATE(2360), + [sym_result_type] = STATE(2360), + [sym_option_type] = STATE(2360), + [sym_qualified_type] = STATE(3460), + [sym_fixed_array_type] = STATE(2362), + [sym_array_type] = STATE(2362), + [sym_pointer_type] = STATE(2362), + [sym_wrong_pointer_type] = STATE(2362), + [sym_map_type] = STATE(2362), + [sym_channel_type] = STATE(2362), + [sym_shared_type] = STATE(2362), + [sym_thread_type] = STATE(2362), + [sym_atomic_type] = STATE(2362), + [sym_generic_type] = STATE(2362), + [sym_function_type] = STATE(2362), + [sym_identifier] = ACTIONS(493), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1356), - [anon_sym_LBRACE] = ACTIONS(1358), - [anon_sym_LPAREN] = ACTIONS(1360), - [anon_sym_fn] = ACTIONS(1362), - [anon_sym_PLUS] = ACTIONS(1364), - [anon_sym_DASH] = ACTIONS(1364), - [anon_sym_STAR] = ACTIONS(1366), - [anon_sym_struct] = ACTIONS(1370), + [anon_sym_DOT] = ACTIONS(501), + [anon_sym_LBRACE] = ACTIONS(2235), + [anon_sym_LPAREN] = ACTIONS(2237), + [anon_sym_fn] = ACTIONS(507), + [anon_sym_PLUS] = ACTIONS(3366), + [anon_sym_DASH] = ACTIONS(3366), + [anon_sym_STAR] = ACTIONS(3368), + [anon_sym_struct] = ACTIONS(513), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(1372), - [anon_sym_go] = ACTIONS(1374), - [anon_sym_spawn] = ACTIONS(1376), - [anon_sym_json_DOTdecode] = ACTIONS(1378), - [anon_sym_LBRACK2] = ACTIONS(1380), - [anon_sym_TILDE] = ACTIONS(1364), - [anon_sym_CARET] = ACTIONS(1364), - [anon_sym_AMP] = ACTIONS(1382), - [anon_sym_LT_DASH] = ACTIONS(1384), - [sym_none] = ACTIONS(1386), - [sym_true] = ACTIONS(1386), - [sym_false] = ACTIONS(1386), - [sym_nil] = ACTIONS(1386), - [anon_sym_if] = ACTIONS(1877), - [anon_sym_DOLLARif] = ACTIONS(1390), - [anon_sym_match] = ACTIONS(1392), - [anon_sym_select] = ACTIONS(1394), - [anon_sym_lock] = ACTIONS(1396), - [anon_sym_rlock] = ACTIONS(1396), - [anon_sym_unsafe] = ACTIONS(1883), - [anon_sym_sql] = ACTIONS(1400), - [sym_int_literal] = ACTIONS(1386), - [sym_float_literal] = ACTIONS(1404), - [sym_rune_literal] = ACTIONS(1404), - [sym_pseudo_compile_time_identifier] = ACTIONS(1406), + [anon_sym_BANG] = ACTIONS(3370), + [anon_sym_go] = ACTIONS(3372), + [anon_sym_spawn] = ACTIONS(3374), + [anon_sym_json_DOTdecode] = ACTIONS(2245), + [anon_sym_LBRACK2] = ACTIONS(2247), + [anon_sym_TILDE] = ACTIONS(3366), + [anon_sym_CARET] = ACTIONS(3366), + [anon_sym_AMP] = ACTIONS(3376), + [anon_sym_LT_DASH] = ACTIONS(3378), + [sym_none] = ACTIONS(531), + [sym_true] = ACTIONS(531), + [sym_false] = ACTIONS(531), + [sym_nil] = ACTIONS(531), + [anon_sym_if] = ACTIONS(533), + [anon_sym_DOLLARif] = ACTIONS(535), + [anon_sym_match] = ACTIONS(537), + [anon_sym_select] = ACTIONS(3380), + [anon_sym_lock] = ACTIONS(3382), + [anon_sym_rlock] = ACTIONS(3382), + [anon_sym_unsafe] = ACTIONS(543), + [anon_sym_sql] = ACTIONS(545), + [sym_int_literal] = ACTIONS(531), + [sym_float_literal] = ACTIONS(2253), + [sym_rune_literal] = ACTIONS(2253), + [sym_pseudo_compile_time_identifier] = ACTIONS(547), [anon_sym_shared] = ACTIONS(83), [anon_sym_map_LBRACK] = ACTIONS(85), [anon_sym_chan] = ACTIONS(87), [anon_sym_thread] = ACTIONS(89), [anon_sym_atomic] = ACTIONS(91), - [sym___double_quote] = ACTIONS(1408), - [sym___single_quote] = ACTIONS(1410), - [sym___c_double_quote] = ACTIONS(1412), - [sym___c_single_quote] = ACTIONS(1414), - [sym___r_double_quote] = ACTIONS(1416), - [sym___r_single_quote] = ACTIONS(1418), + [sym___double_quote] = ACTIONS(2255), + [sym___single_quote] = ACTIONS(2257), + [sym___c_double_quote] = ACTIONS(2259), + [sym___c_single_quote] = ACTIONS(2261), + [sym___r_double_quote] = ACTIONS(2263), + [sym___r_single_quote] = ACTIONS(2265), }, [878] = { [sym_line_comment] = STATE(878), [sym_block_comment] = STATE(878), - [sym__expression] = STATE(1274), - [sym__expression_without_blocks] = STATE(1312), - [sym__expression_with_blocks] = STATE(1312), - [sym_inc_expression] = STATE(1313), - [sym_dec_expression] = STATE(1313), - [sym_or_block_expression] = STATE(1313), - [sym_option_propagation_expression] = STATE(1313), - [sym_result_propagation_expression] = STATE(1313), - [sym_anon_struct_value_expression] = STATE(1314), - [sym_go_expression] = STATE(1313), - [sym_spawn_expression] = STATE(1313), - [sym_parenthesized_expression] = STATE(1313), - [sym_call_expression] = STATE(1313), - [sym_type_initializer] = STATE(1314), - [sym_function_literal] = STATE(1313), - [sym_reference_expression] = STATE(1334), - [sym_type_reference_expression] = STATE(3541), - [sym_unary_expression] = STATE(1313), - [sym_receive_expression] = STATE(1313), - [sym_binary_expression] = STATE(1313), - [sym_as_type_cast_expression] = STATE(1313), - [sym__max_group] = STATE(1313), - [sym_literal] = STATE(1308), - [sym_map_init_expression] = STATE(1314), - [sym_array_creation] = STATE(1313), - [sym_fixed_array_creation] = STATE(1313), - [sym_selector_expression] = STATE(1313), - [sym_index_expression] = STATE(1313), - [sym_slice_expression] = STATE(1313), - [sym_if_expression] = STATE(1314), - [sym_compile_time_if_expression] = STATE(1314), - [sym_is_expression] = STATE(1313), - [sym_in_expression] = STATE(1313), - [sym_enum_fetch] = STATE(1313), - [sym_match_expression] = STATE(1314), - [sym_select_expression] = STATE(1314), - [sym_lock_expression] = STATE(1314), - [sym_unsafe_expression] = STATE(1314), - [sym_sql_expression] = STATE(1314), - [sym_c_string_literal] = STATE(1286), - [sym_raw_string_literal] = STATE(1286), - [sym_interpreted_string_literal] = STATE(1286), - [sym_mutability_modifiers] = STATE(699), - [sym_plain_type] = STATE(4192), - [sym__plain_type_without_special] = STATE(2302), - [sym_anon_struct_type] = STATE(2303), - [sym_multi_return_type] = STATE(2302), - [sym_result_type] = STATE(2302), - [sym_option_type] = STATE(2302), - [sym_qualified_type] = STATE(3541), - [sym_fixed_array_type] = STATE(2303), - [sym_array_type] = STATE(2303), - [sym_pointer_type] = STATE(2303), - [sym_wrong_pointer_type] = STATE(2303), - [sym_map_type] = STATE(2303), - [sym_channel_type] = STATE(2303), - [sym_shared_type] = STATE(2303), - [sym_thread_type] = STATE(2303), - [sym_atomic_type] = STATE(2303), - [sym_generic_type] = STATE(2303), - [sym_function_type] = STATE(2303), - [sym_identifier] = ACTIONS(1354), + [sym__expression] = STATE(968), + [sym__expression_without_blocks] = STATE(1086), + [sym__expression_with_blocks] = STATE(1086), + [sym_inc_expression] = STATE(1088), + [sym_dec_expression] = STATE(1088), + [sym_or_block_expression] = STATE(1088), + [sym_option_propagation_expression] = STATE(1088), + [sym_result_propagation_expression] = STATE(1088), + [sym_anon_struct_value_expression] = STATE(1025), + [sym_go_expression] = STATE(1088), + [sym_spawn_expression] = STATE(1088), + [sym_parenthesized_expression] = STATE(1088), + [sym_call_expression] = STATE(1088), + [sym_type_initializer] = STATE(1025), + [sym_function_literal] = STATE(1088), + [sym_reference_expression] = STATE(1024), + [sym_type_reference_expression] = STATE(3460), + [sym_unary_expression] = STATE(1088), + [sym_receive_expression] = STATE(1088), + [sym_binary_expression] = STATE(1088), + [sym_as_type_cast_expression] = STATE(1088), + [sym__max_group] = STATE(1088), + [sym_literal] = STATE(1078), + [sym_map_init_expression] = STATE(1025), + [sym_array_creation] = STATE(1088), + [sym_fixed_array_creation] = STATE(1088), + [sym_selector_expression] = STATE(1088), + [sym_index_expression] = STATE(1088), + [sym_slice_expression] = STATE(1088), + [sym_if_expression] = STATE(1025), + [sym_compile_time_if_expression] = STATE(1025), + [sym_is_expression] = STATE(1088), + [sym_in_expression] = STATE(1088), + [sym_enum_fetch] = STATE(1088), + [sym_match_expression] = STATE(1025), + [sym_select_expression] = STATE(1025), + [sym_lock_expression] = STATE(1025), + [sym_unsafe_expression] = STATE(1025), + [sym_sql_expression] = STATE(1025), + [sym_c_string_literal] = STATE(993), + [sym_raw_string_literal] = STATE(993), + [sym_interpreted_string_literal] = STATE(993), + [sym_mutability_modifiers] = STATE(618), + [sym_plain_type] = STATE(4090), + [sym__plain_type_without_special] = STATE(2360), + [sym_anon_struct_type] = STATE(2362), + [sym_multi_return_type] = STATE(2360), + [sym_result_type] = STATE(2360), + [sym_option_type] = STATE(2360), + [sym_qualified_type] = STATE(3460), + [sym_fixed_array_type] = STATE(2362), + [sym_array_type] = STATE(2362), + [sym_pointer_type] = STATE(2362), + [sym_wrong_pointer_type] = STATE(2362), + [sym_map_type] = STATE(2362), + [sym_channel_type] = STATE(2362), + [sym_shared_type] = STATE(2362), + [sym_thread_type] = STATE(2362), + [sym_atomic_type] = STATE(2362), + [sym_generic_type] = STATE(2362), + [sym_function_type] = STATE(2362), + [sym_identifier] = ACTIONS(493), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1356), - [anon_sym_LBRACE] = ACTIONS(1358), - [anon_sym_LPAREN] = ACTIONS(1360), - [anon_sym_fn] = ACTIONS(1362), - [anon_sym_PLUS] = ACTIONS(1364), - [anon_sym_DASH] = ACTIONS(1364), - [anon_sym_STAR] = ACTIONS(1366), - [anon_sym_struct] = ACTIONS(1370), + [anon_sym_DOT] = ACTIONS(501), + [anon_sym_LBRACE] = ACTIONS(2235), + [anon_sym_LPAREN] = ACTIONS(2237), + [anon_sym_fn] = ACTIONS(507), + [anon_sym_PLUS] = ACTIONS(3366), + [anon_sym_DASH] = ACTIONS(3366), + [anon_sym_STAR] = ACTIONS(3368), + [anon_sym_struct] = ACTIONS(513), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(1372), - [anon_sym_go] = ACTIONS(1374), - [anon_sym_spawn] = ACTIONS(1376), - [anon_sym_json_DOTdecode] = ACTIONS(1378), - [anon_sym_LBRACK2] = ACTIONS(1380), - [anon_sym_TILDE] = ACTIONS(1364), - [anon_sym_CARET] = ACTIONS(1364), - [anon_sym_AMP] = ACTIONS(1382), - [anon_sym_LT_DASH] = ACTIONS(1384), - [sym_none] = ACTIONS(1386), - [sym_true] = ACTIONS(1386), - [sym_false] = ACTIONS(1386), - [sym_nil] = ACTIONS(1386), - [anon_sym_if] = ACTIONS(1877), - [anon_sym_DOLLARif] = ACTIONS(1390), - [anon_sym_match] = ACTIONS(1392), - [anon_sym_select] = ACTIONS(1394), - [anon_sym_lock] = ACTIONS(1396), - [anon_sym_rlock] = ACTIONS(1396), - [anon_sym_unsafe] = ACTIONS(1883), - [anon_sym_sql] = ACTIONS(1400), - [sym_int_literal] = ACTIONS(1386), - [sym_float_literal] = ACTIONS(1404), - [sym_rune_literal] = ACTIONS(1404), - [sym_pseudo_compile_time_identifier] = ACTIONS(1406), + [anon_sym_BANG] = ACTIONS(3370), + [anon_sym_go] = ACTIONS(3372), + [anon_sym_spawn] = ACTIONS(3374), + [anon_sym_json_DOTdecode] = ACTIONS(2245), + [anon_sym_LBRACK2] = ACTIONS(2247), + [anon_sym_TILDE] = ACTIONS(3366), + [anon_sym_CARET] = ACTIONS(3366), + [anon_sym_AMP] = ACTIONS(3376), + [anon_sym_LT_DASH] = ACTIONS(3378), + [sym_none] = ACTIONS(531), + [sym_true] = ACTIONS(531), + [sym_false] = ACTIONS(531), + [sym_nil] = ACTIONS(531), + [anon_sym_if] = ACTIONS(533), + [anon_sym_DOLLARif] = ACTIONS(535), + [anon_sym_match] = ACTIONS(537), + [anon_sym_select] = ACTIONS(3380), + [anon_sym_lock] = ACTIONS(3382), + [anon_sym_rlock] = ACTIONS(3382), + [anon_sym_unsafe] = ACTIONS(543), + [anon_sym_sql] = ACTIONS(545), + [sym_int_literal] = ACTIONS(531), + [sym_float_literal] = ACTIONS(2253), + [sym_rune_literal] = ACTIONS(2253), + [sym_pseudo_compile_time_identifier] = ACTIONS(547), [anon_sym_shared] = ACTIONS(83), [anon_sym_map_LBRACK] = ACTIONS(85), [anon_sym_chan] = ACTIONS(87), [anon_sym_thread] = ACTIONS(89), [anon_sym_atomic] = ACTIONS(91), - [sym___double_quote] = ACTIONS(1408), - [sym___single_quote] = ACTIONS(1410), - [sym___c_double_quote] = ACTIONS(1412), - [sym___c_single_quote] = ACTIONS(1414), - [sym___r_double_quote] = ACTIONS(1416), - [sym___r_single_quote] = ACTIONS(1418), + [sym___double_quote] = ACTIONS(2255), + [sym___single_quote] = ACTIONS(2257), + [sym___c_double_quote] = ACTIONS(2259), + [sym___c_single_quote] = ACTIONS(2261), + [sym___r_double_quote] = ACTIONS(2263), + [sym___r_single_quote] = ACTIONS(2265), }, [879] = { [sym_line_comment] = STATE(879), [sym_block_comment] = STATE(879), - [sym__expression] = STATE(1255), - [sym__expression_without_blocks] = STATE(1312), - [sym__expression_with_blocks] = STATE(1312), - [sym_inc_expression] = STATE(1313), - [sym_dec_expression] = STATE(1313), - [sym_or_block_expression] = STATE(1313), - [sym_option_propagation_expression] = STATE(1313), - [sym_result_propagation_expression] = STATE(1313), - [sym_anon_struct_value_expression] = STATE(1314), - [sym_go_expression] = STATE(1313), - [sym_spawn_expression] = STATE(1313), - [sym_parenthesized_expression] = STATE(1313), - [sym_call_expression] = STATE(1313), - [sym_type_initializer] = STATE(1314), - [sym_function_literal] = STATE(1313), - [sym_reference_expression] = STATE(1334), - [sym_type_reference_expression] = STATE(3541), - [sym_unary_expression] = STATE(1313), - [sym_receive_expression] = STATE(1313), - [sym_binary_expression] = STATE(1313), - [sym_as_type_cast_expression] = STATE(1313), - [sym__max_group] = STATE(1313), - [sym_literal] = STATE(1308), - [sym_map_init_expression] = STATE(1314), - [sym_array_creation] = STATE(1313), - [sym_fixed_array_creation] = STATE(1313), - [sym_selector_expression] = STATE(1313), - [sym_index_expression] = STATE(1313), - [sym_slice_expression] = STATE(1313), - [sym_if_expression] = STATE(1314), - [sym_compile_time_if_expression] = STATE(1314), - [sym_is_expression] = STATE(1313), - [sym_in_expression] = STATE(1313), - [sym_enum_fetch] = STATE(1313), - [sym_match_expression] = STATE(1314), - [sym_select_expression] = STATE(1314), - [sym_lock_expression] = STATE(1314), - [sym_unsafe_expression] = STATE(1314), - [sym_sql_expression] = STATE(1314), - [sym_c_string_literal] = STATE(1286), - [sym_raw_string_literal] = STATE(1286), - [sym_interpreted_string_literal] = STATE(1286), - [sym_mutability_modifiers] = STATE(699), - [sym_plain_type] = STATE(4178), - [sym__plain_type_without_special] = STATE(2302), - [sym_anon_struct_type] = STATE(2303), - [sym_multi_return_type] = STATE(2302), - [sym_result_type] = STATE(2302), - [sym_option_type] = STATE(2302), - [sym_qualified_type] = STATE(3541), - [sym_fixed_array_type] = STATE(2303), - [sym_array_type] = STATE(2303), - [sym_pointer_type] = STATE(2303), - [sym_wrong_pointer_type] = STATE(2303), - [sym_map_type] = STATE(2303), - [sym_channel_type] = STATE(2303), - [sym_shared_type] = STATE(2303), - [sym_thread_type] = STATE(2303), - [sym_atomic_type] = STATE(2303), - [sym_generic_type] = STATE(2303), - [sym_function_type] = STATE(2303), - [sym_identifier] = ACTIONS(1354), + [sym__expression] = STATE(969), + [sym__expression_without_blocks] = STATE(1086), + [sym__expression_with_blocks] = STATE(1086), + [sym_inc_expression] = STATE(1088), + [sym_dec_expression] = STATE(1088), + [sym_or_block_expression] = STATE(1088), + [sym_option_propagation_expression] = STATE(1088), + [sym_result_propagation_expression] = STATE(1088), + [sym_anon_struct_value_expression] = STATE(1025), + [sym_go_expression] = STATE(1088), + [sym_spawn_expression] = STATE(1088), + [sym_parenthesized_expression] = STATE(1088), + [sym_call_expression] = STATE(1088), + [sym_type_initializer] = STATE(1025), + [sym_function_literal] = STATE(1088), + [sym_reference_expression] = STATE(1024), + [sym_type_reference_expression] = STATE(3460), + [sym_unary_expression] = STATE(1088), + [sym_receive_expression] = STATE(1088), + [sym_binary_expression] = STATE(1088), + [sym_as_type_cast_expression] = STATE(1088), + [sym__max_group] = STATE(1088), + [sym_literal] = STATE(1078), + [sym_map_init_expression] = STATE(1025), + [sym_array_creation] = STATE(1088), + [sym_fixed_array_creation] = STATE(1088), + [sym_selector_expression] = STATE(1088), + [sym_index_expression] = STATE(1088), + [sym_slice_expression] = STATE(1088), + [sym_if_expression] = STATE(1025), + [sym_compile_time_if_expression] = STATE(1025), + [sym_is_expression] = STATE(1088), + [sym_in_expression] = STATE(1088), + [sym_enum_fetch] = STATE(1088), + [sym_match_expression] = STATE(1025), + [sym_select_expression] = STATE(1025), + [sym_lock_expression] = STATE(1025), + [sym_unsafe_expression] = STATE(1025), + [sym_sql_expression] = STATE(1025), + [sym_c_string_literal] = STATE(993), + [sym_raw_string_literal] = STATE(993), + [sym_interpreted_string_literal] = STATE(993), + [sym_mutability_modifiers] = STATE(618), + [sym_plain_type] = STATE(4090), + [sym__plain_type_without_special] = STATE(2360), + [sym_anon_struct_type] = STATE(2362), + [sym_multi_return_type] = STATE(2360), + [sym_result_type] = STATE(2360), + [sym_option_type] = STATE(2360), + [sym_qualified_type] = STATE(3460), + [sym_fixed_array_type] = STATE(2362), + [sym_array_type] = STATE(2362), + [sym_pointer_type] = STATE(2362), + [sym_wrong_pointer_type] = STATE(2362), + [sym_map_type] = STATE(2362), + [sym_channel_type] = STATE(2362), + [sym_shared_type] = STATE(2362), + [sym_thread_type] = STATE(2362), + [sym_atomic_type] = STATE(2362), + [sym_generic_type] = STATE(2362), + [sym_function_type] = STATE(2362), + [sym_identifier] = ACTIONS(493), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1356), - [anon_sym_LBRACE] = ACTIONS(1358), - [anon_sym_LPAREN] = ACTIONS(1360), - [anon_sym_fn] = ACTIONS(1362), - [anon_sym_PLUS] = ACTIONS(1364), - [anon_sym_DASH] = ACTIONS(1364), - [anon_sym_STAR] = ACTIONS(1366), - [anon_sym_struct] = ACTIONS(1370), + [anon_sym_DOT] = ACTIONS(501), + [anon_sym_LBRACE] = ACTIONS(2235), + [anon_sym_LPAREN] = ACTIONS(2237), + [anon_sym_fn] = ACTIONS(507), + [anon_sym_PLUS] = ACTIONS(3366), + [anon_sym_DASH] = ACTIONS(3366), + [anon_sym_STAR] = ACTIONS(3368), + [anon_sym_struct] = ACTIONS(513), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(1372), - [anon_sym_go] = ACTIONS(1374), - [anon_sym_spawn] = ACTIONS(1376), - [anon_sym_json_DOTdecode] = ACTIONS(1378), - [anon_sym_LBRACK2] = ACTIONS(1380), - [anon_sym_TILDE] = ACTIONS(1364), - [anon_sym_CARET] = ACTIONS(1364), - [anon_sym_AMP] = ACTIONS(1382), - [anon_sym_LT_DASH] = ACTIONS(1384), - [sym_none] = ACTIONS(1386), - [sym_true] = ACTIONS(1386), - [sym_false] = ACTIONS(1386), - [sym_nil] = ACTIONS(1386), - [anon_sym_if] = ACTIONS(1877), - [anon_sym_DOLLARif] = ACTIONS(1390), - [anon_sym_match] = ACTIONS(1392), - [anon_sym_select] = ACTIONS(1394), - [anon_sym_lock] = ACTIONS(1396), - [anon_sym_rlock] = ACTIONS(1396), - [anon_sym_unsafe] = ACTIONS(1883), - [anon_sym_sql] = ACTIONS(1400), - [sym_int_literal] = ACTIONS(1386), - [sym_float_literal] = ACTIONS(1404), - [sym_rune_literal] = ACTIONS(1404), - [sym_pseudo_compile_time_identifier] = ACTIONS(1406), + [anon_sym_BANG] = ACTIONS(3370), + [anon_sym_go] = ACTIONS(3372), + [anon_sym_spawn] = ACTIONS(3374), + [anon_sym_json_DOTdecode] = ACTIONS(2245), + [anon_sym_LBRACK2] = ACTIONS(2247), + [anon_sym_TILDE] = ACTIONS(3366), + [anon_sym_CARET] = ACTIONS(3366), + [anon_sym_AMP] = ACTIONS(3376), + [anon_sym_LT_DASH] = ACTIONS(3378), + [sym_none] = ACTIONS(531), + [sym_true] = ACTIONS(531), + [sym_false] = ACTIONS(531), + [sym_nil] = ACTIONS(531), + [anon_sym_if] = ACTIONS(533), + [anon_sym_DOLLARif] = ACTIONS(535), + [anon_sym_match] = ACTIONS(537), + [anon_sym_select] = ACTIONS(3380), + [anon_sym_lock] = ACTIONS(3382), + [anon_sym_rlock] = ACTIONS(3382), + [anon_sym_unsafe] = ACTIONS(543), + [anon_sym_sql] = ACTIONS(545), + [sym_int_literal] = ACTIONS(531), + [sym_float_literal] = ACTIONS(2253), + [sym_rune_literal] = ACTIONS(2253), + [sym_pseudo_compile_time_identifier] = ACTIONS(547), [anon_sym_shared] = ACTIONS(83), [anon_sym_map_LBRACK] = ACTIONS(85), [anon_sym_chan] = ACTIONS(87), [anon_sym_thread] = ACTIONS(89), [anon_sym_atomic] = ACTIONS(91), - [sym___double_quote] = ACTIONS(1408), - [sym___single_quote] = ACTIONS(1410), - [sym___c_double_quote] = ACTIONS(1412), - [sym___c_single_quote] = ACTIONS(1414), - [sym___r_double_quote] = ACTIONS(1416), - [sym___r_single_quote] = ACTIONS(1418), + [sym___double_quote] = ACTIONS(2255), + [sym___single_quote] = ACTIONS(2257), + [sym___c_double_quote] = ACTIONS(2259), + [sym___c_single_quote] = ACTIONS(2261), + [sym___r_double_quote] = ACTIONS(2263), + [sym___r_single_quote] = ACTIONS(2265), }, [880] = { [sym_line_comment] = STATE(880), [sym_block_comment] = STATE(880), - [sym__expression] = STATE(1255), - [sym__expression_without_blocks] = STATE(1312), - [sym__expression_with_blocks] = STATE(1312), - [sym_inc_expression] = STATE(1313), - [sym_dec_expression] = STATE(1313), - [sym_or_block_expression] = STATE(1313), - [sym_option_propagation_expression] = STATE(1313), - [sym_result_propagation_expression] = STATE(1313), - [sym_anon_struct_value_expression] = STATE(1314), - [sym_go_expression] = STATE(1313), - [sym_spawn_expression] = STATE(1313), - [sym_parenthesized_expression] = STATE(1313), - [sym_call_expression] = STATE(1313), - [sym_type_initializer] = STATE(1314), - [sym_function_literal] = STATE(1313), - [sym_reference_expression] = STATE(1334), - [sym_type_reference_expression] = STATE(3541), - [sym_unary_expression] = STATE(1313), - [sym_receive_expression] = STATE(1313), - [sym_binary_expression] = STATE(1313), - [sym_as_type_cast_expression] = STATE(1313), - [sym__max_group] = STATE(1313), - [sym_literal] = STATE(1308), - [sym_map_init_expression] = STATE(1314), - [sym_array_creation] = STATE(1313), - [sym_fixed_array_creation] = STATE(1313), - [sym_selector_expression] = STATE(1313), - [sym_index_expression] = STATE(1313), - [sym_slice_expression] = STATE(1313), - [sym_if_expression] = STATE(1314), - [sym_compile_time_if_expression] = STATE(1314), - [sym_is_expression] = STATE(1313), - [sym_in_expression] = STATE(1313), - [sym_enum_fetch] = STATE(1313), - [sym_match_expression] = STATE(1314), - [sym_select_expression] = STATE(1314), - [sym_lock_expression] = STATE(1314), - [sym_unsafe_expression] = STATE(1314), - [sym_sql_expression] = STATE(1314), - [sym_c_string_literal] = STATE(1286), - [sym_raw_string_literal] = STATE(1286), - [sym_interpreted_string_literal] = STATE(1286), - [sym_mutability_modifiers] = STATE(699), - [sym_plain_type] = STATE(4238), - [sym__plain_type_without_special] = STATE(2302), - [sym_anon_struct_type] = STATE(2303), - [sym_multi_return_type] = STATE(2302), - [sym_result_type] = STATE(2302), - [sym_option_type] = STATE(2302), - [sym_qualified_type] = STATE(3541), - [sym_fixed_array_type] = STATE(2303), - [sym_array_type] = STATE(2303), - [sym_pointer_type] = STATE(2303), - [sym_wrong_pointer_type] = STATE(2303), - [sym_map_type] = STATE(2303), - [sym_channel_type] = STATE(2303), - [sym_shared_type] = STATE(2303), - [sym_thread_type] = STATE(2303), - [sym_atomic_type] = STATE(2303), - [sym_generic_type] = STATE(2303), - [sym_function_type] = STATE(2303), - [sym_identifier] = ACTIONS(1354), + [sym__expression] = STATE(1618), + [sym__expression_without_blocks] = STATE(1747), + [sym__expression_with_blocks] = STATE(1747), + [sym_inc_expression] = STATE(1749), + [sym_dec_expression] = STATE(1749), + [sym_or_block_expression] = STATE(1749), + [sym_option_propagation_expression] = STATE(1749), + [sym_result_propagation_expression] = STATE(1749), + [sym_anon_struct_value_expression] = STATE(1746), + [sym_go_expression] = STATE(1749), + [sym_spawn_expression] = STATE(1749), + [sym_parenthesized_expression] = STATE(1749), + [sym_call_expression] = STATE(1749), + [sym_type_initializer] = STATE(1746), + [sym_function_literal] = STATE(1749), + [sym_reference_expression] = STATE(1745), + [sym_type_reference_expression] = STATE(3460), + [sym_unary_expression] = STATE(1749), + [sym_receive_expression] = STATE(1749), + [sym_binary_expression] = STATE(1749), + [sym_as_type_cast_expression] = STATE(1749), + [sym__max_group] = STATE(1749), + [sym_literal] = STATE(1738), + [sym_map_init_expression] = STATE(1746), + [sym_array_creation] = STATE(1749), + [sym_fixed_array_creation] = STATE(1749), + [sym_selector_expression] = STATE(1749), + [sym_index_expression] = STATE(1749), + [sym_slice_expression] = STATE(1749), + [sym_if_expression] = STATE(1746), + [sym_compile_time_if_expression] = STATE(1746), + [sym_is_expression] = STATE(1749), + [sym_in_expression] = STATE(1749), + [sym_enum_fetch] = STATE(1749), + [sym_match_expression] = STATE(1746), + [sym_select_expression] = STATE(1746), + [sym_lock_expression] = STATE(1746), + [sym_unsafe_expression] = STATE(1746), + [sym_sql_expression] = STATE(1746), + [sym_c_string_literal] = STATE(1733), + [sym_raw_string_literal] = STATE(1733), + [sym_interpreted_string_literal] = STATE(1733), + [sym_mutability_modifiers] = STATE(600), + [sym_plain_type] = STATE(4121), + [sym__plain_type_without_special] = STATE(2360), + [sym_anon_struct_type] = STATE(2362), + [sym_multi_return_type] = STATE(2360), + [sym_result_type] = STATE(2360), + [sym_option_type] = STATE(2360), + [sym_qualified_type] = STATE(3460), + [sym_fixed_array_type] = STATE(2362), + [sym_array_type] = STATE(2362), + [sym_pointer_type] = STATE(2362), + [sym_wrong_pointer_type] = STATE(2362), + [sym_map_type] = STATE(2362), + [sym_channel_type] = STATE(2362), + [sym_shared_type] = STATE(2362), + [sym_thread_type] = STATE(2362), + [sym_atomic_type] = STATE(2362), + [sym_generic_type] = STATE(2362), + [sym_function_type] = STATE(2362), + [sym_identifier] = ACTIONS(3422), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1356), - [anon_sym_LBRACE] = ACTIONS(1358), - [anon_sym_LPAREN] = ACTIONS(1360), - [anon_sym_fn] = ACTIONS(1362), - [anon_sym_PLUS] = ACTIONS(1364), - [anon_sym_DASH] = ACTIONS(1364), - [anon_sym_STAR] = ACTIONS(1366), - [anon_sym_struct] = ACTIONS(1370), + [anon_sym_DOT] = ACTIONS(309), + [anon_sym_LBRACE] = ACTIONS(3424), + [anon_sym_LPAREN] = ACTIONS(315), + [anon_sym_fn] = ACTIONS(317), + [anon_sym_PLUS] = ACTIONS(319), + [anon_sym_DASH] = ACTIONS(319), + [anon_sym_STAR] = ACTIONS(321), + [anon_sym_struct] = ACTIONS(323), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(1372), - [anon_sym_go] = ACTIONS(1374), - [anon_sym_spawn] = ACTIONS(1376), - [anon_sym_json_DOTdecode] = ACTIONS(1378), - [anon_sym_LBRACK2] = ACTIONS(1380), - [anon_sym_TILDE] = ACTIONS(1364), - [anon_sym_CARET] = ACTIONS(1364), - [anon_sym_AMP] = ACTIONS(1382), - [anon_sym_LT_DASH] = ACTIONS(1384), - [sym_none] = ACTIONS(1386), - [sym_true] = ACTIONS(1386), - [sym_false] = ACTIONS(1386), - [sym_nil] = ACTIONS(1386), - [anon_sym_if] = ACTIONS(1877), - [anon_sym_DOLLARif] = ACTIONS(1390), - [anon_sym_match] = ACTIONS(1392), - [anon_sym_select] = ACTIONS(1394), - [anon_sym_lock] = ACTIONS(1396), - [anon_sym_rlock] = ACTIONS(1396), - [anon_sym_unsafe] = ACTIONS(1883), - [anon_sym_sql] = ACTIONS(1400), - [sym_int_literal] = ACTIONS(1386), - [sym_float_literal] = ACTIONS(1404), - [sym_rune_literal] = ACTIONS(1404), - [sym_pseudo_compile_time_identifier] = ACTIONS(1406), + [anon_sym_BANG] = ACTIONS(325), + [anon_sym_go] = ACTIONS(327), + [anon_sym_spawn] = ACTIONS(329), + [anon_sym_json_DOTdecode] = ACTIONS(331), + [anon_sym_LBRACK2] = ACTIONS(333), + [anon_sym_TILDE] = ACTIONS(319), + [anon_sym_CARET] = ACTIONS(319), + [anon_sym_AMP] = ACTIONS(335), + [anon_sym_LT_DASH] = ACTIONS(337), + [sym_none] = ACTIONS(339), + [sym_true] = ACTIONS(339), + [sym_false] = ACTIONS(339), + [sym_nil] = ACTIONS(339), + [anon_sym_if] = ACTIONS(341), + [anon_sym_DOLLARif] = ACTIONS(343), + [anon_sym_match] = ACTIONS(345), + [anon_sym_select] = ACTIONS(347), + [anon_sym_lock] = ACTIONS(349), + [anon_sym_rlock] = ACTIONS(349), + [anon_sym_unsafe] = ACTIONS(351), + [anon_sym_sql] = ACTIONS(353), + [sym_int_literal] = ACTIONS(339), + [sym_float_literal] = ACTIONS(355), + [sym_rune_literal] = ACTIONS(355), + [sym_pseudo_compile_time_identifier] = ACTIONS(357), [anon_sym_shared] = ACTIONS(83), [anon_sym_map_LBRACK] = ACTIONS(85), [anon_sym_chan] = ACTIONS(87), [anon_sym_thread] = ACTIONS(89), [anon_sym_atomic] = ACTIONS(91), - [sym___double_quote] = ACTIONS(1408), - [sym___single_quote] = ACTIONS(1410), - [sym___c_double_quote] = ACTIONS(1412), - [sym___c_single_quote] = ACTIONS(1414), - [sym___r_double_quote] = ACTIONS(1416), - [sym___r_single_quote] = ACTIONS(1418), + [sym___double_quote] = ACTIONS(379), + [sym___single_quote] = ACTIONS(381), + [sym___c_double_quote] = ACTIONS(383), + [sym___c_single_quote] = ACTIONS(385), + [sym___r_double_quote] = ACTIONS(387), + [sym___r_single_quote] = ACTIONS(389), }, [881] = { [sym_line_comment] = STATE(881), [sym_block_comment] = STATE(881), - [sym__expression] = STATE(1615), - [sym__expression_without_blocks] = STATE(1692), - [sym__expression_with_blocks] = STATE(1692), - [sym_inc_expression] = STATE(1684), - [sym_dec_expression] = STATE(1684), - [sym_or_block_expression] = STATE(1684), - [sym_option_propagation_expression] = STATE(1684), - [sym_result_propagation_expression] = STATE(1684), - [sym_anon_struct_value_expression] = STATE(1677), - [sym_go_expression] = STATE(1684), - [sym_spawn_expression] = STATE(1684), - [sym_parenthesized_expression] = STATE(1684), - [sym_call_expression] = STATE(1684), - [sym_type_initializer] = STATE(1677), - [sym_function_literal] = STATE(1684), - [sym_reference_expression] = STATE(1674), - [sym_type_reference_expression] = STATE(3541), - [sym_unary_expression] = STATE(1684), - [sym_receive_expression] = STATE(1684), - [sym_binary_expression] = STATE(1684), - [sym_as_type_cast_expression] = STATE(1684), - [sym__max_group] = STATE(1684), - [sym_literal] = STATE(1698), - [sym_map_init_expression] = STATE(1677), - [sym_array_creation] = STATE(1684), - [sym_fixed_array_creation] = STATE(1684), - [sym_selector_expression] = STATE(1684), - [sym_index_expression] = STATE(1684), - [sym_slice_expression] = STATE(1684), - [sym_if_expression] = STATE(1677), - [sym_compile_time_if_expression] = STATE(1677), - [sym_is_expression] = STATE(1684), - [sym_in_expression] = STATE(1684), - [sym_enum_fetch] = STATE(1684), - [sym_match_expression] = STATE(1677), - [sym_select_expression] = STATE(1677), - [sym_lock_expression] = STATE(1677), - [sym_unsafe_expression] = STATE(1677), - [sym_sql_expression] = STATE(1677), - [sym_c_string_literal] = STATE(1705), - [sym_raw_string_literal] = STATE(1705), - [sym_interpreted_string_literal] = STATE(1705), - [sym_mutability_modifiers] = STATE(664), - [sym_plain_type] = STATE(4157), - [sym__plain_type_without_special] = STATE(2302), - [sym_anon_struct_type] = STATE(2303), - [sym_multi_return_type] = STATE(2302), - [sym_result_type] = STATE(2302), - [sym_option_type] = STATE(2302), - [sym_qualified_type] = STATE(3541), - [sym_fixed_array_type] = STATE(2303), - [sym_array_type] = STATE(2303), - [sym_pointer_type] = STATE(2303), - [sym_wrong_pointer_type] = STATE(2303), - [sym_map_type] = STATE(2303), - [sym_channel_type] = STATE(2303), - [sym_shared_type] = STATE(2303), - [sym_thread_type] = STATE(2303), - [sym_atomic_type] = STATE(2303), - [sym_generic_type] = STATE(2303), - [sym_function_type] = STATE(2303), - [sym_identifier] = ACTIONS(3416), + [sym__expression] = STATE(1617), + [sym__expression_without_blocks] = STATE(1747), + [sym__expression_with_blocks] = STATE(1747), + [sym_inc_expression] = STATE(1749), + [sym_dec_expression] = STATE(1749), + [sym_or_block_expression] = STATE(1749), + [sym_option_propagation_expression] = STATE(1749), + [sym_result_propagation_expression] = STATE(1749), + [sym_anon_struct_value_expression] = STATE(1746), + [sym_go_expression] = STATE(1749), + [sym_spawn_expression] = STATE(1749), + [sym_parenthesized_expression] = STATE(1749), + [sym_call_expression] = STATE(1749), + [sym_type_initializer] = STATE(1746), + [sym_function_literal] = STATE(1749), + [sym_reference_expression] = STATE(1745), + [sym_type_reference_expression] = STATE(3460), + [sym_unary_expression] = STATE(1749), + [sym_receive_expression] = STATE(1749), + [sym_binary_expression] = STATE(1749), + [sym_as_type_cast_expression] = STATE(1749), + [sym__max_group] = STATE(1749), + [sym_literal] = STATE(1738), + [sym_map_init_expression] = STATE(1746), + [sym_array_creation] = STATE(1749), + [sym_fixed_array_creation] = STATE(1749), + [sym_selector_expression] = STATE(1749), + [sym_index_expression] = STATE(1749), + [sym_slice_expression] = STATE(1749), + [sym_if_expression] = STATE(1746), + [sym_compile_time_if_expression] = STATE(1746), + [sym_is_expression] = STATE(1749), + [sym_in_expression] = STATE(1749), + [sym_enum_fetch] = STATE(1749), + [sym_match_expression] = STATE(1746), + [sym_select_expression] = STATE(1746), + [sym_lock_expression] = STATE(1746), + [sym_unsafe_expression] = STATE(1746), + [sym_sql_expression] = STATE(1746), + [sym_c_string_literal] = STATE(1733), + [sym_raw_string_literal] = STATE(1733), + [sym_interpreted_string_literal] = STATE(1733), + [sym_mutability_modifiers] = STATE(600), + [sym_plain_type] = STATE(4121), + [sym__plain_type_without_special] = STATE(2360), + [sym_anon_struct_type] = STATE(2362), + [sym_multi_return_type] = STATE(2360), + [sym_result_type] = STATE(2360), + [sym_option_type] = STATE(2360), + [sym_qualified_type] = STATE(3460), + [sym_fixed_array_type] = STATE(2362), + [sym_array_type] = STATE(2362), + [sym_pointer_type] = STATE(2362), + [sym_wrong_pointer_type] = STATE(2362), + [sym_map_type] = STATE(2362), + [sym_channel_type] = STATE(2362), + [sym_shared_type] = STATE(2362), + [sym_thread_type] = STATE(2362), + [sym_atomic_type] = STATE(2362), + [sym_generic_type] = STATE(2362), + [sym_function_type] = STATE(2362), + [sym_identifier] = ACTIONS(3422), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), [anon_sym_DOT] = ACTIONS(309), - [anon_sym_LBRACE] = ACTIONS(3418), + [anon_sym_LBRACE] = ACTIONS(3424), [anon_sym_LPAREN] = ACTIONS(315), [anon_sym_fn] = ACTIONS(317), [anon_sym_PLUS] = ACTIONS(319), @@ -124404,414 +124424,186 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [882] = { [sym_line_comment] = STATE(882), [sym_block_comment] = STATE(882), - [sym__expression] = STATE(1255), - [sym__expression_without_blocks] = STATE(1312), - [sym__expression_with_blocks] = STATE(1312), - [sym_inc_expression] = STATE(1313), - [sym_dec_expression] = STATE(1313), - [sym_or_block_expression] = STATE(1313), - [sym_option_propagation_expression] = STATE(1313), - [sym_result_propagation_expression] = STATE(1313), - [sym_anon_struct_value_expression] = STATE(1314), - [sym_go_expression] = STATE(1313), - [sym_spawn_expression] = STATE(1313), - [sym_parenthesized_expression] = STATE(1313), - [sym_call_expression] = STATE(1313), - [sym_type_initializer] = STATE(1314), - [sym_function_literal] = STATE(1313), - [sym_reference_expression] = STATE(1334), - [sym_type_reference_expression] = STATE(3541), - [sym_unary_expression] = STATE(1313), - [sym_receive_expression] = STATE(1313), - [sym_binary_expression] = STATE(1313), - [sym_as_type_cast_expression] = STATE(1313), - [sym__max_group] = STATE(1313), - [sym_literal] = STATE(1308), - [sym_map_init_expression] = STATE(1314), - [sym_array_creation] = STATE(1313), - [sym_fixed_array_creation] = STATE(1313), - [sym_selector_expression] = STATE(1313), - [sym_index_expression] = STATE(1313), - [sym_slice_expression] = STATE(1313), - [sym_if_expression] = STATE(1314), - [sym_compile_time_if_expression] = STATE(1314), - [sym_is_expression] = STATE(1313), - [sym_in_expression] = STATE(1313), - [sym_enum_fetch] = STATE(1313), - [sym_match_expression] = STATE(1314), - [sym_select_expression] = STATE(1314), - [sym_lock_expression] = STATE(1314), - [sym_unsafe_expression] = STATE(1314), - [sym_sql_expression] = STATE(1314), - [sym_c_string_literal] = STATE(1286), - [sym_raw_string_literal] = STATE(1286), - [sym_interpreted_string_literal] = STATE(1286), - [sym_mutability_modifiers] = STATE(699), - [sym_plain_type] = STATE(4192), - [sym__plain_type_without_special] = STATE(2302), - [sym_anon_struct_type] = STATE(2303), - [sym_multi_return_type] = STATE(2302), - [sym_result_type] = STATE(2302), - [sym_option_type] = STATE(2302), - [sym_qualified_type] = STATE(3541), - [sym_fixed_array_type] = STATE(2303), - [sym_array_type] = STATE(2303), - [sym_pointer_type] = STATE(2303), - [sym_wrong_pointer_type] = STATE(2303), - [sym_map_type] = STATE(2303), - [sym_channel_type] = STATE(2303), - [sym_shared_type] = STATE(2303), - [sym_thread_type] = STATE(2303), - [sym_atomic_type] = STATE(2303), - [sym_generic_type] = STATE(2303), - [sym_function_type] = STATE(2303), - [sym_identifier] = ACTIONS(1354), + [sym__expression] = STATE(2712), + [sym__expression_without_blocks] = STATE(2347), + [sym__expression_with_blocks] = STATE(2347), + [sym_inc_expression] = STATE(2379), + [sym_dec_expression] = STATE(2379), + [sym_or_block_expression] = STATE(2379), + [sym_option_propagation_expression] = STATE(2379), + [sym_result_propagation_expression] = STATE(2379), + [sym_anon_struct_value_expression] = STATE(2378), + [sym_go_expression] = STATE(2379), + [sym_spawn_expression] = STATE(2379), + [sym_parenthesized_expression] = STATE(2379), + [sym_call_expression] = STATE(2379), + [sym_type_initializer] = STATE(2378), + [sym_function_literal] = STATE(2379), + [sym_reference_expression] = STATE(2377), + [sym_type_reference_expression] = STATE(3460), + [sym_unary_expression] = STATE(2379), + [sym_receive_expression] = STATE(2379), + [sym_binary_expression] = STATE(2379), + [sym_as_type_cast_expression] = STATE(2379), + [sym__max_group] = STATE(2379), + [sym_literal] = STATE(2392), + [sym_map_init_expression] = STATE(2378), + [sym_array_creation] = STATE(2379), + [sym_fixed_array_creation] = STATE(2379), + [sym_selector_expression] = STATE(2379), + [sym_index_expression] = STATE(2379), + [sym_slice_expression] = STATE(2379), + [sym_if_expression] = STATE(2378), + [sym_compile_time_if_expression] = STATE(2378), + [sym_is_expression] = STATE(2379), + [sym_in_expression] = STATE(2379), + [sym_enum_fetch] = STATE(2379), + [sym_match_expression] = STATE(2378), + [sym_select_expression] = STATE(2378), + [sym_lock_expression] = STATE(2378), + [sym_unsafe_expression] = STATE(2378), + [sym_sql_expression] = STATE(2378), + [sym_c_string_literal] = STATE(2401), + [sym_raw_string_literal] = STATE(2401), + [sym_interpreted_string_literal] = STATE(2401), + [sym_mutability_modifiers] = STATE(939), + [sym_plain_type] = STATE(4160), + [sym__plain_type_without_special] = STATE(2360), + [sym_anon_struct_type] = STATE(2362), + [sym_multi_return_type] = STATE(2360), + [sym_result_type] = STATE(2360), + [sym_option_type] = STATE(2360), + [sym_qualified_type] = STATE(3460), + [sym_fixed_array_type] = STATE(2362), + [sym_array_type] = STATE(2362), + [sym_pointer_type] = STATE(2362), + [sym_wrong_pointer_type] = STATE(2362), + [sym_map_type] = STATE(2362), + [sym_channel_type] = STATE(2362), + [sym_shared_type] = STATE(2362), + [sym_thread_type] = STATE(2362), + [sym_atomic_type] = STATE(2362), + [sym_generic_type] = STATE(2362), + [sym_function_type] = STATE(2362), + [sym_identifier] = ACTIONS(1815), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1356), - [anon_sym_LBRACE] = ACTIONS(1358), - [anon_sym_LPAREN] = ACTIONS(1360), - [anon_sym_fn] = ACTIONS(1362), - [anon_sym_PLUS] = ACTIONS(1364), - [anon_sym_DASH] = ACTIONS(1364), - [anon_sym_STAR] = ACTIONS(1366), - [anon_sym_struct] = ACTIONS(1370), + [anon_sym_DOT] = ACTIONS(1430), + [anon_sym_LBRACE] = ACTIONS(1432), + [anon_sym_LPAREN] = ACTIONS(1434), + [anon_sym_fn] = ACTIONS(1436), + [anon_sym_PLUS] = ACTIONS(3090), + [anon_sym_DASH] = ACTIONS(3090), + [anon_sym_STAR] = ACTIONS(3092), + [anon_sym_struct] = ACTIONS(1442), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(1372), - [anon_sym_go] = ACTIONS(1374), - [anon_sym_spawn] = ACTIONS(1376), - [anon_sym_json_DOTdecode] = ACTIONS(1378), - [anon_sym_LBRACK2] = ACTIONS(1380), - [anon_sym_TILDE] = ACTIONS(1364), - [anon_sym_CARET] = ACTIONS(1364), - [anon_sym_AMP] = ACTIONS(1382), - [anon_sym_LT_DASH] = ACTIONS(1384), - [sym_none] = ACTIONS(1386), - [sym_true] = ACTIONS(1386), - [sym_false] = ACTIONS(1386), - [sym_nil] = ACTIONS(1386), - [anon_sym_if] = ACTIONS(1877), - [anon_sym_DOLLARif] = ACTIONS(1390), - [anon_sym_match] = ACTIONS(1392), - [anon_sym_select] = ACTIONS(1394), - [anon_sym_lock] = ACTIONS(1396), - [anon_sym_rlock] = ACTIONS(1396), - [anon_sym_unsafe] = ACTIONS(1883), - [anon_sym_sql] = ACTIONS(1400), - [sym_int_literal] = ACTIONS(1386), - [sym_float_literal] = ACTIONS(1404), - [sym_rune_literal] = ACTIONS(1404), - [sym_pseudo_compile_time_identifier] = ACTIONS(1406), + [anon_sym_BANG] = ACTIONS(3094), + [anon_sym_go] = ACTIONS(3096), + [anon_sym_spawn] = ACTIONS(3098), + [anon_sym_json_DOTdecode] = ACTIONS(1450), + [anon_sym_LBRACK2] = ACTIONS(1827), + [anon_sym_TILDE] = ACTIONS(3090), + [anon_sym_CARET] = ACTIONS(3090), + [anon_sym_AMP] = ACTIONS(3100), + [anon_sym_LT_DASH] = ACTIONS(3102), + [sym_none] = ACTIONS(1458), + [sym_true] = ACTIONS(1458), + [sym_false] = ACTIONS(1458), + [sym_nil] = ACTIONS(1458), + [anon_sym_if] = ACTIONS(1833), + [anon_sym_DOLLARif] = ACTIONS(1462), + [anon_sym_match] = ACTIONS(1464), + [anon_sym_select] = ACTIONS(3104), + [anon_sym_lock] = ACTIONS(3106), + [anon_sym_rlock] = ACTIONS(3106), + [anon_sym_unsafe] = ACTIONS(1839), + [anon_sym_sql] = ACTIONS(1472), + [sym_int_literal] = ACTIONS(1458), + [sym_float_literal] = ACTIONS(1474), + [sym_rune_literal] = ACTIONS(1474), + [sym_pseudo_compile_time_identifier] = ACTIONS(1476), [anon_sym_shared] = ACTIONS(83), [anon_sym_map_LBRACK] = ACTIONS(85), [anon_sym_chan] = ACTIONS(87), [anon_sym_thread] = ACTIONS(89), [anon_sym_atomic] = ACTIONS(91), - [sym___double_quote] = ACTIONS(1408), - [sym___single_quote] = ACTIONS(1410), - [sym___c_double_quote] = ACTIONS(1412), - [sym___c_single_quote] = ACTIONS(1414), - [sym___r_double_quote] = ACTIONS(1416), - [sym___r_single_quote] = ACTIONS(1418), + [sym___double_quote] = ACTIONS(1480), + [sym___single_quote] = ACTIONS(1482), + [sym___c_double_quote] = ACTIONS(1484), + [sym___c_single_quote] = ACTIONS(1486), + [sym___r_double_quote] = ACTIONS(1488), + [sym___r_single_quote] = ACTIONS(1490), }, [883] = { [sym_line_comment] = STATE(883), [sym_block_comment] = STATE(883), - [sym__expression] = STATE(975), - [sym__expression_without_blocks] = STATE(1017), - [sym__expression_with_blocks] = STATE(1017), - [sym_inc_expression] = STATE(1018), - [sym_dec_expression] = STATE(1018), - [sym_or_block_expression] = STATE(1018), - [sym_option_propagation_expression] = STATE(1018), - [sym_result_propagation_expression] = STATE(1018), - [sym_anon_struct_value_expression] = STATE(993), - [sym_go_expression] = STATE(1018), - [sym_spawn_expression] = STATE(1018), - [sym_parenthesized_expression] = STATE(1018), - [sym_call_expression] = STATE(1018), - [sym_type_initializer] = STATE(993), - [sym_function_literal] = STATE(1018), - [sym_reference_expression] = STATE(1046), - [sym_type_reference_expression] = STATE(3541), - [sym_unary_expression] = STATE(1018), - [sym_receive_expression] = STATE(1018), - [sym_binary_expression] = STATE(1018), - [sym_as_type_cast_expression] = STATE(1018), - [sym__max_group] = STATE(1018), - [sym_literal] = STATE(1014), - [sym_map_init_expression] = STATE(993), - [sym_array_creation] = STATE(1018), - [sym_fixed_array_creation] = STATE(1018), - [sym_selector_expression] = STATE(1018), - [sym_index_expression] = STATE(1018), - [sym_slice_expression] = STATE(1018), - [sym_if_expression] = STATE(993), - [sym_compile_time_if_expression] = STATE(993), - [sym_is_expression] = STATE(1018), - [sym_in_expression] = STATE(1018), - [sym_enum_fetch] = STATE(1018), - [sym_match_expression] = STATE(993), - [sym_select_expression] = STATE(993), - [sym_lock_expression] = STATE(993), - [sym_unsafe_expression] = STATE(993), - [sym_sql_expression] = STATE(993), - [sym_c_string_literal] = STATE(1006), - [sym_raw_string_literal] = STATE(1006), - [sym_interpreted_string_literal] = STATE(1006), - [sym_mutability_modifiers] = STATE(691), - [sym_plain_type] = STATE(4296), - [sym__plain_type_without_special] = STATE(2302), - [sym_anon_struct_type] = STATE(2303), - [sym_multi_return_type] = STATE(2302), - [sym_result_type] = STATE(2302), - [sym_option_type] = STATE(2302), - [sym_qualified_type] = STATE(3541), - [sym_fixed_array_type] = STATE(2303), - [sym_array_type] = STATE(2303), - [sym_pointer_type] = STATE(2303), - [sym_wrong_pointer_type] = STATE(2303), - [sym_map_type] = STATE(2303), - [sym_channel_type] = STATE(2303), - [sym_shared_type] = STATE(2303), - [sym_thread_type] = STATE(2303), - [sym_atomic_type] = STATE(2303), - [sym_generic_type] = STATE(2303), - [sym_function_type] = STATE(2303), - [sym_identifier] = ACTIONS(493), - [anon_sym_SLASH_SLASH] = ACTIONS(3), - [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(501), - [anon_sym_LBRACE] = ACTIONS(2319), - [anon_sym_LPAREN] = ACTIONS(2321), - [anon_sym_fn] = ACTIONS(507), - [anon_sym_PLUS] = ACTIONS(3360), - [anon_sym_DASH] = ACTIONS(3360), - [anon_sym_STAR] = ACTIONS(3362), - [anon_sym_struct] = ACTIONS(513), - [anon_sym_mut] = ACTIONS(41), - [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(3364), - [anon_sym_go] = ACTIONS(3366), - [anon_sym_spawn] = ACTIONS(3368), - [anon_sym_json_DOTdecode] = ACTIONS(2329), - [anon_sym_LBRACK2] = ACTIONS(2331), - [anon_sym_TILDE] = ACTIONS(3360), - [anon_sym_CARET] = ACTIONS(3360), - [anon_sym_AMP] = ACTIONS(3370), - [anon_sym_LT_DASH] = ACTIONS(3372), - [sym_none] = ACTIONS(531), - [sym_true] = ACTIONS(531), - [sym_false] = ACTIONS(531), - [sym_nil] = ACTIONS(531), - [anon_sym_if] = ACTIONS(533), - [anon_sym_DOLLARif] = ACTIONS(535), - [anon_sym_match] = ACTIONS(537), - [anon_sym_select] = ACTIONS(3374), - [anon_sym_lock] = ACTIONS(3376), - [anon_sym_rlock] = ACTIONS(3376), - [anon_sym_unsafe] = ACTIONS(543), - [anon_sym_sql] = ACTIONS(545), - [sym_int_literal] = ACTIONS(531), - [sym_float_literal] = ACTIONS(2337), - [sym_rune_literal] = ACTIONS(2337), - [sym_pseudo_compile_time_identifier] = ACTIONS(547), - [anon_sym_shared] = ACTIONS(83), - [anon_sym_map_LBRACK] = ACTIONS(85), - [anon_sym_chan] = ACTIONS(87), - [anon_sym_thread] = ACTIONS(89), - [anon_sym_atomic] = ACTIONS(91), - [sym___double_quote] = ACTIONS(2339), - [sym___single_quote] = ACTIONS(2341), - [sym___c_double_quote] = ACTIONS(2343), - [sym___c_single_quote] = ACTIONS(2345), - [sym___r_double_quote] = ACTIONS(2347), - [sym___r_single_quote] = ACTIONS(2349), - }, - [884] = { - [sym_line_comment] = STATE(884), - [sym_block_comment] = STATE(884), - [sym__expression] = STATE(2814), - [sym__expression_without_blocks] = STATE(2906), - [sym__expression_with_blocks] = STATE(2300), - [sym_inc_expression] = STATE(2307), - [sym_dec_expression] = STATE(2307), - [sym_or_block_expression] = STATE(2307), - [sym_option_propagation_expression] = STATE(2307), - [sym_result_propagation_expression] = STATE(2307), - [sym_anon_struct_value_expression] = STATE(2380), - [sym_go_expression] = STATE(2307), - [sym_spawn_expression] = STATE(2307), - [sym_parenthesized_expression] = STATE(2307), - [sym_call_expression] = STATE(2307), - [sym_type_initializer] = STATE(2380), - [sym_function_literal] = STATE(2307), - [sym_reference_expression] = STATE(2311), - [sym_type_reference_expression] = STATE(3541), - [sym_unary_expression] = STATE(2307), - [sym_receive_expression] = STATE(2307), - [sym_binary_expression] = STATE(2307), - [sym_as_type_cast_expression] = STATE(2307), - [sym__max_group] = STATE(2307), - [sym_literal] = STATE(2292), - [sym_map_init_expression] = STATE(2380), - [sym_array_creation] = STATE(2307), - [sym_fixed_array_creation] = STATE(2307), - [sym_selector_expression] = STATE(2307), - [sym_index_expression] = STATE(2307), - [sym_slice_expression] = STATE(2307), - [sym_if_expression] = STATE(2380), - [sym_compile_time_if_expression] = STATE(2380), - [sym_is_expression] = STATE(2307), - [sym_in_expression] = STATE(2307), - [sym_enum_fetch] = STATE(2307), - [sym_match_expression] = STATE(2380), - [sym_select_expression] = STATE(2380), - [sym_lock_expression] = STATE(2380), - [sym_unsafe_expression] = STATE(2380), - [sym_sql_expression] = STATE(2380), - [sym_c_string_literal] = STATE(2308), - [sym_raw_string_literal] = STATE(2308), - [sym_interpreted_string_literal] = STATE(2308), - [sym_mutability_modifiers] = STATE(939), - [sym_plain_type] = STATE(4297), - [sym__plain_type_without_special] = STATE(2302), - [sym_anon_struct_type] = STATE(2303), - [sym_multi_return_type] = STATE(2302), - [sym_result_type] = STATE(2302), - [sym_option_type] = STATE(2302), - [sym_qualified_type] = STATE(3541), - [sym_fixed_array_type] = STATE(2303), - [sym_array_type] = STATE(2303), - [sym_pointer_type] = STATE(2303), - [sym_wrong_pointer_type] = STATE(2303), - [sym_map_type] = STATE(2303), - [sym_channel_type] = STATE(2303), - [sym_shared_type] = STATE(2303), - [sym_thread_type] = STATE(2303), - [sym_atomic_type] = STATE(2303), - [sym_generic_type] = STATE(2303), - [sym_function_type] = STATE(2303), - [sym_identifier] = ACTIONS(2189), - [anon_sym_SLASH_SLASH] = ACTIONS(3), - [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1428), - [anon_sym_LBRACE] = ACTIONS(1430), - [anon_sym_LPAREN] = ACTIONS(1432), - [anon_sym_fn] = ACTIONS(1434), - [anon_sym_PLUS] = ACTIONS(2491), - [anon_sym_DASH] = ACTIONS(2491), - [anon_sym_STAR] = ACTIONS(3354), - [anon_sym_struct] = ACTIONS(1440), - [anon_sym_mut] = ACTIONS(41), - [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(3356), - [anon_sym_go] = ACTIONS(2497), - [anon_sym_spawn] = ACTIONS(2499), - [anon_sym_json_DOTdecode] = ACTIONS(1448), - [anon_sym_LBRACK2] = ACTIONS(1450), - [anon_sym_TILDE] = ACTIONS(2491), - [anon_sym_CARET] = ACTIONS(2491), - [anon_sym_AMP] = ACTIONS(3358), - [anon_sym_LT_DASH] = ACTIONS(2503), - [sym_none] = ACTIONS(1456), - [sym_true] = ACTIONS(1456), - [sym_false] = ACTIONS(1456), - [sym_nil] = ACTIONS(1456), - [anon_sym_if] = ACTIONS(1827), - [anon_sym_DOLLARif] = ACTIONS(1460), - [anon_sym_match] = ACTIONS(1462), - [anon_sym_select] = ACTIONS(1464), - [anon_sym_lock] = ACTIONS(1466), - [anon_sym_rlock] = ACTIONS(1466), - [anon_sym_unsafe] = ACTIONS(1833), - [anon_sym_sql] = ACTIONS(1470), - [sym_int_literal] = ACTIONS(1456), - [sym_float_literal] = ACTIONS(1472), - [sym_rune_literal] = ACTIONS(1472), - [sym_pseudo_compile_time_identifier] = ACTIONS(1474), - [anon_sym_shared] = ACTIONS(83), - [anon_sym_map_LBRACK] = ACTIONS(85), - [anon_sym_chan] = ACTIONS(87), - [anon_sym_thread] = ACTIONS(89), - [anon_sym_atomic] = ACTIONS(91), - [sym___double_quote] = ACTIONS(1478), - [sym___single_quote] = ACTIONS(1480), - [sym___c_double_quote] = ACTIONS(1482), - [sym___c_single_quote] = ACTIONS(1484), - [sym___r_double_quote] = ACTIONS(1486), - [sym___r_single_quote] = ACTIONS(1488), - }, - [885] = { - [sym_line_comment] = STATE(885), - [sym_block_comment] = STATE(885), - [sym__expression] = STATE(1614), - [sym__expression_without_blocks] = STATE(1692), - [sym__expression_with_blocks] = STATE(1692), - [sym_inc_expression] = STATE(1684), - [sym_dec_expression] = STATE(1684), - [sym_or_block_expression] = STATE(1684), - [sym_option_propagation_expression] = STATE(1684), - [sym_result_propagation_expression] = STATE(1684), - [sym_anon_struct_value_expression] = STATE(1677), - [sym_go_expression] = STATE(1684), - [sym_spawn_expression] = STATE(1684), - [sym_parenthesized_expression] = STATE(1684), - [sym_call_expression] = STATE(1684), - [sym_type_initializer] = STATE(1677), - [sym_function_literal] = STATE(1684), - [sym_reference_expression] = STATE(1674), - [sym_type_reference_expression] = STATE(3541), - [sym_unary_expression] = STATE(1684), - [sym_receive_expression] = STATE(1684), - [sym_binary_expression] = STATE(1684), - [sym_as_type_cast_expression] = STATE(1684), - [sym__max_group] = STATE(1684), - [sym_literal] = STATE(1698), - [sym_map_init_expression] = STATE(1677), - [sym_array_creation] = STATE(1684), - [sym_fixed_array_creation] = STATE(1684), - [sym_selector_expression] = STATE(1684), - [sym_index_expression] = STATE(1684), - [sym_slice_expression] = STATE(1684), - [sym_if_expression] = STATE(1677), - [sym_compile_time_if_expression] = STATE(1677), - [sym_is_expression] = STATE(1684), - [sym_in_expression] = STATE(1684), - [sym_enum_fetch] = STATE(1684), - [sym_match_expression] = STATE(1677), - [sym_select_expression] = STATE(1677), - [sym_lock_expression] = STATE(1677), - [sym_unsafe_expression] = STATE(1677), - [sym_sql_expression] = STATE(1677), - [sym_c_string_literal] = STATE(1705), - [sym_raw_string_literal] = STATE(1705), - [sym_interpreted_string_literal] = STATE(1705), - [sym_mutability_modifiers] = STATE(664), - [sym_plain_type] = STATE(4157), - [sym__plain_type_without_special] = STATE(2302), - [sym_anon_struct_type] = STATE(2303), - [sym_multi_return_type] = STATE(2302), - [sym_result_type] = STATE(2302), - [sym_option_type] = STATE(2302), - [sym_qualified_type] = STATE(3541), - [sym_fixed_array_type] = STATE(2303), - [sym_array_type] = STATE(2303), - [sym_pointer_type] = STATE(2303), - [sym_wrong_pointer_type] = STATE(2303), - [sym_map_type] = STATE(2303), - [sym_channel_type] = STATE(2303), - [sym_shared_type] = STATE(2303), - [sym_thread_type] = STATE(2303), - [sym_atomic_type] = STATE(2303), - [sym_generic_type] = STATE(2303), - [sym_function_type] = STATE(2303), - [sym_identifier] = ACTIONS(3416), + [sym__expression] = STATE(1611), + [sym__expression_without_blocks] = STATE(1747), + [sym__expression_with_blocks] = STATE(1747), + [sym_inc_expression] = STATE(1749), + [sym_dec_expression] = STATE(1749), + [sym_or_block_expression] = STATE(1749), + [sym_option_propagation_expression] = STATE(1749), + [sym_result_propagation_expression] = STATE(1749), + [sym_anon_struct_value_expression] = STATE(1746), + [sym_go_expression] = STATE(1749), + [sym_spawn_expression] = STATE(1749), + [sym_parenthesized_expression] = STATE(1749), + [sym_call_expression] = STATE(1749), + [sym_type_initializer] = STATE(1746), + [sym_function_literal] = STATE(1749), + [sym_reference_expression] = STATE(1745), + [sym_type_reference_expression] = STATE(3460), + [sym_unary_expression] = STATE(1749), + [sym_receive_expression] = STATE(1749), + [sym_binary_expression] = STATE(1749), + [sym_as_type_cast_expression] = STATE(1749), + [sym__max_group] = STATE(1749), + [sym_literal] = STATE(1738), + [sym_map_init_expression] = STATE(1746), + [sym_array_creation] = STATE(1749), + [sym_fixed_array_creation] = STATE(1749), + [sym_selector_expression] = STATE(1749), + [sym_index_expression] = STATE(1749), + [sym_slice_expression] = STATE(1749), + [sym_if_expression] = STATE(1746), + [sym_compile_time_if_expression] = STATE(1746), + [sym_is_expression] = STATE(1749), + [sym_in_expression] = STATE(1749), + [sym_enum_fetch] = STATE(1749), + [sym_match_expression] = STATE(1746), + [sym_select_expression] = STATE(1746), + [sym_lock_expression] = STATE(1746), + [sym_unsafe_expression] = STATE(1746), + [sym_sql_expression] = STATE(1746), + [sym_c_string_literal] = STATE(1733), + [sym_raw_string_literal] = STATE(1733), + [sym_interpreted_string_literal] = STATE(1733), + [sym_mutability_modifiers] = STATE(600), + [sym_plain_type] = STATE(4121), + [sym__plain_type_without_special] = STATE(2360), + [sym_anon_struct_type] = STATE(2362), + [sym_multi_return_type] = STATE(2360), + [sym_result_type] = STATE(2360), + [sym_option_type] = STATE(2360), + [sym_qualified_type] = STATE(3460), + [sym_fixed_array_type] = STATE(2362), + [sym_array_type] = STATE(2362), + [sym_pointer_type] = STATE(2362), + [sym_wrong_pointer_type] = STATE(2362), + [sym_map_type] = STATE(2362), + [sym_channel_type] = STATE(2362), + [sym_shared_type] = STATE(2362), + [sym_thread_type] = STATE(2362), + [sym_atomic_type] = STATE(2362), + [sym_generic_type] = STATE(2362), + [sym_function_type] = STATE(2362), + [sym_identifier] = ACTIONS(3422), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), [anon_sym_DOT] = ACTIONS(309), - [anon_sym_LBRACE] = ACTIONS(3418), + [anon_sym_LBRACE] = ACTIONS(3424), [anon_sym_LPAREN] = ACTIONS(315), [anon_sym_fn] = ACTIONS(317), [anon_sym_PLUS] = ACTIONS(319), @@ -124857,75 +124649,189 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym___r_double_quote] = ACTIONS(387), [sym___r_single_quote] = ACTIONS(389), }, - [886] = { - [sym_line_comment] = STATE(886), - [sym_block_comment] = STATE(886), - [sym__expression] = STATE(1613), - [sym__expression_without_blocks] = STATE(1692), - [sym__expression_with_blocks] = STATE(1692), - [sym_inc_expression] = STATE(1684), - [sym_dec_expression] = STATE(1684), - [sym_or_block_expression] = STATE(1684), - [sym_option_propagation_expression] = STATE(1684), - [sym_result_propagation_expression] = STATE(1684), - [sym_anon_struct_value_expression] = STATE(1677), - [sym_go_expression] = STATE(1684), - [sym_spawn_expression] = STATE(1684), - [sym_parenthesized_expression] = STATE(1684), - [sym_call_expression] = STATE(1684), - [sym_type_initializer] = STATE(1677), - [sym_function_literal] = STATE(1684), - [sym_reference_expression] = STATE(1674), - [sym_type_reference_expression] = STATE(3541), - [sym_unary_expression] = STATE(1684), - [sym_receive_expression] = STATE(1684), - [sym_binary_expression] = STATE(1684), - [sym_as_type_cast_expression] = STATE(1684), - [sym__max_group] = STATE(1684), - [sym_literal] = STATE(1698), - [sym_map_init_expression] = STATE(1677), - [sym_array_creation] = STATE(1684), - [sym_fixed_array_creation] = STATE(1684), - [sym_selector_expression] = STATE(1684), - [sym_index_expression] = STATE(1684), - [sym_slice_expression] = STATE(1684), - [sym_if_expression] = STATE(1677), - [sym_compile_time_if_expression] = STATE(1677), - [sym_is_expression] = STATE(1684), - [sym_in_expression] = STATE(1684), - [sym_enum_fetch] = STATE(1684), - [sym_match_expression] = STATE(1677), - [sym_select_expression] = STATE(1677), - [sym_lock_expression] = STATE(1677), - [sym_unsafe_expression] = STATE(1677), - [sym_sql_expression] = STATE(1677), - [sym_c_string_literal] = STATE(1705), - [sym_raw_string_literal] = STATE(1705), - [sym_interpreted_string_literal] = STATE(1705), - [sym_mutability_modifiers] = STATE(664), - [sym_plain_type] = STATE(4157), - [sym__plain_type_without_special] = STATE(2302), - [sym_anon_struct_type] = STATE(2303), - [sym_multi_return_type] = STATE(2302), - [sym_result_type] = STATE(2302), - [sym_option_type] = STATE(2302), - [sym_qualified_type] = STATE(3541), - [sym_fixed_array_type] = STATE(2303), - [sym_array_type] = STATE(2303), - [sym_pointer_type] = STATE(2303), - [sym_wrong_pointer_type] = STATE(2303), - [sym_map_type] = STATE(2303), - [sym_channel_type] = STATE(2303), - [sym_shared_type] = STATE(2303), - [sym_thread_type] = STATE(2303), - [sym_atomic_type] = STATE(2303), - [sym_generic_type] = STATE(2303), - [sym_function_type] = STATE(2303), - [sym_identifier] = ACTIONS(3416), + [884] = { + [sym_line_comment] = STATE(884), + [sym_block_comment] = STATE(884), + [sym__expression] = STATE(2308), + [sym__expression_without_blocks] = STATE(2468), + [sym__expression_with_blocks] = STATE(2468), + [sym_inc_expression] = STATE(2469), + [sym_dec_expression] = STATE(2469), + [sym_or_block_expression] = STATE(2469), + [sym_option_propagation_expression] = STATE(2469), + [sym_result_propagation_expression] = STATE(2469), + [sym_anon_struct_value_expression] = STATE(2470), + [sym_go_expression] = STATE(2469), + [sym_spawn_expression] = STATE(2469), + [sym_parenthesized_expression] = STATE(2469), + [sym_call_expression] = STATE(2469), + [sym_type_initializer] = STATE(2470), + [sym_function_literal] = STATE(2469), + [sym_reference_expression] = STATE(2487), + [sym_type_reference_expression] = STATE(3460), + [sym_unary_expression] = STATE(2469), + [sym_receive_expression] = STATE(2469), + [sym_binary_expression] = STATE(2469), + [sym_as_type_cast_expression] = STATE(2469), + [sym__max_group] = STATE(2469), + [sym_literal] = STATE(2465), + [sym_map_init_expression] = STATE(2470), + [sym_array_creation] = STATE(2469), + [sym_fixed_array_creation] = STATE(2469), + [sym_selector_expression] = STATE(2469), + [sym_index_expression] = STATE(2469), + [sym_slice_expression] = STATE(2469), + [sym_if_expression] = STATE(2470), + [sym_compile_time_if_expression] = STATE(2470), + [sym_is_expression] = STATE(2469), + [sym_in_expression] = STATE(2469), + [sym_enum_fetch] = STATE(2469), + [sym_match_expression] = STATE(2470), + [sym_select_expression] = STATE(2470), + [sym_lock_expression] = STATE(2470), + [sym_unsafe_expression] = STATE(2470), + [sym_sql_expression] = STATE(2470), + [sym_c_string_literal] = STATE(2464), + [sym_raw_string_literal] = STATE(2464), + [sym_interpreted_string_literal] = STATE(2464), + [sym_mutability_modifiers] = STATE(561), + [sym_plain_type] = STATE(4038), + [sym__plain_type_without_special] = STATE(2360), + [sym_anon_struct_type] = STATE(2362), + [sym_multi_return_type] = STATE(2360), + [sym_result_type] = STATE(2360), + [sym_option_type] = STATE(2360), + [sym_qualified_type] = STATE(3460), + [sym_fixed_array_type] = STATE(2362), + [sym_array_type] = STATE(2362), + [sym_pointer_type] = STATE(2362), + [sym_wrong_pointer_type] = STATE(2362), + [sym_map_type] = STATE(2362), + [sym_channel_type] = STATE(2362), + [sym_shared_type] = STATE(2362), + [sym_thread_type] = STATE(2362), + [sym_atomic_type] = STATE(2362), + [sym_generic_type] = STATE(2362), + [sym_function_type] = STATE(2362), + [sym_identifier] = ACTIONS(1691), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(1693), + [anon_sym_LBRACE] = ACTIONS(2151), + [anon_sym_LPAREN] = ACTIONS(2153), + [anon_sym_fn] = ACTIONS(1699), + [anon_sym_PLUS] = ACTIONS(3386), + [anon_sym_DASH] = ACTIONS(3386), + [anon_sym_STAR] = ACTIONS(3388), + [anon_sym_struct] = ACTIONS(1705), + [anon_sym_mut] = ACTIONS(41), + [anon_sym_QMARK] = ACTIONS(47), + [anon_sym_BANG] = ACTIONS(3390), + [anon_sym_go] = ACTIONS(3392), + [anon_sym_spawn] = ACTIONS(3394), + [anon_sym_json_DOTdecode] = ACTIONS(2161), + [anon_sym_LBRACK2] = ACTIONS(2163), + [anon_sym_TILDE] = ACTIONS(3386), + [anon_sym_CARET] = ACTIONS(3386), + [anon_sym_AMP] = ACTIONS(3396), + [anon_sym_LT_DASH] = ACTIONS(3398), + [sym_none] = ACTIONS(1721), + [sym_true] = ACTIONS(1721), + [sym_false] = ACTIONS(1721), + [sym_nil] = ACTIONS(1721), + [anon_sym_if] = ACTIONS(1723), + [anon_sym_DOLLARif] = ACTIONS(1725), + [anon_sym_match] = ACTIONS(1727), + [anon_sym_select] = ACTIONS(3400), + [anon_sym_lock] = ACTIONS(3402), + [anon_sym_rlock] = ACTIONS(3402), + [anon_sym_unsafe] = ACTIONS(1733), + [anon_sym_sql] = ACTIONS(1735), + [sym_int_literal] = ACTIONS(1721), + [sym_float_literal] = ACTIONS(2169), + [sym_rune_literal] = ACTIONS(2169), + [sym_pseudo_compile_time_identifier] = ACTIONS(1737), + [anon_sym_shared] = ACTIONS(83), + [anon_sym_map_LBRACK] = ACTIONS(85), + [anon_sym_chan] = ACTIONS(87), + [anon_sym_thread] = ACTIONS(89), + [anon_sym_atomic] = ACTIONS(91), + [sym___double_quote] = ACTIONS(2171), + [sym___single_quote] = ACTIONS(2173), + [sym___c_double_quote] = ACTIONS(2175), + [sym___c_single_quote] = ACTIONS(2177), + [sym___r_double_quote] = ACTIONS(2179), + [sym___r_single_quote] = ACTIONS(2181), + }, + [885] = { + [sym_line_comment] = STATE(885), + [sym_block_comment] = STATE(885), + [sym__expression] = STATE(1621), + [sym__expression_without_blocks] = STATE(1747), + [sym__expression_with_blocks] = STATE(1747), + [sym_inc_expression] = STATE(1749), + [sym_dec_expression] = STATE(1749), + [sym_or_block_expression] = STATE(1749), + [sym_option_propagation_expression] = STATE(1749), + [sym_result_propagation_expression] = STATE(1749), + [sym_anon_struct_value_expression] = STATE(1746), + [sym_go_expression] = STATE(1749), + [sym_spawn_expression] = STATE(1749), + [sym_parenthesized_expression] = STATE(1749), + [sym_call_expression] = STATE(1749), + [sym_type_initializer] = STATE(1746), + [sym_function_literal] = STATE(1749), + [sym_reference_expression] = STATE(1745), + [sym_type_reference_expression] = STATE(3460), + [sym_unary_expression] = STATE(1749), + [sym_receive_expression] = STATE(1749), + [sym_binary_expression] = STATE(1749), + [sym_as_type_cast_expression] = STATE(1749), + [sym__max_group] = STATE(1749), + [sym_literal] = STATE(1738), + [sym_map_init_expression] = STATE(1746), + [sym_array_creation] = STATE(1749), + [sym_fixed_array_creation] = STATE(1749), + [sym_selector_expression] = STATE(1749), + [sym_index_expression] = STATE(1749), + [sym_slice_expression] = STATE(1749), + [sym_if_expression] = STATE(1746), + [sym_compile_time_if_expression] = STATE(1746), + [sym_is_expression] = STATE(1749), + [sym_in_expression] = STATE(1749), + [sym_enum_fetch] = STATE(1749), + [sym_match_expression] = STATE(1746), + [sym_select_expression] = STATE(1746), + [sym_lock_expression] = STATE(1746), + [sym_unsafe_expression] = STATE(1746), + [sym_sql_expression] = STATE(1746), + [sym_c_string_literal] = STATE(1733), + [sym_raw_string_literal] = STATE(1733), + [sym_interpreted_string_literal] = STATE(1733), + [sym_mutability_modifiers] = STATE(600), + [sym_plain_type] = STATE(4121), + [sym__plain_type_without_special] = STATE(2360), + [sym_anon_struct_type] = STATE(2362), + [sym_multi_return_type] = STATE(2360), + [sym_result_type] = STATE(2360), + [sym_option_type] = STATE(2360), + [sym_qualified_type] = STATE(3460), + [sym_fixed_array_type] = STATE(2362), + [sym_array_type] = STATE(2362), + [sym_pointer_type] = STATE(2362), + [sym_wrong_pointer_type] = STATE(2362), + [sym_map_type] = STATE(2362), + [sym_channel_type] = STATE(2362), + [sym_shared_type] = STATE(2362), + [sym_thread_type] = STATE(2362), + [sym_atomic_type] = STATE(2362), + [sym_generic_type] = STATE(2362), + [sym_function_type] = STATE(2362), + [sym_identifier] = ACTIONS(3422), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), [anon_sym_DOT] = ACTIONS(309), - [anon_sym_LBRACE] = ACTIONS(3418), + [anon_sym_LBRACE] = ACTIONS(3424), [anon_sym_LPAREN] = ACTIONS(315), [anon_sym_fn] = ACTIONS(317), [anon_sym_PLUS] = ACTIONS(319), @@ -124971,189 +124877,1101 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym___r_double_quote] = ACTIONS(387), [sym___r_single_quote] = ACTIONS(389), }, + [886] = { + [sym_line_comment] = STATE(886), + [sym_block_comment] = STATE(886), + [sym__expression] = STATE(2311), + [sym__expression_without_blocks] = STATE(2468), + [sym__expression_with_blocks] = STATE(2468), + [sym_inc_expression] = STATE(2469), + [sym_dec_expression] = STATE(2469), + [sym_or_block_expression] = STATE(2469), + [sym_option_propagation_expression] = STATE(2469), + [sym_result_propagation_expression] = STATE(2469), + [sym_anon_struct_value_expression] = STATE(2470), + [sym_go_expression] = STATE(2469), + [sym_spawn_expression] = STATE(2469), + [sym_parenthesized_expression] = STATE(2469), + [sym_call_expression] = STATE(2469), + [sym_type_initializer] = STATE(2470), + [sym_function_literal] = STATE(2469), + [sym_reference_expression] = STATE(2487), + [sym_type_reference_expression] = STATE(3460), + [sym_unary_expression] = STATE(2469), + [sym_receive_expression] = STATE(2469), + [sym_binary_expression] = STATE(2469), + [sym_as_type_cast_expression] = STATE(2469), + [sym__max_group] = STATE(2469), + [sym_literal] = STATE(2465), + [sym_map_init_expression] = STATE(2470), + [sym_array_creation] = STATE(2469), + [sym_fixed_array_creation] = STATE(2469), + [sym_selector_expression] = STATE(2469), + [sym_index_expression] = STATE(2469), + [sym_slice_expression] = STATE(2469), + [sym_if_expression] = STATE(2470), + [sym_compile_time_if_expression] = STATE(2470), + [sym_is_expression] = STATE(2469), + [sym_in_expression] = STATE(2469), + [sym_enum_fetch] = STATE(2469), + [sym_match_expression] = STATE(2470), + [sym_select_expression] = STATE(2470), + [sym_lock_expression] = STATE(2470), + [sym_unsafe_expression] = STATE(2470), + [sym_sql_expression] = STATE(2470), + [sym_c_string_literal] = STATE(2464), + [sym_raw_string_literal] = STATE(2464), + [sym_interpreted_string_literal] = STATE(2464), + [sym_mutability_modifiers] = STATE(561), + [sym_plain_type] = STATE(4038), + [sym__plain_type_without_special] = STATE(2360), + [sym_anon_struct_type] = STATE(2362), + [sym_multi_return_type] = STATE(2360), + [sym_result_type] = STATE(2360), + [sym_option_type] = STATE(2360), + [sym_qualified_type] = STATE(3460), + [sym_fixed_array_type] = STATE(2362), + [sym_array_type] = STATE(2362), + [sym_pointer_type] = STATE(2362), + [sym_wrong_pointer_type] = STATE(2362), + [sym_map_type] = STATE(2362), + [sym_channel_type] = STATE(2362), + [sym_shared_type] = STATE(2362), + [sym_thread_type] = STATE(2362), + [sym_atomic_type] = STATE(2362), + [sym_generic_type] = STATE(2362), + [sym_function_type] = STATE(2362), + [sym_identifier] = ACTIONS(1691), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(1693), + [anon_sym_LBRACE] = ACTIONS(2151), + [anon_sym_LPAREN] = ACTIONS(2153), + [anon_sym_fn] = ACTIONS(1699), + [anon_sym_PLUS] = ACTIONS(3386), + [anon_sym_DASH] = ACTIONS(3386), + [anon_sym_STAR] = ACTIONS(3388), + [anon_sym_struct] = ACTIONS(1705), + [anon_sym_mut] = ACTIONS(41), + [anon_sym_QMARK] = ACTIONS(47), + [anon_sym_BANG] = ACTIONS(3390), + [anon_sym_go] = ACTIONS(3392), + [anon_sym_spawn] = ACTIONS(3394), + [anon_sym_json_DOTdecode] = ACTIONS(2161), + [anon_sym_LBRACK2] = ACTIONS(2163), + [anon_sym_TILDE] = ACTIONS(3386), + [anon_sym_CARET] = ACTIONS(3386), + [anon_sym_AMP] = ACTIONS(3396), + [anon_sym_LT_DASH] = ACTIONS(3398), + [sym_none] = ACTIONS(1721), + [sym_true] = ACTIONS(1721), + [sym_false] = ACTIONS(1721), + [sym_nil] = ACTIONS(1721), + [anon_sym_if] = ACTIONS(1723), + [anon_sym_DOLLARif] = ACTIONS(1725), + [anon_sym_match] = ACTIONS(1727), + [anon_sym_select] = ACTIONS(3400), + [anon_sym_lock] = ACTIONS(3402), + [anon_sym_rlock] = ACTIONS(3402), + [anon_sym_unsafe] = ACTIONS(1733), + [anon_sym_sql] = ACTIONS(1735), + [sym_int_literal] = ACTIONS(1721), + [sym_float_literal] = ACTIONS(2169), + [sym_rune_literal] = ACTIONS(2169), + [sym_pseudo_compile_time_identifier] = ACTIONS(1737), + [anon_sym_shared] = ACTIONS(83), + [anon_sym_map_LBRACK] = ACTIONS(85), + [anon_sym_chan] = ACTIONS(87), + [anon_sym_thread] = ACTIONS(89), + [anon_sym_atomic] = ACTIONS(91), + [sym___double_quote] = ACTIONS(2171), + [sym___single_quote] = ACTIONS(2173), + [sym___c_double_quote] = ACTIONS(2175), + [sym___c_single_quote] = ACTIONS(2177), + [sym___r_double_quote] = ACTIONS(2179), + [sym___r_single_quote] = ACTIONS(2181), + }, [887] = { [sym_line_comment] = STATE(887), [sym_block_comment] = STATE(887), - [sym__expression] = STATE(964), - [sym__expression_without_blocks] = STATE(1017), - [sym__expression_with_blocks] = STATE(1017), - [sym_inc_expression] = STATE(1018), - [sym_dec_expression] = STATE(1018), - [sym_or_block_expression] = STATE(1018), - [sym_option_propagation_expression] = STATE(1018), - [sym_result_propagation_expression] = STATE(1018), - [sym_anon_struct_value_expression] = STATE(993), - [sym_go_expression] = STATE(1018), - [sym_spawn_expression] = STATE(1018), - [sym_parenthesized_expression] = STATE(1018), - [sym_call_expression] = STATE(1018), - [sym_type_initializer] = STATE(993), - [sym_function_literal] = STATE(1018), - [sym_reference_expression] = STATE(1046), - [sym_type_reference_expression] = STATE(3541), - [sym_unary_expression] = STATE(1018), - [sym_receive_expression] = STATE(1018), - [sym_binary_expression] = STATE(1018), - [sym_as_type_cast_expression] = STATE(1018), - [sym__max_group] = STATE(1018), - [sym_literal] = STATE(1014), - [sym_map_init_expression] = STATE(993), - [sym_array_creation] = STATE(1018), - [sym_fixed_array_creation] = STATE(1018), - [sym_selector_expression] = STATE(1018), - [sym_index_expression] = STATE(1018), - [sym_slice_expression] = STATE(1018), - [sym_if_expression] = STATE(993), - [sym_compile_time_if_expression] = STATE(993), - [sym_is_expression] = STATE(1018), - [sym_in_expression] = STATE(1018), - [sym_enum_fetch] = STATE(1018), - [sym_match_expression] = STATE(993), - [sym_select_expression] = STATE(993), - [sym_lock_expression] = STATE(993), - [sym_unsafe_expression] = STATE(993), - [sym_sql_expression] = STATE(993), - [sym_c_string_literal] = STATE(1006), - [sym_raw_string_literal] = STATE(1006), - [sym_interpreted_string_literal] = STATE(1006), - [sym_mutability_modifiers] = STATE(691), - [sym_plain_type] = STATE(4296), - [sym__plain_type_without_special] = STATE(2302), - [sym_anon_struct_type] = STATE(2303), - [sym_multi_return_type] = STATE(2302), - [sym_result_type] = STATE(2302), - [sym_option_type] = STATE(2302), - [sym_qualified_type] = STATE(3541), - [sym_fixed_array_type] = STATE(2303), - [sym_array_type] = STATE(2303), - [sym_pointer_type] = STATE(2303), - [sym_wrong_pointer_type] = STATE(2303), - [sym_map_type] = STATE(2303), - [sym_channel_type] = STATE(2303), - [sym_shared_type] = STATE(2303), - [sym_thread_type] = STATE(2303), - [sym_atomic_type] = STATE(2303), - [sym_generic_type] = STATE(2303), - [sym_function_type] = STATE(2303), - [sym_identifier] = ACTIONS(493), + [sym__expression] = STATE(2829), + [sym__expression_without_blocks] = STATE(2902), + [sym__expression_with_blocks] = STATE(2347), + [sym_inc_expression] = STATE(2379), + [sym_dec_expression] = STATE(2379), + [sym_or_block_expression] = STATE(2379), + [sym_option_propagation_expression] = STATE(2379), + [sym_result_propagation_expression] = STATE(2379), + [sym_anon_struct_value_expression] = STATE(2378), + [sym_go_expression] = STATE(2379), + [sym_spawn_expression] = STATE(2379), + [sym_parenthesized_expression] = STATE(2379), + [sym_call_expression] = STATE(2379), + [sym_type_initializer] = STATE(2378), + [sym_function_literal] = STATE(2379), + [sym_reference_expression] = STATE(2377), + [sym_type_reference_expression] = STATE(3460), + [sym_unary_expression] = STATE(2379), + [sym_receive_expression] = STATE(2379), + [sym_binary_expression] = STATE(2379), + [sym_as_type_cast_expression] = STATE(2379), + [sym__max_group] = STATE(2379), + [sym_literal] = STATE(2392), + [sym_map_init_expression] = STATE(2378), + [sym_array_creation] = STATE(2379), + [sym_fixed_array_creation] = STATE(2379), + [sym_selector_expression] = STATE(2379), + [sym_index_expression] = STATE(2379), + [sym_slice_expression] = STATE(2379), + [sym_if_expression] = STATE(2378), + [sym_compile_time_if_expression] = STATE(2378), + [sym_is_expression] = STATE(2379), + [sym_in_expression] = STATE(2379), + [sym_enum_fetch] = STATE(2379), + [sym_match_expression] = STATE(2378), + [sym_select_expression] = STATE(2378), + [sym_lock_expression] = STATE(2378), + [sym_unsafe_expression] = STATE(2378), + [sym_sql_expression] = STATE(2378), + [sym_c_string_literal] = STATE(2401), + [sym_raw_string_literal] = STATE(2401), + [sym_interpreted_string_literal] = STATE(2401), + [sym_mutability_modifiers] = STATE(939), + [sym_plain_type] = STATE(4160), + [sym__plain_type_without_special] = STATE(2360), + [sym_anon_struct_type] = STATE(2362), + [sym_multi_return_type] = STATE(2360), + [sym_result_type] = STATE(2360), + [sym_option_type] = STATE(2360), + [sym_qualified_type] = STATE(3460), + [sym_fixed_array_type] = STATE(2362), + [sym_array_type] = STATE(2362), + [sym_pointer_type] = STATE(2362), + [sym_wrong_pointer_type] = STATE(2362), + [sym_map_type] = STATE(2362), + [sym_channel_type] = STATE(2362), + [sym_shared_type] = STATE(2362), + [sym_thread_type] = STATE(2362), + [sym_atomic_type] = STATE(2362), + [sym_generic_type] = STATE(2362), + [sym_function_type] = STATE(2362), + [sym_identifier] = ACTIONS(2477), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(501), - [anon_sym_LBRACE] = ACTIONS(2319), - [anon_sym_LPAREN] = ACTIONS(2321), - [anon_sym_fn] = ACTIONS(507), - [anon_sym_PLUS] = ACTIONS(3360), - [anon_sym_DASH] = ACTIONS(3360), - [anon_sym_STAR] = ACTIONS(3362), - [anon_sym_struct] = ACTIONS(513), + [anon_sym_DOT] = ACTIONS(1430), + [anon_sym_LBRACE] = ACTIONS(1432), + [anon_sym_LPAREN] = ACTIONS(1434), + [anon_sym_fn] = ACTIONS(1436), + [anon_sym_PLUS] = ACTIONS(2271), + [anon_sym_DASH] = ACTIONS(2271), + [anon_sym_STAR] = ACTIONS(3354), + [anon_sym_struct] = ACTIONS(1442), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(3364), - [anon_sym_go] = ACTIONS(3366), - [anon_sym_spawn] = ACTIONS(3368), - [anon_sym_json_DOTdecode] = ACTIONS(2329), - [anon_sym_LBRACK2] = ACTIONS(2331), - [anon_sym_TILDE] = ACTIONS(3360), - [anon_sym_CARET] = ACTIONS(3360), - [anon_sym_AMP] = ACTIONS(3370), - [anon_sym_LT_DASH] = ACTIONS(3372), - [sym_none] = ACTIONS(531), - [sym_true] = ACTIONS(531), - [sym_false] = ACTIONS(531), - [sym_nil] = ACTIONS(531), - [anon_sym_if] = ACTIONS(533), - [anon_sym_DOLLARif] = ACTIONS(535), - [anon_sym_match] = ACTIONS(537), - [anon_sym_select] = ACTIONS(3374), - [anon_sym_lock] = ACTIONS(3376), - [anon_sym_rlock] = ACTIONS(3376), - [anon_sym_unsafe] = ACTIONS(543), - [anon_sym_sql] = ACTIONS(545), - [sym_int_literal] = ACTIONS(531), - [sym_float_literal] = ACTIONS(2337), - [sym_rune_literal] = ACTIONS(2337), - [sym_pseudo_compile_time_identifier] = ACTIONS(547), + [anon_sym_BANG] = ACTIONS(3356), + [anon_sym_go] = ACTIONS(2277), + [anon_sym_spawn] = ACTIONS(2279), + [anon_sym_json_DOTdecode] = ACTIONS(1450), + [anon_sym_LBRACK2] = ACTIONS(1452), + [anon_sym_TILDE] = ACTIONS(2271), + [anon_sym_CARET] = ACTIONS(2271), + [anon_sym_AMP] = ACTIONS(3358), + [anon_sym_LT_DASH] = ACTIONS(2283), + [sym_none] = ACTIONS(1458), + [sym_true] = ACTIONS(1458), + [sym_false] = ACTIONS(1458), + [sym_nil] = ACTIONS(1458), + [anon_sym_if] = ACTIONS(1833), + [anon_sym_DOLLARif] = ACTIONS(1462), + [anon_sym_match] = ACTIONS(1464), + [anon_sym_select] = ACTIONS(1466), + [anon_sym_lock] = ACTIONS(1468), + [anon_sym_rlock] = ACTIONS(1468), + [anon_sym_unsafe] = ACTIONS(1839), + [anon_sym_sql] = ACTIONS(1472), + [sym_int_literal] = ACTIONS(1458), + [sym_float_literal] = ACTIONS(1474), + [sym_rune_literal] = ACTIONS(1474), + [sym_pseudo_compile_time_identifier] = ACTIONS(1476), [anon_sym_shared] = ACTIONS(83), [anon_sym_map_LBRACK] = ACTIONS(85), [anon_sym_chan] = ACTIONS(87), [anon_sym_thread] = ACTIONS(89), [anon_sym_atomic] = ACTIONS(91), - [sym___double_quote] = ACTIONS(2339), - [sym___single_quote] = ACTIONS(2341), - [sym___c_double_quote] = ACTIONS(2343), - [sym___c_single_quote] = ACTIONS(2345), - [sym___r_double_quote] = ACTIONS(2347), - [sym___r_single_quote] = ACTIONS(2349), + [sym___double_quote] = ACTIONS(1480), + [sym___single_quote] = ACTIONS(1482), + [sym___c_double_quote] = ACTIONS(1484), + [sym___c_single_quote] = ACTIONS(1486), + [sym___r_double_quote] = ACTIONS(1488), + [sym___r_single_quote] = ACTIONS(1490), }, [888] = { [sym_line_comment] = STATE(888), [sym_block_comment] = STATE(888), - [sym__expression] = STATE(1612), - [sym__expression_without_blocks] = STATE(1692), - [sym__expression_with_blocks] = STATE(1692), - [sym_inc_expression] = STATE(1684), - [sym_dec_expression] = STATE(1684), - [sym_or_block_expression] = STATE(1684), - [sym_option_propagation_expression] = STATE(1684), - [sym_result_propagation_expression] = STATE(1684), - [sym_anon_struct_value_expression] = STATE(1677), - [sym_go_expression] = STATE(1684), - [sym_spawn_expression] = STATE(1684), - [sym_parenthesized_expression] = STATE(1684), - [sym_call_expression] = STATE(1684), - [sym_type_initializer] = STATE(1677), - [sym_function_literal] = STATE(1684), - [sym_reference_expression] = STATE(1674), - [sym_type_reference_expression] = STATE(3541), - [sym_unary_expression] = STATE(1684), - [sym_receive_expression] = STATE(1684), - [sym_binary_expression] = STATE(1684), - [sym_as_type_cast_expression] = STATE(1684), - [sym__max_group] = STATE(1684), - [sym_literal] = STATE(1698), - [sym_map_init_expression] = STATE(1677), - [sym_array_creation] = STATE(1684), - [sym_fixed_array_creation] = STATE(1684), - [sym_selector_expression] = STATE(1684), - [sym_index_expression] = STATE(1684), - [sym_slice_expression] = STATE(1684), - [sym_if_expression] = STATE(1677), - [sym_compile_time_if_expression] = STATE(1677), - [sym_is_expression] = STATE(1684), - [sym_in_expression] = STATE(1684), - [sym_enum_fetch] = STATE(1684), - [sym_match_expression] = STATE(1677), - [sym_select_expression] = STATE(1677), - [sym_lock_expression] = STATE(1677), - [sym_unsafe_expression] = STATE(1677), - [sym_sql_expression] = STATE(1677), - [sym_c_string_literal] = STATE(1705), - [sym_raw_string_literal] = STATE(1705), - [sym_interpreted_string_literal] = STATE(1705), - [sym_mutability_modifiers] = STATE(664), - [sym_plain_type] = STATE(4157), - [sym__plain_type_without_special] = STATE(2302), - [sym_anon_struct_type] = STATE(2303), - [sym_multi_return_type] = STATE(2302), - [sym_result_type] = STATE(2302), - [sym_option_type] = STATE(2302), - [sym_qualified_type] = STATE(3541), - [sym_fixed_array_type] = STATE(2303), - [sym_array_type] = STATE(2303), - [sym_pointer_type] = STATE(2303), - [sym_wrong_pointer_type] = STATE(2303), - [sym_map_type] = STATE(2303), - [sym_channel_type] = STATE(2303), - [sym_shared_type] = STATE(2303), - [sym_thread_type] = STATE(2303), - [sym_atomic_type] = STATE(2303), - [sym_generic_type] = STATE(2303), - [sym_function_type] = STATE(2303), - [sym_identifier] = ACTIONS(3416), + [sym__expression] = STATE(2281), + [sym__expression_without_blocks] = STATE(2468), + [sym__expression_with_blocks] = STATE(2468), + [sym_inc_expression] = STATE(2469), + [sym_dec_expression] = STATE(2469), + [sym_or_block_expression] = STATE(2469), + [sym_option_propagation_expression] = STATE(2469), + [sym_result_propagation_expression] = STATE(2469), + [sym_anon_struct_value_expression] = STATE(2470), + [sym_go_expression] = STATE(2469), + [sym_spawn_expression] = STATE(2469), + [sym_parenthesized_expression] = STATE(2469), + [sym_call_expression] = STATE(2469), + [sym_type_initializer] = STATE(2470), + [sym_function_literal] = STATE(2469), + [sym_reference_expression] = STATE(2487), + [sym_type_reference_expression] = STATE(3460), + [sym_unary_expression] = STATE(2469), + [sym_receive_expression] = STATE(2469), + [sym_binary_expression] = STATE(2469), + [sym_as_type_cast_expression] = STATE(2469), + [sym__max_group] = STATE(2469), + [sym_literal] = STATE(2465), + [sym_map_init_expression] = STATE(2470), + [sym_array_creation] = STATE(2469), + [sym_fixed_array_creation] = STATE(2469), + [sym_selector_expression] = STATE(2469), + [sym_index_expression] = STATE(2469), + [sym_slice_expression] = STATE(2469), + [sym_if_expression] = STATE(2470), + [sym_compile_time_if_expression] = STATE(2470), + [sym_is_expression] = STATE(2469), + [sym_in_expression] = STATE(2469), + [sym_enum_fetch] = STATE(2469), + [sym_match_expression] = STATE(2470), + [sym_select_expression] = STATE(2470), + [sym_lock_expression] = STATE(2470), + [sym_unsafe_expression] = STATE(2470), + [sym_sql_expression] = STATE(2470), + [sym_c_string_literal] = STATE(2464), + [sym_raw_string_literal] = STATE(2464), + [sym_interpreted_string_literal] = STATE(2464), + [sym_mutability_modifiers] = STATE(561), + [sym_plain_type] = STATE(4038), + [sym__plain_type_without_special] = STATE(2360), + [sym_anon_struct_type] = STATE(2362), + [sym_multi_return_type] = STATE(2360), + [sym_result_type] = STATE(2360), + [sym_option_type] = STATE(2360), + [sym_qualified_type] = STATE(3460), + [sym_fixed_array_type] = STATE(2362), + [sym_array_type] = STATE(2362), + [sym_pointer_type] = STATE(2362), + [sym_wrong_pointer_type] = STATE(2362), + [sym_map_type] = STATE(2362), + [sym_channel_type] = STATE(2362), + [sym_shared_type] = STATE(2362), + [sym_thread_type] = STATE(2362), + [sym_atomic_type] = STATE(2362), + [sym_generic_type] = STATE(2362), + [sym_function_type] = STATE(2362), + [sym_identifier] = ACTIONS(1691), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(1693), + [anon_sym_LBRACE] = ACTIONS(2151), + [anon_sym_LPAREN] = ACTIONS(2153), + [anon_sym_fn] = ACTIONS(1699), + [anon_sym_PLUS] = ACTIONS(3386), + [anon_sym_DASH] = ACTIONS(3386), + [anon_sym_STAR] = ACTIONS(3388), + [anon_sym_struct] = ACTIONS(1705), + [anon_sym_mut] = ACTIONS(41), + [anon_sym_QMARK] = ACTIONS(47), + [anon_sym_BANG] = ACTIONS(3390), + [anon_sym_go] = ACTIONS(3392), + [anon_sym_spawn] = ACTIONS(3394), + [anon_sym_json_DOTdecode] = ACTIONS(2161), + [anon_sym_LBRACK2] = ACTIONS(2163), + [anon_sym_TILDE] = ACTIONS(3386), + [anon_sym_CARET] = ACTIONS(3386), + [anon_sym_AMP] = ACTIONS(3396), + [anon_sym_LT_DASH] = ACTIONS(3398), + [sym_none] = ACTIONS(1721), + [sym_true] = ACTIONS(1721), + [sym_false] = ACTIONS(1721), + [sym_nil] = ACTIONS(1721), + [anon_sym_if] = ACTIONS(1723), + [anon_sym_DOLLARif] = ACTIONS(1725), + [anon_sym_match] = ACTIONS(1727), + [anon_sym_select] = ACTIONS(3400), + [anon_sym_lock] = ACTIONS(3402), + [anon_sym_rlock] = ACTIONS(3402), + [anon_sym_unsafe] = ACTIONS(1733), + [anon_sym_sql] = ACTIONS(1735), + [sym_int_literal] = ACTIONS(1721), + [sym_float_literal] = ACTIONS(2169), + [sym_rune_literal] = ACTIONS(2169), + [sym_pseudo_compile_time_identifier] = ACTIONS(1737), + [anon_sym_shared] = ACTIONS(83), + [anon_sym_map_LBRACK] = ACTIONS(85), + [anon_sym_chan] = ACTIONS(87), + [anon_sym_thread] = ACTIONS(89), + [anon_sym_atomic] = ACTIONS(91), + [sym___double_quote] = ACTIONS(2171), + [sym___single_quote] = ACTIONS(2173), + [sym___c_double_quote] = ACTIONS(2175), + [sym___c_single_quote] = ACTIONS(2177), + [sym___r_double_quote] = ACTIONS(2179), + [sym___r_single_quote] = ACTIONS(2181), + }, + [889] = { + [sym_line_comment] = STATE(889), + [sym_block_comment] = STATE(889), + [sym__expression] = STATE(2334), + [sym__expression_without_blocks] = STATE(2468), + [sym__expression_with_blocks] = STATE(2468), + [sym_inc_expression] = STATE(2469), + [sym_dec_expression] = STATE(2469), + [sym_or_block_expression] = STATE(2469), + [sym_option_propagation_expression] = STATE(2469), + [sym_result_propagation_expression] = STATE(2469), + [sym_anon_struct_value_expression] = STATE(2470), + [sym_go_expression] = STATE(2469), + [sym_spawn_expression] = STATE(2469), + [sym_parenthesized_expression] = STATE(2469), + [sym_call_expression] = STATE(2469), + [sym_type_initializer] = STATE(2470), + [sym_function_literal] = STATE(2469), + [sym_reference_expression] = STATE(2487), + [sym_type_reference_expression] = STATE(3460), + [sym_unary_expression] = STATE(2469), + [sym_receive_expression] = STATE(2469), + [sym_binary_expression] = STATE(2469), + [sym_as_type_cast_expression] = STATE(2469), + [sym__max_group] = STATE(2469), + [sym_literal] = STATE(2465), + [sym_map_init_expression] = STATE(2470), + [sym_array_creation] = STATE(2469), + [sym_fixed_array_creation] = STATE(2469), + [sym_selector_expression] = STATE(2469), + [sym_index_expression] = STATE(2469), + [sym_slice_expression] = STATE(2469), + [sym_if_expression] = STATE(2470), + [sym_compile_time_if_expression] = STATE(2470), + [sym_is_expression] = STATE(2469), + [sym_in_expression] = STATE(2469), + [sym_enum_fetch] = STATE(2469), + [sym_match_expression] = STATE(2470), + [sym_select_expression] = STATE(2470), + [sym_lock_expression] = STATE(2470), + [sym_unsafe_expression] = STATE(2470), + [sym_sql_expression] = STATE(2470), + [sym_c_string_literal] = STATE(2464), + [sym_raw_string_literal] = STATE(2464), + [sym_interpreted_string_literal] = STATE(2464), + [sym_mutability_modifiers] = STATE(561), + [sym_plain_type] = STATE(4038), + [sym__plain_type_without_special] = STATE(2360), + [sym_anon_struct_type] = STATE(2362), + [sym_multi_return_type] = STATE(2360), + [sym_result_type] = STATE(2360), + [sym_option_type] = STATE(2360), + [sym_qualified_type] = STATE(3460), + [sym_fixed_array_type] = STATE(2362), + [sym_array_type] = STATE(2362), + [sym_pointer_type] = STATE(2362), + [sym_wrong_pointer_type] = STATE(2362), + [sym_map_type] = STATE(2362), + [sym_channel_type] = STATE(2362), + [sym_shared_type] = STATE(2362), + [sym_thread_type] = STATE(2362), + [sym_atomic_type] = STATE(2362), + [sym_generic_type] = STATE(2362), + [sym_function_type] = STATE(2362), + [sym_identifier] = ACTIONS(1691), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(1693), + [anon_sym_LBRACE] = ACTIONS(2151), + [anon_sym_LPAREN] = ACTIONS(2153), + [anon_sym_fn] = ACTIONS(1699), + [anon_sym_PLUS] = ACTIONS(2155), + [anon_sym_DASH] = ACTIONS(2155), + [anon_sym_STAR] = ACTIONS(2157), + [anon_sym_struct] = ACTIONS(1705), + [anon_sym_mut] = ACTIONS(41), + [anon_sym_QMARK] = ACTIONS(47), + [anon_sym_BANG] = ACTIONS(2159), + [anon_sym_go] = ACTIONS(1709), + [anon_sym_spawn] = ACTIONS(1711), + [anon_sym_json_DOTdecode] = ACTIONS(2161), + [anon_sym_LBRACK2] = ACTIONS(2163), + [anon_sym_TILDE] = ACTIONS(2155), + [anon_sym_CARET] = ACTIONS(2155), + [anon_sym_AMP] = ACTIONS(2165), + [anon_sym_LT_DASH] = ACTIONS(2167), + [sym_none] = ACTIONS(1721), + [sym_true] = ACTIONS(1721), + [sym_false] = ACTIONS(1721), + [sym_nil] = ACTIONS(1721), + [anon_sym_if] = ACTIONS(1723), + [anon_sym_DOLLARif] = ACTIONS(1725), + [anon_sym_match] = ACTIONS(1727), + [anon_sym_select] = ACTIONS(1729), + [anon_sym_lock] = ACTIONS(1731), + [anon_sym_rlock] = ACTIONS(1731), + [anon_sym_unsafe] = ACTIONS(1733), + [anon_sym_sql] = ACTIONS(1735), + [sym_int_literal] = ACTIONS(1721), + [sym_float_literal] = ACTIONS(2169), + [sym_rune_literal] = ACTIONS(2169), + [sym_pseudo_compile_time_identifier] = ACTIONS(1737), + [anon_sym_shared] = ACTIONS(83), + [anon_sym_map_LBRACK] = ACTIONS(85), + [anon_sym_chan] = ACTIONS(87), + [anon_sym_thread] = ACTIONS(89), + [anon_sym_atomic] = ACTIONS(91), + [sym___double_quote] = ACTIONS(2171), + [sym___single_quote] = ACTIONS(2173), + [sym___c_double_quote] = ACTIONS(2175), + [sym___c_single_quote] = ACTIONS(2177), + [sym___r_double_quote] = ACTIONS(2179), + [sym___r_single_quote] = ACTIONS(2181), + }, + [890] = { + [sym_line_comment] = STATE(890), + [sym_block_comment] = STATE(890), + [sym__expression] = STATE(2310), + [sym__expression_without_blocks] = STATE(2468), + [sym__expression_with_blocks] = STATE(2468), + [sym_inc_expression] = STATE(2469), + [sym_dec_expression] = STATE(2469), + [sym_or_block_expression] = STATE(2469), + [sym_option_propagation_expression] = STATE(2469), + [sym_result_propagation_expression] = STATE(2469), + [sym_anon_struct_value_expression] = STATE(2470), + [sym_go_expression] = STATE(2469), + [sym_spawn_expression] = STATE(2469), + [sym_parenthesized_expression] = STATE(2469), + [sym_call_expression] = STATE(2469), + [sym_type_initializer] = STATE(2470), + [sym_function_literal] = STATE(2469), + [sym_reference_expression] = STATE(2487), + [sym_type_reference_expression] = STATE(3460), + [sym_unary_expression] = STATE(2469), + [sym_receive_expression] = STATE(2469), + [sym_binary_expression] = STATE(2469), + [sym_as_type_cast_expression] = STATE(2469), + [sym__max_group] = STATE(2469), + [sym_literal] = STATE(2465), + [sym_map_init_expression] = STATE(2470), + [sym_array_creation] = STATE(2469), + [sym_fixed_array_creation] = STATE(2469), + [sym_selector_expression] = STATE(2469), + [sym_index_expression] = STATE(2469), + [sym_slice_expression] = STATE(2469), + [sym_if_expression] = STATE(2470), + [sym_compile_time_if_expression] = STATE(2470), + [sym_is_expression] = STATE(2469), + [sym_in_expression] = STATE(2469), + [sym_enum_fetch] = STATE(2469), + [sym_match_expression] = STATE(2470), + [sym_select_expression] = STATE(2470), + [sym_lock_expression] = STATE(2470), + [sym_unsafe_expression] = STATE(2470), + [sym_sql_expression] = STATE(2470), + [sym_c_string_literal] = STATE(2464), + [sym_raw_string_literal] = STATE(2464), + [sym_interpreted_string_literal] = STATE(2464), + [sym_mutability_modifiers] = STATE(561), + [sym_plain_type] = STATE(4038), + [sym__plain_type_without_special] = STATE(2360), + [sym_anon_struct_type] = STATE(2362), + [sym_multi_return_type] = STATE(2360), + [sym_result_type] = STATE(2360), + [sym_option_type] = STATE(2360), + [sym_qualified_type] = STATE(3460), + [sym_fixed_array_type] = STATE(2362), + [sym_array_type] = STATE(2362), + [sym_pointer_type] = STATE(2362), + [sym_wrong_pointer_type] = STATE(2362), + [sym_map_type] = STATE(2362), + [sym_channel_type] = STATE(2362), + [sym_shared_type] = STATE(2362), + [sym_thread_type] = STATE(2362), + [sym_atomic_type] = STATE(2362), + [sym_generic_type] = STATE(2362), + [sym_function_type] = STATE(2362), + [sym_identifier] = ACTIONS(1691), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(1693), + [anon_sym_LBRACE] = ACTIONS(2151), + [anon_sym_LPAREN] = ACTIONS(2153), + [anon_sym_fn] = ACTIONS(1699), + [anon_sym_PLUS] = ACTIONS(3386), + [anon_sym_DASH] = ACTIONS(3386), + [anon_sym_STAR] = ACTIONS(3388), + [anon_sym_struct] = ACTIONS(1705), + [anon_sym_mut] = ACTIONS(41), + [anon_sym_QMARK] = ACTIONS(47), + [anon_sym_BANG] = ACTIONS(3390), + [anon_sym_go] = ACTIONS(3392), + [anon_sym_spawn] = ACTIONS(3394), + [anon_sym_json_DOTdecode] = ACTIONS(2161), + [anon_sym_LBRACK2] = ACTIONS(2163), + [anon_sym_TILDE] = ACTIONS(3386), + [anon_sym_CARET] = ACTIONS(3386), + [anon_sym_AMP] = ACTIONS(3396), + [anon_sym_LT_DASH] = ACTIONS(3398), + [sym_none] = ACTIONS(1721), + [sym_true] = ACTIONS(1721), + [sym_false] = ACTIONS(1721), + [sym_nil] = ACTIONS(1721), + [anon_sym_if] = ACTIONS(1723), + [anon_sym_DOLLARif] = ACTIONS(1725), + [anon_sym_match] = ACTIONS(1727), + [anon_sym_select] = ACTIONS(3400), + [anon_sym_lock] = ACTIONS(3402), + [anon_sym_rlock] = ACTIONS(3402), + [anon_sym_unsafe] = ACTIONS(1733), + [anon_sym_sql] = ACTIONS(1735), + [sym_int_literal] = ACTIONS(1721), + [sym_float_literal] = ACTIONS(2169), + [sym_rune_literal] = ACTIONS(2169), + [sym_pseudo_compile_time_identifier] = ACTIONS(1737), + [anon_sym_shared] = ACTIONS(83), + [anon_sym_map_LBRACK] = ACTIONS(85), + [anon_sym_chan] = ACTIONS(87), + [anon_sym_thread] = ACTIONS(89), + [anon_sym_atomic] = ACTIONS(91), + [sym___double_quote] = ACTIONS(2171), + [sym___single_quote] = ACTIONS(2173), + [sym___c_double_quote] = ACTIONS(2175), + [sym___c_single_quote] = ACTIONS(2177), + [sym___r_double_quote] = ACTIONS(2179), + [sym___r_single_quote] = ACTIONS(2181), + }, + [891] = { + [sym_line_comment] = STATE(891), + [sym_block_comment] = STATE(891), + [sym__expression] = STATE(1258), + [sym__expression_without_blocks] = STATE(1318), + [sym__expression_with_blocks] = STATE(1318), + [sym_inc_expression] = STATE(1319), + [sym_dec_expression] = STATE(1319), + [sym_or_block_expression] = STATE(1319), + [sym_option_propagation_expression] = STATE(1319), + [sym_result_propagation_expression] = STATE(1319), + [sym_anon_struct_value_expression] = STATE(1320), + [sym_go_expression] = STATE(1319), + [sym_spawn_expression] = STATE(1319), + [sym_parenthesized_expression] = STATE(1319), + [sym_call_expression] = STATE(1319), + [sym_type_initializer] = STATE(1320), + [sym_function_literal] = STATE(1319), + [sym_reference_expression] = STATE(1298), + [sym_type_reference_expression] = STATE(3460), + [sym_unary_expression] = STATE(1319), + [sym_receive_expression] = STATE(1319), + [sym_binary_expression] = STATE(1319), + [sym_as_type_cast_expression] = STATE(1319), + [sym__max_group] = STATE(1319), + [sym_literal] = STATE(1314), + [sym_map_init_expression] = STATE(1320), + [sym_array_creation] = STATE(1319), + [sym_fixed_array_creation] = STATE(1319), + [sym_selector_expression] = STATE(1319), + [sym_index_expression] = STATE(1319), + [sym_slice_expression] = STATE(1319), + [sym_if_expression] = STATE(1320), + [sym_compile_time_if_expression] = STATE(1320), + [sym_is_expression] = STATE(1319), + [sym_in_expression] = STATE(1319), + [sym_enum_fetch] = STATE(1319), + [sym_match_expression] = STATE(1320), + [sym_select_expression] = STATE(1320), + [sym_lock_expression] = STATE(1320), + [sym_unsafe_expression] = STATE(1320), + [sym_sql_expression] = STATE(1320), + [sym_c_string_literal] = STATE(1291), + [sym_raw_string_literal] = STATE(1291), + [sym_interpreted_string_literal] = STATE(1291), + [sym_mutability_modifiers] = STATE(639), + [sym_plain_type] = STATE(4151), + [sym__plain_type_without_special] = STATE(2360), + [sym_anon_struct_type] = STATE(2362), + [sym_multi_return_type] = STATE(2360), + [sym_result_type] = STATE(2360), + [sym_option_type] = STATE(2360), + [sym_qualified_type] = STATE(3460), + [sym_fixed_array_type] = STATE(2362), + [sym_array_type] = STATE(2362), + [sym_pointer_type] = STATE(2362), + [sym_wrong_pointer_type] = STATE(2362), + [sym_map_type] = STATE(2362), + [sym_channel_type] = STATE(2362), + [sym_shared_type] = STATE(2362), + [sym_thread_type] = STATE(2362), + [sym_atomic_type] = STATE(2362), + [sym_generic_type] = STATE(2362), + [sym_function_type] = STATE(2362), + [sym_identifier] = ACTIONS(1360), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(1362), + [anon_sym_LBRACE] = ACTIONS(1364), + [anon_sym_LPAREN] = ACTIONS(1366), + [anon_sym_fn] = ACTIONS(1368), + [anon_sym_PLUS] = ACTIONS(1851), + [anon_sym_DASH] = ACTIONS(1851), + [anon_sym_STAR] = ACTIONS(1853), + [anon_sym_struct] = ACTIONS(1376), + [anon_sym_mut] = ACTIONS(41), + [anon_sym_QMARK] = ACTIONS(47), + [anon_sym_BANG] = ACTIONS(1855), + [anon_sym_go] = ACTIONS(1857), + [anon_sym_spawn] = ACTIONS(1859), + [anon_sym_json_DOTdecode] = ACTIONS(1384), + [anon_sym_LBRACK2] = ACTIONS(1386), + [anon_sym_TILDE] = ACTIONS(1851), + [anon_sym_CARET] = ACTIONS(1851), + [anon_sym_AMP] = ACTIONS(1861), + [anon_sym_LT_DASH] = ACTIONS(1863), + [sym_none] = ACTIONS(1392), + [sym_true] = ACTIONS(1392), + [sym_false] = ACTIONS(1392), + [sym_nil] = ACTIONS(1392), + [anon_sym_if] = ACTIONS(1865), + [anon_sym_DOLLARif] = ACTIONS(1396), + [anon_sym_match] = ACTIONS(1398), + [anon_sym_select] = ACTIONS(1867), + [anon_sym_lock] = ACTIONS(1869), + [anon_sym_rlock] = ACTIONS(1869), + [anon_sym_unsafe] = ACTIONS(1871), + [anon_sym_sql] = ACTIONS(1406), + [sym_int_literal] = ACTIONS(1392), + [sym_float_literal] = ACTIONS(1410), + [sym_rune_literal] = ACTIONS(1410), + [sym_pseudo_compile_time_identifier] = ACTIONS(1412), + [anon_sym_shared] = ACTIONS(83), + [anon_sym_map_LBRACK] = ACTIONS(85), + [anon_sym_chan] = ACTIONS(87), + [anon_sym_thread] = ACTIONS(89), + [anon_sym_atomic] = ACTIONS(91), + [sym___double_quote] = ACTIONS(1414), + [sym___single_quote] = ACTIONS(1416), + [sym___c_double_quote] = ACTIONS(1418), + [sym___c_single_quote] = ACTIONS(1420), + [sym___r_double_quote] = ACTIONS(1422), + [sym___r_single_quote] = ACTIONS(1424), + }, + [892] = { + [sym_line_comment] = STATE(892), + [sym_block_comment] = STATE(892), + [sym__expression] = STATE(2309), + [sym__expression_without_blocks] = STATE(2468), + [sym__expression_with_blocks] = STATE(2468), + [sym_inc_expression] = STATE(2469), + [sym_dec_expression] = STATE(2469), + [sym_or_block_expression] = STATE(2469), + [sym_option_propagation_expression] = STATE(2469), + [sym_result_propagation_expression] = STATE(2469), + [sym_anon_struct_value_expression] = STATE(2470), + [sym_go_expression] = STATE(2469), + [sym_spawn_expression] = STATE(2469), + [sym_parenthesized_expression] = STATE(2469), + [sym_call_expression] = STATE(2469), + [sym_type_initializer] = STATE(2470), + [sym_function_literal] = STATE(2469), + [sym_reference_expression] = STATE(2487), + [sym_type_reference_expression] = STATE(3460), + [sym_unary_expression] = STATE(2469), + [sym_receive_expression] = STATE(2469), + [sym_binary_expression] = STATE(2469), + [sym_as_type_cast_expression] = STATE(2469), + [sym__max_group] = STATE(2469), + [sym_literal] = STATE(2465), + [sym_map_init_expression] = STATE(2470), + [sym_array_creation] = STATE(2469), + [sym_fixed_array_creation] = STATE(2469), + [sym_selector_expression] = STATE(2469), + [sym_index_expression] = STATE(2469), + [sym_slice_expression] = STATE(2469), + [sym_if_expression] = STATE(2470), + [sym_compile_time_if_expression] = STATE(2470), + [sym_is_expression] = STATE(2469), + [sym_in_expression] = STATE(2469), + [sym_enum_fetch] = STATE(2469), + [sym_match_expression] = STATE(2470), + [sym_select_expression] = STATE(2470), + [sym_lock_expression] = STATE(2470), + [sym_unsafe_expression] = STATE(2470), + [sym_sql_expression] = STATE(2470), + [sym_c_string_literal] = STATE(2464), + [sym_raw_string_literal] = STATE(2464), + [sym_interpreted_string_literal] = STATE(2464), + [sym_mutability_modifiers] = STATE(561), + [sym_plain_type] = STATE(4038), + [sym__plain_type_without_special] = STATE(2360), + [sym_anon_struct_type] = STATE(2362), + [sym_multi_return_type] = STATE(2360), + [sym_result_type] = STATE(2360), + [sym_option_type] = STATE(2360), + [sym_qualified_type] = STATE(3460), + [sym_fixed_array_type] = STATE(2362), + [sym_array_type] = STATE(2362), + [sym_pointer_type] = STATE(2362), + [sym_wrong_pointer_type] = STATE(2362), + [sym_map_type] = STATE(2362), + [sym_channel_type] = STATE(2362), + [sym_shared_type] = STATE(2362), + [sym_thread_type] = STATE(2362), + [sym_atomic_type] = STATE(2362), + [sym_generic_type] = STATE(2362), + [sym_function_type] = STATE(2362), + [sym_identifier] = ACTIONS(1691), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(1693), + [anon_sym_LBRACE] = ACTIONS(2151), + [anon_sym_LPAREN] = ACTIONS(2153), + [anon_sym_fn] = ACTIONS(1699), + [anon_sym_PLUS] = ACTIONS(3386), + [anon_sym_DASH] = ACTIONS(3386), + [anon_sym_STAR] = ACTIONS(3388), + [anon_sym_struct] = ACTIONS(1705), + [anon_sym_mut] = ACTIONS(41), + [anon_sym_QMARK] = ACTIONS(47), + [anon_sym_BANG] = ACTIONS(3390), + [anon_sym_go] = ACTIONS(3392), + [anon_sym_spawn] = ACTIONS(3394), + [anon_sym_json_DOTdecode] = ACTIONS(2161), + [anon_sym_LBRACK2] = ACTIONS(2163), + [anon_sym_TILDE] = ACTIONS(3386), + [anon_sym_CARET] = ACTIONS(3386), + [anon_sym_AMP] = ACTIONS(3396), + [anon_sym_LT_DASH] = ACTIONS(3398), + [sym_none] = ACTIONS(1721), + [sym_true] = ACTIONS(1721), + [sym_false] = ACTIONS(1721), + [sym_nil] = ACTIONS(1721), + [anon_sym_if] = ACTIONS(1723), + [anon_sym_DOLLARif] = ACTIONS(1725), + [anon_sym_match] = ACTIONS(1727), + [anon_sym_select] = ACTIONS(3400), + [anon_sym_lock] = ACTIONS(3402), + [anon_sym_rlock] = ACTIONS(3402), + [anon_sym_unsafe] = ACTIONS(1733), + [anon_sym_sql] = ACTIONS(1735), + [sym_int_literal] = ACTIONS(1721), + [sym_float_literal] = ACTIONS(2169), + [sym_rune_literal] = ACTIONS(2169), + [sym_pseudo_compile_time_identifier] = ACTIONS(1737), + [anon_sym_shared] = ACTIONS(83), + [anon_sym_map_LBRACK] = ACTIONS(85), + [anon_sym_chan] = ACTIONS(87), + [anon_sym_thread] = ACTIONS(89), + [anon_sym_atomic] = ACTIONS(91), + [sym___double_quote] = ACTIONS(2171), + [sym___single_quote] = ACTIONS(2173), + [sym___c_double_quote] = ACTIONS(2175), + [sym___c_single_quote] = ACTIONS(2177), + [sym___r_double_quote] = ACTIONS(2179), + [sym___r_single_quote] = ACTIONS(2181), + }, + [893] = { + [sym_line_comment] = STATE(893), + [sym_block_comment] = STATE(893), + [sym__expression] = STATE(2592), + [sym__expression_without_blocks] = STATE(2347), + [sym__expression_with_blocks] = STATE(2347), + [sym_inc_expression] = STATE(2379), + [sym_dec_expression] = STATE(2379), + [sym_or_block_expression] = STATE(2379), + [sym_option_propagation_expression] = STATE(2379), + [sym_result_propagation_expression] = STATE(2379), + [sym_anon_struct_value_expression] = STATE(2378), + [sym_go_expression] = STATE(2379), + [sym_spawn_expression] = STATE(2379), + [sym_parenthesized_expression] = STATE(2379), + [sym_call_expression] = STATE(2379), + [sym_type_initializer] = STATE(2378), + [sym_function_literal] = STATE(2379), + [sym_reference_expression] = STATE(2377), + [sym_type_reference_expression] = STATE(3460), + [sym_unary_expression] = STATE(2379), + [sym_receive_expression] = STATE(2379), + [sym_binary_expression] = STATE(2379), + [sym_as_type_cast_expression] = STATE(2379), + [sym__max_group] = STATE(2379), + [sym_literal] = STATE(2392), + [sym_map_init_expression] = STATE(2378), + [sym_array_creation] = STATE(2379), + [sym_fixed_array_creation] = STATE(2379), + [sym_selector_expression] = STATE(2379), + [sym_index_expression] = STATE(2379), + [sym_slice_expression] = STATE(2379), + [sym_if_expression] = STATE(2378), + [sym_compile_time_if_expression] = STATE(2378), + [sym_is_expression] = STATE(2379), + [sym_in_expression] = STATE(2379), + [sym_enum_fetch] = STATE(2379), + [sym_match_expression] = STATE(2378), + [sym_select_expression] = STATE(2378), + [sym_lock_expression] = STATE(2378), + [sym_unsafe_expression] = STATE(2378), + [sym_sql_expression] = STATE(2378), + [sym_c_string_literal] = STATE(2401), + [sym_raw_string_literal] = STATE(2401), + [sym_interpreted_string_literal] = STATE(2401), + [sym_mutability_modifiers] = STATE(553), + [sym_plain_type] = STATE(4160), + [sym__plain_type_without_special] = STATE(2360), + [sym_anon_struct_type] = STATE(2362), + [sym_multi_return_type] = STATE(2360), + [sym_result_type] = STATE(2360), + [sym_option_type] = STATE(2360), + [sym_qualified_type] = STATE(3460), + [sym_fixed_array_type] = STATE(2362), + [sym_array_type] = STATE(2362), + [sym_pointer_type] = STATE(2362), + [sym_wrong_pointer_type] = STATE(2362), + [sym_map_type] = STATE(2362), + [sym_channel_type] = STATE(2362), + [sym_shared_type] = STATE(2362), + [sym_thread_type] = STATE(2362), + [sym_atomic_type] = STATE(2362), + [sym_generic_type] = STATE(2362), + [sym_function_type] = STATE(2362), + [sym_identifier] = ACTIONS(2477), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(1430), + [anon_sym_LBRACE] = ACTIONS(1432), + [anon_sym_LPAREN] = ACTIONS(1434), + [anon_sym_fn] = ACTIONS(1436), + [anon_sym_PLUS] = ACTIONS(2479), + [anon_sym_DASH] = ACTIONS(2479), + [anon_sym_STAR] = ACTIONS(2481), + [anon_sym_struct] = ACTIONS(1442), + [anon_sym_mut] = ACTIONS(41), + [anon_sym_QMARK] = ACTIONS(47), + [anon_sym_BANG] = ACTIONS(2483), + [anon_sym_go] = ACTIONS(2485), + [anon_sym_spawn] = ACTIONS(2487), + [anon_sym_json_DOTdecode] = ACTIONS(1450), + [anon_sym_LBRACK2] = ACTIONS(2489), + [anon_sym_TILDE] = ACTIONS(2479), + [anon_sym_CARET] = ACTIONS(2479), + [anon_sym_AMP] = ACTIONS(2491), + [anon_sym_LT_DASH] = ACTIONS(2493), + [sym_none] = ACTIONS(1458), + [sym_true] = ACTIONS(1458), + [sym_false] = ACTIONS(1458), + [sym_nil] = ACTIONS(1458), + [anon_sym_if] = ACTIONS(1833), + [anon_sym_DOLLARif] = ACTIONS(1462), + [anon_sym_match] = ACTIONS(1464), + [anon_sym_select] = ACTIONS(2495), + [anon_sym_lock] = ACTIONS(2497), + [anon_sym_rlock] = ACTIONS(2497), + [anon_sym_unsafe] = ACTIONS(1839), + [anon_sym_sql] = ACTIONS(1472), + [sym_int_literal] = ACTIONS(1458), + [sym_float_literal] = ACTIONS(1474), + [sym_rune_literal] = ACTIONS(1474), + [sym_pseudo_compile_time_identifier] = ACTIONS(1476), + [anon_sym_shared] = ACTIONS(83), + [anon_sym_map_LBRACK] = ACTIONS(85), + [anon_sym_chan] = ACTIONS(87), + [anon_sym_thread] = ACTIONS(89), + [anon_sym_atomic] = ACTIONS(91), + [sym___double_quote] = ACTIONS(1480), + [sym___single_quote] = ACTIONS(1482), + [sym___c_double_quote] = ACTIONS(1484), + [sym___c_single_quote] = ACTIONS(1486), + [sym___r_double_quote] = ACTIONS(1488), + [sym___r_single_quote] = ACTIONS(1490), + }, + [894] = { + [sym_line_comment] = STATE(894), + [sym_block_comment] = STATE(894), + [sym__expression] = STATE(1258), + [sym__expression_without_blocks] = STATE(1318), + [sym__expression_with_blocks] = STATE(1318), + [sym_inc_expression] = STATE(1319), + [sym_dec_expression] = STATE(1319), + [sym_or_block_expression] = STATE(1319), + [sym_option_propagation_expression] = STATE(1319), + [sym_result_propagation_expression] = STATE(1319), + [sym_anon_struct_value_expression] = STATE(1320), + [sym_go_expression] = STATE(1319), + [sym_spawn_expression] = STATE(1319), + [sym_parenthesized_expression] = STATE(1319), + [sym_call_expression] = STATE(1319), + [sym_type_initializer] = STATE(1320), + [sym_function_literal] = STATE(1319), + [sym_reference_expression] = STATE(1298), + [sym_type_reference_expression] = STATE(3460), + [sym_unary_expression] = STATE(1319), + [sym_receive_expression] = STATE(1319), + [sym_binary_expression] = STATE(1319), + [sym_as_type_cast_expression] = STATE(1319), + [sym__max_group] = STATE(1319), + [sym_literal] = STATE(1314), + [sym_map_init_expression] = STATE(1320), + [sym_array_creation] = STATE(1319), + [sym_fixed_array_creation] = STATE(1319), + [sym_selector_expression] = STATE(1319), + [sym_index_expression] = STATE(1319), + [sym_slice_expression] = STATE(1319), + [sym_if_expression] = STATE(1320), + [sym_compile_time_if_expression] = STATE(1320), + [sym_is_expression] = STATE(1319), + [sym_in_expression] = STATE(1319), + [sym_enum_fetch] = STATE(1319), + [sym_match_expression] = STATE(1320), + [sym_select_expression] = STATE(1320), + [sym_lock_expression] = STATE(1320), + [sym_unsafe_expression] = STATE(1320), + [sym_sql_expression] = STATE(1320), + [sym_c_string_literal] = STATE(1291), + [sym_raw_string_literal] = STATE(1291), + [sym_interpreted_string_literal] = STATE(1291), + [sym_mutability_modifiers] = STATE(639), + [sym_plain_type] = STATE(4155), + [sym__plain_type_without_special] = STATE(2360), + [sym_anon_struct_type] = STATE(2362), + [sym_multi_return_type] = STATE(2360), + [sym_result_type] = STATE(2360), + [sym_option_type] = STATE(2360), + [sym_qualified_type] = STATE(3460), + [sym_fixed_array_type] = STATE(2362), + [sym_array_type] = STATE(2362), + [sym_pointer_type] = STATE(2362), + [sym_wrong_pointer_type] = STATE(2362), + [sym_map_type] = STATE(2362), + [sym_channel_type] = STATE(2362), + [sym_shared_type] = STATE(2362), + [sym_thread_type] = STATE(2362), + [sym_atomic_type] = STATE(2362), + [sym_generic_type] = STATE(2362), + [sym_function_type] = STATE(2362), + [sym_identifier] = ACTIONS(1360), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(1362), + [anon_sym_LBRACE] = ACTIONS(1364), + [anon_sym_LPAREN] = ACTIONS(1366), + [anon_sym_fn] = ACTIONS(1368), + [anon_sym_PLUS] = ACTIONS(1851), + [anon_sym_DASH] = ACTIONS(1851), + [anon_sym_STAR] = ACTIONS(1853), + [anon_sym_struct] = ACTIONS(1376), + [anon_sym_mut] = ACTIONS(41), + [anon_sym_QMARK] = ACTIONS(47), + [anon_sym_BANG] = ACTIONS(1855), + [anon_sym_go] = ACTIONS(1857), + [anon_sym_spawn] = ACTIONS(1859), + [anon_sym_json_DOTdecode] = ACTIONS(1384), + [anon_sym_LBRACK2] = ACTIONS(1386), + [anon_sym_TILDE] = ACTIONS(1851), + [anon_sym_CARET] = ACTIONS(1851), + [anon_sym_AMP] = ACTIONS(1861), + [anon_sym_LT_DASH] = ACTIONS(1863), + [sym_none] = ACTIONS(1392), + [sym_true] = ACTIONS(1392), + [sym_false] = ACTIONS(1392), + [sym_nil] = ACTIONS(1392), + [anon_sym_if] = ACTIONS(1865), + [anon_sym_DOLLARif] = ACTIONS(1396), + [anon_sym_match] = ACTIONS(1398), + [anon_sym_select] = ACTIONS(1867), + [anon_sym_lock] = ACTIONS(1869), + [anon_sym_rlock] = ACTIONS(1869), + [anon_sym_unsafe] = ACTIONS(1871), + [anon_sym_sql] = ACTIONS(1406), + [sym_int_literal] = ACTIONS(1392), + [sym_float_literal] = ACTIONS(1410), + [sym_rune_literal] = ACTIONS(1410), + [sym_pseudo_compile_time_identifier] = ACTIONS(1412), + [anon_sym_shared] = ACTIONS(83), + [anon_sym_map_LBRACK] = ACTIONS(85), + [anon_sym_chan] = ACTIONS(87), + [anon_sym_thread] = ACTIONS(89), + [anon_sym_atomic] = ACTIONS(91), + [sym___double_quote] = ACTIONS(1414), + [sym___single_quote] = ACTIONS(1416), + [sym___c_double_quote] = ACTIONS(1418), + [sym___c_single_quote] = ACTIONS(1420), + [sym___r_double_quote] = ACTIONS(1422), + [sym___r_single_quote] = ACTIONS(1424), + }, + [895] = { + [sym_line_comment] = STATE(895), + [sym_block_comment] = STATE(895), + [sym__expression] = STATE(1619), + [sym__expression_without_blocks] = STATE(1747), + [sym__expression_with_blocks] = STATE(1747), + [sym_inc_expression] = STATE(1749), + [sym_dec_expression] = STATE(1749), + [sym_or_block_expression] = STATE(1749), + [sym_option_propagation_expression] = STATE(1749), + [sym_result_propagation_expression] = STATE(1749), + [sym_anon_struct_value_expression] = STATE(1746), + [sym_go_expression] = STATE(1749), + [sym_spawn_expression] = STATE(1749), + [sym_parenthesized_expression] = STATE(1749), + [sym_call_expression] = STATE(1749), + [sym_type_initializer] = STATE(1746), + [sym_function_literal] = STATE(1749), + [sym_reference_expression] = STATE(1745), + [sym_type_reference_expression] = STATE(3460), + [sym_unary_expression] = STATE(1749), + [sym_receive_expression] = STATE(1749), + [sym_binary_expression] = STATE(1749), + [sym_as_type_cast_expression] = STATE(1749), + [sym__max_group] = STATE(1749), + [sym_literal] = STATE(1738), + [sym_map_init_expression] = STATE(1746), + [sym_array_creation] = STATE(1749), + [sym_fixed_array_creation] = STATE(1749), + [sym_selector_expression] = STATE(1749), + [sym_index_expression] = STATE(1749), + [sym_slice_expression] = STATE(1749), + [sym_if_expression] = STATE(1746), + [sym_compile_time_if_expression] = STATE(1746), + [sym_is_expression] = STATE(1749), + [sym_in_expression] = STATE(1749), + [sym_enum_fetch] = STATE(1749), + [sym_match_expression] = STATE(1746), + [sym_select_expression] = STATE(1746), + [sym_lock_expression] = STATE(1746), + [sym_unsafe_expression] = STATE(1746), + [sym_sql_expression] = STATE(1746), + [sym_c_string_literal] = STATE(1733), + [sym_raw_string_literal] = STATE(1733), + [sym_interpreted_string_literal] = STATE(1733), + [sym_mutability_modifiers] = STATE(600), + [sym_plain_type] = STATE(4121), + [sym__plain_type_without_special] = STATE(2360), + [sym_anon_struct_type] = STATE(2362), + [sym_multi_return_type] = STATE(2360), + [sym_result_type] = STATE(2360), + [sym_option_type] = STATE(2360), + [sym_qualified_type] = STATE(3460), + [sym_fixed_array_type] = STATE(2362), + [sym_array_type] = STATE(2362), + [sym_pointer_type] = STATE(2362), + [sym_wrong_pointer_type] = STATE(2362), + [sym_map_type] = STATE(2362), + [sym_channel_type] = STATE(2362), + [sym_shared_type] = STATE(2362), + [sym_thread_type] = STATE(2362), + [sym_atomic_type] = STATE(2362), + [sym_generic_type] = STATE(2362), + [sym_function_type] = STATE(2362), + [sym_identifier] = ACTIONS(3422), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), [anon_sym_DOT] = ACTIONS(309), - [anon_sym_LBRACE] = ACTIONS(3418), + [anon_sym_LBRACE] = ACTIONS(3424), [anon_sym_LPAREN] = ACTIONS(315), [anon_sym_fn] = ACTIONS(317), [anon_sym_PLUS] = ACTIONS(319), @@ -125199,189 +126017,75 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym___r_double_quote] = ACTIONS(387), [sym___r_single_quote] = ACTIONS(389), }, - [889] = { - [sym_line_comment] = STATE(889), - [sym_block_comment] = STATE(889), - [sym__expression] = STATE(968), - [sym__expression_without_blocks] = STATE(1017), - [sym__expression_with_blocks] = STATE(1017), - [sym_inc_expression] = STATE(1018), - [sym_dec_expression] = STATE(1018), - [sym_or_block_expression] = STATE(1018), - [sym_option_propagation_expression] = STATE(1018), - [sym_result_propagation_expression] = STATE(1018), - [sym_anon_struct_value_expression] = STATE(993), - [sym_go_expression] = STATE(1018), - [sym_spawn_expression] = STATE(1018), - [sym_parenthesized_expression] = STATE(1018), - [sym_call_expression] = STATE(1018), - [sym_type_initializer] = STATE(993), - [sym_function_literal] = STATE(1018), - [sym_reference_expression] = STATE(1046), - [sym_type_reference_expression] = STATE(3541), - [sym_unary_expression] = STATE(1018), - [sym_receive_expression] = STATE(1018), - [sym_binary_expression] = STATE(1018), - [sym_as_type_cast_expression] = STATE(1018), - [sym__max_group] = STATE(1018), - [sym_literal] = STATE(1014), - [sym_map_init_expression] = STATE(993), - [sym_array_creation] = STATE(1018), - [sym_fixed_array_creation] = STATE(1018), - [sym_selector_expression] = STATE(1018), - [sym_index_expression] = STATE(1018), - [sym_slice_expression] = STATE(1018), - [sym_if_expression] = STATE(993), - [sym_compile_time_if_expression] = STATE(993), - [sym_is_expression] = STATE(1018), - [sym_in_expression] = STATE(1018), - [sym_enum_fetch] = STATE(1018), - [sym_match_expression] = STATE(993), - [sym_select_expression] = STATE(993), - [sym_lock_expression] = STATE(993), - [sym_unsafe_expression] = STATE(993), - [sym_sql_expression] = STATE(993), - [sym_c_string_literal] = STATE(1006), - [sym_raw_string_literal] = STATE(1006), - [sym_interpreted_string_literal] = STATE(1006), - [sym_mutability_modifiers] = STATE(691), - [sym_plain_type] = STATE(4296), - [sym__plain_type_without_special] = STATE(2302), - [sym_anon_struct_type] = STATE(2303), - [sym_multi_return_type] = STATE(2302), - [sym_result_type] = STATE(2302), - [sym_option_type] = STATE(2302), - [sym_qualified_type] = STATE(3541), - [sym_fixed_array_type] = STATE(2303), - [sym_array_type] = STATE(2303), - [sym_pointer_type] = STATE(2303), - [sym_wrong_pointer_type] = STATE(2303), - [sym_map_type] = STATE(2303), - [sym_channel_type] = STATE(2303), - [sym_shared_type] = STATE(2303), - [sym_thread_type] = STATE(2303), - [sym_atomic_type] = STATE(2303), - [sym_generic_type] = STATE(2303), - [sym_function_type] = STATE(2303), - [sym_identifier] = ACTIONS(493), - [anon_sym_SLASH_SLASH] = ACTIONS(3), - [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(501), - [anon_sym_LBRACE] = ACTIONS(2319), - [anon_sym_LPAREN] = ACTIONS(2321), - [anon_sym_fn] = ACTIONS(507), - [anon_sym_PLUS] = ACTIONS(3360), - [anon_sym_DASH] = ACTIONS(3360), - [anon_sym_STAR] = ACTIONS(3362), - [anon_sym_struct] = ACTIONS(513), - [anon_sym_mut] = ACTIONS(41), - [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(3364), - [anon_sym_go] = ACTIONS(3366), - [anon_sym_spawn] = ACTIONS(3368), - [anon_sym_json_DOTdecode] = ACTIONS(2329), - [anon_sym_LBRACK2] = ACTIONS(2331), - [anon_sym_TILDE] = ACTIONS(3360), - [anon_sym_CARET] = ACTIONS(3360), - [anon_sym_AMP] = ACTIONS(3370), - [anon_sym_LT_DASH] = ACTIONS(3372), - [sym_none] = ACTIONS(531), - [sym_true] = ACTIONS(531), - [sym_false] = ACTIONS(531), - [sym_nil] = ACTIONS(531), - [anon_sym_if] = ACTIONS(533), - [anon_sym_DOLLARif] = ACTIONS(535), - [anon_sym_match] = ACTIONS(537), - [anon_sym_select] = ACTIONS(3374), - [anon_sym_lock] = ACTIONS(3376), - [anon_sym_rlock] = ACTIONS(3376), - [anon_sym_unsafe] = ACTIONS(543), - [anon_sym_sql] = ACTIONS(545), - [sym_int_literal] = ACTIONS(531), - [sym_float_literal] = ACTIONS(2337), - [sym_rune_literal] = ACTIONS(2337), - [sym_pseudo_compile_time_identifier] = ACTIONS(547), - [anon_sym_shared] = ACTIONS(83), - [anon_sym_map_LBRACK] = ACTIONS(85), - [anon_sym_chan] = ACTIONS(87), - [anon_sym_thread] = ACTIONS(89), - [anon_sym_atomic] = ACTIONS(91), - [sym___double_quote] = ACTIONS(2339), - [sym___single_quote] = ACTIONS(2341), - [sym___c_double_quote] = ACTIONS(2343), - [sym___c_single_quote] = ACTIONS(2345), - [sym___r_double_quote] = ACTIONS(2347), - [sym___r_single_quote] = ACTIONS(2349), - }, - [890] = { - [sym_line_comment] = STATE(890), - [sym_block_comment] = STATE(890), - [sym__expression] = STATE(1611), - [sym__expression_without_blocks] = STATE(1692), - [sym__expression_with_blocks] = STATE(1692), - [sym_inc_expression] = STATE(1684), - [sym_dec_expression] = STATE(1684), - [sym_or_block_expression] = STATE(1684), - [sym_option_propagation_expression] = STATE(1684), - [sym_result_propagation_expression] = STATE(1684), - [sym_anon_struct_value_expression] = STATE(1677), - [sym_go_expression] = STATE(1684), - [sym_spawn_expression] = STATE(1684), - [sym_parenthesized_expression] = STATE(1684), - [sym_call_expression] = STATE(1684), - [sym_type_initializer] = STATE(1677), - [sym_function_literal] = STATE(1684), - [sym_reference_expression] = STATE(1674), - [sym_type_reference_expression] = STATE(3541), - [sym_unary_expression] = STATE(1684), - [sym_receive_expression] = STATE(1684), - [sym_binary_expression] = STATE(1684), - [sym_as_type_cast_expression] = STATE(1684), - [sym__max_group] = STATE(1684), - [sym_literal] = STATE(1698), - [sym_map_init_expression] = STATE(1677), - [sym_array_creation] = STATE(1684), - [sym_fixed_array_creation] = STATE(1684), - [sym_selector_expression] = STATE(1684), - [sym_index_expression] = STATE(1684), - [sym_slice_expression] = STATE(1684), - [sym_if_expression] = STATE(1677), - [sym_compile_time_if_expression] = STATE(1677), - [sym_is_expression] = STATE(1684), - [sym_in_expression] = STATE(1684), - [sym_enum_fetch] = STATE(1684), - [sym_match_expression] = STATE(1677), - [sym_select_expression] = STATE(1677), - [sym_lock_expression] = STATE(1677), - [sym_unsafe_expression] = STATE(1677), - [sym_sql_expression] = STATE(1677), - [sym_c_string_literal] = STATE(1705), - [sym_raw_string_literal] = STATE(1705), - [sym_interpreted_string_literal] = STATE(1705), - [sym_mutability_modifiers] = STATE(664), - [sym_plain_type] = STATE(4157), - [sym__plain_type_without_special] = STATE(2302), - [sym_anon_struct_type] = STATE(2303), - [sym_multi_return_type] = STATE(2302), - [sym_result_type] = STATE(2302), - [sym_option_type] = STATE(2302), - [sym_qualified_type] = STATE(3541), - [sym_fixed_array_type] = STATE(2303), - [sym_array_type] = STATE(2303), - [sym_pointer_type] = STATE(2303), - [sym_wrong_pointer_type] = STATE(2303), - [sym_map_type] = STATE(2303), - [sym_channel_type] = STATE(2303), - [sym_shared_type] = STATE(2303), - [sym_thread_type] = STATE(2303), - [sym_atomic_type] = STATE(2303), - [sym_generic_type] = STATE(2303), - [sym_function_type] = STATE(2303), - [sym_identifier] = ACTIONS(3416), + [896] = { + [sym_line_comment] = STATE(896), + [sym_block_comment] = STATE(896), + [sym__expression] = STATE(1615), + [sym__expression_without_blocks] = STATE(1747), + [sym__expression_with_blocks] = STATE(1747), + [sym_inc_expression] = STATE(1749), + [sym_dec_expression] = STATE(1749), + [sym_or_block_expression] = STATE(1749), + [sym_option_propagation_expression] = STATE(1749), + [sym_result_propagation_expression] = STATE(1749), + [sym_anon_struct_value_expression] = STATE(1746), + [sym_go_expression] = STATE(1749), + [sym_spawn_expression] = STATE(1749), + [sym_parenthesized_expression] = STATE(1749), + [sym_call_expression] = STATE(1749), + [sym_type_initializer] = STATE(1746), + [sym_function_literal] = STATE(1749), + [sym_reference_expression] = STATE(1745), + [sym_type_reference_expression] = STATE(3460), + [sym_unary_expression] = STATE(1749), + [sym_receive_expression] = STATE(1749), + [sym_binary_expression] = STATE(1749), + [sym_as_type_cast_expression] = STATE(1749), + [sym__max_group] = STATE(1749), + [sym_literal] = STATE(1738), + [sym_map_init_expression] = STATE(1746), + [sym_array_creation] = STATE(1749), + [sym_fixed_array_creation] = STATE(1749), + [sym_selector_expression] = STATE(1749), + [sym_index_expression] = STATE(1749), + [sym_slice_expression] = STATE(1749), + [sym_if_expression] = STATE(1746), + [sym_compile_time_if_expression] = STATE(1746), + [sym_is_expression] = STATE(1749), + [sym_in_expression] = STATE(1749), + [sym_enum_fetch] = STATE(1749), + [sym_match_expression] = STATE(1746), + [sym_select_expression] = STATE(1746), + [sym_lock_expression] = STATE(1746), + [sym_unsafe_expression] = STATE(1746), + [sym_sql_expression] = STATE(1746), + [sym_c_string_literal] = STATE(1733), + [sym_raw_string_literal] = STATE(1733), + [sym_interpreted_string_literal] = STATE(1733), + [sym_mutability_modifiers] = STATE(600), + [sym_plain_type] = STATE(4121), + [sym__plain_type_without_special] = STATE(2360), + [sym_anon_struct_type] = STATE(2362), + [sym_multi_return_type] = STATE(2360), + [sym_result_type] = STATE(2360), + [sym_option_type] = STATE(2360), + [sym_qualified_type] = STATE(3460), + [sym_fixed_array_type] = STATE(2362), + [sym_array_type] = STATE(2362), + [sym_pointer_type] = STATE(2362), + [sym_wrong_pointer_type] = STATE(2362), + [sym_map_type] = STATE(2362), + [sym_channel_type] = STATE(2362), + [sym_shared_type] = STATE(2362), + [sym_thread_type] = STATE(2362), + [sym_atomic_type] = STATE(2362), + [sym_generic_type] = STATE(2362), + [sym_function_type] = STATE(2362), + [sym_identifier] = ACTIONS(3422), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), [anon_sym_DOT] = ACTIONS(309), - [anon_sym_LBRACE] = ACTIONS(3418), + [anon_sym_LBRACE] = ACTIONS(3424), [anon_sym_LPAREN] = ACTIONS(315), [anon_sym_fn] = ACTIONS(317), [anon_sym_PLUS] = ACTIONS(319), @@ -125427,75 +126131,189 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym___r_double_quote] = ACTIONS(387), [sym___r_single_quote] = ACTIONS(389), }, - [891] = { - [sym_line_comment] = STATE(891), - [sym_block_comment] = STATE(891), - [sym__expression] = STATE(1610), - [sym__expression_without_blocks] = STATE(1692), - [sym__expression_with_blocks] = STATE(1692), - [sym_inc_expression] = STATE(1684), - [sym_dec_expression] = STATE(1684), - [sym_or_block_expression] = STATE(1684), - [sym_option_propagation_expression] = STATE(1684), - [sym_result_propagation_expression] = STATE(1684), - [sym_anon_struct_value_expression] = STATE(1677), - [sym_go_expression] = STATE(1684), - [sym_spawn_expression] = STATE(1684), - [sym_parenthesized_expression] = STATE(1684), - [sym_call_expression] = STATE(1684), - [sym_type_initializer] = STATE(1677), - [sym_function_literal] = STATE(1684), - [sym_reference_expression] = STATE(1674), - [sym_type_reference_expression] = STATE(3541), - [sym_unary_expression] = STATE(1684), - [sym_receive_expression] = STATE(1684), - [sym_binary_expression] = STATE(1684), - [sym_as_type_cast_expression] = STATE(1684), - [sym__max_group] = STATE(1684), - [sym_literal] = STATE(1698), - [sym_map_init_expression] = STATE(1677), - [sym_array_creation] = STATE(1684), - [sym_fixed_array_creation] = STATE(1684), - [sym_selector_expression] = STATE(1684), - [sym_index_expression] = STATE(1684), - [sym_slice_expression] = STATE(1684), - [sym_if_expression] = STATE(1677), - [sym_compile_time_if_expression] = STATE(1677), - [sym_is_expression] = STATE(1684), - [sym_in_expression] = STATE(1684), - [sym_enum_fetch] = STATE(1684), - [sym_match_expression] = STATE(1677), - [sym_select_expression] = STATE(1677), - [sym_lock_expression] = STATE(1677), - [sym_unsafe_expression] = STATE(1677), - [sym_sql_expression] = STATE(1677), - [sym_c_string_literal] = STATE(1705), - [sym_raw_string_literal] = STATE(1705), - [sym_interpreted_string_literal] = STATE(1705), - [sym_mutability_modifiers] = STATE(664), - [sym_plain_type] = STATE(4157), - [sym__plain_type_without_special] = STATE(2302), - [sym_anon_struct_type] = STATE(2303), - [sym_multi_return_type] = STATE(2302), - [sym_result_type] = STATE(2302), - [sym_option_type] = STATE(2302), - [sym_qualified_type] = STATE(3541), - [sym_fixed_array_type] = STATE(2303), - [sym_array_type] = STATE(2303), - [sym_pointer_type] = STATE(2303), - [sym_wrong_pointer_type] = STATE(2303), - [sym_map_type] = STATE(2303), - [sym_channel_type] = STATE(2303), - [sym_shared_type] = STATE(2303), - [sym_thread_type] = STATE(2303), - [sym_atomic_type] = STATE(2303), - [sym_generic_type] = STATE(2303), - [sym_function_type] = STATE(2303), - [sym_identifier] = ACTIONS(3416), + [897] = { + [sym_line_comment] = STATE(897), + [sym_block_comment] = STATE(897), + [sym__expression] = STATE(1290), + [sym__expression_without_blocks] = STATE(1318), + [sym__expression_with_blocks] = STATE(1318), + [sym_inc_expression] = STATE(1319), + [sym_dec_expression] = STATE(1319), + [sym_or_block_expression] = STATE(1319), + [sym_option_propagation_expression] = STATE(1319), + [sym_result_propagation_expression] = STATE(1319), + [sym_anon_struct_value_expression] = STATE(1320), + [sym_go_expression] = STATE(1319), + [sym_spawn_expression] = STATE(1319), + [sym_parenthesized_expression] = STATE(1319), + [sym_call_expression] = STATE(1319), + [sym_type_initializer] = STATE(1320), + [sym_function_literal] = STATE(1319), + [sym_reference_expression] = STATE(1298), + [sym_type_reference_expression] = STATE(3460), + [sym_unary_expression] = STATE(1319), + [sym_receive_expression] = STATE(1319), + [sym_binary_expression] = STATE(1319), + [sym_as_type_cast_expression] = STATE(1319), + [sym__max_group] = STATE(1319), + [sym_literal] = STATE(1314), + [sym_map_init_expression] = STATE(1320), + [sym_array_creation] = STATE(1319), + [sym_fixed_array_creation] = STATE(1319), + [sym_selector_expression] = STATE(1319), + [sym_index_expression] = STATE(1319), + [sym_slice_expression] = STATE(1319), + [sym_if_expression] = STATE(1320), + [sym_compile_time_if_expression] = STATE(1320), + [sym_is_expression] = STATE(1319), + [sym_in_expression] = STATE(1319), + [sym_enum_fetch] = STATE(1319), + [sym_match_expression] = STATE(1320), + [sym_select_expression] = STATE(1320), + [sym_lock_expression] = STATE(1320), + [sym_unsafe_expression] = STATE(1320), + [sym_sql_expression] = STATE(1320), + [sym_c_string_literal] = STATE(1291), + [sym_raw_string_literal] = STATE(1291), + [sym_interpreted_string_literal] = STATE(1291), + [sym_mutability_modifiers] = STATE(639), + [sym_plain_type] = STATE(4307), + [sym__plain_type_without_special] = STATE(2360), + [sym_anon_struct_type] = STATE(2362), + [sym_multi_return_type] = STATE(2360), + [sym_result_type] = STATE(2360), + [sym_option_type] = STATE(2360), + [sym_qualified_type] = STATE(3460), + [sym_fixed_array_type] = STATE(2362), + [sym_array_type] = STATE(2362), + [sym_pointer_type] = STATE(2362), + [sym_wrong_pointer_type] = STATE(2362), + [sym_map_type] = STATE(2362), + [sym_channel_type] = STATE(2362), + [sym_shared_type] = STATE(2362), + [sym_thread_type] = STATE(2362), + [sym_atomic_type] = STATE(2362), + [sym_generic_type] = STATE(2362), + [sym_function_type] = STATE(2362), + [sym_identifier] = ACTIONS(1360), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(1362), + [anon_sym_LBRACE] = ACTIONS(1364), + [anon_sym_LPAREN] = ACTIONS(1366), + [anon_sym_fn] = ACTIONS(1368), + [anon_sym_PLUS] = ACTIONS(1851), + [anon_sym_DASH] = ACTIONS(1851), + [anon_sym_STAR] = ACTIONS(1853), + [anon_sym_struct] = ACTIONS(1376), + [anon_sym_mut] = ACTIONS(41), + [anon_sym_QMARK] = ACTIONS(47), + [anon_sym_BANG] = ACTIONS(1855), + [anon_sym_go] = ACTIONS(1857), + [anon_sym_spawn] = ACTIONS(1859), + [anon_sym_json_DOTdecode] = ACTIONS(1384), + [anon_sym_LBRACK2] = ACTIONS(1386), + [anon_sym_TILDE] = ACTIONS(1851), + [anon_sym_CARET] = ACTIONS(1851), + [anon_sym_AMP] = ACTIONS(1861), + [anon_sym_LT_DASH] = ACTIONS(1863), + [sym_none] = ACTIONS(1392), + [sym_true] = ACTIONS(1392), + [sym_false] = ACTIONS(1392), + [sym_nil] = ACTIONS(1392), + [anon_sym_if] = ACTIONS(1865), + [anon_sym_DOLLARif] = ACTIONS(1396), + [anon_sym_match] = ACTIONS(1398), + [anon_sym_select] = ACTIONS(1867), + [anon_sym_lock] = ACTIONS(1869), + [anon_sym_rlock] = ACTIONS(1869), + [anon_sym_unsafe] = ACTIONS(1871), + [anon_sym_sql] = ACTIONS(1406), + [sym_int_literal] = ACTIONS(1392), + [sym_float_literal] = ACTIONS(1410), + [sym_rune_literal] = ACTIONS(1410), + [sym_pseudo_compile_time_identifier] = ACTIONS(1412), + [anon_sym_shared] = ACTIONS(83), + [anon_sym_map_LBRACK] = ACTIONS(85), + [anon_sym_chan] = ACTIONS(87), + [anon_sym_thread] = ACTIONS(89), + [anon_sym_atomic] = ACTIONS(91), + [sym___double_quote] = ACTIONS(1414), + [sym___single_quote] = ACTIONS(1416), + [sym___c_double_quote] = ACTIONS(1418), + [sym___c_single_quote] = ACTIONS(1420), + [sym___r_double_quote] = ACTIONS(1422), + [sym___r_single_quote] = ACTIONS(1424), + }, + [898] = { + [sym_line_comment] = STATE(898), + [sym_block_comment] = STATE(898), + [sym__expression] = STATE(1614), + [sym__expression_without_blocks] = STATE(1747), + [sym__expression_with_blocks] = STATE(1747), + [sym_inc_expression] = STATE(1749), + [sym_dec_expression] = STATE(1749), + [sym_or_block_expression] = STATE(1749), + [sym_option_propagation_expression] = STATE(1749), + [sym_result_propagation_expression] = STATE(1749), + [sym_anon_struct_value_expression] = STATE(1746), + [sym_go_expression] = STATE(1749), + [sym_spawn_expression] = STATE(1749), + [sym_parenthesized_expression] = STATE(1749), + [sym_call_expression] = STATE(1749), + [sym_type_initializer] = STATE(1746), + [sym_function_literal] = STATE(1749), + [sym_reference_expression] = STATE(1745), + [sym_type_reference_expression] = STATE(3460), + [sym_unary_expression] = STATE(1749), + [sym_receive_expression] = STATE(1749), + [sym_binary_expression] = STATE(1749), + [sym_as_type_cast_expression] = STATE(1749), + [sym__max_group] = STATE(1749), + [sym_literal] = STATE(1738), + [sym_map_init_expression] = STATE(1746), + [sym_array_creation] = STATE(1749), + [sym_fixed_array_creation] = STATE(1749), + [sym_selector_expression] = STATE(1749), + [sym_index_expression] = STATE(1749), + [sym_slice_expression] = STATE(1749), + [sym_if_expression] = STATE(1746), + [sym_compile_time_if_expression] = STATE(1746), + [sym_is_expression] = STATE(1749), + [sym_in_expression] = STATE(1749), + [sym_enum_fetch] = STATE(1749), + [sym_match_expression] = STATE(1746), + [sym_select_expression] = STATE(1746), + [sym_lock_expression] = STATE(1746), + [sym_unsafe_expression] = STATE(1746), + [sym_sql_expression] = STATE(1746), + [sym_c_string_literal] = STATE(1733), + [sym_raw_string_literal] = STATE(1733), + [sym_interpreted_string_literal] = STATE(1733), + [sym_mutability_modifiers] = STATE(600), + [sym_plain_type] = STATE(4121), + [sym__plain_type_without_special] = STATE(2360), + [sym_anon_struct_type] = STATE(2362), + [sym_multi_return_type] = STATE(2360), + [sym_result_type] = STATE(2360), + [sym_option_type] = STATE(2360), + [sym_qualified_type] = STATE(3460), + [sym_fixed_array_type] = STATE(2362), + [sym_array_type] = STATE(2362), + [sym_pointer_type] = STATE(2362), + [sym_wrong_pointer_type] = STATE(2362), + [sym_map_type] = STATE(2362), + [sym_channel_type] = STATE(2362), + [sym_shared_type] = STATE(2362), + [sym_thread_type] = STATE(2362), + [sym_atomic_type] = STATE(2362), + [sym_generic_type] = STATE(2362), + [sym_function_type] = STATE(2362), + [sym_identifier] = ACTIONS(3422), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), [anon_sym_DOT] = ACTIONS(309), - [anon_sym_LBRACE] = ACTIONS(3418), + [anon_sym_LBRACE] = ACTIONS(3424), [anon_sym_LPAREN] = ACTIONS(315), [anon_sym_fn] = ACTIONS(317), [anon_sym_PLUS] = ACTIONS(319), @@ -125541,4863 +126359,3951 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym___r_double_quote] = ACTIONS(387), [sym___r_single_quote] = ACTIONS(389), }, - [892] = { - [sym_line_comment] = STATE(892), - [sym_block_comment] = STATE(892), - [sym__expression] = STATE(2513), - [sym__expression_without_blocks] = STATE(2625), - [sym__expression_with_blocks] = STATE(2625), - [sym_inc_expression] = STATE(2765), - [sym_dec_expression] = STATE(2765), - [sym_or_block_expression] = STATE(2765), - [sym_option_propagation_expression] = STATE(2765), - [sym_result_propagation_expression] = STATE(2765), - [sym_anon_struct_value_expression] = STATE(2619), - [sym_go_expression] = STATE(2765), - [sym_spawn_expression] = STATE(2765), - [sym_parenthesized_expression] = STATE(2765), - [sym_call_expression] = STATE(2765), - [sym_type_initializer] = STATE(2619), - [sym_function_literal] = STATE(2765), - [sym_reference_expression] = STATE(2764), - [sym_type_reference_expression] = STATE(3541), - [sym_unary_expression] = STATE(2765), - [sym_receive_expression] = STATE(2765), - [sym_binary_expression] = STATE(2765), - [sym_as_type_cast_expression] = STATE(2765), - [sym__max_group] = STATE(2765), - [sym_literal] = STATE(2769), - [sym_map_init_expression] = STATE(2619), - [sym_array_creation] = STATE(2765), - [sym_fixed_array_creation] = STATE(2765), - [sym_selector_expression] = STATE(2765), - [sym_index_expression] = STATE(2765), - [sym_slice_expression] = STATE(2765), - [sym_if_expression] = STATE(2619), - [sym_compile_time_if_expression] = STATE(2619), - [sym_is_expression] = STATE(2765), - [sym_in_expression] = STATE(2765), - [sym_enum_fetch] = STATE(2765), - [sym_match_expression] = STATE(2619), - [sym_select_expression] = STATE(2619), - [sym_lock_expression] = STATE(2619), - [sym_unsafe_expression] = STATE(2619), - [sym_sql_expression] = STATE(2619), - [sym_c_string_literal] = STATE(2660), - [sym_raw_string_literal] = STATE(2660), - [sym_interpreted_string_literal] = STATE(2660), - [sym_mutability_modifiers] = STATE(567), - [sym_plain_type] = STATE(4008), - [sym__plain_type_without_special] = STATE(2302), - [sym_anon_struct_type] = STATE(2303), - [sym_multi_return_type] = STATE(2302), - [sym_result_type] = STATE(2302), - [sym_option_type] = STATE(2302), - [sym_qualified_type] = STATE(3541), - [sym_fixed_array_type] = STATE(2303), - [sym_array_type] = STATE(2303), - [sym_pointer_type] = STATE(2303), - [sym_wrong_pointer_type] = STATE(2303), - [sym_map_type] = STATE(2303), - [sym_channel_type] = STATE(2303), - [sym_shared_type] = STATE(2303), - [sym_thread_type] = STATE(2303), - [sym_atomic_type] = STATE(2303), - [sym_generic_type] = STATE(2303), - [sym_function_type] = STATE(2303), - [sym_identifier] = ACTIONS(1807), + [899] = { + [sym_line_comment] = STATE(899), + [sym_block_comment] = STATE(899), + [sym__expression] = STATE(1258), + [sym__expression_without_blocks] = STATE(1318), + [sym__expression_with_blocks] = STATE(1318), + [sym_inc_expression] = STATE(1319), + [sym_dec_expression] = STATE(1319), + [sym_or_block_expression] = STATE(1319), + [sym_option_propagation_expression] = STATE(1319), + [sym_result_propagation_expression] = STATE(1319), + [sym_anon_struct_value_expression] = STATE(1320), + [sym_go_expression] = STATE(1319), + [sym_spawn_expression] = STATE(1319), + [sym_parenthesized_expression] = STATE(1319), + [sym_call_expression] = STATE(1319), + [sym_type_initializer] = STATE(1320), + [sym_function_literal] = STATE(1319), + [sym_reference_expression] = STATE(1298), + [sym_type_reference_expression] = STATE(3460), + [sym_unary_expression] = STATE(1319), + [sym_receive_expression] = STATE(1319), + [sym_binary_expression] = STATE(1319), + [sym_as_type_cast_expression] = STATE(1319), + [sym__max_group] = STATE(1319), + [sym_literal] = STATE(1314), + [sym_map_init_expression] = STATE(1320), + [sym_array_creation] = STATE(1319), + [sym_fixed_array_creation] = STATE(1319), + [sym_selector_expression] = STATE(1319), + [sym_index_expression] = STATE(1319), + [sym_slice_expression] = STATE(1319), + [sym_if_expression] = STATE(1320), + [sym_compile_time_if_expression] = STATE(1320), + [sym_is_expression] = STATE(1319), + [sym_in_expression] = STATE(1319), + [sym_enum_fetch] = STATE(1319), + [sym_match_expression] = STATE(1320), + [sym_select_expression] = STATE(1320), + [sym_lock_expression] = STATE(1320), + [sym_unsafe_expression] = STATE(1320), + [sym_sql_expression] = STATE(1320), + [sym_c_string_literal] = STATE(1291), + [sym_raw_string_literal] = STATE(1291), + [sym_interpreted_string_literal] = STATE(1291), + [sym_mutability_modifiers] = STATE(639), + [sym_plain_type] = STATE(4307), + [sym__plain_type_without_special] = STATE(2360), + [sym_anon_struct_type] = STATE(2362), + [sym_multi_return_type] = STATE(2360), + [sym_result_type] = STATE(2360), + [sym_option_type] = STATE(2360), + [sym_qualified_type] = STATE(3460), + [sym_fixed_array_type] = STATE(2362), + [sym_array_type] = STATE(2362), + [sym_pointer_type] = STATE(2362), + [sym_wrong_pointer_type] = STATE(2362), + [sym_map_type] = STATE(2362), + [sym_channel_type] = STATE(2362), + [sym_shared_type] = STATE(2362), + [sym_thread_type] = STATE(2362), + [sym_atomic_type] = STATE(2362), + [sym_generic_type] = STATE(2362), + [sym_function_type] = STATE(2362), + [sym_identifier] = ACTIONS(1360), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1081), - [anon_sym_LBRACE] = ACTIONS(1083), - [anon_sym_LPAREN] = ACTIONS(1087), - [anon_sym_fn] = ACTIONS(1089), - [anon_sym_PLUS] = ACTIONS(3120), - [anon_sym_DASH] = ACTIONS(3120), - [anon_sym_STAR] = ACTIONS(3122), - [anon_sym_struct] = ACTIONS(1095), + [anon_sym_DOT] = ACTIONS(1362), + [anon_sym_LBRACE] = ACTIONS(1364), + [anon_sym_LPAREN] = ACTIONS(1366), + [anon_sym_fn] = ACTIONS(1368), + [anon_sym_PLUS] = ACTIONS(1851), + [anon_sym_DASH] = ACTIONS(1851), + [anon_sym_STAR] = ACTIONS(1853), + [anon_sym_struct] = ACTIONS(1376), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(3124), - [anon_sym_go] = ACTIONS(3126), - [anon_sym_spawn] = ACTIONS(3128), - [anon_sym_json_DOTdecode] = ACTIONS(1103), - [anon_sym_LBRACK2] = ACTIONS(1105), - [anon_sym_TILDE] = ACTIONS(3120), - [anon_sym_CARET] = ACTIONS(3120), - [anon_sym_AMP] = ACTIONS(3130), - [anon_sym_LT_DASH] = ACTIONS(3132), - [sym_none] = ACTIONS(1111), - [sym_true] = ACTIONS(1111), - [sym_false] = ACTIONS(1111), - [sym_nil] = ACTIONS(1111), - [anon_sym_if] = ACTIONS(1113), - [anon_sym_DOLLARif] = ACTIONS(1117), - [anon_sym_match] = ACTIONS(1119), - [anon_sym_select] = ACTIONS(3134), - [anon_sym_lock] = ACTIONS(3136), - [anon_sym_rlock] = ACTIONS(3136), - [anon_sym_unsafe] = ACTIONS(1125), - [anon_sym_sql] = ACTIONS(1127), - [sym_int_literal] = ACTIONS(1111), - [sym_float_literal] = ACTIONS(1129), - [sym_rune_literal] = ACTIONS(1129), - [sym_pseudo_compile_time_identifier] = ACTIONS(1131), + [anon_sym_BANG] = ACTIONS(1855), + [anon_sym_go] = ACTIONS(1857), + [anon_sym_spawn] = ACTIONS(1859), + [anon_sym_json_DOTdecode] = ACTIONS(1384), + [anon_sym_LBRACK2] = ACTIONS(1386), + [anon_sym_TILDE] = ACTIONS(1851), + [anon_sym_CARET] = ACTIONS(1851), + [anon_sym_AMP] = ACTIONS(1861), + [anon_sym_LT_DASH] = ACTIONS(1863), + [sym_none] = ACTIONS(1392), + [sym_true] = ACTIONS(1392), + [sym_false] = ACTIONS(1392), + [sym_nil] = ACTIONS(1392), + [anon_sym_if] = ACTIONS(1865), + [anon_sym_DOLLARif] = ACTIONS(1396), + [anon_sym_match] = ACTIONS(1398), + [anon_sym_select] = ACTIONS(1867), + [anon_sym_lock] = ACTIONS(1869), + [anon_sym_rlock] = ACTIONS(1869), + [anon_sym_unsafe] = ACTIONS(1871), + [anon_sym_sql] = ACTIONS(1406), + [sym_int_literal] = ACTIONS(1392), + [sym_float_literal] = ACTIONS(1410), + [sym_rune_literal] = ACTIONS(1410), + [sym_pseudo_compile_time_identifier] = ACTIONS(1412), [anon_sym_shared] = ACTIONS(83), [anon_sym_map_LBRACK] = ACTIONS(85), [anon_sym_chan] = ACTIONS(87), [anon_sym_thread] = ACTIONS(89), [anon_sym_atomic] = ACTIONS(91), - [sym___double_quote] = ACTIONS(1133), - [sym___single_quote] = ACTIONS(1135), - [sym___c_double_quote] = ACTIONS(1137), - [sym___c_single_quote] = ACTIONS(1139), - [sym___r_double_quote] = ACTIONS(1141), - [sym___r_single_quote] = ACTIONS(1143), + [sym___double_quote] = ACTIONS(1414), + [sym___single_quote] = ACTIONS(1416), + [sym___c_double_quote] = ACTIONS(1418), + [sym___c_single_quote] = ACTIONS(1420), + [sym___r_double_quote] = ACTIONS(1422), + [sym___r_single_quote] = ACTIONS(1424), }, - [893] = { - [sym_line_comment] = STATE(893), - [sym_block_comment] = STATE(893), - [sym__expression] = STATE(1811), - [sym__expression_without_blocks] = STATE(2044), - [sym__expression_with_blocks] = STATE(2044), - [sym_inc_expression] = STATE(2045), - [sym_dec_expression] = STATE(2045), - [sym_or_block_expression] = STATE(2045), - [sym_option_propagation_expression] = STATE(2045), - [sym_result_propagation_expression] = STATE(2045), - [sym_anon_struct_value_expression] = STATE(2046), - [sym_go_expression] = STATE(2045), - [sym_spawn_expression] = STATE(2045), - [sym_parenthesized_expression] = STATE(2045), - [sym_call_expression] = STATE(2045), - [sym_type_initializer] = STATE(2046), - [sym_function_literal] = STATE(2045), - [sym_reference_expression] = STATE(1912), - [sym_type_reference_expression] = STATE(3541), - [sym_unary_expression] = STATE(2045), - [sym_receive_expression] = STATE(2045), - [sym_binary_expression] = STATE(2045), - [sym_as_type_cast_expression] = STATE(2045), - [sym__max_group] = STATE(2045), - [sym_literal] = STATE(2043), - [sym_map_init_expression] = STATE(2046), - [sym_array_creation] = STATE(2045), - [sym_fixed_array_creation] = STATE(2045), - [sym_selector_expression] = STATE(2045), - [sym_index_expression] = STATE(2045), - [sym_slice_expression] = STATE(2045), - [sym_if_expression] = STATE(2046), - [sym_compile_time_if_expression] = STATE(2046), - [sym_is_expression] = STATE(2045), - [sym_in_expression] = STATE(2045), - [sym_enum_fetch] = STATE(2045), - [sym_match_expression] = STATE(2046), - [sym_select_expression] = STATE(2046), - [sym_lock_expression] = STATE(2046), - [sym_unsafe_expression] = STATE(2046), - [sym_sql_expression] = STATE(2046), - [sym_c_string_literal] = STATE(2041), - [sym_raw_string_literal] = STATE(2041), - [sym_interpreted_string_literal] = STATE(2041), - [sym_mutability_modifiers] = STATE(689), - [sym_plain_type] = STATE(4052), - [sym__plain_type_without_special] = STATE(2302), - [sym_anon_struct_type] = STATE(2303), - [sym_multi_return_type] = STATE(2302), - [sym_result_type] = STATE(2302), - [sym_option_type] = STATE(2302), - [sym_qualified_type] = STATE(3541), - [sym_fixed_array_type] = STATE(2303), - [sym_array_type] = STATE(2303), - [sym_pointer_type] = STATE(2303), - [sym_wrong_pointer_type] = STATE(2303), - [sym_map_type] = STATE(2303), - [sym_channel_type] = STATE(2303), - [sym_shared_type] = STATE(2303), - [sym_thread_type] = STATE(2303), - [sym_atomic_type] = STATE(2303), - [sym_generic_type] = STATE(2303), - [sym_function_type] = STATE(2303), - [sym_identifier] = ACTIONS(3142), + [900] = { + [sym_line_comment] = STATE(900), + [sym_block_comment] = STATE(900), + [sym__expression] = STATE(2589), + [sym__expression_without_blocks] = STATE(2347), + [sym__expression_with_blocks] = STATE(2347), + [sym_inc_expression] = STATE(2379), + [sym_dec_expression] = STATE(2379), + [sym_or_block_expression] = STATE(2379), + [sym_option_propagation_expression] = STATE(2379), + [sym_result_propagation_expression] = STATE(2379), + [sym_anon_struct_value_expression] = STATE(2378), + [sym_go_expression] = STATE(2379), + [sym_spawn_expression] = STATE(2379), + [sym_parenthesized_expression] = STATE(2379), + [sym_call_expression] = STATE(2379), + [sym_type_initializer] = STATE(2378), + [sym_function_literal] = STATE(2379), + [sym_reference_expression] = STATE(2377), + [sym_type_reference_expression] = STATE(3460), + [sym_unary_expression] = STATE(2379), + [sym_receive_expression] = STATE(2379), + [sym_binary_expression] = STATE(2379), + [sym_as_type_cast_expression] = STATE(2379), + [sym__max_group] = STATE(2379), + [sym_literal] = STATE(2392), + [sym_map_init_expression] = STATE(2378), + [sym_array_creation] = STATE(2379), + [sym_fixed_array_creation] = STATE(2379), + [sym_selector_expression] = STATE(2379), + [sym_index_expression] = STATE(2379), + [sym_slice_expression] = STATE(2379), + [sym_if_expression] = STATE(2378), + [sym_compile_time_if_expression] = STATE(2378), + [sym_is_expression] = STATE(2379), + [sym_in_expression] = STATE(2379), + [sym_enum_fetch] = STATE(2379), + [sym_match_expression] = STATE(2378), + [sym_select_expression] = STATE(2378), + [sym_lock_expression] = STATE(2378), + [sym_unsafe_expression] = STATE(2378), + [sym_sql_expression] = STATE(2378), + [sym_c_string_literal] = STATE(2401), + [sym_raw_string_literal] = STATE(2401), + [sym_interpreted_string_literal] = STATE(2401), + [sym_mutability_modifiers] = STATE(553), + [sym_plain_type] = STATE(4160), + [sym__plain_type_without_special] = STATE(2360), + [sym_anon_struct_type] = STATE(2362), + [sym_multi_return_type] = STATE(2360), + [sym_result_type] = STATE(2360), + [sym_option_type] = STATE(2360), + [sym_qualified_type] = STATE(3460), + [sym_fixed_array_type] = STATE(2362), + [sym_array_type] = STATE(2362), + [sym_pointer_type] = STATE(2362), + [sym_wrong_pointer_type] = STATE(2362), + [sym_map_type] = STATE(2362), + [sym_channel_type] = STATE(2362), + [sym_shared_type] = STATE(2362), + [sym_thread_type] = STATE(2362), + [sym_atomic_type] = STATE(2362), + [sym_generic_type] = STATE(2362), + [sym_function_type] = STATE(2362), + [sym_identifier] = ACTIONS(1815), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(811), - [anon_sym_LBRACE] = ACTIONS(3144), - [anon_sym_LPAREN] = ACTIONS(815), - [anon_sym_fn] = ACTIONS(817), - [anon_sym_PLUS] = ACTIONS(3146), - [anon_sym_DASH] = ACTIONS(3146), - [anon_sym_STAR] = ACTIONS(3148), - [anon_sym_struct] = ACTIONS(823), + [anon_sym_DOT] = ACTIONS(1430), + [anon_sym_LBRACE] = ACTIONS(1432), + [anon_sym_LPAREN] = ACTIONS(1434), + [anon_sym_fn] = ACTIONS(1436), + [anon_sym_PLUS] = ACTIONS(1817), + [anon_sym_DASH] = ACTIONS(1817), + [anon_sym_STAR] = ACTIONS(1819), + [anon_sym_struct] = ACTIONS(1442), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(3150), - [anon_sym_go] = ACTIONS(3152), - [anon_sym_spawn] = ACTIONS(3154), - [anon_sym_json_DOTdecode] = ACTIONS(833), - [anon_sym_LBRACK2] = ACTIONS(3156), - [anon_sym_TILDE] = ACTIONS(3146), - [anon_sym_CARET] = ACTIONS(3146), - [anon_sym_AMP] = ACTIONS(3158), - [anon_sym_LT_DASH] = ACTIONS(3160), - [sym_none] = ACTIONS(841), - [sym_true] = ACTIONS(841), - [sym_false] = ACTIONS(841), - [sym_nil] = ACTIONS(841), - [anon_sym_if] = ACTIONS(843), - [anon_sym_DOLLARif] = ACTIONS(845), - [anon_sym_match] = ACTIONS(847), - [anon_sym_select] = ACTIONS(3162), - [anon_sym_lock] = ACTIONS(3164), - [anon_sym_rlock] = ACTIONS(3164), - [anon_sym_unsafe] = ACTIONS(853), - [anon_sym_sql] = ACTIONS(855), - [sym_int_literal] = ACTIONS(841), - [sym_float_literal] = ACTIONS(857), - [sym_rune_literal] = ACTIONS(857), - [sym_pseudo_compile_time_identifier] = ACTIONS(859), + [anon_sym_BANG] = ACTIONS(1821), + [anon_sym_go] = ACTIONS(1823), + [anon_sym_spawn] = ACTIONS(1825), + [anon_sym_json_DOTdecode] = ACTIONS(1450), + [anon_sym_LBRACK2] = ACTIONS(1827), + [anon_sym_TILDE] = ACTIONS(1817), + [anon_sym_CARET] = ACTIONS(1817), + [anon_sym_AMP] = ACTIONS(1829), + [anon_sym_LT_DASH] = ACTIONS(1831), + [sym_none] = ACTIONS(1458), + [sym_true] = ACTIONS(1458), + [sym_false] = ACTIONS(1458), + [sym_nil] = ACTIONS(1458), + [anon_sym_if] = ACTIONS(1833), + [anon_sym_DOLLARif] = ACTIONS(1462), + [anon_sym_match] = ACTIONS(1464), + [anon_sym_select] = ACTIONS(1835), + [anon_sym_lock] = ACTIONS(1837), + [anon_sym_rlock] = ACTIONS(1837), + [anon_sym_unsafe] = ACTIONS(1839), + [anon_sym_sql] = ACTIONS(1472), + [sym_int_literal] = ACTIONS(1458), + [sym_float_literal] = ACTIONS(1474), + [sym_rune_literal] = ACTIONS(1474), + [sym_pseudo_compile_time_identifier] = ACTIONS(1476), [anon_sym_shared] = ACTIONS(83), [anon_sym_map_LBRACK] = ACTIONS(85), [anon_sym_chan] = ACTIONS(87), [anon_sym_thread] = ACTIONS(89), [anon_sym_atomic] = ACTIONS(91), - [sym___double_quote] = ACTIONS(861), - [sym___single_quote] = ACTIONS(863), - [sym___c_double_quote] = ACTIONS(865), - [sym___c_single_quote] = ACTIONS(867), - [sym___r_double_quote] = ACTIONS(869), - [sym___r_single_quote] = ACTIONS(871), + [sym___double_quote] = ACTIONS(1480), + [sym___single_quote] = ACTIONS(1482), + [sym___c_double_quote] = ACTIONS(1484), + [sym___c_single_quote] = ACTIONS(1486), + [sym___r_double_quote] = ACTIONS(1488), + [sym___r_single_quote] = ACTIONS(1490), }, - [894] = { - [sym_line_comment] = STATE(894), - [sym_block_comment] = STATE(894), - [sym__expression] = STATE(971), - [sym__expression_without_blocks] = STATE(1017), - [sym__expression_with_blocks] = STATE(1017), - [sym_inc_expression] = STATE(1018), - [sym_dec_expression] = STATE(1018), - [sym_or_block_expression] = STATE(1018), - [sym_option_propagation_expression] = STATE(1018), - [sym_result_propagation_expression] = STATE(1018), - [sym_anon_struct_value_expression] = STATE(993), - [sym_go_expression] = STATE(1018), - [sym_spawn_expression] = STATE(1018), - [sym_parenthesized_expression] = STATE(1018), - [sym_call_expression] = STATE(1018), - [sym_type_initializer] = STATE(993), - [sym_function_literal] = STATE(1018), - [sym_reference_expression] = STATE(1046), - [sym_type_reference_expression] = STATE(3541), - [sym_unary_expression] = STATE(1018), - [sym_receive_expression] = STATE(1018), - [sym_binary_expression] = STATE(1018), - [sym_as_type_cast_expression] = STATE(1018), - [sym__max_group] = STATE(1018), - [sym_literal] = STATE(1014), - [sym_map_init_expression] = STATE(993), - [sym_array_creation] = STATE(1018), - [sym_fixed_array_creation] = STATE(1018), - [sym_selector_expression] = STATE(1018), - [sym_index_expression] = STATE(1018), - [sym_slice_expression] = STATE(1018), - [sym_if_expression] = STATE(993), - [sym_compile_time_if_expression] = STATE(993), - [sym_is_expression] = STATE(1018), - [sym_in_expression] = STATE(1018), - [sym_enum_fetch] = STATE(1018), - [sym_match_expression] = STATE(993), - [sym_select_expression] = STATE(993), - [sym_lock_expression] = STATE(993), - [sym_unsafe_expression] = STATE(993), - [sym_sql_expression] = STATE(993), - [sym_c_string_literal] = STATE(1006), - [sym_raw_string_literal] = STATE(1006), - [sym_interpreted_string_literal] = STATE(1006), - [sym_mutability_modifiers] = STATE(691), - [sym_plain_type] = STATE(4296), - [sym__plain_type_without_special] = STATE(2302), - [sym_anon_struct_type] = STATE(2303), - [sym_multi_return_type] = STATE(2302), - [sym_result_type] = STATE(2302), - [sym_option_type] = STATE(2302), - [sym_qualified_type] = STATE(3541), - [sym_fixed_array_type] = STATE(2303), - [sym_array_type] = STATE(2303), - [sym_pointer_type] = STATE(2303), - [sym_wrong_pointer_type] = STATE(2303), - [sym_map_type] = STATE(2303), - [sym_channel_type] = STATE(2303), - [sym_shared_type] = STATE(2303), - [sym_thread_type] = STATE(2303), - [sym_atomic_type] = STATE(2303), - [sym_generic_type] = STATE(2303), - [sym_function_type] = STATE(2303), - [sym_identifier] = ACTIONS(493), + [901] = { + [sym_line_comment] = STATE(901), + [sym_block_comment] = STATE(901), + [sym__expression] = STATE(2630), + [sym__expression_without_blocks] = STATE(2347), + [sym__expression_with_blocks] = STATE(2347), + [sym_inc_expression] = STATE(2379), + [sym_dec_expression] = STATE(2379), + [sym_or_block_expression] = STATE(2379), + [sym_option_propagation_expression] = STATE(2379), + [sym_result_propagation_expression] = STATE(2379), + [sym_anon_struct_value_expression] = STATE(2378), + [sym_go_expression] = STATE(2379), + [sym_spawn_expression] = STATE(2379), + [sym_parenthesized_expression] = STATE(2379), + [sym_call_expression] = STATE(2379), + [sym_type_initializer] = STATE(2378), + [sym_function_literal] = STATE(2379), + [sym_reference_expression] = STATE(2377), + [sym_type_reference_expression] = STATE(3460), + [sym_unary_expression] = STATE(2379), + [sym_receive_expression] = STATE(2379), + [sym_binary_expression] = STATE(2379), + [sym_as_type_cast_expression] = STATE(2379), + [sym__max_group] = STATE(2379), + [sym_literal] = STATE(2392), + [sym_map_init_expression] = STATE(2378), + [sym_array_creation] = STATE(2379), + [sym_fixed_array_creation] = STATE(2379), + [sym_selector_expression] = STATE(2379), + [sym_index_expression] = STATE(2379), + [sym_slice_expression] = STATE(2379), + [sym_if_expression] = STATE(2378), + [sym_compile_time_if_expression] = STATE(2378), + [sym_is_expression] = STATE(2379), + [sym_in_expression] = STATE(2379), + [sym_enum_fetch] = STATE(2379), + [sym_match_expression] = STATE(2378), + [sym_select_expression] = STATE(2378), + [sym_lock_expression] = STATE(2378), + [sym_unsafe_expression] = STATE(2378), + [sym_sql_expression] = STATE(2378), + [sym_c_string_literal] = STATE(2401), + [sym_raw_string_literal] = STATE(2401), + [sym_interpreted_string_literal] = STATE(2401), + [sym_mutability_modifiers] = STATE(939), + [sym_plain_type] = STATE(4160), + [sym__plain_type_without_special] = STATE(2360), + [sym_anon_struct_type] = STATE(2362), + [sym_multi_return_type] = STATE(2360), + [sym_result_type] = STATE(2360), + [sym_option_type] = STATE(2360), + [sym_qualified_type] = STATE(3460), + [sym_fixed_array_type] = STATE(2362), + [sym_array_type] = STATE(2362), + [sym_pointer_type] = STATE(2362), + [sym_wrong_pointer_type] = STATE(2362), + [sym_map_type] = STATE(2362), + [sym_channel_type] = STATE(2362), + [sym_shared_type] = STATE(2362), + [sym_thread_type] = STATE(2362), + [sym_atomic_type] = STATE(2362), + [sym_generic_type] = STATE(2362), + [sym_function_type] = STATE(2362), + [sym_identifier] = ACTIONS(1815), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(501), - [anon_sym_LBRACE] = ACTIONS(2319), - [anon_sym_LPAREN] = ACTIONS(2321), - [anon_sym_fn] = ACTIONS(507), - [anon_sym_PLUS] = ACTIONS(3360), - [anon_sym_DASH] = ACTIONS(3360), - [anon_sym_STAR] = ACTIONS(3362), - [anon_sym_struct] = ACTIONS(513), + [anon_sym_DOT] = ACTIONS(1430), + [anon_sym_LBRACE] = ACTIONS(1432), + [anon_sym_LPAREN] = ACTIONS(1434), + [anon_sym_fn] = ACTIONS(1436), + [anon_sym_PLUS] = ACTIONS(3090), + [anon_sym_DASH] = ACTIONS(3090), + [anon_sym_STAR] = ACTIONS(3092), + [anon_sym_struct] = ACTIONS(1442), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(3364), - [anon_sym_go] = ACTIONS(3366), - [anon_sym_spawn] = ACTIONS(3368), - [anon_sym_json_DOTdecode] = ACTIONS(2329), - [anon_sym_LBRACK2] = ACTIONS(2331), - [anon_sym_TILDE] = ACTIONS(3360), - [anon_sym_CARET] = ACTIONS(3360), - [anon_sym_AMP] = ACTIONS(3370), - [anon_sym_LT_DASH] = ACTIONS(3372), - [sym_none] = ACTIONS(531), - [sym_true] = ACTIONS(531), - [sym_false] = ACTIONS(531), - [sym_nil] = ACTIONS(531), - [anon_sym_if] = ACTIONS(533), - [anon_sym_DOLLARif] = ACTIONS(535), - [anon_sym_match] = ACTIONS(537), - [anon_sym_select] = ACTIONS(3374), - [anon_sym_lock] = ACTIONS(3376), - [anon_sym_rlock] = ACTIONS(3376), - [anon_sym_unsafe] = ACTIONS(543), - [anon_sym_sql] = ACTIONS(545), - [sym_int_literal] = ACTIONS(531), - [sym_float_literal] = ACTIONS(2337), - [sym_rune_literal] = ACTIONS(2337), - [sym_pseudo_compile_time_identifier] = ACTIONS(547), + [anon_sym_BANG] = ACTIONS(3094), + [anon_sym_go] = ACTIONS(3096), + [anon_sym_spawn] = ACTIONS(3098), + [anon_sym_json_DOTdecode] = ACTIONS(1450), + [anon_sym_LBRACK2] = ACTIONS(1827), + [anon_sym_TILDE] = ACTIONS(3090), + [anon_sym_CARET] = ACTIONS(3090), + [anon_sym_AMP] = ACTIONS(3100), + [anon_sym_LT_DASH] = ACTIONS(3102), + [sym_none] = ACTIONS(1458), + [sym_true] = ACTIONS(1458), + [sym_false] = ACTIONS(1458), + [sym_nil] = ACTIONS(1458), + [anon_sym_if] = ACTIONS(1833), + [anon_sym_DOLLARif] = ACTIONS(1462), + [anon_sym_match] = ACTIONS(1464), + [anon_sym_select] = ACTIONS(3104), + [anon_sym_lock] = ACTIONS(3106), + [anon_sym_rlock] = ACTIONS(3106), + [anon_sym_unsafe] = ACTIONS(1839), + [anon_sym_sql] = ACTIONS(1472), + [sym_int_literal] = ACTIONS(1458), + [sym_float_literal] = ACTIONS(1474), + [sym_rune_literal] = ACTIONS(1474), + [sym_pseudo_compile_time_identifier] = ACTIONS(1476), [anon_sym_shared] = ACTIONS(83), [anon_sym_map_LBRACK] = ACTIONS(85), [anon_sym_chan] = ACTIONS(87), [anon_sym_thread] = ACTIONS(89), [anon_sym_atomic] = ACTIONS(91), - [sym___double_quote] = ACTIONS(2339), - [sym___single_quote] = ACTIONS(2341), - [sym___c_double_quote] = ACTIONS(2343), - [sym___c_single_quote] = ACTIONS(2345), - [sym___r_double_quote] = ACTIONS(2347), - [sym___r_single_quote] = ACTIONS(2349), + [sym___double_quote] = ACTIONS(1480), + [sym___single_quote] = ACTIONS(1482), + [sym___c_double_quote] = ACTIONS(1484), + [sym___c_single_quote] = ACTIONS(1486), + [sym___r_double_quote] = ACTIONS(1488), + [sym___r_single_quote] = ACTIONS(1490), }, - [895] = { - [sym_line_comment] = STATE(895), - [sym_block_comment] = STATE(895), - [sym__expression] = STATE(1774), - [sym__expression_without_blocks] = STATE(2044), - [sym__expression_with_blocks] = STATE(2044), - [sym_inc_expression] = STATE(2045), - [sym_dec_expression] = STATE(2045), - [sym_or_block_expression] = STATE(2045), - [sym_option_propagation_expression] = STATE(2045), - [sym_result_propagation_expression] = STATE(2045), - [sym_anon_struct_value_expression] = STATE(2046), - [sym_go_expression] = STATE(2045), - [sym_spawn_expression] = STATE(2045), - [sym_parenthesized_expression] = STATE(2045), - [sym_call_expression] = STATE(2045), - [sym_type_initializer] = STATE(2046), - [sym_function_literal] = STATE(2045), - [sym_reference_expression] = STATE(1912), - [sym_type_reference_expression] = STATE(3541), - [sym_unary_expression] = STATE(2045), - [sym_receive_expression] = STATE(2045), - [sym_binary_expression] = STATE(2045), - [sym_as_type_cast_expression] = STATE(2045), - [sym__max_group] = STATE(2045), - [sym_literal] = STATE(2043), - [sym_map_init_expression] = STATE(2046), - [sym_array_creation] = STATE(2045), - [sym_fixed_array_creation] = STATE(2045), - [sym_selector_expression] = STATE(2045), - [sym_index_expression] = STATE(2045), - [sym_slice_expression] = STATE(2045), - [sym_if_expression] = STATE(2046), - [sym_compile_time_if_expression] = STATE(2046), - [sym_is_expression] = STATE(2045), - [sym_in_expression] = STATE(2045), - [sym_enum_fetch] = STATE(2045), - [sym_match_expression] = STATE(2046), - [sym_select_expression] = STATE(2046), - [sym_lock_expression] = STATE(2046), - [sym_unsafe_expression] = STATE(2046), - [sym_sql_expression] = STATE(2046), - [sym_c_string_literal] = STATE(2041), - [sym_raw_string_literal] = STATE(2041), - [sym_interpreted_string_literal] = STATE(2041), - [sym_mutability_modifiers] = STATE(689), - [sym_plain_type] = STATE(4052), - [sym__plain_type_without_special] = STATE(2302), - [sym_anon_struct_type] = STATE(2303), - [sym_multi_return_type] = STATE(2302), - [sym_result_type] = STATE(2302), - [sym_option_type] = STATE(2302), - [sym_qualified_type] = STATE(3541), - [sym_fixed_array_type] = STATE(2303), - [sym_array_type] = STATE(2303), - [sym_pointer_type] = STATE(2303), - [sym_wrong_pointer_type] = STATE(2303), - [sym_map_type] = STATE(2303), - [sym_channel_type] = STATE(2303), - [sym_shared_type] = STATE(2303), - [sym_thread_type] = STATE(2303), - [sym_atomic_type] = STATE(2303), - [sym_generic_type] = STATE(2303), - [sym_function_type] = STATE(2303), - [sym_identifier] = ACTIONS(3142), + [902] = { + [sym_line_comment] = STATE(902), + [sym_block_comment] = STATE(902), + [sym__expression] = STATE(2304), + [sym__expression_without_blocks] = STATE(2468), + [sym__expression_with_blocks] = STATE(2468), + [sym_inc_expression] = STATE(2469), + [sym_dec_expression] = STATE(2469), + [sym_or_block_expression] = STATE(2469), + [sym_option_propagation_expression] = STATE(2469), + [sym_result_propagation_expression] = STATE(2469), + [sym_anon_struct_value_expression] = STATE(2470), + [sym_go_expression] = STATE(2469), + [sym_spawn_expression] = STATE(2469), + [sym_parenthesized_expression] = STATE(2469), + [sym_call_expression] = STATE(2469), + [sym_type_initializer] = STATE(2470), + [sym_function_literal] = STATE(2469), + [sym_reference_expression] = STATE(2487), + [sym_type_reference_expression] = STATE(3460), + [sym_unary_expression] = STATE(2469), + [sym_receive_expression] = STATE(2469), + [sym_binary_expression] = STATE(2469), + [sym_as_type_cast_expression] = STATE(2469), + [sym__max_group] = STATE(2469), + [sym_literal] = STATE(2465), + [sym_map_init_expression] = STATE(2470), + [sym_array_creation] = STATE(2469), + [sym_fixed_array_creation] = STATE(2469), + [sym_selector_expression] = STATE(2469), + [sym_index_expression] = STATE(2469), + [sym_slice_expression] = STATE(2469), + [sym_if_expression] = STATE(2470), + [sym_compile_time_if_expression] = STATE(2470), + [sym_is_expression] = STATE(2469), + [sym_in_expression] = STATE(2469), + [sym_enum_fetch] = STATE(2469), + [sym_match_expression] = STATE(2470), + [sym_select_expression] = STATE(2470), + [sym_lock_expression] = STATE(2470), + [sym_unsafe_expression] = STATE(2470), + [sym_sql_expression] = STATE(2470), + [sym_c_string_literal] = STATE(2464), + [sym_raw_string_literal] = STATE(2464), + [sym_interpreted_string_literal] = STATE(2464), + [sym_mutability_modifiers] = STATE(561), + [sym_plain_type] = STATE(4038), + [sym__plain_type_without_special] = STATE(2360), + [sym_anon_struct_type] = STATE(2362), + [sym_multi_return_type] = STATE(2360), + [sym_result_type] = STATE(2360), + [sym_option_type] = STATE(2360), + [sym_qualified_type] = STATE(3460), + [sym_fixed_array_type] = STATE(2362), + [sym_array_type] = STATE(2362), + [sym_pointer_type] = STATE(2362), + [sym_wrong_pointer_type] = STATE(2362), + [sym_map_type] = STATE(2362), + [sym_channel_type] = STATE(2362), + [sym_shared_type] = STATE(2362), + [sym_thread_type] = STATE(2362), + [sym_atomic_type] = STATE(2362), + [sym_generic_type] = STATE(2362), + [sym_function_type] = STATE(2362), + [sym_identifier] = ACTIONS(1691), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(811), - [anon_sym_LBRACE] = ACTIONS(3144), - [anon_sym_LPAREN] = ACTIONS(815), - [anon_sym_fn] = ACTIONS(817), - [anon_sym_PLUS] = ACTIONS(3146), - [anon_sym_DASH] = ACTIONS(3146), - [anon_sym_STAR] = ACTIONS(3148), - [anon_sym_struct] = ACTIONS(823), + [anon_sym_DOT] = ACTIONS(1693), + [anon_sym_LBRACE] = ACTIONS(2151), + [anon_sym_LPAREN] = ACTIONS(2153), + [anon_sym_fn] = ACTIONS(1699), + [anon_sym_PLUS] = ACTIONS(3386), + [anon_sym_DASH] = ACTIONS(3386), + [anon_sym_STAR] = ACTIONS(3388), + [anon_sym_struct] = ACTIONS(1705), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(3150), - [anon_sym_go] = ACTIONS(3152), - [anon_sym_spawn] = ACTIONS(3154), - [anon_sym_json_DOTdecode] = ACTIONS(833), - [anon_sym_LBRACK2] = ACTIONS(3156), - [anon_sym_TILDE] = ACTIONS(3146), - [anon_sym_CARET] = ACTIONS(3146), - [anon_sym_AMP] = ACTIONS(3158), - [anon_sym_LT_DASH] = ACTIONS(3160), - [sym_none] = ACTIONS(841), - [sym_true] = ACTIONS(841), - [sym_false] = ACTIONS(841), - [sym_nil] = ACTIONS(841), - [anon_sym_if] = ACTIONS(843), - [anon_sym_DOLLARif] = ACTIONS(845), - [anon_sym_match] = ACTIONS(847), - [anon_sym_select] = ACTIONS(3162), - [anon_sym_lock] = ACTIONS(3164), - [anon_sym_rlock] = ACTIONS(3164), - [anon_sym_unsafe] = ACTIONS(853), - [anon_sym_sql] = ACTIONS(855), - [sym_int_literal] = ACTIONS(841), - [sym_float_literal] = ACTIONS(857), - [sym_rune_literal] = ACTIONS(857), - [sym_pseudo_compile_time_identifier] = ACTIONS(859), + [anon_sym_BANG] = ACTIONS(3390), + [anon_sym_go] = ACTIONS(3392), + [anon_sym_spawn] = ACTIONS(3394), + [anon_sym_json_DOTdecode] = ACTIONS(2161), + [anon_sym_LBRACK2] = ACTIONS(2163), + [anon_sym_TILDE] = ACTIONS(3386), + [anon_sym_CARET] = ACTIONS(3386), + [anon_sym_AMP] = ACTIONS(3396), + [anon_sym_LT_DASH] = ACTIONS(3398), + [sym_none] = ACTIONS(1721), + [sym_true] = ACTIONS(1721), + [sym_false] = ACTIONS(1721), + [sym_nil] = ACTIONS(1721), + [anon_sym_if] = ACTIONS(1723), + [anon_sym_DOLLARif] = ACTIONS(1725), + [anon_sym_match] = ACTIONS(1727), + [anon_sym_select] = ACTIONS(3400), + [anon_sym_lock] = ACTIONS(3402), + [anon_sym_rlock] = ACTIONS(3402), + [anon_sym_unsafe] = ACTIONS(1733), + [anon_sym_sql] = ACTIONS(1735), + [sym_int_literal] = ACTIONS(1721), + [sym_float_literal] = ACTIONS(2169), + [sym_rune_literal] = ACTIONS(2169), + [sym_pseudo_compile_time_identifier] = ACTIONS(1737), [anon_sym_shared] = ACTIONS(83), [anon_sym_map_LBRACK] = ACTIONS(85), [anon_sym_chan] = ACTIONS(87), [anon_sym_thread] = ACTIONS(89), [anon_sym_atomic] = ACTIONS(91), - [sym___double_quote] = ACTIONS(861), - [sym___single_quote] = ACTIONS(863), - [sym___c_double_quote] = ACTIONS(865), - [sym___c_single_quote] = ACTIONS(867), - [sym___r_double_quote] = ACTIONS(869), - [sym___r_single_quote] = ACTIONS(871), + [sym___double_quote] = ACTIONS(2171), + [sym___single_quote] = ACTIONS(2173), + [sym___c_double_quote] = ACTIONS(2175), + [sym___c_single_quote] = ACTIONS(2177), + [sym___r_double_quote] = ACTIONS(2179), + [sym___r_single_quote] = ACTIONS(2181), }, - [896] = { - [sym_line_comment] = STATE(896), - [sym_block_comment] = STATE(896), - [sym__expression] = STATE(1842), - [sym__expression_without_blocks] = STATE(2044), - [sym__expression_with_blocks] = STATE(2044), - [sym_inc_expression] = STATE(2045), - [sym_dec_expression] = STATE(2045), - [sym_or_block_expression] = STATE(2045), - [sym_option_propagation_expression] = STATE(2045), - [sym_result_propagation_expression] = STATE(2045), - [sym_anon_struct_value_expression] = STATE(2046), - [sym_go_expression] = STATE(2045), - [sym_spawn_expression] = STATE(2045), - [sym_parenthesized_expression] = STATE(2045), - [sym_call_expression] = STATE(2045), - [sym_type_initializer] = STATE(2046), - [sym_function_literal] = STATE(2045), - [sym_reference_expression] = STATE(1912), - [sym_type_reference_expression] = STATE(3541), - [sym_unary_expression] = STATE(2045), - [sym_receive_expression] = STATE(2045), - [sym_binary_expression] = STATE(2045), - [sym_as_type_cast_expression] = STATE(2045), - [sym__max_group] = STATE(2045), - [sym_literal] = STATE(2043), - [sym_map_init_expression] = STATE(2046), - [sym_array_creation] = STATE(2045), - [sym_fixed_array_creation] = STATE(2045), - [sym_selector_expression] = STATE(2045), - [sym_index_expression] = STATE(2045), - [sym_slice_expression] = STATE(2045), - [sym_if_expression] = STATE(2046), - [sym_compile_time_if_expression] = STATE(2046), - [sym_is_expression] = STATE(2045), - [sym_in_expression] = STATE(2045), - [sym_enum_fetch] = STATE(2045), - [sym_match_expression] = STATE(2046), - [sym_select_expression] = STATE(2046), - [sym_lock_expression] = STATE(2046), - [sym_unsafe_expression] = STATE(2046), - [sym_sql_expression] = STATE(2046), - [sym_c_string_literal] = STATE(2041), - [sym_raw_string_literal] = STATE(2041), - [sym_interpreted_string_literal] = STATE(2041), - [sym_mutability_modifiers] = STATE(689), - [sym_plain_type] = STATE(4052), - [sym__plain_type_without_special] = STATE(2302), - [sym_anon_struct_type] = STATE(2303), - [sym_multi_return_type] = STATE(2302), - [sym_result_type] = STATE(2302), - [sym_option_type] = STATE(2302), - [sym_qualified_type] = STATE(3541), - [sym_fixed_array_type] = STATE(2303), - [sym_array_type] = STATE(2303), - [sym_pointer_type] = STATE(2303), - [sym_wrong_pointer_type] = STATE(2303), - [sym_map_type] = STATE(2303), - [sym_channel_type] = STATE(2303), - [sym_shared_type] = STATE(2303), - [sym_thread_type] = STATE(2303), - [sym_atomic_type] = STATE(2303), - [sym_generic_type] = STATE(2303), - [sym_function_type] = STATE(2303), - [sym_identifier] = ACTIONS(3142), + [903] = { + [sym_line_comment] = STATE(903), + [sym_block_comment] = STATE(903), + [sym__expression] = STATE(2703), + [sym__expression_without_blocks] = STATE(2347), + [sym__expression_with_blocks] = STATE(2347), + [sym_inc_expression] = STATE(2379), + [sym_dec_expression] = STATE(2379), + [sym_or_block_expression] = STATE(2379), + [sym_option_propagation_expression] = STATE(2379), + [sym_result_propagation_expression] = STATE(2379), + [sym_anon_struct_value_expression] = STATE(2378), + [sym_go_expression] = STATE(2379), + [sym_spawn_expression] = STATE(2379), + [sym_parenthesized_expression] = STATE(2379), + [sym_call_expression] = STATE(2379), + [sym_type_initializer] = STATE(2378), + [sym_function_literal] = STATE(2379), + [sym_reference_expression] = STATE(2377), + [sym_type_reference_expression] = STATE(3460), + [sym_unary_expression] = STATE(2379), + [sym_receive_expression] = STATE(2379), + [sym_binary_expression] = STATE(2379), + [sym_as_type_cast_expression] = STATE(2379), + [sym__max_group] = STATE(2379), + [sym_literal] = STATE(2392), + [sym_map_init_expression] = STATE(2378), + [sym_array_creation] = STATE(2379), + [sym_fixed_array_creation] = STATE(2379), + [sym_selector_expression] = STATE(2379), + [sym_index_expression] = STATE(2379), + [sym_slice_expression] = STATE(2379), + [sym_if_expression] = STATE(2378), + [sym_compile_time_if_expression] = STATE(2378), + [sym_is_expression] = STATE(2379), + [sym_in_expression] = STATE(2379), + [sym_enum_fetch] = STATE(2379), + [sym_match_expression] = STATE(2378), + [sym_select_expression] = STATE(2378), + [sym_lock_expression] = STATE(2378), + [sym_unsafe_expression] = STATE(2378), + [sym_sql_expression] = STATE(2378), + [sym_c_string_literal] = STATE(2401), + [sym_raw_string_literal] = STATE(2401), + [sym_interpreted_string_literal] = STATE(2401), + [sym_mutability_modifiers] = STATE(939), + [sym_plain_type] = STATE(4160), + [sym__plain_type_without_special] = STATE(2360), + [sym_anon_struct_type] = STATE(2362), + [sym_multi_return_type] = STATE(2360), + [sym_result_type] = STATE(2360), + [sym_option_type] = STATE(2360), + [sym_qualified_type] = STATE(3460), + [sym_fixed_array_type] = STATE(2362), + [sym_array_type] = STATE(2362), + [sym_pointer_type] = STATE(2362), + [sym_wrong_pointer_type] = STATE(2362), + [sym_map_type] = STATE(2362), + [sym_channel_type] = STATE(2362), + [sym_shared_type] = STATE(2362), + [sym_thread_type] = STATE(2362), + [sym_atomic_type] = STATE(2362), + [sym_generic_type] = STATE(2362), + [sym_function_type] = STATE(2362), + [sym_identifier] = ACTIONS(1815), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(811), - [anon_sym_LBRACE] = ACTIONS(3144), - [anon_sym_LPAREN] = ACTIONS(815), - [anon_sym_fn] = ACTIONS(817), - [anon_sym_PLUS] = ACTIONS(3146), - [anon_sym_DASH] = ACTIONS(3146), - [anon_sym_STAR] = ACTIONS(3148), - [anon_sym_struct] = ACTIONS(823), + [anon_sym_DOT] = ACTIONS(1430), + [anon_sym_LBRACE] = ACTIONS(1432), + [anon_sym_LPAREN] = ACTIONS(1434), + [anon_sym_fn] = ACTIONS(1436), + [anon_sym_PLUS] = ACTIONS(3090), + [anon_sym_DASH] = ACTIONS(3090), + [anon_sym_STAR] = ACTIONS(3092), + [anon_sym_struct] = ACTIONS(1442), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(3150), - [anon_sym_go] = ACTIONS(3152), - [anon_sym_spawn] = ACTIONS(3154), - [anon_sym_json_DOTdecode] = ACTIONS(833), - [anon_sym_LBRACK2] = ACTIONS(3156), - [anon_sym_TILDE] = ACTIONS(3146), - [anon_sym_CARET] = ACTIONS(3146), - [anon_sym_AMP] = ACTIONS(3158), - [anon_sym_LT_DASH] = ACTIONS(3160), - [sym_none] = ACTIONS(841), - [sym_true] = ACTIONS(841), - [sym_false] = ACTIONS(841), - [sym_nil] = ACTIONS(841), - [anon_sym_if] = ACTIONS(843), - [anon_sym_DOLLARif] = ACTIONS(845), - [anon_sym_match] = ACTIONS(847), - [anon_sym_select] = ACTIONS(3162), - [anon_sym_lock] = ACTIONS(3164), - [anon_sym_rlock] = ACTIONS(3164), - [anon_sym_unsafe] = ACTIONS(853), - [anon_sym_sql] = ACTIONS(855), - [sym_int_literal] = ACTIONS(841), - [sym_float_literal] = ACTIONS(857), - [sym_rune_literal] = ACTIONS(857), - [sym_pseudo_compile_time_identifier] = ACTIONS(859), + [anon_sym_BANG] = ACTIONS(3094), + [anon_sym_go] = ACTIONS(3096), + [anon_sym_spawn] = ACTIONS(3098), + [anon_sym_json_DOTdecode] = ACTIONS(1450), + [anon_sym_LBRACK2] = ACTIONS(1827), + [anon_sym_TILDE] = ACTIONS(3090), + [anon_sym_CARET] = ACTIONS(3090), + [anon_sym_AMP] = ACTIONS(3100), + [anon_sym_LT_DASH] = ACTIONS(3102), + [sym_none] = ACTIONS(1458), + [sym_true] = ACTIONS(1458), + [sym_false] = ACTIONS(1458), + [sym_nil] = ACTIONS(1458), + [anon_sym_if] = ACTIONS(1833), + [anon_sym_DOLLARif] = ACTIONS(1462), + [anon_sym_match] = ACTIONS(1464), + [anon_sym_select] = ACTIONS(3104), + [anon_sym_lock] = ACTIONS(3106), + [anon_sym_rlock] = ACTIONS(3106), + [anon_sym_unsafe] = ACTIONS(1839), + [anon_sym_sql] = ACTIONS(1472), + [sym_int_literal] = ACTIONS(1458), + [sym_float_literal] = ACTIONS(1474), + [sym_rune_literal] = ACTIONS(1474), + [sym_pseudo_compile_time_identifier] = ACTIONS(1476), [anon_sym_shared] = ACTIONS(83), [anon_sym_map_LBRACK] = ACTIONS(85), [anon_sym_chan] = ACTIONS(87), [anon_sym_thread] = ACTIONS(89), [anon_sym_atomic] = ACTIONS(91), - [sym___double_quote] = ACTIONS(861), - [sym___single_quote] = ACTIONS(863), - [sym___c_double_quote] = ACTIONS(865), - [sym___c_single_quote] = ACTIONS(867), - [sym___r_double_quote] = ACTIONS(869), - [sym___r_single_quote] = ACTIONS(871), + [sym___double_quote] = ACTIONS(1480), + [sym___single_quote] = ACTIONS(1482), + [sym___c_double_quote] = ACTIONS(1484), + [sym___c_single_quote] = ACTIONS(1486), + [sym___r_double_quote] = ACTIONS(1488), + [sym___r_single_quote] = ACTIONS(1490), }, - [897] = { - [sym_line_comment] = STATE(897), - [sym_block_comment] = STATE(897), - [sym__expression] = STATE(1780), - [sym__expression_without_blocks] = STATE(2044), - [sym__expression_with_blocks] = STATE(2044), - [sym_inc_expression] = STATE(2045), - [sym_dec_expression] = STATE(2045), - [sym_or_block_expression] = STATE(2045), - [sym_option_propagation_expression] = STATE(2045), - [sym_result_propagation_expression] = STATE(2045), - [sym_anon_struct_value_expression] = STATE(2046), - [sym_go_expression] = STATE(2045), - [sym_spawn_expression] = STATE(2045), - [sym_parenthesized_expression] = STATE(2045), - [sym_call_expression] = STATE(2045), - [sym_type_initializer] = STATE(2046), - [sym_function_literal] = STATE(2045), - [sym_reference_expression] = STATE(1912), - [sym_type_reference_expression] = STATE(3541), - [sym_unary_expression] = STATE(2045), - [sym_receive_expression] = STATE(2045), - [sym_binary_expression] = STATE(2045), - [sym_as_type_cast_expression] = STATE(2045), - [sym__max_group] = STATE(2045), - [sym_literal] = STATE(2043), - [sym_map_init_expression] = STATE(2046), - [sym_array_creation] = STATE(2045), - [sym_fixed_array_creation] = STATE(2045), - [sym_selector_expression] = STATE(2045), - [sym_index_expression] = STATE(2045), - [sym_slice_expression] = STATE(2045), - [sym_if_expression] = STATE(2046), - [sym_compile_time_if_expression] = STATE(2046), - [sym_is_expression] = STATE(2045), - [sym_in_expression] = STATE(2045), - [sym_enum_fetch] = STATE(2045), - [sym_match_expression] = STATE(2046), - [sym_select_expression] = STATE(2046), - [sym_lock_expression] = STATE(2046), - [sym_unsafe_expression] = STATE(2046), - [sym_sql_expression] = STATE(2046), - [sym_c_string_literal] = STATE(2041), - [sym_raw_string_literal] = STATE(2041), - [sym_interpreted_string_literal] = STATE(2041), - [sym_mutability_modifiers] = STATE(689), - [sym_plain_type] = STATE(4052), - [sym__plain_type_without_special] = STATE(2302), - [sym_anon_struct_type] = STATE(2303), - [sym_multi_return_type] = STATE(2302), - [sym_result_type] = STATE(2302), - [sym_option_type] = STATE(2302), - [sym_qualified_type] = STATE(3541), - [sym_fixed_array_type] = STATE(2303), - [sym_array_type] = STATE(2303), - [sym_pointer_type] = STATE(2303), - [sym_wrong_pointer_type] = STATE(2303), - [sym_map_type] = STATE(2303), - [sym_channel_type] = STATE(2303), - [sym_shared_type] = STATE(2303), - [sym_thread_type] = STATE(2303), - [sym_atomic_type] = STATE(2303), - [sym_generic_type] = STATE(2303), - [sym_function_type] = STATE(2303), - [sym_identifier] = ACTIONS(3142), + [904] = { + [sym_line_comment] = STATE(904), + [sym_block_comment] = STATE(904), + [sym__expression] = STATE(2704), + [sym__expression_without_blocks] = STATE(2347), + [sym__expression_with_blocks] = STATE(2347), + [sym_inc_expression] = STATE(2379), + [sym_dec_expression] = STATE(2379), + [sym_or_block_expression] = STATE(2379), + [sym_option_propagation_expression] = STATE(2379), + [sym_result_propagation_expression] = STATE(2379), + [sym_anon_struct_value_expression] = STATE(2378), + [sym_go_expression] = STATE(2379), + [sym_spawn_expression] = STATE(2379), + [sym_parenthesized_expression] = STATE(2379), + [sym_call_expression] = STATE(2379), + [sym_type_initializer] = STATE(2378), + [sym_function_literal] = STATE(2379), + [sym_reference_expression] = STATE(2377), + [sym_type_reference_expression] = STATE(3460), + [sym_unary_expression] = STATE(2379), + [sym_receive_expression] = STATE(2379), + [sym_binary_expression] = STATE(2379), + [sym_as_type_cast_expression] = STATE(2379), + [sym__max_group] = STATE(2379), + [sym_literal] = STATE(2392), + [sym_map_init_expression] = STATE(2378), + [sym_array_creation] = STATE(2379), + [sym_fixed_array_creation] = STATE(2379), + [sym_selector_expression] = STATE(2379), + [sym_index_expression] = STATE(2379), + [sym_slice_expression] = STATE(2379), + [sym_if_expression] = STATE(2378), + [sym_compile_time_if_expression] = STATE(2378), + [sym_is_expression] = STATE(2379), + [sym_in_expression] = STATE(2379), + [sym_enum_fetch] = STATE(2379), + [sym_match_expression] = STATE(2378), + [sym_select_expression] = STATE(2378), + [sym_lock_expression] = STATE(2378), + [sym_unsafe_expression] = STATE(2378), + [sym_sql_expression] = STATE(2378), + [sym_c_string_literal] = STATE(2401), + [sym_raw_string_literal] = STATE(2401), + [sym_interpreted_string_literal] = STATE(2401), + [sym_mutability_modifiers] = STATE(939), + [sym_plain_type] = STATE(4160), + [sym__plain_type_without_special] = STATE(2360), + [sym_anon_struct_type] = STATE(2362), + [sym_multi_return_type] = STATE(2360), + [sym_result_type] = STATE(2360), + [sym_option_type] = STATE(2360), + [sym_qualified_type] = STATE(3460), + [sym_fixed_array_type] = STATE(2362), + [sym_array_type] = STATE(2362), + [sym_pointer_type] = STATE(2362), + [sym_wrong_pointer_type] = STATE(2362), + [sym_map_type] = STATE(2362), + [sym_channel_type] = STATE(2362), + [sym_shared_type] = STATE(2362), + [sym_thread_type] = STATE(2362), + [sym_atomic_type] = STATE(2362), + [sym_generic_type] = STATE(2362), + [sym_function_type] = STATE(2362), + [sym_identifier] = ACTIONS(1815), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(811), - [anon_sym_LBRACE] = ACTIONS(3144), - [anon_sym_LPAREN] = ACTIONS(815), - [anon_sym_fn] = ACTIONS(817), - [anon_sym_PLUS] = ACTIONS(3146), - [anon_sym_DASH] = ACTIONS(3146), - [anon_sym_STAR] = ACTIONS(3148), - [anon_sym_struct] = ACTIONS(823), + [anon_sym_DOT] = ACTIONS(1430), + [anon_sym_LBRACE] = ACTIONS(1432), + [anon_sym_LPAREN] = ACTIONS(1434), + [anon_sym_fn] = ACTIONS(1436), + [anon_sym_PLUS] = ACTIONS(3090), + [anon_sym_DASH] = ACTIONS(3090), + [anon_sym_STAR] = ACTIONS(3092), + [anon_sym_struct] = ACTIONS(1442), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(3150), - [anon_sym_go] = ACTIONS(3152), - [anon_sym_spawn] = ACTIONS(3154), - [anon_sym_json_DOTdecode] = ACTIONS(833), - [anon_sym_LBRACK2] = ACTIONS(3156), - [anon_sym_TILDE] = ACTIONS(3146), - [anon_sym_CARET] = ACTIONS(3146), - [anon_sym_AMP] = ACTIONS(3158), - [anon_sym_LT_DASH] = ACTIONS(3160), - [sym_none] = ACTIONS(841), - [sym_true] = ACTIONS(841), - [sym_false] = ACTIONS(841), - [sym_nil] = ACTIONS(841), - [anon_sym_if] = ACTIONS(843), - [anon_sym_DOLLARif] = ACTIONS(845), - [anon_sym_match] = ACTIONS(847), - [anon_sym_select] = ACTIONS(3162), - [anon_sym_lock] = ACTIONS(3164), - [anon_sym_rlock] = ACTIONS(3164), - [anon_sym_unsafe] = ACTIONS(853), - [anon_sym_sql] = ACTIONS(855), - [sym_int_literal] = ACTIONS(841), - [sym_float_literal] = ACTIONS(857), - [sym_rune_literal] = ACTIONS(857), - [sym_pseudo_compile_time_identifier] = ACTIONS(859), + [anon_sym_BANG] = ACTIONS(3094), + [anon_sym_go] = ACTIONS(3096), + [anon_sym_spawn] = ACTIONS(3098), + [anon_sym_json_DOTdecode] = ACTIONS(1450), + [anon_sym_LBRACK2] = ACTIONS(1827), + [anon_sym_TILDE] = ACTIONS(3090), + [anon_sym_CARET] = ACTIONS(3090), + [anon_sym_AMP] = ACTIONS(3100), + [anon_sym_LT_DASH] = ACTIONS(3102), + [sym_none] = ACTIONS(1458), + [sym_true] = ACTIONS(1458), + [sym_false] = ACTIONS(1458), + [sym_nil] = ACTIONS(1458), + [anon_sym_if] = ACTIONS(1833), + [anon_sym_DOLLARif] = ACTIONS(1462), + [anon_sym_match] = ACTIONS(1464), + [anon_sym_select] = ACTIONS(3104), + [anon_sym_lock] = ACTIONS(3106), + [anon_sym_rlock] = ACTIONS(3106), + [anon_sym_unsafe] = ACTIONS(1839), + [anon_sym_sql] = ACTIONS(1472), + [sym_int_literal] = ACTIONS(1458), + [sym_float_literal] = ACTIONS(1474), + [sym_rune_literal] = ACTIONS(1474), + [sym_pseudo_compile_time_identifier] = ACTIONS(1476), [anon_sym_shared] = ACTIONS(83), [anon_sym_map_LBRACK] = ACTIONS(85), [anon_sym_chan] = ACTIONS(87), [anon_sym_thread] = ACTIONS(89), [anon_sym_atomic] = ACTIONS(91), - [sym___double_quote] = ACTIONS(861), - [sym___single_quote] = ACTIONS(863), - [sym___c_double_quote] = ACTIONS(865), - [sym___c_single_quote] = ACTIONS(867), - [sym___r_double_quote] = ACTIONS(869), - [sym___r_single_quote] = ACTIONS(871), + [sym___double_quote] = ACTIONS(1480), + [sym___single_quote] = ACTIONS(1482), + [sym___c_double_quote] = ACTIONS(1484), + [sym___c_single_quote] = ACTIONS(1486), + [sym___r_double_quote] = ACTIONS(1488), + [sym___r_single_quote] = ACTIONS(1490), }, - [898] = { - [sym_line_comment] = STATE(898), - [sym_block_comment] = STATE(898), - [sym__expression] = STATE(1861), - [sym__expression_without_blocks] = STATE(2044), - [sym__expression_with_blocks] = STATE(2044), - [sym_inc_expression] = STATE(2045), - [sym_dec_expression] = STATE(2045), - [sym_or_block_expression] = STATE(2045), - [sym_option_propagation_expression] = STATE(2045), - [sym_result_propagation_expression] = STATE(2045), - [sym_anon_struct_value_expression] = STATE(2046), - [sym_go_expression] = STATE(2045), - [sym_spawn_expression] = STATE(2045), - [sym_parenthesized_expression] = STATE(2045), - [sym_call_expression] = STATE(2045), - [sym_type_initializer] = STATE(2046), - [sym_function_literal] = STATE(2045), - [sym_reference_expression] = STATE(1912), - [sym_type_reference_expression] = STATE(3541), - [sym_unary_expression] = STATE(2045), - [sym_receive_expression] = STATE(2045), - [sym_binary_expression] = STATE(2045), - [sym_as_type_cast_expression] = STATE(2045), - [sym__max_group] = STATE(2045), - [sym_literal] = STATE(2043), - [sym_map_init_expression] = STATE(2046), - [sym_array_creation] = STATE(2045), - [sym_fixed_array_creation] = STATE(2045), - [sym_selector_expression] = STATE(2045), - [sym_index_expression] = STATE(2045), - [sym_slice_expression] = STATE(2045), - [sym_if_expression] = STATE(2046), - [sym_compile_time_if_expression] = STATE(2046), - [sym_is_expression] = STATE(2045), - [sym_in_expression] = STATE(2045), - [sym_enum_fetch] = STATE(2045), - [sym_match_expression] = STATE(2046), - [sym_select_expression] = STATE(2046), - [sym_lock_expression] = STATE(2046), - [sym_unsafe_expression] = STATE(2046), - [sym_sql_expression] = STATE(2046), - [sym_c_string_literal] = STATE(2041), - [sym_raw_string_literal] = STATE(2041), - [sym_interpreted_string_literal] = STATE(2041), - [sym_mutability_modifiers] = STATE(689), - [sym_plain_type] = STATE(4052), - [sym__plain_type_without_special] = STATE(2302), - [sym_anon_struct_type] = STATE(2303), - [sym_multi_return_type] = STATE(2302), - [sym_result_type] = STATE(2302), - [sym_option_type] = STATE(2302), - [sym_qualified_type] = STATE(3541), - [sym_fixed_array_type] = STATE(2303), - [sym_array_type] = STATE(2303), - [sym_pointer_type] = STATE(2303), - [sym_wrong_pointer_type] = STATE(2303), - [sym_map_type] = STATE(2303), - [sym_channel_type] = STATE(2303), - [sym_shared_type] = STATE(2303), - [sym_thread_type] = STATE(2303), - [sym_atomic_type] = STATE(2303), - [sym_generic_type] = STATE(2303), - [sym_function_type] = STATE(2303), - [sym_identifier] = ACTIONS(3142), + [905] = { + [sym_line_comment] = STATE(905), + [sym_block_comment] = STATE(905), + [sym__expression] = STATE(2707), + [sym__expression_without_blocks] = STATE(2347), + [sym__expression_with_blocks] = STATE(2347), + [sym_inc_expression] = STATE(2379), + [sym_dec_expression] = STATE(2379), + [sym_or_block_expression] = STATE(2379), + [sym_option_propagation_expression] = STATE(2379), + [sym_result_propagation_expression] = STATE(2379), + [sym_anon_struct_value_expression] = STATE(2378), + [sym_go_expression] = STATE(2379), + [sym_spawn_expression] = STATE(2379), + [sym_parenthesized_expression] = STATE(2379), + [sym_call_expression] = STATE(2379), + [sym_type_initializer] = STATE(2378), + [sym_function_literal] = STATE(2379), + [sym_reference_expression] = STATE(2377), + [sym_type_reference_expression] = STATE(3460), + [sym_unary_expression] = STATE(2379), + [sym_receive_expression] = STATE(2379), + [sym_binary_expression] = STATE(2379), + [sym_as_type_cast_expression] = STATE(2379), + [sym__max_group] = STATE(2379), + [sym_literal] = STATE(2392), + [sym_map_init_expression] = STATE(2378), + [sym_array_creation] = STATE(2379), + [sym_fixed_array_creation] = STATE(2379), + [sym_selector_expression] = STATE(2379), + [sym_index_expression] = STATE(2379), + [sym_slice_expression] = STATE(2379), + [sym_if_expression] = STATE(2378), + [sym_compile_time_if_expression] = STATE(2378), + [sym_is_expression] = STATE(2379), + [sym_in_expression] = STATE(2379), + [sym_enum_fetch] = STATE(2379), + [sym_match_expression] = STATE(2378), + [sym_select_expression] = STATE(2378), + [sym_lock_expression] = STATE(2378), + [sym_unsafe_expression] = STATE(2378), + [sym_sql_expression] = STATE(2378), + [sym_c_string_literal] = STATE(2401), + [sym_raw_string_literal] = STATE(2401), + [sym_interpreted_string_literal] = STATE(2401), + [sym_mutability_modifiers] = STATE(939), + [sym_plain_type] = STATE(4160), + [sym__plain_type_without_special] = STATE(2360), + [sym_anon_struct_type] = STATE(2362), + [sym_multi_return_type] = STATE(2360), + [sym_result_type] = STATE(2360), + [sym_option_type] = STATE(2360), + [sym_qualified_type] = STATE(3460), + [sym_fixed_array_type] = STATE(2362), + [sym_array_type] = STATE(2362), + [sym_pointer_type] = STATE(2362), + [sym_wrong_pointer_type] = STATE(2362), + [sym_map_type] = STATE(2362), + [sym_channel_type] = STATE(2362), + [sym_shared_type] = STATE(2362), + [sym_thread_type] = STATE(2362), + [sym_atomic_type] = STATE(2362), + [sym_generic_type] = STATE(2362), + [sym_function_type] = STATE(2362), + [sym_identifier] = ACTIONS(1815), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(811), - [anon_sym_LBRACE] = ACTIONS(3144), - [anon_sym_LPAREN] = ACTIONS(815), - [anon_sym_fn] = ACTIONS(817), - [anon_sym_PLUS] = ACTIONS(3146), - [anon_sym_DASH] = ACTIONS(3146), - [anon_sym_STAR] = ACTIONS(3148), - [anon_sym_struct] = ACTIONS(823), + [anon_sym_DOT] = ACTIONS(1430), + [anon_sym_LBRACE] = ACTIONS(1432), + [anon_sym_LPAREN] = ACTIONS(1434), + [anon_sym_fn] = ACTIONS(1436), + [anon_sym_PLUS] = ACTIONS(3090), + [anon_sym_DASH] = ACTIONS(3090), + [anon_sym_STAR] = ACTIONS(3092), + [anon_sym_struct] = ACTIONS(1442), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(3150), - [anon_sym_go] = ACTIONS(3152), - [anon_sym_spawn] = ACTIONS(3154), - [anon_sym_json_DOTdecode] = ACTIONS(833), - [anon_sym_LBRACK2] = ACTIONS(3156), - [anon_sym_TILDE] = ACTIONS(3146), - [anon_sym_CARET] = ACTIONS(3146), - [anon_sym_AMP] = ACTIONS(3158), - [anon_sym_LT_DASH] = ACTIONS(3160), - [sym_none] = ACTIONS(841), - [sym_true] = ACTIONS(841), - [sym_false] = ACTIONS(841), - [sym_nil] = ACTIONS(841), - [anon_sym_if] = ACTIONS(843), - [anon_sym_DOLLARif] = ACTIONS(845), - [anon_sym_match] = ACTIONS(847), - [anon_sym_select] = ACTIONS(3162), - [anon_sym_lock] = ACTIONS(3164), - [anon_sym_rlock] = ACTIONS(3164), - [anon_sym_unsafe] = ACTIONS(853), - [anon_sym_sql] = ACTIONS(855), - [sym_int_literal] = ACTIONS(841), - [sym_float_literal] = ACTIONS(857), - [sym_rune_literal] = ACTIONS(857), - [sym_pseudo_compile_time_identifier] = ACTIONS(859), + [anon_sym_BANG] = ACTIONS(3094), + [anon_sym_go] = ACTIONS(3096), + [anon_sym_spawn] = ACTIONS(3098), + [anon_sym_json_DOTdecode] = ACTIONS(1450), + [anon_sym_LBRACK2] = ACTIONS(1827), + [anon_sym_TILDE] = ACTIONS(3090), + [anon_sym_CARET] = ACTIONS(3090), + [anon_sym_AMP] = ACTIONS(3100), + [anon_sym_LT_DASH] = ACTIONS(3102), + [sym_none] = ACTIONS(1458), + [sym_true] = ACTIONS(1458), + [sym_false] = ACTIONS(1458), + [sym_nil] = ACTIONS(1458), + [anon_sym_if] = ACTIONS(1833), + [anon_sym_DOLLARif] = ACTIONS(1462), + [anon_sym_match] = ACTIONS(1464), + [anon_sym_select] = ACTIONS(3104), + [anon_sym_lock] = ACTIONS(3106), + [anon_sym_rlock] = ACTIONS(3106), + [anon_sym_unsafe] = ACTIONS(1839), + [anon_sym_sql] = ACTIONS(1472), + [sym_int_literal] = ACTIONS(1458), + [sym_float_literal] = ACTIONS(1474), + [sym_rune_literal] = ACTIONS(1474), + [sym_pseudo_compile_time_identifier] = ACTIONS(1476), [anon_sym_shared] = ACTIONS(83), [anon_sym_map_LBRACK] = ACTIONS(85), [anon_sym_chan] = ACTIONS(87), [anon_sym_thread] = ACTIONS(89), [anon_sym_atomic] = ACTIONS(91), - [sym___double_quote] = ACTIONS(861), - [sym___single_quote] = ACTIONS(863), - [sym___c_double_quote] = ACTIONS(865), - [sym___c_single_quote] = ACTIONS(867), - [sym___r_double_quote] = ACTIONS(869), - [sym___r_single_quote] = ACTIONS(871), - }, - [899] = { - [sym_line_comment] = STATE(899), - [sym_block_comment] = STATE(899), - [sym__expression] = STATE(966), - [sym__expression_without_blocks] = STATE(1017), - [sym__expression_with_blocks] = STATE(1017), - [sym_inc_expression] = STATE(1018), - [sym_dec_expression] = STATE(1018), - [sym_or_block_expression] = STATE(1018), - [sym_option_propagation_expression] = STATE(1018), - [sym_result_propagation_expression] = STATE(1018), - [sym_anon_struct_value_expression] = STATE(993), - [sym_go_expression] = STATE(1018), - [sym_spawn_expression] = STATE(1018), - [sym_parenthesized_expression] = STATE(1018), - [sym_call_expression] = STATE(1018), - [sym_type_initializer] = STATE(993), - [sym_function_literal] = STATE(1018), - [sym_reference_expression] = STATE(1046), - [sym_type_reference_expression] = STATE(3541), - [sym_unary_expression] = STATE(1018), - [sym_receive_expression] = STATE(1018), - [sym_binary_expression] = STATE(1018), - [sym_as_type_cast_expression] = STATE(1018), - [sym__max_group] = STATE(1018), - [sym_literal] = STATE(1014), - [sym_map_init_expression] = STATE(993), - [sym_array_creation] = STATE(1018), - [sym_fixed_array_creation] = STATE(1018), - [sym_selector_expression] = STATE(1018), - [sym_index_expression] = STATE(1018), - [sym_slice_expression] = STATE(1018), - [sym_if_expression] = STATE(993), - [sym_compile_time_if_expression] = STATE(993), - [sym_is_expression] = STATE(1018), - [sym_in_expression] = STATE(1018), - [sym_enum_fetch] = STATE(1018), - [sym_match_expression] = STATE(993), - [sym_select_expression] = STATE(993), - [sym_lock_expression] = STATE(993), - [sym_unsafe_expression] = STATE(993), - [sym_sql_expression] = STATE(993), - [sym_c_string_literal] = STATE(1006), - [sym_raw_string_literal] = STATE(1006), - [sym_interpreted_string_literal] = STATE(1006), - [sym_mutability_modifiers] = STATE(691), - [sym_plain_type] = STATE(4296), - [sym__plain_type_without_special] = STATE(2302), - [sym_anon_struct_type] = STATE(2303), - [sym_multi_return_type] = STATE(2302), - [sym_result_type] = STATE(2302), - [sym_option_type] = STATE(2302), - [sym_qualified_type] = STATE(3541), - [sym_fixed_array_type] = STATE(2303), - [sym_array_type] = STATE(2303), - [sym_pointer_type] = STATE(2303), - [sym_wrong_pointer_type] = STATE(2303), - [sym_map_type] = STATE(2303), - [sym_channel_type] = STATE(2303), - [sym_shared_type] = STATE(2303), - [sym_thread_type] = STATE(2303), - [sym_atomic_type] = STATE(2303), - [sym_generic_type] = STATE(2303), - [sym_function_type] = STATE(2303), - [sym_identifier] = ACTIONS(493), - [anon_sym_SLASH_SLASH] = ACTIONS(3), - [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(501), - [anon_sym_LBRACE] = ACTIONS(2319), - [anon_sym_LPAREN] = ACTIONS(2321), - [anon_sym_fn] = ACTIONS(507), - [anon_sym_PLUS] = ACTIONS(3360), - [anon_sym_DASH] = ACTIONS(3360), - [anon_sym_STAR] = ACTIONS(3362), - [anon_sym_struct] = ACTIONS(513), - [anon_sym_mut] = ACTIONS(41), - [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(3364), - [anon_sym_go] = ACTIONS(3366), - [anon_sym_spawn] = ACTIONS(3368), - [anon_sym_json_DOTdecode] = ACTIONS(2329), - [anon_sym_LBRACK2] = ACTIONS(2331), - [anon_sym_TILDE] = ACTIONS(3360), - [anon_sym_CARET] = ACTIONS(3360), - [anon_sym_AMP] = ACTIONS(3370), - [anon_sym_LT_DASH] = ACTIONS(3372), - [sym_none] = ACTIONS(531), - [sym_true] = ACTIONS(531), - [sym_false] = ACTIONS(531), - [sym_nil] = ACTIONS(531), - [anon_sym_if] = ACTIONS(533), - [anon_sym_DOLLARif] = ACTIONS(535), - [anon_sym_match] = ACTIONS(537), - [anon_sym_select] = ACTIONS(3374), - [anon_sym_lock] = ACTIONS(3376), - [anon_sym_rlock] = ACTIONS(3376), - [anon_sym_unsafe] = ACTIONS(543), - [anon_sym_sql] = ACTIONS(545), - [sym_int_literal] = ACTIONS(531), - [sym_float_literal] = ACTIONS(2337), - [sym_rune_literal] = ACTIONS(2337), - [sym_pseudo_compile_time_identifier] = ACTIONS(547), - [anon_sym_shared] = ACTIONS(83), - [anon_sym_map_LBRACK] = ACTIONS(85), - [anon_sym_chan] = ACTIONS(87), - [anon_sym_thread] = ACTIONS(89), - [anon_sym_atomic] = ACTIONS(91), - [sym___double_quote] = ACTIONS(2339), - [sym___single_quote] = ACTIONS(2341), - [sym___c_double_quote] = ACTIONS(2343), - [sym___c_single_quote] = ACTIONS(2345), - [sym___r_double_quote] = ACTIONS(2347), - [sym___r_single_quote] = ACTIONS(2349), - }, - [900] = { - [sym_line_comment] = STATE(900), - [sym_block_comment] = STATE(900), - [sym__expression] = STATE(1874), - [sym__expression_without_blocks] = STATE(2044), - [sym__expression_with_blocks] = STATE(2044), - [sym_inc_expression] = STATE(2045), - [sym_dec_expression] = STATE(2045), - [sym_or_block_expression] = STATE(2045), - [sym_option_propagation_expression] = STATE(2045), - [sym_result_propagation_expression] = STATE(2045), - [sym_anon_struct_value_expression] = STATE(2046), - [sym_go_expression] = STATE(2045), - [sym_spawn_expression] = STATE(2045), - [sym_parenthesized_expression] = STATE(2045), - [sym_call_expression] = STATE(2045), - [sym_type_initializer] = STATE(2046), - [sym_function_literal] = STATE(2045), - [sym_reference_expression] = STATE(1912), - [sym_type_reference_expression] = STATE(3541), - [sym_unary_expression] = STATE(2045), - [sym_receive_expression] = STATE(2045), - [sym_binary_expression] = STATE(2045), - [sym_as_type_cast_expression] = STATE(2045), - [sym__max_group] = STATE(2045), - [sym_literal] = STATE(2043), - [sym_map_init_expression] = STATE(2046), - [sym_array_creation] = STATE(2045), - [sym_fixed_array_creation] = STATE(2045), - [sym_selector_expression] = STATE(2045), - [sym_index_expression] = STATE(2045), - [sym_slice_expression] = STATE(2045), - [sym_if_expression] = STATE(2046), - [sym_compile_time_if_expression] = STATE(2046), - [sym_is_expression] = STATE(2045), - [sym_in_expression] = STATE(2045), - [sym_enum_fetch] = STATE(2045), - [sym_match_expression] = STATE(2046), - [sym_select_expression] = STATE(2046), - [sym_lock_expression] = STATE(2046), - [sym_unsafe_expression] = STATE(2046), - [sym_sql_expression] = STATE(2046), - [sym_c_string_literal] = STATE(2041), - [sym_raw_string_literal] = STATE(2041), - [sym_interpreted_string_literal] = STATE(2041), - [sym_mutability_modifiers] = STATE(689), - [sym_plain_type] = STATE(4052), - [sym__plain_type_without_special] = STATE(2302), - [sym_anon_struct_type] = STATE(2303), - [sym_multi_return_type] = STATE(2302), - [sym_result_type] = STATE(2302), - [sym_option_type] = STATE(2302), - [sym_qualified_type] = STATE(3541), - [sym_fixed_array_type] = STATE(2303), - [sym_array_type] = STATE(2303), - [sym_pointer_type] = STATE(2303), - [sym_wrong_pointer_type] = STATE(2303), - [sym_map_type] = STATE(2303), - [sym_channel_type] = STATE(2303), - [sym_shared_type] = STATE(2303), - [sym_thread_type] = STATE(2303), - [sym_atomic_type] = STATE(2303), - [sym_generic_type] = STATE(2303), - [sym_function_type] = STATE(2303), - [sym_identifier] = ACTIONS(3142), - [anon_sym_SLASH_SLASH] = ACTIONS(3), - [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(811), - [anon_sym_LBRACE] = ACTIONS(3144), - [anon_sym_LPAREN] = ACTIONS(815), - [anon_sym_fn] = ACTIONS(817), - [anon_sym_PLUS] = ACTIONS(3146), - [anon_sym_DASH] = ACTIONS(3146), - [anon_sym_STAR] = ACTIONS(3148), - [anon_sym_struct] = ACTIONS(823), - [anon_sym_mut] = ACTIONS(41), - [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(3150), - [anon_sym_go] = ACTIONS(3152), - [anon_sym_spawn] = ACTIONS(3154), - [anon_sym_json_DOTdecode] = ACTIONS(833), - [anon_sym_LBRACK2] = ACTIONS(3156), - [anon_sym_TILDE] = ACTIONS(3146), - [anon_sym_CARET] = ACTIONS(3146), - [anon_sym_AMP] = ACTIONS(3158), - [anon_sym_LT_DASH] = ACTIONS(3160), - [sym_none] = ACTIONS(841), - [sym_true] = ACTIONS(841), - [sym_false] = ACTIONS(841), - [sym_nil] = ACTIONS(841), - [anon_sym_if] = ACTIONS(843), - [anon_sym_DOLLARif] = ACTIONS(845), - [anon_sym_match] = ACTIONS(847), - [anon_sym_select] = ACTIONS(3162), - [anon_sym_lock] = ACTIONS(3164), - [anon_sym_rlock] = ACTIONS(3164), - [anon_sym_unsafe] = ACTIONS(853), - [anon_sym_sql] = ACTIONS(855), - [sym_int_literal] = ACTIONS(841), - [sym_float_literal] = ACTIONS(857), - [sym_rune_literal] = ACTIONS(857), - [sym_pseudo_compile_time_identifier] = ACTIONS(859), - [anon_sym_shared] = ACTIONS(83), - [anon_sym_map_LBRACK] = ACTIONS(85), - [anon_sym_chan] = ACTIONS(87), - [anon_sym_thread] = ACTIONS(89), - [anon_sym_atomic] = ACTIONS(91), - [sym___double_quote] = ACTIONS(861), - [sym___single_quote] = ACTIONS(863), - [sym___c_double_quote] = ACTIONS(865), - [sym___c_single_quote] = ACTIONS(867), - [sym___r_double_quote] = ACTIONS(869), - [sym___r_single_quote] = ACTIONS(871), - }, - [901] = { - [sym_line_comment] = STATE(901), - [sym_block_comment] = STATE(901), - [sym__expression] = STATE(1775), - [sym__expression_without_blocks] = STATE(2044), - [sym__expression_with_blocks] = STATE(2044), - [sym_inc_expression] = STATE(2045), - [sym_dec_expression] = STATE(2045), - [sym_or_block_expression] = STATE(2045), - [sym_option_propagation_expression] = STATE(2045), - [sym_result_propagation_expression] = STATE(2045), - [sym_anon_struct_value_expression] = STATE(2046), - [sym_go_expression] = STATE(2045), - [sym_spawn_expression] = STATE(2045), - [sym_parenthesized_expression] = STATE(2045), - [sym_call_expression] = STATE(2045), - [sym_type_initializer] = STATE(2046), - [sym_function_literal] = STATE(2045), - [sym_reference_expression] = STATE(1912), - [sym_type_reference_expression] = STATE(3541), - [sym_unary_expression] = STATE(2045), - [sym_receive_expression] = STATE(2045), - [sym_binary_expression] = STATE(2045), - [sym_as_type_cast_expression] = STATE(2045), - [sym__max_group] = STATE(2045), - [sym_literal] = STATE(2043), - [sym_map_init_expression] = STATE(2046), - [sym_array_creation] = STATE(2045), - [sym_fixed_array_creation] = STATE(2045), - [sym_selector_expression] = STATE(2045), - [sym_index_expression] = STATE(2045), - [sym_slice_expression] = STATE(2045), - [sym_if_expression] = STATE(2046), - [sym_compile_time_if_expression] = STATE(2046), - [sym_is_expression] = STATE(2045), - [sym_in_expression] = STATE(2045), - [sym_enum_fetch] = STATE(2045), - [sym_match_expression] = STATE(2046), - [sym_select_expression] = STATE(2046), - [sym_lock_expression] = STATE(2046), - [sym_unsafe_expression] = STATE(2046), - [sym_sql_expression] = STATE(2046), - [sym_c_string_literal] = STATE(2041), - [sym_raw_string_literal] = STATE(2041), - [sym_interpreted_string_literal] = STATE(2041), - [sym_mutability_modifiers] = STATE(689), - [sym_plain_type] = STATE(4052), - [sym__plain_type_without_special] = STATE(2302), - [sym_anon_struct_type] = STATE(2303), - [sym_multi_return_type] = STATE(2302), - [sym_result_type] = STATE(2302), - [sym_option_type] = STATE(2302), - [sym_qualified_type] = STATE(3541), - [sym_fixed_array_type] = STATE(2303), - [sym_array_type] = STATE(2303), - [sym_pointer_type] = STATE(2303), - [sym_wrong_pointer_type] = STATE(2303), - [sym_map_type] = STATE(2303), - [sym_channel_type] = STATE(2303), - [sym_shared_type] = STATE(2303), - [sym_thread_type] = STATE(2303), - [sym_atomic_type] = STATE(2303), - [sym_generic_type] = STATE(2303), - [sym_function_type] = STATE(2303), - [sym_identifier] = ACTIONS(1641), - [anon_sym_SLASH_SLASH] = ACTIONS(3), - [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(811), - [anon_sym_LBRACE] = ACTIONS(3144), - [anon_sym_LPAREN] = ACTIONS(815), - [anon_sym_fn] = ACTIONS(817), - [anon_sym_PLUS] = ACTIONS(819), - [anon_sym_DASH] = ACTIONS(819), - [anon_sym_STAR] = ACTIONS(821), - [anon_sym_struct] = ACTIONS(823), - [anon_sym_mut] = ACTIONS(41), - [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(827), - [anon_sym_go] = ACTIONS(829), - [anon_sym_spawn] = ACTIONS(831), - [anon_sym_json_DOTdecode] = ACTIONS(833), - [anon_sym_LBRACK2] = ACTIONS(835), - [anon_sym_TILDE] = ACTIONS(819), - [anon_sym_CARET] = ACTIONS(819), - [anon_sym_AMP] = ACTIONS(837), - [anon_sym_LT_DASH] = ACTIONS(839), - [sym_none] = ACTIONS(841), - [sym_true] = ACTIONS(841), - [sym_false] = ACTIONS(841), - [sym_nil] = ACTIONS(841), - [anon_sym_if] = ACTIONS(843), - [anon_sym_DOLLARif] = ACTIONS(845), - [anon_sym_match] = ACTIONS(847), - [anon_sym_select] = ACTIONS(849), - [anon_sym_lock] = ACTIONS(851), - [anon_sym_rlock] = ACTIONS(851), - [anon_sym_unsafe] = ACTIONS(853), - [anon_sym_sql] = ACTIONS(855), - [sym_int_literal] = ACTIONS(841), - [sym_float_literal] = ACTIONS(857), - [sym_rune_literal] = ACTIONS(857), - [sym_pseudo_compile_time_identifier] = ACTIONS(859), - [anon_sym_shared] = ACTIONS(83), - [anon_sym_map_LBRACK] = ACTIONS(85), - [anon_sym_chan] = ACTIONS(87), - [anon_sym_thread] = ACTIONS(89), - [anon_sym_atomic] = ACTIONS(91), - [sym___double_quote] = ACTIONS(861), - [sym___single_quote] = ACTIONS(863), - [sym___c_double_quote] = ACTIONS(865), - [sym___c_single_quote] = ACTIONS(867), - [sym___r_double_quote] = ACTIONS(869), - [sym___r_single_quote] = ACTIONS(871), - }, - [902] = { - [sym_line_comment] = STATE(902), - [sym_block_comment] = STATE(902), - [sym__expression] = STATE(1116), - [sym__expression_without_blocks] = STATE(1141), - [sym__expression_with_blocks] = STATE(1141), - [sym_inc_expression] = STATE(1140), - [sym_dec_expression] = STATE(1140), - [sym_or_block_expression] = STATE(1140), - [sym_option_propagation_expression] = STATE(1140), - [sym_result_propagation_expression] = STATE(1140), - [sym_anon_struct_value_expression] = STATE(1199), - [sym_go_expression] = STATE(1140), - [sym_spawn_expression] = STATE(1140), - [sym_parenthesized_expression] = STATE(1140), - [sym_call_expression] = STATE(1140), - [sym_type_initializer] = STATE(1199), - [sym_function_literal] = STATE(1140), - [sym_reference_expression] = STATE(1181), - [sym_type_reference_expression] = STATE(3541), - [sym_unary_expression] = STATE(1140), - [sym_receive_expression] = STATE(1140), - [sym_binary_expression] = STATE(1140), - [sym_as_type_cast_expression] = STATE(1140), - [sym__max_group] = STATE(1140), - [sym_literal] = STATE(1146), - [sym_map_init_expression] = STATE(1199), - [sym_array_creation] = STATE(1140), - [sym_fixed_array_creation] = STATE(1140), - [sym_selector_expression] = STATE(1140), - [sym_index_expression] = STATE(1140), - [sym_slice_expression] = STATE(1140), - [sym_if_expression] = STATE(1199), - [sym_compile_time_if_expression] = STATE(1199), - [sym_is_expression] = STATE(1140), - [sym_in_expression] = STATE(1140), - [sym_enum_fetch] = STATE(1140), - [sym_match_expression] = STATE(1199), - [sym_select_expression] = STATE(1199), - [sym_lock_expression] = STATE(1199), - [sym_unsafe_expression] = STATE(1199), - [sym_sql_expression] = STATE(1199), - [sym_c_string_literal] = STATE(1147), - [sym_raw_string_literal] = STATE(1147), - [sym_interpreted_string_literal] = STATE(1147), - [sym_mutability_modifiers] = STATE(638), - [sym_plain_type] = STATE(4234), - [sym__plain_type_without_special] = STATE(2302), - [sym_anon_struct_type] = STATE(2303), - [sym_multi_return_type] = STATE(2302), - [sym_result_type] = STATE(2302), - [sym_option_type] = STATE(2302), - [sym_qualified_type] = STATE(3541), - [sym_fixed_array_type] = STATE(2303), - [sym_array_type] = STATE(2303), - [sym_pointer_type] = STATE(2303), - [sym_wrong_pointer_type] = STATE(2303), - [sym_map_type] = STATE(2303), - [sym_channel_type] = STATE(2303), - [sym_shared_type] = STATE(2303), - [sym_thread_type] = STATE(2303), - [sym_atomic_type] = STATE(2303), - [sym_generic_type] = STATE(2303), - [sym_function_type] = STATE(2303), - [sym_identifier] = ACTIONS(1071), - [anon_sym_SLASH_SLASH] = ACTIONS(3), - [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(631), - [anon_sym_LBRACE] = ACTIONS(633), - [anon_sym_LPAREN] = ACTIONS(637), - [anon_sym_fn] = ACTIONS(641), - [anon_sym_PLUS] = ACTIONS(643), - [anon_sym_DASH] = ACTIONS(643), - [anon_sym_STAR] = ACTIONS(645), - [anon_sym_struct] = ACTIONS(649), - [anon_sym_mut] = ACTIONS(41), - [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(655), - [anon_sym_go] = ACTIONS(657), - [anon_sym_spawn] = ACTIONS(659), - [anon_sym_json_DOTdecode] = ACTIONS(661), - [anon_sym_LBRACK2] = ACTIONS(663), - [anon_sym_TILDE] = ACTIONS(643), - [anon_sym_CARET] = ACTIONS(643), - [anon_sym_AMP] = ACTIONS(665), - [anon_sym_LT_DASH] = ACTIONS(667), - [sym_none] = ACTIONS(669), - [sym_true] = ACTIONS(669), - [sym_false] = ACTIONS(669), - [sym_nil] = ACTIONS(669), - [anon_sym_if] = ACTIONS(671), - [anon_sym_DOLLARif] = ACTIONS(673), - [anon_sym_match] = ACTIONS(675), - [anon_sym_select] = ACTIONS(677), - [anon_sym_lock] = ACTIONS(679), - [anon_sym_rlock] = ACTIONS(679), - [anon_sym_unsafe] = ACTIONS(681), - [anon_sym_sql] = ACTIONS(683), - [sym_int_literal] = ACTIONS(669), - [sym_float_literal] = ACTIONS(685), - [sym_rune_literal] = ACTIONS(685), - [sym_pseudo_compile_time_identifier] = ACTIONS(687), - [anon_sym_shared] = ACTIONS(83), - [anon_sym_map_LBRACK] = ACTIONS(85), - [anon_sym_chan] = ACTIONS(87), - [anon_sym_thread] = ACTIONS(89), - [anon_sym_atomic] = ACTIONS(91), - [sym___double_quote] = ACTIONS(689), - [sym___single_quote] = ACTIONS(691), - [sym___c_double_quote] = ACTIONS(693), - [sym___c_single_quote] = ACTIONS(695), - [sym___r_double_quote] = ACTIONS(697), - [sym___r_single_quote] = ACTIONS(699), - }, - [903] = { - [sym_line_comment] = STATE(903), - [sym_block_comment] = STATE(903), - [sym__expression] = STATE(973), - [sym__expression_without_blocks] = STATE(1017), - [sym__expression_with_blocks] = STATE(1017), - [sym_inc_expression] = STATE(1018), - [sym_dec_expression] = STATE(1018), - [sym_or_block_expression] = STATE(1018), - [sym_option_propagation_expression] = STATE(1018), - [sym_result_propagation_expression] = STATE(1018), - [sym_anon_struct_value_expression] = STATE(993), - [sym_go_expression] = STATE(1018), - [sym_spawn_expression] = STATE(1018), - [sym_parenthesized_expression] = STATE(1018), - [sym_call_expression] = STATE(1018), - [sym_type_initializer] = STATE(993), - [sym_function_literal] = STATE(1018), - [sym_reference_expression] = STATE(1046), - [sym_type_reference_expression] = STATE(3541), - [sym_unary_expression] = STATE(1018), - [sym_receive_expression] = STATE(1018), - [sym_binary_expression] = STATE(1018), - [sym_as_type_cast_expression] = STATE(1018), - [sym__max_group] = STATE(1018), - [sym_literal] = STATE(1014), - [sym_map_init_expression] = STATE(993), - [sym_array_creation] = STATE(1018), - [sym_fixed_array_creation] = STATE(1018), - [sym_selector_expression] = STATE(1018), - [sym_index_expression] = STATE(1018), - [sym_slice_expression] = STATE(1018), - [sym_if_expression] = STATE(993), - [sym_compile_time_if_expression] = STATE(993), - [sym_is_expression] = STATE(1018), - [sym_in_expression] = STATE(1018), - [sym_enum_fetch] = STATE(1018), - [sym_match_expression] = STATE(993), - [sym_select_expression] = STATE(993), - [sym_lock_expression] = STATE(993), - [sym_unsafe_expression] = STATE(993), - [sym_sql_expression] = STATE(993), - [sym_c_string_literal] = STATE(1006), - [sym_raw_string_literal] = STATE(1006), - [sym_interpreted_string_literal] = STATE(1006), - [sym_mutability_modifiers] = STATE(691), - [sym_plain_type] = STATE(4296), - [sym__plain_type_without_special] = STATE(2302), - [sym_anon_struct_type] = STATE(2303), - [sym_multi_return_type] = STATE(2302), - [sym_result_type] = STATE(2302), - [sym_option_type] = STATE(2302), - [sym_qualified_type] = STATE(3541), - [sym_fixed_array_type] = STATE(2303), - [sym_array_type] = STATE(2303), - [sym_pointer_type] = STATE(2303), - [sym_wrong_pointer_type] = STATE(2303), - [sym_map_type] = STATE(2303), - [sym_channel_type] = STATE(2303), - [sym_shared_type] = STATE(2303), - [sym_thread_type] = STATE(2303), - [sym_atomic_type] = STATE(2303), - [sym_generic_type] = STATE(2303), - [sym_function_type] = STATE(2303), - [sym_identifier] = ACTIONS(493), - [anon_sym_SLASH_SLASH] = ACTIONS(3), - [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(501), - [anon_sym_LBRACE] = ACTIONS(2319), - [anon_sym_LPAREN] = ACTIONS(2321), - [anon_sym_fn] = ACTIONS(507), - [anon_sym_PLUS] = ACTIONS(3360), - [anon_sym_DASH] = ACTIONS(3360), - [anon_sym_STAR] = ACTIONS(3362), - [anon_sym_struct] = ACTIONS(513), - [anon_sym_mut] = ACTIONS(41), - [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(3364), - [anon_sym_go] = ACTIONS(3366), - [anon_sym_spawn] = ACTIONS(3368), - [anon_sym_json_DOTdecode] = ACTIONS(2329), - [anon_sym_LBRACK2] = ACTIONS(2331), - [anon_sym_TILDE] = ACTIONS(3360), - [anon_sym_CARET] = ACTIONS(3360), - [anon_sym_AMP] = ACTIONS(3370), - [anon_sym_LT_DASH] = ACTIONS(3372), - [sym_none] = ACTIONS(531), - [sym_true] = ACTIONS(531), - [sym_false] = ACTIONS(531), - [sym_nil] = ACTIONS(531), - [anon_sym_if] = ACTIONS(533), - [anon_sym_DOLLARif] = ACTIONS(535), - [anon_sym_match] = ACTIONS(537), - [anon_sym_select] = ACTIONS(3374), - [anon_sym_lock] = ACTIONS(3376), - [anon_sym_rlock] = ACTIONS(3376), - [anon_sym_unsafe] = ACTIONS(543), - [anon_sym_sql] = ACTIONS(545), - [sym_int_literal] = ACTIONS(531), - [sym_float_literal] = ACTIONS(2337), - [sym_rune_literal] = ACTIONS(2337), - [sym_pseudo_compile_time_identifier] = ACTIONS(547), - [anon_sym_shared] = ACTIONS(83), - [anon_sym_map_LBRACK] = ACTIONS(85), - [anon_sym_chan] = ACTIONS(87), - [anon_sym_thread] = ACTIONS(89), - [anon_sym_atomic] = ACTIONS(91), - [sym___double_quote] = ACTIONS(2339), - [sym___single_quote] = ACTIONS(2341), - [sym___c_double_quote] = ACTIONS(2343), - [sym___c_single_quote] = ACTIONS(2345), - [sym___r_double_quote] = ACTIONS(2347), - [sym___r_single_quote] = ACTIONS(2349), - }, - [904] = { - [sym_line_comment] = STATE(904), - [sym_block_comment] = STATE(904), - [sym__expression] = STATE(1106), - [sym__expression_without_blocks] = STATE(1141), - [sym__expression_with_blocks] = STATE(1141), - [sym_inc_expression] = STATE(1140), - [sym_dec_expression] = STATE(1140), - [sym_or_block_expression] = STATE(1140), - [sym_option_propagation_expression] = STATE(1140), - [sym_result_propagation_expression] = STATE(1140), - [sym_anon_struct_value_expression] = STATE(1199), - [sym_go_expression] = STATE(1140), - [sym_spawn_expression] = STATE(1140), - [sym_parenthesized_expression] = STATE(1140), - [sym_call_expression] = STATE(1140), - [sym_type_initializer] = STATE(1199), - [sym_function_literal] = STATE(1140), - [sym_reference_expression] = STATE(1181), - [sym_type_reference_expression] = STATE(3541), - [sym_unary_expression] = STATE(1140), - [sym_receive_expression] = STATE(1140), - [sym_binary_expression] = STATE(1140), - [sym_as_type_cast_expression] = STATE(1140), - [sym__max_group] = STATE(1140), - [sym_literal] = STATE(1146), - [sym_map_init_expression] = STATE(1199), - [sym_array_creation] = STATE(1140), - [sym_fixed_array_creation] = STATE(1140), - [sym_selector_expression] = STATE(1140), - [sym_index_expression] = STATE(1140), - [sym_slice_expression] = STATE(1140), - [sym_if_expression] = STATE(1199), - [sym_compile_time_if_expression] = STATE(1199), - [sym_is_expression] = STATE(1140), - [sym_in_expression] = STATE(1140), - [sym_enum_fetch] = STATE(1140), - [sym_match_expression] = STATE(1199), - [sym_select_expression] = STATE(1199), - [sym_lock_expression] = STATE(1199), - [sym_unsafe_expression] = STATE(1199), - [sym_sql_expression] = STATE(1199), - [sym_c_string_literal] = STATE(1147), - [sym_raw_string_literal] = STATE(1147), - [sym_interpreted_string_literal] = STATE(1147), - [sym_mutability_modifiers] = STATE(638), - [sym_plain_type] = STATE(4234), - [sym__plain_type_without_special] = STATE(2302), - [sym_anon_struct_type] = STATE(2303), - [sym_multi_return_type] = STATE(2302), - [sym_result_type] = STATE(2302), - [sym_option_type] = STATE(2302), - [sym_qualified_type] = STATE(3541), - [sym_fixed_array_type] = STATE(2303), - [sym_array_type] = STATE(2303), - [sym_pointer_type] = STATE(2303), - [sym_wrong_pointer_type] = STATE(2303), - [sym_map_type] = STATE(2303), - [sym_channel_type] = STATE(2303), - [sym_shared_type] = STATE(2303), - [sym_thread_type] = STATE(2303), - [sym_atomic_type] = STATE(2303), - [sym_generic_type] = STATE(2303), - [sym_function_type] = STATE(2303), - [sym_identifier] = ACTIONS(1071), - [anon_sym_SLASH_SLASH] = ACTIONS(3), - [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(631), - [anon_sym_LBRACE] = ACTIONS(633), - [anon_sym_LPAREN] = ACTIONS(637), - [anon_sym_fn] = ACTIONS(641), - [anon_sym_PLUS] = ACTIONS(643), - [anon_sym_DASH] = ACTIONS(643), - [anon_sym_STAR] = ACTIONS(645), - [anon_sym_struct] = ACTIONS(649), - [anon_sym_mut] = ACTIONS(41), - [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(655), - [anon_sym_go] = ACTIONS(657), - [anon_sym_spawn] = ACTIONS(659), - [anon_sym_json_DOTdecode] = ACTIONS(661), - [anon_sym_LBRACK2] = ACTIONS(663), - [anon_sym_TILDE] = ACTIONS(643), - [anon_sym_CARET] = ACTIONS(643), - [anon_sym_AMP] = ACTIONS(665), - [anon_sym_LT_DASH] = ACTIONS(667), - [sym_none] = ACTIONS(669), - [sym_true] = ACTIONS(669), - [sym_false] = ACTIONS(669), - [sym_nil] = ACTIONS(669), - [anon_sym_if] = ACTIONS(671), - [anon_sym_DOLLARif] = ACTIONS(673), - [anon_sym_match] = ACTIONS(675), - [anon_sym_select] = ACTIONS(677), - [anon_sym_lock] = ACTIONS(679), - [anon_sym_rlock] = ACTIONS(679), - [anon_sym_unsafe] = ACTIONS(681), - [anon_sym_sql] = ACTIONS(683), - [sym_int_literal] = ACTIONS(669), - [sym_float_literal] = ACTIONS(685), - [sym_rune_literal] = ACTIONS(685), - [sym_pseudo_compile_time_identifier] = ACTIONS(687), - [anon_sym_shared] = ACTIONS(83), - [anon_sym_map_LBRACK] = ACTIONS(85), - [anon_sym_chan] = ACTIONS(87), - [anon_sym_thread] = ACTIONS(89), - [anon_sym_atomic] = ACTIONS(91), - [sym___double_quote] = ACTIONS(689), - [sym___single_quote] = ACTIONS(691), - [sym___c_double_quote] = ACTIONS(693), - [sym___c_single_quote] = ACTIONS(695), - [sym___r_double_quote] = ACTIONS(697), - [sym___r_single_quote] = ACTIONS(699), - }, - [905] = { - [sym_line_comment] = STATE(905), - [sym_block_comment] = STATE(905), - [sym__expression] = STATE(1774), - [sym__expression_without_blocks] = STATE(2044), - [sym__expression_with_blocks] = STATE(2044), - [sym_inc_expression] = STATE(2045), - [sym_dec_expression] = STATE(2045), - [sym_or_block_expression] = STATE(2045), - [sym_option_propagation_expression] = STATE(2045), - [sym_result_propagation_expression] = STATE(2045), - [sym_anon_struct_value_expression] = STATE(2046), - [sym_go_expression] = STATE(2045), - [sym_spawn_expression] = STATE(2045), - [sym_parenthesized_expression] = STATE(2045), - [sym_call_expression] = STATE(2045), - [sym_type_initializer] = STATE(2046), - [sym_function_literal] = STATE(2045), - [sym_reference_expression] = STATE(1912), - [sym_type_reference_expression] = STATE(3541), - [sym_unary_expression] = STATE(2045), - [sym_receive_expression] = STATE(2045), - [sym_binary_expression] = STATE(2045), - [sym_as_type_cast_expression] = STATE(2045), - [sym__max_group] = STATE(2045), - [sym_literal] = STATE(2043), - [sym_map_init_expression] = STATE(2046), - [sym_array_creation] = STATE(2045), - [sym_fixed_array_creation] = STATE(2045), - [sym_selector_expression] = STATE(2045), - [sym_index_expression] = STATE(2045), - [sym_slice_expression] = STATE(2045), - [sym_if_expression] = STATE(2046), - [sym_compile_time_if_expression] = STATE(2046), - [sym_is_expression] = STATE(2045), - [sym_in_expression] = STATE(2045), - [sym_enum_fetch] = STATE(2045), - [sym_match_expression] = STATE(2046), - [sym_select_expression] = STATE(2046), - [sym_lock_expression] = STATE(2046), - [sym_unsafe_expression] = STATE(2046), - [sym_sql_expression] = STATE(2046), - [sym_c_string_literal] = STATE(2041), - [sym_raw_string_literal] = STATE(2041), - [sym_interpreted_string_literal] = STATE(2041), - [sym_mutability_modifiers] = STATE(689), - [sym_plain_type] = STATE(4052), - [sym__plain_type_without_special] = STATE(2302), - [sym_anon_struct_type] = STATE(2303), - [sym_multi_return_type] = STATE(2302), - [sym_result_type] = STATE(2302), - [sym_option_type] = STATE(2302), - [sym_qualified_type] = STATE(3541), - [sym_fixed_array_type] = STATE(2303), - [sym_array_type] = STATE(2303), - [sym_pointer_type] = STATE(2303), - [sym_wrong_pointer_type] = STATE(2303), - [sym_map_type] = STATE(2303), - [sym_channel_type] = STATE(2303), - [sym_shared_type] = STATE(2303), - [sym_thread_type] = STATE(2303), - [sym_atomic_type] = STATE(2303), - [sym_generic_type] = STATE(2303), - [sym_function_type] = STATE(2303), - [sym_identifier] = ACTIONS(1641), - [anon_sym_SLASH_SLASH] = ACTIONS(3), - [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(811), - [anon_sym_LBRACE] = ACTIONS(3144), - [anon_sym_LPAREN] = ACTIONS(815), - [anon_sym_fn] = ACTIONS(817), - [anon_sym_PLUS] = ACTIONS(819), - [anon_sym_DASH] = ACTIONS(819), - [anon_sym_STAR] = ACTIONS(821), - [anon_sym_struct] = ACTIONS(823), - [anon_sym_mut] = ACTIONS(41), - [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(827), - [anon_sym_go] = ACTIONS(829), - [anon_sym_spawn] = ACTIONS(831), - [anon_sym_json_DOTdecode] = ACTIONS(833), - [anon_sym_LBRACK2] = ACTIONS(835), - [anon_sym_TILDE] = ACTIONS(819), - [anon_sym_CARET] = ACTIONS(819), - [anon_sym_AMP] = ACTIONS(837), - [anon_sym_LT_DASH] = ACTIONS(839), - [sym_none] = ACTIONS(841), - [sym_true] = ACTIONS(841), - [sym_false] = ACTIONS(841), - [sym_nil] = ACTIONS(841), - [anon_sym_if] = ACTIONS(843), - [anon_sym_DOLLARif] = ACTIONS(845), - [anon_sym_match] = ACTIONS(847), - [anon_sym_select] = ACTIONS(849), - [anon_sym_lock] = ACTIONS(851), - [anon_sym_rlock] = ACTIONS(851), - [anon_sym_unsafe] = ACTIONS(853), - [anon_sym_sql] = ACTIONS(855), - [sym_int_literal] = ACTIONS(841), - [sym_float_literal] = ACTIONS(857), - [sym_rune_literal] = ACTIONS(857), - [sym_pseudo_compile_time_identifier] = ACTIONS(859), - [anon_sym_shared] = ACTIONS(83), - [anon_sym_map_LBRACK] = ACTIONS(85), - [anon_sym_chan] = ACTIONS(87), - [anon_sym_thread] = ACTIONS(89), - [anon_sym_atomic] = ACTIONS(91), - [sym___double_quote] = ACTIONS(861), - [sym___single_quote] = ACTIONS(863), - [sym___c_double_quote] = ACTIONS(865), - [sym___c_single_quote] = ACTIONS(867), - [sym___r_double_quote] = ACTIONS(869), - [sym___r_single_quote] = ACTIONS(871), + [sym___double_quote] = ACTIONS(1480), + [sym___single_quote] = ACTIONS(1482), + [sym___c_double_quote] = ACTIONS(1484), + [sym___c_single_quote] = ACTIONS(1486), + [sym___r_double_quote] = ACTIONS(1488), + [sym___r_single_quote] = ACTIONS(1490), }, [906] = { [sym_line_comment] = STATE(906), [sym_block_comment] = STATE(906), - [sym__expression] = STATE(1110), - [sym__expression_without_blocks] = STATE(1141), - [sym__expression_with_blocks] = STATE(1141), - [sym_inc_expression] = STATE(1140), - [sym_dec_expression] = STATE(1140), - [sym_or_block_expression] = STATE(1140), - [sym_option_propagation_expression] = STATE(1140), - [sym_result_propagation_expression] = STATE(1140), - [sym_anon_struct_value_expression] = STATE(1199), - [sym_go_expression] = STATE(1140), - [sym_spawn_expression] = STATE(1140), - [sym_parenthesized_expression] = STATE(1140), - [sym_call_expression] = STATE(1140), - [sym_type_initializer] = STATE(1199), - [sym_function_literal] = STATE(1140), - [sym_reference_expression] = STATE(1181), - [sym_type_reference_expression] = STATE(3541), - [sym_unary_expression] = STATE(1140), - [sym_receive_expression] = STATE(1140), - [sym_binary_expression] = STATE(1140), - [sym_as_type_cast_expression] = STATE(1140), - [sym__max_group] = STATE(1140), - [sym_literal] = STATE(1146), - [sym_map_init_expression] = STATE(1199), - [sym_array_creation] = STATE(1140), - [sym_fixed_array_creation] = STATE(1140), - [sym_selector_expression] = STATE(1140), - [sym_index_expression] = STATE(1140), - [sym_slice_expression] = STATE(1140), - [sym_if_expression] = STATE(1199), - [sym_compile_time_if_expression] = STATE(1199), - [sym_is_expression] = STATE(1140), - [sym_in_expression] = STATE(1140), - [sym_enum_fetch] = STATE(1140), - [sym_match_expression] = STATE(1199), - [sym_select_expression] = STATE(1199), - [sym_lock_expression] = STATE(1199), - [sym_unsafe_expression] = STATE(1199), - [sym_sql_expression] = STATE(1199), - [sym_c_string_literal] = STATE(1147), - [sym_raw_string_literal] = STATE(1147), - [sym_interpreted_string_literal] = STATE(1147), - [sym_mutability_modifiers] = STATE(638), - [sym_plain_type] = STATE(4234), - [sym__plain_type_without_special] = STATE(2302), - [sym_anon_struct_type] = STATE(2303), - [sym_multi_return_type] = STATE(2302), - [sym_result_type] = STATE(2302), - [sym_option_type] = STATE(2302), - [sym_qualified_type] = STATE(3541), - [sym_fixed_array_type] = STATE(2303), - [sym_array_type] = STATE(2303), - [sym_pointer_type] = STATE(2303), - [sym_wrong_pointer_type] = STATE(2303), - [sym_map_type] = STATE(2303), - [sym_channel_type] = STATE(2303), - [sym_shared_type] = STATE(2303), - [sym_thread_type] = STATE(2303), - [sym_atomic_type] = STATE(2303), - [sym_generic_type] = STATE(2303), - [sym_function_type] = STATE(2303), - [sym_identifier] = ACTIONS(1071), + [sym__expression] = STATE(2695), + [sym__expression_without_blocks] = STATE(2347), + [sym__expression_with_blocks] = STATE(2347), + [sym_inc_expression] = STATE(2379), + [sym_dec_expression] = STATE(2379), + [sym_or_block_expression] = STATE(2379), + [sym_option_propagation_expression] = STATE(2379), + [sym_result_propagation_expression] = STATE(2379), + [sym_anon_struct_value_expression] = STATE(2378), + [sym_go_expression] = STATE(2379), + [sym_spawn_expression] = STATE(2379), + [sym_parenthesized_expression] = STATE(2379), + [sym_call_expression] = STATE(2379), + [sym_type_initializer] = STATE(2378), + [sym_function_literal] = STATE(2379), + [sym_reference_expression] = STATE(2377), + [sym_type_reference_expression] = STATE(3460), + [sym_unary_expression] = STATE(2379), + [sym_receive_expression] = STATE(2379), + [sym_binary_expression] = STATE(2379), + [sym_as_type_cast_expression] = STATE(2379), + [sym__max_group] = STATE(2379), + [sym_literal] = STATE(2392), + [sym_map_init_expression] = STATE(2378), + [sym_array_creation] = STATE(2379), + [sym_fixed_array_creation] = STATE(2379), + [sym_selector_expression] = STATE(2379), + [sym_index_expression] = STATE(2379), + [sym_slice_expression] = STATE(2379), + [sym_if_expression] = STATE(2378), + [sym_compile_time_if_expression] = STATE(2378), + [sym_is_expression] = STATE(2379), + [sym_in_expression] = STATE(2379), + [sym_enum_fetch] = STATE(2379), + [sym_match_expression] = STATE(2378), + [sym_select_expression] = STATE(2378), + [sym_lock_expression] = STATE(2378), + [sym_unsafe_expression] = STATE(2378), + [sym_sql_expression] = STATE(2378), + [sym_c_string_literal] = STATE(2401), + [sym_raw_string_literal] = STATE(2401), + [sym_interpreted_string_literal] = STATE(2401), + [sym_mutability_modifiers] = STATE(939), + [sym_plain_type] = STATE(4160), + [sym__plain_type_without_special] = STATE(2360), + [sym_anon_struct_type] = STATE(2362), + [sym_multi_return_type] = STATE(2360), + [sym_result_type] = STATE(2360), + [sym_option_type] = STATE(2360), + [sym_qualified_type] = STATE(3460), + [sym_fixed_array_type] = STATE(2362), + [sym_array_type] = STATE(2362), + [sym_pointer_type] = STATE(2362), + [sym_wrong_pointer_type] = STATE(2362), + [sym_map_type] = STATE(2362), + [sym_channel_type] = STATE(2362), + [sym_shared_type] = STATE(2362), + [sym_thread_type] = STATE(2362), + [sym_atomic_type] = STATE(2362), + [sym_generic_type] = STATE(2362), + [sym_function_type] = STATE(2362), + [sym_identifier] = ACTIONS(1815), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(631), - [anon_sym_LBRACE] = ACTIONS(633), - [anon_sym_LPAREN] = ACTIONS(637), - [anon_sym_fn] = ACTIONS(641), - [anon_sym_PLUS] = ACTIONS(643), - [anon_sym_DASH] = ACTIONS(643), - [anon_sym_STAR] = ACTIONS(645), - [anon_sym_struct] = ACTIONS(649), + [anon_sym_DOT] = ACTIONS(1430), + [anon_sym_LBRACE] = ACTIONS(1432), + [anon_sym_LPAREN] = ACTIONS(1434), + [anon_sym_fn] = ACTIONS(1436), + [anon_sym_PLUS] = ACTIONS(3090), + [anon_sym_DASH] = ACTIONS(3090), + [anon_sym_STAR] = ACTIONS(3092), + [anon_sym_struct] = ACTIONS(1442), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(655), - [anon_sym_go] = ACTIONS(657), - [anon_sym_spawn] = ACTIONS(659), - [anon_sym_json_DOTdecode] = ACTIONS(661), - [anon_sym_LBRACK2] = ACTIONS(663), - [anon_sym_TILDE] = ACTIONS(643), - [anon_sym_CARET] = ACTIONS(643), - [anon_sym_AMP] = ACTIONS(665), - [anon_sym_LT_DASH] = ACTIONS(667), - [sym_none] = ACTIONS(669), - [sym_true] = ACTIONS(669), - [sym_false] = ACTIONS(669), - [sym_nil] = ACTIONS(669), - [anon_sym_if] = ACTIONS(671), - [anon_sym_DOLLARif] = ACTIONS(673), - [anon_sym_match] = ACTIONS(675), - [anon_sym_select] = ACTIONS(677), - [anon_sym_lock] = ACTIONS(679), - [anon_sym_rlock] = ACTIONS(679), - [anon_sym_unsafe] = ACTIONS(681), - [anon_sym_sql] = ACTIONS(683), - [sym_int_literal] = ACTIONS(669), - [sym_float_literal] = ACTIONS(685), - [sym_rune_literal] = ACTIONS(685), - [sym_pseudo_compile_time_identifier] = ACTIONS(687), + [anon_sym_BANG] = ACTIONS(3094), + [anon_sym_go] = ACTIONS(3096), + [anon_sym_spawn] = ACTIONS(3098), + [anon_sym_json_DOTdecode] = ACTIONS(1450), + [anon_sym_LBRACK2] = ACTIONS(1827), + [anon_sym_TILDE] = ACTIONS(3090), + [anon_sym_CARET] = ACTIONS(3090), + [anon_sym_AMP] = ACTIONS(3100), + [anon_sym_LT_DASH] = ACTIONS(3102), + [sym_none] = ACTIONS(1458), + [sym_true] = ACTIONS(1458), + [sym_false] = ACTIONS(1458), + [sym_nil] = ACTIONS(1458), + [anon_sym_if] = ACTIONS(1833), + [anon_sym_DOLLARif] = ACTIONS(1462), + [anon_sym_match] = ACTIONS(1464), + [anon_sym_select] = ACTIONS(3104), + [anon_sym_lock] = ACTIONS(3106), + [anon_sym_rlock] = ACTIONS(3106), + [anon_sym_unsafe] = ACTIONS(1839), + [anon_sym_sql] = ACTIONS(1472), + [sym_int_literal] = ACTIONS(1458), + [sym_float_literal] = ACTIONS(1474), + [sym_rune_literal] = ACTIONS(1474), + [sym_pseudo_compile_time_identifier] = ACTIONS(1476), [anon_sym_shared] = ACTIONS(83), [anon_sym_map_LBRACK] = ACTIONS(85), [anon_sym_chan] = ACTIONS(87), [anon_sym_thread] = ACTIONS(89), [anon_sym_atomic] = ACTIONS(91), - [sym___double_quote] = ACTIONS(689), - [sym___single_quote] = ACTIONS(691), - [sym___c_double_quote] = ACTIONS(693), - [sym___c_single_quote] = ACTIONS(695), - [sym___r_double_quote] = ACTIONS(697), - [sym___r_single_quote] = ACTIONS(699), + [sym___double_quote] = ACTIONS(1480), + [sym___single_quote] = ACTIONS(1482), + [sym___c_double_quote] = ACTIONS(1484), + [sym___c_single_quote] = ACTIONS(1486), + [sym___r_double_quote] = ACTIONS(1488), + [sym___r_single_quote] = ACTIONS(1490), }, [907] = { [sym_line_comment] = STATE(907), [sym_block_comment] = STATE(907), - [sym__expression] = STATE(1109), - [sym__expression_without_blocks] = STATE(1141), - [sym__expression_with_blocks] = STATE(1141), - [sym_inc_expression] = STATE(1140), - [sym_dec_expression] = STATE(1140), - [sym_or_block_expression] = STATE(1140), - [sym_option_propagation_expression] = STATE(1140), - [sym_result_propagation_expression] = STATE(1140), - [sym_anon_struct_value_expression] = STATE(1199), - [sym_go_expression] = STATE(1140), - [sym_spawn_expression] = STATE(1140), - [sym_parenthesized_expression] = STATE(1140), - [sym_call_expression] = STATE(1140), - [sym_type_initializer] = STATE(1199), - [sym_function_literal] = STATE(1140), - [sym_reference_expression] = STATE(1181), - [sym_type_reference_expression] = STATE(3541), - [sym_unary_expression] = STATE(1140), - [sym_receive_expression] = STATE(1140), - [sym_binary_expression] = STATE(1140), - [sym_as_type_cast_expression] = STATE(1140), - [sym__max_group] = STATE(1140), - [sym_literal] = STATE(1146), - [sym_map_init_expression] = STATE(1199), - [sym_array_creation] = STATE(1140), - [sym_fixed_array_creation] = STATE(1140), - [sym_selector_expression] = STATE(1140), - [sym_index_expression] = STATE(1140), - [sym_slice_expression] = STATE(1140), - [sym_if_expression] = STATE(1199), - [sym_compile_time_if_expression] = STATE(1199), - [sym_is_expression] = STATE(1140), - [sym_in_expression] = STATE(1140), - [sym_enum_fetch] = STATE(1140), - [sym_match_expression] = STATE(1199), - [sym_select_expression] = STATE(1199), - [sym_lock_expression] = STATE(1199), - [sym_unsafe_expression] = STATE(1199), - [sym_sql_expression] = STATE(1199), - [sym_c_string_literal] = STATE(1147), - [sym_raw_string_literal] = STATE(1147), - [sym_interpreted_string_literal] = STATE(1147), - [sym_mutability_modifiers] = STATE(638), - [sym_plain_type] = STATE(4234), - [sym__plain_type_without_special] = STATE(2302), - [sym_anon_struct_type] = STATE(2303), - [sym_multi_return_type] = STATE(2302), - [sym_result_type] = STATE(2302), - [sym_option_type] = STATE(2302), - [sym_qualified_type] = STATE(3541), - [sym_fixed_array_type] = STATE(2303), - [sym_array_type] = STATE(2303), - [sym_pointer_type] = STATE(2303), - [sym_wrong_pointer_type] = STATE(2303), - [sym_map_type] = STATE(2303), - [sym_channel_type] = STATE(2303), - [sym_shared_type] = STATE(2303), - [sym_thread_type] = STATE(2303), - [sym_atomic_type] = STATE(2303), - [sym_generic_type] = STATE(2303), - [sym_function_type] = STATE(2303), - [sym_identifier] = ACTIONS(1071), + [sym__expression] = STATE(2265), + [sym__expression_without_blocks] = STATE(2347), + [sym__expression_with_blocks] = STATE(2347), + [sym_inc_expression] = STATE(2379), + [sym_dec_expression] = STATE(2379), + [sym_or_block_expression] = STATE(2379), + [sym_option_propagation_expression] = STATE(2379), + [sym_result_propagation_expression] = STATE(2379), + [sym_anon_struct_value_expression] = STATE(2378), + [sym_go_expression] = STATE(2379), + [sym_spawn_expression] = STATE(2379), + [sym_parenthesized_expression] = STATE(2379), + [sym_call_expression] = STATE(2379), + [sym_type_initializer] = STATE(2378), + [sym_function_literal] = STATE(2379), + [sym_reference_expression] = STATE(2377), + [sym_type_reference_expression] = STATE(3460), + [sym_unary_expression] = STATE(2379), + [sym_receive_expression] = STATE(2379), + [sym_binary_expression] = STATE(2379), + [sym_as_type_cast_expression] = STATE(2379), + [sym__max_group] = STATE(2379), + [sym_literal] = STATE(2392), + [sym_map_init_expression] = STATE(2378), + [sym_array_creation] = STATE(2379), + [sym_fixed_array_creation] = STATE(2379), + [sym_selector_expression] = STATE(2379), + [sym_index_expression] = STATE(2379), + [sym_slice_expression] = STATE(2379), + [sym_if_expression] = STATE(2378), + [sym_compile_time_if_expression] = STATE(2378), + [sym_is_expression] = STATE(2379), + [sym_in_expression] = STATE(2379), + [sym_enum_fetch] = STATE(2379), + [sym_match_expression] = STATE(2378), + [sym_select_expression] = STATE(2378), + [sym_lock_expression] = STATE(2378), + [sym_unsafe_expression] = STATE(2378), + [sym_sql_expression] = STATE(2378), + [sym_c_string_literal] = STATE(2401), + [sym_raw_string_literal] = STATE(2401), + [sym_interpreted_string_literal] = STATE(2401), + [sym_mutability_modifiers] = STATE(939), + [sym_plain_type] = STATE(4160), + [sym__plain_type_without_special] = STATE(2360), + [sym_anon_struct_type] = STATE(2362), + [sym_multi_return_type] = STATE(2360), + [sym_result_type] = STATE(2360), + [sym_option_type] = STATE(2360), + [sym_qualified_type] = STATE(3460), + [sym_fixed_array_type] = STATE(2362), + [sym_array_type] = STATE(2362), + [sym_pointer_type] = STATE(2362), + [sym_wrong_pointer_type] = STATE(2362), + [sym_map_type] = STATE(2362), + [sym_channel_type] = STATE(2362), + [sym_shared_type] = STATE(2362), + [sym_thread_type] = STATE(2362), + [sym_atomic_type] = STATE(2362), + [sym_generic_type] = STATE(2362), + [sym_function_type] = STATE(2362), + [sym_identifier] = ACTIONS(1815), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(631), - [anon_sym_LBRACE] = ACTIONS(633), - [anon_sym_LPAREN] = ACTIONS(637), - [anon_sym_fn] = ACTIONS(641), - [anon_sym_PLUS] = ACTIONS(643), - [anon_sym_DASH] = ACTIONS(643), - [anon_sym_STAR] = ACTIONS(645), - [anon_sym_struct] = ACTIONS(649), + [anon_sym_DOT] = ACTIONS(1430), + [anon_sym_LBRACE] = ACTIONS(1432), + [anon_sym_LPAREN] = ACTIONS(1434), + [anon_sym_fn] = ACTIONS(1436), + [anon_sym_PLUS] = ACTIONS(3090), + [anon_sym_DASH] = ACTIONS(3090), + [anon_sym_STAR] = ACTIONS(3092), + [anon_sym_struct] = ACTIONS(1442), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(655), - [anon_sym_go] = ACTIONS(657), - [anon_sym_spawn] = ACTIONS(659), - [anon_sym_json_DOTdecode] = ACTIONS(661), - [anon_sym_LBRACK2] = ACTIONS(663), - [anon_sym_TILDE] = ACTIONS(643), - [anon_sym_CARET] = ACTIONS(643), - [anon_sym_AMP] = ACTIONS(665), - [anon_sym_LT_DASH] = ACTIONS(667), - [sym_none] = ACTIONS(669), - [sym_true] = ACTIONS(669), - [sym_false] = ACTIONS(669), - [sym_nil] = ACTIONS(669), - [anon_sym_if] = ACTIONS(671), - [anon_sym_DOLLARif] = ACTIONS(673), - [anon_sym_match] = ACTIONS(675), - [anon_sym_select] = ACTIONS(677), - [anon_sym_lock] = ACTIONS(679), - [anon_sym_rlock] = ACTIONS(679), - [anon_sym_unsafe] = ACTIONS(681), - [anon_sym_sql] = ACTIONS(683), - [sym_int_literal] = ACTIONS(669), - [sym_float_literal] = ACTIONS(685), - [sym_rune_literal] = ACTIONS(685), - [sym_pseudo_compile_time_identifier] = ACTIONS(687), + [anon_sym_BANG] = ACTIONS(3094), + [anon_sym_go] = ACTIONS(3096), + [anon_sym_spawn] = ACTIONS(3098), + [anon_sym_json_DOTdecode] = ACTIONS(1450), + [anon_sym_LBRACK2] = ACTIONS(1827), + [anon_sym_TILDE] = ACTIONS(3090), + [anon_sym_CARET] = ACTIONS(3090), + [anon_sym_AMP] = ACTIONS(3100), + [anon_sym_LT_DASH] = ACTIONS(3102), + [sym_none] = ACTIONS(1458), + [sym_true] = ACTIONS(1458), + [sym_false] = ACTIONS(1458), + [sym_nil] = ACTIONS(1458), + [anon_sym_if] = ACTIONS(1833), + [anon_sym_DOLLARif] = ACTIONS(1462), + [anon_sym_match] = ACTIONS(1464), + [anon_sym_select] = ACTIONS(3104), + [anon_sym_lock] = ACTIONS(3106), + [anon_sym_rlock] = ACTIONS(3106), + [anon_sym_unsafe] = ACTIONS(1839), + [anon_sym_sql] = ACTIONS(1472), + [sym_int_literal] = ACTIONS(1458), + [sym_float_literal] = ACTIONS(1474), + [sym_rune_literal] = ACTIONS(1474), + [sym_pseudo_compile_time_identifier] = ACTIONS(1476), [anon_sym_shared] = ACTIONS(83), [anon_sym_map_LBRACK] = ACTIONS(85), [anon_sym_chan] = ACTIONS(87), [anon_sym_thread] = ACTIONS(89), [anon_sym_atomic] = ACTIONS(91), - [sym___double_quote] = ACTIONS(689), - [sym___single_quote] = ACTIONS(691), - [sym___c_double_quote] = ACTIONS(693), - [sym___c_single_quote] = ACTIONS(695), - [sym___r_double_quote] = ACTIONS(697), - [sym___r_single_quote] = ACTIONS(699), + [sym___double_quote] = ACTIONS(1480), + [sym___single_quote] = ACTIONS(1482), + [sym___c_double_quote] = ACTIONS(1484), + [sym___c_single_quote] = ACTIONS(1486), + [sym___r_double_quote] = ACTIONS(1488), + [sym___r_single_quote] = ACTIONS(1490), }, [908] = { [sym_line_comment] = STATE(908), [sym_block_comment] = STATE(908), - [sym__expression] = STATE(1108), - [sym__expression_without_blocks] = STATE(1141), - [sym__expression_with_blocks] = STATE(1141), - [sym_inc_expression] = STATE(1140), - [sym_dec_expression] = STATE(1140), - [sym_or_block_expression] = STATE(1140), - [sym_option_propagation_expression] = STATE(1140), - [sym_result_propagation_expression] = STATE(1140), - [sym_anon_struct_value_expression] = STATE(1199), - [sym_go_expression] = STATE(1140), - [sym_spawn_expression] = STATE(1140), - [sym_parenthesized_expression] = STATE(1140), - [sym_call_expression] = STATE(1140), - [sym_type_initializer] = STATE(1199), - [sym_function_literal] = STATE(1140), - [sym_reference_expression] = STATE(1181), - [sym_type_reference_expression] = STATE(3541), - [sym_unary_expression] = STATE(1140), - [sym_receive_expression] = STATE(1140), - [sym_binary_expression] = STATE(1140), - [sym_as_type_cast_expression] = STATE(1140), - [sym__max_group] = STATE(1140), - [sym_literal] = STATE(1146), - [sym_map_init_expression] = STATE(1199), - [sym_array_creation] = STATE(1140), - [sym_fixed_array_creation] = STATE(1140), - [sym_selector_expression] = STATE(1140), - [sym_index_expression] = STATE(1140), - [sym_slice_expression] = STATE(1140), - [sym_if_expression] = STATE(1199), - [sym_compile_time_if_expression] = STATE(1199), - [sym_is_expression] = STATE(1140), - [sym_in_expression] = STATE(1140), - [sym_enum_fetch] = STATE(1140), - [sym_match_expression] = STATE(1199), - [sym_select_expression] = STATE(1199), - [sym_lock_expression] = STATE(1199), - [sym_unsafe_expression] = STATE(1199), - [sym_sql_expression] = STATE(1199), - [sym_c_string_literal] = STATE(1147), - [sym_raw_string_literal] = STATE(1147), - [sym_interpreted_string_literal] = STATE(1147), - [sym_mutability_modifiers] = STATE(638), - [sym_plain_type] = STATE(4234), - [sym__plain_type_without_special] = STATE(2302), - [sym_anon_struct_type] = STATE(2303), - [sym_multi_return_type] = STATE(2302), - [sym_result_type] = STATE(2302), - [sym_option_type] = STATE(2302), - [sym_qualified_type] = STATE(3541), - [sym_fixed_array_type] = STATE(2303), - [sym_array_type] = STATE(2303), - [sym_pointer_type] = STATE(2303), - [sym_wrong_pointer_type] = STATE(2303), - [sym_map_type] = STATE(2303), - [sym_channel_type] = STATE(2303), - [sym_shared_type] = STATE(2303), - [sym_thread_type] = STATE(2303), - [sym_atomic_type] = STATE(2303), - [sym_generic_type] = STATE(2303), - [sym_function_type] = STATE(2303), - [sym_identifier] = ACTIONS(1071), + [sym__expression] = STATE(2443), + [sym__expression_without_blocks] = STATE(2468), + [sym__expression_with_blocks] = STATE(2468), + [sym_inc_expression] = STATE(2469), + [sym_dec_expression] = STATE(2469), + [sym_or_block_expression] = STATE(2469), + [sym_option_propagation_expression] = STATE(2469), + [sym_result_propagation_expression] = STATE(2469), + [sym_anon_struct_value_expression] = STATE(2470), + [sym_go_expression] = STATE(2469), + [sym_spawn_expression] = STATE(2469), + [sym_parenthesized_expression] = STATE(2469), + [sym_call_expression] = STATE(2469), + [sym_type_initializer] = STATE(2470), + [sym_function_literal] = STATE(2469), + [sym_reference_expression] = STATE(2487), + [sym_type_reference_expression] = STATE(3460), + [sym_unary_expression] = STATE(2469), + [sym_receive_expression] = STATE(2469), + [sym_binary_expression] = STATE(2469), + [sym_as_type_cast_expression] = STATE(2469), + [sym__max_group] = STATE(2469), + [sym_literal] = STATE(2465), + [sym_map_init_expression] = STATE(2470), + [sym_array_creation] = STATE(2469), + [sym_fixed_array_creation] = STATE(2469), + [sym_selector_expression] = STATE(2469), + [sym_index_expression] = STATE(2469), + [sym_slice_expression] = STATE(2469), + [sym_if_expression] = STATE(2470), + [sym_compile_time_if_expression] = STATE(2470), + [sym_is_expression] = STATE(2469), + [sym_in_expression] = STATE(2469), + [sym_enum_fetch] = STATE(2469), + [sym_match_expression] = STATE(2470), + [sym_select_expression] = STATE(2470), + [sym_lock_expression] = STATE(2470), + [sym_unsafe_expression] = STATE(2470), + [sym_sql_expression] = STATE(2470), + [sym_c_string_literal] = STATE(2464), + [sym_raw_string_literal] = STATE(2464), + [sym_interpreted_string_literal] = STATE(2464), + [sym_mutability_modifiers] = STATE(561), + [sym_plain_type] = STATE(4038), + [sym__plain_type_without_special] = STATE(2360), + [sym_anon_struct_type] = STATE(2362), + [sym_multi_return_type] = STATE(2360), + [sym_result_type] = STATE(2360), + [sym_option_type] = STATE(2360), + [sym_qualified_type] = STATE(3460), + [sym_fixed_array_type] = STATE(2362), + [sym_array_type] = STATE(2362), + [sym_pointer_type] = STATE(2362), + [sym_wrong_pointer_type] = STATE(2362), + [sym_map_type] = STATE(2362), + [sym_channel_type] = STATE(2362), + [sym_shared_type] = STATE(2362), + [sym_thread_type] = STATE(2362), + [sym_atomic_type] = STATE(2362), + [sym_generic_type] = STATE(2362), + [sym_function_type] = STATE(2362), + [sym_identifier] = ACTIONS(1691), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(631), - [anon_sym_LBRACE] = ACTIONS(633), - [anon_sym_LPAREN] = ACTIONS(637), - [anon_sym_fn] = ACTIONS(641), - [anon_sym_PLUS] = ACTIONS(643), - [anon_sym_DASH] = ACTIONS(643), - [anon_sym_STAR] = ACTIONS(645), - [anon_sym_struct] = ACTIONS(649), + [anon_sym_DOT] = ACTIONS(1693), + [anon_sym_LBRACE] = ACTIONS(2151), + [anon_sym_LPAREN] = ACTIONS(2153), + [anon_sym_fn] = ACTIONS(1699), + [anon_sym_PLUS] = ACTIONS(3386), + [anon_sym_DASH] = ACTIONS(3386), + [anon_sym_STAR] = ACTIONS(3388), + [anon_sym_struct] = ACTIONS(1705), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(655), - [anon_sym_go] = ACTIONS(657), - [anon_sym_spawn] = ACTIONS(659), - [anon_sym_json_DOTdecode] = ACTIONS(661), - [anon_sym_LBRACK2] = ACTIONS(663), - [anon_sym_TILDE] = ACTIONS(643), - [anon_sym_CARET] = ACTIONS(643), - [anon_sym_AMP] = ACTIONS(665), - [anon_sym_LT_DASH] = ACTIONS(667), - [sym_none] = ACTIONS(669), - [sym_true] = ACTIONS(669), - [sym_false] = ACTIONS(669), - [sym_nil] = ACTIONS(669), - [anon_sym_if] = ACTIONS(671), - [anon_sym_DOLLARif] = ACTIONS(673), - [anon_sym_match] = ACTIONS(675), - [anon_sym_select] = ACTIONS(677), - [anon_sym_lock] = ACTIONS(679), - [anon_sym_rlock] = ACTIONS(679), - [anon_sym_unsafe] = ACTIONS(681), - [anon_sym_sql] = ACTIONS(683), - [sym_int_literal] = ACTIONS(669), - [sym_float_literal] = ACTIONS(685), - [sym_rune_literal] = ACTIONS(685), - [sym_pseudo_compile_time_identifier] = ACTIONS(687), + [anon_sym_BANG] = ACTIONS(3390), + [anon_sym_go] = ACTIONS(3392), + [anon_sym_spawn] = ACTIONS(3394), + [anon_sym_json_DOTdecode] = ACTIONS(2161), + [anon_sym_LBRACK2] = ACTIONS(2163), + [anon_sym_TILDE] = ACTIONS(3386), + [anon_sym_CARET] = ACTIONS(3386), + [anon_sym_AMP] = ACTIONS(3396), + [anon_sym_LT_DASH] = ACTIONS(3398), + [sym_none] = ACTIONS(1721), + [sym_true] = ACTIONS(1721), + [sym_false] = ACTIONS(1721), + [sym_nil] = ACTIONS(1721), + [anon_sym_if] = ACTIONS(1723), + [anon_sym_DOLLARif] = ACTIONS(1725), + [anon_sym_match] = ACTIONS(1727), + [anon_sym_select] = ACTIONS(3400), + [anon_sym_lock] = ACTIONS(3402), + [anon_sym_rlock] = ACTIONS(3402), + [anon_sym_unsafe] = ACTIONS(1733), + [anon_sym_sql] = ACTIONS(1735), + [sym_int_literal] = ACTIONS(1721), + [sym_float_literal] = ACTIONS(2169), + [sym_rune_literal] = ACTIONS(2169), + [sym_pseudo_compile_time_identifier] = ACTIONS(1737), [anon_sym_shared] = ACTIONS(83), [anon_sym_map_LBRACK] = ACTIONS(85), [anon_sym_chan] = ACTIONS(87), [anon_sym_thread] = ACTIONS(89), [anon_sym_atomic] = ACTIONS(91), - [sym___double_quote] = ACTIONS(689), - [sym___single_quote] = ACTIONS(691), - [sym___c_double_quote] = ACTIONS(693), - [sym___c_single_quote] = ACTIONS(695), - [sym___r_double_quote] = ACTIONS(697), - [sym___r_single_quote] = ACTIONS(699), + [sym___double_quote] = ACTIONS(2171), + [sym___single_quote] = ACTIONS(2173), + [sym___c_double_quote] = ACTIONS(2175), + [sym___c_single_quote] = ACTIONS(2177), + [sym___r_double_quote] = ACTIONS(2179), + [sym___r_single_quote] = ACTIONS(2181), }, [909] = { [sym_line_comment] = STATE(909), [sym_block_comment] = STATE(909), - [sym__expression] = STATE(1773), - [sym__expression_without_blocks] = STATE(2044), - [sym__expression_with_blocks] = STATE(2044), - [sym_inc_expression] = STATE(2045), - [sym_dec_expression] = STATE(2045), - [sym_or_block_expression] = STATE(2045), - [sym_option_propagation_expression] = STATE(2045), - [sym_result_propagation_expression] = STATE(2045), - [sym_anon_struct_value_expression] = STATE(2046), - [sym_go_expression] = STATE(2045), - [sym_spawn_expression] = STATE(2045), - [sym_parenthesized_expression] = STATE(2045), - [sym_call_expression] = STATE(2045), - [sym_type_initializer] = STATE(2046), - [sym_function_literal] = STATE(2045), - [sym_reference_expression] = STATE(1912), - [sym_type_reference_expression] = STATE(3541), - [sym_unary_expression] = STATE(2045), - [sym_receive_expression] = STATE(2045), - [sym_binary_expression] = STATE(2045), - [sym_as_type_cast_expression] = STATE(2045), - [sym__max_group] = STATE(2045), - [sym_literal] = STATE(2043), - [sym_map_init_expression] = STATE(2046), - [sym_array_creation] = STATE(2045), - [sym_fixed_array_creation] = STATE(2045), - [sym_selector_expression] = STATE(2045), - [sym_index_expression] = STATE(2045), - [sym_slice_expression] = STATE(2045), - [sym_if_expression] = STATE(2046), - [sym_compile_time_if_expression] = STATE(2046), - [sym_is_expression] = STATE(2045), - [sym_in_expression] = STATE(2045), - [sym_enum_fetch] = STATE(2045), - [sym_match_expression] = STATE(2046), - [sym_select_expression] = STATE(2046), - [sym_lock_expression] = STATE(2046), - [sym_unsafe_expression] = STATE(2046), - [sym_sql_expression] = STATE(2046), - [sym_c_string_literal] = STATE(2041), - [sym_raw_string_literal] = STATE(2041), - [sym_interpreted_string_literal] = STATE(2041), - [sym_mutability_modifiers] = STATE(689), - [sym_plain_type] = STATE(4052), - [sym__plain_type_without_special] = STATE(2302), - [sym_anon_struct_type] = STATE(2303), - [sym_multi_return_type] = STATE(2302), - [sym_result_type] = STATE(2302), - [sym_option_type] = STATE(2302), - [sym_qualified_type] = STATE(3541), - [sym_fixed_array_type] = STATE(2303), - [sym_array_type] = STATE(2303), - [sym_pointer_type] = STATE(2303), - [sym_wrong_pointer_type] = STATE(2303), - [sym_map_type] = STATE(2303), - [sym_channel_type] = STATE(2303), - [sym_shared_type] = STATE(2303), - [sym_thread_type] = STATE(2303), - [sym_atomic_type] = STATE(2303), - [sym_generic_type] = STATE(2303), - [sym_function_type] = STATE(2303), - [sym_identifier] = ACTIONS(1641), + [sym__expression] = STATE(2732), + [sym__expression_without_blocks] = STATE(2347), + [sym__expression_with_blocks] = STATE(2347), + [sym_inc_expression] = STATE(2379), + [sym_dec_expression] = STATE(2379), + [sym_or_block_expression] = STATE(2379), + [sym_option_propagation_expression] = STATE(2379), + [sym_result_propagation_expression] = STATE(2379), + [sym_anon_struct_value_expression] = STATE(2378), + [sym_go_expression] = STATE(2379), + [sym_spawn_expression] = STATE(2379), + [sym_parenthesized_expression] = STATE(2379), + [sym_call_expression] = STATE(2379), + [sym_type_initializer] = STATE(2378), + [sym_function_literal] = STATE(2379), + [sym_reference_expression] = STATE(2377), + [sym_type_reference_expression] = STATE(3460), + [sym_unary_expression] = STATE(2379), + [sym_receive_expression] = STATE(2379), + [sym_binary_expression] = STATE(2379), + [sym_as_type_cast_expression] = STATE(2379), + [sym__max_group] = STATE(2379), + [sym_literal] = STATE(2392), + [sym_map_init_expression] = STATE(2378), + [sym_array_creation] = STATE(2379), + [sym_fixed_array_creation] = STATE(2379), + [sym_selector_expression] = STATE(2379), + [sym_index_expression] = STATE(2379), + [sym_slice_expression] = STATE(2379), + [sym_if_expression] = STATE(2378), + [sym_compile_time_if_expression] = STATE(2378), + [sym_is_expression] = STATE(2379), + [sym_in_expression] = STATE(2379), + [sym_enum_fetch] = STATE(2379), + [sym_match_expression] = STATE(2378), + [sym_select_expression] = STATE(2378), + [sym_lock_expression] = STATE(2378), + [sym_unsafe_expression] = STATE(2378), + [sym_sql_expression] = STATE(2378), + [sym_c_string_literal] = STATE(2401), + [sym_raw_string_literal] = STATE(2401), + [sym_interpreted_string_literal] = STATE(2401), + [sym_mutability_modifiers] = STATE(939), + [sym_plain_type] = STATE(4160), + [sym__plain_type_without_special] = STATE(2360), + [sym_anon_struct_type] = STATE(2362), + [sym_multi_return_type] = STATE(2360), + [sym_result_type] = STATE(2360), + [sym_option_type] = STATE(2360), + [sym_qualified_type] = STATE(3460), + [sym_fixed_array_type] = STATE(2362), + [sym_array_type] = STATE(2362), + [sym_pointer_type] = STATE(2362), + [sym_wrong_pointer_type] = STATE(2362), + [sym_map_type] = STATE(2362), + [sym_channel_type] = STATE(2362), + [sym_shared_type] = STATE(2362), + [sym_thread_type] = STATE(2362), + [sym_atomic_type] = STATE(2362), + [sym_generic_type] = STATE(2362), + [sym_function_type] = STATE(2362), + [sym_identifier] = ACTIONS(1815), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(811), - [anon_sym_LBRACE] = ACTIONS(3144), - [anon_sym_LPAREN] = ACTIONS(815), - [anon_sym_fn] = ACTIONS(817), - [anon_sym_PLUS] = ACTIONS(819), - [anon_sym_DASH] = ACTIONS(819), - [anon_sym_STAR] = ACTIONS(821), - [anon_sym_struct] = ACTIONS(823), + [anon_sym_DOT] = ACTIONS(1430), + [anon_sym_LBRACE] = ACTIONS(1432), + [anon_sym_LPAREN] = ACTIONS(1434), + [anon_sym_fn] = ACTIONS(1436), + [anon_sym_PLUS] = ACTIONS(3090), + [anon_sym_DASH] = ACTIONS(3090), + [anon_sym_STAR] = ACTIONS(3092), + [anon_sym_struct] = ACTIONS(1442), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(827), - [anon_sym_go] = ACTIONS(829), - [anon_sym_spawn] = ACTIONS(831), - [anon_sym_json_DOTdecode] = ACTIONS(833), - [anon_sym_LBRACK2] = ACTIONS(835), - [anon_sym_TILDE] = ACTIONS(819), - [anon_sym_CARET] = ACTIONS(819), - [anon_sym_AMP] = ACTIONS(837), - [anon_sym_LT_DASH] = ACTIONS(839), - [sym_none] = ACTIONS(841), - [sym_true] = ACTIONS(841), - [sym_false] = ACTIONS(841), - [sym_nil] = ACTIONS(841), - [anon_sym_if] = ACTIONS(843), - [anon_sym_DOLLARif] = ACTIONS(845), - [anon_sym_match] = ACTIONS(847), - [anon_sym_select] = ACTIONS(849), - [anon_sym_lock] = ACTIONS(851), - [anon_sym_rlock] = ACTIONS(851), - [anon_sym_unsafe] = ACTIONS(853), - [anon_sym_sql] = ACTIONS(855), - [sym_int_literal] = ACTIONS(841), - [sym_float_literal] = ACTIONS(857), - [sym_rune_literal] = ACTIONS(857), - [sym_pseudo_compile_time_identifier] = ACTIONS(859), + [anon_sym_BANG] = ACTIONS(3094), + [anon_sym_go] = ACTIONS(3096), + [anon_sym_spawn] = ACTIONS(3098), + [anon_sym_json_DOTdecode] = ACTIONS(1450), + [anon_sym_LBRACK2] = ACTIONS(1827), + [anon_sym_TILDE] = ACTIONS(3090), + [anon_sym_CARET] = ACTIONS(3090), + [anon_sym_AMP] = ACTIONS(3100), + [anon_sym_LT_DASH] = ACTIONS(3102), + [sym_none] = ACTIONS(1458), + [sym_true] = ACTIONS(1458), + [sym_false] = ACTIONS(1458), + [sym_nil] = ACTIONS(1458), + [anon_sym_if] = ACTIONS(1833), + [anon_sym_DOLLARif] = ACTIONS(1462), + [anon_sym_match] = ACTIONS(1464), + [anon_sym_select] = ACTIONS(3104), + [anon_sym_lock] = ACTIONS(3106), + [anon_sym_rlock] = ACTIONS(3106), + [anon_sym_unsafe] = ACTIONS(1839), + [anon_sym_sql] = ACTIONS(1472), + [sym_int_literal] = ACTIONS(1458), + [sym_float_literal] = ACTIONS(1474), + [sym_rune_literal] = ACTIONS(1474), + [sym_pseudo_compile_time_identifier] = ACTIONS(1476), [anon_sym_shared] = ACTIONS(83), [anon_sym_map_LBRACK] = ACTIONS(85), [anon_sym_chan] = ACTIONS(87), [anon_sym_thread] = ACTIONS(89), [anon_sym_atomic] = ACTIONS(91), - [sym___double_quote] = ACTIONS(861), - [sym___single_quote] = ACTIONS(863), - [sym___c_double_quote] = ACTIONS(865), - [sym___c_single_quote] = ACTIONS(867), - [sym___r_double_quote] = ACTIONS(869), - [sym___r_single_quote] = ACTIONS(871), + [sym___double_quote] = ACTIONS(1480), + [sym___single_quote] = ACTIONS(1482), + [sym___c_double_quote] = ACTIONS(1484), + [sym___c_single_quote] = ACTIONS(1486), + [sym___r_double_quote] = ACTIONS(1488), + [sym___r_single_quote] = ACTIONS(1490), }, [910] = { [sym_line_comment] = STATE(910), [sym_block_comment] = STATE(910), - [sym__expression] = STATE(1755), - [sym__expression_without_blocks] = STATE(2005), - [sym__expression_with_blocks] = STATE(2005), - [sym_inc_expression] = STATE(2032), - [sym_dec_expression] = STATE(2032), - [sym_or_block_expression] = STATE(2032), - [sym_option_propagation_expression] = STATE(2032), - [sym_result_propagation_expression] = STATE(2032), - [sym_anon_struct_value_expression] = STATE(2004), - [sym_go_expression] = STATE(2032), - [sym_spawn_expression] = STATE(2032), - [sym_parenthesized_expression] = STATE(2032), - [sym_call_expression] = STATE(2032), - [sym_type_initializer] = STATE(2004), - [sym_function_literal] = STATE(2032), - [sym_reference_expression] = STATE(1914), - [sym_type_reference_expression] = STATE(3541), - [sym_unary_expression] = STATE(2032), - [sym_receive_expression] = STATE(2032), - [sym_binary_expression] = STATE(2032), - [sym_as_type_cast_expression] = STATE(2032), - [sym__max_group] = STATE(2032), - [sym_literal] = STATE(2027), - [sym_map_init_expression] = STATE(2004), - [sym_array_creation] = STATE(2032), - [sym_fixed_array_creation] = STATE(2032), - [sym_selector_expression] = STATE(2032), - [sym_index_expression] = STATE(2032), - [sym_slice_expression] = STATE(2032), - [sym_if_expression] = STATE(2004), - [sym_compile_time_if_expression] = STATE(2004), - [sym_is_expression] = STATE(2032), - [sym_in_expression] = STATE(2032), - [sym_enum_fetch] = STATE(2032), - [sym_match_expression] = STATE(2004), - [sym_select_expression] = STATE(2004), - [sym_lock_expression] = STATE(2004), - [sym_unsafe_expression] = STATE(2004), - [sym_sql_expression] = STATE(2004), - [sym_c_string_literal] = STATE(2026), - [sym_raw_string_literal] = STATE(2026), - [sym_interpreted_string_literal] = STATE(2026), - [sym_mutability_modifiers] = STATE(562), - [sym_plain_type] = STATE(4191), - [sym__plain_type_without_special] = STATE(2302), - [sym_anon_struct_type] = STATE(2303), - [sym_multi_return_type] = STATE(2302), - [sym_result_type] = STATE(2302), - [sym_option_type] = STATE(2302), - [sym_qualified_type] = STATE(3541), - [sym_fixed_array_type] = STATE(2303), - [sym_array_type] = STATE(2303), - [sym_pointer_type] = STATE(2303), - [sym_wrong_pointer_type] = STATE(2303), - [sym_map_type] = STATE(2303), - [sym_channel_type] = STATE(2303), - [sym_shared_type] = STATE(2303), - [sym_thread_type] = STATE(2303), - [sym_atomic_type] = STATE(2303), - [sym_generic_type] = STATE(2303), - [sym_function_type] = STATE(2303), - [sym_identifier] = ACTIONS(3266), + [sym__expression] = STATE(2571), + [sym__expression_without_blocks] = STATE(2638), + [sym__expression_with_blocks] = STATE(2638), + [sym_inc_expression] = STATE(2765), + [sym_dec_expression] = STATE(2765), + [sym_or_block_expression] = STATE(2765), + [sym_option_propagation_expression] = STATE(2765), + [sym_result_propagation_expression] = STATE(2765), + [sym_anon_struct_value_expression] = STATE(2637), + [sym_go_expression] = STATE(2765), + [sym_spawn_expression] = STATE(2765), + [sym_parenthesized_expression] = STATE(2765), + [sym_call_expression] = STATE(2765), + [sym_type_initializer] = STATE(2637), + [sym_function_literal] = STATE(2765), + [sym_reference_expression] = STATE(2764), + [sym_type_reference_expression] = STATE(3460), + [sym_unary_expression] = STATE(2765), + [sym_receive_expression] = STATE(2765), + [sym_binary_expression] = STATE(2765), + [sym_as_type_cast_expression] = STATE(2765), + [sym__max_group] = STATE(2765), + [sym_literal] = STATE(2771), + [sym_map_init_expression] = STATE(2637), + [sym_array_creation] = STATE(2765), + [sym_fixed_array_creation] = STATE(2765), + [sym_selector_expression] = STATE(2765), + [sym_index_expression] = STATE(2765), + [sym_slice_expression] = STATE(2765), + [sym_if_expression] = STATE(2637), + [sym_compile_time_if_expression] = STATE(2637), + [sym_is_expression] = STATE(2765), + [sym_in_expression] = STATE(2765), + [sym_enum_fetch] = STATE(2765), + [sym_match_expression] = STATE(2637), + [sym_select_expression] = STATE(2637), + [sym_lock_expression] = STATE(2637), + [sym_unsafe_expression] = STATE(2637), + [sym_sql_expression] = STATE(2637), + [sym_c_string_literal] = STATE(2762), + [sym_raw_string_literal] = STATE(2762), + [sym_interpreted_string_literal] = STATE(2762), + [sym_mutability_modifiers] = STATE(822), + [sym_plain_type] = STATE(4011), + [sym__plain_type_without_special] = STATE(2360), + [sym_anon_struct_type] = STATE(2362), + [sym_multi_return_type] = STATE(2360), + [sym_result_type] = STATE(2360), + [sym_option_type] = STATE(2360), + [sym_qualified_type] = STATE(3460), + [sym_fixed_array_type] = STATE(2362), + [sym_array_type] = STATE(2362), + [sym_pointer_type] = STATE(2362), + [sym_wrong_pointer_type] = STATE(2362), + [sym_map_type] = STATE(2362), + [sym_channel_type] = STATE(2362), + [sym_shared_type] = STATE(2362), + [sym_thread_type] = STATE(2362), + [sym_atomic_type] = STATE(2362), + [sym_generic_type] = STATE(2362), + [sym_function_type] = STATE(2362), + [sym_identifier] = ACTIONS(1815), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(703), - [anon_sym_LBRACE] = ACTIONS(3268), - [anon_sym_LPAREN] = ACTIONS(709), - [anon_sym_fn] = ACTIONS(711), - [anon_sym_PLUS] = ACTIONS(713), - [anon_sym_DASH] = ACTIONS(713), - [anon_sym_STAR] = ACTIONS(715), - [anon_sym_struct] = ACTIONS(3270), + [anon_sym_DOT] = ACTIONS(1073), + [anon_sym_LBRACE] = ACTIONS(1075), + [anon_sym_LPAREN] = ACTIONS(1079), + [anon_sym_fn] = ACTIONS(1081), + [anon_sym_PLUS] = ACTIONS(3070), + [anon_sym_DASH] = ACTIONS(3070), + [anon_sym_STAR] = ACTIONS(3072), + [anon_sym_struct] = ACTIONS(1087), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(719), - [anon_sym_go] = ACTIONS(721), - [anon_sym_spawn] = ACTIONS(723), - [anon_sym_json_DOTdecode] = ACTIONS(725), - [anon_sym_LBRACK2] = ACTIONS(727), - [anon_sym_TILDE] = ACTIONS(713), - [anon_sym_CARET] = ACTIONS(713), - [anon_sym_AMP] = ACTIONS(729), - [anon_sym_LT_DASH] = ACTIONS(731), - [sym_none] = ACTIONS(733), - [sym_true] = ACTIONS(733), - [sym_false] = ACTIONS(733), - [sym_nil] = ACTIONS(733), - [anon_sym_if] = ACTIONS(3272), - [anon_sym_DOLLARif] = ACTIONS(3274), - [anon_sym_match] = ACTIONS(3276), - [anon_sym_select] = ACTIONS(3278), - [anon_sym_lock] = ACTIONS(3280), - [anon_sym_rlock] = ACTIONS(3280), - [anon_sym_unsafe] = ACTIONS(3282), - [anon_sym_sql] = ACTIONS(3284), - [sym_int_literal] = ACTIONS(733), - [sym_float_literal] = ACTIONS(751), - [sym_rune_literal] = ACTIONS(751), - [sym_pseudo_compile_time_identifier] = ACTIONS(753), + [anon_sym_BANG] = ACTIONS(3074), + [anon_sym_go] = ACTIONS(3076), + [anon_sym_spawn] = ACTIONS(3078), + [anon_sym_json_DOTdecode] = ACTIONS(1095), + [anon_sym_LBRACK2] = ACTIONS(1097), + [anon_sym_TILDE] = ACTIONS(3070), + [anon_sym_CARET] = ACTIONS(3070), + [anon_sym_AMP] = ACTIONS(3080), + [anon_sym_LT_DASH] = ACTIONS(3082), + [sym_none] = ACTIONS(1103), + [sym_true] = ACTIONS(1103), + [sym_false] = ACTIONS(1103), + [sym_nil] = ACTIONS(1103), + [anon_sym_if] = ACTIONS(1105), + [anon_sym_DOLLARif] = ACTIONS(1109), + [anon_sym_match] = ACTIONS(1111), + [anon_sym_select] = ACTIONS(3084), + [anon_sym_lock] = ACTIONS(3086), + [anon_sym_rlock] = ACTIONS(3086), + [anon_sym_unsafe] = ACTIONS(1117), + [anon_sym_sql] = ACTIONS(1119), + [sym_int_literal] = ACTIONS(1103), + [sym_float_literal] = ACTIONS(1121), + [sym_rune_literal] = ACTIONS(1121), + [sym_pseudo_compile_time_identifier] = ACTIONS(1123), [anon_sym_shared] = ACTIONS(83), [anon_sym_map_LBRACK] = ACTIONS(85), [anon_sym_chan] = ACTIONS(87), [anon_sym_thread] = ACTIONS(89), [anon_sym_atomic] = ACTIONS(91), - [sym___double_quote] = ACTIONS(755), - [sym___single_quote] = ACTIONS(757), - [sym___c_double_quote] = ACTIONS(759), - [sym___c_single_quote] = ACTIONS(761), - [sym___r_double_quote] = ACTIONS(763), - [sym___r_single_quote] = ACTIONS(765), + [sym___double_quote] = ACTIONS(1125), + [sym___single_quote] = ACTIONS(1127), + [sym___c_double_quote] = ACTIONS(1129), + [sym___c_single_quote] = ACTIONS(1131), + [sym___r_double_quote] = ACTIONS(1133), + [sym___r_single_quote] = ACTIONS(1135), }, [911] = { [sym_line_comment] = STATE(911), [sym_block_comment] = STATE(911), - [sym__expression] = STATE(1771), - [sym__expression_without_blocks] = STATE(2005), - [sym__expression_with_blocks] = STATE(2005), - [sym_inc_expression] = STATE(2032), - [sym_dec_expression] = STATE(2032), - [sym_or_block_expression] = STATE(2032), - [sym_option_propagation_expression] = STATE(2032), - [sym_result_propagation_expression] = STATE(2032), - [sym_anon_struct_value_expression] = STATE(2004), - [sym_go_expression] = STATE(2032), - [sym_spawn_expression] = STATE(2032), - [sym_parenthesized_expression] = STATE(2032), - [sym_call_expression] = STATE(2032), - [sym_type_initializer] = STATE(2004), - [sym_function_literal] = STATE(2032), - [sym_reference_expression] = STATE(1914), - [sym_type_reference_expression] = STATE(3541), - [sym_unary_expression] = STATE(2032), - [sym_receive_expression] = STATE(2032), - [sym_binary_expression] = STATE(2032), - [sym_as_type_cast_expression] = STATE(2032), - [sym__max_group] = STATE(2032), - [sym_literal] = STATE(2027), - [sym_map_init_expression] = STATE(2004), - [sym_array_creation] = STATE(2032), - [sym_fixed_array_creation] = STATE(2032), - [sym_selector_expression] = STATE(2032), - [sym_index_expression] = STATE(2032), - [sym_slice_expression] = STATE(2032), - [sym_if_expression] = STATE(2004), - [sym_compile_time_if_expression] = STATE(2004), - [sym_is_expression] = STATE(2032), - [sym_in_expression] = STATE(2032), - [sym_enum_fetch] = STATE(2032), - [sym_match_expression] = STATE(2004), - [sym_select_expression] = STATE(2004), - [sym_lock_expression] = STATE(2004), - [sym_unsafe_expression] = STATE(2004), - [sym_sql_expression] = STATE(2004), - [sym_c_string_literal] = STATE(2026), - [sym_raw_string_literal] = STATE(2026), - [sym_interpreted_string_literal] = STATE(2026), - [sym_mutability_modifiers] = STATE(562), - [sym_plain_type] = STATE(4191), - [sym__plain_type_without_special] = STATE(2302), - [sym_anon_struct_type] = STATE(2303), - [sym_multi_return_type] = STATE(2302), - [sym_result_type] = STATE(2302), - [sym_option_type] = STATE(2302), - [sym_qualified_type] = STATE(3541), - [sym_fixed_array_type] = STATE(2303), - [sym_array_type] = STATE(2303), - [sym_pointer_type] = STATE(2303), - [sym_wrong_pointer_type] = STATE(2303), - [sym_map_type] = STATE(2303), - [sym_channel_type] = STATE(2303), - [sym_shared_type] = STATE(2303), - [sym_thread_type] = STATE(2303), - [sym_atomic_type] = STATE(2303), - [sym_generic_type] = STATE(2303), - [sym_function_type] = STATE(2303), - [sym_identifier] = ACTIONS(3266), + [sym__expression] = STATE(2450), + [sym__expression_without_blocks] = STATE(2468), + [sym__expression_with_blocks] = STATE(2468), + [sym_inc_expression] = STATE(2469), + [sym_dec_expression] = STATE(2469), + [sym_or_block_expression] = STATE(2469), + [sym_option_propagation_expression] = STATE(2469), + [sym_result_propagation_expression] = STATE(2469), + [sym_anon_struct_value_expression] = STATE(2470), + [sym_go_expression] = STATE(2469), + [sym_spawn_expression] = STATE(2469), + [sym_parenthesized_expression] = STATE(2469), + [sym_call_expression] = STATE(2469), + [sym_type_initializer] = STATE(2470), + [sym_function_literal] = STATE(2469), + [sym_reference_expression] = STATE(2487), + [sym_type_reference_expression] = STATE(3460), + [sym_unary_expression] = STATE(2469), + [sym_receive_expression] = STATE(2469), + [sym_binary_expression] = STATE(2469), + [sym_as_type_cast_expression] = STATE(2469), + [sym__max_group] = STATE(2469), + [sym_literal] = STATE(2465), + [sym_map_init_expression] = STATE(2470), + [sym_array_creation] = STATE(2469), + [sym_fixed_array_creation] = STATE(2469), + [sym_selector_expression] = STATE(2469), + [sym_index_expression] = STATE(2469), + [sym_slice_expression] = STATE(2469), + [sym_if_expression] = STATE(2470), + [sym_compile_time_if_expression] = STATE(2470), + [sym_is_expression] = STATE(2469), + [sym_in_expression] = STATE(2469), + [sym_enum_fetch] = STATE(2469), + [sym_match_expression] = STATE(2470), + [sym_select_expression] = STATE(2470), + [sym_lock_expression] = STATE(2470), + [sym_unsafe_expression] = STATE(2470), + [sym_sql_expression] = STATE(2470), + [sym_c_string_literal] = STATE(2464), + [sym_raw_string_literal] = STATE(2464), + [sym_interpreted_string_literal] = STATE(2464), + [sym_mutability_modifiers] = STATE(561), + [sym_plain_type] = STATE(4038), + [sym__plain_type_without_special] = STATE(2360), + [sym_anon_struct_type] = STATE(2362), + [sym_multi_return_type] = STATE(2360), + [sym_result_type] = STATE(2360), + [sym_option_type] = STATE(2360), + [sym_qualified_type] = STATE(3460), + [sym_fixed_array_type] = STATE(2362), + [sym_array_type] = STATE(2362), + [sym_pointer_type] = STATE(2362), + [sym_wrong_pointer_type] = STATE(2362), + [sym_map_type] = STATE(2362), + [sym_channel_type] = STATE(2362), + [sym_shared_type] = STATE(2362), + [sym_thread_type] = STATE(2362), + [sym_atomic_type] = STATE(2362), + [sym_generic_type] = STATE(2362), + [sym_function_type] = STATE(2362), + [sym_identifier] = ACTIONS(1691), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(703), - [anon_sym_LBRACE] = ACTIONS(3268), - [anon_sym_LPAREN] = ACTIONS(709), - [anon_sym_fn] = ACTIONS(711), - [anon_sym_PLUS] = ACTIONS(713), - [anon_sym_DASH] = ACTIONS(713), - [anon_sym_STAR] = ACTIONS(715), - [anon_sym_struct] = ACTIONS(3270), + [anon_sym_DOT] = ACTIONS(1693), + [anon_sym_LBRACE] = ACTIONS(2151), + [anon_sym_LPAREN] = ACTIONS(2153), + [anon_sym_fn] = ACTIONS(1699), + [anon_sym_PLUS] = ACTIONS(3386), + [anon_sym_DASH] = ACTIONS(3386), + [anon_sym_STAR] = ACTIONS(3388), + [anon_sym_struct] = ACTIONS(1705), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(719), - [anon_sym_go] = ACTIONS(721), - [anon_sym_spawn] = ACTIONS(723), - [anon_sym_json_DOTdecode] = ACTIONS(725), - [anon_sym_LBRACK2] = ACTIONS(727), - [anon_sym_TILDE] = ACTIONS(713), - [anon_sym_CARET] = ACTIONS(713), - [anon_sym_AMP] = ACTIONS(729), - [anon_sym_LT_DASH] = ACTIONS(731), - [sym_none] = ACTIONS(733), - [sym_true] = ACTIONS(733), - [sym_false] = ACTIONS(733), - [sym_nil] = ACTIONS(733), - [anon_sym_if] = ACTIONS(3272), - [anon_sym_DOLLARif] = ACTIONS(3274), - [anon_sym_match] = ACTIONS(3276), - [anon_sym_select] = ACTIONS(3278), - [anon_sym_lock] = ACTIONS(3280), - [anon_sym_rlock] = ACTIONS(3280), - [anon_sym_unsafe] = ACTIONS(3282), - [anon_sym_sql] = ACTIONS(3284), - [sym_int_literal] = ACTIONS(733), - [sym_float_literal] = ACTIONS(751), - [sym_rune_literal] = ACTIONS(751), - [sym_pseudo_compile_time_identifier] = ACTIONS(753), + [anon_sym_BANG] = ACTIONS(3390), + [anon_sym_go] = ACTIONS(3392), + [anon_sym_spawn] = ACTIONS(3394), + [anon_sym_json_DOTdecode] = ACTIONS(2161), + [anon_sym_LBRACK2] = ACTIONS(2163), + [anon_sym_TILDE] = ACTIONS(3386), + [anon_sym_CARET] = ACTIONS(3386), + [anon_sym_AMP] = ACTIONS(3396), + [anon_sym_LT_DASH] = ACTIONS(3398), + [sym_none] = ACTIONS(1721), + [sym_true] = ACTIONS(1721), + [sym_false] = ACTIONS(1721), + [sym_nil] = ACTIONS(1721), + [anon_sym_if] = ACTIONS(1723), + [anon_sym_DOLLARif] = ACTIONS(1725), + [anon_sym_match] = ACTIONS(1727), + [anon_sym_select] = ACTIONS(3400), + [anon_sym_lock] = ACTIONS(3402), + [anon_sym_rlock] = ACTIONS(3402), + [anon_sym_unsafe] = ACTIONS(1733), + [anon_sym_sql] = ACTIONS(1735), + [sym_int_literal] = ACTIONS(1721), + [sym_float_literal] = ACTIONS(2169), + [sym_rune_literal] = ACTIONS(2169), + [sym_pseudo_compile_time_identifier] = ACTIONS(1737), [anon_sym_shared] = ACTIONS(83), [anon_sym_map_LBRACK] = ACTIONS(85), [anon_sym_chan] = ACTIONS(87), [anon_sym_thread] = ACTIONS(89), [anon_sym_atomic] = ACTIONS(91), - [sym___double_quote] = ACTIONS(755), - [sym___single_quote] = ACTIONS(757), - [sym___c_double_quote] = ACTIONS(759), - [sym___c_single_quote] = ACTIONS(761), - [sym___r_double_quote] = ACTIONS(763), - [sym___r_single_quote] = ACTIONS(765), + [sym___double_quote] = ACTIONS(2171), + [sym___single_quote] = ACTIONS(2173), + [sym___c_double_quote] = ACTIONS(2175), + [sym___c_single_quote] = ACTIONS(2177), + [sym___r_double_quote] = ACTIONS(2179), + [sym___r_single_quote] = ACTIONS(2181), }, [912] = { [sym_line_comment] = STATE(912), [sym_block_comment] = STATE(912), - [sym__expression] = STATE(2540), - [sym__expression_without_blocks] = STATE(2625), - [sym__expression_with_blocks] = STATE(2625), - [sym_inc_expression] = STATE(2765), - [sym_dec_expression] = STATE(2765), - [sym_or_block_expression] = STATE(2765), - [sym_option_propagation_expression] = STATE(2765), - [sym_result_propagation_expression] = STATE(2765), - [sym_anon_struct_value_expression] = STATE(2619), - [sym_go_expression] = STATE(2765), - [sym_spawn_expression] = STATE(2765), - [sym_parenthesized_expression] = STATE(2765), - [sym_call_expression] = STATE(2765), - [sym_type_initializer] = STATE(2619), - [sym_function_literal] = STATE(2765), - [sym_reference_expression] = STATE(2764), - [sym_type_reference_expression] = STATE(3541), - [sym_unary_expression] = STATE(2765), - [sym_receive_expression] = STATE(2765), - [sym_binary_expression] = STATE(2765), - [sym_as_type_cast_expression] = STATE(2765), - [sym__max_group] = STATE(2765), - [sym_literal] = STATE(2769), - [sym_map_init_expression] = STATE(2619), - [sym_array_creation] = STATE(2765), - [sym_fixed_array_creation] = STATE(2765), - [sym_selector_expression] = STATE(2765), - [sym_index_expression] = STATE(2765), - [sym_slice_expression] = STATE(2765), - [sym_if_expression] = STATE(2619), - [sym_compile_time_if_expression] = STATE(2619), - [sym_is_expression] = STATE(2765), - [sym_in_expression] = STATE(2765), - [sym_enum_fetch] = STATE(2765), - [sym_match_expression] = STATE(2619), - [sym_select_expression] = STATE(2619), - [sym_lock_expression] = STATE(2619), - [sym_unsafe_expression] = STATE(2619), - [sym_sql_expression] = STATE(2619), - [sym_c_string_literal] = STATE(2660), - [sym_raw_string_literal] = STATE(2660), - [sym_interpreted_string_literal] = STATE(2660), - [sym_mutability_modifiers] = STATE(567), - [sym_plain_type] = STATE(4008), - [sym__plain_type_without_special] = STATE(2302), - [sym_anon_struct_type] = STATE(2303), - [sym_multi_return_type] = STATE(2302), - [sym_result_type] = STATE(2302), - [sym_option_type] = STATE(2302), - [sym_qualified_type] = STATE(3541), - [sym_fixed_array_type] = STATE(2303), - [sym_array_type] = STATE(2303), - [sym_pointer_type] = STATE(2303), - [sym_wrong_pointer_type] = STATE(2303), - [sym_map_type] = STATE(2303), - [sym_channel_type] = STATE(2303), - [sym_shared_type] = STATE(2303), - [sym_thread_type] = STATE(2303), - [sym_atomic_type] = STATE(2303), - [sym_generic_type] = STATE(2303), - [sym_function_type] = STATE(2303), - [sym_identifier] = ACTIONS(1807), + [sym__expression] = STATE(2449), + [sym__expression_without_blocks] = STATE(2468), + [sym__expression_with_blocks] = STATE(2468), + [sym_inc_expression] = STATE(2469), + [sym_dec_expression] = STATE(2469), + [sym_or_block_expression] = STATE(2469), + [sym_option_propagation_expression] = STATE(2469), + [sym_result_propagation_expression] = STATE(2469), + [sym_anon_struct_value_expression] = STATE(2470), + [sym_go_expression] = STATE(2469), + [sym_spawn_expression] = STATE(2469), + [sym_parenthesized_expression] = STATE(2469), + [sym_call_expression] = STATE(2469), + [sym_type_initializer] = STATE(2470), + [sym_function_literal] = STATE(2469), + [sym_reference_expression] = STATE(2487), + [sym_type_reference_expression] = STATE(3460), + [sym_unary_expression] = STATE(2469), + [sym_receive_expression] = STATE(2469), + [sym_binary_expression] = STATE(2469), + [sym_as_type_cast_expression] = STATE(2469), + [sym__max_group] = STATE(2469), + [sym_literal] = STATE(2465), + [sym_map_init_expression] = STATE(2470), + [sym_array_creation] = STATE(2469), + [sym_fixed_array_creation] = STATE(2469), + [sym_selector_expression] = STATE(2469), + [sym_index_expression] = STATE(2469), + [sym_slice_expression] = STATE(2469), + [sym_if_expression] = STATE(2470), + [sym_compile_time_if_expression] = STATE(2470), + [sym_is_expression] = STATE(2469), + [sym_in_expression] = STATE(2469), + [sym_enum_fetch] = STATE(2469), + [sym_match_expression] = STATE(2470), + [sym_select_expression] = STATE(2470), + [sym_lock_expression] = STATE(2470), + [sym_unsafe_expression] = STATE(2470), + [sym_sql_expression] = STATE(2470), + [sym_c_string_literal] = STATE(2464), + [sym_raw_string_literal] = STATE(2464), + [sym_interpreted_string_literal] = STATE(2464), + [sym_mutability_modifiers] = STATE(561), + [sym_plain_type] = STATE(4038), + [sym__plain_type_without_special] = STATE(2360), + [sym_anon_struct_type] = STATE(2362), + [sym_multi_return_type] = STATE(2360), + [sym_result_type] = STATE(2360), + [sym_option_type] = STATE(2360), + [sym_qualified_type] = STATE(3460), + [sym_fixed_array_type] = STATE(2362), + [sym_array_type] = STATE(2362), + [sym_pointer_type] = STATE(2362), + [sym_wrong_pointer_type] = STATE(2362), + [sym_map_type] = STATE(2362), + [sym_channel_type] = STATE(2362), + [sym_shared_type] = STATE(2362), + [sym_thread_type] = STATE(2362), + [sym_atomic_type] = STATE(2362), + [sym_generic_type] = STATE(2362), + [sym_function_type] = STATE(2362), + [sym_identifier] = ACTIONS(1691), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1081), - [anon_sym_LBRACE] = ACTIONS(1083), - [anon_sym_LPAREN] = ACTIONS(1087), - [anon_sym_fn] = ACTIONS(1089), - [anon_sym_PLUS] = ACTIONS(3120), - [anon_sym_DASH] = ACTIONS(3120), - [anon_sym_STAR] = ACTIONS(3122), - [anon_sym_struct] = ACTIONS(1095), + [anon_sym_DOT] = ACTIONS(1693), + [anon_sym_LBRACE] = ACTIONS(2151), + [anon_sym_LPAREN] = ACTIONS(2153), + [anon_sym_fn] = ACTIONS(1699), + [anon_sym_PLUS] = ACTIONS(3386), + [anon_sym_DASH] = ACTIONS(3386), + [anon_sym_STAR] = ACTIONS(3388), + [anon_sym_struct] = ACTIONS(1705), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(3124), - [anon_sym_go] = ACTIONS(3126), - [anon_sym_spawn] = ACTIONS(3128), - [anon_sym_json_DOTdecode] = ACTIONS(1103), - [anon_sym_LBRACK2] = ACTIONS(1105), - [anon_sym_TILDE] = ACTIONS(3120), - [anon_sym_CARET] = ACTIONS(3120), - [anon_sym_AMP] = ACTIONS(3130), - [anon_sym_LT_DASH] = ACTIONS(3132), - [sym_none] = ACTIONS(1111), - [sym_true] = ACTIONS(1111), - [sym_false] = ACTIONS(1111), - [sym_nil] = ACTIONS(1111), - [anon_sym_if] = ACTIONS(1113), - [anon_sym_DOLLARif] = ACTIONS(1117), - [anon_sym_match] = ACTIONS(1119), - [anon_sym_select] = ACTIONS(3134), - [anon_sym_lock] = ACTIONS(3136), - [anon_sym_rlock] = ACTIONS(3136), - [anon_sym_unsafe] = ACTIONS(1125), - [anon_sym_sql] = ACTIONS(1127), - [sym_int_literal] = ACTIONS(1111), - [sym_float_literal] = ACTIONS(1129), - [sym_rune_literal] = ACTIONS(1129), - [sym_pseudo_compile_time_identifier] = ACTIONS(1131), + [anon_sym_BANG] = ACTIONS(3390), + [anon_sym_go] = ACTIONS(3392), + [anon_sym_spawn] = ACTIONS(3394), + [anon_sym_json_DOTdecode] = ACTIONS(2161), + [anon_sym_LBRACK2] = ACTIONS(2163), + [anon_sym_TILDE] = ACTIONS(3386), + [anon_sym_CARET] = ACTIONS(3386), + [anon_sym_AMP] = ACTIONS(3396), + [anon_sym_LT_DASH] = ACTIONS(3398), + [sym_none] = ACTIONS(1721), + [sym_true] = ACTIONS(1721), + [sym_false] = ACTIONS(1721), + [sym_nil] = ACTIONS(1721), + [anon_sym_if] = ACTIONS(1723), + [anon_sym_DOLLARif] = ACTIONS(1725), + [anon_sym_match] = ACTIONS(1727), + [anon_sym_select] = ACTIONS(3400), + [anon_sym_lock] = ACTIONS(3402), + [anon_sym_rlock] = ACTIONS(3402), + [anon_sym_unsafe] = ACTIONS(1733), + [anon_sym_sql] = ACTIONS(1735), + [sym_int_literal] = ACTIONS(1721), + [sym_float_literal] = ACTIONS(2169), + [sym_rune_literal] = ACTIONS(2169), + [sym_pseudo_compile_time_identifier] = ACTIONS(1737), [anon_sym_shared] = ACTIONS(83), [anon_sym_map_LBRACK] = ACTIONS(85), [anon_sym_chan] = ACTIONS(87), [anon_sym_thread] = ACTIONS(89), [anon_sym_atomic] = ACTIONS(91), - [sym___double_quote] = ACTIONS(1133), - [sym___single_quote] = ACTIONS(1135), - [sym___c_double_quote] = ACTIONS(1137), - [sym___c_single_quote] = ACTIONS(1139), - [sym___r_double_quote] = ACTIONS(1141), - [sym___r_single_quote] = ACTIONS(1143), + [sym___double_quote] = ACTIONS(2171), + [sym___single_quote] = ACTIONS(2173), + [sym___c_double_quote] = ACTIONS(2175), + [sym___c_single_quote] = ACTIONS(2177), + [sym___r_double_quote] = ACTIONS(2179), + [sym___r_single_quote] = ACTIONS(2181), }, [913] = { [sym_line_comment] = STATE(913), [sym_block_comment] = STATE(913), - [sym__expression] = STATE(1770), - [sym__expression_without_blocks] = STATE(2005), - [sym__expression_with_blocks] = STATE(2005), - [sym_inc_expression] = STATE(2032), - [sym_dec_expression] = STATE(2032), - [sym_or_block_expression] = STATE(2032), - [sym_option_propagation_expression] = STATE(2032), - [sym_result_propagation_expression] = STATE(2032), - [sym_anon_struct_value_expression] = STATE(2004), - [sym_go_expression] = STATE(2032), - [sym_spawn_expression] = STATE(2032), - [sym_parenthesized_expression] = STATE(2032), - [sym_call_expression] = STATE(2032), - [sym_type_initializer] = STATE(2004), - [sym_function_literal] = STATE(2032), - [sym_reference_expression] = STATE(1914), - [sym_type_reference_expression] = STATE(3541), - [sym_unary_expression] = STATE(2032), - [sym_receive_expression] = STATE(2032), - [sym_binary_expression] = STATE(2032), - [sym_as_type_cast_expression] = STATE(2032), - [sym__max_group] = STATE(2032), - [sym_literal] = STATE(2027), - [sym_map_init_expression] = STATE(2004), - [sym_array_creation] = STATE(2032), - [sym_fixed_array_creation] = STATE(2032), - [sym_selector_expression] = STATE(2032), - [sym_index_expression] = STATE(2032), - [sym_slice_expression] = STATE(2032), - [sym_if_expression] = STATE(2004), - [sym_compile_time_if_expression] = STATE(2004), - [sym_is_expression] = STATE(2032), - [sym_in_expression] = STATE(2032), - [sym_enum_fetch] = STATE(2032), - [sym_match_expression] = STATE(2004), - [sym_select_expression] = STATE(2004), - [sym_lock_expression] = STATE(2004), - [sym_unsafe_expression] = STATE(2004), - [sym_sql_expression] = STATE(2004), - [sym_c_string_literal] = STATE(2026), - [sym_raw_string_literal] = STATE(2026), - [sym_interpreted_string_literal] = STATE(2026), - [sym_mutability_modifiers] = STATE(562), - [sym_plain_type] = STATE(4191), - [sym__plain_type_without_special] = STATE(2302), - [sym_anon_struct_type] = STATE(2303), - [sym_multi_return_type] = STATE(2302), - [sym_result_type] = STATE(2302), - [sym_option_type] = STATE(2302), - [sym_qualified_type] = STATE(3541), - [sym_fixed_array_type] = STATE(2303), - [sym_array_type] = STATE(2303), - [sym_pointer_type] = STATE(2303), - [sym_wrong_pointer_type] = STATE(2303), - [sym_map_type] = STATE(2303), - [sym_channel_type] = STATE(2303), - [sym_shared_type] = STATE(2303), - [sym_thread_type] = STATE(2303), - [sym_atomic_type] = STATE(2303), - [sym_generic_type] = STATE(2303), - [sym_function_type] = STATE(2303), - [sym_identifier] = ACTIONS(3266), + [sym__expression] = STATE(2192), + [sym__expression_without_blocks] = STATE(2162), + [sym__expression_with_blocks] = STATE(2162), + [sym_inc_expression] = STATE(2161), + [sym_dec_expression] = STATE(2161), + [sym_or_block_expression] = STATE(2161), + [sym_option_propagation_expression] = STATE(2161), + [sym_result_propagation_expression] = STATE(2161), + [sym_anon_struct_value_expression] = STATE(2160), + [sym_go_expression] = STATE(2161), + [sym_spawn_expression] = STATE(2161), + [sym_parenthesized_expression] = STATE(2161), + [sym_call_expression] = STATE(2161), + [sym_type_initializer] = STATE(2160), + [sym_function_literal] = STATE(2161), + [sym_reference_expression] = STATE(2159), + [sym_type_reference_expression] = STATE(3460), + [sym_unary_expression] = STATE(2161), + [sym_receive_expression] = STATE(2161), + [sym_binary_expression] = STATE(2161), + [sym_as_type_cast_expression] = STATE(2161), + [sym__max_group] = STATE(2161), + [sym_literal] = STATE(2164), + [sym_map_init_expression] = STATE(2160), + [sym_array_creation] = STATE(2161), + [sym_fixed_array_creation] = STATE(2161), + [sym_selector_expression] = STATE(2161), + [sym_index_expression] = STATE(2161), + [sym_slice_expression] = STATE(2161), + [sym_if_expression] = STATE(2160), + [sym_compile_time_if_expression] = STATE(2160), + [sym_is_expression] = STATE(2161), + [sym_in_expression] = STATE(2161), + [sym_enum_fetch] = STATE(2161), + [sym_match_expression] = STATE(2160), + [sym_select_expression] = STATE(2160), + [sym_lock_expression] = STATE(2160), + [sym_unsafe_expression] = STATE(2160), + [sym_sql_expression] = STATE(2160), + [sym_c_string_literal] = STATE(2166), + [sym_raw_string_literal] = STATE(2166), + [sym_interpreted_string_literal] = STATE(2166), + [sym_mutability_modifiers] = STATE(575), + [sym_plain_type] = STATE(4173), + [sym__plain_type_without_special] = STATE(2360), + [sym_anon_struct_type] = STATE(2362), + [sym_multi_return_type] = STATE(2360), + [sym_result_type] = STATE(2360), + [sym_option_type] = STATE(2360), + [sym_qualified_type] = STATE(3460), + [sym_fixed_array_type] = STATE(2362), + [sym_array_type] = STATE(2362), + [sym_pointer_type] = STATE(2362), + [sym_wrong_pointer_type] = STATE(2362), + [sym_map_type] = STATE(2362), + [sym_channel_type] = STATE(2362), + [sym_shared_type] = STATE(2362), + [sym_thread_type] = STATE(2362), + [sym_atomic_type] = STATE(2362), + [sym_generic_type] = STATE(2362), + [sym_function_type] = STATE(2362), + [sym_identifier] = ACTIONS(3292), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(703), - [anon_sym_LBRACE] = ACTIONS(3268), - [anon_sym_LPAREN] = ACTIONS(709), - [anon_sym_fn] = ACTIONS(711), - [anon_sym_PLUS] = ACTIONS(713), - [anon_sym_DASH] = ACTIONS(713), - [anon_sym_STAR] = ACTIONS(715), - [anon_sym_struct] = ACTIONS(3270), + [anon_sym_DOT] = ACTIONS(3294), + [anon_sym_LBRACE] = ACTIONS(3296), + [anon_sym_LPAREN] = ACTIONS(3298), + [anon_sym_fn] = ACTIONS(3300), + [anon_sym_PLUS] = ACTIONS(3404), + [anon_sym_DASH] = ACTIONS(3404), + [anon_sym_STAR] = ACTIONS(3406), + [anon_sym_struct] = ACTIONS(3306), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(719), - [anon_sym_go] = ACTIONS(721), - [anon_sym_spawn] = ACTIONS(723), - [anon_sym_json_DOTdecode] = ACTIONS(725), - [anon_sym_LBRACK2] = ACTIONS(727), - [anon_sym_TILDE] = ACTIONS(713), - [anon_sym_CARET] = ACTIONS(713), - [anon_sym_AMP] = ACTIONS(729), - [anon_sym_LT_DASH] = ACTIONS(731), - [sym_none] = ACTIONS(733), - [sym_true] = ACTIONS(733), - [sym_false] = ACTIONS(733), - [sym_nil] = ACTIONS(733), - [anon_sym_if] = ACTIONS(3272), - [anon_sym_DOLLARif] = ACTIONS(3274), - [anon_sym_match] = ACTIONS(3276), - [anon_sym_select] = ACTIONS(3278), - [anon_sym_lock] = ACTIONS(3280), - [anon_sym_rlock] = ACTIONS(3280), - [anon_sym_unsafe] = ACTIONS(3282), - [anon_sym_sql] = ACTIONS(3284), - [sym_int_literal] = ACTIONS(733), - [sym_float_literal] = ACTIONS(751), - [sym_rune_literal] = ACTIONS(751), - [sym_pseudo_compile_time_identifier] = ACTIONS(753), + [anon_sym_BANG] = ACTIONS(3408), + [anon_sym_go] = ACTIONS(3410), + [anon_sym_spawn] = ACTIONS(3412), + [anon_sym_json_DOTdecode] = ACTIONS(3314), + [anon_sym_LBRACK2] = ACTIONS(3316), + [anon_sym_TILDE] = ACTIONS(3404), + [anon_sym_CARET] = ACTIONS(3404), + [anon_sym_AMP] = ACTIONS(3414), + [anon_sym_LT_DASH] = ACTIONS(3416), + [sym_none] = ACTIONS(3322), + [sym_true] = ACTIONS(3322), + [sym_false] = ACTIONS(3322), + [sym_nil] = ACTIONS(3322), + [anon_sym_if] = ACTIONS(3324), + [anon_sym_DOLLARif] = ACTIONS(3326), + [anon_sym_match] = ACTIONS(3328), + [anon_sym_select] = ACTIONS(3418), + [anon_sym_lock] = ACTIONS(3420), + [anon_sym_rlock] = ACTIONS(3420), + [anon_sym_unsafe] = ACTIONS(3334), + [anon_sym_sql] = ACTIONS(3336), + [sym_int_literal] = ACTIONS(3322), + [sym_float_literal] = ACTIONS(3338), + [sym_rune_literal] = ACTIONS(3338), + [sym_pseudo_compile_time_identifier] = ACTIONS(3340), [anon_sym_shared] = ACTIONS(83), [anon_sym_map_LBRACK] = ACTIONS(85), [anon_sym_chan] = ACTIONS(87), [anon_sym_thread] = ACTIONS(89), [anon_sym_atomic] = ACTIONS(91), - [sym___double_quote] = ACTIONS(755), - [sym___single_quote] = ACTIONS(757), - [sym___c_double_quote] = ACTIONS(759), - [sym___c_single_quote] = ACTIONS(761), - [sym___r_double_quote] = ACTIONS(763), - [sym___r_single_quote] = ACTIONS(765), + [sym___double_quote] = ACTIONS(3342), + [sym___single_quote] = ACTIONS(3344), + [sym___c_double_quote] = ACTIONS(3346), + [sym___c_single_quote] = ACTIONS(3348), + [sym___r_double_quote] = ACTIONS(3350), + [sym___r_single_quote] = ACTIONS(3352), }, [914] = { [sym_line_comment] = STATE(914), [sym_block_comment] = STATE(914), - [sym__expression] = STATE(2323), - [sym__expression_without_blocks] = STATE(2489), - [sym__expression_with_blocks] = STATE(2489), - [sym_inc_expression] = STATE(2479), - [sym_dec_expression] = STATE(2479), - [sym_or_block_expression] = STATE(2479), - [sym_option_propagation_expression] = STATE(2479), - [sym_result_propagation_expression] = STATE(2479), - [sym_anon_struct_value_expression] = STATE(2491), - [sym_go_expression] = STATE(2479), - [sym_spawn_expression] = STATE(2479), - [sym_parenthesized_expression] = STATE(2479), - [sym_call_expression] = STATE(2479), - [sym_type_initializer] = STATE(2491), - [sym_function_literal] = STATE(2479), - [sym_reference_expression] = STATE(2542), - [sym_type_reference_expression] = STATE(3541), - [sym_unary_expression] = STATE(2479), - [sym_receive_expression] = STATE(2479), - [sym_binary_expression] = STATE(2479), - [sym_as_type_cast_expression] = STATE(2479), - [sym__max_group] = STATE(2479), - [sym_literal] = STATE(2454), - [sym_map_init_expression] = STATE(2491), - [sym_array_creation] = STATE(2479), - [sym_fixed_array_creation] = STATE(2479), - [sym_selector_expression] = STATE(2479), - [sym_index_expression] = STATE(2479), - [sym_slice_expression] = STATE(2479), - [sym_if_expression] = STATE(2491), - [sym_compile_time_if_expression] = STATE(2491), - [sym_is_expression] = STATE(2479), - [sym_in_expression] = STATE(2479), - [sym_enum_fetch] = STATE(2479), - [sym_match_expression] = STATE(2491), - [sym_select_expression] = STATE(2491), - [sym_lock_expression] = STATE(2491), - [sym_unsafe_expression] = STATE(2491), - [sym_sql_expression] = STATE(2491), - [sym_c_string_literal] = STATE(2469), - [sym_raw_string_literal] = STATE(2469), - [sym_interpreted_string_literal] = STATE(2469), - [sym_mutability_modifiers] = STATE(640), - [sym_plain_type] = STATE(4255), - [sym__plain_type_without_special] = STATE(2302), - [sym_anon_struct_type] = STATE(2303), - [sym_multi_return_type] = STATE(2302), - [sym_result_type] = STATE(2302), - [sym_option_type] = STATE(2302), - [sym_qualified_type] = STATE(3541), - [sym_fixed_array_type] = STATE(2303), - [sym_array_type] = STATE(2303), - [sym_pointer_type] = STATE(2303), - [sym_wrong_pointer_type] = STATE(2303), - [sym_map_type] = STATE(2303), - [sym_channel_type] = STATE(2303), - [sym_shared_type] = STATE(2303), - [sym_thread_type] = STATE(2303), - [sym_atomic_type] = STATE(2303), - [sym_generic_type] = STATE(2303), - [sym_function_type] = STATE(2303), - [sym_identifier] = ACTIONS(1695), + [sym__expression] = STATE(2261), + [sym__expression_without_blocks] = STATE(2347), + [sym__expression_with_blocks] = STATE(2347), + [sym_inc_expression] = STATE(2379), + [sym_dec_expression] = STATE(2379), + [sym_or_block_expression] = STATE(2379), + [sym_option_propagation_expression] = STATE(2379), + [sym_result_propagation_expression] = STATE(2379), + [sym_anon_struct_value_expression] = STATE(2378), + [sym_go_expression] = STATE(2379), + [sym_spawn_expression] = STATE(2379), + [sym_parenthesized_expression] = STATE(2379), + [sym_call_expression] = STATE(2379), + [sym_type_initializer] = STATE(2378), + [sym_function_literal] = STATE(2379), + [sym_reference_expression] = STATE(2377), + [sym_type_reference_expression] = STATE(3460), + [sym_unary_expression] = STATE(2379), + [sym_receive_expression] = STATE(2379), + [sym_binary_expression] = STATE(2379), + [sym_as_type_cast_expression] = STATE(2379), + [sym__max_group] = STATE(2379), + [sym_literal] = STATE(2392), + [sym_map_init_expression] = STATE(2378), + [sym_array_creation] = STATE(2379), + [sym_fixed_array_creation] = STATE(2379), + [sym_selector_expression] = STATE(2379), + [sym_index_expression] = STATE(2379), + [sym_slice_expression] = STATE(2379), + [sym_if_expression] = STATE(2378), + [sym_compile_time_if_expression] = STATE(2378), + [sym_is_expression] = STATE(2379), + [sym_in_expression] = STATE(2379), + [sym_enum_fetch] = STATE(2379), + [sym_match_expression] = STATE(2378), + [sym_select_expression] = STATE(2378), + [sym_lock_expression] = STATE(2378), + [sym_unsafe_expression] = STATE(2378), + [sym_sql_expression] = STATE(2378), + [sym_c_string_literal] = STATE(2401), + [sym_raw_string_literal] = STATE(2401), + [sym_interpreted_string_literal] = STATE(2401), + [sym_mutability_modifiers] = STATE(939), + [sym_plain_type] = STATE(4160), + [sym__plain_type_without_special] = STATE(2360), + [sym_anon_struct_type] = STATE(2362), + [sym_multi_return_type] = STATE(2360), + [sym_result_type] = STATE(2360), + [sym_option_type] = STATE(2360), + [sym_qualified_type] = STATE(3460), + [sym_fixed_array_type] = STATE(2362), + [sym_array_type] = STATE(2362), + [sym_pointer_type] = STATE(2362), + [sym_wrong_pointer_type] = STATE(2362), + [sym_map_type] = STATE(2362), + [sym_channel_type] = STATE(2362), + [sym_shared_type] = STATE(2362), + [sym_thread_type] = STATE(2362), + [sym_atomic_type] = STATE(2362), + [sym_generic_type] = STATE(2362), + [sym_function_type] = STATE(2362), + [sym_identifier] = ACTIONS(2477), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1697), - [anon_sym_LBRACE] = ACTIONS(2697), - [anon_sym_LPAREN] = ACTIONS(2699), - [anon_sym_fn] = ACTIONS(1703), - [anon_sym_PLUS] = ACTIONS(3380), - [anon_sym_DASH] = ACTIONS(3380), - [anon_sym_STAR] = ACTIONS(3382), - [anon_sym_struct] = ACTIONS(1709), + [anon_sym_DOT] = ACTIONS(1430), + [anon_sym_LBRACE] = ACTIONS(1432), + [anon_sym_LPAREN] = ACTIONS(1434), + [anon_sym_fn] = ACTIONS(1436), + [anon_sym_PLUS] = ACTIONS(2271), + [anon_sym_DASH] = ACTIONS(2271), + [anon_sym_STAR] = ACTIONS(3354), + [anon_sym_struct] = ACTIONS(1442), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(3384), - [anon_sym_go] = ACTIONS(3386), - [anon_sym_spawn] = ACTIONS(3388), - [anon_sym_json_DOTdecode] = ACTIONS(2707), - [anon_sym_LBRACK2] = ACTIONS(2709), - [anon_sym_TILDE] = ACTIONS(3380), - [anon_sym_CARET] = ACTIONS(3380), - [anon_sym_AMP] = ACTIONS(3390), - [anon_sym_LT_DASH] = ACTIONS(3392), - [sym_none] = ACTIONS(1725), - [sym_true] = ACTIONS(1725), - [sym_false] = ACTIONS(1725), - [sym_nil] = ACTIONS(1725), - [anon_sym_if] = ACTIONS(1727), - [anon_sym_DOLLARif] = ACTIONS(1729), - [anon_sym_match] = ACTIONS(1731), - [anon_sym_select] = ACTIONS(3394), - [anon_sym_lock] = ACTIONS(3396), - [anon_sym_rlock] = ACTIONS(3396), - [anon_sym_unsafe] = ACTIONS(1737), - [anon_sym_sql] = ACTIONS(1739), - [sym_int_literal] = ACTIONS(1725), - [sym_float_literal] = ACTIONS(2715), - [sym_rune_literal] = ACTIONS(2715), - [sym_pseudo_compile_time_identifier] = ACTIONS(1741), + [anon_sym_BANG] = ACTIONS(3356), + [anon_sym_go] = ACTIONS(2277), + [anon_sym_spawn] = ACTIONS(2279), + [anon_sym_json_DOTdecode] = ACTIONS(1450), + [anon_sym_LBRACK2] = ACTIONS(1452), + [anon_sym_TILDE] = ACTIONS(2271), + [anon_sym_CARET] = ACTIONS(2271), + [anon_sym_AMP] = ACTIONS(3358), + [anon_sym_LT_DASH] = ACTIONS(2283), + [sym_none] = ACTIONS(1458), + [sym_true] = ACTIONS(1458), + [sym_false] = ACTIONS(1458), + [sym_nil] = ACTIONS(1458), + [anon_sym_if] = ACTIONS(1833), + [anon_sym_DOLLARif] = ACTIONS(1462), + [anon_sym_match] = ACTIONS(1464), + [anon_sym_select] = ACTIONS(1466), + [anon_sym_lock] = ACTIONS(1468), + [anon_sym_rlock] = ACTIONS(1468), + [anon_sym_unsafe] = ACTIONS(1839), + [anon_sym_sql] = ACTIONS(1472), + [sym_int_literal] = ACTIONS(1458), + [sym_float_literal] = ACTIONS(1474), + [sym_rune_literal] = ACTIONS(1474), + [sym_pseudo_compile_time_identifier] = ACTIONS(1476), [anon_sym_shared] = ACTIONS(83), [anon_sym_map_LBRACK] = ACTIONS(85), [anon_sym_chan] = ACTIONS(87), [anon_sym_thread] = ACTIONS(89), [anon_sym_atomic] = ACTIONS(91), - [sym___double_quote] = ACTIONS(2717), - [sym___single_quote] = ACTIONS(2719), - [sym___c_double_quote] = ACTIONS(2721), - [sym___c_single_quote] = ACTIONS(2723), - [sym___r_double_quote] = ACTIONS(2725), - [sym___r_single_quote] = ACTIONS(2727), + [sym___double_quote] = ACTIONS(1480), + [sym___single_quote] = ACTIONS(1482), + [sym___c_double_quote] = ACTIONS(1484), + [sym___c_single_quote] = ACTIONS(1486), + [sym___r_double_quote] = ACTIONS(1488), + [sym___r_single_quote] = ACTIONS(1490), }, [915] = { [sym_line_comment] = STATE(915), [sym_block_comment] = STATE(915), - [sym__expression] = STATE(2654), - [sym__expression_without_blocks] = STATE(2300), - [sym__expression_with_blocks] = STATE(2300), - [sym_inc_expression] = STATE(2307), - [sym_dec_expression] = STATE(2307), - [sym_or_block_expression] = STATE(2307), - [sym_option_propagation_expression] = STATE(2307), - [sym_result_propagation_expression] = STATE(2307), - [sym_anon_struct_value_expression] = STATE(2380), - [sym_go_expression] = STATE(2307), - [sym_spawn_expression] = STATE(2307), - [sym_parenthesized_expression] = STATE(2307), - [sym_call_expression] = STATE(2307), - [sym_type_initializer] = STATE(2380), - [sym_function_literal] = STATE(2307), - [sym_reference_expression] = STATE(2311), - [sym_type_reference_expression] = STATE(3541), - [sym_unary_expression] = STATE(2307), - [sym_receive_expression] = STATE(2307), - [sym_binary_expression] = STATE(2307), - [sym_as_type_cast_expression] = STATE(2307), - [sym__max_group] = STATE(2307), - [sym_literal] = STATE(2292), - [sym_map_init_expression] = STATE(2380), - [sym_array_creation] = STATE(2307), - [sym_fixed_array_creation] = STATE(2307), - [sym_selector_expression] = STATE(2307), - [sym_index_expression] = STATE(2307), - [sym_slice_expression] = STATE(2307), - [sym_if_expression] = STATE(2380), - [sym_compile_time_if_expression] = STATE(2380), - [sym_is_expression] = STATE(2307), - [sym_in_expression] = STATE(2307), - [sym_enum_fetch] = STATE(2307), - [sym_match_expression] = STATE(2380), - [sym_select_expression] = STATE(2380), - [sym_lock_expression] = STATE(2380), - [sym_unsafe_expression] = STATE(2380), - [sym_sql_expression] = STATE(2380), - [sym_c_string_literal] = STATE(2308), - [sym_raw_string_literal] = STATE(2308), - [sym_interpreted_string_literal] = STATE(2308), + [sym__expression] = STATE(2267), + [sym__expression_without_blocks] = STATE(2347), + [sym__expression_with_blocks] = STATE(2347), + [sym_inc_expression] = STATE(2379), + [sym_dec_expression] = STATE(2379), + [sym_or_block_expression] = STATE(2379), + [sym_option_propagation_expression] = STATE(2379), + [sym_result_propagation_expression] = STATE(2379), + [sym_anon_struct_value_expression] = STATE(2378), + [sym_go_expression] = STATE(2379), + [sym_spawn_expression] = STATE(2379), + [sym_parenthesized_expression] = STATE(2379), + [sym_call_expression] = STATE(2379), + [sym_type_initializer] = STATE(2378), + [sym_function_literal] = STATE(2379), + [sym_reference_expression] = STATE(2377), + [sym_type_reference_expression] = STATE(3460), + [sym_unary_expression] = STATE(2379), + [sym_receive_expression] = STATE(2379), + [sym_binary_expression] = STATE(2379), + [sym_as_type_cast_expression] = STATE(2379), + [sym__max_group] = STATE(2379), + [sym_literal] = STATE(2392), + [sym_map_init_expression] = STATE(2378), + [sym_array_creation] = STATE(2379), + [sym_fixed_array_creation] = STATE(2379), + [sym_selector_expression] = STATE(2379), + [sym_index_expression] = STATE(2379), + [sym_slice_expression] = STATE(2379), + [sym_if_expression] = STATE(2378), + [sym_compile_time_if_expression] = STATE(2378), + [sym_is_expression] = STATE(2379), + [sym_in_expression] = STATE(2379), + [sym_enum_fetch] = STATE(2379), + [sym_match_expression] = STATE(2378), + [sym_select_expression] = STATE(2378), + [sym_lock_expression] = STATE(2378), + [sym_unsafe_expression] = STATE(2378), + [sym_sql_expression] = STATE(2378), + [sym_c_string_literal] = STATE(2401), + [sym_raw_string_literal] = STATE(2401), + [sym_interpreted_string_literal] = STATE(2401), [sym_mutability_modifiers] = STATE(939), - [sym_plain_type] = STATE(4297), - [sym__plain_type_without_special] = STATE(2302), - [sym_anon_struct_type] = STATE(2303), - [sym_multi_return_type] = STATE(2302), - [sym_result_type] = STATE(2302), - [sym_option_type] = STATE(2302), - [sym_qualified_type] = STATE(3541), - [sym_fixed_array_type] = STATE(2303), - [sym_array_type] = STATE(2303), - [sym_pointer_type] = STATE(2303), - [sym_wrong_pointer_type] = STATE(2303), - [sym_map_type] = STATE(2303), - [sym_channel_type] = STATE(2303), - [sym_shared_type] = STATE(2303), - [sym_thread_type] = STATE(2303), - [sym_atomic_type] = STATE(2303), - [sym_generic_type] = STATE(2303), - [sym_function_type] = STATE(2303), - [sym_identifier] = ACTIONS(1807), + [sym_plain_type] = STATE(3559), + [sym__plain_type_without_special] = STATE(2360), + [sym_anon_struct_type] = STATE(2362), + [sym_multi_return_type] = STATE(2360), + [sym_result_type] = STATE(2360), + [sym_option_type] = STATE(2360), + [sym_qualified_type] = STATE(3460), + [sym_fixed_array_type] = STATE(2362), + [sym_array_type] = STATE(2362), + [sym_pointer_type] = STATE(2362), + [sym_wrong_pointer_type] = STATE(2362), + [sym_map_type] = STATE(2362), + [sym_channel_type] = STATE(2362), + [sym_shared_type] = STATE(2362), + [sym_thread_type] = STATE(2362), + [sym_atomic_type] = STATE(2362), + [sym_generic_type] = STATE(2362), + [sym_function_type] = STATE(2362), + [sym_identifier] = ACTIONS(1428), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1428), - [anon_sym_LBRACE] = ACTIONS(1430), - [anon_sym_LPAREN] = ACTIONS(1432), - [anon_sym_fn] = ACTIONS(1434), - [anon_sym_PLUS] = ACTIONS(3064), - [anon_sym_DASH] = ACTIONS(3064), - [anon_sym_STAR] = ACTIONS(3066), - [anon_sym_struct] = ACTIONS(1440), + [anon_sym_DOT] = ACTIONS(1430), + [anon_sym_LBRACE] = ACTIONS(1432), + [anon_sym_LPAREN] = ACTIONS(1434), + [anon_sym_fn] = ACTIONS(1436), + [anon_sym_PLUS] = ACTIONS(2271), + [anon_sym_DASH] = ACTIONS(2271), + [anon_sym_STAR] = ACTIONS(2273), + [anon_sym_struct] = ACTIONS(1442), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(3068), - [anon_sym_go] = ACTIONS(3070), - [anon_sym_spawn] = ACTIONS(3072), - [anon_sym_json_DOTdecode] = ACTIONS(1448), - [anon_sym_LBRACK2] = ACTIONS(1821), - [anon_sym_TILDE] = ACTIONS(3064), - [anon_sym_CARET] = ACTIONS(3064), - [anon_sym_AMP] = ACTIONS(3074), - [anon_sym_LT_DASH] = ACTIONS(3076), - [sym_none] = ACTIONS(1456), - [sym_true] = ACTIONS(1456), - [sym_false] = ACTIONS(1456), - [sym_nil] = ACTIONS(1456), - [anon_sym_if] = ACTIONS(1827), - [anon_sym_DOLLARif] = ACTIONS(1460), - [anon_sym_match] = ACTIONS(1462), - [anon_sym_select] = ACTIONS(3078), - [anon_sym_lock] = ACTIONS(3080), - [anon_sym_rlock] = ACTIONS(3080), - [anon_sym_unsafe] = ACTIONS(1833), - [anon_sym_sql] = ACTIONS(1470), - [sym_int_literal] = ACTIONS(1456), - [sym_float_literal] = ACTIONS(1472), - [sym_rune_literal] = ACTIONS(1472), - [sym_pseudo_compile_time_identifier] = ACTIONS(1474), + [anon_sym_BANG] = ACTIONS(2275), + [anon_sym_go] = ACTIONS(2277), + [anon_sym_spawn] = ACTIONS(2279), + [anon_sym_json_DOTdecode] = ACTIONS(1450), + [anon_sym_LBRACK2] = ACTIONS(1452), + [anon_sym_TILDE] = ACTIONS(2271), + [anon_sym_CARET] = ACTIONS(2271), + [anon_sym_AMP] = ACTIONS(2281), + [anon_sym_LT_DASH] = ACTIONS(2283), + [sym_none] = ACTIONS(1458), + [sym_true] = ACTIONS(1458), + [sym_false] = ACTIONS(1458), + [sym_nil] = ACTIONS(1458), + [anon_sym_if] = ACTIONS(1833), + [anon_sym_DOLLARif] = ACTIONS(1462), + [anon_sym_match] = ACTIONS(1464), + [anon_sym_select] = ACTIONS(1466), + [anon_sym_lock] = ACTIONS(1468), + [anon_sym_rlock] = ACTIONS(1468), + [anon_sym_unsafe] = ACTIONS(1839), + [anon_sym_sql] = ACTIONS(1472), + [sym_int_literal] = ACTIONS(1458), + [sym_float_literal] = ACTIONS(1474), + [sym_rune_literal] = ACTIONS(1474), + [sym_pseudo_compile_time_identifier] = ACTIONS(1476), [anon_sym_shared] = ACTIONS(83), [anon_sym_map_LBRACK] = ACTIONS(85), [anon_sym_chan] = ACTIONS(87), [anon_sym_thread] = ACTIONS(89), [anon_sym_atomic] = ACTIONS(91), - [sym___double_quote] = ACTIONS(1478), - [sym___single_quote] = ACTIONS(1480), - [sym___c_double_quote] = ACTIONS(1482), - [sym___c_single_quote] = ACTIONS(1484), - [sym___r_double_quote] = ACTIONS(1486), - [sym___r_single_quote] = ACTIONS(1488), + [sym___double_quote] = ACTIONS(1480), + [sym___single_quote] = ACTIONS(1482), + [sym___c_double_quote] = ACTIONS(1484), + [sym___c_single_quote] = ACTIONS(1486), + [sym___r_double_quote] = ACTIONS(1488), + [sym___r_single_quote] = ACTIONS(1490), }, [916] = { [sym_line_comment] = STATE(916), [sym_block_comment] = STATE(916), - [sym__expression] = STATE(2281), - [sym__expression_without_blocks] = STATE(2489), - [sym__expression_with_blocks] = STATE(2489), - [sym_inc_expression] = STATE(2479), - [sym_dec_expression] = STATE(2479), - [sym_or_block_expression] = STATE(2479), - [sym_option_propagation_expression] = STATE(2479), - [sym_result_propagation_expression] = STATE(2479), - [sym_anon_struct_value_expression] = STATE(2491), - [sym_go_expression] = STATE(2479), - [sym_spawn_expression] = STATE(2479), - [sym_parenthesized_expression] = STATE(2479), - [sym_call_expression] = STATE(2479), - [sym_type_initializer] = STATE(2491), - [sym_function_literal] = STATE(2479), - [sym_reference_expression] = STATE(2542), - [sym_type_reference_expression] = STATE(3541), - [sym_unary_expression] = STATE(2479), - [sym_receive_expression] = STATE(2479), - [sym_binary_expression] = STATE(2479), - [sym_as_type_cast_expression] = STATE(2479), - [sym__max_group] = STATE(2479), - [sym_literal] = STATE(2454), - [sym_map_init_expression] = STATE(2491), - [sym_array_creation] = STATE(2479), - [sym_fixed_array_creation] = STATE(2479), - [sym_selector_expression] = STATE(2479), - [sym_index_expression] = STATE(2479), - [sym_slice_expression] = STATE(2479), - [sym_if_expression] = STATE(2491), - [sym_compile_time_if_expression] = STATE(2491), - [sym_is_expression] = STATE(2479), - [sym_in_expression] = STATE(2479), - [sym_enum_fetch] = STATE(2479), - [sym_match_expression] = STATE(2491), - [sym_select_expression] = STATE(2491), - [sym_lock_expression] = STATE(2491), - [sym_unsafe_expression] = STATE(2491), - [sym_sql_expression] = STATE(2491), - [sym_c_string_literal] = STATE(2469), - [sym_raw_string_literal] = STATE(2469), - [sym_interpreted_string_literal] = STATE(2469), - [sym_mutability_modifiers] = STATE(640), - [sym_plain_type] = STATE(4255), - [sym__plain_type_without_special] = STATE(2302), - [sym_anon_struct_type] = STATE(2303), - [sym_multi_return_type] = STATE(2302), - [sym_result_type] = STATE(2302), - [sym_option_type] = STATE(2302), - [sym_qualified_type] = STATE(3541), - [sym_fixed_array_type] = STATE(2303), - [sym_array_type] = STATE(2303), - [sym_pointer_type] = STATE(2303), - [sym_wrong_pointer_type] = STATE(2303), - [sym_map_type] = STATE(2303), - [sym_channel_type] = STATE(2303), - [sym_shared_type] = STATE(2303), - [sym_thread_type] = STATE(2303), - [sym_atomic_type] = STATE(2303), - [sym_generic_type] = STATE(2303), - [sym_function_type] = STATE(2303), - [sym_identifier] = ACTIONS(1695), + [sym__expression] = STATE(2797), + [sym__expression_without_blocks] = STATE(2347), + [sym__expression_with_blocks] = STATE(2347), + [sym_inc_expression] = STATE(2379), + [sym_dec_expression] = STATE(2379), + [sym_or_block_expression] = STATE(2379), + [sym_option_propagation_expression] = STATE(2379), + [sym_result_propagation_expression] = STATE(2379), + [sym_anon_struct_value_expression] = STATE(2378), + [sym_go_expression] = STATE(2379), + [sym_spawn_expression] = STATE(2379), + [sym_parenthesized_expression] = STATE(2379), + [sym_call_expression] = STATE(2379), + [sym_type_initializer] = STATE(2378), + [sym_function_literal] = STATE(2379), + [sym_reference_expression] = STATE(2377), + [sym_type_reference_expression] = STATE(3460), + [sym_unary_expression] = STATE(2379), + [sym_receive_expression] = STATE(2379), + [sym_binary_expression] = STATE(2379), + [sym_as_type_cast_expression] = STATE(2379), + [sym__max_group] = STATE(2379), + [sym_literal] = STATE(2392), + [sym_map_init_expression] = STATE(2378), + [sym_array_creation] = STATE(2379), + [sym_fixed_array_creation] = STATE(2379), + [sym_selector_expression] = STATE(2379), + [sym_index_expression] = STATE(2379), + [sym_slice_expression] = STATE(2379), + [sym_if_expression] = STATE(2378), + [sym_compile_time_if_expression] = STATE(2378), + [sym_is_expression] = STATE(2379), + [sym_in_expression] = STATE(2379), + [sym_enum_fetch] = STATE(2379), + [sym_match_expression] = STATE(2378), + [sym_select_expression] = STATE(2378), + [sym_lock_expression] = STATE(2378), + [sym_unsafe_expression] = STATE(2378), + [sym_sql_expression] = STATE(2378), + [sym_c_string_literal] = STATE(2401), + [sym_raw_string_literal] = STATE(2401), + [sym_interpreted_string_literal] = STATE(2401), + [sym_mutability_modifiers] = STATE(939), + [sym_plain_type] = STATE(4160), + [sym__plain_type_without_special] = STATE(2360), + [sym_anon_struct_type] = STATE(2362), + [sym_multi_return_type] = STATE(2360), + [sym_result_type] = STATE(2360), + [sym_option_type] = STATE(2360), + [sym_qualified_type] = STATE(3460), + [sym_fixed_array_type] = STATE(2362), + [sym_array_type] = STATE(2362), + [sym_pointer_type] = STATE(2362), + [sym_wrong_pointer_type] = STATE(2362), + [sym_map_type] = STATE(2362), + [sym_channel_type] = STATE(2362), + [sym_shared_type] = STATE(2362), + [sym_thread_type] = STATE(2362), + [sym_atomic_type] = STATE(2362), + [sym_generic_type] = STATE(2362), + [sym_function_type] = STATE(2362), + [sym_identifier] = ACTIONS(2477), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1697), - [anon_sym_LBRACE] = ACTIONS(2697), - [anon_sym_LPAREN] = ACTIONS(2699), - [anon_sym_fn] = ACTIONS(1703), - [anon_sym_PLUS] = ACTIONS(3380), - [anon_sym_DASH] = ACTIONS(3380), - [anon_sym_STAR] = ACTIONS(3382), - [anon_sym_struct] = ACTIONS(1709), + [anon_sym_DOT] = ACTIONS(1430), + [anon_sym_LBRACE] = ACTIONS(1432), + [anon_sym_LPAREN] = ACTIONS(1434), + [anon_sym_fn] = ACTIONS(1436), + [anon_sym_PLUS] = ACTIONS(2271), + [anon_sym_DASH] = ACTIONS(2271), + [anon_sym_STAR] = ACTIONS(3354), + [anon_sym_struct] = ACTIONS(1442), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(3384), - [anon_sym_go] = ACTIONS(3386), - [anon_sym_spawn] = ACTIONS(3388), - [anon_sym_json_DOTdecode] = ACTIONS(2707), - [anon_sym_LBRACK2] = ACTIONS(2709), - [anon_sym_TILDE] = ACTIONS(3380), - [anon_sym_CARET] = ACTIONS(3380), - [anon_sym_AMP] = ACTIONS(3390), - [anon_sym_LT_DASH] = ACTIONS(3392), - [sym_none] = ACTIONS(1725), - [sym_true] = ACTIONS(1725), - [sym_false] = ACTIONS(1725), - [sym_nil] = ACTIONS(1725), - [anon_sym_if] = ACTIONS(1727), - [anon_sym_DOLLARif] = ACTIONS(1729), - [anon_sym_match] = ACTIONS(1731), - [anon_sym_select] = ACTIONS(3394), - [anon_sym_lock] = ACTIONS(3396), - [anon_sym_rlock] = ACTIONS(3396), - [anon_sym_unsafe] = ACTIONS(1737), - [anon_sym_sql] = ACTIONS(1739), - [sym_int_literal] = ACTIONS(1725), - [sym_float_literal] = ACTIONS(2715), - [sym_rune_literal] = ACTIONS(2715), - [sym_pseudo_compile_time_identifier] = ACTIONS(1741), + [anon_sym_BANG] = ACTIONS(3356), + [anon_sym_go] = ACTIONS(2277), + [anon_sym_spawn] = ACTIONS(2279), + [anon_sym_json_DOTdecode] = ACTIONS(1450), + [anon_sym_LBRACK2] = ACTIONS(1452), + [anon_sym_TILDE] = ACTIONS(2271), + [anon_sym_CARET] = ACTIONS(2271), + [anon_sym_AMP] = ACTIONS(3358), + [anon_sym_LT_DASH] = ACTIONS(2283), + [sym_none] = ACTIONS(1458), + [sym_true] = ACTIONS(1458), + [sym_false] = ACTIONS(1458), + [sym_nil] = ACTIONS(1458), + [anon_sym_if] = ACTIONS(1833), + [anon_sym_DOLLARif] = ACTIONS(1462), + [anon_sym_match] = ACTIONS(1464), + [anon_sym_select] = ACTIONS(1466), + [anon_sym_lock] = ACTIONS(1468), + [anon_sym_rlock] = ACTIONS(1468), + [anon_sym_unsafe] = ACTIONS(1839), + [anon_sym_sql] = ACTIONS(1472), + [sym_int_literal] = ACTIONS(1458), + [sym_float_literal] = ACTIONS(1474), + [sym_rune_literal] = ACTIONS(1474), + [sym_pseudo_compile_time_identifier] = ACTIONS(1476), [anon_sym_shared] = ACTIONS(83), [anon_sym_map_LBRACK] = ACTIONS(85), [anon_sym_chan] = ACTIONS(87), [anon_sym_thread] = ACTIONS(89), [anon_sym_atomic] = ACTIONS(91), - [sym___double_quote] = ACTIONS(2717), - [sym___single_quote] = ACTIONS(2719), - [sym___c_double_quote] = ACTIONS(2721), - [sym___c_single_quote] = ACTIONS(2723), - [sym___r_double_quote] = ACTIONS(2725), - [sym___r_single_quote] = ACTIONS(2727), + [sym___double_quote] = ACTIONS(1480), + [sym___single_quote] = ACTIONS(1482), + [sym___c_double_quote] = ACTIONS(1484), + [sym___c_single_quote] = ACTIONS(1486), + [sym___r_double_quote] = ACTIONS(1488), + [sym___r_single_quote] = ACTIONS(1490), }, [917] = { [sym_line_comment] = STATE(917), [sym_block_comment] = STATE(917), - [sym__expression] = STATE(1115), - [sym__expression_without_blocks] = STATE(1141), - [sym__expression_with_blocks] = STATE(1141), - [sym_inc_expression] = STATE(1140), - [sym_dec_expression] = STATE(1140), - [sym_or_block_expression] = STATE(1140), - [sym_option_propagation_expression] = STATE(1140), - [sym_result_propagation_expression] = STATE(1140), - [sym_anon_struct_value_expression] = STATE(1199), - [sym_go_expression] = STATE(1140), - [sym_spawn_expression] = STATE(1140), - [sym_parenthesized_expression] = STATE(1140), - [sym_call_expression] = STATE(1140), - [sym_type_initializer] = STATE(1199), - [sym_function_literal] = STATE(1140), - [sym_reference_expression] = STATE(1181), - [sym_type_reference_expression] = STATE(3541), - [sym_unary_expression] = STATE(1140), - [sym_receive_expression] = STATE(1140), - [sym_binary_expression] = STATE(1140), - [sym_as_type_cast_expression] = STATE(1140), - [sym__max_group] = STATE(1140), - [sym_literal] = STATE(1146), - [sym_map_init_expression] = STATE(1199), - [sym_array_creation] = STATE(1140), - [sym_fixed_array_creation] = STATE(1140), - [sym_selector_expression] = STATE(1140), - [sym_index_expression] = STATE(1140), - [sym_slice_expression] = STATE(1140), - [sym_if_expression] = STATE(1199), - [sym_compile_time_if_expression] = STATE(1199), - [sym_is_expression] = STATE(1140), - [sym_in_expression] = STATE(1140), - [sym_enum_fetch] = STATE(1140), - [sym_match_expression] = STATE(1199), - [sym_select_expression] = STATE(1199), - [sym_lock_expression] = STATE(1199), - [sym_unsafe_expression] = STATE(1199), - [sym_sql_expression] = STATE(1199), - [sym_c_string_literal] = STATE(1147), - [sym_raw_string_literal] = STATE(1147), - [sym_interpreted_string_literal] = STATE(1147), - [sym_mutability_modifiers] = STATE(638), - [sym_plain_type] = STATE(4234), - [sym__plain_type_without_special] = STATE(2302), - [sym_anon_struct_type] = STATE(2303), - [sym_multi_return_type] = STATE(2302), - [sym_result_type] = STATE(2302), - [sym_option_type] = STATE(2302), - [sym_qualified_type] = STATE(3541), - [sym_fixed_array_type] = STATE(2303), - [sym_array_type] = STATE(2303), - [sym_pointer_type] = STATE(2303), - [sym_wrong_pointer_type] = STATE(2303), - [sym_map_type] = STATE(2303), - [sym_channel_type] = STATE(2303), - [sym_shared_type] = STATE(2303), - [sym_thread_type] = STATE(2303), - [sym_atomic_type] = STATE(2303), - [sym_generic_type] = STATE(2303), - [sym_function_type] = STATE(2303), - [sym_identifier] = ACTIONS(1071), + [sym__expression] = STATE(2796), + [sym__expression_without_blocks] = STATE(2347), + [sym__expression_with_blocks] = STATE(2347), + [sym_inc_expression] = STATE(2379), + [sym_dec_expression] = STATE(2379), + [sym_or_block_expression] = STATE(2379), + [sym_option_propagation_expression] = STATE(2379), + [sym_result_propagation_expression] = STATE(2379), + [sym_anon_struct_value_expression] = STATE(2378), + [sym_go_expression] = STATE(2379), + [sym_spawn_expression] = STATE(2379), + [sym_parenthesized_expression] = STATE(2379), + [sym_call_expression] = STATE(2379), + [sym_type_initializer] = STATE(2378), + [sym_function_literal] = STATE(2379), + [sym_reference_expression] = STATE(2377), + [sym_type_reference_expression] = STATE(3460), + [sym_unary_expression] = STATE(2379), + [sym_receive_expression] = STATE(2379), + [sym_binary_expression] = STATE(2379), + [sym_as_type_cast_expression] = STATE(2379), + [sym__max_group] = STATE(2379), + [sym_literal] = STATE(2392), + [sym_map_init_expression] = STATE(2378), + [sym_array_creation] = STATE(2379), + [sym_fixed_array_creation] = STATE(2379), + [sym_selector_expression] = STATE(2379), + [sym_index_expression] = STATE(2379), + [sym_slice_expression] = STATE(2379), + [sym_if_expression] = STATE(2378), + [sym_compile_time_if_expression] = STATE(2378), + [sym_is_expression] = STATE(2379), + [sym_in_expression] = STATE(2379), + [sym_enum_fetch] = STATE(2379), + [sym_match_expression] = STATE(2378), + [sym_select_expression] = STATE(2378), + [sym_lock_expression] = STATE(2378), + [sym_unsafe_expression] = STATE(2378), + [sym_sql_expression] = STATE(2378), + [sym_c_string_literal] = STATE(2401), + [sym_raw_string_literal] = STATE(2401), + [sym_interpreted_string_literal] = STATE(2401), + [sym_mutability_modifiers] = STATE(939), + [sym_plain_type] = STATE(4160), + [sym__plain_type_without_special] = STATE(2360), + [sym_anon_struct_type] = STATE(2362), + [sym_multi_return_type] = STATE(2360), + [sym_result_type] = STATE(2360), + [sym_option_type] = STATE(2360), + [sym_qualified_type] = STATE(3460), + [sym_fixed_array_type] = STATE(2362), + [sym_array_type] = STATE(2362), + [sym_pointer_type] = STATE(2362), + [sym_wrong_pointer_type] = STATE(2362), + [sym_map_type] = STATE(2362), + [sym_channel_type] = STATE(2362), + [sym_shared_type] = STATE(2362), + [sym_thread_type] = STATE(2362), + [sym_atomic_type] = STATE(2362), + [sym_generic_type] = STATE(2362), + [sym_function_type] = STATE(2362), + [sym_identifier] = ACTIONS(2477), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(631), - [anon_sym_LBRACE] = ACTIONS(633), - [anon_sym_LPAREN] = ACTIONS(637), - [anon_sym_fn] = ACTIONS(641), - [anon_sym_PLUS] = ACTIONS(643), - [anon_sym_DASH] = ACTIONS(643), - [anon_sym_STAR] = ACTIONS(645), - [anon_sym_struct] = ACTIONS(649), + [anon_sym_DOT] = ACTIONS(1430), + [anon_sym_LBRACE] = ACTIONS(1432), + [anon_sym_LPAREN] = ACTIONS(1434), + [anon_sym_fn] = ACTIONS(1436), + [anon_sym_PLUS] = ACTIONS(2271), + [anon_sym_DASH] = ACTIONS(2271), + [anon_sym_STAR] = ACTIONS(3354), + [anon_sym_struct] = ACTIONS(1442), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(655), - [anon_sym_go] = ACTIONS(657), - [anon_sym_spawn] = ACTIONS(659), - [anon_sym_json_DOTdecode] = ACTIONS(661), - [anon_sym_LBRACK2] = ACTIONS(663), - [anon_sym_TILDE] = ACTIONS(643), - [anon_sym_CARET] = ACTIONS(643), - [anon_sym_AMP] = ACTIONS(665), - [anon_sym_LT_DASH] = ACTIONS(667), - [sym_none] = ACTIONS(669), - [sym_true] = ACTIONS(669), - [sym_false] = ACTIONS(669), - [sym_nil] = ACTIONS(669), - [anon_sym_if] = ACTIONS(671), - [anon_sym_DOLLARif] = ACTIONS(673), - [anon_sym_match] = ACTIONS(675), - [anon_sym_select] = ACTIONS(677), - [anon_sym_lock] = ACTIONS(679), - [anon_sym_rlock] = ACTIONS(679), - [anon_sym_unsafe] = ACTIONS(681), - [anon_sym_sql] = ACTIONS(683), - [sym_int_literal] = ACTIONS(669), - [sym_float_literal] = ACTIONS(685), - [sym_rune_literal] = ACTIONS(685), - [sym_pseudo_compile_time_identifier] = ACTIONS(687), + [anon_sym_BANG] = ACTIONS(3356), + [anon_sym_go] = ACTIONS(2277), + [anon_sym_spawn] = ACTIONS(2279), + [anon_sym_json_DOTdecode] = ACTIONS(1450), + [anon_sym_LBRACK2] = ACTIONS(1452), + [anon_sym_TILDE] = ACTIONS(2271), + [anon_sym_CARET] = ACTIONS(2271), + [anon_sym_AMP] = ACTIONS(3358), + [anon_sym_LT_DASH] = ACTIONS(2283), + [sym_none] = ACTIONS(1458), + [sym_true] = ACTIONS(1458), + [sym_false] = ACTIONS(1458), + [sym_nil] = ACTIONS(1458), + [anon_sym_if] = ACTIONS(1833), + [anon_sym_DOLLARif] = ACTIONS(1462), + [anon_sym_match] = ACTIONS(1464), + [anon_sym_select] = ACTIONS(1466), + [anon_sym_lock] = ACTIONS(1468), + [anon_sym_rlock] = ACTIONS(1468), + [anon_sym_unsafe] = ACTIONS(1839), + [anon_sym_sql] = ACTIONS(1472), + [sym_int_literal] = ACTIONS(1458), + [sym_float_literal] = ACTIONS(1474), + [sym_rune_literal] = ACTIONS(1474), + [sym_pseudo_compile_time_identifier] = ACTIONS(1476), [anon_sym_shared] = ACTIONS(83), [anon_sym_map_LBRACK] = ACTIONS(85), [anon_sym_chan] = ACTIONS(87), [anon_sym_thread] = ACTIONS(89), [anon_sym_atomic] = ACTIONS(91), - [sym___double_quote] = ACTIONS(689), - [sym___single_quote] = ACTIONS(691), - [sym___c_double_quote] = ACTIONS(693), - [sym___c_single_quote] = ACTIONS(695), - [sym___r_double_quote] = ACTIONS(697), - [sym___r_single_quote] = ACTIONS(699), + [sym___double_quote] = ACTIONS(1480), + [sym___single_quote] = ACTIONS(1482), + [sym___c_double_quote] = ACTIONS(1484), + [sym___c_single_quote] = ACTIONS(1486), + [sym___r_double_quote] = ACTIONS(1488), + [sym___r_single_quote] = ACTIONS(1490), }, [918] = { [sym_line_comment] = STATE(918), [sym_block_comment] = STATE(918), - [sym__expression] = STATE(1772), - [sym__expression_without_blocks] = STATE(2044), - [sym__expression_with_blocks] = STATE(2044), - [sym_inc_expression] = STATE(2045), - [sym_dec_expression] = STATE(2045), - [sym_or_block_expression] = STATE(2045), - [sym_option_propagation_expression] = STATE(2045), - [sym_result_propagation_expression] = STATE(2045), - [sym_anon_struct_value_expression] = STATE(2046), - [sym_go_expression] = STATE(2045), - [sym_spawn_expression] = STATE(2045), - [sym_parenthesized_expression] = STATE(2045), - [sym_call_expression] = STATE(2045), - [sym_type_initializer] = STATE(2046), - [sym_function_literal] = STATE(2045), - [sym_reference_expression] = STATE(1912), - [sym_type_reference_expression] = STATE(3541), - [sym_unary_expression] = STATE(2045), - [sym_receive_expression] = STATE(2045), - [sym_binary_expression] = STATE(2045), - [sym_as_type_cast_expression] = STATE(2045), - [sym__max_group] = STATE(2045), - [sym_literal] = STATE(2043), - [sym_map_init_expression] = STATE(2046), - [sym_array_creation] = STATE(2045), - [sym_fixed_array_creation] = STATE(2045), - [sym_selector_expression] = STATE(2045), - [sym_index_expression] = STATE(2045), - [sym_slice_expression] = STATE(2045), - [sym_if_expression] = STATE(2046), - [sym_compile_time_if_expression] = STATE(2046), - [sym_is_expression] = STATE(2045), - [sym_in_expression] = STATE(2045), - [sym_enum_fetch] = STATE(2045), - [sym_match_expression] = STATE(2046), - [sym_select_expression] = STATE(2046), - [sym_lock_expression] = STATE(2046), - [sym_unsafe_expression] = STATE(2046), - [sym_sql_expression] = STATE(2046), - [sym_c_string_literal] = STATE(2041), - [sym_raw_string_literal] = STATE(2041), - [sym_interpreted_string_literal] = STATE(2041), - [sym_mutability_modifiers] = STATE(689), - [sym_plain_type] = STATE(4052), - [sym__plain_type_without_special] = STATE(2302), - [sym_anon_struct_type] = STATE(2303), - [sym_multi_return_type] = STATE(2302), - [sym_result_type] = STATE(2302), - [sym_option_type] = STATE(2302), - [sym_qualified_type] = STATE(3541), - [sym_fixed_array_type] = STATE(2303), - [sym_array_type] = STATE(2303), - [sym_pointer_type] = STATE(2303), - [sym_wrong_pointer_type] = STATE(2303), - [sym_map_type] = STATE(2303), - [sym_channel_type] = STATE(2303), - [sym_shared_type] = STATE(2303), - [sym_thread_type] = STATE(2303), - [sym_atomic_type] = STATE(2303), - [sym_generic_type] = STATE(2303), - [sym_function_type] = STATE(2303), - [sym_identifier] = ACTIONS(1641), + [sym__expression] = STATE(2124), + [sym__expression_without_blocks] = STATE(2162), + [sym__expression_with_blocks] = STATE(2162), + [sym_inc_expression] = STATE(2161), + [sym_dec_expression] = STATE(2161), + [sym_or_block_expression] = STATE(2161), + [sym_option_propagation_expression] = STATE(2161), + [sym_result_propagation_expression] = STATE(2161), + [sym_anon_struct_value_expression] = STATE(2160), + [sym_go_expression] = STATE(2161), + [sym_spawn_expression] = STATE(2161), + [sym_parenthesized_expression] = STATE(2161), + [sym_call_expression] = STATE(2161), + [sym_type_initializer] = STATE(2160), + [sym_function_literal] = STATE(2161), + [sym_reference_expression] = STATE(2159), + [sym_type_reference_expression] = STATE(3460), + [sym_unary_expression] = STATE(2161), + [sym_receive_expression] = STATE(2161), + [sym_binary_expression] = STATE(2161), + [sym_as_type_cast_expression] = STATE(2161), + [sym__max_group] = STATE(2161), + [sym_literal] = STATE(2164), + [sym_map_init_expression] = STATE(2160), + [sym_array_creation] = STATE(2161), + [sym_fixed_array_creation] = STATE(2161), + [sym_selector_expression] = STATE(2161), + [sym_index_expression] = STATE(2161), + [sym_slice_expression] = STATE(2161), + [sym_if_expression] = STATE(2160), + [sym_compile_time_if_expression] = STATE(2160), + [sym_is_expression] = STATE(2161), + [sym_in_expression] = STATE(2161), + [sym_enum_fetch] = STATE(2161), + [sym_match_expression] = STATE(2160), + [sym_select_expression] = STATE(2160), + [sym_lock_expression] = STATE(2160), + [sym_unsafe_expression] = STATE(2160), + [sym_sql_expression] = STATE(2160), + [sym_c_string_literal] = STATE(2166), + [sym_raw_string_literal] = STATE(2166), + [sym_interpreted_string_literal] = STATE(2166), + [sym_mutability_modifiers] = STATE(575), + [sym_plain_type] = STATE(4173), + [sym__plain_type_without_special] = STATE(2360), + [sym_anon_struct_type] = STATE(2362), + [sym_multi_return_type] = STATE(2360), + [sym_result_type] = STATE(2360), + [sym_option_type] = STATE(2360), + [sym_qualified_type] = STATE(3460), + [sym_fixed_array_type] = STATE(2362), + [sym_array_type] = STATE(2362), + [sym_pointer_type] = STATE(2362), + [sym_wrong_pointer_type] = STATE(2362), + [sym_map_type] = STATE(2362), + [sym_channel_type] = STATE(2362), + [sym_shared_type] = STATE(2362), + [sym_thread_type] = STATE(2362), + [sym_atomic_type] = STATE(2362), + [sym_generic_type] = STATE(2362), + [sym_function_type] = STATE(2362), + [sym_identifier] = ACTIONS(3292), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(811), - [anon_sym_LBRACE] = ACTIONS(3144), - [anon_sym_LPAREN] = ACTIONS(815), - [anon_sym_fn] = ACTIONS(817), - [anon_sym_PLUS] = ACTIONS(819), - [anon_sym_DASH] = ACTIONS(819), - [anon_sym_STAR] = ACTIONS(821), - [anon_sym_struct] = ACTIONS(823), + [anon_sym_DOT] = ACTIONS(3294), + [anon_sym_LBRACE] = ACTIONS(3296), + [anon_sym_LPAREN] = ACTIONS(3298), + [anon_sym_fn] = ACTIONS(3300), + [anon_sym_PLUS] = ACTIONS(3404), + [anon_sym_DASH] = ACTIONS(3404), + [anon_sym_STAR] = ACTIONS(3406), + [anon_sym_struct] = ACTIONS(3306), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(827), - [anon_sym_go] = ACTIONS(829), - [anon_sym_spawn] = ACTIONS(831), - [anon_sym_json_DOTdecode] = ACTIONS(833), - [anon_sym_LBRACK2] = ACTIONS(835), - [anon_sym_TILDE] = ACTIONS(819), - [anon_sym_CARET] = ACTIONS(819), - [anon_sym_AMP] = ACTIONS(837), - [anon_sym_LT_DASH] = ACTIONS(839), - [sym_none] = ACTIONS(841), - [sym_true] = ACTIONS(841), - [sym_false] = ACTIONS(841), - [sym_nil] = ACTIONS(841), - [anon_sym_if] = ACTIONS(843), - [anon_sym_DOLLARif] = ACTIONS(845), - [anon_sym_match] = ACTIONS(847), - [anon_sym_select] = ACTIONS(849), - [anon_sym_lock] = ACTIONS(851), - [anon_sym_rlock] = ACTIONS(851), - [anon_sym_unsafe] = ACTIONS(853), - [anon_sym_sql] = ACTIONS(855), - [sym_int_literal] = ACTIONS(841), - [sym_float_literal] = ACTIONS(857), - [sym_rune_literal] = ACTIONS(857), - [sym_pseudo_compile_time_identifier] = ACTIONS(859), + [anon_sym_BANG] = ACTIONS(3408), + [anon_sym_go] = ACTIONS(3410), + [anon_sym_spawn] = ACTIONS(3412), + [anon_sym_json_DOTdecode] = ACTIONS(3314), + [anon_sym_LBRACK2] = ACTIONS(3316), + [anon_sym_TILDE] = ACTIONS(3404), + [anon_sym_CARET] = ACTIONS(3404), + [anon_sym_AMP] = ACTIONS(3414), + [anon_sym_LT_DASH] = ACTIONS(3416), + [sym_none] = ACTIONS(3322), + [sym_true] = ACTIONS(3322), + [sym_false] = ACTIONS(3322), + [sym_nil] = ACTIONS(3322), + [anon_sym_if] = ACTIONS(3324), + [anon_sym_DOLLARif] = ACTIONS(3326), + [anon_sym_match] = ACTIONS(3328), + [anon_sym_select] = ACTIONS(3418), + [anon_sym_lock] = ACTIONS(3420), + [anon_sym_rlock] = ACTIONS(3420), + [anon_sym_unsafe] = ACTIONS(3334), + [anon_sym_sql] = ACTIONS(3336), + [sym_int_literal] = ACTIONS(3322), + [sym_float_literal] = ACTIONS(3338), + [sym_rune_literal] = ACTIONS(3338), + [sym_pseudo_compile_time_identifier] = ACTIONS(3340), [anon_sym_shared] = ACTIONS(83), [anon_sym_map_LBRACK] = ACTIONS(85), [anon_sym_chan] = ACTIONS(87), [anon_sym_thread] = ACTIONS(89), [anon_sym_atomic] = ACTIONS(91), - [sym___double_quote] = ACTIONS(861), - [sym___single_quote] = ACTIONS(863), - [sym___c_double_quote] = ACTIONS(865), - [sym___c_single_quote] = ACTIONS(867), - [sym___r_double_quote] = ACTIONS(869), - [sym___r_single_quote] = ACTIONS(871), + [sym___double_quote] = ACTIONS(3342), + [sym___single_quote] = ACTIONS(3344), + [sym___c_double_quote] = ACTIONS(3346), + [sym___c_single_quote] = ACTIONS(3348), + [sym___r_double_quote] = ACTIONS(3350), + [sym___r_single_quote] = ACTIONS(3352), }, [919] = { [sym_line_comment] = STATE(919), [sym_block_comment] = STATE(919), - [sym__expression] = STATE(1769), - [sym__expression_without_blocks] = STATE(2044), - [sym__expression_with_blocks] = STATE(2044), - [sym_inc_expression] = STATE(2045), - [sym_dec_expression] = STATE(2045), - [sym_or_block_expression] = STATE(2045), - [sym_option_propagation_expression] = STATE(2045), - [sym_result_propagation_expression] = STATE(2045), - [sym_anon_struct_value_expression] = STATE(2046), - [sym_go_expression] = STATE(2045), - [sym_spawn_expression] = STATE(2045), - [sym_parenthesized_expression] = STATE(2045), - [sym_call_expression] = STATE(2045), - [sym_type_initializer] = STATE(2046), - [sym_function_literal] = STATE(2045), - [sym_reference_expression] = STATE(1912), - [sym_type_reference_expression] = STATE(3541), - [sym_unary_expression] = STATE(2045), - [sym_receive_expression] = STATE(2045), - [sym_binary_expression] = STATE(2045), - [sym_as_type_cast_expression] = STATE(2045), - [sym__max_group] = STATE(2045), - [sym_literal] = STATE(2043), - [sym_map_init_expression] = STATE(2046), - [sym_array_creation] = STATE(2045), - [sym_fixed_array_creation] = STATE(2045), - [sym_selector_expression] = STATE(2045), - [sym_index_expression] = STATE(2045), - [sym_slice_expression] = STATE(2045), - [sym_if_expression] = STATE(2046), - [sym_compile_time_if_expression] = STATE(2046), - [sym_is_expression] = STATE(2045), - [sym_in_expression] = STATE(2045), - [sym_enum_fetch] = STATE(2045), - [sym_match_expression] = STATE(2046), - [sym_select_expression] = STATE(2046), - [sym_lock_expression] = STATE(2046), - [sym_unsafe_expression] = STATE(2046), - [sym_sql_expression] = STATE(2046), - [sym_c_string_literal] = STATE(2041), - [sym_raw_string_literal] = STATE(2041), - [sym_interpreted_string_literal] = STATE(2041), - [sym_mutability_modifiers] = STATE(689), - [sym_plain_type] = STATE(4052), - [sym__plain_type_without_special] = STATE(2302), - [sym_anon_struct_type] = STATE(2303), - [sym_multi_return_type] = STATE(2302), - [sym_result_type] = STATE(2302), - [sym_option_type] = STATE(2302), - [sym_qualified_type] = STATE(3541), - [sym_fixed_array_type] = STATE(2303), - [sym_array_type] = STATE(2303), - [sym_pointer_type] = STATE(2303), - [sym_wrong_pointer_type] = STATE(2303), - [sym_map_type] = STATE(2303), - [sym_channel_type] = STATE(2303), - [sym_shared_type] = STATE(2303), - [sym_thread_type] = STATE(2303), - [sym_atomic_type] = STATE(2303), - [sym_generic_type] = STATE(2303), - [sym_function_type] = STATE(2303), - [sym_identifier] = ACTIONS(1641), + [sym__expression] = STATE(2267), + [sym__expression_without_blocks] = STATE(2347), + [sym__expression_with_blocks] = STATE(2347), + [sym_inc_expression] = STATE(2379), + [sym_dec_expression] = STATE(2379), + [sym_or_block_expression] = STATE(2379), + [sym_option_propagation_expression] = STATE(2379), + [sym_result_propagation_expression] = STATE(2379), + [sym_anon_struct_value_expression] = STATE(2378), + [sym_go_expression] = STATE(2379), + [sym_spawn_expression] = STATE(2379), + [sym_parenthesized_expression] = STATE(2379), + [sym_call_expression] = STATE(2379), + [sym_type_initializer] = STATE(2378), + [sym_function_literal] = STATE(2379), + [sym_reference_expression] = STATE(2377), + [sym_type_reference_expression] = STATE(3460), + [sym_unary_expression] = STATE(2379), + [sym_receive_expression] = STATE(2379), + [sym_binary_expression] = STATE(2379), + [sym_as_type_cast_expression] = STATE(2379), + [sym__max_group] = STATE(2379), + [sym_literal] = STATE(2392), + [sym_map_init_expression] = STATE(2378), + [sym_array_creation] = STATE(2379), + [sym_fixed_array_creation] = STATE(2379), + [sym_selector_expression] = STATE(2379), + [sym_index_expression] = STATE(2379), + [sym_slice_expression] = STATE(2379), + [sym_if_expression] = STATE(2378), + [sym_compile_time_if_expression] = STATE(2378), + [sym_is_expression] = STATE(2379), + [sym_in_expression] = STATE(2379), + [sym_enum_fetch] = STATE(2379), + [sym_match_expression] = STATE(2378), + [sym_select_expression] = STATE(2378), + [sym_lock_expression] = STATE(2378), + [sym_unsafe_expression] = STATE(2378), + [sym_sql_expression] = STATE(2378), + [sym_c_string_literal] = STATE(2401), + [sym_raw_string_literal] = STATE(2401), + [sym_interpreted_string_literal] = STATE(2401), + [sym_mutability_modifiers] = STATE(939), + [sym_plain_type] = STATE(3557), + [sym__plain_type_without_special] = STATE(2360), + [sym_anon_struct_type] = STATE(2362), + [sym_multi_return_type] = STATE(2360), + [sym_result_type] = STATE(2360), + [sym_option_type] = STATE(2360), + [sym_qualified_type] = STATE(3460), + [sym_fixed_array_type] = STATE(2362), + [sym_array_type] = STATE(2362), + [sym_pointer_type] = STATE(2362), + [sym_wrong_pointer_type] = STATE(2362), + [sym_map_type] = STATE(2362), + [sym_channel_type] = STATE(2362), + [sym_shared_type] = STATE(2362), + [sym_thread_type] = STATE(2362), + [sym_atomic_type] = STATE(2362), + [sym_generic_type] = STATE(2362), + [sym_function_type] = STATE(2362), + [sym_identifier] = ACTIONS(1428), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(811), - [anon_sym_LBRACE] = ACTIONS(3144), - [anon_sym_LPAREN] = ACTIONS(815), - [anon_sym_fn] = ACTIONS(817), - [anon_sym_PLUS] = ACTIONS(819), - [anon_sym_DASH] = ACTIONS(819), - [anon_sym_STAR] = ACTIONS(821), - [anon_sym_struct] = ACTIONS(823), + [anon_sym_DOT] = ACTIONS(1430), + [anon_sym_LBRACE] = ACTIONS(1432), + [anon_sym_LPAREN] = ACTIONS(1434), + [anon_sym_fn] = ACTIONS(1436), + [anon_sym_PLUS] = ACTIONS(2271), + [anon_sym_DASH] = ACTIONS(2271), + [anon_sym_STAR] = ACTIONS(2273), + [anon_sym_struct] = ACTIONS(1442), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(827), - [anon_sym_go] = ACTIONS(829), - [anon_sym_spawn] = ACTIONS(831), - [anon_sym_json_DOTdecode] = ACTIONS(833), - [anon_sym_LBRACK2] = ACTIONS(835), - [anon_sym_TILDE] = ACTIONS(819), - [anon_sym_CARET] = ACTIONS(819), - [anon_sym_AMP] = ACTIONS(837), - [anon_sym_LT_DASH] = ACTIONS(839), - [sym_none] = ACTIONS(841), - [sym_true] = ACTIONS(841), - [sym_false] = ACTIONS(841), - [sym_nil] = ACTIONS(841), - [anon_sym_if] = ACTIONS(843), - [anon_sym_DOLLARif] = ACTIONS(845), - [anon_sym_match] = ACTIONS(847), - [anon_sym_select] = ACTIONS(849), - [anon_sym_lock] = ACTIONS(851), - [anon_sym_rlock] = ACTIONS(851), - [anon_sym_unsafe] = ACTIONS(853), - [anon_sym_sql] = ACTIONS(855), - [sym_int_literal] = ACTIONS(841), - [sym_float_literal] = ACTIONS(857), - [sym_rune_literal] = ACTIONS(857), - [sym_pseudo_compile_time_identifier] = ACTIONS(859), + [anon_sym_BANG] = ACTIONS(2275), + [anon_sym_go] = ACTIONS(2277), + [anon_sym_spawn] = ACTIONS(2279), + [anon_sym_json_DOTdecode] = ACTIONS(1450), + [anon_sym_LBRACK2] = ACTIONS(1452), + [anon_sym_TILDE] = ACTIONS(2271), + [anon_sym_CARET] = ACTIONS(2271), + [anon_sym_AMP] = ACTIONS(2281), + [anon_sym_LT_DASH] = ACTIONS(2283), + [sym_none] = ACTIONS(1458), + [sym_true] = ACTIONS(1458), + [sym_false] = ACTIONS(1458), + [sym_nil] = ACTIONS(1458), + [anon_sym_if] = ACTIONS(1833), + [anon_sym_DOLLARif] = ACTIONS(1462), + [anon_sym_match] = ACTIONS(1464), + [anon_sym_select] = ACTIONS(1466), + [anon_sym_lock] = ACTIONS(1468), + [anon_sym_rlock] = ACTIONS(1468), + [anon_sym_unsafe] = ACTIONS(1839), + [anon_sym_sql] = ACTIONS(1472), + [sym_int_literal] = ACTIONS(1458), + [sym_float_literal] = ACTIONS(1474), + [sym_rune_literal] = ACTIONS(1474), + [sym_pseudo_compile_time_identifier] = ACTIONS(1476), [anon_sym_shared] = ACTIONS(83), [anon_sym_map_LBRACK] = ACTIONS(85), [anon_sym_chan] = ACTIONS(87), [anon_sym_thread] = ACTIONS(89), [anon_sym_atomic] = ACTIONS(91), - [sym___double_quote] = ACTIONS(861), - [sym___single_quote] = ACTIONS(863), - [sym___c_double_quote] = ACTIONS(865), - [sym___c_single_quote] = ACTIONS(867), - [sym___r_double_quote] = ACTIONS(869), - [sym___r_single_quote] = ACTIONS(871), + [sym___double_quote] = ACTIONS(1480), + [sym___single_quote] = ACTIONS(1482), + [sym___c_double_quote] = ACTIONS(1484), + [sym___c_single_quote] = ACTIONS(1486), + [sym___r_double_quote] = ACTIONS(1488), + [sym___r_single_quote] = ACTIONS(1490), }, [920] = { [sym_line_comment] = STATE(920), [sym_block_comment] = STATE(920), - [sym__expression] = STATE(1767), - [sym__expression_without_blocks] = STATE(2044), - [sym__expression_with_blocks] = STATE(2044), - [sym_inc_expression] = STATE(2045), - [sym_dec_expression] = STATE(2045), - [sym_or_block_expression] = STATE(2045), - [sym_option_propagation_expression] = STATE(2045), - [sym_result_propagation_expression] = STATE(2045), - [sym_anon_struct_value_expression] = STATE(2046), - [sym_go_expression] = STATE(2045), - [sym_spawn_expression] = STATE(2045), - [sym_parenthesized_expression] = STATE(2045), - [sym_call_expression] = STATE(2045), - [sym_type_initializer] = STATE(2046), - [sym_function_literal] = STATE(2045), - [sym_reference_expression] = STATE(1912), - [sym_type_reference_expression] = STATE(3541), - [sym_unary_expression] = STATE(2045), - [sym_receive_expression] = STATE(2045), - [sym_binary_expression] = STATE(2045), - [sym_as_type_cast_expression] = STATE(2045), - [sym__max_group] = STATE(2045), - [sym_literal] = STATE(2043), - [sym_map_init_expression] = STATE(2046), - [sym_array_creation] = STATE(2045), - [sym_fixed_array_creation] = STATE(2045), - [sym_selector_expression] = STATE(2045), - [sym_index_expression] = STATE(2045), - [sym_slice_expression] = STATE(2045), - [sym_if_expression] = STATE(2046), - [sym_compile_time_if_expression] = STATE(2046), - [sym_is_expression] = STATE(2045), - [sym_in_expression] = STATE(2045), - [sym_enum_fetch] = STATE(2045), - [sym_match_expression] = STATE(2046), - [sym_select_expression] = STATE(2046), - [sym_lock_expression] = STATE(2046), - [sym_unsafe_expression] = STATE(2046), - [sym_sql_expression] = STATE(2046), - [sym_c_string_literal] = STATE(2041), - [sym_raw_string_literal] = STATE(2041), - [sym_interpreted_string_literal] = STATE(2041), - [sym_mutability_modifiers] = STATE(689), - [sym_plain_type] = STATE(4052), - [sym__plain_type_without_special] = STATE(2302), - [sym_anon_struct_type] = STATE(2303), - [sym_multi_return_type] = STATE(2302), - [sym_result_type] = STATE(2302), - [sym_option_type] = STATE(2302), - [sym_qualified_type] = STATE(3541), - [sym_fixed_array_type] = STATE(2303), - [sym_array_type] = STATE(2303), - [sym_pointer_type] = STATE(2303), - [sym_wrong_pointer_type] = STATE(2303), - [sym_map_type] = STATE(2303), - [sym_channel_type] = STATE(2303), - [sym_shared_type] = STATE(2303), - [sym_thread_type] = STATE(2303), - [sym_atomic_type] = STATE(2303), - [sym_generic_type] = STATE(2303), - [sym_function_type] = STATE(2303), - [sym_identifier] = ACTIONS(1641), + [sym__expression] = STATE(1118), + [sym__expression_without_blocks] = STATE(1210), + [sym__expression_with_blocks] = STATE(1210), + [sym_inc_expression] = STATE(1211), + [sym_dec_expression] = STATE(1211), + [sym_or_block_expression] = STATE(1211), + [sym_option_propagation_expression] = STATE(1211), + [sym_result_propagation_expression] = STATE(1211), + [sym_anon_struct_value_expression] = STATE(1212), + [sym_go_expression] = STATE(1211), + [sym_spawn_expression] = STATE(1211), + [sym_parenthesized_expression] = STATE(1211), + [sym_call_expression] = STATE(1211), + [sym_type_initializer] = STATE(1212), + [sym_function_literal] = STATE(1211), + [sym_reference_expression] = STATE(1233), + [sym_type_reference_expression] = STATE(3460), + [sym_unary_expression] = STATE(1211), + [sym_receive_expression] = STATE(1211), + [sym_binary_expression] = STATE(1211), + [sym_as_type_cast_expression] = STATE(1211), + [sym__max_group] = STATE(1211), + [sym_literal] = STATE(1209), + [sym_map_init_expression] = STATE(1212), + [sym_array_creation] = STATE(1211), + [sym_fixed_array_creation] = STATE(1211), + [sym_selector_expression] = STATE(1211), + [sym_index_expression] = STATE(1211), + [sym_slice_expression] = STATE(1211), + [sym_if_expression] = STATE(1212), + [sym_compile_time_if_expression] = STATE(1212), + [sym_is_expression] = STATE(1211), + [sym_in_expression] = STATE(1211), + [sym_enum_fetch] = STATE(1211), + [sym_match_expression] = STATE(1212), + [sym_select_expression] = STATE(1212), + [sym_lock_expression] = STATE(1212), + [sym_unsafe_expression] = STATE(1212), + [sym_sql_expression] = STATE(1212), + [sym_c_string_literal] = STATE(1201), + [sym_raw_string_literal] = STATE(1201), + [sym_interpreted_string_literal] = STATE(1201), + [sym_mutability_modifiers] = STATE(589), + [sym_plain_type] = STATE(4123), + [sym__plain_type_without_special] = STATE(2360), + [sym_anon_struct_type] = STATE(2362), + [sym_multi_return_type] = STATE(2360), + [sym_result_type] = STATE(2360), + [sym_option_type] = STATE(2360), + [sym_qualified_type] = STATE(3460), + [sym_fixed_array_type] = STATE(2362), + [sym_array_type] = STATE(2362), + [sym_pointer_type] = STATE(2362), + [sym_wrong_pointer_type] = STATE(2362), + [sym_map_type] = STATE(2362), + [sym_channel_type] = STATE(2362), + [sym_shared_type] = STATE(2362), + [sym_thread_type] = STATE(2362), + [sym_atomic_type] = STATE(2362), + [sym_generic_type] = STATE(2362), + [sym_function_type] = STATE(2362), + [sym_identifier] = ACTIONS(1139), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(811), - [anon_sym_LBRACE] = ACTIONS(3144), - [anon_sym_LPAREN] = ACTIONS(815), - [anon_sym_fn] = ACTIONS(817), - [anon_sym_PLUS] = ACTIONS(819), - [anon_sym_DASH] = ACTIONS(819), - [anon_sym_STAR] = ACTIONS(821), - [anon_sym_struct] = ACTIONS(823), + [anon_sym_DOT] = ACTIONS(631), + [anon_sym_LBRACE] = ACTIONS(633), + [anon_sym_LPAREN] = ACTIONS(637), + [anon_sym_fn] = ACTIONS(641), + [anon_sym_PLUS] = ACTIONS(643), + [anon_sym_DASH] = ACTIONS(643), + [anon_sym_STAR] = ACTIONS(645), + [anon_sym_struct] = ACTIONS(649), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(827), - [anon_sym_go] = ACTIONS(829), - [anon_sym_spawn] = ACTIONS(831), - [anon_sym_json_DOTdecode] = ACTIONS(833), - [anon_sym_LBRACK2] = ACTIONS(835), - [anon_sym_TILDE] = ACTIONS(819), - [anon_sym_CARET] = ACTIONS(819), - [anon_sym_AMP] = ACTIONS(837), - [anon_sym_LT_DASH] = ACTIONS(839), - [sym_none] = ACTIONS(841), - [sym_true] = ACTIONS(841), - [sym_false] = ACTIONS(841), - [sym_nil] = ACTIONS(841), - [anon_sym_if] = ACTIONS(843), - [anon_sym_DOLLARif] = ACTIONS(845), - [anon_sym_match] = ACTIONS(847), - [anon_sym_select] = ACTIONS(849), - [anon_sym_lock] = ACTIONS(851), - [anon_sym_rlock] = ACTIONS(851), - [anon_sym_unsafe] = ACTIONS(853), - [anon_sym_sql] = ACTIONS(855), - [sym_int_literal] = ACTIONS(841), - [sym_float_literal] = ACTIONS(857), - [sym_rune_literal] = ACTIONS(857), - [sym_pseudo_compile_time_identifier] = ACTIONS(859), + [anon_sym_BANG] = ACTIONS(655), + [anon_sym_go] = ACTIONS(657), + [anon_sym_spawn] = ACTIONS(659), + [anon_sym_json_DOTdecode] = ACTIONS(661), + [anon_sym_LBRACK2] = ACTIONS(663), + [anon_sym_TILDE] = ACTIONS(643), + [anon_sym_CARET] = ACTIONS(643), + [anon_sym_AMP] = ACTIONS(665), + [anon_sym_LT_DASH] = ACTIONS(667), + [sym_none] = ACTIONS(669), + [sym_true] = ACTIONS(669), + [sym_false] = ACTIONS(669), + [sym_nil] = ACTIONS(669), + [anon_sym_if] = ACTIONS(671), + [anon_sym_DOLLARif] = ACTIONS(673), + [anon_sym_match] = ACTIONS(675), + [anon_sym_select] = ACTIONS(677), + [anon_sym_lock] = ACTIONS(679), + [anon_sym_rlock] = ACTIONS(679), + [anon_sym_unsafe] = ACTIONS(681), + [anon_sym_sql] = ACTIONS(683), + [sym_int_literal] = ACTIONS(669), + [sym_float_literal] = ACTIONS(685), + [sym_rune_literal] = ACTIONS(685), + [sym_pseudo_compile_time_identifier] = ACTIONS(687), [anon_sym_shared] = ACTIONS(83), [anon_sym_map_LBRACK] = ACTIONS(85), [anon_sym_chan] = ACTIONS(87), [anon_sym_thread] = ACTIONS(89), [anon_sym_atomic] = ACTIONS(91), - [sym___double_quote] = ACTIONS(861), - [sym___single_quote] = ACTIONS(863), - [sym___c_double_quote] = ACTIONS(865), - [sym___c_single_quote] = ACTIONS(867), - [sym___r_double_quote] = ACTIONS(869), - [sym___r_single_quote] = ACTIONS(871), + [sym___double_quote] = ACTIONS(689), + [sym___single_quote] = ACTIONS(691), + [sym___c_double_quote] = ACTIONS(693), + [sym___c_single_quote] = ACTIONS(695), + [sym___r_double_quote] = ACTIONS(697), + [sym___r_single_quote] = ACTIONS(699), }, [921] = { [sym_line_comment] = STATE(921), [sym_block_comment] = STATE(921), - [sym__expression] = STATE(1777), - [sym__expression_without_blocks] = STATE(2005), - [sym__expression_with_blocks] = STATE(2005), - [sym_inc_expression] = STATE(2032), - [sym_dec_expression] = STATE(2032), - [sym_or_block_expression] = STATE(2032), - [sym_option_propagation_expression] = STATE(2032), - [sym_result_propagation_expression] = STATE(2032), - [sym_anon_struct_value_expression] = STATE(2004), - [sym_go_expression] = STATE(2032), - [sym_spawn_expression] = STATE(2032), - [sym_parenthesized_expression] = STATE(2032), - [sym_call_expression] = STATE(2032), - [sym_type_initializer] = STATE(2004), - [sym_function_literal] = STATE(2032), - [sym_reference_expression] = STATE(1914), - [sym_type_reference_expression] = STATE(3541), - [sym_unary_expression] = STATE(2032), - [sym_receive_expression] = STATE(2032), - [sym_binary_expression] = STATE(2032), - [sym_as_type_cast_expression] = STATE(2032), - [sym__max_group] = STATE(2032), - [sym_literal] = STATE(2027), - [sym_map_init_expression] = STATE(2004), - [sym_array_creation] = STATE(2032), - [sym_fixed_array_creation] = STATE(2032), - [sym_selector_expression] = STATE(2032), - [sym_index_expression] = STATE(2032), - [sym_slice_expression] = STATE(2032), - [sym_if_expression] = STATE(2004), - [sym_compile_time_if_expression] = STATE(2004), - [sym_is_expression] = STATE(2032), - [sym_in_expression] = STATE(2032), - [sym_enum_fetch] = STATE(2032), - [sym_match_expression] = STATE(2004), - [sym_select_expression] = STATE(2004), - [sym_lock_expression] = STATE(2004), - [sym_unsafe_expression] = STATE(2004), - [sym_sql_expression] = STATE(2004), - [sym_c_string_literal] = STATE(2026), - [sym_raw_string_literal] = STATE(2026), - [sym_interpreted_string_literal] = STATE(2026), - [sym_mutability_modifiers] = STATE(562), - [sym_plain_type] = STATE(4191), - [sym__plain_type_without_special] = STATE(2302), - [sym_anon_struct_type] = STATE(2303), - [sym_multi_return_type] = STATE(2302), - [sym_result_type] = STATE(2302), - [sym_option_type] = STATE(2302), - [sym_qualified_type] = STATE(3541), - [sym_fixed_array_type] = STATE(2303), - [sym_array_type] = STATE(2303), - [sym_pointer_type] = STATE(2303), - [sym_wrong_pointer_type] = STATE(2303), - [sym_map_type] = STATE(2303), - [sym_channel_type] = STATE(2303), - [sym_shared_type] = STATE(2303), - [sym_thread_type] = STATE(2303), - [sym_atomic_type] = STATE(2303), - [sym_generic_type] = STATE(2303), - [sym_function_type] = STATE(2303), - [sym_identifier] = ACTIONS(3266), + [sym__expression] = STATE(2460), + [sym__expression_without_blocks] = STATE(2638), + [sym__expression_with_blocks] = STATE(2638), + [sym_inc_expression] = STATE(2765), + [sym_dec_expression] = STATE(2765), + [sym_or_block_expression] = STATE(2765), + [sym_option_propagation_expression] = STATE(2765), + [sym_result_propagation_expression] = STATE(2765), + [sym_anon_struct_value_expression] = STATE(2637), + [sym_go_expression] = STATE(2765), + [sym_spawn_expression] = STATE(2765), + [sym_parenthesized_expression] = STATE(2765), + [sym_call_expression] = STATE(2765), + [sym_type_initializer] = STATE(2637), + [sym_function_literal] = STATE(2765), + [sym_reference_expression] = STATE(2764), + [sym_type_reference_expression] = STATE(3460), + [sym_unary_expression] = STATE(2765), + [sym_receive_expression] = STATE(2765), + [sym_binary_expression] = STATE(2765), + [sym_as_type_cast_expression] = STATE(2765), + [sym__max_group] = STATE(2765), + [sym_literal] = STATE(2771), + [sym_map_init_expression] = STATE(2637), + [sym_array_creation] = STATE(2765), + [sym_fixed_array_creation] = STATE(2765), + [sym_selector_expression] = STATE(2765), + [sym_index_expression] = STATE(2765), + [sym_slice_expression] = STATE(2765), + [sym_if_expression] = STATE(2637), + [sym_compile_time_if_expression] = STATE(2637), + [sym_is_expression] = STATE(2765), + [sym_in_expression] = STATE(2765), + [sym_enum_fetch] = STATE(2765), + [sym_match_expression] = STATE(2637), + [sym_select_expression] = STATE(2637), + [sym_lock_expression] = STATE(2637), + [sym_unsafe_expression] = STATE(2637), + [sym_sql_expression] = STATE(2637), + [sym_c_string_literal] = STATE(2762), + [sym_raw_string_literal] = STATE(2762), + [sym_interpreted_string_literal] = STATE(2762), + [sym_mutability_modifiers] = STATE(822), + [sym_plain_type] = STATE(4011), + [sym__plain_type_without_special] = STATE(2360), + [sym_anon_struct_type] = STATE(2362), + [sym_multi_return_type] = STATE(2360), + [sym_result_type] = STATE(2360), + [sym_option_type] = STATE(2360), + [sym_qualified_type] = STATE(3460), + [sym_fixed_array_type] = STATE(2362), + [sym_array_type] = STATE(2362), + [sym_pointer_type] = STATE(2362), + [sym_wrong_pointer_type] = STATE(2362), + [sym_map_type] = STATE(2362), + [sym_channel_type] = STATE(2362), + [sym_shared_type] = STATE(2362), + [sym_thread_type] = STATE(2362), + [sym_atomic_type] = STATE(2362), + [sym_generic_type] = STATE(2362), + [sym_function_type] = STATE(2362), + [sym_identifier] = ACTIONS(1815), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(703), - [anon_sym_LBRACE] = ACTIONS(3268), - [anon_sym_LPAREN] = ACTIONS(709), - [anon_sym_fn] = ACTIONS(711), - [anon_sym_PLUS] = ACTIONS(713), - [anon_sym_DASH] = ACTIONS(713), - [anon_sym_STAR] = ACTIONS(715), - [anon_sym_struct] = ACTIONS(3270), + [anon_sym_DOT] = ACTIONS(1073), + [anon_sym_LBRACE] = ACTIONS(1075), + [anon_sym_LPAREN] = ACTIONS(1079), + [anon_sym_fn] = ACTIONS(1081), + [anon_sym_PLUS] = ACTIONS(3070), + [anon_sym_DASH] = ACTIONS(3070), + [anon_sym_STAR] = ACTIONS(3072), + [anon_sym_struct] = ACTIONS(1087), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(719), - [anon_sym_go] = ACTIONS(721), - [anon_sym_spawn] = ACTIONS(723), - [anon_sym_json_DOTdecode] = ACTIONS(725), - [anon_sym_LBRACK2] = ACTIONS(727), - [anon_sym_TILDE] = ACTIONS(713), - [anon_sym_CARET] = ACTIONS(713), - [anon_sym_AMP] = ACTIONS(729), - [anon_sym_LT_DASH] = ACTIONS(731), - [sym_none] = ACTIONS(733), - [sym_true] = ACTIONS(733), - [sym_false] = ACTIONS(733), - [sym_nil] = ACTIONS(733), - [anon_sym_if] = ACTIONS(3272), - [anon_sym_DOLLARif] = ACTIONS(3274), - [anon_sym_match] = ACTIONS(3276), - [anon_sym_select] = ACTIONS(3278), - [anon_sym_lock] = ACTIONS(3280), - [anon_sym_rlock] = ACTIONS(3280), - [anon_sym_unsafe] = ACTIONS(3282), - [anon_sym_sql] = ACTIONS(3284), - [sym_int_literal] = ACTIONS(733), - [sym_float_literal] = ACTIONS(751), - [sym_rune_literal] = ACTIONS(751), - [sym_pseudo_compile_time_identifier] = ACTIONS(753), + [anon_sym_BANG] = ACTIONS(3074), + [anon_sym_go] = ACTIONS(3076), + [anon_sym_spawn] = ACTIONS(3078), + [anon_sym_json_DOTdecode] = ACTIONS(1095), + [anon_sym_LBRACK2] = ACTIONS(1097), + [anon_sym_TILDE] = ACTIONS(3070), + [anon_sym_CARET] = ACTIONS(3070), + [anon_sym_AMP] = ACTIONS(3080), + [anon_sym_LT_DASH] = ACTIONS(3082), + [sym_none] = ACTIONS(1103), + [sym_true] = ACTIONS(1103), + [sym_false] = ACTIONS(1103), + [sym_nil] = ACTIONS(1103), + [anon_sym_if] = ACTIONS(1105), + [anon_sym_DOLLARif] = ACTIONS(1109), + [anon_sym_match] = ACTIONS(1111), + [anon_sym_select] = ACTIONS(3084), + [anon_sym_lock] = ACTIONS(3086), + [anon_sym_rlock] = ACTIONS(3086), + [anon_sym_unsafe] = ACTIONS(1117), + [anon_sym_sql] = ACTIONS(1119), + [sym_int_literal] = ACTIONS(1103), + [sym_float_literal] = ACTIONS(1121), + [sym_rune_literal] = ACTIONS(1121), + [sym_pseudo_compile_time_identifier] = ACTIONS(1123), [anon_sym_shared] = ACTIONS(83), [anon_sym_map_LBRACK] = ACTIONS(85), [anon_sym_chan] = ACTIONS(87), [anon_sym_thread] = ACTIONS(89), [anon_sym_atomic] = ACTIONS(91), - [sym___double_quote] = ACTIONS(755), - [sym___single_quote] = ACTIONS(757), - [sym___c_double_quote] = ACTIONS(759), - [sym___c_single_quote] = ACTIONS(761), - [sym___r_double_quote] = ACTIONS(763), - [sym___r_single_quote] = ACTIONS(765), + [sym___double_quote] = ACTIONS(1125), + [sym___single_quote] = ACTIONS(1127), + [sym___c_double_quote] = ACTIONS(1129), + [sym___c_single_quote] = ACTIONS(1131), + [sym___r_double_quote] = ACTIONS(1133), + [sym___r_single_quote] = ACTIONS(1135), }, [922] = { [sym_line_comment] = STATE(922), [sym_block_comment] = STATE(922), - [sym__expression] = STATE(2488), - [sym__expression_without_blocks] = STATE(2625), - [sym__expression_with_blocks] = STATE(2625), + [sym__expression] = STATE(2462), + [sym__expression_without_blocks] = STATE(2638), + [sym__expression_with_blocks] = STATE(2638), [sym_inc_expression] = STATE(2765), [sym_dec_expression] = STATE(2765), [sym_or_block_expression] = STATE(2765), [sym_option_propagation_expression] = STATE(2765), [sym_result_propagation_expression] = STATE(2765), - [sym_anon_struct_value_expression] = STATE(2619), + [sym_anon_struct_value_expression] = STATE(2637), [sym_go_expression] = STATE(2765), [sym_spawn_expression] = STATE(2765), [sym_parenthesized_expression] = STATE(2765), [sym_call_expression] = STATE(2765), - [sym_type_initializer] = STATE(2619), + [sym_type_initializer] = STATE(2637), [sym_function_literal] = STATE(2765), [sym_reference_expression] = STATE(2764), - [sym_type_reference_expression] = STATE(3541), + [sym_type_reference_expression] = STATE(3460), [sym_unary_expression] = STATE(2765), [sym_receive_expression] = STATE(2765), [sym_binary_expression] = STATE(2765), [sym_as_type_cast_expression] = STATE(2765), [sym__max_group] = STATE(2765), - [sym_literal] = STATE(2769), - [sym_map_init_expression] = STATE(2619), + [sym_literal] = STATE(2771), + [sym_map_init_expression] = STATE(2637), [sym_array_creation] = STATE(2765), [sym_fixed_array_creation] = STATE(2765), [sym_selector_expression] = STATE(2765), [sym_index_expression] = STATE(2765), [sym_slice_expression] = STATE(2765), - [sym_if_expression] = STATE(2619), - [sym_compile_time_if_expression] = STATE(2619), + [sym_if_expression] = STATE(2637), + [sym_compile_time_if_expression] = STATE(2637), [sym_is_expression] = STATE(2765), [sym_in_expression] = STATE(2765), [sym_enum_fetch] = STATE(2765), - [sym_match_expression] = STATE(2619), - [sym_select_expression] = STATE(2619), - [sym_lock_expression] = STATE(2619), - [sym_unsafe_expression] = STATE(2619), - [sym_sql_expression] = STATE(2619), - [sym_c_string_literal] = STATE(2660), - [sym_raw_string_literal] = STATE(2660), - [sym_interpreted_string_literal] = STATE(2660), - [sym_mutability_modifiers] = STATE(567), - [sym_plain_type] = STATE(4008), - [sym__plain_type_without_special] = STATE(2302), - [sym_anon_struct_type] = STATE(2303), - [sym_multi_return_type] = STATE(2302), - [sym_result_type] = STATE(2302), - [sym_option_type] = STATE(2302), - [sym_qualified_type] = STATE(3541), - [sym_fixed_array_type] = STATE(2303), - [sym_array_type] = STATE(2303), - [sym_pointer_type] = STATE(2303), - [sym_wrong_pointer_type] = STATE(2303), - [sym_map_type] = STATE(2303), - [sym_channel_type] = STATE(2303), - [sym_shared_type] = STATE(2303), - [sym_thread_type] = STATE(2303), - [sym_atomic_type] = STATE(2303), - [sym_generic_type] = STATE(2303), - [sym_function_type] = STATE(2303), - [sym_identifier] = ACTIONS(1807), + [sym_match_expression] = STATE(2637), + [sym_select_expression] = STATE(2637), + [sym_lock_expression] = STATE(2637), + [sym_unsafe_expression] = STATE(2637), + [sym_sql_expression] = STATE(2637), + [sym_c_string_literal] = STATE(2762), + [sym_raw_string_literal] = STATE(2762), + [sym_interpreted_string_literal] = STATE(2762), + [sym_mutability_modifiers] = STATE(822), + [sym_plain_type] = STATE(4011), + [sym__plain_type_without_special] = STATE(2360), + [sym_anon_struct_type] = STATE(2362), + [sym_multi_return_type] = STATE(2360), + [sym_result_type] = STATE(2360), + [sym_option_type] = STATE(2360), + [sym_qualified_type] = STATE(3460), + [sym_fixed_array_type] = STATE(2362), + [sym_array_type] = STATE(2362), + [sym_pointer_type] = STATE(2362), + [sym_wrong_pointer_type] = STATE(2362), + [sym_map_type] = STATE(2362), + [sym_channel_type] = STATE(2362), + [sym_shared_type] = STATE(2362), + [sym_thread_type] = STATE(2362), + [sym_atomic_type] = STATE(2362), + [sym_generic_type] = STATE(2362), + [sym_function_type] = STATE(2362), + [sym_identifier] = ACTIONS(1815), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1081), - [anon_sym_LBRACE] = ACTIONS(1083), - [anon_sym_LPAREN] = ACTIONS(1087), - [anon_sym_fn] = ACTIONS(1089), - [anon_sym_PLUS] = ACTIONS(3120), - [anon_sym_DASH] = ACTIONS(3120), - [anon_sym_STAR] = ACTIONS(3122), - [anon_sym_struct] = ACTIONS(1095), + [anon_sym_DOT] = ACTIONS(1073), + [anon_sym_LBRACE] = ACTIONS(1075), + [anon_sym_LPAREN] = ACTIONS(1079), + [anon_sym_fn] = ACTIONS(1081), + [anon_sym_PLUS] = ACTIONS(3070), + [anon_sym_DASH] = ACTIONS(3070), + [anon_sym_STAR] = ACTIONS(3072), + [anon_sym_struct] = ACTIONS(1087), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(3124), - [anon_sym_go] = ACTIONS(3126), - [anon_sym_spawn] = ACTIONS(3128), - [anon_sym_json_DOTdecode] = ACTIONS(1103), - [anon_sym_LBRACK2] = ACTIONS(1105), - [anon_sym_TILDE] = ACTIONS(3120), - [anon_sym_CARET] = ACTIONS(3120), - [anon_sym_AMP] = ACTIONS(3130), - [anon_sym_LT_DASH] = ACTIONS(3132), - [sym_none] = ACTIONS(1111), - [sym_true] = ACTIONS(1111), - [sym_false] = ACTIONS(1111), - [sym_nil] = ACTIONS(1111), - [anon_sym_if] = ACTIONS(1113), - [anon_sym_DOLLARif] = ACTIONS(1117), - [anon_sym_match] = ACTIONS(1119), - [anon_sym_select] = ACTIONS(3134), - [anon_sym_lock] = ACTIONS(3136), - [anon_sym_rlock] = ACTIONS(3136), - [anon_sym_unsafe] = ACTIONS(1125), - [anon_sym_sql] = ACTIONS(1127), - [sym_int_literal] = ACTIONS(1111), - [sym_float_literal] = ACTIONS(1129), - [sym_rune_literal] = ACTIONS(1129), - [sym_pseudo_compile_time_identifier] = ACTIONS(1131), + [anon_sym_BANG] = ACTIONS(3074), + [anon_sym_go] = ACTIONS(3076), + [anon_sym_spawn] = ACTIONS(3078), + [anon_sym_json_DOTdecode] = ACTIONS(1095), + [anon_sym_LBRACK2] = ACTIONS(1097), + [anon_sym_TILDE] = ACTIONS(3070), + [anon_sym_CARET] = ACTIONS(3070), + [anon_sym_AMP] = ACTIONS(3080), + [anon_sym_LT_DASH] = ACTIONS(3082), + [sym_none] = ACTIONS(1103), + [sym_true] = ACTIONS(1103), + [sym_false] = ACTIONS(1103), + [sym_nil] = ACTIONS(1103), + [anon_sym_if] = ACTIONS(1105), + [anon_sym_DOLLARif] = ACTIONS(1109), + [anon_sym_match] = ACTIONS(1111), + [anon_sym_select] = ACTIONS(3084), + [anon_sym_lock] = ACTIONS(3086), + [anon_sym_rlock] = ACTIONS(3086), + [anon_sym_unsafe] = ACTIONS(1117), + [anon_sym_sql] = ACTIONS(1119), + [sym_int_literal] = ACTIONS(1103), + [sym_float_literal] = ACTIONS(1121), + [sym_rune_literal] = ACTIONS(1121), + [sym_pseudo_compile_time_identifier] = ACTIONS(1123), [anon_sym_shared] = ACTIONS(83), [anon_sym_map_LBRACK] = ACTIONS(85), [anon_sym_chan] = ACTIONS(87), [anon_sym_thread] = ACTIONS(89), [anon_sym_atomic] = ACTIONS(91), - [sym___double_quote] = ACTIONS(1133), - [sym___single_quote] = ACTIONS(1135), - [sym___c_double_quote] = ACTIONS(1137), - [sym___c_single_quote] = ACTIONS(1139), - [sym___r_double_quote] = ACTIONS(1141), - [sym___r_single_quote] = ACTIONS(1143), + [sym___double_quote] = ACTIONS(1125), + [sym___single_quote] = ACTIONS(1127), + [sym___c_double_quote] = ACTIONS(1129), + [sym___c_single_quote] = ACTIONS(1131), + [sym___r_double_quote] = ACTIONS(1133), + [sym___r_single_quote] = ACTIONS(1135), }, [923] = { [sym_line_comment] = STATE(923), [sym_block_comment] = STATE(923), - [sym__expression] = STATE(1763), - [sym__expression_without_blocks] = STATE(2005), - [sym__expression_with_blocks] = STATE(2005), - [sym_inc_expression] = STATE(2032), - [sym_dec_expression] = STATE(2032), - [sym_or_block_expression] = STATE(2032), - [sym_option_propagation_expression] = STATE(2032), - [sym_result_propagation_expression] = STATE(2032), - [sym_anon_struct_value_expression] = STATE(2004), - [sym_go_expression] = STATE(2032), - [sym_spawn_expression] = STATE(2032), - [sym_parenthesized_expression] = STATE(2032), - [sym_call_expression] = STATE(2032), - [sym_type_initializer] = STATE(2004), - [sym_function_literal] = STATE(2032), - [sym_reference_expression] = STATE(1914), - [sym_type_reference_expression] = STATE(3541), - [sym_unary_expression] = STATE(2032), - [sym_receive_expression] = STATE(2032), - [sym_binary_expression] = STATE(2032), - [sym_as_type_cast_expression] = STATE(2032), - [sym__max_group] = STATE(2032), - [sym_literal] = STATE(2027), - [sym_map_init_expression] = STATE(2004), - [sym_array_creation] = STATE(2032), - [sym_fixed_array_creation] = STATE(2032), - [sym_selector_expression] = STATE(2032), - [sym_index_expression] = STATE(2032), - [sym_slice_expression] = STATE(2032), - [sym_if_expression] = STATE(2004), - [sym_compile_time_if_expression] = STATE(2004), - [sym_is_expression] = STATE(2032), - [sym_in_expression] = STATE(2032), - [sym_enum_fetch] = STATE(2032), - [sym_match_expression] = STATE(2004), - [sym_select_expression] = STATE(2004), - [sym_lock_expression] = STATE(2004), - [sym_unsafe_expression] = STATE(2004), - [sym_sql_expression] = STATE(2004), - [sym_c_string_literal] = STATE(2026), - [sym_raw_string_literal] = STATE(2026), - [sym_interpreted_string_literal] = STATE(2026), - [sym_mutability_modifiers] = STATE(562), - [sym_plain_type] = STATE(4191), - [sym__plain_type_without_special] = STATE(2302), - [sym_anon_struct_type] = STATE(2303), - [sym_multi_return_type] = STATE(2302), - [sym_result_type] = STATE(2302), - [sym_option_type] = STATE(2302), - [sym_qualified_type] = STATE(3541), - [sym_fixed_array_type] = STATE(2303), - [sym_array_type] = STATE(2303), - [sym_pointer_type] = STATE(2303), - [sym_wrong_pointer_type] = STATE(2303), - [sym_map_type] = STATE(2303), - [sym_channel_type] = STATE(2303), - [sym_shared_type] = STATE(2303), - [sym_thread_type] = STATE(2303), - [sym_atomic_type] = STATE(2303), - [sym_generic_type] = STATE(2303), - [sym_function_type] = STATE(2303), - [sym_identifier] = ACTIONS(3266), + [sym__expression] = STATE(2431), + [sym__expression_without_blocks] = STATE(2638), + [sym__expression_with_blocks] = STATE(2638), + [sym_inc_expression] = STATE(2765), + [sym_dec_expression] = STATE(2765), + [sym_or_block_expression] = STATE(2765), + [sym_option_propagation_expression] = STATE(2765), + [sym_result_propagation_expression] = STATE(2765), + [sym_anon_struct_value_expression] = STATE(2637), + [sym_go_expression] = STATE(2765), + [sym_spawn_expression] = STATE(2765), + [sym_parenthesized_expression] = STATE(2765), + [sym_call_expression] = STATE(2765), + [sym_type_initializer] = STATE(2637), + [sym_function_literal] = STATE(2765), + [sym_reference_expression] = STATE(2764), + [sym_type_reference_expression] = STATE(3460), + [sym_unary_expression] = STATE(2765), + [sym_receive_expression] = STATE(2765), + [sym_binary_expression] = STATE(2765), + [sym_as_type_cast_expression] = STATE(2765), + [sym__max_group] = STATE(2765), + [sym_literal] = STATE(2771), + [sym_map_init_expression] = STATE(2637), + [sym_array_creation] = STATE(2765), + [sym_fixed_array_creation] = STATE(2765), + [sym_selector_expression] = STATE(2765), + [sym_index_expression] = STATE(2765), + [sym_slice_expression] = STATE(2765), + [sym_if_expression] = STATE(2637), + [sym_compile_time_if_expression] = STATE(2637), + [sym_is_expression] = STATE(2765), + [sym_in_expression] = STATE(2765), + [sym_enum_fetch] = STATE(2765), + [sym_match_expression] = STATE(2637), + [sym_select_expression] = STATE(2637), + [sym_lock_expression] = STATE(2637), + [sym_unsafe_expression] = STATE(2637), + [sym_sql_expression] = STATE(2637), + [sym_c_string_literal] = STATE(2762), + [sym_raw_string_literal] = STATE(2762), + [sym_interpreted_string_literal] = STATE(2762), + [sym_mutability_modifiers] = STATE(822), + [sym_plain_type] = STATE(4011), + [sym__plain_type_without_special] = STATE(2360), + [sym_anon_struct_type] = STATE(2362), + [sym_multi_return_type] = STATE(2360), + [sym_result_type] = STATE(2360), + [sym_option_type] = STATE(2360), + [sym_qualified_type] = STATE(3460), + [sym_fixed_array_type] = STATE(2362), + [sym_array_type] = STATE(2362), + [sym_pointer_type] = STATE(2362), + [sym_wrong_pointer_type] = STATE(2362), + [sym_map_type] = STATE(2362), + [sym_channel_type] = STATE(2362), + [sym_shared_type] = STATE(2362), + [sym_thread_type] = STATE(2362), + [sym_atomic_type] = STATE(2362), + [sym_generic_type] = STATE(2362), + [sym_function_type] = STATE(2362), + [sym_identifier] = ACTIONS(1815), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(703), - [anon_sym_LBRACE] = ACTIONS(3268), - [anon_sym_LPAREN] = ACTIONS(709), - [anon_sym_fn] = ACTIONS(711), - [anon_sym_PLUS] = ACTIONS(713), - [anon_sym_DASH] = ACTIONS(713), - [anon_sym_STAR] = ACTIONS(715), - [anon_sym_struct] = ACTIONS(3270), + [anon_sym_DOT] = ACTIONS(1073), + [anon_sym_LBRACE] = ACTIONS(1075), + [anon_sym_LPAREN] = ACTIONS(1079), + [anon_sym_fn] = ACTIONS(1081), + [anon_sym_PLUS] = ACTIONS(3070), + [anon_sym_DASH] = ACTIONS(3070), + [anon_sym_STAR] = ACTIONS(3072), + [anon_sym_struct] = ACTIONS(1087), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(719), - [anon_sym_go] = ACTIONS(721), - [anon_sym_spawn] = ACTIONS(723), - [anon_sym_json_DOTdecode] = ACTIONS(725), - [anon_sym_LBRACK2] = ACTIONS(727), - [anon_sym_TILDE] = ACTIONS(713), - [anon_sym_CARET] = ACTIONS(713), - [anon_sym_AMP] = ACTIONS(729), - [anon_sym_LT_DASH] = ACTIONS(731), - [sym_none] = ACTIONS(733), - [sym_true] = ACTIONS(733), - [sym_false] = ACTIONS(733), - [sym_nil] = ACTIONS(733), - [anon_sym_if] = ACTIONS(3272), - [anon_sym_DOLLARif] = ACTIONS(3274), - [anon_sym_match] = ACTIONS(3276), - [anon_sym_select] = ACTIONS(3278), - [anon_sym_lock] = ACTIONS(3280), - [anon_sym_rlock] = ACTIONS(3280), - [anon_sym_unsafe] = ACTIONS(3282), - [anon_sym_sql] = ACTIONS(3284), - [sym_int_literal] = ACTIONS(733), - [sym_float_literal] = ACTIONS(751), - [sym_rune_literal] = ACTIONS(751), - [sym_pseudo_compile_time_identifier] = ACTIONS(753), + [anon_sym_BANG] = ACTIONS(3074), + [anon_sym_go] = ACTIONS(3076), + [anon_sym_spawn] = ACTIONS(3078), + [anon_sym_json_DOTdecode] = ACTIONS(1095), + [anon_sym_LBRACK2] = ACTIONS(1097), + [anon_sym_TILDE] = ACTIONS(3070), + [anon_sym_CARET] = ACTIONS(3070), + [anon_sym_AMP] = ACTIONS(3080), + [anon_sym_LT_DASH] = ACTIONS(3082), + [sym_none] = ACTIONS(1103), + [sym_true] = ACTIONS(1103), + [sym_false] = ACTIONS(1103), + [sym_nil] = ACTIONS(1103), + [anon_sym_if] = ACTIONS(1105), + [anon_sym_DOLLARif] = ACTIONS(1109), + [anon_sym_match] = ACTIONS(1111), + [anon_sym_select] = ACTIONS(3084), + [anon_sym_lock] = ACTIONS(3086), + [anon_sym_rlock] = ACTIONS(3086), + [anon_sym_unsafe] = ACTIONS(1117), + [anon_sym_sql] = ACTIONS(1119), + [sym_int_literal] = ACTIONS(1103), + [sym_float_literal] = ACTIONS(1121), + [sym_rune_literal] = ACTIONS(1121), + [sym_pseudo_compile_time_identifier] = ACTIONS(1123), [anon_sym_shared] = ACTIONS(83), [anon_sym_map_LBRACK] = ACTIONS(85), [anon_sym_chan] = ACTIONS(87), [anon_sym_thread] = ACTIONS(89), [anon_sym_atomic] = ACTIONS(91), - [sym___double_quote] = ACTIONS(755), - [sym___single_quote] = ACTIONS(757), - [sym___c_double_quote] = ACTIONS(759), - [sym___c_single_quote] = ACTIONS(761), - [sym___r_double_quote] = ACTIONS(763), - [sym___r_single_quote] = ACTIONS(765), + [sym___double_quote] = ACTIONS(1125), + [sym___single_quote] = ACTIONS(1127), + [sym___c_double_quote] = ACTIONS(1129), + [sym___c_single_quote] = ACTIONS(1131), + [sym___r_double_quote] = ACTIONS(1133), + [sym___r_single_quote] = ACTIONS(1135), }, [924] = { [sym_line_comment] = STATE(924), [sym_block_comment] = STATE(924), - [sym__expression] = STATE(2375), - [sym__expression_without_blocks] = STATE(2489), - [sym__expression_with_blocks] = STATE(2489), - [sym_inc_expression] = STATE(2479), - [sym_dec_expression] = STATE(2479), - [sym_or_block_expression] = STATE(2479), - [sym_option_propagation_expression] = STATE(2479), - [sym_result_propagation_expression] = STATE(2479), - [sym_anon_struct_value_expression] = STATE(2491), - [sym_go_expression] = STATE(2479), - [sym_spawn_expression] = STATE(2479), - [sym_parenthesized_expression] = STATE(2479), - [sym_call_expression] = STATE(2479), - [sym_type_initializer] = STATE(2491), - [sym_function_literal] = STATE(2479), - [sym_reference_expression] = STATE(2542), - [sym_type_reference_expression] = STATE(3541), - [sym_unary_expression] = STATE(2479), - [sym_receive_expression] = STATE(2479), - [sym_binary_expression] = STATE(2479), - [sym_as_type_cast_expression] = STATE(2479), - [sym__max_group] = STATE(2479), - [sym_literal] = STATE(2454), - [sym_map_init_expression] = STATE(2491), - [sym_array_creation] = STATE(2479), - [sym_fixed_array_creation] = STATE(2479), - [sym_selector_expression] = STATE(2479), - [sym_index_expression] = STATE(2479), - [sym_slice_expression] = STATE(2479), - [sym_if_expression] = STATE(2491), - [sym_compile_time_if_expression] = STATE(2491), - [sym_is_expression] = STATE(2479), - [sym_in_expression] = STATE(2479), - [sym_enum_fetch] = STATE(2479), - [sym_match_expression] = STATE(2491), - [sym_select_expression] = STATE(2491), - [sym_lock_expression] = STATE(2491), - [sym_unsafe_expression] = STATE(2491), - [sym_sql_expression] = STATE(2491), - [sym_c_string_literal] = STATE(2469), - [sym_raw_string_literal] = STATE(2469), - [sym_interpreted_string_literal] = STATE(2469), - [sym_mutability_modifiers] = STATE(640), - [sym_plain_type] = STATE(4255), - [sym__plain_type_without_special] = STATE(2302), - [sym_anon_struct_type] = STATE(2303), - [sym_multi_return_type] = STATE(2302), - [sym_result_type] = STATE(2302), - [sym_option_type] = STATE(2302), - [sym_qualified_type] = STATE(3541), - [sym_fixed_array_type] = STATE(2303), - [sym_array_type] = STATE(2303), - [sym_pointer_type] = STATE(2303), - [sym_wrong_pointer_type] = STATE(2303), - [sym_map_type] = STATE(2303), - [sym_channel_type] = STATE(2303), - [sym_shared_type] = STATE(2303), - [sym_thread_type] = STATE(2303), - [sym_atomic_type] = STATE(2303), - [sym_generic_type] = STATE(2303), - [sym_function_type] = STATE(2303), - [sym_identifier] = ACTIONS(1695), + [sym__expression] = STATE(2424), + [sym__expression_without_blocks] = STATE(2468), + [sym__expression_with_blocks] = STATE(2468), + [sym_inc_expression] = STATE(2469), + [sym_dec_expression] = STATE(2469), + [sym_or_block_expression] = STATE(2469), + [sym_option_propagation_expression] = STATE(2469), + [sym_result_propagation_expression] = STATE(2469), + [sym_anon_struct_value_expression] = STATE(2470), + [sym_go_expression] = STATE(2469), + [sym_spawn_expression] = STATE(2469), + [sym_parenthesized_expression] = STATE(2469), + [sym_call_expression] = STATE(2469), + [sym_type_initializer] = STATE(2470), + [sym_function_literal] = STATE(2469), + [sym_reference_expression] = STATE(2487), + [sym_type_reference_expression] = STATE(3460), + [sym_unary_expression] = STATE(2469), + [sym_receive_expression] = STATE(2469), + [sym_binary_expression] = STATE(2469), + [sym_as_type_cast_expression] = STATE(2469), + [sym__max_group] = STATE(2469), + [sym_literal] = STATE(2465), + [sym_map_init_expression] = STATE(2470), + [sym_array_creation] = STATE(2469), + [sym_fixed_array_creation] = STATE(2469), + [sym_selector_expression] = STATE(2469), + [sym_index_expression] = STATE(2469), + [sym_slice_expression] = STATE(2469), + [sym_if_expression] = STATE(2470), + [sym_compile_time_if_expression] = STATE(2470), + [sym_is_expression] = STATE(2469), + [sym_in_expression] = STATE(2469), + [sym_enum_fetch] = STATE(2469), + [sym_match_expression] = STATE(2470), + [sym_select_expression] = STATE(2470), + [sym_lock_expression] = STATE(2470), + [sym_unsafe_expression] = STATE(2470), + [sym_sql_expression] = STATE(2470), + [sym_c_string_literal] = STATE(2464), + [sym_raw_string_literal] = STATE(2464), + [sym_interpreted_string_literal] = STATE(2464), + [sym_mutability_modifiers] = STATE(561), + [sym_plain_type] = STATE(4038), + [sym__plain_type_without_special] = STATE(2360), + [sym_anon_struct_type] = STATE(2362), + [sym_multi_return_type] = STATE(2360), + [sym_result_type] = STATE(2360), + [sym_option_type] = STATE(2360), + [sym_qualified_type] = STATE(3460), + [sym_fixed_array_type] = STATE(2362), + [sym_array_type] = STATE(2362), + [sym_pointer_type] = STATE(2362), + [sym_wrong_pointer_type] = STATE(2362), + [sym_map_type] = STATE(2362), + [sym_channel_type] = STATE(2362), + [sym_shared_type] = STATE(2362), + [sym_thread_type] = STATE(2362), + [sym_atomic_type] = STATE(2362), + [sym_generic_type] = STATE(2362), + [sym_function_type] = STATE(2362), + [sym_identifier] = ACTIONS(1691), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1697), - [anon_sym_LBRACE] = ACTIONS(2697), - [anon_sym_LPAREN] = ACTIONS(2699), - [anon_sym_fn] = ACTIONS(1703), - [anon_sym_PLUS] = ACTIONS(3380), - [anon_sym_DASH] = ACTIONS(3380), - [anon_sym_STAR] = ACTIONS(3382), - [anon_sym_struct] = ACTIONS(1709), + [anon_sym_DOT] = ACTIONS(1693), + [anon_sym_LBRACE] = ACTIONS(2151), + [anon_sym_LPAREN] = ACTIONS(2153), + [anon_sym_fn] = ACTIONS(1699), + [anon_sym_PLUS] = ACTIONS(3386), + [anon_sym_DASH] = ACTIONS(3386), + [anon_sym_STAR] = ACTIONS(3388), + [anon_sym_struct] = ACTIONS(1705), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(3384), - [anon_sym_go] = ACTIONS(3386), - [anon_sym_spawn] = ACTIONS(3388), - [anon_sym_json_DOTdecode] = ACTIONS(2707), - [anon_sym_LBRACK2] = ACTIONS(2709), - [anon_sym_TILDE] = ACTIONS(3380), - [anon_sym_CARET] = ACTIONS(3380), - [anon_sym_AMP] = ACTIONS(3390), - [anon_sym_LT_DASH] = ACTIONS(3392), - [sym_none] = ACTIONS(1725), - [sym_true] = ACTIONS(1725), - [sym_false] = ACTIONS(1725), - [sym_nil] = ACTIONS(1725), - [anon_sym_if] = ACTIONS(1727), - [anon_sym_DOLLARif] = ACTIONS(1729), - [anon_sym_match] = ACTIONS(1731), - [anon_sym_select] = ACTIONS(3394), - [anon_sym_lock] = ACTIONS(3396), - [anon_sym_rlock] = ACTIONS(3396), - [anon_sym_unsafe] = ACTIONS(1737), - [anon_sym_sql] = ACTIONS(1739), - [sym_int_literal] = ACTIONS(1725), - [sym_float_literal] = ACTIONS(2715), - [sym_rune_literal] = ACTIONS(2715), - [sym_pseudo_compile_time_identifier] = ACTIONS(1741), + [anon_sym_BANG] = ACTIONS(3390), + [anon_sym_go] = ACTIONS(3392), + [anon_sym_spawn] = ACTIONS(3394), + [anon_sym_json_DOTdecode] = ACTIONS(2161), + [anon_sym_LBRACK2] = ACTIONS(2163), + [anon_sym_TILDE] = ACTIONS(3386), + [anon_sym_CARET] = ACTIONS(3386), + [anon_sym_AMP] = ACTIONS(3396), + [anon_sym_LT_DASH] = ACTIONS(3398), + [sym_none] = ACTIONS(1721), + [sym_true] = ACTIONS(1721), + [sym_false] = ACTIONS(1721), + [sym_nil] = ACTIONS(1721), + [anon_sym_if] = ACTIONS(1723), + [anon_sym_DOLLARif] = ACTIONS(1725), + [anon_sym_match] = ACTIONS(1727), + [anon_sym_select] = ACTIONS(3400), + [anon_sym_lock] = ACTIONS(3402), + [anon_sym_rlock] = ACTIONS(3402), + [anon_sym_unsafe] = ACTIONS(1733), + [anon_sym_sql] = ACTIONS(1735), + [sym_int_literal] = ACTIONS(1721), + [sym_float_literal] = ACTIONS(2169), + [sym_rune_literal] = ACTIONS(2169), + [sym_pseudo_compile_time_identifier] = ACTIONS(1737), [anon_sym_shared] = ACTIONS(83), [anon_sym_map_LBRACK] = ACTIONS(85), [anon_sym_chan] = ACTIONS(87), [anon_sym_thread] = ACTIONS(89), [anon_sym_atomic] = ACTIONS(91), - [sym___double_quote] = ACTIONS(2717), - [sym___single_quote] = ACTIONS(2719), - [sym___c_double_quote] = ACTIONS(2721), - [sym___c_single_quote] = ACTIONS(2723), - [sym___r_double_quote] = ACTIONS(2725), - [sym___r_single_quote] = ACTIONS(2727), + [sym___double_quote] = ACTIONS(2171), + [sym___single_quote] = ACTIONS(2173), + [sym___c_double_quote] = ACTIONS(2175), + [sym___c_single_quote] = ACTIONS(2177), + [sym___r_double_quote] = ACTIONS(2179), + [sym___r_single_quote] = ACTIONS(2181), }, [925] = { [sym_line_comment] = STATE(925), [sym_block_comment] = STATE(925), - [sym__expression] = STATE(1778), - [sym__expression_without_blocks] = STATE(2005), - [sym__expression_with_blocks] = STATE(2005), - [sym_inc_expression] = STATE(2032), - [sym_dec_expression] = STATE(2032), - [sym_or_block_expression] = STATE(2032), - [sym_option_propagation_expression] = STATE(2032), - [sym_result_propagation_expression] = STATE(2032), - [sym_anon_struct_value_expression] = STATE(2004), - [sym_go_expression] = STATE(2032), - [sym_spawn_expression] = STATE(2032), - [sym_parenthesized_expression] = STATE(2032), - [sym_call_expression] = STATE(2032), - [sym_type_initializer] = STATE(2004), - [sym_function_literal] = STATE(2032), - [sym_reference_expression] = STATE(1914), - [sym_type_reference_expression] = STATE(3541), - [sym_unary_expression] = STATE(2032), - [sym_receive_expression] = STATE(2032), - [sym_binary_expression] = STATE(2032), - [sym_as_type_cast_expression] = STATE(2032), - [sym__max_group] = STATE(2032), - [sym_literal] = STATE(2027), - [sym_map_init_expression] = STATE(2004), - [sym_array_creation] = STATE(2032), - [sym_fixed_array_creation] = STATE(2032), - [sym_selector_expression] = STATE(2032), - [sym_index_expression] = STATE(2032), - [sym_slice_expression] = STATE(2032), - [sym_if_expression] = STATE(2004), - [sym_compile_time_if_expression] = STATE(2004), - [sym_is_expression] = STATE(2032), - [sym_in_expression] = STATE(2032), - [sym_enum_fetch] = STATE(2032), - [sym_match_expression] = STATE(2004), - [sym_select_expression] = STATE(2004), - [sym_lock_expression] = STATE(2004), - [sym_unsafe_expression] = STATE(2004), - [sym_sql_expression] = STATE(2004), - [sym_c_string_literal] = STATE(2026), - [sym_raw_string_literal] = STATE(2026), - [sym_interpreted_string_literal] = STATE(2026), - [sym_mutability_modifiers] = STATE(562), - [sym_plain_type] = STATE(4191), - [sym__plain_type_without_special] = STATE(2302), - [sym_anon_struct_type] = STATE(2303), - [sym_multi_return_type] = STATE(2302), - [sym_result_type] = STATE(2302), - [sym_option_type] = STATE(2302), - [sym_qualified_type] = STATE(3541), - [sym_fixed_array_type] = STATE(2303), - [sym_array_type] = STATE(2303), - [sym_pointer_type] = STATE(2303), - [sym_wrong_pointer_type] = STATE(2303), - [sym_map_type] = STATE(2303), - [sym_channel_type] = STATE(2303), - [sym_shared_type] = STATE(2303), - [sym_thread_type] = STATE(2303), - [sym_atomic_type] = STATE(2303), - [sym_generic_type] = STATE(2303), - [sym_function_type] = STATE(2303), - [sym_identifier] = ACTIONS(3266), - [anon_sym_SLASH_SLASH] = ACTIONS(3), - [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(703), - [anon_sym_LBRACE] = ACTIONS(3268), - [anon_sym_LPAREN] = ACTIONS(709), - [anon_sym_fn] = ACTIONS(711), - [anon_sym_PLUS] = ACTIONS(713), - [anon_sym_DASH] = ACTIONS(713), - [anon_sym_STAR] = ACTIONS(715), - [anon_sym_struct] = ACTIONS(3270), - [anon_sym_mut] = ACTIONS(41), - [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(719), - [anon_sym_go] = ACTIONS(721), - [anon_sym_spawn] = ACTIONS(723), - [anon_sym_json_DOTdecode] = ACTIONS(725), - [anon_sym_LBRACK2] = ACTIONS(727), - [anon_sym_TILDE] = ACTIONS(713), - [anon_sym_CARET] = ACTIONS(713), - [anon_sym_AMP] = ACTIONS(729), - [anon_sym_LT_DASH] = ACTIONS(731), - [sym_none] = ACTIONS(733), - [sym_true] = ACTIONS(733), - [sym_false] = ACTIONS(733), - [sym_nil] = ACTIONS(733), - [anon_sym_if] = ACTIONS(3272), - [anon_sym_DOLLARif] = ACTIONS(3274), - [anon_sym_match] = ACTIONS(3276), - [anon_sym_select] = ACTIONS(3278), - [anon_sym_lock] = ACTIONS(3280), - [anon_sym_rlock] = ACTIONS(3280), - [anon_sym_unsafe] = ACTIONS(3282), - [anon_sym_sql] = ACTIONS(3284), - [sym_int_literal] = ACTIONS(733), - [sym_float_literal] = ACTIONS(751), - [sym_rune_literal] = ACTIONS(751), - [sym_pseudo_compile_time_identifier] = ACTIONS(753), - [anon_sym_shared] = ACTIONS(83), - [anon_sym_map_LBRACK] = ACTIONS(85), - [anon_sym_chan] = ACTIONS(87), - [anon_sym_thread] = ACTIONS(89), - [anon_sym_atomic] = ACTIONS(91), - [sym___double_quote] = ACTIONS(755), - [sym___single_quote] = ACTIONS(757), - [sym___c_double_quote] = ACTIONS(759), - [sym___c_single_quote] = ACTIONS(761), - [sym___r_double_quote] = ACTIONS(763), - [sym___r_single_quote] = ACTIONS(765), - }, - [926] = { - [sym_line_comment] = STATE(926), - [sym_block_comment] = STATE(926), - [sym__expression] = STATE(2433), - [sym__expression_without_blocks] = STATE(2625), - [sym__expression_with_blocks] = STATE(2625), + [sym__expression] = STATE(2463), + [sym__expression_without_blocks] = STATE(2638), + [sym__expression_with_blocks] = STATE(2638), [sym_inc_expression] = STATE(2765), [sym_dec_expression] = STATE(2765), [sym_or_block_expression] = STATE(2765), [sym_option_propagation_expression] = STATE(2765), [sym_result_propagation_expression] = STATE(2765), - [sym_anon_struct_value_expression] = STATE(2619), + [sym_anon_struct_value_expression] = STATE(2637), [sym_go_expression] = STATE(2765), [sym_spawn_expression] = STATE(2765), [sym_parenthesized_expression] = STATE(2765), [sym_call_expression] = STATE(2765), - [sym_type_initializer] = STATE(2619), + [sym_type_initializer] = STATE(2637), [sym_function_literal] = STATE(2765), [sym_reference_expression] = STATE(2764), - [sym_type_reference_expression] = STATE(3541), + [sym_type_reference_expression] = STATE(3460), [sym_unary_expression] = STATE(2765), [sym_receive_expression] = STATE(2765), [sym_binary_expression] = STATE(2765), [sym_as_type_cast_expression] = STATE(2765), [sym__max_group] = STATE(2765), - [sym_literal] = STATE(2769), - [sym_map_init_expression] = STATE(2619), + [sym_literal] = STATE(2771), + [sym_map_init_expression] = STATE(2637), [sym_array_creation] = STATE(2765), [sym_fixed_array_creation] = STATE(2765), [sym_selector_expression] = STATE(2765), [sym_index_expression] = STATE(2765), [sym_slice_expression] = STATE(2765), - [sym_if_expression] = STATE(2619), - [sym_compile_time_if_expression] = STATE(2619), + [sym_if_expression] = STATE(2637), + [sym_compile_time_if_expression] = STATE(2637), [sym_is_expression] = STATE(2765), [sym_in_expression] = STATE(2765), [sym_enum_fetch] = STATE(2765), - [sym_match_expression] = STATE(2619), - [sym_select_expression] = STATE(2619), - [sym_lock_expression] = STATE(2619), - [sym_unsafe_expression] = STATE(2619), - [sym_sql_expression] = STATE(2619), - [sym_c_string_literal] = STATE(2660), - [sym_raw_string_literal] = STATE(2660), - [sym_interpreted_string_literal] = STATE(2660), - [sym_mutability_modifiers] = STATE(567), - [sym_plain_type] = STATE(4008), - [sym__plain_type_without_special] = STATE(2302), - [sym_anon_struct_type] = STATE(2303), - [sym_multi_return_type] = STATE(2302), - [sym_result_type] = STATE(2302), - [sym_option_type] = STATE(2302), - [sym_qualified_type] = STATE(3541), - [sym_fixed_array_type] = STATE(2303), - [sym_array_type] = STATE(2303), - [sym_pointer_type] = STATE(2303), - [sym_wrong_pointer_type] = STATE(2303), - [sym_map_type] = STATE(2303), - [sym_channel_type] = STATE(2303), - [sym_shared_type] = STATE(2303), - [sym_thread_type] = STATE(2303), - [sym_atomic_type] = STATE(2303), - [sym_generic_type] = STATE(2303), - [sym_function_type] = STATE(2303), - [sym_identifier] = ACTIONS(1807), + [sym_match_expression] = STATE(2637), + [sym_select_expression] = STATE(2637), + [sym_lock_expression] = STATE(2637), + [sym_unsafe_expression] = STATE(2637), + [sym_sql_expression] = STATE(2637), + [sym_c_string_literal] = STATE(2762), + [sym_raw_string_literal] = STATE(2762), + [sym_interpreted_string_literal] = STATE(2762), + [sym_mutability_modifiers] = STATE(822), + [sym_plain_type] = STATE(4011), + [sym__plain_type_without_special] = STATE(2360), + [sym_anon_struct_type] = STATE(2362), + [sym_multi_return_type] = STATE(2360), + [sym_result_type] = STATE(2360), + [sym_option_type] = STATE(2360), + [sym_qualified_type] = STATE(3460), + [sym_fixed_array_type] = STATE(2362), + [sym_array_type] = STATE(2362), + [sym_pointer_type] = STATE(2362), + [sym_wrong_pointer_type] = STATE(2362), + [sym_map_type] = STATE(2362), + [sym_channel_type] = STATE(2362), + [sym_shared_type] = STATE(2362), + [sym_thread_type] = STATE(2362), + [sym_atomic_type] = STATE(2362), + [sym_generic_type] = STATE(2362), + [sym_function_type] = STATE(2362), + [sym_identifier] = ACTIONS(1815), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1081), - [anon_sym_LBRACE] = ACTIONS(1083), - [anon_sym_LPAREN] = ACTIONS(1087), - [anon_sym_fn] = ACTIONS(1089), - [anon_sym_PLUS] = ACTIONS(3120), - [anon_sym_DASH] = ACTIONS(3120), - [anon_sym_STAR] = ACTIONS(3122), - [anon_sym_struct] = ACTIONS(1095), + [anon_sym_DOT] = ACTIONS(1073), + [anon_sym_LBRACE] = ACTIONS(1075), + [anon_sym_LPAREN] = ACTIONS(1079), + [anon_sym_fn] = ACTIONS(1081), + [anon_sym_PLUS] = ACTIONS(3070), + [anon_sym_DASH] = ACTIONS(3070), + [anon_sym_STAR] = ACTIONS(3072), + [anon_sym_struct] = ACTIONS(1087), + [anon_sym_mut] = ACTIONS(41), + [anon_sym_QMARK] = ACTIONS(47), + [anon_sym_BANG] = ACTIONS(3074), + [anon_sym_go] = ACTIONS(3076), + [anon_sym_spawn] = ACTIONS(3078), + [anon_sym_json_DOTdecode] = ACTIONS(1095), + [anon_sym_LBRACK2] = ACTIONS(1097), + [anon_sym_TILDE] = ACTIONS(3070), + [anon_sym_CARET] = ACTIONS(3070), + [anon_sym_AMP] = ACTIONS(3080), + [anon_sym_LT_DASH] = ACTIONS(3082), + [sym_none] = ACTIONS(1103), + [sym_true] = ACTIONS(1103), + [sym_false] = ACTIONS(1103), + [sym_nil] = ACTIONS(1103), + [anon_sym_if] = ACTIONS(1105), + [anon_sym_DOLLARif] = ACTIONS(1109), + [anon_sym_match] = ACTIONS(1111), + [anon_sym_select] = ACTIONS(3084), + [anon_sym_lock] = ACTIONS(3086), + [anon_sym_rlock] = ACTIONS(3086), + [anon_sym_unsafe] = ACTIONS(1117), + [anon_sym_sql] = ACTIONS(1119), + [sym_int_literal] = ACTIONS(1103), + [sym_float_literal] = ACTIONS(1121), + [sym_rune_literal] = ACTIONS(1121), + [sym_pseudo_compile_time_identifier] = ACTIONS(1123), + [anon_sym_shared] = ACTIONS(83), + [anon_sym_map_LBRACK] = ACTIONS(85), + [anon_sym_chan] = ACTIONS(87), + [anon_sym_thread] = ACTIONS(89), + [anon_sym_atomic] = ACTIONS(91), + [sym___double_quote] = ACTIONS(1125), + [sym___single_quote] = ACTIONS(1127), + [sym___c_double_quote] = ACTIONS(1129), + [sym___c_single_quote] = ACTIONS(1131), + [sym___r_double_quote] = ACTIONS(1133), + [sym___r_single_quote] = ACTIONS(1135), + }, + [926] = { + [sym_line_comment] = STATE(926), + [sym_block_comment] = STATE(926), + [sym__expression] = STATE(1125), + [sym__expression_without_blocks] = STATE(1210), + [sym__expression_with_blocks] = STATE(1210), + [sym_inc_expression] = STATE(1211), + [sym_dec_expression] = STATE(1211), + [sym_or_block_expression] = STATE(1211), + [sym_option_propagation_expression] = STATE(1211), + [sym_result_propagation_expression] = STATE(1211), + [sym_anon_struct_value_expression] = STATE(1212), + [sym_go_expression] = STATE(1211), + [sym_spawn_expression] = STATE(1211), + [sym_parenthesized_expression] = STATE(1211), + [sym_call_expression] = STATE(1211), + [sym_type_initializer] = STATE(1212), + [sym_function_literal] = STATE(1211), + [sym_reference_expression] = STATE(1233), + [sym_type_reference_expression] = STATE(3460), + [sym_unary_expression] = STATE(1211), + [sym_receive_expression] = STATE(1211), + [sym_binary_expression] = STATE(1211), + [sym_as_type_cast_expression] = STATE(1211), + [sym__max_group] = STATE(1211), + [sym_literal] = STATE(1209), + [sym_map_init_expression] = STATE(1212), + [sym_array_creation] = STATE(1211), + [sym_fixed_array_creation] = STATE(1211), + [sym_selector_expression] = STATE(1211), + [sym_index_expression] = STATE(1211), + [sym_slice_expression] = STATE(1211), + [sym_if_expression] = STATE(1212), + [sym_compile_time_if_expression] = STATE(1212), + [sym_is_expression] = STATE(1211), + [sym_in_expression] = STATE(1211), + [sym_enum_fetch] = STATE(1211), + [sym_match_expression] = STATE(1212), + [sym_select_expression] = STATE(1212), + [sym_lock_expression] = STATE(1212), + [sym_unsafe_expression] = STATE(1212), + [sym_sql_expression] = STATE(1212), + [sym_c_string_literal] = STATE(1201), + [sym_raw_string_literal] = STATE(1201), + [sym_interpreted_string_literal] = STATE(1201), + [sym_mutability_modifiers] = STATE(589), + [sym_plain_type] = STATE(4123), + [sym__plain_type_without_special] = STATE(2360), + [sym_anon_struct_type] = STATE(2362), + [sym_multi_return_type] = STATE(2360), + [sym_result_type] = STATE(2360), + [sym_option_type] = STATE(2360), + [sym_qualified_type] = STATE(3460), + [sym_fixed_array_type] = STATE(2362), + [sym_array_type] = STATE(2362), + [sym_pointer_type] = STATE(2362), + [sym_wrong_pointer_type] = STATE(2362), + [sym_map_type] = STATE(2362), + [sym_channel_type] = STATE(2362), + [sym_shared_type] = STATE(2362), + [sym_thread_type] = STATE(2362), + [sym_atomic_type] = STATE(2362), + [sym_generic_type] = STATE(2362), + [sym_function_type] = STATE(2362), + [sym_identifier] = ACTIONS(1139), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(631), + [anon_sym_LBRACE] = ACTIONS(633), + [anon_sym_LPAREN] = ACTIONS(637), + [anon_sym_fn] = ACTIONS(641), + [anon_sym_PLUS] = ACTIONS(643), + [anon_sym_DASH] = ACTIONS(643), + [anon_sym_STAR] = ACTIONS(645), + [anon_sym_struct] = ACTIONS(649), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(3124), - [anon_sym_go] = ACTIONS(3126), - [anon_sym_spawn] = ACTIONS(3128), - [anon_sym_json_DOTdecode] = ACTIONS(1103), - [anon_sym_LBRACK2] = ACTIONS(1105), - [anon_sym_TILDE] = ACTIONS(3120), - [anon_sym_CARET] = ACTIONS(3120), - [anon_sym_AMP] = ACTIONS(3130), - [anon_sym_LT_DASH] = ACTIONS(3132), - [sym_none] = ACTIONS(1111), - [sym_true] = ACTIONS(1111), - [sym_false] = ACTIONS(1111), - [sym_nil] = ACTIONS(1111), - [anon_sym_if] = ACTIONS(1113), - [anon_sym_DOLLARif] = ACTIONS(1117), - [anon_sym_match] = ACTIONS(1119), - [anon_sym_select] = ACTIONS(3134), - [anon_sym_lock] = ACTIONS(3136), - [anon_sym_rlock] = ACTIONS(3136), - [anon_sym_unsafe] = ACTIONS(1125), - [anon_sym_sql] = ACTIONS(1127), - [sym_int_literal] = ACTIONS(1111), - [sym_float_literal] = ACTIONS(1129), - [sym_rune_literal] = ACTIONS(1129), - [sym_pseudo_compile_time_identifier] = ACTIONS(1131), + [anon_sym_BANG] = ACTIONS(655), + [anon_sym_go] = ACTIONS(657), + [anon_sym_spawn] = ACTIONS(659), + [anon_sym_json_DOTdecode] = ACTIONS(661), + [anon_sym_LBRACK2] = ACTIONS(663), + [anon_sym_TILDE] = ACTIONS(643), + [anon_sym_CARET] = ACTIONS(643), + [anon_sym_AMP] = ACTIONS(665), + [anon_sym_LT_DASH] = ACTIONS(667), + [sym_none] = ACTIONS(669), + [sym_true] = ACTIONS(669), + [sym_false] = ACTIONS(669), + [sym_nil] = ACTIONS(669), + [anon_sym_if] = ACTIONS(671), + [anon_sym_DOLLARif] = ACTIONS(673), + [anon_sym_match] = ACTIONS(675), + [anon_sym_select] = ACTIONS(677), + [anon_sym_lock] = ACTIONS(679), + [anon_sym_rlock] = ACTIONS(679), + [anon_sym_unsafe] = ACTIONS(681), + [anon_sym_sql] = ACTIONS(683), + [sym_int_literal] = ACTIONS(669), + [sym_float_literal] = ACTIONS(685), + [sym_rune_literal] = ACTIONS(685), + [sym_pseudo_compile_time_identifier] = ACTIONS(687), [anon_sym_shared] = ACTIONS(83), [anon_sym_map_LBRACK] = ACTIONS(85), [anon_sym_chan] = ACTIONS(87), [anon_sym_thread] = ACTIONS(89), [anon_sym_atomic] = ACTIONS(91), - [sym___double_quote] = ACTIONS(1133), - [sym___single_quote] = ACTIONS(1135), - [sym___c_double_quote] = ACTIONS(1137), - [sym___c_single_quote] = ACTIONS(1139), - [sym___r_double_quote] = ACTIONS(1141), - [sym___r_single_quote] = ACTIONS(1143), + [sym___double_quote] = ACTIONS(689), + [sym___single_quote] = ACTIONS(691), + [sym___c_double_quote] = ACTIONS(693), + [sym___c_single_quote] = ACTIONS(695), + [sym___r_double_quote] = ACTIONS(697), + [sym___r_single_quote] = ACTIONS(699), }, [927] = { [sym_line_comment] = STATE(927), [sym_block_comment] = STATE(927), - [sym__expression] = STATE(2263), - [sym__expression_without_blocks] = STATE(2300), - [sym__expression_with_blocks] = STATE(2300), - [sym_inc_expression] = STATE(2307), - [sym_dec_expression] = STATE(2307), - [sym_or_block_expression] = STATE(2307), - [sym_option_propagation_expression] = STATE(2307), - [sym_result_propagation_expression] = STATE(2307), - [sym_anon_struct_value_expression] = STATE(2380), - [sym_go_expression] = STATE(2307), - [sym_spawn_expression] = STATE(2307), - [sym_parenthesized_expression] = STATE(2307), - [sym_call_expression] = STATE(2307), - [sym_type_initializer] = STATE(2380), - [sym_function_literal] = STATE(2307), - [sym_reference_expression] = STATE(2311), - [sym_type_reference_expression] = STATE(3541), - [sym_unary_expression] = STATE(2307), - [sym_receive_expression] = STATE(2307), - [sym_binary_expression] = STATE(2307), - [sym_as_type_cast_expression] = STATE(2307), - [sym__max_group] = STATE(2307), - [sym_literal] = STATE(2292), - [sym_map_init_expression] = STATE(2380), - [sym_array_creation] = STATE(2307), - [sym_fixed_array_creation] = STATE(2307), - [sym_selector_expression] = STATE(2307), - [sym_index_expression] = STATE(2307), - [sym_slice_expression] = STATE(2307), - [sym_if_expression] = STATE(2380), - [sym_compile_time_if_expression] = STATE(2380), - [sym_is_expression] = STATE(2307), - [sym_in_expression] = STATE(2307), - [sym_enum_fetch] = STATE(2307), - [sym_match_expression] = STATE(2380), - [sym_select_expression] = STATE(2380), - [sym_lock_expression] = STATE(2380), - [sym_unsafe_expression] = STATE(2380), - [sym_sql_expression] = STATE(2380), - [sym_c_string_literal] = STATE(2308), - [sym_raw_string_literal] = STATE(2308), - [sym_interpreted_string_literal] = STATE(2308), + [sym__expression] = STATE(2267), + [sym__expression_without_blocks] = STATE(2347), + [sym__expression_with_blocks] = STATE(2347), + [sym_inc_expression] = STATE(2379), + [sym_dec_expression] = STATE(2379), + [sym_or_block_expression] = STATE(2379), + [sym_option_propagation_expression] = STATE(2379), + [sym_result_propagation_expression] = STATE(2379), + [sym_anon_struct_value_expression] = STATE(2378), + [sym_go_expression] = STATE(2379), + [sym_spawn_expression] = STATE(2379), + [sym_parenthesized_expression] = STATE(2379), + [sym_call_expression] = STATE(2379), + [sym_type_initializer] = STATE(2378), + [sym_function_literal] = STATE(2379), + [sym_reference_expression] = STATE(2377), + [sym_type_reference_expression] = STATE(3460), + [sym_unary_expression] = STATE(2379), + [sym_receive_expression] = STATE(2379), + [sym_binary_expression] = STATE(2379), + [sym_as_type_cast_expression] = STATE(2379), + [sym__max_group] = STATE(2379), + [sym_literal] = STATE(2392), + [sym_map_init_expression] = STATE(2378), + [sym_array_creation] = STATE(2379), + [sym_fixed_array_creation] = STATE(2379), + [sym_selector_expression] = STATE(2379), + [sym_index_expression] = STATE(2379), + [sym_slice_expression] = STATE(2379), + [sym_if_expression] = STATE(2378), + [sym_compile_time_if_expression] = STATE(2378), + [sym_is_expression] = STATE(2379), + [sym_in_expression] = STATE(2379), + [sym_enum_fetch] = STATE(2379), + [sym_match_expression] = STATE(2378), + [sym_select_expression] = STATE(2378), + [sym_lock_expression] = STATE(2378), + [sym_unsafe_expression] = STATE(2378), + [sym_sql_expression] = STATE(2378), + [sym_c_string_literal] = STATE(2401), + [sym_raw_string_literal] = STATE(2401), + [sym_interpreted_string_literal] = STATE(2401), [sym_mutability_modifiers] = STATE(939), - [sym_plain_type] = STATE(4297), - [sym__plain_type_without_special] = STATE(2302), - [sym_anon_struct_type] = STATE(2303), - [sym_multi_return_type] = STATE(2302), - [sym_result_type] = STATE(2302), - [sym_option_type] = STATE(2302), - [sym_qualified_type] = STATE(3541), - [sym_fixed_array_type] = STATE(2303), - [sym_array_type] = STATE(2303), - [sym_pointer_type] = STATE(2303), - [sym_wrong_pointer_type] = STATE(2303), - [sym_map_type] = STATE(2303), - [sym_channel_type] = STATE(2303), - [sym_shared_type] = STATE(2303), - [sym_thread_type] = STATE(2303), - [sym_atomic_type] = STATE(2303), - [sym_generic_type] = STATE(2303), - [sym_function_type] = STATE(2303), - [sym_identifier] = ACTIONS(2189), + [sym_plain_type] = STATE(4160), + [sym__plain_type_without_special] = STATE(2360), + [sym_anon_struct_type] = STATE(2362), + [sym_multi_return_type] = STATE(2360), + [sym_result_type] = STATE(2360), + [sym_option_type] = STATE(2360), + [sym_qualified_type] = STATE(3460), + [sym_fixed_array_type] = STATE(2362), + [sym_array_type] = STATE(2362), + [sym_pointer_type] = STATE(2362), + [sym_wrong_pointer_type] = STATE(2362), + [sym_map_type] = STATE(2362), + [sym_channel_type] = STATE(2362), + [sym_shared_type] = STATE(2362), + [sym_thread_type] = STATE(2362), + [sym_atomic_type] = STATE(2362), + [sym_generic_type] = STATE(2362), + [sym_function_type] = STATE(2362), + [sym_identifier] = ACTIONS(2477), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1428), - [anon_sym_LBRACE] = ACTIONS(1430), - [anon_sym_LPAREN] = ACTIONS(1432), - [anon_sym_fn] = ACTIONS(1434), - [anon_sym_PLUS] = ACTIONS(2491), - [anon_sym_DASH] = ACTIONS(2491), + [anon_sym_DOT] = ACTIONS(1430), + [anon_sym_LBRACE] = ACTIONS(1432), + [anon_sym_LPAREN] = ACTIONS(1434), + [anon_sym_fn] = ACTIONS(1436), + [anon_sym_PLUS] = ACTIONS(2271), + [anon_sym_DASH] = ACTIONS(2271), [anon_sym_STAR] = ACTIONS(3354), - [anon_sym_struct] = ACTIONS(1440), + [anon_sym_struct] = ACTIONS(1442), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), [anon_sym_BANG] = ACTIONS(3356), - [anon_sym_go] = ACTIONS(2497), - [anon_sym_spawn] = ACTIONS(2499), - [anon_sym_json_DOTdecode] = ACTIONS(1448), - [anon_sym_LBRACK2] = ACTIONS(1450), - [anon_sym_TILDE] = ACTIONS(2491), - [anon_sym_CARET] = ACTIONS(2491), + [anon_sym_go] = ACTIONS(2277), + [anon_sym_spawn] = ACTIONS(2279), + [anon_sym_json_DOTdecode] = ACTIONS(1450), + [anon_sym_LBRACK2] = ACTIONS(1452), + [anon_sym_TILDE] = ACTIONS(2271), + [anon_sym_CARET] = ACTIONS(2271), [anon_sym_AMP] = ACTIONS(3358), - [anon_sym_LT_DASH] = ACTIONS(2503), - [sym_none] = ACTIONS(1456), - [sym_true] = ACTIONS(1456), - [sym_false] = ACTIONS(1456), - [sym_nil] = ACTIONS(1456), - [anon_sym_if] = ACTIONS(1827), - [anon_sym_DOLLARif] = ACTIONS(1460), - [anon_sym_match] = ACTIONS(1462), - [anon_sym_select] = ACTIONS(1464), - [anon_sym_lock] = ACTIONS(1466), - [anon_sym_rlock] = ACTIONS(1466), - [anon_sym_unsafe] = ACTIONS(1833), - [anon_sym_sql] = ACTIONS(1470), - [sym_int_literal] = ACTIONS(1456), - [sym_float_literal] = ACTIONS(1472), - [sym_rune_literal] = ACTIONS(1472), - [sym_pseudo_compile_time_identifier] = ACTIONS(1474), + [anon_sym_LT_DASH] = ACTIONS(2283), + [sym_none] = ACTIONS(1458), + [sym_true] = ACTIONS(1458), + [sym_false] = ACTIONS(1458), + [sym_nil] = ACTIONS(1458), + [anon_sym_if] = ACTIONS(1833), + [anon_sym_DOLLARif] = ACTIONS(1462), + [anon_sym_match] = ACTIONS(1464), + [anon_sym_select] = ACTIONS(1466), + [anon_sym_lock] = ACTIONS(1468), + [anon_sym_rlock] = ACTIONS(1468), + [anon_sym_unsafe] = ACTIONS(1839), + [anon_sym_sql] = ACTIONS(1472), + [sym_int_literal] = ACTIONS(1458), + [sym_float_literal] = ACTIONS(1474), + [sym_rune_literal] = ACTIONS(1474), + [sym_pseudo_compile_time_identifier] = ACTIONS(1476), [anon_sym_shared] = ACTIONS(83), [anon_sym_map_LBRACK] = ACTIONS(85), [anon_sym_chan] = ACTIONS(87), [anon_sym_thread] = ACTIONS(89), [anon_sym_atomic] = ACTIONS(91), - [sym___double_quote] = ACTIONS(1478), - [sym___single_quote] = ACTIONS(1480), - [sym___c_double_quote] = ACTIONS(1482), - [sym___c_single_quote] = ACTIONS(1484), - [sym___r_double_quote] = ACTIONS(1486), - [sym___r_single_quote] = ACTIONS(1488), + [sym___double_quote] = ACTIONS(1480), + [sym___single_quote] = ACTIONS(1482), + [sym___c_double_quote] = ACTIONS(1484), + [sym___c_single_quote] = ACTIONS(1486), + [sym___r_double_quote] = ACTIONS(1488), + [sym___r_single_quote] = ACTIONS(1490), }, [928] = { [sym_line_comment] = STATE(928), [sym_block_comment] = STATE(928), - [sym__expression] = STATE(2392), - [sym__expression_without_blocks] = STATE(2489), - [sym__expression_with_blocks] = STATE(2489), - [sym_inc_expression] = STATE(2479), - [sym_dec_expression] = STATE(2479), - [sym_or_block_expression] = STATE(2479), - [sym_option_propagation_expression] = STATE(2479), - [sym_result_propagation_expression] = STATE(2479), - [sym_anon_struct_value_expression] = STATE(2491), - [sym_go_expression] = STATE(2479), - [sym_spawn_expression] = STATE(2479), - [sym_parenthesized_expression] = STATE(2479), - [sym_call_expression] = STATE(2479), - [sym_type_initializer] = STATE(2491), - [sym_function_literal] = STATE(2479), - [sym_reference_expression] = STATE(2542), - [sym_type_reference_expression] = STATE(3541), - [sym_unary_expression] = STATE(2479), - [sym_receive_expression] = STATE(2479), - [sym_binary_expression] = STATE(2479), - [sym_as_type_cast_expression] = STATE(2479), - [sym__max_group] = STATE(2479), - [sym_literal] = STATE(2454), - [sym_map_init_expression] = STATE(2491), - [sym_array_creation] = STATE(2479), - [sym_fixed_array_creation] = STATE(2479), - [sym_selector_expression] = STATE(2479), - [sym_index_expression] = STATE(2479), - [sym_slice_expression] = STATE(2479), - [sym_if_expression] = STATE(2491), - [sym_compile_time_if_expression] = STATE(2491), - [sym_is_expression] = STATE(2479), - [sym_in_expression] = STATE(2479), - [sym_enum_fetch] = STATE(2479), - [sym_match_expression] = STATE(2491), - [sym_select_expression] = STATE(2491), - [sym_lock_expression] = STATE(2491), - [sym_unsafe_expression] = STATE(2491), - [sym_sql_expression] = STATE(2491), - [sym_c_string_literal] = STATE(2469), - [sym_raw_string_literal] = STATE(2469), - [sym_interpreted_string_literal] = STATE(2469), - [sym_mutability_modifiers] = STATE(640), - [sym_plain_type] = STATE(4255), - [sym__plain_type_without_special] = STATE(2302), - [sym_anon_struct_type] = STATE(2303), - [sym_multi_return_type] = STATE(2302), - [sym_result_type] = STATE(2302), - [sym_option_type] = STATE(2302), - [sym_qualified_type] = STATE(3541), - [sym_fixed_array_type] = STATE(2303), - [sym_array_type] = STATE(2303), - [sym_pointer_type] = STATE(2303), - [sym_wrong_pointer_type] = STATE(2303), - [sym_map_type] = STATE(2303), - [sym_channel_type] = STATE(2303), - [sym_shared_type] = STATE(2303), - [sym_thread_type] = STATE(2303), - [sym_atomic_type] = STATE(2303), - [sym_generic_type] = STATE(2303), - [sym_function_type] = STATE(2303), - [sym_identifier] = ACTIONS(1695), + [sym__expression] = STATE(2211), + [sym__expression_without_blocks] = STATE(2162), + [sym__expression_with_blocks] = STATE(2162), + [sym_inc_expression] = STATE(2161), + [sym_dec_expression] = STATE(2161), + [sym_or_block_expression] = STATE(2161), + [sym_option_propagation_expression] = STATE(2161), + [sym_result_propagation_expression] = STATE(2161), + [sym_anon_struct_value_expression] = STATE(2160), + [sym_go_expression] = STATE(2161), + [sym_spawn_expression] = STATE(2161), + [sym_parenthesized_expression] = STATE(2161), + [sym_call_expression] = STATE(2161), + [sym_type_initializer] = STATE(2160), + [sym_function_literal] = STATE(2161), + [sym_reference_expression] = STATE(2159), + [sym_type_reference_expression] = STATE(3460), + [sym_unary_expression] = STATE(2161), + [sym_receive_expression] = STATE(2161), + [sym_binary_expression] = STATE(2161), + [sym_as_type_cast_expression] = STATE(2161), + [sym__max_group] = STATE(2161), + [sym_literal] = STATE(2164), + [sym_map_init_expression] = STATE(2160), + [sym_array_creation] = STATE(2161), + [sym_fixed_array_creation] = STATE(2161), + [sym_selector_expression] = STATE(2161), + [sym_index_expression] = STATE(2161), + [sym_slice_expression] = STATE(2161), + [sym_if_expression] = STATE(2160), + [sym_compile_time_if_expression] = STATE(2160), + [sym_is_expression] = STATE(2161), + [sym_in_expression] = STATE(2161), + [sym_enum_fetch] = STATE(2161), + [sym_match_expression] = STATE(2160), + [sym_select_expression] = STATE(2160), + [sym_lock_expression] = STATE(2160), + [sym_unsafe_expression] = STATE(2160), + [sym_sql_expression] = STATE(2160), + [sym_c_string_literal] = STATE(2166), + [sym_raw_string_literal] = STATE(2166), + [sym_interpreted_string_literal] = STATE(2166), + [sym_mutability_modifiers] = STATE(575), + [sym_plain_type] = STATE(4173), + [sym__plain_type_without_special] = STATE(2360), + [sym_anon_struct_type] = STATE(2362), + [sym_multi_return_type] = STATE(2360), + [sym_result_type] = STATE(2360), + [sym_option_type] = STATE(2360), + [sym_qualified_type] = STATE(3460), + [sym_fixed_array_type] = STATE(2362), + [sym_array_type] = STATE(2362), + [sym_pointer_type] = STATE(2362), + [sym_wrong_pointer_type] = STATE(2362), + [sym_map_type] = STATE(2362), + [sym_channel_type] = STATE(2362), + [sym_shared_type] = STATE(2362), + [sym_thread_type] = STATE(2362), + [sym_atomic_type] = STATE(2362), + [sym_generic_type] = STATE(2362), + [sym_function_type] = STATE(2362), + [sym_identifier] = ACTIONS(3292), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1697), - [anon_sym_LBRACE] = ACTIONS(2697), - [anon_sym_LPAREN] = ACTIONS(2699), - [anon_sym_fn] = ACTIONS(1703), - [anon_sym_PLUS] = ACTIONS(3380), - [anon_sym_DASH] = ACTIONS(3380), - [anon_sym_STAR] = ACTIONS(3382), - [anon_sym_struct] = ACTIONS(1709), + [anon_sym_DOT] = ACTIONS(3294), + [anon_sym_LBRACE] = ACTIONS(3296), + [anon_sym_LPAREN] = ACTIONS(3298), + [anon_sym_fn] = ACTIONS(3300), + [anon_sym_PLUS] = ACTIONS(3404), + [anon_sym_DASH] = ACTIONS(3404), + [anon_sym_STAR] = ACTIONS(3406), + [anon_sym_struct] = ACTIONS(3306), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(3384), - [anon_sym_go] = ACTIONS(3386), - [anon_sym_spawn] = ACTIONS(3388), - [anon_sym_json_DOTdecode] = ACTIONS(2707), - [anon_sym_LBRACK2] = ACTIONS(2709), - [anon_sym_TILDE] = ACTIONS(3380), - [anon_sym_CARET] = ACTIONS(3380), - [anon_sym_AMP] = ACTIONS(3390), - [anon_sym_LT_DASH] = ACTIONS(3392), - [sym_none] = ACTIONS(1725), - [sym_true] = ACTIONS(1725), - [sym_false] = ACTIONS(1725), - [sym_nil] = ACTIONS(1725), - [anon_sym_if] = ACTIONS(1727), - [anon_sym_DOLLARif] = ACTIONS(1729), - [anon_sym_match] = ACTIONS(1731), - [anon_sym_select] = ACTIONS(3394), - [anon_sym_lock] = ACTIONS(3396), - [anon_sym_rlock] = ACTIONS(3396), - [anon_sym_unsafe] = ACTIONS(1737), - [anon_sym_sql] = ACTIONS(1739), - [sym_int_literal] = ACTIONS(1725), - [sym_float_literal] = ACTIONS(2715), - [sym_rune_literal] = ACTIONS(2715), - [sym_pseudo_compile_time_identifier] = ACTIONS(1741), + [anon_sym_BANG] = ACTIONS(3408), + [anon_sym_go] = ACTIONS(3410), + [anon_sym_spawn] = ACTIONS(3412), + [anon_sym_json_DOTdecode] = ACTIONS(3314), + [anon_sym_LBRACK2] = ACTIONS(3316), + [anon_sym_TILDE] = ACTIONS(3404), + [anon_sym_CARET] = ACTIONS(3404), + [anon_sym_AMP] = ACTIONS(3414), + [anon_sym_LT_DASH] = ACTIONS(3416), + [sym_none] = ACTIONS(3322), + [sym_true] = ACTIONS(3322), + [sym_false] = ACTIONS(3322), + [sym_nil] = ACTIONS(3322), + [anon_sym_if] = ACTIONS(3324), + [anon_sym_DOLLARif] = ACTIONS(3326), + [anon_sym_match] = ACTIONS(3328), + [anon_sym_select] = ACTIONS(3418), + [anon_sym_lock] = ACTIONS(3420), + [anon_sym_rlock] = ACTIONS(3420), + [anon_sym_unsafe] = ACTIONS(3334), + [anon_sym_sql] = ACTIONS(3336), + [sym_int_literal] = ACTIONS(3322), + [sym_float_literal] = ACTIONS(3338), + [sym_rune_literal] = ACTIONS(3338), + [sym_pseudo_compile_time_identifier] = ACTIONS(3340), [anon_sym_shared] = ACTIONS(83), [anon_sym_map_LBRACK] = ACTIONS(85), [anon_sym_chan] = ACTIONS(87), [anon_sym_thread] = ACTIONS(89), [anon_sym_atomic] = ACTIONS(91), - [sym___double_quote] = ACTIONS(2717), - [sym___single_quote] = ACTIONS(2719), - [sym___c_double_quote] = ACTIONS(2721), - [sym___c_single_quote] = ACTIONS(2723), - [sym___r_double_quote] = ACTIONS(2725), - [sym___r_single_quote] = ACTIONS(2727), + [sym___double_quote] = ACTIONS(3342), + [sym___single_quote] = ACTIONS(3344), + [sym___c_double_quote] = ACTIONS(3346), + [sym___c_single_quote] = ACTIONS(3348), + [sym___r_double_quote] = ACTIONS(3350), + [sym___r_single_quote] = ACTIONS(3352), }, [929] = { [sym_line_comment] = STATE(929), [sym_block_comment] = STATE(929), - [sym__expression] = STATE(2295), - [sym__expression_without_blocks] = STATE(2489), - [sym__expression_with_blocks] = STATE(2489), - [sym_inc_expression] = STATE(2479), - [sym_dec_expression] = STATE(2479), - [sym_or_block_expression] = STATE(2479), - [sym_option_propagation_expression] = STATE(2479), - [sym_result_propagation_expression] = STATE(2479), - [sym_anon_struct_value_expression] = STATE(2491), - [sym_go_expression] = STATE(2479), - [sym_spawn_expression] = STATE(2479), - [sym_parenthesized_expression] = STATE(2479), - [sym_call_expression] = STATE(2479), - [sym_type_initializer] = STATE(2491), - [sym_function_literal] = STATE(2479), - [sym_reference_expression] = STATE(2542), - [sym_type_reference_expression] = STATE(3541), - [sym_unary_expression] = STATE(2479), - [sym_receive_expression] = STATE(2479), - [sym_binary_expression] = STATE(2479), - [sym_as_type_cast_expression] = STATE(2479), - [sym__max_group] = STATE(2479), - [sym_literal] = STATE(2454), - [sym_map_init_expression] = STATE(2491), - [sym_array_creation] = STATE(2479), - [sym_fixed_array_creation] = STATE(2479), - [sym_selector_expression] = STATE(2479), - [sym_index_expression] = STATE(2479), - [sym_slice_expression] = STATE(2479), - [sym_if_expression] = STATE(2491), - [sym_compile_time_if_expression] = STATE(2491), - [sym_is_expression] = STATE(2479), - [sym_in_expression] = STATE(2479), - [sym_enum_fetch] = STATE(2479), - [sym_match_expression] = STATE(2491), - [sym_select_expression] = STATE(2491), - [sym_lock_expression] = STATE(2491), - [sym_unsafe_expression] = STATE(2491), - [sym_sql_expression] = STATE(2491), - [sym_c_string_literal] = STATE(2469), - [sym_raw_string_literal] = STATE(2469), - [sym_interpreted_string_literal] = STATE(2469), - [sym_mutability_modifiers] = STATE(640), - [sym_plain_type] = STATE(4255), - [sym__plain_type_without_special] = STATE(2302), - [sym_anon_struct_type] = STATE(2303), - [sym_multi_return_type] = STATE(2302), - [sym_result_type] = STATE(2302), - [sym_option_type] = STATE(2302), - [sym_qualified_type] = STATE(3541), - [sym_fixed_array_type] = STATE(2303), - [sym_array_type] = STATE(2303), - [sym_pointer_type] = STATE(2303), - [sym_wrong_pointer_type] = STATE(2303), - [sym_map_type] = STATE(2303), - [sym_channel_type] = STATE(2303), - [sym_shared_type] = STATE(2303), - [sym_thread_type] = STATE(2303), - [sym_atomic_type] = STATE(2303), - [sym_generic_type] = STATE(2303), - [sym_function_type] = STATE(2303), - [sym_identifier] = ACTIONS(1695), + [sym__expression] = STATE(2826), + [sym__expression_without_blocks] = STATE(2879), + [sym__expression_with_blocks] = STATE(2347), + [sym_inc_expression] = STATE(2379), + [sym_dec_expression] = STATE(2379), + [sym_or_block_expression] = STATE(2379), + [sym_option_propagation_expression] = STATE(2379), + [sym_result_propagation_expression] = STATE(2379), + [sym_anon_struct_value_expression] = STATE(2378), + [sym_go_expression] = STATE(2379), + [sym_spawn_expression] = STATE(2379), + [sym_parenthesized_expression] = STATE(2379), + [sym_call_expression] = STATE(2379), + [sym_type_initializer] = STATE(2378), + [sym_function_literal] = STATE(2379), + [sym_reference_expression] = STATE(2377), + [sym_type_reference_expression] = STATE(3460), + [sym_unary_expression] = STATE(2379), + [sym_receive_expression] = STATE(2379), + [sym_binary_expression] = STATE(2379), + [sym_as_type_cast_expression] = STATE(2379), + [sym__max_group] = STATE(2379), + [sym_literal] = STATE(2392), + [sym_map_init_expression] = STATE(2378), + [sym_array_creation] = STATE(2379), + [sym_fixed_array_creation] = STATE(2379), + [sym_selector_expression] = STATE(2379), + [sym_index_expression] = STATE(2379), + [sym_slice_expression] = STATE(2379), + [sym_if_expression] = STATE(2378), + [sym_compile_time_if_expression] = STATE(2378), + [sym_is_expression] = STATE(2379), + [sym_in_expression] = STATE(2379), + [sym_enum_fetch] = STATE(2379), + [sym_match_expression] = STATE(2378), + [sym_select_expression] = STATE(2378), + [sym_lock_expression] = STATE(2378), + [sym_unsafe_expression] = STATE(2378), + [sym_sql_expression] = STATE(2378), + [sym_c_string_literal] = STATE(2401), + [sym_raw_string_literal] = STATE(2401), + [sym_interpreted_string_literal] = STATE(2401), + [sym_mutability_modifiers] = STATE(553), + [sym_plain_type] = STATE(4160), + [sym__plain_type_without_special] = STATE(2360), + [sym_anon_struct_type] = STATE(2362), + [sym_multi_return_type] = STATE(2360), + [sym_result_type] = STATE(2360), + [sym_option_type] = STATE(2360), + [sym_qualified_type] = STATE(3460), + [sym_fixed_array_type] = STATE(2362), + [sym_array_type] = STATE(2362), + [sym_pointer_type] = STATE(2362), + [sym_wrong_pointer_type] = STATE(2362), + [sym_map_type] = STATE(2362), + [sym_channel_type] = STATE(2362), + [sym_shared_type] = STATE(2362), + [sym_thread_type] = STATE(2362), + [sym_atomic_type] = STATE(2362), + [sym_generic_type] = STATE(2362), + [sym_function_type] = STATE(2362), + [sym_identifier] = ACTIONS(1815), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1697), - [anon_sym_LBRACE] = ACTIONS(2697), - [anon_sym_LPAREN] = ACTIONS(2699), - [anon_sym_fn] = ACTIONS(1703), - [anon_sym_PLUS] = ACTIONS(3380), - [anon_sym_DASH] = ACTIONS(3380), - [anon_sym_STAR] = ACTIONS(3382), - [anon_sym_struct] = ACTIONS(1709), + [anon_sym_DOT] = ACTIONS(1430), + [anon_sym_LBRACE] = ACTIONS(1432), + [anon_sym_LPAREN] = ACTIONS(1434), + [anon_sym_fn] = ACTIONS(1436), + [anon_sym_PLUS] = ACTIONS(1817), + [anon_sym_DASH] = ACTIONS(1817), + [anon_sym_STAR] = ACTIONS(1819), + [anon_sym_struct] = ACTIONS(1442), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(3384), - [anon_sym_go] = ACTIONS(3386), - [anon_sym_spawn] = ACTIONS(3388), - [anon_sym_json_DOTdecode] = ACTIONS(2707), - [anon_sym_LBRACK2] = ACTIONS(2709), - [anon_sym_TILDE] = ACTIONS(3380), - [anon_sym_CARET] = ACTIONS(3380), - [anon_sym_AMP] = ACTIONS(3390), - [anon_sym_LT_DASH] = ACTIONS(3392), - [sym_none] = ACTIONS(1725), - [sym_true] = ACTIONS(1725), - [sym_false] = ACTIONS(1725), - [sym_nil] = ACTIONS(1725), - [anon_sym_if] = ACTIONS(1727), - [anon_sym_DOLLARif] = ACTIONS(1729), - [anon_sym_match] = ACTIONS(1731), - [anon_sym_select] = ACTIONS(3394), - [anon_sym_lock] = ACTIONS(3396), - [anon_sym_rlock] = ACTIONS(3396), - [anon_sym_unsafe] = ACTIONS(1737), - [anon_sym_sql] = ACTIONS(1739), - [sym_int_literal] = ACTIONS(1725), - [sym_float_literal] = ACTIONS(2715), - [sym_rune_literal] = ACTIONS(2715), - [sym_pseudo_compile_time_identifier] = ACTIONS(1741), + [anon_sym_BANG] = ACTIONS(1821), + [anon_sym_go] = ACTIONS(1823), + [anon_sym_spawn] = ACTIONS(1825), + [anon_sym_json_DOTdecode] = ACTIONS(1450), + [anon_sym_LBRACK2] = ACTIONS(1827), + [anon_sym_TILDE] = ACTIONS(1817), + [anon_sym_CARET] = ACTIONS(1817), + [anon_sym_AMP] = ACTIONS(1829), + [anon_sym_LT_DASH] = ACTIONS(1831), + [sym_none] = ACTIONS(1458), + [sym_true] = ACTIONS(1458), + [sym_false] = ACTIONS(1458), + [sym_nil] = ACTIONS(1458), + [anon_sym_if] = ACTIONS(1833), + [anon_sym_DOLLARif] = ACTIONS(1462), + [anon_sym_match] = ACTIONS(1464), + [anon_sym_select] = ACTIONS(1466), + [anon_sym_lock] = ACTIONS(1468), + [anon_sym_rlock] = ACTIONS(1468), + [anon_sym_unsafe] = ACTIONS(1839), + [anon_sym_sql] = ACTIONS(1472), + [sym_int_literal] = ACTIONS(1458), + [sym_float_literal] = ACTIONS(1474), + [sym_rune_literal] = ACTIONS(1474), + [sym_pseudo_compile_time_identifier] = ACTIONS(1476), [anon_sym_shared] = ACTIONS(83), [anon_sym_map_LBRACK] = ACTIONS(85), [anon_sym_chan] = ACTIONS(87), [anon_sym_thread] = ACTIONS(89), [anon_sym_atomic] = ACTIONS(91), - [sym___double_quote] = ACTIONS(2717), - [sym___single_quote] = ACTIONS(2719), - [sym___c_double_quote] = ACTIONS(2721), - [sym___c_single_quote] = ACTIONS(2723), - [sym___r_double_quote] = ACTIONS(2725), - [sym___r_single_quote] = ACTIONS(2727), + [sym___double_quote] = ACTIONS(1480), + [sym___single_quote] = ACTIONS(1482), + [sym___c_double_quote] = ACTIONS(1484), + [sym___c_single_quote] = ACTIONS(1486), + [sym___r_double_quote] = ACTIONS(1488), + [sym___r_single_quote] = ACTIONS(1490), }, [930] = { [sym_line_comment] = STATE(930), [sym_block_comment] = STATE(930), - [sym__expression] = STATE(2385), - [sym__expression_without_blocks] = STATE(2489), - [sym__expression_with_blocks] = STATE(2489), - [sym_inc_expression] = STATE(2479), - [sym_dec_expression] = STATE(2479), - [sym_or_block_expression] = STATE(2479), - [sym_option_propagation_expression] = STATE(2479), - [sym_result_propagation_expression] = STATE(2479), - [sym_anon_struct_value_expression] = STATE(2491), - [sym_go_expression] = STATE(2479), - [sym_spawn_expression] = STATE(2479), - [sym_parenthesized_expression] = STATE(2479), - [sym_call_expression] = STATE(2479), - [sym_type_initializer] = STATE(2491), - [sym_function_literal] = STATE(2479), - [sym_reference_expression] = STATE(2542), - [sym_type_reference_expression] = STATE(3541), - [sym_unary_expression] = STATE(2479), - [sym_receive_expression] = STATE(2479), - [sym_binary_expression] = STATE(2479), - [sym_as_type_cast_expression] = STATE(2479), - [sym__max_group] = STATE(2479), - [sym_literal] = STATE(2454), - [sym_map_init_expression] = STATE(2491), - [sym_array_creation] = STATE(2479), - [sym_fixed_array_creation] = STATE(2479), - [sym_selector_expression] = STATE(2479), - [sym_index_expression] = STATE(2479), - [sym_slice_expression] = STATE(2479), - [sym_if_expression] = STATE(2491), - [sym_compile_time_if_expression] = STATE(2491), - [sym_is_expression] = STATE(2479), - [sym_in_expression] = STATE(2479), - [sym_enum_fetch] = STATE(2479), - [sym_match_expression] = STATE(2491), - [sym_select_expression] = STATE(2491), - [sym_lock_expression] = STATE(2491), - [sym_unsafe_expression] = STATE(2491), - [sym_sql_expression] = STATE(2491), - [sym_c_string_literal] = STATE(2469), - [sym_raw_string_literal] = STATE(2469), - [sym_interpreted_string_literal] = STATE(2469), - [sym_mutability_modifiers] = STATE(640), - [sym_plain_type] = STATE(4255), - [sym__plain_type_without_special] = STATE(2302), - [sym_anon_struct_type] = STATE(2303), - [sym_multi_return_type] = STATE(2302), - [sym_result_type] = STATE(2302), - [sym_option_type] = STATE(2302), - [sym_qualified_type] = STATE(3541), - [sym_fixed_array_type] = STATE(2303), - [sym_array_type] = STATE(2303), - [sym_pointer_type] = STATE(2303), - [sym_wrong_pointer_type] = STATE(2303), - [sym_map_type] = STATE(2303), - [sym_channel_type] = STATE(2303), - [sym_shared_type] = STATE(2303), - [sym_thread_type] = STATE(2303), - [sym_atomic_type] = STATE(2303), - [sym_generic_type] = STATE(2303), - [sym_function_type] = STATE(2303), - [sym_identifier] = ACTIONS(1695), + [sym__expression] = STATE(2199), + [sym__expression_without_blocks] = STATE(2162), + [sym__expression_with_blocks] = STATE(2162), + [sym_inc_expression] = STATE(2161), + [sym_dec_expression] = STATE(2161), + [sym_or_block_expression] = STATE(2161), + [sym_option_propagation_expression] = STATE(2161), + [sym_result_propagation_expression] = STATE(2161), + [sym_anon_struct_value_expression] = STATE(2160), + [sym_go_expression] = STATE(2161), + [sym_spawn_expression] = STATE(2161), + [sym_parenthesized_expression] = STATE(2161), + [sym_call_expression] = STATE(2161), + [sym_type_initializer] = STATE(2160), + [sym_function_literal] = STATE(2161), + [sym_reference_expression] = STATE(2159), + [sym_type_reference_expression] = STATE(3460), + [sym_unary_expression] = STATE(2161), + [sym_receive_expression] = STATE(2161), + [sym_binary_expression] = STATE(2161), + [sym_as_type_cast_expression] = STATE(2161), + [sym__max_group] = STATE(2161), + [sym_literal] = STATE(2164), + [sym_map_init_expression] = STATE(2160), + [sym_array_creation] = STATE(2161), + [sym_fixed_array_creation] = STATE(2161), + [sym_selector_expression] = STATE(2161), + [sym_index_expression] = STATE(2161), + [sym_slice_expression] = STATE(2161), + [sym_if_expression] = STATE(2160), + [sym_compile_time_if_expression] = STATE(2160), + [sym_is_expression] = STATE(2161), + [sym_in_expression] = STATE(2161), + [sym_enum_fetch] = STATE(2161), + [sym_match_expression] = STATE(2160), + [sym_select_expression] = STATE(2160), + [sym_lock_expression] = STATE(2160), + [sym_unsafe_expression] = STATE(2160), + [sym_sql_expression] = STATE(2160), + [sym_c_string_literal] = STATE(2166), + [sym_raw_string_literal] = STATE(2166), + [sym_interpreted_string_literal] = STATE(2166), + [sym_mutability_modifiers] = STATE(575), + [sym_plain_type] = STATE(4173), + [sym__plain_type_without_special] = STATE(2360), + [sym_anon_struct_type] = STATE(2362), + [sym_multi_return_type] = STATE(2360), + [sym_result_type] = STATE(2360), + [sym_option_type] = STATE(2360), + [sym_qualified_type] = STATE(3460), + [sym_fixed_array_type] = STATE(2362), + [sym_array_type] = STATE(2362), + [sym_pointer_type] = STATE(2362), + [sym_wrong_pointer_type] = STATE(2362), + [sym_map_type] = STATE(2362), + [sym_channel_type] = STATE(2362), + [sym_shared_type] = STATE(2362), + [sym_thread_type] = STATE(2362), + [sym_atomic_type] = STATE(2362), + [sym_generic_type] = STATE(2362), + [sym_function_type] = STATE(2362), + [sym_identifier] = ACTIONS(3292), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1697), - [anon_sym_LBRACE] = ACTIONS(2697), - [anon_sym_LPAREN] = ACTIONS(2699), - [anon_sym_fn] = ACTIONS(1703), - [anon_sym_PLUS] = ACTIONS(3380), - [anon_sym_DASH] = ACTIONS(3380), - [anon_sym_STAR] = ACTIONS(3382), - [anon_sym_struct] = ACTIONS(1709), + [anon_sym_DOT] = ACTIONS(3294), + [anon_sym_LBRACE] = ACTIONS(3296), + [anon_sym_LPAREN] = ACTIONS(3298), + [anon_sym_fn] = ACTIONS(3300), + [anon_sym_PLUS] = ACTIONS(3404), + [anon_sym_DASH] = ACTIONS(3404), + [anon_sym_STAR] = ACTIONS(3406), + [anon_sym_struct] = ACTIONS(3306), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(3384), - [anon_sym_go] = ACTIONS(3386), - [anon_sym_spawn] = ACTIONS(3388), - [anon_sym_json_DOTdecode] = ACTIONS(2707), - [anon_sym_LBRACK2] = ACTIONS(2709), - [anon_sym_TILDE] = ACTIONS(3380), - [anon_sym_CARET] = ACTIONS(3380), - [anon_sym_AMP] = ACTIONS(3390), - [anon_sym_LT_DASH] = ACTIONS(3392), - [sym_none] = ACTIONS(1725), - [sym_true] = ACTIONS(1725), - [sym_false] = ACTIONS(1725), - [sym_nil] = ACTIONS(1725), - [anon_sym_if] = ACTIONS(1727), - [anon_sym_DOLLARif] = ACTIONS(1729), - [anon_sym_match] = ACTIONS(1731), - [anon_sym_select] = ACTIONS(3394), - [anon_sym_lock] = ACTIONS(3396), - [anon_sym_rlock] = ACTIONS(3396), - [anon_sym_unsafe] = ACTIONS(1737), - [anon_sym_sql] = ACTIONS(1739), - [sym_int_literal] = ACTIONS(1725), - [sym_float_literal] = ACTIONS(2715), - [sym_rune_literal] = ACTIONS(2715), - [sym_pseudo_compile_time_identifier] = ACTIONS(1741), + [anon_sym_BANG] = ACTIONS(3408), + [anon_sym_go] = ACTIONS(3410), + [anon_sym_spawn] = ACTIONS(3412), + [anon_sym_json_DOTdecode] = ACTIONS(3314), + [anon_sym_LBRACK2] = ACTIONS(3316), + [anon_sym_TILDE] = ACTIONS(3404), + [anon_sym_CARET] = ACTIONS(3404), + [anon_sym_AMP] = ACTIONS(3414), + [anon_sym_LT_DASH] = ACTIONS(3416), + [sym_none] = ACTIONS(3322), + [sym_true] = ACTIONS(3322), + [sym_false] = ACTIONS(3322), + [sym_nil] = ACTIONS(3322), + [anon_sym_if] = ACTIONS(3324), + [anon_sym_DOLLARif] = ACTIONS(3326), + [anon_sym_match] = ACTIONS(3328), + [anon_sym_select] = ACTIONS(3418), + [anon_sym_lock] = ACTIONS(3420), + [anon_sym_rlock] = ACTIONS(3420), + [anon_sym_unsafe] = ACTIONS(3334), + [anon_sym_sql] = ACTIONS(3336), + [sym_int_literal] = ACTIONS(3322), + [sym_float_literal] = ACTIONS(3338), + [sym_rune_literal] = ACTIONS(3338), + [sym_pseudo_compile_time_identifier] = ACTIONS(3340), [anon_sym_shared] = ACTIONS(83), [anon_sym_map_LBRACK] = ACTIONS(85), [anon_sym_chan] = ACTIONS(87), [anon_sym_thread] = ACTIONS(89), [anon_sym_atomic] = ACTIONS(91), - [sym___double_quote] = ACTIONS(2717), - [sym___single_quote] = ACTIONS(2719), - [sym___c_double_quote] = ACTIONS(2721), - [sym___c_single_quote] = ACTIONS(2723), - [sym___r_double_quote] = ACTIONS(2725), - [sym___r_single_quote] = ACTIONS(2727), + [sym___double_quote] = ACTIONS(3342), + [sym___single_quote] = ACTIONS(3344), + [sym___c_double_quote] = ACTIONS(3346), + [sym___c_single_quote] = ACTIONS(3348), + [sym___r_double_quote] = ACTIONS(3350), + [sym___r_single_quote] = ACTIONS(3352), }, [931] = { [sym_line_comment] = STATE(931), [sym_block_comment] = STATE(931), - [sym__expression] = STATE(2472), - [sym__expression_without_blocks] = STATE(2625), - [sym__expression_with_blocks] = STATE(2625), - [sym_inc_expression] = STATE(2765), - [sym_dec_expression] = STATE(2765), - [sym_or_block_expression] = STATE(2765), - [sym_option_propagation_expression] = STATE(2765), - [sym_result_propagation_expression] = STATE(2765), - [sym_anon_struct_value_expression] = STATE(2619), - [sym_go_expression] = STATE(2765), - [sym_spawn_expression] = STATE(2765), - [sym_parenthesized_expression] = STATE(2765), - [sym_call_expression] = STATE(2765), - [sym_type_initializer] = STATE(2619), - [sym_function_literal] = STATE(2765), - [sym_reference_expression] = STATE(2764), - [sym_type_reference_expression] = STATE(3541), - [sym_unary_expression] = STATE(2765), - [sym_receive_expression] = STATE(2765), - [sym_binary_expression] = STATE(2765), - [sym_as_type_cast_expression] = STATE(2765), - [sym__max_group] = STATE(2765), - [sym_literal] = STATE(2769), - [sym_map_init_expression] = STATE(2619), - [sym_array_creation] = STATE(2765), - [sym_fixed_array_creation] = STATE(2765), - [sym_selector_expression] = STATE(2765), - [sym_index_expression] = STATE(2765), - [sym_slice_expression] = STATE(2765), - [sym_if_expression] = STATE(2619), - [sym_compile_time_if_expression] = STATE(2619), - [sym_is_expression] = STATE(2765), - [sym_in_expression] = STATE(2765), - [sym_enum_fetch] = STATE(2765), - [sym_match_expression] = STATE(2619), - [sym_select_expression] = STATE(2619), - [sym_lock_expression] = STATE(2619), - [sym_unsafe_expression] = STATE(2619), - [sym_sql_expression] = STATE(2619), - [sym_c_string_literal] = STATE(2660), - [sym_raw_string_literal] = STATE(2660), - [sym_interpreted_string_literal] = STATE(2660), - [sym_mutability_modifiers] = STATE(567), - [sym_plain_type] = STATE(4008), - [sym__plain_type_without_special] = STATE(2302), - [sym_anon_struct_type] = STATE(2303), - [sym_multi_return_type] = STATE(2302), - [sym_result_type] = STATE(2302), - [sym_option_type] = STATE(2302), - [sym_qualified_type] = STATE(3541), - [sym_fixed_array_type] = STATE(2303), - [sym_array_type] = STATE(2303), - [sym_pointer_type] = STATE(2303), - [sym_wrong_pointer_type] = STATE(2303), - [sym_map_type] = STATE(2303), - [sym_channel_type] = STATE(2303), - [sym_shared_type] = STATE(2303), - [sym_thread_type] = STATE(2303), - [sym_atomic_type] = STATE(2303), - [sym_generic_type] = STATE(2303), - [sym_function_type] = STATE(2303), - [sym_identifier] = ACTIONS(1807), + [sym__expression] = STATE(2146), + [sym__expression_without_blocks] = STATE(2162), + [sym__expression_with_blocks] = STATE(2162), + [sym_inc_expression] = STATE(2161), + [sym_dec_expression] = STATE(2161), + [sym_or_block_expression] = STATE(2161), + [sym_option_propagation_expression] = STATE(2161), + [sym_result_propagation_expression] = STATE(2161), + [sym_anon_struct_value_expression] = STATE(2160), + [sym_go_expression] = STATE(2161), + [sym_spawn_expression] = STATE(2161), + [sym_parenthesized_expression] = STATE(2161), + [sym_call_expression] = STATE(2161), + [sym_type_initializer] = STATE(2160), + [sym_function_literal] = STATE(2161), + [sym_reference_expression] = STATE(2159), + [sym_type_reference_expression] = STATE(3460), + [sym_unary_expression] = STATE(2161), + [sym_receive_expression] = STATE(2161), + [sym_binary_expression] = STATE(2161), + [sym_as_type_cast_expression] = STATE(2161), + [sym__max_group] = STATE(2161), + [sym_literal] = STATE(2164), + [sym_map_init_expression] = STATE(2160), + [sym_array_creation] = STATE(2161), + [sym_fixed_array_creation] = STATE(2161), + [sym_selector_expression] = STATE(2161), + [sym_index_expression] = STATE(2161), + [sym_slice_expression] = STATE(2161), + [sym_if_expression] = STATE(2160), + [sym_compile_time_if_expression] = STATE(2160), + [sym_is_expression] = STATE(2161), + [sym_in_expression] = STATE(2161), + [sym_enum_fetch] = STATE(2161), + [sym_match_expression] = STATE(2160), + [sym_select_expression] = STATE(2160), + [sym_lock_expression] = STATE(2160), + [sym_unsafe_expression] = STATE(2160), + [sym_sql_expression] = STATE(2160), + [sym_c_string_literal] = STATE(2166), + [sym_raw_string_literal] = STATE(2166), + [sym_interpreted_string_literal] = STATE(2166), + [sym_mutability_modifiers] = STATE(575), + [sym_plain_type] = STATE(4173), + [sym__plain_type_without_special] = STATE(2360), + [sym_anon_struct_type] = STATE(2362), + [sym_multi_return_type] = STATE(2360), + [sym_result_type] = STATE(2360), + [sym_option_type] = STATE(2360), + [sym_qualified_type] = STATE(3460), + [sym_fixed_array_type] = STATE(2362), + [sym_array_type] = STATE(2362), + [sym_pointer_type] = STATE(2362), + [sym_wrong_pointer_type] = STATE(2362), + [sym_map_type] = STATE(2362), + [sym_channel_type] = STATE(2362), + [sym_shared_type] = STATE(2362), + [sym_thread_type] = STATE(2362), + [sym_atomic_type] = STATE(2362), + [sym_generic_type] = STATE(2362), + [sym_function_type] = STATE(2362), + [sym_identifier] = ACTIONS(3292), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1081), - [anon_sym_LBRACE] = ACTIONS(1083), - [anon_sym_LPAREN] = ACTIONS(1087), - [anon_sym_fn] = ACTIONS(1089), - [anon_sym_PLUS] = ACTIONS(3120), - [anon_sym_DASH] = ACTIONS(3120), - [anon_sym_STAR] = ACTIONS(3122), - [anon_sym_struct] = ACTIONS(1095), + [anon_sym_DOT] = ACTIONS(3294), + [anon_sym_LBRACE] = ACTIONS(3296), + [anon_sym_LPAREN] = ACTIONS(3298), + [anon_sym_fn] = ACTIONS(3300), + [anon_sym_PLUS] = ACTIONS(3404), + [anon_sym_DASH] = ACTIONS(3404), + [anon_sym_STAR] = ACTIONS(3406), + [anon_sym_struct] = ACTIONS(3306), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(3124), - [anon_sym_go] = ACTIONS(3126), - [anon_sym_spawn] = ACTIONS(3128), - [anon_sym_json_DOTdecode] = ACTIONS(1103), - [anon_sym_LBRACK2] = ACTIONS(1105), - [anon_sym_TILDE] = ACTIONS(3120), - [anon_sym_CARET] = ACTIONS(3120), - [anon_sym_AMP] = ACTIONS(3130), - [anon_sym_LT_DASH] = ACTIONS(3132), - [sym_none] = ACTIONS(1111), - [sym_true] = ACTIONS(1111), - [sym_false] = ACTIONS(1111), - [sym_nil] = ACTIONS(1111), - [anon_sym_if] = ACTIONS(1113), - [anon_sym_DOLLARif] = ACTIONS(1117), - [anon_sym_match] = ACTIONS(1119), - [anon_sym_select] = ACTIONS(3134), - [anon_sym_lock] = ACTIONS(3136), - [anon_sym_rlock] = ACTIONS(3136), - [anon_sym_unsafe] = ACTIONS(1125), - [anon_sym_sql] = ACTIONS(1127), - [sym_int_literal] = ACTIONS(1111), - [sym_float_literal] = ACTIONS(1129), - [sym_rune_literal] = ACTIONS(1129), - [sym_pseudo_compile_time_identifier] = ACTIONS(1131), + [anon_sym_BANG] = ACTIONS(3408), + [anon_sym_go] = ACTIONS(3410), + [anon_sym_spawn] = ACTIONS(3412), + [anon_sym_json_DOTdecode] = ACTIONS(3314), + [anon_sym_LBRACK2] = ACTIONS(3316), + [anon_sym_TILDE] = ACTIONS(3404), + [anon_sym_CARET] = ACTIONS(3404), + [anon_sym_AMP] = ACTIONS(3414), + [anon_sym_LT_DASH] = ACTIONS(3416), + [sym_none] = ACTIONS(3322), + [sym_true] = ACTIONS(3322), + [sym_false] = ACTIONS(3322), + [sym_nil] = ACTIONS(3322), + [anon_sym_if] = ACTIONS(3324), + [anon_sym_DOLLARif] = ACTIONS(3326), + [anon_sym_match] = ACTIONS(3328), + [anon_sym_select] = ACTIONS(3418), + [anon_sym_lock] = ACTIONS(3420), + [anon_sym_rlock] = ACTIONS(3420), + [anon_sym_unsafe] = ACTIONS(3334), + [anon_sym_sql] = ACTIONS(3336), + [sym_int_literal] = ACTIONS(3322), + [sym_float_literal] = ACTIONS(3338), + [sym_rune_literal] = ACTIONS(3338), + [sym_pseudo_compile_time_identifier] = ACTIONS(3340), [anon_sym_shared] = ACTIONS(83), [anon_sym_map_LBRACK] = ACTIONS(85), [anon_sym_chan] = ACTIONS(87), [anon_sym_thread] = ACTIONS(89), [anon_sym_atomic] = ACTIONS(91), - [sym___double_quote] = ACTIONS(1133), - [sym___single_quote] = ACTIONS(1135), - [sym___c_double_quote] = ACTIONS(1137), - [sym___c_single_quote] = ACTIONS(1139), - [sym___r_double_quote] = ACTIONS(1141), - [sym___r_single_quote] = ACTIONS(1143), + [sym___double_quote] = ACTIONS(3342), + [sym___single_quote] = ACTIONS(3344), + [sym___c_double_quote] = ACTIONS(3346), + [sym___c_single_quote] = ACTIONS(3348), + [sym___r_double_quote] = ACTIONS(3350), + [sym___r_single_quote] = ACTIONS(3352), }, [932] = { [sym_line_comment] = STATE(932), [sym_block_comment] = STATE(932), - [sym__expression] = STATE(2263), - [sym__expression_without_blocks] = STATE(2300), - [sym__expression_with_blocks] = STATE(2300), - [sym_inc_expression] = STATE(2307), - [sym_dec_expression] = STATE(2307), - [sym_or_block_expression] = STATE(2307), - [sym_option_propagation_expression] = STATE(2307), - [sym_result_propagation_expression] = STATE(2307), - [sym_anon_struct_value_expression] = STATE(2380), - [sym_go_expression] = STATE(2307), - [sym_spawn_expression] = STATE(2307), - [sym_parenthesized_expression] = STATE(2307), - [sym_call_expression] = STATE(2307), - [sym_type_initializer] = STATE(2380), - [sym_function_literal] = STATE(2307), - [sym_reference_expression] = STATE(2311), - [sym_type_reference_expression] = STATE(3541), - [sym_unary_expression] = STATE(2307), - [sym_receive_expression] = STATE(2307), - [sym_binary_expression] = STATE(2307), - [sym_as_type_cast_expression] = STATE(2307), - [sym__max_group] = STATE(2307), - [sym_literal] = STATE(2292), - [sym_map_init_expression] = STATE(2380), - [sym_array_creation] = STATE(2307), - [sym_fixed_array_creation] = STATE(2307), - [sym_selector_expression] = STATE(2307), - [sym_index_expression] = STATE(2307), - [sym_slice_expression] = STATE(2307), - [sym_if_expression] = STATE(2380), - [sym_compile_time_if_expression] = STATE(2380), - [sym_is_expression] = STATE(2307), - [sym_in_expression] = STATE(2307), - [sym_enum_fetch] = STATE(2307), - [sym_match_expression] = STATE(2380), - [sym_select_expression] = STATE(2380), - [sym_lock_expression] = STATE(2380), - [sym_unsafe_expression] = STATE(2380), - [sym_sql_expression] = STATE(2380), - [sym_c_string_literal] = STATE(2308), - [sym_raw_string_literal] = STATE(2308), - [sym_interpreted_string_literal] = STATE(2308), - [sym_mutability_modifiers] = STATE(939), - [sym_plain_type] = STATE(3560), - [sym__plain_type_without_special] = STATE(2302), - [sym_anon_struct_type] = STATE(2303), - [sym_multi_return_type] = STATE(2302), - [sym_result_type] = STATE(2302), - [sym_option_type] = STATE(2302), - [sym_qualified_type] = STATE(3541), - [sym_fixed_array_type] = STATE(2303), - [sym_array_type] = STATE(2303), - [sym_pointer_type] = STATE(2303), - [sym_wrong_pointer_type] = STATE(2303), - [sym_map_type] = STATE(2303), - [sym_channel_type] = STATE(2303), - [sym_shared_type] = STATE(2303), - [sym_thread_type] = STATE(2303), - [sym_atomic_type] = STATE(2303), - [sym_generic_type] = STATE(2303), - [sym_function_type] = STATE(2303), - [sym_identifier] = ACTIONS(1426), + [sym__expression] = STATE(2195), + [sym__expression_without_blocks] = STATE(2162), + [sym__expression_with_blocks] = STATE(2162), + [sym_inc_expression] = STATE(2161), + [sym_dec_expression] = STATE(2161), + [sym_or_block_expression] = STATE(2161), + [sym_option_propagation_expression] = STATE(2161), + [sym_result_propagation_expression] = STATE(2161), + [sym_anon_struct_value_expression] = STATE(2160), + [sym_go_expression] = STATE(2161), + [sym_spawn_expression] = STATE(2161), + [sym_parenthesized_expression] = STATE(2161), + [sym_call_expression] = STATE(2161), + [sym_type_initializer] = STATE(2160), + [sym_function_literal] = STATE(2161), + [sym_reference_expression] = STATE(2159), + [sym_type_reference_expression] = STATE(3460), + [sym_unary_expression] = STATE(2161), + [sym_receive_expression] = STATE(2161), + [sym_binary_expression] = STATE(2161), + [sym_as_type_cast_expression] = STATE(2161), + [sym__max_group] = STATE(2161), + [sym_literal] = STATE(2164), + [sym_map_init_expression] = STATE(2160), + [sym_array_creation] = STATE(2161), + [sym_fixed_array_creation] = STATE(2161), + [sym_selector_expression] = STATE(2161), + [sym_index_expression] = STATE(2161), + [sym_slice_expression] = STATE(2161), + [sym_if_expression] = STATE(2160), + [sym_compile_time_if_expression] = STATE(2160), + [sym_is_expression] = STATE(2161), + [sym_in_expression] = STATE(2161), + [sym_enum_fetch] = STATE(2161), + [sym_match_expression] = STATE(2160), + [sym_select_expression] = STATE(2160), + [sym_lock_expression] = STATE(2160), + [sym_unsafe_expression] = STATE(2160), + [sym_sql_expression] = STATE(2160), + [sym_c_string_literal] = STATE(2166), + [sym_raw_string_literal] = STATE(2166), + [sym_interpreted_string_literal] = STATE(2166), + [sym_mutability_modifiers] = STATE(575), + [sym_plain_type] = STATE(4173), + [sym__plain_type_without_special] = STATE(2360), + [sym_anon_struct_type] = STATE(2362), + [sym_multi_return_type] = STATE(2360), + [sym_result_type] = STATE(2360), + [sym_option_type] = STATE(2360), + [sym_qualified_type] = STATE(3460), + [sym_fixed_array_type] = STATE(2362), + [sym_array_type] = STATE(2362), + [sym_pointer_type] = STATE(2362), + [sym_wrong_pointer_type] = STATE(2362), + [sym_map_type] = STATE(2362), + [sym_channel_type] = STATE(2362), + [sym_shared_type] = STATE(2362), + [sym_thread_type] = STATE(2362), + [sym_atomic_type] = STATE(2362), + [sym_generic_type] = STATE(2362), + [sym_function_type] = STATE(2362), + [sym_identifier] = ACTIONS(3292), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1428), - [anon_sym_LBRACE] = ACTIONS(1430), - [anon_sym_LPAREN] = ACTIONS(1432), - [anon_sym_fn] = ACTIONS(1434), - [anon_sym_PLUS] = ACTIONS(2491), - [anon_sym_DASH] = ACTIONS(2491), - [anon_sym_STAR] = ACTIONS(2493), - [anon_sym_struct] = ACTIONS(1440), + [anon_sym_DOT] = ACTIONS(3294), + [anon_sym_LBRACE] = ACTIONS(3296), + [anon_sym_LPAREN] = ACTIONS(3298), + [anon_sym_fn] = ACTIONS(3300), + [anon_sym_PLUS] = ACTIONS(3404), + [anon_sym_DASH] = ACTIONS(3404), + [anon_sym_STAR] = ACTIONS(3406), + [anon_sym_struct] = ACTIONS(3306), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(2495), - [anon_sym_go] = ACTIONS(2497), - [anon_sym_spawn] = ACTIONS(2499), - [anon_sym_json_DOTdecode] = ACTIONS(1448), - [anon_sym_LBRACK2] = ACTIONS(1450), - [anon_sym_TILDE] = ACTIONS(2491), - [anon_sym_CARET] = ACTIONS(2491), - [anon_sym_AMP] = ACTIONS(2501), - [anon_sym_LT_DASH] = ACTIONS(2503), - [sym_none] = ACTIONS(1456), - [sym_true] = ACTIONS(1456), - [sym_false] = ACTIONS(1456), - [sym_nil] = ACTIONS(1456), - [anon_sym_if] = ACTIONS(1827), - [anon_sym_DOLLARif] = ACTIONS(1460), - [anon_sym_match] = ACTIONS(1462), - [anon_sym_select] = ACTIONS(1464), - [anon_sym_lock] = ACTIONS(1466), - [anon_sym_rlock] = ACTIONS(1466), - [anon_sym_unsafe] = ACTIONS(1833), - [anon_sym_sql] = ACTIONS(1470), - [sym_int_literal] = ACTIONS(1456), - [sym_float_literal] = ACTIONS(1472), - [sym_rune_literal] = ACTIONS(1472), - [sym_pseudo_compile_time_identifier] = ACTIONS(1474), + [anon_sym_BANG] = ACTIONS(3408), + [anon_sym_go] = ACTIONS(3410), + [anon_sym_spawn] = ACTIONS(3412), + [anon_sym_json_DOTdecode] = ACTIONS(3314), + [anon_sym_LBRACK2] = ACTIONS(3316), + [anon_sym_TILDE] = ACTIONS(3404), + [anon_sym_CARET] = ACTIONS(3404), + [anon_sym_AMP] = ACTIONS(3414), + [anon_sym_LT_DASH] = ACTIONS(3416), + [sym_none] = ACTIONS(3322), + [sym_true] = ACTIONS(3322), + [sym_false] = ACTIONS(3322), + [sym_nil] = ACTIONS(3322), + [anon_sym_if] = ACTIONS(3324), + [anon_sym_DOLLARif] = ACTIONS(3326), + [anon_sym_match] = ACTIONS(3328), + [anon_sym_select] = ACTIONS(3418), + [anon_sym_lock] = ACTIONS(3420), + [anon_sym_rlock] = ACTIONS(3420), + [anon_sym_unsafe] = ACTIONS(3334), + [anon_sym_sql] = ACTIONS(3336), + [sym_int_literal] = ACTIONS(3322), + [sym_float_literal] = ACTIONS(3338), + [sym_rune_literal] = ACTIONS(3338), + [sym_pseudo_compile_time_identifier] = ACTIONS(3340), [anon_sym_shared] = ACTIONS(83), [anon_sym_map_LBRACK] = ACTIONS(85), [anon_sym_chan] = ACTIONS(87), [anon_sym_thread] = ACTIONS(89), [anon_sym_atomic] = ACTIONS(91), - [sym___double_quote] = ACTIONS(1478), - [sym___single_quote] = ACTIONS(1480), - [sym___c_double_quote] = ACTIONS(1482), - [sym___c_single_quote] = ACTIONS(1484), - [sym___r_double_quote] = ACTIONS(1486), - [sym___r_single_quote] = ACTIONS(1488), + [sym___double_quote] = ACTIONS(3342), + [sym___single_quote] = ACTIONS(3344), + [sym___c_double_quote] = ACTIONS(3346), + [sym___c_single_quote] = ACTIONS(3348), + [sym___r_double_quote] = ACTIONS(3350), + [sym___r_single_quote] = ACTIONS(3352), }, [933] = { [sym_line_comment] = STATE(933), [sym_block_comment] = STATE(933), - [sym__expression] = STATE(2165), - [sym__expression_without_blocks] = STATE(2226), - [sym__expression_with_blocks] = STATE(2226), - [sym_inc_expression] = STATE(2247), - [sym_dec_expression] = STATE(2247), - [sym_or_block_expression] = STATE(2247), - [sym_option_propagation_expression] = STATE(2247), - [sym_result_propagation_expression] = STATE(2247), - [sym_anon_struct_value_expression] = STATE(2248), - [sym_go_expression] = STATE(2247), - [sym_spawn_expression] = STATE(2247), - [sym_parenthesized_expression] = STATE(2247), - [sym_call_expression] = STATE(2247), - [sym_type_initializer] = STATE(2248), - [sym_function_literal] = STATE(2247), - [sym_reference_expression] = STATE(2252), - [sym_type_reference_expression] = STATE(3541), - [sym_unary_expression] = STATE(2247), - [sym_receive_expression] = STATE(2247), - [sym_binary_expression] = STATE(2247), - [sym_as_type_cast_expression] = STATE(2247), - [sym__max_group] = STATE(2247), - [sym_literal] = STATE(2155), - [sym_map_init_expression] = STATE(2248), - [sym_array_creation] = STATE(2247), - [sym_fixed_array_creation] = STATE(2247), - [sym_selector_expression] = STATE(2247), - [sym_index_expression] = STATE(2247), - [sym_slice_expression] = STATE(2247), - [sym_if_expression] = STATE(2248), - [sym_compile_time_if_expression] = STATE(2248), - [sym_is_expression] = STATE(2247), - [sym_in_expression] = STATE(2247), - [sym_enum_fetch] = STATE(2247), - [sym_match_expression] = STATE(2248), - [sym_select_expression] = STATE(2248), - [sym_lock_expression] = STATE(2248), - [sym_unsafe_expression] = STATE(2248), - [sym_sql_expression] = STATE(2248), - [sym_c_string_literal] = STATE(2153), - [sym_raw_string_literal] = STATE(2153), - [sym_interpreted_string_literal] = STATE(2153), - [sym_mutability_modifiers] = STATE(631), - [sym_plain_type] = STATE(4146), - [sym__plain_type_without_special] = STATE(2302), - [sym_anon_struct_type] = STATE(2303), - [sym_multi_return_type] = STATE(2302), - [sym_result_type] = STATE(2302), - [sym_option_type] = STATE(2302), - [sym_qualified_type] = STATE(3541), - [sym_fixed_array_type] = STATE(2303), - [sym_array_type] = STATE(2303), - [sym_pointer_type] = STATE(2303), - [sym_wrong_pointer_type] = STATE(2303), - [sym_map_type] = STATE(2303), - [sym_channel_type] = STATE(2303), - [sym_shared_type] = STATE(2303), - [sym_thread_type] = STATE(2303), - [sym_atomic_type] = STATE(2303), - [sym_generic_type] = STATE(2303), - [sym_function_type] = STATE(2303), - [sym_identifier] = ACTIONS(3286), - [anon_sym_SLASH_SLASH] = ACTIONS(3), - [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(3288), - [anon_sym_LBRACE] = ACTIONS(3290), - [anon_sym_LPAREN] = ACTIONS(3292), - [anon_sym_fn] = ACTIONS(3294), - [anon_sym_PLUS] = ACTIONS(3398), - [anon_sym_DASH] = ACTIONS(3398), - [anon_sym_STAR] = ACTIONS(3400), - [anon_sym_struct] = ACTIONS(3300), - [anon_sym_mut] = ACTIONS(41), - [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(3402), - [anon_sym_go] = ACTIONS(3404), - [anon_sym_spawn] = ACTIONS(3406), - [anon_sym_json_DOTdecode] = ACTIONS(3308), - [anon_sym_LBRACK2] = ACTIONS(3310), - [anon_sym_TILDE] = ACTIONS(3398), - [anon_sym_CARET] = ACTIONS(3398), - [anon_sym_AMP] = ACTIONS(3408), - [anon_sym_LT_DASH] = ACTIONS(3410), - [sym_none] = ACTIONS(3316), - [sym_true] = ACTIONS(3316), - [sym_false] = ACTIONS(3316), - [sym_nil] = ACTIONS(3316), - [anon_sym_if] = ACTIONS(3318), - [anon_sym_DOLLARif] = ACTIONS(3320), - [anon_sym_match] = ACTIONS(3322), - [anon_sym_select] = ACTIONS(3412), - [anon_sym_lock] = ACTIONS(3414), - [anon_sym_rlock] = ACTIONS(3414), - [anon_sym_unsafe] = ACTIONS(3328), - [anon_sym_sql] = ACTIONS(3330), - [sym_int_literal] = ACTIONS(3316), - [sym_float_literal] = ACTIONS(3332), - [sym_rune_literal] = ACTIONS(3332), - [sym_pseudo_compile_time_identifier] = ACTIONS(3334), - [anon_sym_shared] = ACTIONS(83), - [anon_sym_map_LBRACK] = ACTIONS(85), - [anon_sym_chan] = ACTIONS(87), - [anon_sym_thread] = ACTIONS(89), - [anon_sym_atomic] = ACTIONS(91), - [sym___double_quote] = ACTIONS(3336), - [sym___single_quote] = ACTIONS(3338), - [sym___c_double_quote] = ACTIONS(3340), - [sym___c_single_quote] = ACTIONS(3342), - [sym___r_double_quote] = ACTIONS(3344), - [sym___r_single_quote] = ACTIONS(3346), - }, - [934] = { - [sym_line_comment] = STATE(934), - [sym_block_comment] = STATE(934), - [sym__expression] = STATE(223), - [sym__expression_without_blocks] = STATE(442), - [sym__expression_with_blocks] = STATE(442), - [sym_inc_expression] = STATE(439), - [sym_dec_expression] = STATE(439), - [sym_or_block_expression] = STATE(439), - [sym_option_propagation_expression] = STATE(439), - [sym_result_propagation_expression] = STATE(439), - [sym_anon_struct_value_expression] = STATE(438), - [sym_go_expression] = STATE(439), - [sym_spawn_expression] = STATE(439), - [sym_parenthesized_expression] = STATE(439), - [sym_call_expression] = STATE(439), - [sym_type_initializer] = STATE(438), - [sym_function_literal] = STATE(439), - [sym_reference_expression] = STATE(437), - [sym_type_reference_expression] = STATE(3541), - [sym_unary_expression] = STATE(439), - [sym_receive_expression] = STATE(439), - [sym_binary_expression] = STATE(439), - [sym_as_type_cast_expression] = STATE(439), - [sym__max_group] = STATE(439), - [sym_literal] = STATE(495), - [sym_map_init_expression] = STATE(438), - [sym_array_creation] = STATE(439), - [sym_fixed_array_creation] = STATE(439), - [sym_selector_expression] = STATE(439), - [sym_index_expression] = STATE(439), - [sym_slice_expression] = STATE(439), - [sym_if_expression] = STATE(438), - [sym_compile_time_if_expression] = STATE(438), - [sym_is_expression] = STATE(439), - [sym_in_expression] = STATE(439), - [sym_enum_fetch] = STATE(439), - [sym_match_expression] = STATE(438), - [sym_select_expression] = STATE(438), - [sym_lock_expression] = STATE(438), - [sym_unsafe_expression] = STATE(438), - [sym_sql_expression] = STATE(438), - [sym_c_string_literal] = STATE(496), - [sym_raw_string_literal] = STATE(496), - [sym_interpreted_string_literal] = STATE(496), - [sym_mutability_modifiers] = STATE(862), - [sym_plain_type] = STATE(4049), - [sym__plain_type_without_special] = STATE(2302), - [sym_anon_struct_type] = STATE(2303), - [sym_multi_return_type] = STATE(2302), - [sym_result_type] = STATE(2302), - [sym_option_type] = STATE(2302), - [sym_qualified_type] = STATE(3541), - [sym_fixed_array_type] = STATE(2303), - [sym_array_type] = STATE(2303), - [sym_pointer_type] = STATE(2303), - [sym_wrong_pointer_type] = STATE(2303), - [sym_map_type] = STATE(2303), - [sym_channel_type] = STATE(2303), - [sym_shared_type] = STATE(2303), - [sym_thread_type] = STATE(2303), - [sym_atomic_type] = STATE(2303), - [sym_generic_type] = STATE(2303), - [sym_function_type] = STATE(2303), - [sym_identifier] = ACTIONS(3096), + [sym__expression] = STATE(227), + [sym__expression_without_blocks] = STATE(401), + [sym__expression_with_blocks] = STATE(401), + [sym_inc_expression] = STATE(399), + [sym_dec_expression] = STATE(399), + [sym_or_block_expression] = STATE(399), + [sym_option_propagation_expression] = STATE(399), + [sym_result_propagation_expression] = STATE(399), + [sym_anon_struct_value_expression] = STATE(395), + [sym_go_expression] = STATE(399), + [sym_spawn_expression] = STATE(399), + [sym_parenthesized_expression] = STATE(399), + [sym_call_expression] = STATE(399), + [sym_type_initializer] = STATE(395), + [sym_function_literal] = STATE(399), + [sym_reference_expression] = STATE(393), + [sym_type_reference_expression] = STATE(3460), + [sym_unary_expression] = STATE(399), + [sym_receive_expression] = STATE(399), + [sym_binary_expression] = STATE(399), + [sym_as_type_cast_expression] = STATE(399), + [sym__max_group] = STATE(399), + [sym_literal] = STATE(455), + [sym_map_init_expression] = STATE(395), + [sym_array_creation] = STATE(399), + [sym_fixed_array_creation] = STATE(399), + [sym_selector_expression] = STATE(399), + [sym_index_expression] = STATE(399), + [sym_slice_expression] = STATE(399), + [sym_if_expression] = STATE(395), + [sym_compile_time_if_expression] = STATE(395), + [sym_is_expression] = STATE(399), + [sym_in_expression] = STATE(399), + [sym_enum_fetch] = STATE(399), + [sym_match_expression] = STATE(395), + [sym_select_expression] = STATE(395), + [sym_lock_expression] = STATE(395), + [sym_unsafe_expression] = STATE(395), + [sym_sql_expression] = STATE(395), + [sym_c_string_literal] = STATE(479), + [sym_raw_string_literal] = STATE(479), + [sym_interpreted_string_literal] = STATE(479), + [sym_mutability_modifiers] = STATE(845), + [sym_plain_type] = STATE(4069), + [sym__plain_type_without_special] = STATE(2360), + [sym_anon_struct_type] = STATE(2362), + [sym_multi_return_type] = STATE(2360), + [sym_result_type] = STATE(2360), + [sym_option_type] = STATE(2360), + [sym_qualified_type] = STATE(3460), + [sym_fixed_array_type] = STATE(2362), + [sym_array_type] = STATE(2362), + [sym_pointer_type] = STATE(2362), + [sym_wrong_pointer_type] = STATE(2362), + [sym_map_type] = STATE(2362), + [sym_channel_type] = STATE(2362), + [sym_shared_type] = STATE(2362), + [sym_thread_type] = STATE(2362), + [sym_atomic_type] = STATE(2362), + [sym_generic_type] = STATE(2362), + [sym_function_type] = STATE(2362), + [sym_identifier] = ACTIONS(3184), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), [anon_sym_DOT] = ACTIONS(17), - [anon_sym_LBRACE] = ACTIONS(3098), + [anon_sym_LBRACE] = ACTIONS(3186), [anon_sym_LPAREN] = ACTIONS(23), [anon_sym_fn] = ACTIONS(485), [anon_sym_PLUS] = ACTIONS(31), @@ -130443,1393 +130349,1621 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym___r_double_quote] = ACTIONS(123), [sym___r_single_quote] = ACTIONS(125), }, + [934] = { + [sym_line_comment] = STATE(934), + [sym_block_comment] = STATE(934), + [sym__expression] = STATE(2547), + [sym__expression_without_blocks] = STATE(2347), + [sym__expression_with_blocks] = STATE(2347), + [sym_inc_expression] = STATE(2379), + [sym_dec_expression] = STATE(2379), + [sym_or_block_expression] = STATE(2379), + [sym_option_propagation_expression] = STATE(2379), + [sym_result_propagation_expression] = STATE(2379), + [sym_anon_struct_value_expression] = STATE(2378), + [sym_go_expression] = STATE(2379), + [sym_spawn_expression] = STATE(2379), + [sym_parenthesized_expression] = STATE(2379), + [sym_call_expression] = STATE(2379), + [sym_type_initializer] = STATE(2378), + [sym_function_literal] = STATE(2379), + [sym_reference_expression] = STATE(2377), + [sym_type_reference_expression] = STATE(3460), + [sym_unary_expression] = STATE(2379), + [sym_receive_expression] = STATE(2379), + [sym_binary_expression] = STATE(2379), + [sym_as_type_cast_expression] = STATE(2379), + [sym__max_group] = STATE(2379), + [sym_literal] = STATE(2392), + [sym_map_init_expression] = STATE(2378), + [sym_array_creation] = STATE(2379), + [sym_fixed_array_creation] = STATE(2379), + [sym_selector_expression] = STATE(2379), + [sym_index_expression] = STATE(2379), + [sym_slice_expression] = STATE(2379), + [sym_if_expression] = STATE(2378), + [sym_compile_time_if_expression] = STATE(2378), + [sym_is_expression] = STATE(2379), + [sym_in_expression] = STATE(2379), + [sym_enum_fetch] = STATE(2379), + [sym_match_expression] = STATE(2378), + [sym_select_expression] = STATE(2378), + [sym_lock_expression] = STATE(2378), + [sym_unsafe_expression] = STATE(2378), + [sym_sql_expression] = STATE(2378), + [sym_c_string_literal] = STATE(2401), + [sym_raw_string_literal] = STATE(2401), + [sym_interpreted_string_literal] = STATE(2401), + [sym_mutability_modifiers] = STATE(553), + [sym_plain_type] = STATE(4160), + [sym__plain_type_without_special] = STATE(2360), + [sym_anon_struct_type] = STATE(2362), + [sym_multi_return_type] = STATE(2360), + [sym_result_type] = STATE(2360), + [sym_option_type] = STATE(2360), + [sym_qualified_type] = STATE(3460), + [sym_fixed_array_type] = STATE(2362), + [sym_array_type] = STATE(2362), + [sym_pointer_type] = STATE(2362), + [sym_wrong_pointer_type] = STATE(2362), + [sym_map_type] = STATE(2362), + [sym_channel_type] = STATE(2362), + [sym_shared_type] = STATE(2362), + [sym_thread_type] = STATE(2362), + [sym_atomic_type] = STATE(2362), + [sym_generic_type] = STATE(2362), + [sym_function_type] = STATE(2362), + [sym_identifier] = ACTIONS(1815), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(1430), + [anon_sym_LBRACE] = ACTIONS(1432), + [anon_sym_LPAREN] = ACTIONS(1434), + [anon_sym_fn] = ACTIONS(1436), + [anon_sym_PLUS] = ACTIONS(1817), + [anon_sym_DASH] = ACTIONS(1817), + [anon_sym_STAR] = ACTIONS(1819), + [anon_sym_struct] = ACTIONS(1442), + [anon_sym_mut] = ACTIONS(41), + [anon_sym_QMARK] = ACTIONS(47), + [anon_sym_BANG] = ACTIONS(1821), + [anon_sym_go] = ACTIONS(1823), + [anon_sym_spawn] = ACTIONS(1825), + [anon_sym_json_DOTdecode] = ACTIONS(1450), + [anon_sym_LBRACK2] = ACTIONS(1827), + [anon_sym_TILDE] = ACTIONS(1817), + [anon_sym_CARET] = ACTIONS(1817), + [anon_sym_AMP] = ACTIONS(1829), + [anon_sym_LT_DASH] = ACTIONS(1831), + [sym_none] = ACTIONS(1458), + [sym_true] = ACTIONS(1458), + [sym_false] = ACTIONS(1458), + [sym_nil] = ACTIONS(1458), + [anon_sym_if] = ACTIONS(1833), + [anon_sym_DOLLARif] = ACTIONS(1462), + [anon_sym_match] = ACTIONS(1464), + [anon_sym_select] = ACTIONS(1835), + [anon_sym_lock] = ACTIONS(1837), + [anon_sym_rlock] = ACTIONS(1837), + [anon_sym_unsafe] = ACTIONS(1839), + [anon_sym_sql] = ACTIONS(1472), + [sym_int_literal] = ACTIONS(1458), + [sym_float_literal] = ACTIONS(1474), + [sym_rune_literal] = ACTIONS(1474), + [sym_pseudo_compile_time_identifier] = ACTIONS(1476), + [anon_sym_shared] = ACTIONS(83), + [anon_sym_map_LBRACK] = ACTIONS(85), + [anon_sym_chan] = ACTIONS(87), + [anon_sym_thread] = ACTIONS(89), + [anon_sym_atomic] = ACTIONS(91), + [sym___double_quote] = ACTIONS(1480), + [sym___single_quote] = ACTIONS(1482), + [sym___c_double_quote] = ACTIONS(1484), + [sym___c_single_quote] = ACTIONS(1486), + [sym___r_double_quote] = ACTIONS(1488), + [sym___r_single_quote] = ACTIONS(1490), + }, [935] = { [sym_line_comment] = STATE(935), [sym_block_comment] = STATE(935), - [sym__expression] = STATE(2164), - [sym__expression_without_blocks] = STATE(2226), - [sym__expression_with_blocks] = STATE(2226), - [sym_inc_expression] = STATE(2247), - [sym_dec_expression] = STATE(2247), - [sym_or_block_expression] = STATE(2247), - [sym_option_propagation_expression] = STATE(2247), - [sym_result_propagation_expression] = STATE(2247), - [sym_anon_struct_value_expression] = STATE(2248), - [sym_go_expression] = STATE(2247), - [sym_spawn_expression] = STATE(2247), - [sym_parenthesized_expression] = STATE(2247), - [sym_call_expression] = STATE(2247), - [sym_type_initializer] = STATE(2248), - [sym_function_literal] = STATE(2247), - [sym_reference_expression] = STATE(2252), - [sym_type_reference_expression] = STATE(3541), - [sym_unary_expression] = STATE(2247), - [sym_receive_expression] = STATE(2247), - [sym_binary_expression] = STATE(2247), - [sym_as_type_cast_expression] = STATE(2247), - [sym__max_group] = STATE(2247), - [sym_literal] = STATE(2155), - [sym_map_init_expression] = STATE(2248), - [sym_array_creation] = STATE(2247), - [sym_fixed_array_creation] = STATE(2247), - [sym_selector_expression] = STATE(2247), - [sym_index_expression] = STATE(2247), - [sym_slice_expression] = STATE(2247), - [sym_if_expression] = STATE(2248), - [sym_compile_time_if_expression] = STATE(2248), - [sym_is_expression] = STATE(2247), - [sym_in_expression] = STATE(2247), - [sym_enum_fetch] = STATE(2247), - [sym_match_expression] = STATE(2248), - [sym_select_expression] = STATE(2248), - [sym_lock_expression] = STATE(2248), - [sym_unsafe_expression] = STATE(2248), - [sym_sql_expression] = STATE(2248), - [sym_c_string_literal] = STATE(2153), - [sym_raw_string_literal] = STATE(2153), - [sym_interpreted_string_literal] = STATE(2153), - [sym_mutability_modifiers] = STATE(631), - [sym_plain_type] = STATE(4146), - [sym__plain_type_without_special] = STATE(2302), - [sym_anon_struct_type] = STATE(2303), - [sym_multi_return_type] = STATE(2302), - [sym_result_type] = STATE(2302), - [sym_option_type] = STATE(2302), - [sym_qualified_type] = STATE(3541), - [sym_fixed_array_type] = STATE(2303), - [sym_array_type] = STATE(2303), - [sym_pointer_type] = STATE(2303), - [sym_wrong_pointer_type] = STATE(2303), - [sym_map_type] = STATE(2303), - [sym_channel_type] = STATE(2303), - [sym_shared_type] = STATE(2303), - [sym_thread_type] = STATE(2303), - [sym_atomic_type] = STATE(2303), - [sym_generic_type] = STATE(2303), - [sym_function_type] = STATE(2303), - [sym_identifier] = ACTIONS(3286), + [sym__expression] = STATE(2265), + [sym__expression_without_blocks] = STATE(2347), + [sym__expression_with_blocks] = STATE(2347), + [sym_inc_expression] = STATE(2379), + [sym_dec_expression] = STATE(2379), + [sym_or_block_expression] = STATE(2379), + [sym_option_propagation_expression] = STATE(2379), + [sym_result_propagation_expression] = STATE(2379), + [sym_anon_struct_value_expression] = STATE(2378), + [sym_go_expression] = STATE(2379), + [sym_spawn_expression] = STATE(2379), + [sym_parenthesized_expression] = STATE(2379), + [sym_call_expression] = STATE(2379), + [sym_type_initializer] = STATE(2378), + [sym_function_literal] = STATE(2379), + [sym_reference_expression] = STATE(2377), + [sym_type_reference_expression] = STATE(3460), + [sym_unary_expression] = STATE(2379), + [sym_receive_expression] = STATE(2379), + [sym_binary_expression] = STATE(2379), + [sym_as_type_cast_expression] = STATE(2379), + [sym__max_group] = STATE(2379), + [sym_literal] = STATE(2392), + [sym_map_init_expression] = STATE(2378), + [sym_array_creation] = STATE(2379), + [sym_fixed_array_creation] = STATE(2379), + [sym_selector_expression] = STATE(2379), + [sym_index_expression] = STATE(2379), + [sym_slice_expression] = STATE(2379), + [sym_if_expression] = STATE(2378), + [sym_compile_time_if_expression] = STATE(2378), + [sym_is_expression] = STATE(2379), + [sym_in_expression] = STATE(2379), + [sym_enum_fetch] = STATE(2379), + [sym_match_expression] = STATE(2378), + [sym_select_expression] = STATE(2378), + [sym_lock_expression] = STATE(2378), + [sym_unsafe_expression] = STATE(2378), + [sym_sql_expression] = STATE(2378), + [sym_c_string_literal] = STATE(2401), + [sym_raw_string_literal] = STATE(2401), + [sym_interpreted_string_literal] = STATE(2401), + [sym_mutability_modifiers] = STATE(553), + [sym_plain_type] = STATE(4160), + [sym__plain_type_without_special] = STATE(2360), + [sym_anon_struct_type] = STATE(2362), + [sym_multi_return_type] = STATE(2360), + [sym_result_type] = STATE(2360), + [sym_option_type] = STATE(2360), + [sym_qualified_type] = STATE(3460), + [sym_fixed_array_type] = STATE(2362), + [sym_array_type] = STATE(2362), + [sym_pointer_type] = STATE(2362), + [sym_wrong_pointer_type] = STATE(2362), + [sym_map_type] = STATE(2362), + [sym_channel_type] = STATE(2362), + [sym_shared_type] = STATE(2362), + [sym_thread_type] = STATE(2362), + [sym_atomic_type] = STATE(2362), + [sym_generic_type] = STATE(2362), + [sym_function_type] = STATE(2362), + [sym_identifier] = ACTIONS(1815), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(3288), - [anon_sym_LBRACE] = ACTIONS(3290), - [anon_sym_LPAREN] = ACTIONS(3292), - [anon_sym_fn] = ACTIONS(3294), - [anon_sym_PLUS] = ACTIONS(3398), - [anon_sym_DASH] = ACTIONS(3398), - [anon_sym_STAR] = ACTIONS(3400), - [anon_sym_struct] = ACTIONS(3300), + [anon_sym_DOT] = ACTIONS(1430), + [anon_sym_LBRACE] = ACTIONS(1432), + [anon_sym_LPAREN] = ACTIONS(1434), + [anon_sym_fn] = ACTIONS(1436), + [anon_sym_PLUS] = ACTIONS(1817), + [anon_sym_DASH] = ACTIONS(1817), + [anon_sym_STAR] = ACTIONS(1819), + [anon_sym_struct] = ACTIONS(1442), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(3402), - [anon_sym_go] = ACTIONS(3404), - [anon_sym_spawn] = ACTIONS(3406), - [anon_sym_json_DOTdecode] = ACTIONS(3308), - [anon_sym_LBRACK2] = ACTIONS(3310), - [anon_sym_TILDE] = ACTIONS(3398), - [anon_sym_CARET] = ACTIONS(3398), - [anon_sym_AMP] = ACTIONS(3408), - [anon_sym_LT_DASH] = ACTIONS(3410), - [sym_none] = ACTIONS(3316), - [sym_true] = ACTIONS(3316), - [sym_false] = ACTIONS(3316), - [sym_nil] = ACTIONS(3316), - [anon_sym_if] = ACTIONS(3318), - [anon_sym_DOLLARif] = ACTIONS(3320), - [anon_sym_match] = ACTIONS(3322), - [anon_sym_select] = ACTIONS(3412), - [anon_sym_lock] = ACTIONS(3414), - [anon_sym_rlock] = ACTIONS(3414), - [anon_sym_unsafe] = ACTIONS(3328), - [anon_sym_sql] = ACTIONS(3330), - [sym_int_literal] = ACTIONS(3316), - [sym_float_literal] = ACTIONS(3332), - [sym_rune_literal] = ACTIONS(3332), - [sym_pseudo_compile_time_identifier] = ACTIONS(3334), + [anon_sym_BANG] = ACTIONS(1821), + [anon_sym_go] = ACTIONS(1823), + [anon_sym_spawn] = ACTIONS(1825), + [anon_sym_json_DOTdecode] = ACTIONS(1450), + [anon_sym_LBRACK2] = ACTIONS(1827), + [anon_sym_TILDE] = ACTIONS(1817), + [anon_sym_CARET] = ACTIONS(1817), + [anon_sym_AMP] = ACTIONS(1829), + [anon_sym_LT_DASH] = ACTIONS(1831), + [sym_none] = ACTIONS(1458), + [sym_true] = ACTIONS(1458), + [sym_false] = ACTIONS(1458), + [sym_nil] = ACTIONS(1458), + [anon_sym_if] = ACTIONS(1833), + [anon_sym_DOLLARif] = ACTIONS(1462), + [anon_sym_match] = ACTIONS(1464), + [anon_sym_select] = ACTIONS(1835), + [anon_sym_lock] = ACTIONS(1837), + [anon_sym_rlock] = ACTIONS(1837), + [anon_sym_unsafe] = ACTIONS(1839), + [anon_sym_sql] = ACTIONS(1472), + [sym_int_literal] = ACTIONS(1458), + [sym_float_literal] = ACTIONS(1474), + [sym_rune_literal] = ACTIONS(1474), + [sym_pseudo_compile_time_identifier] = ACTIONS(1476), [anon_sym_shared] = ACTIONS(83), [anon_sym_map_LBRACK] = ACTIONS(85), [anon_sym_chan] = ACTIONS(87), [anon_sym_thread] = ACTIONS(89), [anon_sym_atomic] = ACTIONS(91), - [sym___double_quote] = ACTIONS(3336), - [sym___single_quote] = ACTIONS(3338), - [sym___c_double_quote] = ACTIONS(3340), - [sym___c_single_quote] = ACTIONS(3342), - [sym___r_double_quote] = ACTIONS(3344), - [sym___r_single_quote] = ACTIONS(3346), + [sym___double_quote] = ACTIONS(1480), + [sym___single_quote] = ACTIONS(1482), + [sym___c_double_quote] = ACTIONS(1484), + [sym___c_single_quote] = ACTIONS(1486), + [sym___r_double_quote] = ACTIONS(1488), + [sym___r_single_quote] = ACTIONS(1490), }, [936] = { [sym_line_comment] = STATE(936), [sym_block_comment] = STATE(936), - [sym__expression] = STATE(2163), - [sym__expression_without_blocks] = STATE(2226), - [sym__expression_with_blocks] = STATE(2226), - [sym_inc_expression] = STATE(2247), - [sym_dec_expression] = STATE(2247), - [sym_or_block_expression] = STATE(2247), - [sym_option_propagation_expression] = STATE(2247), - [sym_result_propagation_expression] = STATE(2247), - [sym_anon_struct_value_expression] = STATE(2248), - [sym_go_expression] = STATE(2247), - [sym_spawn_expression] = STATE(2247), - [sym_parenthesized_expression] = STATE(2247), - [sym_call_expression] = STATE(2247), - [sym_type_initializer] = STATE(2248), - [sym_function_literal] = STATE(2247), - [sym_reference_expression] = STATE(2252), - [sym_type_reference_expression] = STATE(3541), - [sym_unary_expression] = STATE(2247), - [sym_receive_expression] = STATE(2247), - [sym_binary_expression] = STATE(2247), - [sym_as_type_cast_expression] = STATE(2247), - [sym__max_group] = STATE(2247), - [sym_literal] = STATE(2155), - [sym_map_init_expression] = STATE(2248), - [sym_array_creation] = STATE(2247), - [sym_fixed_array_creation] = STATE(2247), - [sym_selector_expression] = STATE(2247), - [sym_index_expression] = STATE(2247), - [sym_slice_expression] = STATE(2247), - [sym_if_expression] = STATE(2248), - [sym_compile_time_if_expression] = STATE(2248), - [sym_is_expression] = STATE(2247), - [sym_in_expression] = STATE(2247), - [sym_enum_fetch] = STATE(2247), - [sym_match_expression] = STATE(2248), - [sym_select_expression] = STATE(2248), - [sym_lock_expression] = STATE(2248), - [sym_unsafe_expression] = STATE(2248), - [sym_sql_expression] = STATE(2248), - [sym_c_string_literal] = STATE(2153), - [sym_raw_string_literal] = STATE(2153), - [sym_interpreted_string_literal] = STATE(2153), - [sym_mutability_modifiers] = STATE(631), - [sym_plain_type] = STATE(4146), - [sym__plain_type_without_special] = STATE(2302), - [sym_anon_struct_type] = STATE(2303), - [sym_multi_return_type] = STATE(2302), - [sym_result_type] = STATE(2302), - [sym_option_type] = STATE(2302), - [sym_qualified_type] = STATE(3541), - [sym_fixed_array_type] = STATE(2303), - [sym_array_type] = STATE(2303), - [sym_pointer_type] = STATE(2303), - [sym_wrong_pointer_type] = STATE(2303), - [sym_map_type] = STATE(2303), - [sym_channel_type] = STATE(2303), - [sym_shared_type] = STATE(2303), - [sym_thread_type] = STATE(2303), - [sym_atomic_type] = STATE(2303), - [sym_generic_type] = STATE(2303), - [sym_function_type] = STATE(2303), - [sym_identifier] = ACTIONS(3286), + [sym__expression] = STATE(2543), + [sym__expression_without_blocks] = STATE(2347), + [sym__expression_with_blocks] = STATE(2347), + [sym_inc_expression] = STATE(2379), + [sym_dec_expression] = STATE(2379), + [sym_or_block_expression] = STATE(2379), + [sym_option_propagation_expression] = STATE(2379), + [sym_result_propagation_expression] = STATE(2379), + [sym_anon_struct_value_expression] = STATE(2378), + [sym_go_expression] = STATE(2379), + [sym_spawn_expression] = STATE(2379), + [sym_parenthesized_expression] = STATE(2379), + [sym_call_expression] = STATE(2379), + [sym_type_initializer] = STATE(2378), + [sym_function_literal] = STATE(2379), + [sym_reference_expression] = STATE(2377), + [sym_type_reference_expression] = STATE(3460), + [sym_unary_expression] = STATE(2379), + [sym_receive_expression] = STATE(2379), + [sym_binary_expression] = STATE(2379), + [sym_as_type_cast_expression] = STATE(2379), + [sym__max_group] = STATE(2379), + [sym_literal] = STATE(2392), + [sym_map_init_expression] = STATE(2378), + [sym_array_creation] = STATE(2379), + [sym_fixed_array_creation] = STATE(2379), + [sym_selector_expression] = STATE(2379), + [sym_index_expression] = STATE(2379), + [sym_slice_expression] = STATE(2379), + [sym_if_expression] = STATE(2378), + [sym_compile_time_if_expression] = STATE(2378), + [sym_is_expression] = STATE(2379), + [sym_in_expression] = STATE(2379), + [sym_enum_fetch] = STATE(2379), + [sym_match_expression] = STATE(2378), + [sym_select_expression] = STATE(2378), + [sym_lock_expression] = STATE(2378), + [sym_unsafe_expression] = STATE(2378), + [sym_sql_expression] = STATE(2378), + [sym_c_string_literal] = STATE(2401), + [sym_raw_string_literal] = STATE(2401), + [sym_interpreted_string_literal] = STATE(2401), + [sym_mutability_modifiers] = STATE(553), + [sym_plain_type] = STATE(4160), + [sym__plain_type_without_special] = STATE(2360), + [sym_anon_struct_type] = STATE(2362), + [sym_multi_return_type] = STATE(2360), + [sym_result_type] = STATE(2360), + [sym_option_type] = STATE(2360), + [sym_qualified_type] = STATE(3460), + [sym_fixed_array_type] = STATE(2362), + [sym_array_type] = STATE(2362), + [sym_pointer_type] = STATE(2362), + [sym_wrong_pointer_type] = STATE(2362), + [sym_map_type] = STATE(2362), + [sym_channel_type] = STATE(2362), + [sym_shared_type] = STATE(2362), + [sym_thread_type] = STATE(2362), + [sym_atomic_type] = STATE(2362), + [sym_generic_type] = STATE(2362), + [sym_function_type] = STATE(2362), + [sym_identifier] = ACTIONS(1815), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(3288), - [anon_sym_LBRACE] = ACTIONS(3290), - [anon_sym_LPAREN] = ACTIONS(3292), - [anon_sym_fn] = ACTIONS(3294), - [anon_sym_PLUS] = ACTIONS(3398), - [anon_sym_DASH] = ACTIONS(3398), - [anon_sym_STAR] = ACTIONS(3400), - [anon_sym_struct] = ACTIONS(3300), + [anon_sym_DOT] = ACTIONS(1430), + [anon_sym_LBRACE] = ACTIONS(1432), + [anon_sym_LPAREN] = ACTIONS(1434), + [anon_sym_fn] = ACTIONS(1436), + [anon_sym_PLUS] = ACTIONS(1817), + [anon_sym_DASH] = ACTIONS(1817), + [anon_sym_STAR] = ACTIONS(1819), + [anon_sym_struct] = ACTIONS(1442), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(3402), - [anon_sym_go] = ACTIONS(3404), - [anon_sym_spawn] = ACTIONS(3406), - [anon_sym_json_DOTdecode] = ACTIONS(3308), - [anon_sym_LBRACK2] = ACTIONS(3310), - [anon_sym_TILDE] = ACTIONS(3398), - [anon_sym_CARET] = ACTIONS(3398), - [anon_sym_AMP] = ACTIONS(3408), - [anon_sym_LT_DASH] = ACTIONS(3410), - [sym_none] = ACTIONS(3316), - [sym_true] = ACTIONS(3316), - [sym_false] = ACTIONS(3316), - [sym_nil] = ACTIONS(3316), - [anon_sym_if] = ACTIONS(3318), - [anon_sym_DOLLARif] = ACTIONS(3320), - [anon_sym_match] = ACTIONS(3322), - [anon_sym_select] = ACTIONS(3412), - [anon_sym_lock] = ACTIONS(3414), - [anon_sym_rlock] = ACTIONS(3414), - [anon_sym_unsafe] = ACTIONS(3328), - [anon_sym_sql] = ACTIONS(3330), - [sym_int_literal] = ACTIONS(3316), - [sym_float_literal] = ACTIONS(3332), - [sym_rune_literal] = ACTIONS(3332), - [sym_pseudo_compile_time_identifier] = ACTIONS(3334), + [anon_sym_BANG] = ACTIONS(1821), + [anon_sym_go] = ACTIONS(1823), + [anon_sym_spawn] = ACTIONS(1825), + [anon_sym_json_DOTdecode] = ACTIONS(1450), + [anon_sym_LBRACK2] = ACTIONS(1827), + [anon_sym_TILDE] = ACTIONS(1817), + [anon_sym_CARET] = ACTIONS(1817), + [anon_sym_AMP] = ACTIONS(1829), + [anon_sym_LT_DASH] = ACTIONS(1831), + [sym_none] = ACTIONS(1458), + [sym_true] = ACTIONS(1458), + [sym_false] = ACTIONS(1458), + [sym_nil] = ACTIONS(1458), + [anon_sym_if] = ACTIONS(1833), + [anon_sym_DOLLARif] = ACTIONS(1462), + [anon_sym_match] = ACTIONS(1464), + [anon_sym_select] = ACTIONS(1835), + [anon_sym_lock] = ACTIONS(1837), + [anon_sym_rlock] = ACTIONS(1837), + [anon_sym_unsafe] = ACTIONS(1839), + [anon_sym_sql] = ACTIONS(1472), + [sym_int_literal] = ACTIONS(1458), + [sym_float_literal] = ACTIONS(1474), + [sym_rune_literal] = ACTIONS(1474), + [sym_pseudo_compile_time_identifier] = ACTIONS(1476), [anon_sym_shared] = ACTIONS(83), [anon_sym_map_LBRACK] = ACTIONS(85), [anon_sym_chan] = ACTIONS(87), [anon_sym_thread] = ACTIONS(89), [anon_sym_atomic] = ACTIONS(91), - [sym___double_quote] = ACTIONS(3336), - [sym___single_quote] = ACTIONS(3338), - [sym___c_double_quote] = ACTIONS(3340), - [sym___c_single_quote] = ACTIONS(3342), - [sym___r_double_quote] = ACTIONS(3344), - [sym___r_single_quote] = ACTIONS(3346), + [sym___double_quote] = ACTIONS(1480), + [sym___single_quote] = ACTIONS(1482), + [sym___c_double_quote] = ACTIONS(1484), + [sym___c_single_quote] = ACTIONS(1486), + [sym___r_double_quote] = ACTIONS(1488), + [sym___r_single_quote] = ACTIONS(1490), }, [937] = { [sym_line_comment] = STATE(937), [sym_block_comment] = STATE(937), - [sym__expression] = STATE(2801), - [sym__expression_without_blocks] = STATE(2300), - [sym__expression_with_blocks] = STATE(2300), - [sym_inc_expression] = STATE(2307), - [sym_dec_expression] = STATE(2307), - [sym_or_block_expression] = STATE(2307), - [sym_option_propagation_expression] = STATE(2307), - [sym_result_propagation_expression] = STATE(2307), - [sym_anon_struct_value_expression] = STATE(2380), - [sym_go_expression] = STATE(2307), - [sym_spawn_expression] = STATE(2307), - [sym_parenthesized_expression] = STATE(2307), - [sym_call_expression] = STATE(2307), - [sym_type_initializer] = STATE(2380), - [sym_function_literal] = STATE(2307), - [sym_reference_expression] = STATE(2311), - [sym_type_reference_expression] = STATE(3541), - [sym_unary_expression] = STATE(2307), - [sym_receive_expression] = STATE(2307), - [sym_binary_expression] = STATE(2307), - [sym_as_type_cast_expression] = STATE(2307), - [sym__max_group] = STATE(2307), - [sym_literal] = STATE(2292), - [sym_map_init_expression] = STATE(2380), - [sym_array_creation] = STATE(2307), - [sym_fixed_array_creation] = STATE(2307), - [sym_selector_expression] = STATE(2307), - [sym_index_expression] = STATE(2307), - [sym_slice_expression] = STATE(2307), - [sym_if_expression] = STATE(2380), - [sym_compile_time_if_expression] = STATE(2380), - [sym_is_expression] = STATE(2307), - [sym_in_expression] = STATE(2307), - [sym_enum_fetch] = STATE(2307), - [sym_match_expression] = STATE(2380), - [sym_select_expression] = STATE(2380), - [sym_lock_expression] = STATE(2380), - [sym_unsafe_expression] = STATE(2380), - [sym_sql_expression] = STATE(2380), - [sym_c_string_literal] = STATE(2308), - [sym_raw_string_literal] = STATE(2308), - [sym_interpreted_string_literal] = STATE(2308), - [sym_mutability_modifiers] = STATE(939), - [sym_plain_type] = STATE(4297), - [sym__plain_type_without_special] = STATE(2302), - [sym_anon_struct_type] = STATE(2303), - [sym_multi_return_type] = STATE(2302), - [sym_result_type] = STATE(2302), - [sym_option_type] = STATE(2302), - [sym_qualified_type] = STATE(3541), - [sym_fixed_array_type] = STATE(2303), - [sym_array_type] = STATE(2303), - [sym_pointer_type] = STATE(2303), - [sym_wrong_pointer_type] = STATE(2303), - [sym_map_type] = STATE(2303), - [sym_channel_type] = STATE(2303), - [sym_shared_type] = STATE(2303), - [sym_thread_type] = STATE(2303), - [sym_atomic_type] = STATE(2303), - [sym_generic_type] = STATE(2303), - [sym_function_type] = STATE(2303), - [sym_identifier] = ACTIONS(2189), + [sym__expression] = STATE(2542), + [sym__expression_without_blocks] = STATE(2347), + [sym__expression_with_blocks] = STATE(2347), + [sym_inc_expression] = STATE(2379), + [sym_dec_expression] = STATE(2379), + [sym_or_block_expression] = STATE(2379), + [sym_option_propagation_expression] = STATE(2379), + [sym_result_propagation_expression] = STATE(2379), + [sym_anon_struct_value_expression] = STATE(2378), + [sym_go_expression] = STATE(2379), + [sym_spawn_expression] = STATE(2379), + [sym_parenthesized_expression] = STATE(2379), + [sym_call_expression] = STATE(2379), + [sym_type_initializer] = STATE(2378), + [sym_function_literal] = STATE(2379), + [sym_reference_expression] = STATE(2377), + [sym_type_reference_expression] = STATE(3460), + [sym_unary_expression] = STATE(2379), + [sym_receive_expression] = STATE(2379), + [sym_binary_expression] = STATE(2379), + [sym_as_type_cast_expression] = STATE(2379), + [sym__max_group] = STATE(2379), + [sym_literal] = STATE(2392), + [sym_map_init_expression] = STATE(2378), + [sym_array_creation] = STATE(2379), + [sym_fixed_array_creation] = STATE(2379), + [sym_selector_expression] = STATE(2379), + [sym_index_expression] = STATE(2379), + [sym_slice_expression] = STATE(2379), + [sym_if_expression] = STATE(2378), + [sym_compile_time_if_expression] = STATE(2378), + [sym_is_expression] = STATE(2379), + [sym_in_expression] = STATE(2379), + [sym_enum_fetch] = STATE(2379), + [sym_match_expression] = STATE(2378), + [sym_select_expression] = STATE(2378), + [sym_lock_expression] = STATE(2378), + [sym_unsafe_expression] = STATE(2378), + [sym_sql_expression] = STATE(2378), + [sym_c_string_literal] = STATE(2401), + [sym_raw_string_literal] = STATE(2401), + [sym_interpreted_string_literal] = STATE(2401), + [sym_mutability_modifiers] = STATE(553), + [sym_plain_type] = STATE(4160), + [sym__plain_type_without_special] = STATE(2360), + [sym_anon_struct_type] = STATE(2362), + [sym_multi_return_type] = STATE(2360), + [sym_result_type] = STATE(2360), + [sym_option_type] = STATE(2360), + [sym_qualified_type] = STATE(3460), + [sym_fixed_array_type] = STATE(2362), + [sym_array_type] = STATE(2362), + [sym_pointer_type] = STATE(2362), + [sym_wrong_pointer_type] = STATE(2362), + [sym_map_type] = STATE(2362), + [sym_channel_type] = STATE(2362), + [sym_shared_type] = STATE(2362), + [sym_thread_type] = STATE(2362), + [sym_atomic_type] = STATE(2362), + [sym_generic_type] = STATE(2362), + [sym_function_type] = STATE(2362), + [sym_identifier] = ACTIONS(1815), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1428), - [anon_sym_LBRACE] = ACTIONS(1430), - [anon_sym_LPAREN] = ACTIONS(1432), - [anon_sym_fn] = ACTIONS(1434), - [anon_sym_PLUS] = ACTIONS(2491), - [anon_sym_DASH] = ACTIONS(2491), - [anon_sym_STAR] = ACTIONS(3354), - [anon_sym_struct] = ACTIONS(1440), + [anon_sym_DOT] = ACTIONS(1430), + [anon_sym_LBRACE] = ACTIONS(1432), + [anon_sym_LPAREN] = ACTIONS(1434), + [anon_sym_fn] = ACTIONS(1436), + [anon_sym_PLUS] = ACTIONS(1817), + [anon_sym_DASH] = ACTIONS(1817), + [anon_sym_STAR] = ACTIONS(1819), + [anon_sym_struct] = ACTIONS(1442), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(3356), - [anon_sym_go] = ACTIONS(2497), - [anon_sym_spawn] = ACTIONS(2499), - [anon_sym_json_DOTdecode] = ACTIONS(1448), - [anon_sym_LBRACK2] = ACTIONS(1450), - [anon_sym_TILDE] = ACTIONS(2491), - [anon_sym_CARET] = ACTIONS(2491), - [anon_sym_AMP] = ACTIONS(3358), - [anon_sym_LT_DASH] = ACTIONS(2503), - [sym_none] = ACTIONS(1456), - [sym_true] = ACTIONS(1456), - [sym_false] = ACTIONS(1456), - [sym_nil] = ACTIONS(1456), - [anon_sym_if] = ACTIONS(1827), - [anon_sym_DOLLARif] = ACTIONS(1460), - [anon_sym_match] = ACTIONS(1462), - [anon_sym_select] = ACTIONS(1464), - [anon_sym_lock] = ACTIONS(1466), - [anon_sym_rlock] = ACTIONS(1466), - [anon_sym_unsafe] = ACTIONS(1833), - [anon_sym_sql] = ACTIONS(1470), - [sym_int_literal] = ACTIONS(1456), - [sym_float_literal] = ACTIONS(1472), - [sym_rune_literal] = ACTIONS(1472), - [sym_pseudo_compile_time_identifier] = ACTIONS(1474), + [anon_sym_BANG] = ACTIONS(1821), + [anon_sym_go] = ACTIONS(1823), + [anon_sym_spawn] = ACTIONS(1825), + [anon_sym_json_DOTdecode] = ACTIONS(1450), + [anon_sym_LBRACK2] = ACTIONS(1827), + [anon_sym_TILDE] = ACTIONS(1817), + [anon_sym_CARET] = ACTIONS(1817), + [anon_sym_AMP] = ACTIONS(1829), + [anon_sym_LT_DASH] = ACTIONS(1831), + [sym_none] = ACTIONS(1458), + [sym_true] = ACTIONS(1458), + [sym_false] = ACTIONS(1458), + [sym_nil] = ACTIONS(1458), + [anon_sym_if] = ACTIONS(1833), + [anon_sym_DOLLARif] = ACTIONS(1462), + [anon_sym_match] = ACTIONS(1464), + [anon_sym_select] = ACTIONS(1835), + [anon_sym_lock] = ACTIONS(1837), + [anon_sym_rlock] = ACTIONS(1837), + [anon_sym_unsafe] = ACTIONS(1839), + [anon_sym_sql] = ACTIONS(1472), + [sym_int_literal] = ACTIONS(1458), + [sym_float_literal] = ACTIONS(1474), + [sym_rune_literal] = ACTIONS(1474), + [sym_pseudo_compile_time_identifier] = ACTIONS(1476), [anon_sym_shared] = ACTIONS(83), [anon_sym_map_LBRACK] = ACTIONS(85), [anon_sym_chan] = ACTIONS(87), [anon_sym_thread] = ACTIONS(89), [anon_sym_atomic] = ACTIONS(91), - [sym___double_quote] = ACTIONS(1478), - [sym___single_quote] = ACTIONS(1480), - [sym___c_double_quote] = ACTIONS(1482), - [sym___c_single_quote] = ACTIONS(1484), - [sym___r_double_quote] = ACTIONS(1486), - [sym___r_single_quote] = ACTIONS(1488), + [sym___double_quote] = ACTIONS(1480), + [sym___single_quote] = ACTIONS(1482), + [sym___c_double_quote] = ACTIONS(1484), + [sym___c_single_quote] = ACTIONS(1486), + [sym___r_double_quote] = ACTIONS(1488), + [sym___r_single_quote] = ACTIONS(1490), }, [938] = { [sym_line_comment] = STATE(938), [sym_block_comment] = STATE(938), - [sym__expression] = STATE(2158), - [sym__expression_without_blocks] = STATE(2226), - [sym__expression_with_blocks] = STATE(2226), - [sym_inc_expression] = STATE(2247), - [sym_dec_expression] = STATE(2247), - [sym_or_block_expression] = STATE(2247), - [sym_option_propagation_expression] = STATE(2247), - [sym_result_propagation_expression] = STATE(2247), - [sym_anon_struct_value_expression] = STATE(2248), - [sym_go_expression] = STATE(2247), - [sym_spawn_expression] = STATE(2247), - [sym_parenthesized_expression] = STATE(2247), - [sym_call_expression] = STATE(2247), - [sym_type_initializer] = STATE(2248), - [sym_function_literal] = STATE(2247), - [sym_reference_expression] = STATE(2252), - [sym_type_reference_expression] = STATE(3541), - [sym_unary_expression] = STATE(2247), - [sym_receive_expression] = STATE(2247), - [sym_binary_expression] = STATE(2247), - [sym_as_type_cast_expression] = STATE(2247), - [sym__max_group] = STATE(2247), - [sym_literal] = STATE(2155), - [sym_map_init_expression] = STATE(2248), - [sym_array_creation] = STATE(2247), - [sym_fixed_array_creation] = STATE(2247), - [sym_selector_expression] = STATE(2247), - [sym_index_expression] = STATE(2247), - [sym_slice_expression] = STATE(2247), - [sym_if_expression] = STATE(2248), - [sym_compile_time_if_expression] = STATE(2248), - [sym_is_expression] = STATE(2247), - [sym_in_expression] = STATE(2247), - [sym_enum_fetch] = STATE(2247), - [sym_match_expression] = STATE(2248), - [sym_select_expression] = STATE(2248), - [sym_lock_expression] = STATE(2248), - [sym_unsafe_expression] = STATE(2248), - [sym_sql_expression] = STATE(2248), - [sym_c_string_literal] = STATE(2153), - [sym_raw_string_literal] = STATE(2153), - [sym_interpreted_string_literal] = STATE(2153), - [sym_mutability_modifiers] = STATE(631), - [sym_plain_type] = STATE(4146), - [sym__plain_type_without_special] = STATE(2302), - [sym_anon_struct_type] = STATE(2303), - [sym_multi_return_type] = STATE(2302), - [sym_result_type] = STATE(2302), - [sym_option_type] = STATE(2302), - [sym_qualified_type] = STATE(3541), - [sym_fixed_array_type] = STATE(2303), - [sym_array_type] = STATE(2303), - [sym_pointer_type] = STATE(2303), - [sym_wrong_pointer_type] = STATE(2303), - [sym_map_type] = STATE(2303), - [sym_channel_type] = STATE(2303), - [sym_shared_type] = STATE(2303), - [sym_thread_type] = STATE(2303), - [sym_atomic_type] = STATE(2303), - [sym_generic_type] = STATE(2303), - [sym_function_type] = STATE(2303), - [sym_identifier] = ACTIONS(3286), + [sym__expression] = STATE(2541), + [sym__expression_without_blocks] = STATE(2347), + [sym__expression_with_blocks] = STATE(2347), + [sym_inc_expression] = STATE(2379), + [sym_dec_expression] = STATE(2379), + [sym_or_block_expression] = STATE(2379), + [sym_option_propagation_expression] = STATE(2379), + [sym_result_propagation_expression] = STATE(2379), + [sym_anon_struct_value_expression] = STATE(2378), + [sym_go_expression] = STATE(2379), + [sym_spawn_expression] = STATE(2379), + [sym_parenthesized_expression] = STATE(2379), + [sym_call_expression] = STATE(2379), + [sym_type_initializer] = STATE(2378), + [sym_function_literal] = STATE(2379), + [sym_reference_expression] = STATE(2377), + [sym_type_reference_expression] = STATE(3460), + [sym_unary_expression] = STATE(2379), + [sym_receive_expression] = STATE(2379), + [sym_binary_expression] = STATE(2379), + [sym_as_type_cast_expression] = STATE(2379), + [sym__max_group] = STATE(2379), + [sym_literal] = STATE(2392), + [sym_map_init_expression] = STATE(2378), + [sym_array_creation] = STATE(2379), + [sym_fixed_array_creation] = STATE(2379), + [sym_selector_expression] = STATE(2379), + [sym_index_expression] = STATE(2379), + [sym_slice_expression] = STATE(2379), + [sym_if_expression] = STATE(2378), + [sym_compile_time_if_expression] = STATE(2378), + [sym_is_expression] = STATE(2379), + [sym_in_expression] = STATE(2379), + [sym_enum_fetch] = STATE(2379), + [sym_match_expression] = STATE(2378), + [sym_select_expression] = STATE(2378), + [sym_lock_expression] = STATE(2378), + [sym_unsafe_expression] = STATE(2378), + [sym_sql_expression] = STATE(2378), + [sym_c_string_literal] = STATE(2401), + [sym_raw_string_literal] = STATE(2401), + [sym_interpreted_string_literal] = STATE(2401), + [sym_mutability_modifiers] = STATE(553), + [sym_plain_type] = STATE(4160), + [sym__plain_type_without_special] = STATE(2360), + [sym_anon_struct_type] = STATE(2362), + [sym_multi_return_type] = STATE(2360), + [sym_result_type] = STATE(2360), + [sym_option_type] = STATE(2360), + [sym_qualified_type] = STATE(3460), + [sym_fixed_array_type] = STATE(2362), + [sym_array_type] = STATE(2362), + [sym_pointer_type] = STATE(2362), + [sym_wrong_pointer_type] = STATE(2362), + [sym_map_type] = STATE(2362), + [sym_channel_type] = STATE(2362), + [sym_shared_type] = STATE(2362), + [sym_thread_type] = STATE(2362), + [sym_atomic_type] = STATE(2362), + [sym_generic_type] = STATE(2362), + [sym_function_type] = STATE(2362), + [sym_identifier] = ACTIONS(1815), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(3288), - [anon_sym_LBRACE] = ACTIONS(3290), - [anon_sym_LPAREN] = ACTIONS(3292), - [anon_sym_fn] = ACTIONS(3294), - [anon_sym_PLUS] = ACTIONS(3398), - [anon_sym_DASH] = ACTIONS(3398), - [anon_sym_STAR] = ACTIONS(3400), - [anon_sym_struct] = ACTIONS(3300), + [anon_sym_DOT] = ACTIONS(1430), + [anon_sym_LBRACE] = ACTIONS(1432), + [anon_sym_LPAREN] = ACTIONS(1434), + [anon_sym_fn] = ACTIONS(1436), + [anon_sym_PLUS] = ACTIONS(1817), + [anon_sym_DASH] = ACTIONS(1817), + [anon_sym_STAR] = ACTIONS(1819), + [anon_sym_struct] = ACTIONS(1442), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(3402), - [anon_sym_go] = ACTIONS(3404), - [anon_sym_spawn] = ACTIONS(3406), - [anon_sym_json_DOTdecode] = ACTIONS(3308), - [anon_sym_LBRACK2] = ACTIONS(3310), - [anon_sym_TILDE] = ACTIONS(3398), - [anon_sym_CARET] = ACTIONS(3398), - [anon_sym_AMP] = ACTIONS(3408), - [anon_sym_LT_DASH] = ACTIONS(3410), - [sym_none] = ACTIONS(3316), - [sym_true] = ACTIONS(3316), - [sym_false] = ACTIONS(3316), - [sym_nil] = ACTIONS(3316), - [anon_sym_if] = ACTIONS(3318), - [anon_sym_DOLLARif] = ACTIONS(3320), - [anon_sym_match] = ACTIONS(3322), - [anon_sym_select] = ACTIONS(3412), - [anon_sym_lock] = ACTIONS(3414), - [anon_sym_rlock] = ACTIONS(3414), - [anon_sym_unsafe] = ACTIONS(3328), - [anon_sym_sql] = ACTIONS(3330), - [sym_int_literal] = ACTIONS(3316), - [sym_float_literal] = ACTIONS(3332), - [sym_rune_literal] = ACTIONS(3332), - [sym_pseudo_compile_time_identifier] = ACTIONS(3334), + [anon_sym_BANG] = ACTIONS(1821), + [anon_sym_go] = ACTIONS(1823), + [anon_sym_spawn] = ACTIONS(1825), + [anon_sym_json_DOTdecode] = ACTIONS(1450), + [anon_sym_LBRACK2] = ACTIONS(1827), + [anon_sym_TILDE] = ACTIONS(1817), + [anon_sym_CARET] = ACTIONS(1817), + [anon_sym_AMP] = ACTIONS(1829), + [anon_sym_LT_DASH] = ACTIONS(1831), + [sym_none] = ACTIONS(1458), + [sym_true] = ACTIONS(1458), + [sym_false] = ACTIONS(1458), + [sym_nil] = ACTIONS(1458), + [anon_sym_if] = ACTIONS(1833), + [anon_sym_DOLLARif] = ACTIONS(1462), + [anon_sym_match] = ACTIONS(1464), + [anon_sym_select] = ACTIONS(1835), + [anon_sym_lock] = ACTIONS(1837), + [anon_sym_rlock] = ACTIONS(1837), + [anon_sym_unsafe] = ACTIONS(1839), + [anon_sym_sql] = ACTIONS(1472), + [sym_int_literal] = ACTIONS(1458), + [sym_float_literal] = ACTIONS(1474), + [sym_rune_literal] = ACTIONS(1474), + [sym_pseudo_compile_time_identifier] = ACTIONS(1476), [anon_sym_shared] = ACTIONS(83), [anon_sym_map_LBRACK] = ACTIONS(85), [anon_sym_chan] = ACTIONS(87), [anon_sym_thread] = ACTIONS(89), [anon_sym_atomic] = ACTIONS(91), - [sym___double_quote] = ACTIONS(3336), - [sym___single_quote] = ACTIONS(3338), - [sym___c_double_quote] = ACTIONS(3340), - [sym___c_single_quote] = ACTIONS(3342), - [sym___r_double_quote] = ACTIONS(3344), - [sym___r_single_quote] = ACTIONS(3346), + [sym___double_quote] = ACTIONS(1480), + [sym___single_quote] = ACTIONS(1482), + [sym___c_double_quote] = ACTIONS(1484), + [sym___c_single_quote] = ACTIONS(1486), + [sym___r_double_quote] = ACTIONS(1488), + [sym___r_single_quote] = ACTIONS(1490), }, [939] = { [sym_line_comment] = STATE(939), [sym_block_comment] = STATE(939), - [sym__expression] = STATE(2817), - [sym__expression_without_blocks] = STATE(2300), - [sym__expression_with_blocks] = STATE(2300), - [sym_inc_expression] = STATE(2307), - [sym_dec_expression] = STATE(2307), - [sym_or_block_expression] = STATE(2307), - [sym_option_propagation_expression] = STATE(2307), - [sym_result_propagation_expression] = STATE(2307), - [sym_anon_struct_value_expression] = STATE(2380), - [sym_go_expression] = STATE(2307), - [sym_spawn_expression] = STATE(2307), - [sym_parenthesized_expression] = STATE(2307), - [sym_call_expression] = STATE(2307), - [sym_type_initializer] = STATE(2380), - [sym_function_literal] = STATE(2307), - [sym_reference_expression] = STATE(2311), - [sym_type_reference_expression] = STATE(3541), - [sym_unary_expression] = STATE(2307), - [sym_receive_expression] = STATE(2307), - [sym_binary_expression] = STATE(2307), - [sym_as_type_cast_expression] = STATE(2307), - [sym__max_group] = STATE(2307), - [sym_literal] = STATE(2292), - [sym_map_init_expression] = STATE(2380), - [sym_array_creation] = STATE(2307), - [sym_fixed_array_creation] = STATE(2307), - [sym_selector_expression] = STATE(2307), - [sym_index_expression] = STATE(2307), - [sym_slice_expression] = STATE(2307), - [sym_if_expression] = STATE(2380), - [sym_compile_time_if_expression] = STATE(2380), - [sym_is_expression] = STATE(2307), - [sym_in_expression] = STATE(2307), - [sym_enum_fetch] = STATE(2307), - [sym_match_expression] = STATE(2380), - [sym_select_expression] = STATE(2380), - [sym_lock_expression] = STATE(2380), - [sym_unsafe_expression] = STATE(2380), - [sym_sql_expression] = STATE(2380), - [sym_c_string_literal] = STATE(2308), - [sym_raw_string_literal] = STATE(2308), - [sym_interpreted_string_literal] = STATE(2308), + [sym__expression] = STATE(2810), + [sym__expression_without_blocks] = STATE(2347), + [sym__expression_with_blocks] = STATE(2347), + [sym_inc_expression] = STATE(2379), + [sym_dec_expression] = STATE(2379), + [sym_or_block_expression] = STATE(2379), + [sym_option_propagation_expression] = STATE(2379), + [sym_result_propagation_expression] = STATE(2379), + [sym_anon_struct_value_expression] = STATE(2378), + [sym_go_expression] = STATE(2379), + [sym_spawn_expression] = STATE(2379), + [sym_parenthesized_expression] = STATE(2379), + [sym_call_expression] = STATE(2379), + [sym_type_initializer] = STATE(2378), + [sym_function_literal] = STATE(2379), + [sym_reference_expression] = STATE(2377), + [sym_type_reference_expression] = STATE(3460), + [sym_unary_expression] = STATE(2379), + [sym_receive_expression] = STATE(2379), + [sym_binary_expression] = STATE(2379), + [sym_as_type_cast_expression] = STATE(2379), + [sym__max_group] = STATE(2379), + [sym_literal] = STATE(2392), + [sym_map_init_expression] = STATE(2378), + [sym_array_creation] = STATE(2379), + [sym_fixed_array_creation] = STATE(2379), + [sym_selector_expression] = STATE(2379), + [sym_index_expression] = STATE(2379), + [sym_slice_expression] = STATE(2379), + [sym_if_expression] = STATE(2378), + [sym_compile_time_if_expression] = STATE(2378), + [sym_is_expression] = STATE(2379), + [sym_in_expression] = STATE(2379), + [sym_enum_fetch] = STATE(2379), + [sym_match_expression] = STATE(2378), + [sym_select_expression] = STATE(2378), + [sym_lock_expression] = STATE(2378), + [sym_unsafe_expression] = STATE(2378), + [sym_sql_expression] = STATE(2378), + [sym_c_string_literal] = STATE(2401), + [sym_raw_string_literal] = STATE(2401), + [sym_interpreted_string_literal] = STATE(2401), [sym_mutability_modifiers] = STATE(939), - [sym_plain_type] = STATE(4297), - [sym__plain_type_without_special] = STATE(2302), - [sym_anon_struct_type] = STATE(2303), - [sym_multi_return_type] = STATE(2302), - [sym_result_type] = STATE(2302), - [sym_option_type] = STATE(2302), - [sym_qualified_type] = STATE(3541), - [sym_fixed_array_type] = STATE(2303), - [sym_array_type] = STATE(2303), - [sym_pointer_type] = STATE(2303), - [sym_wrong_pointer_type] = STATE(2303), - [sym_map_type] = STATE(2303), - [sym_channel_type] = STATE(2303), - [sym_shared_type] = STATE(2303), - [sym_thread_type] = STATE(2303), - [sym_atomic_type] = STATE(2303), - [sym_generic_type] = STATE(2303), - [sym_function_type] = STATE(2303), - [sym_identifier] = ACTIONS(1426), + [sym_plain_type] = STATE(4160), + [sym__plain_type_without_special] = STATE(2360), + [sym_anon_struct_type] = STATE(2362), + [sym_multi_return_type] = STATE(2360), + [sym_result_type] = STATE(2360), + [sym_option_type] = STATE(2360), + [sym_qualified_type] = STATE(3460), + [sym_fixed_array_type] = STATE(2362), + [sym_array_type] = STATE(2362), + [sym_pointer_type] = STATE(2362), + [sym_wrong_pointer_type] = STATE(2362), + [sym_map_type] = STATE(2362), + [sym_channel_type] = STATE(2362), + [sym_shared_type] = STATE(2362), + [sym_thread_type] = STATE(2362), + [sym_atomic_type] = STATE(2362), + [sym_generic_type] = STATE(2362), + [sym_function_type] = STATE(2362), + [sym_identifier] = ACTIONS(1428), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1428), - [anon_sym_LBRACE] = ACTIONS(1430), - [anon_sym_LPAREN] = ACTIONS(1432), - [anon_sym_fn] = ACTIONS(1434), - [anon_sym_PLUS] = ACTIONS(1436), - [anon_sym_DASH] = ACTIONS(1436), - [anon_sym_STAR] = ACTIONS(1438), - [anon_sym_struct] = ACTIONS(1440), + [anon_sym_DOT] = ACTIONS(1430), + [anon_sym_LBRACE] = ACTIONS(1432), + [anon_sym_LPAREN] = ACTIONS(1434), + [anon_sym_fn] = ACTIONS(1436), + [anon_sym_PLUS] = ACTIONS(1438), + [anon_sym_DASH] = ACTIONS(1438), + [anon_sym_STAR] = ACTIONS(1440), + [anon_sym_struct] = ACTIONS(1442), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(1442), - [anon_sym_go] = ACTIONS(1444), - [anon_sym_spawn] = ACTIONS(1446), - [anon_sym_json_DOTdecode] = ACTIONS(1448), - [anon_sym_LBRACK2] = ACTIONS(1450), - [anon_sym_TILDE] = ACTIONS(1436), - [anon_sym_CARET] = ACTIONS(1436), - [anon_sym_AMP] = ACTIONS(1452), - [anon_sym_LT_DASH] = ACTIONS(1454), - [sym_none] = ACTIONS(1456), - [sym_true] = ACTIONS(1456), - [sym_false] = ACTIONS(1456), - [sym_nil] = ACTIONS(1456), - [anon_sym_if] = ACTIONS(1827), - [anon_sym_DOLLARif] = ACTIONS(1460), - [anon_sym_match] = ACTIONS(1462), - [anon_sym_select] = ACTIONS(1464), - [anon_sym_lock] = ACTIONS(1466), - [anon_sym_rlock] = ACTIONS(1466), - [anon_sym_unsafe] = ACTIONS(1833), - [anon_sym_sql] = ACTIONS(1470), - [sym_int_literal] = ACTIONS(1456), - [sym_float_literal] = ACTIONS(1472), - [sym_rune_literal] = ACTIONS(1472), - [sym_pseudo_compile_time_identifier] = ACTIONS(1474), + [anon_sym_BANG] = ACTIONS(1444), + [anon_sym_go] = ACTIONS(1446), + [anon_sym_spawn] = ACTIONS(1448), + [anon_sym_json_DOTdecode] = ACTIONS(1450), + [anon_sym_LBRACK2] = ACTIONS(1452), + [anon_sym_TILDE] = ACTIONS(1438), + [anon_sym_CARET] = ACTIONS(1438), + [anon_sym_AMP] = ACTIONS(1454), + [anon_sym_LT_DASH] = ACTIONS(1456), + [sym_none] = ACTIONS(1458), + [sym_true] = ACTIONS(1458), + [sym_false] = ACTIONS(1458), + [sym_nil] = ACTIONS(1458), + [anon_sym_if] = ACTIONS(1833), + [anon_sym_DOLLARif] = ACTIONS(1462), + [anon_sym_match] = ACTIONS(1464), + [anon_sym_select] = ACTIONS(1466), + [anon_sym_lock] = ACTIONS(1468), + [anon_sym_rlock] = ACTIONS(1468), + [anon_sym_unsafe] = ACTIONS(1839), + [anon_sym_sql] = ACTIONS(1472), + [sym_int_literal] = ACTIONS(1458), + [sym_float_literal] = ACTIONS(1474), + [sym_rune_literal] = ACTIONS(1474), + [sym_pseudo_compile_time_identifier] = ACTIONS(1476), [anon_sym_shared] = ACTIONS(83), [anon_sym_map_LBRACK] = ACTIONS(85), [anon_sym_chan] = ACTIONS(87), [anon_sym_thread] = ACTIONS(89), [anon_sym_atomic] = ACTIONS(91), - [sym___double_quote] = ACTIONS(1478), - [sym___single_quote] = ACTIONS(1480), - [sym___c_double_quote] = ACTIONS(1482), - [sym___c_single_quote] = ACTIONS(1484), - [sym___r_double_quote] = ACTIONS(1486), - [sym___r_single_quote] = ACTIONS(1488), + [sym___double_quote] = ACTIONS(1480), + [sym___single_quote] = ACTIONS(1482), + [sym___c_double_quote] = ACTIONS(1484), + [sym___c_single_quote] = ACTIONS(1486), + [sym___r_double_quote] = ACTIONS(1488), + [sym___r_single_quote] = ACTIONS(1490), }, [940] = { [sym_line_comment] = STATE(940), [sym_block_comment] = STATE(940), - [sym__expression] = STATE(2799), - [sym__expression_without_blocks] = STATE(2300), - [sym__expression_with_blocks] = STATE(2300), - [sym_inc_expression] = STATE(2307), - [sym_dec_expression] = STATE(2307), - [sym_or_block_expression] = STATE(2307), - [sym_option_propagation_expression] = STATE(2307), - [sym_result_propagation_expression] = STATE(2307), - [sym_anon_struct_value_expression] = STATE(2380), - [sym_go_expression] = STATE(2307), - [sym_spawn_expression] = STATE(2307), - [sym_parenthesized_expression] = STATE(2307), - [sym_call_expression] = STATE(2307), - [sym_type_initializer] = STATE(2380), - [sym_function_literal] = STATE(2307), - [sym_reference_expression] = STATE(2311), - [sym_type_reference_expression] = STATE(3541), - [sym_unary_expression] = STATE(2307), - [sym_receive_expression] = STATE(2307), - [sym_binary_expression] = STATE(2307), - [sym_as_type_cast_expression] = STATE(2307), - [sym__max_group] = STATE(2307), - [sym_literal] = STATE(2292), - [sym_map_init_expression] = STATE(2380), - [sym_array_creation] = STATE(2307), - [sym_fixed_array_creation] = STATE(2307), - [sym_selector_expression] = STATE(2307), - [sym_index_expression] = STATE(2307), - [sym_slice_expression] = STATE(2307), - [sym_if_expression] = STATE(2380), - [sym_compile_time_if_expression] = STATE(2380), - [sym_is_expression] = STATE(2307), - [sym_in_expression] = STATE(2307), - [sym_enum_fetch] = STATE(2307), - [sym_match_expression] = STATE(2380), - [sym_select_expression] = STATE(2380), - [sym_lock_expression] = STATE(2380), - [sym_unsafe_expression] = STATE(2380), - [sym_sql_expression] = STATE(2380), - [sym_c_string_literal] = STATE(2308), - [sym_raw_string_literal] = STATE(2308), - [sym_interpreted_string_literal] = STATE(2308), - [sym_mutability_modifiers] = STATE(939), - [sym_plain_type] = STATE(4297), - [sym__plain_type_without_special] = STATE(2302), - [sym_anon_struct_type] = STATE(2303), - [sym_multi_return_type] = STATE(2302), - [sym_result_type] = STATE(2302), - [sym_option_type] = STATE(2302), - [sym_qualified_type] = STATE(3541), - [sym_fixed_array_type] = STATE(2303), - [sym_array_type] = STATE(2303), - [sym_pointer_type] = STATE(2303), - [sym_wrong_pointer_type] = STATE(2303), - [sym_map_type] = STATE(2303), - [sym_channel_type] = STATE(2303), - [sym_shared_type] = STATE(2303), - [sym_thread_type] = STATE(2303), - [sym_atomic_type] = STATE(2303), - [sym_generic_type] = STATE(2303), - [sym_function_type] = STATE(2303), - [sym_identifier] = ACTIONS(2189), + [sym__expression] = STATE(2467), + [sym__expression_without_blocks] = STATE(2347), + [sym__expression_with_blocks] = STATE(2347), + [sym_inc_expression] = STATE(2379), + [sym_dec_expression] = STATE(2379), + [sym_or_block_expression] = STATE(2379), + [sym_option_propagation_expression] = STATE(2379), + [sym_result_propagation_expression] = STATE(2379), + [sym_anon_struct_value_expression] = STATE(2378), + [sym_go_expression] = STATE(2379), + [sym_spawn_expression] = STATE(2379), + [sym_parenthesized_expression] = STATE(2379), + [sym_call_expression] = STATE(2379), + [sym_type_initializer] = STATE(2378), + [sym_function_literal] = STATE(2379), + [sym_reference_expression] = STATE(2377), + [sym_type_reference_expression] = STATE(3460), + [sym_unary_expression] = STATE(2379), + [sym_receive_expression] = STATE(2379), + [sym_binary_expression] = STATE(2379), + [sym_as_type_cast_expression] = STATE(2379), + [sym__max_group] = STATE(2379), + [sym_literal] = STATE(2392), + [sym_map_init_expression] = STATE(2378), + [sym_array_creation] = STATE(2379), + [sym_fixed_array_creation] = STATE(2379), + [sym_selector_expression] = STATE(2379), + [sym_index_expression] = STATE(2379), + [sym_slice_expression] = STATE(2379), + [sym_if_expression] = STATE(2378), + [sym_compile_time_if_expression] = STATE(2378), + [sym_is_expression] = STATE(2379), + [sym_in_expression] = STATE(2379), + [sym_enum_fetch] = STATE(2379), + [sym_match_expression] = STATE(2378), + [sym_select_expression] = STATE(2378), + [sym_lock_expression] = STATE(2378), + [sym_unsafe_expression] = STATE(2378), + [sym_sql_expression] = STATE(2378), + [sym_c_string_literal] = STATE(2401), + [sym_raw_string_literal] = STATE(2401), + [sym_interpreted_string_literal] = STATE(2401), + [sym_mutability_modifiers] = STATE(553), + [sym_plain_type] = STATE(4160), + [sym__plain_type_without_special] = STATE(2360), + [sym_anon_struct_type] = STATE(2362), + [sym_multi_return_type] = STATE(2360), + [sym_result_type] = STATE(2360), + [sym_option_type] = STATE(2360), + [sym_qualified_type] = STATE(3460), + [sym_fixed_array_type] = STATE(2362), + [sym_array_type] = STATE(2362), + [sym_pointer_type] = STATE(2362), + [sym_wrong_pointer_type] = STATE(2362), + [sym_map_type] = STATE(2362), + [sym_channel_type] = STATE(2362), + [sym_shared_type] = STATE(2362), + [sym_thread_type] = STATE(2362), + [sym_atomic_type] = STATE(2362), + [sym_generic_type] = STATE(2362), + [sym_function_type] = STATE(2362), + [sym_identifier] = ACTIONS(1815), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1428), - [anon_sym_LBRACE] = ACTIONS(1430), - [anon_sym_LPAREN] = ACTIONS(1432), - [anon_sym_fn] = ACTIONS(1434), - [anon_sym_PLUS] = ACTIONS(2491), - [anon_sym_DASH] = ACTIONS(2491), - [anon_sym_STAR] = ACTIONS(3354), - [anon_sym_struct] = ACTIONS(1440), + [anon_sym_DOT] = ACTIONS(1430), + [anon_sym_LBRACE] = ACTIONS(1432), + [anon_sym_LPAREN] = ACTIONS(1434), + [anon_sym_fn] = ACTIONS(1436), + [anon_sym_PLUS] = ACTIONS(1817), + [anon_sym_DASH] = ACTIONS(1817), + [anon_sym_STAR] = ACTIONS(1819), + [anon_sym_struct] = ACTIONS(1442), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(3356), - [anon_sym_go] = ACTIONS(2497), - [anon_sym_spawn] = ACTIONS(2499), - [anon_sym_json_DOTdecode] = ACTIONS(1448), - [anon_sym_LBRACK2] = ACTIONS(1450), - [anon_sym_TILDE] = ACTIONS(2491), - [anon_sym_CARET] = ACTIONS(2491), - [anon_sym_AMP] = ACTIONS(3358), - [anon_sym_LT_DASH] = ACTIONS(2503), - [sym_none] = ACTIONS(1456), - [sym_true] = ACTIONS(1456), - [sym_false] = ACTIONS(1456), - [sym_nil] = ACTIONS(1456), - [anon_sym_if] = ACTIONS(1827), - [anon_sym_DOLLARif] = ACTIONS(1460), - [anon_sym_match] = ACTIONS(1462), - [anon_sym_select] = ACTIONS(1464), - [anon_sym_lock] = ACTIONS(1466), - [anon_sym_rlock] = ACTIONS(1466), - [anon_sym_unsafe] = ACTIONS(1833), - [anon_sym_sql] = ACTIONS(1470), - [sym_int_literal] = ACTIONS(1456), - [sym_float_literal] = ACTIONS(1472), - [sym_rune_literal] = ACTIONS(1472), - [sym_pseudo_compile_time_identifier] = ACTIONS(1474), + [anon_sym_BANG] = ACTIONS(1821), + [anon_sym_go] = ACTIONS(1823), + [anon_sym_spawn] = ACTIONS(1825), + [anon_sym_json_DOTdecode] = ACTIONS(1450), + [anon_sym_LBRACK2] = ACTIONS(1827), + [anon_sym_TILDE] = ACTIONS(1817), + [anon_sym_CARET] = ACTIONS(1817), + [anon_sym_AMP] = ACTIONS(1829), + [anon_sym_LT_DASH] = ACTIONS(1831), + [sym_none] = ACTIONS(1458), + [sym_true] = ACTIONS(1458), + [sym_false] = ACTIONS(1458), + [sym_nil] = ACTIONS(1458), + [anon_sym_if] = ACTIONS(1833), + [anon_sym_DOLLARif] = ACTIONS(1462), + [anon_sym_match] = ACTIONS(1464), + [anon_sym_select] = ACTIONS(1835), + [anon_sym_lock] = ACTIONS(1837), + [anon_sym_rlock] = ACTIONS(1837), + [anon_sym_unsafe] = ACTIONS(1839), + [anon_sym_sql] = ACTIONS(1472), + [sym_int_literal] = ACTIONS(1458), + [sym_float_literal] = ACTIONS(1474), + [sym_rune_literal] = ACTIONS(1474), + [sym_pseudo_compile_time_identifier] = ACTIONS(1476), [anon_sym_shared] = ACTIONS(83), [anon_sym_map_LBRACK] = ACTIONS(85), [anon_sym_chan] = ACTIONS(87), [anon_sym_thread] = ACTIONS(89), [anon_sym_atomic] = ACTIONS(91), - [sym___double_quote] = ACTIONS(1478), - [sym___single_quote] = ACTIONS(1480), - [sym___c_double_quote] = ACTIONS(1482), - [sym___c_single_quote] = ACTIONS(1484), - [sym___r_double_quote] = ACTIONS(1486), - [sym___r_single_quote] = ACTIONS(1488), + [sym___double_quote] = ACTIONS(1480), + [sym___single_quote] = ACTIONS(1482), + [sym___c_double_quote] = ACTIONS(1484), + [sym___c_single_quote] = ACTIONS(1486), + [sym___r_double_quote] = ACTIONS(1488), + [sym___r_single_quote] = ACTIONS(1490), }, [941] = { [sym_line_comment] = STATE(941), [sym_block_comment] = STATE(941), - [sym__expression] = STATE(2263), - [sym__expression_without_blocks] = STATE(2300), - [sym__expression_with_blocks] = STATE(2300), - [sym_inc_expression] = STATE(2307), - [sym_dec_expression] = STATE(2307), - [sym_or_block_expression] = STATE(2307), - [sym_option_propagation_expression] = STATE(2307), - [sym_result_propagation_expression] = STATE(2307), - [sym_anon_struct_value_expression] = STATE(2380), - [sym_go_expression] = STATE(2307), - [sym_spawn_expression] = STATE(2307), - [sym_parenthesized_expression] = STATE(2307), - [sym_call_expression] = STATE(2307), - [sym_type_initializer] = STATE(2380), - [sym_function_literal] = STATE(2307), - [sym_reference_expression] = STATE(2311), - [sym_type_reference_expression] = STATE(3541), - [sym_unary_expression] = STATE(2307), - [sym_receive_expression] = STATE(2307), - [sym_binary_expression] = STATE(2307), - [sym_as_type_cast_expression] = STATE(2307), - [sym__max_group] = STATE(2307), - [sym_literal] = STATE(2292), - [sym_map_init_expression] = STATE(2380), - [sym_array_creation] = STATE(2307), - [sym_fixed_array_creation] = STATE(2307), - [sym_selector_expression] = STATE(2307), - [sym_index_expression] = STATE(2307), - [sym_slice_expression] = STATE(2307), - [sym_if_expression] = STATE(2380), - [sym_compile_time_if_expression] = STATE(2380), - [sym_is_expression] = STATE(2307), - [sym_in_expression] = STATE(2307), - [sym_enum_fetch] = STATE(2307), - [sym_match_expression] = STATE(2380), - [sym_select_expression] = STATE(2380), - [sym_lock_expression] = STATE(2380), - [sym_unsafe_expression] = STATE(2380), - [sym_sql_expression] = STATE(2380), - [sym_c_string_literal] = STATE(2308), - [sym_raw_string_literal] = STATE(2308), - [sym_interpreted_string_literal] = STATE(2308), - [sym_mutability_modifiers] = STATE(939), - [sym_plain_type] = STATE(3566), - [sym__plain_type_without_special] = STATE(2302), - [sym_anon_struct_type] = STATE(2303), - [sym_multi_return_type] = STATE(2302), - [sym_result_type] = STATE(2302), - [sym_option_type] = STATE(2302), - [sym_qualified_type] = STATE(3541), - [sym_fixed_array_type] = STATE(2303), - [sym_array_type] = STATE(2303), - [sym_pointer_type] = STATE(2303), - [sym_wrong_pointer_type] = STATE(2303), - [sym_map_type] = STATE(2303), - [sym_channel_type] = STATE(2303), - [sym_shared_type] = STATE(2303), - [sym_thread_type] = STATE(2303), - [sym_atomic_type] = STATE(2303), - [sym_generic_type] = STATE(2303), - [sym_function_type] = STATE(2303), - [sym_identifier] = ACTIONS(1426), + [sym__expression] = STATE(1847), + [sym__expression_without_blocks] = STATE(1953), + [sym__expression_with_blocks] = STATE(1953), + [sym_inc_expression] = STATE(1955), + [sym_dec_expression] = STATE(1955), + [sym_or_block_expression] = STATE(1955), + [sym_option_propagation_expression] = STATE(1955), + [sym_result_propagation_expression] = STATE(1955), + [sym_anon_struct_value_expression] = STATE(1958), + [sym_go_expression] = STATE(1955), + [sym_spawn_expression] = STATE(1955), + [sym_parenthesized_expression] = STATE(1955), + [sym_call_expression] = STATE(1955), + [sym_type_initializer] = STATE(1958), + [sym_function_literal] = STATE(1955), + [sym_reference_expression] = STATE(1956), + [sym_type_reference_expression] = STATE(3460), + [sym_unary_expression] = STATE(1955), + [sym_receive_expression] = STATE(1955), + [sym_binary_expression] = STATE(1955), + [sym_as_type_cast_expression] = STATE(1955), + [sym__max_group] = STATE(1955), + [sym_literal] = STATE(1943), + [sym_map_init_expression] = STATE(1958), + [sym_array_creation] = STATE(1955), + [sym_fixed_array_creation] = STATE(1955), + [sym_selector_expression] = STATE(1955), + [sym_index_expression] = STATE(1955), + [sym_slice_expression] = STATE(1955), + [sym_if_expression] = STATE(1958), + [sym_compile_time_if_expression] = STATE(1958), + [sym_is_expression] = STATE(1955), + [sym_in_expression] = STATE(1955), + [sym_enum_fetch] = STATE(1955), + [sym_match_expression] = STATE(1958), + [sym_select_expression] = STATE(1958), + [sym_lock_expression] = STATE(1958), + [sym_unsafe_expression] = STATE(1958), + [sym_sql_expression] = STATE(1958), + [sym_c_string_literal] = STATE(1942), + [sym_raw_string_literal] = STATE(1942), + [sym_interpreted_string_literal] = STATE(1942), + [sym_mutability_modifiers] = STATE(601), + [sym_plain_type] = STATE(4266), + [sym__plain_type_without_special] = STATE(2360), + [sym_anon_struct_type] = STATE(2362), + [sym_multi_return_type] = STATE(2360), + [sym_result_type] = STATE(2360), + [sym_option_type] = STATE(2360), + [sym_qualified_type] = STATE(3460), + [sym_fixed_array_type] = STATE(2362), + [sym_array_type] = STATE(2362), + [sym_pointer_type] = STATE(2362), + [sym_wrong_pointer_type] = STATE(2362), + [sym_map_type] = STATE(2362), + [sym_channel_type] = STATE(2362), + [sym_shared_type] = STATE(2362), + [sym_thread_type] = STATE(2362), + [sym_atomic_type] = STATE(2362), + [sym_generic_type] = STATE(2362), + [sym_function_type] = STATE(2362), + [sym_identifier] = ACTIONS(3158), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1428), - [anon_sym_LBRACE] = ACTIONS(1430), - [anon_sym_LPAREN] = ACTIONS(1432), - [anon_sym_fn] = ACTIONS(1434), - [anon_sym_PLUS] = ACTIONS(2491), - [anon_sym_DASH] = ACTIONS(2491), - [anon_sym_STAR] = ACTIONS(2493), - [anon_sym_struct] = ACTIONS(1440), + [anon_sym_DOT] = ACTIONS(705), + [anon_sym_LBRACE] = ACTIONS(3118), + [anon_sym_LPAREN] = ACTIONS(709), + [anon_sym_fn] = ACTIONS(711), + [anon_sym_PLUS] = ACTIONS(3160), + [anon_sym_DASH] = ACTIONS(3160), + [anon_sym_STAR] = ACTIONS(3162), + [anon_sym_struct] = ACTIONS(717), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(2495), - [anon_sym_go] = ACTIONS(2497), - [anon_sym_spawn] = ACTIONS(2499), - [anon_sym_json_DOTdecode] = ACTIONS(1448), - [anon_sym_LBRACK2] = ACTIONS(1450), - [anon_sym_TILDE] = ACTIONS(2491), - [anon_sym_CARET] = ACTIONS(2491), - [anon_sym_AMP] = ACTIONS(2501), - [anon_sym_LT_DASH] = ACTIONS(2503), - [sym_none] = ACTIONS(1456), - [sym_true] = ACTIONS(1456), - [sym_false] = ACTIONS(1456), - [sym_nil] = ACTIONS(1456), - [anon_sym_if] = ACTIONS(1827), - [anon_sym_DOLLARif] = ACTIONS(1460), - [anon_sym_match] = ACTIONS(1462), - [anon_sym_select] = ACTIONS(1464), - [anon_sym_lock] = ACTIONS(1466), - [anon_sym_rlock] = ACTIONS(1466), - [anon_sym_unsafe] = ACTIONS(1833), - [anon_sym_sql] = ACTIONS(1470), - [sym_int_literal] = ACTIONS(1456), - [sym_float_literal] = ACTIONS(1472), - [sym_rune_literal] = ACTIONS(1472), - [sym_pseudo_compile_time_identifier] = ACTIONS(1474), + [anon_sym_BANG] = ACTIONS(3164), + [anon_sym_go] = ACTIONS(3166), + [anon_sym_spawn] = ACTIONS(3168), + [anon_sym_json_DOTdecode] = ACTIONS(727), + [anon_sym_LBRACK2] = ACTIONS(3170), + [anon_sym_TILDE] = ACTIONS(3160), + [anon_sym_CARET] = ACTIONS(3160), + [anon_sym_AMP] = ACTIONS(3172), + [anon_sym_LT_DASH] = ACTIONS(3174), + [sym_none] = ACTIONS(735), + [sym_true] = ACTIONS(735), + [sym_false] = ACTIONS(735), + [sym_nil] = ACTIONS(735), + [anon_sym_if] = ACTIONS(737), + [anon_sym_DOLLARif] = ACTIONS(739), + [anon_sym_match] = ACTIONS(741), + [anon_sym_select] = ACTIONS(3176), + [anon_sym_lock] = ACTIONS(3178), + [anon_sym_rlock] = ACTIONS(3178), + [anon_sym_unsafe] = ACTIONS(747), + [anon_sym_sql] = ACTIONS(749), + [sym_int_literal] = ACTIONS(735), + [sym_float_literal] = ACTIONS(751), + [sym_rune_literal] = ACTIONS(751), + [sym_pseudo_compile_time_identifier] = ACTIONS(753), [anon_sym_shared] = ACTIONS(83), [anon_sym_map_LBRACK] = ACTIONS(85), [anon_sym_chan] = ACTIONS(87), [anon_sym_thread] = ACTIONS(89), [anon_sym_atomic] = ACTIONS(91), - [sym___double_quote] = ACTIONS(1478), - [sym___single_quote] = ACTIONS(1480), - [sym___c_double_quote] = ACTIONS(1482), - [sym___c_single_quote] = ACTIONS(1484), - [sym___r_double_quote] = ACTIONS(1486), - [sym___r_single_quote] = ACTIONS(1488), + [sym___double_quote] = ACTIONS(755), + [sym___single_quote] = ACTIONS(757), + [sym___c_double_quote] = ACTIONS(759), + [sym___c_single_quote] = ACTIONS(761), + [sym___r_double_quote] = ACTIONS(763), + [sym___r_single_quote] = ACTIONS(765), }, [942] = { [sym_line_comment] = STATE(942), [sym_block_comment] = STATE(942), - [sym__expression] = STATE(2264), - [sym__expression_without_blocks] = STATE(2300), - [sym__expression_with_blocks] = STATE(2300), - [sym_inc_expression] = STATE(2307), - [sym_dec_expression] = STATE(2307), - [sym_or_block_expression] = STATE(2307), - [sym_option_propagation_expression] = STATE(2307), - [sym_result_propagation_expression] = STATE(2307), - [sym_anon_struct_value_expression] = STATE(2380), - [sym_go_expression] = STATE(2307), - [sym_spawn_expression] = STATE(2307), - [sym_parenthesized_expression] = STATE(2307), - [sym_call_expression] = STATE(2307), - [sym_type_initializer] = STATE(2380), - [sym_function_literal] = STATE(2307), - [sym_reference_expression] = STATE(2311), - [sym_type_reference_expression] = STATE(3541), - [sym_unary_expression] = STATE(2307), - [sym_receive_expression] = STATE(2307), - [sym_binary_expression] = STATE(2307), - [sym_as_type_cast_expression] = STATE(2307), - [sym__max_group] = STATE(2307), - [sym_literal] = STATE(2292), - [sym_map_init_expression] = STATE(2380), - [sym_array_creation] = STATE(2307), - [sym_fixed_array_creation] = STATE(2307), - [sym_selector_expression] = STATE(2307), - [sym_index_expression] = STATE(2307), - [sym_slice_expression] = STATE(2307), - [sym_if_expression] = STATE(2380), - [sym_compile_time_if_expression] = STATE(2380), - [sym_is_expression] = STATE(2307), - [sym_in_expression] = STATE(2307), - [sym_enum_fetch] = STATE(2307), - [sym_match_expression] = STATE(2380), - [sym_select_expression] = STATE(2380), - [sym_lock_expression] = STATE(2380), - [sym_unsafe_expression] = STATE(2380), - [sym_sql_expression] = STATE(2380), - [sym_c_string_literal] = STATE(2308), - [sym_raw_string_literal] = STATE(2308), - [sym_interpreted_string_literal] = STATE(2308), - [sym_mutability_modifiers] = STATE(939), - [sym_plain_type] = STATE(4297), - [sym__plain_type_without_special] = STATE(2302), - [sym_anon_struct_type] = STATE(2303), - [sym_multi_return_type] = STATE(2302), - [sym_result_type] = STATE(2302), - [sym_option_type] = STATE(2302), - [sym_qualified_type] = STATE(3541), - [sym_fixed_array_type] = STATE(2303), - [sym_array_type] = STATE(2303), - [sym_pointer_type] = STATE(2303), - [sym_wrong_pointer_type] = STATE(2303), - [sym_map_type] = STATE(2303), - [sym_channel_type] = STATE(2303), - [sym_shared_type] = STATE(2303), - [sym_thread_type] = STATE(2303), - [sym_atomic_type] = STATE(2303), - [sym_generic_type] = STATE(2303), - [sym_function_type] = STATE(2303), - [sym_identifier] = ACTIONS(2189), + [sym__expression] = STATE(1774), + [sym__expression_without_blocks] = STATE(1953), + [sym__expression_with_blocks] = STATE(1953), + [sym_inc_expression] = STATE(1955), + [sym_dec_expression] = STATE(1955), + [sym_or_block_expression] = STATE(1955), + [sym_option_propagation_expression] = STATE(1955), + [sym_result_propagation_expression] = STATE(1955), + [sym_anon_struct_value_expression] = STATE(1958), + [sym_go_expression] = STATE(1955), + [sym_spawn_expression] = STATE(1955), + [sym_parenthesized_expression] = STATE(1955), + [sym_call_expression] = STATE(1955), + [sym_type_initializer] = STATE(1958), + [sym_function_literal] = STATE(1955), + [sym_reference_expression] = STATE(1956), + [sym_type_reference_expression] = STATE(3460), + [sym_unary_expression] = STATE(1955), + [sym_receive_expression] = STATE(1955), + [sym_binary_expression] = STATE(1955), + [sym_as_type_cast_expression] = STATE(1955), + [sym__max_group] = STATE(1955), + [sym_literal] = STATE(1943), + [sym_map_init_expression] = STATE(1958), + [sym_array_creation] = STATE(1955), + [sym_fixed_array_creation] = STATE(1955), + [sym_selector_expression] = STATE(1955), + [sym_index_expression] = STATE(1955), + [sym_slice_expression] = STATE(1955), + [sym_if_expression] = STATE(1958), + [sym_compile_time_if_expression] = STATE(1958), + [sym_is_expression] = STATE(1955), + [sym_in_expression] = STATE(1955), + [sym_enum_fetch] = STATE(1955), + [sym_match_expression] = STATE(1958), + [sym_select_expression] = STATE(1958), + [sym_lock_expression] = STATE(1958), + [sym_unsafe_expression] = STATE(1958), + [sym_sql_expression] = STATE(1958), + [sym_c_string_literal] = STATE(1942), + [sym_raw_string_literal] = STATE(1942), + [sym_interpreted_string_literal] = STATE(1942), + [sym_mutability_modifiers] = STATE(601), + [sym_plain_type] = STATE(4266), + [sym__plain_type_without_special] = STATE(2360), + [sym_anon_struct_type] = STATE(2362), + [sym_multi_return_type] = STATE(2360), + [sym_result_type] = STATE(2360), + [sym_option_type] = STATE(2360), + [sym_qualified_type] = STATE(3460), + [sym_fixed_array_type] = STATE(2362), + [sym_array_type] = STATE(2362), + [sym_pointer_type] = STATE(2362), + [sym_wrong_pointer_type] = STATE(2362), + [sym_map_type] = STATE(2362), + [sym_channel_type] = STATE(2362), + [sym_shared_type] = STATE(2362), + [sym_thread_type] = STATE(2362), + [sym_atomic_type] = STATE(2362), + [sym_generic_type] = STATE(2362), + [sym_function_type] = STATE(2362), + [sym_identifier] = ACTIONS(3158), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1428), - [anon_sym_LBRACE] = ACTIONS(1430), - [anon_sym_LPAREN] = ACTIONS(1432), - [anon_sym_fn] = ACTIONS(1434), - [anon_sym_PLUS] = ACTIONS(2491), - [anon_sym_DASH] = ACTIONS(2491), - [anon_sym_STAR] = ACTIONS(3354), - [anon_sym_struct] = ACTIONS(1440), + [anon_sym_DOT] = ACTIONS(705), + [anon_sym_LBRACE] = ACTIONS(3118), + [anon_sym_LPAREN] = ACTIONS(709), + [anon_sym_fn] = ACTIONS(711), + [anon_sym_PLUS] = ACTIONS(3160), + [anon_sym_DASH] = ACTIONS(3160), + [anon_sym_STAR] = ACTIONS(3162), + [anon_sym_struct] = ACTIONS(717), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(3356), - [anon_sym_go] = ACTIONS(2497), - [anon_sym_spawn] = ACTIONS(2499), - [anon_sym_json_DOTdecode] = ACTIONS(1448), - [anon_sym_LBRACK2] = ACTIONS(1450), - [anon_sym_TILDE] = ACTIONS(2491), - [anon_sym_CARET] = ACTIONS(2491), - [anon_sym_AMP] = ACTIONS(3358), - [anon_sym_LT_DASH] = ACTIONS(2503), - [sym_none] = ACTIONS(1456), - [sym_true] = ACTIONS(1456), - [sym_false] = ACTIONS(1456), - [sym_nil] = ACTIONS(1456), - [anon_sym_if] = ACTIONS(1827), - [anon_sym_DOLLARif] = ACTIONS(1460), - [anon_sym_match] = ACTIONS(1462), - [anon_sym_select] = ACTIONS(1464), - [anon_sym_lock] = ACTIONS(1466), - [anon_sym_rlock] = ACTIONS(1466), - [anon_sym_unsafe] = ACTIONS(1833), - [anon_sym_sql] = ACTIONS(1470), - [sym_int_literal] = ACTIONS(1456), - [sym_float_literal] = ACTIONS(1472), - [sym_rune_literal] = ACTIONS(1472), - [sym_pseudo_compile_time_identifier] = ACTIONS(1474), + [anon_sym_BANG] = ACTIONS(3164), + [anon_sym_go] = ACTIONS(3166), + [anon_sym_spawn] = ACTIONS(3168), + [anon_sym_json_DOTdecode] = ACTIONS(727), + [anon_sym_LBRACK2] = ACTIONS(3170), + [anon_sym_TILDE] = ACTIONS(3160), + [anon_sym_CARET] = ACTIONS(3160), + [anon_sym_AMP] = ACTIONS(3172), + [anon_sym_LT_DASH] = ACTIONS(3174), + [sym_none] = ACTIONS(735), + [sym_true] = ACTIONS(735), + [sym_false] = ACTIONS(735), + [sym_nil] = ACTIONS(735), + [anon_sym_if] = ACTIONS(737), + [anon_sym_DOLLARif] = ACTIONS(739), + [anon_sym_match] = ACTIONS(741), + [anon_sym_select] = ACTIONS(3176), + [anon_sym_lock] = ACTIONS(3178), + [anon_sym_rlock] = ACTIONS(3178), + [anon_sym_unsafe] = ACTIONS(747), + [anon_sym_sql] = ACTIONS(749), + [sym_int_literal] = ACTIONS(735), + [sym_float_literal] = ACTIONS(751), + [sym_rune_literal] = ACTIONS(751), + [sym_pseudo_compile_time_identifier] = ACTIONS(753), [anon_sym_shared] = ACTIONS(83), [anon_sym_map_LBRACK] = ACTIONS(85), [anon_sym_chan] = ACTIONS(87), [anon_sym_thread] = ACTIONS(89), [anon_sym_atomic] = ACTIONS(91), - [sym___double_quote] = ACTIONS(1478), - [sym___single_quote] = ACTIONS(1480), - [sym___c_double_quote] = ACTIONS(1482), - [sym___c_single_quote] = ACTIONS(1484), - [sym___r_double_quote] = ACTIONS(1486), - [sym___r_single_quote] = ACTIONS(1488), + [sym___double_quote] = ACTIONS(755), + [sym___single_quote] = ACTIONS(757), + [sym___c_double_quote] = ACTIONS(759), + [sym___c_single_quote] = ACTIONS(761), + [sym___r_double_quote] = ACTIONS(763), + [sym___r_single_quote] = ACTIONS(765), }, [943] = { [sym_line_comment] = STATE(943), [sym_block_comment] = STATE(943), - [sym__expression] = STATE(2121), - [sym__expression_without_blocks] = STATE(2226), - [sym__expression_with_blocks] = STATE(2226), - [sym_inc_expression] = STATE(2247), - [sym_dec_expression] = STATE(2247), - [sym_or_block_expression] = STATE(2247), - [sym_option_propagation_expression] = STATE(2247), - [sym_result_propagation_expression] = STATE(2247), - [sym_anon_struct_value_expression] = STATE(2248), - [sym_go_expression] = STATE(2247), - [sym_spawn_expression] = STATE(2247), - [sym_parenthesized_expression] = STATE(2247), - [sym_call_expression] = STATE(2247), - [sym_type_initializer] = STATE(2248), - [sym_function_literal] = STATE(2247), - [sym_reference_expression] = STATE(2252), - [sym_type_reference_expression] = STATE(3541), - [sym_unary_expression] = STATE(2247), - [sym_receive_expression] = STATE(2247), - [sym_binary_expression] = STATE(2247), - [sym_as_type_cast_expression] = STATE(2247), - [sym__max_group] = STATE(2247), - [sym_literal] = STATE(2155), - [sym_map_init_expression] = STATE(2248), - [sym_array_creation] = STATE(2247), - [sym_fixed_array_creation] = STATE(2247), - [sym_selector_expression] = STATE(2247), - [sym_index_expression] = STATE(2247), - [sym_slice_expression] = STATE(2247), - [sym_if_expression] = STATE(2248), - [sym_compile_time_if_expression] = STATE(2248), - [sym_is_expression] = STATE(2247), - [sym_in_expression] = STATE(2247), - [sym_enum_fetch] = STATE(2247), - [sym_match_expression] = STATE(2248), - [sym_select_expression] = STATE(2248), - [sym_lock_expression] = STATE(2248), - [sym_unsafe_expression] = STATE(2248), - [sym_sql_expression] = STATE(2248), - [sym_c_string_literal] = STATE(2153), - [sym_raw_string_literal] = STATE(2153), - [sym_interpreted_string_literal] = STATE(2153), - [sym_mutability_modifiers] = STATE(631), - [sym_plain_type] = STATE(4146), - [sym__plain_type_without_special] = STATE(2302), - [sym_anon_struct_type] = STATE(2303), - [sym_multi_return_type] = STATE(2302), - [sym_result_type] = STATE(2302), - [sym_option_type] = STATE(2302), - [sym_qualified_type] = STATE(3541), - [sym_fixed_array_type] = STATE(2303), - [sym_array_type] = STATE(2303), - [sym_pointer_type] = STATE(2303), - [sym_wrong_pointer_type] = STATE(2303), - [sym_map_type] = STATE(2303), - [sym_channel_type] = STATE(2303), - [sym_shared_type] = STATE(2303), - [sym_thread_type] = STATE(2303), - [sym_atomic_type] = STATE(2303), - [sym_generic_type] = STATE(2303), - [sym_function_type] = STATE(2303), - [sym_identifier] = ACTIONS(3286), + [sym__expression] = STATE(1853), + [sym__expression_without_blocks] = STATE(1953), + [sym__expression_with_blocks] = STATE(1953), + [sym_inc_expression] = STATE(1955), + [sym_dec_expression] = STATE(1955), + [sym_or_block_expression] = STATE(1955), + [sym_option_propagation_expression] = STATE(1955), + [sym_result_propagation_expression] = STATE(1955), + [sym_anon_struct_value_expression] = STATE(1958), + [sym_go_expression] = STATE(1955), + [sym_spawn_expression] = STATE(1955), + [sym_parenthesized_expression] = STATE(1955), + [sym_call_expression] = STATE(1955), + [sym_type_initializer] = STATE(1958), + [sym_function_literal] = STATE(1955), + [sym_reference_expression] = STATE(1956), + [sym_type_reference_expression] = STATE(3460), + [sym_unary_expression] = STATE(1955), + [sym_receive_expression] = STATE(1955), + [sym_binary_expression] = STATE(1955), + [sym_as_type_cast_expression] = STATE(1955), + [sym__max_group] = STATE(1955), + [sym_literal] = STATE(1943), + [sym_map_init_expression] = STATE(1958), + [sym_array_creation] = STATE(1955), + [sym_fixed_array_creation] = STATE(1955), + [sym_selector_expression] = STATE(1955), + [sym_index_expression] = STATE(1955), + [sym_slice_expression] = STATE(1955), + [sym_if_expression] = STATE(1958), + [sym_compile_time_if_expression] = STATE(1958), + [sym_is_expression] = STATE(1955), + [sym_in_expression] = STATE(1955), + [sym_enum_fetch] = STATE(1955), + [sym_match_expression] = STATE(1958), + [sym_select_expression] = STATE(1958), + [sym_lock_expression] = STATE(1958), + [sym_unsafe_expression] = STATE(1958), + [sym_sql_expression] = STATE(1958), + [sym_c_string_literal] = STATE(1942), + [sym_raw_string_literal] = STATE(1942), + [sym_interpreted_string_literal] = STATE(1942), + [sym_mutability_modifiers] = STATE(601), + [sym_plain_type] = STATE(4266), + [sym__plain_type_without_special] = STATE(2360), + [sym_anon_struct_type] = STATE(2362), + [sym_multi_return_type] = STATE(2360), + [sym_result_type] = STATE(2360), + [sym_option_type] = STATE(2360), + [sym_qualified_type] = STATE(3460), + [sym_fixed_array_type] = STATE(2362), + [sym_array_type] = STATE(2362), + [sym_pointer_type] = STATE(2362), + [sym_wrong_pointer_type] = STATE(2362), + [sym_map_type] = STATE(2362), + [sym_channel_type] = STATE(2362), + [sym_shared_type] = STATE(2362), + [sym_thread_type] = STATE(2362), + [sym_atomic_type] = STATE(2362), + [sym_generic_type] = STATE(2362), + [sym_function_type] = STATE(2362), + [sym_identifier] = ACTIONS(3158), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(3288), - [anon_sym_LBRACE] = ACTIONS(3290), - [anon_sym_LPAREN] = ACTIONS(3292), - [anon_sym_fn] = ACTIONS(3294), - [anon_sym_PLUS] = ACTIONS(3398), - [anon_sym_DASH] = ACTIONS(3398), - [anon_sym_STAR] = ACTIONS(3400), - [anon_sym_struct] = ACTIONS(3300), + [anon_sym_DOT] = ACTIONS(705), + [anon_sym_LBRACE] = ACTIONS(3118), + [anon_sym_LPAREN] = ACTIONS(709), + [anon_sym_fn] = ACTIONS(711), + [anon_sym_PLUS] = ACTIONS(3160), + [anon_sym_DASH] = ACTIONS(3160), + [anon_sym_STAR] = ACTIONS(3162), + [anon_sym_struct] = ACTIONS(717), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(3402), - [anon_sym_go] = ACTIONS(3404), - [anon_sym_spawn] = ACTIONS(3406), - [anon_sym_json_DOTdecode] = ACTIONS(3308), - [anon_sym_LBRACK2] = ACTIONS(3310), - [anon_sym_TILDE] = ACTIONS(3398), - [anon_sym_CARET] = ACTIONS(3398), - [anon_sym_AMP] = ACTIONS(3408), - [anon_sym_LT_DASH] = ACTIONS(3410), - [sym_none] = ACTIONS(3316), - [sym_true] = ACTIONS(3316), - [sym_false] = ACTIONS(3316), - [sym_nil] = ACTIONS(3316), - [anon_sym_if] = ACTIONS(3318), - [anon_sym_DOLLARif] = ACTIONS(3320), - [anon_sym_match] = ACTIONS(3322), - [anon_sym_select] = ACTIONS(3412), - [anon_sym_lock] = ACTIONS(3414), - [anon_sym_rlock] = ACTIONS(3414), - [anon_sym_unsafe] = ACTIONS(3328), - [anon_sym_sql] = ACTIONS(3330), - [sym_int_literal] = ACTIONS(3316), - [sym_float_literal] = ACTIONS(3332), - [sym_rune_literal] = ACTIONS(3332), - [sym_pseudo_compile_time_identifier] = ACTIONS(3334), + [anon_sym_BANG] = ACTIONS(3164), + [anon_sym_go] = ACTIONS(3166), + [anon_sym_spawn] = ACTIONS(3168), + [anon_sym_json_DOTdecode] = ACTIONS(727), + [anon_sym_LBRACK2] = ACTIONS(3170), + [anon_sym_TILDE] = ACTIONS(3160), + [anon_sym_CARET] = ACTIONS(3160), + [anon_sym_AMP] = ACTIONS(3172), + [anon_sym_LT_DASH] = ACTIONS(3174), + [sym_none] = ACTIONS(735), + [sym_true] = ACTIONS(735), + [sym_false] = ACTIONS(735), + [sym_nil] = ACTIONS(735), + [anon_sym_if] = ACTIONS(737), + [anon_sym_DOLLARif] = ACTIONS(739), + [anon_sym_match] = ACTIONS(741), + [anon_sym_select] = ACTIONS(3176), + [anon_sym_lock] = ACTIONS(3178), + [anon_sym_rlock] = ACTIONS(3178), + [anon_sym_unsafe] = ACTIONS(747), + [anon_sym_sql] = ACTIONS(749), + [sym_int_literal] = ACTIONS(735), + [sym_float_literal] = ACTIONS(751), + [sym_rune_literal] = ACTIONS(751), + [sym_pseudo_compile_time_identifier] = ACTIONS(753), [anon_sym_shared] = ACTIONS(83), [anon_sym_map_LBRACK] = ACTIONS(85), [anon_sym_chan] = ACTIONS(87), [anon_sym_thread] = ACTIONS(89), [anon_sym_atomic] = ACTIONS(91), - [sym___double_quote] = ACTIONS(3336), - [sym___single_quote] = ACTIONS(3338), - [sym___c_double_quote] = ACTIONS(3340), - [sym___c_single_quote] = ACTIONS(3342), - [sym___r_double_quote] = ACTIONS(3344), - [sym___r_single_quote] = ACTIONS(3346), + [sym___double_quote] = ACTIONS(755), + [sym___single_quote] = ACTIONS(757), + [sym___c_double_quote] = ACTIONS(759), + [sym___c_single_quote] = ACTIONS(761), + [sym___r_double_quote] = ACTIONS(763), + [sym___r_single_quote] = ACTIONS(765), }, [944] = { [sym_line_comment] = STATE(944), [sym_block_comment] = STATE(944), - [sym__expression] = STATE(2780), - [sym__expression_without_blocks] = STATE(2300), - [sym__expression_with_blocks] = STATE(2300), - [sym_inc_expression] = STATE(2307), - [sym_dec_expression] = STATE(2307), - [sym_or_block_expression] = STATE(2307), - [sym_option_propagation_expression] = STATE(2307), - [sym_result_propagation_expression] = STATE(2307), - [sym_anon_struct_value_expression] = STATE(2380), - [sym_go_expression] = STATE(2307), - [sym_spawn_expression] = STATE(2307), - [sym_parenthesized_expression] = STATE(2307), - [sym_call_expression] = STATE(2307), - [sym_type_initializer] = STATE(2380), - [sym_function_literal] = STATE(2307), - [sym_reference_expression] = STATE(2311), - [sym_type_reference_expression] = STATE(3541), - [sym_unary_expression] = STATE(2307), - [sym_receive_expression] = STATE(2307), - [sym_binary_expression] = STATE(2307), - [sym_as_type_cast_expression] = STATE(2307), - [sym__max_group] = STATE(2307), - [sym_literal] = STATE(2292), - [sym_map_init_expression] = STATE(2380), - [sym_array_creation] = STATE(2307), - [sym_fixed_array_creation] = STATE(2307), - [sym_selector_expression] = STATE(2307), - [sym_index_expression] = STATE(2307), - [sym_slice_expression] = STATE(2307), - [sym_if_expression] = STATE(2380), - [sym_compile_time_if_expression] = STATE(2380), - [sym_is_expression] = STATE(2307), - [sym_in_expression] = STATE(2307), - [sym_enum_fetch] = STATE(2307), - [sym_match_expression] = STATE(2380), - [sym_select_expression] = STATE(2380), - [sym_lock_expression] = STATE(2380), - [sym_unsafe_expression] = STATE(2380), - [sym_sql_expression] = STATE(2380), - [sym_c_string_literal] = STATE(2308), - [sym_raw_string_literal] = STATE(2308), - [sym_interpreted_string_literal] = STATE(2308), - [sym_mutability_modifiers] = STATE(939), - [sym_plain_type] = STATE(4297), - [sym__plain_type_without_special] = STATE(2302), - [sym_anon_struct_type] = STATE(2303), - [sym_multi_return_type] = STATE(2302), - [sym_result_type] = STATE(2302), - [sym_option_type] = STATE(2302), - [sym_qualified_type] = STATE(3541), - [sym_fixed_array_type] = STATE(2303), - [sym_array_type] = STATE(2303), - [sym_pointer_type] = STATE(2303), - [sym_wrong_pointer_type] = STATE(2303), - [sym_map_type] = STATE(2303), - [sym_channel_type] = STATE(2303), - [sym_shared_type] = STATE(2303), - [sym_thread_type] = STATE(2303), - [sym_atomic_type] = STATE(2303), - [sym_generic_type] = STATE(2303), - [sym_function_type] = STATE(2303), - [sym_identifier] = ACTIONS(1807), + [sym__expression] = STATE(1851), + [sym__expression_without_blocks] = STATE(1953), + [sym__expression_with_blocks] = STATE(1953), + [sym_inc_expression] = STATE(1955), + [sym_dec_expression] = STATE(1955), + [sym_or_block_expression] = STATE(1955), + [sym_option_propagation_expression] = STATE(1955), + [sym_result_propagation_expression] = STATE(1955), + [sym_anon_struct_value_expression] = STATE(1958), + [sym_go_expression] = STATE(1955), + [sym_spawn_expression] = STATE(1955), + [sym_parenthesized_expression] = STATE(1955), + [sym_call_expression] = STATE(1955), + [sym_type_initializer] = STATE(1958), + [sym_function_literal] = STATE(1955), + [sym_reference_expression] = STATE(1956), + [sym_type_reference_expression] = STATE(3460), + [sym_unary_expression] = STATE(1955), + [sym_receive_expression] = STATE(1955), + [sym_binary_expression] = STATE(1955), + [sym_as_type_cast_expression] = STATE(1955), + [sym__max_group] = STATE(1955), + [sym_literal] = STATE(1943), + [sym_map_init_expression] = STATE(1958), + [sym_array_creation] = STATE(1955), + [sym_fixed_array_creation] = STATE(1955), + [sym_selector_expression] = STATE(1955), + [sym_index_expression] = STATE(1955), + [sym_slice_expression] = STATE(1955), + [sym_if_expression] = STATE(1958), + [sym_compile_time_if_expression] = STATE(1958), + [sym_is_expression] = STATE(1955), + [sym_in_expression] = STATE(1955), + [sym_enum_fetch] = STATE(1955), + [sym_match_expression] = STATE(1958), + [sym_select_expression] = STATE(1958), + [sym_lock_expression] = STATE(1958), + [sym_unsafe_expression] = STATE(1958), + [sym_sql_expression] = STATE(1958), + [sym_c_string_literal] = STATE(1942), + [sym_raw_string_literal] = STATE(1942), + [sym_interpreted_string_literal] = STATE(1942), + [sym_mutability_modifiers] = STATE(601), + [sym_plain_type] = STATE(4266), + [sym__plain_type_without_special] = STATE(2360), + [sym_anon_struct_type] = STATE(2362), + [sym_multi_return_type] = STATE(2360), + [sym_result_type] = STATE(2360), + [sym_option_type] = STATE(2360), + [sym_qualified_type] = STATE(3460), + [sym_fixed_array_type] = STATE(2362), + [sym_array_type] = STATE(2362), + [sym_pointer_type] = STATE(2362), + [sym_wrong_pointer_type] = STATE(2362), + [sym_map_type] = STATE(2362), + [sym_channel_type] = STATE(2362), + [sym_shared_type] = STATE(2362), + [sym_thread_type] = STATE(2362), + [sym_atomic_type] = STATE(2362), + [sym_generic_type] = STATE(2362), + [sym_function_type] = STATE(2362), + [sym_identifier] = ACTIONS(3158), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1428), - [anon_sym_LBRACE] = ACTIONS(1430), - [anon_sym_LPAREN] = ACTIONS(1432), - [anon_sym_fn] = ACTIONS(1434), - [anon_sym_PLUS] = ACTIONS(3064), - [anon_sym_DASH] = ACTIONS(3064), - [anon_sym_STAR] = ACTIONS(3066), - [anon_sym_struct] = ACTIONS(1440), + [anon_sym_DOT] = ACTIONS(705), + [anon_sym_LBRACE] = ACTIONS(3118), + [anon_sym_LPAREN] = ACTIONS(709), + [anon_sym_fn] = ACTIONS(711), + [anon_sym_PLUS] = ACTIONS(3160), + [anon_sym_DASH] = ACTIONS(3160), + [anon_sym_STAR] = ACTIONS(3162), + [anon_sym_struct] = ACTIONS(717), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(3068), - [anon_sym_go] = ACTIONS(3070), - [anon_sym_spawn] = ACTIONS(3072), - [anon_sym_json_DOTdecode] = ACTIONS(1448), - [anon_sym_LBRACK2] = ACTIONS(1821), - [anon_sym_TILDE] = ACTIONS(3064), - [anon_sym_CARET] = ACTIONS(3064), - [anon_sym_AMP] = ACTIONS(3074), - [anon_sym_LT_DASH] = ACTIONS(3076), - [sym_none] = ACTIONS(1456), - [sym_true] = ACTIONS(1456), - [sym_false] = ACTIONS(1456), - [sym_nil] = ACTIONS(1456), - [anon_sym_if] = ACTIONS(1827), - [anon_sym_DOLLARif] = ACTIONS(1460), - [anon_sym_match] = ACTIONS(1462), - [anon_sym_select] = ACTIONS(3078), - [anon_sym_lock] = ACTIONS(3080), - [anon_sym_rlock] = ACTIONS(3080), - [anon_sym_unsafe] = ACTIONS(1833), - [anon_sym_sql] = ACTIONS(1470), - [sym_int_literal] = ACTIONS(1456), - [sym_float_literal] = ACTIONS(1472), - [sym_rune_literal] = ACTIONS(1472), - [sym_pseudo_compile_time_identifier] = ACTIONS(1474), + [anon_sym_BANG] = ACTIONS(3164), + [anon_sym_go] = ACTIONS(3166), + [anon_sym_spawn] = ACTIONS(3168), + [anon_sym_json_DOTdecode] = ACTIONS(727), + [anon_sym_LBRACK2] = ACTIONS(3170), + [anon_sym_TILDE] = ACTIONS(3160), + [anon_sym_CARET] = ACTIONS(3160), + [anon_sym_AMP] = ACTIONS(3172), + [anon_sym_LT_DASH] = ACTIONS(3174), + [sym_none] = ACTIONS(735), + [sym_true] = ACTIONS(735), + [sym_false] = ACTIONS(735), + [sym_nil] = ACTIONS(735), + [anon_sym_if] = ACTIONS(737), + [anon_sym_DOLLARif] = ACTIONS(739), + [anon_sym_match] = ACTIONS(741), + [anon_sym_select] = ACTIONS(3176), + [anon_sym_lock] = ACTIONS(3178), + [anon_sym_rlock] = ACTIONS(3178), + [anon_sym_unsafe] = ACTIONS(747), + [anon_sym_sql] = ACTIONS(749), + [sym_int_literal] = ACTIONS(735), + [sym_float_literal] = ACTIONS(751), + [sym_rune_literal] = ACTIONS(751), + [sym_pseudo_compile_time_identifier] = ACTIONS(753), [anon_sym_shared] = ACTIONS(83), [anon_sym_map_LBRACK] = ACTIONS(85), [anon_sym_chan] = ACTIONS(87), [anon_sym_thread] = ACTIONS(89), [anon_sym_atomic] = ACTIONS(91), - [sym___double_quote] = ACTIONS(1478), - [sym___single_quote] = ACTIONS(1480), - [sym___c_double_quote] = ACTIONS(1482), - [sym___c_single_quote] = ACTIONS(1484), - [sym___r_double_quote] = ACTIONS(1486), - [sym___r_single_quote] = ACTIONS(1488), + [sym___double_quote] = ACTIONS(755), + [sym___single_quote] = ACTIONS(757), + [sym___c_double_quote] = ACTIONS(759), + [sym___c_single_quote] = ACTIONS(761), + [sym___r_double_quote] = ACTIONS(763), + [sym___r_single_quote] = ACTIONS(765), }, [945] = { [sym_line_comment] = STATE(945), [sym_block_comment] = STATE(945), - [sym__expression] = STATE(2159), - [sym__expression_without_blocks] = STATE(2226), - [sym__expression_with_blocks] = STATE(2226), - [sym_inc_expression] = STATE(2247), - [sym_dec_expression] = STATE(2247), - [sym_or_block_expression] = STATE(2247), - [sym_option_propagation_expression] = STATE(2247), - [sym_result_propagation_expression] = STATE(2247), - [sym_anon_struct_value_expression] = STATE(2248), - [sym_go_expression] = STATE(2247), - [sym_spawn_expression] = STATE(2247), - [sym_parenthesized_expression] = STATE(2247), - [sym_call_expression] = STATE(2247), - [sym_type_initializer] = STATE(2248), - [sym_function_literal] = STATE(2247), - [sym_reference_expression] = STATE(2252), - [sym_type_reference_expression] = STATE(3541), - [sym_unary_expression] = STATE(2247), - [sym_receive_expression] = STATE(2247), - [sym_binary_expression] = STATE(2247), - [sym_as_type_cast_expression] = STATE(2247), - [sym__max_group] = STATE(2247), - [sym_literal] = STATE(2155), - [sym_map_init_expression] = STATE(2248), - [sym_array_creation] = STATE(2247), - [sym_fixed_array_creation] = STATE(2247), - [sym_selector_expression] = STATE(2247), - [sym_index_expression] = STATE(2247), - [sym_slice_expression] = STATE(2247), - [sym_if_expression] = STATE(2248), - [sym_compile_time_if_expression] = STATE(2248), - [sym_is_expression] = STATE(2247), - [sym_in_expression] = STATE(2247), - [sym_enum_fetch] = STATE(2247), - [sym_match_expression] = STATE(2248), - [sym_select_expression] = STATE(2248), - [sym_lock_expression] = STATE(2248), - [sym_unsafe_expression] = STATE(2248), - [sym_sql_expression] = STATE(2248), - [sym_c_string_literal] = STATE(2153), - [sym_raw_string_literal] = STATE(2153), - [sym_interpreted_string_literal] = STATE(2153), - [sym_mutability_modifiers] = STATE(631), - [sym_plain_type] = STATE(4146), - [sym__plain_type_without_special] = STATE(2302), - [sym_anon_struct_type] = STATE(2303), - [sym_multi_return_type] = STATE(2302), - [sym_result_type] = STATE(2302), - [sym_option_type] = STATE(2302), - [sym_qualified_type] = STATE(3541), - [sym_fixed_array_type] = STATE(2303), - [sym_array_type] = STATE(2303), - [sym_pointer_type] = STATE(2303), - [sym_wrong_pointer_type] = STATE(2303), - [sym_map_type] = STATE(2303), - [sym_channel_type] = STATE(2303), - [sym_shared_type] = STATE(2303), - [sym_thread_type] = STATE(2303), - [sym_atomic_type] = STATE(2303), - [sym_generic_type] = STATE(2303), - [sym_function_type] = STATE(2303), - [sym_identifier] = ACTIONS(3286), + [sym__expression] = STATE(1848), + [sym__expression_without_blocks] = STATE(1953), + [sym__expression_with_blocks] = STATE(1953), + [sym_inc_expression] = STATE(1955), + [sym_dec_expression] = STATE(1955), + [sym_or_block_expression] = STATE(1955), + [sym_option_propagation_expression] = STATE(1955), + [sym_result_propagation_expression] = STATE(1955), + [sym_anon_struct_value_expression] = STATE(1958), + [sym_go_expression] = STATE(1955), + [sym_spawn_expression] = STATE(1955), + [sym_parenthesized_expression] = STATE(1955), + [sym_call_expression] = STATE(1955), + [sym_type_initializer] = STATE(1958), + [sym_function_literal] = STATE(1955), + [sym_reference_expression] = STATE(1956), + [sym_type_reference_expression] = STATE(3460), + [sym_unary_expression] = STATE(1955), + [sym_receive_expression] = STATE(1955), + [sym_binary_expression] = STATE(1955), + [sym_as_type_cast_expression] = STATE(1955), + [sym__max_group] = STATE(1955), + [sym_literal] = STATE(1943), + [sym_map_init_expression] = STATE(1958), + [sym_array_creation] = STATE(1955), + [sym_fixed_array_creation] = STATE(1955), + [sym_selector_expression] = STATE(1955), + [sym_index_expression] = STATE(1955), + [sym_slice_expression] = STATE(1955), + [sym_if_expression] = STATE(1958), + [sym_compile_time_if_expression] = STATE(1958), + [sym_is_expression] = STATE(1955), + [sym_in_expression] = STATE(1955), + [sym_enum_fetch] = STATE(1955), + [sym_match_expression] = STATE(1958), + [sym_select_expression] = STATE(1958), + [sym_lock_expression] = STATE(1958), + [sym_unsafe_expression] = STATE(1958), + [sym_sql_expression] = STATE(1958), + [sym_c_string_literal] = STATE(1942), + [sym_raw_string_literal] = STATE(1942), + [sym_interpreted_string_literal] = STATE(1942), + [sym_mutability_modifiers] = STATE(601), + [sym_plain_type] = STATE(4266), + [sym__plain_type_without_special] = STATE(2360), + [sym_anon_struct_type] = STATE(2362), + [sym_multi_return_type] = STATE(2360), + [sym_result_type] = STATE(2360), + [sym_option_type] = STATE(2360), + [sym_qualified_type] = STATE(3460), + [sym_fixed_array_type] = STATE(2362), + [sym_array_type] = STATE(2362), + [sym_pointer_type] = STATE(2362), + [sym_wrong_pointer_type] = STATE(2362), + [sym_map_type] = STATE(2362), + [sym_channel_type] = STATE(2362), + [sym_shared_type] = STATE(2362), + [sym_thread_type] = STATE(2362), + [sym_atomic_type] = STATE(2362), + [sym_generic_type] = STATE(2362), + [sym_function_type] = STATE(2362), + [sym_identifier] = ACTIONS(3158), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(3288), - [anon_sym_LBRACE] = ACTIONS(3290), - [anon_sym_LPAREN] = ACTIONS(3292), - [anon_sym_fn] = ACTIONS(3294), - [anon_sym_PLUS] = ACTIONS(3398), - [anon_sym_DASH] = ACTIONS(3398), - [anon_sym_STAR] = ACTIONS(3400), - [anon_sym_struct] = ACTIONS(3300), + [anon_sym_DOT] = ACTIONS(705), + [anon_sym_LBRACE] = ACTIONS(3118), + [anon_sym_LPAREN] = ACTIONS(709), + [anon_sym_fn] = ACTIONS(711), + [anon_sym_PLUS] = ACTIONS(3160), + [anon_sym_DASH] = ACTIONS(3160), + [anon_sym_STAR] = ACTIONS(3162), + [anon_sym_struct] = ACTIONS(717), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(3402), - [anon_sym_go] = ACTIONS(3404), - [anon_sym_spawn] = ACTIONS(3406), - [anon_sym_json_DOTdecode] = ACTIONS(3308), - [anon_sym_LBRACK2] = ACTIONS(3310), - [anon_sym_TILDE] = ACTIONS(3398), - [anon_sym_CARET] = ACTIONS(3398), - [anon_sym_AMP] = ACTIONS(3408), - [anon_sym_LT_DASH] = ACTIONS(3410), - [sym_none] = ACTIONS(3316), - [sym_true] = ACTIONS(3316), - [sym_false] = ACTIONS(3316), - [sym_nil] = ACTIONS(3316), - [anon_sym_if] = ACTIONS(3318), - [anon_sym_DOLLARif] = ACTIONS(3320), - [anon_sym_match] = ACTIONS(3322), - [anon_sym_select] = ACTIONS(3412), - [anon_sym_lock] = ACTIONS(3414), - [anon_sym_rlock] = ACTIONS(3414), - [anon_sym_unsafe] = ACTIONS(3328), - [anon_sym_sql] = ACTIONS(3330), - [sym_int_literal] = ACTIONS(3316), - [sym_float_literal] = ACTIONS(3332), - [sym_rune_literal] = ACTIONS(3332), - [sym_pseudo_compile_time_identifier] = ACTIONS(3334), + [anon_sym_BANG] = ACTIONS(3164), + [anon_sym_go] = ACTIONS(3166), + [anon_sym_spawn] = ACTIONS(3168), + [anon_sym_json_DOTdecode] = ACTIONS(727), + [anon_sym_LBRACK2] = ACTIONS(3170), + [anon_sym_TILDE] = ACTIONS(3160), + [anon_sym_CARET] = ACTIONS(3160), + [anon_sym_AMP] = ACTIONS(3172), + [anon_sym_LT_DASH] = ACTIONS(3174), + [sym_none] = ACTIONS(735), + [sym_true] = ACTIONS(735), + [sym_false] = ACTIONS(735), + [sym_nil] = ACTIONS(735), + [anon_sym_if] = ACTIONS(737), + [anon_sym_DOLLARif] = ACTIONS(739), + [anon_sym_match] = ACTIONS(741), + [anon_sym_select] = ACTIONS(3176), + [anon_sym_lock] = ACTIONS(3178), + [anon_sym_rlock] = ACTIONS(3178), + [anon_sym_unsafe] = ACTIONS(747), + [anon_sym_sql] = ACTIONS(749), + [sym_int_literal] = ACTIONS(735), + [sym_float_literal] = ACTIONS(751), + [sym_rune_literal] = ACTIONS(751), + [sym_pseudo_compile_time_identifier] = ACTIONS(753), [anon_sym_shared] = ACTIONS(83), [anon_sym_map_LBRACK] = ACTIONS(85), [anon_sym_chan] = ACTIONS(87), [anon_sym_thread] = ACTIONS(89), [anon_sym_atomic] = ACTIONS(91), - [sym___double_quote] = ACTIONS(3336), - [sym___single_quote] = ACTIONS(3338), - [sym___c_double_quote] = ACTIONS(3340), - [sym___c_single_quote] = ACTIONS(3342), - [sym___r_double_quote] = ACTIONS(3344), - [sym___r_single_quote] = ACTIONS(3346), + [sym___double_quote] = ACTIONS(755), + [sym___single_quote] = ACTIONS(757), + [sym___c_double_quote] = ACTIONS(759), + [sym___c_single_quote] = ACTIONS(761), + [sym___r_double_quote] = ACTIONS(763), + [sym___r_single_quote] = ACTIONS(765), }, [946] = { [sym_line_comment] = STATE(946), [sym_block_comment] = STATE(946), - [sym_reference_expression] = STATE(4341), - [sym_type_reference_expression] = STATE(3286), - [sym_plain_type] = STATE(3335), - [sym__plain_type_without_special] = STATE(3339), - [sym_anon_struct_type] = STATE(3349), - [sym_multi_return_type] = STATE(3339), - [sym_result_type] = STATE(3339), - [sym_option_type] = STATE(3339), - [sym_qualified_type] = STATE(3286), - [sym_fixed_array_type] = STATE(3349), - [sym_array_type] = STATE(3349), - [sym_pointer_type] = STATE(3349), - [sym_wrong_pointer_type] = STATE(3349), - [sym_map_type] = STATE(3349), - [sym_channel_type] = STATE(3349), - [sym_shared_type] = STATE(3349), - [sym_thread_type] = STATE(3349), - [sym_atomic_type] = STATE(3349), - [sym_generic_type] = STATE(3349), - [sym_function_type] = STATE(3349), - [sym_identifier] = ACTIONS(3420), - [anon_sym_LF] = ACTIONS(1853), - [anon_sym_CR] = ACTIONS(1853), - [anon_sym_CR_LF] = ACTIONS(1853), - [anon_sym_SLASH_SLASH] = ACTIONS(497), - [anon_sym_SLASH_STAR] = ACTIONS(499), - [anon_sym_SEMI] = ACTIONS(1851), - [anon_sym_DOT] = ACTIONS(1851), - [anon_sym_as] = ACTIONS(1851), - [anon_sym_LBRACE] = ACTIONS(1853), - [anon_sym_COMMA] = ACTIONS(1851), - [anon_sym_RBRACE] = ACTIONS(1853), - [anon_sym_LPAREN] = ACTIONS(3422), - [anon_sym___global] = ACTIONS(2507), - [anon_sym_PIPE] = ACTIONS(1851), - [anon_sym_fn] = ACTIONS(3424), - [anon_sym_PLUS] = ACTIONS(1851), - [anon_sym_DASH] = ACTIONS(1851), - [anon_sym_STAR] = ACTIONS(3426), - [anon_sym_SLASH] = ACTIONS(1851), - [anon_sym_PERCENT] = ACTIONS(1851), - [anon_sym_LT] = ACTIONS(1851), - [anon_sym_GT] = ACTIONS(1851), - [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_DOT_DOT_DOT] = ACTIONS(1851), - [anon_sym_LBRACK] = ACTIONS(1856), - [anon_sym_struct] = ACTIONS(3428), - [anon_sym_pub] = ACTIONS(2507), - [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(3430), - [anon_sym_BANG] = ACTIONS(3432), - [anon_sym_go] = ACTIONS(1851), - [anon_sym_spawn] = ACTIONS(1851), - [anon_sym_json_DOTdecode] = ACTIONS(1851), - [anon_sym_LBRACK2] = ACTIONS(3434), - [anon_sym_TILDE] = ACTIONS(1851), - [anon_sym_CARET] = ACTIONS(1851), - [anon_sym_AMP] = ACTIONS(3436), - [anon_sym_LT_DASH] = ACTIONS(1851), - [anon_sym_LT_LT] = ACTIONS(1851), - [anon_sym_GT_GT] = ACTIONS(1851), - [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(1851), - [sym_none] = ACTIONS(1851), - [sym_true] = ACTIONS(1851), - [sym_false] = ACTIONS(1851), - [sym_nil] = ACTIONS(1851), - [anon_sym_QMARK_DOT] = ACTIONS(1851), - [anon_sym_POUND_LBRACK] = ACTIONS(1851), - [anon_sym_if] = ACTIONS(1851), - [anon_sym_DOLLARif] = ACTIONS(1851), - [anon_sym_is] = ACTIONS(1851), - [anon_sym_BANGis] = ACTIONS(1851), - [anon_sym_in] = ACTIONS(1851), - [anon_sym_BANGin] = ACTIONS(1851), - [anon_sym_match] = ACTIONS(1851), - [anon_sym_select] = ACTIONS(1851), - [anon_sym_lock] = ACTIONS(1851), - [anon_sym_rlock] = ACTIONS(1851), - [anon_sym_unsafe] = ACTIONS(1851), - [anon_sym_sql] = ACTIONS(1851), - [sym_int_literal] = ACTIONS(1851), - [sym_float_literal] = ACTIONS(1851), - [sym_rune_literal] = ACTIONS(1851), - [sym_pseudo_compile_time_identifier] = ACTIONS(1851), - [anon_sym_shared] = ACTIONS(3438), - [anon_sym_map_LBRACK] = ACTIONS(3440), - [anon_sym_chan] = ACTIONS(3442), - [anon_sym_thread] = ACTIONS(3444), - [anon_sym_atomic] = ACTIONS(3446), - [sym___double_quote] = ACTIONS(1851), - [sym___single_quote] = ACTIONS(1851), - [sym___c_double_quote] = ACTIONS(1851), - [sym___c_single_quote] = ACTIONS(1851), - [sym___r_double_quote] = ACTIONS(1851), - [sym___r_single_quote] = ACTIONS(1851), + [sym__expression] = STATE(1850), + [sym__expression_without_blocks] = STATE(1953), + [sym__expression_with_blocks] = STATE(1953), + [sym_inc_expression] = STATE(1955), + [sym_dec_expression] = STATE(1955), + [sym_or_block_expression] = STATE(1955), + [sym_option_propagation_expression] = STATE(1955), + [sym_result_propagation_expression] = STATE(1955), + [sym_anon_struct_value_expression] = STATE(1958), + [sym_go_expression] = STATE(1955), + [sym_spawn_expression] = STATE(1955), + [sym_parenthesized_expression] = STATE(1955), + [sym_call_expression] = STATE(1955), + [sym_type_initializer] = STATE(1958), + [sym_function_literal] = STATE(1955), + [sym_reference_expression] = STATE(1956), + [sym_type_reference_expression] = STATE(3460), + [sym_unary_expression] = STATE(1955), + [sym_receive_expression] = STATE(1955), + [sym_binary_expression] = STATE(1955), + [sym_as_type_cast_expression] = STATE(1955), + [sym__max_group] = STATE(1955), + [sym_literal] = STATE(1943), + [sym_map_init_expression] = STATE(1958), + [sym_array_creation] = STATE(1955), + [sym_fixed_array_creation] = STATE(1955), + [sym_selector_expression] = STATE(1955), + [sym_index_expression] = STATE(1955), + [sym_slice_expression] = STATE(1955), + [sym_if_expression] = STATE(1958), + [sym_compile_time_if_expression] = STATE(1958), + [sym_is_expression] = STATE(1955), + [sym_in_expression] = STATE(1955), + [sym_enum_fetch] = STATE(1955), + [sym_match_expression] = STATE(1958), + [sym_select_expression] = STATE(1958), + [sym_lock_expression] = STATE(1958), + [sym_unsafe_expression] = STATE(1958), + [sym_sql_expression] = STATE(1958), + [sym_c_string_literal] = STATE(1942), + [sym_raw_string_literal] = STATE(1942), + [sym_interpreted_string_literal] = STATE(1942), + [sym_mutability_modifiers] = STATE(601), + [sym_plain_type] = STATE(4266), + [sym__plain_type_without_special] = STATE(2360), + [sym_anon_struct_type] = STATE(2362), + [sym_multi_return_type] = STATE(2360), + [sym_result_type] = STATE(2360), + [sym_option_type] = STATE(2360), + [sym_qualified_type] = STATE(3460), + [sym_fixed_array_type] = STATE(2362), + [sym_array_type] = STATE(2362), + [sym_pointer_type] = STATE(2362), + [sym_wrong_pointer_type] = STATE(2362), + [sym_map_type] = STATE(2362), + [sym_channel_type] = STATE(2362), + [sym_shared_type] = STATE(2362), + [sym_thread_type] = STATE(2362), + [sym_atomic_type] = STATE(2362), + [sym_generic_type] = STATE(2362), + [sym_function_type] = STATE(2362), + [sym_identifier] = ACTIONS(3158), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(705), + [anon_sym_LBRACE] = ACTIONS(3118), + [anon_sym_LPAREN] = ACTIONS(709), + [anon_sym_fn] = ACTIONS(711), + [anon_sym_PLUS] = ACTIONS(3160), + [anon_sym_DASH] = ACTIONS(3160), + [anon_sym_STAR] = ACTIONS(3162), + [anon_sym_struct] = ACTIONS(717), + [anon_sym_mut] = ACTIONS(41), + [anon_sym_QMARK] = ACTIONS(47), + [anon_sym_BANG] = ACTIONS(3164), + [anon_sym_go] = ACTIONS(3166), + [anon_sym_spawn] = ACTIONS(3168), + [anon_sym_json_DOTdecode] = ACTIONS(727), + [anon_sym_LBRACK2] = ACTIONS(3170), + [anon_sym_TILDE] = ACTIONS(3160), + [anon_sym_CARET] = ACTIONS(3160), + [anon_sym_AMP] = ACTIONS(3172), + [anon_sym_LT_DASH] = ACTIONS(3174), + [sym_none] = ACTIONS(735), + [sym_true] = ACTIONS(735), + [sym_false] = ACTIONS(735), + [sym_nil] = ACTIONS(735), + [anon_sym_if] = ACTIONS(737), + [anon_sym_DOLLARif] = ACTIONS(739), + [anon_sym_match] = ACTIONS(741), + [anon_sym_select] = ACTIONS(3176), + [anon_sym_lock] = ACTIONS(3178), + [anon_sym_rlock] = ACTIONS(3178), + [anon_sym_unsafe] = ACTIONS(747), + [anon_sym_sql] = ACTIONS(749), + [sym_int_literal] = ACTIONS(735), + [sym_float_literal] = ACTIONS(751), + [sym_rune_literal] = ACTIONS(751), + [sym_pseudo_compile_time_identifier] = ACTIONS(753), + [anon_sym_shared] = ACTIONS(83), + [anon_sym_map_LBRACK] = ACTIONS(85), + [anon_sym_chan] = ACTIONS(87), + [anon_sym_thread] = ACTIONS(89), + [anon_sym_atomic] = ACTIONS(91), + [sym___double_quote] = ACTIONS(755), + [sym___single_quote] = ACTIONS(757), + [sym___c_double_quote] = ACTIONS(759), + [sym___c_single_quote] = ACTIONS(761), + [sym___r_double_quote] = ACTIONS(763), + [sym___r_single_quote] = ACTIONS(765), }, [947] = { [sym_line_comment] = STATE(947), [sym_block_comment] = STATE(947), - [sym_reference_expression] = STATE(4409), - [sym_type_reference_expression] = STATE(1135), - [sym_plain_type] = STATE(1226), - [sym__plain_type_without_special] = STATE(1211), - [sym_anon_struct_type] = STATE(1220), - [sym_multi_return_type] = STATE(1211), - [sym_result_type] = STATE(1211), - [sym_option_type] = STATE(1211), - [sym_qualified_type] = STATE(1135), - [sym_fixed_array_type] = STATE(1220), - [sym_array_type] = STATE(1220), - [sym_pointer_type] = STATE(1220), - [sym_wrong_pointer_type] = STATE(1220), - [sym_map_type] = STATE(1220), - [sym_channel_type] = STATE(1220), - [sym_shared_type] = STATE(1220), - [sym_thread_type] = STATE(1220), - [sym_atomic_type] = STATE(1220), - [sym_generic_type] = STATE(1220), - [sym_function_type] = STATE(1220), - [sym_identifier] = ACTIONS(3448), + [sym_reference_expression] = STATE(4351), + [sym_type_reference_expression] = STATE(3305), + [sym_plain_type] = STATE(3337), + [sym__plain_type_without_special] = STATE(3362), + [sym_anon_struct_type] = STATE(3340), + [sym_multi_return_type] = STATE(3362), + [sym_result_type] = STATE(3362), + [sym_option_type] = STATE(3362), + [sym_qualified_type] = STATE(3305), + [sym_fixed_array_type] = STATE(3340), + [sym_array_type] = STATE(3340), + [sym_pointer_type] = STATE(3340), + [sym_wrong_pointer_type] = STATE(3340), + [sym_map_type] = STATE(3340), + [sym_channel_type] = STATE(3340), + [sym_shared_type] = STATE(3340), + [sym_thread_type] = STATE(3340), + [sym_atomic_type] = STATE(3340), + [sym_generic_type] = STATE(3340), + [sym_function_type] = STATE(3340), + [sym_identifier] = ACTIONS(3426), + [anon_sym_LF] = ACTIONS(1891), + [anon_sym_CR] = ACTIONS(1891), + [anon_sym_CR_LF] = ACTIONS(1891), + [anon_sym_SLASH_SLASH] = ACTIONS(497), + [anon_sym_SLASH_STAR] = ACTIONS(499), + [anon_sym_SEMI] = ACTIONS(1889), + [anon_sym_DOT] = ACTIONS(1889), + [anon_sym_as] = ACTIONS(1889), + [anon_sym_LBRACE] = ACTIONS(1891), + [anon_sym_COMMA] = ACTIONS(1889), + [anon_sym_RBRACE] = ACTIONS(1891), + [anon_sym_LPAREN] = ACTIONS(3428), + [anon_sym___global] = ACTIONS(2475), + [anon_sym_PIPE] = ACTIONS(1889), + [anon_sym_fn] = ACTIONS(3430), + [anon_sym_PLUS] = ACTIONS(1889), + [anon_sym_DASH] = ACTIONS(1889), + [anon_sym_STAR] = ACTIONS(3432), + [anon_sym_SLASH] = ACTIONS(1889), + [anon_sym_PERCENT] = ACTIONS(1889), + [anon_sym_LT] = ACTIONS(1889), + [anon_sym_GT] = ACTIONS(1889), + [anon_sym_EQ_EQ] = ACTIONS(1889), + [anon_sym_BANG_EQ] = ACTIONS(1889), + [anon_sym_LT_EQ] = ACTIONS(1889), + [anon_sym_GT_EQ] = ACTIONS(1889), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1889), + [anon_sym_LBRACK] = ACTIONS(1894), + [anon_sym_struct] = ACTIONS(3434), + [anon_sym_pub] = ACTIONS(2475), + [anon_sym_mut] = ACTIONS(1891), + [anon_sym_COLON] = ACTIONS(1889), + [anon_sym_PLUS_PLUS] = ACTIONS(1889), + [anon_sym_DASH_DASH] = ACTIONS(1889), + [anon_sym_QMARK] = ACTIONS(3436), + [anon_sym_BANG] = ACTIONS(3438), + [anon_sym_go] = ACTIONS(1889), + [anon_sym_spawn] = ACTIONS(1889), + [anon_sym_json_DOTdecode] = ACTIONS(1889), + [anon_sym_LBRACK2] = ACTIONS(3440), + [anon_sym_TILDE] = ACTIONS(1889), + [anon_sym_CARET] = ACTIONS(1889), + [anon_sym_AMP] = ACTIONS(3442), + [anon_sym_LT_DASH] = ACTIONS(1889), + [anon_sym_LT_LT] = ACTIONS(1889), + [anon_sym_GT_GT] = ACTIONS(1889), + [anon_sym_GT_GT_GT] = ACTIONS(1889), + [anon_sym_AMP_CARET] = ACTIONS(1889), + [anon_sym_AMP_AMP] = ACTIONS(1889), + [anon_sym_PIPE_PIPE] = ACTIONS(1889), + [anon_sym_or] = ACTIONS(1889), + [sym_none] = ACTIONS(1889), + [sym_true] = ACTIONS(1889), + [sym_false] = ACTIONS(1889), + [sym_nil] = ACTIONS(1889), + [anon_sym_QMARK_DOT] = ACTIONS(1889), + [anon_sym_POUND_LBRACK] = ACTIONS(1889), + [anon_sym_if] = ACTIONS(1889), + [anon_sym_DOLLARif] = ACTIONS(1889), + [anon_sym_is] = ACTIONS(1889), + [anon_sym_BANGis] = ACTIONS(1889), + [anon_sym_in] = ACTIONS(1889), + [anon_sym_BANGin] = ACTIONS(1889), + [anon_sym_match] = ACTIONS(1889), + [anon_sym_select] = ACTIONS(1889), + [anon_sym_lock] = ACTIONS(1889), + [anon_sym_rlock] = ACTIONS(1889), + [anon_sym_unsafe] = ACTIONS(1889), + [anon_sym_sql] = ACTIONS(1889), + [sym_int_literal] = ACTIONS(1889), + [sym_float_literal] = ACTIONS(1889), + [sym_rune_literal] = ACTIONS(1889), + [sym_pseudo_compile_time_identifier] = ACTIONS(1889), + [anon_sym_shared] = ACTIONS(3444), + [anon_sym_map_LBRACK] = ACTIONS(3446), + [anon_sym_chan] = ACTIONS(3448), + [anon_sym_thread] = ACTIONS(3450), + [anon_sym_atomic] = ACTIONS(3452), + [sym___double_quote] = ACTIONS(1889), + [sym___single_quote] = ACTIONS(1889), + [sym___c_double_quote] = ACTIONS(1889), + [sym___c_single_quote] = ACTIONS(1889), + [sym___r_double_quote] = ACTIONS(1889), + [sym___r_single_quote] = ACTIONS(1889), + }, + [948] = { + [sym_line_comment] = STATE(948), + [sym_block_comment] = STATE(948), + [sym_reference_expression] = STATE(4412), + [sym_type_reference_expression] = STATE(1132), + [sym_plain_type] = STATE(1166), + [sym__plain_type_without_special] = STATE(1214), + [sym_anon_struct_type] = STATE(1225), + [sym_multi_return_type] = STATE(1214), + [sym_result_type] = STATE(1214), + [sym_option_type] = STATE(1214), + [sym_qualified_type] = STATE(1132), + [sym_fixed_array_type] = STATE(1225), + [sym_array_type] = STATE(1225), + [sym_pointer_type] = STATE(1225), + [sym_wrong_pointer_type] = STATE(1225), + [sym_map_type] = STATE(1225), + [sym_channel_type] = STATE(1225), + [sym_shared_type] = STATE(1225), + [sym_thread_type] = STATE(1225), + [sym_atomic_type] = STATE(1225), + [sym_generic_type] = STATE(1225), + [sym_function_type] = STATE(1225), + [sym_identifier] = ACTIONS(3454), [anon_sym_LF] = ACTIONS(619), [anon_sym_CR] = ACTIONS(619), [anon_sym_CR_LF] = ACTIONS(619), @@ -131841,13 +131975,13 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACE] = ACTIONS(619), [anon_sym_COMMA] = ACTIONS(619), [anon_sym_RBRACE] = ACTIONS(619), - [anon_sym_LPAREN] = ACTIONS(3450), + [anon_sym_LPAREN] = ACTIONS(3456), [anon_sym_RPAREN] = ACTIONS(619), [anon_sym_PIPE] = ACTIONS(619), - [anon_sym_fn] = ACTIONS(3452), + [anon_sym_fn] = ACTIONS(3458), [anon_sym_PLUS] = ACTIONS(619), [anon_sym_DASH] = ACTIONS(619), - [anon_sym_STAR] = ACTIONS(3454), + [anon_sym_STAR] = ACTIONS(3460), [anon_sym_SLASH] = ACTIONS(619), [anon_sym_PERCENT] = ACTIONS(619), [anon_sym_LT] = ACTIONS(619), @@ -131858,19 +131992,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_GT_EQ] = ACTIONS(619), [anon_sym_DOT_DOT_DOT] = ACTIONS(619), [anon_sym_LBRACK] = ACTIONS(617), - [anon_sym_struct] = ACTIONS(3456), + [anon_sym_struct] = ACTIONS(3462), [anon_sym_mut] = ACTIONS(619), [anon_sym_PLUS_PLUS] = ACTIONS(619), [anon_sym_DASH_DASH] = ACTIONS(619), - [anon_sym_QMARK] = ACTIONS(3458), - [anon_sym_BANG] = ACTIONS(3460), + [anon_sym_QMARK] = ACTIONS(3464), + [anon_sym_BANG] = ACTIONS(3466), [anon_sym_go] = ACTIONS(619), [anon_sym_spawn] = ACTIONS(619), [anon_sym_json_DOTdecode] = ACTIONS(619), - [anon_sym_LBRACK2] = ACTIONS(3462), + [anon_sym_LBRACK2] = ACTIONS(3468), [anon_sym_TILDE] = ACTIONS(619), [anon_sym_CARET] = ACTIONS(619), - [anon_sym_AMP] = ACTIONS(3464), + [anon_sym_AMP] = ACTIONS(3470), [anon_sym_LT_DASH] = ACTIONS(619), [anon_sym_LT_LT] = ACTIONS(619), [anon_sym_GT_GT] = ACTIONS(619), @@ -131901,11 +132035,11 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(619), [sym_rune_literal] = ACTIONS(619), [sym_pseudo_compile_time_identifier] = ACTIONS(619), - [anon_sym_shared] = ACTIONS(3466), - [anon_sym_map_LBRACK] = ACTIONS(3468), - [anon_sym_chan] = ACTIONS(3470), - [anon_sym_thread] = ACTIONS(3472), - [anon_sym_atomic] = ACTIONS(3474), + [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(619), [sym___single_quote] = ACTIONS(619), [sym___c_double_quote] = ACTIONS(619), @@ -131913,30 +132047,30 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym___r_double_quote] = ACTIONS(619), [sym___r_single_quote] = ACTIONS(619), }, - [948] = { - [sym_line_comment] = STATE(948), - [sym_block_comment] = STATE(948), - [sym_reference_expression] = STATE(4409), - [sym_type_reference_expression] = STATE(1135), - [sym_plain_type] = STATE(1156), - [sym__plain_type_without_special] = STATE(1211), - [sym_anon_struct_type] = STATE(1220), - [sym_multi_return_type] = STATE(1211), - [sym_result_type] = STATE(1211), - [sym_option_type] = STATE(1211), - [sym_qualified_type] = STATE(1135), - [sym_fixed_array_type] = STATE(1220), - [sym_array_type] = STATE(1220), - [sym_pointer_type] = STATE(1220), - [sym_wrong_pointer_type] = STATE(1220), - [sym_map_type] = STATE(1220), - [sym_channel_type] = STATE(1220), - [sym_shared_type] = STATE(1220), - [sym_thread_type] = STATE(1220), - [sym_atomic_type] = STATE(1220), - [sym_generic_type] = STATE(1220), - [sym_function_type] = STATE(1220), - [sym_identifier] = ACTIONS(3448), + [949] = { + [sym_line_comment] = STATE(949), + [sym_block_comment] = STATE(949), + [sym_reference_expression] = STATE(4498), + [sym_type_reference_expression] = STATE(3460), + [sym_plain_type] = STATE(2345), + [sym__plain_type_without_special] = STATE(2360), + [sym_anon_struct_type] = STATE(2362), + [sym_multi_return_type] = STATE(2360), + [sym_result_type] = STATE(2360), + [sym_option_type] = STATE(2360), + [sym_qualified_type] = STATE(3460), + [sym_fixed_array_type] = STATE(2362), + [sym_array_type] = STATE(2362), + [sym_pointer_type] = STATE(2362), + [sym_wrong_pointer_type] = STATE(2362), + [sym_map_type] = STATE(2362), + [sym_channel_type] = STATE(2362), + [sym_shared_type] = STATE(2362), + [sym_thread_type] = STATE(2362), + [sym_atomic_type] = STATE(2362), + [sym_generic_type] = STATE(2362), + [sym_function_type] = STATE(2362), + [sym_identifier] = ACTIONS(627), [anon_sym_LF] = ACTIONS(627), [anon_sym_CR] = ACTIONS(627), [anon_sym_CR_LF] = ACTIONS(627), @@ -131948,13 +132082,13 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACE] = ACTIONS(627), [anon_sym_COMMA] = ACTIONS(627), [anon_sym_RBRACE] = ACTIONS(627), - [anon_sym_LPAREN] = ACTIONS(3450), + [anon_sym_LPAREN] = ACTIONS(627), [anon_sym_RPAREN] = ACTIONS(627), [anon_sym_PIPE] = ACTIONS(627), - [anon_sym_fn] = ACTIONS(3452), + [anon_sym_fn] = ACTIONS(627), [anon_sym_PLUS] = ACTIONS(627), [anon_sym_DASH] = ACTIONS(627), - [anon_sym_STAR] = ACTIONS(3454), + [anon_sym_STAR] = ACTIONS(627), [anon_sym_SLASH] = ACTIONS(627), [anon_sym_PERCENT] = ACTIONS(627), [anon_sym_LT] = ACTIONS(627), @@ -131965,19 +132099,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_GT_EQ] = ACTIONS(627), [anon_sym_DOT_DOT_DOT] = ACTIONS(627), [anon_sym_LBRACK] = ACTIONS(625), - [anon_sym_struct] = ACTIONS(3456), + [anon_sym_struct] = ACTIONS(627), [anon_sym_mut] = ACTIONS(627), [anon_sym_PLUS_PLUS] = ACTIONS(627), [anon_sym_DASH_DASH] = ACTIONS(627), - [anon_sym_QMARK] = ACTIONS(3458), - [anon_sym_BANG] = ACTIONS(3460), + [anon_sym_QMARK] = ACTIONS(627), + [anon_sym_BANG] = ACTIONS(627), [anon_sym_go] = ACTIONS(627), [anon_sym_spawn] = ACTIONS(627), [anon_sym_json_DOTdecode] = ACTIONS(627), - [anon_sym_LBRACK2] = ACTIONS(3462), + [anon_sym_LBRACK2] = ACTIONS(627), [anon_sym_TILDE] = ACTIONS(627), [anon_sym_CARET] = ACTIONS(627), - [anon_sym_AMP] = ACTIONS(3464), + [anon_sym_AMP] = ACTIONS(627), [anon_sym_LT_DASH] = ACTIONS(627), [anon_sym_LT_LT] = ACTIONS(627), [anon_sym_GT_GT] = ACTIONS(627), @@ -132008,11 +132142,11 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(627), [sym_rune_literal] = ACTIONS(627), [sym_pseudo_compile_time_identifier] = ACTIONS(627), - [anon_sym_shared] = ACTIONS(3466), - [anon_sym_map_LBRACK] = ACTIONS(3468), - [anon_sym_chan] = ACTIONS(3470), - [anon_sym_thread] = ACTIONS(3472), - [anon_sym_atomic] = ACTIONS(3474), + [anon_sym_shared] = ACTIONS(627), + [anon_sym_map_LBRACK] = ACTIONS(627), + [anon_sym_chan] = ACTIONS(627), + [anon_sym_thread] = ACTIONS(627), + [anon_sym_atomic] = ACTIONS(627), [sym___double_quote] = ACTIONS(627), [sym___single_quote] = ACTIONS(627), [sym___c_double_quote] = ACTIONS(627), @@ -132020,30 +132154,30 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym___r_double_quote] = ACTIONS(627), [sym___r_single_quote] = ACTIONS(627), }, - [949] = { - [sym_line_comment] = STATE(949), - [sym_block_comment] = STATE(949), - [sym_reference_expression] = STATE(4409), - [sym_type_reference_expression] = STATE(1135), - [sym_plain_type] = STATE(1234), - [sym__plain_type_without_special] = STATE(1211), - [sym_anon_struct_type] = STATE(1220), - [sym_multi_return_type] = STATE(1211), - [sym_result_type] = STATE(1211), - [sym_option_type] = STATE(1211), - [sym_qualified_type] = STATE(1135), - [sym_fixed_array_type] = STATE(1220), - [sym_array_type] = STATE(1220), - [sym_pointer_type] = STATE(1220), - [sym_wrong_pointer_type] = STATE(1220), - [sym_map_type] = STATE(1220), - [sym_channel_type] = STATE(1220), - [sym_shared_type] = STATE(1220), - [sym_thread_type] = STATE(1220), - [sym_atomic_type] = STATE(1220), - [sym_generic_type] = STATE(1220), - [sym_function_type] = STATE(1220), - [sym_identifier] = ACTIONS(3448), + [950] = { + [sym_line_comment] = STATE(950), + [sym_block_comment] = STATE(950), + [sym_reference_expression] = STATE(4498), + [sym_type_reference_expression] = STATE(3460), + [sym_plain_type] = STATE(2320), + [sym__plain_type_without_special] = STATE(2360), + [sym_anon_struct_type] = STATE(2362), + [sym_multi_return_type] = STATE(2360), + [sym_result_type] = STATE(2360), + [sym_option_type] = STATE(2360), + [sym_qualified_type] = STATE(3460), + [sym_fixed_array_type] = STATE(2362), + [sym_array_type] = STATE(2362), + [sym_pointer_type] = STATE(2362), + [sym_wrong_pointer_type] = STATE(2362), + [sym_map_type] = STATE(2362), + [sym_channel_type] = STATE(2362), + [sym_shared_type] = STATE(2362), + [sym_thread_type] = STATE(2362), + [sym_atomic_type] = STATE(2362), + [sym_generic_type] = STATE(2362), + [sym_function_type] = STATE(2362), + [sym_identifier] = ACTIONS(565), [anon_sym_LF] = ACTIONS(567), [anon_sym_CR] = ACTIONS(567), [anon_sym_CR_LF] = ACTIONS(567), @@ -132055,13 +132189,13 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACE] = ACTIONS(567), [anon_sym_COMMA] = ACTIONS(567), [anon_sym_RBRACE] = ACTIONS(567), - [anon_sym_LPAREN] = ACTIONS(3450), + [anon_sym_LPAREN] = ACTIONS(569), [anon_sym_RPAREN] = ACTIONS(567), [anon_sym_PIPE] = ACTIONS(567), - [anon_sym_fn] = ACTIONS(3452), + [anon_sym_fn] = ACTIONS(571), [anon_sym_PLUS] = ACTIONS(567), [anon_sym_DASH] = ACTIONS(567), - [anon_sym_STAR] = ACTIONS(3454), + [anon_sym_STAR] = ACTIONS(573), [anon_sym_SLASH] = ACTIONS(567), [anon_sym_PERCENT] = ACTIONS(567), [anon_sym_LT] = ACTIONS(567), @@ -132072,19 +132206,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_GT_EQ] = ACTIONS(567), [anon_sym_DOT_DOT_DOT] = ACTIONS(567), [anon_sym_LBRACK] = ACTIONS(563), - [anon_sym_struct] = ACTIONS(3456), + [anon_sym_struct] = ACTIONS(575), [anon_sym_mut] = ACTIONS(567), [anon_sym_PLUS_PLUS] = ACTIONS(567), [anon_sym_DASH_DASH] = ACTIONS(567), - [anon_sym_QMARK] = ACTIONS(3458), - [anon_sym_BANG] = ACTIONS(3460), + [anon_sym_QMARK] = ACTIONS(515), + [anon_sym_BANG] = ACTIONS(3482), [anon_sym_go] = ACTIONS(567), [anon_sym_spawn] = ACTIONS(567), [anon_sym_json_DOTdecode] = ACTIONS(567), - [anon_sym_LBRACK2] = ACTIONS(3462), + [anon_sym_LBRACK2] = ACTIONS(579), [anon_sym_TILDE] = ACTIONS(567), [anon_sym_CARET] = ACTIONS(567), - [anon_sym_AMP] = ACTIONS(3464), + [anon_sym_AMP] = ACTIONS(581), [anon_sym_LT_DASH] = ACTIONS(567), [anon_sym_LT_LT] = ACTIONS(567), [anon_sym_GT_GT] = ACTIONS(567), @@ -132115,11 +132249,11 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(567), [sym_rune_literal] = ACTIONS(567), [sym_pseudo_compile_time_identifier] = ACTIONS(567), - [anon_sym_shared] = ACTIONS(3466), - [anon_sym_map_LBRACK] = ACTIONS(3468), - [anon_sym_chan] = ACTIONS(3470), - [anon_sym_thread] = ACTIONS(3472), - [anon_sym_atomic] = ACTIONS(3474), + [anon_sym_shared] = ACTIONS(583), + [anon_sym_map_LBRACK] = ACTIONS(549), + [anon_sym_chan] = ACTIONS(87), + [anon_sym_thread] = ACTIONS(89), + [anon_sym_atomic] = ACTIONS(91), [sym___double_quote] = ACTIONS(567), [sym___single_quote] = ACTIONS(567), [sym___c_double_quote] = ACTIONS(567), @@ -132127,30 +132261,30 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym___r_double_quote] = ACTIONS(567), [sym___r_single_quote] = ACTIONS(567), }, - [950] = { - [sym_line_comment] = STATE(950), - [sym_block_comment] = STATE(950), - [sym_reference_expression] = STATE(4495), - [sym_type_reference_expression] = STATE(3541), - [sym_plain_type] = STATE(2391), - [sym__plain_type_without_special] = STATE(2302), - [sym_anon_struct_type] = STATE(2303), - [sym_multi_return_type] = STATE(2302), - [sym_result_type] = STATE(2302), - [sym_option_type] = STATE(2302), - [sym_qualified_type] = STATE(3541), - [sym_fixed_array_type] = STATE(2303), - [sym_array_type] = STATE(2303), - [sym_pointer_type] = STATE(2303), - [sym_wrong_pointer_type] = STATE(2303), - [sym_map_type] = STATE(2303), - [sym_channel_type] = STATE(2303), - [sym_shared_type] = STATE(2303), - [sym_thread_type] = STATE(2303), - [sym_atomic_type] = STATE(2303), - [sym_generic_type] = STATE(2303), - [sym_function_type] = STATE(2303), - [sym_identifier] = ACTIONS(623), + [951] = { + [sym_line_comment] = STATE(951), + [sym_block_comment] = STATE(951), + [sym_reference_expression] = STATE(4412), + [sym_type_reference_expression] = STATE(1132), + [sym_plain_type] = STATE(1182), + [sym__plain_type_without_special] = STATE(1214), + [sym_anon_struct_type] = STATE(1225), + [sym_multi_return_type] = STATE(1214), + [sym_result_type] = STATE(1214), + [sym_option_type] = STATE(1214), + [sym_qualified_type] = STATE(1132), + [sym_fixed_array_type] = STATE(1225), + [sym_array_type] = STATE(1225), + [sym_pointer_type] = STATE(1225), + [sym_wrong_pointer_type] = STATE(1225), + [sym_map_type] = STATE(1225), + [sym_channel_type] = STATE(1225), + [sym_shared_type] = STATE(1225), + [sym_thread_type] = STATE(1225), + [sym_atomic_type] = STATE(1225), + [sym_generic_type] = STATE(1225), + [sym_function_type] = STATE(1225), + [sym_identifier] = ACTIONS(3454), [anon_sym_LF] = ACTIONS(623), [anon_sym_CR] = ACTIONS(623), [anon_sym_CR_LF] = ACTIONS(623), @@ -132162,13 +132296,13 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACE] = ACTIONS(623), [anon_sym_COMMA] = ACTIONS(623), [anon_sym_RBRACE] = ACTIONS(623), - [anon_sym_LPAREN] = ACTIONS(623), + [anon_sym_LPAREN] = ACTIONS(3456), [anon_sym_RPAREN] = ACTIONS(623), [anon_sym_PIPE] = ACTIONS(623), - [anon_sym_fn] = ACTIONS(623), + [anon_sym_fn] = ACTIONS(3458), [anon_sym_PLUS] = ACTIONS(623), [anon_sym_DASH] = ACTIONS(623), - [anon_sym_STAR] = ACTIONS(623), + [anon_sym_STAR] = ACTIONS(3460), [anon_sym_SLASH] = ACTIONS(623), [anon_sym_PERCENT] = ACTIONS(623), [anon_sym_LT] = ACTIONS(623), @@ -132179,19 +132313,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_GT_EQ] = ACTIONS(623), [anon_sym_DOT_DOT_DOT] = ACTIONS(623), [anon_sym_LBRACK] = ACTIONS(621), - [anon_sym_struct] = ACTIONS(623), + [anon_sym_struct] = ACTIONS(3462), [anon_sym_mut] = ACTIONS(623), [anon_sym_PLUS_PLUS] = ACTIONS(623), [anon_sym_DASH_DASH] = ACTIONS(623), - [anon_sym_QMARK] = ACTIONS(623), - [anon_sym_BANG] = ACTIONS(623), + [anon_sym_QMARK] = ACTIONS(3464), + [anon_sym_BANG] = ACTIONS(3466), [anon_sym_go] = ACTIONS(623), [anon_sym_spawn] = ACTIONS(623), [anon_sym_json_DOTdecode] = ACTIONS(623), - [anon_sym_LBRACK2] = ACTIONS(623), + [anon_sym_LBRACK2] = ACTIONS(3468), [anon_sym_TILDE] = ACTIONS(623), [anon_sym_CARET] = ACTIONS(623), - [anon_sym_AMP] = ACTIONS(623), + [anon_sym_AMP] = ACTIONS(3470), [anon_sym_LT_DASH] = ACTIONS(623), [anon_sym_LT_LT] = ACTIONS(623), [anon_sym_GT_GT] = ACTIONS(623), @@ -132222,11 +132356,11 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(623), [sym_rune_literal] = ACTIONS(623), [sym_pseudo_compile_time_identifier] = ACTIONS(623), - [anon_sym_shared] = ACTIONS(623), - [anon_sym_map_LBRACK] = ACTIONS(623), - [anon_sym_chan] = ACTIONS(623), - [anon_sym_thread] = ACTIONS(623), - [anon_sym_atomic] = ACTIONS(623), + [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(623), [sym___single_quote] = ACTIONS(623), [sym___c_double_quote] = ACTIONS(623), @@ -132234,540 +132368,330 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym___r_double_quote] = ACTIONS(623), [sym___r_single_quote] = ACTIONS(623), }, - [951] = { - [sym_line_comment] = STATE(951), - [sym_block_comment] = STATE(951), - [sym_reference_expression] = STATE(4495), - [sym_type_reference_expression] = STATE(3541), - [sym_plain_type] = STATE(2386), - [sym__plain_type_without_special] = STATE(2302), - [sym_anon_struct_type] = STATE(2303), - [sym_multi_return_type] = STATE(2302), - [sym_result_type] = STATE(2302), - [sym_option_type] = STATE(2302), - [sym_qualified_type] = STATE(3541), - [sym_fixed_array_type] = STATE(2303), - [sym_array_type] = STATE(2303), - [sym_pointer_type] = STATE(2303), - [sym_wrong_pointer_type] = STATE(2303), - [sym_map_type] = STATE(2303), - [sym_channel_type] = STATE(2303), - [sym_shared_type] = STATE(2303), - [sym_thread_type] = STATE(2303), - [sym_atomic_type] = STATE(2303), - [sym_generic_type] = STATE(2303), - [sym_function_type] = STATE(2303), - [sym_identifier] = ACTIONS(597), - [anon_sym_LF] = ACTIONS(599), - [anon_sym_CR] = ACTIONS(599), - [anon_sym_CR_LF] = ACTIONS(599), - [anon_sym_SLASH_SLASH] = ACTIONS(497), - [anon_sym_SLASH_STAR] = ACTIONS(499), - [anon_sym_SEMI] = ACTIONS(599), - [anon_sym_DOT] = ACTIONS(599), - [anon_sym_as] = ACTIONS(599), - [anon_sym_LBRACE] = ACTIONS(599), - [anon_sym_COMMA] = ACTIONS(599), - [anon_sym_RBRACE] = ACTIONS(599), - [anon_sym_LPAREN] = ACTIONS(601), - [anon_sym_RPAREN] = ACTIONS(599), - [anon_sym_PIPE] = ACTIONS(599), - [anon_sym_fn] = ACTIONS(603), - [anon_sym_PLUS] = ACTIONS(599), - [anon_sym_DASH] = ACTIONS(599), - [anon_sym_STAR] = ACTIONS(605), - [anon_sym_SLASH] = ACTIONS(599), - [anon_sym_PERCENT] = ACTIONS(599), - [anon_sym_LT] = ACTIONS(599), - [anon_sym_GT] = ACTIONS(599), - [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(595), - [anon_sym_struct] = ACTIONS(607), - [anon_sym_mut] = ACTIONS(599), - [anon_sym_PLUS_PLUS] = ACTIONS(599), - [anon_sym_DASH_DASH] = ACTIONS(599), - [anon_sym_QMARK] = ACTIONS(515), - [anon_sym_BANG] = ACTIONS(3476), - [anon_sym_go] = ACTIONS(599), - [anon_sym_spawn] = ACTIONS(599), - [anon_sym_json_DOTdecode] = ACTIONS(599), - [anon_sym_LBRACK2] = ACTIONS(611), - [anon_sym_TILDE] = ACTIONS(599), - [anon_sym_CARET] = ACTIONS(599), - [anon_sym_AMP] = ACTIONS(613), - [anon_sym_LT_DASH] = ACTIONS(599), - [anon_sym_LT_LT] = ACTIONS(599), - [anon_sym_GT_GT] = ACTIONS(599), - [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(599), - [sym_none] = ACTIONS(599), - [sym_true] = ACTIONS(599), - [sym_false] = ACTIONS(599), - [sym_nil] = ACTIONS(599), - [anon_sym_QMARK_DOT] = ACTIONS(599), - [anon_sym_POUND_LBRACK] = ACTIONS(599), - [anon_sym_if] = ACTIONS(599), - [anon_sym_DOLLARif] = ACTIONS(599), - [anon_sym_is] = ACTIONS(599), - [anon_sym_BANGis] = ACTIONS(599), - [anon_sym_in] = ACTIONS(599), - [anon_sym_BANGin] = ACTIONS(599), - [anon_sym_match] = ACTIONS(599), - [anon_sym_select] = ACTIONS(599), - [anon_sym_lock] = ACTIONS(599), - [anon_sym_rlock] = ACTIONS(599), - [anon_sym_unsafe] = ACTIONS(599), - [anon_sym_sql] = ACTIONS(599), - [sym_int_literal] = ACTIONS(599), - [sym_float_literal] = ACTIONS(599), - [sym_rune_literal] = ACTIONS(599), - [sym_pseudo_compile_time_identifier] = ACTIONS(599), - [anon_sym_shared] = ACTIONS(615), - [anon_sym_map_LBRACK] = ACTIONS(549), - [anon_sym_chan] = ACTIONS(87), - [anon_sym_thread] = ACTIONS(89), - [anon_sym_atomic] = ACTIONS(91), - [sym___double_quote] = ACTIONS(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), - }, [952] = { [sym_line_comment] = STATE(952), [sym_block_comment] = STATE(952), - [sym_type_parameters] = STATE(4103), - [sym_argument_list] = STATE(1063), - [sym_or_block] = STATE(1069), - [aux_sym_strictly_expression_list_repeat1] = STATE(1405), - [ts_builtin_sym_end] = ACTIONS(3478), - [sym_identifier] = ACTIONS(1661), - [anon_sym_LF] = ACTIONS(1661), - [anon_sym_CR] = ACTIONS(1661), - [anon_sym_CR_LF] = ACTIONS(1661), + [sym_reference_expression] = STATE(4412), + [sym_type_reference_expression] = STATE(1132), + [sym_plain_type] = STATE(1155), + [sym__plain_type_without_special] = STATE(1214), + [sym_anon_struct_type] = STATE(1225), + [sym_multi_return_type] = STATE(1214), + [sym_result_type] = STATE(1214), + [sym_option_type] = STATE(1214), + [sym_qualified_type] = STATE(1132), + [sym_fixed_array_type] = STATE(1225), + [sym_array_type] = STATE(1225), + [sym_pointer_type] = STATE(1225), + [sym_wrong_pointer_type] = STATE(1225), + [sym_map_type] = STATE(1225), + [sym_channel_type] = STATE(1225), + [sym_shared_type] = STATE(1225), + [sym_thread_type] = STATE(1225), + [sym_atomic_type] = STATE(1225), + [sym_generic_type] = STATE(1225), + [sym_function_type] = STATE(1225), + [sym_identifier] = ACTIONS(3454), + [anon_sym_LF] = ACTIONS(589), + [anon_sym_CR] = ACTIONS(589), + [anon_sym_CR_LF] = ACTIONS(589), [anon_sym_SLASH_SLASH] = ACTIONS(497), [anon_sym_SLASH_STAR] = ACTIONS(499), - [anon_sym_DOT] = ACTIONS(3480), - [anon_sym_as] = ACTIONS(3482), - [anon_sym_LBRACE] = ACTIONS(1661), - [anon_sym_COMMA] = ACTIONS(3484), - [anon_sym_const] = ACTIONS(1661), - [anon_sym_LPAREN] = ACTIONS(3486), - [anon_sym___global] = ACTIONS(1661), - [anon_sym_type] = ACTIONS(1661), - [anon_sym_PIPE] = ACTIONS(3488), - [anon_sym_fn] = ACTIONS(1661), - [anon_sym_PLUS] = ACTIONS(3488), - [anon_sym_DASH] = ACTIONS(3488), - [anon_sym_STAR] = ACTIONS(3490), - [anon_sym_SLASH] = ACTIONS(3490), - [anon_sym_PERCENT] = ACTIONS(3490), - [anon_sym_LT] = ACTIONS(3492), - [anon_sym_GT] = ACTIONS(3492), - [anon_sym_EQ_EQ] = ACTIONS(3492), - [anon_sym_BANG_EQ] = ACTIONS(3492), - [anon_sym_LT_EQ] = ACTIONS(3492), - [anon_sym_GT_EQ] = ACTIONS(3492), - [anon_sym_LBRACK] = ACTIONS(3494), - [anon_sym_struct] = ACTIONS(1661), - [anon_sym_union] = ACTIONS(1661), - [anon_sym_pub] = ACTIONS(1661), - [anon_sym_mut] = ACTIONS(1661), - [anon_sym_enum] = ACTIONS(1661), - [anon_sym_interface] = ACTIONS(1661), - [anon_sym_PLUS_PLUS] = ACTIONS(3496), - [anon_sym_DASH_DASH] = ACTIONS(3498), - [anon_sym_QMARK] = ACTIONS(3500), - [anon_sym_BANG] = ACTIONS(3502), - [anon_sym_go] = ACTIONS(1661), - [anon_sym_spawn] = ACTIONS(1661), - [anon_sym_json_DOTdecode] = ACTIONS(1661), - [anon_sym_LBRACK2] = ACTIONS(3504), - [anon_sym_TILDE] = ACTIONS(1661), - [anon_sym_CARET] = ACTIONS(3488), - [anon_sym_AMP] = ACTIONS(3490), - [anon_sym_LT_DASH] = ACTIONS(1661), - [anon_sym_LT_LT] = ACTIONS(3490), - [anon_sym_GT_GT] = ACTIONS(3490), - [anon_sym_GT_GT_GT] = ACTIONS(3490), - [anon_sym_AMP_CARET] = ACTIONS(3490), - [anon_sym_AMP_AMP] = ACTIONS(3506), - [anon_sym_PIPE_PIPE] = ACTIONS(3508), - [anon_sym_or] = ACTIONS(3510), - [sym_none] = ACTIONS(1661), - [sym_true] = ACTIONS(1661), - [sym_false] = ACTIONS(1661), - [sym_nil] = ACTIONS(1661), - [anon_sym_QMARK_DOT] = ACTIONS(3480), - [anon_sym_POUND_LBRACK] = ACTIONS(3504), - [anon_sym_if] = ACTIONS(1661), - [anon_sym_DOLLARif] = ACTIONS(1661), - [anon_sym_is] = ACTIONS(3512), - [anon_sym_BANGis] = ACTIONS(3512), - [anon_sym_in] = ACTIONS(3514), - [anon_sym_BANGin] = ACTIONS(3514), - [anon_sym_match] = ACTIONS(1661), - [anon_sym_select] = ACTIONS(1661), - [anon_sym_lock] = ACTIONS(1661), - [anon_sym_rlock] = ACTIONS(1661), - [anon_sym_unsafe] = ACTIONS(1661), - [anon_sym_sql] = ACTIONS(1661), - [sym_int_literal] = ACTIONS(1661), - [sym_float_literal] = ACTIONS(1661), - [sym_rune_literal] = ACTIONS(1661), - [sym_pseudo_compile_time_identifier] = ACTIONS(1661), - [anon_sym_shared] = ACTIONS(1661), - [anon_sym_map_LBRACK] = ACTIONS(1661), - [anon_sym_chan] = ACTIONS(1661), - [anon_sym_thread] = ACTIONS(1661), - [anon_sym_atomic] = ACTIONS(1661), - [anon_sym_assert] = ACTIONS(1661), - [anon_sym_defer] = ACTIONS(1661), - [anon_sym_goto] = ACTIONS(1661), - [anon_sym_break] = ACTIONS(1661), - [anon_sym_continue] = ACTIONS(1661), - [anon_sym_return] = ACTIONS(1661), - [anon_sym_DOLLARfor] = ACTIONS(1661), - [anon_sym_for] = ACTIONS(1661), - [anon_sym_POUND] = ACTIONS(1661), - [anon_sym_asm] = ACTIONS(1661), - [anon_sym_AT_LBRACK] = ACTIONS(1661), - [sym___double_quote] = ACTIONS(1661), - [sym___single_quote] = ACTIONS(1661), - [sym___c_double_quote] = ACTIONS(1661), - [sym___c_single_quote] = ACTIONS(1661), - [sym___r_double_quote] = ACTIONS(1661), - [sym___r_single_quote] = ACTIONS(1661), + [anon_sym_SEMI] = ACTIONS(589), + [anon_sym_DOT] = ACTIONS(589), + [anon_sym_as] = ACTIONS(589), + [anon_sym_LBRACE] = ACTIONS(589), + [anon_sym_COMMA] = ACTIONS(589), + [anon_sym_RBRACE] = ACTIONS(589), + [anon_sym_LPAREN] = ACTIONS(3456), + [anon_sym_RPAREN] = ACTIONS(589), + [anon_sym_PIPE] = ACTIONS(589), + [anon_sym_fn] = ACTIONS(3458), + [anon_sym_PLUS] = ACTIONS(589), + [anon_sym_DASH] = ACTIONS(589), + [anon_sym_STAR] = ACTIONS(3460), + [anon_sym_SLASH] = ACTIONS(589), + [anon_sym_PERCENT] = ACTIONS(589), + [anon_sym_LT] = ACTIONS(589), + [anon_sym_GT] = ACTIONS(589), + [anon_sym_EQ_EQ] = ACTIONS(589), + [anon_sym_BANG_EQ] = ACTIONS(589), + [anon_sym_LT_EQ] = ACTIONS(589), + [anon_sym_GT_EQ] = ACTIONS(589), + [anon_sym_DOT_DOT_DOT] = ACTIONS(589), + [anon_sym_LBRACK] = ACTIONS(585), + [anon_sym_struct] = ACTIONS(3462), + [anon_sym_mut] = ACTIONS(589), + [anon_sym_PLUS_PLUS] = ACTIONS(589), + [anon_sym_DASH_DASH] = ACTIONS(589), + [anon_sym_QMARK] = ACTIONS(3464), + [anon_sym_BANG] = ACTIONS(3466), + [anon_sym_go] = ACTIONS(589), + [anon_sym_spawn] = ACTIONS(589), + [anon_sym_json_DOTdecode] = ACTIONS(589), + [anon_sym_LBRACK2] = ACTIONS(3468), + [anon_sym_TILDE] = ACTIONS(589), + [anon_sym_CARET] = ACTIONS(589), + [anon_sym_AMP] = ACTIONS(3470), + [anon_sym_LT_DASH] = ACTIONS(589), + [anon_sym_LT_LT] = ACTIONS(589), + [anon_sym_GT_GT] = ACTIONS(589), + [anon_sym_GT_GT_GT] = ACTIONS(589), + [anon_sym_AMP_CARET] = ACTIONS(589), + [anon_sym_AMP_AMP] = ACTIONS(589), + [anon_sym_PIPE_PIPE] = ACTIONS(589), + [anon_sym_or] = ACTIONS(589), + [sym_none] = ACTIONS(589), + [sym_true] = ACTIONS(589), + [sym_false] = ACTIONS(589), + [sym_nil] = ACTIONS(589), + [anon_sym_QMARK_DOT] = ACTIONS(589), + [anon_sym_POUND_LBRACK] = ACTIONS(589), + [anon_sym_if] = ACTIONS(589), + [anon_sym_DOLLARif] = ACTIONS(589), + [anon_sym_is] = ACTIONS(589), + [anon_sym_BANGis] = ACTIONS(589), + [anon_sym_in] = ACTIONS(589), + [anon_sym_BANGin] = ACTIONS(589), + [anon_sym_match] = ACTIONS(589), + [anon_sym_select] = ACTIONS(589), + [anon_sym_lock] = ACTIONS(589), + [anon_sym_rlock] = ACTIONS(589), + [anon_sym_unsafe] = ACTIONS(589), + [anon_sym_sql] = ACTIONS(589), + [sym_int_literal] = ACTIONS(589), + [sym_float_literal] = ACTIONS(589), + [sym_rune_literal] = ACTIONS(589), + [sym_pseudo_compile_time_identifier] = ACTIONS(589), + [anon_sym_shared] = ACTIONS(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(589), + [sym___single_quote] = ACTIONS(589), + [sym___c_double_quote] = ACTIONS(589), + [sym___c_single_quote] = ACTIONS(589), + [sym___r_double_quote] = ACTIONS(589), + [sym___r_single_quote] = ACTIONS(589), }, [953] = { [sym_line_comment] = STATE(953), [sym_block_comment] = STATE(953), - [sym_type_parameters] = STATE(4103), - [sym_argument_list] = STATE(1063), - [sym_or_block] = STATE(1069), - [ts_builtin_sym_end] = ACTIONS(1767), - [sym_identifier] = ACTIONS(1769), - [anon_sym_LF] = ACTIONS(1769), - [anon_sym_CR] = ACTIONS(1769), - [anon_sym_CR_LF] = ACTIONS(1769), + [sym_type_parameters] = STATE(4189), + [sym_argument_list] = STATE(1068), + [sym_or_block] = STATE(1064), + [aux_sym_strictly_expression_list_repeat1] = STATE(1410), + [ts_builtin_sym_end] = ACTIONS(3484), + [sym_identifier] = ACTIONS(1757), + [anon_sym_LF] = ACTIONS(1757), + [anon_sym_CR] = ACTIONS(1757), + [anon_sym_CR_LF] = ACTIONS(1757), [anon_sym_SLASH_SLASH] = ACTIONS(497), [anon_sym_SLASH_STAR] = ACTIONS(499), - [anon_sym_DOT] = ACTIONS(3480), - [anon_sym_as] = ACTIONS(1769), - [anon_sym_LBRACE] = ACTIONS(1769), - [anon_sym_COMMA] = ACTIONS(1769), - [anon_sym_const] = ACTIONS(1769), - [anon_sym_LPAREN] = ACTIONS(3486), - [anon_sym___global] = ACTIONS(1769), - [anon_sym_type] = ACTIONS(1769), - [anon_sym_PIPE] = ACTIONS(3488), - [anon_sym_fn] = ACTIONS(1769), - [anon_sym_PLUS] = ACTIONS(3488), - [anon_sym_DASH] = ACTIONS(3488), - [anon_sym_STAR] = ACTIONS(3490), - [anon_sym_SLASH] = ACTIONS(3490), - [anon_sym_PERCENT] = ACTIONS(3490), - [anon_sym_LT] = ACTIONS(1769), - [anon_sym_GT] = ACTIONS(1769), - [anon_sym_EQ_EQ] = ACTIONS(1769), - [anon_sym_BANG_EQ] = ACTIONS(1769), - [anon_sym_LT_EQ] = ACTIONS(1769), - [anon_sym_GT_EQ] = ACTIONS(1769), - [anon_sym_LBRACK] = ACTIONS(3494), - [anon_sym_struct] = ACTIONS(1769), - [anon_sym_union] = ACTIONS(1769), - [anon_sym_pub] = ACTIONS(1769), - [anon_sym_mut] = ACTIONS(1769), - [anon_sym_enum] = ACTIONS(1769), - [anon_sym_interface] = ACTIONS(1769), - [anon_sym_PLUS_PLUS] = ACTIONS(1769), - [anon_sym_DASH_DASH] = ACTIONS(1769), - [anon_sym_QMARK] = ACTIONS(3500), - [anon_sym_BANG] = ACTIONS(3502), - [anon_sym_go] = ACTIONS(1769), - [anon_sym_spawn] = ACTIONS(1769), - [anon_sym_json_DOTdecode] = ACTIONS(1769), - [anon_sym_LBRACK2] = ACTIONS(3504), - [anon_sym_TILDE] = ACTIONS(1769), - [anon_sym_CARET] = ACTIONS(3488), - [anon_sym_AMP] = ACTIONS(3490), - [anon_sym_LT_DASH] = ACTIONS(1769), - [anon_sym_LT_LT] = ACTIONS(3490), - [anon_sym_GT_GT] = ACTIONS(3490), - [anon_sym_GT_GT_GT] = ACTIONS(3490), - [anon_sym_AMP_CARET] = ACTIONS(3490), - [anon_sym_AMP_AMP] = ACTIONS(1769), - [anon_sym_PIPE_PIPE] = ACTIONS(1769), - [anon_sym_or] = ACTIONS(1769), - [sym_none] = ACTIONS(1769), - [sym_true] = ACTIONS(1769), - [sym_false] = ACTIONS(1769), - [sym_nil] = ACTIONS(1769), - [anon_sym_QMARK_DOT] = ACTIONS(3480), - [anon_sym_POUND_LBRACK] = ACTIONS(3504), - [anon_sym_if] = ACTIONS(1769), - [anon_sym_DOLLARif] = ACTIONS(1769), - [anon_sym_is] = ACTIONS(1769), - [anon_sym_BANGis] = ACTIONS(1769), - [anon_sym_in] = ACTIONS(1769), - [anon_sym_BANGin] = ACTIONS(1769), - [anon_sym_match] = ACTIONS(1769), - [anon_sym_select] = ACTIONS(1769), - [anon_sym_lock] = ACTIONS(1769), - [anon_sym_rlock] = ACTIONS(1769), - [anon_sym_unsafe] = ACTIONS(1769), - [anon_sym_sql] = ACTIONS(1769), - [sym_int_literal] = ACTIONS(1769), - [sym_float_literal] = ACTIONS(1769), - [sym_rune_literal] = ACTIONS(1769), - [sym_pseudo_compile_time_identifier] = ACTIONS(1769), - [anon_sym_shared] = ACTIONS(1769), - [anon_sym_map_LBRACK] = ACTIONS(1769), - [anon_sym_chan] = ACTIONS(1769), - [anon_sym_thread] = ACTIONS(1769), - [anon_sym_atomic] = ACTIONS(1769), - [anon_sym_assert] = ACTIONS(1769), - [anon_sym_defer] = ACTIONS(1769), - [anon_sym_goto] = ACTIONS(1769), - [anon_sym_break] = ACTIONS(1769), - [anon_sym_continue] = ACTIONS(1769), - [anon_sym_return] = ACTIONS(1769), - [anon_sym_DOLLARfor] = ACTIONS(1769), - [anon_sym_for] = ACTIONS(1769), - [anon_sym_POUND] = ACTIONS(1769), - [anon_sym_asm] = ACTIONS(1769), - [anon_sym_AT_LBRACK] = ACTIONS(1769), - [sym___double_quote] = ACTIONS(1769), - [sym___single_quote] = ACTIONS(1769), - [sym___c_double_quote] = ACTIONS(1769), - [sym___c_single_quote] = ACTIONS(1769), - [sym___r_double_quote] = ACTIONS(1769), - [sym___r_single_quote] = ACTIONS(1769), + [anon_sym_DOT] = ACTIONS(3486), + [anon_sym_as] = ACTIONS(3488), + [anon_sym_LBRACE] = ACTIONS(1757), + [anon_sym_COMMA] = ACTIONS(3490), + [anon_sym_const] = ACTIONS(1757), + [anon_sym_LPAREN] = ACTIONS(3492), + [anon_sym___global] = ACTIONS(1757), + [anon_sym_type] = ACTIONS(1757), + [anon_sym_PIPE] = ACTIONS(3494), + [anon_sym_fn] = ACTIONS(1757), + [anon_sym_PLUS] = ACTIONS(3494), + [anon_sym_DASH] = ACTIONS(3494), + [anon_sym_STAR] = ACTIONS(3496), + [anon_sym_SLASH] = ACTIONS(3496), + [anon_sym_PERCENT] = ACTIONS(3496), + [anon_sym_LT] = ACTIONS(3498), + [anon_sym_GT] = ACTIONS(3498), + [anon_sym_EQ_EQ] = ACTIONS(3498), + [anon_sym_BANG_EQ] = ACTIONS(3498), + [anon_sym_LT_EQ] = ACTIONS(3498), + [anon_sym_GT_EQ] = ACTIONS(3498), + [anon_sym_LBRACK] = ACTIONS(3500), + [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(3502), + [anon_sym_DASH_DASH] = ACTIONS(3504), + [anon_sym_QMARK] = ACTIONS(3506), + [anon_sym_BANG] = ACTIONS(3508), + [anon_sym_go] = ACTIONS(1757), + [anon_sym_spawn] = ACTIONS(1757), + [anon_sym_json_DOTdecode] = ACTIONS(1757), + [anon_sym_LBRACK2] = ACTIONS(3510), + [anon_sym_TILDE] = ACTIONS(1757), + [anon_sym_CARET] = ACTIONS(3494), + [anon_sym_AMP] = ACTIONS(3496), + [anon_sym_LT_DASH] = ACTIONS(1757), + [anon_sym_LT_LT] = ACTIONS(3496), + [anon_sym_GT_GT] = ACTIONS(3496), + [anon_sym_GT_GT_GT] = ACTIONS(3496), + [anon_sym_AMP_CARET] = ACTIONS(3496), + [anon_sym_AMP_AMP] = ACTIONS(3512), + [anon_sym_PIPE_PIPE] = ACTIONS(3514), + [anon_sym_or] = ACTIONS(3516), + [sym_none] = ACTIONS(1757), + [sym_true] = ACTIONS(1757), + [sym_false] = ACTIONS(1757), + [sym_nil] = ACTIONS(1757), + [anon_sym_QMARK_DOT] = ACTIONS(3486), + [anon_sym_POUND_LBRACK] = ACTIONS(3510), + [anon_sym_if] = ACTIONS(1757), + [anon_sym_DOLLARif] = ACTIONS(1757), + [anon_sym_is] = ACTIONS(3518), + [anon_sym_BANGis] = ACTIONS(3518), + [anon_sym_in] = ACTIONS(3520), + [anon_sym_BANGin] = ACTIONS(3520), + [anon_sym_match] = ACTIONS(1757), + [anon_sym_select] = ACTIONS(1757), + [anon_sym_lock] = ACTIONS(1757), + [anon_sym_rlock] = ACTIONS(1757), + [anon_sym_unsafe] = ACTIONS(1757), + [anon_sym_sql] = ACTIONS(1757), + [sym_int_literal] = ACTIONS(1757), + [sym_float_literal] = ACTIONS(1757), + [sym_rune_literal] = ACTIONS(1757), + [sym_pseudo_compile_time_identifier] = ACTIONS(1757), + [anon_sym_shared] = ACTIONS(1757), + [anon_sym_map_LBRACK] = ACTIONS(1757), + [anon_sym_chan] = ACTIONS(1757), + [anon_sym_thread] = ACTIONS(1757), + [anon_sym_atomic] = ACTIONS(1757), + [anon_sym_assert] = ACTIONS(1757), + [anon_sym_defer] = ACTIONS(1757), + [anon_sym_goto] = ACTIONS(1757), + [anon_sym_break] = ACTIONS(1757), + [anon_sym_continue] = ACTIONS(1757), + [anon_sym_return] = ACTIONS(1757), + [anon_sym_DOLLARfor] = ACTIONS(1757), + [anon_sym_for] = ACTIONS(1757), + [anon_sym_POUND] = ACTIONS(1757), + [anon_sym_asm] = ACTIONS(1757), + [anon_sym_AT_LBRACK] = ACTIONS(1757), + [sym___double_quote] = ACTIONS(1757), + [sym___single_quote] = ACTIONS(1757), + [sym___c_double_quote] = ACTIONS(1757), + [sym___c_single_quote] = ACTIONS(1757), + [sym___r_double_quote] = ACTIONS(1757), + [sym___r_single_quote] = ACTIONS(1757), }, [954] = { [sym_line_comment] = STATE(954), [sym_block_comment] = STATE(954), - [sym_type_parameters] = STATE(4103), - [sym_argument_list] = STATE(1063), - [sym_or_block] = STATE(1069), - [ts_builtin_sym_end] = ACTIONS(1775), - [sym_identifier] = ACTIONS(1777), - [anon_sym_LF] = ACTIONS(1777), - [anon_sym_CR] = ACTIONS(1777), - [anon_sym_CR_LF] = ACTIONS(1777), + [sym_type_parameters] = STATE(4189), + [sym_argument_list] = STATE(1068), + [sym_or_block] = STATE(1064), + [ts_builtin_sym_end] = ACTIONS(3522), + [sym_identifier] = ACTIONS(1649), + [anon_sym_LF] = ACTIONS(1649), + [anon_sym_CR] = ACTIONS(1649), + [anon_sym_CR_LF] = ACTIONS(1649), [anon_sym_SLASH_SLASH] = ACTIONS(497), [anon_sym_SLASH_STAR] = ACTIONS(499), - [anon_sym_DOT] = ACTIONS(3480), - [anon_sym_as] = ACTIONS(1777), - [anon_sym_LBRACE] = ACTIONS(1777), - [anon_sym_COMMA] = ACTIONS(1777), - [anon_sym_const] = ACTIONS(1777), - [anon_sym_LPAREN] = ACTIONS(3486), - [anon_sym___global] = ACTIONS(1777), - [anon_sym_type] = ACTIONS(1777), - [anon_sym_PIPE] = ACTIONS(1777), - [anon_sym_fn] = ACTIONS(1777), - [anon_sym_PLUS] = ACTIONS(1777), - [anon_sym_DASH] = ACTIONS(1777), - [anon_sym_STAR] = ACTIONS(1777), - [anon_sym_SLASH] = ACTIONS(1777), - [anon_sym_PERCENT] = ACTIONS(1777), - [anon_sym_LT] = ACTIONS(1777), - [anon_sym_GT] = ACTIONS(1777), - [anon_sym_EQ_EQ] = ACTIONS(1777), - [anon_sym_BANG_EQ] = ACTIONS(1777), - [anon_sym_LT_EQ] = ACTIONS(1777), - [anon_sym_GT_EQ] = ACTIONS(1777), - [anon_sym_LBRACK] = ACTIONS(3494), - [anon_sym_struct] = ACTIONS(1777), - [anon_sym_union] = ACTIONS(1777), - [anon_sym_pub] = ACTIONS(1777), - [anon_sym_mut] = ACTIONS(1777), - [anon_sym_enum] = ACTIONS(1777), - [anon_sym_interface] = ACTIONS(1777), - [anon_sym_PLUS_PLUS] = ACTIONS(1777), - [anon_sym_DASH_DASH] = ACTIONS(1777), - [anon_sym_QMARK] = ACTIONS(3500), - [anon_sym_BANG] = ACTIONS(3502), - [anon_sym_go] = ACTIONS(1777), - [anon_sym_spawn] = ACTIONS(1777), - [anon_sym_json_DOTdecode] = ACTIONS(1777), - [anon_sym_LBRACK2] = ACTIONS(3504), - [anon_sym_TILDE] = ACTIONS(1777), - [anon_sym_CARET] = ACTIONS(1777), - [anon_sym_AMP] = ACTIONS(1777), - [anon_sym_LT_DASH] = ACTIONS(1777), - [anon_sym_LT_LT] = ACTIONS(1777), - [anon_sym_GT_GT] = ACTIONS(1777), - [anon_sym_GT_GT_GT] = ACTIONS(1777), - [anon_sym_AMP_CARET] = ACTIONS(1777), - [anon_sym_AMP_AMP] = ACTIONS(1777), - [anon_sym_PIPE_PIPE] = ACTIONS(1777), - [anon_sym_or] = ACTIONS(1777), - [sym_none] = ACTIONS(1777), - [sym_true] = ACTIONS(1777), - [sym_false] = ACTIONS(1777), - [sym_nil] = ACTIONS(1777), - [anon_sym_QMARK_DOT] = ACTIONS(3480), - [anon_sym_POUND_LBRACK] = ACTIONS(3504), - [anon_sym_if] = ACTIONS(1777), - [anon_sym_DOLLARif] = ACTIONS(1777), - [anon_sym_is] = ACTIONS(1777), - [anon_sym_BANGis] = ACTIONS(1777), - [anon_sym_in] = ACTIONS(1777), - [anon_sym_BANGin] = ACTIONS(1777), - [anon_sym_match] = ACTIONS(1777), - [anon_sym_select] = ACTIONS(1777), - [anon_sym_lock] = ACTIONS(1777), - [anon_sym_rlock] = ACTIONS(1777), - [anon_sym_unsafe] = ACTIONS(1777), - [anon_sym_sql] = ACTIONS(1777), - [sym_int_literal] = ACTIONS(1777), - [sym_float_literal] = ACTIONS(1777), - [sym_rune_literal] = ACTIONS(1777), - [sym_pseudo_compile_time_identifier] = ACTIONS(1777), - [anon_sym_shared] = ACTIONS(1777), - [anon_sym_map_LBRACK] = ACTIONS(1777), - [anon_sym_chan] = ACTIONS(1777), - [anon_sym_thread] = ACTIONS(1777), - [anon_sym_atomic] = ACTIONS(1777), - [anon_sym_assert] = ACTIONS(1777), - [anon_sym_defer] = ACTIONS(1777), - [anon_sym_goto] = ACTIONS(1777), - [anon_sym_break] = ACTIONS(1777), - [anon_sym_continue] = ACTIONS(1777), - [anon_sym_return] = ACTIONS(1777), - [anon_sym_DOLLARfor] = ACTIONS(1777), - [anon_sym_for] = ACTIONS(1777), - [anon_sym_POUND] = ACTIONS(1777), - [anon_sym_asm] = ACTIONS(1777), - [anon_sym_AT_LBRACK] = ACTIONS(1777), - [sym___double_quote] = ACTIONS(1777), - [sym___single_quote] = ACTIONS(1777), - [sym___c_double_quote] = ACTIONS(1777), - [sym___c_single_quote] = ACTIONS(1777), - [sym___r_double_quote] = ACTIONS(1777), - [sym___r_single_quote] = ACTIONS(1777), + [anon_sym_DOT] = ACTIONS(3486), + [anon_sym_as] = ACTIONS(3488), + [anon_sym_LBRACE] = ACTIONS(1649), + [anon_sym_COMMA] = ACTIONS(1649), + [anon_sym_const] = ACTIONS(1649), + [anon_sym_LPAREN] = ACTIONS(3492), + [anon_sym___global] = ACTIONS(1649), + [anon_sym_type] = ACTIONS(1649), + [anon_sym_PIPE] = ACTIONS(3494), + [anon_sym_fn] = ACTIONS(1649), + [anon_sym_PLUS] = ACTIONS(3494), + [anon_sym_DASH] = ACTIONS(3494), + [anon_sym_STAR] = ACTIONS(3496), + [anon_sym_SLASH] = ACTIONS(3496), + [anon_sym_PERCENT] = ACTIONS(3496), + [anon_sym_LT] = ACTIONS(3498), + [anon_sym_GT] = ACTIONS(3498), + [anon_sym_EQ_EQ] = ACTIONS(3498), + [anon_sym_BANG_EQ] = ACTIONS(3498), + [anon_sym_LT_EQ] = ACTIONS(3498), + [anon_sym_GT_EQ] = ACTIONS(3498), + [anon_sym_LBRACK] = ACTIONS(3500), + [anon_sym_struct] = ACTIONS(1649), + [anon_sym_union] = ACTIONS(1649), + [anon_sym_pub] = ACTIONS(1649), + [anon_sym_mut] = ACTIONS(1649), + [anon_sym_enum] = ACTIONS(1649), + [anon_sym_interface] = ACTIONS(1649), + [anon_sym_PLUS_PLUS] = ACTIONS(3502), + [anon_sym_DASH_DASH] = ACTIONS(3504), + [anon_sym_QMARK] = ACTIONS(3506), + [anon_sym_BANG] = ACTIONS(3508), + [anon_sym_go] = ACTIONS(1649), + [anon_sym_spawn] = ACTIONS(1649), + [anon_sym_json_DOTdecode] = ACTIONS(1649), + [anon_sym_LBRACK2] = ACTIONS(3510), + [anon_sym_TILDE] = ACTIONS(1649), + [anon_sym_CARET] = ACTIONS(3494), + [anon_sym_AMP] = ACTIONS(3496), + [anon_sym_LT_DASH] = ACTIONS(1649), + [anon_sym_LT_LT] = ACTIONS(3496), + [anon_sym_GT_GT] = ACTIONS(3496), + [anon_sym_GT_GT_GT] = ACTIONS(3496), + [anon_sym_AMP_CARET] = ACTIONS(3496), + [anon_sym_AMP_AMP] = ACTIONS(3512), + [anon_sym_PIPE_PIPE] = ACTIONS(3514), + [anon_sym_or] = ACTIONS(3516), + [sym_none] = ACTIONS(1649), + [sym_true] = ACTIONS(1649), + [sym_false] = ACTIONS(1649), + [sym_nil] = ACTIONS(1649), + [anon_sym_QMARK_DOT] = ACTIONS(3486), + [anon_sym_POUND_LBRACK] = ACTIONS(3510), + [anon_sym_if] = ACTIONS(1649), + [anon_sym_DOLLARif] = ACTIONS(1649), + [anon_sym_is] = ACTIONS(3518), + [anon_sym_BANGis] = ACTIONS(3518), + [anon_sym_in] = ACTIONS(3520), + [anon_sym_BANGin] = ACTIONS(3520), + [anon_sym_match] = ACTIONS(1649), + [anon_sym_select] = ACTIONS(1649), + [anon_sym_lock] = ACTIONS(1649), + [anon_sym_rlock] = ACTIONS(1649), + [anon_sym_unsafe] = ACTIONS(1649), + [anon_sym_sql] = ACTIONS(1649), + [sym_int_literal] = ACTIONS(1649), + [sym_float_literal] = ACTIONS(1649), + [sym_rune_literal] = ACTIONS(1649), + [sym_pseudo_compile_time_identifier] = ACTIONS(1649), + [anon_sym_shared] = ACTIONS(1649), + [anon_sym_map_LBRACK] = ACTIONS(1649), + [anon_sym_chan] = ACTIONS(1649), + [anon_sym_thread] = ACTIONS(1649), + [anon_sym_atomic] = ACTIONS(1649), + [anon_sym_assert] = ACTIONS(1649), + [anon_sym_defer] = ACTIONS(1649), + [anon_sym_goto] = ACTIONS(1649), + [anon_sym_break] = ACTIONS(1649), + [anon_sym_continue] = ACTIONS(1649), + [anon_sym_return] = ACTIONS(1649), + [anon_sym_DOLLARfor] = ACTIONS(1649), + [anon_sym_for] = ACTIONS(1649), + [anon_sym_POUND] = ACTIONS(1649), + [anon_sym_asm] = ACTIONS(1649), + [anon_sym_AT_LBRACK] = ACTIONS(1649), + [sym___double_quote] = ACTIONS(1649), + [sym___single_quote] = ACTIONS(1649), + [sym___c_double_quote] = ACTIONS(1649), + [sym___c_single_quote] = ACTIONS(1649), + [sym___r_double_quote] = ACTIONS(1649), + [sym___r_single_quote] = ACTIONS(1649), }, [955] = { [sym_line_comment] = STATE(955), [sym_block_comment] = STATE(955), - [sym_type_parameters] = STATE(4103), - [sym_argument_list] = STATE(1063), - [sym_or_block] = STATE(1069), - [ts_builtin_sym_end] = ACTIONS(1771), - [sym_identifier] = ACTIONS(1773), - [anon_sym_LF] = ACTIONS(1773), - [anon_sym_CR] = ACTIONS(1773), - [anon_sym_CR_LF] = ACTIONS(1773), - [anon_sym_SLASH_SLASH] = ACTIONS(497), - [anon_sym_SLASH_STAR] = ACTIONS(499), - [anon_sym_DOT] = ACTIONS(3480), - [anon_sym_as] = ACTIONS(3482), - [anon_sym_LBRACE] = ACTIONS(1773), - [anon_sym_COMMA] = ACTIONS(1773), - [anon_sym_const] = ACTIONS(1773), - [anon_sym_LPAREN] = ACTIONS(3486), - [anon_sym___global] = ACTIONS(1773), - [anon_sym_type] = ACTIONS(1773), - [anon_sym_PIPE] = ACTIONS(3488), - [anon_sym_fn] = ACTIONS(1773), - [anon_sym_PLUS] = ACTIONS(3488), - [anon_sym_DASH] = ACTIONS(3488), - [anon_sym_STAR] = ACTIONS(3490), - [anon_sym_SLASH] = ACTIONS(3490), - [anon_sym_PERCENT] = ACTIONS(3490), - [anon_sym_LT] = ACTIONS(3492), - [anon_sym_GT] = ACTIONS(3492), - [anon_sym_EQ_EQ] = ACTIONS(3492), - [anon_sym_BANG_EQ] = ACTIONS(3492), - [anon_sym_LT_EQ] = ACTIONS(3492), - [anon_sym_GT_EQ] = ACTIONS(3492), - [anon_sym_LBRACK] = ACTIONS(3494), - [anon_sym_struct] = ACTIONS(1773), - [anon_sym_union] = ACTIONS(1773), - [anon_sym_pub] = ACTIONS(1773), - [anon_sym_mut] = ACTIONS(1773), - [anon_sym_enum] = ACTIONS(1773), - [anon_sym_interface] = ACTIONS(1773), - [anon_sym_PLUS_PLUS] = ACTIONS(3496), - [anon_sym_DASH_DASH] = ACTIONS(3498), - [anon_sym_QMARK] = ACTIONS(3500), - [anon_sym_BANG] = ACTIONS(3502), - [anon_sym_go] = ACTIONS(1773), - [anon_sym_spawn] = ACTIONS(1773), - [anon_sym_json_DOTdecode] = ACTIONS(1773), - [anon_sym_LBRACK2] = ACTIONS(3504), - [anon_sym_TILDE] = ACTIONS(1773), - [anon_sym_CARET] = ACTIONS(3488), - [anon_sym_AMP] = ACTIONS(3490), - [anon_sym_LT_DASH] = ACTIONS(1773), - [anon_sym_LT_LT] = ACTIONS(3490), - [anon_sym_GT_GT] = ACTIONS(3490), - [anon_sym_GT_GT_GT] = ACTIONS(3490), - [anon_sym_AMP_CARET] = ACTIONS(3490), - [anon_sym_AMP_AMP] = ACTIONS(3506), - [anon_sym_PIPE_PIPE] = ACTIONS(3508), - [anon_sym_or] = ACTIONS(3510), - [sym_none] = ACTIONS(1773), - [sym_true] = ACTIONS(1773), - [sym_false] = ACTIONS(1773), - [sym_nil] = ACTIONS(1773), - [anon_sym_QMARK_DOT] = ACTIONS(3480), - [anon_sym_POUND_LBRACK] = ACTIONS(3504), - [anon_sym_if] = ACTIONS(1773), - [anon_sym_DOLLARif] = ACTIONS(1773), - [anon_sym_is] = ACTIONS(3512), - [anon_sym_BANGis] = ACTIONS(3512), - [anon_sym_in] = ACTIONS(3514), - [anon_sym_BANGin] = ACTIONS(3514), - [anon_sym_match] = ACTIONS(1773), - [anon_sym_select] = ACTIONS(1773), - [anon_sym_lock] = ACTIONS(1773), - [anon_sym_rlock] = ACTIONS(1773), - [anon_sym_unsafe] = ACTIONS(1773), - [anon_sym_sql] = ACTIONS(1773), - [sym_int_literal] = ACTIONS(1773), - [sym_float_literal] = ACTIONS(1773), - [sym_rune_literal] = ACTIONS(1773), - [sym_pseudo_compile_time_identifier] = ACTIONS(1773), - [anon_sym_shared] = ACTIONS(1773), - [anon_sym_map_LBRACK] = ACTIONS(1773), - [anon_sym_chan] = ACTIONS(1773), - [anon_sym_thread] = ACTIONS(1773), - [anon_sym_atomic] = ACTIONS(1773), - [anon_sym_assert] = ACTIONS(1773), - [anon_sym_defer] = ACTIONS(1773), - [anon_sym_goto] = ACTIONS(1773), - [anon_sym_break] = ACTIONS(1773), - [anon_sym_continue] = ACTIONS(1773), - [anon_sym_return] = ACTIONS(1773), - [anon_sym_DOLLARfor] = ACTIONS(1773), - [anon_sym_for] = ACTIONS(1773), - [anon_sym_POUND] = ACTIONS(1773), - [anon_sym_asm] = ACTIONS(1773), - [anon_sym_AT_LBRACK] = ACTIONS(1773), - [sym___double_quote] = ACTIONS(1773), - [sym___single_quote] = ACTIONS(1773), - [sym___c_double_quote] = ACTIONS(1773), - [sym___c_single_quote] = ACTIONS(1773), - [sym___r_double_quote] = ACTIONS(1773), - [sym___r_single_quote] = ACTIONS(1773), - }, - [956] = { - [sym_line_comment] = STATE(956), - [sym_block_comment] = STATE(956), - [sym_type_parameters] = STATE(4103), - [sym_argument_list] = STATE(1063), - [sym_or_block] = STATE(1069), + [sym_type_parameters] = STATE(4189), + [sym_argument_list] = STATE(1068), + [sym_or_block] = STATE(1064), [ts_builtin_sym_end] = ACTIONS(1787), [sym_identifier] = ACTIONS(1789), [anon_sym_LF] = ACTIONS(1789), @@ -132775,65 +132699,65 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_CR_LF] = ACTIONS(1789), [anon_sym_SLASH_SLASH] = ACTIONS(497), [anon_sym_SLASH_STAR] = ACTIONS(499), - [anon_sym_DOT] = ACTIONS(3480), - [anon_sym_as] = ACTIONS(3482), + [anon_sym_DOT] = ACTIONS(3486), + [anon_sym_as] = ACTIONS(3488), [anon_sym_LBRACE] = ACTIONS(1789), [anon_sym_COMMA] = ACTIONS(1789), [anon_sym_const] = ACTIONS(1789), - [anon_sym_LPAREN] = ACTIONS(3486), + [anon_sym_LPAREN] = ACTIONS(3492), [anon_sym___global] = ACTIONS(1789), [anon_sym_type] = ACTIONS(1789), - [anon_sym_PIPE] = ACTIONS(3488), + [anon_sym_PIPE] = ACTIONS(3494), [anon_sym_fn] = ACTIONS(1789), - [anon_sym_PLUS] = ACTIONS(3488), - [anon_sym_DASH] = ACTIONS(3488), - [anon_sym_STAR] = ACTIONS(3490), - [anon_sym_SLASH] = ACTIONS(3490), - [anon_sym_PERCENT] = ACTIONS(3490), - [anon_sym_LT] = ACTIONS(3492), - [anon_sym_GT] = ACTIONS(3492), - [anon_sym_EQ_EQ] = ACTIONS(3492), - [anon_sym_BANG_EQ] = ACTIONS(3492), - [anon_sym_LT_EQ] = ACTIONS(3492), - [anon_sym_GT_EQ] = ACTIONS(3492), - [anon_sym_LBRACK] = ACTIONS(3494), + [anon_sym_PLUS] = ACTIONS(3494), + [anon_sym_DASH] = ACTIONS(3494), + [anon_sym_STAR] = ACTIONS(3496), + [anon_sym_SLASH] = ACTIONS(3496), + [anon_sym_PERCENT] = ACTIONS(3496), + [anon_sym_LT] = ACTIONS(3498), + [anon_sym_GT] = ACTIONS(3498), + [anon_sym_EQ_EQ] = ACTIONS(3498), + [anon_sym_BANG_EQ] = ACTIONS(3498), + [anon_sym_LT_EQ] = ACTIONS(3498), + [anon_sym_GT_EQ] = ACTIONS(3498), + [anon_sym_LBRACK] = ACTIONS(3500), [anon_sym_struct] = ACTIONS(1789), [anon_sym_union] = ACTIONS(1789), [anon_sym_pub] = ACTIONS(1789), [anon_sym_mut] = ACTIONS(1789), [anon_sym_enum] = ACTIONS(1789), [anon_sym_interface] = ACTIONS(1789), - [anon_sym_PLUS_PLUS] = ACTIONS(3496), - [anon_sym_DASH_DASH] = ACTIONS(3498), - [anon_sym_QMARK] = ACTIONS(3500), - [anon_sym_BANG] = ACTIONS(3502), + [anon_sym_PLUS_PLUS] = ACTIONS(3502), + [anon_sym_DASH_DASH] = ACTIONS(3504), + [anon_sym_QMARK] = ACTIONS(3506), + [anon_sym_BANG] = ACTIONS(3508), [anon_sym_go] = ACTIONS(1789), [anon_sym_spawn] = ACTIONS(1789), [anon_sym_json_DOTdecode] = ACTIONS(1789), - [anon_sym_LBRACK2] = ACTIONS(3504), + [anon_sym_LBRACK2] = ACTIONS(3510), [anon_sym_TILDE] = ACTIONS(1789), - [anon_sym_CARET] = ACTIONS(3488), - [anon_sym_AMP] = ACTIONS(3490), + [anon_sym_CARET] = ACTIONS(3494), + [anon_sym_AMP] = ACTIONS(3496), [anon_sym_LT_DASH] = ACTIONS(1789), - [anon_sym_LT_LT] = ACTIONS(3490), - [anon_sym_GT_GT] = ACTIONS(3490), - [anon_sym_GT_GT_GT] = ACTIONS(3490), - [anon_sym_AMP_CARET] = ACTIONS(3490), - [anon_sym_AMP_AMP] = ACTIONS(3506), - [anon_sym_PIPE_PIPE] = ACTIONS(3508), - [anon_sym_or] = ACTIONS(3510), + [anon_sym_LT_LT] = ACTIONS(3496), + [anon_sym_GT_GT] = ACTIONS(3496), + [anon_sym_GT_GT_GT] = ACTIONS(3496), + [anon_sym_AMP_CARET] = ACTIONS(3496), + [anon_sym_AMP_AMP] = ACTIONS(3512), + [anon_sym_PIPE_PIPE] = ACTIONS(3514), + [anon_sym_or] = ACTIONS(3516), [sym_none] = ACTIONS(1789), [sym_true] = ACTIONS(1789), [sym_false] = ACTIONS(1789), [sym_nil] = ACTIONS(1789), - [anon_sym_QMARK_DOT] = ACTIONS(3480), - [anon_sym_POUND_LBRACK] = ACTIONS(3504), + [anon_sym_QMARK_DOT] = ACTIONS(3486), + [anon_sym_POUND_LBRACK] = ACTIONS(3510), [anon_sym_if] = ACTIONS(1789), [anon_sym_DOLLARif] = ACTIONS(1789), - [anon_sym_is] = ACTIONS(3516), - [anon_sym_BANGis] = ACTIONS(3516), - [anon_sym_in] = ACTIONS(3514), - [anon_sym_BANGin] = ACTIONS(3514), + [anon_sym_is] = ACTIONS(3524), + [anon_sym_BANGis] = ACTIONS(3524), + [anon_sym_in] = ACTIONS(3520), + [anon_sym_BANGin] = ACTIONS(3520), [anon_sym_match] = ACTIONS(1789), [anon_sym_select] = ACTIONS(1789), [anon_sym_lock] = ACTIONS(1789), @@ -132867,222 +132791,117 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym___r_double_quote] = ACTIONS(1789), [sym___r_single_quote] = ACTIONS(1789), }, - [957] = { - [sym_line_comment] = STATE(957), - [sym_block_comment] = STATE(957), - [sym_type_parameters] = STATE(4103), - [sym_argument_list] = STATE(1063), - [sym_or_block] = STATE(1069), - [ts_builtin_sym_end] = ACTIONS(3518), - [sym_identifier] = ACTIONS(3520), - [anon_sym_LF] = ACTIONS(3520), - [anon_sym_CR] = ACTIONS(3520), - [anon_sym_CR_LF] = ACTIONS(3520), - [anon_sym_SLASH_SLASH] = ACTIONS(497), - [anon_sym_SLASH_STAR] = ACTIONS(499), - [anon_sym_DOT] = ACTIONS(3480), - [anon_sym_as] = ACTIONS(3482), - [anon_sym_LBRACE] = ACTIONS(3520), - [anon_sym_COMMA] = ACTIONS(3522), - [anon_sym_const] = ACTIONS(3520), - [anon_sym_LPAREN] = ACTIONS(3486), - [anon_sym___global] = ACTIONS(3520), - [anon_sym_type] = ACTIONS(3520), - [anon_sym_PIPE] = ACTIONS(3488), - [anon_sym_fn] = ACTIONS(3520), - [anon_sym_PLUS] = ACTIONS(3488), - [anon_sym_DASH] = ACTIONS(3488), - [anon_sym_STAR] = ACTIONS(3490), - [anon_sym_SLASH] = ACTIONS(3490), - [anon_sym_PERCENT] = ACTIONS(3490), - [anon_sym_LT] = ACTIONS(3492), - [anon_sym_GT] = ACTIONS(3492), - [anon_sym_EQ_EQ] = ACTIONS(3492), - [anon_sym_BANG_EQ] = ACTIONS(3492), - [anon_sym_LT_EQ] = ACTIONS(3492), - [anon_sym_GT_EQ] = ACTIONS(3492), - [anon_sym_LBRACK] = ACTIONS(3494), - [anon_sym_struct] = ACTIONS(3520), - [anon_sym_union] = ACTIONS(3520), - [anon_sym_pub] = ACTIONS(3520), - [anon_sym_mut] = ACTIONS(3520), - [anon_sym_enum] = ACTIONS(3520), - [anon_sym_interface] = ACTIONS(3520), - [anon_sym_PLUS_PLUS] = ACTIONS(3496), - [anon_sym_DASH_DASH] = ACTIONS(3498), - [anon_sym_QMARK] = ACTIONS(3500), - [anon_sym_BANG] = ACTIONS(3502), - [anon_sym_go] = ACTIONS(3520), - [anon_sym_spawn] = ACTIONS(3520), - [anon_sym_json_DOTdecode] = ACTIONS(3520), - [anon_sym_LBRACK2] = ACTIONS(3504), - [anon_sym_TILDE] = ACTIONS(3520), - [anon_sym_CARET] = ACTIONS(3488), - [anon_sym_AMP] = ACTIONS(3490), - [anon_sym_LT_DASH] = ACTIONS(3520), - [anon_sym_LT_LT] = ACTIONS(3490), - [anon_sym_GT_GT] = ACTIONS(3490), - [anon_sym_GT_GT_GT] = ACTIONS(3490), - [anon_sym_AMP_CARET] = ACTIONS(3490), - [anon_sym_AMP_AMP] = ACTIONS(3506), - [anon_sym_PIPE_PIPE] = ACTIONS(3508), - [anon_sym_or] = ACTIONS(3510), - [sym_none] = ACTIONS(3520), - [sym_true] = ACTIONS(3520), - [sym_false] = ACTIONS(3520), - [sym_nil] = ACTIONS(3520), - [anon_sym_QMARK_DOT] = ACTIONS(3480), - [anon_sym_POUND_LBRACK] = ACTIONS(3504), - [anon_sym_if] = ACTIONS(3520), - [anon_sym_DOLLARif] = ACTIONS(3520), - [anon_sym_is] = ACTIONS(3512), - [anon_sym_BANGis] = ACTIONS(3512), - [anon_sym_in] = ACTIONS(3514), - [anon_sym_BANGin] = ACTIONS(3514), - [anon_sym_match] = ACTIONS(3520), - [anon_sym_select] = ACTIONS(3520), - [anon_sym_lock] = ACTIONS(3520), - [anon_sym_rlock] = ACTIONS(3520), - [anon_sym_unsafe] = ACTIONS(3520), - [anon_sym_sql] = ACTIONS(3520), - [sym_int_literal] = ACTIONS(3520), - [sym_float_literal] = ACTIONS(3520), - [sym_rune_literal] = ACTIONS(3520), - [sym_pseudo_compile_time_identifier] = ACTIONS(3520), - [anon_sym_shared] = ACTIONS(3520), - [anon_sym_map_LBRACK] = ACTIONS(3520), - [anon_sym_chan] = ACTIONS(3520), - [anon_sym_thread] = ACTIONS(3520), - [anon_sym_atomic] = ACTIONS(3520), - [anon_sym_assert] = ACTIONS(3520), - [anon_sym_defer] = ACTIONS(3520), - [anon_sym_goto] = ACTIONS(3520), - [anon_sym_break] = ACTIONS(3520), - [anon_sym_continue] = ACTIONS(3520), - [anon_sym_return] = ACTIONS(3520), - [anon_sym_DOLLARfor] = ACTIONS(3520), - [anon_sym_for] = ACTIONS(3520), - [anon_sym_POUND] = ACTIONS(3520), - [anon_sym_asm] = ACTIONS(3520), - [anon_sym_AT_LBRACK] = ACTIONS(3520), - [sym___double_quote] = ACTIONS(3520), - [sym___single_quote] = ACTIONS(3520), - [sym___c_double_quote] = ACTIONS(3520), - [sym___c_single_quote] = ACTIONS(3520), - [sym___r_double_quote] = ACTIONS(3520), - [sym___r_single_quote] = ACTIONS(3520), - }, - [958] = { - [sym_line_comment] = STATE(958), - [sym_block_comment] = STATE(958), - [sym_type_parameters] = STATE(4103), - [sym_argument_list] = STATE(1063), - [sym_or_block] = STATE(1069), - [ts_builtin_sym_end] = ACTIONS(3524), - [sym_identifier] = ACTIONS(1761), - [anon_sym_LF] = ACTIONS(1761), - [anon_sym_CR] = ACTIONS(1761), - [anon_sym_CR_LF] = ACTIONS(1761), + [956] = { + [sym_line_comment] = STATE(956), + [sym_block_comment] = STATE(956), + [sym_type_parameters] = STATE(4189), + [sym_argument_list] = STATE(1068), + [sym_or_block] = STATE(1064), + [ts_builtin_sym_end] = ACTIONS(1763), + [sym_identifier] = ACTIONS(1765), + [anon_sym_LF] = ACTIONS(1765), + [anon_sym_CR] = ACTIONS(1765), + [anon_sym_CR_LF] = ACTIONS(1765), [anon_sym_SLASH_SLASH] = ACTIONS(497), [anon_sym_SLASH_STAR] = ACTIONS(499), - [anon_sym_DOT] = ACTIONS(3480), - [anon_sym_as] = ACTIONS(3482), - [anon_sym_LBRACE] = ACTIONS(1761), - [anon_sym_COMMA] = ACTIONS(1761), - [anon_sym_const] = ACTIONS(1761), - [anon_sym_LPAREN] = ACTIONS(3486), - [anon_sym___global] = ACTIONS(1761), - [anon_sym_type] = ACTIONS(1761), - [anon_sym_PIPE] = ACTIONS(3488), - [anon_sym_fn] = ACTIONS(1761), - [anon_sym_PLUS] = ACTIONS(3488), - [anon_sym_DASH] = ACTIONS(3488), - [anon_sym_STAR] = ACTIONS(3490), - [anon_sym_SLASH] = ACTIONS(3490), - [anon_sym_PERCENT] = ACTIONS(3490), - [anon_sym_LT] = ACTIONS(3492), - [anon_sym_GT] = ACTIONS(3492), - [anon_sym_EQ_EQ] = ACTIONS(3492), - [anon_sym_BANG_EQ] = ACTIONS(3492), - [anon_sym_LT_EQ] = ACTIONS(3492), - [anon_sym_GT_EQ] = ACTIONS(3492), - [anon_sym_LBRACK] = ACTIONS(3494), - [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(3496), - [anon_sym_DASH_DASH] = ACTIONS(3498), - [anon_sym_QMARK] = ACTIONS(3500), - [anon_sym_BANG] = ACTIONS(3502), - [anon_sym_go] = ACTIONS(1761), - [anon_sym_spawn] = ACTIONS(1761), - [anon_sym_json_DOTdecode] = ACTIONS(1761), - [anon_sym_LBRACK2] = ACTIONS(3504), - [anon_sym_TILDE] = ACTIONS(1761), - [anon_sym_CARET] = ACTIONS(3488), - [anon_sym_AMP] = ACTIONS(3490), - [anon_sym_LT_DASH] = ACTIONS(1761), - [anon_sym_LT_LT] = ACTIONS(3490), - [anon_sym_GT_GT] = ACTIONS(3490), - [anon_sym_GT_GT_GT] = ACTIONS(3490), - [anon_sym_AMP_CARET] = ACTIONS(3490), - [anon_sym_AMP_AMP] = ACTIONS(3506), - [anon_sym_PIPE_PIPE] = ACTIONS(3508), - [anon_sym_or] = ACTIONS(3510), - [sym_none] = ACTIONS(1761), - [sym_true] = ACTIONS(1761), - [sym_false] = ACTIONS(1761), - [sym_nil] = ACTIONS(1761), - [anon_sym_QMARK_DOT] = ACTIONS(3480), - [anon_sym_POUND_LBRACK] = ACTIONS(3504), - [anon_sym_if] = ACTIONS(1761), - [anon_sym_DOLLARif] = ACTIONS(1761), - [anon_sym_is] = ACTIONS(3512), - [anon_sym_BANGis] = ACTIONS(3512), - [anon_sym_in] = ACTIONS(3514), - [anon_sym_BANGin] = ACTIONS(3514), - [anon_sym_match] = ACTIONS(1761), - [anon_sym_select] = ACTIONS(1761), - [anon_sym_lock] = ACTIONS(1761), - [anon_sym_rlock] = ACTIONS(1761), - [anon_sym_unsafe] = ACTIONS(1761), - [anon_sym_sql] = ACTIONS(1761), - [sym_int_literal] = ACTIONS(1761), - [sym_float_literal] = ACTIONS(1761), - [sym_rune_literal] = ACTIONS(1761), - [sym_pseudo_compile_time_identifier] = ACTIONS(1761), - [anon_sym_shared] = ACTIONS(1761), - [anon_sym_map_LBRACK] = ACTIONS(1761), - [anon_sym_chan] = ACTIONS(1761), - [anon_sym_thread] = ACTIONS(1761), - [anon_sym_atomic] = ACTIONS(1761), - [anon_sym_assert] = ACTIONS(1761), - [anon_sym_defer] = ACTIONS(1761), - [anon_sym_goto] = ACTIONS(1761), - [anon_sym_break] = ACTIONS(1761), - [anon_sym_continue] = ACTIONS(1761), - [anon_sym_return] = ACTIONS(1761), - [anon_sym_DOLLARfor] = ACTIONS(1761), - [anon_sym_for] = ACTIONS(1761), - [anon_sym_POUND] = ACTIONS(1761), - [anon_sym_asm] = ACTIONS(1761), - [anon_sym_AT_LBRACK] = ACTIONS(1761), - [sym___double_quote] = ACTIONS(1761), - [sym___single_quote] = ACTIONS(1761), - [sym___c_double_quote] = ACTIONS(1761), - [sym___c_single_quote] = ACTIONS(1761), - [sym___r_double_quote] = ACTIONS(1761), - [sym___r_single_quote] = ACTIONS(1761), + [anon_sym_DOT] = ACTIONS(3486), + [anon_sym_as] = ACTIONS(1765), + [anon_sym_LBRACE] = ACTIONS(1765), + [anon_sym_COMMA] = ACTIONS(1765), + [anon_sym_const] = ACTIONS(1765), + [anon_sym_LPAREN] = ACTIONS(3492), + [anon_sym___global] = ACTIONS(1765), + [anon_sym_type] = ACTIONS(1765), + [anon_sym_PIPE] = ACTIONS(3494), + [anon_sym_fn] = ACTIONS(1765), + [anon_sym_PLUS] = ACTIONS(3494), + [anon_sym_DASH] = ACTIONS(3494), + [anon_sym_STAR] = ACTIONS(3496), + [anon_sym_SLASH] = ACTIONS(3496), + [anon_sym_PERCENT] = ACTIONS(3496), + [anon_sym_LT] = ACTIONS(1765), + [anon_sym_GT] = ACTIONS(1765), + [anon_sym_EQ_EQ] = ACTIONS(1765), + [anon_sym_BANG_EQ] = ACTIONS(1765), + [anon_sym_LT_EQ] = ACTIONS(1765), + [anon_sym_GT_EQ] = ACTIONS(1765), + [anon_sym_LBRACK] = ACTIONS(3500), + [anon_sym_struct] = ACTIONS(1765), + [anon_sym_union] = ACTIONS(1765), + [anon_sym_pub] = ACTIONS(1765), + [anon_sym_mut] = ACTIONS(1765), + [anon_sym_enum] = ACTIONS(1765), + [anon_sym_interface] = ACTIONS(1765), + [anon_sym_PLUS_PLUS] = ACTIONS(1765), + [anon_sym_DASH_DASH] = ACTIONS(1765), + [anon_sym_QMARK] = ACTIONS(3506), + [anon_sym_BANG] = ACTIONS(3508), + [anon_sym_go] = ACTIONS(1765), + [anon_sym_spawn] = ACTIONS(1765), + [anon_sym_json_DOTdecode] = ACTIONS(1765), + [anon_sym_LBRACK2] = ACTIONS(3510), + [anon_sym_TILDE] = ACTIONS(1765), + [anon_sym_CARET] = ACTIONS(3494), + [anon_sym_AMP] = ACTIONS(3496), + [anon_sym_LT_DASH] = ACTIONS(1765), + [anon_sym_LT_LT] = ACTIONS(3496), + [anon_sym_GT_GT] = ACTIONS(3496), + [anon_sym_GT_GT_GT] = ACTIONS(3496), + [anon_sym_AMP_CARET] = ACTIONS(3496), + [anon_sym_AMP_AMP] = ACTIONS(1765), + [anon_sym_PIPE_PIPE] = ACTIONS(1765), + [anon_sym_or] = ACTIONS(1765), + [sym_none] = ACTIONS(1765), + [sym_true] = ACTIONS(1765), + [sym_false] = ACTIONS(1765), + [sym_nil] = ACTIONS(1765), + [anon_sym_QMARK_DOT] = ACTIONS(3486), + [anon_sym_POUND_LBRACK] = ACTIONS(3510), + [anon_sym_if] = ACTIONS(1765), + [anon_sym_DOLLARif] = ACTIONS(1765), + [anon_sym_is] = ACTIONS(1765), + [anon_sym_BANGis] = ACTIONS(1765), + [anon_sym_in] = ACTIONS(1765), + [anon_sym_BANGin] = ACTIONS(1765), + [anon_sym_match] = ACTIONS(1765), + [anon_sym_select] = ACTIONS(1765), + [anon_sym_lock] = ACTIONS(1765), + [anon_sym_rlock] = ACTIONS(1765), + [anon_sym_unsafe] = ACTIONS(1765), + [anon_sym_sql] = ACTIONS(1765), + [sym_int_literal] = ACTIONS(1765), + [sym_float_literal] = ACTIONS(1765), + [sym_rune_literal] = ACTIONS(1765), + [sym_pseudo_compile_time_identifier] = ACTIONS(1765), + [anon_sym_shared] = ACTIONS(1765), + [anon_sym_map_LBRACK] = ACTIONS(1765), + [anon_sym_chan] = ACTIONS(1765), + [anon_sym_thread] = ACTIONS(1765), + [anon_sym_atomic] = ACTIONS(1765), + [anon_sym_assert] = ACTIONS(1765), + [anon_sym_defer] = ACTIONS(1765), + [anon_sym_goto] = ACTIONS(1765), + [anon_sym_break] = ACTIONS(1765), + [anon_sym_continue] = ACTIONS(1765), + [anon_sym_return] = ACTIONS(1765), + [anon_sym_DOLLARfor] = ACTIONS(1765), + [anon_sym_for] = ACTIONS(1765), + [anon_sym_POUND] = ACTIONS(1765), + [anon_sym_asm] = ACTIONS(1765), + [anon_sym_AT_LBRACK] = ACTIONS(1765), + [sym___double_quote] = ACTIONS(1765), + [sym___single_quote] = ACTIONS(1765), + [sym___c_double_quote] = ACTIONS(1765), + [sym___c_single_quote] = ACTIONS(1765), + [sym___r_double_quote] = ACTIONS(1765), + [sym___r_single_quote] = ACTIONS(1765), }, - [959] = { - [sym_line_comment] = STATE(959), - [sym_block_comment] = STATE(959), - [sym_type_parameters] = STATE(4103), - [sym_argument_list] = STATE(1063), - [sym_or_block] = STATE(1069), + [957] = { + [sym_line_comment] = STATE(957), + [sym_block_comment] = STATE(957), + [sym_type_parameters] = STATE(4189), + [sym_argument_list] = STATE(1068), + [sym_or_block] = STATE(1064), [ts_builtin_sym_end] = ACTIONS(1763), [sym_identifier] = ACTIONS(1765), [anon_sym_LF] = ACTIONS(1765), @@ -133090,12 +132909,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_CR_LF] = ACTIONS(1765), [anon_sym_SLASH_SLASH] = ACTIONS(497), [anon_sym_SLASH_STAR] = ACTIONS(499), - [anon_sym_DOT] = ACTIONS(3480), + [anon_sym_DOT] = ACTIONS(3486), [anon_sym_as] = ACTIONS(1765), [anon_sym_LBRACE] = ACTIONS(1765), [anon_sym_COMMA] = ACTIONS(1765), [anon_sym_const] = ACTIONS(1765), - [anon_sym_LPAREN] = ACTIONS(3486), + [anon_sym_LPAREN] = ACTIONS(3492), [anon_sym___global] = ACTIONS(1765), [anon_sym_type] = ACTIONS(1765), [anon_sym_PIPE] = ACTIONS(1765), @@ -133111,7 +132930,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BANG_EQ] = ACTIONS(1765), [anon_sym_LT_EQ] = ACTIONS(1765), [anon_sym_GT_EQ] = ACTIONS(1765), - [anon_sym_LBRACK] = ACTIONS(3494), + [anon_sym_LBRACK] = ACTIONS(3500), [anon_sym_struct] = ACTIONS(1765), [anon_sym_union] = ACTIONS(1765), [anon_sym_pub] = ACTIONS(1765), @@ -133120,12 +132939,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_interface] = ACTIONS(1765), [anon_sym_PLUS_PLUS] = ACTIONS(1765), [anon_sym_DASH_DASH] = ACTIONS(1765), - [anon_sym_QMARK] = ACTIONS(3500), - [anon_sym_BANG] = ACTIONS(3502), + [anon_sym_QMARK] = ACTIONS(3506), + [anon_sym_BANG] = ACTIONS(3508), [anon_sym_go] = ACTIONS(1765), [anon_sym_spawn] = ACTIONS(1765), [anon_sym_json_DOTdecode] = ACTIONS(1765), - [anon_sym_LBRACK2] = ACTIONS(3504), + [anon_sym_LBRACK2] = ACTIONS(3510), [anon_sym_TILDE] = ACTIONS(1765), [anon_sym_CARET] = ACTIONS(1765), [anon_sym_AMP] = ACTIONS(1765), @@ -133141,8 +132960,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_true] = ACTIONS(1765), [sym_false] = ACTIONS(1765), [sym_nil] = ACTIONS(1765), - [anon_sym_QMARK_DOT] = ACTIONS(3480), - [anon_sym_POUND_LBRACK] = ACTIONS(3504), + [anon_sym_QMARK_DOT] = ACTIONS(3486), + [anon_sym_POUND_LBRACK] = ACTIONS(3510), [anon_sym_if] = ACTIONS(1765), [anon_sym_DOLLARif] = ACTIONS(1765), [anon_sym_is] = ACTIONS(1765), @@ -133182,12 +133001,222 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym___r_double_quote] = ACTIONS(1765), [sym___r_single_quote] = ACTIONS(1765), }, + [958] = { + [sym_line_comment] = STATE(958), + [sym_block_comment] = STATE(958), + [sym_type_parameters] = STATE(4189), + [sym_argument_list] = STATE(1068), + [sym_or_block] = STATE(1064), + [ts_builtin_sym_end] = ACTIONS(1763), + [sym_identifier] = ACTIONS(1765), + [anon_sym_LF] = ACTIONS(1765), + [anon_sym_CR] = ACTIONS(1765), + [anon_sym_CR_LF] = ACTIONS(1765), + [anon_sym_SLASH_SLASH] = ACTIONS(497), + [anon_sym_SLASH_STAR] = ACTIONS(499), + [anon_sym_DOT] = ACTIONS(3486), + [anon_sym_as] = ACTIONS(1765), + [anon_sym_LBRACE] = ACTIONS(1765), + [anon_sym_COMMA] = ACTIONS(1765), + [anon_sym_const] = ACTIONS(1765), + [anon_sym_LPAREN] = ACTIONS(3492), + [anon_sym___global] = ACTIONS(1765), + [anon_sym_type] = ACTIONS(1765), + [anon_sym_PIPE] = ACTIONS(3494), + [anon_sym_fn] = ACTIONS(1765), + [anon_sym_PLUS] = ACTIONS(3494), + [anon_sym_DASH] = ACTIONS(3494), + [anon_sym_STAR] = ACTIONS(3496), + [anon_sym_SLASH] = ACTIONS(3496), + [anon_sym_PERCENT] = ACTIONS(3496), + [anon_sym_LT] = ACTIONS(3498), + [anon_sym_GT] = ACTIONS(3498), + [anon_sym_EQ_EQ] = ACTIONS(3498), + [anon_sym_BANG_EQ] = ACTIONS(3498), + [anon_sym_LT_EQ] = ACTIONS(3498), + [anon_sym_GT_EQ] = ACTIONS(3498), + [anon_sym_LBRACK] = ACTIONS(3500), + [anon_sym_struct] = ACTIONS(1765), + [anon_sym_union] = ACTIONS(1765), + [anon_sym_pub] = ACTIONS(1765), + [anon_sym_mut] = ACTIONS(1765), + [anon_sym_enum] = ACTIONS(1765), + [anon_sym_interface] = ACTIONS(1765), + [anon_sym_PLUS_PLUS] = ACTIONS(1765), + [anon_sym_DASH_DASH] = ACTIONS(1765), + [anon_sym_QMARK] = ACTIONS(3506), + [anon_sym_BANG] = ACTIONS(3508), + [anon_sym_go] = ACTIONS(1765), + [anon_sym_spawn] = ACTIONS(1765), + [anon_sym_json_DOTdecode] = ACTIONS(1765), + [anon_sym_LBRACK2] = ACTIONS(3510), + [anon_sym_TILDE] = ACTIONS(1765), + [anon_sym_CARET] = ACTIONS(3494), + [anon_sym_AMP] = ACTIONS(3496), + [anon_sym_LT_DASH] = ACTIONS(1765), + [anon_sym_LT_LT] = ACTIONS(3496), + [anon_sym_GT_GT] = ACTIONS(3496), + [anon_sym_GT_GT_GT] = ACTIONS(3496), + [anon_sym_AMP_CARET] = ACTIONS(3496), + [anon_sym_AMP_AMP] = ACTIONS(3512), + [anon_sym_PIPE_PIPE] = ACTIONS(1765), + [anon_sym_or] = ACTIONS(1765), + [sym_none] = ACTIONS(1765), + [sym_true] = ACTIONS(1765), + [sym_false] = ACTIONS(1765), + [sym_nil] = ACTIONS(1765), + [anon_sym_QMARK_DOT] = ACTIONS(3486), + [anon_sym_POUND_LBRACK] = ACTIONS(3510), + [anon_sym_if] = ACTIONS(1765), + [anon_sym_DOLLARif] = ACTIONS(1765), + [anon_sym_is] = ACTIONS(1765), + [anon_sym_BANGis] = ACTIONS(1765), + [anon_sym_in] = ACTIONS(3520), + [anon_sym_BANGin] = ACTIONS(3520), + [anon_sym_match] = ACTIONS(1765), + [anon_sym_select] = ACTIONS(1765), + [anon_sym_lock] = ACTIONS(1765), + [anon_sym_rlock] = ACTIONS(1765), + [anon_sym_unsafe] = ACTIONS(1765), + [anon_sym_sql] = ACTIONS(1765), + [sym_int_literal] = ACTIONS(1765), + [sym_float_literal] = ACTIONS(1765), + [sym_rune_literal] = ACTIONS(1765), + [sym_pseudo_compile_time_identifier] = ACTIONS(1765), + [anon_sym_shared] = ACTIONS(1765), + [anon_sym_map_LBRACK] = ACTIONS(1765), + [anon_sym_chan] = ACTIONS(1765), + [anon_sym_thread] = ACTIONS(1765), + [anon_sym_atomic] = ACTIONS(1765), + [anon_sym_assert] = ACTIONS(1765), + [anon_sym_defer] = ACTIONS(1765), + [anon_sym_goto] = ACTIONS(1765), + [anon_sym_break] = ACTIONS(1765), + [anon_sym_continue] = ACTIONS(1765), + [anon_sym_return] = ACTIONS(1765), + [anon_sym_DOLLARfor] = ACTIONS(1765), + [anon_sym_for] = ACTIONS(1765), + [anon_sym_POUND] = ACTIONS(1765), + [anon_sym_asm] = ACTIONS(1765), + [anon_sym_AT_LBRACK] = ACTIONS(1765), + [sym___double_quote] = ACTIONS(1765), + [sym___single_quote] = ACTIONS(1765), + [sym___c_double_quote] = ACTIONS(1765), + [sym___c_single_quote] = ACTIONS(1765), + [sym___r_double_quote] = ACTIONS(1765), + [sym___r_single_quote] = ACTIONS(1765), + }, + [959] = { + [sym_line_comment] = STATE(959), + [sym_block_comment] = STATE(959), + [sym_type_parameters] = STATE(4189), + [sym_argument_list] = STATE(1068), + [sym_or_block] = STATE(1064), + [ts_builtin_sym_end] = ACTIONS(1763), + [sym_identifier] = ACTIONS(1765), + [anon_sym_LF] = ACTIONS(1765), + [anon_sym_CR] = ACTIONS(1765), + [anon_sym_CR_LF] = ACTIONS(1765), + [anon_sym_SLASH_SLASH] = ACTIONS(497), + [anon_sym_SLASH_STAR] = ACTIONS(499), + [anon_sym_DOT] = ACTIONS(3486), + [anon_sym_as] = ACTIONS(1765), + [anon_sym_LBRACE] = ACTIONS(1765), + [anon_sym_COMMA] = ACTIONS(1765), + [anon_sym_const] = ACTIONS(1765), + [anon_sym_LPAREN] = ACTIONS(3492), + [anon_sym___global] = ACTIONS(1765), + [anon_sym_type] = ACTIONS(1765), + [anon_sym_PIPE] = ACTIONS(3494), + [anon_sym_fn] = ACTIONS(1765), + [anon_sym_PLUS] = ACTIONS(3494), + [anon_sym_DASH] = ACTIONS(3494), + [anon_sym_STAR] = ACTIONS(3496), + [anon_sym_SLASH] = ACTIONS(3496), + [anon_sym_PERCENT] = ACTIONS(3496), + [anon_sym_LT] = ACTIONS(3498), + [anon_sym_GT] = ACTIONS(3498), + [anon_sym_EQ_EQ] = ACTIONS(3498), + [anon_sym_BANG_EQ] = ACTIONS(3498), + [anon_sym_LT_EQ] = ACTIONS(3498), + [anon_sym_GT_EQ] = ACTIONS(3498), + [anon_sym_LBRACK] = ACTIONS(3500), + [anon_sym_struct] = ACTIONS(1765), + [anon_sym_union] = ACTIONS(1765), + [anon_sym_pub] = ACTIONS(1765), + [anon_sym_mut] = ACTIONS(1765), + [anon_sym_enum] = ACTIONS(1765), + [anon_sym_interface] = ACTIONS(1765), + [anon_sym_PLUS_PLUS] = ACTIONS(1765), + [anon_sym_DASH_DASH] = ACTIONS(1765), + [anon_sym_QMARK] = ACTIONS(3506), + [anon_sym_BANG] = ACTIONS(3508), + [anon_sym_go] = ACTIONS(1765), + [anon_sym_spawn] = ACTIONS(1765), + [anon_sym_json_DOTdecode] = ACTIONS(1765), + [anon_sym_LBRACK2] = ACTIONS(3510), + [anon_sym_TILDE] = ACTIONS(1765), + [anon_sym_CARET] = ACTIONS(3494), + [anon_sym_AMP] = ACTIONS(3496), + [anon_sym_LT_DASH] = ACTIONS(1765), + [anon_sym_LT_LT] = ACTIONS(3496), + [anon_sym_GT_GT] = ACTIONS(3496), + [anon_sym_GT_GT_GT] = ACTIONS(3496), + [anon_sym_AMP_CARET] = ACTIONS(3496), + [anon_sym_AMP_AMP] = ACTIONS(1765), + [anon_sym_PIPE_PIPE] = ACTIONS(1765), + [anon_sym_or] = ACTIONS(1765), + [sym_none] = ACTIONS(1765), + [sym_true] = ACTIONS(1765), + [sym_false] = ACTIONS(1765), + [sym_nil] = ACTIONS(1765), + [anon_sym_QMARK_DOT] = ACTIONS(3486), + [anon_sym_POUND_LBRACK] = ACTIONS(3510), + [anon_sym_if] = ACTIONS(1765), + [anon_sym_DOLLARif] = ACTIONS(1765), + [anon_sym_is] = ACTIONS(1765), + [anon_sym_BANGis] = ACTIONS(1765), + [anon_sym_in] = ACTIONS(3520), + [anon_sym_BANGin] = ACTIONS(3520), + [anon_sym_match] = ACTIONS(1765), + [anon_sym_select] = ACTIONS(1765), + [anon_sym_lock] = ACTIONS(1765), + [anon_sym_rlock] = ACTIONS(1765), + [anon_sym_unsafe] = ACTIONS(1765), + [anon_sym_sql] = ACTIONS(1765), + [sym_int_literal] = ACTIONS(1765), + [sym_float_literal] = ACTIONS(1765), + [sym_rune_literal] = ACTIONS(1765), + [sym_pseudo_compile_time_identifier] = ACTIONS(1765), + [anon_sym_shared] = ACTIONS(1765), + [anon_sym_map_LBRACK] = ACTIONS(1765), + [anon_sym_chan] = ACTIONS(1765), + [anon_sym_thread] = ACTIONS(1765), + [anon_sym_atomic] = ACTIONS(1765), + [anon_sym_assert] = ACTIONS(1765), + [anon_sym_defer] = ACTIONS(1765), + [anon_sym_goto] = ACTIONS(1765), + [anon_sym_break] = ACTIONS(1765), + [anon_sym_continue] = ACTIONS(1765), + [anon_sym_return] = ACTIONS(1765), + [anon_sym_DOLLARfor] = ACTIONS(1765), + [anon_sym_for] = ACTIONS(1765), + [anon_sym_POUND] = ACTIONS(1765), + [anon_sym_asm] = ACTIONS(1765), + [anon_sym_AT_LBRACK] = ACTIONS(1765), + [sym___double_quote] = ACTIONS(1765), + [sym___single_quote] = ACTIONS(1765), + [sym___c_double_quote] = ACTIONS(1765), + [sym___c_single_quote] = ACTIONS(1765), + [sym___r_double_quote] = ACTIONS(1765), + [sym___r_single_quote] = ACTIONS(1765), + }, [960] = { [sym_line_comment] = STATE(960), [sym_block_comment] = STATE(960), - [sym_type_parameters] = STATE(4103), - [sym_argument_list] = STATE(1063), - [sym_or_block] = STATE(1069), + [sym_type_parameters] = STATE(4189), + [sym_argument_list] = STATE(1068), + [sym_or_block] = STATE(1064), [ts_builtin_sym_end] = ACTIONS(1779), [sym_identifier] = ACTIONS(1781), [anon_sym_LF] = ACTIONS(1781), @@ -133195,65 +133224,65 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_CR_LF] = ACTIONS(1781), [anon_sym_SLASH_SLASH] = ACTIONS(497), [anon_sym_SLASH_STAR] = ACTIONS(499), - [anon_sym_DOT] = ACTIONS(3480), - [anon_sym_as] = ACTIONS(3482), + [anon_sym_DOT] = ACTIONS(3486), + [anon_sym_as] = ACTIONS(1781), [anon_sym_LBRACE] = ACTIONS(1781), [anon_sym_COMMA] = ACTIONS(1781), [anon_sym_const] = ACTIONS(1781), - [anon_sym_LPAREN] = ACTIONS(3486), + [anon_sym_LPAREN] = ACTIONS(3492), [anon_sym___global] = ACTIONS(1781), [anon_sym_type] = ACTIONS(1781), - [anon_sym_PIPE] = ACTIONS(3488), + [anon_sym_PIPE] = ACTIONS(3494), [anon_sym_fn] = ACTIONS(1781), - [anon_sym_PLUS] = ACTIONS(3488), - [anon_sym_DASH] = ACTIONS(3488), - [anon_sym_STAR] = ACTIONS(3490), - [anon_sym_SLASH] = ACTIONS(3490), - [anon_sym_PERCENT] = ACTIONS(3490), - [anon_sym_LT] = ACTIONS(3492), - [anon_sym_GT] = ACTIONS(3492), - [anon_sym_EQ_EQ] = ACTIONS(3492), - [anon_sym_BANG_EQ] = ACTIONS(3492), - [anon_sym_LT_EQ] = ACTIONS(3492), - [anon_sym_GT_EQ] = ACTIONS(3492), - [anon_sym_LBRACK] = ACTIONS(3494), + [anon_sym_PLUS] = ACTIONS(3494), + [anon_sym_DASH] = ACTIONS(3494), + [anon_sym_STAR] = ACTIONS(3496), + [anon_sym_SLASH] = ACTIONS(3496), + [anon_sym_PERCENT] = ACTIONS(3496), + [anon_sym_LT] = ACTIONS(1781), + [anon_sym_GT] = ACTIONS(1781), + [anon_sym_EQ_EQ] = ACTIONS(1781), + [anon_sym_BANG_EQ] = ACTIONS(1781), + [anon_sym_LT_EQ] = ACTIONS(1781), + [anon_sym_GT_EQ] = ACTIONS(1781), + [anon_sym_LBRACK] = ACTIONS(3500), [anon_sym_struct] = ACTIONS(1781), [anon_sym_union] = ACTIONS(1781), [anon_sym_pub] = ACTIONS(1781), [anon_sym_mut] = ACTIONS(1781), [anon_sym_enum] = ACTIONS(1781), [anon_sym_interface] = ACTIONS(1781), - [anon_sym_PLUS_PLUS] = ACTIONS(3496), - [anon_sym_DASH_DASH] = ACTIONS(3498), - [anon_sym_QMARK] = ACTIONS(3500), - [anon_sym_BANG] = ACTIONS(3502), + [anon_sym_PLUS_PLUS] = ACTIONS(1781), + [anon_sym_DASH_DASH] = ACTIONS(1781), + [anon_sym_QMARK] = ACTIONS(3506), + [anon_sym_BANG] = ACTIONS(3508), [anon_sym_go] = ACTIONS(1781), [anon_sym_spawn] = ACTIONS(1781), [anon_sym_json_DOTdecode] = ACTIONS(1781), - [anon_sym_LBRACK2] = ACTIONS(3504), + [anon_sym_LBRACK2] = ACTIONS(3510), [anon_sym_TILDE] = ACTIONS(1781), - [anon_sym_CARET] = ACTIONS(3488), - [anon_sym_AMP] = ACTIONS(3490), + [anon_sym_CARET] = ACTIONS(3494), + [anon_sym_AMP] = ACTIONS(3496), [anon_sym_LT_DASH] = ACTIONS(1781), - [anon_sym_LT_LT] = ACTIONS(3490), - [anon_sym_GT_GT] = ACTIONS(3490), - [anon_sym_GT_GT_GT] = ACTIONS(3490), - [anon_sym_AMP_CARET] = ACTIONS(3490), - [anon_sym_AMP_AMP] = ACTIONS(3506), - [anon_sym_PIPE_PIPE] = ACTIONS(3508), - [anon_sym_or] = ACTIONS(3510), + [anon_sym_LT_LT] = ACTIONS(3496), + [anon_sym_GT_GT] = ACTIONS(3496), + [anon_sym_GT_GT_GT] = ACTIONS(3496), + [anon_sym_AMP_CARET] = ACTIONS(3496), + [anon_sym_AMP_AMP] = ACTIONS(1781), + [anon_sym_PIPE_PIPE] = ACTIONS(1781), + [anon_sym_or] = ACTIONS(1781), [sym_none] = ACTIONS(1781), [sym_true] = ACTIONS(1781), [sym_false] = ACTIONS(1781), [sym_nil] = ACTIONS(1781), - [anon_sym_QMARK_DOT] = ACTIONS(3480), - [anon_sym_POUND_LBRACK] = ACTIONS(3504), + [anon_sym_QMARK_DOT] = ACTIONS(3486), + [anon_sym_POUND_LBRACK] = ACTIONS(3510), [anon_sym_if] = ACTIONS(1781), [anon_sym_DOLLARif] = ACTIONS(1781), - [anon_sym_is] = ACTIONS(3512), - [anon_sym_BANGis] = ACTIONS(3512), - [anon_sym_in] = ACTIONS(3514), - [anon_sym_BANGin] = ACTIONS(3514), + [anon_sym_is] = ACTIONS(1781), + [anon_sym_BANGis] = ACTIONS(1781), + [anon_sym_in] = ACTIONS(1781), + [anon_sym_BANGin] = ACTIONS(1781), [anon_sym_match] = ACTIONS(1781), [anon_sym_select] = ACTIONS(1781), [anon_sym_lock] = ACTIONS(1781), @@ -133290,324 +133319,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [961] = { [sym_line_comment] = STATE(961), [sym_block_comment] = STATE(961), - [sym_type_parameters] = STATE(4103), - [sym_argument_list] = STATE(1063), - [sym_or_block] = STATE(1069), - [ts_builtin_sym_end] = ACTIONS(1783), - [sym_identifier] = ACTIONS(1785), - [anon_sym_LF] = ACTIONS(1785), - [anon_sym_CR] = ACTIONS(1785), - [anon_sym_CR_LF] = ACTIONS(1785), - [anon_sym_SLASH_SLASH] = ACTIONS(497), - [anon_sym_SLASH_STAR] = ACTIONS(499), - [anon_sym_DOT] = ACTIONS(3480), - [anon_sym_as] = ACTIONS(1785), - [anon_sym_LBRACE] = ACTIONS(1785), - [anon_sym_COMMA] = ACTIONS(1785), - [anon_sym_const] = ACTIONS(1785), - [anon_sym_LPAREN] = ACTIONS(3486), - [anon_sym___global] = ACTIONS(1785), - [anon_sym_type] = ACTIONS(1785), - [anon_sym_PIPE] = ACTIONS(3488), - [anon_sym_fn] = ACTIONS(1785), - [anon_sym_PLUS] = ACTIONS(3488), - [anon_sym_DASH] = ACTIONS(3488), - [anon_sym_STAR] = ACTIONS(3490), - [anon_sym_SLASH] = ACTIONS(3490), - [anon_sym_PERCENT] = ACTIONS(3490), - [anon_sym_LT] = ACTIONS(3492), - [anon_sym_GT] = ACTIONS(3492), - [anon_sym_EQ_EQ] = ACTIONS(3492), - [anon_sym_BANG_EQ] = ACTIONS(3492), - [anon_sym_LT_EQ] = ACTIONS(3492), - [anon_sym_GT_EQ] = ACTIONS(3492), - [anon_sym_LBRACK] = ACTIONS(3494), - [anon_sym_struct] = ACTIONS(1785), - [anon_sym_union] = ACTIONS(1785), - [anon_sym_pub] = ACTIONS(1785), - [anon_sym_mut] = ACTIONS(1785), - [anon_sym_enum] = ACTIONS(1785), - [anon_sym_interface] = ACTIONS(1785), - [anon_sym_PLUS_PLUS] = ACTIONS(1785), - [anon_sym_DASH_DASH] = ACTIONS(1785), - [anon_sym_QMARK] = ACTIONS(3500), - [anon_sym_BANG] = ACTIONS(3502), - [anon_sym_go] = ACTIONS(1785), - [anon_sym_spawn] = ACTIONS(1785), - [anon_sym_json_DOTdecode] = ACTIONS(1785), - [anon_sym_LBRACK2] = ACTIONS(3504), - [anon_sym_TILDE] = ACTIONS(1785), - [anon_sym_CARET] = ACTIONS(3488), - [anon_sym_AMP] = ACTIONS(3490), - [anon_sym_LT_DASH] = ACTIONS(1785), - [anon_sym_LT_LT] = ACTIONS(3490), - [anon_sym_GT_GT] = ACTIONS(3490), - [anon_sym_GT_GT_GT] = ACTIONS(3490), - [anon_sym_AMP_CARET] = ACTIONS(3490), - [anon_sym_AMP_AMP] = ACTIONS(3506), - [anon_sym_PIPE_PIPE] = ACTIONS(1785), - [anon_sym_or] = ACTIONS(1785), - [sym_none] = ACTIONS(1785), - [sym_true] = ACTIONS(1785), - [sym_false] = ACTIONS(1785), - [sym_nil] = ACTIONS(1785), - [anon_sym_QMARK_DOT] = ACTIONS(3480), - [anon_sym_POUND_LBRACK] = ACTIONS(3504), - [anon_sym_if] = ACTIONS(1785), - [anon_sym_DOLLARif] = ACTIONS(1785), - [anon_sym_is] = ACTIONS(1785), - [anon_sym_BANGis] = ACTIONS(1785), - [anon_sym_in] = ACTIONS(3514), - [anon_sym_BANGin] = ACTIONS(3514), - [anon_sym_match] = ACTIONS(1785), - [anon_sym_select] = ACTIONS(1785), - [anon_sym_lock] = ACTIONS(1785), - [anon_sym_rlock] = ACTIONS(1785), - [anon_sym_unsafe] = ACTIONS(1785), - [anon_sym_sql] = ACTIONS(1785), - [sym_int_literal] = ACTIONS(1785), - [sym_float_literal] = ACTIONS(1785), - [sym_rune_literal] = ACTIONS(1785), - [sym_pseudo_compile_time_identifier] = ACTIONS(1785), - [anon_sym_shared] = ACTIONS(1785), - [anon_sym_map_LBRACK] = ACTIONS(1785), - [anon_sym_chan] = ACTIONS(1785), - [anon_sym_thread] = ACTIONS(1785), - [anon_sym_atomic] = ACTIONS(1785), - [anon_sym_assert] = ACTIONS(1785), - [anon_sym_defer] = ACTIONS(1785), - [anon_sym_goto] = ACTIONS(1785), - [anon_sym_break] = ACTIONS(1785), - [anon_sym_continue] = ACTIONS(1785), - [anon_sym_return] = ACTIONS(1785), - [anon_sym_DOLLARfor] = ACTIONS(1785), - [anon_sym_for] = ACTIONS(1785), - [anon_sym_POUND] = ACTIONS(1785), - [anon_sym_asm] = ACTIONS(1785), - [anon_sym_AT_LBRACK] = ACTIONS(1785), - [sym___double_quote] = ACTIONS(1785), - [sym___single_quote] = ACTIONS(1785), - [sym___c_double_quote] = ACTIONS(1785), - [sym___c_single_quote] = ACTIONS(1785), - [sym___r_double_quote] = ACTIONS(1785), - [sym___r_single_quote] = ACTIONS(1785), - }, - [962] = { - [sym_line_comment] = STATE(962), - [sym_block_comment] = STATE(962), - [sym_type_parameters] = STATE(4103), - [sym_argument_list] = STATE(1063), - [sym_or_block] = STATE(1069), - [ts_builtin_sym_end] = ACTIONS(1783), - [sym_identifier] = ACTIONS(1785), - [anon_sym_LF] = ACTIONS(1785), - [anon_sym_CR] = ACTIONS(1785), - [anon_sym_CR_LF] = ACTIONS(1785), - [anon_sym_SLASH_SLASH] = ACTIONS(497), - [anon_sym_SLASH_STAR] = ACTIONS(499), - [anon_sym_DOT] = ACTIONS(3480), - [anon_sym_as] = ACTIONS(1785), - [anon_sym_LBRACE] = ACTIONS(1785), - [anon_sym_COMMA] = ACTIONS(1785), - [anon_sym_const] = ACTIONS(1785), - [anon_sym_LPAREN] = ACTIONS(3486), - [anon_sym___global] = ACTIONS(1785), - [anon_sym_type] = ACTIONS(1785), - [anon_sym_PIPE] = ACTIONS(3488), - [anon_sym_fn] = ACTIONS(1785), - [anon_sym_PLUS] = ACTIONS(3488), - [anon_sym_DASH] = ACTIONS(3488), - [anon_sym_STAR] = ACTIONS(3490), - [anon_sym_SLASH] = ACTIONS(3490), - [anon_sym_PERCENT] = ACTIONS(3490), - [anon_sym_LT] = ACTIONS(3492), - [anon_sym_GT] = ACTIONS(3492), - [anon_sym_EQ_EQ] = ACTIONS(3492), - [anon_sym_BANG_EQ] = ACTIONS(3492), - [anon_sym_LT_EQ] = ACTIONS(3492), - [anon_sym_GT_EQ] = ACTIONS(3492), - [anon_sym_LBRACK] = ACTIONS(3494), - [anon_sym_struct] = ACTIONS(1785), - [anon_sym_union] = ACTIONS(1785), - [anon_sym_pub] = ACTIONS(1785), - [anon_sym_mut] = ACTIONS(1785), - [anon_sym_enum] = ACTIONS(1785), - [anon_sym_interface] = ACTIONS(1785), - [anon_sym_PLUS_PLUS] = ACTIONS(1785), - [anon_sym_DASH_DASH] = ACTIONS(1785), - [anon_sym_QMARK] = ACTIONS(3500), - [anon_sym_BANG] = ACTIONS(3502), - [anon_sym_go] = ACTIONS(1785), - [anon_sym_spawn] = ACTIONS(1785), - [anon_sym_json_DOTdecode] = ACTIONS(1785), - [anon_sym_LBRACK2] = ACTIONS(3504), - [anon_sym_TILDE] = ACTIONS(1785), - [anon_sym_CARET] = ACTIONS(3488), - [anon_sym_AMP] = ACTIONS(3490), - [anon_sym_LT_DASH] = ACTIONS(1785), - [anon_sym_LT_LT] = ACTIONS(3490), - [anon_sym_GT_GT] = ACTIONS(3490), - [anon_sym_GT_GT_GT] = ACTIONS(3490), - [anon_sym_AMP_CARET] = ACTIONS(3490), - [anon_sym_AMP_AMP] = ACTIONS(1785), - [anon_sym_PIPE_PIPE] = ACTIONS(1785), - [anon_sym_or] = ACTIONS(1785), - [sym_none] = ACTIONS(1785), - [sym_true] = ACTIONS(1785), - [sym_false] = ACTIONS(1785), - [sym_nil] = ACTIONS(1785), - [anon_sym_QMARK_DOT] = ACTIONS(3480), - [anon_sym_POUND_LBRACK] = ACTIONS(3504), - [anon_sym_if] = ACTIONS(1785), - [anon_sym_DOLLARif] = ACTIONS(1785), - [anon_sym_is] = ACTIONS(1785), - [anon_sym_BANGis] = ACTIONS(1785), - [anon_sym_in] = ACTIONS(3514), - [anon_sym_BANGin] = ACTIONS(3514), - [anon_sym_match] = ACTIONS(1785), - [anon_sym_select] = ACTIONS(1785), - [anon_sym_lock] = ACTIONS(1785), - [anon_sym_rlock] = ACTIONS(1785), - [anon_sym_unsafe] = ACTIONS(1785), - [anon_sym_sql] = ACTIONS(1785), - [sym_int_literal] = ACTIONS(1785), - [sym_float_literal] = ACTIONS(1785), - [sym_rune_literal] = ACTIONS(1785), - [sym_pseudo_compile_time_identifier] = ACTIONS(1785), - [anon_sym_shared] = ACTIONS(1785), - [anon_sym_map_LBRACK] = ACTIONS(1785), - [anon_sym_chan] = ACTIONS(1785), - [anon_sym_thread] = ACTIONS(1785), - [anon_sym_atomic] = ACTIONS(1785), - [anon_sym_assert] = ACTIONS(1785), - [anon_sym_defer] = ACTIONS(1785), - [anon_sym_goto] = ACTIONS(1785), - [anon_sym_break] = ACTIONS(1785), - [anon_sym_continue] = ACTIONS(1785), - [anon_sym_return] = ACTIONS(1785), - [anon_sym_DOLLARfor] = ACTIONS(1785), - [anon_sym_for] = ACTIONS(1785), - [anon_sym_POUND] = ACTIONS(1785), - [anon_sym_asm] = ACTIONS(1785), - [anon_sym_AT_LBRACK] = ACTIONS(1785), - [sym___double_quote] = ACTIONS(1785), - [sym___single_quote] = ACTIONS(1785), - [sym___c_double_quote] = ACTIONS(1785), - [sym___c_single_quote] = ACTIONS(1785), - [sym___r_double_quote] = ACTIONS(1785), - [sym___r_single_quote] = ACTIONS(1785), - }, - [963] = { - [sym_line_comment] = STATE(963), - [sym_block_comment] = STATE(963), - [sym_type_parameters] = STATE(4103), - [sym_argument_list] = STATE(1063), - [sym_or_block] = STATE(1069), - [ts_builtin_sym_end] = ACTIONS(1783), - [sym_identifier] = ACTIONS(1785), - [anon_sym_LF] = ACTIONS(1785), - [anon_sym_CR] = ACTIONS(1785), - [anon_sym_CR_LF] = ACTIONS(1785), - [anon_sym_SLASH_SLASH] = ACTIONS(497), - [anon_sym_SLASH_STAR] = ACTIONS(499), - [anon_sym_DOT] = ACTIONS(3480), - [anon_sym_as] = ACTIONS(1785), - [anon_sym_LBRACE] = ACTIONS(1785), - [anon_sym_COMMA] = ACTIONS(1785), - [anon_sym_const] = ACTIONS(1785), - [anon_sym_LPAREN] = ACTIONS(3486), - [anon_sym___global] = ACTIONS(1785), - [anon_sym_type] = ACTIONS(1785), - [anon_sym_PIPE] = ACTIONS(1785), - [anon_sym_fn] = ACTIONS(1785), - [anon_sym_PLUS] = ACTIONS(1785), - [anon_sym_DASH] = ACTIONS(1785), - [anon_sym_STAR] = ACTIONS(3490), - [anon_sym_SLASH] = ACTIONS(3490), - [anon_sym_PERCENT] = ACTIONS(3490), - [anon_sym_LT] = ACTIONS(1785), - [anon_sym_GT] = ACTIONS(1785), - [anon_sym_EQ_EQ] = ACTIONS(1785), - [anon_sym_BANG_EQ] = ACTIONS(1785), - [anon_sym_LT_EQ] = ACTIONS(1785), - [anon_sym_GT_EQ] = ACTIONS(1785), - [anon_sym_LBRACK] = ACTIONS(3494), - [anon_sym_struct] = ACTIONS(1785), - [anon_sym_union] = ACTIONS(1785), - [anon_sym_pub] = ACTIONS(1785), - [anon_sym_mut] = ACTIONS(1785), - [anon_sym_enum] = ACTIONS(1785), - [anon_sym_interface] = ACTIONS(1785), - [anon_sym_PLUS_PLUS] = ACTIONS(1785), - [anon_sym_DASH_DASH] = ACTIONS(1785), - [anon_sym_QMARK] = ACTIONS(3500), - [anon_sym_BANG] = ACTIONS(3502), - [anon_sym_go] = ACTIONS(1785), - [anon_sym_spawn] = ACTIONS(1785), - [anon_sym_json_DOTdecode] = ACTIONS(1785), - [anon_sym_LBRACK2] = ACTIONS(3504), - [anon_sym_TILDE] = ACTIONS(1785), - [anon_sym_CARET] = ACTIONS(1785), - [anon_sym_AMP] = ACTIONS(3490), - [anon_sym_LT_DASH] = ACTIONS(1785), - [anon_sym_LT_LT] = ACTIONS(3490), - [anon_sym_GT_GT] = ACTIONS(3490), - [anon_sym_GT_GT_GT] = ACTIONS(3490), - [anon_sym_AMP_CARET] = ACTIONS(3490), - [anon_sym_AMP_AMP] = ACTIONS(1785), - [anon_sym_PIPE_PIPE] = ACTIONS(1785), - [anon_sym_or] = ACTIONS(1785), - [sym_none] = ACTIONS(1785), - [sym_true] = ACTIONS(1785), - [sym_false] = ACTIONS(1785), - [sym_nil] = ACTIONS(1785), - [anon_sym_QMARK_DOT] = ACTIONS(3480), - [anon_sym_POUND_LBRACK] = ACTIONS(3504), - [anon_sym_if] = ACTIONS(1785), - [anon_sym_DOLLARif] = ACTIONS(1785), - [anon_sym_is] = ACTIONS(1785), - [anon_sym_BANGis] = ACTIONS(1785), - [anon_sym_in] = ACTIONS(1785), - [anon_sym_BANGin] = ACTIONS(1785), - [anon_sym_match] = ACTIONS(1785), - [anon_sym_select] = ACTIONS(1785), - [anon_sym_lock] = ACTIONS(1785), - [anon_sym_rlock] = ACTIONS(1785), - [anon_sym_unsafe] = ACTIONS(1785), - [anon_sym_sql] = ACTIONS(1785), - [sym_int_literal] = ACTIONS(1785), - [sym_float_literal] = ACTIONS(1785), - [sym_rune_literal] = ACTIONS(1785), - [sym_pseudo_compile_time_identifier] = ACTIONS(1785), - [anon_sym_shared] = ACTIONS(1785), - [anon_sym_map_LBRACK] = ACTIONS(1785), - [anon_sym_chan] = ACTIONS(1785), - [anon_sym_thread] = ACTIONS(1785), - [anon_sym_atomic] = ACTIONS(1785), - [anon_sym_assert] = ACTIONS(1785), - [anon_sym_defer] = ACTIONS(1785), - [anon_sym_goto] = ACTIONS(1785), - [anon_sym_break] = ACTIONS(1785), - [anon_sym_continue] = ACTIONS(1785), - [anon_sym_return] = ACTIONS(1785), - [anon_sym_DOLLARfor] = ACTIONS(1785), - [anon_sym_for] = ACTIONS(1785), - [anon_sym_POUND] = ACTIONS(1785), - [anon_sym_asm] = ACTIONS(1785), - [anon_sym_AT_LBRACK] = ACTIONS(1785), - [sym___double_quote] = ACTIONS(1785), - [sym___single_quote] = ACTIONS(1785), - [sym___c_double_quote] = ACTIONS(1785), - [sym___c_single_quote] = ACTIONS(1785), - [sym___r_double_quote] = ACTIONS(1785), - [sym___r_single_quote] = ACTIONS(1785), - }, - [964] = { - [sym_line_comment] = STATE(964), - [sym_block_comment] = STATE(964), - [sym_type_parameters] = STATE(4103), - [sym_argument_list] = STATE(1063), - [sym_or_block] = STATE(1069), + [sym_type_parameters] = STATE(4189), + [sym_argument_list] = STATE(1068), + [sym_or_block] = STATE(1064), [ts_builtin_sym_end] = ACTIONS(1783), [sym_identifier] = ACTIONS(1785), [anon_sym_LF] = ACTIONS(1785), @@ -133615,12 +133329,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_CR_LF] = ACTIONS(1785), [anon_sym_SLASH_SLASH] = ACTIONS(497), [anon_sym_SLASH_STAR] = ACTIONS(499), - [anon_sym_DOT] = ACTIONS(3480), + [anon_sym_DOT] = ACTIONS(3486), [anon_sym_as] = ACTIONS(1785), [anon_sym_LBRACE] = ACTIONS(1785), [anon_sym_COMMA] = ACTIONS(1785), [anon_sym_const] = ACTIONS(1785), - [anon_sym_LPAREN] = ACTIONS(3486), + [anon_sym_LPAREN] = ACTIONS(3492), [anon_sym___global] = ACTIONS(1785), [anon_sym_type] = ACTIONS(1785), [anon_sym_PIPE] = ACTIONS(1785), @@ -133636,7 +133350,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BANG_EQ] = ACTIONS(1785), [anon_sym_LT_EQ] = ACTIONS(1785), [anon_sym_GT_EQ] = ACTIONS(1785), - [anon_sym_LBRACK] = ACTIONS(3494), + [anon_sym_LBRACK] = ACTIONS(3500), [anon_sym_struct] = ACTIONS(1785), [anon_sym_union] = ACTIONS(1785), [anon_sym_pub] = ACTIONS(1785), @@ -133645,12 +133359,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_interface] = ACTIONS(1785), [anon_sym_PLUS_PLUS] = ACTIONS(1785), [anon_sym_DASH_DASH] = ACTIONS(1785), - [anon_sym_QMARK] = ACTIONS(3500), - [anon_sym_BANG] = ACTIONS(3502), + [anon_sym_QMARK] = ACTIONS(3506), + [anon_sym_BANG] = ACTIONS(3508), [anon_sym_go] = ACTIONS(1785), [anon_sym_spawn] = ACTIONS(1785), [anon_sym_json_DOTdecode] = ACTIONS(1785), - [anon_sym_LBRACK2] = ACTIONS(3504), + [anon_sym_LBRACK2] = ACTIONS(3510), [anon_sym_TILDE] = ACTIONS(1785), [anon_sym_CARET] = ACTIONS(1785), [anon_sym_AMP] = ACTIONS(1785), @@ -133666,8 +133380,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_true] = ACTIONS(1785), [sym_false] = ACTIONS(1785), [sym_nil] = ACTIONS(1785), - [anon_sym_QMARK_DOT] = ACTIONS(3480), - [anon_sym_POUND_LBRACK] = ACTIONS(3504), + [anon_sym_QMARK_DOT] = ACTIONS(3486), + [anon_sym_POUND_LBRACK] = ACTIONS(3510), [anon_sym_if] = ACTIONS(1785), [anon_sym_DOLLARif] = ACTIONS(1785), [anon_sym_is] = ACTIONS(1785), @@ -133707,427 +133421,535 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym___r_double_quote] = ACTIONS(1785), [sym___r_single_quote] = ACTIONS(1785), }, - [965] = { - [sym_line_comment] = STATE(965), - [sym_block_comment] = STATE(965), - [sym_type_parameters] = STATE(4103), - [sym_argument_list] = STATE(1063), - [sym_or_block] = STATE(1069), - [ts_builtin_sym_end] = ACTIONS(1783), - [sym_identifier] = ACTIONS(1785), - [anon_sym_LF] = ACTIONS(1785), - [anon_sym_CR] = ACTIONS(1785), - [anon_sym_CR_LF] = ACTIONS(1785), + [962] = { + [sym_line_comment] = STATE(962), + [sym_block_comment] = STATE(962), + [sym_type_parameters] = STATE(4189), + [sym_argument_list] = STATE(1068), + [sym_or_block] = STATE(1064), + [ts_builtin_sym_end] = ACTIONS(1771), + [sym_identifier] = ACTIONS(1773), + [anon_sym_LF] = ACTIONS(1773), + [anon_sym_CR] = ACTIONS(1773), + [anon_sym_CR_LF] = ACTIONS(1773), [anon_sym_SLASH_SLASH] = ACTIONS(497), [anon_sym_SLASH_STAR] = ACTIONS(499), - [anon_sym_DOT] = ACTIONS(3480), - [anon_sym_as] = ACTIONS(1785), - [anon_sym_LBRACE] = ACTIONS(1785), - [anon_sym_COMMA] = ACTIONS(1785), - [anon_sym_const] = ACTIONS(1785), - [anon_sym_LPAREN] = ACTIONS(3486), - [anon_sym___global] = ACTIONS(1785), - [anon_sym_type] = ACTIONS(1785), - [anon_sym_PIPE] = ACTIONS(3488), - [anon_sym_fn] = ACTIONS(1785), - [anon_sym_PLUS] = ACTIONS(3488), - [anon_sym_DASH] = ACTIONS(3488), - [anon_sym_STAR] = ACTIONS(3490), - [anon_sym_SLASH] = ACTIONS(3490), - [anon_sym_PERCENT] = ACTIONS(3490), - [anon_sym_LT] = ACTIONS(1785), - [anon_sym_GT] = ACTIONS(1785), - [anon_sym_EQ_EQ] = ACTIONS(1785), - [anon_sym_BANG_EQ] = ACTIONS(1785), - [anon_sym_LT_EQ] = ACTIONS(1785), - [anon_sym_GT_EQ] = ACTIONS(1785), - [anon_sym_LBRACK] = ACTIONS(3494), - [anon_sym_struct] = ACTIONS(1785), - [anon_sym_union] = ACTIONS(1785), - [anon_sym_pub] = ACTIONS(1785), - [anon_sym_mut] = ACTIONS(1785), - [anon_sym_enum] = ACTIONS(1785), - [anon_sym_interface] = ACTIONS(1785), - [anon_sym_PLUS_PLUS] = ACTIONS(1785), - [anon_sym_DASH_DASH] = ACTIONS(1785), - [anon_sym_QMARK] = ACTIONS(3500), - [anon_sym_BANG] = ACTIONS(3502), - [anon_sym_go] = ACTIONS(1785), - [anon_sym_spawn] = ACTIONS(1785), - [anon_sym_json_DOTdecode] = ACTIONS(1785), - [anon_sym_LBRACK2] = ACTIONS(3504), - [anon_sym_TILDE] = ACTIONS(1785), - [anon_sym_CARET] = ACTIONS(3488), - [anon_sym_AMP] = ACTIONS(3490), - [anon_sym_LT_DASH] = ACTIONS(1785), - [anon_sym_LT_LT] = ACTIONS(3490), - [anon_sym_GT_GT] = ACTIONS(3490), - [anon_sym_GT_GT_GT] = ACTIONS(3490), - [anon_sym_AMP_CARET] = ACTIONS(3490), - [anon_sym_AMP_AMP] = ACTIONS(1785), - [anon_sym_PIPE_PIPE] = ACTIONS(1785), - [anon_sym_or] = ACTIONS(1785), - [sym_none] = ACTIONS(1785), - [sym_true] = ACTIONS(1785), - [sym_false] = ACTIONS(1785), - [sym_nil] = ACTIONS(1785), - [anon_sym_QMARK_DOT] = ACTIONS(3480), - [anon_sym_POUND_LBRACK] = ACTIONS(3504), - [anon_sym_if] = ACTIONS(1785), - [anon_sym_DOLLARif] = ACTIONS(1785), - [anon_sym_is] = ACTIONS(1785), - [anon_sym_BANGis] = ACTIONS(1785), - [anon_sym_in] = ACTIONS(1785), - [anon_sym_BANGin] = ACTIONS(1785), - [anon_sym_match] = ACTIONS(1785), - [anon_sym_select] = ACTIONS(1785), - [anon_sym_lock] = ACTIONS(1785), - [anon_sym_rlock] = ACTIONS(1785), - [anon_sym_unsafe] = ACTIONS(1785), - [anon_sym_sql] = ACTIONS(1785), - [sym_int_literal] = ACTIONS(1785), - [sym_float_literal] = ACTIONS(1785), - [sym_rune_literal] = ACTIONS(1785), - [sym_pseudo_compile_time_identifier] = ACTIONS(1785), - [anon_sym_shared] = ACTIONS(1785), - [anon_sym_map_LBRACK] = ACTIONS(1785), - [anon_sym_chan] = ACTIONS(1785), - [anon_sym_thread] = ACTIONS(1785), - [anon_sym_atomic] = ACTIONS(1785), - [anon_sym_assert] = ACTIONS(1785), - [anon_sym_defer] = ACTIONS(1785), - [anon_sym_goto] = ACTIONS(1785), - [anon_sym_break] = ACTIONS(1785), - [anon_sym_continue] = ACTIONS(1785), - [anon_sym_return] = ACTIONS(1785), - [anon_sym_DOLLARfor] = ACTIONS(1785), - [anon_sym_for] = ACTIONS(1785), - [anon_sym_POUND] = ACTIONS(1785), - [anon_sym_asm] = ACTIONS(1785), - [anon_sym_AT_LBRACK] = ACTIONS(1785), - [sym___double_quote] = ACTIONS(1785), - [sym___single_quote] = ACTIONS(1785), - [sym___c_double_quote] = ACTIONS(1785), - [sym___c_single_quote] = ACTIONS(1785), - [sym___r_double_quote] = ACTIONS(1785), - [sym___r_single_quote] = ACTIONS(1785), + [anon_sym_DOT] = ACTIONS(3486), + [anon_sym_as] = ACTIONS(3488), + [anon_sym_LBRACE] = ACTIONS(1773), + [anon_sym_COMMA] = ACTIONS(1773), + [anon_sym_const] = ACTIONS(1773), + [anon_sym_LPAREN] = ACTIONS(3492), + [anon_sym___global] = ACTIONS(1773), + [anon_sym_type] = ACTIONS(1773), + [anon_sym_PIPE] = ACTIONS(3494), + [anon_sym_fn] = ACTIONS(1773), + [anon_sym_PLUS] = ACTIONS(3494), + [anon_sym_DASH] = ACTIONS(3494), + [anon_sym_STAR] = ACTIONS(3496), + [anon_sym_SLASH] = ACTIONS(3496), + [anon_sym_PERCENT] = ACTIONS(3496), + [anon_sym_LT] = ACTIONS(3498), + [anon_sym_GT] = ACTIONS(3498), + [anon_sym_EQ_EQ] = ACTIONS(3498), + [anon_sym_BANG_EQ] = ACTIONS(3498), + [anon_sym_LT_EQ] = ACTIONS(3498), + [anon_sym_GT_EQ] = ACTIONS(3498), + [anon_sym_LBRACK] = ACTIONS(3500), + [anon_sym_struct] = ACTIONS(1773), + [anon_sym_union] = ACTIONS(1773), + [anon_sym_pub] = ACTIONS(1773), + [anon_sym_mut] = ACTIONS(1773), + [anon_sym_enum] = ACTIONS(1773), + [anon_sym_interface] = ACTIONS(1773), + [anon_sym_PLUS_PLUS] = ACTIONS(3502), + [anon_sym_DASH_DASH] = ACTIONS(3504), + [anon_sym_QMARK] = ACTIONS(3506), + [anon_sym_BANG] = ACTIONS(3508), + [anon_sym_go] = ACTIONS(1773), + [anon_sym_spawn] = ACTIONS(1773), + [anon_sym_json_DOTdecode] = ACTIONS(1773), + [anon_sym_LBRACK2] = ACTIONS(3510), + [anon_sym_TILDE] = ACTIONS(1773), + [anon_sym_CARET] = ACTIONS(3494), + [anon_sym_AMP] = ACTIONS(3496), + [anon_sym_LT_DASH] = ACTIONS(1773), + [anon_sym_LT_LT] = ACTIONS(3496), + [anon_sym_GT_GT] = ACTIONS(3496), + [anon_sym_GT_GT_GT] = ACTIONS(3496), + [anon_sym_AMP_CARET] = ACTIONS(3496), + [anon_sym_AMP_AMP] = ACTIONS(3512), + [anon_sym_PIPE_PIPE] = ACTIONS(3514), + [anon_sym_or] = ACTIONS(3516), + [sym_none] = ACTIONS(1773), + [sym_true] = ACTIONS(1773), + [sym_false] = ACTIONS(1773), + [sym_nil] = ACTIONS(1773), + [anon_sym_QMARK_DOT] = ACTIONS(3486), + [anon_sym_POUND_LBRACK] = ACTIONS(3510), + [anon_sym_if] = ACTIONS(1773), + [anon_sym_DOLLARif] = ACTIONS(1773), + [anon_sym_is] = ACTIONS(3518), + [anon_sym_BANGis] = ACTIONS(3518), + [anon_sym_in] = ACTIONS(3520), + [anon_sym_BANGin] = ACTIONS(3520), + [anon_sym_match] = ACTIONS(1773), + [anon_sym_select] = ACTIONS(1773), + [anon_sym_lock] = ACTIONS(1773), + [anon_sym_rlock] = ACTIONS(1773), + [anon_sym_unsafe] = ACTIONS(1773), + [anon_sym_sql] = ACTIONS(1773), + [sym_int_literal] = ACTIONS(1773), + [sym_float_literal] = ACTIONS(1773), + [sym_rune_literal] = ACTIONS(1773), + [sym_pseudo_compile_time_identifier] = ACTIONS(1773), + [anon_sym_shared] = ACTIONS(1773), + [anon_sym_map_LBRACK] = ACTIONS(1773), + [anon_sym_chan] = ACTIONS(1773), + [anon_sym_thread] = ACTIONS(1773), + [anon_sym_atomic] = ACTIONS(1773), + [anon_sym_assert] = ACTIONS(1773), + [anon_sym_defer] = ACTIONS(1773), + [anon_sym_goto] = ACTIONS(1773), + [anon_sym_break] = ACTIONS(1773), + [anon_sym_continue] = ACTIONS(1773), + [anon_sym_return] = ACTIONS(1773), + [anon_sym_DOLLARfor] = ACTIONS(1773), + [anon_sym_for] = ACTIONS(1773), + [anon_sym_POUND] = ACTIONS(1773), + [anon_sym_asm] = ACTIONS(1773), + [anon_sym_AT_LBRACK] = ACTIONS(1773), + [sym___double_quote] = ACTIONS(1773), + [sym___single_quote] = ACTIONS(1773), + [sym___c_double_quote] = ACTIONS(1773), + [sym___c_single_quote] = ACTIONS(1773), + [sym___r_double_quote] = ACTIONS(1773), + [sym___r_single_quote] = ACTIONS(1773), }, - [966] = { - [sym_line_comment] = STATE(966), - [sym_block_comment] = STATE(966), - [sym_type_parameters] = STATE(4103), - [sym_argument_list] = STATE(1063), - [sym_or_block] = STATE(1069), - [ts_builtin_sym_end] = ACTIONS(1783), - [sym_identifier] = ACTIONS(1785), - [anon_sym_LF] = ACTIONS(1785), - [anon_sym_CR] = ACTIONS(1785), - [anon_sym_CR_LF] = ACTIONS(1785), + [963] = { + [sym_line_comment] = STATE(963), + [sym_block_comment] = STATE(963), + [sym_type_parameters] = STATE(4189), + [sym_argument_list] = STATE(1068), + [sym_or_block] = STATE(1064), + [ts_builtin_sym_end] = ACTIONS(1763), + [sym_identifier] = ACTIONS(1765), + [anon_sym_LF] = ACTIONS(1765), + [anon_sym_CR] = ACTIONS(1765), + [anon_sym_CR_LF] = ACTIONS(1765), [anon_sym_SLASH_SLASH] = ACTIONS(497), [anon_sym_SLASH_STAR] = ACTIONS(499), - [anon_sym_DOT] = ACTIONS(3480), - [anon_sym_as] = ACTIONS(1785), - [anon_sym_LBRACE] = ACTIONS(1785), - [anon_sym_const] = ACTIONS(1785), - [anon_sym_LPAREN] = ACTIONS(3486), - [anon_sym___global] = ACTIONS(1785), - [anon_sym_type] = ACTIONS(1785), - [anon_sym_PIPE] = ACTIONS(3526), - [anon_sym_fn] = ACTIONS(1785), - [anon_sym_PLUS] = ACTIONS(3526), - [anon_sym_DASH] = ACTIONS(3526), - [anon_sym_STAR] = ACTIONS(3528), - [anon_sym_SLASH] = ACTIONS(3528), - [anon_sym_PERCENT] = ACTIONS(3528), - [anon_sym_LT] = ACTIONS(3530), - [anon_sym_GT] = ACTIONS(3530), - [anon_sym_EQ_EQ] = ACTIONS(3530), - [anon_sym_BANG_EQ] = ACTIONS(3530), - [anon_sym_LT_EQ] = ACTIONS(3530), - [anon_sym_GT_EQ] = ACTIONS(3530), - [anon_sym_LBRACK] = ACTIONS(3494), - [anon_sym_struct] = ACTIONS(1785), - [anon_sym_union] = ACTIONS(1785), - [anon_sym_pub] = ACTIONS(1785), - [anon_sym_mut] = ACTIONS(1785), - [anon_sym_enum] = ACTIONS(1785), - [anon_sym_interface] = ACTIONS(1785), - [anon_sym_PLUS_PLUS] = ACTIONS(1785), - [anon_sym_DASH_DASH] = ACTIONS(1785), - [anon_sym_QMARK] = ACTIONS(3500), - [anon_sym_BANG] = ACTIONS(3502), - [anon_sym_go] = ACTIONS(1785), - [anon_sym_spawn] = ACTIONS(1785), - [anon_sym_json_DOTdecode] = ACTIONS(1785), - [anon_sym_LBRACK2] = ACTIONS(3504), - [anon_sym_TILDE] = ACTIONS(1785), - [anon_sym_CARET] = ACTIONS(3526), - [anon_sym_AMP] = ACTIONS(3528), - [anon_sym_LT_DASH] = ACTIONS(1785), - [anon_sym_LT_LT] = ACTIONS(3528), - [anon_sym_GT_GT] = ACTIONS(3528), - [anon_sym_GT_GT_GT] = ACTIONS(3528), - [anon_sym_AMP_CARET] = ACTIONS(3528), - [anon_sym_AMP_AMP] = ACTIONS(3532), - [anon_sym_PIPE_PIPE] = ACTIONS(1785), - [anon_sym_or] = ACTIONS(1785), - [sym_none] = ACTIONS(1785), - [sym_true] = ACTIONS(1785), - [sym_false] = ACTIONS(1785), - [sym_nil] = ACTIONS(1785), - [anon_sym_QMARK_DOT] = ACTIONS(3480), - [anon_sym_POUND_LBRACK] = ACTIONS(3504), - [anon_sym_if] = ACTIONS(1785), - [anon_sym_DOLLARif] = ACTIONS(1785), - [anon_sym_is] = ACTIONS(1785), - [anon_sym_BANGis] = ACTIONS(1785), - [anon_sym_in] = ACTIONS(3534), - [anon_sym_BANGin] = ACTIONS(3534), - [anon_sym_match] = ACTIONS(1785), - [anon_sym_select] = ACTIONS(1785), - [anon_sym_lock] = ACTIONS(1785), - [anon_sym_rlock] = ACTIONS(1785), - [anon_sym_unsafe] = ACTIONS(1785), - [anon_sym_sql] = ACTIONS(1785), - [sym_int_literal] = ACTIONS(1785), - [sym_float_literal] = ACTIONS(1785), - [sym_rune_literal] = ACTIONS(1785), - [sym_pseudo_compile_time_identifier] = ACTIONS(1785), - [anon_sym_shared] = ACTIONS(1785), - [anon_sym_map_LBRACK] = ACTIONS(1785), - [anon_sym_chan] = ACTIONS(1785), - [anon_sym_thread] = ACTIONS(1785), - [anon_sym_atomic] = ACTIONS(1785), - [anon_sym_assert] = ACTIONS(1785), - [anon_sym_defer] = ACTIONS(1785), - [anon_sym_goto] = ACTIONS(1785), - [anon_sym_break] = ACTIONS(1785), - [anon_sym_continue] = ACTIONS(1785), - [anon_sym_return] = ACTIONS(1785), - [anon_sym_DOLLARfor] = ACTIONS(1785), - [anon_sym_for] = ACTIONS(1785), - [anon_sym_POUND] = ACTIONS(1785), - [anon_sym_asm] = ACTIONS(1785), - [anon_sym_AT_LBRACK] = ACTIONS(1785), - [sym___double_quote] = ACTIONS(1785), - [sym___single_quote] = ACTIONS(1785), - [sym___c_double_quote] = ACTIONS(1785), - [sym___c_single_quote] = ACTIONS(1785), - [sym___r_double_quote] = ACTIONS(1785), - [sym___r_single_quote] = ACTIONS(1785), + [anon_sym_DOT] = ACTIONS(3486), + [anon_sym_as] = ACTIONS(1765), + [anon_sym_LBRACE] = ACTIONS(1765), + [anon_sym_COMMA] = ACTIONS(1765), + [anon_sym_const] = ACTIONS(1765), + [anon_sym_LPAREN] = ACTIONS(3492), + [anon_sym___global] = ACTIONS(1765), + [anon_sym_type] = ACTIONS(1765), + [anon_sym_PIPE] = ACTIONS(1765), + [anon_sym_fn] = ACTIONS(1765), + [anon_sym_PLUS] = ACTIONS(1765), + [anon_sym_DASH] = ACTIONS(1765), + [anon_sym_STAR] = ACTIONS(3496), + [anon_sym_SLASH] = ACTIONS(3496), + [anon_sym_PERCENT] = ACTIONS(3496), + [anon_sym_LT] = ACTIONS(1765), + [anon_sym_GT] = ACTIONS(1765), + [anon_sym_EQ_EQ] = ACTIONS(1765), + [anon_sym_BANG_EQ] = ACTIONS(1765), + [anon_sym_LT_EQ] = ACTIONS(1765), + [anon_sym_GT_EQ] = ACTIONS(1765), + [anon_sym_LBRACK] = ACTIONS(3500), + [anon_sym_struct] = ACTIONS(1765), + [anon_sym_union] = ACTIONS(1765), + [anon_sym_pub] = ACTIONS(1765), + [anon_sym_mut] = ACTIONS(1765), + [anon_sym_enum] = ACTIONS(1765), + [anon_sym_interface] = ACTIONS(1765), + [anon_sym_PLUS_PLUS] = ACTIONS(1765), + [anon_sym_DASH_DASH] = ACTIONS(1765), + [anon_sym_QMARK] = ACTIONS(3506), + [anon_sym_BANG] = ACTIONS(3508), + [anon_sym_go] = ACTIONS(1765), + [anon_sym_spawn] = ACTIONS(1765), + [anon_sym_json_DOTdecode] = ACTIONS(1765), + [anon_sym_LBRACK2] = ACTIONS(3510), + [anon_sym_TILDE] = ACTIONS(1765), + [anon_sym_CARET] = ACTIONS(1765), + [anon_sym_AMP] = ACTIONS(3496), + [anon_sym_LT_DASH] = ACTIONS(1765), + [anon_sym_LT_LT] = ACTIONS(3496), + [anon_sym_GT_GT] = ACTIONS(3496), + [anon_sym_GT_GT_GT] = ACTIONS(3496), + [anon_sym_AMP_CARET] = ACTIONS(3496), + [anon_sym_AMP_AMP] = ACTIONS(1765), + [anon_sym_PIPE_PIPE] = ACTIONS(1765), + [anon_sym_or] = ACTIONS(1765), + [sym_none] = ACTIONS(1765), + [sym_true] = ACTIONS(1765), + [sym_false] = ACTIONS(1765), + [sym_nil] = ACTIONS(1765), + [anon_sym_QMARK_DOT] = ACTIONS(3486), + [anon_sym_POUND_LBRACK] = ACTIONS(3510), + [anon_sym_if] = ACTIONS(1765), + [anon_sym_DOLLARif] = ACTIONS(1765), + [anon_sym_is] = ACTIONS(1765), + [anon_sym_BANGis] = ACTIONS(1765), + [anon_sym_in] = ACTIONS(1765), + [anon_sym_BANGin] = ACTIONS(1765), + [anon_sym_match] = ACTIONS(1765), + [anon_sym_select] = ACTIONS(1765), + [anon_sym_lock] = ACTIONS(1765), + [anon_sym_rlock] = ACTIONS(1765), + [anon_sym_unsafe] = ACTIONS(1765), + [anon_sym_sql] = ACTIONS(1765), + [sym_int_literal] = ACTIONS(1765), + [sym_float_literal] = ACTIONS(1765), + [sym_rune_literal] = ACTIONS(1765), + [sym_pseudo_compile_time_identifier] = ACTIONS(1765), + [anon_sym_shared] = ACTIONS(1765), + [anon_sym_map_LBRACK] = ACTIONS(1765), + [anon_sym_chan] = ACTIONS(1765), + [anon_sym_thread] = ACTIONS(1765), + [anon_sym_atomic] = ACTIONS(1765), + [anon_sym_assert] = ACTIONS(1765), + [anon_sym_defer] = ACTIONS(1765), + [anon_sym_goto] = ACTIONS(1765), + [anon_sym_break] = ACTIONS(1765), + [anon_sym_continue] = ACTIONS(1765), + [anon_sym_return] = ACTIONS(1765), + [anon_sym_DOLLARfor] = ACTIONS(1765), + [anon_sym_for] = ACTIONS(1765), + [anon_sym_POUND] = ACTIONS(1765), + [anon_sym_asm] = ACTIONS(1765), + [anon_sym_AT_LBRACK] = ACTIONS(1765), + [sym___double_quote] = ACTIONS(1765), + [sym___single_quote] = ACTIONS(1765), + [sym___c_double_quote] = ACTIONS(1765), + [sym___c_single_quote] = ACTIONS(1765), + [sym___r_double_quote] = ACTIONS(1765), + [sym___r_single_quote] = ACTIONS(1765), }, - [967] = { - [sym_line_comment] = STATE(967), - [sym_block_comment] = STATE(967), - [sym_type_parameters] = STATE(4103), - [sym_argument_list] = STATE(1063), - [sym_or_block] = STATE(1069), - [ts_builtin_sym_end] = ACTIONS(3536), - [sym_identifier] = ACTIONS(3538), - [anon_sym_LF] = ACTIONS(3538), - [anon_sym_CR] = ACTIONS(3538), - [anon_sym_CR_LF] = ACTIONS(3538), + [964] = { + [sym_line_comment] = STATE(964), + [sym_block_comment] = STATE(964), + [sym_type_parameters] = STATE(4189), + [sym_argument_list] = STATE(1068), + [sym_or_block] = STATE(1064), + [ts_builtin_sym_end] = ACTIONS(3526), + [sym_identifier] = ACTIONS(3528), + [anon_sym_LF] = ACTIONS(3528), + [anon_sym_CR] = ACTIONS(3528), + [anon_sym_CR_LF] = ACTIONS(3528), [anon_sym_SLASH_SLASH] = ACTIONS(497), [anon_sym_SLASH_STAR] = ACTIONS(499), - [anon_sym_DOT] = ACTIONS(3480), - [anon_sym_as] = ACTIONS(3482), - [anon_sym_LBRACE] = ACTIONS(3538), - [anon_sym_const] = ACTIONS(3538), - [anon_sym_LPAREN] = ACTIONS(3486), - [anon_sym___global] = ACTIONS(3538), - [anon_sym_type] = ACTIONS(3538), - [anon_sym_PIPE] = ACTIONS(3526), - [anon_sym_fn] = ACTIONS(3538), - [anon_sym_PLUS] = ACTIONS(3526), - [anon_sym_DASH] = ACTIONS(3526), - [anon_sym_STAR] = ACTIONS(3528), - [anon_sym_SLASH] = ACTIONS(3528), - [anon_sym_PERCENT] = ACTIONS(3528), - [anon_sym_LT] = ACTIONS(3530), - [anon_sym_GT] = ACTIONS(3530), - [anon_sym_EQ_EQ] = ACTIONS(3530), - [anon_sym_BANG_EQ] = ACTIONS(3530), - [anon_sym_LT_EQ] = ACTIONS(3530), - [anon_sym_GT_EQ] = ACTIONS(3530), - [anon_sym_LBRACK] = ACTIONS(3494), - [anon_sym_struct] = ACTIONS(3538), - [anon_sym_union] = ACTIONS(3538), - [anon_sym_pub] = ACTIONS(3538), - [anon_sym_mut] = ACTIONS(3538), - [anon_sym_enum] = ACTIONS(3538), - [anon_sym_interface] = ACTIONS(3538), - [anon_sym_PLUS_PLUS] = ACTIONS(3496), - [anon_sym_DASH_DASH] = ACTIONS(3498), - [anon_sym_QMARK] = ACTIONS(3500), - [anon_sym_BANG] = ACTIONS(3502), - [anon_sym_go] = ACTIONS(3538), - [anon_sym_spawn] = ACTIONS(3538), - [anon_sym_json_DOTdecode] = ACTIONS(3538), - [anon_sym_LBRACK2] = ACTIONS(3504), - [anon_sym_TILDE] = ACTIONS(3538), - [anon_sym_CARET] = ACTIONS(3526), - [anon_sym_AMP] = ACTIONS(3528), - [anon_sym_LT_DASH] = ACTIONS(3538), - [anon_sym_LT_LT] = ACTIONS(3528), - [anon_sym_GT_GT] = ACTIONS(3528), - [anon_sym_GT_GT_GT] = ACTIONS(3528), - [anon_sym_AMP_CARET] = ACTIONS(3528), - [anon_sym_AMP_AMP] = ACTIONS(3532), - [anon_sym_PIPE_PIPE] = ACTIONS(3540), - [anon_sym_or] = ACTIONS(3510), - [sym_none] = ACTIONS(3538), - [sym_true] = ACTIONS(3538), - [sym_false] = ACTIONS(3538), - [sym_nil] = ACTIONS(3538), - [anon_sym_QMARK_DOT] = ACTIONS(3480), - [anon_sym_POUND_LBRACK] = ACTIONS(3504), - [anon_sym_if] = ACTIONS(3538), - [anon_sym_DOLLARif] = ACTIONS(3538), - [anon_sym_is] = ACTIONS(3512), - [anon_sym_BANGis] = ACTIONS(3512), - [anon_sym_in] = ACTIONS(3534), - [anon_sym_BANGin] = ACTIONS(3534), - [anon_sym_match] = ACTIONS(3538), - [anon_sym_select] = ACTIONS(3538), - [anon_sym_lock] = ACTIONS(3538), - [anon_sym_rlock] = ACTIONS(3538), - [anon_sym_unsafe] = ACTIONS(3538), - [anon_sym_sql] = ACTIONS(3538), - [sym_int_literal] = ACTIONS(3538), - [sym_float_literal] = ACTIONS(3538), - [sym_rune_literal] = ACTIONS(3538), - [sym_pseudo_compile_time_identifier] = ACTIONS(3538), - [anon_sym_shared] = ACTIONS(3538), - [anon_sym_map_LBRACK] = ACTIONS(3538), - [anon_sym_chan] = ACTIONS(3538), - [anon_sym_thread] = ACTIONS(3538), - [anon_sym_atomic] = ACTIONS(3538), - [anon_sym_assert] = ACTIONS(3538), - [anon_sym_defer] = ACTIONS(3538), - [anon_sym_goto] = ACTIONS(3538), - [anon_sym_break] = ACTIONS(3538), - [anon_sym_continue] = ACTIONS(3538), - [anon_sym_return] = ACTIONS(3538), - [anon_sym_DOLLARfor] = ACTIONS(3538), - [anon_sym_for] = ACTIONS(3538), - [anon_sym_POUND] = ACTIONS(3538), - [anon_sym_asm] = ACTIONS(3538), - [anon_sym_AT_LBRACK] = ACTIONS(3538), - [sym___double_quote] = ACTIONS(3538), - [sym___single_quote] = ACTIONS(3538), - [sym___c_double_quote] = ACTIONS(3538), - [sym___c_single_quote] = ACTIONS(3538), - [sym___r_double_quote] = ACTIONS(3538), - [sym___r_single_quote] = ACTIONS(3538), + [anon_sym_DOT] = ACTIONS(3486), + [anon_sym_as] = ACTIONS(3488), + [anon_sym_LBRACE] = ACTIONS(3528), + [anon_sym_COMMA] = ACTIONS(3530), + [anon_sym_const] = ACTIONS(3528), + [anon_sym_LPAREN] = ACTIONS(3492), + [anon_sym___global] = ACTIONS(3528), + [anon_sym_type] = ACTIONS(3528), + [anon_sym_PIPE] = ACTIONS(3494), + [anon_sym_fn] = ACTIONS(3528), + [anon_sym_PLUS] = ACTIONS(3494), + [anon_sym_DASH] = ACTIONS(3494), + [anon_sym_STAR] = ACTIONS(3496), + [anon_sym_SLASH] = ACTIONS(3496), + [anon_sym_PERCENT] = ACTIONS(3496), + [anon_sym_LT] = ACTIONS(3498), + [anon_sym_GT] = ACTIONS(3498), + [anon_sym_EQ_EQ] = ACTIONS(3498), + [anon_sym_BANG_EQ] = ACTIONS(3498), + [anon_sym_LT_EQ] = ACTIONS(3498), + [anon_sym_GT_EQ] = ACTIONS(3498), + [anon_sym_LBRACK] = ACTIONS(3500), + [anon_sym_struct] = ACTIONS(3528), + [anon_sym_union] = ACTIONS(3528), + [anon_sym_pub] = ACTIONS(3528), + [anon_sym_mut] = ACTIONS(3528), + [anon_sym_enum] = ACTIONS(3528), + [anon_sym_interface] = ACTIONS(3528), + [anon_sym_PLUS_PLUS] = ACTIONS(3502), + [anon_sym_DASH_DASH] = ACTIONS(3504), + [anon_sym_QMARK] = ACTIONS(3506), + [anon_sym_BANG] = ACTIONS(3508), + [anon_sym_go] = ACTIONS(3528), + [anon_sym_spawn] = ACTIONS(3528), + [anon_sym_json_DOTdecode] = ACTIONS(3528), + [anon_sym_LBRACK2] = ACTIONS(3510), + [anon_sym_TILDE] = ACTIONS(3528), + [anon_sym_CARET] = ACTIONS(3494), + [anon_sym_AMP] = ACTIONS(3496), + [anon_sym_LT_DASH] = ACTIONS(3528), + [anon_sym_LT_LT] = ACTIONS(3496), + [anon_sym_GT_GT] = ACTIONS(3496), + [anon_sym_GT_GT_GT] = ACTIONS(3496), + [anon_sym_AMP_CARET] = ACTIONS(3496), + [anon_sym_AMP_AMP] = ACTIONS(3512), + [anon_sym_PIPE_PIPE] = ACTIONS(3514), + [anon_sym_or] = ACTIONS(3516), + [sym_none] = ACTIONS(3528), + [sym_true] = ACTIONS(3528), + [sym_false] = ACTIONS(3528), + [sym_nil] = ACTIONS(3528), + [anon_sym_QMARK_DOT] = ACTIONS(3486), + [anon_sym_POUND_LBRACK] = ACTIONS(3510), + [anon_sym_if] = ACTIONS(3528), + [anon_sym_DOLLARif] = ACTIONS(3528), + [anon_sym_is] = ACTIONS(3518), + [anon_sym_BANGis] = ACTIONS(3518), + [anon_sym_in] = ACTIONS(3520), + [anon_sym_BANGin] = ACTIONS(3520), + [anon_sym_match] = ACTIONS(3528), + [anon_sym_select] = ACTIONS(3528), + [anon_sym_lock] = ACTIONS(3528), + [anon_sym_rlock] = ACTIONS(3528), + [anon_sym_unsafe] = ACTIONS(3528), + [anon_sym_sql] = ACTIONS(3528), + [sym_int_literal] = ACTIONS(3528), + [sym_float_literal] = ACTIONS(3528), + [sym_rune_literal] = ACTIONS(3528), + [sym_pseudo_compile_time_identifier] = ACTIONS(3528), + [anon_sym_shared] = ACTIONS(3528), + [anon_sym_map_LBRACK] = ACTIONS(3528), + [anon_sym_chan] = ACTIONS(3528), + [anon_sym_thread] = ACTIONS(3528), + [anon_sym_atomic] = ACTIONS(3528), + [anon_sym_assert] = ACTIONS(3528), + [anon_sym_defer] = ACTIONS(3528), + [anon_sym_goto] = ACTIONS(3528), + [anon_sym_break] = ACTIONS(3528), + [anon_sym_continue] = ACTIONS(3528), + [anon_sym_return] = ACTIONS(3528), + [anon_sym_DOLLARfor] = ACTIONS(3528), + [anon_sym_for] = ACTIONS(3528), + [anon_sym_POUND] = ACTIONS(3528), + [anon_sym_asm] = ACTIONS(3528), + [anon_sym_AT_LBRACK] = ACTIONS(3528), + [sym___double_quote] = ACTIONS(3528), + [sym___single_quote] = ACTIONS(3528), + [sym___c_double_quote] = ACTIONS(3528), + [sym___c_single_quote] = ACTIONS(3528), + [sym___r_double_quote] = ACTIONS(3528), + [sym___r_single_quote] = ACTIONS(3528), }, - [968] = { - [sym_line_comment] = STATE(968), - [sym_block_comment] = STATE(968), - [sym_type_parameters] = STATE(4103), - [sym_argument_list] = STATE(1063), - [sym_or_block] = STATE(1069), - [ts_builtin_sym_end] = ACTIONS(1783), - [sym_identifier] = ACTIONS(1785), - [anon_sym_LF] = ACTIONS(1785), - [anon_sym_CR] = ACTIONS(1785), - [anon_sym_CR_LF] = ACTIONS(1785), + [965] = { + [sym_line_comment] = STATE(965), + [sym_block_comment] = STATE(965), + [sym_type_parameters] = STATE(4189), + [sym_argument_list] = STATE(1068), + [sym_or_block] = STATE(1064), + [ts_builtin_sym_end] = ACTIONS(1767), + [sym_identifier] = ACTIONS(1769), + [anon_sym_LF] = ACTIONS(1769), + [anon_sym_CR] = ACTIONS(1769), + [anon_sym_CR_LF] = ACTIONS(1769), [anon_sym_SLASH_SLASH] = ACTIONS(497), [anon_sym_SLASH_STAR] = ACTIONS(499), - [anon_sym_DOT] = ACTIONS(3480), - [anon_sym_as] = ACTIONS(1785), - [anon_sym_LBRACE] = ACTIONS(1785), - [anon_sym_const] = ACTIONS(1785), - [anon_sym_LPAREN] = ACTIONS(3486), - [anon_sym___global] = ACTIONS(1785), - [anon_sym_type] = ACTIONS(1785), - [anon_sym_PIPE] = ACTIONS(3526), - [anon_sym_fn] = ACTIONS(1785), - [anon_sym_PLUS] = ACTIONS(3526), - [anon_sym_DASH] = ACTIONS(3526), - [anon_sym_STAR] = ACTIONS(3528), - [anon_sym_SLASH] = ACTIONS(3528), - [anon_sym_PERCENT] = ACTIONS(3528), - [anon_sym_LT] = ACTIONS(1785), - [anon_sym_GT] = ACTIONS(1785), - [anon_sym_EQ_EQ] = ACTIONS(1785), - [anon_sym_BANG_EQ] = ACTIONS(1785), - [anon_sym_LT_EQ] = ACTIONS(1785), - [anon_sym_GT_EQ] = ACTIONS(1785), - [anon_sym_LBRACK] = ACTIONS(3494), - [anon_sym_struct] = ACTIONS(1785), - [anon_sym_union] = ACTIONS(1785), - [anon_sym_pub] = ACTIONS(1785), - [anon_sym_mut] = ACTIONS(1785), - [anon_sym_enum] = ACTIONS(1785), - [anon_sym_interface] = ACTIONS(1785), - [anon_sym_PLUS_PLUS] = ACTIONS(1785), - [anon_sym_DASH_DASH] = ACTIONS(1785), - [anon_sym_QMARK] = ACTIONS(3500), - [anon_sym_BANG] = ACTIONS(3502), - [anon_sym_go] = ACTIONS(1785), - [anon_sym_spawn] = ACTIONS(1785), - [anon_sym_json_DOTdecode] = ACTIONS(1785), - [anon_sym_LBRACK2] = ACTIONS(3504), - [anon_sym_TILDE] = ACTIONS(1785), - [anon_sym_CARET] = ACTIONS(3526), - [anon_sym_AMP] = ACTIONS(3528), - [anon_sym_LT_DASH] = ACTIONS(1785), - [anon_sym_LT_LT] = ACTIONS(3528), - [anon_sym_GT_GT] = ACTIONS(3528), - [anon_sym_GT_GT_GT] = ACTIONS(3528), - [anon_sym_AMP_CARET] = ACTIONS(3528), - [anon_sym_AMP_AMP] = ACTIONS(1785), - [anon_sym_PIPE_PIPE] = ACTIONS(1785), - [anon_sym_or] = ACTIONS(1785), - [sym_none] = ACTIONS(1785), - [sym_true] = ACTIONS(1785), - [sym_false] = ACTIONS(1785), - [sym_nil] = ACTIONS(1785), - [anon_sym_QMARK_DOT] = ACTIONS(3480), - [anon_sym_POUND_LBRACK] = ACTIONS(3504), - [anon_sym_if] = ACTIONS(1785), - [anon_sym_DOLLARif] = ACTIONS(1785), - [anon_sym_is] = ACTIONS(1785), - [anon_sym_BANGis] = ACTIONS(1785), - [anon_sym_in] = ACTIONS(1785), - [anon_sym_BANGin] = ACTIONS(1785), - [anon_sym_match] = ACTIONS(1785), - [anon_sym_select] = ACTIONS(1785), - [anon_sym_lock] = ACTIONS(1785), - [anon_sym_rlock] = ACTIONS(1785), - [anon_sym_unsafe] = ACTIONS(1785), - [anon_sym_sql] = ACTIONS(1785), - [sym_int_literal] = ACTIONS(1785), - [sym_float_literal] = ACTIONS(1785), - [sym_rune_literal] = ACTIONS(1785), - [sym_pseudo_compile_time_identifier] = ACTIONS(1785), - [anon_sym_shared] = ACTIONS(1785), - [anon_sym_map_LBRACK] = ACTIONS(1785), - [anon_sym_chan] = ACTIONS(1785), - [anon_sym_thread] = ACTIONS(1785), - [anon_sym_atomic] = ACTIONS(1785), - [anon_sym_assert] = ACTIONS(1785), - [anon_sym_defer] = ACTIONS(1785), - [anon_sym_goto] = ACTIONS(1785), - [anon_sym_break] = ACTIONS(1785), - [anon_sym_continue] = ACTIONS(1785), - [anon_sym_return] = ACTIONS(1785), - [anon_sym_DOLLARfor] = ACTIONS(1785), - [anon_sym_for] = ACTIONS(1785), - [anon_sym_POUND] = ACTIONS(1785), - [anon_sym_asm] = ACTIONS(1785), - [anon_sym_AT_LBRACK] = ACTIONS(1785), - [sym___double_quote] = ACTIONS(1785), - [sym___single_quote] = ACTIONS(1785), - [sym___c_double_quote] = ACTIONS(1785), - [sym___c_single_quote] = ACTIONS(1785), - [sym___r_double_quote] = ACTIONS(1785), - [sym___r_single_quote] = ACTIONS(1785), + [anon_sym_DOT] = ACTIONS(3486), + [anon_sym_as] = ACTIONS(1769), + [anon_sym_LBRACE] = ACTIONS(1769), + [anon_sym_COMMA] = ACTIONS(1769), + [anon_sym_const] = ACTIONS(1769), + [anon_sym_LPAREN] = ACTIONS(3492), + [anon_sym___global] = ACTIONS(1769), + [anon_sym_type] = ACTIONS(1769), + [anon_sym_PIPE] = ACTIONS(1769), + [anon_sym_fn] = ACTIONS(1769), + [anon_sym_PLUS] = ACTIONS(1769), + [anon_sym_DASH] = ACTIONS(1769), + [anon_sym_STAR] = ACTIONS(1769), + [anon_sym_SLASH] = ACTIONS(1769), + [anon_sym_PERCENT] = ACTIONS(1769), + [anon_sym_LT] = ACTIONS(1769), + [anon_sym_GT] = ACTIONS(1769), + [anon_sym_EQ_EQ] = ACTIONS(1769), + [anon_sym_BANG_EQ] = ACTIONS(1769), + [anon_sym_LT_EQ] = ACTIONS(1769), + [anon_sym_GT_EQ] = ACTIONS(1769), + [anon_sym_LBRACK] = ACTIONS(3500), + [anon_sym_struct] = ACTIONS(1769), + [anon_sym_union] = ACTIONS(1769), + [anon_sym_pub] = ACTIONS(1769), + [anon_sym_mut] = ACTIONS(1769), + [anon_sym_enum] = ACTIONS(1769), + [anon_sym_interface] = ACTIONS(1769), + [anon_sym_PLUS_PLUS] = ACTIONS(1769), + [anon_sym_DASH_DASH] = ACTIONS(1769), + [anon_sym_QMARK] = ACTIONS(3506), + [anon_sym_BANG] = ACTIONS(3508), + [anon_sym_go] = ACTIONS(1769), + [anon_sym_spawn] = ACTIONS(1769), + [anon_sym_json_DOTdecode] = ACTIONS(1769), + [anon_sym_LBRACK2] = ACTIONS(3510), + [anon_sym_TILDE] = ACTIONS(1769), + [anon_sym_CARET] = ACTIONS(1769), + [anon_sym_AMP] = ACTIONS(1769), + [anon_sym_LT_DASH] = ACTIONS(1769), + [anon_sym_LT_LT] = ACTIONS(1769), + [anon_sym_GT_GT] = ACTIONS(1769), + [anon_sym_GT_GT_GT] = ACTIONS(1769), + [anon_sym_AMP_CARET] = ACTIONS(1769), + [anon_sym_AMP_AMP] = ACTIONS(1769), + [anon_sym_PIPE_PIPE] = ACTIONS(1769), + [anon_sym_or] = ACTIONS(1769), + [sym_none] = ACTIONS(1769), + [sym_true] = ACTIONS(1769), + [sym_false] = ACTIONS(1769), + [sym_nil] = ACTIONS(1769), + [anon_sym_QMARK_DOT] = ACTIONS(3486), + [anon_sym_POUND_LBRACK] = ACTIONS(3510), + [anon_sym_if] = ACTIONS(1769), + [anon_sym_DOLLARif] = ACTIONS(1769), + [anon_sym_is] = ACTIONS(1769), + [anon_sym_BANGis] = ACTIONS(1769), + [anon_sym_in] = ACTIONS(1769), + [anon_sym_BANGin] = ACTIONS(1769), + [anon_sym_match] = ACTIONS(1769), + [anon_sym_select] = ACTIONS(1769), + [anon_sym_lock] = ACTIONS(1769), + [anon_sym_rlock] = ACTIONS(1769), + [anon_sym_unsafe] = ACTIONS(1769), + [anon_sym_sql] = ACTIONS(1769), + [sym_int_literal] = ACTIONS(1769), + [sym_float_literal] = ACTIONS(1769), + [sym_rune_literal] = ACTIONS(1769), + [sym_pseudo_compile_time_identifier] = ACTIONS(1769), + [anon_sym_shared] = ACTIONS(1769), + [anon_sym_map_LBRACK] = ACTIONS(1769), + [anon_sym_chan] = ACTIONS(1769), + [anon_sym_thread] = ACTIONS(1769), + [anon_sym_atomic] = ACTIONS(1769), + [anon_sym_assert] = ACTIONS(1769), + [anon_sym_defer] = ACTIONS(1769), + [anon_sym_goto] = ACTIONS(1769), + [anon_sym_break] = ACTIONS(1769), + [anon_sym_continue] = ACTIONS(1769), + [anon_sym_return] = ACTIONS(1769), + [anon_sym_DOLLARfor] = ACTIONS(1769), + [anon_sym_for] = ACTIONS(1769), + [anon_sym_POUND] = ACTIONS(1769), + [anon_sym_asm] = ACTIONS(1769), + [anon_sym_AT_LBRACK] = ACTIONS(1769), + [sym___double_quote] = ACTIONS(1769), + [sym___single_quote] = ACTIONS(1769), + [sym___c_double_quote] = ACTIONS(1769), + [sym___c_single_quote] = ACTIONS(1769), + [sym___r_double_quote] = ACTIONS(1769), + [sym___r_single_quote] = ACTIONS(1769), }, - [969] = { - [sym_line_comment] = STATE(969), - [sym_block_comment] = STATE(969), - [sym_else_branch] = STATE(1051), + [966] = { + [sym_line_comment] = STATE(966), + [sym_block_comment] = STATE(966), + [sym_type_parameters] = STATE(4189), + [sym_argument_list] = STATE(1068), + [sym_or_block] = STATE(1064), + [ts_builtin_sym_end] = ACTIONS(1793), + [sym_identifier] = ACTIONS(1795), + [anon_sym_LF] = ACTIONS(1795), + [anon_sym_CR] = ACTIONS(1795), + [anon_sym_CR_LF] = ACTIONS(1795), + [anon_sym_SLASH_SLASH] = ACTIONS(497), + [anon_sym_SLASH_STAR] = ACTIONS(499), + [anon_sym_DOT] = ACTIONS(3486), + [anon_sym_as] = ACTIONS(3488), + [anon_sym_LBRACE] = ACTIONS(1795), + [anon_sym_COMMA] = ACTIONS(1795), + [anon_sym_const] = ACTIONS(1795), + [anon_sym_LPAREN] = ACTIONS(3492), + [anon_sym___global] = ACTIONS(1795), + [anon_sym_type] = ACTIONS(1795), + [anon_sym_PIPE] = ACTIONS(3494), + [anon_sym_fn] = ACTIONS(1795), + [anon_sym_PLUS] = ACTIONS(3494), + [anon_sym_DASH] = ACTIONS(3494), + [anon_sym_STAR] = ACTIONS(3496), + [anon_sym_SLASH] = ACTIONS(3496), + [anon_sym_PERCENT] = ACTIONS(3496), + [anon_sym_LT] = ACTIONS(3498), + [anon_sym_GT] = ACTIONS(3498), + [anon_sym_EQ_EQ] = ACTIONS(3498), + [anon_sym_BANG_EQ] = ACTIONS(3498), + [anon_sym_LT_EQ] = ACTIONS(3498), + [anon_sym_GT_EQ] = ACTIONS(3498), + [anon_sym_LBRACK] = ACTIONS(3500), + [anon_sym_struct] = ACTIONS(1795), + [anon_sym_union] = ACTIONS(1795), + [anon_sym_pub] = ACTIONS(1795), + [anon_sym_mut] = ACTIONS(1795), + [anon_sym_enum] = ACTIONS(1795), + [anon_sym_interface] = ACTIONS(1795), + [anon_sym_PLUS_PLUS] = ACTIONS(3502), + [anon_sym_DASH_DASH] = ACTIONS(3504), + [anon_sym_QMARK] = ACTIONS(3506), + [anon_sym_BANG] = ACTIONS(3508), + [anon_sym_go] = ACTIONS(1795), + [anon_sym_spawn] = ACTIONS(1795), + [anon_sym_json_DOTdecode] = ACTIONS(1795), + [anon_sym_LBRACK2] = ACTIONS(3510), + [anon_sym_TILDE] = ACTIONS(1795), + [anon_sym_CARET] = ACTIONS(3494), + [anon_sym_AMP] = ACTIONS(3496), + [anon_sym_LT_DASH] = ACTIONS(1795), + [anon_sym_LT_LT] = ACTIONS(3496), + [anon_sym_GT_GT] = ACTIONS(3496), + [anon_sym_GT_GT_GT] = ACTIONS(3496), + [anon_sym_AMP_CARET] = ACTIONS(3496), + [anon_sym_AMP_AMP] = ACTIONS(3512), + [anon_sym_PIPE_PIPE] = ACTIONS(3514), + [anon_sym_or] = ACTIONS(3516), + [sym_none] = ACTIONS(1795), + [sym_true] = ACTIONS(1795), + [sym_false] = ACTIONS(1795), + [sym_nil] = ACTIONS(1795), + [anon_sym_QMARK_DOT] = ACTIONS(3486), + [anon_sym_POUND_LBRACK] = ACTIONS(3510), + [anon_sym_if] = ACTIONS(1795), + [anon_sym_DOLLARif] = ACTIONS(1795), + [anon_sym_is] = ACTIONS(3518), + [anon_sym_BANGis] = ACTIONS(3518), + [anon_sym_in] = ACTIONS(3520), + [anon_sym_BANGin] = ACTIONS(3520), + [anon_sym_match] = ACTIONS(1795), + [anon_sym_select] = ACTIONS(1795), + [anon_sym_lock] = ACTIONS(1795), + [anon_sym_rlock] = ACTIONS(1795), + [anon_sym_unsafe] = ACTIONS(1795), + [anon_sym_sql] = ACTIONS(1795), + [sym_int_literal] = ACTIONS(1795), + [sym_float_literal] = ACTIONS(1795), + [sym_rune_literal] = ACTIONS(1795), + [sym_pseudo_compile_time_identifier] = ACTIONS(1795), + [anon_sym_shared] = ACTIONS(1795), + [anon_sym_map_LBRACK] = ACTIONS(1795), + [anon_sym_chan] = ACTIONS(1795), + [anon_sym_thread] = ACTIONS(1795), + [anon_sym_atomic] = ACTIONS(1795), + [anon_sym_assert] = ACTIONS(1795), + [anon_sym_defer] = ACTIONS(1795), + [anon_sym_goto] = ACTIONS(1795), + [anon_sym_break] = ACTIONS(1795), + [anon_sym_continue] = ACTIONS(1795), + [anon_sym_return] = ACTIONS(1795), + [anon_sym_DOLLARfor] = ACTIONS(1795), + [anon_sym_for] = ACTIONS(1795), + [anon_sym_POUND] = ACTIONS(1795), + [anon_sym_asm] = ACTIONS(1795), + [anon_sym_AT_LBRACK] = ACTIONS(1795), + [sym___double_quote] = ACTIONS(1795), + [sym___single_quote] = ACTIONS(1795), + [sym___c_double_quote] = ACTIONS(1795), + [sym___c_single_quote] = ACTIONS(1795), + [sym___r_double_quote] = ACTIONS(1795), + [sym___r_single_quote] = ACTIONS(1795), + }, + [967] = { + [sym_line_comment] = STATE(967), + [sym_block_comment] = STATE(967), + [sym_else_branch] = STATE(1008), [ts_builtin_sym_end] = ACTIONS(1803), [sym_identifier] = ACTIONS(1805), [anon_sym_LF] = ACTIONS(1805), @@ -134189,7 +134011,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_QMARK_DOT] = ACTIONS(1805), [anon_sym_POUND_LBRACK] = ACTIONS(1805), [anon_sym_if] = ACTIONS(1805), - [anon_sym_else] = ACTIONS(3542), + [anon_sym_else] = ACTIONS(3532), [anon_sym_DOLLARif] = ACTIONS(1805), [anon_sym_is] = ACTIONS(1805), [anon_sym_BANGis] = ACTIONS(1805), @@ -134228,220 +134050,220 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym___r_double_quote] = ACTIONS(1805), [sym___r_single_quote] = ACTIONS(1805), }, - [970] = { - [sym_line_comment] = STATE(970), - [sym_block_comment] = STATE(970), - [sym_else_branch] = STATE(1052), - [ts_builtin_sym_end] = ACTIONS(1797), - [sym_identifier] = ACTIONS(1799), - [anon_sym_LF] = ACTIONS(1799), - [anon_sym_CR] = ACTIONS(1799), - [anon_sym_CR_LF] = ACTIONS(1799), + [968] = { + [sym_line_comment] = STATE(968), + [sym_block_comment] = STATE(968), + [sym_type_parameters] = STATE(4189), + [sym_argument_list] = STATE(1068), + [sym_or_block] = STATE(1064), + [ts_builtin_sym_end] = ACTIONS(1763), + [sym_identifier] = ACTIONS(1765), + [anon_sym_LF] = ACTIONS(1765), + [anon_sym_CR] = ACTIONS(1765), + [anon_sym_CR_LF] = ACTIONS(1765), [anon_sym_SLASH_SLASH] = ACTIONS(497), [anon_sym_SLASH_STAR] = ACTIONS(499), - [anon_sym_DOT] = ACTIONS(1799), - [anon_sym_as] = ACTIONS(1799), - [anon_sym_LBRACE] = ACTIONS(1799), - [anon_sym_COMMA] = ACTIONS(1799), - [anon_sym_const] = ACTIONS(1799), - [anon_sym_LPAREN] = ACTIONS(1799), - [anon_sym___global] = ACTIONS(1799), - [anon_sym_type] = ACTIONS(1799), - [anon_sym_PIPE] = ACTIONS(1799), - [anon_sym_fn] = ACTIONS(1799), - [anon_sym_PLUS] = ACTIONS(1799), - [anon_sym_DASH] = ACTIONS(1799), - [anon_sym_STAR] = ACTIONS(1799), - [anon_sym_SLASH] = ACTIONS(1799), - [anon_sym_PERCENT] = ACTIONS(1799), - [anon_sym_LT] = ACTIONS(1799), - [anon_sym_GT] = ACTIONS(1799), - [anon_sym_EQ_EQ] = ACTIONS(1799), - [anon_sym_BANG_EQ] = ACTIONS(1799), - [anon_sym_LT_EQ] = ACTIONS(1799), - [anon_sym_GT_EQ] = ACTIONS(1799), - [anon_sym_LBRACK] = ACTIONS(1797), - [anon_sym_struct] = ACTIONS(1799), - [anon_sym_union] = ACTIONS(1799), - [anon_sym_pub] = ACTIONS(1799), - [anon_sym_mut] = ACTIONS(1799), - [anon_sym_enum] = ACTIONS(1799), - [anon_sym_interface] = ACTIONS(1799), - [anon_sym_PLUS_PLUS] = ACTIONS(1799), - [anon_sym_DASH_DASH] = ACTIONS(1799), - [anon_sym_QMARK] = ACTIONS(1799), - [anon_sym_BANG] = ACTIONS(1799), - [anon_sym_go] = ACTIONS(1799), - [anon_sym_spawn] = ACTIONS(1799), - [anon_sym_json_DOTdecode] = ACTIONS(1799), - [anon_sym_LBRACK2] = ACTIONS(1799), - [anon_sym_TILDE] = ACTIONS(1799), - [anon_sym_CARET] = ACTIONS(1799), - [anon_sym_AMP] = ACTIONS(1799), - [anon_sym_LT_DASH] = ACTIONS(1799), - [anon_sym_LT_LT] = ACTIONS(1799), - [anon_sym_GT_GT] = ACTIONS(1799), - [anon_sym_GT_GT_GT] = ACTIONS(1799), - [anon_sym_AMP_CARET] = ACTIONS(1799), - [anon_sym_AMP_AMP] = ACTIONS(1799), - [anon_sym_PIPE_PIPE] = ACTIONS(1799), - [anon_sym_or] = ACTIONS(1799), - [sym_none] = ACTIONS(1799), - [sym_true] = ACTIONS(1799), - [sym_false] = ACTIONS(1799), - [sym_nil] = ACTIONS(1799), - [anon_sym_QMARK_DOT] = ACTIONS(1799), - [anon_sym_POUND_LBRACK] = ACTIONS(1799), - [anon_sym_if] = ACTIONS(1799), - [anon_sym_else] = ACTIONS(3542), - [anon_sym_DOLLARif] = ACTIONS(1799), - [anon_sym_is] = ACTIONS(1799), - [anon_sym_BANGis] = ACTIONS(1799), - [anon_sym_in] = ACTIONS(1799), - [anon_sym_BANGin] = ACTIONS(1799), - [anon_sym_match] = ACTIONS(1799), - [anon_sym_select] = ACTIONS(1799), - [anon_sym_lock] = ACTIONS(1799), - [anon_sym_rlock] = ACTIONS(1799), - [anon_sym_unsafe] = ACTIONS(1799), - [anon_sym_sql] = ACTIONS(1799), - [sym_int_literal] = ACTIONS(1799), - [sym_float_literal] = ACTIONS(1799), - [sym_rune_literal] = ACTIONS(1799), - [sym_pseudo_compile_time_identifier] = ACTIONS(1799), - [anon_sym_shared] = ACTIONS(1799), - [anon_sym_map_LBRACK] = ACTIONS(1799), - [anon_sym_chan] = ACTIONS(1799), - [anon_sym_thread] = ACTIONS(1799), - [anon_sym_atomic] = ACTIONS(1799), - [anon_sym_assert] = ACTIONS(1799), - [anon_sym_defer] = ACTIONS(1799), - [anon_sym_goto] = ACTIONS(1799), - [anon_sym_break] = ACTIONS(1799), - [anon_sym_continue] = ACTIONS(1799), - [anon_sym_return] = ACTIONS(1799), - [anon_sym_DOLLARfor] = ACTIONS(1799), - [anon_sym_for] = ACTIONS(1799), - [anon_sym_POUND] = ACTIONS(1799), - [anon_sym_asm] = ACTIONS(1799), - [anon_sym_AT_LBRACK] = ACTIONS(1799), - [sym___double_quote] = ACTIONS(1799), - [sym___single_quote] = ACTIONS(1799), - [sym___c_double_quote] = ACTIONS(1799), - [sym___c_single_quote] = ACTIONS(1799), - [sym___r_double_quote] = ACTIONS(1799), - [sym___r_single_quote] = ACTIONS(1799), + [anon_sym_DOT] = ACTIONS(3486), + [anon_sym_as] = ACTIONS(1765), + [anon_sym_LBRACE] = ACTIONS(1765), + [anon_sym_const] = ACTIONS(1765), + [anon_sym_LPAREN] = ACTIONS(3492), + [anon_sym___global] = ACTIONS(1765), + [anon_sym_type] = ACTIONS(1765), + [anon_sym_PIPE] = ACTIONS(3534), + [anon_sym_fn] = ACTIONS(1765), + [anon_sym_PLUS] = ACTIONS(3534), + [anon_sym_DASH] = ACTIONS(3534), + [anon_sym_STAR] = ACTIONS(3536), + [anon_sym_SLASH] = ACTIONS(3536), + [anon_sym_PERCENT] = ACTIONS(3536), + [anon_sym_LT] = ACTIONS(3538), + [anon_sym_GT] = ACTIONS(3538), + [anon_sym_EQ_EQ] = ACTIONS(3538), + [anon_sym_BANG_EQ] = ACTIONS(3538), + [anon_sym_LT_EQ] = ACTIONS(3538), + [anon_sym_GT_EQ] = ACTIONS(3538), + [anon_sym_LBRACK] = ACTIONS(3500), + [anon_sym_struct] = ACTIONS(1765), + [anon_sym_union] = ACTIONS(1765), + [anon_sym_pub] = ACTIONS(1765), + [anon_sym_mut] = ACTIONS(1765), + [anon_sym_enum] = ACTIONS(1765), + [anon_sym_interface] = ACTIONS(1765), + [anon_sym_PLUS_PLUS] = ACTIONS(1765), + [anon_sym_DASH_DASH] = ACTIONS(1765), + [anon_sym_QMARK] = ACTIONS(3506), + [anon_sym_BANG] = ACTIONS(3508), + [anon_sym_go] = ACTIONS(1765), + [anon_sym_spawn] = ACTIONS(1765), + [anon_sym_json_DOTdecode] = ACTIONS(1765), + [anon_sym_LBRACK2] = ACTIONS(3510), + [anon_sym_TILDE] = ACTIONS(1765), + [anon_sym_CARET] = ACTIONS(3534), + [anon_sym_AMP] = ACTIONS(3536), + [anon_sym_LT_DASH] = ACTIONS(1765), + [anon_sym_LT_LT] = ACTIONS(3536), + [anon_sym_GT_GT] = ACTIONS(3536), + [anon_sym_GT_GT_GT] = ACTIONS(3536), + [anon_sym_AMP_CARET] = ACTIONS(3536), + [anon_sym_AMP_AMP] = ACTIONS(3540), + [anon_sym_PIPE_PIPE] = ACTIONS(1765), + [anon_sym_or] = ACTIONS(1765), + [sym_none] = ACTIONS(1765), + [sym_true] = ACTIONS(1765), + [sym_false] = ACTIONS(1765), + [sym_nil] = ACTIONS(1765), + [anon_sym_QMARK_DOT] = ACTIONS(3486), + [anon_sym_POUND_LBRACK] = ACTIONS(3510), + [anon_sym_if] = ACTIONS(1765), + [anon_sym_DOLLARif] = ACTIONS(1765), + [anon_sym_is] = ACTIONS(1765), + [anon_sym_BANGis] = ACTIONS(1765), + [anon_sym_in] = ACTIONS(3542), + [anon_sym_BANGin] = ACTIONS(3542), + [anon_sym_match] = ACTIONS(1765), + [anon_sym_select] = ACTIONS(1765), + [anon_sym_lock] = ACTIONS(1765), + [anon_sym_rlock] = ACTIONS(1765), + [anon_sym_unsafe] = ACTIONS(1765), + [anon_sym_sql] = ACTIONS(1765), + [sym_int_literal] = ACTIONS(1765), + [sym_float_literal] = ACTIONS(1765), + [sym_rune_literal] = ACTIONS(1765), + [sym_pseudo_compile_time_identifier] = ACTIONS(1765), + [anon_sym_shared] = ACTIONS(1765), + [anon_sym_map_LBRACK] = ACTIONS(1765), + [anon_sym_chan] = ACTIONS(1765), + [anon_sym_thread] = ACTIONS(1765), + [anon_sym_atomic] = ACTIONS(1765), + [anon_sym_assert] = ACTIONS(1765), + [anon_sym_defer] = ACTIONS(1765), + [anon_sym_goto] = ACTIONS(1765), + [anon_sym_break] = ACTIONS(1765), + [anon_sym_continue] = ACTIONS(1765), + [anon_sym_return] = ACTIONS(1765), + [anon_sym_DOLLARfor] = ACTIONS(1765), + [anon_sym_for] = ACTIONS(1765), + [anon_sym_POUND] = ACTIONS(1765), + [anon_sym_asm] = ACTIONS(1765), + [anon_sym_AT_LBRACK] = ACTIONS(1765), + [sym___double_quote] = ACTIONS(1765), + [sym___single_quote] = ACTIONS(1765), + [sym___c_double_quote] = ACTIONS(1765), + [sym___c_single_quote] = ACTIONS(1765), + [sym___r_double_quote] = ACTIONS(1765), + [sym___r_single_quote] = ACTIONS(1765), }, - [971] = { - [sym_line_comment] = STATE(971), - [sym_block_comment] = STATE(971), - [sym_type_parameters] = STATE(4103), - [sym_argument_list] = STATE(1063), - [sym_or_block] = STATE(1069), - [ts_builtin_sym_end] = ACTIONS(1783), - [sym_identifier] = ACTIONS(1785), - [anon_sym_LF] = ACTIONS(1785), - [anon_sym_CR] = ACTIONS(1785), - [anon_sym_CR_LF] = ACTIONS(1785), + [969] = { + [sym_line_comment] = STATE(969), + [sym_block_comment] = STATE(969), + [sym_type_parameters] = STATE(4189), + [sym_argument_list] = STATE(1068), + [sym_or_block] = STATE(1064), + [ts_builtin_sym_end] = ACTIONS(1779), + [sym_identifier] = ACTIONS(1781), + [anon_sym_LF] = ACTIONS(1781), + [anon_sym_CR] = ACTIONS(1781), + [anon_sym_CR_LF] = ACTIONS(1781), [anon_sym_SLASH_SLASH] = ACTIONS(497), [anon_sym_SLASH_STAR] = ACTIONS(499), - [anon_sym_DOT] = ACTIONS(3480), - [anon_sym_as] = ACTIONS(1785), - [anon_sym_LBRACE] = ACTIONS(1785), - [anon_sym_const] = ACTIONS(1785), - [anon_sym_LPAREN] = ACTIONS(3486), - [anon_sym___global] = ACTIONS(1785), - [anon_sym_type] = ACTIONS(1785), - [anon_sym_PIPE] = ACTIONS(3526), - [anon_sym_fn] = ACTIONS(1785), - [anon_sym_PLUS] = ACTIONS(3526), - [anon_sym_DASH] = ACTIONS(3526), - [anon_sym_STAR] = ACTIONS(3528), - [anon_sym_SLASH] = ACTIONS(3528), - [anon_sym_PERCENT] = ACTIONS(3528), - [anon_sym_LT] = ACTIONS(3530), - [anon_sym_GT] = ACTIONS(3530), - [anon_sym_EQ_EQ] = ACTIONS(3530), - [anon_sym_BANG_EQ] = ACTIONS(3530), - [anon_sym_LT_EQ] = ACTIONS(3530), - [anon_sym_GT_EQ] = ACTIONS(3530), - [anon_sym_LBRACK] = ACTIONS(3494), - [anon_sym_struct] = ACTIONS(1785), - [anon_sym_union] = ACTIONS(1785), - [anon_sym_pub] = ACTIONS(1785), - [anon_sym_mut] = ACTIONS(1785), - [anon_sym_enum] = ACTIONS(1785), - [anon_sym_interface] = ACTIONS(1785), - [anon_sym_PLUS_PLUS] = ACTIONS(1785), - [anon_sym_DASH_DASH] = ACTIONS(1785), - [anon_sym_QMARK] = ACTIONS(3500), - [anon_sym_BANG] = ACTIONS(3502), - [anon_sym_go] = ACTIONS(1785), - [anon_sym_spawn] = ACTIONS(1785), - [anon_sym_json_DOTdecode] = ACTIONS(1785), - [anon_sym_LBRACK2] = ACTIONS(3504), - [anon_sym_TILDE] = ACTIONS(1785), - [anon_sym_CARET] = ACTIONS(3526), - [anon_sym_AMP] = ACTIONS(3528), - [anon_sym_LT_DASH] = ACTIONS(1785), - [anon_sym_LT_LT] = ACTIONS(3528), - [anon_sym_GT_GT] = ACTIONS(3528), - [anon_sym_GT_GT_GT] = ACTIONS(3528), - [anon_sym_AMP_CARET] = ACTIONS(3528), - [anon_sym_AMP_AMP] = ACTIONS(1785), - [anon_sym_PIPE_PIPE] = ACTIONS(1785), - [anon_sym_or] = ACTIONS(1785), - [sym_none] = ACTIONS(1785), - [sym_true] = ACTIONS(1785), - [sym_false] = ACTIONS(1785), - [sym_nil] = ACTIONS(1785), - [anon_sym_QMARK_DOT] = ACTIONS(3480), - [anon_sym_POUND_LBRACK] = ACTIONS(3504), - [anon_sym_if] = ACTIONS(1785), - [anon_sym_DOLLARif] = ACTIONS(1785), - [anon_sym_is] = ACTIONS(1785), - [anon_sym_BANGis] = ACTIONS(1785), - [anon_sym_in] = ACTIONS(3534), - [anon_sym_BANGin] = ACTIONS(3534), - [anon_sym_match] = ACTIONS(1785), - [anon_sym_select] = ACTIONS(1785), - [anon_sym_lock] = ACTIONS(1785), - [anon_sym_rlock] = ACTIONS(1785), - [anon_sym_unsafe] = ACTIONS(1785), - [anon_sym_sql] = ACTIONS(1785), - [sym_int_literal] = ACTIONS(1785), - [sym_float_literal] = ACTIONS(1785), - [sym_rune_literal] = ACTIONS(1785), - [sym_pseudo_compile_time_identifier] = ACTIONS(1785), - [anon_sym_shared] = ACTIONS(1785), - [anon_sym_map_LBRACK] = ACTIONS(1785), - [anon_sym_chan] = ACTIONS(1785), - [anon_sym_thread] = ACTIONS(1785), - [anon_sym_atomic] = ACTIONS(1785), - [anon_sym_assert] = ACTIONS(1785), - [anon_sym_defer] = ACTIONS(1785), - [anon_sym_goto] = ACTIONS(1785), - [anon_sym_break] = ACTIONS(1785), - [anon_sym_continue] = ACTIONS(1785), - [anon_sym_return] = ACTIONS(1785), - [anon_sym_DOLLARfor] = ACTIONS(1785), - [anon_sym_for] = ACTIONS(1785), - [anon_sym_POUND] = ACTIONS(1785), - [anon_sym_asm] = ACTIONS(1785), - [anon_sym_AT_LBRACK] = ACTIONS(1785), - [sym___double_quote] = ACTIONS(1785), - [sym___single_quote] = ACTIONS(1785), - [sym___c_double_quote] = ACTIONS(1785), - [sym___c_single_quote] = ACTIONS(1785), - [sym___r_double_quote] = ACTIONS(1785), - [sym___r_single_quote] = ACTIONS(1785), + [anon_sym_DOT] = ACTIONS(3486), + [anon_sym_as] = ACTIONS(1781), + [anon_sym_LBRACE] = ACTIONS(1781), + [anon_sym_const] = ACTIONS(1781), + [anon_sym_LPAREN] = ACTIONS(3492), + [anon_sym___global] = ACTIONS(1781), + [anon_sym_type] = ACTIONS(1781), + [anon_sym_PIPE] = ACTIONS(3534), + [anon_sym_fn] = ACTIONS(1781), + [anon_sym_PLUS] = ACTIONS(3534), + [anon_sym_DASH] = ACTIONS(3534), + [anon_sym_STAR] = ACTIONS(3536), + [anon_sym_SLASH] = ACTIONS(3536), + [anon_sym_PERCENT] = ACTIONS(3536), + [anon_sym_LT] = ACTIONS(1781), + [anon_sym_GT] = ACTIONS(1781), + [anon_sym_EQ_EQ] = ACTIONS(1781), + [anon_sym_BANG_EQ] = ACTIONS(1781), + [anon_sym_LT_EQ] = ACTIONS(1781), + [anon_sym_GT_EQ] = ACTIONS(1781), + [anon_sym_LBRACK] = ACTIONS(3500), + [anon_sym_struct] = ACTIONS(1781), + [anon_sym_union] = ACTIONS(1781), + [anon_sym_pub] = ACTIONS(1781), + [anon_sym_mut] = ACTIONS(1781), + [anon_sym_enum] = ACTIONS(1781), + [anon_sym_interface] = ACTIONS(1781), + [anon_sym_PLUS_PLUS] = ACTIONS(1781), + [anon_sym_DASH_DASH] = ACTIONS(1781), + [anon_sym_QMARK] = ACTIONS(3506), + [anon_sym_BANG] = ACTIONS(3508), + [anon_sym_go] = ACTIONS(1781), + [anon_sym_spawn] = ACTIONS(1781), + [anon_sym_json_DOTdecode] = ACTIONS(1781), + [anon_sym_LBRACK2] = ACTIONS(3510), + [anon_sym_TILDE] = ACTIONS(1781), + [anon_sym_CARET] = ACTIONS(3534), + [anon_sym_AMP] = ACTIONS(3536), + [anon_sym_LT_DASH] = ACTIONS(1781), + [anon_sym_LT_LT] = ACTIONS(3536), + [anon_sym_GT_GT] = ACTIONS(3536), + [anon_sym_GT_GT_GT] = ACTIONS(3536), + [anon_sym_AMP_CARET] = ACTIONS(3536), + [anon_sym_AMP_AMP] = ACTIONS(1781), + [anon_sym_PIPE_PIPE] = ACTIONS(1781), + [anon_sym_or] = ACTIONS(1781), + [sym_none] = ACTIONS(1781), + [sym_true] = ACTIONS(1781), + [sym_false] = ACTIONS(1781), + [sym_nil] = ACTIONS(1781), + [anon_sym_QMARK_DOT] = ACTIONS(3486), + [anon_sym_POUND_LBRACK] = ACTIONS(3510), + [anon_sym_if] = ACTIONS(1781), + [anon_sym_DOLLARif] = ACTIONS(1781), + [anon_sym_is] = ACTIONS(1781), + [anon_sym_BANGis] = ACTIONS(1781), + [anon_sym_in] = ACTIONS(1781), + [anon_sym_BANGin] = ACTIONS(1781), + [anon_sym_match] = ACTIONS(1781), + [anon_sym_select] = ACTIONS(1781), + [anon_sym_lock] = ACTIONS(1781), + [anon_sym_rlock] = ACTIONS(1781), + [anon_sym_unsafe] = ACTIONS(1781), + [anon_sym_sql] = ACTIONS(1781), + [sym_int_literal] = ACTIONS(1781), + [sym_float_literal] = ACTIONS(1781), + [sym_rune_literal] = ACTIONS(1781), + [sym_pseudo_compile_time_identifier] = ACTIONS(1781), + [anon_sym_shared] = ACTIONS(1781), + [anon_sym_map_LBRACK] = ACTIONS(1781), + [anon_sym_chan] = ACTIONS(1781), + [anon_sym_thread] = ACTIONS(1781), + [anon_sym_atomic] = ACTIONS(1781), + [anon_sym_assert] = ACTIONS(1781), + [anon_sym_defer] = ACTIONS(1781), + [anon_sym_goto] = ACTIONS(1781), + [anon_sym_break] = ACTIONS(1781), + [anon_sym_continue] = ACTIONS(1781), + [anon_sym_return] = ACTIONS(1781), + [anon_sym_DOLLARfor] = ACTIONS(1781), + [anon_sym_for] = ACTIONS(1781), + [anon_sym_POUND] = ACTIONS(1781), + [anon_sym_asm] = ACTIONS(1781), + [anon_sym_AT_LBRACK] = ACTIONS(1781), + [sym___double_quote] = ACTIONS(1781), + [sym___single_quote] = ACTIONS(1781), + [sym___c_double_quote] = ACTIONS(1781), + [sym___c_single_quote] = ACTIONS(1781), + [sym___r_double_quote] = ACTIONS(1781), + [sym___r_single_quote] = ACTIONS(1781), }, - [972] = { - [sym_line_comment] = STATE(972), - [sym_block_comment] = STATE(972), - [sym_type_parameters] = STATE(4103), - [sym_argument_list] = STATE(1063), - [sym_or_block] = STATE(1069), + [970] = { + [sym_line_comment] = STATE(970), + [sym_block_comment] = STATE(970), + [sym_type_parameters] = STATE(4189), + [sym_argument_list] = STATE(1068), + [sym_or_block] = STATE(1064), [ts_builtin_sym_end] = ACTIONS(1771), [sym_identifier] = ACTIONS(1773), [anon_sym_LF] = ACTIONS(1773), @@ -134449,64 +134271,64 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_CR_LF] = ACTIONS(1773), [anon_sym_SLASH_SLASH] = ACTIONS(497), [anon_sym_SLASH_STAR] = ACTIONS(499), - [anon_sym_DOT] = ACTIONS(3480), - [anon_sym_as] = ACTIONS(3482), + [anon_sym_DOT] = ACTIONS(3486), + [anon_sym_as] = ACTIONS(3488), [anon_sym_LBRACE] = ACTIONS(1773), [anon_sym_const] = ACTIONS(1773), - [anon_sym_LPAREN] = ACTIONS(3486), + [anon_sym_LPAREN] = ACTIONS(3492), [anon_sym___global] = ACTIONS(1773), [anon_sym_type] = ACTIONS(1773), - [anon_sym_PIPE] = ACTIONS(3526), + [anon_sym_PIPE] = ACTIONS(3534), [anon_sym_fn] = ACTIONS(1773), - [anon_sym_PLUS] = ACTIONS(3526), - [anon_sym_DASH] = ACTIONS(3526), - [anon_sym_STAR] = ACTIONS(3528), - [anon_sym_SLASH] = ACTIONS(3528), - [anon_sym_PERCENT] = ACTIONS(3528), - [anon_sym_LT] = ACTIONS(3530), - [anon_sym_GT] = ACTIONS(3530), - [anon_sym_EQ_EQ] = ACTIONS(3530), - [anon_sym_BANG_EQ] = ACTIONS(3530), - [anon_sym_LT_EQ] = ACTIONS(3530), - [anon_sym_GT_EQ] = ACTIONS(3530), - [anon_sym_LBRACK] = ACTIONS(3494), + [anon_sym_PLUS] = ACTIONS(3534), + [anon_sym_DASH] = ACTIONS(3534), + [anon_sym_STAR] = ACTIONS(3536), + [anon_sym_SLASH] = ACTIONS(3536), + [anon_sym_PERCENT] = ACTIONS(3536), + [anon_sym_LT] = ACTIONS(3538), + [anon_sym_GT] = ACTIONS(3538), + [anon_sym_EQ_EQ] = ACTIONS(3538), + [anon_sym_BANG_EQ] = ACTIONS(3538), + [anon_sym_LT_EQ] = ACTIONS(3538), + [anon_sym_GT_EQ] = ACTIONS(3538), + [anon_sym_LBRACK] = ACTIONS(3500), [anon_sym_struct] = ACTIONS(1773), [anon_sym_union] = ACTIONS(1773), [anon_sym_pub] = ACTIONS(1773), [anon_sym_mut] = ACTIONS(1773), [anon_sym_enum] = ACTIONS(1773), [anon_sym_interface] = ACTIONS(1773), - [anon_sym_PLUS_PLUS] = ACTIONS(3496), - [anon_sym_DASH_DASH] = ACTIONS(3498), - [anon_sym_QMARK] = ACTIONS(3500), - [anon_sym_BANG] = ACTIONS(3502), + [anon_sym_PLUS_PLUS] = ACTIONS(3502), + [anon_sym_DASH_DASH] = ACTIONS(3504), + [anon_sym_QMARK] = ACTIONS(3506), + [anon_sym_BANG] = ACTIONS(3508), [anon_sym_go] = ACTIONS(1773), [anon_sym_spawn] = ACTIONS(1773), [anon_sym_json_DOTdecode] = ACTIONS(1773), - [anon_sym_LBRACK2] = ACTIONS(3504), + [anon_sym_LBRACK2] = ACTIONS(3510), [anon_sym_TILDE] = ACTIONS(1773), - [anon_sym_CARET] = ACTIONS(3526), - [anon_sym_AMP] = ACTIONS(3528), + [anon_sym_CARET] = ACTIONS(3534), + [anon_sym_AMP] = ACTIONS(3536), [anon_sym_LT_DASH] = ACTIONS(1773), - [anon_sym_LT_LT] = ACTIONS(3528), - [anon_sym_GT_GT] = ACTIONS(3528), - [anon_sym_GT_GT_GT] = ACTIONS(3528), - [anon_sym_AMP_CARET] = ACTIONS(3528), - [anon_sym_AMP_AMP] = ACTIONS(3532), - [anon_sym_PIPE_PIPE] = ACTIONS(3540), - [anon_sym_or] = ACTIONS(3510), + [anon_sym_LT_LT] = ACTIONS(3536), + [anon_sym_GT_GT] = ACTIONS(3536), + [anon_sym_GT_GT_GT] = ACTIONS(3536), + [anon_sym_AMP_CARET] = ACTIONS(3536), + [anon_sym_AMP_AMP] = ACTIONS(3540), + [anon_sym_PIPE_PIPE] = ACTIONS(3544), + [anon_sym_or] = ACTIONS(3516), [sym_none] = ACTIONS(1773), [sym_true] = ACTIONS(1773), [sym_false] = ACTIONS(1773), [sym_nil] = ACTIONS(1773), - [anon_sym_QMARK_DOT] = ACTIONS(3480), - [anon_sym_POUND_LBRACK] = ACTIONS(3504), + [anon_sym_QMARK_DOT] = ACTIONS(3486), + [anon_sym_POUND_LBRACK] = ACTIONS(3510), [anon_sym_if] = ACTIONS(1773), [anon_sym_DOLLARif] = ACTIONS(1773), - [anon_sym_is] = ACTIONS(3512), - [anon_sym_BANGis] = ACTIONS(3512), - [anon_sym_in] = ACTIONS(3534), - [anon_sym_BANGin] = ACTIONS(3534), + [anon_sym_is] = ACTIONS(3518), + [anon_sym_BANGis] = ACTIONS(3518), + [anon_sym_in] = ACTIONS(3542), + [anon_sym_BANGin] = ACTIONS(3542), [anon_sym_match] = ACTIONS(1773), [anon_sym_select] = ACTIONS(1773), [anon_sym_lock] = ACTIONS(1773), @@ -134540,860 +134362,1172 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym___r_double_quote] = ACTIONS(1773), [sym___r_single_quote] = ACTIONS(1773), }, + [971] = { + [sym_line_comment] = STATE(971), + [sym_block_comment] = STATE(971), + [sym_type_parameters] = STATE(4189), + [sym_argument_list] = STATE(1068), + [sym_or_block] = STATE(1064), + [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), + [anon_sym_SLASH_SLASH] = ACTIONS(497), + [anon_sym_SLASH_STAR] = ACTIONS(499), + [anon_sym_DOT] = ACTIONS(3486), + [anon_sym_as] = ACTIONS(3488), + [anon_sym_LBRACE] = ACTIONS(3548), + [anon_sym_const] = ACTIONS(3548), + [anon_sym_LPAREN] = ACTIONS(3492), + [anon_sym___global] = ACTIONS(3548), + [anon_sym_type] = ACTIONS(3548), + [anon_sym_PIPE] = ACTIONS(3534), + [anon_sym_fn] = ACTIONS(3548), + [anon_sym_PLUS] = ACTIONS(3534), + [anon_sym_DASH] = ACTIONS(3534), + [anon_sym_STAR] = ACTIONS(3536), + [anon_sym_SLASH] = ACTIONS(3536), + [anon_sym_PERCENT] = ACTIONS(3536), + [anon_sym_LT] = ACTIONS(3538), + [anon_sym_GT] = ACTIONS(3538), + [anon_sym_EQ_EQ] = ACTIONS(3538), + [anon_sym_BANG_EQ] = ACTIONS(3538), + [anon_sym_LT_EQ] = ACTIONS(3538), + [anon_sym_GT_EQ] = ACTIONS(3538), + [anon_sym_LBRACK] = ACTIONS(3500), + [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(3502), + [anon_sym_DASH_DASH] = ACTIONS(3504), + [anon_sym_QMARK] = ACTIONS(3506), + [anon_sym_BANG] = ACTIONS(3508), + [anon_sym_go] = ACTIONS(3548), + [anon_sym_spawn] = ACTIONS(3548), + [anon_sym_json_DOTdecode] = ACTIONS(3548), + [anon_sym_LBRACK2] = ACTIONS(3510), + [anon_sym_TILDE] = ACTIONS(3548), + [anon_sym_CARET] = ACTIONS(3534), + [anon_sym_AMP] = ACTIONS(3536), + [anon_sym_LT_DASH] = ACTIONS(3548), + [anon_sym_LT_LT] = ACTIONS(3536), + [anon_sym_GT_GT] = ACTIONS(3536), + [anon_sym_GT_GT_GT] = ACTIONS(3536), + [anon_sym_AMP_CARET] = ACTIONS(3536), + [anon_sym_AMP_AMP] = ACTIONS(3540), + [anon_sym_PIPE_PIPE] = ACTIONS(3544), + [anon_sym_or] = ACTIONS(3516), + [sym_none] = ACTIONS(3548), + [sym_true] = ACTIONS(3548), + [sym_false] = ACTIONS(3548), + [sym_nil] = ACTIONS(3548), + [anon_sym_QMARK_DOT] = ACTIONS(3486), + [anon_sym_POUND_LBRACK] = ACTIONS(3510), + [anon_sym_if] = ACTIONS(3548), + [anon_sym_DOLLARif] = ACTIONS(3548), + [anon_sym_is] = ACTIONS(3518), + [anon_sym_BANGis] = ACTIONS(3518), + [anon_sym_in] = ACTIONS(3542), + [anon_sym_BANGin] = ACTIONS(3542), + [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), + }, + [972] = { + [sym_line_comment] = STATE(972), + [sym_block_comment] = STATE(972), + [sym_type_parameters] = STATE(4189), + [sym_argument_list] = STATE(1068), + [sym_or_block] = STATE(1064), + [ts_builtin_sym_end] = ACTIONS(1763), + [sym_identifier] = ACTIONS(1765), + [anon_sym_LF] = ACTIONS(1765), + [anon_sym_CR] = ACTIONS(1765), + [anon_sym_CR_LF] = ACTIONS(1765), + [anon_sym_SLASH_SLASH] = ACTIONS(497), + [anon_sym_SLASH_STAR] = ACTIONS(499), + [anon_sym_DOT] = ACTIONS(3486), + [anon_sym_as] = ACTIONS(1765), + [anon_sym_LBRACE] = ACTIONS(1765), + [anon_sym_const] = ACTIONS(1765), + [anon_sym_LPAREN] = ACTIONS(3492), + [anon_sym___global] = ACTIONS(1765), + [anon_sym_type] = ACTIONS(1765), + [anon_sym_PIPE] = ACTIONS(1765), + [anon_sym_fn] = ACTIONS(1765), + [anon_sym_PLUS] = ACTIONS(1765), + [anon_sym_DASH] = ACTIONS(1765), + [anon_sym_STAR] = ACTIONS(3536), + [anon_sym_SLASH] = ACTIONS(3536), + [anon_sym_PERCENT] = ACTIONS(3536), + [anon_sym_LT] = ACTIONS(1765), + [anon_sym_GT] = ACTIONS(1765), + [anon_sym_EQ_EQ] = ACTIONS(1765), + [anon_sym_BANG_EQ] = ACTIONS(1765), + [anon_sym_LT_EQ] = ACTIONS(1765), + [anon_sym_GT_EQ] = ACTIONS(1765), + [anon_sym_LBRACK] = ACTIONS(3500), + [anon_sym_struct] = ACTIONS(1765), + [anon_sym_union] = ACTIONS(1765), + [anon_sym_pub] = ACTIONS(1765), + [anon_sym_mut] = ACTIONS(1765), + [anon_sym_enum] = ACTIONS(1765), + [anon_sym_interface] = ACTIONS(1765), + [anon_sym_PLUS_PLUS] = ACTIONS(1765), + [anon_sym_DASH_DASH] = ACTIONS(1765), + [anon_sym_QMARK] = ACTIONS(3506), + [anon_sym_BANG] = ACTIONS(3508), + [anon_sym_go] = ACTIONS(1765), + [anon_sym_spawn] = ACTIONS(1765), + [anon_sym_json_DOTdecode] = ACTIONS(1765), + [anon_sym_LBRACK2] = ACTIONS(3510), + [anon_sym_TILDE] = ACTIONS(1765), + [anon_sym_CARET] = ACTIONS(1765), + [anon_sym_AMP] = ACTIONS(3536), + [anon_sym_LT_DASH] = ACTIONS(1765), + [anon_sym_LT_LT] = ACTIONS(3536), + [anon_sym_GT_GT] = ACTIONS(3536), + [anon_sym_GT_GT_GT] = ACTIONS(3536), + [anon_sym_AMP_CARET] = ACTIONS(3536), + [anon_sym_AMP_AMP] = ACTIONS(1765), + [anon_sym_PIPE_PIPE] = ACTIONS(1765), + [anon_sym_or] = ACTIONS(1765), + [sym_none] = ACTIONS(1765), + [sym_true] = ACTIONS(1765), + [sym_false] = ACTIONS(1765), + [sym_nil] = ACTIONS(1765), + [anon_sym_QMARK_DOT] = ACTIONS(3486), + [anon_sym_POUND_LBRACK] = ACTIONS(3510), + [anon_sym_if] = ACTIONS(1765), + [anon_sym_DOLLARif] = ACTIONS(1765), + [anon_sym_is] = ACTIONS(1765), + [anon_sym_BANGis] = ACTIONS(1765), + [anon_sym_in] = ACTIONS(1765), + [anon_sym_BANGin] = ACTIONS(1765), + [anon_sym_match] = ACTIONS(1765), + [anon_sym_select] = ACTIONS(1765), + [anon_sym_lock] = ACTIONS(1765), + [anon_sym_rlock] = ACTIONS(1765), + [anon_sym_unsafe] = ACTIONS(1765), + [anon_sym_sql] = ACTIONS(1765), + [sym_int_literal] = ACTIONS(1765), + [sym_float_literal] = ACTIONS(1765), + [sym_rune_literal] = ACTIONS(1765), + [sym_pseudo_compile_time_identifier] = ACTIONS(1765), + [anon_sym_shared] = ACTIONS(1765), + [anon_sym_map_LBRACK] = ACTIONS(1765), + [anon_sym_chan] = ACTIONS(1765), + [anon_sym_thread] = ACTIONS(1765), + [anon_sym_atomic] = ACTIONS(1765), + [anon_sym_assert] = ACTIONS(1765), + [anon_sym_defer] = ACTIONS(1765), + [anon_sym_goto] = ACTIONS(1765), + [anon_sym_break] = ACTIONS(1765), + [anon_sym_continue] = ACTIONS(1765), + [anon_sym_return] = ACTIONS(1765), + [anon_sym_DOLLARfor] = ACTIONS(1765), + [anon_sym_for] = ACTIONS(1765), + [anon_sym_POUND] = ACTIONS(1765), + [anon_sym_asm] = ACTIONS(1765), + [anon_sym_AT_LBRACK] = ACTIONS(1765), + [sym___double_quote] = ACTIONS(1765), + [sym___single_quote] = ACTIONS(1765), + [sym___c_double_quote] = ACTIONS(1765), + [sym___c_single_quote] = ACTIONS(1765), + [sym___r_double_quote] = ACTIONS(1765), + [sym___r_single_quote] = ACTIONS(1765), + }, [973] = { [sym_line_comment] = STATE(973), [sym_block_comment] = STATE(973), - [sym_type_parameters] = STATE(4103), - [sym_argument_list] = STATE(1063), - [sym_or_block] = STATE(1069), - [ts_builtin_sym_end] = ACTIONS(1767), - [sym_identifier] = ACTIONS(1769), - [anon_sym_LF] = ACTIONS(1769), - [anon_sym_CR] = ACTIONS(1769), - [anon_sym_CR_LF] = ACTIONS(1769), + [sym_type_parameters] = STATE(4189), + [sym_argument_list] = STATE(1068), + [sym_or_block] = STATE(1064), + [ts_builtin_sym_end] = ACTIONS(1763), + [sym_identifier] = ACTIONS(1765), + [anon_sym_LF] = ACTIONS(1765), + [anon_sym_CR] = ACTIONS(1765), + [anon_sym_CR_LF] = ACTIONS(1765), [anon_sym_SLASH_SLASH] = ACTIONS(497), [anon_sym_SLASH_STAR] = ACTIONS(499), - [anon_sym_DOT] = ACTIONS(3480), - [anon_sym_as] = ACTIONS(1769), - [anon_sym_LBRACE] = ACTIONS(1769), - [anon_sym_const] = ACTIONS(1769), - [anon_sym_LPAREN] = ACTIONS(3486), - [anon_sym___global] = ACTIONS(1769), - [anon_sym_type] = ACTIONS(1769), - [anon_sym_PIPE] = ACTIONS(3526), - [anon_sym_fn] = ACTIONS(1769), - [anon_sym_PLUS] = ACTIONS(3526), - [anon_sym_DASH] = ACTIONS(3526), - [anon_sym_STAR] = ACTIONS(3528), - [anon_sym_SLASH] = ACTIONS(3528), - [anon_sym_PERCENT] = ACTIONS(3528), - [anon_sym_LT] = ACTIONS(1769), - [anon_sym_GT] = ACTIONS(1769), - [anon_sym_EQ_EQ] = ACTIONS(1769), - [anon_sym_BANG_EQ] = ACTIONS(1769), - [anon_sym_LT_EQ] = ACTIONS(1769), - [anon_sym_GT_EQ] = ACTIONS(1769), - [anon_sym_LBRACK] = ACTIONS(3494), - [anon_sym_struct] = ACTIONS(1769), - [anon_sym_union] = ACTIONS(1769), - [anon_sym_pub] = ACTIONS(1769), - [anon_sym_mut] = ACTIONS(1769), - [anon_sym_enum] = ACTIONS(1769), - [anon_sym_interface] = ACTIONS(1769), - [anon_sym_PLUS_PLUS] = ACTIONS(1769), - [anon_sym_DASH_DASH] = ACTIONS(1769), - [anon_sym_QMARK] = ACTIONS(3500), - [anon_sym_BANG] = ACTIONS(3502), - [anon_sym_go] = ACTIONS(1769), - [anon_sym_spawn] = ACTIONS(1769), - [anon_sym_json_DOTdecode] = ACTIONS(1769), - [anon_sym_LBRACK2] = ACTIONS(3504), - [anon_sym_TILDE] = ACTIONS(1769), - [anon_sym_CARET] = ACTIONS(3526), - [anon_sym_AMP] = ACTIONS(3528), - [anon_sym_LT_DASH] = ACTIONS(1769), - [anon_sym_LT_LT] = ACTIONS(3528), - [anon_sym_GT_GT] = ACTIONS(3528), - [anon_sym_GT_GT_GT] = ACTIONS(3528), - [anon_sym_AMP_CARET] = ACTIONS(3528), - [anon_sym_AMP_AMP] = ACTIONS(1769), - [anon_sym_PIPE_PIPE] = ACTIONS(1769), - [anon_sym_or] = ACTIONS(1769), - [sym_none] = ACTIONS(1769), - [sym_true] = ACTIONS(1769), - [sym_false] = ACTIONS(1769), - [sym_nil] = ACTIONS(1769), - [anon_sym_QMARK_DOT] = ACTIONS(3480), - [anon_sym_POUND_LBRACK] = ACTIONS(3504), - [anon_sym_if] = ACTIONS(1769), - [anon_sym_DOLLARif] = ACTIONS(1769), - [anon_sym_is] = ACTIONS(1769), - [anon_sym_BANGis] = ACTIONS(1769), - [anon_sym_in] = ACTIONS(1769), - [anon_sym_BANGin] = ACTIONS(1769), - [anon_sym_match] = ACTIONS(1769), - [anon_sym_select] = ACTIONS(1769), - [anon_sym_lock] = ACTIONS(1769), - [anon_sym_rlock] = ACTIONS(1769), - [anon_sym_unsafe] = ACTIONS(1769), - [anon_sym_sql] = ACTIONS(1769), - [sym_int_literal] = ACTIONS(1769), - [sym_float_literal] = ACTIONS(1769), - [sym_rune_literal] = ACTIONS(1769), - [sym_pseudo_compile_time_identifier] = ACTIONS(1769), - [anon_sym_shared] = ACTIONS(1769), - [anon_sym_map_LBRACK] = ACTIONS(1769), - [anon_sym_chan] = ACTIONS(1769), - [anon_sym_thread] = ACTIONS(1769), - [anon_sym_atomic] = ACTIONS(1769), - [anon_sym_assert] = ACTIONS(1769), - [anon_sym_defer] = ACTIONS(1769), - [anon_sym_goto] = ACTIONS(1769), - [anon_sym_break] = ACTIONS(1769), - [anon_sym_continue] = ACTIONS(1769), - [anon_sym_return] = ACTIONS(1769), - [anon_sym_DOLLARfor] = ACTIONS(1769), - [anon_sym_for] = ACTIONS(1769), - [anon_sym_POUND] = ACTIONS(1769), - [anon_sym_asm] = ACTIONS(1769), - [anon_sym_AT_LBRACK] = ACTIONS(1769), - [sym___double_quote] = ACTIONS(1769), - [sym___single_quote] = ACTIONS(1769), - [sym___c_double_quote] = ACTIONS(1769), - [sym___c_single_quote] = ACTIONS(1769), - [sym___r_double_quote] = ACTIONS(1769), - [sym___r_single_quote] = ACTIONS(1769), + [anon_sym_DOT] = ACTIONS(3486), + [anon_sym_as] = ACTIONS(1765), + [anon_sym_LBRACE] = ACTIONS(1765), + [anon_sym_const] = ACTIONS(1765), + [anon_sym_LPAREN] = ACTIONS(3492), + [anon_sym___global] = ACTIONS(1765), + [anon_sym_type] = ACTIONS(1765), + [anon_sym_PIPE] = ACTIONS(3534), + [anon_sym_fn] = ACTIONS(1765), + [anon_sym_PLUS] = ACTIONS(3534), + [anon_sym_DASH] = ACTIONS(3534), + [anon_sym_STAR] = ACTIONS(3536), + [anon_sym_SLASH] = ACTIONS(3536), + [anon_sym_PERCENT] = ACTIONS(3536), + [anon_sym_LT] = ACTIONS(1765), + [anon_sym_GT] = ACTIONS(1765), + [anon_sym_EQ_EQ] = ACTIONS(1765), + [anon_sym_BANG_EQ] = ACTIONS(1765), + [anon_sym_LT_EQ] = ACTIONS(1765), + [anon_sym_GT_EQ] = ACTIONS(1765), + [anon_sym_LBRACK] = ACTIONS(3500), + [anon_sym_struct] = ACTIONS(1765), + [anon_sym_union] = ACTIONS(1765), + [anon_sym_pub] = ACTIONS(1765), + [anon_sym_mut] = ACTIONS(1765), + [anon_sym_enum] = ACTIONS(1765), + [anon_sym_interface] = ACTIONS(1765), + [anon_sym_PLUS_PLUS] = ACTIONS(1765), + [anon_sym_DASH_DASH] = ACTIONS(1765), + [anon_sym_QMARK] = ACTIONS(3506), + [anon_sym_BANG] = ACTIONS(3508), + [anon_sym_go] = ACTIONS(1765), + [anon_sym_spawn] = ACTIONS(1765), + [anon_sym_json_DOTdecode] = ACTIONS(1765), + [anon_sym_LBRACK2] = ACTIONS(3510), + [anon_sym_TILDE] = ACTIONS(1765), + [anon_sym_CARET] = ACTIONS(3534), + [anon_sym_AMP] = ACTIONS(3536), + [anon_sym_LT_DASH] = ACTIONS(1765), + [anon_sym_LT_LT] = ACTIONS(3536), + [anon_sym_GT_GT] = ACTIONS(3536), + [anon_sym_GT_GT_GT] = ACTIONS(3536), + [anon_sym_AMP_CARET] = ACTIONS(3536), + [anon_sym_AMP_AMP] = ACTIONS(1765), + [anon_sym_PIPE_PIPE] = ACTIONS(1765), + [anon_sym_or] = ACTIONS(1765), + [sym_none] = ACTIONS(1765), + [sym_true] = ACTIONS(1765), + [sym_false] = ACTIONS(1765), + [sym_nil] = ACTIONS(1765), + [anon_sym_QMARK_DOT] = ACTIONS(3486), + [anon_sym_POUND_LBRACK] = ACTIONS(3510), + [anon_sym_if] = ACTIONS(1765), + [anon_sym_DOLLARif] = ACTIONS(1765), + [anon_sym_is] = ACTIONS(1765), + [anon_sym_BANGis] = ACTIONS(1765), + [anon_sym_in] = ACTIONS(1765), + [anon_sym_BANGin] = ACTIONS(1765), + [anon_sym_match] = ACTIONS(1765), + [anon_sym_select] = ACTIONS(1765), + [anon_sym_lock] = ACTIONS(1765), + [anon_sym_rlock] = ACTIONS(1765), + [anon_sym_unsafe] = ACTIONS(1765), + [anon_sym_sql] = ACTIONS(1765), + [sym_int_literal] = ACTIONS(1765), + [sym_float_literal] = ACTIONS(1765), + [sym_rune_literal] = ACTIONS(1765), + [sym_pseudo_compile_time_identifier] = ACTIONS(1765), + [anon_sym_shared] = ACTIONS(1765), + [anon_sym_map_LBRACK] = ACTIONS(1765), + [anon_sym_chan] = ACTIONS(1765), + [anon_sym_thread] = ACTIONS(1765), + [anon_sym_atomic] = ACTIONS(1765), + [anon_sym_assert] = ACTIONS(1765), + [anon_sym_defer] = ACTIONS(1765), + [anon_sym_goto] = ACTIONS(1765), + [anon_sym_break] = ACTIONS(1765), + [anon_sym_continue] = ACTIONS(1765), + [anon_sym_return] = ACTIONS(1765), + [anon_sym_DOLLARfor] = ACTIONS(1765), + [anon_sym_for] = ACTIONS(1765), + [anon_sym_POUND] = ACTIONS(1765), + [anon_sym_asm] = ACTIONS(1765), + [anon_sym_AT_LBRACK] = ACTIONS(1765), + [sym___double_quote] = ACTIONS(1765), + [sym___single_quote] = ACTIONS(1765), + [sym___c_double_quote] = ACTIONS(1765), + [sym___c_single_quote] = ACTIONS(1765), + [sym___r_double_quote] = ACTIONS(1765), + [sym___r_single_quote] = ACTIONS(1765), }, [974] = { [sym_line_comment] = STATE(974), [sym_block_comment] = STATE(974), - [sym_type_parameters] = STATE(4103), - [sym_argument_list] = STATE(1063), - [sym_or_block] = STATE(1069), - [ts_builtin_sym_end] = ACTIONS(3544), - [sym_identifier] = ACTIONS(3546), - [anon_sym_LF] = ACTIONS(3546), - [anon_sym_CR] = ACTIONS(3546), - [anon_sym_CR_LF] = ACTIONS(3546), + [sym_type_parameters] = STATE(4189), + [sym_argument_list] = STATE(1068), + [sym_or_block] = STATE(1064), + [ts_builtin_sym_end] = ACTIONS(3550), + [sym_identifier] = ACTIONS(3552), + [anon_sym_LF] = ACTIONS(3552), + [anon_sym_CR] = ACTIONS(3552), + [anon_sym_CR_LF] = ACTIONS(3552), [anon_sym_SLASH_SLASH] = ACTIONS(497), [anon_sym_SLASH_STAR] = ACTIONS(499), - [anon_sym_DOT] = ACTIONS(3480), - [anon_sym_as] = ACTIONS(3482), - [anon_sym_LBRACE] = ACTIONS(3546), - [anon_sym_const] = ACTIONS(3546), - [anon_sym_LPAREN] = ACTIONS(3486), - [anon_sym___global] = ACTIONS(3546), - [anon_sym_type] = ACTIONS(3546), - [anon_sym_PIPE] = ACTIONS(3526), - [anon_sym_fn] = ACTIONS(3546), - [anon_sym_PLUS] = ACTIONS(3546), - [anon_sym_DASH] = ACTIONS(3546), - [anon_sym_STAR] = ACTIONS(3546), - [anon_sym_SLASH] = ACTIONS(3528), - [anon_sym_PERCENT] = ACTIONS(3528), - [anon_sym_LT] = ACTIONS(3530), - [anon_sym_GT] = ACTIONS(3530), - [anon_sym_EQ_EQ] = ACTIONS(3530), - [anon_sym_BANG_EQ] = ACTIONS(3530), - [anon_sym_LT_EQ] = ACTIONS(3530), - [anon_sym_GT_EQ] = ACTIONS(3530), - [anon_sym_LBRACK] = ACTIONS(3494), - [anon_sym_struct] = ACTIONS(3546), - [anon_sym_union] = ACTIONS(3546), - [anon_sym_pub] = ACTIONS(3546), - [anon_sym_mut] = ACTIONS(3546), - [anon_sym_enum] = ACTIONS(3546), - [anon_sym_interface] = ACTIONS(3546), - [anon_sym_PLUS_PLUS] = ACTIONS(3496), - [anon_sym_DASH_DASH] = ACTIONS(3498), - [anon_sym_QMARK] = ACTIONS(3500), - [anon_sym_BANG] = ACTIONS(3502), - [anon_sym_go] = ACTIONS(3546), - [anon_sym_spawn] = ACTIONS(3546), - [anon_sym_json_DOTdecode] = ACTIONS(3546), - [anon_sym_LBRACK2] = ACTIONS(3504), - [anon_sym_TILDE] = ACTIONS(3546), - [anon_sym_CARET] = ACTIONS(3546), - [anon_sym_AMP] = ACTIONS(3546), - [anon_sym_LT_DASH] = ACTIONS(3546), - [anon_sym_LT_LT] = ACTIONS(3528), - [anon_sym_GT_GT] = ACTIONS(3528), - [anon_sym_GT_GT_GT] = ACTIONS(3528), - [anon_sym_AMP_CARET] = ACTIONS(3528), - [anon_sym_AMP_AMP] = ACTIONS(3532), - [anon_sym_PIPE_PIPE] = ACTIONS(3540), - [anon_sym_or] = ACTIONS(3510), - [sym_none] = ACTIONS(3546), - [sym_true] = ACTIONS(3546), - [sym_false] = ACTIONS(3546), - [sym_nil] = ACTIONS(3546), - [anon_sym_QMARK_DOT] = ACTIONS(3480), - [anon_sym_POUND_LBRACK] = ACTIONS(3504), - [anon_sym_if] = ACTIONS(3546), - [anon_sym_DOLLARif] = ACTIONS(3546), - [anon_sym_is] = ACTIONS(3512), - [anon_sym_BANGis] = ACTIONS(3512), - [anon_sym_in] = ACTIONS(3534), - [anon_sym_BANGin] = ACTIONS(3534), - [anon_sym_match] = ACTIONS(3546), - [anon_sym_select] = ACTIONS(3546), - [anon_sym_lock] = ACTIONS(3546), - [anon_sym_rlock] = ACTIONS(3546), - [anon_sym_unsafe] = ACTIONS(3546), - [anon_sym_sql] = ACTIONS(3546), - [sym_int_literal] = ACTIONS(3546), - [sym_float_literal] = ACTIONS(3546), - [sym_rune_literal] = ACTIONS(3546), - [sym_pseudo_compile_time_identifier] = ACTIONS(3546), - [anon_sym_shared] = ACTIONS(3546), - [anon_sym_map_LBRACK] = ACTIONS(3546), - [anon_sym_chan] = ACTIONS(3546), - [anon_sym_thread] = ACTIONS(3546), - [anon_sym_atomic] = ACTIONS(3546), - [anon_sym_assert] = ACTIONS(3546), - [anon_sym_defer] = ACTIONS(3546), - [anon_sym_goto] = ACTIONS(3546), - [anon_sym_break] = ACTIONS(3546), - [anon_sym_continue] = ACTIONS(3546), - [anon_sym_return] = ACTIONS(3546), - [anon_sym_DOLLARfor] = ACTIONS(3546), - [anon_sym_for] = ACTIONS(3546), - [anon_sym_POUND] = ACTIONS(3546), - [anon_sym_asm] = ACTIONS(3546), - [anon_sym_AT_LBRACK] = ACTIONS(3546), - [sym___double_quote] = ACTIONS(3546), - [sym___single_quote] = ACTIONS(3546), - [sym___c_double_quote] = ACTIONS(3546), - [sym___c_single_quote] = ACTIONS(3546), - [sym___r_double_quote] = ACTIONS(3546), - [sym___r_single_quote] = ACTIONS(3546), + [anon_sym_DOT] = ACTIONS(3486), + [anon_sym_as] = ACTIONS(3488), + [anon_sym_LBRACE] = ACTIONS(3552), + [anon_sym_const] = ACTIONS(3552), + [anon_sym_LPAREN] = ACTIONS(3492), + [anon_sym___global] = ACTIONS(3552), + [anon_sym_type] = ACTIONS(3552), + [anon_sym_PIPE] = ACTIONS(3534), + [anon_sym_fn] = ACTIONS(3552), + [anon_sym_PLUS] = ACTIONS(3534), + [anon_sym_DASH] = ACTIONS(3534), + [anon_sym_STAR] = ACTIONS(3536), + [anon_sym_SLASH] = ACTIONS(3536), + [anon_sym_PERCENT] = ACTIONS(3536), + [anon_sym_LT] = ACTIONS(3538), + [anon_sym_GT] = ACTIONS(3538), + [anon_sym_EQ_EQ] = ACTIONS(3538), + [anon_sym_BANG_EQ] = ACTIONS(3538), + [anon_sym_LT_EQ] = ACTIONS(3538), + [anon_sym_GT_EQ] = ACTIONS(3538), + [anon_sym_LBRACK] = ACTIONS(3500), + [anon_sym_struct] = ACTIONS(3552), + [anon_sym_union] = ACTIONS(3552), + [anon_sym_pub] = ACTIONS(3552), + [anon_sym_mut] = ACTIONS(3552), + [anon_sym_enum] = ACTIONS(3552), + [anon_sym_interface] = ACTIONS(3552), + [anon_sym_PLUS_PLUS] = ACTIONS(3502), + [anon_sym_DASH_DASH] = ACTIONS(3504), + [anon_sym_QMARK] = ACTIONS(3506), + [anon_sym_BANG] = ACTIONS(3508), + [anon_sym_go] = ACTIONS(3552), + [anon_sym_spawn] = ACTIONS(3552), + [anon_sym_json_DOTdecode] = ACTIONS(3552), + [anon_sym_LBRACK2] = ACTIONS(3510), + [anon_sym_TILDE] = ACTIONS(3552), + [anon_sym_CARET] = ACTIONS(3534), + [anon_sym_AMP] = ACTIONS(3536), + [anon_sym_LT_DASH] = ACTIONS(3552), + [anon_sym_LT_LT] = ACTIONS(3536), + [anon_sym_GT_GT] = ACTIONS(3536), + [anon_sym_GT_GT_GT] = ACTIONS(3536), + [anon_sym_AMP_CARET] = ACTIONS(3536), + [anon_sym_AMP_AMP] = ACTIONS(3540), + [anon_sym_PIPE_PIPE] = ACTIONS(3544), + [anon_sym_or] = ACTIONS(3516), + [sym_none] = ACTIONS(3552), + [sym_true] = ACTIONS(3552), + [sym_false] = ACTIONS(3552), + [sym_nil] = ACTIONS(3552), + [anon_sym_QMARK_DOT] = ACTIONS(3486), + [anon_sym_POUND_LBRACK] = ACTIONS(3510), + [anon_sym_if] = ACTIONS(3552), + [anon_sym_DOLLARif] = ACTIONS(3552), + [anon_sym_is] = ACTIONS(3518), + [anon_sym_BANGis] = ACTIONS(3518), + [anon_sym_in] = ACTIONS(3542), + [anon_sym_BANGin] = ACTIONS(3542), + [anon_sym_match] = ACTIONS(3552), + [anon_sym_select] = ACTIONS(3552), + [anon_sym_lock] = ACTIONS(3552), + [anon_sym_rlock] = ACTIONS(3552), + [anon_sym_unsafe] = ACTIONS(3552), + [anon_sym_sql] = ACTIONS(3552), + [sym_int_literal] = ACTIONS(3552), + [sym_float_literal] = ACTIONS(3552), + [sym_rune_literal] = ACTIONS(3552), + [sym_pseudo_compile_time_identifier] = ACTIONS(3552), + [anon_sym_shared] = ACTIONS(3552), + [anon_sym_map_LBRACK] = ACTIONS(3552), + [anon_sym_chan] = ACTIONS(3552), + [anon_sym_thread] = ACTIONS(3552), + [anon_sym_atomic] = ACTIONS(3552), + [anon_sym_assert] = ACTIONS(3552), + [anon_sym_defer] = ACTIONS(3552), + [anon_sym_goto] = ACTIONS(3552), + [anon_sym_break] = ACTIONS(3552), + [anon_sym_continue] = ACTIONS(3552), + [anon_sym_return] = ACTIONS(3552), + [anon_sym_DOLLARfor] = ACTIONS(3552), + [anon_sym_for] = ACTIONS(3552), + [anon_sym_POUND] = ACTIONS(3552), + [anon_sym_asm] = ACTIONS(3552), + [anon_sym_AT_LBRACK] = ACTIONS(3552), + [sym___double_quote] = ACTIONS(3552), + [sym___single_quote] = ACTIONS(3552), + [sym___c_double_quote] = ACTIONS(3552), + [sym___c_single_quote] = ACTIONS(3552), + [sym___r_double_quote] = ACTIONS(3552), + [sym___r_single_quote] = ACTIONS(3552), }, [975] = { [sym_line_comment] = STATE(975), [sym_block_comment] = STATE(975), - [sym_type_parameters] = STATE(4103), - [sym_argument_list] = STATE(1063), - [sym_or_block] = STATE(1069), - [ts_builtin_sym_end] = ACTIONS(1783), - [sym_identifier] = ACTIONS(1785), - [anon_sym_LF] = ACTIONS(1785), - [anon_sym_CR] = ACTIONS(1785), - [anon_sym_CR_LF] = ACTIONS(1785), + [sym_type_parameters] = STATE(4189), + [sym_argument_list] = STATE(1068), + [sym_or_block] = STATE(1064), + [ts_builtin_sym_end] = ACTIONS(1763), + [sym_identifier] = ACTIONS(1765), + [anon_sym_LF] = ACTIONS(1765), + [anon_sym_CR] = ACTIONS(1765), + [anon_sym_CR_LF] = ACTIONS(1765), [anon_sym_SLASH_SLASH] = ACTIONS(497), [anon_sym_SLASH_STAR] = ACTIONS(499), - [anon_sym_DOT] = ACTIONS(3480), - [anon_sym_as] = ACTIONS(1785), - [anon_sym_LBRACE] = ACTIONS(1785), - [anon_sym_const] = ACTIONS(1785), - [anon_sym_LPAREN] = ACTIONS(3486), - [anon_sym___global] = ACTIONS(1785), - [anon_sym_type] = ACTIONS(1785), - [anon_sym_PIPE] = ACTIONS(1785), - [anon_sym_fn] = ACTIONS(1785), - [anon_sym_PLUS] = ACTIONS(1785), - [anon_sym_DASH] = ACTIONS(1785), - [anon_sym_STAR] = ACTIONS(3528), - [anon_sym_SLASH] = ACTIONS(3528), - [anon_sym_PERCENT] = ACTIONS(3528), - [anon_sym_LT] = ACTIONS(1785), - [anon_sym_GT] = ACTIONS(1785), - [anon_sym_EQ_EQ] = ACTIONS(1785), - [anon_sym_BANG_EQ] = ACTIONS(1785), - [anon_sym_LT_EQ] = ACTIONS(1785), - [anon_sym_GT_EQ] = ACTIONS(1785), - [anon_sym_LBRACK] = ACTIONS(3494), - [anon_sym_struct] = ACTIONS(1785), - [anon_sym_union] = ACTIONS(1785), - [anon_sym_pub] = ACTIONS(1785), - [anon_sym_mut] = ACTIONS(1785), - [anon_sym_enum] = ACTIONS(1785), - [anon_sym_interface] = ACTIONS(1785), - [anon_sym_PLUS_PLUS] = ACTIONS(1785), - [anon_sym_DASH_DASH] = ACTIONS(1785), - [anon_sym_QMARK] = ACTIONS(3500), - [anon_sym_BANG] = ACTIONS(3502), - [anon_sym_go] = ACTIONS(1785), - [anon_sym_spawn] = ACTIONS(1785), - [anon_sym_json_DOTdecode] = ACTIONS(1785), - [anon_sym_LBRACK2] = ACTIONS(3504), - [anon_sym_TILDE] = ACTIONS(1785), - [anon_sym_CARET] = ACTIONS(1785), - [anon_sym_AMP] = ACTIONS(3528), - [anon_sym_LT_DASH] = ACTIONS(1785), - [anon_sym_LT_LT] = ACTIONS(3528), - [anon_sym_GT_GT] = ACTIONS(3528), - [anon_sym_GT_GT_GT] = ACTIONS(3528), - [anon_sym_AMP_CARET] = ACTIONS(3528), - [anon_sym_AMP_AMP] = ACTIONS(1785), - [anon_sym_PIPE_PIPE] = ACTIONS(1785), - [anon_sym_or] = ACTIONS(1785), - [sym_none] = ACTIONS(1785), - [sym_true] = ACTIONS(1785), - [sym_false] = ACTIONS(1785), - [sym_nil] = ACTIONS(1785), - [anon_sym_QMARK_DOT] = ACTIONS(3480), - [anon_sym_POUND_LBRACK] = ACTIONS(3504), - [anon_sym_if] = ACTIONS(1785), - [anon_sym_DOLLARif] = ACTIONS(1785), - [anon_sym_is] = ACTIONS(1785), - [anon_sym_BANGis] = ACTIONS(1785), - [anon_sym_in] = ACTIONS(1785), - [anon_sym_BANGin] = ACTIONS(1785), - [anon_sym_match] = ACTIONS(1785), - [anon_sym_select] = ACTIONS(1785), - [anon_sym_lock] = ACTIONS(1785), - [anon_sym_rlock] = ACTIONS(1785), - [anon_sym_unsafe] = ACTIONS(1785), - [anon_sym_sql] = ACTIONS(1785), - [sym_int_literal] = ACTIONS(1785), - [sym_float_literal] = ACTIONS(1785), - [sym_rune_literal] = ACTIONS(1785), - [sym_pseudo_compile_time_identifier] = ACTIONS(1785), - [anon_sym_shared] = ACTIONS(1785), - [anon_sym_map_LBRACK] = ACTIONS(1785), - [anon_sym_chan] = ACTIONS(1785), - [anon_sym_thread] = ACTIONS(1785), - [anon_sym_atomic] = ACTIONS(1785), - [anon_sym_assert] = ACTIONS(1785), - [anon_sym_defer] = ACTIONS(1785), - [anon_sym_goto] = ACTIONS(1785), - [anon_sym_break] = ACTIONS(1785), - [anon_sym_continue] = ACTIONS(1785), - [anon_sym_return] = ACTIONS(1785), - [anon_sym_DOLLARfor] = ACTIONS(1785), - [anon_sym_for] = ACTIONS(1785), - [anon_sym_POUND] = ACTIONS(1785), - [anon_sym_asm] = ACTIONS(1785), - [anon_sym_AT_LBRACK] = ACTIONS(1785), - [sym___double_quote] = ACTIONS(1785), - [sym___single_quote] = ACTIONS(1785), - [sym___c_double_quote] = ACTIONS(1785), - [sym___c_single_quote] = ACTIONS(1785), - [sym___r_double_quote] = ACTIONS(1785), - [sym___r_single_quote] = ACTIONS(1785), + [anon_sym_DOT] = ACTIONS(3486), + [anon_sym_as] = ACTIONS(1765), + [anon_sym_LBRACE] = ACTIONS(1765), + [anon_sym_const] = ACTIONS(1765), + [anon_sym_LPAREN] = ACTIONS(3492), + [anon_sym___global] = ACTIONS(1765), + [anon_sym_type] = ACTIONS(1765), + [anon_sym_PIPE] = ACTIONS(3534), + [anon_sym_fn] = ACTIONS(1765), + [anon_sym_PLUS] = ACTIONS(3534), + [anon_sym_DASH] = ACTIONS(3534), + [anon_sym_STAR] = ACTIONS(3536), + [anon_sym_SLASH] = ACTIONS(3536), + [anon_sym_PERCENT] = ACTIONS(3536), + [anon_sym_LT] = ACTIONS(3538), + [anon_sym_GT] = ACTIONS(3538), + [anon_sym_EQ_EQ] = ACTIONS(3538), + [anon_sym_BANG_EQ] = ACTIONS(3538), + [anon_sym_LT_EQ] = ACTIONS(3538), + [anon_sym_GT_EQ] = ACTIONS(3538), + [anon_sym_LBRACK] = ACTIONS(3500), + [anon_sym_struct] = ACTIONS(1765), + [anon_sym_union] = ACTIONS(1765), + [anon_sym_pub] = ACTIONS(1765), + [anon_sym_mut] = ACTIONS(1765), + [anon_sym_enum] = ACTIONS(1765), + [anon_sym_interface] = ACTIONS(1765), + [anon_sym_PLUS_PLUS] = ACTIONS(1765), + [anon_sym_DASH_DASH] = ACTIONS(1765), + [anon_sym_QMARK] = ACTIONS(3506), + [anon_sym_BANG] = ACTIONS(3508), + [anon_sym_go] = ACTIONS(1765), + [anon_sym_spawn] = ACTIONS(1765), + [anon_sym_json_DOTdecode] = ACTIONS(1765), + [anon_sym_LBRACK2] = ACTIONS(3510), + [anon_sym_TILDE] = ACTIONS(1765), + [anon_sym_CARET] = ACTIONS(3534), + [anon_sym_AMP] = ACTIONS(3536), + [anon_sym_LT_DASH] = ACTIONS(1765), + [anon_sym_LT_LT] = ACTIONS(3536), + [anon_sym_GT_GT] = ACTIONS(3536), + [anon_sym_GT_GT_GT] = ACTIONS(3536), + [anon_sym_AMP_CARET] = ACTIONS(3536), + [anon_sym_AMP_AMP] = ACTIONS(1765), + [anon_sym_PIPE_PIPE] = ACTIONS(1765), + [anon_sym_or] = ACTIONS(1765), + [sym_none] = ACTIONS(1765), + [sym_true] = ACTIONS(1765), + [sym_false] = ACTIONS(1765), + [sym_nil] = ACTIONS(1765), + [anon_sym_QMARK_DOT] = ACTIONS(3486), + [anon_sym_POUND_LBRACK] = ACTIONS(3510), + [anon_sym_if] = ACTIONS(1765), + [anon_sym_DOLLARif] = ACTIONS(1765), + [anon_sym_is] = ACTIONS(1765), + [anon_sym_BANGis] = ACTIONS(1765), + [anon_sym_in] = ACTIONS(3542), + [anon_sym_BANGin] = ACTIONS(3542), + [anon_sym_match] = ACTIONS(1765), + [anon_sym_select] = ACTIONS(1765), + [anon_sym_lock] = ACTIONS(1765), + [anon_sym_rlock] = ACTIONS(1765), + [anon_sym_unsafe] = ACTIONS(1765), + [anon_sym_sql] = ACTIONS(1765), + [sym_int_literal] = ACTIONS(1765), + [sym_float_literal] = ACTIONS(1765), + [sym_rune_literal] = ACTIONS(1765), + [sym_pseudo_compile_time_identifier] = ACTIONS(1765), + [anon_sym_shared] = ACTIONS(1765), + [anon_sym_map_LBRACK] = ACTIONS(1765), + [anon_sym_chan] = ACTIONS(1765), + [anon_sym_thread] = ACTIONS(1765), + [anon_sym_atomic] = ACTIONS(1765), + [anon_sym_assert] = ACTIONS(1765), + [anon_sym_defer] = ACTIONS(1765), + [anon_sym_goto] = ACTIONS(1765), + [anon_sym_break] = ACTIONS(1765), + [anon_sym_continue] = ACTIONS(1765), + [anon_sym_return] = ACTIONS(1765), + [anon_sym_DOLLARfor] = ACTIONS(1765), + [anon_sym_for] = ACTIONS(1765), + [anon_sym_POUND] = ACTIONS(1765), + [anon_sym_asm] = ACTIONS(1765), + [anon_sym_AT_LBRACK] = ACTIONS(1765), + [sym___double_quote] = ACTIONS(1765), + [sym___single_quote] = ACTIONS(1765), + [sym___c_double_quote] = ACTIONS(1765), + [sym___c_single_quote] = ACTIONS(1765), + [sym___r_double_quote] = ACTIONS(1765), + [sym___r_single_quote] = ACTIONS(1765), }, [976] = { [sym_line_comment] = STATE(976), [sym_block_comment] = STATE(976), - [sym_type_parameters] = STATE(4103), - [sym_argument_list] = STATE(1063), - [sym_or_block] = STATE(1069), - [ts_builtin_sym_end] = ACTIONS(3548), - [sym_identifier] = ACTIONS(3550), - [anon_sym_LF] = ACTIONS(3550), - [anon_sym_CR] = ACTIONS(3550), - [anon_sym_CR_LF] = ACTIONS(3550), + [sym_type_parameters] = STATE(4189), + [sym_argument_list] = STATE(1068), + [sym_or_block] = STATE(1064), + [ts_builtin_sym_end] = ACTIONS(3554), + [sym_identifier] = ACTIONS(3556), + [anon_sym_LF] = ACTIONS(3556), + [anon_sym_CR] = ACTIONS(3556), + [anon_sym_CR_LF] = ACTIONS(3556), [anon_sym_SLASH_SLASH] = ACTIONS(497), [anon_sym_SLASH_STAR] = ACTIONS(499), - [anon_sym_DOT] = ACTIONS(3480), - [anon_sym_as] = ACTIONS(3482), - [anon_sym_LBRACE] = ACTIONS(3550), - [anon_sym_const] = ACTIONS(3550), - [anon_sym_LPAREN] = ACTIONS(3486), - [anon_sym___global] = ACTIONS(3550), - [anon_sym_type] = ACTIONS(3550), - [anon_sym_PIPE] = ACTIONS(3526), - [anon_sym_fn] = ACTIONS(3550), - [anon_sym_PLUS] = ACTIONS(3526), - [anon_sym_DASH] = ACTIONS(3526), - [anon_sym_STAR] = ACTIONS(3528), - [anon_sym_SLASH] = ACTIONS(3528), - [anon_sym_PERCENT] = ACTIONS(3528), - [anon_sym_LT] = ACTIONS(3530), - [anon_sym_GT] = ACTIONS(3530), - [anon_sym_EQ_EQ] = ACTIONS(3530), - [anon_sym_BANG_EQ] = ACTIONS(3530), - [anon_sym_LT_EQ] = ACTIONS(3530), - [anon_sym_GT_EQ] = ACTIONS(3530), - [anon_sym_LBRACK] = ACTIONS(3494), - [anon_sym_struct] = ACTIONS(3550), - [anon_sym_union] = ACTIONS(3550), - [anon_sym_pub] = ACTIONS(3550), - [anon_sym_mut] = ACTIONS(3550), - [anon_sym_enum] = ACTIONS(3550), - [anon_sym_interface] = ACTIONS(3550), - [anon_sym_PLUS_PLUS] = ACTIONS(3496), - [anon_sym_DASH_DASH] = ACTIONS(3498), - [anon_sym_QMARK] = ACTIONS(3500), - [anon_sym_BANG] = ACTIONS(3502), - [anon_sym_go] = ACTIONS(3550), - [anon_sym_spawn] = ACTIONS(3550), - [anon_sym_json_DOTdecode] = ACTIONS(3550), - [anon_sym_LBRACK2] = ACTIONS(3504), - [anon_sym_TILDE] = ACTIONS(3550), - [anon_sym_CARET] = ACTIONS(3526), - [anon_sym_AMP] = ACTIONS(3528), - [anon_sym_LT_DASH] = ACTIONS(3550), - [anon_sym_LT_LT] = ACTIONS(3528), - [anon_sym_GT_GT] = ACTIONS(3528), - [anon_sym_GT_GT_GT] = ACTIONS(3528), - [anon_sym_AMP_CARET] = ACTIONS(3528), - [anon_sym_AMP_AMP] = ACTIONS(3532), - [anon_sym_PIPE_PIPE] = ACTIONS(3540), - [anon_sym_or] = ACTIONS(3510), - [sym_none] = ACTIONS(3550), - [sym_true] = ACTIONS(3550), - [sym_false] = ACTIONS(3550), - [sym_nil] = ACTIONS(3550), - [anon_sym_QMARK_DOT] = ACTIONS(3480), - [anon_sym_POUND_LBRACK] = ACTIONS(3504), - [anon_sym_if] = ACTIONS(3550), - [anon_sym_DOLLARif] = ACTIONS(3550), - [anon_sym_is] = ACTIONS(3512), - [anon_sym_BANGis] = ACTIONS(3512), - [anon_sym_in] = ACTIONS(3534), - [anon_sym_BANGin] = ACTIONS(3534), - [anon_sym_match] = ACTIONS(3550), - [anon_sym_select] = ACTIONS(3550), - [anon_sym_lock] = ACTIONS(3550), - [anon_sym_rlock] = ACTIONS(3550), - [anon_sym_unsafe] = ACTIONS(3550), - [anon_sym_sql] = ACTIONS(3550), - [sym_int_literal] = ACTIONS(3550), - [sym_float_literal] = ACTIONS(3550), - [sym_rune_literal] = ACTIONS(3550), - [sym_pseudo_compile_time_identifier] = ACTIONS(3550), - [anon_sym_shared] = ACTIONS(3550), - [anon_sym_map_LBRACK] = ACTIONS(3550), - [anon_sym_chan] = ACTIONS(3550), - [anon_sym_thread] = ACTIONS(3550), - [anon_sym_atomic] = ACTIONS(3550), - [anon_sym_assert] = ACTIONS(3550), - [anon_sym_defer] = ACTIONS(3550), - [anon_sym_goto] = ACTIONS(3550), - [anon_sym_break] = ACTIONS(3550), - [anon_sym_continue] = ACTIONS(3550), - [anon_sym_return] = ACTIONS(3550), - [anon_sym_DOLLARfor] = ACTIONS(3550), - [anon_sym_for] = ACTIONS(3550), - [anon_sym_POUND] = ACTIONS(3550), - [anon_sym_asm] = ACTIONS(3550), - [anon_sym_AT_LBRACK] = ACTIONS(3550), - [sym___double_quote] = ACTIONS(3550), - [sym___single_quote] = ACTIONS(3550), - [sym___c_double_quote] = ACTIONS(3550), - [sym___c_single_quote] = ACTIONS(3550), - [sym___r_double_quote] = ACTIONS(3550), - [sym___r_single_quote] = ACTIONS(3550), + [anon_sym_DOT] = ACTIONS(3486), + [anon_sym_as] = ACTIONS(3488), + [anon_sym_LBRACE] = ACTIONS(3556), + [anon_sym_const] = ACTIONS(3556), + [anon_sym_LPAREN] = ACTIONS(3492), + [anon_sym___global] = ACTIONS(3556), + [anon_sym_type] = ACTIONS(3556), + [anon_sym_PIPE] = ACTIONS(3534), + [anon_sym_fn] = ACTIONS(3556), + [anon_sym_PLUS] = ACTIONS(3534), + [anon_sym_DASH] = ACTIONS(3534), + [anon_sym_STAR] = ACTIONS(3536), + [anon_sym_SLASH] = ACTIONS(3536), + [anon_sym_PERCENT] = ACTIONS(3536), + [anon_sym_LT] = ACTIONS(3538), + [anon_sym_GT] = ACTIONS(3538), + [anon_sym_EQ_EQ] = ACTIONS(3538), + [anon_sym_BANG_EQ] = ACTIONS(3538), + [anon_sym_LT_EQ] = ACTIONS(3538), + [anon_sym_GT_EQ] = ACTIONS(3538), + [anon_sym_LBRACK] = ACTIONS(3500), + [anon_sym_struct] = ACTIONS(3556), + [anon_sym_union] = ACTIONS(3556), + [anon_sym_pub] = ACTIONS(3556), + [anon_sym_mut] = ACTIONS(3556), + [anon_sym_enum] = ACTIONS(3556), + [anon_sym_interface] = ACTIONS(3556), + [anon_sym_PLUS_PLUS] = ACTIONS(3502), + [anon_sym_DASH_DASH] = ACTIONS(3504), + [anon_sym_QMARK] = ACTIONS(3506), + [anon_sym_BANG] = ACTIONS(3508), + [anon_sym_go] = ACTIONS(3556), + [anon_sym_spawn] = ACTIONS(3556), + [anon_sym_json_DOTdecode] = ACTIONS(3556), + [anon_sym_LBRACK2] = ACTIONS(3510), + [anon_sym_TILDE] = ACTIONS(3556), + [anon_sym_CARET] = ACTIONS(3534), + [anon_sym_AMP] = ACTIONS(3536), + [anon_sym_LT_DASH] = ACTIONS(3556), + [anon_sym_LT_LT] = ACTIONS(3536), + [anon_sym_GT_GT] = ACTIONS(3536), + [anon_sym_GT_GT_GT] = ACTIONS(3536), + [anon_sym_AMP_CARET] = ACTIONS(3536), + [anon_sym_AMP_AMP] = ACTIONS(3540), + [anon_sym_PIPE_PIPE] = ACTIONS(3544), + [anon_sym_or] = ACTIONS(3516), + [sym_none] = ACTIONS(3556), + [sym_true] = ACTIONS(3556), + [sym_false] = ACTIONS(3556), + [sym_nil] = ACTIONS(3556), + [anon_sym_QMARK_DOT] = ACTIONS(3486), + [anon_sym_POUND_LBRACK] = ACTIONS(3510), + [anon_sym_if] = ACTIONS(3556), + [anon_sym_DOLLARif] = ACTIONS(3556), + [anon_sym_is] = ACTIONS(3518), + [anon_sym_BANGis] = ACTIONS(3518), + [anon_sym_in] = ACTIONS(3542), + [anon_sym_BANGin] = ACTIONS(3542), + [anon_sym_match] = ACTIONS(3556), + [anon_sym_select] = ACTIONS(3556), + [anon_sym_lock] = ACTIONS(3556), + [anon_sym_rlock] = ACTIONS(3556), + [anon_sym_unsafe] = ACTIONS(3556), + [anon_sym_sql] = ACTIONS(3556), + [sym_int_literal] = ACTIONS(3556), + [sym_float_literal] = ACTIONS(3556), + [sym_rune_literal] = ACTIONS(3556), + [sym_pseudo_compile_time_identifier] = ACTIONS(3556), + [anon_sym_shared] = ACTIONS(3556), + [anon_sym_map_LBRACK] = ACTIONS(3556), + [anon_sym_chan] = ACTIONS(3556), + [anon_sym_thread] = ACTIONS(3556), + [anon_sym_atomic] = ACTIONS(3556), + [anon_sym_assert] = ACTIONS(3556), + [anon_sym_defer] = ACTIONS(3556), + [anon_sym_goto] = ACTIONS(3556), + [anon_sym_break] = ACTIONS(3556), + [anon_sym_continue] = ACTIONS(3556), + [anon_sym_return] = ACTIONS(3556), + [anon_sym_DOLLARfor] = ACTIONS(3556), + [anon_sym_for] = ACTIONS(3556), + [anon_sym_POUND] = ACTIONS(3556), + [anon_sym_asm] = ACTIONS(3556), + [anon_sym_AT_LBRACK] = ACTIONS(3556), + [sym___double_quote] = ACTIONS(3556), + [sym___single_quote] = ACTIONS(3556), + [sym___c_double_quote] = ACTIONS(3556), + [sym___c_single_quote] = ACTIONS(3556), + [sym___r_double_quote] = ACTIONS(3556), + [sym___r_single_quote] = ACTIONS(3556), }, [977] = { [sym_line_comment] = STATE(977), [sym_block_comment] = STATE(977), - [sym_type_parameters] = STATE(4103), - [sym_argument_list] = STATE(1063), - [sym_or_block] = STATE(1069), - [ts_builtin_sym_end] = ACTIONS(1779), - [sym_identifier] = ACTIONS(1781), - [anon_sym_LF] = ACTIONS(1781), - [anon_sym_CR] = ACTIONS(1781), - [anon_sym_CR_LF] = ACTIONS(1781), + [sym_type_parameters] = STATE(4189), + [sym_argument_list] = STATE(1068), + [sym_or_block] = STATE(1064), + [ts_builtin_sym_end] = ACTIONS(1793), + [sym_identifier] = ACTIONS(1795), + [anon_sym_LF] = ACTIONS(1795), + [anon_sym_CR] = ACTIONS(1795), + [anon_sym_CR_LF] = ACTIONS(1795), [anon_sym_SLASH_SLASH] = ACTIONS(497), [anon_sym_SLASH_STAR] = ACTIONS(499), - [anon_sym_DOT] = ACTIONS(3480), - [anon_sym_as] = ACTIONS(3482), - [anon_sym_LBRACE] = ACTIONS(1781), - [anon_sym_const] = ACTIONS(1781), - [anon_sym_LPAREN] = ACTIONS(3486), - [anon_sym___global] = ACTIONS(1781), - [anon_sym_type] = ACTIONS(1781), - [anon_sym_PIPE] = ACTIONS(3526), - [anon_sym_fn] = ACTIONS(1781), - [anon_sym_PLUS] = ACTIONS(3526), - [anon_sym_DASH] = ACTIONS(3526), - [anon_sym_STAR] = ACTIONS(3528), - [anon_sym_SLASH] = ACTIONS(3528), - [anon_sym_PERCENT] = ACTIONS(3528), - [anon_sym_LT] = ACTIONS(3530), - [anon_sym_GT] = ACTIONS(3530), - [anon_sym_EQ_EQ] = ACTIONS(3530), - [anon_sym_BANG_EQ] = ACTIONS(3530), - [anon_sym_LT_EQ] = ACTIONS(3530), - [anon_sym_GT_EQ] = ACTIONS(3530), - [anon_sym_LBRACK] = ACTIONS(3494), - [anon_sym_struct] = ACTIONS(1781), - [anon_sym_union] = ACTIONS(1781), - [anon_sym_pub] = ACTIONS(1781), - [anon_sym_mut] = ACTIONS(1781), - [anon_sym_enum] = ACTIONS(1781), - [anon_sym_interface] = ACTIONS(1781), - [anon_sym_PLUS_PLUS] = ACTIONS(3496), - [anon_sym_DASH_DASH] = ACTIONS(3498), - [anon_sym_QMARK] = ACTIONS(3500), - [anon_sym_BANG] = ACTIONS(3502), - [anon_sym_go] = ACTIONS(1781), - [anon_sym_spawn] = ACTIONS(1781), - [anon_sym_json_DOTdecode] = ACTIONS(1781), - [anon_sym_LBRACK2] = ACTIONS(3504), - [anon_sym_TILDE] = ACTIONS(1781), - [anon_sym_CARET] = ACTIONS(3526), - [anon_sym_AMP] = ACTIONS(3528), - [anon_sym_LT_DASH] = ACTIONS(1781), - [anon_sym_LT_LT] = ACTIONS(3528), - [anon_sym_GT_GT] = ACTIONS(3528), - [anon_sym_GT_GT_GT] = ACTIONS(3528), - [anon_sym_AMP_CARET] = ACTIONS(3528), - [anon_sym_AMP_AMP] = ACTIONS(3532), - [anon_sym_PIPE_PIPE] = ACTIONS(3540), - [anon_sym_or] = ACTIONS(3510), - [sym_none] = ACTIONS(1781), - [sym_true] = ACTIONS(1781), - [sym_false] = ACTIONS(1781), - [sym_nil] = ACTIONS(1781), - [anon_sym_QMARK_DOT] = ACTIONS(3480), - [anon_sym_POUND_LBRACK] = ACTIONS(3504), - [anon_sym_if] = ACTIONS(1781), - [anon_sym_DOLLARif] = ACTIONS(1781), - [anon_sym_is] = ACTIONS(3512), - [anon_sym_BANGis] = ACTIONS(3512), - [anon_sym_in] = ACTIONS(3534), - [anon_sym_BANGin] = ACTIONS(3534), - [anon_sym_match] = ACTIONS(1781), - [anon_sym_select] = ACTIONS(1781), - [anon_sym_lock] = ACTIONS(1781), - [anon_sym_rlock] = ACTIONS(1781), - [anon_sym_unsafe] = ACTIONS(1781), - [anon_sym_sql] = ACTIONS(1781), - [sym_int_literal] = ACTIONS(1781), - [sym_float_literal] = ACTIONS(1781), - [sym_rune_literal] = ACTIONS(1781), - [sym_pseudo_compile_time_identifier] = ACTIONS(1781), - [anon_sym_shared] = ACTIONS(1781), - [anon_sym_map_LBRACK] = ACTIONS(1781), - [anon_sym_chan] = ACTIONS(1781), - [anon_sym_thread] = ACTIONS(1781), - [anon_sym_atomic] = ACTIONS(1781), - [anon_sym_assert] = ACTIONS(1781), - [anon_sym_defer] = ACTIONS(1781), - [anon_sym_goto] = ACTIONS(1781), - [anon_sym_break] = ACTIONS(1781), - [anon_sym_continue] = ACTIONS(1781), - [anon_sym_return] = ACTIONS(1781), - [anon_sym_DOLLARfor] = ACTIONS(1781), - [anon_sym_for] = ACTIONS(1781), - [anon_sym_POUND] = ACTIONS(1781), - [anon_sym_asm] = ACTIONS(1781), - [anon_sym_AT_LBRACK] = ACTIONS(1781), - [sym___double_quote] = ACTIONS(1781), - [sym___single_quote] = ACTIONS(1781), - [sym___c_double_quote] = ACTIONS(1781), - [sym___c_single_quote] = ACTIONS(1781), - [sym___r_double_quote] = ACTIONS(1781), - [sym___r_single_quote] = ACTIONS(1781), + [anon_sym_DOT] = ACTIONS(3486), + [anon_sym_as] = ACTIONS(3488), + [anon_sym_LBRACE] = ACTIONS(1795), + [anon_sym_const] = ACTIONS(1795), + [anon_sym_LPAREN] = ACTIONS(3492), + [anon_sym___global] = ACTIONS(1795), + [anon_sym_type] = ACTIONS(1795), + [anon_sym_PIPE] = ACTIONS(3534), + [anon_sym_fn] = ACTIONS(1795), + [anon_sym_PLUS] = ACTIONS(3534), + [anon_sym_DASH] = ACTIONS(3534), + [anon_sym_STAR] = ACTIONS(3536), + [anon_sym_SLASH] = ACTIONS(3536), + [anon_sym_PERCENT] = ACTIONS(3536), + [anon_sym_LT] = ACTIONS(3538), + [anon_sym_GT] = ACTIONS(3538), + [anon_sym_EQ_EQ] = ACTIONS(3538), + [anon_sym_BANG_EQ] = ACTIONS(3538), + [anon_sym_LT_EQ] = ACTIONS(3538), + [anon_sym_GT_EQ] = ACTIONS(3538), + [anon_sym_LBRACK] = ACTIONS(3500), + [anon_sym_struct] = ACTIONS(1795), + [anon_sym_union] = ACTIONS(1795), + [anon_sym_pub] = ACTIONS(1795), + [anon_sym_mut] = ACTIONS(1795), + [anon_sym_enum] = ACTIONS(1795), + [anon_sym_interface] = ACTIONS(1795), + [anon_sym_PLUS_PLUS] = ACTIONS(3502), + [anon_sym_DASH_DASH] = ACTIONS(3504), + [anon_sym_QMARK] = ACTIONS(3506), + [anon_sym_BANG] = ACTIONS(3508), + [anon_sym_go] = ACTIONS(1795), + [anon_sym_spawn] = ACTIONS(1795), + [anon_sym_json_DOTdecode] = ACTIONS(1795), + [anon_sym_LBRACK2] = ACTIONS(3510), + [anon_sym_TILDE] = ACTIONS(1795), + [anon_sym_CARET] = ACTIONS(3534), + [anon_sym_AMP] = ACTIONS(3536), + [anon_sym_LT_DASH] = ACTIONS(1795), + [anon_sym_LT_LT] = ACTIONS(3536), + [anon_sym_GT_GT] = ACTIONS(3536), + [anon_sym_GT_GT_GT] = ACTIONS(3536), + [anon_sym_AMP_CARET] = ACTIONS(3536), + [anon_sym_AMP_AMP] = ACTIONS(3540), + [anon_sym_PIPE_PIPE] = ACTIONS(3544), + [anon_sym_or] = ACTIONS(3516), + [sym_none] = ACTIONS(1795), + [sym_true] = ACTIONS(1795), + [sym_false] = ACTIONS(1795), + [sym_nil] = ACTIONS(1795), + [anon_sym_QMARK_DOT] = ACTIONS(3486), + [anon_sym_POUND_LBRACK] = ACTIONS(3510), + [anon_sym_if] = ACTIONS(1795), + [anon_sym_DOLLARif] = ACTIONS(1795), + [anon_sym_is] = ACTIONS(3518), + [anon_sym_BANGis] = ACTIONS(3518), + [anon_sym_in] = ACTIONS(3542), + [anon_sym_BANGin] = ACTIONS(3542), + [anon_sym_match] = ACTIONS(1795), + [anon_sym_select] = ACTIONS(1795), + [anon_sym_lock] = ACTIONS(1795), + [anon_sym_rlock] = ACTIONS(1795), + [anon_sym_unsafe] = ACTIONS(1795), + [anon_sym_sql] = ACTIONS(1795), + [sym_int_literal] = ACTIONS(1795), + [sym_float_literal] = ACTIONS(1795), + [sym_rune_literal] = ACTIONS(1795), + [sym_pseudo_compile_time_identifier] = ACTIONS(1795), + [anon_sym_shared] = ACTIONS(1795), + [anon_sym_map_LBRACK] = ACTIONS(1795), + [anon_sym_chan] = ACTIONS(1795), + [anon_sym_thread] = ACTIONS(1795), + [anon_sym_atomic] = ACTIONS(1795), + [anon_sym_assert] = ACTIONS(1795), + [anon_sym_defer] = ACTIONS(1795), + [anon_sym_goto] = ACTIONS(1795), + [anon_sym_break] = ACTIONS(1795), + [anon_sym_continue] = ACTIONS(1795), + [anon_sym_return] = ACTIONS(1795), + [anon_sym_DOLLARfor] = ACTIONS(1795), + [anon_sym_for] = ACTIONS(1795), + [anon_sym_POUND] = ACTIONS(1795), + [anon_sym_asm] = ACTIONS(1795), + [anon_sym_AT_LBRACK] = ACTIONS(1795), + [sym___double_quote] = ACTIONS(1795), + [sym___single_quote] = ACTIONS(1795), + [sym___c_double_quote] = ACTIONS(1795), + [sym___c_single_quote] = ACTIONS(1795), + [sym___r_double_quote] = ACTIONS(1795), + [sym___r_single_quote] = ACTIONS(1795), }, [978] = { [sym_line_comment] = STATE(978), [sym_block_comment] = STATE(978), - [sym_type_parameters] = STATE(4103), - [sym_argument_list] = STATE(1063), - [sym_or_block] = STATE(1069), - [ts_builtin_sym_end] = ACTIONS(3552), - [sym_identifier] = ACTIONS(3554), - [anon_sym_LF] = ACTIONS(3554), - [anon_sym_CR] = ACTIONS(3554), - [anon_sym_CR_LF] = ACTIONS(3554), + [sym_type_parameters] = STATE(4189), + [sym_argument_list] = STATE(1068), + [sym_or_block] = STATE(1064), + [ts_builtin_sym_end] = ACTIONS(3558), + [sym_identifier] = ACTIONS(3560), + [anon_sym_LF] = ACTIONS(3560), + [anon_sym_CR] = ACTIONS(3560), + [anon_sym_CR_LF] = ACTIONS(3560), [anon_sym_SLASH_SLASH] = ACTIONS(497), [anon_sym_SLASH_STAR] = ACTIONS(499), - [anon_sym_DOT] = ACTIONS(3480), - [anon_sym_as] = ACTIONS(3482), - [anon_sym_LBRACE] = ACTIONS(3554), - [anon_sym_const] = ACTIONS(3554), - [anon_sym_LPAREN] = ACTIONS(3486), - [anon_sym___global] = ACTIONS(3554), - [anon_sym_type] = ACTIONS(3554), - [anon_sym_PIPE] = ACTIONS(3526), - [anon_sym_fn] = ACTIONS(3554), - [anon_sym_PLUS] = ACTIONS(3526), - [anon_sym_DASH] = ACTIONS(3526), - [anon_sym_STAR] = ACTIONS(3528), - [anon_sym_SLASH] = ACTIONS(3528), - [anon_sym_PERCENT] = ACTIONS(3528), - [anon_sym_LT] = ACTIONS(3530), - [anon_sym_GT] = ACTIONS(3530), - [anon_sym_EQ_EQ] = ACTIONS(3530), - [anon_sym_BANG_EQ] = ACTIONS(3530), - [anon_sym_LT_EQ] = ACTIONS(3530), - [anon_sym_GT_EQ] = ACTIONS(3530), - [anon_sym_LBRACK] = ACTIONS(3494), - [anon_sym_struct] = ACTIONS(3554), - [anon_sym_union] = ACTIONS(3554), - [anon_sym_pub] = ACTIONS(3554), - [anon_sym_mut] = ACTIONS(3554), - [anon_sym_enum] = ACTIONS(3554), - [anon_sym_interface] = ACTIONS(3554), - [anon_sym_PLUS_PLUS] = ACTIONS(3496), - [anon_sym_DASH_DASH] = ACTIONS(3498), - [anon_sym_QMARK] = ACTIONS(3500), - [anon_sym_BANG] = ACTIONS(3502), - [anon_sym_go] = ACTIONS(3554), - [anon_sym_spawn] = ACTIONS(3554), - [anon_sym_json_DOTdecode] = ACTIONS(3554), - [anon_sym_LBRACK2] = ACTIONS(3504), - [anon_sym_TILDE] = ACTIONS(3554), - [anon_sym_CARET] = ACTIONS(3526), - [anon_sym_AMP] = ACTIONS(3528), - [anon_sym_LT_DASH] = ACTIONS(3554), - [anon_sym_LT_LT] = ACTIONS(3528), - [anon_sym_GT_GT] = ACTIONS(3528), - [anon_sym_GT_GT_GT] = ACTIONS(3528), - [anon_sym_AMP_CARET] = ACTIONS(3528), - [anon_sym_AMP_AMP] = ACTIONS(3532), - [anon_sym_PIPE_PIPE] = ACTIONS(3540), - [anon_sym_or] = ACTIONS(3510), - [sym_none] = ACTIONS(3554), - [sym_true] = ACTIONS(3554), - [sym_false] = ACTIONS(3554), - [sym_nil] = ACTIONS(3554), - [anon_sym_QMARK_DOT] = ACTIONS(3480), - [anon_sym_POUND_LBRACK] = ACTIONS(3504), - [anon_sym_if] = ACTIONS(3554), - [anon_sym_DOLLARif] = ACTIONS(3554), - [anon_sym_is] = ACTIONS(3512), - [anon_sym_BANGis] = ACTIONS(3512), - [anon_sym_in] = ACTIONS(3534), - [anon_sym_BANGin] = ACTIONS(3534), - [anon_sym_match] = ACTIONS(3554), - [anon_sym_select] = ACTIONS(3554), - [anon_sym_lock] = ACTIONS(3554), - [anon_sym_rlock] = ACTIONS(3554), - [anon_sym_unsafe] = ACTIONS(3554), - [anon_sym_sql] = ACTIONS(3554), - [sym_int_literal] = ACTIONS(3554), - [sym_float_literal] = ACTIONS(3554), - [sym_rune_literal] = ACTIONS(3554), - [sym_pseudo_compile_time_identifier] = ACTIONS(3554), - [anon_sym_shared] = ACTIONS(3554), - [anon_sym_map_LBRACK] = ACTIONS(3554), - [anon_sym_chan] = ACTIONS(3554), - [anon_sym_thread] = ACTIONS(3554), - [anon_sym_atomic] = ACTIONS(3554), - [anon_sym_assert] = ACTIONS(3554), - [anon_sym_defer] = ACTIONS(3554), - [anon_sym_goto] = ACTIONS(3554), - [anon_sym_break] = ACTIONS(3554), - [anon_sym_continue] = ACTIONS(3554), - [anon_sym_return] = ACTIONS(3554), - [anon_sym_DOLLARfor] = ACTIONS(3554), - [anon_sym_for] = ACTIONS(3554), - [anon_sym_POUND] = ACTIONS(3554), - [anon_sym_asm] = ACTIONS(3554), - [anon_sym_AT_LBRACK] = ACTIONS(3554), - [sym___double_quote] = ACTIONS(3554), - [sym___single_quote] = ACTIONS(3554), - [sym___c_double_quote] = ACTIONS(3554), - [sym___c_single_quote] = ACTIONS(3554), - [sym___r_double_quote] = ACTIONS(3554), - [sym___r_single_quote] = ACTIONS(3554), + [anon_sym_DOT] = ACTIONS(3486), + [anon_sym_as] = ACTIONS(3488), + [anon_sym_LBRACE] = ACTIONS(3560), + [anon_sym_const] = ACTIONS(3560), + [anon_sym_LPAREN] = ACTIONS(3492), + [anon_sym___global] = ACTIONS(3560), + [anon_sym_type] = ACTIONS(3560), + [anon_sym_PIPE] = ACTIONS(3534), + [anon_sym_fn] = ACTIONS(3560), + [anon_sym_PLUS] = ACTIONS(3560), + [anon_sym_DASH] = ACTIONS(3560), + [anon_sym_STAR] = ACTIONS(3560), + [anon_sym_SLASH] = ACTIONS(3536), + [anon_sym_PERCENT] = ACTIONS(3536), + [anon_sym_LT] = ACTIONS(3538), + [anon_sym_GT] = ACTIONS(3538), + [anon_sym_EQ_EQ] = ACTIONS(3538), + [anon_sym_BANG_EQ] = ACTIONS(3538), + [anon_sym_LT_EQ] = ACTIONS(3538), + [anon_sym_GT_EQ] = ACTIONS(3538), + [anon_sym_LBRACK] = ACTIONS(3500), + [anon_sym_struct] = ACTIONS(3560), + [anon_sym_union] = ACTIONS(3560), + [anon_sym_pub] = ACTIONS(3560), + [anon_sym_mut] = ACTIONS(3560), + [anon_sym_enum] = ACTIONS(3560), + [anon_sym_interface] = ACTIONS(3560), + [anon_sym_PLUS_PLUS] = ACTIONS(3502), + [anon_sym_DASH_DASH] = ACTIONS(3504), + [anon_sym_QMARK] = ACTIONS(3506), + [anon_sym_BANG] = ACTIONS(3508), + [anon_sym_go] = ACTIONS(3560), + [anon_sym_spawn] = ACTIONS(3560), + [anon_sym_json_DOTdecode] = ACTIONS(3560), + [anon_sym_LBRACK2] = ACTIONS(3510), + [anon_sym_TILDE] = ACTIONS(3560), + [anon_sym_CARET] = ACTIONS(3560), + [anon_sym_AMP] = ACTIONS(3560), + [anon_sym_LT_DASH] = ACTIONS(3560), + [anon_sym_LT_LT] = ACTIONS(3536), + [anon_sym_GT_GT] = ACTIONS(3536), + [anon_sym_GT_GT_GT] = ACTIONS(3536), + [anon_sym_AMP_CARET] = ACTIONS(3536), + [anon_sym_AMP_AMP] = ACTIONS(3540), + [anon_sym_PIPE_PIPE] = ACTIONS(3544), + [anon_sym_or] = ACTIONS(3516), + [sym_none] = ACTIONS(3560), + [sym_true] = ACTIONS(3560), + [sym_false] = ACTIONS(3560), + [sym_nil] = ACTIONS(3560), + [anon_sym_QMARK_DOT] = ACTIONS(3486), + [anon_sym_POUND_LBRACK] = ACTIONS(3510), + [anon_sym_if] = ACTIONS(3560), + [anon_sym_DOLLARif] = ACTIONS(3560), + [anon_sym_is] = ACTIONS(3518), + [anon_sym_BANGis] = ACTIONS(3518), + [anon_sym_in] = ACTIONS(3542), + [anon_sym_BANGin] = ACTIONS(3542), + [anon_sym_match] = ACTIONS(3560), + [anon_sym_select] = ACTIONS(3560), + [anon_sym_lock] = ACTIONS(3560), + [anon_sym_rlock] = ACTIONS(3560), + [anon_sym_unsafe] = ACTIONS(3560), + [anon_sym_sql] = ACTIONS(3560), + [sym_int_literal] = ACTIONS(3560), + [sym_float_literal] = ACTIONS(3560), + [sym_rune_literal] = ACTIONS(3560), + [sym_pseudo_compile_time_identifier] = ACTIONS(3560), + [anon_sym_shared] = ACTIONS(3560), + [anon_sym_map_LBRACK] = ACTIONS(3560), + [anon_sym_chan] = ACTIONS(3560), + [anon_sym_thread] = ACTIONS(3560), + [anon_sym_atomic] = ACTIONS(3560), + [anon_sym_assert] = ACTIONS(3560), + [anon_sym_defer] = ACTIONS(3560), + [anon_sym_goto] = ACTIONS(3560), + [anon_sym_break] = ACTIONS(3560), + [anon_sym_continue] = ACTIONS(3560), + [anon_sym_return] = ACTIONS(3560), + [anon_sym_DOLLARfor] = ACTIONS(3560), + [anon_sym_for] = ACTIONS(3560), + [anon_sym_POUND] = ACTIONS(3560), + [anon_sym_asm] = ACTIONS(3560), + [anon_sym_AT_LBRACK] = ACTIONS(3560), + [sym___double_quote] = ACTIONS(3560), + [sym___single_quote] = ACTIONS(3560), + [sym___c_double_quote] = ACTIONS(3560), + [sym___c_single_quote] = ACTIONS(3560), + [sym___r_double_quote] = ACTIONS(3560), + [sym___r_single_quote] = ACTIONS(3560), }, [979] = { [sym_line_comment] = STATE(979), [sym_block_comment] = STATE(979), - [ts_builtin_sym_end] = ACTIONS(1843), - [sym_identifier] = ACTIONS(1845), - [anon_sym_LF] = ACTIONS(1845), - [anon_sym_CR] = ACTIONS(1845), - [anon_sym_CR_LF] = ACTIONS(1845), + [sym_else_branch] = STATE(1007), + [ts_builtin_sym_end] = ACTIONS(1797), + [sym_identifier] = ACTIONS(1799), + [anon_sym_LF] = ACTIONS(1799), + [anon_sym_CR] = ACTIONS(1799), + [anon_sym_CR_LF] = ACTIONS(1799), [anon_sym_SLASH_SLASH] = ACTIONS(497), [anon_sym_SLASH_STAR] = ACTIONS(499), - [anon_sym_DOT] = ACTIONS(1845), - [anon_sym_as] = ACTIONS(1845), - [anon_sym_LBRACE] = ACTIONS(1845), - [anon_sym_COMMA] = ACTIONS(1845), - [anon_sym_const] = ACTIONS(1845), - [anon_sym_LPAREN] = ACTIONS(1845), - [anon_sym___global] = ACTIONS(1845), - [anon_sym_type] = ACTIONS(1845), - [anon_sym_PIPE] = ACTIONS(1845), - [anon_sym_fn] = ACTIONS(1845), - [anon_sym_PLUS] = ACTIONS(1845), - [anon_sym_DASH] = ACTIONS(1845), - [anon_sym_STAR] = ACTIONS(1845), - [anon_sym_SLASH] = ACTIONS(1845), - [anon_sym_PERCENT] = ACTIONS(1845), - [anon_sym_LT] = ACTIONS(1845), - [anon_sym_GT] = ACTIONS(1845), - [anon_sym_EQ_EQ] = ACTIONS(1845), - [anon_sym_BANG_EQ] = ACTIONS(1845), - [anon_sym_LT_EQ] = ACTIONS(1845), - [anon_sym_GT_EQ] = ACTIONS(1845), - [anon_sym_LBRACK] = ACTIONS(1843), - [anon_sym_struct] = ACTIONS(1845), - [anon_sym_union] = ACTIONS(1845), - [anon_sym_pub] = ACTIONS(1845), - [anon_sym_mut] = ACTIONS(1845), - [anon_sym_enum] = ACTIONS(1845), - [anon_sym_interface] = ACTIONS(1845), - [anon_sym_PLUS_PLUS] = ACTIONS(1845), - [anon_sym_DASH_DASH] = ACTIONS(1845), - [anon_sym_QMARK] = ACTIONS(1845), - [anon_sym_BANG] = ACTIONS(1845), - [anon_sym_go] = ACTIONS(1845), - [anon_sym_spawn] = ACTIONS(1845), - [anon_sym_json_DOTdecode] = ACTIONS(1845), - [anon_sym_LBRACK2] = ACTIONS(1845), - [anon_sym_TILDE] = ACTIONS(1845), - [anon_sym_CARET] = ACTIONS(1845), - [anon_sym_AMP] = ACTIONS(1845), - [anon_sym_LT_DASH] = ACTIONS(1845), - [anon_sym_LT_LT] = ACTIONS(1845), - [anon_sym_GT_GT] = ACTIONS(1845), - [anon_sym_GT_GT_GT] = ACTIONS(1845), - [anon_sym_AMP_CARET] = ACTIONS(1845), - [anon_sym_AMP_AMP] = ACTIONS(1845), - [anon_sym_PIPE_PIPE] = ACTIONS(1845), - [anon_sym_or] = ACTIONS(1845), - [sym_none] = ACTIONS(1845), - [sym_true] = ACTIONS(1845), - [sym_false] = ACTIONS(1845), - [sym_nil] = ACTIONS(1845), - [anon_sym_QMARK_DOT] = ACTIONS(1845), - [anon_sym_POUND_LBRACK] = ACTIONS(1845), - [anon_sym_if] = ACTIONS(1845), - [anon_sym_DOLLARif] = ACTIONS(1845), - [anon_sym_DOLLARelse] = ACTIONS(1845), - [anon_sym_is] = ACTIONS(1845), - [anon_sym_BANGis] = ACTIONS(1845), - [anon_sym_in] = ACTIONS(1845), - [anon_sym_BANGin] = ACTIONS(1845), - [anon_sym_match] = ACTIONS(1845), - [anon_sym_select] = ACTIONS(1845), - [anon_sym_lock] = ACTIONS(1845), - [anon_sym_rlock] = ACTIONS(1845), - [anon_sym_unsafe] = ACTIONS(1845), - [anon_sym_sql] = ACTIONS(1845), - [sym_int_literal] = ACTIONS(1845), - [sym_float_literal] = ACTIONS(1845), - [sym_rune_literal] = ACTIONS(1845), - [sym_pseudo_compile_time_identifier] = ACTIONS(1845), - [anon_sym_shared] = ACTIONS(1845), - [anon_sym_map_LBRACK] = ACTIONS(1845), - [anon_sym_chan] = ACTIONS(1845), - [anon_sym_thread] = ACTIONS(1845), - [anon_sym_atomic] = ACTIONS(1845), - [anon_sym_assert] = ACTIONS(1845), - [anon_sym_defer] = ACTIONS(1845), - [anon_sym_goto] = ACTIONS(1845), - [anon_sym_break] = ACTIONS(1845), - [anon_sym_continue] = ACTIONS(1845), - [anon_sym_return] = ACTIONS(1845), - [anon_sym_DOLLARfor] = ACTIONS(1845), - [anon_sym_for] = ACTIONS(1845), - [anon_sym_POUND] = ACTIONS(1845), - [anon_sym_asm] = ACTIONS(1845), - [anon_sym_AT_LBRACK] = ACTIONS(1845), - [sym___double_quote] = ACTIONS(1845), - [sym___single_quote] = ACTIONS(1845), - [sym___c_double_quote] = ACTIONS(1845), - [sym___c_single_quote] = ACTIONS(1845), - [sym___r_double_quote] = ACTIONS(1845), - [sym___r_single_quote] = ACTIONS(1845), - }, - [980] = { - [sym_line_comment] = STATE(980), - [sym_block_comment] = STATE(980), - [sym_reference_expression] = STATE(4495), - [sym_type_reference_expression] = STATE(3541), - [sym_plain_type] = STATE(2391), - [sym__plain_type_without_special] = STATE(2302), - [sym_anon_struct_type] = STATE(2303), - [sym_multi_return_type] = STATE(2302), - [sym_result_type] = STATE(2302), - [sym_option_type] = STATE(2302), - [sym_qualified_type] = STATE(3541), - [sym_fixed_array_type] = STATE(2303), - [sym_array_type] = STATE(2303), - [sym_pointer_type] = STATE(2303), - [sym_wrong_pointer_type] = STATE(2303), - [sym_map_type] = STATE(2303), - [sym_channel_type] = STATE(2303), - [sym_shared_type] = STATE(2303), - [sym_thread_type] = STATE(2303), - [sym_atomic_type] = STATE(2303), - [sym_generic_type] = STATE(2303), - [sym_function_type] = STATE(2303), - [sym_identifier] = ACTIONS(623), - [anon_sym_SLASH_SLASH] = ACTIONS(3), - [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(623), - [anon_sym_as] = ACTIONS(623), - [anon_sym_LBRACE] = ACTIONS(621), - [anon_sym_COMMA] = ACTIONS(621), - [anon_sym_RBRACE] = ACTIONS(621), - [anon_sym_LPAREN] = ACTIONS(621), - [anon_sym_PIPE] = ACTIONS(623), - [anon_sym_fn] = ACTIONS(623), - [anon_sym_PLUS] = ACTIONS(623), - [anon_sym_DASH] = ACTIONS(623), - [anon_sym_STAR] = ACTIONS(621), - [anon_sym_SLASH] = ACTIONS(623), - [anon_sym_PERCENT] = ACTIONS(621), - [anon_sym_LT] = ACTIONS(623), - [anon_sym_GT] = ACTIONS(623), - [anon_sym_EQ_EQ] = ACTIONS(621), - [anon_sym_BANG_EQ] = ACTIONS(621), - [anon_sym_LT_EQ] = ACTIONS(621), - [anon_sym_GT_EQ] = ACTIONS(621), - [anon_sym_LBRACK] = ACTIONS(621), - [anon_sym_RBRACK] = ACTIONS(621), - [anon_sym_struct] = ACTIONS(623), - [anon_sym_mut] = ACTIONS(623), - [anon_sym_COLON] = ACTIONS(621), - [anon_sym_PLUS_PLUS] = ACTIONS(621), - [anon_sym_DASH_DASH] = ACTIONS(621), - [anon_sym_QMARK] = ACTIONS(623), - [anon_sym_BANG] = ACTIONS(623), - [anon_sym_go] = ACTIONS(623), - [anon_sym_spawn] = ACTIONS(623), - [anon_sym_json_DOTdecode] = ACTIONS(621), - [anon_sym_LBRACK2] = ACTIONS(623), - [anon_sym_TILDE] = ACTIONS(621), - [anon_sym_CARET] = ACTIONS(621), - [anon_sym_AMP] = ACTIONS(623), - [anon_sym_LT_DASH] = ACTIONS(621), - [anon_sym_LT_LT] = ACTIONS(621), - [anon_sym_GT_GT] = ACTIONS(623), - [anon_sym_GT_GT_GT] = ACTIONS(621), - [anon_sym_AMP_CARET] = ACTIONS(621), - [anon_sym_AMP_AMP] = ACTIONS(621), - [anon_sym_PIPE_PIPE] = ACTIONS(621), - [anon_sym_or] = ACTIONS(623), - [sym_none] = ACTIONS(623), - [sym_true] = ACTIONS(623), - [sym_false] = ACTIONS(623), - [sym_nil] = ACTIONS(623), - [anon_sym_QMARK_DOT] = ACTIONS(621), - [anon_sym_POUND_LBRACK] = ACTIONS(621), - [anon_sym_if] = ACTIONS(623), - [anon_sym_DOLLARif] = ACTIONS(623), - [anon_sym_is] = ACTIONS(623), - [anon_sym_BANGis] = ACTIONS(621), - [anon_sym_in] = ACTIONS(623), - [anon_sym_BANGin] = ACTIONS(621), - [anon_sym_match] = ACTIONS(623), - [anon_sym_select] = ACTIONS(623), - [anon_sym_lock] = ACTIONS(623), - [anon_sym_rlock] = ACTIONS(623), - [anon_sym_unsafe] = ACTIONS(623), - [anon_sym_sql] = ACTIONS(623), - [sym_int_literal] = ACTIONS(623), - [sym_float_literal] = ACTIONS(621), - [sym_rune_literal] = ACTIONS(621), - [sym_pseudo_compile_time_identifier] = ACTIONS(623), - [anon_sym_shared] = ACTIONS(623), - [anon_sym_map_LBRACK] = ACTIONS(621), - [anon_sym_chan] = ACTIONS(623), - [anon_sym_thread] = ACTIONS(623), - [anon_sym_atomic] = ACTIONS(623), - [sym___double_quote] = ACTIONS(621), - [sym___single_quote] = ACTIONS(621), - [sym___c_double_quote] = ACTIONS(621), - [sym___c_single_quote] = ACTIONS(621), - [sym___r_double_quote] = ACTIONS(621), - [sym___r_single_quote] = ACTIONS(621), + [anon_sym_DOT] = ACTIONS(1799), + [anon_sym_as] = ACTIONS(1799), + [anon_sym_LBRACE] = ACTIONS(1799), + [anon_sym_COMMA] = ACTIONS(1799), + [anon_sym_const] = ACTIONS(1799), + [anon_sym_LPAREN] = ACTIONS(1799), + [anon_sym___global] = ACTIONS(1799), + [anon_sym_type] = ACTIONS(1799), + [anon_sym_PIPE] = ACTIONS(1799), + [anon_sym_fn] = ACTIONS(1799), + [anon_sym_PLUS] = ACTIONS(1799), + [anon_sym_DASH] = ACTIONS(1799), + [anon_sym_STAR] = ACTIONS(1799), + [anon_sym_SLASH] = ACTIONS(1799), + [anon_sym_PERCENT] = ACTIONS(1799), + [anon_sym_LT] = ACTIONS(1799), + [anon_sym_GT] = ACTIONS(1799), + [anon_sym_EQ_EQ] = ACTIONS(1799), + [anon_sym_BANG_EQ] = ACTIONS(1799), + [anon_sym_LT_EQ] = ACTIONS(1799), + [anon_sym_GT_EQ] = ACTIONS(1799), + [anon_sym_LBRACK] = ACTIONS(1797), + [anon_sym_struct] = ACTIONS(1799), + [anon_sym_union] = ACTIONS(1799), + [anon_sym_pub] = ACTIONS(1799), + [anon_sym_mut] = ACTIONS(1799), + [anon_sym_enum] = ACTIONS(1799), + [anon_sym_interface] = ACTIONS(1799), + [anon_sym_PLUS_PLUS] = ACTIONS(1799), + [anon_sym_DASH_DASH] = ACTIONS(1799), + [anon_sym_QMARK] = ACTIONS(1799), + [anon_sym_BANG] = ACTIONS(1799), + [anon_sym_go] = ACTIONS(1799), + [anon_sym_spawn] = ACTIONS(1799), + [anon_sym_json_DOTdecode] = ACTIONS(1799), + [anon_sym_LBRACK2] = ACTIONS(1799), + [anon_sym_TILDE] = ACTIONS(1799), + [anon_sym_CARET] = ACTIONS(1799), + [anon_sym_AMP] = ACTIONS(1799), + [anon_sym_LT_DASH] = ACTIONS(1799), + [anon_sym_LT_LT] = ACTIONS(1799), + [anon_sym_GT_GT] = ACTIONS(1799), + [anon_sym_GT_GT_GT] = ACTIONS(1799), + [anon_sym_AMP_CARET] = ACTIONS(1799), + [anon_sym_AMP_AMP] = ACTIONS(1799), + [anon_sym_PIPE_PIPE] = ACTIONS(1799), + [anon_sym_or] = ACTIONS(1799), + [sym_none] = ACTIONS(1799), + [sym_true] = ACTIONS(1799), + [sym_false] = ACTIONS(1799), + [sym_nil] = ACTIONS(1799), + [anon_sym_QMARK_DOT] = ACTIONS(1799), + [anon_sym_POUND_LBRACK] = ACTIONS(1799), + [anon_sym_if] = ACTIONS(1799), + [anon_sym_else] = ACTIONS(3532), + [anon_sym_DOLLARif] = ACTIONS(1799), + [anon_sym_is] = ACTIONS(1799), + [anon_sym_BANGis] = ACTIONS(1799), + [anon_sym_in] = ACTIONS(1799), + [anon_sym_BANGin] = ACTIONS(1799), + [anon_sym_match] = ACTIONS(1799), + [anon_sym_select] = ACTIONS(1799), + [anon_sym_lock] = ACTIONS(1799), + [anon_sym_rlock] = ACTIONS(1799), + [anon_sym_unsafe] = ACTIONS(1799), + [anon_sym_sql] = ACTIONS(1799), + [sym_int_literal] = ACTIONS(1799), + [sym_float_literal] = ACTIONS(1799), + [sym_rune_literal] = ACTIONS(1799), + [sym_pseudo_compile_time_identifier] = ACTIONS(1799), + [anon_sym_shared] = ACTIONS(1799), + [anon_sym_map_LBRACK] = ACTIONS(1799), + [anon_sym_chan] = ACTIONS(1799), + [anon_sym_thread] = ACTIONS(1799), + [anon_sym_atomic] = ACTIONS(1799), + [anon_sym_assert] = ACTIONS(1799), + [anon_sym_defer] = ACTIONS(1799), + [anon_sym_goto] = ACTIONS(1799), + [anon_sym_break] = ACTIONS(1799), + [anon_sym_continue] = ACTIONS(1799), + [anon_sym_return] = ACTIONS(1799), + [anon_sym_DOLLARfor] = ACTIONS(1799), + [anon_sym_for] = ACTIONS(1799), + [anon_sym_POUND] = ACTIONS(1799), + [anon_sym_asm] = ACTIONS(1799), + [anon_sym_AT_LBRACK] = ACTIONS(1799), + [sym___double_quote] = ACTIONS(1799), + [sym___single_quote] = ACTIONS(1799), + [sym___c_double_quote] = ACTIONS(1799), + [sym___c_single_quote] = ACTIONS(1799), + [sym___r_double_quote] = ACTIONS(1799), + [sym___r_single_quote] = ACTIONS(1799), + }, + [980] = { + [sym_line_comment] = STATE(980), + [sym_block_comment] = STATE(980), + [ts_builtin_sym_end] = ACTIONS(1811), + [sym_identifier] = ACTIONS(1813), + [anon_sym_LF] = ACTIONS(1813), + [anon_sym_CR] = ACTIONS(1813), + [anon_sym_CR_LF] = ACTIONS(1813), + [anon_sym_SLASH_SLASH] = ACTIONS(497), + [anon_sym_SLASH_STAR] = ACTIONS(499), + [anon_sym_DOT] = ACTIONS(1813), + [anon_sym_as] = ACTIONS(1813), + [anon_sym_LBRACE] = ACTIONS(1813), + [anon_sym_COMMA] = ACTIONS(1813), + [anon_sym_const] = ACTIONS(1813), + [anon_sym_LPAREN] = ACTIONS(1813), + [anon_sym___global] = ACTIONS(1813), + [anon_sym_type] = ACTIONS(1813), + [anon_sym_PIPE] = ACTIONS(1813), + [anon_sym_fn] = ACTIONS(1813), + [anon_sym_PLUS] = ACTIONS(1813), + [anon_sym_DASH] = ACTIONS(1813), + [anon_sym_STAR] = ACTIONS(1813), + [anon_sym_SLASH] = ACTIONS(1813), + [anon_sym_PERCENT] = ACTIONS(1813), + [anon_sym_LT] = ACTIONS(1813), + [anon_sym_GT] = ACTIONS(1813), + [anon_sym_EQ_EQ] = ACTIONS(1813), + [anon_sym_BANG_EQ] = ACTIONS(1813), + [anon_sym_LT_EQ] = ACTIONS(1813), + [anon_sym_GT_EQ] = ACTIONS(1813), + [anon_sym_LBRACK] = ACTIONS(1811), + [anon_sym_struct] = ACTIONS(1813), + [anon_sym_union] = ACTIONS(1813), + [anon_sym_pub] = ACTIONS(1813), + [anon_sym_mut] = ACTIONS(1813), + [anon_sym_enum] = ACTIONS(1813), + [anon_sym_interface] = ACTIONS(1813), + [anon_sym_PLUS_PLUS] = ACTIONS(1813), + [anon_sym_DASH_DASH] = ACTIONS(1813), + [anon_sym_QMARK] = ACTIONS(1813), + [anon_sym_BANG] = ACTIONS(1813), + [anon_sym_go] = ACTIONS(1813), + [anon_sym_spawn] = ACTIONS(1813), + [anon_sym_json_DOTdecode] = ACTIONS(1813), + [anon_sym_LBRACK2] = ACTIONS(1813), + [anon_sym_TILDE] = ACTIONS(1813), + [anon_sym_CARET] = ACTIONS(1813), + [anon_sym_AMP] = ACTIONS(1813), + [anon_sym_LT_DASH] = ACTIONS(1813), + [anon_sym_LT_LT] = ACTIONS(1813), + [anon_sym_GT_GT] = ACTIONS(1813), + [anon_sym_GT_GT_GT] = ACTIONS(1813), + [anon_sym_AMP_CARET] = ACTIONS(1813), + [anon_sym_AMP_AMP] = ACTIONS(1813), + [anon_sym_PIPE_PIPE] = ACTIONS(1813), + [anon_sym_or] = ACTIONS(1813), + [sym_none] = ACTIONS(1813), + [sym_true] = ACTIONS(1813), + [sym_false] = ACTIONS(1813), + [sym_nil] = ACTIONS(1813), + [anon_sym_QMARK_DOT] = ACTIONS(1813), + [anon_sym_POUND_LBRACK] = ACTIONS(1813), + [anon_sym_if] = ACTIONS(1813), + [anon_sym_else] = ACTIONS(1813), + [anon_sym_DOLLARif] = ACTIONS(1813), + [anon_sym_is] = ACTIONS(1813), + [anon_sym_BANGis] = ACTIONS(1813), + [anon_sym_in] = ACTIONS(1813), + [anon_sym_BANGin] = ACTIONS(1813), + [anon_sym_match] = ACTIONS(1813), + [anon_sym_select] = ACTIONS(1813), + [anon_sym_lock] = ACTIONS(1813), + [anon_sym_rlock] = ACTIONS(1813), + [anon_sym_unsafe] = ACTIONS(1813), + [anon_sym_sql] = ACTIONS(1813), + [sym_int_literal] = ACTIONS(1813), + [sym_float_literal] = ACTIONS(1813), + [sym_rune_literal] = ACTIONS(1813), + [sym_pseudo_compile_time_identifier] = ACTIONS(1813), + [anon_sym_shared] = ACTIONS(1813), + [anon_sym_map_LBRACK] = ACTIONS(1813), + [anon_sym_chan] = ACTIONS(1813), + [anon_sym_thread] = ACTIONS(1813), + [anon_sym_atomic] = ACTIONS(1813), + [anon_sym_assert] = ACTIONS(1813), + [anon_sym_defer] = ACTIONS(1813), + [anon_sym_goto] = ACTIONS(1813), + [anon_sym_break] = ACTIONS(1813), + [anon_sym_continue] = ACTIONS(1813), + [anon_sym_return] = ACTIONS(1813), + [anon_sym_DOLLARfor] = ACTIONS(1813), + [anon_sym_for] = ACTIONS(1813), + [anon_sym_POUND] = ACTIONS(1813), + [anon_sym_asm] = ACTIONS(1813), + [anon_sym_AT_LBRACK] = ACTIONS(1813), + [sym___double_quote] = ACTIONS(1813), + [sym___single_quote] = ACTIONS(1813), + [sym___c_double_quote] = ACTIONS(1813), + [sym___c_single_quote] = ACTIONS(1813), + [sym___r_double_quote] = ACTIONS(1813), + [sym___r_single_quote] = ACTIONS(1813), }, [981] = { [sym_line_comment] = STATE(981), [sym_block_comment] = STATE(981), - [sym_reference_expression] = STATE(4355), - [sym_type_reference_expression] = STATE(1278), - [sym_plain_type] = STATE(1368), - [sym__plain_type_without_special] = STATE(1357), - [sym_anon_struct_type] = STATE(1360), - [sym_multi_return_type] = STATE(1357), - [sym_result_type] = STATE(1357), - [sym_option_type] = STATE(1357), - [sym_qualified_type] = STATE(1278), - [sym_fixed_array_type] = STATE(1360), - [sym_array_type] = STATE(1360), - [sym_pointer_type] = STATE(1360), - [sym_wrong_pointer_type] = STATE(1360), - [sym_map_type] = STATE(1360), - [sym_channel_type] = STATE(1360), - [sym_shared_type] = STATE(1360), - [sym_thread_type] = STATE(1360), - [sym_atomic_type] = STATE(1360), - [sym_generic_type] = STATE(1360), - [sym_function_type] = STATE(1360), - [sym_identifier] = ACTIONS(3556), + [ts_builtin_sym_end] = ACTIONS(1841), + [sym_identifier] = ACTIONS(1843), + [anon_sym_LF] = ACTIONS(1843), + [anon_sym_CR] = ACTIONS(1843), + [anon_sym_CR_LF] = ACTIONS(1843), + [anon_sym_SLASH_SLASH] = ACTIONS(497), + [anon_sym_SLASH_STAR] = ACTIONS(499), + [anon_sym_DOT] = ACTIONS(1843), + [anon_sym_as] = ACTIONS(1843), + [anon_sym_LBRACE] = ACTIONS(1843), + [anon_sym_COMMA] = ACTIONS(1843), + [anon_sym_const] = ACTIONS(1843), + [anon_sym_LPAREN] = ACTIONS(1843), + [anon_sym___global] = ACTIONS(1843), + [anon_sym_type] = ACTIONS(1843), + [anon_sym_PIPE] = ACTIONS(1843), + [anon_sym_fn] = ACTIONS(1843), + [anon_sym_PLUS] = ACTIONS(1843), + [anon_sym_DASH] = ACTIONS(1843), + [anon_sym_STAR] = ACTIONS(1843), + [anon_sym_SLASH] = ACTIONS(1843), + [anon_sym_PERCENT] = ACTIONS(1843), + [anon_sym_LT] = ACTIONS(1843), + [anon_sym_GT] = ACTIONS(1843), + [anon_sym_EQ_EQ] = ACTIONS(1843), + [anon_sym_BANG_EQ] = ACTIONS(1843), + [anon_sym_LT_EQ] = ACTIONS(1843), + [anon_sym_GT_EQ] = ACTIONS(1843), + [anon_sym_LBRACK] = ACTIONS(1841), + [anon_sym_struct] = ACTIONS(1843), + [anon_sym_union] = ACTIONS(1843), + [anon_sym_pub] = ACTIONS(1843), + [anon_sym_mut] = ACTIONS(1843), + [anon_sym_enum] = ACTIONS(1843), + [anon_sym_interface] = ACTIONS(1843), + [anon_sym_PLUS_PLUS] = ACTIONS(1843), + [anon_sym_DASH_DASH] = ACTIONS(1843), + [anon_sym_QMARK] = ACTIONS(1843), + [anon_sym_BANG] = ACTIONS(1843), + [anon_sym_go] = ACTIONS(1843), + [anon_sym_spawn] = ACTIONS(1843), + [anon_sym_json_DOTdecode] = ACTIONS(1843), + [anon_sym_LBRACK2] = ACTIONS(1843), + [anon_sym_TILDE] = ACTIONS(1843), + [anon_sym_CARET] = ACTIONS(1843), + [anon_sym_AMP] = ACTIONS(1843), + [anon_sym_LT_DASH] = ACTIONS(1843), + [anon_sym_LT_LT] = ACTIONS(1843), + [anon_sym_GT_GT] = ACTIONS(1843), + [anon_sym_GT_GT_GT] = ACTIONS(1843), + [anon_sym_AMP_CARET] = ACTIONS(1843), + [anon_sym_AMP_AMP] = ACTIONS(1843), + [anon_sym_PIPE_PIPE] = ACTIONS(1843), + [anon_sym_or] = ACTIONS(1843), + [sym_none] = ACTIONS(1843), + [sym_true] = ACTIONS(1843), + [sym_false] = ACTIONS(1843), + [sym_nil] = ACTIONS(1843), + [anon_sym_QMARK_DOT] = ACTIONS(1843), + [anon_sym_POUND_LBRACK] = ACTIONS(1843), + [anon_sym_if] = ACTIONS(1843), + [anon_sym_DOLLARif] = ACTIONS(1843), + [anon_sym_DOLLARelse] = ACTIONS(3562), + [anon_sym_is] = ACTIONS(1843), + [anon_sym_BANGis] = ACTIONS(1843), + [anon_sym_in] = ACTIONS(1843), + [anon_sym_BANGin] = ACTIONS(1843), + [anon_sym_match] = ACTIONS(1843), + [anon_sym_select] = ACTIONS(1843), + [anon_sym_lock] = ACTIONS(1843), + [anon_sym_rlock] = ACTIONS(1843), + [anon_sym_unsafe] = ACTIONS(1843), + [anon_sym_sql] = ACTIONS(1843), + [sym_int_literal] = ACTIONS(1843), + [sym_float_literal] = ACTIONS(1843), + [sym_rune_literal] = ACTIONS(1843), + [sym_pseudo_compile_time_identifier] = ACTIONS(1843), + [anon_sym_shared] = ACTIONS(1843), + [anon_sym_map_LBRACK] = ACTIONS(1843), + [anon_sym_chan] = ACTIONS(1843), + [anon_sym_thread] = ACTIONS(1843), + [anon_sym_atomic] = ACTIONS(1843), + [anon_sym_assert] = ACTIONS(1843), + [anon_sym_defer] = ACTIONS(1843), + [anon_sym_goto] = ACTIONS(1843), + [anon_sym_break] = ACTIONS(1843), + [anon_sym_continue] = ACTIONS(1843), + [anon_sym_return] = ACTIONS(1843), + [anon_sym_DOLLARfor] = ACTIONS(1843), + [anon_sym_for] = ACTIONS(1843), + [anon_sym_POUND] = ACTIONS(1843), + [anon_sym_asm] = ACTIONS(1843), + [anon_sym_AT_LBRACK] = ACTIONS(1843), + [sym___double_quote] = ACTIONS(1843), + [sym___single_quote] = ACTIONS(1843), + [sym___c_double_quote] = ACTIONS(1843), + [sym___c_single_quote] = ACTIONS(1843), + [sym___r_double_quote] = ACTIONS(1843), + [sym___r_single_quote] = ACTIONS(1843), + }, + [982] = { + [sym_line_comment] = STATE(982), + [sym_block_comment] = STATE(982), + [sym_reference_expression] = STATE(4498), + [sym_type_reference_expression] = STATE(3460), + [sym_plain_type] = STATE(2345), + [sym__plain_type_without_special] = STATE(2360), + [sym_anon_struct_type] = STATE(2362), + [sym_multi_return_type] = STATE(2360), + [sym_result_type] = STATE(2360), + [sym_option_type] = STATE(2360), + [sym_qualified_type] = STATE(3460), + [sym_fixed_array_type] = STATE(2362), + [sym_array_type] = STATE(2362), + [sym_pointer_type] = STATE(2362), + [sym_wrong_pointer_type] = STATE(2362), + [sym_map_type] = STATE(2362), + [sym_channel_type] = STATE(2362), + [sym_shared_type] = STATE(2362), + [sym_thread_type] = STATE(2362), + [sym_atomic_type] = STATE(2362), + [sym_generic_type] = STATE(2362), + [sym_function_type] = STATE(2362), + [sym_identifier] = ACTIONS(627), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), [anon_sym_DOT] = ACTIONS(627), @@ -135401,12 +135535,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACE] = ACTIONS(625), [anon_sym_COMMA] = ACTIONS(625), [anon_sym_RBRACE] = ACTIONS(625), - [anon_sym_LPAREN] = ACTIONS(3558), + [anon_sym_LPAREN] = ACTIONS(625), [anon_sym_PIPE] = ACTIONS(627), - [anon_sym_fn] = ACTIONS(3560), + [anon_sym_fn] = ACTIONS(627), [anon_sym_PLUS] = ACTIONS(627), [anon_sym_DASH] = ACTIONS(627), - [anon_sym_STAR] = ACTIONS(3562), + [anon_sym_STAR] = ACTIONS(625), [anon_sym_SLASH] = ACTIONS(627), [anon_sym_PERCENT] = ACTIONS(625), [anon_sym_LT] = ACTIONS(627), @@ -135417,20 +135551,20 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_GT_EQ] = ACTIONS(625), [anon_sym_LBRACK] = ACTIONS(625), [anon_sym_RBRACK] = ACTIONS(625), - [anon_sym_struct] = ACTIONS(3564), + [anon_sym_struct] = ACTIONS(627), [anon_sym_mut] = ACTIONS(627), [anon_sym_COLON] = ACTIONS(625), [anon_sym_PLUS_PLUS] = ACTIONS(625), [anon_sym_DASH_DASH] = ACTIONS(625), - [anon_sym_QMARK] = ACTIONS(3566), - [anon_sym_BANG] = ACTIONS(3568), + [anon_sym_QMARK] = ACTIONS(627), + [anon_sym_BANG] = ACTIONS(627), [anon_sym_go] = ACTIONS(627), [anon_sym_spawn] = ACTIONS(627), [anon_sym_json_DOTdecode] = ACTIONS(625), - [anon_sym_LBRACK2] = ACTIONS(3570), + [anon_sym_LBRACK2] = ACTIONS(627), [anon_sym_TILDE] = ACTIONS(625), [anon_sym_CARET] = ACTIONS(625), - [anon_sym_AMP] = ACTIONS(3572), + [anon_sym_AMP] = ACTIONS(627), [anon_sym_LT_DASH] = ACTIONS(625), [anon_sym_LT_LT] = ACTIONS(625), [anon_sym_GT_GT] = ACTIONS(627), @@ -135461,11 +135595,11 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(625), [sym_rune_literal] = ACTIONS(625), [sym_pseudo_compile_time_identifier] = ACTIONS(627), - [anon_sym_shared] = ACTIONS(3574), - [anon_sym_map_LBRACK] = ACTIONS(3576), - [anon_sym_chan] = ACTIONS(3578), - [anon_sym_thread] = ACTIONS(3580), - [anon_sym_atomic] = ACTIONS(3582), + [anon_sym_shared] = ACTIONS(627), + [anon_sym_map_LBRACK] = ACTIONS(625), + [anon_sym_chan] = ACTIONS(627), + [anon_sym_thread] = ACTIONS(627), + [anon_sym_atomic] = ACTIONS(627), [sym___double_quote] = ACTIONS(625), [sym___single_quote] = ACTIONS(625), [sym___c_double_quote] = ACTIONS(625), @@ -135473,30 +135607,30 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym___r_double_quote] = ACTIONS(625), [sym___r_single_quote] = ACTIONS(625), }, - [982] = { - [sym_line_comment] = STATE(982), - [sym_block_comment] = STATE(982), - [sym_reference_expression] = STATE(4355), - [sym_type_reference_expression] = STATE(1278), - [sym_plain_type] = STATE(1297), - [sym__plain_type_without_special] = STATE(1357), - [sym_anon_struct_type] = STATE(1360), - [sym_multi_return_type] = STATE(1357), - [sym_result_type] = STATE(1357), - [sym_option_type] = STATE(1357), - [sym_qualified_type] = STATE(1278), - [sym_fixed_array_type] = STATE(1360), - [sym_array_type] = STATE(1360), - [sym_pointer_type] = STATE(1360), - [sym_wrong_pointer_type] = STATE(1360), - [sym_map_type] = STATE(1360), - [sym_channel_type] = STATE(1360), - [sym_shared_type] = STATE(1360), - [sym_thread_type] = STATE(1360), - [sym_atomic_type] = STATE(1360), - [sym_generic_type] = STATE(1360), - [sym_function_type] = STATE(1360), - [sym_identifier] = ACTIONS(3556), + [983] = { + [sym_line_comment] = STATE(983), + [sym_block_comment] = STATE(983), + [sym_reference_expression] = STATE(4498), + [sym_type_reference_expression] = STATE(3460), + [sym_plain_type] = STATE(2320), + [sym__plain_type_without_special] = STATE(2360), + [sym_anon_struct_type] = STATE(2362), + [sym_multi_return_type] = STATE(2360), + [sym_result_type] = STATE(2360), + [sym_option_type] = STATE(2360), + [sym_qualified_type] = STATE(3460), + [sym_fixed_array_type] = STATE(2362), + [sym_array_type] = STATE(2362), + [sym_pointer_type] = STATE(2362), + [sym_wrong_pointer_type] = STATE(2362), + [sym_map_type] = STATE(2362), + [sym_channel_type] = STATE(2362), + [sym_shared_type] = STATE(2362), + [sym_thread_type] = STATE(2362), + [sym_atomic_type] = STATE(2362), + [sym_generic_type] = STATE(2362), + [sym_function_type] = STATE(2362), + [sym_identifier] = ACTIONS(565), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), [anon_sym_DOT] = ACTIONS(567), @@ -135504,12 +135638,12 @@ 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(3558), + [anon_sym_LPAREN] = ACTIONS(3564), [anon_sym_PIPE] = ACTIONS(567), - [anon_sym_fn] = ACTIONS(3560), + [anon_sym_fn] = ACTIONS(571), [anon_sym_PLUS] = ACTIONS(567), [anon_sym_DASH] = ACTIONS(567), - [anon_sym_STAR] = ACTIONS(3562), + [anon_sym_STAR] = ACTIONS(3566), [anon_sym_SLASH] = ACTIONS(567), [anon_sym_PERCENT] = ACTIONS(563), [anon_sym_LT] = ACTIONS(567), @@ -135520,20 +135654,20 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_GT_EQ] = ACTIONS(563), [anon_sym_LBRACK] = ACTIONS(563), [anon_sym_RBRACK] = ACTIONS(563), - [anon_sym_struct] = ACTIONS(3564), + [anon_sym_struct] = ACTIONS(575), [anon_sym_mut] = ACTIONS(567), [anon_sym_COLON] = ACTIONS(563), [anon_sym_PLUS_PLUS] = ACTIONS(563), [anon_sym_DASH_DASH] = ACTIONS(563), - [anon_sym_QMARK] = ACTIONS(3566), + [anon_sym_QMARK] = ACTIONS(515), [anon_sym_BANG] = ACTIONS(3568), [anon_sym_go] = ACTIONS(567), [anon_sym_spawn] = ACTIONS(567), [anon_sym_json_DOTdecode] = ACTIONS(563), - [anon_sym_LBRACK2] = ACTIONS(3570), + [anon_sym_LBRACK2] = ACTIONS(579), [anon_sym_TILDE] = ACTIONS(563), [anon_sym_CARET] = ACTIONS(563), - [anon_sym_AMP] = ACTIONS(3572), + [anon_sym_AMP] = ACTIONS(581), [anon_sym_LT_DASH] = ACTIONS(563), [anon_sym_LT_LT] = ACTIONS(563), [anon_sym_GT_GT] = ACTIONS(567), @@ -135564,11 +135698,11 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(563), [sym_rune_literal] = ACTIONS(563), [sym_pseudo_compile_time_identifier] = ACTIONS(567), - [anon_sym_shared] = ACTIONS(3574), - [anon_sym_map_LBRACK] = ACTIONS(3576), - [anon_sym_chan] = ACTIONS(3578), - [anon_sym_thread] = ACTIONS(3580), - [anon_sym_atomic] = ACTIONS(3582), + [anon_sym_shared] = ACTIONS(583), + [anon_sym_map_LBRACK] = ACTIONS(85), + [anon_sym_chan] = ACTIONS(87), + [anon_sym_thread] = ACTIONS(89), + [anon_sym_atomic] = ACTIONS(91), [sym___double_quote] = ACTIONS(563), [sym___single_quote] = ACTIONS(563), [sym___c_double_quote] = ACTIONS(563), @@ -135576,648 +135710,751 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym___r_double_quote] = ACTIONS(563), [sym___r_single_quote] = ACTIONS(563), }, - [983] = { - [sym_line_comment] = STATE(983), - [sym_block_comment] = STATE(983), - [ts_builtin_sym_end] = ACTIONS(1919), - [sym_identifier] = ACTIONS(1921), - [anon_sym_LF] = ACTIONS(1921), - [anon_sym_CR] = ACTIONS(1921), - [anon_sym_CR_LF] = ACTIONS(1921), - [anon_sym_SLASH_SLASH] = ACTIONS(497), - [anon_sym_SLASH_STAR] = ACTIONS(499), - [anon_sym_DOT] = ACTIONS(1921), - [anon_sym_as] = ACTIONS(1921), - [anon_sym_LBRACE] = ACTIONS(1921), - [anon_sym_COMMA] = ACTIONS(1921), - [anon_sym_const] = ACTIONS(1921), - [anon_sym_LPAREN] = ACTIONS(1921), - [anon_sym___global] = ACTIONS(1921), - [anon_sym_type] = ACTIONS(1921), - [anon_sym_PIPE] = ACTIONS(1921), - [anon_sym_fn] = ACTIONS(1921), - [anon_sym_PLUS] = ACTIONS(1921), - [anon_sym_DASH] = ACTIONS(1921), - [anon_sym_STAR] = ACTIONS(1921), - [anon_sym_SLASH] = ACTIONS(1921), - [anon_sym_PERCENT] = ACTIONS(1921), - [anon_sym_LT] = ACTIONS(1921), - [anon_sym_GT] = ACTIONS(1921), - [anon_sym_EQ_EQ] = ACTIONS(1921), - [anon_sym_BANG_EQ] = ACTIONS(1921), - [anon_sym_LT_EQ] = ACTIONS(1921), - [anon_sym_GT_EQ] = ACTIONS(1921), - [anon_sym_LBRACK] = ACTIONS(1919), - [anon_sym_struct] = ACTIONS(1921), - [anon_sym_union] = ACTIONS(1921), - [anon_sym_pub] = ACTIONS(1921), - [anon_sym_mut] = ACTIONS(1921), - [anon_sym_enum] = ACTIONS(1921), - [anon_sym_interface] = ACTIONS(1921), - [anon_sym_PLUS_PLUS] = ACTIONS(1921), - [anon_sym_DASH_DASH] = ACTIONS(1921), - [anon_sym_QMARK] = ACTIONS(1921), - [anon_sym_BANG] = ACTIONS(1921), - [anon_sym_go] = ACTIONS(1921), - [anon_sym_spawn] = ACTIONS(1921), - [anon_sym_json_DOTdecode] = ACTIONS(1921), - [anon_sym_LBRACK2] = ACTIONS(1921), - [anon_sym_TILDE] = ACTIONS(1921), - [anon_sym_CARET] = ACTIONS(1921), - [anon_sym_AMP] = ACTIONS(1921), - [anon_sym_LT_DASH] = ACTIONS(1921), - [anon_sym_LT_LT] = ACTIONS(1921), - [anon_sym_GT_GT] = ACTIONS(1921), - [anon_sym_GT_GT_GT] = ACTIONS(1921), - [anon_sym_AMP_CARET] = ACTIONS(1921), - [anon_sym_AMP_AMP] = ACTIONS(1921), - [anon_sym_PIPE_PIPE] = ACTIONS(1921), - [anon_sym_or] = ACTIONS(1921), - [sym_none] = ACTIONS(1921), - [sym_true] = ACTIONS(1921), - [sym_false] = ACTIONS(1921), - [sym_nil] = ACTIONS(1921), - [anon_sym_QMARK_DOT] = ACTIONS(1921), - [anon_sym_POUND_LBRACK] = ACTIONS(1921), - [anon_sym_if] = ACTIONS(1921), - [anon_sym_DOLLARif] = ACTIONS(1921), - [anon_sym_DOLLARelse] = ACTIONS(3584), - [anon_sym_is] = ACTIONS(1921), - [anon_sym_BANGis] = ACTIONS(1921), - [anon_sym_in] = ACTIONS(1921), - [anon_sym_BANGin] = ACTIONS(1921), - [anon_sym_match] = ACTIONS(1921), - [anon_sym_select] = ACTIONS(1921), - [anon_sym_lock] = ACTIONS(1921), - [anon_sym_rlock] = ACTIONS(1921), - [anon_sym_unsafe] = ACTIONS(1921), - [anon_sym_sql] = ACTIONS(1921), - [sym_int_literal] = ACTIONS(1921), - [sym_float_literal] = ACTIONS(1921), - [sym_rune_literal] = ACTIONS(1921), - [sym_pseudo_compile_time_identifier] = ACTIONS(1921), - [anon_sym_shared] = ACTIONS(1921), - [anon_sym_map_LBRACK] = ACTIONS(1921), - [anon_sym_chan] = ACTIONS(1921), - [anon_sym_thread] = ACTIONS(1921), - [anon_sym_atomic] = ACTIONS(1921), - [anon_sym_assert] = ACTIONS(1921), - [anon_sym_defer] = ACTIONS(1921), - [anon_sym_goto] = ACTIONS(1921), - [anon_sym_break] = ACTIONS(1921), - [anon_sym_continue] = ACTIONS(1921), - [anon_sym_return] = ACTIONS(1921), - [anon_sym_DOLLARfor] = ACTIONS(1921), - [anon_sym_for] = ACTIONS(1921), - [anon_sym_POUND] = ACTIONS(1921), - [anon_sym_asm] = ACTIONS(1921), - [anon_sym_AT_LBRACK] = ACTIONS(1921), - [sym___double_quote] = ACTIONS(1921), - [sym___single_quote] = ACTIONS(1921), - [sym___c_double_quote] = ACTIONS(1921), - [sym___c_single_quote] = ACTIONS(1921), - [sym___r_double_quote] = ACTIONS(1921), - [sym___r_single_quote] = ACTIONS(1921), - }, [984] = { [sym_line_comment] = STATE(984), [sym_block_comment] = STATE(984), - [sym_reference_expression] = STATE(4495), - [sym_type_reference_expression] = STATE(3541), - [sym_plain_type] = STATE(2386), - [sym__plain_type_without_special] = STATE(2302), - [sym_anon_struct_type] = STATE(2303), - [sym_multi_return_type] = STATE(2302), - [sym_result_type] = STATE(2302), - [sym_option_type] = STATE(2302), - [sym_qualified_type] = STATE(3541), - [sym_fixed_array_type] = STATE(2303), - [sym_array_type] = STATE(2303), - [sym_pointer_type] = STATE(2303), - [sym_wrong_pointer_type] = STATE(2303), - [sym_map_type] = STATE(2303), - [sym_channel_type] = STATE(2303), - [sym_shared_type] = STATE(2303), - [sym_thread_type] = STATE(2303), - [sym_atomic_type] = STATE(2303), - [sym_generic_type] = STATE(2303), - [sym_function_type] = STATE(2303), - [sym_identifier] = ACTIONS(597), - [anon_sym_SLASH_SLASH] = ACTIONS(3), - [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(599), - [anon_sym_as] = ACTIONS(599), - [anon_sym_LBRACE] = ACTIONS(595), - [anon_sym_COMMA] = ACTIONS(595), - [anon_sym_RBRACE] = ACTIONS(595), - [anon_sym_LPAREN] = ACTIONS(3586), - [anon_sym_PIPE] = ACTIONS(599), - [anon_sym_fn] = ACTIONS(603), - [anon_sym_PLUS] = ACTIONS(599), - [anon_sym_DASH] = ACTIONS(599), - [anon_sym_STAR] = ACTIONS(3588), - [anon_sym_SLASH] = ACTIONS(599), - [anon_sym_PERCENT] = ACTIONS(595), - [anon_sym_LT] = ACTIONS(599), - [anon_sym_GT] = ACTIONS(599), - [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(607), - [anon_sym_mut] = ACTIONS(599), - [anon_sym_COLON] = ACTIONS(595), - [anon_sym_PLUS_PLUS] = ACTIONS(595), - [anon_sym_DASH_DASH] = ACTIONS(595), - [anon_sym_QMARK] = ACTIONS(515), - [anon_sym_BANG] = ACTIONS(3590), - [anon_sym_go] = ACTIONS(599), - [anon_sym_spawn] = ACTIONS(599), - [anon_sym_json_DOTdecode] = ACTIONS(595), - [anon_sym_LBRACK2] = ACTIONS(611), - [anon_sym_TILDE] = ACTIONS(595), - [anon_sym_CARET] = ACTIONS(595), - [anon_sym_AMP] = ACTIONS(613), - [anon_sym_LT_DASH] = ACTIONS(595), - [anon_sym_LT_LT] = ACTIONS(595), - [anon_sym_GT_GT] = ACTIONS(599), - [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(599), - [sym_none] = ACTIONS(599), - [sym_true] = ACTIONS(599), - [sym_false] = ACTIONS(599), - [sym_nil] = ACTIONS(599), - [anon_sym_QMARK_DOT] = ACTIONS(595), - [anon_sym_POUND_LBRACK] = ACTIONS(595), - [anon_sym_if] = ACTIONS(599), - [anon_sym_DOLLARif] = ACTIONS(599), - [anon_sym_is] = ACTIONS(599), - [anon_sym_BANGis] = ACTIONS(595), - [anon_sym_in] = ACTIONS(599), - [anon_sym_BANGin] = ACTIONS(595), - [anon_sym_match] = ACTIONS(599), - [anon_sym_select] = ACTIONS(599), - [anon_sym_lock] = ACTIONS(599), - [anon_sym_rlock] = ACTIONS(599), - [anon_sym_unsafe] = ACTIONS(599), - [anon_sym_sql] = ACTIONS(599), - [sym_int_literal] = ACTIONS(599), - [sym_float_literal] = ACTIONS(595), - [sym_rune_literal] = ACTIONS(595), - [sym_pseudo_compile_time_identifier] = ACTIONS(599), - [anon_sym_shared] = ACTIONS(615), - [anon_sym_map_LBRACK] = ACTIONS(85), - [anon_sym_chan] = ACTIONS(87), - [anon_sym_thread] = ACTIONS(89), - [anon_sym_atomic] = ACTIONS(91), - [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), + [ts_builtin_sym_end] = ACTIONS(1807), + [sym_identifier] = ACTIONS(1809), + [anon_sym_LF] = ACTIONS(1809), + [anon_sym_CR] = ACTIONS(1809), + [anon_sym_CR_LF] = ACTIONS(1809), + [anon_sym_SLASH_SLASH] = ACTIONS(497), + [anon_sym_SLASH_STAR] = ACTIONS(499), + [anon_sym_DOT] = ACTIONS(1809), + [anon_sym_as] = ACTIONS(1809), + [anon_sym_LBRACE] = ACTIONS(1809), + [anon_sym_COMMA] = ACTIONS(1809), + [anon_sym_const] = ACTIONS(1809), + [anon_sym_LPAREN] = ACTIONS(1809), + [anon_sym___global] = ACTIONS(1809), + [anon_sym_type] = ACTIONS(1809), + [anon_sym_PIPE] = ACTIONS(1809), + [anon_sym_fn] = ACTIONS(1809), + [anon_sym_PLUS] = ACTIONS(1809), + [anon_sym_DASH] = ACTIONS(1809), + [anon_sym_STAR] = ACTIONS(1809), + [anon_sym_SLASH] = ACTIONS(1809), + [anon_sym_PERCENT] = ACTIONS(1809), + [anon_sym_LT] = ACTIONS(1809), + [anon_sym_GT] = ACTIONS(1809), + [anon_sym_EQ_EQ] = ACTIONS(1809), + [anon_sym_BANG_EQ] = ACTIONS(1809), + [anon_sym_LT_EQ] = ACTIONS(1809), + [anon_sym_GT_EQ] = ACTIONS(1809), + [anon_sym_LBRACK] = ACTIONS(1807), + [anon_sym_struct] = ACTIONS(1809), + [anon_sym_union] = ACTIONS(1809), + [anon_sym_pub] = ACTIONS(1809), + [anon_sym_mut] = ACTIONS(1809), + [anon_sym_enum] = ACTIONS(1809), + [anon_sym_interface] = ACTIONS(1809), + [anon_sym_PLUS_PLUS] = ACTIONS(1809), + [anon_sym_DASH_DASH] = ACTIONS(1809), + [anon_sym_QMARK] = ACTIONS(1809), + [anon_sym_BANG] = ACTIONS(1809), + [anon_sym_go] = ACTIONS(1809), + [anon_sym_spawn] = ACTIONS(1809), + [anon_sym_json_DOTdecode] = ACTIONS(1809), + [anon_sym_LBRACK2] = ACTIONS(1809), + [anon_sym_TILDE] = ACTIONS(1809), + [anon_sym_CARET] = ACTIONS(1809), + [anon_sym_AMP] = ACTIONS(1809), + [anon_sym_LT_DASH] = ACTIONS(1809), + [anon_sym_LT_LT] = ACTIONS(1809), + [anon_sym_GT_GT] = ACTIONS(1809), + [anon_sym_GT_GT_GT] = ACTIONS(1809), + [anon_sym_AMP_CARET] = ACTIONS(1809), + [anon_sym_AMP_AMP] = ACTIONS(1809), + [anon_sym_PIPE_PIPE] = ACTIONS(1809), + [anon_sym_or] = ACTIONS(1809), + [sym_none] = ACTIONS(1809), + [sym_true] = ACTIONS(1809), + [sym_false] = ACTIONS(1809), + [sym_nil] = ACTIONS(1809), + [anon_sym_QMARK_DOT] = ACTIONS(1809), + [anon_sym_POUND_LBRACK] = ACTIONS(1809), + [anon_sym_if] = ACTIONS(1809), + [anon_sym_DOLLARif] = ACTIONS(1809), + [anon_sym_DOLLARelse] = ACTIONS(1809), + [anon_sym_is] = ACTIONS(1809), + [anon_sym_BANGis] = ACTIONS(1809), + [anon_sym_in] = ACTIONS(1809), + [anon_sym_BANGin] = ACTIONS(1809), + [anon_sym_match] = ACTIONS(1809), + [anon_sym_select] = ACTIONS(1809), + [anon_sym_lock] = ACTIONS(1809), + [anon_sym_rlock] = ACTIONS(1809), + [anon_sym_unsafe] = ACTIONS(1809), + [anon_sym_sql] = ACTIONS(1809), + [sym_int_literal] = ACTIONS(1809), + [sym_float_literal] = ACTIONS(1809), + [sym_rune_literal] = ACTIONS(1809), + [sym_pseudo_compile_time_identifier] = ACTIONS(1809), + [anon_sym_shared] = ACTIONS(1809), + [anon_sym_map_LBRACK] = ACTIONS(1809), + [anon_sym_chan] = ACTIONS(1809), + [anon_sym_thread] = ACTIONS(1809), + [anon_sym_atomic] = ACTIONS(1809), + [anon_sym_assert] = ACTIONS(1809), + [anon_sym_defer] = ACTIONS(1809), + [anon_sym_goto] = ACTIONS(1809), + [anon_sym_break] = ACTIONS(1809), + [anon_sym_continue] = ACTIONS(1809), + [anon_sym_return] = ACTIONS(1809), + [anon_sym_DOLLARfor] = ACTIONS(1809), + [anon_sym_for] = ACTIONS(1809), + [anon_sym_POUND] = ACTIONS(1809), + [anon_sym_asm] = ACTIONS(1809), + [anon_sym_AT_LBRACK] = ACTIONS(1809), + [sym___double_quote] = ACTIONS(1809), + [sym___single_quote] = ACTIONS(1809), + [sym___c_double_quote] = ACTIONS(1809), + [sym___c_single_quote] = ACTIONS(1809), + [sym___r_double_quote] = ACTIONS(1809), + [sym___r_single_quote] = ACTIONS(1809), }, [985] = { [sym_line_comment] = STATE(985), [sym_block_comment] = STATE(985), - [ts_builtin_sym_end] = ACTIONS(1897), - [sym_identifier] = ACTIONS(1899), - [anon_sym_LF] = ACTIONS(1899), - [anon_sym_CR] = ACTIONS(1899), - [anon_sym_CR_LF] = ACTIONS(1899), + [sym_type_parameters] = STATE(1069), + [ts_builtin_sym_end] = ACTIONS(1879), + [sym_identifier] = ACTIONS(1881), + [anon_sym_LF] = ACTIONS(1881), + [anon_sym_CR] = ACTIONS(1881), + [anon_sym_CR_LF] = ACTIONS(1881), [anon_sym_SLASH_SLASH] = ACTIONS(497), [anon_sym_SLASH_STAR] = ACTIONS(499), - [anon_sym_DOT] = ACTIONS(1899), - [anon_sym_as] = ACTIONS(1899), - [anon_sym_LBRACE] = ACTIONS(1899), - [anon_sym_COMMA] = ACTIONS(1899), - [anon_sym_const] = ACTIONS(1899), - [anon_sym_LPAREN] = ACTIONS(1899), - [anon_sym___global] = ACTIONS(1899), - [anon_sym_type] = ACTIONS(1899), - [anon_sym_PIPE] = ACTIONS(1899), - [anon_sym_fn] = ACTIONS(1899), - [anon_sym_PLUS] = ACTIONS(1899), - [anon_sym_DASH] = ACTIONS(1899), - [anon_sym_STAR] = ACTIONS(1899), - [anon_sym_SLASH] = ACTIONS(1899), - [anon_sym_PERCENT] = ACTIONS(1899), - [anon_sym_LT] = ACTIONS(1899), - [anon_sym_GT] = ACTIONS(1899), - [anon_sym_EQ_EQ] = ACTIONS(1899), - [anon_sym_BANG_EQ] = ACTIONS(1899), - [anon_sym_LT_EQ] = ACTIONS(1899), - [anon_sym_GT_EQ] = ACTIONS(1899), - [anon_sym_LBRACK] = ACTIONS(1897), - [anon_sym_struct] = ACTIONS(1899), - [anon_sym_union] = ACTIONS(1899), - [anon_sym_pub] = ACTIONS(1899), - [anon_sym_mut] = ACTIONS(1899), - [anon_sym_enum] = ACTIONS(1899), - [anon_sym_interface] = ACTIONS(1899), - [anon_sym_PLUS_PLUS] = ACTIONS(1899), - [anon_sym_DASH_DASH] = ACTIONS(1899), - [anon_sym_QMARK] = ACTIONS(1899), - [anon_sym_BANG] = ACTIONS(1899), - [anon_sym_go] = ACTIONS(1899), - [anon_sym_spawn] = ACTIONS(1899), - [anon_sym_json_DOTdecode] = ACTIONS(1899), - [anon_sym_LBRACK2] = ACTIONS(1899), - [anon_sym_TILDE] = ACTIONS(1899), - [anon_sym_CARET] = ACTIONS(1899), - [anon_sym_AMP] = ACTIONS(1899), - [anon_sym_LT_DASH] = ACTIONS(1899), - [anon_sym_LT_LT] = ACTIONS(1899), - [anon_sym_GT_GT] = ACTIONS(1899), - [anon_sym_GT_GT_GT] = ACTIONS(1899), - [anon_sym_AMP_CARET] = ACTIONS(1899), - [anon_sym_AMP_AMP] = ACTIONS(1899), - [anon_sym_PIPE_PIPE] = ACTIONS(1899), - [anon_sym_or] = ACTIONS(1899), - [sym_none] = ACTIONS(1899), - [sym_true] = ACTIONS(1899), - [sym_false] = ACTIONS(1899), - [sym_nil] = ACTIONS(1899), - [anon_sym_QMARK_DOT] = ACTIONS(1899), - [anon_sym_POUND_LBRACK] = ACTIONS(1899), - [anon_sym_if] = ACTIONS(1899), - [anon_sym_DOLLARif] = ACTIONS(1899), - [anon_sym_DOLLARelse] = ACTIONS(3592), - [anon_sym_is] = ACTIONS(1899), - [anon_sym_BANGis] = ACTIONS(1899), - [anon_sym_in] = ACTIONS(1899), - [anon_sym_BANGin] = ACTIONS(1899), - [anon_sym_match] = ACTIONS(1899), - [anon_sym_select] = ACTIONS(1899), - [anon_sym_lock] = ACTIONS(1899), - [anon_sym_rlock] = ACTIONS(1899), - [anon_sym_unsafe] = ACTIONS(1899), - [anon_sym_sql] = ACTIONS(1899), - [sym_int_literal] = ACTIONS(1899), - [sym_float_literal] = ACTIONS(1899), - [sym_rune_literal] = ACTIONS(1899), - [sym_pseudo_compile_time_identifier] = ACTIONS(1899), - [anon_sym_shared] = ACTIONS(1899), - [anon_sym_map_LBRACK] = ACTIONS(1899), - [anon_sym_chan] = ACTIONS(1899), - [anon_sym_thread] = ACTIONS(1899), - [anon_sym_atomic] = ACTIONS(1899), - [anon_sym_assert] = ACTIONS(1899), - [anon_sym_defer] = ACTIONS(1899), - [anon_sym_goto] = ACTIONS(1899), - [anon_sym_break] = ACTIONS(1899), - [anon_sym_continue] = ACTIONS(1899), - [anon_sym_return] = ACTIONS(1899), - [anon_sym_DOLLARfor] = ACTIONS(1899), - [anon_sym_for] = ACTIONS(1899), - [anon_sym_POUND] = ACTIONS(1899), - [anon_sym_asm] = ACTIONS(1899), - [anon_sym_AT_LBRACK] = ACTIONS(1899), - [sym___double_quote] = ACTIONS(1899), - [sym___single_quote] = ACTIONS(1899), - [sym___c_double_quote] = ACTIONS(1899), - [sym___c_single_quote] = ACTIONS(1899), - [sym___r_double_quote] = ACTIONS(1899), - [sym___r_single_quote] = ACTIONS(1899), + [anon_sym_DOT] = ACTIONS(1881), + [anon_sym_as] = ACTIONS(1881), + [anon_sym_LBRACE] = ACTIONS(1881), + [anon_sym_COMMA] = ACTIONS(1881), + [anon_sym_const] = ACTIONS(1881), + [anon_sym_LPAREN] = 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(1879), + [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(1881), + [anon_sym_BANG] = ACTIONS(1881), + [anon_sym_go] = ACTIONS(1881), + [anon_sym_spawn] = ACTIONS(1881), + [anon_sym_json_DOTdecode] = ACTIONS(1881), + [anon_sym_LBRACK2] = ACTIONS(1881), + [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(1881), + [anon_sym_POUND_LBRACK] = ACTIONS(1881), + [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), }, [986] = { [sym_line_comment] = STATE(986), [sym_block_comment] = STATE(986), - [ts_builtin_sym_end] = ACTIONS(1915), - [sym_identifier] = ACTIONS(1917), - [anon_sym_LF] = ACTIONS(1917), - [anon_sym_CR] = ACTIONS(1917), - [anon_sym_CR_LF] = ACTIONS(1917), + [ts_builtin_sym_end] = ACTIONS(1811), + [sym_identifier] = ACTIONS(1813), + [anon_sym_LF] = ACTIONS(1813), + [anon_sym_CR] = ACTIONS(1813), + [anon_sym_CR_LF] = ACTIONS(1813), [anon_sym_SLASH_SLASH] = ACTIONS(497), [anon_sym_SLASH_STAR] = ACTIONS(499), - [anon_sym_DOT] = ACTIONS(1917), - [anon_sym_as] = ACTIONS(1917), - [anon_sym_LBRACE] = ACTIONS(1917), - [anon_sym_COMMA] = ACTIONS(1917), - [anon_sym_const] = ACTIONS(1917), - [anon_sym_LPAREN] = ACTIONS(1917), - [anon_sym___global] = ACTIONS(1917), - [anon_sym_type] = ACTIONS(1917), - [anon_sym_PIPE] = ACTIONS(1917), - [anon_sym_fn] = ACTIONS(1917), - [anon_sym_PLUS] = ACTIONS(1917), - [anon_sym_DASH] = ACTIONS(1917), - [anon_sym_STAR] = ACTIONS(1917), - [anon_sym_SLASH] = ACTIONS(1917), - [anon_sym_PERCENT] = ACTIONS(1917), - [anon_sym_LT] = ACTIONS(1917), - [anon_sym_GT] = ACTIONS(1917), - [anon_sym_EQ_EQ] = ACTIONS(1917), - [anon_sym_BANG_EQ] = ACTIONS(1917), - [anon_sym_LT_EQ] = ACTIONS(1917), - [anon_sym_GT_EQ] = ACTIONS(1917), - [anon_sym_LBRACK] = ACTIONS(1915), - [anon_sym_struct] = ACTIONS(1917), - [anon_sym_union] = ACTIONS(1917), - [anon_sym_pub] = ACTIONS(1917), - [anon_sym_mut] = ACTIONS(1917), - [anon_sym_enum] = ACTIONS(1917), - [anon_sym_interface] = ACTIONS(1917), - [anon_sym_PLUS_PLUS] = ACTIONS(1917), - [anon_sym_DASH_DASH] = ACTIONS(1917), - [anon_sym_QMARK] = ACTIONS(1917), - [anon_sym_BANG] = ACTIONS(1917), - [anon_sym_go] = ACTIONS(1917), - [anon_sym_spawn] = ACTIONS(1917), - [anon_sym_json_DOTdecode] = ACTIONS(1917), - [anon_sym_LBRACK2] = ACTIONS(1917), - [anon_sym_TILDE] = ACTIONS(1917), - [anon_sym_CARET] = ACTIONS(1917), - [anon_sym_AMP] = ACTIONS(1917), - [anon_sym_LT_DASH] = ACTIONS(1917), - [anon_sym_LT_LT] = ACTIONS(1917), - [anon_sym_GT_GT] = ACTIONS(1917), - [anon_sym_GT_GT_GT] = ACTIONS(1917), - [anon_sym_AMP_CARET] = ACTIONS(1917), - [anon_sym_AMP_AMP] = ACTIONS(1917), - [anon_sym_PIPE_PIPE] = ACTIONS(1917), - [anon_sym_or] = ACTIONS(1917), - [sym_none] = ACTIONS(1917), - [sym_true] = ACTIONS(1917), - [sym_false] = ACTIONS(1917), - [sym_nil] = ACTIONS(1917), - [anon_sym_QMARK_DOT] = ACTIONS(1917), - [anon_sym_POUND_LBRACK] = ACTIONS(1917), - [anon_sym_if] = ACTIONS(1917), - [anon_sym_else] = ACTIONS(1917), - [anon_sym_DOLLARif] = ACTIONS(1917), - [anon_sym_is] = ACTIONS(1917), - [anon_sym_BANGis] = ACTIONS(1917), - [anon_sym_in] = ACTIONS(1917), - [anon_sym_BANGin] = ACTIONS(1917), - [anon_sym_match] = ACTIONS(1917), - [anon_sym_select] = ACTIONS(1917), - [anon_sym_lock] = ACTIONS(1917), - [anon_sym_rlock] = ACTIONS(1917), - [anon_sym_unsafe] = ACTIONS(1917), - [anon_sym_sql] = ACTIONS(1917), - [sym_int_literal] = ACTIONS(1917), - [sym_float_literal] = ACTIONS(1917), - [sym_rune_literal] = ACTIONS(1917), - [sym_pseudo_compile_time_identifier] = ACTIONS(1917), - [anon_sym_shared] = ACTIONS(1917), - [anon_sym_map_LBRACK] = ACTIONS(1917), - [anon_sym_chan] = ACTIONS(1917), - [anon_sym_thread] = ACTIONS(1917), - [anon_sym_atomic] = ACTIONS(1917), - [anon_sym_assert] = ACTIONS(1917), - [anon_sym_defer] = ACTIONS(1917), - [anon_sym_goto] = ACTIONS(1917), - [anon_sym_break] = ACTIONS(1917), - [anon_sym_continue] = ACTIONS(1917), - [anon_sym_return] = ACTIONS(1917), - [anon_sym_DOLLARfor] = ACTIONS(1917), - [anon_sym_for] = ACTIONS(1917), - [anon_sym_POUND] = ACTIONS(1917), - [anon_sym_asm] = ACTIONS(1917), - [anon_sym_AT_LBRACK] = ACTIONS(1917), - [sym___double_quote] = ACTIONS(1917), - [sym___single_quote] = ACTIONS(1917), - [sym___c_double_quote] = ACTIONS(1917), - [sym___c_single_quote] = ACTIONS(1917), - [sym___r_double_quote] = ACTIONS(1917), - [sym___r_single_quote] = ACTIONS(1917), + [anon_sym_DOT] = ACTIONS(1813), + [anon_sym_as] = ACTIONS(1813), + [anon_sym_LBRACE] = ACTIONS(1813), + [anon_sym_COMMA] = ACTIONS(1813), + [anon_sym_const] = ACTIONS(1813), + [anon_sym_LPAREN] = ACTIONS(1813), + [anon_sym___global] = ACTIONS(1813), + [anon_sym_type] = ACTIONS(1813), + [anon_sym_PIPE] = ACTIONS(1813), + [anon_sym_fn] = ACTIONS(1813), + [anon_sym_PLUS] = ACTIONS(1813), + [anon_sym_DASH] = ACTIONS(1813), + [anon_sym_STAR] = ACTIONS(1813), + [anon_sym_SLASH] = ACTIONS(1813), + [anon_sym_PERCENT] = ACTIONS(1813), + [anon_sym_LT] = ACTIONS(1813), + [anon_sym_GT] = ACTIONS(1813), + [anon_sym_EQ_EQ] = ACTIONS(1813), + [anon_sym_BANG_EQ] = ACTIONS(1813), + [anon_sym_LT_EQ] = ACTIONS(1813), + [anon_sym_GT_EQ] = ACTIONS(1813), + [anon_sym_LBRACK] = ACTIONS(1811), + [anon_sym_struct] = ACTIONS(1813), + [anon_sym_union] = ACTIONS(1813), + [anon_sym_pub] = ACTIONS(1813), + [anon_sym_mut] = ACTIONS(1813), + [anon_sym_enum] = ACTIONS(1813), + [anon_sym_interface] = ACTIONS(1813), + [anon_sym_PLUS_PLUS] = ACTIONS(1813), + [anon_sym_DASH_DASH] = ACTIONS(1813), + [anon_sym_QMARK] = ACTIONS(1813), + [anon_sym_BANG] = ACTIONS(1813), + [anon_sym_go] = ACTIONS(1813), + [anon_sym_spawn] = ACTIONS(1813), + [anon_sym_json_DOTdecode] = ACTIONS(1813), + [anon_sym_LBRACK2] = ACTIONS(1813), + [anon_sym_TILDE] = ACTIONS(1813), + [anon_sym_CARET] = ACTIONS(1813), + [anon_sym_AMP] = ACTIONS(1813), + [anon_sym_LT_DASH] = ACTIONS(1813), + [anon_sym_LT_LT] = ACTIONS(1813), + [anon_sym_GT_GT] = ACTIONS(1813), + [anon_sym_GT_GT_GT] = ACTIONS(1813), + [anon_sym_AMP_CARET] = ACTIONS(1813), + [anon_sym_AMP_AMP] = ACTIONS(1813), + [anon_sym_PIPE_PIPE] = ACTIONS(1813), + [anon_sym_or] = ACTIONS(1813), + [sym_none] = ACTIONS(1813), + [sym_true] = ACTIONS(1813), + [sym_false] = ACTIONS(1813), + [sym_nil] = ACTIONS(1813), + [anon_sym_QMARK_DOT] = ACTIONS(1813), + [anon_sym_POUND_LBRACK] = ACTIONS(1813), + [anon_sym_if] = ACTIONS(1813), + [anon_sym_DOLLARif] = ACTIONS(1813), + [anon_sym_DOLLARelse] = ACTIONS(1813), + [anon_sym_is] = ACTIONS(1813), + [anon_sym_BANGis] = ACTIONS(1813), + [anon_sym_in] = ACTIONS(1813), + [anon_sym_BANGin] = ACTIONS(1813), + [anon_sym_match] = ACTIONS(1813), + [anon_sym_select] = ACTIONS(1813), + [anon_sym_lock] = ACTIONS(1813), + [anon_sym_rlock] = ACTIONS(1813), + [anon_sym_unsafe] = ACTIONS(1813), + [anon_sym_sql] = ACTIONS(1813), + [sym_int_literal] = ACTIONS(1813), + [sym_float_literal] = ACTIONS(1813), + [sym_rune_literal] = ACTIONS(1813), + [sym_pseudo_compile_time_identifier] = ACTIONS(1813), + [anon_sym_shared] = ACTIONS(1813), + [anon_sym_map_LBRACK] = ACTIONS(1813), + [anon_sym_chan] = ACTIONS(1813), + [anon_sym_thread] = ACTIONS(1813), + [anon_sym_atomic] = ACTIONS(1813), + [anon_sym_assert] = ACTIONS(1813), + [anon_sym_defer] = ACTIONS(1813), + [anon_sym_goto] = ACTIONS(1813), + [anon_sym_break] = ACTIONS(1813), + [anon_sym_continue] = ACTIONS(1813), + [anon_sym_return] = ACTIONS(1813), + [anon_sym_DOLLARfor] = ACTIONS(1813), + [anon_sym_for] = ACTIONS(1813), + [anon_sym_POUND] = ACTIONS(1813), + [anon_sym_asm] = ACTIONS(1813), + [anon_sym_AT_LBRACK] = ACTIONS(1813), + [sym___double_quote] = ACTIONS(1813), + [sym___single_quote] = ACTIONS(1813), + [sym___c_double_quote] = ACTIONS(1813), + [sym___c_single_quote] = ACTIONS(1813), + [sym___r_double_quote] = ACTIONS(1813), + [sym___r_single_quote] = ACTIONS(1813), }, [987] = { [sym_line_comment] = STATE(987), [sym_block_comment] = STATE(987), - [ts_builtin_sym_end] = ACTIONS(1915), - [sym_identifier] = ACTIONS(1917), - [anon_sym_LF] = ACTIONS(1917), - [anon_sym_CR] = ACTIONS(1917), - [anon_sym_CR_LF] = ACTIONS(1917), - [anon_sym_SLASH_SLASH] = ACTIONS(497), - [anon_sym_SLASH_STAR] = ACTIONS(499), - [anon_sym_DOT] = ACTIONS(1917), - [anon_sym_as] = ACTIONS(1917), - [anon_sym_LBRACE] = ACTIONS(1917), - [anon_sym_COMMA] = ACTIONS(1917), - [anon_sym_const] = ACTIONS(1917), - [anon_sym_LPAREN] = ACTIONS(1917), - [anon_sym___global] = ACTIONS(1917), - [anon_sym_type] = ACTIONS(1917), - [anon_sym_PIPE] = ACTIONS(1917), - [anon_sym_fn] = ACTIONS(1917), - [anon_sym_PLUS] = ACTIONS(1917), - [anon_sym_DASH] = ACTIONS(1917), - [anon_sym_STAR] = ACTIONS(1917), - [anon_sym_SLASH] = ACTIONS(1917), - [anon_sym_PERCENT] = ACTIONS(1917), - [anon_sym_LT] = ACTIONS(1917), - [anon_sym_GT] = ACTIONS(1917), - [anon_sym_EQ_EQ] = ACTIONS(1917), - [anon_sym_BANG_EQ] = ACTIONS(1917), - [anon_sym_LT_EQ] = ACTIONS(1917), - [anon_sym_GT_EQ] = ACTIONS(1917), - [anon_sym_LBRACK] = ACTIONS(1915), - [anon_sym_struct] = ACTIONS(1917), - [anon_sym_union] = ACTIONS(1917), - [anon_sym_pub] = ACTIONS(1917), - [anon_sym_mut] = ACTIONS(1917), - [anon_sym_enum] = ACTIONS(1917), - [anon_sym_interface] = ACTIONS(1917), - [anon_sym_PLUS_PLUS] = ACTIONS(1917), - [anon_sym_DASH_DASH] = ACTIONS(1917), - [anon_sym_QMARK] = ACTIONS(1917), - [anon_sym_BANG] = ACTIONS(1917), - [anon_sym_go] = ACTIONS(1917), - [anon_sym_spawn] = ACTIONS(1917), - [anon_sym_json_DOTdecode] = ACTIONS(1917), - [anon_sym_LBRACK2] = ACTIONS(1917), - [anon_sym_TILDE] = ACTIONS(1917), - [anon_sym_CARET] = ACTIONS(1917), - [anon_sym_AMP] = ACTIONS(1917), - [anon_sym_LT_DASH] = ACTIONS(1917), - [anon_sym_LT_LT] = ACTIONS(1917), - [anon_sym_GT_GT] = ACTIONS(1917), - [anon_sym_GT_GT_GT] = ACTIONS(1917), - [anon_sym_AMP_CARET] = ACTIONS(1917), - [anon_sym_AMP_AMP] = ACTIONS(1917), - [anon_sym_PIPE_PIPE] = ACTIONS(1917), - [anon_sym_or] = ACTIONS(1917), - [sym_none] = ACTIONS(1917), - [sym_true] = ACTIONS(1917), - [sym_false] = ACTIONS(1917), - [sym_nil] = ACTIONS(1917), - [anon_sym_QMARK_DOT] = ACTIONS(1917), - [anon_sym_POUND_LBRACK] = ACTIONS(1917), - [anon_sym_if] = ACTIONS(1917), - [anon_sym_DOLLARif] = ACTIONS(1917), - [anon_sym_DOLLARelse] = ACTIONS(1917), - [anon_sym_is] = ACTIONS(1917), - [anon_sym_BANGis] = ACTIONS(1917), - [anon_sym_in] = ACTIONS(1917), - [anon_sym_BANGin] = ACTIONS(1917), - [anon_sym_match] = ACTIONS(1917), - [anon_sym_select] = ACTIONS(1917), - [anon_sym_lock] = ACTIONS(1917), - [anon_sym_rlock] = ACTIONS(1917), - [anon_sym_unsafe] = ACTIONS(1917), - [anon_sym_sql] = ACTIONS(1917), - [sym_int_literal] = ACTIONS(1917), - [sym_float_literal] = ACTIONS(1917), - [sym_rune_literal] = ACTIONS(1917), - [sym_pseudo_compile_time_identifier] = ACTIONS(1917), - [anon_sym_shared] = ACTIONS(1917), - [anon_sym_map_LBRACK] = ACTIONS(1917), - [anon_sym_chan] = ACTIONS(1917), - [anon_sym_thread] = ACTIONS(1917), - [anon_sym_atomic] = ACTIONS(1917), - [anon_sym_assert] = ACTIONS(1917), - [anon_sym_defer] = ACTIONS(1917), - [anon_sym_goto] = ACTIONS(1917), - [anon_sym_break] = ACTIONS(1917), - [anon_sym_continue] = ACTIONS(1917), - [anon_sym_return] = ACTIONS(1917), - [anon_sym_DOLLARfor] = ACTIONS(1917), - [anon_sym_for] = ACTIONS(1917), - [anon_sym_POUND] = ACTIONS(1917), - [anon_sym_asm] = ACTIONS(1917), - [anon_sym_AT_LBRACK] = ACTIONS(1917), - [sym___double_quote] = ACTIONS(1917), - [sym___single_quote] = ACTIONS(1917), - [sym___c_double_quote] = ACTIONS(1917), - [sym___c_single_quote] = ACTIONS(1917), - [sym___r_double_quote] = ACTIONS(1917), - [sym___r_single_quote] = ACTIONS(1917), + [sym_reference_expression] = STATE(4328), + [sym_type_reference_expression] = STATE(1288), + [sym_plain_type] = STATE(1309), + [sym__plain_type_without_special] = STATE(1293), + [sym_anon_struct_type] = STATE(1303), + [sym_multi_return_type] = STATE(1293), + [sym_result_type] = STATE(1293), + [sym_option_type] = STATE(1293), + [sym_qualified_type] = STATE(1288), + [sym_fixed_array_type] = STATE(1303), + [sym_array_type] = STATE(1303), + [sym_pointer_type] = STATE(1303), + [sym_wrong_pointer_type] = STATE(1303), + [sym_map_type] = STATE(1303), + [sym_channel_type] = STATE(1303), + [sym_shared_type] = STATE(1303), + [sym_thread_type] = STATE(1303), + [sym_atomic_type] = STATE(1303), + [sym_generic_type] = STATE(1303), + [sym_function_type] = STATE(1303), + [sym_identifier] = ACTIONS(3570), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(589), + [anon_sym_as] = ACTIONS(589), + [anon_sym_LBRACE] = ACTIONS(585), + [anon_sym_COMMA] = ACTIONS(585), + [anon_sym_RBRACE] = ACTIONS(585), + [anon_sym_LPAREN] = ACTIONS(3572), + [anon_sym_PIPE] = ACTIONS(589), + [anon_sym_fn] = ACTIONS(3574), + [anon_sym_PLUS] = ACTIONS(589), + [anon_sym_DASH] = ACTIONS(589), + [anon_sym_STAR] = ACTIONS(3576), + [anon_sym_SLASH] = ACTIONS(589), + [anon_sym_PERCENT] = ACTIONS(585), + [anon_sym_LT] = ACTIONS(589), + [anon_sym_GT] = ACTIONS(589), + [anon_sym_EQ_EQ] = ACTIONS(585), + [anon_sym_BANG_EQ] = ACTIONS(585), + [anon_sym_LT_EQ] = ACTIONS(585), + [anon_sym_GT_EQ] = ACTIONS(585), + [anon_sym_LBRACK] = ACTIONS(585), + [anon_sym_RBRACK] = ACTIONS(585), + [anon_sym_struct] = ACTIONS(3578), + [anon_sym_mut] = ACTIONS(589), + [anon_sym_COLON] = ACTIONS(585), + [anon_sym_PLUS_PLUS] = ACTIONS(585), + [anon_sym_DASH_DASH] = ACTIONS(585), + [anon_sym_QMARK] = ACTIONS(3580), + [anon_sym_BANG] = ACTIONS(3582), + [anon_sym_go] = ACTIONS(589), + [anon_sym_spawn] = ACTIONS(589), + [anon_sym_json_DOTdecode] = ACTIONS(585), + [anon_sym_LBRACK2] = ACTIONS(3584), + [anon_sym_TILDE] = ACTIONS(585), + [anon_sym_CARET] = ACTIONS(585), + [anon_sym_AMP] = ACTIONS(3586), + [anon_sym_LT_DASH] = ACTIONS(585), + [anon_sym_LT_LT] = ACTIONS(585), + [anon_sym_GT_GT] = ACTIONS(589), + [anon_sym_GT_GT_GT] = ACTIONS(585), + [anon_sym_AMP_CARET] = ACTIONS(585), + [anon_sym_AMP_AMP] = ACTIONS(585), + [anon_sym_PIPE_PIPE] = ACTIONS(585), + [anon_sym_or] = ACTIONS(589), + [sym_none] = ACTIONS(589), + [sym_true] = ACTIONS(589), + [sym_false] = ACTIONS(589), + [sym_nil] = ACTIONS(589), + [anon_sym_QMARK_DOT] = ACTIONS(585), + [anon_sym_POUND_LBRACK] = ACTIONS(585), + [anon_sym_if] = ACTIONS(589), + [anon_sym_DOLLARif] = ACTIONS(589), + [anon_sym_is] = ACTIONS(589), + [anon_sym_BANGis] = ACTIONS(585), + [anon_sym_in] = ACTIONS(589), + [anon_sym_BANGin] = ACTIONS(585), + [anon_sym_match] = ACTIONS(589), + [anon_sym_select] = ACTIONS(589), + [anon_sym_lock] = ACTIONS(589), + [anon_sym_rlock] = ACTIONS(589), + [anon_sym_unsafe] = ACTIONS(589), + [anon_sym_sql] = ACTIONS(589), + [sym_int_literal] = ACTIONS(589), + [sym_float_literal] = ACTIONS(585), + [sym_rune_literal] = ACTIONS(585), + [sym_pseudo_compile_time_identifier] = ACTIONS(589), + [anon_sym_shared] = ACTIONS(3588), + [anon_sym_map_LBRACK] = ACTIONS(3590), + [anon_sym_chan] = ACTIONS(3592), + [anon_sym_thread] = ACTIONS(3594), + [anon_sym_atomic] = ACTIONS(3596), + [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), }, [988] = { [sym_line_comment] = STATE(988), [sym_block_comment] = STATE(988), - [ts_builtin_sym_end] = ACTIONS(1843), - [sym_identifier] = ACTIONS(1845), - [anon_sym_LF] = ACTIONS(1845), - [anon_sym_CR] = ACTIONS(1845), - [anon_sym_CR_LF] = ACTIONS(1845), + [ts_builtin_sym_end] = ACTIONS(1807), + [sym_identifier] = ACTIONS(1809), + [anon_sym_LF] = ACTIONS(1809), + [anon_sym_CR] = ACTIONS(1809), + [anon_sym_CR_LF] = ACTIONS(1809), [anon_sym_SLASH_SLASH] = ACTIONS(497), [anon_sym_SLASH_STAR] = ACTIONS(499), - [anon_sym_DOT] = ACTIONS(1845), - [anon_sym_as] = ACTIONS(1845), - [anon_sym_LBRACE] = ACTIONS(1845), - [anon_sym_COMMA] = ACTIONS(1845), - [anon_sym_const] = ACTIONS(1845), - [anon_sym_LPAREN] = ACTIONS(1845), - [anon_sym___global] = ACTIONS(1845), - [anon_sym_type] = ACTIONS(1845), - [anon_sym_PIPE] = ACTIONS(1845), - [anon_sym_fn] = ACTIONS(1845), - [anon_sym_PLUS] = ACTIONS(1845), - [anon_sym_DASH] = ACTIONS(1845), - [anon_sym_STAR] = ACTIONS(1845), - [anon_sym_SLASH] = ACTIONS(1845), - [anon_sym_PERCENT] = ACTIONS(1845), - [anon_sym_LT] = ACTIONS(1845), - [anon_sym_GT] = ACTIONS(1845), - [anon_sym_EQ_EQ] = ACTIONS(1845), - [anon_sym_BANG_EQ] = ACTIONS(1845), - [anon_sym_LT_EQ] = ACTIONS(1845), - [anon_sym_GT_EQ] = ACTIONS(1845), - [anon_sym_LBRACK] = ACTIONS(1843), - [anon_sym_struct] = ACTIONS(1845), - [anon_sym_union] = ACTIONS(1845), - [anon_sym_pub] = ACTIONS(1845), - [anon_sym_mut] = ACTIONS(1845), - [anon_sym_enum] = ACTIONS(1845), - [anon_sym_interface] = ACTIONS(1845), - [anon_sym_PLUS_PLUS] = ACTIONS(1845), - [anon_sym_DASH_DASH] = ACTIONS(1845), - [anon_sym_QMARK] = ACTIONS(1845), - [anon_sym_BANG] = ACTIONS(1845), - [anon_sym_go] = ACTIONS(1845), - [anon_sym_spawn] = ACTIONS(1845), - [anon_sym_json_DOTdecode] = ACTIONS(1845), - [anon_sym_LBRACK2] = ACTIONS(1845), - [anon_sym_TILDE] = ACTIONS(1845), - [anon_sym_CARET] = ACTIONS(1845), - [anon_sym_AMP] = ACTIONS(1845), - [anon_sym_LT_DASH] = ACTIONS(1845), - [anon_sym_LT_LT] = ACTIONS(1845), - [anon_sym_GT_GT] = ACTIONS(1845), - [anon_sym_GT_GT_GT] = ACTIONS(1845), - [anon_sym_AMP_CARET] = ACTIONS(1845), - [anon_sym_AMP_AMP] = ACTIONS(1845), - [anon_sym_PIPE_PIPE] = ACTIONS(1845), - [anon_sym_or] = ACTIONS(1845), - [sym_none] = ACTIONS(1845), - [sym_true] = ACTIONS(1845), - [sym_false] = ACTIONS(1845), - [sym_nil] = ACTIONS(1845), - [anon_sym_QMARK_DOT] = ACTIONS(1845), - [anon_sym_POUND_LBRACK] = ACTIONS(1845), - [anon_sym_if] = ACTIONS(1845), - [anon_sym_else] = ACTIONS(1845), - [anon_sym_DOLLARif] = ACTIONS(1845), - [anon_sym_is] = ACTIONS(1845), - [anon_sym_BANGis] = ACTIONS(1845), - [anon_sym_in] = ACTIONS(1845), - [anon_sym_BANGin] = ACTIONS(1845), - [anon_sym_match] = ACTIONS(1845), - [anon_sym_select] = ACTIONS(1845), - [anon_sym_lock] = ACTIONS(1845), - [anon_sym_rlock] = ACTIONS(1845), - [anon_sym_unsafe] = ACTIONS(1845), - [anon_sym_sql] = ACTIONS(1845), - [sym_int_literal] = ACTIONS(1845), - [sym_float_literal] = ACTIONS(1845), - [sym_rune_literal] = ACTIONS(1845), - [sym_pseudo_compile_time_identifier] = ACTIONS(1845), - [anon_sym_shared] = ACTIONS(1845), - [anon_sym_map_LBRACK] = ACTIONS(1845), - [anon_sym_chan] = ACTIONS(1845), - [anon_sym_thread] = ACTIONS(1845), - [anon_sym_atomic] = ACTIONS(1845), - [anon_sym_assert] = ACTIONS(1845), - [anon_sym_defer] = ACTIONS(1845), - [anon_sym_goto] = ACTIONS(1845), - [anon_sym_break] = ACTIONS(1845), - [anon_sym_continue] = ACTIONS(1845), - [anon_sym_return] = ACTIONS(1845), - [anon_sym_DOLLARfor] = ACTIONS(1845), - [anon_sym_for] = ACTIONS(1845), - [anon_sym_POUND] = ACTIONS(1845), - [anon_sym_asm] = ACTIONS(1845), - [anon_sym_AT_LBRACK] = ACTIONS(1845), - [sym___double_quote] = ACTIONS(1845), - [sym___single_quote] = ACTIONS(1845), - [sym___c_double_quote] = ACTIONS(1845), - [sym___c_single_quote] = ACTIONS(1845), - [sym___r_double_quote] = ACTIONS(1845), - [sym___r_single_quote] = ACTIONS(1845), + [anon_sym_DOT] = ACTIONS(1809), + [anon_sym_as] = ACTIONS(1809), + [anon_sym_LBRACE] = ACTIONS(1809), + [anon_sym_COMMA] = ACTIONS(1809), + [anon_sym_const] = ACTIONS(1809), + [anon_sym_LPAREN] = ACTIONS(1809), + [anon_sym___global] = ACTIONS(1809), + [anon_sym_type] = ACTIONS(1809), + [anon_sym_PIPE] = ACTIONS(1809), + [anon_sym_fn] = ACTIONS(1809), + [anon_sym_PLUS] = ACTIONS(1809), + [anon_sym_DASH] = ACTIONS(1809), + [anon_sym_STAR] = ACTIONS(1809), + [anon_sym_SLASH] = ACTIONS(1809), + [anon_sym_PERCENT] = ACTIONS(1809), + [anon_sym_LT] = ACTIONS(1809), + [anon_sym_GT] = ACTIONS(1809), + [anon_sym_EQ_EQ] = ACTIONS(1809), + [anon_sym_BANG_EQ] = ACTIONS(1809), + [anon_sym_LT_EQ] = ACTIONS(1809), + [anon_sym_GT_EQ] = ACTIONS(1809), + [anon_sym_LBRACK] = ACTIONS(1807), + [anon_sym_struct] = ACTIONS(1809), + [anon_sym_union] = ACTIONS(1809), + [anon_sym_pub] = ACTIONS(1809), + [anon_sym_mut] = ACTIONS(1809), + [anon_sym_enum] = ACTIONS(1809), + [anon_sym_interface] = ACTIONS(1809), + [anon_sym_PLUS_PLUS] = ACTIONS(1809), + [anon_sym_DASH_DASH] = ACTIONS(1809), + [anon_sym_QMARK] = ACTIONS(1809), + [anon_sym_BANG] = ACTIONS(1809), + [anon_sym_go] = ACTIONS(1809), + [anon_sym_spawn] = ACTIONS(1809), + [anon_sym_json_DOTdecode] = ACTIONS(1809), + [anon_sym_LBRACK2] = ACTIONS(1809), + [anon_sym_TILDE] = ACTIONS(1809), + [anon_sym_CARET] = ACTIONS(1809), + [anon_sym_AMP] = ACTIONS(1809), + [anon_sym_LT_DASH] = ACTIONS(1809), + [anon_sym_LT_LT] = ACTIONS(1809), + [anon_sym_GT_GT] = ACTIONS(1809), + [anon_sym_GT_GT_GT] = ACTIONS(1809), + [anon_sym_AMP_CARET] = ACTIONS(1809), + [anon_sym_AMP_AMP] = ACTIONS(1809), + [anon_sym_PIPE_PIPE] = ACTIONS(1809), + [anon_sym_or] = ACTIONS(1809), + [sym_none] = ACTIONS(1809), + [sym_true] = ACTIONS(1809), + [sym_false] = ACTIONS(1809), + [sym_nil] = ACTIONS(1809), + [anon_sym_QMARK_DOT] = ACTIONS(1809), + [anon_sym_POUND_LBRACK] = ACTIONS(1809), + [anon_sym_if] = ACTIONS(1809), + [anon_sym_else] = ACTIONS(1809), + [anon_sym_DOLLARif] = ACTIONS(1809), + [anon_sym_is] = ACTIONS(1809), + [anon_sym_BANGis] = ACTIONS(1809), + [anon_sym_in] = ACTIONS(1809), + [anon_sym_BANGin] = ACTIONS(1809), + [anon_sym_match] = ACTIONS(1809), + [anon_sym_select] = ACTIONS(1809), + [anon_sym_lock] = ACTIONS(1809), + [anon_sym_rlock] = ACTIONS(1809), + [anon_sym_unsafe] = ACTIONS(1809), + [anon_sym_sql] = ACTIONS(1809), + [sym_int_literal] = ACTIONS(1809), + [sym_float_literal] = ACTIONS(1809), + [sym_rune_literal] = ACTIONS(1809), + [sym_pseudo_compile_time_identifier] = ACTIONS(1809), + [anon_sym_shared] = ACTIONS(1809), + [anon_sym_map_LBRACK] = ACTIONS(1809), + [anon_sym_chan] = ACTIONS(1809), + [anon_sym_thread] = ACTIONS(1809), + [anon_sym_atomic] = ACTIONS(1809), + [anon_sym_assert] = ACTIONS(1809), + [anon_sym_defer] = ACTIONS(1809), + [anon_sym_goto] = ACTIONS(1809), + [anon_sym_break] = ACTIONS(1809), + [anon_sym_continue] = ACTIONS(1809), + [anon_sym_return] = ACTIONS(1809), + [anon_sym_DOLLARfor] = ACTIONS(1809), + [anon_sym_for] = ACTIONS(1809), + [anon_sym_POUND] = ACTIONS(1809), + [anon_sym_asm] = ACTIONS(1809), + [anon_sym_AT_LBRACK] = ACTIONS(1809), + [sym___double_quote] = ACTIONS(1809), + [sym___single_quote] = ACTIONS(1809), + [sym___c_double_quote] = ACTIONS(1809), + [sym___c_single_quote] = ACTIONS(1809), + [sym___r_double_quote] = ACTIONS(1809), + [sym___r_single_quote] = ACTIONS(1809), }, [989] = { [sym_line_comment] = STATE(989), [sym_block_comment] = STATE(989), - [sym_reference_expression] = STATE(4355), - [sym_type_reference_expression] = STATE(1278), - [sym_plain_type] = STATE(1305), - [sym__plain_type_without_special] = STATE(1357), - [sym_anon_struct_type] = STATE(1360), - [sym_multi_return_type] = STATE(1357), - [sym_result_type] = STATE(1357), - [sym_option_type] = STATE(1357), - [sym_qualified_type] = STATE(1278), - [sym_fixed_array_type] = STATE(1360), - [sym_array_type] = STATE(1360), - [sym_pointer_type] = STATE(1360), - [sym_wrong_pointer_type] = STATE(1360), - [sym_map_type] = STATE(1360), - [sym_channel_type] = STATE(1360), - [sym_shared_type] = STATE(1360), - [sym_thread_type] = STATE(1360), - [sym_atomic_type] = STATE(1360), - [sym_generic_type] = STATE(1360), - [sym_function_type] = STATE(1360), - [sym_identifier] = ACTIONS(3556), + [ts_builtin_sym_end] = ACTIONS(1911), + [sym_identifier] = ACTIONS(1913), + [anon_sym_LF] = ACTIONS(1913), + [anon_sym_CR] = ACTIONS(1913), + [anon_sym_CR_LF] = ACTIONS(1913), + [anon_sym_SLASH_SLASH] = ACTIONS(497), + [anon_sym_SLASH_STAR] = ACTIONS(499), + [anon_sym_DOT] = ACTIONS(1913), + [anon_sym_as] = ACTIONS(1913), + [anon_sym_LBRACE] = ACTIONS(1913), + [anon_sym_COMMA] = ACTIONS(1913), + [anon_sym_const] = ACTIONS(1913), + [anon_sym_LPAREN] = ACTIONS(1913), + [anon_sym___global] = ACTIONS(1913), + [anon_sym_type] = ACTIONS(1913), + [anon_sym_PIPE] = ACTIONS(1913), + [anon_sym_fn] = ACTIONS(1913), + [anon_sym_PLUS] = ACTIONS(1913), + [anon_sym_DASH] = ACTIONS(1913), + [anon_sym_STAR] = ACTIONS(1913), + [anon_sym_SLASH] = ACTIONS(1913), + [anon_sym_PERCENT] = ACTIONS(1913), + [anon_sym_LT] = ACTIONS(1913), + [anon_sym_GT] = ACTIONS(1913), + [anon_sym_EQ_EQ] = ACTIONS(1913), + [anon_sym_BANG_EQ] = ACTIONS(1913), + [anon_sym_LT_EQ] = ACTIONS(1913), + [anon_sym_GT_EQ] = ACTIONS(1913), + [anon_sym_LBRACK] = ACTIONS(1911), + [anon_sym_struct] = ACTIONS(1913), + [anon_sym_union] = ACTIONS(1913), + [anon_sym_pub] = ACTIONS(1913), + [anon_sym_mut] = ACTIONS(1913), + [anon_sym_enum] = ACTIONS(1913), + [anon_sym_interface] = ACTIONS(1913), + [anon_sym_PLUS_PLUS] = ACTIONS(1913), + [anon_sym_DASH_DASH] = ACTIONS(1913), + [anon_sym_QMARK] = ACTIONS(1913), + [anon_sym_BANG] = ACTIONS(1913), + [anon_sym_go] = ACTIONS(1913), + [anon_sym_spawn] = ACTIONS(1913), + [anon_sym_json_DOTdecode] = ACTIONS(1913), + [anon_sym_LBRACK2] = ACTIONS(1913), + [anon_sym_TILDE] = ACTIONS(1913), + [anon_sym_CARET] = ACTIONS(1913), + [anon_sym_AMP] = ACTIONS(1913), + [anon_sym_LT_DASH] = ACTIONS(1913), + [anon_sym_LT_LT] = ACTIONS(1913), + [anon_sym_GT_GT] = ACTIONS(1913), + [anon_sym_GT_GT_GT] = ACTIONS(1913), + [anon_sym_AMP_CARET] = ACTIONS(1913), + [anon_sym_AMP_AMP] = ACTIONS(1913), + [anon_sym_PIPE_PIPE] = ACTIONS(1913), + [anon_sym_or] = ACTIONS(1913), + [sym_none] = ACTIONS(1913), + [sym_true] = ACTIONS(1913), + [sym_false] = ACTIONS(1913), + [sym_nil] = ACTIONS(1913), + [anon_sym_QMARK_DOT] = ACTIONS(1913), + [anon_sym_POUND_LBRACK] = ACTIONS(1913), + [anon_sym_if] = ACTIONS(1913), + [anon_sym_DOLLARif] = ACTIONS(1913), + [anon_sym_DOLLARelse] = ACTIONS(3598), + [anon_sym_is] = ACTIONS(1913), + [anon_sym_BANGis] = ACTIONS(1913), + [anon_sym_in] = ACTIONS(1913), + [anon_sym_BANGin] = ACTIONS(1913), + [anon_sym_match] = ACTIONS(1913), + [anon_sym_select] = ACTIONS(1913), + [anon_sym_lock] = ACTIONS(1913), + [anon_sym_rlock] = ACTIONS(1913), + [anon_sym_unsafe] = ACTIONS(1913), + [anon_sym_sql] = ACTIONS(1913), + [sym_int_literal] = ACTIONS(1913), + [sym_float_literal] = ACTIONS(1913), + [sym_rune_literal] = ACTIONS(1913), + [sym_pseudo_compile_time_identifier] = ACTIONS(1913), + [anon_sym_shared] = ACTIONS(1913), + [anon_sym_map_LBRACK] = ACTIONS(1913), + [anon_sym_chan] = ACTIONS(1913), + [anon_sym_thread] = ACTIONS(1913), + [anon_sym_atomic] = ACTIONS(1913), + [anon_sym_assert] = ACTIONS(1913), + [anon_sym_defer] = ACTIONS(1913), + [anon_sym_goto] = ACTIONS(1913), + [anon_sym_break] = ACTIONS(1913), + [anon_sym_continue] = ACTIONS(1913), + [anon_sym_return] = ACTIONS(1913), + [anon_sym_DOLLARfor] = ACTIONS(1913), + [anon_sym_for] = ACTIONS(1913), + [anon_sym_POUND] = ACTIONS(1913), + [anon_sym_asm] = ACTIONS(1913), + [anon_sym_AT_LBRACK] = ACTIONS(1913), + [sym___double_quote] = ACTIONS(1913), + [sym___single_quote] = ACTIONS(1913), + [sym___c_double_quote] = ACTIONS(1913), + [sym___c_single_quote] = ACTIONS(1913), + [sym___r_double_quote] = ACTIONS(1913), + [sym___r_single_quote] = ACTIONS(1913), + }, + [990] = { + [sym_line_comment] = STATE(990), + [sym_block_comment] = STATE(990), + [sym_reference_expression] = STATE(4328), + [sym_type_reference_expression] = STATE(1288), + [sym_plain_type] = STATE(1359), + [sym__plain_type_without_special] = STATE(1293), + [sym_anon_struct_type] = STATE(1303), + [sym_multi_return_type] = STATE(1293), + [sym_result_type] = STATE(1293), + [sym_option_type] = STATE(1293), + [sym_qualified_type] = STATE(1288), + [sym_fixed_array_type] = STATE(1303), + [sym_array_type] = STATE(1303), + [sym_pointer_type] = STATE(1303), + [sym_wrong_pointer_type] = STATE(1303), + [sym_map_type] = STATE(1303), + [sym_channel_type] = STATE(1303), + [sym_shared_type] = STATE(1303), + [sym_thread_type] = STATE(1303), + [sym_atomic_type] = STATE(1303), + [sym_generic_type] = STATE(1303), + [sym_function_type] = STATE(1303), + [sym_identifier] = ACTIONS(3570), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(623), + [anon_sym_as] = ACTIONS(623), + [anon_sym_LBRACE] = ACTIONS(621), + [anon_sym_COMMA] = ACTIONS(621), + [anon_sym_RBRACE] = ACTIONS(621), + [anon_sym_LPAREN] = ACTIONS(3572), + [anon_sym_PIPE] = ACTIONS(623), + [anon_sym_fn] = ACTIONS(3574), + [anon_sym_PLUS] = ACTIONS(623), + [anon_sym_DASH] = ACTIONS(623), + [anon_sym_STAR] = ACTIONS(3576), + [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(3578), + [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(3580), + [anon_sym_BANG] = ACTIONS(3582), + [anon_sym_go] = ACTIONS(623), + [anon_sym_spawn] = ACTIONS(623), + [anon_sym_json_DOTdecode] = ACTIONS(621), + [anon_sym_LBRACK2] = ACTIONS(3584), + [anon_sym_TILDE] = ACTIONS(621), + [anon_sym_CARET] = ACTIONS(621), + [anon_sym_AMP] = ACTIONS(3586), + [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(3588), + [anon_sym_map_LBRACK] = ACTIONS(3590), + [anon_sym_chan] = ACTIONS(3592), + [anon_sym_thread] = ACTIONS(3594), + [anon_sym_atomic] = ACTIONS(3596), + [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), + }, + [991] = { + [sym_line_comment] = STATE(991), + [sym_block_comment] = STATE(991), + [sym_reference_expression] = STATE(4328), + [sym_type_reference_expression] = STATE(1288), + [sym_plain_type] = STATE(1339), + [sym__plain_type_without_special] = STATE(1293), + [sym_anon_struct_type] = STATE(1303), + [sym_multi_return_type] = STATE(1293), + [sym_result_type] = STATE(1293), + [sym_option_type] = STATE(1293), + [sym_qualified_type] = STATE(1288), + [sym_fixed_array_type] = STATE(1303), + [sym_array_type] = STATE(1303), + [sym_pointer_type] = STATE(1303), + [sym_wrong_pointer_type] = STATE(1303), + [sym_map_type] = STATE(1303), + [sym_channel_type] = STATE(1303), + [sym_shared_type] = STATE(1303), + [sym_thread_type] = STATE(1303), + [sym_atomic_type] = STATE(1303), + [sym_generic_type] = STATE(1303), + [sym_function_type] = STATE(1303), + [sym_identifier] = ACTIONS(3570), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), [anon_sym_DOT] = ACTIONS(619), @@ -136225,12 +136462,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACE] = ACTIONS(617), [anon_sym_COMMA] = ACTIONS(617), [anon_sym_RBRACE] = ACTIONS(617), - [anon_sym_LPAREN] = ACTIONS(3558), + [anon_sym_LPAREN] = ACTIONS(3572), [anon_sym_PIPE] = ACTIONS(619), - [anon_sym_fn] = ACTIONS(3560), + [anon_sym_fn] = ACTIONS(3574), [anon_sym_PLUS] = ACTIONS(619), [anon_sym_DASH] = ACTIONS(619), - [anon_sym_STAR] = ACTIONS(3562), + [anon_sym_STAR] = ACTIONS(3576), [anon_sym_SLASH] = ACTIONS(619), [anon_sym_PERCENT] = ACTIONS(617), [anon_sym_LT] = ACTIONS(619), @@ -136241,20 +136478,20 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_GT_EQ] = ACTIONS(617), [anon_sym_LBRACK] = ACTIONS(617), [anon_sym_RBRACK] = ACTIONS(617), - [anon_sym_struct] = ACTIONS(3564), + [anon_sym_struct] = ACTIONS(3578), [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(3566), - [anon_sym_BANG] = ACTIONS(3568), + [anon_sym_QMARK] = ACTIONS(3580), + [anon_sym_BANG] = ACTIONS(3582), [anon_sym_go] = ACTIONS(619), [anon_sym_spawn] = ACTIONS(619), [anon_sym_json_DOTdecode] = ACTIONS(617), - [anon_sym_LBRACK2] = ACTIONS(3570), + [anon_sym_LBRACK2] = ACTIONS(3584), [anon_sym_TILDE] = ACTIONS(617), [anon_sym_CARET] = ACTIONS(617), - [anon_sym_AMP] = ACTIONS(3572), + [anon_sym_AMP] = ACTIONS(3586), [anon_sym_LT_DASH] = ACTIONS(617), [anon_sym_LT_LT] = ACTIONS(617), [anon_sym_GT_GT] = ACTIONS(619), @@ -136285,11 +136522,11 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(617), [sym_rune_literal] = ACTIONS(617), [sym_pseudo_compile_time_identifier] = ACTIONS(619), - [anon_sym_shared] = ACTIONS(3574), - [anon_sym_map_LBRACK] = ACTIONS(3576), - [anon_sym_chan] = ACTIONS(3578), - [anon_sym_thread] = ACTIONS(3580), - [anon_sym_atomic] = ACTIONS(3582), + [anon_sym_shared] = ACTIONS(3588), + [anon_sym_map_LBRACK] = ACTIONS(3590), + [anon_sym_chan] = ACTIONS(3592), + [anon_sym_thread] = ACTIONS(3594), + [anon_sym_atomic] = ACTIONS(3596), [sym___double_quote] = ACTIONS(617), [sym___single_quote] = ACTIONS(617), [sym___c_double_quote] = ACTIONS(617), @@ -136297,3172 +136534,1845 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym___r_double_quote] = ACTIONS(617), [sym___r_single_quote] = ACTIONS(617), }, - [990] = { - [sym_line_comment] = STATE(990), - [sym_block_comment] = STATE(990), - [sym_type_parameters] = STATE(998), - [ts_builtin_sym_end] = ACTIONS(1903), - [sym_identifier] = ACTIONS(1905), - [anon_sym_LF] = ACTIONS(1905), - [anon_sym_CR] = ACTIONS(1905), - [anon_sym_CR_LF] = ACTIONS(1905), - [anon_sym_SLASH_SLASH] = ACTIONS(497), - [anon_sym_SLASH_STAR] = ACTIONS(499), - [anon_sym_DOT] = ACTIONS(1905), - [anon_sym_as] = ACTIONS(1905), - [anon_sym_LBRACE] = ACTIONS(1905), - [anon_sym_COMMA] = ACTIONS(1905), - [anon_sym_const] = ACTIONS(1905), - [anon_sym_LPAREN] = ACTIONS(1905), - [anon_sym___global] = ACTIONS(1905), - [anon_sym_type] = ACTIONS(1905), - [anon_sym_PIPE] = ACTIONS(1905), - [anon_sym_fn] = ACTIONS(1905), - [anon_sym_PLUS] = ACTIONS(1905), - [anon_sym_DASH] = ACTIONS(1905), - [anon_sym_STAR] = ACTIONS(1905), - [anon_sym_SLASH] = ACTIONS(1905), - [anon_sym_PERCENT] = ACTIONS(1905), - [anon_sym_LT] = ACTIONS(1905), - [anon_sym_GT] = ACTIONS(1905), - [anon_sym_EQ_EQ] = ACTIONS(1905), - [anon_sym_BANG_EQ] = ACTIONS(1905), - [anon_sym_LT_EQ] = ACTIONS(1905), - [anon_sym_GT_EQ] = ACTIONS(1905), - [anon_sym_LBRACK] = ACTIONS(1903), - [anon_sym_struct] = ACTIONS(1905), - [anon_sym_union] = ACTIONS(1905), - [anon_sym_pub] = ACTIONS(1905), - [anon_sym_mut] = ACTIONS(1905), - [anon_sym_enum] = ACTIONS(1905), - [anon_sym_interface] = ACTIONS(1905), - [anon_sym_PLUS_PLUS] = ACTIONS(1905), - [anon_sym_DASH_DASH] = ACTIONS(1905), - [anon_sym_QMARK] = ACTIONS(1905), - [anon_sym_BANG] = ACTIONS(1905), - [anon_sym_go] = ACTIONS(1905), - [anon_sym_spawn] = ACTIONS(1905), - [anon_sym_json_DOTdecode] = ACTIONS(1905), - [anon_sym_LBRACK2] = ACTIONS(1905), - [anon_sym_TILDE] = ACTIONS(1905), - [anon_sym_CARET] = ACTIONS(1905), - [anon_sym_AMP] = ACTIONS(1905), - [anon_sym_LT_DASH] = ACTIONS(1905), - [anon_sym_LT_LT] = ACTIONS(1905), - [anon_sym_GT_GT] = ACTIONS(1905), - [anon_sym_GT_GT_GT] = ACTIONS(1905), - [anon_sym_AMP_CARET] = ACTIONS(1905), - [anon_sym_AMP_AMP] = ACTIONS(1905), - [anon_sym_PIPE_PIPE] = ACTIONS(1905), - [anon_sym_or] = ACTIONS(1905), - [sym_none] = ACTIONS(1905), - [sym_true] = ACTIONS(1905), - [sym_false] = ACTIONS(1905), - [sym_nil] = ACTIONS(1905), - [anon_sym_QMARK_DOT] = ACTIONS(1905), - [anon_sym_POUND_LBRACK] = ACTIONS(1905), - [anon_sym_if] = ACTIONS(1905), - [anon_sym_DOLLARif] = ACTIONS(1905), - [anon_sym_is] = ACTIONS(1905), - [anon_sym_BANGis] = ACTIONS(1905), - [anon_sym_in] = ACTIONS(1905), - [anon_sym_BANGin] = ACTIONS(1905), - [anon_sym_match] = ACTIONS(1905), - [anon_sym_select] = ACTIONS(1905), - [anon_sym_lock] = ACTIONS(1905), - [anon_sym_rlock] = ACTIONS(1905), - [anon_sym_unsafe] = ACTIONS(1905), - [anon_sym_sql] = ACTIONS(1905), - [sym_int_literal] = ACTIONS(1905), - [sym_float_literal] = ACTIONS(1905), - [sym_rune_literal] = ACTIONS(1905), - [sym_pseudo_compile_time_identifier] = ACTIONS(1905), - [anon_sym_shared] = ACTIONS(1905), - [anon_sym_map_LBRACK] = ACTIONS(1905), - [anon_sym_chan] = ACTIONS(1905), - [anon_sym_thread] = ACTIONS(1905), - [anon_sym_atomic] = ACTIONS(1905), - [anon_sym_assert] = ACTIONS(1905), - [anon_sym_defer] = ACTIONS(1905), - [anon_sym_goto] = ACTIONS(1905), - [anon_sym_break] = ACTIONS(1905), - [anon_sym_continue] = ACTIONS(1905), - [anon_sym_return] = ACTIONS(1905), - [anon_sym_DOLLARfor] = ACTIONS(1905), - [anon_sym_for] = ACTIONS(1905), - [anon_sym_POUND] = ACTIONS(1905), - [anon_sym_asm] = ACTIONS(1905), - [anon_sym_AT_LBRACK] = ACTIONS(1905), - [sym___double_quote] = ACTIONS(1905), - [sym___single_quote] = ACTIONS(1905), - [sym___c_double_quote] = ACTIONS(1905), - [sym___c_single_quote] = ACTIONS(1905), - [sym___r_double_quote] = ACTIONS(1905), - [sym___r_single_quote] = ACTIONS(1905), - }, - [991] = { - [sym_line_comment] = STATE(991), - [sym_block_comment] = STATE(991), - [ts_builtin_sym_end] = ACTIONS(2870), - [sym_identifier] = ACTIONS(2872), - [anon_sym_LF] = ACTIONS(2872), - [anon_sym_CR] = ACTIONS(2872), - [anon_sym_CR_LF] = ACTIONS(2872), - [anon_sym_SLASH_SLASH] = ACTIONS(497), - [anon_sym_SLASH_STAR] = ACTIONS(499), - [anon_sym_DOT] = ACTIONS(2872), - [anon_sym_as] = ACTIONS(2872), - [anon_sym_LBRACE] = ACTIONS(2872), - [anon_sym_COMMA] = ACTIONS(2872), - [anon_sym_const] = ACTIONS(2872), - [anon_sym_LPAREN] = ACTIONS(2872), - [anon_sym___global] = ACTIONS(2872), - [anon_sym_type] = ACTIONS(2872), - [anon_sym_PIPE] = ACTIONS(2872), - [anon_sym_fn] = ACTIONS(2872), - [anon_sym_PLUS] = ACTIONS(2872), - [anon_sym_DASH] = ACTIONS(2872), - [anon_sym_STAR] = ACTIONS(2872), - [anon_sym_SLASH] = ACTIONS(2872), - [anon_sym_PERCENT] = ACTIONS(2872), - [anon_sym_LT] = ACTIONS(2872), - [anon_sym_GT] = ACTIONS(2872), - [anon_sym_EQ_EQ] = ACTIONS(2872), - [anon_sym_BANG_EQ] = ACTIONS(2872), - [anon_sym_LT_EQ] = ACTIONS(2872), - [anon_sym_GT_EQ] = ACTIONS(2872), - [anon_sym_LBRACK] = ACTIONS(2870), - [anon_sym_struct] = ACTIONS(2872), - [anon_sym_union] = ACTIONS(2872), - [anon_sym_pub] = ACTIONS(2872), - [anon_sym_mut] = ACTIONS(2872), - [anon_sym_enum] = ACTIONS(2872), - [anon_sym_interface] = ACTIONS(2872), - [anon_sym_PLUS_PLUS] = ACTIONS(2872), - [anon_sym_DASH_DASH] = ACTIONS(2872), - [anon_sym_QMARK] = ACTIONS(2872), - [anon_sym_BANG] = ACTIONS(2872), - [anon_sym_go] = ACTIONS(2872), - [anon_sym_spawn] = ACTIONS(2872), - [anon_sym_json_DOTdecode] = ACTIONS(2872), - [anon_sym_LBRACK2] = ACTIONS(2872), - [anon_sym_TILDE] = ACTIONS(2872), - [anon_sym_CARET] = ACTIONS(2872), - [anon_sym_AMP] = ACTIONS(2872), - [anon_sym_LT_DASH] = ACTIONS(2872), - [anon_sym_LT_LT] = ACTIONS(2872), - [anon_sym_GT_GT] = ACTIONS(2872), - [anon_sym_GT_GT_GT] = ACTIONS(2872), - [anon_sym_AMP_CARET] = ACTIONS(2872), - [anon_sym_AMP_AMP] = ACTIONS(2872), - [anon_sym_PIPE_PIPE] = ACTIONS(2872), - [anon_sym_or] = ACTIONS(2872), - [sym_none] = ACTIONS(2872), - [sym_true] = ACTIONS(2872), - [sym_false] = ACTIONS(2872), - [sym_nil] = ACTIONS(2872), - [anon_sym_QMARK_DOT] = ACTIONS(2872), - [anon_sym_POUND_LBRACK] = ACTIONS(2872), - [anon_sym_if] = ACTIONS(2872), - [anon_sym_DOLLARif] = ACTIONS(2872), - [anon_sym_is] = ACTIONS(2872), - [anon_sym_BANGis] = ACTIONS(2872), - [anon_sym_in] = ACTIONS(2872), - [anon_sym_BANGin] = ACTIONS(2872), - [anon_sym_match] = ACTIONS(2872), - [anon_sym_select] = ACTIONS(2872), - [anon_sym_lock] = ACTIONS(2872), - [anon_sym_rlock] = ACTIONS(2872), - [anon_sym_unsafe] = ACTIONS(2872), - [anon_sym_sql] = ACTIONS(2872), - [sym_int_literal] = ACTIONS(2872), - [sym_float_literal] = ACTIONS(2872), - [sym_rune_literal] = ACTIONS(2872), - [sym_pseudo_compile_time_identifier] = ACTIONS(2872), - [anon_sym_shared] = ACTIONS(2872), - [anon_sym_map_LBRACK] = ACTIONS(2872), - [anon_sym_chan] = ACTIONS(2872), - [anon_sym_thread] = ACTIONS(2872), - [anon_sym_atomic] = ACTIONS(2872), - [anon_sym_assert] = ACTIONS(2872), - [anon_sym_defer] = ACTIONS(2872), - [anon_sym_goto] = ACTIONS(2872), - [anon_sym_break] = ACTIONS(2872), - [anon_sym_continue] = ACTIONS(2872), - [anon_sym_return] = ACTIONS(2872), - [anon_sym_DOLLARfor] = ACTIONS(2872), - [anon_sym_for] = ACTIONS(2872), - [anon_sym_POUND] = ACTIONS(2872), - [anon_sym_asm] = ACTIONS(2872), - [anon_sym_AT_LBRACK] = ACTIONS(2872), - [sym___double_quote] = ACTIONS(2872), - [sym___single_quote] = ACTIONS(2872), - [sym___c_double_quote] = ACTIONS(2872), - [sym___c_single_quote] = ACTIONS(2872), - [sym___r_double_quote] = ACTIONS(2872), - [sym___r_single_quote] = ACTIONS(2872), - }, [992] = { [sym_line_comment] = STATE(992), [sym_block_comment] = STATE(992), - [ts_builtin_sym_end] = ACTIONS(2291), - [sym_identifier] = ACTIONS(2293), - [anon_sym_LF] = ACTIONS(2293), - [anon_sym_CR] = ACTIONS(2293), - [anon_sym_CR_LF] = ACTIONS(2293), + [ts_builtin_sym_end] = ACTIONS(1807), + [sym_identifier] = ACTIONS(1809), + [anon_sym_LF] = ACTIONS(1809), + [anon_sym_CR] = ACTIONS(1809), + [anon_sym_CR_LF] = ACTIONS(1809), [anon_sym_SLASH_SLASH] = ACTIONS(497), [anon_sym_SLASH_STAR] = ACTIONS(499), - [anon_sym_DOT] = ACTIONS(2293), - [anon_sym_as] = ACTIONS(2293), - [anon_sym_LBRACE] = ACTIONS(2293), - [anon_sym_COMMA] = ACTIONS(2293), - [anon_sym_const] = ACTIONS(2293), - [anon_sym_LPAREN] = ACTIONS(2293), - [anon_sym___global] = ACTIONS(2293), - [anon_sym_type] = ACTIONS(2293), - [anon_sym_PIPE] = ACTIONS(2293), - [anon_sym_fn] = ACTIONS(2293), - [anon_sym_PLUS] = ACTIONS(2293), - [anon_sym_DASH] = ACTIONS(2293), - [anon_sym_STAR] = ACTIONS(2293), - [anon_sym_SLASH] = ACTIONS(2293), - [anon_sym_PERCENT] = ACTIONS(2293), - [anon_sym_LT] = ACTIONS(2293), - [anon_sym_GT] = ACTIONS(2293), - [anon_sym_EQ_EQ] = ACTIONS(2293), - [anon_sym_BANG_EQ] = ACTIONS(2293), - [anon_sym_LT_EQ] = ACTIONS(2293), - [anon_sym_GT_EQ] = ACTIONS(2293), - [anon_sym_LBRACK] = ACTIONS(2291), - [anon_sym_struct] = ACTIONS(2293), - [anon_sym_union] = ACTIONS(2293), - [anon_sym_pub] = ACTIONS(2293), - [anon_sym_mut] = ACTIONS(2293), - [anon_sym_enum] = ACTIONS(2293), - [anon_sym_interface] = ACTIONS(2293), - [anon_sym_PLUS_PLUS] = ACTIONS(2293), - [anon_sym_DASH_DASH] = ACTIONS(2293), - [anon_sym_QMARK] = ACTIONS(2293), - [anon_sym_BANG] = ACTIONS(2293), - [anon_sym_go] = ACTIONS(2293), - [anon_sym_spawn] = ACTIONS(2293), - [anon_sym_json_DOTdecode] = ACTIONS(2293), - [anon_sym_LBRACK2] = ACTIONS(2293), - [anon_sym_TILDE] = ACTIONS(2293), - [anon_sym_CARET] = ACTIONS(2293), - [anon_sym_AMP] = ACTIONS(2293), - [anon_sym_LT_DASH] = ACTIONS(2293), - [anon_sym_LT_LT] = ACTIONS(2293), - [anon_sym_GT_GT] = ACTIONS(2293), - [anon_sym_GT_GT_GT] = ACTIONS(2293), - [anon_sym_AMP_CARET] = ACTIONS(2293), - [anon_sym_AMP_AMP] = ACTIONS(2293), - [anon_sym_PIPE_PIPE] = ACTIONS(2293), - [anon_sym_or] = ACTIONS(2293), - [sym_none] = ACTIONS(2293), - [sym_true] = ACTIONS(2293), - [sym_false] = ACTIONS(2293), - [sym_nil] = ACTIONS(2293), - [anon_sym_QMARK_DOT] = ACTIONS(2293), - [anon_sym_POUND_LBRACK] = ACTIONS(2293), - [anon_sym_if] = ACTIONS(2293), - [anon_sym_DOLLARif] = ACTIONS(2293), - [anon_sym_is] = ACTIONS(2293), - [anon_sym_BANGis] = ACTIONS(2293), - [anon_sym_in] = ACTIONS(2293), - [anon_sym_BANGin] = ACTIONS(2293), - [anon_sym_match] = ACTIONS(2293), - [anon_sym_select] = ACTIONS(2293), - [anon_sym_lock] = ACTIONS(2293), - [anon_sym_rlock] = ACTIONS(2293), - [anon_sym_unsafe] = ACTIONS(2293), - [anon_sym_sql] = ACTIONS(2293), - [sym_int_literal] = ACTIONS(2293), - [sym_float_literal] = ACTIONS(2293), - [sym_rune_literal] = ACTIONS(2293), - [sym_pseudo_compile_time_identifier] = ACTIONS(2293), - [anon_sym_shared] = ACTIONS(2293), - [anon_sym_map_LBRACK] = ACTIONS(2293), - [anon_sym_chan] = ACTIONS(2293), - [anon_sym_thread] = ACTIONS(2293), - [anon_sym_atomic] = ACTIONS(2293), - [anon_sym_assert] = ACTIONS(2293), - [anon_sym_defer] = ACTIONS(2293), - [anon_sym_goto] = ACTIONS(2293), - [anon_sym_break] = ACTIONS(2293), - [anon_sym_continue] = ACTIONS(2293), - [anon_sym_return] = ACTIONS(2293), - [anon_sym_DOLLARfor] = ACTIONS(2293), - [anon_sym_for] = ACTIONS(2293), - [anon_sym_POUND] = ACTIONS(2293), - [anon_sym_asm] = ACTIONS(2293), - [anon_sym_AT_LBRACK] = ACTIONS(2293), - [sym___double_quote] = ACTIONS(2293), - [sym___single_quote] = ACTIONS(2293), - [sym___c_double_quote] = ACTIONS(2293), - [sym___c_single_quote] = ACTIONS(2293), - [sym___r_double_quote] = ACTIONS(2293), - [sym___r_single_quote] = ACTIONS(2293), + [anon_sym_DOT] = ACTIONS(1809), + [anon_sym_as] = ACTIONS(1809), + [anon_sym_LBRACE] = ACTIONS(1809), + [anon_sym_COMMA] = ACTIONS(1987), + [anon_sym_const] = ACTIONS(1809), + [anon_sym_LPAREN] = ACTIONS(1809), + [anon_sym___global] = ACTIONS(1809), + [anon_sym_type] = ACTIONS(1809), + [anon_sym_PIPE] = ACTIONS(1809), + [anon_sym_fn] = ACTIONS(1809), + [anon_sym_PLUS] = ACTIONS(1809), + [anon_sym_DASH] = ACTIONS(1809), + [anon_sym_STAR] = ACTIONS(1809), + [anon_sym_SLASH] = ACTIONS(1809), + [anon_sym_PERCENT] = ACTIONS(1809), + [anon_sym_LT] = ACTIONS(1809), + [anon_sym_GT] = ACTIONS(1809), + [anon_sym_EQ_EQ] = ACTIONS(1809), + [anon_sym_BANG_EQ] = ACTIONS(1809), + [anon_sym_LT_EQ] = ACTIONS(1809), + [anon_sym_GT_EQ] = ACTIONS(1809), + [anon_sym_LBRACK] = ACTIONS(1807), + [anon_sym_struct] = ACTIONS(1809), + [anon_sym_union] = ACTIONS(1809), + [anon_sym_pub] = ACTIONS(1809), + [anon_sym_mut] = ACTIONS(1809), + [anon_sym_enum] = ACTIONS(1809), + [anon_sym_interface] = ACTIONS(1809), + [anon_sym_PLUS_PLUS] = ACTIONS(1809), + [anon_sym_DASH_DASH] = ACTIONS(1809), + [anon_sym_QMARK] = ACTIONS(1809), + [anon_sym_BANG] = ACTIONS(1809), + [anon_sym_go] = ACTIONS(1809), + [anon_sym_spawn] = ACTIONS(1809), + [anon_sym_json_DOTdecode] = ACTIONS(1809), + [anon_sym_LBRACK2] = ACTIONS(1809), + [anon_sym_TILDE] = ACTIONS(1809), + [anon_sym_CARET] = ACTIONS(1809), + [anon_sym_AMP] = ACTIONS(1809), + [anon_sym_LT_DASH] = ACTIONS(1809), + [anon_sym_LT_LT] = ACTIONS(1809), + [anon_sym_GT_GT] = ACTIONS(1809), + [anon_sym_GT_GT_GT] = ACTIONS(1809), + [anon_sym_AMP_CARET] = ACTIONS(1809), + [anon_sym_AMP_AMP] = ACTIONS(1809), + [anon_sym_PIPE_PIPE] = ACTIONS(1809), + [anon_sym_or] = ACTIONS(1809), + [sym_none] = ACTIONS(1809), + [sym_true] = ACTIONS(1809), + [sym_false] = ACTIONS(1809), + [sym_nil] = ACTIONS(1809), + [anon_sym_QMARK_DOT] = ACTIONS(1809), + [anon_sym_POUND_LBRACK] = ACTIONS(1809), + [anon_sym_if] = ACTIONS(1809), + [anon_sym_DOLLARif] = ACTIONS(1809), + [anon_sym_is] = ACTIONS(1809), + [anon_sym_BANGis] = ACTIONS(1809), + [anon_sym_in] = ACTIONS(1809), + [anon_sym_BANGin] = ACTIONS(1809), + [anon_sym_match] = ACTIONS(1809), + [anon_sym_select] = ACTIONS(1809), + [anon_sym_lock] = ACTIONS(1809), + [anon_sym_rlock] = ACTIONS(1809), + [anon_sym_unsafe] = ACTIONS(1809), + [anon_sym_sql] = ACTIONS(1809), + [sym_int_literal] = ACTIONS(1809), + [sym_float_literal] = ACTIONS(1809), + [sym_rune_literal] = ACTIONS(1809), + [sym_pseudo_compile_time_identifier] = ACTIONS(1809), + [anon_sym_shared] = ACTIONS(1809), + [anon_sym_map_LBRACK] = ACTIONS(1809), + [anon_sym_chan] = ACTIONS(1809), + [anon_sym_thread] = ACTIONS(1809), + [anon_sym_atomic] = ACTIONS(1809), + [anon_sym_assert] = ACTIONS(1809), + [anon_sym_defer] = ACTIONS(1809), + [anon_sym_goto] = ACTIONS(1809), + [anon_sym_break] = ACTIONS(1809), + [anon_sym_continue] = ACTIONS(1809), + [anon_sym_return] = ACTIONS(1809), + [anon_sym_DOLLARfor] = ACTIONS(1809), + [anon_sym_for] = ACTIONS(1809), + [anon_sym_POUND] = ACTIONS(1809), + [anon_sym_asm] = ACTIONS(1809), + [anon_sym_AT_LBRACK] = ACTIONS(1809), + [sym___double_quote] = ACTIONS(1809), + [sym___single_quote] = ACTIONS(1809), + [sym___c_double_quote] = ACTIONS(1809), + [sym___c_single_quote] = ACTIONS(1809), + [sym___r_double_quote] = ACTIONS(1809), + [sym___r_single_quote] = ACTIONS(1809), }, [993] = { [sym_line_comment] = STATE(993), [sym_block_comment] = STATE(993), - [ts_builtin_sym_end] = ACTIONS(2766), - [sym_identifier] = ACTIONS(2768), - [anon_sym_LF] = ACTIONS(2768), - [anon_sym_CR] = ACTIONS(2768), - [anon_sym_CR_LF] = ACTIONS(2768), + [ts_builtin_sym_end] = ACTIONS(2878), + [sym_identifier] = ACTIONS(2880), + [anon_sym_LF] = ACTIONS(2880), + [anon_sym_CR] = ACTIONS(2880), + [anon_sym_CR_LF] = ACTIONS(2880), [anon_sym_SLASH_SLASH] = ACTIONS(497), [anon_sym_SLASH_STAR] = ACTIONS(499), - [anon_sym_DOT] = ACTIONS(2768), - [anon_sym_as] = ACTIONS(2768), - [anon_sym_LBRACE] = ACTIONS(2768), - [anon_sym_COMMA] = ACTIONS(2768), - [anon_sym_const] = ACTIONS(2768), - [anon_sym_LPAREN] = ACTIONS(2768), - [anon_sym___global] = ACTIONS(2768), - [anon_sym_type] = ACTIONS(2768), - [anon_sym_PIPE] = ACTIONS(2768), - [anon_sym_fn] = ACTIONS(2768), - [anon_sym_PLUS] = ACTIONS(2768), - [anon_sym_DASH] = ACTIONS(2768), - [anon_sym_STAR] = ACTIONS(2768), - [anon_sym_SLASH] = ACTIONS(2768), - [anon_sym_PERCENT] = ACTIONS(2768), - [anon_sym_LT] = ACTIONS(2768), - [anon_sym_GT] = ACTIONS(2768), - [anon_sym_EQ_EQ] = ACTIONS(2768), - [anon_sym_BANG_EQ] = ACTIONS(2768), - [anon_sym_LT_EQ] = ACTIONS(2768), - [anon_sym_GT_EQ] = ACTIONS(2768), - [anon_sym_LBRACK] = ACTIONS(2766), - [anon_sym_struct] = ACTIONS(2768), - [anon_sym_union] = ACTIONS(2768), - [anon_sym_pub] = ACTIONS(2768), - [anon_sym_mut] = ACTIONS(2768), - [anon_sym_enum] = ACTIONS(2768), - [anon_sym_interface] = ACTIONS(2768), - [anon_sym_PLUS_PLUS] = ACTIONS(2768), - [anon_sym_DASH_DASH] = ACTIONS(2768), - [anon_sym_QMARK] = ACTIONS(2768), - [anon_sym_BANG] = ACTIONS(2768), - [anon_sym_go] = ACTIONS(2768), - [anon_sym_spawn] = ACTIONS(2768), - [anon_sym_json_DOTdecode] = ACTIONS(2768), - [anon_sym_LBRACK2] = ACTIONS(2768), - [anon_sym_TILDE] = ACTIONS(2768), - [anon_sym_CARET] = ACTIONS(2768), - [anon_sym_AMP] = ACTIONS(2768), - [anon_sym_LT_DASH] = ACTIONS(2768), - [anon_sym_LT_LT] = ACTIONS(2768), - [anon_sym_GT_GT] = ACTIONS(2768), - [anon_sym_GT_GT_GT] = ACTIONS(2768), - [anon_sym_AMP_CARET] = ACTIONS(2768), - [anon_sym_AMP_AMP] = ACTIONS(2768), - [anon_sym_PIPE_PIPE] = ACTIONS(2768), - [anon_sym_or] = ACTIONS(2768), - [sym_none] = ACTIONS(2768), - [sym_true] = ACTIONS(2768), - [sym_false] = ACTIONS(2768), - [sym_nil] = ACTIONS(2768), - [anon_sym_QMARK_DOT] = ACTIONS(2768), - [anon_sym_POUND_LBRACK] = ACTIONS(2768), - [anon_sym_if] = ACTIONS(2768), - [anon_sym_DOLLARif] = ACTIONS(2768), - [anon_sym_is] = ACTIONS(2768), - [anon_sym_BANGis] = ACTIONS(2768), - [anon_sym_in] = ACTIONS(2768), - [anon_sym_BANGin] = ACTIONS(2768), - [anon_sym_match] = ACTIONS(2768), - [anon_sym_select] = ACTIONS(2768), - [anon_sym_lock] = ACTIONS(2768), - [anon_sym_rlock] = ACTIONS(2768), - [anon_sym_unsafe] = ACTIONS(2768), - [anon_sym_sql] = ACTIONS(2768), - [sym_int_literal] = ACTIONS(2768), - [sym_float_literal] = ACTIONS(2768), - [sym_rune_literal] = ACTIONS(2768), - [sym_pseudo_compile_time_identifier] = ACTIONS(2768), - [anon_sym_shared] = ACTIONS(2768), - [anon_sym_map_LBRACK] = ACTIONS(2768), - [anon_sym_chan] = ACTIONS(2768), - [anon_sym_thread] = ACTIONS(2768), - [anon_sym_atomic] = ACTIONS(2768), - [anon_sym_assert] = ACTIONS(2768), - [anon_sym_defer] = ACTIONS(2768), - [anon_sym_goto] = ACTIONS(2768), - [anon_sym_break] = ACTIONS(2768), - [anon_sym_continue] = ACTIONS(2768), - [anon_sym_return] = ACTIONS(2768), - [anon_sym_DOLLARfor] = ACTIONS(2768), - [anon_sym_for] = ACTIONS(2768), - [anon_sym_POUND] = ACTIONS(2768), - [anon_sym_asm] = ACTIONS(2768), - [anon_sym_AT_LBRACK] = ACTIONS(2768), - [sym___double_quote] = ACTIONS(2768), - [sym___single_quote] = ACTIONS(2768), - [sym___c_double_quote] = ACTIONS(2768), - [sym___c_single_quote] = ACTIONS(2768), - [sym___r_double_quote] = ACTIONS(2768), - [sym___r_single_quote] = ACTIONS(2768), + [anon_sym_DOT] = ACTIONS(2880), + [anon_sym_as] = ACTIONS(2880), + [anon_sym_LBRACE] = ACTIONS(2880), + [anon_sym_COMMA] = ACTIONS(2880), + [anon_sym_const] = ACTIONS(2880), + [anon_sym_LPAREN] = ACTIONS(2880), + [anon_sym___global] = ACTIONS(2880), + [anon_sym_type] = ACTIONS(2880), + [anon_sym_PIPE] = ACTIONS(2880), + [anon_sym_fn] = ACTIONS(2880), + [anon_sym_PLUS] = ACTIONS(2880), + [anon_sym_DASH] = ACTIONS(2880), + [anon_sym_STAR] = ACTIONS(2880), + [anon_sym_SLASH] = ACTIONS(2880), + [anon_sym_PERCENT] = ACTIONS(2880), + [anon_sym_LT] = ACTIONS(2880), + [anon_sym_GT] = ACTIONS(2880), + [anon_sym_EQ_EQ] = ACTIONS(2880), + [anon_sym_BANG_EQ] = ACTIONS(2880), + [anon_sym_LT_EQ] = ACTIONS(2880), + [anon_sym_GT_EQ] = ACTIONS(2880), + [anon_sym_LBRACK] = ACTIONS(2878), + [anon_sym_struct] = ACTIONS(2880), + [anon_sym_union] = ACTIONS(2880), + [anon_sym_pub] = ACTIONS(2880), + [anon_sym_mut] = ACTIONS(2880), + [anon_sym_enum] = ACTIONS(2880), + [anon_sym_interface] = ACTIONS(2880), + [anon_sym_PLUS_PLUS] = ACTIONS(2880), + [anon_sym_DASH_DASH] = ACTIONS(2880), + [anon_sym_QMARK] = ACTIONS(2880), + [anon_sym_BANG] = ACTIONS(2880), + [anon_sym_go] = ACTIONS(2880), + [anon_sym_spawn] = ACTIONS(2880), + [anon_sym_json_DOTdecode] = ACTIONS(2880), + [anon_sym_LBRACK2] = ACTIONS(2880), + [anon_sym_TILDE] = ACTIONS(2880), + [anon_sym_CARET] = ACTIONS(2880), + [anon_sym_AMP] = ACTIONS(2880), + [anon_sym_LT_DASH] = ACTIONS(2880), + [anon_sym_LT_LT] = ACTIONS(2880), + [anon_sym_GT_GT] = ACTIONS(2880), + [anon_sym_GT_GT_GT] = ACTIONS(2880), + [anon_sym_AMP_CARET] = ACTIONS(2880), + [anon_sym_AMP_AMP] = ACTIONS(2880), + [anon_sym_PIPE_PIPE] = ACTIONS(2880), + [anon_sym_or] = ACTIONS(2880), + [sym_none] = ACTIONS(2880), + [sym_true] = ACTIONS(2880), + [sym_false] = ACTIONS(2880), + [sym_nil] = ACTIONS(2880), + [anon_sym_QMARK_DOT] = ACTIONS(2880), + [anon_sym_POUND_LBRACK] = ACTIONS(2880), + [anon_sym_if] = ACTIONS(2880), + [anon_sym_DOLLARif] = ACTIONS(2880), + [anon_sym_is] = ACTIONS(2880), + [anon_sym_BANGis] = ACTIONS(2880), + [anon_sym_in] = ACTIONS(2880), + [anon_sym_BANGin] = ACTIONS(2880), + [anon_sym_match] = ACTIONS(2880), + [anon_sym_select] = ACTIONS(2880), + [anon_sym_lock] = ACTIONS(2880), + [anon_sym_rlock] = ACTIONS(2880), + [anon_sym_unsafe] = ACTIONS(2880), + [anon_sym_sql] = ACTIONS(2880), + [sym_int_literal] = ACTIONS(2880), + [sym_float_literal] = ACTIONS(2880), + [sym_rune_literal] = ACTIONS(2880), + [sym_pseudo_compile_time_identifier] = ACTIONS(2880), + [anon_sym_shared] = ACTIONS(2880), + [anon_sym_map_LBRACK] = ACTIONS(2880), + [anon_sym_chan] = ACTIONS(2880), + [anon_sym_thread] = ACTIONS(2880), + [anon_sym_atomic] = ACTIONS(2880), + [anon_sym_assert] = ACTIONS(2880), + [anon_sym_defer] = ACTIONS(2880), + [anon_sym_goto] = ACTIONS(2880), + [anon_sym_break] = ACTIONS(2880), + [anon_sym_continue] = ACTIONS(2880), + [anon_sym_return] = ACTIONS(2880), + [anon_sym_DOLLARfor] = ACTIONS(2880), + [anon_sym_for] = ACTIONS(2880), + [anon_sym_POUND] = ACTIONS(2880), + [anon_sym_asm] = ACTIONS(2880), + [anon_sym_AT_LBRACK] = ACTIONS(2880), + [sym___double_quote] = ACTIONS(2880), + [sym___single_quote] = ACTIONS(2880), + [sym___c_double_quote] = ACTIONS(2880), + [sym___c_single_quote] = ACTIONS(2880), + [sym___r_double_quote] = ACTIONS(2880), + [sym___r_single_quote] = ACTIONS(2880), }, [994] = { [sym_line_comment] = STATE(994), [sym_block_comment] = STATE(994), - [ts_builtin_sym_end] = ACTIONS(2271), - [sym_identifier] = ACTIONS(2273), - [anon_sym_LF] = ACTIONS(2273), - [anon_sym_CR] = ACTIONS(2273), - [anon_sym_CR_LF] = ACTIONS(2273), + [ts_builtin_sym_end] = ACTIONS(2117), + [sym_identifier] = ACTIONS(2119), + [anon_sym_LF] = ACTIONS(2119), + [anon_sym_CR] = ACTIONS(2119), + [anon_sym_CR_LF] = ACTIONS(2119), [anon_sym_SLASH_SLASH] = ACTIONS(497), [anon_sym_SLASH_STAR] = ACTIONS(499), - [anon_sym_DOT] = ACTIONS(2273), - [anon_sym_as] = ACTIONS(2273), - [anon_sym_LBRACE] = ACTIONS(2273), - [anon_sym_COMMA] = ACTIONS(2273), - [anon_sym_const] = ACTIONS(2273), - [anon_sym_LPAREN] = ACTIONS(2273), - [anon_sym___global] = ACTIONS(2273), - [anon_sym_type] = ACTIONS(2273), - [anon_sym_PIPE] = ACTIONS(2273), - [anon_sym_fn] = ACTIONS(2273), - [anon_sym_PLUS] = ACTIONS(2273), - [anon_sym_DASH] = ACTIONS(2273), - [anon_sym_STAR] = ACTIONS(2273), - [anon_sym_SLASH] = ACTIONS(2273), - [anon_sym_PERCENT] = ACTIONS(2273), - [anon_sym_LT] = ACTIONS(2273), - [anon_sym_GT] = ACTIONS(2273), - [anon_sym_EQ_EQ] = ACTIONS(2273), - [anon_sym_BANG_EQ] = ACTIONS(2273), - [anon_sym_LT_EQ] = ACTIONS(2273), - [anon_sym_GT_EQ] = ACTIONS(2273), - [anon_sym_LBRACK] = ACTIONS(2271), - [anon_sym_struct] = ACTIONS(2273), - [anon_sym_union] = ACTIONS(2273), - [anon_sym_pub] = ACTIONS(2273), - [anon_sym_mut] = ACTIONS(2273), - [anon_sym_enum] = ACTIONS(2273), - [anon_sym_interface] = ACTIONS(2273), - [anon_sym_PLUS_PLUS] = ACTIONS(2273), - [anon_sym_DASH_DASH] = ACTIONS(2273), - [anon_sym_QMARK] = ACTIONS(2273), - [anon_sym_BANG] = ACTIONS(2273), - [anon_sym_go] = ACTIONS(2273), - [anon_sym_spawn] = ACTIONS(2273), - [anon_sym_json_DOTdecode] = ACTIONS(2273), - [anon_sym_LBRACK2] = ACTIONS(2273), - [anon_sym_TILDE] = ACTIONS(2273), - [anon_sym_CARET] = ACTIONS(2273), - [anon_sym_AMP] = ACTIONS(2273), - [anon_sym_LT_DASH] = ACTIONS(2273), - [anon_sym_LT_LT] = ACTIONS(2273), - [anon_sym_GT_GT] = ACTIONS(2273), - [anon_sym_GT_GT_GT] = ACTIONS(2273), - [anon_sym_AMP_CARET] = ACTIONS(2273), - [anon_sym_AMP_AMP] = ACTIONS(2273), - [anon_sym_PIPE_PIPE] = ACTIONS(2273), - [anon_sym_or] = ACTIONS(2273), - [sym_none] = ACTIONS(2273), - [sym_true] = ACTIONS(2273), - [sym_false] = ACTIONS(2273), - [sym_nil] = ACTIONS(2273), - [anon_sym_QMARK_DOT] = ACTIONS(2273), - [anon_sym_POUND_LBRACK] = ACTIONS(2273), - [anon_sym_if] = ACTIONS(2273), - [anon_sym_DOLLARif] = ACTIONS(2273), - [anon_sym_is] = ACTIONS(2273), - [anon_sym_BANGis] = ACTIONS(2273), - [anon_sym_in] = ACTIONS(2273), - [anon_sym_BANGin] = ACTIONS(2273), - [anon_sym_match] = ACTIONS(2273), - [anon_sym_select] = ACTIONS(2273), - [anon_sym_lock] = ACTIONS(2273), - [anon_sym_rlock] = ACTIONS(2273), - [anon_sym_unsafe] = ACTIONS(2273), - [anon_sym_sql] = ACTIONS(2273), - [sym_int_literal] = ACTIONS(2273), - [sym_float_literal] = ACTIONS(2273), - [sym_rune_literal] = ACTIONS(2273), - [sym_pseudo_compile_time_identifier] = ACTIONS(2273), - [anon_sym_shared] = ACTIONS(2273), - [anon_sym_map_LBRACK] = ACTIONS(2273), - [anon_sym_chan] = ACTIONS(2273), - [anon_sym_thread] = ACTIONS(2273), - [anon_sym_atomic] = ACTIONS(2273), - [anon_sym_assert] = ACTIONS(2273), - [anon_sym_defer] = ACTIONS(2273), - [anon_sym_goto] = ACTIONS(2273), - [anon_sym_break] = ACTIONS(2273), - [anon_sym_continue] = ACTIONS(2273), - [anon_sym_return] = ACTIONS(2273), - [anon_sym_DOLLARfor] = ACTIONS(2273), - [anon_sym_for] = ACTIONS(2273), - [anon_sym_POUND] = ACTIONS(2273), - [anon_sym_asm] = ACTIONS(2273), - [anon_sym_AT_LBRACK] = ACTIONS(2273), - [sym___double_quote] = ACTIONS(2273), - [sym___single_quote] = ACTIONS(2273), - [sym___c_double_quote] = ACTIONS(2273), - [sym___c_single_quote] = ACTIONS(2273), - [sym___r_double_quote] = ACTIONS(2273), - [sym___r_single_quote] = ACTIONS(2273), + [anon_sym_DOT] = ACTIONS(2119), + [anon_sym_as] = ACTIONS(2119), + [anon_sym_LBRACE] = ACTIONS(2119), + [anon_sym_COMMA] = ACTIONS(2119), + [anon_sym_const] = ACTIONS(2119), + [anon_sym_LPAREN] = ACTIONS(2119), + [anon_sym___global] = ACTIONS(2119), + [anon_sym_type] = ACTIONS(2119), + [anon_sym_PIPE] = ACTIONS(2119), + [anon_sym_fn] = ACTIONS(2119), + [anon_sym_PLUS] = ACTIONS(2119), + [anon_sym_DASH] = ACTIONS(2119), + [anon_sym_STAR] = ACTIONS(2119), + [anon_sym_SLASH] = ACTIONS(2119), + [anon_sym_PERCENT] = ACTIONS(2119), + [anon_sym_LT] = ACTIONS(2119), + [anon_sym_GT] = ACTIONS(2119), + [anon_sym_EQ_EQ] = ACTIONS(2119), + [anon_sym_BANG_EQ] = ACTIONS(2119), + [anon_sym_LT_EQ] = ACTIONS(2119), + [anon_sym_GT_EQ] = ACTIONS(2119), + [anon_sym_LBRACK] = ACTIONS(2117), + [anon_sym_struct] = ACTIONS(2119), + [anon_sym_union] = ACTIONS(2119), + [anon_sym_pub] = ACTIONS(2119), + [anon_sym_mut] = ACTIONS(2119), + [anon_sym_enum] = ACTIONS(2119), + [anon_sym_interface] = ACTIONS(2119), + [anon_sym_PLUS_PLUS] = ACTIONS(2119), + [anon_sym_DASH_DASH] = ACTIONS(2119), + [anon_sym_QMARK] = ACTIONS(2119), + [anon_sym_BANG] = ACTIONS(2119), + [anon_sym_go] = ACTIONS(2119), + [anon_sym_spawn] = ACTIONS(2119), + [anon_sym_json_DOTdecode] = ACTIONS(2119), + [anon_sym_LBRACK2] = ACTIONS(2119), + [anon_sym_TILDE] = ACTIONS(2119), + [anon_sym_CARET] = ACTIONS(2119), + [anon_sym_AMP] = ACTIONS(2119), + [anon_sym_LT_DASH] = ACTIONS(2119), + [anon_sym_LT_LT] = ACTIONS(2119), + [anon_sym_GT_GT] = ACTIONS(2119), + [anon_sym_GT_GT_GT] = ACTIONS(2119), + [anon_sym_AMP_CARET] = ACTIONS(2119), + [anon_sym_AMP_AMP] = ACTIONS(2119), + [anon_sym_PIPE_PIPE] = ACTIONS(2119), + [anon_sym_or] = ACTIONS(2119), + [sym_none] = ACTIONS(2119), + [sym_true] = ACTIONS(2119), + [sym_false] = ACTIONS(2119), + [sym_nil] = ACTIONS(2119), + [anon_sym_QMARK_DOT] = ACTIONS(2119), + [anon_sym_POUND_LBRACK] = ACTIONS(2119), + [anon_sym_if] = ACTIONS(2119), + [anon_sym_DOLLARif] = ACTIONS(2119), + [anon_sym_is] = ACTIONS(2119), + [anon_sym_BANGis] = ACTIONS(2119), + [anon_sym_in] = ACTIONS(2119), + [anon_sym_BANGin] = ACTIONS(2119), + [anon_sym_match] = ACTIONS(2119), + [anon_sym_select] = ACTIONS(2119), + [anon_sym_lock] = ACTIONS(2119), + [anon_sym_rlock] = ACTIONS(2119), + [anon_sym_unsafe] = ACTIONS(2119), + [anon_sym_sql] = ACTIONS(2119), + [sym_int_literal] = ACTIONS(2119), + [sym_float_literal] = ACTIONS(2119), + [sym_rune_literal] = ACTIONS(2119), + [sym_pseudo_compile_time_identifier] = ACTIONS(2119), + [anon_sym_shared] = ACTIONS(2119), + [anon_sym_map_LBRACK] = ACTIONS(2119), + [anon_sym_chan] = ACTIONS(2119), + [anon_sym_thread] = ACTIONS(2119), + [anon_sym_atomic] = ACTIONS(2119), + [anon_sym_assert] = ACTIONS(2119), + [anon_sym_defer] = ACTIONS(2119), + [anon_sym_goto] = ACTIONS(2119), + [anon_sym_break] = ACTIONS(2119), + [anon_sym_continue] = ACTIONS(2119), + [anon_sym_return] = ACTIONS(2119), + [anon_sym_DOLLARfor] = ACTIONS(2119), + [anon_sym_for] = ACTIONS(2119), + [anon_sym_POUND] = ACTIONS(2119), + [anon_sym_asm] = ACTIONS(2119), + [anon_sym_AT_LBRACK] = ACTIONS(2119), + [sym___double_quote] = ACTIONS(2119), + [sym___single_quote] = ACTIONS(2119), + [sym___c_double_quote] = ACTIONS(2119), + [sym___c_single_quote] = ACTIONS(2119), + [sym___r_double_quote] = ACTIONS(2119), + [sym___r_single_quote] = ACTIONS(2119), }, [995] = { [sym_line_comment] = STATE(995), [sym_block_comment] = STATE(995), - [ts_builtin_sym_end] = ACTIONS(2689), - [sym_identifier] = ACTIONS(2691), - [anon_sym_LF] = ACTIONS(2691), - [anon_sym_CR] = ACTIONS(2691), - [anon_sym_CR_LF] = ACTIONS(2691), + [ts_builtin_sym_end] = ACTIONS(2197), + [sym_identifier] = ACTIONS(2199), + [anon_sym_LF] = ACTIONS(2199), + [anon_sym_CR] = ACTIONS(2199), + [anon_sym_CR_LF] = ACTIONS(2199), [anon_sym_SLASH_SLASH] = ACTIONS(497), [anon_sym_SLASH_STAR] = ACTIONS(499), - [anon_sym_DOT] = ACTIONS(2691), - [anon_sym_as] = ACTIONS(2691), - [anon_sym_LBRACE] = ACTIONS(2691), - [anon_sym_COMMA] = ACTIONS(2691), - [anon_sym_const] = ACTIONS(2691), - [anon_sym_LPAREN] = ACTIONS(2691), - [anon_sym___global] = ACTIONS(2691), - [anon_sym_type] = ACTIONS(2691), - [anon_sym_PIPE] = ACTIONS(2691), - [anon_sym_fn] = ACTIONS(2691), - [anon_sym_PLUS] = ACTIONS(2691), - [anon_sym_DASH] = ACTIONS(2691), - [anon_sym_STAR] = ACTIONS(2691), - [anon_sym_SLASH] = ACTIONS(2691), - [anon_sym_PERCENT] = ACTIONS(2691), - [anon_sym_LT] = ACTIONS(2691), - [anon_sym_GT] = ACTIONS(2691), - [anon_sym_EQ_EQ] = ACTIONS(2691), - [anon_sym_BANG_EQ] = ACTIONS(2691), - [anon_sym_LT_EQ] = ACTIONS(2691), - [anon_sym_GT_EQ] = ACTIONS(2691), - [anon_sym_LBRACK] = ACTIONS(2689), - [anon_sym_struct] = ACTIONS(2691), - [anon_sym_union] = ACTIONS(2691), - [anon_sym_pub] = ACTIONS(2691), - [anon_sym_mut] = ACTIONS(2691), - [anon_sym_enum] = ACTIONS(2691), - [anon_sym_interface] = ACTIONS(2691), - [anon_sym_PLUS_PLUS] = ACTIONS(2691), - [anon_sym_DASH_DASH] = ACTIONS(2691), - [anon_sym_QMARK] = ACTIONS(2691), - [anon_sym_BANG] = ACTIONS(2691), - [anon_sym_go] = ACTIONS(2691), - [anon_sym_spawn] = ACTIONS(2691), - [anon_sym_json_DOTdecode] = ACTIONS(2691), - [anon_sym_LBRACK2] = ACTIONS(2691), - [anon_sym_TILDE] = ACTIONS(2691), - [anon_sym_CARET] = ACTIONS(2691), - [anon_sym_AMP] = ACTIONS(2691), - [anon_sym_LT_DASH] = ACTIONS(2691), - [anon_sym_LT_LT] = ACTIONS(2691), - [anon_sym_GT_GT] = ACTIONS(2691), - [anon_sym_GT_GT_GT] = ACTIONS(2691), - [anon_sym_AMP_CARET] = ACTIONS(2691), - [anon_sym_AMP_AMP] = ACTIONS(2691), - [anon_sym_PIPE_PIPE] = ACTIONS(2691), - [anon_sym_or] = ACTIONS(2691), - [sym_none] = ACTIONS(2691), - [sym_true] = ACTIONS(2691), - [sym_false] = ACTIONS(2691), - [sym_nil] = ACTIONS(2691), - [anon_sym_QMARK_DOT] = ACTIONS(2691), - [anon_sym_POUND_LBRACK] = ACTIONS(2691), - [anon_sym_if] = ACTIONS(2691), - [anon_sym_DOLLARif] = ACTIONS(2691), - [anon_sym_is] = ACTIONS(2691), - [anon_sym_BANGis] = ACTIONS(2691), - [anon_sym_in] = ACTIONS(2691), - [anon_sym_BANGin] = ACTIONS(2691), - [anon_sym_match] = ACTIONS(2691), - [anon_sym_select] = ACTIONS(2691), - [anon_sym_lock] = ACTIONS(2691), - [anon_sym_rlock] = ACTIONS(2691), - [anon_sym_unsafe] = ACTIONS(2691), - [anon_sym_sql] = ACTIONS(2691), - [sym_int_literal] = ACTIONS(2691), - [sym_float_literal] = ACTIONS(2691), - [sym_rune_literal] = ACTIONS(2691), - [sym_pseudo_compile_time_identifier] = ACTIONS(2691), - [anon_sym_shared] = ACTIONS(2691), - [anon_sym_map_LBRACK] = ACTIONS(2691), - [anon_sym_chan] = ACTIONS(2691), - [anon_sym_thread] = ACTIONS(2691), - [anon_sym_atomic] = ACTIONS(2691), - [anon_sym_assert] = ACTIONS(2691), - [anon_sym_defer] = ACTIONS(2691), - [anon_sym_goto] = ACTIONS(2691), - [anon_sym_break] = ACTIONS(2691), - [anon_sym_continue] = ACTIONS(2691), - [anon_sym_return] = ACTIONS(2691), - [anon_sym_DOLLARfor] = ACTIONS(2691), - [anon_sym_for] = ACTIONS(2691), - [anon_sym_POUND] = ACTIONS(2691), - [anon_sym_asm] = ACTIONS(2691), - [anon_sym_AT_LBRACK] = ACTIONS(2691), - [sym___double_quote] = ACTIONS(2691), - [sym___single_quote] = ACTIONS(2691), - [sym___c_double_quote] = ACTIONS(2691), - [sym___c_single_quote] = ACTIONS(2691), - [sym___r_double_quote] = ACTIONS(2691), - [sym___r_single_quote] = ACTIONS(2691), + [anon_sym_DOT] = ACTIONS(2199), + [anon_sym_as] = ACTIONS(2199), + [anon_sym_LBRACE] = ACTIONS(2199), + [anon_sym_COMMA] = ACTIONS(2199), + [anon_sym_const] = ACTIONS(2199), + [anon_sym_LPAREN] = ACTIONS(2199), + [anon_sym___global] = ACTIONS(2199), + [anon_sym_type] = ACTIONS(2199), + [anon_sym_PIPE] = ACTIONS(2199), + [anon_sym_fn] = ACTIONS(2199), + [anon_sym_PLUS] = ACTIONS(2199), + [anon_sym_DASH] = ACTIONS(2199), + [anon_sym_STAR] = ACTIONS(2199), + [anon_sym_SLASH] = ACTIONS(2199), + [anon_sym_PERCENT] = ACTIONS(2199), + [anon_sym_LT] = ACTIONS(2199), + [anon_sym_GT] = ACTIONS(2199), + [anon_sym_EQ_EQ] = ACTIONS(2199), + [anon_sym_BANG_EQ] = ACTIONS(2199), + [anon_sym_LT_EQ] = ACTIONS(2199), + [anon_sym_GT_EQ] = ACTIONS(2199), + [anon_sym_LBRACK] = ACTIONS(2197), + [anon_sym_struct] = ACTIONS(2199), + [anon_sym_union] = ACTIONS(2199), + [anon_sym_pub] = ACTIONS(2199), + [anon_sym_mut] = ACTIONS(2199), + [anon_sym_enum] = ACTIONS(2199), + [anon_sym_interface] = ACTIONS(2199), + [anon_sym_PLUS_PLUS] = ACTIONS(2199), + [anon_sym_DASH_DASH] = ACTIONS(2199), + [anon_sym_QMARK] = ACTIONS(2199), + [anon_sym_BANG] = ACTIONS(2199), + [anon_sym_go] = ACTIONS(2199), + [anon_sym_spawn] = ACTIONS(2199), + [anon_sym_json_DOTdecode] = ACTIONS(2199), + [anon_sym_LBRACK2] = ACTIONS(2199), + [anon_sym_TILDE] = ACTIONS(2199), + [anon_sym_CARET] = ACTIONS(2199), + [anon_sym_AMP] = ACTIONS(2199), + [anon_sym_LT_DASH] = ACTIONS(2199), + [anon_sym_LT_LT] = ACTIONS(2199), + [anon_sym_GT_GT] = ACTIONS(2199), + [anon_sym_GT_GT_GT] = ACTIONS(2199), + [anon_sym_AMP_CARET] = ACTIONS(2199), + [anon_sym_AMP_AMP] = ACTIONS(2199), + [anon_sym_PIPE_PIPE] = ACTIONS(2199), + [anon_sym_or] = ACTIONS(2199), + [sym_none] = ACTIONS(2199), + [sym_true] = ACTIONS(2199), + [sym_false] = ACTIONS(2199), + [sym_nil] = ACTIONS(2199), + [anon_sym_QMARK_DOT] = ACTIONS(2199), + [anon_sym_POUND_LBRACK] = ACTIONS(2199), + [anon_sym_if] = ACTIONS(2199), + [anon_sym_DOLLARif] = ACTIONS(2199), + [anon_sym_is] = ACTIONS(2199), + [anon_sym_BANGis] = ACTIONS(2199), + [anon_sym_in] = ACTIONS(2199), + [anon_sym_BANGin] = ACTIONS(2199), + [anon_sym_match] = ACTIONS(2199), + [anon_sym_select] = ACTIONS(2199), + [anon_sym_lock] = ACTIONS(2199), + [anon_sym_rlock] = ACTIONS(2199), + [anon_sym_unsafe] = ACTIONS(2199), + [anon_sym_sql] = ACTIONS(2199), + [sym_int_literal] = ACTIONS(2199), + [sym_float_literal] = ACTIONS(2199), + [sym_rune_literal] = ACTIONS(2199), + [sym_pseudo_compile_time_identifier] = ACTIONS(2199), + [anon_sym_shared] = ACTIONS(2199), + [anon_sym_map_LBRACK] = ACTIONS(2199), + [anon_sym_chan] = ACTIONS(2199), + [anon_sym_thread] = ACTIONS(2199), + [anon_sym_atomic] = ACTIONS(2199), + [anon_sym_assert] = ACTIONS(2199), + [anon_sym_defer] = ACTIONS(2199), + [anon_sym_goto] = ACTIONS(2199), + [anon_sym_break] = ACTIONS(2199), + [anon_sym_continue] = ACTIONS(2199), + [anon_sym_return] = ACTIONS(2199), + [anon_sym_DOLLARfor] = ACTIONS(2199), + [anon_sym_for] = ACTIONS(2199), + [anon_sym_POUND] = ACTIONS(2199), + [anon_sym_asm] = ACTIONS(2199), + [anon_sym_AT_LBRACK] = ACTIONS(2199), + [sym___double_quote] = ACTIONS(2199), + [sym___single_quote] = ACTIONS(2199), + [sym___c_double_quote] = ACTIONS(2199), + [sym___c_single_quote] = ACTIONS(2199), + [sym___r_double_quote] = ACTIONS(2199), + [sym___r_single_quote] = ACTIONS(2199), }, [996] = { [sym_line_comment] = STATE(996), [sym_block_comment] = STATE(996), - [ts_builtin_sym_end] = ACTIONS(1915), - [sym_identifier] = ACTIONS(1917), - [anon_sym_LF] = ACTIONS(1917), - [anon_sym_CR] = ACTIONS(1917), - [anon_sym_CR_LF] = ACTIONS(1917), + [ts_builtin_sym_end] = ACTIONS(2822), + [sym_identifier] = ACTIONS(2824), + [anon_sym_LF] = ACTIONS(2824), + [anon_sym_CR] = ACTIONS(2824), + [anon_sym_CR_LF] = ACTIONS(2824), [anon_sym_SLASH_SLASH] = ACTIONS(497), [anon_sym_SLASH_STAR] = ACTIONS(499), - [anon_sym_DOT] = ACTIONS(1917), - [anon_sym_as] = ACTIONS(1917), - [anon_sym_LBRACE] = ACTIONS(1917), - [anon_sym_COMMA] = ACTIONS(1917), - [anon_sym_const] = ACTIONS(1917), - [anon_sym_LPAREN] = ACTIONS(1917), - [anon_sym___global] = ACTIONS(1917), - [anon_sym_type] = ACTIONS(1917), - [anon_sym_PIPE] = ACTIONS(1917), - [anon_sym_fn] = ACTIONS(1917), - [anon_sym_PLUS] = ACTIONS(1917), - [anon_sym_DASH] = ACTIONS(1917), - [anon_sym_STAR] = ACTIONS(1917), - [anon_sym_SLASH] = ACTIONS(1917), - [anon_sym_PERCENT] = ACTIONS(1917), - [anon_sym_LT] = ACTIONS(1917), - [anon_sym_GT] = ACTIONS(1917), - [anon_sym_EQ_EQ] = ACTIONS(1917), - [anon_sym_BANG_EQ] = ACTIONS(1917), - [anon_sym_LT_EQ] = ACTIONS(1917), - [anon_sym_GT_EQ] = ACTIONS(1917), - [anon_sym_LBRACK] = ACTIONS(1915), - [anon_sym_struct] = ACTIONS(1917), - [anon_sym_union] = ACTIONS(1917), - [anon_sym_pub] = ACTIONS(1917), - [anon_sym_mut] = ACTIONS(1917), - [anon_sym_enum] = ACTIONS(1917), - [anon_sym_interface] = ACTIONS(1917), - [anon_sym_PLUS_PLUS] = ACTIONS(1917), - [anon_sym_DASH_DASH] = ACTIONS(1917), - [anon_sym_QMARK] = ACTIONS(1917), - [anon_sym_BANG] = ACTIONS(1917), - [anon_sym_go] = ACTIONS(1917), - [anon_sym_spawn] = ACTIONS(1917), - [anon_sym_json_DOTdecode] = ACTIONS(1917), - [anon_sym_LBRACK2] = ACTIONS(1917), - [anon_sym_TILDE] = ACTIONS(1917), - [anon_sym_CARET] = ACTIONS(1917), - [anon_sym_AMP] = ACTIONS(1917), - [anon_sym_LT_DASH] = ACTIONS(1917), - [anon_sym_LT_LT] = ACTIONS(1917), - [anon_sym_GT_GT] = ACTIONS(1917), - [anon_sym_GT_GT_GT] = ACTIONS(1917), - [anon_sym_AMP_CARET] = ACTIONS(1917), - [anon_sym_AMP_AMP] = ACTIONS(1917), - [anon_sym_PIPE_PIPE] = ACTIONS(1917), - [anon_sym_or] = ACTIONS(1917), - [sym_none] = ACTIONS(1917), - [sym_true] = ACTIONS(1917), - [sym_false] = ACTIONS(1917), - [sym_nil] = ACTIONS(1917), - [anon_sym_QMARK_DOT] = ACTIONS(1917), - [anon_sym_POUND_LBRACK] = ACTIONS(1917), - [anon_sym_if] = ACTIONS(1917), - [anon_sym_DOLLARif] = ACTIONS(1917), - [anon_sym_is] = ACTIONS(1917), - [anon_sym_BANGis] = ACTIONS(1917), - [anon_sym_in] = ACTIONS(1917), - [anon_sym_BANGin] = ACTIONS(1917), - [anon_sym_match] = ACTIONS(1917), - [anon_sym_select] = ACTIONS(1917), - [anon_sym_lock] = ACTIONS(1917), - [anon_sym_rlock] = ACTIONS(1917), - [anon_sym_unsafe] = ACTIONS(1917), - [anon_sym_sql] = ACTIONS(1917), - [sym_int_literal] = ACTIONS(1917), - [sym_float_literal] = ACTIONS(1917), - [sym_rune_literal] = ACTIONS(1917), - [sym_pseudo_compile_time_identifier] = ACTIONS(1917), - [anon_sym_shared] = ACTIONS(1917), - [anon_sym_map_LBRACK] = ACTIONS(1917), - [anon_sym_chan] = ACTIONS(1917), - [anon_sym_thread] = ACTIONS(1917), - [anon_sym_atomic] = ACTIONS(1917), - [anon_sym_assert] = ACTIONS(1917), - [anon_sym_defer] = ACTIONS(1917), - [anon_sym_goto] = ACTIONS(1917), - [anon_sym_break] = ACTIONS(1917), - [anon_sym_continue] = ACTIONS(1917), - [anon_sym_return] = ACTIONS(1917), - [anon_sym_DOLLARfor] = ACTIONS(1917), - [anon_sym_for] = ACTIONS(1917), - [anon_sym_POUND] = ACTIONS(1917), - [anon_sym_asm] = ACTIONS(1917), - [anon_sym_AT_LBRACK] = ACTIONS(1917), - [sym___double_quote] = ACTIONS(1917), - [sym___single_quote] = ACTIONS(1917), - [sym___c_double_quote] = ACTIONS(1917), - [sym___c_single_quote] = ACTIONS(1917), - [sym___r_double_quote] = ACTIONS(1917), - [sym___r_single_quote] = ACTIONS(1917), + [anon_sym_DOT] = ACTIONS(2824), + [anon_sym_as] = ACTIONS(2824), + [anon_sym_LBRACE] = ACTIONS(2824), + [anon_sym_COMMA] = ACTIONS(2824), + [anon_sym_const] = ACTIONS(2824), + [anon_sym_LPAREN] = ACTIONS(2824), + [anon_sym___global] = ACTIONS(2824), + [anon_sym_type] = ACTIONS(2824), + [anon_sym_PIPE] = ACTIONS(2824), + [anon_sym_fn] = ACTIONS(2824), + [anon_sym_PLUS] = ACTIONS(2824), + [anon_sym_DASH] = ACTIONS(2824), + [anon_sym_STAR] = ACTIONS(2824), + [anon_sym_SLASH] = ACTIONS(2824), + [anon_sym_PERCENT] = ACTIONS(2824), + [anon_sym_LT] = ACTIONS(2824), + [anon_sym_GT] = ACTIONS(2824), + [anon_sym_EQ_EQ] = ACTIONS(2824), + [anon_sym_BANG_EQ] = ACTIONS(2824), + [anon_sym_LT_EQ] = ACTIONS(2824), + [anon_sym_GT_EQ] = ACTIONS(2824), + [anon_sym_LBRACK] = ACTIONS(2822), + [anon_sym_struct] = ACTIONS(2824), + [anon_sym_union] = ACTIONS(2824), + [anon_sym_pub] = ACTIONS(2824), + [anon_sym_mut] = ACTIONS(2824), + [anon_sym_enum] = ACTIONS(2824), + [anon_sym_interface] = ACTIONS(2824), + [anon_sym_PLUS_PLUS] = ACTIONS(2824), + [anon_sym_DASH_DASH] = ACTIONS(2824), + [anon_sym_QMARK] = ACTIONS(2824), + [anon_sym_BANG] = ACTIONS(2824), + [anon_sym_go] = ACTIONS(2824), + [anon_sym_spawn] = ACTIONS(2824), + [anon_sym_json_DOTdecode] = ACTIONS(2824), + [anon_sym_LBRACK2] = ACTIONS(2824), + [anon_sym_TILDE] = ACTIONS(2824), + [anon_sym_CARET] = ACTIONS(2824), + [anon_sym_AMP] = ACTIONS(2824), + [anon_sym_LT_DASH] = ACTIONS(2824), + [anon_sym_LT_LT] = ACTIONS(2824), + [anon_sym_GT_GT] = ACTIONS(2824), + [anon_sym_GT_GT_GT] = ACTIONS(2824), + [anon_sym_AMP_CARET] = ACTIONS(2824), + [anon_sym_AMP_AMP] = ACTIONS(2824), + [anon_sym_PIPE_PIPE] = ACTIONS(2824), + [anon_sym_or] = ACTIONS(2824), + [sym_none] = ACTIONS(2824), + [sym_true] = ACTIONS(2824), + [sym_false] = ACTIONS(2824), + [sym_nil] = ACTIONS(2824), + [anon_sym_QMARK_DOT] = ACTIONS(2824), + [anon_sym_POUND_LBRACK] = ACTIONS(2824), + [anon_sym_if] = ACTIONS(2824), + [anon_sym_DOLLARif] = ACTIONS(2824), + [anon_sym_is] = ACTIONS(2824), + [anon_sym_BANGis] = ACTIONS(2824), + [anon_sym_in] = ACTIONS(2824), + [anon_sym_BANGin] = ACTIONS(2824), + [anon_sym_match] = ACTIONS(2824), + [anon_sym_select] = ACTIONS(2824), + [anon_sym_lock] = ACTIONS(2824), + [anon_sym_rlock] = ACTIONS(2824), + [anon_sym_unsafe] = ACTIONS(2824), + [anon_sym_sql] = ACTIONS(2824), + [sym_int_literal] = ACTIONS(2824), + [sym_float_literal] = ACTIONS(2824), + [sym_rune_literal] = ACTIONS(2824), + [sym_pseudo_compile_time_identifier] = ACTIONS(2824), + [anon_sym_shared] = ACTIONS(2824), + [anon_sym_map_LBRACK] = ACTIONS(2824), + [anon_sym_chan] = ACTIONS(2824), + [anon_sym_thread] = ACTIONS(2824), + [anon_sym_atomic] = ACTIONS(2824), + [anon_sym_assert] = ACTIONS(2824), + [anon_sym_defer] = ACTIONS(2824), + [anon_sym_goto] = ACTIONS(2824), + [anon_sym_break] = ACTIONS(2824), + [anon_sym_continue] = ACTIONS(2824), + [anon_sym_return] = ACTIONS(2824), + [anon_sym_DOLLARfor] = ACTIONS(2824), + [anon_sym_for] = ACTIONS(2824), + [anon_sym_POUND] = ACTIONS(2824), + [anon_sym_asm] = ACTIONS(2824), + [anon_sym_AT_LBRACK] = ACTIONS(2824), + [sym___double_quote] = ACTIONS(2824), + [sym___single_quote] = ACTIONS(2824), + [sym___c_double_quote] = ACTIONS(2824), + [sym___c_single_quote] = ACTIONS(2824), + [sym___r_double_quote] = ACTIONS(2824), + [sym___r_single_quote] = ACTIONS(2824), }, [997] = { [sym_line_comment] = STATE(997), [sym_block_comment] = STATE(997), - [ts_builtin_sym_end] = ACTIONS(2211), - [sym_identifier] = ACTIONS(2213), - [anon_sym_LF] = ACTIONS(2213), - [anon_sym_CR] = ACTIONS(2213), - [anon_sym_CR_LF] = ACTIONS(2213), + [ts_builtin_sym_end] = ACTIONS(2860), + [sym_identifier] = ACTIONS(2862), + [anon_sym_LF] = ACTIONS(2862), + [anon_sym_CR] = ACTIONS(2862), + [anon_sym_CR_LF] = ACTIONS(2862), [anon_sym_SLASH_SLASH] = ACTIONS(497), [anon_sym_SLASH_STAR] = ACTIONS(499), - [anon_sym_DOT] = ACTIONS(2213), - [anon_sym_as] = ACTIONS(2213), - [anon_sym_LBRACE] = ACTIONS(2213), - [anon_sym_COMMA] = ACTIONS(2213), - [anon_sym_const] = ACTIONS(2213), - [anon_sym_LPAREN] = ACTIONS(2213), - [anon_sym___global] = ACTIONS(2213), - [anon_sym_type] = ACTIONS(2213), - [anon_sym_PIPE] = ACTIONS(2213), - [anon_sym_fn] = ACTIONS(2213), - [anon_sym_PLUS] = ACTIONS(2213), - [anon_sym_DASH] = ACTIONS(2213), - [anon_sym_STAR] = ACTIONS(2213), - [anon_sym_SLASH] = ACTIONS(2213), - [anon_sym_PERCENT] = ACTIONS(2213), - [anon_sym_LT] = ACTIONS(2213), - [anon_sym_GT] = ACTIONS(2213), - [anon_sym_EQ_EQ] = ACTIONS(2213), - [anon_sym_BANG_EQ] = ACTIONS(2213), - [anon_sym_LT_EQ] = ACTIONS(2213), - [anon_sym_GT_EQ] = ACTIONS(2213), - [anon_sym_LBRACK] = ACTIONS(2211), - [anon_sym_struct] = ACTIONS(2213), - [anon_sym_union] = ACTIONS(2213), - [anon_sym_pub] = ACTIONS(2213), - [anon_sym_mut] = ACTIONS(2213), - [anon_sym_enum] = ACTIONS(2213), - [anon_sym_interface] = ACTIONS(2213), - [anon_sym_PLUS_PLUS] = ACTIONS(2213), - [anon_sym_DASH_DASH] = ACTIONS(2213), - [anon_sym_QMARK] = ACTIONS(2213), - [anon_sym_BANG] = ACTIONS(2213), - [anon_sym_go] = ACTIONS(2213), - [anon_sym_spawn] = ACTIONS(2213), - [anon_sym_json_DOTdecode] = ACTIONS(2213), - [anon_sym_LBRACK2] = ACTIONS(2213), - [anon_sym_TILDE] = ACTIONS(2213), - [anon_sym_CARET] = ACTIONS(2213), - [anon_sym_AMP] = ACTIONS(2213), - [anon_sym_LT_DASH] = ACTIONS(2213), - [anon_sym_LT_LT] = ACTIONS(2213), - [anon_sym_GT_GT] = ACTIONS(2213), - [anon_sym_GT_GT_GT] = ACTIONS(2213), - [anon_sym_AMP_CARET] = ACTIONS(2213), - [anon_sym_AMP_AMP] = ACTIONS(2213), - [anon_sym_PIPE_PIPE] = ACTIONS(2213), - [anon_sym_or] = ACTIONS(2213), - [sym_none] = ACTIONS(2213), - [sym_true] = ACTIONS(2213), - [sym_false] = ACTIONS(2213), - [sym_nil] = ACTIONS(2213), - [anon_sym_QMARK_DOT] = ACTIONS(2213), - [anon_sym_POUND_LBRACK] = ACTIONS(2213), - [anon_sym_if] = ACTIONS(2213), - [anon_sym_DOLLARif] = ACTIONS(2213), - [anon_sym_is] = ACTIONS(2213), - [anon_sym_BANGis] = ACTIONS(2213), - [anon_sym_in] = ACTIONS(2213), - [anon_sym_BANGin] = ACTIONS(2213), - [anon_sym_match] = ACTIONS(2213), - [anon_sym_select] = ACTIONS(2213), - [anon_sym_lock] = ACTIONS(2213), - [anon_sym_rlock] = ACTIONS(2213), - [anon_sym_unsafe] = ACTIONS(2213), - [anon_sym_sql] = ACTIONS(2213), - [sym_int_literal] = ACTIONS(2213), - [sym_float_literal] = ACTIONS(2213), - [sym_rune_literal] = ACTIONS(2213), - [sym_pseudo_compile_time_identifier] = ACTIONS(2213), - [anon_sym_shared] = ACTIONS(2213), - [anon_sym_map_LBRACK] = ACTIONS(2213), - [anon_sym_chan] = ACTIONS(2213), - [anon_sym_thread] = ACTIONS(2213), - [anon_sym_atomic] = ACTIONS(2213), - [anon_sym_assert] = ACTIONS(2213), - [anon_sym_defer] = ACTIONS(2213), - [anon_sym_goto] = ACTIONS(2213), - [anon_sym_break] = ACTIONS(2213), - [anon_sym_continue] = ACTIONS(2213), - [anon_sym_return] = ACTIONS(2213), - [anon_sym_DOLLARfor] = ACTIONS(2213), - [anon_sym_for] = ACTIONS(2213), - [anon_sym_POUND] = ACTIONS(2213), - [anon_sym_asm] = ACTIONS(2213), - [anon_sym_AT_LBRACK] = ACTIONS(2213), - [sym___double_quote] = ACTIONS(2213), - [sym___single_quote] = ACTIONS(2213), - [sym___c_double_quote] = ACTIONS(2213), - [sym___c_single_quote] = ACTIONS(2213), - [sym___r_double_quote] = ACTIONS(2213), - [sym___r_single_quote] = ACTIONS(2213), + [anon_sym_DOT] = ACTIONS(2862), + [anon_sym_as] = ACTIONS(2862), + [anon_sym_LBRACE] = ACTIONS(2862), + [anon_sym_COMMA] = ACTIONS(2862), + [anon_sym_const] = ACTIONS(2862), + [anon_sym_LPAREN] = ACTIONS(2862), + [anon_sym___global] = ACTIONS(2862), + [anon_sym_type] = ACTIONS(2862), + [anon_sym_PIPE] = ACTIONS(2862), + [anon_sym_fn] = ACTIONS(2862), + [anon_sym_PLUS] = ACTIONS(2862), + [anon_sym_DASH] = ACTIONS(2862), + [anon_sym_STAR] = ACTIONS(2862), + [anon_sym_SLASH] = ACTIONS(2862), + [anon_sym_PERCENT] = ACTIONS(2862), + [anon_sym_LT] = ACTIONS(2862), + [anon_sym_GT] = ACTIONS(2862), + [anon_sym_EQ_EQ] = ACTIONS(2862), + [anon_sym_BANG_EQ] = ACTIONS(2862), + [anon_sym_LT_EQ] = ACTIONS(2862), + [anon_sym_GT_EQ] = ACTIONS(2862), + [anon_sym_LBRACK] = ACTIONS(2860), + [anon_sym_struct] = ACTIONS(2862), + [anon_sym_union] = ACTIONS(2862), + [anon_sym_pub] = ACTIONS(2862), + [anon_sym_mut] = ACTIONS(2862), + [anon_sym_enum] = ACTIONS(2862), + [anon_sym_interface] = ACTIONS(2862), + [anon_sym_PLUS_PLUS] = ACTIONS(2862), + [anon_sym_DASH_DASH] = ACTIONS(2862), + [anon_sym_QMARK] = ACTIONS(2862), + [anon_sym_BANG] = ACTIONS(2862), + [anon_sym_go] = ACTIONS(2862), + [anon_sym_spawn] = ACTIONS(2862), + [anon_sym_json_DOTdecode] = ACTIONS(2862), + [anon_sym_LBRACK2] = ACTIONS(2862), + [anon_sym_TILDE] = ACTIONS(2862), + [anon_sym_CARET] = ACTIONS(2862), + [anon_sym_AMP] = ACTIONS(2862), + [anon_sym_LT_DASH] = ACTIONS(2862), + [anon_sym_LT_LT] = ACTIONS(2862), + [anon_sym_GT_GT] = ACTIONS(2862), + [anon_sym_GT_GT_GT] = ACTIONS(2862), + [anon_sym_AMP_CARET] = ACTIONS(2862), + [anon_sym_AMP_AMP] = ACTIONS(2862), + [anon_sym_PIPE_PIPE] = ACTIONS(2862), + [anon_sym_or] = ACTIONS(2862), + [sym_none] = ACTIONS(2862), + [sym_true] = ACTIONS(2862), + [sym_false] = ACTIONS(2862), + [sym_nil] = ACTIONS(2862), + [anon_sym_QMARK_DOT] = ACTIONS(2862), + [anon_sym_POUND_LBRACK] = ACTIONS(2862), + [anon_sym_if] = ACTIONS(2862), + [anon_sym_DOLLARif] = ACTIONS(2862), + [anon_sym_is] = ACTIONS(2862), + [anon_sym_BANGis] = ACTIONS(2862), + [anon_sym_in] = ACTIONS(2862), + [anon_sym_BANGin] = ACTIONS(2862), + [anon_sym_match] = ACTIONS(2862), + [anon_sym_select] = ACTIONS(2862), + [anon_sym_lock] = ACTIONS(2862), + [anon_sym_rlock] = ACTIONS(2862), + [anon_sym_unsafe] = ACTIONS(2862), + [anon_sym_sql] = ACTIONS(2862), + [sym_int_literal] = ACTIONS(2862), + [sym_float_literal] = ACTIONS(2862), + [sym_rune_literal] = ACTIONS(2862), + [sym_pseudo_compile_time_identifier] = ACTIONS(2862), + [anon_sym_shared] = ACTIONS(2862), + [anon_sym_map_LBRACK] = ACTIONS(2862), + [anon_sym_chan] = ACTIONS(2862), + [anon_sym_thread] = ACTIONS(2862), + [anon_sym_atomic] = ACTIONS(2862), + [anon_sym_assert] = ACTIONS(2862), + [anon_sym_defer] = ACTIONS(2862), + [anon_sym_goto] = ACTIONS(2862), + [anon_sym_break] = ACTIONS(2862), + [anon_sym_continue] = ACTIONS(2862), + [anon_sym_return] = ACTIONS(2862), + [anon_sym_DOLLARfor] = ACTIONS(2862), + [anon_sym_for] = ACTIONS(2862), + [anon_sym_POUND] = ACTIONS(2862), + [anon_sym_asm] = ACTIONS(2862), + [anon_sym_AT_LBRACK] = ACTIONS(2862), + [sym___double_quote] = ACTIONS(2862), + [sym___single_quote] = ACTIONS(2862), + [sym___c_double_quote] = ACTIONS(2862), + [sym___c_single_quote] = ACTIONS(2862), + [sym___r_double_quote] = ACTIONS(2862), + [sym___r_single_quote] = ACTIONS(2862), }, [998] = { [sym_line_comment] = STATE(998), [sym_block_comment] = STATE(998), - [ts_builtin_sym_end] = ACTIONS(2509), - [sym_identifier] = ACTIONS(2511), - [anon_sym_LF] = ACTIONS(2511), - [anon_sym_CR] = ACTIONS(2511), - [anon_sym_CR_LF] = ACTIONS(2511), + [ts_builtin_sym_end] = ACTIONS(2722), + [sym_identifier] = ACTIONS(2724), + [anon_sym_LF] = ACTIONS(2724), + [anon_sym_CR] = ACTIONS(2724), + [anon_sym_CR_LF] = ACTIONS(2724), [anon_sym_SLASH_SLASH] = ACTIONS(497), [anon_sym_SLASH_STAR] = ACTIONS(499), - [anon_sym_DOT] = ACTIONS(2511), - [anon_sym_as] = ACTIONS(2511), - [anon_sym_LBRACE] = ACTIONS(2511), - [anon_sym_COMMA] = ACTIONS(2511), - [anon_sym_const] = ACTIONS(2511), - [anon_sym_LPAREN] = ACTIONS(2511), - [anon_sym___global] = ACTIONS(2511), - [anon_sym_type] = ACTIONS(2511), - [anon_sym_PIPE] = ACTIONS(2511), - [anon_sym_fn] = ACTIONS(2511), - [anon_sym_PLUS] = ACTIONS(2511), - [anon_sym_DASH] = ACTIONS(2511), - [anon_sym_STAR] = ACTIONS(2511), - [anon_sym_SLASH] = ACTIONS(2511), - [anon_sym_PERCENT] = ACTIONS(2511), - [anon_sym_LT] = ACTIONS(2511), - [anon_sym_GT] = ACTIONS(2511), - [anon_sym_EQ_EQ] = ACTIONS(2511), - [anon_sym_BANG_EQ] = ACTIONS(2511), - [anon_sym_LT_EQ] = ACTIONS(2511), - [anon_sym_GT_EQ] = ACTIONS(2511), - [anon_sym_LBRACK] = ACTIONS(2509), - [anon_sym_struct] = ACTIONS(2511), - [anon_sym_union] = ACTIONS(2511), - [anon_sym_pub] = ACTIONS(2511), - [anon_sym_mut] = ACTIONS(2511), - [anon_sym_enum] = ACTIONS(2511), - [anon_sym_interface] = ACTIONS(2511), - [anon_sym_PLUS_PLUS] = ACTIONS(2511), - [anon_sym_DASH_DASH] = ACTIONS(2511), - [anon_sym_QMARK] = ACTIONS(2511), - [anon_sym_BANG] = ACTIONS(2511), - [anon_sym_go] = ACTIONS(2511), - [anon_sym_spawn] = ACTIONS(2511), - [anon_sym_json_DOTdecode] = ACTIONS(2511), - [anon_sym_LBRACK2] = ACTIONS(2511), - [anon_sym_TILDE] = ACTIONS(2511), - [anon_sym_CARET] = ACTIONS(2511), - [anon_sym_AMP] = ACTIONS(2511), - [anon_sym_LT_DASH] = ACTIONS(2511), - [anon_sym_LT_LT] = ACTIONS(2511), - [anon_sym_GT_GT] = ACTIONS(2511), - [anon_sym_GT_GT_GT] = ACTIONS(2511), - [anon_sym_AMP_CARET] = ACTIONS(2511), - [anon_sym_AMP_AMP] = ACTIONS(2511), - [anon_sym_PIPE_PIPE] = ACTIONS(2511), - [anon_sym_or] = ACTIONS(2511), - [sym_none] = ACTIONS(2511), - [sym_true] = ACTIONS(2511), - [sym_false] = ACTIONS(2511), - [sym_nil] = ACTIONS(2511), - [anon_sym_QMARK_DOT] = ACTIONS(2511), - [anon_sym_POUND_LBRACK] = ACTIONS(2511), - [anon_sym_if] = ACTIONS(2511), - [anon_sym_DOLLARif] = ACTIONS(2511), - [anon_sym_is] = ACTIONS(2511), - [anon_sym_BANGis] = ACTIONS(2511), - [anon_sym_in] = ACTIONS(2511), - [anon_sym_BANGin] = ACTIONS(2511), - [anon_sym_match] = ACTIONS(2511), - [anon_sym_select] = ACTIONS(2511), - [anon_sym_lock] = ACTIONS(2511), - [anon_sym_rlock] = ACTIONS(2511), - [anon_sym_unsafe] = ACTIONS(2511), - [anon_sym_sql] = ACTIONS(2511), - [sym_int_literal] = ACTIONS(2511), - [sym_float_literal] = ACTIONS(2511), - [sym_rune_literal] = ACTIONS(2511), - [sym_pseudo_compile_time_identifier] = ACTIONS(2511), - [anon_sym_shared] = ACTIONS(2511), - [anon_sym_map_LBRACK] = ACTIONS(2511), - [anon_sym_chan] = ACTIONS(2511), - [anon_sym_thread] = ACTIONS(2511), - [anon_sym_atomic] = ACTIONS(2511), - [anon_sym_assert] = ACTIONS(2511), - [anon_sym_defer] = ACTIONS(2511), - [anon_sym_goto] = ACTIONS(2511), - [anon_sym_break] = ACTIONS(2511), - [anon_sym_continue] = ACTIONS(2511), - [anon_sym_return] = ACTIONS(2511), - [anon_sym_DOLLARfor] = ACTIONS(2511), - [anon_sym_for] = ACTIONS(2511), - [anon_sym_POUND] = ACTIONS(2511), - [anon_sym_asm] = ACTIONS(2511), - [anon_sym_AT_LBRACK] = ACTIONS(2511), - [sym___double_quote] = ACTIONS(2511), - [sym___single_quote] = ACTIONS(2511), - [sym___c_double_quote] = ACTIONS(2511), - [sym___c_single_quote] = ACTIONS(2511), - [sym___r_double_quote] = ACTIONS(2511), - [sym___r_single_quote] = ACTIONS(2511), + [anon_sym_DOT] = ACTIONS(2724), + [anon_sym_as] = ACTIONS(2724), + [anon_sym_LBRACE] = ACTIONS(2724), + [anon_sym_COMMA] = ACTIONS(2724), + [anon_sym_const] = ACTIONS(2724), + [anon_sym_LPAREN] = ACTIONS(2724), + [anon_sym___global] = ACTIONS(2724), + [anon_sym_type] = ACTIONS(2724), + [anon_sym_PIPE] = ACTIONS(2724), + [anon_sym_fn] = ACTIONS(2724), + [anon_sym_PLUS] = ACTIONS(2724), + [anon_sym_DASH] = ACTIONS(2724), + [anon_sym_STAR] = ACTIONS(2724), + [anon_sym_SLASH] = ACTIONS(2724), + [anon_sym_PERCENT] = ACTIONS(2724), + [anon_sym_LT] = ACTIONS(2724), + [anon_sym_GT] = ACTIONS(2724), + [anon_sym_EQ_EQ] = ACTIONS(2724), + [anon_sym_BANG_EQ] = ACTIONS(2724), + [anon_sym_LT_EQ] = ACTIONS(2724), + [anon_sym_GT_EQ] = ACTIONS(2724), + [anon_sym_LBRACK] = ACTIONS(2722), + [anon_sym_struct] = ACTIONS(2724), + [anon_sym_union] = ACTIONS(2724), + [anon_sym_pub] = ACTIONS(2724), + [anon_sym_mut] = ACTIONS(2724), + [anon_sym_enum] = ACTIONS(2724), + [anon_sym_interface] = ACTIONS(2724), + [anon_sym_PLUS_PLUS] = ACTIONS(2724), + [anon_sym_DASH_DASH] = ACTIONS(2724), + [anon_sym_QMARK] = ACTIONS(2724), + [anon_sym_BANG] = ACTIONS(2724), + [anon_sym_go] = ACTIONS(2724), + [anon_sym_spawn] = ACTIONS(2724), + [anon_sym_json_DOTdecode] = ACTIONS(2724), + [anon_sym_LBRACK2] = ACTIONS(2724), + [anon_sym_TILDE] = ACTIONS(2724), + [anon_sym_CARET] = ACTIONS(2724), + [anon_sym_AMP] = ACTIONS(2724), + [anon_sym_LT_DASH] = ACTIONS(2724), + [anon_sym_LT_LT] = ACTIONS(2724), + [anon_sym_GT_GT] = ACTIONS(2724), + [anon_sym_GT_GT_GT] = ACTIONS(2724), + [anon_sym_AMP_CARET] = ACTIONS(2724), + [anon_sym_AMP_AMP] = ACTIONS(2724), + [anon_sym_PIPE_PIPE] = ACTIONS(2724), + [anon_sym_or] = ACTIONS(2724), + [sym_none] = ACTIONS(2724), + [sym_true] = ACTIONS(2724), + [sym_false] = ACTIONS(2724), + [sym_nil] = ACTIONS(2724), + [anon_sym_QMARK_DOT] = ACTIONS(2724), + [anon_sym_POUND_LBRACK] = ACTIONS(2724), + [anon_sym_if] = ACTIONS(2724), + [anon_sym_DOLLARif] = ACTIONS(2724), + [anon_sym_is] = ACTIONS(2724), + [anon_sym_BANGis] = ACTIONS(2724), + [anon_sym_in] = ACTIONS(2724), + [anon_sym_BANGin] = ACTIONS(2724), + [anon_sym_match] = ACTIONS(2724), + [anon_sym_select] = ACTIONS(2724), + [anon_sym_lock] = ACTIONS(2724), + [anon_sym_rlock] = ACTIONS(2724), + [anon_sym_unsafe] = ACTIONS(2724), + [anon_sym_sql] = ACTIONS(2724), + [sym_int_literal] = ACTIONS(2724), + [sym_float_literal] = ACTIONS(2724), + [sym_rune_literal] = ACTIONS(2724), + [sym_pseudo_compile_time_identifier] = ACTIONS(2724), + [anon_sym_shared] = ACTIONS(2724), + [anon_sym_map_LBRACK] = ACTIONS(2724), + [anon_sym_chan] = ACTIONS(2724), + [anon_sym_thread] = ACTIONS(2724), + [anon_sym_atomic] = ACTIONS(2724), + [anon_sym_assert] = ACTIONS(2724), + [anon_sym_defer] = ACTIONS(2724), + [anon_sym_goto] = ACTIONS(2724), + [anon_sym_break] = ACTIONS(2724), + [anon_sym_continue] = ACTIONS(2724), + [anon_sym_return] = ACTIONS(2724), + [anon_sym_DOLLARfor] = ACTIONS(2724), + [anon_sym_for] = ACTIONS(2724), + [anon_sym_POUND] = ACTIONS(2724), + [anon_sym_asm] = ACTIONS(2724), + [anon_sym_AT_LBRACK] = ACTIONS(2724), + [sym___double_quote] = ACTIONS(2724), + [sym___single_quote] = ACTIONS(2724), + [sym___c_double_quote] = ACTIONS(2724), + [sym___c_single_quote] = ACTIONS(2724), + [sym___r_double_quote] = ACTIONS(2724), + [sym___r_single_quote] = ACTIONS(2724), }, [999] = { [sym_line_comment] = STATE(999), [sym_block_comment] = STATE(999), - [ts_builtin_sym_end] = ACTIONS(2163), - [sym_identifier] = ACTIONS(2165), - [anon_sym_LF] = ACTIONS(2165), - [anon_sym_CR] = ACTIONS(2165), - [anon_sym_CR_LF] = ACTIONS(2165), + [ts_builtin_sym_end] = ACTIONS(2135), + [sym_identifier] = ACTIONS(2137), + [anon_sym_LF] = ACTIONS(2137), + [anon_sym_CR] = ACTIONS(2137), + [anon_sym_CR_LF] = ACTIONS(2137), [anon_sym_SLASH_SLASH] = ACTIONS(497), [anon_sym_SLASH_STAR] = ACTIONS(499), - [anon_sym_DOT] = ACTIONS(2165), - [anon_sym_as] = ACTIONS(2165), - [anon_sym_LBRACE] = ACTIONS(2165), - [anon_sym_COMMA] = ACTIONS(2165), - [anon_sym_const] = ACTIONS(2165), - [anon_sym_LPAREN] = ACTIONS(2165), - [anon_sym___global] = ACTIONS(2165), - [anon_sym_type] = ACTIONS(2165), - [anon_sym_PIPE] = ACTIONS(2165), - [anon_sym_fn] = ACTIONS(2165), - [anon_sym_PLUS] = ACTIONS(2165), - [anon_sym_DASH] = ACTIONS(2165), - [anon_sym_STAR] = ACTIONS(2165), - [anon_sym_SLASH] = ACTIONS(2165), - [anon_sym_PERCENT] = ACTIONS(2165), - [anon_sym_LT] = ACTIONS(2165), - [anon_sym_GT] = ACTIONS(2165), - [anon_sym_EQ_EQ] = ACTIONS(2165), - [anon_sym_BANG_EQ] = ACTIONS(2165), - [anon_sym_LT_EQ] = ACTIONS(2165), - [anon_sym_GT_EQ] = ACTIONS(2165), - [anon_sym_LBRACK] = ACTIONS(2163), - [anon_sym_struct] = ACTIONS(2165), - [anon_sym_union] = ACTIONS(2165), - [anon_sym_pub] = ACTIONS(2165), - [anon_sym_mut] = ACTIONS(2165), - [anon_sym_enum] = ACTIONS(2165), - [anon_sym_interface] = ACTIONS(2165), - [anon_sym_PLUS_PLUS] = ACTIONS(2165), - [anon_sym_DASH_DASH] = ACTIONS(2165), - [anon_sym_QMARK] = ACTIONS(2165), - [anon_sym_BANG] = ACTIONS(2165), - [anon_sym_go] = ACTIONS(2165), - [anon_sym_spawn] = ACTIONS(2165), - [anon_sym_json_DOTdecode] = ACTIONS(2165), - [anon_sym_LBRACK2] = ACTIONS(2165), - [anon_sym_TILDE] = ACTIONS(2165), - [anon_sym_CARET] = ACTIONS(2165), - [anon_sym_AMP] = ACTIONS(2165), - [anon_sym_LT_DASH] = ACTIONS(2165), - [anon_sym_LT_LT] = ACTIONS(2165), - [anon_sym_GT_GT] = ACTIONS(2165), - [anon_sym_GT_GT_GT] = ACTIONS(2165), - [anon_sym_AMP_CARET] = ACTIONS(2165), - [anon_sym_AMP_AMP] = ACTIONS(2165), - [anon_sym_PIPE_PIPE] = ACTIONS(2165), - [anon_sym_or] = ACTIONS(2165), - [sym_none] = ACTIONS(2165), - [sym_true] = ACTIONS(2165), - [sym_false] = ACTIONS(2165), - [sym_nil] = ACTIONS(2165), - [anon_sym_QMARK_DOT] = ACTIONS(2165), - [anon_sym_POUND_LBRACK] = ACTIONS(2165), - [anon_sym_if] = ACTIONS(2165), - [anon_sym_DOLLARif] = ACTIONS(2165), - [anon_sym_is] = ACTIONS(2165), - [anon_sym_BANGis] = ACTIONS(2165), - [anon_sym_in] = ACTIONS(2165), - [anon_sym_BANGin] = ACTIONS(2165), - [anon_sym_match] = ACTIONS(2165), - [anon_sym_select] = ACTIONS(2165), - [anon_sym_lock] = ACTIONS(2165), - [anon_sym_rlock] = ACTIONS(2165), - [anon_sym_unsafe] = ACTIONS(2165), - [anon_sym_sql] = ACTIONS(2165), - [sym_int_literal] = ACTIONS(2165), - [sym_float_literal] = ACTIONS(2165), - [sym_rune_literal] = ACTIONS(2165), - [sym_pseudo_compile_time_identifier] = ACTIONS(2165), - [anon_sym_shared] = ACTIONS(2165), - [anon_sym_map_LBRACK] = ACTIONS(2165), - [anon_sym_chan] = ACTIONS(2165), - [anon_sym_thread] = ACTIONS(2165), - [anon_sym_atomic] = ACTIONS(2165), - [anon_sym_assert] = ACTIONS(2165), - [anon_sym_defer] = ACTIONS(2165), - [anon_sym_goto] = ACTIONS(2165), - [anon_sym_break] = ACTIONS(2165), - [anon_sym_continue] = ACTIONS(2165), - [anon_sym_return] = ACTIONS(2165), - [anon_sym_DOLLARfor] = ACTIONS(2165), - [anon_sym_for] = ACTIONS(2165), - [anon_sym_POUND] = ACTIONS(2165), - [anon_sym_asm] = ACTIONS(2165), - [anon_sym_AT_LBRACK] = ACTIONS(2165), - [sym___double_quote] = ACTIONS(2165), - [sym___single_quote] = ACTIONS(2165), - [sym___c_double_quote] = ACTIONS(2165), - [sym___c_single_quote] = ACTIONS(2165), - [sym___r_double_quote] = ACTIONS(2165), - [sym___r_single_quote] = ACTIONS(2165), + [anon_sym_DOT] = ACTIONS(2137), + [anon_sym_as] = ACTIONS(2137), + [anon_sym_LBRACE] = ACTIONS(2137), + [anon_sym_COMMA] = ACTIONS(2137), + [anon_sym_const] = ACTIONS(2137), + [anon_sym_LPAREN] = ACTIONS(2137), + [anon_sym___global] = ACTIONS(2137), + [anon_sym_type] = ACTIONS(2137), + [anon_sym_PIPE] = ACTIONS(2137), + [anon_sym_fn] = ACTIONS(2137), + [anon_sym_PLUS] = ACTIONS(2137), + [anon_sym_DASH] = ACTIONS(2137), + [anon_sym_STAR] = ACTIONS(2137), + [anon_sym_SLASH] = ACTIONS(2137), + [anon_sym_PERCENT] = ACTIONS(2137), + [anon_sym_LT] = ACTIONS(2137), + [anon_sym_GT] = ACTIONS(2137), + [anon_sym_EQ_EQ] = ACTIONS(2137), + [anon_sym_BANG_EQ] = ACTIONS(2137), + [anon_sym_LT_EQ] = ACTIONS(2137), + [anon_sym_GT_EQ] = ACTIONS(2137), + [anon_sym_LBRACK] = ACTIONS(2135), + [anon_sym_struct] = ACTIONS(2137), + [anon_sym_union] = ACTIONS(2137), + [anon_sym_pub] = ACTIONS(2137), + [anon_sym_mut] = ACTIONS(2137), + [anon_sym_enum] = ACTIONS(2137), + [anon_sym_interface] = ACTIONS(2137), + [anon_sym_PLUS_PLUS] = ACTIONS(2137), + [anon_sym_DASH_DASH] = ACTIONS(2137), + [anon_sym_QMARK] = ACTIONS(2137), + [anon_sym_BANG] = ACTIONS(2137), + [anon_sym_go] = ACTIONS(2137), + [anon_sym_spawn] = ACTIONS(2137), + [anon_sym_json_DOTdecode] = ACTIONS(2137), + [anon_sym_LBRACK2] = ACTIONS(2137), + [anon_sym_TILDE] = ACTIONS(2137), + [anon_sym_CARET] = ACTIONS(2137), + [anon_sym_AMP] = ACTIONS(2137), + [anon_sym_LT_DASH] = ACTIONS(2137), + [anon_sym_LT_LT] = ACTIONS(2137), + [anon_sym_GT_GT] = ACTIONS(2137), + [anon_sym_GT_GT_GT] = ACTIONS(2137), + [anon_sym_AMP_CARET] = ACTIONS(2137), + [anon_sym_AMP_AMP] = ACTIONS(2137), + [anon_sym_PIPE_PIPE] = ACTIONS(2137), + [anon_sym_or] = ACTIONS(2137), + [sym_none] = ACTIONS(2137), + [sym_true] = ACTIONS(2137), + [sym_false] = ACTIONS(2137), + [sym_nil] = ACTIONS(2137), + [anon_sym_QMARK_DOT] = ACTIONS(2137), + [anon_sym_POUND_LBRACK] = ACTIONS(2137), + [anon_sym_if] = ACTIONS(2137), + [anon_sym_DOLLARif] = ACTIONS(2137), + [anon_sym_is] = ACTIONS(2137), + [anon_sym_BANGis] = ACTIONS(2137), + [anon_sym_in] = ACTIONS(2137), + [anon_sym_BANGin] = ACTIONS(2137), + [anon_sym_match] = ACTIONS(2137), + [anon_sym_select] = ACTIONS(2137), + [anon_sym_lock] = ACTIONS(2137), + [anon_sym_rlock] = ACTIONS(2137), + [anon_sym_unsafe] = ACTIONS(2137), + [anon_sym_sql] = ACTIONS(2137), + [sym_int_literal] = ACTIONS(2137), + [sym_float_literal] = ACTIONS(2137), + [sym_rune_literal] = ACTIONS(2137), + [sym_pseudo_compile_time_identifier] = ACTIONS(2137), + [anon_sym_shared] = ACTIONS(2137), + [anon_sym_map_LBRACK] = ACTIONS(2137), + [anon_sym_chan] = ACTIONS(2137), + [anon_sym_thread] = ACTIONS(2137), + [anon_sym_atomic] = ACTIONS(2137), + [anon_sym_assert] = ACTIONS(2137), + [anon_sym_defer] = ACTIONS(2137), + [anon_sym_goto] = ACTIONS(2137), + [anon_sym_break] = ACTIONS(2137), + [anon_sym_continue] = ACTIONS(2137), + [anon_sym_return] = ACTIONS(2137), + [anon_sym_DOLLARfor] = ACTIONS(2137), + [anon_sym_for] = ACTIONS(2137), + [anon_sym_POUND] = ACTIONS(2137), + [anon_sym_asm] = ACTIONS(2137), + [anon_sym_AT_LBRACK] = ACTIONS(2137), + [sym___double_quote] = ACTIONS(2137), + [sym___single_quote] = ACTIONS(2137), + [sym___c_double_quote] = ACTIONS(2137), + [sym___c_single_quote] = ACTIONS(2137), + [sym___r_double_quote] = ACTIONS(2137), + [sym___r_single_quote] = ACTIONS(2137), }, [1000] = { [sym_line_comment] = STATE(1000), [sym_block_comment] = STATE(1000), - [ts_builtin_sym_end] = ACTIONS(2796), - [sym_identifier] = ACTIONS(2798), - [anon_sym_LF] = ACTIONS(2798), - [anon_sym_CR] = ACTIONS(2798), - [anon_sym_CR_LF] = ACTIONS(2798), + [ts_builtin_sym_end] = ACTIONS(2754), + [sym_identifier] = ACTIONS(2756), + [anon_sym_LF] = ACTIONS(2756), + [anon_sym_CR] = ACTIONS(2756), + [anon_sym_CR_LF] = ACTIONS(2756), [anon_sym_SLASH_SLASH] = ACTIONS(497), [anon_sym_SLASH_STAR] = ACTIONS(499), - [anon_sym_DOT] = ACTIONS(2798), - [anon_sym_as] = ACTIONS(2798), - [anon_sym_LBRACE] = ACTIONS(2798), - [anon_sym_COMMA] = ACTIONS(2798), - [anon_sym_const] = ACTIONS(2798), - [anon_sym_LPAREN] = ACTIONS(2798), - [anon_sym___global] = ACTIONS(2798), - [anon_sym_type] = ACTIONS(2798), - [anon_sym_PIPE] = ACTIONS(2798), - [anon_sym_fn] = ACTIONS(2798), - [anon_sym_PLUS] = ACTIONS(2798), - [anon_sym_DASH] = ACTIONS(2798), - [anon_sym_STAR] = ACTIONS(2798), - [anon_sym_SLASH] = ACTIONS(2798), - [anon_sym_PERCENT] = ACTIONS(2798), - [anon_sym_LT] = ACTIONS(2798), - [anon_sym_GT] = ACTIONS(2798), - [anon_sym_EQ_EQ] = ACTIONS(2798), - [anon_sym_BANG_EQ] = ACTIONS(2798), - [anon_sym_LT_EQ] = ACTIONS(2798), - [anon_sym_GT_EQ] = ACTIONS(2798), - [anon_sym_LBRACK] = ACTIONS(2796), - [anon_sym_struct] = ACTIONS(2798), - [anon_sym_union] = ACTIONS(2798), - [anon_sym_pub] = ACTIONS(2798), - [anon_sym_mut] = ACTIONS(2798), - [anon_sym_enum] = ACTIONS(2798), - [anon_sym_interface] = ACTIONS(2798), - [anon_sym_PLUS_PLUS] = ACTIONS(2798), - [anon_sym_DASH_DASH] = ACTIONS(2798), - [anon_sym_QMARK] = ACTIONS(2798), - [anon_sym_BANG] = ACTIONS(2798), - [anon_sym_go] = ACTIONS(2798), - [anon_sym_spawn] = ACTIONS(2798), - [anon_sym_json_DOTdecode] = ACTIONS(2798), - [anon_sym_LBRACK2] = ACTIONS(2798), - [anon_sym_TILDE] = ACTIONS(2798), - [anon_sym_CARET] = ACTIONS(2798), - [anon_sym_AMP] = ACTIONS(2798), - [anon_sym_LT_DASH] = ACTIONS(2798), - [anon_sym_LT_LT] = ACTIONS(2798), - [anon_sym_GT_GT] = ACTIONS(2798), - [anon_sym_GT_GT_GT] = ACTIONS(2798), - [anon_sym_AMP_CARET] = ACTIONS(2798), - [anon_sym_AMP_AMP] = ACTIONS(2798), - [anon_sym_PIPE_PIPE] = ACTIONS(2798), - [anon_sym_or] = ACTIONS(2798), - [sym_none] = ACTIONS(2798), - [sym_true] = ACTIONS(2798), - [sym_false] = ACTIONS(2798), - [sym_nil] = ACTIONS(2798), - [anon_sym_QMARK_DOT] = ACTIONS(2798), - [anon_sym_POUND_LBRACK] = ACTIONS(2798), - [anon_sym_if] = ACTIONS(2798), - [anon_sym_DOLLARif] = ACTIONS(2798), - [anon_sym_is] = ACTIONS(2798), - [anon_sym_BANGis] = ACTIONS(2798), - [anon_sym_in] = ACTIONS(2798), - [anon_sym_BANGin] = ACTIONS(2798), - [anon_sym_match] = ACTIONS(2798), - [anon_sym_select] = ACTIONS(2798), - [anon_sym_lock] = ACTIONS(2798), - [anon_sym_rlock] = ACTIONS(2798), - [anon_sym_unsafe] = ACTIONS(2798), - [anon_sym_sql] = ACTIONS(2798), - [sym_int_literal] = ACTIONS(2798), - [sym_float_literal] = ACTIONS(2798), - [sym_rune_literal] = ACTIONS(2798), - [sym_pseudo_compile_time_identifier] = ACTIONS(2798), - [anon_sym_shared] = ACTIONS(2798), - [anon_sym_map_LBRACK] = ACTIONS(2798), - [anon_sym_chan] = ACTIONS(2798), - [anon_sym_thread] = ACTIONS(2798), - [anon_sym_atomic] = ACTIONS(2798), - [anon_sym_assert] = ACTIONS(2798), - [anon_sym_defer] = ACTIONS(2798), - [anon_sym_goto] = ACTIONS(2798), - [anon_sym_break] = ACTIONS(2798), - [anon_sym_continue] = ACTIONS(2798), - [anon_sym_return] = ACTIONS(2798), - [anon_sym_DOLLARfor] = ACTIONS(2798), - [anon_sym_for] = ACTIONS(2798), - [anon_sym_POUND] = ACTIONS(2798), - [anon_sym_asm] = ACTIONS(2798), - [anon_sym_AT_LBRACK] = ACTIONS(2798), - [sym___double_quote] = ACTIONS(2798), - [sym___single_quote] = ACTIONS(2798), - [sym___c_double_quote] = ACTIONS(2798), - [sym___c_single_quote] = ACTIONS(2798), - [sym___r_double_quote] = ACTIONS(2798), - [sym___r_single_quote] = ACTIONS(2798), + [anon_sym_DOT] = ACTIONS(2756), + [anon_sym_as] = ACTIONS(2756), + [anon_sym_LBRACE] = ACTIONS(2756), + [anon_sym_COMMA] = ACTIONS(2756), + [anon_sym_const] = ACTIONS(2756), + [anon_sym_LPAREN] = ACTIONS(2756), + [anon_sym___global] = ACTIONS(2756), + [anon_sym_type] = ACTIONS(2756), + [anon_sym_PIPE] = ACTIONS(2756), + [anon_sym_fn] = ACTIONS(2756), + [anon_sym_PLUS] = ACTIONS(2756), + [anon_sym_DASH] = ACTIONS(2756), + [anon_sym_STAR] = ACTIONS(2756), + [anon_sym_SLASH] = ACTIONS(2756), + [anon_sym_PERCENT] = ACTIONS(2756), + [anon_sym_LT] = ACTIONS(2756), + [anon_sym_GT] = ACTIONS(2756), + [anon_sym_EQ_EQ] = ACTIONS(2756), + [anon_sym_BANG_EQ] = ACTIONS(2756), + [anon_sym_LT_EQ] = ACTIONS(2756), + [anon_sym_GT_EQ] = ACTIONS(2756), + [anon_sym_LBRACK] = ACTIONS(2754), + [anon_sym_struct] = ACTIONS(2756), + [anon_sym_union] = ACTIONS(2756), + [anon_sym_pub] = ACTIONS(2756), + [anon_sym_mut] = ACTIONS(2756), + [anon_sym_enum] = ACTIONS(2756), + [anon_sym_interface] = ACTIONS(2756), + [anon_sym_PLUS_PLUS] = ACTIONS(2756), + [anon_sym_DASH_DASH] = ACTIONS(2756), + [anon_sym_QMARK] = ACTIONS(2756), + [anon_sym_BANG] = ACTIONS(2756), + [anon_sym_go] = ACTIONS(2756), + [anon_sym_spawn] = ACTIONS(2756), + [anon_sym_json_DOTdecode] = ACTIONS(2756), + [anon_sym_LBRACK2] = ACTIONS(2756), + [anon_sym_TILDE] = ACTIONS(2756), + [anon_sym_CARET] = ACTIONS(2756), + [anon_sym_AMP] = ACTIONS(2756), + [anon_sym_LT_DASH] = ACTIONS(2756), + [anon_sym_LT_LT] = ACTIONS(2756), + [anon_sym_GT_GT] = ACTIONS(2756), + [anon_sym_GT_GT_GT] = ACTIONS(2756), + [anon_sym_AMP_CARET] = ACTIONS(2756), + [anon_sym_AMP_AMP] = ACTIONS(2756), + [anon_sym_PIPE_PIPE] = ACTIONS(2756), + [anon_sym_or] = ACTIONS(2756), + [sym_none] = ACTIONS(2756), + [sym_true] = ACTIONS(2756), + [sym_false] = ACTIONS(2756), + [sym_nil] = ACTIONS(2756), + [anon_sym_QMARK_DOT] = ACTIONS(2756), + [anon_sym_POUND_LBRACK] = ACTIONS(2756), + [anon_sym_if] = ACTIONS(2756), + [anon_sym_DOLLARif] = ACTIONS(2756), + [anon_sym_is] = ACTIONS(2756), + [anon_sym_BANGis] = ACTIONS(2756), + [anon_sym_in] = ACTIONS(2756), + [anon_sym_BANGin] = ACTIONS(2756), + [anon_sym_match] = ACTIONS(2756), + [anon_sym_select] = ACTIONS(2756), + [anon_sym_lock] = ACTIONS(2756), + [anon_sym_rlock] = ACTIONS(2756), + [anon_sym_unsafe] = ACTIONS(2756), + [anon_sym_sql] = ACTIONS(2756), + [sym_int_literal] = ACTIONS(2756), + [sym_float_literal] = ACTIONS(2756), + [sym_rune_literal] = ACTIONS(2756), + [sym_pseudo_compile_time_identifier] = ACTIONS(2756), + [anon_sym_shared] = ACTIONS(2756), + [anon_sym_map_LBRACK] = ACTIONS(2756), + [anon_sym_chan] = ACTIONS(2756), + [anon_sym_thread] = ACTIONS(2756), + [anon_sym_atomic] = ACTIONS(2756), + [anon_sym_assert] = ACTIONS(2756), + [anon_sym_defer] = ACTIONS(2756), + [anon_sym_goto] = ACTIONS(2756), + [anon_sym_break] = ACTIONS(2756), + [anon_sym_continue] = ACTIONS(2756), + [anon_sym_return] = ACTIONS(2756), + [anon_sym_DOLLARfor] = ACTIONS(2756), + [anon_sym_for] = ACTIONS(2756), + [anon_sym_POUND] = ACTIONS(2756), + [anon_sym_asm] = ACTIONS(2756), + [anon_sym_AT_LBRACK] = ACTIONS(2756), + [sym___double_quote] = ACTIONS(2756), + [sym___single_quote] = ACTIONS(2756), + [sym___c_double_quote] = ACTIONS(2756), + [sym___c_single_quote] = ACTIONS(2756), + [sym___r_double_quote] = ACTIONS(2756), + [sym___r_single_quote] = ACTIONS(2756), }, [1001] = { [sym_line_comment] = STATE(1001), [sym_block_comment] = STATE(1001), - [ts_builtin_sym_end] = ACTIONS(2351), - [sym_identifier] = ACTIONS(2353), - [anon_sym_LF] = ACTIONS(2353), - [anon_sym_CR] = ACTIONS(2353), - [anon_sym_CR_LF] = ACTIONS(2353), + [ts_builtin_sym_end] = ACTIONS(2872), + [sym_identifier] = ACTIONS(2874), + [anon_sym_LF] = ACTIONS(2874), + [anon_sym_CR] = ACTIONS(2874), + [anon_sym_CR_LF] = ACTIONS(2874), [anon_sym_SLASH_SLASH] = ACTIONS(497), [anon_sym_SLASH_STAR] = ACTIONS(499), - [anon_sym_DOT] = ACTIONS(2353), - [anon_sym_as] = ACTIONS(2353), - [anon_sym_LBRACE] = ACTIONS(2353), - [anon_sym_COMMA] = ACTIONS(2353), - [anon_sym_const] = ACTIONS(2353), - [anon_sym_LPAREN] = ACTIONS(2353), - [anon_sym___global] = ACTIONS(2353), - [anon_sym_type] = ACTIONS(2353), - [anon_sym_PIPE] = ACTIONS(2353), - [anon_sym_fn] = ACTIONS(2353), - [anon_sym_PLUS] = ACTIONS(2353), - [anon_sym_DASH] = ACTIONS(2353), - [anon_sym_STAR] = ACTIONS(2353), - [anon_sym_SLASH] = ACTIONS(2353), - [anon_sym_PERCENT] = ACTIONS(2353), - [anon_sym_LT] = ACTIONS(2353), - [anon_sym_GT] = ACTIONS(2353), - [anon_sym_EQ_EQ] = ACTIONS(2353), - [anon_sym_BANG_EQ] = ACTIONS(2353), - [anon_sym_LT_EQ] = ACTIONS(2353), - [anon_sym_GT_EQ] = ACTIONS(2353), - [anon_sym_LBRACK] = ACTIONS(2351), - [anon_sym_struct] = ACTIONS(2353), - [anon_sym_union] = ACTIONS(2353), - [anon_sym_pub] = ACTIONS(2353), - [anon_sym_mut] = ACTIONS(2353), - [anon_sym_enum] = ACTIONS(2353), - [anon_sym_interface] = ACTIONS(2353), - [anon_sym_PLUS_PLUS] = ACTIONS(2353), - [anon_sym_DASH_DASH] = ACTIONS(2353), - [anon_sym_QMARK] = ACTIONS(2353), - [anon_sym_BANG] = ACTIONS(2353), - [anon_sym_go] = ACTIONS(2353), - [anon_sym_spawn] = ACTIONS(2353), - [anon_sym_json_DOTdecode] = ACTIONS(2353), - [anon_sym_LBRACK2] = ACTIONS(2353), - [anon_sym_TILDE] = ACTIONS(2353), - [anon_sym_CARET] = ACTIONS(2353), - [anon_sym_AMP] = ACTIONS(2353), - [anon_sym_LT_DASH] = ACTIONS(2353), - [anon_sym_LT_LT] = ACTIONS(2353), - [anon_sym_GT_GT] = ACTIONS(2353), - [anon_sym_GT_GT_GT] = ACTIONS(2353), - [anon_sym_AMP_CARET] = ACTIONS(2353), - [anon_sym_AMP_AMP] = ACTIONS(2353), - [anon_sym_PIPE_PIPE] = ACTIONS(2353), - [anon_sym_or] = ACTIONS(2353), - [sym_none] = ACTIONS(2353), - [sym_true] = ACTIONS(2353), - [sym_false] = ACTIONS(2353), - [sym_nil] = ACTIONS(2353), - [anon_sym_QMARK_DOT] = ACTIONS(2353), - [anon_sym_POUND_LBRACK] = ACTIONS(2353), - [anon_sym_if] = ACTIONS(2353), - [anon_sym_DOLLARif] = ACTIONS(2353), - [anon_sym_is] = ACTIONS(2353), - [anon_sym_BANGis] = ACTIONS(2353), - [anon_sym_in] = ACTIONS(2353), - [anon_sym_BANGin] = ACTIONS(2353), - [anon_sym_match] = ACTIONS(2353), - [anon_sym_select] = ACTIONS(2353), - [anon_sym_lock] = ACTIONS(2353), - [anon_sym_rlock] = ACTIONS(2353), - [anon_sym_unsafe] = ACTIONS(2353), - [anon_sym_sql] = ACTIONS(2353), - [sym_int_literal] = ACTIONS(2353), - [sym_float_literal] = ACTIONS(2353), - [sym_rune_literal] = ACTIONS(2353), - [sym_pseudo_compile_time_identifier] = ACTIONS(2353), - [anon_sym_shared] = ACTIONS(2353), - [anon_sym_map_LBRACK] = ACTIONS(2353), - [anon_sym_chan] = ACTIONS(2353), - [anon_sym_thread] = ACTIONS(2353), - [anon_sym_atomic] = ACTIONS(2353), - [anon_sym_assert] = ACTIONS(2353), - [anon_sym_defer] = ACTIONS(2353), - [anon_sym_goto] = ACTIONS(2353), - [anon_sym_break] = ACTIONS(2353), - [anon_sym_continue] = ACTIONS(2353), - [anon_sym_return] = ACTIONS(2353), - [anon_sym_DOLLARfor] = ACTIONS(2353), - [anon_sym_for] = ACTIONS(2353), - [anon_sym_POUND] = ACTIONS(2353), - [anon_sym_asm] = ACTIONS(2353), - [anon_sym_AT_LBRACK] = ACTIONS(2353), - [sym___double_quote] = ACTIONS(2353), - [sym___single_quote] = ACTIONS(2353), - [sym___c_double_quote] = ACTIONS(2353), - [sym___c_single_quote] = ACTIONS(2353), - [sym___r_double_quote] = ACTIONS(2353), - [sym___r_single_quote] = ACTIONS(2353), + [anon_sym_DOT] = ACTIONS(2874), + [anon_sym_as] = ACTIONS(2874), + [anon_sym_LBRACE] = ACTIONS(2874), + [anon_sym_COMMA] = ACTIONS(2874), + [anon_sym_const] = ACTIONS(2874), + [anon_sym_LPAREN] = ACTIONS(2874), + [anon_sym___global] = ACTIONS(2874), + [anon_sym_type] = ACTIONS(2874), + [anon_sym_PIPE] = ACTIONS(2874), + [anon_sym_fn] = ACTIONS(2874), + [anon_sym_PLUS] = ACTIONS(2874), + [anon_sym_DASH] = ACTIONS(2874), + [anon_sym_STAR] = ACTIONS(2874), + [anon_sym_SLASH] = ACTIONS(2874), + [anon_sym_PERCENT] = ACTIONS(2874), + [anon_sym_LT] = ACTIONS(2874), + [anon_sym_GT] = ACTIONS(2874), + [anon_sym_EQ_EQ] = ACTIONS(2874), + [anon_sym_BANG_EQ] = ACTIONS(2874), + [anon_sym_LT_EQ] = ACTIONS(2874), + [anon_sym_GT_EQ] = ACTIONS(2874), + [anon_sym_LBRACK] = ACTIONS(2872), + [anon_sym_struct] = ACTIONS(2874), + [anon_sym_union] = ACTIONS(2874), + [anon_sym_pub] = ACTIONS(2874), + [anon_sym_mut] = ACTIONS(2874), + [anon_sym_enum] = ACTIONS(2874), + [anon_sym_interface] = ACTIONS(2874), + [anon_sym_PLUS_PLUS] = ACTIONS(2874), + [anon_sym_DASH_DASH] = ACTIONS(2874), + [anon_sym_QMARK] = ACTIONS(2874), + [anon_sym_BANG] = ACTIONS(2874), + [anon_sym_go] = ACTIONS(2874), + [anon_sym_spawn] = ACTIONS(2874), + [anon_sym_json_DOTdecode] = ACTIONS(2874), + [anon_sym_LBRACK2] = ACTIONS(2874), + [anon_sym_TILDE] = ACTIONS(2874), + [anon_sym_CARET] = ACTIONS(2874), + [anon_sym_AMP] = ACTIONS(2874), + [anon_sym_LT_DASH] = ACTIONS(2874), + [anon_sym_LT_LT] = ACTIONS(2874), + [anon_sym_GT_GT] = ACTIONS(2874), + [anon_sym_GT_GT_GT] = ACTIONS(2874), + [anon_sym_AMP_CARET] = ACTIONS(2874), + [anon_sym_AMP_AMP] = ACTIONS(2874), + [anon_sym_PIPE_PIPE] = ACTIONS(2874), + [anon_sym_or] = ACTIONS(2874), + [sym_none] = ACTIONS(2874), + [sym_true] = ACTIONS(2874), + [sym_false] = ACTIONS(2874), + [sym_nil] = ACTIONS(2874), + [anon_sym_QMARK_DOT] = ACTIONS(2874), + [anon_sym_POUND_LBRACK] = ACTIONS(2874), + [anon_sym_if] = ACTIONS(2874), + [anon_sym_DOLLARif] = ACTIONS(2874), + [anon_sym_is] = ACTIONS(2874), + [anon_sym_BANGis] = ACTIONS(2874), + [anon_sym_in] = ACTIONS(2874), + [anon_sym_BANGin] = ACTIONS(2874), + [anon_sym_match] = ACTIONS(2874), + [anon_sym_select] = ACTIONS(2874), + [anon_sym_lock] = ACTIONS(2874), + [anon_sym_rlock] = ACTIONS(2874), + [anon_sym_unsafe] = ACTIONS(2874), + [anon_sym_sql] = ACTIONS(2874), + [sym_int_literal] = ACTIONS(2874), + [sym_float_literal] = ACTIONS(2874), + [sym_rune_literal] = ACTIONS(2874), + [sym_pseudo_compile_time_identifier] = ACTIONS(2874), + [anon_sym_shared] = ACTIONS(2874), + [anon_sym_map_LBRACK] = ACTIONS(2874), + [anon_sym_chan] = ACTIONS(2874), + [anon_sym_thread] = ACTIONS(2874), + [anon_sym_atomic] = ACTIONS(2874), + [anon_sym_assert] = ACTIONS(2874), + [anon_sym_defer] = ACTIONS(2874), + [anon_sym_goto] = ACTIONS(2874), + [anon_sym_break] = ACTIONS(2874), + [anon_sym_continue] = ACTIONS(2874), + [anon_sym_return] = ACTIONS(2874), + [anon_sym_DOLLARfor] = ACTIONS(2874), + [anon_sym_for] = ACTIONS(2874), + [anon_sym_POUND] = ACTIONS(2874), + [anon_sym_asm] = ACTIONS(2874), + [anon_sym_AT_LBRACK] = ACTIONS(2874), + [sym___double_quote] = ACTIONS(2874), + [sym___single_quote] = ACTIONS(2874), + [sym___c_double_quote] = ACTIONS(2874), + [sym___c_single_quote] = ACTIONS(2874), + [sym___r_double_quote] = ACTIONS(2874), + [sym___r_single_quote] = ACTIONS(2874), }, [1002] = { [sym_line_comment] = STATE(1002), [sym_block_comment] = STATE(1002), - [ts_builtin_sym_end] = ACTIONS(2471), - [sym_identifier] = ACTIONS(2473), - [anon_sym_LF] = ACTIONS(2473), - [anon_sym_CR] = ACTIONS(2473), - [anon_sym_CR_LF] = ACTIONS(2473), + [ts_builtin_sym_end] = ACTIONS(2712), + [sym_identifier] = ACTIONS(2714), + [anon_sym_LF] = ACTIONS(2714), + [anon_sym_CR] = ACTIONS(2714), + [anon_sym_CR_LF] = ACTIONS(2714), [anon_sym_SLASH_SLASH] = ACTIONS(497), [anon_sym_SLASH_STAR] = ACTIONS(499), - [anon_sym_DOT] = ACTIONS(2473), - [anon_sym_as] = ACTIONS(2473), - [anon_sym_LBRACE] = ACTIONS(2473), - [anon_sym_COMMA] = ACTIONS(2473), - [anon_sym_const] = ACTIONS(2473), - [anon_sym_LPAREN] = ACTIONS(2473), - [anon_sym___global] = ACTIONS(2473), - [anon_sym_type] = ACTIONS(2473), - [anon_sym_PIPE] = ACTIONS(2473), - [anon_sym_fn] = ACTIONS(2473), - [anon_sym_PLUS] = ACTIONS(2473), - [anon_sym_DASH] = ACTIONS(2473), - [anon_sym_STAR] = ACTIONS(2473), - [anon_sym_SLASH] = ACTIONS(2473), - [anon_sym_PERCENT] = ACTIONS(2473), - [anon_sym_LT] = ACTIONS(2473), - [anon_sym_GT] = ACTIONS(2473), - [anon_sym_EQ_EQ] = ACTIONS(2473), - [anon_sym_BANG_EQ] = ACTIONS(2473), - [anon_sym_LT_EQ] = ACTIONS(2473), - [anon_sym_GT_EQ] = ACTIONS(2473), - [anon_sym_LBRACK] = ACTIONS(2471), - [anon_sym_struct] = ACTIONS(2473), - [anon_sym_union] = ACTIONS(2473), - [anon_sym_pub] = ACTIONS(2473), - [anon_sym_mut] = ACTIONS(2473), - [anon_sym_enum] = ACTIONS(2473), - [anon_sym_interface] = ACTIONS(2473), - [anon_sym_PLUS_PLUS] = ACTIONS(2473), - [anon_sym_DASH_DASH] = ACTIONS(2473), - [anon_sym_QMARK] = ACTIONS(2473), - [anon_sym_BANG] = ACTIONS(2473), - [anon_sym_go] = ACTIONS(2473), - [anon_sym_spawn] = ACTIONS(2473), - [anon_sym_json_DOTdecode] = ACTIONS(2473), - [anon_sym_LBRACK2] = ACTIONS(2473), - [anon_sym_TILDE] = ACTIONS(2473), - [anon_sym_CARET] = ACTIONS(2473), - [anon_sym_AMP] = ACTIONS(2473), - [anon_sym_LT_DASH] = ACTIONS(2473), - [anon_sym_LT_LT] = ACTIONS(2473), - [anon_sym_GT_GT] = ACTIONS(2473), - [anon_sym_GT_GT_GT] = ACTIONS(2473), - [anon_sym_AMP_CARET] = ACTIONS(2473), - [anon_sym_AMP_AMP] = ACTIONS(2473), - [anon_sym_PIPE_PIPE] = ACTIONS(2473), - [anon_sym_or] = ACTIONS(2473), - [sym_none] = ACTIONS(2473), - [sym_true] = ACTIONS(2473), - [sym_false] = ACTIONS(2473), - [sym_nil] = ACTIONS(2473), - [anon_sym_QMARK_DOT] = ACTIONS(2473), - [anon_sym_POUND_LBRACK] = ACTIONS(2473), - [anon_sym_if] = ACTIONS(2473), - [anon_sym_DOLLARif] = ACTIONS(2473), - [anon_sym_is] = ACTIONS(2473), - [anon_sym_BANGis] = ACTIONS(2473), - [anon_sym_in] = ACTIONS(2473), - [anon_sym_BANGin] = ACTIONS(2473), - [anon_sym_match] = ACTIONS(2473), - [anon_sym_select] = ACTIONS(2473), - [anon_sym_lock] = ACTIONS(2473), - [anon_sym_rlock] = ACTIONS(2473), - [anon_sym_unsafe] = ACTIONS(2473), - [anon_sym_sql] = ACTIONS(2473), - [sym_int_literal] = ACTIONS(2473), - [sym_float_literal] = ACTIONS(2473), - [sym_rune_literal] = ACTIONS(2473), - [sym_pseudo_compile_time_identifier] = ACTIONS(2473), - [anon_sym_shared] = ACTIONS(2473), - [anon_sym_map_LBRACK] = ACTIONS(2473), - [anon_sym_chan] = ACTIONS(2473), - [anon_sym_thread] = ACTIONS(2473), - [anon_sym_atomic] = ACTIONS(2473), - [anon_sym_assert] = ACTIONS(2473), - [anon_sym_defer] = ACTIONS(2473), - [anon_sym_goto] = ACTIONS(2473), - [anon_sym_break] = ACTIONS(2473), - [anon_sym_continue] = ACTIONS(2473), - [anon_sym_return] = ACTIONS(2473), - [anon_sym_DOLLARfor] = ACTIONS(2473), - [anon_sym_for] = ACTIONS(2473), - [anon_sym_POUND] = ACTIONS(2473), - [anon_sym_asm] = ACTIONS(2473), - [anon_sym_AT_LBRACK] = ACTIONS(2473), - [sym___double_quote] = ACTIONS(2473), - [sym___single_quote] = ACTIONS(2473), - [sym___c_double_quote] = ACTIONS(2473), - [sym___c_single_quote] = ACTIONS(2473), - [sym___r_double_quote] = ACTIONS(2473), - [sym___r_single_quote] = ACTIONS(2473), + [anon_sym_DOT] = ACTIONS(2714), + [anon_sym_as] = ACTIONS(2714), + [anon_sym_LBRACE] = ACTIONS(2714), + [anon_sym_COMMA] = ACTIONS(2714), + [anon_sym_const] = ACTIONS(2714), + [anon_sym_LPAREN] = ACTIONS(2714), + [anon_sym___global] = ACTIONS(2714), + [anon_sym_type] = ACTIONS(2714), + [anon_sym_PIPE] = ACTIONS(2714), + [anon_sym_fn] = ACTIONS(2714), + [anon_sym_PLUS] = ACTIONS(2714), + [anon_sym_DASH] = ACTIONS(2714), + [anon_sym_STAR] = ACTIONS(2714), + [anon_sym_SLASH] = ACTIONS(2714), + [anon_sym_PERCENT] = ACTIONS(2714), + [anon_sym_LT] = ACTIONS(2714), + [anon_sym_GT] = ACTIONS(2714), + [anon_sym_EQ_EQ] = ACTIONS(2714), + [anon_sym_BANG_EQ] = ACTIONS(2714), + [anon_sym_LT_EQ] = ACTIONS(2714), + [anon_sym_GT_EQ] = ACTIONS(2714), + [anon_sym_LBRACK] = ACTIONS(2712), + [anon_sym_struct] = ACTIONS(2714), + [anon_sym_union] = ACTIONS(2714), + [anon_sym_pub] = ACTIONS(2714), + [anon_sym_mut] = ACTIONS(2714), + [anon_sym_enum] = ACTIONS(2714), + [anon_sym_interface] = ACTIONS(2714), + [anon_sym_PLUS_PLUS] = ACTIONS(2714), + [anon_sym_DASH_DASH] = ACTIONS(2714), + [anon_sym_QMARK] = ACTIONS(2714), + [anon_sym_BANG] = ACTIONS(2714), + [anon_sym_go] = ACTIONS(2714), + [anon_sym_spawn] = ACTIONS(2714), + [anon_sym_json_DOTdecode] = ACTIONS(2714), + [anon_sym_LBRACK2] = ACTIONS(2714), + [anon_sym_TILDE] = ACTIONS(2714), + [anon_sym_CARET] = ACTIONS(2714), + [anon_sym_AMP] = ACTIONS(2714), + [anon_sym_LT_DASH] = ACTIONS(2714), + [anon_sym_LT_LT] = ACTIONS(2714), + [anon_sym_GT_GT] = ACTIONS(2714), + [anon_sym_GT_GT_GT] = ACTIONS(2714), + [anon_sym_AMP_CARET] = ACTIONS(2714), + [anon_sym_AMP_AMP] = ACTIONS(2714), + [anon_sym_PIPE_PIPE] = ACTIONS(2714), + [anon_sym_or] = ACTIONS(2714), + [sym_none] = ACTIONS(2714), + [sym_true] = ACTIONS(2714), + [sym_false] = ACTIONS(2714), + [sym_nil] = ACTIONS(2714), + [anon_sym_QMARK_DOT] = ACTIONS(2714), + [anon_sym_POUND_LBRACK] = ACTIONS(2714), + [anon_sym_if] = ACTIONS(2714), + [anon_sym_DOLLARif] = ACTIONS(2714), + [anon_sym_is] = ACTIONS(2714), + [anon_sym_BANGis] = ACTIONS(2714), + [anon_sym_in] = ACTIONS(2714), + [anon_sym_BANGin] = ACTIONS(2714), + [anon_sym_match] = ACTIONS(2714), + [anon_sym_select] = ACTIONS(2714), + [anon_sym_lock] = ACTIONS(2714), + [anon_sym_rlock] = ACTIONS(2714), + [anon_sym_unsafe] = ACTIONS(2714), + [anon_sym_sql] = ACTIONS(2714), + [sym_int_literal] = ACTIONS(2714), + [sym_float_literal] = ACTIONS(2714), + [sym_rune_literal] = ACTIONS(2714), + [sym_pseudo_compile_time_identifier] = ACTIONS(2714), + [anon_sym_shared] = ACTIONS(2714), + [anon_sym_map_LBRACK] = ACTIONS(2714), + [anon_sym_chan] = ACTIONS(2714), + [anon_sym_thread] = ACTIONS(2714), + [anon_sym_atomic] = ACTIONS(2714), + [anon_sym_assert] = ACTIONS(2714), + [anon_sym_defer] = ACTIONS(2714), + [anon_sym_goto] = ACTIONS(2714), + [anon_sym_break] = ACTIONS(2714), + [anon_sym_continue] = ACTIONS(2714), + [anon_sym_return] = ACTIONS(2714), + [anon_sym_DOLLARfor] = ACTIONS(2714), + [anon_sym_for] = ACTIONS(2714), + [anon_sym_POUND] = ACTIONS(2714), + [anon_sym_asm] = ACTIONS(2714), + [anon_sym_AT_LBRACK] = ACTIONS(2714), + [sym___double_quote] = ACTIONS(2714), + [sym___single_quote] = ACTIONS(2714), + [sym___c_double_quote] = ACTIONS(2714), + [sym___c_single_quote] = ACTIONS(2714), + [sym___r_double_quote] = ACTIONS(2714), + [sym___r_single_quote] = ACTIONS(2714), }, [1003] = { [sym_line_comment] = STATE(1003), [sym_block_comment] = STATE(1003), - [ts_builtin_sym_end] = ACTIONS(2115), - [sym_identifier] = ACTIONS(2117), - [anon_sym_LF] = ACTIONS(2117), - [anon_sym_CR] = ACTIONS(2117), - [anon_sym_CR_LF] = ACTIONS(2117), + [ts_builtin_sym_end] = ACTIONS(2922), + [sym_identifier] = ACTIONS(2924), + [anon_sym_LF] = ACTIONS(2924), + [anon_sym_CR] = ACTIONS(2924), + [anon_sym_CR_LF] = ACTIONS(2924), [anon_sym_SLASH_SLASH] = ACTIONS(497), [anon_sym_SLASH_STAR] = ACTIONS(499), - [anon_sym_DOT] = ACTIONS(2117), - [anon_sym_as] = ACTIONS(2117), - [anon_sym_LBRACE] = ACTIONS(2117), - [anon_sym_COMMA] = ACTIONS(2117), - [anon_sym_const] = ACTIONS(2117), - [anon_sym_LPAREN] = ACTIONS(2117), - [anon_sym___global] = ACTIONS(2117), - [anon_sym_type] = ACTIONS(2117), - [anon_sym_PIPE] = ACTIONS(2117), - [anon_sym_fn] = ACTIONS(2117), - [anon_sym_PLUS] = ACTIONS(2117), - [anon_sym_DASH] = ACTIONS(2117), - [anon_sym_STAR] = ACTIONS(2117), - [anon_sym_SLASH] = ACTIONS(2117), - [anon_sym_PERCENT] = ACTIONS(2117), - [anon_sym_LT] = ACTIONS(2117), - [anon_sym_GT] = ACTIONS(2117), - [anon_sym_EQ_EQ] = ACTIONS(2117), - [anon_sym_BANG_EQ] = ACTIONS(2117), - [anon_sym_LT_EQ] = ACTIONS(2117), - [anon_sym_GT_EQ] = ACTIONS(2117), - [anon_sym_LBRACK] = ACTIONS(2115), - [anon_sym_struct] = ACTIONS(2117), - [anon_sym_union] = ACTIONS(2117), - [anon_sym_pub] = ACTIONS(2117), - [anon_sym_mut] = ACTIONS(2117), - [anon_sym_enum] = ACTIONS(2117), - [anon_sym_interface] = ACTIONS(2117), - [anon_sym_PLUS_PLUS] = ACTIONS(2117), - [anon_sym_DASH_DASH] = ACTIONS(2117), - [anon_sym_QMARK] = ACTIONS(2117), - [anon_sym_BANG] = ACTIONS(2117), - [anon_sym_go] = ACTIONS(2117), - [anon_sym_spawn] = ACTIONS(2117), - [anon_sym_json_DOTdecode] = ACTIONS(2117), - [anon_sym_LBRACK2] = ACTIONS(2117), - [anon_sym_TILDE] = ACTIONS(2117), - [anon_sym_CARET] = ACTIONS(2117), - [anon_sym_AMP] = ACTIONS(2117), - [anon_sym_LT_DASH] = ACTIONS(2117), - [anon_sym_LT_LT] = ACTIONS(2117), - [anon_sym_GT_GT] = ACTIONS(2117), - [anon_sym_GT_GT_GT] = ACTIONS(2117), - [anon_sym_AMP_CARET] = ACTIONS(2117), - [anon_sym_AMP_AMP] = ACTIONS(2117), - [anon_sym_PIPE_PIPE] = ACTIONS(2117), - [anon_sym_or] = ACTIONS(2117), - [sym_none] = ACTIONS(2117), - [sym_true] = ACTIONS(2117), - [sym_false] = ACTIONS(2117), - [sym_nil] = ACTIONS(2117), - [anon_sym_QMARK_DOT] = ACTIONS(2117), - [anon_sym_POUND_LBRACK] = ACTIONS(2117), - [anon_sym_if] = ACTIONS(2117), - [anon_sym_DOLLARif] = ACTIONS(2117), - [anon_sym_is] = ACTIONS(2117), - [anon_sym_BANGis] = ACTIONS(2117), - [anon_sym_in] = ACTIONS(2117), - [anon_sym_BANGin] = ACTIONS(2117), - [anon_sym_match] = ACTIONS(2117), - [anon_sym_select] = ACTIONS(2117), - [anon_sym_lock] = ACTIONS(2117), - [anon_sym_rlock] = ACTIONS(2117), - [anon_sym_unsafe] = ACTIONS(2117), - [anon_sym_sql] = ACTIONS(2117), - [sym_int_literal] = ACTIONS(2117), - [sym_float_literal] = ACTIONS(2117), - [sym_rune_literal] = ACTIONS(2117), - [sym_pseudo_compile_time_identifier] = ACTIONS(2117), - [anon_sym_shared] = ACTIONS(2117), - [anon_sym_map_LBRACK] = ACTIONS(2117), - [anon_sym_chan] = ACTIONS(2117), - [anon_sym_thread] = ACTIONS(2117), - [anon_sym_atomic] = ACTIONS(2117), - [anon_sym_assert] = ACTIONS(2117), - [anon_sym_defer] = ACTIONS(2117), - [anon_sym_goto] = ACTIONS(2117), - [anon_sym_break] = ACTIONS(2117), - [anon_sym_continue] = ACTIONS(2117), - [anon_sym_return] = ACTIONS(2117), - [anon_sym_DOLLARfor] = ACTIONS(2117), - [anon_sym_for] = ACTIONS(2117), - [anon_sym_POUND] = ACTIONS(2117), - [anon_sym_asm] = ACTIONS(2117), - [anon_sym_AT_LBRACK] = ACTIONS(2117), - [sym___double_quote] = ACTIONS(2117), - [sym___single_quote] = ACTIONS(2117), - [sym___c_double_quote] = ACTIONS(2117), - [sym___c_single_quote] = ACTIONS(2117), - [sym___r_double_quote] = ACTIONS(2117), - [sym___r_single_quote] = ACTIONS(2117), + [anon_sym_DOT] = ACTIONS(2924), + [anon_sym_as] = ACTIONS(2924), + [anon_sym_LBRACE] = ACTIONS(2924), + [anon_sym_COMMA] = ACTIONS(2924), + [anon_sym_const] = ACTIONS(2924), + [anon_sym_LPAREN] = ACTIONS(2924), + [anon_sym___global] = ACTIONS(2924), + [anon_sym_type] = ACTIONS(2924), + [anon_sym_PIPE] = ACTIONS(2924), + [anon_sym_fn] = ACTIONS(2924), + [anon_sym_PLUS] = ACTIONS(2924), + [anon_sym_DASH] = ACTIONS(2924), + [anon_sym_STAR] = ACTIONS(2924), + [anon_sym_SLASH] = ACTIONS(2924), + [anon_sym_PERCENT] = ACTIONS(2924), + [anon_sym_LT] = ACTIONS(2924), + [anon_sym_GT] = ACTIONS(2924), + [anon_sym_EQ_EQ] = ACTIONS(2924), + [anon_sym_BANG_EQ] = ACTIONS(2924), + [anon_sym_LT_EQ] = ACTIONS(2924), + [anon_sym_GT_EQ] = ACTIONS(2924), + [anon_sym_LBRACK] = ACTIONS(2922), + [anon_sym_struct] = ACTIONS(2924), + [anon_sym_union] = ACTIONS(2924), + [anon_sym_pub] = ACTIONS(2924), + [anon_sym_mut] = ACTIONS(2924), + [anon_sym_enum] = ACTIONS(2924), + [anon_sym_interface] = ACTIONS(2924), + [anon_sym_PLUS_PLUS] = ACTIONS(2924), + [anon_sym_DASH_DASH] = ACTIONS(2924), + [anon_sym_QMARK] = ACTIONS(2924), + [anon_sym_BANG] = ACTIONS(2924), + [anon_sym_go] = ACTIONS(2924), + [anon_sym_spawn] = ACTIONS(2924), + [anon_sym_json_DOTdecode] = ACTIONS(2924), + [anon_sym_LBRACK2] = ACTIONS(2924), + [anon_sym_TILDE] = ACTIONS(2924), + [anon_sym_CARET] = ACTIONS(2924), + [anon_sym_AMP] = ACTIONS(2924), + [anon_sym_LT_DASH] = ACTIONS(2924), + [anon_sym_LT_LT] = ACTIONS(2924), + [anon_sym_GT_GT] = ACTIONS(2924), + [anon_sym_GT_GT_GT] = ACTIONS(2924), + [anon_sym_AMP_CARET] = ACTIONS(2924), + [anon_sym_AMP_AMP] = ACTIONS(2924), + [anon_sym_PIPE_PIPE] = ACTIONS(2924), + [anon_sym_or] = ACTIONS(2924), + [sym_none] = ACTIONS(2924), + [sym_true] = ACTIONS(2924), + [sym_false] = ACTIONS(2924), + [sym_nil] = ACTIONS(2924), + [anon_sym_QMARK_DOT] = ACTIONS(2924), + [anon_sym_POUND_LBRACK] = ACTIONS(2924), + [anon_sym_if] = ACTIONS(2924), + [anon_sym_DOLLARif] = ACTIONS(2924), + [anon_sym_is] = ACTIONS(2924), + [anon_sym_BANGis] = ACTIONS(2924), + [anon_sym_in] = ACTIONS(2924), + [anon_sym_BANGin] = ACTIONS(2924), + [anon_sym_match] = ACTIONS(2924), + [anon_sym_select] = ACTIONS(2924), + [anon_sym_lock] = ACTIONS(2924), + [anon_sym_rlock] = ACTIONS(2924), + [anon_sym_unsafe] = ACTIONS(2924), + [anon_sym_sql] = ACTIONS(2924), + [sym_int_literal] = ACTIONS(2924), + [sym_float_literal] = ACTIONS(2924), + [sym_rune_literal] = ACTIONS(2924), + [sym_pseudo_compile_time_identifier] = ACTIONS(2924), + [anon_sym_shared] = ACTIONS(2924), + [anon_sym_map_LBRACK] = ACTIONS(2924), + [anon_sym_chan] = ACTIONS(2924), + [anon_sym_thread] = ACTIONS(2924), + [anon_sym_atomic] = ACTIONS(2924), + [anon_sym_assert] = ACTIONS(2924), + [anon_sym_defer] = ACTIONS(2924), + [anon_sym_goto] = ACTIONS(2924), + [anon_sym_break] = ACTIONS(2924), + [anon_sym_continue] = ACTIONS(2924), + [anon_sym_return] = ACTIONS(2924), + [anon_sym_DOLLARfor] = ACTIONS(2924), + [anon_sym_for] = ACTIONS(2924), + [anon_sym_POUND] = ACTIONS(2924), + [anon_sym_asm] = ACTIONS(2924), + [anon_sym_AT_LBRACK] = ACTIONS(2924), + [sym___double_quote] = ACTIONS(2924), + [sym___single_quote] = ACTIONS(2924), + [sym___c_double_quote] = ACTIONS(2924), + [sym___c_single_quote] = ACTIONS(2924), + [sym___r_double_quote] = ACTIONS(2924), + [sym___r_single_quote] = ACTIONS(2924), }, [1004] = { [sym_line_comment] = STATE(1004), [sym_block_comment] = STATE(1004), - [ts_builtin_sym_end] = ACTIONS(2918), - [sym_identifier] = ACTIONS(2920), - [anon_sym_LF] = ACTIONS(2920), - [anon_sym_CR] = ACTIONS(2920), - [anon_sym_CR_LF] = ACTIONS(2920), + [ts_builtin_sym_end] = ACTIONS(2730), + [sym_identifier] = ACTIONS(2732), + [anon_sym_LF] = ACTIONS(2732), + [anon_sym_CR] = ACTIONS(2732), + [anon_sym_CR_LF] = ACTIONS(2732), [anon_sym_SLASH_SLASH] = ACTIONS(497), [anon_sym_SLASH_STAR] = ACTIONS(499), - [anon_sym_DOT] = ACTIONS(2920), - [anon_sym_as] = ACTIONS(2920), - [anon_sym_LBRACE] = ACTIONS(2920), - [anon_sym_COMMA] = ACTIONS(2920), - [anon_sym_const] = ACTIONS(2920), - [anon_sym_LPAREN] = ACTIONS(2920), - [anon_sym___global] = ACTIONS(2920), - [anon_sym_type] = ACTIONS(2920), - [anon_sym_PIPE] = ACTIONS(2920), - [anon_sym_fn] = ACTIONS(2920), - [anon_sym_PLUS] = ACTIONS(2920), - [anon_sym_DASH] = ACTIONS(2920), - [anon_sym_STAR] = ACTIONS(2920), - [anon_sym_SLASH] = ACTIONS(2920), - [anon_sym_PERCENT] = ACTIONS(2920), - [anon_sym_LT] = ACTIONS(2920), - [anon_sym_GT] = ACTIONS(2920), - [anon_sym_EQ_EQ] = ACTIONS(2920), - [anon_sym_BANG_EQ] = ACTIONS(2920), - [anon_sym_LT_EQ] = ACTIONS(2920), - [anon_sym_GT_EQ] = ACTIONS(2920), - [anon_sym_LBRACK] = ACTIONS(2918), - [anon_sym_struct] = ACTIONS(2920), - [anon_sym_union] = ACTIONS(2920), - [anon_sym_pub] = ACTIONS(2920), - [anon_sym_mut] = ACTIONS(2920), - [anon_sym_enum] = ACTIONS(2920), - [anon_sym_interface] = ACTIONS(2920), - [anon_sym_PLUS_PLUS] = ACTIONS(2920), - [anon_sym_DASH_DASH] = ACTIONS(2920), - [anon_sym_QMARK] = ACTIONS(2920), - [anon_sym_BANG] = ACTIONS(2920), - [anon_sym_go] = ACTIONS(2920), - [anon_sym_spawn] = ACTIONS(2920), - [anon_sym_json_DOTdecode] = ACTIONS(2920), - [anon_sym_LBRACK2] = ACTIONS(2920), - [anon_sym_TILDE] = ACTIONS(2920), - [anon_sym_CARET] = ACTIONS(2920), - [anon_sym_AMP] = ACTIONS(2920), - [anon_sym_LT_DASH] = ACTIONS(2920), - [anon_sym_LT_LT] = ACTIONS(2920), - [anon_sym_GT_GT] = ACTIONS(2920), - [anon_sym_GT_GT_GT] = ACTIONS(2920), - [anon_sym_AMP_CARET] = ACTIONS(2920), - [anon_sym_AMP_AMP] = ACTIONS(2920), - [anon_sym_PIPE_PIPE] = ACTIONS(2920), - [anon_sym_or] = ACTIONS(2920), - [sym_none] = ACTIONS(2920), - [sym_true] = ACTIONS(2920), - [sym_false] = ACTIONS(2920), - [sym_nil] = ACTIONS(2920), - [anon_sym_QMARK_DOT] = ACTIONS(2920), - [anon_sym_POUND_LBRACK] = ACTIONS(2920), - [anon_sym_if] = ACTIONS(2920), - [anon_sym_DOLLARif] = ACTIONS(2920), - [anon_sym_is] = ACTIONS(2920), - [anon_sym_BANGis] = ACTIONS(2920), - [anon_sym_in] = ACTIONS(2920), - [anon_sym_BANGin] = ACTIONS(2920), - [anon_sym_match] = ACTIONS(2920), - [anon_sym_select] = ACTIONS(2920), - [anon_sym_lock] = ACTIONS(2920), - [anon_sym_rlock] = ACTIONS(2920), - [anon_sym_unsafe] = ACTIONS(2920), - [anon_sym_sql] = ACTIONS(2920), - [sym_int_literal] = ACTIONS(2920), - [sym_float_literal] = ACTIONS(2920), - [sym_rune_literal] = ACTIONS(2920), - [sym_pseudo_compile_time_identifier] = ACTIONS(2920), - [anon_sym_shared] = ACTIONS(2920), - [anon_sym_map_LBRACK] = ACTIONS(2920), - [anon_sym_chan] = ACTIONS(2920), - [anon_sym_thread] = ACTIONS(2920), - [anon_sym_atomic] = ACTIONS(2920), - [anon_sym_assert] = ACTIONS(2920), - [anon_sym_defer] = ACTIONS(2920), - [anon_sym_goto] = ACTIONS(2920), - [anon_sym_break] = ACTIONS(2920), - [anon_sym_continue] = ACTIONS(2920), - [anon_sym_return] = ACTIONS(2920), - [anon_sym_DOLLARfor] = ACTIONS(2920), - [anon_sym_for] = ACTIONS(2920), - [anon_sym_POUND] = ACTIONS(2920), - [anon_sym_asm] = ACTIONS(2920), - [anon_sym_AT_LBRACK] = ACTIONS(2920), - [sym___double_quote] = ACTIONS(2920), - [sym___single_quote] = ACTIONS(2920), - [sym___c_double_quote] = ACTIONS(2920), - [sym___c_single_quote] = ACTIONS(2920), - [sym___r_double_quote] = ACTIONS(2920), - [sym___r_single_quote] = ACTIONS(2920), + [anon_sym_DOT] = ACTIONS(2732), + [anon_sym_as] = ACTIONS(2732), + [anon_sym_LBRACE] = ACTIONS(2732), + [anon_sym_COMMA] = ACTIONS(2732), + [anon_sym_const] = ACTIONS(2732), + [anon_sym_LPAREN] = ACTIONS(2732), + [anon_sym___global] = ACTIONS(2732), + [anon_sym_type] = ACTIONS(2732), + [anon_sym_PIPE] = ACTIONS(2732), + [anon_sym_fn] = ACTIONS(2732), + [anon_sym_PLUS] = ACTIONS(2732), + [anon_sym_DASH] = ACTIONS(2732), + [anon_sym_STAR] = ACTIONS(2732), + [anon_sym_SLASH] = ACTIONS(2732), + [anon_sym_PERCENT] = ACTIONS(2732), + [anon_sym_LT] = ACTIONS(2732), + [anon_sym_GT] = ACTIONS(2732), + [anon_sym_EQ_EQ] = ACTIONS(2732), + [anon_sym_BANG_EQ] = ACTIONS(2732), + [anon_sym_LT_EQ] = ACTIONS(2732), + [anon_sym_GT_EQ] = ACTIONS(2732), + [anon_sym_LBRACK] = ACTIONS(2730), + [anon_sym_struct] = ACTIONS(2732), + [anon_sym_union] = ACTIONS(2732), + [anon_sym_pub] = ACTIONS(2732), + [anon_sym_mut] = ACTIONS(2732), + [anon_sym_enum] = ACTIONS(2732), + [anon_sym_interface] = ACTIONS(2732), + [anon_sym_PLUS_PLUS] = ACTIONS(2732), + [anon_sym_DASH_DASH] = ACTIONS(2732), + [anon_sym_QMARK] = ACTIONS(2732), + [anon_sym_BANG] = ACTIONS(2732), + [anon_sym_go] = ACTIONS(2732), + [anon_sym_spawn] = ACTIONS(2732), + [anon_sym_json_DOTdecode] = ACTIONS(2732), + [anon_sym_LBRACK2] = ACTIONS(2732), + [anon_sym_TILDE] = ACTIONS(2732), + [anon_sym_CARET] = ACTIONS(2732), + [anon_sym_AMP] = ACTIONS(2732), + [anon_sym_LT_DASH] = ACTIONS(2732), + [anon_sym_LT_LT] = ACTIONS(2732), + [anon_sym_GT_GT] = ACTIONS(2732), + [anon_sym_GT_GT_GT] = ACTIONS(2732), + [anon_sym_AMP_CARET] = ACTIONS(2732), + [anon_sym_AMP_AMP] = ACTIONS(2732), + [anon_sym_PIPE_PIPE] = ACTIONS(2732), + [anon_sym_or] = ACTIONS(2732), + [sym_none] = ACTIONS(2732), + [sym_true] = ACTIONS(2732), + [sym_false] = ACTIONS(2732), + [sym_nil] = ACTIONS(2732), + [anon_sym_QMARK_DOT] = ACTIONS(2732), + [anon_sym_POUND_LBRACK] = ACTIONS(2732), + [anon_sym_if] = ACTIONS(2732), + [anon_sym_DOLLARif] = ACTIONS(2732), + [anon_sym_is] = ACTIONS(2732), + [anon_sym_BANGis] = ACTIONS(2732), + [anon_sym_in] = ACTIONS(2732), + [anon_sym_BANGin] = ACTIONS(2732), + [anon_sym_match] = ACTIONS(2732), + [anon_sym_select] = ACTIONS(2732), + [anon_sym_lock] = ACTIONS(2732), + [anon_sym_rlock] = ACTIONS(2732), + [anon_sym_unsafe] = ACTIONS(2732), + [anon_sym_sql] = ACTIONS(2732), + [sym_int_literal] = ACTIONS(2732), + [sym_float_literal] = ACTIONS(2732), + [sym_rune_literal] = ACTIONS(2732), + [sym_pseudo_compile_time_identifier] = ACTIONS(2732), + [anon_sym_shared] = ACTIONS(2732), + [anon_sym_map_LBRACK] = ACTIONS(2732), + [anon_sym_chan] = ACTIONS(2732), + [anon_sym_thread] = ACTIONS(2732), + [anon_sym_atomic] = ACTIONS(2732), + [anon_sym_assert] = ACTIONS(2732), + [anon_sym_defer] = ACTIONS(2732), + [anon_sym_goto] = ACTIONS(2732), + [anon_sym_break] = ACTIONS(2732), + [anon_sym_continue] = ACTIONS(2732), + [anon_sym_return] = ACTIONS(2732), + [anon_sym_DOLLARfor] = ACTIONS(2732), + [anon_sym_for] = ACTIONS(2732), + [anon_sym_POUND] = ACTIONS(2732), + [anon_sym_asm] = ACTIONS(2732), + [anon_sym_AT_LBRACK] = ACTIONS(2732), + [sym___double_quote] = ACTIONS(2732), + [sym___single_quote] = ACTIONS(2732), + [sym___c_double_quote] = ACTIONS(2732), + [sym___c_single_quote] = ACTIONS(2732), + [sym___r_double_quote] = ACTIONS(2732), + [sym___r_single_quote] = ACTIONS(2732), }, [1005] = { [sym_line_comment] = STATE(1005), [sym_block_comment] = STATE(1005), - [ts_builtin_sym_end] = ACTIONS(2898), - [sym_identifier] = ACTIONS(2900), - [anon_sym_LF] = ACTIONS(2900), - [anon_sym_CR] = ACTIONS(2900), - [anon_sym_CR_LF] = ACTIONS(2900), + [ts_builtin_sym_end] = ACTIONS(2708), + [sym_identifier] = ACTIONS(2710), + [anon_sym_LF] = ACTIONS(2710), + [anon_sym_CR] = ACTIONS(2710), + [anon_sym_CR_LF] = ACTIONS(2710), [anon_sym_SLASH_SLASH] = ACTIONS(497), [anon_sym_SLASH_STAR] = ACTIONS(499), - [anon_sym_DOT] = ACTIONS(2900), - [anon_sym_as] = ACTIONS(2900), - [anon_sym_LBRACE] = ACTIONS(2900), - [anon_sym_COMMA] = ACTIONS(2900), - [anon_sym_const] = ACTIONS(2900), - [anon_sym_LPAREN] = ACTIONS(2900), - [anon_sym___global] = ACTIONS(2900), - [anon_sym_type] = ACTIONS(2900), - [anon_sym_PIPE] = ACTIONS(2900), - [anon_sym_fn] = ACTIONS(2900), - [anon_sym_PLUS] = ACTIONS(2900), - [anon_sym_DASH] = ACTIONS(2900), - [anon_sym_STAR] = ACTIONS(2900), - [anon_sym_SLASH] = ACTIONS(2900), - [anon_sym_PERCENT] = ACTIONS(2900), - [anon_sym_LT] = ACTIONS(2900), - [anon_sym_GT] = ACTIONS(2900), - [anon_sym_EQ_EQ] = ACTIONS(2900), - [anon_sym_BANG_EQ] = ACTIONS(2900), - [anon_sym_LT_EQ] = ACTIONS(2900), - [anon_sym_GT_EQ] = ACTIONS(2900), - [anon_sym_LBRACK] = ACTIONS(2898), - [anon_sym_struct] = ACTIONS(2900), - [anon_sym_union] = ACTIONS(2900), - [anon_sym_pub] = ACTIONS(2900), - [anon_sym_mut] = ACTIONS(2900), - [anon_sym_enum] = ACTIONS(2900), - [anon_sym_interface] = ACTIONS(2900), - [anon_sym_PLUS_PLUS] = ACTIONS(2900), - [anon_sym_DASH_DASH] = ACTIONS(2900), - [anon_sym_QMARK] = ACTIONS(2900), - [anon_sym_BANG] = ACTIONS(2900), - [anon_sym_go] = ACTIONS(2900), - [anon_sym_spawn] = ACTIONS(2900), - [anon_sym_json_DOTdecode] = ACTIONS(2900), - [anon_sym_LBRACK2] = ACTIONS(2900), - [anon_sym_TILDE] = ACTIONS(2900), - [anon_sym_CARET] = ACTIONS(2900), - [anon_sym_AMP] = ACTIONS(2900), - [anon_sym_LT_DASH] = ACTIONS(2900), - [anon_sym_LT_LT] = ACTIONS(2900), - [anon_sym_GT_GT] = ACTIONS(2900), - [anon_sym_GT_GT_GT] = ACTIONS(2900), - [anon_sym_AMP_CARET] = ACTIONS(2900), - [anon_sym_AMP_AMP] = ACTIONS(2900), - [anon_sym_PIPE_PIPE] = ACTIONS(2900), - [anon_sym_or] = ACTIONS(2900), - [sym_none] = ACTIONS(2900), - [sym_true] = ACTIONS(2900), - [sym_false] = ACTIONS(2900), - [sym_nil] = ACTIONS(2900), - [anon_sym_QMARK_DOT] = ACTIONS(2900), - [anon_sym_POUND_LBRACK] = ACTIONS(2900), - [anon_sym_if] = ACTIONS(2900), - [anon_sym_DOLLARif] = ACTIONS(2900), - [anon_sym_is] = ACTIONS(2900), - [anon_sym_BANGis] = ACTIONS(2900), - [anon_sym_in] = ACTIONS(2900), - [anon_sym_BANGin] = ACTIONS(2900), - [anon_sym_match] = ACTIONS(2900), - [anon_sym_select] = ACTIONS(2900), - [anon_sym_lock] = ACTIONS(2900), - [anon_sym_rlock] = ACTIONS(2900), - [anon_sym_unsafe] = ACTIONS(2900), - [anon_sym_sql] = ACTIONS(2900), - [sym_int_literal] = ACTIONS(2900), - [sym_float_literal] = ACTIONS(2900), - [sym_rune_literal] = ACTIONS(2900), - [sym_pseudo_compile_time_identifier] = ACTIONS(2900), - [anon_sym_shared] = ACTIONS(2900), - [anon_sym_map_LBRACK] = ACTIONS(2900), - [anon_sym_chan] = ACTIONS(2900), - [anon_sym_thread] = ACTIONS(2900), - [anon_sym_atomic] = ACTIONS(2900), - [anon_sym_assert] = ACTIONS(2900), - [anon_sym_defer] = ACTIONS(2900), - [anon_sym_goto] = ACTIONS(2900), - [anon_sym_break] = ACTIONS(2900), - [anon_sym_continue] = ACTIONS(2900), - [anon_sym_return] = ACTIONS(2900), - [anon_sym_DOLLARfor] = ACTIONS(2900), - [anon_sym_for] = ACTIONS(2900), - [anon_sym_POUND] = ACTIONS(2900), - [anon_sym_asm] = ACTIONS(2900), - [anon_sym_AT_LBRACK] = ACTIONS(2900), - [sym___double_quote] = ACTIONS(2900), - [sym___single_quote] = ACTIONS(2900), - [sym___c_double_quote] = ACTIONS(2900), - [sym___c_single_quote] = ACTIONS(2900), - [sym___r_double_quote] = ACTIONS(2900), - [sym___r_single_quote] = ACTIONS(2900), + [anon_sym_DOT] = ACTIONS(2710), + [anon_sym_as] = ACTIONS(2710), + [anon_sym_LBRACE] = ACTIONS(2710), + [anon_sym_COMMA] = ACTIONS(2710), + [anon_sym_const] = ACTIONS(2710), + [anon_sym_LPAREN] = ACTIONS(2710), + [anon_sym___global] = ACTIONS(2710), + [anon_sym_type] = ACTIONS(2710), + [anon_sym_PIPE] = ACTIONS(2710), + [anon_sym_fn] = ACTIONS(2710), + [anon_sym_PLUS] = ACTIONS(2710), + [anon_sym_DASH] = ACTIONS(2710), + [anon_sym_STAR] = ACTIONS(2710), + [anon_sym_SLASH] = ACTIONS(2710), + [anon_sym_PERCENT] = ACTIONS(2710), + [anon_sym_LT] = ACTIONS(2710), + [anon_sym_GT] = ACTIONS(2710), + [anon_sym_EQ_EQ] = ACTIONS(2710), + [anon_sym_BANG_EQ] = ACTIONS(2710), + [anon_sym_LT_EQ] = ACTIONS(2710), + [anon_sym_GT_EQ] = ACTIONS(2710), + [anon_sym_LBRACK] = ACTIONS(2708), + [anon_sym_struct] = ACTIONS(2710), + [anon_sym_union] = ACTIONS(2710), + [anon_sym_pub] = ACTIONS(2710), + [anon_sym_mut] = ACTIONS(2710), + [anon_sym_enum] = ACTIONS(2710), + [anon_sym_interface] = ACTIONS(2710), + [anon_sym_PLUS_PLUS] = ACTIONS(2710), + [anon_sym_DASH_DASH] = ACTIONS(2710), + [anon_sym_QMARK] = ACTIONS(2710), + [anon_sym_BANG] = ACTIONS(2710), + [anon_sym_go] = ACTIONS(2710), + [anon_sym_spawn] = ACTIONS(2710), + [anon_sym_json_DOTdecode] = ACTIONS(2710), + [anon_sym_LBRACK2] = ACTIONS(2710), + [anon_sym_TILDE] = ACTIONS(2710), + [anon_sym_CARET] = ACTIONS(2710), + [anon_sym_AMP] = ACTIONS(2710), + [anon_sym_LT_DASH] = ACTIONS(2710), + [anon_sym_LT_LT] = ACTIONS(2710), + [anon_sym_GT_GT] = ACTIONS(2710), + [anon_sym_GT_GT_GT] = ACTIONS(2710), + [anon_sym_AMP_CARET] = ACTIONS(2710), + [anon_sym_AMP_AMP] = ACTIONS(2710), + [anon_sym_PIPE_PIPE] = ACTIONS(2710), + [anon_sym_or] = ACTIONS(2710), + [sym_none] = ACTIONS(2710), + [sym_true] = ACTIONS(2710), + [sym_false] = ACTIONS(2710), + [sym_nil] = ACTIONS(2710), + [anon_sym_QMARK_DOT] = ACTIONS(2710), + [anon_sym_POUND_LBRACK] = ACTIONS(2710), + [anon_sym_if] = ACTIONS(2710), + [anon_sym_DOLLARif] = ACTIONS(2710), + [anon_sym_is] = ACTIONS(2710), + [anon_sym_BANGis] = ACTIONS(2710), + [anon_sym_in] = ACTIONS(2710), + [anon_sym_BANGin] = ACTIONS(2710), + [anon_sym_match] = ACTIONS(2710), + [anon_sym_select] = ACTIONS(2710), + [anon_sym_lock] = ACTIONS(2710), + [anon_sym_rlock] = ACTIONS(2710), + [anon_sym_unsafe] = ACTIONS(2710), + [anon_sym_sql] = ACTIONS(2710), + [sym_int_literal] = ACTIONS(2710), + [sym_float_literal] = ACTIONS(2710), + [sym_rune_literal] = ACTIONS(2710), + [sym_pseudo_compile_time_identifier] = ACTIONS(2710), + [anon_sym_shared] = ACTIONS(2710), + [anon_sym_map_LBRACK] = ACTIONS(2710), + [anon_sym_chan] = ACTIONS(2710), + [anon_sym_thread] = ACTIONS(2710), + [anon_sym_atomic] = ACTIONS(2710), + [anon_sym_assert] = ACTIONS(2710), + [anon_sym_defer] = ACTIONS(2710), + [anon_sym_goto] = ACTIONS(2710), + [anon_sym_break] = ACTIONS(2710), + [anon_sym_continue] = ACTIONS(2710), + [anon_sym_return] = ACTIONS(2710), + [anon_sym_DOLLARfor] = ACTIONS(2710), + [anon_sym_for] = ACTIONS(2710), + [anon_sym_POUND] = ACTIONS(2710), + [anon_sym_asm] = ACTIONS(2710), + [anon_sym_AT_LBRACK] = ACTIONS(2710), + [sym___double_quote] = ACTIONS(2710), + [sym___single_quote] = ACTIONS(2710), + [sym___c_double_quote] = ACTIONS(2710), + [sym___c_single_quote] = ACTIONS(2710), + [sym___r_double_quote] = ACTIONS(2710), + [sym___r_single_quote] = ACTIONS(2710), }, [1006] = { [sym_line_comment] = STATE(1006), [sym_block_comment] = STATE(1006), - [ts_builtin_sym_end] = ACTIONS(3052), - [sym_identifier] = ACTIONS(3054), - [anon_sym_LF] = ACTIONS(3054), - [anon_sym_CR] = ACTIONS(3054), - [anon_sym_CR_LF] = ACTIONS(3054), - [anon_sym_SLASH_SLASH] = ACTIONS(497), - [anon_sym_SLASH_STAR] = ACTIONS(499), - [anon_sym_DOT] = ACTIONS(3054), - [anon_sym_as] = ACTIONS(3054), - [anon_sym_LBRACE] = ACTIONS(3054), - [anon_sym_COMMA] = ACTIONS(3054), - [anon_sym_const] = ACTIONS(3054), - [anon_sym_LPAREN] = ACTIONS(3054), - [anon_sym___global] = ACTIONS(3054), - [anon_sym_type] = ACTIONS(3054), - [anon_sym_PIPE] = ACTIONS(3054), - [anon_sym_fn] = ACTIONS(3054), - [anon_sym_PLUS] = ACTIONS(3054), - [anon_sym_DASH] = ACTIONS(3054), - [anon_sym_STAR] = ACTIONS(3054), - [anon_sym_SLASH] = ACTIONS(3054), - [anon_sym_PERCENT] = ACTIONS(3054), - [anon_sym_LT] = ACTIONS(3054), - [anon_sym_GT] = ACTIONS(3054), - [anon_sym_EQ_EQ] = ACTIONS(3054), - [anon_sym_BANG_EQ] = ACTIONS(3054), - [anon_sym_LT_EQ] = ACTIONS(3054), - [anon_sym_GT_EQ] = ACTIONS(3054), - [anon_sym_LBRACK] = ACTIONS(3052), - [anon_sym_struct] = ACTIONS(3054), - [anon_sym_union] = ACTIONS(3054), - [anon_sym_pub] = ACTIONS(3054), - [anon_sym_mut] = ACTIONS(3054), - [anon_sym_enum] = ACTIONS(3054), - [anon_sym_interface] = ACTIONS(3054), - [anon_sym_PLUS_PLUS] = ACTIONS(3054), - [anon_sym_DASH_DASH] = ACTIONS(3054), - [anon_sym_QMARK] = ACTIONS(3054), - [anon_sym_BANG] = ACTIONS(3054), - [anon_sym_go] = ACTIONS(3054), - [anon_sym_spawn] = ACTIONS(3054), - [anon_sym_json_DOTdecode] = ACTIONS(3054), - [anon_sym_LBRACK2] = ACTIONS(3054), - [anon_sym_TILDE] = ACTIONS(3054), - [anon_sym_CARET] = ACTIONS(3054), - [anon_sym_AMP] = ACTIONS(3054), - [anon_sym_LT_DASH] = ACTIONS(3054), - [anon_sym_LT_LT] = ACTIONS(3054), - [anon_sym_GT_GT] = ACTIONS(3054), - [anon_sym_GT_GT_GT] = ACTIONS(3054), - [anon_sym_AMP_CARET] = ACTIONS(3054), - [anon_sym_AMP_AMP] = ACTIONS(3054), - [anon_sym_PIPE_PIPE] = ACTIONS(3054), - [anon_sym_or] = ACTIONS(3054), - [sym_none] = ACTIONS(3054), - [sym_true] = ACTIONS(3054), - [sym_false] = ACTIONS(3054), - [sym_nil] = ACTIONS(3054), - [anon_sym_QMARK_DOT] = ACTIONS(3054), - [anon_sym_POUND_LBRACK] = ACTIONS(3054), - [anon_sym_if] = ACTIONS(3054), - [anon_sym_DOLLARif] = ACTIONS(3054), - [anon_sym_is] = ACTIONS(3054), - [anon_sym_BANGis] = ACTIONS(3054), - [anon_sym_in] = ACTIONS(3054), - [anon_sym_BANGin] = ACTIONS(3054), - [anon_sym_match] = ACTIONS(3054), - [anon_sym_select] = ACTIONS(3054), - [anon_sym_lock] = ACTIONS(3054), - [anon_sym_rlock] = ACTIONS(3054), - [anon_sym_unsafe] = ACTIONS(3054), - [anon_sym_sql] = ACTIONS(3054), - [sym_int_literal] = ACTIONS(3054), - [sym_float_literal] = ACTIONS(3054), - [sym_rune_literal] = ACTIONS(3054), - [sym_pseudo_compile_time_identifier] = ACTIONS(3054), - [anon_sym_shared] = ACTIONS(3054), - [anon_sym_map_LBRACK] = ACTIONS(3054), - [anon_sym_chan] = ACTIONS(3054), - [anon_sym_thread] = ACTIONS(3054), - [anon_sym_atomic] = ACTIONS(3054), - [anon_sym_assert] = ACTIONS(3054), - [anon_sym_defer] = ACTIONS(3054), - [anon_sym_goto] = ACTIONS(3054), - [anon_sym_break] = ACTIONS(3054), - [anon_sym_continue] = ACTIONS(3054), - [anon_sym_return] = ACTIONS(3054), - [anon_sym_DOLLARfor] = ACTIONS(3054), - [anon_sym_for] = ACTIONS(3054), - [anon_sym_POUND] = ACTIONS(3054), - [anon_sym_asm] = ACTIONS(3054), - [anon_sym_AT_LBRACK] = ACTIONS(3054), - [sym___double_quote] = ACTIONS(3054), - [sym___single_quote] = ACTIONS(3054), - [sym___c_double_quote] = ACTIONS(3054), - [sym___c_single_quote] = ACTIONS(3054), - [sym___r_double_quote] = ACTIONS(3054), - [sym___r_single_quote] = ACTIONS(3054), - }, - [1007] = { - [sym_line_comment] = STATE(1007), - [sym_block_comment] = STATE(1007), - [ts_builtin_sym_end] = ACTIONS(2485), - [sym_identifier] = ACTIONS(2487), - [anon_sym_LF] = ACTIONS(2487), - [anon_sym_CR] = ACTIONS(2487), - [anon_sym_CR_LF] = ACTIONS(2487), + [ts_builtin_sym_end] = ACTIONS(2848), + [sym_identifier] = ACTIONS(2850), + [anon_sym_LF] = ACTIONS(2850), + [anon_sym_CR] = ACTIONS(2850), + [anon_sym_CR_LF] = ACTIONS(2850), [anon_sym_SLASH_SLASH] = ACTIONS(497), [anon_sym_SLASH_STAR] = ACTIONS(499), - [anon_sym_DOT] = ACTIONS(2487), - [anon_sym_as] = ACTIONS(2487), - [anon_sym_LBRACE] = ACTIONS(2487), - [anon_sym_COMMA] = ACTIONS(2487), - [anon_sym_const] = ACTIONS(2487), - [anon_sym_LPAREN] = ACTIONS(2487), - [anon_sym___global] = ACTIONS(2487), - [anon_sym_type] = ACTIONS(2487), - [anon_sym_PIPE] = ACTIONS(2487), - [anon_sym_fn] = ACTIONS(2487), - [anon_sym_PLUS] = ACTIONS(2487), - [anon_sym_DASH] = ACTIONS(2487), - [anon_sym_STAR] = ACTIONS(2487), - [anon_sym_SLASH] = ACTIONS(2487), - [anon_sym_PERCENT] = ACTIONS(2487), - [anon_sym_LT] = ACTIONS(2487), - [anon_sym_GT] = ACTIONS(2487), - [anon_sym_EQ_EQ] = ACTIONS(2487), - [anon_sym_BANG_EQ] = ACTIONS(2487), - [anon_sym_LT_EQ] = ACTIONS(2487), - [anon_sym_GT_EQ] = ACTIONS(2487), - [anon_sym_LBRACK] = ACTIONS(2485), - [anon_sym_struct] = ACTIONS(2487), - [anon_sym_union] = ACTIONS(2487), - [anon_sym_pub] = ACTIONS(2487), - [anon_sym_mut] = ACTIONS(2487), - [anon_sym_enum] = ACTIONS(2487), - [anon_sym_interface] = ACTIONS(2487), - [anon_sym_PLUS_PLUS] = ACTIONS(2487), - [anon_sym_DASH_DASH] = ACTIONS(2487), - [anon_sym_QMARK] = ACTIONS(2487), - [anon_sym_BANG] = ACTIONS(2487), - [anon_sym_go] = ACTIONS(2487), - [anon_sym_spawn] = ACTIONS(2487), - [anon_sym_json_DOTdecode] = ACTIONS(2487), - [anon_sym_LBRACK2] = ACTIONS(2487), - [anon_sym_TILDE] = ACTIONS(2487), - [anon_sym_CARET] = ACTIONS(2487), - [anon_sym_AMP] = ACTIONS(2487), - [anon_sym_LT_DASH] = ACTIONS(2487), - [anon_sym_LT_LT] = ACTIONS(2487), - [anon_sym_GT_GT] = ACTIONS(2487), - [anon_sym_GT_GT_GT] = ACTIONS(2487), - [anon_sym_AMP_CARET] = ACTIONS(2487), - [anon_sym_AMP_AMP] = ACTIONS(2487), - [anon_sym_PIPE_PIPE] = ACTIONS(2487), - [anon_sym_or] = ACTIONS(2487), - [sym_none] = ACTIONS(2487), - [sym_true] = ACTIONS(2487), - [sym_false] = ACTIONS(2487), - [sym_nil] = ACTIONS(2487), - [anon_sym_QMARK_DOT] = ACTIONS(2487), - [anon_sym_POUND_LBRACK] = ACTIONS(2487), - [anon_sym_if] = ACTIONS(2487), - [anon_sym_DOLLARif] = ACTIONS(2487), - [anon_sym_is] = ACTIONS(2487), - [anon_sym_BANGis] = ACTIONS(2487), - [anon_sym_in] = ACTIONS(2487), - [anon_sym_BANGin] = ACTIONS(2487), - [anon_sym_match] = ACTIONS(2487), - [anon_sym_select] = ACTIONS(2487), - [anon_sym_lock] = ACTIONS(2487), - [anon_sym_rlock] = ACTIONS(2487), - [anon_sym_unsafe] = ACTIONS(2487), - [anon_sym_sql] = ACTIONS(2487), - [sym_int_literal] = ACTIONS(2487), - [sym_float_literal] = ACTIONS(2487), - [sym_rune_literal] = ACTIONS(2487), - [sym_pseudo_compile_time_identifier] = ACTIONS(2487), - [anon_sym_shared] = ACTIONS(2487), - [anon_sym_map_LBRACK] = ACTIONS(2487), - [anon_sym_chan] = ACTIONS(2487), - [anon_sym_thread] = ACTIONS(2487), - [anon_sym_atomic] = ACTIONS(2487), - [anon_sym_assert] = ACTIONS(2487), - [anon_sym_defer] = ACTIONS(2487), - [anon_sym_goto] = ACTIONS(2487), - [anon_sym_break] = ACTIONS(2487), - [anon_sym_continue] = ACTIONS(2487), - [anon_sym_return] = ACTIONS(2487), - [anon_sym_DOLLARfor] = ACTIONS(2487), - [anon_sym_for] = ACTIONS(2487), - [anon_sym_POUND] = ACTIONS(2487), - [anon_sym_asm] = ACTIONS(2487), - [anon_sym_AT_LBRACK] = ACTIONS(2487), - [sym___double_quote] = ACTIONS(2487), - [sym___single_quote] = ACTIONS(2487), - [sym___c_double_quote] = ACTIONS(2487), - [sym___c_single_quote] = ACTIONS(2487), - [sym___r_double_quote] = ACTIONS(2487), - [sym___r_single_quote] = ACTIONS(2487), + [anon_sym_DOT] = ACTIONS(2850), + [anon_sym_as] = ACTIONS(2850), + [anon_sym_LBRACE] = ACTIONS(2850), + [anon_sym_COMMA] = ACTIONS(2850), + [anon_sym_const] = ACTIONS(2850), + [anon_sym_LPAREN] = ACTIONS(2850), + [anon_sym___global] = ACTIONS(2850), + [anon_sym_type] = ACTIONS(2850), + [anon_sym_PIPE] = ACTIONS(2850), + [anon_sym_fn] = ACTIONS(2850), + [anon_sym_PLUS] = ACTIONS(2850), + [anon_sym_DASH] = ACTIONS(2850), + [anon_sym_STAR] = ACTIONS(2850), + [anon_sym_SLASH] = ACTIONS(2850), + [anon_sym_PERCENT] = ACTIONS(2850), + [anon_sym_LT] = ACTIONS(2850), + [anon_sym_GT] = ACTIONS(2850), + [anon_sym_EQ_EQ] = ACTIONS(2850), + [anon_sym_BANG_EQ] = ACTIONS(2850), + [anon_sym_LT_EQ] = ACTIONS(2850), + [anon_sym_GT_EQ] = ACTIONS(2850), + [anon_sym_LBRACK] = ACTIONS(2848), + [anon_sym_struct] = ACTIONS(2850), + [anon_sym_union] = ACTIONS(2850), + [anon_sym_pub] = ACTIONS(2850), + [anon_sym_mut] = ACTIONS(2850), + [anon_sym_enum] = ACTIONS(2850), + [anon_sym_interface] = ACTIONS(2850), + [anon_sym_PLUS_PLUS] = ACTIONS(2850), + [anon_sym_DASH_DASH] = ACTIONS(2850), + [anon_sym_QMARK] = ACTIONS(2850), + [anon_sym_BANG] = ACTIONS(2850), + [anon_sym_go] = ACTIONS(2850), + [anon_sym_spawn] = ACTIONS(2850), + [anon_sym_json_DOTdecode] = ACTIONS(2850), + [anon_sym_LBRACK2] = ACTIONS(2850), + [anon_sym_TILDE] = ACTIONS(2850), + [anon_sym_CARET] = ACTIONS(2850), + [anon_sym_AMP] = ACTIONS(2850), + [anon_sym_LT_DASH] = ACTIONS(2850), + [anon_sym_LT_LT] = ACTIONS(2850), + [anon_sym_GT_GT] = ACTIONS(2850), + [anon_sym_GT_GT_GT] = ACTIONS(2850), + [anon_sym_AMP_CARET] = ACTIONS(2850), + [anon_sym_AMP_AMP] = ACTIONS(2850), + [anon_sym_PIPE_PIPE] = ACTIONS(2850), + [anon_sym_or] = ACTIONS(2850), + [sym_none] = ACTIONS(2850), + [sym_true] = ACTIONS(2850), + [sym_false] = ACTIONS(2850), + [sym_nil] = ACTIONS(2850), + [anon_sym_QMARK_DOT] = ACTIONS(2850), + [anon_sym_POUND_LBRACK] = ACTIONS(2850), + [anon_sym_if] = ACTIONS(2850), + [anon_sym_DOLLARif] = ACTIONS(2850), + [anon_sym_is] = ACTIONS(2850), + [anon_sym_BANGis] = ACTIONS(2850), + [anon_sym_in] = ACTIONS(2850), + [anon_sym_BANGin] = ACTIONS(2850), + [anon_sym_match] = ACTIONS(2850), + [anon_sym_select] = ACTIONS(2850), + [anon_sym_lock] = ACTIONS(2850), + [anon_sym_rlock] = ACTIONS(2850), + [anon_sym_unsafe] = ACTIONS(2850), + [anon_sym_sql] = ACTIONS(2850), + [sym_int_literal] = ACTIONS(2850), + [sym_float_literal] = ACTIONS(2850), + [sym_rune_literal] = ACTIONS(2850), + [sym_pseudo_compile_time_identifier] = ACTIONS(2850), + [anon_sym_shared] = ACTIONS(2850), + [anon_sym_map_LBRACK] = ACTIONS(2850), + [anon_sym_chan] = ACTIONS(2850), + [anon_sym_thread] = ACTIONS(2850), + [anon_sym_atomic] = ACTIONS(2850), + [anon_sym_assert] = ACTIONS(2850), + [anon_sym_defer] = ACTIONS(2850), + [anon_sym_goto] = ACTIONS(2850), + [anon_sym_break] = ACTIONS(2850), + [anon_sym_continue] = ACTIONS(2850), + [anon_sym_return] = ACTIONS(2850), + [anon_sym_DOLLARfor] = ACTIONS(2850), + [anon_sym_for] = ACTIONS(2850), + [anon_sym_POUND] = ACTIONS(2850), + [anon_sym_asm] = ACTIONS(2850), + [anon_sym_AT_LBRACK] = ACTIONS(2850), + [sym___double_quote] = ACTIONS(2850), + [sym___single_quote] = ACTIONS(2850), + [sym___c_double_quote] = ACTIONS(2850), + [sym___c_single_quote] = ACTIONS(2850), + [sym___r_double_quote] = ACTIONS(2850), + [sym___r_single_quote] = ACTIONS(2850), + }, + [1007] = { + [sym_line_comment] = STATE(1007), + [sym_block_comment] = STATE(1007), + [ts_builtin_sym_end] = ACTIONS(2830), + [sym_identifier] = ACTIONS(2832), + [anon_sym_LF] = ACTIONS(2832), + [anon_sym_CR] = ACTIONS(2832), + [anon_sym_CR_LF] = ACTIONS(2832), + [anon_sym_SLASH_SLASH] = ACTIONS(497), + [anon_sym_SLASH_STAR] = ACTIONS(499), + [anon_sym_DOT] = ACTIONS(2832), + [anon_sym_as] = ACTIONS(2832), + [anon_sym_LBRACE] = ACTIONS(2832), + [anon_sym_COMMA] = ACTIONS(2832), + [anon_sym_const] = ACTIONS(2832), + [anon_sym_LPAREN] = ACTIONS(2832), + [anon_sym___global] = ACTIONS(2832), + [anon_sym_type] = ACTIONS(2832), + [anon_sym_PIPE] = ACTIONS(2832), + [anon_sym_fn] = ACTIONS(2832), + [anon_sym_PLUS] = ACTIONS(2832), + [anon_sym_DASH] = ACTIONS(2832), + [anon_sym_STAR] = ACTIONS(2832), + [anon_sym_SLASH] = ACTIONS(2832), + [anon_sym_PERCENT] = ACTIONS(2832), + [anon_sym_LT] = ACTIONS(2832), + [anon_sym_GT] = ACTIONS(2832), + [anon_sym_EQ_EQ] = ACTIONS(2832), + [anon_sym_BANG_EQ] = ACTIONS(2832), + [anon_sym_LT_EQ] = ACTIONS(2832), + [anon_sym_GT_EQ] = ACTIONS(2832), + [anon_sym_LBRACK] = ACTIONS(2830), + [anon_sym_struct] = ACTIONS(2832), + [anon_sym_union] = ACTIONS(2832), + [anon_sym_pub] = ACTIONS(2832), + [anon_sym_mut] = ACTIONS(2832), + [anon_sym_enum] = ACTIONS(2832), + [anon_sym_interface] = ACTIONS(2832), + [anon_sym_PLUS_PLUS] = ACTIONS(2832), + [anon_sym_DASH_DASH] = ACTIONS(2832), + [anon_sym_QMARK] = ACTIONS(2832), + [anon_sym_BANG] = ACTIONS(2832), + [anon_sym_go] = ACTIONS(2832), + [anon_sym_spawn] = ACTIONS(2832), + [anon_sym_json_DOTdecode] = ACTIONS(2832), + [anon_sym_LBRACK2] = ACTIONS(2832), + [anon_sym_TILDE] = ACTIONS(2832), + [anon_sym_CARET] = ACTIONS(2832), + [anon_sym_AMP] = ACTIONS(2832), + [anon_sym_LT_DASH] = ACTIONS(2832), + [anon_sym_LT_LT] = ACTIONS(2832), + [anon_sym_GT_GT] = ACTIONS(2832), + [anon_sym_GT_GT_GT] = ACTIONS(2832), + [anon_sym_AMP_CARET] = ACTIONS(2832), + [anon_sym_AMP_AMP] = ACTIONS(2832), + [anon_sym_PIPE_PIPE] = ACTIONS(2832), + [anon_sym_or] = ACTIONS(2832), + [sym_none] = ACTIONS(2832), + [sym_true] = ACTIONS(2832), + [sym_false] = ACTIONS(2832), + [sym_nil] = ACTIONS(2832), + [anon_sym_QMARK_DOT] = ACTIONS(2832), + [anon_sym_POUND_LBRACK] = ACTIONS(2832), + [anon_sym_if] = ACTIONS(2832), + [anon_sym_DOLLARif] = ACTIONS(2832), + [anon_sym_is] = ACTIONS(2832), + [anon_sym_BANGis] = ACTIONS(2832), + [anon_sym_in] = ACTIONS(2832), + [anon_sym_BANGin] = ACTIONS(2832), + [anon_sym_match] = ACTIONS(2832), + [anon_sym_select] = ACTIONS(2832), + [anon_sym_lock] = ACTIONS(2832), + [anon_sym_rlock] = ACTIONS(2832), + [anon_sym_unsafe] = ACTIONS(2832), + [anon_sym_sql] = ACTIONS(2832), + [sym_int_literal] = ACTIONS(2832), + [sym_float_literal] = ACTIONS(2832), + [sym_rune_literal] = ACTIONS(2832), + [sym_pseudo_compile_time_identifier] = ACTIONS(2832), + [anon_sym_shared] = ACTIONS(2832), + [anon_sym_map_LBRACK] = ACTIONS(2832), + [anon_sym_chan] = ACTIONS(2832), + [anon_sym_thread] = ACTIONS(2832), + [anon_sym_atomic] = ACTIONS(2832), + [anon_sym_assert] = ACTIONS(2832), + [anon_sym_defer] = ACTIONS(2832), + [anon_sym_goto] = ACTIONS(2832), + [anon_sym_break] = ACTIONS(2832), + [anon_sym_continue] = ACTIONS(2832), + [anon_sym_return] = ACTIONS(2832), + [anon_sym_DOLLARfor] = ACTIONS(2832), + [anon_sym_for] = ACTIONS(2832), + [anon_sym_POUND] = ACTIONS(2832), + [anon_sym_asm] = ACTIONS(2832), + [anon_sym_AT_LBRACK] = ACTIONS(2832), + [sym___double_quote] = ACTIONS(2832), + [sym___single_quote] = ACTIONS(2832), + [sym___c_double_quote] = ACTIONS(2832), + [sym___c_single_quote] = ACTIONS(2832), + [sym___r_double_quote] = ACTIONS(2832), + [sym___r_single_quote] = ACTIONS(2832), }, [1008] = { [sym_line_comment] = STATE(1008), [sym_block_comment] = STATE(1008), - [ts_builtin_sym_end] = ACTIONS(3040), - [sym_identifier] = ACTIONS(3042), - [anon_sym_LF] = ACTIONS(3042), - [anon_sym_CR] = ACTIONS(3042), - [anon_sym_CR_LF] = ACTIONS(3042), + [ts_builtin_sym_end] = ACTIONS(2792), + [sym_identifier] = ACTIONS(2794), + [anon_sym_LF] = ACTIONS(2794), + [anon_sym_CR] = ACTIONS(2794), + [anon_sym_CR_LF] = ACTIONS(2794), [anon_sym_SLASH_SLASH] = ACTIONS(497), [anon_sym_SLASH_STAR] = ACTIONS(499), - [anon_sym_DOT] = ACTIONS(3042), - [anon_sym_as] = ACTIONS(3042), - [anon_sym_LBRACE] = ACTIONS(3042), - [anon_sym_COMMA] = ACTIONS(3042), - [anon_sym_const] = ACTIONS(3042), - [anon_sym_LPAREN] = ACTIONS(3042), - [anon_sym___global] = ACTIONS(3042), - [anon_sym_type] = ACTIONS(3042), - [anon_sym_PIPE] = ACTIONS(3042), - [anon_sym_fn] = ACTIONS(3042), - [anon_sym_PLUS] = ACTIONS(3042), - [anon_sym_DASH] = ACTIONS(3042), - [anon_sym_STAR] = ACTIONS(3042), - [anon_sym_SLASH] = ACTIONS(3042), - [anon_sym_PERCENT] = ACTIONS(3042), - [anon_sym_LT] = ACTIONS(3042), - [anon_sym_GT] = ACTIONS(3042), - [anon_sym_EQ_EQ] = ACTIONS(3042), - [anon_sym_BANG_EQ] = ACTIONS(3042), - [anon_sym_LT_EQ] = ACTIONS(3042), - [anon_sym_GT_EQ] = ACTIONS(3042), - [anon_sym_LBRACK] = ACTIONS(3040), - [anon_sym_struct] = ACTIONS(3042), - [anon_sym_union] = ACTIONS(3042), - [anon_sym_pub] = ACTIONS(3042), - [anon_sym_mut] = ACTIONS(3042), - [anon_sym_enum] = ACTIONS(3042), - [anon_sym_interface] = ACTIONS(3042), - [anon_sym_PLUS_PLUS] = ACTIONS(3042), - [anon_sym_DASH_DASH] = ACTIONS(3042), - [anon_sym_QMARK] = ACTIONS(3042), - [anon_sym_BANG] = ACTIONS(3042), - [anon_sym_go] = ACTIONS(3042), - [anon_sym_spawn] = ACTIONS(3042), - [anon_sym_json_DOTdecode] = ACTIONS(3042), - [anon_sym_LBRACK2] = ACTIONS(3042), - [anon_sym_TILDE] = ACTIONS(3042), - [anon_sym_CARET] = ACTIONS(3042), - [anon_sym_AMP] = ACTIONS(3042), - [anon_sym_LT_DASH] = ACTIONS(3042), - [anon_sym_LT_LT] = ACTIONS(3042), - [anon_sym_GT_GT] = ACTIONS(3042), - [anon_sym_GT_GT_GT] = ACTIONS(3042), - [anon_sym_AMP_CARET] = ACTIONS(3042), - [anon_sym_AMP_AMP] = ACTIONS(3042), - [anon_sym_PIPE_PIPE] = ACTIONS(3042), - [anon_sym_or] = ACTIONS(3042), - [sym_none] = ACTIONS(3042), - [sym_true] = ACTIONS(3042), - [sym_false] = ACTIONS(3042), - [sym_nil] = ACTIONS(3042), - [anon_sym_QMARK_DOT] = ACTIONS(3042), - [anon_sym_POUND_LBRACK] = ACTIONS(3042), - [anon_sym_if] = ACTIONS(3042), - [anon_sym_DOLLARif] = ACTIONS(3042), - [anon_sym_is] = ACTIONS(3042), - [anon_sym_BANGis] = ACTIONS(3042), - [anon_sym_in] = ACTIONS(3042), - [anon_sym_BANGin] = ACTIONS(3042), - [anon_sym_match] = ACTIONS(3042), - [anon_sym_select] = ACTIONS(3042), - [anon_sym_lock] = ACTIONS(3042), - [anon_sym_rlock] = ACTIONS(3042), - [anon_sym_unsafe] = ACTIONS(3042), - [anon_sym_sql] = ACTIONS(3042), - [sym_int_literal] = ACTIONS(3042), - [sym_float_literal] = ACTIONS(3042), - [sym_rune_literal] = ACTIONS(3042), - [sym_pseudo_compile_time_identifier] = ACTIONS(3042), - [anon_sym_shared] = ACTIONS(3042), - [anon_sym_map_LBRACK] = ACTIONS(3042), - [anon_sym_chan] = ACTIONS(3042), - [anon_sym_thread] = ACTIONS(3042), - [anon_sym_atomic] = ACTIONS(3042), - [anon_sym_assert] = ACTIONS(3042), - [anon_sym_defer] = ACTIONS(3042), - [anon_sym_goto] = ACTIONS(3042), - [anon_sym_break] = ACTIONS(3042), - [anon_sym_continue] = ACTIONS(3042), - [anon_sym_return] = ACTIONS(3042), - [anon_sym_DOLLARfor] = ACTIONS(3042), - [anon_sym_for] = ACTIONS(3042), - [anon_sym_POUND] = ACTIONS(3042), - [anon_sym_asm] = ACTIONS(3042), - [anon_sym_AT_LBRACK] = ACTIONS(3042), - [sym___double_quote] = ACTIONS(3042), - [sym___single_quote] = ACTIONS(3042), - [sym___c_double_quote] = ACTIONS(3042), - [sym___c_single_quote] = ACTIONS(3042), - [sym___r_double_quote] = ACTIONS(3042), - [sym___r_single_quote] = ACTIONS(3042), + [anon_sym_DOT] = ACTIONS(2794), + [anon_sym_as] = ACTIONS(2794), + [anon_sym_LBRACE] = ACTIONS(2794), + [anon_sym_COMMA] = ACTIONS(2794), + [anon_sym_const] = ACTIONS(2794), + [anon_sym_LPAREN] = ACTIONS(2794), + [anon_sym___global] = ACTIONS(2794), + [anon_sym_type] = ACTIONS(2794), + [anon_sym_PIPE] = ACTIONS(2794), + [anon_sym_fn] = ACTIONS(2794), + [anon_sym_PLUS] = ACTIONS(2794), + [anon_sym_DASH] = ACTIONS(2794), + [anon_sym_STAR] = ACTIONS(2794), + [anon_sym_SLASH] = ACTIONS(2794), + [anon_sym_PERCENT] = ACTIONS(2794), + [anon_sym_LT] = ACTIONS(2794), + [anon_sym_GT] = ACTIONS(2794), + [anon_sym_EQ_EQ] = ACTIONS(2794), + [anon_sym_BANG_EQ] = ACTIONS(2794), + [anon_sym_LT_EQ] = ACTIONS(2794), + [anon_sym_GT_EQ] = ACTIONS(2794), + [anon_sym_LBRACK] = ACTIONS(2792), + [anon_sym_struct] = ACTIONS(2794), + [anon_sym_union] = ACTIONS(2794), + [anon_sym_pub] = ACTIONS(2794), + [anon_sym_mut] = ACTIONS(2794), + [anon_sym_enum] = ACTIONS(2794), + [anon_sym_interface] = ACTIONS(2794), + [anon_sym_PLUS_PLUS] = ACTIONS(2794), + [anon_sym_DASH_DASH] = ACTIONS(2794), + [anon_sym_QMARK] = ACTIONS(2794), + [anon_sym_BANG] = ACTIONS(2794), + [anon_sym_go] = ACTIONS(2794), + [anon_sym_spawn] = ACTIONS(2794), + [anon_sym_json_DOTdecode] = ACTIONS(2794), + [anon_sym_LBRACK2] = ACTIONS(2794), + [anon_sym_TILDE] = ACTIONS(2794), + [anon_sym_CARET] = ACTIONS(2794), + [anon_sym_AMP] = ACTIONS(2794), + [anon_sym_LT_DASH] = ACTIONS(2794), + [anon_sym_LT_LT] = ACTIONS(2794), + [anon_sym_GT_GT] = ACTIONS(2794), + [anon_sym_GT_GT_GT] = ACTIONS(2794), + [anon_sym_AMP_CARET] = ACTIONS(2794), + [anon_sym_AMP_AMP] = ACTIONS(2794), + [anon_sym_PIPE_PIPE] = ACTIONS(2794), + [anon_sym_or] = ACTIONS(2794), + [sym_none] = ACTIONS(2794), + [sym_true] = ACTIONS(2794), + [sym_false] = ACTIONS(2794), + [sym_nil] = ACTIONS(2794), + [anon_sym_QMARK_DOT] = ACTIONS(2794), + [anon_sym_POUND_LBRACK] = ACTIONS(2794), + [anon_sym_if] = ACTIONS(2794), + [anon_sym_DOLLARif] = ACTIONS(2794), + [anon_sym_is] = ACTIONS(2794), + [anon_sym_BANGis] = ACTIONS(2794), + [anon_sym_in] = ACTIONS(2794), + [anon_sym_BANGin] = ACTIONS(2794), + [anon_sym_match] = ACTIONS(2794), + [anon_sym_select] = ACTIONS(2794), + [anon_sym_lock] = ACTIONS(2794), + [anon_sym_rlock] = ACTIONS(2794), + [anon_sym_unsafe] = ACTIONS(2794), + [anon_sym_sql] = ACTIONS(2794), + [sym_int_literal] = ACTIONS(2794), + [sym_float_literal] = ACTIONS(2794), + [sym_rune_literal] = ACTIONS(2794), + [sym_pseudo_compile_time_identifier] = ACTIONS(2794), + [anon_sym_shared] = ACTIONS(2794), + [anon_sym_map_LBRACK] = ACTIONS(2794), + [anon_sym_chan] = ACTIONS(2794), + [anon_sym_thread] = ACTIONS(2794), + [anon_sym_atomic] = ACTIONS(2794), + [anon_sym_assert] = ACTIONS(2794), + [anon_sym_defer] = ACTIONS(2794), + [anon_sym_goto] = ACTIONS(2794), + [anon_sym_break] = ACTIONS(2794), + [anon_sym_continue] = ACTIONS(2794), + [anon_sym_return] = ACTIONS(2794), + [anon_sym_DOLLARfor] = ACTIONS(2794), + [anon_sym_for] = ACTIONS(2794), + [anon_sym_POUND] = ACTIONS(2794), + [anon_sym_asm] = ACTIONS(2794), + [anon_sym_AT_LBRACK] = ACTIONS(2794), + [sym___double_quote] = ACTIONS(2794), + [sym___single_quote] = ACTIONS(2794), + [sym___c_double_quote] = ACTIONS(2794), + [sym___c_single_quote] = ACTIONS(2794), + [sym___r_double_quote] = ACTIONS(2794), + [sym___r_single_quote] = ACTIONS(2794), }, [1009] = { [sym_line_comment] = STATE(1009), [sym_block_comment] = STATE(1009), - [ts_builtin_sym_end] = ACTIONS(2890), - [sym_identifier] = ACTIONS(2892), - [anon_sym_LF] = ACTIONS(2892), - [anon_sym_CR] = ACTIONS(2892), - [anon_sym_CR_LF] = ACTIONS(2892), + [ts_builtin_sym_end] = ACTIONS(2540), + [sym_identifier] = ACTIONS(2542), + [anon_sym_LF] = ACTIONS(2542), + [anon_sym_CR] = ACTIONS(2542), + [anon_sym_CR_LF] = ACTIONS(2542), [anon_sym_SLASH_SLASH] = ACTIONS(497), [anon_sym_SLASH_STAR] = ACTIONS(499), - [anon_sym_DOT] = ACTIONS(2892), - [anon_sym_as] = ACTIONS(2892), - [anon_sym_LBRACE] = ACTIONS(2892), - [anon_sym_COMMA] = ACTIONS(2892), - [anon_sym_const] = ACTIONS(2892), - [anon_sym_LPAREN] = ACTIONS(2892), - [anon_sym___global] = ACTIONS(2892), - [anon_sym_type] = ACTIONS(2892), - [anon_sym_PIPE] = ACTIONS(2892), - [anon_sym_fn] = ACTIONS(2892), - [anon_sym_PLUS] = ACTIONS(2892), - [anon_sym_DASH] = ACTIONS(2892), - [anon_sym_STAR] = ACTIONS(2892), - [anon_sym_SLASH] = ACTIONS(2892), - [anon_sym_PERCENT] = ACTIONS(2892), - [anon_sym_LT] = ACTIONS(2892), - [anon_sym_GT] = ACTIONS(2892), - [anon_sym_EQ_EQ] = ACTIONS(2892), - [anon_sym_BANG_EQ] = ACTIONS(2892), - [anon_sym_LT_EQ] = ACTIONS(2892), - [anon_sym_GT_EQ] = ACTIONS(2892), - [anon_sym_LBRACK] = ACTIONS(2890), - [anon_sym_struct] = ACTIONS(2892), - [anon_sym_union] = ACTIONS(2892), - [anon_sym_pub] = ACTIONS(2892), - [anon_sym_mut] = ACTIONS(2892), - [anon_sym_enum] = ACTIONS(2892), - [anon_sym_interface] = ACTIONS(2892), - [anon_sym_PLUS_PLUS] = ACTIONS(2892), - [anon_sym_DASH_DASH] = ACTIONS(2892), - [anon_sym_QMARK] = ACTIONS(2892), - [anon_sym_BANG] = ACTIONS(2892), - [anon_sym_go] = ACTIONS(2892), - [anon_sym_spawn] = ACTIONS(2892), - [anon_sym_json_DOTdecode] = ACTIONS(2892), - [anon_sym_LBRACK2] = ACTIONS(2892), - [anon_sym_TILDE] = ACTIONS(2892), - [anon_sym_CARET] = ACTIONS(2892), - [anon_sym_AMP] = ACTIONS(2892), - [anon_sym_LT_DASH] = ACTIONS(2892), - [anon_sym_LT_LT] = ACTIONS(2892), - [anon_sym_GT_GT] = ACTIONS(2892), - [anon_sym_GT_GT_GT] = ACTIONS(2892), - [anon_sym_AMP_CARET] = ACTIONS(2892), - [anon_sym_AMP_AMP] = ACTIONS(2892), - [anon_sym_PIPE_PIPE] = ACTIONS(2892), - [anon_sym_or] = ACTIONS(2892), - [sym_none] = ACTIONS(2892), - [sym_true] = ACTIONS(2892), - [sym_false] = ACTIONS(2892), - [sym_nil] = ACTIONS(2892), - [anon_sym_QMARK_DOT] = ACTIONS(2892), - [anon_sym_POUND_LBRACK] = ACTIONS(2892), - [anon_sym_if] = ACTIONS(2892), - [anon_sym_DOLLARif] = ACTIONS(2892), - [anon_sym_is] = ACTIONS(2892), - [anon_sym_BANGis] = ACTIONS(2892), - [anon_sym_in] = ACTIONS(2892), - [anon_sym_BANGin] = ACTIONS(2892), - [anon_sym_match] = ACTIONS(2892), - [anon_sym_select] = ACTIONS(2892), - [anon_sym_lock] = ACTIONS(2892), - [anon_sym_rlock] = ACTIONS(2892), - [anon_sym_unsafe] = ACTIONS(2892), - [anon_sym_sql] = ACTIONS(2892), - [sym_int_literal] = ACTIONS(2892), - [sym_float_literal] = ACTIONS(2892), - [sym_rune_literal] = ACTIONS(2892), - [sym_pseudo_compile_time_identifier] = ACTIONS(2892), - [anon_sym_shared] = ACTIONS(2892), - [anon_sym_map_LBRACK] = ACTIONS(2892), - [anon_sym_chan] = ACTIONS(2892), - [anon_sym_thread] = ACTIONS(2892), - [anon_sym_atomic] = ACTIONS(2892), - [anon_sym_assert] = ACTIONS(2892), - [anon_sym_defer] = ACTIONS(2892), - [anon_sym_goto] = ACTIONS(2892), - [anon_sym_break] = ACTIONS(2892), - [anon_sym_continue] = ACTIONS(2892), - [anon_sym_return] = ACTIONS(2892), - [anon_sym_DOLLARfor] = ACTIONS(2892), - [anon_sym_for] = ACTIONS(2892), - [anon_sym_POUND] = ACTIONS(2892), - [anon_sym_asm] = ACTIONS(2892), - [anon_sym_AT_LBRACK] = ACTIONS(2892), - [sym___double_quote] = ACTIONS(2892), - [sym___single_quote] = ACTIONS(2892), - [sym___c_double_quote] = ACTIONS(2892), - [sym___c_single_quote] = ACTIONS(2892), - [sym___r_double_quote] = ACTIONS(2892), - [sym___r_single_quote] = ACTIONS(2892), + [anon_sym_DOT] = ACTIONS(2542), + [anon_sym_as] = ACTIONS(2542), + [anon_sym_LBRACE] = ACTIONS(2542), + [anon_sym_COMMA] = ACTIONS(2542), + [anon_sym_const] = ACTIONS(2542), + [anon_sym_LPAREN] = ACTIONS(2542), + [anon_sym___global] = ACTIONS(2542), + [anon_sym_type] = ACTIONS(2542), + [anon_sym_PIPE] = ACTIONS(2542), + [anon_sym_fn] = ACTIONS(2542), + [anon_sym_PLUS] = ACTIONS(2542), + [anon_sym_DASH] = ACTIONS(2542), + [anon_sym_STAR] = ACTIONS(2542), + [anon_sym_SLASH] = ACTIONS(2542), + [anon_sym_PERCENT] = ACTIONS(2542), + [anon_sym_LT] = ACTIONS(2542), + [anon_sym_GT] = ACTIONS(2542), + [anon_sym_EQ_EQ] = ACTIONS(2542), + [anon_sym_BANG_EQ] = ACTIONS(2542), + [anon_sym_LT_EQ] = ACTIONS(2542), + [anon_sym_GT_EQ] = ACTIONS(2542), + [anon_sym_LBRACK] = ACTIONS(2540), + [anon_sym_struct] = ACTIONS(2542), + [anon_sym_union] = ACTIONS(2542), + [anon_sym_pub] = ACTIONS(2542), + [anon_sym_mut] = ACTIONS(2542), + [anon_sym_enum] = ACTIONS(2542), + [anon_sym_interface] = ACTIONS(2542), + [anon_sym_PLUS_PLUS] = ACTIONS(2542), + [anon_sym_DASH_DASH] = ACTIONS(2542), + [anon_sym_QMARK] = ACTIONS(2542), + [anon_sym_BANG] = ACTIONS(3600), + [anon_sym_go] = ACTIONS(2542), + [anon_sym_spawn] = ACTIONS(2542), + [anon_sym_json_DOTdecode] = ACTIONS(2542), + [anon_sym_LBRACK2] = ACTIONS(2542), + [anon_sym_TILDE] = ACTIONS(2542), + [anon_sym_CARET] = ACTIONS(2542), + [anon_sym_AMP] = ACTIONS(2542), + [anon_sym_LT_DASH] = ACTIONS(2542), + [anon_sym_LT_LT] = ACTIONS(2542), + [anon_sym_GT_GT] = ACTIONS(2542), + [anon_sym_GT_GT_GT] = ACTIONS(2542), + [anon_sym_AMP_CARET] = ACTIONS(2542), + [anon_sym_AMP_AMP] = ACTIONS(2542), + [anon_sym_PIPE_PIPE] = ACTIONS(2542), + [anon_sym_or] = ACTIONS(2542), + [sym_none] = ACTIONS(2542), + [sym_true] = ACTIONS(2542), + [sym_false] = ACTIONS(2542), + [sym_nil] = ACTIONS(2542), + [anon_sym_QMARK_DOT] = ACTIONS(2542), + [anon_sym_POUND_LBRACK] = ACTIONS(2542), + [anon_sym_if] = ACTIONS(2542), + [anon_sym_DOLLARif] = ACTIONS(2542), + [anon_sym_is] = ACTIONS(2542), + [anon_sym_BANGis] = ACTIONS(2542), + [anon_sym_in] = ACTIONS(2542), + [anon_sym_BANGin] = ACTIONS(2542), + [anon_sym_match] = ACTIONS(2542), + [anon_sym_select] = ACTIONS(2542), + [anon_sym_lock] = ACTIONS(2542), + [anon_sym_rlock] = ACTIONS(2542), + [anon_sym_unsafe] = ACTIONS(2542), + [anon_sym_sql] = ACTIONS(2542), + [sym_int_literal] = ACTIONS(2542), + [sym_float_literal] = ACTIONS(2542), + [sym_rune_literal] = ACTIONS(2542), + [sym_pseudo_compile_time_identifier] = ACTIONS(2542), + [anon_sym_shared] = ACTIONS(2542), + [anon_sym_map_LBRACK] = ACTIONS(2542), + [anon_sym_chan] = ACTIONS(2542), + [anon_sym_thread] = ACTIONS(2542), + [anon_sym_atomic] = ACTIONS(2542), + [anon_sym_assert] = ACTIONS(2542), + [anon_sym_defer] = ACTIONS(2542), + [anon_sym_goto] = ACTIONS(2542), + [anon_sym_break] = ACTIONS(2542), + [anon_sym_continue] = ACTIONS(2542), + [anon_sym_return] = ACTIONS(2542), + [anon_sym_DOLLARfor] = ACTIONS(2542), + [anon_sym_for] = ACTIONS(2542), + [anon_sym_POUND] = ACTIONS(2542), + [anon_sym_asm] = ACTIONS(2542), + [anon_sym_AT_LBRACK] = ACTIONS(2542), + [sym___double_quote] = ACTIONS(2542), + [sym___single_quote] = ACTIONS(2542), + [sym___c_double_quote] = ACTIONS(2542), + [sym___c_single_quote] = ACTIONS(2542), + [sym___r_double_quote] = ACTIONS(2542), + [sym___r_single_quote] = ACTIONS(2542), }, [1010] = { [sym_line_comment] = STATE(1010), [sym_block_comment] = STATE(1010), - [ts_builtin_sym_end] = ACTIONS(2876), - [sym_identifier] = ACTIONS(2878), - [anon_sym_LF] = ACTIONS(2878), - [anon_sym_CR] = ACTIONS(2878), - [anon_sym_CR_LF] = ACTIONS(2878), - [anon_sym_SLASH_SLASH] = ACTIONS(497), - [anon_sym_SLASH_STAR] = ACTIONS(499), - [anon_sym_DOT] = ACTIONS(2878), - [anon_sym_as] = ACTIONS(2878), - [anon_sym_LBRACE] = ACTIONS(2878), - [anon_sym_COMMA] = ACTIONS(2878), - [anon_sym_const] = ACTIONS(2878), - [anon_sym_LPAREN] = ACTIONS(2878), - [anon_sym___global] = ACTIONS(2878), - [anon_sym_type] = ACTIONS(2878), - [anon_sym_PIPE] = ACTIONS(2878), - [anon_sym_fn] = ACTIONS(2878), - [anon_sym_PLUS] = ACTIONS(2878), - [anon_sym_DASH] = ACTIONS(2878), - [anon_sym_STAR] = ACTIONS(2878), - [anon_sym_SLASH] = ACTIONS(2878), - [anon_sym_PERCENT] = ACTIONS(2878), - [anon_sym_LT] = ACTIONS(2878), - [anon_sym_GT] = ACTIONS(2878), - [anon_sym_EQ_EQ] = ACTIONS(2878), - [anon_sym_BANG_EQ] = ACTIONS(2878), - [anon_sym_LT_EQ] = ACTIONS(2878), - [anon_sym_GT_EQ] = ACTIONS(2878), - [anon_sym_LBRACK] = ACTIONS(2876), - [anon_sym_struct] = ACTIONS(2878), - [anon_sym_union] = ACTIONS(2878), - [anon_sym_pub] = ACTIONS(2878), - [anon_sym_mut] = ACTIONS(2878), - [anon_sym_enum] = ACTIONS(2878), - [anon_sym_interface] = ACTIONS(2878), - [anon_sym_PLUS_PLUS] = ACTIONS(2878), - [anon_sym_DASH_DASH] = ACTIONS(2878), - [anon_sym_QMARK] = ACTIONS(2878), - [anon_sym_BANG] = ACTIONS(2878), - [anon_sym_go] = ACTIONS(2878), - [anon_sym_spawn] = ACTIONS(2878), - [anon_sym_json_DOTdecode] = ACTIONS(2878), - [anon_sym_LBRACK2] = ACTIONS(2878), - [anon_sym_TILDE] = ACTIONS(2878), - [anon_sym_CARET] = ACTIONS(2878), - [anon_sym_AMP] = ACTIONS(2878), - [anon_sym_LT_DASH] = ACTIONS(2878), - [anon_sym_LT_LT] = ACTIONS(2878), - [anon_sym_GT_GT] = ACTIONS(2878), - [anon_sym_GT_GT_GT] = ACTIONS(2878), - [anon_sym_AMP_CARET] = ACTIONS(2878), - [anon_sym_AMP_AMP] = ACTIONS(2878), - [anon_sym_PIPE_PIPE] = ACTIONS(2878), - [anon_sym_or] = ACTIONS(2878), - [sym_none] = ACTIONS(2878), - [sym_true] = ACTIONS(2878), - [sym_false] = ACTIONS(2878), - [sym_nil] = ACTIONS(2878), - [anon_sym_QMARK_DOT] = ACTIONS(2878), - [anon_sym_POUND_LBRACK] = ACTIONS(2878), - [anon_sym_if] = ACTIONS(2878), - [anon_sym_DOLLARif] = ACTIONS(2878), - [anon_sym_is] = ACTIONS(2878), - [anon_sym_BANGis] = ACTIONS(2878), - [anon_sym_in] = ACTIONS(2878), - [anon_sym_BANGin] = ACTIONS(2878), - [anon_sym_match] = ACTIONS(2878), - [anon_sym_select] = ACTIONS(2878), - [anon_sym_lock] = ACTIONS(2878), - [anon_sym_rlock] = ACTIONS(2878), - [anon_sym_unsafe] = ACTIONS(2878), - [anon_sym_sql] = ACTIONS(2878), - [sym_int_literal] = ACTIONS(2878), - [sym_float_literal] = ACTIONS(2878), - [sym_rune_literal] = ACTIONS(2878), - [sym_pseudo_compile_time_identifier] = ACTIONS(2878), - [anon_sym_shared] = ACTIONS(2878), - [anon_sym_map_LBRACK] = ACTIONS(2878), - [anon_sym_chan] = ACTIONS(2878), - [anon_sym_thread] = ACTIONS(2878), - [anon_sym_atomic] = ACTIONS(2878), - [anon_sym_assert] = ACTIONS(2878), - [anon_sym_defer] = ACTIONS(2878), - [anon_sym_goto] = ACTIONS(2878), - [anon_sym_break] = ACTIONS(2878), - [anon_sym_continue] = ACTIONS(2878), - [anon_sym_return] = ACTIONS(2878), - [anon_sym_DOLLARfor] = ACTIONS(2878), - [anon_sym_for] = ACTIONS(2878), - [anon_sym_POUND] = ACTIONS(2878), - [anon_sym_asm] = ACTIONS(2878), - [anon_sym_AT_LBRACK] = ACTIONS(2878), - [sym___double_quote] = ACTIONS(2878), - [sym___single_quote] = ACTIONS(2878), - [sym___c_double_quote] = ACTIONS(2878), - [sym___c_single_quote] = ACTIONS(2878), - [sym___r_double_quote] = ACTIONS(2878), - [sym___r_single_quote] = ACTIONS(2878), - }, - [1011] = { - [sym_line_comment] = STATE(1011), - [sym_block_comment] = STATE(1011), - [ts_builtin_sym_end] = ACTIONS(2814), - [sym_identifier] = ACTIONS(2816), - [anon_sym_LF] = ACTIONS(2816), - [anon_sym_CR] = ACTIONS(2816), - [anon_sym_CR_LF] = ACTIONS(2816), - [anon_sym_SLASH_SLASH] = ACTIONS(497), - [anon_sym_SLASH_STAR] = ACTIONS(499), - [anon_sym_DOT] = ACTIONS(2816), - [anon_sym_as] = ACTIONS(2816), - [anon_sym_LBRACE] = ACTIONS(2816), - [anon_sym_COMMA] = ACTIONS(2816), - [anon_sym_const] = ACTIONS(2816), - [anon_sym_LPAREN] = ACTIONS(2816), - [anon_sym___global] = ACTIONS(2816), - [anon_sym_type] = ACTIONS(2816), - [anon_sym_PIPE] = ACTIONS(2816), - [anon_sym_fn] = ACTIONS(2816), - [anon_sym_PLUS] = ACTIONS(2816), - [anon_sym_DASH] = ACTIONS(2816), - [anon_sym_STAR] = ACTIONS(2816), - [anon_sym_SLASH] = ACTIONS(2816), - [anon_sym_PERCENT] = ACTIONS(2816), - [anon_sym_LT] = ACTIONS(2816), - [anon_sym_GT] = ACTIONS(2816), - [anon_sym_EQ_EQ] = ACTIONS(2816), - [anon_sym_BANG_EQ] = ACTIONS(2816), - [anon_sym_LT_EQ] = ACTIONS(2816), - [anon_sym_GT_EQ] = ACTIONS(2816), - [anon_sym_LBRACK] = ACTIONS(2814), - [anon_sym_struct] = ACTIONS(2816), - [anon_sym_union] = ACTIONS(2816), - [anon_sym_pub] = ACTIONS(2816), - [anon_sym_mut] = ACTIONS(2816), - [anon_sym_enum] = ACTIONS(2816), - [anon_sym_interface] = ACTIONS(2816), - [anon_sym_PLUS_PLUS] = ACTIONS(2816), - [anon_sym_DASH_DASH] = ACTIONS(2816), - [anon_sym_QMARK] = ACTIONS(2816), - [anon_sym_BANG] = ACTIONS(2816), - [anon_sym_go] = ACTIONS(2816), - [anon_sym_spawn] = ACTIONS(2816), - [anon_sym_json_DOTdecode] = ACTIONS(2816), - [anon_sym_LBRACK2] = ACTIONS(2816), - [anon_sym_TILDE] = ACTIONS(2816), - [anon_sym_CARET] = ACTIONS(2816), - [anon_sym_AMP] = ACTIONS(2816), - [anon_sym_LT_DASH] = ACTIONS(2816), - [anon_sym_LT_LT] = ACTIONS(2816), - [anon_sym_GT_GT] = ACTIONS(2816), - [anon_sym_GT_GT_GT] = ACTIONS(2816), - [anon_sym_AMP_CARET] = ACTIONS(2816), - [anon_sym_AMP_AMP] = ACTIONS(2816), - [anon_sym_PIPE_PIPE] = ACTIONS(2816), - [anon_sym_or] = ACTIONS(2816), - [sym_none] = ACTIONS(2816), - [sym_true] = ACTIONS(2816), - [sym_false] = ACTIONS(2816), - [sym_nil] = ACTIONS(2816), - [anon_sym_QMARK_DOT] = ACTIONS(2816), - [anon_sym_POUND_LBRACK] = ACTIONS(2816), - [anon_sym_if] = ACTIONS(2816), - [anon_sym_DOLLARif] = ACTIONS(2816), - [anon_sym_is] = ACTIONS(2816), - [anon_sym_BANGis] = ACTIONS(2816), - [anon_sym_in] = ACTIONS(2816), - [anon_sym_BANGin] = ACTIONS(2816), - [anon_sym_match] = ACTIONS(2816), - [anon_sym_select] = ACTIONS(2816), - [anon_sym_lock] = ACTIONS(2816), - [anon_sym_rlock] = ACTIONS(2816), - [anon_sym_unsafe] = ACTIONS(2816), - [anon_sym_sql] = ACTIONS(2816), - [sym_int_literal] = ACTIONS(2816), - [sym_float_literal] = ACTIONS(2816), - [sym_rune_literal] = ACTIONS(2816), - [sym_pseudo_compile_time_identifier] = ACTIONS(2816), - [anon_sym_shared] = ACTIONS(2816), - [anon_sym_map_LBRACK] = ACTIONS(2816), - [anon_sym_chan] = ACTIONS(2816), - [anon_sym_thread] = ACTIONS(2816), - [anon_sym_atomic] = ACTIONS(2816), - [anon_sym_assert] = ACTIONS(2816), - [anon_sym_defer] = ACTIONS(2816), - [anon_sym_goto] = ACTIONS(2816), - [anon_sym_break] = ACTIONS(2816), - [anon_sym_continue] = ACTIONS(2816), - [anon_sym_return] = ACTIONS(2816), - [anon_sym_DOLLARfor] = ACTIONS(2816), - [anon_sym_for] = ACTIONS(2816), - [anon_sym_POUND] = ACTIONS(2816), - [anon_sym_asm] = ACTIONS(2816), - [anon_sym_AT_LBRACK] = ACTIONS(2816), - [sym___double_quote] = ACTIONS(2816), - [sym___single_quote] = ACTIONS(2816), - [sym___c_double_quote] = ACTIONS(2816), - [sym___c_single_quote] = ACTIONS(2816), - [sym___r_double_quote] = ACTIONS(2816), - [sym___r_single_quote] = ACTIONS(2816), - }, - [1012] = { - [sym_line_comment] = STATE(1012), - [sym_block_comment] = STATE(1012), - [ts_builtin_sym_end] = ACTIONS(2808), - [sym_identifier] = ACTIONS(2810), - [anon_sym_LF] = ACTIONS(2810), - [anon_sym_CR] = ACTIONS(2810), - [anon_sym_CR_LF] = ACTIONS(2810), - [anon_sym_SLASH_SLASH] = ACTIONS(497), - [anon_sym_SLASH_STAR] = ACTIONS(499), - [anon_sym_DOT] = ACTIONS(2810), - [anon_sym_as] = ACTIONS(2810), - [anon_sym_LBRACE] = ACTIONS(2810), - [anon_sym_COMMA] = ACTIONS(2810), - [anon_sym_const] = ACTIONS(2810), - [anon_sym_LPAREN] = ACTIONS(2810), - [anon_sym___global] = ACTIONS(2810), - [anon_sym_type] = ACTIONS(2810), - [anon_sym_PIPE] = ACTIONS(2810), - [anon_sym_fn] = ACTIONS(2810), - [anon_sym_PLUS] = ACTIONS(2810), - [anon_sym_DASH] = ACTIONS(2810), - [anon_sym_STAR] = ACTIONS(2810), - [anon_sym_SLASH] = ACTIONS(2810), - [anon_sym_PERCENT] = ACTIONS(2810), - [anon_sym_LT] = ACTIONS(2810), - [anon_sym_GT] = ACTIONS(2810), - [anon_sym_EQ_EQ] = ACTIONS(2810), - [anon_sym_BANG_EQ] = ACTIONS(2810), - [anon_sym_LT_EQ] = ACTIONS(2810), - [anon_sym_GT_EQ] = ACTIONS(2810), - [anon_sym_LBRACK] = ACTIONS(2808), - [anon_sym_struct] = ACTIONS(2810), - [anon_sym_union] = ACTIONS(2810), - [anon_sym_pub] = ACTIONS(2810), - [anon_sym_mut] = ACTIONS(2810), - [anon_sym_enum] = ACTIONS(2810), - [anon_sym_interface] = ACTIONS(2810), - [anon_sym_PLUS_PLUS] = ACTIONS(2810), - [anon_sym_DASH_DASH] = ACTIONS(2810), - [anon_sym_QMARK] = ACTIONS(2810), - [anon_sym_BANG] = ACTIONS(2810), - [anon_sym_go] = ACTIONS(2810), - [anon_sym_spawn] = ACTIONS(2810), - [anon_sym_json_DOTdecode] = ACTIONS(2810), - [anon_sym_LBRACK2] = ACTIONS(2810), - [anon_sym_TILDE] = ACTIONS(2810), - [anon_sym_CARET] = ACTIONS(2810), - [anon_sym_AMP] = ACTIONS(2810), - [anon_sym_LT_DASH] = ACTIONS(2810), - [anon_sym_LT_LT] = ACTIONS(2810), - [anon_sym_GT_GT] = ACTIONS(2810), - [anon_sym_GT_GT_GT] = ACTIONS(2810), - [anon_sym_AMP_CARET] = ACTIONS(2810), - [anon_sym_AMP_AMP] = ACTIONS(2810), - [anon_sym_PIPE_PIPE] = ACTIONS(2810), - [anon_sym_or] = ACTIONS(2810), - [sym_none] = ACTIONS(2810), - [sym_true] = ACTIONS(2810), - [sym_false] = ACTIONS(2810), - [sym_nil] = ACTIONS(2810), - [anon_sym_QMARK_DOT] = ACTIONS(2810), - [anon_sym_POUND_LBRACK] = ACTIONS(2810), - [anon_sym_if] = ACTIONS(2810), - [anon_sym_DOLLARif] = ACTIONS(2810), - [anon_sym_is] = ACTIONS(2810), - [anon_sym_BANGis] = ACTIONS(2810), - [anon_sym_in] = ACTIONS(2810), - [anon_sym_BANGin] = ACTIONS(2810), - [anon_sym_match] = ACTIONS(2810), - [anon_sym_select] = ACTIONS(2810), - [anon_sym_lock] = ACTIONS(2810), - [anon_sym_rlock] = ACTIONS(2810), - [anon_sym_unsafe] = ACTIONS(2810), - [anon_sym_sql] = ACTIONS(2810), - [sym_int_literal] = ACTIONS(2810), - [sym_float_literal] = ACTIONS(2810), - [sym_rune_literal] = ACTIONS(2810), - [sym_pseudo_compile_time_identifier] = ACTIONS(2810), - [anon_sym_shared] = ACTIONS(2810), - [anon_sym_map_LBRACK] = ACTIONS(2810), - [anon_sym_chan] = ACTIONS(2810), - [anon_sym_thread] = ACTIONS(2810), - [anon_sym_atomic] = ACTIONS(2810), - [anon_sym_assert] = ACTIONS(2810), - [anon_sym_defer] = ACTIONS(2810), - [anon_sym_goto] = ACTIONS(2810), - [anon_sym_break] = ACTIONS(2810), - [anon_sym_continue] = ACTIONS(2810), - [anon_sym_return] = ACTIONS(2810), - [anon_sym_DOLLARfor] = ACTIONS(2810), - [anon_sym_for] = ACTIONS(2810), - [anon_sym_POUND] = ACTIONS(2810), - [anon_sym_asm] = ACTIONS(2810), - [anon_sym_AT_LBRACK] = ACTIONS(2810), - [sym___double_quote] = ACTIONS(2810), - [sym___single_quote] = ACTIONS(2810), - [sym___c_double_quote] = ACTIONS(2810), - [sym___c_single_quote] = ACTIONS(2810), - [sym___r_double_quote] = ACTIONS(2810), - [sym___r_single_quote] = ACTIONS(2810), - }, - [1013] = { - [sym_line_comment] = STATE(1013), - [sym_block_comment] = STATE(1013), - [ts_builtin_sym_end] = ACTIONS(1849), - [sym_identifier] = ACTIONS(1851), - [anon_sym_LF] = ACTIONS(1851), - [anon_sym_CR] = ACTIONS(1851), - [anon_sym_CR_LF] = ACTIONS(1851), - [anon_sym_SLASH_SLASH] = ACTIONS(497), - [anon_sym_SLASH_STAR] = ACTIONS(499), - [anon_sym_DOT] = ACTIONS(1851), - [anon_sym_as] = ACTIONS(1851), - [anon_sym_LBRACE] = ACTIONS(1853), - [anon_sym_COMMA] = ACTIONS(1851), - [anon_sym_const] = ACTIONS(1851), - [anon_sym_LPAREN] = ACTIONS(1851), - [anon_sym___global] = ACTIONS(1851), - [anon_sym_type] = ACTIONS(1851), - [anon_sym_PIPE] = ACTIONS(1851), - [anon_sym_fn] = ACTIONS(1851), - [anon_sym_PLUS] = ACTIONS(1851), - [anon_sym_DASH] = ACTIONS(1851), - [anon_sym_STAR] = ACTIONS(1851), - [anon_sym_SLASH] = ACTIONS(1851), - [anon_sym_PERCENT] = ACTIONS(1851), - [anon_sym_LT] = ACTIONS(1851), - [anon_sym_GT] = ACTIONS(1851), - [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(1856), - [anon_sym_struct] = ACTIONS(1851), - [anon_sym_union] = ACTIONS(1851), - [anon_sym_pub] = ACTIONS(1851), - [anon_sym_mut] = ACTIONS(1851), - [anon_sym_enum] = ACTIONS(1851), - [anon_sym_interface] = ACTIONS(1851), - [anon_sym_PLUS_PLUS] = ACTIONS(1851), - [anon_sym_DASH_DASH] = ACTIONS(1851), - [anon_sym_QMARK] = ACTIONS(1851), - [anon_sym_BANG] = ACTIONS(1851), - [anon_sym_go] = ACTIONS(1851), - [anon_sym_spawn] = ACTIONS(1851), - [anon_sym_json_DOTdecode] = ACTIONS(1851), - [anon_sym_LBRACK2] = ACTIONS(1851), - [anon_sym_TILDE] = ACTIONS(1851), - [anon_sym_CARET] = ACTIONS(1851), - [anon_sym_AMP] = ACTIONS(1851), - [anon_sym_LT_DASH] = ACTIONS(1851), - [anon_sym_LT_LT] = ACTIONS(1851), - [anon_sym_GT_GT] = ACTIONS(1851), - [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(1851), - [sym_none] = ACTIONS(1851), - [sym_true] = ACTIONS(1851), - [sym_false] = ACTIONS(1851), - [sym_nil] = ACTIONS(1851), - [anon_sym_QMARK_DOT] = ACTIONS(1851), - [anon_sym_POUND_LBRACK] = ACTIONS(1851), - [anon_sym_if] = ACTIONS(1851), - [anon_sym_DOLLARif] = ACTIONS(1851), - [anon_sym_is] = ACTIONS(1851), - [anon_sym_BANGis] = ACTIONS(1851), - [anon_sym_in] = ACTIONS(1851), - [anon_sym_BANGin] = ACTIONS(1851), - [anon_sym_match] = ACTIONS(1851), - [anon_sym_select] = ACTIONS(1851), - [anon_sym_lock] = ACTIONS(1851), - [anon_sym_rlock] = ACTIONS(1851), - [anon_sym_unsafe] = ACTIONS(1851), - [anon_sym_sql] = ACTIONS(1851), - [sym_int_literal] = ACTIONS(1851), - [sym_float_literal] = ACTIONS(1851), - [sym_rune_literal] = ACTIONS(1851), - [sym_pseudo_compile_time_identifier] = ACTIONS(1851), - [anon_sym_shared] = ACTIONS(1851), - [anon_sym_map_LBRACK] = ACTIONS(1851), - [anon_sym_chan] = ACTIONS(1851), - [anon_sym_thread] = ACTIONS(1851), - [anon_sym_atomic] = ACTIONS(1851), - [anon_sym_assert] = ACTIONS(1851), - [anon_sym_defer] = ACTIONS(1851), - [anon_sym_goto] = ACTIONS(1851), - [anon_sym_break] = ACTIONS(1851), - [anon_sym_continue] = ACTIONS(1851), - [anon_sym_return] = ACTIONS(1851), - [anon_sym_DOLLARfor] = ACTIONS(1851), - [anon_sym_for] = ACTIONS(1851), - [anon_sym_POUND] = ACTIONS(1851), - [anon_sym_asm] = ACTIONS(1851), - [anon_sym_AT_LBRACK] = ACTIONS(1851), - [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), - }, - [1014] = { - [sym_line_comment] = STATE(1014), - [sym_block_comment] = STATE(1014), - [ts_builtin_sym_end] = ACTIONS(3048), - [sym_identifier] = ACTIONS(3050), - [anon_sym_LF] = ACTIONS(3050), - [anon_sym_CR] = ACTIONS(3050), - [anon_sym_CR_LF] = ACTIONS(3050), - [anon_sym_SLASH_SLASH] = ACTIONS(497), - [anon_sym_SLASH_STAR] = ACTIONS(499), - [anon_sym_DOT] = ACTIONS(3050), - [anon_sym_as] = ACTIONS(3050), - [anon_sym_LBRACE] = ACTIONS(3050), - [anon_sym_COMMA] = ACTIONS(3050), - [anon_sym_const] = ACTIONS(3050), - [anon_sym_LPAREN] = ACTIONS(3050), - [anon_sym___global] = ACTIONS(3050), - [anon_sym_type] = ACTIONS(3050), - [anon_sym_PIPE] = ACTIONS(3050), - [anon_sym_fn] = ACTIONS(3050), - [anon_sym_PLUS] = ACTIONS(3050), - [anon_sym_DASH] = ACTIONS(3050), - [anon_sym_STAR] = ACTIONS(3050), - [anon_sym_SLASH] = ACTIONS(3050), - [anon_sym_PERCENT] = ACTIONS(3050), - [anon_sym_LT] = ACTIONS(3050), - [anon_sym_GT] = ACTIONS(3050), - [anon_sym_EQ_EQ] = ACTIONS(3050), - [anon_sym_BANG_EQ] = ACTIONS(3050), - [anon_sym_LT_EQ] = ACTIONS(3050), - [anon_sym_GT_EQ] = ACTIONS(3050), - [anon_sym_LBRACK] = ACTIONS(3048), - [anon_sym_struct] = ACTIONS(3050), - [anon_sym_union] = ACTIONS(3050), - [anon_sym_pub] = ACTIONS(3050), - [anon_sym_mut] = ACTIONS(3050), - [anon_sym_enum] = ACTIONS(3050), - [anon_sym_interface] = ACTIONS(3050), - [anon_sym_PLUS_PLUS] = ACTIONS(3050), - [anon_sym_DASH_DASH] = ACTIONS(3050), - [anon_sym_QMARK] = ACTIONS(3050), - [anon_sym_BANG] = ACTIONS(3050), - [anon_sym_go] = ACTIONS(3050), - [anon_sym_spawn] = ACTIONS(3050), - [anon_sym_json_DOTdecode] = ACTIONS(3050), - [anon_sym_LBRACK2] = ACTIONS(3050), - [anon_sym_TILDE] = ACTIONS(3050), - [anon_sym_CARET] = ACTIONS(3050), - [anon_sym_AMP] = ACTIONS(3050), - [anon_sym_LT_DASH] = ACTIONS(3050), - [anon_sym_LT_LT] = ACTIONS(3050), - [anon_sym_GT_GT] = ACTIONS(3050), - [anon_sym_GT_GT_GT] = ACTIONS(3050), - [anon_sym_AMP_CARET] = ACTIONS(3050), - [anon_sym_AMP_AMP] = ACTIONS(3050), - [anon_sym_PIPE_PIPE] = ACTIONS(3050), - [anon_sym_or] = ACTIONS(3050), - [sym_none] = ACTIONS(3050), - [sym_true] = ACTIONS(3050), - [sym_false] = ACTIONS(3050), - [sym_nil] = ACTIONS(3050), - [anon_sym_QMARK_DOT] = ACTIONS(3050), - [anon_sym_POUND_LBRACK] = ACTIONS(3050), - [anon_sym_if] = ACTIONS(3050), - [anon_sym_DOLLARif] = ACTIONS(3050), - [anon_sym_is] = ACTIONS(3050), - [anon_sym_BANGis] = ACTIONS(3050), - [anon_sym_in] = ACTIONS(3050), - [anon_sym_BANGin] = ACTIONS(3050), - [anon_sym_match] = ACTIONS(3050), - [anon_sym_select] = ACTIONS(3050), - [anon_sym_lock] = ACTIONS(3050), - [anon_sym_rlock] = ACTIONS(3050), - [anon_sym_unsafe] = ACTIONS(3050), - [anon_sym_sql] = ACTIONS(3050), - [sym_int_literal] = ACTIONS(3050), - [sym_float_literal] = ACTIONS(3050), - [sym_rune_literal] = ACTIONS(3050), - [sym_pseudo_compile_time_identifier] = ACTIONS(3050), - [anon_sym_shared] = ACTIONS(3050), - [anon_sym_map_LBRACK] = ACTIONS(3050), - [anon_sym_chan] = ACTIONS(3050), - [anon_sym_thread] = ACTIONS(3050), - [anon_sym_atomic] = ACTIONS(3050), - [anon_sym_assert] = ACTIONS(3050), - [anon_sym_defer] = ACTIONS(3050), - [anon_sym_goto] = ACTIONS(3050), - [anon_sym_break] = ACTIONS(3050), - [anon_sym_continue] = ACTIONS(3050), - [anon_sym_return] = ACTIONS(3050), - [anon_sym_DOLLARfor] = ACTIONS(3050), - [anon_sym_for] = ACTIONS(3050), - [anon_sym_POUND] = ACTIONS(3050), - [anon_sym_asm] = ACTIONS(3050), - [anon_sym_AT_LBRACK] = ACTIONS(3050), - [sym___double_quote] = ACTIONS(3050), - [sym___single_quote] = ACTIONS(3050), - [sym___c_double_quote] = ACTIONS(3050), - [sym___c_single_quote] = ACTIONS(3050), - [sym___r_double_quote] = ACTIONS(3050), - [sym___r_single_quote] = ACTIONS(3050), - }, - [1015] = { - [sym_line_comment] = STATE(1015), - [sym_block_comment] = STATE(1015), - [ts_builtin_sym_end] = ACTIONS(2505), - [sym_identifier] = ACTIONS(2507), - [anon_sym_LF] = ACTIONS(2507), - [anon_sym_CR] = ACTIONS(2507), - [anon_sym_CR_LF] = ACTIONS(2507), - [anon_sym_SLASH_SLASH] = ACTIONS(497), - [anon_sym_SLASH_STAR] = ACTIONS(499), - [anon_sym_DOT] = ACTIONS(2507), - [anon_sym_as] = ACTIONS(2507), - [anon_sym_LBRACE] = ACTIONS(2507), - [anon_sym_COMMA] = ACTIONS(2507), - [anon_sym_const] = ACTIONS(2507), - [anon_sym_LPAREN] = ACTIONS(2507), - [anon_sym___global] = ACTIONS(2507), - [anon_sym_type] = ACTIONS(2507), - [anon_sym_PIPE] = ACTIONS(2507), - [anon_sym_fn] = ACTIONS(2507), - [anon_sym_PLUS] = ACTIONS(2507), - [anon_sym_DASH] = ACTIONS(2507), - [anon_sym_STAR] = ACTIONS(2507), - [anon_sym_SLASH] = ACTIONS(2507), - [anon_sym_PERCENT] = ACTIONS(2507), - [anon_sym_LT] = ACTIONS(2507), - [anon_sym_GT] = ACTIONS(2507), - [anon_sym_EQ_EQ] = ACTIONS(2507), - [anon_sym_BANG_EQ] = ACTIONS(2507), - [anon_sym_LT_EQ] = ACTIONS(2507), - [anon_sym_GT_EQ] = ACTIONS(2507), - [anon_sym_LBRACK] = ACTIONS(2505), - [anon_sym_struct] = ACTIONS(2507), - [anon_sym_union] = ACTIONS(2507), - [anon_sym_pub] = ACTIONS(2507), - [anon_sym_mut] = ACTIONS(2507), - [anon_sym_enum] = ACTIONS(2507), - [anon_sym_interface] = ACTIONS(2507), - [anon_sym_PLUS_PLUS] = ACTIONS(2507), - [anon_sym_DASH_DASH] = ACTIONS(2507), - [anon_sym_QMARK] = ACTIONS(2507), - [anon_sym_BANG] = ACTIONS(2507), - [anon_sym_go] = ACTIONS(2507), - [anon_sym_spawn] = ACTIONS(2507), - [anon_sym_json_DOTdecode] = ACTIONS(2507), - [anon_sym_LBRACK2] = ACTIONS(2507), - [anon_sym_TILDE] = ACTIONS(2507), - [anon_sym_CARET] = ACTIONS(2507), - [anon_sym_AMP] = ACTIONS(2507), - [anon_sym_LT_DASH] = ACTIONS(2507), - [anon_sym_LT_LT] = ACTIONS(2507), - [anon_sym_GT_GT] = ACTIONS(2507), - [anon_sym_GT_GT_GT] = ACTIONS(2507), - [anon_sym_AMP_CARET] = ACTIONS(2507), - [anon_sym_AMP_AMP] = ACTIONS(2507), - [anon_sym_PIPE_PIPE] = ACTIONS(2507), - [anon_sym_or] = ACTIONS(2507), - [sym_none] = ACTIONS(2507), - [sym_true] = ACTIONS(2507), - [sym_false] = ACTIONS(2507), - [sym_nil] = ACTIONS(2507), - [anon_sym_QMARK_DOT] = ACTIONS(2507), - [anon_sym_POUND_LBRACK] = ACTIONS(2507), - [anon_sym_if] = ACTIONS(2507), - [anon_sym_DOLLARif] = ACTIONS(2507), - [anon_sym_is] = ACTIONS(2507), - [anon_sym_BANGis] = ACTIONS(2507), - [anon_sym_in] = ACTIONS(2507), - [anon_sym_BANGin] = ACTIONS(2507), - [anon_sym_match] = ACTIONS(2507), - [anon_sym_select] = ACTIONS(2507), - [anon_sym_lock] = ACTIONS(2507), - [anon_sym_rlock] = ACTIONS(2507), - [anon_sym_unsafe] = ACTIONS(2507), - [anon_sym_sql] = ACTIONS(2507), - [sym_int_literal] = ACTIONS(2507), - [sym_float_literal] = ACTIONS(2507), - [sym_rune_literal] = ACTIONS(2507), - [sym_pseudo_compile_time_identifier] = ACTIONS(2507), - [anon_sym_shared] = ACTIONS(2507), - [anon_sym_map_LBRACK] = ACTIONS(2507), - [anon_sym_chan] = ACTIONS(2507), - [anon_sym_thread] = ACTIONS(2507), - [anon_sym_atomic] = ACTIONS(2507), - [anon_sym_assert] = ACTIONS(2507), - [anon_sym_defer] = ACTIONS(2507), - [anon_sym_goto] = ACTIONS(2507), - [anon_sym_break] = ACTIONS(2507), - [anon_sym_continue] = ACTIONS(2507), - [anon_sym_return] = ACTIONS(2507), - [anon_sym_DOLLARfor] = ACTIONS(2507), - [anon_sym_for] = ACTIONS(2507), - [anon_sym_POUND] = ACTIONS(2507), - [anon_sym_asm] = ACTIONS(2507), - [anon_sym_AT_LBRACK] = ACTIONS(2507), - [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), - }, - [1016] = { - [sym_line_comment] = STATE(1016), - [sym_block_comment] = STATE(1016), - [ts_builtin_sym_end] = ACTIONS(2645), - [sym_identifier] = ACTIONS(2647), - [anon_sym_LF] = ACTIONS(2647), - [anon_sym_CR] = ACTIONS(2647), - [anon_sym_CR_LF] = ACTIONS(2647), - [anon_sym_SLASH_SLASH] = ACTIONS(497), - [anon_sym_SLASH_STAR] = ACTIONS(499), - [anon_sym_DOT] = ACTIONS(2647), - [anon_sym_as] = ACTIONS(2647), - [anon_sym_LBRACE] = ACTIONS(2647), - [anon_sym_COMMA] = ACTIONS(2647), - [anon_sym_const] = ACTIONS(2647), - [anon_sym_LPAREN] = ACTIONS(2647), - [anon_sym___global] = ACTIONS(2647), - [anon_sym_type] = ACTIONS(2647), - [anon_sym_PIPE] = ACTIONS(2647), - [anon_sym_fn] = ACTIONS(2647), - [anon_sym_PLUS] = ACTIONS(2647), - [anon_sym_DASH] = ACTIONS(2647), - [anon_sym_STAR] = ACTIONS(2647), - [anon_sym_SLASH] = ACTIONS(2647), - [anon_sym_PERCENT] = ACTIONS(2647), - [anon_sym_LT] = ACTIONS(2647), - [anon_sym_GT] = ACTIONS(2647), - [anon_sym_EQ_EQ] = ACTIONS(2647), - [anon_sym_BANG_EQ] = ACTIONS(2647), - [anon_sym_LT_EQ] = ACTIONS(2647), - [anon_sym_GT_EQ] = ACTIONS(2647), - [anon_sym_LBRACK] = ACTIONS(2645), - [anon_sym_struct] = ACTIONS(2647), - [anon_sym_union] = ACTIONS(2647), - [anon_sym_pub] = ACTIONS(2647), - [anon_sym_mut] = ACTIONS(2647), - [anon_sym_enum] = ACTIONS(2647), - [anon_sym_interface] = ACTIONS(2647), - [anon_sym_PLUS_PLUS] = ACTIONS(2647), - [anon_sym_DASH_DASH] = ACTIONS(2647), - [anon_sym_QMARK] = ACTIONS(2647), - [anon_sym_BANG] = ACTIONS(2647), - [anon_sym_go] = ACTIONS(2647), - [anon_sym_spawn] = ACTIONS(2647), - [anon_sym_json_DOTdecode] = ACTIONS(2647), - [anon_sym_LBRACK2] = ACTIONS(2647), - [anon_sym_TILDE] = ACTIONS(2647), - [anon_sym_CARET] = ACTIONS(2647), - [anon_sym_AMP] = ACTIONS(2647), - [anon_sym_LT_DASH] = ACTIONS(2647), - [anon_sym_LT_LT] = ACTIONS(2647), - [anon_sym_GT_GT] = ACTIONS(2647), - [anon_sym_GT_GT_GT] = ACTIONS(2647), - [anon_sym_AMP_CARET] = ACTIONS(2647), - [anon_sym_AMP_AMP] = ACTIONS(2647), - [anon_sym_PIPE_PIPE] = ACTIONS(2647), - [anon_sym_or] = ACTIONS(2647), - [sym_none] = ACTIONS(2647), - [sym_true] = ACTIONS(2647), - [sym_false] = ACTIONS(2647), - [sym_nil] = ACTIONS(2647), - [anon_sym_QMARK_DOT] = ACTIONS(2647), - [anon_sym_POUND_LBRACK] = ACTIONS(2647), - [anon_sym_if] = ACTIONS(2647), - [anon_sym_DOLLARif] = ACTIONS(2647), - [anon_sym_is] = ACTIONS(2647), - [anon_sym_BANGis] = ACTIONS(2647), - [anon_sym_in] = ACTIONS(2647), - [anon_sym_BANGin] = ACTIONS(2647), - [anon_sym_match] = ACTIONS(2647), - [anon_sym_select] = ACTIONS(2647), - [anon_sym_lock] = ACTIONS(2647), - [anon_sym_rlock] = ACTIONS(2647), - [anon_sym_unsafe] = ACTIONS(2647), - [anon_sym_sql] = ACTIONS(2647), - [sym_int_literal] = ACTIONS(2647), - [sym_float_literal] = ACTIONS(2647), - [sym_rune_literal] = ACTIONS(2647), - [sym_pseudo_compile_time_identifier] = ACTIONS(2647), - [anon_sym_shared] = ACTIONS(2647), - [anon_sym_map_LBRACK] = ACTIONS(2647), - [anon_sym_chan] = ACTIONS(2647), - [anon_sym_thread] = ACTIONS(2647), - [anon_sym_atomic] = ACTIONS(2647), - [anon_sym_assert] = ACTIONS(2647), - [anon_sym_defer] = ACTIONS(2647), - [anon_sym_goto] = ACTIONS(2647), - [anon_sym_break] = ACTIONS(2647), - [anon_sym_continue] = ACTIONS(2647), - [anon_sym_return] = ACTIONS(2647), - [anon_sym_DOLLARfor] = ACTIONS(2647), - [anon_sym_for] = ACTIONS(2647), - [anon_sym_POUND] = ACTIONS(2647), - [anon_sym_asm] = ACTIONS(2647), - [anon_sym_AT_LBRACK] = ACTIONS(2647), - [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), - }, - [1017] = { - [sym_line_comment] = STATE(1017), - [sym_block_comment] = STATE(1017), - [ts_builtin_sym_end] = ACTIONS(2776), - [sym_identifier] = ACTIONS(2778), - [anon_sym_LF] = ACTIONS(2778), - [anon_sym_CR] = ACTIONS(2778), - [anon_sym_CR_LF] = ACTIONS(2778), - [anon_sym_SLASH_SLASH] = ACTIONS(497), - [anon_sym_SLASH_STAR] = ACTIONS(499), - [anon_sym_DOT] = ACTIONS(2778), - [anon_sym_as] = ACTIONS(2778), - [anon_sym_LBRACE] = ACTIONS(2778), - [anon_sym_COMMA] = ACTIONS(2778), - [anon_sym_const] = ACTIONS(2778), - [anon_sym_LPAREN] = ACTIONS(2778), - [anon_sym___global] = ACTIONS(2778), - [anon_sym_type] = ACTIONS(2778), - [anon_sym_PIPE] = ACTIONS(2778), - [anon_sym_fn] = ACTIONS(2778), - [anon_sym_PLUS] = ACTIONS(2778), - [anon_sym_DASH] = ACTIONS(2778), - [anon_sym_STAR] = ACTIONS(2778), - [anon_sym_SLASH] = ACTIONS(2778), - [anon_sym_PERCENT] = ACTIONS(2778), - [anon_sym_LT] = ACTIONS(2778), - [anon_sym_GT] = ACTIONS(2778), - [anon_sym_EQ_EQ] = ACTIONS(2778), - [anon_sym_BANG_EQ] = ACTIONS(2778), - [anon_sym_LT_EQ] = ACTIONS(2778), - [anon_sym_GT_EQ] = ACTIONS(2778), - [anon_sym_LBRACK] = ACTIONS(2776), - [anon_sym_struct] = ACTIONS(2778), - [anon_sym_union] = ACTIONS(2778), - [anon_sym_pub] = ACTIONS(2778), - [anon_sym_mut] = ACTIONS(2778), - [anon_sym_enum] = ACTIONS(2778), - [anon_sym_interface] = ACTIONS(2778), - [anon_sym_PLUS_PLUS] = ACTIONS(2778), - [anon_sym_DASH_DASH] = ACTIONS(2778), - [anon_sym_QMARK] = ACTIONS(2778), - [anon_sym_BANG] = ACTIONS(2778), - [anon_sym_go] = ACTIONS(2778), - [anon_sym_spawn] = ACTIONS(2778), - [anon_sym_json_DOTdecode] = ACTIONS(2778), - [anon_sym_LBRACK2] = ACTIONS(2778), - [anon_sym_TILDE] = ACTIONS(2778), - [anon_sym_CARET] = ACTIONS(2778), - [anon_sym_AMP] = ACTIONS(2778), - [anon_sym_LT_DASH] = ACTIONS(2778), - [anon_sym_LT_LT] = ACTIONS(2778), - [anon_sym_GT_GT] = ACTIONS(2778), - [anon_sym_GT_GT_GT] = ACTIONS(2778), - [anon_sym_AMP_CARET] = ACTIONS(2778), - [anon_sym_AMP_AMP] = ACTIONS(2778), - [anon_sym_PIPE_PIPE] = ACTIONS(2778), - [anon_sym_or] = ACTIONS(2778), - [sym_none] = ACTIONS(2778), - [sym_true] = ACTIONS(2778), - [sym_false] = ACTIONS(2778), - [sym_nil] = ACTIONS(2778), - [anon_sym_QMARK_DOT] = ACTIONS(2778), - [anon_sym_POUND_LBRACK] = ACTIONS(2778), - [anon_sym_if] = ACTIONS(2778), - [anon_sym_DOLLARif] = ACTIONS(2778), - [anon_sym_is] = ACTIONS(2778), - [anon_sym_BANGis] = ACTIONS(2778), - [anon_sym_in] = ACTIONS(2778), - [anon_sym_BANGin] = ACTIONS(2778), - [anon_sym_match] = ACTIONS(2778), - [anon_sym_select] = ACTIONS(2778), - [anon_sym_lock] = ACTIONS(2778), - [anon_sym_rlock] = ACTIONS(2778), - [anon_sym_unsafe] = ACTIONS(2778), - [anon_sym_sql] = ACTIONS(2778), - [sym_int_literal] = ACTIONS(2778), - [sym_float_literal] = ACTIONS(2778), - [sym_rune_literal] = ACTIONS(2778), - [sym_pseudo_compile_time_identifier] = ACTIONS(2778), - [anon_sym_shared] = ACTIONS(2778), - [anon_sym_map_LBRACK] = ACTIONS(2778), - [anon_sym_chan] = ACTIONS(2778), - [anon_sym_thread] = ACTIONS(2778), - [anon_sym_atomic] = ACTIONS(2778), - [anon_sym_assert] = ACTIONS(2778), - [anon_sym_defer] = ACTIONS(2778), - [anon_sym_goto] = ACTIONS(2778), - [anon_sym_break] = ACTIONS(2778), - [anon_sym_continue] = ACTIONS(2778), - [anon_sym_return] = ACTIONS(2778), - [anon_sym_DOLLARfor] = ACTIONS(2778), - [anon_sym_for] = ACTIONS(2778), - [anon_sym_POUND] = ACTIONS(2778), - [anon_sym_asm] = ACTIONS(2778), - [anon_sym_AT_LBRACK] = ACTIONS(2778), - [sym___double_quote] = ACTIONS(2778), - [sym___single_quote] = ACTIONS(2778), - [sym___c_double_quote] = ACTIONS(2778), - [sym___c_single_quote] = ACTIONS(2778), - [sym___r_double_quote] = ACTIONS(2778), - [sym___r_single_quote] = ACTIONS(2778), - }, - [1018] = { - [sym_line_comment] = STATE(1018), - [sym_block_comment] = STATE(1018), - [ts_builtin_sym_end] = ACTIONS(2759), - [sym_identifier] = ACTIONS(2761), - [anon_sym_LF] = ACTIONS(2761), - [anon_sym_CR] = ACTIONS(2761), - [anon_sym_CR_LF] = ACTIONS(2761), - [anon_sym_SLASH_SLASH] = ACTIONS(497), - [anon_sym_SLASH_STAR] = ACTIONS(499), - [anon_sym_DOT] = ACTIONS(2761), - [anon_sym_as] = ACTIONS(2761), - [anon_sym_LBRACE] = ACTIONS(2761), - [anon_sym_COMMA] = ACTIONS(2761), - [anon_sym_const] = ACTIONS(2761), - [anon_sym_LPAREN] = ACTIONS(2761), - [anon_sym___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), - }, - [1019] = { - [sym_line_comment] = STATE(1019), - [sym_block_comment] = STATE(1019), - [ts_builtin_sym_end] = ACTIONS(1903), - [sym_identifier] = ACTIONS(1905), - [anon_sym_LF] = ACTIONS(1905), - [anon_sym_CR] = ACTIONS(1905), - [anon_sym_CR_LF] = ACTIONS(1905), - [anon_sym_SLASH_SLASH] = ACTIONS(497), - [anon_sym_SLASH_STAR] = ACTIONS(499), - [anon_sym_DOT] = ACTIONS(1905), - [anon_sym_as] = ACTIONS(1905), - [anon_sym_LBRACE] = ACTIONS(1905), - [anon_sym_COMMA] = ACTIONS(1905), - [anon_sym_const] = ACTIONS(1905), - [anon_sym_LPAREN] = ACTIONS(1905), - [anon_sym___global] = ACTIONS(1905), - [anon_sym_type] = ACTIONS(1905), - [anon_sym_PIPE] = ACTIONS(1905), - [anon_sym_fn] = ACTIONS(1905), - [anon_sym_PLUS] = ACTIONS(1905), - [anon_sym_DASH] = ACTIONS(1905), - [anon_sym_STAR] = ACTIONS(1905), - [anon_sym_SLASH] = ACTIONS(1905), - [anon_sym_PERCENT] = ACTIONS(1905), - [anon_sym_LT] = ACTIONS(1905), - [anon_sym_GT] = ACTIONS(1905), - [anon_sym_EQ_EQ] = ACTIONS(1905), - [anon_sym_BANG_EQ] = ACTIONS(1905), - [anon_sym_LT_EQ] = ACTIONS(1905), - [anon_sym_GT_EQ] = ACTIONS(1905), - [anon_sym_LBRACK] = ACTIONS(1903), - [anon_sym_struct] = ACTIONS(1905), - [anon_sym_union] = ACTIONS(1905), - [anon_sym_pub] = ACTIONS(1905), - [anon_sym_mut] = ACTIONS(1905), - [anon_sym_enum] = ACTIONS(1905), - [anon_sym_interface] = ACTIONS(1905), - [anon_sym_PLUS_PLUS] = ACTIONS(1905), - [anon_sym_DASH_DASH] = ACTIONS(1905), - [anon_sym_QMARK] = ACTIONS(1905), - [anon_sym_BANG] = ACTIONS(1905), - [anon_sym_go] = ACTIONS(1905), - [anon_sym_spawn] = ACTIONS(1905), - [anon_sym_json_DOTdecode] = ACTIONS(1905), - [anon_sym_LBRACK2] = ACTIONS(1905), - [anon_sym_TILDE] = ACTIONS(1905), - [anon_sym_CARET] = ACTIONS(1905), - [anon_sym_AMP] = ACTIONS(1905), - [anon_sym_LT_DASH] = ACTIONS(1905), - [anon_sym_LT_LT] = ACTIONS(1905), - [anon_sym_GT_GT] = ACTIONS(1905), - [anon_sym_GT_GT_GT] = ACTIONS(1905), - [anon_sym_AMP_CARET] = ACTIONS(1905), - [anon_sym_AMP_AMP] = ACTIONS(1905), - [anon_sym_PIPE_PIPE] = ACTIONS(1905), - [anon_sym_or] = ACTIONS(1905), - [sym_none] = ACTIONS(1905), - [sym_true] = ACTIONS(1905), - [sym_false] = ACTIONS(1905), - [sym_nil] = ACTIONS(1905), - [anon_sym_QMARK_DOT] = ACTIONS(1905), - [anon_sym_POUND_LBRACK] = ACTIONS(1905), - [anon_sym_if] = ACTIONS(1905), - [anon_sym_DOLLARif] = ACTIONS(1905), - [anon_sym_is] = ACTIONS(1905), - [anon_sym_BANGis] = ACTIONS(1905), - [anon_sym_in] = ACTIONS(1905), - [anon_sym_BANGin] = ACTIONS(1905), - [anon_sym_match] = ACTIONS(1905), - [anon_sym_select] = ACTIONS(1905), - [anon_sym_lock] = ACTIONS(1905), - [anon_sym_rlock] = ACTIONS(1905), - [anon_sym_unsafe] = ACTIONS(1905), - [anon_sym_sql] = ACTIONS(1905), - [sym_int_literal] = ACTIONS(1905), - [sym_float_literal] = ACTIONS(1905), - [sym_rune_literal] = ACTIONS(1905), - [sym_pseudo_compile_time_identifier] = ACTIONS(1905), - [anon_sym_shared] = ACTIONS(1905), - [anon_sym_map_LBRACK] = ACTIONS(1905), - [anon_sym_chan] = ACTIONS(1905), - [anon_sym_thread] = ACTIONS(1905), - [anon_sym_atomic] = ACTIONS(1905), - [anon_sym_assert] = ACTIONS(1905), - [anon_sym_defer] = ACTIONS(1905), - [anon_sym_goto] = ACTIONS(1905), - [anon_sym_break] = ACTIONS(1905), - [anon_sym_continue] = ACTIONS(1905), - [anon_sym_return] = ACTIONS(1905), - [anon_sym_DOLLARfor] = ACTIONS(1905), - [anon_sym_for] = ACTIONS(1905), - [anon_sym_POUND] = ACTIONS(1905), - [anon_sym_asm] = ACTIONS(1905), - [anon_sym_AT_LBRACK] = ACTIONS(1905), - [sym___double_quote] = ACTIONS(1905), - [sym___single_quote] = ACTIONS(1905), - [sym___c_double_quote] = ACTIONS(1905), - [sym___c_single_quote] = ACTIONS(1905), - [sym___r_double_quote] = ACTIONS(1905), - [sym___r_single_quote] = ACTIONS(1905), - }, - [1020] = { - [sym_line_comment] = STATE(1020), - [sym_block_comment] = STATE(1020), - [ts_builtin_sym_end] = ACTIONS(2784), - [sym_identifier] = ACTIONS(2786), - [anon_sym_LF] = ACTIONS(2786), - [anon_sym_CR] = ACTIONS(2786), - [anon_sym_CR_LF] = ACTIONS(2786), - [anon_sym_SLASH_SLASH] = ACTIONS(497), - [anon_sym_SLASH_STAR] = ACTIONS(499), - [anon_sym_DOT] = ACTIONS(2786), - [anon_sym_as] = ACTIONS(2786), - [anon_sym_LBRACE] = ACTIONS(2786), - [anon_sym_COMMA] = ACTIONS(2786), - [anon_sym_const] = ACTIONS(2786), - [anon_sym_LPAREN] = ACTIONS(2786), - [anon_sym___global] = ACTIONS(2786), - [anon_sym_type] = ACTIONS(2786), - [anon_sym_PIPE] = ACTIONS(2786), - [anon_sym_fn] = ACTIONS(2786), - [anon_sym_PLUS] = ACTIONS(2786), - [anon_sym_DASH] = ACTIONS(2786), - [anon_sym_STAR] = ACTIONS(2786), - [anon_sym_SLASH] = ACTIONS(2786), - [anon_sym_PERCENT] = ACTIONS(2786), - [anon_sym_LT] = ACTIONS(2786), - [anon_sym_GT] = ACTIONS(2786), - [anon_sym_EQ_EQ] = ACTIONS(2786), - [anon_sym_BANG_EQ] = ACTIONS(2786), - [anon_sym_LT_EQ] = ACTIONS(2786), - [anon_sym_GT_EQ] = ACTIONS(2786), - [anon_sym_LBRACK] = ACTIONS(2784), - [anon_sym_struct] = ACTIONS(2786), - [anon_sym_union] = ACTIONS(2786), - [anon_sym_pub] = ACTIONS(2786), - [anon_sym_mut] = ACTIONS(2786), - [anon_sym_enum] = ACTIONS(2786), - [anon_sym_interface] = ACTIONS(2786), - [anon_sym_PLUS_PLUS] = ACTIONS(2786), - [anon_sym_DASH_DASH] = ACTIONS(2786), - [anon_sym_QMARK] = ACTIONS(2786), - [anon_sym_BANG] = ACTIONS(2786), - [anon_sym_go] = ACTIONS(2786), - [anon_sym_spawn] = ACTIONS(2786), - [anon_sym_json_DOTdecode] = ACTIONS(2786), - [anon_sym_LBRACK2] = ACTIONS(2786), - [anon_sym_TILDE] = ACTIONS(2786), - [anon_sym_CARET] = ACTIONS(2786), - [anon_sym_AMP] = ACTIONS(2786), - [anon_sym_LT_DASH] = ACTIONS(2786), - [anon_sym_LT_LT] = ACTIONS(2786), - [anon_sym_GT_GT] = ACTIONS(2786), - [anon_sym_GT_GT_GT] = ACTIONS(2786), - [anon_sym_AMP_CARET] = ACTIONS(2786), - [anon_sym_AMP_AMP] = ACTIONS(2786), - [anon_sym_PIPE_PIPE] = ACTIONS(2786), - [anon_sym_or] = ACTIONS(2786), - [sym_none] = ACTIONS(2786), - [sym_true] = ACTIONS(2786), - [sym_false] = ACTIONS(2786), - [sym_nil] = ACTIONS(2786), - [anon_sym_QMARK_DOT] = ACTIONS(2786), - [anon_sym_POUND_LBRACK] = ACTIONS(2786), - [anon_sym_if] = ACTIONS(2786), - [anon_sym_DOLLARif] = ACTIONS(2786), - [anon_sym_is] = ACTIONS(2786), - [anon_sym_BANGis] = ACTIONS(2786), - [anon_sym_in] = ACTIONS(2786), - [anon_sym_BANGin] = ACTIONS(2786), - [anon_sym_match] = ACTIONS(2786), - [anon_sym_select] = ACTIONS(2786), - [anon_sym_lock] = ACTIONS(2786), - [anon_sym_rlock] = ACTIONS(2786), - [anon_sym_unsafe] = ACTIONS(2786), - [anon_sym_sql] = ACTIONS(2786), - [sym_int_literal] = ACTIONS(2786), - [sym_float_literal] = ACTIONS(2786), - [sym_rune_literal] = ACTIONS(2786), - [sym_pseudo_compile_time_identifier] = ACTIONS(2786), - [anon_sym_shared] = ACTIONS(2786), - [anon_sym_map_LBRACK] = ACTIONS(2786), - [anon_sym_chan] = ACTIONS(2786), - [anon_sym_thread] = ACTIONS(2786), - [anon_sym_atomic] = ACTIONS(2786), - [anon_sym_assert] = ACTIONS(2786), - [anon_sym_defer] = ACTIONS(2786), - [anon_sym_goto] = ACTIONS(2786), - [anon_sym_break] = ACTIONS(2786), - [anon_sym_continue] = ACTIONS(2786), - [anon_sym_return] = ACTIONS(2786), - [anon_sym_DOLLARfor] = ACTIONS(2786), - [anon_sym_for] = ACTIONS(2786), - [anon_sym_POUND] = ACTIONS(2786), - [anon_sym_asm] = ACTIONS(2786), - [anon_sym_AT_LBRACK] = ACTIONS(2786), - [sym___double_quote] = ACTIONS(2786), - [sym___single_quote] = ACTIONS(2786), - [sym___c_double_quote] = ACTIONS(2786), - [sym___c_single_quote] = ACTIONS(2786), - [sym___r_double_quote] = ACTIONS(2786), - [sym___r_single_quote] = ACTIONS(2786), - }, - [1021] = { - [sym_line_comment] = STATE(1021), - [sym_block_comment] = STATE(1021), [ts_builtin_sym_end] = ACTIONS(2780), [sym_identifier] = ACTIONS(2782), [anon_sym_LF] = ACTIONS(2782), @@ -139562,2049 +138472,2049 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym___r_double_quote] = ACTIONS(2782), [sym___r_single_quote] = ACTIONS(2782), }, + [1011] = { + [sym_line_comment] = STATE(1011), + [sym_block_comment] = STATE(1011), + [ts_builtin_sym_end] = ACTIONS(2716), + [sym_identifier] = ACTIONS(2718), + [anon_sym_LF] = ACTIONS(2718), + [anon_sym_CR] = ACTIONS(2718), + [anon_sym_CR_LF] = ACTIONS(2718), + [anon_sym_SLASH_SLASH] = ACTIONS(497), + [anon_sym_SLASH_STAR] = ACTIONS(499), + [anon_sym_DOT] = ACTIONS(2718), + [anon_sym_as] = ACTIONS(2718), + [anon_sym_LBRACE] = ACTIONS(2718), + [anon_sym_COMMA] = ACTIONS(2718), + [anon_sym_const] = ACTIONS(2718), + [anon_sym_LPAREN] = ACTIONS(2718), + [anon_sym___global] = ACTIONS(2718), + [anon_sym_type] = ACTIONS(2718), + [anon_sym_PIPE] = ACTIONS(2718), + [anon_sym_fn] = ACTIONS(2718), + [anon_sym_PLUS] = ACTIONS(2718), + [anon_sym_DASH] = ACTIONS(2718), + [anon_sym_STAR] = ACTIONS(2718), + [anon_sym_SLASH] = ACTIONS(2718), + [anon_sym_PERCENT] = ACTIONS(2718), + [anon_sym_LT] = ACTIONS(2718), + [anon_sym_GT] = ACTIONS(2718), + [anon_sym_EQ_EQ] = ACTIONS(2718), + [anon_sym_BANG_EQ] = ACTIONS(2718), + [anon_sym_LT_EQ] = ACTIONS(2718), + [anon_sym_GT_EQ] = ACTIONS(2718), + [anon_sym_LBRACK] = ACTIONS(2716), + [anon_sym_struct] = ACTIONS(2718), + [anon_sym_union] = ACTIONS(2718), + [anon_sym_pub] = ACTIONS(2718), + [anon_sym_mut] = ACTIONS(2718), + [anon_sym_enum] = ACTIONS(2718), + [anon_sym_interface] = ACTIONS(2718), + [anon_sym_PLUS_PLUS] = ACTIONS(2718), + [anon_sym_DASH_DASH] = ACTIONS(2718), + [anon_sym_QMARK] = ACTIONS(2718), + [anon_sym_BANG] = ACTIONS(2718), + [anon_sym_go] = ACTIONS(2718), + [anon_sym_spawn] = ACTIONS(2718), + [anon_sym_json_DOTdecode] = ACTIONS(2718), + [anon_sym_LBRACK2] = ACTIONS(2718), + [anon_sym_TILDE] = ACTIONS(2718), + [anon_sym_CARET] = ACTIONS(2718), + [anon_sym_AMP] = ACTIONS(2718), + [anon_sym_LT_DASH] = ACTIONS(2718), + [anon_sym_LT_LT] = ACTIONS(2718), + [anon_sym_GT_GT] = ACTIONS(2718), + [anon_sym_GT_GT_GT] = ACTIONS(2718), + [anon_sym_AMP_CARET] = ACTIONS(2718), + [anon_sym_AMP_AMP] = ACTIONS(2718), + [anon_sym_PIPE_PIPE] = ACTIONS(2718), + [anon_sym_or] = ACTIONS(2718), + [sym_none] = ACTIONS(2718), + [sym_true] = ACTIONS(2718), + [sym_false] = ACTIONS(2718), + [sym_nil] = ACTIONS(2718), + [anon_sym_QMARK_DOT] = ACTIONS(2718), + [anon_sym_POUND_LBRACK] = ACTIONS(2718), + [anon_sym_if] = ACTIONS(2718), + [anon_sym_DOLLARif] = ACTIONS(2718), + [anon_sym_is] = ACTIONS(2718), + [anon_sym_BANGis] = ACTIONS(2718), + [anon_sym_in] = ACTIONS(2718), + [anon_sym_BANGin] = ACTIONS(2718), + [anon_sym_match] = ACTIONS(2718), + [anon_sym_select] = ACTIONS(2718), + [anon_sym_lock] = ACTIONS(2718), + [anon_sym_rlock] = ACTIONS(2718), + [anon_sym_unsafe] = ACTIONS(2718), + [anon_sym_sql] = ACTIONS(2718), + [sym_int_literal] = ACTIONS(2718), + [sym_float_literal] = ACTIONS(2718), + [sym_rune_literal] = ACTIONS(2718), + [sym_pseudo_compile_time_identifier] = ACTIONS(2718), + [anon_sym_shared] = ACTIONS(2718), + [anon_sym_map_LBRACK] = ACTIONS(2718), + [anon_sym_chan] = ACTIONS(2718), + [anon_sym_thread] = ACTIONS(2718), + [anon_sym_atomic] = ACTIONS(2718), + [anon_sym_assert] = ACTIONS(2718), + [anon_sym_defer] = ACTIONS(2718), + [anon_sym_goto] = ACTIONS(2718), + [anon_sym_break] = ACTIONS(2718), + [anon_sym_continue] = ACTIONS(2718), + [anon_sym_return] = ACTIONS(2718), + [anon_sym_DOLLARfor] = ACTIONS(2718), + [anon_sym_for] = ACTIONS(2718), + [anon_sym_POUND] = ACTIONS(2718), + [anon_sym_asm] = ACTIONS(2718), + [anon_sym_AT_LBRACK] = ACTIONS(2718), + [sym___double_quote] = ACTIONS(2718), + [sym___single_quote] = ACTIONS(2718), + [sym___c_double_quote] = ACTIONS(2718), + [sym___c_single_quote] = ACTIONS(2718), + [sym___r_double_quote] = ACTIONS(2718), + [sym___r_single_quote] = ACTIONS(2718), + }, + [1012] = { + [sym_line_comment] = STATE(1012), + [sym_block_comment] = STATE(1012), + [ts_builtin_sym_end] = ACTIONS(2141), + [sym_identifier] = ACTIONS(2143), + [anon_sym_LF] = ACTIONS(2143), + [anon_sym_CR] = ACTIONS(2143), + [anon_sym_CR_LF] = ACTIONS(2143), + [anon_sym_SLASH_SLASH] = ACTIONS(497), + [anon_sym_SLASH_STAR] = ACTIONS(499), + [anon_sym_DOT] = ACTIONS(2143), + [anon_sym_as] = ACTIONS(2143), + [anon_sym_LBRACE] = ACTIONS(2143), + [anon_sym_COMMA] = ACTIONS(2143), + [anon_sym_const] = ACTIONS(2143), + [anon_sym_LPAREN] = ACTIONS(2143), + [anon_sym___global] = ACTIONS(2143), + [anon_sym_type] = ACTIONS(2143), + [anon_sym_PIPE] = ACTIONS(2143), + [anon_sym_fn] = ACTIONS(2143), + [anon_sym_PLUS] = ACTIONS(2143), + [anon_sym_DASH] = ACTIONS(2143), + [anon_sym_STAR] = ACTIONS(2143), + [anon_sym_SLASH] = ACTIONS(2143), + [anon_sym_PERCENT] = ACTIONS(2143), + [anon_sym_LT] = ACTIONS(2143), + [anon_sym_GT] = ACTIONS(2143), + [anon_sym_EQ_EQ] = ACTIONS(2143), + [anon_sym_BANG_EQ] = ACTIONS(2143), + [anon_sym_LT_EQ] = ACTIONS(2143), + [anon_sym_GT_EQ] = ACTIONS(2143), + [anon_sym_LBRACK] = ACTIONS(2141), + [anon_sym_struct] = ACTIONS(2143), + [anon_sym_union] = ACTIONS(2143), + [anon_sym_pub] = ACTIONS(2143), + [anon_sym_mut] = ACTIONS(2143), + [anon_sym_enum] = ACTIONS(2143), + [anon_sym_interface] = ACTIONS(2143), + [anon_sym_PLUS_PLUS] = ACTIONS(2143), + [anon_sym_DASH_DASH] = ACTIONS(2143), + [anon_sym_QMARK] = ACTIONS(2143), + [anon_sym_BANG] = ACTIONS(2143), + [anon_sym_go] = ACTIONS(2143), + [anon_sym_spawn] = ACTIONS(2143), + [anon_sym_json_DOTdecode] = ACTIONS(2143), + [anon_sym_LBRACK2] = ACTIONS(2143), + [anon_sym_TILDE] = ACTIONS(2143), + [anon_sym_CARET] = ACTIONS(2143), + [anon_sym_AMP] = ACTIONS(2143), + [anon_sym_LT_DASH] = ACTIONS(2143), + [anon_sym_LT_LT] = ACTIONS(2143), + [anon_sym_GT_GT] = ACTIONS(2143), + [anon_sym_GT_GT_GT] = ACTIONS(2143), + [anon_sym_AMP_CARET] = ACTIONS(2143), + [anon_sym_AMP_AMP] = ACTIONS(2143), + [anon_sym_PIPE_PIPE] = ACTIONS(2143), + [anon_sym_or] = ACTIONS(2143), + [sym_none] = ACTIONS(2143), + [sym_true] = ACTIONS(2143), + [sym_false] = ACTIONS(2143), + [sym_nil] = ACTIONS(2143), + [anon_sym_QMARK_DOT] = ACTIONS(2143), + [anon_sym_POUND_LBRACK] = ACTIONS(2143), + [anon_sym_if] = ACTIONS(2143), + [anon_sym_DOLLARif] = ACTIONS(2143), + [anon_sym_is] = ACTIONS(2143), + [anon_sym_BANGis] = ACTIONS(2143), + [anon_sym_in] = ACTIONS(2143), + [anon_sym_BANGin] = ACTIONS(2143), + [anon_sym_match] = ACTIONS(2143), + [anon_sym_select] = ACTIONS(2143), + [anon_sym_lock] = ACTIONS(2143), + [anon_sym_rlock] = ACTIONS(2143), + [anon_sym_unsafe] = ACTIONS(2143), + [anon_sym_sql] = ACTIONS(2143), + [sym_int_literal] = ACTIONS(2143), + [sym_float_literal] = ACTIONS(2143), + [sym_rune_literal] = ACTIONS(2143), + [sym_pseudo_compile_time_identifier] = ACTIONS(2143), + [anon_sym_shared] = ACTIONS(2143), + [anon_sym_map_LBRACK] = ACTIONS(2143), + [anon_sym_chan] = ACTIONS(2143), + [anon_sym_thread] = ACTIONS(2143), + [anon_sym_atomic] = ACTIONS(2143), + [anon_sym_assert] = ACTIONS(2143), + [anon_sym_defer] = ACTIONS(2143), + [anon_sym_goto] = ACTIONS(2143), + [anon_sym_break] = ACTIONS(2143), + [anon_sym_continue] = ACTIONS(2143), + [anon_sym_return] = ACTIONS(2143), + [anon_sym_DOLLARfor] = ACTIONS(2143), + [anon_sym_for] = ACTIONS(2143), + [anon_sym_POUND] = ACTIONS(2143), + [anon_sym_asm] = ACTIONS(2143), + [anon_sym_AT_LBRACK] = ACTIONS(2143), + [sym___double_quote] = ACTIONS(2143), + [sym___single_quote] = ACTIONS(2143), + [sym___c_double_quote] = ACTIONS(2143), + [sym___c_single_quote] = ACTIONS(2143), + [sym___r_double_quote] = ACTIONS(2143), + [sym___r_single_quote] = ACTIONS(2143), + }, + [1013] = { + [sym_line_comment] = STATE(1013), + [sym_block_comment] = STATE(1013), + [ts_builtin_sym_end] = ACTIONS(2499), + [sym_identifier] = ACTIONS(2501), + [anon_sym_LF] = ACTIONS(2501), + [anon_sym_CR] = ACTIONS(2501), + [anon_sym_CR_LF] = ACTIONS(2501), + [anon_sym_SLASH_SLASH] = ACTIONS(497), + [anon_sym_SLASH_STAR] = ACTIONS(499), + [anon_sym_DOT] = ACTIONS(2501), + [anon_sym_as] = ACTIONS(2501), + [anon_sym_LBRACE] = ACTIONS(2501), + [anon_sym_COMMA] = ACTIONS(2501), + [anon_sym_const] = ACTIONS(2501), + [anon_sym_LPAREN] = ACTIONS(2501), + [anon_sym___global] = ACTIONS(2501), + [anon_sym_type] = ACTIONS(2501), + [anon_sym_PIPE] = ACTIONS(2501), + [anon_sym_fn] = ACTIONS(2501), + [anon_sym_PLUS] = ACTIONS(2501), + [anon_sym_DASH] = ACTIONS(2501), + [anon_sym_STAR] = ACTIONS(2501), + [anon_sym_SLASH] = ACTIONS(2501), + [anon_sym_PERCENT] = ACTIONS(2501), + [anon_sym_LT] = ACTIONS(2501), + [anon_sym_GT] = ACTIONS(2501), + [anon_sym_EQ_EQ] = ACTIONS(2501), + [anon_sym_BANG_EQ] = ACTIONS(2501), + [anon_sym_LT_EQ] = ACTIONS(2501), + [anon_sym_GT_EQ] = ACTIONS(2501), + [anon_sym_LBRACK] = ACTIONS(2499), + [anon_sym_struct] = ACTIONS(2501), + [anon_sym_union] = ACTIONS(2501), + [anon_sym_pub] = ACTIONS(2501), + [anon_sym_mut] = ACTIONS(2501), + [anon_sym_enum] = ACTIONS(2501), + [anon_sym_interface] = ACTIONS(2501), + [anon_sym_PLUS_PLUS] = ACTIONS(2501), + [anon_sym_DASH_DASH] = ACTIONS(2501), + [anon_sym_QMARK] = ACTIONS(2501), + [anon_sym_BANG] = ACTIONS(2501), + [anon_sym_go] = ACTIONS(2501), + [anon_sym_spawn] = ACTIONS(2501), + [anon_sym_json_DOTdecode] = ACTIONS(2501), + [anon_sym_LBRACK2] = ACTIONS(2501), + [anon_sym_TILDE] = ACTIONS(2501), + [anon_sym_CARET] = ACTIONS(2501), + [anon_sym_AMP] = ACTIONS(2501), + [anon_sym_LT_DASH] = ACTIONS(2501), + [anon_sym_LT_LT] = ACTIONS(2501), + [anon_sym_GT_GT] = ACTIONS(2501), + [anon_sym_GT_GT_GT] = ACTIONS(2501), + [anon_sym_AMP_CARET] = ACTIONS(2501), + [anon_sym_AMP_AMP] = ACTIONS(2501), + [anon_sym_PIPE_PIPE] = ACTIONS(2501), + [anon_sym_or] = ACTIONS(2501), + [sym_none] = ACTIONS(2501), + [sym_true] = ACTIONS(2501), + [sym_false] = ACTIONS(2501), + [sym_nil] = ACTIONS(2501), + [anon_sym_QMARK_DOT] = ACTIONS(2501), + [anon_sym_POUND_LBRACK] = ACTIONS(2501), + [anon_sym_if] = ACTIONS(2501), + [anon_sym_DOLLARif] = ACTIONS(2501), + [anon_sym_is] = ACTIONS(2501), + [anon_sym_BANGis] = ACTIONS(2501), + [anon_sym_in] = ACTIONS(2501), + [anon_sym_BANGin] = ACTIONS(2501), + [anon_sym_match] = ACTIONS(2501), + [anon_sym_select] = ACTIONS(2501), + [anon_sym_lock] = ACTIONS(2501), + [anon_sym_rlock] = ACTIONS(2501), + [anon_sym_unsafe] = ACTIONS(2501), + [anon_sym_sql] = ACTIONS(2501), + [sym_int_literal] = ACTIONS(2501), + [sym_float_literal] = ACTIONS(2501), + [sym_rune_literal] = ACTIONS(2501), + [sym_pseudo_compile_time_identifier] = ACTIONS(2501), + [anon_sym_shared] = ACTIONS(2501), + [anon_sym_map_LBRACK] = ACTIONS(2501), + [anon_sym_chan] = ACTIONS(2501), + [anon_sym_thread] = ACTIONS(2501), + [anon_sym_atomic] = ACTIONS(2501), + [anon_sym_assert] = ACTIONS(2501), + [anon_sym_defer] = ACTIONS(2501), + [anon_sym_goto] = ACTIONS(2501), + [anon_sym_break] = ACTIONS(2501), + [anon_sym_continue] = ACTIONS(2501), + [anon_sym_return] = ACTIONS(2501), + [anon_sym_DOLLARfor] = ACTIONS(2501), + [anon_sym_for] = ACTIONS(2501), + [anon_sym_POUND] = ACTIONS(2501), + [anon_sym_asm] = ACTIONS(2501), + [anon_sym_AT_LBRACK] = ACTIONS(2501), + [sym___double_quote] = ACTIONS(2501), + [sym___single_quote] = ACTIONS(2501), + [sym___c_double_quote] = ACTIONS(2501), + [sym___c_single_quote] = ACTIONS(2501), + [sym___r_double_quote] = ACTIONS(2501), + [sym___r_single_quote] = ACTIONS(2501), + }, + [1014] = { + [sym_line_comment] = STATE(1014), + [sym_block_comment] = STATE(1014), + [ts_builtin_sym_end] = ACTIONS(2469), + [sym_identifier] = ACTIONS(2471), + [anon_sym_LF] = ACTIONS(2471), + [anon_sym_CR] = ACTIONS(2471), + [anon_sym_CR_LF] = ACTIONS(2471), + [anon_sym_SLASH_SLASH] = ACTIONS(497), + [anon_sym_SLASH_STAR] = ACTIONS(499), + [anon_sym_DOT] = ACTIONS(2471), + [anon_sym_as] = ACTIONS(2471), + [anon_sym_LBRACE] = ACTIONS(2471), + [anon_sym_COMMA] = ACTIONS(2471), + [anon_sym_const] = ACTIONS(2471), + [anon_sym_LPAREN] = ACTIONS(2471), + [anon_sym___global] = ACTIONS(2471), + [anon_sym_type] = ACTIONS(2471), + [anon_sym_PIPE] = ACTIONS(2471), + [anon_sym_fn] = ACTIONS(2471), + [anon_sym_PLUS] = ACTIONS(2471), + [anon_sym_DASH] = ACTIONS(2471), + [anon_sym_STAR] = ACTIONS(2471), + [anon_sym_SLASH] = ACTIONS(2471), + [anon_sym_PERCENT] = ACTIONS(2471), + [anon_sym_LT] = ACTIONS(2471), + [anon_sym_GT] = ACTIONS(2471), + [anon_sym_EQ_EQ] = ACTIONS(2471), + [anon_sym_BANG_EQ] = ACTIONS(2471), + [anon_sym_LT_EQ] = ACTIONS(2471), + [anon_sym_GT_EQ] = ACTIONS(2471), + [anon_sym_LBRACK] = ACTIONS(2469), + [anon_sym_struct] = ACTIONS(2471), + [anon_sym_union] = ACTIONS(2471), + [anon_sym_pub] = ACTIONS(2471), + [anon_sym_mut] = ACTIONS(2471), + [anon_sym_enum] = ACTIONS(2471), + [anon_sym_interface] = ACTIONS(2471), + [anon_sym_PLUS_PLUS] = ACTIONS(2471), + [anon_sym_DASH_DASH] = ACTIONS(2471), + [anon_sym_QMARK] = ACTIONS(2471), + [anon_sym_BANG] = ACTIONS(2471), + [anon_sym_go] = ACTIONS(2471), + [anon_sym_spawn] = ACTIONS(2471), + [anon_sym_json_DOTdecode] = ACTIONS(2471), + [anon_sym_LBRACK2] = ACTIONS(2471), + [anon_sym_TILDE] = ACTIONS(2471), + [anon_sym_CARET] = ACTIONS(2471), + [anon_sym_AMP] = ACTIONS(2471), + [anon_sym_LT_DASH] = ACTIONS(2471), + [anon_sym_LT_LT] = ACTIONS(2471), + [anon_sym_GT_GT] = ACTIONS(2471), + [anon_sym_GT_GT_GT] = ACTIONS(2471), + [anon_sym_AMP_CARET] = ACTIONS(2471), + [anon_sym_AMP_AMP] = ACTIONS(2471), + [anon_sym_PIPE_PIPE] = ACTIONS(2471), + [anon_sym_or] = ACTIONS(2471), + [sym_none] = ACTIONS(2471), + [sym_true] = ACTIONS(2471), + [sym_false] = ACTIONS(2471), + [sym_nil] = ACTIONS(2471), + [anon_sym_QMARK_DOT] = ACTIONS(2471), + [anon_sym_POUND_LBRACK] = ACTIONS(2471), + [anon_sym_if] = ACTIONS(2471), + [anon_sym_DOLLARif] = ACTIONS(2471), + [anon_sym_is] = ACTIONS(2471), + [anon_sym_BANGis] = ACTIONS(2471), + [anon_sym_in] = ACTIONS(2471), + [anon_sym_BANGin] = ACTIONS(2471), + [anon_sym_match] = ACTIONS(2471), + [anon_sym_select] = ACTIONS(2471), + [anon_sym_lock] = ACTIONS(2471), + [anon_sym_rlock] = ACTIONS(2471), + [anon_sym_unsafe] = ACTIONS(2471), + [anon_sym_sql] = ACTIONS(2471), + [sym_int_literal] = ACTIONS(2471), + [sym_float_literal] = ACTIONS(2471), + [sym_rune_literal] = ACTIONS(2471), + [sym_pseudo_compile_time_identifier] = ACTIONS(2471), + [anon_sym_shared] = ACTIONS(2471), + [anon_sym_map_LBRACK] = ACTIONS(2471), + [anon_sym_chan] = ACTIONS(2471), + [anon_sym_thread] = ACTIONS(2471), + [anon_sym_atomic] = ACTIONS(2471), + [anon_sym_assert] = ACTIONS(2471), + [anon_sym_defer] = ACTIONS(2471), + [anon_sym_goto] = ACTIONS(2471), + [anon_sym_break] = ACTIONS(2471), + [anon_sym_continue] = ACTIONS(2471), + [anon_sym_return] = ACTIONS(2471), + [anon_sym_DOLLARfor] = ACTIONS(2471), + [anon_sym_for] = ACTIONS(2471), + [anon_sym_POUND] = ACTIONS(2471), + [anon_sym_asm] = ACTIONS(2471), + [anon_sym_AT_LBRACK] = ACTIONS(2471), + [sym___double_quote] = ACTIONS(2471), + [sym___single_quote] = ACTIONS(2471), + [sym___c_double_quote] = ACTIONS(2471), + [sym___c_single_quote] = ACTIONS(2471), + [sym___r_double_quote] = ACTIONS(2471), + [sym___r_single_quote] = ACTIONS(2471), + }, + [1015] = { + [sym_line_comment] = STATE(1015), + [sym_block_comment] = STATE(1015), + [ts_builtin_sym_end] = ACTIONS(2682), + [sym_identifier] = ACTIONS(2684), + [anon_sym_LF] = ACTIONS(2684), + [anon_sym_CR] = ACTIONS(2684), + [anon_sym_CR_LF] = ACTIONS(2684), + [anon_sym_SLASH_SLASH] = ACTIONS(497), + [anon_sym_SLASH_STAR] = ACTIONS(499), + [anon_sym_DOT] = ACTIONS(2684), + [anon_sym_as] = ACTIONS(2684), + [anon_sym_LBRACE] = ACTIONS(2684), + [anon_sym_COMMA] = ACTIONS(2684), + [anon_sym_const] = ACTIONS(2684), + [anon_sym_LPAREN] = ACTIONS(2684), + [anon_sym___global] = ACTIONS(2684), + [anon_sym_type] = ACTIONS(2684), + [anon_sym_PIPE] = ACTIONS(2684), + [anon_sym_fn] = ACTIONS(2684), + [anon_sym_PLUS] = ACTIONS(2684), + [anon_sym_DASH] = ACTIONS(2684), + [anon_sym_STAR] = ACTIONS(2684), + [anon_sym_SLASH] = ACTIONS(2684), + [anon_sym_PERCENT] = ACTIONS(2684), + [anon_sym_LT] = ACTIONS(2684), + [anon_sym_GT] = ACTIONS(2684), + [anon_sym_EQ_EQ] = ACTIONS(2684), + [anon_sym_BANG_EQ] = ACTIONS(2684), + [anon_sym_LT_EQ] = ACTIONS(2684), + [anon_sym_GT_EQ] = ACTIONS(2684), + [anon_sym_LBRACK] = ACTIONS(2682), + [anon_sym_struct] = ACTIONS(2684), + [anon_sym_union] = ACTIONS(2684), + [anon_sym_pub] = ACTIONS(2684), + [anon_sym_mut] = ACTIONS(2684), + [anon_sym_enum] = ACTIONS(2684), + [anon_sym_interface] = ACTIONS(2684), + [anon_sym_PLUS_PLUS] = ACTIONS(2684), + [anon_sym_DASH_DASH] = ACTIONS(2684), + [anon_sym_QMARK] = ACTIONS(2684), + [anon_sym_BANG] = ACTIONS(2684), + [anon_sym_go] = ACTIONS(2684), + [anon_sym_spawn] = ACTIONS(2684), + [anon_sym_json_DOTdecode] = ACTIONS(2684), + [anon_sym_LBRACK2] = ACTIONS(2684), + [anon_sym_TILDE] = ACTIONS(2684), + [anon_sym_CARET] = ACTIONS(2684), + [anon_sym_AMP] = ACTIONS(2684), + [anon_sym_LT_DASH] = ACTIONS(2684), + [anon_sym_LT_LT] = ACTIONS(2684), + [anon_sym_GT_GT] = ACTIONS(2684), + [anon_sym_GT_GT_GT] = ACTIONS(2684), + [anon_sym_AMP_CARET] = ACTIONS(2684), + [anon_sym_AMP_AMP] = ACTIONS(2684), + [anon_sym_PIPE_PIPE] = ACTIONS(2684), + [anon_sym_or] = ACTIONS(2684), + [sym_none] = ACTIONS(2684), + [sym_true] = ACTIONS(2684), + [sym_false] = ACTIONS(2684), + [sym_nil] = ACTIONS(2684), + [anon_sym_QMARK_DOT] = ACTIONS(2684), + [anon_sym_POUND_LBRACK] = ACTIONS(2684), + [anon_sym_if] = ACTIONS(2684), + [anon_sym_DOLLARif] = ACTIONS(2684), + [anon_sym_is] = ACTIONS(2684), + [anon_sym_BANGis] = ACTIONS(2684), + [anon_sym_in] = ACTIONS(2684), + [anon_sym_BANGin] = ACTIONS(2684), + [anon_sym_match] = ACTIONS(2684), + [anon_sym_select] = ACTIONS(2684), + [anon_sym_lock] = ACTIONS(2684), + [anon_sym_rlock] = ACTIONS(2684), + [anon_sym_unsafe] = ACTIONS(2684), + [anon_sym_sql] = ACTIONS(2684), + [sym_int_literal] = ACTIONS(2684), + [sym_float_literal] = ACTIONS(2684), + [sym_rune_literal] = ACTIONS(2684), + [sym_pseudo_compile_time_identifier] = ACTIONS(2684), + [anon_sym_shared] = ACTIONS(2684), + [anon_sym_map_LBRACK] = ACTIONS(2684), + [anon_sym_chan] = ACTIONS(2684), + [anon_sym_thread] = ACTIONS(2684), + [anon_sym_atomic] = ACTIONS(2684), + [anon_sym_assert] = ACTIONS(2684), + [anon_sym_defer] = ACTIONS(2684), + [anon_sym_goto] = ACTIONS(2684), + [anon_sym_break] = ACTIONS(2684), + [anon_sym_continue] = ACTIONS(2684), + [anon_sym_return] = ACTIONS(2684), + [anon_sym_DOLLARfor] = ACTIONS(2684), + [anon_sym_for] = ACTIONS(2684), + [anon_sym_POUND] = ACTIONS(2684), + [anon_sym_asm] = ACTIONS(2684), + [anon_sym_AT_LBRACK] = ACTIONS(2684), + [sym___double_quote] = ACTIONS(2684), + [sym___single_quote] = ACTIONS(2684), + [sym___c_double_quote] = ACTIONS(2684), + [sym___c_single_quote] = ACTIONS(2684), + [sym___r_double_quote] = ACTIONS(2684), + [sym___r_single_quote] = ACTIONS(2684), + }, + [1016] = { + [sym_line_comment] = STATE(1016), + [sym_block_comment] = STATE(1016), + [ts_builtin_sym_end] = ACTIONS(2309), + [sym_identifier] = ACTIONS(2311), + [anon_sym_LF] = ACTIONS(2311), + [anon_sym_CR] = ACTIONS(2311), + [anon_sym_CR_LF] = ACTIONS(2311), + [anon_sym_SLASH_SLASH] = ACTIONS(497), + [anon_sym_SLASH_STAR] = ACTIONS(499), + [anon_sym_DOT] = ACTIONS(2311), + [anon_sym_as] = ACTIONS(2311), + [anon_sym_LBRACE] = ACTIONS(2311), + [anon_sym_COMMA] = ACTIONS(2311), + [anon_sym_const] = ACTIONS(2311), + [anon_sym_LPAREN] = ACTIONS(2311), + [anon_sym___global] = ACTIONS(2311), + [anon_sym_type] = ACTIONS(2311), + [anon_sym_PIPE] = ACTIONS(2311), + [anon_sym_fn] = ACTIONS(2311), + [anon_sym_PLUS] = ACTIONS(2311), + [anon_sym_DASH] = ACTIONS(2311), + [anon_sym_STAR] = ACTIONS(2311), + [anon_sym_SLASH] = ACTIONS(2311), + [anon_sym_PERCENT] = ACTIONS(2311), + [anon_sym_LT] = ACTIONS(2311), + [anon_sym_GT] = ACTIONS(2311), + [anon_sym_EQ_EQ] = ACTIONS(2311), + [anon_sym_BANG_EQ] = ACTIONS(2311), + [anon_sym_LT_EQ] = ACTIONS(2311), + [anon_sym_GT_EQ] = ACTIONS(2311), + [anon_sym_LBRACK] = ACTIONS(2309), + [anon_sym_struct] = ACTIONS(2311), + [anon_sym_union] = ACTIONS(2311), + [anon_sym_pub] = ACTIONS(2311), + [anon_sym_mut] = ACTIONS(2311), + [anon_sym_enum] = ACTIONS(2311), + [anon_sym_interface] = ACTIONS(2311), + [anon_sym_PLUS_PLUS] = ACTIONS(2311), + [anon_sym_DASH_DASH] = ACTIONS(2311), + [anon_sym_QMARK] = ACTIONS(2311), + [anon_sym_BANG] = ACTIONS(2311), + [anon_sym_go] = ACTIONS(2311), + [anon_sym_spawn] = ACTIONS(2311), + [anon_sym_json_DOTdecode] = ACTIONS(2311), + [anon_sym_LBRACK2] = ACTIONS(2311), + [anon_sym_TILDE] = ACTIONS(2311), + [anon_sym_CARET] = ACTIONS(2311), + [anon_sym_AMP] = ACTIONS(2311), + [anon_sym_LT_DASH] = ACTIONS(2311), + [anon_sym_LT_LT] = ACTIONS(2311), + [anon_sym_GT_GT] = ACTIONS(2311), + [anon_sym_GT_GT_GT] = ACTIONS(2311), + [anon_sym_AMP_CARET] = ACTIONS(2311), + [anon_sym_AMP_AMP] = ACTIONS(2311), + [anon_sym_PIPE_PIPE] = ACTIONS(2311), + [anon_sym_or] = ACTIONS(2311), + [sym_none] = ACTIONS(2311), + [sym_true] = ACTIONS(2311), + [sym_false] = ACTIONS(2311), + [sym_nil] = ACTIONS(2311), + [anon_sym_QMARK_DOT] = ACTIONS(2311), + [anon_sym_POUND_LBRACK] = ACTIONS(2311), + [anon_sym_if] = ACTIONS(2311), + [anon_sym_DOLLARif] = ACTIONS(2311), + [anon_sym_is] = ACTIONS(2311), + [anon_sym_BANGis] = ACTIONS(2311), + [anon_sym_in] = ACTIONS(2311), + [anon_sym_BANGin] = ACTIONS(2311), + [anon_sym_match] = ACTIONS(2311), + [anon_sym_select] = ACTIONS(2311), + [anon_sym_lock] = ACTIONS(2311), + [anon_sym_rlock] = ACTIONS(2311), + [anon_sym_unsafe] = ACTIONS(2311), + [anon_sym_sql] = ACTIONS(2311), + [sym_int_literal] = ACTIONS(2311), + [sym_float_literal] = ACTIONS(2311), + [sym_rune_literal] = ACTIONS(2311), + [sym_pseudo_compile_time_identifier] = ACTIONS(2311), + [anon_sym_shared] = ACTIONS(2311), + [anon_sym_map_LBRACK] = ACTIONS(2311), + [anon_sym_chan] = ACTIONS(2311), + [anon_sym_thread] = ACTIONS(2311), + [anon_sym_atomic] = ACTIONS(2311), + [anon_sym_assert] = ACTIONS(2311), + [anon_sym_defer] = ACTIONS(2311), + [anon_sym_goto] = ACTIONS(2311), + [anon_sym_break] = ACTIONS(2311), + [anon_sym_continue] = ACTIONS(2311), + [anon_sym_return] = ACTIONS(2311), + [anon_sym_DOLLARfor] = ACTIONS(2311), + [anon_sym_for] = ACTIONS(2311), + [anon_sym_POUND] = ACTIONS(2311), + [anon_sym_asm] = ACTIONS(2311), + [anon_sym_AT_LBRACK] = ACTIONS(2311), + [sym___double_quote] = ACTIONS(2311), + [sym___single_quote] = ACTIONS(2311), + [sym___c_double_quote] = ACTIONS(2311), + [sym___c_single_quote] = ACTIONS(2311), + [sym___r_double_quote] = ACTIONS(2311), + [sym___r_single_quote] = ACTIONS(2311), + }, + [1017] = { + [sym_line_comment] = STATE(1017), + [sym_block_comment] = STATE(1017), + [ts_builtin_sym_end] = ACTIONS(2301), + [sym_identifier] = ACTIONS(2303), + [anon_sym_LF] = ACTIONS(2303), + [anon_sym_CR] = ACTIONS(2303), + [anon_sym_CR_LF] = ACTIONS(2303), + [anon_sym_SLASH_SLASH] = ACTIONS(497), + [anon_sym_SLASH_STAR] = ACTIONS(499), + [anon_sym_DOT] = ACTIONS(2303), + [anon_sym_as] = ACTIONS(2303), + [anon_sym_LBRACE] = ACTIONS(2303), + [anon_sym_COMMA] = ACTIONS(2303), + [anon_sym_const] = ACTIONS(2303), + [anon_sym_LPAREN] = ACTIONS(2303), + [anon_sym___global] = ACTIONS(2303), + [anon_sym_type] = ACTIONS(2303), + [anon_sym_PIPE] = ACTIONS(2303), + [anon_sym_fn] = ACTIONS(2303), + [anon_sym_PLUS] = ACTIONS(2303), + [anon_sym_DASH] = ACTIONS(2303), + [anon_sym_STAR] = ACTIONS(2303), + [anon_sym_SLASH] = ACTIONS(2303), + [anon_sym_PERCENT] = ACTIONS(2303), + [anon_sym_LT] = ACTIONS(2303), + [anon_sym_GT] = ACTIONS(2303), + [anon_sym_EQ_EQ] = ACTIONS(2303), + [anon_sym_BANG_EQ] = ACTIONS(2303), + [anon_sym_LT_EQ] = ACTIONS(2303), + [anon_sym_GT_EQ] = ACTIONS(2303), + [anon_sym_LBRACK] = ACTIONS(2301), + [anon_sym_struct] = ACTIONS(2303), + [anon_sym_union] = ACTIONS(2303), + [anon_sym_pub] = ACTIONS(2303), + [anon_sym_mut] = ACTIONS(2303), + [anon_sym_enum] = ACTIONS(2303), + [anon_sym_interface] = ACTIONS(2303), + [anon_sym_PLUS_PLUS] = ACTIONS(2303), + [anon_sym_DASH_DASH] = ACTIONS(2303), + [anon_sym_QMARK] = ACTIONS(2303), + [anon_sym_BANG] = ACTIONS(2303), + [anon_sym_go] = ACTIONS(2303), + [anon_sym_spawn] = ACTIONS(2303), + [anon_sym_json_DOTdecode] = ACTIONS(2303), + [anon_sym_LBRACK2] = ACTIONS(2303), + [anon_sym_TILDE] = ACTIONS(2303), + [anon_sym_CARET] = ACTIONS(2303), + [anon_sym_AMP] = ACTIONS(2303), + [anon_sym_LT_DASH] = ACTIONS(2303), + [anon_sym_LT_LT] = ACTIONS(2303), + [anon_sym_GT_GT] = ACTIONS(2303), + [anon_sym_GT_GT_GT] = ACTIONS(2303), + [anon_sym_AMP_CARET] = ACTIONS(2303), + [anon_sym_AMP_AMP] = ACTIONS(2303), + [anon_sym_PIPE_PIPE] = ACTIONS(2303), + [anon_sym_or] = ACTIONS(2303), + [sym_none] = ACTIONS(2303), + [sym_true] = ACTIONS(2303), + [sym_false] = ACTIONS(2303), + [sym_nil] = ACTIONS(2303), + [anon_sym_QMARK_DOT] = ACTIONS(2303), + [anon_sym_POUND_LBRACK] = ACTIONS(2303), + [anon_sym_if] = ACTIONS(2303), + [anon_sym_DOLLARif] = ACTIONS(2303), + [anon_sym_is] = ACTIONS(2303), + [anon_sym_BANGis] = ACTIONS(2303), + [anon_sym_in] = ACTIONS(2303), + [anon_sym_BANGin] = ACTIONS(2303), + [anon_sym_match] = ACTIONS(2303), + [anon_sym_select] = ACTIONS(2303), + [anon_sym_lock] = ACTIONS(2303), + [anon_sym_rlock] = ACTIONS(2303), + [anon_sym_unsafe] = ACTIONS(2303), + [anon_sym_sql] = ACTIONS(2303), + [sym_int_literal] = ACTIONS(2303), + [sym_float_literal] = ACTIONS(2303), + [sym_rune_literal] = ACTIONS(2303), + [sym_pseudo_compile_time_identifier] = ACTIONS(2303), + [anon_sym_shared] = ACTIONS(2303), + [anon_sym_map_LBRACK] = ACTIONS(2303), + [anon_sym_chan] = ACTIONS(2303), + [anon_sym_thread] = ACTIONS(2303), + [anon_sym_atomic] = ACTIONS(2303), + [anon_sym_assert] = ACTIONS(2303), + [anon_sym_defer] = ACTIONS(2303), + [anon_sym_goto] = ACTIONS(2303), + [anon_sym_break] = ACTIONS(2303), + [anon_sym_continue] = ACTIONS(2303), + [anon_sym_return] = ACTIONS(2303), + [anon_sym_DOLLARfor] = ACTIONS(2303), + [anon_sym_for] = ACTIONS(2303), + [anon_sym_POUND] = ACTIONS(2303), + [anon_sym_asm] = ACTIONS(2303), + [anon_sym_AT_LBRACK] = ACTIONS(2303), + [sym___double_quote] = ACTIONS(2303), + [sym___single_quote] = ACTIONS(2303), + [sym___c_double_quote] = ACTIONS(2303), + [sym___c_single_quote] = ACTIONS(2303), + [sym___r_double_quote] = ACTIONS(2303), + [sym___r_single_quote] = ACTIONS(2303), + }, + [1018] = { + [sym_line_comment] = STATE(1018), + [sym_block_comment] = STATE(1018), + [ts_builtin_sym_end] = ACTIONS(2748), + [sym_identifier] = ACTIONS(2750), + [anon_sym_LF] = ACTIONS(2750), + [anon_sym_CR] = ACTIONS(2750), + [anon_sym_CR_LF] = ACTIONS(2750), + [anon_sym_SLASH_SLASH] = ACTIONS(497), + [anon_sym_SLASH_STAR] = ACTIONS(499), + [anon_sym_DOT] = ACTIONS(2750), + [anon_sym_as] = ACTIONS(2750), + [anon_sym_LBRACE] = ACTIONS(2750), + [anon_sym_COMMA] = ACTIONS(2750), + [anon_sym_const] = ACTIONS(2750), + [anon_sym_LPAREN] = ACTIONS(2750), + [anon_sym___global] = ACTIONS(2750), + [anon_sym_type] = ACTIONS(2750), + [anon_sym_PIPE] = ACTIONS(2750), + [anon_sym_fn] = ACTIONS(2750), + [anon_sym_PLUS] = ACTIONS(2750), + [anon_sym_DASH] = ACTIONS(2750), + [anon_sym_STAR] = ACTIONS(2750), + [anon_sym_SLASH] = ACTIONS(2750), + [anon_sym_PERCENT] = ACTIONS(2750), + [anon_sym_LT] = ACTIONS(2750), + [anon_sym_GT] = ACTIONS(2750), + [anon_sym_EQ_EQ] = ACTIONS(2750), + [anon_sym_BANG_EQ] = ACTIONS(2750), + [anon_sym_LT_EQ] = ACTIONS(2750), + [anon_sym_GT_EQ] = ACTIONS(2750), + [anon_sym_LBRACK] = ACTIONS(2748), + [anon_sym_struct] = ACTIONS(2750), + [anon_sym_union] = ACTIONS(2750), + [anon_sym_pub] = ACTIONS(2750), + [anon_sym_mut] = ACTIONS(2750), + [anon_sym_enum] = ACTIONS(2750), + [anon_sym_interface] = ACTIONS(2750), + [anon_sym_PLUS_PLUS] = ACTIONS(2750), + [anon_sym_DASH_DASH] = ACTIONS(2750), + [anon_sym_QMARK] = ACTIONS(2750), + [anon_sym_BANG] = ACTIONS(2750), + [anon_sym_go] = ACTIONS(2750), + [anon_sym_spawn] = ACTIONS(2750), + [anon_sym_json_DOTdecode] = ACTIONS(2750), + [anon_sym_LBRACK2] = ACTIONS(2750), + [anon_sym_TILDE] = ACTIONS(2750), + [anon_sym_CARET] = ACTIONS(2750), + [anon_sym_AMP] = ACTIONS(2750), + [anon_sym_LT_DASH] = ACTIONS(2750), + [anon_sym_LT_LT] = ACTIONS(2750), + [anon_sym_GT_GT] = ACTIONS(2750), + [anon_sym_GT_GT_GT] = ACTIONS(2750), + [anon_sym_AMP_CARET] = ACTIONS(2750), + [anon_sym_AMP_AMP] = ACTIONS(2750), + [anon_sym_PIPE_PIPE] = ACTIONS(2750), + [anon_sym_or] = ACTIONS(2750), + [sym_none] = ACTIONS(2750), + [sym_true] = ACTIONS(2750), + [sym_false] = ACTIONS(2750), + [sym_nil] = ACTIONS(2750), + [anon_sym_QMARK_DOT] = ACTIONS(2750), + [anon_sym_POUND_LBRACK] = ACTIONS(2750), + [anon_sym_if] = ACTIONS(2750), + [anon_sym_DOLLARif] = ACTIONS(2750), + [anon_sym_is] = ACTIONS(2750), + [anon_sym_BANGis] = ACTIONS(2750), + [anon_sym_in] = ACTIONS(2750), + [anon_sym_BANGin] = ACTIONS(2750), + [anon_sym_match] = ACTIONS(2750), + [anon_sym_select] = ACTIONS(2750), + [anon_sym_lock] = ACTIONS(2750), + [anon_sym_rlock] = ACTIONS(2750), + [anon_sym_unsafe] = ACTIONS(2750), + [anon_sym_sql] = ACTIONS(2750), + [sym_int_literal] = ACTIONS(2750), + [sym_float_literal] = ACTIONS(2750), + [sym_rune_literal] = ACTIONS(2750), + [sym_pseudo_compile_time_identifier] = ACTIONS(2750), + [anon_sym_shared] = ACTIONS(2750), + [anon_sym_map_LBRACK] = ACTIONS(2750), + [anon_sym_chan] = ACTIONS(2750), + [anon_sym_thread] = ACTIONS(2750), + [anon_sym_atomic] = ACTIONS(2750), + [anon_sym_assert] = ACTIONS(2750), + [anon_sym_defer] = ACTIONS(2750), + [anon_sym_goto] = ACTIONS(2750), + [anon_sym_break] = ACTIONS(2750), + [anon_sym_continue] = ACTIONS(2750), + [anon_sym_return] = ACTIONS(2750), + [anon_sym_DOLLARfor] = ACTIONS(2750), + [anon_sym_for] = ACTIONS(2750), + [anon_sym_POUND] = ACTIONS(2750), + [anon_sym_asm] = ACTIONS(2750), + [anon_sym_AT_LBRACK] = ACTIONS(2750), + [sym___double_quote] = ACTIONS(2750), + [sym___single_quote] = ACTIONS(2750), + [sym___c_double_quote] = ACTIONS(2750), + [sym___c_single_quote] = ACTIONS(2750), + [sym___r_double_quote] = ACTIONS(2750), + [sym___r_single_quote] = ACTIONS(2750), + }, + [1019] = { + [sym_line_comment] = STATE(1019), + [sym_block_comment] = STATE(1019), + [ts_builtin_sym_end] = ACTIONS(2295), + [sym_identifier] = ACTIONS(2297), + [anon_sym_LF] = ACTIONS(2297), + [anon_sym_CR] = ACTIONS(2297), + [anon_sym_CR_LF] = ACTIONS(2297), + [anon_sym_SLASH_SLASH] = ACTIONS(497), + [anon_sym_SLASH_STAR] = ACTIONS(499), + [anon_sym_DOT] = ACTIONS(2297), + [anon_sym_as] = ACTIONS(2297), + [anon_sym_LBRACE] = ACTIONS(2297), + [anon_sym_COMMA] = ACTIONS(2297), + [anon_sym_const] = ACTIONS(2297), + [anon_sym_LPAREN] = ACTIONS(2297), + [anon_sym___global] = ACTIONS(2297), + [anon_sym_type] = ACTIONS(2297), + [anon_sym_PIPE] = ACTIONS(2297), + [anon_sym_fn] = ACTIONS(2297), + [anon_sym_PLUS] = ACTIONS(2297), + [anon_sym_DASH] = ACTIONS(2297), + [anon_sym_STAR] = ACTIONS(2297), + [anon_sym_SLASH] = ACTIONS(2297), + [anon_sym_PERCENT] = ACTIONS(2297), + [anon_sym_LT] = ACTIONS(2297), + [anon_sym_GT] = ACTIONS(2297), + [anon_sym_EQ_EQ] = ACTIONS(2297), + [anon_sym_BANG_EQ] = ACTIONS(2297), + [anon_sym_LT_EQ] = ACTIONS(2297), + [anon_sym_GT_EQ] = ACTIONS(2297), + [anon_sym_LBRACK] = ACTIONS(2295), + [anon_sym_struct] = ACTIONS(2297), + [anon_sym_union] = ACTIONS(2297), + [anon_sym_pub] = ACTIONS(2297), + [anon_sym_mut] = ACTIONS(2297), + [anon_sym_enum] = ACTIONS(2297), + [anon_sym_interface] = ACTIONS(2297), + [anon_sym_PLUS_PLUS] = ACTIONS(2297), + [anon_sym_DASH_DASH] = ACTIONS(2297), + [anon_sym_QMARK] = ACTIONS(2297), + [anon_sym_BANG] = ACTIONS(2297), + [anon_sym_go] = ACTIONS(2297), + [anon_sym_spawn] = ACTIONS(2297), + [anon_sym_json_DOTdecode] = ACTIONS(2297), + [anon_sym_LBRACK2] = ACTIONS(2297), + [anon_sym_TILDE] = ACTIONS(2297), + [anon_sym_CARET] = ACTIONS(2297), + [anon_sym_AMP] = ACTIONS(2297), + [anon_sym_LT_DASH] = ACTIONS(2297), + [anon_sym_LT_LT] = ACTIONS(2297), + [anon_sym_GT_GT] = ACTIONS(2297), + [anon_sym_GT_GT_GT] = ACTIONS(2297), + [anon_sym_AMP_CARET] = ACTIONS(2297), + [anon_sym_AMP_AMP] = ACTIONS(2297), + [anon_sym_PIPE_PIPE] = ACTIONS(2297), + [anon_sym_or] = ACTIONS(2297), + [sym_none] = ACTIONS(2297), + [sym_true] = ACTIONS(2297), + [sym_false] = ACTIONS(2297), + [sym_nil] = ACTIONS(2297), + [anon_sym_QMARK_DOT] = ACTIONS(2297), + [anon_sym_POUND_LBRACK] = ACTIONS(2297), + [anon_sym_if] = ACTIONS(2297), + [anon_sym_DOLLARif] = ACTIONS(2297), + [anon_sym_is] = ACTIONS(2297), + [anon_sym_BANGis] = ACTIONS(2297), + [anon_sym_in] = ACTIONS(2297), + [anon_sym_BANGin] = ACTIONS(2297), + [anon_sym_match] = ACTIONS(2297), + [anon_sym_select] = ACTIONS(2297), + [anon_sym_lock] = ACTIONS(2297), + [anon_sym_rlock] = ACTIONS(2297), + [anon_sym_unsafe] = ACTIONS(2297), + [anon_sym_sql] = ACTIONS(2297), + [sym_int_literal] = ACTIONS(2297), + [sym_float_literal] = ACTIONS(2297), + [sym_rune_literal] = ACTIONS(2297), + [sym_pseudo_compile_time_identifier] = ACTIONS(2297), + [anon_sym_shared] = ACTIONS(2297), + [anon_sym_map_LBRACK] = ACTIONS(2297), + [anon_sym_chan] = ACTIONS(2297), + [anon_sym_thread] = ACTIONS(2297), + [anon_sym_atomic] = ACTIONS(2297), + [anon_sym_assert] = ACTIONS(2297), + [anon_sym_defer] = ACTIONS(2297), + [anon_sym_goto] = ACTIONS(2297), + [anon_sym_break] = ACTIONS(2297), + [anon_sym_continue] = ACTIONS(2297), + [anon_sym_return] = ACTIONS(2297), + [anon_sym_DOLLARfor] = ACTIONS(2297), + [anon_sym_for] = ACTIONS(2297), + [anon_sym_POUND] = ACTIONS(2297), + [anon_sym_asm] = ACTIONS(2297), + [anon_sym_AT_LBRACK] = ACTIONS(2297), + [sym___double_quote] = ACTIONS(2297), + [sym___single_quote] = ACTIONS(2297), + [sym___c_double_quote] = ACTIONS(2297), + [sym___c_single_quote] = ACTIONS(2297), + [sym___r_double_quote] = ACTIONS(2297), + [sym___r_single_quote] = ACTIONS(2297), + }, + [1020] = { + [sym_line_comment] = STATE(1020), + [sym_block_comment] = STATE(1020), + [ts_builtin_sym_end] = ACTIONS(2686), + [sym_identifier] = ACTIONS(2688), + [anon_sym_LF] = ACTIONS(2688), + [anon_sym_CR] = ACTIONS(2688), + [anon_sym_CR_LF] = ACTIONS(2688), + [anon_sym_SLASH_SLASH] = ACTIONS(497), + [anon_sym_SLASH_STAR] = ACTIONS(499), + [anon_sym_DOT] = ACTIONS(2688), + [anon_sym_as] = ACTIONS(2688), + [anon_sym_LBRACE] = ACTIONS(2688), + [anon_sym_COMMA] = ACTIONS(2688), + [anon_sym_const] = ACTIONS(2688), + [anon_sym_LPAREN] = ACTIONS(2688), + [anon_sym___global] = ACTIONS(2688), + [anon_sym_type] = ACTIONS(2688), + [anon_sym_PIPE] = ACTIONS(2688), + [anon_sym_fn] = ACTIONS(2688), + [anon_sym_PLUS] = ACTIONS(2688), + [anon_sym_DASH] = ACTIONS(2688), + [anon_sym_STAR] = ACTIONS(2688), + [anon_sym_SLASH] = ACTIONS(2688), + [anon_sym_PERCENT] = ACTIONS(2688), + [anon_sym_LT] = ACTIONS(2688), + [anon_sym_GT] = ACTIONS(2688), + [anon_sym_EQ_EQ] = ACTIONS(2688), + [anon_sym_BANG_EQ] = ACTIONS(2688), + [anon_sym_LT_EQ] = ACTIONS(2688), + [anon_sym_GT_EQ] = ACTIONS(2688), + [anon_sym_LBRACK] = ACTIONS(2686), + [anon_sym_struct] = ACTIONS(2688), + [anon_sym_union] = ACTIONS(2688), + [anon_sym_pub] = ACTIONS(2688), + [anon_sym_mut] = ACTIONS(2688), + [anon_sym_enum] = ACTIONS(2688), + [anon_sym_interface] = ACTIONS(2688), + [anon_sym_PLUS_PLUS] = ACTIONS(2688), + [anon_sym_DASH_DASH] = ACTIONS(2688), + [anon_sym_QMARK] = ACTIONS(2688), + [anon_sym_BANG] = ACTIONS(2688), + [anon_sym_go] = ACTIONS(2688), + [anon_sym_spawn] = ACTIONS(2688), + [anon_sym_json_DOTdecode] = ACTIONS(2688), + [anon_sym_LBRACK2] = ACTIONS(2688), + [anon_sym_TILDE] = ACTIONS(2688), + [anon_sym_CARET] = ACTIONS(2688), + [anon_sym_AMP] = ACTIONS(2688), + [anon_sym_LT_DASH] = ACTIONS(2688), + [anon_sym_LT_LT] = ACTIONS(2688), + [anon_sym_GT_GT] = ACTIONS(2688), + [anon_sym_GT_GT_GT] = ACTIONS(2688), + [anon_sym_AMP_CARET] = ACTIONS(2688), + [anon_sym_AMP_AMP] = ACTIONS(2688), + [anon_sym_PIPE_PIPE] = ACTIONS(2688), + [anon_sym_or] = ACTIONS(2688), + [sym_none] = ACTIONS(2688), + [sym_true] = ACTIONS(2688), + [sym_false] = ACTIONS(2688), + [sym_nil] = ACTIONS(2688), + [anon_sym_QMARK_DOT] = ACTIONS(2688), + [anon_sym_POUND_LBRACK] = ACTIONS(2688), + [anon_sym_if] = ACTIONS(2688), + [anon_sym_DOLLARif] = ACTIONS(2688), + [anon_sym_is] = ACTIONS(2688), + [anon_sym_BANGis] = ACTIONS(2688), + [anon_sym_in] = ACTIONS(2688), + [anon_sym_BANGin] = ACTIONS(2688), + [anon_sym_match] = ACTIONS(2688), + [anon_sym_select] = ACTIONS(2688), + [anon_sym_lock] = ACTIONS(2688), + [anon_sym_rlock] = ACTIONS(2688), + [anon_sym_unsafe] = ACTIONS(2688), + [anon_sym_sql] = ACTIONS(2688), + [sym_int_literal] = ACTIONS(2688), + [sym_float_literal] = ACTIONS(2688), + [sym_rune_literal] = ACTIONS(2688), + [sym_pseudo_compile_time_identifier] = ACTIONS(2688), + [anon_sym_shared] = ACTIONS(2688), + [anon_sym_map_LBRACK] = ACTIONS(2688), + [anon_sym_chan] = ACTIONS(2688), + [anon_sym_thread] = ACTIONS(2688), + [anon_sym_atomic] = ACTIONS(2688), + [anon_sym_assert] = ACTIONS(2688), + [anon_sym_defer] = ACTIONS(2688), + [anon_sym_goto] = ACTIONS(2688), + [anon_sym_break] = ACTIONS(2688), + [anon_sym_continue] = ACTIONS(2688), + [anon_sym_return] = ACTIONS(2688), + [anon_sym_DOLLARfor] = ACTIONS(2688), + [anon_sym_for] = ACTIONS(2688), + [anon_sym_POUND] = ACTIONS(2688), + [anon_sym_asm] = ACTIONS(2688), + [anon_sym_AT_LBRACK] = ACTIONS(2688), + [sym___double_quote] = ACTIONS(2688), + [sym___single_quote] = ACTIONS(2688), + [sym___c_double_quote] = ACTIONS(2688), + [sym___c_single_quote] = ACTIONS(2688), + [sym___r_double_quote] = ACTIONS(2688), + [sym___r_single_quote] = ACTIONS(2688), + }, + [1021] = { + [sym_line_comment] = STATE(1021), + [sym_block_comment] = STATE(1021), + [ts_builtin_sym_end] = ACTIONS(2209), + [sym_identifier] = ACTIONS(2211), + [anon_sym_LF] = ACTIONS(2211), + [anon_sym_CR] = ACTIONS(2211), + [anon_sym_CR_LF] = ACTIONS(2211), + [anon_sym_SLASH_SLASH] = ACTIONS(497), + [anon_sym_SLASH_STAR] = ACTIONS(499), + [anon_sym_DOT] = ACTIONS(2211), + [anon_sym_as] = ACTIONS(2211), + [anon_sym_LBRACE] = ACTIONS(2211), + [anon_sym_COMMA] = ACTIONS(2211), + [anon_sym_const] = ACTIONS(2211), + [anon_sym_LPAREN] = ACTIONS(2211), + [anon_sym___global] = ACTIONS(2211), + [anon_sym_type] = ACTIONS(2211), + [anon_sym_PIPE] = ACTIONS(2211), + [anon_sym_fn] = ACTIONS(2211), + [anon_sym_PLUS] = ACTIONS(2211), + [anon_sym_DASH] = ACTIONS(2211), + [anon_sym_STAR] = ACTIONS(2211), + [anon_sym_SLASH] = ACTIONS(2211), + [anon_sym_PERCENT] = ACTIONS(2211), + [anon_sym_LT] = ACTIONS(2211), + [anon_sym_GT] = ACTIONS(2211), + [anon_sym_EQ_EQ] = ACTIONS(2211), + [anon_sym_BANG_EQ] = ACTIONS(2211), + [anon_sym_LT_EQ] = ACTIONS(2211), + [anon_sym_GT_EQ] = ACTIONS(2211), + [anon_sym_LBRACK] = ACTIONS(2209), + [anon_sym_struct] = ACTIONS(2211), + [anon_sym_union] = ACTIONS(2211), + [anon_sym_pub] = ACTIONS(2211), + [anon_sym_mut] = ACTIONS(2211), + [anon_sym_enum] = ACTIONS(2211), + [anon_sym_interface] = ACTIONS(2211), + [anon_sym_PLUS_PLUS] = ACTIONS(2211), + [anon_sym_DASH_DASH] = ACTIONS(2211), + [anon_sym_QMARK] = ACTIONS(2211), + [anon_sym_BANG] = ACTIONS(2211), + [anon_sym_go] = ACTIONS(2211), + [anon_sym_spawn] = ACTIONS(2211), + [anon_sym_json_DOTdecode] = ACTIONS(2211), + [anon_sym_LBRACK2] = ACTIONS(2211), + [anon_sym_TILDE] = ACTIONS(2211), + [anon_sym_CARET] = ACTIONS(2211), + [anon_sym_AMP] = ACTIONS(2211), + [anon_sym_LT_DASH] = ACTIONS(2211), + [anon_sym_LT_LT] = ACTIONS(2211), + [anon_sym_GT_GT] = ACTIONS(2211), + [anon_sym_GT_GT_GT] = ACTIONS(2211), + [anon_sym_AMP_CARET] = ACTIONS(2211), + [anon_sym_AMP_AMP] = ACTIONS(2211), + [anon_sym_PIPE_PIPE] = ACTIONS(2211), + [anon_sym_or] = ACTIONS(2211), + [sym_none] = ACTIONS(2211), + [sym_true] = ACTIONS(2211), + [sym_false] = ACTIONS(2211), + [sym_nil] = ACTIONS(2211), + [anon_sym_QMARK_DOT] = ACTIONS(2211), + [anon_sym_POUND_LBRACK] = ACTIONS(2211), + [anon_sym_if] = ACTIONS(2211), + [anon_sym_DOLLARif] = ACTIONS(2211), + [anon_sym_is] = ACTIONS(2211), + [anon_sym_BANGis] = ACTIONS(2211), + [anon_sym_in] = ACTIONS(2211), + [anon_sym_BANGin] = ACTIONS(2211), + [anon_sym_match] = ACTIONS(2211), + [anon_sym_select] = ACTIONS(2211), + [anon_sym_lock] = ACTIONS(2211), + [anon_sym_rlock] = ACTIONS(2211), + [anon_sym_unsafe] = ACTIONS(2211), + [anon_sym_sql] = ACTIONS(2211), + [sym_int_literal] = ACTIONS(2211), + [sym_float_literal] = ACTIONS(2211), + [sym_rune_literal] = ACTIONS(2211), + [sym_pseudo_compile_time_identifier] = ACTIONS(2211), + [anon_sym_shared] = ACTIONS(2211), + [anon_sym_map_LBRACK] = ACTIONS(2211), + [anon_sym_chan] = ACTIONS(2211), + [anon_sym_thread] = ACTIONS(2211), + [anon_sym_atomic] = ACTIONS(2211), + [anon_sym_assert] = ACTIONS(2211), + [anon_sym_defer] = ACTIONS(2211), + [anon_sym_goto] = ACTIONS(2211), + [anon_sym_break] = ACTIONS(2211), + [anon_sym_continue] = ACTIONS(2211), + [anon_sym_return] = ACTIONS(2211), + [anon_sym_DOLLARfor] = ACTIONS(2211), + [anon_sym_for] = ACTIONS(2211), + [anon_sym_POUND] = ACTIONS(2211), + [anon_sym_asm] = ACTIONS(2211), + [anon_sym_AT_LBRACK] = ACTIONS(2211), + [sym___double_quote] = ACTIONS(2211), + [sym___single_quote] = ACTIONS(2211), + [sym___c_double_quote] = ACTIONS(2211), + [sym___c_single_quote] = ACTIONS(2211), + [sym___r_double_quote] = ACTIONS(2211), + [sym___r_single_quote] = ACTIONS(2211), + }, [1022] = { [sym_line_comment] = STATE(1022), [sym_block_comment] = STATE(1022), - [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(2201), + [sym_identifier] = ACTIONS(2203), + [anon_sym_LF] = ACTIONS(2203), + [anon_sym_CR] = ACTIONS(2203), + [anon_sym_CR_LF] = ACTIONS(2203), [anon_sym_SLASH_SLASH] = ACTIONS(497), [anon_sym_SLASH_STAR] = ACTIONS(499), - [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), + [anon_sym_DOT] = ACTIONS(2203), + [anon_sym_as] = ACTIONS(2203), + [anon_sym_LBRACE] = ACTIONS(2203), + [anon_sym_COMMA] = ACTIONS(2203), + [anon_sym_const] = ACTIONS(2203), + [anon_sym_LPAREN] = ACTIONS(2203), + [anon_sym___global] = ACTIONS(2203), + [anon_sym_type] = ACTIONS(2203), + [anon_sym_PIPE] = ACTIONS(2203), + [anon_sym_fn] = ACTIONS(2203), + [anon_sym_PLUS] = ACTIONS(2203), + [anon_sym_DASH] = ACTIONS(2203), + [anon_sym_STAR] = ACTIONS(2203), + [anon_sym_SLASH] = ACTIONS(2203), + [anon_sym_PERCENT] = ACTIONS(2203), + [anon_sym_LT] = ACTIONS(2203), + [anon_sym_GT] = ACTIONS(2203), + [anon_sym_EQ_EQ] = ACTIONS(2203), + [anon_sym_BANG_EQ] = ACTIONS(2203), + [anon_sym_LT_EQ] = ACTIONS(2203), + [anon_sym_GT_EQ] = ACTIONS(2203), + [anon_sym_LBRACK] = ACTIONS(2201), + [anon_sym_struct] = ACTIONS(2203), + [anon_sym_union] = ACTIONS(2203), + [anon_sym_pub] = ACTIONS(2203), + [anon_sym_mut] = ACTIONS(2203), + [anon_sym_enum] = ACTIONS(2203), + [anon_sym_interface] = ACTIONS(2203), + [anon_sym_PLUS_PLUS] = ACTIONS(2203), + [anon_sym_DASH_DASH] = ACTIONS(2203), + [anon_sym_QMARK] = ACTIONS(2203), + [anon_sym_BANG] = ACTIONS(2203), + [anon_sym_go] = ACTIONS(2203), + [anon_sym_spawn] = ACTIONS(2203), + [anon_sym_json_DOTdecode] = ACTIONS(2203), + [anon_sym_LBRACK2] = ACTIONS(2203), + [anon_sym_TILDE] = ACTIONS(2203), + [anon_sym_CARET] = ACTIONS(2203), + [anon_sym_AMP] = ACTIONS(2203), + [anon_sym_LT_DASH] = ACTIONS(2203), + [anon_sym_LT_LT] = ACTIONS(2203), + [anon_sym_GT_GT] = ACTIONS(2203), + [anon_sym_GT_GT_GT] = ACTIONS(2203), + [anon_sym_AMP_CARET] = ACTIONS(2203), + [anon_sym_AMP_AMP] = ACTIONS(2203), + [anon_sym_PIPE_PIPE] = ACTIONS(2203), + [anon_sym_or] = ACTIONS(2203), + [sym_none] = ACTIONS(2203), + [sym_true] = ACTIONS(2203), + [sym_false] = ACTIONS(2203), + [sym_nil] = ACTIONS(2203), + [anon_sym_QMARK_DOT] = ACTIONS(2203), + [anon_sym_POUND_LBRACK] = ACTIONS(2203), + [anon_sym_if] = ACTIONS(2203), + [anon_sym_DOLLARif] = ACTIONS(2203), + [anon_sym_is] = ACTIONS(2203), + [anon_sym_BANGis] = ACTIONS(2203), + [anon_sym_in] = ACTIONS(2203), + [anon_sym_BANGin] = ACTIONS(2203), + [anon_sym_match] = ACTIONS(2203), + [anon_sym_select] = ACTIONS(2203), + [anon_sym_lock] = ACTIONS(2203), + [anon_sym_rlock] = ACTIONS(2203), + [anon_sym_unsafe] = ACTIONS(2203), + [anon_sym_sql] = ACTIONS(2203), + [sym_int_literal] = ACTIONS(2203), + [sym_float_literal] = ACTIONS(2203), + [sym_rune_literal] = ACTIONS(2203), + [sym_pseudo_compile_time_identifier] = ACTIONS(2203), + [anon_sym_shared] = ACTIONS(2203), + [anon_sym_map_LBRACK] = ACTIONS(2203), + [anon_sym_chan] = ACTIONS(2203), + [anon_sym_thread] = ACTIONS(2203), + [anon_sym_atomic] = ACTIONS(2203), + [anon_sym_assert] = ACTIONS(2203), + [anon_sym_defer] = ACTIONS(2203), + [anon_sym_goto] = ACTIONS(2203), + [anon_sym_break] = ACTIONS(2203), + [anon_sym_continue] = ACTIONS(2203), + [anon_sym_return] = ACTIONS(2203), + [anon_sym_DOLLARfor] = ACTIONS(2203), + [anon_sym_for] = ACTIONS(2203), + [anon_sym_POUND] = ACTIONS(2203), + [anon_sym_asm] = ACTIONS(2203), + [anon_sym_AT_LBRACK] = ACTIONS(2203), + [sym___double_quote] = ACTIONS(2203), + [sym___single_quote] = ACTIONS(2203), + [sym___c_double_quote] = ACTIONS(2203), + [sym___c_single_quote] = ACTIONS(2203), + [sym___r_double_quote] = ACTIONS(2203), + [sym___r_single_quote] = ACTIONS(2203), }, [1023] = { [sym_line_comment] = STATE(1023), [sym_block_comment] = STATE(1023), - [ts_builtin_sym_end] = ACTIONS(2751), - [sym_identifier] = ACTIONS(2753), - [anon_sym_LF] = ACTIONS(2753), - [anon_sym_CR] = ACTIONS(2753), - [anon_sym_CR_LF] = ACTIONS(2753), + [ts_builtin_sym_end] = ACTIONS(1887), + [sym_identifier] = ACTIONS(1889), + [anon_sym_LF] = ACTIONS(1889), + [anon_sym_CR] = ACTIONS(1889), + [anon_sym_CR_LF] = ACTIONS(1889), [anon_sym_SLASH_SLASH] = ACTIONS(497), [anon_sym_SLASH_STAR] = ACTIONS(499), - [anon_sym_DOT] = ACTIONS(2753), - [anon_sym_as] = ACTIONS(2753), - [anon_sym_LBRACE] = ACTIONS(2753), - [anon_sym_COMMA] = ACTIONS(2753), - [anon_sym_const] = ACTIONS(2753), - [anon_sym_LPAREN] = ACTIONS(2753), - [anon_sym___global] = ACTIONS(2753), - [anon_sym_type] = ACTIONS(2753), - [anon_sym_PIPE] = ACTIONS(2753), - [anon_sym_fn] = ACTIONS(2753), - [anon_sym_PLUS] = ACTIONS(2753), - [anon_sym_DASH] = ACTIONS(2753), - [anon_sym_STAR] = ACTIONS(2753), - [anon_sym_SLASH] = ACTIONS(2753), - [anon_sym_PERCENT] = ACTIONS(2753), - [anon_sym_LT] = ACTIONS(2753), - [anon_sym_GT] = ACTIONS(2753), - [anon_sym_EQ_EQ] = ACTIONS(2753), - [anon_sym_BANG_EQ] = ACTIONS(2753), - [anon_sym_LT_EQ] = ACTIONS(2753), - [anon_sym_GT_EQ] = ACTIONS(2753), - [anon_sym_LBRACK] = ACTIONS(2751), - [anon_sym_struct] = ACTIONS(2753), - [anon_sym_union] = ACTIONS(2753), - [anon_sym_pub] = ACTIONS(2753), - [anon_sym_mut] = ACTIONS(2753), - [anon_sym_enum] = ACTIONS(2753), - [anon_sym_interface] = ACTIONS(2753), - [anon_sym_PLUS_PLUS] = ACTIONS(2753), - [anon_sym_DASH_DASH] = ACTIONS(2753), - [anon_sym_QMARK] = ACTIONS(2753), - [anon_sym_BANG] = ACTIONS(2753), - [anon_sym_go] = ACTIONS(2753), - [anon_sym_spawn] = ACTIONS(2753), - [anon_sym_json_DOTdecode] = ACTIONS(2753), - [anon_sym_LBRACK2] = ACTIONS(2753), - [anon_sym_TILDE] = ACTIONS(2753), - [anon_sym_CARET] = ACTIONS(2753), - [anon_sym_AMP] = ACTIONS(2753), - [anon_sym_LT_DASH] = ACTIONS(2753), - [anon_sym_LT_LT] = ACTIONS(2753), - [anon_sym_GT_GT] = ACTIONS(2753), - [anon_sym_GT_GT_GT] = ACTIONS(2753), - [anon_sym_AMP_CARET] = ACTIONS(2753), - [anon_sym_AMP_AMP] = ACTIONS(2753), - [anon_sym_PIPE_PIPE] = ACTIONS(2753), - [anon_sym_or] = ACTIONS(2753), - [sym_none] = ACTIONS(2753), - [sym_true] = ACTIONS(2753), - [sym_false] = ACTIONS(2753), - [sym_nil] = ACTIONS(2753), - [anon_sym_QMARK_DOT] = ACTIONS(2753), - [anon_sym_POUND_LBRACK] = ACTIONS(2753), - [anon_sym_if] = ACTIONS(2753), - [anon_sym_DOLLARif] = ACTIONS(2753), - [anon_sym_is] = ACTIONS(2753), - [anon_sym_BANGis] = ACTIONS(2753), - [anon_sym_in] = ACTIONS(2753), - [anon_sym_BANGin] = ACTIONS(2753), - [anon_sym_match] = ACTIONS(2753), - [anon_sym_select] = ACTIONS(2753), - [anon_sym_lock] = ACTIONS(2753), - [anon_sym_rlock] = ACTIONS(2753), - [anon_sym_unsafe] = ACTIONS(2753), - [anon_sym_sql] = ACTIONS(2753), - [sym_int_literal] = ACTIONS(2753), - [sym_float_literal] = ACTIONS(2753), - [sym_rune_literal] = ACTIONS(2753), - [sym_pseudo_compile_time_identifier] = ACTIONS(2753), - [anon_sym_shared] = ACTIONS(2753), - [anon_sym_map_LBRACK] = ACTIONS(2753), - [anon_sym_chan] = ACTIONS(2753), - [anon_sym_thread] = ACTIONS(2753), - [anon_sym_atomic] = ACTIONS(2753), - [anon_sym_assert] = ACTIONS(2753), - [anon_sym_defer] = ACTIONS(2753), - [anon_sym_goto] = ACTIONS(2753), - [anon_sym_break] = ACTIONS(2753), - [anon_sym_continue] = ACTIONS(2753), - [anon_sym_return] = ACTIONS(2753), - [anon_sym_DOLLARfor] = ACTIONS(2753), - [anon_sym_for] = ACTIONS(2753), - [anon_sym_POUND] = ACTIONS(2753), - [anon_sym_asm] = ACTIONS(2753), - [anon_sym_AT_LBRACK] = ACTIONS(2753), - [sym___double_quote] = ACTIONS(2753), - [sym___single_quote] = ACTIONS(2753), - [sym___c_double_quote] = ACTIONS(2753), - [sym___c_single_quote] = ACTIONS(2753), - [sym___r_double_quote] = ACTIONS(2753), - [sym___r_single_quote] = ACTIONS(2753), + [anon_sym_DOT] = ACTIONS(1889), + [anon_sym_as] = ACTIONS(1889), + [anon_sym_LBRACE] = ACTIONS(1889), + [anon_sym_COMMA] = ACTIONS(1889), + [anon_sym_const] = ACTIONS(1889), + [anon_sym_LPAREN] = ACTIONS(1889), + [anon_sym___global] = ACTIONS(1889), + [anon_sym_type] = ACTIONS(1889), + [anon_sym_PIPE] = ACTIONS(1889), + [anon_sym_fn] = ACTIONS(1889), + [anon_sym_PLUS] = ACTIONS(1889), + [anon_sym_DASH] = ACTIONS(1889), + [anon_sym_STAR] = ACTIONS(1889), + [anon_sym_SLASH] = ACTIONS(1889), + [anon_sym_PERCENT] = ACTIONS(1889), + [anon_sym_LT] = ACTIONS(1889), + [anon_sym_GT] = ACTIONS(1889), + [anon_sym_EQ_EQ] = ACTIONS(1889), + [anon_sym_BANG_EQ] = ACTIONS(1889), + [anon_sym_LT_EQ] = ACTIONS(1889), + [anon_sym_GT_EQ] = ACTIONS(1889), + [anon_sym_LBRACK] = ACTIONS(1887), + [anon_sym_struct] = ACTIONS(1889), + [anon_sym_union] = ACTIONS(1889), + [anon_sym_pub] = ACTIONS(1889), + [anon_sym_mut] = ACTIONS(1889), + [anon_sym_enum] = ACTIONS(1889), + [anon_sym_interface] = ACTIONS(1889), + [anon_sym_PLUS_PLUS] = ACTIONS(1889), + [anon_sym_DASH_DASH] = ACTIONS(1889), + [anon_sym_QMARK] = ACTIONS(1889), + [anon_sym_BANG] = ACTIONS(1889), + [anon_sym_go] = ACTIONS(1889), + [anon_sym_spawn] = ACTIONS(1889), + [anon_sym_json_DOTdecode] = ACTIONS(1889), + [anon_sym_LBRACK2] = ACTIONS(1889), + [anon_sym_TILDE] = ACTIONS(1889), + [anon_sym_CARET] = ACTIONS(1889), + [anon_sym_AMP] = ACTIONS(1889), + [anon_sym_LT_DASH] = ACTIONS(1889), + [anon_sym_LT_LT] = ACTIONS(1889), + [anon_sym_GT_GT] = ACTIONS(1889), + [anon_sym_GT_GT_GT] = ACTIONS(1889), + [anon_sym_AMP_CARET] = ACTIONS(1889), + [anon_sym_AMP_AMP] = ACTIONS(1889), + [anon_sym_PIPE_PIPE] = ACTIONS(1889), + [anon_sym_or] = ACTIONS(1889), + [sym_none] = ACTIONS(1889), + [sym_true] = ACTIONS(1889), + [sym_false] = ACTIONS(1889), + [sym_nil] = ACTIONS(1889), + [anon_sym_QMARK_DOT] = ACTIONS(1889), + [anon_sym_POUND_LBRACK] = ACTIONS(1889), + [anon_sym_if] = ACTIONS(1889), + [anon_sym_DOLLARif] = ACTIONS(1889), + [anon_sym_is] = ACTIONS(1889), + [anon_sym_BANGis] = ACTIONS(1889), + [anon_sym_in] = ACTIONS(1889), + [anon_sym_BANGin] = ACTIONS(1889), + [anon_sym_match] = ACTIONS(1889), + [anon_sym_select] = ACTIONS(1889), + [anon_sym_lock] = ACTIONS(1889), + [anon_sym_rlock] = ACTIONS(1889), + [anon_sym_unsafe] = ACTIONS(1889), + [anon_sym_sql] = ACTIONS(1889), + [sym_int_literal] = ACTIONS(1889), + [sym_float_literal] = ACTIONS(1889), + [sym_rune_literal] = ACTIONS(1889), + [sym_pseudo_compile_time_identifier] = ACTIONS(1889), + [anon_sym_shared] = ACTIONS(1889), + [anon_sym_map_LBRACK] = ACTIONS(1889), + [anon_sym_chan] = ACTIONS(1889), + [anon_sym_thread] = ACTIONS(1889), + [anon_sym_atomic] = ACTIONS(1889), + [anon_sym_assert] = ACTIONS(1889), + [anon_sym_defer] = ACTIONS(1889), + [anon_sym_goto] = ACTIONS(1889), + [anon_sym_break] = ACTIONS(1889), + [anon_sym_continue] = ACTIONS(1889), + [anon_sym_return] = ACTIONS(1889), + [anon_sym_DOLLARfor] = ACTIONS(1889), + [anon_sym_for] = ACTIONS(1889), + [anon_sym_POUND] = ACTIONS(1889), + [anon_sym_asm] = ACTIONS(1889), + [anon_sym_AT_LBRACK] = ACTIONS(1889), + [sym___double_quote] = ACTIONS(1889), + [sym___single_quote] = ACTIONS(1889), + [sym___c_double_quote] = ACTIONS(1889), + [sym___c_single_quote] = ACTIONS(1889), + [sym___r_double_quote] = ACTIONS(1889), + [sym___r_single_quote] = ACTIONS(1889), }, [1024] = { [sym_line_comment] = STATE(1024), [sym_block_comment] = STATE(1024), - [ts_builtin_sym_end] = ACTIONS(2287), - [sym_identifier] = ACTIONS(2289), - [anon_sym_LF] = ACTIONS(2289), - [anon_sym_CR] = ACTIONS(2289), - [anon_sym_CR_LF] = ACTIONS(2289), + [ts_builtin_sym_end] = ACTIONS(2511), + [sym_identifier] = ACTIONS(2513), + [anon_sym_LF] = ACTIONS(2513), + [anon_sym_CR] = ACTIONS(2513), + [anon_sym_CR_LF] = ACTIONS(2513), [anon_sym_SLASH_SLASH] = ACTIONS(497), [anon_sym_SLASH_STAR] = ACTIONS(499), - [anon_sym_DOT] = ACTIONS(2289), - [anon_sym_as] = ACTIONS(2289), - [anon_sym_LBRACE] = ACTIONS(2289), - [anon_sym_COMMA] = ACTIONS(2289), - [anon_sym_const] = ACTIONS(2289), - [anon_sym_LPAREN] = ACTIONS(2289), - [anon_sym___global] = ACTIONS(2289), - [anon_sym_type] = ACTIONS(2289), - [anon_sym_PIPE] = ACTIONS(2289), - [anon_sym_fn] = ACTIONS(2289), - [anon_sym_PLUS] = ACTIONS(2289), - [anon_sym_DASH] = ACTIONS(2289), - [anon_sym_STAR] = ACTIONS(2289), - [anon_sym_SLASH] = ACTIONS(2289), - [anon_sym_PERCENT] = ACTIONS(2289), - [anon_sym_LT] = ACTIONS(2289), - [anon_sym_GT] = ACTIONS(2289), - [anon_sym_EQ_EQ] = ACTIONS(2289), - [anon_sym_BANG_EQ] = ACTIONS(2289), - [anon_sym_LT_EQ] = ACTIONS(2289), - [anon_sym_GT_EQ] = ACTIONS(2289), - [anon_sym_LBRACK] = ACTIONS(2287), - [anon_sym_struct] = ACTIONS(2289), - [anon_sym_union] = ACTIONS(2289), - [anon_sym_pub] = ACTIONS(2289), - [anon_sym_mut] = ACTIONS(2289), - [anon_sym_enum] = ACTIONS(2289), - [anon_sym_interface] = ACTIONS(2289), - [anon_sym_PLUS_PLUS] = ACTIONS(2289), - [anon_sym_DASH_DASH] = ACTIONS(2289), - [anon_sym_QMARK] = ACTIONS(2289), - [anon_sym_BANG] = ACTIONS(2289), - [anon_sym_go] = ACTIONS(2289), - [anon_sym_spawn] = ACTIONS(2289), - [anon_sym_json_DOTdecode] = ACTIONS(2289), - [anon_sym_LBRACK2] = ACTIONS(2289), - [anon_sym_TILDE] = ACTIONS(2289), - [anon_sym_CARET] = ACTIONS(2289), - [anon_sym_AMP] = ACTIONS(2289), - [anon_sym_LT_DASH] = ACTIONS(2289), - [anon_sym_LT_LT] = ACTIONS(2289), - [anon_sym_GT_GT] = ACTIONS(2289), - [anon_sym_GT_GT_GT] = ACTIONS(2289), - [anon_sym_AMP_CARET] = ACTIONS(2289), - [anon_sym_AMP_AMP] = ACTIONS(2289), - [anon_sym_PIPE_PIPE] = ACTIONS(2289), - [anon_sym_or] = ACTIONS(2289), - [sym_none] = ACTIONS(2289), - [sym_true] = ACTIONS(2289), - [sym_false] = ACTIONS(2289), - [sym_nil] = ACTIONS(2289), - [anon_sym_QMARK_DOT] = ACTIONS(2289), - [anon_sym_POUND_LBRACK] = ACTIONS(2289), - [anon_sym_if] = ACTIONS(2289), - [anon_sym_DOLLARif] = ACTIONS(2289), - [anon_sym_is] = ACTIONS(2289), - [anon_sym_BANGis] = ACTIONS(2289), - [anon_sym_in] = ACTIONS(2289), - [anon_sym_BANGin] = ACTIONS(2289), - [anon_sym_match] = ACTIONS(2289), - [anon_sym_select] = ACTIONS(2289), - [anon_sym_lock] = ACTIONS(2289), - [anon_sym_rlock] = ACTIONS(2289), - [anon_sym_unsafe] = ACTIONS(2289), - [anon_sym_sql] = ACTIONS(2289), - [sym_int_literal] = ACTIONS(2289), - [sym_float_literal] = ACTIONS(2289), - [sym_rune_literal] = ACTIONS(2289), - [sym_pseudo_compile_time_identifier] = ACTIONS(2289), - [anon_sym_shared] = ACTIONS(2289), - [anon_sym_map_LBRACK] = ACTIONS(2289), - [anon_sym_chan] = ACTIONS(2289), - [anon_sym_thread] = ACTIONS(2289), - [anon_sym_atomic] = ACTIONS(2289), - [anon_sym_assert] = ACTIONS(2289), - [anon_sym_defer] = ACTIONS(2289), - [anon_sym_goto] = ACTIONS(2289), - [anon_sym_break] = ACTIONS(2289), - [anon_sym_continue] = ACTIONS(2289), - [anon_sym_return] = ACTIONS(2289), - [anon_sym_DOLLARfor] = ACTIONS(2289), - [anon_sym_for] = ACTIONS(2289), - [anon_sym_POUND] = ACTIONS(2289), - [anon_sym_asm] = ACTIONS(2289), - [anon_sym_AT_LBRACK] = ACTIONS(2289), - [sym___double_quote] = ACTIONS(2289), - [sym___single_quote] = ACTIONS(2289), - [sym___c_double_quote] = ACTIONS(2289), - [sym___c_single_quote] = ACTIONS(2289), - [sym___r_double_quote] = ACTIONS(2289), - [sym___r_single_quote] = ACTIONS(2289), + [anon_sym_DOT] = ACTIONS(2515), + [anon_sym_as] = ACTIONS(2513), + [anon_sym_LBRACE] = ACTIONS(2513), + [anon_sym_COMMA] = ACTIONS(2513), + [anon_sym_const] = ACTIONS(2513), + [anon_sym_LPAREN] = ACTIONS(2513), + [anon_sym___global] = ACTIONS(2513), + [anon_sym_type] = ACTIONS(2513), + [anon_sym_PIPE] = ACTIONS(2513), + [anon_sym_fn] = ACTIONS(2513), + [anon_sym_PLUS] = ACTIONS(2513), + [anon_sym_DASH] = ACTIONS(2513), + [anon_sym_STAR] = ACTIONS(2513), + [anon_sym_SLASH] = ACTIONS(2513), + [anon_sym_PERCENT] = ACTIONS(2513), + [anon_sym_LT] = ACTIONS(2513), + [anon_sym_GT] = ACTIONS(2513), + [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(2511), + [anon_sym_struct] = ACTIONS(2513), + [anon_sym_union] = ACTIONS(2513), + [anon_sym_pub] = ACTIONS(2513), + [anon_sym_mut] = ACTIONS(2513), + [anon_sym_enum] = ACTIONS(2513), + [anon_sym_interface] = ACTIONS(2513), + [anon_sym_PLUS_PLUS] = ACTIONS(2513), + [anon_sym_DASH_DASH] = ACTIONS(2513), + [anon_sym_QMARK] = ACTIONS(2513), + [anon_sym_BANG] = ACTIONS(2513), + [anon_sym_go] = ACTIONS(2513), + [anon_sym_spawn] = ACTIONS(2513), + [anon_sym_json_DOTdecode] = ACTIONS(2513), + [anon_sym_LBRACK2] = ACTIONS(2513), + [anon_sym_TILDE] = ACTIONS(2513), + [anon_sym_CARET] = ACTIONS(2513), + [anon_sym_AMP] = ACTIONS(2513), + [anon_sym_LT_DASH] = ACTIONS(2513), + [anon_sym_LT_LT] = ACTIONS(2513), + [anon_sym_GT_GT] = ACTIONS(2513), + [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(2513), + [sym_none] = ACTIONS(2513), + [sym_true] = ACTIONS(2513), + [sym_false] = ACTIONS(2513), + [sym_nil] = ACTIONS(2513), + [anon_sym_QMARK_DOT] = ACTIONS(2513), + [anon_sym_POUND_LBRACK] = ACTIONS(2513), + [anon_sym_if] = ACTIONS(2513), + [anon_sym_DOLLARif] = ACTIONS(2513), + [anon_sym_is] = ACTIONS(2513), + [anon_sym_BANGis] = ACTIONS(2513), + [anon_sym_in] = ACTIONS(2513), + [anon_sym_BANGin] = ACTIONS(2513), + [anon_sym_match] = ACTIONS(2513), + [anon_sym_select] = ACTIONS(2513), + [anon_sym_lock] = ACTIONS(2513), + [anon_sym_rlock] = ACTIONS(2513), + [anon_sym_unsafe] = ACTIONS(2513), + [anon_sym_sql] = ACTIONS(2513), + [sym_int_literal] = ACTIONS(2513), + [sym_float_literal] = ACTIONS(2513), + [sym_rune_literal] = ACTIONS(2513), + [sym_pseudo_compile_time_identifier] = ACTIONS(2513), + [anon_sym_shared] = ACTIONS(2513), + [anon_sym_map_LBRACK] = ACTIONS(2513), + [anon_sym_chan] = ACTIONS(2513), + [anon_sym_thread] = ACTIONS(2513), + [anon_sym_atomic] = ACTIONS(2513), + [anon_sym_assert] = ACTIONS(2513), + [anon_sym_defer] = ACTIONS(2513), + [anon_sym_goto] = ACTIONS(2513), + [anon_sym_break] = ACTIONS(2513), + [anon_sym_continue] = ACTIONS(2513), + [anon_sym_return] = ACTIONS(2513), + [anon_sym_DOLLARfor] = ACTIONS(2513), + [anon_sym_for] = ACTIONS(2513), + [anon_sym_POUND] = ACTIONS(2513), + [anon_sym_asm] = ACTIONS(2513), + [anon_sym_AT_LBRACK] = ACTIONS(2513), + [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), }, [1025] = { [sym_line_comment] = STATE(1025), [sym_block_comment] = STATE(1025), - [ts_builtin_sym_end] = ACTIONS(2279), - [sym_identifier] = ACTIONS(2281), - [anon_sym_LF] = ACTIONS(2281), - [anon_sym_CR] = ACTIONS(2281), - [anon_sym_CR_LF] = ACTIONS(2281), + [ts_builtin_sym_end] = ACTIONS(2520), + [sym_identifier] = ACTIONS(2522), + [anon_sym_LF] = ACTIONS(2522), + [anon_sym_CR] = ACTIONS(2522), + [anon_sym_CR_LF] = ACTIONS(2522), [anon_sym_SLASH_SLASH] = ACTIONS(497), [anon_sym_SLASH_STAR] = ACTIONS(499), - [anon_sym_DOT] = ACTIONS(2281), - [anon_sym_as] = ACTIONS(2281), - [anon_sym_LBRACE] = ACTIONS(2281), - [anon_sym_COMMA] = ACTIONS(2281), - [anon_sym_const] = ACTIONS(2281), - [anon_sym_LPAREN] = ACTIONS(2281), - [anon_sym___global] = ACTIONS(2281), - [anon_sym_type] = ACTIONS(2281), - [anon_sym_PIPE] = ACTIONS(2281), - [anon_sym_fn] = ACTIONS(2281), - [anon_sym_PLUS] = ACTIONS(2281), - [anon_sym_DASH] = ACTIONS(2281), - [anon_sym_STAR] = ACTIONS(2281), - [anon_sym_SLASH] = ACTIONS(2281), - [anon_sym_PERCENT] = ACTIONS(2281), - [anon_sym_LT] = ACTIONS(2281), - [anon_sym_GT] = ACTIONS(2281), - [anon_sym_EQ_EQ] = ACTIONS(2281), - [anon_sym_BANG_EQ] = ACTIONS(2281), - [anon_sym_LT_EQ] = ACTIONS(2281), - [anon_sym_GT_EQ] = ACTIONS(2281), - [anon_sym_LBRACK] = ACTIONS(2279), - [anon_sym_struct] = ACTIONS(2281), - [anon_sym_union] = ACTIONS(2281), - [anon_sym_pub] = ACTIONS(2281), - [anon_sym_mut] = ACTIONS(2281), - [anon_sym_enum] = ACTIONS(2281), - [anon_sym_interface] = ACTIONS(2281), - [anon_sym_PLUS_PLUS] = ACTIONS(2281), - [anon_sym_DASH_DASH] = ACTIONS(2281), - [anon_sym_QMARK] = ACTIONS(2281), - [anon_sym_BANG] = ACTIONS(2281), - [anon_sym_go] = ACTIONS(2281), - [anon_sym_spawn] = ACTIONS(2281), - [anon_sym_json_DOTdecode] = ACTIONS(2281), - [anon_sym_LBRACK2] = ACTIONS(2281), - [anon_sym_TILDE] = ACTIONS(2281), - [anon_sym_CARET] = ACTIONS(2281), - [anon_sym_AMP] = ACTIONS(2281), - [anon_sym_LT_DASH] = ACTIONS(2281), - [anon_sym_LT_LT] = ACTIONS(2281), - [anon_sym_GT_GT] = ACTIONS(2281), - [anon_sym_GT_GT_GT] = ACTIONS(2281), - [anon_sym_AMP_CARET] = ACTIONS(2281), - [anon_sym_AMP_AMP] = ACTIONS(2281), - [anon_sym_PIPE_PIPE] = ACTIONS(2281), - [anon_sym_or] = ACTIONS(2281), - [sym_none] = ACTIONS(2281), - [sym_true] = ACTIONS(2281), - [sym_false] = ACTIONS(2281), - [sym_nil] = ACTIONS(2281), - [anon_sym_QMARK_DOT] = ACTIONS(2281), - [anon_sym_POUND_LBRACK] = ACTIONS(2281), - [anon_sym_if] = ACTIONS(2281), - [anon_sym_DOLLARif] = ACTIONS(2281), - [anon_sym_is] = ACTIONS(2281), - [anon_sym_BANGis] = ACTIONS(2281), - [anon_sym_in] = ACTIONS(2281), - [anon_sym_BANGin] = ACTIONS(2281), - [anon_sym_match] = ACTIONS(2281), - [anon_sym_select] = ACTIONS(2281), - [anon_sym_lock] = ACTIONS(2281), - [anon_sym_rlock] = ACTIONS(2281), - [anon_sym_unsafe] = ACTIONS(2281), - [anon_sym_sql] = ACTIONS(2281), - [sym_int_literal] = ACTIONS(2281), - [sym_float_literal] = ACTIONS(2281), - [sym_rune_literal] = ACTIONS(2281), - [sym_pseudo_compile_time_identifier] = ACTIONS(2281), - [anon_sym_shared] = ACTIONS(2281), - [anon_sym_map_LBRACK] = ACTIONS(2281), - [anon_sym_chan] = ACTIONS(2281), - [anon_sym_thread] = ACTIONS(2281), - [anon_sym_atomic] = ACTIONS(2281), - [anon_sym_assert] = ACTIONS(2281), - [anon_sym_defer] = ACTIONS(2281), - [anon_sym_goto] = ACTIONS(2281), - [anon_sym_break] = ACTIONS(2281), - [anon_sym_continue] = ACTIONS(2281), - [anon_sym_return] = ACTIONS(2281), - [anon_sym_DOLLARfor] = ACTIONS(2281), - [anon_sym_for] = ACTIONS(2281), - [anon_sym_POUND] = ACTIONS(2281), - [anon_sym_asm] = ACTIONS(2281), - [anon_sym_AT_LBRACK] = ACTIONS(2281), - [sym___double_quote] = ACTIONS(2281), - [sym___single_quote] = ACTIONS(2281), - [sym___c_double_quote] = ACTIONS(2281), - [sym___c_single_quote] = ACTIONS(2281), - [sym___r_double_quote] = ACTIONS(2281), - [sym___r_single_quote] = ACTIONS(2281), + [anon_sym_DOT] = ACTIONS(2522), + [anon_sym_as] = ACTIONS(2522), + [anon_sym_LBRACE] = ACTIONS(2522), + [anon_sym_COMMA] = ACTIONS(2522), + [anon_sym_const] = ACTIONS(2522), + [anon_sym_LPAREN] = ACTIONS(2522), + [anon_sym___global] = ACTIONS(2522), + [anon_sym_type] = ACTIONS(2522), + [anon_sym_PIPE] = ACTIONS(2522), + [anon_sym_fn] = ACTIONS(2522), + [anon_sym_PLUS] = ACTIONS(2522), + [anon_sym_DASH] = ACTIONS(2522), + [anon_sym_STAR] = ACTIONS(2522), + [anon_sym_SLASH] = ACTIONS(2522), + [anon_sym_PERCENT] = ACTIONS(2522), + [anon_sym_LT] = ACTIONS(2522), + [anon_sym_GT] = ACTIONS(2522), + [anon_sym_EQ_EQ] = ACTIONS(2522), + [anon_sym_BANG_EQ] = ACTIONS(2522), + [anon_sym_LT_EQ] = ACTIONS(2522), + [anon_sym_GT_EQ] = ACTIONS(2522), + [anon_sym_LBRACK] = ACTIONS(2520), + [anon_sym_struct] = ACTIONS(2522), + [anon_sym_union] = ACTIONS(2522), + [anon_sym_pub] = ACTIONS(2522), + [anon_sym_mut] = ACTIONS(2522), + [anon_sym_enum] = ACTIONS(2522), + [anon_sym_interface] = ACTIONS(2522), + [anon_sym_PLUS_PLUS] = ACTIONS(2522), + [anon_sym_DASH_DASH] = ACTIONS(2522), + [anon_sym_QMARK] = ACTIONS(2522), + [anon_sym_BANG] = ACTIONS(2522), + [anon_sym_go] = ACTIONS(2522), + [anon_sym_spawn] = ACTIONS(2522), + [anon_sym_json_DOTdecode] = ACTIONS(2522), + [anon_sym_LBRACK2] = ACTIONS(2522), + [anon_sym_TILDE] = ACTIONS(2522), + [anon_sym_CARET] = ACTIONS(2522), + [anon_sym_AMP] = ACTIONS(2522), + [anon_sym_LT_DASH] = ACTIONS(2522), + [anon_sym_LT_LT] = ACTIONS(2522), + [anon_sym_GT_GT] = ACTIONS(2522), + [anon_sym_GT_GT_GT] = ACTIONS(2522), + [anon_sym_AMP_CARET] = ACTIONS(2522), + [anon_sym_AMP_AMP] = ACTIONS(2522), + [anon_sym_PIPE_PIPE] = ACTIONS(2522), + [anon_sym_or] = ACTIONS(2522), + [sym_none] = ACTIONS(2522), + [sym_true] = ACTIONS(2522), + [sym_false] = ACTIONS(2522), + [sym_nil] = ACTIONS(2522), + [anon_sym_QMARK_DOT] = ACTIONS(2522), + [anon_sym_POUND_LBRACK] = ACTIONS(2522), + [anon_sym_if] = ACTIONS(2522), + [anon_sym_DOLLARif] = ACTIONS(2522), + [anon_sym_is] = ACTIONS(2522), + [anon_sym_BANGis] = ACTIONS(2522), + [anon_sym_in] = ACTIONS(2522), + [anon_sym_BANGin] = ACTIONS(2522), + [anon_sym_match] = ACTIONS(2522), + [anon_sym_select] = ACTIONS(2522), + [anon_sym_lock] = ACTIONS(2522), + [anon_sym_rlock] = ACTIONS(2522), + [anon_sym_unsafe] = ACTIONS(2522), + [anon_sym_sql] = ACTIONS(2522), + [sym_int_literal] = ACTIONS(2522), + [sym_float_literal] = ACTIONS(2522), + [sym_rune_literal] = ACTIONS(2522), + [sym_pseudo_compile_time_identifier] = ACTIONS(2522), + [anon_sym_shared] = ACTIONS(2522), + [anon_sym_map_LBRACK] = ACTIONS(2522), + [anon_sym_chan] = ACTIONS(2522), + [anon_sym_thread] = ACTIONS(2522), + [anon_sym_atomic] = ACTIONS(2522), + [anon_sym_assert] = ACTIONS(2522), + [anon_sym_defer] = ACTIONS(2522), + [anon_sym_goto] = ACTIONS(2522), + [anon_sym_break] = ACTIONS(2522), + [anon_sym_continue] = ACTIONS(2522), + [anon_sym_return] = ACTIONS(2522), + [anon_sym_DOLLARfor] = ACTIONS(2522), + [anon_sym_for] = ACTIONS(2522), + [anon_sym_POUND] = ACTIONS(2522), + [anon_sym_asm] = ACTIONS(2522), + [anon_sym_AT_LBRACK] = ACTIONS(2522), + [sym___double_quote] = ACTIONS(2522), + [sym___single_quote] = ACTIONS(2522), + [sym___c_double_quote] = ACTIONS(2522), + [sym___c_single_quote] = ACTIONS(2522), + [sym___r_double_quote] = ACTIONS(2522), + [sym___r_single_quote] = ACTIONS(2522), }, [1026] = { [sym_line_comment] = STATE(1026), [sym_block_comment] = STATE(1026), - [ts_builtin_sym_end] = ACTIONS(2231), - [sym_identifier] = ACTIONS(2233), - [anon_sym_LF] = ACTIONS(2233), - [anon_sym_CR] = ACTIONS(2233), - [anon_sym_CR_LF] = ACTIONS(2233), + [ts_builtin_sym_end] = ACTIONS(2810), + [sym_identifier] = ACTIONS(2812), + [anon_sym_LF] = ACTIONS(2812), + [anon_sym_CR] = ACTIONS(2812), + [anon_sym_CR_LF] = ACTIONS(2812), [anon_sym_SLASH_SLASH] = ACTIONS(497), [anon_sym_SLASH_STAR] = ACTIONS(499), - [anon_sym_DOT] = ACTIONS(2233), - [anon_sym_as] = ACTIONS(2233), - [anon_sym_LBRACE] = ACTIONS(2233), - [anon_sym_COMMA] = ACTIONS(2233), - [anon_sym_const] = ACTIONS(2233), - [anon_sym_LPAREN] = ACTIONS(2233), - [anon_sym___global] = ACTIONS(2233), - [anon_sym_type] = ACTIONS(2233), - [anon_sym_PIPE] = ACTIONS(2233), - [anon_sym_fn] = ACTIONS(2233), - [anon_sym_PLUS] = ACTIONS(2233), - [anon_sym_DASH] = ACTIONS(2233), - [anon_sym_STAR] = ACTIONS(2233), - [anon_sym_SLASH] = ACTIONS(2233), - [anon_sym_PERCENT] = ACTIONS(2233), - [anon_sym_LT] = ACTIONS(2233), - [anon_sym_GT] = ACTIONS(2233), - [anon_sym_EQ_EQ] = ACTIONS(2233), - [anon_sym_BANG_EQ] = ACTIONS(2233), - [anon_sym_LT_EQ] = ACTIONS(2233), - [anon_sym_GT_EQ] = ACTIONS(2233), - [anon_sym_LBRACK] = ACTIONS(2231), - [anon_sym_struct] = ACTIONS(2233), - [anon_sym_union] = ACTIONS(2233), - [anon_sym_pub] = ACTIONS(2233), - [anon_sym_mut] = ACTIONS(2233), - [anon_sym_enum] = ACTIONS(2233), - [anon_sym_interface] = ACTIONS(2233), - [anon_sym_PLUS_PLUS] = ACTIONS(2233), - [anon_sym_DASH_DASH] = ACTIONS(2233), - [anon_sym_QMARK] = ACTIONS(2233), - [anon_sym_BANG] = ACTIONS(2233), - [anon_sym_go] = ACTIONS(2233), - [anon_sym_spawn] = ACTIONS(2233), - [anon_sym_json_DOTdecode] = ACTIONS(2233), - [anon_sym_LBRACK2] = ACTIONS(2233), - [anon_sym_TILDE] = ACTIONS(2233), - [anon_sym_CARET] = ACTIONS(2233), - [anon_sym_AMP] = ACTIONS(2233), - [anon_sym_LT_DASH] = ACTIONS(2233), - [anon_sym_LT_LT] = ACTIONS(2233), - [anon_sym_GT_GT] = ACTIONS(2233), - [anon_sym_GT_GT_GT] = ACTIONS(2233), - [anon_sym_AMP_CARET] = ACTIONS(2233), - [anon_sym_AMP_AMP] = ACTIONS(2233), - [anon_sym_PIPE_PIPE] = ACTIONS(2233), - [anon_sym_or] = ACTIONS(2233), - [sym_none] = ACTIONS(2233), - [sym_true] = ACTIONS(2233), - [sym_false] = ACTIONS(2233), - [sym_nil] = ACTIONS(2233), - [anon_sym_QMARK_DOT] = ACTIONS(2233), - [anon_sym_POUND_LBRACK] = ACTIONS(2233), - [anon_sym_if] = ACTIONS(2233), - [anon_sym_DOLLARif] = ACTIONS(2233), - [anon_sym_is] = ACTIONS(2233), - [anon_sym_BANGis] = ACTIONS(2233), - [anon_sym_in] = ACTIONS(2233), - [anon_sym_BANGin] = ACTIONS(2233), - [anon_sym_match] = ACTIONS(2233), - [anon_sym_select] = ACTIONS(2233), - [anon_sym_lock] = ACTIONS(2233), - [anon_sym_rlock] = ACTIONS(2233), - [anon_sym_unsafe] = ACTIONS(2233), - [anon_sym_sql] = ACTIONS(2233), - [sym_int_literal] = ACTIONS(2233), - [sym_float_literal] = ACTIONS(2233), - [sym_rune_literal] = ACTIONS(2233), - [sym_pseudo_compile_time_identifier] = ACTIONS(2233), - [anon_sym_shared] = ACTIONS(2233), - [anon_sym_map_LBRACK] = ACTIONS(2233), - [anon_sym_chan] = ACTIONS(2233), - [anon_sym_thread] = ACTIONS(2233), - [anon_sym_atomic] = ACTIONS(2233), - [anon_sym_assert] = ACTIONS(2233), - [anon_sym_defer] = ACTIONS(2233), - [anon_sym_goto] = ACTIONS(2233), - [anon_sym_break] = ACTIONS(2233), - [anon_sym_continue] = ACTIONS(2233), - [anon_sym_return] = ACTIONS(2233), - [anon_sym_DOLLARfor] = ACTIONS(2233), - [anon_sym_for] = ACTIONS(2233), - [anon_sym_POUND] = ACTIONS(2233), - [anon_sym_asm] = ACTIONS(2233), - [anon_sym_AT_LBRACK] = ACTIONS(2233), - [sym___double_quote] = ACTIONS(2233), - [sym___single_quote] = ACTIONS(2233), - [sym___c_double_quote] = ACTIONS(2233), - [sym___c_single_quote] = ACTIONS(2233), - [sym___r_double_quote] = ACTIONS(2233), - [sym___r_single_quote] = ACTIONS(2233), + [anon_sym_DOT] = ACTIONS(2812), + [anon_sym_as] = ACTIONS(2812), + [anon_sym_LBRACE] = ACTIONS(2812), + [anon_sym_COMMA] = ACTIONS(2812), + [anon_sym_const] = ACTIONS(2812), + [anon_sym_LPAREN] = ACTIONS(2812), + [anon_sym___global] = ACTIONS(2812), + [anon_sym_type] = ACTIONS(2812), + [anon_sym_PIPE] = ACTIONS(2812), + [anon_sym_fn] = ACTIONS(2812), + [anon_sym_PLUS] = ACTIONS(2812), + [anon_sym_DASH] = ACTIONS(2812), + [anon_sym_STAR] = ACTIONS(2812), + [anon_sym_SLASH] = ACTIONS(2812), + [anon_sym_PERCENT] = ACTIONS(2812), + [anon_sym_LT] = ACTIONS(2812), + [anon_sym_GT] = ACTIONS(2812), + [anon_sym_EQ_EQ] = ACTIONS(2812), + [anon_sym_BANG_EQ] = ACTIONS(2812), + [anon_sym_LT_EQ] = ACTIONS(2812), + [anon_sym_GT_EQ] = ACTIONS(2812), + [anon_sym_LBRACK] = ACTIONS(2810), + [anon_sym_struct] = ACTIONS(2812), + [anon_sym_union] = ACTIONS(2812), + [anon_sym_pub] = ACTIONS(2812), + [anon_sym_mut] = ACTIONS(2812), + [anon_sym_enum] = ACTIONS(2812), + [anon_sym_interface] = ACTIONS(2812), + [anon_sym_PLUS_PLUS] = ACTIONS(2812), + [anon_sym_DASH_DASH] = ACTIONS(2812), + [anon_sym_QMARK] = ACTIONS(2812), + [anon_sym_BANG] = ACTIONS(2812), + [anon_sym_go] = ACTIONS(2812), + [anon_sym_spawn] = ACTIONS(2812), + [anon_sym_json_DOTdecode] = ACTIONS(2812), + [anon_sym_LBRACK2] = ACTIONS(2812), + [anon_sym_TILDE] = ACTIONS(2812), + [anon_sym_CARET] = ACTIONS(2812), + [anon_sym_AMP] = ACTIONS(2812), + [anon_sym_LT_DASH] = ACTIONS(2812), + [anon_sym_LT_LT] = ACTIONS(2812), + [anon_sym_GT_GT] = ACTIONS(2812), + [anon_sym_GT_GT_GT] = ACTIONS(2812), + [anon_sym_AMP_CARET] = ACTIONS(2812), + [anon_sym_AMP_AMP] = ACTIONS(2812), + [anon_sym_PIPE_PIPE] = ACTIONS(2812), + [anon_sym_or] = ACTIONS(2812), + [sym_none] = ACTIONS(2812), + [sym_true] = ACTIONS(2812), + [sym_false] = ACTIONS(2812), + [sym_nil] = ACTIONS(2812), + [anon_sym_QMARK_DOT] = ACTIONS(2812), + [anon_sym_POUND_LBRACK] = ACTIONS(2812), + [anon_sym_if] = ACTIONS(2812), + [anon_sym_DOLLARif] = ACTIONS(2812), + [anon_sym_is] = ACTIONS(2812), + [anon_sym_BANGis] = ACTIONS(2812), + [anon_sym_in] = ACTIONS(2812), + [anon_sym_BANGin] = ACTIONS(2812), + [anon_sym_match] = ACTIONS(2812), + [anon_sym_select] = ACTIONS(2812), + [anon_sym_lock] = ACTIONS(2812), + [anon_sym_rlock] = ACTIONS(2812), + [anon_sym_unsafe] = ACTIONS(2812), + [anon_sym_sql] = ACTIONS(2812), + [sym_int_literal] = ACTIONS(2812), + [sym_float_literal] = ACTIONS(2812), + [sym_rune_literal] = ACTIONS(2812), + [sym_pseudo_compile_time_identifier] = ACTIONS(2812), + [anon_sym_shared] = ACTIONS(2812), + [anon_sym_map_LBRACK] = ACTIONS(2812), + [anon_sym_chan] = ACTIONS(2812), + [anon_sym_thread] = ACTIONS(2812), + [anon_sym_atomic] = ACTIONS(2812), + [anon_sym_assert] = ACTIONS(2812), + [anon_sym_defer] = ACTIONS(2812), + [anon_sym_goto] = ACTIONS(2812), + [anon_sym_break] = ACTIONS(2812), + [anon_sym_continue] = ACTIONS(2812), + [anon_sym_return] = ACTIONS(2812), + [anon_sym_DOLLARfor] = ACTIONS(2812), + [anon_sym_for] = ACTIONS(2812), + [anon_sym_POUND] = ACTIONS(2812), + [anon_sym_asm] = ACTIONS(2812), + [anon_sym_AT_LBRACK] = ACTIONS(2812), + [sym___double_quote] = ACTIONS(2812), + [sym___single_quote] = ACTIONS(2812), + [sym___c_double_quote] = ACTIONS(2812), + [sym___c_single_quote] = ACTIONS(2812), + [sym___r_double_quote] = ACTIONS(2812), + [sym___r_single_quote] = ACTIONS(2812), }, [1027] = { [sym_line_comment] = STATE(1027), [sym_block_comment] = STATE(1027), - [ts_builtin_sym_end] = ACTIONS(2227), - [sym_identifier] = ACTIONS(2229), - [anon_sym_LF] = ACTIONS(2229), - [anon_sym_CR] = ACTIONS(2229), - [anon_sym_CR_LF] = ACTIONS(2229), + [ts_builtin_sym_end] = ACTIONS(2868), + [sym_identifier] = ACTIONS(2870), + [anon_sym_LF] = ACTIONS(2870), + [anon_sym_CR] = ACTIONS(2870), + [anon_sym_CR_LF] = ACTIONS(2870), [anon_sym_SLASH_SLASH] = ACTIONS(497), [anon_sym_SLASH_STAR] = ACTIONS(499), - [anon_sym_DOT] = ACTIONS(2229), - [anon_sym_as] = ACTIONS(2229), - [anon_sym_LBRACE] = ACTIONS(2229), - [anon_sym_COMMA] = ACTIONS(2229), - [anon_sym_const] = ACTIONS(2229), - [anon_sym_LPAREN] = ACTIONS(2229), - [anon_sym___global] = ACTIONS(2229), - [anon_sym_type] = ACTIONS(2229), - [anon_sym_PIPE] = ACTIONS(2229), - [anon_sym_fn] = ACTIONS(2229), - [anon_sym_PLUS] = ACTIONS(2229), - [anon_sym_DASH] = ACTIONS(2229), - [anon_sym_STAR] = ACTIONS(2229), - [anon_sym_SLASH] = ACTIONS(2229), - [anon_sym_PERCENT] = ACTIONS(2229), - [anon_sym_LT] = ACTIONS(2229), - [anon_sym_GT] = ACTIONS(2229), - [anon_sym_EQ_EQ] = ACTIONS(2229), - [anon_sym_BANG_EQ] = ACTIONS(2229), - [anon_sym_LT_EQ] = ACTIONS(2229), - [anon_sym_GT_EQ] = ACTIONS(2229), - [anon_sym_LBRACK] = ACTIONS(2227), - [anon_sym_struct] = ACTIONS(2229), - [anon_sym_union] = ACTIONS(2229), - [anon_sym_pub] = ACTIONS(2229), - [anon_sym_mut] = ACTIONS(2229), - [anon_sym_enum] = ACTIONS(2229), - [anon_sym_interface] = ACTIONS(2229), - [anon_sym_PLUS_PLUS] = ACTIONS(2229), - [anon_sym_DASH_DASH] = ACTIONS(2229), - [anon_sym_QMARK] = ACTIONS(2229), - [anon_sym_BANG] = ACTIONS(2229), - [anon_sym_go] = ACTIONS(2229), - [anon_sym_spawn] = ACTIONS(2229), - [anon_sym_json_DOTdecode] = ACTIONS(2229), - [anon_sym_LBRACK2] = ACTIONS(2229), - [anon_sym_TILDE] = ACTIONS(2229), - [anon_sym_CARET] = ACTIONS(2229), - [anon_sym_AMP] = ACTIONS(2229), - [anon_sym_LT_DASH] = ACTIONS(2229), - [anon_sym_LT_LT] = ACTIONS(2229), - [anon_sym_GT_GT] = ACTIONS(2229), - [anon_sym_GT_GT_GT] = ACTIONS(2229), - [anon_sym_AMP_CARET] = ACTIONS(2229), - [anon_sym_AMP_AMP] = ACTIONS(2229), - [anon_sym_PIPE_PIPE] = ACTIONS(2229), - [anon_sym_or] = ACTIONS(2229), - [sym_none] = ACTIONS(2229), - [sym_true] = ACTIONS(2229), - [sym_false] = ACTIONS(2229), - [sym_nil] = ACTIONS(2229), - [anon_sym_QMARK_DOT] = ACTIONS(2229), - [anon_sym_POUND_LBRACK] = ACTIONS(2229), - [anon_sym_if] = ACTIONS(2229), - [anon_sym_DOLLARif] = ACTIONS(2229), - [anon_sym_is] = ACTIONS(2229), - [anon_sym_BANGis] = ACTIONS(2229), - [anon_sym_in] = ACTIONS(2229), - [anon_sym_BANGin] = ACTIONS(2229), - [anon_sym_match] = ACTIONS(2229), - [anon_sym_select] = ACTIONS(2229), - [anon_sym_lock] = ACTIONS(2229), - [anon_sym_rlock] = ACTIONS(2229), - [anon_sym_unsafe] = ACTIONS(2229), - [anon_sym_sql] = ACTIONS(2229), - [sym_int_literal] = ACTIONS(2229), - [sym_float_literal] = ACTIONS(2229), - [sym_rune_literal] = ACTIONS(2229), - [sym_pseudo_compile_time_identifier] = ACTIONS(2229), - [anon_sym_shared] = ACTIONS(2229), - [anon_sym_map_LBRACK] = ACTIONS(2229), - [anon_sym_chan] = ACTIONS(2229), - [anon_sym_thread] = ACTIONS(2229), - [anon_sym_atomic] = ACTIONS(2229), - [anon_sym_assert] = ACTIONS(2229), - [anon_sym_defer] = ACTIONS(2229), - [anon_sym_goto] = ACTIONS(2229), - [anon_sym_break] = ACTIONS(2229), - [anon_sym_continue] = ACTIONS(2229), - [anon_sym_return] = ACTIONS(2229), - [anon_sym_DOLLARfor] = ACTIONS(2229), - [anon_sym_for] = ACTIONS(2229), - [anon_sym_POUND] = ACTIONS(2229), - [anon_sym_asm] = ACTIONS(2229), - [anon_sym_AT_LBRACK] = ACTIONS(2229), - [sym___double_quote] = ACTIONS(2229), - [sym___single_quote] = ACTIONS(2229), - [sym___c_double_quote] = ACTIONS(2229), - [sym___c_single_quote] = ACTIONS(2229), - [sym___r_double_quote] = ACTIONS(2229), - [sym___r_single_quote] = ACTIONS(2229), + [anon_sym_DOT] = ACTIONS(2870), + [anon_sym_as] = ACTIONS(2870), + [anon_sym_LBRACE] = ACTIONS(2870), + [anon_sym_COMMA] = ACTIONS(2870), + [anon_sym_const] = ACTIONS(2870), + [anon_sym_LPAREN] = ACTIONS(2870), + [anon_sym___global] = ACTIONS(2870), + [anon_sym_type] = ACTIONS(2870), + [anon_sym_PIPE] = ACTIONS(2870), + [anon_sym_fn] = ACTIONS(2870), + [anon_sym_PLUS] = ACTIONS(2870), + [anon_sym_DASH] = ACTIONS(2870), + [anon_sym_STAR] = ACTIONS(2870), + [anon_sym_SLASH] = ACTIONS(2870), + [anon_sym_PERCENT] = ACTIONS(2870), + [anon_sym_LT] = ACTIONS(2870), + [anon_sym_GT] = ACTIONS(2870), + [anon_sym_EQ_EQ] = ACTIONS(2870), + [anon_sym_BANG_EQ] = ACTIONS(2870), + [anon_sym_LT_EQ] = ACTIONS(2870), + [anon_sym_GT_EQ] = ACTIONS(2870), + [anon_sym_LBRACK] = ACTIONS(2868), + [anon_sym_struct] = ACTIONS(2870), + [anon_sym_union] = ACTIONS(2870), + [anon_sym_pub] = ACTIONS(2870), + [anon_sym_mut] = ACTIONS(2870), + [anon_sym_enum] = ACTIONS(2870), + [anon_sym_interface] = ACTIONS(2870), + [anon_sym_PLUS_PLUS] = ACTIONS(2870), + [anon_sym_DASH_DASH] = ACTIONS(2870), + [anon_sym_QMARK] = ACTIONS(2870), + [anon_sym_BANG] = ACTIONS(2870), + [anon_sym_go] = ACTIONS(2870), + [anon_sym_spawn] = ACTIONS(2870), + [anon_sym_json_DOTdecode] = ACTIONS(2870), + [anon_sym_LBRACK2] = ACTIONS(2870), + [anon_sym_TILDE] = ACTIONS(2870), + [anon_sym_CARET] = ACTIONS(2870), + [anon_sym_AMP] = ACTIONS(2870), + [anon_sym_LT_DASH] = ACTIONS(2870), + [anon_sym_LT_LT] = ACTIONS(2870), + [anon_sym_GT_GT] = ACTIONS(2870), + [anon_sym_GT_GT_GT] = ACTIONS(2870), + [anon_sym_AMP_CARET] = ACTIONS(2870), + [anon_sym_AMP_AMP] = ACTIONS(2870), + [anon_sym_PIPE_PIPE] = ACTIONS(2870), + [anon_sym_or] = ACTIONS(2870), + [sym_none] = ACTIONS(2870), + [sym_true] = ACTIONS(2870), + [sym_false] = ACTIONS(2870), + [sym_nil] = ACTIONS(2870), + [anon_sym_QMARK_DOT] = ACTIONS(2870), + [anon_sym_POUND_LBRACK] = ACTIONS(2870), + [anon_sym_if] = ACTIONS(2870), + [anon_sym_DOLLARif] = ACTIONS(2870), + [anon_sym_is] = ACTIONS(2870), + [anon_sym_BANGis] = ACTIONS(2870), + [anon_sym_in] = ACTIONS(2870), + [anon_sym_BANGin] = ACTIONS(2870), + [anon_sym_match] = ACTIONS(2870), + [anon_sym_select] = ACTIONS(2870), + [anon_sym_lock] = ACTIONS(2870), + [anon_sym_rlock] = ACTIONS(2870), + [anon_sym_unsafe] = ACTIONS(2870), + [anon_sym_sql] = ACTIONS(2870), + [sym_int_literal] = ACTIONS(2870), + [sym_float_literal] = ACTIONS(2870), + [sym_rune_literal] = ACTIONS(2870), + [sym_pseudo_compile_time_identifier] = ACTIONS(2870), + [anon_sym_shared] = ACTIONS(2870), + [anon_sym_map_LBRACK] = ACTIONS(2870), + [anon_sym_chan] = ACTIONS(2870), + [anon_sym_thread] = ACTIONS(2870), + [anon_sym_atomic] = ACTIONS(2870), + [anon_sym_assert] = ACTIONS(2870), + [anon_sym_defer] = ACTIONS(2870), + [anon_sym_goto] = ACTIONS(2870), + [anon_sym_break] = ACTIONS(2870), + [anon_sym_continue] = ACTIONS(2870), + [anon_sym_return] = ACTIONS(2870), + [anon_sym_DOLLARfor] = ACTIONS(2870), + [anon_sym_for] = ACTIONS(2870), + [anon_sym_POUND] = ACTIONS(2870), + [anon_sym_asm] = ACTIONS(2870), + [anon_sym_AT_LBRACK] = ACTIONS(2870), + [sym___double_quote] = ACTIONS(2870), + [sym___single_quote] = ACTIONS(2870), + [sym___c_double_quote] = ACTIONS(2870), + [sym___c_single_quote] = ACTIONS(2870), + [sym___r_double_quote] = ACTIONS(2870), + [sym___r_single_quote] = ACTIONS(2870), }, [1028] = { [sym_line_comment] = STATE(1028), [sym_block_comment] = STATE(1028), - [ts_builtin_sym_end] = ACTIONS(2910), - [sym_identifier] = ACTIONS(2912), - [anon_sym_LF] = ACTIONS(2912), - [anon_sym_CR] = ACTIONS(2912), - [anon_sym_CR_LF] = ACTIONS(2912), + [ts_builtin_sym_end] = ACTIONS(2473), + [sym_identifier] = ACTIONS(2475), + [anon_sym_LF] = ACTIONS(2475), + [anon_sym_CR] = ACTIONS(2475), + [anon_sym_CR_LF] = ACTIONS(2475), [anon_sym_SLASH_SLASH] = ACTIONS(497), [anon_sym_SLASH_STAR] = ACTIONS(499), - [anon_sym_DOT] = ACTIONS(2912), - [anon_sym_as] = ACTIONS(2912), - [anon_sym_LBRACE] = ACTIONS(2912), - [anon_sym_COMMA] = ACTIONS(2912), - [anon_sym_const] = ACTIONS(2912), - [anon_sym_LPAREN] = ACTIONS(2912), - [anon_sym___global] = ACTIONS(2912), - [anon_sym_type] = ACTIONS(2912), - [anon_sym_PIPE] = ACTIONS(2912), - [anon_sym_fn] = ACTIONS(2912), - [anon_sym_PLUS] = ACTIONS(2912), - [anon_sym_DASH] = ACTIONS(2912), - [anon_sym_STAR] = ACTIONS(2912), - [anon_sym_SLASH] = ACTIONS(2912), - [anon_sym_PERCENT] = ACTIONS(2912), - [anon_sym_LT] = ACTIONS(2912), - [anon_sym_GT] = ACTIONS(2912), - [anon_sym_EQ_EQ] = ACTIONS(2912), - [anon_sym_BANG_EQ] = ACTIONS(2912), - [anon_sym_LT_EQ] = ACTIONS(2912), - [anon_sym_GT_EQ] = ACTIONS(2912), - [anon_sym_LBRACK] = ACTIONS(2910), - [anon_sym_struct] = ACTIONS(2912), - [anon_sym_union] = ACTIONS(2912), - [anon_sym_pub] = ACTIONS(2912), - [anon_sym_mut] = ACTIONS(2912), - [anon_sym_enum] = ACTIONS(2912), - [anon_sym_interface] = ACTIONS(2912), - [anon_sym_PLUS_PLUS] = ACTIONS(2912), - [anon_sym_DASH_DASH] = ACTIONS(2912), - [anon_sym_QMARK] = ACTIONS(2912), - [anon_sym_BANG] = ACTIONS(2912), - [anon_sym_go] = ACTIONS(2912), - [anon_sym_spawn] = ACTIONS(2912), - [anon_sym_json_DOTdecode] = ACTIONS(2912), - [anon_sym_LBRACK2] = ACTIONS(2912), - [anon_sym_TILDE] = ACTIONS(2912), - [anon_sym_CARET] = ACTIONS(2912), - [anon_sym_AMP] = ACTIONS(2912), - [anon_sym_LT_DASH] = ACTIONS(2912), - [anon_sym_LT_LT] = ACTIONS(2912), - [anon_sym_GT_GT] = ACTIONS(2912), - [anon_sym_GT_GT_GT] = ACTIONS(2912), - [anon_sym_AMP_CARET] = ACTIONS(2912), - [anon_sym_AMP_AMP] = ACTIONS(2912), - [anon_sym_PIPE_PIPE] = ACTIONS(2912), - [anon_sym_or] = ACTIONS(2912), - [sym_none] = ACTIONS(2912), - [sym_true] = ACTIONS(2912), - [sym_false] = ACTIONS(2912), - [sym_nil] = ACTIONS(2912), - [anon_sym_QMARK_DOT] = ACTIONS(2912), - [anon_sym_POUND_LBRACK] = ACTIONS(2912), - [anon_sym_if] = ACTIONS(2912), - [anon_sym_DOLLARif] = ACTIONS(2912), - [anon_sym_is] = ACTIONS(2912), - [anon_sym_BANGis] = ACTIONS(2912), - [anon_sym_in] = ACTIONS(2912), - [anon_sym_BANGin] = ACTIONS(2912), - [anon_sym_match] = ACTIONS(2912), - [anon_sym_select] = ACTIONS(2912), - [anon_sym_lock] = ACTIONS(2912), - [anon_sym_rlock] = ACTIONS(2912), - [anon_sym_unsafe] = ACTIONS(2912), - [anon_sym_sql] = ACTIONS(2912), - [sym_int_literal] = ACTIONS(2912), - [sym_float_literal] = ACTIONS(2912), - [sym_rune_literal] = ACTIONS(2912), - [sym_pseudo_compile_time_identifier] = ACTIONS(2912), - [anon_sym_shared] = ACTIONS(2912), - [anon_sym_map_LBRACK] = ACTIONS(2912), - [anon_sym_chan] = ACTIONS(2912), - [anon_sym_thread] = ACTIONS(2912), - [anon_sym_atomic] = ACTIONS(2912), - [anon_sym_assert] = ACTIONS(2912), - [anon_sym_defer] = ACTIONS(2912), - [anon_sym_goto] = ACTIONS(2912), - [anon_sym_break] = ACTIONS(2912), - [anon_sym_continue] = ACTIONS(2912), - [anon_sym_return] = ACTIONS(2912), - [anon_sym_DOLLARfor] = ACTIONS(2912), - [anon_sym_for] = ACTIONS(2912), - [anon_sym_POUND] = ACTIONS(2912), - [anon_sym_asm] = ACTIONS(2912), - [anon_sym_AT_LBRACK] = ACTIONS(2912), - [sym___double_quote] = ACTIONS(2912), - [sym___single_quote] = ACTIONS(2912), - [sym___c_double_quote] = ACTIONS(2912), - [sym___c_single_quote] = ACTIONS(2912), - [sym___r_double_quote] = ACTIONS(2912), - [sym___r_single_quote] = ACTIONS(2912), + [anon_sym_DOT] = ACTIONS(2475), + [anon_sym_as] = ACTIONS(2475), + [anon_sym_LBRACE] = ACTIONS(2475), + [anon_sym_COMMA] = ACTIONS(2475), + [anon_sym_const] = ACTIONS(2475), + [anon_sym_LPAREN] = ACTIONS(2475), + [anon_sym___global] = ACTIONS(2475), + [anon_sym_type] = ACTIONS(2475), + [anon_sym_PIPE] = ACTIONS(2475), + [anon_sym_fn] = ACTIONS(2475), + [anon_sym_PLUS] = ACTIONS(2475), + [anon_sym_DASH] = ACTIONS(2475), + [anon_sym_STAR] = ACTIONS(2475), + [anon_sym_SLASH] = ACTIONS(2475), + [anon_sym_PERCENT] = ACTIONS(2475), + [anon_sym_LT] = ACTIONS(2475), + [anon_sym_GT] = ACTIONS(2475), + [anon_sym_EQ_EQ] = ACTIONS(2475), + [anon_sym_BANG_EQ] = ACTIONS(2475), + [anon_sym_LT_EQ] = ACTIONS(2475), + [anon_sym_GT_EQ] = ACTIONS(2475), + [anon_sym_LBRACK] = ACTIONS(2473), + [anon_sym_struct] = ACTIONS(2475), + [anon_sym_union] = ACTIONS(2475), + [anon_sym_pub] = ACTIONS(2475), + [anon_sym_mut] = ACTIONS(2475), + [anon_sym_enum] = ACTIONS(2475), + [anon_sym_interface] = ACTIONS(2475), + [anon_sym_PLUS_PLUS] = ACTIONS(2475), + [anon_sym_DASH_DASH] = ACTIONS(2475), + [anon_sym_QMARK] = ACTIONS(2475), + [anon_sym_BANG] = ACTIONS(2475), + [anon_sym_go] = ACTIONS(2475), + [anon_sym_spawn] = ACTIONS(2475), + [anon_sym_json_DOTdecode] = ACTIONS(2475), + [anon_sym_LBRACK2] = ACTIONS(2475), + [anon_sym_TILDE] = ACTIONS(2475), + [anon_sym_CARET] = ACTIONS(2475), + [anon_sym_AMP] = ACTIONS(2475), + [anon_sym_LT_DASH] = ACTIONS(2475), + [anon_sym_LT_LT] = ACTIONS(2475), + [anon_sym_GT_GT] = ACTIONS(2475), + [anon_sym_GT_GT_GT] = ACTIONS(2475), + [anon_sym_AMP_CARET] = ACTIONS(2475), + [anon_sym_AMP_AMP] = ACTIONS(2475), + [anon_sym_PIPE_PIPE] = ACTIONS(2475), + [anon_sym_or] = ACTIONS(2475), + [sym_none] = ACTIONS(2475), + [sym_true] = ACTIONS(2475), + [sym_false] = ACTIONS(2475), + [sym_nil] = ACTIONS(2475), + [anon_sym_QMARK_DOT] = ACTIONS(2475), + [anon_sym_POUND_LBRACK] = ACTIONS(2475), + [anon_sym_if] = ACTIONS(2475), + [anon_sym_DOLLARif] = ACTIONS(2475), + [anon_sym_is] = ACTIONS(2475), + [anon_sym_BANGis] = ACTIONS(2475), + [anon_sym_in] = ACTIONS(2475), + [anon_sym_BANGin] = ACTIONS(2475), + [anon_sym_match] = ACTIONS(2475), + [anon_sym_select] = ACTIONS(2475), + [anon_sym_lock] = ACTIONS(2475), + [anon_sym_rlock] = ACTIONS(2475), + [anon_sym_unsafe] = ACTIONS(2475), + [anon_sym_sql] = ACTIONS(2475), + [sym_int_literal] = ACTIONS(2475), + [sym_float_literal] = ACTIONS(2475), + [sym_rune_literal] = ACTIONS(2475), + [sym_pseudo_compile_time_identifier] = ACTIONS(2475), + [anon_sym_shared] = ACTIONS(2475), + [anon_sym_map_LBRACK] = ACTIONS(2475), + [anon_sym_chan] = ACTIONS(2475), + [anon_sym_thread] = ACTIONS(2475), + [anon_sym_atomic] = ACTIONS(2475), + [anon_sym_assert] = ACTIONS(2475), + [anon_sym_defer] = ACTIONS(2475), + [anon_sym_goto] = ACTIONS(2475), + [anon_sym_break] = ACTIONS(2475), + [anon_sym_continue] = ACTIONS(2475), + [anon_sym_return] = ACTIONS(2475), + [anon_sym_DOLLARfor] = ACTIONS(2475), + [anon_sym_for] = ACTIONS(2475), + [anon_sym_POUND] = ACTIONS(2475), + [anon_sym_asm] = ACTIONS(2475), + [anon_sym_AT_LBRACK] = ACTIONS(2475), + [sym___double_quote] = ACTIONS(2475), + [sym___single_quote] = ACTIONS(2475), + [sym___c_double_quote] = ACTIONS(2475), + [sym___c_single_quote] = ACTIONS(2475), + [sym___r_double_quote] = ACTIONS(2475), + [sym___r_single_quote] = ACTIONS(2475), }, [1029] = { [sym_line_comment] = STATE(1029), [sym_block_comment] = STATE(1029), - [ts_builtin_sym_end] = ACTIONS(2906), - [sym_identifier] = ACTIONS(2908), - [anon_sym_LF] = ACTIONS(2908), - [anon_sym_CR] = ACTIONS(2908), - [anon_sym_CR_LF] = ACTIONS(2908), + [ts_builtin_sym_end] = ACTIONS(2698), + [sym_identifier] = ACTIONS(2700), + [anon_sym_LF] = ACTIONS(2700), + [anon_sym_CR] = ACTIONS(2700), + [anon_sym_CR_LF] = ACTIONS(2700), [anon_sym_SLASH_SLASH] = ACTIONS(497), [anon_sym_SLASH_STAR] = ACTIONS(499), - [anon_sym_DOT] = ACTIONS(2908), - [anon_sym_as] = ACTIONS(2908), - [anon_sym_LBRACE] = ACTIONS(2908), - [anon_sym_COMMA] = ACTIONS(2908), - [anon_sym_const] = ACTIONS(2908), - [anon_sym_LPAREN] = ACTIONS(2908), - [anon_sym___global] = ACTIONS(2908), - [anon_sym_type] = ACTIONS(2908), - [anon_sym_PIPE] = ACTIONS(2908), - [anon_sym_fn] = ACTIONS(2908), - [anon_sym_PLUS] = ACTIONS(2908), - [anon_sym_DASH] = ACTIONS(2908), - [anon_sym_STAR] = ACTIONS(2908), - [anon_sym_SLASH] = ACTIONS(2908), - [anon_sym_PERCENT] = ACTIONS(2908), - [anon_sym_LT] = ACTIONS(2908), - [anon_sym_GT] = ACTIONS(2908), - [anon_sym_EQ_EQ] = ACTIONS(2908), - [anon_sym_BANG_EQ] = ACTIONS(2908), - [anon_sym_LT_EQ] = ACTIONS(2908), - [anon_sym_GT_EQ] = ACTIONS(2908), - [anon_sym_LBRACK] = ACTIONS(2906), - [anon_sym_struct] = ACTIONS(2908), - [anon_sym_union] = ACTIONS(2908), - [anon_sym_pub] = ACTIONS(2908), - [anon_sym_mut] = ACTIONS(2908), - [anon_sym_enum] = ACTIONS(2908), - [anon_sym_interface] = ACTIONS(2908), - [anon_sym_PLUS_PLUS] = ACTIONS(2908), - [anon_sym_DASH_DASH] = ACTIONS(2908), - [anon_sym_QMARK] = ACTIONS(2908), - [anon_sym_BANG] = ACTIONS(2908), - [anon_sym_go] = ACTIONS(2908), - [anon_sym_spawn] = ACTIONS(2908), - [anon_sym_json_DOTdecode] = ACTIONS(2908), - [anon_sym_LBRACK2] = ACTIONS(2908), - [anon_sym_TILDE] = ACTIONS(2908), - [anon_sym_CARET] = ACTIONS(2908), - [anon_sym_AMP] = ACTIONS(2908), - [anon_sym_LT_DASH] = ACTIONS(2908), - [anon_sym_LT_LT] = ACTIONS(2908), - [anon_sym_GT_GT] = ACTIONS(2908), - [anon_sym_GT_GT_GT] = ACTIONS(2908), - [anon_sym_AMP_CARET] = ACTIONS(2908), - [anon_sym_AMP_AMP] = ACTIONS(2908), - [anon_sym_PIPE_PIPE] = ACTIONS(2908), - [anon_sym_or] = ACTIONS(2908), - [sym_none] = ACTIONS(2908), - [sym_true] = ACTIONS(2908), - [sym_false] = ACTIONS(2908), - [sym_nil] = ACTIONS(2908), - [anon_sym_QMARK_DOT] = ACTIONS(2908), - [anon_sym_POUND_LBRACK] = ACTIONS(2908), - [anon_sym_if] = ACTIONS(2908), - [anon_sym_DOLLARif] = ACTIONS(2908), - [anon_sym_is] = ACTIONS(2908), - [anon_sym_BANGis] = ACTIONS(2908), - [anon_sym_in] = ACTIONS(2908), - [anon_sym_BANGin] = ACTIONS(2908), - [anon_sym_match] = ACTIONS(2908), - [anon_sym_select] = ACTIONS(2908), - [anon_sym_lock] = ACTIONS(2908), - [anon_sym_rlock] = ACTIONS(2908), - [anon_sym_unsafe] = ACTIONS(2908), - [anon_sym_sql] = ACTIONS(2908), - [sym_int_literal] = ACTIONS(2908), - [sym_float_literal] = ACTIONS(2908), - [sym_rune_literal] = ACTIONS(2908), - [sym_pseudo_compile_time_identifier] = ACTIONS(2908), - [anon_sym_shared] = ACTIONS(2908), - [anon_sym_map_LBRACK] = ACTIONS(2908), - [anon_sym_chan] = ACTIONS(2908), - [anon_sym_thread] = ACTIONS(2908), - [anon_sym_atomic] = ACTIONS(2908), - [anon_sym_assert] = ACTIONS(2908), - [anon_sym_defer] = ACTIONS(2908), - [anon_sym_goto] = ACTIONS(2908), - [anon_sym_break] = ACTIONS(2908), - [anon_sym_continue] = ACTIONS(2908), - [anon_sym_return] = ACTIONS(2908), - [anon_sym_DOLLARfor] = ACTIONS(2908), - [anon_sym_for] = ACTIONS(2908), - [anon_sym_POUND] = ACTIONS(2908), - [anon_sym_asm] = ACTIONS(2908), - [anon_sym_AT_LBRACK] = ACTIONS(2908), - [sym___double_quote] = ACTIONS(2908), - [sym___single_quote] = ACTIONS(2908), - [sym___c_double_quote] = ACTIONS(2908), - [sym___c_single_quote] = ACTIONS(2908), - [sym___r_double_quote] = ACTIONS(2908), - [sym___r_single_quote] = ACTIONS(2908), + [anon_sym_DOT] = ACTIONS(2700), + [anon_sym_as] = ACTIONS(2700), + [anon_sym_LBRACE] = ACTIONS(2700), + [anon_sym_COMMA] = ACTIONS(2700), + [anon_sym_const] = ACTIONS(2700), + [anon_sym_LPAREN] = ACTIONS(2700), + [anon_sym___global] = ACTIONS(2700), + [anon_sym_type] = ACTIONS(2700), + [anon_sym_PIPE] = ACTIONS(2700), + [anon_sym_fn] = ACTIONS(2700), + [anon_sym_PLUS] = ACTIONS(2700), + [anon_sym_DASH] = ACTIONS(2700), + [anon_sym_STAR] = ACTIONS(2700), + [anon_sym_SLASH] = ACTIONS(2700), + [anon_sym_PERCENT] = ACTIONS(2700), + [anon_sym_LT] = ACTIONS(2700), + [anon_sym_GT] = ACTIONS(2700), + [anon_sym_EQ_EQ] = ACTIONS(2700), + [anon_sym_BANG_EQ] = ACTIONS(2700), + [anon_sym_LT_EQ] = ACTIONS(2700), + [anon_sym_GT_EQ] = ACTIONS(2700), + [anon_sym_LBRACK] = ACTIONS(2698), + [anon_sym_struct] = ACTIONS(2700), + [anon_sym_union] = ACTIONS(2700), + [anon_sym_pub] = ACTIONS(2700), + [anon_sym_mut] = ACTIONS(2700), + [anon_sym_enum] = ACTIONS(2700), + [anon_sym_interface] = ACTIONS(2700), + [anon_sym_PLUS_PLUS] = ACTIONS(2700), + [anon_sym_DASH_DASH] = ACTIONS(2700), + [anon_sym_QMARK] = ACTIONS(2700), + [anon_sym_BANG] = ACTIONS(2700), + [anon_sym_go] = ACTIONS(2700), + [anon_sym_spawn] = ACTIONS(2700), + [anon_sym_json_DOTdecode] = ACTIONS(2700), + [anon_sym_LBRACK2] = ACTIONS(2700), + [anon_sym_TILDE] = ACTIONS(2700), + [anon_sym_CARET] = ACTIONS(2700), + [anon_sym_AMP] = ACTIONS(2700), + [anon_sym_LT_DASH] = ACTIONS(2700), + [anon_sym_LT_LT] = ACTIONS(2700), + [anon_sym_GT_GT] = ACTIONS(2700), + [anon_sym_GT_GT_GT] = ACTIONS(2700), + [anon_sym_AMP_CARET] = ACTIONS(2700), + [anon_sym_AMP_AMP] = ACTIONS(2700), + [anon_sym_PIPE_PIPE] = ACTIONS(2700), + [anon_sym_or] = ACTIONS(2700), + [sym_none] = ACTIONS(2700), + [sym_true] = ACTIONS(2700), + [sym_false] = ACTIONS(2700), + [sym_nil] = ACTIONS(2700), + [anon_sym_QMARK_DOT] = ACTIONS(2700), + [anon_sym_POUND_LBRACK] = ACTIONS(2700), + [anon_sym_if] = ACTIONS(2700), + [anon_sym_DOLLARif] = ACTIONS(2700), + [anon_sym_is] = ACTIONS(2700), + [anon_sym_BANGis] = ACTIONS(2700), + [anon_sym_in] = ACTIONS(2700), + [anon_sym_BANGin] = ACTIONS(2700), + [anon_sym_match] = ACTIONS(2700), + [anon_sym_select] = ACTIONS(2700), + [anon_sym_lock] = ACTIONS(2700), + [anon_sym_rlock] = ACTIONS(2700), + [anon_sym_unsafe] = ACTIONS(2700), + [anon_sym_sql] = ACTIONS(2700), + [sym_int_literal] = ACTIONS(2700), + [sym_float_literal] = ACTIONS(2700), + [sym_rune_literal] = ACTIONS(2700), + [sym_pseudo_compile_time_identifier] = ACTIONS(2700), + [anon_sym_shared] = ACTIONS(2700), + [anon_sym_map_LBRACK] = ACTIONS(2700), + [anon_sym_chan] = ACTIONS(2700), + [anon_sym_thread] = ACTIONS(2700), + [anon_sym_atomic] = ACTIONS(2700), + [anon_sym_assert] = ACTIONS(2700), + [anon_sym_defer] = ACTIONS(2700), + [anon_sym_goto] = ACTIONS(2700), + [anon_sym_break] = ACTIONS(2700), + [anon_sym_continue] = ACTIONS(2700), + [anon_sym_return] = ACTIONS(2700), + [anon_sym_DOLLARfor] = ACTIONS(2700), + [anon_sym_for] = ACTIONS(2700), + [anon_sym_POUND] = ACTIONS(2700), + [anon_sym_asm] = ACTIONS(2700), + [anon_sym_AT_LBRACK] = ACTIONS(2700), + [sym___double_quote] = ACTIONS(2700), + [sym___single_quote] = ACTIONS(2700), + [sym___c_double_quote] = ACTIONS(2700), + [sym___c_single_quote] = ACTIONS(2700), + [sym___r_double_quote] = ACTIONS(2700), + [sym___r_single_quote] = ACTIONS(2700), }, [1030] = { [sym_line_comment] = STATE(1030), [sym_block_comment] = STATE(1030), - [ts_builtin_sym_end] = ACTIONS(1953), - [sym_identifier] = ACTIONS(1951), - [anon_sym_LF] = ACTIONS(1951), - [anon_sym_CR] = ACTIONS(1951), - [anon_sym_CR_LF] = ACTIONS(1951), + [ts_builtin_sym_end] = ACTIONS(1879), + [sym_identifier] = ACTIONS(1881), + [anon_sym_LF] = ACTIONS(1881), + [anon_sym_CR] = ACTIONS(1881), + [anon_sym_CR_LF] = ACTIONS(1881), [anon_sym_SLASH_SLASH] = ACTIONS(497), [anon_sym_SLASH_STAR] = ACTIONS(499), - [anon_sym_DOT] = ACTIONS(1951), - [anon_sym_as] = ACTIONS(1951), - [anon_sym_LBRACE] = ACTIONS(1951), - [anon_sym_COMMA] = ACTIONS(1951), - [anon_sym_const] = ACTIONS(1951), - [anon_sym_LPAREN] = ACTIONS(1951), - [anon_sym___global] = ACTIONS(1951), - [anon_sym_type] = ACTIONS(1951), - [anon_sym_PIPE] = ACTIONS(1951), - [anon_sym_fn] = ACTIONS(1951), - [anon_sym_PLUS] = ACTIONS(1951), - [anon_sym_DASH] = ACTIONS(1951), - [anon_sym_STAR] = ACTIONS(1951), - [anon_sym_SLASH] = ACTIONS(1951), - [anon_sym_PERCENT] = ACTIONS(1951), - [anon_sym_LT] = ACTIONS(1951), - [anon_sym_GT] = ACTIONS(1951), - [anon_sym_EQ_EQ] = ACTIONS(1951), - [anon_sym_BANG_EQ] = ACTIONS(1951), - [anon_sym_LT_EQ] = ACTIONS(1951), - [anon_sym_GT_EQ] = ACTIONS(1951), - [anon_sym_LBRACK] = ACTIONS(1953), - [anon_sym_struct] = ACTIONS(1951), - [anon_sym_union] = ACTIONS(1951), - [anon_sym_pub] = ACTIONS(1951), - [anon_sym_mut] = ACTIONS(1951), - [anon_sym_enum] = ACTIONS(1951), - [anon_sym_interface] = ACTIONS(1951), - [anon_sym_PLUS_PLUS] = ACTIONS(1951), - [anon_sym_DASH_DASH] = ACTIONS(1951), - [anon_sym_QMARK] = ACTIONS(1951), - [anon_sym_BANG] = ACTIONS(1951), - [anon_sym_go] = ACTIONS(1951), - [anon_sym_spawn] = ACTIONS(1951), - [anon_sym_json_DOTdecode] = ACTIONS(1951), - [anon_sym_LBRACK2] = ACTIONS(1951), - [anon_sym_TILDE] = ACTIONS(1951), - [anon_sym_CARET] = ACTIONS(1951), - [anon_sym_AMP] = ACTIONS(1951), - [anon_sym_LT_DASH] = ACTIONS(1951), - [anon_sym_LT_LT] = ACTIONS(1951), - [anon_sym_GT_GT] = ACTIONS(1951), - [anon_sym_GT_GT_GT] = ACTIONS(1951), - [anon_sym_AMP_CARET] = ACTIONS(1951), - [anon_sym_AMP_AMP] = ACTIONS(1951), - [anon_sym_PIPE_PIPE] = ACTIONS(1951), - [anon_sym_or] = ACTIONS(1951), - [sym_none] = ACTIONS(1951), - [sym_true] = ACTIONS(1951), - [sym_false] = ACTIONS(1951), - [sym_nil] = ACTIONS(1951), - [anon_sym_QMARK_DOT] = ACTIONS(1951), - [anon_sym_POUND_LBRACK] = ACTIONS(1951), - [anon_sym_if] = ACTIONS(1951), - [anon_sym_DOLLARif] = ACTIONS(1951), - [anon_sym_is] = ACTIONS(1951), - [anon_sym_BANGis] = ACTIONS(1951), - [anon_sym_in] = ACTIONS(1951), - [anon_sym_BANGin] = ACTIONS(1951), - [anon_sym_match] = ACTIONS(1951), - [anon_sym_select] = ACTIONS(1951), - [anon_sym_lock] = ACTIONS(1951), - [anon_sym_rlock] = ACTIONS(1951), - [anon_sym_unsafe] = ACTIONS(1951), - [anon_sym_sql] = ACTIONS(1951), - [sym_int_literal] = ACTIONS(1951), - [sym_float_literal] = ACTIONS(1951), - [sym_rune_literal] = ACTIONS(1951), - [sym_pseudo_compile_time_identifier] = ACTIONS(1951), - [anon_sym_shared] = ACTIONS(1951), - [anon_sym_map_LBRACK] = ACTIONS(1951), - [anon_sym_chan] = ACTIONS(1951), - [anon_sym_thread] = ACTIONS(1951), - [anon_sym_atomic] = ACTIONS(1951), - [anon_sym_assert] = ACTIONS(1951), - [anon_sym_defer] = ACTIONS(1951), - [anon_sym_goto] = ACTIONS(1951), - [anon_sym_break] = ACTIONS(1951), - [anon_sym_continue] = ACTIONS(1951), - [anon_sym_return] = ACTIONS(1951), - [anon_sym_DOLLARfor] = ACTIONS(1951), - [anon_sym_for] = ACTIONS(1951), - [anon_sym_POUND] = ACTIONS(1951), - [anon_sym_asm] = ACTIONS(1951), - [anon_sym_AT_LBRACK] = ACTIONS(1951), - [sym___double_quote] = ACTIONS(1951), - [sym___single_quote] = ACTIONS(1951), - [sym___c_double_quote] = ACTIONS(1951), - [sym___c_single_quote] = ACTIONS(1951), - [sym___r_double_quote] = ACTIONS(1951), - [sym___r_single_quote] = ACTIONS(1951), + [anon_sym_DOT] = ACTIONS(1881), + [anon_sym_as] = ACTIONS(1881), + [anon_sym_LBRACE] = ACTIONS(1881), + [anon_sym_COMMA] = ACTIONS(1881), + [anon_sym_const] = ACTIONS(1881), + [anon_sym_LPAREN] = 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(1879), + [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(1881), + [anon_sym_BANG] = ACTIONS(1881), + [anon_sym_go] = ACTIONS(1881), + [anon_sym_spawn] = ACTIONS(1881), + [anon_sym_json_DOTdecode] = ACTIONS(1881), + [anon_sym_LBRACK2] = ACTIONS(1881), + [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(1881), + [anon_sym_POUND_LBRACK] = ACTIONS(1881), + [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), }, [1031] = { [sym_line_comment] = STATE(1031), [sym_block_comment] = STATE(1031), - [ts_builtin_sym_end] = ACTIONS(2902), - [sym_identifier] = ACTIONS(2904), - [anon_sym_LF] = ACTIONS(2904), - [anon_sym_CR] = ACTIONS(2904), - [anon_sym_CR_LF] = ACTIONS(2904), - [anon_sym_SLASH_SLASH] = ACTIONS(497), - [anon_sym_SLASH_STAR] = ACTIONS(499), - [anon_sym_DOT] = ACTIONS(2904), - [anon_sym_as] = ACTIONS(2904), - [anon_sym_LBRACE] = ACTIONS(2904), - [anon_sym_COMMA] = ACTIONS(2904), - [anon_sym_const] = ACTIONS(2904), - [anon_sym_LPAREN] = ACTIONS(2904), - [anon_sym___global] = ACTIONS(2904), - [anon_sym_type] = ACTIONS(2904), - [anon_sym_PIPE] = ACTIONS(2904), - [anon_sym_fn] = ACTIONS(2904), - [anon_sym_PLUS] = ACTIONS(2904), - [anon_sym_DASH] = ACTIONS(2904), - [anon_sym_STAR] = ACTIONS(2904), - [anon_sym_SLASH] = ACTIONS(2904), - [anon_sym_PERCENT] = ACTIONS(2904), - [anon_sym_LT] = ACTIONS(2904), - [anon_sym_GT] = ACTIONS(2904), - [anon_sym_EQ_EQ] = ACTIONS(2904), - [anon_sym_BANG_EQ] = ACTIONS(2904), - [anon_sym_LT_EQ] = ACTIONS(2904), - [anon_sym_GT_EQ] = ACTIONS(2904), - [anon_sym_LBRACK] = ACTIONS(2902), - [anon_sym_struct] = ACTIONS(2904), - [anon_sym_union] = ACTIONS(2904), - [anon_sym_pub] = ACTIONS(2904), - [anon_sym_mut] = ACTIONS(2904), - [anon_sym_enum] = ACTIONS(2904), - [anon_sym_interface] = ACTIONS(2904), - [anon_sym_PLUS_PLUS] = ACTIONS(2904), - [anon_sym_DASH_DASH] = ACTIONS(2904), - [anon_sym_QMARK] = ACTIONS(2904), - [anon_sym_BANG] = ACTIONS(2904), - [anon_sym_go] = ACTIONS(2904), - [anon_sym_spawn] = ACTIONS(2904), - [anon_sym_json_DOTdecode] = ACTIONS(2904), - [anon_sym_LBRACK2] = ACTIONS(2904), - [anon_sym_TILDE] = ACTIONS(2904), - [anon_sym_CARET] = ACTIONS(2904), - [anon_sym_AMP] = ACTIONS(2904), - [anon_sym_LT_DASH] = ACTIONS(2904), - [anon_sym_LT_LT] = ACTIONS(2904), - [anon_sym_GT_GT] = ACTIONS(2904), - [anon_sym_GT_GT_GT] = ACTIONS(2904), - [anon_sym_AMP_CARET] = ACTIONS(2904), - [anon_sym_AMP_AMP] = ACTIONS(2904), - [anon_sym_PIPE_PIPE] = ACTIONS(2904), - [anon_sym_or] = ACTIONS(2904), - [sym_none] = ACTIONS(2904), - [sym_true] = ACTIONS(2904), - [sym_false] = ACTIONS(2904), - [sym_nil] = ACTIONS(2904), - [anon_sym_QMARK_DOT] = ACTIONS(2904), - [anon_sym_POUND_LBRACK] = ACTIONS(2904), - [anon_sym_if] = ACTIONS(2904), - [anon_sym_DOLLARif] = ACTIONS(2904), - [anon_sym_is] = ACTIONS(2904), - [anon_sym_BANGis] = ACTIONS(2904), - [anon_sym_in] = ACTIONS(2904), - [anon_sym_BANGin] = ACTIONS(2904), - [anon_sym_match] = ACTIONS(2904), - [anon_sym_select] = ACTIONS(2904), - [anon_sym_lock] = ACTIONS(2904), - [anon_sym_rlock] = ACTIONS(2904), - [anon_sym_unsafe] = ACTIONS(2904), - [anon_sym_sql] = ACTIONS(2904), - [sym_int_literal] = ACTIONS(2904), - [sym_float_literal] = ACTIONS(2904), - [sym_rune_literal] = ACTIONS(2904), - [sym_pseudo_compile_time_identifier] = ACTIONS(2904), - [anon_sym_shared] = ACTIONS(2904), - [anon_sym_map_LBRACK] = ACTIONS(2904), - [anon_sym_chan] = ACTIONS(2904), - [anon_sym_thread] = ACTIONS(2904), - [anon_sym_atomic] = ACTIONS(2904), - [anon_sym_assert] = ACTIONS(2904), - [anon_sym_defer] = ACTIONS(2904), - [anon_sym_goto] = ACTIONS(2904), - [anon_sym_break] = ACTIONS(2904), - [anon_sym_continue] = ACTIONS(2904), - [anon_sym_return] = ACTIONS(2904), - [anon_sym_DOLLARfor] = ACTIONS(2904), - [anon_sym_for] = ACTIONS(2904), - [anon_sym_POUND] = ACTIONS(2904), - [anon_sym_asm] = ACTIONS(2904), - [anon_sym_AT_LBRACK] = ACTIONS(2904), - [sym___double_quote] = ACTIONS(2904), - [sym___single_quote] = ACTIONS(2904), - [sym___c_double_quote] = ACTIONS(2904), - [sym___c_single_quote] = ACTIONS(2904), - [sym___r_double_quote] = ACTIONS(2904), - [sym___r_single_quote] = ACTIONS(2904), - }, - [1032] = { - [sym_line_comment] = STATE(1032), - [sym_block_comment] = STATE(1032), - [ts_builtin_sym_end] = ACTIONS(2788), - [sym_identifier] = ACTIONS(2790), - [anon_sym_LF] = ACTIONS(2790), - [anon_sym_CR] = ACTIONS(2790), - [anon_sym_CR_LF] = ACTIONS(2790), - [anon_sym_SLASH_SLASH] = ACTIONS(497), - [anon_sym_SLASH_STAR] = ACTIONS(499), - [anon_sym_DOT] = ACTIONS(2790), - [anon_sym_as] = ACTIONS(2790), - [anon_sym_LBRACE] = ACTIONS(2790), - [anon_sym_COMMA] = ACTIONS(2790), - [anon_sym_const] = ACTIONS(2790), - [anon_sym_LPAREN] = ACTIONS(2790), - [anon_sym___global] = ACTIONS(2790), - [anon_sym_type] = ACTIONS(2790), - [anon_sym_PIPE] = ACTIONS(2790), - [anon_sym_fn] = ACTIONS(2790), - [anon_sym_PLUS] = ACTIONS(2790), - [anon_sym_DASH] = ACTIONS(2790), - [anon_sym_STAR] = ACTIONS(2790), - [anon_sym_SLASH] = ACTIONS(2790), - [anon_sym_PERCENT] = ACTIONS(2790), - [anon_sym_LT] = ACTIONS(2790), - [anon_sym_GT] = ACTIONS(2790), - [anon_sym_EQ_EQ] = ACTIONS(2790), - [anon_sym_BANG_EQ] = ACTIONS(2790), - [anon_sym_LT_EQ] = ACTIONS(2790), - [anon_sym_GT_EQ] = ACTIONS(2790), - [anon_sym_LBRACK] = ACTIONS(2788), - [anon_sym_struct] = ACTIONS(2790), - [anon_sym_union] = ACTIONS(2790), - [anon_sym_pub] = ACTIONS(2790), - [anon_sym_mut] = ACTIONS(2790), - [anon_sym_enum] = ACTIONS(2790), - [anon_sym_interface] = ACTIONS(2790), - [anon_sym_PLUS_PLUS] = ACTIONS(2790), - [anon_sym_DASH_DASH] = ACTIONS(2790), - [anon_sym_QMARK] = ACTIONS(2790), - [anon_sym_BANG] = ACTIONS(2790), - [anon_sym_go] = ACTIONS(2790), - [anon_sym_spawn] = ACTIONS(2790), - [anon_sym_json_DOTdecode] = ACTIONS(2790), - [anon_sym_LBRACK2] = ACTIONS(2790), - [anon_sym_TILDE] = ACTIONS(2790), - [anon_sym_CARET] = ACTIONS(2790), - [anon_sym_AMP] = ACTIONS(2790), - [anon_sym_LT_DASH] = ACTIONS(2790), - [anon_sym_LT_LT] = ACTIONS(2790), - [anon_sym_GT_GT] = ACTIONS(2790), - [anon_sym_GT_GT_GT] = ACTIONS(2790), - [anon_sym_AMP_CARET] = ACTIONS(2790), - [anon_sym_AMP_AMP] = ACTIONS(2790), - [anon_sym_PIPE_PIPE] = ACTIONS(2790), - [anon_sym_or] = ACTIONS(2790), - [sym_none] = ACTIONS(2790), - [sym_true] = ACTIONS(2790), - [sym_false] = ACTIONS(2790), - [sym_nil] = ACTIONS(2790), - [anon_sym_QMARK_DOT] = ACTIONS(2790), - [anon_sym_POUND_LBRACK] = ACTIONS(2790), - [anon_sym_if] = ACTIONS(2790), - [anon_sym_DOLLARif] = ACTIONS(2790), - [anon_sym_is] = ACTIONS(2790), - [anon_sym_BANGis] = ACTIONS(2790), - [anon_sym_in] = ACTIONS(2790), - [anon_sym_BANGin] = ACTIONS(2790), - [anon_sym_match] = ACTIONS(2790), - [anon_sym_select] = ACTIONS(2790), - [anon_sym_lock] = ACTIONS(2790), - [anon_sym_rlock] = ACTIONS(2790), - [anon_sym_unsafe] = ACTIONS(2790), - [anon_sym_sql] = ACTIONS(2790), - [sym_int_literal] = ACTIONS(2790), - [sym_float_literal] = ACTIONS(2790), - [sym_rune_literal] = ACTIONS(2790), - [sym_pseudo_compile_time_identifier] = ACTIONS(2790), - [anon_sym_shared] = ACTIONS(2790), - [anon_sym_map_LBRACK] = ACTIONS(2790), - [anon_sym_chan] = ACTIONS(2790), - [anon_sym_thread] = ACTIONS(2790), - [anon_sym_atomic] = ACTIONS(2790), - [anon_sym_assert] = ACTIONS(2790), - [anon_sym_defer] = ACTIONS(2790), - [anon_sym_goto] = ACTIONS(2790), - [anon_sym_break] = ACTIONS(2790), - [anon_sym_continue] = ACTIONS(2790), - [anon_sym_return] = ACTIONS(2790), - [anon_sym_DOLLARfor] = ACTIONS(2790), - [anon_sym_for] = ACTIONS(2790), - [anon_sym_POUND] = ACTIONS(2790), - [anon_sym_asm] = ACTIONS(2790), - [anon_sym_AT_LBRACK] = ACTIONS(2790), - [sym___double_quote] = ACTIONS(2790), - [sym___single_quote] = ACTIONS(2790), - [sym___c_double_quote] = ACTIONS(2790), - [sym___c_single_quote] = ACTIONS(2790), - [sym___r_double_quote] = ACTIONS(2790), - [sym___r_single_quote] = ACTIONS(2790), - }, - [1033] = { - [sym_line_comment] = STATE(1033), - [sym_block_comment] = STATE(1033), - [ts_builtin_sym_end] = ACTIONS(2675), - [sym_identifier] = ACTIONS(2677), - [anon_sym_LF] = ACTIONS(2677), - [anon_sym_CR] = ACTIONS(2677), - [anon_sym_CR_LF] = ACTIONS(2677), - [anon_sym_SLASH_SLASH] = ACTIONS(497), - [anon_sym_SLASH_STAR] = ACTIONS(499), - [anon_sym_DOT] = ACTIONS(2677), - [anon_sym_as] = ACTIONS(2677), - [anon_sym_LBRACE] = ACTIONS(2677), - [anon_sym_COMMA] = ACTIONS(2677), - [anon_sym_const] = ACTIONS(2677), - [anon_sym_LPAREN] = ACTIONS(2677), - [anon_sym___global] = ACTIONS(2677), - [anon_sym_type] = ACTIONS(2677), - [anon_sym_PIPE] = ACTIONS(2677), - [anon_sym_fn] = ACTIONS(2677), - [anon_sym_PLUS] = ACTIONS(2677), - [anon_sym_DASH] = ACTIONS(2677), - [anon_sym_STAR] = ACTIONS(2677), - [anon_sym_SLASH] = ACTIONS(2677), - [anon_sym_PERCENT] = ACTIONS(2677), - [anon_sym_LT] = ACTIONS(2677), - [anon_sym_GT] = ACTIONS(2677), - [anon_sym_EQ_EQ] = ACTIONS(2677), - [anon_sym_BANG_EQ] = ACTIONS(2677), - [anon_sym_LT_EQ] = ACTIONS(2677), - [anon_sym_GT_EQ] = ACTIONS(2677), - [anon_sym_LBRACK] = ACTIONS(2675), - [anon_sym_struct] = ACTIONS(2677), - [anon_sym_union] = ACTIONS(2677), - [anon_sym_pub] = ACTIONS(2677), - [anon_sym_mut] = ACTIONS(2677), - [anon_sym_enum] = ACTIONS(2677), - [anon_sym_interface] = ACTIONS(2677), - [anon_sym_PLUS_PLUS] = ACTIONS(2677), - [anon_sym_DASH_DASH] = ACTIONS(2677), - [anon_sym_QMARK] = ACTIONS(2677), - [anon_sym_BANG] = ACTIONS(2677), - [anon_sym_go] = ACTIONS(2677), - [anon_sym_spawn] = ACTIONS(2677), - [anon_sym_json_DOTdecode] = ACTIONS(2677), - [anon_sym_LBRACK2] = ACTIONS(2677), - [anon_sym_TILDE] = ACTIONS(2677), - [anon_sym_CARET] = ACTIONS(2677), - [anon_sym_AMP] = ACTIONS(2677), - [anon_sym_LT_DASH] = ACTIONS(2677), - [anon_sym_LT_LT] = ACTIONS(2677), - [anon_sym_GT_GT] = ACTIONS(2677), - [anon_sym_GT_GT_GT] = ACTIONS(2677), - [anon_sym_AMP_CARET] = ACTIONS(2677), - [anon_sym_AMP_AMP] = ACTIONS(2677), - [anon_sym_PIPE_PIPE] = ACTIONS(2677), - [anon_sym_or] = ACTIONS(2677), - [sym_none] = ACTIONS(2677), - [sym_true] = ACTIONS(2677), - [sym_false] = ACTIONS(2677), - [sym_nil] = ACTIONS(2677), - [anon_sym_QMARK_DOT] = ACTIONS(2677), - [anon_sym_POUND_LBRACK] = ACTIONS(2677), - [anon_sym_if] = ACTIONS(2677), - [anon_sym_DOLLARif] = ACTIONS(2677), - [anon_sym_is] = ACTIONS(2677), - [anon_sym_BANGis] = ACTIONS(2677), - [anon_sym_in] = ACTIONS(2677), - [anon_sym_BANGin] = ACTIONS(2677), - [anon_sym_match] = ACTIONS(2677), - [anon_sym_select] = ACTIONS(2677), - [anon_sym_lock] = ACTIONS(2677), - [anon_sym_rlock] = ACTIONS(2677), - [anon_sym_unsafe] = ACTIONS(2677), - [anon_sym_sql] = ACTIONS(2677), - [sym_int_literal] = ACTIONS(2677), - [sym_float_literal] = ACTIONS(2677), - [sym_rune_literal] = ACTIONS(2677), - [sym_pseudo_compile_time_identifier] = ACTIONS(2677), - [anon_sym_shared] = ACTIONS(2677), - [anon_sym_map_LBRACK] = ACTIONS(2677), - [anon_sym_chan] = ACTIONS(2677), - [anon_sym_thread] = ACTIONS(2677), - [anon_sym_atomic] = ACTIONS(2677), - [anon_sym_assert] = ACTIONS(2677), - [anon_sym_defer] = ACTIONS(2677), - [anon_sym_goto] = ACTIONS(2677), - [anon_sym_break] = ACTIONS(2677), - [anon_sym_continue] = ACTIONS(2677), - [anon_sym_return] = ACTIONS(2677), - [anon_sym_DOLLARfor] = ACTIONS(2677), - [anon_sym_for] = ACTIONS(2677), - [anon_sym_POUND] = ACTIONS(2677), - [anon_sym_asm] = ACTIONS(2677), - [anon_sym_AT_LBRACK] = ACTIONS(2677), - [sym___double_quote] = ACTIONS(2677), - [sym___single_quote] = ACTIONS(2677), - [sym___c_double_quote] = ACTIONS(2677), - [sym___c_single_quote] = ACTIONS(2677), - [sym___r_double_quote] = ACTIONS(2677), - [sym___r_single_quote] = ACTIONS(2677), - }, - [1034] = { - [sym_line_comment] = STATE(1034), - [sym_block_comment] = STATE(1034), - [ts_builtin_sym_end] = ACTIONS(2657), - [sym_identifier] = ACTIONS(2659), - [anon_sym_LF] = ACTIONS(2659), - [anon_sym_CR] = ACTIONS(2659), - [anon_sym_CR_LF] = ACTIONS(2659), - [anon_sym_SLASH_SLASH] = ACTIONS(497), - [anon_sym_SLASH_STAR] = ACTIONS(499), - [anon_sym_DOT] = ACTIONS(2659), - [anon_sym_as] = ACTIONS(2659), - [anon_sym_LBRACE] = ACTIONS(2659), - [anon_sym_COMMA] = ACTIONS(2659), - [anon_sym_const] = ACTIONS(2659), - [anon_sym_LPAREN] = ACTIONS(2659), - [anon_sym___global] = ACTIONS(2659), - [anon_sym_type] = ACTIONS(2659), - [anon_sym_PIPE] = ACTIONS(2659), - [anon_sym_fn] = ACTIONS(2659), - [anon_sym_PLUS] = ACTIONS(2659), - [anon_sym_DASH] = ACTIONS(2659), - [anon_sym_STAR] = ACTIONS(2659), - [anon_sym_SLASH] = ACTIONS(2659), - [anon_sym_PERCENT] = ACTIONS(2659), - [anon_sym_LT] = ACTIONS(2659), - [anon_sym_GT] = ACTIONS(2659), - [anon_sym_EQ_EQ] = ACTIONS(2659), - [anon_sym_BANG_EQ] = ACTIONS(2659), - [anon_sym_LT_EQ] = ACTIONS(2659), - [anon_sym_GT_EQ] = ACTIONS(2659), - [anon_sym_LBRACK] = ACTIONS(2657), - [anon_sym_struct] = ACTIONS(2659), - [anon_sym_union] = ACTIONS(2659), - [anon_sym_pub] = ACTIONS(2659), - [anon_sym_mut] = ACTIONS(2659), - [anon_sym_enum] = ACTIONS(2659), - [anon_sym_interface] = ACTIONS(2659), - [anon_sym_PLUS_PLUS] = ACTIONS(2659), - [anon_sym_DASH_DASH] = ACTIONS(2659), - [anon_sym_QMARK] = ACTIONS(2659), - [anon_sym_BANG] = ACTIONS(2659), - [anon_sym_go] = ACTIONS(2659), - [anon_sym_spawn] = ACTIONS(2659), - [anon_sym_json_DOTdecode] = ACTIONS(2659), - [anon_sym_LBRACK2] = ACTIONS(2659), - [anon_sym_TILDE] = ACTIONS(2659), - [anon_sym_CARET] = ACTIONS(2659), - [anon_sym_AMP] = ACTIONS(2659), - [anon_sym_LT_DASH] = ACTIONS(2659), - [anon_sym_LT_LT] = ACTIONS(2659), - [anon_sym_GT_GT] = ACTIONS(2659), - [anon_sym_GT_GT_GT] = ACTIONS(2659), - [anon_sym_AMP_CARET] = ACTIONS(2659), - [anon_sym_AMP_AMP] = ACTIONS(2659), - [anon_sym_PIPE_PIPE] = ACTIONS(2659), - [anon_sym_or] = ACTIONS(2659), - [sym_none] = ACTIONS(2659), - [sym_true] = ACTIONS(2659), - [sym_false] = ACTIONS(2659), - [sym_nil] = ACTIONS(2659), - [anon_sym_QMARK_DOT] = ACTIONS(2659), - [anon_sym_POUND_LBRACK] = ACTIONS(2659), - [anon_sym_if] = ACTIONS(2659), - [anon_sym_DOLLARif] = ACTIONS(2659), - [anon_sym_is] = ACTIONS(2659), - [anon_sym_BANGis] = ACTIONS(2659), - [anon_sym_in] = ACTIONS(2659), - [anon_sym_BANGin] = ACTIONS(2659), - [anon_sym_match] = ACTIONS(2659), - [anon_sym_select] = ACTIONS(2659), - [anon_sym_lock] = ACTIONS(2659), - [anon_sym_rlock] = ACTIONS(2659), - [anon_sym_unsafe] = ACTIONS(2659), - [anon_sym_sql] = ACTIONS(2659), - [sym_int_literal] = ACTIONS(2659), - [sym_float_literal] = ACTIONS(2659), - [sym_rune_literal] = ACTIONS(2659), - [sym_pseudo_compile_time_identifier] = ACTIONS(2659), - [anon_sym_shared] = ACTIONS(2659), - [anon_sym_map_LBRACK] = ACTIONS(2659), - [anon_sym_chan] = ACTIONS(2659), - [anon_sym_thread] = ACTIONS(2659), - [anon_sym_atomic] = ACTIONS(2659), - [anon_sym_assert] = ACTIONS(2659), - [anon_sym_defer] = ACTIONS(2659), - [anon_sym_goto] = ACTIONS(2659), - [anon_sym_break] = ACTIONS(2659), - [anon_sym_continue] = ACTIONS(2659), - [anon_sym_return] = ACTIONS(2659), - [anon_sym_DOLLARfor] = ACTIONS(2659), - [anon_sym_for] = ACTIONS(2659), - [anon_sym_POUND] = ACTIONS(2659), - [anon_sym_asm] = ACTIONS(2659), - [anon_sym_AT_LBRACK] = ACTIONS(2659), - [sym___double_quote] = ACTIONS(2659), - [sym___single_quote] = ACTIONS(2659), - [sym___c_double_quote] = ACTIONS(2659), - [sym___c_single_quote] = ACTIONS(2659), - [sym___r_double_quote] = ACTIONS(2659), - [sym___r_single_quote] = ACTIONS(2659), - }, - [1035] = { - [sym_line_comment] = STATE(1035), - [sym_block_comment] = STATE(1035), - [ts_builtin_sym_end] = ACTIONS(2737), - [sym_identifier] = ACTIONS(2739), - [anon_sym_LF] = ACTIONS(2739), - [anon_sym_CR] = ACTIONS(2739), - [anon_sym_CR_LF] = ACTIONS(2739), - [anon_sym_SLASH_SLASH] = ACTIONS(497), - [anon_sym_SLASH_STAR] = ACTIONS(499), - [anon_sym_DOT] = ACTIONS(2739), - [anon_sym_as] = ACTIONS(2739), - [anon_sym_LBRACE] = ACTIONS(2739), - [anon_sym_COMMA] = ACTIONS(2739), - [anon_sym_const] = ACTIONS(2739), - [anon_sym_LPAREN] = ACTIONS(2739), - [anon_sym___global] = ACTIONS(2739), - [anon_sym_type] = ACTIONS(2739), - [anon_sym_PIPE] = ACTIONS(2739), - [anon_sym_fn] = ACTIONS(2739), - [anon_sym_PLUS] = ACTIONS(2739), - [anon_sym_DASH] = ACTIONS(2739), - [anon_sym_STAR] = ACTIONS(2739), - [anon_sym_SLASH] = ACTIONS(2739), - [anon_sym_PERCENT] = ACTIONS(2739), - [anon_sym_LT] = ACTIONS(2739), - [anon_sym_GT] = ACTIONS(2739), - [anon_sym_EQ_EQ] = ACTIONS(2739), - [anon_sym_BANG_EQ] = ACTIONS(2739), - [anon_sym_LT_EQ] = ACTIONS(2739), - [anon_sym_GT_EQ] = ACTIONS(2739), - [anon_sym_LBRACK] = ACTIONS(2737), - [anon_sym_struct] = ACTIONS(2739), - [anon_sym_union] = ACTIONS(2739), - [anon_sym_pub] = ACTIONS(2739), - [anon_sym_mut] = ACTIONS(2739), - [anon_sym_enum] = ACTIONS(2739), - [anon_sym_interface] = ACTIONS(2739), - [anon_sym_PLUS_PLUS] = ACTIONS(2739), - [anon_sym_DASH_DASH] = ACTIONS(2739), - [anon_sym_QMARK] = ACTIONS(2739), - [anon_sym_BANG] = ACTIONS(2739), - [anon_sym_go] = ACTIONS(2739), - [anon_sym_spawn] = ACTIONS(2739), - [anon_sym_json_DOTdecode] = ACTIONS(2739), - [anon_sym_LBRACK2] = ACTIONS(2739), - [anon_sym_TILDE] = ACTIONS(2739), - [anon_sym_CARET] = ACTIONS(2739), - [anon_sym_AMP] = ACTIONS(2739), - [anon_sym_LT_DASH] = ACTIONS(2739), - [anon_sym_LT_LT] = ACTIONS(2739), - [anon_sym_GT_GT] = ACTIONS(2739), - [anon_sym_GT_GT_GT] = ACTIONS(2739), - [anon_sym_AMP_CARET] = ACTIONS(2739), - [anon_sym_AMP_AMP] = ACTIONS(2739), - [anon_sym_PIPE_PIPE] = ACTIONS(2739), - [anon_sym_or] = ACTIONS(2739), - [sym_none] = ACTIONS(2739), - [sym_true] = ACTIONS(2739), - [sym_false] = ACTIONS(2739), - [sym_nil] = ACTIONS(2739), - [anon_sym_QMARK_DOT] = ACTIONS(2739), - [anon_sym_POUND_LBRACK] = ACTIONS(2739), - [anon_sym_if] = ACTIONS(2739), - [anon_sym_DOLLARif] = ACTIONS(2739), - [anon_sym_is] = ACTIONS(2739), - [anon_sym_BANGis] = ACTIONS(2739), - [anon_sym_in] = ACTIONS(2739), - [anon_sym_BANGin] = ACTIONS(2739), - [anon_sym_match] = ACTIONS(2739), - [anon_sym_select] = ACTIONS(2739), - [anon_sym_lock] = ACTIONS(2739), - [anon_sym_rlock] = ACTIONS(2739), - [anon_sym_unsafe] = ACTIONS(2739), - [anon_sym_sql] = ACTIONS(2739), - [sym_int_literal] = ACTIONS(2739), - [sym_float_literal] = ACTIONS(2739), - [sym_rune_literal] = ACTIONS(2739), - [sym_pseudo_compile_time_identifier] = ACTIONS(2739), - [anon_sym_shared] = ACTIONS(2739), - [anon_sym_map_LBRACK] = ACTIONS(2739), - [anon_sym_chan] = ACTIONS(2739), - [anon_sym_thread] = ACTIONS(2739), - [anon_sym_atomic] = ACTIONS(2739), - [anon_sym_assert] = ACTIONS(2739), - [anon_sym_defer] = ACTIONS(2739), - [anon_sym_goto] = ACTIONS(2739), - [anon_sym_break] = ACTIONS(2739), - [anon_sym_continue] = ACTIONS(2739), - [anon_sym_return] = ACTIONS(2739), - [anon_sym_DOLLARfor] = ACTIONS(2739), - [anon_sym_for] = ACTIONS(2739), - [anon_sym_POUND] = ACTIONS(2739), - [anon_sym_asm] = ACTIONS(2739), - [anon_sym_AT_LBRACK] = ACTIONS(2739), - [sym___double_quote] = ACTIONS(2739), - [sym___single_quote] = ACTIONS(2739), - [sym___c_double_quote] = ACTIONS(2739), - [sym___c_single_quote] = ACTIONS(2739), - [sym___r_double_quote] = ACTIONS(2739), - [sym___r_single_quote] = ACTIONS(2739), - }, - [1036] = { - [sym_line_comment] = STATE(1036), - [sym_block_comment] = STATE(1036), - [ts_builtin_sym_end] = ACTIONS(2649), - [sym_identifier] = ACTIONS(2651), - [anon_sym_LF] = ACTIONS(2651), - [anon_sym_CR] = ACTIONS(2651), - [anon_sym_CR_LF] = ACTIONS(2651), - [anon_sym_SLASH_SLASH] = ACTIONS(497), - [anon_sym_SLASH_STAR] = ACTIONS(499), - [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(2649), - [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), - }, - [1037] = { - [sym_line_comment] = STATE(1037), - [sym_block_comment] = STATE(1037), - [ts_builtin_sym_end] = ACTIONS(2265), - [sym_identifier] = ACTIONS(2267), - [anon_sym_LF] = ACTIONS(2267), - [anon_sym_CR] = ACTIONS(2267), - [anon_sym_CR_LF] = ACTIONS(2267), - [anon_sym_SLASH_SLASH] = ACTIONS(497), - [anon_sym_SLASH_STAR] = ACTIONS(499), - [anon_sym_DOT] = ACTIONS(2267), - [anon_sym_as] = ACTIONS(2267), - [anon_sym_LBRACE] = ACTIONS(2267), - [anon_sym_COMMA] = ACTIONS(2267), - [anon_sym_const] = ACTIONS(2267), - [anon_sym_LPAREN] = ACTIONS(2267), - [anon_sym___global] = ACTIONS(2267), - [anon_sym_type] = ACTIONS(2267), - [anon_sym_PIPE] = ACTIONS(2267), - [anon_sym_fn] = ACTIONS(2267), - [anon_sym_PLUS] = ACTIONS(2267), - [anon_sym_DASH] = ACTIONS(2267), - [anon_sym_STAR] = ACTIONS(2267), - [anon_sym_SLASH] = ACTIONS(2267), - [anon_sym_PERCENT] = ACTIONS(2267), - [anon_sym_LT] = ACTIONS(2267), - [anon_sym_GT] = ACTIONS(2267), - [anon_sym_EQ_EQ] = ACTIONS(2267), - [anon_sym_BANG_EQ] = ACTIONS(2267), - [anon_sym_LT_EQ] = ACTIONS(2267), - [anon_sym_GT_EQ] = ACTIONS(2267), - [anon_sym_LBRACK] = ACTIONS(2265), - [anon_sym_struct] = ACTIONS(2267), - [anon_sym_union] = ACTIONS(2267), - [anon_sym_pub] = ACTIONS(2267), - [anon_sym_mut] = ACTIONS(2267), - [anon_sym_enum] = ACTIONS(2267), - [anon_sym_interface] = ACTIONS(2267), - [anon_sym_PLUS_PLUS] = ACTIONS(2267), - [anon_sym_DASH_DASH] = ACTIONS(2267), - [anon_sym_QMARK] = ACTIONS(2267), - [anon_sym_BANG] = ACTIONS(2267), - [anon_sym_go] = ACTIONS(2267), - [anon_sym_spawn] = ACTIONS(2267), - [anon_sym_json_DOTdecode] = ACTIONS(2267), - [anon_sym_LBRACK2] = ACTIONS(2267), - [anon_sym_TILDE] = ACTIONS(2267), - [anon_sym_CARET] = ACTIONS(2267), - [anon_sym_AMP] = ACTIONS(2267), - [anon_sym_LT_DASH] = ACTIONS(2267), - [anon_sym_LT_LT] = ACTIONS(2267), - [anon_sym_GT_GT] = ACTIONS(2267), - [anon_sym_GT_GT_GT] = ACTIONS(2267), - [anon_sym_AMP_CARET] = ACTIONS(2267), - [anon_sym_AMP_AMP] = ACTIONS(2267), - [anon_sym_PIPE_PIPE] = ACTIONS(2267), - [anon_sym_or] = ACTIONS(2267), - [sym_none] = ACTIONS(2267), - [sym_true] = ACTIONS(2267), - [sym_false] = ACTIONS(2267), - [sym_nil] = ACTIONS(2267), - [anon_sym_QMARK_DOT] = ACTIONS(2267), - [anon_sym_POUND_LBRACK] = ACTIONS(2267), - [anon_sym_if] = ACTIONS(2267), - [anon_sym_DOLLARif] = ACTIONS(2267), - [anon_sym_is] = ACTIONS(2267), - [anon_sym_BANGis] = ACTIONS(2267), - [anon_sym_in] = ACTIONS(2267), - [anon_sym_BANGin] = ACTIONS(2267), - [anon_sym_match] = ACTIONS(2267), - [anon_sym_select] = ACTIONS(2267), - [anon_sym_lock] = ACTIONS(2267), - [anon_sym_rlock] = ACTIONS(2267), - [anon_sym_unsafe] = ACTIONS(2267), - [anon_sym_sql] = ACTIONS(2267), - [sym_int_literal] = ACTIONS(2267), - [sym_float_literal] = ACTIONS(2267), - [sym_rune_literal] = ACTIONS(2267), - [sym_pseudo_compile_time_identifier] = ACTIONS(2267), - [anon_sym_shared] = ACTIONS(2267), - [anon_sym_map_LBRACK] = ACTIONS(2267), - [anon_sym_chan] = ACTIONS(2267), - [anon_sym_thread] = ACTIONS(2267), - [anon_sym_atomic] = ACTIONS(2267), - [anon_sym_assert] = ACTIONS(2267), - [anon_sym_defer] = ACTIONS(2267), - [anon_sym_goto] = ACTIONS(2267), - [anon_sym_break] = ACTIONS(2267), - [anon_sym_continue] = ACTIONS(2267), - [anon_sym_return] = ACTIONS(2267), - [anon_sym_DOLLARfor] = ACTIONS(2267), - [anon_sym_for] = ACTIONS(2267), - [anon_sym_POUND] = ACTIONS(2267), - [anon_sym_asm] = ACTIONS(2267), - [anon_sym_AT_LBRACK] = ACTIONS(2267), - [sym___double_quote] = ACTIONS(2267), - [sym___single_quote] = ACTIONS(2267), - [sym___c_double_quote] = ACTIONS(2267), - [sym___c_single_quote] = ACTIONS(2267), - [sym___r_double_quote] = ACTIONS(2267), - [sym___r_single_quote] = ACTIONS(2267), - }, - [1038] = { - [sym_line_comment] = STATE(1038), - [sym_block_comment] = STATE(1038), - [ts_builtin_sym_end] = ACTIONS(2237), - [sym_identifier] = ACTIONS(2239), - [anon_sym_LF] = ACTIONS(2239), - [anon_sym_CR] = ACTIONS(2239), - [anon_sym_CR_LF] = ACTIONS(2239), - [anon_sym_SLASH_SLASH] = ACTIONS(497), - [anon_sym_SLASH_STAR] = ACTIONS(499), - [anon_sym_DOT] = ACTIONS(2239), - [anon_sym_as] = ACTIONS(2239), - [anon_sym_LBRACE] = ACTIONS(2239), - [anon_sym_COMMA] = ACTIONS(2239), - [anon_sym_const] = ACTIONS(2239), - [anon_sym_LPAREN] = ACTIONS(2239), - [anon_sym___global] = ACTIONS(2239), - [anon_sym_type] = ACTIONS(2239), - [anon_sym_PIPE] = ACTIONS(2239), - [anon_sym_fn] = ACTIONS(2239), - [anon_sym_PLUS] = ACTIONS(2239), - [anon_sym_DASH] = ACTIONS(2239), - [anon_sym_STAR] = ACTIONS(2239), - [anon_sym_SLASH] = ACTIONS(2239), - [anon_sym_PERCENT] = ACTIONS(2239), - [anon_sym_LT] = ACTIONS(2239), - [anon_sym_GT] = ACTIONS(2239), - [anon_sym_EQ_EQ] = ACTIONS(2239), - [anon_sym_BANG_EQ] = ACTIONS(2239), - [anon_sym_LT_EQ] = ACTIONS(2239), - [anon_sym_GT_EQ] = ACTIONS(2239), - [anon_sym_LBRACK] = ACTIONS(2237), - [anon_sym_struct] = ACTIONS(2239), - [anon_sym_union] = ACTIONS(2239), - [anon_sym_pub] = ACTIONS(2239), - [anon_sym_mut] = ACTIONS(2239), - [anon_sym_enum] = ACTIONS(2239), - [anon_sym_interface] = ACTIONS(2239), - [anon_sym_PLUS_PLUS] = ACTIONS(2239), - [anon_sym_DASH_DASH] = ACTIONS(2239), - [anon_sym_QMARK] = ACTIONS(2239), - [anon_sym_BANG] = ACTIONS(2239), - [anon_sym_go] = ACTIONS(2239), - [anon_sym_spawn] = ACTIONS(2239), - [anon_sym_json_DOTdecode] = ACTIONS(2239), - [anon_sym_LBRACK2] = ACTIONS(2239), - [anon_sym_TILDE] = ACTIONS(2239), - [anon_sym_CARET] = ACTIONS(2239), - [anon_sym_AMP] = ACTIONS(2239), - [anon_sym_LT_DASH] = ACTIONS(2239), - [anon_sym_LT_LT] = ACTIONS(2239), - [anon_sym_GT_GT] = ACTIONS(2239), - [anon_sym_GT_GT_GT] = ACTIONS(2239), - [anon_sym_AMP_CARET] = ACTIONS(2239), - [anon_sym_AMP_AMP] = ACTIONS(2239), - [anon_sym_PIPE_PIPE] = ACTIONS(2239), - [anon_sym_or] = ACTIONS(2239), - [sym_none] = ACTIONS(2239), - [sym_true] = ACTIONS(2239), - [sym_false] = ACTIONS(2239), - [sym_nil] = ACTIONS(2239), - [anon_sym_QMARK_DOT] = ACTIONS(2239), - [anon_sym_POUND_LBRACK] = ACTIONS(2239), - [anon_sym_if] = ACTIONS(2239), - [anon_sym_DOLLARif] = ACTIONS(2239), - [anon_sym_is] = ACTIONS(2239), - [anon_sym_BANGis] = ACTIONS(2239), - [anon_sym_in] = ACTIONS(2239), - [anon_sym_BANGin] = ACTIONS(2239), - [anon_sym_match] = ACTIONS(2239), - [anon_sym_select] = ACTIONS(2239), - [anon_sym_lock] = ACTIONS(2239), - [anon_sym_rlock] = ACTIONS(2239), - [anon_sym_unsafe] = ACTIONS(2239), - [anon_sym_sql] = ACTIONS(2239), - [sym_int_literal] = ACTIONS(2239), - [sym_float_literal] = ACTIONS(2239), - [sym_rune_literal] = ACTIONS(2239), - [sym_pseudo_compile_time_identifier] = ACTIONS(2239), - [anon_sym_shared] = ACTIONS(2239), - [anon_sym_map_LBRACK] = ACTIONS(2239), - [anon_sym_chan] = ACTIONS(2239), - [anon_sym_thread] = ACTIONS(2239), - [anon_sym_atomic] = ACTIONS(2239), - [anon_sym_assert] = ACTIONS(2239), - [anon_sym_defer] = ACTIONS(2239), - [anon_sym_goto] = ACTIONS(2239), - [anon_sym_break] = ACTIONS(2239), - [anon_sym_continue] = ACTIONS(2239), - [anon_sym_return] = ACTIONS(2239), - [anon_sym_DOLLARfor] = ACTIONS(2239), - [anon_sym_for] = ACTIONS(2239), - [anon_sym_POUND] = ACTIONS(2239), - [anon_sym_asm] = ACTIONS(2239), - [anon_sym_AT_LBRACK] = ACTIONS(2239), - [sym___double_quote] = ACTIONS(2239), - [sym___single_quote] = ACTIONS(2239), - [sym___c_double_quote] = ACTIONS(2239), - [sym___c_single_quote] = ACTIONS(2239), - [sym___r_double_quote] = ACTIONS(2239), - [sym___r_single_quote] = ACTIONS(2239), - }, - [1039] = { - [sym_line_comment] = STATE(1039), - [sym_block_comment] = STATE(1039), - [ts_builtin_sym_end] = ACTIONS(2245), - [sym_identifier] = ACTIONS(2247), - [anon_sym_LF] = ACTIONS(2247), - [anon_sym_CR] = ACTIONS(2247), - [anon_sym_CR_LF] = ACTIONS(2247), - [anon_sym_SLASH_SLASH] = ACTIONS(497), - [anon_sym_SLASH_STAR] = ACTIONS(499), - [anon_sym_DOT] = ACTIONS(2247), - [anon_sym_as] = ACTIONS(2247), - [anon_sym_LBRACE] = ACTIONS(2247), - [anon_sym_COMMA] = ACTIONS(2247), - [anon_sym_const] = ACTIONS(2247), - [anon_sym_LPAREN] = ACTIONS(2247), - [anon_sym___global] = ACTIONS(2247), - [anon_sym_type] = ACTIONS(2247), - [anon_sym_PIPE] = ACTIONS(2247), - [anon_sym_fn] = ACTIONS(2247), - [anon_sym_PLUS] = ACTIONS(2247), - [anon_sym_DASH] = ACTIONS(2247), - [anon_sym_STAR] = ACTIONS(2247), - [anon_sym_SLASH] = ACTIONS(2247), - [anon_sym_PERCENT] = ACTIONS(2247), - [anon_sym_LT] = ACTIONS(2247), - [anon_sym_GT] = ACTIONS(2247), - [anon_sym_EQ_EQ] = ACTIONS(2247), - [anon_sym_BANG_EQ] = ACTIONS(2247), - [anon_sym_LT_EQ] = ACTIONS(2247), - [anon_sym_GT_EQ] = ACTIONS(2247), - [anon_sym_LBRACK] = ACTIONS(2245), - [anon_sym_struct] = ACTIONS(2247), - [anon_sym_union] = ACTIONS(2247), - [anon_sym_pub] = ACTIONS(2247), - [anon_sym_mut] = ACTIONS(2247), - [anon_sym_enum] = ACTIONS(2247), - [anon_sym_interface] = ACTIONS(2247), - [anon_sym_PLUS_PLUS] = ACTIONS(2247), - [anon_sym_DASH_DASH] = ACTIONS(2247), - [anon_sym_QMARK] = ACTIONS(2247), - [anon_sym_BANG] = ACTIONS(2247), - [anon_sym_go] = ACTIONS(2247), - [anon_sym_spawn] = ACTIONS(2247), - [anon_sym_json_DOTdecode] = ACTIONS(2247), - [anon_sym_LBRACK2] = ACTIONS(2247), - [anon_sym_TILDE] = ACTIONS(2247), - [anon_sym_CARET] = ACTIONS(2247), - [anon_sym_AMP] = ACTIONS(2247), - [anon_sym_LT_DASH] = ACTIONS(2247), - [anon_sym_LT_LT] = ACTIONS(2247), - [anon_sym_GT_GT] = ACTIONS(2247), - [anon_sym_GT_GT_GT] = ACTIONS(2247), - [anon_sym_AMP_CARET] = ACTIONS(2247), - [anon_sym_AMP_AMP] = ACTIONS(2247), - [anon_sym_PIPE_PIPE] = ACTIONS(2247), - [anon_sym_or] = ACTIONS(2247), - [sym_none] = ACTIONS(2247), - [sym_true] = ACTIONS(2247), - [sym_false] = ACTIONS(2247), - [sym_nil] = ACTIONS(2247), - [anon_sym_QMARK_DOT] = ACTIONS(2247), - [anon_sym_POUND_LBRACK] = ACTIONS(2247), - [anon_sym_if] = ACTIONS(2247), - [anon_sym_DOLLARif] = ACTIONS(2247), - [anon_sym_is] = ACTIONS(2247), - [anon_sym_BANGis] = ACTIONS(2247), - [anon_sym_in] = ACTIONS(2247), - [anon_sym_BANGin] = ACTIONS(2247), - [anon_sym_match] = ACTIONS(2247), - [anon_sym_select] = ACTIONS(2247), - [anon_sym_lock] = ACTIONS(2247), - [anon_sym_rlock] = ACTIONS(2247), - [anon_sym_unsafe] = ACTIONS(2247), - [anon_sym_sql] = ACTIONS(2247), - [sym_int_literal] = ACTIONS(2247), - [sym_float_literal] = ACTIONS(2247), - [sym_rune_literal] = ACTIONS(2247), - [sym_pseudo_compile_time_identifier] = ACTIONS(2247), - [anon_sym_shared] = ACTIONS(2247), - [anon_sym_map_LBRACK] = ACTIONS(2247), - [anon_sym_chan] = ACTIONS(2247), - [anon_sym_thread] = ACTIONS(2247), - [anon_sym_atomic] = ACTIONS(2247), - [anon_sym_assert] = ACTIONS(2247), - [anon_sym_defer] = ACTIONS(2247), - [anon_sym_goto] = ACTIONS(2247), - [anon_sym_break] = ACTIONS(2247), - [anon_sym_continue] = ACTIONS(2247), - [anon_sym_return] = ACTIONS(2247), - [anon_sym_DOLLARfor] = ACTIONS(2247), - [anon_sym_for] = ACTIONS(2247), - [anon_sym_POUND] = ACTIONS(2247), - [anon_sym_asm] = ACTIONS(2247), - [anon_sym_AT_LBRACK] = ACTIONS(2247), - [sym___double_quote] = ACTIONS(2247), - [sym___single_quote] = ACTIONS(2247), - [sym___c_double_quote] = ACTIONS(2247), - [sym___c_single_quote] = ACTIONS(2247), - [sym___r_double_quote] = ACTIONS(2247), - [sym___r_single_quote] = ACTIONS(2247), - }, - [1040] = { - [sym_line_comment] = STATE(1040), - [sym_block_comment] = STATE(1040), - [ts_builtin_sym_end] = ACTIONS(2283), - [sym_identifier] = ACTIONS(2285), - [anon_sym_LF] = ACTIONS(2285), - [anon_sym_CR] = ACTIONS(2285), - [anon_sym_CR_LF] = ACTIONS(2285), - [anon_sym_SLASH_SLASH] = ACTIONS(497), - [anon_sym_SLASH_STAR] = ACTIONS(499), - [anon_sym_DOT] = ACTIONS(2285), - [anon_sym_as] = ACTIONS(2285), - [anon_sym_LBRACE] = ACTIONS(2285), - [anon_sym_COMMA] = ACTIONS(2285), - [anon_sym_const] = ACTIONS(2285), - [anon_sym_LPAREN] = ACTIONS(2285), - [anon_sym___global] = ACTIONS(2285), - [anon_sym_type] = ACTIONS(2285), - [anon_sym_PIPE] = ACTIONS(2285), - [anon_sym_fn] = ACTIONS(2285), - [anon_sym_PLUS] = ACTIONS(2285), - [anon_sym_DASH] = ACTIONS(2285), - [anon_sym_STAR] = ACTIONS(2285), - [anon_sym_SLASH] = ACTIONS(2285), - [anon_sym_PERCENT] = ACTIONS(2285), - [anon_sym_LT] = ACTIONS(2285), - [anon_sym_GT] = ACTIONS(2285), - [anon_sym_EQ_EQ] = ACTIONS(2285), - [anon_sym_BANG_EQ] = ACTIONS(2285), - [anon_sym_LT_EQ] = ACTIONS(2285), - [anon_sym_GT_EQ] = ACTIONS(2285), - [anon_sym_LBRACK] = ACTIONS(2283), - [anon_sym_struct] = ACTIONS(2285), - [anon_sym_union] = ACTIONS(2285), - [anon_sym_pub] = ACTIONS(2285), - [anon_sym_mut] = ACTIONS(2285), - [anon_sym_enum] = ACTIONS(2285), - [anon_sym_interface] = ACTIONS(2285), - [anon_sym_PLUS_PLUS] = ACTIONS(2285), - [anon_sym_DASH_DASH] = ACTIONS(2285), - [anon_sym_QMARK] = ACTIONS(2285), - [anon_sym_BANG] = ACTIONS(2285), - [anon_sym_go] = ACTIONS(2285), - [anon_sym_spawn] = ACTIONS(2285), - [anon_sym_json_DOTdecode] = ACTIONS(2285), - [anon_sym_LBRACK2] = ACTIONS(2285), - [anon_sym_TILDE] = ACTIONS(2285), - [anon_sym_CARET] = ACTIONS(2285), - [anon_sym_AMP] = ACTIONS(2285), - [anon_sym_LT_DASH] = ACTIONS(2285), - [anon_sym_LT_LT] = ACTIONS(2285), - [anon_sym_GT_GT] = ACTIONS(2285), - [anon_sym_GT_GT_GT] = ACTIONS(2285), - [anon_sym_AMP_CARET] = ACTIONS(2285), - [anon_sym_AMP_AMP] = ACTIONS(2285), - [anon_sym_PIPE_PIPE] = ACTIONS(2285), - [anon_sym_or] = ACTIONS(2285), - [sym_none] = ACTIONS(2285), - [sym_true] = ACTIONS(2285), - [sym_false] = ACTIONS(2285), - [sym_nil] = ACTIONS(2285), - [anon_sym_QMARK_DOT] = ACTIONS(2285), - [anon_sym_POUND_LBRACK] = ACTIONS(2285), - [anon_sym_if] = ACTIONS(2285), - [anon_sym_DOLLARif] = ACTIONS(2285), - [anon_sym_is] = ACTIONS(2285), - [anon_sym_BANGis] = ACTIONS(2285), - [anon_sym_in] = ACTIONS(2285), - [anon_sym_BANGin] = ACTIONS(2285), - [anon_sym_match] = ACTIONS(2285), - [anon_sym_select] = ACTIONS(2285), - [anon_sym_lock] = ACTIONS(2285), - [anon_sym_rlock] = ACTIONS(2285), - [anon_sym_unsafe] = ACTIONS(2285), - [anon_sym_sql] = ACTIONS(2285), - [sym_int_literal] = ACTIONS(2285), - [sym_float_literal] = ACTIONS(2285), - [sym_rune_literal] = ACTIONS(2285), - [sym_pseudo_compile_time_identifier] = ACTIONS(2285), - [anon_sym_shared] = ACTIONS(2285), - [anon_sym_map_LBRACK] = ACTIONS(2285), - [anon_sym_chan] = ACTIONS(2285), - [anon_sym_thread] = ACTIONS(2285), - [anon_sym_atomic] = ACTIONS(2285), - [anon_sym_assert] = ACTIONS(2285), - [anon_sym_defer] = ACTIONS(2285), - [anon_sym_goto] = ACTIONS(2285), - [anon_sym_break] = ACTIONS(2285), - [anon_sym_continue] = ACTIONS(2285), - [anon_sym_return] = ACTIONS(2285), - [anon_sym_DOLLARfor] = ACTIONS(2285), - [anon_sym_for] = ACTIONS(2285), - [anon_sym_POUND] = ACTIONS(2285), - [anon_sym_asm] = ACTIONS(2285), - [anon_sym_AT_LBRACK] = ACTIONS(2285), - [sym___double_quote] = ACTIONS(2285), - [sym___single_quote] = ACTIONS(2285), - [sym___c_double_quote] = ACTIONS(2285), - [sym___c_single_quote] = ACTIONS(2285), - [sym___r_double_quote] = ACTIONS(2285), - [sym___r_single_quote] = ACTIONS(2285), - }, - [1041] = { - [sym_line_comment] = STATE(1041), - [sym_block_comment] = STATE(1041), - [ts_builtin_sym_end] = ACTIONS(2303), - [sym_identifier] = ACTIONS(2305), - [anon_sym_LF] = ACTIONS(2305), - [anon_sym_CR] = ACTIONS(2305), - [anon_sym_CR_LF] = ACTIONS(2305), - [anon_sym_SLASH_SLASH] = ACTIONS(497), - [anon_sym_SLASH_STAR] = ACTIONS(499), - [anon_sym_DOT] = ACTIONS(2305), - [anon_sym_as] = ACTIONS(2305), - [anon_sym_LBRACE] = ACTIONS(2305), - [anon_sym_COMMA] = ACTIONS(2305), - [anon_sym_const] = ACTIONS(2305), - [anon_sym_LPAREN] = ACTIONS(2305), - [anon_sym___global] = ACTIONS(2305), - [anon_sym_type] = ACTIONS(2305), - [anon_sym_PIPE] = ACTIONS(2305), - [anon_sym_fn] = ACTIONS(2305), - [anon_sym_PLUS] = ACTIONS(2305), - [anon_sym_DASH] = ACTIONS(2305), - [anon_sym_STAR] = ACTIONS(2305), - [anon_sym_SLASH] = ACTIONS(2305), - [anon_sym_PERCENT] = ACTIONS(2305), - [anon_sym_LT] = ACTIONS(2305), - [anon_sym_GT] = ACTIONS(2305), - [anon_sym_EQ_EQ] = ACTIONS(2305), - [anon_sym_BANG_EQ] = ACTIONS(2305), - [anon_sym_LT_EQ] = ACTIONS(2305), - [anon_sym_GT_EQ] = ACTIONS(2305), - [anon_sym_LBRACK] = ACTIONS(2303), - [anon_sym_struct] = ACTIONS(2305), - [anon_sym_union] = ACTIONS(2305), - [anon_sym_pub] = ACTIONS(2305), - [anon_sym_mut] = ACTIONS(2305), - [anon_sym_enum] = ACTIONS(2305), - [anon_sym_interface] = ACTIONS(2305), - [anon_sym_PLUS_PLUS] = ACTIONS(2305), - [anon_sym_DASH_DASH] = ACTIONS(2305), - [anon_sym_QMARK] = ACTIONS(2305), - [anon_sym_BANG] = ACTIONS(2305), - [anon_sym_go] = ACTIONS(2305), - [anon_sym_spawn] = ACTIONS(2305), - [anon_sym_json_DOTdecode] = ACTIONS(2305), - [anon_sym_LBRACK2] = ACTIONS(2305), - [anon_sym_TILDE] = ACTIONS(2305), - [anon_sym_CARET] = ACTIONS(2305), - [anon_sym_AMP] = ACTIONS(2305), - [anon_sym_LT_DASH] = ACTIONS(2305), - [anon_sym_LT_LT] = ACTIONS(2305), - [anon_sym_GT_GT] = ACTIONS(2305), - [anon_sym_GT_GT_GT] = ACTIONS(2305), - [anon_sym_AMP_CARET] = ACTIONS(2305), - [anon_sym_AMP_AMP] = ACTIONS(2305), - [anon_sym_PIPE_PIPE] = ACTIONS(2305), - [anon_sym_or] = ACTIONS(2305), - [sym_none] = ACTIONS(2305), - [sym_true] = ACTIONS(2305), - [sym_false] = ACTIONS(2305), - [sym_nil] = ACTIONS(2305), - [anon_sym_QMARK_DOT] = ACTIONS(2305), - [anon_sym_POUND_LBRACK] = ACTIONS(2305), - [anon_sym_if] = ACTIONS(2305), - [anon_sym_DOLLARif] = ACTIONS(2305), - [anon_sym_is] = ACTIONS(2305), - [anon_sym_BANGis] = ACTIONS(2305), - [anon_sym_in] = ACTIONS(2305), - [anon_sym_BANGin] = ACTIONS(2305), - [anon_sym_match] = ACTIONS(2305), - [anon_sym_select] = ACTIONS(2305), - [anon_sym_lock] = ACTIONS(2305), - [anon_sym_rlock] = ACTIONS(2305), - [anon_sym_unsafe] = ACTIONS(2305), - [anon_sym_sql] = ACTIONS(2305), - [sym_int_literal] = ACTIONS(2305), - [sym_float_literal] = ACTIONS(2305), - [sym_rune_literal] = ACTIONS(2305), - [sym_pseudo_compile_time_identifier] = ACTIONS(2305), - [anon_sym_shared] = ACTIONS(2305), - [anon_sym_map_LBRACK] = ACTIONS(2305), - [anon_sym_chan] = ACTIONS(2305), - [anon_sym_thread] = ACTIONS(2305), - [anon_sym_atomic] = ACTIONS(2305), - [anon_sym_assert] = ACTIONS(2305), - [anon_sym_defer] = ACTIONS(2305), - [anon_sym_goto] = ACTIONS(2305), - [anon_sym_break] = ACTIONS(2305), - [anon_sym_continue] = ACTIONS(2305), - [anon_sym_return] = ACTIONS(2305), - [anon_sym_DOLLARfor] = ACTIONS(2305), - [anon_sym_for] = ACTIONS(2305), - [anon_sym_POUND] = ACTIONS(2305), - [anon_sym_asm] = ACTIONS(2305), - [anon_sym_AT_LBRACK] = ACTIONS(2305), - [sym___double_quote] = ACTIONS(2305), - [sym___single_quote] = ACTIONS(2305), - [sym___c_double_quote] = ACTIONS(2305), - [sym___c_single_quote] = ACTIONS(2305), - [sym___r_double_quote] = ACTIONS(2305), - [sym___r_single_quote] = ACTIONS(2305), - }, - [1042] = { - [sym_line_comment] = STATE(1042), - [sym_block_comment] = STATE(1042), [ts_builtin_sym_end] = ACTIONS(2313), [sym_identifier] = ACTIONS(2315), [anon_sym_LF] = ACTIONS(2315), @@ -141704,3987 +140614,4701 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym___r_double_quote] = ACTIONS(2315), [sym___r_single_quote] = ACTIONS(2315), }, + [1032] = { + [sym_line_comment] = STATE(1032), + [sym_block_comment] = STATE(1032), + [ts_builtin_sym_end] = ACTIONS(2461), + [sym_identifier] = ACTIONS(2463), + [anon_sym_LF] = ACTIONS(2463), + [anon_sym_CR] = ACTIONS(2463), + [anon_sym_CR_LF] = ACTIONS(2463), + [anon_sym_SLASH_SLASH] = ACTIONS(497), + [anon_sym_SLASH_STAR] = ACTIONS(499), + [anon_sym_DOT] = ACTIONS(2463), + [anon_sym_as] = ACTIONS(2463), + [anon_sym_LBRACE] = ACTIONS(2463), + [anon_sym_COMMA] = ACTIONS(2463), + [anon_sym_const] = ACTIONS(2463), + [anon_sym_LPAREN] = ACTIONS(2463), + [anon_sym___global] = ACTIONS(2463), + [anon_sym_type] = ACTIONS(2463), + [anon_sym_PIPE] = ACTIONS(2463), + [anon_sym_fn] = ACTIONS(2463), + [anon_sym_PLUS] = ACTIONS(2463), + [anon_sym_DASH] = ACTIONS(2463), + [anon_sym_STAR] = ACTIONS(2463), + [anon_sym_SLASH] = ACTIONS(2463), + [anon_sym_PERCENT] = ACTIONS(2463), + [anon_sym_LT] = ACTIONS(2463), + [anon_sym_GT] = ACTIONS(2463), + [anon_sym_EQ_EQ] = ACTIONS(2463), + [anon_sym_BANG_EQ] = ACTIONS(2463), + [anon_sym_LT_EQ] = ACTIONS(2463), + [anon_sym_GT_EQ] = ACTIONS(2463), + [anon_sym_LBRACK] = ACTIONS(2461), + [anon_sym_struct] = ACTIONS(2463), + [anon_sym_union] = ACTIONS(2463), + [anon_sym_pub] = ACTIONS(2463), + [anon_sym_mut] = ACTIONS(2463), + [anon_sym_enum] = ACTIONS(2463), + [anon_sym_interface] = ACTIONS(2463), + [anon_sym_PLUS_PLUS] = ACTIONS(2463), + [anon_sym_DASH_DASH] = ACTIONS(2463), + [anon_sym_QMARK] = ACTIONS(2463), + [anon_sym_BANG] = ACTIONS(2463), + [anon_sym_go] = ACTIONS(2463), + [anon_sym_spawn] = ACTIONS(2463), + [anon_sym_json_DOTdecode] = ACTIONS(2463), + [anon_sym_LBRACK2] = ACTIONS(2463), + [anon_sym_TILDE] = ACTIONS(2463), + [anon_sym_CARET] = ACTIONS(2463), + [anon_sym_AMP] = ACTIONS(2463), + [anon_sym_LT_DASH] = ACTIONS(2463), + [anon_sym_LT_LT] = ACTIONS(2463), + [anon_sym_GT_GT] = ACTIONS(2463), + [anon_sym_GT_GT_GT] = ACTIONS(2463), + [anon_sym_AMP_CARET] = ACTIONS(2463), + [anon_sym_AMP_AMP] = ACTIONS(2463), + [anon_sym_PIPE_PIPE] = ACTIONS(2463), + [anon_sym_or] = ACTIONS(2463), + [sym_none] = ACTIONS(2463), + [sym_true] = ACTIONS(2463), + [sym_false] = ACTIONS(2463), + [sym_nil] = ACTIONS(2463), + [anon_sym_QMARK_DOT] = ACTIONS(2463), + [anon_sym_POUND_LBRACK] = ACTIONS(2463), + [anon_sym_if] = ACTIONS(2463), + [anon_sym_DOLLARif] = ACTIONS(2463), + [anon_sym_is] = ACTIONS(2463), + [anon_sym_BANGis] = ACTIONS(2463), + [anon_sym_in] = ACTIONS(2463), + [anon_sym_BANGin] = ACTIONS(2463), + [anon_sym_match] = ACTIONS(2463), + [anon_sym_select] = ACTIONS(2463), + [anon_sym_lock] = ACTIONS(2463), + [anon_sym_rlock] = ACTIONS(2463), + [anon_sym_unsafe] = ACTIONS(2463), + [anon_sym_sql] = ACTIONS(2463), + [sym_int_literal] = ACTIONS(2463), + [sym_float_literal] = ACTIONS(2463), + [sym_rune_literal] = ACTIONS(2463), + [sym_pseudo_compile_time_identifier] = ACTIONS(2463), + [anon_sym_shared] = ACTIONS(2463), + [anon_sym_map_LBRACK] = ACTIONS(2463), + [anon_sym_chan] = ACTIONS(2463), + [anon_sym_thread] = ACTIONS(2463), + [anon_sym_atomic] = ACTIONS(2463), + [anon_sym_assert] = ACTIONS(2463), + [anon_sym_defer] = ACTIONS(2463), + [anon_sym_goto] = ACTIONS(2463), + [anon_sym_break] = ACTIONS(2463), + [anon_sym_continue] = ACTIONS(2463), + [anon_sym_return] = ACTIONS(2463), + [anon_sym_DOLLARfor] = ACTIONS(2463), + [anon_sym_for] = ACTIONS(2463), + [anon_sym_POUND] = ACTIONS(2463), + [anon_sym_asm] = ACTIONS(2463), + [anon_sym_AT_LBRACK] = ACTIONS(2463), + [sym___double_quote] = ACTIONS(2463), + [sym___single_quote] = ACTIONS(2463), + [sym___c_double_quote] = ACTIONS(2463), + [sym___c_single_quote] = ACTIONS(2463), + [sym___r_double_quote] = ACTIONS(2463), + [sym___r_single_quote] = ACTIONS(2463), + }, + [1033] = { + [sym_line_comment] = STATE(1033), + [sym_block_comment] = STATE(1033), + [ts_builtin_sym_end] = ACTIONS(2770), + [sym_identifier] = ACTIONS(2772), + [anon_sym_LF] = ACTIONS(2772), + [anon_sym_CR] = ACTIONS(2772), + [anon_sym_CR_LF] = ACTIONS(2772), + [anon_sym_SLASH_SLASH] = ACTIONS(497), + [anon_sym_SLASH_STAR] = ACTIONS(499), + [anon_sym_DOT] = ACTIONS(2772), + [anon_sym_as] = ACTIONS(2772), + [anon_sym_LBRACE] = ACTIONS(2772), + [anon_sym_COMMA] = ACTIONS(2772), + [anon_sym_const] = ACTIONS(2772), + [anon_sym_LPAREN] = ACTIONS(2772), + [anon_sym___global] = ACTIONS(2772), + [anon_sym_type] = ACTIONS(2772), + [anon_sym_PIPE] = ACTIONS(2772), + [anon_sym_fn] = ACTIONS(2772), + [anon_sym_PLUS] = ACTIONS(2772), + [anon_sym_DASH] = ACTIONS(2772), + [anon_sym_STAR] = ACTIONS(2772), + [anon_sym_SLASH] = ACTIONS(2772), + [anon_sym_PERCENT] = ACTIONS(2772), + [anon_sym_LT] = ACTIONS(2772), + [anon_sym_GT] = ACTIONS(2772), + [anon_sym_EQ_EQ] = ACTIONS(2772), + [anon_sym_BANG_EQ] = ACTIONS(2772), + [anon_sym_LT_EQ] = ACTIONS(2772), + [anon_sym_GT_EQ] = ACTIONS(2772), + [anon_sym_LBRACK] = ACTIONS(2770), + [anon_sym_struct] = ACTIONS(2772), + [anon_sym_union] = ACTIONS(2772), + [anon_sym_pub] = ACTIONS(2772), + [anon_sym_mut] = ACTIONS(2772), + [anon_sym_enum] = ACTIONS(2772), + [anon_sym_interface] = ACTIONS(2772), + [anon_sym_PLUS_PLUS] = ACTIONS(2772), + [anon_sym_DASH_DASH] = ACTIONS(2772), + [anon_sym_QMARK] = ACTIONS(2772), + [anon_sym_BANG] = ACTIONS(2772), + [anon_sym_go] = ACTIONS(2772), + [anon_sym_spawn] = ACTIONS(2772), + [anon_sym_json_DOTdecode] = ACTIONS(2772), + [anon_sym_LBRACK2] = ACTIONS(2772), + [anon_sym_TILDE] = ACTIONS(2772), + [anon_sym_CARET] = ACTIONS(2772), + [anon_sym_AMP] = ACTIONS(2772), + [anon_sym_LT_DASH] = ACTIONS(2772), + [anon_sym_LT_LT] = ACTIONS(2772), + [anon_sym_GT_GT] = ACTIONS(2772), + [anon_sym_GT_GT_GT] = ACTIONS(2772), + [anon_sym_AMP_CARET] = ACTIONS(2772), + [anon_sym_AMP_AMP] = ACTIONS(2772), + [anon_sym_PIPE_PIPE] = ACTIONS(2772), + [anon_sym_or] = ACTIONS(2772), + [sym_none] = ACTIONS(2772), + [sym_true] = ACTIONS(2772), + [sym_false] = ACTIONS(2772), + [sym_nil] = ACTIONS(2772), + [anon_sym_QMARK_DOT] = ACTIONS(2772), + [anon_sym_POUND_LBRACK] = ACTIONS(2772), + [anon_sym_if] = ACTIONS(2772), + [anon_sym_DOLLARif] = ACTIONS(2772), + [anon_sym_is] = ACTIONS(2772), + [anon_sym_BANGis] = ACTIONS(2772), + [anon_sym_in] = ACTIONS(2772), + [anon_sym_BANGin] = ACTIONS(2772), + [anon_sym_match] = ACTIONS(2772), + [anon_sym_select] = ACTIONS(2772), + [anon_sym_lock] = ACTIONS(2772), + [anon_sym_rlock] = ACTIONS(2772), + [anon_sym_unsafe] = ACTIONS(2772), + [anon_sym_sql] = ACTIONS(2772), + [sym_int_literal] = ACTIONS(2772), + [sym_float_literal] = ACTIONS(2772), + [sym_rune_literal] = ACTIONS(2772), + [sym_pseudo_compile_time_identifier] = ACTIONS(2772), + [anon_sym_shared] = ACTIONS(2772), + [anon_sym_map_LBRACK] = ACTIONS(2772), + [anon_sym_chan] = ACTIONS(2772), + [anon_sym_thread] = ACTIONS(2772), + [anon_sym_atomic] = ACTIONS(2772), + [anon_sym_assert] = ACTIONS(2772), + [anon_sym_defer] = ACTIONS(2772), + [anon_sym_goto] = ACTIONS(2772), + [anon_sym_break] = ACTIONS(2772), + [anon_sym_continue] = ACTIONS(2772), + [anon_sym_return] = ACTIONS(2772), + [anon_sym_DOLLARfor] = ACTIONS(2772), + [anon_sym_for] = ACTIONS(2772), + [anon_sym_POUND] = ACTIONS(2772), + [anon_sym_asm] = ACTIONS(2772), + [anon_sym_AT_LBRACK] = ACTIONS(2772), + [sym___double_quote] = ACTIONS(2772), + [sym___single_quote] = ACTIONS(2772), + [sym___c_double_quote] = ACTIONS(2772), + [sym___c_single_quote] = ACTIONS(2772), + [sym___r_double_quote] = ACTIONS(2772), + [sym___r_single_quote] = ACTIONS(2772), + }, + [1034] = { + [sym_line_comment] = STATE(1034), + [sym_block_comment] = STATE(1034), + [ts_builtin_sym_end] = ACTIONS(2916), + [sym_identifier] = ACTIONS(2918), + [anon_sym_LF] = ACTIONS(2918), + [anon_sym_CR] = ACTIONS(2918), + [anon_sym_CR_LF] = ACTIONS(2918), + [anon_sym_SLASH_SLASH] = ACTIONS(497), + [anon_sym_SLASH_STAR] = ACTIONS(499), + [anon_sym_DOT] = ACTIONS(2918), + [anon_sym_as] = ACTIONS(2918), + [anon_sym_LBRACE] = ACTIONS(2918), + [anon_sym_COMMA] = ACTIONS(2918), + [anon_sym_const] = ACTIONS(2918), + [anon_sym_LPAREN] = ACTIONS(2918), + [anon_sym___global] = ACTIONS(2918), + [anon_sym_type] = ACTIONS(2918), + [anon_sym_PIPE] = ACTIONS(2918), + [anon_sym_fn] = ACTIONS(2918), + [anon_sym_PLUS] = ACTIONS(2918), + [anon_sym_DASH] = ACTIONS(2918), + [anon_sym_STAR] = ACTIONS(2918), + [anon_sym_SLASH] = ACTIONS(2918), + [anon_sym_PERCENT] = ACTIONS(2918), + [anon_sym_LT] = ACTIONS(2918), + [anon_sym_GT] = ACTIONS(2918), + [anon_sym_EQ_EQ] = ACTIONS(2918), + [anon_sym_BANG_EQ] = ACTIONS(2918), + [anon_sym_LT_EQ] = ACTIONS(2918), + [anon_sym_GT_EQ] = ACTIONS(2918), + [anon_sym_LBRACK] = ACTIONS(2916), + [anon_sym_struct] = ACTIONS(2918), + [anon_sym_union] = ACTIONS(2918), + [anon_sym_pub] = ACTIONS(2918), + [anon_sym_mut] = ACTIONS(2918), + [anon_sym_enum] = ACTIONS(2918), + [anon_sym_interface] = ACTIONS(2918), + [anon_sym_PLUS_PLUS] = ACTIONS(2918), + [anon_sym_DASH_DASH] = ACTIONS(2918), + [anon_sym_QMARK] = ACTIONS(2918), + [anon_sym_BANG] = ACTIONS(2918), + [anon_sym_go] = ACTIONS(2918), + [anon_sym_spawn] = ACTIONS(2918), + [anon_sym_json_DOTdecode] = ACTIONS(2918), + [anon_sym_LBRACK2] = ACTIONS(2918), + [anon_sym_TILDE] = ACTIONS(2918), + [anon_sym_CARET] = ACTIONS(2918), + [anon_sym_AMP] = ACTIONS(2918), + [anon_sym_LT_DASH] = ACTIONS(2918), + [anon_sym_LT_LT] = ACTIONS(2918), + [anon_sym_GT_GT] = ACTIONS(2918), + [anon_sym_GT_GT_GT] = ACTIONS(2918), + [anon_sym_AMP_CARET] = ACTIONS(2918), + [anon_sym_AMP_AMP] = ACTIONS(2918), + [anon_sym_PIPE_PIPE] = ACTIONS(2918), + [anon_sym_or] = ACTIONS(2918), + [sym_none] = ACTIONS(2918), + [sym_true] = ACTIONS(2918), + [sym_false] = ACTIONS(2918), + [sym_nil] = ACTIONS(2918), + [anon_sym_QMARK_DOT] = ACTIONS(2918), + [anon_sym_POUND_LBRACK] = ACTIONS(2918), + [anon_sym_if] = ACTIONS(2918), + [anon_sym_DOLLARif] = ACTIONS(2918), + [anon_sym_is] = ACTIONS(2918), + [anon_sym_BANGis] = ACTIONS(2918), + [anon_sym_in] = ACTIONS(2918), + [anon_sym_BANGin] = ACTIONS(2918), + [anon_sym_match] = ACTIONS(2918), + [anon_sym_select] = ACTIONS(2918), + [anon_sym_lock] = ACTIONS(2918), + [anon_sym_rlock] = ACTIONS(2918), + [anon_sym_unsafe] = ACTIONS(2918), + [anon_sym_sql] = ACTIONS(2918), + [sym_int_literal] = ACTIONS(2918), + [sym_float_literal] = ACTIONS(2918), + [sym_rune_literal] = ACTIONS(2918), + [sym_pseudo_compile_time_identifier] = ACTIONS(2918), + [anon_sym_shared] = ACTIONS(2918), + [anon_sym_map_LBRACK] = ACTIONS(2918), + [anon_sym_chan] = ACTIONS(2918), + [anon_sym_thread] = ACTIONS(2918), + [anon_sym_atomic] = ACTIONS(2918), + [anon_sym_assert] = ACTIONS(2918), + [anon_sym_defer] = ACTIONS(2918), + [anon_sym_goto] = ACTIONS(2918), + [anon_sym_break] = ACTIONS(2918), + [anon_sym_continue] = ACTIONS(2918), + [anon_sym_return] = ACTIONS(2918), + [anon_sym_DOLLARfor] = ACTIONS(2918), + [anon_sym_for] = ACTIONS(2918), + [anon_sym_POUND] = ACTIONS(2918), + [anon_sym_asm] = ACTIONS(2918), + [anon_sym_AT_LBRACK] = ACTIONS(2918), + [sym___double_quote] = ACTIONS(2918), + [sym___single_quote] = ACTIONS(2918), + [sym___c_double_quote] = ACTIONS(2918), + [sym___c_single_quote] = ACTIONS(2918), + [sym___r_double_quote] = ACTIONS(2918), + [sym___r_single_quote] = ACTIONS(2918), + }, + [1035] = { + [sym_line_comment] = STATE(1035), + [sym_block_comment] = STATE(1035), + [ts_builtin_sym_end] = ACTIONS(2912), + [sym_identifier] = ACTIONS(2914), + [anon_sym_LF] = ACTIONS(2914), + [anon_sym_CR] = ACTIONS(2914), + [anon_sym_CR_LF] = ACTIONS(2914), + [anon_sym_SLASH_SLASH] = ACTIONS(497), + [anon_sym_SLASH_STAR] = ACTIONS(499), + [anon_sym_DOT] = ACTIONS(2914), + [anon_sym_as] = ACTIONS(2914), + [anon_sym_LBRACE] = ACTIONS(2914), + [anon_sym_COMMA] = ACTIONS(2914), + [anon_sym_const] = ACTIONS(2914), + [anon_sym_LPAREN] = ACTIONS(2914), + [anon_sym___global] = ACTIONS(2914), + [anon_sym_type] = ACTIONS(2914), + [anon_sym_PIPE] = ACTIONS(2914), + [anon_sym_fn] = ACTIONS(2914), + [anon_sym_PLUS] = ACTIONS(2914), + [anon_sym_DASH] = ACTIONS(2914), + [anon_sym_STAR] = ACTIONS(2914), + [anon_sym_SLASH] = ACTIONS(2914), + [anon_sym_PERCENT] = ACTIONS(2914), + [anon_sym_LT] = ACTIONS(2914), + [anon_sym_GT] = ACTIONS(2914), + [anon_sym_EQ_EQ] = ACTIONS(2914), + [anon_sym_BANG_EQ] = ACTIONS(2914), + [anon_sym_LT_EQ] = ACTIONS(2914), + [anon_sym_GT_EQ] = ACTIONS(2914), + [anon_sym_LBRACK] = ACTIONS(2912), + [anon_sym_struct] = ACTIONS(2914), + [anon_sym_union] = ACTIONS(2914), + [anon_sym_pub] = ACTIONS(2914), + [anon_sym_mut] = ACTIONS(2914), + [anon_sym_enum] = ACTIONS(2914), + [anon_sym_interface] = ACTIONS(2914), + [anon_sym_PLUS_PLUS] = ACTIONS(2914), + [anon_sym_DASH_DASH] = ACTIONS(2914), + [anon_sym_QMARK] = ACTIONS(2914), + [anon_sym_BANG] = ACTIONS(2914), + [anon_sym_go] = ACTIONS(2914), + [anon_sym_spawn] = ACTIONS(2914), + [anon_sym_json_DOTdecode] = ACTIONS(2914), + [anon_sym_LBRACK2] = ACTIONS(2914), + [anon_sym_TILDE] = ACTIONS(2914), + [anon_sym_CARET] = ACTIONS(2914), + [anon_sym_AMP] = ACTIONS(2914), + [anon_sym_LT_DASH] = ACTIONS(2914), + [anon_sym_LT_LT] = ACTIONS(2914), + [anon_sym_GT_GT] = ACTIONS(2914), + [anon_sym_GT_GT_GT] = ACTIONS(2914), + [anon_sym_AMP_CARET] = ACTIONS(2914), + [anon_sym_AMP_AMP] = ACTIONS(2914), + [anon_sym_PIPE_PIPE] = ACTIONS(2914), + [anon_sym_or] = ACTIONS(2914), + [sym_none] = ACTIONS(2914), + [sym_true] = ACTIONS(2914), + [sym_false] = ACTIONS(2914), + [sym_nil] = ACTIONS(2914), + [anon_sym_QMARK_DOT] = ACTIONS(2914), + [anon_sym_POUND_LBRACK] = ACTIONS(2914), + [anon_sym_if] = ACTIONS(2914), + [anon_sym_DOLLARif] = ACTIONS(2914), + [anon_sym_is] = ACTIONS(2914), + [anon_sym_BANGis] = ACTIONS(2914), + [anon_sym_in] = ACTIONS(2914), + [anon_sym_BANGin] = ACTIONS(2914), + [anon_sym_match] = ACTIONS(2914), + [anon_sym_select] = ACTIONS(2914), + [anon_sym_lock] = ACTIONS(2914), + [anon_sym_rlock] = ACTIONS(2914), + [anon_sym_unsafe] = ACTIONS(2914), + [anon_sym_sql] = ACTIONS(2914), + [sym_int_literal] = ACTIONS(2914), + [sym_float_literal] = ACTIONS(2914), + [sym_rune_literal] = ACTIONS(2914), + [sym_pseudo_compile_time_identifier] = ACTIONS(2914), + [anon_sym_shared] = ACTIONS(2914), + [anon_sym_map_LBRACK] = ACTIONS(2914), + [anon_sym_chan] = ACTIONS(2914), + [anon_sym_thread] = ACTIONS(2914), + [anon_sym_atomic] = ACTIONS(2914), + [anon_sym_assert] = ACTIONS(2914), + [anon_sym_defer] = ACTIONS(2914), + [anon_sym_goto] = ACTIONS(2914), + [anon_sym_break] = ACTIONS(2914), + [anon_sym_continue] = ACTIONS(2914), + [anon_sym_return] = ACTIONS(2914), + [anon_sym_DOLLARfor] = ACTIONS(2914), + [anon_sym_for] = ACTIONS(2914), + [anon_sym_POUND] = ACTIONS(2914), + [anon_sym_asm] = ACTIONS(2914), + [anon_sym_AT_LBRACK] = ACTIONS(2914), + [sym___double_quote] = ACTIONS(2914), + [sym___single_quote] = ACTIONS(2914), + [sym___c_double_quote] = ACTIONS(2914), + [sym___c_single_quote] = ACTIONS(2914), + [sym___r_double_quote] = ACTIONS(2914), + [sym___r_single_quote] = ACTIONS(2914), + }, + [1036] = { + [sym_line_comment] = STATE(1036), + [sym_block_comment] = STATE(1036), + [ts_builtin_sym_end] = ACTIONS(2776), + [sym_identifier] = ACTIONS(2778), + [anon_sym_LF] = ACTIONS(2778), + [anon_sym_CR] = ACTIONS(2778), + [anon_sym_CR_LF] = ACTIONS(2778), + [anon_sym_SLASH_SLASH] = ACTIONS(497), + [anon_sym_SLASH_STAR] = ACTIONS(499), + [anon_sym_DOT] = ACTIONS(2778), + [anon_sym_as] = ACTIONS(2778), + [anon_sym_LBRACE] = ACTIONS(2778), + [anon_sym_COMMA] = ACTIONS(2778), + [anon_sym_const] = ACTIONS(2778), + [anon_sym_LPAREN] = ACTIONS(2778), + [anon_sym___global] = ACTIONS(2778), + [anon_sym_type] = ACTIONS(2778), + [anon_sym_PIPE] = ACTIONS(2778), + [anon_sym_fn] = ACTIONS(2778), + [anon_sym_PLUS] = ACTIONS(2778), + [anon_sym_DASH] = ACTIONS(2778), + [anon_sym_STAR] = ACTIONS(2778), + [anon_sym_SLASH] = ACTIONS(2778), + [anon_sym_PERCENT] = ACTIONS(2778), + [anon_sym_LT] = ACTIONS(2778), + [anon_sym_GT] = ACTIONS(2778), + [anon_sym_EQ_EQ] = ACTIONS(2778), + [anon_sym_BANG_EQ] = ACTIONS(2778), + [anon_sym_LT_EQ] = ACTIONS(2778), + [anon_sym_GT_EQ] = ACTIONS(2778), + [anon_sym_LBRACK] = ACTIONS(2776), + [anon_sym_struct] = ACTIONS(2778), + [anon_sym_union] = ACTIONS(2778), + [anon_sym_pub] = ACTIONS(2778), + [anon_sym_mut] = ACTIONS(2778), + [anon_sym_enum] = ACTIONS(2778), + [anon_sym_interface] = ACTIONS(2778), + [anon_sym_PLUS_PLUS] = ACTIONS(2778), + [anon_sym_DASH_DASH] = ACTIONS(2778), + [anon_sym_QMARK] = ACTIONS(2778), + [anon_sym_BANG] = ACTIONS(2778), + [anon_sym_go] = ACTIONS(2778), + [anon_sym_spawn] = ACTIONS(2778), + [anon_sym_json_DOTdecode] = ACTIONS(2778), + [anon_sym_LBRACK2] = ACTIONS(2778), + [anon_sym_TILDE] = ACTIONS(2778), + [anon_sym_CARET] = ACTIONS(2778), + [anon_sym_AMP] = ACTIONS(2778), + [anon_sym_LT_DASH] = ACTIONS(2778), + [anon_sym_LT_LT] = ACTIONS(2778), + [anon_sym_GT_GT] = ACTIONS(2778), + [anon_sym_GT_GT_GT] = ACTIONS(2778), + [anon_sym_AMP_CARET] = ACTIONS(2778), + [anon_sym_AMP_AMP] = ACTIONS(2778), + [anon_sym_PIPE_PIPE] = ACTIONS(2778), + [anon_sym_or] = ACTIONS(2778), + [sym_none] = ACTIONS(2778), + [sym_true] = ACTIONS(2778), + [sym_false] = ACTIONS(2778), + [sym_nil] = ACTIONS(2778), + [anon_sym_QMARK_DOT] = ACTIONS(2778), + [anon_sym_POUND_LBRACK] = ACTIONS(2778), + [anon_sym_if] = ACTIONS(2778), + [anon_sym_DOLLARif] = ACTIONS(2778), + [anon_sym_is] = ACTIONS(2778), + [anon_sym_BANGis] = ACTIONS(2778), + [anon_sym_in] = ACTIONS(2778), + [anon_sym_BANGin] = ACTIONS(2778), + [anon_sym_match] = ACTIONS(2778), + [anon_sym_select] = ACTIONS(2778), + [anon_sym_lock] = ACTIONS(2778), + [anon_sym_rlock] = ACTIONS(2778), + [anon_sym_unsafe] = ACTIONS(2778), + [anon_sym_sql] = ACTIONS(2778), + [sym_int_literal] = ACTIONS(2778), + [sym_float_literal] = ACTIONS(2778), + [sym_rune_literal] = ACTIONS(2778), + [sym_pseudo_compile_time_identifier] = ACTIONS(2778), + [anon_sym_shared] = ACTIONS(2778), + [anon_sym_map_LBRACK] = ACTIONS(2778), + [anon_sym_chan] = ACTIONS(2778), + [anon_sym_thread] = ACTIONS(2778), + [anon_sym_atomic] = ACTIONS(2778), + [anon_sym_assert] = ACTIONS(2778), + [anon_sym_defer] = ACTIONS(2778), + [anon_sym_goto] = ACTIONS(2778), + [anon_sym_break] = ACTIONS(2778), + [anon_sym_continue] = ACTIONS(2778), + [anon_sym_return] = ACTIONS(2778), + [anon_sym_DOLLARfor] = ACTIONS(2778), + [anon_sym_for] = ACTIONS(2778), + [anon_sym_POUND] = ACTIONS(2778), + [anon_sym_asm] = ACTIONS(2778), + [anon_sym_AT_LBRACK] = ACTIONS(2778), + [sym___double_quote] = ACTIONS(2778), + [sym___single_quote] = ACTIONS(2778), + [sym___c_double_quote] = ACTIONS(2778), + [sym___c_single_quote] = ACTIONS(2778), + [sym___r_double_quote] = ACTIONS(2778), + [sym___r_single_quote] = ACTIONS(2778), + }, + [1037] = { + [sym_line_comment] = STATE(1037), + [sym_block_comment] = STATE(1037), + [ts_builtin_sym_end] = ACTIONS(2473), + [sym_identifier] = ACTIONS(2475), + [anon_sym_LF] = ACTIONS(2475), + [anon_sym_CR] = ACTIONS(2475), + [anon_sym_CR_LF] = ACTIONS(2475), + [anon_sym_SLASH_SLASH] = ACTIONS(497), + [anon_sym_SLASH_STAR] = ACTIONS(499), + [anon_sym_DOT] = ACTIONS(1891), + [anon_sym_as] = ACTIONS(2475), + [anon_sym_LBRACE] = ACTIONS(2475), + [anon_sym_COMMA] = ACTIONS(2475), + [anon_sym_const] = ACTIONS(2475), + [anon_sym_LPAREN] = ACTIONS(2475), + [anon_sym___global] = ACTIONS(2475), + [anon_sym_type] = ACTIONS(2475), + [anon_sym_PIPE] = ACTIONS(2475), + [anon_sym_fn] = ACTIONS(2475), + [anon_sym_PLUS] = ACTIONS(2475), + [anon_sym_DASH] = ACTIONS(2475), + [anon_sym_STAR] = ACTIONS(2475), + [anon_sym_SLASH] = ACTIONS(2475), + [anon_sym_PERCENT] = ACTIONS(2475), + [anon_sym_LT] = ACTIONS(2475), + [anon_sym_GT] = ACTIONS(2475), + [anon_sym_EQ_EQ] = ACTIONS(2475), + [anon_sym_BANG_EQ] = ACTIONS(2475), + [anon_sym_LT_EQ] = ACTIONS(2475), + [anon_sym_GT_EQ] = ACTIONS(2475), + [anon_sym_LBRACK] = ACTIONS(2473), + [anon_sym_struct] = ACTIONS(2475), + [anon_sym_union] = ACTIONS(2475), + [anon_sym_pub] = ACTIONS(2475), + [anon_sym_mut] = ACTIONS(2475), + [anon_sym_enum] = ACTIONS(2475), + [anon_sym_interface] = ACTIONS(2475), + [anon_sym_PLUS_PLUS] = ACTIONS(2475), + [anon_sym_DASH_DASH] = ACTIONS(2475), + [anon_sym_QMARK] = ACTIONS(2475), + [anon_sym_BANG] = ACTIONS(2475), + [anon_sym_go] = ACTIONS(2475), + [anon_sym_spawn] = ACTIONS(2475), + [anon_sym_json_DOTdecode] = ACTIONS(2475), + [anon_sym_LBRACK2] = ACTIONS(2475), + [anon_sym_TILDE] = ACTIONS(2475), + [anon_sym_CARET] = ACTIONS(2475), + [anon_sym_AMP] = ACTIONS(2475), + [anon_sym_LT_DASH] = ACTIONS(2475), + [anon_sym_LT_LT] = ACTIONS(2475), + [anon_sym_GT_GT] = ACTIONS(2475), + [anon_sym_GT_GT_GT] = ACTIONS(2475), + [anon_sym_AMP_CARET] = ACTIONS(2475), + [anon_sym_AMP_AMP] = ACTIONS(2475), + [anon_sym_PIPE_PIPE] = ACTIONS(2475), + [anon_sym_or] = ACTIONS(2475), + [sym_none] = ACTIONS(2475), + [sym_true] = ACTIONS(2475), + [sym_false] = ACTIONS(2475), + [sym_nil] = ACTIONS(2475), + [anon_sym_QMARK_DOT] = ACTIONS(2475), + [anon_sym_POUND_LBRACK] = ACTIONS(2475), + [anon_sym_if] = ACTIONS(2475), + [anon_sym_DOLLARif] = ACTIONS(2475), + [anon_sym_is] = ACTIONS(2475), + [anon_sym_BANGis] = ACTIONS(2475), + [anon_sym_in] = ACTIONS(2475), + [anon_sym_BANGin] = ACTIONS(2475), + [anon_sym_match] = ACTIONS(2475), + [anon_sym_select] = ACTIONS(2475), + [anon_sym_lock] = ACTIONS(2475), + [anon_sym_rlock] = ACTIONS(2475), + [anon_sym_unsafe] = ACTIONS(2475), + [anon_sym_sql] = ACTIONS(2475), + [sym_int_literal] = ACTIONS(2475), + [sym_float_literal] = ACTIONS(2475), + [sym_rune_literal] = ACTIONS(2475), + [sym_pseudo_compile_time_identifier] = ACTIONS(2475), + [anon_sym_shared] = ACTIONS(2475), + [anon_sym_map_LBRACK] = ACTIONS(2475), + [anon_sym_chan] = ACTIONS(2475), + [anon_sym_thread] = ACTIONS(2475), + [anon_sym_atomic] = ACTIONS(2475), + [anon_sym_assert] = ACTIONS(2475), + [anon_sym_defer] = ACTIONS(2475), + [anon_sym_goto] = ACTIONS(2475), + [anon_sym_break] = ACTIONS(2475), + [anon_sym_continue] = ACTIONS(2475), + [anon_sym_return] = ACTIONS(2475), + [anon_sym_DOLLARfor] = ACTIONS(2475), + [anon_sym_for] = ACTIONS(2475), + [anon_sym_POUND] = ACTIONS(2475), + [anon_sym_asm] = ACTIONS(2475), + [anon_sym_AT_LBRACK] = ACTIONS(2475), + [sym___double_quote] = ACTIONS(2475), + [sym___single_quote] = ACTIONS(2475), + [sym___c_double_quote] = ACTIONS(2475), + [sym___c_single_quote] = ACTIONS(2475), + [sym___r_double_quote] = ACTIONS(2475), + [sym___r_single_quote] = ACTIONS(2475), + }, + [1038] = { + [sym_line_comment] = STATE(1038), + [sym_block_comment] = STATE(1038), + [ts_builtin_sym_end] = ACTIONS(2900), + [sym_identifier] = ACTIONS(2902), + [anon_sym_LF] = ACTIONS(2902), + [anon_sym_CR] = ACTIONS(2902), + [anon_sym_CR_LF] = ACTIONS(2902), + [anon_sym_SLASH_SLASH] = ACTIONS(497), + [anon_sym_SLASH_STAR] = ACTIONS(499), + [anon_sym_DOT] = ACTIONS(2902), + [anon_sym_as] = ACTIONS(2902), + [anon_sym_LBRACE] = ACTIONS(2902), + [anon_sym_COMMA] = ACTIONS(2902), + [anon_sym_const] = ACTIONS(2902), + [anon_sym_LPAREN] = ACTIONS(2902), + [anon_sym___global] = ACTIONS(2902), + [anon_sym_type] = ACTIONS(2902), + [anon_sym_PIPE] = ACTIONS(2902), + [anon_sym_fn] = ACTIONS(2902), + [anon_sym_PLUS] = ACTIONS(2902), + [anon_sym_DASH] = ACTIONS(2902), + [anon_sym_STAR] = ACTIONS(2902), + [anon_sym_SLASH] = ACTIONS(2902), + [anon_sym_PERCENT] = ACTIONS(2902), + [anon_sym_LT] = ACTIONS(2902), + [anon_sym_GT] = ACTIONS(2902), + [anon_sym_EQ_EQ] = ACTIONS(2902), + [anon_sym_BANG_EQ] = ACTIONS(2902), + [anon_sym_LT_EQ] = ACTIONS(2902), + [anon_sym_GT_EQ] = ACTIONS(2902), + [anon_sym_LBRACK] = ACTIONS(2900), + [anon_sym_struct] = ACTIONS(2902), + [anon_sym_union] = ACTIONS(2902), + [anon_sym_pub] = ACTIONS(2902), + [anon_sym_mut] = ACTIONS(2902), + [anon_sym_enum] = ACTIONS(2902), + [anon_sym_interface] = ACTIONS(2902), + [anon_sym_PLUS_PLUS] = ACTIONS(2902), + [anon_sym_DASH_DASH] = ACTIONS(2902), + [anon_sym_QMARK] = ACTIONS(2902), + [anon_sym_BANG] = ACTIONS(2902), + [anon_sym_go] = ACTIONS(2902), + [anon_sym_spawn] = ACTIONS(2902), + [anon_sym_json_DOTdecode] = ACTIONS(2902), + [anon_sym_LBRACK2] = ACTIONS(2902), + [anon_sym_TILDE] = ACTIONS(2902), + [anon_sym_CARET] = ACTIONS(2902), + [anon_sym_AMP] = ACTIONS(2902), + [anon_sym_LT_DASH] = ACTIONS(2902), + [anon_sym_LT_LT] = ACTIONS(2902), + [anon_sym_GT_GT] = ACTIONS(2902), + [anon_sym_GT_GT_GT] = ACTIONS(2902), + [anon_sym_AMP_CARET] = ACTIONS(2902), + [anon_sym_AMP_AMP] = ACTIONS(2902), + [anon_sym_PIPE_PIPE] = ACTIONS(2902), + [anon_sym_or] = ACTIONS(2902), + [sym_none] = ACTIONS(2902), + [sym_true] = ACTIONS(2902), + [sym_false] = ACTIONS(2902), + [sym_nil] = ACTIONS(2902), + [anon_sym_QMARK_DOT] = ACTIONS(2902), + [anon_sym_POUND_LBRACK] = ACTIONS(2902), + [anon_sym_if] = ACTIONS(2902), + [anon_sym_DOLLARif] = ACTIONS(2902), + [anon_sym_is] = ACTIONS(2902), + [anon_sym_BANGis] = ACTIONS(2902), + [anon_sym_in] = ACTIONS(2902), + [anon_sym_BANGin] = ACTIONS(2902), + [anon_sym_match] = ACTIONS(2902), + [anon_sym_select] = ACTIONS(2902), + [anon_sym_lock] = ACTIONS(2902), + [anon_sym_rlock] = ACTIONS(2902), + [anon_sym_unsafe] = ACTIONS(2902), + [anon_sym_sql] = ACTIONS(2902), + [sym_int_literal] = ACTIONS(2902), + [sym_float_literal] = ACTIONS(2902), + [sym_rune_literal] = ACTIONS(2902), + [sym_pseudo_compile_time_identifier] = ACTIONS(2902), + [anon_sym_shared] = ACTIONS(2902), + [anon_sym_map_LBRACK] = ACTIONS(2902), + [anon_sym_chan] = ACTIONS(2902), + [anon_sym_thread] = ACTIONS(2902), + [anon_sym_atomic] = ACTIONS(2902), + [anon_sym_assert] = ACTIONS(2902), + [anon_sym_defer] = ACTIONS(2902), + [anon_sym_goto] = ACTIONS(2902), + [anon_sym_break] = ACTIONS(2902), + [anon_sym_continue] = ACTIONS(2902), + [anon_sym_return] = ACTIONS(2902), + [anon_sym_DOLLARfor] = ACTIONS(2902), + [anon_sym_for] = ACTIONS(2902), + [anon_sym_POUND] = ACTIONS(2902), + [anon_sym_asm] = ACTIONS(2902), + [anon_sym_AT_LBRACK] = ACTIONS(2902), + [sym___double_quote] = ACTIONS(2902), + [sym___single_quote] = ACTIONS(2902), + [sym___c_double_quote] = ACTIONS(2902), + [sym___c_single_quote] = ACTIONS(2902), + [sym___r_double_quote] = ACTIONS(2902), + [sym___r_single_quote] = ACTIONS(2902), + }, + [1039] = { + [sym_line_comment] = STATE(1039), + [sym_block_comment] = STATE(1039), + [ts_builtin_sym_end] = ACTIONS(2465), + [sym_identifier] = ACTIONS(2467), + [anon_sym_LF] = ACTIONS(2467), + [anon_sym_CR] = ACTIONS(2467), + [anon_sym_CR_LF] = ACTIONS(2467), + [anon_sym_SLASH_SLASH] = ACTIONS(497), + [anon_sym_SLASH_STAR] = ACTIONS(499), + [anon_sym_DOT] = ACTIONS(2467), + [anon_sym_as] = ACTIONS(2467), + [anon_sym_LBRACE] = ACTIONS(2467), + [anon_sym_COMMA] = ACTIONS(2467), + [anon_sym_const] = ACTIONS(2467), + [anon_sym_LPAREN] = ACTIONS(2467), + [anon_sym___global] = ACTIONS(2467), + [anon_sym_type] = ACTIONS(2467), + [anon_sym_PIPE] = ACTIONS(2467), + [anon_sym_fn] = ACTIONS(2467), + [anon_sym_PLUS] = ACTIONS(2467), + [anon_sym_DASH] = ACTIONS(2467), + [anon_sym_STAR] = ACTIONS(2467), + [anon_sym_SLASH] = ACTIONS(2467), + [anon_sym_PERCENT] = ACTIONS(2467), + [anon_sym_LT] = ACTIONS(2467), + [anon_sym_GT] = ACTIONS(2467), + [anon_sym_EQ_EQ] = ACTIONS(2467), + [anon_sym_BANG_EQ] = ACTIONS(2467), + [anon_sym_LT_EQ] = ACTIONS(2467), + [anon_sym_GT_EQ] = ACTIONS(2467), + [anon_sym_LBRACK] = ACTIONS(2465), + [anon_sym_struct] = ACTIONS(2467), + [anon_sym_union] = ACTIONS(2467), + [anon_sym_pub] = ACTIONS(2467), + [anon_sym_mut] = ACTIONS(2467), + [anon_sym_enum] = ACTIONS(2467), + [anon_sym_interface] = ACTIONS(2467), + [anon_sym_PLUS_PLUS] = ACTIONS(2467), + [anon_sym_DASH_DASH] = ACTIONS(2467), + [anon_sym_QMARK] = ACTIONS(2467), + [anon_sym_BANG] = ACTIONS(2467), + [anon_sym_go] = ACTIONS(2467), + [anon_sym_spawn] = ACTIONS(2467), + [anon_sym_json_DOTdecode] = ACTIONS(2467), + [anon_sym_LBRACK2] = ACTIONS(2467), + [anon_sym_TILDE] = ACTIONS(2467), + [anon_sym_CARET] = ACTIONS(2467), + [anon_sym_AMP] = ACTIONS(2467), + [anon_sym_LT_DASH] = ACTIONS(2467), + [anon_sym_LT_LT] = ACTIONS(2467), + [anon_sym_GT_GT] = ACTIONS(2467), + [anon_sym_GT_GT_GT] = ACTIONS(2467), + [anon_sym_AMP_CARET] = ACTIONS(2467), + [anon_sym_AMP_AMP] = ACTIONS(2467), + [anon_sym_PIPE_PIPE] = ACTIONS(2467), + [anon_sym_or] = ACTIONS(2467), + [sym_none] = ACTIONS(2467), + [sym_true] = ACTIONS(2467), + [sym_false] = ACTIONS(2467), + [sym_nil] = ACTIONS(2467), + [anon_sym_QMARK_DOT] = ACTIONS(2467), + [anon_sym_POUND_LBRACK] = ACTIONS(2467), + [anon_sym_if] = ACTIONS(2467), + [anon_sym_DOLLARif] = ACTIONS(2467), + [anon_sym_is] = ACTIONS(2467), + [anon_sym_BANGis] = ACTIONS(2467), + [anon_sym_in] = ACTIONS(2467), + [anon_sym_BANGin] = ACTIONS(2467), + [anon_sym_match] = ACTIONS(2467), + [anon_sym_select] = ACTIONS(2467), + [anon_sym_lock] = ACTIONS(2467), + [anon_sym_rlock] = ACTIONS(2467), + [anon_sym_unsafe] = ACTIONS(2467), + [anon_sym_sql] = ACTIONS(2467), + [sym_int_literal] = ACTIONS(2467), + [sym_float_literal] = ACTIONS(2467), + [sym_rune_literal] = ACTIONS(2467), + [sym_pseudo_compile_time_identifier] = ACTIONS(2467), + [anon_sym_shared] = ACTIONS(2467), + [anon_sym_map_LBRACK] = ACTIONS(2467), + [anon_sym_chan] = ACTIONS(2467), + [anon_sym_thread] = ACTIONS(2467), + [anon_sym_atomic] = ACTIONS(2467), + [anon_sym_assert] = ACTIONS(2467), + [anon_sym_defer] = ACTIONS(2467), + [anon_sym_goto] = ACTIONS(2467), + [anon_sym_break] = ACTIONS(2467), + [anon_sym_continue] = ACTIONS(2467), + [anon_sym_return] = ACTIONS(2467), + [anon_sym_DOLLARfor] = ACTIONS(2467), + [anon_sym_for] = ACTIONS(2467), + [anon_sym_POUND] = ACTIONS(2467), + [anon_sym_asm] = ACTIONS(2467), + [anon_sym_AT_LBRACK] = ACTIONS(2467), + [sym___double_quote] = ACTIONS(2467), + [sym___single_quote] = ACTIONS(2467), + [sym___c_double_quote] = ACTIONS(2467), + [sym___c_single_quote] = ACTIONS(2467), + [sym___r_double_quote] = ACTIONS(2467), + [sym___r_single_quote] = ACTIONS(2467), + }, + [1040] = { + [sym_line_comment] = STATE(1040), + [sym_block_comment] = STATE(1040), + [ts_builtin_sym_end] = ACTIONS(2904), + [sym_identifier] = ACTIONS(2906), + [anon_sym_LF] = ACTIONS(2906), + [anon_sym_CR] = ACTIONS(2906), + [anon_sym_CR_LF] = ACTIONS(2906), + [anon_sym_SLASH_SLASH] = ACTIONS(497), + [anon_sym_SLASH_STAR] = ACTIONS(499), + [anon_sym_DOT] = ACTIONS(2906), + [anon_sym_as] = ACTIONS(2906), + [anon_sym_LBRACE] = ACTIONS(2906), + [anon_sym_COMMA] = ACTIONS(2906), + [anon_sym_const] = ACTIONS(2906), + [anon_sym_LPAREN] = ACTIONS(2906), + [anon_sym___global] = ACTIONS(2906), + [anon_sym_type] = ACTIONS(2906), + [anon_sym_PIPE] = ACTIONS(2906), + [anon_sym_fn] = ACTIONS(2906), + [anon_sym_PLUS] = ACTIONS(2906), + [anon_sym_DASH] = ACTIONS(2906), + [anon_sym_STAR] = ACTIONS(2906), + [anon_sym_SLASH] = ACTIONS(2906), + [anon_sym_PERCENT] = ACTIONS(2906), + [anon_sym_LT] = ACTIONS(2906), + [anon_sym_GT] = ACTIONS(2906), + [anon_sym_EQ_EQ] = ACTIONS(2906), + [anon_sym_BANG_EQ] = ACTIONS(2906), + [anon_sym_LT_EQ] = ACTIONS(2906), + [anon_sym_GT_EQ] = ACTIONS(2906), + [anon_sym_LBRACK] = ACTIONS(2904), + [anon_sym_struct] = ACTIONS(2906), + [anon_sym_union] = ACTIONS(2906), + [anon_sym_pub] = ACTIONS(2906), + [anon_sym_mut] = ACTIONS(2906), + [anon_sym_enum] = ACTIONS(2906), + [anon_sym_interface] = ACTIONS(2906), + [anon_sym_PLUS_PLUS] = ACTIONS(2906), + [anon_sym_DASH_DASH] = ACTIONS(2906), + [anon_sym_QMARK] = ACTIONS(2906), + [anon_sym_BANG] = ACTIONS(2906), + [anon_sym_go] = ACTIONS(2906), + [anon_sym_spawn] = ACTIONS(2906), + [anon_sym_json_DOTdecode] = ACTIONS(2906), + [anon_sym_LBRACK2] = ACTIONS(2906), + [anon_sym_TILDE] = ACTIONS(2906), + [anon_sym_CARET] = ACTIONS(2906), + [anon_sym_AMP] = ACTIONS(2906), + [anon_sym_LT_DASH] = ACTIONS(2906), + [anon_sym_LT_LT] = ACTIONS(2906), + [anon_sym_GT_GT] = ACTIONS(2906), + [anon_sym_GT_GT_GT] = ACTIONS(2906), + [anon_sym_AMP_CARET] = ACTIONS(2906), + [anon_sym_AMP_AMP] = ACTIONS(2906), + [anon_sym_PIPE_PIPE] = ACTIONS(2906), + [anon_sym_or] = ACTIONS(2906), + [sym_none] = ACTIONS(2906), + [sym_true] = ACTIONS(2906), + [sym_false] = ACTIONS(2906), + [sym_nil] = ACTIONS(2906), + [anon_sym_QMARK_DOT] = ACTIONS(2906), + [anon_sym_POUND_LBRACK] = ACTIONS(2906), + [anon_sym_if] = ACTIONS(2906), + [anon_sym_DOLLARif] = ACTIONS(2906), + [anon_sym_is] = ACTIONS(2906), + [anon_sym_BANGis] = ACTIONS(2906), + [anon_sym_in] = ACTIONS(2906), + [anon_sym_BANGin] = ACTIONS(2906), + [anon_sym_match] = ACTIONS(2906), + [anon_sym_select] = ACTIONS(2906), + [anon_sym_lock] = ACTIONS(2906), + [anon_sym_rlock] = ACTIONS(2906), + [anon_sym_unsafe] = ACTIONS(2906), + [anon_sym_sql] = ACTIONS(2906), + [sym_int_literal] = ACTIONS(2906), + [sym_float_literal] = ACTIONS(2906), + [sym_rune_literal] = ACTIONS(2906), + [sym_pseudo_compile_time_identifier] = ACTIONS(2906), + [anon_sym_shared] = ACTIONS(2906), + [anon_sym_map_LBRACK] = ACTIONS(2906), + [anon_sym_chan] = ACTIONS(2906), + [anon_sym_thread] = ACTIONS(2906), + [anon_sym_atomic] = ACTIONS(2906), + [anon_sym_assert] = ACTIONS(2906), + [anon_sym_defer] = ACTIONS(2906), + [anon_sym_goto] = ACTIONS(2906), + [anon_sym_break] = ACTIONS(2906), + [anon_sym_continue] = ACTIONS(2906), + [anon_sym_return] = ACTIONS(2906), + [anon_sym_DOLLARfor] = ACTIONS(2906), + [anon_sym_for] = ACTIONS(2906), + [anon_sym_POUND] = ACTIONS(2906), + [anon_sym_asm] = ACTIONS(2906), + [anon_sym_AT_LBRACK] = ACTIONS(2906), + [sym___double_quote] = ACTIONS(2906), + [sym___single_quote] = ACTIONS(2906), + [sym___c_double_quote] = ACTIONS(2906), + [sym___c_single_quote] = ACTIONS(2906), + [sym___r_double_quote] = ACTIONS(2906), + [sym___r_single_quote] = ACTIONS(2906), + }, + [1041] = { + [sym_line_comment] = STATE(1041), + [sym_block_comment] = STATE(1041), + [ts_builtin_sym_end] = ACTIONS(1887), + [sym_identifier] = ACTIONS(1889), + [anon_sym_LF] = ACTIONS(1889), + [anon_sym_CR] = ACTIONS(1889), + [anon_sym_CR_LF] = ACTIONS(1889), + [anon_sym_SLASH_SLASH] = ACTIONS(497), + [anon_sym_SLASH_STAR] = ACTIONS(499), + [anon_sym_DOT] = ACTIONS(1889), + [anon_sym_as] = ACTIONS(1889), + [anon_sym_LBRACE] = ACTIONS(1891), + [anon_sym_COMMA] = ACTIONS(1889), + [anon_sym_const] = ACTIONS(1889), + [anon_sym_LPAREN] = ACTIONS(1889), + [anon_sym___global] = ACTIONS(1889), + [anon_sym_type] = ACTIONS(1889), + [anon_sym_PIPE] = ACTIONS(1889), + [anon_sym_fn] = ACTIONS(1889), + [anon_sym_PLUS] = ACTIONS(1889), + [anon_sym_DASH] = ACTIONS(1889), + [anon_sym_STAR] = ACTIONS(1889), + [anon_sym_SLASH] = ACTIONS(1889), + [anon_sym_PERCENT] = ACTIONS(1889), + [anon_sym_LT] = ACTIONS(1889), + [anon_sym_GT] = ACTIONS(1889), + [anon_sym_EQ_EQ] = ACTIONS(1889), + [anon_sym_BANG_EQ] = ACTIONS(1889), + [anon_sym_LT_EQ] = ACTIONS(1889), + [anon_sym_GT_EQ] = ACTIONS(1889), + [anon_sym_LBRACK] = ACTIONS(1894), + [anon_sym_struct] = ACTIONS(1889), + [anon_sym_union] = ACTIONS(1889), + [anon_sym_pub] = ACTIONS(1889), + [anon_sym_mut] = ACTIONS(1889), + [anon_sym_enum] = ACTIONS(1889), + [anon_sym_interface] = ACTIONS(1889), + [anon_sym_PLUS_PLUS] = ACTIONS(1889), + [anon_sym_DASH_DASH] = ACTIONS(1889), + [anon_sym_QMARK] = ACTIONS(1889), + [anon_sym_BANG] = ACTIONS(1889), + [anon_sym_go] = ACTIONS(1889), + [anon_sym_spawn] = ACTIONS(1889), + [anon_sym_json_DOTdecode] = ACTIONS(1889), + [anon_sym_LBRACK2] = ACTIONS(1889), + [anon_sym_TILDE] = ACTIONS(1889), + [anon_sym_CARET] = ACTIONS(1889), + [anon_sym_AMP] = ACTIONS(1889), + [anon_sym_LT_DASH] = ACTIONS(1889), + [anon_sym_LT_LT] = ACTIONS(1889), + [anon_sym_GT_GT] = ACTIONS(1889), + [anon_sym_GT_GT_GT] = ACTIONS(1889), + [anon_sym_AMP_CARET] = ACTIONS(1889), + [anon_sym_AMP_AMP] = ACTIONS(1889), + [anon_sym_PIPE_PIPE] = ACTIONS(1889), + [anon_sym_or] = ACTIONS(1889), + [sym_none] = ACTIONS(1889), + [sym_true] = ACTIONS(1889), + [sym_false] = ACTIONS(1889), + [sym_nil] = ACTIONS(1889), + [anon_sym_QMARK_DOT] = ACTIONS(1889), + [anon_sym_POUND_LBRACK] = ACTIONS(1889), + [anon_sym_if] = ACTIONS(1889), + [anon_sym_DOLLARif] = ACTIONS(1889), + [anon_sym_is] = ACTIONS(1889), + [anon_sym_BANGis] = ACTIONS(1889), + [anon_sym_in] = ACTIONS(1889), + [anon_sym_BANGin] = ACTIONS(1889), + [anon_sym_match] = ACTIONS(1889), + [anon_sym_select] = ACTIONS(1889), + [anon_sym_lock] = ACTIONS(1889), + [anon_sym_rlock] = ACTIONS(1889), + [anon_sym_unsafe] = ACTIONS(1889), + [anon_sym_sql] = ACTIONS(1889), + [sym_int_literal] = ACTIONS(1889), + [sym_float_literal] = ACTIONS(1889), + [sym_rune_literal] = ACTIONS(1889), + [sym_pseudo_compile_time_identifier] = ACTIONS(1889), + [anon_sym_shared] = ACTIONS(1889), + [anon_sym_map_LBRACK] = ACTIONS(1889), + [anon_sym_chan] = ACTIONS(1889), + [anon_sym_thread] = ACTIONS(1889), + [anon_sym_atomic] = ACTIONS(1889), + [anon_sym_assert] = ACTIONS(1889), + [anon_sym_defer] = ACTIONS(1889), + [anon_sym_goto] = ACTIONS(1889), + [anon_sym_break] = ACTIONS(1889), + [anon_sym_continue] = ACTIONS(1889), + [anon_sym_return] = ACTIONS(1889), + [anon_sym_DOLLARfor] = ACTIONS(1889), + [anon_sym_for] = ACTIONS(1889), + [anon_sym_POUND] = ACTIONS(1889), + [anon_sym_asm] = ACTIONS(1889), + [anon_sym_AT_LBRACK] = ACTIONS(1889), + [sym___double_quote] = ACTIONS(1889), + [sym___single_quote] = ACTIONS(1889), + [sym___c_double_quote] = ACTIONS(1889), + [sym___c_single_quote] = ACTIONS(1889), + [sym___r_double_quote] = ACTIONS(1889), + [sym___r_single_quote] = ACTIONS(1889), + }, + [1042] = { + [sym_line_comment] = STATE(1042), + [sym_block_comment] = STATE(1042), + [ts_builtin_sym_end] = ACTIONS(2702), + [sym_identifier] = ACTIONS(2704), + [anon_sym_LF] = ACTIONS(2704), + [anon_sym_CR] = ACTIONS(2704), + [anon_sym_CR_LF] = ACTIONS(2704), + [anon_sym_SLASH_SLASH] = ACTIONS(497), + [anon_sym_SLASH_STAR] = ACTIONS(499), + [anon_sym_DOT] = ACTIONS(2704), + [anon_sym_as] = ACTIONS(2704), + [anon_sym_LBRACE] = ACTIONS(2704), + [anon_sym_COMMA] = ACTIONS(2704), + [anon_sym_const] = ACTIONS(2704), + [anon_sym_LPAREN] = ACTIONS(2704), + [anon_sym___global] = ACTIONS(2704), + [anon_sym_type] = ACTIONS(2704), + [anon_sym_PIPE] = ACTIONS(2704), + [anon_sym_fn] = ACTIONS(2704), + [anon_sym_PLUS] = ACTIONS(2704), + [anon_sym_DASH] = ACTIONS(2704), + [anon_sym_STAR] = ACTIONS(2704), + [anon_sym_SLASH] = ACTIONS(2704), + [anon_sym_PERCENT] = ACTIONS(2704), + [anon_sym_LT] = ACTIONS(2704), + [anon_sym_GT] = ACTIONS(2704), + [anon_sym_EQ_EQ] = ACTIONS(2704), + [anon_sym_BANG_EQ] = ACTIONS(2704), + [anon_sym_LT_EQ] = ACTIONS(2704), + [anon_sym_GT_EQ] = ACTIONS(2704), + [anon_sym_LBRACK] = ACTIONS(2702), + [anon_sym_struct] = ACTIONS(2704), + [anon_sym_union] = ACTIONS(2704), + [anon_sym_pub] = ACTIONS(2704), + [anon_sym_mut] = ACTIONS(2704), + [anon_sym_enum] = ACTIONS(2704), + [anon_sym_interface] = ACTIONS(2704), + [anon_sym_PLUS_PLUS] = ACTIONS(2704), + [anon_sym_DASH_DASH] = ACTIONS(2704), + [anon_sym_QMARK] = ACTIONS(2704), + [anon_sym_BANG] = ACTIONS(2704), + [anon_sym_go] = ACTIONS(2704), + [anon_sym_spawn] = ACTIONS(2704), + [anon_sym_json_DOTdecode] = ACTIONS(2704), + [anon_sym_LBRACK2] = ACTIONS(2704), + [anon_sym_TILDE] = ACTIONS(2704), + [anon_sym_CARET] = ACTIONS(2704), + [anon_sym_AMP] = ACTIONS(2704), + [anon_sym_LT_DASH] = ACTIONS(2704), + [anon_sym_LT_LT] = ACTIONS(2704), + [anon_sym_GT_GT] = ACTIONS(2704), + [anon_sym_GT_GT_GT] = ACTIONS(2704), + [anon_sym_AMP_CARET] = ACTIONS(2704), + [anon_sym_AMP_AMP] = ACTIONS(2704), + [anon_sym_PIPE_PIPE] = ACTIONS(2704), + [anon_sym_or] = ACTIONS(2704), + [sym_none] = ACTIONS(2704), + [sym_true] = ACTIONS(2704), + [sym_false] = ACTIONS(2704), + [sym_nil] = ACTIONS(2704), + [anon_sym_QMARK_DOT] = ACTIONS(2704), + [anon_sym_POUND_LBRACK] = ACTIONS(2704), + [anon_sym_if] = ACTIONS(2704), + [anon_sym_DOLLARif] = ACTIONS(2704), + [anon_sym_is] = ACTIONS(2704), + [anon_sym_BANGis] = ACTIONS(2704), + [anon_sym_in] = ACTIONS(2704), + [anon_sym_BANGin] = ACTIONS(2704), + [anon_sym_match] = ACTIONS(2704), + [anon_sym_select] = ACTIONS(2704), + [anon_sym_lock] = ACTIONS(2704), + [anon_sym_rlock] = ACTIONS(2704), + [anon_sym_unsafe] = ACTIONS(2704), + [anon_sym_sql] = ACTIONS(2704), + [sym_int_literal] = ACTIONS(2704), + [sym_float_literal] = ACTIONS(2704), + [sym_rune_literal] = ACTIONS(2704), + [sym_pseudo_compile_time_identifier] = ACTIONS(2704), + [anon_sym_shared] = ACTIONS(2704), + [anon_sym_map_LBRACK] = ACTIONS(2704), + [anon_sym_chan] = ACTIONS(2704), + [anon_sym_thread] = ACTIONS(2704), + [anon_sym_atomic] = ACTIONS(2704), + [anon_sym_assert] = ACTIONS(2704), + [anon_sym_defer] = ACTIONS(2704), + [anon_sym_goto] = ACTIONS(2704), + [anon_sym_break] = ACTIONS(2704), + [anon_sym_continue] = ACTIONS(2704), + [anon_sym_return] = ACTIONS(2704), + [anon_sym_DOLLARfor] = ACTIONS(2704), + [anon_sym_for] = ACTIONS(2704), + [anon_sym_POUND] = ACTIONS(2704), + [anon_sym_asm] = ACTIONS(2704), + [anon_sym_AT_LBRACK] = ACTIONS(2704), + [sym___double_quote] = ACTIONS(2704), + [sym___single_quote] = ACTIONS(2704), + [sym___c_double_quote] = ACTIONS(2704), + [sym___c_single_quote] = ACTIONS(2704), + [sym___r_double_quote] = ACTIONS(2704), + [sym___r_single_quote] = ACTIONS(2704), + }, [1043] = { [sym_line_comment] = STATE(1043), [sym_block_comment] = STATE(1043), - [ts_builtin_sym_end] = ACTIONS(2475), - [sym_identifier] = ACTIONS(2477), - [anon_sym_LF] = ACTIONS(2477), - [anon_sym_CR] = ACTIONS(2477), - [anon_sym_CR_LF] = ACTIONS(2477), + [ts_builtin_sym_end] = ACTIONS(2536), + [sym_identifier] = ACTIONS(2538), + [anon_sym_LF] = ACTIONS(2538), + [anon_sym_CR] = ACTIONS(2538), + [anon_sym_CR_LF] = ACTIONS(2538), [anon_sym_SLASH_SLASH] = ACTIONS(497), [anon_sym_SLASH_STAR] = ACTIONS(499), - [anon_sym_DOT] = ACTIONS(2477), - [anon_sym_as] = ACTIONS(2477), - [anon_sym_LBRACE] = ACTIONS(2477), - [anon_sym_COMMA] = ACTIONS(2477), - [anon_sym_const] = ACTIONS(2477), - [anon_sym_LPAREN] = ACTIONS(2477), - [anon_sym___global] = ACTIONS(2477), - [anon_sym_type] = ACTIONS(2477), - [anon_sym_PIPE] = ACTIONS(2477), - [anon_sym_fn] = ACTIONS(2477), - [anon_sym_PLUS] = ACTIONS(2477), - [anon_sym_DASH] = ACTIONS(2477), - [anon_sym_STAR] = ACTIONS(2477), - [anon_sym_SLASH] = ACTIONS(2477), - [anon_sym_PERCENT] = ACTIONS(2477), - [anon_sym_LT] = ACTIONS(2477), - [anon_sym_GT] = ACTIONS(2477), - [anon_sym_EQ_EQ] = ACTIONS(2477), - [anon_sym_BANG_EQ] = ACTIONS(2477), - [anon_sym_LT_EQ] = ACTIONS(2477), - [anon_sym_GT_EQ] = ACTIONS(2477), - [anon_sym_LBRACK] = ACTIONS(2475), - [anon_sym_struct] = ACTIONS(2477), - [anon_sym_union] = ACTIONS(2477), - [anon_sym_pub] = ACTIONS(2477), - [anon_sym_mut] = ACTIONS(2477), - [anon_sym_enum] = ACTIONS(2477), - [anon_sym_interface] = ACTIONS(2477), - [anon_sym_PLUS_PLUS] = ACTIONS(2477), - [anon_sym_DASH_DASH] = ACTIONS(2477), - [anon_sym_QMARK] = ACTIONS(2477), - [anon_sym_BANG] = ACTIONS(2477), - [anon_sym_go] = ACTIONS(2477), - [anon_sym_spawn] = ACTIONS(2477), - [anon_sym_json_DOTdecode] = ACTIONS(2477), - [anon_sym_LBRACK2] = ACTIONS(2477), - [anon_sym_TILDE] = ACTIONS(2477), - [anon_sym_CARET] = ACTIONS(2477), - [anon_sym_AMP] = ACTIONS(2477), - [anon_sym_LT_DASH] = ACTIONS(2477), - [anon_sym_LT_LT] = ACTIONS(2477), - [anon_sym_GT_GT] = ACTIONS(2477), - [anon_sym_GT_GT_GT] = ACTIONS(2477), - [anon_sym_AMP_CARET] = ACTIONS(2477), - [anon_sym_AMP_AMP] = ACTIONS(2477), - [anon_sym_PIPE_PIPE] = ACTIONS(2477), - [anon_sym_or] = ACTIONS(2477), - [sym_none] = ACTIONS(2477), - [sym_true] = ACTIONS(2477), - [sym_false] = ACTIONS(2477), - [sym_nil] = ACTIONS(2477), - [anon_sym_QMARK_DOT] = ACTIONS(2477), - [anon_sym_POUND_LBRACK] = ACTIONS(2477), - [anon_sym_if] = ACTIONS(2477), - [anon_sym_DOLLARif] = ACTIONS(2477), - [anon_sym_is] = ACTIONS(2477), - [anon_sym_BANGis] = ACTIONS(2477), - [anon_sym_in] = ACTIONS(2477), - [anon_sym_BANGin] = ACTIONS(2477), - [anon_sym_match] = ACTIONS(2477), - [anon_sym_select] = ACTIONS(2477), - [anon_sym_lock] = ACTIONS(2477), - [anon_sym_rlock] = ACTIONS(2477), - [anon_sym_unsafe] = ACTIONS(2477), - [anon_sym_sql] = ACTIONS(2477), - [sym_int_literal] = ACTIONS(2477), - [sym_float_literal] = ACTIONS(2477), - [sym_rune_literal] = ACTIONS(2477), - [sym_pseudo_compile_time_identifier] = ACTIONS(2477), - [anon_sym_shared] = ACTIONS(2477), - [anon_sym_map_LBRACK] = ACTIONS(2477), - [anon_sym_chan] = ACTIONS(2477), - [anon_sym_thread] = ACTIONS(2477), - [anon_sym_atomic] = ACTIONS(2477), - [anon_sym_assert] = ACTIONS(2477), - [anon_sym_defer] = ACTIONS(2477), - [anon_sym_goto] = ACTIONS(2477), - [anon_sym_break] = ACTIONS(2477), - [anon_sym_continue] = ACTIONS(2477), - [anon_sym_return] = ACTIONS(2477), - [anon_sym_DOLLARfor] = ACTIONS(2477), - [anon_sym_for] = ACTIONS(2477), - [anon_sym_POUND] = ACTIONS(2477), - [anon_sym_asm] = ACTIONS(2477), - [anon_sym_AT_LBRACK] = ACTIONS(2477), - [sym___double_quote] = ACTIONS(2477), - [sym___single_quote] = ACTIONS(2477), - [sym___c_double_quote] = ACTIONS(2477), - [sym___c_single_quote] = ACTIONS(2477), - [sym___r_double_quote] = ACTIONS(2477), - [sym___r_single_quote] = ACTIONS(2477), + [anon_sym_DOT] = ACTIONS(2538), + [anon_sym_as] = ACTIONS(2538), + [anon_sym_LBRACE] = ACTIONS(2538), + [anon_sym_COMMA] = ACTIONS(2538), + [anon_sym_const] = ACTIONS(2538), + [anon_sym_LPAREN] = ACTIONS(2538), + [anon_sym___global] = ACTIONS(2538), + [anon_sym_type] = ACTIONS(2538), + [anon_sym_PIPE] = ACTIONS(2538), + [anon_sym_fn] = ACTIONS(2538), + [anon_sym_PLUS] = ACTIONS(2538), + [anon_sym_DASH] = ACTIONS(2538), + [anon_sym_STAR] = ACTIONS(2538), + [anon_sym_SLASH] = ACTIONS(2538), + [anon_sym_PERCENT] = ACTIONS(2538), + [anon_sym_LT] = ACTIONS(2538), + [anon_sym_GT] = ACTIONS(2538), + [anon_sym_EQ_EQ] = ACTIONS(2538), + [anon_sym_BANG_EQ] = ACTIONS(2538), + [anon_sym_LT_EQ] = ACTIONS(2538), + [anon_sym_GT_EQ] = ACTIONS(2538), + [anon_sym_LBRACK] = ACTIONS(2536), + [anon_sym_struct] = ACTIONS(2538), + [anon_sym_union] = ACTIONS(2538), + [anon_sym_pub] = ACTIONS(2538), + [anon_sym_mut] = ACTIONS(2538), + [anon_sym_enum] = ACTIONS(2538), + [anon_sym_interface] = ACTIONS(2538), + [anon_sym_PLUS_PLUS] = ACTIONS(2538), + [anon_sym_DASH_DASH] = ACTIONS(2538), + [anon_sym_QMARK] = ACTIONS(2538), + [anon_sym_BANG] = ACTIONS(2538), + [anon_sym_go] = ACTIONS(2538), + [anon_sym_spawn] = ACTIONS(2538), + [anon_sym_json_DOTdecode] = ACTIONS(2538), + [anon_sym_LBRACK2] = ACTIONS(2538), + [anon_sym_TILDE] = ACTIONS(2538), + [anon_sym_CARET] = ACTIONS(2538), + [anon_sym_AMP] = ACTIONS(2538), + [anon_sym_LT_DASH] = ACTIONS(2538), + [anon_sym_LT_LT] = ACTIONS(2538), + [anon_sym_GT_GT] = ACTIONS(2538), + [anon_sym_GT_GT_GT] = ACTIONS(2538), + [anon_sym_AMP_CARET] = ACTIONS(2538), + [anon_sym_AMP_AMP] = ACTIONS(2538), + [anon_sym_PIPE_PIPE] = ACTIONS(2538), + [anon_sym_or] = ACTIONS(2538), + [sym_none] = ACTIONS(2538), + [sym_true] = ACTIONS(2538), + [sym_false] = ACTIONS(2538), + [sym_nil] = ACTIONS(2538), + [anon_sym_QMARK_DOT] = ACTIONS(2538), + [anon_sym_POUND_LBRACK] = ACTIONS(2538), + [anon_sym_if] = ACTIONS(2538), + [anon_sym_DOLLARif] = ACTIONS(2538), + [anon_sym_is] = ACTIONS(2538), + [anon_sym_BANGis] = ACTIONS(2538), + [anon_sym_in] = ACTIONS(2538), + [anon_sym_BANGin] = ACTIONS(2538), + [anon_sym_match] = ACTIONS(2538), + [anon_sym_select] = ACTIONS(2538), + [anon_sym_lock] = ACTIONS(2538), + [anon_sym_rlock] = ACTIONS(2538), + [anon_sym_unsafe] = ACTIONS(2538), + [anon_sym_sql] = ACTIONS(2538), + [sym_int_literal] = ACTIONS(2538), + [sym_float_literal] = ACTIONS(2538), + [sym_rune_literal] = ACTIONS(2538), + [sym_pseudo_compile_time_identifier] = ACTIONS(2538), + [anon_sym_shared] = ACTIONS(2538), + [anon_sym_map_LBRACK] = ACTIONS(2538), + [anon_sym_chan] = ACTIONS(2538), + [anon_sym_thread] = ACTIONS(2538), + [anon_sym_atomic] = ACTIONS(2538), + [anon_sym_assert] = ACTIONS(2538), + [anon_sym_defer] = ACTIONS(2538), + [anon_sym_goto] = ACTIONS(2538), + [anon_sym_break] = ACTIONS(2538), + [anon_sym_continue] = ACTIONS(2538), + [anon_sym_return] = ACTIONS(2538), + [anon_sym_DOLLARfor] = ACTIONS(2538), + [anon_sym_for] = ACTIONS(2538), + [anon_sym_POUND] = ACTIONS(2538), + [anon_sym_asm] = ACTIONS(2538), + [anon_sym_AT_LBRACK] = ACTIONS(2538), + [sym___double_quote] = ACTIONS(2538), + [sym___single_quote] = ACTIONS(2538), + [sym___c_double_quote] = ACTIONS(2538), + [sym___c_single_quote] = ACTIONS(2538), + [sym___r_double_quote] = ACTIONS(2538), + [sym___r_single_quote] = ACTIONS(2538), }, [1044] = { [sym_line_comment] = STATE(1044), [sym_block_comment] = STATE(1044), - [ts_builtin_sym_end] = ACTIONS(2181), - [sym_identifier] = ACTIONS(2183), - [anon_sym_LF] = ACTIONS(2183), - [anon_sym_CR] = ACTIONS(2183), - [anon_sym_CR_LF] = ACTIONS(2183), + [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), [anon_sym_SLASH_SLASH] = ACTIONS(497), [anon_sym_SLASH_STAR] = ACTIONS(499), - [anon_sym_DOT] = ACTIONS(2183), - [anon_sym_as] = ACTIONS(2183), - [anon_sym_LBRACE] = ACTIONS(2183), - [anon_sym_COMMA] = ACTIONS(2183), - [anon_sym_const] = ACTIONS(2183), - [anon_sym_LPAREN] = ACTIONS(2183), - [anon_sym___global] = ACTIONS(2183), - [anon_sym_type] = ACTIONS(2183), - [anon_sym_PIPE] = ACTIONS(2183), - [anon_sym_fn] = ACTIONS(2183), - [anon_sym_PLUS] = ACTIONS(2183), - [anon_sym_DASH] = ACTIONS(2183), - [anon_sym_STAR] = ACTIONS(2183), - [anon_sym_SLASH] = ACTIONS(2183), - [anon_sym_PERCENT] = ACTIONS(2183), - [anon_sym_LT] = ACTIONS(2183), - [anon_sym_GT] = ACTIONS(2183), - [anon_sym_EQ_EQ] = ACTIONS(2183), - [anon_sym_BANG_EQ] = ACTIONS(2183), - [anon_sym_LT_EQ] = ACTIONS(2183), - [anon_sym_GT_EQ] = ACTIONS(2183), - [anon_sym_LBRACK] = ACTIONS(2181), - [anon_sym_struct] = ACTIONS(2183), - [anon_sym_union] = ACTIONS(2183), - [anon_sym_pub] = ACTIONS(2183), - [anon_sym_mut] = ACTIONS(2183), - [anon_sym_enum] = ACTIONS(2183), - [anon_sym_interface] = ACTIONS(2183), - [anon_sym_PLUS_PLUS] = ACTIONS(2183), - [anon_sym_DASH_DASH] = ACTIONS(2183), - [anon_sym_QMARK] = ACTIONS(2183), - [anon_sym_BANG] = ACTIONS(2183), - [anon_sym_go] = ACTIONS(2183), - [anon_sym_spawn] = ACTIONS(2183), - [anon_sym_json_DOTdecode] = ACTIONS(2183), - [anon_sym_LBRACK2] = ACTIONS(2183), - [anon_sym_TILDE] = ACTIONS(2183), - [anon_sym_CARET] = ACTIONS(2183), - [anon_sym_AMP] = ACTIONS(2183), - [anon_sym_LT_DASH] = ACTIONS(2183), - [anon_sym_LT_LT] = ACTIONS(2183), - [anon_sym_GT_GT] = ACTIONS(2183), - [anon_sym_GT_GT_GT] = ACTIONS(2183), - [anon_sym_AMP_CARET] = ACTIONS(2183), - [anon_sym_AMP_AMP] = ACTIONS(2183), - [anon_sym_PIPE_PIPE] = ACTIONS(2183), - [anon_sym_or] = ACTIONS(2183), - [sym_none] = ACTIONS(2183), - [sym_true] = ACTIONS(2183), - [sym_false] = ACTIONS(2183), - [sym_nil] = ACTIONS(2183), - [anon_sym_QMARK_DOT] = ACTIONS(2183), - [anon_sym_POUND_LBRACK] = ACTIONS(2183), - [anon_sym_if] = ACTIONS(2183), - [anon_sym_DOLLARif] = ACTIONS(2183), - [anon_sym_is] = ACTIONS(2183), - [anon_sym_BANGis] = ACTIONS(2183), - [anon_sym_in] = ACTIONS(2183), - [anon_sym_BANGin] = ACTIONS(2183), - [anon_sym_match] = ACTIONS(2183), - [anon_sym_select] = ACTIONS(2183), - [anon_sym_lock] = ACTIONS(2183), - [anon_sym_rlock] = ACTIONS(2183), - [anon_sym_unsafe] = ACTIONS(2183), - [anon_sym_sql] = ACTIONS(2183), - [sym_int_literal] = ACTIONS(2183), - [sym_float_literal] = ACTIONS(2183), - [sym_rune_literal] = ACTIONS(2183), - [sym_pseudo_compile_time_identifier] = ACTIONS(2183), - [anon_sym_shared] = ACTIONS(2183), - [anon_sym_map_LBRACK] = ACTIONS(2183), - [anon_sym_chan] = ACTIONS(2183), - [anon_sym_thread] = ACTIONS(2183), - [anon_sym_atomic] = ACTIONS(2183), - [anon_sym_assert] = ACTIONS(2183), - [anon_sym_defer] = ACTIONS(2183), - [anon_sym_goto] = ACTIONS(2183), - [anon_sym_break] = ACTIONS(2183), - [anon_sym_continue] = ACTIONS(2183), - [anon_sym_return] = ACTIONS(2183), - [anon_sym_DOLLARfor] = ACTIONS(2183), - [anon_sym_for] = ACTIONS(2183), - [anon_sym_POUND] = ACTIONS(2183), - [anon_sym_asm] = ACTIONS(2183), - [anon_sym_AT_LBRACK] = ACTIONS(2183), - [sym___double_quote] = ACTIONS(2183), - [sym___single_quote] = ACTIONS(2183), - [sym___c_double_quote] = ACTIONS(2183), - [sym___c_single_quote] = ACTIONS(2183), - [sym___r_double_quote] = ACTIONS(2183), - [sym___r_single_quote] = ACTIONS(2183), + [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_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), }, [1045] = { [sym_line_comment] = STATE(1045), [sym_block_comment] = STATE(1045), - [ts_builtin_sym_end] = ACTIONS(2481), - [sym_identifier] = ACTIONS(2483), - [anon_sym_LF] = ACTIONS(2483), - [anon_sym_CR] = ACTIONS(2483), - [anon_sym_CR_LF] = ACTIONS(2483), + [ts_builtin_sym_end] = ACTIONS(2113), + [sym_identifier] = ACTIONS(2115), + [anon_sym_LF] = ACTIONS(2115), + [anon_sym_CR] = ACTIONS(2115), + [anon_sym_CR_LF] = ACTIONS(2115), [anon_sym_SLASH_SLASH] = ACTIONS(497), [anon_sym_SLASH_STAR] = ACTIONS(499), - [anon_sym_DOT] = ACTIONS(2483), - [anon_sym_as] = ACTIONS(2483), - [anon_sym_LBRACE] = ACTIONS(2483), - [anon_sym_COMMA] = ACTIONS(2483), - [anon_sym_const] = ACTIONS(2483), - [anon_sym_LPAREN] = ACTIONS(2483), - [anon_sym___global] = ACTIONS(2483), - [anon_sym_type] = ACTIONS(2483), - [anon_sym_PIPE] = ACTIONS(2483), - [anon_sym_fn] = ACTIONS(2483), - [anon_sym_PLUS] = ACTIONS(2483), - [anon_sym_DASH] = ACTIONS(2483), - [anon_sym_STAR] = ACTIONS(2483), - [anon_sym_SLASH] = ACTIONS(2483), - [anon_sym_PERCENT] = ACTIONS(2483), - [anon_sym_LT] = ACTIONS(2483), - [anon_sym_GT] = ACTIONS(2483), - [anon_sym_EQ_EQ] = ACTIONS(2483), - [anon_sym_BANG_EQ] = ACTIONS(2483), - [anon_sym_LT_EQ] = ACTIONS(2483), - [anon_sym_GT_EQ] = ACTIONS(2483), - [anon_sym_LBRACK] = ACTIONS(2481), - [anon_sym_struct] = ACTIONS(2483), - [anon_sym_union] = ACTIONS(2483), - [anon_sym_pub] = ACTIONS(2483), - [anon_sym_mut] = ACTIONS(2483), - [anon_sym_enum] = ACTIONS(2483), - [anon_sym_interface] = ACTIONS(2483), - [anon_sym_PLUS_PLUS] = ACTIONS(2483), - [anon_sym_DASH_DASH] = ACTIONS(2483), - [anon_sym_QMARK] = ACTIONS(2483), - [anon_sym_BANG] = ACTIONS(2483), - [anon_sym_go] = ACTIONS(2483), - [anon_sym_spawn] = ACTIONS(2483), - [anon_sym_json_DOTdecode] = ACTIONS(2483), - [anon_sym_LBRACK2] = ACTIONS(2483), - [anon_sym_TILDE] = ACTIONS(2483), - [anon_sym_CARET] = ACTIONS(2483), - [anon_sym_AMP] = ACTIONS(2483), - [anon_sym_LT_DASH] = ACTIONS(2483), - [anon_sym_LT_LT] = ACTIONS(2483), - [anon_sym_GT_GT] = ACTIONS(2483), - [anon_sym_GT_GT_GT] = ACTIONS(2483), - [anon_sym_AMP_CARET] = ACTIONS(2483), - [anon_sym_AMP_AMP] = ACTIONS(2483), - [anon_sym_PIPE_PIPE] = ACTIONS(2483), - [anon_sym_or] = ACTIONS(2483), - [sym_none] = ACTIONS(2483), - [sym_true] = ACTIONS(2483), - [sym_false] = ACTIONS(2483), - [sym_nil] = ACTIONS(2483), - [anon_sym_QMARK_DOT] = ACTIONS(2483), - [anon_sym_POUND_LBRACK] = ACTIONS(2483), - [anon_sym_if] = ACTIONS(2483), - [anon_sym_DOLLARif] = ACTIONS(2483), - [anon_sym_is] = ACTIONS(2483), - [anon_sym_BANGis] = ACTIONS(2483), - [anon_sym_in] = ACTIONS(2483), - [anon_sym_BANGin] = ACTIONS(2483), - [anon_sym_match] = ACTIONS(2483), - [anon_sym_select] = ACTIONS(2483), - [anon_sym_lock] = ACTIONS(2483), - [anon_sym_rlock] = ACTIONS(2483), - [anon_sym_unsafe] = ACTIONS(2483), - [anon_sym_sql] = ACTIONS(2483), - [sym_int_literal] = ACTIONS(2483), - [sym_float_literal] = ACTIONS(2483), - [sym_rune_literal] = ACTIONS(2483), - [sym_pseudo_compile_time_identifier] = ACTIONS(2483), - [anon_sym_shared] = ACTIONS(2483), - [anon_sym_map_LBRACK] = ACTIONS(2483), - [anon_sym_chan] = ACTIONS(2483), - [anon_sym_thread] = ACTIONS(2483), - [anon_sym_atomic] = ACTIONS(2483), - [anon_sym_assert] = ACTIONS(2483), - [anon_sym_defer] = ACTIONS(2483), - [anon_sym_goto] = ACTIONS(2483), - [anon_sym_break] = ACTIONS(2483), - [anon_sym_continue] = ACTIONS(2483), - [anon_sym_return] = ACTIONS(2483), - [anon_sym_DOLLARfor] = ACTIONS(2483), - [anon_sym_for] = ACTIONS(2483), - [anon_sym_POUND] = ACTIONS(2483), - [anon_sym_asm] = ACTIONS(2483), - [anon_sym_AT_LBRACK] = ACTIONS(2483), - [sym___double_quote] = ACTIONS(2483), - [sym___single_quote] = ACTIONS(2483), - [sym___c_double_quote] = ACTIONS(2483), - [sym___c_single_quote] = ACTIONS(2483), - [sym___r_double_quote] = ACTIONS(2483), - [sym___r_single_quote] = ACTIONS(2483), + [anon_sym_DOT] = ACTIONS(2115), + [anon_sym_as] = ACTIONS(2115), + [anon_sym_LBRACE] = ACTIONS(2115), + [anon_sym_COMMA] = ACTIONS(2115), + [anon_sym_const] = ACTIONS(2115), + [anon_sym_LPAREN] = ACTIONS(2115), + [anon_sym___global] = ACTIONS(2115), + [anon_sym_type] = ACTIONS(2115), + [anon_sym_PIPE] = ACTIONS(2115), + [anon_sym_fn] = ACTIONS(2115), + [anon_sym_PLUS] = ACTIONS(2115), + [anon_sym_DASH] = ACTIONS(2115), + [anon_sym_STAR] = ACTIONS(2115), + [anon_sym_SLASH] = ACTIONS(2115), + [anon_sym_PERCENT] = ACTIONS(2115), + [anon_sym_LT] = ACTIONS(2115), + [anon_sym_GT] = ACTIONS(2115), + [anon_sym_EQ_EQ] = ACTIONS(2115), + [anon_sym_BANG_EQ] = ACTIONS(2115), + [anon_sym_LT_EQ] = ACTIONS(2115), + [anon_sym_GT_EQ] = ACTIONS(2115), + [anon_sym_LBRACK] = ACTIONS(2113), + [anon_sym_struct] = ACTIONS(2115), + [anon_sym_union] = ACTIONS(2115), + [anon_sym_pub] = ACTIONS(2115), + [anon_sym_mut] = ACTIONS(2115), + [anon_sym_enum] = ACTIONS(2115), + [anon_sym_interface] = ACTIONS(2115), + [anon_sym_PLUS_PLUS] = ACTIONS(2115), + [anon_sym_DASH_DASH] = ACTIONS(2115), + [anon_sym_QMARK] = ACTIONS(2115), + [anon_sym_BANG] = ACTIONS(2115), + [anon_sym_go] = ACTIONS(2115), + [anon_sym_spawn] = ACTIONS(2115), + [anon_sym_json_DOTdecode] = ACTIONS(2115), + [anon_sym_LBRACK2] = ACTIONS(2115), + [anon_sym_TILDE] = ACTIONS(2115), + [anon_sym_CARET] = ACTIONS(2115), + [anon_sym_AMP] = ACTIONS(2115), + [anon_sym_LT_DASH] = ACTIONS(2115), + [anon_sym_LT_LT] = ACTIONS(2115), + [anon_sym_GT_GT] = ACTIONS(2115), + [anon_sym_GT_GT_GT] = ACTIONS(2115), + [anon_sym_AMP_CARET] = ACTIONS(2115), + [anon_sym_AMP_AMP] = ACTIONS(2115), + [anon_sym_PIPE_PIPE] = ACTIONS(2115), + [anon_sym_or] = ACTIONS(2115), + [sym_none] = ACTIONS(2115), + [sym_true] = ACTIONS(2115), + [sym_false] = ACTIONS(2115), + [sym_nil] = ACTIONS(2115), + [anon_sym_QMARK_DOT] = ACTIONS(2115), + [anon_sym_POUND_LBRACK] = ACTIONS(2115), + [anon_sym_if] = ACTIONS(2115), + [anon_sym_DOLLARif] = ACTIONS(2115), + [anon_sym_is] = ACTIONS(2115), + [anon_sym_BANGis] = ACTIONS(2115), + [anon_sym_in] = ACTIONS(2115), + [anon_sym_BANGin] = ACTIONS(2115), + [anon_sym_match] = ACTIONS(2115), + [anon_sym_select] = ACTIONS(2115), + [anon_sym_lock] = ACTIONS(2115), + [anon_sym_rlock] = ACTIONS(2115), + [anon_sym_unsafe] = ACTIONS(2115), + [anon_sym_sql] = ACTIONS(2115), + [sym_int_literal] = ACTIONS(2115), + [sym_float_literal] = ACTIONS(2115), + [sym_rune_literal] = ACTIONS(2115), + [sym_pseudo_compile_time_identifier] = ACTIONS(2115), + [anon_sym_shared] = ACTIONS(2115), + [anon_sym_map_LBRACK] = ACTIONS(2115), + [anon_sym_chan] = ACTIONS(2115), + [anon_sym_thread] = ACTIONS(2115), + [anon_sym_atomic] = ACTIONS(2115), + [anon_sym_assert] = ACTIONS(2115), + [anon_sym_defer] = ACTIONS(2115), + [anon_sym_goto] = ACTIONS(2115), + [anon_sym_break] = ACTIONS(2115), + [anon_sym_continue] = ACTIONS(2115), + [anon_sym_return] = ACTIONS(2115), + [anon_sym_DOLLARfor] = ACTIONS(2115), + [anon_sym_for] = ACTIONS(2115), + [anon_sym_POUND] = ACTIONS(2115), + [anon_sym_asm] = ACTIONS(2115), + [anon_sym_AT_LBRACK] = ACTIONS(2115), + [sym___double_quote] = ACTIONS(2115), + [sym___single_quote] = ACTIONS(2115), + [sym___c_double_quote] = ACTIONS(2115), + [sym___c_single_quote] = ACTIONS(2115), + [sym___r_double_quote] = ACTIONS(2115), + [sym___r_single_quote] = ACTIONS(2115), }, [1046] = { [sym_line_comment] = STATE(1046), [sym_block_comment] = STATE(1046), - [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(2694), + [sym_identifier] = ACTIONS(2696), + [anon_sym_LF] = ACTIONS(2696), + [anon_sym_CR] = ACTIONS(2696), + [anon_sym_CR_LF] = ACTIONS(2696), [anon_sym_SLASH_SLASH] = ACTIONS(497), [anon_sym_SLASH_STAR] = ACTIONS(499), - [anon_sym_DOT] = ACTIONS(2763), - [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(2696), + [anon_sym_as] = ACTIONS(2696), + [anon_sym_LBRACE] = ACTIONS(2696), + [anon_sym_COMMA] = ACTIONS(2696), + [anon_sym_const] = ACTIONS(2696), + [anon_sym_LPAREN] = ACTIONS(2696), + [anon_sym___global] = ACTIONS(2696), + [anon_sym_type] = ACTIONS(2696), + [anon_sym_PIPE] = ACTIONS(2696), + [anon_sym_fn] = ACTIONS(2696), + [anon_sym_PLUS] = ACTIONS(2696), + [anon_sym_DASH] = ACTIONS(2696), + [anon_sym_STAR] = ACTIONS(2696), + [anon_sym_SLASH] = ACTIONS(2696), + [anon_sym_PERCENT] = ACTIONS(2696), + [anon_sym_LT] = ACTIONS(2696), + [anon_sym_GT] = ACTIONS(2696), + [anon_sym_EQ_EQ] = ACTIONS(2696), + [anon_sym_BANG_EQ] = ACTIONS(2696), + [anon_sym_LT_EQ] = ACTIONS(2696), + [anon_sym_GT_EQ] = ACTIONS(2696), + [anon_sym_LBRACK] = ACTIONS(2694), + [anon_sym_struct] = ACTIONS(2696), + [anon_sym_union] = ACTIONS(2696), + [anon_sym_pub] = ACTIONS(2696), + [anon_sym_mut] = ACTIONS(2696), + [anon_sym_enum] = ACTIONS(2696), + [anon_sym_interface] = ACTIONS(2696), + [anon_sym_PLUS_PLUS] = ACTIONS(2696), + [anon_sym_DASH_DASH] = ACTIONS(2696), + [anon_sym_QMARK] = ACTIONS(2696), + [anon_sym_BANG] = ACTIONS(2696), + [anon_sym_go] = ACTIONS(2696), + [anon_sym_spawn] = ACTIONS(2696), + [anon_sym_json_DOTdecode] = ACTIONS(2696), + [anon_sym_LBRACK2] = ACTIONS(2696), + [anon_sym_TILDE] = ACTIONS(2696), + [anon_sym_CARET] = ACTIONS(2696), + [anon_sym_AMP] = ACTIONS(2696), + [anon_sym_LT_DASH] = ACTIONS(2696), + [anon_sym_LT_LT] = ACTIONS(2696), + [anon_sym_GT_GT] = ACTIONS(2696), + [anon_sym_GT_GT_GT] = ACTIONS(2696), + [anon_sym_AMP_CARET] = ACTIONS(2696), + [anon_sym_AMP_AMP] = ACTIONS(2696), + [anon_sym_PIPE_PIPE] = ACTIONS(2696), + [anon_sym_or] = ACTIONS(2696), + [sym_none] = ACTIONS(2696), + [sym_true] = ACTIONS(2696), + [sym_false] = ACTIONS(2696), + [sym_nil] = ACTIONS(2696), + [anon_sym_QMARK_DOT] = ACTIONS(2696), + [anon_sym_POUND_LBRACK] = ACTIONS(2696), + [anon_sym_if] = ACTIONS(2696), + [anon_sym_DOLLARif] = ACTIONS(2696), + [anon_sym_is] = ACTIONS(2696), + [anon_sym_BANGis] = ACTIONS(2696), + [anon_sym_in] = ACTIONS(2696), + [anon_sym_BANGin] = ACTIONS(2696), + [anon_sym_match] = ACTIONS(2696), + [anon_sym_select] = ACTIONS(2696), + [anon_sym_lock] = ACTIONS(2696), + [anon_sym_rlock] = ACTIONS(2696), + [anon_sym_unsafe] = ACTIONS(2696), + [anon_sym_sql] = ACTIONS(2696), + [sym_int_literal] = ACTIONS(2696), + [sym_float_literal] = ACTIONS(2696), + [sym_rune_literal] = ACTIONS(2696), + [sym_pseudo_compile_time_identifier] = ACTIONS(2696), + [anon_sym_shared] = ACTIONS(2696), + [anon_sym_map_LBRACK] = ACTIONS(2696), + [anon_sym_chan] = ACTIONS(2696), + [anon_sym_thread] = ACTIONS(2696), + [anon_sym_atomic] = ACTIONS(2696), + [anon_sym_assert] = ACTIONS(2696), + [anon_sym_defer] = ACTIONS(2696), + [anon_sym_goto] = ACTIONS(2696), + [anon_sym_break] = ACTIONS(2696), + [anon_sym_continue] = ACTIONS(2696), + [anon_sym_return] = ACTIONS(2696), + [anon_sym_DOLLARfor] = ACTIONS(2696), + [anon_sym_for] = ACTIONS(2696), + [anon_sym_POUND] = ACTIONS(2696), + [anon_sym_asm] = ACTIONS(2696), + [anon_sym_AT_LBRACK] = ACTIONS(2696), + [sym___double_quote] = ACTIONS(2696), + [sym___single_quote] = ACTIONS(2696), + [sym___c_double_quote] = ACTIONS(2696), + [sym___c_single_quote] = ACTIONS(2696), + [sym___r_double_quote] = ACTIONS(2696), + [sym___r_single_quote] = ACTIONS(2696), }, [1047] = { [sym_line_comment] = STATE(1047), [sym_block_comment] = STATE(1047), - [ts_builtin_sym_end] = ACTIONS(2671), - [sym_identifier] = ACTIONS(2673), - [anon_sym_LF] = ACTIONS(2673), - [anon_sym_CR] = ACTIONS(2673), - [anon_sym_CR_LF] = ACTIONS(2673), + [ts_builtin_sym_end] = ACTIONS(3056), + [sym_identifier] = ACTIONS(3058), + [anon_sym_LF] = ACTIONS(3058), + [anon_sym_CR] = ACTIONS(3058), + [anon_sym_CR_LF] = ACTIONS(3058), [anon_sym_SLASH_SLASH] = ACTIONS(497), [anon_sym_SLASH_STAR] = ACTIONS(499), - [anon_sym_DOT] = ACTIONS(2673), - [anon_sym_as] = ACTIONS(2673), - [anon_sym_LBRACE] = ACTIONS(2673), - [anon_sym_COMMA] = ACTIONS(2673), - [anon_sym_const] = ACTIONS(2673), - [anon_sym_LPAREN] = ACTIONS(2673), - [anon_sym___global] = ACTIONS(2673), - [anon_sym_type] = ACTIONS(2673), - [anon_sym_PIPE] = ACTIONS(2673), - [anon_sym_fn] = ACTIONS(2673), - [anon_sym_PLUS] = ACTIONS(2673), - [anon_sym_DASH] = ACTIONS(2673), - [anon_sym_STAR] = ACTIONS(2673), - [anon_sym_SLASH] = ACTIONS(2673), - [anon_sym_PERCENT] = ACTIONS(2673), - [anon_sym_LT] = ACTIONS(2673), - [anon_sym_GT] = ACTIONS(2673), - [anon_sym_EQ_EQ] = ACTIONS(2673), - [anon_sym_BANG_EQ] = ACTIONS(2673), - [anon_sym_LT_EQ] = ACTIONS(2673), - [anon_sym_GT_EQ] = ACTIONS(2673), - [anon_sym_LBRACK] = ACTIONS(2671), - [anon_sym_struct] = ACTIONS(2673), - [anon_sym_union] = ACTIONS(2673), - [anon_sym_pub] = ACTIONS(2673), - [anon_sym_mut] = ACTIONS(2673), - [anon_sym_enum] = ACTIONS(2673), - [anon_sym_interface] = ACTIONS(2673), - [anon_sym_PLUS_PLUS] = ACTIONS(2673), - [anon_sym_DASH_DASH] = ACTIONS(2673), - [anon_sym_QMARK] = ACTIONS(2673), - [anon_sym_BANG] = ACTIONS(2673), - [anon_sym_go] = ACTIONS(2673), - [anon_sym_spawn] = ACTIONS(2673), - [anon_sym_json_DOTdecode] = ACTIONS(2673), - [anon_sym_LBRACK2] = ACTIONS(2673), - [anon_sym_TILDE] = ACTIONS(2673), - [anon_sym_CARET] = ACTIONS(2673), - [anon_sym_AMP] = ACTIONS(2673), - [anon_sym_LT_DASH] = ACTIONS(2673), - [anon_sym_LT_LT] = ACTIONS(2673), - [anon_sym_GT_GT] = ACTIONS(2673), - [anon_sym_GT_GT_GT] = ACTIONS(2673), - [anon_sym_AMP_CARET] = ACTIONS(2673), - [anon_sym_AMP_AMP] = ACTIONS(2673), - [anon_sym_PIPE_PIPE] = ACTIONS(2673), - [anon_sym_or] = ACTIONS(2673), - [sym_none] = ACTIONS(2673), - [sym_true] = ACTIONS(2673), - [sym_false] = ACTIONS(2673), - [sym_nil] = ACTIONS(2673), - [anon_sym_QMARK_DOT] = ACTIONS(2673), - [anon_sym_POUND_LBRACK] = ACTIONS(2673), - [anon_sym_if] = ACTIONS(2673), - [anon_sym_DOLLARif] = ACTIONS(2673), - [anon_sym_is] = ACTIONS(2673), - [anon_sym_BANGis] = ACTIONS(2673), - [anon_sym_in] = ACTIONS(2673), - [anon_sym_BANGin] = ACTIONS(2673), - [anon_sym_match] = ACTIONS(2673), - [anon_sym_select] = ACTIONS(2673), - [anon_sym_lock] = ACTIONS(2673), - [anon_sym_rlock] = ACTIONS(2673), - [anon_sym_unsafe] = ACTIONS(2673), - [anon_sym_sql] = ACTIONS(2673), - [sym_int_literal] = ACTIONS(2673), - [sym_float_literal] = ACTIONS(2673), - [sym_rune_literal] = ACTIONS(2673), - [sym_pseudo_compile_time_identifier] = ACTIONS(2673), - [anon_sym_shared] = ACTIONS(2673), - [anon_sym_map_LBRACK] = ACTIONS(2673), - [anon_sym_chan] = ACTIONS(2673), - [anon_sym_thread] = ACTIONS(2673), - [anon_sym_atomic] = ACTIONS(2673), - [anon_sym_assert] = ACTIONS(2673), - [anon_sym_defer] = ACTIONS(2673), - [anon_sym_goto] = ACTIONS(2673), - [anon_sym_break] = ACTIONS(2673), - [anon_sym_continue] = ACTIONS(2673), - [anon_sym_return] = ACTIONS(2673), - [anon_sym_DOLLARfor] = ACTIONS(2673), - [anon_sym_for] = ACTIONS(2673), - [anon_sym_POUND] = ACTIONS(2673), - [anon_sym_asm] = ACTIONS(2673), - [anon_sym_AT_LBRACK] = ACTIONS(2673), - [sym___double_quote] = ACTIONS(2673), - [sym___single_quote] = ACTIONS(2673), - [sym___c_double_quote] = ACTIONS(2673), - [sym___c_single_quote] = ACTIONS(2673), - [sym___r_double_quote] = ACTIONS(2673), - [sym___r_single_quote] = ACTIONS(2673), + [anon_sym_DOT] = ACTIONS(3058), + [anon_sym_as] = ACTIONS(3058), + [anon_sym_LBRACE] = ACTIONS(3058), + [anon_sym_COMMA] = ACTIONS(3058), + [anon_sym_const] = ACTIONS(3058), + [anon_sym_LPAREN] = ACTIONS(3058), + [anon_sym___global] = ACTIONS(3058), + [anon_sym_type] = ACTIONS(3058), + [anon_sym_PIPE] = ACTIONS(3058), + [anon_sym_fn] = ACTIONS(3058), + [anon_sym_PLUS] = ACTIONS(3058), + [anon_sym_DASH] = ACTIONS(3058), + [anon_sym_STAR] = ACTIONS(3058), + [anon_sym_SLASH] = ACTIONS(3058), + [anon_sym_PERCENT] = ACTIONS(3058), + [anon_sym_LT] = ACTIONS(3058), + [anon_sym_GT] = ACTIONS(3058), + [anon_sym_EQ_EQ] = ACTIONS(3058), + [anon_sym_BANG_EQ] = ACTIONS(3058), + [anon_sym_LT_EQ] = ACTIONS(3058), + [anon_sym_GT_EQ] = ACTIONS(3058), + [anon_sym_LBRACK] = ACTIONS(3056), + [anon_sym_struct] = ACTIONS(3058), + [anon_sym_union] = ACTIONS(3058), + [anon_sym_pub] = ACTIONS(3058), + [anon_sym_mut] = ACTIONS(3058), + [anon_sym_enum] = ACTIONS(3058), + [anon_sym_interface] = ACTIONS(3058), + [anon_sym_PLUS_PLUS] = ACTIONS(3058), + [anon_sym_DASH_DASH] = ACTIONS(3058), + [anon_sym_QMARK] = ACTIONS(3058), + [anon_sym_BANG] = ACTIONS(3058), + [anon_sym_go] = ACTIONS(3058), + [anon_sym_spawn] = ACTIONS(3058), + [anon_sym_json_DOTdecode] = ACTIONS(3058), + [anon_sym_LBRACK2] = ACTIONS(3058), + [anon_sym_TILDE] = ACTIONS(3058), + [anon_sym_CARET] = ACTIONS(3058), + [anon_sym_AMP] = ACTIONS(3058), + [anon_sym_LT_DASH] = ACTIONS(3058), + [anon_sym_LT_LT] = ACTIONS(3058), + [anon_sym_GT_GT] = ACTIONS(3058), + [anon_sym_GT_GT_GT] = ACTIONS(3058), + [anon_sym_AMP_CARET] = ACTIONS(3058), + [anon_sym_AMP_AMP] = ACTIONS(3058), + [anon_sym_PIPE_PIPE] = ACTIONS(3058), + [anon_sym_or] = ACTIONS(3058), + [sym_none] = ACTIONS(3058), + [sym_true] = ACTIONS(3058), + [sym_false] = ACTIONS(3058), + [sym_nil] = ACTIONS(3058), + [anon_sym_QMARK_DOT] = ACTIONS(3058), + [anon_sym_POUND_LBRACK] = ACTIONS(3058), + [anon_sym_if] = ACTIONS(3058), + [anon_sym_DOLLARif] = ACTIONS(3058), + [anon_sym_is] = ACTIONS(3058), + [anon_sym_BANGis] = ACTIONS(3058), + [anon_sym_in] = ACTIONS(3058), + [anon_sym_BANGin] = ACTIONS(3058), + [anon_sym_match] = ACTIONS(3058), + [anon_sym_select] = ACTIONS(3058), + [anon_sym_lock] = ACTIONS(3058), + [anon_sym_rlock] = ACTIONS(3058), + [anon_sym_unsafe] = ACTIONS(3058), + [anon_sym_sql] = ACTIONS(3058), + [sym_int_literal] = ACTIONS(3058), + [sym_float_literal] = ACTIONS(3058), + [sym_rune_literal] = ACTIONS(3058), + [sym_pseudo_compile_time_identifier] = ACTIONS(3058), + [anon_sym_shared] = ACTIONS(3058), + [anon_sym_map_LBRACK] = ACTIONS(3058), + [anon_sym_chan] = ACTIONS(3058), + [anon_sym_thread] = ACTIONS(3058), + [anon_sym_atomic] = ACTIONS(3058), + [anon_sym_assert] = ACTIONS(3058), + [anon_sym_defer] = ACTIONS(3058), + [anon_sym_goto] = ACTIONS(3058), + [anon_sym_break] = ACTIONS(3058), + [anon_sym_continue] = ACTIONS(3058), + [anon_sym_return] = ACTIONS(3058), + [anon_sym_DOLLARfor] = ACTIONS(3058), + [anon_sym_for] = ACTIONS(3058), + [anon_sym_POUND] = ACTIONS(3058), + [anon_sym_asm] = ACTIONS(3058), + [anon_sym_AT_LBRACK] = ACTIONS(3058), + [sym___double_quote] = ACTIONS(3058), + [sym___single_quote] = ACTIONS(3058), + [sym___c_double_quote] = ACTIONS(3058), + [sym___c_single_quote] = ACTIONS(3058), + [sym___r_double_quote] = ACTIONS(3058), + [sym___r_single_quote] = ACTIONS(3058), }, [1048] = { [sym_line_comment] = STATE(1048), [sym_block_comment] = STATE(1048), - [ts_builtin_sym_end] = ACTIONS(2661), - [sym_identifier] = ACTIONS(2663), - [anon_sym_LF] = ACTIONS(2663), - [anon_sym_CR] = ACTIONS(2663), - [anon_sym_CR_LF] = ACTIONS(2663), + [ts_builtin_sym_end] = ACTIONS(3066), + [sym_identifier] = ACTIONS(3068), + [anon_sym_LF] = ACTIONS(3068), + [anon_sym_CR] = ACTIONS(3068), + [anon_sym_CR_LF] = ACTIONS(3068), [anon_sym_SLASH_SLASH] = ACTIONS(497), [anon_sym_SLASH_STAR] = ACTIONS(499), - [anon_sym_DOT] = ACTIONS(2663), - [anon_sym_as] = ACTIONS(2663), - [anon_sym_LBRACE] = ACTIONS(2663), - [anon_sym_COMMA] = ACTIONS(1951), - [anon_sym_const] = ACTIONS(2663), - [anon_sym_LPAREN] = ACTIONS(2663), - [anon_sym___global] = ACTIONS(2663), - [anon_sym_type] = ACTIONS(2663), - [anon_sym_PIPE] = ACTIONS(2663), - [anon_sym_fn] = ACTIONS(2663), - [anon_sym_PLUS] = ACTIONS(2663), - [anon_sym_DASH] = ACTIONS(2663), - [anon_sym_STAR] = ACTIONS(2663), - [anon_sym_SLASH] = ACTIONS(2663), - [anon_sym_PERCENT] = ACTIONS(2663), - [anon_sym_LT] = ACTIONS(2663), - [anon_sym_GT] = ACTIONS(2663), - [anon_sym_EQ_EQ] = ACTIONS(2663), - [anon_sym_BANG_EQ] = ACTIONS(2663), - [anon_sym_LT_EQ] = ACTIONS(2663), - [anon_sym_GT_EQ] = ACTIONS(2663), - [anon_sym_LBRACK] = ACTIONS(2661), - [anon_sym_struct] = ACTIONS(2663), - [anon_sym_union] = ACTIONS(2663), - [anon_sym_pub] = ACTIONS(2663), - [anon_sym_mut] = ACTIONS(2663), - [anon_sym_enum] = ACTIONS(2663), - [anon_sym_interface] = ACTIONS(2663), - [anon_sym_PLUS_PLUS] = ACTIONS(2663), - [anon_sym_DASH_DASH] = ACTIONS(2663), - [anon_sym_QMARK] = ACTIONS(2663), - [anon_sym_BANG] = ACTIONS(2663), - [anon_sym_go] = ACTIONS(2663), - [anon_sym_spawn] = ACTIONS(2663), - [anon_sym_json_DOTdecode] = ACTIONS(2663), - [anon_sym_LBRACK2] = ACTIONS(2663), - [anon_sym_TILDE] = ACTIONS(2663), - [anon_sym_CARET] = ACTIONS(2663), - [anon_sym_AMP] = ACTIONS(2663), - [anon_sym_LT_DASH] = ACTIONS(2663), - [anon_sym_LT_LT] = ACTIONS(2663), - [anon_sym_GT_GT] = ACTIONS(2663), - [anon_sym_GT_GT_GT] = ACTIONS(2663), - [anon_sym_AMP_CARET] = ACTIONS(2663), - [anon_sym_AMP_AMP] = ACTIONS(2663), - [anon_sym_PIPE_PIPE] = ACTIONS(2663), - [anon_sym_or] = ACTIONS(2663), - [sym_none] = ACTIONS(2663), - [sym_true] = ACTIONS(2663), - [sym_false] = ACTIONS(2663), - [sym_nil] = ACTIONS(2663), - [anon_sym_QMARK_DOT] = ACTIONS(2663), - [anon_sym_POUND_LBRACK] = ACTIONS(2663), - [anon_sym_if] = ACTIONS(2663), - [anon_sym_DOLLARif] = ACTIONS(2663), - [anon_sym_is] = ACTIONS(2663), - [anon_sym_BANGis] = ACTIONS(2663), - [anon_sym_in] = ACTIONS(2663), - [anon_sym_BANGin] = ACTIONS(2663), - [anon_sym_match] = ACTIONS(2663), - [anon_sym_select] = ACTIONS(2663), - [anon_sym_lock] = ACTIONS(2663), - [anon_sym_rlock] = ACTIONS(2663), - [anon_sym_unsafe] = ACTIONS(2663), - [anon_sym_sql] = ACTIONS(2663), - [sym_int_literal] = ACTIONS(2663), - [sym_float_literal] = ACTIONS(2663), - [sym_rune_literal] = ACTIONS(2663), - [sym_pseudo_compile_time_identifier] = ACTIONS(2663), - [anon_sym_shared] = ACTIONS(2663), - [anon_sym_map_LBRACK] = ACTIONS(2663), - [anon_sym_chan] = ACTIONS(2663), - [anon_sym_thread] = ACTIONS(2663), - [anon_sym_atomic] = ACTIONS(2663), - [anon_sym_assert] = ACTIONS(2663), - [anon_sym_defer] = ACTIONS(2663), - [anon_sym_goto] = ACTIONS(2663), - [anon_sym_break] = ACTIONS(2663), - [anon_sym_continue] = ACTIONS(2663), - [anon_sym_return] = ACTIONS(2663), - [anon_sym_DOLLARfor] = ACTIONS(2663), - [anon_sym_for] = ACTIONS(2663), - [anon_sym_POUND] = ACTIONS(2663), - [anon_sym_asm] = ACTIONS(2663), - [anon_sym_AT_LBRACK] = ACTIONS(2663), - [sym___double_quote] = ACTIONS(2663), - [sym___single_quote] = ACTIONS(2663), - [sym___c_double_quote] = ACTIONS(2663), - [sym___c_single_quote] = ACTIONS(2663), - [sym___r_double_quote] = ACTIONS(2663), - [sym___r_single_quote] = ACTIONS(2663), + [anon_sym_DOT] = ACTIONS(3068), + [anon_sym_as] = ACTIONS(3068), + [anon_sym_LBRACE] = ACTIONS(3068), + [anon_sym_COMMA] = ACTIONS(3068), + [anon_sym_const] = ACTIONS(3068), + [anon_sym_LPAREN] = ACTIONS(3068), + [anon_sym___global] = ACTIONS(3068), + [anon_sym_type] = ACTIONS(3068), + [anon_sym_PIPE] = ACTIONS(3068), + [anon_sym_fn] = ACTIONS(3068), + [anon_sym_PLUS] = ACTIONS(3068), + [anon_sym_DASH] = ACTIONS(3068), + [anon_sym_STAR] = ACTIONS(3068), + [anon_sym_SLASH] = ACTIONS(3068), + [anon_sym_PERCENT] = ACTIONS(3068), + [anon_sym_LT] = ACTIONS(3068), + [anon_sym_GT] = ACTIONS(3068), + [anon_sym_EQ_EQ] = ACTIONS(3068), + [anon_sym_BANG_EQ] = ACTIONS(3068), + [anon_sym_LT_EQ] = ACTIONS(3068), + [anon_sym_GT_EQ] = ACTIONS(3068), + [anon_sym_LBRACK] = ACTIONS(3066), + [anon_sym_struct] = ACTIONS(3068), + [anon_sym_union] = ACTIONS(3068), + [anon_sym_pub] = ACTIONS(3068), + [anon_sym_mut] = ACTIONS(3068), + [anon_sym_enum] = ACTIONS(3068), + [anon_sym_interface] = ACTIONS(3068), + [anon_sym_PLUS_PLUS] = ACTIONS(3068), + [anon_sym_DASH_DASH] = ACTIONS(3068), + [anon_sym_QMARK] = ACTIONS(3068), + [anon_sym_BANG] = ACTIONS(3068), + [anon_sym_go] = ACTIONS(3068), + [anon_sym_spawn] = ACTIONS(3068), + [anon_sym_json_DOTdecode] = ACTIONS(3068), + [anon_sym_LBRACK2] = ACTIONS(3068), + [anon_sym_TILDE] = ACTIONS(3068), + [anon_sym_CARET] = ACTIONS(3068), + [anon_sym_AMP] = ACTIONS(3068), + [anon_sym_LT_DASH] = ACTIONS(3068), + [anon_sym_LT_LT] = ACTIONS(3068), + [anon_sym_GT_GT] = ACTIONS(3068), + [anon_sym_GT_GT_GT] = ACTIONS(3068), + [anon_sym_AMP_CARET] = ACTIONS(3068), + [anon_sym_AMP_AMP] = ACTIONS(3068), + [anon_sym_PIPE_PIPE] = ACTIONS(3068), + [anon_sym_or] = ACTIONS(3068), + [sym_none] = ACTIONS(3068), + [sym_true] = ACTIONS(3068), + [sym_false] = ACTIONS(3068), + [sym_nil] = ACTIONS(3068), + [anon_sym_QMARK_DOT] = ACTIONS(3068), + [anon_sym_POUND_LBRACK] = ACTIONS(3068), + [anon_sym_if] = ACTIONS(3068), + [anon_sym_DOLLARif] = ACTIONS(3068), + [anon_sym_is] = ACTIONS(3068), + [anon_sym_BANGis] = ACTIONS(3068), + [anon_sym_in] = ACTIONS(3068), + [anon_sym_BANGin] = ACTIONS(3068), + [anon_sym_match] = ACTIONS(3068), + [anon_sym_select] = ACTIONS(3068), + [anon_sym_lock] = ACTIONS(3068), + [anon_sym_rlock] = ACTIONS(3068), + [anon_sym_unsafe] = ACTIONS(3068), + [anon_sym_sql] = ACTIONS(3068), + [sym_int_literal] = ACTIONS(3068), + [sym_float_literal] = ACTIONS(3068), + [sym_rune_literal] = ACTIONS(3068), + [sym_pseudo_compile_time_identifier] = ACTIONS(3068), + [anon_sym_shared] = ACTIONS(3068), + [anon_sym_map_LBRACK] = ACTIONS(3068), + [anon_sym_chan] = ACTIONS(3068), + [anon_sym_thread] = ACTIONS(3068), + [anon_sym_atomic] = ACTIONS(3068), + [anon_sym_assert] = ACTIONS(3068), + [anon_sym_defer] = ACTIONS(3068), + [anon_sym_goto] = ACTIONS(3068), + [anon_sym_break] = ACTIONS(3068), + [anon_sym_continue] = ACTIONS(3068), + [anon_sym_return] = ACTIONS(3068), + [anon_sym_DOLLARfor] = ACTIONS(3068), + [anon_sym_for] = ACTIONS(3068), + [anon_sym_POUND] = ACTIONS(3068), + [anon_sym_asm] = ACTIONS(3068), + [anon_sym_AT_LBRACK] = ACTIONS(3068), + [sym___double_quote] = ACTIONS(3068), + [sym___single_quote] = ACTIONS(3068), + [sym___c_double_quote] = ACTIONS(3068), + [sym___c_single_quote] = ACTIONS(3068), + [sym___r_double_quote] = ACTIONS(3068), + [sym___r_single_quote] = ACTIONS(3068), }, [1049] = { [sym_line_comment] = STATE(1049), [sym_block_comment] = STATE(1049), - [ts_builtin_sym_end] = ACTIONS(2838), - [sym_identifier] = ACTIONS(2840), - [anon_sym_LF] = ACTIONS(2840), - [anon_sym_CR] = ACTIONS(2840), - [anon_sym_CR_LF] = ACTIONS(2840), + [ts_builtin_sym_end] = ACTIONS(2267), + [sym_identifier] = ACTIONS(2269), + [anon_sym_LF] = ACTIONS(2269), + [anon_sym_CR] = ACTIONS(2269), + [anon_sym_CR_LF] = ACTIONS(2269), [anon_sym_SLASH_SLASH] = ACTIONS(497), [anon_sym_SLASH_STAR] = ACTIONS(499), - [anon_sym_DOT] = ACTIONS(2840), - [anon_sym_as] = ACTIONS(2840), - [anon_sym_LBRACE] = ACTIONS(2840), - [anon_sym_COMMA] = ACTIONS(2840), - [anon_sym_const] = ACTIONS(2840), - [anon_sym_LPAREN] = ACTIONS(2840), - [anon_sym___global] = ACTIONS(2840), - [anon_sym_type] = ACTIONS(2840), - [anon_sym_PIPE] = ACTIONS(2840), - [anon_sym_fn] = ACTIONS(2840), - [anon_sym_PLUS] = ACTIONS(2840), - [anon_sym_DASH] = ACTIONS(2840), - [anon_sym_STAR] = ACTIONS(2840), - [anon_sym_SLASH] = ACTIONS(2840), - [anon_sym_PERCENT] = ACTIONS(2840), - [anon_sym_LT] = ACTIONS(2840), - [anon_sym_GT] = ACTIONS(2840), - [anon_sym_EQ_EQ] = ACTIONS(2840), - [anon_sym_BANG_EQ] = ACTIONS(2840), - [anon_sym_LT_EQ] = ACTIONS(2840), - [anon_sym_GT_EQ] = ACTIONS(2840), - [anon_sym_LBRACK] = ACTIONS(2838), - [anon_sym_struct] = ACTIONS(2840), - [anon_sym_union] = ACTIONS(2840), - [anon_sym_pub] = ACTIONS(2840), - [anon_sym_mut] = ACTIONS(2840), - [anon_sym_enum] = ACTIONS(2840), - [anon_sym_interface] = ACTIONS(2840), - [anon_sym_PLUS_PLUS] = ACTIONS(2840), - [anon_sym_DASH_DASH] = ACTIONS(2840), - [anon_sym_QMARK] = ACTIONS(2840), - [anon_sym_BANG] = ACTIONS(2840), - [anon_sym_go] = ACTIONS(2840), - [anon_sym_spawn] = ACTIONS(2840), - [anon_sym_json_DOTdecode] = ACTIONS(2840), - [anon_sym_LBRACK2] = ACTIONS(2840), - [anon_sym_TILDE] = ACTIONS(2840), - [anon_sym_CARET] = ACTIONS(2840), - [anon_sym_AMP] = ACTIONS(2840), - [anon_sym_LT_DASH] = ACTIONS(2840), - [anon_sym_LT_LT] = ACTIONS(2840), - [anon_sym_GT_GT] = ACTIONS(2840), - [anon_sym_GT_GT_GT] = ACTIONS(2840), - [anon_sym_AMP_CARET] = ACTIONS(2840), - [anon_sym_AMP_AMP] = ACTIONS(2840), - [anon_sym_PIPE_PIPE] = ACTIONS(2840), - [anon_sym_or] = ACTIONS(2840), - [sym_none] = ACTIONS(2840), - [sym_true] = ACTIONS(2840), - [sym_false] = ACTIONS(2840), - [sym_nil] = ACTIONS(2840), - [anon_sym_QMARK_DOT] = ACTIONS(2840), - [anon_sym_POUND_LBRACK] = ACTIONS(2840), - [anon_sym_if] = ACTIONS(2840), - [anon_sym_DOLLARif] = ACTIONS(2840), - [anon_sym_is] = ACTIONS(2840), - [anon_sym_BANGis] = ACTIONS(2840), - [anon_sym_in] = ACTIONS(2840), - [anon_sym_BANGin] = ACTIONS(2840), - [anon_sym_match] = ACTIONS(2840), - [anon_sym_select] = ACTIONS(2840), - [anon_sym_lock] = ACTIONS(2840), - [anon_sym_rlock] = ACTIONS(2840), - [anon_sym_unsafe] = ACTIONS(2840), - [anon_sym_sql] = ACTIONS(2840), - [sym_int_literal] = ACTIONS(2840), - [sym_float_literal] = ACTIONS(2840), - [sym_rune_literal] = ACTIONS(2840), - [sym_pseudo_compile_time_identifier] = ACTIONS(2840), - [anon_sym_shared] = ACTIONS(2840), - [anon_sym_map_LBRACK] = ACTIONS(2840), - [anon_sym_chan] = ACTIONS(2840), - [anon_sym_thread] = ACTIONS(2840), - [anon_sym_atomic] = ACTIONS(2840), - [anon_sym_assert] = ACTIONS(2840), - [anon_sym_defer] = ACTIONS(2840), - [anon_sym_goto] = ACTIONS(2840), - [anon_sym_break] = ACTIONS(2840), - [anon_sym_continue] = ACTIONS(2840), - [anon_sym_return] = ACTIONS(2840), - [anon_sym_DOLLARfor] = ACTIONS(2840), - [anon_sym_for] = ACTIONS(2840), - [anon_sym_POUND] = ACTIONS(2840), - [anon_sym_asm] = ACTIONS(2840), - [anon_sym_AT_LBRACK] = ACTIONS(2840), - [sym___double_quote] = ACTIONS(2840), - [sym___single_quote] = ACTIONS(2840), - [sym___c_double_quote] = ACTIONS(2840), - [sym___c_single_quote] = ACTIONS(2840), - [sym___r_double_quote] = ACTIONS(2840), - [sym___r_single_quote] = ACTIONS(2840), + [anon_sym_DOT] = ACTIONS(2269), + [anon_sym_as] = ACTIONS(2269), + [anon_sym_LBRACE] = ACTIONS(2269), + [anon_sym_COMMA] = ACTIONS(2269), + [anon_sym_const] = ACTIONS(2269), + [anon_sym_LPAREN] = ACTIONS(2269), + [anon_sym___global] = ACTIONS(2269), + [anon_sym_type] = ACTIONS(2269), + [anon_sym_PIPE] = ACTIONS(2269), + [anon_sym_fn] = ACTIONS(2269), + [anon_sym_PLUS] = ACTIONS(2269), + [anon_sym_DASH] = ACTIONS(2269), + [anon_sym_STAR] = ACTIONS(2269), + [anon_sym_SLASH] = ACTIONS(2269), + [anon_sym_PERCENT] = ACTIONS(2269), + [anon_sym_LT] = ACTIONS(2269), + [anon_sym_GT] = ACTIONS(2269), + [anon_sym_EQ_EQ] = ACTIONS(2269), + [anon_sym_BANG_EQ] = ACTIONS(2269), + [anon_sym_LT_EQ] = ACTIONS(2269), + [anon_sym_GT_EQ] = ACTIONS(2269), + [anon_sym_LBRACK] = ACTIONS(2267), + [anon_sym_struct] = ACTIONS(2269), + [anon_sym_union] = ACTIONS(2269), + [anon_sym_pub] = ACTIONS(2269), + [anon_sym_mut] = ACTIONS(2269), + [anon_sym_enum] = ACTIONS(2269), + [anon_sym_interface] = ACTIONS(2269), + [anon_sym_PLUS_PLUS] = ACTIONS(2269), + [anon_sym_DASH_DASH] = ACTIONS(2269), + [anon_sym_QMARK] = ACTIONS(2269), + [anon_sym_BANG] = ACTIONS(2269), + [anon_sym_go] = ACTIONS(2269), + [anon_sym_spawn] = ACTIONS(2269), + [anon_sym_json_DOTdecode] = ACTIONS(2269), + [anon_sym_LBRACK2] = ACTIONS(2269), + [anon_sym_TILDE] = ACTIONS(2269), + [anon_sym_CARET] = ACTIONS(2269), + [anon_sym_AMP] = ACTIONS(2269), + [anon_sym_LT_DASH] = ACTIONS(2269), + [anon_sym_LT_LT] = ACTIONS(2269), + [anon_sym_GT_GT] = ACTIONS(2269), + [anon_sym_GT_GT_GT] = ACTIONS(2269), + [anon_sym_AMP_CARET] = ACTIONS(2269), + [anon_sym_AMP_AMP] = ACTIONS(2269), + [anon_sym_PIPE_PIPE] = ACTIONS(2269), + [anon_sym_or] = ACTIONS(2269), + [sym_none] = ACTIONS(2269), + [sym_true] = ACTIONS(2269), + [sym_false] = ACTIONS(2269), + [sym_nil] = ACTIONS(2269), + [anon_sym_QMARK_DOT] = ACTIONS(2269), + [anon_sym_POUND_LBRACK] = ACTIONS(2269), + [anon_sym_if] = ACTIONS(2269), + [anon_sym_DOLLARif] = ACTIONS(2269), + [anon_sym_is] = ACTIONS(2269), + [anon_sym_BANGis] = ACTIONS(2269), + [anon_sym_in] = ACTIONS(2269), + [anon_sym_BANGin] = ACTIONS(2269), + [anon_sym_match] = ACTIONS(2269), + [anon_sym_select] = ACTIONS(2269), + [anon_sym_lock] = ACTIONS(2269), + [anon_sym_rlock] = ACTIONS(2269), + [anon_sym_unsafe] = ACTIONS(2269), + [anon_sym_sql] = ACTIONS(2269), + [sym_int_literal] = ACTIONS(2269), + [sym_float_literal] = ACTIONS(2269), + [sym_rune_literal] = ACTIONS(2269), + [sym_pseudo_compile_time_identifier] = ACTIONS(2269), + [anon_sym_shared] = ACTIONS(2269), + [anon_sym_map_LBRACK] = ACTIONS(2269), + [anon_sym_chan] = ACTIONS(2269), + [anon_sym_thread] = ACTIONS(2269), + [anon_sym_atomic] = ACTIONS(2269), + [anon_sym_assert] = ACTIONS(2269), + [anon_sym_defer] = ACTIONS(2269), + [anon_sym_goto] = ACTIONS(2269), + [anon_sym_break] = ACTIONS(2269), + [anon_sym_continue] = ACTIONS(2269), + [anon_sym_return] = ACTIONS(2269), + [anon_sym_DOLLARfor] = ACTIONS(2269), + [anon_sym_for] = ACTIONS(2269), + [anon_sym_POUND] = ACTIONS(2269), + [anon_sym_asm] = ACTIONS(2269), + [anon_sym_AT_LBRACK] = ACTIONS(2269), + [sym___double_quote] = ACTIONS(2269), + [sym___single_quote] = ACTIONS(2269), + [sym___c_double_quote] = ACTIONS(2269), + [sym___c_single_quote] = ACTIONS(2269), + [sym___r_double_quote] = ACTIONS(2269), + [sym___r_single_quote] = ACTIONS(2269), }, [1050] = { [sym_line_comment] = STATE(1050), [sym_block_comment] = STATE(1050), - [ts_builtin_sym_end] = ACTIONS(2830), - [sym_identifier] = ACTIONS(2832), - [anon_sym_LF] = ACTIONS(2832), - [anon_sym_CR] = ACTIONS(2832), - [anon_sym_CR_LF] = ACTIONS(2832), + [ts_builtin_sym_end] = ACTIONS(2147), + [sym_identifier] = ACTIONS(2149), + [anon_sym_LF] = ACTIONS(2149), + [anon_sym_CR] = ACTIONS(2149), + [anon_sym_CR_LF] = ACTIONS(2149), [anon_sym_SLASH_SLASH] = ACTIONS(497), [anon_sym_SLASH_STAR] = ACTIONS(499), - [anon_sym_DOT] = ACTIONS(2832), - [anon_sym_as] = ACTIONS(2832), - [anon_sym_LBRACE] = ACTIONS(2832), - [anon_sym_COMMA] = ACTIONS(2832), - [anon_sym_const] = ACTIONS(2832), - [anon_sym_LPAREN] = ACTIONS(2832), - [anon_sym___global] = ACTIONS(2832), - [anon_sym_type] = ACTIONS(2832), - [anon_sym_PIPE] = ACTIONS(2832), - [anon_sym_fn] = ACTIONS(2832), - [anon_sym_PLUS] = ACTIONS(2832), - [anon_sym_DASH] = ACTIONS(2832), - [anon_sym_STAR] = ACTIONS(2832), - [anon_sym_SLASH] = ACTIONS(2832), - [anon_sym_PERCENT] = ACTIONS(2832), - [anon_sym_LT] = ACTIONS(2832), - [anon_sym_GT] = ACTIONS(2832), - [anon_sym_EQ_EQ] = ACTIONS(2832), - [anon_sym_BANG_EQ] = ACTIONS(2832), - [anon_sym_LT_EQ] = ACTIONS(2832), - [anon_sym_GT_EQ] = ACTIONS(2832), - [anon_sym_LBRACK] = ACTIONS(2830), - [anon_sym_struct] = ACTIONS(2832), - [anon_sym_union] = ACTIONS(2832), - [anon_sym_pub] = ACTIONS(2832), - [anon_sym_mut] = ACTIONS(2832), - [anon_sym_enum] = ACTIONS(2832), - [anon_sym_interface] = ACTIONS(2832), - [anon_sym_PLUS_PLUS] = ACTIONS(2832), - [anon_sym_DASH_DASH] = ACTIONS(2832), - [anon_sym_QMARK] = ACTIONS(2832), - [anon_sym_BANG] = ACTIONS(2832), - [anon_sym_go] = ACTIONS(2832), - [anon_sym_spawn] = ACTIONS(2832), - [anon_sym_json_DOTdecode] = ACTIONS(2832), - [anon_sym_LBRACK2] = ACTIONS(2832), - [anon_sym_TILDE] = ACTIONS(2832), - [anon_sym_CARET] = ACTIONS(2832), - [anon_sym_AMP] = ACTIONS(2832), - [anon_sym_LT_DASH] = ACTIONS(2832), - [anon_sym_LT_LT] = ACTIONS(2832), - [anon_sym_GT_GT] = ACTIONS(2832), - [anon_sym_GT_GT_GT] = ACTIONS(2832), - [anon_sym_AMP_CARET] = ACTIONS(2832), - [anon_sym_AMP_AMP] = ACTIONS(2832), - [anon_sym_PIPE_PIPE] = ACTIONS(2832), - [anon_sym_or] = ACTIONS(2832), - [sym_none] = ACTIONS(2832), - [sym_true] = ACTIONS(2832), - [sym_false] = ACTIONS(2832), - [sym_nil] = ACTIONS(2832), - [anon_sym_QMARK_DOT] = ACTIONS(2832), - [anon_sym_POUND_LBRACK] = ACTIONS(2832), - [anon_sym_if] = ACTIONS(2832), - [anon_sym_DOLLARif] = ACTIONS(2832), - [anon_sym_is] = ACTIONS(2832), - [anon_sym_BANGis] = ACTIONS(2832), - [anon_sym_in] = ACTIONS(2832), - [anon_sym_BANGin] = ACTIONS(2832), - [anon_sym_match] = ACTIONS(2832), - [anon_sym_select] = ACTIONS(2832), - [anon_sym_lock] = ACTIONS(2832), - [anon_sym_rlock] = ACTIONS(2832), - [anon_sym_unsafe] = ACTIONS(2832), - [anon_sym_sql] = ACTIONS(2832), - [sym_int_literal] = ACTIONS(2832), - [sym_float_literal] = ACTIONS(2832), - [sym_rune_literal] = ACTIONS(2832), - [sym_pseudo_compile_time_identifier] = ACTIONS(2832), - [anon_sym_shared] = ACTIONS(2832), - [anon_sym_map_LBRACK] = ACTIONS(2832), - [anon_sym_chan] = ACTIONS(2832), - [anon_sym_thread] = ACTIONS(2832), - [anon_sym_atomic] = ACTIONS(2832), - [anon_sym_assert] = ACTIONS(2832), - [anon_sym_defer] = ACTIONS(2832), - [anon_sym_goto] = ACTIONS(2832), - [anon_sym_break] = ACTIONS(2832), - [anon_sym_continue] = ACTIONS(2832), - [anon_sym_return] = ACTIONS(2832), - [anon_sym_DOLLARfor] = ACTIONS(2832), - [anon_sym_for] = ACTIONS(2832), - [anon_sym_POUND] = ACTIONS(2832), - [anon_sym_asm] = ACTIONS(2832), - [anon_sym_AT_LBRACK] = ACTIONS(2832), - [sym___double_quote] = ACTIONS(2832), - [sym___single_quote] = ACTIONS(2832), - [sym___c_double_quote] = ACTIONS(2832), - [sym___c_single_quote] = ACTIONS(2832), - [sym___r_double_quote] = ACTIONS(2832), - [sym___r_single_quote] = ACTIONS(2832), + [anon_sym_DOT] = ACTIONS(2149), + [anon_sym_as] = ACTIONS(2149), + [anon_sym_LBRACE] = ACTIONS(2149), + [anon_sym_COMMA] = ACTIONS(2149), + [anon_sym_const] = ACTIONS(2149), + [anon_sym_LPAREN] = ACTIONS(2149), + [anon_sym___global] = ACTIONS(2149), + [anon_sym_type] = ACTIONS(2149), + [anon_sym_PIPE] = ACTIONS(2149), + [anon_sym_fn] = ACTIONS(2149), + [anon_sym_PLUS] = ACTIONS(2149), + [anon_sym_DASH] = ACTIONS(2149), + [anon_sym_STAR] = ACTIONS(2149), + [anon_sym_SLASH] = ACTIONS(2149), + [anon_sym_PERCENT] = ACTIONS(2149), + [anon_sym_LT] = ACTIONS(2149), + [anon_sym_GT] = ACTIONS(2149), + [anon_sym_EQ_EQ] = ACTIONS(2149), + [anon_sym_BANG_EQ] = ACTIONS(2149), + [anon_sym_LT_EQ] = ACTIONS(2149), + [anon_sym_GT_EQ] = ACTIONS(2149), + [anon_sym_LBRACK] = ACTIONS(2147), + [anon_sym_struct] = ACTIONS(2149), + [anon_sym_union] = ACTIONS(2149), + [anon_sym_pub] = ACTIONS(2149), + [anon_sym_mut] = ACTIONS(2149), + [anon_sym_enum] = ACTIONS(2149), + [anon_sym_interface] = ACTIONS(2149), + [anon_sym_PLUS_PLUS] = ACTIONS(2149), + [anon_sym_DASH_DASH] = ACTIONS(2149), + [anon_sym_QMARK] = ACTIONS(2149), + [anon_sym_BANG] = ACTIONS(2149), + [anon_sym_go] = ACTIONS(2149), + [anon_sym_spawn] = ACTIONS(2149), + [anon_sym_json_DOTdecode] = ACTIONS(2149), + [anon_sym_LBRACK2] = ACTIONS(2149), + [anon_sym_TILDE] = ACTIONS(2149), + [anon_sym_CARET] = ACTIONS(2149), + [anon_sym_AMP] = ACTIONS(2149), + [anon_sym_LT_DASH] = ACTIONS(2149), + [anon_sym_LT_LT] = ACTIONS(2149), + [anon_sym_GT_GT] = ACTIONS(2149), + [anon_sym_GT_GT_GT] = ACTIONS(2149), + [anon_sym_AMP_CARET] = ACTIONS(2149), + [anon_sym_AMP_AMP] = ACTIONS(2149), + [anon_sym_PIPE_PIPE] = ACTIONS(2149), + [anon_sym_or] = ACTIONS(2149), + [sym_none] = ACTIONS(2149), + [sym_true] = ACTIONS(2149), + [sym_false] = ACTIONS(2149), + [sym_nil] = ACTIONS(2149), + [anon_sym_QMARK_DOT] = ACTIONS(2149), + [anon_sym_POUND_LBRACK] = ACTIONS(2149), + [anon_sym_if] = ACTIONS(2149), + [anon_sym_DOLLARif] = ACTIONS(2149), + [anon_sym_is] = ACTIONS(2149), + [anon_sym_BANGis] = ACTIONS(2149), + [anon_sym_in] = ACTIONS(2149), + [anon_sym_BANGin] = ACTIONS(2149), + [anon_sym_match] = ACTIONS(2149), + [anon_sym_select] = ACTIONS(2149), + [anon_sym_lock] = ACTIONS(2149), + [anon_sym_rlock] = ACTIONS(2149), + [anon_sym_unsafe] = ACTIONS(2149), + [anon_sym_sql] = ACTIONS(2149), + [sym_int_literal] = ACTIONS(2149), + [sym_float_literal] = ACTIONS(2149), + [sym_rune_literal] = ACTIONS(2149), + [sym_pseudo_compile_time_identifier] = ACTIONS(2149), + [anon_sym_shared] = ACTIONS(2149), + [anon_sym_map_LBRACK] = ACTIONS(2149), + [anon_sym_chan] = ACTIONS(2149), + [anon_sym_thread] = ACTIONS(2149), + [anon_sym_atomic] = ACTIONS(2149), + [anon_sym_assert] = ACTIONS(2149), + [anon_sym_defer] = ACTIONS(2149), + [anon_sym_goto] = ACTIONS(2149), + [anon_sym_break] = ACTIONS(2149), + [anon_sym_continue] = ACTIONS(2149), + [anon_sym_return] = ACTIONS(2149), + [anon_sym_DOLLARfor] = ACTIONS(2149), + [anon_sym_for] = ACTIONS(2149), + [anon_sym_POUND] = ACTIONS(2149), + [anon_sym_asm] = ACTIONS(2149), + [anon_sym_AT_LBRACK] = ACTIONS(2149), + [sym___double_quote] = ACTIONS(2149), + [sym___single_quote] = ACTIONS(2149), + [sym___c_double_quote] = ACTIONS(2149), + [sym___c_single_quote] = ACTIONS(2149), + [sym___r_double_quote] = ACTIONS(2149), + [sym___r_single_quote] = ACTIONS(2149), }, [1051] = { [sym_line_comment] = STATE(1051), [sym_block_comment] = STATE(1051), - [ts_builtin_sym_end] = ACTIONS(2844), - [sym_identifier] = ACTIONS(2846), - [anon_sym_LF] = ACTIONS(2846), - [anon_sym_CR] = ACTIONS(2846), - [anon_sym_CR_LF] = ACTIONS(2846), + [ts_builtin_sym_end] = ACTIONS(2674), + [sym_identifier] = ACTIONS(2676), + [anon_sym_LF] = ACTIONS(2676), + [anon_sym_CR] = ACTIONS(2676), + [anon_sym_CR_LF] = ACTIONS(2676), [anon_sym_SLASH_SLASH] = ACTIONS(497), [anon_sym_SLASH_STAR] = ACTIONS(499), - [anon_sym_DOT] = ACTIONS(2846), - [anon_sym_as] = ACTIONS(2846), - [anon_sym_LBRACE] = ACTIONS(2846), - [anon_sym_COMMA] = ACTIONS(2846), - [anon_sym_const] = ACTIONS(2846), - [anon_sym_LPAREN] = ACTIONS(2846), - [anon_sym___global] = ACTIONS(2846), - [anon_sym_type] = ACTIONS(2846), - [anon_sym_PIPE] = ACTIONS(2846), - [anon_sym_fn] = ACTIONS(2846), - [anon_sym_PLUS] = ACTIONS(2846), - [anon_sym_DASH] = ACTIONS(2846), - [anon_sym_STAR] = ACTIONS(2846), - [anon_sym_SLASH] = ACTIONS(2846), - [anon_sym_PERCENT] = ACTIONS(2846), - [anon_sym_LT] = ACTIONS(2846), - [anon_sym_GT] = ACTIONS(2846), - [anon_sym_EQ_EQ] = ACTIONS(2846), - [anon_sym_BANG_EQ] = ACTIONS(2846), - [anon_sym_LT_EQ] = ACTIONS(2846), - [anon_sym_GT_EQ] = ACTIONS(2846), - [anon_sym_LBRACK] = ACTIONS(2844), - [anon_sym_struct] = ACTIONS(2846), - [anon_sym_union] = ACTIONS(2846), - [anon_sym_pub] = ACTIONS(2846), - [anon_sym_mut] = ACTIONS(2846), - [anon_sym_enum] = ACTIONS(2846), - [anon_sym_interface] = ACTIONS(2846), - [anon_sym_PLUS_PLUS] = ACTIONS(2846), - [anon_sym_DASH_DASH] = ACTIONS(2846), - [anon_sym_QMARK] = ACTIONS(2846), - [anon_sym_BANG] = ACTIONS(2846), - [anon_sym_go] = ACTIONS(2846), - [anon_sym_spawn] = ACTIONS(2846), - [anon_sym_json_DOTdecode] = ACTIONS(2846), - [anon_sym_LBRACK2] = ACTIONS(2846), - [anon_sym_TILDE] = ACTIONS(2846), - [anon_sym_CARET] = ACTIONS(2846), - [anon_sym_AMP] = ACTIONS(2846), - [anon_sym_LT_DASH] = ACTIONS(2846), - [anon_sym_LT_LT] = ACTIONS(2846), - [anon_sym_GT_GT] = ACTIONS(2846), - [anon_sym_GT_GT_GT] = ACTIONS(2846), - [anon_sym_AMP_CARET] = ACTIONS(2846), - [anon_sym_AMP_AMP] = ACTIONS(2846), - [anon_sym_PIPE_PIPE] = ACTIONS(2846), - [anon_sym_or] = ACTIONS(2846), - [sym_none] = ACTIONS(2846), - [sym_true] = ACTIONS(2846), - [sym_false] = ACTIONS(2846), - [sym_nil] = ACTIONS(2846), - [anon_sym_QMARK_DOT] = ACTIONS(2846), - [anon_sym_POUND_LBRACK] = ACTIONS(2846), - [anon_sym_if] = ACTIONS(2846), - [anon_sym_DOLLARif] = ACTIONS(2846), - [anon_sym_is] = ACTIONS(2846), - [anon_sym_BANGis] = ACTIONS(2846), - [anon_sym_in] = ACTIONS(2846), - [anon_sym_BANGin] = ACTIONS(2846), - [anon_sym_match] = ACTIONS(2846), - [anon_sym_select] = ACTIONS(2846), - [anon_sym_lock] = ACTIONS(2846), - [anon_sym_rlock] = ACTIONS(2846), - [anon_sym_unsafe] = ACTIONS(2846), - [anon_sym_sql] = ACTIONS(2846), - [sym_int_literal] = ACTIONS(2846), - [sym_float_literal] = ACTIONS(2846), - [sym_rune_literal] = ACTIONS(2846), - [sym_pseudo_compile_time_identifier] = ACTIONS(2846), - [anon_sym_shared] = ACTIONS(2846), - [anon_sym_map_LBRACK] = ACTIONS(2846), - [anon_sym_chan] = ACTIONS(2846), - [anon_sym_thread] = ACTIONS(2846), - [anon_sym_atomic] = ACTIONS(2846), - [anon_sym_assert] = ACTIONS(2846), - [anon_sym_defer] = ACTIONS(2846), - [anon_sym_goto] = ACTIONS(2846), - [anon_sym_break] = ACTIONS(2846), - [anon_sym_continue] = ACTIONS(2846), - [anon_sym_return] = ACTIONS(2846), - [anon_sym_DOLLARfor] = ACTIONS(2846), - [anon_sym_for] = ACTIONS(2846), - [anon_sym_POUND] = ACTIONS(2846), - [anon_sym_asm] = ACTIONS(2846), - [anon_sym_AT_LBRACK] = ACTIONS(2846), - [sym___double_quote] = ACTIONS(2846), - [sym___single_quote] = ACTIONS(2846), - [sym___c_double_quote] = ACTIONS(2846), - [sym___c_single_quote] = ACTIONS(2846), - [sym___r_double_quote] = ACTIONS(2846), - [sym___r_single_quote] = ACTIONS(2846), + [anon_sym_DOT] = ACTIONS(2676), + [anon_sym_as] = ACTIONS(2676), + [anon_sym_LBRACE] = ACTIONS(2676), + [anon_sym_COMMA] = ACTIONS(2676), + [anon_sym_const] = ACTIONS(2676), + [anon_sym_LPAREN] = ACTIONS(2676), + [anon_sym___global] = ACTIONS(2676), + [anon_sym_type] = ACTIONS(2676), + [anon_sym_PIPE] = ACTIONS(2676), + [anon_sym_fn] = ACTIONS(2676), + [anon_sym_PLUS] = ACTIONS(2676), + [anon_sym_DASH] = ACTIONS(2676), + [anon_sym_STAR] = ACTIONS(2676), + [anon_sym_SLASH] = ACTIONS(2676), + [anon_sym_PERCENT] = ACTIONS(2676), + [anon_sym_LT] = ACTIONS(2676), + [anon_sym_GT] = ACTIONS(2676), + [anon_sym_EQ_EQ] = ACTIONS(2676), + [anon_sym_BANG_EQ] = ACTIONS(2676), + [anon_sym_LT_EQ] = ACTIONS(2676), + [anon_sym_GT_EQ] = ACTIONS(2676), + [anon_sym_LBRACK] = ACTIONS(2674), + [anon_sym_struct] = ACTIONS(2676), + [anon_sym_union] = ACTIONS(2676), + [anon_sym_pub] = ACTIONS(2676), + [anon_sym_mut] = ACTIONS(2676), + [anon_sym_enum] = ACTIONS(2676), + [anon_sym_interface] = ACTIONS(2676), + [anon_sym_PLUS_PLUS] = ACTIONS(2676), + [anon_sym_DASH_DASH] = ACTIONS(2676), + [anon_sym_QMARK] = ACTIONS(2676), + [anon_sym_BANG] = ACTIONS(2676), + [anon_sym_go] = ACTIONS(2676), + [anon_sym_spawn] = ACTIONS(2676), + [anon_sym_json_DOTdecode] = ACTIONS(2676), + [anon_sym_LBRACK2] = ACTIONS(2676), + [anon_sym_TILDE] = ACTIONS(2676), + [anon_sym_CARET] = ACTIONS(2676), + [anon_sym_AMP] = ACTIONS(2676), + [anon_sym_LT_DASH] = ACTIONS(2676), + [anon_sym_LT_LT] = ACTIONS(2676), + [anon_sym_GT_GT] = ACTIONS(2676), + [anon_sym_GT_GT_GT] = ACTIONS(2676), + [anon_sym_AMP_CARET] = ACTIONS(2676), + [anon_sym_AMP_AMP] = ACTIONS(2676), + [anon_sym_PIPE_PIPE] = ACTIONS(2676), + [anon_sym_or] = ACTIONS(2676), + [sym_none] = ACTIONS(2676), + [sym_true] = ACTIONS(2676), + [sym_false] = ACTIONS(2676), + [sym_nil] = ACTIONS(2676), + [anon_sym_QMARK_DOT] = ACTIONS(2676), + [anon_sym_POUND_LBRACK] = ACTIONS(2676), + [anon_sym_if] = ACTIONS(2676), + [anon_sym_DOLLARif] = ACTIONS(2676), + [anon_sym_is] = ACTIONS(2676), + [anon_sym_BANGis] = ACTIONS(2676), + [anon_sym_in] = ACTIONS(2676), + [anon_sym_BANGin] = ACTIONS(2676), + [anon_sym_match] = ACTIONS(2676), + [anon_sym_select] = ACTIONS(2676), + [anon_sym_lock] = ACTIONS(2676), + [anon_sym_rlock] = ACTIONS(2676), + [anon_sym_unsafe] = ACTIONS(2676), + [anon_sym_sql] = ACTIONS(2676), + [sym_int_literal] = ACTIONS(2676), + [sym_float_literal] = ACTIONS(2676), + [sym_rune_literal] = ACTIONS(2676), + [sym_pseudo_compile_time_identifier] = ACTIONS(2676), + [anon_sym_shared] = ACTIONS(2676), + [anon_sym_map_LBRACK] = ACTIONS(2676), + [anon_sym_chan] = ACTIONS(2676), + [anon_sym_thread] = ACTIONS(2676), + [anon_sym_atomic] = ACTIONS(2676), + [anon_sym_assert] = ACTIONS(2676), + [anon_sym_defer] = ACTIONS(2676), + [anon_sym_goto] = ACTIONS(2676), + [anon_sym_break] = ACTIONS(2676), + [anon_sym_continue] = ACTIONS(2676), + [anon_sym_return] = ACTIONS(2676), + [anon_sym_DOLLARfor] = ACTIONS(2676), + [anon_sym_for] = ACTIONS(2676), + [anon_sym_POUND] = ACTIONS(2676), + [anon_sym_asm] = ACTIONS(2676), + [anon_sym_AT_LBRACK] = ACTIONS(2676), + [sym___double_quote] = ACTIONS(2676), + [sym___single_quote] = ACTIONS(2676), + [sym___c_double_quote] = ACTIONS(2676), + [sym___c_single_quote] = ACTIONS(2676), + [sym___r_double_quote] = ACTIONS(2676), + [sym___r_single_quote] = ACTIONS(2676), }, [1052] = { [sym_line_comment] = STATE(1052), [sym_block_comment] = STATE(1052), - [ts_builtin_sym_end] = ACTIONS(2848), - [sym_identifier] = ACTIONS(2850), - [anon_sym_LF] = ACTIONS(2850), - [anon_sym_CR] = ACTIONS(2850), - [anon_sym_CR_LF] = ACTIONS(2850), + [ts_builtin_sym_end] = ACTIONS(2690), + [sym_identifier] = ACTIONS(2692), + [anon_sym_LF] = ACTIONS(2692), + [anon_sym_CR] = ACTIONS(2692), + [anon_sym_CR_LF] = ACTIONS(2692), [anon_sym_SLASH_SLASH] = ACTIONS(497), [anon_sym_SLASH_STAR] = ACTIONS(499), - [anon_sym_DOT] = ACTIONS(2850), - [anon_sym_as] = ACTIONS(2850), - [anon_sym_LBRACE] = ACTIONS(2850), - [anon_sym_COMMA] = ACTIONS(2850), - [anon_sym_const] = ACTIONS(2850), - [anon_sym_LPAREN] = ACTIONS(2850), - [anon_sym___global] = ACTIONS(2850), - [anon_sym_type] = ACTIONS(2850), - [anon_sym_PIPE] = ACTIONS(2850), - [anon_sym_fn] = ACTIONS(2850), - [anon_sym_PLUS] = ACTIONS(2850), - [anon_sym_DASH] = ACTIONS(2850), - [anon_sym_STAR] = ACTIONS(2850), - [anon_sym_SLASH] = ACTIONS(2850), - [anon_sym_PERCENT] = ACTIONS(2850), - [anon_sym_LT] = ACTIONS(2850), - [anon_sym_GT] = ACTIONS(2850), - [anon_sym_EQ_EQ] = ACTIONS(2850), - [anon_sym_BANG_EQ] = ACTIONS(2850), - [anon_sym_LT_EQ] = ACTIONS(2850), - [anon_sym_GT_EQ] = ACTIONS(2850), - [anon_sym_LBRACK] = ACTIONS(2848), - [anon_sym_struct] = ACTIONS(2850), - [anon_sym_union] = ACTIONS(2850), - [anon_sym_pub] = ACTIONS(2850), - [anon_sym_mut] = ACTIONS(2850), - [anon_sym_enum] = ACTIONS(2850), - [anon_sym_interface] = ACTIONS(2850), - [anon_sym_PLUS_PLUS] = ACTIONS(2850), - [anon_sym_DASH_DASH] = ACTIONS(2850), - [anon_sym_QMARK] = ACTIONS(2850), - [anon_sym_BANG] = ACTIONS(2850), - [anon_sym_go] = ACTIONS(2850), - [anon_sym_spawn] = ACTIONS(2850), - [anon_sym_json_DOTdecode] = ACTIONS(2850), - [anon_sym_LBRACK2] = ACTIONS(2850), - [anon_sym_TILDE] = ACTIONS(2850), - [anon_sym_CARET] = ACTIONS(2850), - [anon_sym_AMP] = ACTIONS(2850), - [anon_sym_LT_DASH] = ACTIONS(2850), - [anon_sym_LT_LT] = ACTIONS(2850), - [anon_sym_GT_GT] = ACTIONS(2850), - [anon_sym_GT_GT_GT] = ACTIONS(2850), - [anon_sym_AMP_CARET] = ACTIONS(2850), - [anon_sym_AMP_AMP] = ACTIONS(2850), - [anon_sym_PIPE_PIPE] = ACTIONS(2850), - [anon_sym_or] = ACTIONS(2850), - [sym_none] = ACTIONS(2850), - [sym_true] = ACTIONS(2850), - [sym_false] = ACTIONS(2850), - [sym_nil] = ACTIONS(2850), - [anon_sym_QMARK_DOT] = ACTIONS(2850), - [anon_sym_POUND_LBRACK] = ACTIONS(2850), - [anon_sym_if] = ACTIONS(2850), - [anon_sym_DOLLARif] = ACTIONS(2850), - [anon_sym_is] = ACTIONS(2850), - [anon_sym_BANGis] = ACTIONS(2850), - [anon_sym_in] = ACTIONS(2850), - [anon_sym_BANGin] = ACTIONS(2850), - [anon_sym_match] = ACTIONS(2850), - [anon_sym_select] = ACTIONS(2850), - [anon_sym_lock] = ACTIONS(2850), - [anon_sym_rlock] = ACTIONS(2850), - [anon_sym_unsafe] = ACTIONS(2850), - [anon_sym_sql] = ACTIONS(2850), - [sym_int_literal] = ACTIONS(2850), - [sym_float_literal] = ACTIONS(2850), - [sym_rune_literal] = ACTIONS(2850), - [sym_pseudo_compile_time_identifier] = ACTIONS(2850), - [anon_sym_shared] = ACTIONS(2850), - [anon_sym_map_LBRACK] = ACTIONS(2850), - [anon_sym_chan] = ACTIONS(2850), - [anon_sym_thread] = ACTIONS(2850), - [anon_sym_atomic] = ACTIONS(2850), - [anon_sym_assert] = ACTIONS(2850), - [anon_sym_defer] = ACTIONS(2850), - [anon_sym_goto] = ACTIONS(2850), - [anon_sym_break] = ACTIONS(2850), - [anon_sym_continue] = ACTIONS(2850), - [anon_sym_return] = ACTIONS(2850), - [anon_sym_DOLLARfor] = ACTIONS(2850), - [anon_sym_for] = ACTIONS(2850), - [anon_sym_POUND] = ACTIONS(2850), - [anon_sym_asm] = ACTIONS(2850), - [anon_sym_AT_LBRACK] = ACTIONS(2850), - [sym___double_quote] = ACTIONS(2850), - [sym___single_quote] = ACTIONS(2850), - [sym___c_double_quote] = ACTIONS(2850), - [sym___c_single_quote] = ACTIONS(2850), - [sym___r_double_quote] = ACTIONS(2850), - [sym___r_single_quote] = ACTIONS(2850), + [anon_sym_DOT] = ACTIONS(2692), + [anon_sym_as] = ACTIONS(2692), + [anon_sym_LBRACE] = ACTIONS(2692), + [anon_sym_COMMA] = ACTIONS(2692), + [anon_sym_const] = ACTIONS(2692), + [anon_sym_LPAREN] = ACTIONS(2692), + [anon_sym___global] = ACTIONS(2692), + [anon_sym_type] = ACTIONS(2692), + [anon_sym_PIPE] = ACTIONS(2692), + [anon_sym_fn] = ACTIONS(2692), + [anon_sym_PLUS] = ACTIONS(2692), + [anon_sym_DASH] = ACTIONS(2692), + [anon_sym_STAR] = ACTIONS(2692), + [anon_sym_SLASH] = ACTIONS(2692), + [anon_sym_PERCENT] = ACTIONS(2692), + [anon_sym_LT] = ACTIONS(2692), + [anon_sym_GT] = ACTIONS(2692), + [anon_sym_EQ_EQ] = ACTIONS(2692), + [anon_sym_BANG_EQ] = ACTIONS(2692), + [anon_sym_LT_EQ] = ACTIONS(2692), + [anon_sym_GT_EQ] = ACTIONS(2692), + [anon_sym_LBRACK] = ACTIONS(2690), + [anon_sym_struct] = ACTIONS(2692), + [anon_sym_union] = ACTIONS(2692), + [anon_sym_pub] = ACTIONS(2692), + [anon_sym_mut] = ACTIONS(2692), + [anon_sym_enum] = ACTIONS(2692), + [anon_sym_interface] = ACTIONS(2692), + [anon_sym_PLUS_PLUS] = ACTIONS(2692), + [anon_sym_DASH_DASH] = ACTIONS(2692), + [anon_sym_QMARK] = ACTIONS(2692), + [anon_sym_BANG] = ACTIONS(2692), + [anon_sym_go] = ACTIONS(2692), + [anon_sym_spawn] = ACTIONS(2692), + [anon_sym_json_DOTdecode] = ACTIONS(2692), + [anon_sym_LBRACK2] = ACTIONS(2692), + [anon_sym_TILDE] = ACTIONS(2692), + [anon_sym_CARET] = ACTIONS(2692), + [anon_sym_AMP] = ACTIONS(2692), + [anon_sym_LT_DASH] = ACTIONS(2692), + [anon_sym_LT_LT] = ACTIONS(2692), + [anon_sym_GT_GT] = ACTIONS(2692), + [anon_sym_GT_GT_GT] = ACTIONS(2692), + [anon_sym_AMP_CARET] = ACTIONS(2692), + [anon_sym_AMP_AMP] = ACTIONS(2692), + [anon_sym_PIPE_PIPE] = ACTIONS(2692), + [anon_sym_or] = ACTIONS(2692), + [sym_none] = ACTIONS(2692), + [sym_true] = ACTIONS(2692), + [sym_false] = ACTIONS(2692), + [sym_nil] = ACTIONS(2692), + [anon_sym_QMARK_DOT] = ACTIONS(2692), + [anon_sym_POUND_LBRACK] = ACTIONS(2692), + [anon_sym_if] = ACTIONS(2692), + [anon_sym_DOLLARif] = ACTIONS(2692), + [anon_sym_is] = ACTIONS(2692), + [anon_sym_BANGis] = ACTIONS(2692), + [anon_sym_in] = ACTIONS(2692), + [anon_sym_BANGin] = ACTIONS(2692), + [anon_sym_match] = ACTIONS(2692), + [anon_sym_select] = ACTIONS(2692), + [anon_sym_lock] = ACTIONS(2692), + [anon_sym_rlock] = ACTIONS(2692), + [anon_sym_unsafe] = ACTIONS(2692), + [anon_sym_sql] = ACTIONS(2692), + [sym_int_literal] = ACTIONS(2692), + [sym_float_literal] = ACTIONS(2692), + [sym_rune_literal] = ACTIONS(2692), + [sym_pseudo_compile_time_identifier] = ACTIONS(2692), + [anon_sym_shared] = ACTIONS(2692), + [anon_sym_map_LBRACK] = ACTIONS(2692), + [anon_sym_chan] = ACTIONS(2692), + [anon_sym_thread] = ACTIONS(2692), + [anon_sym_atomic] = ACTIONS(2692), + [anon_sym_assert] = ACTIONS(2692), + [anon_sym_defer] = ACTIONS(2692), + [anon_sym_goto] = ACTIONS(2692), + [anon_sym_break] = ACTIONS(2692), + [anon_sym_continue] = ACTIONS(2692), + [anon_sym_return] = ACTIONS(2692), + [anon_sym_DOLLARfor] = ACTIONS(2692), + [anon_sym_for] = ACTIONS(2692), + [anon_sym_POUND] = ACTIONS(2692), + [anon_sym_asm] = ACTIONS(2692), + [anon_sym_AT_LBRACK] = ACTIONS(2692), + [sym___double_quote] = ACTIONS(2692), + [sym___single_quote] = ACTIONS(2692), + [sym___c_double_quote] = ACTIONS(2692), + [sym___c_single_quote] = ACTIONS(2692), + [sym___r_double_quote] = ACTIONS(2692), + [sym___r_single_quote] = ACTIONS(2692), }, [1053] = { [sym_line_comment] = STATE(1053), [sym_block_comment] = STATE(1053), - [ts_builtin_sym_end] = ACTIONS(2866), - [sym_identifier] = ACTIONS(2868), - [anon_sym_LF] = ACTIONS(2868), - [anon_sym_CR] = ACTIONS(2868), - [anon_sym_CR_LF] = ACTIONS(2868), + [ts_builtin_sym_end] = ACTIONS(2123), + [sym_identifier] = ACTIONS(2125), + [anon_sym_LF] = ACTIONS(2125), + [anon_sym_CR] = ACTIONS(2125), + [anon_sym_CR_LF] = ACTIONS(2125), [anon_sym_SLASH_SLASH] = ACTIONS(497), [anon_sym_SLASH_STAR] = ACTIONS(499), - [anon_sym_DOT] = ACTIONS(2868), - [anon_sym_as] = ACTIONS(2868), - [anon_sym_LBRACE] = ACTIONS(2868), - [anon_sym_COMMA] = ACTIONS(2868), - [anon_sym_const] = ACTIONS(2868), - [anon_sym_LPAREN] = ACTIONS(2868), - [anon_sym___global] = ACTIONS(2868), - [anon_sym_type] = ACTIONS(2868), - [anon_sym_PIPE] = ACTIONS(2868), - [anon_sym_fn] = ACTIONS(2868), - [anon_sym_PLUS] = ACTIONS(2868), - [anon_sym_DASH] = ACTIONS(2868), - [anon_sym_STAR] = ACTIONS(2868), - [anon_sym_SLASH] = ACTIONS(2868), - [anon_sym_PERCENT] = ACTIONS(2868), - [anon_sym_LT] = ACTIONS(2868), - [anon_sym_GT] = ACTIONS(2868), - [anon_sym_EQ_EQ] = ACTIONS(2868), - [anon_sym_BANG_EQ] = ACTIONS(2868), - [anon_sym_LT_EQ] = ACTIONS(2868), - [anon_sym_GT_EQ] = ACTIONS(2868), - [anon_sym_LBRACK] = ACTIONS(2866), - [anon_sym_struct] = ACTIONS(2868), - [anon_sym_union] = ACTIONS(2868), - [anon_sym_pub] = ACTIONS(2868), - [anon_sym_mut] = ACTIONS(2868), - [anon_sym_enum] = ACTIONS(2868), - [anon_sym_interface] = ACTIONS(2868), - [anon_sym_PLUS_PLUS] = ACTIONS(2868), - [anon_sym_DASH_DASH] = ACTIONS(2868), - [anon_sym_QMARK] = ACTIONS(2868), - [anon_sym_BANG] = ACTIONS(2868), - [anon_sym_go] = ACTIONS(2868), - [anon_sym_spawn] = ACTIONS(2868), - [anon_sym_json_DOTdecode] = ACTIONS(2868), - [anon_sym_LBRACK2] = ACTIONS(2868), - [anon_sym_TILDE] = ACTIONS(2868), - [anon_sym_CARET] = ACTIONS(2868), - [anon_sym_AMP] = ACTIONS(2868), - [anon_sym_LT_DASH] = ACTIONS(2868), - [anon_sym_LT_LT] = ACTIONS(2868), - [anon_sym_GT_GT] = ACTIONS(2868), - [anon_sym_GT_GT_GT] = ACTIONS(2868), - [anon_sym_AMP_CARET] = ACTIONS(2868), - [anon_sym_AMP_AMP] = ACTIONS(2868), - [anon_sym_PIPE_PIPE] = ACTIONS(2868), - [anon_sym_or] = ACTIONS(2868), - [sym_none] = ACTIONS(2868), - [sym_true] = ACTIONS(2868), - [sym_false] = ACTIONS(2868), - [sym_nil] = ACTIONS(2868), - [anon_sym_QMARK_DOT] = ACTIONS(2868), - [anon_sym_POUND_LBRACK] = ACTIONS(2868), - [anon_sym_if] = ACTIONS(2868), - [anon_sym_DOLLARif] = ACTIONS(2868), - [anon_sym_is] = ACTIONS(2868), - [anon_sym_BANGis] = ACTIONS(2868), - [anon_sym_in] = ACTIONS(2868), - [anon_sym_BANGin] = ACTIONS(2868), - [anon_sym_match] = ACTIONS(2868), - [anon_sym_select] = ACTIONS(2868), - [anon_sym_lock] = ACTIONS(2868), - [anon_sym_rlock] = ACTIONS(2868), - [anon_sym_unsafe] = ACTIONS(2868), - [anon_sym_sql] = ACTIONS(2868), - [sym_int_literal] = ACTIONS(2868), - [sym_float_literal] = ACTIONS(2868), - [sym_rune_literal] = ACTIONS(2868), - [sym_pseudo_compile_time_identifier] = ACTIONS(2868), - [anon_sym_shared] = ACTIONS(2868), - [anon_sym_map_LBRACK] = ACTIONS(2868), - [anon_sym_chan] = ACTIONS(2868), - [anon_sym_thread] = ACTIONS(2868), - [anon_sym_atomic] = ACTIONS(2868), - [anon_sym_assert] = ACTIONS(2868), - [anon_sym_defer] = ACTIONS(2868), - [anon_sym_goto] = ACTIONS(2868), - [anon_sym_break] = ACTIONS(2868), - [anon_sym_continue] = ACTIONS(2868), - [anon_sym_return] = ACTIONS(2868), - [anon_sym_DOLLARfor] = ACTIONS(2868), - [anon_sym_for] = ACTIONS(2868), - [anon_sym_POUND] = ACTIONS(2868), - [anon_sym_asm] = ACTIONS(2868), - [anon_sym_AT_LBRACK] = ACTIONS(2868), - [sym___double_quote] = ACTIONS(2868), - [sym___single_quote] = ACTIONS(2868), - [sym___c_double_quote] = ACTIONS(2868), - [sym___c_single_quote] = ACTIONS(2868), - [sym___r_double_quote] = ACTIONS(2868), - [sym___r_single_quote] = ACTIONS(2868), + [anon_sym_DOT] = ACTIONS(2125), + [anon_sym_as] = ACTIONS(2125), + [anon_sym_LBRACE] = ACTIONS(2125), + [anon_sym_COMMA] = ACTIONS(2125), + [anon_sym_const] = ACTIONS(2125), + [anon_sym_LPAREN] = ACTIONS(2125), + [anon_sym___global] = ACTIONS(2125), + [anon_sym_type] = ACTIONS(2125), + [anon_sym_PIPE] = ACTIONS(2125), + [anon_sym_fn] = ACTIONS(2125), + [anon_sym_PLUS] = ACTIONS(2125), + [anon_sym_DASH] = ACTIONS(2125), + [anon_sym_STAR] = ACTIONS(2125), + [anon_sym_SLASH] = ACTIONS(2125), + [anon_sym_PERCENT] = ACTIONS(2125), + [anon_sym_LT] = ACTIONS(2125), + [anon_sym_GT] = ACTIONS(2125), + [anon_sym_EQ_EQ] = ACTIONS(2125), + [anon_sym_BANG_EQ] = ACTIONS(2125), + [anon_sym_LT_EQ] = ACTIONS(2125), + [anon_sym_GT_EQ] = ACTIONS(2125), + [anon_sym_LBRACK] = ACTIONS(2123), + [anon_sym_struct] = ACTIONS(2125), + [anon_sym_union] = ACTIONS(2125), + [anon_sym_pub] = ACTIONS(2125), + [anon_sym_mut] = ACTIONS(2125), + [anon_sym_enum] = ACTIONS(2125), + [anon_sym_interface] = ACTIONS(2125), + [anon_sym_PLUS_PLUS] = ACTIONS(2125), + [anon_sym_DASH_DASH] = ACTIONS(2125), + [anon_sym_QMARK] = ACTIONS(2125), + [anon_sym_BANG] = ACTIONS(2125), + [anon_sym_go] = ACTIONS(2125), + [anon_sym_spawn] = ACTIONS(2125), + [anon_sym_json_DOTdecode] = ACTIONS(2125), + [anon_sym_LBRACK2] = ACTIONS(2125), + [anon_sym_TILDE] = ACTIONS(2125), + [anon_sym_CARET] = ACTIONS(2125), + [anon_sym_AMP] = ACTIONS(2125), + [anon_sym_LT_DASH] = ACTIONS(2125), + [anon_sym_LT_LT] = ACTIONS(2125), + [anon_sym_GT_GT] = ACTIONS(2125), + [anon_sym_GT_GT_GT] = ACTIONS(2125), + [anon_sym_AMP_CARET] = ACTIONS(2125), + [anon_sym_AMP_AMP] = ACTIONS(2125), + [anon_sym_PIPE_PIPE] = ACTIONS(2125), + [anon_sym_or] = ACTIONS(2125), + [sym_none] = ACTIONS(2125), + [sym_true] = ACTIONS(2125), + [sym_false] = ACTIONS(2125), + [sym_nil] = ACTIONS(2125), + [anon_sym_QMARK_DOT] = ACTIONS(2125), + [anon_sym_POUND_LBRACK] = ACTIONS(2125), + [anon_sym_if] = ACTIONS(2125), + [anon_sym_DOLLARif] = ACTIONS(2125), + [anon_sym_is] = ACTIONS(2125), + [anon_sym_BANGis] = ACTIONS(2125), + [anon_sym_in] = ACTIONS(2125), + [anon_sym_BANGin] = ACTIONS(2125), + [anon_sym_match] = ACTIONS(2125), + [anon_sym_select] = ACTIONS(2125), + [anon_sym_lock] = ACTIONS(2125), + [anon_sym_rlock] = ACTIONS(2125), + [anon_sym_unsafe] = ACTIONS(2125), + [anon_sym_sql] = ACTIONS(2125), + [sym_int_literal] = ACTIONS(2125), + [sym_float_literal] = ACTIONS(2125), + [sym_rune_literal] = ACTIONS(2125), + [sym_pseudo_compile_time_identifier] = ACTIONS(2125), + [anon_sym_shared] = ACTIONS(2125), + [anon_sym_map_LBRACK] = ACTIONS(2125), + [anon_sym_chan] = ACTIONS(2125), + [anon_sym_thread] = ACTIONS(2125), + [anon_sym_atomic] = ACTIONS(2125), + [anon_sym_assert] = ACTIONS(2125), + [anon_sym_defer] = ACTIONS(2125), + [anon_sym_goto] = ACTIONS(2125), + [anon_sym_break] = ACTIONS(2125), + [anon_sym_continue] = ACTIONS(2125), + [anon_sym_return] = ACTIONS(2125), + [anon_sym_DOLLARfor] = ACTIONS(2125), + [anon_sym_for] = ACTIONS(2125), + [anon_sym_POUND] = ACTIONS(2125), + [anon_sym_asm] = ACTIONS(2125), + [anon_sym_AT_LBRACK] = ACTIONS(2125), + [sym___double_quote] = ACTIONS(2125), + [sym___single_quote] = ACTIONS(2125), + [sym___c_double_quote] = ACTIONS(2125), + [sym___c_single_quote] = ACTIONS(2125), + [sym___r_double_quote] = ACTIONS(2125), + [sym___r_single_quote] = ACTIONS(2125), }, [1054] = { [sym_line_comment] = STATE(1054), [sym_block_comment] = STATE(1054), - [ts_builtin_sym_end] = ACTIONS(2256), - [sym_identifier] = ACTIONS(2253), - [anon_sym_LF] = ACTIONS(2253), - [anon_sym_CR] = ACTIONS(2253), - [anon_sym_CR_LF] = ACTIONS(2253), + [ts_builtin_sym_end] = ACTIONS(2888), + [sym_identifier] = ACTIONS(2890), + [anon_sym_LF] = ACTIONS(2890), + [anon_sym_CR] = ACTIONS(2890), + [anon_sym_CR_LF] = ACTIONS(2890), [anon_sym_SLASH_SLASH] = ACTIONS(497), [anon_sym_SLASH_STAR] = ACTIONS(499), - [anon_sym_DOT] = ACTIONS(2253), - [anon_sym_as] = ACTIONS(2253), - [anon_sym_LBRACE] = ACTIONS(2253), - [anon_sym_COMMA] = ACTIONS(2253), - [anon_sym_const] = ACTIONS(2253), - [anon_sym_LPAREN] = ACTIONS(2253), - [anon_sym___global] = ACTIONS(2253), - [anon_sym_type] = ACTIONS(2253), - [anon_sym_PIPE] = ACTIONS(2253), - [anon_sym_fn] = ACTIONS(2253), - [anon_sym_PLUS] = ACTIONS(2253), - [anon_sym_DASH] = ACTIONS(2253), - [anon_sym_STAR] = ACTIONS(2253), - [anon_sym_SLASH] = ACTIONS(2253), - [anon_sym_PERCENT] = ACTIONS(2253), - [anon_sym_LT] = ACTIONS(2253), - [anon_sym_GT] = ACTIONS(2253), - [anon_sym_EQ_EQ] = ACTIONS(2253), - [anon_sym_BANG_EQ] = ACTIONS(2253), - [anon_sym_LT_EQ] = ACTIONS(2253), - [anon_sym_GT_EQ] = ACTIONS(2253), - [anon_sym_LBRACK] = ACTIONS(2256), - [anon_sym_struct] = ACTIONS(2253), - [anon_sym_union] = ACTIONS(2253), - [anon_sym_pub] = ACTIONS(2253), - [anon_sym_mut] = ACTIONS(2253), - [anon_sym_enum] = ACTIONS(2253), - [anon_sym_interface] = ACTIONS(2253), - [anon_sym_PLUS_PLUS] = ACTIONS(2253), - [anon_sym_DASH_DASH] = ACTIONS(2253), - [anon_sym_QMARK] = ACTIONS(2253), - [anon_sym_BANG] = ACTIONS(2253), - [anon_sym_go] = ACTIONS(2253), - [anon_sym_spawn] = ACTIONS(2253), - [anon_sym_json_DOTdecode] = ACTIONS(2253), - [anon_sym_LBRACK2] = ACTIONS(2253), - [anon_sym_TILDE] = ACTIONS(2253), - [anon_sym_CARET] = ACTIONS(2253), - [anon_sym_AMP] = ACTIONS(2253), - [anon_sym_LT_DASH] = ACTIONS(2253), - [anon_sym_LT_LT] = ACTIONS(2253), - [anon_sym_GT_GT] = ACTIONS(2253), - [anon_sym_GT_GT_GT] = ACTIONS(2253), - [anon_sym_AMP_CARET] = ACTIONS(2253), - [anon_sym_AMP_AMP] = ACTIONS(2253), - [anon_sym_PIPE_PIPE] = ACTIONS(2253), - [anon_sym_or] = ACTIONS(2253), - [sym_none] = ACTIONS(2253), - [sym_true] = ACTIONS(2253), - [sym_false] = ACTIONS(2253), - [sym_nil] = ACTIONS(2253), - [anon_sym_QMARK_DOT] = ACTIONS(2253), - [anon_sym_POUND_LBRACK] = ACTIONS(2253), - [anon_sym_if] = ACTIONS(2253), - [anon_sym_DOLLARif] = ACTIONS(2253), - [anon_sym_is] = ACTIONS(2253), - [anon_sym_BANGis] = ACTIONS(2253), - [anon_sym_in] = ACTIONS(2253), - [anon_sym_BANGin] = ACTIONS(2253), - [anon_sym_match] = ACTIONS(2253), - [anon_sym_select] = ACTIONS(2253), - [anon_sym_lock] = ACTIONS(2253), - [anon_sym_rlock] = ACTIONS(2253), - [anon_sym_unsafe] = ACTIONS(2253), - [anon_sym_sql] = ACTIONS(2253), - [sym_int_literal] = ACTIONS(2253), - [sym_float_literal] = ACTIONS(2253), - [sym_rune_literal] = ACTIONS(2253), - [sym_pseudo_compile_time_identifier] = ACTIONS(2253), - [anon_sym_shared] = ACTIONS(2253), - [anon_sym_map_LBRACK] = ACTIONS(2253), - [anon_sym_chan] = ACTIONS(2253), - [anon_sym_thread] = ACTIONS(2253), - [anon_sym_atomic] = ACTIONS(2253), - [anon_sym_assert] = ACTIONS(2253), - [anon_sym_defer] = ACTIONS(2253), - [anon_sym_goto] = ACTIONS(2253), - [anon_sym_break] = ACTIONS(2253), - [anon_sym_continue] = ACTIONS(2253), - [anon_sym_return] = ACTIONS(2253), - [anon_sym_DOLLARfor] = ACTIONS(2253), - [anon_sym_for] = ACTIONS(2253), - [anon_sym_POUND] = ACTIONS(2253), - [anon_sym_asm] = ACTIONS(2253), - [anon_sym_AT_LBRACK] = ACTIONS(2253), - [sym___double_quote] = ACTIONS(2253), - [sym___single_quote] = ACTIONS(2253), - [sym___c_double_quote] = ACTIONS(2253), - [sym___c_single_quote] = ACTIONS(2253), - [sym___r_double_quote] = ACTIONS(2253), - [sym___r_single_quote] = ACTIONS(2253), + [anon_sym_DOT] = ACTIONS(2890), + [anon_sym_as] = ACTIONS(2890), + [anon_sym_LBRACE] = ACTIONS(2890), + [anon_sym_COMMA] = ACTIONS(2890), + [anon_sym_const] = ACTIONS(2890), + [anon_sym_LPAREN] = ACTIONS(2890), + [anon_sym___global] = ACTIONS(2890), + [anon_sym_type] = ACTIONS(2890), + [anon_sym_PIPE] = ACTIONS(2890), + [anon_sym_fn] = ACTIONS(2890), + [anon_sym_PLUS] = ACTIONS(2890), + [anon_sym_DASH] = ACTIONS(2890), + [anon_sym_STAR] = ACTIONS(2890), + [anon_sym_SLASH] = ACTIONS(2890), + [anon_sym_PERCENT] = ACTIONS(2890), + [anon_sym_LT] = ACTIONS(2890), + [anon_sym_GT] = ACTIONS(2890), + [anon_sym_EQ_EQ] = ACTIONS(2890), + [anon_sym_BANG_EQ] = ACTIONS(2890), + [anon_sym_LT_EQ] = ACTIONS(2890), + [anon_sym_GT_EQ] = ACTIONS(2890), + [anon_sym_LBRACK] = ACTIONS(2888), + [anon_sym_struct] = ACTIONS(2890), + [anon_sym_union] = ACTIONS(2890), + [anon_sym_pub] = ACTIONS(2890), + [anon_sym_mut] = ACTIONS(2890), + [anon_sym_enum] = ACTIONS(2890), + [anon_sym_interface] = ACTIONS(2890), + [anon_sym_PLUS_PLUS] = ACTIONS(2890), + [anon_sym_DASH_DASH] = ACTIONS(2890), + [anon_sym_QMARK] = ACTIONS(2890), + [anon_sym_BANG] = ACTIONS(2890), + [anon_sym_go] = ACTIONS(2890), + [anon_sym_spawn] = ACTIONS(2890), + [anon_sym_json_DOTdecode] = ACTIONS(2890), + [anon_sym_LBRACK2] = ACTIONS(2890), + [anon_sym_TILDE] = ACTIONS(2890), + [anon_sym_CARET] = ACTIONS(2890), + [anon_sym_AMP] = ACTIONS(2890), + [anon_sym_LT_DASH] = ACTIONS(2890), + [anon_sym_LT_LT] = ACTIONS(2890), + [anon_sym_GT_GT] = ACTIONS(2890), + [anon_sym_GT_GT_GT] = ACTIONS(2890), + [anon_sym_AMP_CARET] = ACTIONS(2890), + [anon_sym_AMP_AMP] = ACTIONS(2890), + [anon_sym_PIPE_PIPE] = ACTIONS(2890), + [anon_sym_or] = ACTIONS(2890), + [sym_none] = ACTIONS(2890), + [sym_true] = ACTIONS(2890), + [sym_false] = ACTIONS(2890), + [sym_nil] = ACTIONS(2890), + [anon_sym_QMARK_DOT] = ACTIONS(2890), + [anon_sym_POUND_LBRACK] = ACTIONS(2890), + [anon_sym_if] = ACTIONS(2890), + [anon_sym_DOLLARif] = ACTIONS(2890), + [anon_sym_is] = ACTIONS(2890), + [anon_sym_BANGis] = ACTIONS(2890), + [anon_sym_in] = ACTIONS(2890), + [anon_sym_BANGin] = ACTIONS(2890), + [anon_sym_match] = ACTIONS(2890), + [anon_sym_select] = ACTIONS(2890), + [anon_sym_lock] = ACTIONS(2890), + [anon_sym_rlock] = ACTIONS(2890), + [anon_sym_unsafe] = ACTIONS(2890), + [anon_sym_sql] = ACTIONS(2890), + [sym_int_literal] = ACTIONS(2890), + [sym_float_literal] = ACTIONS(2890), + [sym_rune_literal] = ACTIONS(2890), + [sym_pseudo_compile_time_identifier] = ACTIONS(2890), + [anon_sym_shared] = ACTIONS(2890), + [anon_sym_map_LBRACK] = ACTIONS(2890), + [anon_sym_chan] = ACTIONS(2890), + [anon_sym_thread] = ACTIONS(2890), + [anon_sym_atomic] = ACTIONS(2890), + [anon_sym_assert] = ACTIONS(2890), + [anon_sym_defer] = ACTIONS(2890), + [anon_sym_goto] = ACTIONS(2890), + [anon_sym_break] = ACTIONS(2890), + [anon_sym_continue] = ACTIONS(2890), + [anon_sym_return] = ACTIONS(2890), + [anon_sym_DOLLARfor] = ACTIONS(2890), + [anon_sym_for] = ACTIONS(2890), + [anon_sym_POUND] = ACTIONS(2890), + [anon_sym_asm] = ACTIONS(2890), + [anon_sym_AT_LBRACK] = ACTIONS(2890), + [sym___double_quote] = ACTIONS(2890), + [sym___single_quote] = ACTIONS(2890), + [sym___c_double_quote] = ACTIONS(2890), + [sym___c_single_quote] = ACTIONS(2890), + [sym___r_double_quote] = ACTIONS(2890), + [sym___r_single_quote] = ACTIONS(2890), }, [1055] = { [sym_line_comment] = STATE(1055), [sym_block_comment] = STATE(1055), - [ts_builtin_sym_end] = ACTIONS(3044), - [sym_identifier] = ACTIONS(3046), - [anon_sym_LF] = ACTIONS(3046), - [anon_sym_CR] = ACTIONS(3046), - [anon_sym_CR_LF] = ACTIONS(3046), + [ts_builtin_sym_end] = ACTIONS(2892), + [sym_identifier] = ACTIONS(2894), + [anon_sym_LF] = ACTIONS(2894), + [anon_sym_CR] = ACTIONS(2894), + [anon_sym_CR_LF] = ACTIONS(2894), [anon_sym_SLASH_SLASH] = ACTIONS(497), [anon_sym_SLASH_STAR] = ACTIONS(499), - [anon_sym_DOT] = ACTIONS(3046), - [anon_sym_as] = ACTIONS(3046), - [anon_sym_LBRACE] = ACTIONS(3046), - [anon_sym_COMMA] = ACTIONS(3046), - [anon_sym_const] = ACTIONS(3046), - [anon_sym_LPAREN] = ACTIONS(3046), - [anon_sym___global] = ACTIONS(3046), - [anon_sym_type] = ACTIONS(3046), - [anon_sym_PIPE] = ACTIONS(3046), - [anon_sym_fn] = ACTIONS(3046), - [anon_sym_PLUS] = ACTIONS(3046), - [anon_sym_DASH] = ACTIONS(3046), - [anon_sym_STAR] = ACTIONS(3046), - [anon_sym_SLASH] = ACTIONS(3046), - [anon_sym_PERCENT] = ACTIONS(3046), - [anon_sym_LT] = ACTIONS(3046), - [anon_sym_GT] = ACTIONS(3046), - [anon_sym_EQ_EQ] = ACTIONS(3046), - [anon_sym_BANG_EQ] = ACTIONS(3046), - [anon_sym_LT_EQ] = ACTIONS(3046), - [anon_sym_GT_EQ] = ACTIONS(3046), - [anon_sym_LBRACK] = ACTIONS(3044), - [anon_sym_struct] = ACTIONS(3046), - [anon_sym_union] = ACTIONS(3046), - [anon_sym_pub] = ACTIONS(3046), - [anon_sym_mut] = ACTIONS(3046), - [anon_sym_enum] = ACTIONS(3046), - [anon_sym_interface] = ACTIONS(3046), - [anon_sym_PLUS_PLUS] = ACTIONS(3046), - [anon_sym_DASH_DASH] = ACTIONS(3046), - [anon_sym_QMARK] = ACTIONS(3046), - [anon_sym_BANG] = ACTIONS(3046), - [anon_sym_go] = ACTIONS(3046), - [anon_sym_spawn] = ACTIONS(3046), - [anon_sym_json_DOTdecode] = ACTIONS(3046), - [anon_sym_LBRACK2] = ACTIONS(3046), - [anon_sym_TILDE] = ACTIONS(3046), - [anon_sym_CARET] = ACTIONS(3046), - [anon_sym_AMP] = ACTIONS(3046), - [anon_sym_LT_DASH] = ACTIONS(3046), - [anon_sym_LT_LT] = ACTIONS(3046), - [anon_sym_GT_GT] = ACTIONS(3046), - [anon_sym_GT_GT_GT] = ACTIONS(3046), - [anon_sym_AMP_CARET] = ACTIONS(3046), - [anon_sym_AMP_AMP] = ACTIONS(3046), - [anon_sym_PIPE_PIPE] = ACTIONS(3046), - [anon_sym_or] = ACTIONS(3046), - [sym_none] = ACTIONS(3046), - [sym_true] = ACTIONS(3046), - [sym_false] = ACTIONS(3046), - [sym_nil] = ACTIONS(3046), - [anon_sym_QMARK_DOT] = ACTIONS(3046), - [anon_sym_POUND_LBRACK] = ACTIONS(3046), - [anon_sym_if] = ACTIONS(3046), - [anon_sym_DOLLARif] = ACTIONS(3046), - [anon_sym_is] = ACTIONS(3046), - [anon_sym_BANGis] = ACTIONS(3046), - [anon_sym_in] = ACTIONS(3046), - [anon_sym_BANGin] = ACTIONS(3046), - [anon_sym_match] = ACTIONS(3046), - [anon_sym_select] = ACTIONS(3046), - [anon_sym_lock] = ACTIONS(3046), - [anon_sym_rlock] = ACTIONS(3046), - [anon_sym_unsafe] = ACTIONS(3046), - [anon_sym_sql] = ACTIONS(3046), - [sym_int_literal] = ACTIONS(3046), - [sym_float_literal] = ACTIONS(3046), - [sym_rune_literal] = ACTIONS(3046), - [sym_pseudo_compile_time_identifier] = ACTIONS(3046), - [anon_sym_shared] = ACTIONS(3046), - [anon_sym_map_LBRACK] = ACTIONS(3046), - [anon_sym_chan] = ACTIONS(3046), - [anon_sym_thread] = ACTIONS(3046), - [anon_sym_atomic] = ACTIONS(3046), - [anon_sym_assert] = ACTIONS(3046), - [anon_sym_defer] = ACTIONS(3046), - [anon_sym_goto] = ACTIONS(3046), - [anon_sym_break] = ACTIONS(3046), - [anon_sym_continue] = ACTIONS(3046), - [anon_sym_return] = ACTIONS(3046), - [anon_sym_DOLLARfor] = ACTIONS(3046), - [anon_sym_for] = ACTIONS(3046), - [anon_sym_POUND] = ACTIONS(3046), - [anon_sym_asm] = ACTIONS(3046), - [anon_sym_AT_LBRACK] = ACTIONS(3046), - [sym___double_quote] = ACTIONS(3046), - [sym___single_quote] = ACTIONS(3046), - [sym___c_double_quote] = ACTIONS(3046), - [sym___c_single_quote] = ACTIONS(3046), - [sym___r_double_quote] = ACTIONS(3046), - [sym___r_single_quote] = ACTIONS(3046), + [anon_sym_DOT] = ACTIONS(2894), + [anon_sym_as] = ACTIONS(2894), + [anon_sym_LBRACE] = ACTIONS(2894), + [anon_sym_COMMA] = ACTIONS(2894), + [anon_sym_const] = ACTIONS(2894), + [anon_sym_LPAREN] = ACTIONS(2894), + [anon_sym___global] = ACTIONS(2894), + [anon_sym_type] = ACTIONS(2894), + [anon_sym_PIPE] = ACTIONS(2894), + [anon_sym_fn] = ACTIONS(2894), + [anon_sym_PLUS] = ACTIONS(2894), + [anon_sym_DASH] = ACTIONS(2894), + [anon_sym_STAR] = ACTIONS(2894), + [anon_sym_SLASH] = ACTIONS(2894), + [anon_sym_PERCENT] = ACTIONS(2894), + [anon_sym_LT] = ACTIONS(2894), + [anon_sym_GT] = ACTIONS(2894), + [anon_sym_EQ_EQ] = ACTIONS(2894), + [anon_sym_BANG_EQ] = ACTIONS(2894), + [anon_sym_LT_EQ] = ACTIONS(2894), + [anon_sym_GT_EQ] = ACTIONS(2894), + [anon_sym_LBRACK] = ACTIONS(2892), + [anon_sym_struct] = ACTIONS(2894), + [anon_sym_union] = ACTIONS(2894), + [anon_sym_pub] = ACTIONS(2894), + [anon_sym_mut] = ACTIONS(2894), + [anon_sym_enum] = ACTIONS(2894), + [anon_sym_interface] = ACTIONS(2894), + [anon_sym_PLUS_PLUS] = ACTIONS(2894), + [anon_sym_DASH_DASH] = ACTIONS(2894), + [anon_sym_QMARK] = ACTIONS(2894), + [anon_sym_BANG] = ACTIONS(2894), + [anon_sym_go] = ACTIONS(2894), + [anon_sym_spawn] = ACTIONS(2894), + [anon_sym_json_DOTdecode] = ACTIONS(2894), + [anon_sym_LBRACK2] = ACTIONS(2894), + [anon_sym_TILDE] = ACTIONS(2894), + [anon_sym_CARET] = ACTIONS(2894), + [anon_sym_AMP] = ACTIONS(2894), + [anon_sym_LT_DASH] = ACTIONS(2894), + [anon_sym_LT_LT] = ACTIONS(2894), + [anon_sym_GT_GT] = ACTIONS(2894), + [anon_sym_GT_GT_GT] = ACTIONS(2894), + [anon_sym_AMP_CARET] = ACTIONS(2894), + [anon_sym_AMP_AMP] = ACTIONS(2894), + [anon_sym_PIPE_PIPE] = ACTIONS(2894), + [anon_sym_or] = ACTIONS(2894), + [sym_none] = ACTIONS(2894), + [sym_true] = ACTIONS(2894), + [sym_false] = ACTIONS(2894), + [sym_nil] = ACTIONS(2894), + [anon_sym_QMARK_DOT] = ACTIONS(2894), + [anon_sym_POUND_LBRACK] = ACTIONS(2894), + [anon_sym_if] = ACTIONS(2894), + [anon_sym_DOLLARif] = ACTIONS(2894), + [anon_sym_is] = ACTIONS(2894), + [anon_sym_BANGis] = ACTIONS(2894), + [anon_sym_in] = ACTIONS(2894), + [anon_sym_BANGin] = ACTIONS(2894), + [anon_sym_match] = ACTIONS(2894), + [anon_sym_select] = ACTIONS(2894), + [anon_sym_lock] = ACTIONS(2894), + [anon_sym_rlock] = ACTIONS(2894), + [anon_sym_unsafe] = ACTIONS(2894), + [anon_sym_sql] = ACTIONS(2894), + [sym_int_literal] = ACTIONS(2894), + [sym_float_literal] = ACTIONS(2894), + [sym_rune_literal] = ACTIONS(2894), + [sym_pseudo_compile_time_identifier] = ACTIONS(2894), + [anon_sym_shared] = ACTIONS(2894), + [anon_sym_map_LBRACK] = ACTIONS(2894), + [anon_sym_chan] = ACTIONS(2894), + [anon_sym_thread] = ACTIONS(2894), + [anon_sym_atomic] = ACTIONS(2894), + [anon_sym_assert] = ACTIONS(2894), + [anon_sym_defer] = ACTIONS(2894), + [anon_sym_goto] = ACTIONS(2894), + [anon_sym_break] = ACTIONS(2894), + [anon_sym_continue] = ACTIONS(2894), + [anon_sym_return] = ACTIONS(2894), + [anon_sym_DOLLARfor] = ACTIONS(2894), + [anon_sym_for] = ACTIONS(2894), + [anon_sym_POUND] = ACTIONS(2894), + [anon_sym_asm] = ACTIONS(2894), + [anon_sym_AT_LBRACK] = ACTIONS(2894), + [sym___double_quote] = ACTIONS(2894), + [sym___single_quote] = ACTIONS(2894), + [sym___c_double_quote] = ACTIONS(2894), + [sym___c_single_quote] = ACTIONS(2894), + [sym___r_double_quote] = ACTIONS(2894), + [sym___r_single_quote] = ACTIONS(2894), }, [1056] = { [sym_line_comment] = STATE(1056), [sym_block_comment] = STATE(1056), - [ts_builtin_sym_end] = ACTIONS(2858), - [sym_identifier] = ACTIONS(2860), - [anon_sym_LF] = ACTIONS(2860), - [anon_sym_CR] = ACTIONS(2860), - [anon_sym_CR_LF] = ACTIONS(2860), + [ts_builtin_sym_end] = ACTIONS(2189), + [sym_identifier] = ACTIONS(2191), + [anon_sym_LF] = ACTIONS(2191), + [anon_sym_CR] = ACTIONS(2191), + [anon_sym_CR_LF] = ACTIONS(2191), [anon_sym_SLASH_SLASH] = ACTIONS(497), [anon_sym_SLASH_STAR] = ACTIONS(499), - [anon_sym_DOT] = ACTIONS(2860), - [anon_sym_as] = ACTIONS(2860), - [anon_sym_LBRACE] = ACTIONS(2860), - [anon_sym_COMMA] = ACTIONS(2860), - [anon_sym_const] = ACTIONS(2860), - [anon_sym_LPAREN] = ACTIONS(2860), - [anon_sym___global] = ACTIONS(2860), - [anon_sym_type] = ACTIONS(2860), - [anon_sym_PIPE] = ACTIONS(2860), - [anon_sym_fn] = ACTIONS(2860), - [anon_sym_PLUS] = ACTIONS(2860), - [anon_sym_DASH] = ACTIONS(2860), - [anon_sym_STAR] = ACTIONS(2860), - [anon_sym_SLASH] = ACTIONS(2860), - [anon_sym_PERCENT] = ACTIONS(2860), - [anon_sym_LT] = ACTIONS(2860), - [anon_sym_GT] = ACTIONS(2860), - [anon_sym_EQ_EQ] = ACTIONS(2860), - [anon_sym_BANG_EQ] = ACTIONS(2860), - [anon_sym_LT_EQ] = ACTIONS(2860), - [anon_sym_GT_EQ] = ACTIONS(2860), - [anon_sym_LBRACK] = ACTIONS(2858), - [anon_sym_struct] = ACTIONS(2860), - [anon_sym_union] = ACTIONS(2860), - [anon_sym_pub] = ACTIONS(2860), - [anon_sym_mut] = ACTIONS(2860), - [anon_sym_enum] = ACTIONS(2860), - [anon_sym_interface] = ACTIONS(2860), - [anon_sym_PLUS_PLUS] = ACTIONS(2860), - [anon_sym_DASH_DASH] = ACTIONS(2860), - [anon_sym_QMARK] = ACTIONS(2860), - [anon_sym_BANG] = ACTIONS(2860), - [anon_sym_go] = ACTIONS(2860), - [anon_sym_spawn] = ACTIONS(2860), - [anon_sym_json_DOTdecode] = ACTIONS(2860), - [anon_sym_LBRACK2] = ACTIONS(2860), - [anon_sym_TILDE] = ACTIONS(2860), - [anon_sym_CARET] = ACTIONS(2860), - [anon_sym_AMP] = ACTIONS(2860), - [anon_sym_LT_DASH] = ACTIONS(2860), - [anon_sym_LT_LT] = ACTIONS(2860), - [anon_sym_GT_GT] = ACTIONS(2860), - [anon_sym_GT_GT_GT] = ACTIONS(2860), - [anon_sym_AMP_CARET] = ACTIONS(2860), - [anon_sym_AMP_AMP] = ACTIONS(2860), - [anon_sym_PIPE_PIPE] = ACTIONS(2860), - [anon_sym_or] = ACTIONS(2860), - [sym_none] = ACTIONS(2860), - [sym_true] = ACTIONS(2860), - [sym_false] = ACTIONS(2860), - [sym_nil] = ACTIONS(2860), - [anon_sym_QMARK_DOT] = ACTIONS(2860), - [anon_sym_POUND_LBRACK] = ACTIONS(2860), - [anon_sym_if] = ACTIONS(2860), - [anon_sym_DOLLARif] = ACTIONS(2860), - [anon_sym_is] = ACTIONS(2860), - [anon_sym_BANGis] = ACTIONS(2860), - [anon_sym_in] = ACTIONS(2860), - [anon_sym_BANGin] = ACTIONS(2860), - [anon_sym_match] = ACTIONS(2860), - [anon_sym_select] = ACTIONS(2860), - [anon_sym_lock] = ACTIONS(2860), - [anon_sym_rlock] = ACTIONS(2860), - [anon_sym_unsafe] = ACTIONS(2860), - [anon_sym_sql] = ACTIONS(2860), - [sym_int_literal] = ACTIONS(2860), - [sym_float_literal] = ACTIONS(2860), - [sym_rune_literal] = ACTIONS(2860), - [sym_pseudo_compile_time_identifier] = ACTIONS(2860), - [anon_sym_shared] = ACTIONS(2860), - [anon_sym_map_LBRACK] = ACTIONS(2860), - [anon_sym_chan] = ACTIONS(2860), - [anon_sym_thread] = ACTIONS(2860), - [anon_sym_atomic] = ACTIONS(2860), - [anon_sym_assert] = ACTIONS(2860), - [anon_sym_defer] = ACTIONS(2860), - [anon_sym_goto] = ACTIONS(2860), - [anon_sym_break] = ACTIONS(2860), - [anon_sym_continue] = ACTIONS(2860), - [anon_sym_return] = ACTIONS(2860), - [anon_sym_DOLLARfor] = ACTIONS(2860), - [anon_sym_for] = ACTIONS(2860), - [anon_sym_POUND] = ACTIONS(2860), - [anon_sym_asm] = ACTIONS(2860), - [anon_sym_AT_LBRACK] = ACTIONS(2860), - [sym___double_quote] = ACTIONS(2860), - [sym___single_quote] = ACTIONS(2860), - [sym___c_double_quote] = ACTIONS(2860), - [sym___c_single_quote] = ACTIONS(2860), - [sym___r_double_quote] = ACTIONS(2860), - [sym___r_single_quote] = ACTIONS(2860), + [anon_sym_DOT] = ACTIONS(2191), + [anon_sym_as] = ACTIONS(2191), + [anon_sym_LBRACE] = ACTIONS(2191), + [anon_sym_COMMA] = ACTIONS(2191), + [anon_sym_const] = ACTIONS(2191), + [anon_sym_LPAREN] = ACTIONS(2191), + [anon_sym___global] = ACTIONS(2191), + [anon_sym_type] = ACTIONS(2191), + [anon_sym_PIPE] = ACTIONS(2191), + [anon_sym_fn] = ACTIONS(2191), + [anon_sym_PLUS] = ACTIONS(2191), + [anon_sym_DASH] = ACTIONS(2191), + [anon_sym_STAR] = ACTIONS(2191), + [anon_sym_SLASH] = ACTIONS(2191), + [anon_sym_PERCENT] = ACTIONS(2191), + [anon_sym_LT] = ACTIONS(2191), + [anon_sym_GT] = ACTIONS(2191), + [anon_sym_EQ_EQ] = ACTIONS(2191), + [anon_sym_BANG_EQ] = ACTIONS(2191), + [anon_sym_LT_EQ] = ACTIONS(2191), + [anon_sym_GT_EQ] = ACTIONS(2191), + [anon_sym_LBRACK] = ACTIONS(2189), + [anon_sym_struct] = ACTIONS(2191), + [anon_sym_union] = ACTIONS(2191), + [anon_sym_pub] = ACTIONS(2191), + [anon_sym_mut] = ACTIONS(2191), + [anon_sym_enum] = ACTIONS(2191), + [anon_sym_interface] = ACTIONS(2191), + [anon_sym_PLUS_PLUS] = ACTIONS(2191), + [anon_sym_DASH_DASH] = ACTIONS(2191), + [anon_sym_QMARK] = ACTIONS(2191), + [anon_sym_BANG] = ACTIONS(2191), + [anon_sym_go] = ACTIONS(2191), + [anon_sym_spawn] = ACTIONS(2191), + [anon_sym_json_DOTdecode] = ACTIONS(2191), + [anon_sym_LBRACK2] = ACTIONS(2191), + [anon_sym_TILDE] = ACTIONS(2191), + [anon_sym_CARET] = ACTIONS(2191), + [anon_sym_AMP] = ACTIONS(2191), + [anon_sym_LT_DASH] = ACTIONS(2191), + [anon_sym_LT_LT] = ACTIONS(2191), + [anon_sym_GT_GT] = ACTIONS(2191), + [anon_sym_GT_GT_GT] = ACTIONS(2191), + [anon_sym_AMP_CARET] = ACTIONS(2191), + [anon_sym_AMP_AMP] = ACTIONS(2191), + [anon_sym_PIPE_PIPE] = ACTIONS(2191), + [anon_sym_or] = ACTIONS(2191), + [sym_none] = ACTIONS(2191), + [sym_true] = ACTIONS(2191), + [sym_false] = ACTIONS(2191), + [sym_nil] = ACTIONS(2191), + [anon_sym_QMARK_DOT] = ACTIONS(2191), + [anon_sym_POUND_LBRACK] = ACTIONS(2191), + [anon_sym_if] = ACTIONS(2191), + [anon_sym_DOLLARif] = ACTIONS(2191), + [anon_sym_is] = ACTIONS(2191), + [anon_sym_BANGis] = ACTIONS(2191), + [anon_sym_in] = ACTIONS(2191), + [anon_sym_BANGin] = ACTIONS(2191), + [anon_sym_match] = ACTIONS(2191), + [anon_sym_select] = ACTIONS(2191), + [anon_sym_lock] = ACTIONS(2191), + [anon_sym_rlock] = ACTIONS(2191), + [anon_sym_unsafe] = ACTIONS(2191), + [anon_sym_sql] = ACTIONS(2191), + [sym_int_literal] = ACTIONS(2191), + [sym_float_literal] = ACTIONS(2191), + [sym_rune_literal] = ACTIONS(2191), + [sym_pseudo_compile_time_identifier] = ACTIONS(2191), + [anon_sym_shared] = ACTIONS(2191), + [anon_sym_map_LBRACK] = ACTIONS(2191), + [anon_sym_chan] = ACTIONS(2191), + [anon_sym_thread] = ACTIONS(2191), + [anon_sym_atomic] = ACTIONS(2191), + [anon_sym_assert] = ACTIONS(2191), + [anon_sym_defer] = ACTIONS(2191), + [anon_sym_goto] = ACTIONS(2191), + [anon_sym_break] = ACTIONS(2191), + [anon_sym_continue] = ACTIONS(2191), + [anon_sym_return] = ACTIONS(2191), + [anon_sym_DOLLARfor] = ACTIONS(2191), + [anon_sym_for] = ACTIONS(2191), + [anon_sym_POUND] = ACTIONS(2191), + [anon_sym_asm] = ACTIONS(2191), + [anon_sym_AT_LBRACK] = ACTIONS(2191), + [sym___double_quote] = ACTIONS(2191), + [sym___single_quote] = ACTIONS(2191), + [sym___c_double_quote] = ACTIONS(2191), + [sym___c_single_quote] = ACTIONS(2191), + [sym___r_double_quote] = ACTIONS(2191), + [sym___r_single_quote] = ACTIONS(2191), }, [1057] = { [sym_line_comment] = STATE(1057), [sym_block_comment] = STATE(1057), - [ts_builtin_sym_end] = ACTIONS(2854), - [sym_identifier] = ACTIONS(2856), - [anon_sym_LF] = ACTIONS(2856), - [anon_sym_CR] = ACTIONS(2856), - [anon_sym_CR_LF] = ACTIONS(2856), + [ts_builtin_sym_end] = ACTIONS(2674), + [sym_identifier] = ACTIONS(2676), + [anon_sym_LF] = ACTIONS(2676), + [anon_sym_CR] = ACTIONS(2676), + [anon_sym_CR_LF] = ACTIONS(2676), [anon_sym_SLASH_SLASH] = ACTIONS(497), [anon_sym_SLASH_STAR] = ACTIONS(499), - [anon_sym_DOT] = ACTIONS(2856), - [anon_sym_as] = ACTIONS(2856), - [anon_sym_LBRACE] = ACTIONS(2856), - [anon_sym_COMMA] = ACTIONS(2856), - [anon_sym_const] = ACTIONS(2856), - [anon_sym_LPAREN] = ACTIONS(2856), - [anon_sym___global] = ACTIONS(2856), - [anon_sym_type] = ACTIONS(2856), - [anon_sym_PIPE] = ACTIONS(2856), - [anon_sym_fn] = ACTIONS(2856), - [anon_sym_PLUS] = ACTIONS(2856), - [anon_sym_DASH] = ACTIONS(2856), - [anon_sym_STAR] = ACTIONS(2856), - [anon_sym_SLASH] = ACTIONS(2856), - [anon_sym_PERCENT] = ACTIONS(2856), - [anon_sym_LT] = ACTIONS(2856), - [anon_sym_GT] = ACTIONS(2856), - [anon_sym_EQ_EQ] = ACTIONS(2856), - [anon_sym_BANG_EQ] = ACTIONS(2856), - [anon_sym_LT_EQ] = ACTIONS(2856), - [anon_sym_GT_EQ] = ACTIONS(2856), - [anon_sym_LBRACK] = ACTIONS(2854), - [anon_sym_struct] = ACTIONS(2856), - [anon_sym_union] = ACTIONS(2856), - [anon_sym_pub] = ACTIONS(2856), - [anon_sym_mut] = ACTIONS(2856), - [anon_sym_enum] = ACTIONS(2856), - [anon_sym_interface] = ACTIONS(2856), - [anon_sym_PLUS_PLUS] = ACTIONS(2856), - [anon_sym_DASH_DASH] = ACTIONS(2856), - [anon_sym_QMARK] = ACTIONS(2856), - [anon_sym_BANG] = ACTIONS(2856), - [anon_sym_go] = ACTIONS(2856), - [anon_sym_spawn] = ACTIONS(2856), - [anon_sym_json_DOTdecode] = ACTIONS(2856), - [anon_sym_LBRACK2] = ACTIONS(2856), - [anon_sym_TILDE] = ACTIONS(2856), - [anon_sym_CARET] = ACTIONS(2856), - [anon_sym_AMP] = ACTIONS(2856), - [anon_sym_LT_DASH] = ACTIONS(2856), - [anon_sym_LT_LT] = ACTIONS(2856), - [anon_sym_GT_GT] = ACTIONS(2856), - [anon_sym_GT_GT_GT] = ACTIONS(2856), - [anon_sym_AMP_CARET] = ACTIONS(2856), - [anon_sym_AMP_AMP] = ACTIONS(2856), - [anon_sym_PIPE_PIPE] = ACTIONS(2856), - [anon_sym_or] = ACTIONS(2856), - [sym_none] = ACTIONS(2856), - [sym_true] = ACTIONS(2856), - [sym_false] = ACTIONS(2856), - [sym_nil] = ACTIONS(2856), - [anon_sym_QMARK_DOT] = ACTIONS(2856), - [anon_sym_POUND_LBRACK] = ACTIONS(2856), - [anon_sym_if] = ACTIONS(2856), - [anon_sym_DOLLARif] = ACTIONS(2856), - [anon_sym_is] = ACTIONS(2856), - [anon_sym_BANGis] = ACTIONS(2856), - [anon_sym_in] = ACTIONS(2856), - [anon_sym_BANGin] = ACTIONS(2856), - [anon_sym_match] = ACTIONS(2856), - [anon_sym_select] = ACTIONS(2856), - [anon_sym_lock] = ACTIONS(2856), - [anon_sym_rlock] = ACTIONS(2856), - [anon_sym_unsafe] = ACTIONS(2856), - [anon_sym_sql] = ACTIONS(2856), - [sym_int_literal] = ACTIONS(2856), - [sym_float_literal] = ACTIONS(2856), - [sym_rune_literal] = ACTIONS(2856), - [sym_pseudo_compile_time_identifier] = ACTIONS(2856), - [anon_sym_shared] = ACTIONS(2856), - [anon_sym_map_LBRACK] = ACTIONS(2856), - [anon_sym_chan] = ACTIONS(2856), - [anon_sym_thread] = ACTIONS(2856), - [anon_sym_atomic] = ACTIONS(2856), - [anon_sym_assert] = ACTIONS(2856), - [anon_sym_defer] = ACTIONS(2856), - [anon_sym_goto] = ACTIONS(2856), - [anon_sym_break] = ACTIONS(2856), - [anon_sym_continue] = ACTIONS(2856), - [anon_sym_return] = ACTIONS(2856), - [anon_sym_DOLLARfor] = ACTIONS(2856), - [anon_sym_for] = ACTIONS(2856), - [anon_sym_POUND] = ACTIONS(2856), - [anon_sym_asm] = ACTIONS(2856), - [anon_sym_AT_LBRACK] = ACTIONS(2856), - [sym___double_quote] = ACTIONS(2856), - [sym___single_quote] = ACTIONS(2856), - [sym___c_double_quote] = ACTIONS(2856), - [sym___c_single_quote] = ACTIONS(2856), - [sym___r_double_quote] = ACTIONS(2856), - [sym___r_single_quote] = ACTIONS(2856), + [anon_sym_DOT] = ACTIONS(2676), + [anon_sym_as] = ACTIONS(2676), + [anon_sym_LBRACE] = ACTIONS(2676), + [anon_sym_COMMA] = ACTIONS(1987), + [anon_sym_const] = ACTIONS(2676), + [anon_sym_LPAREN] = ACTIONS(2676), + [anon_sym___global] = ACTIONS(2676), + [anon_sym_type] = ACTIONS(2676), + [anon_sym_PIPE] = ACTIONS(2676), + [anon_sym_fn] = ACTIONS(2676), + [anon_sym_PLUS] = ACTIONS(2676), + [anon_sym_DASH] = ACTIONS(2676), + [anon_sym_STAR] = ACTIONS(2676), + [anon_sym_SLASH] = ACTIONS(2676), + [anon_sym_PERCENT] = ACTIONS(2676), + [anon_sym_LT] = ACTIONS(2676), + [anon_sym_GT] = ACTIONS(2676), + [anon_sym_EQ_EQ] = ACTIONS(2676), + [anon_sym_BANG_EQ] = ACTIONS(2676), + [anon_sym_LT_EQ] = ACTIONS(2676), + [anon_sym_GT_EQ] = ACTIONS(2676), + [anon_sym_LBRACK] = ACTIONS(2674), + [anon_sym_struct] = ACTIONS(2676), + [anon_sym_union] = ACTIONS(2676), + [anon_sym_pub] = ACTIONS(2676), + [anon_sym_mut] = ACTIONS(2676), + [anon_sym_enum] = ACTIONS(2676), + [anon_sym_interface] = ACTIONS(2676), + [anon_sym_PLUS_PLUS] = ACTIONS(2676), + [anon_sym_DASH_DASH] = ACTIONS(2676), + [anon_sym_QMARK] = ACTIONS(2676), + [anon_sym_BANG] = ACTIONS(2676), + [anon_sym_go] = ACTIONS(2676), + [anon_sym_spawn] = ACTIONS(2676), + [anon_sym_json_DOTdecode] = ACTIONS(2676), + [anon_sym_LBRACK2] = ACTIONS(2676), + [anon_sym_TILDE] = ACTIONS(2676), + [anon_sym_CARET] = ACTIONS(2676), + [anon_sym_AMP] = ACTIONS(2676), + [anon_sym_LT_DASH] = ACTIONS(2676), + [anon_sym_LT_LT] = ACTIONS(2676), + [anon_sym_GT_GT] = ACTIONS(2676), + [anon_sym_GT_GT_GT] = ACTIONS(2676), + [anon_sym_AMP_CARET] = ACTIONS(2676), + [anon_sym_AMP_AMP] = ACTIONS(2676), + [anon_sym_PIPE_PIPE] = ACTIONS(2676), + [anon_sym_or] = ACTIONS(2676), + [sym_none] = ACTIONS(2676), + [sym_true] = ACTIONS(2676), + [sym_false] = ACTIONS(2676), + [sym_nil] = ACTIONS(2676), + [anon_sym_QMARK_DOT] = ACTIONS(2676), + [anon_sym_POUND_LBRACK] = ACTIONS(2676), + [anon_sym_if] = ACTIONS(2676), + [anon_sym_DOLLARif] = ACTIONS(2676), + [anon_sym_is] = ACTIONS(2676), + [anon_sym_BANGis] = ACTIONS(2676), + [anon_sym_in] = ACTIONS(2676), + [anon_sym_BANGin] = ACTIONS(2676), + [anon_sym_match] = ACTIONS(2676), + [anon_sym_select] = ACTIONS(2676), + [anon_sym_lock] = ACTIONS(2676), + [anon_sym_rlock] = ACTIONS(2676), + [anon_sym_unsafe] = ACTIONS(2676), + [anon_sym_sql] = ACTIONS(2676), + [sym_int_literal] = ACTIONS(2676), + [sym_float_literal] = ACTIONS(2676), + [sym_rune_literal] = ACTIONS(2676), + [sym_pseudo_compile_time_identifier] = ACTIONS(2676), + [anon_sym_shared] = ACTIONS(2676), + [anon_sym_map_LBRACK] = ACTIONS(2676), + [anon_sym_chan] = ACTIONS(2676), + [anon_sym_thread] = ACTIONS(2676), + [anon_sym_atomic] = ACTIONS(2676), + [anon_sym_assert] = ACTIONS(2676), + [anon_sym_defer] = ACTIONS(2676), + [anon_sym_goto] = ACTIONS(2676), + [anon_sym_break] = ACTIONS(2676), + [anon_sym_continue] = ACTIONS(2676), + [anon_sym_return] = ACTIONS(2676), + [anon_sym_DOLLARfor] = ACTIONS(2676), + [anon_sym_for] = ACTIONS(2676), + [anon_sym_POUND] = ACTIONS(2676), + [anon_sym_asm] = ACTIONS(2676), + [anon_sym_AT_LBRACK] = ACTIONS(2676), + [sym___double_quote] = ACTIONS(2676), + [sym___single_quote] = ACTIONS(2676), + [sym___c_double_quote] = ACTIONS(2676), + [sym___c_single_quote] = ACTIONS(2676), + [sym___r_double_quote] = ACTIONS(2676), + [sym___r_single_quote] = ACTIONS(2676), }, [1058] = { [sym_line_comment] = STATE(1058), [sym_block_comment] = STATE(1058), - [ts_builtin_sym_end] = ACTIONS(2914), - [sym_identifier] = ACTIONS(2916), - [anon_sym_LF] = ACTIONS(2916), - [anon_sym_CR] = ACTIONS(2916), - [anon_sym_CR_LF] = ACTIONS(2916), + [ts_builtin_sym_end] = ACTIONS(2666), + [sym_identifier] = ACTIONS(2668), + [anon_sym_LF] = ACTIONS(2668), + [anon_sym_CR] = ACTIONS(2668), + [anon_sym_CR_LF] = ACTIONS(2668), [anon_sym_SLASH_SLASH] = ACTIONS(497), [anon_sym_SLASH_STAR] = ACTIONS(499), - [anon_sym_DOT] = ACTIONS(2916), - [anon_sym_as] = ACTIONS(2916), - [anon_sym_LBRACE] = ACTIONS(2916), - [anon_sym_COMMA] = ACTIONS(2916), - [anon_sym_const] = ACTIONS(2916), - [anon_sym_LPAREN] = ACTIONS(2916), - [anon_sym___global] = ACTIONS(2916), - [anon_sym_type] = ACTIONS(2916), - [anon_sym_PIPE] = ACTIONS(2916), - [anon_sym_fn] = ACTIONS(2916), - [anon_sym_PLUS] = ACTIONS(2916), - [anon_sym_DASH] = ACTIONS(2916), - [anon_sym_STAR] = ACTIONS(2916), - [anon_sym_SLASH] = ACTIONS(2916), - [anon_sym_PERCENT] = ACTIONS(2916), - [anon_sym_LT] = ACTIONS(2916), - [anon_sym_GT] = ACTIONS(2916), - [anon_sym_EQ_EQ] = ACTIONS(2916), - [anon_sym_BANG_EQ] = ACTIONS(2916), - [anon_sym_LT_EQ] = ACTIONS(2916), - [anon_sym_GT_EQ] = ACTIONS(2916), - [anon_sym_LBRACK] = ACTIONS(2914), - [anon_sym_struct] = ACTIONS(2916), - [anon_sym_union] = ACTIONS(2916), - [anon_sym_pub] = ACTIONS(2916), - [anon_sym_mut] = ACTIONS(2916), - [anon_sym_enum] = ACTIONS(2916), - [anon_sym_interface] = ACTIONS(2916), - [anon_sym_PLUS_PLUS] = ACTIONS(2916), - [anon_sym_DASH_DASH] = ACTIONS(2916), - [anon_sym_QMARK] = ACTIONS(2916), - [anon_sym_BANG] = ACTIONS(2916), - [anon_sym_go] = ACTIONS(2916), - [anon_sym_spawn] = ACTIONS(2916), - [anon_sym_json_DOTdecode] = ACTIONS(2916), - [anon_sym_LBRACK2] = ACTIONS(2916), - [anon_sym_TILDE] = ACTIONS(2916), - [anon_sym_CARET] = ACTIONS(2916), - [anon_sym_AMP] = ACTIONS(2916), - [anon_sym_LT_DASH] = ACTIONS(2916), - [anon_sym_LT_LT] = ACTIONS(2916), - [anon_sym_GT_GT] = ACTIONS(2916), - [anon_sym_GT_GT_GT] = ACTIONS(2916), - [anon_sym_AMP_CARET] = ACTIONS(2916), - [anon_sym_AMP_AMP] = ACTIONS(2916), - [anon_sym_PIPE_PIPE] = ACTIONS(2916), - [anon_sym_or] = ACTIONS(2916), - [sym_none] = ACTIONS(2916), - [sym_true] = ACTIONS(2916), - [sym_false] = ACTIONS(2916), - [sym_nil] = ACTIONS(2916), - [anon_sym_QMARK_DOT] = ACTIONS(2916), - [anon_sym_POUND_LBRACK] = ACTIONS(2916), - [anon_sym_if] = ACTIONS(2916), - [anon_sym_DOLLARif] = ACTIONS(2916), - [anon_sym_is] = ACTIONS(2916), - [anon_sym_BANGis] = ACTIONS(2916), - [anon_sym_in] = ACTIONS(2916), - [anon_sym_BANGin] = ACTIONS(2916), - [anon_sym_match] = ACTIONS(2916), - [anon_sym_select] = ACTIONS(2916), - [anon_sym_lock] = ACTIONS(2916), - [anon_sym_rlock] = ACTIONS(2916), - [anon_sym_unsafe] = ACTIONS(2916), - [anon_sym_sql] = ACTIONS(2916), - [sym_int_literal] = ACTIONS(2916), - [sym_float_literal] = ACTIONS(2916), - [sym_rune_literal] = ACTIONS(2916), - [sym_pseudo_compile_time_identifier] = ACTIONS(2916), - [anon_sym_shared] = ACTIONS(2916), - [anon_sym_map_LBRACK] = ACTIONS(2916), - [anon_sym_chan] = ACTIONS(2916), - [anon_sym_thread] = ACTIONS(2916), - [anon_sym_atomic] = ACTIONS(2916), - [anon_sym_assert] = ACTIONS(2916), - [anon_sym_defer] = ACTIONS(2916), - [anon_sym_goto] = ACTIONS(2916), - [anon_sym_break] = ACTIONS(2916), - [anon_sym_continue] = ACTIONS(2916), - [anon_sym_return] = ACTIONS(2916), - [anon_sym_DOLLARfor] = ACTIONS(2916), - [anon_sym_for] = ACTIONS(2916), - [anon_sym_POUND] = ACTIONS(2916), - [anon_sym_asm] = ACTIONS(2916), - [anon_sym_AT_LBRACK] = ACTIONS(2916), - [sym___double_quote] = ACTIONS(2916), - [sym___single_quote] = ACTIONS(2916), - [sym___c_double_quote] = ACTIONS(2916), - [sym___c_single_quote] = ACTIONS(2916), - [sym___r_double_quote] = ACTIONS(2916), - [sym___r_single_quote] = ACTIONS(2916), + [anon_sym_DOT] = ACTIONS(2668), + [anon_sym_as] = ACTIONS(2668), + [anon_sym_LBRACE] = ACTIONS(2668), + [anon_sym_COMMA] = ACTIONS(2668), + [anon_sym_const] = ACTIONS(2668), + [anon_sym_LPAREN] = ACTIONS(2668), + [anon_sym___global] = ACTIONS(2668), + [anon_sym_type] = ACTIONS(2668), + [anon_sym_PIPE] = ACTIONS(2668), + [anon_sym_fn] = ACTIONS(2668), + [anon_sym_PLUS] = ACTIONS(2668), + [anon_sym_DASH] = ACTIONS(2668), + [anon_sym_STAR] = ACTIONS(2668), + [anon_sym_SLASH] = ACTIONS(2668), + [anon_sym_PERCENT] = ACTIONS(2668), + [anon_sym_LT] = ACTIONS(2668), + [anon_sym_GT] = ACTIONS(2668), + [anon_sym_EQ_EQ] = ACTIONS(2668), + [anon_sym_BANG_EQ] = ACTIONS(2668), + [anon_sym_LT_EQ] = ACTIONS(2668), + [anon_sym_GT_EQ] = ACTIONS(2668), + [anon_sym_LBRACK] = ACTIONS(2666), + [anon_sym_struct] = ACTIONS(2668), + [anon_sym_union] = ACTIONS(2668), + [anon_sym_pub] = ACTIONS(2668), + [anon_sym_mut] = ACTIONS(2668), + [anon_sym_enum] = ACTIONS(2668), + [anon_sym_interface] = ACTIONS(2668), + [anon_sym_PLUS_PLUS] = ACTIONS(2668), + [anon_sym_DASH_DASH] = ACTIONS(2668), + [anon_sym_QMARK] = ACTIONS(2668), + [anon_sym_BANG] = ACTIONS(2668), + [anon_sym_go] = ACTIONS(2668), + [anon_sym_spawn] = ACTIONS(2668), + [anon_sym_json_DOTdecode] = ACTIONS(2668), + [anon_sym_LBRACK2] = ACTIONS(2668), + [anon_sym_TILDE] = ACTIONS(2668), + [anon_sym_CARET] = ACTIONS(2668), + [anon_sym_AMP] = ACTIONS(2668), + [anon_sym_LT_DASH] = ACTIONS(2668), + [anon_sym_LT_LT] = ACTIONS(2668), + [anon_sym_GT_GT] = ACTIONS(2668), + [anon_sym_GT_GT_GT] = ACTIONS(2668), + [anon_sym_AMP_CARET] = ACTIONS(2668), + [anon_sym_AMP_AMP] = ACTIONS(2668), + [anon_sym_PIPE_PIPE] = ACTIONS(2668), + [anon_sym_or] = ACTIONS(2668), + [sym_none] = ACTIONS(2668), + [sym_true] = ACTIONS(2668), + [sym_false] = ACTIONS(2668), + [sym_nil] = ACTIONS(2668), + [anon_sym_QMARK_DOT] = ACTIONS(2668), + [anon_sym_POUND_LBRACK] = ACTIONS(2668), + [anon_sym_if] = ACTIONS(2668), + [anon_sym_DOLLARif] = ACTIONS(2668), + [anon_sym_is] = ACTIONS(2668), + [anon_sym_BANGis] = ACTIONS(2668), + [anon_sym_in] = ACTIONS(2668), + [anon_sym_BANGin] = ACTIONS(2668), + [anon_sym_match] = ACTIONS(2668), + [anon_sym_select] = ACTIONS(2668), + [anon_sym_lock] = ACTIONS(2668), + [anon_sym_rlock] = ACTIONS(2668), + [anon_sym_unsafe] = ACTIONS(2668), + [anon_sym_sql] = ACTIONS(2668), + [sym_int_literal] = ACTIONS(2668), + [sym_float_literal] = ACTIONS(2668), + [sym_rune_literal] = ACTIONS(2668), + [sym_pseudo_compile_time_identifier] = ACTIONS(2668), + [anon_sym_shared] = ACTIONS(2668), + [anon_sym_map_LBRACK] = ACTIONS(2668), + [anon_sym_chan] = ACTIONS(2668), + [anon_sym_thread] = ACTIONS(2668), + [anon_sym_atomic] = ACTIONS(2668), + [anon_sym_assert] = ACTIONS(2668), + [anon_sym_defer] = ACTIONS(2668), + [anon_sym_goto] = ACTIONS(2668), + [anon_sym_break] = ACTIONS(2668), + [anon_sym_continue] = ACTIONS(2668), + [anon_sym_return] = ACTIONS(2668), + [anon_sym_DOLLARfor] = ACTIONS(2668), + [anon_sym_for] = ACTIONS(2668), + [anon_sym_POUND] = ACTIONS(2668), + [anon_sym_asm] = ACTIONS(2668), + [anon_sym_AT_LBRACK] = ACTIONS(2668), + [sym___double_quote] = ACTIONS(2668), + [sym___single_quote] = ACTIONS(2668), + [sym___c_double_quote] = ACTIONS(2668), + [sym___c_single_quote] = ACTIONS(2668), + [sym___r_double_quote] = ACTIONS(2668), + [sym___r_single_quote] = ACTIONS(2668), }, [1059] = { [sym_line_comment] = STATE(1059), [sym_block_comment] = STATE(1059), - [ts_builtin_sym_end] = ACTIONS(2223), - [sym_identifier] = ACTIONS(2225), - [anon_sym_LF] = ACTIONS(2225), - [anon_sym_CR] = ACTIONS(2225), - [anon_sym_CR_LF] = ACTIONS(2225), + [ts_builtin_sym_end] = ACTIONS(2852), + [sym_identifier] = ACTIONS(2854), + [anon_sym_LF] = ACTIONS(2854), + [anon_sym_CR] = ACTIONS(2854), + [anon_sym_CR_LF] = ACTIONS(2854), [anon_sym_SLASH_SLASH] = ACTIONS(497), [anon_sym_SLASH_STAR] = ACTIONS(499), - [anon_sym_DOT] = ACTIONS(2225), - [anon_sym_as] = ACTIONS(2225), - [anon_sym_LBRACE] = ACTIONS(2225), - [anon_sym_COMMA] = ACTIONS(2225), - [anon_sym_const] = ACTIONS(2225), - [anon_sym_LPAREN] = ACTIONS(2225), - [anon_sym___global] = ACTIONS(2225), - [anon_sym_type] = ACTIONS(2225), - [anon_sym_PIPE] = ACTIONS(2225), - [anon_sym_fn] = ACTIONS(2225), - [anon_sym_PLUS] = ACTIONS(2225), - [anon_sym_DASH] = ACTIONS(2225), - [anon_sym_STAR] = ACTIONS(2225), - [anon_sym_SLASH] = ACTIONS(2225), - [anon_sym_PERCENT] = ACTIONS(2225), - [anon_sym_LT] = ACTIONS(2225), - [anon_sym_GT] = ACTIONS(2225), - [anon_sym_EQ_EQ] = ACTIONS(2225), - [anon_sym_BANG_EQ] = ACTIONS(2225), - [anon_sym_LT_EQ] = ACTIONS(2225), - [anon_sym_GT_EQ] = ACTIONS(2225), - [anon_sym_LBRACK] = ACTIONS(2223), - [anon_sym_struct] = ACTIONS(2225), - [anon_sym_union] = ACTIONS(2225), - [anon_sym_pub] = ACTIONS(2225), - [anon_sym_mut] = ACTIONS(2225), - [anon_sym_enum] = ACTIONS(2225), - [anon_sym_interface] = ACTIONS(2225), - [anon_sym_PLUS_PLUS] = ACTIONS(2225), - [anon_sym_DASH_DASH] = ACTIONS(2225), - [anon_sym_QMARK] = ACTIONS(2225), - [anon_sym_BANG] = ACTIONS(2225), - [anon_sym_go] = ACTIONS(2225), - [anon_sym_spawn] = ACTIONS(2225), - [anon_sym_json_DOTdecode] = ACTIONS(2225), - [anon_sym_LBRACK2] = ACTIONS(2225), - [anon_sym_TILDE] = ACTIONS(2225), - [anon_sym_CARET] = ACTIONS(2225), - [anon_sym_AMP] = ACTIONS(2225), - [anon_sym_LT_DASH] = ACTIONS(2225), - [anon_sym_LT_LT] = ACTIONS(2225), - [anon_sym_GT_GT] = ACTIONS(2225), - [anon_sym_GT_GT_GT] = ACTIONS(2225), - [anon_sym_AMP_CARET] = ACTIONS(2225), - [anon_sym_AMP_AMP] = ACTIONS(2225), - [anon_sym_PIPE_PIPE] = ACTIONS(2225), - [anon_sym_or] = ACTIONS(2225), - [sym_none] = ACTIONS(2225), - [sym_true] = ACTIONS(2225), - [sym_false] = ACTIONS(2225), - [sym_nil] = ACTIONS(2225), - [anon_sym_QMARK_DOT] = ACTIONS(2225), - [anon_sym_POUND_LBRACK] = ACTIONS(2225), - [anon_sym_if] = ACTIONS(2225), - [anon_sym_DOLLARif] = ACTIONS(2225), - [anon_sym_is] = ACTIONS(2225), - [anon_sym_BANGis] = ACTIONS(2225), - [anon_sym_in] = ACTIONS(2225), - [anon_sym_BANGin] = ACTIONS(2225), - [anon_sym_match] = ACTIONS(2225), - [anon_sym_select] = ACTIONS(2225), - [anon_sym_lock] = ACTIONS(2225), - [anon_sym_rlock] = ACTIONS(2225), - [anon_sym_unsafe] = ACTIONS(2225), - [anon_sym_sql] = ACTIONS(2225), - [sym_int_literal] = ACTIONS(2225), - [sym_float_literal] = ACTIONS(2225), - [sym_rune_literal] = ACTIONS(2225), - [sym_pseudo_compile_time_identifier] = ACTIONS(2225), - [anon_sym_shared] = ACTIONS(2225), - [anon_sym_map_LBRACK] = ACTIONS(2225), - [anon_sym_chan] = ACTIONS(2225), - [anon_sym_thread] = ACTIONS(2225), - [anon_sym_atomic] = ACTIONS(2225), - [anon_sym_assert] = ACTIONS(2225), - [anon_sym_defer] = ACTIONS(2225), - [anon_sym_goto] = ACTIONS(2225), - [anon_sym_break] = ACTIONS(2225), - [anon_sym_continue] = ACTIONS(2225), - [anon_sym_return] = ACTIONS(2225), - [anon_sym_DOLLARfor] = ACTIONS(2225), - [anon_sym_for] = ACTIONS(2225), - [anon_sym_POUND] = ACTIONS(2225), - [anon_sym_asm] = ACTIONS(2225), - [anon_sym_AT_LBRACK] = ACTIONS(2225), - [sym___double_quote] = ACTIONS(2225), - [sym___single_quote] = ACTIONS(2225), - [sym___c_double_quote] = ACTIONS(2225), - [sym___c_single_quote] = ACTIONS(2225), - [sym___r_double_quote] = ACTIONS(2225), - [sym___r_single_quote] = ACTIONS(2225), + [anon_sym_DOT] = ACTIONS(2854), + [anon_sym_as] = ACTIONS(2854), + [anon_sym_LBRACE] = ACTIONS(2854), + [anon_sym_COMMA] = ACTIONS(2854), + [anon_sym_const] = ACTIONS(2854), + [anon_sym_LPAREN] = ACTIONS(2854), + [anon_sym___global] = ACTIONS(2854), + [anon_sym_type] = ACTIONS(2854), + [anon_sym_PIPE] = ACTIONS(2854), + [anon_sym_fn] = ACTIONS(2854), + [anon_sym_PLUS] = ACTIONS(2854), + [anon_sym_DASH] = ACTIONS(2854), + [anon_sym_STAR] = ACTIONS(2854), + [anon_sym_SLASH] = ACTIONS(2854), + [anon_sym_PERCENT] = ACTIONS(2854), + [anon_sym_LT] = ACTIONS(2854), + [anon_sym_GT] = ACTIONS(2854), + [anon_sym_EQ_EQ] = ACTIONS(2854), + [anon_sym_BANG_EQ] = ACTIONS(2854), + [anon_sym_LT_EQ] = ACTIONS(2854), + [anon_sym_GT_EQ] = ACTIONS(2854), + [anon_sym_LBRACK] = ACTIONS(2852), + [anon_sym_struct] = ACTIONS(2854), + [anon_sym_union] = ACTIONS(2854), + [anon_sym_pub] = ACTIONS(2854), + [anon_sym_mut] = ACTIONS(2854), + [anon_sym_enum] = ACTIONS(2854), + [anon_sym_interface] = ACTIONS(2854), + [anon_sym_PLUS_PLUS] = ACTIONS(2854), + [anon_sym_DASH_DASH] = ACTIONS(2854), + [anon_sym_QMARK] = ACTIONS(2854), + [anon_sym_BANG] = ACTIONS(2854), + [anon_sym_go] = ACTIONS(2854), + [anon_sym_spawn] = ACTIONS(2854), + [anon_sym_json_DOTdecode] = ACTIONS(2854), + [anon_sym_LBRACK2] = ACTIONS(2854), + [anon_sym_TILDE] = ACTIONS(2854), + [anon_sym_CARET] = ACTIONS(2854), + [anon_sym_AMP] = ACTIONS(2854), + [anon_sym_LT_DASH] = ACTIONS(2854), + [anon_sym_LT_LT] = ACTIONS(2854), + [anon_sym_GT_GT] = ACTIONS(2854), + [anon_sym_GT_GT_GT] = ACTIONS(2854), + [anon_sym_AMP_CARET] = ACTIONS(2854), + [anon_sym_AMP_AMP] = ACTIONS(2854), + [anon_sym_PIPE_PIPE] = ACTIONS(2854), + [anon_sym_or] = ACTIONS(2854), + [sym_none] = ACTIONS(2854), + [sym_true] = ACTIONS(2854), + [sym_false] = ACTIONS(2854), + [sym_nil] = ACTIONS(2854), + [anon_sym_QMARK_DOT] = ACTIONS(2854), + [anon_sym_POUND_LBRACK] = ACTIONS(2854), + [anon_sym_if] = ACTIONS(2854), + [anon_sym_DOLLARif] = ACTIONS(2854), + [anon_sym_is] = ACTIONS(2854), + [anon_sym_BANGis] = ACTIONS(2854), + [anon_sym_in] = ACTIONS(2854), + [anon_sym_BANGin] = ACTIONS(2854), + [anon_sym_match] = ACTIONS(2854), + [anon_sym_select] = ACTIONS(2854), + [anon_sym_lock] = ACTIONS(2854), + [anon_sym_rlock] = ACTIONS(2854), + [anon_sym_unsafe] = ACTIONS(2854), + [anon_sym_sql] = ACTIONS(2854), + [sym_int_literal] = ACTIONS(2854), + [sym_float_literal] = ACTIONS(2854), + [sym_rune_literal] = ACTIONS(2854), + [sym_pseudo_compile_time_identifier] = ACTIONS(2854), + [anon_sym_shared] = ACTIONS(2854), + [anon_sym_map_LBRACK] = ACTIONS(2854), + [anon_sym_chan] = ACTIONS(2854), + [anon_sym_thread] = ACTIONS(2854), + [anon_sym_atomic] = ACTIONS(2854), + [anon_sym_assert] = ACTIONS(2854), + [anon_sym_defer] = ACTIONS(2854), + [anon_sym_goto] = ACTIONS(2854), + [anon_sym_break] = ACTIONS(2854), + [anon_sym_continue] = ACTIONS(2854), + [anon_sym_return] = ACTIONS(2854), + [anon_sym_DOLLARfor] = ACTIONS(2854), + [anon_sym_for] = ACTIONS(2854), + [anon_sym_POUND] = ACTIONS(2854), + [anon_sym_asm] = ACTIONS(2854), + [anon_sym_AT_LBRACK] = ACTIONS(2854), + [sym___double_quote] = ACTIONS(2854), + [sym___single_quote] = ACTIONS(2854), + [sym___c_double_quote] = ACTIONS(2854), + [sym___c_single_quote] = ACTIONS(2854), + [sym___r_double_quote] = ACTIONS(2854), + [sym___r_single_quote] = ACTIONS(2854), }, [1060] = { [sym_line_comment] = STATE(1060), [sym_block_comment] = STATE(1060), - [ts_builtin_sym_end] = ACTIONS(2215), - [sym_identifier] = ACTIONS(2217), - [anon_sym_LF] = ACTIONS(2217), - [anon_sym_CR] = ACTIONS(2217), - [anon_sym_CR_LF] = ACTIONS(2217), + [ts_builtin_sym_end] = ACTIONS(2786), + [sym_identifier] = ACTIONS(2788), + [anon_sym_LF] = ACTIONS(2788), + [anon_sym_CR] = ACTIONS(2788), + [anon_sym_CR_LF] = ACTIONS(2788), [anon_sym_SLASH_SLASH] = ACTIONS(497), [anon_sym_SLASH_STAR] = ACTIONS(499), - [anon_sym_DOT] = ACTIONS(2217), - [anon_sym_as] = ACTIONS(2217), - [anon_sym_LBRACE] = ACTIONS(2217), - [anon_sym_COMMA] = ACTIONS(2217), - [anon_sym_const] = ACTIONS(2217), - [anon_sym_LPAREN] = ACTIONS(2217), - [anon_sym___global] = ACTIONS(2217), - [anon_sym_type] = ACTIONS(2217), - [anon_sym_PIPE] = ACTIONS(2217), - [anon_sym_fn] = ACTIONS(2217), - [anon_sym_PLUS] = ACTIONS(2217), - [anon_sym_DASH] = ACTIONS(2217), - [anon_sym_STAR] = ACTIONS(2217), - [anon_sym_SLASH] = ACTIONS(2217), - [anon_sym_PERCENT] = ACTIONS(2217), - [anon_sym_LT] = ACTIONS(2217), - [anon_sym_GT] = ACTIONS(2217), - [anon_sym_EQ_EQ] = ACTIONS(2217), - [anon_sym_BANG_EQ] = ACTIONS(2217), - [anon_sym_LT_EQ] = ACTIONS(2217), - [anon_sym_GT_EQ] = ACTIONS(2217), - [anon_sym_LBRACK] = ACTIONS(2215), - [anon_sym_struct] = ACTIONS(2217), - [anon_sym_union] = ACTIONS(2217), - [anon_sym_pub] = ACTIONS(2217), - [anon_sym_mut] = ACTIONS(2217), - [anon_sym_enum] = ACTIONS(2217), - [anon_sym_interface] = ACTIONS(2217), - [anon_sym_PLUS_PLUS] = ACTIONS(2217), - [anon_sym_DASH_DASH] = ACTIONS(2217), - [anon_sym_QMARK] = ACTIONS(2217), - [anon_sym_BANG] = ACTIONS(2217), - [anon_sym_go] = ACTIONS(2217), - [anon_sym_spawn] = ACTIONS(2217), - [anon_sym_json_DOTdecode] = ACTIONS(2217), - [anon_sym_LBRACK2] = ACTIONS(2217), - [anon_sym_TILDE] = ACTIONS(2217), - [anon_sym_CARET] = ACTIONS(2217), - [anon_sym_AMP] = ACTIONS(2217), - [anon_sym_LT_DASH] = ACTIONS(2217), - [anon_sym_LT_LT] = ACTIONS(2217), - [anon_sym_GT_GT] = ACTIONS(2217), - [anon_sym_GT_GT_GT] = ACTIONS(2217), - [anon_sym_AMP_CARET] = ACTIONS(2217), - [anon_sym_AMP_AMP] = ACTIONS(2217), - [anon_sym_PIPE_PIPE] = ACTIONS(2217), - [anon_sym_or] = ACTIONS(2217), - [sym_none] = ACTIONS(2217), - [sym_true] = ACTIONS(2217), - [sym_false] = ACTIONS(2217), - [sym_nil] = ACTIONS(2217), - [anon_sym_QMARK_DOT] = ACTIONS(2217), - [anon_sym_POUND_LBRACK] = ACTIONS(2217), - [anon_sym_if] = ACTIONS(2217), - [anon_sym_DOLLARif] = ACTIONS(2217), - [anon_sym_is] = ACTIONS(2217), - [anon_sym_BANGis] = ACTIONS(2217), - [anon_sym_in] = ACTIONS(2217), - [anon_sym_BANGin] = ACTIONS(2217), - [anon_sym_match] = ACTIONS(2217), - [anon_sym_select] = ACTIONS(2217), - [anon_sym_lock] = ACTIONS(2217), - [anon_sym_rlock] = ACTIONS(2217), - [anon_sym_unsafe] = ACTIONS(2217), - [anon_sym_sql] = ACTIONS(2217), - [sym_int_literal] = ACTIONS(2217), - [sym_float_literal] = ACTIONS(2217), - [sym_rune_literal] = ACTIONS(2217), - [sym_pseudo_compile_time_identifier] = ACTIONS(2217), - [anon_sym_shared] = ACTIONS(2217), - [anon_sym_map_LBRACK] = ACTIONS(2217), - [anon_sym_chan] = ACTIONS(2217), - [anon_sym_thread] = ACTIONS(2217), - [anon_sym_atomic] = ACTIONS(2217), - [anon_sym_assert] = ACTIONS(2217), - [anon_sym_defer] = ACTIONS(2217), - [anon_sym_goto] = ACTIONS(2217), - [anon_sym_break] = ACTIONS(2217), - [anon_sym_continue] = ACTIONS(2217), - [anon_sym_return] = ACTIONS(2217), - [anon_sym_DOLLARfor] = ACTIONS(2217), - [anon_sym_for] = ACTIONS(2217), - [anon_sym_POUND] = ACTIONS(2217), - [anon_sym_asm] = ACTIONS(2217), - [anon_sym_AT_LBRACK] = ACTIONS(2217), - [sym___double_quote] = ACTIONS(2217), - [sym___single_quote] = ACTIONS(2217), - [sym___c_double_quote] = ACTIONS(2217), - [sym___c_single_quote] = ACTIONS(2217), - [sym___r_double_quote] = ACTIONS(2217), - [sym___r_single_quote] = ACTIONS(2217), + [anon_sym_DOT] = ACTIONS(2788), + [anon_sym_as] = ACTIONS(2788), + [anon_sym_LBRACE] = ACTIONS(2788), + [anon_sym_COMMA] = ACTIONS(2788), + [anon_sym_const] = ACTIONS(2788), + [anon_sym_LPAREN] = ACTIONS(2788), + [anon_sym___global] = ACTIONS(2788), + [anon_sym_type] = ACTIONS(2788), + [anon_sym_PIPE] = ACTIONS(2788), + [anon_sym_fn] = ACTIONS(2788), + [anon_sym_PLUS] = ACTIONS(2788), + [anon_sym_DASH] = ACTIONS(2788), + [anon_sym_STAR] = ACTIONS(2788), + [anon_sym_SLASH] = ACTIONS(2788), + [anon_sym_PERCENT] = ACTIONS(2788), + [anon_sym_LT] = ACTIONS(2788), + [anon_sym_GT] = ACTIONS(2788), + [anon_sym_EQ_EQ] = ACTIONS(2788), + [anon_sym_BANG_EQ] = ACTIONS(2788), + [anon_sym_LT_EQ] = ACTIONS(2788), + [anon_sym_GT_EQ] = ACTIONS(2788), + [anon_sym_LBRACK] = ACTIONS(2786), + [anon_sym_struct] = ACTIONS(2788), + [anon_sym_union] = ACTIONS(2788), + [anon_sym_pub] = ACTIONS(2788), + [anon_sym_mut] = ACTIONS(2788), + [anon_sym_enum] = ACTIONS(2788), + [anon_sym_interface] = ACTIONS(2788), + [anon_sym_PLUS_PLUS] = ACTIONS(2788), + [anon_sym_DASH_DASH] = ACTIONS(2788), + [anon_sym_QMARK] = ACTIONS(2788), + [anon_sym_BANG] = ACTIONS(2788), + [anon_sym_go] = ACTIONS(2788), + [anon_sym_spawn] = ACTIONS(2788), + [anon_sym_json_DOTdecode] = ACTIONS(2788), + [anon_sym_LBRACK2] = ACTIONS(2788), + [anon_sym_TILDE] = ACTIONS(2788), + [anon_sym_CARET] = ACTIONS(2788), + [anon_sym_AMP] = ACTIONS(2788), + [anon_sym_LT_DASH] = ACTIONS(2788), + [anon_sym_LT_LT] = ACTIONS(2788), + [anon_sym_GT_GT] = ACTIONS(2788), + [anon_sym_GT_GT_GT] = ACTIONS(2788), + [anon_sym_AMP_CARET] = ACTIONS(2788), + [anon_sym_AMP_AMP] = ACTIONS(2788), + [anon_sym_PIPE_PIPE] = ACTIONS(2788), + [anon_sym_or] = ACTIONS(2788), + [sym_none] = ACTIONS(2788), + [sym_true] = ACTIONS(2788), + [sym_false] = ACTIONS(2788), + [sym_nil] = ACTIONS(2788), + [anon_sym_QMARK_DOT] = ACTIONS(2788), + [anon_sym_POUND_LBRACK] = ACTIONS(2788), + [anon_sym_if] = ACTIONS(2788), + [anon_sym_DOLLARif] = ACTIONS(2788), + [anon_sym_is] = ACTIONS(2788), + [anon_sym_BANGis] = ACTIONS(2788), + [anon_sym_in] = ACTIONS(2788), + [anon_sym_BANGin] = ACTIONS(2788), + [anon_sym_match] = ACTIONS(2788), + [anon_sym_select] = ACTIONS(2788), + [anon_sym_lock] = ACTIONS(2788), + [anon_sym_rlock] = ACTIONS(2788), + [anon_sym_unsafe] = ACTIONS(2788), + [anon_sym_sql] = ACTIONS(2788), + [sym_int_literal] = ACTIONS(2788), + [sym_float_literal] = ACTIONS(2788), + [sym_rune_literal] = ACTIONS(2788), + [sym_pseudo_compile_time_identifier] = ACTIONS(2788), + [anon_sym_shared] = ACTIONS(2788), + [anon_sym_map_LBRACK] = ACTIONS(2788), + [anon_sym_chan] = ACTIONS(2788), + [anon_sym_thread] = ACTIONS(2788), + [anon_sym_atomic] = ACTIONS(2788), + [anon_sym_assert] = ACTIONS(2788), + [anon_sym_defer] = ACTIONS(2788), + [anon_sym_goto] = ACTIONS(2788), + [anon_sym_break] = ACTIONS(2788), + [anon_sym_continue] = ACTIONS(2788), + [anon_sym_return] = ACTIONS(2788), + [anon_sym_DOLLARfor] = ACTIONS(2788), + [anon_sym_for] = ACTIONS(2788), + [anon_sym_POUND] = ACTIONS(2788), + [anon_sym_asm] = ACTIONS(2788), + [anon_sym_AT_LBRACK] = ACTIONS(2788), + [sym___double_quote] = ACTIONS(2788), + [sym___single_quote] = ACTIONS(2788), + [sym___c_double_quote] = ACTIONS(2788), + [sym___c_single_quote] = ACTIONS(2788), + [sym___r_double_quote] = ACTIONS(2788), + [sym___r_single_quote] = ACTIONS(2788), }, [1061] = { [sym_line_comment] = STATE(1061), [sym_block_comment] = STATE(1061), - [ts_builtin_sym_end] = ACTIONS(2151), - [sym_identifier] = ACTIONS(2153), - [anon_sym_LF] = ACTIONS(2153), - [anon_sym_CR] = ACTIONS(2153), - [anon_sym_CR_LF] = ACTIONS(2153), + [ts_builtin_sym_end] = ACTIONS(2896), + [sym_identifier] = ACTIONS(2898), + [anon_sym_LF] = ACTIONS(2898), + [anon_sym_CR] = ACTIONS(2898), + [anon_sym_CR_LF] = ACTIONS(2898), [anon_sym_SLASH_SLASH] = ACTIONS(497), [anon_sym_SLASH_STAR] = ACTIONS(499), - [anon_sym_DOT] = ACTIONS(2153), - [anon_sym_as] = ACTIONS(2153), - [anon_sym_LBRACE] = ACTIONS(2153), - [anon_sym_COMMA] = ACTIONS(2153), - [anon_sym_const] = ACTIONS(2153), - [anon_sym_LPAREN] = ACTIONS(2153), - [anon_sym___global] = ACTIONS(2153), - [anon_sym_type] = ACTIONS(2153), - [anon_sym_PIPE] = ACTIONS(2153), - [anon_sym_fn] = ACTIONS(2153), - [anon_sym_PLUS] = ACTIONS(2153), - [anon_sym_DASH] = ACTIONS(2153), - [anon_sym_STAR] = ACTIONS(2153), - [anon_sym_SLASH] = ACTIONS(2153), - [anon_sym_PERCENT] = ACTIONS(2153), - [anon_sym_LT] = ACTIONS(2153), - [anon_sym_GT] = ACTIONS(2153), - [anon_sym_EQ_EQ] = ACTIONS(2153), - [anon_sym_BANG_EQ] = ACTIONS(2153), - [anon_sym_LT_EQ] = ACTIONS(2153), - [anon_sym_GT_EQ] = ACTIONS(2153), - [anon_sym_LBRACK] = ACTIONS(2151), - [anon_sym_struct] = ACTIONS(2153), - [anon_sym_union] = ACTIONS(2153), - [anon_sym_pub] = ACTIONS(2153), - [anon_sym_mut] = ACTIONS(2153), - [anon_sym_enum] = ACTIONS(2153), - [anon_sym_interface] = ACTIONS(2153), - [anon_sym_PLUS_PLUS] = ACTIONS(2153), - [anon_sym_DASH_DASH] = ACTIONS(2153), - [anon_sym_QMARK] = ACTIONS(2153), - [anon_sym_BANG] = ACTIONS(2153), - [anon_sym_go] = ACTIONS(2153), - [anon_sym_spawn] = ACTIONS(2153), - [anon_sym_json_DOTdecode] = ACTIONS(2153), - [anon_sym_LBRACK2] = ACTIONS(2153), - [anon_sym_TILDE] = ACTIONS(2153), - [anon_sym_CARET] = ACTIONS(2153), - [anon_sym_AMP] = ACTIONS(2153), - [anon_sym_LT_DASH] = ACTIONS(2153), - [anon_sym_LT_LT] = ACTIONS(2153), - [anon_sym_GT_GT] = ACTIONS(2153), - [anon_sym_GT_GT_GT] = ACTIONS(2153), - [anon_sym_AMP_CARET] = ACTIONS(2153), - [anon_sym_AMP_AMP] = ACTIONS(2153), - [anon_sym_PIPE_PIPE] = ACTIONS(2153), - [anon_sym_or] = ACTIONS(2153), - [sym_none] = ACTIONS(2153), - [sym_true] = ACTIONS(2153), - [sym_false] = ACTIONS(2153), - [sym_nil] = ACTIONS(2153), - [anon_sym_QMARK_DOT] = ACTIONS(2153), - [anon_sym_POUND_LBRACK] = ACTIONS(2153), - [anon_sym_if] = ACTIONS(2153), - [anon_sym_DOLLARif] = ACTIONS(2153), - [anon_sym_is] = ACTIONS(2153), - [anon_sym_BANGis] = ACTIONS(2153), - [anon_sym_in] = ACTIONS(2153), - [anon_sym_BANGin] = ACTIONS(2153), - [anon_sym_match] = ACTIONS(2153), - [anon_sym_select] = ACTIONS(2153), - [anon_sym_lock] = ACTIONS(2153), - [anon_sym_rlock] = ACTIONS(2153), - [anon_sym_unsafe] = ACTIONS(2153), - [anon_sym_sql] = ACTIONS(2153), - [sym_int_literal] = ACTIONS(2153), - [sym_float_literal] = ACTIONS(2153), - [sym_rune_literal] = ACTIONS(2153), - [sym_pseudo_compile_time_identifier] = ACTIONS(2153), - [anon_sym_shared] = ACTIONS(2153), - [anon_sym_map_LBRACK] = ACTIONS(2153), - [anon_sym_chan] = ACTIONS(2153), - [anon_sym_thread] = ACTIONS(2153), - [anon_sym_atomic] = ACTIONS(2153), - [anon_sym_assert] = ACTIONS(2153), - [anon_sym_defer] = ACTIONS(2153), - [anon_sym_goto] = ACTIONS(2153), - [anon_sym_break] = ACTIONS(2153), - [anon_sym_continue] = ACTIONS(2153), - [anon_sym_return] = ACTIONS(2153), - [anon_sym_DOLLARfor] = ACTIONS(2153), - [anon_sym_for] = ACTIONS(2153), - [anon_sym_POUND] = ACTIONS(2153), - [anon_sym_asm] = ACTIONS(2153), - [anon_sym_AT_LBRACK] = ACTIONS(2153), - [sym___double_quote] = ACTIONS(2153), - [sym___single_quote] = ACTIONS(2153), - [sym___c_double_quote] = ACTIONS(2153), - [sym___c_single_quote] = ACTIONS(2153), - [sym___r_double_quote] = ACTIONS(2153), - [sym___r_single_quote] = ACTIONS(2153), + [anon_sym_DOT] = ACTIONS(2898), + [anon_sym_as] = ACTIONS(2898), + [anon_sym_LBRACE] = ACTIONS(2898), + [anon_sym_COMMA] = ACTIONS(2898), + [anon_sym_const] = ACTIONS(2898), + [anon_sym_LPAREN] = ACTIONS(2898), + [anon_sym___global] = ACTIONS(2898), + [anon_sym_type] = ACTIONS(2898), + [anon_sym_PIPE] = ACTIONS(2898), + [anon_sym_fn] = ACTIONS(2898), + [anon_sym_PLUS] = ACTIONS(2898), + [anon_sym_DASH] = ACTIONS(2898), + [anon_sym_STAR] = ACTIONS(2898), + [anon_sym_SLASH] = ACTIONS(2898), + [anon_sym_PERCENT] = ACTIONS(2898), + [anon_sym_LT] = ACTIONS(2898), + [anon_sym_GT] = ACTIONS(2898), + [anon_sym_EQ_EQ] = ACTIONS(2898), + [anon_sym_BANG_EQ] = ACTIONS(2898), + [anon_sym_LT_EQ] = ACTIONS(2898), + [anon_sym_GT_EQ] = ACTIONS(2898), + [anon_sym_LBRACK] = ACTIONS(2896), + [anon_sym_struct] = ACTIONS(2898), + [anon_sym_union] = ACTIONS(2898), + [anon_sym_pub] = ACTIONS(2898), + [anon_sym_mut] = ACTIONS(2898), + [anon_sym_enum] = ACTIONS(2898), + [anon_sym_interface] = ACTIONS(2898), + [anon_sym_PLUS_PLUS] = ACTIONS(2898), + [anon_sym_DASH_DASH] = ACTIONS(2898), + [anon_sym_QMARK] = ACTIONS(2898), + [anon_sym_BANG] = ACTIONS(2898), + [anon_sym_go] = ACTIONS(2898), + [anon_sym_spawn] = ACTIONS(2898), + [anon_sym_json_DOTdecode] = ACTIONS(2898), + [anon_sym_LBRACK2] = ACTIONS(2898), + [anon_sym_TILDE] = ACTIONS(2898), + [anon_sym_CARET] = ACTIONS(2898), + [anon_sym_AMP] = ACTIONS(2898), + [anon_sym_LT_DASH] = ACTIONS(2898), + [anon_sym_LT_LT] = ACTIONS(2898), + [anon_sym_GT_GT] = ACTIONS(2898), + [anon_sym_GT_GT_GT] = ACTIONS(2898), + [anon_sym_AMP_CARET] = ACTIONS(2898), + [anon_sym_AMP_AMP] = ACTIONS(2898), + [anon_sym_PIPE_PIPE] = ACTIONS(2898), + [anon_sym_or] = ACTIONS(2898), + [sym_none] = ACTIONS(2898), + [sym_true] = ACTIONS(2898), + [sym_false] = ACTIONS(2898), + [sym_nil] = ACTIONS(2898), + [anon_sym_QMARK_DOT] = ACTIONS(2898), + [anon_sym_POUND_LBRACK] = ACTIONS(2898), + [anon_sym_if] = ACTIONS(2898), + [anon_sym_DOLLARif] = ACTIONS(2898), + [anon_sym_is] = ACTIONS(2898), + [anon_sym_BANGis] = ACTIONS(2898), + [anon_sym_in] = ACTIONS(2898), + [anon_sym_BANGin] = ACTIONS(2898), + [anon_sym_match] = ACTIONS(2898), + [anon_sym_select] = ACTIONS(2898), + [anon_sym_lock] = ACTIONS(2898), + [anon_sym_rlock] = ACTIONS(2898), + [anon_sym_unsafe] = ACTIONS(2898), + [anon_sym_sql] = ACTIONS(2898), + [sym_int_literal] = ACTIONS(2898), + [sym_float_literal] = ACTIONS(2898), + [sym_rune_literal] = ACTIONS(2898), + [sym_pseudo_compile_time_identifier] = ACTIONS(2898), + [anon_sym_shared] = ACTIONS(2898), + [anon_sym_map_LBRACK] = ACTIONS(2898), + [anon_sym_chan] = ACTIONS(2898), + [anon_sym_thread] = ACTIONS(2898), + [anon_sym_atomic] = ACTIONS(2898), + [anon_sym_assert] = ACTIONS(2898), + [anon_sym_defer] = ACTIONS(2898), + [anon_sym_goto] = ACTIONS(2898), + [anon_sym_break] = ACTIONS(2898), + [anon_sym_continue] = ACTIONS(2898), + [anon_sym_return] = ACTIONS(2898), + [anon_sym_DOLLARfor] = ACTIONS(2898), + [anon_sym_for] = ACTIONS(2898), + [anon_sym_POUND] = ACTIONS(2898), + [anon_sym_asm] = ACTIONS(2898), + [anon_sym_AT_LBRACK] = ACTIONS(2898), + [sym___double_quote] = ACTIONS(2898), + [sym___single_quote] = ACTIONS(2898), + [sym___c_double_quote] = ACTIONS(2898), + [sym___c_single_quote] = ACTIONS(2898), + [sym___r_double_quote] = ACTIONS(2898), + [sym___r_single_quote] = ACTIONS(2898), }, [1062] = { [sym_line_comment] = STATE(1062), [sym_block_comment] = STATE(1062), - [ts_builtin_sym_end] = ACTIONS(2175), - [sym_identifier] = ACTIONS(2177), - [anon_sym_LF] = ACTIONS(2177), - [anon_sym_CR] = ACTIONS(2177), - [anon_sym_CR_LF] = ACTIONS(2177), + [ts_builtin_sym_end] = ACTIONS(2834), + [sym_identifier] = ACTIONS(2836), + [anon_sym_LF] = ACTIONS(2836), + [anon_sym_CR] = ACTIONS(2836), + [anon_sym_CR_LF] = ACTIONS(2836), [anon_sym_SLASH_SLASH] = ACTIONS(497), [anon_sym_SLASH_STAR] = ACTIONS(499), - [anon_sym_DOT] = ACTIONS(2177), - [anon_sym_as] = ACTIONS(2177), - [anon_sym_LBRACE] = ACTIONS(2177), - [anon_sym_COMMA] = ACTIONS(2177), - [anon_sym_const] = ACTIONS(2177), - [anon_sym_LPAREN] = ACTIONS(2177), - [anon_sym___global] = ACTIONS(2177), - [anon_sym_type] = ACTIONS(2177), - [anon_sym_PIPE] = ACTIONS(2177), - [anon_sym_fn] = ACTIONS(2177), - [anon_sym_PLUS] = ACTIONS(2177), - [anon_sym_DASH] = ACTIONS(2177), - [anon_sym_STAR] = ACTIONS(2177), - [anon_sym_SLASH] = ACTIONS(2177), - [anon_sym_PERCENT] = ACTIONS(2177), - [anon_sym_LT] = ACTIONS(2177), - [anon_sym_GT] = ACTIONS(2177), - [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(2175), - [anon_sym_struct] = ACTIONS(2177), - [anon_sym_union] = ACTIONS(2177), - [anon_sym_pub] = ACTIONS(2177), - [anon_sym_mut] = ACTIONS(2177), - [anon_sym_enum] = ACTIONS(2177), - [anon_sym_interface] = ACTIONS(2177), - [anon_sym_PLUS_PLUS] = ACTIONS(2177), - [anon_sym_DASH_DASH] = ACTIONS(2177), - [anon_sym_QMARK] = ACTIONS(2177), - [anon_sym_BANG] = ACTIONS(2177), - [anon_sym_go] = ACTIONS(2177), - [anon_sym_spawn] = ACTIONS(2177), - [anon_sym_json_DOTdecode] = ACTIONS(2177), - [anon_sym_LBRACK2] = ACTIONS(2177), - [anon_sym_TILDE] = ACTIONS(2177), - [anon_sym_CARET] = ACTIONS(2177), - [anon_sym_AMP] = ACTIONS(2177), - [anon_sym_LT_DASH] = ACTIONS(2177), - [anon_sym_LT_LT] = ACTIONS(2177), - [anon_sym_GT_GT] = ACTIONS(2177), - [anon_sym_GT_GT_GT] = ACTIONS(2177), - [anon_sym_AMP_CARET] = ACTIONS(2177), - [anon_sym_AMP_AMP] = ACTIONS(2177), - [anon_sym_PIPE_PIPE] = ACTIONS(2177), - [anon_sym_or] = ACTIONS(2177), - [sym_none] = ACTIONS(2177), - [sym_true] = ACTIONS(2177), - [sym_false] = ACTIONS(2177), - [sym_nil] = ACTIONS(2177), - [anon_sym_QMARK_DOT] = ACTIONS(2177), - [anon_sym_POUND_LBRACK] = ACTIONS(2177), - [anon_sym_if] = ACTIONS(2177), - [anon_sym_DOLLARif] = ACTIONS(2177), - [anon_sym_is] = ACTIONS(2177), - [anon_sym_BANGis] = ACTIONS(2177), - [anon_sym_in] = ACTIONS(2177), - [anon_sym_BANGin] = ACTIONS(2177), - [anon_sym_match] = ACTIONS(2177), - [anon_sym_select] = ACTIONS(2177), - [anon_sym_lock] = ACTIONS(2177), - [anon_sym_rlock] = ACTIONS(2177), - [anon_sym_unsafe] = ACTIONS(2177), - [anon_sym_sql] = ACTIONS(2177), - [sym_int_literal] = ACTIONS(2177), - [sym_float_literal] = ACTIONS(2177), - [sym_rune_literal] = ACTIONS(2177), - [sym_pseudo_compile_time_identifier] = ACTIONS(2177), - [anon_sym_shared] = ACTIONS(2177), - [anon_sym_map_LBRACK] = ACTIONS(2177), - [anon_sym_chan] = ACTIONS(2177), - [anon_sym_thread] = ACTIONS(2177), - [anon_sym_atomic] = ACTIONS(2177), - [anon_sym_assert] = ACTIONS(2177), - [anon_sym_defer] = ACTIONS(2177), - [anon_sym_goto] = ACTIONS(2177), - [anon_sym_break] = ACTIONS(2177), - [anon_sym_continue] = ACTIONS(2177), - [anon_sym_return] = ACTIONS(2177), - [anon_sym_DOLLARfor] = ACTIONS(2177), - [anon_sym_for] = ACTIONS(2177), - [anon_sym_POUND] = ACTIONS(2177), - [anon_sym_asm] = ACTIONS(2177), - [anon_sym_AT_LBRACK] = ACTIONS(2177), - [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(2836), + [anon_sym_as] = ACTIONS(2836), + [anon_sym_LBRACE] = ACTIONS(2836), + [anon_sym_COMMA] = ACTIONS(2836), + [anon_sym_const] = ACTIONS(2836), + [anon_sym_LPAREN] = ACTIONS(2836), + [anon_sym___global] = ACTIONS(2836), + [anon_sym_type] = ACTIONS(2836), + [anon_sym_PIPE] = ACTIONS(2836), + [anon_sym_fn] = ACTIONS(2836), + [anon_sym_PLUS] = ACTIONS(2836), + [anon_sym_DASH] = ACTIONS(2836), + [anon_sym_STAR] = ACTIONS(2836), + [anon_sym_SLASH] = ACTIONS(2836), + [anon_sym_PERCENT] = ACTIONS(2836), + [anon_sym_LT] = ACTIONS(2836), + [anon_sym_GT] = ACTIONS(2836), + [anon_sym_EQ_EQ] = ACTIONS(2836), + [anon_sym_BANG_EQ] = ACTIONS(2836), + [anon_sym_LT_EQ] = ACTIONS(2836), + [anon_sym_GT_EQ] = ACTIONS(2836), + [anon_sym_LBRACK] = ACTIONS(2834), + [anon_sym_struct] = ACTIONS(2836), + [anon_sym_union] = ACTIONS(2836), + [anon_sym_pub] = ACTIONS(2836), + [anon_sym_mut] = ACTIONS(2836), + [anon_sym_enum] = ACTIONS(2836), + [anon_sym_interface] = ACTIONS(2836), + [anon_sym_PLUS_PLUS] = ACTIONS(2836), + [anon_sym_DASH_DASH] = ACTIONS(2836), + [anon_sym_QMARK] = ACTIONS(2836), + [anon_sym_BANG] = ACTIONS(2836), + [anon_sym_go] = ACTIONS(2836), + [anon_sym_spawn] = ACTIONS(2836), + [anon_sym_json_DOTdecode] = ACTIONS(2836), + [anon_sym_LBRACK2] = ACTIONS(2836), + [anon_sym_TILDE] = ACTIONS(2836), + [anon_sym_CARET] = ACTIONS(2836), + [anon_sym_AMP] = ACTIONS(2836), + [anon_sym_LT_DASH] = ACTIONS(2836), + [anon_sym_LT_LT] = ACTIONS(2836), + [anon_sym_GT_GT] = ACTIONS(2836), + [anon_sym_GT_GT_GT] = ACTIONS(2836), + [anon_sym_AMP_CARET] = ACTIONS(2836), + [anon_sym_AMP_AMP] = ACTIONS(2836), + [anon_sym_PIPE_PIPE] = ACTIONS(2836), + [anon_sym_or] = ACTIONS(2836), + [sym_none] = ACTIONS(2836), + [sym_true] = ACTIONS(2836), + [sym_false] = ACTIONS(2836), + [sym_nil] = ACTIONS(2836), + [anon_sym_QMARK_DOT] = ACTIONS(2836), + [anon_sym_POUND_LBRACK] = ACTIONS(2836), + [anon_sym_if] = ACTIONS(2836), + [anon_sym_DOLLARif] = ACTIONS(2836), + [anon_sym_is] = ACTIONS(2836), + [anon_sym_BANGis] = ACTIONS(2836), + [anon_sym_in] = ACTIONS(2836), + [anon_sym_BANGin] = ACTIONS(2836), + [anon_sym_match] = ACTIONS(2836), + [anon_sym_select] = ACTIONS(2836), + [anon_sym_lock] = ACTIONS(2836), + [anon_sym_rlock] = ACTIONS(2836), + [anon_sym_unsafe] = ACTIONS(2836), + [anon_sym_sql] = ACTIONS(2836), + [sym_int_literal] = ACTIONS(2836), + [sym_float_literal] = ACTIONS(2836), + [sym_rune_literal] = ACTIONS(2836), + [sym_pseudo_compile_time_identifier] = ACTIONS(2836), + [anon_sym_shared] = ACTIONS(2836), + [anon_sym_map_LBRACK] = ACTIONS(2836), + [anon_sym_chan] = ACTIONS(2836), + [anon_sym_thread] = ACTIONS(2836), + [anon_sym_atomic] = ACTIONS(2836), + [anon_sym_assert] = ACTIONS(2836), + [anon_sym_defer] = ACTIONS(2836), + [anon_sym_goto] = ACTIONS(2836), + [anon_sym_break] = ACTIONS(2836), + [anon_sym_continue] = ACTIONS(2836), + [anon_sym_return] = ACTIONS(2836), + [anon_sym_DOLLARfor] = ACTIONS(2836), + [anon_sym_for] = ACTIONS(2836), + [anon_sym_POUND] = ACTIONS(2836), + [anon_sym_asm] = ACTIONS(2836), + [anon_sym_AT_LBRACK] = ACTIONS(2836), + [sym___double_quote] = ACTIONS(2836), + [sym___single_quote] = ACTIONS(2836), + [sym___c_double_quote] = ACTIONS(2836), + [sym___c_single_quote] = ACTIONS(2836), + [sym___r_double_quote] = ACTIONS(2836), + [sym___r_single_quote] = ACTIONS(2836), }, [1063] = { [sym_line_comment] = STATE(1063), [sym_block_comment] = STATE(1063), - [ts_builtin_sym_end] = ACTIONS(2517), - [sym_identifier] = ACTIONS(2519), - [anon_sym_LF] = ACTIONS(2519), - [anon_sym_CR] = ACTIONS(2519), - [anon_sym_CR_LF] = ACTIONS(2519), + [ts_builtin_sym_end] = ACTIONS(2826), + [sym_identifier] = ACTIONS(2828), + [anon_sym_LF] = ACTIONS(2828), + [anon_sym_CR] = ACTIONS(2828), + [anon_sym_CR_LF] = ACTIONS(2828), [anon_sym_SLASH_SLASH] = ACTIONS(497), [anon_sym_SLASH_STAR] = ACTIONS(499), - [anon_sym_DOT] = ACTIONS(2519), - [anon_sym_as] = ACTIONS(2519), - [anon_sym_LBRACE] = ACTIONS(2519), - [anon_sym_COMMA] = ACTIONS(2519), - [anon_sym_const] = ACTIONS(2519), - [anon_sym_LPAREN] = ACTIONS(2519), - [anon_sym___global] = ACTIONS(2519), - [anon_sym_type] = ACTIONS(2519), - [anon_sym_PIPE] = ACTIONS(2519), - [anon_sym_fn] = ACTIONS(2519), - [anon_sym_PLUS] = ACTIONS(2519), - [anon_sym_DASH] = ACTIONS(2519), - [anon_sym_STAR] = ACTIONS(2519), - [anon_sym_SLASH] = ACTIONS(2519), - [anon_sym_PERCENT] = ACTIONS(2519), - [anon_sym_LT] = ACTIONS(2519), - [anon_sym_GT] = ACTIONS(2519), - [anon_sym_EQ_EQ] = ACTIONS(2519), - [anon_sym_BANG_EQ] = ACTIONS(2519), - [anon_sym_LT_EQ] = ACTIONS(2519), - [anon_sym_GT_EQ] = ACTIONS(2519), - [anon_sym_LBRACK] = ACTIONS(2517), - [anon_sym_struct] = ACTIONS(2519), - [anon_sym_union] = ACTIONS(2519), - [anon_sym_pub] = ACTIONS(2519), - [anon_sym_mut] = ACTIONS(2519), - [anon_sym_enum] = ACTIONS(2519), - [anon_sym_interface] = ACTIONS(2519), - [anon_sym_PLUS_PLUS] = ACTIONS(2519), - [anon_sym_DASH_DASH] = ACTIONS(2519), - [anon_sym_QMARK] = ACTIONS(2519), - [anon_sym_BANG] = ACTIONS(2519), - [anon_sym_go] = ACTIONS(2519), - [anon_sym_spawn] = ACTIONS(2519), - [anon_sym_json_DOTdecode] = ACTIONS(2519), - [anon_sym_LBRACK2] = ACTIONS(2519), - [anon_sym_TILDE] = ACTIONS(2519), - [anon_sym_CARET] = ACTIONS(2519), - [anon_sym_AMP] = ACTIONS(2519), - [anon_sym_LT_DASH] = ACTIONS(2519), - [anon_sym_LT_LT] = ACTIONS(2519), - [anon_sym_GT_GT] = ACTIONS(2519), - [anon_sym_GT_GT_GT] = ACTIONS(2519), - [anon_sym_AMP_CARET] = ACTIONS(2519), - [anon_sym_AMP_AMP] = ACTIONS(2519), - [anon_sym_PIPE_PIPE] = ACTIONS(2519), - [anon_sym_or] = ACTIONS(2519), - [sym_none] = ACTIONS(2519), - [sym_true] = ACTIONS(2519), - [sym_false] = ACTIONS(2519), - [sym_nil] = ACTIONS(2519), - [anon_sym_QMARK_DOT] = ACTIONS(2519), - [anon_sym_POUND_LBRACK] = ACTIONS(2519), - [anon_sym_if] = ACTIONS(2519), - [anon_sym_DOLLARif] = ACTIONS(2519), - [anon_sym_is] = ACTIONS(2519), - [anon_sym_BANGis] = ACTIONS(2519), - [anon_sym_in] = ACTIONS(2519), - [anon_sym_BANGin] = ACTIONS(2519), - [anon_sym_match] = ACTIONS(2519), - [anon_sym_select] = ACTIONS(2519), - [anon_sym_lock] = ACTIONS(2519), - [anon_sym_rlock] = ACTIONS(2519), - [anon_sym_unsafe] = ACTIONS(2519), - [anon_sym_sql] = ACTIONS(2519), - [sym_int_literal] = ACTIONS(2519), - [sym_float_literal] = ACTIONS(2519), - [sym_rune_literal] = ACTIONS(2519), - [sym_pseudo_compile_time_identifier] = ACTIONS(2519), - [anon_sym_shared] = ACTIONS(2519), - [anon_sym_map_LBRACK] = ACTIONS(2519), - [anon_sym_chan] = ACTIONS(2519), - [anon_sym_thread] = ACTIONS(2519), - [anon_sym_atomic] = ACTIONS(2519), - [anon_sym_assert] = ACTIONS(2519), - [anon_sym_defer] = ACTIONS(2519), - [anon_sym_goto] = ACTIONS(2519), - [anon_sym_break] = ACTIONS(2519), - [anon_sym_continue] = ACTIONS(2519), - [anon_sym_return] = ACTIONS(2519), - [anon_sym_DOLLARfor] = ACTIONS(2519), - [anon_sym_for] = ACTIONS(2519), - [anon_sym_POUND] = ACTIONS(2519), - [anon_sym_asm] = ACTIONS(2519), - [anon_sym_AT_LBRACK] = ACTIONS(2519), - [sym___double_quote] = ACTIONS(2519), - [sym___single_quote] = ACTIONS(2519), - [sym___c_double_quote] = ACTIONS(2519), - [sym___c_single_quote] = ACTIONS(2519), - [sym___r_double_quote] = ACTIONS(2519), - [sym___r_single_quote] = ACTIONS(2519), + [anon_sym_DOT] = ACTIONS(2828), + [anon_sym_as] = ACTIONS(2828), + [anon_sym_LBRACE] = ACTIONS(2828), + [anon_sym_COMMA] = ACTIONS(2828), + [anon_sym_const] = ACTIONS(2828), + [anon_sym_LPAREN] = ACTIONS(2828), + [anon_sym___global] = ACTIONS(2828), + [anon_sym_type] = ACTIONS(2828), + [anon_sym_PIPE] = ACTIONS(2828), + [anon_sym_fn] = ACTIONS(2828), + [anon_sym_PLUS] = ACTIONS(2828), + [anon_sym_DASH] = ACTIONS(2828), + [anon_sym_STAR] = ACTIONS(2828), + [anon_sym_SLASH] = ACTIONS(2828), + [anon_sym_PERCENT] = ACTIONS(2828), + [anon_sym_LT] = ACTIONS(2828), + [anon_sym_GT] = ACTIONS(2828), + [anon_sym_EQ_EQ] = ACTIONS(2828), + [anon_sym_BANG_EQ] = ACTIONS(2828), + [anon_sym_LT_EQ] = ACTIONS(2828), + [anon_sym_GT_EQ] = ACTIONS(2828), + [anon_sym_LBRACK] = ACTIONS(2826), + [anon_sym_struct] = ACTIONS(2828), + [anon_sym_union] = ACTIONS(2828), + [anon_sym_pub] = ACTIONS(2828), + [anon_sym_mut] = ACTIONS(2828), + [anon_sym_enum] = ACTIONS(2828), + [anon_sym_interface] = ACTIONS(2828), + [anon_sym_PLUS_PLUS] = ACTIONS(2828), + [anon_sym_DASH_DASH] = ACTIONS(2828), + [anon_sym_QMARK] = ACTIONS(2828), + [anon_sym_BANG] = ACTIONS(2828), + [anon_sym_go] = ACTIONS(2828), + [anon_sym_spawn] = ACTIONS(2828), + [anon_sym_json_DOTdecode] = ACTIONS(2828), + [anon_sym_LBRACK2] = ACTIONS(2828), + [anon_sym_TILDE] = ACTIONS(2828), + [anon_sym_CARET] = ACTIONS(2828), + [anon_sym_AMP] = ACTIONS(2828), + [anon_sym_LT_DASH] = ACTIONS(2828), + [anon_sym_LT_LT] = ACTIONS(2828), + [anon_sym_GT_GT] = ACTIONS(2828), + [anon_sym_GT_GT_GT] = ACTIONS(2828), + [anon_sym_AMP_CARET] = ACTIONS(2828), + [anon_sym_AMP_AMP] = ACTIONS(2828), + [anon_sym_PIPE_PIPE] = ACTIONS(2828), + [anon_sym_or] = ACTIONS(2828), + [sym_none] = ACTIONS(2828), + [sym_true] = ACTIONS(2828), + [sym_false] = ACTIONS(2828), + [sym_nil] = ACTIONS(2828), + [anon_sym_QMARK_DOT] = ACTIONS(2828), + [anon_sym_POUND_LBRACK] = ACTIONS(2828), + [anon_sym_if] = ACTIONS(2828), + [anon_sym_DOLLARif] = ACTIONS(2828), + [anon_sym_is] = ACTIONS(2828), + [anon_sym_BANGis] = ACTIONS(2828), + [anon_sym_in] = ACTIONS(2828), + [anon_sym_BANGin] = ACTIONS(2828), + [anon_sym_match] = ACTIONS(2828), + [anon_sym_select] = ACTIONS(2828), + [anon_sym_lock] = ACTIONS(2828), + [anon_sym_rlock] = ACTIONS(2828), + [anon_sym_unsafe] = ACTIONS(2828), + [anon_sym_sql] = ACTIONS(2828), + [sym_int_literal] = ACTIONS(2828), + [sym_float_literal] = ACTIONS(2828), + [sym_rune_literal] = ACTIONS(2828), + [sym_pseudo_compile_time_identifier] = ACTIONS(2828), + [anon_sym_shared] = ACTIONS(2828), + [anon_sym_map_LBRACK] = ACTIONS(2828), + [anon_sym_chan] = ACTIONS(2828), + [anon_sym_thread] = ACTIONS(2828), + [anon_sym_atomic] = ACTIONS(2828), + [anon_sym_assert] = ACTIONS(2828), + [anon_sym_defer] = ACTIONS(2828), + [anon_sym_goto] = ACTIONS(2828), + [anon_sym_break] = ACTIONS(2828), + [anon_sym_continue] = ACTIONS(2828), + [anon_sym_return] = ACTIONS(2828), + [anon_sym_DOLLARfor] = ACTIONS(2828), + [anon_sym_for] = ACTIONS(2828), + [anon_sym_POUND] = ACTIONS(2828), + [anon_sym_asm] = ACTIONS(2828), + [anon_sym_AT_LBRACK] = ACTIONS(2828), + [sym___double_quote] = ACTIONS(2828), + [sym___single_quote] = ACTIONS(2828), + [sym___c_double_quote] = ACTIONS(2828), + [sym___c_single_quote] = ACTIONS(2828), + [sym___r_double_quote] = ACTIONS(2828), + [sym___r_single_quote] = ACTIONS(2828), }, [1064] = { [sym_line_comment] = STATE(1064), [sym_block_comment] = STATE(1064), - [ts_builtin_sym_end] = ACTIONS(2685), - [sym_identifier] = ACTIONS(2687), - [anon_sym_LF] = ACTIONS(2687), - [anon_sym_CR] = ACTIONS(2687), - [anon_sym_CR_LF] = ACTIONS(2687), + [ts_builtin_sym_end] = ACTIONS(2291), + [sym_identifier] = ACTIONS(2293), + [anon_sym_LF] = ACTIONS(2293), + [anon_sym_CR] = ACTIONS(2293), + [anon_sym_CR_LF] = ACTIONS(2293), [anon_sym_SLASH_SLASH] = ACTIONS(497), [anon_sym_SLASH_STAR] = ACTIONS(499), - [anon_sym_DOT] = ACTIONS(2687), - [anon_sym_as] = ACTIONS(2687), - [anon_sym_LBRACE] = ACTIONS(2687), - [anon_sym_COMMA] = ACTIONS(2687), - [anon_sym_const] = ACTIONS(2687), - [anon_sym_LPAREN] = ACTIONS(2687), - [anon_sym___global] = ACTIONS(2687), - [anon_sym_type] = ACTIONS(2687), - [anon_sym_PIPE] = ACTIONS(2687), - [anon_sym_fn] = ACTIONS(2687), - [anon_sym_PLUS] = ACTIONS(2687), - [anon_sym_DASH] = ACTIONS(2687), - [anon_sym_STAR] = ACTIONS(2687), - [anon_sym_SLASH] = ACTIONS(2687), - [anon_sym_PERCENT] = ACTIONS(2687), - [anon_sym_LT] = ACTIONS(2687), - [anon_sym_GT] = ACTIONS(2687), - [anon_sym_EQ_EQ] = ACTIONS(2687), - [anon_sym_BANG_EQ] = ACTIONS(2687), - [anon_sym_LT_EQ] = ACTIONS(2687), - [anon_sym_GT_EQ] = ACTIONS(2687), - [anon_sym_LBRACK] = ACTIONS(2685), - [anon_sym_struct] = ACTIONS(2687), - [anon_sym_union] = ACTIONS(2687), - [anon_sym_pub] = ACTIONS(2687), - [anon_sym_mut] = ACTIONS(2687), - [anon_sym_enum] = ACTIONS(2687), - [anon_sym_interface] = ACTIONS(2687), - [anon_sym_PLUS_PLUS] = ACTIONS(2687), - [anon_sym_DASH_DASH] = ACTIONS(2687), - [anon_sym_QMARK] = ACTIONS(2687), - [anon_sym_BANG] = ACTIONS(2687), - [anon_sym_go] = ACTIONS(2687), - [anon_sym_spawn] = ACTIONS(2687), - [anon_sym_json_DOTdecode] = ACTIONS(2687), - [anon_sym_LBRACK2] = ACTIONS(2687), - [anon_sym_TILDE] = ACTIONS(2687), - [anon_sym_CARET] = ACTIONS(2687), - [anon_sym_AMP] = ACTIONS(2687), - [anon_sym_LT_DASH] = ACTIONS(2687), - [anon_sym_LT_LT] = ACTIONS(2687), - [anon_sym_GT_GT] = ACTIONS(2687), - [anon_sym_GT_GT_GT] = ACTIONS(2687), - [anon_sym_AMP_CARET] = ACTIONS(2687), - [anon_sym_AMP_AMP] = ACTIONS(2687), - [anon_sym_PIPE_PIPE] = ACTIONS(2687), - [anon_sym_or] = ACTIONS(2687), - [sym_none] = ACTIONS(2687), - [sym_true] = ACTIONS(2687), - [sym_false] = ACTIONS(2687), - [sym_nil] = ACTIONS(2687), - [anon_sym_QMARK_DOT] = ACTIONS(2687), - [anon_sym_POUND_LBRACK] = ACTIONS(2687), - [anon_sym_if] = ACTIONS(2687), - [anon_sym_DOLLARif] = ACTIONS(2687), - [anon_sym_is] = ACTIONS(2687), - [anon_sym_BANGis] = ACTIONS(2687), - [anon_sym_in] = ACTIONS(2687), - [anon_sym_BANGin] = ACTIONS(2687), - [anon_sym_match] = ACTIONS(2687), - [anon_sym_select] = ACTIONS(2687), - [anon_sym_lock] = ACTIONS(2687), - [anon_sym_rlock] = ACTIONS(2687), - [anon_sym_unsafe] = ACTIONS(2687), - [anon_sym_sql] = ACTIONS(2687), - [sym_int_literal] = ACTIONS(2687), - [sym_float_literal] = ACTIONS(2687), - [sym_rune_literal] = ACTIONS(2687), - [sym_pseudo_compile_time_identifier] = ACTIONS(2687), - [anon_sym_shared] = ACTIONS(2687), - [anon_sym_map_LBRACK] = ACTIONS(2687), - [anon_sym_chan] = ACTIONS(2687), - [anon_sym_thread] = ACTIONS(2687), - [anon_sym_atomic] = ACTIONS(2687), - [anon_sym_assert] = ACTIONS(2687), - [anon_sym_defer] = ACTIONS(2687), - [anon_sym_goto] = ACTIONS(2687), - [anon_sym_break] = ACTIONS(2687), - [anon_sym_continue] = ACTIONS(2687), - [anon_sym_return] = ACTIONS(2687), - [anon_sym_DOLLARfor] = ACTIONS(2687), - [anon_sym_for] = ACTIONS(2687), - [anon_sym_POUND] = ACTIONS(2687), - [anon_sym_asm] = ACTIONS(2687), - [anon_sym_AT_LBRACK] = ACTIONS(2687), - [sym___double_quote] = ACTIONS(2687), - [sym___single_quote] = ACTIONS(2687), - [sym___c_double_quote] = ACTIONS(2687), - [sym___c_single_quote] = ACTIONS(2687), - [sym___r_double_quote] = ACTIONS(2687), - [sym___r_single_quote] = ACTIONS(2687), + [anon_sym_DOT] = ACTIONS(2293), + [anon_sym_as] = ACTIONS(2293), + [anon_sym_LBRACE] = ACTIONS(2293), + [anon_sym_COMMA] = ACTIONS(2293), + [anon_sym_const] = ACTIONS(2293), + [anon_sym_LPAREN] = ACTIONS(2293), + [anon_sym___global] = ACTIONS(2293), + [anon_sym_type] = ACTIONS(2293), + [anon_sym_PIPE] = ACTIONS(2293), + [anon_sym_fn] = ACTIONS(2293), + [anon_sym_PLUS] = ACTIONS(2293), + [anon_sym_DASH] = ACTIONS(2293), + [anon_sym_STAR] = ACTIONS(2293), + [anon_sym_SLASH] = ACTIONS(2293), + [anon_sym_PERCENT] = ACTIONS(2293), + [anon_sym_LT] = ACTIONS(2293), + [anon_sym_GT] = ACTIONS(2293), + [anon_sym_EQ_EQ] = ACTIONS(2293), + [anon_sym_BANG_EQ] = ACTIONS(2293), + [anon_sym_LT_EQ] = ACTIONS(2293), + [anon_sym_GT_EQ] = ACTIONS(2293), + [anon_sym_LBRACK] = ACTIONS(2291), + [anon_sym_struct] = ACTIONS(2293), + [anon_sym_union] = ACTIONS(2293), + [anon_sym_pub] = ACTIONS(2293), + [anon_sym_mut] = ACTIONS(2293), + [anon_sym_enum] = ACTIONS(2293), + [anon_sym_interface] = ACTIONS(2293), + [anon_sym_PLUS_PLUS] = ACTIONS(2293), + [anon_sym_DASH_DASH] = ACTIONS(2293), + [anon_sym_QMARK] = ACTIONS(2293), + [anon_sym_BANG] = ACTIONS(2293), + [anon_sym_go] = ACTIONS(2293), + [anon_sym_spawn] = ACTIONS(2293), + [anon_sym_json_DOTdecode] = ACTIONS(2293), + [anon_sym_LBRACK2] = ACTIONS(2293), + [anon_sym_TILDE] = ACTIONS(2293), + [anon_sym_CARET] = ACTIONS(2293), + [anon_sym_AMP] = ACTIONS(2293), + [anon_sym_LT_DASH] = ACTIONS(2293), + [anon_sym_LT_LT] = ACTIONS(2293), + [anon_sym_GT_GT] = ACTIONS(2293), + [anon_sym_GT_GT_GT] = ACTIONS(2293), + [anon_sym_AMP_CARET] = ACTIONS(2293), + [anon_sym_AMP_AMP] = ACTIONS(2293), + [anon_sym_PIPE_PIPE] = ACTIONS(2293), + [anon_sym_or] = ACTIONS(2293), + [sym_none] = ACTIONS(2293), + [sym_true] = ACTIONS(2293), + [sym_false] = ACTIONS(2293), + [sym_nil] = ACTIONS(2293), + [anon_sym_QMARK_DOT] = ACTIONS(2293), + [anon_sym_POUND_LBRACK] = ACTIONS(2293), + [anon_sym_if] = ACTIONS(2293), + [anon_sym_DOLLARif] = ACTIONS(2293), + [anon_sym_is] = ACTIONS(2293), + [anon_sym_BANGis] = ACTIONS(2293), + [anon_sym_in] = ACTIONS(2293), + [anon_sym_BANGin] = ACTIONS(2293), + [anon_sym_match] = ACTIONS(2293), + [anon_sym_select] = ACTIONS(2293), + [anon_sym_lock] = ACTIONS(2293), + [anon_sym_rlock] = ACTIONS(2293), + [anon_sym_unsafe] = ACTIONS(2293), + [anon_sym_sql] = ACTIONS(2293), + [sym_int_literal] = ACTIONS(2293), + [sym_float_literal] = ACTIONS(2293), + [sym_rune_literal] = ACTIONS(2293), + [sym_pseudo_compile_time_identifier] = ACTIONS(2293), + [anon_sym_shared] = ACTIONS(2293), + [anon_sym_map_LBRACK] = ACTIONS(2293), + [anon_sym_chan] = ACTIONS(2293), + [anon_sym_thread] = ACTIONS(2293), + [anon_sym_atomic] = ACTIONS(2293), + [anon_sym_assert] = ACTIONS(2293), + [anon_sym_defer] = ACTIONS(2293), + [anon_sym_goto] = ACTIONS(2293), + [anon_sym_break] = ACTIONS(2293), + [anon_sym_continue] = ACTIONS(2293), + [anon_sym_return] = ACTIONS(2293), + [anon_sym_DOLLARfor] = ACTIONS(2293), + [anon_sym_for] = ACTIONS(2293), + [anon_sym_POUND] = ACTIONS(2293), + [anon_sym_asm] = ACTIONS(2293), + [anon_sym_AT_LBRACK] = ACTIONS(2293), + [sym___double_quote] = ACTIONS(2293), + [sym___single_quote] = ACTIONS(2293), + [sym___c_double_quote] = ACTIONS(2293), + [sym___c_single_quote] = ACTIONS(2293), + [sym___r_double_quote] = ACTIONS(2293), + [sym___r_single_quote] = ACTIONS(2293), }, [1065] = { [sym_line_comment] = STATE(1065), [sym_block_comment] = STATE(1065), - [ts_builtin_sym_end] = ACTIONS(2653), - [sym_identifier] = ACTIONS(2655), - [anon_sym_LF] = ACTIONS(2655), - [anon_sym_CR] = ACTIONS(2655), - [anon_sym_CR_LF] = ACTIONS(2655), + [ts_builtin_sym_end] = ACTIONS(2678), + [sym_identifier] = ACTIONS(2680), + [anon_sym_LF] = ACTIONS(2680), + [anon_sym_CR] = ACTIONS(2680), + [anon_sym_CR_LF] = ACTIONS(2680), [anon_sym_SLASH_SLASH] = ACTIONS(497), [anon_sym_SLASH_STAR] = ACTIONS(499), - [anon_sym_DOT] = ACTIONS(2655), - [anon_sym_as] = ACTIONS(2655), - [anon_sym_LBRACE] = ACTIONS(2655), - [anon_sym_COMMA] = ACTIONS(2655), - [anon_sym_const] = ACTIONS(2655), - [anon_sym_LPAREN] = ACTIONS(2655), - [anon_sym___global] = ACTIONS(2655), - [anon_sym_type] = ACTIONS(2655), - [anon_sym_PIPE] = ACTIONS(2655), - [anon_sym_fn] = ACTIONS(2655), - [anon_sym_PLUS] = ACTIONS(2655), - [anon_sym_DASH] = ACTIONS(2655), - [anon_sym_STAR] = ACTIONS(2655), - [anon_sym_SLASH] = ACTIONS(2655), - [anon_sym_PERCENT] = ACTIONS(2655), - [anon_sym_LT] = ACTIONS(2655), - [anon_sym_GT] = ACTIONS(2655), - [anon_sym_EQ_EQ] = ACTIONS(2655), - [anon_sym_BANG_EQ] = ACTIONS(2655), - [anon_sym_LT_EQ] = ACTIONS(2655), - [anon_sym_GT_EQ] = ACTIONS(2655), - [anon_sym_LBRACK] = ACTIONS(2653), - [anon_sym_struct] = ACTIONS(2655), - [anon_sym_union] = ACTIONS(2655), - [anon_sym_pub] = ACTIONS(2655), - [anon_sym_mut] = ACTIONS(2655), - [anon_sym_enum] = ACTIONS(2655), - [anon_sym_interface] = ACTIONS(2655), - [anon_sym_PLUS_PLUS] = ACTIONS(2655), - [anon_sym_DASH_DASH] = ACTIONS(2655), - [anon_sym_QMARK] = ACTIONS(2655), - [anon_sym_BANG] = ACTIONS(2655), - [anon_sym_go] = ACTIONS(2655), - [anon_sym_spawn] = ACTIONS(2655), - [anon_sym_json_DOTdecode] = ACTIONS(2655), - [anon_sym_LBRACK2] = ACTIONS(2655), - [anon_sym_TILDE] = ACTIONS(2655), - [anon_sym_CARET] = ACTIONS(2655), - [anon_sym_AMP] = ACTIONS(2655), - [anon_sym_LT_DASH] = ACTIONS(2655), - [anon_sym_LT_LT] = ACTIONS(2655), - [anon_sym_GT_GT] = ACTIONS(2655), - [anon_sym_GT_GT_GT] = ACTIONS(2655), - [anon_sym_AMP_CARET] = ACTIONS(2655), - [anon_sym_AMP_AMP] = ACTIONS(2655), - [anon_sym_PIPE_PIPE] = ACTIONS(2655), - [anon_sym_or] = ACTIONS(2655), - [sym_none] = ACTIONS(2655), - [sym_true] = ACTIONS(2655), - [sym_false] = ACTIONS(2655), - [sym_nil] = ACTIONS(2655), - [anon_sym_QMARK_DOT] = ACTIONS(2655), - [anon_sym_POUND_LBRACK] = ACTIONS(2655), - [anon_sym_if] = ACTIONS(2655), - [anon_sym_DOLLARif] = ACTIONS(2655), - [anon_sym_is] = ACTIONS(2655), - [anon_sym_BANGis] = ACTIONS(2655), - [anon_sym_in] = ACTIONS(2655), - [anon_sym_BANGin] = ACTIONS(2655), - [anon_sym_match] = ACTIONS(2655), - [anon_sym_select] = ACTIONS(2655), - [anon_sym_lock] = ACTIONS(2655), - [anon_sym_rlock] = ACTIONS(2655), - [anon_sym_unsafe] = ACTIONS(2655), - [anon_sym_sql] = ACTIONS(2655), - [sym_int_literal] = ACTIONS(2655), - [sym_float_literal] = ACTIONS(2655), - [sym_rune_literal] = ACTIONS(2655), - [sym_pseudo_compile_time_identifier] = ACTIONS(2655), - [anon_sym_shared] = ACTIONS(2655), - [anon_sym_map_LBRACK] = ACTIONS(2655), - [anon_sym_chan] = ACTIONS(2655), - [anon_sym_thread] = ACTIONS(2655), - [anon_sym_atomic] = ACTIONS(2655), - [anon_sym_assert] = ACTIONS(2655), - [anon_sym_defer] = ACTIONS(2655), - [anon_sym_goto] = ACTIONS(2655), - [anon_sym_break] = ACTIONS(2655), - [anon_sym_continue] = ACTIONS(2655), - [anon_sym_return] = ACTIONS(2655), - [anon_sym_DOLLARfor] = ACTIONS(2655), - [anon_sym_for] = ACTIONS(2655), - [anon_sym_POUND] = ACTIONS(2655), - [anon_sym_asm] = ACTIONS(2655), - [anon_sym_AT_LBRACK] = ACTIONS(2655), - [sym___double_quote] = ACTIONS(2655), - [sym___single_quote] = ACTIONS(2655), - [sym___c_double_quote] = ACTIONS(2655), - [sym___c_single_quote] = ACTIONS(2655), - [sym___r_double_quote] = ACTIONS(2655), - [sym___r_single_quote] = ACTIONS(2655), + [anon_sym_DOT] = ACTIONS(2680), + [anon_sym_as] = ACTIONS(2680), + [anon_sym_LBRACE] = ACTIONS(2680), + [anon_sym_COMMA] = ACTIONS(2680), + [anon_sym_const] = ACTIONS(2680), + [anon_sym_LPAREN] = ACTIONS(2680), + [anon_sym___global] = ACTIONS(2680), + [anon_sym_type] = ACTIONS(2680), + [anon_sym_PIPE] = ACTIONS(2680), + [anon_sym_fn] = ACTIONS(2680), + [anon_sym_PLUS] = ACTIONS(2680), + [anon_sym_DASH] = ACTIONS(2680), + [anon_sym_STAR] = ACTIONS(2680), + [anon_sym_SLASH] = ACTIONS(2680), + [anon_sym_PERCENT] = ACTIONS(2680), + [anon_sym_LT] = ACTIONS(2680), + [anon_sym_GT] = ACTIONS(2680), + [anon_sym_EQ_EQ] = ACTIONS(2680), + [anon_sym_BANG_EQ] = ACTIONS(2680), + [anon_sym_LT_EQ] = ACTIONS(2680), + [anon_sym_GT_EQ] = ACTIONS(2680), + [anon_sym_LBRACK] = ACTIONS(2678), + [anon_sym_struct] = ACTIONS(2680), + [anon_sym_union] = ACTIONS(2680), + [anon_sym_pub] = ACTIONS(2680), + [anon_sym_mut] = ACTIONS(2680), + [anon_sym_enum] = ACTIONS(2680), + [anon_sym_interface] = ACTIONS(2680), + [anon_sym_PLUS_PLUS] = ACTIONS(2680), + [anon_sym_DASH_DASH] = ACTIONS(2680), + [anon_sym_QMARK] = ACTIONS(2680), + [anon_sym_BANG] = ACTIONS(2680), + [anon_sym_go] = ACTIONS(2680), + [anon_sym_spawn] = ACTIONS(2680), + [anon_sym_json_DOTdecode] = ACTIONS(2680), + [anon_sym_LBRACK2] = ACTIONS(2680), + [anon_sym_TILDE] = ACTIONS(2680), + [anon_sym_CARET] = ACTIONS(2680), + [anon_sym_AMP] = ACTIONS(2680), + [anon_sym_LT_DASH] = ACTIONS(2680), + [anon_sym_LT_LT] = ACTIONS(2680), + [anon_sym_GT_GT] = ACTIONS(2680), + [anon_sym_GT_GT_GT] = ACTIONS(2680), + [anon_sym_AMP_CARET] = ACTIONS(2680), + [anon_sym_AMP_AMP] = ACTIONS(2680), + [anon_sym_PIPE_PIPE] = ACTIONS(2680), + [anon_sym_or] = ACTIONS(2680), + [sym_none] = ACTIONS(2680), + [sym_true] = ACTIONS(2680), + [sym_false] = ACTIONS(2680), + [sym_nil] = ACTIONS(2680), + [anon_sym_QMARK_DOT] = ACTIONS(2680), + [anon_sym_POUND_LBRACK] = ACTIONS(2680), + [anon_sym_if] = ACTIONS(2680), + [anon_sym_DOLLARif] = ACTIONS(2680), + [anon_sym_is] = ACTIONS(2680), + [anon_sym_BANGis] = ACTIONS(2680), + [anon_sym_in] = ACTIONS(2680), + [anon_sym_BANGin] = ACTIONS(2680), + [anon_sym_match] = ACTIONS(2680), + [anon_sym_select] = ACTIONS(2680), + [anon_sym_lock] = ACTIONS(2680), + [anon_sym_rlock] = ACTIONS(2680), + [anon_sym_unsafe] = ACTIONS(2680), + [anon_sym_sql] = ACTIONS(2680), + [sym_int_literal] = ACTIONS(2680), + [sym_float_literal] = ACTIONS(2680), + [sym_rune_literal] = ACTIONS(2680), + [sym_pseudo_compile_time_identifier] = ACTIONS(2680), + [anon_sym_shared] = ACTIONS(2680), + [anon_sym_map_LBRACK] = ACTIONS(2680), + [anon_sym_chan] = ACTIONS(2680), + [anon_sym_thread] = ACTIONS(2680), + [anon_sym_atomic] = ACTIONS(2680), + [anon_sym_assert] = ACTIONS(2680), + [anon_sym_defer] = ACTIONS(2680), + [anon_sym_goto] = ACTIONS(2680), + [anon_sym_break] = ACTIONS(2680), + [anon_sym_continue] = ACTIONS(2680), + [anon_sym_return] = ACTIONS(2680), + [anon_sym_DOLLARfor] = ACTIONS(2680), + [anon_sym_for] = ACTIONS(2680), + [anon_sym_POUND] = ACTIONS(2680), + [anon_sym_asm] = ACTIONS(2680), + [anon_sym_AT_LBRACK] = ACTIONS(2680), + [sym___double_quote] = ACTIONS(2680), + [sym___single_quote] = ACTIONS(2680), + [sym___c_double_quote] = ACTIONS(2680), + [sym___c_single_quote] = ACTIONS(2680), + [sym___r_double_quote] = ACTIONS(2680), + [sym___r_single_quote] = ACTIONS(2680), }, [1066] = { [sym_line_comment] = STATE(1066), [sym_block_comment] = STATE(1066), - [ts_builtin_sym_end] = ACTIONS(2119), - [sym_identifier] = ACTIONS(2121), - [anon_sym_LF] = ACTIONS(2121), - [anon_sym_CR] = ACTIONS(2121), - [anon_sym_CR_LF] = ACTIONS(2121), + [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), [anon_sym_SLASH_SLASH] = ACTIONS(497), [anon_sym_SLASH_STAR] = ACTIONS(499), - [anon_sym_DOT] = ACTIONS(2121), - [anon_sym_as] = ACTIONS(2121), - [anon_sym_LBRACE] = ACTIONS(2121), - [anon_sym_COMMA] = ACTIONS(2121), - [anon_sym_const] = ACTIONS(2121), - [anon_sym_LPAREN] = ACTIONS(2121), - [anon_sym___global] = ACTIONS(2121), - [anon_sym_type] = ACTIONS(2121), - [anon_sym_PIPE] = ACTIONS(2121), - [anon_sym_fn] = ACTIONS(2121), - [anon_sym_PLUS] = ACTIONS(2121), - [anon_sym_DASH] = ACTIONS(2121), - [anon_sym_STAR] = ACTIONS(2121), - [anon_sym_SLASH] = ACTIONS(2121), - [anon_sym_PERCENT] = ACTIONS(2121), - [anon_sym_LT] = ACTIONS(2121), - [anon_sym_GT] = ACTIONS(2121), - [anon_sym_EQ_EQ] = ACTIONS(2121), - [anon_sym_BANG_EQ] = ACTIONS(2121), - [anon_sym_LT_EQ] = ACTIONS(2121), - [anon_sym_GT_EQ] = ACTIONS(2121), - [anon_sym_LBRACK] = ACTIONS(2119), - [anon_sym_struct] = ACTIONS(2121), - [anon_sym_union] = ACTIONS(2121), - [anon_sym_pub] = ACTIONS(2121), - [anon_sym_mut] = ACTIONS(2121), - [anon_sym_enum] = ACTIONS(2121), - [anon_sym_interface] = ACTIONS(2121), - [anon_sym_PLUS_PLUS] = ACTIONS(2121), - [anon_sym_DASH_DASH] = ACTIONS(2121), - [anon_sym_QMARK] = ACTIONS(2121), - [anon_sym_BANG] = ACTIONS(2121), - [anon_sym_go] = ACTIONS(2121), - [anon_sym_spawn] = ACTIONS(2121), - [anon_sym_json_DOTdecode] = ACTIONS(2121), - [anon_sym_LBRACK2] = ACTIONS(2121), - [anon_sym_TILDE] = ACTIONS(2121), - [anon_sym_CARET] = ACTIONS(2121), - [anon_sym_AMP] = ACTIONS(2121), - [anon_sym_LT_DASH] = ACTIONS(2121), - [anon_sym_LT_LT] = ACTIONS(2121), - [anon_sym_GT_GT] = ACTIONS(2121), - [anon_sym_GT_GT_GT] = ACTIONS(2121), - [anon_sym_AMP_CARET] = ACTIONS(2121), - [anon_sym_AMP_AMP] = ACTIONS(2121), - [anon_sym_PIPE_PIPE] = ACTIONS(2121), - [anon_sym_or] = ACTIONS(2121), - [sym_none] = ACTIONS(2121), - [sym_true] = ACTIONS(2121), - [sym_false] = ACTIONS(2121), - [sym_nil] = ACTIONS(2121), - [anon_sym_QMARK_DOT] = ACTIONS(2121), - [anon_sym_POUND_LBRACK] = ACTIONS(2121), - [anon_sym_if] = ACTIONS(2121), - [anon_sym_DOLLARif] = ACTIONS(2121), - [anon_sym_is] = ACTIONS(2121), - [anon_sym_BANGis] = ACTIONS(2121), - [anon_sym_in] = ACTIONS(2121), - [anon_sym_BANGin] = ACTIONS(2121), - [anon_sym_match] = ACTIONS(2121), - [anon_sym_select] = ACTIONS(2121), - [anon_sym_lock] = ACTIONS(2121), - [anon_sym_rlock] = ACTIONS(2121), - [anon_sym_unsafe] = ACTIONS(2121), - [anon_sym_sql] = ACTIONS(2121), - [sym_int_literal] = ACTIONS(2121), - [sym_float_literal] = ACTIONS(2121), - [sym_rune_literal] = ACTIONS(2121), - [sym_pseudo_compile_time_identifier] = ACTIONS(2121), - [anon_sym_shared] = ACTIONS(2121), - [anon_sym_map_LBRACK] = ACTIONS(2121), - [anon_sym_chan] = ACTIONS(2121), - [anon_sym_thread] = ACTIONS(2121), - [anon_sym_atomic] = ACTIONS(2121), - [anon_sym_assert] = ACTIONS(2121), - [anon_sym_defer] = ACTIONS(2121), - [anon_sym_goto] = ACTIONS(2121), - [anon_sym_break] = ACTIONS(2121), - [anon_sym_continue] = ACTIONS(2121), - [anon_sym_return] = ACTIONS(2121), - [anon_sym_DOLLARfor] = ACTIONS(2121), - [anon_sym_for] = ACTIONS(2121), - [anon_sym_POUND] = ACTIONS(2121), - [anon_sym_asm] = ACTIONS(2121), - [anon_sym_AT_LBRACK] = ACTIONS(2121), - [sym___double_quote] = ACTIONS(2121), - [sym___single_quote] = ACTIONS(2121), - [sym___c_double_quote] = ACTIONS(2121), - [sym___c_single_quote] = ACTIONS(2121), - [sym___r_double_quote] = ACTIONS(2121), - [sym___r_single_quote] = ACTIONS(2121), + [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_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), }, [1067] = { [sym_line_comment] = STATE(1067), [sym_block_comment] = STATE(1067), - [ts_builtin_sym_end] = ACTIONS(3060), - [sym_identifier] = ACTIONS(3062), - [anon_sym_LF] = ACTIONS(3062), - [anon_sym_CR] = ACTIONS(3062), - [anon_sym_CR_LF] = ACTIONS(3062), + [ts_builtin_sym_end] = ACTIONS(1807), + [sym_identifier] = ACTIONS(1809), + [anon_sym_LF] = ACTIONS(1809), + [anon_sym_CR] = ACTIONS(1809), + [anon_sym_CR_LF] = ACTIONS(1809), [anon_sym_SLASH_SLASH] = ACTIONS(497), [anon_sym_SLASH_STAR] = ACTIONS(499), - [anon_sym_DOT] = ACTIONS(3062), - [anon_sym_as] = ACTIONS(3062), - [anon_sym_LBRACE] = ACTIONS(3062), - [anon_sym_COMMA] = ACTIONS(3062), - [anon_sym_const] = ACTIONS(3062), - [anon_sym_LPAREN] = ACTIONS(3062), - [anon_sym___global] = ACTIONS(3062), - [anon_sym_type] = ACTIONS(3062), - [anon_sym_PIPE] = ACTIONS(3062), - [anon_sym_fn] = ACTIONS(3062), - [anon_sym_PLUS] = ACTIONS(3062), - [anon_sym_DASH] = ACTIONS(3062), - [anon_sym_STAR] = ACTIONS(3062), - [anon_sym_SLASH] = ACTIONS(3062), - [anon_sym_PERCENT] = ACTIONS(3062), - [anon_sym_LT] = ACTIONS(3062), - [anon_sym_GT] = ACTIONS(3062), - [anon_sym_EQ_EQ] = ACTIONS(3062), - [anon_sym_BANG_EQ] = ACTIONS(3062), - [anon_sym_LT_EQ] = ACTIONS(3062), - [anon_sym_GT_EQ] = ACTIONS(3062), - [anon_sym_LBRACK] = ACTIONS(3060), - [anon_sym_struct] = ACTIONS(3062), - [anon_sym_union] = ACTIONS(3062), - [anon_sym_pub] = ACTIONS(3062), - [anon_sym_mut] = ACTIONS(3062), - [anon_sym_enum] = ACTIONS(3062), - [anon_sym_interface] = ACTIONS(3062), - [anon_sym_PLUS_PLUS] = ACTIONS(3062), - [anon_sym_DASH_DASH] = ACTIONS(3062), - [anon_sym_QMARK] = ACTIONS(3062), - [anon_sym_BANG] = ACTIONS(3062), - [anon_sym_go] = ACTIONS(3062), - [anon_sym_spawn] = ACTIONS(3062), - [anon_sym_json_DOTdecode] = ACTIONS(3062), - [anon_sym_LBRACK2] = ACTIONS(3062), - [anon_sym_TILDE] = ACTIONS(3062), - [anon_sym_CARET] = ACTIONS(3062), - [anon_sym_AMP] = ACTIONS(3062), - [anon_sym_LT_DASH] = ACTIONS(3062), - [anon_sym_LT_LT] = ACTIONS(3062), - [anon_sym_GT_GT] = ACTIONS(3062), - [anon_sym_GT_GT_GT] = ACTIONS(3062), - [anon_sym_AMP_CARET] = ACTIONS(3062), - [anon_sym_AMP_AMP] = ACTIONS(3062), - [anon_sym_PIPE_PIPE] = ACTIONS(3062), - [anon_sym_or] = ACTIONS(3062), - [sym_none] = ACTIONS(3062), - [sym_true] = ACTIONS(3062), - [sym_false] = ACTIONS(3062), - [sym_nil] = ACTIONS(3062), - [anon_sym_QMARK_DOT] = ACTIONS(3062), - [anon_sym_POUND_LBRACK] = ACTIONS(3062), - [anon_sym_if] = ACTIONS(3062), - [anon_sym_DOLLARif] = ACTIONS(3062), - [anon_sym_is] = ACTIONS(3062), - [anon_sym_BANGis] = ACTIONS(3062), - [anon_sym_in] = ACTIONS(3062), - [anon_sym_BANGin] = ACTIONS(3062), - [anon_sym_match] = ACTIONS(3062), - [anon_sym_select] = ACTIONS(3062), - [anon_sym_lock] = ACTIONS(3062), - [anon_sym_rlock] = ACTIONS(3062), - [anon_sym_unsafe] = ACTIONS(3062), - [anon_sym_sql] = ACTIONS(3062), - [sym_int_literal] = ACTIONS(3062), - [sym_float_literal] = ACTIONS(3062), - [sym_rune_literal] = ACTIONS(3062), - [sym_pseudo_compile_time_identifier] = ACTIONS(3062), - [anon_sym_shared] = ACTIONS(3062), - [anon_sym_map_LBRACK] = ACTIONS(3062), - [anon_sym_chan] = ACTIONS(3062), - [anon_sym_thread] = ACTIONS(3062), - [anon_sym_atomic] = ACTIONS(3062), - [anon_sym_assert] = ACTIONS(3062), - [anon_sym_defer] = ACTIONS(3062), - [anon_sym_goto] = ACTIONS(3062), - [anon_sym_break] = ACTIONS(3062), - [anon_sym_continue] = ACTIONS(3062), - [anon_sym_return] = ACTIONS(3062), - [anon_sym_DOLLARfor] = ACTIONS(3062), - [anon_sym_for] = ACTIONS(3062), - [anon_sym_POUND] = ACTIONS(3062), - [anon_sym_asm] = ACTIONS(3062), - [anon_sym_AT_LBRACK] = ACTIONS(3062), - [sym___double_quote] = ACTIONS(3062), - [sym___single_quote] = ACTIONS(3062), - [sym___c_double_quote] = ACTIONS(3062), - [sym___c_single_quote] = ACTIONS(3062), - [sym___r_double_quote] = ACTIONS(3062), - [sym___r_single_quote] = ACTIONS(3062), + [anon_sym_DOT] = ACTIONS(1809), + [anon_sym_as] = ACTIONS(1809), + [anon_sym_LBRACE] = ACTIONS(1809), + [anon_sym_COMMA] = ACTIONS(1809), + [anon_sym_const] = ACTIONS(1809), + [anon_sym_LPAREN] = ACTIONS(1809), + [anon_sym___global] = ACTIONS(1809), + [anon_sym_type] = ACTIONS(1809), + [anon_sym_PIPE] = ACTIONS(1809), + [anon_sym_fn] = ACTIONS(1809), + [anon_sym_PLUS] = ACTIONS(1809), + [anon_sym_DASH] = ACTIONS(1809), + [anon_sym_STAR] = ACTIONS(1809), + [anon_sym_SLASH] = ACTIONS(1809), + [anon_sym_PERCENT] = ACTIONS(1809), + [anon_sym_LT] = ACTIONS(1809), + [anon_sym_GT] = ACTIONS(1809), + [anon_sym_EQ_EQ] = ACTIONS(1809), + [anon_sym_BANG_EQ] = ACTIONS(1809), + [anon_sym_LT_EQ] = ACTIONS(1809), + [anon_sym_GT_EQ] = ACTIONS(1809), + [anon_sym_LBRACK] = ACTIONS(1807), + [anon_sym_struct] = ACTIONS(1809), + [anon_sym_union] = ACTIONS(1809), + [anon_sym_pub] = ACTIONS(1809), + [anon_sym_mut] = ACTIONS(1809), + [anon_sym_enum] = ACTIONS(1809), + [anon_sym_interface] = ACTIONS(1809), + [anon_sym_PLUS_PLUS] = ACTIONS(1809), + [anon_sym_DASH_DASH] = ACTIONS(1809), + [anon_sym_QMARK] = ACTIONS(1809), + [anon_sym_BANG] = ACTIONS(1809), + [anon_sym_go] = ACTIONS(1809), + [anon_sym_spawn] = ACTIONS(1809), + [anon_sym_json_DOTdecode] = ACTIONS(1809), + [anon_sym_LBRACK2] = ACTIONS(1809), + [anon_sym_TILDE] = ACTIONS(1809), + [anon_sym_CARET] = ACTIONS(1809), + [anon_sym_AMP] = ACTIONS(1809), + [anon_sym_LT_DASH] = ACTIONS(1809), + [anon_sym_LT_LT] = ACTIONS(1809), + [anon_sym_GT_GT] = ACTIONS(1809), + [anon_sym_GT_GT_GT] = ACTIONS(1809), + [anon_sym_AMP_CARET] = ACTIONS(1809), + [anon_sym_AMP_AMP] = ACTIONS(1809), + [anon_sym_PIPE_PIPE] = ACTIONS(1809), + [anon_sym_or] = ACTIONS(1809), + [sym_none] = ACTIONS(1809), + [sym_true] = ACTIONS(1809), + [sym_false] = ACTIONS(1809), + [sym_nil] = ACTIONS(1809), + [anon_sym_QMARK_DOT] = ACTIONS(1809), + [anon_sym_POUND_LBRACK] = ACTIONS(1809), + [anon_sym_if] = ACTIONS(1809), + [anon_sym_DOLLARif] = ACTIONS(1809), + [anon_sym_is] = ACTIONS(1809), + [anon_sym_BANGis] = ACTIONS(1809), + [anon_sym_in] = ACTIONS(1809), + [anon_sym_BANGin] = ACTIONS(1809), + [anon_sym_match] = ACTIONS(1809), + [anon_sym_select] = ACTIONS(1809), + [anon_sym_lock] = ACTIONS(1809), + [anon_sym_rlock] = ACTIONS(1809), + [anon_sym_unsafe] = ACTIONS(1809), + [anon_sym_sql] = ACTIONS(1809), + [sym_int_literal] = ACTIONS(1809), + [sym_float_literal] = ACTIONS(1809), + [sym_rune_literal] = ACTIONS(1809), + [sym_pseudo_compile_time_identifier] = ACTIONS(1809), + [anon_sym_shared] = ACTIONS(1809), + [anon_sym_map_LBRACK] = ACTIONS(1809), + [anon_sym_chan] = ACTIONS(1809), + [anon_sym_thread] = ACTIONS(1809), + [anon_sym_atomic] = ACTIONS(1809), + [anon_sym_assert] = ACTIONS(1809), + [anon_sym_defer] = ACTIONS(1809), + [anon_sym_goto] = ACTIONS(1809), + [anon_sym_break] = ACTIONS(1809), + [anon_sym_continue] = ACTIONS(1809), + [anon_sym_return] = ACTIONS(1809), + [anon_sym_DOLLARfor] = ACTIONS(1809), + [anon_sym_for] = ACTIONS(1809), + [anon_sym_POUND] = ACTIONS(1809), + [anon_sym_asm] = ACTIONS(1809), + [anon_sym_AT_LBRACK] = ACTIONS(1809), + [sym___double_quote] = ACTIONS(1809), + [sym___single_quote] = ACTIONS(1809), + [sym___c_double_quote] = ACTIONS(1809), + [sym___c_single_quote] = ACTIONS(1809), + [sym___r_double_quote] = ACTIONS(1809), + [sym___r_single_quote] = ACTIONS(1809), }, [1068] = { [sym_line_comment] = STATE(1068), [sym_block_comment] = STATE(1068), - [ts_builtin_sym_end] = ACTIONS(2894), - [sym_identifier] = ACTIONS(2896), - [anon_sym_LF] = ACTIONS(2896), - [anon_sym_CR] = ACTIONS(2896), - [anon_sym_CR_LF] = ACTIONS(2896), + [ts_builtin_sym_end] = ACTIONS(2305), + [sym_identifier] = ACTIONS(2307), + [anon_sym_LF] = ACTIONS(2307), + [anon_sym_CR] = ACTIONS(2307), + [anon_sym_CR_LF] = ACTIONS(2307), [anon_sym_SLASH_SLASH] = ACTIONS(497), [anon_sym_SLASH_STAR] = ACTIONS(499), - [anon_sym_DOT] = ACTIONS(2896), - [anon_sym_as] = ACTIONS(2896), - [anon_sym_LBRACE] = ACTIONS(2896), - [anon_sym_COMMA] = ACTIONS(2896), - [anon_sym_const] = ACTIONS(2896), - [anon_sym_LPAREN] = ACTIONS(2896), - [anon_sym___global] = ACTIONS(2896), - [anon_sym_type] = ACTIONS(2896), - [anon_sym_PIPE] = ACTIONS(2896), - [anon_sym_fn] = ACTIONS(2896), - [anon_sym_PLUS] = ACTIONS(2896), - [anon_sym_DASH] = ACTIONS(2896), - [anon_sym_STAR] = ACTIONS(2896), - [anon_sym_SLASH] = ACTIONS(2896), - [anon_sym_PERCENT] = ACTIONS(2896), - [anon_sym_LT] = ACTIONS(2896), - [anon_sym_GT] = ACTIONS(2896), - [anon_sym_EQ_EQ] = ACTIONS(2896), - [anon_sym_BANG_EQ] = ACTIONS(2896), - [anon_sym_LT_EQ] = ACTIONS(2896), - [anon_sym_GT_EQ] = ACTIONS(2896), - [anon_sym_LBRACK] = ACTIONS(2894), - [anon_sym_struct] = ACTIONS(2896), - [anon_sym_union] = ACTIONS(2896), - [anon_sym_pub] = ACTIONS(2896), - [anon_sym_mut] = ACTIONS(2896), - [anon_sym_enum] = ACTIONS(2896), - [anon_sym_interface] = ACTIONS(2896), - [anon_sym_PLUS_PLUS] = ACTIONS(2896), - [anon_sym_DASH_DASH] = ACTIONS(2896), - [anon_sym_QMARK] = ACTIONS(2896), - [anon_sym_BANG] = ACTIONS(2896), - [anon_sym_go] = ACTIONS(2896), - [anon_sym_spawn] = ACTIONS(2896), - [anon_sym_json_DOTdecode] = ACTIONS(2896), - [anon_sym_LBRACK2] = ACTIONS(2896), - [anon_sym_TILDE] = ACTIONS(2896), - [anon_sym_CARET] = ACTIONS(2896), - [anon_sym_AMP] = ACTIONS(2896), - [anon_sym_LT_DASH] = ACTIONS(2896), - [anon_sym_LT_LT] = ACTIONS(2896), - [anon_sym_GT_GT] = ACTIONS(2896), - [anon_sym_GT_GT_GT] = ACTIONS(2896), - [anon_sym_AMP_CARET] = ACTIONS(2896), - [anon_sym_AMP_AMP] = ACTIONS(2896), - [anon_sym_PIPE_PIPE] = ACTIONS(2896), - [anon_sym_or] = ACTIONS(2896), - [sym_none] = ACTIONS(2896), - [sym_true] = ACTIONS(2896), - [sym_false] = ACTIONS(2896), - [sym_nil] = ACTIONS(2896), - [anon_sym_QMARK_DOT] = ACTIONS(2896), - [anon_sym_POUND_LBRACK] = ACTIONS(2896), - [anon_sym_if] = ACTIONS(2896), - [anon_sym_DOLLARif] = ACTIONS(2896), - [anon_sym_is] = ACTIONS(2896), - [anon_sym_BANGis] = ACTIONS(2896), - [anon_sym_in] = ACTIONS(2896), - [anon_sym_BANGin] = ACTIONS(2896), - [anon_sym_match] = ACTIONS(2896), - [anon_sym_select] = ACTIONS(2896), - [anon_sym_lock] = ACTIONS(2896), - [anon_sym_rlock] = ACTIONS(2896), - [anon_sym_unsafe] = ACTIONS(2896), - [anon_sym_sql] = ACTIONS(2896), - [sym_int_literal] = ACTIONS(2896), - [sym_float_literal] = ACTIONS(2896), - [sym_rune_literal] = ACTIONS(2896), - [sym_pseudo_compile_time_identifier] = ACTIONS(2896), - [anon_sym_shared] = ACTIONS(2896), - [anon_sym_map_LBRACK] = ACTIONS(2896), - [anon_sym_chan] = ACTIONS(2896), - [anon_sym_thread] = ACTIONS(2896), - [anon_sym_atomic] = ACTIONS(2896), - [anon_sym_assert] = ACTIONS(2896), - [anon_sym_defer] = ACTIONS(2896), - [anon_sym_goto] = ACTIONS(2896), - [anon_sym_break] = ACTIONS(2896), - [anon_sym_continue] = ACTIONS(2896), - [anon_sym_return] = ACTIONS(2896), - [anon_sym_DOLLARfor] = ACTIONS(2896), - [anon_sym_for] = ACTIONS(2896), - [anon_sym_POUND] = ACTIONS(2896), - [anon_sym_asm] = ACTIONS(2896), - [anon_sym_AT_LBRACK] = ACTIONS(2896), - [sym___double_quote] = ACTIONS(2896), - [sym___single_quote] = ACTIONS(2896), - [sym___c_double_quote] = ACTIONS(2896), - [sym___c_single_quote] = ACTIONS(2896), - [sym___r_double_quote] = ACTIONS(2896), - [sym___r_single_quote] = ACTIONS(2896), + [anon_sym_DOT] = ACTIONS(2307), + [anon_sym_as] = ACTIONS(2307), + [anon_sym_LBRACE] = ACTIONS(2307), + [anon_sym_COMMA] = ACTIONS(2307), + [anon_sym_const] = ACTIONS(2307), + [anon_sym_LPAREN] = ACTIONS(2307), + [anon_sym___global] = ACTIONS(2307), + [anon_sym_type] = ACTIONS(2307), + [anon_sym_PIPE] = ACTIONS(2307), + [anon_sym_fn] = ACTIONS(2307), + [anon_sym_PLUS] = ACTIONS(2307), + [anon_sym_DASH] = ACTIONS(2307), + [anon_sym_STAR] = ACTIONS(2307), + [anon_sym_SLASH] = ACTIONS(2307), + [anon_sym_PERCENT] = ACTIONS(2307), + [anon_sym_LT] = ACTIONS(2307), + [anon_sym_GT] = ACTIONS(2307), + [anon_sym_EQ_EQ] = ACTIONS(2307), + [anon_sym_BANG_EQ] = ACTIONS(2307), + [anon_sym_LT_EQ] = ACTIONS(2307), + [anon_sym_GT_EQ] = ACTIONS(2307), + [anon_sym_LBRACK] = ACTIONS(2305), + [anon_sym_struct] = ACTIONS(2307), + [anon_sym_union] = ACTIONS(2307), + [anon_sym_pub] = ACTIONS(2307), + [anon_sym_mut] = ACTIONS(2307), + [anon_sym_enum] = ACTIONS(2307), + [anon_sym_interface] = ACTIONS(2307), + [anon_sym_PLUS_PLUS] = ACTIONS(2307), + [anon_sym_DASH_DASH] = ACTIONS(2307), + [anon_sym_QMARK] = ACTIONS(2307), + [anon_sym_BANG] = ACTIONS(2307), + [anon_sym_go] = ACTIONS(2307), + [anon_sym_spawn] = ACTIONS(2307), + [anon_sym_json_DOTdecode] = ACTIONS(2307), + [anon_sym_LBRACK2] = ACTIONS(2307), + [anon_sym_TILDE] = ACTIONS(2307), + [anon_sym_CARET] = ACTIONS(2307), + [anon_sym_AMP] = ACTIONS(2307), + [anon_sym_LT_DASH] = ACTIONS(2307), + [anon_sym_LT_LT] = ACTIONS(2307), + [anon_sym_GT_GT] = ACTIONS(2307), + [anon_sym_GT_GT_GT] = ACTIONS(2307), + [anon_sym_AMP_CARET] = ACTIONS(2307), + [anon_sym_AMP_AMP] = ACTIONS(2307), + [anon_sym_PIPE_PIPE] = ACTIONS(2307), + [anon_sym_or] = ACTIONS(2307), + [sym_none] = ACTIONS(2307), + [sym_true] = ACTIONS(2307), + [sym_false] = ACTIONS(2307), + [sym_nil] = ACTIONS(2307), + [anon_sym_QMARK_DOT] = ACTIONS(2307), + [anon_sym_POUND_LBRACK] = ACTIONS(2307), + [anon_sym_if] = ACTIONS(2307), + [anon_sym_DOLLARif] = ACTIONS(2307), + [anon_sym_is] = ACTIONS(2307), + [anon_sym_BANGis] = ACTIONS(2307), + [anon_sym_in] = ACTIONS(2307), + [anon_sym_BANGin] = ACTIONS(2307), + [anon_sym_match] = ACTIONS(2307), + [anon_sym_select] = ACTIONS(2307), + [anon_sym_lock] = ACTIONS(2307), + [anon_sym_rlock] = ACTIONS(2307), + [anon_sym_unsafe] = ACTIONS(2307), + [anon_sym_sql] = ACTIONS(2307), + [sym_int_literal] = ACTIONS(2307), + [sym_float_literal] = ACTIONS(2307), + [sym_rune_literal] = ACTIONS(2307), + [sym_pseudo_compile_time_identifier] = ACTIONS(2307), + [anon_sym_shared] = ACTIONS(2307), + [anon_sym_map_LBRACK] = ACTIONS(2307), + [anon_sym_chan] = ACTIONS(2307), + [anon_sym_thread] = ACTIONS(2307), + [anon_sym_atomic] = ACTIONS(2307), + [anon_sym_assert] = ACTIONS(2307), + [anon_sym_defer] = ACTIONS(2307), + [anon_sym_goto] = ACTIONS(2307), + [anon_sym_break] = ACTIONS(2307), + [anon_sym_continue] = ACTIONS(2307), + [anon_sym_return] = ACTIONS(2307), + [anon_sym_DOLLARfor] = ACTIONS(2307), + [anon_sym_for] = ACTIONS(2307), + [anon_sym_POUND] = ACTIONS(2307), + [anon_sym_asm] = ACTIONS(2307), + [anon_sym_AT_LBRACK] = ACTIONS(2307), + [sym___double_quote] = ACTIONS(2307), + [sym___single_quote] = ACTIONS(2307), + [sym___c_double_quote] = ACTIONS(2307), + [sym___c_single_quote] = ACTIONS(2307), + [sym___r_double_quote] = ACTIONS(2307), + [sym___r_single_quote] = ACTIONS(2307), }, [1069] = { [sym_line_comment] = STATE(1069), [sym_block_comment] = STATE(1069), - [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), + [ts_builtin_sym_end] = ACTIONS(2838), + [sym_identifier] = ACTIONS(2840), + [anon_sym_LF] = ACTIONS(2840), + [anon_sym_CR] = ACTIONS(2840), + [anon_sym_CR_LF] = ACTIONS(2840), [anon_sym_SLASH_SLASH] = ACTIONS(497), [anon_sym_SLASH_STAR] = ACTIONS(499), - [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_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(2840), + [anon_sym_as] = ACTIONS(2840), + [anon_sym_LBRACE] = ACTIONS(2840), + [anon_sym_COMMA] = ACTIONS(2840), + [anon_sym_const] = ACTIONS(2840), + [anon_sym_LPAREN] = ACTIONS(2840), + [anon_sym___global] = ACTIONS(2840), + [anon_sym_type] = ACTIONS(2840), + [anon_sym_PIPE] = ACTIONS(2840), + [anon_sym_fn] = ACTIONS(2840), + [anon_sym_PLUS] = ACTIONS(2840), + [anon_sym_DASH] = ACTIONS(2840), + [anon_sym_STAR] = ACTIONS(2840), + [anon_sym_SLASH] = ACTIONS(2840), + [anon_sym_PERCENT] = ACTIONS(2840), + [anon_sym_LT] = ACTIONS(2840), + [anon_sym_GT] = ACTIONS(2840), + [anon_sym_EQ_EQ] = ACTIONS(2840), + [anon_sym_BANG_EQ] = ACTIONS(2840), + [anon_sym_LT_EQ] = ACTIONS(2840), + [anon_sym_GT_EQ] = ACTIONS(2840), + [anon_sym_LBRACK] = ACTIONS(2838), + [anon_sym_struct] = ACTIONS(2840), + [anon_sym_union] = ACTIONS(2840), + [anon_sym_pub] = ACTIONS(2840), + [anon_sym_mut] = ACTIONS(2840), + [anon_sym_enum] = ACTIONS(2840), + [anon_sym_interface] = ACTIONS(2840), + [anon_sym_PLUS_PLUS] = ACTIONS(2840), + [anon_sym_DASH_DASH] = ACTIONS(2840), + [anon_sym_QMARK] = ACTIONS(2840), + [anon_sym_BANG] = ACTIONS(2840), + [anon_sym_go] = ACTIONS(2840), + [anon_sym_spawn] = ACTIONS(2840), + [anon_sym_json_DOTdecode] = ACTIONS(2840), + [anon_sym_LBRACK2] = ACTIONS(2840), + [anon_sym_TILDE] = ACTIONS(2840), + [anon_sym_CARET] = ACTIONS(2840), + [anon_sym_AMP] = ACTIONS(2840), + [anon_sym_LT_DASH] = ACTIONS(2840), + [anon_sym_LT_LT] = ACTIONS(2840), + [anon_sym_GT_GT] = ACTIONS(2840), + [anon_sym_GT_GT_GT] = ACTIONS(2840), + [anon_sym_AMP_CARET] = ACTIONS(2840), + [anon_sym_AMP_AMP] = ACTIONS(2840), + [anon_sym_PIPE_PIPE] = ACTIONS(2840), + [anon_sym_or] = ACTIONS(2840), + [sym_none] = ACTIONS(2840), + [sym_true] = ACTIONS(2840), + [sym_false] = ACTIONS(2840), + [sym_nil] = ACTIONS(2840), + [anon_sym_QMARK_DOT] = ACTIONS(2840), + [anon_sym_POUND_LBRACK] = ACTIONS(2840), + [anon_sym_if] = ACTIONS(2840), + [anon_sym_DOLLARif] = ACTIONS(2840), + [anon_sym_is] = ACTIONS(2840), + [anon_sym_BANGis] = ACTIONS(2840), + [anon_sym_in] = ACTIONS(2840), + [anon_sym_BANGin] = ACTIONS(2840), + [anon_sym_match] = ACTIONS(2840), + [anon_sym_select] = ACTIONS(2840), + [anon_sym_lock] = ACTIONS(2840), + [anon_sym_rlock] = ACTIONS(2840), + [anon_sym_unsafe] = ACTIONS(2840), + [anon_sym_sql] = ACTIONS(2840), + [sym_int_literal] = ACTIONS(2840), + [sym_float_literal] = ACTIONS(2840), + [sym_rune_literal] = ACTIONS(2840), + [sym_pseudo_compile_time_identifier] = ACTIONS(2840), + [anon_sym_shared] = ACTIONS(2840), + [anon_sym_map_LBRACK] = ACTIONS(2840), + [anon_sym_chan] = ACTIONS(2840), + [anon_sym_thread] = ACTIONS(2840), + [anon_sym_atomic] = ACTIONS(2840), + [anon_sym_assert] = ACTIONS(2840), + [anon_sym_defer] = ACTIONS(2840), + [anon_sym_goto] = ACTIONS(2840), + [anon_sym_break] = ACTIONS(2840), + [anon_sym_continue] = ACTIONS(2840), + [anon_sym_return] = ACTIONS(2840), + [anon_sym_DOLLARfor] = ACTIONS(2840), + [anon_sym_for] = ACTIONS(2840), + [anon_sym_POUND] = ACTIONS(2840), + [anon_sym_asm] = ACTIONS(2840), + [anon_sym_AT_LBRACK] = ACTIONS(2840), + [sym___double_quote] = ACTIONS(2840), + [sym___single_quote] = ACTIONS(2840), + [sym___c_double_quote] = ACTIONS(2840), + [sym___c_single_quote] = ACTIONS(2840), + [sym___r_double_quote] = ACTIONS(2840), + [sym___r_single_quote] = ACTIONS(2840), }, [1070] = { [sym_line_comment] = STATE(1070), [sym_block_comment] = STATE(1070), - [ts_builtin_sym_end] = ACTIONS(2886), - [sym_identifier] = ACTIONS(2888), - [anon_sym_LF] = ACTIONS(2888), - [anon_sym_CR] = ACTIONS(2888), - [anon_sym_CR_LF] = ACTIONS(2888), + [ts_builtin_sym_end] = ACTIONS(2856), + [sym_identifier] = ACTIONS(2858), + [anon_sym_LF] = ACTIONS(2858), + [anon_sym_CR] = ACTIONS(2858), + [anon_sym_CR_LF] = ACTIONS(2858), [anon_sym_SLASH_SLASH] = ACTIONS(497), [anon_sym_SLASH_STAR] = ACTIONS(499), - [anon_sym_DOT] = ACTIONS(2888), - [anon_sym_as] = ACTIONS(2888), - [anon_sym_LBRACE] = ACTIONS(2888), - [anon_sym_COMMA] = ACTIONS(2888), - [anon_sym_const] = ACTIONS(2888), - [anon_sym_LPAREN] = ACTIONS(2888), - [anon_sym___global] = ACTIONS(2888), - [anon_sym_type] = ACTIONS(2888), - [anon_sym_PIPE] = ACTIONS(2888), - [anon_sym_fn] = ACTIONS(2888), - [anon_sym_PLUS] = ACTIONS(2888), - [anon_sym_DASH] = ACTIONS(2888), - [anon_sym_STAR] = ACTIONS(2888), - [anon_sym_SLASH] = ACTIONS(2888), - [anon_sym_PERCENT] = ACTIONS(2888), - [anon_sym_LT] = ACTIONS(2888), - [anon_sym_GT] = ACTIONS(2888), - [anon_sym_EQ_EQ] = ACTIONS(2888), - [anon_sym_BANG_EQ] = ACTIONS(2888), - [anon_sym_LT_EQ] = ACTIONS(2888), - [anon_sym_GT_EQ] = ACTIONS(2888), - [anon_sym_LBRACK] = ACTIONS(2886), - [anon_sym_struct] = ACTIONS(2888), - [anon_sym_union] = ACTIONS(2888), - [anon_sym_pub] = ACTIONS(2888), - [anon_sym_mut] = ACTIONS(2888), - [anon_sym_enum] = ACTIONS(2888), - [anon_sym_interface] = ACTIONS(2888), - [anon_sym_PLUS_PLUS] = ACTIONS(2888), - [anon_sym_DASH_DASH] = ACTIONS(2888), - [anon_sym_QMARK] = ACTIONS(2888), - [anon_sym_BANG] = ACTIONS(2888), - [anon_sym_go] = ACTIONS(2888), - [anon_sym_spawn] = ACTIONS(2888), - [anon_sym_json_DOTdecode] = ACTIONS(2888), - [anon_sym_LBRACK2] = ACTIONS(2888), - [anon_sym_TILDE] = ACTIONS(2888), - [anon_sym_CARET] = ACTIONS(2888), - [anon_sym_AMP] = ACTIONS(2888), - [anon_sym_LT_DASH] = ACTIONS(2888), - [anon_sym_LT_LT] = ACTIONS(2888), - [anon_sym_GT_GT] = ACTIONS(2888), - [anon_sym_GT_GT_GT] = ACTIONS(2888), - [anon_sym_AMP_CARET] = ACTIONS(2888), - [anon_sym_AMP_AMP] = ACTIONS(2888), - [anon_sym_PIPE_PIPE] = ACTIONS(2888), - [anon_sym_or] = ACTIONS(2888), - [sym_none] = ACTIONS(2888), - [sym_true] = ACTIONS(2888), - [sym_false] = ACTIONS(2888), - [sym_nil] = ACTIONS(2888), - [anon_sym_QMARK_DOT] = ACTIONS(2888), - [anon_sym_POUND_LBRACK] = ACTIONS(2888), - [anon_sym_if] = ACTIONS(2888), - [anon_sym_DOLLARif] = ACTIONS(2888), - [anon_sym_is] = ACTIONS(2888), - [anon_sym_BANGis] = ACTIONS(2888), - [anon_sym_in] = ACTIONS(2888), - [anon_sym_BANGin] = ACTIONS(2888), - [anon_sym_match] = ACTIONS(2888), - [anon_sym_select] = ACTIONS(2888), - [anon_sym_lock] = ACTIONS(2888), - [anon_sym_rlock] = ACTIONS(2888), - [anon_sym_unsafe] = ACTIONS(2888), - [anon_sym_sql] = ACTIONS(2888), - [sym_int_literal] = ACTIONS(2888), - [sym_float_literal] = ACTIONS(2888), - [sym_rune_literal] = ACTIONS(2888), - [sym_pseudo_compile_time_identifier] = ACTIONS(2888), - [anon_sym_shared] = ACTIONS(2888), - [anon_sym_map_LBRACK] = ACTIONS(2888), - [anon_sym_chan] = ACTIONS(2888), - [anon_sym_thread] = ACTIONS(2888), - [anon_sym_atomic] = ACTIONS(2888), - [anon_sym_assert] = ACTIONS(2888), - [anon_sym_defer] = ACTIONS(2888), - [anon_sym_goto] = ACTIONS(2888), - [anon_sym_break] = ACTIONS(2888), - [anon_sym_continue] = ACTIONS(2888), - [anon_sym_return] = ACTIONS(2888), - [anon_sym_DOLLARfor] = ACTIONS(2888), - [anon_sym_for] = ACTIONS(2888), - [anon_sym_POUND] = ACTIONS(2888), - [anon_sym_asm] = ACTIONS(2888), - [anon_sym_AT_LBRACK] = ACTIONS(2888), - [sym___double_quote] = ACTIONS(2888), - [sym___single_quote] = ACTIONS(2888), - [sym___c_double_quote] = ACTIONS(2888), - [sym___c_single_quote] = ACTIONS(2888), - [sym___r_double_quote] = ACTIONS(2888), - [sym___r_single_quote] = ACTIONS(2888), + [anon_sym_DOT] = ACTIONS(2858), + [anon_sym_as] = ACTIONS(2858), + [anon_sym_LBRACE] = ACTIONS(2858), + [anon_sym_COMMA] = ACTIONS(2858), + [anon_sym_const] = ACTIONS(2858), + [anon_sym_LPAREN] = ACTIONS(2858), + [anon_sym___global] = ACTIONS(2858), + [anon_sym_type] = ACTIONS(2858), + [anon_sym_PIPE] = ACTIONS(2858), + [anon_sym_fn] = ACTIONS(2858), + [anon_sym_PLUS] = ACTIONS(2858), + [anon_sym_DASH] = ACTIONS(2858), + [anon_sym_STAR] = ACTIONS(2858), + [anon_sym_SLASH] = ACTIONS(2858), + [anon_sym_PERCENT] = ACTIONS(2858), + [anon_sym_LT] = ACTIONS(2858), + [anon_sym_GT] = ACTIONS(2858), + [anon_sym_EQ_EQ] = ACTIONS(2858), + [anon_sym_BANG_EQ] = ACTIONS(2858), + [anon_sym_LT_EQ] = ACTIONS(2858), + [anon_sym_GT_EQ] = ACTIONS(2858), + [anon_sym_LBRACK] = ACTIONS(2856), + [anon_sym_struct] = ACTIONS(2858), + [anon_sym_union] = ACTIONS(2858), + [anon_sym_pub] = ACTIONS(2858), + [anon_sym_mut] = ACTIONS(2858), + [anon_sym_enum] = ACTIONS(2858), + [anon_sym_interface] = ACTIONS(2858), + [anon_sym_PLUS_PLUS] = ACTIONS(2858), + [anon_sym_DASH_DASH] = ACTIONS(2858), + [anon_sym_QMARK] = ACTIONS(2858), + [anon_sym_BANG] = ACTIONS(2858), + [anon_sym_go] = ACTIONS(2858), + [anon_sym_spawn] = ACTIONS(2858), + [anon_sym_json_DOTdecode] = ACTIONS(2858), + [anon_sym_LBRACK2] = ACTIONS(2858), + [anon_sym_TILDE] = ACTIONS(2858), + [anon_sym_CARET] = ACTIONS(2858), + [anon_sym_AMP] = ACTIONS(2858), + [anon_sym_LT_DASH] = ACTIONS(2858), + [anon_sym_LT_LT] = ACTIONS(2858), + [anon_sym_GT_GT] = ACTIONS(2858), + [anon_sym_GT_GT_GT] = ACTIONS(2858), + [anon_sym_AMP_CARET] = ACTIONS(2858), + [anon_sym_AMP_AMP] = ACTIONS(2858), + [anon_sym_PIPE_PIPE] = ACTIONS(2858), + [anon_sym_or] = ACTIONS(2858), + [sym_none] = ACTIONS(2858), + [sym_true] = ACTIONS(2858), + [sym_false] = ACTIONS(2858), + [sym_nil] = ACTIONS(2858), + [anon_sym_QMARK_DOT] = ACTIONS(2858), + [anon_sym_POUND_LBRACK] = ACTIONS(2858), + [anon_sym_if] = ACTIONS(2858), + [anon_sym_DOLLARif] = ACTIONS(2858), + [anon_sym_is] = ACTIONS(2858), + [anon_sym_BANGis] = ACTIONS(2858), + [anon_sym_in] = ACTIONS(2858), + [anon_sym_BANGin] = ACTIONS(2858), + [anon_sym_match] = ACTIONS(2858), + [anon_sym_select] = ACTIONS(2858), + [anon_sym_lock] = ACTIONS(2858), + [anon_sym_rlock] = ACTIONS(2858), + [anon_sym_unsafe] = ACTIONS(2858), + [anon_sym_sql] = ACTIONS(2858), + [sym_int_literal] = ACTIONS(2858), + [sym_float_literal] = ACTIONS(2858), + [sym_rune_literal] = ACTIONS(2858), + [sym_pseudo_compile_time_identifier] = ACTIONS(2858), + [anon_sym_shared] = ACTIONS(2858), + [anon_sym_map_LBRACK] = ACTIONS(2858), + [anon_sym_chan] = ACTIONS(2858), + [anon_sym_thread] = ACTIONS(2858), + [anon_sym_atomic] = ACTIONS(2858), + [anon_sym_assert] = ACTIONS(2858), + [anon_sym_defer] = ACTIONS(2858), + [anon_sym_goto] = ACTIONS(2858), + [anon_sym_break] = ACTIONS(2858), + [anon_sym_continue] = ACTIONS(2858), + [anon_sym_return] = ACTIONS(2858), + [anon_sym_DOLLARfor] = ACTIONS(2858), + [anon_sym_for] = ACTIONS(2858), + [anon_sym_POUND] = ACTIONS(2858), + [anon_sym_asm] = ACTIONS(2858), + [anon_sym_AT_LBRACK] = ACTIONS(2858), + [sym___double_quote] = ACTIONS(2858), + [sym___single_quote] = ACTIONS(2858), + [sym___c_double_quote] = ACTIONS(2858), + [sym___c_single_quote] = ACTIONS(2858), + [sym___r_double_quote] = ACTIONS(2858), + [sym___r_single_quote] = ACTIONS(2858), }, [1071] = { [sym_line_comment] = STATE(1071), [sym_block_comment] = STATE(1071), - [ts_builtin_sym_end] = ACTIONS(2661), - [sym_identifier] = ACTIONS(2663), - [anon_sym_LF] = ACTIONS(2663), - [anon_sym_CR] = ACTIONS(2663), - [anon_sym_CR_LF] = ACTIONS(2663), + [ts_builtin_sym_end] = ACTIONS(2766), + [sym_identifier] = ACTIONS(2768), + [anon_sym_LF] = ACTIONS(2768), + [anon_sym_CR] = ACTIONS(2768), + [anon_sym_CR_LF] = ACTIONS(2768), [anon_sym_SLASH_SLASH] = ACTIONS(497), [anon_sym_SLASH_STAR] = ACTIONS(499), - [anon_sym_DOT] = ACTIONS(2663), - [anon_sym_as] = ACTIONS(2663), - [anon_sym_LBRACE] = ACTIONS(2663), - [anon_sym_COMMA] = ACTIONS(2663), - [anon_sym_const] = ACTIONS(2663), - [anon_sym_LPAREN] = ACTIONS(2663), - [anon_sym___global] = ACTIONS(2663), - [anon_sym_type] = ACTIONS(2663), - [anon_sym_PIPE] = ACTIONS(2663), - [anon_sym_fn] = ACTIONS(2663), - [anon_sym_PLUS] = ACTIONS(2663), - [anon_sym_DASH] = ACTIONS(2663), - [anon_sym_STAR] = ACTIONS(2663), - [anon_sym_SLASH] = ACTIONS(2663), - [anon_sym_PERCENT] = ACTIONS(2663), - [anon_sym_LT] = ACTIONS(2663), - [anon_sym_GT] = ACTIONS(2663), - [anon_sym_EQ_EQ] = ACTIONS(2663), - [anon_sym_BANG_EQ] = ACTIONS(2663), - [anon_sym_LT_EQ] = ACTIONS(2663), - [anon_sym_GT_EQ] = ACTIONS(2663), - [anon_sym_LBRACK] = ACTIONS(2661), - [anon_sym_struct] = ACTIONS(2663), - [anon_sym_union] = ACTIONS(2663), - [anon_sym_pub] = ACTIONS(2663), - [anon_sym_mut] = ACTIONS(2663), - [anon_sym_enum] = ACTIONS(2663), - [anon_sym_interface] = ACTIONS(2663), - [anon_sym_PLUS_PLUS] = ACTIONS(2663), - [anon_sym_DASH_DASH] = ACTIONS(2663), - [anon_sym_QMARK] = ACTIONS(2663), - [anon_sym_BANG] = ACTIONS(2663), - [anon_sym_go] = ACTIONS(2663), - [anon_sym_spawn] = ACTIONS(2663), - [anon_sym_json_DOTdecode] = ACTIONS(2663), - [anon_sym_LBRACK2] = ACTIONS(2663), - [anon_sym_TILDE] = ACTIONS(2663), - [anon_sym_CARET] = ACTIONS(2663), - [anon_sym_AMP] = ACTIONS(2663), - [anon_sym_LT_DASH] = ACTIONS(2663), - [anon_sym_LT_LT] = ACTIONS(2663), - [anon_sym_GT_GT] = ACTIONS(2663), - [anon_sym_GT_GT_GT] = ACTIONS(2663), - [anon_sym_AMP_CARET] = ACTIONS(2663), - [anon_sym_AMP_AMP] = ACTIONS(2663), - [anon_sym_PIPE_PIPE] = ACTIONS(2663), - [anon_sym_or] = ACTIONS(2663), - [sym_none] = ACTIONS(2663), - [sym_true] = ACTIONS(2663), - [sym_false] = ACTIONS(2663), - [sym_nil] = ACTIONS(2663), - [anon_sym_QMARK_DOT] = ACTIONS(2663), - [anon_sym_POUND_LBRACK] = ACTIONS(2663), - [anon_sym_if] = ACTIONS(2663), - [anon_sym_DOLLARif] = ACTIONS(2663), - [anon_sym_is] = ACTIONS(2663), - [anon_sym_BANGis] = ACTIONS(2663), - [anon_sym_in] = ACTIONS(2663), - [anon_sym_BANGin] = ACTIONS(2663), - [anon_sym_match] = ACTIONS(2663), - [anon_sym_select] = ACTIONS(2663), - [anon_sym_lock] = ACTIONS(2663), - [anon_sym_rlock] = ACTIONS(2663), - [anon_sym_unsafe] = ACTIONS(2663), - [anon_sym_sql] = ACTIONS(2663), - [sym_int_literal] = ACTIONS(2663), - [sym_float_literal] = ACTIONS(2663), - [sym_rune_literal] = ACTIONS(2663), - [sym_pseudo_compile_time_identifier] = ACTIONS(2663), - [anon_sym_shared] = ACTIONS(2663), - [anon_sym_map_LBRACK] = ACTIONS(2663), - [anon_sym_chan] = ACTIONS(2663), - [anon_sym_thread] = ACTIONS(2663), - [anon_sym_atomic] = ACTIONS(2663), - [anon_sym_assert] = ACTIONS(2663), - [anon_sym_defer] = ACTIONS(2663), - [anon_sym_goto] = ACTIONS(2663), - [anon_sym_break] = ACTIONS(2663), - [anon_sym_continue] = ACTIONS(2663), - [anon_sym_return] = ACTIONS(2663), - [anon_sym_DOLLARfor] = ACTIONS(2663), - [anon_sym_for] = ACTIONS(2663), - [anon_sym_POUND] = ACTIONS(2663), - [anon_sym_asm] = ACTIONS(2663), - [anon_sym_AT_LBRACK] = ACTIONS(2663), - [sym___double_quote] = ACTIONS(2663), - [sym___single_quote] = ACTIONS(2663), - [sym___c_double_quote] = ACTIONS(2663), - [sym___c_single_quote] = ACTIONS(2663), - [sym___r_double_quote] = ACTIONS(2663), - [sym___r_single_quote] = ACTIONS(2663), + [anon_sym_DOT] = ACTIONS(2768), + [anon_sym_as] = ACTIONS(2768), + [anon_sym_LBRACE] = ACTIONS(2768), + [anon_sym_COMMA] = ACTIONS(2768), + [anon_sym_const] = ACTIONS(2768), + [anon_sym_LPAREN] = ACTIONS(2768), + [anon_sym___global] = ACTIONS(2768), + [anon_sym_type] = ACTIONS(2768), + [anon_sym_PIPE] = ACTIONS(2768), + [anon_sym_fn] = ACTIONS(2768), + [anon_sym_PLUS] = ACTIONS(2768), + [anon_sym_DASH] = ACTIONS(2768), + [anon_sym_STAR] = ACTIONS(2768), + [anon_sym_SLASH] = ACTIONS(2768), + [anon_sym_PERCENT] = ACTIONS(2768), + [anon_sym_LT] = ACTIONS(2768), + [anon_sym_GT] = ACTIONS(2768), + [anon_sym_EQ_EQ] = ACTIONS(2768), + [anon_sym_BANG_EQ] = ACTIONS(2768), + [anon_sym_LT_EQ] = ACTIONS(2768), + [anon_sym_GT_EQ] = ACTIONS(2768), + [anon_sym_LBRACK] = ACTIONS(2766), + [anon_sym_struct] = ACTIONS(2768), + [anon_sym_union] = ACTIONS(2768), + [anon_sym_pub] = ACTIONS(2768), + [anon_sym_mut] = ACTIONS(2768), + [anon_sym_enum] = ACTIONS(2768), + [anon_sym_interface] = ACTIONS(2768), + [anon_sym_PLUS_PLUS] = ACTIONS(2768), + [anon_sym_DASH_DASH] = ACTIONS(2768), + [anon_sym_QMARK] = ACTIONS(2768), + [anon_sym_BANG] = ACTIONS(2768), + [anon_sym_go] = ACTIONS(2768), + [anon_sym_spawn] = ACTIONS(2768), + [anon_sym_json_DOTdecode] = ACTIONS(2768), + [anon_sym_LBRACK2] = ACTIONS(2768), + [anon_sym_TILDE] = ACTIONS(2768), + [anon_sym_CARET] = ACTIONS(2768), + [anon_sym_AMP] = ACTIONS(2768), + [anon_sym_LT_DASH] = ACTIONS(2768), + [anon_sym_LT_LT] = ACTIONS(2768), + [anon_sym_GT_GT] = ACTIONS(2768), + [anon_sym_GT_GT_GT] = ACTIONS(2768), + [anon_sym_AMP_CARET] = ACTIONS(2768), + [anon_sym_AMP_AMP] = ACTIONS(2768), + [anon_sym_PIPE_PIPE] = ACTIONS(2768), + [anon_sym_or] = ACTIONS(2768), + [sym_none] = ACTIONS(2768), + [sym_true] = ACTIONS(2768), + [sym_false] = ACTIONS(2768), + [sym_nil] = ACTIONS(2768), + [anon_sym_QMARK_DOT] = ACTIONS(2768), + [anon_sym_POUND_LBRACK] = ACTIONS(2768), + [anon_sym_if] = ACTIONS(2768), + [anon_sym_DOLLARif] = ACTIONS(2768), + [anon_sym_is] = ACTIONS(2768), + [anon_sym_BANGis] = ACTIONS(2768), + [anon_sym_in] = ACTIONS(2768), + [anon_sym_BANGin] = ACTIONS(2768), + [anon_sym_match] = ACTIONS(2768), + [anon_sym_select] = ACTIONS(2768), + [anon_sym_lock] = ACTIONS(2768), + [anon_sym_rlock] = ACTIONS(2768), + [anon_sym_unsafe] = ACTIONS(2768), + [anon_sym_sql] = ACTIONS(2768), + [sym_int_literal] = ACTIONS(2768), + [sym_float_literal] = ACTIONS(2768), + [sym_rune_literal] = ACTIONS(2768), + [sym_pseudo_compile_time_identifier] = ACTIONS(2768), + [anon_sym_shared] = ACTIONS(2768), + [anon_sym_map_LBRACK] = ACTIONS(2768), + [anon_sym_chan] = ACTIONS(2768), + [anon_sym_thread] = ACTIONS(2768), + [anon_sym_atomic] = ACTIONS(2768), + [anon_sym_assert] = ACTIONS(2768), + [anon_sym_defer] = ACTIONS(2768), + [anon_sym_goto] = ACTIONS(2768), + [anon_sym_break] = ACTIONS(2768), + [anon_sym_continue] = ACTIONS(2768), + [anon_sym_return] = ACTIONS(2768), + [anon_sym_DOLLARfor] = ACTIONS(2768), + [anon_sym_for] = ACTIONS(2768), + [anon_sym_POUND] = ACTIONS(2768), + [anon_sym_asm] = ACTIONS(2768), + [anon_sym_AT_LBRACK] = ACTIONS(2768), + [sym___double_quote] = ACTIONS(2768), + [sym___single_quote] = ACTIONS(2768), + [sym___c_double_quote] = ACTIONS(2768), + [sym___c_single_quote] = ACTIONS(2768), + [sym___r_double_quote] = ACTIONS(2768), + [sym___r_single_quote] = ACTIONS(2768), }, [1072] = { [sym_line_comment] = STATE(1072), [sym_block_comment] = STATE(1072), - [ts_builtin_sym_end] = ACTIONS(2882), - [sym_identifier] = ACTIONS(2884), - [anon_sym_LF] = ACTIONS(2884), - [anon_sym_CR] = ACTIONS(2884), - [anon_sym_CR_LF] = ACTIONS(2884), + [ts_builtin_sym_end] = ACTIONS(2215), + [sym_identifier] = ACTIONS(2217), + [anon_sym_LF] = ACTIONS(2217), + [anon_sym_CR] = ACTIONS(2217), + [anon_sym_CR_LF] = ACTIONS(2217), [anon_sym_SLASH_SLASH] = ACTIONS(497), [anon_sym_SLASH_STAR] = ACTIONS(499), - [anon_sym_DOT] = ACTIONS(2884), - [anon_sym_as] = ACTIONS(2884), - [anon_sym_LBRACE] = ACTIONS(2884), - [anon_sym_COMMA] = ACTIONS(2884), - [anon_sym_const] = ACTIONS(2884), - [anon_sym_LPAREN] = ACTIONS(2884), - [anon_sym___global] = ACTIONS(2884), - [anon_sym_type] = ACTIONS(2884), - [anon_sym_PIPE] = ACTIONS(2884), - [anon_sym_fn] = ACTIONS(2884), - [anon_sym_PLUS] = ACTIONS(2884), - [anon_sym_DASH] = ACTIONS(2884), - [anon_sym_STAR] = ACTIONS(2884), - [anon_sym_SLASH] = ACTIONS(2884), - [anon_sym_PERCENT] = ACTIONS(2884), - [anon_sym_LT] = ACTIONS(2884), - [anon_sym_GT] = ACTIONS(2884), - [anon_sym_EQ_EQ] = ACTIONS(2884), - [anon_sym_BANG_EQ] = ACTIONS(2884), - [anon_sym_LT_EQ] = ACTIONS(2884), - [anon_sym_GT_EQ] = ACTIONS(2884), - [anon_sym_LBRACK] = ACTIONS(2882), - [anon_sym_struct] = ACTIONS(2884), - [anon_sym_union] = ACTIONS(2884), - [anon_sym_pub] = ACTIONS(2884), - [anon_sym_mut] = ACTIONS(2884), - [anon_sym_enum] = ACTIONS(2884), - [anon_sym_interface] = ACTIONS(2884), - [anon_sym_PLUS_PLUS] = ACTIONS(2884), - [anon_sym_DASH_DASH] = ACTIONS(2884), - [anon_sym_QMARK] = ACTIONS(2884), - [anon_sym_BANG] = ACTIONS(2884), - [anon_sym_go] = ACTIONS(2884), - [anon_sym_spawn] = ACTIONS(2884), - [anon_sym_json_DOTdecode] = ACTIONS(2884), - [anon_sym_LBRACK2] = ACTIONS(2884), - [anon_sym_TILDE] = ACTIONS(2884), - [anon_sym_CARET] = ACTIONS(2884), - [anon_sym_AMP] = ACTIONS(2884), - [anon_sym_LT_DASH] = ACTIONS(2884), - [anon_sym_LT_LT] = ACTIONS(2884), - [anon_sym_GT_GT] = ACTIONS(2884), - [anon_sym_GT_GT_GT] = ACTIONS(2884), - [anon_sym_AMP_CARET] = ACTIONS(2884), - [anon_sym_AMP_AMP] = ACTIONS(2884), - [anon_sym_PIPE_PIPE] = ACTIONS(2884), - [anon_sym_or] = ACTIONS(2884), - [sym_none] = ACTIONS(2884), - [sym_true] = ACTIONS(2884), - [sym_false] = ACTIONS(2884), - [sym_nil] = ACTIONS(2884), - [anon_sym_QMARK_DOT] = ACTIONS(2884), - [anon_sym_POUND_LBRACK] = ACTIONS(2884), - [anon_sym_if] = ACTIONS(2884), - [anon_sym_DOLLARif] = ACTIONS(2884), - [anon_sym_is] = ACTIONS(2884), - [anon_sym_BANGis] = ACTIONS(2884), - [anon_sym_in] = ACTIONS(2884), - [anon_sym_BANGin] = ACTIONS(2884), - [anon_sym_match] = ACTIONS(2884), - [anon_sym_select] = ACTIONS(2884), - [anon_sym_lock] = ACTIONS(2884), - [anon_sym_rlock] = ACTIONS(2884), - [anon_sym_unsafe] = ACTIONS(2884), - [anon_sym_sql] = ACTIONS(2884), - [sym_int_literal] = ACTIONS(2884), - [sym_float_literal] = ACTIONS(2884), - [sym_rune_literal] = ACTIONS(2884), - [sym_pseudo_compile_time_identifier] = ACTIONS(2884), - [anon_sym_shared] = ACTIONS(2884), - [anon_sym_map_LBRACK] = ACTIONS(2884), - [anon_sym_chan] = ACTIONS(2884), - [anon_sym_thread] = ACTIONS(2884), - [anon_sym_atomic] = ACTIONS(2884), - [anon_sym_assert] = ACTIONS(2884), - [anon_sym_defer] = ACTIONS(2884), - [anon_sym_goto] = ACTIONS(2884), - [anon_sym_break] = ACTIONS(2884), - [anon_sym_continue] = ACTIONS(2884), - [anon_sym_return] = ACTIONS(2884), - [anon_sym_DOLLARfor] = ACTIONS(2884), - [anon_sym_for] = ACTIONS(2884), - [anon_sym_POUND] = ACTIONS(2884), - [anon_sym_asm] = ACTIONS(2884), - [anon_sym_AT_LBRACK] = ACTIONS(2884), - [sym___double_quote] = ACTIONS(2884), - [sym___single_quote] = ACTIONS(2884), - [sym___c_double_quote] = ACTIONS(2884), - [sym___c_single_quote] = ACTIONS(2884), - [sym___r_double_quote] = ACTIONS(2884), - [sym___r_single_quote] = ACTIONS(2884), + [anon_sym_DOT] = ACTIONS(2219), + [anon_sym_as] = ACTIONS(2219), + [anon_sym_LBRACE] = ACTIONS(2217), + [anon_sym_COMMA] = ACTIONS(2217), + [anon_sym_const] = ACTIONS(2217), + [anon_sym_LPAREN] = ACTIONS(2219), + [anon_sym___global] = ACTIONS(2217), + [anon_sym_type] = ACTIONS(2217), + [anon_sym_PIPE] = ACTIONS(2219), + [anon_sym_fn] = ACTIONS(2217), + [anon_sym_PLUS] = ACTIONS(2219), + [anon_sym_DASH] = ACTIONS(2219), + [anon_sym_STAR] = ACTIONS(2219), + [anon_sym_SLASH] = ACTIONS(2219), + [anon_sym_PERCENT] = ACTIONS(2219), + [anon_sym_LT] = ACTIONS(2219), + [anon_sym_GT] = ACTIONS(2219), + [anon_sym_EQ_EQ] = ACTIONS(2219), + [anon_sym_BANG_EQ] = ACTIONS(2219), + [anon_sym_LT_EQ] = ACTIONS(2219), + [anon_sym_GT_EQ] = ACTIONS(2219), + [anon_sym_LBRACK] = ACTIONS(2222), + [anon_sym_struct] = ACTIONS(2217), + [anon_sym_union] = ACTIONS(2217), + [anon_sym_pub] = ACTIONS(2217), + [anon_sym_mut] = ACTIONS(2217), + [anon_sym_enum] = ACTIONS(2217), + [anon_sym_interface] = ACTIONS(2217), + [anon_sym_PLUS_PLUS] = ACTIONS(2219), + [anon_sym_DASH_DASH] = ACTIONS(2219), + [anon_sym_QMARK] = ACTIONS(2219), + [anon_sym_BANG] = ACTIONS(2219), + [anon_sym_go] = ACTIONS(2217), + [anon_sym_spawn] = ACTIONS(2217), + [anon_sym_json_DOTdecode] = ACTIONS(2217), + [anon_sym_LBRACK2] = ACTIONS(2219), + [anon_sym_TILDE] = ACTIONS(2217), + [anon_sym_CARET] = ACTIONS(2219), + [anon_sym_AMP] = ACTIONS(2219), + [anon_sym_LT_DASH] = ACTIONS(2217), + [anon_sym_LT_LT] = ACTIONS(2219), + [anon_sym_GT_GT] = ACTIONS(2219), + [anon_sym_GT_GT_GT] = ACTIONS(2219), + [anon_sym_AMP_CARET] = ACTIONS(2219), + [anon_sym_AMP_AMP] = ACTIONS(2219), + [anon_sym_PIPE_PIPE] = ACTIONS(2219), + [anon_sym_or] = ACTIONS(2219), + [sym_none] = ACTIONS(2217), + [sym_true] = ACTIONS(2217), + [sym_false] = ACTIONS(2217), + [sym_nil] = ACTIONS(2217), + [anon_sym_QMARK_DOT] = ACTIONS(2219), + [anon_sym_POUND_LBRACK] = ACTIONS(2219), + [anon_sym_if] = ACTIONS(2217), + [anon_sym_DOLLARif] = ACTIONS(2217), + [anon_sym_is] = ACTIONS(2219), + [anon_sym_BANGis] = ACTIONS(2219), + [anon_sym_in] = ACTIONS(2219), + [anon_sym_BANGin] = ACTIONS(2219), + [anon_sym_match] = ACTIONS(2217), + [anon_sym_select] = ACTIONS(2217), + [anon_sym_lock] = ACTIONS(2217), + [anon_sym_rlock] = ACTIONS(2217), + [anon_sym_unsafe] = ACTIONS(2217), + [anon_sym_sql] = ACTIONS(2217), + [sym_int_literal] = ACTIONS(2217), + [sym_float_literal] = ACTIONS(2217), + [sym_rune_literal] = ACTIONS(2217), + [sym_pseudo_compile_time_identifier] = ACTIONS(2217), + [anon_sym_shared] = ACTIONS(2217), + [anon_sym_map_LBRACK] = ACTIONS(2217), + [anon_sym_chan] = ACTIONS(2217), + [anon_sym_thread] = ACTIONS(2217), + [anon_sym_atomic] = ACTIONS(2217), + [anon_sym_assert] = ACTIONS(2217), + [anon_sym_defer] = ACTIONS(2217), + [anon_sym_goto] = ACTIONS(2217), + [anon_sym_break] = ACTIONS(2217), + [anon_sym_continue] = ACTIONS(2217), + [anon_sym_return] = ACTIONS(2217), + [anon_sym_DOLLARfor] = ACTIONS(2217), + [anon_sym_for] = ACTIONS(2217), + [anon_sym_POUND] = ACTIONS(2217), + [anon_sym_asm] = ACTIONS(2217), + [anon_sym_AT_LBRACK] = ACTIONS(2217), + [sym___double_quote] = ACTIONS(2217), + [sym___single_quote] = ACTIONS(2217), + [sym___c_double_quote] = ACTIONS(2217), + [sym___c_single_quote] = ACTIONS(2217), + [sym___r_double_quote] = ACTIONS(2217), + [sym___r_single_quote] = ACTIONS(2217), }, [1073] = { [sym_line_comment] = STATE(1073), [sym_block_comment] = STATE(1073), - [ts_builtin_sym_end] = ACTIONS(2770), - [sym_identifier] = ACTIONS(2772), - [anon_sym_LF] = ACTIONS(2772), - [anon_sym_CR] = ACTIONS(2772), - [anon_sym_CR_LF] = ACTIONS(2772), + [ts_builtin_sym_end] = ACTIONS(2441), + [sym_identifier] = ACTIONS(2443), + [anon_sym_LF] = ACTIONS(2443), + [anon_sym_CR] = ACTIONS(2443), + [anon_sym_CR_LF] = ACTIONS(2443), [anon_sym_SLASH_SLASH] = ACTIONS(497), [anon_sym_SLASH_STAR] = ACTIONS(499), - [anon_sym_DOT] = ACTIONS(2772), - [anon_sym_as] = ACTIONS(2772), - [anon_sym_LBRACE] = ACTIONS(2772), - [anon_sym_COMMA] = ACTIONS(2772), - [anon_sym_const] = ACTIONS(2772), - [anon_sym_LPAREN] = ACTIONS(2772), - [anon_sym___global] = ACTIONS(2772), - [anon_sym_type] = ACTIONS(2772), - [anon_sym_PIPE] = ACTIONS(2772), - [anon_sym_fn] = ACTIONS(2772), - [anon_sym_PLUS] = ACTIONS(2772), - [anon_sym_DASH] = ACTIONS(2772), - [anon_sym_STAR] = ACTIONS(2772), - [anon_sym_SLASH] = ACTIONS(2772), - [anon_sym_PERCENT] = ACTIONS(2772), - [anon_sym_LT] = ACTIONS(2772), - [anon_sym_GT] = ACTIONS(2772), - [anon_sym_EQ_EQ] = ACTIONS(2772), - [anon_sym_BANG_EQ] = ACTIONS(2772), - [anon_sym_LT_EQ] = ACTIONS(2772), - [anon_sym_GT_EQ] = ACTIONS(2772), - [anon_sym_LBRACK] = ACTIONS(2770), - [anon_sym_struct] = ACTIONS(2772), - [anon_sym_union] = ACTIONS(2772), - [anon_sym_pub] = ACTIONS(2772), - [anon_sym_mut] = ACTIONS(2772), - [anon_sym_enum] = ACTIONS(2772), - [anon_sym_interface] = ACTIONS(2772), - [anon_sym_PLUS_PLUS] = ACTIONS(2772), - [anon_sym_DASH_DASH] = ACTIONS(2772), - [anon_sym_QMARK] = ACTIONS(2772), - [anon_sym_BANG] = ACTIONS(2772), - [anon_sym_go] = ACTIONS(2772), - [anon_sym_spawn] = ACTIONS(2772), - [anon_sym_json_DOTdecode] = ACTIONS(2772), - [anon_sym_LBRACK2] = ACTIONS(2772), - [anon_sym_TILDE] = ACTIONS(2772), - [anon_sym_CARET] = ACTIONS(2772), - [anon_sym_AMP] = ACTIONS(2772), - [anon_sym_LT_DASH] = ACTIONS(2772), - [anon_sym_LT_LT] = ACTIONS(2772), - [anon_sym_GT_GT] = ACTIONS(2772), - [anon_sym_GT_GT_GT] = ACTIONS(2772), - [anon_sym_AMP_CARET] = ACTIONS(2772), - [anon_sym_AMP_AMP] = ACTIONS(2772), - [anon_sym_PIPE_PIPE] = ACTIONS(2772), - [anon_sym_or] = ACTIONS(2772), - [sym_none] = ACTIONS(2772), - [sym_true] = ACTIONS(2772), - [sym_false] = ACTIONS(2772), - [sym_nil] = ACTIONS(2772), - [anon_sym_QMARK_DOT] = ACTIONS(2772), - [anon_sym_POUND_LBRACK] = ACTIONS(2772), - [anon_sym_if] = ACTIONS(2772), - [anon_sym_DOLLARif] = ACTIONS(2772), - [anon_sym_is] = ACTIONS(2772), - [anon_sym_BANGis] = ACTIONS(2772), - [anon_sym_in] = ACTIONS(2772), - [anon_sym_BANGin] = ACTIONS(2772), - [anon_sym_match] = ACTIONS(2772), - [anon_sym_select] = ACTIONS(2772), - [anon_sym_lock] = ACTIONS(2772), - [anon_sym_rlock] = ACTIONS(2772), - [anon_sym_unsafe] = ACTIONS(2772), - [anon_sym_sql] = ACTIONS(2772), - [sym_int_literal] = ACTIONS(2772), - [sym_float_literal] = ACTIONS(2772), - [sym_rune_literal] = ACTIONS(2772), - [sym_pseudo_compile_time_identifier] = ACTIONS(2772), - [anon_sym_shared] = ACTIONS(2772), - [anon_sym_map_LBRACK] = ACTIONS(2772), - [anon_sym_chan] = ACTIONS(2772), - [anon_sym_thread] = ACTIONS(2772), - [anon_sym_atomic] = ACTIONS(2772), - [anon_sym_assert] = ACTIONS(2772), - [anon_sym_defer] = ACTIONS(2772), - [anon_sym_goto] = ACTIONS(2772), - [anon_sym_break] = ACTIONS(2772), - [anon_sym_continue] = ACTIONS(2772), - [anon_sym_return] = ACTIONS(2772), - [anon_sym_DOLLARfor] = ACTIONS(2772), - [anon_sym_for] = ACTIONS(2772), - [anon_sym_POUND] = ACTIONS(2772), - [anon_sym_asm] = ACTIONS(2772), - [anon_sym_AT_LBRACK] = ACTIONS(2772), - [sym___double_quote] = ACTIONS(2772), - [sym___single_quote] = ACTIONS(2772), - [sym___c_double_quote] = ACTIONS(2772), - [sym___c_single_quote] = ACTIONS(2772), - [sym___r_double_quote] = ACTIONS(2772), - [sym___r_single_quote] = ACTIONS(2772), + [anon_sym_DOT] = ACTIONS(2443), + [anon_sym_as] = ACTIONS(2443), + [anon_sym_LBRACE] = ACTIONS(2443), + [anon_sym_COMMA] = ACTIONS(2443), + [anon_sym_const] = ACTIONS(2443), + [anon_sym_LPAREN] = ACTIONS(2443), + [anon_sym___global] = ACTIONS(2443), + [anon_sym_type] = ACTIONS(2443), + [anon_sym_PIPE] = ACTIONS(2443), + [anon_sym_fn] = ACTIONS(2443), + [anon_sym_PLUS] = ACTIONS(2443), + [anon_sym_DASH] = ACTIONS(2443), + [anon_sym_STAR] = ACTIONS(2443), + [anon_sym_SLASH] = ACTIONS(2443), + [anon_sym_PERCENT] = ACTIONS(2443), + [anon_sym_LT] = ACTIONS(2443), + [anon_sym_GT] = ACTIONS(2443), + [anon_sym_EQ_EQ] = ACTIONS(2443), + [anon_sym_BANG_EQ] = ACTIONS(2443), + [anon_sym_LT_EQ] = ACTIONS(2443), + [anon_sym_GT_EQ] = ACTIONS(2443), + [anon_sym_LBRACK] = ACTIONS(2441), + [anon_sym_struct] = ACTIONS(2443), + [anon_sym_union] = ACTIONS(2443), + [anon_sym_pub] = ACTIONS(2443), + [anon_sym_mut] = ACTIONS(2443), + [anon_sym_enum] = ACTIONS(2443), + [anon_sym_interface] = ACTIONS(2443), + [anon_sym_PLUS_PLUS] = ACTIONS(2443), + [anon_sym_DASH_DASH] = ACTIONS(2443), + [anon_sym_QMARK] = ACTIONS(2443), + [anon_sym_BANG] = ACTIONS(2443), + [anon_sym_go] = ACTIONS(2443), + [anon_sym_spawn] = ACTIONS(2443), + [anon_sym_json_DOTdecode] = ACTIONS(2443), + [anon_sym_LBRACK2] = ACTIONS(2443), + [anon_sym_TILDE] = ACTIONS(2443), + [anon_sym_CARET] = ACTIONS(2443), + [anon_sym_AMP] = ACTIONS(2443), + [anon_sym_LT_DASH] = ACTIONS(2443), + [anon_sym_LT_LT] = ACTIONS(2443), + [anon_sym_GT_GT] = ACTIONS(2443), + [anon_sym_GT_GT_GT] = ACTIONS(2443), + [anon_sym_AMP_CARET] = ACTIONS(2443), + [anon_sym_AMP_AMP] = ACTIONS(2443), + [anon_sym_PIPE_PIPE] = ACTIONS(2443), + [anon_sym_or] = ACTIONS(2443), + [sym_none] = ACTIONS(2443), + [sym_true] = ACTIONS(2443), + [sym_false] = ACTIONS(2443), + [sym_nil] = ACTIONS(2443), + [anon_sym_QMARK_DOT] = ACTIONS(2443), + [anon_sym_POUND_LBRACK] = ACTIONS(2443), + [anon_sym_if] = ACTIONS(2443), + [anon_sym_DOLLARif] = ACTIONS(2443), + [anon_sym_is] = ACTIONS(2443), + [anon_sym_BANGis] = ACTIONS(2443), + [anon_sym_in] = ACTIONS(2443), + [anon_sym_BANGin] = ACTIONS(2443), + [anon_sym_match] = ACTIONS(2443), + [anon_sym_select] = ACTIONS(2443), + [anon_sym_lock] = ACTIONS(2443), + [anon_sym_rlock] = ACTIONS(2443), + [anon_sym_unsafe] = ACTIONS(2443), + [anon_sym_sql] = ACTIONS(2443), + [sym_int_literal] = ACTIONS(2443), + [sym_float_literal] = ACTIONS(2443), + [sym_rune_literal] = ACTIONS(2443), + [sym_pseudo_compile_time_identifier] = ACTIONS(2443), + [anon_sym_shared] = ACTIONS(2443), + [anon_sym_map_LBRACK] = ACTIONS(2443), + [anon_sym_chan] = ACTIONS(2443), + [anon_sym_thread] = ACTIONS(2443), + [anon_sym_atomic] = ACTIONS(2443), + [anon_sym_assert] = ACTIONS(2443), + [anon_sym_defer] = ACTIONS(2443), + [anon_sym_goto] = ACTIONS(2443), + [anon_sym_break] = ACTIONS(2443), + [anon_sym_continue] = ACTIONS(2443), + [anon_sym_return] = ACTIONS(2443), + [anon_sym_DOLLARfor] = ACTIONS(2443), + [anon_sym_for] = ACTIONS(2443), + [anon_sym_POUND] = ACTIONS(2443), + [anon_sym_asm] = ACTIONS(2443), + [anon_sym_AT_LBRACK] = ACTIONS(2443), + [sym___double_quote] = ACTIONS(2443), + [sym___single_quote] = ACTIONS(2443), + [sym___c_double_quote] = ACTIONS(2443), + [sym___c_single_quote] = ACTIONS(2443), + [sym___r_double_quote] = ACTIONS(2443), + [sym___r_single_quote] = ACTIONS(2443), }, [1074] = { [sym_line_comment] = STATE(1074), [sym_block_comment] = STATE(1074), - [ts_builtin_sym_end] = ACTIONS(2747), - [sym_identifier] = ACTIONS(2749), - [anon_sym_LF] = ACTIONS(2749), - [anon_sym_CR] = ACTIONS(2749), - [anon_sym_CR_LF] = ACTIONS(2749), + [ts_builtin_sym_end] = ACTIONS(2447), + [sym_identifier] = ACTIONS(2449), + [anon_sym_LF] = ACTIONS(2449), + [anon_sym_CR] = ACTIONS(2449), + [anon_sym_CR_LF] = ACTIONS(2449), [anon_sym_SLASH_SLASH] = ACTIONS(497), [anon_sym_SLASH_STAR] = ACTIONS(499), - [anon_sym_DOT] = ACTIONS(2749), - [anon_sym_as] = ACTIONS(2749), - [anon_sym_LBRACE] = ACTIONS(2749), - [anon_sym_COMMA] = ACTIONS(2749), - [anon_sym_const] = ACTIONS(2749), - [anon_sym_LPAREN] = ACTIONS(2749), - [anon_sym___global] = ACTIONS(2749), - [anon_sym_type] = ACTIONS(2749), - [anon_sym_PIPE] = ACTIONS(2749), - [anon_sym_fn] = ACTIONS(2749), - [anon_sym_PLUS] = ACTIONS(2749), - [anon_sym_DASH] = ACTIONS(2749), - [anon_sym_STAR] = ACTIONS(2749), - [anon_sym_SLASH] = ACTIONS(2749), - [anon_sym_PERCENT] = ACTIONS(2749), - [anon_sym_LT] = ACTIONS(2749), - [anon_sym_GT] = ACTIONS(2749), - [anon_sym_EQ_EQ] = ACTIONS(2749), - [anon_sym_BANG_EQ] = ACTIONS(2749), - [anon_sym_LT_EQ] = ACTIONS(2749), - [anon_sym_GT_EQ] = ACTIONS(2749), - [anon_sym_LBRACK] = ACTIONS(2747), - [anon_sym_struct] = ACTIONS(2749), - [anon_sym_union] = ACTIONS(2749), - [anon_sym_pub] = ACTIONS(2749), - [anon_sym_mut] = ACTIONS(2749), - [anon_sym_enum] = ACTIONS(2749), - [anon_sym_interface] = ACTIONS(2749), - [anon_sym_PLUS_PLUS] = ACTIONS(2749), - [anon_sym_DASH_DASH] = ACTIONS(2749), - [anon_sym_QMARK] = ACTIONS(2749), - [anon_sym_BANG] = ACTIONS(2749), - [anon_sym_go] = ACTIONS(2749), - [anon_sym_spawn] = ACTIONS(2749), - [anon_sym_json_DOTdecode] = ACTIONS(2749), - [anon_sym_LBRACK2] = ACTIONS(2749), - [anon_sym_TILDE] = ACTIONS(2749), - [anon_sym_CARET] = ACTIONS(2749), - [anon_sym_AMP] = ACTIONS(2749), - [anon_sym_LT_DASH] = ACTIONS(2749), - [anon_sym_LT_LT] = ACTIONS(2749), - [anon_sym_GT_GT] = ACTIONS(2749), - [anon_sym_GT_GT_GT] = ACTIONS(2749), - [anon_sym_AMP_CARET] = ACTIONS(2749), - [anon_sym_AMP_AMP] = ACTIONS(2749), - [anon_sym_PIPE_PIPE] = ACTIONS(2749), - [anon_sym_or] = ACTIONS(2749), - [sym_none] = ACTIONS(2749), - [sym_true] = ACTIONS(2749), - [sym_false] = ACTIONS(2749), - [sym_nil] = ACTIONS(2749), - [anon_sym_QMARK_DOT] = ACTIONS(2749), - [anon_sym_POUND_LBRACK] = ACTIONS(2749), - [anon_sym_if] = ACTIONS(2749), - [anon_sym_DOLLARif] = ACTIONS(2749), - [anon_sym_is] = ACTIONS(2749), - [anon_sym_BANGis] = ACTIONS(2749), - [anon_sym_in] = ACTIONS(2749), - [anon_sym_BANGin] = ACTIONS(2749), - [anon_sym_match] = ACTIONS(2749), - [anon_sym_select] = ACTIONS(2749), - [anon_sym_lock] = ACTIONS(2749), - [anon_sym_rlock] = ACTIONS(2749), - [anon_sym_unsafe] = ACTIONS(2749), - [anon_sym_sql] = ACTIONS(2749), - [sym_int_literal] = ACTIONS(2749), - [sym_float_literal] = ACTIONS(2749), - [sym_rune_literal] = ACTIONS(2749), - [sym_pseudo_compile_time_identifier] = ACTIONS(2749), - [anon_sym_shared] = ACTIONS(2749), - [anon_sym_map_LBRACK] = ACTIONS(2749), - [anon_sym_chan] = ACTIONS(2749), - [anon_sym_thread] = ACTIONS(2749), - [anon_sym_atomic] = ACTIONS(2749), - [anon_sym_assert] = ACTIONS(2749), - [anon_sym_defer] = ACTIONS(2749), - [anon_sym_goto] = ACTIONS(2749), - [anon_sym_break] = ACTIONS(2749), - [anon_sym_continue] = ACTIONS(2749), - [anon_sym_return] = ACTIONS(2749), - [anon_sym_DOLLARfor] = ACTIONS(2749), - [anon_sym_for] = ACTIONS(2749), - [anon_sym_POUND] = ACTIONS(2749), - [anon_sym_asm] = ACTIONS(2749), - [anon_sym_AT_LBRACK] = ACTIONS(2749), - [sym___double_quote] = ACTIONS(2749), - [sym___single_quote] = ACTIONS(2749), - [sym___c_double_quote] = ACTIONS(2749), - [sym___c_single_quote] = ACTIONS(2749), - [sym___r_double_quote] = ACTIONS(2749), - [sym___r_single_quote] = ACTIONS(2749), + [anon_sym_DOT] = ACTIONS(2449), + [anon_sym_as] = ACTIONS(2449), + [anon_sym_LBRACE] = ACTIONS(2449), + [anon_sym_COMMA] = ACTIONS(2449), + [anon_sym_const] = ACTIONS(2449), + [anon_sym_LPAREN] = ACTIONS(2449), + [anon_sym___global] = ACTIONS(2449), + [anon_sym_type] = ACTIONS(2449), + [anon_sym_PIPE] = ACTIONS(2449), + [anon_sym_fn] = ACTIONS(2449), + [anon_sym_PLUS] = ACTIONS(2449), + [anon_sym_DASH] = ACTIONS(2449), + [anon_sym_STAR] = ACTIONS(2449), + [anon_sym_SLASH] = ACTIONS(2449), + [anon_sym_PERCENT] = ACTIONS(2449), + [anon_sym_LT] = ACTIONS(2449), + [anon_sym_GT] = ACTIONS(2449), + [anon_sym_EQ_EQ] = ACTIONS(2449), + [anon_sym_BANG_EQ] = ACTIONS(2449), + [anon_sym_LT_EQ] = ACTIONS(2449), + [anon_sym_GT_EQ] = ACTIONS(2449), + [anon_sym_LBRACK] = ACTIONS(2447), + [anon_sym_struct] = ACTIONS(2449), + [anon_sym_union] = ACTIONS(2449), + [anon_sym_pub] = ACTIONS(2449), + [anon_sym_mut] = ACTIONS(2449), + [anon_sym_enum] = ACTIONS(2449), + [anon_sym_interface] = ACTIONS(2449), + [anon_sym_PLUS_PLUS] = ACTIONS(2449), + [anon_sym_DASH_DASH] = ACTIONS(2449), + [anon_sym_QMARK] = ACTIONS(2449), + [anon_sym_BANG] = ACTIONS(2449), + [anon_sym_go] = ACTIONS(2449), + [anon_sym_spawn] = ACTIONS(2449), + [anon_sym_json_DOTdecode] = ACTIONS(2449), + [anon_sym_LBRACK2] = ACTIONS(2449), + [anon_sym_TILDE] = ACTIONS(2449), + [anon_sym_CARET] = ACTIONS(2449), + [anon_sym_AMP] = ACTIONS(2449), + [anon_sym_LT_DASH] = ACTIONS(2449), + [anon_sym_LT_LT] = ACTIONS(2449), + [anon_sym_GT_GT] = ACTIONS(2449), + [anon_sym_GT_GT_GT] = ACTIONS(2449), + [anon_sym_AMP_CARET] = ACTIONS(2449), + [anon_sym_AMP_AMP] = ACTIONS(2449), + [anon_sym_PIPE_PIPE] = ACTIONS(2449), + [anon_sym_or] = ACTIONS(2449), + [sym_none] = ACTIONS(2449), + [sym_true] = ACTIONS(2449), + [sym_false] = ACTIONS(2449), + [sym_nil] = ACTIONS(2449), + [anon_sym_QMARK_DOT] = ACTIONS(2449), + [anon_sym_POUND_LBRACK] = ACTIONS(2449), + [anon_sym_if] = ACTIONS(2449), + [anon_sym_DOLLARif] = ACTIONS(2449), + [anon_sym_is] = ACTIONS(2449), + [anon_sym_BANGis] = ACTIONS(2449), + [anon_sym_in] = ACTIONS(2449), + [anon_sym_BANGin] = ACTIONS(2449), + [anon_sym_match] = ACTIONS(2449), + [anon_sym_select] = ACTIONS(2449), + [anon_sym_lock] = ACTIONS(2449), + [anon_sym_rlock] = ACTIONS(2449), + [anon_sym_unsafe] = ACTIONS(2449), + [anon_sym_sql] = ACTIONS(2449), + [sym_int_literal] = ACTIONS(2449), + [sym_float_literal] = ACTIONS(2449), + [sym_rune_literal] = ACTIONS(2449), + [sym_pseudo_compile_time_identifier] = ACTIONS(2449), + [anon_sym_shared] = ACTIONS(2449), + [anon_sym_map_LBRACK] = ACTIONS(2449), + [anon_sym_chan] = ACTIONS(2449), + [anon_sym_thread] = ACTIONS(2449), + [anon_sym_atomic] = ACTIONS(2449), + [anon_sym_assert] = ACTIONS(2449), + [anon_sym_defer] = ACTIONS(2449), + [anon_sym_goto] = ACTIONS(2449), + [anon_sym_break] = ACTIONS(2449), + [anon_sym_continue] = ACTIONS(2449), + [anon_sym_return] = ACTIONS(2449), + [anon_sym_DOLLARfor] = ACTIONS(2449), + [anon_sym_for] = ACTIONS(2449), + [anon_sym_POUND] = ACTIONS(2449), + [anon_sym_asm] = ACTIONS(2449), + [anon_sym_AT_LBRACK] = ACTIONS(2449), + [sym___double_quote] = ACTIONS(2449), + [sym___single_quote] = ACTIONS(2449), + [sym___c_double_quote] = ACTIONS(2449), + [sym___c_single_quote] = ACTIONS(2449), + [sym___r_double_quote] = ACTIONS(2449), + [sym___r_single_quote] = ACTIONS(2449), }, [1075] = { [sym_line_comment] = STATE(1075), [sym_block_comment] = STATE(1075), - [ts_builtin_sym_end] = ACTIONS(2307), - [sym_identifier] = ACTIONS(2309), - [anon_sym_LF] = ACTIONS(2309), - [anon_sym_CR] = ACTIONS(2309), - [anon_sym_CR_LF] = ACTIONS(2309), + [ts_builtin_sym_end] = ACTIONS(2453), + [sym_identifier] = ACTIONS(2455), + [anon_sym_LF] = ACTIONS(2455), + [anon_sym_CR] = ACTIONS(2455), + [anon_sym_CR_LF] = ACTIONS(2455), [anon_sym_SLASH_SLASH] = ACTIONS(497), [anon_sym_SLASH_STAR] = ACTIONS(499), - [anon_sym_DOT] = ACTIONS(2309), - [anon_sym_as] = ACTIONS(2309), - [anon_sym_LBRACE] = ACTIONS(2309), - [anon_sym_COMMA] = ACTIONS(2309), - [anon_sym_const] = ACTIONS(2309), - [anon_sym_LPAREN] = ACTIONS(2309), - [anon_sym___global] = ACTIONS(2309), - [anon_sym_type] = ACTIONS(2309), - [anon_sym_PIPE] = ACTIONS(2309), - [anon_sym_fn] = ACTIONS(2309), - [anon_sym_PLUS] = ACTIONS(2309), - [anon_sym_DASH] = ACTIONS(2309), - [anon_sym_STAR] = ACTIONS(2309), - [anon_sym_SLASH] = ACTIONS(2309), - [anon_sym_PERCENT] = ACTIONS(2309), - [anon_sym_LT] = ACTIONS(2309), - [anon_sym_GT] = ACTIONS(2309), - [anon_sym_EQ_EQ] = ACTIONS(2309), - [anon_sym_BANG_EQ] = ACTIONS(2309), - [anon_sym_LT_EQ] = ACTIONS(2309), - [anon_sym_GT_EQ] = ACTIONS(2309), - [anon_sym_LBRACK] = ACTIONS(2307), - [anon_sym_struct] = ACTIONS(2309), - [anon_sym_union] = ACTIONS(2309), - [anon_sym_pub] = ACTIONS(2309), - [anon_sym_mut] = ACTIONS(2309), - [anon_sym_enum] = ACTIONS(2309), - [anon_sym_interface] = ACTIONS(2309), - [anon_sym_PLUS_PLUS] = ACTIONS(2309), - [anon_sym_DASH_DASH] = ACTIONS(2309), - [anon_sym_QMARK] = ACTIONS(2309), - [anon_sym_BANG] = ACTIONS(2309), - [anon_sym_go] = ACTIONS(2309), - [anon_sym_spawn] = ACTIONS(2309), - [anon_sym_json_DOTdecode] = ACTIONS(2309), - [anon_sym_LBRACK2] = ACTIONS(2309), - [anon_sym_TILDE] = ACTIONS(2309), - [anon_sym_CARET] = ACTIONS(2309), - [anon_sym_AMP] = ACTIONS(2309), - [anon_sym_LT_DASH] = ACTIONS(2309), - [anon_sym_LT_LT] = ACTIONS(2309), - [anon_sym_GT_GT] = ACTIONS(2309), - [anon_sym_GT_GT_GT] = ACTIONS(2309), - [anon_sym_AMP_CARET] = ACTIONS(2309), - [anon_sym_AMP_AMP] = ACTIONS(2309), - [anon_sym_PIPE_PIPE] = ACTIONS(2309), - [anon_sym_or] = ACTIONS(2309), - [sym_none] = ACTIONS(2309), - [sym_true] = ACTIONS(2309), - [sym_false] = ACTIONS(2309), - [sym_nil] = ACTIONS(2309), - [anon_sym_QMARK_DOT] = ACTIONS(2309), - [anon_sym_POUND_LBRACK] = ACTIONS(2309), - [anon_sym_if] = ACTIONS(2309), - [anon_sym_DOLLARif] = ACTIONS(2309), - [anon_sym_is] = ACTIONS(2309), - [anon_sym_BANGis] = ACTIONS(2309), - [anon_sym_in] = ACTIONS(2309), - [anon_sym_BANGin] = ACTIONS(2309), - [anon_sym_match] = ACTIONS(2309), - [anon_sym_select] = ACTIONS(2309), - [anon_sym_lock] = ACTIONS(2309), - [anon_sym_rlock] = ACTIONS(2309), - [anon_sym_unsafe] = ACTIONS(2309), - [anon_sym_sql] = ACTIONS(2309), - [sym_int_literal] = ACTIONS(2309), - [sym_float_literal] = ACTIONS(2309), - [sym_rune_literal] = ACTIONS(2309), - [sym_pseudo_compile_time_identifier] = ACTIONS(2309), - [anon_sym_shared] = ACTIONS(2309), - [anon_sym_map_LBRACK] = ACTIONS(2309), - [anon_sym_chan] = ACTIONS(2309), - [anon_sym_thread] = ACTIONS(2309), - [anon_sym_atomic] = ACTIONS(2309), - [anon_sym_assert] = ACTIONS(2309), - [anon_sym_defer] = ACTIONS(2309), - [anon_sym_goto] = ACTIONS(2309), - [anon_sym_break] = ACTIONS(2309), - [anon_sym_continue] = ACTIONS(2309), - [anon_sym_return] = ACTIONS(2309), - [anon_sym_DOLLARfor] = ACTIONS(2309), - [anon_sym_for] = ACTIONS(2309), - [anon_sym_POUND] = ACTIONS(2309), - [anon_sym_asm] = ACTIONS(2309), - [anon_sym_AT_LBRACK] = ACTIONS(2309), - [sym___double_quote] = ACTIONS(2309), - [sym___single_quote] = ACTIONS(2309), - [sym___c_double_quote] = ACTIONS(2309), - [sym___c_single_quote] = ACTIONS(2309), - [sym___r_double_quote] = ACTIONS(2309), - [sym___r_single_quote] = ACTIONS(2309), + [anon_sym_DOT] = ACTIONS(2455), + [anon_sym_as] = ACTIONS(2455), + [anon_sym_LBRACE] = ACTIONS(2455), + [anon_sym_COMMA] = ACTIONS(2455), + [anon_sym_const] = ACTIONS(2455), + [anon_sym_LPAREN] = ACTIONS(2455), + [anon_sym___global] = ACTIONS(2455), + [anon_sym_type] = ACTIONS(2455), + [anon_sym_PIPE] = ACTIONS(2455), + [anon_sym_fn] = ACTIONS(2455), + [anon_sym_PLUS] = ACTIONS(2455), + [anon_sym_DASH] = ACTIONS(2455), + [anon_sym_STAR] = ACTIONS(2455), + [anon_sym_SLASH] = ACTIONS(2455), + [anon_sym_PERCENT] = ACTIONS(2455), + [anon_sym_LT] = ACTIONS(2455), + [anon_sym_GT] = ACTIONS(2455), + [anon_sym_EQ_EQ] = ACTIONS(2455), + [anon_sym_BANG_EQ] = ACTIONS(2455), + [anon_sym_LT_EQ] = ACTIONS(2455), + [anon_sym_GT_EQ] = ACTIONS(2455), + [anon_sym_LBRACK] = ACTIONS(2453), + [anon_sym_struct] = ACTIONS(2455), + [anon_sym_union] = ACTIONS(2455), + [anon_sym_pub] = ACTIONS(2455), + [anon_sym_mut] = ACTIONS(2455), + [anon_sym_enum] = ACTIONS(2455), + [anon_sym_interface] = ACTIONS(2455), + [anon_sym_PLUS_PLUS] = ACTIONS(2455), + [anon_sym_DASH_DASH] = ACTIONS(2455), + [anon_sym_QMARK] = ACTIONS(2455), + [anon_sym_BANG] = ACTIONS(2455), + [anon_sym_go] = ACTIONS(2455), + [anon_sym_spawn] = ACTIONS(2455), + [anon_sym_json_DOTdecode] = ACTIONS(2455), + [anon_sym_LBRACK2] = ACTIONS(2455), + [anon_sym_TILDE] = ACTIONS(2455), + [anon_sym_CARET] = ACTIONS(2455), + [anon_sym_AMP] = ACTIONS(2455), + [anon_sym_LT_DASH] = ACTIONS(2455), + [anon_sym_LT_LT] = ACTIONS(2455), + [anon_sym_GT_GT] = ACTIONS(2455), + [anon_sym_GT_GT_GT] = ACTIONS(2455), + [anon_sym_AMP_CARET] = ACTIONS(2455), + [anon_sym_AMP_AMP] = ACTIONS(2455), + [anon_sym_PIPE_PIPE] = ACTIONS(2455), + [anon_sym_or] = ACTIONS(2455), + [sym_none] = ACTIONS(2455), + [sym_true] = ACTIONS(2455), + [sym_false] = ACTIONS(2455), + [sym_nil] = ACTIONS(2455), + [anon_sym_QMARK_DOT] = ACTIONS(2455), + [anon_sym_POUND_LBRACK] = ACTIONS(2455), + [anon_sym_if] = ACTIONS(2455), + [anon_sym_DOLLARif] = ACTIONS(2455), + [anon_sym_is] = ACTIONS(2455), + [anon_sym_BANGis] = ACTIONS(2455), + [anon_sym_in] = ACTIONS(2455), + [anon_sym_BANGin] = ACTIONS(2455), + [anon_sym_match] = ACTIONS(2455), + [anon_sym_select] = ACTIONS(2455), + [anon_sym_lock] = ACTIONS(2455), + [anon_sym_rlock] = ACTIONS(2455), + [anon_sym_unsafe] = ACTIONS(2455), + [anon_sym_sql] = ACTIONS(2455), + [sym_int_literal] = ACTIONS(2455), + [sym_float_literal] = ACTIONS(2455), + [sym_rune_literal] = ACTIONS(2455), + [sym_pseudo_compile_time_identifier] = ACTIONS(2455), + [anon_sym_shared] = ACTIONS(2455), + [anon_sym_map_LBRACK] = ACTIONS(2455), + [anon_sym_chan] = ACTIONS(2455), + [anon_sym_thread] = ACTIONS(2455), + [anon_sym_atomic] = ACTIONS(2455), + [anon_sym_assert] = ACTIONS(2455), + [anon_sym_defer] = ACTIONS(2455), + [anon_sym_goto] = ACTIONS(2455), + [anon_sym_break] = ACTIONS(2455), + [anon_sym_continue] = ACTIONS(2455), + [anon_sym_return] = ACTIONS(2455), + [anon_sym_DOLLARfor] = ACTIONS(2455), + [anon_sym_for] = ACTIONS(2455), + [anon_sym_POUND] = ACTIONS(2455), + [anon_sym_asm] = ACTIONS(2455), + [anon_sym_AT_LBRACK] = ACTIONS(2455), + [sym___double_quote] = ACTIONS(2455), + [sym___single_quote] = ACTIONS(2455), + [sym___c_double_quote] = ACTIONS(2455), + [sym___c_single_quote] = ACTIONS(2455), + [sym___r_double_quote] = ACTIONS(2455), + [sym___r_single_quote] = ACTIONS(2455), }, [1076] = { [sym_line_comment] = STATE(1076), [sym_block_comment] = STATE(1076), - [ts_builtin_sym_end] = ACTIONS(1915), - [sym_identifier] = ACTIONS(1917), - [anon_sym_LF] = ACTIONS(1917), - [anon_sym_CR] = ACTIONS(1917), - [anon_sym_CR_LF] = ACTIONS(1917), + [ts_builtin_sym_end] = ACTIONS(2457), + [sym_identifier] = ACTIONS(2459), + [anon_sym_LF] = ACTIONS(2459), + [anon_sym_CR] = ACTIONS(2459), + [anon_sym_CR_LF] = ACTIONS(2459), [anon_sym_SLASH_SLASH] = ACTIONS(497), [anon_sym_SLASH_STAR] = ACTIONS(499), - [anon_sym_DOT] = ACTIONS(1917), - [anon_sym_as] = ACTIONS(1917), - [anon_sym_LBRACE] = ACTIONS(1917), - [anon_sym_COMMA] = ACTIONS(1951), - [anon_sym_const] = ACTIONS(1917), - [anon_sym_LPAREN] = ACTIONS(1917), - [anon_sym___global] = ACTIONS(1917), - [anon_sym_type] = ACTIONS(1917), - [anon_sym_PIPE] = ACTIONS(1917), - [anon_sym_fn] = ACTIONS(1917), - [anon_sym_PLUS] = ACTIONS(1917), - [anon_sym_DASH] = ACTIONS(1917), - [anon_sym_STAR] = ACTIONS(1917), - [anon_sym_SLASH] = ACTIONS(1917), - [anon_sym_PERCENT] = ACTIONS(1917), - [anon_sym_LT] = ACTIONS(1917), - [anon_sym_GT] = ACTIONS(1917), - [anon_sym_EQ_EQ] = ACTIONS(1917), - [anon_sym_BANG_EQ] = ACTIONS(1917), - [anon_sym_LT_EQ] = ACTIONS(1917), - [anon_sym_GT_EQ] = ACTIONS(1917), - [anon_sym_LBRACK] = ACTIONS(1915), - [anon_sym_struct] = ACTIONS(1917), - [anon_sym_union] = ACTIONS(1917), - [anon_sym_pub] = ACTIONS(1917), - [anon_sym_mut] = ACTIONS(1917), - [anon_sym_enum] = ACTIONS(1917), - [anon_sym_interface] = ACTIONS(1917), - [anon_sym_PLUS_PLUS] = ACTIONS(1917), - [anon_sym_DASH_DASH] = ACTIONS(1917), - [anon_sym_QMARK] = ACTIONS(1917), - [anon_sym_BANG] = ACTIONS(1917), - [anon_sym_go] = ACTIONS(1917), - [anon_sym_spawn] = ACTIONS(1917), - [anon_sym_json_DOTdecode] = ACTIONS(1917), - [anon_sym_LBRACK2] = ACTIONS(1917), - [anon_sym_TILDE] = ACTIONS(1917), - [anon_sym_CARET] = ACTIONS(1917), - [anon_sym_AMP] = ACTIONS(1917), - [anon_sym_LT_DASH] = ACTIONS(1917), - [anon_sym_LT_LT] = ACTIONS(1917), - [anon_sym_GT_GT] = ACTIONS(1917), - [anon_sym_GT_GT_GT] = ACTIONS(1917), - [anon_sym_AMP_CARET] = ACTIONS(1917), - [anon_sym_AMP_AMP] = ACTIONS(1917), - [anon_sym_PIPE_PIPE] = ACTIONS(1917), - [anon_sym_or] = ACTIONS(1917), - [sym_none] = ACTIONS(1917), - [sym_true] = ACTIONS(1917), - [sym_false] = ACTIONS(1917), - [sym_nil] = ACTIONS(1917), - [anon_sym_QMARK_DOT] = ACTIONS(1917), - [anon_sym_POUND_LBRACK] = ACTIONS(1917), - [anon_sym_if] = ACTIONS(1917), - [anon_sym_DOLLARif] = ACTIONS(1917), - [anon_sym_is] = ACTIONS(1917), - [anon_sym_BANGis] = ACTIONS(1917), - [anon_sym_in] = ACTIONS(1917), - [anon_sym_BANGin] = ACTIONS(1917), - [anon_sym_match] = ACTIONS(1917), - [anon_sym_select] = ACTIONS(1917), - [anon_sym_lock] = ACTIONS(1917), - [anon_sym_rlock] = ACTIONS(1917), - [anon_sym_unsafe] = ACTIONS(1917), - [anon_sym_sql] = ACTIONS(1917), - [sym_int_literal] = ACTIONS(1917), - [sym_float_literal] = ACTIONS(1917), - [sym_rune_literal] = ACTIONS(1917), - [sym_pseudo_compile_time_identifier] = ACTIONS(1917), - [anon_sym_shared] = ACTIONS(1917), - [anon_sym_map_LBRACK] = ACTIONS(1917), - [anon_sym_chan] = ACTIONS(1917), - [anon_sym_thread] = ACTIONS(1917), - [anon_sym_atomic] = ACTIONS(1917), - [anon_sym_assert] = ACTIONS(1917), - [anon_sym_defer] = ACTIONS(1917), - [anon_sym_goto] = ACTIONS(1917), - [anon_sym_break] = ACTIONS(1917), - [anon_sym_continue] = ACTIONS(1917), - [anon_sym_return] = ACTIONS(1917), - [anon_sym_DOLLARfor] = ACTIONS(1917), - [anon_sym_for] = ACTIONS(1917), - [anon_sym_POUND] = ACTIONS(1917), - [anon_sym_asm] = ACTIONS(1917), - [anon_sym_AT_LBRACK] = ACTIONS(1917), - [sym___double_quote] = ACTIONS(1917), - [sym___single_quote] = ACTIONS(1917), - [sym___c_double_quote] = ACTIONS(1917), - [sym___c_single_quote] = ACTIONS(1917), - [sym___r_double_quote] = ACTIONS(1917), - [sym___r_single_quote] = ACTIONS(1917), + [anon_sym_DOT] = ACTIONS(2459), + [anon_sym_as] = ACTIONS(2459), + [anon_sym_LBRACE] = ACTIONS(2459), + [anon_sym_COMMA] = ACTIONS(2459), + [anon_sym_const] = ACTIONS(2459), + [anon_sym_LPAREN] = ACTIONS(2459), + [anon_sym___global] = ACTIONS(2459), + [anon_sym_type] = ACTIONS(2459), + [anon_sym_PIPE] = ACTIONS(2459), + [anon_sym_fn] = ACTIONS(2459), + [anon_sym_PLUS] = ACTIONS(2459), + [anon_sym_DASH] = ACTIONS(2459), + [anon_sym_STAR] = ACTIONS(2459), + [anon_sym_SLASH] = ACTIONS(2459), + [anon_sym_PERCENT] = ACTIONS(2459), + [anon_sym_LT] = ACTIONS(2459), + [anon_sym_GT] = ACTIONS(2459), + [anon_sym_EQ_EQ] = ACTIONS(2459), + [anon_sym_BANG_EQ] = ACTIONS(2459), + [anon_sym_LT_EQ] = ACTIONS(2459), + [anon_sym_GT_EQ] = ACTIONS(2459), + [anon_sym_LBRACK] = ACTIONS(2457), + [anon_sym_struct] = ACTIONS(2459), + [anon_sym_union] = ACTIONS(2459), + [anon_sym_pub] = ACTIONS(2459), + [anon_sym_mut] = ACTIONS(2459), + [anon_sym_enum] = ACTIONS(2459), + [anon_sym_interface] = ACTIONS(2459), + [anon_sym_PLUS_PLUS] = ACTIONS(2459), + [anon_sym_DASH_DASH] = ACTIONS(2459), + [anon_sym_QMARK] = ACTIONS(2459), + [anon_sym_BANG] = ACTIONS(2459), + [anon_sym_go] = ACTIONS(2459), + [anon_sym_spawn] = ACTIONS(2459), + [anon_sym_json_DOTdecode] = ACTIONS(2459), + [anon_sym_LBRACK2] = ACTIONS(2459), + [anon_sym_TILDE] = ACTIONS(2459), + [anon_sym_CARET] = ACTIONS(2459), + [anon_sym_AMP] = ACTIONS(2459), + [anon_sym_LT_DASH] = ACTIONS(2459), + [anon_sym_LT_LT] = ACTIONS(2459), + [anon_sym_GT_GT] = ACTIONS(2459), + [anon_sym_GT_GT_GT] = ACTIONS(2459), + [anon_sym_AMP_CARET] = ACTIONS(2459), + [anon_sym_AMP_AMP] = ACTIONS(2459), + [anon_sym_PIPE_PIPE] = ACTIONS(2459), + [anon_sym_or] = ACTIONS(2459), + [sym_none] = ACTIONS(2459), + [sym_true] = ACTIONS(2459), + [sym_false] = ACTIONS(2459), + [sym_nil] = ACTIONS(2459), + [anon_sym_QMARK_DOT] = ACTIONS(2459), + [anon_sym_POUND_LBRACK] = ACTIONS(2459), + [anon_sym_if] = ACTIONS(2459), + [anon_sym_DOLLARif] = ACTIONS(2459), + [anon_sym_is] = ACTIONS(2459), + [anon_sym_BANGis] = ACTIONS(2459), + [anon_sym_in] = ACTIONS(2459), + [anon_sym_BANGin] = ACTIONS(2459), + [anon_sym_match] = ACTIONS(2459), + [anon_sym_select] = ACTIONS(2459), + [anon_sym_lock] = ACTIONS(2459), + [anon_sym_rlock] = ACTIONS(2459), + [anon_sym_unsafe] = ACTIONS(2459), + [anon_sym_sql] = ACTIONS(2459), + [sym_int_literal] = ACTIONS(2459), + [sym_float_literal] = ACTIONS(2459), + [sym_rune_literal] = ACTIONS(2459), + [sym_pseudo_compile_time_identifier] = ACTIONS(2459), + [anon_sym_shared] = ACTIONS(2459), + [anon_sym_map_LBRACK] = ACTIONS(2459), + [anon_sym_chan] = ACTIONS(2459), + [anon_sym_thread] = ACTIONS(2459), + [anon_sym_atomic] = ACTIONS(2459), + [anon_sym_assert] = ACTIONS(2459), + [anon_sym_defer] = ACTIONS(2459), + [anon_sym_goto] = ACTIONS(2459), + [anon_sym_break] = ACTIONS(2459), + [anon_sym_continue] = ACTIONS(2459), + [anon_sym_return] = ACTIONS(2459), + [anon_sym_DOLLARfor] = ACTIONS(2459), + [anon_sym_for] = ACTIONS(2459), + [anon_sym_POUND] = ACTIONS(2459), + [anon_sym_asm] = ACTIONS(2459), + [anon_sym_AT_LBRACK] = ACTIONS(2459), + [sym___double_quote] = ACTIONS(2459), + [sym___single_quote] = ACTIONS(2459), + [sym___c_double_quote] = ACTIONS(2459), + [sym___c_single_quote] = ACTIONS(2459), + [sym___r_double_quote] = ACTIONS(2459), + [sym___r_single_quote] = ACTIONS(2459), }, [1077] = { [sym_line_comment] = STATE(1077), [sym_block_comment] = STATE(1077), - [ts_builtin_sym_end] = ACTIONS(2249), - [sym_identifier] = ACTIONS(2251), - [anon_sym_LF] = ACTIONS(2251), - [anon_sym_CR] = ACTIONS(2251), - [anon_sym_CR_LF] = ACTIONS(2251), + [ts_builtin_sym_end] = ACTIONS(2222), + [sym_identifier] = ACTIONS(2219), + [anon_sym_LF] = ACTIONS(2219), + [anon_sym_CR] = ACTIONS(2219), + [anon_sym_CR_LF] = ACTIONS(2219), [anon_sym_SLASH_SLASH] = ACTIONS(497), [anon_sym_SLASH_STAR] = ACTIONS(499), - [anon_sym_DOT] = ACTIONS(2253), - [anon_sym_as] = ACTIONS(2253), - [anon_sym_LBRACE] = ACTIONS(2251), - [anon_sym_COMMA] = ACTIONS(2251), - [anon_sym_const] = ACTIONS(2251), - [anon_sym_LPAREN] = ACTIONS(2253), - [anon_sym___global] = ACTIONS(2251), - [anon_sym_type] = ACTIONS(2251), - [anon_sym_PIPE] = ACTIONS(2253), - [anon_sym_fn] = ACTIONS(2251), - [anon_sym_PLUS] = ACTIONS(2253), - [anon_sym_DASH] = ACTIONS(2253), - [anon_sym_STAR] = ACTIONS(2253), - [anon_sym_SLASH] = ACTIONS(2253), - [anon_sym_PERCENT] = ACTIONS(2253), - [anon_sym_LT] = ACTIONS(2253), - [anon_sym_GT] = ACTIONS(2253), - [anon_sym_EQ_EQ] = ACTIONS(2253), - [anon_sym_BANG_EQ] = ACTIONS(2253), - [anon_sym_LT_EQ] = ACTIONS(2253), - [anon_sym_GT_EQ] = ACTIONS(2253), - [anon_sym_LBRACK] = ACTIONS(2256), - [anon_sym_struct] = ACTIONS(2251), - [anon_sym_union] = ACTIONS(2251), - [anon_sym_pub] = ACTIONS(2251), - [anon_sym_mut] = ACTIONS(2251), - [anon_sym_enum] = ACTIONS(2251), - [anon_sym_interface] = ACTIONS(2251), - [anon_sym_PLUS_PLUS] = ACTIONS(2253), - [anon_sym_DASH_DASH] = ACTIONS(2253), - [anon_sym_QMARK] = ACTIONS(2253), - [anon_sym_BANG] = ACTIONS(2253), - [anon_sym_go] = ACTIONS(2251), - [anon_sym_spawn] = ACTIONS(2251), - [anon_sym_json_DOTdecode] = ACTIONS(2251), - [anon_sym_LBRACK2] = ACTIONS(2253), - [anon_sym_TILDE] = ACTIONS(2251), - [anon_sym_CARET] = ACTIONS(2253), - [anon_sym_AMP] = ACTIONS(2253), - [anon_sym_LT_DASH] = ACTIONS(2251), - [anon_sym_LT_LT] = ACTIONS(2253), - [anon_sym_GT_GT] = ACTIONS(2253), - [anon_sym_GT_GT_GT] = ACTIONS(2253), - [anon_sym_AMP_CARET] = ACTIONS(2253), - [anon_sym_AMP_AMP] = ACTIONS(2253), - [anon_sym_PIPE_PIPE] = ACTIONS(2253), - [anon_sym_or] = ACTIONS(2253), - [sym_none] = ACTIONS(2251), - [sym_true] = ACTIONS(2251), - [sym_false] = ACTIONS(2251), - [sym_nil] = ACTIONS(2251), - [anon_sym_QMARK_DOT] = ACTIONS(2253), - [anon_sym_POUND_LBRACK] = ACTIONS(2253), - [anon_sym_if] = ACTIONS(2251), - [anon_sym_DOLLARif] = ACTIONS(2251), - [anon_sym_is] = ACTIONS(2253), - [anon_sym_BANGis] = ACTIONS(2253), - [anon_sym_in] = ACTIONS(2253), - [anon_sym_BANGin] = ACTIONS(2253), - [anon_sym_match] = ACTIONS(2251), - [anon_sym_select] = ACTIONS(2251), - [anon_sym_lock] = ACTIONS(2251), - [anon_sym_rlock] = ACTIONS(2251), - [anon_sym_unsafe] = ACTIONS(2251), - [anon_sym_sql] = ACTIONS(2251), - [sym_int_literal] = ACTIONS(2251), - [sym_float_literal] = ACTIONS(2251), - [sym_rune_literal] = ACTIONS(2251), - [sym_pseudo_compile_time_identifier] = ACTIONS(2251), - [anon_sym_shared] = ACTIONS(2251), - [anon_sym_map_LBRACK] = ACTIONS(2251), - [anon_sym_chan] = ACTIONS(2251), - [anon_sym_thread] = ACTIONS(2251), - [anon_sym_atomic] = ACTIONS(2251), - [anon_sym_assert] = ACTIONS(2251), - [anon_sym_defer] = ACTIONS(2251), - [anon_sym_goto] = ACTIONS(2251), - [anon_sym_break] = ACTIONS(2251), - [anon_sym_continue] = ACTIONS(2251), - [anon_sym_return] = ACTIONS(2251), - [anon_sym_DOLLARfor] = ACTIONS(2251), - [anon_sym_for] = ACTIONS(2251), - [anon_sym_POUND] = ACTIONS(2251), - [anon_sym_asm] = ACTIONS(2251), - [anon_sym_AT_LBRACK] = ACTIONS(2251), - [sym___double_quote] = ACTIONS(2251), - [sym___single_quote] = ACTIONS(2251), - [sym___c_double_quote] = ACTIONS(2251), - [sym___c_single_quote] = ACTIONS(2251), - [sym___r_double_quote] = ACTIONS(2251), - [sym___r_single_quote] = ACTIONS(2251), + [anon_sym_DOT] = ACTIONS(2219), + [anon_sym_as] = ACTIONS(2219), + [anon_sym_LBRACE] = ACTIONS(2219), + [anon_sym_COMMA] = ACTIONS(2219), + [anon_sym_const] = ACTIONS(2219), + [anon_sym_LPAREN] = ACTIONS(2219), + [anon_sym___global] = ACTIONS(2219), + [anon_sym_type] = ACTIONS(2219), + [anon_sym_PIPE] = ACTIONS(2219), + [anon_sym_fn] = ACTIONS(2219), + [anon_sym_PLUS] = ACTIONS(2219), + [anon_sym_DASH] = ACTIONS(2219), + [anon_sym_STAR] = ACTIONS(2219), + [anon_sym_SLASH] = ACTIONS(2219), + [anon_sym_PERCENT] = ACTIONS(2219), + [anon_sym_LT] = ACTIONS(2219), + [anon_sym_GT] = ACTIONS(2219), + [anon_sym_EQ_EQ] = ACTIONS(2219), + [anon_sym_BANG_EQ] = ACTIONS(2219), + [anon_sym_LT_EQ] = ACTIONS(2219), + [anon_sym_GT_EQ] = ACTIONS(2219), + [anon_sym_LBRACK] = ACTIONS(2222), + [anon_sym_struct] = ACTIONS(2219), + [anon_sym_union] = ACTIONS(2219), + [anon_sym_pub] = ACTIONS(2219), + [anon_sym_mut] = ACTIONS(2219), + [anon_sym_enum] = ACTIONS(2219), + [anon_sym_interface] = ACTIONS(2219), + [anon_sym_PLUS_PLUS] = ACTIONS(2219), + [anon_sym_DASH_DASH] = ACTIONS(2219), + [anon_sym_QMARK] = ACTIONS(2219), + [anon_sym_BANG] = ACTIONS(2219), + [anon_sym_go] = ACTIONS(2219), + [anon_sym_spawn] = ACTIONS(2219), + [anon_sym_json_DOTdecode] = ACTIONS(2219), + [anon_sym_LBRACK2] = ACTIONS(2219), + [anon_sym_TILDE] = ACTIONS(2219), + [anon_sym_CARET] = ACTIONS(2219), + [anon_sym_AMP] = ACTIONS(2219), + [anon_sym_LT_DASH] = ACTIONS(2219), + [anon_sym_LT_LT] = ACTIONS(2219), + [anon_sym_GT_GT] = ACTIONS(2219), + [anon_sym_GT_GT_GT] = ACTIONS(2219), + [anon_sym_AMP_CARET] = ACTIONS(2219), + [anon_sym_AMP_AMP] = ACTIONS(2219), + [anon_sym_PIPE_PIPE] = ACTIONS(2219), + [anon_sym_or] = ACTIONS(2219), + [sym_none] = ACTIONS(2219), + [sym_true] = ACTIONS(2219), + [sym_false] = ACTIONS(2219), + [sym_nil] = ACTIONS(2219), + [anon_sym_QMARK_DOT] = ACTIONS(2219), + [anon_sym_POUND_LBRACK] = ACTIONS(2219), + [anon_sym_if] = ACTIONS(2219), + [anon_sym_DOLLARif] = ACTIONS(2219), + [anon_sym_is] = ACTIONS(2219), + [anon_sym_BANGis] = ACTIONS(2219), + [anon_sym_in] = ACTIONS(2219), + [anon_sym_BANGin] = ACTIONS(2219), + [anon_sym_match] = ACTIONS(2219), + [anon_sym_select] = ACTIONS(2219), + [anon_sym_lock] = ACTIONS(2219), + [anon_sym_rlock] = ACTIONS(2219), + [anon_sym_unsafe] = ACTIONS(2219), + [anon_sym_sql] = ACTIONS(2219), + [sym_int_literal] = ACTIONS(2219), + [sym_float_literal] = ACTIONS(2219), + [sym_rune_literal] = ACTIONS(2219), + [sym_pseudo_compile_time_identifier] = ACTIONS(2219), + [anon_sym_shared] = ACTIONS(2219), + [anon_sym_map_LBRACK] = ACTIONS(2219), + [anon_sym_chan] = ACTIONS(2219), + [anon_sym_thread] = ACTIONS(2219), + [anon_sym_atomic] = ACTIONS(2219), + [anon_sym_assert] = ACTIONS(2219), + [anon_sym_defer] = ACTIONS(2219), + [anon_sym_goto] = ACTIONS(2219), + [anon_sym_break] = ACTIONS(2219), + [anon_sym_continue] = ACTIONS(2219), + [anon_sym_return] = ACTIONS(2219), + [anon_sym_DOLLARfor] = ACTIONS(2219), + [anon_sym_for] = ACTIONS(2219), + [anon_sym_POUND] = ACTIONS(2219), + [anon_sym_asm] = ACTIONS(2219), + [anon_sym_AT_LBRACK] = ACTIONS(2219), + [sym___double_quote] = ACTIONS(2219), + [sym___single_quote] = ACTIONS(2219), + [sym___c_double_quote] = ACTIONS(2219), + [sym___c_single_quote] = ACTIONS(2219), + [sym___r_double_quote] = ACTIONS(2219), + [sym___r_single_quote] = ACTIONS(2219), }, [1078] = { [sym_line_comment] = STATE(1078), [sym_block_comment] = STATE(1078), - [ts_builtin_sym_end] = ACTIONS(2743), - [sym_identifier] = ACTIONS(2745), - [anon_sym_LF] = ACTIONS(2745), - [anon_sym_CR] = ACTIONS(2745), - [anon_sym_CR_LF] = ACTIONS(2745), - [anon_sym_SLASH_SLASH] = ACTIONS(497), - [anon_sym_SLASH_STAR] = ACTIONS(499), - [anon_sym_DOT] = ACTIONS(2745), - [anon_sym_as] = ACTIONS(2745), - [anon_sym_LBRACE] = ACTIONS(2745), - [anon_sym_COMMA] = ACTIONS(2745), - [anon_sym_const] = ACTIONS(2745), - [anon_sym_LPAREN] = ACTIONS(2745), - [anon_sym___global] = ACTIONS(2745), - [anon_sym_type] = ACTIONS(2745), - [anon_sym_PIPE] = ACTIONS(2745), - [anon_sym_fn] = ACTIONS(2745), - [anon_sym_PLUS] = ACTIONS(2745), - [anon_sym_DASH] = ACTIONS(2745), - [anon_sym_STAR] = ACTIONS(2745), - [anon_sym_SLASH] = ACTIONS(2745), - [anon_sym_PERCENT] = ACTIONS(2745), - [anon_sym_LT] = ACTIONS(2745), - [anon_sym_GT] = ACTIONS(2745), - [anon_sym_EQ_EQ] = ACTIONS(2745), - [anon_sym_BANG_EQ] = ACTIONS(2745), - [anon_sym_LT_EQ] = ACTIONS(2745), - [anon_sym_GT_EQ] = ACTIONS(2745), - [anon_sym_LBRACK] = ACTIONS(2743), - [anon_sym_struct] = ACTIONS(2745), - [anon_sym_union] = ACTIONS(2745), - [anon_sym_pub] = ACTIONS(2745), - [anon_sym_mut] = ACTIONS(2745), - [anon_sym_enum] = ACTIONS(2745), - [anon_sym_interface] = ACTIONS(2745), - [anon_sym_PLUS_PLUS] = ACTIONS(2745), - [anon_sym_DASH_DASH] = ACTIONS(2745), - [anon_sym_QMARK] = ACTIONS(2745), - [anon_sym_BANG] = ACTIONS(2745), - [anon_sym_go] = ACTIONS(2745), - [anon_sym_spawn] = ACTIONS(2745), - [anon_sym_json_DOTdecode] = ACTIONS(2745), - [anon_sym_LBRACK2] = ACTIONS(2745), - [anon_sym_TILDE] = ACTIONS(2745), - [anon_sym_CARET] = ACTIONS(2745), - [anon_sym_AMP] = ACTIONS(2745), - [anon_sym_LT_DASH] = ACTIONS(2745), - [anon_sym_LT_LT] = ACTIONS(2745), - [anon_sym_GT_GT] = ACTIONS(2745), - [anon_sym_GT_GT_GT] = ACTIONS(2745), - [anon_sym_AMP_CARET] = ACTIONS(2745), - [anon_sym_AMP_AMP] = ACTIONS(2745), - [anon_sym_PIPE_PIPE] = ACTIONS(2745), - [anon_sym_or] = ACTIONS(2745), - [sym_none] = ACTIONS(2745), - [sym_true] = ACTIONS(2745), - [sym_false] = ACTIONS(2745), - [sym_nil] = ACTIONS(2745), - [anon_sym_QMARK_DOT] = ACTIONS(2745), - [anon_sym_POUND_LBRACK] = ACTIONS(2745), - [anon_sym_if] = ACTIONS(2745), - [anon_sym_DOLLARif] = ACTIONS(2745), - [anon_sym_is] = ACTIONS(2745), - [anon_sym_BANGis] = ACTIONS(2745), - [anon_sym_in] = ACTIONS(2745), - [anon_sym_BANGin] = ACTIONS(2745), - [anon_sym_match] = ACTIONS(2745), - [anon_sym_select] = ACTIONS(2745), - [anon_sym_lock] = ACTIONS(2745), - [anon_sym_rlock] = ACTIONS(2745), - [anon_sym_unsafe] = ACTIONS(2745), - [anon_sym_sql] = ACTIONS(2745), - [sym_int_literal] = ACTIONS(2745), - [sym_float_literal] = ACTIONS(2745), - [sym_rune_literal] = ACTIONS(2745), - [sym_pseudo_compile_time_identifier] = ACTIONS(2745), - [anon_sym_shared] = ACTIONS(2745), - [anon_sym_map_LBRACK] = ACTIONS(2745), - [anon_sym_chan] = ACTIONS(2745), - [anon_sym_thread] = ACTIONS(2745), - [anon_sym_atomic] = ACTIONS(2745), - [anon_sym_assert] = ACTIONS(2745), - [anon_sym_defer] = ACTIONS(2745), - [anon_sym_goto] = ACTIONS(2745), - [anon_sym_break] = ACTIONS(2745), - [anon_sym_continue] = ACTIONS(2745), - [anon_sym_return] = ACTIONS(2745), - [anon_sym_DOLLARfor] = ACTIONS(2745), - [anon_sym_for] = ACTIONS(2745), - [anon_sym_POUND] = ACTIONS(2745), - [anon_sym_asm] = ACTIONS(2745), - [anon_sym_AT_LBRACK] = ACTIONS(2745), - [sym___double_quote] = ACTIONS(2745), - [sym___single_quote] = ACTIONS(2745), - [sym___c_double_quote] = ACTIONS(2745), - [sym___c_single_quote] = ACTIONS(2745), - [sym___r_double_quote] = ACTIONS(2745), - [sym___r_single_quote] = ACTIONS(2745), - }, - [1079] = { - [sym_line_comment] = STATE(1079), - [sym_block_comment] = STATE(1079), - [ts_builtin_sym_end] = ACTIONS(2834), - [sym_identifier] = ACTIONS(2836), - [anon_sym_LF] = ACTIONS(2836), - [anon_sym_CR] = ACTIONS(2836), - [anon_sym_CR_LF] = ACTIONS(2836), - [anon_sym_SLASH_SLASH] = ACTIONS(497), - [anon_sym_SLASH_STAR] = ACTIONS(499), - [anon_sym_DOT] = ACTIONS(2836), - [anon_sym_as] = ACTIONS(2836), - [anon_sym_LBRACE] = ACTIONS(2836), - [anon_sym_COMMA] = ACTIONS(2836), - [anon_sym_const] = ACTIONS(2836), - [anon_sym_LPAREN] = ACTIONS(2836), - [anon_sym___global] = ACTIONS(2836), - [anon_sym_type] = ACTIONS(2836), - [anon_sym_PIPE] = ACTIONS(2836), - [anon_sym_fn] = ACTIONS(2836), - [anon_sym_PLUS] = ACTIONS(2836), - [anon_sym_DASH] = ACTIONS(2836), - [anon_sym_STAR] = ACTIONS(2836), - [anon_sym_SLASH] = ACTIONS(2836), - [anon_sym_PERCENT] = ACTIONS(2836), - [anon_sym_LT] = ACTIONS(2836), - [anon_sym_GT] = ACTIONS(2836), - [anon_sym_EQ_EQ] = ACTIONS(2836), - [anon_sym_BANG_EQ] = ACTIONS(2836), - [anon_sym_LT_EQ] = ACTIONS(2836), - [anon_sym_GT_EQ] = ACTIONS(2836), - [anon_sym_LBRACK] = ACTIONS(2834), - [anon_sym_struct] = ACTIONS(2836), - [anon_sym_union] = ACTIONS(2836), - [anon_sym_pub] = ACTIONS(2836), - [anon_sym_mut] = ACTIONS(2836), - [anon_sym_enum] = ACTIONS(2836), - [anon_sym_interface] = ACTIONS(2836), - [anon_sym_PLUS_PLUS] = ACTIONS(2836), - [anon_sym_DASH_DASH] = ACTIONS(2836), - [anon_sym_QMARK] = ACTIONS(2836), - [anon_sym_BANG] = ACTIONS(2836), - [anon_sym_go] = ACTIONS(2836), - [anon_sym_spawn] = ACTIONS(2836), - [anon_sym_json_DOTdecode] = ACTIONS(2836), - [anon_sym_LBRACK2] = ACTIONS(2836), - [anon_sym_TILDE] = ACTIONS(2836), - [anon_sym_CARET] = ACTIONS(2836), - [anon_sym_AMP] = ACTIONS(2836), - [anon_sym_LT_DASH] = ACTIONS(2836), - [anon_sym_LT_LT] = ACTIONS(2836), - [anon_sym_GT_GT] = ACTIONS(2836), - [anon_sym_GT_GT_GT] = ACTIONS(2836), - [anon_sym_AMP_CARET] = ACTIONS(2836), - [anon_sym_AMP_AMP] = ACTIONS(2836), - [anon_sym_PIPE_PIPE] = ACTIONS(2836), - [anon_sym_or] = ACTIONS(2836), - [sym_none] = ACTIONS(2836), - [sym_true] = ACTIONS(2836), - [sym_false] = ACTIONS(2836), - [sym_nil] = ACTIONS(2836), - [anon_sym_QMARK_DOT] = ACTIONS(2836), - [anon_sym_POUND_LBRACK] = ACTIONS(2836), - [anon_sym_if] = ACTIONS(2836), - [anon_sym_DOLLARif] = ACTIONS(2836), - [anon_sym_is] = ACTIONS(2836), - [anon_sym_BANGis] = ACTIONS(2836), - [anon_sym_in] = ACTIONS(2836), - [anon_sym_BANGin] = ACTIONS(2836), - [anon_sym_match] = ACTIONS(2836), - [anon_sym_select] = ACTIONS(2836), - [anon_sym_lock] = ACTIONS(2836), - [anon_sym_rlock] = ACTIONS(2836), - [anon_sym_unsafe] = ACTIONS(2836), - [anon_sym_sql] = ACTIONS(2836), - [sym_int_literal] = ACTIONS(2836), - [sym_float_literal] = ACTIONS(2836), - [sym_rune_literal] = ACTIONS(2836), - [sym_pseudo_compile_time_identifier] = ACTIONS(2836), - [anon_sym_shared] = ACTIONS(2836), - [anon_sym_map_LBRACK] = ACTIONS(2836), - [anon_sym_chan] = ACTIONS(2836), - [anon_sym_thread] = ACTIONS(2836), - [anon_sym_atomic] = ACTIONS(2836), - [anon_sym_assert] = ACTIONS(2836), - [anon_sym_defer] = ACTIONS(2836), - [anon_sym_goto] = ACTIONS(2836), - [anon_sym_break] = ACTIONS(2836), - [anon_sym_continue] = ACTIONS(2836), - [anon_sym_return] = ACTIONS(2836), - [anon_sym_DOLLARfor] = ACTIONS(2836), - [anon_sym_for] = ACTIONS(2836), - [anon_sym_POUND] = ACTIONS(2836), - [anon_sym_asm] = ACTIONS(2836), - [anon_sym_AT_LBRACK] = ACTIONS(2836), - [sym___double_quote] = ACTIONS(2836), - [sym___single_quote] = ACTIONS(2836), - [sym___c_double_quote] = ACTIONS(2836), - [sym___c_single_quote] = ACTIONS(2836), - [sym___r_double_quote] = ACTIONS(2836), - [sym___r_single_quote] = ACTIONS(2836), - }, - [1080] = { - [sym_line_comment] = STATE(1080), - [sym_block_comment] = STATE(1080), - [ts_builtin_sym_end] = ACTIONS(2822), - [sym_identifier] = ACTIONS(2824), - [anon_sym_LF] = ACTIONS(2824), - [anon_sym_CR] = ACTIONS(2824), - [anon_sym_CR_LF] = ACTIONS(2824), - [anon_sym_SLASH_SLASH] = ACTIONS(497), - [anon_sym_SLASH_STAR] = ACTIONS(499), - [anon_sym_DOT] = ACTIONS(2824), - [anon_sym_as] = ACTIONS(2824), - [anon_sym_LBRACE] = ACTIONS(2824), - [anon_sym_COMMA] = ACTIONS(2824), - [anon_sym_const] = ACTIONS(2824), - [anon_sym_LPAREN] = ACTIONS(2824), - [anon_sym___global] = ACTIONS(2824), - [anon_sym_type] = ACTIONS(2824), - [anon_sym_PIPE] = ACTIONS(2824), - [anon_sym_fn] = ACTIONS(2824), - [anon_sym_PLUS] = ACTIONS(2824), - [anon_sym_DASH] = ACTIONS(2824), - [anon_sym_STAR] = ACTIONS(2824), - [anon_sym_SLASH] = ACTIONS(2824), - [anon_sym_PERCENT] = ACTIONS(2824), - [anon_sym_LT] = ACTIONS(2824), - [anon_sym_GT] = ACTIONS(2824), - [anon_sym_EQ_EQ] = ACTIONS(2824), - [anon_sym_BANG_EQ] = ACTIONS(2824), - [anon_sym_LT_EQ] = ACTIONS(2824), - [anon_sym_GT_EQ] = ACTIONS(2824), - [anon_sym_LBRACK] = ACTIONS(2822), - [anon_sym_struct] = ACTIONS(2824), - [anon_sym_union] = ACTIONS(2824), - [anon_sym_pub] = ACTIONS(2824), - [anon_sym_mut] = ACTIONS(2824), - [anon_sym_enum] = ACTIONS(2824), - [anon_sym_interface] = ACTIONS(2824), - [anon_sym_PLUS_PLUS] = ACTIONS(2824), - [anon_sym_DASH_DASH] = ACTIONS(2824), - [anon_sym_QMARK] = ACTIONS(2824), - [anon_sym_BANG] = ACTIONS(2824), - [anon_sym_go] = ACTIONS(2824), - [anon_sym_spawn] = ACTIONS(2824), - [anon_sym_json_DOTdecode] = ACTIONS(2824), - [anon_sym_LBRACK2] = ACTIONS(2824), - [anon_sym_TILDE] = ACTIONS(2824), - [anon_sym_CARET] = ACTIONS(2824), - [anon_sym_AMP] = ACTIONS(2824), - [anon_sym_LT_DASH] = ACTIONS(2824), - [anon_sym_LT_LT] = ACTIONS(2824), - [anon_sym_GT_GT] = ACTIONS(2824), - [anon_sym_GT_GT_GT] = ACTIONS(2824), - [anon_sym_AMP_CARET] = ACTIONS(2824), - [anon_sym_AMP_AMP] = ACTIONS(2824), - [anon_sym_PIPE_PIPE] = ACTIONS(2824), - [anon_sym_or] = ACTIONS(2824), - [sym_none] = ACTIONS(2824), - [sym_true] = ACTIONS(2824), - [sym_false] = ACTIONS(2824), - [sym_nil] = ACTIONS(2824), - [anon_sym_QMARK_DOT] = ACTIONS(2824), - [anon_sym_POUND_LBRACK] = ACTIONS(2824), - [anon_sym_if] = ACTIONS(2824), - [anon_sym_DOLLARif] = ACTIONS(2824), - [anon_sym_is] = ACTIONS(2824), - [anon_sym_BANGis] = ACTIONS(2824), - [anon_sym_in] = ACTIONS(2824), - [anon_sym_BANGin] = ACTIONS(2824), - [anon_sym_match] = ACTIONS(2824), - [anon_sym_select] = ACTIONS(2824), - [anon_sym_lock] = ACTIONS(2824), - [anon_sym_rlock] = ACTIONS(2824), - [anon_sym_unsafe] = ACTIONS(2824), - [anon_sym_sql] = ACTIONS(2824), - [sym_int_literal] = ACTIONS(2824), - [sym_float_literal] = ACTIONS(2824), - [sym_rune_literal] = ACTIONS(2824), - [sym_pseudo_compile_time_identifier] = ACTIONS(2824), - [anon_sym_shared] = ACTIONS(2824), - [anon_sym_map_LBRACK] = ACTIONS(2824), - [anon_sym_chan] = ACTIONS(2824), - [anon_sym_thread] = ACTIONS(2824), - [anon_sym_atomic] = ACTIONS(2824), - [anon_sym_assert] = ACTIONS(2824), - [anon_sym_defer] = ACTIONS(2824), - [anon_sym_goto] = ACTIONS(2824), - [anon_sym_break] = ACTIONS(2824), - [anon_sym_continue] = ACTIONS(2824), - [anon_sym_return] = ACTIONS(2824), - [anon_sym_DOLLARfor] = ACTIONS(2824), - [anon_sym_for] = ACTIONS(2824), - [anon_sym_POUND] = ACTIONS(2824), - [anon_sym_asm] = ACTIONS(2824), - [anon_sym_AT_LBRACK] = ACTIONS(2824), - [sym___double_quote] = ACTIONS(2824), - [sym___single_quote] = ACTIONS(2824), - [sym___c_double_quote] = ACTIONS(2824), - [sym___c_single_quote] = ACTIONS(2824), - [sym___r_double_quote] = ACTIONS(2824), - [sym___r_single_quote] = ACTIONS(2824), - }, - [1081] = { - [sym_line_comment] = STATE(1081), - [sym_block_comment] = STATE(1081), - [ts_builtin_sym_end] = ACTIONS(2818), - [sym_identifier] = ACTIONS(2820), - [anon_sym_LF] = ACTIONS(2820), - [anon_sym_CR] = ACTIONS(2820), - [anon_sym_CR_LF] = ACTIONS(2820), - [anon_sym_SLASH_SLASH] = ACTIONS(497), - [anon_sym_SLASH_STAR] = ACTIONS(499), - [anon_sym_DOT] = ACTIONS(2820), - [anon_sym_as] = ACTIONS(2820), - [anon_sym_LBRACE] = ACTIONS(2820), - [anon_sym_COMMA] = ACTIONS(2820), - [anon_sym_const] = ACTIONS(2820), - [anon_sym_LPAREN] = ACTIONS(2820), - [anon_sym___global] = ACTIONS(2820), - [anon_sym_type] = ACTIONS(2820), - [anon_sym_PIPE] = ACTIONS(2820), - [anon_sym_fn] = ACTIONS(2820), - [anon_sym_PLUS] = ACTIONS(2820), - [anon_sym_DASH] = ACTIONS(2820), - [anon_sym_STAR] = ACTIONS(2820), - [anon_sym_SLASH] = ACTIONS(2820), - [anon_sym_PERCENT] = ACTIONS(2820), - [anon_sym_LT] = ACTIONS(2820), - [anon_sym_GT] = ACTIONS(2820), - [anon_sym_EQ_EQ] = ACTIONS(2820), - [anon_sym_BANG_EQ] = ACTIONS(2820), - [anon_sym_LT_EQ] = ACTIONS(2820), - [anon_sym_GT_EQ] = ACTIONS(2820), - [anon_sym_LBRACK] = ACTIONS(2818), - [anon_sym_struct] = ACTIONS(2820), - [anon_sym_union] = ACTIONS(2820), - [anon_sym_pub] = ACTIONS(2820), - [anon_sym_mut] = ACTIONS(2820), - [anon_sym_enum] = ACTIONS(2820), - [anon_sym_interface] = ACTIONS(2820), - [anon_sym_PLUS_PLUS] = ACTIONS(2820), - [anon_sym_DASH_DASH] = ACTIONS(2820), - [anon_sym_QMARK] = ACTIONS(2820), - [anon_sym_BANG] = ACTIONS(2820), - [anon_sym_go] = ACTIONS(2820), - [anon_sym_spawn] = ACTIONS(2820), - [anon_sym_json_DOTdecode] = ACTIONS(2820), - [anon_sym_LBRACK2] = ACTIONS(2820), - [anon_sym_TILDE] = ACTIONS(2820), - [anon_sym_CARET] = ACTIONS(2820), - [anon_sym_AMP] = ACTIONS(2820), - [anon_sym_LT_DASH] = ACTIONS(2820), - [anon_sym_LT_LT] = ACTIONS(2820), - [anon_sym_GT_GT] = ACTIONS(2820), - [anon_sym_GT_GT_GT] = ACTIONS(2820), - [anon_sym_AMP_CARET] = ACTIONS(2820), - [anon_sym_AMP_AMP] = ACTIONS(2820), - [anon_sym_PIPE_PIPE] = ACTIONS(2820), - [anon_sym_or] = ACTIONS(2820), - [sym_none] = ACTIONS(2820), - [sym_true] = ACTIONS(2820), - [sym_false] = ACTIONS(2820), - [sym_nil] = ACTIONS(2820), - [anon_sym_QMARK_DOT] = ACTIONS(2820), - [anon_sym_POUND_LBRACK] = ACTIONS(2820), - [anon_sym_if] = ACTIONS(2820), - [anon_sym_DOLLARif] = ACTIONS(2820), - [anon_sym_is] = ACTIONS(2820), - [anon_sym_BANGis] = ACTIONS(2820), - [anon_sym_in] = ACTIONS(2820), - [anon_sym_BANGin] = ACTIONS(2820), - [anon_sym_match] = ACTIONS(2820), - [anon_sym_select] = ACTIONS(2820), - [anon_sym_lock] = ACTIONS(2820), - [anon_sym_rlock] = ACTIONS(2820), - [anon_sym_unsafe] = ACTIONS(2820), - [anon_sym_sql] = ACTIONS(2820), - [sym_int_literal] = ACTIONS(2820), - [sym_float_literal] = ACTIONS(2820), - [sym_rune_literal] = ACTIONS(2820), - [sym_pseudo_compile_time_identifier] = ACTIONS(2820), - [anon_sym_shared] = ACTIONS(2820), - [anon_sym_map_LBRACK] = ACTIONS(2820), - [anon_sym_chan] = ACTIONS(2820), - [anon_sym_thread] = ACTIONS(2820), - [anon_sym_atomic] = ACTIONS(2820), - [anon_sym_assert] = ACTIONS(2820), - [anon_sym_defer] = ACTIONS(2820), - [anon_sym_goto] = ACTIONS(2820), - [anon_sym_break] = ACTIONS(2820), - [anon_sym_continue] = ACTIONS(2820), - [anon_sym_return] = ACTIONS(2820), - [anon_sym_DOLLARfor] = ACTIONS(2820), - [anon_sym_for] = ACTIONS(2820), - [anon_sym_POUND] = ACTIONS(2820), - [anon_sym_asm] = ACTIONS(2820), - [anon_sym_AT_LBRACK] = ACTIONS(2820), - [sym___double_quote] = ACTIONS(2820), - [sym___single_quote] = ACTIONS(2820), - [sym___c_double_quote] = ACTIONS(2820), - [sym___c_single_quote] = ACTIONS(2820), - [sym___r_double_quote] = ACTIONS(2820), - [sym___r_single_quote] = ACTIONS(2820), - }, - [1082] = { - [sym_line_comment] = STATE(1082), - [sym_block_comment] = STATE(1082), [ts_builtin_sym_end] = ACTIONS(2804), [sym_identifier] = ACTIONS(2806), [anon_sym_LF] = ACTIONS(2806), @@ -145784,61 +145408,1081 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym___r_double_quote] = ACTIONS(2806), [sym___r_single_quote] = ACTIONS(2806), }, + [1079] = { + [sym_line_comment] = STATE(1079), + [sym_block_comment] = STATE(1079), + [ts_builtin_sym_end] = ACTIONS(3052), + [sym_identifier] = ACTIONS(3054), + [anon_sym_LF] = ACTIONS(3054), + [anon_sym_CR] = ACTIONS(3054), + [anon_sym_CR_LF] = ACTIONS(3054), + [anon_sym_SLASH_SLASH] = ACTIONS(497), + [anon_sym_SLASH_STAR] = ACTIONS(499), + [anon_sym_DOT] = ACTIONS(3054), + [anon_sym_as] = ACTIONS(3054), + [anon_sym_LBRACE] = ACTIONS(3054), + [anon_sym_COMMA] = ACTIONS(3054), + [anon_sym_const] = ACTIONS(3054), + [anon_sym_LPAREN] = ACTIONS(3054), + [anon_sym___global] = ACTIONS(3054), + [anon_sym_type] = ACTIONS(3054), + [anon_sym_PIPE] = ACTIONS(3054), + [anon_sym_fn] = ACTIONS(3054), + [anon_sym_PLUS] = ACTIONS(3054), + [anon_sym_DASH] = ACTIONS(3054), + [anon_sym_STAR] = ACTIONS(3054), + [anon_sym_SLASH] = ACTIONS(3054), + [anon_sym_PERCENT] = ACTIONS(3054), + [anon_sym_LT] = ACTIONS(3054), + [anon_sym_GT] = ACTIONS(3054), + [anon_sym_EQ_EQ] = ACTIONS(3054), + [anon_sym_BANG_EQ] = ACTIONS(3054), + [anon_sym_LT_EQ] = ACTIONS(3054), + [anon_sym_GT_EQ] = ACTIONS(3054), + [anon_sym_LBRACK] = ACTIONS(3052), + [anon_sym_struct] = ACTIONS(3054), + [anon_sym_union] = ACTIONS(3054), + [anon_sym_pub] = ACTIONS(3054), + [anon_sym_mut] = ACTIONS(3054), + [anon_sym_enum] = ACTIONS(3054), + [anon_sym_interface] = ACTIONS(3054), + [anon_sym_PLUS_PLUS] = ACTIONS(3054), + [anon_sym_DASH_DASH] = ACTIONS(3054), + [anon_sym_QMARK] = ACTIONS(3054), + [anon_sym_BANG] = ACTIONS(3054), + [anon_sym_go] = ACTIONS(3054), + [anon_sym_spawn] = ACTIONS(3054), + [anon_sym_json_DOTdecode] = ACTIONS(3054), + [anon_sym_LBRACK2] = ACTIONS(3054), + [anon_sym_TILDE] = ACTIONS(3054), + [anon_sym_CARET] = ACTIONS(3054), + [anon_sym_AMP] = ACTIONS(3054), + [anon_sym_LT_DASH] = ACTIONS(3054), + [anon_sym_LT_LT] = ACTIONS(3054), + [anon_sym_GT_GT] = ACTIONS(3054), + [anon_sym_GT_GT_GT] = ACTIONS(3054), + [anon_sym_AMP_CARET] = ACTIONS(3054), + [anon_sym_AMP_AMP] = ACTIONS(3054), + [anon_sym_PIPE_PIPE] = ACTIONS(3054), + [anon_sym_or] = ACTIONS(3054), + [sym_none] = ACTIONS(3054), + [sym_true] = ACTIONS(3054), + [sym_false] = ACTIONS(3054), + [sym_nil] = ACTIONS(3054), + [anon_sym_QMARK_DOT] = ACTIONS(3054), + [anon_sym_POUND_LBRACK] = ACTIONS(3054), + [anon_sym_if] = ACTIONS(3054), + [anon_sym_DOLLARif] = ACTIONS(3054), + [anon_sym_is] = ACTIONS(3054), + [anon_sym_BANGis] = ACTIONS(3054), + [anon_sym_in] = ACTIONS(3054), + [anon_sym_BANGin] = ACTIONS(3054), + [anon_sym_match] = ACTIONS(3054), + [anon_sym_select] = ACTIONS(3054), + [anon_sym_lock] = ACTIONS(3054), + [anon_sym_rlock] = ACTIONS(3054), + [anon_sym_unsafe] = ACTIONS(3054), + [anon_sym_sql] = ACTIONS(3054), + [sym_int_literal] = ACTIONS(3054), + [sym_float_literal] = ACTIONS(3054), + [sym_rune_literal] = ACTIONS(3054), + [sym_pseudo_compile_time_identifier] = ACTIONS(3054), + [anon_sym_shared] = ACTIONS(3054), + [anon_sym_map_LBRACK] = ACTIONS(3054), + [anon_sym_chan] = ACTIONS(3054), + [anon_sym_thread] = ACTIONS(3054), + [anon_sym_atomic] = ACTIONS(3054), + [anon_sym_assert] = ACTIONS(3054), + [anon_sym_defer] = ACTIONS(3054), + [anon_sym_goto] = ACTIONS(3054), + [anon_sym_break] = ACTIONS(3054), + [anon_sym_continue] = ACTIONS(3054), + [anon_sym_return] = ACTIONS(3054), + [anon_sym_DOLLARfor] = ACTIONS(3054), + [anon_sym_for] = ACTIONS(3054), + [anon_sym_POUND] = ACTIONS(3054), + [anon_sym_asm] = ACTIONS(3054), + [anon_sym_AT_LBRACK] = ACTIONS(3054), + [sym___double_quote] = ACTIONS(3054), + [sym___single_quote] = ACTIONS(3054), + [sym___c_double_quote] = ACTIONS(3054), + [sym___c_single_quote] = ACTIONS(3054), + [sym___r_double_quote] = ACTIONS(3054), + [sym___r_single_quote] = ACTIONS(3054), + }, + [1080] = { + [sym_line_comment] = STATE(1080), + [sym_block_comment] = STATE(1080), + [ts_builtin_sym_end] = ACTIONS(2670), + [sym_identifier] = ACTIONS(2672), + [anon_sym_LF] = ACTIONS(2672), + [anon_sym_CR] = ACTIONS(2672), + [anon_sym_CR_LF] = ACTIONS(2672), + [anon_sym_SLASH_SLASH] = ACTIONS(497), + [anon_sym_SLASH_STAR] = ACTIONS(499), + [anon_sym_DOT] = ACTIONS(2672), + [anon_sym_as] = ACTIONS(2672), + [anon_sym_LBRACE] = ACTIONS(2672), + [anon_sym_COMMA] = ACTIONS(2672), + [anon_sym_const] = ACTIONS(2672), + [anon_sym_LPAREN] = ACTIONS(2672), + [anon_sym___global] = ACTIONS(2672), + [anon_sym_type] = ACTIONS(2672), + [anon_sym_PIPE] = ACTIONS(2672), + [anon_sym_fn] = ACTIONS(2672), + [anon_sym_PLUS] = ACTIONS(2672), + [anon_sym_DASH] = ACTIONS(2672), + [anon_sym_STAR] = ACTIONS(2672), + [anon_sym_SLASH] = ACTIONS(2672), + [anon_sym_PERCENT] = ACTIONS(2672), + [anon_sym_LT] = ACTIONS(2672), + [anon_sym_GT] = ACTIONS(2672), + [anon_sym_EQ_EQ] = ACTIONS(2672), + [anon_sym_BANG_EQ] = ACTIONS(2672), + [anon_sym_LT_EQ] = ACTIONS(2672), + [anon_sym_GT_EQ] = ACTIONS(2672), + [anon_sym_LBRACK] = ACTIONS(2670), + [anon_sym_struct] = ACTIONS(2672), + [anon_sym_union] = ACTIONS(2672), + [anon_sym_pub] = ACTIONS(2672), + [anon_sym_mut] = ACTIONS(2672), + [anon_sym_enum] = ACTIONS(2672), + [anon_sym_interface] = ACTIONS(2672), + [anon_sym_PLUS_PLUS] = ACTIONS(2672), + [anon_sym_DASH_DASH] = ACTIONS(2672), + [anon_sym_QMARK] = ACTIONS(2672), + [anon_sym_BANG] = ACTIONS(2672), + [anon_sym_go] = ACTIONS(2672), + [anon_sym_spawn] = ACTIONS(2672), + [anon_sym_json_DOTdecode] = ACTIONS(2672), + [anon_sym_LBRACK2] = ACTIONS(2672), + [anon_sym_TILDE] = ACTIONS(2672), + [anon_sym_CARET] = ACTIONS(2672), + [anon_sym_AMP] = ACTIONS(2672), + [anon_sym_LT_DASH] = ACTIONS(2672), + [anon_sym_LT_LT] = ACTIONS(2672), + [anon_sym_GT_GT] = ACTIONS(2672), + [anon_sym_GT_GT_GT] = ACTIONS(2672), + [anon_sym_AMP_CARET] = ACTIONS(2672), + [anon_sym_AMP_AMP] = ACTIONS(2672), + [anon_sym_PIPE_PIPE] = ACTIONS(2672), + [anon_sym_or] = ACTIONS(2672), + [sym_none] = ACTIONS(2672), + [sym_true] = ACTIONS(2672), + [sym_false] = ACTIONS(2672), + [sym_nil] = ACTIONS(2672), + [anon_sym_QMARK_DOT] = ACTIONS(2672), + [anon_sym_POUND_LBRACK] = ACTIONS(2672), + [anon_sym_if] = ACTIONS(2672), + [anon_sym_DOLLARif] = ACTIONS(2672), + [anon_sym_is] = ACTIONS(2672), + [anon_sym_BANGis] = ACTIONS(2672), + [anon_sym_in] = ACTIONS(2672), + [anon_sym_BANGin] = ACTIONS(2672), + [anon_sym_match] = ACTIONS(2672), + [anon_sym_select] = ACTIONS(2672), + [anon_sym_lock] = ACTIONS(2672), + [anon_sym_rlock] = ACTIONS(2672), + [anon_sym_unsafe] = ACTIONS(2672), + [anon_sym_sql] = ACTIONS(2672), + [sym_int_literal] = ACTIONS(2672), + [sym_float_literal] = ACTIONS(2672), + [sym_rune_literal] = ACTIONS(2672), + [sym_pseudo_compile_time_identifier] = ACTIONS(2672), + [anon_sym_shared] = ACTIONS(2672), + [anon_sym_map_LBRACK] = ACTIONS(2672), + [anon_sym_chan] = ACTIONS(2672), + [anon_sym_thread] = ACTIONS(2672), + [anon_sym_atomic] = ACTIONS(2672), + [anon_sym_assert] = ACTIONS(2672), + [anon_sym_defer] = ACTIONS(2672), + [anon_sym_goto] = ACTIONS(2672), + [anon_sym_break] = ACTIONS(2672), + [anon_sym_continue] = ACTIONS(2672), + [anon_sym_return] = ACTIONS(2672), + [anon_sym_DOLLARfor] = ACTIONS(2672), + [anon_sym_for] = ACTIONS(2672), + [anon_sym_POUND] = ACTIONS(2672), + [anon_sym_asm] = ACTIONS(2672), + [anon_sym_AT_LBRACK] = ACTIONS(2672), + [sym___double_quote] = ACTIONS(2672), + [sym___single_quote] = ACTIONS(2672), + [sym___c_double_quote] = ACTIONS(2672), + [sym___c_single_quote] = ACTIONS(2672), + [sym___r_double_quote] = ACTIONS(2672), + [sym___r_single_quote] = ACTIONS(2672), + }, + [1081] = { + [sym_line_comment] = STATE(1081), + [sym_block_comment] = STATE(1081), + [ts_builtin_sym_end] = ACTIONS(2734), + [sym_identifier] = ACTIONS(2736), + [anon_sym_LF] = ACTIONS(2736), + [anon_sym_CR] = ACTIONS(2736), + [anon_sym_CR_LF] = ACTIONS(2736), + [anon_sym_SLASH_SLASH] = ACTIONS(497), + [anon_sym_SLASH_STAR] = ACTIONS(499), + [anon_sym_DOT] = ACTIONS(2736), + [anon_sym_as] = ACTIONS(2736), + [anon_sym_LBRACE] = ACTIONS(2736), + [anon_sym_COMMA] = ACTIONS(2736), + [anon_sym_const] = ACTIONS(2736), + [anon_sym_LPAREN] = ACTIONS(2736), + [anon_sym___global] = ACTIONS(2736), + [anon_sym_type] = ACTIONS(2736), + [anon_sym_PIPE] = ACTIONS(2736), + [anon_sym_fn] = ACTIONS(2736), + [anon_sym_PLUS] = ACTIONS(2736), + [anon_sym_DASH] = ACTIONS(2736), + [anon_sym_STAR] = ACTIONS(2736), + [anon_sym_SLASH] = ACTIONS(2736), + [anon_sym_PERCENT] = ACTIONS(2736), + [anon_sym_LT] = ACTIONS(2736), + [anon_sym_GT] = ACTIONS(2736), + [anon_sym_EQ_EQ] = ACTIONS(2736), + [anon_sym_BANG_EQ] = ACTIONS(2736), + [anon_sym_LT_EQ] = ACTIONS(2736), + [anon_sym_GT_EQ] = ACTIONS(2736), + [anon_sym_LBRACK] = ACTIONS(2734), + [anon_sym_struct] = ACTIONS(2736), + [anon_sym_union] = ACTIONS(2736), + [anon_sym_pub] = ACTIONS(2736), + [anon_sym_mut] = ACTIONS(2736), + [anon_sym_enum] = ACTIONS(2736), + [anon_sym_interface] = ACTIONS(2736), + [anon_sym_PLUS_PLUS] = ACTIONS(2736), + [anon_sym_DASH_DASH] = ACTIONS(2736), + [anon_sym_QMARK] = ACTIONS(2736), + [anon_sym_BANG] = ACTIONS(2736), + [anon_sym_go] = ACTIONS(2736), + [anon_sym_spawn] = ACTIONS(2736), + [anon_sym_json_DOTdecode] = ACTIONS(2736), + [anon_sym_LBRACK2] = ACTIONS(2736), + [anon_sym_TILDE] = ACTIONS(2736), + [anon_sym_CARET] = ACTIONS(2736), + [anon_sym_AMP] = ACTIONS(2736), + [anon_sym_LT_DASH] = ACTIONS(2736), + [anon_sym_LT_LT] = ACTIONS(2736), + [anon_sym_GT_GT] = ACTIONS(2736), + [anon_sym_GT_GT_GT] = ACTIONS(2736), + [anon_sym_AMP_CARET] = ACTIONS(2736), + [anon_sym_AMP_AMP] = ACTIONS(2736), + [anon_sym_PIPE_PIPE] = ACTIONS(2736), + [anon_sym_or] = ACTIONS(2736), + [sym_none] = ACTIONS(2736), + [sym_true] = ACTIONS(2736), + [sym_false] = ACTIONS(2736), + [sym_nil] = ACTIONS(2736), + [anon_sym_QMARK_DOT] = ACTIONS(2736), + [anon_sym_POUND_LBRACK] = ACTIONS(2736), + [anon_sym_if] = ACTIONS(2736), + [anon_sym_DOLLARif] = ACTIONS(2736), + [anon_sym_is] = ACTIONS(2736), + [anon_sym_BANGis] = ACTIONS(2736), + [anon_sym_in] = ACTIONS(2736), + [anon_sym_BANGin] = ACTIONS(2736), + [anon_sym_match] = ACTIONS(2736), + [anon_sym_select] = ACTIONS(2736), + [anon_sym_lock] = ACTIONS(2736), + [anon_sym_rlock] = ACTIONS(2736), + [anon_sym_unsafe] = ACTIONS(2736), + [anon_sym_sql] = ACTIONS(2736), + [sym_int_literal] = ACTIONS(2736), + [sym_float_literal] = ACTIONS(2736), + [sym_rune_literal] = ACTIONS(2736), + [sym_pseudo_compile_time_identifier] = ACTIONS(2736), + [anon_sym_shared] = ACTIONS(2736), + [anon_sym_map_LBRACK] = ACTIONS(2736), + [anon_sym_chan] = ACTIONS(2736), + [anon_sym_thread] = ACTIONS(2736), + [anon_sym_atomic] = ACTIONS(2736), + [anon_sym_assert] = ACTIONS(2736), + [anon_sym_defer] = ACTIONS(2736), + [anon_sym_goto] = ACTIONS(2736), + [anon_sym_break] = ACTIONS(2736), + [anon_sym_continue] = ACTIONS(2736), + [anon_sym_return] = ACTIONS(2736), + [anon_sym_DOLLARfor] = ACTIONS(2736), + [anon_sym_for] = ACTIONS(2736), + [anon_sym_POUND] = ACTIONS(2736), + [anon_sym_asm] = ACTIONS(2736), + [anon_sym_AT_LBRACK] = ACTIONS(2736), + [sym___double_quote] = ACTIONS(2736), + [sym___single_quote] = ACTIONS(2736), + [sym___c_double_quote] = ACTIONS(2736), + [sym___c_single_quote] = ACTIONS(2736), + [sym___r_double_quote] = ACTIONS(2736), + [sym___r_single_quote] = ACTIONS(2736), + }, + [1082] = { + [sym_line_comment] = STATE(1082), + [sym_block_comment] = STATE(1082), + [ts_builtin_sym_end] = ACTIONS(3042), + [sym_identifier] = ACTIONS(3044), + [anon_sym_LF] = ACTIONS(3044), + [anon_sym_CR] = ACTIONS(3044), + [anon_sym_CR_LF] = ACTIONS(3044), + [anon_sym_SLASH_SLASH] = ACTIONS(497), + [anon_sym_SLASH_STAR] = ACTIONS(499), + [anon_sym_DOT] = ACTIONS(3044), + [anon_sym_as] = ACTIONS(3044), + [anon_sym_LBRACE] = ACTIONS(3044), + [anon_sym_COMMA] = ACTIONS(3044), + [anon_sym_const] = ACTIONS(3044), + [anon_sym_LPAREN] = ACTIONS(3044), + [anon_sym___global] = ACTIONS(3044), + [anon_sym_type] = ACTIONS(3044), + [anon_sym_PIPE] = ACTIONS(3044), + [anon_sym_fn] = ACTIONS(3044), + [anon_sym_PLUS] = ACTIONS(3044), + [anon_sym_DASH] = ACTIONS(3044), + [anon_sym_STAR] = ACTIONS(3044), + [anon_sym_SLASH] = ACTIONS(3044), + [anon_sym_PERCENT] = ACTIONS(3044), + [anon_sym_LT] = ACTIONS(3044), + [anon_sym_GT] = ACTIONS(3044), + [anon_sym_EQ_EQ] = ACTIONS(3044), + [anon_sym_BANG_EQ] = ACTIONS(3044), + [anon_sym_LT_EQ] = ACTIONS(3044), + [anon_sym_GT_EQ] = ACTIONS(3044), + [anon_sym_LBRACK] = ACTIONS(3042), + [anon_sym_struct] = ACTIONS(3044), + [anon_sym_union] = ACTIONS(3044), + [anon_sym_pub] = ACTIONS(3044), + [anon_sym_mut] = ACTIONS(3044), + [anon_sym_enum] = ACTIONS(3044), + [anon_sym_interface] = ACTIONS(3044), + [anon_sym_PLUS_PLUS] = ACTIONS(3044), + [anon_sym_DASH_DASH] = ACTIONS(3044), + [anon_sym_QMARK] = ACTIONS(3044), + [anon_sym_BANG] = ACTIONS(3044), + [anon_sym_go] = ACTIONS(3044), + [anon_sym_spawn] = ACTIONS(3044), + [anon_sym_json_DOTdecode] = ACTIONS(3044), + [anon_sym_LBRACK2] = ACTIONS(3044), + [anon_sym_TILDE] = ACTIONS(3044), + [anon_sym_CARET] = ACTIONS(3044), + [anon_sym_AMP] = ACTIONS(3044), + [anon_sym_LT_DASH] = ACTIONS(3044), + [anon_sym_LT_LT] = ACTIONS(3044), + [anon_sym_GT_GT] = ACTIONS(3044), + [anon_sym_GT_GT_GT] = ACTIONS(3044), + [anon_sym_AMP_CARET] = ACTIONS(3044), + [anon_sym_AMP_AMP] = ACTIONS(3044), + [anon_sym_PIPE_PIPE] = ACTIONS(3044), + [anon_sym_or] = ACTIONS(3044), + [sym_none] = ACTIONS(3044), + [sym_true] = ACTIONS(3044), + [sym_false] = ACTIONS(3044), + [sym_nil] = ACTIONS(3044), + [anon_sym_QMARK_DOT] = ACTIONS(3044), + [anon_sym_POUND_LBRACK] = ACTIONS(3044), + [anon_sym_if] = ACTIONS(3044), + [anon_sym_DOLLARif] = ACTIONS(3044), + [anon_sym_is] = ACTIONS(3044), + [anon_sym_BANGis] = ACTIONS(3044), + [anon_sym_in] = ACTIONS(3044), + [anon_sym_BANGin] = ACTIONS(3044), + [anon_sym_match] = ACTIONS(3044), + [anon_sym_select] = ACTIONS(3044), + [anon_sym_lock] = ACTIONS(3044), + [anon_sym_rlock] = ACTIONS(3044), + [anon_sym_unsafe] = ACTIONS(3044), + [anon_sym_sql] = ACTIONS(3044), + [sym_int_literal] = ACTIONS(3044), + [sym_float_literal] = ACTIONS(3044), + [sym_rune_literal] = ACTIONS(3044), + [sym_pseudo_compile_time_identifier] = ACTIONS(3044), + [anon_sym_shared] = ACTIONS(3044), + [anon_sym_map_LBRACK] = ACTIONS(3044), + [anon_sym_chan] = ACTIONS(3044), + [anon_sym_thread] = ACTIONS(3044), + [anon_sym_atomic] = ACTIONS(3044), + [anon_sym_assert] = ACTIONS(3044), + [anon_sym_defer] = ACTIONS(3044), + [anon_sym_goto] = ACTIONS(3044), + [anon_sym_break] = ACTIONS(3044), + [anon_sym_continue] = ACTIONS(3044), + [anon_sym_return] = ACTIONS(3044), + [anon_sym_DOLLARfor] = ACTIONS(3044), + [anon_sym_for] = ACTIONS(3044), + [anon_sym_POUND] = ACTIONS(3044), + [anon_sym_asm] = ACTIONS(3044), + [anon_sym_AT_LBRACK] = ACTIONS(3044), + [sym___double_quote] = ACTIONS(3044), + [sym___single_quote] = ACTIONS(3044), + [sym___c_double_quote] = ACTIONS(3044), + [sym___c_single_quote] = ACTIONS(3044), + [sym___r_double_quote] = ACTIONS(3044), + [sym___r_single_quote] = ACTIONS(3044), + }, [1083] = { [sym_line_comment] = STATE(1083), [sym_block_comment] = STATE(1083), - [ts_builtin_sym_end] = ACTIONS(2800), - [sym_identifier] = ACTIONS(2802), - [anon_sym_LF] = ACTIONS(2802), - [anon_sym_CR] = ACTIONS(2802), - [anon_sym_CR_LF] = ACTIONS(2802), + [ts_builtin_sym_end] = ACTIONS(2227), + [sym_identifier] = ACTIONS(2229), + [anon_sym_LF] = ACTIONS(2229), + [anon_sym_CR] = ACTIONS(2229), + [anon_sym_CR_LF] = ACTIONS(2229), [anon_sym_SLASH_SLASH] = ACTIONS(497), [anon_sym_SLASH_STAR] = ACTIONS(499), - [anon_sym_DOT] = ACTIONS(2802), - [anon_sym_as] = ACTIONS(2802), - [anon_sym_LBRACE] = ACTIONS(2802), - [anon_sym_COMMA] = ACTIONS(2802), - [anon_sym_const] = ACTIONS(2802), - [anon_sym_LPAREN] = ACTIONS(2802), - [anon_sym___global] = ACTIONS(2802), - [anon_sym_type] = ACTIONS(2802), - [anon_sym_PIPE] = ACTIONS(2802), - [anon_sym_fn] = ACTIONS(2802), - [anon_sym_PLUS] = ACTIONS(2802), - [anon_sym_DASH] = ACTIONS(2802), - [anon_sym_STAR] = ACTIONS(2802), - [anon_sym_SLASH] = ACTIONS(2802), - [anon_sym_PERCENT] = ACTIONS(2802), - [anon_sym_LT] = ACTIONS(2802), - [anon_sym_GT] = ACTIONS(2802), - [anon_sym_EQ_EQ] = ACTIONS(2802), - [anon_sym_BANG_EQ] = ACTIONS(2802), - [anon_sym_LT_EQ] = ACTIONS(2802), - [anon_sym_GT_EQ] = ACTIONS(2802), - [anon_sym_LBRACK] = ACTIONS(2800), - [anon_sym_struct] = ACTIONS(2802), - [anon_sym_union] = ACTIONS(2802), - [anon_sym_pub] = ACTIONS(2802), - [anon_sym_mut] = ACTIONS(2802), - [anon_sym_enum] = ACTIONS(2802), - [anon_sym_interface] = ACTIONS(2802), - [anon_sym_PLUS_PLUS] = ACTIONS(2802), - [anon_sym_DASH_DASH] = ACTIONS(2802), - [anon_sym_QMARK] = ACTIONS(2802), - [anon_sym_BANG] = ACTIONS(2802), - [anon_sym_go] = ACTIONS(2802), - [anon_sym_spawn] = ACTIONS(2802), - [anon_sym_json_DOTdecode] = ACTIONS(2802), - [anon_sym_LBRACK2] = ACTIONS(2802), - [anon_sym_TILDE] = ACTIONS(2802), - [anon_sym_CARET] = ACTIONS(2802), - [anon_sym_AMP] = ACTIONS(2802), - [anon_sym_LT_DASH] = ACTIONS(2802), - [anon_sym_LT_LT] = ACTIONS(2802), - [anon_sym_GT_GT] = ACTIONS(2802), - [anon_sym_GT_GT_GT] = ACTIONS(2802), - [anon_sym_AMP_CARET] = ACTIONS(2802), - [anon_sym_AMP_AMP] = ACTIONS(2802), + [anon_sym_DOT] = ACTIONS(2229), + [anon_sym_as] = ACTIONS(2229), + [anon_sym_LBRACE] = ACTIONS(2229), + [anon_sym_COMMA] = ACTIONS(2229), + [anon_sym_const] = ACTIONS(2229), + [anon_sym_LPAREN] = ACTIONS(2229), + [anon_sym___global] = ACTIONS(2229), + [anon_sym_type] = ACTIONS(2229), + [anon_sym_PIPE] = ACTIONS(2229), + [anon_sym_fn] = ACTIONS(2229), + [anon_sym_PLUS] = ACTIONS(2229), + [anon_sym_DASH] = ACTIONS(2229), + [anon_sym_STAR] = ACTIONS(2229), + [anon_sym_SLASH] = ACTIONS(2229), + [anon_sym_PERCENT] = ACTIONS(2229), + [anon_sym_LT] = ACTIONS(2229), + [anon_sym_GT] = ACTIONS(2229), + [anon_sym_EQ_EQ] = ACTIONS(2229), + [anon_sym_BANG_EQ] = ACTIONS(2229), + [anon_sym_LT_EQ] = ACTIONS(2229), + [anon_sym_GT_EQ] = ACTIONS(2229), + [anon_sym_LBRACK] = ACTIONS(2227), + [anon_sym_struct] = ACTIONS(2229), + [anon_sym_union] = ACTIONS(2229), + [anon_sym_pub] = ACTIONS(2229), + [anon_sym_mut] = ACTIONS(2229), + [anon_sym_enum] = ACTIONS(2229), + [anon_sym_interface] = ACTIONS(2229), + [anon_sym_PLUS_PLUS] = ACTIONS(2229), + [anon_sym_DASH_DASH] = ACTIONS(2229), + [anon_sym_QMARK] = ACTIONS(2229), + [anon_sym_BANG] = ACTIONS(2229), + [anon_sym_go] = ACTIONS(2229), + [anon_sym_spawn] = ACTIONS(2229), + [anon_sym_json_DOTdecode] = ACTIONS(2229), + [anon_sym_LBRACK2] = ACTIONS(2229), + [anon_sym_TILDE] = ACTIONS(2229), + [anon_sym_CARET] = ACTIONS(2229), + [anon_sym_AMP] = ACTIONS(2229), + [anon_sym_LT_DASH] = ACTIONS(2229), + [anon_sym_LT_LT] = ACTIONS(2229), + [anon_sym_GT_GT] = ACTIONS(2229), + [anon_sym_GT_GT_GT] = ACTIONS(2229), + [anon_sym_AMP_CARET] = ACTIONS(2229), + [anon_sym_AMP_AMP] = ACTIONS(2229), + [anon_sym_PIPE_PIPE] = ACTIONS(2229), + [anon_sym_or] = ACTIONS(2229), + [sym_none] = ACTIONS(2229), + [sym_true] = ACTIONS(2229), + [sym_false] = ACTIONS(2229), + [sym_nil] = ACTIONS(2229), + [anon_sym_QMARK_DOT] = ACTIONS(2229), + [anon_sym_POUND_LBRACK] = ACTIONS(2229), + [anon_sym_if] = ACTIONS(2229), + [anon_sym_DOLLARif] = ACTIONS(2229), + [anon_sym_is] = ACTIONS(2229), + [anon_sym_BANGis] = ACTIONS(2229), + [anon_sym_in] = ACTIONS(2229), + [anon_sym_BANGin] = ACTIONS(2229), + [anon_sym_match] = ACTIONS(2229), + [anon_sym_select] = ACTIONS(2229), + [anon_sym_lock] = ACTIONS(2229), + [anon_sym_rlock] = ACTIONS(2229), + [anon_sym_unsafe] = ACTIONS(2229), + [anon_sym_sql] = ACTIONS(2229), + [sym_int_literal] = ACTIONS(2229), + [sym_float_literal] = ACTIONS(2229), + [sym_rune_literal] = ACTIONS(2229), + [sym_pseudo_compile_time_identifier] = ACTIONS(2229), + [anon_sym_shared] = ACTIONS(2229), + [anon_sym_map_LBRACK] = ACTIONS(2229), + [anon_sym_chan] = ACTIONS(2229), + [anon_sym_thread] = ACTIONS(2229), + [anon_sym_atomic] = ACTIONS(2229), + [anon_sym_assert] = ACTIONS(2229), + [anon_sym_defer] = ACTIONS(2229), + [anon_sym_goto] = ACTIONS(2229), + [anon_sym_break] = ACTIONS(2229), + [anon_sym_continue] = ACTIONS(2229), + [anon_sym_return] = ACTIONS(2229), + [anon_sym_DOLLARfor] = ACTIONS(2229), + [anon_sym_for] = ACTIONS(2229), + [anon_sym_POUND] = ACTIONS(2229), + [anon_sym_asm] = ACTIONS(2229), + [anon_sym_AT_LBRACK] = ACTIONS(2229), + [sym___double_quote] = ACTIONS(2229), + [sym___single_quote] = ACTIONS(2229), + [sym___c_double_quote] = ACTIONS(2229), + [sym___c_single_quote] = ACTIONS(2229), + [sym___r_double_quote] = ACTIONS(2229), + [sym___r_single_quote] = ACTIONS(2229), + }, + [1084] = { + [sym_line_comment] = STATE(1084), + [sym_block_comment] = STATE(1084), + [ts_builtin_sym_end] = ACTIONS(2738), + [sym_identifier] = ACTIONS(2740), + [anon_sym_LF] = ACTIONS(2740), + [anon_sym_CR] = ACTIONS(2740), + [anon_sym_CR_LF] = ACTIONS(2740), + [anon_sym_SLASH_SLASH] = ACTIONS(497), + [anon_sym_SLASH_STAR] = ACTIONS(499), + [anon_sym_DOT] = ACTIONS(2740), + [anon_sym_as] = ACTIONS(2740), + [anon_sym_LBRACE] = ACTIONS(2740), + [anon_sym_COMMA] = ACTIONS(2740), + [anon_sym_const] = ACTIONS(2740), + [anon_sym_LPAREN] = ACTIONS(2740), + [anon_sym___global] = ACTIONS(2740), + [anon_sym_type] = ACTIONS(2740), + [anon_sym_PIPE] = ACTIONS(2740), + [anon_sym_fn] = ACTIONS(2740), + [anon_sym_PLUS] = ACTIONS(2740), + [anon_sym_DASH] = ACTIONS(2740), + [anon_sym_STAR] = ACTIONS(2740), + [anon_sym_SLASH] = ACTIONS(2740), + [anon_sym_PERCENT] = ACTIONS(2740), + [anon_sym_LT] = ACTIONS(2740), + [anon_sym_GT] = ACTIONS(2740), + [anon_sym_EQ_EQ] = ACTIONS(2740), + [anon_sym_BANG_EQ] = ACTIONS(2740), + [anon_sym_LT_EQ] = ACTIONS(2740), + [anon_sym_GT_EQ] = ACTIONS(2740), + [anon_sym_LBRACK] = ACTIONS(2738), + [anon_sym_struct] = ACTIONS(2740), + [anon_sym_union] = ACTIONS(2740), + [anon_sym_pub] = ACTIONS(2740), + [anon_sym_mut] = ACTIONS(2740), + [anon_sym_enum] = ACTIONS(2740), + [anon_sym_interface] = ACTIONS(2740), + [anon_sym_PLUS_PLUS] = ACTIONS(2740), + [anon_sym_DASH_DASH] = ACTIONS(2740), + [anon_sym_QMARK] = ACTIONS(2740), + [anon_sym_BANG] = ACTIONS(2740), + [anon_sym_go] = ACTIONS(2740), + [anon_sym_spawn] = ACTIONS(2740), + [anon_sym_json_DOTdecode] = ACTIONS(2740), + [anon_sym_LBRACK2] = ACTIONS(2740), + [anon_sym_TILDE] = ACTIONS(2740), + [anon_sym_CARET] = ACTIONS(2740), + [anon_sym_AMP] = ACTIONS(2740), + [anon_sym_LT_DASH] = ACTIONS(2740), + [anon_sym_LT_LT] = ACTIONS(2740), + [anon_sym_GT_GT] = ACTIONS(2740), + [anon_sym_GT_GT_GT] = ACTIONS(2740), + [anon_sym_AMP_CARET] = ACTIONS(2740), + [anon_sym_AMP_AMP] = ACTIONS(2740), + [anon_sym_PIPE_PIPE] = ACTIONS(2740), + [anon_sym_or] = ACTIONS(2740), + [sym_none] = ACTIONS(2740), + [sym_true] = ACTIONS(2740), + [sym_false] = ACTIONS(2740), + [sym_nil] = ACTIONS(2740), + [anon_sym_QMARK_DOT] = ACTIONS(2740), + [anon_sym_POUND_LBRACK] = ACTIONS(2740), + [anon_sym_if] = ACTIONS(2740), + [anon_sym_DOLLARif] = ACTIONS(2740), + [anon_sym_is] = ACTIONS(2740), + [anon_sym_BANGis] = ACTIONS(2740), + [anon_sym_in] = ACTIONS(2740), + [anon_sym_BANGin] = ACTIONS(2740), + [anon_sym_match] = ACTIONS(2740), + [anon_sym_select] = ACTIONS(2740), + [anon_sym_lock] = ACTIONS(2740), + [anon_sym_rlock] = ACTIONS(2740), + [anon_sym_unsafe] = ACTIONS(2740), + [anon_sym_sql] = ACTIONS(2740), + [sym_int_literal] = ACTIONS(2740), + [sym_float_literal] = ACTIONS(2740), + [sym_rune_literal] = ACTIONS(2740), + [sym_pseudo_compile_time_identifier] = ACTIONS(2740), + [anon_sym_shared] = ACTIONS(2740), + [anon_sym_map_LBRACK] = ACTIONS(2740), + [anon_sym_chan] = ACTIONS(2740), + [anon_sym_thread] = ACTIONS(2740), + [anon_sym_atomic] = ACTIONS(2740), + [anon_sym_assert] = ACTIONS(2740), + [anon_sym_defer] = ACTIONS(2740), + [anon_sym_goto] = ACTIONS(2740), + [anon_sym_break] = ACTIONS(2740), + [anon_sym_continue] = ACTIONS(2740), + [anon_sym_return] = ACTIONS(2740), + [anon_sym_DOLLARfor] = ACTIONS(2740), + [anon_sym_for] = ACTIONS(2740), + [anon_sym_POUND] = ACTIONS(2740), + [anon_sym_asm] = ACTIONS(2740), + [anon_sym_AT_LBRACK] = ACTIONS(2740), + [sym___double_quote] = ACTIONS(2740), + [sym___single_quote] = ACTIONS(2740), + [sym___c_double_quote] = ACTIONS(2740), + [sym___c_single_quote] = ACTIONS(2740), + [sym___r_double_quote] = ACTIONS(2740), + [sym___r_single_quote] = ACTIONS(2740), + }, + [1085] = { + [sym_line_comment] = STATE(1085), + [sym_block_comment] = STATE(1085), + [ts_builtin_sym_end] = ACTIONS(2844), + [sym_identifier] = ACTIONS(2846), + [anon_sym_LF] = ACTIONS(2846), + [anon_sym_CR] = ACTIONS(2846), + [anon_sym_CR_LF] = ACTIONS(2846), + [anon_sym_SLASH_SLASH] = ACTIONS(497), + [anon_sym_SLASH_STAR] = ACTIONS(499), + [anon_sym_DOT] = ACTIONS(2846), + [anon_sym_as] = ACTIONS(2846), + [anon_sym_LBRACE] = ACTIONS(2846), + [anon_sym_COMMA] = ACTIONS(2846), + [anon_sym_const] = ACTIONS(2846), + [anon_sym_LPAREN] = ACTIONS(2846), + [anon_sym___global] = ACTIONS(2846), + [anon_sym_type] = ACTIONS(2846), + [anon_sym_PIPE] = ACTIONS(2846), + [anon_sym_fn] = ACTIONS(2846), + [anon_sym_PLUS] = ACTIONS(2846), + [anon_sym_DASH] = ACTIONS(2846), + [anon_sym_STAR] = ACTIONS(2846), + [anon_sym_SLASH] = ACTIONS(2846), + [anon_sym_PERCENT] = ACTIONS(2846), + [anon_sym_LT] = ACTIONS(2846), + [anon_sym_GT] = ACTIONS(2846), + [anon_sym_EQ_EQ] = ACTIONS(2846), + [anon_sym_BANG_EQ] = ACTIONS(2846), + [anon_sym_LT_EQ] = ACTIONS(2846), + [anon_sym_GT_EQ] = ACTIONS(2846), + [anon_sym_LBRACK] = ACTIONS(2844), + [anon_sym_struct] = ACTIONS(2846), + [anon_sym_union] = ACTIONS(2846), + [anon_sym_pub] = ACTIONS(2846), + [anon_sym_mut] = ACTIONS(2846), + [anon_sym_enum] = ACTIONS(2846), + [anon_sym_interface] = ACTIONS(2846), + [anon_sym_PLUS_PLUS] = ACTIONS(2846), + [anon_sym_DASH_DASH] = ACTIONS(2846), + [anon_sym_QMARK] = ACTIONS(2846), + [anon_sym_BANG] = ACTIONS(2846), + [anon_sym_go] = ACTIONS(2846), + [anon_sym_spawn] = ACTIONS(2846), + [anon_sym_json_DOTdecode] = ACTIONS(2846), + [anon_sym_LBRACK2] = ACTIONS(2846), + [anon_sym_TILDE] = ACTIONS(2846), + [anon_sym_CARET] = ACTIONS(2846), + [anon_sym_AMP] = ACTIONS(2846), + [anon_sym_LT_DASH] = ACTIONS(2846), + [anon_sym_LT_LT] = ACTIONS(2846), + [anon_sym_GT_GT] = ACTIONS(2846), + [anon_sym_GT_GT_GT] = ACTIONS(2846), + [anon_sym_AMP_CARET] = ACTIONS(2846), + [anon_sym_AMP_AMP] = ACTIONS(2846), + [anon_sym_PIPE_PIPE] = ACTIONS(2846), + [anon_sym_or] = ACTIONS(2846), + [sym_none] = ACTIONS(2846), + [sym_true] = ACTIONS(2846), + [sym_false] = ACTIONS(2846), + [sym_nil] = ACTIONS(2846), + [anon_sym_QMARK_DOT] = ACTIONS(2846), + [anon_sym_POUND_LBRACK] = ACTIONS(2846), + [anon_sym_if] = ACTIONS(2846), + [anon_sym_DOLLARif] = ACTIONS(2846), + [anon_sym_is] = ACTIONS(2846), + [anon_sym_BANGis] = ACTIONS(2846), + [anon_sym_in] = ACTIONS(2846), + [anon_sym_BANGin] = ACTIONS(2846), + [anon_sym_match] = ACTIONS(2846), + [anon_sym_select] = ACTIONS(2846), + [anon_sym_lock] = ACTIONS(2846), + [anon_sym_rlock] = ACTIONS(2846), + [anon_sym_unsafe] = ACTIONS(2846), + [anon_sym_sql] = ACTIONS(2846), + [sym_int_literal] = ACTIONS(2846), + [sym_float_literal] = ACTIONS(2846), + [sym_rune_literal] = ACTIONS(2846), + [sym_pseudo_compile_time_identifier] = ACTIONS(2846), + [anon_sym_shared] = ACTIONS(2846), + [anon_sym_map_LBRACK] = ACTIONS(2846), + [anon_sym_chan] = ACTIONS(2846), + [anon_sym_thread] = ACTIONS(2846), + [anon_sym_atomic] = ACTIONS(2846), + [anon_sym_assert] = ACTIONS(2846), + [anon_sym_defer] = ACTIONS(2846), + [anon_sym_goto] = ACTIONS(2846), + [anon_sym_break] = ACTIONS(2846), + [anon_sym_continue] = ACTIONS(2846), + [anon_sym_return] = ACTIONS(2846), + [anon_sym_DOLLARfor] = ACTIONS(2846), + [anon_sym_for] = ACTIONS(2846), + [anon_sym_POUND] = ACTIONS(2846), + [anon_sym_asm] = ACTIONS(2846), + [anon_sym_AT_LBRACK] = ACTIONS(2846), + [sym___double_quote] = ACTIONS(2846), + [sym___single_quote] = ACTIONS(2846), + [sym___c_double_quote] = ACTIONS(2846), + [sym___c_single_quote] = ACTIONS(2846), + [sym___r_double_quote] = ACTIONS(2846), + [sym___r_single_quote] = ACTIONS(2846), + }, + [1086] = { + [sym_line_comment] = STATE(1086), + [sym_block_comment] = STATE(1086), + [ts_builtin_sym_end] = ACTIONS(2530), + [sym_identifier] = ACTIONS(2532), + [anon_sym_LF] = ACTIONS(2532), + [anon_sym_CR] = ACTIONS(2532), + [anon_sym_CR_LF] = ACTIONS(2532), + [anon_sym_SLASH_SLASH] = ACTIONS(497), + [anon_sym_SLASH_STAR] = ACTIONS(499), + [anon_sym_DOT] = ACTIONS(2532), + [anon_sym_as] = ACTIONS(2532), + [anon_sym_LBRACE] = ACTIONS(2532), + [anon_sym_COMMA] = ACTIONS(2532), + [anon_sym_const] = ACTIONS(2532), + [anon_sym_LPAREN] = ACTIONS(2532), + [anon_sym___global] = ACTIONS(2532), + [anon_sym_type] = ACTIONS(2532), + [anon_sym_PIPE] = ACTIONS(2532), + [anon_sym_fn] = ACTIONS(2532), + [anon_sym_PLUS] = ACTIONS(2532), + [anon_sym_DASH] = ACTIONS(2532), + [anon_sym_STAR] = ACTIONS(2532), + [anon_sym_SLASH] = ACTIONS(2532), + [anon_sym_PERCENT] = ACTIONS(2532), + [anon_sym_LT] = ACTIONS(2532), + [anon_sym_GT] = ACTIONS(2532), + [anon_sym_EQ_EQ] = ACTIONS(2532), + [anon_sym_BANG_EQ] = ACTIONS(2532), + [anon_sym_LT_EQ] = ACTIONS(2532), + [anon_sym_GT_EQ] = ACTIONS(2532), + [anon_sym_LBRACK] = ACTIONS(2530), + [anon_sym_struct] = ACTIONS(2532), + [anon_sym_union] = ACTIONS(2532), + [anon_sym_pub] = ACTIONS(2532), + [anon_sym_mut] = ACTIONS(2532), + [anon_sym_enum] = ACTIONS(2532), + [anon_sym_interface] = ACTIONS(2532), + [anon_sym_PLUS_PLUS] = ACTIONS(2532), + [anon_sym_DASH_DASH] = ACTIONS(2532), + [anon_sym_QMARK] = ACTIONS(2532), + [anon_sym_BANG] = ACTIONS(2532), + [anon_sym_go] = ACTIONS(2532), + [anon_sym_spawn] = ACTIONS(2532), + [anon_sym_json_DOTdecode] = ACTIONS(2532), + [anon_sym_LBRACK2] = ACTIONS(2532), + [anon_sym_TILDE] = ACTIONS(2532), + [anon_sym_CARET] = ACTIONS(2532), + [anon_sym_AMP] = ACTIONS(2532), + [anon_sym_LT_DASH] = ACTIONS(2532), + [anon_sym_LT_LT] = ACTIONS(2532), + [anon_sym_GT_GT] = ACTIONS(2532), + [anon_sym_GT_GT_GT] = ACTIONS(2532), + [anon_sym_AMP_CARET] = ACTIONS(2532), + [anon_sym_AMP_AMP] = ACTIONS(2532), + [anon_sym_PIPE_PIPE] = ACTIONS(2532), + [anon_sym_or] = ACTIONS(2532), + [sym_none] = ACTIONS(2532), + [sym_true] = ACTIONS(2532), + [sym_false] = ACTIONS(2532), + [sym_nil] = ACTIONS(2532), + [anon_sym_QMARK_DOT] = ACTIONS(2532), + [anon_sym_POUND_LBRACK] = ACTIONS(2532), + [anon_sym_if] = ACTIONS(2532), + [anon_sym_DOLLARif] = ACTIONS(2532), + [anon_sym_is] = ACTIONS(2532), + [anon_sym_BANGis] = ACTIONS(2532), + [anon_sym_in] = ACTIONS(2532), + [anon_sym_BANGin] = ACTIONS(2532), + [anon_sym_match] = ACTIONS(2532), + [anon_sym_select] = ACTIONS(2532), + [anon_sym_lock] = ACTIONS(2532), + [anon_sym_rlock] = ACTIONS(2532), + [anon_sym_unsafe] = ACTIONS(2532), + [anon_sym_sql] = ACTIONS(2532), + [sym_int_literal] = ACTIONS(2532), + [sym_float_literal] = ACTIONS(2532), + [sym_rune_literal] = ACTIONS(2532), + [sym_pseudo_compile_time_identifier] = ACTIONS(2532), + [anon_sym_shared] = ACTIONS(2532), + [anon_sym_map_LBRACK] = ACTIONS(2532), + [anon_sym_chan] = ACTIONS(2532), + [anon_sym_thread] = ACTIONS(2532), + [anon_sym_atomic] = ACTIONS(2532), + [anon_sym_assert] = ACTIONS(2532), + [anon_sym_defer] = ACTIONS(2532), + [anon_sym_goto] = ACTIONS(2532), + [anon_sym_break] = ACTIONS(2532), + [anon_sym_continue] = ACTIONS(2532), + [anon_sym_return] = ACTIONS(2532), + [anon_sym_DOLLARfor] = ACTIONS(2532), + [anon_sym_for] = ACTIONS(2532), + [anon_sym_POUND] = ACTIONS(2532), + [anon_sym_asm] = ACTIONS(2532), + [anon_sym_AT_LBRACK] = ACTIONS(2532), + [sym___double_quote] = ACTIONS(2532), + [sym___single_quote] = ACTIONS(2532), + [sym___c_double_quote] = ACTIONS(2532), + [sym___c_single_quote] = ACTIONS(2532), + [sym___r_double_quote] = ACTIONS(2532), + [sym___r_single_quote] = ACTIONS(2532), + }, + [1087] = { + [sym_line_comment] = STATE(1087), + [sym_block_comment] = STATE(1087), + [ts_builtin_sym_end] = ACTIONS(2231), + [sym_identifier] = ACTIONS(2233), + [anon_sym_LF] = ACTIONS(2233), + [anon_sym_CR] = ACTIONS(2233), + [anon_sym_CR_LF] = ACTIONS(2233), + [anon_sym_SLASH_SLASH] = ACTIONS(497), + [anon_sym_SLASH_STAR] = ACTIONS(499), + [anon_sym_DOT] = ACTIONS(2233), + [anon_sym_as] = ACTIONS(2233), + [anon_sym_LBRACE] = ACTIONS(2233), + [anon_sym_COMMA] = ACTIONS(2233), + [anon_sym_const] = ACTIONS(2233), + [anon_sym_LPAREN] = ACTIONS(2233), + [anon_sym___global] = ACTIONS(2233), + [anon_sym_type] = ACTIONS(2233), + [anon_sym_PIPE] = ACTIONS(2233), + [anon_sym_fn] = ACTIONS(2233), + [anon_sym_PLUS] = ACTIONS(2233), + [anon_sym_DASH] = ACTIONS(2233), + [anon_sym_STAR] = ACTIONS(2233), + [anon_sym_SLASH] = ACTIONS(2233), + [anon_sym_PERCENT] = ACTIONS(2233), + [anon_sym_LT] = ACTIONS(2233), + [anon_sym_GT] = ACTIONS(2233), + [anon_sym_EQ_EQ] = ACTIONS(2233), + [anon_sym_BANG_EQ] = ACTIONS(2233), + [anon_sym_LT_EQ] = ACTIONS(2233), + [anon_sym_GT_EQ] = ACTIONS(2233), + [anon_sym_LBRACK] = ACTIONS(2231), + [anon_sym_struct] = ACTIONS(2233), + [anon_sym_union] = ACTIONS(2233), + [anon_sym_pub] = ACTIONS(2233), + [anon_sym_mut] = ACTIONS(2233), + [anon_sym_enum] = ACTIONS(2233), + [anon_sym_interface] = ACTIONS(2233), + [anon_sym_PLUS_PLUS] = ACTIONS(2233), + [anon_sym_DASH_DASH] = ACTIONS(2233), + [anon_sym_QMARK] = ACTIONS(2233), + [anon_sym_BANG] = ACTIONS(2233), + [anon_sym_go] = ACTIONS(2233), + [anon_sym_spawn] = ACTIONS(2233), + [anon_sym_json_DOTdecode] = ACTIONS(2233), + [anon_sym_LBRACK2] = ACTIONS(2233), + [anon_sym_TILDE] = ACTIONS(2233), + [anon_sym_CARET] = ACTIONS(2233), + [anon_sym_AMP] = ACTIONS(2233), + [anon_sym_LT_DASH] = ACTIONS(2233), + [anon_sym_LT_LT] = ACTIONS(2233), + [anon_sym_GT_GT] = ACTIONS(2233), + [anon_sym_GT_GT_GT] = ACTIONS(2233), + [anon_sym_AMP_CARET] = ACTIONS(2233), + [anon_sym_AMP_AMP] = ACTIONS(2233), + [anon_sym_PIPE_PIPE] = ACTIONS(2233), + [anon_sym_or] = ACTIONS(2233), + [sym_none] = ACTIONS(2233), + [sym_true] = ACTIONS(2233), + [sym_false] = ACTIONS(2233), + [sym_nil] = ACTIONS(2233), + [anon_sym_QMARK_DOT] = ACTIONS(2233), + [anon_sym_POUND_LBRACK] = ACTIONS(2233), + [anon_sym_if] = ACTIONS(2233), + [anon_sym_DOLLARif] = ACTIONS(2233), + [anon_sym_is] = ACTIONS(2233), + [anon_sym_BANGis] = ACTIONS(2233), + [anon_sym_in] = ACTIONS(2233), + [anon_sym_BANGin] = ACTIONS(2233), + [anon_sym_match] = ACTIONS(2233), + [anon_sym_select] = ACTIONS(2233), + [anon_sym_lock] = ACTIONS(2233), + [anon_sym_rlock] = ACTIONS(2233), + [anon_sym_unsafe] = ACTIONS(2233), + [anon_sym_sql] = ACTIONS(2233), + [sym_int_literal] = ACTIONS(2233), + [sym_float_literal] = ACTIONS(2233), + [sym_rune_literal] = ACTIONS(2233), + [sym_pseudo_compile_time_identifier] = ACTIONS(2233), + [anon_sym_shared] = ACTIONS(2233), + [anon_sym_map_LBRACK] = ACTIONS(2233), + [anon_sym_chan] = ACTIONS(2233), + [anon_sym_thread] = ACTIONS(2233), + [anon_sym_atomic] = ACTIONS(2233), + [anon_sym_assert] = ACTIONS(2233), + [anon_sym_defer] = ACTIONS(2233), + [anon_sym_goto] = ACTIONS(2233), + [anon_sym_break] = ACTIONS(2233), + [anon_sym_continue] = ACTIONS(2233), + [anon_sym_return] = ACTIONS(2233), + [anon_sym_DOLLARfor] = ACTIONS(2233), + [anon_sym_for] = ACTIONS(2233), + [anon_sym_POUND] = ACTIONS(2233), + [anon_sym_asm] = ACTIONS(2233), + [anon_sym_AT_LBRACK] = ACTIONS(2233), + [sym___double_quote] = ACTIONS(2233), + [sym___single_quote] = ACTIONS(2233), + [sym___c_double_quote] = ACTIONS(2233), + [sym___c_single_quote] = ACTIONS(2233), + [sym___r_double_quote] = ACTIONS(2233), + [sym___r_single_quote] = ACTIONS(2233), + }, + [1088] = { + [sym_line_comment] = STATE(1088), + [sym_block_comment] = STATE(1088), + [ts_builtin_sym_end] = ACTIONS(2511), + [sym_identifier] = ACTIONS(2513), + [anon_sym_LF] = ACTIONS(2513), + [anon_sym_CR] = ACTIONS(2513), + [anon_sym_CR_LF] = ACTIONS(2513), + [anon_sym_SLASH_SLASH] = ACTIONS(497), + [anon_sym_SLASH_STAR] = ACTIONS(499), + [anon_sym_DOT] = ACTIONS(2513), + [anon_sym_as] = ACTIONS(2513), + [anon_sym_LBRACE] = ACTIONS(2513), + [anon_sym_COMMA] = ACTIONS(2513), + [anon_sym_const] = ACTIONS(2513), + [anon_sym_LPAREN] = ACTIONS(2513), + [anon_sym___global] = ACTIONS(2513), + [anon_sym_type] = ACTIONS(2513), + [anon_sym_PIPE] = ACTIONS(2513), + [anon_sym_fn] = ACTIONS(2513), + [anon_sym_PLUS] = ACTIONS(2513), + [anon_sym_DASH] = ACTIONS(2513), + [anon_sym_STAR] = ACTIONS(2513), + [anon_sym_SLASH] = ACTIONS(2513), + [anon_sym_PERCENT] = ACTIONS(2513), + [anon_sym_LT] = ACTIONS(2513), + [anon_sym_GT] = ACTIONS(2513), + [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(2511), + [anon_sym_struct] = ACTIONS(2513), + [anon_sym_union] = ACTIONS(2513), + [anon_sym_pub] = ACTIONS(2513), + [anon_sym_mut] = ACTIONS(2513), + [anon_sym_enum] = ACTIONS(2513), + [anon_sym_interface] = ACTIONS(2513), + [anon_sym_PLUS_PLUS] = ACTIONS(2513), + [anon_sym_DASH_DASH] = ACTIONS(2513), + [anon_sym_QMARK] = ACTIONS(2513), + [anon_sym_BANG] = ACTIONS(2513), + [anon_sym_go] = ACTIONS(2513), + [anon_sym_spawn] = ACTIONS(2513), + [anon_sym_json_DOTdecode] = ACTIONS(2513), + [anon_sym_LBRACK2] = ACTIONS(2513), + [anon_sym_TILDE] = ACTIONS(2513), + [anon_sym_CARET] = ACTIONS(2513), + [anon_sym_AMP] = ACTIONS(2513), + [anon_sym_LT_DASH] = ACTIONS(2513), + [anon_sym_LT_LT] = ACTIONS(2513), + [anon_sym_GT_GT] = ACTIONS(2513), + [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(2513), + [sym_none] = ACTIONS(2513), + [sym_true] = ACTIONS(2513), + [sym_false] = ACTIONS(2513), + [sym_nil] = ACTIONS(2513), + [anon_sym_QMARK_DOT] = ACTIONS(2513), + [anon_sym_POUND_LBRACK] = ACTIONS(2513), + [anon_sym_if] = ACTIONS(2513), + [anon_sym_DOLLARif] = ACTIONS(2513), + [anon_sym_is] = ACTIONS(2513), + [anon_sym_BANGis] = ACTIONS(2513), + [anon_sym_in] = ACTIONS(2513), + [anon_sym_BANGin] = ACTIONS(2513), + [anon_sym_match] = ACTIONS(2513), + [anon_sym_select] = ACTIONS(2513), + [anon_sym_lock] = ACTIONS(2513), + [anon_sym_rlock] = ACTIONS(2513), + [anon_sym_unsafe] = ACTIONS(2513), + [anon_sym_sql] = ACTIONS(2513), + [sym_int_literal] = ACTIONS(2513), + [sym_float_literal] = ACTIONS(2513), + [sym_rune_literal] = ACTIONS(2513), + [sym_pseudo_compile_time_identifier] = ACTIONS(2513), + [anon_sym_shared] = ACTIONS(2513), + [anon_sym_map_LBRACK] = ACTIONS(2513), + [anon_sym_chan] = ACTIONS(2513), + [anon_sym_thread] = ACTIONS(2513), + [anon_sym_atomic] = ACTIONS(2513), + [anon_sym_assert] = ACTIONS(2513), + [anon_sym_defer] = ACTIONS(2513), + [anon_sym_goto] = ACTIONS(2513), + [anon_sym_break] = ACTIONS(2513), + [anon_sym_continue] = ACTIONS(2513), + [anon_sym_return] = ACTIONS(2513), + [anon_sym_DOLLARfor] = ACTIONS(2513), + [anon_sym_for] = ACTIONS(2513), + [anon_sym_POUND] = ACTIONS(2513), + [anon_sym_asm] = ACTIONS(2513), + [anon_sym_AT_LBRACK] = ACTIONS(2513), + [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), + }, + [1089] = { + [sym_line_comment] = STATE(1089), + [sym_block_comment] = STATE(1089), + [ts_builtin_sym_end] = ACTIONS(2800), + [sym_identifier] = ACTIONS(2802), + [anon_sym_LF] = ACTIONS(2802), + [anon_sym_CR] = ACTIONS(2802), + [anon_sym_CR_LF] = ACTIONS(2802), + [anon_sym_SLASH_SLASH] = ACTIONS(497), + [anon_sym_SLASH_STAR] = ACTIONS(499), + [anon_sym_DOT] = ACTIONS(2802), + [anon_sym_as] = ACTIONS(2802), + [anon_sym_LBRACE] = ACTIONS(2802), + [anon_sym_COMMA] = ACTIONS(2802), + [anon_sym_const] = ACTIONS(2802), + [anon_sym_LPAREN] = ACTIONS(2802), + [anon_sym___global] = ACTIONS(2802), + [anon_sym_type] = ACTIONS(2802), + [anon_sym_PIPE] = ACTIONS(2802), + [anon_sym_fn] = ACTIONS(2802), + [anon_sym_PLUS] = ACTIONS(2802), + [anon_sym_DASH] = ACTIONS(2802), + [anon_sym_STAR] = ACTIONS(2802), + [anon_sym_SLASH] = ACTIONS(2802), + [anon_sym_PERCENT] = ACTIONS(2802), + [anon_sym_LT] = ACTIONS(2802), + [anon_sym_GT] = ACTIONS(2802), + [anon_sym_EQ_EQ] = ACTIONS(2802), + [anon_sym_BANG_EQ] = ACTIONS(2802), + [anon_sym_LT_EQ] = ACTIONS(2802), + [anon_sym_GT_EQ] = ACTIONS(2802), + [anon_sym_LBRACK] = ACTIONS(2800), + [anon_sym_struct] = ACTIONS(2802), + [anon_sym_union] = ACTIONS(2802), + [anon_sym_pub] = ACTIONS(2802), + [anon_sym_mut] = ACTIONS(2802), + [anon_sym_enum] = ACTIONS(2802), + [anon_sym_interface] = ACTIONS(2802), + [anon_sym_PLUS_PLUS] = ACTIONS(2802), + [anon_sym_DASH_DASH] = ACTIONS(2802), + [anon_sym_QMARK] = ACTIONS(2802), + [anon_sym_BANG] = ACTIONS(2802), + [anon_sym_go] = ACTIONS(2802), + [anon_sym_spawn] = ACTIONS(2802), + [anon_sym_json_DOTdecode] = ACTIONS(2802), + [anon_sym_LBRACK2] = ACTIONS(2802), + [anon_sym_TILDE] = ACTIONS(2802), + [anon_sym_CARET] = ACTIONS(2802), + [anon_sym_AMP] = ACTIONS(2802), + [anon_sym_LT_DASH] = ACTIONS(2802), + [anon_sym_LT_LT] = ACTIONS(2802), + [anon_sym_GT_GT] = ACTIONS(2802), + [anon_sym_GT_GT_GT] = ACTIONS(2802), + [anon_sym_AMP_CARET] = ACTIONS(2802), + [anon_sym_AMP_AMP] = ACTIONS(2802), [anon_sym_PIPE_PIPE] = ACTIONS(2802), [anon_sym_or] = ACTIONS(2802), [sym_none] = ACTIONS(2802), @@ -145886,1487 +146530,977 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym___r_double_quote] = ACTIONS(2802), [sym___r_single_quote] = ACTIONS(2802), }, - [1084] = { - [sym_line_comment] = STATE(1084), - [sym_block_comment] = STATE(1084), - [ts_builtin_sym_end] = ACTIONS(2792), - [sym_identifier] = ACTIONS(2794), - [anon_sym_LF] = ACTIONS(2794), - [anon_sym_CR] = ACTIONS(2794), - [anon_sym_CR_LF] = ACTIONS(2794), - [anon_sym_SLASH_SLASH] = ACTIONS(497), - [anon_sym_SLASH_STAR] = ACTIONS(499), - [anon_sym_DOT] = ACTIONS(2794), - [anon_sym_as] = ACTIONS(2794), - [anon_sym_LBRACE] = ACTIONS(2794), - [anon_sym_COMMA] = ACTIONS(2794), - [anon_sym_const] = ACTIONS(2794), - [anon_sym_LPAREN] = ACTIONS(2794), - [anon_sym___global] = ACTIONS(2794), - [anon_sym_type] = ACTIONS(2794), - [anon_sym_PIPE] = ACTIONS(2794), - [anon_sym_fn] = ACTIONS(2794), - [anon_sym_PLUS] = ACTIONS(2794), - [anon_sym_DASH] = ACTIONS(2794), - [anon_sym_STAR] = ACTIONS(2794), - [anon_sym_SLASH] = ACTIONS(2794), - [anon_sym_PERCENT] = ACTIONS(2794), - [anon_sym_LT] = ACTIONS(2794), - [anon_sym_GT] = ACTIONS(2794), - [anon_sym_EQ_EQ] = ACTIONS(2794), - [anon_sym_BANG_EQ] = ACTIONS(2794), - [anon_sym_LT_EQ] = ACTIONS(2794), - [anon_sym_GT_EQ] = ACTIONS(2794), - [anon_sym_LBRACK] = ACTIONS(2792), - [anon_sym_struct] = ACTIONS(2794), - [anon_sym_union] = ACTIONS(2794), - [anon_sym_pub] = ACTIONS(2794), - [anon_sym_mut] = ACTIONS(2794), - [anon_sym_enum] = ACTIONS(2794), - [anon_sym_interface] = ACTIONS(2794), - [anon_sym_PLUS_PLUS] = ACTIONS(2794), - [anon_sym_DASH_DASH] = ACTIONS(2794), - [anon_sym_QMARK] = ACTIONS(2794), - [anon_sym_BANG] = ACTIONS(2794), - [anon_sym_go] = ACTIONS(2794), - [anon_sym_spawn] = ACTIONS(2794), - [anon_sym_json_DOTdecode] = ACTIONS(2794), - [anon_sym_LBRACK2] = ACTIONS(2794), - [anon_sym_TILDE] = ACTIONS(2794), - [anon_sym_CARET] = ACTIONS(2794), - [anon_sym_AMP] = ACTIONS(2794), - [anon_sym_LT_DASH] = ACTIONS(2794), - [anon_sym_LT_LT] = ACTIONS(2794), - [anon_sym_GT_GT] = ACTIONS(2794), - [anon_sym_GT_GT_GT] = ACTIONS(2794), - [anon_sym_AMP_CARET] = ACTIONS(2794), - [anon_sym_AMP_AMP] = ACTIONS(2794), - [anon_sym_PIPE_PIPE] = ACTIONS(2794), - [anon_sym_or] = ACTIONS(2794), - [sym_none] = ACTIONS(2794), - [sym_true] = ACTIONS(2794), - [sym_false] = ACTIONS(2794), - [sym_nil] = ACTIONS(2794), - [anon_sym_QMARK_DOT] = ACTIONS(2794), - [anon_sym_POUND_LBRACK] = ACTIONS(2794), - [anon_sym_if] = ACTIONS(2794), - [anon_sym_DOLLARif] = ACTIONS(2794), - [anon_sym_is] = ACTIONS(2794), - [anon_sym_BANGis] = ACTIONS(2794), - [anon_sym_in] = ACTIONS(2794), - [anon_sym_BANGin] = ACTIONS(2794), - [anon_sym_match] = ACTIONS(2794), - [anon_sym_select] = ACTIONS(2794), - [anon_sym_lock] = ACTIONS(2794), - [anon_sym_rlock] = ACTIONS(2794), - [anon_sym_unsafe] = ACTIONS(2794), - [anon_sym_sql] = ACTIONS(2794), - [sym_int_literal] = ACTIONS(2794), - [sym_float_literal] = ACTIONS(2794), - [sym_rune_literal] = ACTIONS(2794), - [sym_pseudo_compile_time_identifier] = ACTIONS(2794), - [anon_sym_shared] = ACTIONS(2794), - [anon_sym_map_LBRACK] = ACTIONS(2794), - [anon_sym_chan] = ACTIONS(2794), - [anon_sym_thread] = ACTIONS(2794), - [anon_sym_atomic] = ACTIONS(2794), - [anon_sym_assert] = ACTIONS(2794), - [anon_sym_defer] = ACTIONS(2794), - [anon_sym_goto] = ACTIONS(2794), - [anon_sym_break] = ACTIONS(2794), - [anon_sym_continue] = ACTIONS(2794), - [anon_sym_return] = ACTIONS(2794), - [anon_sym_DOLLARfor] = ACTIONS(2794), - [anon_sym_for] = ACTIONS(2794), - [anon_sym_POUND] = ACTIONS(2794), - [anon_sym_asm] = ACTIONS(2794), - [anon_sym_AT_LBRACK] = ACTIONS(2794), - [sym___double_quote] = ACTIONS(2794), - [sym___single_quote] = ACTIONS(2794), - [sym___c_double_quote] = ACTIONS(2794), - [sym___c_single_quote] = ACTIONS(2794), - [sym___r_double_quote] = ACTIONS(2794), - [sym___r_single_quote] = ACTIONS(2794), - }, - [1085] = { - [sym_line_comment] = STATE(1085), - [sym_block_comment] = STATE(1085), - [ts_builtin_sym_end] = ACTIONS(2733), - [sym_identifier] = ACTIONS(2735), - [anon_sym_LF] = ACTIONS(2735), - [anon_sym_CR] = ACTIONS(2735), - [anon_sym_CR_LF] = ACTIONS(2735), - [anon_sym_SLASH_SLASH] = ACTIONS(497), - [anon_sym_SLASH_STAR] = ACTIONS(499), - [anon_sym_DOT] = ACTIONS(2735), - [anon_sym_as] = ACTIONS(2735), - [anon_sym_LBRACE] = ACTIONS(2735), - [anon_sym_COMMA] = ACTIONS(2735), - [anon_sym_const] = ACTIONS(2735), - [anon_sym_LPAREN] = ACTIONS(2735), - [anon_sym___global] = ACTIONS(2735), - [anon_sym_type] = ACTIONS(2735), - [anon_sym_PIPE] = ACTIONS(2735), - [anon_sym_fn] = ACTIONS(2735), - [anon_sym_PLUS] = ACTIONS(2735), - [anon_sym_DASH] = ACTIONS(2735), - [anon_sym_STAR] = ACTIONS(2735), - [anon_sym_SLASH] = ACTIONS(2735), - [anon_sym_PERCENT] = ACTIONS(2735), - [anon_sym_LT] = ACTIONS(2735), - [anon_sym_GT] = ACTIONS(2735), - [anon_sym_EQ_EQ] = ACTIONS(2735), - [anon_sym_BANG_EQ] = ACTIONS(2735), - [anon_sym_LT_EQ] = ACTIONS(2735), - [anon_sym_GT_EQ] = ACTIONS(2735), - [anon_sym_LBRACK] = ACTIONS(2733), - [anon_sym_struct] = ACTIONS(2735), - [anon_sym_union] = ACTIONS(2735), - [anon_sym_pub] = ACTIONS(2735), - [anon_sym_mut] = ACTIONS(2735), - [anon_sym_enum] = ACTIONS(2735), - [anon_sym_interface] = ACTIONS(2735), - [anon_sym_PLUS_PLUS] = ACTIONS(2735), - [anon_sym_DASH_DASH] = ACTIONS(2735), - [anon_sym_QMARK] = ACTIONS(2735), - [anon_sym_BANG] = ACTIONS(2735), - [anon_sym_go] = ACTIONS(2735), - [anon_sym_spawn] = ACTIONS(2735), - [anon_sym_json_DOTdecode] = ACTIONS(2735), - [anon_sym_LBRACK2] = ACTIONS(2735), - [anon_sym_TILDE] = ACTIONS(2735), - [anon_sym_CARET] = ACTIONS(2735), - [anon_sym_AMP] = ACTIONS(2735), - [anon_sym_LT_DASH] = ACTIONS(2735), - [anon_sym_LT_LT] = ACTIONS(2735), - [anon_sym_GT_GT] = ACTIONS(2735), - [anon_sym_GT_GT_GT] = ACTIONS(2735), - [anon_sym_AMP_CARET] = ACTIONS(2735), - [anon_sym_AMP_AMP] = ACTIONS(2735), - [anon_sym_PIPE_PIPE] = ACTIONS(2735), - [anon_sym_or] = ACTIONS(2735), - [sym_none] = ACTIONS(2735), - [sym_true] = ACTIONS(2735), - [sym_false] = ACTIONS(2735), - [sym_nil] = ACTIONS(2735), - [anon_sym_QMARK_DOT] = ACTIONS(2735), - [anon_sym_POUND_LBRACK] = ACTIONS(2735), - [anon_sym_if] = ACTIONS(2735), - [anon_sym_DOLLARif] = ACTIONS(2735), - [anon_sym_is] = ACTIONS(2735), - [anon_sym_BANGis] = ACTIONS(2735), - [anon_sym_in] = ACTIONS(2735), - [anon_sym_BANGin] = ACTIONS(2735), - [anon_sym_match] = ACTIONS(2735), - [anon_sym_select] = ACTIONS(2735), - [anon_sym_lock] = ACTIONS(2735), - [anon_sym_rlock] = ACTIONS(2735), - [anon_sym_unsafe] = ACTIONS(2735), - [anon_sym_sql] = ACTIONS(2735), - [sym_int_literal] = ACTIONS(2735), - [sym_float_literal] = ACTIONS(2735), - [sym_rune_literal] = ACTIONS(2735), - [sym_pseudo_compile_time_identifier] = ACTIONS(2735), - [anon_sym_shared] = ACTIONS(2735), - [anon_sym_map_LBRACK] = ACTIONS(2735), - [anon_sym_chan] = ACTIONS(2735), - [anon_sym_thread] = ACTIONS(2735), - [anon_sym_atomic] = ACTIONS(2735), - [anon_sym_assert] = ACTIONS(2735), - [anon_sym_defer] = ACTIONS(2735), - [anon_sym_goto] = ACTIONS(2735), - [anon_sym_break] = ACTIONS(2735), - [anon_sym_continue] = ACTIONS(2735), - [anon_sym_return] = ACTIONS(2735), - [anon_sym_DOLLARfor] = ACTIONS(2735), - [anon_sym_for] = ACTIONS(2735), - [anon_sym_POUND] = ACTIONS(2735), - [anon_sym_asm] = ACTIONS(2735), - [anon_sym_AT_LBRACK] = ACTIONS(2735), - [sym___double_quote] = ACTIONS(2735), - [sym___single_quote] = ACTIONS(2735), - [sym___c_double_quote] = ACTIONS(2735), - [sym___c_single_quote] = ACTIONS(2735), - [sym___r_double_quote] = ACTIONS(2735), - [sym___r_single_quote] = ACTIONS(2735), - }, - [1086] = { - [sym_line_comment] = STATE(1086), - [sym_block_comment] = STATE(1086), - [ts_builtin_sym_end] = ACTIONS(2505), - [sym_identifier] = ACTIONS(2507), - [anon_sym_LF] = ACTIONS(2507), - [anon_sym_CR] = ACTIONS(2507), - [anon_sym_CR_LF] = ACTIONS(2507), - [anon_sym_SLASH_SLASH] = ACTIONS(497), - [anon_sym_SLASH_STAR] = ACTIONS(499), - [anon_sym_DOT] = ACTIONS(1853), - [anon_sym_as] = ACTIONS(2507), - [anon_sym_LBRACE] = ACTIONS(2507), - [anon_sym_COMMA] = ACTIONS(2507), - [anon_sym_const] = ACTIONS(2507), - [anon_sym_LPAREN] = ACTIONS(2507), - [anon_sym___global] = ACTIONS(2507), - [anon_sym_type] = ACTIONS(2507), - [anon_sym_PIPE] = ACTIONS(2507), - [anon_sym_fn] = ACTIONS(2507), - [anon_sym_PLUS] = ACTIONS(2507), - [anon_sym_DASH] = ACTIONS(2507), - [anon_sym_STAR] = ACTIONS(2507), - [anon_sym_SLASH] = ACTIONS(2507), - [anon_sym_PERCENT] = ACTIONS(2507), - [anon_sym_LT] = ACTIONS(2507), - [anon_sym_GT] = ACTIONS(2507), - [anon_sym_EQ_EQ] = ACTIONS(2507), - [anon_sym_BANG_EQ] = ACTIONS(2507), - [anon_sym_LT_EQ] = ACTIONS(2507), - [anon_sym_GT_EQ] = ACTIONS(2507), - [anon_sym_LBRACK] = ACTIONS(2505), - [anon_sym_struct] = ACTIONS(2507), - [anon_sym_union] = ACTIONS(2507), - [anon_sym_pub] = ACTIONS(2507), - [anon_sym_mut] = ACTIONS(2507), - [anon_sym_enum] = ACTIONS(2507), - [anon_sym_interface] = ACTIONS(2507), - [anon_sym_PLUS_PLUS] = ACTIONS(2507), - [anon_sym_DASH_DASH] = ACTIONS(2507), - [anon_sym_QMARK] = ACTIONS(2507), - [anon_sym_BANG] = ACTIONS(2507), - [anon_sym_go] = ACTIONS(2507), - [anon_sym_spawn] = ACTIONS(2507), - [anon_sym_json_DOTdecode] = ACTIONS(2507), - [anon_sym_LBRACK2] = ACTIONS(2507), - [anon_sym_TILDE] = ACTIONS(2507), - [anon_sym_CARET] = ACTIONS(2507), - [anon_sym_AMP] = ACTIONS(2507), - [anon_sym_LT_DASH] = ACTIONS(2507), - [anon_sym_LT_LT] = ACTIONS(2507), - [anon_sym_GT_GT] = ACTIONS(2507), - [anon_sym_GT_GT_GT] = ACTIONS(2507), - [anon_sym_AMP_CARET] = ACTIONS(2507), - [anon_sym_AMP_AMP] = ACTIONS(2507), - [anon_sym_PIPE_PIPE] = ACTIONS(2507), - [anon_sym_or] = ACTIONS(2507), - [sym_none] = ACTIONS(2507), - [sym_true] = ACTIONS(2507), - [sym_false] = ACTIONS(2507), - [sym_nil] = ACTIONS(2507), - [anon_sym_QMARK_DOT] = ACTIONS(2507), - [anon_sym_POUND_LBRACK] = ACTIONS(2507), - [anon_sym_if] = ACTIONS(2507), - [anon_sym_DOLLARif] = ACTIONS(2507), - [anon_sym_is] = ACTIONS(2507), - [anon_sym_BANGis] = ACTIONS(2507), - [anon_sym_in] = ACTIONS(2507), - [anon_sym_BANGin] = ACTIONS(2507), - [anon_sym_match] = ACTIONS(2507), - [anon_sym_select] = ACTIONS(2507), - [anon_sym_lock] = ACTIONS(2507), - [anon_sym_rlock] = ACTIONS(2507), - [anon_sym_unsafe] = ACTIONS(2507), - [anon_sym_sql] = ACTIONS(2507), - [sym_int_literal] = ACTIONS(2507), - [sym_float_literal] = ACTIONS(2507), - [sym_rune_literal] = ACTIONS(2507), - [sym_pseudo_compile_time_identifier] = ACTIONS(2507), - [anon_sym_shared] = ACTIONS(2507), - [anon_sym_map_LBRACK] = ACTIONS(2507), - [anon_sym_chan] = ACTIONS(2507), - [anon_sym_thread] = ACTIONS(2507), - [anon_sym_atomic] = ACTIONS(2507), - [anon_sym_assert] = ACTIONS(2507), - [anon_sym_defer] = ACTIONS(2507), - [anon_sym_goto] = ACTIONS(2507), - [anon_sym_break] = ACTIONS(2507), - [anon_sym_continue] = ACTIONS(2507), - [anon_sym_return] = ACTIONS(2507), - [anon_sym_DOLLARfor] = ACTIONS(2507), - [anon_sym_for] = ACTIONS(2507), - [anon_sym_POUND] = ACTIONS(2507), - [anon_sym_asm] = ACTIONS(2507), - [anon_sym_AT_LBRACK] = ACTIONS(2507), - [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), - }, - [1087] = { - [sym_line_comment] = STATE(1087), - [sym_block_comment] = STATE(1087), - [ts_builtin_sym_end] = ACTIONS(2157), - [sym_identifier] = ACTIONS(2159), - [anon_sym_LF] = ACTIONS(2159), - [anon_sym_CR] = ACTIONS(2159), - [anon_sym_CR_LF] = ACTIONS(2159), - [anon_sym_SLASH_SLASH] = ACTIONS(497), - [anon_sym_SLASH_STAR] = ACTIONS(499), - [anon_sym_DOT] = ACTIONS(2159), - [anon_sym_as] = ACTIONS(2159), - [anon_sym_LBRACE] = ACTIONS(2159), - [anon_sym_COMMA] = ACTIONS(2159), - [anon_sym_const] = ACTIONS(2159), - [anon_sym_LPAREN] = ACTIONS(2159), - [anon_sym___global] = ACTIONS(2159), - [anon_sym_type] = ACTIONS(2159), - [anon_sym_PIPE] = ACTIONS(2159), - [anon_sym_fn] = ACTIONS(2159), - [anon_sym_PLUS] = ACTIONS(2159), - [anon_sym_DASH] = ACTIONS(2159), - [anon_sym_STAR] = ACTIONS(2159), - [anon_sym_SLASH] = ACTIONS(2159), - [anon_sym_PERCENT] = ACTIONS(2159), - [anon_sym_LT] = ACTIONS(2159), - [anon_sym_GT] = ACTIONS(2159), - [anon_sym_EQ_EQ] = ACTIONS(2159), - [anon_sym_BANG_EQ] = ACTIONS(2159), - [anon_sym_LT_EQ] = ACTIONS(2159), - [anon_sym_GT_EQ] = ACTIONS(2159), - [anon_sym_LBRACK] = ACTIONS(2157), - [anon_sym_struct] = ACTIONS(2159), - [anon_sym_union] = ACTIONS(2159), - [anon_sym_pub] = ACTIONS(2159), - [anon_sym_mut] = ACTIONS(2159), - [anon_sym_enum] = ACTIONS(2159), - [anon_sym_interface] = ACTIONS(2159), - [anon_sym_PLUS_PLUS] = ACTIONS(2159), - [anon_sym_DASH_DASH] = ACTIONS(2159), - [anon_sym_QMARK] = ACTIONS(2159), - [anon_sym_BANG] = ACTIONS(2159), - [anon_sym_go] = ACTIONS(2159), - [anon_sym_spawn] = ACTIONS(2159), - [anon_sym_json_DOTdecode] = ACTIONS(2159), - [anon_sym_LBRACK2] = ACTIONS(2159), - [anon_sym_TILDE] = ACTIONS(2159), - [anon_sym_CARET] = ACTIONS(2159), - [anon_sym_AMP] = ACTIONS(2159), - [anon_sym_LT_DASH] = ACTIONS(2159), - [anon_sym_LT_LT] = ACTIONS(2159), - [anon_sym_GT_GT] = ACTIONS(2159), - [anon_sym_GT_GT_GT] = ACTIONS(2159), - [anon_sym_AMP_CARET] = ACTIONS(2159), - [anon_sym_AMP_AMP] = ACTIONS(2159), - [anon_sym_PIPE_PIPE] = ACTIONS(2159), - [anon_sym_or] = ACTIONS(2159), - [sym_none] = ACTIONS(2159), - [sym_true] = ACTIONS(2159), - [sym_false] = ACTIONS(2159), - [sym_nil] = ACTIONS(2159), - [anon_sym_QMARK_DOT] = ACTIONS(2159), - [anon_sym_POUND_LBRACK] = ACTIONS(2159), - [anon_sym_if] = ACTIONS(2159), - [anon_sym_DOLLARif] = ACTIONS(2159), - [anon_sym_is] = ACTIONS(2159), - [anon_sym_BANGis] = ACTIONS(2159), - [anon_sym_in] = ACTIONS(2159), - [anon_sym_BANGin] = ACTIONS(2159), - [anon_sym_match] = ACTIONS(2159), - [anon_sym_select] = ACTIONS(2159), - [anon_sym_lock] = ACTIONS(2159), - [anon_sym_rlock] = ACTIONS(2159), - [anon_sym_unsafe] = ACTIONS(2159), - [anon_sym_sql] = ACTIONS(2159), - [sym_int_literal] = ACTIONS(2159), - [sym_float_literal] = ACTIONS(2159), - [sym_rune_literal] = ACTIONS(2159), - [sym_pseudo_compile_time_identifier] = ACTIONS(2159), - [anon_sym_shared] = ACTIONS(2159), - [anon_sym_map_LBRACK] = ACTIONS(2159), - [anon_sym_chan] = ACTIONS(2159), - [anon_sym_thread] = ACTIONS(2159), - [anon_sym_atomic] = ACTIONS(2159), - [anon_sym_assert] = ACTIONS(2159), - [anon_sym_defer] = ACTIONS(2159), - [anon_sym_goto] = ACTIONS(2159), - [anon_sym_break] = ACTIONS(2159), - [anon_sym_continue] = ACTIONS(2159), - [anon_sym_return] = ACTIONS(2159), - [anon_sym_DOLLARfor] = ACTIONS(2159), - [anon_sym_for] = ACTIONS(2159), - [anon_sym_POUND] = ACTIONS(2159), - [anon_sym_asm] = ACTIONS(2159), - [anon_sym_AT_LBRACK] = ACTIONS(2159), - [sym___double_quote] = ACTIONS(2159), - [sym___single_quote] = ACTIONS(2159), - [sym___c_double_quote] = ACTIONS(2159), - [sym___c_single_quote] = ACTIONS(2159), - [sym___r_double_quote] = ACTIONS(2159), - [sym___r_single_quote] = ACTIONS(2159), - }, - [1088] = { - [sym_line_comment] = STATE(1088), - [sym_block_comment] = STATE(1088), - [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), - [anon_sym_SLASH_SLASH] = ACTIONS(497), - [anon_sym_SLASH_STAR] = ACTIONS(499), - [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_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), - }, - [1089] = { - [sym_line_comment] = STATE(1089), - [sym_block_comment] = STATE(1089), - [ts_builtin_sym_end] = ACTIONS(2729), - [sym_identifier] = ACTIONS(2731), - [anon_sym_LF] = ACTIONS(2731), - [anon_sym_CR] = ACTIONS(2731), - [anon_sym_CR_LF] = ACTIONS(2731), - [anon_sym_SLASH_SLASH] = ACTIONS(497), - [anon_sym_SLASH_STAR] = ACTIONS(499), - [anon_sym_DOT] = ACTIONS(2731), - [anon_sym_as] = ACTIONS(2731), - [anon_sym_LBRACE] = ACTIONS(2731), - [anon_sym_COMMA] = ACTIONS(2731), - [anon_sym_const] = ACTIONS(2731), - [anon_sym_LPAREN] = ACTIONS(2731), - [anon_sym___global] = ACTIONS(2731), - [anon_sym_type] = ACTIONS(2731), - [anon_sym_PIPE] = ACTIONS(2731), - [anon_sym_fn] = ACTIONS(2731), - [anon_sym_PLUS] = ACTIONS(2731), - [anon_sym_DASH] = ACTIONS(2731), - [anon_sym_STAR] = ACTIONS(2731), - [anon_sym_SLASH] = ACTIONS(2731), - [anon_sym_PERCENT] = ACTIONS(2731), - [anon_sym_LT] = ACTIONS(2731), - [anon_sym_GT] = ACTIONS(2731), - [anon_sym_EQ_EQ] = ACTIONS(2731), - [anon_sym_BANG_EQ] = ACTIONS(2731), - [anon_sym_LT_EQ] = ACTIONS(2731), - [anon_sym_GT_EQ] = ACTIONS(2731), - [anon_sym_LBRACK] = ACTIONS(2729), - [anon_sym_struct] = ACTIONS(2731), - [anon_sym_union] = ACTIONS(2731), - [anon_sym_pub] = ACTIONS(2731), - [anon_sym_mut] = ACTIONS(2731), - [anon_sym_enum] = ACTIONS(2731), - [anon_sym_interface] = ACTIONS(2731), - [anon_sym_PLUS_PLUS] = ACTIONS(2731), - [anon_sym_DASH_DASH] = ACTIONS(2731), - [anon_sym_QMARK] = ACTIONS(2731), - [anon_sym_BANG] = ACTIONS(2731), - [anon_sym_go] = ACTIONS(2731), - [anon_sym_spawn] = ACTIONS(2731), - [anon_sym_json_DOTdecode] = ACTIONS(2731), - [anon_sym_LBRACK2] = ACTIONS(2731), - [anon_sym_TILDE] = ACTIONS(2731), - [anon_sym_CARET] = ACTIONS(2731), - [anon_sym_AMP] = ACTIONS(2731), - [anon_sym_LT_DASH] = ACTIONS(2731), - [anon_sym_LT_LT] = ACTIONS(2731), - [anon_sym_GT_GT] = ACTIONS(2731), - [anon_sym_GT_GT_GT] = ACTIONS(2731), - [anon_sym_AMP_CARET] = ACTIONS(2731), - [anon_sym_AMP_AMP] = ACTIONS(2731), - [anon_sym_PIPE_PIPE] = ACTIONS(2731), - [anon_sym_or] = ACTIONS(2731), - [sym_none] = ACTIONS(2731), - [sym_true] = ACTIONS(2731), - [sym_false] = ACTIONS(2731), - [sym_nil] = ACTIONS(2731), - [anon_sym_QMARK_DOT] = ACTIONS(2731), - [anon_sym_POUND_LBRACK] = ACTIONS(2731), - [anon_sym_if] = ACTIONS(2731), - [anon_sym_DOLLARif] = ACTIONS(2731), - [anon_sym_is] = ACTIONS(2731), - [anon_sym_BANGis] = ACTIONS(2731), - [anon_sym_in] = ACTIONS(2731), - [anon_sym_BANGin] = ACTIONS(2731), - [anon_sym_match] = ACTIONS(2731), - [anon_sym_select] = ACTIONS(2731), - [anon_sym_lock] = ACTIONS(2731), - [anon_sym_rlock] = ACTIONS(2731), - [anon_sym_unsafe] = ACTIONS(2731), - [anon_sym_sql] = ACTIONS(2731), - [sym_int_literal] = ACTIONS(2731), - [sym_float_literal] = ACTIONS(2731), - [sym_rune_literal] = ACTIONS(2731), - [sym_pseudo_compile_time_identifier] = ACTIONS(2731), - [anon_sym_shared] = ACTIONS(2731), - [anon_sym_map_LBRACK] = ACTIONS(2731), - [anon_sym_chan] = ACTIONS(2731), - [anon_sym_thread] = ACTIONS(2731), - [anon_sym_atomic] = ACTIONS(2731), - [anon_sym_assert] = ACTIONS(2731), - [anon_sym_defer] = ACTIONS(2731), - [anon_sym_goto] = ACTIONS(2731), - [anon_sym_break] = ACTIONS(2731), - [anon_sym_continue] = ACTIONS(2731), - [anon_sym_return] = ACTIONS(2731), - [anon_sym_DOLLARfor] = ACTIONS(2731), - [anon_sym_for] = ACTIONS(2731), - [anon_sym_POUND] = ACTIONS(2731), - [anon_sym_asm] = ACTIONS(2731), - [anon_sym_AT_LBRACK] = ACTIONS(2731), - [sym___double_quote] = ACTIONS(2731), - [sym___single_quote] = ACTIONS(2731), - [sym___c_double_quote] = ACTIONS(2731), - [sym___c_single_quote] = ACTIONS(2731), - [sym___r_double_quote] = ACTIONS(2731), - [sym___r_single_quote] = ACTIONS(2731), - }, [1090] = { [sym_line_comment] = STATE(1090), [sym_block_comment] = STATE(1090), - [ts_builtin_sym_end] = ACTIONS(2826), - [sym_identifier] = ACTIONS(2828), - [anon_sym_LF] = ACTIONS(2828), - [anon_sym_CR] = ACTIONS(2828), - [anon_sym_CR_LF] = ACTIONS(2828), + [ts_builtin_sym_end] = ACTIONS(2742), + [sym_identifier] = ACTIONS(2744), + [anon_sym_LF] = ACTIONS(2744), + [anon_sym_CR] = ACTIONS(2744), + [anon_sym_CR_LF] = ACTIONS(2744), [anon_sym_SLASH_SLASH] = ACTIONS(497), [anon_sym_SLASH_STAR] = ACTIONS(499), - [anon_sym_DOT] = ACTIONS(2828), - [anon_sym_as] = ACTIONS(2828), - [anon_sym_LBRACE] = ACTIONS(2828), - [anon_sym_COMMA] = ACTIONS(2828), - [anon_sym_const] = ACTIONS(2828), - [anon_sym_LPAREN] = ACTIONS(2828), - [anon_sym___global] = ACTIONS(2828), - [anon_sym_type] = ACTIONS(2828), - [anon_sym_PIPE] = ACTIONS(2828), - [anon_sym_fn] = ACTIONS(2828), - [anon_sym_PLUS] = ACTIONS(2828), - [anon_sym_DASH] = ACTIONS(2828), - [anon_sym_STAR] = ACTIONS(2828), - [anon_sym_SLASH] = ACTIONS(2828), - [anon_sym_PERCENT] = ACTIONS(2828), - [anon_sym_LT] = ACTIONS(2828), - [anon_sym_GT] = ACTIONS(2828), - [anon_sym_EQ_EQ] = ACTIONS(2828), - [anon_sym_BANG_EQ] = ACTIONS(2828), - [anon_sym_LT_EQ] = ACTIONS(2828), - [anon_sym_GT_EQ] = ACTIONS(2828), - [anon_sym_LBRACK] = ACTIONS(2826), - [anon_sym_struct] = ACTIONS(2828), - [anon_sym_union] = ACTIONS(2828), - [anon_sym_pub] = ACTIONS(2828), - [anon_sym_mut] = ACTIONS(2828), - [anon_sym_enum] = ACTIONS(2828), - [anon_sym_interface] = ACTIONS(2828), - [anon_sym_PLUS_PLUS] = ACTIONS(2828), - [anon_sym_DASH_DASH] = ACTIONS(2828), - [anon_sym_QMARK] = ACTIONS(2828), - [anon_sym_BANG] = ACTIONS(2828), - [anon_sym_go] = ACTIONS(2828), - [anon_sym_spawn] = ACTIONS(2828), - [anon_sym_json_DOTdecode] = ACTIONS(2828), - [anon_sym_LBRACK2] = ACTIONS(2828), - [anon_sym_TILDE] = ACTIONS(2828), - [anon_sym_CARET] = ACTIONS(2828), - [anon_sym_AMP] = ACTIONS(2828), - [anon_sym_LT_DASH] = ACTIONS(2828), - [anon_sym_LT_LT] = ACTIONS(2828), - [anon_sym_GT_GT] = ACTIONS(2828), - [anon_sym_GT_GT_GT] = ACTIONS(2828), - [anon_sym_AMP_CARET] = ACTIONS(2828), - [anon_sym_AMP_AMP] = ACTIONS(2828), - [anon_sym_PIPE_PIPE] = ACTIONS(2828), - [anon_sym_or] = ACTIONS(2828), - [sym_none] = ACTIONS(2828), - [sym_true] = ACTIONS(2828), - [sym_false] = ACTIONS(2828), - [sym_nil] = ACTIONS(2828), - [anon_sym_QMARK_DOT] = ACTIONS(2828), - [anon_sym_POUND_LBRACK] = ACTIONS(2828), - [anon_sym_if] = ACTIONS(2828), - [anon_sym_DOLLARif] = ACTIONS(2828), - [anon_sym_is] = ACTIONS(2828), - [anon_sym_BANGis] = ACTIONS(2828), - [anon_sym_in] = ACTIONS(2828), - [anon_sym_BANGin] = ACTIONS(2828), - [anon_sym_match] = ACTIONS(2828), - [anon_sym_select] = ACTIONS(2828), - [anon_sym_lock] = ACTIONS(2828), - [anon_sym_rlock] = ACTIONS(2828), - [anon_sym_unsafe] = ACTIONS(2828), - [anon_sym_sql] = ACTIONS(2828), - [sym_int_literal] = ACTIONS(2828), - [sym_float_literal] = ACTIONS(2828), - [sym_rune_literal] = ACTIONS(2828), - [sym_pseudo_compile_time_identifier] = ACTIONS(2828), - [anon_sym_shared] = ACTIONS(2828), - [anon_sym_map_LBRACK] = ACTIONS(2828), - [anon_sym_chan] = ACTIONS(2828), - [anon_sym_thread] = ACTIONS(2828), - [anon_sym_atomic] = ACTIONS(2828), - [anon_sym_assert] = ACTIONS(2828), - [anon_sym_defer] = ACTIONS(2828), - [anon_sym_goto] = ACTIONS(2828), - [anon_sym_break] = ACTIONS(2828), - [anon_sym_continue] = ACTIONS(2828), - [anon_sym_return] = ACTIONS(2828), - [anon_sym_DOLLARfor] = ACTIONS(2828), - [anon_sym_for] = ACTIONS(2828), - [anon_sym_POUND] = ACTIONS(2828), - [anon_sym_asm] = ACTIONS(2828), - [anon_sym_AT_LBRACK] = ACTIONS(2828), - [sym___double_quote] = ACTIONS(2828), - [sym___single_quote] = ACTIONS(2828), - [sym___c_double_quote] = ACTIONS(2828), - [sym___c_single_quote] = ACTIONS(2828), - [sym___r_double_quote] = ACTIONS(2828), - [sym___r_single_quote] = ACTIONS(2828), + [anon_sym_DOT] = ACTIONS(2744), + [anon_sym_as] = ACTIONS(2744), + [anon_sym_LBRACE] = ACTIONS(2744), + [anon_sym_COMMA] = ACTIONS(2744), + [anon_sym_const] = ACTIONS(2744), + [anon_sym_LPAREN] = ACTIONS(2744), + [anon_sym___global] = ACTIONS(2744), + [anon_sym_type] = ACTIONS(2744), + [anon_sym_PIPE] = ACTIONS(2744), + [anon_sym_fn] = ACTIONS(2744), + [anon_sym_PLUS] = ACTIONS(2744), + [anon_sym_DASH] = ACTIONS(2744), + [anon_sym_STAR] = ACTIONS(2744), + [anon_sym_SLASH] = ACTIONS(2744), + [anon_sym_PERCENT] = ACTIONS(2744), + [anon_sym_LT] = ACTIONS(2744), + [anon_sym_GT] = ACTIONS(2744), + [anon_sym_EQ_EQ] = ACTIONS(2744), + [anon_sym_BANG_EQ] = ACTIONS(2744), + [anon_sym_LT_EQ] = ACTIONS(2744), + [anon_sym_GT_EQ] = ACTIONS(2744), + [anon_sym_LBRACK] = ACTIONS(2742), + [anon_sym_struct] = ACTIONS(2744), + [anon_sym_union] = ACTIONS(2744), + [anon_sym_pub] = ACTIONS(2744), + [anon_sym_mut] = ACTIONS(2744), + [anon_sym_enum] = ACTIONS(2744), + [anon_sym_interface] = ACTIONS(2744), + [anon_sym_PLUS_PLUS] = ACTIONS(2744), + [anon_sym_DASH_DASH] = ACTIONS(2744), + [anon_sym_QMARK] = ACTIONS(2744), + [anon_sym_BANG] = ACTIONS(2744), + [anon_sym_go] = ACTIONS(2744), + [anon_sym_spawn] = ACTIONS(2744), + [anon_sym_json_DOTdecode] = ACTIONS(2744), + [anon_sym_LBRACK2] = ACTIONS(2744), + [anon_sym_TILDE] = ACTIONS(2744), + [anon_sym_CARET] = ACTIONS(2744), + [anon_sym_AMP] = ACTIONS(2744), + [anon_sym_LT_DASH] = ACTIONS(2744), + [anon_sym_LT_LT] = ACTIONS(2744), + [anon_sym_GT_GT] = ACTIONS(2744), + [anon_sym_GT_GT_GT] = ACTIONS(2744), + [anon_sym_AMP_CARET] = ACTIONS(2744), + [anon_sym_AMP_AMP] = ACTIONS(2744), + [anon_sym_PIPE_PIPE] = ACTIONS(2744), + [anon_sym_or] = ACTIONS(2744), + [sym_none] = ACTIONS(2744), + [sym_true] = ACTIONS(2744), + [sym_false] = ACTIONS(2744), + [sym_nil] = ACTIONS(2744), + [anon_sym_QMARK_DOT] = ACTIONS(2744), + [anon_sym_POUND_LBRACK] = ACTIONS(2744), + [anon_sym_if] = ACTIONS(2744), + [anon_sym_DOLLARif] = ACTIONS(2744), + [anon_sym_is] = ACTIONS(2744), + [anon_sym_BANGis] = ACTIONS(2744), + [anon_sym_in] = ACTIONS(2744), + [anon_sym_BANGin] = ACTIONS(2744), + [anon_sym_match] = ACTIONS(2744), + [anon_sym_select] = ACTIONS(2744), + [anon_sym_lock] = ACTIONS(2744), + [anon_sym_rlock] = ACTIONS(2744), + [anon_sym_unsafe] = ACTIONS(2744), + [anon_sym_sql] = ACTIONS(2744), + [sym_int_literal] = ACTIONS(2744), + [sym_float_literal] = ACTIONS(2744), + [sym_rune_literal] = ACTIONS(2744), + [sym_pseudo_compile_time_identifier] = ACTIONS(2744), + [anon_sym_shared] = ACTIONS(2744), + [anon_sym_map_LBRACK] = ACTIONS(2744), + [anon_sym_chan] = ACTIONS(2744), + [anon_sym_thread] = ACTIONS(2744), + [anon_sym_atomic] = ACTIONS(2744), + [anon_sym_assert] = ACTIONS(2744), + [anon_sym_defer] = ACTIONS(2744), + [anon_sym_goto] = ACTIONS(2744), + [anon_sym_break] = ACTIONS(2744), + [anon_sym_continue] = ACTIONS(2744), + [anon_sym_return] = ACTIONS(2744), + [anon_sym_DOLLARfor] = ACTIONS(2744), + [anon_sym_for] = ACTIONS(2744), + [anon_sym_POUND] = ACTIONS(2744), + [anon_sym_asm] = ACTIONS(2744), + [anon_sym_AT_LBRACK] = ACTIONS(2744), + [sym___double_quote] = ACTIONS(2744), + [sym___single_quote] = ACTIONS(2744), + [sym___c_double_quote] = ACTIONS(2744), + [sym___c_single_quote] = ACTIONS(2744), + [sym___r_double_quote] = ACTIONS(2744), + [sym___r_single_quote] = ACTIONS(2744), }, [1091] = { [sym_line_comment] = STATE(1091), [sym_block_comment] = STATE(1091), - [ts_builtin_sym_end] = ACTIONS(2167), - [sym_identifier] = ACTIONS(2169), - [anon_sym_LF] = ACTIONS(2169), - [anon_sym_CR] = ACTIONS(2169), - [anon_sym_CR_LF] = ACTIONS(2169), + [ts_builtin_sym_end] = ACTIONS(3060), + [sym_identifier] = ACTIONS(3062), + [anon_sym_LF] = ACTIONS(3062), + [anon_sym_CR] = ACTIONS(3062), + [anon_sym_CR_LF] = ACTIONS(3062), [anon_sym_SLASH_SLASH] = ACTIONS(497), [anon_sym_SLASH_STAR] = ACTIONS(499), - [anon_sym_DOT] = ACTIONS(2169), - [anon_sym_as] = ACTIONS(2169), - [anon_sym_LBRACE] = ACTIONS(2169), - [anon_sym_COMMA] = ACTIONS(2169), - [anon_sym_const] = ACTIONS(2169), - [anon_sym_LPAREN] = ACTIONS(2169), - [anon_sym___global] = ACTIONS(2169), - [anon_sym_type] = ACTIONS(2169), - [anon_sym_PIPE] = ACTIONS(2169), - [anon_sym_fn] = ACTIONS(2169), - [anon_sym_PLUS] = ACTIONS(2169), - [anon_sym_DASH] = ACTIONS(2169), - [anon_sym_STAR] = ACTIONS(2169), - [anon_sym_SLASH] = ACTIONS(2169), - [anon_sym_PERCENT] = ACTIONS(2169), - [anon_sym_LT] = ACTIONS(2169), - [anon_sym_GT] = ACTIONS(2169), - [anon_sym_EQ_EQ] = ACTIONS(2169), - [anon_sym_BANG_EQ] = ACTIONS(2169), - [anon_sym_LT_EQ] = ACTIONS(2169), - [anon_sym_GT_EQ] = ACTIONS(2169), - [anon_sym_LBRACK] = ACTIONS(2167), - [anon_sym_struct] = ACTIONS(2169), - [anon_sym_union] = ACTIONS(2169), - [anon_sym_pub] = ACTIONS(2169), - [anon_sym_mut] = ACTIONS(2169), - [anon_sym_enum] = ACTIONS(2169), - [anon_sym_interface] = ACTIONS(2169), - [anon_sym_PLUS_PLUS] = ACTIONS(2169), - [anon_sym_DASH_DASH] = ACTIONS(2169), - [anon_sym_QMARK] = ACTIONS(2169), - [anon_sym_BANG] = ACTIONS(2169), - [anon_sym_go] = ACTIONS(2169), - [anon_sym_spawn] = ACTIONS(2169), - [anon_sym_json_DOTdecode] = ACTIONS(2169), - [anon_sym_LBRACK2] = ACTIONS(2169), - [anon_sym_TILDE] = ACTIONS(2169), - [anon_sym_CARET] = ACTIONS(2169), - [anon_sym_AMP] = ACTIONS(2169), - [anon_sym_LT_DASH] = ACTIONS(2169), - [anon_sym_LT_LT] = ACTIONS(2169), - [anon_sym_GT_GT] = ACTIONS(2169), - [anon_sym_GT_GT_GT] = ACTIONS(2169), - [anon_sym_AMP_CARET] = ACTIONS(2169), - [anon_sym_AMP_AMP] = ACTIONS(2169), - [anon_sym_PIPE_PIPE] = ACTIONS(2169), - [anon_sym_or] = ACTIONS(2169), - [sym_none] = ACTIONS(2169), - [sym_true] = ACTIONS(2169), - [sym_false] = ACTIONS(2169), - [sym_nil] = ACTIONS(2169), - [anon_sym_QMARK_DOT] = ACTIONS(2169), - [anon_sym_POUND_LBRACK] = ACTIONS(2169), - [anon_sym_if] = ACTIONS(2169), - [anon_sym_DOLLARif] = ACTIONS(2169), - [anon_sym_is] = ACTIONS(2169), - [anon_sym_BANGis] = ACTIONS(2169), - [anon_sym_in] = ACTIONS(2169), - [anon_sym_BANGin] = ACTIONS(2169), - [anon_sym_match] = ACTIONS(2169), - [anon_sym_select] = ACTIONS(2169), - [anon_sym_lock] = ACTIONS(2169), - [anon_sym_rlock] = ACTIONS(2169), - [anon_sym_unsafe] = ACTIONS(2169), - [anon_sym_sql] = ACTIONS(2169), - [sym_int_literal] = ACTIONS(2169), - [sym_float_literal] = ACTIONS(2169), - [sym_rune_literal] = ACTIONS(2169), - [sym_pseudo_compile_time_identifier] = ACTIONS(2169), - [anon_sym_shared] = ACTIONS(2169), - [anon_sym_map_LBRACK] = ACTIONS(2169), - [anon_sym_chan] = ACTIONS(2169), - [anon_sym_thread] = ACTIONS(2169), - [anon_sym_atomic] = ACTIONS(2169), - [anon_sym_assert] = ACTIONS(2169), - [anon_sym_defer] = ACTIONS(2169), - [anon_sym_goto] = ACTIONS(2169), - [anon_sym_break] = ACTIONS(2169), - [anon_sym_continue] = ACTIONS(2169), - [anon_sym_return] = ACTIONS(2169), - [anon_sym_DOLLARfor] = ACTIONS(2169), - [anon_sym_for] = ACTIONS(2169), - [anon_sym_POUND] = ACTIONS(2169), - [anon_sym_asm] = ACTIONS(2169), - [anon_sym_AT_LBRACK] = ACTIONS(2169), - [sym___double_quote] = ACTIONS(2169), - [sym___single_quote] = ACTIONS(2169), - [sym___c_double_quote] = ACTIONS(2169), - [sym___c_single_quote] = ACTIONS(2169), - [sym___r_double_quote] = ACTIONS(2169), - [sym___r_single_quote] = ACTIONS(2169), + [anon_sym_DOT] = ACTIONS(3062), + [anon_sym_as] = ACTIONS(3062), + [anon_sym_LBRACE] = ACTIONS(3062), + [anon_sym_COMMA] = ACTIONS(3062), + [anon_sym_const] = ACTIONS(3062), + [anon_sym_LPAREN] = ACTIONS(3062), + [anon_sym___global] = ACTIONS(3062), + [anon_sym_type] = ACTIONS(3062), + [anon_sym_PIPE] = ACTIONS(3062), + [anon_sym_fn] = ACTIONS(3062), + [anon_sym_PLUS] = ACTIONS(3062), + [anon_sym_DASH] = ACTIONS(3062), + [anon_sym_STAR] = ACTIONS(3062), + [anon_sym_SLASH] = ACTIONS(3062), + [anon_sym_PERCENT] = ACTIONS(3062), + [anon_sym_LT] = ACTIONS(3062), + [anon_sym_GT] = ACTIONS(3062), + [anon_sym_EQ_EQ] = ACTIONS(3062), + [anon_sym_BANG_EQ] = ACTIONS(3062), + [anon_sym_LT_EQ] = ACTIONS(3062), + [anon_sym_GT_EQ] = ACTIONS(3062), + [anon_sym_LBRACK] = ACTIONS(3060), + [anon_sym_struct] = ACTIONS(3062), + [anon_sym_union] = ACTIONS(3062), + [anon_sym_pub] = ACTIONS(3062), + [anon_sym_mut] = ACTIONS(3062), + [anon_sym_enum] = ACTIONS(3062), + [anon_sym_interface] = ACTIONS(3062), + [anon_sym_PLUS_PLUS] = ACTIONS(3062), + [anon_sym_DASH_DASH] = ACTIONS(3062), + [anon_sym_QMARK] = ACTIONS(3062), + [anon_sym_BANG] = ACTIONS(3062), + [anon_sym_go] = ACTIONS(3062), + [anon_sym_spawn] = ACTIONS(3062), + [anon_sym_json_DOTdecode] = ACTIONS(3062), + [anon_sym_LBRACK2] = ACTIONS(3062), + [anon_sym_TILDE] = ACTIONS(3062), + [anon_sym_CARET] = ACTIONS(3062), + [anon_sym_AMP] = ACTIONS(3062), + [anon_sym_LT_DASH] = ACTIONS(3062), + [anon_sym_LT_LT] = ACTIONS(3062), + [anon_sym_GT_GT] = ACTIONS(3062), + [anon_sym_GT_GT_GT] = ACTIONS(3062), + [anon_sym_AMP_CARET] = ACTIONS(3062), + [anon_sym_AMP_AMP] = ACTIONS(3062), + [anon_sym_PIPE_PIPE] = ACTIONS(3062), + [anon_sym_or] = ACTIONS(3062), + [sym_none] = ACTIONS(3062), + [sym_true] = ACTIONS(3062), + [sym_false] = ACTIONS(3062), + [sym_nil] = ACTIONS(3062), + [anon_sym_QMARK_DOT] = ACTIONS(3062), + [anon_sym_POUND_LBRACK] = ACTIONS(3062), + [anon_sym_if] = ACTIONS(3062), + [anon_sym_DOLLARif] = ACTIONS(3062), + [anon_sym_is] = ACTIONS(3062), + [anon_sym_BANGis] = ACTIONS(3062), + [anon_sym_in] = ACTIONS(3062), + [anon_sym_BANGin] = ACTIONS(3062), + [anon_sym_match] = ACTIONS(3062), + [anon_sym_select] = ACTIONS(3062), + [anon_sym_lock] = ACTIONS(3062), + [anon_sym_rlock] = ACTIONS(3062), + [anon_sym_unsafe] = ACTIONS(3062), + [anon_sym_sql] = ACTIONS(3062), + [sym_int_literal] = ACTIONS(3062), + [sym_float_literal] = ACTIONS(3062), + [sym_rune_literal] = ACTIONS(3062), + [sym_pseudo_compile_time_identifier] = ACTIONS(3062), + [anon_sym_shared] = ACTIONS(3062), + [anon_sym_map_LBRACK] = ACTIONS(3062), + [anon_sym_chan] = ACTIONS(3062), + [anon_sym_thread] = ACTIONS(3062), + [anon_sym_atomic] = ACTIONS(3062), + [anon_sym_assert] = ACTIONS(3062), + [anon_sym_defer] = ACTIONS(3062), + [anon_sym_goto] = ACTIONS(3062), + [anon_sym_break] = ACTIONS(3062), + [anon_sym_continue] = ACTIONS(3062), + [anon_sym_return] = ACTIONS(3062), + [anon_sym_DOLLARfor] = ACTIONS(3062), + [anon_sym_for] = ACTIONS(3062), + [anon_sym_POUND] = ACTIONS(3062), + [anon_sym_asm] = ACTIONS(3062), + [anon_sym_AT_LBRACK] = ACTIONS(3062), + [sym___double_quote] = ACTIONS(3062), + [sym___single_quote] = ACTIONS(3062), + [sym___c_double_quote] = ACTIONS(3062), + [sym___c_single_quote] = ACTIONS(3062), + [sym___r_double_quote] = ACTIONS(3062), + [sym___r_single_quote] = ACTIONS(3062), }, [1092] = { [sym_line_comment] = STATE(1092), [sym_block_comment] = STATE(1092), - [ts_builtin_sym_end] = ACTIONS(2171), - [sym_identifier] = ACTIONS(2173), - [anon_sym_LF] = ACTIONS(2173), - [anon_sym_CR] = ACTIONS(2173), - [anon_sym_CR_LF] = ACTIONS(2173), + [ts_builtin_sym_end] = ACTIONS(2726), + [sym_identifier] = ACTIONS(2728), + [anon_sym_LF] = ACTIONS(2728), + [anon_sym_CR] = ACTIONS(2728), + [anon_sym_CR_LF] = ACTIONS(2728), [anon_sym_SLASH_SLASH] = ACTIONS(497), [anon_sym_SLASH_STAR] = ACTIONS(499), - [anon_sym_DOT] = ACTIONS(2173), - [anon_sym_as] = ACTIONS(2173), - [anon_sym_LBRACE] = ACTIONS(2173), - [anon_sym_COMMA] = ACTIONS(2173), - [anon_sym_const] = ACTIONS(2173), - [anon_sym_LPAREN] = ACTIONS(2173), - [anon_sym___global] = ACTIONS(2173), - [anon_sym_type] = ACTIONS(2173), - [anon_sym_PIPE] = ACTIONS(2173), - [anon_sym_fn] = ACTIONS(2173), - [anon_sym_PLUS] = ACTIONS(2173), - [anon_sym_DASH] = ACTIONS(2173), - [anon_sym_STAR] = ACTIONS(2173), - [anon_sym_SLASH] = ACTIONS(2173), - [anon_sym_PERCENT] = ACTIONS(2173), - [anon_sym_LT] = ACTIONS(2173), - [anon_sym_GT] = ACTIONS(2173), - [anon_sym_EQ_EQ] = ACTIONS(2173), - [anon_sym_BANG_EQ] = ACTIONS(2173), - [anon_sym_LT_EQ] = ACTIONS(2173), - [anon_sym_GT_EQ] = ACTIONS(2173), - [anon_sym_LBRACK] = ACTIONS(2171), - [anon_sym_struct] = ACTIONS(2173), - [anon_sym_union] = ACTIONS(2173), - [anon_sym_pub] = ACTIONS(2173), - [anon_sym_mut] = ACTIONS(2173), - [anon_sym_enum] = ACTIONS(2173), - [anon_sym_interface] = ACTIONS(2173), - [anon_sym_PLUS_PLUS] = ACTIONS(2173), - [anon_sym_DASH_DASH] = ACTIONS(2173), - [anon_sym_QMARK] = ACTIONS(2173), - [anon_sym_BANG] = ACTIONS(2173), - [anon_sym_go] = ACTIONS(2173), - [anon_sym_spawn] = ACTIONS(2173), - [anon_sym_json_DOTdecode] = ACTIONS(2173), - [anon_sym_LBRACK2] = ACTIONS(2173), - [anon_sym_TILDE] = ACTIONS(2173), - [anon_sym_CARET] = ACTIONS(2173), - [anon_sym_AMP] = ACTIONS(2173), - [anon_sym_LT_DASH] = ACTIONS(2173), - [anon_sym_LT_LT] = ACTIONS(2173), - [anon_sym_GT_GT] = ACTIONS(2173), - [anon_sym_GT_GT_GT] = ACTIONS(2173), - [anon_sym_AMP_CARET] = ACTIONS(2173), - [anon_sym_AMP_AMP] = ACTIONS(2173), - [anon_sym_PIPE_PIPE] = ACTIONS(2173), - [anon_sym_or] = ACTIONS(2173), - [sym_none] = ACTIONS(2173), - [sym_true] = ACTIONS(2173), - [sym_false] = ACTIONS(2173), - [sym_nil] = ACTIONS(2173), - [anon_sym_QMARK_DOT] = ACTIONS(2173), - [anon_sym_POUND_LBRACK] = ACTIONS(2173), - [anon_sym_if] = ACTIONS(2173), - [anon_sym_DOLLARif] = ACTIONS(2173), - [anon_sym_is] = ACTIONS(2173), - [anon_sym_BANGis] = ACTIONS(2173), - [anon_sym_in] = ACTIONS(2173), - [anon_sym_BANGin] = ACTIONS(2173), - [anon_sym_match] = ACTIONS(2173), - [anon_sym_select] = ACTIONS(2173), - [anon_sym_lock] = ACTIONS(2173), - [anon_sym_rlock] = ACTIONS(2173), - [anon_sym_unsafe] = ACTIONS(2173), - [anon_sym_sql] = ACTIONS(2173), - [sym_int_literal] = ACTIONS(2173), - [sym_float_literal] = ACTIONS(2173), - [sym_rune_literal] = ACTIONS(2173), - [sym_pseudo_compile_time_identifier] = ACTIONS(2173), - [anon_sym_shared] = ACTIONS(2173), - [anon_sym_map_LBRACK] = ACTIONS(2173), - [anon_sym_chan] = ACTIONS(2173), - [anon_sym_thread] = ACTIONS(2173), - [anon_sym_atomic] = ACTIONS(2173), - [anon_sym_assert] = ACTIONS(2173), - [anon_sym_defer] = ACTIONS(2173), - [anon_sym_goto] = ACTIONS(2173), - [anon_sym_break] = ACTIONS(2173), - [anon_sym_continue] = ACTIONS(2173), - [anon_sym_return] = ACTIONS(2173), - [anon_sym_DOLLARfor] = ACTIONS(2173), - [anon_sym_for] = ACTIONS(2173), - [anon_sym_POUND] = ACTIONS(2173), - [anon_sym_asm] = ACTIONS(2173), - [anon_sym_AT_LBRACK] = ACTIONS(2173), - [sym___double_quote] = ACTIONS(2173), - [sym___single_quote] = ACTIONS(2173), - [sym___c_double_quote] = ACTIONS(2173), - [sym___c_single_quote] = ACTIONS(2173), - [sym___r_double_quote] = ACTIONS(2173), - [sym___r_single_quote] = ACTIONS(2173), + [anon_sym_DOT] = ACTIONS(2728), + [anon_sym_as] = ACTIONS(2728), + [anon_sym_LBRACE] = ACTIONS(2728), + [anon_sym_COMMA] = ACTIONS(2728), + [anon_sym_const] = ACTIONS(2728), + [anon_sym_LPAREN] = ACTIONS(2728), + [anon_sym___global] = ACTIONS(2728), + [anon_sym_type] = ACTIONS(2728), + [anon_sym_PIPE] = ACTIONS(2728), + [anon_sym_fn] = ACTIONS(2728), + [anon_sym_PLUS] = ACTIONS(2728), + [anon_sym_DASH] = ACTIONS(2728), + [anon_sym_STAR] = ACTIONS(2728), + [anon_sym_SLASH] = ACTIONS(2728), + [anon_sym_PERCENT] = ACTIONS(2728), + [anon_sym_LT] = ACTIONS(2728), + [anon_sym_GT] = ACTIONS(2728), + [anon_sym_EQ_EQ] = ACTIONS(2728), + [anon_sym_BANG_EQ] = ACTIONS(2728), + [anon_sym_LT_EQ] = ACTIONS(2728), + [anon_sym_GT_EQ] = ACTIONS(2728), + [anon_sym_LBRACK] = ACTIONS(2726), + [anon_sym_struct] = ACTIONS(2728), + [anon_sym_union] = ACTIONS(2728), + [anon_sym_pub] = ACTIONS(2728), + [anon_sym_mut] = ACTIONS(2728), + [anon_sym_enum] = ACTIONS(2728), + [anon_sym_interface] = ACTIONS(2728), + [anon_sym_PLUS_PLUS] = ACTIONS(2728), + [anon_sym_DASH_DASH] = ACTIONS(2728), + [anon_sym_QMARK] = ACTIONS(2728), + [anon_sym_BANG] = ACTIONS(2728), + [anon_sym_go] = ACTIONS(2728), + [anon_sym_spawn] = ACTIONS(2728), + [anon_sym_json_DOTdecode] = ACTIONS(2728), + [anon_sym_LBRACK2] = ACTIONS(2728), + [anon_sym_TILDE] = ACTIONS(2728), + [anon_sym_CARET] = ACTIONS(2728), + [anon_sym_AMP] = ACTIONS(2728), + [anon_sym_LT_DASH] = ACTIONS(2728), + [anon_sym_LT_LT] = ACTIONS(2728), + [anon_sym_GT_GT] = ACTIONS(2728), + [anon_sym_GT_GT_GT] = ACTIONS(2728), + [anon_sym_AMP_CARET] = ACTIONS(2728), + [anon_sym_AMP_AMP] = ACTIONS(2728), + [anon_sym_PIPE_PIPE] = ACTIONS(2728), + [anon_sym_or] = ACTIONS(2728), + [sym_none] = ACTIONS(2728), + [sym_true] = ACTIONS(2728), + [sym_false] = ACTIONS(2728), + [sym_nil] = ACTIONS(2728), + [anon_sym_QMARK_DOT] = ACTIONS(2728), + [anon_sym_POUND_LBRACK] = ACTIONS(2728), + [anon_sym_if] = ACTIONS(2728), + [anon_sym_DOLLARif] = ACTIONS(2728), + [anon_sym_is] = ACTIONS(2728), + [anon_sym_BANGis] = ACTIONS(2728), + [anon_sym_in] = ACTIONS(2728), + [anon_sym_BANGin] = ACTIONS(2728), + [anon_sym_match] = ACTIONS(2728), + [anon_sym_select] = ACTIONS(2728), + [anon_sym_lock] = ACTIONS(2728), + [anon_sym_rlock] = ACTIONS(2728), + [anon_sym_unsafe] = ACTIONS(2728), + [anon_sym_sql] = ACTIONS(2728), + [sym_int_literal] = ACTIONS(2728), + [sym_float_literal] = ACTIONS(2728), + [sym_rune_literal] = ACTIONS(2728), + [sym_pseudo_compile_time_identifier] = ACTIONS(2728), + [anon_sym_shared] = ACTIONS(2728), + [anon_sym_map_LBRACK] = ACTIONS(2728), + [anon_sym_chan] = ACTIONS(2728), + [anon_sym_thread] = ACTIONS(2728), + [anon_sym_atomic] = ACTIONS(2728), + [anon_sym_assert] = ACTIONS(2728), + [anon_sym_defer] = ACTIONS(2728), + [anon_sym_goto] = ACTIONS(2728), + [anon_sym_break] = ACTIONS(2728), + [anon_sym_continue] = ACTIONS(2728), + [anon_sym_return] = ACTIONS(2728), + [anon_sym_DOLLARfor] = ACTIONS(2728), + [anon_sym_for] = ACTIONS(2728), + [anon_sym_POUND] = ACTIONS(2728), + [anon_sym_asm] = ACTIONS(2728), + [anon_sym_AT_LBRACK] = ACTIONS(2728), + [sym___double_quote] = ACTIONS(2728), + [sym___single_quote] = ACTIONS(2728), + [sym___c_double_quote] = ACTIONS(2728), + [sym___c_single_quote] = ACTIONS(2728), + [sym___r_double_quote] = ACTIONS(2728), + [sym___r_single_quote] = ACTIONS(2728), }, [1093] = { [sym_line_comment] = STATE(1093), [sym_block_comment] = STATE(1093), - [ts_builtin_sym_end] = ACTIONS(1849), - [sym_identifier] = ACTIONS(1851), - [anon_sym_LF] = ACTIONS(1851), - [anon_sym_CR] = ACTIONS(1851), - [anon_sym_CR_LF] = ACTIONS(1851), + [ts_builtin_sym_end] = ACTIONS(2884), + [sym_identifier] = ACTIONS(2886), + [anon_sym_LF] = ACTIONS(2886), + [anon_sym_CR] = ACTIONS(2886), + [anon_sym_CR_LF] = ACTIONS(2886), [anon_sym_SLASH_SLASH] = ACTIONS(497), [anon_sym_SLASH_STAR] = ACTIONS(499), - [anon_sym_DOT] = ACTIONS(1851), - [anon_sym_as] = ACTIONS(1851), - [anon_sym_LBRACE] = ACTIONS(1851), - [anon_sym_COMMA] = ACTIONS(1851), - [anon_sym_const] = ACTIONS(1851), - [anon_sym_LPAREN] = ACTIONS(1851), - [anon_sym___global] = ACTIONS(1851), - [anon_sym_type] = ACTIONS(1851), - [anon_sym_PIPE] = ACTIONS(1851), - [anon_sym_fn] = ACTIONS(1851), - [anon_sym_PLUS] = ACTIONS(1851), - [anon_sym_DASH] = ACTIONS(1851), - [anon_sym_STAR] = ACTIONS(1851), - [anon_sym_SLASH] = ACTIONS(1851), - [anon_sym_PERCENT] = ACTIONS(1851), - [anon_sym_LT] = ACTIONS(1851), - [anon_sym_GT] = ACTIONS(1851), - [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(1849), - [anon_sym_struct] = ACTIONS(1851), - [anon_sym_union] = ACTIONS(1851), - [anon_sym_pub] = ACTIONS(1851), - [anon_sym_mut] = ACTIONS(1851), - [anon_sym_enum] = ACTIONS(1851), - [anon_sym_interface] = ACTIONS(1851), - [anon_sym_PLUS_PLUS] = ACTIONS(1851), - [anon_sym_DASH_DASH] = ACTIONS(1851), - [anon_sym_QMARK] = ACTIONS(1851), - [anon_sym_BANG] = ACTIONS(1851), - [anon_sym_go] = ACTIONS(1851), - [anon_sym_spawn] = ACTIONS(1851), - [anon_sym_json_DOTdecode] = ACTIONS(1851), - [anon_sym_LBRACK2] = ACTIONS(1851), - [anon_sym_TILDE] = ACTIONS(1851), - [anon_sym_CARET] = ACTIONS(1851), - [anon_sym_AMP] = ACTIONS(1851), - [anon_sym_LT_DASH] = ACTIONS(1851), - [anon_sym_LT_LT] = ACTIONS(1851), - [anon_sym_GT_GT] = ACTIONS(1851), - [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(1851), - [sym_none] = ACTIONS(1851), - [sym_true] = ACTIONS(1851), - [sym_false] = ACTIONS(1851), - [sym_nil] = ACTIONS(1851), - [anon_sym_QMARK_DOT] = ACTIONS(1851), - [anon_sym_POUND_LBRACK] = ACTIONS(1851), - [anon_sym_if] = ACTIONS(1851), - [anon_sym_DOLLARif] = ACTIONS(1851), - [anon_sym_is] = ACTIONS(1851), - [anon_sym_BANGis] = ACTIONS(1851), - [anon_sym_in] = ACTIONS(1851), - [anon_sym_BANGin] = ACTIONS(1851), - [anon_sym_match] = ACTIONS(1851), - [anon_sym_select] = ACTIONS(1851), - [anon_sym_lock] = ACTIONS(1851), - [anon_sym_rlock] = ACTIONS(1851), - [anon_sym_unsafe] = ACTIONS(1851), - [anon_sym_sql] = ACTIONS(1851), - [sym_int_literal] = ACTIONS(1851), - [sym_float_literal] = ACTIONS(1851), - [sym_rune_literal] = ACTIONS(1851), - [sym_pseudo_compile_time_identifier] = ACTIONS(1851), - [anon_sym_shared] = ACTIONS(1851), - [anon_sym_map_LBRACK] = ACTIONS(1851), - [anon_sym_chan] = ACTIONS(1851), - [anon_sym_thread] = ACTIONS(1851), - [anon_sym_atomic] = ACTIONS(1851), - [anon_sym_assert] = ACTIONS(1851), - [anon_sym_defer] = ACTIONS(1851), - [anon_sym_goto] = ACTIONS(1851), - [anon_sym_break] = ACTIONS(1851), - [anon_sym_continue] = ACTIONS(1851), - [anon_sym_return] = ACTIONS(1851), - [anon_sym_DOLLARfor] = ACTIONS(1851), - [anon_sym_for] = ACTIONS(1851), - [anon_sym_POUND] = ACTIONS(1851), - [anon_sym_asm] = ACTIONS(1851), - [anon_sym_AT_LBRACK] = ACTIONS(1851), - [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), + [anon_sym_DOT] = ACTIONS(2886), + [anon_sym_as] = ACTIONS(2886), + [anon_sym_LBRACE] = ACTIONS(2886), + [anon_sym_COMMA] = ACTIONS(2886), + [anon_sym_const] = ACTIONS(2886), + [anon_sym_LPAREN] = ACTIONS(2886), + [anon_sym___global] = ACTIONS(2886), + [anon_sym_type] = ACTIONS(2886), + [anon_sym_PIPE] = ACTIONS(2886), + [anon_sym_fn] = ACTIONS(2886), + [anon_sym_PLUS] = ACTIONS(2886), + [anon_sym_DASH] = ACTIONS(2886), + [anon_sym_STAR] = ACTIONS(2886), + [anon_sym_SLASH] = ACTIONS(2886), + [anon_sym_PERCENT] = ACTIONS(2886), + [anon_sym_LT] = ACTIONS(2886), + [anon_sym_GT] = ACTIONS(2886), + [anon_sym_EQ_EQ] = ACTIONS(2886), + [anon_sym_BANG_EQ] = ACTIONS(2886), + [anon_sym_LT_EQ] = ACTIONS(2886), + [anon_sym_GT_EQ] = ACTIONS(2886), + [anon_sym_LBRACK] = ACTIONS(2884), + [anon_sym_struct] = ACTIONS(2886), + [anon_sym_union] = ACTIONS(2886), + [anon_sym_pub] = ACTIONS(2886), + [anon_sym_mut] = ACTIONS(2886), + [anon_sym_enum] = ACTIONS(2886), + [anon_sym_interface] = ACTIONS(2886), + [anon_sym_PLUS_PLUS] = ACTIONS(2886), + [anon_sym_DASH_DASH] = ACTIONS(2886), + [anon_sym_QMARK] = ACTIONS(2886), + [anon_sym_BANG] = ACTIONS(2886), + [anon_sym_go] = ACTIONS(2886), + [anon_sym_spawn] = ACTIONS(2886), + [anon_sym_json_DOTdecode] = ACTIONS(2886), + [anon_sym_LBRACK2] = ACTIONS(2886), + [anon_sym_TILDE] = ACTIONS(2886), + [anon_sym_CARET] = ACTIONS(2886), + [anon_sym_AMP] = ACTIONS(2886), + [anon_sym_LT_DASH] = ACTIONS(2886), + [anon_sym_LT_LT] = ACTIONS(2886), + [anon_sym_GT_GT] = ACTIONS(2886), + [anon_sym_GT_GT_GT] = ACTIONS(2886), + [anon_sym_AMP_CARET] = ACTIONS(2886), + [anon_sym_AMP_AMP] = ACTIONS(2886), + [anon_sym_PIPE_PIPE] = ACTIONS(2886), + [anon_sym_or] = ACTIONS(2886), + [sym_none] = ACTIONS(2886), + [sym_true] = ACTIONS(2886), + [sym_false] = ACTIONS(2886), + [sym_nil] = ACTIONS(2886), + [anon_sym_QMARK_DOT] = ACTIONS(2886), + [anon_sym_POUND_LBRACK] = ACTIONS(2886), + [anon_sym_if] = ACTIONS(2886), + [anon_sym_DOLLARif] = ACTIONS(2886), + [anon_sym_is] = ACTIONS(2886), + [anon_sym_BANGis] = ACTIONS(2886), + [anon_sym_in] = ACTIONS(2886), + [anon_sym_BANGin] = ACTIONS(2886), + [anon_sym_match] = ACTIONS(2886), + [anon_sym_select] = ACTIONS(2886), + [anon_sym_lock] = ACTIONS(2886), + [anon_sym_rlock] = ACTIONS(2886), + [anon_sym_unsafe] = ACTIONS(2886), + [anon_sym_sql] = ACTIONS(2886), + [sym_int_literal] = ACTIONS(2886), + [sym_float_literal] = ACTIONS(2886), + [sym_rune_literal] = ACTIONS(2886), + [sym_pseudo_compile_time_identifier] = ACTIONS(2886), + [anon_sym_shared] = ACTIONS(2886), + [anon_sym_map_LBRACK] = ACTIONS(2886), + [anon_sym_chan] = ACTIONS(2886), + [anon_sym_thread] = ACTIONS(2886), + [anon_sym_atomic] = ACTIONS(2886), + [anon_sym_assert] = ACTIONS(2886), + [anon_sym_defer] = ACTIONS(2886), + [anon_sym_goto] = ACTIONS(2886), + [anon_sym_break] = ACTIONS(2886), + [anon_sym_continue] = ACTIONS(2886), + [anon_sym_return] = ACTIONS(2886), + [anon_sym_DOLLARfor] = ACTIONS(2886), + [anon_sym_for] = ACTIONS(2886), + [anon_sym_POUND] = ACTIONS(2886), + [anon_sym_asm] = ACTIONS(2886), + [anon_sym_AT_LBRACK] = ACTIONS(2886), + [sym___double_quote] = ACTIONS(2886), + [sym___single_quote] = ACTIONS(2886), + [sym___c_double_quote] = ACTIONS(2886), + [sym___c_single_quote] = ACTIONS(2886), + [sym___r_double_quote] = ACTIONS(2886), + [sym___r_single_quote] = ACTIONS(2886), }, [1094] = { [sym_line_comment] = STATE(1094), [sym_block_comment] = STATE(1094), - [ts_builtin_sym_end] = ACTIONS(2665), - [sym_identifier] = ACTIONS(2667), - [anon_sym_LF] = ACTIONS(2667), - [anon_sym_CR] = ACTIONS(2667), - [anon_sym_CR_LF] = ACTIONS(2667), + [ts_builtin_sym_end] = ACTIONS(2908), + [sym_identifier] = ACTIONS(2910), + [anon_sym_LF] = ACTIONS(2910), + [anon_sym_CR] = ACTIONS(2910), + [anon_sym_CR_LF] = ACTIONS(2910), [anon_sym_SLASH_SLASH] = ACTIONS(497), [anon_sym_SLASH_STAR] = ACTIONS(499), - [anon_sym_DOT] = ACTIONS(2667), - [anon_sym_as] = ACTIONS(2667), - [anon_sym_LBRACE] = ACTIONS(2667), - [anon_sym_COMMA] = ACTIONS(2667), - [anon_sym_const] = ACTIONS(2667), - [anon_sym_LPAREN] = ACTIONS(2667), - [anon_sym___global] = ACTIONS(2667), - [anon_sym_type] = ACTIONS(2667), - [anon_sym_PIPE] = ACTIONS(2667), - [anon_sym_fn] = ACTIONS(2667), - [anon_sym_PLUS] = ACTIONS(2667), - [anon_sym_DASH] = ACTIONS(2667), - [anon_sym_STAR] = ACTIONS(2667), - [anon_sym_SLASH] = ACTIONS(2667), - [anon_sym_PERCENT] = ACTIONS(2667), - [anon_sym_LT] = ACTIONS(2667), - [anon_sym_GT] = ACTIONS(2667), - [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(2665), - [anon_sym_struct] = ACTIONS(2667), - [anon_sym_union] = ACTIONS(2667), - [anon_sym_pub] = ACTIONS(2667), - [anon_sym_mut] = ACTIONS(2667), - [anon_sym_enum] = ACTIONS(2667), - [anon_sym_interface] = ACTIONS(2667), - [anon_sym_PLUS_PLUS] = ACTIONS(2667), - [anon_sym_DASH_DASH] = ACTIONS(2667), - [anon_sym_QMARK] = ACTIONS(2667), - [anon_sym_BANG] = ACTIONS(2667), - [anon_sym_go] = ACTIONS(2667), - [anon_sym_spawn] = ACTIONS(2667), - [anon_sym_json_DOTdecode] = ACTIONS(2667), - [anon_sym_LBRACK2] = ACTIONS(2667), - [anon_sym_TILDE] = ACTIONS(2667), - [anon_sym_CARET] = ACTIONS(2667), - [anon_sym_AMP] = ACTIONS(2667), - [anon_sym_LT_DASH] = ACTIONS(2667), - [anon_sym_LT_LT] = ACTIONS(2667), - [anon_sym_GT_GT] = ACTIONS(2667), - [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(2667), - [sym_none] = ACTIONS(2667), - [sym_true] = ACTIONS(2667), - [sym_false] = ACTIONS(2667), - [sym_nil] = ACTIONS(2667), - [anon_sym_QMARK_DOT] = ACTIONS(2667), - [anon_sym_POUND_LBRACK] = ACTIONS(2667), - [anon_sym_if] = ACTIONS(2667), - [anon_sym_DOLLARif] = ACTIONS(2667), - [anon_sym_is] = ACTIONS(2667), - [anon_sym_BANGis] = ACTIONS(2667), - [anon_sym_in] = ACTIONS(2667), - [anon_sym_BANGin] = ACTIONS(2667), - [anon_sym_match] = ACTIONS(2667), - [anon_sym_select] = ACTIONS(2667), - [anon_sym_lock] = ACTIONS(2667), - [anon_sym_rlock] = ACTIONS(2667), - [anon_sym_unsafe] = ACTIONS(2667), - [anon_sym_sql] = ACTIONS(2667), - [sym_int_literal] = ACTIONS(2667), - [sym_float_literal] = ACTIONS(2667), - [sym_rune_literal] = ACTIONS(2667), - [sym_pseudo_compile_time_identifier] = ACTIONS(2667), - [anon_sym_shared] = ACTIONS(2667), - [anon_sym_map_LBRACK] = ACTIONS(2667), - [anon_sym_chan] = ACTIONS(2667), - [anon_sym_thread] = ACTIONS(2667), - [anon_sym_atomic] = ACTIONS(2667), - [anon_sym_assert] = ACTIONS(2667), - [anon_sym_defer] = ACTIONS(2667), - [anon_sym_goto] = ACTIONS(2667), - [anon_sym_break] = ACTIONS(2667), - [anon_sym_continue] = ACTIONS(2667), - [anon_sym_return] = ACTIONS(2667), - [anon_sym_DOLLARfor] = ACTIONS(2667), - [anon_sym_for] = ACTIONS(2667), - [anon_sym_POUND] = ACTIONS(2667), - [anon_sym_asm] = ACTIONS(2667), - [anon_sym_AT_LBRACK] = ACTIONS(2667), - [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(2910), + [anon_sym_as] = ACTIONS(2910), + [anon_sym_LBRACE] = ACTIONS(2910), + [anon_sym_COMMA] = ACTIONS(2910), + [anon_sym_const] = ACTIONS(2910), + [anon_sym_LPAREN] = ACTIONS(2910), + [anon_sym___global] = ACTIONS(2910), + [anon_sym_type] = ACTIONS(2910), + [anon_sym_PIPE] = ACTIONS(2910), + [anon_sym_fn] = ACTIONS(2910), + [anon_sym_PLUS] = ACTIONS(2910), + [anon_sym_DASH] = ACTIONS(2910), + [anon_sym_STAR] = ACTIONS(2910), + [anon_sym_SLASH] = ACTIONS(2910), + [anon_sym_PERCENT] = ACTIONS(2910), + [anon_sym_LT] = ACTIONS(2910), + [anon_sym_GT] = ACTIONS(2910), + [anon_sym_EQ_EQ] = ACTIONS(2910), + [anon_sym_BANG_EQ] = ACTIONS(2910), + [anon_sym_LT_EQ] = ACTIONS(2910), + [anon_sym_GT_EQ] = ACTIONS(2910), + [anon_sym_LBRACK] = ACTIONS(2908), + [anon_sym_struct] = ACTIONS(2910), + [anon_sym_union] = ACTIONS(2910), + [anon_sym_pub] = ACTIONS(2910), + [anon_sym_mut] = ACTIONS(2910), + [anon_sym_enum] = ACTIONS(2910), + [anon_sym_interface] = ACTIONS(2910), + [anon_sym_PLUS_PLUS] = ACTIONS(2910), + [anon_sym_DASH_DASH] = ACTIONS(2910), + [anon_sym_QMARK] = ACTIONS(2910), + [anon_sym_BANG] = ACTIONS(2910), + [anon_sym_go] = ACTIONS(2910), + [anon_sym_spawn] = ACTIONS(2910), + [anon_sym_json_DOTdecode] = ACTIONS(2910), + [anon_sym_LBRACK2] = ACTIONS(2910), + [anon_sym_TILDE] = ACTIONS(2910), + [anon_sym_CARET] = ACTIONS(2910), + [anon_sym_AMP] = ACTIONS(2910), + [anon_sym_LT_DASH] = ACTIONS(2910), + [anon_sym_LT_LT] = ACTIONS(2910), + [anon_sym_GT_GT] = ACTIONS(2910), + [anon_sym_GT_GT_GT] = ACTIONS(2910), + [anon_sym_AMP_CARET] = ACTIONS(2910), + [anon_sym_AMP_AMP] = ACTIONS(2910), + [anon_sym_PIPE_PIPE] = ACTIONS(2910), + [anon_sym_or] = ACTIONS(2910), + [sym_none] = ACTIONS(2910), + [sym_true] = ACTIONS(2910), + [sym_false] = ACTIONS(2910), + [sym_nil] = ACTIONS(2910), + [anon_sym_QMARK_DOT] = ACTIONS(2910), + [anon_sym_POUND_LBRACK] = ACTIONS(2910), + [anon_sym_if] = ACTIONS(2910), + [anon_sym_DOLLARif] = ACTIONS(2910), + [anon_sym_is] = ACTIONS(2910), + [anon_sym_BANGis] = ACTIONS(2910), + [anon_sym_in] = ACTIONS(2910), + [anon_sym_BANGin] = ACTIONS(2910), + [anon_sym_match] = ACTIONS(2910), + [anon_sym_select] = ACTIONS(2910), + [anon_sym_lock] = ACTIONS(2910), + [anon_sym_rlock] = ACTIONS(2910), + [anon_sym_unsafe] = ACTIONS(2910), + [anon_sym_sql] = ACTIONS(2910), + [sym_int_literal] = ACTIONS(2910), + [sym_float_literal] = ACTIONS(2910), + [sym_rune_literal] = ACTIONS(2910), + [sym_pseudo_compile_time_identifier] = ACTIONS(2910), + [anon_sym_shared] = ACTIONS(2910), + [anon_sym_map_LBRACK] = ACTIONS(2910), + [anon_sym_chan] = ACTIONS(2910), + [anon_sym_thread] = ACTIONS(2910), + [anon_sym_atomic] = ACTIONS(2910), + [anon_sym_assert] = ACTIONS(2910), + [anon_sym_defer] = ACTIONS(2910), + [anon_sym_goto] = ACTIONS(2910), + [anon_sym_break] = ACTIONS(2910), + [anon_sym_continue] = ACTIONS(2910), + [anon_sym_return] = ACTIONS(2910), + [anon_sym_DOLLARfor] = ACTIONS(2910), + [anon_sym_for] = ACTIONS(2910), + [anon_sym_POUND] = ACTIONS(2910), + [anon_sym_asm] = ACTIONS(2910), + [anon_sym_AT_LBRACK] = ACTIONS(2910), + [sym___double_quote] = ACTIONS(2910), + [sym___single_quote] = ACTIONS(2910), + [sym___c_double_quote] = ACTIONS(2910), + [sym___c_single_quote] = ACTIONS(2910), + [sym___r_double_quote] = ACTIONS(2910), + [sym___r_single_quote] = ACTIONS(2910), }, [1095] = { [sym_line_comment] = STATE(1095), [sym_block_comment] = STATE(1095), - [ts_builtin_sym_end] = ACTIONS(2523), - [sym_identifier] = ACTIONS(2525), - [anon_sym_LF] = ACTIONS(2525), - [anon_sym_CR] = ACTIONS(2525), - [anon_sym_CR_LF] = ACTIONS(2525), + [ts_builtin_sym_end] = ACTIONS(3048), + [sym_identifier] = ACTIONS(3050), + [anon_sym_LF] = ACTIONS(3050), + [anon_sym_CR] = ACTIONS(3050), + [anon_sym_CR_LF] = ACTIONS(3050), [anon_sym_SLASH_SLASH] = ACTIONS(497), [anon_sym_SLASH_STAR] = ACTIONS(499), - [anon_sym_DOT] = ACTIONS(2525), - [anon_sym_as] = ACTIONS(2525), - [anon_sym_LBRACE] = ACTIONS(2525), - [anon_sym_COMMA] = ACTIONS(2525), - [anon_sym_const] = ACTIONS(2525), - [anon_sym_LPAREN] = ACTIONS(2525), - [anon_sym___global] = ACTIONS(2525), - [anon_sym_type] = ACTIONS(2525), - [anon_sym_PIPE] = ACTIONS(2525), - [anon_sym_fn] = ACTIONS(2525), - [anon_sym_PLUS] = ACTIONS(2525), - [anon_sym_DASH] = ACTIONS(2525), - [anon_sym_STAR] = ACTIONS(2525), - [anon_sym_SLASH] = ACTIONS(2525), - [anon_sym_PERCENT] = ACTIONS(2525), - [anon_sym_LT] = ACTIONS(2525), - [anon_sym_GT] = ACTIONS(2525), - [anon_sym_EQ_EQ] = ACTIONS(2525), - [anon_sym_BANG_EQ] = ACTIONS(2525), - [anon_sym_LT_EQ] = ACTIONS(2525), - [anon_sym_GT_EQ] = ACTIONS(2525), - [anon_sym_LBRACK] = ACTIONS(2523), - [anon_sym_struct] = ACTIONS(2525), - [anon_sym_union] = ACTIONS(2525), - [anon_sym_pub] = ACTIONS(2525), - [anon_sym_mut] = ACTIONS(2525), - [anon_sym_enum] = ACTIONS(2525), - [anon_sym_interface] = ACTIONS(2525), - [anon_sym_PLUS_PLUS] = ACTIONS(2525), - [anon_sym_DASH_DASH] = ACTIONS(2525), - [anon_sym_QMARK] = ACTIONS(2525), - [anon_sym_BANG] = ACTIONS(3594), - [anon_sym_go] = ACTIONS(2525), - [anon_sym_spawn] = ACTIONS(2525), - [anon_sym_json_DOTdecode] = ACTIONS(2525), - [anon_sym_LBRACK2] = ACTIONS(2525), - [anon_sym_TILDE] = ACTIONS(2525), - [anon_sym_CARET] = ACTIONS(2525), - [anon_sym_AMP] = ACTIONS(2525), - [anon_sym_LT_DASH] = ACTIONS(2525), - [anon_sym_LT_LT] = ACTIONS(2525), - [anon_sym_GT_GT] = ACTIONS(2525), - [anon_sym_GT_GT_GT] = ACTIONS(2525), - [anon_sym_AMP_CARET] = ACTIONS(2525), - [anon_sym_AMP_AMP] = ACTIONS(2525), - [anon_sym_PIPE_PIPE] = ACTIONS(2525), - [anon_sym_or] = ACTIONS(2525), - [sym_none] = ACTIONS(2525), - [sym_true] = ACTIONS(2525), - [sym_false] = ACTIONS(2525), - [sym_nil] = ACTIONS(2525), - [anon_sym_QMARK_DOT] = ACTIONS(2525), - [anon_sym_POUND_LBRACK] = ACTIONS(2525), - [anon_sym_if] = ACTIONS(2525), - [anon_sym_DOLLARif] = ACTIONS(2525), - [anon_sym_is] = ACTIONS(2525), - [anon_sym_BANGis] = ACTIONS(2525), - [anon_sym_in] = ACTIONS(2525), - [anon_sym_BANGin] = ACTIONS(2525), - [anon_sym_match] = ACTIONS(2525), - [anon_sym_select] = ACTIONS(2525), - [anon_sym_lock] = ACTIONS(2525), - [anon_sym_rlock] = ACTIONS(2525), - [anon_sym_unsafe] = ACTIONS(2525), - [anon_sym_sql] = ACTIONS(2525), - [sym_int_literal] = ACTIONS(2525), - [sym_float_literal] = ACTIONS(2525), - [sym_rune_literal] = ACTIONS(2525), - [sym_pseudo_compile_time_identifier] = ACTIONS(2525), - [anon_sym_shared] = ACTIONS(2525), - [anon_sym_map_LBRACK] = ACTIONS(2525), - [anon_sym_chan] = ACTIONS(2525), - [anon_sym_thread] = ACTIONS(2525), - [anon_sym_atomic] = ACTIONS(2525), - [anon_sym_assert] = ACTIONS(2525), - [anon_sym_defer] = ACTIONS(2525), - [anon_sym_goto] = ACTIONS(2525), - [anon_sym_break] = ACTIONS(2525), - [anon_sym_continue] = ACTIONS(2525), - [anon_sym_return] = ACTIONS(2525), - [anon_sym_DOLLARfor] = ACTIONS(2525), - [anon_sym_for] = ACTIONS(2525), - [anon_sym_POUND] = ACTIONS(2525), - [anon_sym_asm] = ACTIONS(2525), - [anon_sym_AT_LBRACK] = ACTIONS(2525), - [sym___double_quote] = ACTIONS(2525), - [sym___single_quote] = ACTIONS(2525), - [sym___c_double_quote] = ACTIONS(2525), - [sym___c_single_quote] = ACTIONS(2525), - [sym___r_double_quote] = ACTIONS(2525), - [sym___r_single_quote] = ACTIONS(2525), + [anon_sym_DOT] = ACTIONS(3050), + [anon_sym_as] = ACTIONS(3050), + [anon_sym_LBRACE] = ACTIONS(3050), + [anon_sym_COMMA] = ACTIONS(3050), + [anon_sym_const] = ACTIONS(3050), + [anon_sym_LPAREN] = ACTIONS(3050), + [anon_sym___global] = ACTIONS(3050), + [anon_sym_type] = ACTIONS(3050), + [anon_sym_PIPE] = ACTIONS(3050), + [anon_sym_fn] = ACTIONS(3050), + [anon_sym_PLUS] = ACTIONS(3050), + [anon_sym_DASH] = ACTIONS(3050), + [anon_sym_STAR] = ACTIONS(3050), + [anon_sym_SLASH] = ACTIONS(3050), + [anon_sym_PERCENT] = ACTIONS(3050), + [anon_sym_LT] = ACTIONS(3050), + [anon_sym_GT] = ACTIONS(3050), + [anon_sym_EQ_EQ] = ACTIONS(3050), + [anon_sym_BANG_EQ] = ACTIONS(3050), + [anon_sym_LT_EQ] = ACTIONS(3050), + [anon_sym_GT_EQ] = ACTIONS(3050), + [anon_sym_LBRACK] = ACTIONS(3048), + [anon_sym_struct] = ACTIONS(3050), + [anon_sym_union] = ACTIONS(3050), + [anon_sym_pub] = ACTIONS(3050), + [anon_sym_mut] = ACTIONS(3050), + [anon_sym_enum] = ACTIONS(3050), + [anon_sym_interface] = ACTIONS(3050), + [anon_sym_PLUS_PLUS] = ACTIONS(3050), + [anon_sym_DASH_DASH] = ACTIONS(3050), + [anon_sym_QMARK] = ACTIONS(3050), + [anon_sym_BANG] = ACTIONS(3050), + [anon_sym_go] = ACTIONS(3050), + [anon_sym_spawn] = ACTIONS(3050), + [anon_sym_json_DOTdecode] = ACTIONS(3050), + [anon_sym_LBRACK2] = ACTIONS(3050), + [anon_sym_TILDE] = ACTIONS(3050), + [anon_sym_CARET] = ACTIONS(3050), + [anon_sym_AMP] = ACTIONS(3050), + [anon_sym_LT_DASH] = ACTIONS(3050), + [anon_sym_LT_LT] = ACTIONS(3050), + [anon_sym_GT_GT] = ACTIONS(3050), + [anon_sym_GT_GT_GT] = ACTIONS(3050), + [anon_sym_AMP_CARET] = ACTIONS(3050), + [anon_sym_AMP_AMP] = ACTIONS(3050), + [anon_sym_PIPE_PIPE] = ACTIONS(3050), + [anon_sym_or] = ACTIONS(3050), + [sym_none] = ACTIONS(3050), + [sym_true] = ACTIONS(3050), + [sym_false] = ACTIONS(3050), + [sym_nil] = ACTIONS(3050), + [anon_sym_QMARK_DOT] = ACTIONS(3050), + [anon_sym_POUND_LBRACK] = ACTIONS(3050), + [anon_sym_if] = ACTIONS(3050), + [anon_sym_DOLLARif] = ACTIONS(3050), + [anon_sym_is] = ACTIONS(3050), + [anon_sym_BANGis] = ACTIONS(3050), + [anon_sym_in] = ACTIONS(3050), + [anon_sym_BANGin] = ACTIONS(3050), + [anon_sym_match] = ACTIONS(3050), + [anon_sym_select] = ACTIONS(3050), + [anon_sym_lock] = ACTIONS(3050), + [anon_sym_rlock] = ACTIONS(3050), + [anon_sym_unsafe] = ACTIONS(3050), + [anon_sym_sql] = ACTIONS(3050), + [sym_int_literal] = ACTIONS(3050), + [sym_float_literal] = ACTIONS(3050), + [sym_rune_literal] = ACTIONS(3050), + [sym_pseudo_compile_time_identifier] = ACTIONS(3050), + [anon_sym_shared] = ACTIONS(3050), + [anon_sym_map_LBRACK] = ACTIONS(3050), + [anon_sym_chan] = ACTIONS(3050), + [anon_sym_thread] = ACTIONS(3050), + [anon_sym_atomic] = ACTIONS(3050), + [anon_sym_assert] = ACTIONS(3050), + [anon_sym_defer] = ACTIONS(3050), + [anon_sym_goto] = ACTIONS(3050), + [anon_sym_break] = ACTIONS(3050), + [anon_sym_continue] = ACTIONS(3050), + [anon_sym_return] = ACTIONS(3050), + [anon_sym_DOLLARfor] = ACTIONS(3050), + [anon_sym_for] = ACTIONS(3050), + [anon_sym_POUND] = ACTIONS(3050), + [anon_sym_asm] = ACTIONS(3050), + [anon_sym_AT_LBRACK] = ACTIONS(3050), + [sym___double_quote] = ACTIONS(3050), + [sym___single_quote] = ACTIONS(3050), + [sym___c_double_quote] = ACTIONS(3050), + [sym___c_single_quote] = ACTIONS(3050), + [sym___r_double_quote] = ACTIONS(3050), + [sym___r_single_quote] = ACTIONS(3050), }, [1096] = { [sym_line_comment] = STATE(1096), [sym_block_comment] = STATE(1096), - [ts_builtin_sym_end] = ACTIONS(2241), - [sym_identifier] = ACTIONS(2243), - [anon_sym_LF] = ACTIONS(2243), - [anon_sym_CR] = ACTIONS(2243), - [anon_sym_CR_LF] = ACTIONS(2243), + [ts_builtin_sym_end] = ACTIONS(1989), + [sym_identifier] = ACTIONS(1987), + [anon_sym_LF] = ACTIONS(1987), + [anon_sym_CR] = ACTIONS(1987), + [anon_sym_CR_LF] = ACTIONS(1987), [anon_sym_SLASH_SLASH] = ACTIONS(497), [anon_sym_SLASH_STAR] = ACTIONS(499), - [anon_sym_DOT] = ACTIONS(2243), - [anon_sym_as] = ACTIONS(2243), - [anon_sym_LBRACE] = ACTIONS(2243), - [anon_sym_COMMA] = ACTIONS(2243), - [anon_sym_const] = ACTIONS(2243), - [anon_sym_LPAREN] = ACTIONS(2243), - [anon_sym___global] = ACTIONS(2243), - [anon_sym_type] = ACTIONS(2243), - [anon_sym_PIPE] = ACTIONS(2243), - [anon_sym_fn] = ACTIONS(2243), - [anon_sym_PLUS] = ACTIONS(2243), - [anon_sym_DASH] = ACTIONS(2243), - [anon_sym_STAR] = ACTIONS(2243), - [anon_sym_SLASH] = ACTIONS(2243), - [anon_sym_PERCENT] = ACTIONS(2243), - [anon_sym_LT] = ACTIONS(2243), - [anon_sym_GT] = ACTIONS(2243), - [anon_sym_EQ_EQ] = ACTIONS(2243), - [anon_sym_BANG_EQ] = ACTIONS(2243), - [anon_sym_LT_EQ] = ACTIONS(2243), - [anon_sym_GT_EQ] = ACTIONS(2243), - [anon_sym_LBRACK] = ACTIONS(2241), - [anon_sym_struct] = ACTIONS(2243), - [anon_sym_union] = ACTIONS(2243), - [anon_sym_pub] = ACTIONS(2243), - [anon_sym_mut] = ACTIONS(2243), - [anon_sym_enum] = ACTIONS(2243), - [anon_sym_interface] = ACTIONS(2243), - [anon_sym_PLUS_PLUS] = ACTIONS(2243), - [anon_sym_DASH_DASH] = ACTIONS(2243), - [anon_sym_QMARK] = ACTIONS(2243), - [anon_sym_BANG] = ACTIONS(2243), - [anon_sym_go] = ACTIONS(2243), - [anon_sym_spawn] = ACTIONS(2243), - [anon_sym_json_DOTdecode] = ACTIONS(2243), - [anon_sym_LBRACK2] = ACTIONS(2243), - [anon_sym_TILDE] = ACTIONS(2243), - [anon_sym_CARET] = ACTIONS(2243), - [anon_sym_AMP] = ACTIONS(2243), - [anon_sym_LT_DASH] = ACTIONS(2243), - [anon_sym_LT_LT] = ACTIONS(2243), - [anon_sym_GT_GT] = ACTIONS(2243), - [anon_sym_GT_GT_GT] = ACTIONS(2243), - [anon_sym_AMP_CARET] = ACTIONS(2243), - [anon_sym_AMP_AMP] = ACTIONS(2243), - [anon_sym_PIPE_PIPE] = ACTIONS(2243), - [anon_sym_or] = ACTIONS(2243), - [sym_none] = ACTIONS(2243), - [sym_true] = ACTIONS(2243), - [sym_false] = ACTIONS(2243), - [sym_nil] = ACTIONS(2243), - [anon_sym_QMARK_DOT] = ACTIONS(2243), - [anon_sym_POUND_LBRACK] = ACTIONS(2243), - [anon_sym_if] = ACTIONS(2243), - [anon_sym_DOLLARif] = ACTIONS(2243), - [anon_sym_is] = ACTIONS(2243), - [anon_sym_BANGis] = ACTIONS(2243), - [anon_sym_in] = ACTIONS(2243), - [anon_sym_BANGin] = ACTIONS(2243), - [anon_sym_match] = ACTIONS(2243), - [anon_sym_select] = ACTIONS(2243), - [anon_sym_lock] = ACTIONS(2243), - [anon_sym_rlock] = ACTIONS(2243), - [anon_sym_unsafe] = ACTIONS(2243), - [anon_sym_sql] = ACTIONS(2243), - [sym_int_literal] = ACTIONS(2243), - [sym_float_literal] = ACTIONS(2243), - [sym_rune_literal] = ACTIONS(2243), - [sym_pseudo_compile_time_identifier] = ACTIONS(2243), - [anon_sym_shared] = ACTIONS(2243), - [anon_sym_map_LBRACK] = ACTIONS(2243), - [anon_sym_chan] = ACTIONS(2243), - [anon_sym_thread] = ACTIONS(2243), - [anon_sym_atomic] = ACTIONS(2243), - [anon_sym_assert] = ACTIONS(2243), - [anon_sym_defer] = ACTIONS(2243), - [anon_sym_goto] = ACTIONS(2243), - [anon_sym_break] = ACTIONS(2243), - [anon_sym_continue] = ACTIONS(2243), - [anon_sym_return] = ACTIONS(2243), - [anon_sym_DOLLARfor] = ACTIONS(2243), - [anon_sym_for] = ACTIONS(2243), - [anon_sym_POUND] = ACTIONS(2243), - [anon_sym_asm] = ACTIONS(2243), - [anon_sym_AT_LBRACK] = ACTIONS(2243), - [sym___double_quote] = ACTIONS(2243), - [sym___single_quote] = ACTIONS(2243), - [sym___c_double_quote] = ACTIONS(2243), - [sym___c_single_quote] = ACTIONS(2243), - [sym___r_double_quote] = ACTIONS(2243), - [sym___r_single_quote] = ACTIONS(2243), + [anon_sym_DOT] = ACTIONS(1987), + [anon_sym_as] = ACTIONS(1987), + [anon_sym_LBRACE] = ACTIONS(1987), + [anon_sym_COMMA] = ACTIONS(1987), + [anon_sym_const] = ACTIONS(1987), + [anon_sym_LPAREN] = ACTIONS(1987), + [anon_sym___global] = ACTIONS(1987), + [anon_sym_type] = ACTIONS(1987), + [anon_sym_PIPE] = ACTIONS(1987), + [anon_sym_fn] = ACTIONS(1987), + [anon_sym_PLUS] = ACTIONS(1987), + [anon_sym_DASH] = ACTIONS(1987), + [anon_sym_STAR] = ACTIONS(1987), + [anon_sym_SLASH] = ACTIONS(1987), + [anon_sym_PERCENT] = ACTIONS(1987), + [anon_sym_LT] = ACTIONS(1987), + [anon_sym_GT] = ACTIONS(1987), + [anon_sym_EQ_EQ] = ACTIONS(1987), + [anon_sym_BANG_EQ] = ACTIONS(1987), + [anon_sym_LT_EQ] = ACTIONS(1987), + [anon_sym_GT_EQ] = ACTIONS(1987), + [anon_sym_LBRACK] = ACTIONS(1989), + [anon_sym_struct] = ACTIONS(1987), + [anon_sym_union] = ACTIONS(1987), + [anon_sym_pub] = ACTIONS(1987), + [anon_sym_mut] = ACTIONS(1987), + [anon_sym_enum] = ACTIONS(1987), + [anon_sym_interface] = ACTIONS(1987), + [anon_sym_PLUS_PLUS] = ACTIONS(1987), + [anon_sym_DASH_DASH] = ACTIONS(1987), + [anon_sym_QMARK] = ACTIONS(1987), + [anon_sym_BANG] = ACTIONS(1987), + [anon_sym_go] = ACTIONS(1987), + [anon_sym_spawn] = ACTIONS(1987), + [anon_sym_json_DOTdecode] = ACTIONS(1987), + [anon_sym_LBRACK2] = ACTIONS(1987), + [anon_sym_TILDE] = ACTIONS(1987), + [anon_sym_CARET] = ACTIONS(1987), + [anon_sym_AMP] = ACTIONS(1987), + [anon_sym_LT_DASH] = ACTIONS(1987), + [anon_sym_LT_LT] = ACTIONS(1987), + [anon_sym_GT_GT] = ACTIONS(1987), + [anon_sym_GT_GT_GT] = ACTIONS(1987), + [anon_sym_AMP_CARET] = ACTIONS(1987), + [anon_sym_AMP_AMP] = ACTIONS(1987), + [anon_sym_PIPE_PIPE] = ACTIONS(1987), + [anon_sym_or] = ACTIONS(1987), + [sym_none] = ACTIONS(1987), + [sym_true] = ACTIONS(1987), + [sym_false] = ACTIONS(1987), + [sym_nil] = ACTIONS(1987), + [anon_sym_QMARK_DOT] = ACTIONS(1987), + [anon_sym_POUND_LBRACK] = ACTIONS(1987), + [anon_sym_if] = ACTIONS(1987), + [anon_sym_DOLLARif] = ACTIONS(1987), + [anon_sym_is] = ACTIONS(1987), + [anon_sym_BANGis] = ACTIONS(1987), + [anon_sym_in] = ACTIONS(1987), + [anon_sym_BANGin] = ACTIONS(1987), + [anon_sym_match] = ACTIONS(1987), + [anon_sym_select] = ACTIONS(1987), + [anon_sym_lock] = ACTIONS(1987), + [anon_sym_rlock] = ACTIONS(1987), + [anon_sym_unsafe] = ACTIONS(1987), + [anon_sym_sql] = ACTIONS(1987), + [sym_int_literal] = ACTIONS(1987), + [sym_float_literal] = ACTIONS(1987), + [sym_rune_literal] = ACTIONS(1987), + [sym_pseudo_compile_time_identifier] = ACTIONS(1987), + [anon_sym_shared] = ACTIONS(1987), + [anon_sym_map_LBRACK] = ACTIONS(1987), + [anon_sym_chan] = ACTIONS(1987), + [anon_sym_thread] = ACTIONS(1987), + [anon_sym_atomic] = ACTIONS(1987), + [anon_sym_assert] = ACTIONS(1987), + [anon_sym_defer] = ACTIONS(1987), + [anon_sym_goto] = ACTIONS(1987), + [anon_sym_break] = ACTIONS(1987), + [anon_sym_continue] = ACTIONS(1987), + [anon_sym_return] = ACTIONS(1987), + [anon_sym_DOLLARfor] = ACTIONS(1987), + [anon_sym_for] = ACTIONS(1987), + [anon_sym_POUND] = ACTIONS(1987), + [anon_sym_asm] = ACTIONS(1987), + [anon_sym_AT_LBRACK] = ACTIONS(1987), + [sym___double_quote] = ACTIONS(1987), + [sym___single_quote] = ACTIONS(1987), + [sym___c_double_quote] = ACTIONS(1987), + [sym___c_single_quote] = ACTIONS(1987), + [sym___r_double_quote] = ACTIONS(1987), + [sym___r_single_quote] = ACTIONS(1987), }, [1097] = { [sym_line_comment] = STATE(1097), [sym_block_comment] = STATE(1097), - [sym_reference_expression] = STATE(4459), - [sym_type_reference_expression] = STATE(1402), - [sym_plain_type] = STATE(1425), - [sym__plain_type_without_special] = STATE(1418), - [sym_anon_struct_type] = STATE(1419), - [sym_multi_return_type] = STATE(1418), - [sym_result_type] = STATE(1418), - [sym_option_type] = STATE(1418), - [sym_qualified_type] = STATE(1402), - [sym_fixed_array_type] = STATE(1419), - [sym_array_type] = STATE(1419), - [sym_pointer_type] = STATE(1419), - [sym_wrong_pointer_type] = STATE(1419), - [sym_map_type] = STATE(1419), - [sym_channel_type] = STATE(1419), - [sym_shared_type] = STATE(1419), - [sym_thread_type] = STATE(1419), - [sym_atomic_type] = STATE(1419), - [sym_generic_type] = STATE(1419), - [sym_function_type] = STATE(1419), - [ts_builtin_sym_end] = ACTIONS(625), - [sym_identifier] = ACTIONS(3596), - [anon_sym_LF] = ACTIONS(627), - [anon_sym_CR] = ACTIONS(627), - [anon_sym_CR_LF] = ACTIONS(627), - [anon_sym_SLASH_SLASH] = ACTIONS(497), - [anon_sym_SLASH_STAR] = ACTIONS(499), - [anon_sym_DOT] = ACTIONS(627), - [anon_sym_LBRACE] = ACTIONS(627), - [anon_sym_const] = ACTIONS(627), - [anon_sym_LPAREN] = ACTIONS(3598), - [anon_sym___global] = ACTIONS(627), - [anon_sym_type] = ACTIONS(627), - [anon_sym_PIPE] = ACTIONS(627), - [anon_sym_fn] = ACTIONS(3600), - [anon_sym_PLUS] = ACTIONS(627), - [anon_sym_DASH] = ACTIONS(627), - [anon_sym_STAR] = ACTIONS(3602), - [anon_sym_struct] = ACTIONS(3604), - [anon_sym_union] = ACTIONS(627), - [anon_sym_pub] = ACTIONS(627), - [anon_sym_mut] = ACTIONS(627), - [anon_sym_enum] = ACTIONS(627), - [anon_sym_interface] = ACTIONS(627), - [anon_sym_QMARK] = ACTIONS(3606), - [anon_sym_BANG] = ACTIONS(3608), - [anon_sym_go] = ACTIONS(627), - [anon_sym_spawn] = ACTIONS(627), - [anon_sym_json_DOTdecode] = ACTIONS(627), - [anon_sym_LBRACK2] = ACTIONS(3610), - [anon_sym_TILDE] = ACTIONS(627), - [anon_sym_CARET] = ACTIONS(627), - [anon_sym_AMP] = ACTIONS(3612), - [anon_sym_LT_DASH] = ACTIONS(627), - [sym_none] = ACTIONS(627), - [sym_true] = ACTIONS(627), - [sym_false] = ACTIONS(627), - [sym_nil] = ACTIONS(627), - [anon_sym_if] = ACTIONS(627), - [anon_sym_DOLLARif] = ACTIONS(627), - [anon_sym_match] = ACTIONS(627), - [anon_sym_select] = ACTIONS(627), - [anon_sym_lock] = ACTIONS(627), - [anon_sym_rlock] = ACTIONS(627), - [anon_sym_unsafe] = ACTIONS(627), - [anon_sym_sql] = ACTIONS(627), - [sym_int_literal] = ACTIONS(627), - [sym_float_literal] = ACTIONS(627), - [sym_rune_literal] = ACTIONS(627), - [sym_pseudo_compile_time_identifier] = ACTIONS(627), - [anon_sym_shared] = ACTIONS(3614), - [anon_sym_map_LBRACK] = ACTIONS(3616), - [anon_sym_chan] = ACTIONS(3618), - [anon_sym_thread] = ACTIONS(3620), - [anon_sym_atomic] = ACTIONS(3622), - [anon_sym_assert] = ACTIONS(627), - [anon_sym_defer] = ACTIONS(627), - [anon_sym_goto] = ACTIONS(627), - [anon_sym_break] = ACTIONS(627), - [anon_sym_continue] = ACTIONS(627), - [anon_sym_return] = ACTIONS(627), - [anon_sym_DOLLARfor] = ACTIONS(627), - [anon_sym_for] = ACTIONS(627), - [anon_sym_POUND] = ACTIONS(627), - [anon_sym_asm] = ACTIONS(627), - [anon_sym_AT_LBRACK] = ACTIONS(627), - [sym___double_quote] = ACTIONS(627), - [sym___single_quote] = ACTIONS(627), - [sym___c_double_quote] = ACTIONS(627), - [sym___c_single_quote] = ACTIONS(627), - [sym___r_double_quote] = ACTIONS(627), - [sym___r_single_quote] = ACTIONS(627), - }, - [1098] = { - [sym_line_comment] = STATE(1098), - [sym_block_comment] = STATE(1098), - [sym_reference_expression] = STATE(4459), - [sym_type_reference_expression] = STATE(1402), - [sym_plain_type] = STATE(1449), - [sym__plain_type_without_special] = STATE(1418), - [sym_anon_struct_type] = STATE(1419), - [sym_multi_return_type] = STATE(1418), - [sym_result_type] = STATE(1418), - [sym_option_type] = STATE(1418), - [sym_qualified_type] = STATE(1402), - [sym_fixed_array_type] = STATE(1419), - [sym_array_type] = STATE(1419), - [sym_pointer_type] = STATE(1419), - [sym_wrong_pointer_type] = STATE(1419), - [sym_map_type] = STATE(1419), - [sym_channel_type] = STATE(1419), - [sym_shared_type] = STATE(1419), - [sym_thread_type] = STATE(1419), - [sym_atomic_type] = STATE(1419), - [sym_generic_type] = STATE(1419), - [sym_function_type] = STATE(1419), - [ts_builtin_sym_end] = ACTIONS(617), - [sym_identifier] = ACTIONS(3596), - [anon_sym_LF] = ACTIONS(619), - [anon_sym_CR] = ACTIONS(619), - [anon_sym_CR_LF] = ACTIONS(619), + [ts_builtin_sym_end] = ACTIONS(2796), + [sym_identifier] = ACTIONS(2798), + [anon_sym_LF] = ACTIONS(2798), + [anon_sym_CR] = ACTIONS(2798), + [anon_sym_CR_LF] = ACTIONS(2798), [anon_sym_SLASH_SLASH] = ACTIONS(497), [anon_sym_SLASH_STAR] = ACTIONS(499), - [anon_sym_DOT] = ACTIONS(619), - [anon_sym_LBRACE] = ACTIONS(619), - [anon_sym_const] = ACTIONS(619), - [anon_sym_LPAREN] = ACTIONS(3598), - [anon_sym___global] = ACTIONS(619), - [anon_sym_type] = ACTIONS(619), - [anon_sym_PIPE] = ACTIONS(619), - [anon_sym_fn] = ACTIONS(3600), - [anon_sym_PLUS] = ACTIONS(619), - [anon_sym_DASH] = ACTIONS(619), - [anon_sym_STAR] = ACTIONS(3602), - [anon_sym_struct] = ACTIONS(3604), - [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(3606), - [anon_sym_BANG] = ACTIONS(3608), - [anon_sym_go] = ACTIONS(619), - [anon_sym_spawn] = ACTIONS(619), - [anon_sym_json_DOTdecode] = ACTIONS(619), - [anon_sym_LBRACK2] = ACTIONS(3610), - [anon_sym_TILDE] = ACTIONS(619), - [anon_sym_CARET] = ACTIONS(619), - [anon_sym_AMP] = ACTIONS(3612), - [anon_sym_LT_DASH] = ACTIONS(619), - [sym_none] = ACTIONS(619), - [sym_true] = ACTIONS(619), + [anon_sym_DOT] = ACTIONS(2798), + [anon_sym_as] = ACTIONS(2798), + [anon_sym_LBRACE] = ACTIONS(2798), + [anon_sym_COMMA] = ACTIONS(2798), + [anon_sym_const] = ACTIONS(2798), + [anon_sym_LPAREN] = ACTIONS(2798), + [anon_sym___global] = ACTIONS(2798), + [anon_sym_type] = ACTIONS(2798), + [anon_sym_PIPE] = ACTIONS(2798), + [anon_sym_fn] = ACTIONS(2798), + [anon_sym_PLUS] = ACTIONS(2798), + [anon_sym_DASH] = ACTIONS(2798), + [anon_sym_STAR] = ACTIONS(2798), + [anon_sym_SLASH] = ACTIONS(2798), + [anon_sym_PERCENT] = ACTIONS(2798), + [anon_sym_LT] = ACTIONS(2798), + [anon_sym_GT] = ACTIONS(2798), + [anon_sym_EQ_EQ] = ACTIONS(2798), + [anon_sym_BANG_EQ] = ACTIONS(2798), + [anon_sym_LT_EQ] = ACTIONS(2798), + [anon_sym_GT_EQ] = ACTIONS(2798), + [anon_sym_LBRACK] = ACTIONS(2796), + [anon_sym_struct] = ACTIONS(2798), + [anon_sym_union] = ACTIONS(2798), + [anon_sym_pub] = ACTIONS(2798), + [anon_sym_mut] = ACTIONS(2798), + [anon_sym_enum] = ACTIONS(2798), + [anon_sym_interface] = ACTIONS(2798), + [anon_sym_PLUS_PLUS] = ACTIONS(2798), + [anon_sym_DASH_DASH] = ACTIONS(2798), + [anon_sym_QMARK] = ACTIONS(2798), + [anon_sym_BANG] = ACTIONS(2798), + [anon_sym_go] = ACTIONS(2798), + [anon_sym_spawn] = ACTIONS(2798), + [anon_sym_json_DOTdecode] = ACTIONS(2798), + [anon_sym_LBRACK2] = ACTIONS(2798), + [anon_sym_TILDE] = ACTIONS(2798), + [anon_sym_CARET] = ACTIONS(2798), + [anon_sym_AMP] = ACTIONS(2798), + [anon_sym_LT_DASH] = ACTIONS(2798), + [anon_sym_LT_LT] = ACTIONS(2798), + [anon_sym_GT_GT] = ACTIONS(2798), + [anon_sym_GT_GT_GT] = ACTIONS(2798), + [anon_sym_AMP_CARET] = ACTIONS(2798), + [anon_sym_AMP_AMP] = ACTIONS(2798), + [anon_sym_PIPE_PIPE] = ACTIONS(2798), + [anon_sym_or] = ACTIONS(2798), + [sym_none] = ACTIONS(2798), + [sym_true] = ACTIONS(2798), + [sym_false] = ACTIONS(2798), + [sym_nil] = ACTIONS(2798), + [anon_sym_QMARK_DOT] = ACTIONS(2798), + [anon_sym_POUND_LBRACK] = ACTIONS(2798), + [anon_sym_if] = ACTIONS(2798), + [anon_sym_DOLLARif] = ACTIONS(2798), + [anon_sym_is] = ACTIONS(2798), + [anon_sym_BANGis] = ACTIONS(2798), + [anon_sym_in] = ACTIONS(2798), + [anon_sym_BANGin] = ACTIONS(2798), + [anon_sym_match] = ACTIONS(2798), + [anon_sym_select] = ACTIONS(2798), + [anon_sym_lock] = ACTIONS(2798), + [anon_sym_rlock] = ACTIONS(2798), + [anon_sym_unsafe] = ACTIONS(2798), + [anon_sym_sql] = ACTIONS(2798), + [sym_int_literal] = ACTIONS(2798), + [sym_float_literal] = ACTIONS(2798), + [sym_rune_literal] = ACTIONS(2798), + [sym_pseudo_compile_time_identifier] = ACTIONS(2798), + [anon_sym_shared] = ACTIONS(2798), + [anon_sym_map_LBRACK] = ACTIONS(2798), + [anon_sym_chan] = ACTIONS(2798), + [anon_sym_thread] = ACTIONS(2798), + [anon_sym_atomic] = ACTIONS(2798), + [anon_sym_assert] = ACTIONS(2798), + [anon_sym_defer] = ACTIONS(2798), + [anon_sym_goto] = ACTIONS(2798), + [anon_sym_break] = ACTIONS(2798), + [anon_sym_continue] = ACTIONS(2798), + [anon_sym_return] = ACTIONS(2798), + [anon_sym_DOLLARfor] = ACTIONS(2798), + [anon_sym_for] = ACTIONS(2798), + [anon_sym_POUND] = ACTIONS(2798), + [anon_sym_asm] = ACTIONS(2798), + [anon_sym_AT_LBRACK] = ACTIONS(2798), + [sym___double_quote] = ACTIONS(2798), + [sym___single_quote] = ACTIONS(2798), + [sym___c_double_quote] = ACTIONS(2798), + [sym___c_single_quote] = ACTIONS(2798), + [sym___r_double_quote] = ACTIONS(2798), + [sym___r_single_quote] = ACTIONS(2798), + }, + [1098] = { + [sym_line_comment] = STATE(1098), + [sym_block_comment] = STATE(1098), + [sym_reference_expression] = STATE(4496), + [sym_type_reference_expression] = STATE(1401), + [sym_plain_type] = STATE(1472), + [sym__plain_type_without_special] = STATE(1444), + [sym_anon_struct_type] = STATE(1445), + [sym_multi_return_type] = STATE(1444), + [sym_result_type] = STATE(1444), + [sym_option_type] = STATE(1444), + [sym_qualified_type] = STATE(1401), + [sym_fixed_array_type] = STATE(1445), + [sym_array_type] = STATE(1445), + [sym_pointer_type] = STATE(1445), + [sym_wrong_pointer_type] = STATE(1445), + [sym_map_type] = STATE(1445), + [sym_channel_type] = STATE(1445), + [sym_shared_type] = STATE(1445), + [sym_thread_type] = STATE(1445), + [sym_atomic_type] = STATE(1445), + [sym_generic_type] = STATE(1445), + [sym_function_type] = STATE(1445), + [ts_builtin_sym_end] = ACTIONS(621), + [sym_identifier] = ACTIONS(3602), + [anon_sym_LF] = ACTIONS(623), + [anon_sym_CR] = ACTIONS(623), + [anon_sym_CR_LF] = ACTIONS(623), + [anon_sym_SLASH_SLASH] = ACTIONS(497), + [anon_sym_SLASH_STAR] = ACTIONS(499), + [anon_sym_DOT] = ACTIONS(623), + [anon_sym_LBRACE] = ACTIONS(623), + [anon_sym_const] = ACTIONS(623), + [anon_sym_LPAREN] = ACTIONS(3604), + [anon_sym___global] = ACTIONS(623), + [anon_sym_type] = ACTIONS(623), + [anon_sym_PIPE] = ACTIONS(623), + [anon_sym_fn] = ACTIONS(3606), + [anon_sym_PLUS] = ACTIONS(623), + [anon_sym_DASH] = ACTIONS(623), + [anon_sym_STAR] = ACTIONS(3608), + [anon_sym_struct] = ACTIONS(3610), + [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(3612), + [anon_sym_BANG] = ACTIONS(3614), + [anon_sym_go] = ACTIONS(623), + [anon_sym_spawn] = ACTIONS(623), + [anon_sym_json_DOTdecode] = ACTIONS(623), + [anon_sym_LBRACK2] = ACTIONS(3616), + [anon_sym_TILDE] = ACTIONS(623), + [anon_sym_CARET] = ACTIONS(623), + [anon_sym_AMP] = ACTIONS(3618), + [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(3620), + [anon_sym_map_LBRACK] = ACTIONS(3622), + [anon_sym_chan] = ACTIONS(3624), + [anon_sym_thread] = ACTIONS(3626), + [anon_sym_atomic] = ACTIONS(3628), + [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), + }, + [1099] = { + [sym_line_comment] = STATE(1099), + [sym_block_comment] = STATE(1099), + [sym_reference_expression] = STATE(4496), + [sym_type_reference_expression] = STATE(1401), + [sym_plain_type] = STATE(1448), + [sym__plain_type_without_special] = STATE(1444), + [sym_anon_struct_type] = STATE(1445), + [sym_multi_return_type] = STATE(1444), + [sym_result_type] = STATE(1444), + [sym_option_type] = STATE(1444), + [sym_qualified_type] = STATE(1401), + [sym_fixed_array_type] = STATE(1445), + [sym_array_type] = STATE(1445), + [sym_pointer_type] = STATE(1445), + [sym_wrong_pointer_type] = STATE(1445), + [sym_map_type] = STATE(1445), + [sym_channel_type] = STATE(1445), + [sym_shared_type] = STATE(1445), + [sym_thread_type] = STATE(1445), + [sym_atomic_type] = STATE(1445), + [sym_generic_type] = STATE(1445), + [sym_function_type] = STATE(1445), + [ts_builtin_sym_end] = ACTIONS(617), + [sym_identifier] = ACTIONS(3602), + [anon_sym_LF] = ACTIONS(619), + [anon_sym_CR] = ACTIONS(619), + [anon_sym_CR_LF] = ACTIONS(619), + [anon_sym_SLASH_SLASH] = ACTIONS(497), + [anon_sym_SLASH_STAR] = ACTIONS(499), + [anon_sym_DOT] = ACTIONS(619), + [anon_sym_LBRACE] = ACTIONS(619), + [anon_sym_const] = ACTIONS(619), + [anon_sym_LPAREN] = ACTIONS(3604), + [anon_sym___global] = ACTIONS(619), + [anon_sym_type] = ACTIONS(619), + [anon_sym_PIPE] = ACTIONS(619), + [anon_sym_fn] = ACTIONS(3606), + [anon_sym_PLUS] = ACTIONS(619), + [anon_sym_DASH] = ACTIONS(619), + [anon_sym_STAR] = ACTIONS(3608), + [anon_sym_struct] = ACTIONS(3610), + [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(3612), + [anon_sym_BANG] = ACTIONS(3614), + [anon_sym_go] = ACTIONS(619), + [anon_sym_spawn] = ACTIONS(619), + [anon_sym_json_DOTdecode] = ACTIONS(619), + [anon_sym_LBRACK2] = ACTIONS(3616), + [anon_sym_TILDE] = ACTIONS(619), + [anon_sym_CARET] = ACTIONS(619), + [anon_sym_AMP] = ACTIONS(3618), + [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), @@ -147381,11 +147515,11 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(619), [sym_rune_literal] = ACTIONS(619), [sym_pseudo_compile_time_identifier] = ACTIONS(619), - [anon_sym_shared] = ACTIONS(3614), - [anon_sym_map_LBRACK] = ACTIONS(3616), - [anon_sym_chan] = ACTIONS(3618), - [anon_sym_thread] = ACTIONS(3620), - [anon_sym_atomic] = ACTIONS(3622), + [anon_sym_shared] = ACTIONS(3620), + [anon_sym_map_LBRACK] = ACTIONS(3622), + [anon_sym_chan] = ACTIONS(3624), + [anon_sym_thread] = ACTIONS(3626), + [anon_sym_atomic] = ACTIONS(3628), [anon_sym_assert] = ACTIONS(619), [anon_sym_defer] = ACTIONS(619), [anon_sym_goto] = ACTIONS(619), @@ -147404,400 +147538,126 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym___r_double_quote] = ACTIONS(619), [sym___r_single_quote] = ACTIONS(619), }, - [1099] = { - [sym_line_comment] = STATE(1099), - [sym_block_comment] = STATE(1099), - [sym_reference_expression] = STATE(4459), - [sym_type_reference_expression] = STATE(1402), - [sym_plain_type] = STATE(1455), - [sym__plain_type_without_special] = STATE(1418), - [sym_anon_struct_type] = STATE(1419), - [sym_multi_return_type] = STATE(1418), - [sym_result_type] = STATE(1418), - [sym_option_type] = STATE(1418), - [sym_qualified_type] = STATE(1402), - [sym_fixed_array_type] = STATE(1419), - [sym_array_type] = STATE(1419), - [sym_pointer_type] = STATE(1419), - [sym_wrong_pointer_type] = STATE(1419), - [sym_map_type] = STATE(1419), - [sym_channel_type] = STATE(1419), - [sym_shared_type] = STATE(1419), - [sym_thread_type] = STATE(1419), - [sym_atomic_type] = STATE(1419), - [sym_generic_type] = STATE(1419), - [sym_function_type] = STATE(1419), - [ts_builtin_sym_end] = ACTIONS(563), - [sym_identifier] = ACTIONS(3596), - [anon_sym_LF] = ACTIONS(567), - [anon_sym_CR] = ACTIONS(567), - [anon_sym_CR_LF] = ACTIONS(567), - [anon_sym_SLASH_SLASH] = ACTIONS(497), - [anon_sym_SLASH_STAR] = ACTIONS(499), - [anon_sym_DOT] = ACTIONS(567), - [anon_sym_LBRACE] = ACTIONS(567), - [anon_sym_const] = ACTIONS(567), - [anon_sym_LPAREN] = ACTIONS(3598), - [anon_sym___global] = ACTIONS(567), - [anon_sym_type] = ACTIONS(567), - [anon_sym_PIPE] = ACTIONS(567), - [anon_sym_fn] = ACTIONS(3600), - [anon_sym_PLUS] = ACTIONS(567), - [anon_sym_DASH] = ACTIONS(567), - [anon_sym_STAR] = ACTIONS(3602), - [anon_sym_struct] = ACTIONS(3604), - [anon_sym_union] = ACTIONS(567), - [anon_sym_pub] = ACTIONS(567), - [anon_sym_mut] = ACTIONS(567), - [anon_sym_enum] = ACTIONS(567), - [anon_sym_interface] = ACTIONS(567), - [anon_sym_QMARK] = ACTIONS(3606), - [anon_sym_BANG] = ACTIONS(3608), - [anon_sym_go] = ACTIONS(567), - [anon_sym_spawn] = ACTIONS(567), - [anon_sym_json_DOTdecode] = ACTIONS(567), - [anon_sym_LBRACK2] = ACTIONS(3610), - [anon_sym_TILDE] = ACTIONS(567), - [anon_sym_CARET] = ACTIONS(567), - [anon_sym_AMP] = ACTIONS(3612), - [anon_sym_LT_DASH] = ACTIONS(567), - [sym_none] = ACTIONS(567), - [sym_true] = ACTIONS(567), - [sym_false] = ACTIONS(567), - [sym_nil] = ACTIONS(567), - [anon_sym_if] = ACTIONS(567), - [anon_sym_DOLLARif] = ACTIONS(567), - [anon_sym_match] = ACTIONS(567), - [anon_sym_select] = ACTIONS(567), - [anon_sym_lock] = ACTIONS(567), - [anon_sym_rlock] = ACTIONS(567), - [anon_sym_unsafe] = ACTIONS(567), - [anon_sym_sql] = ACTIONS(567), - [sym_int_literal] = ACTIONS(567), - [sym_float_literal] = ACTIONS(567), - [sym_rune_literal] = ACTIONS(567), - [sym_pseudo_compile_time_identifier] = ACTIONS(567), - [anon_sym_shared] = ACTIONS(3614), - [anon_sym_map_LBRACK] = ACTIONS(3616), - [anon_sym_chan] = ACTIONS(3618), - [anon_sym_thread] = ACTIONS(3620), - [anon_sym_atomic] = ACTIONS(3622), - [anon_sym_assert] = ACTIONS(567), - [anon_sym_defer] = ACTIONS(567), - [anon_sym_goto] = ACTIONS(567), - [anon_sym_break] = ACTIONS(567), - [anon_sym_continue] = ACTIONS(567), - [anon_sym_return] = ACTIONS(567), - [anon_sym_DOLLARfor] = ACTIONS(567), - [anon_sym_for] = ACTIONS(567), - [anon_sym_POUND] = ACTIONS(567), - [anon_sym_asm] = ACTIONS(567), - [anon_sym_AT_LBRACK] = ACTIONS(567), - [sym___double_quote] = ACTIONS(567), - [sym___single_quote] = ACTIONS(567), - [sym___c_double_quote] = ACTIONS(567), - [sym___c_single_quote] = ACTIONS(567), - [sym___r_double_quote] = ACTIONS(567), - [sym___r_single_quote] = ACTIONS(567), - }, [1100] = { [sym_line_comment] = STATE(1100), [sym_block_comment] = STATE(1100), - [sym_reference_expression] = STATE(4495), - [sym_type_reference_expression] = STATE(3541), - [sym_plain_type] = STATE(2391), - [sym__plain_type_without_special] = STATE(2302), - [sym_anon_struct_type] = STATE(2303), - [sym_multi_return_type] = STATE(2302), - [sym_result_type] = STATE(2302), - [sym_option_type] = STATE(2302), - [sym_qualified_type] = STATE(3541), - [sym_fixed_array_type] = STATE(2303), - [sym_array_type] = STATE(2303), - [sym_pointer_type] = STATE(2303), - [sym_wrong_pointer_type] = STATE(2303), - [sym_map_type] = STATE(2303), - [sym_channel_type] = STATE(2303), - [sym_shared_type] = STATE(2303), - [sym_thread_type] = STATE(2303), - [sym_atomic_type] = STATE(2303), - [sym_generic_type] = STATE(2303), - [sym_function_type] = STATE(2303), - [sym_identifier] = ACTIONS(597), - [anon_sym_LF] = ACTIONS(623), - [anon_sym_CR] = ACTIONS(623), - [anon_sym_CR_LF] = ACTIONS(623), + [sym_reference_expression] = STATE(4496), + [sym_type_reference_expression] = STATE(1401), + [sym_plain_type] = STATE(1467), + [sym__plain_type_without_special] = STATE(1444), + [sym_anon_struct_type] = STATE(1445), + [sym_multi_return_type] = STATE(1444), + [sym_result_type] = STATE(1444), + [sym_option_type] = STATE(1444), + [sym_qualified_type] = STATE(1401), + [sym_fixed_array_type] = STATE(1445), + [sym_array_type] = STATE(1445), + [sym_pointer_type] = STATE(1445), + [sym_wrong_pointer_type] = STATE(1445), + [sym_map_type] = STATE(1445), + [sym_channel_type] = STATE(1445), + [sym_shared_type] = STATE(1445), + [sym_thread_type] = STATE(1445), + [sym_atomic_type] = STATE(1445), + [sym_generic_type] = STATE(1445), + [sym_function_type] = STATE(1445), + [ts_builtin_sym_end] = ACTIONS(585), + [sym_identifier] = ACTIONS(3602), + [anon_sym_LF] = ACTIONS(589), + [anon_sym_CR] = ACTIONS(589), + [anon_sym_CR_LF] = ACTIONS(589), [anon_sym_SLASH_SLASH] = ACTIONS(497), [anon_sym_SLASH_STAR] = ACTIONS(499), - [anon_sym_DOT] = ACTIONS(623), - [anon_sym_as] = ACTIONS(623), - [anon_sym_LBRACE] = ACTIONS(567), - [anon_sym_COMMA] = ACTIONS(623), - [anon_sym_RBRACE] = ACTIONS(623), - [anon_sym_LPAREN] = ACTIONS(623), - [anon_sym_EQ] = ACTIONS(623), - [anon_sym_PIPE] = ACTIONS(623), - [anon_sym_fn] = ACTIONS(603), - [anon_sym_PLUS] = ACTIONS(623), - [anon_sym_DASH] = ACTIONS(623), - [anon_sym_STAR] = ACTIONS(623), - [anon_sym_SLASH] = ACTIONS(623), - [anon_sym_PERCENT] = ACTIONS(623), - [anon_sym_LT] = ACTIONS(623), - [anon_sym_GT] = ACTIONS(623), - [anon_sym_EQ_EQ] = ACTIONS(623), - [anon_sym_BANG_EQ] = ACTIONS(623), - [anon_sym_LT_EQ] = ACTIONS(623), - [anon_sym_GT_EQ] = ACTIONS(623), - [anon_sym_LBRACK] = ACTIONS(621), - [anon_sym_struct] = ACTIONS(607), - [anon_sym_COLON] = ACTIONS(623), - [anon_sym_PLUS_PLUS] = ACTIONS(623), - [anon_sym_DASH_DASH] = ACTIONS(623), - [anon_sym_QMARK] = ACTIONS(623), - [anon_sym_BANG] = ACTIONS(623), - [anon_sym_LBRACK2] = ACTIONS(623), - [anon_sym_CARET] = ACTIONS(623), - [anon_sym_AMP] = ACTIONS(623), - [anon_sym_LT_DASH] = ACTIONS(623), - [anon_sym_LT_LT] = ACTIONS(623), - [anon_sym_GT_GT] = ACTIONS(623), - [anon_sym_GT_GT_GT] = ACTIONS(623), - [anon_sym_AMP_CARET] = ACTIONS(623), - [anon_sym_AMP_AMP] = ACTIONS(623), - [anon_sym_PIPE_PIPE] = ACTIONS(623), - [anon_sym_or] = ACTIONS(623), - [anon_sym_QMARK_DOT] = ACTIONS(623), - [anon_sym_POUND_LBRACK] = ACTIONS(623), - [anon_sym_is] = ACTIONS(623), - [anon_sym_BANGis] = ACTIONS(623), - [anon_sym_in] = ACTIONS(623), - [anon_sym_BANGin] = ACTIONS(623), - [anon_sym_STAR_EQ] = ACTIONS(623), - [anon_sym_SLASH_EQ] = ACTIONS(623), - [anon_sym_PERCENT_EQ] = ACTIONS(623), - [anon_sym_LT_LT_EQ] = ACTIONS(623), - [anon_sym_GT_GT_EQ] = ACTIONS(623), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(623), - [anon_sym_AMP_EQ] = ACTIONS(623), - [anon_sym_AMP_CARET_EQ] = ACTIONS(623), - [anon_sym_PLUS_EQ] = ACTIONS(623), - [anon_sym_DASH_EQ] = ACTIONS(623), - [anon_sym_PIPE_EQ] = ACTIONS(623), - [anon_sym_CARET_EQ] = ACTIONS(623), - [anon_sym_COLON_EQ] = ACTIONS(623), - [anon_sym_shared] = ACTIONS(615), - [anon_sym_map_LBRACK] = ACTIONS(549), - [anon_sym_chan] = ACTIONS(87), - [anon_sym_thread] = ACTIONS(89), - [anon_sym_atomic] = ACTIONS(91), + [anon_sym_DOT] = ACTIONS(589), + [anon_sym_LBRACE] = ACTIONS(589), + [anon_sym_const] = ACTIONS(589), + [anon_sym_LPAREN] = ACTIONS(3604), + [anon_sym___global] = ACTIONS(589), + [anon_sym_type] = ACTIONS(589), + [anon_sym_PIPE] = ACTIONS(589), + [anon_sym_fn] = ACTIONS(3606), + [anon_sym_PLUS] = ACTIONS(589), + [anon_sym_DASH] = ACTIONS(589), + [anon_sym_STAR] = ACTIONS(3608), + [anon_sym_struct] = ACTIONS(3610), + [anon_sym_union] = ACTIONS(589), + [anon_sym_pub] = ACTIONS(589), + [anon_sym_mut] = ACTIONS(589), + [anon_sym_enum] = ACTIONS(589), + [anon_sym_interface] = ACTIONS(589), + [anon_sym_QMARK] = ACTIONS(3612), + [anon_sym_BANG] = ACTIONS(3614), + [anon_sym_go] = ACTIONS(589), + [anon_sym_spawn] = ACTIONS(589), + [anon_sym_json_DOTdecode] = ACTIONS(589), + [anon_sym_LBRACK2] = ACTIONS(3616), + [anon_sym_TILDE] = ACTIONS(589), + [anon_sym_CARET] = ACTIONS(589), + [anon_sym_AMP] = ACTIONS(3618), + [anon_sym_LT_DASH] = ACTIONS(589), + [sym_none] = ACTIONS(589), + [sym_true] = ACTIONS(589), + [sym_false] = ACTIONS(589), + [sym_nil] = ACTIONS(589), + [anon_sym_if] = ACTIONS(589), + [anon_sym_DOLLARif] = ACTIONS(589), + [anon_sym_match] = ACTIONS(589), + [anon_sym_select] = ACTIONS(589), + [anon_sym_lock] = ACTIONS(589), + [anon_sym_rlock] = ACTIONS(589), + [anon_sym_unsafe] = ACTIONS(589), + [anon_sym_sql] = ACTIONS(589), + [sym_int_literal] = ACTIONS(589), + [sym_float_literal] = ACTIONS(589), + [sym_rune_literal] = ACTIONS(589), + [sym_pseudo_compile_time_identifier] = ACTIONS(589), + [anon_sym_shared] = ACTIONS(3620), + [anon_sym_map_LBRACK] = ACTIONS(3622), + [anon_sym_chan] = ACTIONS(3624), + [anon_sym_thread] = ACTIONS(3626), + [anon_sym_atomic] = ACTIONS(3628), + [anon_sym_assert] = ACTIONS(589), + [anon_sym_defer] = ACTIONS(589), + [anon_sym_goto] = ACTIONS(589), + [anon_sym_break] = ACTIONS(589), + [anon_sym_continue] = ACTIONS(589), + [anon_sym_return] = ACTIONS(589), + [anon_sym_DOLLARfor] = ACTIONS(589), + [anon_sym_for] = ACTIONS(589), + [anon_sym_POUND] = ACTIONS(589), + [anon_sym_asm] = ACTIONS(589), + [anon_sym_AT_LBRACK] = ACTIONS(589), + [sym___double_quote] = ACTIONS(589), + [sym___single_quote] = ACTIONS(589), + [sym___c_double_quote] = ACTIONS(589), + [sym___c_single_quote] = ACTIONS(589), + [sym___r_double_quote] = ACTIONS(589), + [sym___r_single_quote] = ACTIONS(589), }, [1101] = { [sym_line_comment] = STATE(1101), [sym_block_comment] = STATE(1101), - [aux_sym_strictly_expression_list_repeat1] = STATE(1411), - [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), - [anon_sym_SLASH_SLASH] = ACTIONS(497), - [anon_sym_SLASH_STAR] = ACTIONS(499), - [anon_sym_DOT] = ACTIONS(1759), - [anon_sym_LBRACE] = ACTIONS(1759), - [anon_sym_COMMA] = ACTIONS(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), - }, - [1102] = { - [sym_line_comment] = STATE(1102), - [sym_block_comment] = STATE(1102), - [sym_reference_expression] = STATE(4495), - [sym_type_reference_expression] = STATE(3541), - [sym_plain_type] = STATE(2386), - [sym__plain_type_without_special] = STATE(2302), - [sym_anon_struct_type] = STATE(2303), - [sym_multi_return_type] = STATE(2302), - [sym_result_type] = STATE(2302), - [sym_option_type] = STATE(2302), - [sym_qualified_type] = STATE(3541), - [sym_fixed_array_type] = STATE(2303), - [sym_array_type] = STATE(2303), - [sym_pointer_type] = STATE(2303), - [sym_wrong_pointer_type] = STATE(2303), - [sym_map_type] = STATE(2303), - [sym_channel_type] = STATE(2303), - [sym_shared_type] = STATE(2303), - [sym_thread_type] = STATE(2303), - [sym_atomic_type] = STATE(2303), - [sym_generic_type] = STATE(2303), - [sym_function_type] = STATE(2303), - [sym_identifier] = ACTIONS(597), - [anon_sym_LF] = ACTIONS(599), - [anon_sym_CR] = ACTIONS(599), - [anon_sym_CR_LF] = ACTIONS(599), - [anon_sym_SLASH_SLASH] = ACTIONS(497), - [anon_sym_SLASH_STAR] = ACTIONS(499), - [anon_sym_DOT] = ACTIONS(599), - [anon_sym_as] = ACTIONS(599), - [anon_sym_COMMA] = ACTIONS(599), - [anon_sym_RBRACE] = ACTIONS(599), - [anon_sym_LPAREN] = ACTIONS(601), - [anon_sym_EQ] = ACTIONS(599), - [anon_sym_PIPE] = ACTIONS(599), - [anon_sym_fn] = ACTIONS(603), - [anon_sym_PLUS] = ACTIONS(599), - [anon_sym_DASH] = ACTIONS(599), - [anon_sym_STAR] = ACTIONS(605), - [anon_sym_SLASH] = ACTIONS(599), - [anon_sym_PERCENT] = ACTIONS(599), - [anon_sym_LT] = ACTIONS(599), - [anon_sym_GT] = ACTIONS(599), - [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(595), - [anon_sym_struct] = ACTIONS(607), - [anon_sym_COLON] = ACTIONS(599), - [anon_sym_PLUS_PLUS] = ACTIONS(599), - [anon_sym_DASH_DASH] = ACTIONS(599), - [anon_sym_QMARK] = ACTIONS(515), - [anon_sym_BANG] = ACTIONS(3624), - [anon_sym_LBRACK2] = ACTIONS(611), - [anon_sym_CARET] = ACTIONS(599), - [anon_sym_AMP] = ACTIONS(613), - [anon_sym_LT_DASH] = ACTIONS(599), - [anon_sym_LT_LT] = ACTIONS(599), - [anon_sym_GT_GT] = ACTIONS(599), - [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(599), - [anon_sym_QMARK_DOT] = ACTIONS(599), - [anon_sym_POUND_LBRACK] = ACTIONS(599), - [anon_sym_is] = ACTIONS(599), - [anon_sym_BANGis] = ACTIONS(599), - [anon_sym_in] = ACTIONS(599), - [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(615), - [anon_sym_map_LBRACK] = ACTIONS(549), - [anon_sym_chan] = ACTIONS(87), - [anon_sym_thread] = ACTIONS(89), - [anon_sym_atomic] = ACTIONS(91), - }, - [1103] = { - [sym_line_comment] = STATE(1103), - [sym_block_comment] = STATE(1103), - [sym_reference_expression] = STATE(4323), - [sym_type_reference_expression] = STATE(1636), - [sym_plain_type] = STATE(1644), - [sym__plain_type_without_special] = STATE(1635), - [sym_anon_struct_type] = STATE(1629), - [sym_multi_return_type] = STATE(1635), - [sym_result_type] = STATE(1635), - [sym_option_type] = STATE(1635), - [sym_qualified_type] = STATE(1636), - [sym_fixed_array_type] = STATE(1629), - [sym_array_type] = STATE(1629), - [sym_pointer_type] = STATE(1629), - [sym_wrong_pointer_type] = STATE(1629), - [sym_map_type] = STATE(1629), - [sym_channel_type] = STATE(1629), - [sym_shared_type] = STATE(1629), - [sym_thread_type] = STATE(1629), - [sym_atomic_type] = STATE(1629), - [sym_generic_type] = STATE(1629), - [sym_function_type] = STATE(1629), - [sym_identifier] = ACTIONS(3626), + [sym_reference_expression] = STATE(4498), + [sym_type_reference_expression] = STATE(3460), + [sym_plain_type] = STATE(2345), + [sym__plain_type_without_special] = STATE(2360), + [sym_anon_struct_type] = STATE(2362), + [sym_multi_return_type] = STATE(2360), + [sym_result_type] = STATE(2360), + [sym_option_type] = STATE(2360), + [sym_qualified_type] = STATE(3460), + [sym_fixed_array_type] = STATE(2362), + [sym_array_type] = STATE(2362), + [sym_pointer_type] = STATE(2362), + [sym_wrong_pointer_type] = STATE(2362), + [sym_map_type] = STATE(2362), + [sym_channel_type] = STATE(2362), + [sym_shared_type] = STATE(2362), + [sym_thread_type] = STATE(2362), + [sym_atomic_type] = STATE(2362), + [sym_generic_type] = STATE(2362), + [sym_function_type] = STATE(2362), + [sym_identifier] = ACTIONS(565), [anon_sym_LF] = ACTIONS(627), [anon_sym_CR] = ACTIONS(627), [anon_sym_CR_LF] = ACTIONS(627), @@ -147805,15 +147665,16 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_SLASH_STAR] = ACTIONS(499), [anon_sym_DOT] = ACTIONS(627), [anon_sym_as] = ACTIONS(627), + [anon_sym_LBRACE] = ACTIONS(623), [anon_sym_COMMA] = ACTIONS(627), [anon_sym_RBRACE] = ACTIONS(627), - [anon_sym_LPAREN] = ACTIONS(3628), + [anon_sym_LPAREN] = ACTIONS(627), [anon_sym_EQ] = ACTIONS(627), [anon_sym_PIPE] = ACTIONS(627), - [anon_sym_fn] = ACTIONS(3630), + [anon_sym_fn] = ACTIONS(571), [anon_sym_PLUS] = ACTIONS(627), [anon_sym_DASH] = ACTIONS(627), - [anon_sym_STAR] = ACTIONS(3632), + [anon_sym_STAR] = ACTIONS(627), [anon_sym_SLASH] = ACTIONS(627), [anon_sym_PERCENT] = ACTIONS(627), [anon_sym_LT] = ACTIONS(627), @@ -147823,15 +147684,15 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT_EQ] = ACTIONS(627), [anon_sym_GT_EQ] = ACTIONS(627), [anon_sym_LBRACK] = ACTIONS(625), - [anon_sym_struct] = ACTIONS(3634), + [anon_sym_struct] = ACTIONS(575), [anon_sym_COLON] = ACTIONS(627), [anon_sym_PLUS_PLUS] = ACTIONS(627), [anon_sym_DASH_DASH] = ACTIONS(627), - [anon_sym_QMARK] = ACTIONS(3636), - [anon_sym_BANG] = ACTIONS(3638), - [anon_sym_LBRACK2] = ACTIONS(3640), + [anon_sym_QMARK] = ACTIONS(627), + [anon_sym_BANG] = ACTIONS(627), + [anon_sym_LBRACK2] = ACTIONS(627), [anon_sym_CARET] = ACTIONS(627), - [anon_sym_AMP] = ACTIONS(3642), + [anon_sym_AMP] = ACTIONS(627), [anon_sym_LT_DASH] = ACTIONS(627), [anon_sym_LT_LT] = ACTIONS(627), [anon_sym_GT_GT] = ACTIONS(627), @@ -147859,36 +147720,218 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PIPE_EQ] = ACTIONS(627), [anon_sym_CARET_EQ] = ACTIONS(627), [anon_sym_COLON_EQ] = ACTIONS(627), - [anon_sym_shared] = ACTIONS(3644), - [anon_sym_map_LBRACK] = ACTIONS(3646), - [anon_sym_chan] = ACTIONS(3648), - [anon_sym_thread] = ACTIONS(3650), - [anon_sym_atomic] = ACTIONS(3652), + [anon_sym_shared] = ACTIONS(583), + [anon_sym_map_LBRACK] = ACTIONS(549), + [anon_sym_chan] = ACTIONS(87), + [anon_sym_thread] = ACTIONS(89), + [anon_sym_atomic] = ACTIONS(91), + }, + [1102] = { + [sym_line_comment] = STATE(1102), + [sym_block_comment] = STATE(1102), + [aux_sym_strictly_expression_list_repeat1] = STATE(1416), + [ts_builtin_sym_end] = ACTIONS(1641), + [sym_identifier] = ACTIONS(1643), + [anon_sym_LF] = ACTIONS(1643), + [anon_sym_CR] = ACTIONS(1643), + [anon_sym_CR_LF] = ACTIONS(1643), + [anon_sym_SLASH_SLASH] = ACTIONS(497), + [anon_sym_SLASH_STAR] = ACTIONS(499), + [anon_sym_DOT] = ACTIONS(1643), + [anon_sym_LBRACE] = ACTIONS(1643), + [anon_sym_COMMA] = ACTIONS(1649), + [anon_sym_const] = ACTIONS(1643), + [anon_sym_LPAREN] = ACTIONS(1643), + [anon_sym_EQ] = ACTIONS(1649), + [anon_sym___global] = ACTIONS(1643), + [anon_sym_type] = ACTIONS(1643), + [anon_sym_fn] = ACTIONS(1643), + [anon_sym_PLUS] = ACTIONS(1643), + [anon_sym_DASH] = ACTIONS(1643), + [anon_sym_STAR] = ACTIONS(1643), + [anon_sym_struct] = ACTIONS(1643), + [anon_sym_union] = ACTIONS(1643), + [anon_sym_pub] = ACTIONS(1643), + [anon_sym_mut] = ACTIONS(1643), + [anon_sym_enum] = ACTIONS(1643), + [anon_sym_interface] = ACTIONS(1643), + [anon_sym_QMARK] = ACTIONS(1643), + [anon_sym_BANG] = ACTIONS(1643), + [anon_sym_go] = ACTIONS(1643), + [anon_sym_spawn] = ACTIONS(1643), + [anon_sym_json_DOTdecode] = ACTIONS(1643), + [anon_sym_LBRACK2] = ACTIONS(1643), + [anon_sym_TILDE] = ACTIONS(1643), + [anon_sym_CARET] = ACTIONS(1643), + [anon_sym_AMP] = ACTIONS(1643), + [anon_sym_LT_DASH] = ACTIONS(1643), + [sym_none] = ACTIONS(1643), + [sym_true] = ACTIONS(1643), + [sym_false] = ACTIONS(1643), + [sym_nil] = ACTIONS(1643), + [anon_sym_if] = ACTIONS(1643), + [anon_sym_DOLLARif] = ACTIONS(1643), + [anon_sym_match] = ACTIONS(1643), + [anon_sym_select] = ACTIONS(1643), + [anon_sym_STAR_EQ] = ACTIONS(1649), + [anon_sym_SLASH_EQ] = ACTIONS(1649), + [anon_sym_PERCENT_EQ] = ACTIONS(1649), + [anon_sym_LT_LT_EQ] = ACTIONS(1649), + [anon_sym_GT_GT_EQ] = ACTIONS(1649), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(1649), + [anon_sym_AMP_EQ] = ACTIONS(1649), + [anon_sym_AMP_CARET_EQ] = ACTIONS(1649), + [anon_sym_PLUS_EQ] = ACTIONS(1649), + [anon_sym_DASH_EQ] = ACTIONS(1649), + [anon_sym_PIPE_EQ] = ACTIONS(1649), + [anon_sym_CARET_EQ] = ACTIONS(1649), + [anon_sym_COLON_EQ] = ACTIONS(1649), + [anon_sym_lock] = ACTIONS(1643), + [anon_sym_rlock] = ACTIONS(1643), + [anon_sym_unsafe] = ACTIONS(1643), + [anon_sym_sql] = ACTIONS(1643), + [sym_int_literal] = ACTIONS(1643), + [sym_float_literal] = ACTIONS(1643), + [sym_rune_literal] = ACTIONS(1643), + [sym_pseudo_compile_time_identifier] = ACTIONS(1643), + [anon_sym_shared] = ACTIONS(1643), + [anon_sym_map_LBRACK] = ACTIONS(1643), + [anon_sym_chan] = ACTIONS(1643), + [anon_sym_thread] = ACTIONS(1643), + [anon_sym_atomic] = ACTIONS(1643), + [anon_sym_assert] = ACTIONS(1643), + [anon_sym_defer] = ACTIONS(1643), + [anon_sym_goto] = ACTIONS(1643), + [anon_sym_break] = ACTIONS(1643), + [anon_sym_continue] = ACTIONS(1643), + [anon_sym_return] = ACTIONS(1643), + [anon_sym_DOLLARfor] = ACTIONS(1643), + [anon_sym_for] = ACTIONS(1643), + [anon_sym_POUND] = ACTIONS(1643), + [anon_sym_asm] = ACTIONS(1643), + [anon_sym_AT_LBRACK] = ACTIONS(1643), + [sym___double_quote] = ACTIONS(1643), + [sym___single_quote] = ACTIONS(1643), + [sym___c_double_quote] = ACTIONS(1643), + [sym___c_single_quote] = ACTIONS(1643), + [sym___r_double_quote] = ACTIONS(1643), + [sym___r_single_quote] = ACTIONS(1643), + }, + [1103] = { + [sym_line_comment] = STATE(1103), + [sym_block_comment] = STATE(1103), + [sym_reference_expression] = STATE(4378), + [sym_type_reference_expression] = STATE(1631), + [sym_plain_type] = STATE(1634), + [sym__plain_type_without_special] = STATE(1647), + [sym_anon_struct_type] = STATE(1667), + [sym_multi_return_type] = STATE(1647), + [sym_result_type] = STATE(1647), + [sym_option_type] = STATE(1647), + [sym_qualified_type] = STATE(1631), + [sym_fixed_array_type] = STATE(1667), + [sym_array_type] = STATE(1667), + [sym_pointer_type] = STATE(1667), + [sym_wrong_pointer_type] = STATE(1667), + [sym_map_type] = STATE(1667), + [sym_channel_type] = STATE(1667), + [sym_shared_type] = STATE(1667), + [sym_thread_type] = STATE(1667), + [sym_atomic_type] = STATE(1667), + [sym_generic_type] = STATE(1667), + [sym_function_type] = STATE(1667), + [sym_identifier] = ACTIONS(3630), + [anon_sym_LF] = ACTIONS(589), + [anon_sym_CR] = ACTIONS(589), + [anon_sym_CR_LF] = ACTIONS(589), + [anon_sym_SLASH_SLASH] = ACTIONS(497), + [anon_sym_SLASH_STAR] = ACTIONS(499), + [anon_sym_DOT] = ACTIONS(589), + [anon_sym_as] = ACTIONS(589), + [anon_sym_COMMA] = ACTIONS(589), + [anon_sym_RBRACE] = ACTIONS(589), + [anon_sym_LPAREN] = ACTIONS(3632), + [anon_sym_EQ] = ACTIONS(589), + [anon_sym_PIPE] = ACTIONS(589), + [anon_sym_fn] = ACTIONS(3634), + [anon_sym_PLUS] = ACTIONS(589), + [anon_sym_DASH] = ACTIONS(589), + [anon_sym_STAR] = ACTIONS(3636), + [anon_sym_SLASH] = ACTIONS(589), + [anon_sym_PERCENT] = ACTIONS(589), + [anon_sym_LT] = ACTIONS(589), + [anon_sym_GT] = ACTIONS(589), + [anon_sym_EQ_EQ] = ACTIONS(589), + [anon_sym_BANG_EQ] = ACTIONS(589), + [anon_sym_LT_EQ] = ACTIONS(589), + [anon_sym_GT_EQ] = ACTIONS(589), + [anon_sym_LBRACK] = ACTIONS(585), + [anon_sym_struct] = ACTIONS(3638), + [anon_sym_COLON] = ACTIONS(589), + [anon_sym_PLUS_PLUS] = ACTIONS(589), + [anon_sym_DASH_DASH] = ACTIONS(589), + [anon_sym_QMARK] = ACTIONS(3640), + [anon_sym_BANG] = ACTIONS(3642), + [anon_sym_LBRACK2] = ACTIONS(3644), + [anon_sym_CARET] = ACTIONS(589), + [anon_sym_AMP] = ACTIONS(3646), + [anon_sym_LT_DASH] = ACTIONS(589), + [anon_sym_LT_LT] = ACTIONS(589), + [anon_sym_GT_GT] = ACTIONS(589), + [anon_sym_GT_GT_GT] = ACTIONS(589), + [anon_sym_AMP_CARET] = ACTIONS(589), + [anon_sym_AMP_AMP] = ACTIONS(589), + [anon_sym_PIPE_PIPE] = ACTIONS(589), + [anon_sym_or] = ACTIONS(589), + [anon_sym_QMARK_DOT] = ACTIONS(589), + [anon_sym_POUND_LBRACK] = ACTIONS(589), + [anon_sym_is] = ACTIONS(589), + [anon_sym_BANGis] = ACTIONS(589), + [anon_sym_in] = ACTIONS(589), + [anon_sym_BANGin] = ACTIONS(589), + [anon_sym_STAR_EQ] = ACTIONS(589), + [anon_sym_SLASH_EQ] = ACTIONS(589), + [anon_sym_PERCENT_EQ] = ACTIONS(589), + [anon_sym_LT_LT_EQ] = ACTIONS(589), + [anon_sym_GT_GT_EQ] = ACTIONS(589), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(589), + [anon_sym_AMP_EQ] = ACTIONS(589), + [anon_sym_AMP_CARET_EQ] = ACTIONS(589), + [anon_sym_PLUS_EQ] = ACTIONS(589), + [anon_sym_DASH_EQ] = ACTIONS(589), + [anon_sym_PIPE_EQ] = ACTIONS(589), + [anon_sym_CARET_EQ] = ACTIONS(589), + [anon_sym_COLON_EQ] = ACTIONS(589), + [anon_sym_shared] = ACTIONS(3648), + [anon_sym_map_LBRACK] = ACTIONS(3650), + [anon_sym_chan] = ACTIONS(3652), + [anon_sym_thread] = ACTIONS(3654), + [anon_sym_atomic] = ACTIONS(3656), }, [1104] = { [sym_line_comment] = STATE(1104), [sym_block_comment] = STATE(1104), - [sym_reference_expression] = STATE(4323), - [sym_type_reference_expression] = STATE(1636), + [sym_reference_expression] = STATE(4378), + [sym_type_reference_expression] = STATE(1631), [sym_plain_type] = STATE(1640), - [sym__plain_type_without_special] = STATE(1635), - [sym_anon_struct_type] = STATE(1629), - [sym_multi_return_type] = STATE(1635), - [sym_result_type] = STATE(1635), - [sym_option_type] = STATE(1635), - [sym_qualified_type] = STATE(1636), - [sym_fixed_array_type] = STATE(1629), - [sym_array_type] = STATE(1629), - [sym_pointer_type] = STATE(1629), - [sym_wrong_pointer_type] = STATE(1629), - [sym_map_type] = STATE(1629), - [sym_channel_type] = STATE(1629), - [sym_shared_type] = STATE(1629), - [sym_thread_type] = STATE(1629), - [sym_atomic_type] = STATE(1629), - [sym_generic_type] = STATE(1629), - [sym_function_type] = STATE(1629), - [sym_identifier] = ACTIONS(3626), + [sym__plain_type_without_special] = STATE(1647), + [sym_anon_struct_type] = STATE(1667), + [sym_multi_return_type] = STATE(1647), + [sym_result_type] = STATE(1647), + [sym_option_type] = STATE(1647), + [sym_qualified_type] = STATE(1631), + [sym_fixed_array_type] = STATE(1667), + [sym_array_type] = STATE(1667), + [sym_pointer_type] = STATE(1667), + [sym_wrong_pointer_type] = STATE(1667), + [sym_map_type] = STATE(1667), + [sym_channel_type] = STATE(1667), + [sym_shared_type] = STATE(1667), + [sym_thread_type] = STATE(1667), + [sym_atomic_type] = STATE(1667), + [sym_generic_type] = STATE(1667), + [sym_function_type] = STATE(1667), + [sym_identifier] = ACTIONS(3630), [anon_sym_LF] = ACTIONS(619), [anon_sym_CR] = ACTIONS(619), [anon_sym_CR_LF] = ACTIONS(619), @@ -147898,13 +147941,13 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_as] = ACTIONS(619), [anon_sym_COMMA] = ACTIONS(619), [anon_sym_RBRACE] = ACTIONS(619), - [anon_sym_LPAREN] = ACTIONS(3628), + [anon_sym_LPAREN] = ACTIONS(3632), [anon_sym_EQ] = ACTIONS(619), [anon_sym_PIPE] = ACTIONS(619), - [anon_sym_fn] = ACTIONS(3630), + [anon_sym_fn] = ACTIONS(3634), [anon_sym_PLUS] = ACTIONS(619), [anon_sym_DASH] = ACTIONS(619), - [anon_sym_STAR] = ACTIONS(3632), + [anon_sym_STAR] = ACTIONS(3636), [anon_sym_SLASH] = ACTIONS(619), [anon_sym_PERCENT] = ACTIONS(619), [anon_sym_LT] = ACTIONS(619), @@ -147914,15 +147957,15 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT_EQ] = ACTIONS(619), [anon_sym_GT_EQ] = ACTIONS(619), [anon_sym_LBRACK] = ACTIONS(617), - [anon_sym_struct] = ACTIONS(3634), + [anon_sym_struct] = ACTIONS(3638), [anon_sym_COLON] = ACTIONS(619), [anon_sym_PLUS_PLUS] = ACTIONS(619), [anon_sym_DASH_DASH] = ACTIONS(619), - [anon_sym_QMARK] = ACTIONS(3636), - [anon_sym_BANG] = ACTIONS(3638), - [anon_sym_LBRACK2] = ACTIONS(3640), + [anon_sym_QMARK] = ACTIONS(3640), + [anon_sym_BANG] = ACTIONS(3642), + [anon_sym_LBRACK2] = ACTIONS(3644), [anon_sym_CARET] = ACTIONS(619), - [anon_sym_AMP] = ACTIONS(3642), + [anon_sym_AMP] = ACTIONS(3646), [anon_sym_LT_DASH] = ACTIONS(619), [anon_sym_LT_LT] = ACTIONS(619), [anon_sym_GT_GT] = ACTIONS(619), @@ -147950,36 +147993,127 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PIPE_EQ] = ACTIONS(619), [anon_sym_CARET_EQ] = ACTIONS(619), [anon_sym_COLON_EQ] = ACTIONS(619), - [anon_sym_shared] = ACTIONS(3644), - [anon_sym_map_LBRACK] = ACTIONS(3646), - [anon_sym_chan] = ACTIONS(3648), - [anon_sym_thread] = ACTIONS(3650), - [anon_sym_atomic] = ACTIONS(3652), + [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), }, [1105] = { [sym_line_comment] = STATE(1105), [sym_block_comment] = STATE(1105), - [sym_reference_expression] = STATE(4323), - [sym_type_reference_expression] = STATE(1636), - [sym_plain_type] = STATE(1663), - [sym__plain_type_without_special] = STATE(1635), - [sym_anon_struct_type] = STATE(1629), - [sym_multi_return_type] = STATE(1635), - [sym_result_type] = STATE(1635), - [sym_option_type] = STATE(1635), - [sym_qualified_type] = STATE(1636), - [sym_fixed_array_type] = STATE(1629), - [sym_array_type] = STATE(1629), - [sym_pointer_type] = STATE(1629), - [sym_wrong_pointer_type] = STATE(1629), - [sym_map_type] = STATE(1629), - [sym_channel_type] = STATE(1629), - [sym_shared_type] = STATE(1629), - [sym_thread_type] = STATE(1629), - [sym_atomic_type] = STATE(1629), - [sym_generic_type] = STATE(1629), - [sym_function_type] = STATE(1629), - [sym_identifier] = ACTIONS(3626), + [sym_reference_expression] = STATE(4378), + [sym_type_reference_expression] = STATE(1631), + [sym_plain_type] = STATE(1633), + [sym__plain_type_without_special] = STATE(1647), + [sym_anon_struct_type] = STATE(1667), + [sym_multi_return_type] = STATE(1647), + [sym_result_type] = STATE(1647), + [sym_option_type] = STATE(1647), + [sym_qualified_type] = STATE(1631), + [sym_fixed_array_type] = STATE(1667), + [sym_array_type] = STATE(1667), + [sym_pointer_type] = STATE(1667), + [sym_wrong_pointer_type] = STATE(1667), + [sym_map_type] = STATE(1667), + [sym_channel_type] = STATE(1667), + [sym_shared_type] = STATE(1667), + [sym_thread_type] = STATE(1667), + [sym_atomic_type] = STATE(1667), + [sym_generic_type] = STATE(1667), + [sym_function_type] = STATE(1667), + [sym_identifier] = ACTIONS(3630), + [anon_sym_LF] = ACTIONS(623), + [anon_sym_CR] = ACTIONS(623), + [anon_sym_CR_LF] = ACTIONS(623), + [anon_sym_SLASH_SLASH] = ACTIONS(497), + [anon_sym_SLASH_STAR] = ACTIONS(499), + [anon_sym_DOT] = ACTIONS(623), + [anon_sym_as] = ACTIONS(623), + [anon_sym_COMMA] = ACTIONS(623), + [anon_sym_RBRACE] = ACTIONS(623), + [anon_sym_LPAREN] = ACTIONS(3632), + [anon_sym_EQ] = ACTIONS(623), + [anon_sym_PIPE] = ACTIONS(623), + [anon_sym_fn] = ACTIONS(3634), + [anon_sym_PLUS] = ACTIONS(623), + [anon_sym_DASH] = ACTIONS(623), + [anon_sym_STAR] = ACTIONS(3636), + [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(3638), + [anon_sym_COLON] = ACTIONS(623), + [anon_sym_PLUS_PLUS] = ACTIONS(623), + [anon_sym_DASH_DASH] = ACTIONS(623), + [anon_sym_QMARK] = ACTIONS(3640), + [anon_sym_BANG] = ACTIONS(3642), + [anon_sym_LBRACK2] = ACTIONS(3644), + [anon_sym_CARET] = ACTIONS(623), + [anon_sym_AMP] = ACTIONS(3646), + [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(3648), + [anon_sym_map_LBRACK] = ACTIONS(3650), + [anon_sym_chan] = ACTIONS(3652), + [anon_sym_thread] = ACTIONS(3654), + [anon_sym_atomic] = ACTIONS(3656), + }, + [1106] = { + [sym_line_comment] = STATE(1106), + [sym_block_comment] = STATE(1106), + [sym_reference_expression] = STATE(4498), + [sym_type_reference_expression] = STATE(3460), + [sym_plain_type] = STATE(2320), + [sym__plain_type_without_special] = STATE(2360), + [sym_anon_struct_type] = STATE(2362), + [sym_multi_return_type] = STATE(2360), + [sym_result_type] = STATE(2360), + [sym_option_type] = STATE(2360), + [sym_qualified_type] = STATE(3460), + [sym_fixed_array_type] = STATE(2362), + [sym_array_type] = STATE(2362), + [sym_pointer_type] = STATE(2362), + [sym_wrong_pointer_type] = STATE(2362), + [sym_map_type] = STATE(2362), + [sym_channel_type] = STATE(2362), + [sym_shared_type] = STATE(2362), + [sym_thread_type] = STATE(2362), + [sym_atomic_type] = STATE(2362), + [sym_generic_type] = STATE(2362), + [sym_function_type] = STATE(2362), + [sym_identifier] = ACTIONS(565), [anon_sym_LF] = ACTIONS(567), [anon_sym_CR] = ACTIONS(567), [anon_sym_CR_LF] = ACTIONS(567), @@ -147989,13 +148123,13 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_as] = ACTIONS(567), [anon_sym_COMMA] = ACTIONS(567), [anon_sym_RBRACE] = ACTIONS(567), - [anon_sym_LPAREN] = ACTIONS(3628), + [anon_sym_LPAREN] = ACTIONS(569), [anon_sym_EQ] = ACTIONS(567), [anon_sym_PIPE] = ACTIONS(567), - [anon_sym_fn] = ACTIONS(3630), + [anon_sym_fn] = ACTIONS(571), [anon_sym_PLUS] = ACTIONS(567), [anon_sym_DASH] = ACTIONS(567), - [anon_sym_STAR] = ACTIONS(3632), + [anon_sym_STAR] = ACTIONS(573), [anon_sym_SLASH] = ACTIONS(567), [anon_sym_PERCENT] = ACTIONS(567), [anon_sym_LT] = ACTIONS(567), @@ -148005,15 +148139,15 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT_EQ] = ACTIONS(567), [anon_sym_GT_EQ] = ACTIONS(567), [anon_sym_LBRACK] = ACTIONS(563), - [anon_sym_struct] = ACTIONS(3634), + [anon_sym_struct] = ACTIONS(575), [anon_sym_COLON] = ACTIONS(567), [anon_sym_PLUS_PLUS] = ACTIONS(567), [anon_sym_DASH_DASH] = ACTIONS(567), - [anon_sym_QMARK] = ACTIONS(3636), - [anon_sym_BANG] = ACTIONS(3638), - [anon_sym_LBRACK2] = ACTIONS(3640), + [anon_sym_QMARK] = ACTIONS(515), + [anon_sym_BANG] = ACTIONS(3658), + [anon_sym_LBRACK2] = ACTIONS(579), [anon_sym_CARET] = ACTIONS(567), - [anon_sym_AMP] = ACTIONS(3642), + [anon_sym_AMP] = ACTIONS(581), [anon_sym_LT_DASH] = ACTIONS(567), [anon_sym_LT_LT] = ACTIONS(567), [anon_sym_GT_GT] = ACTIONS(567), @@ -148041,108 +148175,378 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PIPE_EQ] = ACTIONS(567), [anon_sym_CARET_EQ] = ACTIONS(567), [anon_sym_COLON_EQ] = ACTIONS(567), - [anon_sym_shared] = ACTIONS(3644), - [anon_sym_map_LBRACK] = ACTIONS(3646), - [anon_sym_chan] = ACTIONS(3648), - [anon_sym_thread] = ACTIONS(3650), - [anon_sym_atomic] = ACTIONS(3652), - }, - [1106] = { - [sym_line_comment] = STATE(1106), - [sym_block_comment] = STATE(1106), - [sym_type_parameters] = STATE(4205), - [sym_argument_list] = STATE(1166), - [sym_or_block] = STATE(1167), - [sym_identifier] = ACTIONS(1785), - [anon_sym_LF] = ACTIONS(1785), - [anon_sym_CR] = ACTIONS(1785), - [anon_sym_CR_LF] = ACTIONS(1785), - [anon_sym_SLASH_SLASH] = ACTIONS(497), - [anon_sym_SLASH_STAR] = ACTIONS(499), - [anon_sym_SEMI] = ACTIONS(1785), - [anon_sym_DOT] = ACTIONS(3654), - [anon_sym_as] = ACTIONS(1785), - [anon_sym_LBRACE] = ACTIONS(1785), - [anon_sym_COMMA] = ACTIONS(1785), - [anon_sym_RBRACE] = ACTIONS(1785), - [anon_sym_LPAREN] = ACTIONS(3656), - [anon_sym_RPAREN] = ACTIONS(1785), - [anon_sym_PIPE] = ACTIONS(1785), - [anon_sym_fn] = ACTIONS(1785), - [anon_sym_PLUS] = ACTIONS(1785), - [anon_sym_DASH] = ACTIONS(1785), - [anon_sym_STAR] = ACTIONS(1785), - [anon_sym_SLASH] = ACTIONS(1785), - [anon_sym_PERCENT] = ACTIONS(1785), - [anon_sym_LT] = ACTIONS(1785), - [anon_sym_GT] = ACTIONS(1785), - [anon_sym_EQ_EQ] = ACTIONS(1785), - [anon_sym_BANG_EQ] = ACTIONS(1785), - [anon_sym_LT_EQ] = ACTIONS(1785), - [anon_sym_GT_EQ] = ACTIONS(1785), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1785), - [anon_sym_LBRACK] = ACTIONS(3658), - [anon_sym_struct] = ACTIONS(1785), - [anon_sym_mut] = ACTIONS(1785), - [anon_sym_PLUS_PLUS] = ACTIONS(1785), - [anon_sym_DASH_DASH] = ACTIONS(1785), - [anon_sym_QMARK] = ACTIONS(3660), - [anon_sym_BANG] = ACTIONS(3662), - [anon_sym_go] = ACTIONS(1785), - [anon_sym_spawn] = ACTIONS(1785), - [anon_sym_json_DOTdecode] = ACTIONS(1785), - [anon_sym_LBRACK2] = ACTIONS(3664), - [anon_sym_TILDE] = ACTIONS(1785), - [anon_sym_CARET] = ACTIONS(1785), - [anon_sym_AMP] = ACTIONS(1785), - [anon_sym_LT_DASH] = ACTIONS(1785), - [anon_sym_LT_LT] = ACTIONS(1785), - [anon_sym_GT_GT] = ACTIONS(1785), - [anon_sym_GT_GT_GT] = ACTIONS(1785), - [anon_sym_AMP_CARET] = ACTIONS(1785), - [anon_sym_AMP_AMP] = ACTIONS(1785), - [anon_sym_PIPE_PIPE] = ACTIONS(1785), - [anon_sym_or] = ACTIONS(1785), - [sym_none] = ACTIONS(1785), - [sym_true] = ACTIONS(1785), - [sym_false] = ACTIONS(1785), - [sym_nil] = ACTIONS(1785), - [anon_sym_QMARK_DOT] = ACTIONS(3654), - [anon_sym_POUND_LBRACK] = ACTIONS(3664), - [anon_sym_if] = ACTIONS(1785), - [anon_sym_DOLLARif] = ACTIONS(1785), - [anon_sym_is] = ACTIONS(1785), - [anon_sym_BANGis] = ACTIONS(1785), - [anon_sym_in] = ACTIONS(1785), - [anon_sym_BANGin] = ACTIONS(1785), - [anon_sym_match] = ACTIONS(1785), - [anon_sym_select] = ACTIONS(1785), - [anon_sym_lock] = ACTIONS(1785), - [anon_sym_rlock] = ACTIONS(1785), - [anon_sym_unsafe] = ACTIONS(1785), - [anon_sym_sql] = ACTIONS(1785), - [sym_int_literal] = ACTIONS(1785), - [sym_float_literal] = ACTIONS(1785), - [sym_rune_literal] = ACTIONS(1785), - [sym_pseudo_compile_time_identifier] = ACTIONS(1785), - [anon_sym_shared] = ACTIONS(1785), - [anon_sym_map_LBRACK] = ACTIONS(1785), - [anon_sym_chan] = ACTIONS(1785), - [anon_sym_thread] = ACTIONS(1785), - [anon_sym_atomic] = ACTIONS(1785), - [sym___double_quote] = ACTIONS(1785), - [sym___single_quote] = ACTIONS(1785), - [sym___c_double_quote] = ACTIONS(1785), - [sym___c_single_quote] = ACTIONS(1785), - [sym___r_double_quote] = ACTIONS(1785), - [sym___r_single_quote] = ACTIONS(1785), + [anon_sym_shared] = ACTIONS(583), + [anon_sym_map_LBRACK] = ACTIONS(549), + [anon_sym_chan] = ACTIONS(87), + [anon_sym_thread] = ACTIONS(89), + [anon_sym_atomic] = ACTIONS(91), }, [1107] = { [sym_line_comment] = STATE(1107), [sym_block_comment] = STATE(1107), - [sym_type_parameters] = STATE(4205), - [sym_argument_list] = STATE(1166), - [sym_or_block] = STATE(1167), + [sym_type_parameters] = STATE(4199), + [sym_argument_list] = STATE(1208), + [sym_or_block] = STATE(1207), + [sym_identifier] = ACTIONS(1795), + [anon_sym_LF] = ACTIONS(1795), + [anon_sym_CR] = ACTIONS(1795), + [anon_sym_CR_LF] = ACTIONS(1795), + [anon_sym_SLASH_SLASH] = ACTIONS(497), + [anon_sym_SLASH_STAR] = ACTIONS(499), + [anon_sym_SEMI] = ACTIONS(1795), + [anon_sym_DOT] = ACTIONS(3660), + [anon_sym_as] = ACTIONS(3662), + [anon_sym_LBRACE] = ACTIONS(1795), + [anon_sym_COMMA] = ACTIONS(1795), + [anon_sym_RBRACE] = ACTIONS(1795), + [anon_sym_LPAREN] = ACTIONS(3664), + [anon_sym_RPAREN] = ACTIONS(1795), + [anon_sym_PIPE] = ACTIONS(3666), + [anon_sym_fn] = ACTIONS(1795), + [anon_sym_PLUS] = ACTIONS(3666), + [anon_sym_DASH] = ACTIONS(3666), + [anon_sym_STAR] = ACTIONS(3668), + [anon_sym_SLASH] = ACTIONS(3668), + [anon_sym_PERCENT] = ACTIONS(3668), + [anon_sym_LT] = ACTIONS(3670), + [anon_sym_GT] = ACTIONS(3670), + [anon_sym_EQ_EQ] = ACTIONS(3670), + [anon_sym_BANG_EQ] = ACTIONS(3670), + [anon_sym_LT_EQ] = ACTIONS(3670), + [anon_sym_GT_EQ] = ACTIONS(3670), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1795), + [anon_sym_LBRACK] = ACTIONS(3672), + [anon_sym_struct] = ACTIONS(1795), + [anon_sym_mut] = ACTIONS(1795), + [anon_sym_PLUS_PLUS] = ACTIONS(3674), + [anon_sym_DASH_DASH] = ACTIONS(3676), + [anon_sym_QMARK] = ACTIONS(3678), + [anon_sym_BANG] = ACTIONS(3680), + [anon_sym_go] = ACTIONS(1795), + [anon_sym_spawn] = ACTIONS(1795), + [anon_sym_json_DOTdecode] = ACTIONS(1795), + [anon_sym_LBRACK2] = ACTIONS(3682), + [anon_sym_TILDE] = ACTIONS(1795), + [anon_sym_CARET] = ACTIONS(3666), + [anon_sym_AMP] = ACTIONS(3668), + [anon_sym_LT_DASH] = ACTIONS(1795), + [anon_sym_LT_LT] = ACTIONS(3668), + [anon_sym_GT_GT] = ACTIONS(3668), + [anon_sym_GT_GT_GT] = ACTIONS(3668), + [anon_sym_AMP_CARET] = ACTIONS(3668), + [anon_sym_AMP_AMP] = ACTIONS(3684), + [anon_sym_PIPE_PIPE] = ACTIONS(3686), + [anon_sym_or] = ACTIONS(3688), + [sym_none] = ACTIONS(1795), + [sym_true] = ACTIONS(1795), + [sym_false] = ACTIONS(1795), + [sym_nil] = ACTIONS(1795), + [anon_sym_QMARK_DOT] = ACTIONS(3660), + [anon_sym_POUND_LBRACK] = ACTIONS(3682), + [anon_sym_if] = ACTIONS(1795), + [anon_sym_DOLLARif] = ACTIONS(1795), + [anon_sym_is] = ACTIONS(3690), + [anon_sym_BANGis] = ACTIONS(3690), + [anon_sym_in] = ACTIONS(3692), + [anon_sym_BANGin] = ACTIONS(3692), + [anon_sym_match] = ACTIONS(1795), + [anon_sym_select] = ACTIONS(1795), + [anon_sym_lock] = ACTIONS(1795), + [anon_sym_rlock] = ACTIONS(1795), + [anon_sym_unsafe] = ACTIONS(1795), + [anon_sym_sql] = ACTIONS(1795), + [sym_int_literal] = ACTIONS(1795), + [sym_float_literal] = ACTIONS(1795), + [sym_rune_literal] = ACTIONS(1795), + [sym_pseudo_compile_time_identifier] = ACTIONS(1795), + [anon_sym_shared] = ACTIONS(1795), + [anon_sym_map_LBRACK] = ACTIONS(1795), + [anon_sym_chan] = ACTIONS(1795), + [anon_sym_thread] = ACTIONS(1795), + [anon_sym_atomic] = ACTIONS(1795), + [sym___double_quote] = ACTIONS(1795), + [sym___single_quote] = ACTIONS(1795), + [sym___c_double_quote] = ACTIONS(1795), + [sym___c_single_quote] = ACTIONS(1795), + [sym___r_double_quote] = ACTIONS(1795), + [sym___r_single_quote] = ACTIONS(1795), + }, + [1108] = { + [sym_line_comment] = STATE(1108), + [sym_block_comment] = STATE(1108), + [sym_type_parameters] = STATE(4199), + [sym_argument_list] = STATE(1208), + [sym_or_block] = STATE(1207), + [sym_identifier] = ACTIONS(1765), + [anon_sym_LF] = ACTIONS(1765), + [anon_sym_CR] = ACTIONS(1765), + [anon_sym_CR_LF] = ACTIONS(1765), + [anon_sym_SLASH_SLASH] = ACTIONS(497), + [anon_sym_SLASH_STAR] = ACTIONS(499), + [anon_sym_SEMI] = ACTIONS(1765), + [anon_sym_DOT] = ACTIONS(3660), + [anon_sym_as] = ACTIONS(1765), + [anon_sym_LBRACE] = ACTIONS(1765), + [anon_sym_COMMA] = ACTIONS(1765), + [anon_sym_RBRACE] = ACTIONS(1765), + [anon_sym_LPAREN] = ACTIONS(3664), + [anon_sym_RPAREN] = ACTIONS(1765), + [anon_sym_PIPE] = ACTIONS(1765), + [anon_sym_fn] = ACTIONS(1765), + [anon_sym_PLUS] = ACTIONS(1765), + [anon_sym_DASH] = ACTIONS(1765), + [anon_sym_STAR] = ACTIONS(3668), + [anon_sym_SLASH] = ACTIONS(3668), + [anon_sym_PERCENT] = ACTIONS(3668), + [anon_sym_LT] = ACTIONS(1765), + [anon_sym_GT] = ACTIONS(1765), + [anon_sym_EQ_EQ] = ACTIONS(1765), + [anon_sym_BANG_EQ] = ACTIONS(1765), + [anon_sym_LT_EQ] = ACTIONS(1765), + [anon_sym_GT_EQ] = ACTIONS(1765), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1765), + [anon_sym_LBRACK] = ACTIONS(3672), + [anon_sym_struct] = ACTIONS(1765), + [anon_sym_mut] = ACTIONS(1765), + [anon_sym_PLUS_PLUS] = ACTIONS(1765), + [anon_sym_DASH_DASH] = ACTIONS(1765), + [anon_sym_QMARK] = ACTIONS(3678), + [anon_sym_BANG] = ACTIONS(3680), + [anon_sym_go] = ACTIONS(1765), + [anon_sym_spawn] = ACTIONS(1765), + [anon_sym_json_DOTdecode] = ACTIONS(1765), + [anon_sym_LBRACK2] = ACTIONS(3682), + [anon_sym_TILDE] = ACTIONS(1765), + [anon_sym_CARET] = ACTIONS(1765), + [anon_sym_AMP] = ACTIONS(3668), + [anon_sym_LT_DASH] = ACTIONS(1765), + [anon_sym_LT_LT] = ACTIONS(3668), + [anon_sym_GT_GT] = ACTIONS(3668), + [anon_sym_GT_GT_GT] = ACTIONS(3668), + [anon_sym_AMP_CARET] = ACTIONS(3668), + [anon_sym_AMP_AMP] = ACTIONS(1765), + [anon_sym_PIPE_PIPE] = ACTIONS(1765), + [anon_sym_or] = ACTIONS(1765), + [sym_none] = ACTIONS(1765), + [sym_true] = ACTIONS(1765), + [sym_false] = ACTIONS(1765), + [sym_nil] = ACTIONS(1765), + [anon_sym_QMARK_DOT] = ACTIONS(3660), + [anon_sym_POUND_LBRACK] = ACTIONS(3682), + [anon_sym_if] = ACTIONS(1765), + [anon_sym_DOLLARif] = ACTIONS(1765), + [anon_sym_is] = ACTIONS(1765), + [anon_sym_BANGis] = ACTIONS(1765), + [anon_sym_in] = ACTIONS(1765), + [anon_sym_BANGin] = ACTIONS(1765), + [anon_sym_match] = ACTIONS(1765), + [anon_sym_select] = ACTIONS(1765), + [anon_sym_lock] = ACTIONS(1765), + [anon_sym_rlock] = ACTIONS(1765), + [anon_sym_unsafe] = ACTIONS(1765), + [anon_sym_sql] = ACTIONS(1765), + [sym_int_literal] = ACTIONS(1765), + [sym_float_literal] = ACTIONS(1765), + [sym_rune_literal] = ACTIONS(1765), + [sym_pseudo_compile_time_identifier] = ACTIONS(1765), + [anon_sym_shared] = ACTIONS(1765), + [anon_sym_map_LBRACK] = ACTIONS(1765), + [anon_sym_chan] = ACTIONS(1765), + [anon_sym_thread] = ACTIONS(1765), + [anon_sym_atomic] = ACTIONS(1765), + [sym___double_quote] = ACTIONS(1765), + [sym___single_quote] = ACTIONS(1765), + [sym___c_double_quote] = ACTIONS(1765), + [sym___c_single_quote] = ACTIONS(1765), + [sym___r_double_quote] = ACTIONS(1765), + [sym___r_single_quote] = ACTIONS(1765), + }, + [1109] = { + [sym_line_comment] = STATE(1109), + [sym_block_comment] = STATE(1109), + [sym_type_parameters] = STATE(4199), + [sym_argument_list] = STATE(1208), + [sym_or_block] = STATE(1207), + [sym_identifier] = ACTIONS(1769), + [anon_sym_LF] = ACTIONS(1769), + [anon_sym_CR] = ACTIONS(1769), + [anon_sym_CR_LF] = ACTIONS(1769), + [anon_sym_SLASH_SLASH] = ACTIONS(497), + [anon_sym_SLASH_STAR] = ACTIONS(499), + [anon_sym_SEMI] = ACTIONS(1769), + [anon_sym_DOT] = ACTIONS(3660), + [anon_sym_as] = ACTIONS(1769), + [anon_sym_LBRACE] = ACTIONS(1769), + [anon_sym_COMMA] = ACTIONS(1769), + [anon_sym_RBRACE] = ACTIONS(1769), + [anon_sym_LPAREN] = ACTIONS(3664), + [anon_sym_RPAREN] = ACTIONS(1769), + [anon_sym_PIPE] = ACTIONS(1769), + [anon_sym_fn] = ACTIONS(1769), + [anon_sym_PLUS] = ACTIONS(1769), + [anon_sym_DASH] = ACTIONS(1769), + [anon_sym_STAR] = ACTIONS(1769), + [anon_sym_SLASH] = ACTIONS(1769), + [anon_sym_PERCENT] = ACTIONS(1769), + [anon_sym_LT] = ACTIONS(1769), + [anon_sym_GT] = ACTIONS(1769), + [anon_sym_EQ_EQ] = ACTIONS(1769), + [anon_sym_BANG_EQ] = ACTIONS(1769), + [anon_sym_LT_EQ] = ACTIONS(1769), + [anon_sym_GT_EQ] = ACTIONS(1769), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1769), + [anon_sym_LBRACK] = ACTIONS(3672), + [anon_sym_struct] = ACTIONS(1769), + [anon_sym_mut] = ACTIONS(1769), + [anon_sym_PLUS_PLUS] = ACTIONS(1769), + [anon_sym_DASH_DASH] = ACTIONS(1769), + [anon_sym_QMARK] = ACTIONS(3678), + [anon_sym_BANG] = ACTIONS(3680), + [anon_sym_go] = ACTIONS(1769), + [anon_sym_spawn] = ACTIONS(1769), + [anon_sym_json_DOTdecode] = ACTIONS(1769), + [anon_sym_LBRACK2] = ACTIONS(3682), + [anon_sym_TILDE] = ACTIONS(1769), + [anon_sym_CARET] = ACTIONS(1769), + [anon_sym_AMP] = ACTIONS(1769), + [anon_sym_LT_DASH] = ACTIONS(1769), + [anon_sym_LT_LT] = ACTIONS(1769), + [anon_sym_GT_GT] = ACTIONS(1769), + [anon_sym_GT_GT_GT] = ACTIONS(1769), + [anon_sym_AMP_CARET] = ACTIONS(1769), + [anon_sym_AMP_AMP] = ACTIONS(1769), + [anon_sym_PIPE_PIPE] = ACTIONS(1769), + [anon_sym_or] = ACTIONS(1769), + [sym_none] = ACTIONS(1769), + [sym_true] = ACTIONS(1769), + [sym_false] = ACTIONS(1769), + [sym_nil] = ACTIONS(1769), + [anon_sym_QMARK_DOT] = ACTIONS(3660), + [anon_sym_POUND_LBRACK] = ACTIONS(3682), + [anon_sym_if] = ACTIONS(1769), + [anon_sym_DOLLARif] = ACTIONS(1769), + [anon_sym_is] = ACTIONS(1769), + [anon_sym_BANGis] = ACTIONS(1769), + [anon_sym_in] = ACTIONS(1769), + [anon_sym_BANGin] = ACTIONS(1769), + [anon_sym_match] = ACTIONS(1769), + [anon_sym_select] = ACTIONS(1769), + [anon_sym_lock] = ACTIONS(1769), + [anon_sym_rlock] = ACTIONS(1769), + [anon_sym_unsafe] = ACTIONS(1769), + [anon_sym_sql] = ACTIONS(1769), + [sym_int_literal] = ACTIONS(1769), + [sym_float_literal] = ACTIONS(1769), + [sym_rune_literal] = ACTIONS(1769), + [sym_pseudo_compile_time_identifier] = ACTIONS(1769), + [anon_sym_shared] = ACTIONS(1769), + [anon_sym_map_LBRACK] = ACTIONS(1769), + [anon_sym_chan] = ACTIONS(1769), + [anon_sym_thread] = ACTIONS(1769), + [anon_sym_atomic] = ACTIONS(1769), + [sym___double_quote] = ACTIONS(1769), + [sym___single_quote] = ACTIONS(1769), + [sym___c_double_quote] = ACTIONS(1769), + [sym___c_single_quote] = ACTIONS(1769), + [sym___r_double_quote] = ACTIONS(1769), + [sym___r_single_quote] = ACTIONS(1769), + }, + [1110] = { + [sym_line_comment] = STATE(1110), + [sym_block_comment] = STATE(1110), + [sym_reference_expression] = STATE(4498), + [sym_type_reference_expression] = STATE(3460), + [sym_plain_type] = STATE(2345), + [sym__plain_type_without_special] = STATE(2360), + [sym_anon_struct_type] = STATE(2362), + [sym_multi_return_type] = STATE(2360), + [sym_result_type] = STATE(2360), + [sym_option_type] = STATE(2360), + [sym_qualified_type] = STATE(3460), + [sym_fixed_array_type] = STATE(2362), + [sym_array_type] = STATE(2362), + [sym_pointer_type] = STATE(2362), + [sym_wrong_pointer_type] = STATE(2362), + [sym_map_type] = STATE(2362), + [sym_channel_type] = STATE(2362), + [sym_shared_type] = STATE(2362), + [sym_thread_type] = STATE(2362), + [sym_atomic_type] = STATE(2362), + [sym_generic_type] = STATE(2362), + [sym_function_type] = STATE(2362), + [sym_identifier] = ACTIONS(565), + [anon_sym_LF] = ACTIONS(627), + [anon_sym_CR] = ACTIONS(627), + [anon_sym_CR_LF] = ACTIONS(627), + [anon_sym_SLASH_SLASH] = ACTIONS(497), + [anon_sym_SLASH_STAR] = ACTIONS(499), + [anon_sym_DOT] = ACTIONS(627), + [anon_sym_as] = ACTIONS(627), + [anon_sym_LBRACE] = ACTIONS(623), + [anon_sym_COMMA] = ACTIONS(627), + [anon_sym_RBRACE] = ACTIONS(627), + [anon_sym_LPAREN] = ACTIONS(627), + [anon_sym_EQ] = ACTIONS(627), + [anon_sym_PIPE] = ACTIONS(627), + [anon_sym_fn] = ACTIONS(571), + [anon_sym_PLUS] = ACTIONS(627), + [anon_sym_DASH] = ACTIONS(627), + [anon_sym_STAR] = ACTIONS(627), + [anon_sym_SLASH] = ACTIONS(627), + [anon_sym_PERCENT] = ACTIONS(627), + [anon_sym_LT] = ACTIONS(627), + [anon_sym_GT] = ACTIONS(627), + [anon_sym_EQ_EQ] = ACTIONS(627), + [anon_sym_BANG_EQ] = ACTIONS(627), + [anon_sym_LT_EQ] = ACTIONS(627), + [anon_sym_GT_EQ] = ACTIONS(627), + [anon_sym_LBRACK] = ACTIONS(625), + [anon_sym_struct] = ACTIONS(575), + [anon_sym_PLUS_PLUS] = ACTIONS(627), + [anon_sym_DASH_DASH] = ACTIONS(627), + [anon_sym_QMARK] = ACTIONS(627), + [anon_sym_BANG] = ACTIONS(627), + [anon_sym_LBRACK2] = ACTIONS(627), + [anon_sym_CARET] = ACTIONS(627), + [anon_sym_AMP] = ACTIONS(627), + [anon_sym_LT_LT] = ACTIONS(627), + [anon_sym_GT_GT] = ACTIONS(627), + [anon_sym_GT_GT_GT] = ACTIONS(627), + [anon_sym_AMP_CARET] = ACTIONS(627), + [anon_sym_AMP_AMP] = ACTIONS(627), + [anon_sym_PIPE_PIPE] = ACTIONS(627), + [anon_sym_or] = ACTIONS(627), + [anon_sym_QMARK_DOT] = ACTIONS(627), + [anon_sym_POUND_LBRACK] = ACTIONS(627), + [anon_sym_is] = ACTIONS(627), + [anon_sym_BANGis] = ACTIONS(627), + [anon_sym_in] = ACTIONS(627), + [anon_sym_BANGin] = ACTIONS(627), + [anon_sym_STAR_EQ] = ACTIONS(627), + [anon_sym_SLASH_EQ] = ACTIONS(627), + [anon_sym_PERCENT_EQ] = ACTIONS(627), + [anon_sym_LT_LT_EQ] = ACTIONS(627), + [anon_sym_GT_GT_EQ] = ACTIONS(627), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(627), + [anon_sym_AMP_EQ] = ACTIONS(627), + [anon_sym_AMP_CARET_EQ] = ACTIONS(627), + [anon_sym_PLUS_EQ] = ACTIONS(627), + [anon_sym_DASH_EQ] = ACTIONS(627), + [anon_sym_PIPE_EQ] = ACTIONS(627), + [anon_sym_CARET_EQ] = ACTIONS(627), + [anon_sym_COLON_EQ] = ACTIONS(627), + [anon_sym_shared] = ACTIONS(583), + [anon_sym_map_LBRACK] = ACTIONS(549), + [anon_sym_chan] = ACTIONS(87), + [anon_sym_thread] = ACTIONS(89), + [anon_sym_atomic] = ACTIONS(91), + }, + [1111] = { + [sym_line_comment] = STATE(1111), + [sym_block_comment] = STATE(1111), + [sym_type_parameters] = STATE(4199), + [sym_argument_list] = STATE(1208), + [sym_or_block] = STATE(1207), [sym_identifier] = ACTIONS(1773), [anon_sym_LF] = ACTIONS(1773), [anon_sym_CR] = ACTIONS(1773), @@ -148150,61 +148554,61 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_SLASH_SLASH] = ACTIONS(497), [anon_sym_SLASH_STAR] = ACTIONS(499), [anon_sym_SEMI] = ACTIONS(1773), - [anon_sym_DOT] = ACTIONS(3654), - [anon_sym_as] = ACTIONS(3666), + [anon_sym_DOT] = ACTIONS(3660), + [anon_sym_as] = ACTIONS(3662), [anon_sym_LBRACE] = ACTIONS(1773), [anon_sym_COMMA] = ACTIONS(1773), [anon_sym_RBRACE] = ACTIONS(1773), - [anon_sym_LPAREN] = ACTIONS(3656), + [anon_sym_LPAREN] = ACTIONS(3664), [anon_sym_RPAREN] = ACTIONS(1773), - [anon_sym_PIPE] = ACTIONS(3668), + [anon_sym_PIPE] = ACTIONS(3666), [anon_sym_fn] = ACTIONS(1773), - [anon_sym_PLUS] = ACTIONS(3668), - [anon_sym_DASH] = ACTIONS(3668), - [anon_sym_STAR] = ACTIONS(3670), - [anon_sym_SLASH] = ACTIONS(3670), - [anon_sym_PERCENT] = ACTIONS(3670), - [anon_sym_LT] = ACTIONS(3672), - [anon_sym_GT] = ACTIONS(3672), - [anon_sym_EQ_EQ] = ACTIONS(3672), - [anon_sym_BANG_EQ] = ACTIONS(3672), - [anon_sym_LT_EQ] = ACTIONS(3672), - [anon_sym_GT_EQ] = ACTIONS(3672), + [anon_sym_PLUS] = ACTIONS(3666), + [anon_sym_DASH] = ACTIONS(3666), + [anon_sym_STAR] = ACTIONS(3668), + [anon_sym_SLASH] = ACTIONS(3668), + [anon_sym_PERCENT] = ACTIONS(3668), + [anon_sym_LT] = ACTIONS(3670), + [anon_sym_GT] = ACTIONS(3670), + [anon_sym_EQ_EQ] = ACTIONS(3670), + [anon_sym_BANG_EQ] = ACTIONS(3670), + [anon_sym_LT_EQ] = ACTIONS(3670), + [anon_sym_GT_EQ] = ACTIONS(3670), [anon_sym_DOT_DOT_DOT] = ACTIONS(1773), - [anon_sym_LBRACK] = ACTIONS(3658), + [anon_sym_LBRACK] = ACTIONS(3672), [anon_sym_struct] = ACTIONS(1773), [anon_sym_mut] = ACTIONS(1773), [anon_sym_PLUS_PLUS] = ACTIONS(3674), [anon_sym_DASH_DASH] = ACTIONS(3676), - [anon_sym_QMARK] = ACTIONS(3660), - [anon_sym_BANG] = ACTIONS(3662), + [anon_sym_QMARK] = ACTIONS(3678), + [anon_sym_BANG] = ACTIONS(3680), [anon_sym_go] = ACTIONS(1773), [anon_sym_spawn] = ACTIONS(1773), [anon_sym_json_DOTdecode] = ACTIONS(1773), - [anon_sym_LBRACK2] = ACTIONS(3664), + [anon_sym_LBRACK2] = ACTIONS(3682), [anon_sym_TILDE] = ACTIONS(1773), - [anon_sym_CARET] = ACTIONS(3668), - [anon_sym_AMP] = ACTIONS(3670), + [anon_sym_CARET] = ACTIONS(3666), + [anon_sym_AMP] = ACTIONS(3668), [anon_sym_LT_DASH] = ACTIONS(1773), - [anon_sym_LT_LT] = ACTIONS(3670), - [anon_sym_GT_GT] = ACTIONS(3670), - [anon_sym_GT_GT_GT] = ACTIONS(3670), - [anon_sym_AMP_CARET] = ACTIONS(3670), - [anon_sym_AMP_AMP] = ACTIONS(3678), - [anon_sym_PIPE_PIPE] = ACTIONS(3680), - [anon_sym_or] = ACTIONS(3682), + [anon_sym_LT_LT] = ACTIONS(3668), + [anon_sym_GT_GT] = ACTIONS(3668), + [anon_sym_GT_GT_GT] = ACTIONS(3668), + [anon_sym_AMP_CARET] = ACTIONS(3668), + [anon_sym_AMP_AMP] = ACTIONS(3684), + [anon_sym_PIPE_PIPE] = ACTIONS(3686), + [anon_sym_or] = ACTIONS(3688), [sym_none] = ACTIONS(1773), [sym_true] = ACTIONS(1773), [sym_false] = ACTIONS(1773), [sym_nil] = ACTIONS(1773), - [anon_sym_QMARK_DOT] = ACTIONS(3654), - [anon_sym_POUND_LBRACK] = ACTIONS(3664), + [anon_sym_QMARK_DOT] = ACTIONS(3660), + [anon_sym_POUND_LBRACK] = ACTIONS(3682), [anon_sym_if] = ACTIONS(1773), [anon_sym_DOLLARif] = ACTIONS(1773), - [anon_sym_is] = ACTIONS(3684), - [anon_sym_BANGis] = ACTIONS(3684), - [anon_sym_in] = ACTIONS(3686), - [anon_sym_BANGin] = ACTIONS(3686), + [anon_sym_is] = ACTIONS(3690), + [anon_sym_BANGis] = ACTIONS(3690), + [anon_sym_in] = ACTIONS(3692), + [anon_sym_BANGin] = ACTIONS(3692), [anon_sym_match] = ACTIONS(1773), [anon_sym_select] = ACTIONS(1773), [anon_sym_lock] = ACTIONS(1773), @@ -148227,192 +148631,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym___r_double_quote] = ACTIONS(1773), [sym___r_single_quote] = ACTIONS(1773), }, - [1108] = { - [sym_line_comment] = STATE(1108), - [sym_block_comment] = STATE(1108), - [sym_type_parameters] = STATE(4205), - [sym_argument_list] = STATE(1166), - [sym_or_block] = STATE(1167), - [sym_identifier] = ACTIONS(1785), - [anon_sym_LF] = ACTIONS(1785), - [anon_sym_CR] = ACTIONS(1785), - [anon_sym_CR_LF] = ACTIONS(1785), - [anon_sym_SLASH_SLASH] = ACTIONS(497), - [anon_sym_SLASH_STAR] = ACTIONS(499), - [anon_sym_SEMI] = ACTIONS(1785), - [anon_sym_DOT] = ACTIONS(3654), - [anon_sym_as] = ACTIONS(1785), - [anon_sym_LBRACE] = ACTIONS(1785), - [anon_sym_COMMA] = ACTIONS(1785), - [anon_sym_RBRACE] = ACTIONS(1785), - [anon_sym_LPAREN] = ACTIONS(3656), - [anon_sym_RPAREN] = ACTIONS(1785), - [anon_sym_PIPE] = ACTIONS(3668), - [anon_sym_fn] = ACTIONS(1785), - [anon_sym_PLUS] = ACTIONS(3668), - [anon_sym_DASH] = ACTIONS(3668), - [anon_sym_STAR] = ACTIONS(3670), - [anon_sym_SLASH] = ACTIONS(3670), - [anon_sym_PERCENT] = ACTIONS(3670), - [anon_sym_LT] = ACTIONS(3672), - [anon_sym_GT] = ACTIONS(3672), - [anon_sym_EQ_EQ] = ACTIONS(3672), - [anon_sym_BANG_EQ] = ACTIONS(3672), - [anon_sym_LT_EQ] = ACTIONS(3672), - [anon_sym_GT_EQ] = ACTIONS(3672), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1785), - [anon_sym_LBRACK] = ACTIONS(3658), - [anon_sym_struct] = ACTIONS(1785), - [anon_sym_mut] = ACTIONS(1785), - [anon_sym_PLUS_PLUS] = ACTIONS(1785), - [anon_sym_DASH_DASH] = ACTIONS(1785), - [anon_sym_QMARK] = ACTIONS(3660), - [anon_sym_BANG] = ACTIONS(3662), - [anon_sym_go] = ACTIONS(1785), - [anon_sym_spawn] = ACTIONS(1785), - [anon_sym_json_DOTdecode] = ACTIONS(1785), - [anon_sym_LBRACK2] = ACTIONS(3664), - [anon_sym_TILDE] = ACTIONS(1785), - [anon_sym_CARET] = ACTIONS(3668), - [anon_sym_AMP] = ACTIONS(3670), - [anon_sym_LT_DASH] = ACTIONS(1785), - [anon_sym_LT_LT] = ACTIONS(3670), - [anon_sym_GT_GT] = ACTIONS(3670), - [anon_sym_GT_GT_GT] = ACTIONS(3670), - [anon_sym_AMP_CARET] = ACTIONS(3670), - [anon_sym_AMP_AMP] = ACTIONS(3678), - [anon_sym_PIPE_PIPE] = ACTIONS(1785), - [anon_sym_or] = ACTIONS(1785), - [sym_none] = ACTIONS(1785), - [sym_true] = ACTIONS(1785), - [sym_false] = ACTIONS(1785), - [sym_nil] = ACTIONS(1785), - [anon_sym_QMARK_DOT] = ACTIONS(3654), - [anon_sym_POUND_LBRACK] = ACTIONS(3664), - [anon_sym_if] = ACTIONS(1785), - [anon_sym_DOLLARif] = ACTIONS(1785), - [anon_sym_is] = ACTIONS(1785), - [anon_sym_BANGis] = ACTIONS(1785), - [anon_sym_in] = ACTIONS(3686), - [anon_sym_BANGin] = ACTIONS(3686), - [anon_sym_match] = ACTIONS(1785), - [anon_sym_select] = ACTIONS(1785), - [anon_sym_lock] = ACTIONS(1785), - [anon_sym_rlock] = ACTIONS(1785), - [anon_sym_unsafe] = ACTIONS(1785), - [anon_sym_sql] = ACTIONS(1785), - [sym_int_literal] = ACTIONS(1785), - [sym_float_literal] = ACTIONS(1785), - [sym_rune_literal] = ACTIONS(1785), - [sym_pseudo_compile_time_identifier] = ACTIONS(1785), - [anon_sym_shared] = ACTIONS(1785), - [anon_sym_map_LBRACK] = ACTIONS(1785), - [anon_sym_chan] = ACTIONS(1785), - [anon_sym_thread] = ACTIONS(1785), - [anon_sym_atomic] = ACTIONS(1785), - [sym___double_quote] = ACTIONS(1785), - [sym___single_quote] = ACTIONS(1785), - [sym___c_double_quote] = ACTIONS(1785), - [sym___c_single_quote] = ACTIONS(1785), - [sym___r_double_quote] = ACTIONS(1785), - [sym___r_single_quote] = ACTIONS(1785), - }, - [1109] = { - [sym_line_comment] = STATE(1109), - [sym_block_comment] = STATE(1109), - [sym_type_parameters] = STATE(4205), - [sym_argument_list] = STATE(1166), - [sym_or_block] = STATE(1167), - [sym_identifier] = ACTIONS(1785), - [anon_sym_LF] = ACTIONS(1785), - [anon_sym_CR] = ACTIONS(1785), - [anon_sym_CR_LF] = ACTIONS(1785), - [anon_sym_SLASH_SLASH] = ACTIONS(497), - [anon_sym_SLASH_STAR] = ACTIONS(499), - [anon_sym_SEMI] = ACTIONS(1785), - [anon_sym_DOT] = ACTIONS(3654), - [anon_sym_as] = ACTIONS(1785), - [anon_sym_LBRACE] = ACTIONS(1785), - [anon_sym_COMMA] = ACTIONS(1785), - [anon_sym_RBRACE] = ACTIONS(1785), - [anon_sym_LPAREN] = ACTIONS(3656), - [anon_sym_RPAREN] = ACTIONS(1785), - [anon_sym_PIPE] = ACTIONS(3668), - [anon_sym_fn] = ACTIONS(1785), - [anon_sym_PLUS] = ACTIONS(3668), - [anon_sym_DASH] = ACTIONS(3668), - [anon_sym_STAR] = ACTIONS(3670), - [anon_sym_SLASH] = ACTIONS(3670), - [anon_sym_PERCENT] = ACTIONS(3670), - [anon_sym_LT] = ACTIONS(3672), - [anon_sym_GT] = ACTIONS(3672), - [anon_sym_EQ_EQ] = ACTIONS(3672), - [anon_sym_BANG_EQ] = ACTIONS(3672), - [anon_sym_LT_EQ] = ACTIONS(3672), - [anon_sym_GT_EQ] = ACTIONS(3672), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1785), - [anon_sym_LBRACK] = ACTIONS(3658), - [anon_sym_struct] = ACTIONS(1785), - [anon_sym_mut] = ACTIONS(1785), - [anon_sym_PLUS_PLUS] = ACTIONS(1785), - [anon_sym_DASH_DASH] = ACTIONS(1785), - [anon_sym_QMARK] = ACTIONS(3660), - [anon_sym_BANG] = ACTIONS(3662), - [anon_sym_go] = ACTIONS(1785), - [anon_sym_spawn] = ACTIONS(1785), - [anon_sym_json_DOTdecode] = ACTIONS(1785), - [anon_sym_LBRACK2] = ACTIONS(3664), - [anon_sym_TILDE] = ACTIONS(1785), - [anon_sym_CARET] = ACTIONS(3668), - [anon_sym_AMP] = ACTIONS(3670), - [anon_sym_LT_DASH] = ACTIONS(1785), - [anon_sym_LT_LT] = ACTIONS(3670), - [anon_sym_GT_GT] = ACTIONS(3670), - [anon_sym_GT_GT_GT] = ACTIONS(3670), - [anon_sym_AMP_CARET] = ACTIONS(3670), - [anon_sym_AMP_AMP] = ACTIONS(1785), - [anon_sym_PIPE_PIPE] = ACTIONS(1785), - [anon_sym_or] = ACTIONS(1785), - [sym_none] = ACTIONS(1785), - [sym_true] = ACTIONS(1785), - [sym_false] = ACTIONS(1785), - [sym_nil] = ACTIONS(1785), - [anon_sym_QMARK_DOT] = ACTIONS(3654), - [anon_sym_POUND_LBRACK] = ACTIONS(3664), - [anon_sym_if] = ACTIONS(1785), - [anon_sym_DOLLARif] = ACTIONS(1785), - [anon_sym_is] = ACTIONS(1785), - [anon_sym_BANGis] = ACTIONS(1785), - [anon_sym_in] = ACTIONS(3686), - [anon_sym_BANGin] = ACTIONS(3686), - [anon_sym_match] = ACTIONS(1785), - [anon_sym_select] = ACTIONS(1785), - [anon_sym_lock] = ACTIONS(1785), - [anon_sym_rlock] = ACTIONS(1785), - [anon_sym_unsafe] = ACTIONS(1785), - [anon_sym_sql] = ACTIONS(1785), - [sym_int_literal] = ACTIONS(1785), - [sym_float_literal] = ACTIONS(1785), - [sym_rune_literal] = ACTIONS(1785), - [sym_pseudo_compile_time_identifier] = ACTIONS(1785), - [anon_sym_shared] = ACTIONS(1785), - [anon_sym_map_LBRACK] = ACTIONS(1785), - [anon_sym_chan] = ACTIONS(1785), - [anon_sym_thread] = ACTIONS(1785), - [anon_sym_atomic] = ACTIONS(1785), - [sym___double_quote] = ACTIONS(1785), - [sym___single_quote] = ACTIONS(1785), - [sym___c_double_quote] = ACTIONS(1785), - [sym___c_single_quote] = ACTIONS(1785), - [sym___r_double_quote] = ACTIONS(1785), - [sym___r_single_quote] = ACTIONS(1785), - }, - [1110] = { - [sym_line_comment] = STATE(1110), - [sym_block_comment] = STATE(1110), - [sym_type_parameters] = STATE(4205), - [sym_argument_list] = STATE(1166), - [sym_or_block] = STATE(1167), + [1112] = { + [sym_line_comment] = STATE(1112), + [sym_block_comment] = STATE(1112), + [sym_type_parameters] = STATE(4199), + [sym_argument_list] = STATE(1208), + [sym_or_block] = STATE(1207), [sym_identifier] = ACTIONS(1785), [anon_sym_LF] = ACTIONS(1785), [anon_sym_CR] = ACTIONS(1785), @@ -148420,20 +148644,20 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_SLASH_SLASH] = ACTIONS(497), [anon_sym_SLASH_STAR] = ACTIONS(499), [anon_sym_SEMI] = ACTIONS(1785), - [anon_sym_DOT] = ACTIONS(3654), + [anon_sym_DOT] = ACTIONS(3660), [anon_sym_as] = ACTIONS(1785), [anon_sym_LBRACE] = ACTIONS(1785), [anon_sym_COMMA] = ACTIONS(1785), [anon_sym_RBRACE] = ACTIONS(1785), - [anon_sym_LPAREN] = ACTIONS(3656), + [anon_sym_LPAREN] = ACTIONS(3664), [anon_sym_RPAREN] = ACTIONS(1785), - [anon_sym_PIPE] = ACTIONS(3668), + [anon_sym_PIPE] = ACTIONS(1785), [anon_sym_fn] = ACTIONS(1785), - [anon_sym_PLUS] = ACTIONS(3668), - [anon_sym_DASH] = ACTIONS(3668), - [anon_sym_STAR] = ACTIONS(3670), - [anon_sym_SLASH] = ACTIONS(3670), - [anon_sym_PERCENT] = ACTIONS(3670), + [anon_sym_PLUS] = ACTIONS(1785), + [anon_sym_DASH] = ACTIONS(1785), + [anon_sym_STAR] = ACTIONS(1785), + [anon_sym_SLASH] = ACTIONS(1785), + [anon_sym_PERCENT] = ACTIONS(1785), [anon_sym_LT] = ACTIONS(1785), [anon_sym_GT] = ACTIONS(1785), [anon_sym_EQ_EQ] = ACTIONS(1785), @@ -148441,25 +148665,25 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT_EQ] = ACTIONS(1785), [anon_sym_GT_EQ] = ACTIONS(1785), [anon_sym_DOT_DOT_DOT] = ACTIONS(1785), - [anon_sym_LBRACK] = ACTIONS(3658), + [anon_sym_LBRACK] = ACTIONS(3672), [anon_sym_struct] = ACTIONS(1785), [anon_sym_mut] = ACTIONS(1785), [anon_sym_PLUS_PLUS] = ACTIONS(1785), [anon_sym_DASH_DASH] = ACTIONS(1785), - [anon_sym_QMARK] = ACTIONS(3660), - [anon_sym_BANG] = ACTIONS(3662), + [anon_sym_QMARK] = ACTIONS(3678), + [anon_sym_BANG] = ACTIONS(3680), [anon_sym_go] = ACTIONS(1785), [anon_sym_spawn] = ACTIONS(1785), [anon_sym_json_DOTdecode] = ACTIONS(1785), - [anon_sym_LBRACK2] = ACTIONS(3664), + [anon_sym_LBRACK2] = ACTIONS(3682), [anon_sym_TILDE] = ACTIONS(1785), - [anon_sym_CARET] = ACTIONS(3668), - [anon_sym_AMP] = ACTIONS(3670), + [anon_sym_CARET] = ACTIONS(1785), + [anon_sym_AMP] = ACTIONS(1785), [anon_sym_LT_DASH] = ACTIONS(1785), - [anon_sym_LT_LT] = ACTIONS(3670), - [anon_sym_GT_GT] = ACTIONS(3670), - [anon_sym_GT_GT_GT] = ACTIONS(3670), - [anon_sym_AMP_CARET] = ACTIONS(3670), + [anon_sym_LT_LT] = ACTIONS(1785), + [anon_sym_GT_GT] = ACTIONS(1785), + [anon_sym_GT_GT_GT] = ACTIONS(1785), + [anon_sym_AMP_CARET] = ACTIONS(1785), [anon_sym_AMP_AMP] = ACTIONS(1785), [anon_sym_PIPE_PIPE] = ACTIONS(1785), [anon_sym_or] = ACTIONS(1785), @@ -148467,8 +148691,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_true] = ACTIONS(1785), [sym_false] = ACTIONS(1785), [sym_nil] = ACTIONS(1785), - [anon_sym_QMARK_DOT] = ACTIONS(3654), - [anon_sym_POUND_LBRACK] = ACTIONS(3664), + [anon_sym_QMARK_DOT] = ACTIONS(3660), + [anon_sym_POUND_LBRACK] = ACTIONS(3682), [anon_sym_if] = ACTIONS(1785), [anon_sym_DOLLARif] = ACTIONS(1785), [anon_sym_is] = ACTIONS(1785), @@ -148497,102 +148721,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym___r_double_quote] = ACTIONS(1785), [sym___r_single_quote] = ACTIONS(1785), }, - [1111] = { - [sym_line_comment] = STATE(1111), - [sym_block_comment] = STATE(1111), - [sym_reference_expression] = STATE(4495), - [sym_type_reference_expression] = STATE(3541), - [sym_plain_type] = STATE(2391), - [sym__plain_type_without_special] = STATE(2302), - [sym_anon_struct_type] = STATE(2303), - [sym_multi_return_type] = STATE(2302), - [sym_result_type] = STATE(2302), - [sym_option_type] = STATE(2302), - [sym_qualified_type] = STATE(3541), - [sym_fixed_array_type] = STATE(2303), - [sym_array_type] = STATE(2303), - [sym_pointer_type] = STATE(2303), - [sym_wrong_pointer_type] = STATE(2303), - [sym_map_type] = STATE(2303), - [sym_channel_type] = STATE(2303), - [sym_shared_type] = STATE(2303), - [sym_thread_type] = STATE(2303), - [sym_atomic_type] = STATE(2303), - [sym_generic_type] = STATE(2303), - [sym_function_type] = STATE(2303), - [sym_identifier] = ACTIONS(597), - [anon_sym_LF] = ACTIONS(623), - [anon_sym_CR] = ACTIONS(623), - [anon_sym_CR_LF] = ACTIONS(623), - [anon_sym_SLASH_SLASH] = ACTIONS(497), - [anon_sym_SLASH_STAR] = ACTIONS(499), - [anon_sym_DOT] = ACTIONS(623), - [anon_sym_as] = ACTIONS(623), - [anon_sym_LBRACE] = ACTIONS(567), - [anon_sym_COMMA] = ACTIONS(623), - [anon_sym_RBRACE] = ACTIONS(623), - [anon_sym_LPAREN] = ACTIONS(623), - [anon_sym_EQ] = ACTIONS(623), - [anon_sym_PIPE] = ACTIONS(623), - [anon_sym_fn] = ACTIONS(603), - [anon_sym_PLUS] = ACTIONS(623), - [anon_sym_DASH] = ACTIONS(623), - [anon_sym_STAR] = ACTIONS(623), - [anon_sym_SLASH] = ACTIONS(623), - [anon_sym_PERCENT] = ACTIONS(623), - [anon_sym_LT] = ACTIONS(623), - [anon_sym_GT] = ACTIONS(623), - [anon_sym_EQ_EQ] = ACTIONS(623), - [anon_sym_BANG_EQ] = ACTIONS(623), - [anon_sym_LT_EQ] = ACTIONS(623), - [anon_sym_GT_EQ] = ACTIONS(623), - [anon_sym_LBRACK] = ACTIONS(621), - [anon_sym_struct] = ACTIONS(607), - [anon_sym_PLUS_PLUS] = ACTIONS(623), - [anon_sym_DASH_DASH] = ACTIONS(623), - [anon_sym_QMARK] = ACTIONS(623), - [anon_sym_BANG] = ACTIONS(623), - [anon_sym_LBRACK2] = ACTIONS(623), - [anon_sym_CARET] = ACTIONS(623), - [anon_sym_AMP] = ACTIONS(623), - [anon_sym_LT_LT] = ACTIONS(623), - [anon_sym_GT_GT] = ACTIONS(623), - [anon_sym_GT_GT_GT] = ACTIONS(623), - [anon_sym_AMP_CARET] = ACTIONS(623), - [anon_sym_AMP_AMP] = ACTIONS(623), - [anon_sym_PIPE_PIPE] = ACTIONS(623), - [anon_sym_or] = ACTIONS(623), - [anon_sym_QMARK_DOT] = ACTIONS(623), - [anon_sym_POUND_LBRACK] = ACTIONS(623), - [anon_sym_is] = ACTIONS(623), - [anon_sym_BANGis] = ACTIONS(623), - [anon_sym_in] = ACTIONS(623), - [anon_sym_BANGin] = ACTIONS(623), - [anon_sym_STAR_EQ] = ACTIONS(623), - [anon_sym_SLASH_EQ] = ACTIONS(623), - [anon_sym_PERCENT_EQ] = ACTIONS(623), - [anon_sym_LT_LT_EQ] = ACTIONS(623), - [anon_sym_GT_GT_EQ] = ACTIONS(623), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(623), - [anon_sym_AMP_EQ] = ACTIONS(623), - [anon_sym_AMP_CARET_EQ] = ACTIONS(623), - [anon_sym_PLUS_EQ] = ACTIONS(623), - [anon_sym_DASH_EQ] = ACTIONS(623), - [anon_sym_PIPE_EQ] = ACTIONS(623), - [anon_sym_CARET_EQ] = ACTIONS(623), - [anon_sym_COLON_EQ] = ACTIONS(623), - [anon_sym_shared] = ACTIONS(615), - [anon_sym_map_LBRACK] = ACTIONS(549), - [anon_sym_chan] = ACTIONS(87), - [anon_sym_thread] = ACTIONS(89), - [anon_sym_atomic] = ACTIONS(91), - }, - [1112] = { - [sym_line_comment] = STATE(1112), - [sym_block_comment] = STATE(1112), - [sym_type_parameters] = STATE(4205), - [sym_argument_list] = STATE(1166), - [sym_or_block] = STATE(1167), + [1113] = { + [sym_line_comment] = STATE(1113), + [sym_block_comment] = STATE(1113), + [sym_type_parameters] = STATE(4199), + [sym_argument_list] = STATE(1208), + [sym_or_block] = STATE(1207), [sym_identifier] = ACTIONS(1765), [anon_sym_LF] = ACTIONS(1765), [anon_sym_CR] = ACTIONS(1765), @@ -148600,12 +148734,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_SLASH_SLASH] = ACTIONS(497), [anon_sym_SLASH_STAR] = ACTIONS(499), [anon_sym_SEMI] = ACTIONS(1765), - [anon_sym_DOT] = ACTIONS(3654), + [anon_sym_DOT] = ACTIONS(3660), [anon_sym_as] = ACTIONS(1765), [anon_sym_LBRACE] = ACTIONS(1765), [anon_sym_COMMA] = ACTIONS(1765), [anon_sym_RBRACE] = ACTIONS(1765), - [anon_sym_LPAREN] = ACTIONS(3656), + [anon_sym_LPAREN] = ACTIONS(3664), [anon_sym_RPAREN] = ACTIONS(1765), [anon_sym_PIPE] = ACTIONS(1765), [anon_sym_fn] = ACTIONS(1765), @@ -148621,17 +148755,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT_EQ] = ACTIONS(1765), [anon_sym_GT_EQ] = ACTIONS(1765), [anon_sym_DOT_DOT_DOT] = ACTIONS(1765), - [anon_sym_LBRACK] = ACTIONS(3658), + [anon_sym_LBRACK] = ACTIONS(3672), [anon_sym_struct] = ACTIONS(1765), [anon_sym_mut] = ACTIONS(1765), [anon_sym_PLUS_PLUS] = ACTIONS(1765), [anon_sym_DASH_DASH] = ACTIONS(1765), - [anon_sym_QMARK] = ACTIONS(3660), - [anon_sym_BANG] = ACTIONS(3662), + [anon_sym_QMARK] = ACTIONS(3678), + [anon_sym_BANG] = ACTIONS(3680), [anon_sym_go] = ACTIONS(1765), [anon_sym_spawn] = ACTIONS(1765), [anon_sym_json_DOTdecode] = ACTIONS(1765), - [anon_sym_LBRACK2] = ACTIONS(3664), + [anon_sym_LBRACK2] = ACTIONS(3682), [anon_sym_TILDE] = ACTIONS(1765), [anon_sym_CARET] = ACTIONS(1765), [anon_sym_AMP] = ACTIONS(1765), @@ -148647,8 +148781,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_true] = ACTIONS(1765), [sym_false] = ACTIONS(1765), [sym_nil] = ACTIONS(1765), - [anon_sym_QMARK_DOT] = ACTIONS(3654), - [anon_sym_POUND_LBRACK] = ACTIONS(3664), + [anon_sym_QMARK_DOT] = ACTIONS(3660), + [anon_sym_POUND_LBRACK] = ACTIONS(3682), [anon_sym_if] = ACTIONS(1765), [anon_sym_DOLLARif] = ACTIONS(1765), [anon_sym_is] = ACTIONS(1765), @@ -148677,102 +148811,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym___r_double_quote] = ACTIONS(1765), [sym___r_single_quote] = ACTIONS(1765), }, - [1113] = { - [sym_line_comment] = STATE(1113), - [sym_block_comment] = STATE(1113), - [sym_type_parameters] = STATE(4205), - [sym_argument_list] = STATE(1166), - [sym_or_block] = STATE(1167), - [sym_identifier] = ACTIONS(1777), - [anon_sym_LF] = ACTIONS(1777), - [anon_sym_CR] = ACTIONS(1777), - [anon_sym_CR_LF] = ACTIONS(1777), - [anon_sym_SLASH_SLASH] = ACTIONS(497), - [anon_sym_SLASH_STAR] = ACTIONS(499), - [anon_sym_SEMI] = ACTIONS(1777), - [anon_sym_DOT] = ACTIONS(3654), - [anon_sym_as] = ACTIONS(1777), - [anon_sym_LBRACE] = ACTIONS(1777), - [anon_sym_COMMA] = ACTIONS(1777), - [anon_sym_RBRACE] = ACTIONS(1777), - [anon_sym_LPAREN] = ACTIONS(3656), - [anon_sym_RPAREN] = ACTIONS(1777), - [anon_sym_PIPE] = ACTIONS(1777), - [anon_sym_fn] = ACTIONS(1777), - [anon_sym_PLUS] = ACTIONS(1777), - [anon_sym_DASH] = ACTIONS(1777), - [anon_sym_STAR] = ACTIONS(1777), - [anon_sym_SLASH] = ACTIONS(1777), - [anon_sym_PERCENT] = ACTIONS(1777), - [anon_sym_LT] = ACTIONS(1777), - [anon_sym_GT] = ACTIONS(1777), - [anon_sym_EQ_EQ] = ACTIONS(1777), - [anon_sym_BANG_EQ] = ACTIONS(1777), - [anon_sym_LT_EQ] = ACTIONS(1777), - [anon_sym_GT_EQ] = ACTIONS(1777), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1777), - [anon_sym_LBRACK] = ACTIONS(3658), - [anon_sym_struct] = ACTIONS(1777), - [anon_sym_mut] = ACTIONS(1777), - [anon_sym_PLUS_PLUS] = ACTIONS(1777), - [anon_sym_DASH_DASH] = ACTIONS(1777), - [anon_sym_QMARK] = ACTIONS(3660), - [anon_sym_BANG] = ACTIONS(3662), - [anon_sym_go] = ACTIONS(1777), - [anon_sym_spawn] = ACTIONS(1777), - [anon_sym_json_DOTdecode] = ACTIONS(1777), - [anon_sym_LBRACK2] = ACTIONS(3664), - [anon_sym_TILDE] = ACTIONS(1777), - [anon_sym_CARET] = ACTIONS(1777), - [anon_sym_AMP] = ACTIONS(1777), - [anon_sym_LT_DASH] = ACTIONS(1777), - [anon_sym_LT_LT] = ACTIONS(1777), - [anon_sym_GT_GT] = ACTIONS(1777), - [anon_sym_GT_GT_GT] = ACTIONS(1777), - [anon_sym_AMP_CARET] = ACTIONS(1777), - [anon_sym_AMP_AMP] = ACTIONS(1777), - [anon_sym_PIPE_PIPE] = ACTIONS(1777), - [anon_sym_or] = ACTIONS(1777), - [sym_none] = ACTIONS(1777), - [sym_true] = ACTIONS(1777), - [sym_false] = ACTIONS(1777), - [sym_nil] = ACTIONS(1777), - [anon_sym_QMARK_DOT] = ACTIONS(3654), - [anon_sym_POUND_LBRACK] = ACTIONS(3664), - [anon_sym_if] = ACTIONS(1777), - [anon_sym_DOLLARif] = ACTIONS(1777), - [anon_sym_is] = ACTIONS(1777), - [anon_sym_BANGis] = ACTIONS(1777), - [anon_sym_in] = ACTIONS(1777), - [anon_sym_BANGin] = ACTIONS(1777), - [anon_sym_match] = ACTIONS(1777), - [anon_sym_select] = ACTIONS(1777), - [anon_sym_lock] = ACTIONS(1777), - [anon_sym_rlock] = ACTIONS(1777), - [anon_sym_unsafe] = ACTIONS(1777), - [anon_sym_sql] = ACTIONS(1777), - [sym_int_literal] = ACTIONS(1777), - [sym_float_literal] = ACTIONS(1777), - [sym_rune_literal] = ACTIONS(1777), - [sym_pseudo_compile_time_identifier] = ACTIONS(1777), - [anon_sym_shared] = ACTIONS(1777), - [anon_sym_map_LBRACK] = ACTIONS(1777), - [anon_sym_chan] = ACTIONS(1777), - [anon_sym_thread] = ACTIONS(1777), - [anon_sym_atomic] = ACTIONS(1777), - [sym___double_quote] = ACTIONS(1777), - [sym___single_quote] = ACTIONS(1777), - [sym___c_double_quote] = ACTIONS(1777), - [sym___c_single_quote] = ACTIONS(1777), - [sym___r_double_quote] = ACTIONS(1777), - [sym___r_single_quote] = ACTIONS(1777), - }, [1114] = { [sym_line_comment] = STATE(1114), [sym_block_comment] = STATE(1114), - [sym_type_parameters] = STATE(4205), - [sym_argument_list] = STATE(1166), - [sym_or_block] = STATE(1167), + [sym_type_parameters] = STATE(4199), + [sym_argument_list] = STATE(1208), + [sym_or_block] = STATE(1207), [sym_identifier] = ACTIONS(1781), [anon_sym_LF] = ACTIONS(1781), [anon_sym_CR] = ACTIONS(1781), @@ -148780,61 +148824,61 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_SLASH_SLASH] = ACTIONS(497), [anon_sym_SLASH_STAR] = ACTIONS(499), [anon_sym_SEMI] = ACTIONS(1781), - [anon_sym_DOT] = ACTIONS(3654), - [anon_sym_as] = ACTIONS(3666), + [anon_sym_DOT] = ACTIONS(3660), + [anon_sym_as] = ACTIONS(1781), [anon_sym_LBRACE] = ACTIONS(1781), [anon_sym_COMMA] = ACTIONS(1781), [anon_sym_RBRACE] = ACTIONS(1781), - [anon_sym_LPAREN] = ACTIONS(3656), + [anon_sym_LPAREN] = ACTIONS(3664), [anon_sym_RPAREN] = ACTIONS(1781), - [anon_sym_PIPE] = ACTIONS(3668), + [anon_sym_PIPE] = ACTIONS(3666), [anon_sym_fn] = ACTIONS(1781), - [anon_sym_PLUS] = ACTIONS(3668), - [anon_sym_DASH] = ACTIONS(3668), - [anon_sym_STAR] = ACTIONS(3670), - [anon_sym_SLASH] = ACTIONS(3670), - [anon_sym_PERCENT] = ACTIONS(3670), - [anon_sym_LT] = ACTIONS(3672), - [anon_sym_GT] = ACTIONS(3672), - [anon_sym_EQ_EQ] = ACTIONS(3672), - [anon_sym_BANG_EQ] = ACTIONS(3672), - [anon_sym_LT_EQ] = ACTIONS(3672), - [anon_sym_GT_EQ] = ACTIONS(3672), + [anon_sym_PLUS] = ACTIONS(3666), + [anon_sym_DASH] = ACTIONS(3666), + [anon_sym_STAR] = ACTIONS(3668), + [anon_sym_SLASH] = ACTIONS(3668), + [anon_sym_PERCENT] = ACTIONS(3668), + [anon_sym_LT] = ACTIONS(1781), + [anon_sym_GT] = ACTIONS(1781), + [anon_sym_EQ_EQ] = ACTIONS(1781), + [anon_sym_BANG_EQ] = ACTIONS(1781), + [anon_sym_LT_EQ] = ACTIONS(1781), + [anon_sym_GT_EQ] = ACTIONS(1781), [anon_sym_DOT_DOT_DOT] = ACTIONS(1781), - [anon_sym_LBRACK] = ACTIONS(3658), + [anon_sym_LBRACK] = ACTIONS(3672), [anon_sym_struct] = ACTIONS(1781), [anon_sym_mut] = ACTIONS(1781), - [anon_sym_PLUS_PLUS] = ACTIONS(3674), - [anon_sym_DASH_DASH] = ACTIONS(3676), - [anon_sym_QMARK] = ACTIONS(3660), - [anon_sym_BANG] = ACTIONS(3662), + [anon_sym_PLUS_PLUS] = ACTIONS(1781), + [anon_sym_DASH_DASH] = ACTIONS(1781), + [anon_sym_QMARK] = ACTIONS(3678), + [anon_sym_BANG] = ACTIONS(3680), [anon_sym_go] = ACTIONS(1781), [anon_sym_spawn] = ACTIONS(1781), [anon_sym_json_DOTdecode] = ACTIONS(1781), - [anon_sym_LBRACK2] = ACTIONS(3664), + [anon_sym_LBRACK2] = ACTIONS(3682), [anon_sym_TILDE] = ACTIONS(1781), - [anon_sym_CARET] = ACTIONS(3668), - [anon_sym_AMP] = ACTIONS(3670), + [anon_sym_CARET] = ACTIONS(3666), + [anon_sym_AMP] = ACTIONS(3668), [anon_sym_LT_DASH] = ACTIONS(1781), - [anon_sym_LT_LT] = ACTIONS(3670), - [anon_sym_GT_GT] = ACTIONS(3670), - [anon_sym_GT_GT_GT] = ACTIONS(3670), - [anon_sym_AMP_CARET] = ACTIONS(3670), - [anon_sym_AMP_AMP] = ACTIONS(3678), - [anon_sym_PIPE_PIPE] = ACTIONS(3680), - [anon_sym_or] = ACTIONS(3682), + [anon_sym_LT_LT] = ACTIONS(3668), + [anon_sym_GT_GT] = ACTIONS(3668), + [anon_sym_GT_GT_GT] = ACTIONS(3668), + [anon_sym_AMP_CARET] = ACTIONS(3668), + [anon_sym_AMP_AMP] = ACTIONS(1781), + [anon_sym_PIPE_PIPE] = ACTIONS(1781), + [anon_sym_or] = ACTIONS(1781), [sym_none] = ACTIONS(1781), [sym_true] = ACTIONS(1781), [sym_false] = ACTIONS(1781), [sym_nil] = ACTIONS(1781), - [anon_sym_QMARK_DOT] = ACTIONS(3654), - [anon_sym_POUND_LBRACK] = ACTIONS(3664), + [anon_sym_QMARK_DOT] = ACTIONS(3660), + [anon_sym_POUND_LBRACK] = ACTIONS(3682), [anon_sym_if] = ACTIONS(1781), [anon_sym_DOLLARif] = ACTIONS(1781), - [anon_sym_is] = ACTIONS(3684), - [anon_sym_BANGis] = ACTIONS(3684), - [anon_sym_in] = ACTIONS(3686), - [anon_sym_BANGin] = ACTIONS(3686), + [anon_sym_is] = ACTIONS(1781), + [anon_sym_BANGis] = ACTIONS(1781), + [anon_sym_in] = ACTIONS(1781), + [anon_sym_BANGin] = ACTIONS(1781), [anon_sym_match] = ACTIONS(1781), [anon_sym_select] = ACTIONS(1781), [anon_sym_lock] = ACTIONS(1781), @@ -148860,296 +148904,564 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [1115] = { [sym_line_comment] = STATE(1115), [sym_block_comment] = STATE(1115), - [sym_type_parameters] = STATE(4205), - [sym_argument_list] = STATE(1166), - [sym_or_block] = STATE(1167), - [sym_identifier] = ACTIONS(1769), - [anon_sym_LF] = ACTIONS(1769), - [anon_sym_CR] = ACTIONS(1769), - [anon_sym_CR_LF] = ACTIONS(1769), + [sym_type_parameters] = STATE(4199), + [sym_argument_list] = STATE(1208), + [sym_or_block] = STATE(1207), + [sym_identifier] = ACTIONS(1765), + [anon_sym_LF] = ACTIONS(1765), + [anon_sym_CR] = ACTIONS(1765), + [anon_sym_CR_LF] = ACTIONS(1765), [anon_sym_SLASH_SLASH] = ACTIONS(497), [anon_sym_SLASH_STAR] = ACTIONS(499), - [anon_sym_SEMI] = ACTIONS(1769), - [anon_sym_DOT] = ACTIONS(3654), - [anon_sym_as] = ACTIONS(1769), - [anon_sym_LBRACE] = ACTIONS(1769), - [anon_sym_COMMA] = ACTIONS(1769), - [anon_sym_RBRACE] = ACTIONS(1769), - [anon_sym_LPAREN] = ACTIONS(3656), - [anon_sym_RPAREN] = ACTIONS(1769), - [anon_sym_PIPE] = ACTIONS(3668), - [anon_sym_fn] = ACTIONS(1769), - [anon_sym_PLUS] = ACTIONS(3668), - [anon_sym_DASH] = ACTIONS(3668), - [anon_sym_STAR] = ACTIONS(3670), - [anon_sym_SLASH] = ACTIONS(3670), - [anon_sym_PERCENT] = ACTIONS(3670), - [anon_sym_LT] = ACTIONS(1769), - [anon_sym_GT] = ACTIONS(1769), - [anon_sym_EQ_EQ] = ACTIONS(1769), - [anon_sym_BANG_EQ] = ACTIONS(1769), - [anon_sym_LT_EQ] = ACTIONS(1769), - [anon_sym_GT_EQ] = ACTIONS(1769), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1769), - [anon_sym_LBRACK] = ACTIONS(3658), - [anon_sym_struct] = ACTIONS(1769), - [anon_sym_mut] = ACTIONS(1769), - [anon_sym_PLUS_PLUS] = ACTIONS(1769), - [anon_sym_DASH_DASH] = ACTIONS(1769), - [anon_sym_QMARK] = ACTIONS(3660), - [anon_sym_BANG] = ACTIONS(3662), - [anon_sym_go] = ACTIONS(1769), - [anon_sym_spawn] = ACTIONS(1769), - [anon_sym_json_DOTdecode] = ACTIONS(1769), - [anon_sym_LBRACK2] = ACTIONS(3664), - [anon_sym_TILDE] = ACTIONS(1769), - [anon_sym_CARET] = ACTIONS(3668), - [anon_sym_AMP] = ACTIONS(3670), - [anon_sym_LT_DASH] = ACTIONS(1769), - [anon_sym_LT_LT] = ACTIONS(3670), - [anon_sym_GT_GT] = ACTIONS(3670), - [anon_sym_GT_GT_GT] = ACTIONS(3670), - [anon_sym_AMP_CARET] = ACTIONS(3670), - [anon_sym_AMP_AMP] = ACTIONS(1769), - [anon_sym_PIPE_PIPE] = ACTIONS(1769), - [anon_sym_or] = ACTIONS(1769), - [sym_none] = ACTIONS(1769), - [sym_true] = ACTIONS(1769), - [sym_false] = ACTIONS(1769), - [sym_nil] = ACTIONS(1769), - [anon_sym_QMARK_DOT] = ACTIONS(3654), - [anon_sym_POUND_LBRACK] = ACTIONS(3664), - [anon_sym_if] = ACTIONS(1769), - [anon_sym_DOLLARif] = ACTIONS(1769), - [anon_sym_is] = ACTIONS(1769), - [anon_sym_BANGis] = ACTIONS(1769), - [anon_sym_in] = ACTIONS(1769), - [anon_sym_BANGin] = ACTIONS(1769), - [anon_sym_match] = ACTIONS(1769), - [anon_sym_select] = ACTIONS(1769), - [anon_sym_lock] = ACTIONS(1769), - [anon_sym_rlock] = ACTIONS(1769), - [anon_sym_unsafe] = ACTIONS(1769), - [anon_sym_sql] = ACTIONS(1769), - [sym_int_literal] = ACTIONS(1769), - [sym_float_literal] = ACTIONS(1769), - [sym_rune_literal] = ACTIONS(1769), - [sym_pseudo_compile_time_identifier] = ACTIONS(1769), - [anon_sym_shared] = ACTIONS(1769), - [anon_sym_map_LBRACK] = ACTIONS(1769), - [anon_sym_chan] = ACTIONS(1769), - [anon_sym_thread] = ACTIONS(1769), - [anon_sym_atomic] = ACTIONS(1769), - [sym___double_quote] = ACTIONS(1769), - [sym___single_quote] = ACTIONS(1769), - [sym___c_double_quote] = ACTIONS(1769), - [sym___c_single_quote] = ACTIONS(1769), - [sym___r_double_quote] = ACTIONS(1769), - [sym___r_single_quote] = ACTIONS(1769), + [anon_sym_SEMI] = ACTIONS(1765), + [anon_sym_DOT] = ACTIONS(3660), + [anon_sym_as] = ACTIONS(1765), + [anon_sym_LBRACE] = ACTIONS(1765), + [anon_sym_COMMA] = ACTIONS(1765), + [anon_sym_RBRACE] = ACTIONS(1765), + [anon_sym_LPAREN] = ACTIONS(3664), + [anon_sym_RPAREN] = ACTIONS(1765), + [anon_sym_PIPE] = ACTIONS(3666), + [anon_sym_fn] = ACTIONS(1765), + [anon_sym_PLUS] = ACTIONS(3666), + [anon_sym_DASH] = ACTIONS(3666), + [anon_sym_STAR] = ACTIONS(3668), + [anon_sym_SLASH] = ACTIONS(3668), + [anon_sym_PERCENT] = ACTIONS(3668), + [anon_sym_LT] = ACTIONS(3670), + [anon_sym_GT] = ACTIONS(3670), + [anon_sym_EQ_EQ] = ACTIONS(3670), + [anon_sym_BANG_EQ] = ACTIONS(3670), + [anon_sym_LT_EQ] = ACTIONS(3670), + [anon_sym_GT_EQ] = ACTIONS(3670), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1765), + [anon_sym_LBRACK] = ACTIONS(3672), + [anon_sym_struct] = ACTIONS(1765), + [anon_sym_mut] = ACTIONS(1765), + [anon_sym_PLUS_PLUS] = ACTIONS(1765), + [anon_sym_DASH_DASH] = ACTIONS(1765), + [anon_sym_QMARK] = ACTIONS(3678), + [anon_sym_BANG] = ACTIONS(3680), + [anon_sym_go] = ACTIONS(1765), + [anon_sym_spawn] = ACTIONS(1765), + [anon_sym_json_DOTdecode] = ACTIONS(1765), + [anon_sym_LBRACK2] = ACTIONS(3682), + [anon_sym_TILDE] = ACTIONS(1765), + [anon_sym_CARET] = ACTIONS(3666), + [anon_sym_AMP] = ACTIONS(3668), + [anon_sym_LT_DASH] = ACTIONS(1765), + [anon_sym_LT_LT] = ACTIONS(3668), + [anon_sym_GT_GT] = ACTIONS(3668), + [anon_sym_GT_GT_GT] = ACTIONS(3668), + [anon_sym_AMP_CARET] = ACTIONS(3668), + [anon_sym_AMP_AMP] = ACTIONS(3684), + [anon_sym_PIPE_PIPE] = ACTIONS(1765), + [anon_sym_or] = ACTIONS(1765), + [sym_none] = ACTIONS(1765), + [sym_true] = ACTIONS(1765), + [sym_false] = ACTIONS(1765), + [sym_nil] = ACTIONS(1765), + [anon_sym_QMARK_DOT] = ACTIONS(3660), + [anon_sym_POUND_LBRACK] = ACTIONS(3682), + [anon_sym_if] = ACTIONS(1765), + [anon_sym_DOLLARif] = ACTIONS(1765), + [anon_sym_is] = ACTIONS(1765), + [anon_sym_BANGis] = ACTIONS(1765), + [anon_sym_in] = ACTIONS(3692), + [anon_sym_BANGin] = ACTIONS(3692), + [anon_sym_match] = ACTIONS(1765), + [anon_sym_select] = ACTIONS(1765), + [anon_sym_lock] = ACTIONS(1765), + [anon_sym_rlock] = ACTIONS(1765), + [anon_sym_unsafe] = ACTIONS(1765), + [anon_sym_sql] = ACTIONS(1765), + [sym_int_literal] = ACTIONS(1765), + [sym_float_literal] = ACTIONS(1765), + [sym_rune_literal] = ACTIONS(1765), + [sym_pseudo_compile_time_identifier] = ACTIONS(1765), + [anon_sym_shared] = ACTIONS(1765), + [anon_sym_map_LBRACK] = ACTIONS(1765), + [anon_sym_chan] = ACTIONS(1765), + [anon_sym_thread] = ACTIONS(1765), + [anon_sym_atomic] = ACTIONS(1765), + [sym___double_quote] = ACTIONS(1765), + [sym___single_quote] = ACTIONS(1765), + [sym___c_double_quote] = ACTIONS(1765), + [sym___c_single_quote] = ACTIONS(1765), + [sym___r_double_quote] = ACTIONS(1765), + [sym___r_single_quote] = ACTIONS(1765), }, [1116] = { [sym_line_comment] = STATE(1116), [sym_block_comment] = STATE(1116), - [sym_type_parameters] = STATE(4205), - [sym_argument_list] = STATE(1166), - [sym_or_block] = STATE(1167), - [sym_identifier] = ACTIONS(1785), - [anon_sym_LF] = ACTIONS(1785), - [anon_sym_CR] = ACTIONS(1785), - [anon_sym_CR_LF] = ACTIONS(1785), + [sym_type_parameters] = STATE(4199), + [sym_argument_list] = STATE(1208), + [sym_or_block] = STATE(1207), + [sym_identifier] = ACTIONS(1765), + [anon_sym_LF] = ACTIONS(1765), + [anon_sym_CR] = ACTIONS(1765), + [anon_sym_CR_LF] = ACTIONS(1765), [anon_sym_SLASH_SLASH] = ACTIONS(497), [anon_sym_SLASH_STAR] = ACTIONS(499), - [anon_sym_SEMI] = ACTIONS(1785), - [anon_sym_DOT] = ACTIONS(3654), - [anon_sym_as] = ACTIONS(1785), - [anon_sym_LBRACE] = ACTIONS(1785), - [anon_sym_COMMA] = ACTIONS(1785), - [anon_sym_RBRACE] = ACTIONS(1785), - [anon_sym_LPAREN] = ACTIONS(3656), - [anon_sym_RPAREN] = ACTIONS(1785), - [anon_sym_PIPE] = ACTIONS(1785), - [anon_sym_fn] = ACTIONS(1785), - [anon_sym_PLUS] = ACTIONS(1785), - [anon_sym_DASH] = ACTIONS(1785), - [anon_sym_STAR] = ACTIONS(3670), - [anon_sym_SLASH] = ACTIONS(3670), - [anon_sym_PERCENT] = ACTIONS(3670), - [anon_sym_LT] = ACTIONS(1785), - [anon_sym_GT] = ACTIONS(1785), - [anon_sym_EQ_EQ] = ACTIONS(1785), - [anon_sym_BANG_EQ] = ACTIONS(1785), - [anon_sym_LT_EQ] = ACTIONS(1785), - [anon_sym_GT_EQ] = ACTIONS(1785), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1785), - [anon_sym_LBRACK] = ACTIONS(3658), - [anon_sym_struct] = ACTIONS(1785), - [anon_sym_mut] = ACTIONS(1785), - [anon_sym_PLUS_PLUS] = ACTIONS(1785), - [anon_sym_DASH_DASH] = ACTIONS(1785), - [anon_sym_QMARK] = ACTIONS(3660), - [anon_sym_BANG] = ACTIONS(3662), - [anon_sym_go] = ACTIONS(1785), - [anon_sym_spawn] = ACTIONS(1785), - [anon_sym_json_DOTdecode] = ACTIONS(1785), - [anon_sym_LBRACK2] = ACTIONS(3664), - [anon_sym_TILDE] = ACTIONS(1785), - [anon_sym_CARET] = ACTIONS(1785), - [anon_sym_AMP] = ACTIONS(3670), - [anon_sym_LT_DASH] = ACTIONS(1785), - [anon_sym_LT_LT] = ACTIONS(3670), - [anon_sym_GT_GT] = ACTIONS(3670), - [anon_sym_GT_GT_GT] = ACTIONS(3670), - [anon_sym_AMP_CARET] = ACTIONS(3670), - [anon_sym_AMP_AMP] = ACTIONS(1785), - [anon_sym_PIPE_PIPE] = ACTIONS(1785), - [anon_sym_or] = ACTIONS(1785), - [sym_none] = ACTIONS(1785), - [sym_true] = ACTIONS(1785), - [sym_false] = ACTIONS(1785), - [sym_nil] = ACTIONS(1785), - [anon_sym_QMARK_DOT] = ACTIONS(3654), - [anon_sym_POUND_LBRACK] = ACTIONS(3664), - [anon_sym_if] = ACTIONS(1785), - [anon_sym_DOLLARif] = ACTIONS(1785), - [anon_sym_is] = ACTIONS(1785), - [anon_sym_BANGis] = ACTIONS(1785), - [anon_sym_in] = ACTIONS(1785), - [anon_sym_BANGin] = ACTIONS(1785), - [anon_sym_match] = ACTIONS(1785), - [anon_sym_select] = ACTIONS(1785), - [anon_sym_lock] = ACTIONS(1785), - [anon_sym_rlock] = ACTIONS(1785), - [anon_sym_unsafe] = ACTIONS(1785), - [anon_sym_sql] = ACTIONS(1785), - [sym_int_literal] = ACTIONS(1785), - [sym_float_literal] = ACTIONS(1785), - [sym_rune_literal] = ACTIONS(1785), - [sym_pseudo_compile_time_identifier] = ACTIONS(1785), - [anon_sym_shared] = ACTIONS(1785), - [anon_sym_map_LBRACK] = ACTIONS(1785), - [anon_sym_chan] = ACTIONS(1785), - [anon_sym_thread] = ACTIONS(1785), - [anon_sym_atomic] = ACTIONS(1785), - [sym___double_quote] = ACTIONS(1785), - [sym___single_quote] = ACTIONS(1785), - [sym___c_double_quote] = ACTIONS(1785), - [sym___c_single_quote] = ACTIONS(1785), - [sym___r_double_quote] = ACTIONS(1785), - [sym___r_single_quote] = ACTIONS(1785), + [anon_sym_SEMI] = ACTIONS(1765), + [anon_sym_DOT] = ACTIONS(3660), + [anon_sym_as] = ACTIONS(1765), + [anon_sym_LBRACE] = ACTIONS(1765), + [anon_sym_COMMA] = ACTIONS(1765), + [anon_sym_RBRACE] = ACTIONS(1765), + [anon_sym_LPAREN] = ACTIONS(3664), + [anon_sym_RPAREN] = ACTIONS(1765), + [anon_sym_PIPE] = ACTIONS(3666), + [anon_sym_fn] = ACTIONS(1765), + [anon_sym_PLUS] = ACTIONS(3666), + [anon_sym_DASH] = ACTIONS(3666), + [anon_sym_STAR] = ACTIONS(3668), + [anon_sym_SLASH] = ACTIONS(3668), + [anon_sym_PERCENT] = ACTIONS(3668), + [anon_sym_LT] = ACTIONS(3670), + [anon_sym_GT] = ACTIONS(3670), + [anon_sym_EQ_EQ] = ACTIONS(3670), + [anon_sym_BANG_EQ] = ACTIONS(3670), + [anon_sym_LT_EQ] = ACTIONS(3670), + [anon_sym_GT_EQ] = ACTIONS(3670), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1765), + [anon_sym_LBRACK] = ACTIONS(3672), + [anon_sym_struct] = ACTIONS(1765), + [anon_sym_mut] = ACTIONS(1765), + [anon_sym_PLUS_PLUS] = ACTIONS(1765), + [anon_sym_DASH_DASH] = ACTIONS(1765), + [anon_sym_QMARK] = ACTIONS(3678), + [anon_sym_BANG] = ACTIONS(3680), + [anon_sym_go] = ACTIONS(1765), + [anon_sym_spawn] = ACTIONS(1765), + [anon_sym_json_DOTdecode] = ACTIONS(1765), + [anon_sym_LBRACK2] = ACTIONS(3682), + [anon_sym_TILDE] = ACTIONS(1765), + [anon_sym_CARET] = ACTIONS(3666), + [anon_sym_AMP] = ACTIONS(3668), + [anon_sym_LT_DASH] = ACTIONS(1765), + [anon_sym_LT_LT] = ACTIONS(3668), + [anon_sym_GT_GT] = ACTIONS(3668), + [anon_sym_GT_GT_GT] = ACTIONS(3668), + [anon_sym_AMP_CARET] = ACTIONS(3668), + [anon_sym_AMP_AMP] = ACTIONS(1765), + [anon_sym_PIPE_PIPE] = ACTIONS(1765), + [anon_sym_or] = ACTIONS(1765), + [sym_none] = ACTIONS(1765), + [sym_true] = ACTIONS(1765), + [sym_false] = ACTIONS(1765), + [sym_nil] = ACTIONS(1765), + [anon_sym_QMARK_DOT] = ACTIONS(3660), + [anon_sym_POUND_LBRACK] = ACTIONS(3682), + [anon_sym_if] = ACTIONS(1765), + [anon_sym_DOLLARif] = ACTIONS(1765), + [anon_sym_is] = ACTIONS(1765), + [anon_sym_BANGis] = ACTIONS(1765), + [anon_sym_in] = ACTIONS(3692), + [anon_sym_BANGin] = ACTIONS(3692), + [anon_sym_match] = ACTIONS(1765), + [anon_sym_select] = ACTIONS(1765), + [anon_sym_lock] = ACTIONS(1765), + [anon_sym_rlock] = ACTIONS(1765), + [anon_sym_unsafe] = ACTIONS(1765), + [anon_sym_sql] = ACTIONS(1765), + [sym_int_literal] = ACTIONS(1765), + [sym_float_literal] = ACTIONS(1765), + [sym_rune_literal] = ACTIONS(1765), + [sym_pseudo_compile_time_identifier] = ACTIONS(1765), + [anon_sym_shared] = ACTIONS(1765), + [anon_sym_map_LBRACK] = ACTIONS(1765), + [anon_sym_chan] = ACTIONS(1765), + [anon_sym_thread] = ACTIONS(1765), + [anon_sym_atomic] = ACTIONS(1765), + [sym___double_quote] = ACTIONS(1765), + [sym___single_quote] = ACTIONS(1765), + [sym___c_double_quote] = ACTIONS(1765), + [sym___c_single_quote] = ACTIONS(1765), + [sym___r_double_quote] = ACTIONS(1765), + [sym___r_single_quote] = ACTIONS(1765), }, [1117] = { [sym_line_comment] = STATE(1117), [sym_block_comment] = STATE(1117), - [sym_type_parameters] = STATE(4205), - [sym_argument_list] = STATE(1166), - [sym_or_block] = STATE(1167), - [sym_identifier] = ACTIONS(3688), - [anon_sym_LF] = ACTIONS(3688), - [anon_sym_CR] = ACTIONS(3688), - [anon_sym_CR_LF] = ACTIONS(3688), + [sym_type_parameters] = STATE(4199), + [sym_argument_list] = STATE(1208), + [sym_or_block] = STATE(1207), + [sym_identifier] = ACTIONS(1765), + [anon_sym_LF] = ACTIONS(1765), + [anon_sym_CR] = ACTIONS(1765), + [anon_sym_CR_LF] = ACTIONS(1765), [anon_sym_SLASH_SLASH] = ACTIONS(497), [anon_sym_SLASH_STAR] = ACTIONS(499), - [anon_sym_SEMI] = ACTIONS(3688), - [anon_sym_DOT] = ACTIONS(3654), - [anon_sym_as] = ACTIONS(3666), - [anon_sym_LBRACE] = ACTIONS(3688), - [anon_sym_COMMA] = ACTIONS(3688), - [anon_sym_LPAREN] = ACTIONS(3656), - [anon_sym_RPAREN] = ACTIONS(3688), - [anon_sym_PIPE] = ACTIONS(3668), - [anon_sym_fn] = ACTIONS(3688), - [anon_sym_PLUS] = ACTIONS(3668), - [anon_sym_DASH] = ACTIONS(3668), - [anon_sym_STAR] = ACTIONS(3670), - [anon_sym_SLASH] = ACTIONS(3670), - [anon_sym_PERCENT] = ACTIONS(3670), - [anon_sym_LT] = ACTIONS(3672), - [anon_sym_GT] = ACTIONS(3672), - [anon_sym_EQ_EQ] = ACTIONS(3672), - [anon_sym_BANG_EQ] = ACTIONS(3672), - [anon_sym_LT_EQ] = ACTIONS(3672), - [anon_sym_GT_EQ] = ACTIONS(3672), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3688), - [anon_sym_LBRACK] = ACTIONS(3658), - [anon_sym_struct] = ACTIONS(3688), - [anon_sym_mut] = ACTIONS(3688), - [anon_sym_PLUS_PLUS] = ACTIONS(3674), - [anon_sym_DASH_DASH] = ACTIONS(3676), - [anon_sym_QMARK] = ACTIONS(3660), - [anon_sym_BANG] = ACTIONS(3662), - [anon_sym_go] = ACTIONS(3688), - [anon_sym_spawn] = ACTIONS(3688), - [anon_sym_json_DOTdecode] = ACTIONS(3688), - [anon_sym_LBRACK2] = ACTIONS(3664), - [anon_sym_TILDE] = ACTIONS(3688), - [anon_sym_CARET] = ACTIONS(3668), - [anon_sym_AMP] = ACTIONS(3670), - [anon_sym_LT_DASH] = ACTIONS(3688), - [anon_sym_LT_LT] = ACTIONS(3670), - [anon_sym_GT_GT] = ACTIONS(3670), - [anon_sym_GT_GT_GT] = ACTIONS(3670), - [anon_sym_AMP_CARET] = ACTIONS(3670), - [anon_sym_AMP_AMP] = ACTIONS(3678), - [anon_sym_PIPE_PIPE] = ACTIONS(3680), - [anon_sym_or] = ACTIONS(3682), - [sym_none] = ACTIONS(3688), - [sym_true] = ACTIONS(3688), - [sym_false] = ACTIONS(3688), - [sym_nil] = ACTIONS(3688), - [anon_sym_QMARK_DOT] = ACTIONS(3654), - [anon_sym_POUND_LBRACK] = ACTIONS(3664), - [anon_sym_if] = ACTIONS(3688), - [anon_sym_DOLLARif] = ACTIONS(3688), - [anon_sym_is] = ACTIONS(3684), - [anon_sym_BANGis] = ACTIONS(3684), - [anon_sym_in] = ACTIONS(3686), - [anon_sym_BANGin] = ACTIONS(3686), - [anon_sym_match] = ACTIONS(3688), - [anon_sym_select] = ACTIONS(3688), - [anon_sym_lock] = ACTIONS(3688), - [anon_sym_rlock] = ACTIONS(3688), - [anon_sym_unsafe] = ACTIONS(3688), - [anon_sym_sql] = ACTIONS(3688), - [sym_int_literal] = ACTIONS(3688), - [sym_float_literal] = ACTIONS(3688), - [sym_rune_literal] = ACTIONS(3688), - [sym_pseudo_compile_time_identifier] = ACTIONS(3688), - [anon_sym_shared] = ACTIONS(3688), - [anon_sym_map_LBRACK] = ACTIONS(3688), - [anon_sym_chan] = ACTIONS(3688), - [anon_sym_thread] = ACTIONS(3688), - [anon_sym_atomic] = ACTIONS(3688), - [sym___double_quote] = ACTIONS(3688), - [sym___single_quote] = ACTIONS(3688), - [sym___c_double_quote] = ACTIONS(3688), - [sym___c_single_quote] = ACTIONS(3688), - [sym___r_double_quote] = ACTIONS(3688), - [sym___r_single_quote] = ACTIONS(3688), + [anon_sym_SEMI] = ACTIONS(1765), + [anon_sym_DOT] = ACTIONS(3660), + [anon_sym_as] = ACTIONS(1765), + [anon_sym_LBRACE] = ACTIONS(1765), + [anon_sym_COMMA] = ACTIONS(1765), + [anon_sym_RBRACE] = ACTIONS(1765), + [anon_sym_LPAREN] = ACTIONS(3664), + [anon_sym_RPAREN] = ACTIONS(1765), + [anon_sym_PIPE] = ACTIONS(3666), + [anon_sym_fn] = ACTIONS(1765), + [anon_sym_PLUS] = ACTIONS(3666), + [anon_sym_DASH] = ACTIONS(3666), + [anon_sym_STAR] = ACTIONS(3668), + [anon_sym_SLASH] = ACTIONS(3668), + [anon_sym_PERCENT] = ACTIONS(3668), + [anon_sym_LT] = ACTIONS(1765), + [anon_sym_GT] = ACTIONS(1765), + [anon_sym_EQ_EQ] = ACTIONS(1765), + [anon_sym_BANG_EQ] = ACTIONS(1765), + [anon_sym_LT_EQ] = ACTIONS(1765), + [anon_sym_GT_EQ] = ACTIONS(1765), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1765), + [anon_sym_LBRACK] = ACTIONS(3672), + [anon_sym_struct] = ACTIONS(1765), + [anon_sym_mut] = ACTIONS(1765), + [anon_sym_PLUS_PLUS] = ACTIONS(1765), + [anon_sym_DASH_DASH] = ACTIONS(1765), + [anon_sym_QMARK] = ACTIONS(3678), + [anon_sym_BANG] = ACTIONS(3680), + [anon_sym_go] = ACTIONS(1765), + [anon_sym_spawn] = ACTIONS(1765), + [anon_sym_json_DOTdecode] = ACTIONS(1765), + [anon_sym_LBRACK2] = ACTIONS(3682), + [anon_sym_TILDE] = ACTIONS(1765), + [anon_sym_CARET] = ACTIONS(3666), + [anon_sym_AMP] = ACTIONS(3668), + [anon_sym_LT_DASH] = ACTIONS(1765), + [anon_sym_LT_LT] = ACTIONS(3668), + [anon_sym_GT_GT] = ACTIONS(3668), + [anon_sym_GT_GT_GT] = ACTIONS(3668), + [anon_sym_AMP_CARET] = ACTIONS(3668), + [anon_sym_AMP_AMP] = ACTIONS(1765), + [anon_sym_PIPE_PIPE] = ACTIONS(1765), + [anon_sym_or] = ACTIONS(1765), + [sym_none] = ACTIONS(1765), + [sym_true] = ACTIONS(1765), + [sym_false] = ACTIONS(1765), + [sym_nil] = ACTIONS(1765), + [anon_sym_QMARK_DOT] = ACTIONS(3660), + [anon_sym_POUND_LBRACK] = ACTIONS(3682), + [anon_sym_if] = ACTIONS(1765), + [anon_sym_DOLLARif] = ACTIONS(1765), + [anon_sym_is] = ACTIONS(1765), + [anon_sym_BANGis] = ACTIONS(1765), + [anon_sym_in] = ACTIONS(1765), + [anon_sym_BANGin] = ACTIONS(1765), + [anon_sym_match] = ACTIONS(1765), + [anon_sym_select] = ACTIONS(1765), + [anon_sym_lock] = ACTIONS(1765), + [anon_sym_rlock] = ACTIONS(1765), + [anon_sym_unsafe] = ACTIONS(1765), + [anon_sym_sql] = ACTIONS(1765), + [sym_int_literal] = ACTIONS(1765), + [sym_float_literal] = ACTIONS(1765), + [sym_rune_literal] = ACTIONS(1765), + [sym_pseudo_compile_time_identifier] = ACTIONS(1765), + [anon_sym_shared] = ACTIONS(1765), + [anon_sym_map_LBRACK] = ACTIONS(1765), + [anon_sym_chan] = ACTIONS(1765), + [anon_sym_thread] = ACTIONS(1765), + [anon_sym_atomic] = ACTIONS(1765), + [sym___double_quote] = ACTIONS(1765), + [sym___single_quote] = ACTIONS(1765), + [sym___c_double_quote] = ACTIONS(1765), + [sym___c_single_quote] = ACTIONS(1765), + [sym___r_double_quote] = ACTIONS(1765), + [sym___r_single_quote] = ACTIONS(1765), }, [1118] = { [sym_line_comment] = STATE(1118), [sym_block_comment] = STATE(1118), - [sym_reference_expression] = STATE(4451), - [sym_type_reference_expression] = STATE(1754), - [sym_plain_type] = STATE(1823), - [sym__plain_type_without_special] = STATE(1844), - [sym_anon_struct_type] = STATE(1791), - [sym_multi_return_type] = STATE(1844), - [sym_result_type] = STATE(1844), - [sym_option_type] = STATE(1844), - [sym_qualified_type] = STATE(1754), - [sym_fixed_array_type] = STATE(1791), - [sym_array_type] = STATE(1791), - [sym_pointer_type] = STATE(1791), - [sym_wrong_pointer_type] = STATE(1791), - [sym_map_type] = STATE(1791), - [sym_channel_type] = STATE(1791), - [sym_shared_type] = STATE(1791), - [sym_thread_type] = STATE(1791), - [sym_atomic_type] = STATE(1791), - [sym_generic_type] = STATE(1791), - [sym_function_type] = STATE(1791), - [sym_identifier] = ACTIONS(3690), + [sym_type_parameters] = STATE(4199), + [sym_argument_list] = STATE(1208), + [sym_or_block] = STATE(1207), + [sym_identifier] = ACTIONS(3694), + [anon_sym_LF] = ACTIONS(3694), + [anon_sym_CR] = ACTIONS(3694), + [anon_sym_CR_LF] = ACTIONS(3694), + [anon_sym_SLASH_SLASH] = ACTIONS(497), + [anon_sym_SLASH_STAR] = ACTIONS(499), + [anon_sym_SEMI] = ACTIONS(3694), + [anon_sym_DOT] = ACTIONS(3660), + [anon_sym_as] = ACTIONS(3662), + [anon_sym_LBRACE] = ACTIONS(3694), + [anon_sym_COMMA] = ACTIONS(3694), + [anon_sym_LPAREN] = ACTIONS(3664), + [anon_sym_RPAREN] = ACTIONS(3694), + [anon_sym_PIPE] = ACTIONS(3666), + [anon_sym_fn] = ACTIONS(3694), + [anon_sym_PLUS] = ACTIONS(3694), + [anon_sym_DASH] = ACTIONS(3694), + [anon_sym_STAR] = ACTIONS(3694), + [anon_sym_SLASH] = ACTIONS(3668), + [anon_sym_PERCENT] = ACTIONS(3668), + [anon_sym_LT] = ACTIONS(3670), + [anon_sym_GT] = ACTIONS(3670), + [anon_sym_EQ_EQ] = ACTIONS(3670), + [anon_sym_BANG_EQ] = ACTIONS(3670), + [anon_sym_LT_EQ] = ACTIONS(3670), + [anon_sym_GT_EQ] = ACTIONS(3670), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3694), + [anon_sym_LBRACK] = ACTIONS(3672), + [anon_sym_struct] = ACTIONS(3694), + [anon_sym_mut] = ACTIONS(3694), + [anon_sym_PLUS_PLUS] = ACTIONS(3674), + [anon_sym_DASH_DASH] = ACTIONS(3676), + [anon_sym_QMARK] = ACTIONS(3678), + [anon_sym_BANG] = ACTIONS(3680), + [anon_sym_go] = ACTIONS(3694), + [anon_sym_spawn] = ACTIONS(3694), + [anon_sym_json_DOTdecode] = ACTIONS(3694), + [anon_sym_LBRACK2] = ACTIONS(3682), + [anon_sym_TILDE] = ACTIONS(3694), + [anon_sym_CARET] = ACTIONS(3694), + [anon_sym_AMP] = ACTIONS(3694), + [anon_sym_LT_DASH] = ACTIONS(3694), + [anon_sym_LT_LT] = ACTIONS(3668), + [anon_sym_GT_GT] = ACTIONS(3668), + [anon_sym_GT_GT_GT] = ACTIONS(3668), + [anon_sym_AMP_CARET] = ACTIONS(3668), + [anon_sym_AMP_AMP] = ACTIONS(3684), + [anon_sym_PIPE_PIPE] = ACTIONS(3686), + [anon_sym_or] = ACTIONS(3688), + [sym_none] = ACTIONS(3694), + [sym_true] = ACTIONS(3694), + [sym_false] = ACTIONS(3694), + [sym_nil] = ACTIONS(3694), + [anon_sym_QMARK_DOT] = ACTIONS(3660), + [anon_sym_POUND_LBRACK] = ACTIONS(3682), + [anon_sym_if] = ACTIONS(3694), + [anon_sym_DOLLARif] = ACTIONS(3694), + [anon_sym_is] = ACTIONS(3690), + [anon_sym_BANGis] = ACTIONS(3690), + [anon_sym_in] = ACTIONS(3692), + [anon_sym_BANGin] = ACTIONS(3692), + [anon_sym_match] = ACTIONS(3694), + [anon_sym_select] = ACTIONS(3694), + [anon_sym_lock] = ACTIONS(3694), + [anon_sym_rlock] = ACTIONS(3694), + [anon_sym_unsafe] = ACTIONS(3694), + [anon_sym_sql] = ACTIONS(3694), + [sym_int_literal] = ACTIONS(3694), + [sym_float_literal] = ACTIONS(3694), + [sym_rune_literal] = ACTIONS(3694), + [sym_pseudo_compile_time_identifier] = ACTIONS(3694), + [anon_sym_shared] = ACTIONS(3694), + [anon_sym_map_LBRACK] = ACTIONS(3694), + [anon_sym_chan] = ACTIONS(3694), + [anon_sym_thread] = ACTIONS(3694), + [anon_sym_atomic] = ACTIONS(3694), + [sym___double_quote] = ACTIONS(3694), + [sym___single_quote] = ACTIONS(3694), + [sym___c_double_quote] = ACTIONS(3694), + [sym___c_single_quote] = ACTIONS(3694), + [sym___r_double_quote] = ACTIONS(3694), + [sym___r_single_quote] = ACTIONS(3694), + }, + [1119] = { + [sym_line_comment] = STATE(1119), + [sym_block_comment] = STATE(1119), + [sym_else_branch] = STATE(1198), + [sym_identifier] = ACTIONS(1799), + [anon_sym_LF] = ACTIONS(1799), + [anon_sym_CR] = ACTIONS(1799), + [anon_sym_CR_LF] = ACTIONS(1799), + [anon_sym_SLASH_SLASH] = ACTIONS(497), + [anon_sym_SLASH_STAR] = ACTIONS(499), + [anon_sym_SEMI] = ACTIONS(1799), + [anon_sym_DOT] = ACTIONS(1799), + [anon_sym_as] = ACTIONS(1799), + [anon_sym_LBRACE] = ACTIONS(1799), + [anon_sym_COMMA] = ACTIONS(1799), + [anon_sym_RBRACE] = ACTIONS(1799), + [anon_sym_LPAREN] = ACTIONS(1799), + [anon_sym_RPAREN] = ACTIONS(1799), + [anon_sym_PIPE] = ACTIONS(1799), + [anon_sym_fn] = ACTIONS(1799), + [anon_sym_PLUS] = ACTIONS(1799), + [anon_sym_DASH] = ACTIONS(1799), + [anon_sym_STAR] = ACTIONS(1799), + [anon_sym_SLASH] = ACTIONS(1799), + [anon_sym_PERCENT] = ACTIONS(1799), + [anon_sym_LT] = ACTIONS(1799), + [anon_sym_GT] = ACTIONS(1799), + [anon_sym_EQ_EQ] = ACTIONS(1799), + [anon_sym_BANG_EQ] = ACTIONS(1799), + [anon_sym_LT_EQ] = ACTIONS(1799), + [anon_sym_GT_EQ] = ACTIONS(1799), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1799), + [anon_sym_LBRACK] = ACTIONS(1797), + [anon_sym_struct] = ACTIONS(1799), + [anon_sym_mut] = ACTIONS(1799), + [anon_sym_PLUS_PLUS] = ACTIONS(1799), + [anon_sym_DASH_DASH] = ACTIONS(1799), + [anon_sym_QMARK] = ACTIONS(1799), + [anon_sym_BANG] = ACTIONS(1799), + [anon_sym_go] = ACTIONS(1799), + [anon_sym_spawn] = ACTIONS(1799), + [anon_sym_json_DOTdecode] = ACTIONS(1799), + [anon_sym_LBRACK2] = ACTIONS(1799), + [anon_sym_TILDE] = ACTIONS(1799), + [anon_sym_CARET] = ACTIONS(1799), + [anon_sym_AMP] = ACTIONS(1799), + [anon_sym_LT_DASH] = ACTIONS(1799), + [anon_sym_LT_LT] = ACTIONS(1799), + [anon_sym_GT_GT] = ACTIONS(1799), + [anon_sym_GT_GT_GT] = ACTIONS(1799), + [anon_sym_AMP_CARET] = ACTIONS(1799), + [anon_sym_AMP_AMP] = ACTIONS(1799), + [anon_sym_PIPE_PIPE] = ACTIONS(1799), + [anon_sym_or] = ACTIONS(1799), + [sym_none] = ACTIONS(1799), + [sym_true] = ACTIONS(1799), + [sym_false] = ACTIONS(1799), + [sym_nil] = ACTIONS(1799), + [anon_sym_QMARK_DOT] = ACTIONS(1799), + [anon_sym_POUND_LBRACK] = ACTIONS(1799), + [anon_sym_if] = ACTIONS(1799), + [anon_sym_else] = ACTIONS(3696), + [anon_sym_DOLLARif] = ACTIONS(1799), + [anon_sym_is] = ACTIONS(1799), + [anon_sym_BANGis] = ACTIONS(1799), + [anon_sym_in] = ACTIONS(1799), + [anon_sym_BANGin] = ACTIONS(1799), + [anon_sym_match] = ACTIONS(1799), + [anon_sym_select] = ACTIONS(1799), + [anon_sym_lock] = ACTIONS(1799), + [anon_sym_rlock] = ACTIONS(1799), + [anon_sym_unsafe] = ACTIONS(1799), + [anon_sym_sql] = ACTIONS(1799), + [sym_int_literal] = ACTIONS(1799), + [sym_float_literal] = ACTIONS(1799), + [sym_rune_literal] = ACTIONS(1799), + [sym_pseudo_compile_time_identifier] = ACTIONS(1799), + [anon_sym_shared] = ACTIONS(1799), + [anon_sym_map_LBRACK] = ACTIONS(1799), + [anon_sym_chan] = ACTIONS(1799), + [anon_sym_thread] = ACTIONS(1799), + [anon_sym_atomic] = ACTIONS(1799), + [sym___double_quote] = ACTIONS(1799), + [sym___single_quote] = ACTIONS(1799), + [sym___c_double_quote] = ACTIONS(1799), + [sym___c_single_quote] = ACTIONS(1799), + [sym___r_double_quote] = ACTIONS(1799), + [sym___r_single_quote] = ACTIONS(1799), + }, + [1120] = { + [sym_line_comment] = STATE(1120), + [sym_block_comment] = STATE(1120), + [sym_reference_expression] = STATE(4454), + [sym_type_reference_expression] = STATE(1751), + [sym_plain_type] = STATE(1811), + [sym__plain_type_without_special] = STATE(1842), + [sym_anon_struct_type] = STATE(1841), + [sym_multi_return_type] = STATE(1842), + [sym_result_type] = STATE(1842), + [sym_option_type] = STATE(1842), + [sym_qualified_type] = STATE(1751), + [sym_fixed_array_type] = STATE(1841), + [sym_array_type] = STATE(1841), + [sym_pointer_type] = STATE(1841), + [sym_wrong_pointer_type] = STATE(1841), + [sym_map_type] = STATE(1841), + [sym_channel_type] = STATE(1841), + [sym_shared_type] = STATE(1841), + [sym_thread_type] = STATE(1841), + [sym_atomic_type] = STATE(1841), + [sym_generic_type] = STATE(1841), + [sym_function_type] = STATE(1841), + [sym_identifier] = ACTIONS(3698), + [anon_sym_LF] = ACTIONS(623), + [anon_sym_CR] = ACTIONS(623), + [anon_sym_CR_LF] = ACTIONS(623), + [anon_sym_SLASH_SLASH] = ACTIONS(497), + [anon_sym_SLASH_STAR] = ACTIONS(499), + [anon_sym_DOT] = ACTIONS(623), + [anon_sym_as] = ACTIONS(623), + [anon_sym_COMMA] = ACTIONS(623), + [anon_sym_RBRACE] = ACTIONS(623), + [anon_sym_LPAREN] = ACTIONS(3700), + [anon_sym_EQ] = ACTIONS(623), + [anon_sym_PIPE] = ACTIONS(623), + [anon_sym_fn] = ACTIONS(3702), + [anon_sym_PLUS] = ACTIONS(623), + [anon_sym_DASH] = ACTIONS(623), + [anon_sym_STAR] = ACTIONS(3704), + [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(3706), + [anon_sym_PLUS_PLUS] = ACTIONS(623), + [anon_sym_DASH_DASH] = ACTIONS(623), + [anon_sym_QMARK] = ACTIONS(3708), + [anon_sym_BANG] = ACTIONS(3710), + [anon_sym_LBRACK2] = ACTIONS(3712), + [anon_sym_CARET] = ACTIONS(623), + [anon_sym_AMP] = ACTIONS(3714), + [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(3716), + [anon_sym_map_LBRACK] = ACTIONS(3718), + [anon_sym_chan] = ACTIONS(3720), + [anon_sym_thread] = ACTIONS(3722), + [anon_sym_atomic] = ACTIONS(3724), + }, + [1121] = { + [sym_line_comment] = STATE(1121), + [sym_block_comment] = STATE(1121), + [sym_reference_expression] = STATE(4498), + [sym_type_reference_expression] = STATE(3460), + [sym_plain_type] = STATE(2320), + [sym__plain_type_without_special] = STATE(2360), + [sym_anon_struct_type] = STATE(2362), + [sym_multi_return_type] = STATE(2360), + [sym_result_type] = STATE(2360), + [sym_option_type] = STATE(2360), + [sym_qualified_type] = STATE(3460), + [sym_fixed_array_type] = STATE(2362), + [sym_array_type] = STATE(2362), + [sym_pointer_type] = STATE(2362), + [sym_wrong_pointer_type] = STATE(2362), + [sym_map_type] = STATE(2362), + [sym_channel_type] = STATE(2362), + [sym_shared_type] = STATE(2362), + [sym_thread_type] = STATE(2362), + [sym_atomic_type] = STATE(2362), + [sym_generic_type] = STATE(2362), + [sym_function_type] = STATE(2362), + [sym_identifier] = ACTIONS(565), [anon_sym_LF] = ACTIONS(567), [anon_sym_CR] = ACTIONS(567), [anon_sym_CR_LF] = ACTIONS(567), @@ -149159,13 +149471,13 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_as] = ACTIONS(567), [anon_sym_COMMA] = ACTIONS(567), [anon_sym_RBRACE] = ACTIONS(567), - [anon_sym_LPAREN] = ACTIONS(3692), + [anon_sym_LPAREN] = ACTIONS(569), [anon_sym_EQ] = ACTIONS(567), [anon_sym_PIPE] = ACTIONS(567), - [anon_sym_fn] = ACTIONS(3694), + [anon_sym_fn] = ACTIONS(571), [anon_sym_PLUS] = ACTIONS(567), [anon_sym_DASH] = ACTIONS(567), - [anon_sym_STAR] = ACTIONS(3696), + [anon_sym_STAR] = ACTIONS(573), [anon_sym_SLASH] = ACTIONS(567), [anon_sym_PERCENT] = ACTIONS(567), [anon_sym_LT] = ACTIONS(567), @@ -149175,14 +149487,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT_EQ] = ACTIONS(567), [anon_sym_GT_EQ] = ACTIONS(567), [anon_sym_LBRACK] = ACTIONS(563), - [anon_sym_struct] = ACTIONS(3698), + [anon_sym_struct] = ACTIONS(575), [anon_sym_PLUS_PLUS] = ACTIONS(567), [anon_sym_DASH_DASH] = ACTIONS(567), - [anon_sym_QMARK] = ACTIONS(3700), - [anon_sym_BANG] = ACTIONS(3702), - [anon_sym_LBRACK2] = ACTIONS(3704), + [anon_sym_QMARK] = ACTIONS(515), + [anon_sym_BANG] = ACTIONS(3726), + [anon_sym_LBRACK2] = ACTIONS(579), [anon_sym_CARET] = ACTIONS(567), - [anon_sym_AMP] = ACTIONS(3706), + [anon_sym_AMP] = ACTIONS(581), [anon_sym_LT_LT] = ACTIONS(567), [anon_sym_GT_GT] = ACTIONS(567), [anon_sym_GT_GT_GT] = ACTIONS(567), @@ -149209,1955 +149521,5170 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PIPE_EQ] = ACTIONS(567), [anon_sym_CARET_EQ] = ACTIONS(567), [anon_sym_COLON_EQ] = ACTIONS(567), - [anon_sym_shared] = ACTIONS(3708), - [anon_sym_map_LBRACK] = ACTIONS(3710), - [anon_sym_chan] = ACTIONS(3712), - [anon_sym_thread] = ACTIONS(3714), - [anon_sym_atomic] = ACTIONS(3716), + [anon_sym_shared] = ACTIONS(583), + [anon_sym_map_LBRACK] = ACTIONS(549), + [anon_sym_chan] = ACTIONS(87), + [anon_sym_thread] = ACTIONS(89), + [anon_sym_atomic] = ACTIONS(91), + }, + [1122] = { + [sym_line_comment] = STATE(1122), + [sym_block_comment] = STATE(1122), + [sym_reference_expression] = STATE(4454), + [sym_type_reference_expression] = STATE(1751), + [sym_plain_type] = STATE(1815), + [sym__plain_type_without_special] = STATE(1842), + [sym_anon_struct_type] = STATE(1841), + [sym_multi_return_type] = STATE(1842), + [sym_result_type] = STATE(1842), + [sym_option_type] = STATE(1842), + [sym_qualified_type] = STATE(1751), + [sym_fixed_array_type] = STATE(1841), + [sym_array_type] = STATE(1841), + [sym_pointer_type] = STATE(1841), + [sym_wrong_pointer_type] = STATE(1841), + [sym_map_type] = STATE(1841), + [sym_channel_type] = STATE(1841), + [sym_shared_type] = STATE(1841), + [sym_thread_type] = STATE(1841), + [sym_atomic_type] = STATE(1841), + [sym_generic_type] = STATE(1841), + [sym_function_type] = STATE(1841), + [sym_identifier] = ACTIONS(3698), + [anon_sym_LF] = ACTIONS(619), + [anon_sym_CR] = ACTIONS(619), + [anon_sym_CR_LF] = ACTIONS(619), + [anon_sym_SLASH_SLASH] = ACTIONS(497), + [anon_sym_SLASH_STAR] = ACTIONS(499), + [anon_sym_DOT] = ACTIONS(619), + [anon_sym_as] = ACTIONS(619), + [anon_sym_COMMA] = ACTIONS(619), + [anon_sym_RBRACE] = ACTIONS(619), + [anon_sym_LPAREN] = ACTIONS(3700), + [anon_sym_EQ] = ACTIONS(619), + [anon_sym_PIPE] = ACTIONS(619), + [anon_sym_fn] = ACTIONS(3702), + [anon_sym_PLUS] = ACTIONS(619), + [anon_sym_DASH] = ACTIONS(619), + [anon_sym_STAR] = ACTIONS(3704), + [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(3706), + [anon_sym_PLUS_PLUS] = ACTIONS(619), + [anon_sym_DASH_DASH] = ACTIONS(619), + [anon_sym_QMARK] = ACTIONS(3708), + [anon_sym_BANG] = ACTIONS(3710), + [anon_sym_LBRACK2] = ACTIONS(3712), + [anon_sym_CARET] = ACTIONS(619), + [anon_sym_AMP] = ACTIONS(3714), + [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(3716), + [anon_sym_map_LBRACK] = ACTIONS(3718), + [anon_sym_chan] = ACTIONS(3720), + [anon_sym_thread] = ACTIONS(3722), + [anon_sym_atomic] = ACTIONS(3724), + }, + [1123] = { + [sym_line_comment] = STATE(1123), + [sym_block_comment] = STATE(1123), + [sym_reference_expression] = STATE(4454), + [sym_type_reference_expression] = STATE(1751), + [sym_plain_type] = STATE(1834), + [sym__plain_type_without_special] = STATE(1842), + [sym_anon_struct_type] = STATE(1841), + [sym_multi_return_type] = STATE(1842), + [sym_result_type] = STATE(1842), + [sym_option_type] = STATE(1842), + [sym_qualified_type] = STATE(1751), + [sym_fixed_array_type] = STATE(1841), + [sym_array_type] = STATE(1841), + [sym_pointer_type] = STATE(1841), + [sym_wrong_pointer_type] = STATE(1841), + [sym_map_type] = STATE(1841), + [sym_channel_type] = STATE(1841), + [sym_shared_type] = STATE(1841), + [sym_thread_type] = STATE(1841), + [sym_atomic_type] = STATE(1841), + [sym_generic_type] = STATE(1841), + [sym_function_type] = STATE(1841), + [sym_identifier] = ACTIONS(3698), + [anon_sym_LF] = ACTIONS(589), + [anon_sym_CR] = ACTIONS(589), + [anon_sym_CR_LF] = ACTIONS(589), + [anon_sym_SLASH_SLASH] = ACTIONS(497), + [anon_sym_SLASH_STAR] = ACTIONS(499), + [anon_sym_DOT] = ACTIONS(589), + [anon_sym_as] = ACTIONS(589), + [anon_sym_COMMA] = ACTIONS(589), + [anon_sym_RBRACE] = ACTIONS(589), + [anon_sym_LPAREN] = ACTIONS(3700), + [anon_sym_EQ] = ACTIONS(589), + [anon_sym_PIPE] = ACTIONS(589), + [anon_sym_fn] = ACTIONS(3702), + [anon_sym_PLUS] = ACTIONS(589), + [anon_sym_DASH] = ACTIONS(589), + [anon_sym_STAR] = ACTIONS(3704), + [anon_sym_SLASH] = ACTIONS(589), + [anon_sym_PERCENT] = ACTIONS(589), + [anon_sym_LT] = ACTIONS(589), + [anon_sym_GT] = ACTIONS(589), + [anon_sym_EQ_EQ] = ACTIONS(589), + [anon_sym_BANG_EQ] = ACTIONS(589), + [anon_sym_LT_EQ] = ACTIONS(589), + [anon_sym_GT_EQ] = ACTIONS(589), + [anon_sym_LBRACK] = ACTIONS(585), + [anon_sym_struct] = ACTIONS(3706), + [anon_sym_PLUS_PLUS] = ACTIONS(589), + [anon_sym_DASH_DASH] = ACTIONS(589), + [anon_sym_QMARK] = ACTIONS(3708), + [anon_sym_BANG] = ACTIONS(3710), + [anon_sym_LBRACK2] = ACTIONS(3712), + [anon_sym_CARET] = ACTIONS(589), + [anon_sym_AMP] = ACTIONS(3714), + [anon_sym_LT_LT] = ACTIONS(589), + [anon_sym_GT_GT] = ACTIONS(589), + [anon_sym_GT_GT_GT] = ACTIONS(589), + [anon_sym_AMP_CARET] = ACTIONS(589), + [anon_sym_AMP_AMP] = ACTIONS(589), + [anon_sym_PIPE_PIPE] = ACTIONS(589), + [anon_sym_or] = ACTIONS(589), + [anon_sym_QMARK_DOT] = ACTIONS(589), + [anon_sym_POUND_LBRACK] = ACTIONS(589), + [anon_sym_is] = ACTIONS(589), + [anon_sym_BANGis] = ACTIONS(589), + [anon_sym_in] = ACTIONS(589), + [anon_sym_BANGin] = ACTIONS(589), + [anon_sym_STAR_EQ] = ACTIONS(589), + [anon_sym_SLASH_EQ] = ACTIONS(589), + [anon_sym_PERCENT_EQ] = ACTIONS(589), + [anon_sym_LT_LT_EQ] = ACTIONS(589), + [anon_sym_GT_GT_EQ] = ACTIONS(589), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(589), + [anon_sym_AMP_EQ] = ACTIONS(589), + [anon_sym_AMP_CARET_EQ] = ACTIONS(589), + [anon_sym_PLUS_EQ] = ACTIONS(589), + [anon_sym_DASH_EQ] = ACTIONS(589), + [anon_sym_PIPE_EQ] = ACTIONS(589), + [anon_sym_CARET_EQ] = ACTIONS(589), + [anon_sym_COLON_EQ] = ACTIONS(589), + [anon_sym_shared] = ACTIONS(3716), + [anon_sym_map_LBRACK] = ACTIONS(3718), + [anon_sym_chan] = ACTIONS(3720), + [anon_sym_thread] = ACTIONS(3722), + [anon_sym_atomic] = ACTIONS(3724), + }, + [1124] = { + [sym_line_comment] = STATE(1124), + [sym_block_comment] = STATE(1124), + [sym_type_parameters] = STATE(4199), + [sym_argument_list] = STATE(1208), + [sym_or_block] = STATE(1207), + [sym_identifier] = ACTIONS(1789), + [anon_sym_LF] = ACTIONS(1789), + [anon_sym_CR] = ACTIONS(1789), + [anon_sym_CR_LF] = ACTIONS(1789), + [anon_sym_SLASH_SLASH] = ACTIONS(497), + [anon_sym_SLASH_STAR] = ACTIONS(499), + [anon_sym_SEMI] = ACTIONS(1789), + [anon_sym_DOT] = ACTIONS(3660), + [anon_sym_as] = ACTIONS(3662), + [anon_sym_LBRACE] = ACTIONS(1789), + [anon_sym_COMMA] = ACTIONS(1789), + [anon_sym_LPAREN] = ACTIONS(3664), + [anon_sym_RPAREN] = ACTIONS(1789), + [anon_sym_PIPE] = ACTIONS(3666), + [anon_sym_fn] = ACTIONS(1789), + [anon_sym_PLUS] = ACTIONS(3666), + [anon_sym_DASH] = ACTIONS(3666), + [anon_sym_STAR] = ACTIONS(3668), + [anon_sym_SLASH] = ACTIONS(3668), + [anon_sym_PERCENT] = ACTIONS(3668), + [anon_sym_LT] = ACTIONS(3670), + [anon_sym_GT] = ACTIONS(3670), + [anon_sym_EQ_EQ] = ACTIONS(3670), + [anon_sym_BANG_EQ] = ACTIONS(3670), + [anon_sym_LT_EQ] = ACTIONS(3670), + [anon_sym_GT_EQ] = ACTIONS(3670), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1789), + [anon_sym_LBRACK] = ACTIONS(3672), + [anon_sym_struct] = ACTIONS(1789), + [anon_sym_mut] = ACTIONS(1789), + [anon_sym_PLUS_PLUS] = ACTIONS(3674), + [anon_sym_DASH_DASH] = ACTIONS(3676), + [anon_sym_QMARK] = ACTIONS(3678), + [anon_sym_BANG] = ACTIONS(3680), + [anon_sym_go] = ACTIONS(1789), + [anon_sym_spawn] = ACTIONS(1789), + [anon_sym_json_DOTdecode] = ACTIONS(1789), + [anon_sym_LBRACK2] = ACTIONS(3682), + [anon_sym_TILDE] = ACTIONS(1789), + [anon_sym_CARET] = ACTIONS(3666), + [anon_sym_AMP] = ACTIONS(3668), + [anon_sym_LT_DASH] = ACTIONS(1789), + [anon_sym_LT_LT] = ACTIONS(3668), + [anon_sym_GT_GT] = ACTIONS(3668), + [anon_sym_GT_GT_GT] = ACTIONS(3668), + [anon_sym_AMP_CARET] = ACTIONS(3668), + [anon_sym_AMP_AMP] = ACTIONS(3684), + [anon_sym_PIPE_PIPE] = ACTIONS(3686), + [anon_sym_or] = ACTIONS(3688), + [sym_none] = ACTIONS(1789), + [sym_true] = ACTIONS(1789), + [sym_false] = ACTIONS(1789), + [sym_nil] = ACTIONS(1789), + [anon_sym_QMARK_DOT] = ACTIONS(3660), + [anon_sym_POUND_LBRACK] = ACTIONS(3682), + [anon_sym_if] = ACTIONS(1789), + [anon_sym_DOLLARif] = ACTIONS(1789), + [anon_sym_is] = ACTIONS(3728), + [anon_sym_BANGis] = ACTIONS(3728), + [anon_sym_in] = ACTIONS(3692), + [anon_sym_BANGin] = ACTIONS(3692), + [anon_sym_match] = ACTIONS(1789), + [anon_sym_select] = ACTIONS(1789), + [anon_sym_lock] = ACTIONS(1789), + [anon_sym_rlock] = ACTIONS(1789), + [anon_sym_unsafe] = ACTIONS(1789), + [anon_sym_sql] = ACTIONS(1789), + [sym_int_literal] = ACTIONS(1789), + [sym_float_literal] = ACTIONS(1789), + [sym_rune_literal] = ACTIONS(1789), + [sym_pseudo_compile_time_identifier] = ACTIONS(1789), + [anon_sym_shared] = ACTIONS(1789), + [anon_sym_map_LBRACK] = ACTIONS(1789), + [anon_sym_chan] = ACTIONS(1789), + [anon_sym_thread] = ACTIONS(1789), + [anon_sym_atomic] = ACTIONS(1789), + [sym___double_quote] = ACTIONS(1789), + [sym___single_quote] = ACTIONS(1789), + [sym___c_double_quote] = ACTIONS(1789), + [sym___c_single_quote] = ACTIONS(1789), + [sym___r_double_quote] = ACTIONS(1789), + [sym___r_single_quote] = ACTIONS(1789), + }, + [1125] = { + [sym_line_comment] = STATE(1125), + [sym_block_comment] = STATE(1125), + [sym_type_parameters] = STATE(4199), + [sym_argument_list] = STATE(1208), + [sym_or_block] = STATE(1207), + [sym_identifier] = ACTIONS(3730), + [anon_sym_LF] = ACTIONS(3730), + [anon_sym_CR] = ACTIONS(3730), + [anon_sym_CR_LF] = ACTIONS(3730), + [anon_sym_SLASH_SLASH] = ACTIONS(497), + [anon_sym_SLASH_STAR] = ACTIONS(499), + [anon_sym_SEMI] = ACTIONS(3730), + [anon_sym_DOT] = ACTIONS(3660), + [anon_sym_as] = ACTIONS(3662), + [anon_sym_LBRACE] = ACTIONS(3730), + [anon_sym_COMMA] = ACTIONS(3730), + [anon_sym_LPAREN] = ACTIONS(3664), + [anon_sym_RPAREN] = ACTIONS(3730), + [anon_sym_PIPE] = ACTIONS(3666), + [anon_sym_fn] = ACTIONS(3730), + [anon_sym_PLUS] = ACTIONS(3666), + [anon_sym_DASH] = ACTIONS(3666), + [anon_sym_STAR] = ACTIONS(3668), + [anon_sym_SLASH] = ACTIONS(3668), + [anon_sym_PERCENT] = ACTIONS(3668), + [anon_sym_LT] = ACTIONS(3670), + [anon_sym_GT] = ACTIONS(3670), + [anon_sym_EQ_EQ] = ACTIONS(3670), + [anon_sym_BANG_EQ] = ACTIONS(3670), + [anon_sym_LT_EQ] = ACTIONS(3670), + [anon_sym_GT_EQ] = ACTIONS(3670), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3730), + [anon_sym_LBRACK] = ACTIONS(3672), + [anon_sym_struct] = ACTIONS(3730), + [anon_sym_mut] = ACTIONS(3730), + [anon_sym_PLUS_PLUS] = ACTIONS(3674), + [anon_sym_DASH_DASH] = ACTIONS(3676), + [anon_sym_QMARK] = ACTIONS(3678), + [anon_sym_BANG] = ACTIONS(3680), + [anon_sym_go] = ACTIONS(3730), + [anon_sym_spawn] = ACTIONS(3730), + [anon_sym_json_DOTdecode] = ACTIONS(3730), + [anon_sym_LBRACK2] = ACTIONS(3682), + [anon_sym_TILDE] = ACTIONS(3730), + [anon_sym_CARET] = ACTIONS(3666), + [anon_sym_AMP] = ACTIONS(3668), + [anon_sym_LT_DASH] = ACTIONS(3730), + [anon_sym_LT_LT] = ACTIONS(3668), + [anon_sym_GT_GT] = ACTIONS(3668), + [anon_sym_GT_GT_GT] = ACTIONS(3668), + [anon_sym_AMP_CARET] = ACTIONS(3668), + [anon_sym_AMP_AMP] = ACTIONS(3684), + [anon_sym_PIPE_PIPE] = ACTIONS(3686), + [anon_sym_or] = ACTIONS(3688), + [sym_none] = ACTIONS(3730), + [sym_true] = ACTIONS(3730), + [sym_false] = ACTIONS(3730), + [sym_nil] = ACTIONS(3730), + [anon_sym_QMARK_DOT] = ACTIONS(3660), + [anon_sym_POUND_LBRACK] = ACTIONS(3682), + [anon_sym_if] = ACTIONS(3730), + [anon_sym_DOLLARif] = ACTIONS(3730), + [anon_sym_is] = ACTIONS(3690), + [anon_sym_BANGis] = ACTIONS(3690), + [anon_sym_in] = ACTIONS(3692), + [anon_sym_BANGin] = ACTIONS(3692), + [anon_sym_match] = ACTIONS(3730), + [anon_sym_select] = ACTIONS(3730), + [anon_sym_lock] = ACTIONS(3730), + [anon_sym_rlock] = ACTIONS(3730), + [anon_sym_unsafe] = ACTIONS(3730), + [anon_sym_sql] = ACTIONS(3730), + [sym_int_literal] = ACTIONS(3730), + [sym_float_literal] = ACTIONS(3730), + [sym_rune_literal] = ACTIONS(3730), + [sym_pseudo_compile_time_identifier] = ACTIONS(3730), + [anon_sym_shared] = ACTIONS(3730), + [anon_sym_map_LBRACK] = ACTIONS(3730), + [anon_sym_chan] = ACTIONS(3730), + [anon_sym_thread] = ACTIONS(3730), + [anon_sym_atomic] = ACTIONS(3730), + [sym___double_quote] = ACTIONS(3730), + [sym___single_quote] = ACTIONS(3730), + [sym___c_double_quote] = ACTIONS(3730), + [sym___c_single_quote] = ACTIONS(3730), + [sym___r_double_quote] = ACTIONS(3730), + [sym___r_single_quote] = ACTIONS(3730), + }, + [1126] = { + [sym_line_comment] = STATE(1126), + [sym_block_comment] = STATE(1126), + [sym_type_parameters] = STATE(4199), + [sym_argument_list] = STATE(1208), + [sym_or_block] = STATE(1207), + [sym_identifier] = ACTIONS(3732), + [anon_sym_LF] = ACTIONS(3732), + [anon_sym_CR] = ACTIONS(3732), + [anon_sym_CR_LF] = ACTIONS(3732), + [anon_sym_SLASH_SLASH] = ACTIONS(497), + [anon_sym_SLASH_STAR] = ACTIONS(499), + [anon_sym_SEMI] = ACTIONS(3732), + [anon_sym_DOT] = ACTIONS(3660), + [anon_sym_as] = ACTIONS(3662), + [anon_sym_LBRACE] = ACTIONS(3732), + [anon_sym_COMMA] = ACTIONS(3732), + [anon_sym_LPAREN] = ACTIONS(3664), + [anon_sym_RPAREN] = ACTIONS(3732), + [anon_sym_PIPE] = ACTIONS(3666), + [anon_sym_fn] = ACTIONS(3732), + [anon_sym_PLUS] = ACTIONS(3666), + [anon_sym_DASH] = ACTIONS(3666), + [anon_sym_STAR] = ACTIONS(3668), + [anon_sym_SLASH] = ACTIONS(3668), + [anon_sym_PERCENT] = ACTIONS(3668), + [anon_sym_LT] = ACTIONS(3670), + [anon_sym_GT] = ACTIONS(3670), + [anon_sym_EQ_EQ] = ACTIONS(3670), + [anon_sym_BANG_EQ] = ACTIONS(3670), + [anon_sym_LT_EQ] = ACTIONS(3670), + [anon_sym_GT_EQ] = ACTIONS(3670), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3732), + [anon_sym_LBRACK] = ACTIONS(3672), + [anon_sym_struct] = ACTIONS(3732), + [anon_sym_mut] = ACTIONS(3732), + [anon_sym_PLUS_PLUS] = ACTIONS(3674), + [anon_sym_DASH_DASH] = ACTIONS(3676), + [anon_sym_QMARK] = ACTIONS(3678), + [anon_sym_BANG] = ACTIONS(3680), + [anon_sym_go] = ACTIONS(3732), + [anon_sym_spawn] = ACTIONS(3732), + [anon_sym_json_DOTdecode] = ACTIONS(3732), + [anon_sym_LBRACK2] = ACTIONS(3682), + [anon_sym_TILDE] = ACTIONS(3732), + [anon_sym_CARET] = ACTIONS(3666), + [anon_sym_AMP] = ACTIONS(3668), + [anon_sym_LT_DASH] = ACTIONS(3732), + [anon_sym_LT_LT] = ACTIONS(3668), + [anon_sym_GT_GT] = ACTIONS(3668), + [anon_sym_GT_GT_GT] = ACTIONS(3668), + [anon_sym_AMP_CARET] = ACTIONS(3668), + [anon_sym_AMP_AMP] = ACTIONS(3684), + [anon_sym_PIPE_PIPE] = ACTIONS(3686), + [anon_sym_or] = ACTIONS(3688), + [sym_none] = ACTIONS(3732), + [sym_true] = ACTIONS(3732), + [sym_false] = ACTIONS(3732), + [sym_nil] = ACTIONS(3732), + [anon_sym_QMARK_DOT] = ACTIONS(3660), + [anon_sym_POUND_LBRACK] = ACTIONS(3682), + [anon_sym_if] = ACTIONS(3732), + [anon_sym_DOLLARif] = ACTIONS(3732), + [anon_sym_is] = ACTIONS(3690), + [anon_sym_BANGis] = ACTIONS(3690), + [anon_sym_in] = ACTIONS(3692), + [anon_sym_BANGin] = ACTIONS(3692), + [anon_sym_match] = ACTIONS(3732), + [anon_sym_select] = ACTIONS(3732), + [anon_sym_lock] = ACTIONS(3732), + [anon_sym_rlock] = ACTIONS(3732), + [anon_sym_unsafe] = ACTIONS(3732), + [anon_sym_sql] = ACTIONS(3732), + [sym_int_literal] = ACTIONS(3732), + [sym_float_literal] = ACTIONS(3732), + [sym_rune_literal] = ACTIONS(3732), + [sym_pseudo_compile_time_identifier] = ACTIONS(3732), + [anon_sym_shared] = ACTIONS(3732), + [anon_sym_map_LBRACK] = ACTIONS(3732), + [anon_sym_chan] = ACTIONS(3732), + [anon_sym_thread] = ACTIONS(3732), + [anon_sym_atomic] = ACTIONS(3732), + [sym___double_quote] = ACTIONS(3732), + [sym___single_quote] = ACTIONS(3732), + [sym___c_double_quote] = ACTIONS(3732), + [sym___c_single_quote] = ACTIONS(3732), + [sym___r_double_quote] = ACTIONS(3732), + [sym___r_single_quote] = ACTIONS(3732), + }, + [1127] = { + [sym_line_comment] = STATE(1127), + [sym_block_comment] = STATE(1127), + [sym_else_branch] = STATE(1199), + [sym_identifier] = ACTIONS(1805), + [anon_sym_LF] = ACTIONS(1805), + [anon_sym_CR] = ACTIONS(1805), + [anon_sym_CR_LF] = ACTIONS(1805), + [anon_sym_SLASH_SLASH] = ACTIONS(497), + [anon_sym_SLASH_STAR] = ACTIONS(499), + [anon_sym_SEMI] = ACTIONS(1805), + [anon_sym_DOT] = ACTIONS(1805), + [anon_sym_as] = ACTIONS(1805), + [anon_sym_LBRACE] = ACTIONS(1805), + [anon_sym_COMMA] = ACTIONS(1805), + [anon_sym_RBRACE] = ACTIONS(1805), + [anon_sym_LPAREN] = ACTIONS(1805), + [anon_sym_RPAREN] = ACTIONS(1805), + [anon_sym_PIPE] = ACTIONS(1805), + [anon_sym_fn] = ACTIONS(1805), + [anon_sym_PLUS] = ACTIONS(1805), + [anon_sym_DASH] = ACTIONS(1805), + [anon_sym_STAR] = ACTIONS(1805), + [anon_sym_SLASH] = ACTIONS(1805), + [anon_sym_PERCENT] = ACTIONS(1805), + [anon_sym_LT] = ACTIONS(1805), + [anon_sym_GT] = ACTIONS(1805), + [anon_sym_EQ_EQ] = ACTIONS(1805), + [anon_sym_BANG_EQ] = ACTIONS(1805), + [anon_sym_LT_EQ] = ACTIONS(1805), + [anon_sym_GT_EQ] = ACTIONS(1805), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1805), + [anon_sym_LBRACK] = ACTIONS(1803), + [anon_sym_struct] = ACTIONS(1805), + [anon_sym_mut] = ACTIONS(1805), + [anon_sym_PLUS_PLUS] = ACTIONS(1805), + [anon_sym_DASH_DASH] = ACTIONS(1805), + [anon_sym_QMARK] = ACTIONS(1805), + [anon_sym_BANG] = ACTIONS(1805), + [anon_sym_go] = ACTIONS(1805), + [anon_sym_spawn] = ACTIONS(1805), + [anon_sym_json_DOTdecode] = ACTIONS(1805), + [anon_sym_LBRACK2] = ACTIONS(1805), + [anon_sym_TILDE] = ACTIONS(1805), + [anon_sym_CARET] = ACTIONS(1805), + [anon_sym_AMP] = ACTIONS(1805), + [anon_sym_LT_DASH] = ACTIONS(1805), + [anon_sym_LT_LT] = ACTIONS(1805), + [anon_sym_GT_GT] = ACTIONS(1805), + [anon_sym_GT_GT_GT] = ACTIONS(1805), + [anon_sym_AMP_CARET] = ACTIONS(1805), + [anon_sym_AMP_AMP] = ACTIONS(1805), + [anon_sym_PIPE_PIPE] = ACTIONS(1805), + [anon_sym_or] = ACTIONS(1805), + [sym_none] = ACTIONS(1805), + [sym_true] = ACTIONS(1805), + [sym_false] = ACTIONS(1805), + [sym_nil] = ACTIONS(1805), + [anon_sym_QMARK_DOT] = ACTIONS(1805), + [anon_sym_POUND_LBRACK] = ACTIONS(1805), + [anon_sym_if] = ACTIONS(1805), + [anon_sym_else] = ACTIONS(3696), + [anon_sym_DOLLARif] = ACTIONS(1805), + [anon_sym_is] = ACTIONS(1805), + [anon_sym_BANGis] = ACTIONS(1805), + [anon_sym_in] = ACTIONS(1805), + [anon_sym_BANGin] = ACTIONS(1805), + [anon_sym_match] = ACTIONS(1805), + [anon_sym_select] = ACTIONS(1805), + [anon_sym_lock] = ACTIONS(1805), + [anon_sym_rlock] = ACTIONS(1805), + [anon_sym_unsafe] = ACTIONS(1805), + [anon_sym_sql] = ACTIONS(1805), + [sym_int_literal] = ACTIONS(1805), + [sym_float_literal] = ACTIONS(1805), + [sym_rune_literal] = ACTIONS(1805), + [sym_pseudo_compile_time_identifier] = ACTIONS(1805), + [anon_sym_shared] = ACTIONS(1805), + [anon_sym_map_LBRACK] = ACTIONS(1805), + [anon_sym_chan] = ACTIONS(1805), + [anon_sym_thread] = ACTIONS(1805), + [anon_sym_atomic] = ACTIONS(1805), + [sym___double_quote] = ACTIONS(1805), + [sym___single_quote] = ACTIONS(1805), + [sym___c_double_quote] = ACTIONS(1805), + [sym___c_single_quote] = ACTIONS(1805), + [sym___r_double_quote] = ACTIONS(1805), + [sym___r_single_quote] = ACTIONS(1805), + }, + [1128] = { + [sym_line_comment] = STATE(1128), + [sym_block_comment] = STATE(1128), + [sym_type_parameters] = STATE(4199), + [sym_argument_list] = STATE(1208), + [sym_or_block] = STATE(1207), + [sym_identifier] = ACTIONS(3734), + [anon_sym_LF] = ACTIONS(3736), + [anon_sym_CR] = ACTIONS(3736), + [anon_sym_CR_LF] = ACTIONS(3736), + [anon_sym_SLASH_SLASH] = ACTIONS(497), + [anon_sym_SLASH_STAR] = ACTIONS(499), + [anon_sym_SEMI] = ACTIONS(3736), + [anon_sym_DOT] = ACTIONS(3660), + [anon_sym_as] = ACTIONS(3662), + [anon_sym_LBRACE] = ACTIONS(3734), + [anon_sym_COMMA] = ACTIONS(3736), + [anon_sym_RBRACE] = ACTIONS(3734), + [anon_sym_LPAREN] = ACTIONS(3664), + [anon_sym_PIPE] = ACTIONS(3666), + [anon_sym_fn] = ACTIONS(3734), + [anon_sym_PLUS] = ACTIONS(3666), + [anon_sym_DASH] = ACTIONS(3666), + [anon_sym_STAR] = ACTIONS(3668), + [anon_sym_SLASH] = ACTIONS(3668), + [anon_sym_PERCENT] = ACTIONS(3668), + [anon_sym_LT] = ACTIONS(3670), + [anon_sym_GT] = ACTIONS(3670), + [anon_sym_EQ_EQ] = ACTIONS(3670), + [anon_sym_BANG_EQ] = ACTIONS(3670), + [anon_sym_LT_EQ] = ACTIONS(3670), + [anon_sym_GT_EQ] = ACTIONS(3670), + [anon_sym_LBRACK] = ACTIONS(3672), + [anon_sym_struct] = ACTIONS(3734), + [anon_sym_mut] = ACTIONS(3734), + [anon_sym_PLUS_PLUS] = ACTIONS(3674), + [anon_sym_DASH_DASH] = ACTIONS(3676), + [anon_sym_QMARK] = ACTIONS(3678), + [anon_sym_BANG] = ACTIONS(3680), + [anon_sym_go] = ACTIONS(3734), + [anon_sym_spawn] = ACTIONS(3734), + [anon_sym_json_DOTdecode] = ACTIONS(3734), + [anon_sym_LBRACK2] = ACTIONS(3682), + [anon_sym_TILDE] = ACTIONS(3734), + [anon_sym_CARET] = ACTIONS(3666), + [anon_sym_AMP] = ACTIONS(3668), + [anon_sym_LT_DASH] = ACTIONS(3734), + [anon_sym_LT_LT] = ACTIONS(3668), + [anon_sym_GT_GT] = ACTIONS(3668), + [anon_sym_GT_GT_GT] = ACTIONS(3668), + [anon_sym_AMP_CARET] = ACTIONS(3668), + [anon_sym_AMP_AMP] = ACTIONS(3684), + [anon_sym_PIPE_PIPE] = ACTIONS(3686), + [anon_sym_or] = ACTIONS(3688), + [sym_none] = ACTIONS(3734), + [sym_true] = ACTIONS(3734), + [sym_false] = ACTIONS(3734), + [sym_nil] = ACTIONS(3734), + [anon_sym_QMARK_DOT] = ACTIONS(3660), + [anon_sym_POUND_LBRACK] = ACTIONS(3682), + [anon_sym_if] = ACTIONS(3734), + [anon_sym_DOLLARif] = ACTIONS(3734), + [anon_sym_is] = ACTIONS(3690), + [anon_sym_BANGis] = ACTIONS(3690), + [anon_sym_in] = ACTIONS(3692), + [anon_sym_BANGin] = ACTIONS(3692), + [anon_sym_match] = ACTIONS(3734), + [anon_sym_select] = ACTIONS(3734), + [anon_sym_lock] = ACTIONS(3734), + [anon_sym_rlock] = ACTIONS(3734), + [anon_sym_unsafe] = ACTIONS(3734), + [anon_sym_sql] = ACTIONS(3734), + [sym_int_literal] = ACTIONS(3734), + [sym_float_literal] = ACTIONS(3734), + [sym_rune_literal] = ACTIONS(3734), + [sym_pseudo_compile_time_identifier] = ACTIONS(3734), + [anon_sym_shared] = ACTIONS(3734), + [anon_sym_map_LBRACK] = ACTIONS(3734), + [anon_sym_chan] = ACTIONS(3734), + [anon_sym_thread] = ACTIONS(3734), + [anon_sym_atomic] = ACTIONS(3734), + [sym___double_quote] = ACTIONS(3734), + [sym___single_quote] = ACTIONS(3734), + [sym___c_double_quote] = ACTIONS(3734), + [sym___c_single_quote] = ACTIONS(3734), + [sym___r_double_quote] = ACTIONS(3734), + [sym___r_single_quote] = ACTIONS(3734), + }, + [1129] = { + [sym_line_comment] = STATE(1129), + [sym_block_comment] = STATE(1129), + [sym_identifier] = ACTIONS(1843), + [anon_sym_LF] = ACTIONS(1843), + [anon_sym_CR] = ACTIONS(1843), + [anon_sym_CR_LF] = ACTIONS(1843), + [anon_sym_SLASH_SLASH] = ACTIONS(497), + [anon_sym_SLASH_STAR] = ACTIONS(499), + [anon_sym_SEMI] = ACTIONS(1843), + [anon_sym_DOT] = ACTIONS(1843), + [anon_sym_as] = ACTIONS(1843), + [anon_sym_LBRACE] = ACTIONS(1843), + [anon_sym_COMMA] = ACTIONS(1843), + [anon_sym_RBRACE] = ACTIONS(1843), + [anon_sym_LPAREN] = ACTIONS(1843), + [anon_sym_RPAREN] = ACTIONS(1843), + [anon_sym_PIPE] = ACTIONS(1843), + [anon_sym_fn] = ACTIONS(1843), + [anon_sym_PLUS] = ACTIONS(1843), + [anon_sym_DASH] = ACTIONS(1843), + [anon_sym_STAR] = ACTIONS(1843), + [anon_sym_SLASH] = ACTIONS(1843), + [anon_sym_PERCENT] = ACTIONS(1843), + [anon_sym_LT] = ACTIONS(1843), + [anon_sym_GT] = ACTIONS(1843), + [anon_sym_EQ_EQ] = ACTIONS(1843), + [anon_sym_BANG_EQ] = ACTIONS(1843), + [anon_sym_LT_EQ] = ACTIONS(1843), + [anon_sym_GT_EQ] = ACTIONS(1843), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1843), + [anon_sym_LBRACK] = ACTIONS(1841), + [anon_sym_struct] = ACTIONS(1843), + [anon_sym_mut] = ACTIONS(1843), + [anon_sym_PLUS_PLUS] = ACTIONS(1843), + [anon_sym_DASH_DASH] = ACTIONS(1843), + [anon_sym_QMARK] = ACTIONS(1843), + [anon_sym_BANG] = ACTIONS(1843), + [anon_sym_go] = ACTIONS(1843), + [anon_sym_spawn] = ACTIONS(1843), + [anon_sym_json_DOTdecode] = ACTIONS(1843), + [anon_sym_LBRACK2] = ACTIONS(1843), + [anon_sym_TILDE] = ACTIONS(1843), + [anon_sym_CARET] = ACTIONS(1843), + [anon_sym_AMP] = ACTIONS(1843), + [anon_sym_LT_DASH] = ACTIONS(1843), + [anon_sym_LT_LT] = ACTIONS(1843), + [anon_sym_GT_GT] = ACTIONS(1843), + [anon_sym_GT_GT_GT] = ACTIONS(1843), + [anon_sym_AMP_CARET] = ACTIONS(1843), + [anon_sym_AMP_AMP] = ACTIONS(1843), + [anon_sym_PIPE_PIPE] = ACTIONS(1843), + [anon_sym_or] = ACTIONS(1843), + [sym_none] = ACTIONS(1843), + [sym_true] = ACTIONS(1843), + [sym_false] = ACTIONS(1843), + [sym_nil] = ACTIONS(1843), + [anon_sym_QMARK_DOT] = ACTIONS(1843), + [anon_sym_POUND_LBRACK] = ACTIONS(1843), + [anon_sym_if] = ACTIONS(1843), + [anon_sym_DOLLARif] = ACTIONS(1843), + [anon_sym_DOLLARelse] = ACTIONS(3738), + [anon_sym_is] = ACTIONS(1843), + [anon_sym_BANGis] = ACTIONS(1843), + [anon_sym_in] = ACTIONS(1843), + [anon_sym_BANGin] = ACTIONS(1843), + [anon_sym_match] = ACTIONS(1843), + [anon_sym_select] = ACTIONS(1843), + [anon_sym_lock] = ACTIONS(1843), + [anon_sym_rlock] = ACTIONS(1843), + [anon_sym_unsafe] = ACTIONS(1843), + [anon_sym_sql] = ACTIONS(1843), + [sym_int_literal] = ACTIONS(1843), + [sym_float_literal] = ACTIONS(1843), + [sym_rune_literal] = ACTIONS(1843), + [sym_pseudo_compile_time_identifier] = ACTIONS(1843), + [anon_sym_shared] = ACTIONS(1843), + [anon_sym_map_LBRACK] = ACTIONS(1843), + [anon_sym_chan] = ACTIONS(1843), + [anon_sym_thread] = ACTIONS(1843), + [anon_sym_atomic] = ACTIONS(1843), + [sym___double_quote] = ACTIONS(1843), + [sym___single_quote] = ACTIONS(1843), + [sym___c_double_quote] = ACTIONS(1843), + [sym___c_single_quote] = ACTIONS(1843), + [sym___r_double_quote] = ACTIONS(1843), + [sym___r_single_quote] = ACTIONS(1843), + }, + [1130] = { + [sym_line_comment] = STATE(1130), + [sym_block_comment] = STATE(1130), + [sym_identifier] = ACTIONS(1813), + [anon_sym_LF] = ACTIONS(1813), + [anon_sym_CR] = ACTIONS(1813), + [anon_sym_CR_LF] = ACTIONS(1813), + [anon_sym_SLASH_SLASH] = ACTIONS(497), + [anon_sym_SLASH_STAR] = ACTIONS(499), + [anon_sym_SEMI] = ACTIONS(1813), + [anon_sym_DOT] = ACTIONS(1813), + [anon_sym_as] = ACTIONS(1813), + [anon_sym_LBRACE] = ACTIONS(1813), + [anon_sym_COMMA] = ACTIONS(1813), + [anon_sym_RBRACE] = ACTIONS(1813), + [anon_sym_LPAREN] = ACTIONS(1813), + [anon_sym_RPAREN] = ACTIONS(1813), + [anon_sym_PIPE] = ACTIONS(1813), + [anon_sym_fn] = ACTIONS(1813), + [anon_sym_PLUS] = ACTIONS(1813), + [anon_sym_DASH] = ACTIONS(1813), + [anon_sym_STAR] = ACTIONS(1813), + [anon_sym_SLASH] = ACTIONS(1813), + [anon_sym_PERCENT] = ACTIONS(1813), + [anon_sym_LT] = ACTIONS(1813), + [anon_sym_GT] = ACTIONS(1813), + [anon_sym_EQ_EQ] = ACTIONS(1813), + [anon_sym_BANG_EQ] = ACTIONS(1813), + [anon_sym_LT_EQ] = ACTIONS(1813), + [anon_sym_GT_EQ] = ACTIONS(1813), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1813), + [anon_sym_LBRACK] = ACTIONS(1811), + [anon_sym_struct] = ACTIONS(1813), + [anon_sym_mut] = ACTIONS(1813), + [anon_sym_PLUS_PLUS] = ACTIONS(1813), + [anon_sym_DASH_DASH] = ACTIONS(1813), + [anon_sym_QMARK] = ACTIONS(1813), + [anon_sym_BANG] = ACTIONS(1813), + [anon_sym_go] = ACTIONS(1813), + [anon_sym_spawn] = ACTIONS(1813), + [anon_sym_json_DOTdecode] = ACTIONS(1813), + [anon_sym_LBRACK2] = ACTIONS(1813), + [anon_sym_TILDE] = ACTIONS(1813), + [anon_sym_CARET] = ACTIONS(1813), + [anon_sym_AMP] = ACTIONS(1813), + [anon_sym_LT_DASH] = ACTIONS(1813), + [anon_sym_LT_LT] = ACTIONS(1813), + [anon_sym_GT_GT] = ACTIONS(1813), + [anon_sym_GT_GT_GT] = ACTIONS(1813), + [anon_sym_AMP_CARET] = ACTIONS(1813), + [anon_sym_AMP_AMP] = ACTIONS(1813), + [anon_sym_PIPE_PIPE] = ACTIONS(1813), + [anon_sym_or] = ACTIONS(1813), + [sym_none] = ACTIONS(1813), + [sym_true] = ACTIONS(1813), + [sym_false] = ACTIONS(1813), + [sym_nil] = ACTIONS(1813), + [anon_sym_QMARK_DOT] = ACTIONS(1813), + [anon_sym_POUND_LBRACK] = ACTIONS(1813), + [anon_sym_if] = ACTIONS(1813), + [anon_sym_else] = ACTIONS(1813), + [anon_sym_DOLLARif] = ACTIONS(1813), + [anon_sym_is] = ACTIONS(1813), + [anon_sym_BANGis] = ACTIONS(1813), + [anon_sym_in] = ACTIONS(1813), + [anon_sym_BANGin] = ACTIONS(1813), + [anon_sym_match] = ACTIONS(1813), + [anon_sym_select] = ACTIONS(1813), + [anon_sym_lock] = ACTIONS(1813), + [anon_sym_rlock] = ACTIONS(1813), + [anon_sym_unsafe] = ACTIONS(1813), + [anon_sym_sql] = ACTIONS(1813), + [sym_int_literal] = ACTIONS(1813), + [sym_float_literal] = ACTIONS(1813), + [sym_rune_literal] = ACTIONS(1813), + [sym_pseudo_compile_time_identifier] = ACTIONS(1813), + [anon_sym_shared] = ACTIONS(1813), + [anon_sym_map_LBRACK] = ACTIONS(1813), + [anon_sym_chan] = ACTIONS(1813), + [anon_sym_thread] = ACTIONS(1813), + [anon_sym_atomic] = ACTIONS(1813), + [sym___double_quote] = ACTIONS(1813), + [sym___single_quote] = ACTIONS(1813), + [sym___c_double_quote] = ACTIONS(1813), + [sym___c_single_quote] = ACTIONS(1813), + [sym___r_double_quote] = ACTIONS(1813), + [sym___r_single_quote] = ACTIONS(1813), + }, + [1131] = { + [sym_line_comment] = STATE(1131), + [sym_block_comment] = STATE(1131), + [sym_identifier] = ACTIONS(1809), + [anon_sym_LF] = ACTIONS(1809), + [anon_sym_CR] = ACTIONS(1809), + [anon_sym_CR_LF] = ACTIONS(1809), + [anon_sym_SLASH_SLASH] = ACTIONS(497), + [anon_sym_SLASH_STAR] = ACTIONS(499), + [anon_sym_SEMI] = ACTIONS(1809), + [anon_sym_DOT] = ACTIONS(1809), + [anon_sym_as] = ACTIONS(1809), + [anon_sym_LBRACE] = ACTIONS(1809), + [anon_sym_COMMA] = ACTIONS(1809), + [anon_sym_RBRACE] = ACTIONS(1809), + [anon_sym_LPAREN] = ACTIONS(1809), + [anon_sym_RPAREN] = ACTIONS(1809), + [anon_sym_PIPE] = ACTIONS(1809), + [anon_sym_fn] = ACTIONS(1809), + [anon_sym_PLUS] = ACTIONS(1809), + [anon_sym_DASH] = ACTIONS(1809), + [anon_sym_STAR] = ACTIONS(1809), + [anon_sym_SLASH] = ACTIONS(1809), + [anon_sym_PERCENT] = ACTIONS(1809), + [anon_sym_LT] = ACTIONS(1809), + [anon_sym_GT] = ACTIONS(1809), + [anon_sym_EQ_EQ] = ACTIONS(1809), + [anon_sym_BANG_EQ] = ACTIONS(1809), + [anon_sym_LT_EQ] = ACTIONS(1809), + [anon_sym_GT_EQ] = ACTIONS(1809), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1809), + [anon_sym_LBRACK] = ACTIONS(1807), + [anon_sym_struct] = ACTIONS(1809), + [anon_sym_mut] = ACTIONS(1809), + [anon_sym_PLUS_PLUS] = ACTIONS(1809), + [anon_sym_DASH_DASH] = ACTIONS(1809), + [anon_sym_QMARK] = ACTIONS(1809), + [anon_sym_BANG] = ACTIONS(1809), + [anon_sym_go] = ACTIONS(1809), + [anon_sym_spawn] = ACTIONS(1809), + [anon_sym_json_DOTdecode] = ACTIONS(1809), + [anon_sym_LBRACK2] = ACTIONS(1809), + [anon_sym_TILDE] = ACTIONS(1809), + [anon_sym_CARET] = ACTIONS(1809), + [anon_sym_AMP] = ACTIONS(1809), + [anon_sym_LT_DASH] = ACTIONS(1809), + [anon_sym_LT_LT] = ACTIONS(1809), + [anon_sym_GT_GT] = ACTIONS(1809), + [anon_sym_GT_GT_GT] = ACTIONS(1809), + [anon_sym_AMP_CARET] = ACTIONS(1809), + [anon_sym_AMP_AMP] = ACTIONS(1809), + [anon_sym_PIPE_PIPE] = ACTIONS(1809), + [anon_sym_or] = ACTIONS(1809), + [sym_none] = ACTIONS(1809), + [sym_true] = ACTIONS(1809), + [sym_false] = ACTIONS(1809), + [sym_nil] = ACTIONS(1809), + [anon_sym_QMARK_DOT] = ACTIONS(1809), + [anon_sym_POUND_LBRACK] = ACTIONS(1809), + [anon_sym_if] = ACTIONS(1809), + [anon_sym_else] = ACTIONS(1809), + [anon_sym_DOLLARif] = ACTIONS(1809), + [anon_sym_is] = ACTIONS(1809), + [anon_sym_BANGis] = ACTIONS(1809), + [anon_sym_in] = ACTIONS(1809), + [anon_sym_BANGin] = ACTIONS(1809), + [anon_sym_match] = ACTIONS(1809), + [anon_sym_select] = ACTIONS(1809), + [anon_sym_lock] = ACTIONS(1809), + [anon_sym_rlock] = ACTIONS(1809), + [anon_sym_unsafe] = ACTIONS(1809), + [anon_sym_sql] = ACTIONS(1809), + [sym_int_literal] = ACTIONS(1809), + [sym_float_literal] = ACTIONS(1809), + [sym_rune_literal] = ACTIONS(1809), + [sym_pseudo_compile_time_identifier] = ACTIONS(1809), + [anon_sym_shared] = ACTIONS(1809), + [anon_sym_map_LBRACK] = ACTIONS(1809), + [anon_sym_chan] = ACTIONS(1809), + [anon_sym_thread] = ACTIONS(1809), + [anon_sym_atomic] = ACTIONS(1809), + [sym___double_quote] = ACTIONS(1809), + [sym___single_quote] = ACTIONS(1809), + [sym___c_double_quote] = ACTIONS(1809), + [sym___c_single_quote] = ACTIONS(1809), + [sym___r_double_quote] = ACTIONS(1809), + [sym___r_single_quote] = ACTIONS(1809), + }, + [1132] = { + [sym_line_comment] = STATE(1132), + [sym_block_comment] = STATE(1132), + [sym_type_parameters] = STATE(1203), + [sym_identifier] = ACTIONS(1881), + [anon_sym_LF] = ACTIONS(1881), + [anon_sym_CR] = ACTIONS(1881), + [anon_sym_CR_LF] = ACTIONS(1881), + [anon_sym_SLASH_SLASH] = ACTIONS(497), + [anon_sym_SLASH_STAR] = ACTIONS(499), + [anon_sym_SEMI] = ACTIONS(1881), + [anon_sym_DOT] = ACTIONS(1881), + [anon_sym_as] = ACTIONS(1881), + [anon_sym_LBRACE] = ACTIONS(1881), + [anon_sym_COMMA] = ACTIONS(1881), + [anon_sym_RBRACE] = ACTIONS(1881), + [anon_sym_LPAREN] = ACTIONS(1881), + [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(1879), + [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(1881), + [anon_sym_BANG] = ACTIONS(1881), + [anon_sym_go] = ACTIONS(1881), + [anon_sym_spawn] = ACTIONS(1881), + [anon_sym_json_DOTdecode] = ACTIONS(1881), + [anon_sym_LBRACK2] = ACTIONS(1881), + [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(1881), + [anon_sym_POUND_LBRACK] = ACTIONS(1881), + [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), + }, + [1133] = { + [sym_line_comment] = STATE(1133), + [sym_block_comment] = STATE(1133), + [sym_identifier] = ACTIONS(1889), + [anon_sym_LF] = ACTIONS(1889), + [anon_sym_CR] = ACTIONS(1889), + [anon_sym_CR_LF] = ACTIONS(1889), + [anon_sym_SLASH_SLASH] = ACTIONS(497), + [anon_sym_SLASH_STAR] = ACTIONS(499), + [anon_sym_SEMI] = ACTIONS(1889), + [anon_sym_DOT] = ACTIONS(1889), + [anon_sym_as] = ACTIONS(1889), + [anon_sym_LBRACE] = ACTIONS(1891), + [anon_sym_COMMA] = ACTIONS(1889), + [anon_sym_RBRACE] = ACTIONS(1889), + [anon_sym_LPAREN] = ACTIONS(1889), + [anon_sym_RPAREN] = ACTIONS(1889), + [anon_sym_PIPE] = ACTIONS(1889), + [anon_sym_fn] = ACTIONS(1889), + [anon_sym_PLUS] = ACTIONS(1889), + [anon_sym_DASH] = ACTIONS(1889), + [anon_sym_STAR] = ACTIONS(1889), + [anon_sym_SLASH] = ACTIONS(1889), + [anon_sym_PERCENT] = ACTIONS(1889), + [anon_sym_LT] = ACTIONS(1889), + [anon_sym_GT] = ACTIONS(1889), + [anon_sym_EQ_EQ] = ACTIONS(1889), + [anon_sym_BANG_EQ] = ACTIONS(1889), + [anon_sym_LT_EQ] = ACTIONS(1889), + [anon_sym_GT_EQ] = ACTIONS(1889), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1889), + [anon_sym_LBRACK] = ACTIONS(1894), + [anon_sym_struct] = ACTIONS(1889), + [anon_sym_mut] = ACTIONS(1889), + [anon_sym_COLON] = ACTIONS(1889), + [anon_sym_PLUS_PLUS] = ACTIONS(1889), + [anon_sym_DASH_DASH] = ACTIONS(1889), + [anon_sym_QMARK] = ACTIONS(1889), + [anon_sym_BANG] = ACTIONS(1889), + [anon_sym_go] = ACTIONS(1889), + [anon_sym_spawn] = ACTIONS(1889), + [anon_sym_json_DOTdecode] = ACTIONS(1889), + [anon_sym_LBRACK2] = ACTIONS(1889), + [anon_sym_TILDE] = ACTIONS(1889), + [anon_sym_CARET] = ACTIONS(1889), + [anon_sym_AMP] = ACTIONS(1889), + [anon_sym_LT_DASH] = ACTIONS(1889), + [anon_sym_LT_LT] = ACTIONS(1889), + [anon_sym_GT_GT] = ACTIONS(1889), + [anon_sym_GT_GT_GT] = ACTIONS(1889), + [anon_sym_AMP_CARET] = ACTIONS(1889), + [anon_sym_AMP_AMP] = ACTIONS(1889), + [anon_sym_PIPE_PIPE] = ACTIONS(1889), + [anon_sym_or] = ACTIONS(1889), + [sym_none] = ACTIONS(1889), + [sym_true] = ACTIONS(1889), + [sym_false] = ACTIONS(1889), + [sym_nil] = ACTIONS(1889), + [anon_sym_QMARK_DOT] = ACTIONS(1889), + [anon_sym_POUND_LBRACK] = ACTIONS(1889), + [anon_sym_if] = ACTIONS(1889), + [anon_sym_DOLLARif] = ACTIONS(1889), + [anon_sym_is] = ACTIONS(1889), + [anon_sym_BANGis] = ACTIONS(1889), + [anon_sym_in] = ACTIONS(1889), + [anon_sym_BANGin] = ACTIONS(1889), + [anon_sym_match] = ACTIONS(1889), + [anon_sym_select] = ACTIONS(1889), + [anon_sym_lock] = ACTIONS(1889), + [anon_sym_rlock] = ACTIONS(1889), + [anon_sym_unsafe] = ACTIONS(1889), + [anon_sym_sql] = ACTIONS(1889), + [sym_int_literal] = ACTIONS(1889), + [sym_float_literal] = ACTIONS(1889), + [sym_rune_literal] = ACTIONS(1889), + [sym_pseudo_compile_time_identifier] = ACTIONS(1889), + [anon_sym_shared] = ACTIONS(1889), + [anon_sym_map_LBRACK] = ACTIONS(1889), + [anon_sym_chan] = ACTIONS(1889), + [anon_sym_thread] = ACTIONS(1889), + [anon_sym_atomic] = ACTIONS(1889), + [sym___double_quote] = ACTIONS(1889), + [sym___single_quote] = ACTIONS(1889), + [sym___c_double_quote] = ACTIONS(1889), + [sym___c_single_quote] = ACTIONS(1889), + [sym___r_double_quote] = ACTIONS(1889), + [sym___r_single_quote] = ACTIONS(1889), + }, + [1134] = { + [sym_line_comment] = STATE(1134), + [sym_block_comment] = STATE(1134), + [sym_identifier] = ACTIONS(1809), + [anon_sym_LF] = ACTIONS(1809), + [anon_sym_CR] = ACTIONS(1809), + [anon_sym_CR_LF] = ACTIONS(1809), + [anon_sym_SLASH_SLASH] = ACTIONS(497), + [anon_sym_SLASH_STAR] = ACTIONS(499), + [anon_sym_SEMI] = ACTIONS(1809), + [anon_sym_DOT] = ACTIONS(1809), + [anon_sym_as] = ACTIONS(1809), + [anon_sym_LBRACE] = ACTIONS(1809), + [anon_sym_COMMA] = ACTIONS(1809), + [anon_sym_RBRACE] = ACTIONS(1809), + [anon_sym_LPAREN] = ACTIONS(1809), + [anon_sym_RPAREN] = ACTIONS(1809), + [anon_sym_PIPE] = ACTIONS(1809), + [anon_sym_fn] = ACTIONS(1809), + [anon_sym_PLUS] = ACTIONS(1809), + [anon_sym_DASH] = ACTIONS(1809), + [anon_sym_STAR] = ACTIONS(1809), + [anon_sym_SLASH] = ACTIONS(1809), + [anon_sym_PERCENT] = ACTIONS(1809), + [anon_sym_LT] = ACTIONS(1809), + [anon_sym_GT] = ACTIONS(1809), + [anon_sym_EQ_EQ] = ACTIONS(1809), + [anon_sym_BANG_EQ] = ACTIONS(1809), + [anon_sym_LT_EQ] = ACTIONS(1809), + [anon_sym_GT_EQ] = ACTIONS(1809), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1809), + [anon_sym_LBRACK] = ACTIONS(1807), + [anon_sym_struct] = ACTIONS(1809), + [anon_sym_mut] = ACTIONS(1809), + [anon_sym_PLUS_PLUS] = ACTIONS(1809), + [anon_sym_DASH_DASH] = ACTIONS(1809), + [anon_sym_QMARK] = ACTIONS(1809), + [anon_sym_BANG] = ACTIONS(1809), + [anon_sym_go] = ACTIONS(1809), + [anon_sym_spawn] = ACTIONS(1809), + [anon_sym_json_DOTdecode] = ACTIONS(1809), + [anon_sym_LBRACK2] = ACTIONS(1809), + [anon_sym_TILDE] = ACTIONS(1809), + [anon_sym_CARET] = ACTIONS(1809), + [anon_sym_AMP] = ACTIONS(1809), + [anon_sym_LT_DASH] = ACTIONS(1809), + [anon_sym_LT_LT] = ACTIONS(1809), + [anon_sym_GT_GT] = ACTIONS(1809), + [anon_sym_GT_GT_GT] = ACTIONS(1809), + [anon_sym_AMP_CARET] = ACTIONS(1809), + [anon_sym_AMP_AMP] = ACTIONS(1809), + [anon_sym_PIPE_PIPE] = ACTIONS(1809), + [anon_sym_or] = ACTIONS(1809), + [sym_none] = ACTIONS(1809), + [sym_true] = ACTIONS(1809), + [sym_false] = ACTIONS(1809), + [sym_nil] = ACTIONS(1809), + [anon_sym_QMARK_DOT] = ACTIONS(1809), + [anon_sym_POUND_LBRACK] = ACTIONS(1809), + [anon_sym_if] = ACTIONS(1809), + [anon_sym_DOLLARif] = ACTIONS(1809), + [anon_sym_DOLLARelse] = ACTIONS(1809), + [anon_sym_is] = ACTIONS(1809), + [anon_sym_BANGis] = ACTIONS(1809), + [anon_sym_in] = ACTIONS(1809), + [anon_sym_BANGin] = ACTIONS(1809), + [anon_sym_match] = ACTIONS(1809), + [anon_sym_select] = ACTIONS(1809), + [anon_sym_lock] = ACTIONS(1809), + [anon_sym_rlock] = ACTIONS(1809), + [anon_sym_unsafe] = ACTIONS(1809), + [anon_sym_sql] = ACTIONS(1809), + [sym_int_literal] = ACTIONS(1809), + [sym_float_literal] = ACTIONS(1809), + [sym_rune_literal] = ACTIONS(1809), + [sym_pseudo_compile_time_identifier] = ACTIONS(1809), + [anon_sym_shared] = ACTIONS(1809), + [anon_sym_map_LBRACK] = ACTIONS(1809), + [anon_sym_chan] = ACTIONS(1809), + [anon_sym_thread] = ACTIONS(1809), + [anon_sym_atomic] = ACTIONS(1809), + [sym___double_quote] = ACTIONS(1809), + [sym___single_quote] = ACTIONS(1809), + [sym___c_double_quote] = ACTIONS(1809), + [sym___c_single_quote] = ACTIONS(1809), + [sym___r_double_quote] = ACTIONS(1809), + [sym___r_single_quote] = ACTIONS(1809), + }, + [1135] = { + [sym_line_comment] = STATE(1135), + [sym_block_comment] = STATE(1135), + [sym_identifier] = ACTIONS(1813), + [anon_sym_LF] = ACTIONS(1813), + [anon_sym_CR] = ACTIONS(1813), + [anon_sym_CR_LF] = ACTIONS(1813), + [anon_sym_SLASH_SLASH] = ACTIONS(497), + [anon_sym_SLASH_STAR] = ACTIONS(499), + [anon_sym_SEMI] = ACTIONS(1813), + [anon_sym_DOT] = ACTIONS(1813), + [anon_sym_as] = ACTIONS(1813), + [anon_sym_LBRACE] = ACTIONS(1813), + [anon_sym_COMMA] = ACTIONS(1813), + [anon_sym_RBRACE] = ACTIONS(1813), + [anon_sym_LPAREN] = ACTIONS(1813), + [anon_sym_RPAREN] = ACTIONS(1813), + [anon_sym_PIPE] = ACTIONS(1813), + [anon_sym_fn] = ACTIONS(1813), + [anon_sym_PLUS] = ACTIONS(1813), + [anon_sym_DASH] = ACTIONS(1813), + [anon_sym_STAR] = ACTIONS(1813), + [anon_sym_SLASH] = ACTIONS(1813), + [anon_sym_PERCENT] = ACTIONS(1813), + [anon_sym_LT] = ACTIONS(1813), + [anon_sym_GT] = ACTIONS(1813), + [anon_sym_EQ_EQ] = ACTIONS(1813), + [anon_sym_BANG_EQ] = ACTIONS(1813), + [anon_sym_LT_EQ] = ACTIONS(1813), + [anon_sym_GT_EQ] = ACTIONS(1813), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1813), + [anon_sym_LBRACK] = ACTIONS(1811), + [anon_sym_struct] = ACTIONS(1813), + [anon_sym_mut] = ACTIONS(1813), + [anon_sym_PLUS_PLUS] = ACTIONS(1813), + [anon_sym_DASH_DASH] = ACTIONS(1813), + [anon_sym_QMARK] = ACTIONS(1813), + [anon_sym_BANG] = ACTIONS(1813), + [anon_sym_go] = ACTIONS(1813), + [anon_sym_spawn] = ACTIONS(1813), + [anon_sym_json_DOTdecode] = ACTIONS(1813), + [anon_sym_LBRACK2] = ACTIONS(1813), + [anon_sym_TILDE] = ACTIONS(1813), + [anon_sym_CARET] = ACTIONS(1813), + [anon_sym_AMP] = ACTIONS(1813), + [anon_sym_LT_DASH] = ACTIONS(1813), + [anon_sym_LT_LT] = ACTIONS(1813), + [anon_sym_GT_GT] = ACTIONS(1813), + [anon_sym_GT_GT_GT] = ACTIONS(1813), + [anon_sym_AMP_CARET] = ACTIONS(1813), + [anon_sym_AMP_AMP] = ACTIONS(1813), + [anon_sym_PIPE_PIPE] = ACTIONS(1813), + [anon_sym_or] = ACTIONS(1813), + [sym_none] = ACTIONS(1813), + [sym_true] = ACTIONS(1813), + [sym_false] = ACTIONS(1813), + [sym_nil] = ACTIONS(1813), + [anon_sym_QMARK_DOT] = ACTIONS(1813), + [anon_sym_POUND_LBRACK] = ACTIONS(1813), + [anon_sym_if] = ACTIONS(1813), + [anon_sym_DOLLARif] = ACTIONS(1813), + [anon_sym_DOLLARelse] = ACTIONS(1813), + [anon_sym_is] = ACTIONS(1813), + [anon_sym_BANGis] = ACTIONS(1813), + [anon_sym_in] = ACTIONS(1813), + [anon_sym_BANGin] = ACTIONS(1813), + [anon_sym_match] = ACTIONS(1813), + [anon_sym_select] = ACTIONS(1813), + [anon_sym_lock] = ACTIONS(1813), + [anon_sym_rlock] = ACTIONS(1813), + [anon_sym_unsafe] = ACTIONS(1813), + [anon_sym_sql] = ACTIONS(1813), + [sym_int_literal] = ACTIONS(1813), + [sym_float_literal] = ACTIONS(1813), + [sym_rune_literal] = ACTIONS(1813), + [sym_pseudo_compile_time_identifier] = ACTIONS(1813), + [anon_sym_shared] = ACTIONS(1813), + [anon_sym_map_LBRACK] = ACTIONS(1813), + [anon_sym_chan] = ACTIONS(1813), + [anon_sym_thread] = ACTIONS(1813), + [anon_sym_atomic] = ACTIONS(1813), + [sym___double_quote] = ACTIONS(1813), + [sym___single_quote] = ACTIONS(1813), + [sym___c_double_quote] = ACTIONS(1813), + [sym___c_single_quote] = ACTIONS(1813), + [sym___r_double_quote] = ACTIONS(1813), + [sym___r_single_quote] = ACTIONS(1813), + }, + [1136] = { + [sym_line_comment] = STATE(1136), + [sym_block_comment] = STATE(1136), + [sym_identifier] = ACTIONS(1913), + [anon_sym_LF] = ACTIONS(1913), + [anon_sym_CR] = ACTIONS(1913), + [anon_sym_CR_LF] = ACTIONS(1913), + [anon_sym_SLASH_SLASH] = ACTIONS(497), + [anon_sym_SLASH_STAR] = ACTIONS(499), + [anon_sym_SEMI] = ACTIONS(1913), + [anon_sym_DOT] = ACTIONS(1913), + [anon_sym_as] = ACTIONS(1913), + [anon_sym_LBRACE] = ACTIONS(1913), + [anon_sym_COMMA] = ACTIONS(1913), + [anon_sym_RBRACE] = ACTIONS(1913), + [anon_sym_LPAREN] = ACTIONS(1913), + [anon_sym_RPAREN] = ACTIONS(1913), + [anon_sym_PIPE] = ACTIONS(1913), + [anon_sym_fn] = ACTIONS(1913), + [anon_sym_PLUS] = ACTIONS(1913), + [anon_sym_DASH] = ACTIONS(1913), + [anon_sym_STAR] = ACTIONS(1913), + [anon_sym_SLASH] = ACTIONS(1913), + [anon_sym_PERCENT] = ACTIONS(1913), + [anon_sym_LT] = ACTIONS(1913), + [anon_sym_GT] = ACTIONS(1913), + [anon_sym_EQ_EQ] = ACTIONS(1913), + [anon_sym_BANG_EQ] = ACTIONS(1913), + [anon_sym_LT_EQ] = ACTIONS(1913), + [anon_sym_GT_EQ] = ACTIONS(1913), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1913), + [anon_sym_LBRACK] = ACTIONS(1911), + [anon_sym_struct] = ACTIONS(1913), + [anon_sym_mut] = ACTIONS(1913), + [anon_sym_PLUS_PLUS] = ACTIONS(1913), + [anon_sym_DASH_DASH] = ACTIONS(1913), + [anon_sym_QMARK] = ACTIONS(1913), + [anon_sym_BANG] = ACTIONS(1913), + [anon_sym_go] = ACTIONS(1913), + [anon_sym_spawn] = ACTIONS(1913), + [anon_sym_json_DOTdecode] = ACTIONS(1913), + [anon_sym_LBRACK2] = ACTIONS(1913), + [anon_sym_TILDE] = ACTIONS(1913), + [anon_sym_CARET] = ACTIONS(1913), + [anon_sym_AMP] = ACTIONS(1913), + [anon_sym_LT_DASH] = ACTIONS(1913), + [anon_sym_LT_LT] = ACTIONS(1913), + [anon_sym_GT_GT] = ACTIONS(1913), + [anon_sym_GT_GT_GT] = ACTIONS(1913), + [anon_sym_AMP_CARET] = ACTIONS(1913), + [anon_sym_AMP_AMP] = ACTIONS(1913), + [anon_sym_PIPE_PIPE] = ACTIONS(1913), + [anon_sym_or] = ACTIONS(1913), + [sym_none] = ACTIONS(1913), + [sym_true] = ACTIONS(1913), + [sym_false] = ACTIONS(1913), + [sym_nil] = ACTIONS(1913), + [anon_sym_QMARK_DOT] = ACTIONS(1913), + [anon_sym_POUND_LBRACK] = ACTIONS(1913), + [anon_sym_if] = ACTIONS(1913), + [anon_sym_DOLLARif] = ACTIONS(1913), + [anon_sym_DOLLARelse] = ACTIONS(3740), + [anon_sym_is] = ACTIONS(1913), + [anon_sym_BANGis] = ACTIONS(1913), + [anon_sym_in] = ACTIONS(1913), + [anon_sym_BANGin] = ACTIONS(1913), + [anon_sym_match] = ACTIONS(1913), + [anon_sym_select] = ACTIONS(1913), + [anon_sym_lock] = ACTIONS(1913), + [anon_sym_rlock] = ACTIONS(1913), + [anon_sym_unsafe] = ACTIONS(1913), + [anon_sym_sql] = ACTIONS(1913), + [sym_int_literal] = ACTIONS(1913), + [sym_float_literal] = ACTIONS(1913), + [sym_rune_literal] = ACTIONS(1913), + [sym_pseudo_compile_time_identifier] = ACTIONS(1913), + [anon_sym_shared] = ACTIONS(1913), + [anon_sym_map_LBRACK] = ACTIONS(1913), + [anon_sym_chan] = ACTIONS(1913), + [anon_sym_thread] = ACTIONS(1913), + [anon_sym_atomic] = ACTIONS(1913), + [sym___double_quote] = ACTIONS(1913), + [sym___single_quote] = ACTIONS(1913), + [sym___c_double_quote] = ACTIONS(1913), + [sym___c_single_quote] = ACTIONS(1913), + [sym___r_double_quote] = ACTIONS(1913), + [sym___r_single_quote] = ACTIONS(1913), + }, + [1137] = { + [sym_line_comment] = STATE(1137), + [sym_block_comment] = STATE(1137), + [sym_type_parameters] = STATE(4199), + [sym_argument_list] = STATE(1208), + [sym_or_block] = STATE(1207), + [sym_identifier] = ACTIONS(3742), + [anon_sym_LF] = ACTIONS(3742), + [anon_sym_CR] = ACTIONS(3742), + [anon_sym_CR_LF] = ACTIONS(3742), + [anon_sym_SLASH_SLASH] = ACTIONS(497), + [anon_sym_SLASH_STAR] = ACTIONS(499), + [anon_sym_SEMI] = ACTIONS(3742), + [anon_sym_DOT] = ACTIONS(3660), + [anon_sym_as] = ACTIONS(3662), + [anon_sym_LBRACE] = ACTIONS(3742), + [anon_sym_COMMA] = ACTIONS(3742), + [anon_sym_RBRACE] = ACTIONS(3742), + [anon_sym_LPAREN] = ACTIONS(3664), + [anon_sym_PIPE] = ACTIONS(3666), + [anon_sym_fn] = ACTIONS(3742), + [anon_sym_PLUS] = ACTIONS(3666), + [anon_sym_DASH] = ACTIONS(3666), + [anon_sym_STAR] = ACTIONS(3668), + [anon_sym_SLASH] = ACTIONS(3668), + [anon_sym_PERCENT] = ACTIONS(3668), + [anon_sym_LT] = ACTIONS(3670), + [anon_sym_GT] = ACTIONS(3670), + [anon_sym_EQ_EQ] = ACTIONS(3670), + [anon_sym_BANG_EQ] = ACTIONS(3670), + [anon_sym_LT_EQ] = ACTIONS(3670), + [anon_sym_GT_EQ] = ACTIONS(3670), + [anon_sym_LBRACK] = ACTIONS(3672), + [anon_sym_struct] = ACTIONS(3742), + [anon_sym_mut] = ACTIONS(3742), + [anon_sym_PLUS_PLUS] = ACTIONS(3674), + [anon_sym_DASH_DASH] = ACTIONS(3676), + [anon_sym_QMARK] = ACTIONS(3678), + [anon_sym_BANG] = ACTIONS(3680), + [anon_sym_go] = ACTIONS(3742), + [anon_sym_spawn] = ACTIONS(3742), + [anon_sym_json_DOTdecode] = ACTIONS(3742), + [anon_sym_LBRACK2] = ACTIONS(3682), + [anon_sym_TILDE] = ACTIONS(3742), + [anon_sym_CARET] = ACTIONS(3666), + [anon_sym_AMP] = ACTIONS(3668), + [anon_sym_LT_DASH] = ACTIONS(3742), + [anon_sym_LT_LT] = ACTIONS(3668), + [anon_sym_GT_GT] = ACTIONS(3668), + [anon_sym_GT_GT_GT] = ACTIONS(3668), + [anon_sym_AMP_CARET] = ACTIONS(3668), + [anon_sym_AMP_AMP] = ACTIONS(3684), + [anon_sym_PIPE_PIPE] = ACTIONS(3686), + [anon_sym_or] = ACTIONS(3688), + [sym_none] = ACTIONS(3742), + [sym_true] = ACTIONS(3742), + [sym_false] = ACTIONS(3742), + [sym_nil] = ACTIONS(3742), + [anon_sym_QMARK_DOT] = ACTIONS(3660), + [anon_sym_POUND_LBRACK] = ACTIONS(3682), + [anon_sym_if] = ACTIONS(3742), + [anon_sym_DOLLARif] = ACTIONS(3742), + [anon_sym_is] = ACTIONS(3690), + [anon_sym_BANGis] = ACTIONS(3690), + [anon_sym_in] = ACTIONS(3692), + [anon_sym_BANGin] = ACTIONS(3692), + [anon_sym_match] = ACTIONS(3742), + [anon_sym_select] = ACTIONS(3742), + [anon_sym_lock] = ACTIONS(3742), + [anon_sym_rlock] = ACTIONS(3742), + [anon_sym_unsafe] = ACTIONS(3742), + [anon_sym_sql] = ACTIONS(3742), + [sym_int_literal] = ACTIONS(3742), + [sym_float_literal] = ACTIONS(3742), + [sym_rune_literal] = ACTIONS(3742), + [sym_pseudo_compile_time_identifier] = ACTIONS(3742), + [anon_sym_shared] = ACTIONS(3742), + [anon_sym_map_LBRACK] = ACTIONS(3742), + [anon_sym_chan] = ACTIONS(3742), + [anon_sym_thread] = ACTIONS(3742), + [anon_sym_atomic] = ACTIONS(3742), + [sym___double_quote] = ACTIONS(3742), + [sym___single_quote] = ACTIONS(3742), + [sym___c_double_quote] = ACTIONS(3742), + [sym___c_single_quote] = ACTIONS(3742), + [sym___r_double_quote] = ACTIONS(3742), + [sym___r_single_quote] = ACTIONS(3742), + }, + [1138] = { + [sym_line_comment] = STATE(1138), + [sym_block_comment] = STATE(1138), + [sym_identifier] = ACTIONS(2924), + [anon_sym_LF] = ACTIONS(2924), + [anon_sym_CR] = ACTIONS(2924), + [anon_sym_CR_LF] = ACTIONS(2924), + [anon_sym_SLASH_SLASH] = ACTIONS(497), + [anon_sym_SLASH_STAR] = ACTIONS(499), + [anon_sym_SEMI] = ACTIONS(2924), + [anon_sym_DOT] = ACTIONS(2924), + [anon_sym_as] = ACTIONS(2924), + [anon_sym_LBRACE] = ACTIONS(2924), + [anon_sym_COMMA] = ACTIONS(2924), + [anon_sym_RBRACE] = ACTIONS(2924), + [anon_sym_LPAREN] = ACTIONS(2924), + [anon_sym_RPAREN] = ACTIONS(2924), + [anon_sym_PIPE] = ACTIONS(2924), + [anon_sym_fn] = ACTIONS(2924), + [anon_sym_PLUS] = ACTIONS(2924), + [anon_sym_DASH] = ACTIONS(2924), + [anon_sym_STAR] = ACTIONS(2924), + [anon_sym_SLASH] = ACTIONS(2924), + [anon_sym_PERCENT] = ACTIONS(2924), + [anon_sym_LT] = ACTIONS(2924), + [anon_sym_GT] = ACTIONS(2924), + [anon_sym_EQ_EQ] = ACTIONS(2924), + [anon_sym_BANG_EQ] = ACTIONS(2924), + [anon_sym_LT_EQ] = ACTIONS(2924), + [anon_sym_GT_EQ] = ACTIONS(2924), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2924), + [anon_sym_LBRACK] = ACTIONS(2922), + [anon_sym_struct] = ACTIONS(2924), + [anon_sym_mut] = ACTIONS(2924), + [anon_sym_PLUS_PLUS] = ACTIONS(2924), + [anon_sym_DASH_DASH] = ACTIONS(2924), + [anon_sym_QMARK] = ACTIONS(2924), + [anon_sym_BANG] = ACTIONS(2924), + [anon_sym_go] = ACTIONS(2924), + [anon_sym_spawn] = ACTIONS(2924), + [anon_sym_json_DOTdecode] = ACTIONS(2924), + [anon_sym_LBRACK2] = ACTIONS(2924), + [anon_sym_TILDE] = ACTIONS(2924), + [anon_sym_CARET] = ACTIONS(2924), + [anon_sym_AMP] = ACTIONS(2924), + [anon_sym_LT_DASH] = ACTIONS(2924), + [anon_sym_LT_LT] = ACTIONS(2924), + [anon_sym_GT_GT] = ACTIONS(2924), + [anon_sym_GT_GT_GT] = ACTIONS(2924), + [anon_sym_AMP_CARET] = ACTIONS(2924), + [anon_sym_AMP_AMP] = ACTIONS(2924), + [anon_sym_PIPE_PIPE] = ACTIONS(2924), + [anon_sym_or] = ACTIONS(2924), + [sym_none] = ACTIONS(2924), + [sym_true] = ACTIONS(2924), + [sym_false] = ACTIONS(2924), + [sym_nil] = ACTIONS(2924), + [anon_sym_QMARK_DOT] = ACTIONS(2924), + [anon_sym_POUND_LBRACK] = ACTIONS(2924), + [anon_sym_if] = ACTIONS(2924), + [anon_sym_DOLLARif] = ACTIONS(2924), + [anon_sym_is] = ACTIONS(2924), + [anon_sym_BANGis] = ACTIONS(2924), + [anon_sym_in] = ACTIONS(2924), + [anon_sym_BANGin] = ACTIONS(2924), + [anon_sym_match] = ACTIONS(2924), + [anon_sym_select] = ACTIONS(2924), + [anon_sym_lock] = ACTIONS(2924), + [anon_sym_rlock] = ACTIONS(2924), + [anon_sym_unsafe] = ACTIONS(2924), + [anon_sym_sql] = ACTIONS(2924), + [sym_int_literal] = ACTIONS(2924), + [sym_float_literal] = ACTIONS(2924), + [sym_rune_literal] = ACTIONS(2924), + [sym_pseudo_compile_time_identifier] = ACTIONS(2924), + [anon_sym_shared] = ACTIONS(2924), + [anon_sym_map_LBRACK] = ACTIONS(2924), + [anon_sym_chan] = ACTIONS(2924), + [anon_sym_thread] = ACTIONS(2924), + [anon_sym_atomic] = ACTIONS(2924), + [sym___double_quote] = ACTIONS(2924), + [sym___single_quote] = ACTIONS(2924), + [sym___c_double_quote] = ACTIONS(2924), + [sym___c_single_quote] = ACTIONS(2924), + [sym___r_double_quote] = ACTIONS(2924), + [sym___r_single_quote] = ACTIONS(2924), + }, + [1139] = { + [sym_line_comment] = STATE(1139), + [sym_block_comment] = STATE(1139), + [sym_identifier] = ACTIONS(2475), + [anon_sym_LF] = ACTIONS(2475), + [anon_sym_CR] = ACTIONS(2475), + [anon_sym_CR_LF] = ACTIONS(2475), + [anon_sym_SLASH_SLASH] = ACTIONS(497), + [anon_sym_SLASH_STAR] = ACTIONS(499), + [anon_sym_SEMI] = ACTIONS(2475), + [anon_sym_DOT] = ACTIONS(1891), + [anon_sym_as] = ACTIONS(2475), + [anon_sym_LBRACE] = ACTIONS(2475), + [anon_sym_COMMA] = ACTIONS(2475), + [anon_sym_RBRACE] = ACTIONS(2475), + [anon_sym_LPAREN] = ACTIONS(2475), + [anon_sym_RPAREN] = ACTIONS(2475), + [anon_sym_PIPE] = ACTIONS(2475), + [anon_sym_fn] = ACTIONS(2475), + [anon_sym_PLUS] = ACTIONS(2475), + [anon_sym_DASH] = ACTIONS(2475), + [anon_sym_STAR] = ACTIONS(2475), + [anon_sym_SLASH] = ACTIONS(2475), + [anon_sym_PERCENT] = ACTIONS(2475), + [anon_sym_LT] = ACTIONS(2475), + [anon_sym_GT] = ACTIONS(2475), + [anon_sym_EQ_EQ] = ACTIONS(2475), + [anon_sym_BANG_EQ] = ACTIONS(2475), + [anon_sym_LT_EQ] = ACTIONS(2475), + [anon_sym_GT_EQ] = ACTIONS(2475), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2475), + [anon_sym_LBRACK] = ACTIONS(2473), + [anon_sym_struct] = ACTIONS(2475), + [anon_sym_mut] = ACTIONS(2475), + [anon_sym_PLUS_PLUS] = ACTIONS(2475), + [anon_sym_DASH_DASH] = ACTIONS(2475), + [anon_sym_QMARK] = ACTIONS(2475), + [anon_sym_BANG] = ACTIONS(2475), + [anon_sym_go] = ACTIONS(2475), + [anon_sym_spawn] = ACTIONS(2475), + [anon_sym_json_DOTdecode] = ACTIONS(2475), + [anon_sym_LBRACK2] = ACTIONS(2475), + [anon_sym_TILDE] = ACTIONS(2475), + [anon_sym_CARET] = ACTIONS(2475), + [anon_sym_AMP] = ACTIONS(2475), + [anon_sym_LT_DASH] = ACTIONS(2475), + [anon_sym_LT_LT] = ACTIONS(2475), + [anon_sym_GT_GT] = ACTIONS(2475), + [anon_sym_GT_GT_GT] = ACTIONS(2475), + [anon_sym_AMP_CARET] = ACTIONS(2475), + [anon_sym_AMP_AMP] = ACTIONS(2475), + [anon_sym_PIPE_PIPE] = ACTIONS(2475), + [anon_sym_or] = ACTIONS(2475), + [sym_none] = ACTIONS(2475), + [sym_true] = ACTIONS(2475), + [sym_false] = ACTIONS(2475), + [sym_nil] = ACTIONS(2475), + [anon_sym_QMARK_DOT] = ACTIONS(2475), + [anon_sym_POUND_LBRACK] = ACTIONS(2475), + [anon_sym_if] = ACTIONS(2475), + [anon_sym_DOLLARif] = ACTIONS(2475), + [anon_sym_is] = ACTIONS(2475), + [anon_sym_BANGis] = ACTIONS(2475), + [anon_sym_in] = ACTIONS(2475), + [anon_sym_BANGin] = ACTIONS(2475), + [anon_sym_match] = ACTIONS(2475), + [anon_sym_select] = ACTIONS(2475), + [anon_sym_lock] = ACTIONS(2475), + [anon_sym_rlock] = ACTIONS(2475), + [anon_sym_unsafe] = ACTIONS(2475), + [anon_sym_sql] = ACTIONS(2475), + [sym_int_literal] = ACTIONS(2475), + [sym_float_literal] = ACTIONS(2475), + [sym_rune_literal] = ACTIONS(2475), + [sym_pseudo_compile_time_identifier] = ACTIONS(2475), + [anon_sym_shared] = ACTIONS(2475), + [anon_sym_map_LBRACK] = ACTIONS(2475), + [anon_sym_chan] = ACTIONS(2475), + [anon_sym_thread] = ACTIONS(2475), + [anon_sym_atomic] = ACTIONS(2475), + [sym___double_quote] = ACTIONS(2475), + [sym___single_quote] = ACTIONS(2475), + [sym___c_double_quote] = ACTIONS(2475), + [sym___c_single_quote] = ACTIONS(2475), + [sym___r_double_quote] = ACTIONS(2475), + [sym___r_single_quote] = ACTIONS(2475), + }, + [1140] = { + [sym_line_comment] = STATE(1140), + [sym_block_comment] = STATE(1140), + [sym_identifier] = ACTIONS(2870), + [anon_sym_LF] = ACTIONS(2870), + [anon_sym_CR] = ACTIONS(2870), + [anon_sym_CR_LF] = ACTIONS(2870), + [anon_sym_SLASH_SLASH] = ACTIONS(497), + [anon_sym_SLASH_STAR] = ACTIONS(499), + [anon_sym_SEMI] = ACTIONS(2870), + [anon_sym_DOT] = ACTIONS(2870), + [anon_sym_as] = ACTIONS(2870), + [anon_sym_LBRACE] = ACTIONS(2870), + [anon_sym_COMMA] = ACTIONS(2870), + [anon_sym_RBRACE] = ACTIONS(2870), + [anon_sym_LPAREN] = ACTIONS(2870), + [anon_sym_RPAREN] = ACTIONS(2870), + [anon_sym_PIPE] = ACTIONS(2870), + [anon_sym_fn] = ACTIONS(2870), + [anon_sym_PLUS] = ACTIONS(2870), + [anon_sym_DASH] = ACTIONS(2870), + [anon_sym_STAR] = ACTIONS(2870), + [anon_sym_SLASH] = ACTIONS(2870), + [anon_sym_PERCENT] = ACTIONS(2870), + [anon_sym_LT] = ACTIONS(2870), + [anon_sym_GT] = ACTIONS(2870), + [anon_sym_EQ_EQ] = ACTIONS(2870), + [anon_sym_BANG_EQ] = ACTIONS(2870), + [anon_sym_LT_EQ] = ACTIONS(2870), + [anon_sym_GT_EQ] = ACTIONS(2870), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2870), + [anon_sym_LBRACK] = ACTIONS(2868), + [anon_sym_struct] = ACTIONS(2870), + [anon_sym_mut] = ACTIONS(2870), + [anon_sym_PLUS_PLUS] = ACTIONS(2870), + [anon_sym_DASH_DASH] = ACTIONS(2870), + [anon_sym_QMARK] = ACTIONS(2870), + [anon_sym_BANG] = ACTIONS(2870), + [anon_sym_go] = ACTIONS(2870), + [anon_sym_spawn] = ACTIONS(2870), + [anon_sym_json_DOTdecode] = ACTIONS(2870), + [anon_sym_LBRACK2] = ACTIONS(2870), + [anon_sym_TILDE] = ACTIONS(2870), + [anon_sym_CARET] = ACTIONS(2870), + [anon_sym_AMP] = ACTIONS(2870), + [anon_sym_LT_DASH] = ACTIONS(2870), + [anon_sym_LT_LT] = ACTIONS(2870), + [anon_sym_GT_GT] = ACTIONS(2870), + [anon_sym_GT_GT_GT] = ACTIONS(2870), + [anon_sym_AMP_CARET] = ACTIONS(2870), + [anon_sym_AMP_AMP] = ACTIONS(2870), + [anon_sym_PIPE_PIPE] = ACTIONS(2870), + [anon_sym_or] = ACTIONS(2870), + [sym_none] = ACTIONS(2870), + [sym_true] = ACTIONS(2870), + [sym_false] = ACTIONS(2870), + [sym_nil] = ACTIONS(2870), + [anon_sym_QMARK_DOT] = ACTIONS(2870), + [anon_sym_POUND_LBRACK] = ACTIONS(2870), + [anon_sym_if] = ACTIONS(2870), + [anon_sym_DOLLARif] = ACTIONS(2870), + [anon_sym_is] = ACTIONS(2870), + [anon_sym_BANGis] = ACTIONS(2870), + [anon_sym_in] = ACTIONS(2870), + [anon_sym_BANGin] = ACTIONS(2870), + [anon_sym_match] = ACTIONS(2870), + [anon_sym_select] = ACTIONS(2870), + [anon_sym_lock] = ACTIONS(2870), + [anon_sym_rlock] = ACTIONS(2870), + [anon_sym_unsafe] = ACTIONS(2870), + [anon_sym_sql] = ACTIONS(2870), + [sym_int_literal] = ACTIONS(2870), + [sym_float_literal] = ACTIONS(2870), + [sym_rune_literal] = ACTIONS(2870), + [sym_pseudo_compile_time_identifier] = ACTIONS(2870), + [anon_sym_shared] = ACTIONS(2870), + [anon_sym_map_LBRACK] = ACTIONS(2870), + [anon_sym_chan] = ACTIONS(2870), + [anon_sym_thread] = ACTIONS(2870), + [anon_sym_atomic] = ACTIONS(2870), + [sym___double_quote] = ACTIONS(2870), + [sym___single_quote] = ACTIONS(2870), + [sym___c_double_quote] = ACTIONS(2870), + [sym___c_single_quote] = ACTIONS(2870), + [sym___r_double_quote] = ACTIONS(2870), + [sym___r_single_quote] = ACTIONS(2870), + }, + [1141] = { + [sym_line_comment] = STATE(1141), + [sym_block_comment] = STATE(1141), + [sym_identifier] = ACTIONS(2812), + [anon_sym_LF] = ACTIONS(2812), + [anon_sym_CR] = ACTIONS(2812), + [anon_sym_CR_LF] = ACTIONS(2812), + [anon_sym_SLASH_SLASH] = ACTIONS(497), + [anon_sym_SLASH_STAR] = ACTIONS(499), + [anon_sym_SEMI] = ACTIONS(2812), + [anon_sym_DOT] = ACTIONS(2812), + [anon_sym_as] = ACTIONS(2812), + [anon_sym_LBRACE] = ACTIONS(2812), + [anon_sym_COMMA] = ACTIONS(2812), + [anon_sym_RBRACE] = ACTIONS(2812), + [anon_sym_LPAREN] = ACTIONS(2812), + [anon_sym_RPAREN] = ACTIONS(2812), + [anon_sym_PIPE] = ACTIONS(2812), + [anon_sym_fn] = ACTIONS(2812), + [anon_sym_PLUS] = ACTIONS(2812), + [anon_sym_DASH] = ACTIONS(2812), + [anon_sym_STAR] = ACTIONS(2812), + [anon_sym_SLASH] = ACTIONS(2812), + [anon_sym_PERCENT] = ACTIONS(2812), + [anon_sym_LT] = ACTIONS(2812), + [anon_sym_GT] = ACTIONS(2812), + [anon_sym_EQ_EQ] = ACTIONS(2812), + [anon_sym_BANG_EQ] = ACTIONS(2812), + [anon_sym_LT_EQ] = ACTIONS(2812), + [anon_sym_GT_EQ] = ACTIONS(2812), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2812), + [anon_sym_LBRACK] = ACTIONS(2810), + [anon_sym_struct] = ACTIONS(2812), + [anon_sym_mut] = ACTIONS(2812), + [anon_sym_PLUS_PLUS] = ACTIONS(2812), + [anon_sym_DASH_DASH] = ACTIONS(2812), + [anon_sym_QMARK] = ACTIONS(2812), + [anon_sym_BANG] = ACTIONS(2812), + [anon_sym_go] = ACTIONS(2812), + [anon_sym_spawn] = ACTIONS(2812), + [anon_sym_json_DOTdecode] = ACTIONS(2812), + [anon_sym_LBRACK2] = ACTIONS(2812), + [anon_sym_TILDE] = ACTIONS(2812), + [anon_sym_CARET] = ACTIONS(2812), + [anon_sym_AMP] = ACTIONS(2812), + [anon_sym_LT_DASH] = ACTIONS(2812), + [anon_sym_LT_LT] = ACTIONS(2812), + [anon_sym_GT_GT] = ACTIONS(2812), + [anon_sym_GT_GT_GT] = ACTIONS(2812), + [anon_sym_AMP_CARET] = ACTIONS(2812), + [anon_sym_AMP_AMP] = ACTIONS(2812), + [anon_sym_PIPE_PIPE] = ACTIONS(2812), + [anon_sym_or] = ACTIONS(2812), + [sym_none] = ACTIONS(2812), + [sym_true] = ACTIONS(2812), + [sym_false] = ACTIONS(2812), + [sym_nil] = ACTIONS(2812), + [anon_sym_QMARK_DOT] = ACTIONS(2812), + [anon_sym_POUND_LBRACK] = ACTIONS(2812), + [anon_sym_if] = ACTIONS(2812), + [anon_sym_DOLLARif] = ACTIONS(2812), + [anon_sym_is] = ACTIONS(2812), + [anon_sym_BANGis] = ACTIONS(2812), + [anon_sym_in] = ACTIONS(2812), + [anon_sym_BANGin] = ACTIONS(2812), + [anon_sym_match] = ACTIONS(2812), + [anon_sym_select] = ACTIONS(2812), + [anon_sym_lock] = ACTIONS(2812), + [anon_sym_rlock] = ACTIONS(2812), + [anon_sym_unsafe] = ACTIONS(2812), + [anon_sym_sql] = ACTIONS(2812), + [sym_int_literal] = ACTIONS(2812), + [sym_float_literal] = ACTIONS(2812), + [sym_rune_literal] = ACTIONS(2812), + [sym_pseudo_compile_time_identifier] = ACTIONS(2812), + [anon_sym_shared] = ACTIONS(2812), + [anon_sym_map_LBRACK] = ACTIONS(2812), + [anon_sym_chan] = ACTIONS(2812), + [anon_sym_thread] = ACTIONS(2812), + [anon_sym_atomic] = ACTIONS(2812), + [sym___double_quote] = ACTIONS(2812), + [sym___single_quote] = ACTIONS(2812), + [sym___c_double_quote] = ACTIONS(2812), + [sym___c_single_quote] = ACTIONS(2812), + [sym___r_double_quote] = ACTIONS(2812), + [sym___r_single_quote] = ACTIONS(2812), + }, + [1142] = { + [sym_line_comment] = STATE(1142), + [sym_block_comment] = STATE(1142), + [sym_identifier] = ACTIONS(2542), + [anon_sym_LF] = ACTIONS(2542), + [anon_sym_CR] = ACTIONS(2542), + [anon_sym_CR_LF] = ACTIONS(2542), + [anon_sym_SLASH_SLASH] = ACTIONS(497), + [anon_sym_SLASH_STAR] = ACTIONS(499), + [anon_sym_SEMI] = ACTIONS(2542), + [anon_sym_DOT] = ACTIONS(2542), + [anon_sym_as] = ACTIONS(2542), + [anon_sym_LBRACE] = ACTIONS(2542), + [anon_sym_COMMA] = ACTIONS(2542), + [anon_sym_RBRACE] = ACTIONS(2542), + [anon_sym_LPAREN] = ACTIONS(2542), + [anon_sym_RPAREN] = ACTIONS(2542), + [anon_sym_PIPE] = ACTIONS(2542), + [anon_sym_fn] = ACTIONS(2542), + [anon_sym_PLUS] = ACTIONS(2542), + [anon_sym_DASH] = ACTIONS(2542), + [anon_sym_STAR] = ACTIONS(2542), + [anon_sym_SLASH] = ACTIONS(2542), + [anon_sym_PERCENT] = ACTIONS(2542), + [anon_sym_LT] = ACTIONS(2542), + [anon_sym_GT] = ACTIONS(2542), + [anon_sym_EQ_EQ] = ACTIONS(2542), + [anon_sym_BANG_EQ] = ACTIONS(2542), + [anon_sym_LT_EQ] = ACTIONS(2542), + [anon_sym_GT_EQ] = ACTIONS(2542), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2542), + [anon_sym_LBRACK] = ACTIONS(2540), + [anon_sym_struct] = ACTIONS(2542), + [anon_sym_mut] = ACTIONS(2542), + [anon_sym_PLUS_PLUS] = ACTIONS(2542), + [anon_sym_DASH_DASH] = ACTIONS(2542), + [anon_sym_QMARK] = ACTIONS(2542), + [anon_sym_BANG] = ACTIONS(3744), + [anon_sym_go] = ACTIONS(2542), + [anon_sym_spawn] = ACTIONS(2542), + [anon_sym_json_DOTdecode] = ACTIONS(2542), + [anon_sym_LBRACK2] = ACTIONS(2542), + [anon_sym_TILDE] = ACTIONS(2542), + [anon_sym_CARET] = ACTIONS(2542), + [anon_sym_AMP] = ACTIONS(2542), + [anon_sym_LT_DASH] = ACTIONS(2542), + [anon_sym_LT_LT] = ACTIONS(2542), + [anon_sym_GT_GT] = ACTIONS(2542), + [anon_sym_GT_GT_GT] = ACTIONS(2542), + [anon_sym_AMP_CARET] = ACTIONS(2542), + [anon_sym_AMP_AMP] = ACTIONS(2542), + [anon_sym_PIPE_PIPE] = ACTIONS(2542), + [anon_sym_or] = ACTIONS(2542), + [sym_none] = ACTIONS(2542), + [sym_true] = ACTIONS(2542), + [sym_false] = ACTIONS(2542), + [sym_nil] = ACTIONS(2542), + [anon_sym_QMARK_DOT] = ACTIONS(2542), + [anon_sym_POUND_LBRACK] = ACTIONS(2542), + [anon_sym_if] = ACTIONS(2542), + [anon_sym_DOLLARif] = ACTIONS(2542), + [anon_sym_is] = ACTIONS(2542), + [anon_sym_BANGis] = ACTIONS(2542), + [anon_sym_in] = ACTIONS(2542), + [anon_sym_BANGin] = ACTIONS(2542), + [anon_sym_match] = ACTIONS(2542), + [anon_sym_select] = ACTIONS(2542), + [anon_sym_lock] = ACTIONS(2542), + [anon_sym_rlock] = ACTIONS(2542), + [anon_sym_unsafe] = ACTIONS(2542), + [anon_sym_sql] = ACTIONS(2542), + [sym_int_literal] = ACTIONS(2542), + [sym_float_literal] = ACTIONS(2542), + [sym_rune_literal] = ACTIONS(2542), + [sym_pseudo_compile_time_identifier] = ACTIONS(2542), + [anon_sym_shared] = ACTIONS(2542), + [anon_sym_map_LBRACK] = ACTIONS(2542), + [anon_sym_chan] = ACTIONS(2542), + [anon_sym_thread] = ACTIONS(2542), + [anon_sym_atomic] = ACTIONS(2542), + [sym___double_quote] = ACTIONS(2542), + [sym___single_quote] = ACTIONS(2542), + [sym___c_double_quote] = ACTIONS(2542), + [sym___c_single_quote] = ACTIONS(2542), + [sym___r_double_quote] = ACTIONS(2542), + [sym___r_single_quote] = ACTIONS(2542), + }, + [1143] = { + [sym_line_comment] = STATE(1143), + [sym_block_comment] = STATE(1143), + [sym_identifier] = ACTIONS(2269), + [anon_sym_LF] = ACTIONS(2269), + [anon_sym_CR] = ACTIONS(2269), + [anon_sym_CR_LF] = ACTIONS(2269), + [anon_sym_SLASH_SLASH] = ACTIONS(497), + [anon_sym_SLASH_STAR] = ACTIONS(499), + [anon_sym_SEMI] = ACTIONS(2269), + [anon_sym_DOT] = ACTIONS(2269), + [anon_sym_as] = ACTIONS(2269), + [anon_sym_LBRACE] = ACTIONS(2269), + [anon_sym_COMMA] = ACTIONS(2269), + [anon_sym_RBRACE] = ACTIONS(2269), + [anon_sym_LPAREN] = ACTIONS(2269), + [anon_sym_RPAREN] = ACTIONS(2269), + [anon_sym_PIPE] = ACTIONS(2269), + [anon_sym_fn] = ACTIONS(2269), + [anon_sym_PLUS] = ACTIONS(2269), + [anon_sym_DASH] = ACTIONS(2269), + [anon_sym_STAR] = ACTIONS(2269), + [anon_sym_SLASH] = ACTIONS(2269), + [anon_sym_PERCENT] = ACTIONS(2269), + [anon_sym_LT] = ACTIONS(2269), + [anon_sym_GT] = ACTIONS(2269), + [anon_sym_EQ_EQ] = ACTIONS(2269), + [anon_sym_BANG_EQ] = ACTIONS(2269), + [anon_sym_LT_EQ] = ACTIONS(2269), + [anon_sym_GT_EQ] = ACTIONS(2269), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2269), + [anon_sym_LBRACK] = ACTIONS(2267), + [anon_sym_struct] = ACTIONS(2269), + [anon_sym_mut] = ACTIONS(2269), + [anon_sym_PLUS_PLUS] = ACTIONS(2269), + [anon_sym_DASH_DASH] = ACTIONS(2269), + [anon_sym_QMARK] = ACTIONS(2269), + [anon_sym_BANG] = ACTIONS(2269), + [anon_sym_go] = ACTIONS(2269), + [anon_sym_spawn] = ACTIONS(2269), + [anon_sym_json_DOTdecode] = ACTIONS(2269), + [anon_sym_LBRACK2] = ACTIONS(2269), + [anon_sym_TILDE] = ACTIONS(2269), + [anon_sym_CARET] = ACTIONS(2269), + [anon_sym_AMP] = ACTIONS(2269), + [anon_sym_LT_DASH] = ACTIONS(2269), + [anon_sym_LT_LT] = ACTIONS(2269), + [anon_sym_GT_GT] = ACTIONS(2269), + [anon_sym_GT_GT_GT] = ACTIONS(2269), + [anon_sym_AMP_CARET] = ACTIONS(2269), + [anon_sym_AMP_AMP] = ACTIONS(2269), + [anon_sym_PIPE_PIPE] = ACTIONS(2269), + [anon_sym_or] = ACTIONS(2269), + [sym_none] = ACTIONS(2269), + [sym_true] = ACTIONS(2269), + [sym_false] = ACTIONS(2269), + [sym_nil] = ACTIONS(2269), + [anon_sym_QMARK_DOT] = ACTIONS(2269), + [anon_sym_POUND_LBRACK] = ACTIONS(2269), + [anon_sym_if] = ACTIONS(2269), + [anon_sym_DOLLARif] = ACTIONS(2269), + [anon_sym_is] = ACTIONS(2269), + [anon_sym_BANGis] = ACTIONS(2269), + [anon_sym_in] = ACTIONS(2269), + [anon_sym_BANGin] = ACTIONS(2269), + [anon_sym_match] = ACTIONS(2269), + [anon_sym_select] = ACTIONS(2269), + [anon_sym_lock] = ACTIONS(2269), + [anon_sym_rlock] = ACTIONS(2269), + [anon_sym_unsafe] = ACTIONS(2269), + [anon_sym_sql] = ACTIONS(2269), + [sym_int_literal] = ACTIONS(2269), + [sym_float_literal] = ACTIONS(2269), + [sym_rune_literal] = ACTIONS(2269), + [sym_pseudo_compile_time_identifier] = ACTIONS(2269), + [anon_sym_shared] = ACTIONS(2269), + [anon_sym_map_LBRACK] = ACTIONS(2269), + [anon_sym_chan] = ACTIONS(2269), + [anon_sym_thread] = ACTIONS(2269), + [anon_sym_atomic] = ACTIONS(2269), + [sym___double_quote] = ACTIONS(2269), + [sym___single_quote] = ACTIONS(2269), + [sym___c_double_quote] = ACTIONS(2269), + [sym___c_single_quote] = ACTIONS(2269), + [sym___r_double_quote] = ACTIONS(2269), + [sym___r_single_quote] = ACTIONS(2269), + }, + [1144] = { + [sym_line_comment] = STATE(1144), + [sym_block_comment] = STATE(1144), + [sym_identifier] = ACTIONS(2732), + [anon_sym_LF] = ACTIONS(2732), + [anon_sym_CR] = ACTIONS(2732), + [anon_sym_CR_LF] = ACTIONS(2732), + [anon_sym_SLASH_SLASH] = ACTIONS(497), + [anon_sym_SLASH_STAR] = ACTIONS(499), + [anon_sym_SEMI] = ACTIONS(2732), + [anon_sym_DOT] = ACTIONS(2732), + [anon_sym_as] = ACTIONS(2732), + [anon_sym_LBRACE] = ACTIONS(2732), + [anon_sym_COMMA] = ACTIONS(2732), + [anon_sym_RBRACE] = ACTIONS(2732), + [anon_sym_LPAREN] = ACTIONS(2732), + [anon_sym_RPAREN] = ACTIONS(2732), + [anon_sym_PIPE] = ACTIONS(2732), + [anon_sym_fn] = ACTIONS(2732), + [anon_sym_PLUS] = ACTIONS(2732), + [anon_sym_DASH] = ACTIONS(2732), + [anon_sym_STAR] = ACTIONS(2732), + [anon_sym_SLASH] = ACTIONS(2732), + [anon_sym_PERCENT] = ACTIONS(2732), + [anon_sym_LT] = ACTIONS(2732), + [anon_sym_GT] = ACTIONS(2732), + [anon_sym_EQ_EQ] = ACTIONS(2732), + [anon_sym_BANG_EQ] = ACTIONS(2732), + [anon_sym_LT_EQ] = ACTIONS(2732), + [anon_sym_GT_EQ] = ACTIONS(2732), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2732), + [anon_sym_LBRACK] = ACTIONS(2730), + [anon_sym_struct] = ACTIONS(2732), + [anon_sym_mut] = ACTIONS(2732), + [anon_sym_PLUS_PLUS] = ACTIONS(2732), + [anon_sym_DASH_DASH] = ACTIONS(2732), + [anon_sym_QMARK] = ACTIONS(2732), + [anon_sym_BANG] = ACTIONS(2732), + [anon_sym_go] = ACTIONS(2732), + [anon_sym_spawn] = ACTIONS(2732), + [anon_sym_json_DOTdecode] = ACTIONS(2732), + [anon_sym_LBRACK2] = ACTIONS(2732), + [anon_sym_TILDE] = ACTIONS(2732), + [anon_sym_CARET] = ACTIONS(2732), + [anon_sym_AMP] = ACTIONS(2732), + [anon_sym_LT_DASH] = ACTIONS(2732), + [anon_sym_LT_LT] = ACTIONS(2732), + [anon_sym_GT_GT] = ACTIONS(2732), + [anon_sym_GT_GT_GT] = ACTIONS(2732), + [anon_sym_AMP_CARET] = ACTIONS(2732), + [anon_sym_AMP_AMP] = ACTIONS(2732), + [anon_sym_PIPE_PIPE] = ACTIONS(2732), + [anon_sym_or] = ACTIONS(2732), + [sym_none] = ACTIONS(2732), + [sym_true] = ACTIONS(2732), + [sym_false] = ACTIONS(2732), + [sym_nil] = ACTIONS(2732), + [anon_sym_QMARK_DOT] = ACTIONS(2732), + [anon_sym_POUND_LBRACK] = ACTIONS(2732), + [anon_sym_if] = ACTIONS(2732), + [anon_sym_DOLLARif] = ACTIONS(2732), + [anon_sym_is] = ACTIONS(2732), + [anon_sym_BANGis] = ACTIONS(2732), + [anon_sym_in] = ACTIONS(2732), + [anon_sym_BANGin] = ACTIONS(2732), + [anon_sym_match] = ACTIONS(2732), + [anon_sym_select] = ACTIONS(2732), + [anon_sym_lock] = ACTIONS(2732), + [anon_sym_rlock] = ACTIONS(2732), + [anon_sym_unsafe] = ACTIONS(2732), + [anon_sym_sql] = ACTIONS(2732), + [sym_int_literal] = ACTIONS(2732), + [sym_float_literal] = ACTIONS(2732), + [sym_rune_literal] = ACTIONS(2732), + [sym_pseudo_compile_time_identifier] = ACTIONS(2732), + [anon_sym_shared] = ACTIONS(2732), + [anon_sym_map_LBRACK] = ACTIONS(2732), + [anon_sym_chan] = ACTIONS(2732), + [anon_sym_thread] = ACTIONS(2732), + [anon_sym_atomic] = ACTIONS(2732), + [sym___double_quote] = ACTIONS(2732), + [sym___single_quote] = ACTIONS(2732), + [sym___c_double_quote] = ACTIONS(2732), + [sym___c_single_quote] = ACTIONS(2732), + [sym___r_double_quote] = ACTIONS(2732), + [sym___r_single_quote] = ACTIONS(2732), + }, + [1145] = { + [sym_line_comment] = STATE(1145), + [sym_block_comment] = STATE(1145), + [sym_identifier] = ACTIONS(2119), + [anon_sym_LF] = ACTIONS(2119), + [anon_sym_CR] = ACTIONS(2119), + [anon_sym_CR_LF] = ACTIONS(2119), + [anon_sym_SLASH_SLASH] = ACTIONS(497), + [anon_sym_SLASH_STAR] = ACTIONS(499), + [anon_sym_SEMI] = ACTIONS(2119), + [anon_sym_DOT] = ACTIONS(2119), + [anon_sym_as] = ACTIONS(2119), + [anon_sym_LBRACE] = ACTIONS(2119), + [anon_sym_COMMA] = ACTIONS(2119), + [anon_sym_RBRACE] = ACTIONS(2119), + [anon_sym_LPAREN] = ACTIONS(2119), + [anon_sym_RPAREN] = ACTIONS(2119), + [anon_sym_PIPE] = ACTIONS(2119), + [anon_sym_fn] = ACTIONS(2119), + [anon_sym_PLUS] = ACTIONS(2119), + [anon_sym_DASH] = ACTIONS(2119), + [anon_sym_STAR] = ACTIONS(2119), + [anon_sym_SLASH] = ACTIONS(2119), + [anon_sym_PERCENT] = ACTIONS(2119), + [anon_sym_LT] = ACTIONS(2119), + [anon_sym_GT] = ACTIONS(2119), + [anon_sym_EQ_EQ] = ACTIONS(2119), + [anon_sym_BANG_EQ] = ACTIONS(2119), + [anon_sym_LT_EQ] = ACTIONS(2119), + [anon_sym_GT_EQ] = ACTIONS(2119), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2119), + [anon_sym_LBRACK] = ACTIONS(2117), + [anon_sym_struct] = ACTIONS(2119), + [anon_sym_mut] = ACTIONS(2119), + [anon_sym_PLUS_PLUS] = ACTIONS(2119), + [anon_sym_DASH_DASH] = ACTIONS(2119), + [anon_sym_QMARK] = ACTIONS(2119), + [anon_sym_BANG] = ACTIONS(2119), + [anon_sym_go] = ACTIONS(2119), + [anon_sym_spawn] = ACTIONS(2119), + [anon_sym_json_DOTdecode] = ACTIONS(2119), + [anon_sym_LBRACK2] = ACTIONS(2119), + [anon_sym_TILDE] = ACTIONS(2119), + [anon_sym_CARET] = ACTIONS(2119), + [anon_sym_AMP] = ACTIONS(2119), + [anon_sym_LT_DASH] = ACTIONS(2119), + [anon_sym_LT_LT] = ACTIONS(2119), + [anon_sym_GT_GT] = ACTIONS(2119), + [anon_sym_GT_GT_GT] = ACTIONS(2119), + [anon_sym_AMP_CARET] = ACTIONS(2119), + [anon_sym_AMP_AMP] = ACTIONS(2119), + [anon_sym_PIPE_PIPE] = ACTIONS(2119), + [anon_sym_or] = ACTIONS(2119), + [sym_none] = ACTIONS(2119), + [sym_true] = ACTIONS(2119), + [sym_false] = ACTIONS(2119), + [sym_nil] = ACTIONS(2119), + [anon_sym_QMARK_DOT] = ACTIONS(2119), + [anon_sym_POUND_LBRACK] = ACTIONS(2119), + [anon_sym_if] = ACTIONS(2119), + [anon_sym_DOLLARif] = ACTIONS(2119), + [anon_sym_is] = ACTIONS(2119), + [anon_sym_BANGis] = ACTIONS(2119), + [anon_sym_in] = ACTIONS(2119), + [anon_sym_BANGin] = ACTIONS(2119), + [anon_sym_match] = ACTIONS(2119), + [anon_sym_select] = ACTIONS(2119), + [anon_sym_lock] = ACTIONS(2119), + [anon_sym_rlock] = ACTIONS(2119), + [anon_sym_unsafe] = ACTIONS(2119), + [anon_sym_sql] = ACTIONS(2119), + [sym_int_literal] = ACTIONS(2119), + [sym_float_literal] = ACTIONS(2119), + [sym_rune_literal] = ACTIONS(2119), + [sym_pseudo_compile_time_identifier] = ACTIONS(2119), + [anon_sym_shared] = ACTIONS(2119), + [anon_sym_map_LBRACK] = ACTIONS(2119), + [anon_sym_chan] = ACTIONS(2119), + [anon_sym_thread] = ACTIONS(2119), + [anon_sym_atomic] = ACTIONS(2119), + [sym___double_quote] = ACTIONS(2119), + [sym___single_quote] = ACTIONS(2119), + [sym___c_double_quote] = ACTIONS(2119), + [sym___c_single_quote] = ACTIONS(2119), + [sym___r_double_quote] = ACTIONS(2119), + [sym___r_single_quote] = ACTIONS(2119), + }, + [1146] = { + [sym_line_comment] = STATE(1146), + [sym_block_comment] = STATE(1146), + [sym_identifier] = ACTIONS(2149), + [anon_sym_LF] = ACTIONS(2149), + [anon_sym_CR] = ACTIONS(2149), + [anon_sym_CR_LF] = ACTIONS(2149), + [anon_sym_SLASH_SLASH] = ACTIONS(497), + [anon_sym_SLASH_STAR] = ACTIONS(499), + [anon_sym_SEMI] = ACTIONS(2149), + [anon_sym_DOT] = ACTIONS(2149), + [anon_sym_as] = ACTIONS(2149), + [anon_sym_LBRACE] = ACTIONS(2149), + [anon_sym_COMMA] = ACTIONS(2149), + [anon_sym_RBRACE] = ACTIONS(2149), + [anon_sym_LPAREN] = ACTIONS(2149), + [anon_sym_RPAREN] = ACTIONS(2149), + [anon_sym_PIPE] = ACTIONS(2149), + [anon_sym_fn] = ACTIONS(2149), + [anon_sym_PLUS] = ACTIONS(2149), + [anon_sym_DASH] = ACTIONS(2149), + [anon_sym_STAR] = ACTIONS(2149), + [anon_sym_SLASH] = ACTIONS(2149), + [anon_sym_PERCENT] = ACTIONS(2149), + [anon_sym_LT] = ACTIONS(2149), + [anon_sym_GT] = ACTIONS(2149), + [anon_sym_EQ_EQ] = ACTIONS(2149), + [anon_sym_BANG_EQ] = ACTIONS(2149), + [anon_sym_LT_EQ] = ACTIONS(2149), + [anon_sym_GT_EQ] = ACTIONS(2149), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2149), + [anon_sym_LBRACK] = ACTIONS(2147), + [anon_sym_struct] = ACTIONS(2149), + [anon_sym_mut] = ACTIONS(2149), + [anon_sym_PLUS_PLUS] = ACTIONS(2149), + [anon_sym_DASH_DASH] = ACTIONS(2149), + [anon_sym_QMARK] = ACTIONS(2149), + [anon_sym_BANG] = ACTIONS(2149), + [anon_sym_go] = ACTIONS(2149), + [anon_sym_spawn] = ACTIONS(2149), + [anon_sym_json_DOTdecode] = ACTIONS(2149), + [anon_sym_LBRACK2] = ACTIONS(2149), + [anon_sym_TILDE] = ACTIONS(2149), + [anon_sym_CARET] = ACTIONS(2149), + [anon_sym_AMP] = ACTIONS(2149), + [anon_sym_LT_DASH] = ACTIONS(2149), + [anon_sym_LT_LT] = ACTIONS(2149), + [anon_sym_GT_GT] = ACTIONS(2149), + [anon_sym_GT_GT_GT] = ACTIONS(2149), + [anon_sym_AMP_CARET] = ACTIONS(2149), + [anon_sym_AMP_AMP] = ACTIONS(2149), + [anon_sym_PIPE_PIPE] = ACTIONS(2149), + [anon_sym_or] = ACTIONS(2149), + [sym_none] = ACTIONS(2149), + [sym_true] = ACTIONS(2149), + [sym_false] = ACTIONS(2149), + [sym_nil] = ACTIONS(2149), + [anon_sym_QMARK_DOT] = ACTIONS(2149), + [anon_sym_POUND_LBRACK] = ACTIONS(2149), + [anon_sym_if] = ACTIONS(2149), + [anon_sym_DOLLARif] = ACTIONS(2149), + [anon_sym_is] = ACTIONS(2149), + [anon_sym_BANGis] = ACTIONS(2149), + [anon_sym_in] = ACTIONS(2149), + [anon_sym_BANGin] = ACTIONS(2149), + [anon_sym_match] = ACTIONS(2149), + [anon_sym_select] = ACTIONS(2149), + [anon_sym_lock] = ACTIONS(2149), + [anon_sym_rlock] = ACTIONS(2149), + [anon_sym_unsafe] = ACTIONS(2149), + [anon_sym_sql] = ACTIONS(2149), + [sym_int_literal] = ACTIONS(2149), + [sym_float_literal] = ACTIONS(2149), + [sym_rune_literal] = ACTIONS(2149), + [sym_pseudo_compile_time_identifier] = ACTIONS(2149), + [anon_sym_shared] = ACTIONS(2149), + [anon_sym_map_LBRACK] = ACTIONS(2149), + [anon_sym_chan] = ACTIONS(2149), + [anon_sym_thread] = ACTIONS(2149), + [anon_sym_atomic] = ACTIONS(2149), + [sym___double_quote] = ACTIONS(2149), + [sym___single_quote] = ACTIONS(2149), + [sym___c_double_quote] = ACTIONS(2149), + [sym___c_single_quote] = ACTIONS(2149), + [sym___r_double_quote] = ACTIONS(2149), + [sym___r_single_quote] = ACTIONS(2149), + }, + [1147] = { + [sym_line_comment] = STATE(1147), + [sym_block_comment] = STATE(1147), + [sym_identifier] = ACTIONS(2700), + [anon_sym_LF] = ACTIONS(2700), + [anon_sym_CR] = ACTIONS(2700), + [anon_sym_CR_LF] = ACTIONS(2700), + [anon_sym_SLASH_SLASH] = ACTIONS(497), + [anon_sym_SLASH_STAR] = ACTIONS(499), + [anon_sym_SEMI] = ACTIONS(2700), + [anon_sym_DOT] = ACTIONS(2700), + [anon_sym_as] = ACTIONS(2700), + [anon_sym_LBRACE] = ACTIONS(2700), + [anon_sym_COMMA] = ACTIONS(2700), + [anon_sym_RBRACE] = ACTIONS(2700), + [anon_sym_LPAREN] = ACTIONS(2700), + [anon_sym_RPAREN] = ACTIONS(2700), + [anon_sym_PIPE] = ACTIONS(2700), + [anon_sym_fn] = ACTIONS(2700), + [anon_sym_PLUS] = ACTIONS(2700), + [anon_sym_DASH] = ACTIONS(2700), + [anon_sym_STAR] = ACTIONS(2700), + [anon_sym_SLASH] = ACTIONS(2700), + [anon_sym_PERCENT] = ACTIONS(2700), + [anon_sym_LT] = ACTIONS(2700), + [anon_sym_GT] = ACTIONS(2700), + [anon_sym_EQ_EQ] = ACTIONS(2700), + [anon_sym_BANG_EQ] = ACTIONS(2700), + [anon_sym_LT_EQ] = ACTIONS(2700), + [anon_sym_GT_EQ] = ACTIONS(2700), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2700), + [anon_sym_LBRACK] = ACTIONS(2698), + [anon_sym_struct] = ACTIONS(2700), + [anon_sym_mut] = ACTIONS(2700), + [anon_sym_PLUS_PLUS] = ACTIONS(2700), + [anon_sym_DASH_DASH] = ACTIONS(2700), + [anon_sym_QMARK] = ACTIONS(2700), + [anon_sym_BANG] = ACTIONS(2700), + [anon_sym_go] = ACTIONS(2700), + [anon_sym_spawn] = ACTIONS(2700), + [anon_sym_json_DOTdecode] = ACTIONS(2700), + [anon_sym_LBRACK2] = ACTIONS(2700), + [anon_sym_TILDE] = ACTIONS(2700), + [anon_sym_CARET] = ACTIONS(2700), + [anon_sym_AMP] = ACTIONS(2700), + [anon_sym_LT_DASH] = ACTIONS(2700), + [anon_sym_LT_LT] = ACTIONS(2700), + [anon_sym_GT_GT] = ACTIONS(2700), + [anon_sym_GT_GT_GT] = ACTIONS(2700), + [anon_sym_AMP_CARET] = ACTIONS(2700), + [anon_sym_AMP_AMP] = ACTIONS(2700), + [anon_sym_PIPE_PIPE] = ACTIONS(2700), + [anon_sym_or] = ACTIONS(2700), + [sym_none] = ACTIONS(2700), + [sym_true] = ACTIONS(2700), + [sym_false] = ACTIONS(2700), + [sym_nil] = ACTIONS(2700), + [anon_sym_QMARK_DOT] = ACTIONS(2700), + [anon_sym_POUND_LBRACK] = ACTIONS(2700), + [anon_sym_if] = ACTIONS(2700), + [anon_sym_DOLLARif] = ACTIONS(2700), + [anon_sym_is] = ACTIONS(2700), + [anon_sym_BANGis] = ACTIONS(2700), + [anon_sym_in] = ACTIONS(2700), + [anon_sym_BANGin] = ACTIONS(2700), + [anon_sym_match] = ACTIONS(2700), + [anon_sym_select] = ACTIONS(2700), + [anon_sym_lock] = ACTIONS(2700), + [anon_sym_rlock] = ACTIONS(2700), + [anon_sym_unsafe] = ACTIONS(2700), + [anon_sym_sql] = ACTIONS(2700), + [sym_int_literal] = ACTIONS(2700), + [sym_float_literal] = ACTIONS(2700), + [sym_rune_literal] = ACTIONS(2700), + [sym_pseudo_compile_time_identifier] = ACTIONS(2700), + [anon_sym_shared] = ACTIONS(2700), + [anon_sym_map_LBRACK] = ACTIONS(2700), + [anon_sym_chan] = ACTIONS(2700), + [anon_sym_thread] = ACTIONS(2700), + [anon_sym_atomic] = ACTIONS(2700), + [sym___double_quote] = ACTIONS(2700), + [sym___single_quote] = ACTIONS(2700), + [sym___c_double_quote] = ACTIONS(2700), + [sym___c_single_quote] = ACTIONS(2700), + [sym___r_double_quote] = ACTIONS(2700), + [sym___r_single_quote] = ACTIONS(2700), + }, + [1148] = { + [sym_line_comment] = STATE(1148), + [sym_block_comment] = STATE(1148), + [sym_identifier] = ACTIONS(2788), + [anon_sym_LF] = ACTIONS(2788), + [anon_sym_CR] = ACTIONS(2788), + [anon_sym_CR_LF] = ACTIONS(2788), + [anon_sym_SLASH_SLASH] = ACTIONS(497), + [anon_sym_SLASH_STAR] = ACTIONS(499), + [anon_sym_SEMI] = ACTIONS(2788), + [anon_sym_DOT] = ACTIONS(2788), + [anon_sym_as] = ACTIONS(2788), + [anon_sym_LBRACE] = ACTIONS(2788), + [anon_sym_COMMA] = ACTIONS(2788), + [anon_sym_RBRACE] = ACTIONS(2788), + [anon_sym_LPAREN] = ACTIONS(2788), + [anon_sym_RPAREN] = ACTIONS(2788), + [anon_sym_PIPE] = ACTIONS(2788), + [anon_sym_fn] = ACTIONS(2788), + [anon_sym_PLUS] = ACTIONS(2788), + [anon_sym_DASH] = ACTIONS(2788), + [anon_sym_STAR] = ACTIONS(2788), + [anon_sym_SLASH] = ACTIONS(2788), + [anon_sym_PERCENT] = ACTIONS(2788), + [anon_sym_LT] = ACTIONS(2788), + [anon_sym_GT] = ACTIONS(2788), + [anon_sym_EQ_EQ] = ACTIONS(2788), + [anon_sym_BANG_EQ] = ACTIONS(2788), + [anon_sym_LT_EQ] = ACTIONS(2788), + [anon_sym_GT_EQ] = ACTIONS(2788), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2788), + [anon_sym_LBRACK] = ACTIONS(2786), + [anon_sym_struct] = ACTIONS(2788), + [anon_sym_mut] = ACTIONS(2788), + [anon_sym_PLUS_PLUS] = ACTIONS(2788), + [anon_sym_DASH_DASH] = ACTIONS(2788), + [anon_sym_QMARK] = ACTIONS(2788), + [anon_sym_BANG] = ACTIONS(2788), + [anon_sym_go] = ACTIONS(2788), + [anon_sym_spawn] = ACTIONS(2788), + [anon_sym_json_DOTdecode] = ACTIONS(2788), + [anon_sym_LBRACK2] = ACTIONS(2788), + [anon_sym_TILDE] = ACTIONS(2788), + [anon_sym_CARET] = ACTIONS(2788), + [anon_sym_AMP] = ACTIONS(2788), + [anon_sym_LT_DASH] = ACTIONS(2788), + [anon_sym_LT_LT] = ACTIONS(2788), + [anon_sym_GT_GT] = ACTIONS(2788), + [anon_sym_GT_GT_GT] = ACTIONS(2788), + [anon_sym_AMP_CARET] = ACTIONS(2788), + [anon_sym_AMP_AMP] = ACTIONS(2788), + [anon_sym_PIPE_PIPE] = ACTIONS(2788), + [anon_sym_or] = ACTIONS(2788), + [sym_none] = ACTIONS(2788), + [sym_true] = ACTIONS(2788), + [sym_false] = ACTIONS(2788), + [sym_nil] = ACTIONS(2788), + [anon_sym_QMARK_DOT] = ACTIONS(2788), + [anon_sym_POUND_LBRACK] = ACTIONS(2788), + [anon_sym_if] = ACTIONS(2788), + [anon_sym_DOLLARif] = ACTIONS(2788), + [anon_sym_is] = ACTIONS(2788), + [anon_sym_BANGis] = ACTIONS(2788), + [anon_sym_in] = ACTIONS(2788), + [anon_sym_BANGin] = ACTIONS(2788), + [anon_sym_match] = ACTIONS(2788), + [anon_sym_select] = ACTIONS(2788), + [anon_sym_lock] = ACTIONS(2788), + [anon_sym_rlock] = ACTIONS(2788), + [anon_sym_unsafe] = ACTIONS(2788), + [anon_sym_sql] = ACTIONS(2788), + [sym_int_literal] = ACTIONS(2788), + [sym_float_literal] = ACTIONS(2788), + [sym_rune_literal] = ACTIONS(2788), + [sym_pseudo_compile_time_identifier] = ACTIONS(2788), + [anon_sym_shared] = ACTIONS(2788), + [anon_sym_map_LBRACK] = ACTIONS(2788), + [anon_sym_chan] = ACTIONS(2788), + [anon_sym_thread] = ACTIONS(2788), + [anon_sym_atomic] = ACTIONS(2788), + [sym___double_quote] = ACTIONS(2788), + [sym___single_quote] = ACTIONS(2788), + [sym___c_double_quote] = ACTIONS(2788), + [sym___c_single_quote] = ACTIONS(2788), + [sym___r_double_quote] = ACTIONS(2788), + [sym___r_single_quote] = ACTIONS(2788), + }, + [1149] = { + [sym_line_comment] = STATE(1149), + [sym_block_comment] = STATE(1149), + [sym_identifier] = ACTIONS(2798), + [anon_sym_LF] = ACTIONS(2798), + [anon_sym_CR] = ACTIONS(2798), + [anon_sym_CR_LF] = ACTIONS(2798), + [anon_sym_SLASH_SLASH] = ACTIONS(497), + [anon_sym_SLASH_STAR] = ACTIONS(499), + [anon_sym_SEMI] = ACTIONS(2798), + [anon_sym_DOT] = ACTIONS(2798), + [anon_sym_as] = ACTIONS(2798), + [anon_sym_LBRACE] = ACTIONS(2798), + [anon_sym_COMMA] = ACTIONS(2798), + [anon_sym_RBRACE] = ACTIONS(2798), + [anon_sym_LPAREN] = ACTIONS(2798), + [anon_sym_RPAREN] = ACTIONS(2798), + [anon_sym_PIPE] = ACTIONS(2798), + [anon_sym_fn] = ACTIONS(2798), + [anon_sym_PLUS] = ACTIONS(2798), + [anon_sym_DASH] = ACTIONS(2798), + [anon_sym_STAR] = ACTIONS(2798), + [anon_sym_SLASH] = ACTIONS(2798), + [anon_sym_PERCENT] = ACTIONS(2798), + [anon_sym_LT] = ACTIONS(2798), + [anon_sym_GT] = ACTIONS(2798), + [anon_sym_EQ_EQ] = ACTIONS(2798), + [anon_sym_BANG_EQ] = ACTIONS(2798), + [anon_sym_LT_EQ] = ACTIONS(2798), + [anon_sym_GT_EQ] = ACTIONS(2798), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2798), + [anon_sym_LBRACK] = ACTIONS(2796), + [anon_sym_struct] = ACTIONS(2798), + [anon_sym_mut] = ACTIONS(2798), + [anon_sym_PLUS_PLUS] = ACTIONS(2798), + [anon_sym_DASH_DASH] = ACTIONS(2798), + [anon_sym_QMARK] = ACTIONS(2798), + [anon_sym_BANG] = ACTIONS(2798), + [anon_sym_go] = ACTIONS(2798), + [anon_sym_spawn] = ACTIONS(2798), + [anon_sym_json_DOTdecode] = ACTIONS(2798), + [anon_sym_LBRACK2] = ACTIONS(2798), + [anon_sym_TILDE] = ACTIONS(2798), + [anon_sym_CARET] = ACTIONS(2798), + [anon_sym_AMP] = ACTIONS(2798), + [anon_sym_LT_DASH] = ACTIONS(2798), + [anon_sym_LT_LT] = ACTIONS(2798), + [anon_sym_GT_GT] = ACTIONS(2798), + [anon_sym_GT_GT_GT] = ACTIONS(2798), + [anon_sym_AMP_CARET] = ACTIONS(2798), + [anon_sym_AMP_AMP] = ACTIONS(2798), + [anon_sym_PIPE_PIPE] = ACTIONS(2798), + [anon_sym_or] = ACTIONS(2798), + [sym_none] = ACTIONS(2798), + [sym_true] = ACTIONS(2798), + [sym_false] = ACTIONS(2798), + [sym_nil] = ACTIONS(2798), + [anon_sym_QMARK_DOT] = ACTIONS(2798), + [anon_sym_POUND_LBRACK] = ACTIONS(2798), + [anon_sym_if] = ACTIONS(2798), + [anon_sym_DOLLARif] = ACTIONS(2798), + [anon_sym_is] = ACTIONS(2798), + [anon_sym_BANGis] = ACTIONS(2798), + [anon_sym_in] = ACTIONS(2798), + [anon_sym_BANGin] = ACTIONS(2798), + [anon_sym_match] = ACTIONS(2798), + [anon_sym_select] = ACTIONS(2798), + [anon_sym_lock] = ACTIONS(2798), + [anon_sym_rlock] = ACTIONS(2798), + [anon_sym_unsafe] = ACTIONS(2798), + [anon_sym_sql] = ACTIONS(2798), + [sym_int_literal] = ACTIONS(2798), + [sym_float_literal] = ACTIONS(2798), + [sym_rune_literal] = ACTIONS(2798), + [sym_pseudo_compile_time_identifier] = ACTIONS(2798), + [anon_sym_shared] = ACTIONS(2798), + [anon_sym_map_LBRACK] = ACTIONS(2798), + [anon_sym_chan] = ACTIONS(2798), + [anon_sym_thread] = ACTIONS(2798), + [anon_sym_atomic] = ACTIONS(2798), + [sym___double_quote] = ACTIONS(2798), + [sym___single_quote] = ACTIONS(2798), + [sym___c_double_quote] = ACTIONS(2798), + [sym___c_single_quote] = ACTIONS(2798), + [sym___r_double_quote] = ACTIONS(2798), + [sym___r_single_quote] = ACTIONS(2798), + }, + [1150] = { + [sym_line_comment] = STATE(1150), + [sym_block_comment] = STATE(1150), + [sym_identifier] = ACTIONS(2676), + [anon_sym_LF] = ACTIONS(2676), + [anon_sym_CR] = ACTIONS(2676), + [anon_sym_CR_LF] = ACTIONS(2676), + [anon_sym_SLASH_SLASH] = ACTIONS(497), + [anon_sym_SLASH_STAR] = ACTIONS(499), + [anon_sym_SEMI] = ACTIONS(2676), + [anon_sym_DOT] = ACTIONS(2676), + [anon_sym_as] = ACTIONS(2676), + [anon_sym_LBRACE] = ACTIONS(2676), + [anon_sym_COMMA] = ACTIONS(2676), + [anon_sym_RBRACE] = ACTIONS(2676), + [anon_sym_LPAREN] = ACTIONS(2676), + [anon_sym_RPAREN] = ACTIONS(2676), + [anon_sym_PIPE] = ACTIONS(2676), + [anon_sym_fn] = ACTIONS(2676), + [anon_sym_PLUS] = ACTIONS(2676), + [anon_sym_DASH] = ACTIONS(2676), + [anon_sym_STAR] = ACTIONS(2676), + [anon_sym_SLASH] = ACTIONS(2676), + [anon_sym_PERCENT] = ACTIONS(2676), + [anon_sym_LT] = ACTIONS(2676), + [anon_sym_GT] = ACTIONS(2676), + [anon_sym_EQ_EQ] = ACTIONS(2676), + [anon_sym_BANG_EQ] = ACTIONS(2676), + [anon_sym_LT_EQ] = ACTIONS(2676), + [anon_sym_GT_EQ] = ACTIONS(2676), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2676), + [anon_sym_LBRACK] = ACTIONS(2674), + [anon_sym_struct] = ACTIONS(2676), + [anon_sym_mut] = ACTIONS(2676), + [anon_sym_PLUS_PLUS] = ACTIONS(2676), + [anon_sym_DASH_DASH] = ACTIONS(2676), + [anon_sym_QMARK] = ACTIONS(2676), + [anon_sym_BANG] = ACTIONS(2676), + [anon_sym_go] = ACTIONS(2676), + [anon_sym_spawn] = ACTIONS(2676), + [anon_sym_json_DOTdecode] = ACTIONS(2676), + [anon_sym_LBRACK2] = ACTIONS(2676), + [anon_sym_TILDE] = ACTIONS(2676), + [anon_sym_CARET] = ACTIONS(2676), + [anon_sym_AMP] = ACTIONS(2676), + [anon_sym_LT_DASH] = ACTIONS(2676), + [anon_sym_LT_LT] = ACTIONS(2676), + [anon_sym_GT_GT] = ACTIONS(2676), + [anon_sym_GT_GT_GT] = ACTIONS(2676), + [anon_sym_AMP_CARET] = ACTIONS(2676), + [anon_sym_AMP_AMP] = ACTIONS(2676), + [anon_sym_PIPE_PIPE] = ACTIONS(2676), + [anon_sym_or] = ACTIONS(2676), + [sym_none] = ACTIONS(2676), + [sym_true] = ACTIONS(2676), + [sym_false] = ACTIONS(2676), + [sym_nil] = ACTIONS(2676), + [anon_sym_QMARK_DOT] = ACTIONS(2676), + [anon_sym_POUND_LBRACK] = ACTIONS(2676), + [anon_sym_if] = ACTIONS(2676), + [anon_sym_DOLLARif] = ACTIONS(2676), + [anon_sym_is] = ACTIONS(2676), + [anon_sym_BANGis] = ACTIONS(2676), + [anon_sym_in] = ACTIONS(2676), + [anon_sym_BANGin] = ACTIONS(2676), + [anon_sym_match] = ACTIONS(2676), + [anon_sym_select] = ACTIONS(2676), + [anon_sym_lock] = ACTIONS(2676), + [anon_sym_rlock] = ACTIONS(2676), + [anon_sym_unsafe] = ACTIONS(2676), + [anon_sym_sql] = ACTIONS(2676), + [sym_int_literal] = ACTIONS(2676), + [sym_float_literal] = ACTIONS(2676), + [sym_rune_literal] = ACTIONS(2676), + [sym_pseudo_compile_time_identifier] = ACTIONS(2676), + [anon_sym_shared] = ACTIONS(2676), + [anon_sym_map_LBRACK] = ACTIONS(2676), + [anon_sym_chan] = ACTIONS(2676), + [anon_sym_thread] = ACTIONS(2676), + [anon_sym_atomic] = ACTIONS(2676), + [sym___double_quote] = ACTIONS(2676), + [sym___single_quote] = ACTIONS(2676), + [sym___c_double_quote] = ACTIONS(2676), + [sym___c_single_quote] = ACTIONS(2676), + [sym___r_double_quote] = ACTIONS(2676), + [sym___r_single_quote] = ACTIONS(2676), + }, + [1151] = { + [sym_line_comment] = STATE(1151), + [sym_block_comment] = STATE(1151), + [sym_identifier] = ACTIONS(2115), + [anon_sym_LF] = ACTIONS(2115), + [anon_sym_CR] = ACTIONS(2115), + [anon_sym_CR_LF] = ACTIONS(2115), + [anon_sym_SLASH_SLASH] = ACTIONS(497), + [anon_sym_SLASH_STAR] = ACTIONS(499), + [anon_sym_SEMI] = ACTIONS(2115), + [anon_sym_DOT] = ACTIONS(2115), + [anon_sym_as] = ACTIONS(2115), + [anon_sym_LBRACE] = ACTIONS(2115), + [anon_sym_COMMA] = ACTIONS(2115), + [anon_sym_RBRACE] = ACTIONS(2115), + [anon_sym_LPAREN] = ACTIONS(2115), + [anon_sym_RPAREN] = ACTIONS(2115), + [anon_sym_PIPE] = ACTIONS(2115), + [anon_sym_fn] = ACTIONS(2115), + [anon_sym_PLUS] = ACTIONS(2115), + [anon_sym_DASH] = ACTIONS(2115), + [anon_sym_STAR] = ACTIONS(2115), + [anon_sym_SLASH] = ACTIONS(2115), + [anon_sym_PERCENT] = ACTIONS(2115), + [anon_sym_LT] = ACTIONS(2115), + [anon_sym_GT] = ACTIONS(2115), + [anon_sym_EQ_EQ] = ACTIONS(2115), + [anon_sym_BANG_EQ] = ACTIONS(2115), + [anon_sym_LT_EQ] = ACTIONS(2115), + [anon_sym_GT_EQ] = ACTIONS(2115), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2115), + [anon_sym_LBRACK] = ACTIONS(2113), + [anon_sym_struct] = ACTIONS(2115), + [anon_sym_mut] = ACTIONS(2115), + [anon_sym_PLUS_PLUS] = ACTIONS(2115), + [anon_sym_DASH_DASH] = ACTIONS(2115), + [anon_sym_QMARK] = ACTIONS(2115), + [anon_sym_BANG] = ACTIONS(2115), + [anon_sym_go] = ACTIONS(2115), + [anon_sym_spawn] = ACTIONS(2115), + [anon_sym_json_DOTdecode] = ACTIONS(2115), + [anon_sym_LBRACK2] = ACTIONS(2115), + [anon_sym_TILDE] = ACTIONS(2115), + [anon_sym_CARET] = ACTIONS(2115), + [anon_sym_AMP] = ACTIONS(2115), + [anon_sym_LT_DASH] = ACTIONS(2115), + [anon_sym_LT_LT] = ACTIONS(2115), + [anon_sym_GT_GT] = ACTIONS(2115), + [anon_sym_GT_GT_GT] = ACTIONS(2115), + [anon_sym_AMP_CARET] = ACTIONS(2115), + [anon_sym_AMP_AMP] = ACTIONS(2115), + [anon_sym_PIPE_PIPE] = ACTIONS(2115), + [anon_sym_or] = ACTIONS(2115), + [sym_none] = ACTIONS(2115), + [sym_true] = ACTIONS(2115), + [sym_false] = ACTIONS(2115), + [sym_nil] = ACTIONS(2115), + [anon_sym_QMARK_DOT] = ACTIONS(2115), + [anon_sym_POUND_LBRACK] = ACTIONS(2115), + [anon_sym_if] = ACTIONS(2115), + [anon_sym_DOLLARif] = ACTIONS(2115), + [anon_sym_is] = ACTIONS(2115), + [anon_sym_BANGis] = ACTIONS(2115), + [anon_sym_in] = ACTIONS(2115), + [anon_sym_BANGin] = ACTIONS(2115), + [anon_sym_match] = ACTIONS(2115), + [anon_sym_select] = ACTIONS(2115), + [anon_sym_lock] = ACTIONS(2115), + [anon_sym_rlock] = ACTIONS(2115), + [anon_sym_unsafe] = ACTIONS(2115), + [anon_sym_sql] = ACTIONS(2115), + [sym_int_literal] = ACTIONS(2115), + [sym_float_literal] = ACTIONS(2115), + [sym_rune_literal] = ACTIONS(2115), + [sym_pseudo_compile_time_identifier] = ACTIONS(2115), + [anon_sym_shared] = ACTIONS(2115), + [anon_sym_map_LBRACK] = ACTIONS(2115), + [anon_sym_chan] = ACTIONS(2115), + [anon_sym_thread] = ACTIONS(2115), + [anon_sym_atomic] = ACTIONS(2115), + [sym___double_quote] = ACTIONS(2115), + [sym___single_quote] = ACTIONS(2115), + [sym___c_double_quote] = ACTIONS(2115), + [sym___c_single_quote] = ACTIONS(2115), + [sym___r_double_quote] = ACTIONS(2115), + [sym___r_single_quote] = ACTIONS(2115), + }, + [1152] = { + [sym_line_comment] = STATE(1152), + [sym_block_comment] = STATE(1152), + [sym_identifier] = ACTIONS(2802), + [anon_sym_LF] = ACTIONS(2802), + [anon_sym_CR] = ACTIONS(2802), + [anon_sym_CR_LF] = ACTIONS(2802), + [anon_sym_SLASH_SLASH] = ACTIONS(497), + [anon_sym_SLASH_STAR] = ACTIONS(499), + [anon_sym_SEMI] = ACTIONS(2802), + [anon_sym_DOT] = ACTIONS(2802), + [anon_sym_as] = ACTIONS(2802), + [anon_sym_LBRACE] = ACTIONS(2802), + [anon_sym_COMMA] = ACTIONS(2802), + [anon_sym_RBRACE] = ACTIONS(2802), + [anon_sym_LPAREN] = ACTIONS(2802), + [anon_sym_RPAREN] = ACTIONS(2802), + [anon_sym_PIPE] = ACTIONS(2802), + [anon_sym_fn] = ACTIONS(2802), + [anon_sym_PLUS] = ACTIONS(2802), + [anon_sym_DASH] = ACTIONS(2802), + [anon_sym_STAR] = ACTIONS(2802), + [anon_sym_SLASH] = ACTIONS(2802), + [anon_sym_PERCENT] = ACTIONS(2802), + [anon_sym_LT] = ACTIONS(2802), + [anon_sym_GT] = ACTIONS(2802), + [anon_sym_EQ_EQ] = ACTIONS(2802), + [anon_sym_BANG_EQ] = ACTIONS(2802), + [anon_sym_LT_EQ] = ACTIONS(2802), + [anon_sym_GT_EQ] = ACTIONS(2802), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2802), + [anon_sym_LBRACK] = ACTIONS(2800), + [anon_sym_struct] = ACTIONS(2802), + [anon_sym_mut] = ACTIONS(2802), + [anon_sym_PLUS_PLUS] = ACTIONS(2802), + [anon_sym_DASH_DASH] = ACTIONS(2802), + [anon_sym_QMARK] = ACTIONS(2802), + [anon_sym_BANG] = ACTIONS(2802), + [anon_sym_go] = ACTIONS(2802), + [anon_sym_spawn] = ACTIONS(2802), + [anon_sym_json_DOTdecode] = ACTIONS(2802), + [anon_sym_LBRACK2] = ACTIONS(2802), + [anon_sym_TILDE] = ACTIONS(2802), + [anon_sym_CARET] = ACTIONS(2802), + [anon_sym_AMP] = ACTIONS(2802), + [anon_sym_LT_DASH] = ACTIONS(2802), + [anon_sym_LT_LT] = ACTIONS(2802), + [anon_sym_GT_GT] = ACTIONS(2802), + [anon_sym_GT_GT_GT] = ACTIONS(2802), + [anon_sym_AMP_CARET] = ACTIONS(2802), + [anon_sym_AMP_AMP] = ACTIONS(2802), + [anon_sym_PIPE_PIPE] = ACTIONS(2802), + [anon_sym_or] = ACTIONS(2802), + [sym_none] = ACTIONS(2802), + [sym_true] = ACTIONS(2802), + [sym_false] = ACTIONS(2802), + [sym_nil] = ACTIONS(2802), + [anon_sym_QMARK_DOT] = ACTIONS(2802), + [anon_sym_POUND_LBRACK] = ACTIONS(2802), + [anon_sym_if] = ACTIONS(2802), + [anon_sym_DOLLARif] = ACTIONS(2802), + [anon_sym_is] = ACTIONS(2802), + [anon_sym_BANGis] = ACTIONS(2802), + [anon_sym_in] = ACTIONS(2802), + [anon_sym_BANGin] = ACTIONS(2802), + [anon_sym_match] = ACTIONS(2802), + [anon_sym_select] = ACTIONS(2802), + [anon_sym_lock] = ACTIONS(2802), + [anon_sym_rlock] = ACTIONS(2802), + [anon_sym_unsafe] = ACTIONS(2802), + [anon_sym_sql] = ACTIONS(2802), + [sym_int_literal] = ACTIONS(2802), + [sym_float_literal] = ACTIONS(2802), + [sym_rune_literal] = ACTIONS(2802), + [sym_pseudo_compile_time_identifier] = ACTIONS(2802), + [anon_sym_shared] = ACTIONS(2802), + [anon_sym_map_LBRACK] = ACTIONS(2802), + [anon_sym_chan] = ACTIONS(2802), + [anon_sym_thread] = ACTIONS(2802), + [anon_sym_atomic] = ACTIONS(2802), + [sym___double_quote] = ACTIONS(2802), + [sym___single_quote] = ACTIONS(2802), + [sym___c_double_quote] = ACTIONS(2802), + [sym___c_single_quote] = ACTIONS(2802), + [sym___r_double_quote] = ACTIONS(2802), + [sym___r_single_quote] = ACTIONS(2802), + }, + [1153] = { + [sym_line_comment] = STATE(1153), + [sym_block_comment] = STATE(1153), + [sym_identifier] = ACTIONS(3050), + [anon_sym_LF] = ACTIONS(3050), + [anon_sym_CR] = ACTIONS(3050), + [anon_sym_CR_LF] = ACTIONS(3050), + [anon_sym_SLASH_SLASH] = ACTIONS(497), + [anon_sym_SLASH_STAR] = ACTIONS(499), + [anon_sym_SEMI] = ACTIONS(3050), + [anon_sym_DOT] = ACTIONS(3050), + [anon_sym_as] = ACTIONS(3050), + [anon_sym_LBRACE] = ACTIONS(3050), + [anon_sym_COMMA] = ACTIONS(3050), + [anon_sym_RBRACE] = ACTIONS(3050), + [anon_sym_LPAREN] = ACTIONS(3050), + [anon_sym_RPAREN] = ACTIONS(3050), + [anon_sym_PIPE] = ACTIONS(3050), + [anon_sym_fn] = ACTIONS(3050), + [anon_sym_PLUS] = ACTIONS(3050), + [anon_sym_DASH] = ACTIONS(3050), + [anon_sym_STAR] = ACTIONS(3050), + [anon_sym_SLASH] = ACTIONS(3050), + [anon_sym_PERCENT] = ACTIONS(3050), + [anon_sym_LT] = ACTIONS(3050), + [anon_sym_GT] = ACTIONS(3050), + [anon_sym_EQ_EQ] = ACTIONS(3050), + [anon_sym_BANG_EQ] = ACTIONS(3050), + [anon_sym_LT_EQ] = ACTIONS(3050), + [anon_sym_GT_EQ] = ACTIONS(3050), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3050), + [anon_sym_LBRACK] = ACTIONS(3048), + [anon_sym_struct] = ACTIONS(3050), + [anon_sym_mut] = ACTIONS(3050), + [anon_sym_PLUS_PLUS] = ACTIONS(3050), + [anon_sym_DASH_DASH] = ACTIONS(3050), + [anon_sym_QMARK] = ACTIONS(3050), + [anon_sym_BANG] = ACTIONS(3050), + [anon_sym_go] = ACTIONS(3050), + [anon_sym_spawn] = ACTIONS(3050), + [anon_sym_json_DOTdecode] = ACTIONS(3050), + [anon_sym_LBRACK2] = ACTIONS(3050), + [anon_sym_TILDE] = ACTIONS(3050), + [anon_sym_CARET] = ACTIONS(3050), + [anon_sym_AMP] = ACTIONS(3050), + [anon_sym_LT_DASH] = ACTIONS(3050), + [anon_sym_LT_LT] = ACTIONS(3050), + [anon_sym_GT_GT] = ACTIONS(3050), + [anon_sym_GT_GT_GT] = ACTIONS(3050), + [anon_sym_AMP_CARET] = ACTIONS(3050), + [anon_sym_AMP_AMP] = ACTIONS(3050), + [anon_sym_PIPE_PIPE] = ACTIONS(3050), + [anon_sym_or] = ACTIONS(3050), + [sym_none] = ACTIONS(3050), + [sym_true] = ACTIONS(3050), + [sym_false] = ACTIONS(3050), + [sym_nil] = ACTIONS(3050), + [anon_sym_QMARK_DOT] = ACTIONS(3050), + [anon_sym_POUND_LBRACK] = ACTIONS(3050), + [anon_sym_if] = ACTIONS(3050), + [anon_sym_DOLLARif] = ACTIONS(3050), + [anon_sym_is] = ACTIONS(3050), + [anon_sym_BANGis] = ACTIONS(3050), + [anon_sym_in] = ACTIONS(3050), + [anon_sym_BANGin] = ACTIONS(3050), + [anon_sym_match] = ACTIONS(3050), + [anon_sym_select] = ACTIONS(3050), + [anon_sym_lock] = ACTIONS(3050), + [anon_sym_rlock] = ACTIONS(3050), + [anon_sym_unsafe] = ACTIONS(3050), + [anon_sym_sql] = ACTIONS(3050), + [sym_int_literal] = ACTIONS(3050), + [sym_float_literal] = ACTIONS(3050), + [sym_rune_literal] = ACTIONS(3050), + [sym_pseudo_compile_time_identifier] = ACTIONS(3050), + [anon_sym_shared] = ACTIONS(3050), + [anon_sym_map_LBRACK] = ACTIONS(3050), + [anon_sym_chan] = ACTIONS(3050), + [anon_sym_thread] = ACTIONS(3050), + [anon_sym_atomic] = ACTIONS(3050), + [sym___double_quote] = ACTIONS(3050), + [sym___single_quote] = ACTIONS(3050), + [sym___c_double_quote] = ACTIONS(3050), + [sym___c_single_quote] = ACTIONS(3050), + [sym___r_double_quote] = ACTIONS(3050), + [sym___r_single_quote] = ACTIONS(3050), + }, + [1154] = { + [sym_line_comment] = STATE(1154), + [sym_block_comment] = STATE(1154), + [sym_identifier] = ACTIONS(3746), + [anon_sym_LF] = ACTIONS(3749), + [anon_sym_CR] = ACTIONS(3749), + [anon_sym_CR_LF] = ACTIONS(3749), + [anon_sym_SLASH_SLASH] = ACTIONS(497), + [anon_sym_SLASH_STAR] = ACTIONS(499), + [anon_sym_SEMI] = ACTIONS(3749), + [anon_sym_DOT] = ACTIONS(2515), + [anon_sym_as] = ACTIONS(2513), + [anon_sym_LBRACE] = ACTIONS(2513), + [anon_sym_COMMA] = ACTIONS(3749), + [anon_sym_RBRACE] = ACTIONS(3746), + [anon_sym_LPAREN] = ACTIONS(2513), + [anon_sym_PIPE] = ACTIONS(2513), + [anon_sym_fn] = ACTIONS(2513), + [anon_sym_PLUS] = ACTIONS(2513), + [anon_sym_DASH] = ACTIONS(2513), + [anon_sym_STAR] = ACTIONS(2513), + [anon_sym_SLASH] = ACTIONS(2513), + [anon_sym_PERCENT] = ACTIONS(2513), + [anon_sym_LT] = ACTIONS(2513), + [anon_sym_GT] = ACTIONS(2513), + [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_DOT_DOT_DOT] = ACTIONS(3752), + [anon_sym_LBRACK] = ACTIONS(2511), + [anon_sym_struct] = ACTIONS(2513), + [anon_sym_mut] = ACTIONS(2513), + [anon_sym_COLON] = ACTIONS(3754), + [anon_sym_PLUS_PLUS] = ACTIONS(2513), + [anon_sym_DASH_DASH] = ACTIONS(2513), + [anon_sym_QMARK] = ACTIONS(2513), + [anon_sym_BANG] = ACTIONS(2513), + [anon_sym_go] = ACTIONS(2513), + [anon_sym_spawn] = ACTIONS(2513), + [anon_sym_json_DOTdecode] = ACTIONS(2513), + [anon_sym_LBRACK2] = ACTIONS(2513), + [anon_sym_TILDE] = ACTIONS(2513), + [anon_sym_CARET] = ACTIONS(2513), + [anon_sym_AMP] = ACTIONS(2513), + [anon_sym_LT_DASH] = ACTIONS(2513), + [anon_sym_LT_LT] = ACTIONS(2513), + [anon_sym_GT_GT] = ACTIONS(2513), + [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(2513), + [sym_none] = ACTIONS(2513), + [sym_true] = ACTIONS(2513), + [sym_false] = ACTIONS(2513), + [sym_nil] = ACTIONS(2513), + [anon_sym_QMARK_DOT] = ACTIONS(2513), + [anon_sym_POUND_LBRACK] = ACTIONS(2513), + [anon_sym_if] = ACTIONS(2513), + [anon_sym_DOLLARif] = ACTIONS(2513), + [anon_sym_is] = ACTIONS(2513), + [anon_sym_BANGis] = ACTIONS(2513), + [anon_sym_in] = ACTIONS(2513), + [anon_sym_BANGin] = ACTIONS(2513), + [anon_sym_match] = ACTIONS(2513), + [anon_sym_select] = ACTIONS(2513), + [anon_sym_lock] = ACTIONS(2513), + [anon_sym_rlock] = ACTIONS(2513), + [anon_sym_unsafe] = ACTIONS(2513), + [anon_sym_sql] = ACTIONS(2513), + [sym_int_literal] = ACTIONS(2513), + [sym_float_literal] = ACTIONS(2513), + [sym_rune_literal] = ACTIONS(2513), + [sym_pseudo_compile_time_identifier] = ACTIONS(2513), + [anon_sym_shared] = ACTIONS(2513), + [anon_sym_map_LBRACK] = ACTIONS(2513), + [anon_sym_chan] = ACTIONS(2513), + [anon_sym_thread] = ACTIONS(2513), + [anon_sym_atomic] = ACTIONS(2513), + [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), + }, + [1155] = { + [sym_line_comment] = STATE(1155), + [sym_block_comment] = STATE(1155), + [sym_identifier] = ACTIONS(2668), + [anon_sym_LF] = ACTIONS(2668), + [anon_sym_CR] = ACTIONS(2668), + [anon_sym_CR_LF] = ACTIONS(2668), + [anon_sym_SLASH_SLASH] = ACTIONS(497), + [anon_sym_SLASH_STAR] = ACTIONS(499), + [anon_sym_SEMI] = ACTIONS(2668), + [anon_sym_DOT] = ACTIONS(2668), + [anon_sym_as] = ACTIONS(2668), + [anon_sym_LBRACE] = ACTIONS(2668), + [anon_sym_COMMA] = ACTIONS(2668), + [anon_sym_RBRACE] = ACTIONS(2668), + [anon_sym_LPAREN] = ACTIONS(2668), + [anon_sym_RPAREN] = ACTIONS(2668), + [anon_sym_PIPE] = ACTIONS(2668), + [anon_sym_fn] = ACTIONS(2668), + [anon_sym_PLUS] = ACTIONS(2668), + [anon_sym_DASH] = ACTIONS(2668), + [anon_sym_STAR] = ACTIONS(2668), + [anon_sym_SLASH] = ACTIONS(2668), + [anon_sym_PERCENT] = ACTIONS(2668), + [anon_sym_LT] = ACTIONS(2668), + [anon_sym_GT] = ACTIONS(2668), + [anon_sym_EQ_EQ] = ACTIONS(2668), + [anon_sym_BANG_EQ] = ACTIONS(2668), + [anon_sym_LT_EQ] = ACTIONS(2668), + [anon_sym_GT_EQ] = ACTIONS(2668), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2668), + [anon_sym_LBRACK] = ACTIONS(2666), + [anon_sym_struct] = ACTIONS(2668), + [anon_sym_mut] = ACTIONS(2668), + [anon_sym_PLUS_PLUS] = ACTIONS(2668), + [anon_sym_DASH_DASH] = ACTIONS(2668), + [anon_sym_QMARK] = ACTIONS(2668), + [anon_sym_BANG] = ACTIONS(2668), + [anon_sym_go] = ACTIONS(2668), + [anon_sym_spawn] = ACTIONS(2668), + [anon_sym_json_DOTdecode] = ACTIONS(2668), + [anon_sym_LBRACK2] = ACTIONS(2668), + [anon_sym_TILDE] = ACTIONS(2668), + [anon_sym_CARET] = ACTIONS(2668), + [anon_sym_AMP] = ACTIONS(2668), + [anon_sym_LT_DASH] = ACTIONS(2668), + [anon_sym_LT_LT] = ACTIONS(2668), + [anon_sym_GT_GT] = ACTIONS(2668), + [anon_sym_GT_GT_GT] = ACTIONS(2668), + [anon_sym_AMP_CARET] = ACTIONS(2668), + [anon_sym_AMP_AMP] = ACTIONS(2668), + [anon_sym_PIPE_PIPE] = ACTIONS(2668), + [anon_sym_or] = ACTIONS(2668), + [sym_none] = ACTIONS(2668), + [sym_true] = ACTIONS(2668), + [sym_false] = ACTIONS(2668), + [sym_nil] = ACTIONS(2668), + [anon_sym_QMARK_DOT] = ACTIONS(2668), + [anon_sym_POUND_LBRACK] = ACTIONS(2668), + [anon_sym_if] = ACTIONS(2668), + [anon_sym_DOLLARif] = ACTIONS(2668), + [anon_sym_is] = ACTIONS(2668), + [anon_sym_BANGis] = ACTIONS(2668), + [anon_sym_in] = ACTIONS(2668), + [anon_sym_BANGin] = ACTIONS(2668), + [anon_sym_match] = ACTIONS(2668), + [anon_sym_select] = ACTIONS(2668), + [anon_sym_lock] = ACTIONS(2668), + [anon_sym_rlock] = ACTIONS(2668), + [anon_sym_unsafe] = ACTIONS(2668), + [anon_sym_sql] = ACTIONS(2668), + [sym_int_literal] = ACTIONS(2668), + [sym_float_literal] = ACTIONS(2668), + [sym_rune_literal] = ACTIONS(2668), + [sym_pseudo_compile_time_identifier] = ACTIONS(2668), + [anon_sym_shared] = ACTIONS(2668), + [anon_sym_map_LBRACK] = ACTIONS(2668), + [anon_sym_chan] = ACTIONS(2668), + [anon_sym_thread] = ACTIONS(2668), + [anon_sym_atomic] = ACTIONS(2668), + [sym___double_quote] = ACTIONS(2668), + [sym___single_quote] = ACTIONS(2668), + [sym___c_double_quote] = ACTIONS(2668), + [sym___c_single_quote] = ACTIONS(2668), + [sym___r_double_quote] = ACTIONS(2668), + [sym___r_single_quote] = ACTIONS(2668), + }, + [1156] = { + [sym_line_comment] = STATE(1156), + [sym_block_comment] = STATE(1156), + [sym_identifier] = ACTIONS(2910), + [anon_sym_LF] = ACTIONS(2910), + [anon_sym_CR] = ACTIONS(2910), + [anon_sym_CR_LF] = ACTIONS(2910), + [anon_sym_SLASH_SLASH] = ACTIONS(497), + [anon_sym_SLASH_STAR] = ACTIONS(499), + [anon_sym_SEMI] = ACTIONS(2910), + [anon_sym_DOT] = ACTIONS(2910), + [anon_sym_as] = ACTIONS(2910), + [anon_sym_LBRACE] = ACTIONS(2910), + [anon_sym_COMMA] = ACTIONS(2910), + [anon_sym_RBRACE] = ACTIONS(2910), + [anon_sym_LPAREN] = ACTIONS(2910), + [anon_sym_RPAREN] = ACTIONS(2910), + [anon_sym_PIPE] = ACTIONS(2910), + [anon_sym_fn] = ACTIONS(2910), + [anon_sym_PLUS] = ACTIONS(2910), + [anon_sym_DASH] = ACTIONS(2910), + [anon_sym_STAR] = ACTIONS(2910), + [anon_sym_SLASH] = ACTIONS(2910), + [anon_sym_PERCENT] = ACTIONS(2910), + [anon_sym_LT] = ACTIONS(2910), + [anon_sym_GT] = ACTIONS(2910), + [anon_sym_EQ_EQ] = ACTIONS(2910), + [anon_sym_BANG_EQ] = ACTIONS(2910), + [anon_sym_LT_EQ] = ACTIONS(2910), + [anon_sym_GT_EQ] = ACTIONS(2910), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2910), + [anon_sym_LBRACK] = ACTIONS(2908), + [anon_sym_struct] = ACTIONS(2910), + [anon_sym_mut] = ACTIONS(2910), + [anon_sym_PLUS_PLUS] = ACTIONS(2910), + [anon_sym_DASH_DASH] = ACTIONS(2910), + [anon_sym_QMARK] = ACTIONS(2910), + [anon_sym_BANG] = ACTIONS(2910), + [anon_sym_go] = ACTIONS(2910), + [anon_sym_spawn] = ACTIONS(2910), + [anon_sym_json_DOTdecode] = ACTIONS(2910), + [anon_sym_LBRACK2] = ACTIONS(2910), + [anon_sym_TILDE] = ACTIONS(2910), + [anon_sym_CARET] = ACTIONS(2910), + [anon_sym_AMP] = ACTIONS(2910), + [anon_sym_LT_DASH] = ACTIONS(2910), + [anon_sym_LT_LT] = ACTIONS(2910), + [anon_sym_GT_GT] = ACTIONS(2910), + [anon_sym_GT_GT_GT] = ACTIONS(2910), + [anon_sym_AMP_CARET] = ACTIONS(2910), + [anon_sym_AMP_AMP] = ACTIONS(2910), + [anon_sym_PIPE_PIPE] = ACTIONS(2910), + [anon_sym_or] = ACTIONS(2910), + [sym_none] = ACTIONS(2910), + [sym_true] = ACTIONS(2910), + [sym_false] = ACTIONS(2910), + [sym_nil] = ACTIONS(2910), + [anon_sym_QMARK_DOT] = ACTIONS(2910), + [anon_sym_POUND_LBRACK] = ACTIONS(2910), + [anon_sym_if] = ACTIONS(2910), + [anon_sym_DOLLARif] = ACTIONS(2910), + [anon_sym_is] = ACTIONS(2910), + [anon_sym_BANGis] = ACTIONS(2910), + [anon_sym_in] = ACTIONS(2910), + [anon_sym_BANGin] = ACTIONS(2910), + [anon_sym_match] = ACTIONS(2910), + [anon_sym_select] = ACTIONS(2910), + [anon_sym_lock] = ACTIONS(2910), + [anon_sym_rlock] = ACTIONS(2910), + [anon_sym_unsafe] = ACTIONS(2910), + [anon_sym_sql] = ACTIONS(2910), + [sym_int_literal] = ACTIONS(2910), + [sym_float_literal] = ACTIONS(2910), + [sym_rune_literal] = ACTIONS(2910), + [sym_pseudo_compile_time_identifier] = ACTIONS(2910), + [anon_sym_shared] = ACTIONS(2910), + [anon_sym_map_LBRACK] = ACTIONS(2910), + [anon_sym_chan] = ACTIONS(2910), + [anon_sym_thread] = ACTIONS(2910), + [anon_sym_atomic] = ACTIONS(2910), + [sym___double_quote] = ACTIONS(2910), + [sym___single_quote] = ACTIONS(2910), + [sym___c_double_quote] = ACTIONS(2910), + [sym___c_single_quote] = ACTIONS(2910), + [sym___r_double_quote] = ACTIONS(2910), + [sym___r_single_quote] = ACTIONS(2910), + }, + [1157] = { + [sym_line_comment] = STATE(1157), + [sym_block_comment] = STATE(1157), + [sym_identifier] = ACTIONS(2886), + [anon_sym_LF] = ACTIONS(2886), + [anon_sym_CR] = ACTIONS(2886), + [anon_sym_CR_LF] = ACTIONS(2886), + [anon_sym_SLASH_SLASH] = ACTIONS(497), + [anon_sym_SLASH_STAR] = ACTIONS(499), + [anon_sym_SEMI] = ACTIONS(2886), + [anon_sym_DOT] = ACTIONS(2886), + [anon_sym_as] = ACTIONS(2886), + [anon_sym_LBRACE] = ACTIONS(2886), + [anon_sym_COMMA] = ACTIONS(2886), + [anon_sym_RBRACE] = ACTIONS(2886), + [anon_sym_LPAREN] = ACTIONS(2886), + [anon_sym_RPAREN] = ACTIONS(2886), + [anon_sym_PIPE] = ACTIONS(2886), + [anon_sym_fn] = ACTIONS(2886), + [anon_sym_PLUS] = ACTIONS(2886), + [anon_sym_DASH] = ACTIONS(2886), + [anon_sym_STAR] = ACTIONS(2886), + [anon_sym_SLASH] = ACTIONS(2886), + [anon_sym_PERCENT] = ACTIONS(2886), + [anon_sym_LT] = ACTIONS(2886), + [anon_sym_GT] = ACTIONS(2886), + [anon_sym_EQ_EQ] = ACTIONS(2886), + [anon_sym_BANG_EQ] = ACTIONS(2886), + [anon_sym_LT_EQ] = ACTIONS(2886), + [anon_sym_GT_EQ] = ACTIONS(2886), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2886), + [anon_sym_LBRACK] = ACTIONS(2884), + [anon_sym_struct] = ACTIONS(2886), + [anon_sym_mut] = ACTIONS(2886), + [anon_sym_PLUS_PLUS] = ACTIONS(2886), + [anon_sym_DASH_DASH] = ACTIONS(2886), + [anon_sym_QMARK] = ACTIONS(2886), + [anon_sym_BANG] = ACTIONS(2886), + [anon_sym_go] = ACTIONS(2886), + [anon_sym_spawn] = ACTIONS(2886), + [anon_sym_json_DOTdecode] = ACTIONS(2886), + [anon_sym_LBRACK2] = ACTIONS(2886), + [anon_sym_TILDE] = ACTIONS(2886), + [anon_sym_CARET] = ACTIONS(2886), + [anon_sym_AMP] = ACTIONS(2886), + [anon_sym_LT_DASH] = ACTIONS(2886), + [anon_sym_LT_LT] = ACTIONS(2886), + [anon_sym_GT_GT] = ACTIONS(2886), + [anon_sym_GT_GT_GT] = ACTIONS(2886), + [anon_sym_AMP_CARET] = ACTIONS(2886), + [anon_sym_AMP_AMP] = ACTIONS(2886), + [anon_sym_PIPE_PIPE] = ACTIONS(2886), + [anon_sym_or] = ACTIONS(2886), + [sym_none] = ACTIONS(2886), + [sym_true] = ACTIONS(2886), + [sym_false] = ACTIONS(2886), + [sym_nil] = ACTIONS(2886), + [anon_sym_QMARK_DOT] = ACTIONS(2886), + [anon_sym_POUND_LBRACK] = ACTIONS(2886), + [anon_sym_if] = ACTIONS(2886), + [anon_sym_DOLLARif] = ACTIONS(2886), + [anon_sym_is] = ACTIONS(2886), + [anon_sym_BANGis] = ACTIONS(2886), + [anon_sym_in] = ACTIONS(2886), + [anon_sym_BANGin] = ACTIONS(2886), + [anon_sym_match] = ACTIONS(2886), + [anon_sym_select] = ACTIONS(2886), + [anon_sym_lock] = ACTIONS(2886), + [anon_sym_rlock] = ACTIONS(2886), + [anon_sym_unsafe] = ACTIONS(2886), + [anon_sym_sql] = ACTIONS(2886), + [sym_int_literal] = ACTIONS(2886), + [sym_float_literal] = ACTIONS(2886), + [sym_rune_literal] = ACTIONS(2886), + [sym_pseudo_compile_time_identifier] = ACTIONS(2886), + [anon_sym_shared] = ACTIONS(2886), + [anon_sym_map_LBRACK] = ACTIONS(2886), + [anon_sym_chan] = ACTIONS(2886), + [anon_sym_thread] = ACTIONS(2886), + [anon_sym_atomic] = ACTIONS(2886), + [sym___double_quote] = ACTIONS(2886), + [sym___single_quote] = ACTIONS(2886), + [sym___c_double_quote] = ACTIONS(2886), + [sym___c_single_quote] = ACTIONS(2886), + [sym___r_double_quote] = ACTIONS(2886), + [sym___r_single_quote] = ACTIONS(2886), + }, + [1158] = { + [sym_line_comment] = STATE(1158), + [sym_block_comment] = STATE(1158), + [sym_identifier] = ACTIONS(2824), + [anon_sym_LF] = ACTIONS(2824), + [anon_sym_CR] = ACTIONS(2824), + [anon_sym_CR_LF] = ACTIONS(2824), + [anon_sym_SLASH_SLASH] = ACTIONS(497), + [anon_sym_SLASH_STAR] = ACTIONS(499), + [anon_sym_SEMI] = ACTIONS(2824), + [anon_sym_DOT] = ACTIONS(2824), + [anon_sym_as] = ACTIONS(2824), + [anon_sym_LBRACE] = ACTIONS(2824), + [anon_sym_COMMA] = ACTIONS(2824), + [anon_sym_RBRACE] = ACTIONS(2824), + [anon_sym_LPAREN] = ACTIONS(2824), + [anon_sym_RPAREN] = ACTIONS(2824), + [anon_sym_PIPE] = ACTIONS(2824), + [anon_sym_fn] = ACTIONS(2824), + [anon_sym_PLUS] = ACTIONS(2824), + [anon_sym_DASH] = ACTIONS(2824), + [anon_sym_STAR] = ACTIONS(2824), + [anon_sym_SLASH] = ACTIONS(2824), + [anon_sym_PERCENT] = ACTIONS(2824), + [anon_sym_LT] = ACTIONS(2824), + [anon_sym_GT] = ACTIONS(2824), + [anon_sym_EQ_EQ] = ACTIONS(2824), + [anon_sym_BANG_EQ] = ACTIONS(2824), + [anon_sym_LT_EQ] = ACTIONS(2824), + [anon_sym_GT_EQ] = ACTIONS(2824), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2824), + [anon_sym_LBRACK] = ACTIONS(2822), + [anon_sym_struct] = ACTIONS(2824), + [anon_sym_mut] = ACTIONS(2824), + [anon_sym_PLUS_PLUS] = ACTIONS(2824), + [anon_sym_DASH_DASH] = ACTIONS(2824), + [anon_sym_QMARK] = ACTIONS(2824), + [anon_sym_BANG] = ACTIONS(2824), + [anon_sym_go] = ACTIONS(2824), + [anon_sym_spawn] = ACTIONS(2824), + [anon_sym_json_DOTdecode] = ACTIONS(2824), + [anon_sym_LBRACK2] = ACTIONS(2824), + [anon_sym_TILDE] = ACTIONS(2824), + [anon_sym_CARET] = ACTIONS(2824), + [anon_sym_AMP] = ACTIONS(2824), + [anon_sym_LT_DASH] = ACTIONS(2824), + [anon_sym_LT_LT] = ACTIONS(2824), + [anon_sym_GT_GT] = ACTIONS(2824), + [anon_sym_GT_GT_GT] = ACTIONS(2824), + [anon_sym_AMP_CARET] = ACTIONS(2824), + [anon_sym_AMP_AMP] = ACTIONS(2824), + [anon_sym_PIPE_PIPE] = ACTIONS(2824), + [anon_sym_or] = ACTIONS(2824), + [sym_none] = ACTIONS(2824), + [sym_true] = ACTIONS(2824), + [sym_false] = ACTIONS(2824), + [sym_nil] = ACTIONS(2824), + [anon_sym_QMARK_DOT] = ACTIONS(2824), + [anon_sym_POUND_LBRACK] = ACTIONS(2824), + [anon_sym_if] = ACTIONS(2824), + [anon_sym_DOLLARif] = ACTIONS(2824), + [anon_sym_is] = ACTIONS(2824), + [anon_sym_BANGis] = ACTIONS(2824), + [anon_sym_in] = ACTIONS(2824), + [anon_sym_BANGin] = ACTIONS(2824), + [anon_sym_match] = ACTIONS(2824), + [anon_sym_select] = ACTIONS(2824), + [anon_sym_lock] = ACTIONS(2824), + [anon_sym_rlock] = ACTIONS(2824), + [anon_sym_unsafe] = ACTIONS(2824), + [anon_sym_sql] = ACTIONS(2824), + [sym_int_literal] = ACTIONS(2824), + [sym_float_literal] = ACTIONS(2824), + [sym_rune_literal] = ACTIONS(2824), + [sym_pseudo_compile_time_identifier] = ACTIONS(2824), + [anon_sym_shared] = ACTIONS(2824), + [anon_sym_map_LBRACK] = ACTIONS(2824), + [anon_sym_chan] = ACTIONS(2824), + [anon_sym_thread] = ACTIONS(2824), + [anon_sym_atomic] = ACTIONS(2824), + [sym___double_quote] = ACTIONS(2824), + [sym___single_quote] = ACTIONS(2824), + [sym___c_double_quote] = ACTIONS(2824), + [sym___c_single_quote] = ACTIONS(2824), + [sym___r_double_quote] = ACTIONS(2824), + [sym___r_single_quote] = ACTIONS(2824), + }, + [1159] = { + [sym_line_comment] = STATE(1159), + [sym_block_comment] = STATE(1159), + [sym_identifier] = ACTIONS(1889), + [anon_sym_LF] = ACTIONS(1889), + [anon_sym_CR] = ACTIONS(1889), + [anon_sym_CR_LF] = ACTIONS(1889), + [anon_sym_SLASH_SLASH] = ACTIONS(497), + [anon_sym_SLASH_STAR] = ACTIONS(499), + [anon_sym_SEMI] = ACTIONS(1889), + [anon_sym_DOT] = ACTIONS(1889), + [anon_sym_as] = ACTIONS(1889), + [anon_sym_LBRACE] = ACTIONS(1889), + [anon_sym_COMMA] = ACTIONS(1889), + [anon_sym_RBRACE] = ACTIONS(1889), + [anon_sym_LPAREN] = ACTIONS(1889), + [anon_sym_RPAREN] = ACTIONS(1889), + [anon_sym_PIPE] = ACTIONS(1889), + [anon_sym_fn] = ACTIONS(1889), + [anon_sym_PLUS] = ACTIONS(1889), + [anon_sym_DASH] = ACTIONS(1889), + [anon_sym_STAR] = ACTIONS(1889), + [anon_sym_SLASH] = ACTIONS(1889), + [anon_sym_PERCENT] = ACTIONS(1889), + [anon_sym_LT] = ACTIONS(1889), + [anon_sym_GT] = ACTIONS(1889), + [anon_sym_EQ_EQ] = ACTIONS(1889), + [anon_sym_BANG_EQ] = ACTIONS(1889), + [anon_sym_LT_EQ] = ACTIONS(1889), + [anon_sym_GT_EQ] = ACTIONS(1889), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1889), + [anon_sym_LBRACK] = ACTIONS(1887), + [anon_sym_struct] = ACTIONS(1889), + [anon_sym_mut] = ACTIONS(1889), + [anon_sym_PLUS_PLUS] = ACTIONS(1889), + [anon_sym_DASH_DASH] = ACTIONS(1889), + [anon_sym_QMARK] = ACTIONS(1889), + [anon_sym_BANG] = ACTIONS(1889), + [anon_sym_go] = ACTIONS(1889), + [anon_sym_spawn] = ACTIONS(1889), + [anon_sym_json_DOTdecode] = ACTIONS(1889), + [anon_sym_LBRACK2] = ACTIONS(1889), + [anon_sym_TILDE] = ACTIONS(1889), + [anon_sym_CARET] = ACTIONS(1889), + [anon_sym_AMP] = ACTIONS(1889), + [anon_sym_LT_DASH] = ACTIONS(1889), + [anon_sym_LT_LT] = ACTIONS(1889), + [anon_sym_GT_GT] = ACTIONS(1889), + [anon_sym_GT_GT_GT] = ACTIONS(1889), + [anon_sym_AMP_CARET] = ACTIONS(1889), + [anon_sym_AMP_AMP] = ACTIONS(1889), + [anon_sym_PIPE_PIPE] = ACTIONS(1889), + [anon_sym_or] = ACTIONS(1889), + [sym_none] = ACTIONS(1889), + [sym_true] = ACTIONS(1889), + [sym_false] = ACTIONS(1889), + [sym_nil] = ACTIONS(1889), + [anon_sym_QMARK_DOT] = ACTIONS(1889), + [anon_sym_POUND_LBRACK] = ACTIONS(1889), + [anon_sym_if] = ACTIONS(1889), + [anon_sym_DOLLARif] = ACTIONS(1889), + [anon_sym_is] = ACTIONS(1889), + [anon_sym_BANGis] = ACTIONS(1889), + [anon_sym_in] = ACTIONS(1889), + [anon_sym_BANGin] = ACTIONS(1889), + [anon_sym_match] = ACTIONS(1889), + [anon_sym_select] = ACTIONS(1889), + [anon_sym_lock] = ACTIONS(1889), + [anon_sym_rlock] = ACTIONS(1889), + [anon_sym_unsafe] = ACTIONS(1889), + [anon_sym_sql] = ACTIONS(1889), + [sym_int_literal] = ACTIONS(1889), + [sym_float_literal] = ACTIONS(1889), + [sym_rune_literal] = ACTIONS(1889), + [sym_pseudo_compile_time_identifier] = ACTIONS(1889), + [anon_sym_shared] = ACTIONS(1889), + [anon_sym_map_LBRACK] = ACTIONS(1889), + [anon_sym_chan] = ACTIONS(1889), + [anon_sym_thread] = ACTIONS(1889), + [anon_sym_atomic] = ACTIONS(1889), + [sym___double_quote] = ACTIONS(1889), + [sym___single_quote] = ACTIONS(1889), + [sym___c_double_quote] = ACTIONS(1889), + [sym___c_single_quote] = ACTIONS(1889), + [sym___r_double_quote] = ACTIONS(1889), + [sym___r_single_quote] = ACTIONS(1889), + }, + [1160] = { + [sym_line_comment] = STATE(1160), + [sym_block_comment] = STATE(1160), + [sym_identifier] = ACTIONS(2828), + [anon_sym_LF] = ACTIONS(2828), + [anon_sym_CR] = ACTIONS(2828), + [anon_sym_CR_LF] = ACTIONS(2828), + [anon_sym_SLASH_SLASH] = ACTIONS(497), + [anon_sym_SLASH_STAR] = ACTIONS(499), + [anon_sym_SEMI] = ACTIONS(2828), + [anon_sym_DOT] = ACTIONS(2828), + [anon_sym_as] = ACTIONS(2828), + [anon_sym_LBRACE] = ACTIONS(2828), + [anon_sym_COMMA] = ACTIONS(2828), + [anon_sym_RBRACE] = ACTIONS(2828), + [anon_sym_LPAREN] = ACTIONS(2828), + [anon_sym_RPAREN] = ACTIONS(2828), + [anon_sym_PIPE] = ACTIONS(2828), + [anon_sym_fn] = ACTIONS(2828), + [anon_sym_PLUS] = ACTIONS(2828), + [anon_sym_DASH] = ACTIONS(2828), + [anon_sym_STAR] = ACTIONS(2828), + [anon_sym_SLASH] = ACTIONS(2828), + [anon_sym_PERCENT] = ACTIONS(2828), + [anon_sym_LT] = ACTIONS(2828), + [anon_sym_GT] = ACTIONS(2828), + [anon_sym_EQ_EQ] = ACTIONS(2828), + [anon_sym_BANG_EQ] = ACTIONS(2828), + [anon_sym_LT_EQ] = ACTIONS(2828), + [anon_sym_GT_EQ] = ACTIONS(2828), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2828), + [anon_sym_LBRACK] = ACTIONS(2826), + [anon_sym_struct] = ACTIONS(2828), + [anon_sym_mut] = ACTIONS(2828), + [anon_sym_PLUS_PLUS] = ACTIONS(2828), + [anon_sym_DASH_DASH] = ACTIONS(2828), + [anon_sym_QMARK] = ACTIONS(2828), + [anon_sym_BANG] = ACTIONS(2828), + [anon_sym_go] = ACTIONS(2828), + [anon_sym_spawn] = ACTIONS(2828), + [anon_sym_json_DOTdecode] = ACTIONS(2828), + [anon_sym_LBRACK2] = ACTIONS(2828), + [anon_sym_TILDE] = ACTIONS(2828), + [anon_sym_CARET] = ACTIONS(2828), + [anon_sym_AMP] = ACTIONS(2828), + [anon_sym_LT_DASH] = ACTIONS(2828), + [anon_sym_LT_LT] = ACTIONS(2828), + [anon_sym_GT_GT] = ACTIONS(2828), + [anon_sym_GT_GT_GT] = ACTIONS(2828), + [anon_sym_AMP_CARET] = ACTIONS(2828), + [anon_sym_AMP_AMP] = ACTIONS(2828), + [anon_sym_PIPE_PIPE] = ACTIONS(2828), + [anon_sym_or] = ACTIONS(2828), + [sym_none] = ACTIONS(2828), + [sym_true] = ACTIONS(2828), + [sym_false] = ACTIONS(2828), + [sym_nil] = ACTIONS(2828), + [anon_sym_QMARK_DOT] = ACTIONS(2828), + [anon_sym_POUND_LBRACK] = ACTIONS(2828), + [anon_sym_if] = ACTIONS(2828), + [anon_sym_DOLLARif] = ACTIONS(2828), + [anon_sym_is] = ACTIONS(2828), + [anon_sym_BANGis] = ACTIONS(2828), + [anon_sym_in] = ACTIONS(2828), + [anon_sym_BANGin] = ACTIONS(2828), + [anon_sym_match] = ACTIONS(2828), + [anon_sym_select] = ACTIONS(2828), + [anon_sym_lock] = ACTIONS(2828), + [anon_sym_rlock] = ACTIONS(2828), + [anon_sym_unsafe] = ACTIONS(2828), + [anon_sym_sql] = ACTIONS(2828), + [sym_int_literal] = ACTIONS(2828), + [sym_float_literal] = ACTIONS(2828), + [sym_rune_literal] = ACTIONS(2828), + [sym_pseudo_compile_time_identifier] = ACTIONS(2828), + [anon_sym_shared] = ACTIONS(2828), + [anon_sym_map_LBRACK] = ACTIONS(2828), + [anon_sym_chan] = ACTIONS(2828), + [anon_sym_thread] = ACTIONS(2828), + [anon_sym_atomic] = ACTIONS(2828), + [sym___double_quote] = ACTIONS(2828), + [sym___single_quote] = ACTIONS(2828), + [sym___c_double_quote] = ACTIONS(2828), + [sym___c_single_quote] = ACTIONS(2828), + [sym___r_double_quote] = ACTIONS(2828), + [sym___r_single_quote] = ACTIONS(2828), + }, + [1161] = { + [sym_line_comment] = STATE(1161), + [sym_block_comment] = STATE(1161), + [sym_identifier] = ACTIONS(2680), + [anon_sym_LF] = ACTIONS(2680), + [anon_sym_CR] = ACTIONS(2680), + [anon_sym_CR_LF] = ACTIONS(2680), + [anon_sym_SLASH_SLASH] = ACTIONS(497), + [anon_sym_SLASH_STAR] = ACTIONS(499), + [anon_sym_SEMI] = ACTIONS(2680), + [anon_sym_DOT] = ACTIONS(2680), + [anon_sym_as] = ACTIONS(2680), + [anon_sym_LBRACE] = ACTIONS(2680), + [anon_sym_COMMA] = ACTIONS(2680), + [anon_sym_RBRACE] = ACTIONS(2680), + [anon_sym_LPAREN] = ACTIONS(2680), + [anon_sym_RPAREN] = ACTIONS(2680), + [anon_sym_PIPE] = ACTIONS(2680), + [anon_sym_fn] = ACTIONS(2680), + [anon_sym_PLUS] = ACTIONS(2680), + [anon_sym_DASH] = ACTIONS(2680), + [anon_sym_STAR] = ACTIONS(2680), + [anon_sym_SLASH] = ACTIONS(2680), + [anon_sym_PERCENT] = ACTIONS(2680), + [anon_sym_LT] = ACTIONS(2680), + [anon_sym_GT] = ACTIONS(2680), + [anon_sym_EQ_EQ] = ACTIONS(2680), + [anon_sym_BANG_EQ] = ACTIONS(2680), + [anon_sym_LT_EQ] = ACTIONS(2680), + [anon_sym_GT_EQ] = ACTIONS(2680), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2680), + [anon_sym_LBRACK] = ACTIONS(2678), + [anon_sym_struct] = ACTIONS(2680), + [anon_sym_mut] = ACTIONS(2680), + [anon_sym_PLUS_PLUS] = ACTIONS(2680), + [anon_sym_DASH_DASH] = ACTIONS(2680), + [anon_sym_QMARK] = ACTIONS(2680), + [anon_sym_BANG] = ACTIONS(2680), + [anon_sym_go] = ACTIONS(2680), + [anon_sym_spawn] = ACTIONS(2680), + [anon_sym_json_DOTdecode] = ACTIONS(2680), + [anon_sym_LBRACK2] = ACTIONS(2680), + [anon_sym_TILDE] = ACTIONS(2680), + [anon_sym_CARET] = ACTIONS(2680), + [anon_sym_AMP] = ACTIONS(2680), + [anon_sym_LT_DASH] = ACTIONS(2680), + [anon_sym_LT_LT] = ACTIONS(2680), + [anon_sym_GT_GT] = ACTIONS(2680), + [anon_sym_GT_GT_GT] = ACTIONS(2680), + [anon_sym_AMP_CARET] = ACTIONS(2680), + [anon_sym_AMP_AMP] = ACTIONS(2680), + [anon_sym_PIPE_PIPE] = ACTIONS(2680), + [anon_sym_or] = ACTIONS(2680), + [sym_none] = ACTIONS(2680), + [sym_true] = ACTIONS(2680), + [sym_false] = ACTIONS(2680), + [sym_nil] = ACTIONS(2680), + [anon_sym_QMARK_DOT] = ACTIONS(2680), + [anon_sym_POUND_LBRACK] = ACTIONS(2680), + [anon_sym_if] = ACTIONS(2680), + [anon_sym_DOLLARif] = ACTIONS(2680), + [anon_sym_is] = ACTIONS(2680), + [anon_sym_BANGis] = ACTIONS(2680), + [anon_sym_in] = ACTIONS(2680), + [anon_sym_BANGin] = ACTIONS(2680), + [anon_sym_match] = ACTIONS(2680), + [anon_sym_select] = ACTIONS(2680), + [anon_sym_lock] = ACTIONS(2680), + [anon_sym_rlock] = ACTIONS(2680), + [anon_sym_unsafe] = ACTIONS(2680), + [anon_sym_sql] = ACTIONS(2680), + [sym_int_literal] = ACTIONS(2680), + [sym_float_literal] = ACTIONS(2680), + [sym_rune_literal] = ACTIONS(2680), + [sym_pseudo_compile_time_identifier] = ACTIONS(2680), + [anon_sym_shared] = ACTIONS(2680), + [anon_sym_map_LBRACK] = ACTIONS(2680), + [anon_sym_chan] = ACTIONS(2680), + [anon_sym_thread] = ACTIONS(2680), + [anon_sym_atomic] = ACTIONS(2680), + [sym___double_quote] = ACTIONS(2680), + [sym___single_quote] = ACTIONS(2680), + [sym___c_double_quote] = ACTIONS(2680), + [sym___c_single_quote] = ACTIONS(2680), + [sym___r_double_quote] = ACTIONS(2680), + [sym___r_single_quote] = ACTIONS(2680), + }, + [1162] = { + [sym_line_comment] = STATE(1162), + [sym_block_comment] = STATE(1162), + [sym_identifier] = ACTIONS(2836), + [anon_sym_LF] = ACTIONS(2836), + [anon_sym_CR] = ACTIONS(2836), + [anon_sym_CR_LF] = ACTIONS(2836), + [anon_sym_SLASH_SLASH] = ACTIONS(497), + [anon_sym_SLASH_STAR] = ACTIONS(499), + [anon_sym_SEMI] = ACTIONS(2836), + [anon_sym_DOT] = ACTIONS(2836), + [anon_sym_as] = ACTIONS(2836), + [anon_sym_LBRACE] = ACTIONS(2836), + [anon_sym_COMMA] = ACTIONS(2836), + [anon_sym_RBRACE] = ACTIONS(2836), + [anon_sym_LPAREN] = ACTIONS(2836), + [anon_sym_RPAREN] = ACTIONS(2836), + [anon_sym_PIPE] = ACTIONS(2836), + [anon_sym_fn] = ACTIONS(2836), + [anon_sym_PLUS] = ACTIONS(2836), + [anon_sym_DASH] = ACTIONS(2836), + [anon_sym_STAR] = ACTIONS(2836), + [anon_sym_SLASH] = ACTIONS(2836), + [anon_sym_PERCENT] = ACTIONS(2836), + [anon_sym_LT] = ACTIONS(2836), + [anon_sym_GT] = ACTIONS(2836), + [anon_sym_EQ_EQ] = ACTIONS(2836), + [anon_sym_BANG_EQ] = ACTIONS(2836), + [anon_sym_LT_EQ] = ACTIONS(2836), + [anon_sym_GT_EQ] = ACTIONS(2836), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2836), + [anon_sym_LBRACK] = ACTIONS(2834), + [anon_sym_struct] = ACTIONS(2836), + [anon_sym_mut] = ACTIONS(2836), + [anon_sym_PLUS_PLUS] = ACTIONS(2836), + [anon_sym_DASH_DASH] = ACTIONS(2836), + [anon_sym_QMARK] = ACTIONS(2836), + [anon_sym_BANG] = ACTIONS(2836), + [anon_sym_go] = ACTIONS(2836), + [anon_sym_spawn] = ACTIONS(2836), + [anon_sym_json_DOTdecode] = ACTIONS(2836), + [anon_sym_LBRACK2] = ACTIONS(2836), + [anon_sym_TILDE] = ACTIONS(2836), + [anon_sym_CARET] = ACTIONS(2836), + [anon_sym_AMP] = ACTIONS(2836), + [anon_sym_LT_DASH] = ACTIONS(2836), + [anon_sym_LT_LT] = ACTIONS(2836), + [anon_sym_GT_GT] = ACTIONS(2836), + [anon_sym_GT_GT_GT] = ACTIONS(2836), + [anon_sym_AMP_CARET] = ACTIONS(2836), + [anon_sym_AMP_AMP] = ACTIONS(2836), + [anon_sym_PIPE_PIPE] = ACTIONS(2836), + [anon_sym_or] = ACTIONS(2836), + [sym_none] = ACTIONS(2836), + [sym_true] = ACTIONS(2836), + [sym_false] = ACTIONS(2836), + [sym_nil] = ACTIONS(2836), + [anon_sym_QMARK_DOT] = ACTIONS(2836), + [anon_sym_POUND_LBRACK] = ACTIONS(2836), + [anon_sym_if] = ACTIONS(2836), + [anon_sym_DOLLARif] = ACTIONS(2836), + [anon_sym_is] = ACTIONS(2836), + [anon_sym_BANGis] = ACTIONS(2836), + [anon_sym_in] = ACTIONS(2836), + [anon_sym_BANGin] = ACTIONS(2836), + [anon_sym_match] = ACTIONS(2836), + [anon_sym_select] = ACTIONS(2836), + [anon_sym_lock] = ACTIONS(2836), + [anon_sym_rlock] = ACTIONS(2836), + [anon_sym_unsafe] = ACTIONS(2836), + [anon_sym_sql] = ACTIONS(2836), + [sym_int_literal] = ACTIONS(2836), + [sym_float_literal] = ACTIONS(2836), + [sym_rune_literal] = ACTIONS(2836), + [sym_pseudo_compile_time_identifier] = ACTIONS(2836), + [anon_sym_shared] = ACTIONS(2836), + [anon_sym_map_LBRACK] = ACTIONS(2836), + [anon_sym_chan] = ACTIONS(2836), + [anon_sym_thread] = ACTIONS(2836), + [anon_sym_atomic] = ACTIONS(2836), + [sym___double_quote] = ACTIONS(2836), + [sym___single_quote] = ACTIONS(2836), + [sym___c_double_quote] = ACTIONS(2836), + [sym___c_single_quote] = ACTIONS(2836), + [sym___r_double_quote] = ACTIONS(2836), + [sym___r_single_quote] = ACTIONS(2836), + }, + [1163] = { + [sym_line_comment] = STATE(1163), + [sym_block_comment] = STATE(1163), + [sym_identifier] = ACTIONS(2704), + [anon_sym_LF] = ACTIONS(2704), + [anon_sym_CR] = ACTIONS(2704), + [anon_sym_CR_LF] = ACTIONS(2704), + [anon_sym_SLASH_SLASH] = ACTIONS(497), + [anon_sym_SLASH_STAR] = ACTIONS(499), + [anon_sym_SEMI] = ACTIONS(2704), + [anon_sym_DOT] = ACTIONS(2704), + [anon_sym_as] = ACTIONS(2704), + [anon_sym_LBRACE] = ACTIONS(2704), + [anon_sym_COMMA] = ACTIONS(2704), + [anon_sym_RBRACE] = ACTIONS(2704), + [anon_sym_LPAREN] = ACTIONS(2704), + [anon_sym_RPAREN] = ACTIONS(2704), + [anon_sym_PIPE] = ACTIONS(2704), + [anon_sym_fn] = ACTIONS(2704), + [anon_sym_PLUS] = ACTIONS(2704), + [anon_sym_DASH] = ACTIONS(2704), + [anon_sym_STAR] = ACTIONS(2704), + [anon_sym_SLASH] = ACTIONS(2704), + [anon_sym_PERCENT] = ACTIONS(2704), + [anon_sym_LT] = ACTIONS(2704), + [anon_sym_GT] = ACTIONS(2704), + [anon_sym_EQ_EQ] = ACTIONS(2704), + [anon_sym_BANG_EQ] = ACTIONS(2704), + [anon_sym_LT_EQ] = ACTIONS(2704), + [anon_sym_GT_EQ] = ACTIONS(2704), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2704), + [anon_sym_LBRACK] = ACTIONS(2702), + [anon_sym_struct] = ACTIONS(2704), + [anon_sym_mut] = ACTIONS(2704), + [anon_sym_PLUS_PLUS] = ACTIONS(2704), + [anon_sym_DASH_DASH] = ACTIONS(2704), + [anon_sym_QMARK] = ACTIONS(2704), + [anon_sym_BANG] = ACTIONS(2704), + [anon_sym_go] = ACTIONS(2704), + [anon_sym_spawn] = ACTIONS(2704), + [anon_sym_json_DOTdecode] = ACTIONS(2704), + [anon_sym_LBRACK2] = ACTIONS(2704), + [anon_sym_TILDE] = ACTIONS(2704), + [anon_sym_CARET] = ACTIONS(2704), + [anon_sym_AMP] = ACTIONS(2704), + [anon_sym_LT_DASH] = ACTIONS(2704), + [anon_sym_LT_LT] = ACTIONS(2704), + [anon_sym_GT_GT] = ACTIONS(2704), + [anon_sym_GT_GT_GT] = ACTIONS(2704), + [anon_sym_AMP_CARET] = ACTIONS(2704), + [anon_sym_AMP_AMP] = ACTIONS(2704), + [anon_sym_PIPE_PIPE] = ACTIONS(2704), + [anon_sym_or] = ACTIONS(2704), + [sym_none] = ACTIONS(2704), + [sym_true] = ACTIONS(2704), + [sym_false] = ACTIONS(2704), + [sym_nil] = ACTIONS(2704), + [anon_sym_QMARK_DOT] = ACTIONS(2704), + [anon_sym_POUND_LBRACK] = ACTIONS(2704), + [anon_sym_if] = ACTIONS(2704), + [anon_sym_DOLLARif] = ACTIONS(2704), + [anon_sym_is] = ACTIONS(2704), + [anon_sym_BANGis] = ACTIONS(2704), + [anon_sym_in] = ACTIONS(2704), + [anon_sym_BANGin] = ACTIONS(2704), + [anon_sym_match] = ACTIONS(2704), + [anon_sym_select] = ACTIONS(2704), + [anon_sym_lock] = ACTIONS(2704), + [anon_sym_rlock] = ACTIONS(2704), + [anon_sym_unsafe] = ACTIONS(2704), + [anon_sym_sql] = ACTIONS(2704), + [sym_int_literal] = ACTIONS(2704), + [sym_float_literal] = ACTIONS(2704), + [sym_rune_literal] = ACTIONS(2704), + [sym_pseudo_compile_time_identifier] = ACTIONS(2704), + [anon_sym_shared] = ACTIONS(2704), + [anon_sym_map_LBRACK] = ACTIONS(2704), + [anon_sym_chan] = ACTIONS(2704), + [anon_sym_thread] = ACTIONS(2704), + [anon_sym_atomic] = ACTIONS(2704), + [sym___double_quote] = ACTIONS(2704), + [sym___single_quote] = ACTIONS(2704), + [sym___c_double_quote] = ACTIONS(2704), + [sym___c_single_quote] = ACTIONS(2704), + [sym___r_double_quote] = ACTIONS(2704), + [sym___r_single_quote] = ACTIONS(2704), + }, + [1164] = { + [sym_line_comment] = STATE(1164), + [sym_block_comment] = STATE(1164), + [sym_identifier] = ACTIONS(2538), + [anon_sym_LF] = ACTIONS(2538), + [anon_sym_CR] = ACTIONS(2538), + [anon_sym_CR_LF] = ACTIONS(2538), + [anon_sym_SLASH_SLASH] = ACTIONS(497), + [anon_sym_SLASH_STAR] = ACTIONS(499), + [anon_sym_SEMI] = ACTIONS(2538), + [anon_sym_DOT] = ACTIONS(2538), + [anon_sym_as] = ACTIONS(2538), + [anon_sym_LBRACE] = ACTIONS(2538), + [anon_sym_COMMA] = ACTIONS(2538), + [anon_sym_RBRACE] = ACTIONS(2538), + [anon_sym_LPAREN] = ACTIONS(2538), + [anon_sym_RPAREN] = ACTIONS(2538), + [anon_sym_PIPE] = ACTIONS(2538), + [anon_sym_fn] = ACTIONS(2538), + [anon_sym_PLUS] = ACTIONS(2538), + [anon_sym_DASH] = ACTIONS(2538), + [anon_sym_STAR] = ACTIONS(2538), + [anon_sym_SLASH] = ACTIONS(2538), + [anon_sym_PERCENT] = ACTIONS(2538), + [anon_sym_LT] = ACTIONS(2538), + [anon_sym_GT] = ACTIONS(2538), + [anon_sym_EQ_EQ] = ACTIONS(2538), + [anon_sym_BANG_EQ] = ACTIONS(2538), + [anon_sym_LT_EQ] = ACTIONS(2538), + [anon_sym_GT_EQ] = ACTIONS(2538), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2538), + [anon_sym_LBRACK] = ACTIONS(2536), + [anon_sym_struct] = ACTIONS(2538), + [anon_sym_mut] = ACTIONS(2538), + [anon_sym_PLUS_PLUS] = ACTIONS(2538), + [anon_sym_DASH_DASH] = ACTIONS(2538), + [anon_sym_QMARK] = ACTIONS(2538), + [anon_sym_BANG] = ACTIONS(2538), + [anon_sym_go] = ACTIONS(2538), + [anon_sym_spawn] = ACTIONS(2538), + [anon_sym_json_DOTdecode] = ACTIONS(2538), + [anon_sym_LBRACK2] = ACTIONS(2538), + [anon_sym_TILDE] = ACTIONS(2538), + [anon_sym_CARET] = ACTIONS(2538), + [anon_sym_AMP] = ACTIONS(2538), + [anon_sym_LT_DASH] = ACTIONS(2538), + [anon_sym_LT_LT] = ACTIONS(2538), + [anon_sym_GT_GT] = ACTIONS(2538), + [anon_sym_GT_GT_GT] = ACTIONS(2538), + [anon_sym_AMP_CARET] = ACTIONS(2538), + [anon_sym_AMP_AMP] = ACTIONS(2538), + [anon_sym_PIPE_PIPE] = ACTIONS(2538), + [anon_sym_or] = ACTIONS(2538), + [sym_none] = ACTIONS(2538), + [sym_true] = ACTIONS(2538), + [sym_false] = ACTIONS(2538), + [sym_nil] = ACTIONS(2538), + [anon_sym_QMARK_DOT] = ACTIONS(2538), + [anon_sym_POUND_LBRACK] = ACTIONS(2538), + [anon_sym_if] = ACTIONS(2538), + [anon_sym_DOLLARif] = ACTIONS(2538), + [anon_sym_is] = ACTIONS(2538), + [anon_sym_BANGis] = ACTIONS(2538), + [anon_sym_in] = ACTIONS(2538), + [anon_sym_BANGin] = ACTIONS(2538), + [anon_sym_match] = ACTIONS(2538), + [anon_sym_select] = ACTIONS(2538), + [anon_sym_lock] = ACTIONS(2538), + [anon_sym_rlock] = ACTIONS(2538), + [anon_sym_unsafe] = ACTIONS(2538), + [anon_sym_sql] = ACTIONS(2538), + [sym_int_literal] = ACTIONS(2538), + [sym_float_literal] = ACTIONS(2538), + [sym_rune_literal] = ACTIONS(2538), + [sym_pseudo_compile_time_identifier] = ACTIONS(2538), + [anon_sym_shared] = ACTIONS(2538), + [anon_sym_map_LBRACK] = ACTIONS(2538), + [anon_sym_chan] = ACTIONS(2538), + [anon_sym_thread] = ACTIONS(2538), + [anon_sym_atomic] = ACTIONS(2538), + [sym___double_quote] = ACTIONS(2538), + [sym___single_quote] = ACTIONS(2538), + [sym___c_double_quote] = ACTIONS(2538), + [sym___c_single_quote] = ACTIONS(2538), + [sym___r_double_quote] = ACTIONS(2538), + [sym___r_single_quote] = ACTIONS(2538), + }, + [1165] = { + [sym_line_comment] = STATE(1165), + [sym_block_comment] = STATE(1165), + [sym_identifier] = ACTIONS(2890), + [anon_sym_LF] = ACTIONS(2890), + [anon_sym_CR] = ACTIONS(2890), + [anon_sym_CR_LF] = ACTIONS(2890), + [anon_sym_SLASH_SLASH] = ACTIONS(497), + [anon_sym_SLASH_STAR] = ACTIONS(499), + [anon_sym_SEMI] = ACTIONS(2890), + [anon_sym_DOT] = ACTIONS(2890), + [anon_sym_as] = ACTIONS(2890), + [anon_sym_LBRACE] = ACTIONS(2890), + [anon_sym_COMMA] = ACTIONS(2890), + [anon_sym_RBRACE] = ACTIONS(2890), + [anon_sym_LPAREN] = ACTIONS(2890), + [anon_sym_RPAREN] = ACTIONS(2890), + [anon_sym_PIPE] = ACTIONS(2890), + [anon_sym_fn] = ACTIONS(2890), + [anon_sym_PLUS] = ACTIONS(2890), + [anon_sym_DASH] = ACTIONS(2890), + [anon_sym_STAR] = ACTIONS(2890), + [anon_sym_SLASH] = ACTIONS(2890), + [anon_sym_PERCENT] = ACTIONS(2890), + [anon_sym_LT] = ACTIONS(2890), + [anon_sym_GT] = ACTIONS(2890), + [anon_sym_EQ_EQ] = ACTIONS(2890), + [anon_sym_BANG_EQ] = ACTIONS(2890), + [anon_sym_LT_EQ] = ACTIONS(2890), + [anon_sym_GT_EQ] = ACTIONS(2890), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2890), + [anon_sym_LBRACK] = ACTIONS(2888), + [anon_sym_struct] = ACTIONS(2890), + [anon_sym_mut] = ACTIONS(2890), + [anon_sym_PLUS_PLUS] = ACTIONS(2890), + [anon_sym_DASH_DASH] = ACTIONS(2890), + [anon_sym_QMARK] = ACTIONS(2890), + [anon_sym_BANG] = ACTIONS(2890), + [anon_sym_go] = ACTIONS(2890), + [anon_sym_spawn] = ACTIONS(2890), + [anon_sym_json_DOTdecode] = ACTIONS(2890), + [anon_sym_LBRACK2] = ACTIONS(2890), + [anon_sym_TILDE] = ACTIONS(2890), + [anon_sym_CARET] = ACTIONS(2890), + [anon_sym_AMP] = ACTIONS(2890), + [anon_sym_LT_DASH] = ACTIONS(2890), + [anon_sym_LT_LT] = ACTIONS(2890), + [anon_sym_GT_GT] = ACTIONS(2890), + [anon_sym_GT_GT_GT] = ACTIONS(2890), + [anon_sym_AMP_CARET] = ACTIONS(2890), + [anon_sym_AMP_AMP] = ACTIONS(2890), + [anon_sym_PIPE_PIPE] = ACTIONS(2890), + [anon_sym_or] = ACTIONS(2890), + [sym_none] = ACTIONS(2890), + [sym_true] = ACTIONS(2890), + [sym_false] = ACTIONS(2890), + [sym_nil] = ACTIONS(2890), + [anon_sym_QMARK_DOT] = ACTIONS(2890), + [anon_sym_POUND_LBRACK] = ACTIONS(2890), + [anon_sym_if] = ACTIONS(2890), + [anon_sym_DOLLARif] = ACTIONS(2890), + [anon_sym_is] = ACTIONS(2890), + [anon_sym_BANGis] = ACTIONS(2890), + [anon_sym_in] = ACTIONS(2890), + [anon_sym_BANGin] = ACTIONS(2890), + [anon_sym_match] = ACTIONS(2890), + [anon_sym_select] = ACTIONS(2890), + [anon_sym_lock] = ACTIONS(2890), + [anon_sym_rlock] = ACTIONS(2890), + [anon_sym_unsafe] = ACTIONS(2890), + [anon_sym_sql] = ACTIONS(2890), + [sym_int_literal] = ACTIONS(2890), + [sym_float_literal] = ACTIONS(2890), + [sym_rune_literal] = ACTIONS(2890), + [sym_pseudo_compile_time_identifier] = ACTIONS(2890), + [anon_sym_shared] = ACTIONS(2890), + [anon_sym_map_LBRACK] = ACTIONS(2890), + [anon_sym_chan] = ACTIONS(2890), + [anon_sym_thread] = ACTIONS(2890), + [anon_sym_atomic] = ACTIONS(2890), + [sym___double_quote] = ACTIONS(2890), + [sym___single_quote] = ACTIONS(2890), + [sym___c_double_quote] = ACTIONS(2890), + [sym___c_single_quote] = ACTIONS(2890), + [sym___r_double_quote] = ACTIONS(2890), + [sym___r_single_quote] = ACTIONS(2890), }, - [1119] = { - [sym_line_comment] = STATE(1119), - [sym_block_comment] = STATE(1119), - [sym_reference_expression] = STATE(4451), - [sym_type_reference_expression] = STATE(1754), - [sym_plain_type] = STATE(1816), - [sym__plain_type_without_special] = STATE(1844), - [sym_anon_struct_type] = STATE(1791), - [sym_multi_return_type] = STATE(1844), - [sym_result_type] = STATE(1844), - [sym_option_type] = STATE(1844), - [sym_qualified_type] = STATE(1754), - [sym_fixed_array_type] = STATE(1791), - [sym_array_type] = STATE(1791), - [sym_pointer_type] = STATE(1791), - [sym_wrong_pointer_type] = STATE(1791), - [sym_map_type] = STATE(1791), - [sym_channel_type] = STATE(1791), - [sym_shared_type] = STATE(1791), - [sym_thread_type] = STATE(1791), - [sym_atomic_type] = STATE(1791), - [sym_generic_type] = STATE(1791), - [sym_function_type] = STATE(1791), - [sym_identifier] = ACTIONS(3690), - [anon_sym_LF] = ACTIONS(619), - [anon_sym_CR] = ACTIONS(619), - [anon_sym_CR_LF] = ACTIONS(619), + [1166] = { + [sym_line_comment] = STATE(1166), + [sym_block_comment] = STATE(1166), + [sym_identifier] = ACTIONS(2710), + [anon_sym_LF] = ACTIONS(2710), + [anon_sym_CR] = ACTIONS(2710), + [anon_sym_CR_LF] = ACTIONS(2710), [anon_sym_SLASH_SLASH] = ACTIONS(497), [anon_sym_SLASH_STAR] = ACTIONS(499), - [anon_sym_DOT] = ACTIONS(619), - [anon_sym_as] = ACTIONS(619), - [anon_sym_COMMA] = ACTIONS(619), - [anon_sym_RBRACE] = ACTIONS(619), - [anon_sym_LPAREN] = ACTIONS(3692), - [anon_sym_EQ] = ACTIONS(619), - [anon_sym_PIPE] = ACTIONS(619), - [anon_sym_fn] = ACTIONS(3694), - [anon_sym_PLUS] = ACTIONS(619), - [anon_sym_DASH] = ACTIONS(619), - [anon_sym_STAR] = ACTIONS(3696), - [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(3698), - [anon_sym_PLUS_PLUS] = ACTIONS(619), - [anon_sym_DASH_DASH] = ACTIONS(619), - [anon_sym_QMARK] = ACTIONS(3700), - [anon_sym_BANG] = ACTIONS(3702), - [anon_sym_LBRACK2] = ACTIONS(3704), - [anon_sym_CARET] = ACTIONS(619), - [anon_sym_AMP] = ACTIONS(3706), - [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(3708), - [anon_sym_map_LBRACK] = ACTIONS(3710), - [anon_sym_chan] = ACTIONS(3712), - [anon_sym_thread] = ACTIONS(3714), - [anon_sym_atomic] = ACTIONS(3716), + [anon_sym_SEMI] = ACTIONS(2710), + [anon_sym_DOT] = ACTIONS(2710), + [anon_sym_as] = ACTIONS(2710), + [anon_sym_LBRACE] = ACTIONS(2710), + [anon_sym_COMMA] = ACTIONS(2710), + [anon_sym_RBRACE] = ACTIONS(2710), + [anon_sym_LPAREN] = ACTIONS(2710), + [anon_sym_RPAREN] = ACTIONS(2710), + [anon_sym_PIPE] = ACTIONS(2710), + [anon_sym_fn] = ACTIONS(2710), + [anon_sym_PLUS] = ACTIONS(2710), + [anon_sym_DASH] = ACTIONS(2710), + [anon_sym_STAR] = ACTIONS(2710), + [anon_sym_SLASH] = ACTIONS(2710), + [anon_sym_PERCENT] = ACTIONS(2710), + [anon_sym_LT] = ACTIONS(2710), + [anon_sym_GT] = ACTIONS(2710), + [anon_sym_EQ_EQ] = ACTIONS(2710), + [anon_sym_BANG_EQ] = ACTIONS(2710), + [anon_sym_LT_EQ] = ACTIONS(2710), + [anon_sym_GT_EQ] = ACTIONS(2710), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2710), + [anon_sym_LBRACK] = ACTIONS(2708), + [anon_sym_struct] = ACTIONS(2710), + [anon_sym_mut] = ACTIONS(2710), + [anon_sym_PLUS_PLUS] = ACTIONS(2710), + [anon_sym_DASH_DASH] = ACTIONS(2710), + [anon_sym_QMARK] = ACTIONS(2710), + [anon_sym_BANG] = ACTIONS(2710), + [anon_sym_go] = ACTIONS(2710), + [anon_sym_spawn] = ACTIONS(2710), + [anon_sym_json_DOTdecode] = ACTIONS(2710), + [anon_sym_LBRACK2] = ACTIONS(2710), + [anon_sym_TILDE] = ACTIONS(2710), + [anon_sym_CARET] = ACTIONS(2710), + [anon_sym_AMP] = ACTIONS(2710), + [anon_sym_LT_DASH] = ACTIONS(2710), + [anon_sym_LT_LT] = ACTIONS(2710), + [anon_sym_GT_GT] = ACTIONS(2710), + [anon_sym_GT_GT_GT] = ACTIONS(2710), + [anon_sym_AMP_CARET] = ACTIONS(2710), + [anon_sym_AMP_AMP] = ACTIONS(2710), + [anon_sym_PIPE_PIPE] = ACTIONS(2710), + [anon_sym_or] = ACTIONS(2710), + [sym_none] = ACTIONS(2710), + [sym_true] = ACTIONS(2710), + [sym_false] = ACTIONS(2710), + [sym_nil] = ACTIONS(2710), + [anon_sym_QMARK_DOT] = ACTIONS(2710), + [anon_sym_POUND_LBRACK] = ACTIONS(2710), + [anon_sym_if] = ACTIONS(2710), + [anon_sym_DOLLARif] = ACTIONS(2710), + [anon_sym_is] = ACTIONS(2710), + [anon_sym_BANGis] = ACTIONS(2710), + [anon_sym_in] = ACTIONS(2710), + [anon_sym_BANGin] = ACTIONS(2710), + [anon_sym_match] = ACTIONS(2710), + [anon_sym_select] = ACTIONS(2710), + [anon_sym_lock] = ACTIONS(2710), + [anon_sym_rlock] = ACTIONS(2710), + [anon_sym_unsafe] = ACTIONS(2710), + [anon_sym_sql] = ACTIONS(2710), + [sym_int_literal] = ACTIONS(2710), + [sym_float_literal] = ACTIONS(2710), + [sym_rune_literal] = ACTIONS(2710), + [sym_pseudo_compile_time_identifier] = ACTIONS(2710), + [anon_sym_shared] = ACTIONS(2710), + [anon_sym_map_LBRACK] = ACTIONS(2710), + [anon_sym_chan] = ACTIONS(2710), + [anon_sym_thread] = ACTIONS(2710), + [anon_sym_atomic] = ACTIONS(2710), + [sym___double_quote] = ACTIONS(2710), + [sym___single_quote] = ACTIONS(2710), + [sym___c_double_quote] = ACTIONS(2710), + [sym___c_single_quote] = ACTIONS(2710), + [sym___r_double_quote] = ACTIONS(2710), + [sym___r_single_quote] = ACTIONS(2710), }, - [1120] = { - [sym_line_comment] = STATE(1120), - [sym_block_comment] = STATE(1120), - [sym_reference_expression] = STATE(4495), - [sym_type_reference_expression] = STATE(3541), - [sym_plain_type] = STATE(2386), - [sym__plain_type_without_special] = STATE(2302), - [sym_anon_struct_type] = STATE(2303), - [sym_multi_return_type] = STATE(2302), - [sym_result_type] = STATE(2302), - [sym_option_type] = STATE(2302), - [sym_qualified_type] = STATE(3541), - [sym_fixed_array_type] = STATE(2303), - [sym_array_type] = STATE(2303), - [sym_pointer_type] = STATE(2303), - [sym_wrong_pointer_type] = STATE(2303), - [sym_map_type] = STATE(2303), - [sym_channel_type] = STATE(2303), - [sym_shared_type] = STATE(2303), - [sym_thread_type] = STATE(2303), - [sym_atomic_type] = STATE(2303), - [sym_generic_type] = STATE(2303), - [sym_function_type] = STATE(2303), - [sym_identifier] = ACTIONS(597), - [anon_sym_LF] = ACTIONS(599), - [anon_sym_CR] = ACTIONS(599), - [anon_sym_CR_LF] = ACTIONS(599), + [1167] = { + [sym_line_comment] = STATE(1167), + [sym_block_comment] = STATE(1167), + [sym_identifier] = ACTIONS(2684), + [anon_sym_LF] = ACTIONS(2684), + [anon_sym_CR] = ACTIONS(2684), + [anon_sym_CR_LF] = ACTIONS(2684), [anon_sym_SLASH_SLASH] = ACTIONS(497), [anon_sym_SLASH_STAR] = ACTIONS(499), - [anon_sym_DOT] = ACTIONS(599), - [anon_sym_as] = ACTIONS(599), - [anon_sym_COMMA] = ACTIONS(599), - [anon_sym_RBRACE] = ACTIONS(599), - [anon_sym_LPAREN] = ACTIONS(601), - [anon_sym_EQ] = ACTIONS(599), - [anon_sym_PIPE] = ACTIONS(599), - [anon_sym_fn] = ACTIONS(603), - [anon_sym_PLUS] = ACTIONS(599), - [anon_sym_DASH] = ACTIONS(599), - [anon_sym_STAR] = ACTIONS(605), - [anon_sym_SLASH] = ACTIONS(599), - [anon_sym_PERCENT] = ACTIONS(599), - [anon_sym_LT] = ACTIONS(599), - [anon_sym_GT] = ACTIONS(599), - [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(595), - [anon_sym_struct] = ACTIONS(607), - [anon_sym_PLUS_PLUS] = ACTIONS(599), - [anon_sym_DASH_DASH] = ACTIONS(599), - [anon_sym_QMARK] = ACTIONS(515), - [anon_sym_BANG] = ACTIONS(3718), - [anon_sym_LBRACK2] = ACTIONS(611), - [anon_sym_CARET] = ACTIONS(599), - [anon_sym_AMP] = ACTIONS(613), - [anon_sym_LT_LT] = ACTIONS(599), - [anon_sym_GT_GT] = ACTIONS(599), - [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(599), - [anon_sym_QMARK_DOT] = ACTIONS(599), - [anon_sym_POUND_LBRACK] = ACTIONS(599), - [anon_sym_is] = ACTIONS(599), - [anon_sym_BANGis] = ACTIONS(599), - [anon_sym_in] = ACTIONS(599), - [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(615), - [anon_sym_map_LBRACK] = ACTIONS(549), - [anon_sym_chan] = ACTIONS(87), - [anon_sym_thread] = ACTIONS(89), - [anon_sym_atomic] = ACTIONS(91), + [anon_sym_SEMI] = ACTIONS(2684), + [anon_sym_DOT] = ACTIONS(2684), + [anon_sym_as] = ACTIONS(2684), + [anon_sym_LBRACE] = ACTIONS(2684), + [anon_sym_COMMA] = ACTIONS(2684), + [anon_sym_RBRACE] = ACTIONS(2684), + [anon_sym_LPAREN] = ACTIONS(2684), + [anon_sym_RPAREN] = ACTIONS(2684), + [anon_sym_PIPE] = ACTIONS(2684), + [anon_sym_fn] = ACTIONS(2684), + [anon_sym_PLUS] = ACTIONS(2684), + [anon_sym_DASH] = ACTIONS(2684), + [anon_sym_STAR] = ACTIONS(2684), + [anon_sym_SLASH] = ACTIONS(2684), + [anon_sym_PERCENT] = ACTIONS(2684), + [anon_sym_LT] = ACTIONS(2684), + [anon_sym_GT] = ACTIONS(2684), + [anon_sym_EQ_EQ] = ACTIONS(2684), + [anon_sym_BANG_EQ] = ACTIONS(2684), + [anon_sym_LT_EQ] = ACTIONS(2684), + [anon_sym_GT_EQ] = ACTIONS(2684), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2684), + [anon_sym_LBRACK] = ACTIONS(2682), + [anon_sym_struct] = ACTIONS(2684), + [anon_sym_mut] = ACTIONS(2684), + [anon_sym_PLUS_PLUS] = ACTIONS(2684), + [anon_sym_DASH_DASH] = ACTIONS(2684), + [anon_sym_QMARK] = ACTIONS(2684), + [anon_sym_BANG] = ACTIONS(2684), + [anon_sym_go] = ACTIONS(2684), + [anon_sym_spawn] = ACTIONS(2684), + [anon_sym_json_DOTdecode] = ACTIONS(2684), + [anon_sym_LBRACK2] = ACTIONS(2684), + [anon_sym_TILDE] = ACTIONS(2684), + [anon_sym_CARET] = ACTIONS(2684), + [anon_sym_AMP] = ACTIONS(2684), + [anon_sym_LT_DASH] = ACTIONS(2684), + [anon_sym_LT_LT] = ACTIONS(2684), + [anon_sym_GT_GT] = ACTIONS(2684), + [anon_sym_GT_GT_GT] = ACTIONS(2684), + [anon_sym_AMP_CARET] = ACTIONS(2684), + [anon_sym_AMP_AMP] = ACTIONS(2684), + [anon_sym_PIPE_PIPE] = ACTIONS(2684), + [anon_sym_or] = ACTIONS(2684), + [sym_none] = ACTIONS(2684), + [sym_true] = ACTIONS(2684), + [sym_false] = ACTIONS(2684), + [sym_nil] = ACTIONS(2684), + [anon_sym_QMARK_DOT] = ACTIONS(2684), + [anon_sym_POUND_LBRACK] = ACTIONS(2684), + [anon_sym_if] = ACTIONS(2684), + [anon_sym_DOLLARif] = ACTIONS(2684), + [anon_sym_is] = ACTIONS(2684), + [anon_sym_BANGis] = ACTIONS(2684), + [anon_sym_in] = ACTIONS(2684), + [anon_sym_BANGin] = ACTIONS(2684), + [anon_sym_match] = ACTIONS(2684), + [anon_sym_select] = ACTIONS(2684), + [anon_sym_lock] = ACTIONS(2684), + [anon_sym_rlock] = ACTIONS(2684), + [anon_sym_unsafe] = ACTIONS(2684), + [anon_sym_sql] = ACTIONS(2684), + [sym_int_literal] = ACTIONS(2684), + [sym_float_literal] = ACTIONS(2684), + [sym_rune_literal] = ACTIONS(2684), + [sym_pseudo_compile_time_identifier] = ACTIONS(2684), + [anon_sym_shared] = ACTIONS(2684), + [anon_sym_map_LBRACK] = ACTIONS(2684), + [anon_sym_chan] = ACTIONS(2684), + [anon_sym_thread] = ACTIONS(2684), + [anon_sym_atomic] = ACTIONS(2684), + [sym___double_quote] = ACTIONS(2684), + [sym___single_quote] = ACTIONS(2684), + [sym___c_double_quote] = ACTIONS(2684), + [sym___c_single_quote] = ACTIONS(2684), + [sym___r_double_quote] = ACTIONS(2684), + [sym___r_single_quote] = ACTIONS(2684), }, - [1121] = { - [sym_line_comment] = STATE(1121), - [sym_block_comment] = STATE(1121), - [sym_type_parameters] = STATE(4205), - [sym_argument_list] = STATE(1166), - [sym_or_block] = STATE(1167), - [sym_identifier] = ACTIONS(3720), - [anon_sym_LF] = ACTIONS(3720), - [anon_sym_CR] = ACTIONS(3720), - [anon_sym_CR_LF] = ACTIONS(3720), + [1168] = { + [sym_line_comment] = STATE(1168), + [sym_block_comment] = STATE(1168), + [sym_identifier] = ACTIONS(2714), + [anon_sym_LF] = ACTIONS(2714), + [anon_sym_CR] = ACTIONS(2714), + [anon_sym_CR_LF] = ACTIONS(2714), [anon_sym_SLASH_SLASH] = ACTIONS(497), [anon_sym_SLASH_STAR] = ACTIONS(499), - [anon_sym_SEMI] = ACTIONS(3720), - [anon_sym_DOT] = ACTIONS(3654), - [anon_sym_as] = ACTIONS(3666), - [anon_sym_LBRACE] = ACTIONS(3720), - [anon_sym_COMMA] = ACTIONS(3720), - [anon_sym_LPAREN] = ACTIONS(3656), - [anon_sym_RPAREN] = ACTIONS(3720), - [anon_sym_PIPE] = ACTIONS(3668), - [anon_sym_fn] = ACTIONS(3720), - [anon_sym_PLUS] = ACTIONS(3720), - [anon_sym_DASH] = ACTIONS(3720), - [anon_sym_STAR] = ACTIONS(3720), - [anon_sym_SLASH] = ACTIONS(3670), - [anon_sym_PERCENT] = ACTIONS(3670), - [anon_sym_LT] = ACTIONS(3672), - [anon_sym_GT] = ACTIONS(3672), - [anon_sym_EQ_EQ] = ACTIONS(3672), - [anon_sym_BANG_EQ] = ACTIONS(3672), - [anon_sym_LT_EQ] = ACTIONS(3672), - [anon_sym_GT_EQ] = ACTIONS(3672), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3720), - [anon_sym_LBRACK] = ACTIONS(3658), - [anon_sym_struct] = ACTIONS(3720), - [anon_sym_mut] = ACTIONS(3720), - [anon_sym_PLUS_PLUS] = ACTIONS(3674), - [anon_sym_DASH_DASH] = ACTIONS(3676), - [anon_sym_QMARK] = ACTIONS(3660), - [anon_sym_BANG] = ACTIONS(3662), - [anon_sym_go] = ACTIONS(3720), - [anon_sym_spawn] = ACTIONS(3720), - [anon_sym_json_DOTdecode] = ACTIONS(3720), - [anon_sym_LBRACK2] = ACTIONS(3664), - [anon_sym_TILDE] = ACTIONS(3720), - [anon_sym_CARET] = ACTIONS(3720), - [anon_sym_AMP] = ACTIONS(3720), - [anon_sym_LT_DASH] = ACTIONS(3720), - [anon_sym_LT_LT] = ACTIONS(3670), - [anon_sym_GT_GT] = ACTIONS(3670), - [anon_sym_GT_GT_GT] = ACTIONS(3670), - [anon_sym_AMP_CARET] = ACTIONS(3670), - [anon_sym_AMP_AMP] = ACTIONS(3678), - [anon_sym_PIPE_PIPE] = ACTIONS(3680), - [anon_sym_or] = ACTIONS(3682), - [sym_none] = ACTIONS(3720), - [sym_true] = ACTIONS(3720), - [sym_false] = ACTIONS(3720), - [sym_nil] = ACTIONS(3720), - [anon_sym_QMARK_DOT] = ACTIONS(3654), - [anon_sym_POUND_LBRACK] = ACTIONS(3664), - [anon_sym_if] = ACTIONS(3720), - [anon_sym_DOLLARif] = ACTIONS(3720), - [anon_sym_is] = ACTIONS(3684), - [anon_sym_BANGis] = ACTIONS(3684), - [anon_sym_in] = ACTIONS(3686), - [anon_sym_BANGin] = ACTIONS(3686), - [anon_sym_match] = ACTIONS(3720), - [anon_sym_select] = ACTIONS(3720), - [anon_sym_lock] = ACTIONS(3720), - [anon_sym_rlock] = ACTIONS(3720), - [anon_sym_unsafe] = ACTIONS(3720), - [anon_sym_sql] = ACTIONS(3720), - [sym_int_literal] = ACTIONS(3720), - [sym_float_literal] = ACTIONS(3720), - [sym_rune_literal] = ACTIONS(3720), - [sym_pseudo_compile_time_identifier] = ACTIONS(3720), - [anon_sym_shared] = ACTIONS(3720), - [anon_sym_map_LBRACK] = ACTIONS(3720), - [anon_sym_chan] = ACTIONS(3720), - [anon_sym_thread] = ACTIONS(3720), - [anon_sym_atomic] = ACTIONS(3720), - [sym___double_quote] = ACTIONS(3720), - [sym___single_quote] = ACTIONS(3720), - [sym___c_double_quote] = ACTIONS(3720), - [sym___c_single_quote] = ACTIONS(3720), - [sym___r_double_quote] = ACTIONS(3720), - [sym___r_single_quote] = ACTIONS(3720), + [anon_sym_SEMI] = ACTIONS(2714), + [anon_sym_DOT] = ACTIONS(2714), + [anon_sym_as] = ACTIONS(2714), + [anon_sym_LBRACE] = ACTIONS(2714), + [anon_sym_COMMA] = ACTIONS(2714), + [anon_sym_RBRACE] = ACTIONS(2714), + [anon_sym_LPAREN] = ACTIONS(2714), + [anon_sym_RPAREN] = ACTIONS(2714), + [anon_sym_PIPE] = ACTIONS(2714), + [anon_sym_fn] = ACTIONS(2714), + [anon_sym_PLUS] = ACTIONS(2714), + [anon_sym_DASH] = ACTIONS(2714), + [anon_sym_STAR] = ACTIONS(2714), + [anon_sym_SLASH] = ACTIONS(2714), + [anon_sym_PERCENT] = ACTIONS(2714), + [anon_sym_LT] = ACTIONS(2714), + [anon_sym_GT] = ACTIONS(2714), + [anon_sym_EQ_EQ] = ACTIONS(2714), + [anon_sym_BANG_EQ] = ACTIONS(2714), + [anon_sym_LT_EQ] = ACTIONS(2714), + [anon_sym_GT_EQ] = ACTIONS(2714), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2714), + [anon_sym_LBRACK] = ACTIONS(2712), + [anon_sym_struct] = ACTIONS(2714), + [anon_sym_mut] = ACTIONS(2714), + [anon_sym_PLUS_PLUS] = ACTIONS(2714), + [anon_sym_DASH_DASH] = ACTIONS(2714), + [anon_sym_QMARK] = ACTIONS(2714), + [anon_sym_BANG] = ACTIONS(2714), + [anon_sym_go] = ACTIONS(2714), + [anon_sym_spawn] = ACTIONS(2714), + [anon_sym_json_DOTdecode] = ACTIONS(2714), + [anon_sym_LBRACK2] = ACTIONS(2714), + [anon_sym_TILDE] = ACTIONS(2714), + [anon_sym_CARET] = ACTIONS(2714), + [anon_sym_AMP] = ACTIONS(2714), + [anon_sym_LT_DASH] = ACTIONS(2714), + [anon_sym_LT_LT] = ACTIONS(2714), + [anon_sym_GT_GT] = ACTIONS(2714), + [anon_sym_GT_GT_GT] = ACTIONS(2714), + [anon_sym_AMP_CARET] = ACTIONS(2714), + [anon_sym_AMP_AMP] = ACTIONS(2714), + [anon_sym_PIPE_PIPE] = ACTIONS(2714), + [anon_sym_or] = ACTIONS(2714), + [sym_none] = ACTIONS(2714), + [sym_true] = ACTIONS(2714), + [sym_false] = ACTIONS(2714), + [sym_nil] = ACTIONS(2714), + [anon_sym_QMARK_DOT] = ACTIONS(2714), + [anon_sym_POUND_LBRACK] = ACTIONS(2714), + [anon_sym_if] = ACTIONS(2714), + [anon_sym_DOLLARif] = ACTIONS(2714), + [anon_sym_is] = ACTIONS(2714), + [anon_sym_BANGis] = ACTIONS(2714), + [anon_sym_in] = ACTIONS(2714), + [anon_sym_BANGin] = ACTIONS(2714), + [anon_sym_match] = ACTIONS(2714), + [anon_sym_select] = ACTIONS(2714), + [anon_sym_lock] = ACTIONS(2714), + [anon_sym_rlock] = ACTIONS(2714), + [anon_sym_unsafe] = ACTIONS(2714), + [anon_sym_sql] = ACTIONS(2714), + [sym_int_literal] = ACTIONS(2714), + [sym_float_literal] = ACTIONS(2714), + [sym_rune_literal] = ACTIONS(2714), + [sym_pseudo_compile_time_identifier] = ACTIONS(2714), + [anon_sym_shared] = ACTIONS(2714), + [anon_sym_map_LBRACK] = ACTIONS(2714), + [anon_sym_chan] = ACTIONS(2714), + [anon_sym_thread] = ACTIONS(2714), + [anon_sym_atomic] = ACTIONS(2714), + [sym___double_quote] = ACTIONS(2714), + [sym___single_quote] = ACTIONS(2714), + [sym___c_double_quote] = ACTIONS(2714), + [sym___c_single_quote] = ACTIONS(2714), + [sym___r_double_quote] = ACTIONS(2714), + [sym___r_single_quote] = ACTIONS(2714), }, - [1122] = { - [sym_line_comment] = STATE(1122), - [sym_block_comment] = STATE(1122), - [sym_reference_expression] = STATE(4451), - [sym_type_reference_expression] = STATE(1754), - [sym_plain_type] = STATE(1794), - [sym__plain_type_without_special] = STATE(1844), - [sym_anon_struct_type] = STATE(1791), - [sym_multi_return_type] = STATE(1844), - [sym_result_type] = STATE(1844), - [sym_option_type] = STATE(1844), - [sym_qualified_type] = STATE(1754), - [sym_fixed_array_type] = STATE(1791), - [sym_array_type] = STATE(1791), - [sym_pointer_type] = STATE(1791), - [sym_wrong_pointer_type] = STATE(1791), - [sym_map_type] = STATE(1791), - [sym_channel_type] = STATE(1791), - [sym_shared_type] = STATE(1791), - [sym_thread_type] = STATE(1791), - [sym_atomic_type] = STATE(1791), - [sym_generic_type] = STATE(1791), - [sym_function_type] = STATE(1791), - [sym_identifier] = ACTIONS(3690), - [anon_sym_LF] = ACTIONS(627), - [anon_sym_CR] = ACTIONS(627), - [anon_sym_CR_LF] = ACTIONS(627), + [1169] = { + [sym_line_comment] = STATE(1169), + [sym_block_comment] = STATE(1169), + [sym_identifier] = ACTIONS(2894), + [anon_sym_LF] = ACTIONS(2894), + [anon_sym_CR] = ACTIONS(2894), + [anon_sym_CR_LF] = ACTIONS(2894), [anon_sym_SLASH_SLASH] = ACTIONS(497), [anon_sym_SLASH_STAR] = ACTIONS(499), - [anon_sym_DOT] = ACTIONS(627), + [anon_sym_SEMI] = ACTIONS(2894), + [anon_sym_DOT] = ACTIONS(2894), + [anon_sym_as] = ACTIONS(2894), + [anon_sym_LBRACE] = ACTIONS(2894), + [anon_sym_COMMA] = ACTIONS(2894), + [anon_sym_RBRACE] = ACTIONS(2894), + [anon_sym_LPAREN] = ACTIONS(2894), + [anon_sym_RPAREN] = ACTIONS(2894), + [anon_sym_PIPE] = ACTIONS(2894), + [anon_sym_fn] = ACTIONS(2894), + [anon_sym_PLUS] = ACTIONS(2894), + [anon_sym_DASH] = ACTIONS(2894), + [anon_sym_STAR] = ACTIONS(2894), + [anon_sym_SLASH] = ACTIONS(2894), + [anon_sym_PERCENT] = ACTIONS(2894), + [anon_sym_LT] = ACTIONS(2894), + [anon_sym_GT] = ACTIONS(2894), + [anon_sym_EQ_EQ] = ACTIONS(2894), + [anon_sym_BANG_EQ] = ACTIONS(2894), + [anon_sym_LT_EQ] = ACTIONS(2894), + [anon_sym_GT_EQ] = ACTIONS(2894), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2894), + [anon_sym_LBRACK] = ACTIONS(2892), + [anon_sym_struct] = ACTIONS(2894), + [anon_sym_mut] = ACTIONS(2894), + [anon_sym_PLUS_PLUS] = ACTIONS(2894), + [anon_sym_DASH_DASH] = ACTIONS(2894), + [anon_sym_QMARK] = ACTIONS(2894), + [anon_sym_BANG] = ACTIONS(2894), + [anon_sym_go] = ACTIONS(2894), + [anon_sym_spawn] = ACTIONS(2894), + [anon_sym_json_DOTdecode] = ACTIONS(2894), + [anon_sym_LBRACK2] = ACTIONS(2894), + [anon_sym_TILDE] = ACTIONS(2894), + [anon_sym_CARET] = ACTIONS(2894), + [anon_sym_AMP] = ACTIONS(2894), + [anon_sym_LT_DASH] = ACTIONS(2894), + [anon_sym_LT_LT] = ACTIONS(2894), + [anon_sym_GT_GT] = ACTIONS(2894), + [anon_sym_GT_GT_GT] = ACTIONS(2894), + [anon_sym_AMP_CARET] = ACTIONS(2894), + [anon_sym_AMP_AMP] = ACTIONS(2894), + [anon_sym_PIPE_PIPE] = ACTIONS(2894), + [anon_sym_or] = ACTIONS(2894), + [sym_none] = ACTIONS(2894), + [sym_true] = ACTIONS(2894), + [sym_false] = ACTIONS(2894), + [sym_nil] = ACTIONS(2894), + [anon_sym_QMARK_DOT] = ACTIONS(2894), + [anon_sym_POUND_LBRACK] = ACTIONS(2894), + [anon_sym_if] = ACTIONS(2894), + [anon_sym_DOLLARif] = ACTIONS(2894), + [anon_sym_is] = ACTIONS(2894), + [anon_sym_BANGis] = ACTIONS(2894), + [anon_sym_in] = ACTIONS(2894), + [anon_sym_BANGin] = ACTIONS(2894), + [anon_sym_match] = ACTIONS(2894), + [anon_sym_select] = ACTIONS(2894), + [anon_sym_lock] = ACTIONS(2894), + [anon_sym_rlock] = ACTIONS(2894), + [anon_sym_unsafe] = ACTIONS(2894), + [anon_sym_sql] = ACTIONS(2894), + [sym_int_literal] = ACTIONS(2894), + [sym_float_literal] = ACTIONS(2894), + [sym_rune_literal] = ACTIONS(2894), + [sym_pseudo_compile_time_identifier] = ACTIONS(2894), + [anon_sym_shared] = ACTIONS(2894), + [anon_sym_map_LBRACK] = ACTIONS(2894), + [anon_sym_chan] = ACTIONS(2894), + [anon_sym_thread] = ACTIONS(2894), + [anon_sym_atomic] = ACTIONS(2894), + [sym___double_quote] = ACTIONS(2894), + [sym___single_quote] = ACTIONS(2894), + [sym___c_double_quote] = ACTIONS(2894), + [sym___c_single_quote] = ACTIONS(2894), + [sym___r_double_quote] = ACTIONS(2894), + [sym___r_single_quote] = ACTIONS(2894), + }, + [1170] = { + [sym_line_comment] = STATE(1170), + [sym_block_comment] = STATE(1170), + [sym_identifier] = ACTIONS(2898), + [anon_sym_LF] = ACTIONS(2898), + [anon_sym_CR] = ACTIONS(2898), + [anon_sym_CR_LF] = ACTIONS(2898), + [anon_sym_SLASH_SLASH] = ACTIONS(497), + [anon_sym_SLASH_STAR] = ACTIONS(499), + [anon_sym_SEMI] = ACTIONS(2898), + [anon_sym_DOT] = ACTIONS(2898), + [anon_sym_as] = ACTIONS(2898), + [anon_sym_LBRACE] = ACTIONS(2898), + [anon_sym_COMMA] = ACTIONS(2898), + [anon_sym_RBRACE] = ACTIONS(2898), + [anon_sym_LPAREN] = ACTIONS(2898), + [anon_sym_RPAREN] = ACTIONS(2898), + [anon_sym_PIPE] = ACTIONS(2898), + [anon_sym_fn] = ACTIONS(2898), + [anon_sym_PLUS] = ACTIONS(2898), + [anon_sym_DASH] = ACTIONS(2898), + [anon_sym_STAR] = ACTIONS(2898), + [anon_sym_SLASH] = ACTIONS(2898), + [anon_sym_PERCENT] = ACTIONS(2898), + [anon_sym_LT] = ACTIONS(2898), + [anon_sym_GT] = ACTIONS(2898), + [anon_sym_EQ_EQ] = ACTIONS(2898), + [anon_sym_BANG_EQ] = ACTIONS(2898), + [anon_sym_LT_EQ] = ACTIONS(2898), + [anon_sym_GT_EQ] = ACTIONS(2898), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2898), + [anon_sym_LBRACK] = ACTIONS(2896), + [anon_sym_struct] = ACTIONS(2898), + [anon_sym_mut] = ACTIONS(2898), + [anon_sym_PLUS_PLUS] = ACTIONS(2898), + [anon_sym_DASH_DASH] = ACTIONS(2898), + [anon_sym_QMARK] = ACTIONS(2898), + [anon_sym_BANG] = ACTIONS(2898), + [anon_sym_go] = ACTIONS(2898), + [anon_sym_spawn] = ACTIONS(2898), + [anon_sym_json_DOTdecode] = ACTIONS(2898), + [anon_sym_LBRACK2] = ACTIONS(2898), + [anon_sym_TILDE] = ACTIONS(2898), + [anon_sym_CARET] = ACTIONS(2898), + [anon_sym_AMP] = ACTIONS(2898), + [anon_sym_LT_DASH] = ACTIONS(2898), + [anon_sym_LT_LT] = ACTIONS(2898), + [anon_sym_GT_GT] = ACTIONS(2898), + [anon_sym_GT_GT_GT] = ACTIONS(2898), + [anon_sym_AMP_CARET] = ACTIONS(2898), + [anon_sym_AMP_AMP] = ACTIONS(2898), + [anon_sym_PIPE_PIPE] = ACTIONS(2898), + [anon_sym_or] = ACTIONS(2898), + [sym_none] = ACTIONS(2898), + [sym_true] = ACTIONS(2898), + [sym_false] = ACTIONS(2898), + [sym_nil] = ACTIONS(2898), + [anon_sym_QMARK_DOT] = ACTIONS(2898), + [anon_sym_POUND_LBRACK] = ACTIONS(2898), + [anon_sym_if] = ACTIONS(2898), + [anon_sym_DOLLARif] = ACTIONS(2898), + [anon_sym_is] = ACTIONS(2898), + [anon_sym_BANGis] = ACTIONS(2898), + [anon_sym_in] = ACTIONS(2898), + [anon_sym_BANGin] = ACTIONS(2898), + [anon_sym_match] = ACTIONS(2898), + [anon_sym_select] = ACTIONS(2898), + [anon_sym_lock] = ACTIONS(2898), + [anon_sym_rlock] = ACTIONS(2898), + [anon_sym_unsafe] = ACTIONS(2898), + [anon_sym_sql] = ACTIONS(2898), + [sym_int_literal] = ACTIONS(2898), + [sym_float_literal] = ACTIONS(2898), + [sym_rune_literal] = ACTIONS(2898), + [sym_pseudo_compile_time_identifier] = ACTIONS(2898), + [anon_sym_shared] = ACTIONS(2898), + [anon_sym_map_LBRACK] = ACTIONS(2898), + [anon_sym_chan] = ACTIONS(2898), + [anon_sym_thread] = ACTIONS(2898), + [anon_sym_atomic] = ACTIONS(2898), + [sym___double_quote] = ACTIONS(2898), + [sym___single_quote] = ACTIONS(2898), + [sym___c_double_quote] = ACTIONS(2898), + [sym___c_single_quote] = ACTIONS(2898), + [sym___r_double_quote] = ACTIONS(2898), + [sym___r_single_quote] = ACTIONS(2898), + }, + [1171] = { + [sym_line_comment] = STATE(1171), + [sym_block_comment] = STATE(1171), + [sym_reference_expression] = STATE(4498), + [sym_type_reference_expression] = STATE(3460), + [sym_plain_type] = STATE(2345), + [sym__plain_type_without_special] = STATE(2360), + [sym_anon_struct_type] = STATE(2362), + [sym_multi_return_type] = STATE(2360), + [sym_result_type] = STATE(2360), + [sym_option_type] = STATE(2360), + [sym_qualified_type] = STATE(3460), + [sym_fixed_array_type] = STATE(2362), + [sym_array_type] = STATE(2362), + [sym_pointer_type] = STATE(2362), + [sym_wrong_pointer_type] = STATE(2362), + [sym_map_type] = STATE(2362), + [sym_channel_type] = STATE(2362), + [sym_shared_type] = STATE(2362), + [sym_thread_type] = STATE(2362), + [sym_atomic_type] = STATE(2362), + [sym_generic_type] = STATE(2362), + [sym_function_type] = STATE(2362), + [sym_identifier] = ACTIONS(565), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_SEMI] = ACTIONS(625), + [anon_sym_DOT] = ACTIONS(625), [anon_sym_as] = ACTIONS(627), - [anon_sym_COMMA] = ACTIONS(627), - [anon_sym_RBRACE] = ACTIONS(627), - [anon_sym_LPAREN] = ACTIONS(3692), + [anon_sym_LBRACE] = ACTIONS(625), + [anon_sym_COMMA] = ACTIONS(625), + [anon_sym_LPAREN] = ACTIONS(625), [anon_sym_EQ] = ACTIONS(627), [anon_sym_PIPE] = ACTIONS(627), - [anon_sym_fn] = ACTIONS(3694), + [anon_sym_fn] = ACTIONS(571), [anon_sym_PLUS] = ACTIONS(627), [anon_sym_DASH] = ACTIONS(627), - [anon_sym_STAR] = ACTIONS(3696), + [anon_sym_STAR] = ACTIONS(627), [anon_sym_SLASH] = ACTIONS(627), [anon_sym_PERCENT] = ACTIONS(627), [anon_sym_LT] = ACTIONS(627), [anon_sym_GT] = ACTIONS(627), - [anon_sym_EQ_EQ] = ACTIONS(627), - [anon_sym_BANG_EQ] = ACTIONS(627), - [anon_sym_LT_EQ] = ACTIONS(627), - [anon_sym_GT_EQ] = ACTIONS(627), + [anon_sym_EQ_EQ] = ACTIONS(625), + [anon_sym_BANG_EQ] = ACTIONS(625), + [anon_sym_LT_EQ] = ACTIONS(625), + [anon_sym_GT_EQ] = ACTIONS(625), [anon_sym_LBRACK] = ACTIONS(625), - [anon_sym_struct] = ACTIONS(3698), - [anon_sym_PLUS_PLUS] = ACTIONS(627), - [anon_sym_DASH_DASH] = ACTIONS(627), - [anon_sym_QMARK] = ACTIONS(3700), - [anon_sym_BANG] = ACTIONS(3702), - [anon_sym_LBRACK2] = ACTIONS(3704), + [anon_sym_struct] = ACTIONS(575), + [anon_sym_PLUS_PLUS] = ACTIONS(625), + [anon_sym_DASH_DASH] = ACTIONS(625), + [anon_sym_QMARK] = ACTIONS(627), + [anon_sym_BANG] = ACTIONS(627), + [anon_sym_LBRACK2] = ACTIONS(627), [anon_sym_CARET] = ACTIONS(627), - [anon_sym_AMP] = ACTIONS(3706), + [anon_sym_AMP] = ACTIONS(627), [anon_sym_LT_LT] = ACTIONS(627), [anon_sym_GT_GT] = ACTIONS(627), [anon_sym_GT_GT_GT] = ACTIONS(627), [anon_sym_AMP_CARET] = ACTIONS(627), - [anon_sym_AMP_AMP] = ACTIONS(627), - [anon_sym_PIPE_PIPE] = ACTIONS(627), + [anon_sym_AMP_AMP] = ACTIONS(625), + [anon_sym_PIPE_PIPE] = ACTIONS(625), [anon_sym_or] = ACTIONS(627), - [anon_sym_QMARK_DOT] = ACTIONS(627), - [anon_sym_POUND_LBRACK] = ACTIONS(627), + [anon_sym_QMARK_DOT] = ACTIONS(625), + [anon_sym_POUND_LBRACK] = ACTIONS(625), [anon_sym_is] = ACTIONS(627), - [anon_sym_BANGis] = ACTIONS(627), + [anon_sym_BANGis] = ACTIONS(625), [anon_sym_in] = ACTIONS(627), - [anon_sym_BANGin] = ACTIONS(627), - [anon_sym_STAR_EQ] = ACTIONS(627), - [anon_sym_SLASH_EQ] = ACTIONS(627), - [anon_sym_PERCENT_EQ] = ACTIONS(627), - [anon_sym_LT_LT_EQ] = ACTIONS(627), - [anon_sym_GT_GT_EQ] = ACTIONS(627), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(627), - [anon_sym_AMP_EQ] = ACTIONS(627), - [anon_sym_AMP_CARET_EQ] = ACTIONS(627), - [anon_sym_PLUS_EQ] = ACTIONS(627), - [anon_sym_DASH_EQ] = ACTIONS(627), - [anon_sym_PIPE_EQ] = ACTIONS(627), - [anon_sym_CARET_EQ] = ACTIONS(627), - [anon_sym_COLON_EQ] = ACTIONS(627), - [anon_sym_shared] = ACTIONS(3708), - [anon_sym_map_LBRACK] = ACTIONS(3710), - [anon_sym_chan] = ACTIONS(3712), - [anon_sym_thread] = ACTIONS(3714), - [anon_sym_atomic] = ACTIONS(3716), - }, - [1123] = { - [sym_line_comment] = STATE(1123), - [sym_block_comment] = STATE(1123), - [sym_else_branch] = STATE(1153), - [sym_identifier] = ACTIONS(1799), - [anon_sym_LF] = ACTIONS(1799), - [anon_sym_CR] = ACTIONS(1799), - [anon_sym_CR_LF] = ACTIONS(1799), - [anon_sym_SLASH_SLASH] = ACTIONS(497), - [anon_sym_SLASH_STAR] = ACTIONS(499), - [anon_sym_SEMI] = ACTIONS(1799), - [anon_sym_DOT] = ACTIONS(1799), - [anon_sym_as] = ACTIONS(1799), - [anon_sym_LBRACE] = ACTIONS(1799), - [anon_sym_COMMA] = ACTIONS(1799), - [anon_sym_RBRACE] = ACTIONS(1799), - [anon_sym_LPAREN] = ACTIONS(1799), - [anon_sym_RPAREN] = ACTIONS(1799), - [anon_sym_PIPE] = ACTIONS(1799), - [anon_sym_fn] = ACTIONS(1799), - [anon_sym_PLUS] = ACTIONS(1799), - [anon_sym_DASH] = ACTIONS(1799), - [anon_sym_STAR] = ACTIONS(1799), - [anon_sym_SLASH] = ACTIONS(1799), - [anon_sym_PERCENT] = ACTIONS(1799), - [anon_sym_LT] = ACTIONS(1799), - [anon_sym_GT] = ACTIONS(1799), - [anon_sym_EQ_EQ] = ACTIONS(1799), - [anon_sym_BANG_EQ] = ACTIONS(1799), - [anon_sym_LT_EQ] = ACTIONS(1799), - [anon_sym_GT_EQ] = ACTIONS(1799), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1799), - [anon_sym_LBRACK] = ACTIONS(1797), - [anon_sym_struct] = ACTIONS(1799), - [anon_sym_mut] = ACTIONS(1799), - [anon_sym_PLUS_PLUS] = ACTIONS(1799), - [anon_sym_DASH_DASH] = ACTIONS(1799), - [anon_sym_QMARK] = ACTIONS(1799), - [anon_sym_BANG] = ACTIONS(1799), - [anon_sym_go] = ACTIONS(1799), - [anon_sym_spawn] = ACTIONS(1799), - [anon_sym_json_DOTdecode] = ACTIONS(1799), - [anon_sym_LBRACK2] = ACTIONS(1799), - [anon_sym_TILDE] = ACTIONS(1799), - [anon_sym_CARET] = ACTIONS(1799), - [anon_sym_AMP] = ACTIONS(1799), - [anon_sym_LT_DASH] = ACTIONS(1799), - [anon_sym_LT_LT] = ACTIONS(1799), - [anon_sym_GT_GT] = ACTIONS(1799), - [anon_sym_GT_GT_GT] = ACTIONS(1799), - [anon_sym_AMP_CARET] = ACTIONS(1799), - [anon_sym_AMP_AMP] = ACTIONS(1799), - [anon_sym_PIPE_PIPE] = ACTIONS(1799), - [anon_sym_or] = ACTIONS(1799), - [sym_none] = ACTIONS(1799), - [sym_true] = ACTIONS(1799), - [sym_false] = ACTIONS(1799), - [sym_nil] = ACTIONS(1799), - [anon_sym_QMARK_DOT] = ACTIONS(1799), - [anon_sym_POUND_LBRACK] = ACTIONS(1799), - [anon_sym_if] = ACTIONS(1799), - [anon_sym_else] = ACTIONS(3722), - [anon_sym_DOLLARif] = ACTIONS(1799), - [anon_sym_is] = ACTIONS(1799), - [anon_sym_BANGis] = ACTIONS(1799), - [anon_sym_in] = ACTIONS(1799), - [anon_sym_BANGin] = ACTIONS(1799), - [anon_sym_match] = ACTIONS(1799), - [anon_sym_select] = ACTIONS(1799), - [anon_sym_lock] = ACTIONS(1799), - [anon_sym_rlock] = ACTIONS(1799), - [anon_sym_unsafe] = ACTIONS(1799), - [anon_sym_sql] = ACTIONS(1799), - [sym_int_literal] = ACTIONS(1799), - [sym_float_literal] = ACTIONS(1799), - [sym_rune_literal] = ACTIONS(1799), - [sym_pseudo_compile_time_identifier] = ACTIONS(1799), - [anon_sym_shared] = ACTIONS(1799), - [anon_sym_map_LBRACK] = ACTIONS(1799), - [anon_sym_chan] = ACTIONS(1799), - [anon_sym_thread] = ACTIONS(1799), - [anon_sym_atomic] = ACTIONS(1799), - [sym___double_quote] = ACTIONS(1799), - [sym___single_quote] = ACTIONS(1799), - [sym___c_double_quote] = ACTIONS(1799), - [sym___c_single_quote] = ACTIONS(1799), - [sym___r_double_quote] = ACTIONS(1799), - [sym___r_single_quote] = ACTIONS(1799), - }, - [1124] = { - [sym_line_comment] = STATE(1124), - [sym_block_comment] = STATE(1124), - [sym_else_branch] = STATE(1151), - [sym_identifier] = ACTIONS(1805), - [anon_sym_LF] = ACTIONS(1805), - [anon_sym_CR] = ACTIONS(1805), - [anon_sym_CR_LF] = ACTIONS(1805), - [anon_sym_SLASH_SLASH] = ACTIONS(497), - [anon_sym_SLASH_STAR] = ACTIONS(499), - [anon_sym_SEMI] = ACTIONS(1805), - [anon_sym_DOT] = ACTIONS(1805), - [anon_sym_as] = ACTIONS(1805), - [anon_sym_LBRACE] = ACTIONS(1805), - [anon_sym_COMMA] = ACTIONS(1805), - [anon_sym_RBRACE] = ACTIONS(1805), - [anon_sym_LPAREN] = ACTIONS(1805), - [anon_sym_RPAREN] = ACTIONS(1805), - [anon_sym_PIPE] = ACTIONS(1805), - [anon_sym_fn] = ACTIONS(1805), - [anon_sym_PLUS] = ACTIONS(1805), - [anon_sym_DASH] = ACTIONS(1805), - [anon_sym_STAR] = ACTIONS(1805), - [anon_sym_SLASH] = ACTIONS(1805), - [anon_sym_PERCENT] = ACTIONS(1805), - [anon_sym_LT] = ACTIONS(1805), - [anon_sym_GT] = ACTIONS(1805), - [anon_sym_EQ_EQ] = ACTIONS(1805), - [anon_sym_BANG_EQ] = ACTIONS(1805), - [anon_sym_LT_EQ] = ACTIONS(1805), - [anon_sym_GT_EQ] = ACTIONS(1805), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1805), - [anon_sym_LBRACK] = ACTIONS(1803), - [anon_sym_struct] = ACTIONS(1805), - [anon_sym_mut] = ACTIONS(1805), - [anon_sym_PLUS_PLUS] = ACTIONS(1805), - [anon_sym_DASH_DASH] = ACTIONS(1805), - [anon_sym_QMARK] = ACTIONS(1805), - [anon_sym_BANG] = ACTIONS(1805), - [anon_sym_go] = ACTIONS(1805), - [anon_sym_spawn] = ACTIONS(1805), - [anon_sym_json_DOTdecode] = ACTIONS(1805), - [anon_sym_LBRACK2] = ACTIONS(1805), - [anon_sym_TILDE] = ACTIONS(1805), - [anon_sym_CARET] = ACTIONS(1805), - [anon_sym_AMP] = ACTIONS(1805), - [anon_sym_LT_DASH] = ACTIONS(1805), - [anon_sym_LT_LT] = ACTIONS(1805), - [anon_sym_GT_GT] = ACTIONS(1805), - [anon_sym_GT_GT_GT] = ACTIONS(1805), - [anon_sym_AMP_CARET] = ACTIONS(1805), - [anon_sym_AMP_AMP] = ACTIONS(1805), - [anon_sym_PIPE_PIPE] = ACTIONS(1805), - [anon_sym_or] = ACTIONS(1805), - [sym_none] = ACTIONS(1805), - [sym_true] = ACTIONS(1805), - [sym_false] = ACTIONS(1805), - [sym_nil] = ACTIONS(1805), - [anon_sym_QMARK_DOT] = ACTIONS(1805), - [anon_sym_POUND_LBRACK] = ACTIONS(1805), - [anon_sym_if] = ACTIONS(1805), - [anon_sym_else] = ACTIONS(3722), - [anon_sym_DOLLARif] = ACTIONS(1805), - [anon_sym_is] = ACTIONS(1805), - [anon_sym_BANGis] = ACTIONS(1805), - [anon_sym_in] = ACTIONS(1805), - [anon_sym_BANGin] = ACTIONS(1805), - [anon_sym_match] = ACTIONS(1805), - [anon_sym_select] = ACTIONS(1805), - [anon_sym_lock] = ACTIONS(1805), - [anon_sym_rlock] = ACTIONS(1805), - [anon_sym_unsafe] = ACTIONS(1805), - [anon_sym_sql] = ACTIONS(1805), - [sym_int_literal] = ACTIONS(1805), - [sym_float_literal] = ACTIONS(1805), - [sym_rune_literal] = ACTIONS(1805), - [sym_pseudo_compile_time_identifier] = ACTIONS(1805), - [anon_sym_shared] = ACTIONS(1805), - [anon_sym_map_LBRACK] = ACTIONS(1805), - [anon_sym_chan] = ACTIONS(1805), - [anon_sym_thread] = ACTIONS(1805), - [anon_sym_atomic] = ACTIONS(1805), - [sym___double_quote] = ACTIONS(1805), - [sym___single_quote] = ACTIONS(1805), - [sym___c_double_quote] = ACTIONS(1805), - [sym___c_single_quote] = ACTIONS(1805), - [sym___r_double_quote] = ACTIONS(1805), - [sym___r_single_quote] = ACTIONS(1805), - }, - [1125] = { - [sym_line_comment] = STATE(1125), - [sym_block_comment] = STATE(1125), - [sym_type_parameters] = STATE(4205), - [sym_argument_list] = STATE(1166), - [sym_or_block] = STATE(1167), - [sym_identifier] = ACTIONS(3724), - [anon_sym_LF] = ACTIONS(3724), - [anon_sym_CR] = ACTIONS(3724), - [anon_sym_CR_LF] = ACTIONS(3724), - [anon_sym_SLASH_SLASH] = ACTIONS(497), - [anon_sym_SLASH_STAR] = ACTIONS(499), - [anon_sym_SEMI] = ACTIONS(3724), - [anon_sym_DOT] = ACTIONS(3654), - [anon_sym_as] = ACTIONS(3666), - [anon_sym_LBRACE] = ACTIONS(3724), - [anon_sym_COMMA] = ACTIONS(3724), - [anon_sym_LPAREN] = ACTIONS(3656), - [anon_sym_RPAREN] = ACTIONS(3724), - [anon_sym_PIPE] = ACTIONS(3668), - [anon_sym_fn] = ACTIONS(3724), - [anon_sym_PLUS] = ACTIONS(3668), - [anon_sym_DASH] = ACTIONS(3668), - [anon_sym_STAR] = ACTIONS(3670), - [anon_sym_SLASH] = ACTIONS(3670), - [anon_sym_PERCENT] = ACTIONS(3670), - [anon_sym_LT] = ACTIONS(3672), - [anon_sym_GT] = ACTIONS(3672), - [anon_sym_EQ_EQ] = ACTIONS(3672), - [anon_sym_BANG_EQ] = ACTIONS(3672), - [anon_sym_LT_EQ] = ACTIONS(3672), - [anon_sym_GT_EQ] = ACTIONS(3672), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3724), - [anon_sym_LBRACK] = ACTIONS(3658), - [anon_sym_struct] = ACTIONS(3724), - [anon_sym_mut] = ACTIONS(3724), - [anon_sym_PLUS_PLUS] = ACTIONS(3674), - [anon_sym_DASH_DASH] = ACTIONS(3676), - [anon_sym_QMARK] = ACTIONS(3660), - [anon_sym_BANG] = ACTIONS(3662), - [anon_sym_go] = ACTIONS(3724), - [anon_sym_spawn] = ACTIONS(3724), - [anon_sym_json_DOTdecode] = ACTIONS(3724), - [anon_sym_LBRACK2] = ACTIONS(3664), - [anon_sym_TILDE] = ACTIONS(3724), - [anon_sym_CARET] = ACTIONS(3668), - [anon_sym_AMP] = ACTIONS(3670), - [anon_sym_LT_DASH] = ACTIONS(3724), - [anon_sym_LT_LT] = ACTIONS(3670), - [anon_sym_GT_GT] = ACTIONS(3670), - [anon_sym_GT_GT_GT] = ACTIONS(3670), - [anon_sym_AMP_CARET] = ACTIONS(3670), - [anon_sym_AMP_AMP] = ACTIONS(3678), - [anon_sym_PIPE_PIPE] = ACTIONS(3680), - [anon_sym_or] = ACTIONS(3682), - [sym_none] = ACTIONS(3724), - [sym_true] = ACTIONS(3724), - [sym_false] = ACTIONS(3724), - [sym_nil] = ACTIONS(3724), - [anon_sym_QMARK_DOT] = ACTIONS(3654), - [anon_sym_POUND_LBRACK] = ACTIONS(3664), - [anon_sym_if] = ACTIONS(3724), - [anon_sym_DOLLARif] = ACTIONS(3724), - [anon_sym_is] = ACTIONS(3684), - [anon_sym_BANGis] = ACTIONS(3684), - [anon_sym_in] = ACTIONS(3686), - [anon_sym_BANGin] = ACTIONS(3686), - [anon_sym_match] = ACTIONS(3724), - [anon_sym_select] = ACTIONS(3724), - [anon_sym_lock] = ACTIONS(3724), - [anon_sym_rlock] = ACTIONS(3724), - [anon_sym_unsafe] = ACTIONS(3724), - [anon_sym_sql] = ACTIONS(3724), - [sym_int_literal] = ACTIONS(3724), - [sym_float_literal] = ACTIONS(3724), - [sym_rune_literal] = ACTIONS(3724), - [sym_pseudo_compile_time_identifier] = ACTIONS(3724), - [anon_sym_shared] = ACTIONS(3724), - [anon_sym_map_LBRACK] = ACTIONS(3724), - [anon_sym_chan] = ACTIONS(3724), - [anon_sym_thread] = ACTIONS(3724), - [anon_sym_atomic] = ACTIONS(3724), - [sym___double_quote] = ACTIONS(3724), - [sym___single_quote] = ACTIONS(3724), - [sym___c_double_quote] = ACTIONS(3724), - [sym___c_single_quote] = ACTIONS(3724), - [sym___r_double_quote] = ACTIONS(3724), - [sym___r_single_quote] = ACTIONS(3724), - }, - [1126] = { - [sym_line_comment] = STATE(1126), - [sym_block_comment] = STATE(1126), - [sym_type_parameters] = STATE(4205), - [sym_argument_list] = STATE(1166), - [sym_or_block] = STATE(1167), - [sym_identifier] = ACTIONS(1789), - [anon_sym_LF] = ACTIONS(1789), - [anon_sym_CR] = ACTIONS(1789), - [anon_sym_CR_LF] = ACTIONS(1789), - [anon_sym_SLASH_SLASH] = ACTIONS(497), - [anon_sym_SLASH_STAR] = ACTIONS(499), - [anon_sym_SEMI] = ACTIONS(1789), - [anon_sym_DOT] = ACTIONS(3654), - [anon_sym_as] = ACTIONS(3666), - [anon_sym_LBRACE] = ACTIONS(1789), - [anon_sym_COMMA] = ACTIONS(1789), - [anon_sym_LPAREN] = ACTIONS(3656), - [anon_sym_RPAREN] = ACTIONS(1789), - [anon_sym_PIPE] = ACTIONS(3668), - [anon_sym_fn] = ACTIONS(1789), - [anon_sym_PLUS] = ACTIONS(3668), - [anon_sym_DASH] = ACTIONS(3668), - [anon_sym_STAR] = ACTIONS(3670), - [anon_sym_SLASH] = ACTIONS(3670), - [anon_sym_PERCENT] = ACTIONS(3670), - [anon_sym_LT] = ACTIONS(3672), - [anon_sym_GT] = ACTIONS(3672), - [anon_sym_EQ_EQ] = ACTIONS(3672), - [anon_sym_BANG_EQ] = ACTIONS(3672), - [anon_sym_LT_EQ] = ACTIONS(3672), - [anon_sym_GT_EQ] = ACTIONS(3672), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1789), - [anon_sym_LBRACK] = ACTIONS(3658), - [anon_sym_struct] = ACTIONS(1789), - [anon_sym_mut] = ACTIONS(1789), - [anon_sym_PLUS_PLUS] = ACTIONS(3674), - [anon_sym_DASH_DASH] = ACTIONS(3676), - [anon_sym_QMARK] = ACTIONS(3660), - [anon_sym_BANG] = ACTIONS(3662), - [anon_sym_go] = ACTIONS(1789), - [anon_sym_spawn] = ACTIONS(1789), - [anon_sym_json_DOTdecode] = ACTIONS(1789), - [anon_sym_LBRACK2] = ACTIONS(3664), - [anon_sym_TILDE] = ACTIONS(1789), - [anon_sym_CARET] = ACTIONS(3668), - [anon_sym_AMP] = ACTIONS(3670), - [anon_sym_LT_DASH] = ACTIONS(1789), - [anon_sym_LT_LT] = ACTIONS(3670), - [anon_sym_GT_GT] = ACTIONS(3670), - [anon_sym_GT_GT_GT] = ACTIONS(3670), - [anon_sym_AMP_CARET] = ACTIONS(3670), - [anon_sym_AMP_AMP] = ACTIONS(3678), - [anon_sym_PIPE_PIPE] = ACTIONS(3680), - [anon_sym_or] = ACTIONS(3682), - [sym_none] = ACTIONS(1789), - [sym_true] = ACTIONS(1789), - [sym_false] = ACTIONS(1789), - [sym_nil] = ACTIONS(1789), - [anon_sym_QMARK_DOT] = ACTIONS(3654), - [anon_sym_POUND_LBRACK] = ACTIONS(3664), - [anon_sym_if] = ACTIONS(1789), - [anon_sym_DOLLARif] = ACTIONS(1789), - [anon_sym_is] = ACTIONS(3726), - [anon_sym_BANGis] = ACTIONS(3726), - [anon_sym_in] = ACTIONS(3686), - [anon_sym_BANGin] = ACTIONS(3686), - [anon_sym_match] = ACTIONS(1789), - [anon_sym_select] = ACTIONS(1789), - [anon_sym_lock] = ACTIONS(1789), - [anon_sym_rlock] = ACTIONS(1789), - [anon_sym_unsafe] = ACTIONS(1789), - [anon_sym_sql] = ACTIONS(1789), - [sym_int_literal] = ACTIONS(1789), - [sym_float_literal] = ACTIONS(1789), - [sym_rune_literal] = ACTIONS(1789), - [sym_pseudo_compile_time_identifier] = ACTIONS(1789), - [anon_sym_shared] = ACTIONS(1789), - [anon_sym_map_LBRACK] = ACTIONS(1789), - [anon_sym_chan] = ACTIONS(1789), - [anon_sym_thread] = ACTIONS(1789), - [anon_sym_atomic] = ACTIONS(1789), - [sym___double_quote] = ACTIONS(1789), - [sym___single_quote] = ACTIONS(1789), - [sym___c_double_quote] = ACTIONS(1789), - [sym___c_single_quote] = ACTIONS(1789), - [sym___r_double_quote] = ACTIONS(1789), - [sym___r_single_quote] = ACTIONS(1789), - }, - [1127] = { - [sym_line_comment] = STATE(1127), - [sym_block_comment] = STATE(1127), - [sym_identifier] = ACTIONS(1917), - [anon_sym_LF] = ACTIONS(1917), - [anon_sym_CR] = ACTIONS(1917), - [anon_sym_CR_LF] = ACTIONS(1917), - [anon_sym_SLASH_SLASH] = ACTIONS(497), - [anon_sym_SLASH_STAR] = ACTIONS(499), - [anon_sym_SEMI] = ACTIONS(1917), - [anon_sym_DOT] = ACTIONS(1917), - [anon_sym_as] = ACTIONS(1917), - [anon_sym_LBRACE] = ACTIONS(1917), - [anon_sym_COMMA] = ACTIONS(1917), - [anon_sym_RBRACE] = ACTIONS(1917), - [anon_sym_LPAREN] = ACTIONS(1917), - [anon_sym_RPAREN] = ACTIONS(1917), - [anon_sym_PIPE] = ACTIONS(1917), - [anon_sym_fn] = ACTIONS(1917), - [anon_sym_PLUS] = ACTIONS(1917), - [anon_sym_DASH] = ACTIONS(1917), - [anon_sym_STAR] = ACTIONS(1917), - [anon_sym_SLASH] = ACTIONS(1917), - [anon_sym_PERCENT] = ACTIONS(1917), - [anon_sym_LT] = ACTIONS(1917), - [anon_sym_GT] = ACTIONS(1917), - [anon_sym_EQ_EQ] = ACTIONS(1917), - [anon_sym_BANG_EQ] = ACTIONS(1917), - [anon_sym_LT_EQ] = ACTIONS(1917), - [anon_sym_GT_EQ] = ACTIONS(1917), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1917), - [anon_sym_LBRACK] = ACTIONS(1915), - [anon_sym_struct] = ACTIONS(1917), - [anon_sym_mut] = ACTIONS(1917), - [anon_sym_PLUS_PLUS] = ACTIONS(1917), - [anon_sym_DASH_DASH] = ACTIONS(1917), - [anon_sym_QMARK] = ACTIONS(1917), - [anon_sym_BANG] = ACTIONS(1917), - [anon_sym_go] = ACTIONS(1917), - [anon_sym_spawn] = ACTIONS(1917), - [anon_sym_json_DOTdecode] = ACTIONS(1917), - [anon_sym_LBRACK2] = ACTIONS(1917), - [anon_sym_TILDE] = ACTIONS(1917), - [anon_sym_CARET] = ACTIONS(1917), - [anon_sym_AMP] = ACTIONS(1917), - [anon_sym_LT_DASH] = ACTIONS(1917), - [anon_sym_LT_LT] = ACTIONS(1917), - [anon_sym_GT_GT] = ACTIONS(1917), - [anon_sym_GT_GT_GT] = ACTIONS(1917), - [anon_sym_AMP_CARET] = ACTIONS(1917), - [anon_sym_AMP_AMP] = ACTIONS(1917), - [anon_sym_PIPE_PIPE] = ACTIONS(1917), - [anon_sym_or] = ACTIONS(1917), - [sym_none] = ACTIONS(1917), - [sym_true] = ACTIONS(1917), - [sym_false] = ACTIONS(1917), - [sym_nil] = ACTIONS(1917), - [anon_sym_QMARK_DOT] = ACTIONS(1917), - [anon_sym_POUND_LBRACK] = ACTIONS(1917), - [anon_sym_if] = ACTIONS(1917), - [anon_sym_else] = ACTIONS(1917), - [anon_sym_DOLLARif] = ACTIONS(1917), - [anon_sym_is] = ACTIONS(1917), - [anon_sym_BANGis] = ACTIONS(1917), - [anon_sym_in] = ACTIONS(1917), - [anon_sym_BANGin] = ACTIONS(1917), - [anon_sym_match] = ACTIONS(1917), - [anon_sym_select] = ACTIONS(1917), - [anon_sym_lock] = ACTIONS(1917), - [anon_sym_rlock] = ACTIONS(1917), - [anon_sym_unsafe] = ACTIONS(1917), - [anon_sym_sql] = ACTIONS(1917), - [sym_int_literal] = ACTIONS(1917), - [sym_float_literal] = ACTIONS(1917), - [sym_rune_literal] = ACTIONS(1917), - [sym_pseudo_compile_time_identifier] = ACTIONS(1917), - [anon_sym_shared] = ACTIONS(1917), - [anon_sym_map_LBRACK] = ACTIONS(1917), - [anon_sym_chan] = ACTIONS(1917), - [anon_sym_thread] = ACTIONS(1917), - [anon_sym_atomic] = ACTIONS(1917), - [sym___double_quote] = ACTIONS(1917), - [sym___single_quote] = ACTIONS(1917), - [sym___c_double_quote] = ACTIONS(1917), - [sym___c_single_quote] = ACTIONS(1917), - [sym___r_double_quote] = ACTIONS(1917), - [sym___r_single_quote] = ACTIONS(1917), - }, - [1128] = { - [sym_line_comment] = STATE(1128), - [sym_block_comment] = STATE(1128), - [sym_identifier] = ACTIONS(1845), - [anon_sym_LF] = ACTIONS(1845), - [anon_sym_CR] = ACTIONS(1845), - [anon_sym_CR_LF] = ACTIONS(1845), - [anon_sym_SLASH_SLASH] = ACTIONS(497), - [anon_sym_SLASH_STAR] = ACTIONS(499), - [anon_sym_SEMI] = ACTIONS(1845), - [anon_sym_DOT] = ACTIONS(1845), - [anon_sym_as] = ACTIONS(1845), - [anon_sym_LBRACE] = ACTIONS(1845), - [anon_sym_COMMA] = ACTIONS(1845), - [anon_sym_RBRACE] = ACTIONS(1845), - [anon_sym_LPAREN] = ACTIONS(1845), - [anon_sym_RPAREN] = ACTIONS(1845), - [anon_sym_PIPE] = ACTIONS(1845), - [anon_sym_fn] = ACTIONS(1845), - [anon_sym_PLUS] = ACTIONS(1845), - [anon_sym_DASH] = ACTIONS(1845), - [anon_sym_STAR] = ACTIONS(1845), - [anon_sym_SLASH] = ACTIONS(1845), - [anon_sym_PERCENT] = ACTIONS(1845), - [anon_sym_LT] = ACTIONS(1845), - [anon_sym_GT] = ACTIONS(1845), - [anon_sym_EQ_EQ] = ACTIONS(1845), - [anon_sym_BANG_EQ] = ACTIONS(1845), - [anon_sym_LT_EQ] = ACTIONS(1845), - [anon_sym_GT_EQ] = ACTIONS(1845), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1845), - [anon_sym_LBRACK] = ACTIONS(1843), - [anon_sym_struct] = ACTIONS(1845), - [anon_sym_mut] = ACTIONS(1845), - [anon_sym_PLUS_PLUS] = ACTIONS(1845), - [anon_sym_DASH_DASH] = ACTIONS(1845), - [anon_sym_QMARK] = ACTIONS(1845), - [anon_sym_BANG] = ACTIONS(1845), - [anon_sym_go] = ACTIONS(1845), - [anon_sym_spawn] = ACTIONS(1845), - [anon_sym_json_DOTdecode] = ACTIONS(1845), - [anon_sym_LBRACK2] = ACTIONS(1845), - [anon_sym_TILDE] = ACTIONS(1845), - [anon_sym_CARET] = ACTIONS(1845), - [anon_sym_AMP] = ACTIONS(1845), - [anon_sym_LT_DASH] = ACTIONS(1845), - [anon_sym_LT_LT] = ACTIONS(1845), - [anon_sym_GT_GT] = ACTIONS(1845), - [anon_sym_GT_GT_GT] = ACTIONS(1845), - [anon_sym_AMP_CARET] = ACTIONS(1845), - [anon_sym_AMP_AMP] = ACTIONS(1845), - [anon_sym_PIPE_PIPE] = ACTIONS(1845), - [anon_sym_or] = ACTIONS(1845), - [sym_none] = ACTIONS(1845), - [sym_true] = ACTIONS(1845), - [sym_false] = ACTIONS(1845), - [sym_nil] = ACTIONS(1845), - [anon_sym_QMARK_DOT] = ACTIONS(1845), - [anon_sym_POUND_LBRACK] = ACTIONS(1845), - [anon_sym_if] = ACTIONS(1845), - [anon_sym_DOLLARif] = ACTIONS(1845), - [anon_sym_DOLLARelse] = ACTIONS(1845), - [anon_sym_is] = ACTIONS(1845), - [anon_sym_BANGis] = ACTIONS(1845), - [anon_sym_in] = ACTIONS(1845), - [anon_sym_BANGin] = ACTIONS(1845), - [anon_sym_match] = ACTIONS(1845), - [anon_sym_select] = ACTIONS(1845), - [anon_sym_lock] = ACTIONS(1845), - [anon_sym_rlock] = ACTIONS(1845), - [anon_sym_unsafe] = ACTIONS(1845), - [anon_sym_sql] = ACTIONS(1845), - [sym_int_literal] = ACTIONS(1845), - [sym_float_literal] = ACTIONS(1845), - [sym_rune_literal] = ACTIONS(1845), - [sym_pseudo_compile_time_identifier] = ACTIONS(1845), - [anon_sym_shared] = ACTIONS(1845), - [anon_sym_map_LBRACK] = ACTIONS(1845), - [anon_sym_chan] = ACTIONS(1845), - [anon_sym_thread] = ACTIONS(1845), - [anon_sym_atomic] = ACTIONS(1845), - [sym___double_quote] = ACTIONS(1845), - [sym___single_quote] = ACTIONS(1845), - [sym___c_double_quote] = ACTIONS(1845), - [sym___c_single_quote] = ACTIONS(1845), - [sym___r_double_quote] = ACTIONS(1845), - [sym___r_single_quote] = ACTIONS(1845), - }, - [1129] = { - [sym_line_comment] = STATE(1129), - [sym_block_comment] = STATE(1129), - [sym_type_parameters] = STATE(4205), - [sym_argument_list] = STATE(1166), - [sym_or_block] = STATE(1167), - [sym_identifier] = ACTIONS(3728), - [anon_sym_LF] = ACTIONS(3728), - [anon_sym_CR] = ACTIONS(3728), - [anon_sym_CR_LF] = ACTIONS(3728), - [anon_sym_SLASH_SLASH] = ACTIONS(497), - [anon_sym_SLASH_STAR] = ACTIONS(499), - [anon_sym_SEMI] = ACTIONS(3728), - [anon_sym_DOT] = ACTIONS(3654), - [anon_sym_as] = ACTIONS(3666), - [anon_sym_LBRACE] = ACTIONS(3728), - [anon_sym_COMMA] = ACTIONS(3728), - [anon_sym_RBRACE] = ACTIONS(3728), - [anon_sym_LPAREN] = ACTIONS(3656), - [anon_sym_PIPE] = ACTIONS(3668), - [anon_sym_fn] = ACTIONS(3728), - [anon_sym_PLUS] = ACTIONS(3668), - [anon_sym_DASH] = ACTIONS(3668), - [anon_sym_STAR] = ACTIONS(3670), - [anon_sym_SLASH] = ACTIONS(3670), - [anon_sym_PERCENT] = ACTIONS(3670), - [anon_sym_LT] = ACTIONS(3672), - [anon_sym_GT] = ACTIONS(3672), - [anon_sym_EQ_EQ] = ACTIONS(3672), - [anon_sym_BANG_EQ] = ACTIONS(3672), - [anon_sym_LT_EQ] = ACTIONS(3672), - [anon_sym_GT_EQ] = ACTIONS(3672), - [anon_sym_LBRACK] = ACTIONS(3658), - [anon_sym_struct] = ACTIONS(3728), - [anon_sym_mut] = ACTIONS(3728), - [anon_sym_PLUS_PLUS] = ACTIONS(3674), - [anon_sym_DASH_DASH] = ACTIONS(3676), - [anon_sym_QMARK] = ACTIONS(3660), - [anon_sym_BANG] = ACTIONS(3662), - [anon_sym_go] = ACTIONS(3728), - [anon_sym_spawn] = ACTIONS(3728), - [anon_sym_json_DOTdecode] = ACTIONS(3728), - [anon_sym_LBRACK2] = ACTIONS(3664), - [anon_sym_TILDE] = ACTIONS(3728), - [anon_sym_CARET] = ACTIONS(3668), - [anon_sym_AMP] = ACTIONS(3670), - [anon_sym_LT_DASH] = ACTIONS(3728), - [anon_sym_LT_LT] = ACTIONS(3670), - [anon_sym_GT_GT] = ACTIONS(3670), - [anon_sym_GT_GT_GT] = ACTIONS(3670), - [anon_sym_AMP_CARET] = ACTIONS(3670), - [anon_sym_AMP_AMP] = ACTIONS(3678), - [anon_sym_PIPE_PIPE] = ACTIONS(3680), - [anon_sym_or] = ACTIONS(3682), - [sym_none] = ACTIONS(3728), - [sym_true] = ACTIONS(3728), - [sym_false] = ACTIONS(3728), - [sym_nil] = ACTIONS(3728), - [anon_sym_QMARK_DOT] = ACTIONS(3654), - [anon_sym_POUND_LBRACK] = ACTIONS(3664), - [anon_sym_if] = ACTIONS(3728), - [anon_sym_DOLLARif] = ACTIONS(3728), - [anon_sym_is] = ACTIONS(3684), - [anon_sym_BANGis] = ACTIONS(3684), - [anon_sym_in] = ACTIONS(3686), - [anon_sym_BANGin] = ACTIONS(3686), - [anon_sym_match] = ACTIONS(3728), - [anon_sym_select] = ACTIONS(3728), - [anon_sym_lock] = ACTIONS(3728), - [anon_sym_rlock] = ACTIONS(3728), - [anon_sym_unsafe] = ACTIONS(3728), - [anon_sym_sql] = ACTIONS(3728), - [sym_int_literal] = ACTIONS(3728), - [sym_float_literal] = ACTIONS(3728), - [sym_rune_literal] = ACTIONS(3728), - [sym_pseudo_compile_time_identifier] = ACTIONS(3728), - [anon_sym_shared] = ACTIONS(3728), - [anon_sym_map_LBRACK] = ACTIONS(3728), - [anon_sym_chan] = ACTIONS(3728), - [anon_sym_thread] = ACTIONS(3728), - [anon_sym_atomic] = ACTIONS(3728), - [sym___double_quote] = ACTIONS(3728), - [sym___single_quote] = ACTIONS(3728), - [sym___c_double_quote] = ACTIONS(3728), - [sym___c_single_quote] = ACTIONS(3728), - [sym___r_double_quote] = ACTIONS(3728), - [sym___r_single_quote] = ACTIONS(3728), - }, - [1130] = { - [sym_line_comment] = STATE(1130), - [sym_block_comment] = STATE(1130), - [sym_identifier] = ACTIONS(1921), - [anon_sym_LF] = ACTIONS(1921), - [anon_sym_CR] = ACTIONS(1921), - [anon_sym_CR_LF] = ACTIONS(1921), - [anon_sym_SLASH_SLASH] = ACTIONS(497), - [anon_sym_SLASH_STAR] = ACTIONS(499), - [anon_sym_SEMI] = ACTIONS(1921), - [anon_sym_DOT] = ACTIONS(1921), - [anon_sym_as] = ACTIONS(1921), - [anon_sym_LBRACE] = ACTIONS(1921), - [anon_sym_COMMA] = ACTIONS(1921), - [anon_sym_RBRACE] = ACTIONS(1921), - [anon_sym_LPAREN] = ACTIONS(1921), - [anon_sym_RPAREN] = ACTIONS(1921), - [anon_sym_PIPE] = ACTIONS(1921), - [anon_sym_fn] = ACTIONS(1921), - [anon_sym_PLUS] = ACTIONS(1921), - [anon_sym_DASH] = ACTIONS(1921), - [anon_sym_STAR] = ACTIONS(1921), - [anon_sym_SLASH] = ACTIONS(1921), - [anon_sym_PERCENT] = ACTIONS(1921), - [anon_sym_LT] = ACTIONS(1921), - [anon_sym_GT] = ACTIONS(1921), - [anon_sym_EQ_EQ] = ACTIONS(1921), - [anon_sym_BANG_EQ] = ACTIONS(1921), - [anon_sym_LT_EQ] = ACTIONS(1921), - [anon_sym_GT_EQ] = ACTIONS(1921), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1921), - [anon_sym_LBRACK] = ACTIONS(1919), - [anon_sym_struct] = ACTIONS(1921), - [anon_sym_mut] = ACTIONS(1921), - [anon_sym_PLUS_PLUS] = ACTIONS(1921), - [anon_sym_DASH_DASH] = ACTIONS(1921), - [anon_sym_QMARK] = ACTIONS(1921), - [anon_sym_BANG] = ACTIONS(1921), - [anon_sym_go] = ACTIONS(1921), - [anon_sym_spawn] = ACTIONS(1921), - [anon_sym_json_DOTdecode] = ACTIONS(1921), - [anon_sym_LBRACK2] = ACTIONS(1921), - [anon_sym_TILDE] = ACTIONS(1921), - [anon_sym_CARET] = ACTIONS(1921), - [anon_sym_AMP] = ACTIONS(1921), - [anon_sym_LT_DASH] = ACTIONS(1921), - [anon_sym_LT_LT] = ACTIONS(1921), - [anon_sym_GT_GT] = ACTIONS(1921), - [anon_sym_GT_GT_GT] = ACTIONS(1921), - [anon_sym_AMP_CARET] = ACTIONS(1921), - [anon_sym_AMP_AMP] = ACTIONS(1921), - [anon_sym_PIPE_PIPE] = ACTIONS(1921), - [anon_sym_or] = ACTIONS(1921), - [sym_none] = ACTIONS(1921), - [sym_true] = ACTIONS(1921), - [sym_false] = ACTIONS(1921), - [sym_nil] = ACTIONS(1921), - [anon_sym_QMARK_DOT] = ACTIONS(1921), - [anon_sym_POUND_LBRACK] = ACTIONS(1921), - [anon_sym_if] = ACTIONS(1921), - [anon_sym_DOLLARif] = ACTIONS(1921), - [anon_sym_DOLLARelse] = ACTIONS(3730), - [anon_sym_is] = ACTIONS(1921), - [anon_sym_BANGis] = ACTIONS(1921), - [anon_sym_in] = ACTIONS(1921), - [anon_sym_BANGin] = ACTIONS(1921), - [anon_sym_match] = ACTIONS(1921), - [anon_sym_select] = ACTIONS(1921), - [anon_sym_lock] = ACTIONS(1921), - [anon_sym_rlock] = ACTIONS(1921), - [anon_sym_unsafe] = ACTIONS(1921), - [anon_sym_sql] = ACTIONS(1921), - [sym_int_literal] = ACTIONS(1921), - [sym_float_literal] = ACTIONS(1921), - [sym_rune_literal] = ACTIONS(1921), - [sym_pseudo_compile_time_identifier] = ACTIONS(1921), - [anon_sym_shared] = ACTIONS(1921), - [anon_sym_map_LBRACK] = ACTIONS(1921), - [anon_sym_chan] = ACTIONS(1921), - [anon_sym_thread] = ACTIONS(1921), - [anon_sym_atomic] = ACTIONS(1921), - [sym___double_quote] = ACTIONS(1921), - [sym___single_quote] = ACTIONS(1921), - [sym___c_double_quote] = ACTIONS(1921), - [sym___c_single_quote] = ACTIONS(1921), - [sym___r_double_quote] = ACTIONS(1921), - [sym___r_single_quote] = ACTIONS(1921), - }, - [1131] = { - [sym_line_comment] = STATE(1131), - [sym_block_comment] = STATE(1131), - [sym_identifier] = ACTIONS(1917), - [anon_sym_LF] = ACTIONS(1917), - [anon_sym_CR] = ACTIONS(1917), - [anon_sym_CR_LF] = ACTIONS(1917), - [anon_sym_SLASH_SLASH] = ACTIONS(497), - [anon_sym_SLASH_STAR] = ACTIONS(499), - [anon_sym_SEMI] = ACTIONS(1917), - [anon_sym_DOT] = ACTIONS(1917), - [anon_sym_as] = ACTIONS(1917), - [anon_sym_LBRACE] = ACTIONS(1917), - [anon_sym_COMMA] = ACTIONS(1917), - [anon_sym_RBRACE] = ACTIONS(1917), - [anon_sym_LPAREN] = ACTIONS(1917), - [anon_sym_RPAREN] = ACTIONS(1917), - [anon_sym_PIPE] = ACTIONS(1917), - [anon_sym_fn] = ACTIONS(1917), - [anon_sym_PLUS] = ACTIONS(1917), - [anon_sym_DASH] = ACTIONS(1917), - [anon_sym_STAR] = ACTIONS(1917), - [anon_sym_SLASH] = ACTIONS(1917), - [anon_sym_PERCENT] = ACTIONS(1917), - [anon_sym_LT] = ACTIONS(1917), - [anon_sym_GT] = ACTIONS(1917), - [anon_sym_EQ_EQ] = ACTIONS(1917), - [anon_sym_BANG_EQ] = ACTIONS(1917), - [anon_sym_LT_EQ] = ACTIONS(1917), - [anon_sym_GT_EQ] = ACTIONS(1917), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1917), - [anon_sym_LBRACK] = ACTIONS(1915), - [anon_sym_struct] = ACTIONS(1917), - [anon_sym_mut] = ACTIONS(1917), - [anon_sym_PLUS_PLUS] = ACTIONS(1917), - [anon_sym_DASH_DASH] = ACTIONS(1917), - [anon_sym_QMARK] = ACTIONS(1917), - [anon_sym_BANG] = ACTIONS(1917), - [anon_sym_go] = ACTIONS(1917), - [anon_sym_spawn] = ACTIONS(1917), - [anon_sym_json_DOTdecode] = ACTIONS(1917), - [anon_sym_LBRACK2] = ACTIONS(1917), - [anon_sym_TILDE] = ACTIONS(1917), - [anon_sym_CARET] = ACTIONS(1917), - [anon_sym_AMP] = ACTIONS(1917), - [anon_sym_LT_DASH] = ACTIONS(1917), - [anon_sym_LT_LT] = ACTIONS(1917), - [anon_sym_GT_GT] = ACTIONS(1917), - [anon_sym_GT_GT_GT] = ACTIONS(1917), - [anon_sym_AMP_CARET] = ACTIONS(1917), - [anon_sym_AMP_AMP] = ACTIONS(1917), - [anon_sym_PIPE_PIPE] = ACTIONS(1917), - [anon_sym_or] = ACTIONS(1917), - [sym_none] = ACTIONS(1917), - [sym_true] = ACTIONS(1917), - [sym_false] = ACTIONS(1917), - [sym_nil] = ACTIONS(1917), - [anon_sym_QMARK_DOT] = ACTIONS(1917), - [anon_sym_POUND_LBRACK] = ACTIONS(1917), - [anon_sym_if] = ACTIONS(1917), - [anon_sym_DOLLARif] = ACTIONS(1917), - [anon_sym_DOLLARelse] = ACTIONS(1917), - [anon_sym_is] = ACTIONS(1917), - [anon_sym_BANGis] = ACTIONS(1917), - [anon_sym_in] = ACTIONS(1917), - [anon_sym_BANGin] = ACTIONS(1917), - [anon_sym_match] = ACTIONS(1917), - [anon_sym_select] = ACTIONS(1917), - [anon_sym_lock] = ACTIONS(1917), - [anon_sym_rlock] = ACTIONS(1917), - [anon_sym_unsafe] = ACTIONS(1917), - [anon_sym_sql] = ACTIONS(1917), - [sym_int_literal] = ACTIONS(1917), - [sym_float_literal] = ACTIONS(1917), - [sym_rune_literal] = ACTIONS(1917), - [sym_pseudo_compile_time_identifier] = ACTIONS(1917), - [anon_sym_shared] = ACTIONS(1917), - [anon_sym_map_LBRACK] = ACTIONS(1917), - [anon_sym_chan] = ACTIONS(1917), - [anon_sym_thread] = ACTIONS(1917), - [anon_sym_atomic] = ACTIONS(1917), - [sym___double_quote] = ACTIONS(1917), - [sym___single_quote] = ACTIONS(1917), - [sym___c_double_quote] = ACTIONS(1917), - [sym___c_single_quote] = ACTIONS(1917), - [sym___r_double_quote] = ACTIONS(1917), - [sym___r_single_quote] = ACTIONS(1917), + [anon_sym_BANGin] = ACTIONS(625), + [anon_sym_STAR_EQ] = ACTIONS(625), + [anon_sym_SLASH_EQ] = ACTIONS(625), + [anon_sym_PERCENT_EQ] = ACTIONS(625), + [anon_sym_LT_LT_EQ] = ACTIONS(625), + [anon_sym_GT_GT_EQ] = ACTIONS(625), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(625), + [anon_sym_AMP_EQ] = ACTIONS(625), + [anon_sym_AMP_CARET_EQ] = ACTIONS(625), + [anon_sym_PLUS_EQ] = ACTIONS(625), + [anon_sym_DASH_EQ] = ACTIONS(625), + [anon_sym_PIPE_EQ] = ACTIONS(625), + [anon_sym_CARET_EQ] = ACTIONS(625), + [anon_sym_COLON_EQ] = ACTIONS(625), + [anon_sym_shared] = ACTIONS(583), + [anon_sym_map_LBRACK] = ACTIONS(85), + [anon_sym_chan] = ACTIONS(87), + [anon_sym_thread] = ACTIONS(89), + [anon_sym_atomic] = ACTIONS(91), }, - [1132] = { - [sym_line_comment] = STATE(1132), - [sym_block_comment] = STATE(1132), - [sym_identifier] = ACTIONS(1899), - [anon_sym_LF] = ACTIONS(1899), - [anon_sym_CR] = ACTIONS(1899), - [anon_sym_CR_LF] = ACTIONS(1899), + [1172] = { + [sym_line_comment] = STATE(1172), + [sym_block_comment] = STATE(1172), + [sym_identifier] = ACTIONS(2137), + [anon_sym_LF] = ACTIONS(2137), + [anon_sym_CR] = ACTIONS(2137), + [anon_sym_CR_LF] = ACTIONS(2137), [anon_sym_SLASH_SLASH] = ACTIONS(497), [anon_sym_SLASH_STAR] = ACTIONS(499), - [anon_sym_SEMI] = ACTIONS(1899), - [anon_sym_DOT] = ACTIONS(1899), - [anon_sym_as] = ACTIONS(1899), - [anon_sym_LBRACE] = ACTIONS(1899), - [anon_sym_COMMA] = ACTIONS(1899), - [anon_sym_RBRACE] = ACTIONS(1899), - [anon_sym_LPAREN] = ACTIONS(1899), - [anon_sym_RPAREN] = ACTIONS(1899), - [anon_sym_PIPE] = ACTIONS(1899), - [anon_sym_fn] = ACTIONS(1899), - [anon_sym_PLUS] = ACTIONS(1899), - [anon_sym_DASH] = ACTIONS(1899), - [anon_sym_STAR] = ACTIONS(1899), - [anon_sym_SLASH] = ACTIONS(1899), - [anon_sym_PERCENT] = ACTIONS(1899), - [anon_sym_LT] = ACTIONS(1899), - [anon_sym_GT] = ACTIONS(1899), - [anon_sym_EQ_EQ] = ACTIONS(1899), - [anon_sym_BANG_EQ] = ACTIONS(1899), - [anon_sym_LT_EQ] = ACTIONS(1899), - [anon_sym_GT_EQ] = ACTIONS(1899), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1899), - [anon_sym_LBRACK] = ACTIONS(1897), - [anon_sym_struct] = ACTIONS(1899), - [anon_sym_mut] = ACTIONS(1899), - [anon_sym_PLUS_PLUS] = ACTIONS(1899), - [anon_sym_DASH_DASH] = ACTIONS(1899), - [anon_sym_QMARK] = ACTIONS(1899), - [anon_sym_BANG] = ACTIONS(1899), - [anon_sym_go] = ACTIONS(1899), - [anon_sym_spawn] = ACTIONS(1899), - [anon_sym_json_DOTdecode] = ACTIONS(1899), - [anon_sym_LBRACK2] = ACTIONS(1899), - [anon_sym_TILDE] = ACTIONS(1899), - [anon_sym_CARET] = ACTIONS(1899), - [anon_sym_AMP] = ACTIONS(1899), - [anon_sym_LT_DASH] = ACTIONS(1899), - [anon_sym_LT_LT] = ACTIONS(1899), - [anon_sym_GT_GT] = ACTIONS(1899), - [anon_sym_GT_GT_GT] = ACTIONS(1899), - [anon_sym_AMP_CARET] = ACTIONS(1899), - [anon_sym_AMP_AMP] = ACTIONS(1899), - [anon_sym_PIPE_PIPE] = ACTIONS(1899), - [anon_sym_or] = ACTIONS(1899), - [sym_none] = ACTIONS(1899), - [sym_true] = ACTIONS(1899), - [sym_false] = ACTIONS(1899), - [sym_nil] = ACTIONS(1899), - [anon_sym_QMARK_DOT] = ACTIONS(1899), - [anon_sym_POUND_LBRACK] = ACTIONS(1899), - [anon_sym_if] = ACTIONS(1899), - [anon_sym_DOLLARif] = ACTIONS(1899), - [anon_sym_DOLLARelse] = ACTIONS(3732), - [anon_sym_is] = ACTIONS(1899), - [anon_sym_BANGis] = ACTIONS(1899), - [anon_sym_in] = ACTIONS(1899), - [anon_sym_BANGin] = ACTIONS(1899), - [anon_sym_match] = ACTIONS(1899), - [anon_sym_select] = ACTIONS(1899), - [anon_sym_lock] = ACTIONS(1899), - [anon_sym_rlock] = ACTIONS(1899), - [anon_sym_unsafe] = ACTIONS(1899), - [anon_sym_sql] = ACTIONS(1899), - [sym_int_literal] = ACTIONS(1899), - [sym_float_literal] = ACTIONS(1899), - [sym_rune_literal] = ACTIONS(1899), - [sym_pseudo_compile_time_identifier] = ACTIONS(1899), - [anon_sym_shared] = ACTIONS(1899), - [anon_sym_map_LBRACK] = ACTIONS(1899), - [anon_sym_chan] = ACTIONS(1899), - [anon_sym_thread] = ACTIONS(1899), - [anon_sym_atomic] = ACTIONS(1899), - [sym___double_quote] = ACTIONS(1899), - [sym___single_quote] = ACTIONS(1899), - [sym___c_double_quote] = ACTIONS(1899), - [sym___c_single_quote] = ACTIONS(1899), - [sym___r_double_quote] = ACTIONS(1899), - [sym___r_single_quote] = ACTIONS(1899), + [anon_sym_SEMI] = ACTIONS(2137), + [anon_sym_DOT] = ACTIONS(2137), + [anon_sym_as] = ACTIONS(2137), + [anon_sym_LBRACE] = ACTIONS(2137), + [anon_sym_COMMA] = ACTIONS(2137), + [anon_sym_RBRACE] = ACTIONS(2137), + [anon_sym_LPAREN] = ACTIONS(2137), + [anon_sym_RPAREN] = ACTIONS(2137), + [anon_sym_PIPE] = ACTIONS(2137), + [anon_sym_fn] = ACTIONS(2137), + [anon_sym_PLUS] = ACTIONS(2137), + [anon_sym_DASH] = ACTIONS(2137), + [anon_sym_STAR] = ACTIONS(2137), + [anon_sym_SLASH] = ACTIONS(2137), + [anon_sym_PERCENT] = ACTIONS(2137), + [anon_sym_LT] = ACTIONS(2137), + [anon_sym_GT] = ACTIONS(2137), + [anon_sym_EQ_EQ] = ACTIONS(2137), + [anon_sym_BANG_EQ] = ACTIONS(2137), + [anon_sym_LT_EQ] = ACTIONS(2137), + [anon_sym_GT_EQ] = ACTIONS(2137), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2137), + [anon_sym_LBRACK] = ACTIONS(2135), + [anon_sym_struct] = ACTIONS(2137), + [anon_sym_mut] = ACTIONS(2137), + [anon_sym_PLUS_PLUS] = ACTIONS(2137), + [anon_sym_DASH_DASH] = ACTIONS(2137), + [anon_sym_QMARK] = ACTIONS(2137), + [anon_sym_BANG] = ACTIONS(2137), + [anon_sym_go] = ACTIONS(2137), + [anon_sym_spawn] = ACTIONS(2137), + [anon_sym_json_DOTdecode] = ACTIONS(2137), + [anon_sym_LBRACK2] = ACTIONS(2137), + [anon_sym_TILDE] = ACTIONS(2137), + [anon_sym_CARET] = ACTIONS(2137), + [anon_sym_AMP] = ACTIONS(2137), + [anon_sym_LT_DASH] = ACTIONS(2137), + [anon_sym_LT_LT] = ACTIONS(2137), + [anon_sym_GT_GT] = ACTIONS(2137), + [anon_sym_GT_GT_GT] = ACTIONS(2137), + [anon_sym_AMP_CARET] = ACTIONS(2137), + [anon_sym_AMP_AMP] = ACTIONS(2137), + [anon_sym_PIPE_PIPE] = ACTIONS(2137), + [anon_sym_or] = ACTIONS(2137), + [sym_none] = ACTIONS(2137), + [sym_true] = ACTIONS(2137), + [sym_false] = ACTIONS(2137), + [sym_nil] = ACTIONS(2137), + [anon_sym_QMARK_DOT] = ACTIONS(2137), + [anon_sym_POUND_LBRACK] = ACTIONS(2137), + [anon_sym_if] = ACTIONS(2137), + [anon_sym_DOLLARif] = ACTIONS(2137), + [anon_sym_is] = ACTIONS(2137), + [anon_sym_BANGis] = ACTIONS(2137), + [anon_sym_in] = ACTIONS(2137), + [anon_sym_BANGin] = ACTIONS(2137), + [anon_sym_match] = ACTIONS(2137), + [anon_sym_select] = ACTIONS(2137), + [anon_sym_lock] = ACTIONS(2137), + [anon_sym_rlock] = ACTIONS(2137), + [anon_sym_unsafe] = ACTIONS(2137), + [anon_sym_sql] = ACTIONS(2137), + [sym_int_literal] = ACTIONS(2137), + [sym_float_literal] = ACTIONS(2137), + [sym_rune_literal] = ACTIONS(2137), + [sym_pseudo_compile_time_identifier] = ACTIONS(2137), + [anon_sym_shared] = ACTIONS(2137), + [anon_sym_map_LBRACK] = ACTIONS(2137), + [anon_sym_chan] = ACTIONS(2137), + [anon_sym_thread] = ACTIONS(2137), + [anon_sym_atomic] = ACTIONS(2137), + [sym___double_quote] = ACTIONS(2137), + [sym___single_quote] = ACTIONS(2137), + [sym___c_double_quote] = ACTIONS(2137), + [sym___c_single_quote] = ACTIONS(2137), + [sym___r_double_quote] = ACTIONS(2137), + [sym___r_single_quote] = ACTIONS(2137), }, - [1133] = { - [sym_line_comment] = STATE(1133), - [sym_block_comment] = STATE(1133), - [sym_type_parameters] = STATE(4205), - [sym_argument_list] = STATE(1166), - [sym_or_block] = STATE(1167), - [sym_identifier] = ACTIONS(3734), - [anon_sym_LF] = ACTIONS(3736), - [anon_sym_CR] = ACTIONS(3736), - [anon_sym_CR_LF] = ACTIONS(3736), + [1173] = { + [sym_line_comment] = STATE(1173), + [sym_block_comment] = STATE(1173), + [sym_identifier] = ACTIONS(2475), + [anon_sym_LF] = ACTIONS(2475), + [anon_sym_CR] = ACTIONS(2475), + [anon_sym_CR_LF] = ACTIONS(2475), [anon_sym_SLASH_SLASH] = ACTIONS(497), [anon_sym_SLASH_STAR] = ACTIONS(499), - [anon_sym_SEMI] = ACTIONS(3736), - [anon_sym_DOT] = ACTIONS(3654), - [anon_sym_as] = ACTIONS(3666), - [anon_sym_LBRACE] = ACTIONS(3734), - [anon_sym_COMMA] = ACTIONS(3736), - [anon_sym_RBRACE] = ACTIONS(3734), - [anon_sym_LPAREN] = ACTIONS(3656), - [anon_sym_PIPE] = ACTIONS(3668), - [anon_sym_fn] = ACTIONS(3734), - [anon_sym_PLUS] = ACTIONS(3668), - [anon_sym_DASH] = ACTIONS(3668), - [anon_sym_STAR] = ACTIONS(3670), - [anon_sym_SLASH] = ACTIONS(3670), - [anon_sym_PERCENT] = ACTIONS(3670), - [anon_sym_LT] = ACTIONS(3672), - [anon_sym_GT] = ACTIONS(3672), - [anon_sym_EQ_EQ] = ACTIONS(3672), - [anon_sym_BANG_EQ] = ACTIONS(3672), - [anon_sym_LT_EQ] = ACTIONS(3672), - [anon_sym_GT_EQ] = ACTIONS(3672), - [anon_sym_LBRACK] = ACTIONS(3658), - [anon_sym_struct] = ACTIONS(3734), - [anon_sym_mut] = ACTIONS(3734), - [anon_sym_PLUS_PLUS] = ACTIONS(3674), - [anon_sym_DASH_DASH] = ACTIONS(3676), - [anon_sym_QMARK] = ACTIONS(3660), - [anon_sym_BANG] = ACTIONS(3662), - [anon_sym_go] = ACTIONS(3734), - [anon_sym_spawn] = ACTIONS(3734), - [anon_sym_json_DOTdecode] = ACTIONS(3734), - [anon_sym_LBRACK2] = ACTIONS(3664), - [anon_sym_TILDE] = ACTIONS(3734), - [anon_sym_CARET] = ACTIONS(3668), - [anon_sym_AMP] = ACTIONS(3670), - [anon_sym_LT_DASH] = ACTIONS(3734), - [anon_sym_LT_LT] = ACTIONS(3670), - [anon_sym_GT_GT] = ACTIONS(3670), - [anon_sym_GT_GT_GT] = ACTIONS(3670), - [anon_sym_AMP_CARET] = ACTIONS(3670), - [anon_sym_AMP_AMP] = ACTIONS(3678), - [anon_sym_PIPE_PIPE] = ACTIONS(3680), - [anon_sym_or] = ACTIONS(3682), - [sym_none] = ACTIONS(3734), - [sym_true] = ACTIONS(3734), - [sym_false] = ACTIONS(3734), - [sym_nil] = ACTIONS(3734), - [anon_sym_QMARK_DOT] = ACTIONS(3654), - [anon_sym_POUND_LBRACK] = ACTIONS(3664), - [anon_sym_if] = ACTIONS(3734), - [anon_sym_DOLLARif] = ACTIONS(3734), - [anon_sym_is] = ACTIONS(3684), - [anon_sym_BANGis] = ACTIONS(3684), - [anon_sym_in] = ACTIONS(3686), - [anon_sym_BANGin] = ACTIONS(3686), - [anon_sym_match] = ACTIONS(3734), - [anon_sym_select] = ACTIONS(3734), - [anon_sym_lock] = ACTIONS(3734), - [anon_sym_rlock] = ACTIONS(3734), - [anon_sym_unsafe] = ACTIONS(3734), - [anon_sym_sql] = ACTIONS(3734), - [sym_int_literal] = ACTIONS(3734), - [sym_float_literal] = ACTIONS(3734), - [sym_rune_literal] = ACTIONS(3734), - [sym_pseudo_compile_time_identifier] = ACTIONS(3734), - [anon_sym_shared] = ACTIONS(3734), - [anon_sym_map_LBRACK] = ACTIONS(3734), - [anon_sym_chan] = ACTIONS(3734), - [anon_sym_thread] = ACTIONS(3734), - [anon_sym_atomic] = ACTIONS(3734), - [sym___double_quote] = ACTIONS(3734), - [sym___single_quote] = ACTIONS(3734), - [sym___c_double_quote] = ACTIONS(3734), - [sym___c_single_quote] = ACTIONS(3734), - [sym___r_double_quote] = ACTIONS(3734), - [sym___r_single_quote] = ACTIONS(3734), + [anon_sym_SEMI] = ACTIONS(2475), + [anon_sym_DOT] = ACTIONS(2475), + [anon_sym_as] = ACTIONS(2475), + [anon_sym_LBRACE] = ACTIONS(2475), + [anon_sym_COMMA] = ACTIONS(2475), + [anon_sym_RBRACE] = ACTIONS(2475), + [anon_sym_LPAREN] = ACTIONS(2475), + [anon_sym_RPAREN] = ACTIONS(2475), + [anon_sym_PIPE] = ACTIONS(2475), + [anon_sym_fn] = ACTIONS(2475), + [anon_sym_PLUS] = ACTIONS(2475), + [anon_sym_DASH] = ACTIONS(2475), + [anon_sym_STAR] = ACTIONS(2475), + [anon_sym_SLASH] = ACTIONS(2475), + [anon_sym_PERCENT] = ACTIONS(2475), + [anon_sym_LT] = ACTIONS(2475), + [anon_sym_GT] = ACTIONS(2475), + [anon_sym_EQ_EQ] = ACTIONS(2475), + [anon_sym_BANG_EQ] = ACTIONS(2475), + [anon_sym_LT_EQ] = ACTIONS(2475), + [anon_sym_GT_EQ] = ACTIONS(2475), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2475), + [anon_sym_LBRACK] = ACTIONS(2473), + [anon_sym_struct] = ACTIONS(2475), + [anon_sym_mut] = ACTIONS(2475), + [anon_sym_PLUS_PLUS] = ACTIONS(2475), + [anon_sym_DASH_DASH] = ACTIONS(2475), + [anon_sym_QMARK] = ACTIONS(2475), + [anon_sym_BANG] = ACTIONS(2475), + [anon_sym_go] = ACTIONS(2475), + [anon_sym_spawn] = ACTIONS(2475), + [anon_sym_json_DOTdecode] = ACTIONS(2475), + [anon_sym_LBRACK2] = ACTIONS(2475), + [anon_sym_TILDE] = ACTIONS(2475), + [anon_sym_CARET] = ACTIONS(2475), + [anon_sym_AMP] = ACTIONS(2475), + [anon_sym_LT_DASH] = ACTIONS(2475), + [anon_sym_LT_LT] = ACTIONS(2475), + [anon_sym_GT_GT] = ACTIONS(2475), + [anon_sym_GT_GT_GT] = ACTIONS(2475), + [anon_sym_AMP_CARET] = ACTIONS(2475), + [anon_sym_AMP_AMP] = ACTIONS(2475), + [anon_sym_PIPE_PIPE] = ACTIONS(2475), + [anon_sym_or] = ACTIONS(2475), + [sym_none] = ACTIONS(2475), + [sym_true] = ACTIONS(2475), + [sym_false] = ACTIONS(2475), + [sym_nil] = ACTIONS(2475), + [anon_sym_QMARK_DOT] = ACTIONS(2475), + [anon_sym_POUND_LBRACK] = ACTIONS(2475), + [anon_sym_if] = ACTIONS(2475), + [anon_sym_DOLLARif] = ACTIONS(2475), + [anon_sym_is] = ACTIONS(2475), + [anon_sym_BANGis] = ACTIONS(2475), + [anon_sym_in] = ACTIONS(2475), + [anon_sym_BANGin] = ACTIONS(2475), + [anon_sym_match] = ACTIONS(2475), + [anon_sym_select] = ACTIONS(2475), + [anon_sym_lock] = ACTIONS(2475), + [anon_sym_rlock] = ACTIONS(2475), + [anon_sym_unsafe] = ACTIONS(2475), + [anon_sym_sql] = ACTIONS(2475), + [sym_int_literal] = ACTIONS(2475), + [sym_float_literal] = ACTIONS(2475), + [sym_rune_literal] = ACTIONS(2475), + [sym_pseudo_compile_time_identifier] = ACTIONS(2475), + [anon_sym_shared] = ACTIONS(2475), + [anon_sym_map_LBRACK] = ACTIONS(2475), + [anon_sym_chan] = ACTIONS(2475), + [anon_sym_thread] = ACTIONS(2475), + [anon_sym_atomic] = ACTIONS(2475), + [sym___double_quote] = ACTIONS(2475), + [sym___single_quote] = ACTIONS(2475), + [sym___c_double_quote] = ACTIONS(2475), + [sym___c_single_quote] = ACTIONS(2475), + [sym___r_double_quote] = ACTIONS(2475), + [sym___r_single_quote] = ACTIONS(2475), }, - [1134] = { - [sym_line_comment] = STATE(1134), - [sym_block_comment] = STATE(1134), - [sym_identifier] = ACTIONS(1851), - [anon_sym_LF] = ACTIONS(1851), - [anon_sym_CR] = ACTIONS(1851), - [anon_sym_CR_LF] = ACTIONS(1851), + [1174] = { + [sym_line_comment] = STATE(1174), + [sym_block_comment] = STATE(1174), + [sym_identifier] = ACTIONS(1987), + [anon_sym_LF] = ACTIONS(1987), + [anon_sym_CR] = ACTIONS(1987), + [anon_sym_CR_LF] = ACTIONS(1987), [anon_sym_SLASH_SLASH] = ACTIONS(497), [anon_sym_SLASH_STAR] = ACTIONS(499), - [anon_sym_SEMI] = ACTIONS(1851), - [anon_sym_DOT] = ACTIONS(1851), - [anon_sym_as] = ACTIONS(1851), - [anon_sym_LBRACE] = ACTIONS(1853), - [anon_sym_COMMA] = ACTIONS(1851), - [anon_sym_RBRACE] = ACTIONS(1851), - [anon_sym_LPAREN] = ACTIONS(1851), - [anon_sym_RPAREN] = ACTIONS(1851), - [anon_sym_PIPE] = ACTIONS(1851), - [anon_sym_fn] = ACTIONS(1851), - [anon_sym_PLUS] = ACTIONS(1851), - [anon_sym_DASH] = ACTIONS(1851), - [anon_sym_STAR] = ACTIONS(1851), - [anon_sym_SLASH] = ACTIONS(1851), - [anon_sym_PERCENT] = ACTIONS(1851), - [anon_sym_LT] = ACTIONS(1851), - [anon_sym_GT] = ACTIONS(1851), - [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_DOT_DOT_DOT] = ACTIONS(1851), - [anon_sym_LBRACK] = ACTIONS(1856), - [anon_sym_struct] = ACTIONS(1851), - [anon_sym_mut] = ACTIONS(1851), - [anon_sym_COLON] = ACTIONS(1851), - [anon_sym_PLUS_PLUS] = ACTIONS(1851), - [anon_sym_DASH_DASH] = ACTIONS(1851), - [anon_sym_QMARK] = ACTIONS(1851), - [anon_sym_BANG] = ACTIONS(1851), - [anon_sym_go] = ACTIONS(1851), - [anon_sym_spawn] = ACTIONS(1851), - [anon_sym_json_DOTdecode] = ACTIONS(1851), - [anon_sym_LBRACK2] = ACTIONS(1851), - [anon_sym_TILDE] = ACTIONS(1851), - [anon_sym_CARET] = ACTIONS(1851), - [anon_sym_AMP] = ACTIONS(1851), - [anon_sym_LT_DASH] = ACTIONS(1851), - [anon_sym_LT_LT] = ACTIONS(1851), - [anon_sym_GT_GT] = ACTIONS(1851), - [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(1851), - [sym_none] = ACTIONS(1851), - [sym_true] = ACTIONS(1851), - [sym_false] = ACTIONS(1851), - [sym_nil] = ACTIONS(1851), - [anon_sym_QMARK_DOT] = ACTIONS(1851), - [anon_sym_POUND_LBRACK] = ACTIONS(1851), - [anon_sym_if] = ACTIONS(1851), - [anon_sym_DOLLARif] = ACTIONS(1851), - [anon_sym_is] = ACTIONS(1851), - [anon_sym_BANGis] = ACTIONS(1851), - [anon_sym_in] = ACTIONS(1851), - [anon_sym_BANGin] = ACTIONS(1851), - [anon_sym_match] = ACTIONS(1851), - [anon_sym_select] = ACTIONS(1851), - [anon_sym_lock] = ACTIONS(1851), - [anon_sym_rlock] = ACTIONS(1851), - [anon_sym_unsafe] = ACTIONS(1851), - [anon_sym_sql] = ACTIONS(1851), - [sym_int_literal] = ACTIONS(1851), - [sym_float_literal] = ACTIONS(1851), - [sym_rune_literal] = ACTIONS(1851), - [sym_pseudo_compile_time_identifier] = ACTIONS(1851), - [anon_sym_shared] = ACTIONS(1851), - [anon_sym_map_LBRACK] = ACTIONS(1851), - [anon_sym_chan] = ACTIONS(1851), - [anon_sym_thread] = ACTIONS(1851), - [anon_sym_atomic] = ACTIONS(1851), - [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), + [anon_sym_SEMI] = ACTIONS(1987), + [anon_sym_DOT] = ACTIONS(1987), + [anon_sym_as] = ACTIONS(1987), + [anon_sym_LBRACE] = ACTIONS(1987), + [anon_sym_COMMA] = ACTIONS(1987), + [anon_sym_RBRACE] = ACTIONS(1987), + [anon_sym_LPAREN] = ACTIONS(1987), + [anon_sym_RPAREN] = ACTIONS(1987), + [anon_sym_PIPE] = ACTIONS(1987), + [anon_sym_fn] = ACTIONS(1987), + [anon_sym_PLUS] = ACTIONS(1987), + [anon_sym_DASH] = ACTIONS(1987), + [anon_sym_STAR] = ACTIONS(1987), + [anon_sym_SLASH] = ACTIONS(1987), + [anon_sym_PERCENT] = ACTIONS(1987), + [anon_sym_LT] = ACTIONS(1987), + [anon_sym_GT] = ACTIONS(1987), + [anon_sym_EQ_EQ] = ACTIONS(1987), + [anon_sym_BANG_EQ] = ACTIONS(1987), + [anon_sym_LT_EQ] = ACTIONS(1987), + [anon_sym_GT_EQ] = ACTIONS(1987), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1987), + [anon_sym_LBRACK] = ACTIONS(1989), + [anon_sym_struct] = ACTIONS(1987), + [anon_sym_mut] = ACTIONS(1987), + [anon_sym_PLUS_PLUS] = ACTIONS(1987), + [anon_sym_DASH_DASH] = ACTIONS(1987), + [anon_sym_QMARK] = ACTIONS(1987), + [anon_sym_BANG] = ACTIONS(1987), + [anon_sym_go] = ACTIONS(1987), + [anon_sym_spawn] = ACTIONS(1987), + [anon_sym_json_DOTdecode] = ACTIONS(1987), + [anon_sym_LBRACK2] = ACTIONS(1987), + [anon_sym_TILDE] = ACTIONS(1987), + [anon_sym_CARET] = ACTIONS(1987), + [anon_sym_AMP] = ACTIONS(1987), + [anon_sym_LT_DASH] = ACTIONS(1987), + [anon_sym_LT_LT] = ACTIONS(1987), + [anon_sym_GT_GT] = ACTIONS(1987), + [anon_sym_GT_GT_GT] = ACTIONS(1987), + [anon_sym_AMP_CARET] = ACTIONS(1987), + [anon_sym_AMP_AMP] = ACTIONS(1987), + [anon_sym_PIPE_PIPE] = ACTIONS(1987), + [anon_sym_or] = ACTIONS(1987), + [sym_none] = ACTIONS(1987), + [sym_true] = ACTIONS(1987), + [sym_false] = ACTIONS(1987), + [sym_nil] = ACTIONS(1987), + [anon_sym_QMARK_DOT] = ACTIONS(1987), + [anon_sym_POUND_LBRACK] = ACTIONS(1987), + [anon_sym_if] = ACTIONS(1987), + [anon_sym_DOLLARif] = ACTIONS(1987), + [anon_sym_is] = ACTIONS(1987), + [anon_sym_BANGis] = ACTIONS(1987), + [anon_sym_in] = ACTIONS(1987), + [anon_sym_BANGin] = ACTIONS(1987), + [anon_sym_match] = ACTIONS(1987), + [anon_sym_select] = ACTIONS(1987), + [anon_sym_lock] = ACTIONS(1987), + [anon_sym_rlock] = ACTIONS(1987), + [anon_sym_unsafe] = ACTIONS(1987), + [anon_sym_sql] = ACTIONS(1987), + [sym_int_literal] = ACTIONS(1987), + [sym_float_literal] = ACTIONS(1987), + [sym_rune_literal] = ACTIONS(1987), + [sym_pseudo_compile_time_identifier] = ACTIONS(1987), + [anon_sym_shared] = ACTIONS(1987), + [anon_sym_map_LBRACK] = ACTIONS(1987), + [anon_sym_chan] = ACTIONS(1987), + [anon_sym_thread] = ACTIONS(1987), + [anon_sym_atomic] = ACTIONS(1987), + [sym___double_quote] = ACTIONS(1987), + [sym___single_quote] = ACTIONS(1987), + [sym___c_double_quote] = ACTIONS(1987), + [sym___c_single_quote] = ACTIONS(1987), + [sym___r_double_quote] = ACTIONS(1987), + [sym___r_single_quote] = ACTIONS(1987), }, - [1135] = { - [sym_line_comment] = STATE(1135), - [sym_block_comment] = STATE(1135), - [sym_type_parameters] = STATE(1201), - [sym_identifier] = ACTIONS(1905), - [anon_sym_LF] = ACTIONS(1905), - [anon_sym_CR] = ACTIONS(1905), - [anon_sym_CR_LF] = ACTIONS(1905), + [1175] = { + [sym_line_comment] = STATE(1175), + [sym_block_comment] = STATE(1175), + [sym_identifier] = ACTIONS(2125), + [anon_sym_LF] = ACTIONS(2125), + [anon_sym_CR] = ACTIONS(2125), + [anon_sym_CR_LF] = ACTIONS(2125), [anon_sym_SLASH_SLASH] = ACTIONS(497), [anon_sym_SLASH_STAR] = ACTIONS(499), - [anon_sym_SEMI] = ACTIONS(1905), - [anon_sym_DOT] = ACTIONS(1905), - [anon_sym_as] = ACTIONS(1905), - [anon_sym_LBRACE] = ACTIONS(1905), - [anon_sym_COMMA] = ACTIONS(1905), - [anon_sym_RBRACE] = ACTIONS(1905), - [anon_sym_LPAREN] = ACTIONS(1905), - [anon_sym_RPAREN] = ACTIONS(1905), - [anon_sym_PIPE] = ACTIONS(1905), - [anon_sym_fn] = ACTIONS(1905), - [anon_sym_PLUS] = ACTIONS(1905), - [anon_sym_DASH] = ACTIONS(1905), - [anon_sym_STAR] = ACTIONS(1905), - [anon_sym_SLASH] = ACTIONS(1905), - [anon_sym_PERCENT] = ACTIONS(1905), - [anon_sym_LT] = ACTIONS(1905), - [anon_sym_GT] = ACTIONS(1905), - [anon_sym_EQ_EQ] = ACTIONS(1905), - [anon_sym_BANG_EQ] = ACTIONS(1905), - [anon_sym_LT_EQ] = ACTIONS(1905), - [anon_sym_GT_EQ] = ACTIONS(1905), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1905), - [anon_sym_LBRACK] = ACTIONS(1903), - [anon_sym_struct] = ACTIONS(1905), - [anon_sym_mut] = ACTIONS(1905), - [anon_sym_PLUS_PLUS] = ACTIONS(1905), - [anon_sym_DASH_DASH] = ACTIONS(1905), - [anon_sym_QMARK] = ACTIONS(1905), - [anon_sym_BANG] = ACTIONS(1905), - [anon_sym_go] = ACTIONS(1905), - [anon_sym_spawn] = ACTIONS(1905), - [anon_sym_json_DOTdecode] = ACTIONS(1905), - [anon_sym_LBRACK2] = ACTIONS(1905), - [anon_sym_TILDE] = ACTIONS(1905), - [anon_sym_CARET] = ACTIONS(1905), - [anon_sym_AMP] = ACTIONS(1905), - [anon_sym_LT_DASH] = ACTIONS(1905), - [anon_sym_LT_LT] = ACTIONS(1905), - [anon_sym_GT_GT] = ACTIONS(1905), - [anon_sym_GT_GT_GT] = ACTIONS(1905), - [anon_sym_AMP_CARET] = ACTIONS(1905), - [anon_sym_AMP_AMP] = ACTIONS(1905), - [anon_sym_PIPE_PIPE] = ACTIONS(1905), - [anon_sym_or] = ACTIONS(1905), - [sym_none] = ACTIONS(1905), - [sym_true] = ACTIONS(1905), - [sym_false] = ACTIONS(1905), - [sym_nil] = ACTIONS(1905), - [anon_sym_QMARK_DOT] = ACTIONS(1905), - [anon_sym_POUND_LBRACK] = ACTIONS(1905), - [anon_sym_if] = ACTIONS(1905), - [anon_sym_DOLLARif] = ACTIONS(1905), - [anon_sym_is] = ACTIONS(1905), - [anon_sym_BANGis] = ACTIONS(1905), - [anon_sym_in] = ACTIONS(1905), - [anon_sym_BANGin] = ACTIONS(1905), - [anon_sym_match] = ACTIONS(1905), - [anon_sym_select] = ACTIONS(1905), - [anon_sym_lock] = ACTIONS(1905), - [anon_sym_rlock] = ACTIONS(1905), - [anon_sym_unsafe] = ACTIONS(1905), - [anon_sym_sql] = ACTIONS(1905), - [sym_int_literal] = ACTIONS(1905), - [sym_float_literal] = ACTIONS(1905), - [sym_rune_literal] = ACTIONS(1905), - [sym_pseudo_compile_time_identifier] = ACTIONS(1905), - [anon_sym_shared] = ACTIONS(1905), - [anon_sym_map_LBRACK] = ACTIONS(1905), - [anon_sym_chan] = ACTIONS(1905), - [anon_sym_thread] = ACTIONS(1905), - [anon_sym_atomic] = ACTIONS(1905), - [sym___double_quote] = ACTIONS(1905), - [sym___single_quote] = ACTIONS(1905), - [sym___c_double_quote] = ACTIONS(1905), - [sym___c_single_quote] = ACTIONS(1905), - [sym___r_double_quote] = ACTIONS(1905), - [sym___r_single_quote] = ACTIONS(1905), + [anon_sym_SEMI] = ACTIONS(2125), + [anon_sym_DOT] = ACTIONS(2125), + [anon_sym_as] = ACTIONS(2125), + [anon_sym_LBRACE] = ACTIONS(2125), + [anon_sym_COMMA] = ACTIONS(2125), + [anon_sym_RBRACE] = ACTIONS(2125), + [anon_sym_LPAREN] = ACTIONS(2125), + [anon_sym_RPAREN] = ACTIONS(2125), + [anon_sym_PIPE] = ACTIONS(2125), + [anon_sym_fn] = ACTIONS(2125), + [anon_sym_PLUS] = ACTIONS(2125), + [anon_sym_DASH] = ACTIONS(2125), + [anon_sym_STAR] = ACTIONS(2125), + [anon_sym_SLASH] = ACTIONS(2125), + [anon_sym_PERCENT] = ACTIONS(2125), + [anon_sym_LT] = ACTIONS(2125), + [anon_sym_GT] = ACTIONS(2125), + [anon_sym_EQ_EQ] = ACTIONS(2125), + [anon_sym_BANG_EQ] = ACTIONS(2125), + [anon_sym_LT_EQ] = ACTIONS(2125), + [anon_sym_GT_EQ] = ACTIONS(2125), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2125), + [anon_sym_LBRACK] = ACTIONS(2123), + [anon_sym_struct] = ACTIONS(2125), + [anon_sym_mut] = ACTIONS(2125), + [anon_sym_PLUS_PLUS] = ACTIONS(2125), + [anon_sym_DASH_DASH] = ACTIONS(2125), + [anon_sym_QMARK] = ACTIONS(2125), + [anon_sym_BANG] = ACTIONS(2125), + [anon_sym_go] = ACTIONS(2125), + [anon_sym_spawn] = ACTIONS(2125), + [anon_sym_json_DOTdecode] = ACTIONS(2125), + [anon_sym_LBRACK2] = ACTIONS(2125), + [anon_sym_TILDE] = ACTIONS(2125), + [anon_sym_CARET] = ACTIONS(2125), + [anon_sym_AMP] = ACTIONS(2125), + [anon_sym_LT_DASH] = ACTIONS(2125), + [anon_sym_LT_LT] = ACTIONS(2125), + [anon_sym_GT_GT] = ACTIONS(2125), + [anon_sym_GT_GT_GT] = ACTIONS(2125), + [anon_sym_AMP_CARET] = ACTIONS(2125), + [anon_sym_AMP_AMP] = ACTIONS(2125), + [anon_sym_PIPE_PIPE] = ACTIONS(2125), + [anon_sym_or] = ACTIONS(2125), + [sym_none] = ACTIONS(2125), + [sym_true] = ACTIONS(2125), + [sym_false] = ACTIONS(2125), + [sym_nil] = ACTIONS(2125), + [anon_sym_QMARK_DOT] = ACTIONS(2125), + [anon_sym_POUND_LBRACK] = ACTIONS(2125), + [anon_sym_if] = ACTIONS(2125), + [anon_sym_DOLLARif] = ACTIONS(2125), + [anon_sym_is] = ACTIONS(2125), + [anon_sym_BANGis] = ACTIONS(2125), + [anon_sym_in] = ACTIONS(2125), + [anon_sym_BANGin] = ACTIONS(2125), + [anon_sym_match] = ACTIONS(2125), + [anon_sym_select] = ACTIONS(2125), + [anon_sym_lock] = ACTIONS(2125), + [anon_sym_rlock] = ACTIONS(2125), + [anon_sym_unsafe] = ACTIONS(2125), + [anon_sym_sql] = ACTIONS(2125), + [sym_int_literal] = ACTIONS(2125), + [sym_float_literal] = ACTIONS(2125), + [sym_rune_literal] = ACTIONS(2125), + [sym_pseudo_compile_time_identifier] = ACTIONS(2125), + [anon_sym_shared] = ACTIONS(2125), + [anon_sym_map_LBRACK] = ACTIONS(2125), + [anon_sym_chan] = ACTIONS(2125), + [anon_sym_thread] = ACTIONS(2125), + [anon_sym_atomic] = ACTIONS(2125), + [sym___double_quote] = ACTIONS(2125), + [sym___single_quote] = ACTIONS(2125), + [sym___c_double_quote] = ACTIONS(2125), + [sym___c_single_quote] = ACTIONS(2125), + [sym___r_double_quote] = ACTIONS(2125), + [sym___r_single_quote] = ACTIONS(2125), }, - [1136] = { - [sym_line_comment] = STATE(1136), - [sym_block_comment] = STATE(1136), - [sym_identifier] = ACTIONS(1845), - [anon_sym_LF] = ACTIONS(1845), - [anon_sym_CR] = ACTIONS(1845), - [anon_sym_CR_LF] = ACTIONS(1845), + [1176] = { + [sym_line_comment] = STATE(1176), + [sym_block_comment] = STATE(1176), + [sym_identifier] = ACTIONS(2191), + [anon_sym_LF] = ACTIONS(2191), + [anon_sym_CR] = ACTIONS(2191), + [anon_sym_CR_LF] = ACTIONS(2191), [anon_sym_SLASH_SLASH] = ACTIONS(497), [anon_sym_SLASH_STAR] = ACTIONS(499), - [anon_sym_SEMI] = ACTIONS(1845), - [anon_sym_DOT] = ACTIONS(1845), - [anon_sym_as] = ACTIONS(1845), - [anon_sym_LBRACE] = ACTIONS(1845), - [anon_sym_COMMA] = ACTIONS(1845), - [anon_sym_RBRACE] = ACTIONS(1845), - [anon_sym_LPAREN] = ACTIONS(1845), - [anon_sym_RPAREN] = ACTIONS(1845), - [anon_sym_PIPE] = ACTIONS(1845), - [anon_sym_fn] = ACTIONS(1845), - [anon_sym_PLUS] = ACTIONS(1845), - [anon_sym_DASH] = ACTIONS(1845), - [anon_sym_STAR] = ACTIONS(1845), - [anon_sym_SLASH] = ACTIONS(1845), - [anon_sym_PERCENT] = ACTIONS(1845), - [anon_sym_LT] = ACTIONS(1845), - [anon_sym_GT] = ACTIONS(1845), - [anon_sym_EQ_EQ] = ACTIONS(1845), - [anon_sym_BANG_EQ] = ACTIONS(1845), - [anon_sym_LT_EQ] = ACTIONS(1845), - [anon_sym_GT_EQ] = ACTIONS(1845), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1845), - [anon_sym_LBRACK] = ACTIONS(1843), - [anon_sym_struct] = ACTIONS(1845), - [anon_sym_mut] = ACTIONS(1845), - [anon_sym_PLUS_PLUS] = ACTIONS(1845), - [anon_sym_DASH_DASH] = ACTIONS(1845), - [anon_sym_QMARK] = ACTIONS(1845), - [anon_sym_BANG] = ACTIONS(1845), - [anon_sym_go] = ACTIONS(1845), - [anon_sym_spawn] = ACTIONS(1845), - [anon_sym_json_DOTdecode] = ACTIONS(1845), - [anon_sym_LBRACK2] = ACTIONS(1845), - [anon_sym_TILDE] = ACTIONS(1845), - [anon_sym_CARET] = ACTIONS(1845), - [anon_sym_AMP] = ACTIONS(1845), - [anon_sym_LT_DASH] = ACTIONS(1845), - [anon_sym_LT_LT] = ACTIONS(1845), - [anon_sym_GT_GT] = ACTIONS(1845), - [anon_sym_GT_GT_GT] = ACTIONS(1845), - [anon_sym_AMP_CARET] = ACTIONS(1845), - [anon_sym_AMP_AMP] = ACTIONS(1845), - [anon_sym_PIPE_PIPE] = ACTIONS(1845), - [anon_sym_or] = ACTIONS(1845), - [sym_none] = ACTIONS(1845), - [sym_true] = ACTIONS(1845), - [sym_false] = ACTIONS(1845), - [sym_nil] = ACTIONS(1845), - [anon_sym_QMARK_DOT] = ACTIONS(1845), - [anon_sym_POUND_LBRACK] = ACTIONS(1845), - [anon_sym_if] = ACTIONS(1845), - [anon_sym_else] = ACTIONS(1845), - [anon_sym_DOLLARif] = ACTIONS(1845), - [anon_sym_is] = ACTIONS(1845), - [anon_sym_BANGis] = ACTIONS(1845), - [anon_sym_in] = ACTIONS(1845), - [anon_sym_BANGin] = ACTIONS(1845), - [anon_sym_match] = ACTIONS(1845), - [anon_sym_select] = ACTIONS(1845), - [anon_sym_lock] = ACTIONS(1845), - [anon_sym_rlock] = ACTIONS(1845), - [anon_sym_unsafe] = ACTIONS(1845), - [anon_sym_sql] = ACTIONS(1845), - [sym_int_literal] = ACTIONS(1845), - [sym_float_literal] = ACTIONS(1845), - [sym_rune_literal] = ACTIONS(1845), - [sym_pseudo_compile_time_identifier] = ACTIONS(1845), - [anon_sym_shared] = ACTIONS(1845), - [anon_sym_map_LBRACK] = ACTIONS(1845), - [anon_sym_chan] = ACTIONS(1845), - [anon_sym_thread] = ACTIONS(1845), - [anon_sym_atomic] = ACTIONS(1845), - [sym___double_quote] = ACTIONS(1845), - [sym___single_quote] = ACTIONS(1845), - [sym___c_double_quote] = ACTIONS(1845), - [sym___c_single_quote] = ACTIONS(1845), - [sym___r_double_quote] = ACTIONS(1845), - [sym___r_single_quote] = ACTIONS(1845), + [anon_sym_SEMI] = ACTIONS(2191), + [anon_sym_DOT] = ACTIONS(2191), + [anon_sym_as] = ACTIONS(2191), + [anon_sym_LBRACE] = ACTIONS(2191), + [anon_sym_COMMA] = ACTIONS(2191), + [anon_sym_RBRACE] = ACTIONS(2191), + [anon_sym_LPAREN] = ACTIONS(2191), + [anon_sym_RPAREN] = ACTIONS(2191), + [anon_sym_PIPE] = ACTIONS(2191), + [anon_sym_fn] = ACTIONS(2191), + [anon_sym_PLUS] = ACTIONS(2191), + [anon_sym_DASH] = ACTIONS(2191), + [anon_sym_STAR] = ACTIONS(2191), + [anon_sym_SLASH] = ACTIONS(2191), + [anon_sym_PERCENT] = ACTIONS(2191), + [anon_sym_LT] = ACTIONS(2191), + [anon_sym_GT] = ACTIONS(2191), + [anon_sym_EQ_EQ] = ACTIONS(2191), + [anon_sym_BANG_EQ] = ACTIONS(2191), + [anon_sym_LT_EQ] = ACTIONS(2191), + [anon_sym_GT_EQ] = ACTIONS(2191), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2191), + [anon_sym_LBRACK] = ACTIONS(2189), + [anon_sym_struct] = ACTIONS(2191), + [anon_sym_mut] = ACTIONS(2191), + [anon_sym_PLUS_PLUS] = ACTIONS(2191), + [anon_sym_DASH_DASH] = ACTIONS(2191), + [anon_sym_QMARK] = ACTIONS(2191), + [anon_sym_BANG] = ACTIONS(2191), + [anon_sym_go] = ACTIONS(2191), + [anon_sym_spawn] = ACTIONS(2191), + [anon_sym_json_DOTdecode] = ACTIONS(2191), + [anon_sym_LBRACK2] = ACTIONS(2191), + [anon_sym_TILDE] = ACTIONS(2191), + [anon_sym_CARET] = ACTIONS(2191), + [anon_sym_AMP] = ACTIONS(2191), + [anon_sym_LT_DASH] = ACTIONS(2191), + [anon_sym_LT_LT] = ACTIONS(2191), + [anon_sym_GT_GT] = ACTIONS(2191), + [anon_sym_GT_GT_GT] = ACTIONS(2191), + [anon_sym_AMP_CARET] = ACTIONS(2191), + [anon_sym_AMP_AMP] = ACTIONS(2191), + [anon_sym_PIPE_PIPE] = ACTIONS(2191), + [anon_sym_or] = ACTIONS(2191), + [sym_none] = ACTIONS(2191), + [sym_true] = ACTIONS(2191), + [sym_false] = ACTIONS(2191), + [sym_nil] = ACTIONS(2191), + [anon_sym_QMARK_DOT] = ACTIONS(2191), + [anon_sym_POUND_LBRACK] = ACTIONS(2191), + [anon_sym_if] = ACTIONS(2191), + [anon_sym_DOLLARif] = ACTIONS(2191), + [anon_sym_is] = ACTIONS(2191), + [anon_sym_BANGis] = ACTIONS(2191), + [anon_sym_in] = ACTIONS(2191), + [anon_sym_BANGin] = ACTIONS(2191), + [anon_sym_match] = ACTIONS(2191), + [anon_sym_select] = ACTIONS(2191), + [anon_sym_lock] = ACTIONS(2191), + [anon_sym_rlock] = ACTIONS(2191), + [anon_sym_unsafe] = ACTIONS(2191), + [anon_sym_sql] = ACTIONS(2191), + [sym_int_literal] = ACTIONS(2191), + [sym_float_literal] = ACTIONS(2191), + [sym_rune_literal] = ACTIONS(2191), + [sym_pseudo_compile_time_identifier] = ACTIONS(2191), + [anon_sym_shared] = ACTIONS(2191), + [anon_sym_map_LBRACK] = ACTIONS(2191), + [anon_sym_chan] = ACTIONS(2191), + [anon_sym_thread] = ACTIONS(2191), + [anon_sym_atomic] = ACTIONS(2191), + [sym___double_quote] = ACTIONS(2191), + [sym___single_quote] = ACTIONS(2191), + [sym___c_double_quote] = ACTIONS(2191), + [sym___c_single_quote] = ACTIONS(2191), + [sym___r_double_quote] = ACTIONS(2191), + [sym___r_single_quote] = ACTIONS(2191), }, - [1137] = { - [sym_line_comment] = STATE(1137), - [sym_block_comment] = STATE(1137), - [sym_identifier] = ACTIONS(2487), - [anon_sym_LF] = ACTIONS(2487), - [anon_sym_CR] = ACTIONS(2487), - [anon_sym_CR_LF] = ACTIONS(2487), + [1177] = { + [sym_line_comment] = STATE(1177), + [sym_block_comment] = STATE(1177), + [sym_identifier] = ACTIONS(2688), + [anon_sym_LF] = ACTIONS(2688), + [anon_sym_CR] = ACTIONS(2688), + [anon_sym_CR_LF] = ACTIONS(2688), [anon_sym_SLASH_SLASH] = ACTIONS(497), [anon_sym_SLASH_STAR] = ACTIONS(499), - [anon_sym_SEMI] = ACTIONS(2487), - [anon_sym_DOT] = ACTIONS(2487), - [anon_sym_as] = ACTIONS(2487), - [anon_sym_LBRACE] = ACTIONS(2487), - [anon_sym_COMMA] = ACTIONS(2487), - [anon_sym_RBRACE] = ACTIONS(2487), - [anon_sym_LPAREN] = ACTIONS(2487), - [anon_sym_RPAREN] = ACTIONS(2487), - [anon_sym_PIPE] = ACTIONS(2487), - [anon_sym_fn] = ACTIONS(2487), - [anon_sym_PLUS] = ACTIONS(2487), - [anon_sym_DASH] = ACTIONS(2487), - [anon_sym_STAR] = ACTIONS(2487), - [anon_sym_SLASH] = ACTIONS(2487), - [anon_sym_PERCENT] = ACTIONS(2487), - [anon_sym_LT] = ACTIONS(2487), - [anon_sym_GT] = ACTIONS(2487), - [anon_sym_EQ_EQ] = ACTIONS(2487), - [anon_sym_BANG_EQ] = ACTIONS(2487), - [anon_sym_LT_EQ] = ACTIONS(2487), - [anon_sym_GT_EQ] = ACTIONS(2487), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2487), - [anon_sym_LBRACK] = ACTIONS(2485), - [anon_sym_struct] = ACTIONS(2487), - [anon_sym_mut] = ACTIONS(2487), - [anon_sym_PLUS_PLUS] = ACTIONS(2487), - [anon_sym_DASH_DASH] = ACTIONS(2487), - [anon_sym_QMARK] = ACTIONS(2487), - [anon_sym_BANG] = ACTIONS(2487), - [anon_sym_go] = ACTIONS(2487), - [anon_sym_spawn] = ACTIONS(2487), - [anon_sym_json_DOTdecode] = ACTIONS(2487), - [anon_sym_LBRACK2] = ACTIONS(2487), - [anon_sym_TILDE] = ACTIONS(2487), - [anon_sym_CARET] = ACTIONS(2487), - [anon_sym_AMP] = ACTIONS(2487), - [anon_sym_LT_DASH] = ACTIONS(2487), - [anon_sym_LT_LT] = ACTIONS(2487), - [anon_sym_GT_GT] = ACTIONS(2487), - [anon_sym_GT_GT_GT] = ACTIONS(2487), - [anon_sym_AMP_CARET] = ACTIONS(2487), - [anon_sym_AMP_AMP] = ACTIONS(2487), - [anon_sym_PIPE_PIPE] = ACTIONS(2487), - [anon_sym_or] = ACTIONS(2487), - [sym_none] = ACTIONS(2487), - [sym_true] = ACTIONS(2487), - [sym_false] = ACTIONS(2487), - [sym_nil] = ACTIONS(2487), - [anon_sym_QMARK_DOT] = ACTIONS(2487), - [anon_sym_POUND_LBRACK] = ACTIONS(2487), - [anon_sym_if] = ACTIONS(2487), - [anon_sym_DOLLARif] = ACTIONS(2487), - [anon_sym_is] = ACTIONS(2487), - [anon_sym_BANGis] = ACTIONS(2487), - [anon_sym_in] = ACTIONS(2487), - [anon_sym_BANGin] = ACTIONS(2487), - [anon_sym_match] = ACTIONS(2487), - [anon_sym_select] = ACTIONS(2487), - [anon_sym_lock] = ACTIONS(2487), - [anon_sym_rlock] = ACTIONS(2487), - [anon_sym_unsafe] = ACTIONS(2487), - [anon_sym_sql] = ACTIONS(2487), - [sym_int_literal] = ACTIONS(2487), - [sym_float_literal] = ACTIONS(2487), - [sym_rune_literal] = ACTIONS(2487), - [sym_pseudo_compile_time_identifier] = ACTIONS(2487), - [anon_sym_shared] = ACTIONS(2487), - [anon_sym_map_LBRACK] = ACTIONS(2487), - [anon_sym_chan] = ACTIONS(2487), - [anon_sym_thread] = ACTIONS(2487), - [anon_sym_atomic] = ACTIONS(2487), - [sym___double_quote] = ACTIONS(2487), - [sym___single_quote] = ACTIONS(2487), - [sym___c_double_quote] = ACTIONS(2487), - [sym___c_single_quote] = ACTIONS(2487), - [sym___r_double_quote] = ACTIONS(2487), - [sym___r_single_quote] = ACTIONS(2487), + [anon_sym_SEMI] = ACTIONS(2688), + [anon_sym_DOT] = ACTIONS(2688), + [anon_sym_as] = ACTIONS(2688), + [anon_sym_LBRACE] = ACTIONS(2688), + [anon_sym_COMMA] = ACTIONS(2688), + [anon_sym_RBRACE] = ACTIONS(2688), + [anon_sym_LPAREN] = ACTIONS(2688), + [anon_sym_RPAREN] = ACTIONS(2688), + [anon_sym_PIPE] = ACTIONS(2688), + [anon_sym_fn] = ACTIONS(2688), + [anon_sym_PLUS] = ACTIONS(2688), + [anon_sym_DASH] = ACTIONS(2688), + [anon_sym_STAR] = ACTIONS(2688), + [anon_sym_SLASH] = ACTIONS(2688), + [anon_sym_PERCENT] = ACTIONS(2688), + [anon_sym_LT] = ACTIONS(2688), + [anon_sym_GT] = ACTIONS(2688), + [anon_sym_EQ_EQ] = ACTIONS(2688), + [anon_sym_BANG_EQ] = ACTIONS(2688), + [anon_sym_LT_EQ] = ACTIONS(2688), + [anon_sym_GT_EQ] = ACTIONS(2688), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2688), + [anon_sym_LBRACK] = ACTIONS(2686), + [anon_sym_struct] = ACTIONS(2688), + [anon_sym_mut] = ACTIONS(2688), + [anon_sym_PLUS_PLUS] = ACTIONS(2688), + [anon_sym_DASH_DASH] = ACTIONS(2688), + [anon_sym_QMARK] = ACTIONS(2688), + [anon_sym_BANG] = ACTIONS(2688), + [anon_sym_go] = ACTIONS(2688), + [anon_sym_spawn] = ACTIONS(2688), + [anon_sym_json_DOTdecode] = ACTIONS(2688), + [anon_sym_LBRACK2] = ACTIONS(2688), + [anon_sym_TILDE] = ACTIONS(2688), + [anon_sym_CARET] = ACTIONS(2688), + [anon_sym_AMP] = ACTIONS(2688), + [anon_sym_LT_DASH] = ACTIONS(2688), + [anon_sym_LT_LT] = ACTIONS(2688), + [anon_sym_GT_GT] = ACTIONS(2688), + [anon_sym_GT_GT_GT] = ACTIONS(2688), + [anon_sym_AMP_CARET] = ACTIONS(2688), + [anon_sym_AMP_AMP] = ACTIONS(2688), + [anon_sym_PIPE_PIPE] = ACTIONS(2688), + [anon_sym_or] = ACTIONS(2688), + [sym_none] = ACTIONS(2688), + [sym_true] = ACTIONS(2688), + [sym_false] = ACTIONS(2688), + [sym_nil] = ACTIONS(2688), + [anon_sym_QMARK_DOT] = ACTIONS(2688), + [anon_sym_POUND_LBRACK] = ACTIONS(2688), + [anon_sym_if] = ACTIONS(2688), + [anon_sym_DOLLARif] = ACTIONS(2688), + [anon_sym_is] = ACTIONS(2688), + [anon_sym_BANGis] = ACTIONS(2688), + [anon_sym_in] = ACTIONS(2688), + [anon_sym_BANGin] = ACTIONS(2688), + [anon_sym_match] = ACTIONS(2688), + [anon_sym_select] = ACTIONS(2688), + [anon_sym_lock] = ACTIONS(2688), + [anon_sym_rlock] = ACTIONS(2688), + [anon_sym_unsafe] = ACTIONS(2688), + [anon_sym_sql] = ACTIONS(2688), + [sym_int_literal] = ACTIONS(2688), + [sym_float_literal] = ACTIONS(2688), + [sym_rune_literal] = ACTIONS(2688), + [sym_pseudo_compile_time_identifier] = ACTIONS(2688), + [anon_sym_shared] = ACTIONS(2688), + [anon_sym_map_LBRACK] = ACTIONS(2688), + [anon_sym_chan] = ACTIONS(2688), + [anon_sym_thread] = ACTIONS(2688), + [anon_sym_atomic] = ACTIONS(2688), + [sym___double_quote] = ACTIONS(2688), + [sym___single_quote] = ACTIONS(2688), + [sym___c_double_quote] = ACTIONS(2688), + [sym___c_single_quote] = ACTIONS(2688), + [sym___r_double_quote] = ACTIONS(2688), + [sym___r_single_quote] = ACTIONS(2688), }, - [1138] = { - [sym_line_comment] = STATE(1138), - [sym_block_comment] = STATE(1138), - [sym_identifier] = ACTIONS(2233), - [anon_sym_LF] = ACTIONS(2233), - [anon_sym_CR] = ACTIONS(2233), - [anon_sym_CR_LF] = ACTIONS(2233), + [1178] = { + [sym_line_comment] = STATE(1178), + [sym_block_comment] = STATE(1178), + [sym_identifier] = ACTIONS(2772), + [anon_sym_LF] = ACTIONS(2772), + [anon_sym_CR] = ACTIONS(2772), + [anon_sym_CR_LF] = ACTIONS(2772), [anon_sym_SLASH_SLASH] = ACTIONS(497), [anon_sym_SLASH_STAR] = ACTIONS(499), - [anon_sym_SEMI] = ACTIONS(2233), - [anon_sym_DOT] = ACTIONS(2233), - [anon_sym_as] = ACTIONS(2233), - [anon_sym_LBRACE] = ACTIONS(2233), - [anon_sym_COMMA] = ACTIONS(2233), - [anon_sym_RBRACE] = ACTIONS(2233), - [anon_sym_LPAREN] = ACTIONS(2233), - [anon_sym_RPAREN] = ACTIONS(2233), - [anon_sym_PIPE] = ACTIONS(2233), - [anon_sym_fn] = ACTIONS(2233), - [anon_sym_PLUS] = ACTIONS(2233), - [anon_sym_DASH] = ACTIONS(2233), - [anon_sym_STAR] = ACTIONS(2233), - [anon_sym_SLASH] = ACTIONS(2233), - [anon_sym_PERCENT] = ACTIONS(2233), - [anon_sym_LT] = ACTIONS(2233), - [anon_sym_GT] = ACTIONS(2233), - [anon_sym_EQ_EQ] = ACTIONS(2233), - [anon_sym_BANG_EQ] = ACTIONS(2233), - [anon_sym_LT_EQ] = ACTIONS(2233), - [anon_sym_GT_EQ] = ACTIONS(2233), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2233), - [anon_sym_LBRACK] = ACTIONS(2231), - [anon_sym_struct] = ACTIONS(2233), - [anon_sym_mut] = ACTIONS(2233), - [anon_sym_PLUS_PLUS] = ACTIONS(2233), - [anon_sym_DASH_DASH] = ACTIONS(2233), - [anon_sym_QMARK] = ACTIONS(2233), - [anon_sym_BANG] = ACTIONS(2233), - [anon_sym_go] = ACTIONS(2233), - [anon_sym_spawn] = ACTIONS(2233), - [anon_sym_json_DOTdecode] = ACTIONS(2233), - [anon_sym_LBRACK2] = ACTIONS(2233), - [anon_sym_TILDE] = ACTIONS(2233), - [anon_sym_CARET] = ACTIONS(2233), - [anon_sym_AMP] = ACTIONS(2233), - [anon_sym_LT_DASH] = ACTIONS(2233), - [anon_sym_LT_LT] = ACTIONS(2233), - [anon_sym_GT_GT] = ACTIONS(2233), - [anon_sym_GT_GT_GT] = ACTIONS(2233), - [anon_sym_AMP_CARET] = ACTIONS(2233), - [anon_sym_AMP_AMP] = ACTIONS(2233), - [anon_sym_PIPE_PIPE] = ACTIONS(2233), - [anon_sym_or] = ACTIONS(2233), - [sym_none] = ACTIONS(2233), - [sym_true] = ACTIONS(2233), - [sym_false] = ACTIONS(2233), - [sym_nil] = ACTIONS(2233), - [anon_sym_QMARK_DOT] = ACTIONS(2233), - [anon_sym_POUND_LBRACK] = ACTIONS(2233), - [anon_sym_if] = ACTIONS(2233), - [anon_sym_DOLLARif] = ACTIONS(2233), - [anon_sym_is] = ACTIONS(2233), - [anon_sym_BANGis] = ACTIONS(2233), - [anon_sym_in] = ACTIONS(2233), - [anon_sym_BANGin] = ACTIONS(2233), - [anon_sym_match] = ACTIONS(2233), - [anon_sym_select] = ACTIONS(2233), - [anon_sym_lock] = ACTIONS(2233), - [anon_sym_rlock] = ACTIONS(2233), - [anon_sym_unsafe] = ACTIONS(2233), - [anon_sym_sql] = ACTIONS(2233), - [sym_int_literal] = ACTIONS(2233), - [sym_float_literal] = ACTIONS(2233), - [sym_rune_literal] = ACTIONS(2233), - [sym_pseudo_compile_time_identifier] = ACTIONS(2233), - [anon_sym_shared] = ACTIONS(2233), - [anon_sym_map_LBRACK] = ACTIONS(2233), - [anon_sym_chan] = ACTIONS(2233), - [anon_sym_thread] = ACTIONS(2233), - [anon_sym_atomic] = ACTIONS(2233), - [sym___double_quote] = ACTIONS(2233), - [sym___single_quote] = ACTIONS(2233), - [sym___c_double_quote] = ACTIONS(2233), - [sym___c_single_quote] = ACTIONS(2233), - [sym___r_double_quote] = ACTIONS(2233), - [sym___r_single_quote] = ACTIONS(2233), + [anon_sym_SEMI] = ACTIONS(2772), + [anon_sym_DOT] = ACTIONS(2772), + [anon_sym_as] = ACTIONS(2772), + [anon_sym_LBRACE] = ACTIONS(2772), + [anon_sym_COMMA] = ACTIONS(2772), + [anon_sym_RBRACE] = ACTIONS(2772), + [anon_sym_LPAREN] = ACTIONS(2772), + [anon_sym_RPAREN] = ACTIONS(2772), + [anon_sym_PIPE] = ACTIONS(2772), + [anon_sym_fn] = ACTIONS(2772), + [anon_sym_PLUS] = ACTIONS(2772), + [anon_sym_DASH] = ACTIONS(2772), + [anon_sym_STAR] = ACTIONS(2772), + [anon_sym_SLASH] = ACTIONS(2772), + [anon_sym_PERCENT] = ACTIONS(2772), + [anon_sym_LT] = ACTIONS(2772), + [anon_sym_GT] = ACTIONS(2772), + [anon_sym_EQ_EQ] = ACTIONS(2772), + [anon_sym_BANG_EQ] = ACTIONS(2772), + [anon_sym_LT_EQ] = ACTIONS(2772), + [anon_sym_GT_EQ] = ACTIONS(2772), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2772), + [anon_sym_LBRACK] = ACTIONS(2770), + [anon_sym_struct] = ACTIONS(2772), + [anon_sym_mut] = ACTIONS(2772), + [anon_sym_PLUS_PLUS] = ACTIONS(2772), + [anon_sym_DASH_DASH] = ACTIONS(2772), + [anon_sym_QMARK] = ACTIONS(2772), + [anon_sym_BANG] = ACTIONS(2772), + [anon_sym_go] = ACTIONS(2772), + [anon_sym_spawn] = ACTIONS(2772), + [anon_sym_json_DOTdecode] = ACTIONS(2772), + [anon_sym_LBRACK2] = ACTIONS(2772), + [anon_sym_TILDE] = ACTIONS(2772), + [anon_sym_CARET] = ACTIONS(2772), + [anon_sym_AMP] = ACTIONS(2772), + [anon_sym_LT_DASH] = ACTIONS(2772), + [anon_sym_LT_LT] = ACTIONS(2772), + [anon_sym_GT_GT] = ACTIONS(2772), + [anon_sym_GT_GT_GT] = ACTIONS(2772), + [anon_sym_AMP_CARET] = ACTIONS(2772), + [anon_sym_AMP_AMP] = ACTIONS(2772), + [anon_sym_PIPE_PIPE] = ACTIONS(2772), + [anon_sym_or] = ACTIONS(2772), + [sym_none] = ACTIONS(2772), + [sym_true] = ACTIONS(2772), + [sym_false] = ACTIONS(2772), + [sym_nil] = ACTIONS(2772), + [anon_sym_QMARK_DOT] = ACTIONS(2772), + [anon_sym_POUND_LBRACK] = ACTIONS(2772), + [anon_sym_if] = ACTIONS(2772), + [anon_sym_DOLLARif] = ACTIONS(2772), + [anon_sym_is] = ACTIONS(2772), + [anon_sym_BANGis] = ACTIONS(2772), + [anon_sym_in] = ACTIONS(2772), + [anon_sym_BANGin] = ACTIONS(2772), + [anon_sym_match] = ACTIONS(2772), + [anon_sym_select] = ACTIONS(2772), + [anon_sym_lock] = ACTIONS(2772), + [anon_sym_rlock] = ACTIONS(2772), + [anon_sym_unsafe] = ACTIONS(2772), + [anon_sym_sql] = ACTIONS(2772), + [sym_int_literal] = ACTIONS(2772), + [sym_float_literal] = ACTIONS(2772), + [sym_rune_literal] = ACTIONS(2772), + [sym_pseudo_compile_time_identifier] = ACTIONS(2772), + [anon_sym_shared] = ACTIONS(2772), + [anon_sym_map_LBRACK] = ACTIONS(2772), + [anon_sym_chan] = ACTIONS(2772), + [anon_sym_thread] = ACTIONS(2772), + [anon_sym_atomic] = ACTIONS(2772), + [sym___double_quote] = ACTIONS(2772), + [sym___single_quote] = ACTIONS(2772), + [sym___c_double_quote] = ACTIONS(2772), + [sym___c_single_quote] = ACTIONS(2772), + [sym___r_double_quote] = ACTIONS(2772), + [sym___r_single_quote] = ACTIONS(2772), }, - [1139] = { - [sym_line_comment] = STATE(1139), - [sym_block_comment] = STATE(1139), - [sym_identifier] = ACTIONS(2483), - [anon_sym_LF] = ACTIONS(2483), - [anon_sym_CR] = ACTIONS(2483), - [anon_sym_CR_LF] = ACTIONS(2483), + [1179] = { + [sym_line_comment] = STATE(1179), + [sym_block_comment] = STATE(1179), + [sym_identifier] = ACTIONS(2724), + [anon_sym_LF] = ACTIONS(2724), + [anon_sym_CR] = ACTIONS(2724), + [anon_sym_CR_LF] = ACTIONS(2724), [anon_sym_SLASH_SLASH] = ACTIONS(497), [anon_sym_SLASH_STAR] = ACTIONS(499), - [anon_sym_SEMI] = ACTIONS(2483), - [anon_sym_DOT] = ACTIONS(2483), - [anon_sym_as] = ACTIONS(2483), - [anon_sym_LBRACE] = ACTIONS(2483), - [anon_sym_COMMA] = ACTIONS(2483), - [anon_sym_RBRACE] = ACTIONS(2483), - [anon_sym_LPAREN] = ACTIONS(2483), - [anon_sym_RPAREN] = ACTIONS(2483), - [anon_sym_PIPE] = ACTIONS(2483), - [anon_sym_fn] = ACTIONS(2483), - [anon_sym_PLUS] = ACTIONS(2483), - [anon_sym_DASH] = ACTIONS(2483), - [anon_sym_STAR] = ACTIONS(2483), - [anon_sym_SLASH] = ACTIONS(2483), - [anon_sym_PERCENT] = ACTIONS(2483), - [anon_sym_LT] = ACTIONS(2483), - [anon_sym_GT] = ACTIONS(2483), - [anon_sym_EQ_EQ] = ACTIONS(2483), - [anon_sym_BANG_EQ] = ACTIONS(2483), - [anon_sym_LT_EQ] = ACTIONS(2483), - [anon_sym_GT_EQ] = ACTIONS(2483), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2483), - [anon_sym_LBRACK] = ACTIONS(2481), - [anon_sym_struct] = ACTIONS(2483), - [anon_sym_mut] = ACTIONS(2483), - [anon_sym_PLUS_PLUS] = ACTIONS(2483), - [anon_sym_DASH_DASH] = ACTIONS(2483), - [anon_sym_QMARK] = ACTIONS(2483), - [anon_sym_BANG] = ACTIONS(2483), - [anon_sym_go] = ACTIONS(2483), - [anon_sym_spawn] = ACTIONS(2483), - [anon_sym_json_DOTdecode] = ACTIONS(2483), - [anon_sym_LBRACK2] = ACTIONS(2483), - [anon_sym_TILDE] = ACTIONS(2483), - [anon_sym_CARET] = ACTIONS(2483), - [anon_sym_AMP] = ACTIONS(2483), - [anon_sym_LT_DASH] = ACTIONS(2483), - [anon_sym_LT_LT] = ACTIONS(2483), - [anon_sym_GT_GT] = ACTIONS(2483), - [anon_sym_GT_GT_GT] = ACTIONS(2483), - [anon_sym_AMP_CARET] = ACTIONS(2483), - [anon_sym_AMP_AMP] = ACTIONS(2483), - [anon_sym_PIPE_PIPE] = ACTIONS(2483), - [anon_sym_or] = ACTIONS(2483), - [sym_none] = ACTIONS(2483), - [sym_true] = ACTIONS(2483), - [sym_false] = ACTIONS(2483), - [sym_nil] = ACTIONS(2483), - [anon_sym_QMARK_DOT] = ACTIONS(2483), - [anon_sym_POUND_LBRACK] = ACTIONS(2483), - [anon_sym_if] = ACTIONS(2483), - [anon_sym_DOLLARif] = ACTIONS(2483), - [anon_sym_is] = ACTIONS(2483), - [anon_sym_BANGis] = ACTIONS(2483), - [anon_sym_in] = ACTIONS(2483), - [anon_sym_BANGin] = ACTIONS(2483), - [anon_sym_match] = ACTIONS(2483), - [anon_sym_select] = ACTIONS(2483), - [anon_sym_lock] = ACTIONS(2483), - [anon_sym_rlock] = ACTIONS(2483), - [anon_sym_unsafe] = ACTIONS(2483), - [anon_sym_sql] = ACTIONS(2483), - [sym_int_literal] = ACTIONS(2483), - [sym_float_literal] = ACTIONS(2483), - [sym_rune_literal] = ACTIONS(2483), - [sym_pseudo_compile_time_identifier] = ACTIONS(2483), - [anon_sym_shared] = ACTIONS(2483), - [anon_sym_map_LBRACK] = ACTIONS(2483), - [anon_sym_chan] = ACTIONS(2483), - [anon_sym_thread] = ACTIONS(2483), - [anon_sym_atomic] = ACTIONS(2483), - [sym___double_quote] = ACTIONS(2483), - [sym___single_quote] = ACTIONS(2483), - [sym___c_double_quote] = ACTIONS(2483), - [sym___c_single_quote] = ACTIONS(2483), - [sym___r_double_quote] = ACTIONS(2483), - [sym___r_single_quote] = ACTIONS(2483), + [anon_sym_SEMI] = ACTIONS(2724), + [anon_sym_DOT] = ACTIONS(2724), + [anon_sym_as] = ACTIONS(2724), + [anon_sym_LBRACE] = ACTIONS(2724), + [anon_sym_COMMA] = ACTIONS(2724), + [anon_sym_RBRACE] = ACTIONS(2724), + [anon_sym_LPAREN] = ACTIONS(2724), + [anon_sym_RPAREN] = ACTIONS(2724), + [anon_sym_PIPE] = ACTIONS(2724), + [anon_sym_fn] = ACTIONS(2724), + [anon_sym_PLUS] = ACTIONS(2724), + [anon_sym_DASH] = ACTIONS(2724), + [anon_sym_STAR] = ACTIONS(2724), + [anon_sym_SLASH] = ACTIONS(2724), + [anon_sym_PERCENT] = ACTIONS(2724), + [anon_sym_LT] = ACTIONS(2724), + [anon_sym_GT] = ACTIONS(2724), + [anon_sym_EQ_EQ] = ACTIONS(2724), + [anon_sym_BANG_EQ] = ACTIONS(2724), + [anon_sym_LT_EQ] = ACTIONS(2724), + [anon_sym_GT_EQ] = ACTIONS(2724), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2724), + [anon_sym_LBRACK] = ACTIONS(2722), + [anon_sym_struct] = ACTIONS(2724), + [anon_sym_mut] = ACTIONS(2724), + [anon_sym_PLUS_PLUS] = ACTIONS(2724), + [anon_sym_DASH_DASH] = ACTIONS(2724), + [anon_sym_QMARK] = ACTIONS(2724), + [anon_sym_BANG] = ACTIONS(2724), + [anon_sym_go] = ACTIONS(2724), + [anon_sym_spawn] = ACTIONS(2724), + [anon_sym_json_DOTdecode] = ACTIONS(2724), + [anon_sym_LBRACK2] = ACTIONS(2724), + [anon_sym_TILDE] = ACTIONS(2724), + [anon_sym_CARET] = ACTIONS(2724), + [anon_sym_AMP] = ACTIONS(2724), + [anon_sym_LT_DASH] = ACTIONS(2724), + [anon_sym_LT_LT] = ACTIONS(2724), + [anon_sym_GT_GT] = ACTIONS(2724), + [anon_sym_GT_GT_GT] = ACTIONS(2724), + [anon_sym_AMP_CARET] = ACTIONS(2724), + [anon_sym_AMP_AMP] = ACTIONS(2724), + [anon_sym_PIPE_PIPE] = ACTIONS(2724), + [anon_sym_or] = ACTIONS(2724), + [sym_none] = ACTIONS(2724), + [sym_true] = ACTIONS(2724), + [sym_false] = ACTIONS(2724), + [sym_nil] = ACTIONS(2724), + [anon_sym_QMARK_DOT] = ACTIONS(2724), + [anon_sym_POUND_LBRACK] = ACTIONS(2724), + [anon_sym_if] = ACTIONS(2724), + [anon_sym_DOLLARif] = ACTIONS(2724), + [anon_sym_is] = ACTIONS(2724), + [anon_sym_BANGis] = ACTIONS(2724), + [anon_sym_in] = ACTIONS(2724), + [anon_sym_BANGin] = ACTIONS(2724), + [anon_sym_match] = ACTIONS(2724), + [anon_sym_select] = ACTIONS(2724), + [anon_sym_lock] = ACTIONS(2724), + [anon_sym_rlock] = ACTIONS(2724), + [anon_sym_unsafe] = ACTIONS(2724), + [anon_sym_sql] = ACTIONS(2724), + [sym_int_literal] = ACTIONS(2724), + [sym_float_literal] = ACTIONS(2724), + [sym_rune_literal] = ACTIONS(2724), + [sym_pseudo_compile_time_identifier] = ACTIONS(2724), + [anon_sym_shared] = ACTIONS(2724), + [anon_sym_map_LBRACK] = ACTIONS(2724), + [anon_sym_chan] = ACTIONS(2724), + [anon_sym_thread] = ACTIONS(2724), + [anon_sym_atomic] = ACTIONS(2724), + [sym___double_quote] = ACTIONS(2724), + [sym___single_quote] = ACTIONS(2724), + [sym___c_double_quote] = ACTIONS(2724), + [sym___c_single_quote] = ACTIONS(2724), + [sym___r_double_quote] = ACTIONS(2724), + [sym___r_single_quote] = ACTIONS(2724), }, - [1140] = { - [sym_line_comment] = STATE(1140), - [sym_block_comment] = STATE(1140), - [sym_identifier] = ACTIONS(2761), - [anon_sym_LF] = ACTIONS(2761), - [anon_sym_CR] = ACTIONS(2761), - [anon_sym_CR_LF] = ACTIONS(2761), + [1180] = { + [sym_line_comment] = STATE(1180), + [sym_block_comment] = STATE(1180), + [sym_identifier] = ACTIONS(3068), + [anon_sym_LF] = ACTIONS(3068), + [anon_sym_CR] = ACTIONS(3068), + [anon_sym_CR_LF] = ACTIONS(3068), [anon_sym_SLASH_SLASH] = ACTIONS(497), [anon_sym_SLASH_STAR] = ACTIONS(499), - [anon_sym_SEMI] = ACTIONS(2761), - [anon_sym_DOT] = ACTIONS(2761), - [anon_sym_as] = ACTIONS(2761), - [anon_sym_LBRACE] = ACTIONS(2761), - [anon_sym_COMMA] = ACTIONS(2761), - [anon_sym_RBRACE] = ACTIONS(2761), - [anon_sym_LPAREN] = ACTIONS(2761), - [anon_sym_RPAREN] = ACTIONS(2761), - [anon_sym_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(3068), + [anon_sym_DOT] = ACTIONS(3068), + [anon_sym_as] = ACTIONS(3068), + [anon_sym_LBRACE] = ACTIONS(3068), + [anon_sym_COMMA] = ACTIONS(3068), + [anon_sym_RBRACE] = ACTIONS(3068), + [anon_sym_LPAREN] = ACTIONS(3068), + [anon_sym_RPAREN] = ACTIONS(3068), + [anon_sym_PIPE] = ACTIONS(3068), + [anon_sym_fn] = ACTIONS(3068), + [anon_sym_PLUS] = ACTIONS(3068), + [anon_sym_DASH] = ACTIONS(3068), + [anon_sym_STAR] = ACTIONS(3068), + [anon_sym_SLASH] = ACTIONS(3068), + [anon_sym_PERCENT] = ACTIONS(3068), + [anon_sym_LT] = ACTIONS(3068), + [anon_sym_GT] = ACTIONS(3068), + [anon_sym_EQ_EQ] = ACTIONS(3068), + [anon_sym_BANG_EQ] = ACTIONS(3068), + [anon_sym_LT_EQ] = ACTIONS(3068), + [anon_sym_GT_EQ] = ACTIONS(3068), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3068), + [anon_sym_LBRACK] = ACTIONS(3066), + [anon_sym_struct] = ACTIONS(3068), + [anon_sym_mut] = ACTIONS(3068), + [anon_sym_PLUS_PLUS] = ACTIONS(3068), + [anon_sym_DASH_DASH] = ACTIONS(3068), + [anon_sym_QMARK] = ACTIONS(3068), + [anon_sym_BANG] = ACTIONS(3068), + [anon_sym_go] = ACTIONS(3068), + [anon_sym_spawn] = ACTIONS(3068), + [anon_sym_json_DOTdecode] = ACTIONS(3068), + [anon_sym_LBRACK2] = ACTIONS(3068), + [anon_sym_TILDE] = ACTIONS(3068), + [anon_sym_CARET] = ACTIONS(3068), + [anon_sym_AMP] = ACTIONS(3068), + [anon_sym_LT_DASH] = ACTIONS(3068), + [anon_sym_LT_LT] = ACTIONS(3068), + [anon_sym_GT_GT] = ACTIONS(3068), + [anon_sym_GT_GT_GT] = ACTIONS(3068), + [anon_sym_AMP_CARET] = ACTIONS(3068), + [anon_sym_AMP_AMP] = ACTIONS(3068), + [anon_sym_PIPE_PIPE] = ACTIONS(3068), + [anon_sym_or] = ACTIONS(3068), + [sym_none] = ACTIONS(3068), + [sym_true] = ACTIONS(3068), + [sym_false] = ACTIONS(3068), + [sym_nil] = ACTIONS(3068), + [anon_sym_QMARK_DOT] = ACTIONS(3068), + [anon_sym_POUND_LBRACK] = ACTIONS(3068), + [anon_sym_if] = ACTIONS(3068), + [anon_sym_DOLLARif] = ACTIONS(3068), + [anon_sym_is] = ACTIONS(3068), + [anon_sym_BANGis] = ACTIONS(3068), + [anon_sym_in] = ACTIONS(3068), + [anon_sym_BANGin] = ACTIONS(3068), + [anon_sym_match] = ACTIONS(3068), + [anon_sym_select] = ACTIONS(3068), + [anon_sym_lock] = ACTIONS(3068), + [anon_sym_rlock] = ACTIONS(3068), + [anon_sym_unsafe] = ACTIONS(3068), + [anon_sym_sql] = ACTIONS(3068), + [sym_int_literal] = ACTIONS(3068), + [sym_float_literal] = ACTIONS(3068), + [sym_rune_literal] = ACTIONS(3068), + [sym_pseudo_compile_time_identifier] = ACTIONS(3068), + [anon_sym_shared] = ACTIONS(3068), + [anon_sym_map_LBRACK] = ACTIONS(3068), + [anon_sym_chan] = ACTIONS(3068), + [anon_sym_thread] = ACTIONS(3068), + [anon_sym_atomic] = ACTIONS(3068), + [sym___double_quote] = ACTIONS(3068), + [sym___single_quote] = ACTIONS(3068), + [sym___c_double_quote] = ACTIONS(3068), + [sym___c_single_quote] = ACTIONS(3068), + [sym___r_double_quote] = ACTIONS(3068), + [sym___r_single_quote] = ACTIONS(3068), }, - [1141] = { - [sym_line_comment] = STATE(1141), - [sym_block_comment] = STATE(1141), + [1181] = { + [sym_line_comment] = STATE(1181), + [sym_block_comment] = STATE(1181), [sym_identifier] = ACTIONS(2778), [anon_sym_LF] = ACTIONS(2778), [anon_sym_CR] = ACTIONS(2778), @@ -151242,966 +154769,1053 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym___r_double_quote] = ACTIONS(2778), [sym___r_single_quote] = ACTIONS(2778), }, - [1142] = { - [sym_line_comment] = STATE(1142), - [sym_block_comment] = STATE(1142), - [sym_identifier] = ACTIONS(2117), - [anon_sym_LF] = ACTIONS(2117), - [anon_sym_CR] = ACTIONS(2117), - [anon_sym_CR_LF] = ACTIONS(2117), - [anon_sym_SLASH_SLASH] = ACTIONS(497), - [anon_sym_SLASH_STAR] = ACTIONS(499), - [anon_sym_SEMI] = ACTIONS(2117), - [anon_sym_DOT] = ACTIONS(2117), - [anon_sym_as] = ACTIONS(2117), - [anon_sym_LBRACE] = ACTIONS(2117), - [anon_sym_COMMA] = ACTIONS(2117), - [anon_sym_RBRACE] = ACTIONS(2117), - [anon_sym_LPAREN] = ACTIONS(2117), - [anon_sym_RPAREN] = ACTIONS(2117), - [anon_sym_PIPE] = ACTIONS(2117), - [anon_sym_fn] = ACTIONS(2117), - [anon_sym_PLUS] = ACTIONS(2117), - [anon_sym_DASH] = ACTIONS(2117), - [anon_sym_STAR] = ACTIONS(2117), - [anon_sym_SLASH] = ACTIONS(2117), - [anon_sym_PERCENT] = ACTIONS(2117), - [anon_sym_LT] = ACTIONS(2117), - [anon_sym_GT] = ACTIONS(2117), - [anon_sym_EQ_EQ] = ACTIONS(2117), - [anon_sym_BANG_EQ] = ACTIONS(2117), - [anon_sym_LT_EQ] = ACTIONS(2117), - [anon_sym_GT_EQ] = ACTIONS(2117), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2117), - [anon_sym_LBRACK] = ACTIONS(2115), - [anon_sym_struct] = ACTIONS(2117), - [anon_sym_mut] = ACTIONS(2117), - [anon_sym_PLUS_PLUS] = ACTIONS(2117), - [anon_sym_DASH_DASH] = ACTIONS(2117), - [anon_sym_QMARK] = ACTIONS(2117), - [anon_sym_BANG] = ACTIONS(2117), - [anon_sym_go] = ACTIONS(2117), - [anon_sym_spawn] = ACTIONS(2117), - [anon_sym_json_DOTdecode] = ACTIONS(2117), - [anon_sym_LBRACK2] = ACTIONS(2117), - [anon_sym_TILDE] = ACTIONS(2117), - [anon_sym_CARET] = ACTIONS(2117), - [anon_sym_AMP] = ACTIONS(2117), - [anon_sym_LT_DASH] = ACTIONS(2117), - [anon_sym_LT_LT] = ACTIONS(2117), - [anon_sym_GT_GT] = ACTIONS(2117), - [anon_sym_GT_GT_GT] = ACTIONS(2117), - [anon_sym_AMP_CARET] = ACTIONS(2117), - [anon_sym_AMP_AMP] = ACTIONS(2117), - [anon_sym_PIPE_PIPE] = ACTIONS(2117), - [anon_sym_or] = ACTIONS(2117), - [sym_none] = ACTIONS(2117), - [sym_true] = ACTIONS(2117), - [sym_false] = ACTIONS(2117), - [sym_nil] = ACTIONS(2117), - [anon_sym_QMARK_DOT] = ACTIONS(2117), - [anon_sym_POUND_LBRACK] = ACTIONS(2117), - [anon_sym_if] = ACTIONS(2117), - [anon_sym_DOLLARif] = ACTIONS(2117), - [anon_sym_is] = ACTIONS(2117), - [anon_sym_BANGis] = ACTIONS(2117), - [anon_sym_in] = ACTIONS(2117), - [anon_sym_BANGin] = ACTIONS(2117), - [anon_sym_match] = ACTIONS(2117), - [anon_sym_select] = ACTIONS(2117), - [anon_sym_lock] = ACTIONS(2117), - [anon_sym_rlock] = ACTIONS(2117), - [anon_sym_unsafe] = ACTIONS(2117), - [anon_sym_sql] = ACTIONS(2117), - [sym_int_literal] = ACTIONS(2117), - [sym_float_literal] = ACTIONS(2117), - [sym_rune_literal] = ACTIONS(2117), - [sym_pseudo_compile_time_identifier] = ACTIONS(2117), - [anon_sym_shared] = ACTIONS(2117), - [anon_sym_map_LBRACK] = ACTIONS(2117), - [anon_sym_chan] = ACTIONS(2117), - [anon_sym_thread] = ACTIONS(2117), - [anon_sym_atomic] = ACTIONS(2117), - [sym___double_quote] = ACTIONS(2117), - [sym___single_quote] = ACTIONS(2117), - [sym___c_double_quote] = ACTIONS(2117), - [sym___c_single_quote] = ACTIONS(2117), - [sym___r_double_quote] = ACTIONS(2117), - [sym___r_single_quote] = ACTIONS(2117), - }, - [1143] = { - [sym_line_comment] = STATE(1143), - [sym_block_comment] = STATE(1143), - [sym_identifier] = ACTIONS(2673), - [anon_sym_LF] = ACTIONS(2673), - [anon_sym_CR] = ACTIONS(2673), - [anon_sym_CR_LF] = ACTIONS(2673), + [1182] = { + [sym_line_comment] = STATE(1182), + [sym_block_comment] = STATE(1182), + [sym_identifier] = ACTIONS(2744), + [anon_sym_LF] = ACTIONS(2744), + [anon_sym_CR] = ACTIONS(2744), + [anon_sym_CR_LF] = ACTIONS(2744), [anon_sym_SLASH_SLASH] = ACTIONS(497), [anon_sym_SLASH_STAR] = ACTIONS(499), - [anon_sym_SEMI] = ACTIONS(2673), - [anon_sym_DOT] = ACTIONS(2673), - [anon_sym_as] = ACTIONS(2673), - [anon_sym_LBRACE] = ACTIONS(2673), - [anon_sym_COMMA] = ACTIONS(2673), - [anon_sym_RBRACE] = ACTIONS(2673), - [anon_sym_LPAREN] = ACTIONS(2673), - [anon_sym_RPAREN] = ACTIONS(2673), - [anon_sym_PIPE] = ACTIONS(2673), - [anon_sym_fn] = ACTIONS(2673), - [anon_sym_PLUS] = ACTIONS(2673), - [anon_sym_DASH] = ACTIONS(2673), - [anon_sym_STAR] = ACTIONS(2673), - [anon_sym_SLASH] = ACTIONS(2673), - [anon_sym_PERCENT] = ACTIONS(2673), - [anon_sym_LT] = ACTIONS(2673), - [anon_sym_GT] = ACTIONS(2673), - [anon_sym_EQ_EQ] = ACTIONS(2673), - [anon_sym_BANG_EQ] = ACTIONS(2673), - [anon_sym_LT_EQ] = ACTIONS(2673), - [anon_sym_GT_EQ] = ACTIONS(2673), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2673), - [anon_sym_LBRACK] = ACTIONS(2671), - [anon_sym_struct] = ACTIONS(2673), - [anon_sym_mut] = ACTIONS(2673), - [anon_sym_PLUS_PLUS] = ACTIONS(2673), - [anon_sym_DASH_DASH] = ACTIONS(2673), - [anon_sym_QMARK] = ACTIONS(2673), - [anon_sym_BANG] = ACTIONS(2673), - [anon_sym_go] = ACTIONS(2673), - [anon_sym_spawn] = ACTIONS(2673), - [anon_sym_json_DOTdecode] = ACTIONS(2673), - [anon_sym_LBRACK2] = ACTIONS(2673), - [anon_sym_TILDE] = ACTIONS(2673), - [anon_sym_CARET] = ACTIONS(2673), - [anon_sym_AMP] = ACTIONS(2673), - [anon_sym_LT_DASH] = ACTIONS(2673), - [anon_sym_LT_LT] = ACTIONS(2673), - [anon_sym_GT_GT] = ACTIONS(2673), - [anon_sym_GT_GT_GT] = ACTIONS(2673), - [anon_sym_AMP_CARET] = ACTIONS(2673), - [anon_sym_AMP_AMP] = ACTIONS(2673), - [anon_sym_PIPE_PIPE] = ACTIONS(2673), - [anon_sym_or] = ACTIONS(2673), - [sym_none] = ACTIONS(2673), - [sym_true] = ACTIONS(2673), - [sym_false] = ACTIONS(2673), - [sym_nil] = ACTIONS(2673), - [anon_sym_QMARK_DOT] = ACTIONS(2673), - [anon_sym_POUND_LBRACK] = ACTIONS(2673), - [anon_sym_if] = ACTIONS(2673), - [anon_sym_DOLLARif] = ACTIONS(2673), - [anon_sym_is] = ACTIONS(2673), - [anon_sym_BANGis] = ACTIONS(2673), - [anon_sym_in] = ACTIONS(2673), - [anon_sym_BANGin] = ACTIONS(2673), - [anon_sym_match] = ACTIONS(2673), - [anon_sym_select] = ACTIONS(2673), - [anon_sym_lock] = ACTIONS(2673), - [anon_sym_rlock] = ACTIONS(2673), - [anon_sym_unsafe] = ACTIONS(2673), - [anon_sym_sql] = ACTIONS(2673), - [sym_int_literal] = ACTIONS(2673), - [sym_float_literal] = ACTIONS(2673), - [sym_rune_literal] = ACTIONS(2673), - [sym_pseudo_compile_time_identifier] = ACTIONS(2673), - [anon_sym_shared] = ACTIONS(2673), - [anon_sym_map_LBRACK] = ACTIONS(2673), - [anon_sym_chan] = ACTIONS(2673), - [anon_sym_thread] = ACTIONS(2673), - [anon_sym_atomic] = ACTIONS(2673), - [sym___double_quote] = ACTIONS(2673), - [sym___single_quote] = ACTIONS(2673), - [sym___c_double_quote] = ACTIONS(2673), - [sym___c_single_quote] = ACTIONS(2673), - [sym___r_double_quote] = ACTIONS(2673), - [sym___r_single_quote] = ACTIONS(2673), + [anon_sym_SEMI] = ACTIONS(2744), + [anon_sym_DOT] = ACTIONS(2744), + [anon_sym_as] = ACTIONS(2744), + [anon_sym_LBRACE] = ACTIONS(2744), + [anon_sym_COMMA] = ACTIONS(2744), + [anon_sym_RBRACE] = ACTIONS(2744), + [anon_sym_LPAREN] = ACTIONS(2744), + [anon_sym_RPAREN] = ACTIONS(2744), + [anon_sym_PIPE] = ACTIONS(2744), + [anon_sym_fn] = ACTIONS(2744), + [anon_sym_PLUS] = ACTIONS(2744), + [anon_sym_DASH] = ACTIONS(2744), + [anon_sym_STAR] = ACTIONS(2744), + [anon_sym_SLASH] = ACTIONS(2744), + [anon_sym_PERCENT] = ACTIONS(2744), + [anon_sym_LT] = ACTIONS(2744), + [anon_sym_GT] = ACTIONS(2744), + [anon_sym_EQ_EQ] = ACTIONS(2744), + [anon_sym_BANG_EQ] = ACTIONS(2744), + [anon_sym_LT_EQ] = ACTIONS(2744), + [anon_sym_GT_EQ] = ACTIONS(2744), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2744), + [anon_sym_LBRACK] = ACTIONS(2742), + [anon_sym_struct] = ACTIONS(2744), + [anon_sym_mut] = ACTIONS(2744), + [anon_sym_PLUS_PLUS] = ACTIONS(2744), + [anon_sym_DASH_DASH] = ACTIONS(2744), + [anon_sym_QMARK] = ACTIONS(2744), + [anon_sym_BANG] = ACTIONS(2744), + [anon_sym_go] = ACTIONS(2744), + [anon_sym_spawn] = ACTIONS(2744), + [anon_sym_json_DOTdecode] = ACTIONS(2744), + [anon_sym_LBRACK2] = ACTIONS(2744), + [anon_sym_TILDE] = ACTIONS(2744), + [anon_sym_CARET] = ACTIONS(2744), + [anon_sym_AMP] = ACTIONS(2744), + [anon_sym_LT_DASH] = ACTIONS(2744), + [anon_sym_LT_LT] = ACTIONS(2744), + [anon_sym_GT_GT] = ACTIONS(2744), + [anon_sym_GT_GT_GT] = ACTIONS(2744), + [anon_sym_AMP_CARET] = ACTIONS(2744), + [anon_sym_AMP_AMP] = ACTIONS(2744), + [anon_sym_PIPE_PIPE] = ACTIONS(2744), + [anon_sym_or] = ACTIONS(2744), + [sym_none] = ACTIONS(2744), + [sym_true] = ACTIONS(2744), + [sym_false] = ACTIONS(2744), + [sym_nil] = ACTIONS(2744), + [anon_sym_QMARK_DOT] = ACTIONS(2744), + [anon_sym_POUND_LBRACK] = ACTIONS(2744), + [anon_sym_if] = ACTIONS(2744), + [anon_sym_DOLLARif] = ACTIONS(2744), + [anon_sym_is] = ACTIONS(2744), + [anon_sym_BANGis] = ACTIONS(2744), + [anon_sym_in] = ACTIONS(2744), + [anon_sym_BANGin] = ACTIONS(2744), + [anon_sym_match] = ACTIONS(2744), + [anon_sym_select] = ACTIONS(2744), + [anon_sym_lock] = ACTIONS(2744), + [anon_sym_rlock] = ACTIONS(2744), + [anon_sym_unsafe] = ACTIONS(2744), + [anon_sym_sql] = ACTIONS(2744), + [sym_int_literal] = ACTIONS(2744), + [sym_float_literal] = ACTIONS(2744), + [sym_rune_literal] = ACTIONS(2744), + [sym_pseudo_compile_time_identifier] = ACTIONS(2744), + [anon_sym_shared] = ACTIONS(2744), + [anon_sym_map_LBRACK] = ACTIONS(2744), + [anon_sym_chan] = ACTIONS(2744), + [anon_sym_thread] = ACTIONS(2744), + [anon_sym_atomic] = ACTIONS(2744), + [sym___double_quote] = ACTIONS(2744), + [sym___single_quote] = ACTIONS(2744), + [sym___c_double_quote] = ACTIONS(2744), + [sym___c_single_quote] = ACTIONS(2744), + [sym___r_double_quote] = ACTIONS(2744), + [sym___r_single_quote] = ACTIONS(2744), }, - [1144] = { - [sym_line_comment] = STATE(1144), - [sym_block_comment] = STATE(1144), - [sym_identifier] = ACTIONS(2840), - [anon_sym_LF] = ACTIONS(2840), - [anon_sym_CR] = ACTIONS(2840), - [anon_sym_CR_LF] = ACTIONS(2840), + [1183] = { + [sym_line_comment] = STATE(1183), + [sym_block_comment] = STATE(1183), + [sym_identifier] = ACTIONS(2229), + [anon_sym_LF] = ACTIONS(2229), + [anon_sym_CR] = ACTIONS(2229), + [anon_sym_CR_LF] = ACTIONS(2229), [anon_sym_SLASH_SLASH] = ACTIONS(497), [anon_sym_SLASH_STAR] = ACTIONS(499), - [anon_sym_SEMI] = ACTIONS(2840), - [anon_sym_DOT] = ACTIONS(2840), - [anon_sym_as] = ACTIONS(2840), - [anon_sym_LBRACE] = ACTIONS(2840), - [anon_sym_COMMA] = ACTIONS(2840), - [anon_sym_RBRACE] = ACTIONS(2840), - [anon_sym_LPAREN] = ACTIONS(2840), - [anon_sym_RPAREN] = ACTIONS(2840), - [anon_sym_PIPE] = ACTIONS(2840), - [anon_sym_fn] = ACTIONS(2840), - [anon_sym_PLUS] = ACTIONS(2840), - [anon_sym_DASH] = ACTIONS(2840), - [anon_sym_STAR] = ACTIONS(2840), - [anon_sym_SLASH] = ACTIONS(2840), - [anon_sym_PERCENT] = ACTIONS(2840), - [anon_sym_LT] = ACTIONS(2840), - [anon_sym_GT] = ACTIONS(2840), - [anon_sym_EQ_EQ] = ACTIONS(2840), - [anon_sym_BANG_EQ] = ACTIONS(2840), - [anon_sym_LT_EQ] = ACTIONS(2840), - [anon_sym_GT_EQ] = ACTIONS(2840), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2840), - [anon_sym_LBRACK] = ACTIONS(2838), - [anon_sym_struct] = ACTIONS(2840), - [anon_sym_mut] = ACTIONS(2840), - [anon_sym_PLUS_PLUS] = ACTIONS(2840), - [anon_sym_DASH_DASH] = ACTIONS(2840), - [anon_sym_QMARK] = ACTIONS(2840), - [anon_sym_BANG] = ACTIONS(2840), - [anon_sym_go] = ACTIONS(2840), - [anon_sym_spawn] = ACTIONS(2840), - [anon_sym_json_DOTdecode] = ACTIONS(2840), - [anon_sym_LBRACK2] = ACTIONS(2840), - [anon_sym_TILDE] = ACTIONS(2840), - [anon_sym_CARET] = ACTIONS(2840), - [anon_sym_AMP] = ACTIONS(2840), - [anon_sym_LT_DASH] = ACTIONS(2840), - [anon_sym_LT_LT] = ACTIONS(2840), - [anon_sym_GT_GT] = ACTIONS(2840), - [anon_sym_GT_GT_GT] = ACTIONS(2840), - [anon_sym_AMP_CARET] = ACTIONS(2840), - [anon_sym_AMP_AMP] = ACTIONS(2840), - [anon_sym_PIPE_PIPE] = ACTIONS(2840), - [anon_sym_or] = ACTIONS(2840), - [sym_none] = ACTIONS(2840), - [sym_true] = ACTIONS(2840), - [sym_false] = ACTIONS(2840), - [sym_nil] = ACTIONS(2840), - [anon_sym_QMARK_DOT] = ACTIONS(2840), - [anon_sym_POUND_LBRACK] = ACTIONS(2840), - [anon_sym_if] = ACTIONS(2840), - [anon_sym_DOLLARif] = ACTIONS(2840), - [anon_sym_is] = ACTIONS(2840), - [anon_sym_BANGis] = ACTIONS(2840), - [anon_sym_in] = ACTIONS(2840), - [anon_sym_BANGin] = ACTIONS(2840), - [anon_sym_match] = ACTIONS(2840), - [anon_sym_select] = ACTIONS(2840), - [anon_sym_lock] = ACTIONS(2840), - [anon_sym_rlock] = ACTIONS(2840), - [anon_sym_unsafe] = ACTIONS(2840), - [anon_sym_sql] = ACTIONS(2840), - [sym_int_literal] = ACTIONS(2840), - [sym_float_literal] = ACTIONS(2840), - [sym_rune_literal] = ACTIONS(2840), - [sym_pseudo_compile_time_identifier] = ACTIONS(2840), - [anon_sym_shared] = ACTIONS(2840), - [anon_sym_map_LBRACK] = ACTIONS(2840), - [anon_sym_chan] = ACTIONS(2840), - [anon_sym_thread] = ACTIONS(2840), - [anon_sym_atomic] = ACTIONS(2840), - [sym___double_quote] = ACTIONS(2840), - [sym___single_quote] = ACTIONS(2840), - [sym___c_double_quote] = ACTIONS(2840), - [sym___c_single_quote] = ACTIONS(2840), - [sym___r_double_quote] = ACTIONS(2840), - [sym___r_single_quote] = ACTIONS(2840), + [anon_sym_SEMI] = ACTIONS(2229), + [anon_sym_DOT] = ACTIONS(2229), + [anon_sym_as] = ACTIONS(2229), + [anon_sym_LBRACE] = ACTIONS(2229), + [anon_sym_COMMA] = ACTIONS(2229), + [anon_sym_RBRACE] = ACTIONS(2229), + [anon_sym_LPAREN] = ACTIONS(2229), + [anon_sym_RPAREN] = ACTIONS(2229), + [anon_sym_PIPE] = ACTIONS(2229), + [anon_sym_fn] = ACTIONS(2229), + [anon_sym_PLUS] = ACTIONS(2229), + [anon_sym_DASH] = ACTIONS(2229), + [anon_sym_STAR] = ACTIONS(2229), + [anon_sym_SLASH] = ACTIONS(2229), + [anon_sym_PERCENT] = ACTIONS(2229), + [anon_sym_LT] = ACTIONS(2229), + [anon_sym_GT] = ACTIONS(2229), + [anon_sym_EQ_EQ] = ACTIONS(2229), + [anon_sym_BANG_EQ] = ACTIONS(2229), + [anon_sym_LT_EQ] = ACTIONS(2229), + [anon_sym_GT_EQ] = ACTIONS(2229), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2229), + [anon_sym_LBRACK] = ACTIONS(2227), + [anon_sym_struct] = ACTIONS(2229), + [anon_sym_mut] = ACTIONS(2229), + [anon_sym_PLUS_PLUS] = ACTIONS(2229), + [anon_sym_DASH_DASH] = ACTIONS(2229), + [anon_sym_QMARK] = ACTIONS(2229), + [anon_sym_BANG] = ACTIONS(2229), + [anon_sym_go] = ACTIONS(2229), + [anon_sym_spawn] = ACTIONS(2229), + [anon_sym_json_DOTdecode] = ACTIONS(2229), + [anon_sym_LBRACK2] = ACTIONS(2229), + [anon_sym_TILDE] = ACTIONS(2229), + [anon_sym_CARET] = ACTIONS(2229), + [anon_sym_AMP] = ACTIONS(2229), + [anon_sym_LT_DASH] = ACTIONS(2229), + [anon_sym_LT_LT] = ACTIONS(2229), + [anon_sym_GT_GT] = ACTIONS(2229), + [anon_sym_GT_GT_GT] = ACTIONS(2229), + [anon_sym_AMP_CARET] = ACTIONS(2229), + [anon_sym_AMP_AMP] = ACTIONS(2229), + [anon_sym_PIPE_PIPE] = ACTIONS(2229), + [anon_sym_or] = ACTIONS(2229), + [sym_none] = ACTIONS(2229), + [sym_true] = ACTIONS(2229), + [sym_false] = ACTIONS(2229), + [sym_nil] = ACTIONS(2229), + [anon_sym_QMARK_DOT] = ACTIONS(2229), + [anon_sym_POUND_LBRACK] = ACTIONS(2229), + [anon_sym_if] = ACTIONS(2229), + [anon_sym_DOLLARif] = ACTIONS(2229), + [anon_sym_is] = ACTIONS(2229), + [anon_sym_BANGis] = ACTIONS(2229), + [anon_sym_in] = ACTIONS(2229), + [anon_sym_BANGin] = ACTIONS(2229), + [anon_sym_match] = ACTIONS(2229), + [anon_sym_select] = ACTIONS(2229), + [anon_sym_lock] = ACTIONS(2229), + [anon_sym_rlock] = ACTIONS(2229), + [anon_sym_unsafe] = ACTIONS(2229), + [anon_sym_sql] = ACTIONS(2229), + [sym_int_literal] = ACTIONS(2229), + [sym_float_literal] = ACTIONS(2229), + [sym_rune_literal] = ACTIONS(2229), + [sym_pseudo_compile_time_identifier] = ACTIONS(2229), + [anon_sym_shared] = ACTIONS(2229), + [anon_sym_map_LBRACK] = ACTIONS(2229), + [anon_sym_chan] = ACTIONS(2229), + [anon_sym_thread] = ACTIONS(2229), + [anon_sym_atomic] = ACTIONS(2229), + [sym___double_quote] = ACTIONS(2229), + [sym___single_quote] = ACTIONS(2229), + [sym___c_double_quote] = ACTIONS(2229), + [sym___c_single_quote] = ACTIONS(2229), + [sym___r_double_quote] = ACTIONS(2229), + [sym___r_single_quote] = ACTIONS(2229), }, - [1145] = { - [sym_line_comment] = STATE(1145), - [sym_block_comment] = STATE(1145), - [sym_identifier] = ACTIONS(2920), - [anon_sym_LF] = ACTIONS(2920), - [anon_sym_CR] = ACTIONS(2920), - [anon_sym_CR_LF] = ACTIONS(2920), + [1184] = { + [sym_line_comment] = STATE(1184), + [sym_block_comment] = STATE(1184), + [sym_identifier] = ACTIONS(2199), + [anon_sym_LF] = ACTIONS(2199), + [anon_sym_CR] = ACTIONS(2199), + [anon_sym_CR_LF] = ACTIONS(2199), [anon_sym_SLASH_SLASH] = ACTIONS(497), [anon_sym_SLASH_STAR] = ACTIONS(499), - [anon_sym_SEMI] = ACTIONS(2920), - [anon_sym_DOT] = ACTIONS(2920), - [anon_sym_as] = ACTIONS(2920), - [anon_sym_LBRACE] = ACTIONS(2920), - [anon_sym_COMMA] = ACTIONS(2920), - [anon_sym_RBRACE] = ACTIONS(2920), - [anon_sym_LPAREN] = ACTIONS(2920), - [anon_sym_RPAREN] = ACTIONS(2920), - [anon_sym_PIPE] = ACTIONS(2920), - [anon_sym_fn] = ACTIONS(2920), - [anon_sym_PLUS] = ACTIONS(2920), - [anon_sym_DASH] = ACTIONS(2920), - [anon_sym_STAR] = ACTIONS(2920), - [anon_sym_SLASH] = ACTIONS(2920), - [anon_sym_PERCENT] = ACTIONS(2920), - [anon_sym_LT] = ACTIONS(2920), - [anon_sym_GT] = ACTIONS(2920), - [anon_sym_EQ_EQ] = ACTIONS(2920), - [anon_sym_BANG_EQ] = ACTIONS(2920), - [anon_sym_LT_EQ] = ACTIONS(2920), - [anon_sym_GT_EQ] = ACTIONS(2920), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2920), - [anon_sym_LBRACK] = ACTIONS(2918), - [anon_sym_struct] = ACTIONS(2920), - [anon_sym_mut] = ACTIONS(2920), - [anon_sym_PLUS_PLUS] = ACTIONS(2920), - [anon_sym_DASH_DASH] = ACTIONS(2920), - [anon_sym_QMARK] = ACTIONS(2920), - [anon_sym_BANG] = ACTIONS(2920), - [anon_sym_go] = ACTIONS(2920), - [anon_sym_spawn] = ACTIONS(2920), - [anon_sym_json_DOTdecode] = ACTIONS(2920), - [anon_sym_LBRACK2] = ACTIONS(2920), - [anon_sym_TILDE] = ACTIONS(2920), - [anon_sym_CARET] = ACTIONS(2920), - [anon_sym_AMP] = ACTIONS(2920), - [anon_sym_LT_DASH] = ACTIONS(2920), - [anon_sym_LT_LT] = ACTIONS(2920), - [anon_sym_GT_GT] = ACTIONS(2920), - [anon_sym_GT_GT_GT] = ACTIONS(2920), - [anon_sym_AMP_CARET] = ACTIONS(2920), - [anon_sym_AMP_AMP] = ACTIONS(2920), - [anon_sym_PIPE_PIPE] = ACTIONS(2920), - [anon_sym_or] = ACTIONS(2920), - [sym_none] = ACTIONS(2920), - [sym_true] = ACTIONS(2920), - [sym_false] = ACTIONS(2920), - [sym_nil] = ACTIONS(2920), - [anon_sym_QMARK_DOT] = ACTIONS(2920), - [anon_sym_POUND_LBRACK] = ACTIONS(2920), - [anon_sym_if] = ACTIONS(2920), - [anon_sym_DOLLARif] = ACTIONS(2920), - [anon_sym_is] = ACTIONS(2920), - [anon_sym_BANGis] = ACTIONS(2920), - [anon_sym_in] = ACTIONS(2920), - [anon_sym_BANGin] = ACTIONS(2920), - [anon_sym_match] = ACTIONS(2920), - [anon_sym_select] = ACTIONS(2920), - [anon_sym_lock] = ACTIONS(2920), - [anon_sym_rlock] = ACTIONS(2920), - [anon_sym_unsafe] = ACTIONS(2920), - [anon_sym_sql] = ACTIONS(2920), - [sym_int_literal] = ACTIONS(2920), - [sym_float_literal] = ACTIONS(2920), - [sym_rune_literal] = ACTIONS(2920), - [sym_pseudo_compile_time_identifier] = ACTIONS(2920), - [anon_sym_shared] = ACTIONS(2920), - [anon_sym_map_LBRACK] = ACTIONS(2920), - [anon_sym_chan] = ACTIONS(2920), - [anon_sym_thread] = ACTIONS(2920), - [anon_sym_atomic] = ACTIONS(2920), - [sym___double_quote] = ACTIONS(2920), - [sym___single_quote] = ACTIONS(2920), - [sym___c_double_quote] = ACTIONS(2920), - [sym___c_single_quote] = ACTIONS(2920), - [sym___r_double_quote] = ACTIONS(2920), - [sym___r_single_quote] = ACTIONS(2920), + [anon_sym_SEMI] = ACTIONS(2199), + [anon_sym_DOT] = ACTIONS(2199), + [anon_sym_as] = ACTIONS(2199), + [anon_sym_LBRACE] = ACTIONS(2199), + [anon_sym_COMMA] = ACTIONS(2199), + [anon_sym_RBRACE] = ACTIONS(2199), + [anon_sym_LPAREN] = ACTIONS(2199), + [anon_sym_RPAREN] = ACTIONS(2199), + [anon_sym_PIPE] = ACTIONS(2199), + [anon_sym_fn] = ACTIONS(2199), + [anon_sym_PLUS] = ACTIONS(2199), + [anon_sym_DASH] = ACTIONS(2199), + [anon_sym_STAR] = ACTIONS(2199), + [anon_sym_SLASH] = ACTIONS(2199), + [anon_sym_PERCENT] = ACTIONS(2199), + [anon_sym_LT] = ACTIONS(2199), + [anon_sym_GT] = ACTIONS(2199), + [anon_sym_EQ_EQ] = ACTIONS(2199), + [anon_sym_BANG_EQ] = ACTIONS(2199), + [anon_sym_LT_EQ] = ACTIONS(2199), + [anon_sym_GT_EQ] = ACTIONS(2199), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2199), + [anon_sym_LBRACK] = ACTIONS(2197), + [anon_sym_struct] = ACTIONS(2199), + [anon_sym_mut] = ACTIONS(2199), + [anon_sym_PLUS_PLUS] = ACTIONS(2199), + [anon_sym_DASH_DASH] = ACTIONS(2199), + [anon_sym_QMARK] = ACTIONS(2199), + [anon_sym_BANG] = ACTIONS(2199), + [anon_sym_go] = ACTIONS(2199), + [anon_sym_spawn] = ACTIONS(2199), + [anon_sym_json_DOTdecode] = ACTIONS(2199), + [anon_sym_LBRACK2] = ACTIONS(2199), + [anon_sym_TILDE] = ACTIONS(2199), + [anon_sym_CARET] = ACTIONS(2199), + [anon_sym_AMP] = ACTIONS(2199), + [anon_sym_LT_DASH] = ACTIONS(2199), + [anon_sym_LT_LT] = ACTIONS(2199), + [anon_sym_GT_GT] = ACTIONS(2199), + [anon_sym_GT_GT_GT] = ACTIONS(2199), + [anon_sym_AMP_CARET] = ACTIONS(2199), + [anon_sym_AMP_AMP] = ACTIONS(2199), + [anon_sym_PIPE_PIPE] = ACTIONS(2199), + [anon_sym_or] = ACTIONS(2199), + [sym_none] = ACTIONS(2199), + [sym_true] = ACTIONS(2199), + [sym_false] = ACTIONS(2199), + [sym_nil] = ACTIONS(2199), + [anon_sym_QMARK_DOT] = ACTIONS(2199), + [anon_sym_POUND_LBRACK] = ACTIONS(2199), + [anon_sym_if] = ACTIONS(2199), + [anon_sym_DOLLARif] = ACTIONS(2199), + [anon_sym_is] = ACTIONS(2199), + [anon_sym_BANGis] = ACTIONS(2199), + [anon_sym_in] = ACTIONS(2199), + [anon_sym_BANGin] = ACTIONS(2199), + [anon_sym_match] = ACTIONS(2199), + [anon_sym_select] = ACTIONS(2199), + [anon_sym_lock] = ACTIONS(2199), + [anon_sym_rlock] = ACTIONS(2199), + [anon_sym_unsafe] = ACTIONS(2199), + [anon_sym_sql] = ACTIONS(2199), + [sym_int_literal] = ACTIONS(2199), + [sym_float_literal] = ACTIONS(2199), + [sym_rune_literal] = ACTIONS(2199), + [sym_pseudo_compile_time_identifier] = ACTIONS(2199), + [anon_sym_shared] = ACTIONS(2199), + [anon_sym_map_LBRACK] = ACTIONS(2199), + [anon_sym_chan] = ACTIONS(2199), + [anon_sym_thread] = ACTIONS(2199), + [anon_sym_atomic] = ACTIONS(2199), + [sym___double_quote] = ACTIONS(2199), + [sym___single_quote] = ACTIONS(2199), + [sym___c_double_quote] = ACTIONS(2199), + [sym___c_single_quote] = ACTIONS(2199), + [sym___r_double_quote] = ACTIONS(2199), + [sym___r_single_quote] = ACTIONS(2199), }, - [1146] = { - [sym_line_comment] = STATE(1146), - [sym_block_comment] = STATE(1146), - [sym_identifier] = ACTIONS(3050), - [anon_sym_LF] = ACTIONS(3050), - [anon_sym_CR] = ACTIONS(3050), - [anon_sym_CR_LF] = ACTIONS(3050), + [1185] = { + [sym_line_comment] = STATE(1185), + [sym_block_comment] = STATE(1185), + [sym_identifier] = ACTIONS(2862), + [anon_sym_LF] = ACTIONS(2862), + [anon_sym_CR] = ACTIONS(2862), + [anon_sym_CR_LF] = ACTIONS(2862), [anon_sym_SLASH_SLASH] = ACTIONS(497), [anon_sym_SLASH_STAR] = ACTIONS(499), - [anon_sym_SEMI] = ACTIONS(3050), - [anon_sym_DOT] = ACTIONS(3050), - [anon_sym_as] = ACTIONS(3050), - [anon_sym_LBRACE] = ACTIONS(3050), - [anon_sym_COMMA] = ACTIONS(3050), - [anon_sym_RBRACE] = ACTIONS(3050), - [anon_sym_LPAREN] = ACTIONS(3050), - [anon_sym_RPAREN] = ACTIONS(3050), - [anon_sym_PIPE] = ACTIONS(3050), - [anon_sym_fn] = ACTIONS(3050), - [anon_sym_PLUS] = ACTIONS(3050), - [anon_sym_DASH] = ACTIONS(3050), - [anon_sym_STAR] = ACTIONS(3050), - [anon_sym_SLASH] = ACTIONS(3050), - [anon_sym_PERCENT] = ACTIONS(3050), - [anon_sym_LT] = ACTIONS(3050), - [anon_sym_GT] = ACTIONS(3050), - [anon_sym_EQ_EQ] = ACTIONS(3050), - [anon_sym_BANG_EQ] = ACTIONS(3050), - [anon_sym_LT_EQ] = ACTIONS(3050), - [anon_sym_GT_EQ] = ACTIONS(3050), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3050), - [anon_sym_LBRACK] = ACTIONS(3048), - [anon_sym_struct] = ACTIONS(3050), - [anon_sym_mut] = ACTIONS(3050), - [anon_sym_PLUS_PLUS] = ACTIONS(3050), - [anon_sym_DASH_DASH] = ACTIONS(3050), - [anon_sym_QMARK] = ACTIONS(3050), - [anon_sym_BANG] = ACTIONS(3050), - [anon_sym_go] = ACTIONS(3050), - [anon_sym_spawn] = ACTIONS(3050), - [anon_sym_json_DOTdecode] = ACTIONS(3050), - [anon_sym_LBRACK2] = ACTIONS(3050), - [anon_sym_TILDE] = ACTIONS(3050), - [anon_sym_CARET] = ACTIONS(3050), - [anon_sym_AMP] = ACTIONS(3050), - [anon_sym_LT_DASH] = ACTIONS(3050), - [anon_sym_LT_LT] = ACTIONS(3050), - [anon_sym_GT_GT] = ACTIONS(3050), - [anon_sym_GT_GT_GT] = ACTIONS(3050), - [anon_sym_AMP_CARET] = ACTIONS(3050), - [anon_sym_AMP_AMP] = ACTIONS(3050), - [anon_sym_PIPE_PIPE] = ACTIONS(3050), - [anon_sym_or] = ACTIONS(3050), - [sym_none] = ACTIONS(3050), - [sym_true] = ACTIONS(3050), - [sym_false] = ACTIONS(3050), - [sym_nil] = ACTIONS(3050), - [anon_sym_QMARK_DOT] = ACTIONS(3050), - [anon_sym_POUND_LBRACK] = ACTIONS(3050), - [anon_sym_if] = ACTIONS(3050), - [anon_sym_DOLLARif] = ACTIONS(3050), - [anon_sym_is] = ACTIONS(3050), - [anon_sym_BANGis] = ACTIONS(3050), - [anon_sym_in] = ACTIONS(3050), - [anon_sym_BANGin] = ACTIONS(3050), - [anon_sym_match] = ACTIONS(3050), - [anon_sym_select] = ACTIONS(3050), - [anon_sym_lock] = ACTIONS(3050), - [anon_sym_rlock] = ACTIONS(3050), - [anon_sym_unsafe] = ACTIONS(3050), - [anon_sym_sql] = ACTIONS(3050), - [sym_int_literal] = ACTIONS(3050), - [sym_float_literal] = ACTIONS(3050), - [sym_rune_literal] = ACTIONS(3050), - [sym_pseudo_compile_time_identifier] = ACTIONS(3050), - [anon_sym_shared] = ACTIONS(3050), - [anon_sym_map_LBRACK] = ACTIONS(3050), - [anon_sym_chan] = ACTIONS(3050), - [anon_sym_thread] = ACTIONS(3050), - [anon_sym_atomic] = ACTIONS(3050), - [sym___double_quote] = ACTIONS(3050), - [sym___single_quote] = ACTIONS(3050), - [sym___c_double_quote] = ACTIONS(3050), - [sym___c_single_quote] = ACTIONS(3050), - [sym___r_double_quote] = ACTIONS(3050), - [sym___r_single_quote] = ACTIONS(3050), + [anon_sym_SEMI] = ACTIONS(2862), + [anon_sym_DOT] = ACTIONS(2862), + [anon_sym_as] = ACTIONS(2862), + [anon_sym_LBRACE] = ACTIONS(2862), + [anon_sym_COMMA] = ACTIONS(2862), + [anon_sym_RBRACE] = ACTIONS(2862), + [anon_sym_LPAREN] = ACTIONS(2862), + [anon_sym_RPAREN] = ACTIONS(2862), + [anon_sym_PIPE] = ACTIONS(2862), + [anon_sym_fn] = ACTIONS(2862), + [anon_sym_PLUS] = ACTIONS(2862), + [anon_sym_DASH] = ACTIONS(2862), + [anon_sym_STAR] = ACTIONS(2862), + [anon_sym_SLASH] = ACTIONS(2862), + [anon_sym_PERCENT] = ACTIONS(2862), + [anon_sym_LT] = ACTIONS(2862), + [anon_sym_GT] = ACTIONS(2862), + [anon_sym_EQ_EQ] = ACTIONS(2862), + [anon_sym_BANG_EQ] = ACTIONS(2862), + [anon_sym_LT_EQ] = ACTIONS(2862), + [anon_sym_GT_EQ] = ACTIONS(2862), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2862), + [anon_sym_LBRACK] = ACTIONS(2860), + [anon_sym_struct] = ACTIONS(2862), + [anon_sym_mut] = ACTIONS(2862), + [anon_sym_PLUS_PLUS] = ACTIONS(2862), + [anon_sym_DASH_DASH] = ACTIONS(2862), + [anon_sym_QMARK] = ACTIONS(2862), + [anon_sym_BANG] = ACTIONS(2862), + [anon_sym_go] = ACTIONS(2862), + [anon_sym_spawn] = ACTIONS(2862), + [anon_sym_json_DOTdecode] = ACTIONS(2862), + [anon_sym_LBRACK2] = ACTIONS(2862), + [anon_sym_TILDE] = ACTIONS(2862), + [anon_sym_CARET] = ACTIONS(2862), + [anon_sym_AMP] = ACTIONS(2862), + [anon_sym_LT_DASH] = ACTIONS(2862), + [anon_sym_LT_LT] = ACTIONS(2862), + [anon_sym_GT_GT] = ACTIONS(2862), + [anon_sym_GT_GT_GT] = ACTIONS(2862), + [anon_sym_AMP_CARET] = ACTIONS(2862), + [anon_sym_AMP_AMP] = ACTIONS(2862), + [anon_sym_PIPE_PIPE] = ACTIONS(2862), + [anon_sym_or] = ACTIONS(2862), + [sym_none] = ACTIONS(2862), + [sym_true] = ACTIONS(2862), + [sym_false] = ACTIONS(2862), + [sym_nil] = ACTIONS(2862), + [anon_sym_QMARK_DOT] = ACTIONS(2862), + [anon_sym_POUND_LBRACK] = ACTIONS(2862), + [anon_sym_if] = ACTIONS(2862), + [anon_sym_DOLLARif] = ACTIONS(2862), + [anon_sym_is] = ACTIONS(2862), + [anon_sym_BANGis] = ACTIONS(2862), + [anon_sym_in] = ACTIONS(2862), + [anon_sym_BANGin] = ACTIONS(2862), + [anon_sym_match] = ACTIONS(2862), + [anon_sym_select] = ACTIONS(2862), + [anon_sym_lock] = ACTIONS(2862), + [anon_sym_rlock] = ACTIONS(2862), + [anon_sym_unsafe] = ACTIONS(2862), + [anon_sym_sql] = ACTIONS(2862), + [sym_int_literal] = ACTIONS(2862), + [sym_float_literal] = ACTIONS(2862), + [sym_rune_literal] = ACTIONS(2862), + [sym_pseudo_compile_time_identifier] = ACTIONS(2862), + [anon_sym_shared] = ACTIONS(2862), + [anon_sym_map_LBRACK] = ACTIONS(2862), + [anon_sym_chan] = ACTIONS(2862), + [anon_sym_thread] = ACTIONS(2862), + [anon_sym_atomic] = ACTIONS(2862), + [sym___double_quote] = ACTIONS(2862), + [sym___single_quote] = ACTIONS(2862), + [sym___c_double_quote] = ACTIONS(2862), + [sym___c_single_quote] = ACTIONS(2862), + [sym___r_double_quote] = ACTIONS(2862), + [sym___r_single_quote] = ACTIONS(2862), }, - [1147] = { - [sym_line_comment] = STATE(1147), - [sym_block_comment] = STATE(1147), - [sym_identifier] = ACTIONS(3054), - [anon_sym_LF] = ACTIONS(3054), - [anon_sym_CR] = ACTIONS(3054), - [anon_sym_CR_LF] = ACTIONS(3054), + [1186] = { + [sym_line_comment] = STATE(1186), + [sym_block_comment] = STATE(1186), + [sym_identifier] = ACTIONS(2918), + [anon_sym_LF] = ACTIONS(2918), + [anon_sym_CR] = ACTIONS(2918), + [anon_sym_CR_LF] = ACTIONS(2918), [anon_sym_SLASH_SLASH] = ACTIONS(497), [anon_sym_SLASH_STAR] = ACTIONS(499), - [anon_sym_SEMI] = ACTIONS(3054), - [anon_sym_DOT] = ACTIONS(3054), - [anon_sym_as] = ACTIONS(3054), - [anon_sym_LBRACE] = ACTIONS(3054), - [anon_sym_COMMA] = ACTIONS(3054), - [anon_sym_RBRACE] = ACTIONS(3054), - [anon_sym_LPAREN] = ACTIONS(3054), - [anon_sym_RPAREN] = ACTIONS(3054), - [anon_sym_PIPE] = ACTIONS(3054), - [anon_sym_fn] = ACTIONS(3054), - [anon_sym_PLUS] = ACTIONS(3054), - [anon_sym_DASH] = ACTIONS(3054), - [anon_sym_STAR] = ACTIONS(3054), - [anon_sym_SLASH] = ACTIONS(3054), - [anon_sym_PERCENT] = ACTIONS(3054), - [anon_sym_LT] = ACTIONS(3054), - [anon_sym_GT] = ACTIONS(3054), - [anon_sym_EQ_EQ] = ACTIONS(3054), - [anon_sym_BANG_EQ] = ACTIONS(3054), - [anon_sym_LT_EQ] = ACTIONS(3054), - [anon_sym_GT_EQ] = ACTIONS(3054), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3054), - [anon_sym_LBRACK] = ACTIONS(3052), - [anon_sym_struct] = ACTIONS(3054), - [anon_sym_mut] = ACTIONS(3054), - [anon_sym_PLUS_PLUS] = ACTIONS(3054), - [anon_sym_DASH_DASH] = ACTIONS(3054), - [anon_sym_QMARK] = ACTIONS(3054), - [anon_sym_BANG] = ACTIONS(3054), - [anon_sym_go] = ACTIONS(3054), - [anon_sym_spawn] = ACTIONS(3054), - [anon_sym_json_DOTdecode] = ACTIONS(3054), - [anon_sym_LBRACK2] = ACTIONS(3054), - [anon_sym_TILDE] = ACTIONS(3054), - [anon_sym_CARET] = ACTIONS(3054), - [anon_sym_AMP] = ACTIONS(3054), - [anon_sym_LT_DASH] = ACTIONS(3054), - [anon_sym_LT_LT] = ACTIONS(3054), - [anon_sym_GT_GT] = ACTIONS(3054), - [anon_sym_GT_GT_GT] = ACTIONS(3054), - [anon_sym_AMP_CARET] = ACTIONS(3054), - [anon_sym_AMP_AMP] = ACTIONS(3054), - [anon_sym_PIPE_PIPE] = ACTIONS(3054), - [anon_sym_or] = ACTIONS(3054), - [sym_none] = ACTIONS(3054), - [sym_true] = ACTIONS(3054), - [sym_false] = ACTIONS(3054), - [sym_nil] = ACTIONS(3054), - [anon_sym_QMARK_DOT] = ACTIONS(3054), - [anon_sym_POUND_LBRACK] = ACTIONS(3054), - [anon_sym_if] = ACTIONS(3054), - [anon_sym_DOLLARif] = ACTIONS(3054), - [anon_sym_is] = ACTIONS(3054), - [anon_sym_BANGis] = ACTIONS(3054), - [anon_sym_in] = ACTIONS(3054), - [anon_sym_BANGin] = ACTIONS(3054), - [anon_sym_match] = ACTIONS(3054), - [anon_sym_select] = ACTIONS(3054), - [anon_sym_lock] = ACTIONS(3054), - [anon_sym_rlock] = ACTIONS(3054), - [anon_sym_unsafe] = ACTIONS(3054), - [anon_sym_sql] = ACTIONS(3054), - [sym_int_literal] = ACTIONS(3054), - [sym_float_literal] = ACTIONS(3054), - [sym_rune_literal] = ACTIONS(3054), - [sym_pseudo_compile_time_identifier] = ACTIONS(3054), - [anon_sym_shared] = ACTIONS(3054), - [anon_sym_map_LBRACK] = ACTIONS(3054), - [anon_sym_chan] = ACTIONS(3054), - [anon_sym_thread] = ACTIONS(3054), - [anon_sym_atomic] = ACTIONS(3054), - [sym___double_quote] = ACTIONS(3054), - [sym___single_quote] = ACTIONS(3054), - [sym___c_double_quote] = ACTIONS(3054), - [sym___c_single_quote] = ACTIONS(3054), - [sym___r_double_quote] = ACTIONS(3054), - [sym___r_single_quote] = ACTIONS(3054), + [anon_sym_SEMI] = ACTIONS(2918), + [anon_sym_DOT] = ACTIONS(2918), + [anon_sym_as] = ACTIONS(2918), + [anon_sym_LBRACE] = ACTIONS(2918), + [anon_sym_COMMA] = ACTIONS(2918), + [anon_sym_RBRACE] = ACTIONS(2918), + [anon_sym_LPAREN] = ACTIONS(2918), + [anon_sym_RPAREN] = ACTIONS(2918), + [anon_sym_PIPE] = ACTIONS(2918), + [anon_sym_fn] = ACTIONS(2918), + [anon_sym_PLUS] = ACTIONS(2918), + [anon_sym_DASH] = ACTIONS(2918), + [anon_sym_STAR] = ACTIONS(2918), + [anon_sym_SLASH] = ACTIONS(2918), + [anon_sym_PERCENT] = ACTIONS(2918), + [anon_sym_LT] = ACTIONS(2918), + [anon_sym_GT] = ACTIONS(2918), + [anon_sym_EQ_EQ] = ACTIONS(2918), + [anon_sym_BANG_EQ] = ACTIONS(2918), + [anon_sym_LT_EQ] = ACTIONS(2918), + [anon_sym_GT_EQ] = ACTIONS(2918), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2918), + [anon_sym_LBRACK] = ACTIONS(2916), + [anon_sym_struct] = ACTIONS(2918), + [anon_sym_mut] = ACTIONS(2918), + [anon_sym_PLUS_PLUS] = ACTIONS(2918), + [anon_sym_DASH_DASH] = ACTIONS(2918), + [anon_sym_QMARK] = ACTIONS(2918), + [anon_sym_BANG] = ACTIONS(2918), + [anon_sym_go] = ACTIONS(2918), + [anon_sym_spawn] = ACTIONS(2918), + [anon_sym_json_DOTdecode] = ACTIONS(2918), + [anon_sym_LBRACK2] = ACTIONS(2918), + [anon_sym_TILDE] = ACTIONS(2918), + [anon_sym_CARET] = ACTIONS(2918), + [anon_sym_AMP] = ACTIONS(2918), + [anon_sym_LT_DASH] = ACTIONS(2918), + [anon_sym_LT_LT] = ACTIONS(2918), + [anon_sym_GT_GT] = ACTIONS(2918), + [anon_sym_GT_GT_GT] = ACTIONS(2918), + [anon_sym_AMP_CARET] = ACTIONS(2918), + [anon_sym_AMP_AMP] = ACTIONS(2918), + [anon_sym_PIPE_PIPE] = ACTIONS(2918), + [anon_sym_or] = ACTIONS(2918), + [sym_none] = ACTIONS(2918), + [sym_true] = ACTIONS(2918), + [sym_false] = ACTIONS(2918), + [sym_nil] = ACTIONS(2918), + [anon_sym_QMARK_DOT] = ACTIONS(2918), + [anon_sym_POUND_LBRACK] = ACTIONS(2918), + [anon_sym_if] = ACTIONS(2918), + [anon_sym_DOLLARif] = ACTIONS(2918), + [anon_sym_is] = ACTIONS(2918), + [anon_sym_BANGis] = ACTIONS(2918), + [anon_sym_in] = ACTIONS(2918), + [anon_sym_BANGin] = ACTIONS(2918), + [anon_sym_match] = ACTIONS(2918), + [anon_sym_select] = ACTIONS(2918), + [anon_sym_lock] = ACTIONS(2918), + [anon_sym_rlock] = ACTIONS(2918), + [anon_sym_unsafe] = ACTIONS(2918), + [anon_sym_sql] = ACTIONS(2918), + [sym_int_literal] = ACTIONS(2918), + [sym_float_literal] = ACTIONS(2918), + [sym_rune_literal] = ACTIONS(2918), + [sym_pseudo_compile_time_identifier] = ACTIONS(2918), + [anon_sym_shared] = ACTIONS(2918), + [anon_sym_map_LBRACK] = ACTIONS(2918), + [anon_sym_chan] = ACTIONS(2918), + [anon_sym_thread] = ACTIONS(2918), + [anon_sym_atomic] = ACTIONS(2918), + [sym___double_quote] = ACTIONS(2918), + [sym___single_quote] = ACTIONS(2918), + [sym___c_double_quote] = ACTIONS(2918), + [sym___c_single_quote] = ACTIONS(2918), + [sym___r_double_quote] = ACTIONS(2918), + [sym___r_single_quote] = ACTIONS(2918), }, - [1148] = { - [sym_line_comment] = STATE(1148), - [sym_block_comment] = STATE(1148), - [sym_identifier] = ACTIONS(3042), - [anon_sym_LF] = ACTIONS(3042), - [anon_sym_CR] = ACTIONS(3042), - [anon_sym_CR_LF] = ACTIONS(3042), + [1187] = { + [sym_line_comment] = STATE(1187), + [sym_block_comment] = STATE(1187), + [sym_identifier] = ACTIONS(2874), + [anon_sym_LF] = ACTIONS(2874), + [anon_sym_CR] = ACTIONS(2874), + [anon_sym_CR_LF] = ACTIONS(2874), [anon_sym_SLASH_SLASH] = ACTIONS(497), [anon_sym_SLASH_STAR] = ACTIONS(499), - [anon_sym_SEMI] = ACTIONS(3042), - [anon_sym_DOT] = ACTIONS(3042), - [anon_sym_as] = ACTIONS(3042), - [anon_sym_LBRACE] = ACTIONS(3042), - [anon_sym_COMMA] = ACTIONS(3042), - [anon_sym_RBRACE] = ACTIONS(3042), - [anon_sym_LPAREN] = ACTIONS(3042), - [anon_sym_RPAREN] = ACTIONS(3042), - [anon_sym_PIPE] = ACTIONS(3042), - [anon_sym_fn] = ACTIONS(3042), - [anon_sym_PLUS] = ACTIONS(3042), - [anon_sym_DASH] = ACTIONS(3042), - [anon_sym_STAR] = ACTIONS(3042), - [anon_sym_SLASH] = ACTIONS(3042), - [anon_sym_PERCENT] = ACTIONS(3042), - [anon_sym_LT] = ACTIONS(3042), - [anon_sym_GT] = ACTIONS(3042), - [anon_sym_EQ_EQ] = ACTIONS(3042), - [anon_sym_BANG_EQ] = ACTIONS(3042), - [anon_sym_LT_EQ] = ACTIONS(3042), - [anon_sym_GT_EQ] = ACTIONS(3042), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3042), - [anon_sym_LBRACK] = ACTIONS(3040), - [anon_sym_struct] = ACTIONS(3042), - [anon_sym_mut] = ACTIONS(3042), - [anon_sym_PLUS_PLUS] = ACTIONS(3042), - [anon_sym_DASH_DASH] = ACTIONS(3042), - [anon_sym_QMARK] = ACTIONS(3042), - [anon_sym_BANG] = ACTIONS(3042), - [anon_sym_go] = ACTIONS(3042), - [anon_sym_spawn] = ACTIONS(3042), - [anon_sym_json_DOTdecode] = ACTIONS(3042), - [anon_sym_LBRACK2] = ACTIONS(3042), - [anon_sym_TILDE] = ACTIONS(3042), - [anon_sym_CARET] = ACTIONS(3042), - [anon_sym_AMP] = ACTIONS(3042), - [anon_sym_LT_DASH] = ACTIONS(3042), - [anon_sym_LT_LT] = ACTIONS(3042), - [anon_sym_GT_GT] = ACTIONS(3042), - [anon_sym_GT_GT_GT] = ACTIONS(3042), - [anon_sym_AMP_CARET] = ACTIONS(3042), - [anon_sym_AMP_AMP] = ACTIONS(3042), - [anon_sym_PIPE_PIPE] = ACTIONS(3042), - [anon_sym_or] = ACTIONS(3042), - [sym_none] = ACTIONS(3042), - [sym_true] = ACTIONS(3042), - [sym_false] = ACTIONS(3042), - [sym_nil] = ACTIONS(3042), - [anon_sym_QMARK_DOT] = ACTIONS(3042), - [anon_sym_POUND_LBRACK] = ACTIONS(3042), - [anon_sym_if] = ACTIONS(3042), - [anon_sym_DOLLARif] = ACTIONS(3042), - [anon_sym_is] = ACTIONS(3042), - [anon_sym_BANGis] = ACTIONS(3042), - [anon_sym_in] = ACTIONS(3042), - [anon_sym_BANGin] = ACTIONS(3042), - [anon_sym_match] = ACTIONS(3042), - [anon_sym_select] = ACTIONS(3042), - [anon_sym_lock] = ACTIONS(3042), - [anon_sym_rlock] = ACTIONS(3042), - [anon_sym_unsafe] = ACTIONS(3042), - [anon_sym_sql] = ACTIONS(3042), - [sym_int_literal] = ACTIONS(3042), - [sym_float_literal] = ACTIONS(3042), - [sym_rune_literal] = ACTIONS(3042), - [sym_pseudo_compile_time_identifier] = ACTIONS(3042), - [anon_sym_shared] = ACTIONS(3042), - [anon_sym_map_LBRACK] = ACTIONS(3042), - [anon_sym_chan] = ACTIONS(3042), - [anon_sym_thread] = ACTIONS(3042), - [anon_sym_atomic] = ACTIONS(3042), - [sym___double_quote] = ACTIONS(3042), - [sym___single_quote] = ACTIONS(3042), - [sym___c_double_quote] = ACTIONS(3042), - [sym___c_single_quote] = ACTIONS(3042), - [sym___r_double_quote] = ACTIONS(3042), - [sym___r_single_quote] = ACTIONS(3042), + [anon_sym_SEMI] = ACTIONS(2874), + [anon_sym_DOT] = ACTIONS(2874), + [anon_sym_as] = ACTIONS(2874), + [anon_sym_LBRACE] = ACTIONS(2874), + [anon_sym_COMMA] = ACTIONS(2874), + [anon_sym_RBRACE] = ACTIONS(2874), + [anon_sym_LPAREN] = ACTIONS(2874), + [anon_sym_RPAREN] = ACTIONS(2874), + [anon_sym_PIPE] = ACTIONS(2874), + [anon_sym_fn] = ACTIONS(2874), + [anon_sym_PLUS] = ACTIONS(2874), + [anon_sym_DASH] = ACTIONS(2874), + [anon_sym_STAR] = ACTIONS(2874), + [anon_sym_SLASH] = ACTIONS(2874), + [anon_sym_PERCENT] = ACTIONS(2874), + [anon_sym_LT] = ACTIONS(2874), + [anon_sym_GT] = ACTIONS(2874), + [anon_sym_EQ_EQ] = ACTIONS(2874), + [anon_sym_BANG_EQ] = ACTIONS(2874), + [anon_sym_LT_EQ] = ACTIONS(2874), + [anon_sym_GT_EQ] = ACTIONS(2874), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2874), + [anon_sym_LBRACK] = ACTIONS(2872), + [anon_sym_struct] = ACTIONS(2874), + [anon_sym_mut] = ACTIONS(2874), + [anon_sym_PLUS_PLUS] = ACTIONS(2874), + [anon_sym_DASH_DASH] = ACTIONS(2874), + [anon_sym_QMARK] = ACTIONS(2874), + [anon_sym_BANG] = ACTIONS(2874), + [anon_sym_go] = ACTIONS(2874), + [anon_sym_spawn] = ACTIONS(2874), + [anon_sym_json_DOTdecode] = ACTIONS(2874), + [anon_sym_LBRACK2] = ACTIONS(2874), + [anon_sym_TILDE] = ACTIONS(2874), + [anon_sym_CARET] = ACTIONS(2874), + [anon_sym_AMP] = ACTIONS(2874), + [anon_sym_LT_DASH] = ACTIONS(2874), + [anon_sym_LT_LT] = ACTIONS(2874), + [anon_sym_GT_GT] = ACTIONS(2874), + [anon_sym_GT_GT_GT] = ACTIONS(2874), + [anon_sym_AMP_CARET] = ACTIONS(2874), + [anon_sym_AMP_AMP] = ACTIONS(2874), + [anon_sym_PIPE_PIPE] = ACTIONS(2874), + [anon_sym_or] = ACTIONS(2874), + [sym_none] = ACTIONS(2874), + [sym_true] = ACTIONS(2874), + [sym_false] = ACTIONS(2874), + [sym_nil] = ACTIONS(2874), + [anon_sym_QMARK_DOT] = ACTIONS(2874), + [anon_sym_POUND_LBRACK] = ACTIONS(2874), + [anon_sym_if] = ACTIONS(2874), + [anon_sym_DOLLARif] = ACTIONS(2874), + [anon_sym_is] = ACTIONS(2874), + [anon_sym_BANGis] = ACTIONS(2874), + [anon_sym_in] = ACTIONS(2874), + [anon_sym_BANGin] = ACTIONS(2874), + [anon_sym_match] = ACTIONS(2874), + [anon_sym_select] = ACTIONS(2874), + [anon_sym_lock] = ACTIONS(2874), + [anon_sym_rlock] = ACTIONS(2874), + [anon_sym_unsafe] = ACTIONS(2874), + [anon_sym_sql] = ACTIONS(2874), + [sym_int_literal] = ACTIONS(2874), + [sym_float_literal] = ACTIONS(2874), + [sym_rune_literal] = ACTIONS(2874), + [sym_pseudo_compile_time_identifier] = ACTIONS(2874), + [anon_sym_shared] = ACTIONS(2874), + [anon_sym_map_LBRACK] = ACTIONS(2874), + [anon_sym_chan] = ACTIONS(2874), + [anon_sym_thread] = ACTIONS(2874), + [anon_sym_atomic] = ACTIONS(2874), + [sym___double_quote] = ACTIONS(2874), + [sym___single_quote] = ACTIONS(2874), + [sym___c_double_quote] = ACTIONS(2874), + [sym___c_single_quote] = ACTIONS(2874), + [sym___r_double_quote] = ACTIONS(2874), + [sym___r_single_quote] = ACTIONS(2874), }, - [1149] = { - [sym_line_comment] = STATE(1149), - [sym_block_comment] = STATE(1149), - [sym_identifier] = ACTIONS(2892), - [anon_sym_LF] = ACTIONS(2892), - [anon_sym_CR] = ACTIONS(2892), - [anon_sym_CR_LF] = ACTIONS(2892), + [1188] = { + [sym_line_comment] = STATE(1188), + [sym_block_comment] = STATE(1188), + [sym_reference_expression] = STATE(4498), + [sym_type_reference_expression] = STATE(3460), + [sym_plain_type] = STATE(2320), + [sym__plain_type_without_special] = STATE(2360), + [sym_anon_struct_type] = STATE(2362), + [sym_multi_return_type] = STATE(2360), + [sym_result_type] = STATE(2360), + [sym_option_type] = STATE(2360), + [sym_qualified_type] = STATE(3460), + [sym_fixed_array_type] = STATE(2362), + [sym_array_type] = STATE(2362), + [sym_pointer_type] = STATE(2362), + [sym_wrong_pointer_type] = STATE(2362), + [sym_map_type] = STATE(2362), + [sym_channel_type] = STATE(2362), + [sym_shared_type] = STATE(2362), + [sym_thread_type] = STATE(2362), + [sym_atomic_type] = STATE(2362), + [sym_generic_type] = STATE(2362), + [sym_function_type] = STATE(2362), + [sym_identifier] = ACTIONS(565), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_SEMI] = ACTIONS(563), + [anon_sym_DOT] = ACTIONS(563), + [anon_sym_as] = ACTIONS(567), + [anon_sym_LBRACE] = ACTIONS(563), + [anon_sym_COMMA] = ACTIONS(563), + [anon_sym_LPAREN] = ACTIONS(3564), + [anon_sym_EQ] = ACTIONS(567), + [anon_sym_PIPE] = ACTIONS(567), + [anon_sym_fn] = ACTIONS(571), + [anon_sym_PLUS] = ACTIONS(567), + [anon_sym_DASH] = ACTIONS(567), + [anon_sym_STAR] = ACTIONS(573), + [anon_sym_SLASH] = ACTIONS(567), + [anon_sym_PERCENT] = ACTIONS(567), + [anon_sym_LT] = ACTIONS(567), + [anon_sym_GT] = ACTIONS(567), + [anon_sym_EQ_EQ] = ACTIONS(563), + [anon_sym_BANG_EQ] = ACTIONS(563), + [anon_sym_LT_EQ] = ACTIONS(563), + [anon_sym_GT_EQ] = ACTIONS(563), + [anon_sym_LBRACK] = ACTIONS(563), + [anon_sym_struct] = ACTIONS(575), + [anon_sym_PLUS_PLUS] = ACTIONS(563), + [anon_sym_DASH_DASH] = ACTIONS(563), + [anon_sym_QMARK] = ACTIONS(515), + [anon_sym_BANG] = ACTIONS(3756), + [anon_sym_LBRACK2] = ACTIONS(579), + [anon_sym_CARET] = ACTIONS(567), + [anon_sym_AMP] = ACTIONS(581), + [anon_sym_LT_LT] = ACTIONS(567), + [anon_sym_GT_GT] = ACTIONS(567), + [anon_sym_GT_GT_GT] = ACTIONS(567), + [anon_sym_AMP_CARET] = ACTIONS(567), + [anon_sym_AMP_AMP] = ACTIONS(563), + [anon_sym_PIPE_PIPE] = ACTIONS(563), + [anon_sym_or] = ACTIONS(567), + [anon_sym_QMARK_DOT] = ACTIONS(563), + [anon_sym_POUND_LBRACK] = ACTIONS(563), + [anon_sym_is] = ACTIONS(567), + [anon_sym_BANGis] = ACTIONS(563), + [anon_sym_in] = ACTIONS(567), + [anon_sym_BANGin] = ACTIONS(563), + [anon_sym_STAR_EQ] = ACTIONS(563), + [anon_sym_SLASH_EQ] = ACTIONS(563), + [anon_sym_PERCENT_EQ] = ACTIONS(563), + [anon_sym_LT_LT_EQ] = ACTIONS(563), + [anon_sym_GT_GT_EQ] = ACTIONS(563), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(563), + [anon_sym_AMP_EQ] = ACTIONS(563), + [anon_sym_AMP_CARET_EQ] = ACTIONS(563), + [anon_sym_PLUS_EQ] = ACTIONS(563), + [anon_sym_DASH_EQ] = ACTIONS(563), + [anon_sym_PIPE_EQ] = ACTIONS(563), + [anon_sym_CARET_EQ] = ACTIONS(563), + [anon_sym_COLON_EQ] = ACTIONS(563), + [anon_sym_shared] = ACTIONS(583), + [anon_sym_map_LBRACK] = ACTIONS(85), + [anon_sym_chan] = ACTIONS(87), + [anon_sym_thread] = ACTIONS(89), + [anon_sym_atomic] = ACTIONS(91), + }, + [1189] = { + [sym_line_comment] = STATE(1189), + [sym_block_comment] = STATE(1189), + [sym_identifier] = ACTIONS(2902), + [anon_sym_LF] = ACTIONS(2902), + [anon_sym_CR] = ACTIONS(2902), + [anon_sym_CR_LF] = ACTIONS(2902), [anon_sym_SLASH_SLASH] = ACTIONS(497), [anon_sym_SLASH_STAR] = ACTIONS(499), - [anon_sym_SEMI] = ACTIONS(2892), - [anon_sym_DOT] = ACTIONS(2892), - [anon_sym_as] = ACTIONS(2892), - [anon_sym_LBRACE] = ACTIONS(2892), - [anon_sym_COMMA] = ACTIONS(2892), - [anon_sym_RBRACE] = ACTIONS(2892), - [anon_sym_LPAREN] = ACTIONS(2892), - [anon_sym_RPAREN] = ACTIONS(2892), - [anon_sym_PIPE] = ACTIONS(2892), - [anon_sym_fn] = ACTIONS(2892), - [anon_sym_PLUS] = ACTIONS(2892), - [anon_sym_DASH] = ACTIONS(2892), - [anon_sym_STAR] = ACTIONS(2892), - [anon_sym_SLASH] = ACTIONS(2892), - [anon_sym_PERCENT] = ACTIONS(2892), - [anon_sym_LT] = ACTIONS(2892), - [anon_sym_GT] = ACTIONS(2892), - [anon_sym_EQ_EQ] = ACTIONS(2892), - [anon_sym_BANG_EQ] = ACTIONS(2892), - [anon_sym_LT_EQ] = ACTIONS(2892), - [anon_sym_GT_EQ] = ACTIONS(2892), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2892), - [anon_sym_LBRACK] = ACTIONS(2890), - [anon_sym_struct] = ACTIONS(2892), - [anon_sym_mut] = ACTIONS(2892), - [anon_sym_PLUS_PLUS] = ACTIONS(2892), - [anon_sym_DASH_DASH] = ACTIONS(2892), - [anon_sym_QMARK] = ACTIONS(2892), - [anon_sym_BANG] = ACTIONS(2892), - [anon_sym_go] = ACTIONS(2892), - [anon_sym_spawn] = ACTIONS(2892), - [anon_sym_json_DOTdecode] = ACTIONS(2892), - [anon_sym_LBRACK2] = ACTIONS(2892), - [anon_sym_TILDE] = ACTIONS(2892), - [anon_sym_CARET] = ACTIONS(2892), - [anon_sym_AMP] = ACTIONS(2892), - [anon_sym_LT_DASH] = ACTIONS(2892), - [anon_sym_LT_LT] = ACTIONS(2892), - [anon_sym_GT_GT] = ACTIONS(2892), - [anon_sym_GT_GT_GT] = ACTIONS(2892), - [anon_sym_AMP_CARET] = ACTIONS(2892), - [anon_sym_AMP_AMP] = ACTIONS(2892), - [anon_sym_PIPE_PIPE] = ACTIONS(2892), - [anon_sym_or] = ACTIONS(2892), - [sym_none] = ACTIONS(2892), - [sym_true] = ACTIONS(2892), - [sym_false] = ACTIONS(2892), - [sym_nil] = ACTIONS(2892), - [anon_sym_QMARK_DOT] = ACTIONS(2892), - [anon_sym_POUND_LBRACK] = ACTIONS(2892), - [anon_sym_if] = ACTIONS(2892), - [anon_sym_DOLLARif] = ACTIONS(2892), - [anon_sym_is] = ACTIONS(2892), - [anon_sym_BANGis] = ACTIONS(2892), - [anon_sym_in] = ACTIONS(2892), - [anon_sym_BANGin] = ACTIONS(2892), - [anon_sym_match] = ACTIONS(2892), - [anon_sym_select] = ACTIONS(2892), - [anon_sym_lock] = ACTIONS(2892), - [anon_sym_rlock] = ACTIONS(2892), - [anon_sym_unsafe] = ACTIONS(2892), - [anon_sym_sql] = ACTIONS(2892), - [sym_int_literal] = ACTIONS(2892), - [sym_float_literal] = ACTIONS(2892), - [sym_rune_literal] = ACTIONS(2892), - [sym_pseudo_compile_time_identifier] = ACTIONS(2892), - [anon_sym_shared] = ACTIONS(2892), - [anon_sym_map_LBRACK] = ACTIONS(2892), - [anon_sym_chan] = ACTIONS(2892), - [anon_sym_thread] = ACTIONS(2892), - [anon_sym_atomic] = ACTIONS(2892), - [sym___double_quote] = ACTIONS(2892), - [sym___single_quote] = ACTIONS(2892), - [sym___c_double_quote] = ACTIONS(2892), - [sym___c_single_quote] = ACTIONS(2892), - [sym___r_double_quote] = ACTIONS(2892), - [sym___r_single_quote] = ACTIONS(2892), + [anon_sym_SEMI] = ACTIONS(2902), + [anon_sym_DOT] = ACTIONS(2902), + [anon_sym_as] = ACTIONS(2902), + [anon_sym_LBRACE] = ACTIONS(2902), + [anon_sym_COMMA] = ACTIONS(2902), + [anon_sym_RBRACE] = ACTIONS(2902), + [anon_sym_LPAREN] = ACTIONS(2902), + [anon_sym_RPAREN] = ACTIONS(2902), + [anon_sym_PIPE] = ACTIONS(2902), + [anon_sym_fn] = ACTIONS(2902), + [anon_sym_PLUS] = ACTIONS(2902), + [anon_sym_DASH] = ACTIONS(2902), + [anon_sym_STAR] = ACTIONS(2902), + [anon_sym_SLASH] = ACTIONS(2902), + [anon_sym_PERCENT] = ACTIONS(2902), + [anon_sym_LT] = ACTIONS(2902), + [anon_sym_GT] = ACTIONS(2902), + [anon_sym_EQ_EQ] = ACTIONS(2902), + [anon_sym_BANG_EQ] = ACTIONS(2902), + [anon_sym_LT_EQ] = ACTIONS(2902), + [anon_sym_GT_EQ] = ACTIONS(2902), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2902), + [anon_sym_LBRACK] = ACTIONS(2900), + [anon_sym_struct] = ACTIONS(2902), + [anon_sym_mut] = ACTIONS(2902), + [anon_sym_PLUS_PLUS] = ACTIONS(2902), + [anon_sym_DASH_DASH] = ACTIONS(2902), + [anon_sym_QMARK] = ACTIONS(2902), + [anon_sym_BANG] = ACTIONS(2902), + [anon_sym_go] = ACTIONS(2902), + [anon_sym_spawn] = ACTIONS(2902), + [anon_sym_json_DOTdecode] = ACTIONS(2902), + [anon_sym_LBRACK2] = ACTIONS(2902), + [anon_sym_TILDE] = ACTIONS(2902), + [anon_sym_CARET] = ACTIONS(2902), + [anon_sym_AMP] = ACTIONS(2902), + [anon_sym_LT_DASH] = ACTIONS(2902), + [anon_sym_LT_LT] = ACTIONS(2902), + [anon_sym_GT_GT] = ACTIONS(2902), + [anon_sym_GT_GT_GT] = ACTIONS(2902), + [anon_sym_AMP_CARET] = ACTIONS(2902), + [anon_sym_AMP_AMP] = ACTIONS(2902), + [anon_sym_PIPE_PIPE] = ACTIONS(2902), + [anon_sym_or] = ACTIONS(2902), + [sym_none] = ACTIONS(2902), + [sym_true] = ACTIONS(2902), + [sym_false] = ACTIONS(2902), + [sym_nil] = ACTIONS(2902), + [anon_sym_QMARK_DOT] = ACTIONS(2902), + [anon_sym_POUND_LBRACK] = ACTIONS(2902), + [anon_sym_if] = ACTIONS(2902), + [anon_sym_DOLLARif] = ACTIONS(2902), + [anon_sym_is] = ACTIONS(2902), + [anon_sym_BANGis] = ACTIONS(2902), + [anon_sym_in] = ACTIONS(2902), + [anon_sym_BANGin] = ACTIONS(2902), + [anon_sym_match] = ACTIONS(2902), + [anon_sym_select] = ACTIONS(2902), + [anon_sym_lock] = ACTIONS(2902), + [anon_sym_rlock] = ACTIONS(2902), + [anon_sym_unsafe] = ACTIONS(2902), + [anon_sym_sql] = ACTIONS(2902), + [sym_int_literal] = ACTIONS(2902), + [sym_float_literal] = ACTIONS(2902), + [sym_rune_literal] = ACTIONS(2902), + [sym_pseudo_compile_time_identifier] = ACTIONS(2902), + [anon_sym_shared] = ACTIONS(2902), + [anon_sym_map_LBRACK] = ACTIONS(2902), + [anon_sym_chan] = ACTIONS(2902), + [anon_sym_thread] = ACTIONS(2902), + [anon_sym_atomic] = ACTIONS(2902), + [sym___double_quote] = ACTIONS(2902), + [sym___single_quote] = ACTIONS(2902), + [sym___c_double_quote] = ACTIONS(2902), + [sym___c_single_quote] = ACTIONS(2902), + [sym___r_double_quote] = ACTIONS(2902), + [sym___r_single_quote] = ACTIONS(2902), }, - [1150] = { - [sym_line_comment] = STATE(1150), - [sym_block_comment] = STATE(1150), - [sym_identifier] = ACTIONS(2878), - [anon_sym_LF] = ACTIONS(2878), - [anon_sym_CR] = ACTIONS(2878), - [anon_sym_CR_LF] = ACTIONS(2878), + [1190] = { + [sym_line_comment] = STATE(1190), + [sym_block_comment] = STATE(1190), + [sym_identifier] = ACTIONS(2906), + [anon_sym_LF] = ACTIONS(2906), + [anon_sym_CR] = ACTIONS(2906), + [anon_sym_CR_LF] = ACTIONS(2906), [anon_sym_SLASH_SLASH] = ACTIONS(497), [anon_sym_SLASH_STAR] = ACTIONS(499), - [anon_sym_SEMI] = ACTIONS(2878), - [anon_sym_DOT] = ACTIONS(2878), - [anon_sym_as] = ACTIONS(2878), - [anon_sym_LBRACE] = ACTIONS(2878), - [anon_sym_COMMA] = ACTIONS(2878), - [anon_sym_RBRACE] = ACTIONS(2878), - [anon_sym_LPAREN] = ACTIONS(2878), - [anon_sym_RPAREN] = ACTIONS(2878), - [anon_sym_PIPE] = ACTIONS(2878), - [anon_sym_fn] = ACTIONS(2878), - [anon_sym_PLUS] = ACTIONS(2878), - [anon_sym_DASH] = ACTIONS(2878), - [anon_sym_STAR] = ACTIONS(2878), - [anon_sym_SLASH] = ACTIONS(2878), - [anon_sym_PERCENT] = ACTIONS(2878), - [anon_sym_LT] = ACTIONS(2878), - [anon_sym_GT] = ACTIONS(2878), - [anon_sym_EQ_EQ] = ACTIONS(2878), - [anon_sym_BANG_EQ] = ACTIONS(2878), - [anon_sym_LT_EQ] = ACTIONS(2878), - [anon_sym_GT_EQ] = ACTIONS(2878), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2878), - [anon_sym_LBRACK] = ACTIONS(2876), - [anon_sym_struct] = ACTIONS(2878), - [anon_sym_mut] = ACTIONS(2878), - [anon_sym_PLUS_PLUS] = ACTIONS(2878), - [anon_sym_DASH_DASH] = ACTIONS(2878), - [anon_sym_QMARK] = ACTIONS(2878), - [anon_sym_BANG] = ACTIONS(2878), - [anon_sym_go] = ACTIONS(2878), - [anon_sym_spawn] = ACTIONS(2878), - [anon_sym_json_DOTdecode] = ACTIONS(2878), - [anon_sym_LBRACK2] = ACTIONS(2878), - [anon_sym_TILDE] = ACTIONS(2878), - [anon_sym_CARET] = ACTIONS(2878), - [anon_sym_AMP] = ACTIONS(2878), - [anon_sym_LT_DASH] = ACTIONS(2878), - [anon_sym_LT_LT] = ACTIONS(2878), - [anon_sym_GT_GT] = ACTIONS(2878), - [anon_sym_GT_GT_GT] = ACTIONS(2878), - [anon_sym_AMP_CARET] = ACTIONS(2878), - [anon_sym_AMP_AMP] = ACTIONS(2878), - [anon_sym_PIPE_PIPE] = ACTIONS(2878), - [anon_sym_or] = ACTIONS(2878), - [sym_none] = ACTIONS(2878), - [sym_true] = ACTIONS(2878), - [sym_false] = ACTIONS(2878), - [sym_nil] = ACTIONS(2878), - [anon_sym_QMARK_DOT] = ACTIONS(2878), - [anon_sym_POUND_LBRACK] = ACTIONS(2878), - [anon_sym_if] = ACTIONS(2878), - [anon_sym_DOLLARif] = ACTIONS(2878), - [anon_sym_is] = ACTIONS(2878), - [anon_sym_BANGis] = ACTIONS(2878), - [anon_sym_in] = ACTIONS(2878), - [anon_sym_BANGin] = ACTIONS(2878), - [anon_sym_match] = ACTIONS(2878), - [anon_sym_select] = ACTIONS(2878), - [anon_sym_lock] = ACTIONS(2878), - [anon_sym_rlock] = ACTIONS(2878), - [anon_sym_unsafe] = ACTIONS(2878), - [anon_sym_sql] = ACTIONS(2878), - [sym_int_literal] = ACTIONS(2878), - [sym_float_literal] = ACTIONS(2878), - [sym_rune_literal] = ACTIONS(2878), - [sym_pseudo_compile_time_identifier] = ACTIONS(2878), - [anon_sym_shared] = ACTIONS(2878), - [anon_sym_map_LBRACK] = ACTIONS(2878), - [anon_sym_chan] = ACTIONS(2878), - [anon_sym_thread] = ACTIONS(2878), - [anon_sym_atomic] = ACTIONS(2878), - [sym___double_quote] = ACTIONS(2878), - [sym___single_quote] = ACTIONS(2878), - [sym___c_double_quote] = ACTIONS(2878), - [sym___c_single_quote] = ACTIONS(2878), - [sym___r_double_quote] = ACTIONS(2878), - [sym___r_single_quote] = ACTIONS(2878), + [anon_sym_SEMI] = ACTIONS(2906), + [anon_sym_DOT] = ACTIONS(2906), + [anon_sym_as] = ACTIONS(2906), + [anon_sym_LBRACE] = ACTIONS(2906), + [anon_sym_COMMA] = ACTIONS(2906), + [anon_sym_RBRACE] = ACTIONS(2906), + [anon_sym_LPAREN] = ACTIONS(2906), + [anon_sym_RPAREN] = ACTIONS(2906), + [anon_sym_PIPE] = ACTIONS(2906), + [anon_sym_fn] = ACTIONS(2906), + [anon_sym_PLUS] = ACTIONS(2906), + [anon_sym_DASH] = ACTIONS(2906), + [anon_sym_STAR] = ACTIONS(2906), + [anon_sym_SLASH] = ACTIONS(2906), + [anon_sym_PERCENT] = ACTIONS(2906), + [anon_sym_LT] = ACTIONS(2906), + [anon_sym_GT] = ACTIONS(2906), + [anon_sym_EQ_EQ] = ACTIONS(2906), + [anon_sym_BANG_EQ] = ACTIONS(2906), + [anon_sym_LT_EQ] = ACTIONS(2906), + [anon_sym_GT_EQ] = ACTIONS(2906), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2906), + [anon_sym_LBRACK] = ACTIONS(2904), + [anon_sym_struct] = ACTIONS(2906), + [anon_sym_mut] = ACTIONS(2906), + [anon_sym_PLUS_PLUS] = ACTIONS(2906), + [anon_sym_DASH_DASH] = ACTIONS(2906), + [anon_sym_QMARK] = ACTIONS(2906), + [anon_sym_BANG] = ACTIONS(2906), + [anon_sym_go] = ACTIONS(2906), + [anon_sym_spawn] = ACTIONS(2906), + [anon_sym_json_DOTdecode] = ACTIONS(2906), + [anon_sym_LBRACK2] = ACTIONS(2906), + [anon_sym_TILDE] = ACTIONS(2906), + [anon_sym_CARET] = ACTIONS(2906), + [anon_sym_AMP] = ACTIONS(2906), + [anon_sym_LT_DASH] = ACTIONS(2906), + [anon_sym_LT_LT] = ACTIONS(2906), + [anon_sym_GT_GT] = ACTIONS(2906), + [anon_sym_GT_GT_GT] = ACTIONS(2906), + [anon_sym_AMP_CARET] = ACTIONS(2906), + [anon_sym_AMP_AMP] = ACTIONS(2906), + [anon_sym_PIPE_PIPE] = ACTIONS(2906), + [anon_sym_or] = ACTIONS(2906), + [sym_none] = ACTIONS(2906), + [sym_true] = ACTIONS(2906), + [sym_false] = ACTIONS(2906), + [sym_nil] = ACTIONS(2906), + [anon_sym_QMARK_DOT] = ACTIONS(2906), + [anon_sym_POUND_LBRACK] = ACTIONS(2906), + [anon_sym_if] = ACTIONS(2906), + [anon_sym_DOLLARif] = ACTIONS(2906), + [anon_sym_is] = ACTIONS(2906), + [anon_sym_BANGis] = ACTIONS(2906), + [anon_sym_in] = ACTIONS(2906), + [anon_sym_BANGin] = ACTIONS(2906), + [anon_sym_match] = ACTIONS(2906), + [anon_sym_select] = ACTIONS(2906), + [anon_sym_lock] = ACTIONS(2906), + [anon_sym_rlock] = ACTIONS(2906), + [anon_sym_unsafe] = ACTIONS(2906), + [anon_sym_sql] = ACTIONS(2906), + [sym_int_literal] = ACTIONS(2906), + [sym_float_literal] = ACTIONS(2906), + [sym_rune_literal] = ACTIONS(2906), + [sym_pseudo_compile_time_identifier] = ACTIONS(2906), + [anon_sym_shared] = ACTIONS(2906), + [anon_sym_map_LBRACK] = ACTIONS(2906), + [anon_sym_chan] = ACTIONS(2906), + [anon_sym_thread] = ACTIONS(2906), + [anon_sym_atomic] = ACTIONS(2906), + [sym___double_quote] = ACTIONS(2906), + [sym___single_quote] = ACTIONS(2906), + [sym___c_double_quote] = ACTIONS(2906), + [sym___c_single_quote] = ACTIONS(2906), + [sym___r_double_quote] = ACTIONS(2906), + [sym___r_single_quote] = ACTIONS(2906), }, - [1151] = { - [sym_line_comment] = STATE(1151), - [sym_block_comment] = STATE(1151), - [sym_identifier] = ACTIONS(2846), - [anon_sym_LF] = ACTIONS(2846), - [anon_sym_CR] = ACTIONS(2846), - [anon_sym_CR_LF] = ACTIONS(2846), + [1191] = { + [sym_line_comment] = STATE(1191), + [sym_block_comment] = STATE(1191), + [sym_identifier] = ACTIONS(2914), + [anon_sym_LF] = ACTIONS(2914), + [anon_sym_CR] = ACTIONS(2914), + [anon_sym_CR_LF] = ACTIONS(2914), [anon_sym_SLASH_SLASH] = ACTIONS(497), [anon_sym_SLASH_STAR] = ACTIONS(499), - [anon_sym_SEMI] = ACTIONS(2846), - [anon_sym_DOT] = ACTIONS(2846), - [anon_sym_as] = ACTIONS(2846), - [anon_sym_LBRACE] = ACTIONS(2846), - [anon_sym_COMMA] = ACTIONS(2846), - [anon_sym_RBRACE] = ACTIONS(2846), - [anon_sym_LPAREN] = ACTIONS(2846), - [anon_sym_RPAREN] = ACTIONS(2846), - [anon_sym_PIPE] = ACTIONS(2846), - [anon_sym_fn] = ACTIONS(2846), - [anon_sym_PLUS] = ACTIONS(2846), - [anon_sym_DASH] = ACTIONS(2846), - [anon_sym_STAR] = ACTIONS(2846), - [anon_sym_SLASH] = ACTIONS(2846), - [anon_sym_PERCENT] = ACTIONS(2846), - [anon_sym_LT] = ACTIONS(2846), - [anon_sym_GT] = ACTIONS(2846), - [anon_sym_EQ_EQ] = ACTIONS(2846), - [anon_sym_BANG_EQ] = ACTIONS(2846), - [anon_sym_LT_EQ] = ACTIONS(2846), - [anon_sym_GT_EQ] = ACTIONS(2846), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2846), - [anon_sym_LBRACK] = ACTIONS(2844), - [anon_sym_struct] = ACTIONS(2846), - [anon_sym_mut] = ACTIONS(2846), - [anon_sym_PLUS_PLUS] = ACTIONS(2846), - [anon_sym_DASH_DASH] = ACTIONS(2846), - [anon_sym_QMARK] = ACTIONS(2846), - [anon_sym_BANG] = ACTIONS(2846), - [anon_sym_go] = ACTIONS(2846), - [anon_sym_spawn] = ACTIONS(2846), - [anon_sym_json_DOTdecode] = ACTIONS(2846), - [anon_sym_LBRACK2] = ACTIONS(2846), - [anon_sym_TILDE] = ACTIONS(2846), - [anon_sym_CARET] = ACTIONS(2846), - [anon_sym_AMP] = ACTIONS(2846), - [anon_sym_LT_DASH] = ACTIONS(2846), - [anon_sym_LT_LT] = ACTIONS(2846), - [anon_sym_GT_GT] = ACTIONS(2846), - [anon_sym_GT_GT_GT] = ACTIONS(2846), - [anon_sym_AMP_CARET] = ACTIONS(2846), - [anon_sym_AMP_AMP] = ACTIONS(2846), - [anon_sym_PIPE_PIPE] = ACTIONS(2846), - [anon_sym_or] = ACTIONS(2846), - [sym_none] = ACTIONS(2846), - [sym_true] = ACTIONS(2846), - [sym_false] = ACTIONS(2846), - [sym_nil] = ACTIONS(2846), - [anon_sym_QMARK_DOT] = ACTIONS(2846), - [anon_sym_POUND_LBRACK] = ACTIONS(2846), - [anon_sym_if] = ACTIONS(2846), - [anon_sym_DOLLARif] = ACTIONS(2846), - [anon_sym_is] = ACTIONS(2846), - [anon_sym_BANGis] = ACTIONS(2846), - [anon_sym_in] = ACTIONS(2846), - [anon_sym_BANGin] = ACTIONS(2846), - [anon_sym_match] = ACTIONS(2846), - [anon_sym_select] = ACTIONS(2846), - [anon_sym_lock] = ACTIONS(2846), - [anon_sym_rlock] = ACTIONS(2846), - [anon_sym_unsafe] = ACTIONS(2846), - [anon_sym_sql] = ACTIONS(2846), - [sym_int_literal] = ACTIONS(2846), - [sym_float_literal] = ACTIONS(2846), - [sym_rune_literal] = ACTIONS(2846), - [sym_pseudo_compile_time_identifier] = ACTIONS(2846), - [anon_sym_shared] = ACTIONS(2846), - [anon_sym_map_LBRACK] = ACTIONS(2846), - [anon_sym_chan] = ACTIONS(2846), - [anon_sym_thread] = ACTIONS(2846), - [anon_sym_atomic] = ACTIONS(2846), - [sym___double_quote] = ACTIONS(2846), - [sym___single_quote] = ACTIONS(2846), - [sym___c_double_quote] = ACTIONS(2846), - [sym___c_single_quote] = ACTIONS(2846), - [sym___r_double_quote] = ACTIONS(2846), - [sym___r_single_quote] = ACTIONS(2846), + [anon_sym_SEMI] = ACTIONS(2914), + [anon_sym_DOT] = ACTIONS(2914), + [anon_sym_as] = ACTIONS(2914), + [anon_sym_LBRACE] = ACTIONS(2914), + [anon_sym_COMMA] = ACTIONS(2914), + [anon_sym_RBRACE] = ACTIONS(2914), + [anon_sym_LPAREN] = ACTIONS(2914), + [anon_sym_RPAREN] = ACTIONS(2914), + [anon_sym_PIPE] = ACTIONS(2914), + [anon_sym_fn] = ACTIONS(2914), + [anon_sym_PLUS] = ACTIONS(2914), + [anon_sym_DASH] = ACTIONS(2914), + [anon_sym_STAR] = ACTIONS(2914), + [anon_sym_SLASH] = ACTIONS(2914), + [anon_sym_PERCENT] = ACTIONS(2914), + [anon_sym_LT] = ACTIONS(2914), + [anon_sym_GT] = ACTIONS(2914), + [anon_sym_EQ_EQ] = ACTIONS(2914), + [anon_sym_BANG_EQ] = ACTIONS(2914), + [anon_sym_LT_EQ] = ACTIONS(2914), + [anon_sym_GT_EQ] = ACTIONS(2914), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2914), + [anon_sym_LBRACK] = ACTIONS(2912), + [anon_sym_struct] = ACTIONS(2914), + [anon_sym_mut] = ACTIONS(2914), + [anon_sym_PLUS_PLUS] = ACTIONS(2914), + [anon_sym_DASH_DASH] = ACTIONS(2914), + [anon_sym_QMARK] = ACTIONS(2914), + [anon_sym_BANG] = ACTIONS(2914), + [anon_sym_go] = ACTIONS(2914), + [anon_sym_spawn] = ACTIONS(2914), + [anon_sym_json_DOTdecode] = ACTIONS(2914), + [anon_sym_LBRACK2] = ACTIONS(2914), + [anon_sym_TILDE] = ACTIONS(2914), + [anon_sym_CARET] = ACTIONS(2914), + [anon_sym_AMP] = ACTIONS(2914), + [anon_sym_LT_DASH] = ACTIONS(2914), + [anon_sym_LT_LT] = ACTIONS(2914), + [anon_sym_GT_GT] = ACTIONS(2914), + [anon_sym_GT_GT_GT] = ACTIONS(2914), + [anon_sym_AMP_CARET] = ACTIONS(2914), + [anon_sym_AMP_AMP] = ACTIONS(2914), + [anon_sym_PIPE_PIPE] = ACTIONS(2914), + [anon_sym_or] = ACTIONS(2914), + [sym_none] = ACTIONS(2914), + [sym_true] = ACTIONS(2914), + [sym_false] = ACTIONS(2914), + [sym_nil] = ACTIONS(2914), + [anon_sym_QMARK_DOT] = ACTIONS(2914), + [anon_sym_POUND_LBRACK] = ACTIONS(2914), + [anon_sym_if] = ACTIONS(2914), + [anon_sym_DOLLARif] = ACTIONS(2914), + [anon_sym_is] = ACTIONS(2914), + [anon_sym_BANGis] = ACTIONS(2914), + [anon_sym_in] = ACTIONS(2914), + [anon_sym_BANGin] = ACTIONS(2914), + [anon_sym_match] = ACTIONS(2914), + [anon_sym_select] = ACTIONS(2914), + [anon_sym_lock] = ACTIONS(2914), + [anon_sym_rlock] = ACTIONS(2914), + [anon_sym_unsafe] = ACTIONS(2914), + [anon_sym_sql] = ACTIONS(2914), + [sym_int_literal] = ACTIONS(2914), + [sym_float_literal] = ACTIONS(2914), + [sym_rune_literal] = ACTIONS(2914), + [sym_pseudo_compile_time_identifier] = ACTIONS(2914), + [anon_sym_shared] = ACTIONS(2914), + [anon_sym_map_LBRACK] = ACTIONS(2914), + [anon_sym_chan] = ACTIONS(2914), + [anon_sym_thread] = ACTIONS(2914), + [anon_sym_atomic] = ACTIONS(2914), + [sym___double_quote] = ACTIONS(2914), + [sym___single_quote] = ACTIONS(2914), + [sym___c_double_quote] = ACTIONS(2914), + [sym___c_single_quote] = ACTIONS(2914), + [sym___r_double_quote] = ACTIONS(2914), + [sym___r_single_quote] = ACTIONS(2914), }, - [1152] = { - [sym_line_comment] = STATE(1152), - [sym_block_comment] = STATE(1152), - [sym_identifier] = ACTIONS(2872), - [anon_sym_LF] = ACTIONS(2872), - [anon_sym_CR] = ACTIONS(2872), - [anon_sym_CR_LF] = ACTIONS(2872), + [1192] = { + [sym_line_comment] = STATE(1192), + [sym_block_comment] = STATE(1192), + [sym_identifier] = ACTIONS(2692), + [anon_sym_LF] = ACTIONS(2692), + [anon_sym_CR] = ACTIONS(2692), + [anon_sym_CR_LF] = ACTIONS(2692), [anon_sym_SLASH_SLASH] = ACTIONS(497), [anon_sym_SLASH_STAR] = ACTIONS(499), - [anon_sym_SEMI] = ACTIONS(2872), - [anon_sym_DOT] = ACTIONS(2872), - [anon_sym_as] = ACTIONS(2872), - [anon_sym_LBRACE] = ACTIONS(2872), - [anon_sym_COMMA] = ACTIONS(2872), - [anon_sym_RBRACE] = ACTIONS(2872), - [anon_sym_LPAREN] = ACTIONS(2872), - [anon_sym_RPAREN] = ACTIONS(2872), - [anon_sym_PIPE] = ACTIONS(2872), - [anon_sym_fn] = ACTIONS(2872), - [anon_sym_PLUS] = ACTIONS(2872), - [anon_sym_DASH] = ACTIONS(2872), - [anon_sym_STAR] = ACTIONS(2872), - [anon_sym_SLASH] = ACTIONS(2872), - [anon_sym_PERCENT] = ACTIONS(2872), - [anon_sym_LT] = ACTIONS(2872), - [anon_sym_GT] = ACTIONS(2872), - [anon_sym_EQ_EQ] = ACTIONS(2872), - [anon_sym_BANG_EQ] = ACTIONS(2872), - [anon_sym_LT_EQ] = ACTIONS(2872), - [anon_sym_GT_EQ] = ACTIONS(2872), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2872), - [anon_sym_LBRACK] = ACTIONS(2870), - [anon_sym_struct] = ACTIONS(2872), - [anon_sym_mut] = ACTIONS(2872), - [anon_sym_PLUS_PLUS] = ACTIONS(2872), - [anon_sym_DASH_DASH] = ACTIONS(2872), - [anon_sym_QMARK] = ACTIONS(2872), - [anon_sym_BANG] = ACTIONS(2872), - [anon_sym_go] = ACTIONS(2872), - [anon_sym_spawn] = ACTIONS(2872), - [anon_sym_json_DOTdecode] = ACTIONS(2872), - [anon_sym_LBRACK2] = ACTIONS(2872), - [anon_sym_TILDE] = ACTIONS(2872), - [anon_sym_CARET] = ACTIONS(2872), - [anon_sym_AMP] = ACTIONS(2872), - [anon_sym_LT_DASH] = ACTIONS(2872), - [anon_sym_LT_LT] = ACTIONS(2872), - [anon_sym_GT_GT] = ACTIONS(2872), - [anon_sym_GT_GT_GT] = ACTIONS(2872), - [anon_sym_AMP_CARET] = ACTIONS(2872), - [anon_sym_AMP_AMP] = ACTIONS(2872), - [anon_sym_PIPE_PIPE] = ACTIONS(2872), - [anon_sym_or] = ACTIONS(2872), - [sym_none] = ACTIONS(2872), - [sym_true] = ACTIONS(2872), - [sym_false] = ACTIONS(2872), - [sym_nil] = ACTIONS(2872), - [anon_sym_QMARK_DOT] = ACTIONS(2872), - [anon_sym_POUND_LBRACK] = ACTIONS(2872), - [anon_sym_if] = ACTIONS(2872), - [anon_sym_DOLLARif] = ACTIONS(2872), - [anon_sym_is] = ACTIONS(2872), - [anon_sym_BANGis] = ACTIONS(2872), - [anon_sym_in] = ACTIONS(2872), - [anon_sym_BANGin] = ACTIONS(2872), - [anon_sym_match] = ACTIONS(2872), - [anon_sym_select] = ACTIONS(2872), - [anon_sym_lock] = ACTIONS(2872), - [anon_sym_rlock] = ACTIONS(2872), - [anon_sym_unsafe] = ACTIONS(2872), - [anon_sym_sql] = ACTIONS(2872), - [sym_int_literal] = ACTIONS(2872), - [sym_float_literal] = ACTIONS(2872), - [sym_rune_literal] = ACTIONS(2872), - [sym_pseudo_compile_time_identifier] = ACTIONS(2872), - [anon_sym_shared] = ACTIONS(2872), - [anon_sym_map_LBRACK] = ACTIONS(2872), - [anon_sym_chan] = ACTIONS(2872), - [anon_sym_thread] = ACTIONS(2872), - [anon_sym_atomic] = ACTIONS(2872), - [sym___double_quote] = ACTIONS(2872), - [sym___single_quote] = ACTIONS(2872), - [sym___c_double_quote] = ACTIONS(2872), - [sym___c_single_quote] = ACTIONS(2872), - [sym___r_double_quote] = ACTIONS(2872), - [sym___r_single_quote] = ACTIONS(2872), + [anon_sym_SEMI] = ACTIONS(2692), + [anon_sym_DOT] = ACTIONS(2692), + [anon_sym_as] = ACTIONS(2692), + [anon_sym_LBRACE] = ACTIONS(2692), + [anon_sym_COMMA] = ACTIONS(2692), + [anon_sym_RBRACE] = ACTIONS(2692), + [anon_sym_LPAREN] = ACTIONS(2692), + [anon_sym_RPAREN] = ACTIONS(2692), + [anon_sym_PIPE] = ACTIONS(2692), + [anon_sym_fn] = ACTIONS(2692), + [anon_sym_PLUS] = ACTIONS(2692), + [anon_sym_DASH] = ACTIONS(2692), + [anon_sym_STAR] = ACTIONS(2692), + [anon_sym_SLASH] = ACTIONS(2692), + [anon_sym_PERCENT] = ACTIONS(2692), + [anon_sym_LT] = ACTIONS(2692), + [anon_sym_GT] = ACTIONS(2692), + [anon_sym_EQ_EQ] = ACTIONS(2692), + [anon_sym_BANG_EQ] = ACTIONS(2692), + [anon_sym_LT_EQ] = ACTIONS(2692), + [anon_sym_GT_EQ] = ACTIONS(2692), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2692), + [anon_sym_LBRACK] = ACTIONS(2690), + [anon_sym_struct] = ACTIONS(2692), + [anon_sym_mut] = ACTIONS(2692), + [anon_sym_PLUS_PLUS] = ACTIONS(2692), + [anon_sym_DASH_DASH] = ACTIONS(2692), + [anon_sym_QMARK] = ACTIONS(2692), + [anon_sym_BANG] = ACTIONS(2692), + [anon_sym_go] = ACTIONS(2692), + [anon_sym_spawn] = ACTIONS(2692), + [anon_sym_json_DOTdecode] = ACTIONS(2692), + [anon_sym_LBRACK2] = ACTIONS(2692), + [anon_sym_TILDE] = ACTIONS(2692), + [anon_sym_CARET] = ACTIONS(2692), + [anon_sym_AMP] = ACTIONS(2692), + [anon_sym_LT_DASH] = ACTIONS(2692), + [anon_sym_LT_LT] = ACTIONS(2692), + [anon_sym_GT_GT] = ACTIONS(2692), + [anon_sym_GT_GT_GT] = ACTIONS(2692), + [anon_sym_AMP_CARET] = ACTIONS(2692), + [anon_sym_AMP_AMP] = ACTIONS(2692), + [anon_sym_PIPE_PIPE] = ACTIONS(2692), + [anon_sym_or] = ACTIONS(2692), + [sym_none] = ACTIONS(2692), + [sym_true] = ACTIONS(2692), + [sym_false] = ACTIONS(2692), + [sym_nil] = ACTIONS(2692), + [anon_sym_QMARK_DOT] = ACTIONS(2692), + [anon_sym_POUND_LBRACK] = ACTIONS(2692), + [anon_sym_if] = ACTIONS(2692), + [anon_sym_DOLLARif] = ACTIONS(2692), + [anon_sym_is] = ACTIONS(2692), + [anon_sym_BANGis] = ACTIONS(2692), + [anon_sym_in] = ACTIONS(2692), + [anon_sym_BANGin] = ACTIONS(2692), + [anon_sym_match] = ACTIONS(2692), + [anon_sym_select] = ACTIONS(2692), + [anon_sym_lock] = ACTIONS(2692), + [anon_sym_rlock] = ACTIONS(2692), + [anon_sym_unsafe] = ACTIONS(2692), + [anon_sym_sql] = ACTIONS(2692), + [sym_int_literal] = ACTIONS(2692), + [sym_float_literal] = ACTIONS(2692), + [sym_rune_literal] = ACTIONS(2692), + [sym_pseudo_compile_time_identifier] = ACTIONS(2692), + [anon_sym_shared] = ACTIONS(2692), + [anon_sym_map_LBRACK] = ACTIONS(2692), + [anon_sym_chan] = ACTIONS(2692), + [anon_sym_thread] = ACTIONS(2692), + [anon_sym_atomic] = ACTIONS(2692), + [sym___double_quote] = ACTIONS(2692), + [sym___single_quote] = ACTIONS(2692), + [sym___c_double_quote] = ACTIONS(2692), + [sym___c_single_quote] = ACTIONS(2692), + [sym___r_double_quote] = ACTIONS(2692), + [sym___r_single_quote] = ACTIONS(2692), }, - [1153] = { - [sym_line_comment] = STATE(1153), - [sym_block_comment] = STATE(1153), + [1193] = { + [sym_line_comment] = STATE(1193), + [sym_block_comment] = STATE(1193), + [sym_identifier] = ACTIONS(2143), + [anon_sym_LF] = ACTIONS(2143), + [anon_sym_CR] = ACTIONS(2143), + [anon_sym_CR_LF] = ACTIONS(2143), + [anon_sym_SLASH_SLASH] = ACTIONS(497), + [anon_sym_SLASH_STAR] = ACTIONS(499), + [anon_sym_SEMI] = ACTIONS(2143), + [anon_sym_DOT] = ACTIONS(2143), + [anon_sym_as] = ACTIONS(2143), + [anon_sym_LBRACE] = ACTIONS(2143), + [anon_sym_COMMA] = ACTIONS(2143), + [anon_sym_RBRACE] = ACTIONS(2143), + [anon_sym_LPAREN] = ACTIONS(2143), + [anon_sym_RPAREN] = ACTIONS(2143), + [anon_sym_PIPE] = ACTIONS(2143), + [anon_sym_fn] = ACTIONS(2143), + [anon_sym_PLUS] = ACTIONS(2143), + [anon_sym_DASH] = ACTIONS(2143), + [anon_sym_STAR] = ACTIONS(2143), + [anon_sym_SLASH] = ACTIONS(2143), + [anon_sym_PERCENT] = ACTIONS(2143), + [anon_sym_LT] = ACTIONS(2143), + [anon_sym_GT] = ACTIONS(2143), + [anon_sym_EQ_EQ] = ACTIONS(2143), + [anon_sym_BANG_EQ] = ACTIONS(2143), + [anon_sym_LT_EQ] = ACTIONS(2143), + [anon_sym_GT_EQ] = ACTIONS(2143), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2143), + [anon_sym_LBRACK] = ACTIONS(2141), + [anon_sym_struct] = ACTIONS(2143), + [anon_sym_mut] = ACTIONS(2143), + [anon_sym_PLUS_PLUS] = ACTIONS(2143), + [anon_sym_DASH_DASH] = ACTIONS(2143), + [anon_sym_QMARK] = ACTIONS(2143), + [anon_sym_BANG] = ACTIONS(2143), + [anon_sym_go] = ACTIONS(2143), + [anon_sym_spawn] = ACTIONS(2143), + [anon_sym_json_DOTdecode] = ACTIONS(2143), + [anon_sym_LBRACK2] = ACTIONS(2143), + [anon_sym_TILDE] = ACTIONS(2143), + [anon_sym_CARET] = ACTIONS(2143), + [anon_sym_AMP] = ACTIONS(2143), + [anon_sym_LT_DASH] = ACTIONS(2143), + [anon_sym_LT_LT] = ACTIONS(2143), + [anon_sym_GT_GT] = ACTIONS(2143), + [anon_sym_GT_GT_GT] = ACTIONS(2143), + [anon_sym_AMP_CARET] = ACTIONS(2143), + [anon_sym_AMP_AMP] = ACTIONS(2143), + [anon_sym_PIPE_PIPE] = ACTIONS(2143), + [anon_sym_or] = ACTIONS(2143), + [sym_none] = ACTIONS(2143), + [sym_true] = ACTIONS(2143), + [sym_false] = ACTIONS(2143), + [sym_nil] = ACTIONS(2143), + [anon_sym_QMARK_DOT] = ACTIONS(2143), + [anon_sym_POUND_LBRACK] = ACTIONS(2143), + [anon_sym_if] = ACTIONS(2143), + [anon_sym_DOLLARif] = ACTIONS(2143), + [anon_sym_is] = ACTIONS(2143), + [anon_sym_BANGis] = ACTIONS(2143), + [anon_sym_in] = ACTIONS(2143), + [anon_sym_BANGin] = ACTIONS(2143), + [anon_sym_match] = ACTIONS(2143), + [anon_sym_select] = ACTIONS(2143), + [anon_sym_lock] = ACTIONS(2143), + [anon_sym_rlock] = ACTIONS(2143), + [anon_sym_unsafe] = ACTIONS(2143), + [anon_sym_sql] = ACTIONS(2143), + [sym_int_literal] = ACTIONS(2143), + [sym_float_literal] = ACTIONS(2143), + [sym_rune_literal] = ACTIONS(2143), + [sym_pseudo_compile_time_identifier] = ACTIONS(2143), + [anon_sym_shared] = ACTIONS(2143), + [anon_sym_map_LBRACK] = ACTIONS(2143), + [anon_sym_chan] = ACTIONS(2143), + [anon_sym_thread] = ACTIONS(2143), + [anon_sym_atomic] = ACTIONS(2143), + [sym___double_quote] = ACTIONS(2143), + [sym___single_quote] = ACTIONS(2143), + [sym___c_double_quote] = ACTIONS(2143), + [sym___c_single_quote] = ACTIONS(2143), + [sym___r_double_quote] = ACTIONS(2143), + [sym___r_single_quote] = ACTIONS(2143), + }, + [1194] = { + [sym_line_comment] = STATE(1194), + [sym_block_comment] = STATE(1194), [sym_identifier] = ACTIONS(2850), [anon_sym_LF] = ACTIONS(2850), [anon_sym_CR] = ACTIONS(2850), @@ -152286,305 +155900,217 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym___r_double_quote] = ACTIONS(2850), [sym___r_single_quote] = ACTIONS(2850), }, - [1154] = { - [sym_line_comment] = STATE(1154), - [sym_block_comment] = STATE(1154), - [sym_identifier] = ACTIONS(2900), - [anon_sym_LF] = ACTIONS(2900), - [anon_sym_CR] = ACTIONS(2900), - [anon_sym_CR_LF] = ACTIONS(2900), - [anon_sym_SLASH_SLASH] = ACTIONS(497), - [anon_sym_SLASH_STAR] = ACTIONS(499), - [anon_sym_SEMI] = ACTIONS(2900), - [anon_sym_DOT] = ACTIONS(2900), - [anon_sym_as] = ACTIONS(2900), - [anon_sym_LBRACE] = ACTIONS(2900), - [anon_sym_COMMA] = ACTIONS(2900), - [anon_sym_RBRACE] = ACTIONS(2900), - [anon_sym_LPAREN] = ACTIONS(2900), - [anon_sym_RPAREN] = ACTIONS(2900), - [anon_sym_PIPE] = ACTIONS(2900), - [anon_sym_fn] = ACTIONS(2900), - [anon_sym_PLUS] = ACTIONS(2900), - [anon_sym_DASH] = ACTIONS(2900), - [anon_sym_STAR] = ACTIONS(2900), - [anon_sym_SLASH] = ACTIONS(2900), - [anon_sym_PERCENT] = ACTIONS(2900), - [anon_sym_LT] = ACTIONS(2900), - [anon_sym_GT] = ACTIONS(2900), - [anon_sym_EQ_EQ] = ACTIONS(2900), - [anon_sym_BANG_EQ] = ACTIONS(2900), - [anon_sym_LT_EQ] = ACTIONS(2900), - [anon_sym_GT_EQ] = ACTIONS(2900), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2900), - [anon_sym_LBRACK] = ACTIONS(2898), - [anon_sym_struct] = ACTIONS(2900), - [anon_sym_mut] = ACTIONS(2900), - [anon_sym_PLUS_PLUS] = ACTIONS(2900), - [anon_sym_DASH_DASH] = ACTIONS(2900), - [anon_sym_QMARK] = ACTIONS(2900), - [anon_sym_BANG] = ACTIONS(2900), - [anon_sym_go] = ACTIONS(2900), - [anon_sym_spawn] = ACTIONS(2900), - [anon_sym_json_DOTdecode] = ACTIONS(2900), - [anon_sym_LBRACK2] = ACTIONS(2900), - [anon_sym_TILDE] = ACTIONS(2900), - [anon_sym_CARET] = ACTIONS(2900), - [anon_sym_AMP] = ACTIONS(2900), - [anon_sym_LT_DASH] = ACTIONS(2900), - [anon_sym_LT_LT] = ACTIONS(2900), - [anon_sym_GT_GT] = ACTIONS(2900), - [anon_sym_GT_GT_GT] = ACTIONS(2900), - [anon_sym_AMP_CARET] = ACTIONS(2900), - [anon_sym_AMP_AMP] = ACTIONS(2900), - [anon_sym_PIPE_PIPE] = ACTIONS(2900), - [anon_sym_or] = ACTIONS(2900), - [sym_none] = ACTIONS(2900), - [sym_true] = ACTIONS(2900), - [sym_false] = ACTIONS(2900), - [sym_nil] = ACTIONS(2900), - [anon_sym_QMARK_DOT] = ACTIONS(2900), - [anon_sym_POUND_LBRACK] = ACTIONS(2900), - [anon_sym_if] = ACTIONS(2900), - [anon_sym_DOLLARif] = ACTIONS(2900), - [anon_sym_is] = ACTIONS(2900), - [anon_sym_BANGis] = ACTIONS(2900), - [anon_sym_in] = ACTIONS(2900), - [anon_sym_BANGin] = ACTIONS(2900), - [anon_sym_match] = ACTIONS(2900), - [anon_sym_select] = ACTIONS(2900), - [anon_sym_lock] = ACTIONS(2900), - [anon_sym_rlock] = ACTIONS(2900), - [anon_sym_unsafe] = ACTIONS(2900), - [anon_sym_sql] = ACTIONS(2900), - [sym_int_literal] = ACTIONS(2900), - [sym_float_literal] = ACTIONS(2900), - [sym_rune_literal] = ACTIONS(2900), - [sym_pseudo_compile_time_identifier] = ACTIONS(2900), - [anon_sym_shared] = ACTIONS(2900), - [anon_sym_map_LBRACK] = ACTIONS(2900), - [anon_sym_chan] = ACTIONS(2900), - [anon_sym_thread] = ACTIONS(2900), - [anon_sym_atomic] = ACTIONS(2900), - [sym___double_quote] = ACTIONS(2900), - [sym___single_quote] = ACTIONS(2900), - [sym___c_double_quote] = ACTIONS(2900), - [sym___c_single_quote] = ACTIONS(2900), - [sym___r_double_quote] = ACTIONS(2900), - [sym___r_single_quote] = ACTIONS(2900), - }, - [1155] = { - [sym_line_comment] = STATE(1155), - [sym_block_comment] = STATE(1155), - [sym_identifier] = ACTIONS(2868), - [anon_sym_LF] = ACTIONS(2868), - [anon_sym_CR] = ACTIONS(2868), - [anon_sym_CR_LF] = ACTIONS(2868), - [anon_sym_SLASH_SLASH] = ACTIONS(497), - [anon_sym_SLASH_STAR] = ACTIONS(499), - [anon_sym_SEMI] = ACTIONS(2868), - [anon_sym_DOT] = ACTIONS(2868), - [anon_sym_as] = ACTIONS(2868), - [anon_sym_LBRACE] = ACTIONS(2868), - [anon_sym_COMMA] = ACTIONS(2868), - [anon_sym_RBRACE] = ACTIONS(2868), - [anon_sym_LPAREN] = ACTIONS(2868), - [anon_sym_RPAREN] = ACTIONS(2868), - [anon_sym_PIPE] = ACTIONS(2868), - [anon_sym_fn] = ACTIONS(2868), - [anon_sym_PLUS] = ACTIONS(2868), - [anon_sym_DASH] = ACTIONS(2868), - [anon_sym_STAR] = ACTIONS(2868), - [anon_sym_SLASH] = ACTIONS(2868), - [anon_sym_PERCENT] = ACTIONS(2868), - [anon_sym_LT] = ACTIONS(2868), - [anon_sym_GT] = ACTIONS(2868), - [anon_sym_EQ_EQ] = ACTIONS(2868), - [anon_sym_BANG_EQ] = ACTIONS(2868), - [anon_sym_LT_EQ] = ACTIONS(2868), - [anon_sym_GT_EQ] = ACTIONS(2868), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2868), - [anon_sym_LBRACK] = ACTIONS(2866), - [anon_sym_struct] = ACTIONS(2868), - [anon_sym_mut] = ACTIONS(2868), - [anon_sym_PLUS_PLUS] = ACTIONS(2868), - [anon_sym_DASH_DASH] = ACTIONS(2868), - [anon_sym_QMARK] = ACTIONS(2868), - [anon_sym_BANG] = ACTIONS(2868), - [anon_sym_go] = ACTIONS(2868), - [anon_sym_spawn] = ACTIONS(2868), - [anon_sym_json_DOTdecode] = ACTIONS(2868), - [anon_sym_LBRACK2] = ACTIONS(2868), - [anon_sym_TILDE] = ACTIONS(2868), - [anon_sym_CARET] = ACTIONS(2868), - [anon_sym_AMP] = ACTIONS(2868), - [anon_sym_LT_DASH] = ACTIONS(2868), - [anon_sym_LT_LT] = ACTIONS(2868), - [anon_sym_GT_GT] = ACTIONS(2868), - [anon_sym_GT_GT_GT] = ACTIONS(2868), - [anon_sym_AMP_CARET] = ACTIONS(2868), - [anon_sym_AMP_AMP] = ACTIONS(2868), - [anon_sym_PIPE_PIPE] = ACTIONS(2868), - [anon_sym_or] = ACTIONS(2868), - [sym_none] = ACTIONS(2868), - [sym_true] = ACTIONS(2868), - [sym_false] = ACTIONS(2868), - [sym_nil] = ACTIONS(2868), - [anon_sym_QMARK_DOT] = ACTIONS(2868), - [anon_sym_POUND_LBRACK] = ACTIONS(2868), - [anon_sym_if] = ACTIONS(2868), - [anon_sym_DOLLARif] = ACTIONS(2868), - [anon_sym_is] = ACTIONS(2868), - [anon_sym_BANGis] = ACTIONS(2868), - [anon_sym_in] = ACTIONS(2868), - [anon_sym_BANGin] = ACTIONS(2868), - [anon_sym_match] = ACTIONS(2868), - [anon_sym_select] = ACTIONS(2868), - [anon_sym_lock] = ACTIONS(2868), - [anon_sym_rlock] = ACTIONS(2868), - [anon_sym_unsafe] = ACTIONS(2868), - [anon_sym_sql] = ACTIONS(2868), - [sym_int_literal] = ACTIONS(2868), - [sym_float_literal] = ACTIONS(2868), - [sym_rune_literal] = ACTIONS(2868), - [sym_pseudo_compile_time_identifier] = ACTIONS(2868), - [anon_sym_shared] = ACTIONS(2868), - [anon_sym_map_LBRACK] = ACTIONS(2868), - [anon_sym_chan] = ACTIONS(2868), - [anon_sym_thread] = ACTIONS(2868), - [anon_sym_atomic] = ACTIONS(2868), - [sym___double_quote] = ACTIONS(2868), - [sym___single_quote] = ACTIONS(2868), - [sym___c_double_quote] = ACTIONS(2868), - [sym___c_single_quote] = ACTIONS(2868), - [sym___r_double_quote] = ACTIONS(2868), - [sym___r_single_quote] = ACTIONS(2868), + [1195] = { + [sym_line_comment] = STATE(1195), + [sym_block_comment] = STATE(1195), + [sym_reference_expression] = STATE(4433), + [sym_type_reference_expression] = STATE(1899), + [sym_plain_type] = STATE(1940), + [sym__plain_type_without_special] = STATE(2006), + [sym_anon_struct_type] = STATE(2005), + [sym_multi_return_type] = STATE(2006), + [sym_result_type] = STATE(2006), + [sym_option_type] = STATE(2006), + [sym_qualified_type] = STATE(1899), + [sym_fixed_array_type] = STATE(2005), + [sym_array_type] = STATE(2005), + [sym_pointer_type] = STATE(2005), + [sym_wrong_pointer_type] = STATE(2005), + [sym_map_type] = STATE(2005), + [sym_channel_type] = STATE(2005), + [sym_shared_type] = STATE(2005), + [sym_thread_type] = STATE(2005), + [sym_atomic_type] = STATE(2005), + [sym_generic_type] = STATE(2005), + [sym_function_type] = STATE(2005), + [sym_identifier] = ACTIONS(3758), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(585), + [anon_sym_as] = ACTIONS(589), + [anon_sym_LBRACE] = ACTIONS(585), + [anon_sym_COMMA] = ACTIONS(585), + [anon_sym_LPAREN] = ACTIONS(3760), + [anon_sym_EQ] = ACTIONS(589), + [anon_sym_PIPE] = ACTIONS(589), + [anon_sym_fn] = ACTIONS(3762), + [anon_sym_PLUS] = ACTIONS(589), + [anon_sym_DASH] = ACTIONS(589), + [anon_sym_STAR] = ACTIONS(3764), + [anon_sym_SLASH] = ACTIONS(589), + [anon_sym_PERCENT] = ACTIONS(589), + [anon_sym_LT] = ACTIONS(589), + [anon_sym_GT] = ACTIONS(589), + [anon_sym_EQ_EQ] = ACTIONS(585), + [anon_sym_BANG_EQ] = ACTIONS(585), + [anon_sym_LT_EQ] = ACTIONS(585), + [anon_sym_GT_EQ] = ACTIONS(585), + [anon_sym_LBRACK] = ACTIONS(585), + [anon_sym_struct] = ACTIONS(3766), + [anon_sym_COLON] = ACTIONS(585), + [anon_sym_PLUS_PLUS] = ACTIONS(585), + [anon_sym_DASH_DASH] = ACTIONS(585), + [anon_sym_QMARK] = ACTIONS(3768), + [anon_sym_BANG] = ACTIONS(3770), + [anon_sym_LBRACK2] = ACTIONS(3772), + [anon_sym_CARET] = ACTIONS(589), + [anon_sym_AMP] = ACTIONS(3774), + [anon_sym_LT_DASH] = ACTIONS(585), + [anon_sym_LT_LT] = ACTIONS(589), + [anon_sym_GT_GT] = ACTIONS(589), + [anon_sym_GT_GT_GT] = ACTIONS(589), + [anon_sym_AMP_CARET] = ACTIONS(589), + [anon_sym_AMP_AMP] = ACTIONS(585), + [anon_sym_PIPE_PIPE] = ACTIONS(585), + [anon_sym_or] = ACTIONS(589), + [anon_sym_QMARK_DOT] = ACTIONS(585), + [anon_sym_POUND_LBRACK] = ACTIONS(585), + [anon_sym_is] = ACTIONS(589), + [anon_sym_BANGis] = ACTIONS(585), + [anon_sym_in] = ACTIONS(589), + [anon_sym_BANGin] = ACTIONS(585), + [anon_sym_STAR_EQ] = ACTIONS(585), + [anon_sym_SLASH_EQ] = ACTIONS(585), + [anon_sym_PERCENT_EQ] = ACTIONS(585), + [anon_sym_LT_LT_EQ] = ACTIONS(585), + [anon_sym_GT_GT_EQ] = ACTIONS(585), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(585), + [anon_sym_AMP_EQ] = ACTIONS(585), + [anon_sym_AMP_CARET_EQ] = ACTIONS(585), + [anon_sym_PLUS_EQ] = ACTIONS(585), + [anon_sym_DASH_EQ] = ACTIONS(585), + [anon_sym_PIPE_EQ] = ACTIONS(585), + [anon_sym_CARET_EQ] = ACTIONS(585), + [anon_sym_shared] = ACTIONS(3776), + [anon_sym_map_LBRACK] = ACTIONS(3778), + [anon_sym_chan] = ACTIONS(3780), + [anon_sym_thread] = ACTIONS(3782), + [anon_sym_atomic] = ACTIONS(3784), }, - [1156] = { - [sym_line_comment] = STATE(1156), - [sym_block_comment] = STATE(1156), - [sym_identifier] = ACTIONS(2816), - [anon_sym_LF] = ACTIONS(2816), - [anon_sym_CR] = ACTIONS(2816), - [anon_sym_CR_LF] = ACTIONS(2816), - [anon_sym_SLASH_SLASH] = ACTIONS(497), - [anon_sym_SLASH_STAR] = ACTIONS(499), - [anon_sym_SEMI] = ACTIONS(2816), - [anon_sym_DOT] = ACTIONS(2816), - [anon_sym_as] = ACTIONS(2816), - [anon_sym_LBRACE] = ACTIONS(2816), - [anon_sym_COMMA] = ACTIONS(2816), - [anon_sym_RBRACE] = ACTIONS(2816), - [anon_sym_LPAREN] = ACTIONS(2816), - [anon_sym_RPAREN] = ACTIONS(2816), - [anon_sym_PIPE] = ACTIONS(2816), - [anon_sym_fn] = ACTIONS(2816), - [anon_sym_PLUS] = ACTIONS(2816), - [anon_sym_DASH] = ACTIONS(2816), - [anon_sym_STAR] = ACTIONS(2816), - [anon_sym_SLASH] = ACTIONS(2816), - [anon_sym_PERCENT] = ACTIONS(2816), - [anon_sym_LT] = ACTIONS(2816), - [anon_sym_GT] = ACTIONS(2816), - [anon_sym_EQ_EQ] = ACTIONS(2816), - [anon_sym_BANG_EQ] = ACTIONS(2816), - [anon_sym_LT_EQ] = ACTIONS(2816), - [anon_sym_GT_EQ] = ACTIONS(2816), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2816), - [anon_sym_LBRACK] = ACTIONS(2814), - [anon_sym_struct] = ACTIONS(2816), - [anon_sym_mut] = ACTIONS(2816), - [anon_sym_PLUS_PLUS] = ACTIONS(2816), - [anon_sym_DASH_DASH] = ACTIONS(2816), - [anon_sym_QMARK] = ACTIONS(2816), - [anon_sym_BANG] = ACTIONS(2816), - [anon_sym_go] = ACTIONS(2816), - [anon_sym_spawn] = ACTIONS(2816), - [anon_sym_json_DOTdecode] = ACTIONS(2816), - [anon_sym_LBRACK2] = ACTIONS(2816), - [anon_sym_TILDE] = ACTIONS(2816), - [anon_sym_CARET] = ACTIONS(2816), - [anon_sym_AMP] = ACTIONS(2816), - [anon_sym_LT_DASH] = ACTIONS(2816), - [anon_sym_LT_LT] = ACTIONS(2816), - [anon_sym_GT_GT] = ACTIONS(2816), - [anon_sym_GT_GT_GT] = ACTIONS(2816), - [anon_sym_AMP_CARET] = ACTIONS(2816), - [anon_sym_AMP_AMP] = ACTIONS(2816), - [anon_sym_PIPE_PIPE] = ACTIONS(2816), - [anon_sym_or] = ACTIONS(2816), - [sym_none] = ACTIONS(2816), - [sym_true] = ACTIONS(2816), - [sym_false] = ACTIONS(2816), - [sym_nil] = ACTIONS(2816), - [anon_sym_QMARK_DOT] = ACTIONS(2816), - [anon_sym_POUND_LBRACK] = ACTIONS(2816), - [anon_sym_if] = ACTIONS(2816), - [anon_sym_DOLLARif] = ACTIONS(2816), - [anon_sym_is] = ACTIONS(2816), - [anon_sym_BANGis] = ACTIONS(2816), - [anon_sym_in] = ACTIONS(2816), - [anon_sym_BANGin] = ACTIONS(2816), - [anon_sym_match] = ACTIONS(2816), - [anon_sym_select] = ACTIONS(2816), - [anon_sym_lock] = ACTIONS(2816), - [anon_sym_rlock] = ACTIONS(2816), - [anon_sym_unsafe] = ACTIONS(2816), - [anon_sym_sql] = ACTIONS(2816), - [sym_int_literal] = ACTIONS(2816), - [sym_float_literal] = ACTIONS(2816), - [sym_rune_literal] = ACTIONS(2816), - [sym_pseudo_compile_time_identifier] = ACTIONS(2816), - [anon_sym_shared] = ACTIONS(2816), - [anon_sym_map_LBRACK] = ACTIONS(2816), - [anon_sym_chan] = ACTIONS(2816), - [anon_sym_thread] = ACTIONS(2816), - [anon_sym_atomic] = ACTIONS(2816), - [sym___double_quote] = ACTIONS(2816), - [sym___single_quote] = ACTIONS(2816), - [sym___c_double_quote] = ACTIONS(2816), - [sym___c_single_quote] = ACTIONS(2816), - [sym___r_double_quote] = ACTIONS(2816), - [sym___r_single_quote] = ACTIONS(2816), + [1196] = { + [sym_line_comment] = STATE(1196), + [sym_block_comment] = STATE(1196), + [sym_reference_expression] = STATE(4433), + [sym_type_reference_expression] = STATE(1899), + [sym_plain_type] = STATE(2013), + [sym__plain_type_without_special] = STATE(2006), + [sym_anon_struct_type] = STATE(2005), + [sym_multi_return_type] = STATE(2006), + [sym_result_type] = STATE(2006), + [sym_option_type] = STATE(2006), + [sym_qualified_type] = STATE(1899), + [sym_fixed_array_type] = STATE(2005), + [sym_array_type] = STATE(2005), + [sym_pointer_type] = STATE(2005), + [sym_wrong_pointer_type] = STATE(2005), + [sym_map_type] = STATE(2005), + [sym_channel_type] = STATE(2005), + [sym_shared_type] = STATE(2005), + [sym_thread_type] = STATE(2005), + [sym_atomic_type] = STATE(2005), + [sym_generic_type] = STATE(2005), + [sym_function_type] = STATE(2005), + [sym_identifier] = ACTIONS(3758), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(617), + [anon_sym_as] = ACTIONS(619), + [anon_sym_LBRACE] = ACTIONS(617), + [anon_sym_COMMA] = ACTIONS(617), + [anon_sym_LPAREN] = ACTIONS(3760), + [anon_sym_EQ] = ACTIONS(619), + [anon_sym_PIPE] = ACTIONS(619), + [anon_sym_fn] = ACTIONS(3762), + [anon_sym_PLUS] = ACTIONS(619), + [anon_sym_DASH] = ACTIONS(619), + [anon_sym_STAR] = ACTIONS(3764), + [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(3766), + [anon_sym_COLON] = ACTIONS(617), + [anon_sym_PLUS_PLUS] = ACTIONS(617), + [anon_sym_DASH_DASH] = ACTIONS(617), + [anon_sym_QMARK] = ACTIONS(3768), + [anon_sym_BANG] = ACTIONS(3770), + [anon_sym_LBRACK2] = ACTIONS(3772), + [anon_sym_CARET] = ACTIONS(619), + [anon_sym_AMP] = ACTIONS(3774), + [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(3776), + [anon_sym_map_LBRACK] = ACTIONS(3778), + [anon_sym_chan] = ACTIONS(3780), + [anon_sym_thread] = ACTIONS(3782), + [anon_sym_atomic] = ACTIONS(3784), }, - [1157] = { - [sym_line_comment] = STATE(1157), - [sym_block_comment] = STATE(1157), - [sym_reference_expression] = STATE(4495), - [sym_type_reference_expression] = STATE(3541), - [sym_plain_type] = STATE(2391), - [sym__plain_type_without_special] = STATE(2302), - [sym_anon_struct_type] = STATE(2303), - [sym_multi_return_type] = STATE(2302), - [sym_result_type] = STATE(2302), - [sym_option_type] = STATE(2302), - [sym_qualified_type] = STATE(3541), - [sym_fixed_array_type] = STATE(2303), - [sym_array_type] = STATE(2303), - [sym_pointer_type] = STATE(2303), - [sym_wrong_pointer_type] = STATE(2303), - [sym_map_type] = STATE(2303), - [sym_channel_type] = STATE(2303), - [sym_shared_type] = STATE(2303), - [sym_thread_type] = STATE(2303), - [sym_atomic_type] = STATE(2303), - [sym_generic_type] = STATE(2303), - [sym_function_type] = STATE(2303), - [sym_identifier] = ACTIONS(597), + [1197] = { + [sym_line_comment] = STATE(1197), + [sym_block_comment] = STATE(1197), + [sym_reference_expression] = STATE(4433), + [sym_type_reference_expression] = STATE(1899), + [sym_plain_type] = STATE(2023), + [sym__plain_type_without_special] = STATE(2006), + [sym_anon_struct_type] = STATE(2005), + [sym_multi_return_type] = STATE(2006), + [sym_result_type] = STATE(2006), + [sym_option_type] = STATE(2006), + [sym_qualified_type] = STATE(1899), + [sym_fixed_array_type] = STATE(2005), + [sym_array_type] = STATE(2005), + [sym_pointer_type] = STATE(2005), + [sym_wrong_pointer_type] = STATE(2005), + [sym_map_type] = STATE(2005), + [sym_channel_type] = STATE(2005), + [sym_shared_type] = STATE(2005), + [sym_thread_type] = STATE(2005), + [sym_atomic_type] = STATE(2005), + [sym_generic_type] = STATE(2005), + [sym_function_type] = STATE(2005), + [sym_identifier] = ACTIONS(3758), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_SEMI] = ACTIONS(621), [anon_sym_DOT] = ACTIONS(621), [anon_sym_as] = ACTIONS(623), [anon_sym_LBRACE] = ACTIONS(621), [anon_sym_COMMA] = ACTIONS(621), - [anon_sym_LPAREN] = ACTIONS(621), + [anon_sym_LPAREN] = ACTIONS(3760), [anon_sym_EQ] = ACTIONS(623), [anon_sym_PIPE] = ACTIONS(623), - [anon_sym_fn] = ACTIONS(603), + [anon_sym_fn] = ACTIONS(3762), [anon_sym_PLUS] = ACTIONS(623), [anon_sym_DASH] = ACTIONS(623), - [anon_sym_STAR] = ACTIONS(623), + [anon_sym_STAR] = ACTIONS(3764), [anon_sym_SLASH] = ACTIONS(623), [anon_sym_PERCENT] = ACTIONS(623), [anon_sym_LT] = ACTIONS(623), @@ -152594,14 +156120,16 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT_EQ] = ACTIONS(621), [anon_sym_GT_EQ] = ACTIONS(621), [anon_sym_LBRACK] = ACTIONS(621), - [anon_sym_struct] = ACTIONS(607), + [anon_sym_struct] = ACTIONS(3766), + [anon_sym_COLON] = ACTIONS(621), [anon_sym_PLUS_PLUS] = ACTIONS(621), [anon_sym_DASH_DASH] = ACTIONS(621), - [anon_sym_QMARK] = ACTIONS(623), - [anon_sym_BANG] = ACTIONS(623), - [anon_sym_LBRACK2] = ACTIONS(623), + [anon_sym_QMARK] = ACTIONS(3768), + [anon_sym_BANG] = ACTIONS(3770), + [anon_sym_LBRACK2] = ACTIONS(3772), [anon_sym_CARET] = ACTIONS(623), - [anon_sym_AMP] = ACTIONS(623), + [anon_sym_AMP] = ACTIONS(3774), + [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), @@ -152627,103 +156155,537 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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(615), + [anon_sym_shared] = ACTIONS(3776), + [anon_sym_map_LBRACK] = ACTIONS(3778), + [anon_sym_chan] = ACTIONS(3780), + [anon_sym_thread] = ACTIONS(3782), + [anon_sym_atomic] = ACTIONS(3784), + }, + [1198] = { + [sym_line_comment] = STATE(1198), + [sym_block_comment] = STATE(1198), + [sym_identifier] = ACTIONS(2832), + [anon_sym_LF] = ACTIONS(2832), + [anon_sym_CR] = ACTIONS(2832), + [anon_sym_CR_LF] = ACTIONS(2832), + [anon_sym_SLASH_SLASH] = ACTIONS(497), + [anon_sym_SLASH_STAR] = ACTIONS(499), + [anon_sym_SEMI] = ACTIONS(2832), + [anon_sym_DOT] = ACTIONS(2832), + [anon_sym_as] = ACTIONS(2832), + [anon_sym_LBRACE] = ACTIONS(2832), + [anon_sym_COMMA] = ACTIONS(2832), + [anon_sym_RBRACE] = ACTIONS(2832), + [anon_sym_LPAREN] = ACTIONS(2832), + [anon_sym_RPAREN] = ACTIONS(2832), + [anon_sym_PIPE] = ACTIONS(2832), + [anon_sym_fn] = ACTIONS(2832), + [anon_sym_PLUS] = ACTIONS(2832), + [anon_sym_DASH] = ACTIONS(2832), + [anon_sym_STAR] = ACTIONS(2832), + [anon_sym_SLASH] = ACTIONS(2832), + [anon_sym_PERCENT] = ACTIONS(2832), + [anon_sym_LT] = ACTIONS(2832), + [anon_sym_GT] = ACTIONS(2832), + [anon_sym_EQ_EQ] = ACTIONS(2832), + [anon_sym_BANG_EQ] = ACTIONS(2832), + [anon_sym_LT_EQ] = ACTIONS(2832), + [anon_sym_GT_EQ] = ACTIONS(2832), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2832), + [anon_sym_LBRACK] = ACTIONS(2830), + [anon_sym_struct] = ACTIONS(2832), + [anon_sym_mut] = ACTIONS(2832), + [anon_sym_PLUS_PLUS] = ACTIONS(2832), + [anon_sym_DASH_DASH] = ACTIONS(2832), + [anon_sym_QMARK] = ACTIONS(2832), + [anon_sym_BANG] = ACTIONS(2832), + [anon_sym_go] = ACTIONS(2832), + [anon_sym_spawn] = ACTIONS(2832), + [anon_sym_json_DOTdecode] = ACTIONS(2832), + [anon_sym_LBRACK2] = ACTIONS(2832), + [anon_sym_TILDE] = ACTIONS(2832), + [anon_sym_CARET] = ACTIONS(2832), + [anon_sym_AMP] = ACTIONS(2832), + [anon_sym_LT_DASH] = ACTIONS(2832), + [anon_sym_LT_LT] = ACTIONS(2832), + [anon_sym_GT_GT] = ACTIONS(2832), + [anon_sym_GT_GT_GT] = ACTIONS(2832), + [anon_sym_AMP_CARET] = ACTIONS(2832), + [anon_sym_AMP_AMP] = ACTIONS(2832), + [anon_sym_PIPE_PIPE] = ACTIONS(2832), + [anon_sym_or] = ACTIONS(2832), + [sym_none] = ACTIONS(2832), + [sym_true] = ACTIONS(2832), + [sym_false] = ACTIONS(2832), + [sym_nil] = ACTIONS(2832), + [anon_sym_QMARK_DOT] = ACTIONS(2832), + [anon_sym_POUND_LBRACK] = ACTIONS(2832), + [anon_sym_if] = ACTIONS(2832), + [anon_sym_DOLLARif] = ACTIONS(2832), + [anon_sym_is] = ACTIONS(2832), + [anon_sym_BANGis] = ACTIONS(2832), + [anon_sym_in] = ACTIONS(2832), + [anon_sym_BANGin] = ACTIONS(2832), + [anon_sym_match] = ACTIONS(2832), + [anon_sym_select] = ACTIONS(2832), + [anon_sym_lock] = ACTIONS(2832), + [anon_sym_rlock] = ACTIONS(2832), + [anon_sym_unsafe] = ACTIONS(2832), + [anon_sym_sql] = ACTIONS(2832), + [sym_int_literal] = ACTIONS(2832), + [sym_float_literal] = ACTIONS(2832), + [sym_rune_literal] = ACTIONS(2832), + [sym_pseudo_compile_time_identifier] = ACTIONS(2832), + [anon_sym_shared] = ACTIONS(2832), + [anon_sym_map_LBRACK] = ACTIONS(2832), + [anon_sym_chan] = ACTIONS(2832), + [anon_sym_thread] = ACTIONS(2832), + [anon_sym_atomic] = ACTIONS(2832), + [sym___double_quote] = ACTIONS(2832), + [sym___single_quote] = ACTIONS(2832), + [sym___c_double_quote] = ACTIONS(2832), + [sym___c_single_quote] = ACTIONS(2832), + [sym___r_double_quote] = ACTIONS(2832), + [sym___r_single_quote] = ACTIONS(2832), + }, + [1199] = { + [sym_line_comment] = STATE(1199), + [sym_block_comment] = STATE(1199), + [sym_identifier] = ACTIONS(2794), + [anon_sym_LF] = ACTIONS(2794), + [anon_sym_CR] = ACTIONS(2794), + [anon_sym_CR_LF] = ACTIONS(2794), + [anon_sym_SLASH_SLASH] = ACTIONS(497), + [anon_sym_SLASH_STAR] = ACTIONS(499), + [anon_sym_SEMI] = ACTIONS(2794), + [anon_sym_DOT] = ACTIONS(2794), + [anon_sym_as] = ACTIONS(2794), + [anon_sym_LBRACE] = ACTIONS(2794), + [anon_sym_COMMA] = ACTIONS(2794), + [anon_sym_RBRACE] = ACTIONS(2794), + [anon_sym_LPAREN] = ACTIONS(2794), + [anon_sym_RPAREN] = ACTIONS(2794), + [anon_sym_PIPE] = ACTIONS(2794), + [anon_sym_fn] = ACTIONS(2794), + [anon_sym_PLUS] = ACTIONS(2794), + [anon_sym_DASH] = ACTIONS(2794), + [anon_sym_STAR] = ACTIONS(2794), + [anon_sym_SLASH] = ACTIONS(2794), + [anon_sym_PERCENT] = ACTIONS(2794), + [anon_sym_LT] = ACTIONS(2794), + [anon_sym_GT] = ACTIONS(2794), + [anon_sym_EQ_EQ] = ACTIONS(2794), + [anon_sym_BANG_EQ] = ACTIONS(2794), + [anon_sym_LT_EQ] = ACTIONS(2794), + [anon_sym_GT_EQ] = ACTIONS(2794), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2794), + [anon_sym_LBRACK] = ACTIONS(2792), + [anon_sym_struct] = ACTIONS(2794), + [anon_sym_mut] = ACTIONS(2794), + [anon_sym_PLUS_PLUS] = ACTIONS(2794), + [anon_sym_DASH_DASH] = ACTIONS(2794), + [anon_sym_QMARK] = ACTIONS(2794), + [anon_sym_BANG] = ACTIONS(2794), + [anon_sym_go] = ACTIONS(2794), + [anon_sym_spawn] = ACTIONS(2794), + [anon_sym_json_DOTdecode] = ACTIONS(2794), + [anon_sym_LBRACK2] = ACTIONS(2794), + [anon_sym_TILDE] = ACTIONS(2794), + [anon_sym_CARET] = ACTIONS(2794), + [anon_sym_AMP] = ACTIONS(2794), + [anon_sym_LT_DASH] = ACTIONS(2794), + [anon_sym_LT_LT] = ACTIONS(2794), + [anon_sym_GT_GT] = ACTIONS(2794), + [anon_sym_GT_GT_GT] = ACTIONS(2794), + [anon_sym_AMP_CARET] = ACTIONS(2794), + [anon_sym_AMP_AMP] = ACTIONS(2794), + [anon_sym_PIPE_PIPE] = ACTIONS(2794), + [anon_sym_or] = ACTIONS(2794), + [sym_none] = ACTIONS(2794), + [sym_true] = ACTIONS(2794), + [sym_false] = ACTIONS(2794), + [sym_nil] = ACTIONS(2794), + [anon_sym_QMARK_DOT] = ACTIONS(2794), + [anon_sym_POUND_LBRACK] = ACTIONS(2794), + [anon_sym_if] = ACTIONS(2794), + [anon_sym_DOLLARif] = ACTIONS(2794), + [anon_sym_is] = ACTIONS(2794), + [anon_sym_BANGis] = ACTIONS(2794), + [anon_sym_in] = ACTIONS(2794), + [anon_sym_BANGin] = ACTIONS(2794), + [anon_sym_match] = ACTIONS(2794), + [anon_sym_select] = ACTIONS(2794), + [anon_sym_lock] = ACTIONS(2794), + [anon_sym_rlock] = ACTIONS(2794), + [anon_sym_unsafe] = ACTIONS(2794), + [anon_sym_sql] = ACTIONS(2794), + [sym_int_literal] = ACTIONS(2794), + [sym_float_literal] = ACTIONS(2794), + [sym_rune_literal] = ACTIONS(2794), + [sym_pseudo_compile_time_identifier] = ACTIONS(2794), + [anon_sym_shared] = ACTIONS(2794), + [anon_sym_map_LBRACK] = ACTIONS(2794), + [anon_sym_chan] = ACTIONS(2794), + [anon_sym_thread] = ACTIONS(2794), + [anon_sym_atomic] = ACTIONS(2794), + [sym___double_quote] = ACTIONS(2794), + [sym___single_quote] = ACTIONS(2794), + [sym___c_double_quote] = ACTIONS(2794), + [sym___c_single_quote] = ACTIONS(2794), + [sym___r_double_quote] = ACTIONS(2794), + [sym___r_single_quote] = ACTIONS(2794), + }, + [1200] = { + [sym_line_comment] = STATE(1200), + [sym_block_comment] = STATE(1200), + [sym_identifier] = ACTIONS(2740), + [anon_sym_LF] = ACTIONS(2740), + [anon_sym_CR] = ACTIONS(2740), + [anon_sym_CR_LF] = ACTIONS(2740), + [anon_sym_SLASH_SLASH] = ACTIONS(497), + [anon_sym_SLASH_STAR] = ACTIONS(499), + [anon_sym_SEMI] = ACTIONS(2740), + [anon_sym_DOT] = ACTIONS(2740), + [anon_sym_as] = ACTIONS(2740), + [anon_sym_LBRACE] = ACTIONS(2740), + [anon_sym_COMMA] = ACTIONS(2740), + [anon_sym_RBRACE] = ACTIONS(2740), + [anon_sym_LPAREN] = ACTIONS(2740), + [anon_sym_RPAREN] = ACTIONS(2740), + [anon_sym_PIPE] = ACTIONS(2740), + [anon_sym_fn] = ACTIONS(2740), + [anon_sym_PLUS] = ACTIONS(2740), + [anon_sym_DASH] = ACTIONS(2740), + [anon_sym_STAR] = ACTIONS(2740), + [anon_sym_SLASH] = ACTIONS(2740), + [anon_sym_PERCENT] = ACTIONS(2740), + [anon_sym_LT] = ACTIONS(2740), + [anon_sym_GT] = ACTIONS(2740), + [anon_sym_EQ_EQ] = ACTIONS(2740), + [anon_sym_BANG_EQ] = ACTIONS(2740), + [anon_sym_LT_EQ] = ACTIONS(2740), + [anon_sym_GT_EQ] = ACTIONS(2740), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2740), + [anon_sym_LBRACK] = ACTIONS(2738), + [anon_sym_struct] = ACTIONS(2740), + [anon_sym_mut] = ACTIONS(2740), + [anon_sym_PLUS_PLUS] = ACTIONS(2740), + [anon_sym_DASH_DASH] = ACTIONS(2740), + [anon_sym_QMARK] = ACTIONS(2740), + [anon_sym_BANG] = ACTIONS(2740), + [anon_sym_go] = ACTIONS(2740), + [anon_sym_spawn] = ACTIONS(2740), + [anon_sym_json_DOTdecode] = ACTIONS(2740), + [anon_sym_LBRACK2] = ACTIONS(2740), + [anon_sym_TILDE] = ACTIONS(2740), + [anon_sym_CARET] = ACTIONS(2740), + [anon_sym_AMP] = ACTIONS(2740), + [anon_sym_LT_DASH] = ACTIONS(2740), + [anon_sym_LT_LT] = ACTIONS(2740), + [anon_sym_GT_GT] = ACTIONS(2740), + [anon_sym_GT_GT_GT] = ACTIONS(2740), + [anon_sym_AMP_CARET] = ACTIONS(2740), + [anon_sym_AMP_AMP] = ACTIONS(2740), + [anon_sym_PIPE_PIPE] = ACTIONS(2740), + [anon_sym_or] = ACTIONS(2740), + [sym_none] = ACTIONS(2740), + [sym_true] = ACTIONS(2740), + [sym_false] = ACTIONS(2740), + [sym_nil] = ACTIONS(2740), + [anon_sym_QMARK_DOT] = ACTIONS(2740), + [anon_sym_POUND_LBRACK] = ACTIONS(2740), + [anon_sym_if] = ACTIONS(2740), + [anon_sym_DOLLARif] = ACTIONS(2740), + [anon_sym_is] = ACTIONS(2740), + [anon_sym_BANGis] = ACTIONS(2740), + [anon_sym_in] = ACTIONS(2740), + [anon_sym_BANGin] = ACTIONS(2740), + [anon_sym_match] = ACTIONS(2740), + [anon_sym_select] = ACTIONS(2740), + [anon_sym_lock] = ACTIONS(2740), + [anon_sym_rlock] = ACTIONS(2740), + [anon_sym_unsafe] = ACTIONS(2740), + [anon_sym_sql] = ACTIONS(2740), + [sym_int_literal] = ACTIONS(2740), + [sym_float_literal] = ACTIONS(2740), + [sym_rune_literal] = ACTIONS(2740), + [sym_pseudo_compile_time_identifier] = ACTIONS(2740), + [anon_sym_shared] = ACTIONS(2740), + [anon_sym_map_LBRACK] = ACTIONS(2740), + [anon_sym_chan] = ACTIONS(2740), + [anon_sym_thread] = ACTIONS(2740), + [anon_sym_atomic] = ACTIONS(2740), + [sym___double_quote] = ACTIONS(2740), + [sym___single_quote] = ACTIONS(2740), + [sym___c_double_quote] = ACTIONS(2740), + [sym___c_single_quote] = ACTIONS(2740), + [sym___r_double_quote] = ACTIONS(2740), + [sym___r_single_quote] = ACTIONS(2740), + }, + [1201] = { + [sym_line_comment] = STATE(1201), + [sym_block_comment] = STATE(1201), + [sym_identifier] = ACTIONS(2880), + [anon_sym_LF] = ACTIONS(2880), + [anon_sym_CR] = ACTIONS(2880), + [anon_sym_CR_LF] = ACTIONS(2880), + [anon_sym_SLASH_SLASH] = ACTIONS(497), + [anon_sym_SLASH_STAR] = ACTIONS(499), + [anon_sym_SEMI] = ACTIONS(2880), + [anon_sym_DOT] = ACTIONS(2880), + [anon_sym_as] = ACTIONS(2880), + [anon_sym_LBRACE] = ACTIONS(2880), + [anon_sym_COMMA] = ACTIONS(2880), + [anon_sym_RBRACE] = ACTIONS(2880), + [anon_sym_LPAREN] = ACTIONS(2880), + [anon_sym_RPAREN] = ACTIONS(2880), + [anon_sym_PIPE] = ACTIONS(2880), + [anon_sym_fn] = ACTIONS(2880), + [anon_sym_PLUS] = ACTIONS(2880), + [anon_sym_DASH] = ACTIONS(2880), + [anon_sym_STAR] = ACTIONS(2880), + [anon_sym_SLASH] = ACTIONS(2880), + [anon_sym_PERCENT] = ACTIONS(2880), + [anon_sym_LT] = ACTIONS(2880), + [anon_sym_GT] = ACTIONS(2880), + [anon_sym_EQ_EQ] = ACTIONS(2880), + [anon_sym_BANG_EQ] = ACTIONS(2880), + [anon_sym_LT_EQ] = ACTIONS(2880), + [anon_sym_GT_EQ] = ACTIONS(2880), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2880), + [anon_sym_LBRACK] = ACTIONS(2878), + [anon_sym_struct] = ACTIONS(2880), + [anon_sym_mut] = ACTIONS(2880), + [anon_sym_PLUS_PLUS] = ACTIONS(2880), + [anon_sym_DASH_DASH] = ACTIONS(2880), + [anon_sym_QMARK] = ACTIONS(2880), + [anon_sym_BANG] = ACTIONS(2880), + [anon_sym_go] = ACTIONS(2880), + [anon_sym_spawn] = ACTIONS(2880), + [anon_sym_json_DOTdecode] = ACTIONS(2880), + [anon_sym_LBRACK2] = ACTIONS(2880), + [anon_sym_TILDE] = ACTIONS(2880), + [anon_sym_CARET] = ACTIONS(2880), + [anon_sym_AMP] = ACTIONS(2880), + [anon_sym_LT_DASH] = ACTIONS(2880), + [anon_sym_LT_LT] = ACTIONS(2880), + [anon_sym_GT_GT] = ACTIONS(2880), + [anon_sym_GT_GT_GT] = ACTIONS(2880), + [anon_sym_AMP_CARET] = ACTIONS(2880), + [anon_sym_AMP_AMP] = ACTIONS(2880), + [anon_sym_PIPE_PIPE] = ACTIONS(2880), + [anon_sym_or] = ACTIONS(2880), + [sym_none] = ACTIONS(2880), + [sym_true] = ACTIONS(2880), + [sym_false] = ACTIONS(2880), + [sym_nil] = ACTIONS(2880), + [anon_sym_QMARK_DOT] = ACTIONS(2880), + [anon_sym_POUND_LBRACK] = ACTIONS(2880), + [anon_sym_if] = ACTIONS(2880), + [anon_sym_DOLLARif] = ACTIONS(2880), + [anon_sym_is] = ACTIONS(2880), + [anon_sym_BANGis] = ACTIONS(2880), + [anon_sym_in] = ACTIONS(2880), + [anon_sym_BANGin] = ACTIONS(2880), + [anon_sym_match] = ACTIONS(2880), + [anon_sym_select] = ACTIONS(2880), + [anon_sym_lock] = ACTIONS(2880), + [anon_sym_rlock] = ACTIONS(2880), + [anon_sym_unsafe] = ACTIONS(2880), + [anon_sym_sql] = ACTIONS(2880), + [sym_int_literal] = ACTIONS(2880), + [sym_float_literal] = ACTIONS(2880), + [sym_rune_literal] = ACTIONS(2880), + [sym_pseudo_compile_time_identifier] = ACTIONS(2880), + [anon_sym_shared] = ACTIONS(2880), + [anon_sym_map_LBRACK] = ACTIONS(2880), + [anon_sym_chan] = ACTIONS(2880), + [anon_sym_thread] = ACTIONS(2880), + [anon_sym_atomic] = ACTIONS(2880), + [sym___double_quote] = ACTIONS(2880), + [sym___single_quote] = ACTIONS(2880), + [sym___c_double_quote] = ACTIONS(2880), + [sym___c_single_quote] = ACTIONS(2880), + [sym___r_double_quote] = ACTIONS(2880), + [sym___r_single_quote] = ACTIONS(2880), + }, + [1202] = { + [sym_line_comment] = STATE(1202), + [sym_block_comment] = STATE(1202), + [sym_reference_expression] = STATE(4498), + [sym_type_reference_expression] = STATE(3460), + [sym_plain_type] = STATE(2345), + [sym__plain_type_without_special] = STATE(2360), + [sym_anon_struct_type] = STATE(2362), + [sym_multi_return_type] = STATE(2360), + [sym_result_type] = STATE(2360), + [sym_option_type] = STATE(2360), + [sym_qualified_type] = STATE(3460), + [sym_fixed_array_type] = STATE(2362), + [sym_array_type] = STATE(2362), + [sym_pointer_type] = STATE(2362), + [sym_wrong_pointer_type] = STATE(2362), + [sym_map_type] = STATE(2362), + [sym_channel_type] = STATE(2362), + [sym_shared_type] = STATE(2362), + [sym_thread_type] = STATE(2362), + [sym_atomic_type] = STATE(2362), + [sym_generic_type] = STATE(2362), + [sym_function_type] = STATE(2362), + [sym_identifier] = ACTIONS(565), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(625), + [anon_sym_as] = ACTIONS(627), + [anon_sym_LBRACE] = ACTIONS(625), + [anon_sym_COMMA] = ACTIONS(625), + [anon_sym_LPAREN] = ACTIONS(625), + [anon_sym_EQ] = ACTIONS(627), + [anon_sym_PIPE] = ACTIONS(627), + [anon_sym_fn] = ACTIONS(571), + [anon_sym_PLUS] = ACTIONS(627), + [anon_sym_DASH] = ACTIONS(627), + [anon_sym_STAR] = ACTIONS(627), + [anon_sym_SLASH] = ACTIONS(627), + [anon_sym_PERCENT] = ACTIONS(627), + [anon_sym_LT] = ACTIONS(627), + [anon_sym_GT] = ACTIONS(627), + [anon_sym_EQ_EQ] = ACTIONS(625), + [anon_sym_BANG_EQ] = ACTIONS(625), + [anon_sym_LT_EQ] = ACTIONS(625), + [anon_sym_GT_EQ] = ACTIONS(625), + [anon_sym_LBRACK] = ACTIONS(625), + [anon_sym_struct] = ACTIONS(575), + [anon_sym_COLON] = ACTIONS(625), + [anon_sym_PLUS_PLUS] = ACTIONS(625), + [anon_sym_DASH_DASH] = ACTIONS(625), + [anon_sym_QMARK] = ACTIONS(627), + [anon_sym_BANG] = ACTIONS(627), + [anon_sym_LBRACK2] = ACTIONS(627), + [anon_sym_CARET] = ACTIONS(627), + [anon_sym_AMP] = ACTIONS(627), + [anon_sym_LT_DASH] = ACTIONS(625), + [anon_sym_LT_LT] = ACTIONS(627), + [anon_sym_GT_GT] = ACTIONS(627), + [anon_sym_GT_GT_GT] = ACTIONS(627), + [anon_sym_AMP_CARET] = ACTIONS(627), + [anon_sym_AMP_AMP] = ACTIONS(625), + [anon_sym_PIPE_PIPE] = ACTIONS(625), + [anon_sym_or] = ACTIONS(627), + [anon_sym_QMARK_DOT] = ACTIONS(625), + [anon_sym_POUND_LBRACK] = ACTIONS(625), + [anon_sym_is] = ACTIONS(627), + [anon_sym_BANGis] = ACTIONS(625), + [anon_sym_in] = ACTIONS(627), + [anon_sym_BANGin] = ACTIONS(625), + [anon_sym_STAR_EQ] = ACTIONS(625), + [anon_sym_SLASH_EQ] = ACTIONS(625), + [anon_sym_PERCENT_EQ] = ACTIONS(625), + [anon_sym_LT_LT_EQ] = ACTIONS(625), + [anon_sym_GT_GT_EQ] = ACTIONS(625), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(625), + [anon_sym_AMP_EQ] = ACTIONS(625), + [anon_sym_AMP_CARET_EQ] = ACTIONS(625), + [anon_sym_PLUS_EQ] = ACTIONS(625), + [anon_sym_DASH_EQ] = ACTIONS(625), + [anon_sym_PIPE_EQ] = ACTIONS(625), + [anon_sym_CARET_EQ] = ACTIONS(625), + [anon_sym_shared] = ACTIONS(583), [anon_sym_map_LBRACK] = ACTIONS(85), [anon_sym_chan] = ACTIONS(87), [anon_sym_thread] = ACTIONS(89), [anon_sym_atomic] = ACTIONS(91), }, - [1158] = { - [sym_line_comment] = STATE(1158), - [sym_block_comment] = STATE(1158), - [sym_identifier] = ACTIONS(2183), - [anon_sym_LF] = ACTIONS(2183), - [anon_sym_CR] = ACTIONS(2183), - [anon_sym_CR_LF] = ACTIONS(2183), + [1203] = { + [sym_line_comment] = STATE(1203), + [sym_block_comment] = STATE(1203), + [sym_identifier] = ACTIONS(2840), + [anon_sym_LF] = ACTIONS(2840), + [anon_sym_CR] = ACTIONS(2840), + [anon_sym_CR_LF] = ACTIONS(2840), [anon_sym_SLASH_SLASH] = ACTIONS(497), [anon_sym_SLASH_STAR] = ACTIONS(499), - [anon_sym_SEMI] = ACTIONS(2183), - [anon_sym_DOT] = ACTIONS(2183), - [anon_sym_as] = ACTIONS(2183), - [anon_sym_LBRACE] = ACTIONS(2183), - [anon_sym_COMMA] = ACTIONS(2183), - [anon_sym_RBRACE] = ACTIONS(2183), - [anon_sym_LPAREN] = ACTIONS(2183), - [anon_sym_RPAREN] = ACTIONS(2183), - [anon_sym_PIPE] = ACTIONS(2183), - [anon_sym_fn] = ACTIONS(2183), - [anon_sym_PLUS] = ACTIONS(2183), - [anon_sym_DASH] = ACTIONS(2183), - [anon_sym_STAR] = ACTIONS(2183), - [anon_sym_SLASH] = ACTIONS(2183), - [anon_sym_PERCENT] = ACTIONS(2183), - [anon_sym_LT] = ACTIONS(2183), - [anon_sym_GT] = ACTIONS(2183), - [anon_sym_EQ_EQ] = ACTIONS(2183), - [anon_sym_BANG_EQ] = ACTIONS(2183), - [anon_sym_LT_EQ] = ACTIONS(2183), - [anon_sym_GT_EQ] = ACTIONS(2183), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2183), - [anon_sym_LBRACK] = ACTIONS(2181), - [anon_sym_struct] = ACTIONS(2183), - [anon_sym_mut] = ACTIONS(2183), - [anon_sym_PLUS_PLUS] = ACTIONS(2183), - [anon_sym_DASH_DASH] = ACTIONS(2183), - [anon_sym_QMARK] = ACTIONS(2183), - [anon_sym_BANG] = ACTIONS(2183), - [anon_sym_go] = ACTIONS(2183), - [anon_sym_spawn] = ACTIONS(2183), - [anon_sym_json_DOTdecode] = ACTIONS(2183), - [anon_sym_LBRACK2] = ACTIONS(2183), - [anon_sym_TILDE] = ACTIONS(2183), - [anon_sym_CARET] = ACTIONS(2183), - [anon_sym_AMP] = ACTIONS(2183), - [anon_sym_LT_DASH] = ACTIONS(2183), - [anon_sym_LT_LT] = ACTIONS(2183), - [anon_sym_GT_GT] = ACTIONS(2183), - [anon_sym_GT_GT_GT] = ACTIONS(2183), - [anon_sym_AMP_CARET] = ACTIONS(2183), - [anon_sym_AMP_AMP] = ACTIONS(2183), - [anon_sym_PIPE_PIPE] = ACTIONS(2183), - [anon_sym_or] = ACTIONS(2183), - [sym_none] = ACTIONS(2183), - [sym_true] = ACTIONS(2183), - [sym_false] = ACTIONS(2183), - [sym_nil] = ACTIONS(2183), - [anon_sym_QMARK_DOT] = ACTIONS(2183), - [anon_sym_POUND_LBRACK] = ACTIONS(2183), - [anon_sym_if] = ACTIONS(2183), - [anon_sym_DOLLARif] = ACTIONS(2183), - [anon_sym_is] = ACTIONS(2183), - [anon_sym_BANGis] = ACTIONS(2183), - [anon_sym_in] = ACTIONS(2183), - [anon_sym_BANGin] = ACTIONS(2183), - [anon_sym_match] = ACTIONS(2183), - [anon_sym_select] = ACTIONS(2183), - [anon_sym_lock] = ACTIONS(2183), - [anon_sym_rlock] = ACTIONS(2183), - [anon_sym_unsafe] = ACTIONS(2183), - [anon_sym_sql] = ACTIONS(2183), - [sym_int_literal] = ACTIONS(2183), - [sym_float_literal] = ACTIONS(2183), - [sym_rune_literal] = ACTIONS(2183), - [sym_pseudo_compile_time_identifier] = ACTIONS(2183), - [anon_sym_shared] = ACTIONS(2183), - [anon_sym_map_LBRACK] = ACTIONS(2183), - [anon_sym_chan] = ACTIONS(2183), - [anon_sym_thread] = ACTIONS(2183), - [anon_sym_atomic] = ACTIONS(2183), - [sym___double_quote] = ACTIONS(2183), - [sym___single_quote] = ACTIONS(2183), - [sym___c_double_quote] = ACTIONS(2183), - [sym___c_single_quote] = ACTIONS(2183), - [sym___r_double_quote] = ACTIONS(2183), - [sym___r_single_quote] = ACTIONS(2183), + [anon_sym_SEMI] = ACTIONS(2840), + [anon_sym_DOT] = ACTIONS(2840), + [anon_sym_as] = ACTIONS(2840), + [anon_sym_LBRACE] = ACTIONS(2840), + [anon_sym_COMMA] = ACTIONS(2840), + [anon_sym_RBRACE] = ACTIONS(2840), + [anon_sym_LPAREN] = ACTIONS(2840), + [anon_sym_RPAREN] = ACTIONS(2840), + [anon_sym_PIPE] = ACTIONS(2840), + [anon_sym_fn] = ACTIONS(2840), + [anon_sym_PLUS] = ACTIONS(2840), + [anon_sym_DASH] = ACTIONS(2840), + [anon_sym_STAR] = ACTIONS(2840), + [anon_sym_SLASH] = ACTIONS(2840), + [anon_sym_PERCENT] = ACTIONS(2840), + [anon_sym_LT] = ACTIONS(2840), + [anon_sym_GT] = ACTIONS(2840), + [anon_sym_EQ_EQ] = ACTIONS(2840), + [anon_sym_BANG_EQ] = ACTIONS(2840), + [anon_sym_LT_EQ] = ACTIONS(2840), + [anon_sym_GT_EQ] = ACTIONS(2840), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2840), + [anon_sym_LBRACK] = ACTIONS(2838), + [anon_sym_struct] = ACTIONS(2840), + [anon_sym_mut] = ACTIONS(2840), + [anon_sym_PLUS_PLUS] = ACTIONS(2840), + [anon_sym_DASH_DASH] = ACTIONS(2840), + [anon_sym_QMARK] = ACTIONS(2840), + [anon_sym_BANG] = ACTIONS(2840), + [anon_sym_go] = ACTIONS(2840), + [anon_sym_spawn] = ACTIONS(2840), + [anon_sym_json_DOTdecode] = ACTIONS(2840), + [anon_sym_LBRACK2] = ACTIONS(2840), + [anon_sym_TILDE] = ACTIONS(2840), + [anon_sym_CARET] = ACTIONS(2840), + [anon_sym_AMP] = ACTIONS(2840), + [anon_sym_LT_DASH] = ACTIONS(2840), + [anon_sym_LT_LT] = ACTIONS(2840), + [anon_sym_GT_GT] = ACTIONS(2840), + [anon_sym_GT_GT_GT] = ACTIONS(2840), + [anon_sym_AMP_CARET] = ACTIONS(2840), + [anon_sym_AMP_AMP] = ACTIONS(2840), + [anon_sym_PIPE_PIPE] = ACTIONS(2840), + [anon_sym_or] = ACTIONS(2840), + [sym_none] = ACTIONS(2840), + [sym_true] = ACTIONS(2840), + [sym_false] = ACTIONS(2840), + [sym_nil] = ACTIONS(2840), + [anon_sym_QMARK_DOT] = ACTIONS(2840), + [anon_sym_POUND_LBRACK] = ACTIONS(2840), + [anon_sym_if] = ACTIONS(2840), + [anon_sym_DOLLARif] = ACTIONS(2840), + [anon_sym_is] = ACTIONS(2840), + [anon_sym_BANGis] = ACTIONS(2840), + [anon_sym_in] = ACTIONS(2840), + [anon_sym_BANGin] = ACTIONS(2840), + [anon_sym_match] = ACTIONS(2840), + [anon_sym_select] = ACTIONS(2840), + [anon_sym_lock] = ACTIONS(2840), + [anon_sym_rlock] = ACTIONS(2840), + [anon_sym_unsafe] = ACTIONS(2840), + [anon_sym_sql] = ACTIONS(2840), + [sym_int_literal] = ACTIONS(2840), + [sym_float_literal] = ACTIONS(2840), + [sym_rune_literal] = ACTIONS(2840), + [sym_pseudo_compile_time_identifier] = ACTIONS(2840), + [anon_sym_shared] = ACTIONS(2840), + [anon_sym_map_LBRACK] = ACTIONS(2840), + [anon_sym_chan] = ACTIONS(2840), + [anon_sym_thread] = ACTIONS(2840), + [anon_sym_atomic] = ACTIONS(2840), + [sym___double_quote] = ACTIONS(2840), + [sym___single_quote] = ACTIONS(2840), + [sym___c_double_quote] = ACTIONS(2840), + [sym___c_single_quote] = ACTIONS(2840), + [sym___r_double_quote] = ACTIONS(2840), + [sym___r_single_quote] = ACTIONS(2840), }, - [1159] = { - [sym_line_comment] = STATE(1159), - [sym_block_comment] = STATE(1159), + [1204] = { + [sym_line_comment] = STATE(1204), + [sym_block_comment] = STATE(1204), [sym_identifier] = ACTIONS(2782), [anon_sym_LF] = ACTIONS(2782), [anon_sym_CR] = ACTIONS(2782), @@ -152808,966 +156770,183 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym___r_double_quote] = ACTIONS(2782), [sym___r_single_quote] = ACTIONS(2782), }, - [1160] = { - [sym_line_comment] = STATE(1160), - [sym_block_comment] = STATE(1160), - [sym_identifier] = ACTIONS(2757), - [anon_sym_LF] = ACTIONS(2757), - [anon_sym_CR] = ACTIONS(2757), - [anon_sym_CR_LF] = ACTIONS(2757), - [anon_sym_SLASH_SLASH] = ACTIONS(497), - [anon_sym_SLASH_STAR] = ACTIONS(499), - [anon_sym_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), - }, - [1161] = { - [sym_line_comment] = STATE(1161), - [sym_block_comment] = STATE(1161), - [sym_identifier] = ACTIONS(2753), - [anon_sym_LF] = ACTIONS(2753), - [anon_sym_CR] = ACTIONS(2753), - [anon_sym_CR_LF] = ACTIONS(2753), - [anon_sym_SLASH_SLASH] = ACTIONS(497), - [anon_sym_SLASH_STAR] = ACTIONS(499), - [anon_sym_SEMI] = ACTIONS(2753), - [anon_sym_DOT] = ACTIONS(2753), - [anon_sym_as] = ACTIONS(2753), - [anon_sym_LBRACE] = ACTIONS(2753), - [anon_sym_COMMA] = ACTIONS(2753), - [anon_sym_RBRACE] = ACTIONS(2753), - [anon_sym_LPAREN] = ACTIONS(2753), - [anon_sym_RPAREN] = ACTIONS(2753), - [anon_sym_PIPE] = ACTIONS(2753), - [anon_sym_fn] = ACTIONS(2753), - [anon_sym_PLUS] = ACTIONS(2753), - [anon_sym_DASH] = ACTIONS(2753), - [anon_sym_STAR] = ACTIONS(2753), - [anon_sym_SLASH] = ACTIONS(2753), - [anon_sym_PERCENT] = ACTIONS(2753), - [anon_sym_LT] = ACTIONS(2753), - [anon_sym_GT] = ACTIONS(2753), - [anon_sym_EQ_EQ] = ACTIONS(2753), - [anon_sym_BANG_EQ] = ACTIONS(2753), - [anon_sym_LT_EQ] = ACTIONS(2753), - [anon_sym_GT_EQ] = ACTIONS(2753), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2753), - [anon_sym_LBRACK] = ACTIONS(2751), - [anon_sym_struct] = ACTIONS(2753), - [anon_sym_mut] = ACTIONS(2753), - [anon_sym_PLUS_PLUS] = ACTIONS(2753), - [anon_sym_DASH_DASH] = ACTIONS(2753), - [anon_sym_QMARK] = ACTIONS(2753), - [anon_sym_BANG] = ACTIONS(2753), - [anon_sym_go] = ACTIONS(2753), - [anon_sym_spawn] = ACTIONS(2753), - [anon_sym_json_DOTdecode] = ACTIONS(2753), - [anon_sym_LBRACK2] = ACTIONS(2753), - [anon_sym_TILDE] = ACTIONS(2753), - [anon_sym_CARET] = ACTIONS(2753), - [anon_sym_AMP] = ACTIONS(2753), - [anon_sym_LT_DASH] = ACTIONS(2753), - [anon_sym_LT_LT] = ACTIONS(2753), - [anon_sym_GT_GT] = ACTIONS(2753), - [anon_sym_GT_GT_GT] = ACTIONS(2753), - [anon_sym_AMP_CARET] = ACTIONS(2753), - [anon_sym_AMP_AMP] = ACTIONS(2753), - [anon_sym_PIPE_PIPE] = ACTIONS(2753), - [anon_sym_or] = ACTIONS(2753), - [sym_none] = ACTIONS(2753), - [sym_true] = ACTIONS(2753), - [sym_false] = ACTIONS(2753), - [sym_nil] = ACTIONS(2753), - [anon_sym_QMARK_DOT] = ACTIONS(2753), - [anon_sym_POUND_LBRACK] = ACTIONS(2753), - [anon_sym_if] = ACTIONS(2753), - [anon_sym_DOLLARif] = ACTIONS(2753), - [anon_sym_is] = ACTIONS(2753), - [anon_sym_BANGis] = ACTIONS(2753), - [anon_sym_in] = ACTIONS(2753), - [anon_sym_BANGin] = ACTIONS(2753), - [anon_sym_match] = ACTIONS(2753), - [anon_sym_select] = ACTIONS(2753), - [anon_sym_lock] = ACTIONS(2753), - [anon_sym_rlock] = ACTIONS(2753), - [anon_sym_unsafe] = ACTIONS(2753), - [anon_sym_sql] = ACTIONS(2753), - [sym_int_literal] = ACTIONS(2753), - [sym_float_literal] = ACTIONS(2753), - [sym_rune_literal] = ACTIONS(2753), - [sym_pseudo_compile_time_identifier] = ACTIONS(2753), - [anon_sym_shared] = ACTIONS(2753), - [anon_sym_map_LBRACK] = ACTIONS(2753), - [anon_sym_chan] = ACTIONS(2753), - [anon_sym_thread] = ACTIONS(2753), - [anon_sym_atomic] = ACTIONS(2753), - [sym___double_quote] = ACTIONS(2753), - [sym___single_quote] = ACTIONS(2753), - [sym___c_double_quote] = ACTIONS(2753), - [sym___c_single_quote] = ACTIONS(2753), - [sym___r_double_quote] = ACTIONS(2753), - [sym___r_single_quote] = ACTIONS(2753), - }, - [1162] = { - [sym_line_comment] = STATE(1162), - [sym_block_comment] = STATE(1162), - [sym_identifier] = ACTIONS(2739), - [anon_sym_LF] = ACTIONS(2739), - [anon_sym_CR] = ACTIONS(2739), - [anon_sym_CR_LF] = ACTIONS(2739), - [anon_sym_SLASH_SLASH] = ACTIONS(497), - [anon_sym_SLASH_STAR] = ACTIONS(499), - [anon_sym_SEMI] = ACTIONS(2739), - [anon_sym_DOT] = ACTIONS(2739), - [anon_sym_as] = ACTIONS(2739), - [anon_sym_LBRACE] = ACTIONS(2739), - [anon_sym_COMMA] = ACTIONS(2739), - [anon_sym_RBRACE] = ACTIONS(2739), - [anon_sym_LPAREN] = ACTIONS(2739), - [anon_sym_RPAREN] = ACTIONS(2739), - [anon_sym_PIPE] = ACTIONS(2739), - [anon_sym_fn] = ACTIONS(2739), - [anon_sym_PLUS] = ACTIONS(2739), - [anon_sym_DASH] = ACTIONS(2739), - [anon_sym_STAR] = ACTIONS(2739), - [anon_sym_SLASH] = ACTIONS(2739), - [anon_sym_PERCENT] = ACTIONS(2739), - [anon_sym_LT] = ACTIONS(2739), - [anon_sym_GT] = ACTIONS(2739), - [anon_sym_EQ_EQ] = ACTIONS(2739), - [anon_sym_BANG_EQ] = ACTIONS(2739), - [anon_sym_LT_EQ] = ACTIONS(2739), - [anon_sym_GT_EQ] = ACTIONS(2739), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2739), - [anon_sym_LBRACK] = ACTIONS(2737), - [anon_sym_struct] = ACTIONS(2739), - [anon_sym_mut] = ACTIONS(2739), - [anon_sym_PLUS_PLUS] = ACTIONS(2739), - [anon_sym_DASH_DASH] = ACTIONS(2739), - [anon_sym_QMARK] = ACTIONS(2739), - [anon_sym_BANG] = ACTIONS(2739), - [anon_sym_go] = ACTIONS(2739), - [anon_sym_spawn] = ACTIONS(2739), - [anon_sym_json_DOTdecode] = ACTIONS(2739), - [anon_sym_LBRACK2] = ACTIONS(2739), - [anon_sym_TILDE] = ACTIONS(2739), - [anon_sym_CARET] = ACTIONS(2739), - [anon_sym_AMP] = ACTIONS(2739), - [anon_sym_LT_DASH] = ACTIONS(2739), - [anon_sym_LT_LT] = ACTIONS(2739), - [anon_sym_GT_GT] = ACTIONS(2739), - [anon_sym_GT_GT_GT] = ACTIONS(2739), - [anon_sym_AMP_CARET] = ACTIONS(2739), - [anon_sym_AMP_AMP] = ACTIONS(2739), - [anon_sym_PIPE_PIPE] = ACTIONS(2739), - [anon_sym_or] = ACTIONS(2739), - [sym_none] = ACTIONS(2739), - [sym_true] = ACTIONS(2739), - [sym_false] = ACTIONS(2739), - [sym_nil] = ACTIONS(2739), - [anon_sym_QMARK_DOT] = ACTIONS(2739), - [anon_sym_POUND_LBRACK] = ACTIONS(2739), - [anon_sym_if] = ACTIONS(2739), - [anon_sym_DOLLARif] = ACTIONS(2739), - [anon_sym_is] = ACTIONS(2739), - [anon_sym_BANGis] = ACTIONS(2739), - [anon_sym_in] = ACTIONS(2739), - [anon_sym_BANGin] = ACTIONS(2739), - [anon_sym_match] = ACTIONS(2739), - [anon_sym_select] = ACTIONS(2739), - [anon_sym_lock] = ACTIONS(2739), - [anon_sym_rlock] = ACTIONS(2739), - [anon_sym_unsafe] = ACTIONS(2739), - [anon_sym_sql] = ACTIONS(2739), - [sym_int_literal] = ACTIONS(2739), - [sym_float_literal] = ACTIONS(2739), - [sym_rune_literal] = ACTIONS(2739), - [sym_pseudo_compile_time_identifier] = ACTIONS(2739), - [anon_sym_shared] = ACTIONS(2739), - [anon_sym_map_LBRACK] = ACTIONS(2739), - [anon_sym_chan] = ACTIONS(2739), - [anon_sym_thread] = ACTIONS(2739), - [anon_sym_atomic] = ACTIONS(2739), - [sym___double_quote] = ACTIONS(2739), - [sym___single_quote] = ACTIONS(2739), - [sym___c_double_quote] = ACTIONS(2739), - [sym___c_single_quote] = ACTIONS(2739), - [sym___r_double_quote] = ACTIONS(2739), - [sym___r_single_quote] = ACTIONS(2739), - }, - [1163] = { - [sym_line_comment] = STATE(1163), - [sym_block_comment] = STATE(1163), - [sym_identifier] = ACTIONS(3046), - [anon_sym_LF] = ACTIONS(3046), - [anon_sym_CR] = ACTIONS(3046), - [anon_sym_CR_LF] = ACTIONS(3046), - [anon_sym_SLASH_SLASH] = ACTIONS(497), - [anon_sym_SLASH_STAR] = ACTIONS(499), - [anon_sym_SEMI] = ACTIONS(3046), - [anon_sym_DOT] = ACTIONS(3046), - [anon_sym_as] = ACTIONS(3046), - [anon_sym_LBRACE] = ACTIONS(3046), - [anon_sym_COMMA] = ACTIONS(3046), - [anon_sym_RBRACE] = ACTIONS(3046), - [anon_sym_LPAREN] = ACTIONS(3046), - [anon_sym_RPAREN] = ACTIONS(3046), - [anon_sym_PIPE] = ACTIONS(3046), - [anon_sym_fn] = ACTIONS(3046), - [anon_sym_PLUS] = ACTIONS(3046), - [anon_sym_DASH] = ACTIONS(3046), - [anon_sym_STAR] = ACTIONS(3046), - [anon_sym_SLASH] = ACTIONS(3046), - [anon_sym_PERCENT] = ACTIONS(3046), - [anon_sym_LT] = ACTIONS(3046), - [anon_sym_GT] = ACTIONS(3046), - [anon_sym_EQ_EQ] = ACTIONS(3046), - [anon_sym_BANG_EQ] = ACTIONS(3046), - [anon_sym_LT_EQ] = ACTIONS(3046), - [anon_sym_GT_EQ] = ACTIONS(3046), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3046), - [anon_sym_LBRACK] = ACTIONS(3044), - [anon_sym_struct] = ACTIONS(3046), - [anon_sym_mut] = ACTIONS(3046), - [anon_sym_PLUS_PLUS] = ACTIONS(3046), - [anon_sym_DASH_DASH] = ACTIONS(3046), - [anon_sym_QMARK] = ACTIONS(3046), - [anon_sym_BANG] = ACTIONS(3046), - [anon_sym_go] = ACTIONS(3046), - [anon_sym_spawn] = ACTIONS(3046), - [anon_sym_json_DOTdecode] = ACTIONS(3046), - [anon_sym_LBRACK2] = ACTIONS(3046), - [anon_sym_TILDE] = ACTIONS(3046), - [anon_sym_CARET] = ACTIONS(3046), - [anon_sym_AMP] = ACTIONS(3046), - [anon_sym_LT_DASH] = ACTIONS(3046), - [anon_sym_LT_LT] = ACTIONS(3046), - [anon_sym_GT_GT] = ACTIONS(3046), - [anon_sym_GT_GT_GT] = ACTIONS(3046), - [anon_sym_AMP_CARET] = ACTIONS(3046), - [anon_sym_AMP_AMP] = ACTIONS(3046), - [anon_sym_PIPE_PIPE] = ACTIONS(3046), - [anon_sym_or] = ACTIONS(3046), - [sym_none] = ACTIONS(3046), - [sym_true] = ACTIONS(3046), - [sym_false] = ACTIONS(3046), - [sym_nil] = ACTIONS(3046), - [anon_sym_QMARK_DOT] = ACTIONS(3046), - [anon_sym_POUND_LBRACK] = ACTIONS(3046), - [anon_sym_if] = ACTIONS(3046), - [anon_sym_DOLLARif] = ACTIONS(3046), - [anon_sym_is] = ACTIONS(3046), - [anon_sym_BANGis] = ACTIONS(3046), - [anon_sym_in] = ACTIONS(3046), - [anon_sym_BANGin] = ACTIONS(3046), - [anon_sym_match] = ACTIONS(3046), - [anon_sym_select] = ACTIONS(3046), - [anon_sym_lock] = ACTIONS(3046), - [anon_sym_rlock] = ACTIONS(3046), - [anon_sym_unsafe] = ACTIONS(3046), - [anon_sym_sql] = ACTIONS(3046), - [sym_int_literal] = ACTIONS(3046), - [sym_float_literal] = ACTIONS(3046), - [sym_rune_literal] = ACTIONS(3046), - [sym_pseudo_compile_time_identifier] = ACTIONS(3046), - [anon_sym_shared] = ACTIONS(3046), - [anon_sym_map_LBRACK] = ACTIONS(3046), - [anon_sym_chan] = ACTIONS(3046), - [anon_sym_thread] = ACTIONS(3046), - [anon_sym_atomic] = ACTIONS(3046), - [sym___double_quote] = ACTIONS(3046), - [sym___single_quote] = ACTIONS(3046), - [sym___c_double_quote] = ACTIONS(3046), - [sym___c_single_quote] = ACTIONS(3046), - [sym___r_double_quote] = ACTIONS(3046), - [sym___r_single_quote] = ACTIONS(3046), - }, - [1164] = { - [sym_line_comment] = STATE(1164), - [sym_block_comment] = STATE(1164), - [sym_identifier] = ACTIONS(2213), - [anon_sym_LF] = ACTIONS(2213), - [anon_sym_CR] = ACTIONS(2213), - [anon_sym_CR_LF] = ACTIONS(2213), - [anon_sym_SLASH_SLASH] = ACTIONS(497), - [anon_sym_SLASH_STAR] = ACTIONS(499), - [anon_sym_SEMI] = ACTIONS(2213), - [anon_sym_DOT] = ACTIONS(2213), - [anon_sym_as] = ACTIONS(2213), - [anon_sym_LBRACE] = ACTIONS(2213), - [anon_sym_COMMA] = ACTIONS(2213), - [anon_sym_RBRACE] = ACTIONS(2213), - [anon_sym_LPAREN] = ACTIONS(2213), - [anon_sym_RPAREN] = ACTIONS(2213), - [anon_sym_PIPE] = ACTIONS(2213), - [anon_sym_fn] = ACTIONS(2213), - [anon_sym_PLUS] = ACTIONS(2213), - [anon_sym_DASH] = ACTIONS(2213), - [anon_sym_STAR] = ACTIONS(2213), - [anon_sym_SLASH] = ACTIONS(2213), - [anon_sym_PERCENT] = ACTIONS(2213), - [anon_sym_LT] = ACTIONS(2213), - [anon_sym_GT] = ACTIONS(2213), - [anon_sym_EQ_EQ] = ACTIONS(2213), - [anon_sym_BANG_EQ] = ACTIONS(2213), - [anon_sym_LT_EQ] = ACTIONS(2213), - [anon_sym_GT_EQ] = ACTIONS(2213), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2213), - [anon_sym_LBRACK] = ACTIONS(2211), - [anon_sym_struct] = ACTIONS(2213), - [anon_sym_mut] = ACTIONS(2213), - [anon_sym_PLUS_PLUS] = ACTIONS(2213), - [anon_sym_DASH_DASH] = ACTIONS(2213), - [anon_sym_QMARK] = ACTIONS(2213), - [anon_sym_BANG] = ACTIONS(2213), - [anon_sym_go] = ACTIONS(2213), - [anon_sym_spawn] = ACTIONS(2213), - [anon_sym_json_DOTdecode] = ACTIONS(2213), - [anon_sym_LBRACK2] = ACTIONS(2213), - [anon_sym_TILDE] = ACTIONS(2213), - [anon_sym_CARET] = ACTIONS(2213), - [anon_sym_AMP] = ACTIONS(2213), - [anon_sym_LT_DASH] = ACTIONS(2213), - [anon_sym_LT_LT] = ACTIONS(2213), - [anon_sym_GT_GT] = ACTIONS(2213), - [anon_sym_GT_GT_GT] = ACTIONS(2213), - [anon_sym_AMP_CARET] = ACTIONS(2213), - [anon_sym_AMP_AMP] = ACTIONS(2213), - [anon_sym_PIPE_PIPE] = ACTIONS(2213), - [anon_sym_or] = ACTIONS(2213), - [sym_none] = ACTIONS(2213), - [sym_true] = ACTIONS(2213), - [sym_false] = ACTIONS(2213), - [sym_nil] = ACTIONS(2213), - [anon_sym_QMARK_DOT] = ACTIONS(2213), - [anon_sym_POUND_LBRACK] = ACTIONS(2213), - [anon_sym_if] = ACTIONS(2213), - [anon_sym_DOLLARif] = ACTIONS(2213), - [anon_sym_is] = ACTIONS(2213), - [anon_sym_BANGis] = ACTIONS(2213), - [anon_sym_in] = ACTIONS(2213), - [anon_sym_BANGin] = ACTIONS(2213), - [anon_sym_match] = ACTIONS(2213), - [anon_sym_select] = ACTIONS(2213), - [anon_sym_lock] = ACTIONS(2213), - [anon_sym_rlock] = ACTIONS(2213), - [anon_sym_unsafe] = ACTIONS(2213), - [anon_sym_sql] = ACTIONS(2213), - [sym_int_literal] = ACTIONS(2213), - [sym_float_literal] = ACTIONS(2213), - [sym_rune_literal] = ACTIONS(2213), - [sym_pseudo_compile_time_identifier] = ACTIONS(2213), - [anon_sym_shared] = ACTIONS(2213), - [anon_sym_map_LBRACK] = ACTIONS(2213), - [anon_sym_chan] = ACTIONS(2213), - [anon_sym_thread] = ACTIONS(2213), - [anon_sym_atomic] = ACTIONS(2213), - [sym___double_quote] = ACTIONS(2213), - [sym___single_quote] = ACTIONS(2213), - [sym___c_double_quote] = ACTIONS(2213), - [sym___c_single_quote] = ACTIONS(2213), - [sym___r_double_quote] = ACTIONS(2213), - [sym___r_single_quote] = ACTIONS(2213), - }, - [1165] = { - [sym_line_comment] = STATE(1165), - [sym_block_comment] = STATE(1165), - [sym_identifier] = ACTIONS(2691), - [anon_sym_LF] = ACTIONS(2691), - [anon_sym_CR] = ACTIONS(2691), - [anon_sym_CR_LF] = ACTIONS(2691), - [anon_sym_SLASH_SLASH] = ACTIONS(497), - [anon_sym_SLASH_STAR] = ACTIONS(499), - [anon_sym_SEMI] = ACTIONS(2691), - [anon_sym_DOT] = ACTIONS(2691), - [anon_sym_as] = ACTIONS(2691), - [anon_sym_LBRACE] = ACTIONS(2691), - [anon_sym_COMMA] = ACTIONS(2691), - [anon_sym_RBRACE] = ACTIONS(2691), - [anon_sym_LPAREN] = ACTIONS(2691), - [anon_sym_RPAREN] = ACTIONS(2691), - [anon_sym_PIPE] = ACTIONS(2691), - [anon_sym_fn] = ACTIONS(2691), - [anon_sym_PLUS] = ACTIONS(2691), - [anon_sym_DASH] = ACTIONS(2691), - [anon_sym_STAR] = ACTIONS(2691), - [anon_sym_SLASH] = ACTIONS(2691), - [anon_sym_PERCENT] = ACTIONS(2691), - [anon_sym_LT] = ACTIONS(2691), - [anon_sym_GT] = ACTIONS(2691), - [anon_sym_EQ_EQ] = ACTIONS(2691), - [anon_sym_BANG_EQ] = ACTIONS(2691), - [anon_sym_LT_EQ] = ACTIONS(2691), - [anon_sym_GT_EQ] = ACTIONS(2691), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2691), - [anon_sym_LBRACK] = ACTIONS(2689), - [anon_sym_struct] = ACTIONS(2691), - [anon_sym_mut] = ACTIONS(2691), - [anon_sym_PLUS_PLUS] = ACTIONS(2691), - [anon_sym_DASH_DASH] = ACTIONS(2691), - [anon_sym_QMARK] = ACTIONS(2691), - [anon_sym_BANG] = ACTIONS(2691), - [anon_sym_go] = ACTIONS(2691), - [anon_sym_spawn] = ACTIONS(2691), - [anon_sym_json_DOTdecode] = ACTIONS(2691), - [anon_sym_LBRACK2] = ACTIONS(2691), - [anon_sym_TILDE] = ACTIONS(2691), - [anon_sym_CARET] = ACTIONS(2691), - [anon_sym_AMP] = ACTIONS(2691), - [anon_sym_LT_DASH] = ACTIONS(2691), - [anon_sym_LT_LT] = ACTIONS(2691), - [anon_sym_GT_GT] = ACTIONS(2691), - [anon_sym_GT_GT_GT] = ACTIONS(2691), - [anon_sym_AMP_CARET] = ACTIONS(2691), - [anon_sym_AMP_AMP] = ACTIONS(2691), - [anon_sym_PIPE_PIPE] = ACTIONS(2691), - [anon_sym_or] = ACTIONS(2691), - [sym_none] = ACTIONS(2691), - [sym_true] = ACTIONS(2691), - [sym_false] = ACTIONS(2691), - [sym_nil] = ACTIONS(2691), - [anon_sym_QMARK_DOT] = ACTIONS(2691), - [anon_sym_POUND_LBRACK] = ACTIONS(2691), - [anon_sym_if] = ACTIONS(2691), - [anon_sym_DOLLARif] = ACTIONS(2691), - [anon_sym_is] = ACTIONS(2691), - [anon_sym_BANGis] = ACTIONS(2691), - [anon_sym_in] = ACTIONS(2691), - [anon_sym_BANGin] = ACTIONS(2691), - [anon_sym_match] = ACTIONS(2691), - [anon_sym_select] = ACTIONS(2691), - [anon_sym_lock] = ACTIONS(2691), - [anon_sym_rlock] = ACTIONS(2691), - [anon_sym_unsafe] = ACTIONS(2691), - [anon_sym_sql] = ACTIONS(2691), - [sym_int_literal] = ACTIONS(2691), - [sym_float_literal] = ACTIONS(2691), - [sym_rune_literal] = ACTIONS(2691), - [sym_pseudo_compile_time_identifier] = ACTIONS(2691), - [anon_sym_shared] = ACTIONS(2691), - [anon_sym_map_LBRACK] = ACTIONS(2691), - [anon_sym_chan] = ACTIONS(2691), - [anon_sym_thread] = ACTIONS(2691), - [anon_sym_atomic] = ACTIONS(2691), - [sym___double_quote] = ACTIONS(2691), - [sym___single_quote] = ACTIONS(2691), - [sym___c_double_quote] = ACTIONS(2691), - [sym___c_single_quote] = ACTIONS(2691), - [sym___r_double_quote] = ACTIONS(2691), - [sym___r_single_quote] = ACTIONS(2691), - }, - [1166] = { - [sym_line_comment] = STATE(1166), - [sym_block_comment] = STATE(1166), - [sym_identifier] = ACTIONS(2519), - [anon_sym_LF] = ACTIONS(2519), - [anon_sym_CR] = ACTIONS(2519), - [anon_sym_CR_LF] = ACTIONS(2519), - [anon_sym_SLASH_SLASH] = ACTIONS(497), - [anon_sym_SLASH_STAR] = ACTIONS(499), - [anon_sym_SEMI] = ACTIONS(2519), - [anon_sym_DOT] = ACTIONS(2519), - [anon_sym_as] = ACTIONS(2519), - [anon_sym_LBRACE] = ACTIONS(2519), - [anon_sym_COMMA] = ACTIONS(2519), - [anon_sym_RBRACE] = ACTIONS(2519), - [anon_sym_LPAREN] = ACTIONS(2519), - [anon_sym_RPAREN] = ACTIONS(2519), - [anon_sym_PIPE] = ACTIONS(2519), - [anon_sym_fn] = ACTIONS(2519), - [anon_sym_PLUS] = ACTIONS(2519), - [anon_sym_DASH] = ACTIONS(2519), - [anon_sym_STAR] = ACTIONS(2519), - [anon_sym_SLASH] = ACTIONS(2519), - [anon_sym_PERCENT] = ACTIONS(2519), - [anon_sym_LT] = ACTIONS(2519), - [anon_sym_GT] = ACTIONS(2519), - [anon_sym_EQ_EQ] = ACTIONS(2519), - [anon_sym_BANG_EQ] = ACTIONS(2519), - [anon_sym_LT_EQ] = ACTIONS(2519), - [anon_sym_GT_EQ] = ACTIONS(2519), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2519), - [anon_sym_LBRACK] = ACTIONS(2517), - [anon_sym_struct] = ACTIONS(2519), - [anon_sym_mut] = ACTIONS(2519), - [anon_sym_PLUS_PLUS] = ACTIONS(2519), - [anon_sym_DASH_DASH] = ACTIONS(2519), - [anon_sym_QMARK] = ACTIONS(2519), - [anon_sym_BANG] = ACTIONS(2519), - [anon_sym_go] = ACTIONS(2519), - [anon_sym_spawn] = ACTIONS(2519), - [anon_sym_json_DOTdecode] = ACTIONS(2519), - [anon_sym_LBRACK2] = ACTIONS(2519), - [anon_sym_TILDE] = ACTIONS(2519), - [anon_sym_CARET] = ACTIONS(2519), - [anon_sym_AMP] = ACTIONS(2519), - [anon_sym_LT_DASH] = ACTIONS(2519), - [anon_sym_LT_LT] = ACTIONS(2519), - [anon_sym_GT_GT] = ACTIONS(2519), - [anon_sym_GT_GT_GT] = ACTIONS(2519), - [anon_sym_AMP_CARET] = ACTIONS(2519), - [anon_sym_AMP_AMP] = ACTIONS(2519), - [anon_sym_PIPE_PIPE] = ACTIONS(2519), - [anon_sym_or] = ACTIONS(2519), - [sym_none] = ACTIONS(2519), - [sym_true] = ACTIONS(2519), - [sym_false] = ACTIONS(2519), - [sym_nil] = ACTIONS(2519), - [anon_sym_QMARK_DOT] = ACTIONS(2519), - [anon_sym_POUND_LBRACK] = ACTIONS(2519), - [anon_sym_if] = ACTIONS(2519), - [anon_sym_DOLLARif] = ACTIONS(2519), - [anon_sym_is] = ACTIONS(2519), - [anon_sym_BANGis] = ACTIONS(2519), - [anon_sym_in] = ACTIONS(2519), - [anon_sym_BANGin] = ACTIONS(2519), - [anon_sym_match] = ACTIONS(2519), - [anon_sym_select] = ACTIONS(2519), - [anon_sym_lock] = ACTIONS(2519), - [anon_sym_rlock] = ACTIONS(2519), - [anon_sym_unsafe] = ACTIONS(2519), - [anon_sym_sql] = ACTIONS(2519), - [sym_int_literal] = ACTIONS(2519), - [sym_float_literal] = ACTIONS(2519), - [sym_rune_literal] = ACTIONS(2519), - [sym_pseudo_compile_time_identifier] = ACTIONS(2519), - [anon_sym_shared] = ACTIONS(2519), - [anon_sym_map_LBRACK] = ACTIONS(2519), - [anon_sym_chan] = ACTIONS(2519), - [anon_sym_thread] = ACTIONS(2519), - [anon_sym_atomic] = ACTIONS(2519), - [sym___double_quote] = ACTIONS(2519), - [sym___single_quote] = ACTIONS(2519), - [sym___c_double_quote] = ACTIONS(2519), - [sym___c_single_quote] = ACTIONS(2519), - [sym___r_double_quote] = ACTIONS(2519), - [sym___r_single_quote] = ACTIONS(2519), - }, - [1167] = { - [sym_line_comment] = STATE(1167), - [sym_block_comment] = STATE(1167), - [sym_identifier] = ACTIONS(2515), - [anon_sym_LF] = ACTIONS(2515), - [anon_sym_CR] = ACTIONS(2515), - [anon_sym_CR_LF] = ACTIONS(2515), - [anon_sym_SLASH_SLASH] = ACTIONS(497), - [anon_sym_SLASH_STAR] = ACTIONS(499), - [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_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), - }, - [1168] = { - [sym_line_comment] = STATE(1168), - [sym_block_comment] = STATE(1168), - [sym_identifier] = ACTIONS(2860), - [anon_sym_LF] = ACTIONS(2860), - [anon_sym_CR] = ACTIONS(2860), - [anon_sym_CR_LF] = ACTIONS(2860), - [anon_sym_SLASH_SLASH] = ACTIONS(497), - [anon_sym_SLASH_STAR] = ACTIONS(499), - [anon_sym_SEMI] = ACTIONS(2860), - [anon_sym_DOT] = ACTIONS(2860), - [anon_sym_as] = ACTIONS(2860), - [anon_sym_LBRACE] = ACTIONS(2860), - [anon_sym_COMMA] = ACTIONS(2860), - [anon_sym_RBRACE] = ACTIONS(2860), - [anon_sym_LPAREN] = ACTIONS(2860), - [anon_sym_RPAREN] = ACTIONS(2860), - [anon_sym_PIPE] = ACTIONS(2860), - [anon_sym_fn] = ACTIONS(2860), - [anon_sym_PLUS] = ACTIONS(2860), - [anon_sym_DASH] = ACTIONS(2860), - [anon_sym_STAR] = ACTIONS(2860), - [anon_sym_SLASH] = ACTIONS(2860), - [anon_sym_PERCENT] = ACTIONS(2860), - [anon_sym_LT] = ACTIONS(2860), - [anon_sym_GT] = ACTIONS(2860), - [anon_sym_EQ_EQ] = ACTIONS(2860), - [anon_sym_BANG_EQ] = ACTIONS(2860), - [anon_sym_LT_EQ] = ACTIONS(2860), - [anon_sym_GT_EQ] = ACTIONS(2860), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2860), - [anon_sym_LBRACK] = ACTIONS(2858), - [anon_sym_struct] = ACTIONS(2860), - [anon_sym_mut] = ACTIONS(2860), - [anon_sym_PLUS_PLUS] = ACTIONS(2860), - [anon_sym_DASH_DASH] = ACTIONS(2860), - [anon_sym_QMARK] = ACTIONS(2860), - [anon_sym_BANG] = ACTIONS(2860), - [anon_sym_go] = ACTIONS(2860), - [anon_sym_spawn] = ACTIONS(2860), - [anon_sym_json_DOTdecode] = ACTIONS(2860), - [anon_sym_LBRACK2] = ACTIONS(2860), - [anon_sym_TILDE] = ACTIONS(2860), - [anon_sym_CARET] = ACTIONS(2860), - [anon_sym_AMP] = ACTIONS(2860), - [anon_sym_LT_DASH] = ACTIONS(2860), - [anon_sym_LT_LT] = ACTIONS(2860), - [anon_sym_GT_GT] = ACTIONS(2860), - [anon_sym_GT_GT_GT] = ACTIONS(2860), - [anon_sym_AMP_CARET] = ACTIONS(2860), - [anon_sym_AMP_AMP] = ACTIONS(2860), - [anon_sym_PIPE_PIPE] = ACTIONS(2860), - [anon_sym_or] = ACTIONS(2860), - [sym_none] = ACTIONS(2860), - [sym_true] = ACTIONS(2860), - [sym_false] = ACTIONS(2860), - [sym_nil] = ACTIONS(2860), - [anon_sym_QMARK_DOT] = ACTIONS(2860), - [anon_sym_POUND_LBRACK] = ACTIONS(2860), - [anon_sym_if] = ACTIONS(2860), - [anon_sym_DOLLARif] = ACTIONS(2860), - [anon_sym_is] = ACTIONS(2860), - [anon_sym_BANGis] = ACTIONS(2860), - [anon_sym_in] = ACTIONS(2860), - [anon_sym_BANGin] = ACTIONS(2860), - [anon_sym_match] = ACTIONS(2860), - [anon_sym_select] = ACTIONS(2860), - [anon_sym_lock] = ACTIONS(2860), - [anon_sym_rlock] = ACTIONS(2860), - [anon_sym_unsafe] = ACTIONS(2860), - [anon_sym_sql] = ACTIONS(2860), - [sym_int_literal] = ACTIONS(2860), - [sym_float_literal] = ACTIONS(2860), - [sym_rune_literal] = ACTIONS(2860), - [sym_pseudo_compile_time_identifier] = ACTIONS(2860), - [anon_sym_shared] = ACTIONS(2860), - [anon_sym_map_LBRACK] = ACTIONS(2860), - [anon_sym_chan] = ACTIONS(2860), - [anon_sym_thread] = ACTIONS(2860), - [anon_sym_atomic] = ACTIONS(2860), - [sym___double_quote] = ACTIONS(2860), - [sym___single_quote] = ACTIONS(2860), - [sym___c_double_quote] = ACTIONS(2860), - [sym___c_single_quote] = ACTIONS(2860), - [sym___r_double_quote] = ACTIONS(2860), - [sym___r_single_quote] = ACTIONS(2860), - }, - [1169] = { - [sym_line_comment] = STATE(1169), - [sym_block_comment] = STATE(1169), - [sym_identifier] = ACTIONS(2856), - [anon_sym_LF] = ACTIONS(2856), - [anon_sym_CR] = ACTIONS(2856), - [anon_sym_CR_LF] = ACTIONS(2856), + [1205] = { + [sym_line_comment] = STATE(1205), + [sym_block_comment] = STATE(1205), + [sym_identifier] = ACTIONS(2718), + [anon_sym_LF] = ACTIONS(2718), + [anon_sym_CR] = ACTIONS(2718), + [anon_sym_CR_LF] = ACTIONS(2718), [anon_sym_SLASH_SLASH] = ACTIONS(497), [anon_sym_SLASH_STAR] = ACTIONS(499), - [anon_sym_SEMI] = ACTIONS(2856), - [anon_sym_DOT] = ACTIONS(2856), - [anon_sym_as] = ACTIONS(2856), - [anon_sym_LBRACE] = ACTIONS(2856), - [anon_sym_COMMA] = ACTIONS(2856), - [anon_sym_RBRACE] = ACTIONS(2856), - [anon_sym_LPAREN] = ACTIONS(2856), - [anon_sym_RPAREN] = ACTIONS(2856), - [anon_sym_PIPE] = ACTIONS(2856), - [anon_sym_fn] = ACTIONS(2856), - [anon_sym_PLUS] = ACTIONS(2856), - [anon_sym_DASH] = ACTIONS(2856), - [anon_sym_STAR] = ACTIONS(2856), - [anon_sym_SLASH] = ACTIONS(2856), - [anon_sym_PERCENT] = ACTIONS(2856), - [anon_sym_LT] = ACTIONS(2856), - [anon_sym_GT] = ACTIONS(2856), - [anon_sym_EQ_EQ] = ACTIONS(2856), - [anon_sym_BANG_EQ] = ACTIONS(2856), - [anon_sym_LT_EQ] = ACTIONS(2856), - [anon_sym_GT_EQ] = ACTIONS(2856), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2856), - [anon_sym_LBRACK] = ACTIONS(2854), - [anon_sym_struct] = ACTIONS(2856), - [anon_sym_mut] = ACTIONS(2856), - [anon_sym_PLUS_PLUS] = ACTIONS(2856), - [anon_sym_DASH_DASH] = ACTIONS(2856), - [anon_sym_QMARK] = ACTIONS(2856), - [anon_sym_BANG] = ACTIONS(2856), - [anon_sym_go] = ACTIONS(2856), - [anon_sym_spawn] = ACTIONS(2856), - [anon_sym_json_DOTdecode] = ACTIONS(2856), - [anon_sym_LBRACK2] = ACTIONS(2856), - [anon_sym_TILDE] = ACTIONS(2856), - [anon_sym_CARET] = ACTIONS(2856), - [anon_sym_AMP] = ACTIONS(2856), - [anon_sym_LT_DASH] = ACTIONS(2856), - [anon_sym_LT_LT] = ACTIONS(2856), - [anon_sym_GT_GT] = ACTIONS(2856), - [anon_sym_GT_GT_GT] = ACTIONS(2856), - [anon_sym_AMP_CARET] = ACTIONS(2856), - [anon_sym_AMP_AMP] = ACTIONS(2856), - [anon_sym_PIPE_PIPE] = ACTIONS(2856), - [anon_sym_or] = ACTIONS(2856), - [sym_none] = ACTIONS(2856), - [sym_true] = ACTIONS(2856), - [sym_false] = ACTIONS(2856), - [sym_nil] = ACTIONS(2856), - [anon_sym_QMARK_DOT] = ACTIONS(2856), - [anon_sym_POUND_LBRACK] = ACTIONS(2856), - [anon_sym_if] = ACTIONS(2856), - [anon_sym_DOLLARif] = ACTIONS(2856), - [anon_sym_is] = ACTIONS(2856), - [anon_sym_BANGis] = ACTIONS(2856), - [anon_sym_in] = ACTIONS(2856), - [anon_sym_BANGin] = ACTIONS(2856), - [anon_sym_match] = ACTIONS(2856), - [anon_sym_select] = ACTIONS(2856), - [anon_sym_lock] = ACTIONS(2856), - [anon_sym_rlock] = ACTIONS(2856), - [anon_sym_unsafe] = ACTIONS(2856), - [anon_sym_sql] = ACTIONS(2856), - [sym_int_literal] = ACTIONS(2856), - [sym_float_literal] = ACTIONS(2856), - [sym_rune_literal] = ACTIONS(2856), - [sym_pseudo_compile_time_identifier] = ACTIONS(2856), - [anon_sym_shared] = ACTIONS(2856), - [anon_sym_map_LBRACK] = ACTIONS(2856), - [anon_sym_chan] = ACTIONS(2856), - [anon_sym_thread] = ACTIONS(2856), - [anon_sym_atomic] = ACTIONS(2856), - [sym___double_quote] = ACTIONS(2856), - [sym___single_quote] = ACTIONS(2856), - [sym___c_double_quote] = ACTIONS(2856), - [sym___c_single_quote] = ACTIONS(2856), - [sym___r_double_quote] = ACTIONS(2856), - [sym___r_single_quote] = ACTIONS(2856), + [anon_sym_SEMI] = ACTIONS(2718), + [anon_sym_DOT] = ACTIONS(2718), + [anon_sym_as] = ACTIONS(2718), + [anon_sym_LBRACE] = ACTIONS(2718), + [anon_sym_COMMA] = ACTIONS(2718), + [anon_sym_RBRACE] = ACTIONS(2718), + [anon_sym_LPAREN] = ACTIONS(2718), + [anon_sym_RPAREN] = ACTIONS(2718), + [anon_sym_PIPE] = ACTIONS(2718), + [anon_sym_fn] = ACTIONS(2718), + [anon_sym_PLUS] = ACTIONS(2718), + [anon_sym_DASH] = ACTIONS(2718), + [anon_sym_STAR] = ACTIONS(2718), + [anon_sym_SLASH] = ACTIONS(2718), + [anon_sym_PERCENT] = ACTIONS(2718), + [anon_sym_LT] = ACTIONS(2718), + [anon_sym_GT] = ACTIONS(2718), + [anon_sym_EQ_EQ] = ACTIONS(2718), + [anon_sym_BANG_EQ] = ACTIONS(2718), + [anon_sym_LT_EQ] = ACTIONS(2718), + [anon_sym_GT_EQ] = ACTIONS(2718), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2718), + [anon_sym_LBRACK] = ACTIONS(2716), + [anon_sym_struct] = ACTIONS(2718), + [anon_sym_mut] = ACTIONS(2718), + [anon_sym_PLUS_PLUS] = ACTIONS(2718), + [anon_sym_DASH_DASH] = ACTIONS(2718), + [anon_sym_QMARK] = ACTIONS(2718), + [anon_sym_BANG] = ACTIONS(2718), + [anon_sym_go] = ACTIONS(2718), + [anon_sym_spawn] = ACTIONS(2718), + [anon_sym_json_DOTdecode] = ACTIONS(2718), + [anon_sym_LBRACK2] = ACTIONS(2718), + [anon_sym_TILDE] = ACTIONS(2718), + [anon_sym_CARET] = ACTIONS(2718), + [anon_sym_AMP] = ACTIONS(2718), + [anon_sym_LT_DASH] = ACTIONS(2718), + [anon_sym_LT_LT] = ACTIONS(2718), + [anon_sym_GT_GT] = ACTIONS(2718), + [anon_sym_GT_GT_GT] = ACTIONS(2718), + [anon_sym_AMP_CARET] = ACTIONS(2718), + [anon_sym_AMP_AMP] = ACTIONS(2718), + [anon_sym_PIPE_PIPE] = ACTIONS(2718), + [anon_sym_or] = ACTIONS(2718), + [sym_none] = ACTIONS(2718), + [sym_true] = ACTIONS(2718), + [sym_false] = ACTIONS(2718), + [sym_nil] = ACTIONS(2718), + [anon_sym_QMARK_DOT] = ACTIONS(2718), + [anon_sym_POUND_LBRACK] = ACTIONS(2718), + [anon_sym_if] = ACTIONS(2718), + [anon_sym_DOLLARif] = ACTIONS(2718), + [anon_sym_is] = ACTIONS(2718), + [anon_sym_BANGis] = ACTIONS(2718), + [anon_sym_in] = ACTIONS(2718), + [anon_sym_BANGin] = ACTIONS(2718), + [anon_sym_match] = ACTIONS(2718), + [anon_sym_select] = ACTIONS(2718), + [anon_sym_lock] = ACTIONS(2718), + [anon_sym_rlock] = ACTIONS(2718), + [anon_sym_unsafe] = ACTIONS(2718), + [anon_sym_sql] = ACTIONS(2718), + [sym_int_literal] = ACTIONS(2718), + [sym_float_literal] = ACTIONS(2718), + [sym_rune_literal] = ACTIONS(2718), + [sym_pseudo_compile_time_identifier] = ACTIONS(2718), + [anon_sym_shared] = ACTIONS(2718), + [anon_sym_map_LBRACK] = ACTIONS(2718), + [anon_sym_chan] = ACTIONS(2718), + [anon_sym_thread] = ACTIONS(2718), + [anon_sym_atomic] = ACTIONS(2718), + [sym___double_quote] = ACTIONS(2718), + [sym___single_quote] = ACTIONS(2718), + [sym___c_double_quote] = ACTIONS(2718), + [sym___c_single_quote] = ACTIONS(2718), + [sym___r_double_quote] = ACTIONS(2718), + [sym___r_single_quote] = ACTIONS(2718), }, - [1170] = { - [sym_line_comment] = STATE(1170), - [sym_block_comment] = STATE(1170), - [sym_identifier] = ACTIONS(2315), - [anon_sym_LF] = ACTIONS(2315), - [anon_sym_CR] = ACTIONS(2315), - [anon_sym_CR_LF] = ACTIONS(2315), + [1206] = { + [sym_line_comment] = STATE(1206), + [sym_block_comment] = STATE(1206), + [sym_identifier] = ACTIONS(2501), + [anon_sym_LF] = ACTIONS(2501), + [anon_sym_CR] = ACTIONS(2501), + [anon_sym_CR_LF] = ACTIONS(2501), [anon_sym_SLASH_SLASH] = ACTIONS(497), [anon_sym_SLASH_STAR] = ACTIONS(499), - [anon_sym_SEMI] = ACTIONS(2315), - [anon_sym_DOT] = ACTIONS(2315), - [anon_sym_as] = ACTIONS(2315), - [anon_sym_LBRACE] = ACTIONS(2315), - [anon_sym_COMMA] = ACTIONS(2315), - [anon_sym_RBRACE] = ACTIONS(2315), - [anon_sym_LPAREN] = ACTIONS(2315), - [anon_sym_RPAREN] = ACTIONS(2315), - [anon_sym_PIPE] = ACTIONS(2315), - [anon_sym_fn] = ACTIONS(2315), - [anon_sym_PLUS] = ACTIONS(2315), - [anon_sym_DASH] = ACTIONS(2315), - [anon_sym_STAR] = ACTIONS(2315), - [anon_sym_SLASH] = ACTIONS(2315), - [anon_sym_PERCENT] = ACTIONS(2315), - [anon_sym_LT] = ACTIONS(2315), - [anon_sym_GT] = ACTIONS(2315), - [anon_sym_EQ_EQ] = ACTIONS(2315), - [anon_sym_BANG_EQ] = ACTIONS(2315), - [anon_sym_LT_EQ] = ACTIONS(2315), - [anon_sym_GT_EQ] = ACTIONS(2315), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2315), - [anon_sym_LBRACK] = ACTIONS(2313), - [anon_sym_struct] = ACTIONS(2315), - [anon_sym_mut] = ACTIONS(2315), - [anon_sym_PLUS_PLUS] = ACTIONS(2315), - [anon_sym_DASH_DASH] = ACTIONS(2315), - [anon_sym_QMARK] = ACTIONS(2315), - [anon_sym_BANG] = ACTIONS(2315), - [anon_sym_go] = ACTIONS(2315), - [anon_sym_spawn] = ACTIONS(2315), - [anon_sym_json_DOTdecode] = ACTIONS(2315), - [anon_sym_LBRACK2] = ACTIONS(2315), - [anon_sym_TILDE] = ACTIONS(2315), - [anon_sym_CARET] = ACTIONS(2315), - [anon_sym_AMP] = ACTIONS(2315), - [anon_sym_LT_DASH] = ACTIONS(2315), - [anon_sym_LT_LT] = ACTIONS(2315), - [anon_sym_GT_GT] = ACTIONS(2315), - [anon_sym_GT_GT_GT] = ACTIONS(2315), - [anon_sym_AMP_CARET] = ACTIONS(2315), - [anon_sym_AMP_AMP] = ACTIONS(2315), - [anon_sym_PIPE_PIPE] = ACTIONS(2315), - [anon_sym_or] = ACTIONS(2315), - [sym_none] = ACTIONS(2315), - [sym_true] = ACTIONS(2315), - [sym_false] = ACTIONS(2315), - [sym_nil] = ACTIONS(2315), - [anon_sym_QMARK_DOT] = ACTIONS(2315), - [anon_sym_POUND_LBRACK] = ACTIONS(2315), - [anon_sym_if] = ACTIONS(2315), - [anon_sym_DOLLARif] = ACTIONS(2315), - [anon_sym_is] = ACTIONS(2315), - [anon_sym_BANGis] = ACTIONS(2315), - [anon_sym_in] = ACTIONS(2315), - [anon_sym_BANGin] = ACTIONS(2315), - [anon_sym_match] = ACTIONS(2315), - [anon_sym_select] = ACTIONS(2315), - [anon_sym_lock] = ACTIONS(2315), - [anon_sym_rlock] = ACTIONS(2315), - [anon_sym_unsafe] = ACTIONS(2315), - [anon_sym_sql] = ACTIONS(2315), - [sym_int_literal] = ACTIONS(2315), - [sym_float_literal] = ACTIONS(2315), - [sym_rune_literal] = ACTIONS(2315), - [sym_pseudo_compile_time_identifier] = ACTIONS(2315), - [anon_sym_shared] = ACTIONS(2315), - [anon_sym_map_LBRACK] = ACTIONS(2315), - [anon_sym_chan] = ACTIONS(2315), - [anon_sym_thread] = ACTIONS(2315), - [anon_sym_atomic] = ACTIONS(2315), - [sym___double_quote] = ACTIONS(2315), - [sym___single_quote] = ACTIONS(2315), - [sym___c_double_quote] = ACTIONS(2315), - [sym___c_single_quote] = ACTIONS(2315), - [sym___r_double_quote] = ACTIONS(2315), - [sym___r_single_quote] = ACTIONS(2315), + [anon_sym_SEMI] = ACTIONS(2501), + [anon_sym_DOT] = ACTIONS(2501), + [anon_sym_as] = ACTIONS(2501), + [anon_sym_LBRACE] = ACTIONS(2501), + [anon_sym_COMMA] = ACTIONS(2501), + [anon_sym_RBRACE] = ACTIONS(2501), + [anon_sym_LPAREN] = ACTIONS(2501), + [anon_sym_RPAREN] = ACTIONS(2501), + [anon_sym_PIPE] = ACTIONS(2501), + [anon_sym_fn] = ACTIONS(2501), + [anon_sym_PLUS] = ACTIONS(2501), + [anon_sym_DASH] = ACTIONS(2501), + [anon_sym_STAR] = ACTIONS(2501), + [anon_sym_SLASH] = ACTIONS(2501), + [anon_sym_PERCENT] = ACTIONS(2501), + [anon_sym_LT] = ACTIONS(2501), + [anon_sym_GT] = ACTIONS(2501), + [anon_sym_EQ_EQ] = ACTIONS(2501), + [anon_sym_BANG_EQ] = ACTIONS(2501), + [anon_sym_LT_EQ] = ACTIONS(2501), + [anon_sym_GT_EQ] = ACTIONS(2501), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2501), + [anon_sym_LBRACK] = ACTIONS(2499), + [anon_sym_struct] = ACTIONS(2501), + [anon_sym_mut] = ACTIONS(2501), + [anon_sym_PLUS_PLUS] = ACTIONS(2501), + [anon_sym_DASH_DASH] = ACTIONS(2501), + [anon_sym_QMARK] = ACTIONS(2501), + [anon_sym_BANG] = ACTIONS(2501), + [anon_sym_go] = ACTIONS(2501), + [anon_sym_spawn] = ACTIONS(2501), + [anon_sym_json_DOTdecode] = ACTIONS(2501), + [anon_sym_LBRACK2] = ACTIONS(2501), + [anon_sym_TILDE] = ACTIONS(2501), + [anon_sym_CARET] = ACTIONS(2501), + [anon_sym_AMP] = ACTIONS(2501), + [anon_sym_LT_DASH] = ACTIONS(2501), + [anon_sym_LT_LT] = ACTIONS(2501), + [anon_sym_GT_GT] = ACTIONS(2501), + [anon_sym_GT_GT_GT] = ACTIONS(2501), + [anon_sym_AMP_CARET] = ACTIONS(2501), + [anon_sym_AMP_AMP] = ACTIONS(2501), + [anon_sym_PIPE_PIPE] = ACTIONS(2501), + [anon_sym_or] = ACTIONS(2501), + [sym_none] = ACTIONS(2501), + [sym_true] = ACTIONS(2501), + [sym_false] = ACTIONS(2501), + [sym_nil] = ACTIONS(2501), + [anon_sym_QMARK_DOT] = ACTIONS(2501), + [anon_sym_POUND_LBRACK] = ACTIONS(2501), + [anon_sym_if] = ACTIONS(2501), + [anon_sym_DOLLARif] = ACTIONS(2501), + [anon_sym_is] = ACTIONS(2501), + [anon_sym_BANGis] = ACTIONS(2501), + [anon_sym_in] = ACTIONS(2501), + [anon_sym_BANGin] = ACTIONS(2501), + [anon_sym_match] = ACTIONS(2501), + [anon_sym_select] = ACTIONS(2501), + [anon_sym_lock] = ACTIONS(2501), + [anon_sym_rlock] = ACTIONS(2501), + [anon_sym_unsafe] = ACTIONS(2501), + [anon_sym_sql] = ACTIONS(2501), + [sym_int_literal] = ACTIONS(2501), + [sym_float_literal] = ACTIONS(2501), + [sym_rune_literal] = ACTIONS(2501), + [sym_pseudo_compile_time_identifier] = ACTIONS(2501), + [anon_sym_shared] = ACTIONS(2501), + [anon_sym_map_LBRACK] = ACTIONS(2501), + [anon_sym_chan] = ACTIONS(2501), + [anon_sym_thread] = ACTIONS(2501), + [anon_sym_atomic] = ACTIONS(2501), + [sym___double_quote] = ACTIONS(2501), + [sym___single_quote] = ACTIONS(2501), + [sym___c_double_quote] = ACTIONS(2501), + [sym___c_single_quote] = ACTIONS(2501), + [sym___r_double_quote] = ACTIONS(2501), + [sym___r_single_quote] = ACTIONS(2501), }, - [1171] = { - [sym_line_comment] = STATE(1171), - [sym_block_comment] = STATE(1171), + [1207] = { + [sym_line_comment] = STATE(1207), + [sym_block_comment] = STATE(1207), [sym_identifier] = ACTIONS(2293), [anon_sym_LF] = ACTIONS(2293), [anon_sym_CR] = ACTIONS(2293), @@ -153852,2358 +157031,792 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym___r_double_quote] = ACTIONS(2293), [sym___r_single_quote] = ACTIONS(2293), }, - [1172] = { - [sym_line_comment] = STATE(1172), - [sym_block_comment] = STATE(1172), - [sym_identifier] = ACTIONS(2305), - [anon_sym_LF] = ACTIONS(2305), - [anon_sym_CR] = ACTIONS(2305), - [anon_sym_CR_LF] = ACTIONS(2305), - [anon_sym_SLASH_SLASH] = ACTIONS(497), - [anon_sym_SLASH_STAR] = ACTIONS(499), - [anon_sym_SEMI] = ACTIONS(2305), - [anon_sym_DOT] = ACTIONS(2305), - [anon_sym_as] = ACTIONS(2305), - [anon_sym_LBRACE] = ACTIONS(2305), - [anon_sym_COMMA] = ACTIONS(2305), - [anon_sym_RBRACE] = ACTIONS(2305), - [anon_sym_LPAREN] = ACTIONS(2305), - [anon_sym_RPAREN] = ACTIONS(2305), - [anon_sym_PIPE] = ACTIONS(2305), - [anon_sym_fn] = ACTIONS(2305), - [anon_sym_PLUS] = ACTIONS(2305), - [anon_sym_DASH] = ACTIONS(2305), - [anon_sym_STAR] = ACTIONS(2305), - [anon_sym_SLASH] = ACTIONS(2305), - [anon_sym_PERCENT] = ACTIONS(2305), - [anon_sym_LT] = ACTIONS(2305), - [anon_sym_GT] = ACTIONS(2305), - [anon_sym_EQ_EQ] = ACTIONS(2305), - [anon_sym_BANG_EQ] = ACTIONS(2305), - [anon_sym_LT_EQ] = ACTIONS(2305), - [anon_sym_GT_EQ] = ACTIONS(2305), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2305), - [anon_sym_LBRACK] = ACTIONS(2303), - [anon_sym_struct] = ACTIONS(2305), - [anon_sym_mut] = ACTIONS(2305), - [anon_sym_PLUS_PLUS] = ACTIONS(2305), - [anon_sym_DASH_DASH] = ACTIONS(2305), - [anon_sym_QMARK] = ACTIONS(2305), - [anon_sym_BANG] = ACTIONS(2305), - [anon_sym_go] = ACTIONS(2305), - [anon_sym_spawn] = ACTIONS(2305), - [anon_sym_json_DOTdecode] = ACTIONS(2305), - [anon_sym_LBRACK2] = ACTIONS(2305), - [anon_sym_TILDE] = ACTIONS(2305), - [anon_sym_CARET] = ACTIONS(2305), - [anon_sym_AMP] = ACTIONS(2305), - [anon_sym_LT_DASH] = ACTIONS(2305), - [anon_sym_LT_LT] = ACTIONS(2305), - [anon_sym_GT_GT] = ACTIONS(2305), - [anon_sym_GT_GT_GT] = ACTIONS(2305), - [anon_sym_AMP_CARET] = ACTIONS(2305), - [anon_sym_AMP_AMP] = ACTIONS(2305), - [anon_sym_PIPE_PIPE] = ACTIONS(2305), - [anon_sym_or] = ACTIONS(2305), - [sym_none] = ACTIONS(2305), - [sym_true] = ACTIONS(2305), - [sym_false] = ACTIONS(2305), - [sym_nil] = ACTIONS(2305), - [anon_sym_QMARK_DOT] = ACTIONS(2305), - [anon_sym_POUND_LBRACK] = ACTIONS(2305), - [anon_sym_if] = ACTIONS(2305), - [anon_sym_DOLLARif] = ACTIONS(2305), - [anon_sym_is] = ACTIONS(2305), - [anon_sym_BANGis] = ACTIONS(2305), - [anon_sym_in] = ACTIONS(2305), - [anon_sym_BANGin] = ACTIONS(2305), - [anon_sym_match] = ACTIONS(2305), - [anon_sym_select] = ACTIONS(2305), - [anon_sym_lock] = ACTIONS(2305), - [anon_sym_rlock] = ACTIONS(2305), - [anon_sym_unsafe] = ACTIONS(2305), - [anon_sym_sql] = ACTIONS(2305), - [sym_int_literal] = ACTIONS(2305), - [sym_float_literal] = ACTIONS(2305), - [sym_rune_literal] = ACTIONS(2305), - [sym_pseudo_compile_time_identifier] = ACTIONS(2305), - [anon_sym_shared] = ACTIONS(2305), - [anon_sym_map_LBRACK] = ACTIONS(2305), - [anon_sym_chan] = ACTIONS(2305), - [anon_sym_thread] = ACTIONS(2305), - [anon_sym_atomic] = ACTIONS(2305), - [sym___double_quote] = ACTIONS(2305), - [sym___single_quote] = ACTIONS(2305), - [sym___c_double_quote] = ACTIONS(2305), - [sym___c_single_quote] = ACTIONS(2305), - [sym___r_double_quote] = ACTIONS(2305), - [sym___r_single_quote] = ACTIONS(2305), - }, - [1173] = { - [sym_line_comment] = STATE(1173), - [sym_block_comment] = STATE(1173), - [sym_identifier] = ACTIONS(2507), - [anon_sym_LF] = ACTIONS(2507), - [anon_sym_CR] = ACTIONS(2507), - [anon_sym_CR_LF] = ACTIONS(2507), - [anon_sym_SLASH_SLASH] = ACTIONS(497), - [anon_sym_SLASH_STAR] = ACTIONS(499), - [anon_sym_SEMI] = ACTIONS(2507), - [anon_sym_DOT] = ACTIONS(1853), - [anon_sym_as] = ACTIONS(2507), - [anon_sym_LBRACE] = ACTIONS(2507), - [anon_sym_COMMA] = ACTIONS(2507), - [anon_sym_RBRACE] = ACTIONS(2507), - [anon_sym_LPAREN] = ACTIONS(2507), - [anon_sym_RPAREN] = ACTIONS(2507), - [anon_sym_PIPE] = ACTIONS(2507), - [anon_sym_fn] = ACTIONS(2507), - [anon_sym_PLUS] = ACTIONS(2507), - [anon_sym_DASH] = ACTIONS(2507), - [anon_sym_STAR] = ACTIONS(2507), - [anon_sym_SLASH] = ACTIONS(2507), - [anon_sym_PERCENT] = ACTIONS(2507), - [anon_sym_LT] = ACTIONS(2507), - [anon_sym_GT] = ACTIONS(2507), - [anon_sym_EQ_EQ] = ACTIONS(2507), - [anon_sym_BANG_EQ] = ACTIONS(2507), - [anon_sym_LT_EQ] = ACTIONS(2507), - [anon_sym_GT_EQ] = ACTIONS(2507), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2507), - [anon_sym_LBRACK] = ACTIONS(2505), - [anon_sym_struct] = ACTIONS(2507), - [anon_sym_mut] = ACTIONS(2507), - [anon_sym_PLUS_PLUS] = ACTIONS(2507), - [anon_sym_DASH_DASH] = ACTIONS(2507), - [anon_sym_QMARK] = ACTIONS(2507), - [anon_sym_BANG] = ACTIONS(2507), - [anon_sym_go] = ACTIONS(2507), - [anon_sym_spawn] = ACTIONS(2507), - [anon_sym_json_DOTdecode] = ACTIONS(2507), - [anon_sym_LBRACK2] = ACTIONS(2507), - [anon_sym_TILDE] = ACTIONS(2507), - [anon_sym_CARET] = ACTIONS(2507), - [anon_sym_AMP] = ACTIONS(2507), - [anon_sym_LT_DASH] = ACTIONS(2507), - [anon_sym_LT_LT] = ACTIONS(2507), - [anon_sym_GT_GT] = ACTIONS(2507), - [anon_sym_GT_GT_GT] = ACTIONS(2507), - [anon_sym_AMP_CARET] = ACTIONS(2507), - [anon_sym_AMP_AMP] = ACTIONS(2507), - [anon_sym_PIPE_PIPE] = ACTIONS(2507), - [anon_sym_or] = ACTIONS(2507), - [sym_none] = ACTIONS(2507), - [sym_true] = ACTIONS(2507), - [sym_false] = ACTIONS(2507), - [sym_nil] = ACTIONS(2507), - [anon_sym_QMARK_DOT] = ACTIONS(2507), - [anon_sym_POUND_LBRACK] = ACTIONS(2507), - [anon_sym_if] = ACTIONS(2507), - [anon_sym_DOLLARif] = ACTIONS(2507), - [anon_sym_is] = ACTIONS(2507), - [anon_sym_BANGis] = ACTIONS(2507), - [anon_sym_in] = ACTIONS(2507), - [anon_sym_BANGin] = ACTIONS(2507), - [anon_sym_match] = ACTIONS(2507), - [anon_sym_select] = ACTIONS(2507), - [anon_sym_lock] = ACTIONS(2507), - [anon_sym_rlock] = ACTIONS(2507), - [anon_sym_unsafe] = ACTIONS(2507), - [anon_sym_sql] = ACTIONS(2507), - [sym_int_literal] = ACTIONS(2507), - [sym_float_literal] = ACTIONS(2507), - [sym_rune_literal] = ACTIONS(2507), - [sym_pseudo_compile_time_identifier] = ACTIONS(2507), - [anon_sym_shared] = ACTIONS(2507), - [anon_sym_map_LBRACK] = ACTIONS(2507), - [anon_sym_chan] = ACTIONS(2507), - [anon_sym_thread] = ACTIONS(2507), - [anon_sym_atomic] = ACTIONS(2507), - [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), - }, - [1174] = { - [sym_line_comment] = STATE(1174), - [sym_block_comment] = STATE(1174), - [sym_identifier] = ACTIONS(2828), - [anon_sym_LF] = ACTIONS(2828), - [anon_sym_CR] = ACTIONS(2828), - [anon_sym_CR_LF] = ACTIONS(2828), - [anon_sym_SLASH_SLASH] = ACTIONS(497), - [anon_sym_SLASH_STAR] = ACTIONS(499), - [anon_sym_SEMI] = ACTIONS(2828), - [anon_sym_DOT] = ACTIONS(2828), - [anon_sym_as] = ACTIONS(2828), - [anon_sym_LBRACE] = ACTIONS(2828), - [anon_sym_COMMA] = ACTIONS(2828), - [anon_sym_RBRACE] = ACTIONS(2828), - [anon_sym_LPAREN] = ACTIONS(2828), - [anon_sym_RPAREN] = ACTIONS(2828), - [anon_sym_PIPE] = ACTIONS(2828), - [anon_sym_fn] = ACTIONS(2828), - [anon_sym_PLUS] = ACTIONS(2828), - [anon_sym_DASH] = ACTIONS(2828), - [anon_sym_STAR] = ACTIONS(2828), - [anon_sym_SLASH] = ACTIONS(2828), - [anon_sym_PERCENT] = ACTIONS(2828), - [anon_sym_LT] = ACTIONS(2828), - [anon_sym_GT] = ACTIONS(2828), - [anon_sym_EQ_EQ] = ACTIONS(2828), - [anon_sym_BANG_EQ] = ACTIONS(2828), - [anon_sym_LT_EQ] = ACTIONS(2828), - [anon_sym_GT_EQ] = ACTIONS(2828), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2828), - [anon_sym_LBRACK] = ACTIONS(2826), - [anon_sym_struct] = ACTIONS(2828), - [anon_sym_mut] = ACTIONS(2828), - [anon_sym_PLUS_PLUS] = ACTIONS(2828), - [anon_sym_DASH_DASH] = ACTIONS(2828), - [anon_sym_QMARK] = ACTIONS(2828), - [anon_sym_BANG] = ACTIONS(2828), - [anon_sym_go] = ACTIONS(2828), - [anon_sym_spawn] = ACTIONS(2828), - [anon_sym_json_DOTdecode] = ACTIONS(2828), - [anon_sym_LBRACK2] = ACTIONS(2828), - [anon_sym_TILDE] = ACTIONS(2828), - [anon_sym_CARET] = ACTIONS(2828), - [anon_sym_AMP] = ACTIONS(2828), - [anon_sym_LT_DASH] = ACTIONS(2828), - [anon_sym_LT_LT] = ACTIONS(2828), - [anon_sym_GT_GT] = ACTIONS(2828), - [anon_sym_GT_GT_GT] = ACTIONS(2828), - [anon_sym_AMP_CARET] = ACTIONS(2828), - [anon_sym_AMP_AMP] = ACTIONS(2828), - [anon_sym_PIPE_PIPE] = ACTIONS(2828), - [anon_sym_or] = ACTIONS(2828), - [sym_none] = ACTIONS(2828), - [sym_true] = ACTIONS(2828), - [sym_false] = ACTIONS(2828), - [sym_nil] = ACTIONS(2828), - [anon_sym_QMARK_DOT] = ACTIONS(2828), - [anon_sym_POUND_LBRACK] = ACTIONS(2828), - [anon_sym_if] = ACTIONS(2828), - [anon_sym_DOLLARif] = ACTIONS(2828), - [anon_sym_is] = ACTIONS(2828), - [anon_sym_BANGis] = ACTIONS(2828), - [anon_sym_in] = ACTIONS(2828), - [anon_sym_BANGin] = ACTIONS(2828), - [anon_sym_match] = ACTIONS(2828), - [anon_sym_select] = ACTIONS(2828), - [anon_sym_lock] = ACTIONS(2828), - [anon_sym_rlock] = ACTIONS(2828), - [anon_sym_unsafe] = ACTIONS(2828), - [anon_sym_sql] = ACTIONS(2828), - [sym_int_literal] = ACTIONS(2828), - [sym_float_literal] = ACTIONS(2828), - [sym_rune_literal] = ACTIONS(2828), - [sym_pseudo_compile_time_identifier] = ACTIONS(2828), - [anon_sym_shared] = ACTIONS(2828), - [anon_sym_map_LBRACK] = ACTIONS(2828), - [anon_sym_chan] = ACTIONS(2828), - [anon_sym_thread] = ACTIONS(2828), - [anon_sym_atomic] = ACTIONS(2828), - [sym___double_quote] = ACTIONS(2828), - [sym___single_quote] = ACTIONS(2828), - [sym___c_double_quote] = ACTIONS(2828), - [sym___c_single_quote] = ACTIONS(2828), - [sym___r_double_quote] = ACTIONS(2828), - [sym___r_single_quote] = ACTIONS(2828), - }, - [1175] = { - [sym_line_comment] = STATE(1175), - [sym_block_comment] = STATE(1175), - [sym_identifier] = ACTIONS(2663), - [anon_sym_LF] = ACTIONS(2663), - [anon_sym_CR] = ACTIONS(2663), - [anon_sym_CR_LF] = ACTIONS(2663), - [anon_sym_SLASH_SLASH] = ACTIONS(497), - [anon_sym_SLASH_STAR] = ACTIONS(499), - [anon_sym_SEMI] = ACTIONS(2663), - [anon_sym_DOT] = ACTIONS(2663), - [anon_sym_as] = ACTIONS(2663), - [anon_sym_LBRACE] = ACTIONS(2663), - [anon_sym_COMMA] = ACTIONS(2663), - [anon_sym_RBRACE] = ACTIONS(2663), - [anon_sym_LPAREN] = ACTIONS(2663), - [anon_sym_RPAREN] = ACTIONS(2663), - [anon_sym_PIPE] = ACTIONS(2663), - [anon_sym_fn] = ACTIONS(2663), - [anon_sym_PLUS] = ACTIONS(2663), - [anon_sym_DASH] = ACTIONS(2663), - [anon_sym_STAR] = ACTIONS(2663), - [anon_sym_SLASH] = ACTIONS(2663), - [anon_sym_PERCENT] = ACTIONS(2663), - [anon_sym_LT] = ACTIONS(2663), - [anon_sym_GT] = ACTIONS(2663), - [anon_sym_EQ_EQ] = ACTIONS(2663), - [anon_sym_BANG_EQ] = ACTIONS(2663), - [anon_sym_LT_EQ] = ACTIONS(2663), - [anon_sym_GT_EQ] = ACTIONS(2663), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2663), - [anon_sym_LBRACK] = ACTIONS(2661), - [anon_sym_struct] = ACTIONS(2663), - [anon_sym_mut] = ACTIONS(2663), - [anon_sym_PLUS_PLUS] = ACTIONS(2663), - [anon_sym_DASH_DASH] = ACTIONS(2663), - [anon_sym_QMARK] = ACTIONS(2663), - [anon_sym_BANG] = ACTIONS(2663), - [anon_sym_go] = ACTIONS(2663), - [anon_sym_spawn] = ACTIONS(2663), - [anon_sym_json_DOTdecode] = ACTIONS(2663), - [anon_sym_LBRACK2] = ACTIONS(2663), - [anon_sym_TILDE] = ACTIONS(2663), - [anon_sym_CARET] = ACTIONS(2663), - [anon_sym_AMP] = ACTIONS(2663), - [anon_sym_LT_DASH] = ACTIONS(2663), - [anon_sym_LT_LT] = ACTIONS(2663), - [anon_sym_GT_GT] = ACTIONS(2663), - [anon_sym_GT_GT_GT] = ACTIONS(2663), - [anon_sym_AMP_CARET] = ACTIONS(2663), - [anon_sym_AMP_AMP] = ACTIONS(2663), - [anon_sym_PIPE_PIPE] = ACTIONS(2663), - [anon_sym_or] = ACTIONS(2663), - [sym_none] = ACTIONS(2663), - [sym_true] = ACTIONS(2663), - [sym_false] = ACTIONS(2663), - [sym_nil] = ACTIONS(2663), - [anon_sym_QMARK_DOT] = ACTIONS(2663), - [anon_sym_POUND_LBRACK] = ACTIONS(2663), - [anon_sym_if] = ACTIONS(2663), - [anon_sym_DOLLARif] = ACTIONS(2663), - [anon_sym_is] = ACTIONS(2663), - [anon_sym_BANGis] = ACTIONS(2663), - [anon_sym_in] = ACTIONS(2663), - [anon_sym_BANGin] = ACTIONS(2663), - [anon_sym_match] = ACTIONS(2663), - [anon_sym_select] = ACTIONS(2663), - [anon_sym_lock] = ACTIONS(2663), - [anon_sym_rlock] = ACTIONS(2663), - [anon_sym_unsafe] = ACTIONS(2663), - [anon_sym_sql] = ACTIONS(2663), - [sym_int_literal] = ACTIONS(2663), - [sym_float_literal] = ACTIONS(2663), - [sym_rune_literal] = ACTIONS(2663), - [sym_pseudo_compile_time_identifier] = ACTIONS(2663), - [anon_sym_shared] = ACTIONS(2663), - [anon_sym_map_LBRACK] = ACTIONS(2663), - [anon_sym_chan] = ACTIONS(2663), - [anon_sym_thread] = ACTIONS(2663), - [anon_sym_atomic] = ACTIONS(2663), - [sym___double_quote] = ACTIONS(2663), - [sym___single_quote] = ACTIONS(2663), - [sym___c_double_quote] = ACTIONS(2663), - [sym___c_single_quote] = ACTIONS(2663), - [sym___r_double_quote] = ACTIONS(2663), - [sym___r_single_quote] = ACTIONS(2663), - }, - [1176] = { - [sym_line_comment] = STATE(1176), - [sym_block_comment] = STATE(1176), - [sym_identifier] = ACTIONS(2285), - [anon_sym_LF] = ACTIONS(2285), - [anon_sym_CR] = ACTIONS(2285), - [anon_sym_CR_LF] = ACTIONS(2285), - [anon_sym_SLASH_SLASH] = ACTIONS(497), - [anon_sym_SLASH_STAR] = ACTIONS(499), - [anon_sym_SEMI] = ACTIONS(2285), - [anon_sym_DOT] = ACTIONS(2285), - [anon_sym_as] = ACTIONS(2285), - [anon_sym_LBRACE] = ACTIONS(2285), - [anon_sym_COMMA] = ACTIONS(2285), - [anon_sym_RBRACE] = ACTIONS(2285), - [anon_sym_LPAREN] = ACTIONS(2285), - [anon_sym_RPAREN] = ACTIONS(2285), - [anon_sym_PIPE] = ACTIONS(2285), - [anon_sym_fn] = ACTIONS(2285), - [anon_sym_PLUS] = ACTIONS(2285), - [anon_sym_DASH] = ACTIONS(2285), - [anon_sym_STAR] = ACTIONS(2285), - [anon_sym_SLASH] = ACTIONS(2285), - [anon_sym_PERCENT] = ACTIONS(2285), - [anon_sym_LT] = ACTIONS(2285), - [anon_sym_GT] = ACTIONS(2285), - [anon_sym_EQ_EQ] = ACTIONS(2285), - [anon_sym_BANG_EQ] = ACTIONS(2285), - [anon_sym_LT_EQ] = ACTIONS(2285), - [anon_sym_GT_EQ] = ACTIONS(2285), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2285), - [anon_sym_LBRACK] = ACTIONS(2283), - [anon_sym_struct] = ACTIONS(2285), - [anon_sym_mut] = ACTIONS(2285), - [anon_sym_PLUS_PLUS] = ACTIONS(2285), - [anon_sym_DASH_DASH] = ACTIONS(2285), - [anon_sym_QMARK] = ACTIONS(2285), - [anon_sym_BANG] = ACTIONS(2285), - [anon_sym_go] = ACTIONS(2285), - [anon_sym_spawn] = ACTIONS(2285), - [anon_sym_json_DOTdecode] = ACTIONS(2285), - [anon_sym_LBRACK2] = ACTIONS(2285), - [anon_sym_TILDE] = ACTIONS(2285), - [anon_sym_CARET] = ACTIONS(2285), - [anon_sym_AMP] = ACTIONS(2285), - [anon_sym_LT_DASH] = ACTIONS(2285), - [anon_sym_LT_LT] = ACTIONS(2285), - [anon_sym_GT_GT] = ACTIONS(2285), - [anon_sym_GT_GT_GT] = ACTIONS(2285), - [anon_sym_AMP_CARET] = ACTIONS(2285), - [anon_sym_AMP_AMP] = ACTIONS(2285), - [anon_sym_PIPE_PIPE] = ACTIONS(2285), - [anon_sym_or] = ACTIONS(2285), - [sym_none] = ACTIONS(2285), - [sym_true] = ACTIONS(2285), - [sym_false] = ACTIONS(2285), - [sym_nil] = ACTIONS(2285), - [anon_sym_QMARK_DOT] = ACTIONS(2285), - [anon_sym_POUND_LBRACK] = ACTIONS(2285), - [anon_sym_if] = ACTIONS(2285), - [anon_sym_DOLLARif] = ACTIONS(2285), - [anon_sym_is] = ACTIONS(2285), - [anon_sym_BANGis] = ACTIONS(2285), - [anon_sym_in] = ACTIONS(2285), - [anon_sym_BANGin] = ACTIONS(2285), - [anon_sym_match] = ACTIONS(2285), - [anon_sym_select] = ACTIONS(2285), - [anon_sym_lock] = ACTIONS(2285), - [anon_sym_rlock] = ACTIONS(2285), - [anon_sym_unsafe] = ACTIONS(2285), - [anon_sym_sql] = ACTIONS(2285), - [sym_int_literal] = ACTIONS(2285), - [sym_float_literal] = ACTIONS(2285), - [sym_rune_literal] = ACTIONS(2285), - [sym_pseudo_compile_time_identifier] = ACTIONS(2285), - [anon_sym_shared] = ACTIONS(2285), - [anon_sym_map_LBRACK] = ACTIONS(2285), - [anon_sym_chan] = ACTIONS(2285), - [anon_sym_thread] = ACTIONS(2285), - [anon_sym_atomic] = ACTIONS(2285), - [sym___double_quote] = ACTIONS(2285), - [sym___single_quote] = ACTIONS(2285), - [sym___c_double_quote] = ACTIONS(2285), - [sym___c_single_quote] = ACTIONS(2285), - [sym___r_double_quote] = ACTIONS(2285), - [sym___r_single_quote] = ACTIONS(2285), - }, - [1177] = { - [sym_line_comment] = STATE(1177), - [sym_block_comment] = STATE(1177), - [sym_identifier] = ACTIONS(2477), - [anon_sym_LF] = ACTIONS(2477), - [anon_sym_CR] = ACTIONS(2477), - [anon_sym_CR_LF] = ACTIONS(2477), - [anon_sym_SLASH_SLASH] = ACTIONS(497), - [anon_sym_SLASH_STAR] = ACTIONS(499), - [anon_sym_SEMI] = ACTIONS(2477), - [anon_sym_DOT] = ACTIONS(2477), - [anon_sym_as] = ACTIONS(2477), - [anon_sym_LBRACE] = ACTIONS(2477), - [anon_sym_COMMA] = ACTIONS(2477), - [anon_sym_RBRACE] = ACTIONS(2477), - [anon_sym_LPAREN] = ACTIONS(2477), - [anon_sym_RPAREN] = ACTIONS(2477), - [anon_sym_PIPE] = ACTIONS(2477), - [anon_sym_fn] = ACTIONS(2477), - [anon_sym_PLUS] = ACTIONS(2477), - [anon_sym_DASH] = ACTIONS(2477), - [anon_sym_STAR] = ACTIONS(2477), - [anon_sym_SLASH] = ACTIONS(2477), - [anon_sym_PERCENT] = ACTIONS(2477), - [anon_sym_LT] = ACTIONS(2477), - [anon_sym_GT] = ACTIONS(2477), - [anon_sym_EQ_EQ] = ACTIONS(2477), - [anon_sym_BANG_EQ] = ACTIONS(2477), - [anon_sym_LT_EQ] = ACTIONS(2477), - [anon_sym_GT_EQ] = ACTIONS(2477), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2477), - [anon_sym_LBRACK] = ACTIONS(2475), - [anon_sym_struct] = ACTIONS(2477), - [anon_sym_mut] = ACTIONS(2477), - [anon_sym_PLUS_PLUS] = ACTIONS(2477), - [anon_sym_DASH_DASH] = ACTIONS(2477), - [anon_sym_QMARK] = ACTIONS(2477), - [anon_sym_BANG] = ACTIONS(2477), - [anon_sym_go] = ACTIONS(2477), - [anon_sym_spawn] = ACTIONS(2477), - [anon_sym_json_DOTdecode] = ACTIONS(2477), - [anon_sym_LBRACK2] = ACTIONS(2477), - [anon_sym_TILDE] = ACTIONS(2477), - [anon_sym_CARET] = ACTIONS(2477), - [anon_sym_AMP] = ACTIONS(2477), - [anon_sym_LT_DASH] = ACTIONS(2477), - [anon_sym_LT_LT] = ACTIONS(2477), - [anon_sym_GT_GT] = ACTIONS(2477), - [anon_sym_GT_GT_GT] = ACTIONS(2477), - [anon_sym_AMP_CARET] = ACTIONS(2477), - [anon_sym_AMP_AMP] = ACTIONS(2477), - [anon_sym_PIPE_PIPE] = ACTIONS(2477), - [anon_sym_or] = ACTIONS(2477), - [sym_none] = ACTIONS(2477), - [sym_true] = ACTIONS(2477), - [sym_false] = ACTIONS(2477), - [sym_nil] = ACTIONS(2477), - [anon_sym_QMARK_DOT] = ACTIONS(2477), - [anon_sym_POUND_LBRACK] = ACTIONS(2477), - [anon_sym_if] = ACTIONS(2477), - [anon_sym_DOLLARif] = ACTIONS(2477), - [anon_sym_is] = ACTIONS(2477), - [anon_sym_BANGis] = ACTIONS(2477), - [anon_sym_in] = ACTIONS(2477), - [anon_sym_BANGin] = ACTIONS(2477), - [anon_sym_match] = ACTIONS(2477), - [anon_sym_select] = ACTIONS(2477), - [anon_sym_lock] = ACTIONS(2477), - [anon_sym_rlock] = ACTIONS(2477), - [anon_sym_unsafe] = ACTIONS(2477), - [anon_sym_sql] = ACTIONS(2477), - [sym_int_literal] = ACTIONS(2477), - [sym_float_literal] = ACTIONS(2477), - [sym_rune_literal] = ACTIONS(2477), - [sym_pseudo_compile_time_identifier] = ACTIONS(2477), - [anon_sym_shared] = ACTIONS(2477), - [anon_sym_map_LBRACK] = ACTIONS(2477), - [anon_sym_chan] = ACTIONS(2477), - [anon_sym_thread] = ACTIONS(2477), - [anon_sym_atomic] = ACTIONS(2477), - [sym___double_quote] = ACTIONS(2477), - [sym___single_quote] = ACTIONS(2477), - [sym___c_double_quote] = ACTIONS(2477), - [sym___c_single_quote] = ACTIONS(2477), - [sym___r_double_quote] = ACTIONS(2477), - [sym___r_single_quote] = ACTIONS(2477), - }, - [1178] = { - [sym_line_comment] = STATE(1178), - [sym_block_comment] = STATE(1178), - [sym_identifier] = ACTIONS(2247), - [anon_sym_LF] = ACTIONS(2247), - [anon_sym_CR] = ACTIONS(2247), - [anon_sym_CR_LF] = ACTIONS(2247), - [anon_sym_SLASH_SLASH] = ACTIONS(497), - [anon_sym_SLASH_STAR] = ACTIONS(499), - [anon_sym_SEMI] = ACTIONS(2247), - [anon_sym_DOT] = ACTIONS(2247), - [anon_sym_as] = ACTIONS(2247), - [anon_sym_LBRACE] = ACTIONS(2247), - [anon_sym_COMMA] = ACTIONS(2247), - [anon_sym_RBRACE] = ACTIONS(2247), - [anon_sym_LPAREN] = ACTIONS(2247), - [anon_sym_RPAREN] = ACTIONS(2247), - [anon_sym_PIPE] = ACTIONS(2247), - [anon_sym_fn] = ACTIONS(2247), - [anon_sym_PLUS] = ACTIONS(2247), - [anon_sym_DASH] = ACTIONS(2247), - [anon_sym_STAR] = ACTIONS(2247), - [anon_sym_SLASH] = ACTIONS(2247), - [anon_sym_PERCENT] = ACTIONS(2247), - [anon_sym_LT] = ACTIONS(2247), - [anon_sym_GT] = ACTIONS(2247), - [anon_sym_EQ_EQ] = ACTIONS(2247), - [anon_sym_BANG_EQ] = ACTIONS(2247), - [anon_sym_LT_EQ] = ACTIONS(2247), - [anon_sym_GT_EQ] = ACTIONS(2247), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2247), - [anon_sym_LBRACK] = ACTIONS(2245), - [anon_sym_struct] = ACTIONS(2247), - [anon_sym_mut] = ACTIONS(2247), - [anon_sym_PLUS_PLUS] = ACTIONS(2247), - [anon_sym_DASH_DASH] = ACTIONS(2247), - [anon_sym_QMARK] = ACTIONS(2247), - [anon_sym_BANG] = ACTIONS(2247), - [anon_sym_go] = ACTIONS(2247), - [anon_sym_spawn] = ACTIONS(2247), - [anon_sym_json_DOTdecode] = ACTIONS(2247), - [anon_sym_LBRACK2] = ACTIONS(2247), - [anon_sym_TILDE] = ACTIONS(2247), - [anon_sym_CARET] = ACTIONS(2247), - [anon_sym_AMP] = ACTIONS(2247), - [anon_sym_LT_DASH] = ACTIONS(2247), - [anon_sym_LT_LT] = ACTIONS(2247), - [anon_sym_GT_GT] = ACTIONS(2247), - [anon_sym_GT_GT_GT] = ACTIONS(2247), - [anon_sym_AMP_CARET] = ACTIONS(2247), - [anon_sym_AMP_AMP] = ACTIONS(2247), - [anon_sym_PIPE_PIPE] = ACTIONS(2247), - [anon_sym_or] = ACTIONS(2247), - [sym_none] = ACTIONS(2247), - [sym_true] = ACTIONS(2247), - [sym_false] = ACTIONS(2247), - [sym_nil] = ACTIONS(2247), - [anon_sym_QMARK_DOT] = ACTIONS(2247), - [anon_sym_POUND_LBRACK] = ACTIONS(2247), - [anon_sym_if] = ACTIONS(2247), - [anon_sym_DOLLARif] = ACTIONS(2247), - [anon_sym_is] = ACTIONS(2247), - [anon_sym_BANGis] = ACTIONS(2247), - [anon_sym_in] = ACTIONS(2247), - [anon_sym_BANGin] = ACTIONS(2247), - [anon_sym_match] = ACTIONS(2247), - [anon_sym_select] = ACTIONS(2247), - [anon_sym_lock] = ACTIONS(2247), - [anon_sym_rlock] = ACTIONS(2247), - [anon_sym_unsafe] = ACTIONS(2247), - [anon_sym_sql] = ACTIONS(2247), - [sym_int_literal] = ACTIONS(2247), - [sym_float_literal] = ACTIONS(2247), - [sym_rune_literal] = ACTIONS(2247), - [sym_pseudo_compile_time_identifier] = ACTIONS(2247), - [anon_sym_shared] = ACTIONS(2247), - [anon_sym_map_LBRACK] = ACTIONS(2247), - [anon_sym_chan] = ACTIONS(2247), - [anon_sym_thread] = ACTIONS(2247), - [anon_sym_atomic] = ACTIONS(2247), - [sym___double_quote] = ACTIONS(2247), - [sym___single_quote] = ACTIONS(2247), - [sym___c_double_quote] = ACTIONS(2247), - [sym___c_single_quote] = ACTIONS(2247), - [sym___r_double_quote] = ACTIONS(2247), - [sym___r_single_quote] = ACTIONS(2247), - }, - [1179] = { - [sym_line_comment] = STATE(1179), - [sym_block_comment] = STATE(1179), - [sym_identifier] = ACTIONS(2121), - [anon_sym_LF] = ACTIONS(2121), - [anon_sym_CR] = ACTIONS(2121), - [anon_sym_CR_LF] = ACTIONS(2121), - [anon_sym_SLASH_SLASH] = ACTIONS(497), - [anon_sym_SLASH_STAR] = ACTIONS(499), - [anon_sym_SEMI] = ACTIONS(2121), - [anon_sym_DOT] = ACTIONS(2121), - [anon_sym_as] = ACTIONS(2121), - [anon_sym_LBRACE] = ACTIONS(2121), - [anon_sym_COMMA] = ACTIONS(2121), - [anon_sym_RBRACE] = ACTIONS(2121), - [anon_sym_LPAREN] = ACTIONS(2121), - [anon_sym_RPAREN] = ACTIONS(2121), - [anon_sym_PIPE] = ACTIONS(2121), - [anon_sym_fn] = ACTIONS(2121), - [anon_sym_PLUS] = ACTIONS(2121), - [anon_sym_DASH] = ACTIONS(2121), - [anon_sym_STAR] = ACTIONS(2121), - [anon_sym_SLASH] = ACTIONS(2121), - [anon_sym_PERCENT] = ACTIONS(2121), - [anon_sym_LT] = ACTIONS(2121), - [anon_sym_GT] = ACTIONS(2121), - [anon_sym_EQ_EQ] = ACTIONS(2121), - [anon_sym_BANG_EQ] = ACTIONS(2121), - [anon_sym_LT_EQ] = ACTIONS(2121), - [anon_sym_GT_EQ] = ACTIONS(2121), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2121), - [anon_sym_LBRACK] = ACTIONS(2119), - [anon_sym_struct] = ACTIONS(2121), - [anon_sym_mut] = ACTIONS(2121), - [anon_sym_PLUS_PLUS] = ACTIONS(2121), - [anon_sym_DASH_DASH] = ACTIONS(2121), - [anon_sym_QMARK] = ACTIONS(2121), - [anon_sym_BANG] = ACTIONS(2121), - [anon_sym_go] = ACTIONS(2121), - [anon_sym_spawn] = ACTIONS(2121), - [anon_sym_json_DOTdecode] = ACTIONS(2121), - [anon_sym_LBRACK2] = ACTIONS(2121), - [anon_sym_TILDE] = ACTIONS(2121), - [anon_sym_CARET] = ACTIONS(2121), - [anon_sym_AMP] = ACTIONS(2121), - [anon_sym_LT_DASH] = ACTIONS(2121), - [anon_sym_LT_LT] = ACTIONS(2121), - [anon_sym_GT_GT] = ACTIONS(2121), - [anon_sym_GT_GT_GT] = ACTIONS(2121), - [anon_sym_AMP_CARET] = ACTIONS(2121), - [anon_sym_AMP_AMP] = ACTIONS(2121), - [anon_sym_PIPE_PIPE] = ACTIONS(2121), - [anon_sym_or] = ACTIONS(2121), - [sym_none] = ACTIONS(2121), - [sym_true] = ACTIONS(2121), - [sym_false] = ACTIONS(2121), - [sym_nil] = ACTIONS(2121), - [anon_sym_QMARK_DOT] = ACTIONS(2121), - [anon_sym_POUND_LBRACK] = ACTIONS(2121), - [anon_sym_if] = ACTIONS(2121), - [anon_sym_DOLLARif] = ACTIONS(2121), - [anon_sym_is] = ACTIONS(2121), - [anon_sym_BANGis] = ACTIONS(2121), - [anon_sym_in] = ACTIONS(2121), - [anon_sym_BANGin] = ACTIONS(2121), - [anon_sym_match] = ACTIONS(2121), - [anon_sym_select] = ACTIONS(2121), - [anon_sym_lock] = ACTIONS(2121), - [anon_sym_rlock] = ACTIONS(2121), - [anon_sym_unsafe] = ACTIONS(2121), - [anon_sym_sql] = ACTIONS(2121), - [sym_int_literal] = ACTIONS(2121), - [sym_float_literal] = ACTIONS(2121), - [sym_rune_literal] = ACTIONS(2121), - [sym_pseudo_compile_time_identifier] = ACTIONS(2121), - [anon_sym_shared] = ACTIONS(2121), - [anon_sym_map_LBRACK] = ACTIONS(2121), - [anon_sym_chan] = ACTIONS(2121), - [anon_sym_thread] = ACTIONS(2121), - [anon_sym_atomic] = ACTIONS(2121), - [sym___double_quote] = ACTIONS(2121), - [sym___single_quote] = ACTIONS(2121), - [sym___c_double_quote] = ACTIONS(2121), - [sym___c_single_quote] = ACTIONS(2121), - [sym___r_double_quote] = ACTIONS(2121), - [sym___r_single_quote] = ACTIONS(2121), - }, - [1180] = { - [sym_line_comment] = STATE(1180), - [sym_block_comment] = STATE(1180), - [sym_identifier] = ACTIONS(2239), - [anon_sym_LF] = ACTIONS(2239), - [anon_sym_CR] = ACTIONS(2239), - [anon_sym_CR_LF] = ACTIONS(2239), - [anon_sym_SLASH_SLASH] = ACTIONS(497), - [anon_sym_SLASH_STAR] = ACTIONS(499), - [anon_sym_SEMI] = ACTIONS(2239), - [anon_sym_DOT] = ACTIONS(2239), - [anon_sym_as] = ACTIONS(2239), - [anon_sym_LBRACE] = ACTIONS(2239), - [anon_sym_COMMA] = ACTIONS(2239), - [anon_sym_RBRACE] = ACTIONS(2239), - [anon_sym_LPAREN] = ACTIONS(2239), - [anon_sym_RPAREN] = ACTIONS(2239), - [anon_sym_PIPE] = ACTIONS(2239), - [anon_sym_fn] = ACTIONS(2239), - [anon_sym_PLUS] = ACTIONS(2239), - [anon_sym_DASH] = ACTIONS(2239), - [anon_sym_STAR] = ACTIONS(2239), - [anon_sym_SLASH] = ACTIONS(2239), - [anon_sym_PERCENT] = ACTIONS(2239), - [anon_sym_LT] = ACTIONS(2239), - [anon_sym_GT] = ACTIONS(2239), - [anon_sym_EQ_EQ] = ACTIONS(2239), - [anon_sym_BANG_EQ] = ACTIONS(2239), - [anon_sym_LT_EQ] = ACTIONS(2239), - [anon_sym_GT_EQ] = ACTIONS(2239), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2239), - [anon_sym_LBRACK] = ACTIONS(2237), - [anon_sym_struct] = ACTIONS(2239), - [anon_sym_mut] = ACTIONS(2239), - [anon_sym_PLUS_PLUS] = ACTIONS(2239), - [anon_sym_DASH_DASH] = ACTIONS(2239), - [anon_sym_QMARK] = ACTIONS(2239), - [anon_sym_BANG] = ACTIONS(2239), - [anon_sym_go] = ACTIONS(2239), - [anon_sym_spawn] = ACTIONS(2239), - [anon_sym_json_DOTdecode] = ACTIONS(2239), - [anon_sym_LBRACK2] = ACTIONS(2239), - [anon_sym_TILDE] = ACTIONS(2239), - [anon_sym_CARET] = ACTIONS(2239), - [anon_sym_AMP] = ACTIONS(2239), - [anon_sym_LT_DASH] = ACTIONS(2239), - [anon_sym_LT_LT] = ACTIONS(2239), - [anon_sym_GT_GT] = ACTIONS(2239), - [anon_sym_GT_GT_GT] = ACTIONS(2239), - [anon_sym_AMP_CARET] = ACTIONS(2239), - [anon_sym_AMP_AMP] = ACTIONS(2239), - [anon_sym_PIPE_PIPE] = ACTIONS(2239), - [anon_sym_or] = ACTIONS(2239), - [sym_none] = ACTIONS(2239), - [sym_true] = ACTIONS(2239), - [sym_false] = ACTIONS(2239), - [sym_nil] = ACTIONS(2239), - [anon_sym_QMARK_DOT] = ACTIONS(2239), - [anon_sym_POUND_LBRACK] = ACTIONS(2239), - [anon_sym_if] = ACTIONS(2239), - [anon_sym_DOLLARif] = ACTIONS(2239), - [anon_sym_is] = ACTIONS(2239), - [anon_sym_BANGis] = ACTIONS(2239), - [anon_sym_in] = ACTIONS(2239), - [anon_sym_BANGin] = ACTIONS(2239), - [anon_sym_match] = ACTIONS(2239), - [anon_sym_select] = ACTIONS(2239), - [anon_sym_lock] = ACTIONS(2239), - [anon_sym_rlock] = ACTIONS(2239), - [anon_sym_unsafe] = ACTIONS(2239), - [anon_sym_sql] = ACTIONS(2239), - [sym_int_literal] = ACTIONS(2239), - [sym_float_literal] = ACTIONS(2239), - [sym_rune_literal] = ACTIONS(2239), - [sym_pseudo_compile_time_identifier] = ACTIONS(2239), - [anon_sym_shared] = ACTIONS(2239), - [anon_sym_map_LBRACK] = ACTIONS(2239), - [anon_sym_chan] = ACTIONS(2239), - [anon_sym_thread] = ACTIONS(2239), - [anon_sym_atomic] = ACTIONS(2239), - [sym___double_quote] = ACTIONS(2239), - [sym___single_quote] = ACTIONS(2239), - [sym___c_double_quote] = ACTIONS(2239), - [sym___c_single_quote] = ACTIONS(2239), - [sym___r_double_quote] = ACTIONS(2239), - [sym___r_single_quote] = ACTIONS(2239), - }, - [1181] = { - [sym_line_comment] = STATE(1181), - [sym_block_comment] = STATE(1181), - [sym_identifier] = ACTIONS(2761), - [anon_sym_LF] = ACTIONS(2761), - [anon_sym_CR] = ACTIONS(2761), - [anon_sym_CR_LF] = ACTIONS(2761), - [anon_sym_SLASH_SLASH] = ACTIONS(497), - [anon_sym_SLASH_STAR] = ACTIONS(499), - [anon_sym_SEMI] = ACTIONS(2761), - [anon_sym_DOT] = ACTIONS(2763), - [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), - }, - [1182] = { - [sym_line_comment] = STATE(1182), - [sym_block_comment] = STATE(1182), - [sym_identifier] = ACTIONS(2912), - [anon_sym_LF] = ACTIONS(2912), - [anon_sym_CR] = ACTIONS(2912), - [anon_sym_CR_LF] = ACTIONS(2912), - [anon_sym_SLASH_SLASH] = ACTIONS(497), - [anon_sym_SLASH_STAR] = ACTIONS(499), - [anon_sym_SEMI] = ACTIONS(2912), - [anon_sym_DOT] = ACTIONS(2912), - [anon_sym_as] = ACTIONS(2912), - [anon_sym_LBRACE] = ACTIONS(2912), - [anon_sym_COMMA] = ACTIONS(2912), - [anon_sym_RBRACE] = ACTIONS(2912), - [anon_sym_LPAREN] = ACTIONS(2912), - [anon_sym_RPAREN] = ACTIONS(2912), - [anon_sym_PIPE] = ACTIONS(2912), - [anon_sym_fn] = ACTIONS(2912), - [anon_sym_PLUS] = ACTIONS(2912), - [anon_sym_DASH] = ACTIONS(2912), - [anon_sym_STAR] = ACTIONS(2912), - [anon_sym_SLASH] = ACTIONS(2912), - [anon_sym_PERCENT] = ACTIONS(2912), - [anon_sym_LT] = ACTIONS(2912), - [anon_sym_GT] = ACTIONS(2912), - [anon_sym_EQ_EQ] = ACTIONS(2912), - [anon_sym_BANG_EQ] = ACTIONS(2912), - [anon_sym_LT_EQ] = ACTIONS(2912), - [anon_sym_GT_EQ] = ACTIONS(2912), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2912), - [anon_sym_LBRACK] = ACTIONS(2910), - [anon_sym_struct] = ACTIONS(2912), - [anon_sym_mut] = ACTIONS(2912), - [anon_sym_PLUS_PLUS] = ACTIONS(2912), - [anon_sym_DASH_DASH] = ACTIONS(2912), - [anon_sym_QMARK] = ACTIONS(2912), - [anon_sym_BANG] = ACTIONS(2912), - [anon_sym_go] = ACTIONS(2912), - [anon_sym_spawn] = ACTIONS(2912), - [anon_sym_json_DOTdecode] = ACTIONS(2912), - [anon_sym_LBRACK2] = ACTIONS(2912), - [anon_sym_TILDE] = ACTIONS(2912), - [anon_sym_CARET] = ACTIONS(2912), - [anon_sym_AMP] = ACTIONS(2912), - [anon_sym_LT_DASH] = ACTIONS(2912), - [anon_sym_LT_LT] = ACTIONS(2912), - [anon_sym_GT_GT] = ACTIONS(2912), - [anon_sym_GT_GT_GT] = ACTIONS(2912), - [anon_sym_AMP_CARET] = ACTIONS(2912), - [anon_sym_AMP_AMP] = ACTIONS(2912), - [anon_sym_PIPE_PIPE] = ACTIONS(2912), - [anon_sym_or] = ACTIONS(2912), - [sym_none] = ACTIONS(2912), - [sym_true] = ACTIONS(2912), - [sym_false] = ACTIONS(2912), - [sym_nil] = ACTIONS(2912), - [anon_sym_QMARK_DOT] = ACTIONS(2912), - [anon_sym_POUND_LBRACK] = ACTIONS(2912), - [anon_sym_if] = ACTIONS(2912), - [anon_sym_DOLLARif] = ACTIONS(2912), - [anon_sym_is] = ACTIONS(2912), - [anon_sym_BANGis] = ACTIONS(2912), - [anon_sym_in] = ACTIONS(2912), - [anon_sym_BANGin] = ACTIONS(2912), - [anon_sym_match] = ACTIONS(2912), - [anon_sym_select] = ACTIONS(2912), - [anon_sym_lock] = ACTIONS(2912), - [anon_sym_rlock] = ACTIONS(2912), - [anon_sym_unsafe] = ACTIONS(2912), - [anon_sym_sql] = ACTIONS(2912), - [sym_int_literal] = ACTIONS(2912), - [sym_float_literal] = ACTIONS(2912), - [sym_rune_literal] = ACTIONS(2912), - [sym_pseudo_compile_time_identifier] = ACTIONS(2912), - [anon_sym_shared] = ACTIONS(2912), - [anon_sym_map_LBRACK] = ACTIONS(2912), - [anon_sym_chan] = ACTIONS(2912), - [anon_sym_thread] = ACTIONS(2912), - [anon_sym_atomic] = ACTIONS(2912), - [sym___double_quote] = ACTIONS(2912), - [sym___single_quote] = ACTIONS(2912), - [sym___c_double_quote] = ACTIONS(2912), - [sym___c_single_quote] = ACTIONS(2912), - [sym___r_double_quote] = ACTIONS(2912), - [sym___r_single_quote] = ACTIONS(2912), - }, - [1183] = { - [sym_line_comment] = STATE(1183), - [sym_block_comment] = STATE(1183), - [sym_identifier] = ACTIONS(2687), - [anon_sym_LF] = ACTIONS(2687), - [anon_sym_CR] = ACTIONS(2687), - [anon_sym_CR_LF] = ACTIONS(2687), - [anon_sym_SLASH_SLASH] = ACTIONS(497), - [anon_sym_SLASH_STAR] = ACTIONS(499), - [anon_sym_SEMI] = ACTIONS(2687), - [anon_sym_DOT] = ACTIONS(2687), - [anon_sym_as] = ACTIONS(2687), - [anon_sym_LBRACE] = ACTIONS(2687), - [anon_sym_COMMA] = ACTIONS(2687), - [anon_sym_RBRACE] = ACTIONS(2687), - [anon_sym_LPAREN] = ACTIONS(2687), - [anon_sym_RPAREN] = ACTIONS(2687), - [anon_sym_PIPE] = ACTIONS(2687), - [anon_sym_fn] = ACTIONS(2687), - [anon_sym_PLUS] = ACTIONS(2687), - [anon_sym_DASH] = ACTIONS(2687), - [anon_sym_STAR] = ACTIONS(2687), - [anon_sym_SLASH] = ACTIONS(2687), - [anon_sym_PERCENT] = ACTIONS(2687), - [anon_sym_LT] = ACTIONS(2687), - [anon_sym_GT] = ACTIONS(2687), - [anon_sym_EQ_EQ] = ACTIONS(2687), - [anon_sym_BANG_EQ] = ACTIONS(2687), - [anon_sym_LT_EQ] = ACTIONS(2687), - [anon_sym_GT_EQ] = ACTIONS(2687), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2687), - [anon_sym_LBRACK] = ACTIONS(2685), - [anon_sym_struct] = ACTIONS(2687), - [anon_sym_mut] = ACTIONS(2687), - [anon_sym_PLUS_PLUS] = ACTIONS(2687), - [anon_sym_DASH_DASH] = ACTIONS(2687), - [anon_sym_QMARK] = ACTIONS(2687), - [anon_sym_BANG] = ACTIONS(2687), - [anon_sym_go] = ACTIONS(2687), - [anon_sym_spawn] = ACTIONS(2687), - [anon_sym_json_DOTdecode] = ACTIONS(2687), - [anon_sym_LBRACK2] = ACTIONS(2687), - [anon_sym_TILDE] = ACTIONS(2687), - [anon_sym_CARET] = ACTIONS(2687), - [anon_sym_AMP] = ACTIONS(2687), - [anon_sym_LT_DASH] = ACTIONS(2687), - [anon_sym_LT_LT] = ACTIONS(2687), - [anon_sym_GT_GT] = ACTIONS(2687), - [anon_sym_GT_GT_GT] = ACTIONS(2687), - [anon_sym_AMP_CARET] = ACTIONS(2687), - [anon_sym_AMP_AMP] = ACTIONS(2687), - [anon_sym_PIPE_PIPE] = ACTIONS(2687), - [anon_sym_or] = ACTIONS(2687), - [sym_none] = ACTIONS(2687), - [sym_true] = ACTIONS(2687), - [sym_false] = ACTIONS(2687), - [sym_nil] = ACTIONS(2687), - [anon_sym_QMARK_DOT] = ACTIONS(2687), - [anon_sym_POUND_LBRACK] = ACTIONS(2687), - [anon_sym_if] = ACTIONS(2687), - [anon_sym_DOLLARif] = ACTIONS(2687), - [anon_sym_is] = ACTIONS(2687), - [anon_sym_BANGis] = ACTIONS(2687), - [anon_sym_in] = ACTIONS(2687), - [anon_sym_BANGin] = ACTIONS(2687), - [anon_sym_match] = ACTIONS(2687), - [anon_sym_select] = ACTIONS(2687), - [anon_sym_lock] = ACTIONS(2687), - [anon_sym_rlock] = ACTIONS(2687), - [anon_sym_unsafe] = ACTIONS(2687), - [anon_sym_sql] = ACTIONS(2687), - [sym_int_literal] = ACTIONS(2687), - [sym_float_literal] = ACTIONS(2687), - [sym_rune_literal] = ACTIONS(2687), - [sym_pseudo_compile_time_identifier] = ACTIONS(2687), - [anon_sym_shared] = ACTIONS(2687), - [anon_sym_map_LBRACK] = ACTIONS(2687), - [anon_sym_chan] = ACTIONS(2687), - [anon_sym_thread] = ACTIONS(2687), - [anon_sym_atomic] = ACTIONS(2687), - [sym___double_quote] = ACTIONS(2687), - [sym___single_quote] = ACTIONS(2687), - [sym___c_double_quote] = ACTIONS(2687), - [sym___c_single_quote] = ACTIONS(2687), - [sym___r_double_quote] = ACTIONS(2687), - [sym___r_single_quote] = ACTIONS(2687), - }, - [1184] = { - [sym_line_comment] = STATE(1184), - [sym_block_comment] = STATE(1184), - [sym_identifier] = ACTIONS(2225), - [anon_sym_LF] = ACTIONS(2225), - [anon_sym_CR] = ACTIONS(2225), - [anon_sym_CR_LF] = ACTIONS(2225), - [anon_sym_SLASH_SLASH] = ACTIONS(497), - [anon_sym_SLASH_STAR] = ACTIONS(499), - [anon_sym_SEMI] = ACTIONS(2225), - [anon_sym_DOT] = ACTIONS(2225), - [anon_sym_as] = ACTIONS(2225), - [anon_sym_LBRACE] = ACTIONS(2225), - [anon_sym_COMMA] = ACTIONS(2225), - [anon_sym_RBRACE] = ACTIONS(2225), - [anon_sym_LPAREN] = ACTIONS(2225), - [anon_sym_RPAREN] = ACTIONS(2225), - [anon_sym_PIPE] = ACTIONS(2225), - [anon_sym_fn] = ACTIONS(2225), - [anon_sym_PLUS] = ACTIONS(2225), - [anon_sym_DASH] = ACTIONS(2225), - [anon_sym_STAR] = ACTIONS(2225), - [anon_sym_SLASH] = ACTIONS(2225), - [anon_sym_PERCENT] = ACTIONS(2225), - [anon_sym_LT] = ACTIONS(2225), - [anon_sym_GT] = ACTIONS(2225), - [anon_sym_EQ_EQ] = ACTIONS(2225), - [anon_sym_BANG_EQ] = ACTIONS(2225), - [anon_sym_LT_EQ] = ACTIONS(2225), - [anon_sym_GT_EQ] = ACTIONS(2225), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2225), - [anon_sym_LBRACK] = ACTIONS(2223), - [anon_sym_struct] = ACTIONS(2225), - [anon_sym_mut] = ACTIONS(2225), - [anon_sym_PLUS_PLUS] = ACTIONS(2225), - [anon_sym_DASH_DASH] = ACTIONS(2225), - [anon_sym_QMARK] = ACTIONS(2225), - [anon_sym_BANG] = ACTIONS(2225), - [anon_sym_go] = ACTIONS(2225), - [anon_sym_spawn] = ACTIONS(2225), - [anon_sym_json_DOTdecode] = ACTIONS(2225), - [anon_sym_LBRACK2] = ACTIONS(2225), - [anon_sym_TILDE] = ACTIONS(2225), - [anon_sym_CARET] = ACTIONS(2225), - [anon_sym_AMP] = ACTIONS(2225), - [anon_sym_LT_DASH] = ACTIONS(2225), - [anon_sym_LT_LT] = ACTIONS(2225), - [anon_sym_GT_GT] = ACTIONS(2225), - [anon_sym_GT_GT_GT] = ACTIONS(2225), - [anon_sym_AMP_CARET] = ACTIONS(2225), - [anon_sym_AMP_AMP] = ACTIONS(2225), - [anon_sym_PIPE_PIPE] = ACTIONS(2225), - [anon_sym_or] = ACTIONS(2225), - [sym_none] = ACTIONS(2225), - [sym_true] = ACTIONS(2225), - [sym_false] = ACTIONS(2225), - [sym_nil] = ACTIONS(2225), - [anon_sym_QMARK_DOT] = ACTIONS(2225), - [anon_sym_POUND_LBRACK] = ACTIONS(2225), - [anon_sym_if] = ACTIONS(2225), - [anon_sym_DOLLARif] = ACTIONS(2225), - [anon_sym_is] = ACTIONS(2225), - [anon_sym_BANGis] = ACTIONS(2225), - [anon_sym_in] = ACTIONS(2225), - [anon_sym_BANGin] = ACTIONS(2225), - [anon_sym_match] = ACTIONS(2225), - [anon_sym_select] = ACTIONS(2225), - [anon_sym_lock] = ACTIONS(2225), - [anon_sym_rlock] = ACTIONS(2225), - [anon_sym_unsafe] = ACTIONS(2225), - [anon_sym_sql] = ACTIONS(2225), - [sym_int_literal] = ACTIONS(2225), - [sym_float_literal] = ACTIONS(2225), - [sym_rune_literal] = ACTIONS(2225), - [sym_pseudo_compile_time_identifier] = ACTIONS(2225), - [anon_sym_shared] = ACTIONS(2225), - [anon_sym_map_LBRACK] = ACTIONS(2225), - [anon_sym_chan] = ACTIONS(2225), - [anon_sym_thread] = ACTIONS(2225), - [anon_sym_atomic] = ACTIONS(2225), - [sym___double_quote] = ACTIONS(2225), - [sym___single_quote] = ACTIONS(2225), - [sym___c_double_quote] = ACTIONS(2225), - [sym___c_single_quote] = ACTIONS(2225), - [sym___r_double_quote] = ACTIONS(2225), - [sym___r_single_quote] = ACTIONS(2225), - }, - [1185] = { - [sym_line_comment] = STATE(1185), - [sym_block_comment] = STATE(1185), - [sym_identifier] = ACTIONS(3738), - [anon_sym_LF] = ACTIONS(3741), - [anon_sym_CR] = ACTIONS(3741), - [anon_sym_CR_LF] = ACTIONS(3741), - [anon_sym_SLASH_SLASH] = ACTIONS(497), - [anon_sym_SLASH_STAR] = ACTIONS(499), - [anon_sym_SEMI] = ACTIONS(3741), - [anon_sym_DOT] = ACTIONS(2763), - [anon_sym_as] = ACTIONS(2761), - [anon_sym_LBRACE] = ACTIONS(2761), - [anon_sym_COMMA] = ACTIONS(3741), - [anon_sym_RBRACE] = ACTIONS(3738), - [anon_sym_LPAREN] = 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(3744), - [anon_sym_LBRACK] = ACTIONS(2759), - [anon_sym_struct] = ACTIONS(2761), - [anon_sym_mut] = ACTIONS(2761), - [anon_sym_COLON] = ACTIONS(3746), - [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), - }, - [1186] = { - [sym_line_comment] = STATE(1186), - [sym_block_comment] = STATE(1186), - [sym_identifier] = ACTIONS(2810), - [anon_sym_LF] = ACTIONS(2810), - [anon_sym_CR] = ACTIONS(2810), - [anon_sym_CR_LF] = ACTIONS(2810), - [anon_sym_SLASH_SLASH] = ACTIONS(497), - [anon_sym_SLASH_STAR] = ACTIONS(499), - [anon_sym_SEMI] = ACTIONS(2810), - [anon_sym_DOT] = ACTIONS(2810), - [anon_sym_as] = ACTIONS(2810), - [anon_sym_LBRACE] = ACTIONS(2810), - [anon_sym_COMMA] = ACTIONS(2810), - [anon_sym_RBRACE] = ACTIONS(2810), - [anon_sym_LPAREN] = ACTIONS(2810), - [anon_sym_RPAREN] = ACTIONS(2810), - [anon_sym_PIPE] = ACTIONS(2810), - [anon_sym_fn] = ACTIONS(2810), - [anon_sym_PLUS] = ACTIONS(2810), - [anon_sym_DASH] = ACTIONS(2810), - [anon_sym_STAR] = ACTIONS(2810), - [anon_sym_SLASH] = ACTIONS(2810), - [anon_sym_PERCENT] = ACTIONS(2810), - [anon_sym_LT] = ACTIONS(2810), - [anon_sym_GT] = ACTIONS(2810), - [anon_sym_EQ_EQ] = ACTIONS(2810), - [anon_sym_BANG_EQ] = ACTIONS(2810), - [anon_sym_LT_EQ] = ACTIONS(2810), - [anon_sym_GT_EQ] = ACTIONS(2810), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2810), - [anon_sym_LBRACK] = ACTIONS(2808), - [anon_sym_struct] = ACTIONS(2810), - [anon_sym_mut] = ACTIONS(2810), - [anon_sym_PLUS_PLUS] = ACTIONS(2810), - [anon_sym_DASH_DASH] = ACTIONS(2810), - [anon_sym_QMARK] = ACTIONS(2810), - [anon_sym_BANG] = ACTIONS(2810), - [anon_sym_go] = ACTIONS(2810), - [anon_sym_spawn] = ACTIONS(2810), - [anon_sym_json_DOTdecode] = ACTIONS(2810), - [anon_sym_LBRACK2] = ACTIONS(2810), - [anon_sym_TILDE] = ACTIONS(2810), - [anon_sym_CARET] = ACTIONS(2810), - [anon_sym_AMP] = ACTIONS(2810), - [anon_sym_LT_DASH] = ACTIONS(2810), - [anon_sym_LT_LT] = ACTIONS(2810), - [anon_sym_GT_GT] = ACTIONS(2810), - [anon_sym_GT_GT_GT] = ACTIONS(2810), - [anon_sym_AMP_CARET] = ACTIONS(2810), - [anon_sym_AMP_AMP] = ACTIONS(2810), - [anon_sym_PIPE_PIPE] = ACTIONS(2810), - [anon_sym_or] = ACTIONS(2810), - [sym_none] = ACTIONS(2810), - [sym_true] = ACTIONS(2810), - [sym_false] = ACTIONS(2810), - [sym_nil] = ACTIONS(2810), - [anon_sym_QMARK_DOT] = ACTIONS(2810), - [anon_sym_POUND_LBRACK] = ACTIONS(2810), - [anon_sym_if] = ACTIONS(2810), - [anon_sym_DOLLARif] = ACTIONS(2810), - [anon_sym_is] = ACTIONS(2810), - [anon_sym_BANGis] = ACTIONS(2810), - [anon_sym_in] = ACTIONS(2810), - [anon_sym_BANGin] = ACTIONS(2810), - [anon_sym_match] = ACTIONS(2810), - [anon_sym_select] = ACTIONS(2810), - [anon_sym_lock] = ACTIONS(2810), - [anon_sym_rlock] = ACTIONS(2810), - [anon_sym_unsafe] = ACTIONS(2810), - [anon_sym_sql] = ACTIONS(2810), - [sym_int_literal] = ACTIONS(2810), - [sym_float_literal] = ACTIONS(2810), - [sym_rune_literal] = ACTIONS(2810), - [sym_pseudo_compile_time_identifier] = ACTIONS(2810), - [anon_sym_shared] = ACTIONS(2810), - [anon_sym_map_LBRACK] = ACTIONS(2810), - [anon_sym_chan] = ACTIONS(2810), - [anon_sym_thread] = ACTIONS(2810), - [anon_sym_atomic] = ACTIONS(2810), - [sym___double_quote] = ACTIONS(2810), - [sym___single_quote] = ACTIONS(2810), - [sym___c_double_quote] = ACTIONS(2810), - [sym___c_single_quote] = ACTIONS(2810), - [sym___r_double_quote] = ACTIONS(2810), - [sym___r_single_quote] = ACTIONS(2810), - }, - [1187] = { - [sym_line_comment] = STATE(1187), - [sym_block_comment] = STATE(1187), - [sym_identifier] = ACTIONS(2267), - [anon_sym_LF] = ACTIONS(2267), - [anon_sym_CR] = ACTIONS(2267), - [anon_sym_CR_LF] = ACTIONS(2267), - [anon_sym_SLASH_SLASH] = ACTIONS(497), - [anon_sym_SLASH_STAR] = ACTIONS(499), - [anon_sym_SEMI] = ACTIONS(2267), - [anon_sym_DOT] = ACTIONS(2267), - [anon_sym_as] = ACTIONS(2267), - [anon_sym_LBRACE] = ACTIONS(2267), - [anon_sym_COMMA] = ACTIONS(2267), - [anon_sym_RBRACE] = ACTIONS(2267), - [anon_sym_LPAREN] = ACTIONS(2267), - [anon_sym_RPAREN] = ACTIONS(2267), - [anon_sym_PIPE] = ACTIONS(2267), - [anon_sym_fn] = ACTIONS(2267), - [anon_sym_PLUS] = ACTIONS(2267), - [anon_sym_DASH] = ACTIONS(2267), - [anon_sym_STAR] = ACTIONS(2267), - [anon_sym_SLASH] = ACTIONS(2267), - [anon_sym_PERCENT] = ACTIONS(2267), - [anon_sym_LT] = ACTIONS(2267), - [anon_sym_GT] = ACTIONS(2267), - [anon_sym_EQ_EQ] = ACTIONS(2267), - [anon_sym_BANG_EQ] = ACTIONS(2267), - [anon_sym_LT_EQ] = ACTIONS(2267), - [anon_sym_GT_EQ] = ACTIONS(2267), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2267), - [anon_sym_LBRACK] = ACTIONS(2265), - [anon_sym_struct] = ACTIONS(2267), - [anon_sym_mut] = ACTIONS(2267), - [anon_sym_PLUS_PLUS] = ACTIONS(2267), - [anon_sym_DASH_DASH] = ACTIONS(2267), - [anon_sym_QMARK] = ACTIONS(2267), - [anon_sym_BANG] = ACTIONS(2267), - [anon_sym_go] = ACTIONS(2267), - [anon_sym_spawn] = ACTIONS(2267), - [anon_sym_json_DOTdecode] = ACTIONS(2267), - [anon_sym_LBRACK2] = ACTIONS(2267), - [anon_sym_TILDE] = ACTIONS(2267), - [anon_sym_CARET] = ACTIONS(2267), - [anon_sym_AMP] = ACTIONS(2267), - [anon_sym_LT_DASH] = ACTIONS(2267), - [anon_sym_LT_LT] = ACTIONS(2267), - [anon_sym_GT_GT] = ACTIONS(2267), - [anon_sym_GT_GT_GT] = ACTIONS(2267), - [anon_sym_AMP_CARET] = ACTIONS(2267), - [anon_sym_AMP_AMP] = ACTIONS(2267), - [anon_sym_PIPE_PIPE] = ACTIONS(2267), - [anon_sym_or] = ACTIONS(2267), - [sym_none] = ACTIONS(2267), - [sym_true] = ACTIONS(2267), - [sym_false] = ACTIONS(2267), - [sym_nil] = ACTIONS(2267), - [anon_sym_QMARK_DOT] = ACTIONS(2267), - [anon_sym_POUND_LBRACK] = ACTIONS(2267), - [anon_sym_if] = ACTIONS(2267), - [anon_sym_DOLLARif] = ACTIONS(2267), - [anon_sym_is] = ACTIONS(2267), - [anon_sym_BANGis] = ACTIONS(2267), - [anon_sym_in] = ACTIONS(2267), - [anon_sym_BANGin] = ACTIONS(2267), - [anon_sym_match] = ACTIONS(2267), - [anon_sym_select] = ACTIONS(2267), - [anon_sym_lock] = ACTIONS(2267), - [anon_sym_rlock] = ACTIONS(2267), - [anon_sym_unsafe] = ACTIONS(2267), - [anon_sym_sql] = ACTIONS(2267), - [sym_int_literal] = ACTIONS(2267), - [sym_float_literal] = ACTIONS(2267), - [sym_rune_literal] = ACTIONS(2267), - [sym_pseudo_compile_time_identifier] = ACTIONS(2267), - [anon_sym_shared] = ACTIONS(2267), - [anon_sym_map_LBRACK] = ACTIONS(2267), - [anon_sym_chan] = ACTIONS(2267), - [anon_sym_thread] = ACTIONS(2267), - [anon_sym_atomic] = ACTIONS(2267), - [sym___double_quote] = ACTIONS(2267), - [sym___single_quote] = ACTIONS(2267), - [sym___c_double_quote] = ACTIONS(2267), - [sym___c_single_quote] = ACTIONS(2267), - [sym___r_double_quote] = ACTIONS(2267), - [sym___r_single_quote] = ACTIONS(2267), - }, - [1188] = { - [sym_line_comment] = STATE(1188), - [sym_block_comment] = STATE(1188), - [sym_identifier] = ACTIONS(2273), - [anon_sym_LF] = ACTIONS(2273), - [anon_sym_CR] = ACTIONS(2273), - [anon_sym_CR_LF] = ACTIONS(2273), - [anon_sym_SLASH_SLASH] = ACTIONS(497), - [anon_sym_SLASH_STAR] = ACTIONS(499), - [anon_sym_SEMI] = ACTIONS(2273), - [anon_sym_DOT] = ACTIONS(2273), - [anon_sym_as] = ACTIONS(2273), - [anon_sym_LBRACE] = ACTIONS(2273), - [anon_sym_COMMA] = ACTIONS(2273), - [anon_sym_RBRACE] = ACTIONS(2273), - [anon_sym_LPAREN] = ACTIONS(2273), - [anon_sym_RPAREN] = ACTIONS(2273), - [anon_sym_PIPE] = ACTIONS(2273), - [anon_sym_fn] = ACTIONS(2273), - [anon_sym_PLUS] = ACTIONS(2273), - [anon_sym_DASH] = ACTIONS(2273), - [anon_sym_STAR] = ACTIONS(2273), - [anon_sym_SLASH] = ACTIONS(2273), - [anon_sym_PERCENT] = ACTIONS(2273), - [anon_sym_LT] = ACTIONS(2273), - [anon_sym_GT] = ACTIONS(2273), - [anon_sym_EQ_EQ] = ACTIONS(2273), - [anon_sym_BANG_EQ] = ACTIONS(2273), - [anon_sym_LT_EQ] = ACTIONS(2273), - [anon_sym_GT_EQ] = ACTIONS(2273), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2273), - [anon_sym_LBRACK] = ACTIONS(2271), - [anon_sym_struct] = ACTIONS(2273), - [anon_sym_mut] = ACTIONS(2273), - [anon_sym_PLUS_PLUS] = ACTIONS(2273), - [anon_sym_DASH_DASH] = ACTIONS(2273), - [anon_sym_QMARK] = ACTIONS(2273), - [anon_sym_BANG] = ACTIONS(2273), - [anon_sym_go] = ACTIONS(2273), - [anon_sym_spawn] = ACTIONS(2273), - [anon_sym_json_DOTdecode] = ACTIONS(2273), - [anon_sym_LBRACK2] = ACTIONS(2273), - [anon_sym_TILDE] = ACTIONS(2273), - [anon_sym_CARET] = ACTIONS(2273), - [anon_sym_AMP] = ACTIONS(2273), - [anon_sym_LT_DASH] = ACTIONS(2273), - [anon_sym_LT_LT] = ACTIONS(2273), - [anon_sym_GT_GT] = ACTIONS(2273), - [anon_sym_GT_GT_GT] = ACTIONS(2273), - [anon_sym_AMP_CARET] = ACTIONS(2273), - [anon_sym_AMP_AMP] = ACTIONS(2273), - [anon_sym_PIPE_PIPE] = ACTIONS(2273), - [anon_sym_or] = ACTIONS(2273), - [sym_none] = ACTIONS(2273), - [sym_true] = ACTIONS(2273), - [sym_false] = ACTIONS(2273), - [sym_nil] = ACTIONS(2273), - [anon_sym_QMARK_DOT] = ACTIONS(2273), - [anon_sym_POUND_LBRACK] = ACTIONS(2273), - [anon_sym_if] = ACTIONS(2273), - [anon_sym_DOLLARif] = ACTIONS(2273), - [anon_sym_is] = ACTIONS(2273), - [anon_sym_BANGis] = ACTIONS(2273), - [anon_sym_in] = ACTIONS(2273), - [anon_sym_BANGin] = ACTIONS(2273), - [anon_sym_match] = ACTIONS(2273), - [anon_sym_select] = ACTIONS(2273), - [anon_sym_lock] = ACTIONS(2273), - [anon_sym_rlock] = ACTIONS(2273), - [anon_sym_unsafe] = ACTIONS(2273), - [anon_sym_sql] = ACTIONS(2273), - [sym_int_literal] = ACTIONS(2273), - [sym_float_literal] = ACTIONS(2273), - [sym_rune_literal] = ACTIONS(2273), - [sym_pseudo_compile_time_identifier] = ACTIONS(2273), - [anon_sym_shared] = ACTIONS(2273), - [anon_sym_map_LBRACK] = ACTIONS(2273), - [anon_sym_chan] = ACTIONS(2273), - [anon_sym_thread] = ACTIONS(2273), - [anon_sym_atomic] = ACTIONS(2273), - [sym___double_quote] = ACTIONS(2273), - [sym___single_quote] = ACTIONS(2273), - [sym___c_double_quote] = ACTIONS(2273), - [sym___c_single_quote] = ACTIONS(2273), - [sym___r_double_quote] = ACTIONS(2273), - [sym___r_single_quote] = ACTIONS(2273), - }, - [1189] = { - [sym_line_comment] = STATE(1189), - [sym_block_comment] = STATE(1189), - [sym_identifier] = ACTIONS(2217), - [anon_sym_LF] = ACTIONS(2217), - [anon_sym_CR] = ACTIONS(2217), - [anon_sym_CR_LF] = ACTIONS(2217), - [anon_sym_SLASH_SLASH] = ACTIONS(497), - [anon_sym_SLASH_STAR] = ACTIONS(499), - [anon_sym_SEMI] = ACTIONS(2217), - [anon_sym_DOT] = ACTIONS(2217), - [anon_sym_as] = ACTIONS(2217), - [anon_sym_LBRACE] = ACTIONS(2217), - [anon_sym_COMMA] = ACTIONS(2217), - [anon_sym_RBRACE] = ACTIONS(2217), - [anon_sym_LPAREN] = ACTIONS(2217), - [anon_sym_RPAREN] = ACTIONS(2217), - [anon_sym_PIPE] = ACTIONS(2217), - [anon_sym_fn] = ACTIONS(2217), - [anon_sym_PLUS] = ACTIONS(2217), - [anon_sym_DASH] = ACTIONS(2217), - [anon_sym_STAR] = ACTIONS(2217), - [anon_sym_SLASH] = ACTIONS(2217), - [anon_sym_PERCENT] = ACTIONS(2217), - [anon_sym_LT] = ACTIONS(2217), - [anon_sym_GT] = ACTIONS(2217), - [anon_sym_EQ_EQ] = ACTIONS(2217), - [anon_sym_BANG_EQ] = ACTIONS(2217), - [anon_sym_LT_EQ] = ACTIONS(2217), - [anon_sym_GT_EQ] = ACTIONS(2217), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2217), - [anon_sym_LBRACK] = ACTIONS(2215), - [anon_sym_struct] = ACTIONS(2217), - [anon_sym_mut] = ACTIONS(2217), - [anon_sym_PLUS_PLUS] = ACTIONS(2217), - [anon_sym_DASH_DASH] = ACTIONS(2217), - [anon_sym_QMARK] = ACTIONS(2217), - [anon_sym_BANG] = ACTIONS(2217), - [anon_sym_go] = ACTIONS(2217), - [anon_sym_spawn] = ACTIONS(2217), - [anon_sym_json_DOTdecode] = ACTIONS(2217), - [anon_sym_LBRACK2] = ACTIONS(2217), - [anon_sym_TILDE] = ACTIONS(2217), - [anon_sym_CARET] = ACTIONS(2217), - [anon_sym_AMP] = ACTIONS(2217), - [anon_sym_LT_DASH] = ACTIONS(2217), - [anon_sym_LT_LT] = ACTIONS(2217), - [anon_sym_GT_GT] = ACTIONS(2217), - [anon_sym_GT_GT_GT] = ACTIONS(2217), - [anon_sym_AMP_CARET] = ACTIONS(2217), - [anon_sym_AMP_AMP] = ACTIONS(2217), - [anon_sym_PIPE_PIPE] = ACTIONS(2217), - [anon_sym_or] = ACTIONS(2217), - [sym_none] = ACTIONS(2217), - [sym_true] = ACTIONS(2217), - [sym_false] = ACTIONS(2217), - [sym_nil] = ACTIONS(2217), - [anon_sym_QMARK_DOT] = ACTIONS(2217), - [anon_sym_POUND_LBRACK] = ACTIONS(2217), - [anon_sym_if] = ACTIONS(2217), - [anon_sym_DOLLARif] = ACTIONS(2217), - [anon_sym_is] = ACTIONS(2217), - [anon_sym_BANGis] = ACTIONS(2217), - [anon_sym_in] = ACTIONS(2217), - [anon_sym_BANGin] = ACTIONS(2217), - [anon_sym_match] = ACTIONS(2217), - [anon_sym_select] = ACTIONS(2217), - [anon_sym_lock] = ACTIONS(2217), - [anon_sym_rlock] = ACTIONS(2217), - [anon_sym_unsafe] = ACTIONS(2217), - [anon_sym_sql] = ACTIONS(2217), - [sym_int_literal] = ACTIONS(2217), - [sym_float_literal] = ACTIONS(2217), - [sym_rune_literal] = ACTIONS(2217), - [sym_pseudo_compile_time_identifier] = ACTIONS(2217), - [anon_sym_shared] = ACTIONS(2217), - [anon_sym_map_LBRACK] = ACTIONS(2217), - [anon_sym_chan] = ACTIONS(2217), - [anon_sym_thread] = ACTIONS(2217), - [anon_sym_atomic] = ACTIONS(2217), - [sym___double_quote] = ACTIONS(2217), - [sym___single_quote] = ACTIONS(2217), - [sym___c_double_quote] = ACTIONS(2217), - [sym___c_single_quote] = ACTIONS(2217), - [sym___r_double_quote] = ACTIONS(2217), - [sym___r_single_quote] = ACTIONS(2217), - }, - [1190] = { - [sym_line_comment] = STATE(1190), - [sym_block_comment] = STATE(1190), - [sym_identifier] = ACTIONS(2473), - [anon_sym_LF] = ACTIONS(2473), - [anon_sym_CR] = ACTIONS(2473), - [anon_sym_CR_LF] = ACTIONS(2473), + [1208] = { + [sym_line_comment] = STATE(1208), + [sym_block_comment] = STATE(1208), + [sym_identifier] = ACTIONS(2307), + [anon_sym_LF] = ACTIONS(2307), + [anon_sym_CR] = ACTIONS(2307), + [anon_sym_CR_LF] = ACTIONS(2307), [anon_sym_SLASH_SLASH] = ACTIONS(497), [anon_sym_SLASH_STAR] = ACTIONS(499), - [anon_sym_SEMI] = ACTIONS(2473), - [anon_sym_DOT] = ACTIONS(2473), - [anon_sym_as] = ACTIONS(2473), - [anon_sym_LBRACE] = ACTIONS(2473), - [anon_sym_COMMA] = ACTIONS(2473), - [anon_sym_RBRACE] = ACTIONS(2473), - [anon_sym_LPAREN] = ACTIONS(2473), - [anon_sym_RPAREN] = ACTIONS(2473), - [anon_sym_PIPE] = ACTIONS(2473), - [anon_sym_fn] = ACTIONS(2473), - [anon_sym_PLUS] = ACTIONS(2473), - [anon_sym_DASH] = ACTIONS(2473), - [anon_sym_STAR] = ACTIONS(2473), - [anon_sym_SLASH] = ACTIONS(2473), - [anon_sym_PERCENT] = ACTIONS(2473), - [anon_sym_LT] = ACTIONS(2473), - [anon_sym_GT] = ACTIONS(2473), - [anon_sym_EQ_EQ] = ACTIONS(2473), - [anon_sym_BANG_EQ] = ACTIONS(2473), - [anon_sym_LT_EQ] = ACTIONS(2473), - [anon_sym_GT_EQ] = ACTIONS(2473), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2473), - [anon_sym_LBRACK] = ACTIONS(2471), - [anon_sym_struct] = ACTIONS(2473), - [anon_sym_mut] = ACTIONS(2473), - [anon_sym_PLUS_PLUS] = ACTIONS(2473), - [anon_sym_DASH_DASH] = ACTIONS(2473), - [anon_sym_QMARK] = ACTIONS(2473), - [anon_sym_BANG] = ACTIONS(2473), - [anon_sym_go] = ACTIONS(2473), - [anon_sym_spawn] = ACTIONS(2473), - [anon_sym_json_DOTdecode] = ACTIONS(2473), - [anon_sym_LBRACK2] = ACTIONS(2473), - [anon_sym_TILDE] = ACTIONS(2473), - [anon_sym_CARET] = ACTIONS(2473), - [anon_sym_AMP] = ACTIONS(2473), - [anon_sym_LT_DASH] = ACTIONS(2473), - [anon_sym_LT_LT] = ACTIONS(2473), - [anon_sym_GT_GT] = ACTIONS(2473), - [anon_sym_GT_GT_GT] = ACTIONS(2473), - [anon_sym_AMP_CARET] = ACTIONS(2473), - [anon_sym_AMP_AMP] = ACTIONS(2473), - [anon_sym_PIPE_PIPE] = ACTIONS(2473), - [anon_sym_or] = ACTIONS(2473), - [sym_none] = ACTIONS(2473), - [sym_true] = ACTIONS(2473), - [sym_false] = ACTIONS(2473), - [sym_nil] = ACTIONS(2473), - [anon_sym_QMARK_DOT] = ACTIONS(2473), - [anon_sym_POUND_LBRACK] = ACTIONS(2473), - [anon_sym_if] = ACTIONS(2473), - [anon_sym_DOLLARif] = ACTIONS(2473), - [anon_sym_is] = ACTIONS(2473), - [anon_sym_BANGis] = ACTIONS(2473), - [anon_sym_in] = ACTIONS(2473), - [anon_sym_BANGin] = ACTIONS(2473), - [anon_sym_match] = ACTIONS(2473), - [anon_sym_select] = ACTIONS(2473), - [anon_sym_lock] = ACTIONS(2473), - [anon_sym_rlock] = ACTIONS(2473), - [anon_sym_unsafe] = ACTIONS(2473), - [anon_sym_sql] = ACTIONS(2473), - [sym_int_literal] = ACTIONS(2473), - [sym_float_literal] = ACTIONS(2473), - [sym_rune_literal] = ACTIONS(2473), - [sym_pseudo_compile_time_identifier] = ACTIONS(2473), - [anon_sym_shared] = ACTIONS(2473), - [anon_sym_map_LBRACK] = ACTIONS(2473), - [anon_sym_chan] = ACTIONS(2473), - [anon_sym_thread] = ACTIONS(2473), - [anon_sym_atomic] = ACTIONS(2473), - [sym___double_quote] = ACTIONS(2473), - [sym___single_quote] = ACTIONS(2473), - [sym___c_double_quote] = ACTIONS(2473), - [sym___c_single_quote] = ACTIONS(2473), - [sym___r_double_quote] = ACTIONS(2473), - [sym___r_single_quote] = ACTIONS(2473), + [anon_sym_SEMI] = ACTIONS(2307), + [anon_sym_DOT] = ACTIONS(2307), + [anon_sym_as] = ACTIONS(2307), + [anon_sym_LBRACE] = ACTIONS(2307), + [anon_sym_COMMA] = ACTIONS(2307), + [anon_sym_RBRACE] = ACTIONS(2307), + [anon_sym_LPAREN] = ACTIONS(2307), + [anon_sym_RPAREN] = ACTIONS(2307), + [anon_sym_PIPE] = ACTIONS(2307), + [anon_sym_fn] = ACTIONS(2307), + [anon_sym_PLUS] = ACTIONS(2307), + [anon_sym_DASH] = ACTIONS(2307), + [anon_sym_STAR] = ACTIONS(2307), + [anon_sym_SLASH] = ACTIONS(2307), + [anon_sym_PERCENT] = ACTIONS(2307), + [anon_sym_LT] = ACTIONS(2307), + [anon_sym_GT] = ACTIONS(2307), + [anon_sym_EQ_EQ] = ACTIONS(2307), + [anon_sym_BANG_EQ] = ACTIONS(2307), + [anon_sym_LT_EQ] = ACTIONS(2307), + [anon_sym_GT_EQ] = ACTIONS(2307), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2307), + [anon_sym_LBRACK] = ACTIONS(2305), + [anon_sym_struct] = ACTIONS(2307), + [anon_sym_mut] = ACTIONS(2307), + [anon_sym_PLUS_PLUS] = ACTIONS(2307), + [anon_sym_DASH_DASH] = ACTIONS(2307), + [anon_sym_QMARK] = ACTIONS(2307), + [anon_sym_BANG] = ACTIONS(2307), + [anon_sym_go] = ACTIONS(2307), + [anon_sym_spawn] = ACTIONS(2307), + [anon_sym_json_DOTdecode] = ACTIONS(2307), + [anon_sym_LBRACK2] = ACTIONS(2307), + [anon_sym_TILDE] = ACTIONS(2307), + [anon_sym_CARET] = ACTIONS(2307), + [anon_sym_AMP] = ACTIONS(2307), + [anon_sym_LT_DASH] = ACTIONS(2307), + [anon_sym_LT_LT] = ACTIONS(2307), + [anon_sym_GT_GT] = ACTIONS(2307), + [anon_sym_GT_GT_GT] = ACTIONS(2307), + [anon_sym_AMP_CARET] = ACTIONS(2307), + [anon_sym_AMP_AMP] = ACTIONS(2307), + [anon_sym_PIPE_PIPE] = ACTIONS(2307), + [anon_sym_or] = ACTIONS(2307), + [sym_none] = ACTIONS(2307), + [sym_true] = ACTIONS(2307), + [sym_false] = ACTIONS(2307), + [sym_nil] = ACTIONS(2307), + [anon_sym_QMARK_DOT] = ACTIONS(2307), + [anon_sym_POUND_LBRACK] = ACTIONS(2307), + [anon_sym_if] = ACTIONS(2307), + [anon_sym_DOLLARif] = ACTIONS(2307), + [anon_sym_is] = ACTIONS(2307), + [anon_sym_BANGis] = ACTIONS(2307), + [anon_sym_in] = ACTIONS(2307), + [anon_sym_BANGin] = ACTIONS(2307), + [anon_sym_match] = ACTIONS(2307), + [anon_sym_select] = ACTIONS(2307), + [anon_sym_lock] = ACTIONS(2307), + [anon_sym_rlock] = ACTIONS(2307), + [anon_sym_unsafe] = ACTIONS(2307), + [anon_sym_sql] = ACTIONS(2307), + [sym_int_literal] = ACTIONS(2307), + [sym_float_literal] = ACTIONS(2307), + [sym_rune_literal] = ACTIONS(2307), + [sym_pseudo_compile_time_identifier] = ACTIONS(2307), + [anon_sym_shared] = ACTIONS(2307), + [anon_sym_map_LBRACK] = ACTIONS(2307), + [anon_sym_chan] = ACTIONS(2307), + [anon_sym_thread] = ACTIONS(2307), + [anon_sym_atomic] = ACTIONS(2307), + [sym___double_quote] = ACTIONS(2307), + [sym___single_quote] = ACTIONS(2307), + [sym___c_double_quote] = ACTIONS(2307), + [sym___c_single_quote] = ACTIONS(2307), + [sym___r_double_quote] = ACTIONS(2307), + [sym___r_single_quote] = ACTIONS(2307), }, - [1191] = { - [sym_line_comment] = STATE(1191), - [sym_block_comment] = STATE(1191), - [sym_identifier] = ACTIONS(2731), - [anon_sym_LF] = ACTIONS(2731), - [anon_sym_CR] = ACTIONS(2731), - [anon_sym_CR_LF] = ACTIONS(2731), + [1209] = { + [sym_line_comment] = STATE(1209), + [sym_block_comment] = STATE(1209), + [sym_identifier] = ACTIONS(2806), + [anon_sym_LF] = ACTIONS(2806), + [anon_sym_CR] = ACTIONS(2806), + [anon_sym_CR_LF] = ACTIONS(2806), [anon_sym_SLASH_SLASH] = ACTIONS(497), [anon_sym_SLASH_STAR] = ACTIONS(499), - [anon_sym_SEMI] = ACTIONS(2731), - [anon_sym_DOT] = ACTIONS(2731), - [anon_sym_as] = ACTIONS(2731), - [anon_sym_LBRACE] = ACTIONS(2731), - [anon_sym_COMMA] = ACTIONS(2731), - [anon_sym_RBRACE] = ACTIONS(2731), - [anon_sym_LPAREN] = ACTIONS(2731), - [anon_sym_RPAREN] = ACTIONS(2731), - [anon_sym_PIPE] = ACTIONS(2731), - [anon_sym_fn] = ACTIONS(2731), - [anon_sym_PLUS] = ACTIONS(2731), - [anon_sym_DASH] = ACTIONS(2731), - [anon_sym_STAR] = ACTIONS(2731), - [anon_sym_SLASH] = ACTIONS(2731), - [anon_sym_PERCENT] = ACTIONS(2731), - [anon_sym_LT] = ACTIONS(2731), - [anon_sym_GT] = ACTIONS(2731), - [anon_sym_EQ_EQ] = ACTIONS(2731), - [anon_sym_BANG_EQ] = ACTIONS(2731), - [anon_sym_LT_EQ] = ACTIONS(2731), - [anon_sym_GT_EQ] = ACTIONS(2731), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2731), - [anon_sym_LBRACK] = ACTIONS(2729), - [anon_sym_struct] = ACTIONS(2731), - [anon_sym_mut] = ACTIONS(2731), - [anon_sym_PLUS_PLUS] = ACTIONS(2731), - [anon_sym_DASH_DASH] = ACTIONS(2731), - [anon_sym_QMARK] = ACTIONS(2731), - [anon_sym_BANG] = ACTIONS(2731), - [anon_sym_go] = ACTIONS(2731), - [anon_sym_spawn] = ACTIONS(2731), - [anon_sym_json_DOTdecode] = ACTIONS(2731), - [anon_sym_LBRACK2] = ACTIONS(2731), - [anon_sym_TILDE] = ACTIONS(2731), - [anon_sym_CARET] = ACTIONS(2731), - [anon_sym_AMP] = ACTIONS(2731), - [anon_sym_LT_DASH] = ACTIONS(2731), - [anon_sym_LT_LT] = ACTIONS(2731), - [anon_sym_GT_GT] = ACTIONS(2731), - [anon_sym_GT_GT_GT] = ACTIONS(2731), - [anon_sym_AMP_CARET] = ACTIONS(2731), - [anon_sym_AMP_AMP] = ACTIONS(2731), - [anon_sym_PIPE_PIPE] = ACTIONS(2731), - [anon_sym_or] = ACTIONS(2731), - [sym_none] = ACTIONS(2731), - [sym_true] = ACTIONS(2731), - [sym_false] = ACTIONS(2731), - [sym_nil] = ACTIONS(2731), - [anon_sym_QMARK_DOT] = ACTIONS(2731), - [anon_sym_POUND_LBRACK] = ACTIONS(2731), - [anon_sym_if] = ACTIONS(2731), - [anon_sym_DOLLARif] = ACTIONS(2731), - [anon_sym_is] = ACTIONS(2731), - [anon_sym_BANGis] = ACTIONS(2731), - [anon_sym_in] = ACTIONS(2731), - [anon_sym_BANGin] = ACTIONS(2731), - [anon_sym_match] = ACTIONS(2731), - [anon_sym_select] = ACTIONS(2731), - [anon_sym_lock] = ACTIONS(2731), - [anon_sym_rlock] = ACTIONS(2731), - [anon_sym_unsafe] = ACTIONS(2731), - [anon_sym_sql] = ACTIONS(2731), - [sym_int_literal] = ACTIONS(2731), - [sym_float_literal] = ACTIONS(2731), - [sym_rune_literal] = ACTIONS(2731), - [sym_pseudo_compile_time_identifier] = ACTIONS(2731), - [anon_sym_shared] = ACTIONS(2731), - [anon_sym_map_LBRACK] = ACTIONS(2731), - [anon_sym_chan] = ACTIONS(2731), - [anon_sym_thread] = ACTIONS(2731), - [anon_sym_atomic] = ACTIONS(2731), - [sym___double_quote] = ACTIONS(2731), - [sym___single_quote] = ACTIONS(2731), - [sym___c_double_quote] = ACTIONS(2731), - [sym___c_single_quote] = ACTIONS(2731), - [sym___r_double_quote] = ACTIONS(2731), - [sym___r_single_quote] = ACTIONS(2731), + [anon_sym_SEMI] = ACTIONS(2806), + [anon_sym_DOT] = ACTIONS(2806), + [anon_sym_as] = ACTIONS(2806), + [anon_sym_LBRACE] = ACTIONS(2806), + [anon_sym_COMMA] = ACTIONS(2806), + [anon_sym_RBRACE] = ACTIONS(2806), + [anon_sym_LPAREN] = ACTIONS(2806), + [anon_sym_RPAREN] = ACTIONS(2806), + [anon_sym_PIPE] = ACTIONS(2806), + [anon_sym_fn] = ACTIONS(2806), + [anon_sym_PLUS] = ACTIONS(2806), + [anon_sym_DASH] = ACTIONS(2806), + [anon_sym_STAR] = ACTIONS(2806), + [anon_sym_SLASH] = ACTIONS(2806), + [anon_sym_PERCENT] = ACTIONS(2806), + [anon_sym_LT] = ACTIONS(2806), + [anon_sym_GT] = ACTIONS(2806), + [anon_sym_EQ_EQ] = ACTIONS(2806), + [anon_sym_BANG_EQ] = ACTIONS(2806), + [anon_sym_LT_EQ] = ACTIONS(2806), + [anon_sym_GT_EQ] = ACTIONS(2806), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2806), + [anon_sym_LBRACK] = ACTIONS(2804), + [anon_sym_struct] = ACTIONS(2806), + [anon_sym_mut] = ACTIONS(2806), + [anon_sym_PLUS_PLUS] = ACTIONS(2806), + [anon_sym_DASH_DASH] = ACTIONS(2806), + [anon_sym_QMARK] = ACTIONS(2806), + [anon_sym_BANG] = ACTIONS(2806), + [anon_sym_go] = ACTIONS(2806), + [anon_sym_spawn] = ACTIONS(2806), + [anon_sym_json_DOTdecode] = ACTIONS(2806), + [anon_sym_LBRACK2] = ACTIONS(2806), + [anon_sym_TILDE] = ACTIONS(2806), + [anon_sym_CARET] = ACTIONS(2806), + [anon_sym_AMP] = ACTIONS(2806), + [anon_sym_LT_DASH] = ACTIONS(2806), + [anon_sym_LT_LT] = ACTIONS(2806), + [anon_sym_GT_GT] = ACTIONS(2806), + [anon_sym_GT_GT_GT] = ACTIONS(2806), + [anon_sym_AMP_CARET] = ACTIONS(2806), + [anon_sym_AMP_AMP] = ACTIONS(2806), + [anon_sym_PIPE_PIPE] = ACTIONS(2806), + [anon_sym_or] = ACTIONS(2806), + [sym_none] = ACTIONS(2806), + [sym_true] = ACTIONS(2806), + [sym_false] = ACTIONS(2806), + [sym_nil] = ACTIONS(2806), + [anon_sym_QMARK_DOT] = ACTIONS(2806), + [anon_sym_POUND_LBRACK] = ACTIONS(2806), + [anon_sym_if] = ACTIONS(2806), + [anon_sym_DOLLARif] = ACTIONS(2806), + [anon_sym_is] = ACTIONS(2806), + [anon_sym_BANGis] = ACTIONS(2806), + [anon_sym_in] = ACTIONS(2806), + [anon_sym_BANGin] = ACTIONS(2806), + [anon_sym_match] = ACTIONS(2806), + [anon_sym_select] = ACTIONS(2806), + [anon_sym_lock] = ACTIONS(2806), + [anon_sym_rlock] = ACTIONS(2806), + [anon_sym_unsafe] = ACTIONS(2806), + [anon_sym_sql] = ACTIONS(2806), + [sym_int_literal] = ACTIONS(2806), + [sym_float_literal] = ACTIONS(2806), + [sym_rune_literal] = ACTIONS(2806), + [sym_pseudo_compile_time_identifier] = ACTIONS(2806), + [anon_sym_shared] = ACTIONS(2806), + [anon_sym_map_LBRACK] = ACTIONS(2806), + [anon_sym_chan] = ACTIONS(2806), + [anon_sym_thread] = ACTIONS(2806), + [anon_sym_atomic] = ACTIONS(2806), + [sym___double_quote] = ACTIONS(2806), + [sym___single_quote] = ACTIONS(2806), + [sym___c_double_quote] = ACTIONS(2806), + [sym___c_single_quote] = ACTIONS(2806), + [sym___r_double_quote] = ACTIONS(2806), + [sym___r_single_quote] = ACTIONS(2806), }, - [1192] = { - [sym_line_comment] = STATE(1192), - [sym_block_comment] = STATE(1192), - [sym_identifier] = ACTIONS(2177), - [anon_sym_LF] = ACTIONS(2177), - [anon_sym_CR] = ACTIONS(2177), - [anon_sym_CR_LF] = ACTIONS(2177), + [1210] = { + [sym_line_comment] = STATE(1210), + [sym_block_comment] = STATE(1210), + [sym_identifier] = ACTIONS(2532), + [anon_sym_LF] = ACTIONS(2532), + [anon_sym_CR] = ACTIONS(2532), + [anon_sym_CR_LF] = ACTIONS(2532), [anon_sym_SLASH_SLASH] = ACTIONS(497), [anon_sym_SLASH_STAR] = ACTIONS(499), - [anon_sym_SEMI] = ACTIONS(2177), - [anon_sym_DOT] = ACTIONS(2177), - [anon_sym_as] = ACTIONS(2177), - [anon_sym_LBRACE] = ACTIONS(2177), - [anon_sym_COMMA] = ACTIONS(2177), - [anon_sym_RBRACE] = ACTIONS(2177), - [anon_sym_LPAREN] = ACTIONS(2177), - [anon_sym_RPAREN] = ACTIONS(2177), - [anon_sym_PIPE] = ACTIONS(2177), - [anon_sym_fn] = ACTIONS(2177), - [anon_sym_PLUS] = ACTIONS(2177), - [anon_sym_DASH] = ACTIONS(2177), - [anon_sym_STAR] = ACTIONS(2177), - [anon_sym_SLASH] = ACTIONS(2177), - [anon_sym_PERCENT] = ACTIONS(2177), - [anon_sym_LT] = ACTIONS(2177), - [anon_sym_GT] = ACTIONS(2177), - [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_DOT_DOT_DOT] = ACTIONS(2177), - [anon_sym_LBRACK] = ACTIONS(2175), - [anon_sym_struct] = ACTIONS(2177), - [anon_sym_mut] = ACTIONS(2177), - [anon_sym_PLUS_PLUS] = ACTIONS(2177), - [anon_sym_DASH_DASH] = ACTIONS(2177), - [anon_sym_QMARK] = ACTIONS(2177), - [anon_sym_BANG] = ACTIONS(2177), - [anon_sym_go] = ACTIONS(2177), - [anon_sym_spawn] = ACTIONS(2177), - [anon_sym_json_DOTdecode] = ACTIONS(2177), - [anon_sym_LBRACK2] = ACTIONS(2177), - [anon_sym_TILDE] = ACTIONS(2177), - [anon_sym_CARET] = ACTIONS(2177), - [anon_sym_AMP] = ACTIONS(2177), - [anon_sym_LT_DASH] = ACTIONS(2177), - [anon_sym_LT_LT] = ACTIONS(2177), - [anon_sym_GT_GT] = ACTIONS(2177), - [anon_sym_GT_GT_GT] = ACTIONS(2177), - [anon_sym_AMP_CARET] = ACTIONS(2177), - [anon_sym_AMP_AMP] = ACTIONS(2177), - [anon_sym_PIPE_PIPE] = ACTIONS(2177), - [anon_sym_or] = ACTIONS(2177), - [sym_none] = ACTIONS(2177), - [sym_true] = ACTIONS(2177), - [sym_false] = ACTIONS(2177), - [sym_nil] = ACTIONS(2177), - [anon_sym_QMARK_DOT] = ACTIONS(2177), - [anon_sym_POUND_LBRACK] = ACTIONS(2177), - [anon_sym_if] = ACTIONS(2177), - [anon_sym_DOLLARif] = ACTIONS(2177), - [anon_sym_is] = ACTIONS(2177), - [anon_sym_BANGis] = ACTIONS(2177), - [anon_sym_in] = ACTIONS(2177), - [anon_sym_BANGin] = ACTIONS(2177), - [anon_sym_match] = ACTIONS(2177), - [anon_sym_select] = ACTIONS(2177), - [anon_sym_lock] = ACTIONS(2177), - [anon_sym_rlock] = ACTIONS(2177), - [anon_sym_unsafe] = ACTIONS(2177), - [anon_sym_sql] = ACTIONS(2177), - [sym_int_literal] = ACTIONS(2177), - [sym_float_literal] = ACTIONS(2177), - [sym_rune_literal] = ACTIONS(2177), - [sym_pseudo_compile_time_identifier] = ACTIONS(2177), - [anon_sym_shared] = ACTIONS(2177), - [anon_sym_map_LBRACK] = ACTIONS(2177), - [anon_sym_chan] = ACTIONS(2177), - [anon_sym_thread] = ACTIONS(2177), - [anon_sym_atomic] = ACTIONS(2177), - [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_SEMI] = ACTIONS(2532), + [anon_sym_DOT] = ACTIONS(2532), + [anon_sym_as] = ACTIONS(2532), + [anon_sym_LBRACE] = ACTIONS(2532), + [anon_sym_COMMA] = ACTIONS(2532), + [anon_sym_RBRACE] = ACTIONS(2532), + [anon_sym_LPAREN] = ACTIONS(2532), + [anon_sym_RPAREN] = ACTIONS(2532), + [anon_sym_PIPE] = ACTIONS(2532), + [anon_sym_fn] = ACTIONS(2532), + [anon_sym_PLUS] = ACTIONS(2532), + [anon_sym_DASH] = ACTIONS(2532), + [anon_sym_STAR] = ACTIONS(2532), + [anon_sym_SLASH] = ACTIONS(2532), + [anon_sym_PERCENT] = ACTIONS(2532), + [anon_sym_LT] = ACTIONS(2532), + [anon_sym_GT] = ACTIONS(2532), + [anon_sym_EQ_EQ] = ACTIONS(2532), + [anon_sym_BANG_EQ] = ACTIONS(2532), + [anon_sym_LT_EQ] = ACTIONS(2532), + [anon_sym_GT_EQ] = ACTIONS(2532), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2532), + [anon_sym_LBRACK] = ACTIONS(2530), + [anon_sym_struct] = ACTIONS(2532), + [anon_sym_mut] = ACTIONS(2532), + [anon_sym_PLUS_PLUS] = ACTIONS(2532), + [anon_sym_DASH_DASH] = ACTIONS(2532), + [anon_sym_QMARK] = ACTIONS(2532), + [anon_sym_BANG] = ACTIONS(2532), + [anon_sym_go] = ACTIONS(2532), + [anon_sym_spawn] = ACTIONS(2532), + [anon_sym_json_DOTdecode] = ACTIONS(2532), + [anon_sym_LBRACK2] = ACTIONS(2532), + [anon_sym_TILDE] = ACTIONS(2532), + [anon_sym_CARET] = ACTIONS(2532), + [anon_sym_AMP] = ACTIONS(2532), + [anon_sym_LT_DASH] = ACTIONS(2532), + [anon_sym_LT_LT] = ACTIONS(2532), + [anon_sym_GT_GT] = ACTIONS(2532), + [anon_sym_GT_GT_GT] = ACTIONS(2532), + [anon_sym_AMP_CARET] = ACTIONS(2532), + [anon_sym_AMP_AMP] = ACTIONS(2532), + [anon_sym_PIPE_PIPE] = ACTIONS(2532), + [anon_sym_or] = ACTIONS(2532), + [sym_none] = ACTIONS(2532), + [sym_true] = ACTIONS(2532), + [sym_false] = ACTIONS(2532), + [sym_nil] = ACTIONS(2532), + [anon_sym_QMARK_DOT] = ACTIONS(2532), + [anon_sym_POUND_LBRACK] = ACTIONS(2532), + [anon_sym_if] = ACTIONS(2532), + [anon_sym_DOLLARif] = ACTIONS(2532), + [anon_sym_is] = ACTIONS(2532), + [anon_sym_BANGis] = ACTIONS(2532), + [anon_sym_in] = ACTIONS(2532), + [anon_sym_BANGin] = ACTIONS(2532), + [anon_sym_match] = ACTIONS(2532), + [anon_sym_select] = ACTIONS(2532), + [anon_sym_lock] = ACTIONS(2532), + [anon_sym_rlock] = ACTIONS(2532), + [anon_sym_unsafe] = ACTIONS(2532), + [anon_sym_sql] = ACTIONS(2532), + [sym_int_literal] = ACTIONS(2532), + [sym_float_literal] = ACTIONS(2532), + [sym_rune_literal] = ACTIONS(2532), + [sym_pseudo_compile_time_identifier] = ACTIONS(2532), + [anon_sym_shared] = ACTIONS(2532), + [anon_sym_map_LBRACK] = ACTIONS(2532), + [anon_sym_chan] = ACTIONS(2532), + [anon_sym_thread] = ACTIONS(2532), + [anon_sym_atomic] = ACTIONS(2532), + [sym___double_quote] = ACTIONS(2532), + [sym___single_quote] = ACTIONS(2532), + [sym___c_double_quote] = ACTIONS(2532), + [sym___c_single_quote] = ACTIONS(2532), + [sym___r_double_quote] = ACTIONS(2532), + [sym___r_single_quote] = ACTIONS(2532), }, - [1193] = { - [sym_line_comment] = STATE(1193), - [sym_block_comment] = STATE(1193), - [sym_identifier] = ACTIONS(3062), - [anon_sym_LF] = ACTIONS(3062), - [anon_sym_CR] = ACTIONS(3062), - [anon_sym_CR_LF] = ACTIONS(3062), - [anon_sym_SLASH_SLASH] = ACTIONS(497), - [anon_sym_SLASH_STAR] = ACTIONS(499), - [anon_sym_SEMI] = ACTIONS(3062), - [anon_sym_DOT] = ACTIONS(3062), - [anon_sym_as] = ACTIONS(3062), - [anon_sym_LBRACE] = ACTIONS(3062), - [anon_sym_COMMA] = ACTIONS(3062), - [anon_sym_RBRACE] = ACTIONS(3062), - [anon_sym_LPAREN] = ACTIONS(3062), - [anon_sym_RPAREN] = ACTIONS(3062), - [anon_sym_PIPE] = ACTIONS(3062), - [anon_sym_fn] = ACTIONS(3062), - [anon_sym_PLUS] = ACTIONS(3062), - [anon_sym_DASH] = ACTIONS(3062), - [anon_sym_STAR] = ACTIONS(3062), - [anon_sym_SLASH] = ACTIONS(3062), - [anon_sym_PERCENT] = ACTIONS(3062), - [anon_sym_LT] = ACTIONS(3062), - [anon_sym_GT] = ACTIONS(3062), - [anon_sym_EQ_EQ] = ACTIONS(3062), - [anon_sym_BANG_EQ] = ACTIONS(3062), - [anon_sym_LT_EQ] = ACTIONS(3062), - [anon_sym_GT_EQ] = ACTIONS(3062), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3062), - [anon_sym_LBRACK] = ACTIONS(3060), - [anon_sym_struct] = ACTIONS(3062), - [anon_sym_mut] = ACTIONS(3062), - [anon_sym_PLUS_PLUS] = ACTIONS(3062), - [anon_sym_DASH_DASH] = ACTIONS(3062), - [anon_sym_QMARK] = ACTIONS(3062), - [anon_sym_BANG] = ACTIONS(3062), - [anon_sym_go] = ACTIONS(3062), - [anon_sym_spawn] = ACTIONS(3062), - [anon_sym_json_DOTdecode] = ACTIONS(3062), - [anon_sym_LBRACK2] = ACTIONS(3062), - [anon_sym_TILDE] = ACTIONS(3062), - [anon_sym_CARET] = ACTIONS(3062), - [anon_sym_AMP] = ACTIONS(3062), - [anon_sym_LT_DASH] = ACTIONS(3062), - [anon_sym_LT_LT] = ACTIONS(3062), - [anon_sym_GT_GT] = ACTIONS(3062), - [anon_sym_GT_GT_GT] = ACTIONS(3062), - [anon_sym_AMP_CARET] = ACTIONS(3062), - [anon_sym_AMP_AMP] = ACTIONS(3062), - [anon_sym_PIPE_PIPE] = ACTIONS(3062), - [anon_sym_or] = ACTIONS(3062), - [sym_none] = ACTIONS(3062), - [sym_true] = ACTIONS(3062), - [sym_false] = ACTIONS(3062), - [sym_nil] = ACTIONS(3062), - [anon_sym_QMARK_DOT] = ACTIONS(3062), - [anon_sym_POUND_LBRACK] = ACTIONS(3062), - [anon_sym_if] = ACTIONS(3062), - [anon_sym_DOLLARif] = ACTIONS(3062), - [anon_sym_is] = ACTIONS(3062), - [anon_sym_BANGis] = ACTIONS(3062), - [anon_sym_in] = ACTIONS(3062), - [anon_sym_BANGin] = ACTIONS(3062), - [anon_sym_match] = ACTIONS(3062), - [anon_sym_select] = ACTIONS(3062), - [anon_sym_lock] = ACTIONS(3062), - [anon_sym_rlock] = ACTIONS(3062), - [anon_sym_unsafe] = ACTIONS(3062), - [anon_sym_sql] = ACTIONS(3062), - [sym_int_literal] = ACTIONS(3062), - [sym_float_literal] = ACTIONS(3062), - [sym_rune_literal] = ACTIONS(3062), - [sym_pseudo_compile_time_identifier] = ACTIONS(3062), - [anon_sym_shared] = ACTIONS(3062), - [anon_sym_map_LBRACK] = ACTIONS(3062), - [anon_sym_chan] = ACTIONS(3062), - [anon_sym_thread] = ACTIONS(3062), - [anon_sym_atomic] = ACTIONS(3062), - [sym___double_quote] = ACTIONS(3062), - [sym___single_quote] = ACTIONS(3062), - [sym___c_double_quote] = ACTIONS(3062), - [sym___c_single_quote] = ACTIONS(3062), - [sym___r_double_quote] = ACTIONS(3062), - [sym___r_single_quote] = ACTIONS(3062), + [1211] = { + [sym_line_comment] = STATE(1211), + [sym_block_comment] = STATE(1211), + [sym_identifier] = ACTIONS(2513), + [anon_sym_LF] = ACTIONS(2513), + [anon_sym_CR] = ACTIONS(2513), + [anon_sym_CR_LF] = ACTIONS(2513), + [anon_sym_SLASH_SLASH] = ACTIONS(497), + [anon_sym_SLASH_STAR] = ACTIONS(499), + [anon_sym_SEMI] = ACTIONS(2513), + [anon_sym_DOT] = ACTIONS(2513), + [anon_sym_as] = ACTIONS(2513), + [anon_sym_LBRACE] = ACTIONS(2513), + [anon_sym_COMMA] = ACTIONS(2513), + [anon_sym_RBRACE] = ACTIONS(2513), + [anon_sym_LPAREN] = ACTIONS(2513), + [anon_sym_RPAREN] = ACTIONS(2513), + [anon_sym_PIPE] = ACTIONS(2513), + [anon_sym_fn] = ACTIONS(2513), + [anon_sym_PLUS] = ACTIONS(2513), + [anon_sym_DASH] = ACTIONS(2513), + [anon_sym_STAR] = ACTIONS(2513), + [anon_sym_SLASH] = ACTIONS(2513), + [anon_sym_PERCENT] = ACTIONS(2513), + [anon_sym_LT] = ACTIONS(2513), + [anon_sym_GT] = ACTIONS(2513), + [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_DOT_DOT_DOT] = ACTIONS(2513), + [anon_sym_LBRACK] = ACTIONS(2511), + [anon_sym_struct] = ACTIONS(2513), + [anon_sym_mut] = ACTIONS(2513), + [anon_sym_PLUS_PLUS] = ACTIONS(2513), + [anon_sym_DASH_DASH] = ACTIONS(2513), + [anon_sym_QMARK] = ACTIONS(2513), + [anon_sym_BANG] = ACTIONS(2513), + [anon_sym_go] = ACTIONS(2513), + [anon_sym_spawn] = ACTIONS(2513), + [anon_sym_json_DOTdecode] = ACTIONS(2513), + [anon_sym_LBRACK2] = ACTIONS(2513), + [anon_sym_TILDE] = ACTIONS(2513), + [anon_sym_CARET] = ACTIONS(2513), + [anon_sym_AMP] = ACTIONS(2513), + [anon_sym_LT_DASH] = ACTIONS(2513), + [anon_sym_LT_LT] = ACTIONS(2513), + [anon_sym_GT_GT] = ACTIONS(2513), + [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(2513), + [sym_none] = ACTIONS(2513), + [sym_true] = ACTIONS(2513), + [sym_false] = ACTIONS(2513), + [sym_nil] = ACTIONS(2513), + [anon_sym_QMARK_DOT] = ACTIONS(2513), + [anon_sym_POUND_LBRACK] = ACTIONS(2513), + [anon_sym_if] = ACTIONS(2513), + [anon_sym_DOLLARif] = ACTIONS(2513), + [anon_sym_is] = ACTIONS(2513), + [anon_sym_BANGis] = ACTIONS(2513), + [anon_sym_in] = ACTIONS(2513), + [anon_sym_BANGin] = ACTIONS(2513), + [anon_sym_match] = ACTIONS(2513), + [anon_sym_select] = ACTIONS(2513), + [anon_sym_lock] = ACTIONS(2513), + [anon_sym_rlock] = ACTIONS(2513), + [anon_sym_unsafe] = ACTIONS(2513), + [anon_sym_sql] = ACTIONS(2513), + [sym_int_literal] = ACTIONS(2513), + [sym_float_literal] = ACTIONS(2513), + [sym_rune_literal] = ACTIONS(2513), + [sym_pseudo_compile_time_identifier] = ACTIONS(2513), + [anon_sym_shared] = ACTIONS(2513), + [anon_sym_map_LBRACK] = ACTIONS(2513), + [anon_sym_chan] = ACTIONS(2513), + [anon_sym_thread] = ACTIONS(2513), + [anon_sym_atomic] = ACTIONS(2513), + [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), }, - [1194] = { - [sym_line_comment] = STATE(1194), - [sym_block_comment] = STATE(1194), - [sym_identifier] = ACTIONS(2651), - [anon_sym_LF] = ACTIONS(2651), - [anon_sym_CR] = ACTIONS(2651), - [anon_sym_CR_LF] = ACTIONS(2651), + [1212] = { + [sym_line_comment] = STATE(1212), + [sym_block_comment] = STATE(1212), + [sym_identifier] = ACTIONS(2522), + [anon_sym_LF] = ACTIONS(2522), + [anon_sym_CR] = ACTIONS(2522), + [anon_sym_CR_LF] = ACTIONS(2522), [anon_sym_SLASH_SLASH] = ACTIONS(497), [anon_sym_SLASH_STAR] = ACTIONS(499), - [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(2649), - [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), + [anon_sym_SEMI] = ACTIONS(2522), + [anon_sym_DOT] = ACTIONS(2522), + [anon_sym_as] = ACTIONS(2522), + [anon_sym_LBRACE] = ACTIONS(2522), + [anon_sym_COMMA] = ACTIONS(2522), + [anon_sym_RBRACE] = ACTIONS(2522), + [anon_sym_LPAREN] = ACTIONS(2522), + [anon_sym_RPAREN] = ACTIONS(2522), + [anon_sym_PIPE] = ACTIONS(2522), + [anon_sym_fn] = ACTIONS(2522), + [anon_sym_PLUS] = ACTIONS(2522), + [anon_sym_DASH] = ACTIONS(2522), + [anon_sym_STAR] = ACTIONS(2522), + [anon_sym_SLASH] = ACTIONS(2522), + [anon_sym_PERCENT] = ACTIONS(2522), + [anon_sym_LT] = ACTIONS(2522), + [anon_sym_GT] = ACTIONS(2522), + [anon_sym_EQ_EQ] = ACTIONS(2522), + [anon_sym_BANG_EQ] = ACTIONS(2522), + [anon_sym_LT_EQ] = ACTIONS(2522), + [anon_sym_GT_EQ] = ACTIONS(2522), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2522), + [anon_sym_LBRACK] = ACTIONS(2520), + [anon_sym_struct] = ACTIONS(2522), + [anon_sym_mut] = ACTIONS(2522), + [anon_sym_PLUS_PLUS] = ACTIONS(2522), + [anon_sym_DASH_DASH] = ACTIONS(2522), + [anon_sym_QMARK] = ACTIONS(2522), + [anon_sym_BANG] = ACTIONS(2522), + [anon_sym_go] = ACTIONS(2522), + [anon_sym_spawn] = ACTIONS(2522), + [anon_sym_json_DOTdecode] = ACTIONS(2522), + [anon_sym_LBRACK2] = ACTIONS(2522), + [anon_sym_TILDE] = ACTIONS(2522), + [anon_sym_CARET] = ACTIONS(2522), + [anon_sym_AMP] = ACTIONS(2522), + [anon_sym_LT_DASH] = ACTIONS(2522), + [anon_sym_LT_LT] = ACTIONS(2522), + [anon_sym_GT_GT] = ACTIONS(2522), + [anon_sym_GT_GT_GT] = ACTIONS(2522), + [anon_sym_AMP_CARET] = ACTIONS(2522), + [anon_sym_AMP_AMP] = ACTIONS(2522), + [anon_sym_PIPE_PIPE] = ACTIONS(2522), + [anon_sym_or] = ACTIONS(2522), + [sym_none] = ACTIONS(2522), + [sym_true] = ACTIONS(2522), + [sym_false] = ACTIONS(2522), + [sym_nil] = ACTIONS(2522), + [anon_sym_QMARK_DOT] = ACTIONS(2522), + [anon_sym_POUND_LBRACK] = ACTIONS(2522), + [anon_sym_if] = ACTIONS(2522), + [anon_sym_DOLLARif] = ACTIONS(2522), + [anon_sym_is] = ACTIONS(2522), + [anon_sym_BANGis] = ACTIONS(2522), + [anon_sym_in] = ACTIONS(2522), + [anon_sym_BANGin] = ACTIONS(2522), + [anon_sym_match] = ACTIONS(2522), + [anon_sym_select] = ACTIONS(2522), + [anon_sym_lock] = ACTIONS(2522), + [anon_sym_rlock] = ACTIONS(2522), + [anon_sym_unsafe] = ACTIONS(2522), + [anon_sym_sql] = ACTIONS(2522), + [sym_int_literal] = ACTIONS(2522), + [sym_float_literal] = ACTIONS(2522), + [sym_rune_literal] = ACTIONS(2522), + [sym_pseudo_compile_time_identifier] = ACTIONS(2522), + [anon_sym_shared] = ACTIONS(2522), + [anon_sym_map_LBRACK] = ACTIONS(2522), + [anon_sym_chan] = ACTIONS(2522), + [anon_sym_thread] = ACTIONS(2522), + [anon_sym_atomic] = ACTIONS(2522), + [sym___double_quote] = ACTIONS(2522), + [sym___single_quote] = ACTIONS(2522), + [sym___c_double_quote] = ACTIONS(2522), + [sym___c_single_quote] = ACTIONS(2522), + [sym___r_double_quote] = ACTIONS(2522), + [sym___r_single_quote] = ACTIONS(2522), }, - [1195] = { - [sym_line_comment] = STATE(1195), - [sym_block_comment] = STATE(1195), - [sym_identifier] = ACTIONS(2153), - [anon_sym_LF] = ACTIONS(2153), - [anon_sym_CR] = ACTIONS(2153), - [anon_sym_CR_LF] = ACTIONS(2153), + [1213] = { + [sym_line_comment] = STATE(1213), + [sym_block_comment] = STATE(1213), + [sym_identifier] = ACTIONS(3058), + [anon_sym_LF] = ACTIONS(3058), + [anon_sym_CR] = ACTIONS(3058), + [anon_sym_CR_LF] = ACTIONS(3058), [anon_sym_SLASH_SLASH] = ACTIONS(497), [anon_sym_SLASH_STAR] = ACTIONS(499), - [anon_sym_SEMI] = ACTIONS(2153), - [anon_sym_DOT] = ACTIONS(2153), - [anon_sym_as] = ACTIONS(2153), - [anon_sym_LBRACE] = ACTIONS(2153), - [anon_sym_COMMA] = ACTIONS(2153), - [anon_sym_RBRACE] = ACTIONS(2153), - [anon_sym_LPAREN] = ACTIONS(2153), - [anon_sym_RPAREN] = ACTIONS(2153), - [anon_sym_PIPE] = ACTIONS(2153), - [anon_sym_fn] = ACTIONS(2153), - [anon_sym_PLUS] = ACTIONS(2153), - [anon_sym_DASH] = ACTIONS(2153), - [anon_sym_STAR] = ACTIONS(2153), - [anon_sym_SLASH] = ACTIONS(2153), - [anon_sym_PERCENT] = ACTIONS(2153), - [anon_sym_LT] = ACTIONS(2153), - [anon_sym_GT] = ACTIONS(2153), - [anon_sym_EQ_EQ] = ACTIONS(2153), - [anon_sym_BANG_EQ] = ACTIONS(2153), - [anon_sym_LT_EQ] = ACTIONS(2153), - [anon_sym_GT_EQ] = ACTIONS(2153), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2153), - [anon_sym_LBRACK] = ACTIONS(2151), - [anon_sym_struct] = ACTIONS(2153), - [anon_sym_mut] = ACTIONS(2153), - [anon_sym_PLUS_PLUS] = ACTIONS(2153), - [anon_sym_DASH_DASH] = ACTIONS(2153), - [anon_sym_QMARK] = ACTIONS(2153), - [anon_sym_BANG] = ACTIONS(2153), - [anon_sym_go] = ACTIONS(2153), - [anon_sym_spawn] = ACTIONS(2153), - [anon_sym_json_DOTdecode] = ACTIONS(2153), - [anon_sym_LBRACK2] = ACTIONS(2153), - [anon_sym_TILDE] = ACTIONS(2153), - [anon_sym_CARET] = ACTIONS(2153), - [anon_sym_AMP] = ACTIONS(2153), - [anon_sym_LT_DASH] = ACTIONS(2153), - [anon_sym_LT_LT] = ACTIONS(2153), - [anon_sym_GT_GT] = ACTIONS(2153), - [anon_sym_GT_GT_GT] = ACTIONS(2153), - [anon_sym_AMP_CARET] = ACTIONS(2153), - [anon_sym_AMP_AMP] = ACTIONS(2153), - [anon_sym_PIPE_PIPE] = ACTIONS(2153), - [anon_sym_or] = ACTIONS(2153), - [sym_none] = ACTIONS(2153), - [sym_true] = ACTIONS(2153), - [sym_false] = ACTIONS(2153), - [sym_nil] = ACTIONS(2153), - [anon_sym_QMARK_DOT] = ACTIONS(2153), - [anon_sym_POUND_LBRACK] = ACTIONS(2153), - [anon_sym_if] = ACTIONS(2153), - [anon_sym_DOLLARif] = ACTIONS(2153), - [anon_sym_is] = ACTIONS(2153), - [anon_sym_BANGis] = ACTIONS(2153), - [anon_sym_in] = ACTIONS(2153), - [anon_sym_BANGin] = ACTIONS(2153), - [anon_sym_match] = ACTIONS(2153), - [anon_sym_select] = ACTIONS(2153), - [anon_sym_lock] = ACTIONS(2153), - [anon_sym_rlock] = ACTIONS(2153), - [anon_sym_unsafe] = ACTIONS(2153), - [anon_sym_sql] = ACTIONS(2153), - [sym_int_literal] = ACTIONS(2153), - [sym_float_literal] = ACTIONS(2153), - [sym_rune_literal] = ACTIONS(2153), - [sym_pseudo_compile_time_identifier] = ACTIONS(2153), - [anon_sym_shared] = ACTIONS(2153), - [anon_sym_map_LBRACK] = ACTIONS(2153), - [anon_sym_chan] = ACTIONS(2153), - [anon_sym_thread] = ACTIONS(2153), - [anon_sym_atomic] = ACTIONS(2153), - [sym___double_quote] = ACTIONS(2153), - [sym___single_quote] = ACTIONS(2153), - [sym___c_double_quote] = ACTIONS(2153), - [sym___c_single_quote] = ACTIONS(2153), - [sym___r_double_quote] = ACTIONS(2153), - [sym___r_single_quote] = ACTIONS(2153), + [anon_sym_SEMI] = ACTIONS(3058), + [anon_sym_DOT] = ACTIONS(3058), + [anon_sym_as] = ACTIONS(3058), + [anon_sym_LBRACE] = ACTIONS(3058), + [anon_sym_COMMA] = ACTIONS(3058), + [anon_sym_RBRACE] = ACTIONS(3058), + [anon_sym_LPAREN] = ACTIONS(3058), + [anon_sym_RPAREN] = ACTIONS(3058), + [anon_sym_PIPE] = ACTIONS(3058), + [anon_sym_fn] = ACTIONS(3058), + [anon_sym_PLUS] = ACTIONS(3058), + [anon_sym_DASH] = ACTIONS(3058), + [anon_sym_STAR] = ACTIONS(3058), + [anon_sym_SLASH] = ACTIONS(3058), + [anon_sym_PERCENT] = ACTIONS(3058), + [anon_sym_LT] = ACTIONS(3058), + [anon_sym_GT] = ACTIONS(3058), + [anon_sym_EQ_EQ] = ACTIONS(3058), + [anon_sym_BANG_EQ] = ACTIONS(3058), + [anon_sym_LT_EQ] = ACTIONS(3058), + [anon_sym_GT_EQ] = ACTIONS(3058), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3058), + [anon_sym_LBRACK] = ACTIONS(3056), + [anon_sym_struct] = ACTIONS(3058), + [anon_sym_mut] = ACTIONS(3058), + [anon_sym_PLUS_PLUS] = ACTIONS(3058), + [anon_sym_DASH_DASH] = ACTIONS(3058), + [anon_sym_QMARK] = ACTIONS(3058), + [anon_sym_BANG] = ACTIONS(3058), + [anon_sym_go] = ACTIONS(3058), + [anon_sym_spawn] = ACTIONS(3058), + [anon_sym_json_DOTdecode] = ACTIONS(3058), + [anon_sym_LBRACK2] = ACTIONS(3058), + [anon_sym_TILDE] = ACTIONS(3058), + [anon_sym_CARET] = ACTIONS(3058), + [anon_sym_AMP] = ACTIONS(3058), + [anon_sym_LT_DASH] = ACTIONS(3058), + [anon_sym_LT_LT] = ACTIONS(3058), + [anon_sym_GT_GT] = ACTIONS(3058), + [anon_sym_GT_GT_GT] = ACTIONS(3058), + [anon_sym_AMP_CARET] = ACTIONS(3058), + [anon_sym_AMP_AMP] = ACTIONS(3058), + [anon_sym_PIPE_PIPE] = ACTIONS(3058), + [anon_sym_or] = ACTIONS(3058), + [sym_none] = ACTIONS(3058), + [sym_true] = ACTIONS(3058), + [sym_false] = ACTIONS(3058), + [sym_nil] = ACTIONS(3058), + [anon_sym_QMARK_DOT] = ACTIONS(3058), + [anon_sym_POUND_LBRACK] = ACTIONS(3058), + [anon_sym_if] = ACTIONS(3058), + [anon_sym_DOLLARif] = ACTIONS(3058), + [anon_sym_is] = ACTIONS(3058), + [anon_sym_BANGis] = ACTIONS(3058), + [anon_sym_in] = ACTIONS(3058), + [anon_sym_BANGin] = ACTIONS(3058), + [anon_sym_match] = ACTIONS(3058), + [anon_sym_select] = ACTIONS(3058), + [anon_sym_lock] = ACTIONS(3058), + [anon_sym_rlock] = ACTIONS(3058), + [anon_sym_unsafe] = ACTIONS(3058), + [anon_sym_sql] = ACTIONS(3058), + [sym_int_literal] = ACTIONS(3058), + [sym_float_literal] = ACTIONS(3058), + [sym_rune_literal] = ACTIONS(3058), + [sym_pseudo_compile_time_identifier] = ACTIONS(3058), + [anon_sym_shared] = ACTIONS(3058), + [anon_sym_map_LBRACK] = ACTIONS(3058), + [anon_sym_chan] = ACTIONS(3058), + [anon_sym_thread] = ACTIONS(3058), + [anon_sym_atomic] = ACTIONS(3058), + [sym___double_quote] = ACTIONS(3058), + [sym___single_quote] = ACTIONS(3058), + [sym___c_double_quote] = ACTIONS(3058), + [sym___c_single_quote] = ACTIONS(3058), + [sym___r_double_quote] = ACTIONS(3058), + [sym___r_single_quote] = ACTIONS(3058), }, - [1196] = { - [sym_line_comment] = STATE(1196), - [sym_block_comment] = STATE(1196), - [sym_identifier] = ACTIONS(2165), - [anon_sym_LF] = ACTIONS(2165), - [anon_sym_CR] = ACTIONS(2165), - [anon_sym_CR_LF] = ACTIONS(2165), + [1214] = { + [sym_line_comment] = STATE(1214), + [sym_block_comment] = STATE(1214), + [sym_identifier] = ACTIONS(2509), + [anon_sym_LF] = ACTIONS(2509), + [anon_sym_CR] = ACTIONS(2509), + [anon_sym_CR_LF] = ACTIONS(2509), [anon_sym_SLASH_SLASH] = ACTIONS(497), [anon_sym_SLASH_STAR] = ACTIONS(499), - [anon_sym_SEMI] = ACTIONS(2165), - [anon_sym_DOT] = ACTIONS(2165), - [anon_sym_as] = ACTIONS(2165), - [anon_sym_LBRACE] = ACTIONS(2165), - [anon_sym_COMMA] = ACTIONS(2165), - [anon_sym_RBRACE] = ACTIONS(2165), - [anon_sym_LPAREN] = ACTIONS(2165), - [anon_sym_RPAREN] = ACTIONS(2165), - [anon_sym_PIPE] = ACTIONS(2165), - [anon_sym_fn] = ACTIONS(2165), - [anon_sym_PLUS] = ACTIONS(2165), - [anon_sym_DASH] = ACTIONS(2165), - [anon_sym_STAR] = ACTIONS(2165), - [anon_sym_SLASH] = ACTIONS(2165), - [anon_sym_PERCENT] = ACTIONS(2165), - [anon_sym_LT] = ACTIONS(2165), - [anon_sym_GT] = ACTIONS(2165), - [anon_sym_EQ_EQ] = ACTIONS(2165), - [anon_sym_BANG_EQ] = ACTIONS(2165), - [anon_sym_LT_EQ] = ACTIONS(2165), - [anon_sym_GT_EQ] = ACTIONS(2165), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2165), - [anon_sym_LBRACK] = ACTIONS(2163), - [anon_sym_struct] = ACTIONS(2165), - [anon_sym_mut] = ACTIONS(2165), - [anon_sym_PLUS_PLUS] = ACTIONS(2165), - [anon_sym_DASH_DASH] = ACTIONS(2165), - [anon_sym_QMARK] = ACTIONS(2165), - [anon_sym_BANG] = ACTIONS(2165), - [anon_sym_go] = ACTIONS(2165), - [anon_sym_spawn] = ACTIONS(2165), - [anon_sym_json_DOTdecode] = ACTIONS(2165), - [anon_sym_LBRACK2] = ACTIONS(2165), - [anon_sym_TILDE] = ACTIONS(2165), - [anon_sym_CARET] = ACTIONS(2165), - [anon_sym_AMP] = ACTIONS(2165), - [anon_sym_LT_DASH] = ACTIONS(2165), - [anon_sym_LT_LT] = ACTIONS(2165), - [anon_sym_GT_GT] = ACTIONS(2165), - [anon_sym_GT_GT_GT] = ACTIONS(2165), - [anon_sym_AMP_CARET] = ACTIONS(2165), - [anon_sym_AMP_AMP] = ACTIONS(2165), - [anon_sym_PIPE_PIPE] = ACTIONS(2165), - [anon_sym_or] = ACTIONS(2165), - [sym_none] = ACTIONS(2165), - [sym_true] = ACTIONS(2165), - [sym_false] = ACTIONS(2165), - [sym_nil] = ACTIONS(2165), - [anon_sym_QMARK_DOT] = ACTIONS(2165), - [anon_sym_POUND_LBRACK] = ACTIONS(2165), - [anon_sym_if] = ACTIONS(2165), - [anon_sym_DOLLARif] = ACTIONS(2165), - [anon_sym_is] = ACTIONS(2165), - [anon_sym_BANGis] = ACTIONS(2165), - [anon_sym_in] = ACTIONS(2165), - [anon_sym_BANGin] = ACTIONS(2165), - [anon_sym_match] = ACTIONS(2165), - [anon_sym_select] = ACTIONS(2165), - [anon_sym_lock] = ACTIONS(2165), - [anon_sym_rlock] = ACTIONS(2165), - [anon_sym_unsafe] = ACTIONS(2165), - [anon_sym_sql] = ACTIONS(2165), - [sym_int_literal] = ACTIONS(2165), - [sym_float_literal] = ACTIONS(2165), - [sym_rune_literal] = ACTIONS(2165), - [sym_pseudo_compile_time_identifier] = ACTIONS(2165), - [anon_sym_shared] = ACTIONS(2165), - [anon_sym_map_LBRACK] = ACTIONS(2165), - [anon_sym_chan] = ACTIONS(2165), - [anon_sym_thread] = ACTIONS(2165), - [anon_sym_atomic] = ACTIONS(2165), - [sym___double_quote] = ACTIONS(2165), - [sym___single_quote] = ACTIONS(2165), - [sym___c_double_quote] = ACTIONS(2165), - [sym___c_single_quote] = ACTIONS(2165), - [sym___r_double_quote] = ACTIONS(2165), - [sym___r_single_quote] = ACTIONS(2165), + [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_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), }, - [1197] = { - [sym_line_comment] = STATE(1197), - [sym_block_comment] = STATE(1197), - [sym_reference_expression] = STATE(4495), - [sym_type_reference_expression] = STATE(3541), - [sym_plain_type] = STATE(2386), - [sym__plain_type_without_special] = STATE(2302), - [sym_anon_struct_type] = STATE(2303), - [sym_multi_return_type] = STATE(2302), - [sym_result_type] = STATE(2302), - [sym_option_type] = STATE(2302), - [sym_qualified_type] = STATE(3541), - [sym_fixed_array_type] = STATE(2303), - [sym_array_type] = STATE(2303), - [sym_pointer_type] = STATE(2303), - [sym_wrong_pointer_type] = STATE(2303), - [sym_map_type] = STATE(2303), - [sym_channel_type] = STATE(2303), - [sym_shared_type] = STATE(2303), - [sym_thread_type] = STATE(2303), - [sym_atomic_type] = STATE(2303), - [sym_generic_type] = STATE(2303), - [sym_function_type] = STATE(2303), - [sym_identifier] = ACTIONS(597), - [anon_sym_SLASH_SLASH] = ACTIONS(3), - [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_SEMI] = ACTIONS(595), - [anon_sym_DOT] = ACTIONS(595), - [anon_sym_as] = ACTIONS(599), - [anon_sym_LBRACE] = ACTIONS(595), - [anon_sym_COMMA] = ACTIONS(595), - [anon_sym_LPAREN] = ACTIONS(3586), - [anon_sym_EQ] = ACTIONS(599), - [anon_sym_PIPE] = ACTIONS(599), - [anon_sym_fn] = ACTIONS(603), - [anon_sym_PLUS] = ACTIONS(599), - [anon_sym_DASH] = ACTIONS(599), - [anon_sym_STAR] = ACTIONS(605), - [anon_sym_SLASH] = ACTIONS(599), - [anon_sym_PERCENT] = ACTIONS(599), - [anon_sym_LT] = ACTIONS(599), - [anon_sym_GT] = ACTIONS(599), - [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(607), - [anon_sym_PLUS_PLUS] = ACTIONS(595), - [anon_sym_DASH_DASH] = ACTIONS(595), - [anon_sym_QMARK] = ACTIONS(515), - [anon_sym_BANG] = ACTIONS(3748), - [anon_sym_LBRACK2] = ACTIONS(611), - [anon_sym_CARET] = ACTIONS(599), - [anon_sym_AMP] = ACTIONS(613), - [anon_sym_LT_LT] = ACTIONS(599), - [anon_sym_GT_GT] = ACTIONS(599), - [anon_sym_GT_GT_GT] = ACTIONS(599), - [anon_sym_AMP_CARET] = ACTIONS(599), - [anon_sym_AMP_AMP] = ACTIONS(595), - [anon_sym_PIPE_PIPE] = ACTIONS(595), - [anon_sym_or] = ACTIONS(599), - [anon_sym_QMARK_DOT] = ACTIONS(595), - [anon_sym_POUND_LBRACK] = ACTIONS(595), - [anon_sym_is] = ACTIONS(599), - [anon_sym_BANGis] = ACTIONS(595), - [anon_sym_in] = ACTIONS(599), - [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(615), - [anon_sym_map_LBRACK] = ACTIONS(85), - [anon_sym_chan] = ACTIONS(87), - [anon_sym_thread] = ACTIONS(89), - [anon_sym_atomic] = ACTIONS(91), + [1215] = { + [sym_line_comment] = STATE(1215), + [sym_block_comment] = STATE(1215), + [sym_identifier] = ACTIONS(2311), + [anon_sym_LF] = ACTIONS(2311), + [anon_sym_CR] = ACTIONS(2311), + [anon_sym_CR_LF] = ACTIONS(2311), + [anon_sym_SLASH_SLASH] = ACTIONS(497), + [anon_sym_SLASH_STAR] = ACTIONS(499), + [anon_sym_SEMI] = ACTIONS(2311), + [anon_sym_DOT] = ACTIONS(2311), + [anon_sym_as] = ACTIONS(2311), + [anon_sym_LBRACE] = ACTIONS(2311), + [anon_sym_COMMA] = ACTIONS(2311), + [anon_sym_RBRACE] = ACTIONS(2311), + [anon_sym_LPAREN] = ACTIONS(2311), + [anon_sym_RPAREN] = ACTIONS(2311), + [anon_sym_PIPE] = ACTIONS(2311), + [anon_sym_fn] = ACTIONS(2311), + [anon_sym_PLUS] = ACTIONS(2311), + [anon_sym_DASH] = ACTIONS(2311), + [anon_sym_STAR] = ACTIONS(2311), + [anon_sym_SLASH] = ACTIONS(2311), + [anon_sym_PERCENT] = ACTIONS(2311), + [anon_sym_LT] = ACTIONS(2311), + [anon_sym_GT] = ACTIONS(2311), + [anon_sym_EQ_EQ] = ACTIONS(2311), + [anon_sym_BANG_EQ] = ACTIONS(2311), + [anon_sym_LT_EQ] = ACTIONS(2311), + [anon_sym_GT_EQ] = ACTIONS(2311), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2311), + [anon_sym_LBRACK] = ACTIONS(2309), + [anon_sym_struct] = ACTIONS(2311), + [anon_sym_mut] = ACTIONS(2311), + [anon_sym_PLUS_PLUS] = ACTIONS(2311), + [anon_sym_DASH_DASH] = ACTIONS(2311), + [anon_sym_QMARK] = ACTIONS(2311), + [anon_sym_BANG] = ACTIONS(2311), + [anon_sym_go] = ACTIONS(2311), + [anon_sym_spawn] = ACTIONS(2311), + [anon_sym_json_DOTdecode] = ACTIONS(2311), + [anon_sym_LBRACK2] = ACTIONS(2311), + [anon_sym_TILDE] = ACTIONS(2311), + [anon_sym_CARET] = ACTIONS(2311), + [anon_sym_AMP] = ACTIONS(2311), + [anon_sym_LT_DASH] = ACTIONS(2311), + [anon_sym_LT_LT] = ACTIONS(2311), + [anon_sym_GT_GT] = ACTIONS(2311), + [anon_sym_GT_GT_GT] = ACTIONS(2311), + [anon_sym_AMP_CARET] = ACTIONS(2311), + [anon_sym_AMP_AMP] = ACTIONS(2311), + [anon_sym_PIPE_PIPE] = ACTIONS(2311), + [anon_sym_or] = ACTIONS(2311), + [sym_none] = ACTIONS(2311), + [sym_true] = ACTIONS(2311), + [sym_false] = ACTIONS(2311), + [sym_nil] = ACTIONS(2311), + [anon_sym_QMARK_DOT] = ACTIONS(2311), + [anon_sym_POUND_LBRACK] = ACTIONS(2311), + [anon_sym_if] = ACTIONS(2311), + [anon_sym_DOLLARif] = ACTIONS(2311), + [anon_sym_is] = ACTIONS(2311), + [anon_sym_BANGis] = ACTIONS(2311), + [anon_sym_in] = ACTIONS(2311), + [anon_sym_BANGin] = ACTIONS(2311), + [anon_sym_match] = ACTIONS(2311), + [anon_sym_select] = ACTIONS(2311), + [anon_sym_lock] = ACTIONS(2311), + [anon_sym_rlock] = ACTIONS(2311), + [anon_sym_unsafe] = ACTIONS(2311), + [anon_sym_sql] = ACTIONS(2311), + [sym_int_literal] = ACTIONS(2311), + [sym_float_literal] = ACTIONS(2311), + [sym_rune_literal] = ACTIONS(2311), + [sym_pseudo_compile_time_identifier] = ACTIONS(2311), + [anon_sym_shared] = ACTIONS(2311), + [anon_sym_map_LBRACK] = ACTIONS(2311), + [anon_sym_chan] = ACTIONS(2311), + [anon_sym_thread] = ACTIONS(2311), + [anon_sym_atomic] = ACTIONS(2311), + [sym___double_quote] = ACTIONS(2311), + [sym___single_quote] = ACTIONS(2311), + [sym___c_double_quote] = ACTIONS(2311), + [sym___c_single_quote] = ACTIONS(2311), + [sym___r_double_quote] = ACTIONS(2311), + [sym___r_single_quote] = ACTIONS(2311), }, - [1198] = { - [sym_line_comment] = STATE(1198), - [sym_block_comment] = STATE(1198), - [sym_identifier] = ACTIONS(2659), - [anon_sym_LF] = ACTIONS(2659), - [anon_sym_CR] = ACTIONS(2659), - [anon_sym_CR_LF] = ACTIONS(2659), + [1216] = { + [sym_line_comment] = STATE(1216), + [sym_block_comment] = STATE(1216), + [sym_identifier] = ACTIONS(2303), + [anon_sym_LF] = ACTIONS(2303), + [anon_sym_CR] = ACTIONS(2303), + [anon_sym_CR_LF] = ACTIONS(2303), [anon_sym_SLASH_SLASH] = ACTIONS(497), [anon_sym_SLASH_STAR] = ACTIONS(499), - [anon_sym_SEMI] = ACTIONS(2659), - [anon_sym_DOT] = ACTIONS(2659), - [anon_sym_as] = ACTIONS(2659), - [anon_sym_LBRACE] = ACTIONS(2659), - [anon_sym_COMMA] = ACTIONS(2659), - [anon_sym_RBRACE] = ACTIONS(2659), - [anon_sym_LPAREN] = ACTIONS(2659), - [anon_sym_RPAREN] = ACTIONS(2659), - [anon_sym_PIPE] = ACTIONS(2659), - [anon_sym_fn] = ACTIONS(2659), - [anon_sym_PLUS] = ACTIONS(2659), - [anon_sym_DASH] = ACTIONS(2659), - [anon_sym_STAR] = ACTIONS(2659), - [anon_sym_SLASH] = ACTIONS(2659), - [anon_sym_PERCENT] = ACTIONS(2659), - [anon_sym_LT] = ACTIONS(2659), - [anon_sym_GT] = ACTIONS(2659), - [anon_sym_EQ_EQ] = ACTIONS(2659), - [anon_sym_BANG_EQ] = ACTIONS(2659), - [anon_sym_LT_EQ] = ACTIONS(2659), - [anon_sym_GT_EQ] = ACTIONS(2659), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2659), - [anon_sym_LBRACK] = ACTIONS(2657), - [anon_sym_struct] = ACTIONS(2659), - [anon_sym_mut] = ACTIONS(2659), - [anon_sym_PLUS_PLUS] = ACTIONS(2659), - [anon_sym_DASH_DASH] = ACTIONS(2659), - [anon_sym_QMARK] = ACTIONS(2659), - [anon_sym_BANG] = ACTIONS(2659), - [anon_sym_go] = ACTIONS(2659), - [anon_sym_spawn] = ACTIONS(2659), - [anon_sym_json_DOTdecode] = ACTIONS(2659), - [anon_sym_LBRACK2] = ACTIONS(2659), - [anon_sym_TILDE] = ACTIONS(2659), - [anon_sym_CARET] = ACTIONS(2659), - [anon_sym_AMP] = ACTIONS(2659), - [anon_sym_LT_DASH] = ACTIONS(2659), - [anon_sym_LT_LT] = ACTIONS(2659), - [anon_sym_GT_GT] = ACTIONS(2659), - [anon_sym_GT_GT_GT] = ACTIONS(2659), - [anon_sym_AMP_CARET] = ACTIONS(2659), - [anon_sym_AMP_AMP] = ACTIONS(2659), - [anon_sym_PIPE_PIPE] = ACTIONS(2659), - [anon_sym_or] = ACTIONS(2659), - [sym_none] = ACTIONS(2659), - [sym_true] = ACTIONS(2659), - [sym_false] = ACTIONS(2659), - [sym_nil] = ACTIONS(2659), - [anon_sym_QMARK_DOT] = ACTIONS(2659), - [anon_sym_POUND_LBRACK] = ACTIONS(2659), - [anon_sym_if] = ACTIONS(2659), - [anon_sym_DOLLARif] = ACTIONS(2659), - [anon_sym_is] = ACTIONS(2659), - [anon_sym_BANGis] = ACTIONS(2659), - [anon_sym_in] = ACTIONS(2659), - [anon_sym_BANGin] = ACTIONS(2659), - [anon_sym_match] = ACTIONS(2659), - [anon_sym_select] = ACTIONS(2659), - [anon_sym_lock] = ACTIONS(2659), - [anon_sym_rlock] = ACTIONS(2659), - [anon_sym_unsafe] = ACTIONS(2659), - [anon_sym_sql] = ACTIONS(2659), - [sym_int_literal] = ACTIONS(2659), - [sym_float_literal] = ACTIONS(2659), - [sym_rune_literal] = ACTIONS(2659), - [sym_pseudo_compile_time_identifier] = ACTIONS(2659), - [anon_sym_shared] = ACTIONS(2659), - [anon_sym_map_LBRACK] = ACTIONS(2659), - [anon_sym_chan] = ACTIONS(2659), - [anon_sym_thread] = ACTIONS(2659), - [anon_sym_atomic] = ACTIONS(2659), - [sym___double_quote] = ACTIONS(2659), - [sym___single_quote] = ACTIONS(2659), - [sym___c_double_quote] = ACTIONS(2659), - [sym___c_single_quote] = ACTIONS(2659), - [sym___r_double_quote] = ACTIONS(2659), - [sym___r_single_quote] = ACTIONS(2659), + [anon_sym_SEMI] = ACTIONS(2303), + [anon_sym_DOT] = ACTIONS(2303), + [anon_sym_as] = ACTIONS(2303), + [anon_sym_LBRACE] = ACTIONS(2303), + [anon_sym_COMMA] = ACTIONS(2303), + [anon_sym_RBRACE] = ACTIONS(2303), + [anon_sym_LPAREN] = ACTIONS(2303), + [anon_sym_RPAREN] = ACTIONS(2303), + [anon_sym_PIPE] = ACTIONS(2303), + [anon_sym_fn] = ACTIONS(2303), + [anon_sym_PLUS] = ACTIONS(2303), + [anon_sym_DASH] = ACTIONS(2303), + [anon_sym_STAR] = ACTIONS(2303), + [anon_sym_SLASH] = ACTIONS(2303), + [anon_sym_PERCENT] = ACTIONS(2303), + [anon_sym_LT] = ACTIONS(2303), + [anon_sym_GT] = ACTIONS(2303), + [anon_sym_EQ_EQ] = ACTIONS(2303), + [anon_sym_BANG_EQ] = ACTIONS(2303), + [anon_sym_LT_EQ] = ACTIONS(2303), + [anon_sym_GT_EQ] = ACTIONS(2303), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2303), + [anon_sym_LBRACK] = ACTIONS(2301), + [anon_sym_struct] = ACTIONS(2303), + [anon_sym_mut] = ACTIONS(2303), + [anon_sym_PLUS_PLUS] = ACTIONS(2303), + [anon_sym_DASH_DASH] = ACTIONS(2303), + [anon_sym_QMARK] = ACTIONS(2303), + [anon_sym_BANG] = ACTIONS(2303), + [anon_sym_go] = ACTIONS(2303), + [anon_sym_spawn] = ACTIONS(2303), + [anon_sym_json_DOTdecode] = ACTIONS(2303), + [anon_sym_LBRACK2] = ACTIONS(2303), + [anon_sym_TILDE] = ACTIONS(2303), + [anon_sym_CARET] = ACTIONS(2303), + [anon_sym_AMP] = ACTIONS(2303), + [anon_sym_LT_DASH] = ACTIONS(2303), + [anon_sym_LT_LT] = ACTIONS(2303), + [anon_sym_GT_GT] = ACTIONS(2303), + [anon_sym_GT_GT_GT] = ACTIONS(2303), + [anon_sym_AMP_CARET] = ACTIONS(2303), + [anon_sym_AMP_AMP] = ACTIONS(2303), + [anon_sym_PIPE_PIPE] = ACTIONS(2303), + [anon_sym_or] = ACTIONS(2303), + [sym_none] = ACTIONS(2303), + [sym_true] = ACTIONS(2303), + [sym_false] = ACTIONS(2303), + [sym_nil] = ACTIONS(2303), + [anon_sym_QMARK_DOT] = ACTIONS(2303), + [anon_sym_POUND_LBRACK] = ACTIONS(2303), + [anon_sym_if] = ACTIONS(2303), + [anon_sym_DOLLARif] = ACTIONS(2303), + [anon_sym_is] = ACTIONS(2303), + [anon_sym_BANGis] = ACTIONS(2303), + [anon_sym_in] = ACTIONS(2303), + [anon_sym_BANGin] = ACTIONS(2303), + [anon_sym_match] = ACTIONS(2303), + [anon_sym_select] = ACTIONS(2303), + [anon_sym_lock] = ACTIONS(2303), + [anon_sym_rlock] = ACTIONS(2303), + [anon_sym_unsafe] = ACTIONS(2303), + [anon_sym_sql] = ACTIONS(2303), + [sym_int_literal] = ACTIONS(2303), + [sym_float_literal] = ACTIONS(2303), + [sym_rune_literal] = ACTIONS(2303), + [sym_pseudo_compile_time_identifier] = ACTIONS(2303), + [anon_sym_shared] = ACTIONS(2303), + [anon_sym_map_LBRACK] = ACTIONS(2303), + [anon_sym_chan] = ACTIONS(2303), + [anon_sym_thread] = ACTIONS(2303), + [anon_sym_atomic] = ACTIONS(2303), + [sym___double_quote] = ACTIONS(2303), + [sym___single_quote] = ACTIONS(2303), + [sym___c_double_quote] = ACTIONS(2303), + [sym___c_single_quote] = ACTIONS(2303), + [sym___r_double_quote] = ACTIONS(2303), + [sym___r_single_quote] = ACTIONS(2303), }, - [1199] = { - [sym_line_comment] = STATE(1199), - [sym_block_comment] = STATE(1199), + [1217] = { + [sym_line_comment] = STATE(1217), + [sym_block_comment] = STATE(1217), [sym_identifier] = ACTIONS(2768), [anon_sym_LF] = ACTIONS(2768), [anon_sym_CR] = ACTIONS(2768), @@ -156288,2045 +157901,392 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym___r_double_quote] = ACTIONS(2768), [sym___r_single_quote] = ACTIONS(2768), }, - [1200] = { - [sym_line_comment] = STATE(1200), - [sym_block_comment] = STATE(1200), - [sym_identifier] = ACTIONS(3738), - [anon_sym_LF] = ACTIONS(3741), - [anon_sym_CR] = ACTIONS(3741), - [anon_sym_CR_LF] = ACTIONS(3741), - [anon_sym_SLASH_SLASH] = ACTIONS(497), - [anon_sym_SLASH_STAR] = ACTIONS(499), - [anon_sym_SEMI] = ACTIONS(3741), - [anon_sym_DOT] = ACTIONS(3750), - [anon_sym_as] = ACTIONS(2761), - [anon_sym_LBRACE] = ACTIONS(2761), - [anon_sym_COMMA] = ACTIONS(3741), - [anon_sym_RBRACE] = ACTIONS(3738), - [anon_sym_LPAREN] = 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(3744), - [anon_sym_LBRACK] = ACTIONS(2759), - [anon_sym_struct] = ACTIONS(2761), - [anon_sym_mut] = ACTIONS(2761), - [anon_sym_COLON] = ACTIONS(3746), - [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), - }, - [1201] = { - [sym_line_comment] = STATE(1201), - [sym_block_comment] = STATE(1201), - [sym_identifier] = ACTIONS(2511), - [anon_sym_LF] = ACTIONS(2511), - [anon_sym_CR] = ACTIONS(2511), - [anon_sym_CR_LF] = ACTIONS(2511), - [anon_sym_SLASH_SLASH] = ACTIONS(497), - [anon_sym_SLASH_STAR] = ACTIONS(499), - [anon_sym_SEMI] = ACTIONS(2511), - [anon_sym_DOT] = ACTIONS(2511), - [anon_sym_as] = ACTIONS(2511), - [anon_sym_LBRACE] = ACTIONS(2511), - [anon_sym_COMMA] = ACTIONS(2511), - [anon_sym_RBRACE] = ACTIONS(2511), - [anon_sym_LPAREN] = ACTIONS(2511), - [anon_sym_RPAREN] = ACTIONS(2511), - [anon_sym_PIPE] = ACTIONS(2511), - [anon_sym_fn] = ACTIONS(2511), - [anon_sym_PLUS] = ACTIONS(2511), - [anon_sym_DASH] = ACTIONS(2511), - [anon_sym_STAR] = ACTIONS(2511), - [anon_sym_SLASH] = ACTIONS(2511), - [anon_sym_PERCENT] = ACTIONS(2511), - [anon_sym_LT] = ACTIONS(2511), - [anon_sym_GT] = ACTIONS(2511), - [anon_sym_EQ_EQ] = ACTIONS(2511), - [anon_sym_BANG_EQ] = ACTIONS(2511), - [anon_sym_LT_EQ] = ACTIONS(2511), - [anon_sym_GT_EQ] = ACTIONS(2511), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2511), - [anon_sym_LBRACK] = ACTIONS(2509), - [anon_sym_struct] = ACTIONS(2511), - [anon_sym_mut] = ACTIONS(2511), - [anon_sym_PLUS_PLUS] = ACTIONS(2511), - [anon_sym_DASH_DASH] = ACTIONS(2511), - [anon_sym_QMARK] = ACTIONS(2511), - [anon_sym_BANG] = ACTIONS(2511), - [anon_sym_go] = ACTIONS(2511), - [anon_sym_spawn] = ACTIONS(2511), - [anon_sym_json_DOTdecode] = ACTIONS(2511), - [anon_sym_LBRACK2] = ACTIONS(2511), - [anon_sym_TILDE] = ACTIONS(2511), - [anon_sym_CARET] = ACTIONS(2511), - [anon_sym_AMP] = ACTIONS(2511), - [anon_sym_LT_DASH] = ACTIONS(2511), - [anon_sym_LT_LT] = ACTIONS(2511), - [anon_sym_GT_GT] = ACTIONS(2511), - [anon_sym_GT_GT_GT] = ACTIONS(2511), - [anon_sym_AMP_CARET] = ACTIONS(2511), - [anon_sym_AMP_AMP] = ACTIONS(2511), - [anon_sym_PIPE_PIPE] = ACTIONS(2511), - [anon_sym_or] = ACTIONS(2511), - [sym_none] = ACTIONS(2511), - [sym_true] = ACTIONS(2511), - [sym_false] = ACTIONS(2511), - [sym_nil] = ACTIONS(2511), - [anon_sym_QMARK_DOT] = ACTIONS(2511), - [anon_sym_POUND_LBRACK] = ACTIONS(2511), - [anon_sym_if] = ACTIONS(2511), - [anon_sym_DOLLARif] = ACTIONS(2511), - [anon_sym_is] = ACTIONS(2511), - [anon_sym_BANGis] = ACTIONS(2511), - [anon_sym_in] = ACTIONS(2511), - [anon_sym_BANGin] = ACTIONS(2511), - [anon_sym_match] = ACTIONS(2511), - [anon_sym_select] = ACTIONS(2511), - [anon_sym_lock] = ACTIONS(2511), - [anon_sym_rlock] = ACTIONS(2511), - [anon_sym_unsafe] = ACTIONS(2511), - [anon_sym_sql] = ACTIONS(2511), - [sym_int_literal] = ACTIONS(2511), - [sym_float_literal] = ACTIONS(2511), - [sym_rune_literal] = ACTIONS(2511), - [sym_pseudo_compile_time_identifier] = ACTIONS(2511), - [anon_sym_shared] = ACTIONS(2511), - [anon_sym_map_LBRACK] = ACTIONS(2511), - [anon_sym_chan] = ACTIONS(2511), - [anon_sym_thread] = ACTIONS(2511), - [anon_sym_atomic] = ACTIONS(2511), - [sym___double_quote] = ACTIONS(2511), - [sym___single_quote] = ACTIONS(2511), - [sym___c_double_quote] = ACTIONS(2511), - [sym___c_single_quote] = ACTIONS(2511), - [sym___r_double_quote] = ACTIONS(2511), - [sym___r_single_quote] = ACTIONS(2511), - }, - [1202] = { - [sym_line_comment] = STATE(1202), - [sym_block_comment] = STATE(1202), - [sym_identifier] = ACTIONS(2832), - [anon_sym_LF] = ACTIONS(2832), - [anon_sym_CR] = ACTIONS(2832), - [anon_sym_CR_LF] = ACTIONS(2832), - [anon_sym_SLASH_SLASH] = ACTIONS(497), - [anon_sym_SLASH_STAR] = ACTIONS(499), - [anon_sym_SEMI] = ACTIONS(2832), - [anon_sym_DOT] = ACTIONS(2832), - [anon_sym_as] = ACTIONS(2832), - [anon_sym_LBRACE] = ACTIONS(2832), - [anon_sym_COMMA] = ACTIONS(2832), - [anon_sym_RBRACE] = ACTIONS(2832), - [anon_sym_LPAREN] = ACTIONS(2832), - [anon_sym_RPAREN] = ACTIONS(2832), - [anon_sym_PIPE] = ACTIONS(2832), - [anon_sym_fn] = ACTIONS(2832), - [anon_sym_PLUS] = ACTIONS(2832), - [anon_sym_DASH] = ACTIONS(2832), - [anon_sym_STAR] = ACTIONS(2832), - [anon_sym_SLASH] = ACTIONS(2832), - [anon_sym_PERCENT] = ACTIONS(2832), - [anon_sym_LT] = ACTIONS(2832), - [anon_sym_GT] = ACTIONS(2832), - [anon_sym_EQ_EQ] = ACTIONS(2832), - [anon_sym_BANG_EQ] = ACTIONS(2832), - [anon_sym_LT_EQ] = ACTIONS(2832), - [anon_sym_GT_EQ] = ACTIONS(2832), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2832), - [anon_sym_LBRACK] = ACTIONS(2830), - [anon_sym_struct] = ACTIONS(2832), - [anon_sym_mut] = ACTIONS(2832), - [anon_sym_PLUS_PLUS] = ACTIONS(2832), - [anon_sym_DASH_DASH] = ACTIONS(2832), - [anon_sym_QMARK] = ACTIONS(2832), - [anon_sym_BANG] = ACTIONS(2832), - [anon_sym_go] = ACTIONS(2832), - [anon_sym_spawn] = ACTIONS(2832), - [anon_sym_json_DOTdecode] = ACTIONS(2832), - [anon_sym_LBRACK2] = ACTIONS(2832), - [anon_sym_TILDE] = ACTIONS(2832), - [anon_sym_CARET] = ACTIONS(2832), - [anon_sym_AMP] = ACTIONS(2832), - [anon_sym_LT_DASH] = ACTIONS(2832), - [anon_sym_LT_LT] = ACTIONS(2832), - [anon_sym_GT_GT] = ACTIONS(2832), - [anon_sym_GT_GT_GT] = ACTIONS(2832), - [anon_sym_AMP_CARET] = ACTIONS(2832), - [anon_sym_AMP_AMP] = ACTIONS(2832), - [anon_sym_PIPE_PIPE] = ACTIONS(2832), - [anon_sym_or] = ACTIONS(2832), - [sym_none] = ACTIONS(2832), - [sym_true] = ACTIONS(2832), - [sym_false] = ACTIONS(2832), - [sym_nil] = ACTIONS(2832), - [anon_sym_QMARK_DOT] = ACTIONS(2832), - [anon_sym_POUND_LBRACK] = ACTIONS(2832), - [anon_sym_if] = ACTIONS(2832), - [anon_sym_DOLLARif] = ACTIONS(2832), - [anon_sym_is] = ACTIONS(2832), - [anon_sym_BANGis] = ACTIONS(2832), - [anon_sym_in] = ACTIONS(2832), - [anon_sym_BANGin] = ACTIONS(2832), - [anon_sym_match] = ACTIONS(2832), - [anon_sym_select] = ACTIONS(2832), - [anon_sym_lock] = ACTIONS(2832), - [anon_sym_rlock] = ACTIONS(2832), - [anon_sym_unsafe] = ACTIONS(2832), - [anon_sym_sql] = ACTIONS(2832), - [sym_int_literal] = ACTIONS(2832), - [sym_float_literal] = ACTIONS(2832), - [sym_rune_literal] = ACTIONS(2832), - [sym_pseudo_compile_time_identifier] = ACTIONS(2832), - [anon_sym_shared] = ACTIONS(2832), - [anon_sym_map_LBRACK] = ACTIONS(2832), - [anon_sym_chan] = ACTIONS(2832), - [anon_sym_thread] = ACTIONS(2832), - [anon_sym_atomic] = ACTIONS(2832), - [sym___double_quote] = ACTIONS(2832), - [sym___single_quote] = ACTIONS(2832), - [sym___c_double_quote] = ACTIONS(2832), - [sym___c_single_quote] = ACTIONS(2832), - [sym___r_double_quote] = ACTIONS(2832), - [sym___r_single_quote] = ACTIONS(2832), - }, - [1203] = { - [sym_line_comment] = STATE(1203), - [sym_block_comment] = STATE(1203), - [sym_reference_expression] = STATE(4495), - [sym_type_reference_expression] = STATE(3541), - [sym_plain_type] = STATE(2386), - [sym__plain_type_without_special] = STATE(2302), - [sym_anon_struct_type] = STATE(2303), - [sym_multi_return_type] = STATE(2302), - [sym_result_type] = STATE(2302), - [sym_option_type] = STATE(2302), - [sym_qualified_type] = STATE(3541), - [sym_fixed_array_type] = STATE(2303), - [sym_array_type] = STATE(2303), - [sym_pointer_type] = STATE(2303), - [sym_wrong_pointer_type] = STATE(2303), - [sym_map_type] = STATE(2303), - [sym_channel_type] = STATE(2303), - [sym_shared_type] = STATE(2303), - [sym_thread_type] = STATE(2303), - [sym_atomic_type] = STATE(2303), - [sym_generic_type] = STATE(2303), - [sym_function_type] = STATE(2303), - [sym_identifier] = ACTIONS(597), - [anon_sym_SLASH_SLASH] = ACTIONS(3), - [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(595), - [anon_sym_as] = ACTIONS(599), - [anon_sym_LBRACE] = ACTIONS(595), - [anon_sym_COMMA] = ACTIONS(595), - [anon_sym_LPAREN] = ACTIONS(3586), - [anon_sym_EQ] = ACTIONS(599), - [anon_sym_PIPE] = ACTIONS(599), - [anon_sym_fn] = ACTIONS(603), - [anon_sym_PLUS] = ACTIONS(599), - [anon_sym_DASH] = ACTIONS(599), - [anon_sym_STAR] = ACTIONS(605), - [anon_sym_SLASH] = ACTIONS(599), - [anon_sym_PERCENT] = ACTIONS(599), - [anon_sym_LT] = ACTIONS(599), - [anon_sym_GT] = ACTIONS(599), - [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(607), - [anon_sym_COLON] = ACTIONS(595), - [anon_sym_PLUS_PLUS] = ACTIONS(595), - [anon_sym_DASH_DASH] = ACTIONS(595), - [anon_sym_QMARK] = ACTIONS(515), - [anon_sym_BANG] = ACTIONS(3753), - [anon_sym_LBRACK2] = ACTIONS(611), - [anon_sym_CARET] = ACTIONS(599), - [anon_sym_AMP] = ACTIONS(613), - [anon_sym_LT_DASH] = ACTIONS(595), - [anon_sym_LT_LT] = ACTIONS(599), - [anon_sym_GT_GT] = ACTIONS(599), - [anon_sym_GT_GT_GT] = ACTIONS(599), - [anon_sym_AMP_CARET] = ACTIONS(599), - [anon_sym_AMP_AMP] = ACTIONS(595), - [anon_sym_PIPE_PIPE] = ACTIONS(595), - [anon_sym_or] = ACTIONS(599), - [anon_sym_QMARK_DOT] = ACTIONS(595), - [anon_sym_POUND_LBRACK] = ACTIONS(595), - [anon_sym_is] = ACTIONS(599), - [anon_sym_BANGis] = ACTIONS(595), - [anon_sym_in] = ACTIONS(599), - [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(615), - [anon_sym_map_LBRACK] = ACTIONS(85), - [anon_sym_chan] = ACTIONS(87), - [anon_sym_thread] = ACTIONS(89), - [anon_sym_atomic] = ACTIONS(91), - }, - [1204] = { - [sym_line_comment] = STATE(1204), - [sym_block_comment] = STATE(1204), - [sym_identifier] = ACTIONS(2677), - [anon_sym_LF] = ACTIONS(2677), - [anon_sym_CR] = ACTIONS(2677), - [anon_sym_CR_LF] = ACTIONS(2677), - [anon_sym_SLASH_SLASH] = ACTIONS(497), - [anon_sym_SLASH_STAR] = ACTIONS(499), - [anon_sym_SEMI] = ACTIONS(2677), - [anon_sym_DOT] = ACTIONS(2677), - [anon_sym_as] = ACTIONS(2677), - [anon_sym_LBRACE] = ACTIONS(2677), - [anon_sym_COMMA] = ACTIONS(2677), - [anon_sym_RBRACE] = ACTIONS(2677), - [anon_sym_LPAREN] = ACTIONS(2677), - [anon_sym_RPAREN] = ACTIONS(2677), - [anon_sym_PIPE] = ACTIONS(2677), - [anon_sym_fn] = ACTIONS(2677), - [anon_sym_PLUS] = ACTIONS(2677), - [anon_sym_DASH] = ACTIONS(2677), - [anon_sym_STAR] = ACTIONS(2677), - [anon_sym_SLASH] = ACTIONS(2677), - [anon_sym_PERCENT] = ACTIONS(2677), - [anon_sym_LT] = ACTIONS(2677), - [anon_sym_GT] = ACTIONS(2677), - [anon_sym_EQ_EQ] = ACTIONS(2677), - [anon_sym_BANG_EQ] = ACTIONS(2677), - [anon_sym_LT_EQ] = ACTIONS(2677), - [anon_sym_GT_EQ] = ACTIONS(2677), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2677), - [anon_sym_LBRACK] = ACTIONS(2675), - [anon_sym_struct] = ACTIONS(2677), - [anon_sym_mut] = ACTIONS(2677), - [anon_sym_PLUS_PLUS] = ACTIONS(2677), - [anon_sym_DASH_DASH] = ACTIONS(2677), - [anon_sym_QMARK] = ACTIONS(2677), - [anon_sym_BANG] = ACTIONS(2677), - [anon_sym_go] = ACTIONS(2677), - [anon_sym_spawn] = ACTIONS(2677), - [anon_sym_json_DOTdecode] = ACTIONS(2677), - [anon_sym_LBRACK2] = ACTIONS(2677), - [anon_sym_TILDE] = ACTIONS(2677), - [anon_sym_CARET] = ACTIONS(2677), - [anon_sym_AMP] = ACTIONS(2677), - [anon_sym_LT_DASH] = ACTIONS(2677), - [anon_sym_LT_LT] = ACTIONS(2677), - [anon_sym_GT_GT] = ACTIONS(2677), - [anon_sym_GT_GT_GT] = ACTIONS(2677), - [anon_sym_AMP_CARET] = ACTIONS(2677), - [anon_sym_AMP_AMP] = ACTIONS(2677), - [anon_sym_PIPE_PIPE] = ACTIONS(2677), - [anon_sym_or] = ACTIONS(2677), - [sym_none] = ACTIONS(2677), - [sym_true] = ACTIONS(2677), - [sym_false] = ACTIONS(2677), - [sym_nil] = ACTIONS(2677), - [anon_sym_QMARK_DOT] = ACTIONS(2677), - [anon_sym_POUND_LBRACK] = ACTIONS(2677), - [anon_sym_if] = ACTIONS(2677), - [anon_sym_DOLLARif] = ACTIONS(2677), - [anon_sym_is] = ACTIONS(2677), - [anon_sym_BANGis] = ACTIONS(2677), - [anon_sym_in] = ACTIONS(2677), - [anon_sym_BANGin] = ACTIONS(2677), - [anon_sym_match] = ACTIONS(2677), - [anon_sym_select] = ACTIONS(2677), - [anon_sym_lock] = ACTIONS(2677), - [anon_sym_rlock] = ACTIONS(2677), - [anon_sym_unsafe] = ACTIONS(2677), - [anon_sym_sql] = ACTIONS(2677), - [sym_int_literal] = ACTIONS(2677), - [sym_float_literal] = ACTIONS(2677), - [sym_rune_literal] = ACTIONS(2677), - [sym_pseudo_compile_time_identifier] = ACTIONS(2677), - [anon_sym_shared] = ACTIONS(2677), - [anon_sym_map_LBRACK] = ACTIONS(2677), - [anon_sym_chan] = ACTIONS(2677), - [anon_sym_thread] = ACTIONS(2677), - [anon_sym_atomic] = ACTIONS(2677), - [sym___double_quote] = ACTIONS(2677), - [sym___single_quote] = ACTIONS(2677), - [sym___c_double_quote] = ACTIONS(2677), - [sym___c_single_quote] = ACTIONS(2677), - [sym___r_double_quote] = ACTIONS(2677), - [sym___r_single_quote] = ACTIONS(2677), - }, - [1205] = { - [sym_line_comment] = STATE(1205), - [sym_block_comment] = STATE(1205), - [sym_reference_expression] = STATE(4376), - [sym_type_reference_expression] = STATE(1910), - [sym_plain_type] = STATE(1978), - [sym__plain_type_without_special] = STATE(2003), - [sym_anon_struct_type] = STATE(2002), - [sym_multi_return_type] = STATE(2003), - [sym_result_type] = STATE(2003), - [sym_option_type] = STATE(2003), - [sym_qualified_type] = STATE(1910), - [sym_fixed_array_type] = STATE(2002), - [sym_array_type] = STATE(2002), - [sym_pointer_type] = STATE(2002), - [sym_wrong_pointer_type] = STATE(2002), - [sym_map_type] = STATE(2002), - [sym_channel_type] = STATE(2002), - [sym_shared_type] = STATE(2002), - [sym_thread_type] = STATE(2002), - [sym_atomic_type] = STATE(2002), - [sym_generic_type] = STATE(2002), - [sym_function_type] = STATE(2002), - [sym_identifier] = ACTIONS(3755), - [anon_sym_SLASH_SLASH] = ACTIONS(3), - [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_SEMI] = ACTIONS(563), - [anon_sym_DOT] = ACTIONS(563), - [anon_sym_as] = ACTIONS(567), - [anon_sym_LBRACE] = ACTIONS(563), - [anon_sym_COMMA] = ACTIONS(563), - [anon_sym_LPAREN] = ACTIONS(3757), - [anon_sym_EQ] = ACTIONS(567), - [anon_sym_PIPE] = ACTIONS(567), - [anon_sym_fn] = ACTIONS(3759), - [anon_sym_PLUS] = ACTIONS(567), - [anon_sym_DASH] = ACTIONS(567), - [anon_sym_STAR] = ACTIONS(3761), - [anon_sym_SLASH] = ACTIONS(567), - [anon_sym_PERCENT] = ACTIONS(567), - [anon_sym_LT] = ACTIONS(567), - [anon_sym_GT] = ACTIONS(567), - [anon_sym_EQ_EQ] = ACTIONS(563), - [anon_sym_BANG_EQ] = ACTIONS(563), - [anon_sym_LT_EQ] = ACTIONS(563), - [anon_sym_GT_EQ] = ACTIONS(563), - [anon_sym_LBRACK] = ACTIONS(563), - [anon_sym_struct] = ACTIONS(3763), - [anon_sym_PLUS_PLUS] = ACTIONS(563), - [anon_sym_DASH_DASH] = ACTIONS(563), - [anon_sym_QMARK] = ACTIONS(3765), - [anon_sym_BANG] = ACTIONS(3767), - [anon_sym_LBRACK2] = ACTIONS(3769), - [anon_sym_CARET] = ACTIONS(567), - [anon_sym_AMP] = ACTIONS(3771), - [anon_sym_LT_LT] = ACTIONS(567), - [anon_sym_GT_GT] = ACTIONS(567), - [anon_sym_GT_GT_GT] = ACTIONS(567), - [anon_sym_AMP_CARET] = ACTIONS(567), - [anon_sym_AMP_AMP] = ACTIONS(563), - [anon_sym_PIPE_PIPE] = ACTIONS(563), - [anon_sym_or] = ACTIONS(567), - [anon_sym_QMARK_DOT] = ACTIONS(563), - [anon_sym_POUND_LBRACK] = ACTIONS(563), - [anon_sym_is] = ACTIONS(567), - [anon_sym_BANGis] = ACTIONS(563), - [anon_sym_in] = ACTIONS(567), - [anon_sym_BANGin] = ACTIONS(563), - [anon_sym_STAR_EQ] = ACTIONS(563), - [anon_sym_SLASH_EQ] = ACTIONS(563), - [anon_sym_PERCENT_EQ] = ACTIONS(563), - [anon_sym_LT_LT_EQ] = ACTIONS(563), - [anon_sym_GT_GT_EQ] = ACTIONS(563), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(563), - [anon_sym_AMP_EQ] = ACTIONS(563), - [anon_sym_AMP_CARET_EQ] = ACTIONS(563), - [anon_sym_PLUS_EQ] = ACTIONS(563), - [anon_sym_DASH_EQ] = ACTIONS(563), - [anon_sym_PIPE_EQ] = ACTIONS(563), - [anon_sym_CARET_EQ] = ACTIONS(563), - [anon_sym_COLON_EQ] = ACTIONS(563), - [anon_sym_shared] = ACTIONS(3773), - [anon_sym_map_LBRACK] = ACTIONS(3775), - [anon_sym_chan] = ACTIONS(3777), - [anon_sym_thread] = ACTIONS(3779), - [anon_sym_atomic] = ACTIONS(3781), - }, - [1206] = { - [sym_line_comment] = STATE(1206), - [sym_block_comment] = STATE(1206), - [sym_reference_expression] = STATE(4430), - [sym_type_reference_expression] = STATE(1908), - [sym_plain_type] = STATE(1924), - [sym__plain_type_without_special] = STATE(1930), - [sym_anon_struct_type] = STATE(1929), - [sym_multi_return_type] = STATE(1930), - [sym_result_type] = STATE(1930), - [sym_option_type] = STATE(1930), - [sym_qualified_type] = STATE(1908), - [sym_fixed_array_type] = STATE(1929), - [sym_array_type] = STATE(1929), - [sym_pointer_type] = STATE(1929), - [sym_wrong_pointer_type] = STATE(1929), - [sym_map_type] = STATE(1929), - [sym_channel_type] = STATE(1929), - [sym_shared_type] = STATE(1929), - [sym_thread_type] = STATE(1929), - [sym_atomic_type] = STATE(1929), - [sym_generic_type] = STATE(1929), - [sym_function_type] = STATE(1929), - [sym_identifier] = ACTIONS(3783), - [anon_sym_SLASH_SLASH] = ACTIONS(3), - [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(625), - [anon_sym_as] = ACTIONS(627), - [anon_sym_LBRACE] = ACTIONS(625), - [anon_sym_COMMA] = ACTIONS(625), - [anon_sym_LPAREN] = ACTIONS(3785), - [anon_sym_EQ] = ACTIONS(627), - [anon_sym_PIPE] = ACTIONS(627), - [anon_sym_fn] = ACTIONS(3787), - [anon_sym_PLUS] = ACTIONS(627), - [anon_sym_DASH] = ACTIONS(627), - [anon_sym_STAR] = ACTIONS(3789), - [anon_sym_SLASH] = ACTIONS(627), - [anon_sym_PERCENT] = ACTIONS(627), - [anon_sym_LT] = ACTIONS(627), - [anon_sym_GT] = ACTIONS(627), - [anon_sym_EQ_EQ] = ACTIONS(625), - [anon_sym_BANG_EQ] = ACTIONS(625), - [anon_sym_LT_EQ] = ACTIONS(625), - [anon_sym_GT_EQ] = ACTIONS(625), - [anon_sym_LBRACK] = ACTIONS(625), - [anon_sym_struct] = ACTIONS(3791), - [anon_sym_COLON] = ACTIONS(625), - [anon_sym_PLUS_PLUS] = ACTIONS(625), - [anon_sym_DASH_DASH] = ACTIONS(625), - [anon_sym_QMARK] = ACTIONS(3793), - [anon_sym_BANG] = ACTIONS(3795), - [anon_sym_LBRACK2] = ACTIONS(3797), - [anon_sym_CARET] = ACTIONS(627), - [anon_sym_AMP] = ACTIONS(3799), - [anon_sym_LT_DASH] = ACTIONS(625), - [anon_sym_LT_LT] = ACTIONS(627), - [anon_sym_GT_GT] = ACTIONS(627), - [anon_sym_GT_GT_GT] = ACTIONS(627), - [anon_sym_AMP_CARET] = ACTIONS(627), - [anon_sym_AMP_AMP] = ACTIONS(625), - [anon_sym_PIPE_PIPE] = ACTIONS(625), - [anon_sym_or] = ACTIONS(627), - [anon_sym_QMARK_DOT] = ACTIONS(625), - [anon_sym_POUND_LBRACK] = ACTIONS(625), - [anon_sym_is] = ACTIONS(627), - [anon_sym_BANGis] = ACTIONS(625), - [anon_sym_in] = ACTIONS(627), - [anon_sym_BANGin] = ACTIONS(625), - [anon_sym_STAR_EQ] = ACTIONS(625), - [anon_sym_SLASH_EQ] = ACTIONS(625), - [anon_sym_PERCENT_EQ] = ACTIONS(625), - [anon_sym_LT_LT_EQ] = ACTIONS(625), - [anon_sym_GT_GT_EQ] = ACTIONS(625), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(625), - [anon_sym_AMP_EQ] = ACTIONS(625), - [anon_sym_AMP_CARET_EQ] = ACTIONS(625), - [anon_sym_PLUS_EQ] = ACTIONS(625), - [anon_sym_DASH_EQ] = ACTIONS(625), - [anon_sym_PIPE_EQ] = ACTIONS(625), - [anon_sym_CARET_EQ] = ACTIONS(625), - [anon_sym_shared] = ACTIONS(3801), - [anon_sym_map_LBRACK] = ACTIONS(3803), - [anon_sym_chan] = ACTIONS(3805), - [anon_sym_thread] = ACTIONS(3807), - [anon_sym_atomic] = ACTIONS(3809), - }, - [1207] = { - [sym_line_comment] = STATE(1207), - [sym_block_comment] = STATE(1207), - [sym_identifier] = ACTIONS(2790), - [anon_sym_LF] = ACTIONS(2790), - [anon_sym_CR] = ACTIONS(2790), - [anon_sym_CR_LF] = ACTIONS(2790), - [anon_sym_SLASH_SLASH] = ACTIONS(497), - [anon_sym_SLASH_STAR] = ACTIONS(499), - [anon_sym_SEMI] = ACTIONS(2790), - [anon_sym_DOT] = ACTIONS(2790), - [anon_sym_as] = ACTIONS(2790), - [anon_sym_LBRACE] = ACTIONS(2790), - [anon_sym_COMMA] = ACTIONS(2790), - [anon_sym_RBRACE] = ACTIONS(2790), - [anon_sym_LPAREN] = ACTIONS(2790), - [anon_sym_RPAREN] = ACTIONS(2790), - [anon_sym_PIPE] = ACTIONS(2790), - [anon_sym_fn] = ACTIONS(2790), - [anon_sym_PLUS] = ACTIONS(2790), - [anon_sym_DASH] = ACTIONS(2790), - [anon_sym_STAR] = ACTIONS(2790), - [anon_sym_SLASH] = ACTIONS(2790), - [anon_sym_PERCENT] = ACTIONS(2790), - [anon_sym_LT] = ACTIONS(2790), - [anon_sym_GT] = ACTIONS(2790), - [anon_sym_EQ_EQ] = ACTIONS(2790), - [anon_sym_BANG_EQ] = ACTIONS(2790), - [anon_sym_LT_EQ] = ACTIONS(2790), - [anon_sym_GT_EQ] = ACTIONS(2790), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2790), - [anon_sym_LBRACK] = ACTIONS(2788), - [anon_sym_struct] = ACTIONS(2790), - [anon_sym_mut] = ACTIONS(2790), - [anon_sym_PLUS_PLUS] = ACTIONS(2790), - [anon_sym_DASH_DASH] = ACTIONS(2790), - [anon_sym_QMARK] = ACTIONS(2790), - [anon_sym_BANG] = ACTIONS(2790), - [anon_sym_go] = ACTIONS(2790), - [anon_sym_spawn] = ACTIONS(2790), - [anon_sym_json_DOTdecode] = ACTIONS(2790), - [anon_sym_LBRACK2] = ACTIONS(2790), - [anon_sym_TILDE] = ACTIONS(2790), - [anon_sym_CARET] = ACTIONS(2790), - [anon_sym_AMP] = ACTIONS(2790), - [anon_sym_LT_DASH] = ACTIONS(2790), - [anon_sym_LT_LT] = ACTIONS(2790), - [anon_sym_GT_GT] = ACTIONS(2790), - [anon_sym_GT_GT_GT] = ACTIONS(2790), - [anon_sym_AMP_CARET] = ACTIONS(2790), - [anon_sym_AMP_AMP] = ACTIONS(2790), - [anon_sym_PIPE_PIPE] = ACTIONS(2790), - [anon_sym_or] = ACTIONS(2790), - [sym_none] = ACTIONS(2790), - [sym_true] = ACTIONS(2790), - [sym_false] = ACTIONS(2790), - [sym_nil] = ACTIONS(2790), - [anon_sym_QMARK_DOT] = ACTIONS(2790), - [anon_sym_POUND_LBRACK] = ACTIONS(2790), - [anon_sym_if] = ACTIONS(2790), - [anon_sym_DOLLARif] = ACTIONS(2790), - [anon_sym_is] = ACTIONS(2790), - [anon_sym_BANGis] = ACTIONS(2790), - [anon_sym_in] = ACTIONS(2790), - [anon_sym_BANGin] = ACTIONS(2790), - [anon_sym_match] = ACTIONS(2790), - [anon_sym_select] = ACTIONS(2790), - [anon_sym_lock] = ACTIONS(2790), - [anon_sym_rlock] = ACTIONS(2790), - [anon_sym_unsafe] = ACTIONS(2790), - [anon_sym_sql] = ACTIONS(2790), - [sym_int_literal] = ACTIONS(2790), - [sym_float_literal] = ACTIONS(2790), - [sym_rune_literal] = ACTIONS(2790), - [sym_pseudo_compile_time_identifier] = ACTIONS(2790), - [anon_sym_shared] = ACTIONS(2790), - [anon_sym_map_LBRACK] = ACTIONS(2790), - [anon_sym_chan] = ACTIONS(2790), - [anon_sym_thread] = ACTIONS(2790), - [anon_sym_atomic] = ACTIONS(2790), - [sym___double_quote] = ACTIONS(2790), - [sym___single_quote] = ACTIONS(2790), - [sym___c_double_quote] = ACTIONS(2790), - [sym___c_single_quote] = ACTIONS(2790), - [sym___r_double_quote] = ACTIONS(2790), - [sym___r_single_quote] = ACTIONS(2790), - }, - [1208] = { - [sym_line_comment] = STATE(1208), - [sym_block_comment] = STATE(1208), - [sym_identifier] = ACTIONS(2353), - [anon_sym_LF] = ACTIONS(2353), - [anon_sym_CR] = ACTIONS(2353), - [anon_sym_CR_LF] = ACTIONS(2353), - [anon_sym_SLASH_SLASH] = ACTIONS(497), - [anon_sym_SLASH_STAR] = ACTIONS(499), - [anon_sym_SEMI] = ACTIONS(2353), - [anon_sym_DOT] = ACTIONS(2353), - [anon_sym_as] = ACTIONS(2353), - [anon_sym_LBRACE] = ACTIONS(2353), - [anon_sym_COMMA] = ACTIONS(2353), - [anon_sym_RBRACE] = ACTIONS(2353), - [anon_sym_LPAREN] = ACTIONS(2353), - [anon_sym_RPAREN] = ACTIONS(2353), - [anon_sym_PIPE] = ACTIONS(2353), - [anon_sym_fn] = ACTIONS(2353), - [anon_sym_PLUS] = ACTIONS(2353), - [anon_sym_DASH] = ACTIONS(2353), - [anon_sym_STAR] = ACTIONS(2353), - [anon_sym_SLASH] = ACTIONS(2353), - [anon_sym_PERCENT] = ACTIONS(2353), - [anon_sym_LT] = ACTIONS(2353), - [anon_sym_GT] = ACTIONS(2353), - [anon_sym_EQ_EQ] = ACTIONS(2353), - [anon_sym_BANG_EQ] = ACTIONS(2353), - [anon_sym_LT_EQ] = ACTIONS(2353), - [anon_sym_GT_EQ] = ACTIONS(2353), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2353), - [anon_sym_LBRACK] = ACTIONS(2351), - [anon_sym_struct] = ACTIONS(2353), - [anon_sym_mut] = ACTIONS(2353), - [anon_sym_PLUS_PLUS] = ACTIONS(2353), - [anon_sym_DASH_DASH] = ACTIONS(2353), - [anon_sym_QMARK] = ACTIONS(2353), - [anon_sym_BANG] = ACTIONS(2353), - [anon_sym_go] = ACTIONS(2353), - [anon_sym_spawn] = ACTIONS(2353), - [anon_sym_json_DOTdecode] = ACTIONS(2353), - [anon_sym_LBRACK2] = ACTIONS(2353), - [anon_sym_TILDE] = ACTIONS(2353), - [anon_sym_CARET] = ACTIONS(2353), - [anon_sym_AMP] = ACTIONS(2353), - [anon_sym_LT_DASH] = ACTIONS(2353), - [anon_sym_LT_LT] = ACTIONS(2353), - [anon_sym_GT_GT] = ACTIONS(2353), - [anon_sym_GT_GT_GT] = ACTIONS(2353), - [anon_sym_AMP_CARET] = ACTIONS(2353), - [anon_sym_AMP_AMP] = ACTIONS(2353), - [anon_sym_PIPE_PIPE] = ACTIONS(2353), - [anon_sym_or] = ACTIONS(2353), - [sym_none] = ACTIONS(2353), - [sym_true] = ACTIONS(2353), - [sym_false] = ACTIONS(2353), - [sym_nil] = ACTIONS(2353), - [anon_sym_QMARK_DOT] = ACTIONS(2353), - [anon_sym_POUND_LBRACK] = ACTIONS(2353), - [anon_sym_if] = ACTIONS(2353), - [anon_sym_DOLLARif] = ACTIONS(2353), - [anon_sym_is] = ACTIONS(2353), - [anon_sym_BANGis] = ACTIONS(2353), - [anon_sym_in] = ACTIONS(2353), - [anon_sym_BANGin] = ACTIONS(2353), - [anon_sym_match] = ACTIONS(2353), - [anon_sym_select] = ACTIONS(2353), - [anon_sym_lock] = ACTIONS(2353), - [anon_sym_rlock] = ACTIONS(2353), - [anon_sym_unsafe] = ACTIONS(2353), - [anon_sym_sql] = ACTIONS(2353), - [sym_int_literal] = ACTIONS(2353), - [sym_float_literal] = ACTIONS(2353), - [sym_rune_literal] = ACTIONS(2353), - [sym_pseudo_compile_time_identifier] = ACTIONS(2353), - [anon_sym_shared] = ACTIONS(2353), - [anon_sym_map_LBRACK] = ACTIONS(2353), - [anon_sym_chan] = ACTIONS(2353), - [anon_sym_thread] = ACTIONS(2353), - [anon_sym_atomic] = ACTIONS(2353), - [sym___double_quote] = ACTIONS(2353), - [sym___single_quote] = ACTIONS(2353), - [sym___c_double_quote] = ACTIONS(2353), - [sym___c_single_quote] = ACTIONS(2353), - [sym___r_double_quote] = ACTIONS(2353), - [sym___r_single_quote] = ACTIONS(2353), - }, - [1209] = { - [sym_line_comment] = STATE(1209), - [sym_block_comment] = STATE(1209), - [sym_identifier] = ACTIONS(2735), - [anon_sym_LF] = ACTIONS(2735), - [anon_sym_CR] = ACTIONS(2735), - [anon_sym_CR_LF] = ACTIONS(2735), - [anon_sym_SLASH_SLASH] = ACTIONS(497), - [anon_sym_SLASH_STAR] = ACTIONS(499), - [anon_sym_SEMI] = ACTIONS(2735), - [anon_sym_DOT] = ACTIONS(2735), - [anon_sym_as] = ACTIONS(2735), - [anon_sym_LBRACE] = ACTIONS(2735), - [anon_sym_COMMA] = ACTIONS(2735), - [anon_sym_RBRACE] = ACTIONS(2735), - [anon_sym_LPAREN] = ACTIONS(2735), - [anon_sym_RPAREN] = ACTIONS(2735), - [anon_sym_PIPE] = ACTIONS(2735), - [anon_sym_fn] = ACTIONS(2735), - [anon_sym_PLUS] = ACTIONS(2735), - [anon_sym_DASH] = ACTIONS(2735), - [anon_sym_STAR] = ACTIONS(2735), - [anon_sym_SLASH] = ACTIONS(2735), - [anon_sym_PERCENT] = ACTIONS(2735), - [anon_sym_LT] = ACTIONS(2735), - [anon_sym_GT] = ACTIONS(2735), - [anon_sym_EQ_EQ] = ACTIONS(2735), - [anon_sym_BANG_EQ] = ACTIONS(2735), - [anon_sym_LT_EQ] = ACTIONS(2735), - [anon_sym_GT_EQ] = ACTIONS(2735), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2735), - [anon_sym_LBRACK] = ACTIONS(2733), - [anon_sym_struct] = ACTIONS(2735), - [anon_sym_mut] = ACTIONS(2735), - [anon_sym_PLUS_PLUS] = ACTIONS(2735), - [anon_sym_DASH_DASH] = ACTIONS(2735), - [anon_sym_QMARK] = ACTIONS(2735), - [anon_sym_BANG] = ACTIONS(2735), - [anon_sym_go] = ACTIONS(2735), - [anon_sym_spawn] = ACTIONS(2735), - [anon_sym_json_DOTdecode] = ACTIONS(2735), - [anon_sym_LBRACK2] = ACTIONS(2735), - [anon_sym_TILDE] = ACTIONS(2735), - [anon_sym_CARET] = ACTIONS(2735), - [anon_sym_AMP] = ACTIONS(2735), - [anon_sym_LT_DASH] = ACTIONS(2735), - [anon_sym_LT_LT] = ACTIONS(2735), - [anon_sym_GT_GT] = ACTIONS(2735), - [anon_sym_GT_GT_GT] = ACTIONS(2735), - [anon_sym_AMP_CARET] = ACTIONS(2735), - [anon_sym_AMP_AMP] = ACTIONS(2735), - [anon_sym_PIPE_PIPE] = ACTIONS(2735), - [anon_sym_or] = ACTIONS(2735), - [sym_none] = ACTIONS(2735), - [sym_true] = ACTIONS(2735), - [sym_false] = ACTIONS(2735), - [sym_nil] = ACTIONS(2735), - [anon_sym_QMARK_DOT] = ACTIONS(2735), - [anon_sym_POUND_LBRACK] = ACTIONS(2735), - [anon_sym_if] = ACTIONS(2735), - [anon_sym_DOLLARif] = ACTIONS(2735), - [anon_sym_is] = ACTIONS(2735), - [anon_sym_BANGis] = ACTIONS(2735), - [anon_sym_in] = ACTIONS(2735), - [anon_sym_BANGin] = ACTIONS(2735), - [anon_sym_match] = ACTIONS(2735), - [anon_sym_select] = ACTIONS(2735), - [anon_sym_lock] = ACTIONS(2735), - [anon_sym_rlock] = ACTIONS(2735), - [anon_sym_unsafe] = ACTIONS(2735), - [anon_sym_sql] = ACTIONS(2735), - [sym_int_literal] = ACTIONS(2735), - [sym_float_literal] = ACTIONS(2735), - [sym_rune_literal] = ACTIONS(2735), - [sym_pseudo_compile_time_identifier] = ACTIONS(2735), - [anon_sym_shared] = ACTIONS(2735), - [anon_sym_map_LBRACK] = ACTIONS(2735), - [anon_sym_chan] = ACTIONS(2735), - [anon_sym_thread] = ACTIONS(2735), - [anon_sym_atomic] = ACTIONS(2735), - [sym___double_quote] = ACTIONS(2735), - [sym___single_quote] = ACTIONS(2735), - [sym___c_double_quote] = ACTIONS(2735), - [sym___c_single_quote] = ACTIONS(2735), - [sym___r_double_quote] = ACTIONS(2735), - [sym___r_single_quote] = ACTIONS(2735), - }, - [1210] = { - [sym_line_comment] = STATE(1210), - [sym_block_comment] = STATE(1210), - [sym_identifier] = ACTIONS(2309), - [anon_sym_LF] = ACTIONS(2309), - [anon_sym_CR] = ACTIONS(2309), - [anon_sym_CR_LF] = ACTIONS(2309), - [anon_sym_SLASH_SLASH] = ACTIONS(497), - [anon_sym_SLASH_STAR] = ACTIONS(499), - [anon_sym_SEMI] = ACTIONS(2309), - [anon_sym_DOT] = ACTIONS(2309), - [anon_sym_as] = ACTIONS(2309), - [anon_sym_LBRACE] = ACTIONS(2309), - [anon_sym_COMMA] = ACTIONS(2309), - [anon_sym_RBRACE] = ACTIONS(2309), - [anon_sym_LPAREN] = ACTIONS(2309), - [anon_sym_RPAREN] = ACTIONS(2309), - [anon_sym_PIPE] = ACTIONS(2309), - [anon_sym_fn] = ACTIONS(2309), - [anon_sym_PLUS] = ACTIONS(2309), - [anon_sym_DASH] = ACTIONS(2309), - [anon_sym_STAR] = ACTIONS(2309), - [anon_sym_SLASH] = ACTIONS(2309), - [anon_sym_PERCENT] = ACTIONS(2309), - [anon_sym_LT] = ACTIONS(2309), - [anon_sym_GT] = ACTIONS(2309), - [anon_sym_EQ_EQ] = ACTIONS(2309), - [anon_sym_BANG_EQ] = ACTIONS(2309), - [anon_sym_LT_EQ] = ACTIONS(2309), - [anon_sym_GT_EQ] = ACTIONS(2309), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2309), - [anon_sym_LBRACK] = ACTIONS(2307), - [anon_sym_struct] = ACTIONS(2309), - [anon_sym_mut] = ACTIONS(2309), - [anon_sym_PLUS_PLUS] = ACTIONS(2309), - [anon_sym_DASH_DASH] = ACTIONS(2309), - [anon_sym_QMARK] = ACTIONS(2309), - [anon_sym_BANG] = ACTIONS(2309), - [anon_sym_go] = ACTIONS(2309), - [anon_sym_spawn] = ACTIONS(2309), - [anon_sym_json_DOTdecode] = ACTIONS(2309), - [anon_sym_LBRACK2] = ACTIONS(2309), - [anon_sym_TILDE] = ACTIONS(2309), - [anon_sym_CARET] = ACTIONS(2309), - [anon_sym_AMP] = ACTIONS(2309), - [anon_sym_LT_DASH] = ACTIONS(2309), - [anon_sym_LT_LT] = ACTIONS(2309), - [anon_sym_GT_GT] = ACTIONS(2309), - [anon_sym_GT_GT_GT] = ACTIONS(2309), - [anon_sym_AMP_CARET] = ACTIONS(2309), - [anon_sym_AMP_AMP] = ACTIONS(2309), - [anon_sym_PIPE_PIPE] = ACTIONS(2309), - [anon_sym_or] = ACTIONS(2309), - [sym_none] = ACTIONS(2309), - [sym_true] = ACTIONS(2309), - [sym_false] = ACTIONS(2309), - [sym_nil] = ACTIONS(2309), - [anon_sym_QMARK_DOT] = ACTIONS(2309), - [anon_sym_POUND_LBRACK] = ACTIONS(2309), - [anon_sym_if] = ACTIONS(2309), - [anon_sym_DOLLARif] = ACTIONS(2309), - [anon_sym_is] = ACTIONS(2309), - [anon_sym_BANGis] = ACTIONS(2309), - [anon_sym_in] = ACTIONS(2309), - [anon_sym_BANGin] = ACTIONS(2309), - [anon_sym_match] = ACTIONS(2309), - [anon_sym_select] = ACTIONS(2309), - [anon_sym_lock] = ACTIONS(2309), - [anon_sym_rlock] = ACTIONS(2309), - [anon_sym_unsafe] = ACTIONS(2309), - [anon_sym_sql] = ACTIONS(2309), - [sym_int_literal] = ACTIONS(2309), - [sym_float_literal] = ACTIONS(2309), - [sym_rune_literal] = ACTIONS(2309), - [sym_pseudo_compile_time_identifier] = ACTIONS(2309), - [anon_sym_shared] = ACTIONS(2309), - [anon_sym_map_LBRACK] = ACTIONS(2309), - [anon_sym_chan] = ACTIONS(2309), - [anon_sym_thread] = ACTIONS(2309), - [anon_sym_atomic] = ACTIONS(2309), - [sym___double_quote] = ACTIONS(2309), - [sym___single_quote] = ACTIONS(2309), - [sym___c_double_quote] = ACTIONS(2309), - [sym___c_single_quote] = ACTIONS(2309), - [sym___r_double_quote] = ACTIONS(2309), - [sym___r_single_quote] = ACTIONS(2309), - }, - [1211] = { - [sym_line_comment] = STATE(1211), - [sym_block_comment] = STATE(1211), - [sym_identifier] = ACTIONS(2786), - [anon_sym_LF] = ACTIONS(2786), - [anon_sym_CR] = ACTIONS(2786), - [anon_sym_CR_LF] = ACTIONS(2786), - [anon_sym_SLASH_SLASH] = ACTIONS(497), - [anon_sym_SLASH_STAR] = ACTIONS(499), - [anon_sym_SEMI] = ACTIONS(2786), - [anon_sym_DOT] = ACTIONS(2786), - [anon_sym_as] = ACTIONS(2786), - [anon_sym_LBRACE] = ACTIONS(2786), - [anon_sym_COMMA] = ACTIONS(2786), - [anon_sym_RBRACE] = ACTIONS(2786), - [anon_sym_LPAREN] = ACTIONS(2786), - [anon_sym_RPAREN] = ACTIONS(2786), - [anon_sym_PIPE] = ACTIONS(2786), - [anon_sym_fn] = ACTIONS(2786), - [anon_sym_PLUS] = ACTIONS(2786), - [anon_sym_DASH] = ACTIONS(2786), - [anon_sym_STAR] = ACTIONS(2786), - [anon_sym_SLASH] = ACTIONS(2786), - [anon_sym_PERCENT] = ACTIONS(2786), - [anon_sym_LT] = ACTIONS(2786), - [anon_sym_GT] = ACTIONS(2786), - [anon_sym_EQ_EQ] = ACTIONS(2786), - [anon_sym_BANG_EQ] = ACTIONS(2786), - [anon_sym_LT_EQ] = ACTIONS(2786), - [anon_sym_GT_EQ] = ACTIONS(2786), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2786), - [anon_sym_LBRACK] = ACTIONS(2784), - [anon_sym_struct] = ACTIONS(2786), - [anon_sym_mut] = ACTIONS(2786), - [anon_sym_PLUS_PLUS] = ACTIONS(2786), - [anon_sym_DASH_DASH] = ACTIONS(2786), - [anon_sym_QMARK] = ACTIONS(2786), - [anon_sym_BANG] = ACTIONS(2786), - [anon_sym_go] = ACTIONS(2786), - [anon_sym_spawn] = ACTIONS(2786), - [anon_sym_json_DOTdecode] = ACTIONS(2786), - [anon_sym_LBRACK2] = ACTIONS(2786), - [anon_sym_TILDE] = ACTIONS(2786), - [anon_sym_CARET] = ACTIONS(2786), - [anon_sym_AMP] = ACTIONS(2786), - [anon_sym_LT_DASH] = ACTIONS(2786), - [anon_sym_LT_LT] = ACTIONS(2786), - [anon_sym_GT_GT] = ACTIONS(2786), - [anon_sym_GT_GT_GT] = ACTIONS(2786), - [anon_sym_AMP_CARET] = ACTIONS(2786), - [anon_sym_AMP_AMP] = ACTIONS(2786), - [anon_sym_PIPE_PIPE] = ACTIONS(2786), - [anon_sym_or] = ACTIONS(2786), - [sym_none] = ACTIONS(2786), - [sym_true] = ACTIONS(2786), - [sym_false] = ACTIONS(2786), - [sym_nil] = ACTIONS(2786), - [anon_sym_QMARK_DOT] = ACTIONS(2786), - [anon_sym_POUND_LBRACK] = ACTIONS(2786), - [anon_sym_if] = ACTIONS(2786), - [anon_sym_DOLLARif] = ACTIONS(2786), - [anon_sym_is] = ACTIONS(2786), - [anon_sym_BANGis] = ACTIONS(2786), - [anon_sym_in] = ACTIONS(2786), - [anon_sym_BANGin] = ACTIONS(2786), - [anon_sym_match] = ACTIONS(2786), - [anon_sym_select] = ACTIONS(2786), - [anon_sym_lock] = ACTIONS(2786), - [anon_sym_rlock] = ACTIONS(2786), - [anon_sym_unsafe] = ACTIONS(2786), - [anon_sym_sql] = ACTIONS(2786), - [sym_int_literal] = ACTIONS(2786), - [sym_float_literal] = ACTIONS(2786), - [sym_rune_literal] = ACTIONS(2786), - [sym_pseudo_compile_time_identifier] = ACTIONS(2786), - [anon_sym_shared] = ACTIONS(2786), - [anon_sym_map_LBRACK] = ACTIONS(2786), - [anon_sym_chan] = ACTIONS(2786), - [anon_sym_thread] = ACTIONS(2786), - [anon_sym_atomic] = ACTIONS(2786), - [sym___double_quote] = ACTIONS(2786), - [sym___single_quote] = ACTIONS(2786), - [sym___c_double_quote] = ACTIONS(2786), - [sym___c_single_quote] = ACTIONS(2786), - [sym___r_double_quote] = ACTIONS(2786), - [sym___r_single_quote] = ACTIONS(2786), - }, - [1212] = { - [sym_line_comment] = STATE(1212), - [sym_block_comment] = STATE(1212), - [sym_identifier] = ACTIONS(2794), - [anon_sym_LF] = ACTIONS(2794), - [anon_sym_CR] = ACTIONS(2794), - [anon_sym_CR_LF] = ACTIONS(2794), - [anon_sym_SLASH_SLASH] = ACTIONS(497), - [anon_sym_SLASH_STAR] = ACTIONS(499), - [anon_sym_SEMI] = ACTIONS(2794), - [anon_sym_DOT] = ACTIONS(2794), - [anon_sym_as] = ACTIONS(2794), - [anon_sym_LBRACE] = ACTIONS(2794), - [anon_sym_COMMA] = ACTIONS(2794), - [anon_sym_RBRACE] = ACTIONS(2794), - [anon_sym_LPAREN] = ACTIONS(2794), - [anon_sym_RPAREN] = ACTIONS(2794), - [anon_sym_PIPE] = ACTIONS(2794), - [anon_sym_fn] = ACTIONS(2794), - [anon_sym_PLUS] = ACTIONS(2794), - [anon_sym_DASH] = ACTIONS(2794), - [anon_sym_STAR] = ACTIONS(2794), - [anon_sym_SLASH] = ACTIONS(2794), - [anon_sym_PERCENT] = ACTIONS(2794), - [anon_sym_LT] = ACTIONS(2794), - [anon_sym_GT] = ACTIONS(2794), - [anon_sym_EQ_EQ] = ACTIONS(2794), - [anon_sym_BANG_EQ] = ACTIONS(2794), - [anon_sym_LT_EQ] = ACTIONS(2794), - [anon_sym_GT_EQ] = ACTIONS(2794), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2794), - [anon_sym_LBRACK] = ACTIONS(2792), - [anon_sym_struct] = ACTIONS(2794), - [anon_sym_mut] = ACTIONS(2794), - [anon_sym_PLUS_PLUS] = ACTIONS(2794), - [anon_sym_DASH_DASH] = ACTIONS(2794), - [anon_sym_QMARK] = ACTIONS(2794), - [anon_sym_BANG] = ACTIONS(2794), - [anon_sym_go] = ACTIONS(2794), - [anon_sym_spawn] = ACTIONS(2794), - [anon_sym_json_DOTdecode] = ACTIONS(2794), - [anon_sym_LBRACK2] = ACTIONS(2794), - [anon_sym_TILDE] = ACTIONS(2794), - [anon_sym_CARET] = ACTIONS(2794), - [anon_sym_AMP] = ACTIONS(2794), - [anon_sym_LT_DASH] = ACTIONS(2794), - [anon_sym_LT_LT] = ACTIONS(2794), - [anon_sym_GT_GT] = ACTIONS(2794), - [anon_sym_GT_GT_GT] = ACTIONS(2794), - [anon_sym_AMP_CARET] = ACTIONS(2794), - [anon_sym_AMP_AMP] = ACTIONS(2794), - [anon_sym_PIPE_PIPE] = ACTIONS(2794), - [anon_sym_or] = ACTIONS(2794), - [sym_none] = ACTIONS(2794), - [sym_true] = ACTIONS(2794), - [sym_false] = ACTIONS(2794), - [sym_nil] = ACTIONS(2794), - [anon_sym_QMARK_DOT] = ACTIONS(2794), - [anon_sym_POUND_LBRACK] = ACTIONS(2794), - [anon_sym_if] = ACTIONS(2794), - [anon_sym_DOLLARif] = ACTIONS(2794), - [anon_sym_is] = ACTIONS(2794), - [anon_sym_BANGis] = ACTIONS(2794), - [anon_sym_in] = ACTIONS(2794), - [anon_sym_BANGin] = ACTIONS(2794), - [anon_sym_match] = ACTIONS(2794), - [anon_sym_select] = ACTIONS(2794), - [anon_sym_lock] = ACTIONS(2794), - [anon_sym_rlock] = ACTIONS(2794), - [anon_sym_unsafe] = ACTIONS(2794), - [anon_sym_sql] = ACTIONS(2794), - [sym_int_literal] = ACTIONS(2794), - [sym_float_literal] = ACTIONS(2794), - [sym_rune_literal] = ACTIONS(2794), - [sym_pseudo_compile_time_identifier] = ACTIONS(2794), - [anon_sym_shared] = ACTIONS(2794), - [anon_sym_map_LBRACK] = ACTIONS(2794), - [anon_sym_chan] = ACTIONS(2794), - [anon_sym_thread] = ACTIONS(2794), - [anon_sym_atomic] = ACTIONS(2794), - [sym___double_quote] = ACTIONS(2794), - [sym___single_quote] = ACTIONS(2794), - [sym___c_double_quote] = ACTIONS(2794), - [sym___c_single_quote] = ACTIONS(2794), - [sym___r_double_quote] = ACTIONS(2794), - [sym___r_single_quote] = ACTIONS(2794), - }, - [1213] = { - [sym_line_comment] = STATE(1213), - [sym_block_comment] = STATE(1213), - [sym_identifier] = ACTIONS(1917), - [anon_sym_LF] = ACTIONS(1917), - [anon_sym_CR] = ACTIONS(1917), - [anon_sym_CR_LF] = ACTIONS(1917), - [anon_sym_SLASH_SLASH] = ACTIONS(497), - [anon_sym_SLASH_STAR] = ACTIONS(499), - [anon_sym_SEMI] = ACTIONS(1917), - [anon_sym_DOT] = ACTIONS(1917), - [anon_sym_as] = ACTIONS(1917), - [anon_sym_LBRACE] = ACTIONS(1917), - [anon_sym_COMMA] = ACTIONS(1917), - [anon_sym_RBRACE] = ACTIONS(1917), - [anon_sym_LPAREN] = ACTIONS(1917), - [anon_sym_RPAREN] = ACTIONS(1917), - [anon_sym_PIPE] = ACTIONS(1917), - [anon_sym_fn] = ACTIONS(1917), - [anon_sym_PLUS] = ACTIONS(1917), - [anon_sym_DASH] = ACTIONS(1917), - [anon_sym_STAR] = ACTIONS(1917), - [anon_sym_SLASH] = ACTIONS(1917), - [anon_sym_PERCENT] = ACTIONS(1917), - [anon_sym_LT] = ACTIONS(1917), - [anon_sym_GT] = ACTIONS(1917), - [anon_sym_EQ_EQ] = ACTIONS(1917), - [anon_sym_BANG_EQ] = ACTIONS(1917), - [anon_sym_LT_EQ] = ACTIONS(1917), - [anon_sym_GT_EQ] = ACTIONS(1917), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1917), - [anon_sym_LBRACK] = ACTIONS(1915), - [anon_sym_struct] = ACTIONS(1917), - [anon_sym_mut] = ACTIONS(1917), - [anon_sym_PLUS_PLUS] = ACTIONS(1917), - [anon_sym_DASH_DASH] = ACTIONS(1917), - [anon_sym_QMARK] = ACTIONS(1917), - [anon_sym_BANG] = ACTIONS(1917), - [anon_sym_go] = ACTIONS(1917), - [anon_sym_spawn] = ACTIONS(1917), - [anon_sym_json_DOTdecode] = ACTIONS(1917), - [anon_sym_LBRACK2] = ACTIONS(1917), - [anon_sym_TILDE] = ACTIONS(1917), - [anon_sym_CARET] = ACTIONS(1917), - [anon_sym_AMP] = ACTIONS(1917), - [anon_sym_LT_DASH] = ACTIONS(1917), - [anon_sym_LT_LT] = ACTIONS(1917), - [anon_sym_GT_GT] = ACTIONS(1917), - [anon_sym_GT_GT_GT] = ACTIONS(1917), - [anon_sym_AMP_CARET] = ACTIONS(1917), - [anon_sym_AMP_AMP] = ACTIONS(1917), - [anon_sym_PIPE_PIPE] = ACTIONS(1917), - [anon_sym_or] = ACTIONS(1917), - [sym_none] = ACTIONS(1917), - [sym_true] = ACTIONS(1917), - [sym_false] = ACTIONS(1917), - [sym_nil] = ACTIONS(1917), - [anon_sym_QMARK_DOT] = ACTIONS(1917), - [anon_sym_POUND_LBRACK] = ACTIONS(1917), - [anon_sym_if] = ACTIONS(1917), - [anon_sym_DOLLARif] = ACTIONS(1917), - [anon_sym_is] = ACTIONS(1917), - [anon_sym_BANGis] = ACTIONS(1917), - [anon_sym_in] = ACTIONS(1917), - [anon_sym_BANGin] = ACTIONS(1917), - [anon_sym_match] = ACTIONS(1917), - [anon_sym_select] = ACTIONS(1917), - [anon_sym_lock] = ACTIONS(1917), - [anon_sym_rlock] = ACTIONS(1917), - [anon_sym_unsafe] = ACTIONS(1917), - [anon_sym_sql] = ACTIONS(1917), - [sym_int_literal] = ACTIONS(1917), - [sym_float_literal] = ACTIONS(1917), - [sym_rune_literal] = ACTIONS(1917), - [sym_pseudo_compile_time_identifier] = ACTIONS(1917), - [anon_sym_shared] = ACTIONS(1917), - [anon_sym_map_LBRACK] = ACTIONS(1917), - [anon_sym_chan] = ACTIONS(1917), - [anon_sym_thread] = ACTIONS(1917), - [anon_sym_atomic] = ACTIONS(1917), - [sym___double_quote] = ACTIONS(1917), - [sym___single_quote] = ACTIONS(1917), - [sym___c_double_quote] = ACTIONS(1917), - [sym___c_single_quote] = ACTIONS(1917), - [sym___r_double_quote] = ACTIONS(1917), - [sym___r_single_quote] = ACTIONS(1917), - }, - [1214] = { - [sym_line_comment] = STATE(1214), - [sym_block_comment] = STATE(1214), - [sym_identifier] = ACTIONS(2159), - [anon_sym_LF] = ACTIONS(2159), - [anon_sym_CR] = ACTIONS(2159), - [anon_sym_CR_LF] = ACTIONS(2159), - [anon_sym_SLASH_SLASH] = ACTIONS(497), - [anon_sym_SLASH_STAR] = ACTIONS(499), - [anon_sym_SEMI] = ACTIONS(2159), - [anon_sym_DOT] = ACTIONS(2159), - [anon_sym_as] = ACTIONS(2159), - [anon_sym_LBRACE] = ACTIONS(2159), - [anon_sym_COMMA] = ACTIONS(2159), - [anon_sym_RBRACE] = ACTIONS(2159), - [anon_sym_LPAREN] = ACTIONS(2159), - [anon_sym_RPAREN] = ACTIONS(2159), - [anon_sym_PIPE] = ACTIONS(2159), - [anon_sym_fn] = ACTIONS(2159), - [anon_sym_PLUS] = ACTIONS(2159), - [anon_sym_DASH] = ACTIONS(2159), - [anon_sym_STAR] = ACTIONS(2159), - [anon_sym_SLASH] = ACTIONS(2159), - [anon_sym_PERCENT] = ACTIONS(2159), - [anon_sym_LT] = ACTIONS(2159), - [anon_sym_GT] = ACTIONS(2159), - [anon_sym_EQ_EQ] = ACTIONS(2159), - [anon_sym_BANG_EQ] = ACTIONS(2159), - [anon_sym_LT_EQ] = ACTIONS(2159), - [anon_sym_GT_EQ] = ACTIONS(2159), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2159), - [anon_sym_LBRACK] = ACTIONS(2157), - [anon_sym_struct] = ACTIONS(2159), - [anon_sym_mut] = ACTIONS(2159), - [anon_sym_PLUS_PLUS] = ACTIONS(2159), - [anon_sym_DASH_DASH] = ACTIONS(2159), - [anon_sym_QMARK] = ACTIONS(2159), - [anon_sym_BANG] = ACTIONS(2159), - [anon_sym_go] = ACTIONS(2159), - [anon_sym_spawn] = ACTIONS(2159), - [anon_sym_json_DOTdecode] = ACTIONS(2159), - [anon_sym_LBRACK2] = ACTIONS(2159), - [anon_sym_TILDE] = ACTIONS(2159), - [anon_sym_CARET] = ACTIONS(2159), - [anon_sym_AMP] = ACTIONS(2159), - [anon_sym_LT_DASH] = ACTIONS(2159), - [anon_sym_LT_LT] = ACTIONS(2159), - [anon_sym_GT_GT] = ACTIONS(2159), - [anon_sym_GT_GT_GT] = ACTIONS(2159), - [anon_sym_AMP_CARET] = ACTIONS(2159), - [anon_sym_AMP_AMP] = ACTIONS(2159), - [anon_sym_PIPE_PIPE] = ACTIONS(2159), - [anon_sym_or] = ACTIONS(2159), - [sym_none] = ACTIONS(2159), - [sym_true] = ACTIONS(2159), - [sym_false] = ACTIONS(2159), - [sym_nil] = ACTIONS(2159), - [anon_sym_QMARK_DOT] = ACTIONS(2159), - [anon_sym_POUND_LBRACK] = ACTIONS(2159), - [anon_sym_if] = ACTIONS(2159), - [anon_sym_DOLLARif] = ACTIONS(2159), - [anon_sym_is] = ACTIONS(2159), - [anon_sym_BANGis] = ACTIONS(2159), - [anon_sym_in] = ACTIONS(2159), - [anon_sym_BANGin] = ACTIONS(2159), - [anon_sym_match] = ACTIONS(2159), - [anon_sym_select] = ACTIONS(2159), - [anon_sym_lock] = ACTIONS(2159), - [anon_sym_rlock] = ACTIONS(2159), - [anon_sym_unsafe] = ACTIONS(2159), - [anon_sym_sql] = ACTIONS(2159), - [sym_int_literal] = ACTIONS(2159), - [sym_float_literal] = ACTIONS(2159), - [sym_rune_literal] = ACTIONS(2159), - [sym_pseudo_compile_time_identifier] = ACTIONS(2159), - [anon_sym_shared] = ACTIONS(2159), - [anon_sym_map_LBRACK] = ACTIONS(2159), - [anon_sym_chan] = ACTIONS(2159), - [anon_sym_thread] = ACTIONS(2159), - [anon_sym_atomic] = ACTIONS(2159), - [sym___double_quote] = ACTIONS(2159), - [sym___single_quote] = ACTIONS(2159), - [sym___c_double_quote] = ACTIONS(2159), - [sym___c_single_quote] = ACTIONS(2159), - [sym___r_double_quote] = ACTIONS(2159), - [sym___r_single_quote] = ACTIONS(2159), - }, - [1215] = { - [sym_line_comment] = STATE(1215), - [sym_block_comment] = STATE(1215), - [sym_identifier] = ACTIONS(2507), - [anon_sym_LF] = ACTIONS(2507), - [anon_sym_CR] = ACTIONS(2507), - [anon_sym_CR_LF] = ACTIONS(2507), - [anon_sym_SLASH_SLASH] = ACTIONS(497), - [anon_sym_SLASH_STAR] = ACTIONS(499), - [anon_sym_SEMI] = ACTIONS(2507), - [anon_sym_DOT] = ACTIONS(2507), - [anon_sym_as] = ACTIONS(2507), - [anon_sym_LBRACE] = ACTIONS(2507), - [anon_sym_COMMA] = ACTIONS(2507), - [anon_sym_RBRACE] = ACTIONS(2507), - [anon_sym_LPAREN] = ACTIONS(2507), - [anon_sym_RPAREN] = ACTIONS(2507), - [anon_sym_PIPE] = ACTIONS(2507), - [anon_sym_fn] = ACTIONS(2507), - [anon_sym_PLUS] = ACTIONS(2507), - [anon_sym_DASH] = ACTIONS(2507), - [anon_sym_STAR] = ACTIONS(2507), - [anon_sym_SLASH] = ACTIONS(2507), - [anon_sym_PERCENT] = ACTIONS(2507), - [anon_sym_LT] = ACTIONS(2507), - [anon_sym_GT] = ACTIONS(2507), - [anon_sym_EQ_EQ] = ACTIONS(2507), - [anon_sym_BANG_EQ] = ACTIONS(2507), - [anon_sym_LT_EQ] = ACTIONS(2507), - [anon_sym_GT_EQ] = ACTIONS(2507), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2507), - [anon_sym_LBRACK] = ACTIONS(2505), - [anon_sym_struct] = ACTIONS(2507), - [anon_sym_mut] = ACTIONS(2507), - [anon_sym_PLUS_PLUS] = ACTIONS(2507), - [anon_sym_DASH_DASH] = ACTIONS(2507), - [anon_sym_QMARK] = ACTIONS(2507), - [anon_sym_BANG] = ACTIONS(2507), - [anon_sym_go] = ACTIONS(2507), - [anon_sym_spawn] = ACTIONS(2507), - [anon_sym_json_DOTdecode] = ACTIONS(2507), - [anon_sym_LBRACK2] = ACTIONS(2507), - [anon_sym_TILDE] = ACTIONS(2507), - [anon_sym_CARET] = ACTIONS(2507), - [anon_sym_AMP] = ACTIONS(2507), - [anon_sym_LT_DASH] = ACTIONS(2507), - [anon_sym_LT_LT] = ACTIONS(2507), - [anon_sym_GT_GT] = ACTIONS(2507), - [anon_sym_GT_GT_GT] = ACTIONS(2507), - [anon_sym_AMP_CARET] = ACTIONS(2507), - [anon_sym_AMP_AMP] = ACTIONS(2507), - [anon_sym_PIPE_PIPE] = ACTIONS(2507), - [anon_sym_or] = ACTIONS(2507), - [sym_none] = ACTIONS(2507), - [sym_true] = ACTIONS(2507), - [sym_false] = ACTIONS(2507), - [sym_nil] = ACTIONS(2507), - [anon_sym_QMARK_DOT] = ACTIONS(2507), - [anon_sym_POUND_LBRACK] = ACTIONS(2507), - [anon_sym_if] = ACTIONS(2507), - [anon_sym_DOLLARif] = ACTIONS(2507), - [anon_sym_is] = ACTIONS(2507), - [anon_sym_BANGis] = ACTIONS(2507), - [anon_sym_in] = ACTIONS(2507), - [anon_sym_BANGin] = ACTIONS(2507), - [anon_sym_match] = ACTIONS(2507), - [anon_sym_select] = ACTIONS(2507), - [anon_sym_lock] = ACTIONS(2507), - [anon_sym_rlock] = ACTIONS(2507), - [anon_sym_unsafe] = ACTIONS(2507), - [anon_sym_sql] = ACTIONS(2507), - [sym_int_literal] = ACTIONS(2507), - [sym_float_literal] = ACTIONS(2507), - [sym_rune_literal] = ACTIONS(2507), - [sym_pseudo_compile_time_identifier] = ACTIONS(2507), - [anon_sym_shared] = ACTIONS(2507), - [anon_sym_map_LBRACK] = ACTIONS(2507), - [anon_sym_chan] = ACTIONS(2507), - [anon_sym_thread] = ACTIONS(2507), - [anon_sym_atomic] = ACTIONS(2507), - [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), - }, - [1216] = { - [sym_line_comment] = STATE(1216), - [sym_block_comment] = STATE(1216), - [sym_reference_expression] = STATE(4430), - [sym_type_reference_expression] = STATE(1908), - [sym_plain_type] = STATE(1918), - [sym__plain_type_without_special] = STATE(1930), - [sym_anon_struct_type] = STATE(1929), - [sym_multi_return_type] = STATE(1930), - [sym_result_type] = STATE(1930), - [sym_option_type] = STATE(1930), - [sym_qualified_type] = STATE(1908), - [sym_fixed_array_type] = STATE(1929), - [sym_array_type] = STATE(1929), - [sym_pointer_type] = STATE(1929), - [sym_wrong_pointer_type] = STATE(1929), - [sym_map_type] = STATE(1929), - [sym_channel_type] = STATE(1929), - [sym_shared_type] = STATE(1929), - [sym_thread_type] = STATE(1929), - [sym_atomic_type] = STATE(1929), - [sym_generic_type] = STATE(1929), - [sym_function_type] = STATE(1929), - [sym_identifier] = ACTIONS(3783), - [anon_sym_SLASH_SLASH] = ACTIONS(3), - [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(617), - [anon_sym_as] = ACTIONS(619), - [anon_sym_LBRACE] = ACTIONS(617), - [anon_sym_COMMA] = ACTIONS(617), - [anon_sym_LPAREN] = ACTIONS(3785), - [anon_sym_EQ] = ACTIONS(619), - [anon_sym_PIPE] = ACTIONS(619), - [anon_sym_fn] = ACTIONS(3787), - [anon_sym_PLUS] = ACTIONS(619), - [anon_sym_DASH] = ACTIONS(619), - [anon_sym_STAR] = ACTIONS(3789), - [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(3791), - [anon_sym_COLON] = ACTIONS(617), - [anon_sym_PLUS_PLUS] = ACTIONS(617), - [anon_sym_DASH_DASH] = ACTIONS(617), - [anon_sym_QMARK] = ACTIONS(3793), - [anon_sym_BANG] = ACTIONS(3795), - [anon_sym_LBRACK2] = ACTIONS(3797), - [anon_sym_CARET] = ACTIONS(619), - [anon_sym_AMP] = ACTIONS(3799), - [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(3801), - [anon_sym_map_LBRACK] = ACTIONS(3803), - [anon_sym_chan] = ACTIONS(3805), - [anon_sym_thread] = ACTIONS(3807), - [anon_sym_atomic] = ACTIONS(3809), - }, - [1217] = { - [sym_line_comment] = STATE(1217), - [sym_block_comment] = STATE(1217), - [sym_identifier] = ACTIONS(1951), - [anon_sym_LF] = ACTIONS(1951), - [anon_sym_CR] = ACTIONS(1951), - [anon_sym_CR_LF] = ACTIONS(1951), - [anon_sym_SLASH_SLASH] = ACTIONS(497), - [anon_sym_SLASH_STAR] = ACTIONS(499), - [anon_sym_SEMI] = ACTIONS(1951), - [anon_sym_DOT] = ACTIONS(1951), - [anon_sym_as] = ACTIONS(1951), - [anon_sym_LBRACE] = ACTIONS(1951), - [anon_sym_COMMA] = ACTIONS(1951), - [anon_sym_RBRACE] = ACTIONS(1951), - [anon_sym_LPAREN] = ACTIONS(1951), - [anon_sym_RPAREN] = ACTIONS(1951), - [anon_sym_PIPE] = ACTIONS(1951), - [anon_sym_fn] = ACTIONS(1951), - [anon_sym_PLUS] = ACTIONS(1951), - [anon_sym_DASH] = ACTIONS(1951), - [anon_sym_STAR] = ACTIONS(1951), - [anon_sym_SLASH] = ACTIONS(1951), - [anon_sym_PERCENT] = ACTIONS(1951), - [anon_sym_LT] = ACTIONS(1951), - [anon_sym_GT] = ACTIONS(1951), - [anon_sym_EQ_EQ] = ACTIONS(1951), - [anon_sym_BANG_EQ] = ACTIONS(1951), - [anon_sym_LT_EQ] = ACTIONS(1951), - [anon_sym_GT_EQ] = ACTIONS(1951), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1951), - [anon_sym_LBRACK] = ACTIONS(1953), - [anon_sym_struct] = ACTIONS(1951), - [anon_sym_mut] = ACTIONS(1951), - [anon_sym_PLUS_PLUS] = ACTIONS(1951), - [anon_sym_DASH_DASH] = ACTIONS(1951), - [anon_sym_QMARK] = ACTIONS(1951), - [anon_sym_BANG] = ACTIONS(1951), - [anon_sym_go] = ACTIONS(1951), - [anon_sym_spawn] = ACTIONS(1951), - [anon_sym_json_DOTdecode] = ACTIONS(1951), - [anon_sym_LBRACK2] = ACTIONS(1951), - [anon_sym_TILDE] = ACTIONS(1951), - [anon_sym_CARET] = ACTIONS(1951), - [anon_sym_AMP] = ACTIONS(1951), - [anon_sym_LT_DASH] = ACTIONS(1951), - [anon_sym_LT_LT] = ACTIONS(1951), - [anon_sym_GT_GT] = ACTIONS(1951), - [anon_sym_GT_GT_GT] = ACTIONS(1951), - [anon_sym_AMP_CARET] = ACTIONS(1951), - [anon_sym_AMP_AMP] = ACTIONS(1951), - [anon_sym_PIPE_PIPE] = ACTIONS(1951), - [anon_sym_or] = ACTIONS(1951), - [sym_none] = ACTIONS(1951), - [sym_true] = ACTIONS(1951), - [sym_false] = ACTIONS(1951), - [sym_nil] = ACTIONS(1951), - [anon_sym_QMARK_DOT] = ACTIONS(1951), - [anon_sym_POUND_LBRACK] = ACTIONS(1951), - [anon_sym_if] = ACTIONS(1951), - [anon_sym_DOLLARif] = ACTIONS(1951), - [anon_sym_is] = ACTIONS(1951), - [anon_sym_BANGis] = ACTIONS(1951), - [anon_sym_in] = ACTIONS(1951), - [anon_sym_BANGin] = ACTIONS(1951), - [anon_sym_match] = ACTIONS(1951), - [anon_sym_select] = ACTIONS(1951), - [anon_sym_lock] = ACTIONS(1951), - [anon_sym_rlock] = ACTIONS(1951), - [anon_sym_unsafe] = ACTIONS(1951), - [anon_sym_sql] = ACTIONS(1951), - [sym_int_literal] = ACTIONS(1951), - [sym_float_literal] = ACTIONS(1951), - [sym_rune_literal] = ACTIONS(1951), - [sym_pseudo_compile_time_identifier] = ACTIONS(1951), - [anon_sym_shared] = ACTIONS(1951), - [anon_sym_map_LBRACK] = ACTIONS(1951), - [anon_sym_chan] = ACTIONS(1951), - [anon_sym_thread] = ACTIONS(1951), - [anon_sym_atomic] = ACTIONS(1951), - [sym___double_quote] = ACTIONS(1951), - [sym___single_quote] = ACTIONS(1951), - [sym___c_double_quote] = ACTIONS(1951), - [sym___c_single_quote] = ACTIONS(1951), - [sym___r_double_quote] = ACTIONS(1951), - [sym___r_single_quote] = ACTIONS(1951), - }, [1218] = { [sym_line_comment] = STATE(1218), [sym_block_comment] = STATE(1218), - [sym_identifier] = ACTIONS(2173), - [anon_sym_LF] = ACTIONS(2173), - [anon_sym_CR] = ACTIONS(2173), - [anon_sym_CR_LF] = ACTIONS(2173), + [sym_identifier] = ACTIONS(2297), + [anon_sym_LF] = ACTIONS(2297), + [anon_sym_CR] = ACTIONS(2297), + [anon_sym_CR_LF] = ACTIONS(2297), [anon_sym_SLASH_SLASH] = ACTIONS(497), [anon_sym_SLASH_STAR] = ACTIONS(499), - [anon_sym_SEMI] = ACTIONS(2173), - [anon_sym_DOT] = ACTIONS(2173), - [anon_sym_as] = ACTIONS(2173), - [anon_sym_LBRACE] = ACTIONS(2173), - [anon_sym_COMMA] = ACTIONS(2173), - [anon_sym_RBRACE] = ACTIONS(2173), - [anon_sym_LPAREN] = ACTIONS(2173), - [anon_sym_RPAREN] = ACTIONS(2173), - [anon_sym_PIPE] = ACTIONS(2173), - [anon_sym_fn] = ACTIONS(2173), - [anon_sym_PLUS] = ACTIONS(2173), - [anon_sym_DASH] = ACTIONS(2173), - [anon_sym_STAR] = ACTIONS(2173), - [anon_sym_SLASH] = ACTIONS(2173), - [anon_sym_PERCENT] = ACTIONS(2173), - [anon_sym_LT] = ACTIONS(2173), - [anon_sym_GT] = ACTIONS(2173), - [anon_sym_EQ_EQ] = ACTIONS(2173), - [anon_sym_BANG_EQ] = ACTIONS(2173), - [anon_sym_LT_EQ] = ACTIONS(2173), - [anon_sym_GT_EQ] = ACTIONS(2173), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2173), - [anon_sym_LBRACK] = ACTIONS(2171), - [anon_sym_struct] = ACTIONS(2173), - [anon_sym_mut] = ACTIONS(2173), - [anon_sym_PLUS_PLUS] = ACTIONS(2173), - [anon_sym_DASH_DASH] = ACTIONS(2173), - [anon_sym_QMARK] = ACTIONS(2173), - [anon_sym_BANG] = ACTIONS(2173), - [anon_sym_go] = ACTIONS(2173), - [anon_sym_spawn] = ACTIONS(2173), - [anon_sym_json_DOTdecode] = ACTIONS(2173), - [anon_sym_LBRACK2] = ACTIONS(2173), - [anon_sym_TILDE] = ACTIONS(2173), - [anon_sym_CARET] = ACTIONS(2173), - [anon_sym_AMP] = ACTIONS(2173), - [anon_sym_LT_DASH] = ACTIONS(2173), - [anon_sym_LT_LT] = ACTIONS(2173), - [anon_sym_GT_GT] = ACTIONS(2173), - [anon_sym_GT_GT_GT] = ACTIONS(2173), - [anon_sym_AMP_CARET] = ACTIONS(2173), - [anon_sym_AMP_AMP] = ACTIONS(2173), - [anon_sym_PIPE_PIPE] = ACTIONS(2173), - [anon_sym_or] = ACTIONS(2173), - [sym_none] = ACTIONS(2173), - [sym_true] = ACTIONS(2173), - [sym_false] = ACTIONS(2173), - [sym_nil] = ACTIONS(2173), - [anon_sym_QMARK_DOT] = ACTIONS(2173), - [anon_sym_POUND_LBRACK] = ACTIONS(2173), - [anon_sym_if] = ACTIONS(2173), - [anon_sym_DOLLARif] = ACTIONS(2173), - [anon_sym_is] = ACTIONS(2173), - [anon_sym_BANGis] = ACTIONS(2173), - [anon_sym_in] = ACTIONS(2173), - [anon_sym_BANGin] = ACTIONS(2173), - [anon_sym_match] = ACTIONS(2173), - [anon_sym_select] = ACTIONS(2173), - [anon_sym_lock] = ACTIONS(2173), - [anon_sym_rlock] = ACTIONS(2173), - [anon_sym_unsafe] = ACTIONS(2173), - [anon_sym_sql] = ACTIONS(2173), - [sym_int_literal] = ACTIONS(2173), - [sym_float_literal] = ACTIONS(2173), - [sym_rune_literal] = ACTIONS(2173), - [sym_pseudo_compile_time_identifier] = ACTIONS(2173), - [anon_sym_shared] = ACTIONS(2173), - [anon_sym_map_LBRACK] = ACTIONS(2173), - [anon_sym_chan] = ACTIONS(2173), - [anon_sym_thread] = ACTIONS(2173), - [anon_sym_atomic] = ACTIONS(2173), - [sym___double_quote] = ACTIONS(2173), - [sym___single_quote] = ACTIONS(2173), - [sym___c_double_quote] = ACTIONS(2173), - [sym___c_single_quote] = ACTIONS(2173), - [sym___r_double_quote] = ACTIONS(2173), - [sym___r_single_quote] = ACTIONS(2173), + [anon_sym_SEMI] = ACTIONS(2297), + [anon_sym_DOT] = ACTIONS(2297), + [anon_sym_as] = ACTIONS(2297), + [anon_sym_LBRACE] = ACTIONS(2297), + [anon_sym_COMMA] = ACTIONS(2297), + [anon_sym_RBRACE] = ACTIONS(2297), + [anon_sym_LPAREN] = ACTIONS(2297), + [anon_sym_RPAREN] = ACTIONS(2297), + [anon_sym_PIPE] = ACTIONS(2297), + [anon_sym_fn] = ACTIONS(2297), + [anon_sym_PLUS] = ACTIONS(2297), + [anon_sym_DASH] = ACTIONS(2297), + [anon_sym_STAR] = ACTIONS(2297), + [anon_sym_SLASH] = ACTIONS(2297), + [anon_sym_PERCENT] = ACTIONS(2297), + [anon_sym_LT] = ACTIONS(2297), + [anon_sym_GT] = ACTIONS(2297), + [anon_sym_EQ_EQ] = ACTIONS(2297), + [anon_sym_BANG_EQ] = ACTIONS(2297), + [anon_sym_LT_EQ] = ACTIONS(2297), + [anon_sym_GT_EQ] = ACTIONS(2297), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2297), + [anon_sym_LBRACK] = ACTIONS(2295), + [anon_sym_struct] = ACTIONS(2297), + [anon_sym_mut] = ACTIONS(2297), + [anon_sym_PLUS_PLUS] = ACTIONS(2297), + [anon_sym_DASH_DASH] = ACTIONS(2297), + [anon_sym_QMARK] = ACTIONS(2297), + [anon_sym_BANG] = ACTIONS(2297), + [anon_sym_go] = ACTIONS(2297), + [anon_sym_spawn] = ACTIONS(2297), + [anon_sym_json_DOTdecode] = ACTIONS(2297), + [anon_sym_LBRACK2] = ACTIONS(2297), + [anon_sym_TILDE] = ACTIONS(2297), + [anon_sym_CARET] = ACTIONS(2297), + [anon_sym_AMP] = ACTIONS(2297), + [anon_sym_LT_DASH] = ACTIONS(2297), + [anon_sym_LT_LT] = ACTIONS(2297), + [anon_sym_GT_GT] = ACTIONS(2297), + [anon_sym_GT_GT_GT] = ACTIONS(2297), + [anon_sym_AMP_CARET] = ACTIONS(2297), + [anon_sym_AMP_AMP] = ACTIONS(2297), + [anon_sym_PIPE_PIPE] = ACTIONS(2297), + [anon_sym_or] = ACTIONS(2297), + [sym_none] = ACTIONS(2297), + [sym_true] = ACTIONS(2297), + [sym_false] = ACTIONS(2297), + [sym_nil] = ACTIONS(2297), + [anon_sym_QMARK_DOT] = ACTIONS(2297), + [anon_sym_POUND_LBRACK] = ACTIONS(2297), + [anon_sym_if] = ACTIONS(2297), + [anon_sym_DOLLARif] = ACTIONS(2297), + [anon_sym_is] = ACTIONS(2297), + [anon_sym_BANGis] = ACTIONS(2297), + [anon_sym_in] = ACTIONS(2297), + [anon_sym_BANGin] = ACTIONS(2297), + [anon_sym_match] = ACTIONS(2297), + [anon_sym_select] = ACTIONS(2297), + [anon_sym_lock] = ACTIONS(2297), + [anon_sym_rlock] = ACTIONS(2297), + [anon_sym_unsafe] = ACTIONS(2297), + [anon_sym_sql] = ACTIONS(2297), + [sym_int_literal] = ACTIONS(2297), + [sym_float_literal] = ACTIONS(2297), + [sym_rune_literal] = ACTIONS(2297), + [sym_pseudo_compile_time_identifier] = ACTIONS(2297), + [anon_sym_shared] = ACTIONS(2297), + [anon_sym_map_LBRACK] = ACTIONS(2297), + [anon_sym_chan] = ACTIONS(2297), + [anon_sym_thread] = ACTIONS(2297), + [anon_sym_atomic] = ACTIONS(2297), + [sym___double_quote] = ACTIONS(2297), + [sym___single_quote] = ACTIONS(2297), + [sym___c_double_quote] = ACTIONS(2297), + [sym___c_single_quote] = ACTIONS(2297), + [sym___r_double_quote] = ACTIONS(2297), + [sym___r_single_quote] = ACTIONS(2297), }, [1219] = { [sym_line_comment] = STATE(1219), [sym_block_comment] = STATE(1219), - [sym_reference_expression] = STATE(4430), - [sym_type_reference_expression] = STATE(1908), - [sym_plain_type] = STATE(1925), - [sym__plain_type_without_special] = STATE(1930), - [sym_anon_struct_type] = STATE(1929), - [sym_multi_return_type] = STATE(1930), - [sym_result_type] = STATE(1930), - [sym_option_type] = STATE(1930), - [sym_qualified_type] = STATE(1908), - [sym_fixed_array_type] = STATE(1929), - [sym_array_type] = STATE(1929), - [sym_pointer_type] = STATE(1929), - [sym_wrong_pointer_type] = STATE(1929), - [sym_map_type] = STATE(1929), - [sym_channel_type] = STATE(1929), - [sym_shared_type] = STATE(1929), - [sym_thread_type] = STATE(1929), - [sym_atomic_type] = STATE(1929), - [sym_generic_type] = STATE(1929), - [sym_function_type] = STATE(1929), - [sym_identifier] = ACTIONS(3783), - [anon_sym_SLASH_SLASH] = ACTIONS(3), - [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(563), - [anon_sym_as] = ACTIONS(567), - [anon_sym_LBRACE] = ACTIONS(563), - [anon_sym_COMMA] = ACTIONS(563), - [anon_sym_LPAREN] = ACTIONS(3785), - [anon_sym_EQ] = ACTIONS(567), - [anon_sym_PIPE] = ACTIONS(567), - [anon_sym_fn] = ACTIONS(3787), - [anon_sym_PLUS] = ACTIONS(567), - [anon_sym_DASH] = ACTIONS(567), - [anon_sym_STAR] = ACTIONS(3789), - [anon_sym_SLASH] = ACTIONS(567), - [anon_sym_PERCENT] = ACTIONS(567), - [anon_sym_LT] = ACTIONS(567), - [anon_sym_GT] = ACTIONS(567), - [anon_sym_EQ_EQ] = ACTIONS(563), - [anon_sym_BANG_EQ] = ACTIONS(563), - [anon_sym_LT_EQ] = ACTIONS(563), - [anon_sym_GT_EQ] = ACTIONS(563), - [anon_sym_LBRACK] = ACTIONS(563), - [anon_sym_struct] = ACTIONS(3791), - [anon_sym_COLON] = ACTIONS(563), - [anon_sym_PLUS_PLUS] = ACTIONS(563), - [anon_sym_DASH_DASH] = ACTIONS(563), - [anon_sym_QMARK] = ACTIONS(3793), - [anon_sym_BANG] = ACTIONS(3795), - [anon_sym_LBRACK2] = ACTIONS(3797), - [anon_sym_CARET] = ACTIONS(567), - [anon_sym_AMP] = ACTIONS(3799), - [anon_sym_LT_DASH] = ACTIONS(563), - [anon_sym_LT_LT] = ACTIONS(567), - [anon_sym_GT_GT] = ACTIONS(567), - [anon_sym_GT_GT_GT] = ACTIONS(567), - [anon_sym_AMP_CARET] = ACTIONS(567), - [anon_sym_AMP_AMP] = ACTIONS(563), - [anon_sym_PIPE_PIPE] = ACTIONS(563), - [anon_sym_or] = ACTIONS(567), - [anon_sym_QMARK_DOT] = ACTIONS(563), - [anon_sym_POUND_LBRACK] = ACTIONS(563), - [anon_sym_is] = ACTIONS(567), - [anon_sym_BANGis] = ACTIONS(563), - [anon_sym_in] = ACTIONS(567), - [anon_sym_BANGin] = ACTIONS(563), - [anon_sym_STAR_EQ] = ACTIONS(563), - [anon_sym_SLASH_EQ] = ACTIONS(563), - [anon_sym_PERCENT_EQ] = ACTIONS(563), - [anon_sym_LT_LT_EQ] = ACTIONS(563), - [anon_sym_GT_GT_EQ] = ACTIONS(563), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(563), - [anon_sym_AMP_EQ] = ACTIONS(563), - [anon_sym_AMP_CARET_EQ] = ACTIONS(563), - [anon_sym_PLUS_EQ] = ACTIONS(563), - [anon_sym_DASH_EQ] = ACTIONS(563), - [anon_sym_PIPE_EQ] = ACTIONS(563), - [anon_sym_CARET_EQ] = ACTIONS(563), - [anon_sym_shared] = ACTIONS(3801), - [anon_sym_map_LBRACK] = ACTIONS(3803), - [anon_sym_chan] = ACTIONS(3805), - [anon_sym_thread] = ACTIONS(3807), - [anon_sym_atomic] = ACTIONS(3809), + [sym_identifier] = ACTIONS(2750), + [anon_sym_LF] = ACTIONS(2750), + [anon_sym_CR] = ACTIONS(2750), + [anon_sym_CR_LF] = ACTIONS(2750), + [anon_sym_SLASH_SLASH] = ACTIONS(497), + [anon_sym_SLASH_STAR] = ACTIONS(499), + [anon_sym_SEMI] = ACTIONS(2750), + [anon_sym_DOT] = ACTIONS(2750), + [anon_sym_as] = ACTIONS(2750), + [anon_sym_LBRACE] = ACTIONS(2750), + [anon_sym_COMMA] = ACTIONS(2750), + [anon_sym_RBRACE] = ACTIONS(2750), + [anon_sym_LPAREN] = ACTIONS(2750), + [anon_sym_RPAREN] = ACTIONS(2750), + [anon_sym_PIPE] = ACTIONS(2750), + [anon_sym_fn] = ACTIONS(2750), + [anon_sym_PLUS] = ACTIONS(2750), + [anon_sym_DASH] = ACTIONS(2750), + [anon_sym_STAR] = ACTIONS(2750), + [anon_sym_SLASH] = ACTIONS(2750), + [anon_sym_PERCENT] = ACTIONS(2750), + [anon_sym_LT] = ACTIONS(2750), + [anon_sym_GT] = ACTIONS(2750), + [anon_sym_EQ_EQ] = ACTIONS(2750), + [anon_sym_BANG_EQ] = ACTIONS(2750), + [anon_sym_LT_EQ] = ACTIONS(2750), + [anon_sym_GT_EQ] = ACTIONS(2750), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2750), + [anon_sym_LBRACK] = ACTIONS(2748), + [anon_sym_struct] = ACTIONS(2750), + [anon_sym_mut] = ACTIONS(2750), + [anon_sym_PLUS_PLUS] = ACTIONS(2750), + [anon_sym_DASH_DASH] = ACTIONS(2750), + [anon_sym_QMARK] = ACTIONS(2750), + [anon_sym_BANG] = ACTIONS(2750), + [anon_sym_go] = ACTIONS(2750), + [anon_sym_spawn] = ACTIONS(2750), + [anon_sym_json_DOTdecode] = ACTIONS(2750), + [anon_sym_LBRACK2] = ACTIONS(2750), + [anon_sym_TILDE] = ACTIONS(2750), + [anon_sym_CARET] = ACTIONS(2750), + [anon_sym_AMP] = ACTIONS(2750), + [anon_sym_LT_DASH] = ACTIONS(2750), + [anon_sym_LT_LT] = ACTIONS(2750), + [anon_sym_GT_GT] = ACTIONS(2750), + [anon_sym_GT_GT_GT] = ACTIONS(2750), + [anon_sym_AMP_CARET] = ACTIONS(2750), + [anon_sym_AMP_AMP] = ACTIONS(2750), + [anon_sym_PIPE_PIPE] = ACTIONS(2750), + [anon_sym_or] = ACTIONS(2750), + [sym_none] = ACTIONS(2750), + [sym_true] = ACTIONS(2750), + [sym_false] = ACTIONS(2750), + [sym_nil] = ACTIONS(2750), + [anon_sym_QMARK_DOT] = ACTIONS(2750), + [anon_sym_POUND_LBRACK] = ACTIONS(2750), + [anon_sym_if] = ACTIONS(2750), + [anon_sym_DOLLARif] = ACTIONS(2750), + [anon_sym_is] = ACTIONS(2750), + [anon_sym_BANGis] = ACTIONS(2750), + [anon_sym_in] = ACTIONS(2750), + [anon_sym_BANGin] = ACTIONS(2750), + [anon_sym_match] = ACTIONS(2750), + [anon_sym_select] = ACTIONS(2750), + [anon_sym_lock] = ACTIONS(2750), + [anon_sym_rlock] = ACTIONS(2750), + [anon_sym_unsafe] = ACTIONS(2750), + [anon_sym_sql] = ACTIONS(2750), + [sym_int_literal] = ACTIONS(2750), + [sym_float_literal] = ACTIONS(2750), + [sym_rune_literal] = ACTIONS(2750), + [sym_pseudo_compile_time_identifier] = ACTIONS(2750), + [anon_sym_shared] = ACTIONS(2750), + [anon_sym_map_LBRACK] = ACTIONS(2750), + [anon_sym_chan] = ACTIONS(2750), + [anon_sym_thread] = ACTIONS(2750), + [anon_sym_atomic] = ACTIONS(2750), + [sym___double_quote] = ACTIONS(2750), + [sym___single_quote] = ACTIONS(2750), + [sym___c_double_quote] = ACTIONS(2750), + [sym___c_single_quote] = ACTIONS(2750), + [sym___r_double_quote] = ACTIONS(2750), + [sym___r_single_quote] = ACTIONS(2750), }, [1220] = { [sym_line_comment] = STATE(1220), [sym_block_comment] = STATE(1220), - [sym_identifier] = ACTIONS(1905), - [anon_sym_LF] = ACTIONS(1905), - [anon_sym_CR] = ACTIONS(1905), - [anon_sym_CR_LF] = ACTIONS(1905), + [sym_identifier] = ACTIONS(3746), + [anon_sym_LF] = ACTIONS(3749), + [anon_sym_CR] = ACTIONS(3749), + [anon_sym_CR_LF] = ACTIONS(3749), [anon_sym_SLASH_SLASH] = ACTIONS(497), [anon_sym_SLASH_STAR] = ACTIONS(499), - [anon_sym_SEMI] = ACTIONS(1905), - [anon_sym_DOT] = ACTIONS(1905), - [anon_sym_as] = ACTIONS(1905), - [anon_sym_LBRACE] = ACTIONS(1905), - [anon_sym_COMMA] = ACTIONS(1905), - [anon_sym_RBRACE] = ACTIONS(1905), - [anon_sym_LPAREN] = ACTIONS(1905), - [anon_sym_RPAREN] = ACTIONS(1905), - [anon_sym_PIPE] = ACTIONS(1905), - [anon_sym_fn] = ACTIONS(1905), - [anon_sym_PLUS] = ACTIONS(1905), - [anon_sym_DASH] = ACTIONS(1905), - [anon_sym_STAR] = ACTIONS(1905), - [anon_sym_SLASH] = ACTIONS(1905), - [anon_sym_PERCENT] = ACTIONS(1905), - [anon_sym_LT] = ACTIONS(1905), - [anon_sym_GT] = ACTIONS(1905), - [anon_sym_EQ_EQ] = ACTIONS(1905), - [anon_sym_BANG_EQ] = ACTIONS(1905), - [anon_sym_LT_EQ] = ACTIONS(1905), - [anon_sym_GT_EQ] = ACTIONS(1905), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1905), - [anon_sym_LBRACK] = ACTIONS(1903), - [anon_sym_struct] = ACTIONS(1905), - [anon_sym_mut] = ACTIONS(1905), - [anon_sym_PLUS_PLUS] = ACTIONS(1905), - [anon_sym_DASH_DASH] = ACTIONS(1905), - [anon_sym_QMARK] = ACTIONS(1905), - [anon_sym_BANG] = ACTIONS(1905), - [anon_sym_go] = ACTIONS(1905), - [anon_sym_spawn] = ACTIONS(1905), - [anon_sym_json_DOTdecode] = ACTIONS(1905), - [anon_sym_LBRACK2] = ACTIONS(1905), - [anon_sym_TILDE] = ACTIONS(1905), - [anon_sym_CARET] = ACTIONS(1905), - [anon_sym_AMP] = ACTIONS(1905), - [anon_sym_LT_DASH] = ACTIONS(1905), - [anon_sym_LT_LT] = ACTIONS(1905), - [anon_sym_GT_GT] = ACTIONS(1905), - [anon_sym_GT_GT_GT] = ACTIONS(1905), - [anon_sym_AMP_CARET] = ACTIONS(1905), - [anon_sym_AMP_AMP] = ACTIONS(1905), - [anon_sym_PIPE_PIPE] = ACTIONS(1905), - [anon_sym_or] = ACTIONS(1905), - [sym_none] = ACTIONS(1905), - [sym_true] = ACTIONS(1905), - [sym_false] = ACTIONS(1905), - [sym_nil] = ACTIONS(1905), - [anon_sym_QMARK_DOT] = ACTIONS(1905), - [anon_sym_POUND_LBRACK] = ACTIONS(1905), - [anon_sym_if] = ACTIONS(1905), - [anon_sym_DOLLARif] = ACTIONS(1905), - [anon_sym_is] = ACTIONS(1905), - [anon_sym_BANGis] = ACTIONS(1905), - [anon_sym_in] = ACTIONS(1905), - [anon_sym_BANGin] = ACTIONS(1905), - [anon_sym_match] = ACTIONS(1905), - [anon_sym_select] = ACTIONS(1905), - [anon_sym_lock] = ACTIONS(1905), - [anon_sym_rlock] = ACTIONS(1905), - [anon_sym_unsafe] = ACTIONS(1905), - [anon_sym_sql] = ACTIONS(1905), - [sym_int_literal] = ACTIONS(1905), - [sym_float_literal] = ACTIONS(1905), - [sym_rune_literal] = ACTIONS(1905), - [sym_pseudo_compile_time_identifier] = ACTIONS(1905), - [anon_sym_shared] = ACTIONS(1905), - [anon_sym_map_LBRACK] = ACTIONS(1905), - [anon_sym_chan] = ACTIONS(1905), - [anon_sym_thread] = ACTIONS(1905), - [anon_sym_atomic] = ACTIONS(1905), - [sym___double_quote] = ACTIONS(1905), - [sym___single_quote] = ACTIONS(1905), - [sym___c_double_quote] = ACTIONS(1905), - [sym___c_single_quote] = ACTIONS(1905), - [sym___r_double_quote] = ACTIONS(1905), - [sym___r_single_quote] = ACTIONS(1905), + [anon_sym_SEMI] = ACTIONS(3749), + [anon_sym_DOT] = ACTIONS(3786), + [anon_sym_as] = ACTIONS(2513), + [anon_sym_LBRACE] = ACTIONS(2513), + [anon_sym_COMMA] = ACTIONS(3749), + [anon_sym_RBRACE] = ACTIONS(3746), + [anon_sym_LPAREN] = ACTIONS(2513), + [anon_sym_PIPE] = ACTIONS(2513), + [anon_sym_fn] = ACTIONS(2513), + [anon_sym_PLUS] = ACTIONS(2513), + [anon_sym_DASH] = ACTIONS(2513), + [anon_sym_STAR] = ACTIONS(2513), + [anon_sym_SLASH] = ACTIONS(2513), + [anon_sym_PERCENT] = ACTIONS(2513), + [anon_sym_LT] = ACTIONS(2513), + [anon_sym_GT] = ACTIONS(2513), + [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_DOT_DOT_DOT] = ACTIONS(3752), + [anon_sym_LBRACK] = ACTIONS(2511), + [anon_sym_struct] = ACTIONS(2513), + [anon_sym_mut] = ACTIONS(2513), + [anon_sym_COLON] = ACTIONS(3754), + [anon_sym_PLUS_PLUS] = ACTIONS(2513), + [anon_sym_DASH_DASH] = ACTIONS(2513), + [anon_sym_QMARK] = ACTIONS(2513), + [anon_sym_BANG] = ACTIONS(2513), + [anon_sym_go] = ACTIONS(2513), + [anon_sym_spawn] = ACTIONS(2513), + [anon_sym_json_DOTdecode] = ACTIONS(2513), + [anon_sym_LBRACK2] = ACTIONS(2513), + [anon_sym_TILDE] = ACTIONS(2513), + [anon_sym_CARET] = ACTIONS(2513), + [anon_sym_AMP] = ACTIONS(2513), + [anon_sym_LT_DASH] = ACTIONS(2513), + [anon_sym_LT_LT] = ACTIONS(2513), + [anon_sym_GT_GT] = ACTIONS(2513), + [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(2513), + [sym_none] = ACTIONS(2513), + [sym_true] = ACTIONS(2513), + [sym_false] = ACTIONS(2513), + [sym_nil] = ACTIONS(2513), + [anon_sym_QMARK_DOT] = ACTIONS(2513), + [anon_sym_POUND_LBRACK] = ACTIONS(2513), + [anon_sym_if] = ACTIONS(2513), + [anon_sym_DOLLARif] = ACTIONS(2513), + [anon_sym_is] = ACTIONS(2513), + [anon_sym_BANGis] = ACTIONS(2513), + [anon_sym_in] = ACTIONS(2513), + [anon_sym_BANGin] = ACTIONS(2513), + [anon_sym_match] = ACTIONS(2513), + [anon_sym_select] = ACTIONS(2513), + [anon_sym_lock] = ACTIONS(2513), + [anon_sym_rlock] = ACTIONS(2513), + [anon_sym_unsafe] = ACTIONS(2513), + [anon_sym_sql] = ACTIONS(2513), + [sym_int_literal] = ACTIONS(2513), + [sym_float_literal] = ACTIONS(2513), + [sym_rune_literal] = ACTIONS(2513), + [sym_pseudo_compile_time_identifier] = ACTIONS(2513), + [anon_sym_shared] = ACTIONS(2513), + [anon_sym_map_LBRACK] = ACTIONS(2513), + [anon_sym_chan] = ACTIONS(2513), + [anon_sym_thread] = ACTIONS(2513), + [anon_sym_atomic] = ACTIONS(2513), + [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), }, [1221] = { [sym_line_comment] = STATE(1221), [sym_block_comment] = STATE(1221), - [sym_identifier] = ACTIONS(2896), - [anon_sym_LF] = ACTIONS(2896), - [anon_sym_CR] = ACTIONS(2896), - [anon_sym_CR_LF] = ACTIONS(2896), + [sym_identifier] = ACTIONS(2211), + [anon_sym_LF] = ACTIONS(2211), + [anon_sym_CR] = ACTIONS(2211), + [anon_sym_CR_LF] = ACTIONS(2211), [anon_sym_SLASH_SLASH] = ACTIONS(497), [anon_sym_SLASH_STAR] = ACTIONS(499), - [anon_sym_SEMI] = ACTIONS(2896), - [anon_sym_DOT] = ACTIONS(2896), - [anon_sym_as] = ACTIONS(2896), - [anon_sym_LBRACE] = ACTIONS(2896), - [anon_sym_COMMA] = ACTIONS(2896), - [anon_sym_RBRACE] = ACTIONS(2896), - [anon_sym_LPAREN] = ACTIONS(2896), - [anon_sym_RPAREN] = ACTIONS(2896), - [anon_sym_PIPE] = ACTIONS(2896), - [anon_sym_fn] = ACTIONS(2896), - [anon_sym_PLUS] = ACTIONS(2896), - [anon_sym_DASH] = ACTIONS(2896), - [anon_sym_STAR] = ACTIONS(2896), - [anon_sym_SLASH] = ACTIONS(2896), - [anon_sym_PERCENT] = ACTIONS(2896), - [anon_sym_LT] = ACTIONS(2896), - [anon_sym_GT] = ACTIONS(2896), - [anon_sym_EQ_EQ] = ACTIONS(2896), - [anon_sym_BANG_EQ] = ACTIONS(2896), - [anon_sym_LT_EQ] = ACTIONS(2896), - [anon_sym_GT_EQ] = ACTIONS(2896), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2896), - [anon_sym_LBRACK] = ACTIONS(2894), - [anon_sym_struct] = ACTIONS(2896), - [anon_sym_mut] = ACTIONS(2896), - [anon_sym_PLUS_PLUS] = ACTIONS(2896), - [anon_sym_DASH_DASH] = ACTIONS(2896), - [anon_sym_QMARK] = ACTIONS(2896), - [anon_sym_BANG] = ACTIONS(2896), - [anon_sym_go] = ACTIONS(2896), - [anon_sym_spawn] = ACTIONS(2896), - [anon_sym_json_DOTdecode] = ACTIONS(2896), - [anon_sym_LBRACK2] = ACTIONS(2896), - [anon_sym_TILDE] = ACTIONS(2896), - [anon_sym_CARET] = ACTIONS(2896), - [anon_sym_AMP] = ACTIONS(2896), - [anon_sym_LT_DASH] = ACTIONS(2896), - [anon_sym_LT_LT] = ACTIONS(2896), - [anon_sym_GT_GT] = ACTIONS(2896), - [anon_sym_GT_GT_GT] = ACTIONS(2896), - [anon_sym_AMP_CARET] = ACTIONS(2896), - [anon_sym_AMP_AMP] = ACTIONS(2896), - [anon_sym_PIPE_PIPE] = ACTIONS(2896), - [anon_sym_or] = ACTIONS(2896), - [sym_none] = ACTIONS(2896), - [sym_true] = ACTIONS(2896), - [sym_false] = ACTIONS(2896), - [sym_nil] = ACTIONS(2896), - [anon_sym_QMARK_DOT] = ACTIONS(2896), - [anon_sym_POUND_LBRACK] = ACTIONS(2896), - [anon_sym_if] = ACTIONS(2896), - [anon_sym_DOLLARif] = ACTIONS(2896), - [anon_sym_is] = ACTIONS(2896), - [anon_sym_BANGis] = ACTIONS(2896), - [anon_sym_in] = ACTIONS(2896), - [anon_sym_BANGin] = ACTIONS(2896), - [anon_sym_match] = ACTIONS(2896), - [anon_sym_select] = ACTIONS(2896), - [anon_sym_lock] = ACTIONS(2896), - [anon_sym_rlock] = ACTIONS(2896), - [anon_sym_unsafe] = ACTIONS(2896), - [anon_sym_sql] = ACTIONS(2896), - [sym_int_literal] = ACTIONS(2896), - [sym_float_literal] = ACTIONS(2896), - [sym_rune_literal] = ACTIONS(2896), - [sym_pseudo_compile_time_identifier] = ACTIONS(2896), - [anon_sym_shared] = ACTIONS(2896), - [anon_sym_map_LBRACK] = ACTIONS(2896), - [anon_sym_chan] = ACTIONS(2896), - [anon_sym_thread] = ACTIONS(2896), - [anon_sym_atomic] = ACTIONS(2896), - [sym___double_quote] = ACTIONS(2896), - [sym___single_quote] = ACTIONS(2896), - [sym___c_double_quote] = ACTIONS(2896), - [sym___c_single_quote] = ACTIONS(2896), - [sym___r_double_quote] = ACTIONS(2896), - [sym___r_single_quote] = ACTIONS(2896), + [anon_sym_SEMI] = ACTIONS(2211), + [anon_sym_DOT] = ACTIONS(2211), + [anon_sym_as] = ACTIONS(2211), + [anon_sym_LBRACE] = ACTIONS(2211), + [anon_sym_COMMA] = ACTIONS(2211), + [anon_sym_RBRACE] = ACTIONS(2211), + [anon_sym_LPAREN] = ACTIONS(2211), + [anon_sym_RPAREN] = ACTIONS(2211), + [anon_sym_PIPE] = ACTIONS(2211), + [anon_sym_fn] = ACTIONS(2211), + [anon_sym_PLUS] = ACTIONS(2211), + [anon_sym_DASH] = ACTIONS(2211), + [anon_sym_STAR] = ACTIONS(2211), + [anon_sym_SLASH] = ACTIONS(2211), + [anon_sym_PERCENT] = ACTIONS(2211), + [anon_sym_LT] = ACTIONS(2211), + [anon_sym_GT] = ACTIONS(2211), + [anon_sym_EQ_EQ] = ACTIONS(2211), + [anon_sym_BANG_EQ] = ACTIONS(2211), + [anon_sym_LT_EQ] = ACTIONS(2211), + [anon_sym_GT_EQ] = ACTIONS(2211), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2211), + [anon_sym_LBRACK] = ACTIONS(2209), + [anon_sym_struct] = ACTIONS(2211), + [anon_sym_mut] = ACTIONS(2211), + [anon_sym_PLUS_PLUS] = ACTIONS(2211), + [anon_sym_DASH_DASH] = ACTIONS(2211), + [anon_sym_QMARK] = ACTIONS(2211), + [anon_sym_BANG] = ACTIONS(2211), + [anon_sym_go] = ACTIONS(2211), + [anon_sym_spawn] = ACTIONS(2211), + [anon_sym_json_DOTdecode] = ACTIONS(2211), + [anon_sym_LBRACK2] = ACTIONS(2211), + [anon_sym_TILDE] = ACTIONS(2211), + [anon_sym_CARET] = ACTIONS(2211), + [anon_sym_AMP] = ACTIONS(2211), + [anon_sym_LT_DASH] = ACTIONS(2211), + [anon_sym_LT_LT] = ACTIONS(2211), + [anon_sym_GT_GT] = ACTIONS(2211), + [anon_sym_GT_GT_GT] = ACTIONS(2211), + [anon_sym_AMP_CARET] = ACTIONS(2211), + [anon_sym_AMP_AMP] = ACTIONS(2211), + [anon_sym_PIPE_PIPE] = ACTIONS(2211), + [anon_sym_or] = ACTIONS(2211), + [sym_none] = ACTIONS(2211), + [sym_true] = ACTIONS(2211), + [sym_false] = ACTIONS(2211), + [sym_nil] = ACTIONS(2211), + [anon_sym_QMARK_DOT] = ACTIONS(2211), + [anon_sym_POUND_LBRACK] = ACTIONS(2211), + [anon_sym_if] = ACTIONS(2211), + [anon_sym_DOLLARif] = ACTIONS(2211), + [anon_sym_is] = ACTIONS(2211), + [anon_sym_BANGis] = ACTIONS(2211), + [anon_sym_in] = ACTIONS(2211), + [anon_sym_BANGin] = ACTIONS(2211), + [anon_sym_match] = ACTIONS(2211), + [anon_sym_select] = ACTIONS(2211), + [anon_sym_lock] = ACTIONS(2211), + [anon_sym_rlock] = ACTIONS(2211), + [anon_sym_unsafe] = ACTIONS(2211), + [anon_sym_sql] = ACTIONS(2211), + [sym_int_literal] = ACTIONS(2211), + [sym_float_literal] = ACTIONS(2211), + [sym_rune_literal] = ACTIONS(2211), + [sym_pseudo_compile_time_identifier] = ACTIONS(2211), + [anon_sym_shared] = ACTIONS(2211), + [anon_sym_map_LBRACK] = ACTIONS(2211), + [anon_sym_chan] = ACTIONS(2211), + [anon_sym_thread] = ACTIONS(2211), + [anon_sym_atomic] = ACTIONS(2211), + [sym___double_quote] = ACTIONS(2211), + [sym___single_quote] = ACTIONS(2211), + [sym___c_double_quote] = ACTIONS(2211), + [sym___c_single_quote] = ACTIONS(2211), + [sym___r_double_quote] = ACTIONS(2211), + [sym___r_single_quote] = ACTIONS(2211), }, [1222] = { [sym_line_comment] = STATE(1222), [sym_block_comment] = STATE(1222), - [sym_reference_expression] = STATE(4376), - [sym_type_reference_expression] = STATE(1910), - [sym_plain_type] = STATE(1982), - [sym__plain_type_without_special] = STATE(2003), - [sym_anon_struct_type] = STATE(2002), - [sym_multi_return_type] = STATE(2003), - [sym_result_type] = STATE(2003), - [sym_option_type] = STATE(2003), - [sym_qualified_type] = STATE(1910), - [sym_fixed_array_type] = STATE(2002), - [sym_array_type] = STATE(2002), - [sym_pointer_type] = STATE(2002), - [sym_wrong_pointer_type] = STATE(2002), - [sym_map_type] = STATE(2002), - [sym_channel_type] = STATE(2002), - [sym_shared_type] = STATE(2002), - [sym_thread_type] = STATE(2002), - [sym_atomic_type] = STATE(2002), - [sym_generic_type] = STATE(2002), - [sym_function_type] = STATE(2002), - [sym_identifier] = ACTIONS(3755), - [anon_sym_SLASH_SLASH] = ACTIONS(3), - [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_SEMI] = ACTIONS(617), - [anon_sym_DOT] = ACTIONS(617), - [anon_sym_as] = ACTIONS(619), - [anon_sym_LBRACE] = ACTIONS(617), - [anon_sym_COMMA] = ACTIONS(617), - [anon_sym_LPAREN] = ACTIONS(3757), - [anon_sym_EQ] = ACTIONS(619), - [anon_sym_PIPE] = ACTIONS(619), - [anon_sym_fn] = ACTIONS(3759), - [anon_sym_PLUS] = ACTIONS(619), - [anon_sym_DASH] = ACTIONS(619), - [anon_sym_STAR] = ACTIONS(3761), - [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(3763), - [anon_sym_PLUS_PLUS] = ACTIONS(617), - [anon_sym_DASH_DASH] = ACTIONS(617), - [anon_sym_QMARK] = ACTIONS(3765), - [anon_sym_BANG] = ACTIONS(3767), - [anon_sym_LBRACK2] = ACTIONS(3769), - [anon_sym_CARET] = ACTIONS(619), - [anon_sym_AMP] = ACTIONS(3771), - [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(3773), - [anon_sym_map_LBRACK] = ACTIONS(3775), - [anon_sym_chan] = ACTIONS(3777), - [anon_sym_thread] = ACTIONS(3779), - [anon_sym_atomic] = ACTIONS(3781), - }, - [1223] = { - [sym_line_comment] = STATE(1223), - [sym_block_comment] = STATE(1223), - [sym_reference_expression] = STATE(4376), - [sym_type_reference_expression] = STATE(1910), - [sym_plain_type] = STATE(1996), - [sym__plain_type_without_special] = STATE(2003), - [sym_anon_struct_type] = STATE(2002), - [sym_multi_return_type] = STATE(2003), - [sym_result_type] = STATE(2003), - [sym_option_type] = STATE(2003), - [sym_qualified_type] = STATE(1910), - [sym_fixed_array_type] = STATE(2002), - [sym_array_type] = STATE(2002), - [sym_pointer_type] = STATE(2002), - [sym_wrong_pointer_type] = STATE(2002), - [sym_map_type] = STATE(2002), - [sym_channel_type] = STATE(2002), - [sym_shared_type] = STATE(2002), - [sym_thread_type] = STATE(2002), - [sym_atomic_type] = STATE(2002), - [sym_generic_type] = STATE(2002), - [sym_function_type] = STATE(2002), - [sym_identifier] = ACTIONS(3755), + [sym_reference_expression] = STATE(4498), + [sym_type_reference_expression] = STATE(3460), + [sym_plain_type] = STATE(2345), + [sym__plain_type_without_special] = STATE(2360), + [sym_anon_struct_type] = STATE(2362), + [sym_multi_return_type] = STATE(2360), + [sym_result_type] = STATE(2360), + [sym_option_type] = STATE(2360), + [sym_qualified_type] = STATE(3460), + [sym_fixed_array_type] = STATE(2362), + [sym_array_type] = STATE(2362), + [sym_pointer_type] = STATE(2362), + [sym_wrong_pointer_type] = STATE(2362), + [sym_map_type] = STATE(2362), + [sym_channel_type] = STATE(2362), + [sym_shared_type] = STATE(2362), + [sym_thread_type] = STATE(2362), + [sym_atomic_type] = STATE(2362), + [sym_generic_type] = STATE(2362), + [sym_function_type] = STATE(2362), + [sym_identifier] = ACTIONS(565), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), [anon_sym_SEMI] = ACTIONS(625), [anon_sym_DOT] = ACTIONS(625), [anon_sym_as] = ACTIONS(627), - [anon_sym_LBRACE] = ACTIONS(625), + [anon_sym_LBRACE] = ACTIONS(621), [anon_sym_COMMA] = ACTIONS(625), - [anon_sym_LPAREN] = ACTIONS(3757), + [anon_sym_LPAREN] = ACTIONS(625), [anon_sym_EQ] = ACTIONS(627), [anon_sym_PIPE] = ACTIONS(627), - [anon_sym_fn] = ACTIONS(3759), + [anon_sym_fn] = ACTIONS(571), [anon_sym_PLUS] = ACTIONS(627), [anon_sym_DASH] = ACTIONS(627), - [anon_sym_STAR] = ACTIONS(3761), + [anon_sym_STAR] = ACTIONS(627), [anon_sym_SLASH] = ACTIONS(627), [anon_sym_PERCENT] = ACTIONS(627), [anon_sym_LT] = ACTIONS(627), @@ -158336,14 +158296,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT_EQ] = ACTIONS(625), [anon_sym_GT_EQ] = ACTIONS(625), [anon_sym_LBRACK] = ACTIONS(625), - [anon_sym_struct] = ACTIONS(3763), + [anon_sym_struct] = ACTIONS(575), [anon_sym_PLUS_PLUS] = ACTIONS(625), [anon_sym_DASH_DASH] = ACTIONS(625), - [anon_sym_QMARK] = ACTIONS(3765), - [anon_sym_BANG] = ACTIONS(3767), - [anon_sym_LBRACK2] = ACTIONS(3769), + [anon_sym_QMARK] = ACTIONS(627), + [anon_sym_BANG] = ACTIONS(627), + [anon_sym_LBRACK2] = ACTIONS(627), [anon_sym_CARET] = ACTIONS(627), - [anon_sym_AMP] = ACTIONS(3771), + [anon_sym_AMP] = ACTIONS(627), [anon_sym_LT_LT] = ACTIONS(627), [anon_sym_GT_GT] = ACTIONS(627), [anon_sym_GT_GT_GT] = ACTIONS(627), @@ -158370,2224 +158330,2312 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PIPE_EQ] = ACTIONS(625), [anon_sym_CARET_EQ] = ACTIONS(625), [anon_sym_COLON_EQ] = ACTIONS(625), - [anon_sym_shared] = ACTIONS(3773), - [anon_sym_map_LBRACK] = ACTIONS(3775), - [anon_sym_chan] = ACTIONS(3777), - [anon_sym_thread] = ACTIONS(3779), - [anon_sym_atomic] = ACTIONS(3781), + [anon_sym_shared] = ACTIONS(583), + [anon_sym_map_LBRACK] = ACTIONS(85), + [anon_sym_chan] = ACTIONS(87), + [anon_sym_thread] = ACTIONS(89), + [anon_sym_atomic] = ACTIONS(91), + }, + [1223] = { + [sym_line_comment] = STATE(1223), + [sym_block_comment] = STATE(1223), + [sym_identifier] = ACTIONS(2756), + [anon_sym_LF] = ACTIONS(2756), + [anon_sym_CR] = ACTIONS(2756), + [anon_sym_CR_LF] = ACTIONS(2756), + [anon_sym_SLASH_SLASH] = ACTIONS(497), + [anon_sym_SLASH_STAR] = ACTIONS(499), + [anon_sym_SEMI] = ACTIONS(2756), + [anon_sym_DOT] = ACTIONS(2756), + [anon_sym_as] = ACTIONS(2756), + [anon_sym_LBRACE] = ACTIONS(2756), + [anon_sym_COMMA] = ACTIONS(2756), + [anon_sym_RBRACE] = ACTIONS(2756), + [anon_sym_LPAREN] = ACTIONS(2756), + [anon_sym_RPAREN] = ACTIONS(2756), + [anon_sym_PIPE] = ACTIONS(2756), + [anon_sym_fn] = ACTIONS(2756), + [anon_sym_PLUS] = ACTIONS(2756), + [anon_sym_DASH] = ACTIONS(2756), + [anon_sym_STAR] = ACTIONS(2756), + [anon_sym_SLASH] = ACTIONS(2756), + [anon_sym_PERCENT] = ACTIONS(2756), + [anon_sym_LT] = ACTIONS(2756), + [anon_sym_GT] = ACTIONS(2756), + [anon_sym_EQ_EQ] = ACTIONS(2756), + [anon_sym_BANG_EQ] = ACTIONS(2756), + [anon_sym_LT_EQ] = ACTIONS(2756), + [anon_sym_GT_EQ] = ACTIONS(2756), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2756), + [anon_sym_LBRACK] = ACTIONS(2754), + [anon_sym_struct] = ACTIONS(2756), + [anon_sym_mut] = ACTIONS(2756), + [anon_sym_PLUS_PLUS] = ACTIONS(2756), + [anon_sym_DASH_DASH] = ACTIONS(2756), + [anon_sym_QMARK] = ACTIONS(2756), + [anon_sym_BANG] = ACTIONS(2756), + [anon_sym_go] = ACTIONS(2756), + [anon_sym_spawn] = ACTIONS(2756), + [anon_sym_json_DOTdecode] = ACTIONS(2756), + [anon_sym_LBRACK2] = ACTIONS(2756), + [anon_sym_TILDE] = ACTIONS(2756), + [anon_sym_CARET] = ACTIONS(2756), + [anon_sym_AMP] = ACTIONS(2756), + [anon_sym_LT_DASH] = ACTIONS(2756), + [anon_sym_LT_LT] = ACTIONS(2756), + [anon_sym_GT_GT] = ACTIONS(2756), + [anon_sym_GT_GT_GT] = ACTIONS(2756), + [anon_sym_AMP_CARET] = ACTIONS(2756), + [anon_sym_AMP_AMP] = ACTIONS(2756), + [anon_sym_PIPE_PIPE] = ACTIONS(2756), + [anon_sym_or] = ACTIONS(2756), + [sym_none] = ACTIONS(2756), + [sym_true] = ACTIONS(2756), + [sym_false] = ACTIONS(2756), + [sym_nil] = ACTIONS(2756), + [anon_sym_QMARK_DOT] = ACTIONS(2756), + [anon_sym_POUND_LBRACK] = ACTIONS(2756), + [anon_sym_if] = ACTIONS(2756), + [anon_sym_DOLLARif] = ACTIONS(2756), + [anon_sym_is] = ACTIONS(2756), + [anon_sym_BANGis] = ACTIONS(2756), + [anon_sym_in] = ACTIONS(2756), + [anon_sym_BANGin] = ACTIONS(2756), + [anon_sym_match] = ACTIONS(2756), + [anon_sym_select] = ACTIONS(2756), + [anon_sym_lock] = ACTIONS(2756), + [anon_sym_rlock] = ACTIONS(2756), + [anon_sym_unsafe] = ACTIONS(2756), + [anon_sym_sql] = ACTIONS(2756), + [sym_int_literal] = ACTIONS(2756), + [sym_float_literal] = ACTIONS(2756), + [sym_rune_literal] = ACTIONS(2756), + [sym_pseudo_compile_time_identifier] = ACTIONS(2756), + [anon_sym_shared] = ACTIONS(2756), + [anon_sym_map_LBRACK] = ACTIONS(2756), + [anon_sym_chan] = ACTIONS(2756), + [anon_sym_thread] = ACTIONS(2756), + [anon_sym_atomic] = ACTIONS(2756), + [sym___double_quote] = ACTIONS(2756), + [sym___single_quote] = ACTIONS(2756), + [sym___c_double_quote] = ACTIONS(2756), + [sym___c_single_quote] = ACTIONS(2756), + [sym___r_double_quote] = ACTIONS(2756), + [sym___r_single_quote] = ACTIONS(2756), }, [1224] = { [sym_line_comment] = STATE(1224), [sym_block_comment] = STATE(1224), - [sym_identifier] = ACTIONS(2251), - [anon_sym_LF] = ACTIONS(2251), - [anon_sym_CR] = ACTIONS(2251), - [anon_sym_CR_LF] = ACTIONS(2251), + [sym_identifier] = ACTIONS(2203), + [anon_sym_LF] = ACTIONS(2203), + [anon_sym_CR] = ACTIONS(2203), + [anon_sym_CR_LF] = ACTIONS(2203), [anon_sym_SLASH_SLASH] = ACTIONS(497), [anon_sym_SLASH_STAR] = ACTIONS(499), - [anon_sym_SEMI] = ACTIONS(2251), - [anon_sym_DOT] = ACTIONS(2253), - [anon_sym_as] = ACTIONS(2253), - [anon_sym_LBRACE] = ACTIONS(2251), - [anon_sym_COMMA] = ACTIONS(2251), - [anon_sym_RBRACE] = ACTIONS(2251), - [anon_sym_LPAREN] = ACTIONS(2253), - [anon_sym_RPAREN] = ACTIONS(2251), - [anon_sym_PIPE] = ACTIONS(2253), - [anon_sym_fn] = ACTIONS(2251), - [anon_sym_PLUS] = ACTIONS(2253), - [anon_sym_DASH] = ACTIONS(2253), - [anon_sym_STAR] = ACTIONS(2253), - [anon_sym_SLASH] = ACTIONS(2253), - [anon_sym_PERCENT] = ACTIONS(2253), - [anon_sym_LT] = ACTIONS(2253), - [anon_sym_GT] = ACTIONS(2253), - [anon_sym_EQ_EQ] = ACTIONS(2253), - [anon_sym_BANG_EQ] = ACTIONS(2253), - [anon_sym_LT_EQ] = ACTIONS(2253), - [anon_sym_GT_EQ] = ACTIONS(2253), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2251), - [anon_sym_LBRACK] = ACTIONS(2256), - [anon_sym_struct] = ACTIONS(2251), - [anon_sym_mut] = ACTIONS(2251), - [anon_sym_PLUS_PLUS] = ACTIONS(2253), - [anon_sym_DASH_DASH] = ACTIONS(2253), - [anon_sym_QMARK] = ACTIONS(2253), - [anon_sym_BANG] = ACTIONS(2253), - [anon_sym_go] = ACTIONS(2251), - [anon_sym_spawn] = ACTIONS(2251), - [anon_sym_json_DOTdecode] = ACTIONS(2251), - [anon_sym_LBRACK2] = ACTIONS(2253), - [anon_sym_TILDE] = ACTIONS(2251), - [anon_sym_CARET] = ACTIONS(2253), - [anon_sym_AMP] = ACTIONS(2253), - [anon_sym_LT_DASH] = ACTIONS(2251), - [anon_sym_LT_LT] = ACTIONS(2253), - [anon_sym_GT_GT] = ACTIONS(2253), - [anon_sym_GT_GT_GT] = ACTIONS(2253), - [anon_sym_AMP_CARET] = ACTIONS(2253), - [anon_sym_AMP_AMP] = ACTIONS(2253), - [anon_sym_PIPE_PIPE] = ACTIONS(2253), - [anon_sym_or] = ACTIONS(2253), - [sym_none] = ACTIONS(2251), - [sym_true] = ACTIONS(2251), - [sym_false] = ACTIONS(2251), - [sym_nil] = ACTIONS(2251), - [anon_sym_QMARK_DOT] = ACTIONS(2253), - [anon_sym_POUND_LBRACK] = ACTIONS(2253), - [anon_sym_if] = ACTIONS(2251), - [anon_sym_DOLLARif] = ACTIONS(2251), - [anon_sym_is] = ACTIONS(2253), - [anon_sym_BANGis] = ACTIONS(2253), - [anon_sym_in] = ACTIONS(2253), - [anon_sym_BANGin] = ACTIONS(2253), - [anon_sym_match] = ACTIONS(2251), - [anon_sym_select] = ACTIONS(2251), - [anon_sym_lock] = ACTIONS(2251), - [anon_sym_rlock] = ACTIONS(2251), - [anon_sym_unsafe] = ACTIONS(2251), - [anon_sym_sql] = ACTIONS(2251), - [sym_int_literal] = ACTIONS(2251), - [sym_float_literal] = ACTIONS(2251), - [sym_rune_literal] = ACTIONS(2251), - [sym_pseudo_compile_time_identifier] = ACTIONS(2251), - [anon_sym_shared] = ACTIONS(2251), - [anon_sym_map_LBRACK] = ACTIONS(2251), - [anon_sym_chan] = ACTIONS(2251), - [anon_sym_thread] = ACTIONS(2251), - [anon_sym_atomic] = ACTIONS(2251), - [sym___double_quote] = ACTIONS(2251), - [sym___single_quote] = ACTIONS(2251), - [sym___c_double_quote] = ACTIONS(2251), - [sym___c_single_quote] = ACTIONS(2251), - [sym___r_double_quote] = ACTIONS(2251), - [sym___r_single_quote] = ACTIONS(2251), + [anon_sym_SEMI] = ACTIONS(2203), + [anon_sym_DOT] = ACTIONS(2203), + [anon_sym_as] = ACTIONS(2203), + [anon_sym_LBRACE] = ACTIONS(2203), + [anon_sym_COMMA] = ACTIONS(2203), + [anon_sym_RBRACE] = ACTIONS(2203), + [anon_sym_LPAREN] = ACTIONS(2203), + [anon_sym_RPAREN] = ACTIONS(2203), + [anon_sym_PIPE] = ACTIONS(2203), + [anon_sym_fn] = ACTIONS(2203), + [anon_sym_PLUS] = ACTIONS(2203), + [anon_sym_DASH] = ACTIONS(2203), + [anon_sym_STAR] = ACTIONS(2203), + [anon_sym_SLASH] = ACTIONS(2203), + [anon_sym_PERCENT] = ACTIONS(2203), + [anon_sym_LT] = ACTIONS(2203), + [anon_sym_GT] = ACTIONS(2203), + [anon_sym_EQ_EQ] = ACTIONS(2203), + [anon_sym_BANG_EQ] = ACTIONS(2203), + [anon_sym_LT_EQ] = ACTIONS(2203), + [anon_sym_GT_EQ] = ACTIONS(2203), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2203), + [anon_sym_LBRACK] = ACTIONS(2201), + [anon_sym_struct] = ACTIONS(2203), + [anon_sym_mut] = ACTIONS(2203), + [anon_sym_PLUS_PLUS] = ACTIONS(2203), + [anon_sym_DASH_DASH] = ACTIONS(2203), + [anon_sym_QMARK] = ACTIONS(2203), + [anon_sym_BANG] = ACTIONS(2203), + [anon_sym_go] = ACTIONS(2203), + [anon_sym_spawn] = ACTIONS(2203), + [anon_sym_json_DOTdecode] = ACTIONS(2203), + [anon_sym_LBRACK2] = ACTIONS(2203), + [anon_sym_TILDE] = ACTIONS(2203), + [anon_sym_CARET] = ACTIONS(2203), + [anon_sym_AMP] = ACTIONS(2203), + [anon_sym_LT_DASH] = ACTIONS(2203), + [anon_sym_LT_LT] = ACTIONS(2203), + [anon_sym_GT_GT] = ACTIONS(2203), + [anon_sym_GT_GT_GT] = ACTIONS(2203), + [anon_sym_AMP_CARET] = ACTIONS(2203), + [anon_sym_AMP_AMP] = ACTIONS(2203), + [anon_sym_PIPE_PIPE] = ACTIONS(2203), + [anon_sym_or] = ACTIONS(2203), + [sym_none] = ACTIONS(2203), + [sym_true] = ACTIONS(2203), + [sym_false] = ACTIONS(2203), + [sym_nil] = ACTIONS(2203), + [anon_sym_QMARK_DOT] = ACTIONS(2203), + [anon_sym_POUND_LBRACK] = ACTIONS(2203), + [anon_sym_if] = ACTIONS(2203), + [anon_sym_DOLLARif] = ACTIONS(2203), + [anon_sym_is] = ACTIONS(2203), + [anon_sym_BANGis] = ACTIONS(2203), + [anon_sym_in] = ACTIONS(2203), + [anon_sym_BANGin] = ACTIONS(2203), + [anon_sym_match] = ACTIONS(2203), + [anon_sym_select] = ACTIONS(2203), + [anon_sym_lock] = ACTIONS(2203), + [anon_sym_rlock] = ACTIONS(2203), + [anon_sym_unsafe] = ACTIONS(2203), + [anon_sym_sql] = ACTIONS(2203), + [sym_int_literal] = ACTIONS(2203), + [sym_float_literal] = ACTIONS(2203), + [sym_rune_literal] = ACTIONS(2203), + [sym_pseudo_compile_time_identifier] = ACTIONS(2203), + [anon_sym_shared] = ACTIONS(2203), + [anon_sym_map_LBRACK] = ACTIONS(2203), + [anon_sym_chan] = ACTIONS(2203), + [anon_sym_thread] = ACTIONS(2203), + [anon_sym_atomic] = ACTIONS(2203), + [sym___double_quote] = ACTIONS(2203), + [sym___single_quote] = ACTIONS(2203), + [sym___c_double_quote] = ACTIONS(2203), + [sym___c_single_quote] = ACTIONS(2203), + [sym___r_double_quote] = ACTIONS(2203), + [sym___r_single_quote] = ACTIONS(2203), }, [1225] = { [sym_line_comment] = STATE(1225), [sym_block_comment] = STATE(1225), - [sym_identifier] = ACTIONS(2243), - [anon_sym_LF] = ACTIONS(2243), - [anon_sym_CR] = ACTIONS(2243), - [anon_sym_CR_LF] = ACTIONS(2243), + [sym_identifier] = ACTIONS(1881), + [anon_sym_LF] = ACTIONS(1881), + [anon_sym_CR] = ACTIONS(1881), + [anon_sym_CR_LF] = ACTIONS(1881), [anon_sym_SLASH_SLASH] = ACTIONS(497), [anon_sym_SLASH_STAR] = ACTIONS(499), - [anon_sym_SEMI] = ACTIONS(2243), - [anon_sym_DOT] = ACTIONS(2243), - [anon_sym_as] = ACTIONS(2243), - [anon_sym_LBRACE] = ACTIONS(2243), - [anon_sym_COMMA] = ACTIONS(2243), - [anon_sym_RBRACE] = ACTIONS(2243), - [anon_sym_LPAREN] = ACTIONS(2243), - [anon_sym_RPAREN] = ACTIONS(2243), - [anon_sym_PIPE] = ACTIONS(2243), - [anon_sym_fn] = ACTIONS(2243), - [anon_sym_PLUS] = ACTIONS(2243), - [anon_sym_DASH] = ACTIONS(2243), - [anon_sym_STAR] = ACTIONS(2243), - [anon_sym_SLASH] = ACTIONS(2243), - [anon_sym_PERCENT] = ACTIONS(2243), - [anon_sym_LT] = ACTIONS(2243), - [anon_sym_GT] = ACTIONS(2243), - [anon_sym_EQ_EQ] = ACTIONS(2243), - [anon_sym_BANG_EQ] = ACTIONS(2243), - [anon_sym_LT_EQ] = ACTIONS(2243), - [anon_sym_GT_EQ] = ACTIONS(2243), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2243), - [anon_sym_LBRACK] = ACTIONS(2241), - [anon_sym_struct] = ACTIONS(2243), - [anon_sym_mut] = ACTIONS(2243), - [anon_sym_PLUS_PLUS] = ACTIONS(2243), - [anon_sym_DASH_DASH] = ACTIONS(2243), - [anon_sym_QMARK] = ACTIONS(2243), - [anon_sym_BANG] = ACTIONS(2243), - [anon_sym_go] = ACTIONS(2243), - [anon_sym_spawn] = ACTIONS(2243), - [anon_sym_json_DOTdecode] = ACTIONS(2243), - [anon_sym_LBRACK2] = ACTIONS(2243), - [anon_sym_TILDE] = ACTIONS(2243), - [anon_sym_CARET] = ACTIONS(2243), - [anon_sym_AMP] = ACTIONS(2243), - [anon_sym_LT_DASH] = ACTIONS(2243), - [anon_sym_LT_LT] = ACTIONS(2243), - [anon_sym_GT_GT] = ACTIONS(2243), - [anon_sym_GT_GT_GT] = ACTIONS(2243), - [anon_sym_AMP_CARET] = ACTIONS(2243), - [anon_sym_AMP_AMP] = ACTIONS(2243), - [anon_sym_PIPE_PIPE] = ACTIONS(2243), - [anon_sym_or] = ACTIONS(2243), - [sym_none] = ACTIONS(2243), - [sym_true] = ACTIONS(2243), - [sym_false] = ACTIONS(2243), - [sym_nil] = ACTIONS(2243), - [anon_sym_QMARK_DOT] = ACTIONS(2243), - [anon_sym_POUND_LBRACK] = ACTIONS(2243), - [anon_sym_if] = ACTIONS(2243), - [anon_sym_DOLLARif] = ACTIONS(2243), - [anon_sym_is] = ACTIONS(2243), - [anon_sym_BANGis] = ACTIONS(2243), - [anon_sym_in] = ACTIONS(2243), - [anon_sym_BANGin] = ACTIONS(2243), - [anon_sym_match] = ACTIONS(2243), - [anon_sym_select] = ACTIONS(2243), - [anon_sym_lock] = ACTIONS(2243), - [anon_sym_rlock] = ACTIONS(2243), - [anon_sym_unsafe] = ACTIONS(2243), - [anon_sym_sql] = ACTIONS(2243), - [sym_int_literal] = ACTIONS(2243), - [sym_float_literal] = ACTIONS(2243), - [sym_rune_literal] = ACTIONS(2243), - [sym_pseudo_compile_time_identifier] = ACTIONS(2243), - [anon_sym_shared] = ACTIONS(2243), - [anon_sym_map_LBRACK] = ACTIONS(2243), - [anon_sym_chan] = ACTIONS(2243), - [anon_sym_thread] = ACTIONS(2243), - [anon_sym_atomic] = ACTIONS(2243), - [sym___double_quote] = ACTIONS(2243), - [sym___single_quote] = ACTIONS(2243), - [sym___c_double_quote] = ACTIONS(2243), - [sym___c_single_quote] = ACTIONS(2243), - [sym___r_double_quote] = ACTIONS(2243), - [sym___r_single_quote] = ACTIONS(2243), + [anon_sym_SEMI] = ACTIONS(1881), + [anon_sym_DOT] = ACTIONS(1881), + [anon_sym_as] = ACTIONS(1881), + [anon_sym_LBRACE] = ACTIONS(1881), + [anon_sym_COMMA] = ACTIONS(1881), + [anon_sym_RBRACE] = ACTIONS(1881), + [anon_sym_LPAREN] = ACTIONS(1881), + [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(1879), + [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(1881), + [anon_sym_BANG] = ACTIONS(1881), + [anon_sym_go] = ACTIONS(1881), + [anon_sym_spawn] = ACTIONS(1881), + [anon_sym_json_DOTdecode] = ACTIONS(1881), + [anon_sym_LBRACK2] = ACTIONS(1881), + [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(1881), + [anon_sym_POUND_LBRACK] = ACTIONS(1881), + [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), }, [1226] = { [sym_line_comment] = STATE(1226), [sym_block_comment] = STATE(1226), - [sym_identifier] = ACTIONS(2772), - [anon_sym_LF] = ACTIONS(2772), - [anon_sym_CR] = ACTIONS(2772), - [anon_sym_CR_LF] = ACTIONS(2772), - [anon_sym_SLASH_SLASH] = ACTIONS(497), - [anon_sym_SLASH_STAR] = ACTIONS(499), - [anon_sym_SEMI] = ACTIONS(2772), - [anon_sym_DOT] = ACTIONS(2772), - [anon_sym_as] = ACTIONS(2772), - [anon_sym_LBRACE] = ACTIONS(2772), - [anon_sym_COMMA] = ACTIONS(2772), - [anon_sym_RBRACE] = ACTIONS(2772), - [anon_sym_LPAREN] = ACTIONS(2772), - [anon_sym_RPAREN] = ACTIONS(2772), - [anon_sym_PIPE] = ACTIONS(2772), - [anon_sym_fn] = ACTIONS(2772), - [anon_sym_PLUS] = ACTIONS(2772), - [anon_sym_DASH] = ACTIONS(2772), - [anon_sym_STAR] = ACTIONS(2772), - [anon_sym_SLASH] = ACTIONS(2772), - [anon_sym_PERCENT] = ACTIONS(2772), - [anon_sym_LT] = ACTIONS(2772), - [anon_sym_GT] = ACTIONS(2772), - [anon_sym_EQ_EQ] = ACTIONS(2772), - [anon_sym_BANG_EQ] = ACTIONS(2772), - [anon_sym_LT_EQ] = ACTIONS(2772), - [anon_sym_GT_EQ] = ACTIONS(2772), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2772), - [anon_sym_LBRACK] = ACTIONS(2770), - [anon_sym_struct] = ACTIONS(2772), - [anon_sym_mut] = ACTIONS(2772), - [anon_sym_PLUS_PLUS] = ACTIONS(2772), - [anon_sym_DASH_DASH] = ACTIONS(2772), - [anon_sym_QMARK] = ACTIONS(2772), - [anon_sym_BANG] = ACTIONS(2772), - [anon_sym_go] = ACTIONS(2772), - [anon_sym_spawn] = ACTIONS(2772), - [anon_sym_json_DOTdecode] = ACTIONS(2772), - [anon_sym_LBRACK2] = ACTIONS(2772), - [anon_sym_TILDE] = ACTIONS(2772), - [anon_sym_CARET] = ACTIONS(2772), - [anon_sym_AMP] = ACTIONS(2772), - [anon_sym_LT_DASH] = ACTIONS(2772), - [anon_sym_LT_LT] = ACTIONS(2772), - [anon_sym_GT_GT] = ACTIONS(2772), - [anon_sym_GT_GT_GT] = ACTIONS(2772), - [anon_sym_AMP_CARET] = ACTIONS(2772), - [anon_sym_AMP_AMP] = ACTIONS(2772), - [anon_sym_PIPE_PIPE] = ACTIONS(2772), - [anon_sym_or] = ACTIONS(2772), - [sym_none] = ACTIONS(2772), - [sym_true] = ACTIONS(2772), - [sym_false] = ACTIONS(2772), - [sym_nil] = ACTIONS(2772), - [anon_sym_QMARK_DOT] = ACTIONS(2772), - [anon_sym_POUND_LBRACK] = ACTIONS(2772), - [anon_sym_if] = ACTIONS(2772), - [anon_sym_DOLLARif] = ACTIONS(2772), - [anon_sym_is] = ACTIONS(2772), - [anon_sym_BANGis] = ACTIONS(2772), - [anon_sym_in] = ACTIONS(2772), - [anon_sym_BANGin] = ACTIONS(2772), - [anon_sym_match] = ACTIONS(2772), - [anon_sym_select] = ACTIONS(2772), - [anon_sym_lock] = ACTIONS(2772), - [anon_sym_rlock] = ACTIONS(2772), - [anon_sym_unsafe] = ACTIONS(2772), - [anon_sym_sql] = ACTIONS(2772), - [sym_int_literal] = ACTIONS(2772), - [sym_float_literal] = ACTIONS(2772), - [sym_rune_literal] = ACTIONS(2772), - [sym_pseudo_compile_time_identifier] = ACTIONS(2772), - [anon_sym_shared] = ACTIONS(2772), - [anon_sym_map_LBRACK] = ACTIONS(2772), - [anon_sym_chan] = ACTIONS(2772), - [anon_sym_thread] = ACTIONS(2772), - [anon_sym_atomic] = ACTIONS(2772), - [sym___double_quote] = ACTIONS(2772), - [sym___single_quote] = ACTIONS(2772), - [sym___c_double_quote] = ACTIONS(2772), - [sym___c_single_quote] = ACTIONS(2772), - [sym___r_double_quote] = ACTIONS(2772), - [sym___r_single_quote] = ACTIONS(2772), + [sym_identifier] = ACTIONS(3062), + [anon_sym_LF] = ACTIONS(3062), + [anon_sym_CR] = ACTIONS(3062), + [anon_sym_CR_LF] = ACTIONS(3062), + [anon_sym_SLASH_SLASH] = ACTIONS(497), + [anon_sym_SLASH_STAR] = ACTIONS(499), + [anon_sym_SEMI] = ACTIONS(3062), + [anon_sym_DOT] = ACTIONS(3062), + [anon_sym_as] = ACTIONS(3062), + [anon_sym_LBRACE] = ACTIONS(3062), + [anon_sym_COMMA] = ACTIONS(3062), + [anon_sym_RBRACE] = ACTIONS(3062), + [anon_sym_LPAREN] = ACTIONS(3062), + [anon_sym_RPAREN] = ACTIONS(3062), + [anon_sym_PIPE] = ACTIONS(3062), + [anon_sym_fn] = ACTIONS(3062), + [anon_sym_PLUS] = ACTIONS(3062), + [anon_sym_DASH] = ACTIONS(3062), + [anon_sym_STAR] = ACTIONS(3062), + [anon_sym_SLASH] = ACTIONS(3062), + [anon_sym_PERCENT] = ACTIONS(3062), + [anon_sym_LT] = ACTIONS(3062), + [anon_sym_GT] = ACTIONS(3062), + [anon_sym_EQ_EQ] = ACTIONS(3062), + [anon_sym_BANG_EQ] = ACTIONS(3062), + [anon_sym_LT_EQ] = ACTIONS(3062), + [anon_sym_GT_EQ] = ACTIONS(3062), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3062), + [anon_sym_LBRACK] = ACTIONS(3060), + [anon_sym_struct] = ACTIONS(3062), + [anon_sym_mut] = ACTIONS(3062), + [anon_sym_PLUS_PLUS] = ACTIONS(3062), + [anon_sym_DASH_DASH] = ACTIONS(3062), + [anon_sym_QMARK] = ACTIONS(3062), + [anon_sym_BANG] = ACTIONS(3062), + [anon_sym_go] = ACTIONS(3062), + [anon_sym_spawn] = ACTIONS(3062), + [anon_sym_json_DOTdecode] = ACTIONS(3062), + [anon_sym_LBRACK2] = ACTIONS(3062), + [anon_sym_TILDE] = ACTIONS(3062), + [anon_sym_CARET] = ACTIONS(3062), + [anon_sym_AMP] = ACTIONS(3062), + [anon_sym_LT_DASH] = ACTIONS(3062), + [anon_sym_LT_LT] = ACTIONS(3062), + [anon_sym_GT_GT] = ACTIONS(3062), + [anon_sym_GT_GT_GT] = ACTIONS(3062), + [anon_sym_AMP_CARET] = ACTIONS(3062), + [anon_sym_AMP_AMP] = ACTIONS(3062), + [anon_sym_PIPE_PIPE] = ACTIONS(3062), + [anon_sym_or] = ACTIONS(3062), + [sym_none] = ACTIONS(3062), + [sym_true] = ACTIONS(3062), + [sym_false] = ACTIONS(3062), + [sym_nil] = ACTIONS(3062), + [anon_sym_QMARK_DOT] = ACTIONS(3062), + [anon_sym_POUND_LBRACK] = ACTIONS(3062), + [anon_sym_if] = ACTIONS(3062), + [anon_sym_DOLLARif] = ACTIONS(3062), + [anon_sym_is] = ACTIONS(3062), + [anon_sym_BANGis] = ACTIONS(3062), + [anon_sym_in] = ACTIONS(3062), + [anon_sym_BANGin] = ACTIONS(3062), + [anon_sym_match] = ACTIONS(3062), + [anon_sym_select] = ACTIONS(3062), + [anon_sym_lock] = ACTIONS(3062), + [anon_sym_rlock] = ACTIONS(3062), + [anon_sym_unsafe] = ACTIONS(3062), + [anon_sym_sql] = ACTIONS(3062), + [sym_int_literal] = ACTIONS(3062), + [sym_float_literal] = ACTIONS(3062), + [sym_rune_literal] = ACTIONS(3062), + [sym_pseudo_compile_time_identifier] = ACTIONS(3062), + [anon_sym_shared] = ACTIONS(3062), + [anon_sym_map_LBRACK] = ACTIONS(3062), + [anon_sym_chan] = ACTIONS(3062), + [anon_sym_thread] = ACTIONS(3062), + [anon_sym_atomic] = ACTIONS(3062), + [sym___double_quote] = ACTIONS(3062), + [sym___single_quote] = ACTIONS(3062), + [sym___c_double_quote] = ACTIONS(3062), + [sym___c_single_quote] = ACTIONS(3062), + [sym___r_double_quote] = ACTIONS(3062), + [sym___r_single_quote] = ACTIONS(3062), }, [1227] = { [sym_line_comment] = STATE(1227), [sym_block_comment] = STATE(1227), - [sym_identifier] = ACTIONS(2749), - [anon_sym_LF] = ACTIONS(2749), - [anon_sym_CR] = ACTIONS(2749), - [anon_sym_CR_LF] = ACTIONS(2749), + [sym_identifier] = ACTIONS(2736), + [anon_sym_LF] = ACTIONS(2736), + [anon_sym_CR] = ACTIONS(2736), + [anon_sym_CR_LF] = ACTIONS(2736), [anon_sym_SLASH_SLASH] = ACTIONS(497), [anon_sym_SLASH_STAR] = ACTIONS(499), - [anon_sym_SEMI] = ACTIONS(2749), - [anon_sym_DOT] = ACTIONS(2749), - [anon_sym_as] = ACTIONS(2749), - [anon_sym_LBRACE] = ACTIONS(2749), - [anon_sym_COMMA] = ACTIONS(2749), - [anon_sym_RBRACE] = ACTIONS(2749), - [anon_sym_LPAREN] = ACTIONS(2749), - [anon_sym_RPAREN] = ACTIONS(2749), - [anon_sym_PIPE] = ACTIONS(2749), - [anon_sym_fn] = ACTIONS(2749), - [anon_sym_PLUS] = ACTIONS(2749), - [anon_sym_DASH] = ACTIONS(2749), - [anon_sym_STAR] = ACTIONS(2749), - [anon_sym_SLASH] = ACTIONS(2749), - [anon_sym_PERCENT] = ACTIONS(2749), - [anon_sym_LT] = ACTIONS(2749), - [anon_sym_GT] = ACTIONS(2749), - [anon_sym_EQ_EQ] = ACTIONS(2749), - [anon_sym_BANG_EQ] = ACTIONS(2749), - [anon_sym_LT_EQ] = ACTIONS(2749), - [anon_sym_GT_EQ] = ACTIONS(2749), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2749), - [anon_sym_LBRACK] = ACTIONS(2747), - [anon_sym_struct] = ACTIONS(2749), - [anon_sym_mut] = ACTIONS(2749), - [anon_sym_PLUS_PLUS] = ACTIONS(2749), - [anon_sym_DASH_DASH] = ACTIONS(2749), - [anon_sym_QMARK] = ACTIONS(2749), - [anon_sym_BANG] = ACTIONS(2749), - [anon_sym_go] = ACTIONS(2749), - [anon_sym_spawn] = ACTIONS(2749), - [anon_sym_json_DOTdecode] = ACTIONS(2749), - [anon_sym_LBRACK2] = ACTIONS(2749), - [anon_sym_TILDE] = ACTIONS(2749), - [anon_sym_CARET] = ACTIONS(2749), - [anon_sym_AMP] = ACTIONS(2749), - [anon_sym_LT_DASH] = ACTIONS(2749), - [anon_sym_LT_LT] = ACTIONS(2749), - [anon_sym_GT_GT] = ACTIONS(2749), - [anon_sym_GT_GT_GT] = ACTIONS(2749), - [anon_sym_AMP_CARET] = ACTIONS(2749), - [anon_sym_AMP_AMP] = ACTIONS(2749), - [anon_sym_PIPE_PIPE] = ACTIONS(2749), - [anon_sym_or] = ACTIONS(2749), - [sym_none] = ACTIONS(2749), - [sym_true] = ACTIONS(2749), - [sym_false] = ACTIONS(2749), - [sym_nil] = ACTIONS(2749), - [anon_sym_QMARK_DOT] = ACTIONS(2749), - [anon_sym_POUND_LBRACK] = ACTIONS(2749), - [anon_sym_if] = ACTIONS(2749), - [anon_sym_DOLLARif] = ACTIONS(2749), - [anon_sym_is] = ACTIONS(2749), - [anon_sym_BANGis] = ACTIONS(2749), - [anon_sym_in] = ACTIONS(2749), - [anon_sym_BANGin] = ACTIONS(2749), - [anon_sym_match] = ACTIONS(2749), - [anon_sym_select] = ACTIONS(2749), - [anon_sym_lock] = ACTIONS(2749), - [anon_sym_rlock] = ACTIONS(2749), - [anon_sym_unsafe] = ACTIONS(2749), - [anon_sym_sql] = ACTIONS(2749), - [sym_int_literal] = ACTIONS(2749), - [sym_float_literal] = ACTIONS(2749), - [sym_rune_literal] = ACTIONS(2749), - [sym_pseudo_compile_time_identifier] = ACTIONS(2749), - [anon_sym_shared] = ACTIONS(2749), - [anon_sym_map_LBRACK] = ACTIONS(2749), - [anon_sym_chan] = ACTIONS(2749), - [anon_sym_thread] = ACTIONS(2749), - [anon_sym_atomic] = ACTIONS(2749), - [sym___double_quote] = ACTIONS(2749), - [sym___single_quote] = ACTIONS(2749), - [sym___c_double_quote] = ACTIONS(2749), - [sym___c_single_quote] = ACTIONS(2749), - [sym___r_double_quote] = ACTIONS(2749), - [sym___r_single_quote] = ACTIONS(2749), + [anon_sym_SEMI] = ACTIONS(2736), + [anon_sym_DOT] = ACTIONS(2736), + [anon_sym_as] = ACTIONS(2736), + [anon_sym_LBRACE] = ACTIONS(2736), + [anon_sym_COMMA] = ACTIONS(2736), + [anon_sym_RBRACE] = ACTIONS(2736), + [anon_sym_LPAREN] = ACTIONS(2736), + [anon_sym_RPAREN] = ACTIONS(2736), + [anon_sym_PIPE] = ACTIONS(2736), + [anon_sym_fn] = ACTIONS(2736), + [anon_sym_PLUS] = ACTIONS(2736), + [anon_sym_DASH] = ACTIONS(2736), + [anon_sym_STAR] = ACTIONS(2736), + [anon_sym_SLASH] = ACTIONS(2736), + [anon_sym_PERCENT] = ACTIONS(2736), + [anon_sym_LT] = ACTIONS(2736), + [anon_sym_GT] = ACTIONS(2736), + [anon_sym_EQ_EQ] = ACTIONS(2736), + [anon_sym_BANG_EQ] = ACTIONS(2736), + [anon_sym_LT_EQ] = ACTIONS(2736), + [anon_sym_GT_EQ] = ACTIONS(2736), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2736), + [anon_sym_LBRACK] = ACTIONS(2734), + [anon_sym_struct] = ACTIONS(2736), + [anon_sym_mut] = ACTIONS(2736), + [anon_sym_PLUS_PLUS] = ACTIONS(2736), + [anon_sym_DASH_DASH] = ACTIONS(2736), + [anon_sym_QMARK] = ACTIONS(2736), + [anon_sym_BANG] = ACTIONS(2736), + [anon_sym_go] = ACTIONS(2736), + [anon_sym_spawn] = ACTIONS(2736), + [anon_sym_json_DOTdecode] = ACTIONS(2736), + [anon_sym_LBRACK2] = ACTIONS(2736), + [anon_sym_TILDE] = ACTIONS(2736), + [anon_sym_CARET] = ACTIONS(2736), + [anon_sym_AMP] = ACTIONS(2736), + [anon_sym_LT_DASH] = ACTIONS(2736), + [anon_sym_LT_LT] = ACTIONS(2736), + [anon_sym_GT_GT] = ACTIONS(2736), + [anon_sym_GT_GT_GT] = ACTIONS(2736), + [anon_sym_AMP_CARET] = ACTIONS(2736), + [anon_sym_AMP_AMP] = ACTIONS(2736), + [anon_sym_PIPE_PIPE] = ACTIONS(2736), + [anon_sym_or] = ACTIONS(2736), + [sym_none] = ACTIONS(2736), + [sym_true] = ACTIONS(2736), + [sym_false] = ACTIONS(2736), + [sym_nil] = ACTIONS(2736), + [anon_sym_QMARK_DOT] = ACTIONS(2736), + [anon_sym_POUND_LBRACK] = ACTIONS(2736), + [anon_sym_if] = ACTIONS(2736), + [anon_sym_DOLLARif] = ACTIONS(2736), + [anon_sym_is] = ACTIONS(2736), + [anon_sym_BANGis] = ACTIONS(2736), + [anon_sym_in] = ACTIONS(2736), + [anon_sym_BANGin] = ACTIONS(2736), + [anon_sym_match] = ACTIONS(2736), + [anon_sym_select] = ACTIONS(2736), + [anon_sym_lock] = ACTIONS(2736), + [anon_sym_rlock] = ACTIONS(2736), + [anon_sym_unsafe] = ACTIONS(2736), + [anon_sym_sql] = ACTIONS(2736), + [sym_int_literal] = ACTIONS(2736), + [sym_float_literal] = ACTIONS(2736), + [sym_rune_literal] = ACTIONS(2736), + [sym_pseudo_compile_time_identifier] = ACTIONS(2736), + [anon_sym_shared] = ACTIONS(2736), + [anon_sym_map_LBRACK] = ACTIONS(2736), + [anon_sym_chan] = ACTIONS(2736), + [anon_sym_thread] = ACTIONS(2736), + [anon_sym_atomic] = ACTIONS(2736), + [sym___double_quote] = ACTIONS(2736), + [sym___single_quote] = ACTIONS(2736), + [sym___c_double_quote] = ACTIONS(2736), + [sym___c_single_quote] = ACTIONS(2736), + [sym___r_double_quote] = ACTIONS(2736), + [sym___r_single_quote] = ACTIONS(2736), }, [1228] = { [sym_line_comment] = STATE(1228), [sym_block_comment] = STATE(1228), - [sym_identifier] = ACTIONS(2745), - [anon_sym_LF] = ACTIONS(2745), - [anon_sym_CR] = ACTIONS(2745), - [anon_sym_CR_LF] = ACTIONS(2745), + [sym_identifier] = ACTIONS(2315), + [anon_sym_LF] = ACTIONS(2315), + [anon_sym_CR] = ACTIONS(2315), + [anon_sym_CR_LF] = ACTIONS(2315), [anon_sym_SLASH_SLASH] = ACTIONS(497), [anon_sym_SLASH_STAR] = ACTIONS(499), - [anon_sym_SEMI] = ACTIONS(2745), - [anon_sym_DOT] = ACTIONS(2745), - [anon_sym_as] = ACTIONS(2745), - [anon_sym_LBRACE] = ACTIONS(2745), - [anon_sym_COMMA] = ACTIONS(2745), - [anon_sym_RBRACE] = ACTIONS(2745), - [anon_sym_LPAREN] = ACTIONS(2745), - [anon_sym_RPAREN] = ACTIONS(2745), - [anon_sym_PIPE] = ACTIONS(2745), - [anon_sym_fn] = ACTIONS(2745), - [anon_sym_PLUS] = ACTIONS(2745), - [anon_sym_DASH] = ACTIONS(2745), - [anon_sym_STAR] = ACTIONS(2745), - [anon_sym_SLASH] = ACTIONS(2745), - [anon_sym_PERCENT] = ACTIONS(2745), - [anon_sym_LT] = ACTIONS(2745), - [anon_sym_GT] = ACTIONS(2745), - [anon_sym_EQ_EQ] = ACTIONS(2745), - [anon_sym_BANG_EQ] = ACTIONS(2745), - [anon_sym_LT_EQ] = ACTIONS(2745), - [anon_sym_GT_EQ] = ACTIONS(2745), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2745), - [anon_sym_LBRACK] = ACTIONS(2743), - [anon_sym_struct] = ACTIONS(2745), - [anon_sym_mut] = ACTIONS(2745), - [anon_sym_PLUS_PLUS] = ACTIONS(2745), - [anon_sym_DASH_DASH] = ACTIONS(2745), - [anon_sym_QMARK] = ACTIONS(2745), - [anon_sym_BANG] = ACTIONS(2745), - [anon_sym_go] = ACTIONS(2745), - [anon_sym_spawn] = ACTIONS(2745), - [anon_sym_json_DOTdecode] = ACTIONS(2745), - [anon_sym_LBRACK2] = ACTIONS(2745), - [anon_sym_TILDE] = ACTIONS(2745), - [anon_sym_CARET] = ACTIONS(2745), - [anon_sym_AMP] = ACTIONS(2745), - [anon_sym_LT_DASH] = ACTIONS(2745), - [anon_sym_LT_LT] = ACTIONS(2745), - [anon_sym_GT_GT] = ACTIONS(2745), - [anon_sym_GT_GT_GT] = ACTIONS(2745), - [anon_sym_AMP_CARET] = ACTIONS(2745), - [anon_sym_AMP_AMP] = ACTIONS(2745), - [anon_sym_PIPE_PIPE] = ACTIONS(2745), - [anon_sym_or] = ACTIONS(2745), - [sym_none] = ACTIONS(2745), - [sym_true] = ACTIONS(2745), - [sym_false] = ACTIONS(2745), - [sym_nil] = ACTIONS(2745), - [anon_sym_QMARK_DOT] = ACTIONS(2745), - [anon_sym_POUND_LBRACK] = ACTIONS(2745), - [anon_sym_if] = ACTIONS(2745), - [anon_sym_DOLLARif] = ACTIONS(2745), - [anon_sym_is] = ACTIONS(2745), - [anon_sym_BANGis] = ACTIONS(2745), - [anon_sym_in] = ACTIONS(2745), - [anon_sym_BANGin] = ACTIONS(2745), - [anon_sym_match] = ACTIONS(2745), - [anon_sym_select] = ACTIONS(2745), - [anon_sym_lock] = ACTIONS(2745), - [anon_sym_rlock] = ACTIONS(2745), - [anon_sym_unsafe] = ACTIONS(2745), - [anon_sym_sql] = ACTIONS(2745), - [sym_int_literal] = ACTIONS(2745), - [sym_float_literal] = ACTIONS(2745), - [sym_rune_literal] = ACTIONS(2745), - [sym_pseudo_compile_time_identifier] = ACTIONS(2745), - [anon_sym_shared] = ACTIONS(2745), - [anon_sym_map_LBRACK] = ACTIONS(2745), - [anon_sym_chan] = ACTIONS(2745), - [anon_sym_thread] = ACTIONS(2745), - [anon_sym_atomic] = ACTIONS(2745), - [sym___double_quote] = ACTIONS(2745), - [sym___single_quote] = ACTIONS(2745), - [sym___c_double_quote] = ACTIONS(2745), - [sym___c_single_quote] = ACTIONS(2745), - [sym___r_double_quote] = ACTIONS(2745), - [sym___r_single_quote] = ACTIONS(2745), + [anon_sym_SEMI] = ACTIONS(2315), + [anon_sym_DOT] = ACTIONS(2315), + [anon_sym_as] = ACTIONS(2315), + [anon_sym_LBRACE] = ACTIONS(2315), + [anon_sym_COMMA] = ACTIONS(2315), + [anon_sym_RBRACE] = ACTIONS(2315), + [anon_sym_LPAREN] = ACTIONS(2315), + [anon_sym_RPAREN] = ACTIONS(2315), + [anon_sym_PIPE] = ACTIONS(2315), + [anon_sym_fn] = ACTIONS(2315), + [anon_sym_PLUS] = ACTIONS(2315), + [anon_sym_DASH] = ACTIONS(2315), + [anon_sym_STAR] = ACTIONS(2315), + [anon_sym_SLASH] = ACTIONS(2315), + [anon_sym_PERCENT] = ACTIONS(2315), + [anon_sym_LT] = ACTIONS(2315), + [anon_sym_GT] = ACTIONS(2315), + [anon_sym_EQ_EQ] = ACTIONS(2315), + [anon_sym_BANG_EQ] = ACTIONS(2315), + [anon_sym_LT_EQ] = ACTIONS(2315), + [anon_sym_GT_EQ] = ACTIONS(2315), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2315), + [anon_sym_LBRACK] = ACTIONS(2313), + [anon_sym_struct] = ACTIONS(2315), + [anon_sym_mut] = ACTIONS(2315), + [anon_sym_PLUS_PLUS] = ACTIONS(2315), + [anon_sym_DASH_DASH] = ACTIONS(2315), + [anon_sym_QMARK] = ACTIONS(2315), + [anon_sym_BANG] = ACTIONS(2315), + [anon_sym_go] = ACTIONS(2315), + [anon_sym_spawn] = ACTIONS(2315), + [anon_sym_json_DOTdecode] = ACTIONS(2315), + [anon_sym_LBRACK2] = ACTIONS(2315), + [anon_sym_TILDE] = ACTIONS(2315), + [anon_sym_CARET] = ACTIONS(2315), + [anon_sym_AMP] = ACTIONS(2315), + [anon_sym_LT_DASH] = ACTIONS(2315), + [anon_sym_LT_LT] = ACTIONS(2315), + [anon_sym_GT_GT] = ACTIONS(2315), + [anon_sym_GT_GT_GT] = ACTIONS(2315), + [anon_sym_AMP_CARET] = ACTIONS(2315), + [anon_sym_AMP_AMP] = ACTIONS(2315), + [anon_sym_PIPE_PIPE] = ACTIONS(2315), + [anon_sym_or] = ACTIONS(2315), + [sym_none] = ACTIONS(2315), + [sym_true] = ACTIONS(2315), + [sym_false] = ACTIONS(2315), + [sym_nil] = ACTIONS(2315), + [anon_sym_QMARK_DOT] = ACTIONS(2315), + [anon_sym_POUND_LBRACK] = ACTIONS(2315), + [anon_sym_if] = ACTIONS(2315), + [anon_sym_DOLLARif] = ACTIONS(2315), + [anon_sym_is] = ACTIONS(2315), + [anon_sym_BANGis] = ACTIONS(2315), + [anon_sym_in] = ACTIONS(2315), + [anon_sym_BANGin] = ACTIONS(2315), + [anon_sym_match] = ACTIONS(2315), + [anon_sym_select] = ACTIONS(2315), + [anon_sym_lock] = ACTIONS(2315), + [anon_sym_rlock] = ACTIONS(2315), + [anon_sym_unsafe] = ACTIONS(2315), + [anon_sym_sql] = ACTIONS(2315), + [sym_int_literal] = ACTIONS(2315), + [sym_float_literal] = ACTIONS(2315), + [sym_rune_literal] = ACTIONS(2315), + [sym_pseudo_compile_time_identifier] = ACTIONS(2315), + [anon_sym_shared] = ACTIONS(2315), + [anon_sym_map_LBRACK] = ACTIONS(2315), + [anon_sym_chan] = ACTIONS(2315), + [anon_sym_thread] = ACTIONS(2315), + [anon_sym_atomic] = ACTIONS(2315), + [sym___double_quote] = ACTIONS(2315), + [sym___single_quote] = ACTIONS(2315), + [sym___c_double_quote] = ACTIONS(2315), + [sym___c_single_quote] = ACTIONS(2315), + [sym___r_double_quote] = ACTIONS(2315), + [sym___r_single_quote] = ACTIONS(2315), }, [1229] = { [sym_line_comment] = STATE(1229), [sym_block_comment] = STATE(1229), - [sym_identifier] = ACTIONS(2681), - [anon_sym_LF] = ACTIONS(2681), - [anon_sym_CR] = ACTIONS(2681), - [anon_sym_CR_LF] = ACTIONS(2681), + [sym_identifier] = ACTIONS(2672), + [anon_sym_LF] = ACTIONS(2672), + [anon_sym_CR] = ACTIONS(2672), + [anon_sym_CR_LF] = ACTIONS(2672), [anon_sym_SLASH_SLASH] = ACTIONS(497), [anon_sym_SLASH_STAR] = ACTIONS(499), - [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_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(2672), + [anon_sym_DOT] = ACTIONS(2672), + [anon_sym_as] = ACTIONS(2672), + [anon_sym_LBRACE] = ACTIONS(2672), + [anon_sym_COMMA] = ACTIONS(2672), + [anon_sym_RBRACE] = ACTIONS(2672), + [anon_sym_LPAREN] = ACTIONS(2672), + [anon_sym_RPAREN] = ACTIONS(2672), + [anon_sym_PIPE] = ACTIONS(2672), + [anon_sym_fn] = ACTIONS(2672), + [anon_sym_PLUS] = ACTIONS(2672), + [anon_sym_DASH] = ACTIONS(2672), + [anon_sym_STAR] = ACTIONS(2672), + [anon_sym_SLASH] = ACTIONS(2672), + [anon_sym_PERCENT] = ACTIONS(2672), + [anon_sym_LT] = ACTIONS(2672), + [anon_sym_GT] = ACTIONS(2672), + [anon_sym_EQ_EQ] = ACTIONS(2672), + [anon_sym_BANG_EQ] = ACTIONS(2672), + [anon_sym_LT_EQ] = ACTIONS(2672), + [anon_sym_GT_EQ] = ACTIONS(2672), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2672), + [anon_sym_LBRACK] = ACTIONS(2670), + [anon_sym_struct] = ACTIONS(2672), + [anon_sym_mut] = ACTIONS(2672), + [anon_sym_PLUS_PLUS] = ACTIONS(2672), + [anon_sym_DASH_DASH] = ACTIONS(2672), + [anon_sym_QMARK] = ACTIONS(2672), + [anon_sym_BANG] = ACTIONS(2672), + [anon_sym_go] = ACTIONS(2672), + [anon_sym_spawn] = ACTIONS(2672), + [anon_sym_json_DOTdecode] = ACTIONS(2672), + [anon_sym_LBRACK2] = ACTIONS(2672), + [anon_sym_TILDE] = ACTIONS(2672), + [anon_sym_CARET] = ACTIONS(2672), + [anon_sym_AMP] = ACTIONS(2672), + [anon_sym_LT_DASH] = ACTIONS(2672), + [anon_sym_LT_LT] = ACTIONS(2672), + [anon_sym_GT_GT] = ACTIONS(2672), + [anon_sym_GT_GT_GT] = ACTIONS(2672), + [anon_sym_AMP_CARET] = ACTIONS(2672), + [anon_sym_AMP_AMP] = ACTIONS(2672), + [anon_sym_PIPE_PIPE] = ACTIONS(2672), + [anon_sym_or] = ACTIONS(2672), + [sym_none] = ACTIONS(2672), + [sym_true] = ACTIONS(2672), + [sym_false] = ACTIONS(2672), + [sym_nil] = ACTIONS(2672), + [anon_sym_QMARK_DOT] = ACTIONS(2672), + [anon_sym_POUND_LBRACK] = ACTIONS(2672), + [anon_sym_if] = ACTIONS(2672), + [anon_sym_DOLLARif] = ACTIONS(2672), + [anon_sym_is] = ACTIONS(2672), + [anon_sym_BANGis] = ACTIONS(2672), + [anon_sym_in] = ACTIONS(2672), + [anon_sym_BANGin] = ACTIONS(2672), + [anon_sym_match] = ACTIONS(2672), + [anon_sym_select] = ACTIONS(2672), + [anon_sym_lock] = ACTIONS(2672), + [anon_sym_rlock] = ACTIONS(2672), + [anon_sym_unsafe] = ACTIONS(2672), + [anon_sym_sql] = ACTIONS(2672), + [sym_int_literal] = ACTIONS(2672), + [sym_float_literal] = ACTIONS(2672), + [sym_rune_literal] = ACTIONS(2672), + [sym_pseudo_compile_time_identifier] = ACTIONS(2672), + [anon_sym_shared] = ACTIONS(2672), + [anon_sym_map_LBRACK] = ACTIONS(2672), + [anon_sym_chan] = ACTIONS(2672), + [anon_sym_thread] = ACTIONS(2672), + [anon_sym_atomic] = ACTIONS(2672), + [sym___double_quote] = ACTIONS(2672), + [sym___single_quote] = ACTIONS(2672), + [sym___c_double_quote] = ACTIONS(2672), + [sym___c_single_quote] = ACTIONS(2672), + [sym___r_double_quote] = ACTIONS(2672), + [sym___r_single_quote] = ACTIONS(2672), }, [1230] = { [sym_line_comment] = STATE(1230), [sym_block_comment] = STATE(1230), - [sym_identifier] = ACTIONS(2802), - [anon_sym_LF] = ACTIONS(2802), - [anon_sym_CR] = ACTIONS(2802), - [anon_sym_CR_LF] = ACTIONS(2802), + [sym_identifier] = ACTIONS(2217), + [anon_sym_LF] = ACTIONS(2217), + [anon_sym_CR] = ACTIONS(2217), + [anon_sym_CR_LF] = ACTIONS(2217), [anon_sym_SLASH_SLASH] = ACTIONS(497), [anon_sym_SLASH_STAR] = ACTIONS(499), - [anon_sym_SEMI] = ACTIONS(2802), - [anon_sym_DOT] = ACTIONS(2802), - [anon_sym_as] = ACTIONS(2802), - [anon_sym_LBRACE] = ACTIONS(2802), - [anon_sym_COMMA] = ACTIONS(2802), - [anon_sym_RBRACE] = ACTIONS(2802), - [anon_sym_LPAREN] = ACTIONS(2802), - [anon_sym_RPAREN] = ACTIONS(2802), - [anon_sym_PIPE] = ACTIONS(2802), - [anon_sym_fn] = ACTIONS(2802), - [anon_sym_PLUS] = ACTIONS(2802), - [anon_sym_DASH] = ACTIONS(2802), - [anon_sym_STAR] = ACTIONS(2802), - [anon_sym_SLASH] = ACTIONS(2802), - [anon_sym_PERCENT] = ACTIONS(2802), - [anon_sym_LT] = ACTIONS(2802), - [anon_sym_GT] = ACTIONS(2802), - [anon_sym_EQ_EQ] = ACTIONS(2802), - [anon_sym_BANG_EQ] = ACTIONS(2802), - [anon_sym_LT_EQ] = ACTIONS(2802), - [anon_sym_GT_EQ] = ACTIONS(2802), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2802), - [anon_sym_LBRACK] = ACTIONS(2800), - [anon_sym_struct] = ACTIONS(2802), - [anon_sym_mut] = ACTIONS(2802), - [anon_sym_PLUS_PLUS] = ACTIONS(2802), - [anon_sym_DASH_DASH] = ACTIONS(2802), - [anon_sym_QMARK] = ACTIONS(2802), - [anon_sym_BANG] = ACTIONS(2802), - [anon_sym_go] = ACTIONS(2802), - [anon_sym_spawn] = ACTIONS(2802), - [anon_sym_json_DOTdecode] = ACTIONS(2802), - [anon_sym_LBRACK2] = ACTIONS(2802), - [anon_sym_TILDE] = ACTIONS(2802), - [anon_sym_CARET] = ACTIONS(2802), - [anon_sym_AMP] = ACTIONS(2802), - [anon_sym_LT_DASH] = ACTIONS(2802), - [anon_sym_LT_LT] = ACTIONS(2802), - [anon_sym_GT_GT] = ACTIONS(2802), - [anon_sym_GT_GT_GT] = ACTIONS(2802), - [anon_sym_AMP_CARET] = ACTIONS(2802), - [anon_sym_AMP_AMP] = ACTIONS(2802), - [anon_sym_PIPE_PIPE] = ACTIONS(2802), - [anon_sym_or] = ACTIONS(2802), - [sym_none] = ACTIONS(2802), - [sym_true] = ACTIONS(2802), - [sym_false] = ACTIONS(2802), - [sym_nil] = ACTIONS(2802), - [anon_sym_QMARK_DOT] = ACTIONS(2802), - [anon_sym_POUND_LBRACK] = ACTIONS(2802), - [anon_sym_if] = ACTIONS(2802), - [anon_sym_DOLLARif] = ACTIONS(2802), - [anon_sym_is] = ACTIONS(2802), - [anon_sym_BANGis] = ACTIONS(2802), - [anon_sym_in] = ACTIONS(2802), - [anon_sym_BANGin] = ACTIONS(2802), - [anon_sym_match] = ACTIONS(2802), - [anon_sym_select] = ACTIONS(2802), - [anon_sym_lock] = ACTIONS(2802), - [anon_sym_rlock] = ACTIONS(2802), - [anon_sym_unsafe] = ACTIONS(2802), - [anon_sym_sql] = ACTIONS(2802), - [sym_int_literal] = ACTIONS(2802), - [sym_float_literal] = ACTIONS(2802), - [sym_rune_literal] = ACTIONS(2802), - [sym_pseudo_compile_time_identifier] = ACTIONS(2802), - [anon_sym_shared] = ACTIONS(2802), - [anon_sym_map_LBRACK] = ACTIONS(2802), - [anon_sym_chan] = ACTIONS(2802), - [anon_sym_thread] = ACTIONS(2802), - [anon_sym_atomic] = ACTIONS(2802), - [sym___double_quote] = ACTIONS(2802), - [sym___single_quote] = ACTIONS(2802), - [sym___c_double_quote] = ACTIONS(2802), - [sym___c_single_quote] = ACTIONS(2802), - [sym___r_double_quote] = ACTIONS(2802), - [sym___r_single_quote] = ACTIONS(2802), + [anon_sym_SEMI] = ACTIONS(2217), + [anon_sym_DOT] = ACTIONS(2219), + [anon_sym_as] = ACTIONS(2219), + [anon_sym_LBRACE] = ACTIONS(2217), + [anon_sym_COMMA] = ACTIONS(2217), + [anon_sym_RBRACE] = ACTIONS(2217), + [anon_sym_LPAREN] = ACTIONS(2219), + [anon_sym_RPAREN] = ACTIONS(2217), + [anon_sym_PIPE] = ACTIONS(2219), + [anon_sym_fn] = ACTIONS(2217), + [anon_sym_PLUS] = ACTIONS(2219), + [anon_sym_DASH] = ACTIONS(2219), + [anon_sym_STAR] = ACTIONS(2219), + [anon_sym_SLASH] = ACTIONS(2219), + [anon_sym_PERCENT] = ACTIONS(2219), + [anon_sym_LT] = ACTIONS(2219), + [anon_sym_GT] = ACTIONS(2219), + [anon_sym_EQ_EQ] = ACTIONS(2219), + [anon_sym_BANG_EQ] = ACTIONS(2219), + [anon_sym_LT_EQ] = ACTIONS(2219), + [anon_sym_GT_EQ] = ACTIONS(2219), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2217), + [anon_sym_LBRACK] = ACTIONS(2222), + [anon_sym_struct] = ACTIONS(2217), + [anon_sym_mut] = ACTIONS(2217), + [anon_sym_PLUS_PLUS] = ACTIONS(2219), + [anon_sym_DASH_DASH] = ACTIONS(2219), + [anon_sym_QMARK] = ACTIONS(2219), + [anon_sym_BANG] = ACTIONS(2219), + [anon_sym_go] = ACTIONS(2217), + [anon_sym_spawn] = ACTIONS(2217), + [anon_sym_json_DOTdecode] = ACTIONS(2217), + [anon_sym_LBRACK2] = ACTIONS(2219), + [anon_sym_TILDE] = ACTIONS(2217), + [anon_sym_CARET] = ACTIONS(2219), + [anon_sym_AMP] = ACTIONS(2219), + [anon_sym_LT_DASH] = ACTIONS(2217), + [anon_sym_LT_LT] = ACTIONS(2219), + [anon_sym_GT_GT] = ACTIONS(2219), + [anon_sym_GT_GT_GT] = ACTIONS(2219), + [anon_sym_AMP_CARET] = ACTIONS(2219), + [anon_sym_AMP_AMP] = ACTIONS(2219), + [anon_sym_PIPE_PIPE] = ACTIONS(2219), + [anon_sym_or] = ACTIONS(2219), + [sym_none] = ACTIONS(2217), + [sym_true] = ACTIONS(2217), + [sym_false] = ACTIONS(2217), + [sym_nil] = ACTIONS(2217), + [anon_sym_QMARK_DOT] = ACTIONS(2219), + [anon_sym_POUND_LBRACK] = ACTIONS(2219), + [anon_sym_if] = ACTIONS(2217), + [anon_sym_DOLLARif] = ACTIONS(2217), + [anon_sym_is] = ACTIONS(2219), + [anon_sym_BANGis] = ACTIONS(2219), + [anon_sym_in] = ACTIONS(2219), + [anon_sym_BANGin] = ACTIONS(2219), + [anon_sym_match] = ACTIONS(2217), + [anon_sym_select] = ACTIONS(2217), + [anon_sym_lock] = ACTIONS(2217), + [anon_sym_rlock] = ACTIONS(2217), + [anon_sym_unsafe] = ACTIONS(2217), + [anon_sym_sql] = ACTIONS(2217), + [sym_int_literal] = ACTIONS(2217), + [sym_float_literal] = ACTIONS(2217), + [sym_rune_literal] = ACTIONS(2217), + [sym_pseudo_compile_time_identifier] = ACTIONS(2217), + [anon_sym_shared] = ACTIONS(2217), + [anon_sym_map_LBRACK] = ACTIONS(2217), + [anon_sym_chan] = ACTIONS(2217), + [anon_sym_thread] = ACTIONS(2217), + [anon_sym_atomic] = ACTIONS(2217), + [sym___double_quote] = ACTIONS(2217), + [sym___single_quote] = ACTIONS(2217), + [sym___c_double_quote] = ACTIONS(2217), + [sym___c_single_quote] = ACTIONS(2217), + [sym___r_double_quote] = ACTIONS(2217), + [sym___r_single_quote] = ACTIONS(2217), }, [1231] = { [sym_line_comment] = STATE(1231), [sym_block_comment] = STATE(1231), - [sym_identifier] = ACTIONS(2806), - [anon_sym_LF] = ACTIONS(2806), - [anon_sym_CR] = ACTIONS(2806), - [anon_sym_CR_LF] = ACTIONS(2806), + [sym_identifier] = ACTIONS(2463), + [anon_sym_LF] = ACTIONS(2463), + [anon_sym_CR] = ACTIONS(2463), + [anon_sym_CR_LF] = ACTIONS(2463), [anon_sym_SLASH_SLASH] = ACTIONS(497), [anon_sym_SLASH_STAR] = ACTIONS(499), - [anon_sym_SEMI] = ACTIONS(2806), - [anon_sym_DOT] = ACTIONS(2806), - [anon_sym_as] = ACTIONS(2806), - [anon_sym_LBRACE] = ACTIONS(2806), - [anon_sym_COMMA] = ACTIONS(2806), - [anon_sym_RBRACE] = ACTIONS(2806), - [anon_sym_LPAREN] = ACTIONS(2806), - [anon_sym_RPAREN] = ACTIONS(2806), - [anon_sym_PIPE] = ACTIONS(2806), - [anon_sym_fn] = ACTIONS(2806), - [anon_sym_PLUS] = ACTIONS(2806), - [anon_sym_DASH] = ACTIONS(2806), - [anon_sym_STAR] = ACTIONS(2806), - [anon_sym_SLASH] = ACTIONS(2806), - [anon_sym_PERCENT] = ACTIONS(2806), - [anon_sym_LT] = ACTIONS(2806), - [anon_sym_GT] = ACTIONS(2806), - [anon_sym_EQ_EQ] = ACTIONS(2806), - [anon_sym_BANG_EQ] = ACTIONS(2806), - [anon_sym_LT_EQ] = ACTIONS(2806), - [anon_sym_GT_EQ] = ACTIONS(2806), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2806), - [anon_sym_LBRACK] = ACTIONS(2804), - [anon_sym_struct] = ACTIONS(2806), - [anon_sym_mut] = ACTIONS(2806), - [anon_sym_PLUS_PLUS] = ACTIONS(2806), - [anon_sym_DASH_DASH] = ACTIONS(2806), - [anon_sym_QMARK] = ACTIONS(2806), - [anon_sym_BANG] = ACTIONS(2806), - [anon_sym_go] = ACTIONS(2806), - [anon_sym_spawn] = ACTIONS(2806), - [anon_sym_json_DOTdecode] = ACTIONS(2806), - [anon_sym_LBRACK2] = ACTIONS(2806), - [anon_sym_TILDE] = ACTIONS(2806), - [anon_sym_CARET] = ACTIONS(2806), - [anon_sym_AMP] = ACTIONS(2806), - [anon_sym_LT_DASH] = ACTIONS(2806), - [anon_sym_LT_LT] = ACTIONS(2806), - [anon_sym_GT_GT] = ACTIONS(2806), - [anon_sym_GT_GT_GT] = ACTIONS(2806), - [anon_sym_AMP_CARET] = ACTIONS(2806), - [anon_sym_AMP_AMP] = ACTIONS(2806), - [anon_sym_PIPE_PIPE] = ACTIONS(2806), - [anon_sym_or] = ACTIONS(2806), - [sym_none] = ACTIONS(2806), - [sym_true] = ACTIONS(2806), - [sym_false] = ACTIONS(2806), - [sym_nil] = ACTIONS(2806), - [anon_sym_QMARK_DOT] = ACTIONS(2806), - [anon_sym_POUND_LBRACK] = ACTIONS(2806), - [anon_sym_if] = ACTIONS(2806), - [anon_sym_DOLLARif] = ACTIONS(2806), - [anon_sym_is] = ACTIONS(2806), - [anon_sym_BANGis] = ACTIONS(2806), - [anon_sym_in] = ACTIONS(2806), - [anon_sym_BANGin] = ACTIONS(2806), - [anon_sym_match] = ACTIONS(2806), - [anon_sym_select] = ACTIONS(2806), - [anon_sym_lock] = ACTIONS(2806), - [anon_sym_rlock] = ACTIONS(2806), - [anon_sym_unsafe] = ACTIONS(2806), - [anon_sym_sql] = ACTIONS(2806), - [sym_int_literal] = ACTIONS(2806), - [sym_float_literal] = ACTIONS(2806), - [sym_rune_literal] = ACTIONS(2806), - [sym_pseudo_compile_time_identifier] = ACTIONS(2806), - [anon_sym_shared] = ACTIONS(2806), - [anon_sym_map_LBRACK] = ACTIONS(2806), - [anon_sym_chan] = ACTIONS(2806), - [anon_sym_thread] = ACTIONS(2806), - [anon_sym_atomic] = ACTIONS(2806), - [sym___double_quote] = ACTIONS(2806), - [sym___single_quote] = ACTIONS(2806), - [sym___c_double_quote] = ACTIONS(2806), - [sym___c_single_quote] = ACTIONS(2806), - [sym___r_double_quote] = ACTIONS(2806), - [sym___r_single_quote] = ACTIONS(2806), + [anon_sym_SEMI] = ACTIONS(2463), + [anon_sym_DOT] = ACTIONS(2463), + [anon_sym_as] = ACTIONS(2463), + [anon_sym_LBRACE] = ACTIONS(2463), + [anon_sym_COMMA] = ACTIONS(2463), + [anon_sym_RBRACE] = ACTIONS(2463), + [anon_sym_LPAREN] = ACTIONS(2463), + [anon_sym_RPAREN] = ACTIONS(2463), + [anon_sym_PIPE] = ACTIONS(2463), + [anon_sym_fn] = ACTIONS(2463), + [anon_sym_PLUS] = ACTIONS(2463), + [anon_sym_DASH] = ACTIONS(2463), + [anon_sym_STAR] = ACTIONS(2463), + [anon_sym_SLASH] = ACTIONS(2463), + [anon_sym_PERCENT] = ACTIONS(2463), + [anon_sym_LT] = ACTIONS(2463), + [anon_sym_GT] = ACTIONS(2463), + [anon_sym_EQ_EQ] = ACTIONS(2463), + [anon_sym_BANG_EQ] = ACTIONS(2463), + [anon_sym_LT_EQ] = ACTIONS(2463), + [anon_sym_GT_EQ] = ACTIONS(2463), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2463), + [anon_sym_LBRACK] = ACTIONS(2461), + [anon_sym_struct] = ACTIONS(2463), + [anon_sym_mut] = ACTIONS(2463), + [anon_sym_PLUS_PLUS] = ACTIONS(2463), + [anon_sym_DASH_DASH] = ACTIONS(2463), + [anon_sym_QMARK] = ACTIONS(2463), + [anon_sym_BANG] = ACTIONS(2463), + [anon_sym_go] = ACTIONS(2463), + [anon_sym_spawn] = ACTIONS(2463), + [anon_sym_json_DOTdecode] = ACTIONS(2463), + [anon_sym_LBRACK2] = ACTIONS(2463), + [anon_sym_TILDE] = ACTIONS(2463), + [anon_sym_CARET] = ACTIONS(2463), + [anon_sym_AMP] = ACTIONS(2463), + [anon_sym_LT_DASH] = ACTIONS(2463), + [anon_sym_LT_LT] = ACTIONS(2463), + [anon_sym_GT_GT] = ACTIONS(2463), + [anon_sym_GT_GT_GT] = ACTIONS(2463), + [anon_sym_AMP_CARET] = ACTIONS(2463), + [anon_sym_AMP_AMP] = ACTIONS(2463), + [anon_sym_PIPE_PIPE] = ACTIONS(2463), + [anon_sym_or] = ACTIONS(2463), + [sym_none] = ACTIONS(2463), + [sym_true] = ACTIONS(2463), + [sym_false] = ACTIONS(2463), + [sym_nil] = ACTIONS(2463), + [anon_sym_QMARK_DOT] = ACTIONS(2463), + [anon_sym_POUND_LBRACK] = ACTIONS(2463), + [anon_sym_if] = ACTIONS(2463), + [anon_sym_DOLLARif] = ACTIONS(2463), + [anon_sym_is] = ACTIONS(2463), + [anon_sym_BANGis] = ACTIONS(2463), + [anon_sym_in] = ACTIONS(2463), + [anon_sym_BANGin] = ACTIONS(2463), + [anon_sym_match] = ACTIONS(2463), + [anon_sym_select] = ACTIONS(2463), + [anon_sym_lock] = ACTIONS(2463), + [anon_sym_rlock] = ACTIONS(2463), + [anon_sym_unsafe] = ACTIONS(2463), + [anon_sym_sql] = ACTIONS(2463), + [sym_int_literal] = ACTIONS(2463), + [sym_float_literal] = ACTIONS(2463), + [sym_rune_literal] = ACTIONS(2463), + [sym_pseudo_compile_time_identifier] = ACTIONS(2463), + [anon_sym_shared] = ACTIONS(2463), + [anon_sym_map_LBRACK] = ACTIONS(2463), + [anon_sym_chan] = ACTIONS(2463), + [anon_sym_thread] = ACTIONS(2463), + [anon_sym_atomic] = ACTIONS(2463), + [sym___double_quote] = ACTIONS(2463), + [sym___single_quote] = ACTIONS(2463), + [sym___c_double_quote] = ACTIONS(2463), + [sym___c_single_quote] = ACTIONS(2463), + [sym___r_double_quote] = ACTIONS(2463), + [sym___r_single_quote] = ACTIONS(2463), }, [1232] = { [sym_line_comment] = STATE(1232), [sym_block_comment] = STATE(1232), - [sym_identifier] = ACTIONS(2820), - [anon_sym_LF] = ACTIONS(2820), - [anon_sym_CR] = ACTIONS(2820), - [anon_sym_CR_LF] = ACTIONS(2820), + [sym_identifier] = ACTIONS(2467), + [anon_sym_LF] = ACTIONS(2467), + [anon_sym_CR] = ACTIONS(2467), + [anon_sym_CR_LF] = ACTIONS(2467), [anon_sym_SLASH_SLASH] = ACTIONS(497), [anon_sym_SLASH_STAR] = ACTIONS(499), - [anon_sym_SEMI] = ACTIONS(2820), - [anon_sym_DOT] = ACTIONS(2820), - [anon_sym_as] = ACTIONS(2820), - [anon_sym_LBRACE] = ACTIONS(2820), - [anon_sym_COMMA] = ACTIONS(2820), - [anon_sym_RBRACE] = ACTIONS(2820), - [anon_sym_LPAREN] = ACTIONS(2820), - [anon_sym_RPAREN] = ACTIONS(2820), - [anon_sym_PIPE] = ACTIONS(2820), - [anon_sym_fn] = ACTIONS(2820), - [anon_sym_PLUS] = ACTIONS(2820), - [anon_sym_DASH] = ACTIONS(2820), - [anon_sym_STAR] = ACTIONS(2820), - [anon_sym_SLASH] = ACTIONS(2820), - [anon_sym_PERCENT] = ACTIONS(2820), - [anon_sym_LT] = ACTIONS(2820), - [anon_sym_GT] = ACTIONS(2820), - [anon_sym_EQ_EQ] = ACTIONS(2820), - [anon_sym_BANG_EQ] = ACTIONS(2820), - [anon_sym_LT_EQ] = ACTIONS(2820), - [anon_sym_GT_EQ] = ACTIONS(2820), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2820), - [anon_sym_LBRACK] = ACTIONS(2818), - [anon_sym_struct] = ACTIONS(2820), - [anon_sym_mut] = ACTIONS(2820), - [anon_sym_PLUS_PLUS] = ACTIONS(2820), - [anon_sym_DASH_DASH] = ACTIONS(2820), - [anon_sym_QMARK] = ACTIONS(2820), - [anon_sym_BANG] = ACTIONS(2820), - [anon_sym_go] = ACTIONS(2820), - [anon_sym_spawn] = ACTIONS(2820), - [anon_sym_json_DOTdecode] = ACTIONS(2820), - [anon_sym_LBRACK2] = ACTIONS(2820), - [anon_sym_TILDE] = ACTIONS(2820), - [anon_sym_CARET] = ACTIONS(2820), - [anon_sym_AMP] = ACTIONS(2820), - [anon_sym_LT_DASH] = ACTIONS(2820), - [anon_sym_LT_LT] = ACTIONS(2820), - [anon_sym_GT_GT] = ACTIONS(2820), - [anon_sym_GT_GT_GT] = ACTIONS(2820), - [anon_sym_AMP_CARET] = ACTIONS(2820), - [anon_sym_AMP_AMP] = ACTIONS(2820), - [anon_sym_PIPE_PIPE] = ACTIONS(2820), - [anon_sym_or] = ACTIONS(2820), - [sym_none] = ACTIONS(2820), - [sym_true] = ACTIONS(2820), - [sym_false] = ACTIONS(2820), - [sym_nil] = ACTIONS(2820), - [anon_sym_QMARK_DOT] = ACTIONS(2820), - [anon_sym_POUND_LBRACK] = ACTIONS(2820), - [anon_sym_if] = ACTIONS(2820), - [anon_sym_DOLLARif] = ACTIONS(2820), - [anon_sym_is] = ACTIONS(2820), - [anon_sym_BANGis] = ACTIONS(2820), - [anon_sym_in] = ACTIONS(2820), - [anon_sym_BANGin] = ACTIONS(2820), - [anon_sym_match] = ACTIONS(2820), - [anon_sym_select] = ACTIONS(2820), - [anon_sym_lock] = ACTIONS(2820), - [anon_sym_rlock] = ACTIONS(2820), - [anon_sym_unsafe] = ACTIONS(2820), - [anon_sym_sql] = ACTIONS(2820), - [sym_int_literal] = ACTIONS(2820), - [sym_float_literal] = ACTIONS(2820), - [sym_rune_literal] = ACTIONS(2820), - [sym_pseudo_compile_time_identifier] = ACTIONS(2820), - [anon_sym_shared] = ACTIONS(2820), - [anon_sym_map_LBRACK] = ACTIONS(2820), - [anon_sym_chan] = ACTIONS(2820), - [anon_sym_thread] = ACTIONS(2820), - [anon_sym_atomic] = ACTIONS(2820), - [sym___double_quote] = ACTIONS(2820), - [sym___single_quote] = ACTIONS(2820), - [sym___c_double_quote] = ACTIONS(2820), - [sym___c_single_quote] = ACTIONS(2820), - [sym___r_double_quote] = ACTIONS(2820), - [sym___r_single_quote] = ACTIONS(2820), + [anon_sym_SEMI] = ACTIONS(2467), + [anon_sym_DOT] = ACTIONS(2467), + [anon_sym_as] = ACTIONS(2467), + [anon_sym_LBRACE] = ACTIONS(2467), + [anon_sym_COMMA] = ACTIONS(2467), + [anon_sym_RBRACE] = ACTIONS(2467), + [anon_sym_LPAREN] = ACTIONS(2467), + [anon_sym_RPAREN] = ACTIONS(2467), + [anon_sym_PIPE] = ACTIONS(2467), + [anon_sym_fn] = ACTIONS(2467), + [anon_sym_PLUS] = ACTIONS(2467), + [anon_sym_DASH] = ACTIONS(2467), + [anon_sym_STAR] = ACTIONS(2467), + [anon_sym_SLASH] = ACTIONS(2467), + [anon_sym_PERCENT] = ACTIONS(2467), + [anon_sym_LT] = ACTIONS(2467), + [anon_sym_GT] = ACTIONS(2467), + [anon_sym_EQ_EQ] = ACTIONS(2467), + [anon_sym_BANG_EQ] = ACTIONS(2467), + [anon_sym_LT_EQ] = ACTIONS(2467), + [anon_sym_GT_EQ] = ACTIONS(2467), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2467), + [anon_sym_LBRACK] = ACTIONS(2465), + [anon_sym_struct] = ACTIONS(2467), + [anon_sym_mut] = ACTIONS(2467), + [anon_sym_PLUS_PLUS] = ACTIONS(2467), + [anon_sym_DASH_DASH] = ACTIONS(2467), + [anon_sym_QMARK] = ACTIONS(2467), + [anon_sym_BANG] = ACTIONS(2467), + [anon_sym_go] = ACTIONS(2467), + [anon_sym_spawn] = ACTIONS(2467), + [anon_sym_json_DOTdecode] = ACTIONS(2467), + [anon_sym_LBRACK2] = ACTIONS(2467), + [anon_sym_TILDE] = ACTIONS(2467), + [anon_sym_CARET] = ACTIONS(2467), + [anon_sym_AMP] = ACTIONS(2467), + [anon_sym_LT_DASH] = ACTIONS(2467), + [anon_sym_LT_LT] = ACTIONS(2467), + [anon_sym_GT_GT] = ACTIONS(2467), + [anon_sym_GT_GT_GT] = ACTIONS(2467), + [anon_sym_AMP_CARET] = ACTIONS(2467), + [anon_sym_AMP_AMP] = ACTIONS(2467), + [anon_sym_PIPE_PIPE] = ACTIONS(2467), + [anon_sym_or] = ACTIONS(2467), + [sym_none] = ACTIONS(2467), + [sym_true] = ACTIONS(2467), + [sym_false] = ACTIONS(2467), + [sym_nil] = ACTIONS(2467), + [anon_sym_QMARK_DOT] = ACTIONS(2467), + [anon_sym_POUND_LBRACK] = ACTIONS(2467), + [anon_sym_if] = ACTIONS(2467), + [anon_sym_DOLLARif] = ACTIONS(2467), + [anon_sym_is] = ACTIONS(2467), + [anon_sym_BANGis] = ACTIONS(2467), + [anon_sym_in] = ACTIONS(2467), + [anon_sym_BANGin] = ACTIONS(2467), + [anon_sym_match] = ACTIONS(2467), + [anon_sym_select] = ACTIONS(2467), + [anon_sym_lock] = ACTIONS(2467), + [anon_sym_rlock] = ACTIONS(2467), + [anon_sym_unsafe] = ACTIONS(2467), + [anon_sym_sql] = ACTIONS(2467), + [sym_int_literal] = ACTIONS(2467), + [sym_float_literal] = ACTIONS(2467), + [sym_rune_literal] = ACTIONS(2467), + [sym_pseudo_compile_time_identifier] = ACTIONS(2467), + [anon_sym_shared] = ACTIONS(2467), + [anon_sym_map_LBRACK] = ACTIONS(2467), + [anon_sym_chan] = ACTIONS(2467), + [anon_sym_thread] = ACTIONS(2467), + [anon_sym_atomic] = ACTIONS(2467), + [sym___double_quote] = ACTIONS(2467), + [sym___single_quote] = ACTIONS(2467), + [sym___c_double_quote] = ACTIONS(2467), + [sym___c_single_quote] = ACTIONS(2467), + [sym___r_double_quote] = ACTIONS(2467), + [sym___r_single_quote] = ACTIONS(2467), }, [1233] = { [sym_line_comment] = STATE(1233), [sym_block_comment] = STATE(1233), - [sym_identifier] = ACTIONS(2916), - [anon_sym_LF] = ACTIONS(2916), - [anon_sym_CR] = ACTIONS(2916), - [anon_sym_CR_LF] = ACTIONS(2916), + [sym_identifier] = ACTIONS(2513), + [anon_sym_LF] = ACTIONS(2513), + [anon_sym_CR] = ACTIONS(2513), + [anon_sym_CR_LF] = ACTIONS(2513), [anon_sym_SLASH_SLASH] = ACTIONS(497), [anon_sym_SLASH_STAR] = ACTIONS(499), - [anon_sym_SEMI] = ACTIONS(2916), - [anon_sym_DOT] = ACTIONS(2916), - [anon_sym_as] = ACTIONS(2916), - [anon_sym_LBRACE] = ACTIONS(2916), - [anon_sym_COMMA] = ACTIONS(2916), - [anon_sym_RBRACE] = ACTIONS(2916), - [anon_sym_LPAREN] = ACTIONS(2916), - [anon_sym_RPAREN] = ACTIONS(2916), - [anon_sym_PIPE] = ACTIONS(2916), - [anon_sym_fn] = ACTIONS(2916), - [anon_sym_PLUS] = ACTIONS(2916), - [anon_sym_DASH] = ACTIONS(2916), - [anon_sym_STAR] = ACTIONS(2916), - [anon_sym_SLASH] = ACTIONS(2916), - [anon_sym_PERCENT] = ACTIONS(2916), - [anon_sym_LT] = ACTIONS(2916), - [anon_sym_GT] = ACTIONS(2916), - [anon_sym_EQ_EQ] = ACTIONS(2916), - [anon_sym_BANG_EQ] = ACTIONS(2916), - [anon_sym_LT_EQ] = ACTIONS(2916), - [anon_sym_GT_EQ] = ACTIONS(2916), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2916), - [anon_sym_LBRACK] = ACTIONS(2914), - [anon_sym_struct] = ACTIONS(2916), - [anon_sym_mut] = ACTIONS(2916), - [anon_sym_PLUS_PLUS] = ACTIONS(2916), - [anon_sym_DASH_DASH] = ACTIONS(2916), - [anon_sym_QMARK] = ACTIONS(2916), - [anon_sym_BANG] = ACTIONS(2916), - [anon_sym_go] = ACTIONS(2916), - [anon_sym_spawn] = ACTIONS(2916), - [anon_sym_json_DOTdecode] = ACTIONS(2916), - [anon_sym_LBRACK2] = ACTIONS(2916), - [anon_sym_TILDE] = ACTIONS(2916), - [anon_sym_CARET] = ACTIONS(2916), - [anon_sym_AMP] = ACTIONS(2916), - [anon_sym_LT_DASH] = ACTIONS(2916), - [anon_sym_LT_LT] = ACTIONS(2916), - [anon_sym_GT_GT] = ACTIONS(2916), - [anon_sym_GT_GT_GT] = ACTIONS(2916), - [anon_sym_AMP_CARET] = ACTIONS(2916), - [anon_sym_AMP_AMP] = ACTIONS(2916), - [anon_sym_PIPE_PIPE] = ACTIONS(2916), - [anon_sym_or] = ACTIONS(2916), - [sym_none] = ACTIONS(2916), - [sym_true] = ACTIONS(2916), - [sym_false] = ACTIONS(2916), - [sym_nil] = ACTIONS(2916), - [anon_sym_QMARK_DOT] = ACTIONS(2916), - [anon_sym_POUND_LBRACK] = ACTIONS(2916), - [anon_sym_if] = ACTIONS(2916), - [anon_sym_DOLLARif] = ACTIONS(2916), - [anon_sym_is] = ACTIONS(2916), - [anon_sym_BANGis] = ACTIONS(2916), - [anon_sym_in] = ACTIONS(2916), - [anon_sym_BANGin] = ACTIONS(2916), - [anon_sym_match] = ACTIONS(2916), - [anon_sym_select] = ACTIONS(2916), - [anon_sym_lock] = ACTIONS(2916), - [anon_sym_rlock] = ACTIONS(2916), - [anon_sym_unsafe] = ACTIONS(2916), - [anon_sym_sql] = ACTIONS(2916), - [sym_int_literal] = ACTIONS(2916), - [sym_float_literal] = ACTIONS(2916), - [sym_rune_literal] = ACTIONS(2916), - [sym_pseudo_compile_time_identifier] = ACTIONS(2916), - [anon_sym_shared] = ACTIONS(2916), - [anon_sym_map_LBRACK] = ACTIONS(2916), - [anon_sym_chan] = ACTIONS(2916), - [anon_sym_thread] = ACTIONS(2916), - [anon_sym_atomic] = ACTIONS(2916), - [sym___double_quote] = ACTIONS(2916), - [sym___single_quote] = ACTIONS(2916), - [sym___c_double_quote] = ACTIONS(2916), - [sym___c_single_quote] = ACTIONS(2916), - [sym___r_double_quote] = ACTIONS(2916), - [sym___r_single_quote] = ACTIONS(2916), + [anon_sym_SEMI] = ACTIONS(2513), + [anon_sym_DOT] = ACTIONS(2515), + [anon_sym_as] = ACTIONS(2513), + [anon_sym_LBRACE] = ACTIONS(2513), + [anon_sym_COMMA] = ACTIONS(2513), + [anon_sym_RBRACE] = ACTIONS(2513), + [anon_sym_LPAREN] = ACTIONS(2513), + [anon_sym_RPAREN] = ACTIONS(2513), + [anon_sym_PIPE] = ACTIONS(2513), + [anon_sym_fn] = ACTIONS(2513), + [anon_sym_PLUS] = ACTIONS(2513), + [anon_sym_DASH] = ACTIONS(2513), + [anon_sym_STAR] = ACTIONS(2513), + [anon_sym_SLASH] = ACTIONS(2513), + [anon_sym_PERCENT] = ACTIONS(2513), + [anon_sym_LT] = ACTIONS(2513), + [anon_sym_GT] = ACTIONS(2513), + [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_DOT_DOT_DOT] = ACTIONS(2513), + [anon_sym_LBRACK] = ACTIONS(2511), + [anon_sym_struct] = ACTIONS(2513), + [anon_sym_mut] = ACTIONS(2513), + [anon_sym_PLUS_PLUS] = ACTIONS(2513), + [anon_sym_DASH_DASH] = ACTIONS(2513), + [anon_sym_QMARK] = ACTIONS(2513), + [anon_sym_BANG] = ACTIONS(2513), + [anon_sym_go] = ACTIONS(2513), + [anon_sym_spawn] = ACTIONS(2513), + [anon_sym_json_DOTdecode] = ACTIONS(2513), + [anon_sym_LBRACK2] = ACTIONS(2513), + [anon_sym_TILDE] = ACTIONS(2513), + [anon_sym_CARET] = ACTIONS(2513), + [anon_sym_AMP] = ACTIONS(2513), + [anon_sym_LT_DASH] = ACTIONS(2513), + [anon_sym_LT_LT] = ACTIONS(2513), + [anon_sym_GT_GT] = ACTIONS(2513), + [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(2513), + [sym_none] = ACTIONS(2513), + [sym_true] = ACTIONS(2513), + [sym_false] = ACTIONS(2513), + [sym_nil] = ACTIONS(2513), + [anon_sym_QMARK_DOT] = ACTIONS(2513), + [anon_sym_POUND_LBRACK] = ACTIONS(2513), + [anon_sym_if] = ACTIONS(2513), + [anon_sym_DOLLARif] = ACTIONS(2513), + [anon_sym_is] = ACTIONS(2513), + [anon_sym_BANGis] = ACTIONS(2513), + [anon_sym_in] = ACTIONS(2513), + [anon_sym_BANGin] = ACTIONS(2513), + [anon_sym_match] = ACTIONS(2513), + [anon_sym_select] = ACTIONS(2513), + [anon_sym_lock] = ACTIONS(2513), + [anon_sym_rlock] = ACTIONS(2513), + [anon_sym_unsafe] = ACTIONS(2513), + [anon_sym_sql] = ACTIONS(2513), + [sym_int_literal] = ACTIONS(2513), + [sym_float_literal] = ACTIONS(2513), + [sym_rune_literal] = ACTIONS(2513), + [sym_pseudo_compile_time_identifier] = ACTIONS(2513), + [anon_sym_shared] = ACTIONS(2513), + [anon_sym_map_LBRACK] = ACTIONS(2513), + [anon_sym_chan] = ACTIONS(2513), + [anon_sym_thread] = ACTIONS(2513), + [anon_sym_atomic] = ACTIONS(2513), + [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), }, [1234] = { [sym_line_comment] = STATE(1234), [sym_block_comment] = STATE(1234), - [sym_identifier] = ACTIONS(2667), - [anon_sym_LF] = ACTIONS(2667), - [anon_sym_CR] = ACTIONS(2667), - [anon_sym_CR_LF] = ACTIONS(2667), + [sym_identifier] = ACTIONS(2505), + [anon_sym_LF] = ACTIONS(2505), + [anon_sym_CR] = ACTIONS(2505), + [anon_sym_CR_LF] = ACTIONS(2505), [anon_sym_SLASH_SLASH] = ACTIONS(497), [anon_sym_SLASH_STAR] = ACTIONS(499), - [anon_sym_SEMI] = ACTIONS(2667), - [anon_sym_DOT] = ACTIONS(2667), - [anon_sym_as] = ACTIONS(2667), - [anon_sym_LBRACE] = ACTIONS(2667), - [anon_sym_COMMA] = ACTIONS(2667), - [anon_sym_RBRACE] = ACTIONS(2667), - [anon_sym_LPAREN] = ACTIONS(2667), - [anon_sym_RPAREN] = ACTIONS(2667), - [anon_sym_PIPE] = ACTIONS(2667), - [anon_sym_fn] = ACTIONS(2667), - [anon_sym_PLUS] = ACTIONS(2667), - [anon_sym_DASH] = ACTIONS(2667), - [anon_sym_STAR] = ACTIONS(2667), - [anon_sym_SLASH] = ACTIONS(2667), - [anon_sym_PERCENT] = ACTIONS(2667), - [anon_sym_LT] = ACTIONS(2667), - [anon_sym_GT] = ACTIONS(2667), - [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_DOT_DOT_DOT] = ACTIONS(2667), - [anon_sym_LBRACK] = ACTIONS(2665), - [anon_sym_struct] = ACTIONS(2667), - [anon_sym_mut] = ACTIONS(2667), - [anon_sym_PLUS_PLUS] = ACTIONS(2667), - [anon_sym_DASH_DASH] = ACTIONS(2667), - [anon_sym_QMARK] = ACTIONS(2667), - [anon_sym_BANG] = ACTIONS(2667), - [anon_sym_go] = ACTIONS(2667), - [anon_sym_spawn] = ACTIONS(2667), - [anon_sym_json_DOTdecode] = ACTIONS(2667), - [anon_sym_LBRACK2] = ACTIONS(2667), - [anon_sym_TILDE] = ACTIONS(2667), - [anon_sym_CARET] = ACTIONS(2667), - [anon_sym_AMP] = ACTIONS(2667), - [anon_sym_LT_DASH] = ACTIONS(2667), - [anon_sym_LT_LT] = ACTIONS(2667), - [anon_sym_GT_GT] = ACTIONS(2667), - [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(2667), - [sym_none] = ACTIONS(2667), - [sym_true] = ACTIONS(2667), - [sym_false] = ACTIONS(2667), - [sym_nil] = ACTIONS(2667), - [anon_sym_QMARK_DOT] = ACTIONS(2667), - [anon_sym_POUND_LBRACK] = ACTIONS(2667), - [anon_sym_if] = ACTIONS(2667), - [anon_sym_DOLLARif] = ACTIONS(2667), - [anon_sym_is] = ACTIONS(2667), - [anon_sym_BANGis] = ACTIONS(2667), - [anon_sym_in] = ACTIONS(2667), - [anon_sym_BANGin] = ACTIONS(2667), - [anon_sym_match] = ACTIONS(2667), - [anon_sym_select] = ACTIONS(2667), - [anon_sym_lock] = ACTIONS(2667), - [anon_sym_rlock] = ACTIONS(2667), - [anon_sym_unsafe] = ACTIONS(2667), - [anon_sym_sql] = ACTIONS(2667), - [sym_int_literal] = ACTIONS(2667), - [sym_float_literal] = ACTIONS(2667), - [sym_rune_literal] = ACTIONS(2667), - [sym_pseudo_compile_time_identifier] = ACTIONS(2667), - [anon_sym_shared] = ACTIONS(2667), - [anon_sym_map_LBRACK] = ACTIONS(2667), - [anon_sym_chan] = ACTIONS(2667), - [anon_sym_thread] = ACTIONS(2667), - [anon_sym_atomic] = ACTIONS(2667), - [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_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_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), }, [1235] = { [sym_line_comment] = STATE(1235), [sym_block_comment] = STATE(1235), - [sym_identifier] = ACTIONS(2655), - [anon_sym_LF] = ACTIONS(2655), - [anon_sym_CR] = ACTIONS(2655), - [anon_sym_CR_LF] = ACTIONS(2655), + [sym_identifier] = ACTIONS(2696), + [anon_sym_LF] = ACTIONS(2696), + [anon_sym_CR] = ACTIONS(2696), + [anon_sym_CR_LF] = ACTIONS(2696), [anon_sym_SLASH_SLASH] = ACTIONS(497), [anon_sym_SLASH_STAR] = ACTIONS(499), - [anon_sym_SEMI] = ACTIONS(2655), - [anon_sym_DOT] = ACTIONS(2655), - [anon_sym_as] = ACTIONS(2655), - [anon_sym_LBRACE] = ACTIONS(2655), - [anon_sym_COMMA] = ACTIONS(2655), - [anon_sym_RBRACE] = ACTIONS(2655), - [anon_sym_LPAREN] = ACTIONS(2655), - [anon_sym_RPAREN] = ACTIONS(2655), - [anon_sym_PIPE] = ACTIONS(2655), - [anon_sym_fn] = ACTIONS(2655), - [anon_sym_PLUS] = ACTIONS(2655), - [anon_sym_DASH] = ACTIONS(2655), - [anon_sym_STAR] = ACTIONS(2655), - [anon_sym_SLASH] = ACTIONS(2655), - [anon_sym_PERCENT] = ACTIONS(2655), - [anon_sym_LT] = ACTIONS(2655), - [anon_sym_GT] = ACTIONS(2655), - [anon_sym_EQ_EQ] = ACTIONS(2655), - [anon_sym_BANG_EQ] = ACTIONS(2655), - [anon_sym_LT_EQ] = ACTIONS(2655), - [anon_sym_GT_EQ] = ACTIONS(2655), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2655), - [anon_sym_LBRACK] = ACTIONS(2653), - [anon_sym_struct] = ACTIONS(2655), - [anon_sym_mut] = ACTIONS(2655), - [anon_sym_PLUS_PLUS] = ACTIONS(2655), - [anon_sym_DASH_DASH] = ACTIONS(2655), - [anon_sym_QMARK] = ACTIONS(2655), - [anon_sym_BANG] = ACTIONS(2655), - [anon_sym_go] = ACTIONS(2655), - [anon_sym_spawn] = ACTIONS(2655), - [anon_sym_json_DOTdecode] = ACTIONS(2655), - [anon_sym_LBRACK2] = ACTIONS(2655), - [anon_sym_TILDE] = ACTIONS(2655), - [anon_sym_CARET] = ACTIONS(2655), - [anon_sym_AMP] = ACTIONS(2655), - [anon_sym_LT_DASH] = ACTIONS(2655), - [anon_sym_LT_LT] = ACTIONS(2655), - [anon_sym_GT_GT] = ACTIONS(2655), - [anon_sym_GT_GT_GT] = ACTIONS(2655), - [anon_sym_AMP_CARET] = ACTIONS(2655), - [anon_sym_AMP_AMP] = ACTIONS(2655), - [anon_sym_PIPE_PIPE] = ACTIONS(2655), - [anon_sym_or] = ACTIONS(2655), - [sym_none] = ACTIONS(2655), - [sym_true] = ACTIONS(2655), - [sym_false] = ACTIONS(2655), - [sym_nil] = ACTIONS(2655), - [anon_sym_QMARK_DOT] = ACTIONS(2655), - [anon_sym_POUND_LBRACK] = ACTIONS(2655), - [anon_sym_if] = ACTIONS(2655), - [anon_sym_DOLLARif] = ACTIONS(2655), - [anon_sym_is] = ACTIONS(2655), - [anon_sym_BANGis] = ACTIONS(2655), - [anon_sym_in] = ACTIONS(2655), - [anon_sym_BANGin] = ACTIONS(2655), - [anon_sym_match] = ACTIONS(2655), - [anon_sym_select] = ACTIONS(2655), - [anon_sym_lock] = ACTIONS(2655), - [anon_sym_rlock] = ACTIONS(2655), - [anon_sym_unsafe] = ACTIONS(2655), - [anon_sym_sql] = ACTIONS(2655), - [sym_int_literal] = ACTIONS(2655), - [sym_float_literal] = ACTIONS(2655), - [sym_rune_literal] = ACTIONS(2655), - [sym_pseudo_compile_time_identifier] = ACTIONS(2655), - [anon_sym_shared] = ACTIONS(2655), - [anon_sym_map_LBRACK] = ACTIONS(2655), - [anon_sym_chan] = ACTIONS(2655), - [anon_sym_thread] = ACTIONS(2655), - [anon_sym_atomic] = ACTIONS(2655), - [sym___double_quote] = ACTIONS(2655), - [sym___single_quote] = ACTIONS(2655), - [sym___c_double_quote] = ACTIONS(2655), - [sym___c_single_quote] = ACTIONS(2655), - [sym___r_double_quote] = ACTIONS(2655), - [sym___r_single_quote] = ACTIONS(2655), + [anon_sym_SEMI] = ACTIONS(2696), + [anon_sym_DOT] = ACTIONS(2696), + [anon_sym_as] = ACTIONS(2696), + [anon_sym_LBRACE] = ACTIONS(2696), + [anon_sym_COMMA] = ACTIONS(2696), + [anon_sym_RBRACE] = ACTIONS(2696), + [anon_sym_LPAREN] = ACTIONS(2696), + [anon_sym_RPAREN] = ACTIONS(2696), + [anon_sym_PIPE] = ACTIONS(2696), + [anon_sym_fn] = ACTIONS(2696), + [anon_sym_PLUS] = ACTIONS(2696), + [anon_sym_DASH] = ACTIONS(2696), + [anon_sym_STAR] = ACTIONS(2696), + [anon_sym_SLASH] = ACTIONS(2696), + [anon_sym_PERCENT] = ACTIONS(2696), + [anon_sym_LT] = ACTIONS(2696), + [anon_sym_GT] = ACTIONS(2696), + [anon_sym_EQ_EQ] = ACTIONS(2696), + [anon_sym_BANG_EQ] = ACTIONS(2696), + [anon_sym_LT_EQ] = ACTIONS(2696), + [anon_sym_GT_EQ] = ACTIONS(2696), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2696), + [anon_sym_LBRACK] = ACTIONS(2694), + [anon_sym_struct] = ACTIONS(2696), + [anon_sym_mut] = ACTIONS(2696), + [anon_sym_PLUS_PLUS] = ACTIONS(2696), + [anon_sym_DASH_DASH] = ACTIONS(2696), + [anon_sym_QMARK] = ACTIONS(2696), + [anon_sym_BANG] = ACTIONS(2696), + [anon_sym_go] = ACTIONS(2696), + [anon_sym_spawn] = ACTIONS(2696), + [anon_sym_json_DOTdecode] = ACTIONS(2696), + [anon_sym_LBRACK2] = ACTIONS(2696), + [anon_sym_TILDE] = ACTIONS(2696), + [anon_sym_CARET] = ACTIONS(2696), + [anon_sym_AMP] = ACTIONS(2696), + [anon_sym_LT_DASH] = ACTIONS(2696), + [anon_sym_LT_LT] = ACTIONS(2696), + [anon_sym_GT_GT] = ACTIONS(2696), + [anon_sym_GT_GT_GT] = ACTIONS(2696), + [anon_sym_AMP_CARET] = ACTIONS(2696), + [anon_sym_AMP_AMP] = ACTIONS(2696), + [anon_sym_PIPE_PIPE] = ACTIONS(2696), + [anon_sym_or] = ACTIONS(2696), + [sym_none] = ACTIONS(2696), + [sym_true] = ACTIONS(2696), + [sym_false] = ACTIONS(2696), + [sym_nil] = ACTIONS(2696), + [anon_sym_QMARK_DOT] = ACTIONS(2696), + [anon_sym_POUND_LBRACK] = ACTIONS(2696), + [anon_sym_if] = ACTIONS(2696), + [anon_sym_DOLLARif] = ACTIONS(2696), + [anon_sym_is] = ACTIONS(2696), + [anon_sym_BANGis] = ACTIONS(2696), + [anon_sym_in] = ACTIONS(2696), + [anon_sym_BANGin] = ACTIONS(2696), + [anon_sym_match] = ACTIONS(2696), + [anon_sym_select] = ACTIONS(2696), + [anon_sym_lock] = ACTIONS(2696), + [anon_sym_rlock] = ACTIONS(2696), + [anon_sym_unsafe] = ACTIONS(2696), + [anon_sym_sql] = ACTIONS(2696), + [sym_int_literal] = ACTIONS(2696), + [sym_float_literal] = ACTIONS(2696), + [sym_rune_literal] = ACTIONS(2696), + [sym_pseudo_compile_time_identifier] = ACTIONS(2696), + [anon_sym_shared] = ACTIONS(2696), + [anon_sym_map_LBRACK] = ACTIONS(2696), + [anon_sym_chan] = ACTIONS(2696), + [anon_sym_thread] = ACTIONS(2696), + [anon_sym_atomic] = ACTIONS(2696), + [sym___double_quote] = ACTIONS(2696), + [sym___single_quote] = ACTIONS(2696), + [sym___c_double_quote] = ACTIONS(2696), + [sym___c_single_quote] = ACTIONS(2696), + [sym___r_double_quote] = ACTIONS(2696), + [sym___r_single_quote] = ACTIONS(2696), }, [1236] = { [sym_line_comment] = STATE(1236), [sym_block_comment] = STATE(1236), - [sym_identifier] = ACTIONS(2761), - [anon_sym_LF] = ACTIONS(2761), - [anon_sym_CR] = ACTIONS(2761), - [anon_sym_CR_LF] = ACTIONS(2761), + [sym_identifier] = ACTIONS(2854), + [anon_sym_LF] = ACTIONS(2854), + [anon_sym_CR] = ACTIONS(2854), + [anon_sym_CR_LF] = ACTIONS(2854), [anon_sym_SLASH_SLASH] = ACTIONS(497), [anon_sym_SLASH_STAR] = ACTIONS(499), - [anon_sym_SEMI] = ACTIONS(2761), - [anon_sym_DOT] = ACTIONS(2763), - [anon_sym_as] = ACTIONS(2761), - [anon_sym_LBRACE] = ACTIONS(2761), - [anon_sym_COMMA] = 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_COLON] = ACTIONS(3811), - [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(2854), + [anon_sym_DOT] = ACTIONS(2854), + [anon_sym_as] = ACTIONS(2854), + [anon_sym_LBRACE] = ACTIONS(2854), + [anon_sym_COMMA] = ACTIONS(2854), + [anon_sym_RBRACE] = ACTIONS(2854), + [anon_sym_LPAREN] = ACTIONS(2854), + [anon_sym_RPAREN] = ACTIONS(2854), + [anon_sym_PIPE] = ACTIONS(2854), + [anon_sym_fn] = ACTIONS(2854), + [anon_sym_PLUS] = ACTIONS(2854), + [anon_sym_DASH] = ACTIONS(2854), + [anon_sym_STAR] = ACTIONS(2854), + [anon_sym_SLASH] = ACTIONS(2854), + [anon_sym_PERCENT] = ACTIONS(2854), + [anon_sym_LT] = ACTIONS(2854), + [anon_sym_GT] = ACTIONS(2854), + [anon_sym_EQ_EQ] = ACTIONS(2854), + [anon_sym_BANG_EQ] = ACTIONS(2854), + [anon_sym_LT_EQ] = ACTIONS(2854), + [anon_sym_GT_EQ] = ACTIONS(2854), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2854), + [anon_sym_LBRACK] = ACTIONS(2852), + [anon_sym_struct] = ACTIONS(2854), + [anon_sym_mut] = ACTIONS(2854), + [anon_sym_PLUS_PLUS] = ACTIONS(2854), + [anon_sym_DASH_DASH] = ACTIONS(2854), + [anon_sym_QMARK] = ACTIONS(2854), + [anon_sym_BANG] = ACTIONS(2854), + [anon_sym_go] = ACTIONS(2854), + [anon_sym_spawn] = ACTIONS(2854), + [anon_sym_json_DOTdecode] = ACTIONS(2854), + [anon_sym_LBRACK2] = ACTIONS(2854), + [anon_sym_TILDE] = ACTIONS(2854), + [anon_sym_CARET] = ACTIONS(2854), + [anon_sym_AMP] = ACTIONS(2854), + [anon_sym_LT_DASH] = ACTIONS(2854), + [anon_sym_LT_LT] = ACTIONS(2854), + [anon_sym_GT_GT] = ACTIONS(2854), + [anon_sym_GT_GT_GT] = ACTIONS(2854), + [anon_sym_AMP_CARET] = ACTIONS(2854), + [anon_sym_AMP_AMP] = ACTIONS(2854), + [anon_sym_PIPE_PIPE] = ACTIONS(2854), + [anon_sym_or] = ACTIONS(2854), + [sym_none] = ACTIONS(2854), + [sym_true] = ACTIONS(2854), + [sym_false] = ACTIONS(2854), + [sym_nil] = ACTIONS(2854), + [anon_sym_QMARK_DOT] = ACTIONS(2854), + [anon_sym_POUND_LBRACK] = ACTIONS(2854), + [anon_sym_if] = ACTIONS(2854), + [anon_sym_DOLLARif] = ACTIONS(2854), + [anon_sym_is] = ACTIONS(2854), + [anon_sym_BANGis] = ACTIONS(2854), + [anon_sym_in] = ACTIONS(2854), + [anon_sym_BANGin] = ACTIONS(2854), + [anon_sym_match] = ACTIONS(2854), + [anon_sym_select] = ACTIONS(2854), + [anon_sym_lock] = ACTIONS(2854), + [anon_sym_rlock] = ACTIONS(2854), + [anon_sym_unsafe] = ACTIONS(2854), + [anon_sym_sql] = ACTIONS(2854), + [sym_int_literal] = ACTIONS(2854), + [sym_float_literal] = ACTIONS(2854), + [sym_rune_literal] = ACTIONS(2854), + [sym_pseudo_compile_time_identifier] = ACTIONS(2854), + [anon_sym_shared] = ACTIONS(2854), + [anon_sym_map_LBRACK] = ACTIONS(2854), + [anon_sym_chan] = ACTIONS(2854), + [anon_sym_thread] = ACTIONS(2854), + [anon_sym_atomic] = ACTIONS(2854), + [sym___double_quote] = ACTIONS(2854), + [sym___single_quote] = ACTIONS(2854), + [sym___c_double_quote] = ACTIONS(2854), + [sym___c_single_quote] = ACTIONS(2854), + [sym___r_double_quote] = ACTIONS(2854), + [sym___r_single_quote] = ACTIONS(2854), }, [1237] = { [sym_line_comment] = STATE(1237), [sym_block_comment] = STATE(1237), - [sym_identifier] = ACTIONS(2904), - [anon_sym_LF] = ACTIONS(2904), - [anon_sym_CR] = ACTIONS(2904), - [anon_sym_CR_LF] = ACTIONS(2904), + [sym_identifier] = ACTIONS(2471), + [anon_sym_LF] = ACTIONS(2471), + [anon_sym_CR] = ACTIONS(2471), + [anon_sym_CR_LF] = ACTIONS(2471), [anon_sym_SLASH_SLASH] = ACTIONS(497), [anon_sym_SLASH_STAR] = ACTIONS(499), - [anon_sym_SEMI] = ACTIONS(2904), - [anon_sym_DOT] = ACTIONS(2904), - [anon_sym_as] = ACTIONS(2904), - [anon_sym_LBRACE] = ACTIONS(2904), - [anon_sym_COMMA] = ACTIONS(2904), - [anon_sym_RBRACE] = ACTIONS(2904), - [anon_sym_LPAREN] = ACTIONS(2904), - [anon_sym_RPAREN] = ACTIONS(2904), - [anon_sym_PIPE] = ACTIONS(2904), - [anon_sym_fn] = ACTIONS(2904), - [anon_sym_PLUS] = ACTIONS(2904), - [anon_sym_DASH] = ACTIONS(2904), - [anon_sym_STAR] = ACTIONS(2904), - [anon_sym_SLASH] = ACTIONS(2904), - [anon_sym_PERCENT] = ACTIONS(2904), - [anon_sym_LT] = ACTIONS(2904), - [anon_sym_GT] = ACTIONS(2904), - [anon_sym_EQ_EQ] = ACTIONS(2904), - [anon_sym_BANG_EQ] = ACTIONS(2904), - [anon_sym_LT_EQ] = ACTIONS(2904), - [anon_sym_GT_EQ] = ACTIONS(2904), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2904), - [anon_sym_LBRACK] = ACTIONS(2902), - [anon_sym_struct] = ACTIONS(2904), - [anon_sym_mut] = ACTIONS(2904), - [anon_sym_PLUS_PLUS] = ACTIONS(2904), - [anon_sym_DASH_DASH] = ACTIONS(2904), - [anon_sym_QMARK] = ACTIONS(2904), - [anon_sym_BANG] = ACTIONS(2904), - [anon_sym_go] = ACTIONS(2904), - [anon_sym_spawn] = ACTIONS(2904), - [anon_sym_json_DOTdecode] = ACTIONS(2904), - [anon_sym_LBRACK2] = ACTIONS(2904), - [anon_sym_TILDE] = ACTIONS(2904), - [anon_sym_CARET] = ACTIONS(2904), - [anon_sym_AMP] = ACTIONS(2904), - [anon_sym_LT_DASH] = ACTIONS(2904), - [anon_sym_LT_LT] = ACTIONS(2904), - [anon_sym_GT_GT] = ACTIONS(2904), - [anon_sym_GT_GT_GT] = ACTIONS(2904), - [anon_sym_AMP_CARET] = ACTIONS(2904), - [anon_sym_AMP_AMP] = ACTIONS(2904), - [anon_sym_PIPE_PIPE] = ACTIONS(2904), - [anon_sym_or] = ACTIONS(2904), - [sym_none] = ACTIONS(2904), - [sym_true] = ACTIONS(2904), - [sym_false] = ACTIONS(2904), - [sym_nil] = ACTIONS(2904), - [anon_sym_QMARK_DOT] = ACTIONS(2904), - [anon_sym_POUND_LBRACK] = ACTIONS(2904), - [anon_sym_if] = ACTIONS(2904), - [anon_sym_DOLLARif] = ACTIONS(2904), - [anon_sym_is] = ACTIONS(2904), - [anon_sym_BANGis] = ACTIONS(2904), - [anon_sym_in] = ACTIONS(2904), - [anon_sym_BANGin] = ACTIONS(2904), - [anon_sym_match] = ACTIONS(2904), - [anon_sym_select] = ACTIONS(2904), - [anon_sym_lock] = ACTIONS(2904), - [anon_sym_rlock] = ACTIONS(2904), - [anon_sym_unsafe] = ACTIONS(2904), - [anon_sym_sql] = ACTIONS(2904), - [sym_int_literal] = ACTIONS(2904), - [sym_float_literal] = ACTIONS(2904), - [sym_rune_literal] = ACTIONS(2904), - [sym_pseudo_compile_time_identifier] = ACTIONS(2904), - [anon_sym_shared] = ACTIONS(2904), - [anon_sym_map_LBRACK] = ACTIONS(2904), - [anon_sym_chan] = ACTIONS(2904), - [anon_sym_thread] = ACTIONS(2904), - [anon_sym_atomic] = ACTIONS(2904), - [sym___double_quote] = ACTIONS(2904), - [sym___single_quote] = ACTIONS(2904), - [sym___c_double_quote] = ACTIONS(2904), - [sym___c_single_quote] = ACTIONS(2904), - [sym___r_double_quote] = ACTIONS(2904), - [sym___r_single_quote] = ACTIONS(2904), + [anon_sym_SEMI] = ACTIONS(2471), + [anon_sym_DOT] = ACTIONS(2471), + [anon_sym_as] = ACTIONS(2471), + [anon_sym_LBRACE] = ACTIONS(2471), + [anon_sym_COMMA] = ACTIONS(2471), + [anon_sym_RBRACE] = ACTIONS(2471), + [anon_sym_LPAREN] = ACTIONS(2471), + [anon_sym_RPAREN] = ACTIONS(2471), + [anon_sym_PIPE] = ACTIONS(2471), + [anon_sym_fn] = ACTIONS(2471), + [anon_sym_PLUS] = ACTIONS(2471), + [anon_sym_DASH] = ACTIONS(2471), + [anon_sym_STAR] = ACTIONS(2471), + [anon_sym_SLASH] = ACTIONS(2471), + [anon_sym_PERCENT] = ACTIONS(2471), + [anon_sym_LT] = ACTIONS(2471), + [anon_sym_GT] = ACTIONS(2471), + [anon_sym_EQ_EQ] = ACTIONS(2471), + [anon_sym_BANG_EQ] = ACTIONS(2471), + [anon_sym_LT_EQ] = ACTIONS(2471), + [anon_sym_GT_EQ] = ACTIONS(2471), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2471), + [anon_sym_LBRACK] = ACTIONS(2469), + [anon_sym_struct] = ACTIONS(2471), + [anon_sym_mut] = ACTIONS(2471), + [anon_sym_PLUS_PLUS] = ACTIONS(2471), + [anon_sym_DASH_DASH] = ACTIONS(2471), + [anon_sym_QMARK] = ACTIONS(2471), + [anon_sym_BANG] = ACTIONS(2471), + [anon_sym_go] = ACTIONS(2471), + [anon_sym_spawn] = ACTIONS(2471), + [anon_sym_json_DOTdecode] = ACTIONS(2471), + [anon_sym_LBRACK2] = ACTIONS(2471), + [anon_sym_TILDE] = ACTIONS(2471), + [anon_sym_CARET] = ACTIONS(2471), + [anon_sym_AMP] = ACTIONS(2471), + [anon_sym_LT_DASH] = ACTIONS(2471), + [anon_sym_LT_LT] = ACTIONS(2471), + [anon_sym_GT_GT] = ACTIONS(2471), + [anon_sym_GT_GT_GT] = ACTIONS(2471), + [anon_sym_AMP_CARET] = ACTIONS(2471), + [anon_sym_AMP_AMP] = ACTIONS(2471), + [anon_sym_PIPE_PIPE] = ACTIONS(2471), + [anon_sym_or] = ACTIONS(2471), + [sym_none] = ACTIONS(2471), + [sym_true] = ACTIONS(2471), + [sym_false] = ACTIONS(2471), + [sym_nil] = ACTIONS(2471), + [anon_sym_QMARK_DOT] = ACTIONS(2471), + [anon_sym_POUND_LBRACK] = ACTIONS(2471), + [anon_sym_if] = ACTIONS(2471), + [anon_sym_DOLLARif] = ACTIONS(2471), + [anon_sym_is] = ACTIONS(2471), + [anon_sym_BANGis] = ACTIONS(2471), + [anon_sym_in] = ACTIONS(2471), + [anon_sym_BANGin] = ACTIONS(2471), + [anon_sym_match] = ACTIONS(2471), + [anon_sym_select] = ACTIONS(2471), + [anon_sym_lock] = ACTIONS(2471), + [anon_sym_rlock] = ACTIONS(2471), + [anon_sym_unsafe] = ACTIONS(2471), + [anon_sym_sql] = ACTIONS(2471), + [sym_int_literal] = ACTIONS(2471), + [sym_float_literal] = ACTIONS(2471), + [sym_rune_literal] = ACTIONS(2471), + [sym_pseudo_compile_time_identifier] = ACTIONS(2471), + [anon_sym_shared] = ACTIONS(2471), + [anon_sym_map_LBRACK] = ACTIONS(2471), + [anon_sym_chan] = ACTIONS(2471), + [anon_sym_thread] = ACTIONS(2471), + [anon_sym_atomic] = ACTIONS(2471), + [sym___double_quote] = ACTIONS(2471), + [sym___single_quote] = ACTIONS(2471), + [sym___c_double_quote] = ACTIONS(2471), + [sym___c_single_quote] = ACTIONS(2471), + [sym___r_double_quote] = ACTIONS(2471), + [sym___r_single_quote] = ACTIONS(2471), }, [1238] = { [sym_line_comment] = STATE(1238), [sym_block_comment] = STATE(1238), - [sym_identifier] = ACTIONS(2888), - [anon_sym_LF] = ACTIONS(2888), - [anon_sym_CR] = ACTIONS(2888), - [anon_sym_CR_LF] = ACTIONS(2888), + [sym_identifier] = ACTIONS(2858), + [anon_sym_LF] = ACTIONS(2858), + [anon_sym_CR] = ACTIONS(2858), + [anon_sym_CR_LF] = ACTIONS(2858), [anon_sym_SLASH_SLASH] = ACTIONS(497), [anon_sym_SLASH_STAR] = ACTIONS(499), - [anon_sym_SEMI] = ACTIONS(2888), - [anon_sym_DOT] = ACTIONS(2888), - [anon_sym_as] = ACTIONS(2888), - [anon_sym_LBRACE] = ACTIONS(2888), - [anon_sym_COMMA] = ACTIONS(2888), - [anon_sym_RBRACE] = ACTIONS(2888), - [anon_sym_LPAREN] = ACTIONS(2888), - [anon_sym_RPAREN] = ACTIONS(2888), - [anon_sym_PIPE] = ACTIONS(2888), - [anon_sym_fn] = ACTIONS(2888), - [anon_sym_PLUS] = ACTIONS(2888), - [anon_sym_DASH] = ACTIONS(2888), - [anon_sym_STAR] = ACTIONS(2888), - [anon_sym_SLASH] = ACTIONS(2888), - [anon_sym_PERCENT] = ACTIONS(2888), - [anon_sym_LT] = ACTIONS(2888), - [anon_sym_GT] = ACTIONS(2888), - [anon_sym_EQ_EQ] = ACTIONS(2888), - [anon_sym_BANG_EQ] = ACTIONS(2888), - [anon_sym_LT_EQ] = ACTIONS(2888), - [anon_sym_GT_EQ] = ACTIONS(2888), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2888), - [anon_sym_LBRACK] = ACTIONS(2886), - [anon_sym_struct] = ACTIONS(2888), - [anon_sym_mut] = ACTIONS(2888), - [anon_sym_PLUS_PLUS] = ACTIONS(2888), - [anon_sym_DASH_DASH] = ACTIONS(2888), - [anon_sym_QMARK] = ACTIONS(2888), - [anon_sym_BANG] = ACTIONS(2888), - [anon_sym_go] = ACTIONS(2888), - [anon_sym_spawn] = ACTIONS(2888), - [anon_sym_json_DOTdecode] = ACTIONS(2888), - [anon_sym_LBRACK2] = ACTIONS(2888), - [anon_sym_TILDE] = ACTIONS(2888), - [anon_sym_CARET] = ACTIONS(2888), - [anon_sym_AMP] = ACTIONS(2888), - [anon_sym_LT_DASH] = ACTIONS(2888), - [anon_sym_LT_LT] = ACTIONS(2888), - [anon_sym_GT_GT] = ACTIONS(2888), - [anon_sym_GT_GT_GT] = ACTIONS(2888), - [anon_sym_AMP_CARET] = ACTIONS(2888), - [anon_sym_AMP_AMP] = ACTIONS(2888), - [anon_sym_PIPE_PIPE] = ACTIONS(2888), - [anon_sym_or] = ACTIONS(2888), - [sym_none] = ACTIONS(2888), - [sym_true] = ACTIONS(2888), - [sym_false] = ACTIONS(2888), - [sym_nil] = ACTIONS(2888), - [anon_sym_QMARK_DOT] = ACTIONS(2888), - [anon_sym_POUND_LBRACK] = ACTIONS(2888), - [anon_sym_if] = ACTIONS(2888), - [anon_sym_DOLLARif] = ACTIONS(2888), - [anon_sym_is] = ACTIONS(2888), - [anon_sym_BANGis] = ACTIONS(2888), - [anon_sym_in] = ACTIONS(2888), - [anon_sym_BANGin] = ACTIONS(2888), - [anon_sym_match] = ACTIONS(2888), - [anon_sym_select] = ACTIONS(2888), - [anon_sym_lock] = ACTIONS(2888), - [anon_sym_rlock] = ACTIONS(2888), - [anon_sym_unsafe] = ACTIONS(2888), - [anon_sym_sql] = ACTIONS(2888), - [sym_int_literal] = ACTIONS(2888), - [sym_float_literal] = ACTIONS(2888), - [sym_rune_literal] = ACTIONS(2888), - [sym_pseudo_compile_time_identifier] = ACTIONS(2888), - [anon_sym_shared] = ACTIONS(2888), - [anon_sym_map_LBRACK] = ACTIONS(2888), - [anon_sym_chan] = ACTIONS(2888), - [anon_sym_thread] = ACTIONS(2888), - [anon_sym_atomic] = ACTIONS(2888), - [sym___double_quote] = ACTIONS(2888), - [sym___single_quote] = ACTIONS(2888), - [sym___c_double_quote] = ACTIONS(2888), - [sym___c_single_quote] = ACTIONS(2888), - [sym___r_double_quote] = ACTIONS(2888), - [sym___r_single_quote] = ACTIONS(2888), + [anon_sym_SEMI] = ACTIONS(2858), + [anon_sym_DOT] = ACTIONS(2858), + [anon_sym_as] = ACTIONS(2858), + [anon_sym_LBRACE] = ACTIONS(2858), + [anon_sym_COMMA] = ACTIONS(2858), + [anon_sym_RBRACE] = ACTIONS(2858), + [anon_sym_LPAREN] = ACTIONS(2858), + [anon_sym_RPAREN] = ACTIONS(2858), + [anon_sym_PIPE] = ACTIONS(2858), + [anon_sym_fn] = ACTIONS(2858), + [anon_sym_PLUS] = ACTIONS(2858), + [anon_sym_DASH] = ACTIONS(2858), + [anon_sym_STAR] = ACTIONS(2858), + [anon_sym_SLASH] = ACTIONS(2858), + [anon_sym_PERCENT] = ACTIONS(2858), + [anon_sym_LT] = ACTIONS(2858), + [anon_sym_GT] = ACTIONS(2858), + [anon_sym_EQ_EQ] = ACTIONS(2858), + [anon_sym_BANG_EQ] = ACTIONS(2858), + [anon_sym_LT_EQ] = ACTIONS(2858), + [anon_sym_GT_EQ] = ACTIONS(2858), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2858), + [anon_sym_LBRACK] = ACTIONS(2856), + [anon_sym_struct] = ACTIONS(2858), + [anon_sym_mut] = ACTIONS(2858), + [anon_sym_PLUS_PLUS] = ACTIONS(2858), + [anon_sym_DASH_DASH] = ACTIONS(2858), + [anon_sym_QMARK] = ACTIONS(2858), + [anon_sym_BANG] = ACTIONS(2858), + [anon_sym_go] = ACTIONS(2858), + [anon_sym_spawn] = ACTIONS(2858), + [anon_sym_json_DOTdecode] = ACTIONS(2858), + [anon_sym_LBRACK2] = ACTIONS(2858), + [anon_sym_TILDE] = ACTIONS(2858), + [anon_sym_CARET] = ACTIONS(2858), + [anon_sym_AMP] = ACTIONS(2858), + [anon_sym_LT_DASH] = ACTIONS(2858), + [anon_sym_LT_LT] = ACTIONS(2858), + [anon_sym_GT_GT] = ACTIONS(2858), + [anon_sym_GT_GT_GT] = ACTIONS(2858), + [anon_sym_AMP_CARET] = ACTIONS(2858), + [anon_sym_AMP_AMP] = ACTIONS(2858), + [anon_sym_PIPE_PIPE] = ACTIONS(2858), + [anon_sym_or] = ACTIONS(2858), + [sym_none] = ACTIONS(2858), + [sym_true] = ACTIONS(2858), + [sym_false] = ACTIONS(2858), + [sym_nil] = ACTIONS(2858), + [anon_sym_QMARK_DOT] = ACTIONS(2858), + [anon_sym_POUND_LBRACK] = ACTIONS(2858), + [anon_sym_if] = ACTIONS(2858), + [anon_sym_DOLLARif] = ACTIONS(2858), + [anon_sym_is] = ACTIONS(2858), + [anon_sym_BANGis] = ACTIONS(2858), + [anon_sym_in] = ACTIONS(2858), + [anon_sym_BANGin] = ACTIONS(2858), + [anon_sym_match] = ACTIONS(2858), + [anon_sym_select] = ACTIONS(2858), + [anon_sym_lock] = ACTIONS(2858), + [anon_sym_rlock] = ACTIONS(2858), + [anon_sym_unsafe] = ACTIONS(2858), + [anon_sym_sql] = ACTIONS(2858), + [sym_int_literal] = ACTIONS(2858), + [sym_float_literal] = ACTIONS(2858), + [sym_rune_literal] = ACTIONS(2858), + [sym_pseudo_compile_time_identifier] = ACTIONS(2858), + [anon_sym_shared] = ACTIONS(2858), + [anon_sym_map_LBRACK] = ACTIONS(2858), + [anon_sym_chan] = ACTIONS(2858), + [anon_sym_thread] = ACTIONS(2858), + [anon_sym_atomic] = ACTIONS(2858), + [sym___double_quote] = ACTIONS(2858), + [sym___single_quote] = ACTIONS(2858), + [sym___c_double_quote] = ACTIONS(2858), + [sym___c_single_quote] = ACTIONS(2858), + [sym___r_double_quote] = ACTIONS(2858), + [sym___r_single_quote] = ACTIONS(2858), }, [1239] = { [sym_line_comment] = STATE(1239), [sym_block_comment] = STATE(1239), - [sym_reference_expression] = STATE(4495), - [sym_type_reference_expression] = STATE(3541), - [sym_plain_type] = STATE(2391), - [sym__plain_type_without_special] = STATE(2302), - [sym_anon_struct_type] = STATE(2303), - [sym_multi_return_type] = STATE(2302), - [sym_result_type] = STATE(2302), - [sym_option_type] = STATE(2302), - [sym_qualified_type] = STATE(3541), - [sym_fixed_array_type] = STATE(2303), - [sym_array_type] = STATE(2303), - [sym_pointer_type] = STATE(2303), - [sym_wrong_pointer_type] = STATE(2303), - [sym_map_type] = STATE(2303), - [sym_channel_type] = STATE(2303), - [sym_shared_type] = STATE(2303), - [sym_thread_type] = STATE(2303), - [sym_atomic_type] = STATE(2303), - [sym_generic_type] = STATE(2303), - [sym_function_type] = STATE(2303), - [sym_identifier] = ACTIONS(597), - [anon_sym_SLASH_SLASH] = ACTIONS(3), - [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_SEMI] = ACTIONS(621), - [anon_sym_DOT] = ACTIONS(621), - [anon_sym_as] = ACTIONS(623), - [anon_sym_LBRACE] = ACTIONS(563), - [anon_sym_COMMA] = ACTIONS(621), - [anon_sym_LPAREN] = ACTIONS(621), - [anon_sym_EQ] = ACTIONS(623), - [anon_sym_PIPE] = ACTIONS(623), - [anon_sym_fn] = ACTIONS(603), - [anon_sym_PLUS] = ACTIONS(623), - [anon_sym_DASH] = ACTIONS(623), - [anon_sym_STAR] = ACTIONS(623), - [anon_sym_SLASH] = ACTIONS(623), - [anon_sym_PERCENT] = ACTIONS(623), - [anon_sym_LT] = ACTIONS(623), - [anon_sym_GT] = ACTIONS(623), - [anon_sym_EQ_EQ] = ACTIONS(621), - [anon_sym_BANG_EQ] = ACTIONS(621), - [anon_sym_LT_EQ] = ACTIONS(621), - [anon_sym_GT_EQ] = ACTIONS(621), - [anon_sym_LBRACK] = ACTIONS(621), - [anon_sym_struct] = ACTIONS(607), - [anon_sym_PLUS_PLUS] = ACTIONS(621), - [anon_sym_DASH_DASH] = ACTIONS(621), - [anon_sym_QMARK] = ACTIONS(623), - [anon_sym_BANG] = ACTIONS(623), - [anon_sym_LBRACK2] = ACTIONS(623), - [anon_sym_CARET] = ACTIONS(623), - [anon_sym_AMP] = ACTIONS(623), - [anon_sym_LT_LT] = ACTIONS(623), - [anon_sym_GT_GT] = ACTIONS(623), - [anon_sym_GT_GT_GT] = ACTIONS(623), - [anon_sym_AMP_CARET] = ACTIONS(623), - [anon_sym_AMP_AMP] = ACTIONS(621), - [anon_sym_PIPE_PIPE] = ACTIONS(621), - [anon_sym_or] = ACTIONS(623), - [anon_sym_QMARK_DOT] = ACTIONS(621), - [anon_sym_POUND_LBRACK] = ACTIONS(621), - [anon_sym_is] = ACTIONS(623), - [anon_sym_BANGis] = ACTIONS(621), - [anon_sym_in] = ACTIONS(623), - [anon_sym_BANGin] = ACTIONS(621), - [anon_sym_STAR_EQ] = ACTIONS(621), - [anon_sym_SLASH_EQ] = ACTIONS(621), - [anon_sym_PERCENT_EQ] = ACTIONS(621), - [anon_sym_LT_LT_EQ] = ACTIONS(621), - [anon_sym_GT_GT_EQ] = ACTIONS(621), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(621), - [anon_sym_AMP_EQ] = ACTIONS(621), - [anon_sym_AMP_CARET_EQ] = ACTIONS(621), - [anon_sym_PLUS_EQ] = ACTIONS(621), - [anon_sym_DASH_EQ] = ACTIONS(621), - [anon_sym_PIPE_EQ] = ACTIONS(621), - [anon_sym_CARET_EQ] = ACTIONS(621), - [anon_sym_COLON_EQ] = ACTIONS(621), - [anon_sym_shared] = ACTIONS(615), - [anon_sym_map_LBRACK] = ACTIONS(85), - [anon_sym_chan] = ACTIONS(87), - [anon_sym_thread] = ACTIONS(89), - [anon_sym_atomic] = ACTIONS(91), + [sym_identifier] = ACTIONS(2728), + [anon_sym_LF] = ACTIONS(2728), + [anon_sym_CR] = ACTIONS(2728), + [anon_sym_CR_LF] = ACTIONS(2728), + [anon_sym_SLASH_SLASH] = ACTIONS(497), + [anon_sym_SLASH_STAR] = ACTIONS(499), + [anon_sym_SEMI] = ACTIONS(2728), + [anon_sym_DOT] = ACTIONS(2728), + [anon_sym_as] = ACTIONS(2728), + [anon_sym_LBRACE] = ACTIONS(2728), + [anon_sym_COMMA] = ACTIONS(2728), + [anon_sym_RBRACE] = ACTIONS(2728), + [anon_sym_LPAREN] = ACTIONS(2728), + [anon_sym_RPAREN] = ACTIONS(2728), + [anon_sym_PIPE] = ACTIONS(2728), + [anon_sym_fn] = ACTIONS(2728), + [anon_sym_PLUS] = ACTIONS(2728), + [anon_sym_DASH] = ACTIONS(2728), + [anon_sym_STAR] = ACTIONS(2728), + [anon_sym_SLASH] = ACTIONS(2728), + [anon_sym_PERCENT] = ACTIONS(2728), + [anon_sym_LT] = ACTIONS(2728), + [anon_sym_GT] = ACTIONS(2728), + [anon_sym_EQ_EQ] = ACTIONS(2728), + [anon_sym_BANG_EQ] = ACTIONS(2728), + [anon_sym_LT_EQ] = ACTIONS(2728), + [anon_sym_GT_EQ] = ACTIONS(2728), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2728), + [anon_sym_LBRACK] = ACTIONS(2726), + [anon_sym_struct] = ACTIONS(2728), + [anon_sym_mut] = ACTIONS(2728), + [anon_sym_PLUS_PLUS] = ACTIONS(2728), + [anon_sym_DASH_DASH] = ACTIONS(2728), + [anon_sym_QMARK] = ACTIONS(2728), + [anon_sym_BANG] = ACTIONS(2728), + [anon_sym_go] = ACTIONS(2728), + [anon_sym_spawn] = ACTIONS(2728), + [anon_sym_json_DOTdecode] = ACTIONS(2728), + [anon_sym_LBRACK2] = ACTIONS(2728), + [anon_sym_TILDE] = ACTIONS(2728), + [anon_sym_CARET] = ACTIONS(2728), + [anon_sym_AMP] = ACTIONS(2728), + [anon_sym_LT_DASH] = ACTIONS(2728), + [anon_sym_LT_LT] = ACTIONS(2728), + [anon_sym_GT_GT] = ACTIONS(2728), + [anon_sym_GT_GT_GT] = ACTIONS(2728), + [anon_sym_AMP_CARET] = ACTIONS(2728), + [anon_sym_AMP_AMP] = ACTIONS(2728), + [anon_sym_PIPE_PIPE] = ACTIONS(2728), + [anon_sym_or] = ACTIONS(2728), + [sym_none] = ACTIONS(2728), + [sym_true] = ACTIONS(2728), + [sym_false] = ACTIONS(2728), + [sym_nil] = ACTIONS(2728), + [anon_sym_QMARK_DOT] = ACTIONS(2728), + [anon_sym_POUND_LBRACK] = ACTIONS(2728), + [anon_sym_if] = ACTIONS(2728), + [anon_sym_DOLLARif] = ACTIONS(2728), + [anon_sym_is] = ACTIONS(2728), + [anon_sym_BANGis] = ACTIONS(2728), + [anon_sym_in] = ACTIONS(2728), + [anon_sym_BANGin] = ACTIONS(2728), + [anon_sym_match] = ACTIONS(2728), + [anon_sym_select] = ACTIONS(2728), + [anon_sym_lock] = ACTIONS(2728), + [anon_sym_rlock] = ACTIONS(2728), + [anon_sym_unsafe] = ACTIONS(2728), + [anon_sym_sql] = ACTIONS(2728), + [sym_int_literal] = ACTIONS(2728), + [sym_float_literal] = ACTIONS(2728), + [sym_rune_literal] = ACTIONS(2728), + [sym_pseudo_compile_time_identifier] = ACTIONS(2728), + [anon_sym_shared] = ACTIONS(2728), + [anon_sym_map_LBRACK] = ACTIONS(2728), + [anon_sym_chan] = ACTIONS(2728), + [anon_sym_thread] = ACTIONS(2728), + [anon_sym_atomic] = ACTIONS(2728), + [sym___double_quote] = ACTIONS(2728), + [sym___single_quote] = ACTIONS(2728), + [sym___c_double_quote] = ACTIONS(2728), + [sym___c_single_quote] = ACTIONS(2728), + [sym___r_double_quote] = ACTIONS(2728), + [sym___r_single_quote] = ACTIONS(2728), }, [1240] = { [sym_line_comment] = STATE(1240), [sym_block_comment] = STATE(1240), - [sym_identifier] = ACTIONS(2908), - [anon_sym_LF] = ACTIONS(2908), - [anon_sym_CR] = ACTIONS(2908), - [anon_sym_CR_LF] = ACTIONS(2908), + [sym_identifier] = ACTIONS(3054), + [anon_sym_LF] = ACTIONS(3054), + [anon_sym_CR] = ACTIONS(3054), + [anon_sym_CR_LF] = ACTIONS(3054), [anon_sym_SLASH_SLASH] = ACTIONS(497), [anon_sym_SLASH_STAR] = ACTIONS(499), - [anon_sym_SEMI] = ACTIONS(2908), - [anon_sym_DOT] = ACTIONS(2908), - [anon_sym_as] = ACTIONS(2908), - [anon_sym_LBRACE] = ACTIONS(2908), - [anon_sym_COMMA] = ACTIONS(2908), - [anon_sym_RBRACE] = ACTIONS(2908), - [anon_sym_LPAREN] = ACTIONS(2908), - [anon_sym_RPAREN] = ACTIONS(2908), - [anon_sym_PIPE] = ACTIONS(2908), - [anon_sym_fn] = ACTIONS(2908), - [anon_sym_PLUS] = ACTIONS(2908), - [anon_sym_DASH] = ACTIONS(2908), - [anon_sym_STAR] = ACTIONS(2908), - [anon_sym_SLASH] = ACTIONS(2908), - [anon_sym_PERCENT] = ACTIONS(2908), - [anon_sym_LT] = ACTIONS(2908), - [anon_sym_GT] = ACTIONS(2908), - [anon_sym_EQ_EQ] = ACTIONS(2908), - [anon_sym_BANG_EQ] = ACTIONS(2908), - [anon_sym_LT_EQ] = ACTIONS(2908), - [anon_sym_GT_EQ] = ACTIONS(2908), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2908), - [anon_sym_LBRACK] = ACTIONS(2906), - [anon_sym_struct] = ACTIONS(2908), - [anon_sym_mut] = ACTIONS(2908), - [anon_sym_PLUS_PLUS] = ACTIONS(2908), - [anon_sym_DASH_DASH] = ACTIONS(2908), - [anon_sym_QMARK] = ACTIONS(2908), - [anon_sym_BANG] = ACTIONS(2908), - [anon_sym_go] = ACTIONS(2908), - [anon_sym_spawn] = ACTIONS(2908), - [anon_sym_json_DOTdecode] = ACTIONS(2908), - [anon_sym_LBRACK2] = ACTIONS(2908), - [anon_sym_TILDE] = ACTIONS(2908), - [anon_sym_CARET] = ACTIONS(2908), - [anon_sym_AMP] = ACTIONS(2908), - [anon_sym_LT_DASH] = ACTIONS(2908), - [anon_sym_LT_LT] = ACTIONS(2908), - [anon_sym_GT_GT] = ACTIONS(2908), - [anon_sym_GT_GT_GT] = ACTIONS(2908), - [anon_sym_AMP_CARET] = ACTIONS(2908), - [anon_sym_AMP_AMP] = ACTIONS(2908), - [anon_sym_PIPE_PIPE] = ACTIONS(2908), - [anon_sym_or] = ACTIONS(2908), - [sym_none] = ACTIONS(2908), - [sym_true] = ACTIONS(2908), - [sym_false] = ACTIONS(2908), - [sym_nil] = ACTIONS(2908), - [anon_sym_QMARK_DOT] = ACTIONS(2908), - [anon_sym_POUND_LBRACK] = ACTIONS(2908), - [anon_sym_if] = ACTIONS(2908), - [anon_sym_DOLLARif] = ACTIONS(2908), - [anon_sym_is] = ACTIONS(2908), - [anon_sym_BANGis] = ACTIONS(2908), - [anon_sym_in] = ACTIONS(2908), - [anon_sym_BANGin] = ACTIONS(2908), - [anon_sym_match] = ACTIONS(2908), - [anon_sym_select] = ACTIONS(2908), - [anon_sym_lock] = ACTIONS(2908), - [anon_sym_rlock] = ACTIONS(2908), - [anon_sym_unsafe] = ACTIONS(2908), - [anon_sym_sql] = ACTIONS(2908), - [sym_int_literal] = ACTIONS(2908), - [sym_float_literal] = ACTIONS(2908), - [sym_rune_literal] = ACTIONS(2908), - [sym_pseudo_compile_time_identifier] = ACTIONS(2908), - [anon_sym_shared] = ACTIONS(2908), - [anon_sym_map_LBRACK] = ACTIONS(2908), - [anon_sym_chan] = ACTIONS(2908), - [anon_sym_thread] = ACTIONS(2908), - [anon_sym_atomic] = ACTIONS(2908), - [sym___double_quote] = ACTIONS(2908), - [sym___single_quote] = ACTIONS(2908), - [sym___c_double_quote] = ACTIONS(2908), - [sym___c_single_quote] = ACTIONS(2908), - [sym___r_double_quote] = ACTIONS(2908), - [sym___r_single_quote] = ACTIONS(2908), + [anon_sym_SEMI] = ACTIONS(3054), + [anon_sym_DOT] = ACTIONS(3054), + [anon_sym_as] = ACTIONS(3054), + [anon_sym_LBRACE] = ACTIONS(3054), + [anon_sym_COMMA] = ACTIONS(3054), + [anon_sym_RBRACE] = ACTIONS(3054), + [anon_sym_LPAREN] = ACTIONS(3054), + [anon_sym_RPAREN] = ACTIONS(3054), + [anon_sym_PIPE] = ACTIONS(3054), + [anon_sym_fn] = ACTIONS(3054), + [anon_sym_PLUS] = ACTIONS(3054), + [anon_sym_DASH] = ACTIONS(3054), + [anon_sym_STAR] = ACTIONS(3054), + [anon_sym_SLASH] = ACTIONS(3054), + [anon_sym_PERCENT] = ACTIONS(3054), + [anon_sym_LT] = ACTIONS(3054), + [anon_sym_GT] = ACTIONS(3054), + [anon_sym_EQ_EQ] = ACTIONS(3054), + [anon_sym_BANG_EQ] = ACTIONS(3054), + [anon_sym_LT_EQ] = ACTIONS(3054), + [anon_sym_GT_EQ] = ACTIONS(3054), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3054), + [anon_sym_LBRACK] = ACTIONS(3052), + [anon_sym_struct] = ACTIONS(3054), + [anon_sym_mut] = ACTIONS(3054), + [anon_sym_PLUS_PLUS] = ACTIONS(3054), + [anon_sym_DASH_DASH] = ACTIONS(3054), + [anon_sym_QMARK] = ACTIONS(3054), + [anon_sym_BANG] = ACTIONS(3054), + [anon_sym_go] = ACTIONS(3054), + [anon_sym_spawn] = ACTIONS(3054), + [anon_sym_json_DOTdecode] = ACTIONS(3054), + [anon_sym_LBRACK2] = ACTIONS(3054), + [anon_sym_TILDE] = ACTIONS(3054), + [anon_sym_CARET] = ACTIONS(3054), + [anon_sym_AMP] = ACTIONS(3054), + [anon_sym_LT_DASH] = ACTIONS(3054), + [anon_sym_LT_LT] = ACTIONS(3054), + [anon_sym_GT_GT] = ACTIONS(3054), + [anon_sym_GT_GT_GT] = ACTIONS(3054), + [anon_sym_AMP_CARET] = ACTIONS(3054), + [anon_sym_AMP_AMP] = ACTIONS(3054), + [anon_sym_PIPE_PIPE] = ACTIONS(3054), + [anon_sym_or] = ACTIONS(3054), + [sym_none] = ACTIONS(3054), + [sym_true] = ACTIONS(3054), + [sym_false] = ACTIONS(3054), + [sym_nil] = ACTIONS(3054), + [anon_sym_QMARK_DOT] = ACTIONS(3054), + [anon_sym_POUND_LBRACK] = ACTIONS(3054), + [anon_sym_if] = ACTIONS(3054), + [anon_sym_DOLLARif] = ACTIONS(3054), + [anon_sym_is] = ACTIONS(3054), + [anon_sym_BANGis] = ACTIONS(3054), + [anon_sym_in] = ACTIONS(3054), + [anon_sym_BANGin] = ACTIONS(3054), + [anon_sym_match] = ACTIONS(3054), + [anon_sym_select] = ACTIONS(3054), + [anon_sym_lock] = ACTIONS(3054), + [anon_sym_rlock] = ACTIONS(3054), + [anon_sym_unsafe] = ACTIONS(3054), + [anon_sym_sql] = ACTIONS(3054), + [sym_int_literal] = ACTIONS(3054), + [sym_float_literal] = ACTIONS(3054), + [sym_rune_literal] = ACTIONS(3054), + [sym_pseudo_compile_time_identifier] = ACTIONS(3054), + [anon_sym_shared] = ACTIONS(3054), + [anon_sym_map_LBRACK] = ACTIONS(3054), + [anon_sym_chan] = ACTIONS(3054), + [anon_sym_thread] = ACTIONS(3054), + [anon_sym_atomic] = ACTIONS(3054), + [sym___double_quote] = ACTIONS(3054), + [sym___single_quote] = ACTIONS(3054), + [sym___c_double_quote] = ACTIONS(3054), + [sym___c_single_quote] = ACTIONS(3054), + [sym___r_double_quote] = ACTIONS(3054), + [sym___r_single_quote] = ACTIONS(3054), }, [1241] = { [sym_line_comment] = STATE(1241), [sym_block_comment] = STATE(1241), - [sym_identifier] = ACTIONS(1851), - [anon_sym_LF] = ACTIONS(1851), - [anon_sym_CR] = ACTIONS(1851), - [anon_sym_CR_LF] = ACTIONS(1851), + [sym_identifier] = ACTIONS(1809), + [anon_sym_LF] = ACTIONS(1809), + [anon_sym_CR] = ACTIONS(1809), + [anon_sym_CR_LF] = ACTIONS(1809), [anon_sym_SLASH_SLASH] = ACTIONS(497), [anon_sym_SLASH_STAR] = ACTIONS(499), - [anon_sym_SEMI] = ACTIONS(1851), - [anon_sym_DOT] = ACTIONS(1851), - [anon_sym_as] = ACTIONS(1851), - [anon_sym_LBRACE] = ACTIONS(1851), - [anon_sym_COMMA] = ACTIONS(1851), - [anon_sym_RBRACE] = ACTIONS(1851), - [anon_sym_LPAREN] = ACTIONS(1851), - [anon_sym_RPAREN] = ACTIONS(1851), - [anon_sym_PIPE] = ACTIONS(1851), - [anon_sym_fn] = ACTIONS(1851), - [anon_sym_PLUS] = ACTIONS(1851), - [anon_sym_DASH] = ACTIONS(1851), - [anon_sym_STAR] = ACTIONS(1851), - [anon_sym_SLASH] = ACTIONS(1851), - [anon_sym_PERCENT] = ACTIONS(1851), - [anon_sym_LT] = ACTIONS(1851), - [anon_sym_GT] = ACTIONS(1851), - [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_DOT_DOT_DOT] = ACTIONS(1851), - [anon_sym_LBRACK] = ACTIONS(1849), - [anon_sym_struct] = ACTIONS(1851), - [anon_sym_mut] = ACTIONS(1851), - [anon_sym_PLUS_PLUS] = ACTIONS(1851), - [anon_sym_DASH_DASH] = ACTIONS(1851), - [anon_sym_QMARK] = ACTIONS(1851), - [anon_sym_BANG] = ACTIONS(1851), - [anon_sym_go] = ACTIONS(1851), - [anon_sym_spawn] = ACTIONS(1851), - [anon_sym_json_DOTdecode] = ACTIONS(1851), - [anon_sym_LBRACK2] = ACTIONS(1851), - [anon_sym_TILDE] = ACTIONS(1851), - [anon_sym_CARET] = ACTIONS(1851), - [anon_sym_AMP] = ACTIONS(1851), - [anon_sym_LT_DASH] = ACTIONS(1851), - [anon_sym_LT_LT] = ACTIONS(1851), - [anon_sym_GT_GT] = ACTIONS(1851), - [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(1851), - [sym_none] = ACTIONS(1851), - [sym_true] = ACTIONS(1851), - [sym_false] = ACTIONS(1851), - [sym_nil] = ACTIONS(1851), - [anon_sym_QMARK_DOT] = ACTIONS(1851), - [anon_sym_POUND_LBRACK] = ACTIONS(1851), - [anon_sym_if] = ACTIONS(1851), - [anon_sym_DOLLARif] = ACTIONS(1851), - [anon_sym_is] = ACTIONS(1851), - [anon_sym_BANGis] = ACTIONS(1851), - [anon_sym_in] = ACTIONS(1851), - [anon_sym_BANGin] = ACTIONS(1851), - [anon_sym_match] = ACTIONS(1851), - [anon_sym_select] = ACTIONS(1851), - [anon_sym_lock] = ACTIONS(1851), - [anon_sym_rlock] = ACTIONS(1851), - [anon_sym_unsafe] = ACTIONS(1851), - [anon_sym_sql] = ACTIONS(1851), - [sym_int_literal] = ACTIONS(1851), - [sym_float_literal] = ACTIONS(1851), - [sym_rune_literal] = ACTIONS(1851), - [sym_pseudo_compile_time_identifier] = ACTIONS(1851), - [anon_sym_shared] = ACTIONS(1851), - [anon_sym_map_LBRACK] = ACTIONS(1851), - [anon_sym_chan] = ACTIONS(1851), - [anon_sym_thread] = ACTIONS(1851), - [anon_sym_atomic] = ACTIONS(1851), - [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), + [anon_sym_SEMI] = ACTIONS(1809), + [anon_sym_DOT] = ACTIONS(1809), + [anon_sym_as] = ACTIONS(1809), + [anon_sym_LBRACE] = ACTIONS(1809), + [anon_sym_COMMA] = ACTIONS(1809), + [anon_sym_RBRACE] = ACTIONS(1809), + [anon_sym_LPAREN] = ACTIONS(1809), + [anon_sym_RPAREN] = ACTIONS(1809), + [anon_sym_PIPE] = ACTIONS(1809), + [anon_sym_fn] = ACTIONS(1809), + [anon_sym_PLUS] = ACTIONS(1809), + [anon_sym_DASH] = ACTIONS(1809), + [anon_sym_STAR] = ACTIONS(1809), + [anon_sym_SLASH] = ACTIONS(1809), + [anon_sym_PERCENT] = ACTIONS(1809), + [anon_sym_LT] = ACTIONS(1809), + [anon_sym_GT] = ACTIONS(1809), + [anon_sym_EQ_EQ] = ACTIONS(1809), + [anon_sym_BANG_EQ] = ACTIONS(1809), + [anon_sym_LT_EQ] = ACTIONS(1809), + [anon_sym_GT_EQ] = ACTIONS(1809), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1809), + [anon_sym_LBRACK] = ACTIONS(1807), + [anon_sym_struct] = ACTIONS(1809), + [anon_sym_mut] = ACTIONS(1809), + [anon_sym_PLUS_PLUS] = ACTIONS(1809), + [anon_sym_DASH_DASH] = ACTIONS(1809), + [anon_sym_QMARK] = ACTIONS(1809), + [anon_sym_BANG] = ACTIONS(1809), + [anon_sym_go] = ACTIONS(1809), + [anon_sym_spawn] = ACTIONS(1809), + [anon_sym_json_DOTdecode] = ACTIONS(1809), + [anon_sym_LBRACK2] = ACTIONS(1809), + [anon_sym_TILDE] = ACTIONS(1809), + [anon_sym_CARET] = ACTIONS(1809), + [anon_sym_AMP] = ACTIONS(1809), + [anon_sym_LT_DASH] = ACTIONS(1809), + [anon_sym_LT_LT] = ACTIONS(1809), + [anon_sym_GT_GT] = ACTIONS(1809), + [anon_sym_GT_GT_GT] = ACTIONS(1809), + [anon_sym_AMP_CARET] = ACTIONS(1809), + [anon_sym_AMP_AMP] = ACTIONS(1809), + [anon_sym_PIPE_PIPE] = ACTIONS(1809), + [anon_sym_or] = ACTIONS(1809), + [sym_none] = ACTIONS(1809), + [sym_true] = ACTIONS(1809), + [sym_false] = ACTIONS(1809), + [sym_nil] = ACTIONS(1809), + [anon_sym_QMARK_DOT] = ACTIONS(1809), + [anon_sym_POUND_LBRACK] = ACTIONS(1809), + [anon_sym_if] = ACTIONS(1809), + [anon_sym_DOLLARif] = ACTIONS(1809), + [anon_sym_is] = ACTIONS(1809), + [anon_sym_BANGis] = ACTIONS(1809), + [anon_sym_in] = ACTIONS(1809), + [anon_sym_BANGin] = ACTIONS(1809), + [anon_sym_match] = ACTIONS(1809), + [anon_sym_select] = ACTIONS(1809), + [anon_sym_lock] = ACTIONS(1809), + [anon_sym_rlock] = ACTIONS(1809), + [anon_sym_unsafe] = ACTIONS(1809), + [anon_sym_sql] = ACTIONS(1809), + [sym_int_literal] = ACTIONS(1809), + [sym_float_literal] = ACTIONS(1809), + [sym_rune_literal] = ACTIONS(1809), + [sym_pseudo_compile_time_identifier] = ACTIONS(1809), + [anon_sym_shared] = ACTIONS(1809), + [anon_sym_map_LBRACK] = ACTIONS(1809), + [anon_sym_chan] = ACTIONS(1809), + [anon_sym_thread] = ACTIONS(1809), + [anon_sym_atomic] = ACTIONS(1809), + [sym___double_quote] = ACTIONS(1809), + [sym___single_quote] = ACTIONS(1809), + [sym___c_double_quote] = ACTIONS(1809), + [sym___c_single_quote] = ACTIONS(1809), + [sym___r_double_quote] = ACTIONS(1809), + [sym___r_single_quote] = ACTIONS(1809), }, [1242] = { [sym_line_comment] = STATE(1242), [sym_block_comment] = STATE(1242), - [sym_identifier] = ACTIONS(2884), - [anon_sym_LF] = ACTIONS(2884), - [anon_sym_CR] = ACTIONS(2884), - [anon_sym_CR_LF] = ACTIONS(2884), + [sym_identifier] = ACTIONS(2443), + [anon_sym_LF] = ACTIONS(2443), + [anon_sym_CR] = ACTIONS(2443), + [anon_sym_CR_LF] = ACTIONS(2443), [anon_sym_SLASH_SLASH] = ACTIONS(497), [anon_sym_SLASH_STAR] = ACTIONS(499), - [anon_sym_SEMI] = ACTIONS(2884), - [anon_sym_DOT] = ACTIONS(2884), - [anon_sym_as] = ACTIONS(2884), - [anon_sym_LBRACE] = ACTIONS(2884), - [anon_sym_COMMA] = ACTIONS(2884), - [anon_sym_RBRACE] = ACTIONS(2884), - [anon_sym_LPAREN] = ACTIONS(2884), - [anon_sym_RPAREN] = ACTIONS(2884), - [anon_sym_PIPE] = ACTIONS(2884), - [anon_sym_fn] = ACTIONS(2884), - [anon_sym_PLUS] = ACTIONS(2884), - [anon_sym_DASH] = ACTIONS(2884), - [anon_sym_STAR] = ACTIONS(2884), - [anon_sym_SLASH] = ACTIONS(2884), - [anon_sym_PERCENT] = ACTIONS(2884), - [anon_sym_LT] = ACTIONS(2884), - [anon_sym_GT] = ACTIONS(2884), - [anon_sym_EQ_EQ] = ACTIONS(2884), - [anon_sym_BANG_EQ] = ACTIONS(2884), - [anon_sym_LT_EQ] = ACTIONS(2884), - [anon_sym_GT_EQ] = ACTIONS(2884), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2884), - [anon_sym_LBRACK] = ACTIONS(2882), - [anon_sym_struct] = ACTIONS(2884), - [anon_sym_mut] = ACTIONS(2884), - [anon_sym_PLUS_PLUS] = ACTIONS(2884), - [anon_sym_DASH_DASH] = ACTIONS(2884), - [anon_sym_QMARK] = ACTIONS(2884), - [anon_sym_BANG] = ACTIONS(2884), - [anon_sym_go] = ACTIONS(2884), - [anon_sym_spawn] = ACTIONS(2884), - [anon_sym_json_DOTdecode] = ACTIONS(2884), - [anon_sym_LBRACK2] = ACTIONS(2884), - [anon_sym_TILDE] = ACTIONS(2884), - [anon_sym_CARET] = ACTIONS(2884), - [anon_sym_AMP] = ACTIONS(2884), - [anon_sym_LT_DASH] = ACTIONS(2884), - [anon_sym_LT_LT] = ACTIONS(2884), - [anon_sym_GT_GT] = ACTIONS(2884), - [anon_sym_GT_GT_GT] = ACTIONS(2884), - [anon_sym_AMP_CARET] = ACTIONS(2884), - [anon_sym_AMP_AMP] = ACTIONS(2884), - [anon_sym_PIPE_PIPE] = ACTIONS(2884), - [anon_sym_or] = ACTIONS(2884), - [sym_none] = ACTIONS(2884), - [sym_true] = ACTIONS(2884), - [sym_false] = ACTIONS(2884), - [sym_nil] = ACTIONS(2884), - [anon_sym_QMARK_DOT] = ACTIONS(2884), - [anon_sym_POUND_LBRACK] = ACTIONS(2884), - [anon_sym_if] = ACTIONS(2884), - [anon_sym_DOLLARif] = ACTIONS(2884), - [anon_sym_is] = ACTIONS(2884), - [anon_sym_BANGis] = ACTIONS(2884), - [anon_sym_in] = ACTIONS(2884), - [anon_sym_BANGin] = ACTIONS(2884), - [anon_sym_match] = ACTIONS(2884), - [anon_sym_select] = ACTIONS(2884), - [anon_sym_lock] = ACTIONS(2884), - [anon_sym_rlock] = ACTIONS(2884), - [anon_sym_unsafe] = ACTIONS(2884), - [anon_sym_sql] = ACTIONS(2884), - [sym_int_literal] = ACTIONS(2884), - [sym_float_literal] = ACTIONS(2884), - [sym_rune_literal] = ACTIONS(2884), - [sym_pseudo_compile_time_identifier] = ACTIONS(2884), - [anon_sym_shared] = ACTIONS(2884), - [anon_sym_map_LBRACK] = ACTIONS(2884), - [anon_sym_chan] = ACTIONS(2884), - [anon_sym_thread] = ACTIONS(2884), - [anon_sym_atomic] = ACTIONS(2884), - [sym___double_quote] = ACTIONS(2884), - [sym___single_quote] = ACTIONS(2884), - [sym___c_double_quote] = ACTIONS(2884), - [sym___c_single_quote] = ACTIONS(2884), - [sym___r_double_quote] = ACTIONS(2884), - [sym___r_single_quote] = ACTIONS(2884), + [anon_sym_SEMI] = ACTIONS(2443), + [anon_sym_DOT] = ACTIONS(2443), + [anon_sym_as] = ACTIONS(2443), + [anon_sym_LBRACE] = ACTIONS(2443), + [anon_sym_COMMA] = ACTIONS(2443), + [anon_sym_RBRACE] = ACTIONS(2443), + [anon_sym_LPAREN] = ACTIONS(2443), + [anon_sym_RPAREN] = ACTIONS(2443), + [anon_sym_PIPE] = ACTIONS(2443), + [anon_sym_fn] = ACTIONS(2443), + [anon_sym_PLUS] = ACTIONS(2443), + [anon_sym_DASH] = ACTIONS(2443), + [anon_sym_STAR] = ACTIONS(2443), + [anon_sym_SLASH] = ACTIONS(2443), + [anon_sym_PERCENT] = ACTIONS(2443), + [anon_sym_LT] = ACTIONS(2443), + [anon_sym_GT] = ACTIONS(2443), + [anon_sym_EQ_EQ] = ACTIONS(2443), + [anon_sym_BANG_EQ] = ACTIONS(2443), + [anon_sym_LT_EQ] = ACTIONS(2443), + [anon_sym_GT_EQ] = ACTIONS(2443), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2443), + [anon_sym_LBRACK] = ACTIONS(2441), + [anon_sym_struct] = ACTIONS(2443), + [anon_sym_mut] = ACTIONS(2443), + [anon_sym_PLUS_PLUS] = ACTIONS(2443), + [anon_sym_DASH_DASH] = ACTIONS(2443), + [anon_sym_QMARK] = ACTIONS(2443), + [anon_sym_BANG] = ACTIONS(2443), + [anon_sym_go] = ACTIONS(2443), + [anon_sym_spawn] = ACTIONS(2443), + [anon_sym_json_DOTdecode] = ACTIONS(2443), + [anon_sym_LBRACK2] = ACTIONS(2443), + [anon_sym_TILDE] = ACTIONS(2443), + [anon_sym_CARET] = ACTIONS(2443), + [anon_sym_AMP] = ACTIONS(2443), + [anon_sym_LT_DASH] = ACTIONS(2443), + [anon_sym_LT_LT] = ACTIONS(2443), + [anon_sym_GT_GT] = ACTIONS(2443), + [anon_sym_GT_GT_GT] = ACTIONS(2443), + [anon_sym_AMP_CARET] = ACTIONS(2443), + [anon_sym_AMP_AMP] = ACTIONS(2443), + [anon_sym_PIPE_PIPE] = ACTIONS(2443), + [anon_sym_or] = ACTIONS(2443), + [sym_none] = ACTIONS(2443), + [sym_true] = ACTIONS(2443), + [sym_false] = ACTIONS(2443), + [sym_nil] = ACTIONS(2443), + [anon_sym_QMARK_DOT] = ACTIONS(2443), + [anon_sym_POUND_LBRACK] = ACTIONS(2443), + [anon_sym_if] = ACTIONS(2443), + [anon_sym_DOLLARif] = ACTIONS(2443), + [anon_sym_is] = ACTIONS(2443), + [anon_sym_BANGis] = ACTIONS(2443), + [anon_sym_in] = ACTIONS(2443), + [anon_sym_BANGin] = ACTIONS(2443), + [anon_sym_match] = ACTIONS(2443), + [anon_sym_select] = ACTIONS(2443), + [anon_sym_lock] = ACTIONS(2443), + [anon_sym_rlock] = ACTIONS(2443), + [anon_sym_unsafe] = ACTIONS(2443), + [anon_sym_sql] = ACTIONS(2443), + [sym_int_literal] = ACTIONS(2443), + [sym_float_literal] = ACTIONS(2443), + [sym_rune_literal] = ACTIONS(2443), + [sym_pseudo_compile_time_identifier] = ACTIONS(2443), + [anon_sym_shared] = ACTIONS(2443), + [anon_sym_map_LBRACK] = ACTIONS(2443), + [anon_sym_chan] = ACTIONS(2443), + [anon_sym_thread] = ACTIONS(2443), + [anon_sym_atomic] = ACTIONS(2443), + [sym___double_quote] = ACTIONS(2443), + [sym___single_quote] = ACTIONS(2443), + [sym___c_double_quote] = ACTIONS(2443), + [sym___c_single_quote] = ACTIONS(2443), + [sym___r_double_quote] = ACTIONS(2443), + [sym___r_single_quote] = ACTIONS(2443), }, [1243] = { [sym_line_comment] = STATE(1243), [sym_block_comment] = STATE(1243), - [sym_identifier] = ACTIONS(2798), - [anon_sym_LF] = ACTIONS(2798), - [anon_sym_CR] = ACTIONS(2798), - [anon_sym_CR_LF] = ACTIONS(2798), + [sym_identifier] = ACTIONS(3044), + [anon_sym_LF] = ACTIONS(3044), + [anon_sym_CR] = ACTIONS(3044), + [anon_sym_CR_LF] = ACTIONS(3044), [anon_sym_SLASH_SLASH] = ACTIONS(497), [anon_sym_SLASH_STAR] = ACTIONS(499), - [anon_sym_SEMI] = ACTIONS(2798), - [anon_sym_DOT] = ACTIONS(2798), - [anon_sym_as] = ACTIONS(2798), - [anon_sym_LBRACE] = ACTIONS(2798), - [anon_sym_COMMA] = ACTIONS(2798), - [anon_sym_RBRACE] = ACTIONS(2798), - [anon_sym_LPAREN] = ACTIONS(2798), - [anon_sym_RPAREN] = ACTIONS(2798), - [anon_sym_PIPE] = ACTIONS(2798), - [anon_sym_fn] = ACTIONS(2798), - [anon_sym_PLUS] = ACTIONS(2798), - [anon_sym_DASH] = ACTIONS(2798), - [anon_sym_STAR] = ACTIONS(2798), - [anon_sym_SLASH] = ACTIONS(2798), - [anon_sym_PERCENT] = ACTIONS(2798), - [anon_sym_LT] = ACTIONS(2798), - [anon_sym_GT] = ACTIONS(2798), - [anon_sym_EQ_EQ] = ACTIONS(2798), - [anon_sym_BANG_EQ] = ACTIONS(2798), - [anon_sym_LT_EQ] = ACTIONS(2798), - [anon_sym_GT_EQ] = ACTIONS(2798), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2798), - [anon_sym_LBRACK] = ACTIONS(2796), - [anon_sym_struct] = ACTIONS(2798), - [anon_sym_mut] = ACTIONS(2798), - [anon_sym_PLUS_PLUS] = ACTIONS(2798), - [anon_sym_DASH_DASH] = ACTIONS(2798), - [anon_sym_QMARK] = ACTIONS(2798), - [anon_sym_BANG] = ACTIONS(2798), - [anon_sym_go] = ACTIONS(2798), - [anon_sym_spawn] = ACTIONS(2798), - [anon_sym_json_DOTdecode] = ACTIONS(2798), - [anon_sym_LBRACK2] = ACTIONS(2798), - [anon_sym_TILDE] = ACTIONS(2798), - [anon_sym_CARET] = ACTIONS(2798), - [anon_sym_AMP] = ACTIONS(2798), - [anon_sym_LT_DASH] = ACTIONS(2798), - [anon_sym_LT_LT] = ACTIONS(2798), - [anon_sym_GT_GT] = ACTIONS(2798), - [anon_sym_GT_GT_GT] = ACTIONS(2798), - [anon_sym_AMP_CARET] = ACTIONS(2798), - [anon_sym_AMP_AMP] = ACTIONS(2798), - [anon_sym_PIPE_PIPE] = ACTIONS(2798), - [anon_sym_or] = ACTIONS(2798), - [sym_none] = ACTIONS(2798), - [sym_true] = ACTIONS(2798), - [sym_false] = ACTIONS(2798), - [sym_nil] = ACTIONS(2798), - [anon_sym_QMARK_DOT] = ACTIONS(2798), - [anon_sym_POUND_LBRACK] = ACTIONS(2798), - [anon_sym_if] = ACTIONS(2798), - [anon_sym_DOLLARif] = ACTIONS(2798), - [anon_sym_is] = ACTIONS(2798), - [anon_sym_BANGis] = ACTIONS(2798), - [anon_sym_in] = ACTIONS(2798), - [anon_sym_BANGin] = ACTIONS(2798), - [anon_sym_match] = ACTIONS(2798), - [anon_sym_select] = ACTIONS(2798), - [anon_sym_lock] = ACTIONS(2798), - [anon_sym_rlock] = ACTIONS(2798), - [anon_sym_unsafe] = ACTIONS(2798), - [anon_sym_sql] = ACTIONS(2798), - [sym_int_literal] = ACTIONS(2798), - [sym_float_literal] = ACTIONS(2798), - [sym_rune_literal] = ACTIONS(2798), - [sym_pseudo_compile_time_identifier] = ACTIONS(2798), - [anon_sym_shared] = ACTIONS(2798), - [anon_sym_map_LBRACK] = ACTIONS(2798), - [anon_sym_chan] = ACTIONS(2798), - [anon_sym_thread] = ACTIONS(2798), - [anon_sym_atomic] = ACTIONS(2798), - [sym___double_quote] = ACTIONS(2798), - [sym___single_quote] = ACTIONS(2798), - [sym___c_double_quote] = ACTIONS(2798), - [sym___c_single_quote] = ACTIONS(2798), - [sym___r_double_quote] = ACTIONS(2798), - [sym___r_single_quote] = ACTIONS(2798), + [anon_sym_SEMI] = ACTIONS(3044), + [anon_sym_DOT] = ACTIONS(3044), + [anon_sym_as] = ACTIONS(3044), + [anon_sym_LBRACE] = ACTIONS(3044), + [anon_sym_COMMA] = ACTIONS(3044), + [anon_sym_RBRACE] = ACTIONS(3044), + [anon_sym_LPAREN] = ACTIONS(3044), + [anon_sym_RPAREN] = ACTIONS(3044), + [anon_sym_PIPE] = ACTIONS(3044), + [anon_sym_fn] = ACTIONS(3044), + [anon_sym_PLUS] = ACTIONS(3044), + [anon_sym_DASH] = ACTIONS(3044), + [anon_sym_STAR] = ACTIONS(3044), + [anon_sym_SLASH] = ACTIONS(3044), + [anon_sym_PERCENT] = ACTIONS(3044), + [anon_sym_LT] = ACTIONS(3044), + [anon_sym_GT] = ACTIONS(3044), + [anon_sym_EQ_EQ] = ACTIONS(3044), + [anon_sym_BANG_EQ] = ACTIONS(3044), + [anon_sym_LT_EQ] = ACTIONS(3044), + [anon_sym_GT_EQ] = ACTIONS(3044), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3044), + [anon_sym_LBRACK] = ACTIONS(3042), + [anon_sym_struct] = ACTIONS(3044), + [anon_sym_mut] = ACTIONS(3044), + [anon_sym_PLUS_PLUS] = ACTIONS(3044), + [anon_sym_DASH_DASH] = ACTIONS(3044), + [anon_sym_QMARK] = ACTIONS(3044), + [anon_sym_BANG] = ACTIONS(3044), + [anon_sym_go] = ACTIONS(3044), + [anon_sym_spawn] = ACTIONS(3044), + [anon_sym_json_DOTdecode] = ACTIONS(3044), + [anon_sym_LBRACK2] = ACTIONS(3044), + [anon_sym_TILDE] = ACTIONS(3044), + [anon_sym_CARET] = ACTIONS(3044), + [anon_sym_AMP] = ACTIONS(3044), + [anon_sym_LT_DASH] = ACTIONS(3044), + [anon_sym_LT_LT] = ACTIONS(3044), + [anon_sym_GT_GT] = ACTIONS(3044), + [anon_sym_GT_GT_GT] = ACTIONS(3044), + [anon_sym_AMP_CARET] = ACTIONS(3044), + [anon_sym_AMP_AMP] = ACTIONS(3044), + [anon_sym_PIPE_PIPE] = ACTIONS(3044), + [anon_sym_or] = ACTIONS(3044), + [sym_none] = ACTIONS(3044), + [sym_true] = ACTIONS(3044), + [sym_false] = ACTIONS(3044), + [sym_nil] = ACTIONS(3044), + [anon_sym_QMARK_DOT] = ACTIONS(3044), + [anon_sym_POUND_LBRACK] = ACTIONS(3044), + [anon_sym_if] = ACTIONS(3044), + [anon_sym_DOLLARif] = ACTIONS(3044), + [anon_sym_is] = ACTIONS(3044), + [anon_sym_BANGis] = ACTIONS(3044), + [anon_sym_in] = ACTIONS(3044), + [anon_sym_BANGin] = ACTIONS(3044), + [anon_sym_match] = ACTIONS(3044), + [anon_sym_select] = ACTIONS(3044), + [anon_sym_lock] = ACTIONS(3044), + [anon_sym_rlock] = ACTIONS(3044), + [anon_sym_unsafe] = ACTIONS(3044), + [anon_sym_sql] = ACTIONS(3044), + [sym_int_literal] = ACTIONS(3044), + [sym_float_literal] = ACTIONS(3044), + [sym_rune_literal] = ACTIONS(3044), + [sym_pseudo_compile_time_identifier] = ACTIONS(3044), + [anon_sym_shared] = ACTIONS(3044), + [anon_sym_map_LBRACK] = ACTIONS(3044), + [anon_sym_chan] = ACTIONS(3044), + [anon_sym_thread] = ACTIONS(3044), + [anon_sym_atomic] = ACTIONS(3044), + [sym___double_quote] = ACTIONS(3044), + [sym___single_quote] = ACTIONS(3044), + [sym___c_double_quote] = ACTIONS(3044), + [sym___c_single_quote] = ACTIONS(3044), + [sym___r_double_quote] = ACTIONS(3044), + [sym___r_single_quote] = ACTIONS(3044), }, [1244] = { [sym_line_comment] = STATE(1244), [sym_block_comment] = STATE(1244), - [sym_identifier] = ACTIONS(2647), - [anon_sym_LF] = ACTIONS(2647), - [anon_sym_CR] = ACTIONS(2647), - [anon_sym_CR_LF] = ACTIONS(2647), + [sym_identifier] = ACTIONS(2846), + [anon_sym_LF] = ACTIONS(2846), + [anon_sym_CR] = ACTIONS(2846), + [anon_sym_CR_LF] = ACTIONS(2846), [anon_sym_SLASH_SLASH] = ACTIONS(497), [anon_sym_SLASH_STAR] = ACTIONS(499), - [anon_sym_SEMI] = ACTIONS(2647), - [anon_sym_DOT] = ACTIONS(2647), - [anon_sym_as] = ACTIONS(2647), - [anon_sym_LBRACE] = ACTIONS(2647), - [anon_sym_COMMA] = ACTIONS(2647), - [anon_sym_RBRACE] = ACTIONS(2647), - [anon_sym_LPAREN] = ACTIONS(2647), - [anon_sym_RPAREN] = ACTIONS(2647), - [anon_sym_PIPE] = ACTIONS(2647), - [anon_sym_fn] = ACTIONS(2647), - [anon_sym_PLUS] = ACTIONS(2647), - [anon_sym_DASH] = ACTIONS(2647), - [anon_sym_STAR] = ACTIONS(2647), - [anon_sym_SLASH] = ACTIONS(2647), - [anon_sym_PERCENT] = ACTIONS(2647), - [anon_sym_LT] = ACTIONS(2647), - [anon_sym_GT] = ACTIONS(2647), - [anon_sym_EQ_EQ] = ACTIONS(2647), - [anon_sym_BANG_EQ] = ACTIONS(2647), - [anon_sym_LT_EQ] = ACTIONS(2647), - [anon_sym_GT_EQ] = ACTIONS(2647), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2647), - [anon_sym_LBRACK] = ACTIONS(2645), - [anon_sym_struct] = ACTIONS(2647), - [anon_sym_mut] = ACTIONS(2647), - [anon_sym_PLUS_PLUS] = ACTIONS(2647), - [anon_sym_DASH_DASH] = ACTIONS(2647), - [anon_sym_QMARK] = ACTIONS(2647), - [anon_sym_BANG] = ACTIONS(2647), - [anon_sym_go] = ACTIONS(2647), - [anon_sym_spawn] = ACTIONS(2647), - [anon_sym_json_DOTdecode] = ACTIONS(2647), - [anon_sym_LBRACK2] = ACTIONS(2647), - [anon_sym_TILDE] = ACTIONS(2647), - [anon_sym_CARET] = ACTIONS(2647), - [anon_sym_AMP] = ACTIONS(2647), - [anon_sym_LT_DASH] = ACTIONS(2647), - [anon_sym_LT_LT] = ACTIONS(2647), - [anon_sym_GT_GT] = ACTIONS(2647), - [anon_sym_GT_GT_GT] = ACTIONS(2647), - [anon_sym_AMP_CARET] = ACTIONS(2647), - [anon_sym_AMP_AMP] = ACTIONS(2647), - [anon_sym_PIPE_PIPE] = ACTIONS(2647), - [anon_sym_or] = ACTIONS(2647), - [sym_none] = ACTIONS(2647), - [sym_true] = ACTIONS(2647), - [sym_false] = ACTIONS(2647), - [sym_nil] = ACTIONS(2647), - [anon_sym_QMARK_DOT] = ACTIONS(2647), - [anon_sym_POUND_LBRACK] = ACTIONS(2647), - [anon_sym_if] = ACTIONS(2647), - [anon_sym_DOLLARif] = ACTIONS(2647), - [anon_sym_is] = ACTIONS(2647), - [anon_sym_BANGis] = ACTIONS(2647), - [anon_sym_in] = ACTIONS(2647), - [anon_sym_BANGin] = ACTIONS(2647), - [anon_sym_match] = ACTIONS(2647), - [anon_sym_select] = ACTIONS(2647), - [anon_sym_lock] = ACTIONS(2647), - [anon_sym_rlock] = ACTIONS(2647), - [anon_sym_unsafe] = ACTIONS(2647), - [anon_sym_sql] = ACTIONS(2647), - [sym_int_literal] = ACTIONS(2647), - [sym_float_literal] = ACTIONS(2647), - [sym_rune_literal] = ACTIONS(2647), - [sym_pseudo_compile_time_identifier] = ACTIONS(2647), - [anon_sym_shared] = ACTIONS(2647), - [anon_sym_map_LBRACK] = ACTIONS(2647), - [anon_sym_chan] = ACTIONS(2647), - [anon_sym_thread] = ACTIONS(2647), - [anon_sym_atomic] = ACTIONS(2647), - [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), + [anon_sym_SEMI] = ACTIONS(2846), + [anon_sym_DOT] = ACTIONS(2846), + [anon_sym_as] = ACTIONS(2846), + [anon_sym_LBRACE] = ACTIONS(2846), + [anon_sym_COMMA] = ACTIONS(2846), + [anon_sym_RBRACE] = ACTIONS(2846), + [anon_sym_LPAREN] = ACTIONS(2846), + [anon_sym_RPAREN] = ACTIONS(2846), + [anon_sym_PIPE] = ACTIONS(2846), + [anon_sym_fn] = ACTIONS(2846), + [anon_sym_PLUS] = ACTIONS(2846), + [anon_sym_DASH] = ACTIONS(2846), + [anon_sym_STAR] = ACTIONS(2846), + [anon_sym_SLASH] = ACTIONS(2846), + [anon_sym_PERCENT] = ACTIONS(2846), + [anon_sym_LT] = ACTIONS(2846), + [anon_sym_GT] = ACTIONS(2846), + [anon_sym_EQ_EQ] = ACTIONS(2846), + [anon_sym_BANG_EQ] = ACTIONS(2846), + [anon_sym_LT_EQ] = ACTIONS(2846), + [anon_sym_GT_EQ] = ACTIONS(2846), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2846), + [anon_sym_LBRACK] = ACTIONS(2844), + [anon_sym_struct] = ACTIONS(2846), + [anon_sym_mut] = ACTIONS(2846), + [anon_sym_PLUS_PLUS] = ACTIONS(2846), + [anon_sym_DASH_DASH] = ACTIONS(2846), + [anon_sym_QMARK] = ACTIONS(2846), + [anon_sym_BANG] = ACTIONS(2846), + [anon_sym_go] = ACTIONS(2846), + [anon_sym_spawn] = ACTIONS(2846), + [anon_sym_json_DOTdecode] = ACTIONS(2846), + [anon_sym_LBRACK2] = ACTIONS(2846), + [anon_sym_TILDE] = ACTIONS(2846), + [anon_sym_CARET] = ACTIONS(2846), + [anon_sym_AMP] = ACTIONS(2846), + [anon_sym_LT_DASH] = ACTIONS(2846), + [anon_sym_LT_LT] = ACTIONS(2846), + [anon_sym_GT_GT] = ACTIONS(2846), + [anon_sym_GT_GT_GT] = ACTIONS(2846), + [anon_sym_AMP_CARET] = ACTIONS(2846), + [anon_sym_AMP_AMP] = ACTIONS(2846), + [anon_sym_PIPE_PIPE] = ACTIONS(2846), + [anon_sym_or] = ACTIONS(2846), + [sym_none] = ACTIONS(2846), + [sym_true] = ACTIONS(2846), + [sym_false] = ACTIONS(2846), + [sym_nil] = ACTIONS(2846), + [anon_sym_QMARK_DOT] = ACTIONS(2846), + [anon_sym_POUND_LBRACK] = ACTIONS(2846), + [anon_sym_if] = ACTIONS(2846), + [anon_sym_DOLLARif] = ACTIONS(2846), + [anon_sym_is] = ACTIONS(2846), + [anon_sym_BANGis] = ACTIONS(2846), + [anon_sym_in] = ACTIONS(2846), + [anon_sym_BANGin] = ACTIONS(2846), + [anon_sym_match] = ACTIONS(2846), + [anon_sym_select] = ACTIONS(2846), + [anon_sym_lock] = ACTIONS(2846), + [anon_sym_rlock] = ACTIONS(2846), + [anon_sym_unsafe] = ACTIONS(2846), + [anon_sym_sql] = ACTIONS(2846), + [sym_int_literal] = ACTIONS(2846), + [sym_float_literal] = ACTIONS(2846), + [sym_rune_literal] = ACTIONS(2846), + [sym_pseudo_compile_time_identifier] = ACTIONS(2846), + [anon_sym_shared] = ACTIONS(2846), + [anon_sym_map_LBRACK] = ACTIONS(2846), + [anon_sym_chan] = ACTIONS(2846), + [anon_sym_thread] = ACTIONS(2846), + [anon_sym_atomic] = ACTIONS(2846), + [sym___double_quote] = ACTIONS(2846), + [sym___single_quote] = ACTIONS(2846), + [sym___c_double_quote] = ACTIONS(2846), + [sym___c_single_quote] = ACTIONS(2846), + [sym___r_double_quote] = ACTIONS(2846), + [sym___r_single_quote] = ACTIONS(2846), }, [1245] = { [sym_line_comment] = STATE(1245), [sym_block_comment] = STATE(1245), - [sym_identifier] = ACTIONS(2229), - [anon_sym_LF] = ACTIONS(2229), - [anon_sym_CR] = ACTIONS(2229), - [anon_sym_CR_LF] = ACTIONS(2229), + [sym_identifier] = ACTIONS(2449), + [anon_sym_LF] = ACTIONS(2449), + [anon_sym_CR] = ACTIONS(2449), + [anon_sym_CR_LF] = ACTIONS(2449), [anon_sym_SLASH_SLASH] = ACTIONS(497), [anon_sym_SLASH_STAR] = ACTIONS(499), - [anon_sym_SEMI] = ACTIONS(2229), - [anon_sym_DOT] = ACTIONS(2229), - [anon_sym_as] = ACTIONS(2229), - [anon_sym_LBRACE] = ACTIONS(2229), - [anon_sym_COMMA] = ACTIONS(2229), - [anon_sym_RBRACE] = ACTIONS(2229), - [anon_sym_LPAREN] = ACTIONS(2229), - [anon_sym_RPAREN] = ACTIONS(2229), - [anon_sym_PIPE] = ACTIONS(2229), - [anon_sym_fn] = ACTIONS(2229), - [anon_sym_PLUS] = ACTIONS(2229), - [anon_sym_DASH] = ACTIONS(2229), - [anon_sym_STAR] = ACTIONS(2229), - [anon_sym_SLASH] = ACTIONS(2229), - [anon_sym_PERCENT] = ACTIONS(2229), - [anon_sym_LT] = ACTIONS(2229), - [anon_sym_GT] = ACTIONS(2229), - [anon_sym_EQ_EQ] = ACTIONS(2229), - [anon_sym_BANG_EQ] = ACTIONS(2229), - [anon_sym_LT_EQ] = ACTIONS(2229), - [anon_sym_GT_EQ] = ACTIONS(2229), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2229), - [anon_sym_LBRACK] = ACTIONS(2227), - [anon_sym_struct] = ACTIONS(2229), - [anon_sym_mut] = ACTIONS(2229), - [anon_sym_PLUS_PLUS] = ACTIONS(2229), - [anon_sym_DASH_DASH] = ACTIONS(2229), - [anon_sym_QMARK] = ACTIONS(2229), - [anon_sym_BANG] = ACTIONS(2229), - [anon_sym_go] = ACTIONS(2229), - [anon_sym_spawn] = ACTIONS(2229), - [anon_sym_json_DOTdecode] = ACTIONS(2229), - [anon_sym_LBRACK2] = ACTIONS(2229), - [anon_sym_TILDE] = ACTIONS(2229), - [anon_sym_CARET] = ACTIONS(2229), - [anon_sym_AMP] = ACTIONS(2229), - [anon_sym_LT_DASH] = ACTIONS(2229), - [anon_sym_LT_LT] = ACTIONS(2229), - [anon_sym_GT_GT] = ACTIONS(2229), - [anon_sym_GT_GT_GT] = ACTIONS(2229), - [anon_sym_AMP_CARET] = ACTIONS(2229), - [anon_sym_AMP_AMP] = ACTIONS(2229), - [anon_sym_PIPE_PIPE] = ACTIONS(2229), - [anon_sym_or] = ACTIONS(2229), - [sym_none] = ACTIONS(2229), - [sym_true] = ACTIONS(2229), - [sym_false] = ACTIONS(2229), - [sym_nil] = ACTIONS(2229), - [anon_sym_QMARK_DOT] = ACTIONS(2229), - [anon_sym_POUND_LBRACK] = ACTIONS(2229), - [anon_sym_if] = ACTIONS(2229), - [anon_sym_DOLLARif] = ACTIONS(2229), - [anon_sym_is] = ACTIONS(2229), - [anon_sym_BANGis] = ACTIONS(2229), - [anon_sym_in] = ACTIONS(2229), - [anon_sym_BANGin] = ACTIONS(2229), - [anon_sym_match] = ACTIONS(2229), - [anon_sym_select] = ACTIONS(2229), - [anon_sym_lock] = ACTIONS(2229), - [anon_sym_rlock] = ACTIONS(2229), - [anon_sym_unsafe] = ACTIONS(2229), - [anon_sym_sql] = ACTIONS(2229), - [sym_int_literal] = ACTIONS(2229), - [sym_float_literal] = ACTIONS(2229), - [sym_rune_literal] = ACTIONS(2229), - [sym_pseudo_compile_time_identifier] = ACTIONS(2229), - [anon_sym_shared] = ACTIONS(2229), - [anon_sym_map_LBRACK] = ACTIONS(2229), - [anon_sym_chan] = ACTIONS(2229), - [anon_sym_thread] = ACTIONS(2229), - [anon_sym_atomic] = ACTIONS(2229), - [sym___double_quote] = ACTIONS(2229), - [sym___single_quote] = ACTIONS(2229), - [sym___c_double_quote] = ACTIONS(2229), - [sym___c_single_quote] = ACTIONS(2229), - [sym___r_double_quote] = ACTIONS(2229), - [sym___r_single_quote] = ACTIONS(2229), + [anon_sym_SEMI] = ACTIONS(2449), + [anon_sym_DOT] = ACTIONS(2449), + [anon_sym_as] = ACTIONS(2449), + [anon_sym_LBRACE] = ACTIONS(2449), + [anon_sym_COMMA] = ACTIONS(2449), + [anon_sym_RBRACE] = ACTIONS(2449), + [anon_sym_LPAREN] = ACTIONS(2449), + [anon_sym_RPAREN] = ACTIONS(2449), + [anon_sym_PIPE] = ACTIONS(2449), + [anon_sym_fn] = ACTIONS(2449), + [anon_sym_PLUS] = ACTIONS(2449), + [anon_sym_DASH] = ACTIONS(2449), + [anon_sym_STAR] = ACTIONS(2449), + [anon_sym_SLASH] = ACTIONS(2449), + [anon_sym_PERCENT] = ACTIONS(2449), + [anon_sym_LT] = ACTIONS(2449), + [anon_sym_GT] = ACTIONS(2449), + [anon_sym_EQ_EQ] = ACTIONS(2449), + [anon_sym_BANG_EQ] = ACTIONS(2449), + [anon_sym_LT_EQ] = ACTIONS(2449), + [anon_sym_GT_EQ] = ACTIONS(2449), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2449), + [anon_sym_LBRACK] = ACTIONS(2447), + [anon_sym_struct] = ACTIONS(2449), + [anon_sym_mut] = ACTIONS(2449), + [anon_sym_PLUS_PLUS] = ACTIONS(2449), + [anon_sym_DASH_DASH] = ACTIONS(2449), + [anon_sym_QMARK] = ACTIONS(2449), + [anon_sym_BANG] = ACTIONS(2449), + [anon_sym_go] = ACTIONS(2449), + [anon_sym_spawn] = ACTIONS(2449), + [anon_sym_json_DOTdecode] = ACTIONS(2449), + [anon_sym_LBRACK2] = ACTIONS(2449), + [anon_sym_TILDE] = ACTIONS(2449), + [anon_sym_CARET] = ACTIONS(2449), + [anon_sym_AMP] = ACTIONS(2449), + [anon_sym_LT_DASH] = ACTIONS(2449), + [anon_sym_LT_LT] = ACTIONS(2449), + [anon_sym_GT_GT] = ACTIONS(2449), + [anon_sym_GT_GT_GT] = ACTIONS(2449), + [anon_sym_AMP_CARET] = ACTIONS(2449), + [anon_sym_AMP_AMP] = ACTIONS(2449), + [anon_sym_PIPE_PIPE] = ACTIONS(2449), + [anon_sym_or] = ACTIONS(2449), + [sym_none] = ACTIONS(2449), + [sym_true] = ACTIONS(2449), + [sym_false] = ACTIONS(2449), + [sym_nil] = ACTIONS(2449), + [anon_sym_QMARK_DOT] = ACTIONS(2449), + [anon_sym_POUND_LBRACK] = ACTIONS(2449), + [anon_sym_if] = ACTIONS(2449), + [anon_sym_DOLLARif] = ACTIONS(2449), + [anon_sym_is] = ACTIONS(2449), + [anon_sym_BANGis] = ACTIONS(2449), + [anon_sym_in] = ACTIONS(2449), + [anon_sym_BANGin] = ACTIONS(2449), + [anon_sym_match] = ACTIONS(2449), + [anon_sym_select] = ACTIONS(2449), + [anon_sym_lock] = ACTIONS(2449), + [anon_sym_rlock] = ACTIONS(2449), + [anon_sym_unsafe] = ACTIONS(2449), + [anon_sym_sql] = ACTIONS(2449), + [sym_int_literal] = ACTIONS(2449), + [sym_float_literal] = ACTIONS(2449), + [sym_rune_literal] = ACTIONS(2449), + [sym_pseudo_compile_time_identifier] = ACTIONS(2449), + [anon_sym_shared] = ACTIONS(2449), + [anon_sym_map_LBRACK] = ACTIONS(2449), + [anon_sym_chan] = ACTIONS(2449), + [anon_sym_thread] = ACTIONS(2449), + [anon_sym_atomic] = ACTIONS(2449), + [sym___double_quote] = ACTIONS(2449), + [sym___single_quote] = ACTIONS(2449), + [sym___c_double_quote] = ACTIONS(2449), + [sym___c_single_quote] = ACTIONS(2449), + [sym___r_double_quote] = ACTIONS(2449), + [sym___r_single_quote] = ACTIONS(2449), }, [1246] = { [sym_line_comment] = STATE(1246), [sym_block_comment] = STATE(1246), - [sym_identifier] = ACTIONS(2289), - [anon_sym_LF] = ACTIONS(2289), - [anon_sym_CR] = ACTIONS(2289), - [anon_sym_CR_LF] = ACTIONS(2289), + [sym_identifier] = ACTIONS(2233), + [anon_sym_LF] = ACTIONS(2233), + [anon_sym_CR] = ACTIONS(2233), + [anon_sym_CR_LF] = ACTIONS(2233), [anon_sym_SLASH_SLASH] = ACTIONS(497), [anon_sym_SLASH_STAR] = ACTIONS(499), - [anon_sym_SEMI] = ACTIONS(2289), - [anon_sym_DOT] = ACTIONS(2289), - [anon_sym_as] = ACTIONS(2289), - [anon_sym_LBRACE] = ACTIONS(2289), - [anon_sym_COMMA] = ACTIONS(2289), - [anon_sym_RBRACE] = ACTIONS(2289), - [anon_sym_LPAREN] = ACTIONS(2289), - [anon_sym_RPAREN] = ACTIONS(2289), - [anon_sym_PIPE] = ACTIONS(2289), - [anon_sym_fn] = ACTIONS(2289), - [anon_sym_PLUS] = ACTIONS(2289), - [anon_sym_DASH] = ACTIONS(2289), - [anon_sym_STAR] = ACTIONS(2289), - [anon_sym_SLASH] = ACTIONS(2289), - [anon_sym_PERCENT] = ACTIONS(2289), - [anon_sym_LT] = ACTIONS(2289), - [anon_sym_GT] = ACTIONS(2289), - [anon_sym_EQ_EQ] = ACTIONS(2289), - [anon_sym_BANG_EQ] = ACTIONS(2289), - [anon_sym_LT_EQ] = ACTIONS(2289), - [anon_sym_GT_EQ] = ACTIONS(2289), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2289), - [anon_sym_LBRACK] = ACTIONS(2287), - [anon_sym_struct] = ACTIONS(2289), - [anon_sym_mut] = ACTIONS(2289), - [anon_sym_PLUS_PLUS] = ACTIONS(2289), - [anon_sym_DASH_DASH] = ACTIONS(2289), - [anon_sym_QMARK] = ACTIONS(2289), - [anon_sym_BANG] = ACTIONS(2289), - [anon_sym_go] = ACTIONS(2289), - [anon_sym_spawn] = ACTIONS(2289), - [anon_sym_json_DOTdecode] = ACTIONS(2289), - [anon_sym_LBRACK2] = ACTIONS(2289), - [anon_sym_TILDE] = ACTIONS(2289), - [anon_sym_CARET] = ACTIONS(2289), - [anon_sym_AMP] = ACTIONS(2289), - [anon_sym_LT_DASH] = ACTIONS(2289), - [anon_sym_LT_LT] = ACTIONS(2289), - [anon_sym_GT_GT] = ACTIONS(2289), - [anon_sym_GT_GT_GT] = ACTIONS(2289), - [anon_sym_AMP_CARET] = ACTIONS(2289), - [anon_sym_AMP_AMP] = ACTIONS(2289), - [anon_sym_PIPE_PIPE] = ACTIONS(2289), - [anon_sym_or] = ACTIONS(2289), - [sym_none] = ACTIONS(2289), - [sym_true] = ACTIONS(2289), - [sym_false] = ACTIONS(2289), - [sym_nil] = ACTIONS(2289), - [anon_sym_QMARK_DOT] = ACTIONS(2289), - [anon_sym_POUND_LBRACK] = ACTIONS(2289), - [anon_sym_if] = ACTIONS(2289), - [anon_sym_DOLLARif] = ACTIONS(2289), - [anon_sym_is] = ACTIONS(2289), - [anon_sym_BANGis] = ACTIONS(2289), - [anon_sym_in] = ACTIONS(2289), - [anon_sym_BANGin] = ACTIONS(2289), - [anon_sym_match] = ACTIONS(2289), - [anon_sym_select] = ACTIONS(2289), - [anon_sym_lock] = ACTIONS(2289), - [anon_sym_rlock] = ACTIONS(2289), - [anon_sym_unsafe] = ACTIONS(2289), - [anon_sym_sql] = ACTIONS(2289), - [sym_int_literal] = ACTIONS(2289), - [sym_float_literal] = ACTIONS(2289), - [sym_rune_literal] = ACTIONS(2289), - [sym_pseudo_compile_time_identifier] = ACTIONS(2289), - [anon_sym_shared] = ACTIONS(2289), - [anon_sym_map_LBRACK] = ACTIONS(2289), - [anon_sym_chan] = ACTIONS(2289), - [anon_sym_thread] = ACTIONS(2289), - [anon_sym_atomic] = ACTIONS(2289), - [sym___double_quote] = ACTIONS(2289), - [sym___single_quote] = ACTIONS(2289), - [sym___c_double_quote] = ACTIONS(2289), - [sym___c_single_quote] = ACTIONS(2289), - [sym___r_double_quote] = ACTIONS(2289), - [sym___r_single_quote] = ACTIONS(2289), + [anon_sym_SEMI] = ACTIONS(2233), + [anon_sym_DOT] = ACTIONS(2233), + [anon_sym_as] = ACTIONS(2233), + [anon_sym_LBRACE] = ACTIONS(2233), + [anon_sym_COMMA] = ACTIONS(2233), + [anon_sym_RBRACE] = ACTIONS(2233), + [anon_sym_LPAREN] = ACTIONS(2233), + [anon_sym_RPAREN] = ACTIONS(2233), + [anon_sym_PIPE] = ACTIONS(2233), + [anon_sym_fn] = ACTIONS(2233), + [anon_sym_PLUS] = ACTIONS(2233), + [anon_sym_DASH] = ACTIONS(2233), + [anon_sym_STAR] = ACTIONS(2233), + [anon_sym_SLASH] = ACTIONS(2233), + [anon_sym_PERCENT] = ACTIONS(2233), + [anon_sym_LT] = ACTIONS(2233), + [anon_sym_GT] = ACTIONS(2233), + [anon_sym_EQ_EQ] = ACTIONS(2233), + [anon_sym_BANG_EQ] = ACTIONS(2233), + [anon_sym_LT_EQ] = ACTIONS(2233), + [anon_sym_GT_EQ] = ACTIONS(2233), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2233), + [anon_sym_LBRACK] = ACTIONS(2231), + [anon_sym_struct] = ACTIONS(2233), + [anon_sym_mut] = ACTIONS(2233), + [anon_sym_PLUS_PLUS] = ACTIONS(2233), + [anon_sym_DASH_DASH] = ACTIONS(2233), + [anon_sym_QMARK] = ACTIONS(2233), + [anon_sym_BANG] = ACTIONS(2233), + [anon_sym_go] = ACTIONS(2233), + [anon_sym_spawn] = ACTIONS(2233), + [anon_sym_json_DOTdecode] = ACTIONS(2233), + [anon_sym_LBRACK2] = ACTIONS(2233), + [anon_sym_TILDE] = ACTIONS(2233), + [anon_sym_CARET] = ACTIONS(2233), + [anon_sym_AMP] = ACTIONS(2233), + [anon_sym_LT_DASH] = ACTIONS(2233), + [anon_sym_LT_LT] = ACTIONS(2233), + [anon_sym_GT_GT] = ACTIONS(2233), + [anon_sym_GT_GT_GT] = ACTIONS(2233), + [anon_sym_AMP_CARET] = ACTIONS(2233), + [anon_sym_AMP_AMP] = ACTIONS(2233), + [anon_sym_PIPE_PIPE] = ACTIONS(2233), + [anon_sym_or] = ACTIONS(2233), + [sym_none] = ACTIONS(2233), + [sym_true] = ACTIONS(2233), + [sym_false] = ACTIONS(2233), + [sym_nil] = ACTIONS(2233), + [anon_sym_QMARK_DOT] = ACTIONS(2233), + [anon_sym_POUND_LBRACK] = ACTIONS(2233), + [anon_sym_if] = ACTIONS(2233), + [anon_sym_DOLLARif] = ACTIONS(2233), + [anon_sym_is] = ACTIONS(2233), + [anon_sym_BANGis] = ACTIONS(2233), + [anon_sym_in] = ACTIONS(2233), + [anon_sym_BANGin] = ACTIONS(2233), + [anon_sym_match] = ACTIONS(2233), + [anon_sym_select] = ACTIONS(2233), + [anon_sym_lock] = ACTIONS(2233), + [anon_sym_rlock] = ACTIONS(2233), + [anon_sym_unsafe] = ACTIONS(2233), + [anon_sym_sql] = ACTIONS(2233), + [sym_int_literal] = ACTIONS(2233), + [sym_float_literal] = ACTIONS(2233), + [sym_rune_literal] = ACTIONS(2233), + [sym_pseudo_compile_time_identifier] = ACTIONS(2233), + [anon_sym_shared] = ACTIONS(2233), + [anon_sym_map_LBRACK] = ACTIONS(2233), + [anon_sym_chan] = ACTIONS(2233), + [anon_sym_thread] = ACTIONS(2233), + [anon_sym_atomic] = ACTIONS(2233), + [sym___double_quote] = ACTIONS(2233), + [sym___single_quote] = ACTIONS(2233), + [sym___c_double_quote] = ACTIONS(2233), + [sym___c_single_quote] = ACTIONS(2233), + [sym___r_double_quote] = ACTIONS(2233), + [sym___r_single_quote] = ACTIONS(2233), }, [1247] = { [sym_line_comment] = STATE(1247), [sym_block_comment] = STATE(1247), - [sym_identifier] = ACTIONS(2824), - [anon_sym_LF] = ACTIONS(2824), - [anon_sym_CR] = ACTIONS(2824), - [anon_sym_CR_LF] = ACTIONS(2824), - [anon_sym_SLASH_SLASH] = ACTIONS(497), - [anon_sym_SLASH_STAR] = ACTIONS(499), - [anon_sym_SEMI] = ACTIONS(2824), - [anon_sym_DOT] = ACTIONS(2824), - [anon_sym_as] = ACTIONS(2824), - [anon_sym_LBRACE] = ACTIONS(2824), - [anon_sym_COMMA] = ACTIONS(2824), - [anon_sym_RBRACE] = ACTIONS(2824), - [anon_sym_LPAREN] = ACTIONS(2824), - [anon_sym_RPAREN] = ACTIONS(2824), - [anon_sym_PIPE] = ACTIONS(2824), - [anon_sym_fn] = ACTIONS(2824), - [anon_sym_PLUS] = ACTIONS(2824), - [anon_sym_DASH] = ACTIONS(2824), - [anon_sym_STAR] = ACTIONS(2824), - [anon_sym_SLASH] = ACTIONS(2824), - [anon_sym_PERCENT] = ACTIONS(2824), - [anon_sym_LT] = ACTIONS(2824), - [anon_sym_GT] = ACTIONS(2824), - [anon_sym_EQ_EQ] = ACTIONS(2824), - [anon_sym_BANG_EQ] = ACTIONS(2824), - [anon_sym_LT_EQ] = ACTIONS(2824), - [anon_sym_GT_EQ] = ACTIONS(2824), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2824), - [anon_sym_LBRACK] = ACTIONS(2822), - [anon_sym_struct] = ACTIONS(2824), - [anon_sym_mut] = ACTIONS(2824), - [anon_sym_PLUS_PLUS] = ACTIONS(2824), - [anon_sym_DASH_DASH] = ACTIONS(2824), - [anon_sym_QMARK] = ACTIONS(2824), - [anon_sym_BANG] = ACTIONS(2824), - [anon_sym_go] = ACTIONS(2824), - [anon_sym_spawn] = ACTIONS(2824), - [anon_sym_json_DOTdecode] = ACTIONS(2824), - [anon_sym_LBRACK2] = ACTIONS(2824), - [anon_sym_TILDE] = ACTIONS(2824), - [anon_sym_CARET] = ACTIONS(2824), - [anon_sym_AMP] = ACTIONS(2824), - [anon_sym_LT_DASH] = ACTIONS(2824), - [anon_sym_LT_LT] = ACTIONS(2824), - [anon_sym_GT_GT] = ACTIONS(2824), - [anon_sym_GT_GT_GT] = ACTIONS(2824), - [anon_sym_AMP_CARET] = ACTIONS(2824), - [anon_sym_AMP_AMP] = ACTIONS(2824), - [anon_sym_PIPE_PIPE] = ACTIONS(2824), - [anon_sym_or] = ACTIONS(2824), - [sym_none] = ACTIONS(2824), - [sym_true] = ACTIONS(2824), - [sym_false] = ACTIONS(2824), - [sym_nil] = ACTIONS(2824), - [anon_sym_QMARK_DOT] = ACTIONS(2824), - [anon_sym_POUND_LBRACK] = ACTIONS(2824), - [anon_sym_if] = ACTIONS(2824), - [anon_sym_DOLLARif] = ACTIONS(2824), - [anon_sym_is] = ACTIONS(2824), - [anon_sym_BANGis] = ACTIONS(2824), - [anon_sym_in] = ACTIONS(2824), - [anon_sym_BANGin] = ACTIONS(2824), - [anon_sym_match] = ACTIONS(2824), - [anon_sym_select] = ACTIONS(2824), - [anon_sym_lock] = ACTIONS(2824), - [anon_sym_rlock] = ACTIONS(2824), - [anon_sym_unsafe] = ACTIONS(2824), - [anon_sym_sql] = ACTIONS(2824), - [sym_int_literal] = ACTIONS(2824), - [sym_float_literal] = ACTIONS(2824), - [sym_rune_literal] = ACTIONS(2824), - [sym_pseudo_compile_time_identifier] = ACTIONS(2824), - [anon_sym_shared] = ACTIONS(2824), - [anon_sym_map_LBRACK] = ACTIONS(2824), - [anon_sym_chan] = ACTIONS(2824), - [anon_sym_thread] = ACTIONS(2824), - [anon_sym_atomic] = ACTIONS(2824), - [sym___double_quote] = ACTIONS(2824), - [sym___single_quote] = ACTIONS(2824), - [sym___c_double_quote] = ACTIONS(2824), - [sym___c_single_quote] = ACTIONS(2824), - [sym___r_double_quote] = ACTIONS(2824), - [sym___r_single_quote] = ACTIONS(2824), + [sym_reference_expression] = STATE(4370), + [sym_type_reference_expression] = STATE(1909), + [sym_plain_type] = STATE(1973), + [sym__plain_type_without_special] = STATE(1945), + [sym_anon_struct_type] = STATE(1949), + [sym_multi_return_type] = STATE(1945), + [sym_result_type] = STATE(1945), + [sym_option_type] = STATE(1945), + [sym_qualified_type] = STATE(1909), + [sym_fixed_array_type] = STATE(1949), + [sym_array_type] = STATE(1949), + [sym_pointer_type] = STATE(1949), + [sym_wrong_pointer_type] = STATE(1949), + [sym_map_type] = STATE(1949), + [sym_channel_type] = STATE(1949), + [sym_shared_type] = STATE(1949), + [sym_thread_type] = STATE(1949), + [sym_atomic_type] = STATE(1949), + [sym_generic_type] = STATE(1949), + [sym_function_type] = STATE(1949), + [sym_identifier] = ACTIONS(3789), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_SEMI] = ACTIONS(585), + [anon_sym_DOT] = ACTIONS(585), + [anon_sym_as] = ACTIONS(589), + [anon_sym_LBRACE] = ACTIONS(585), + [anon_sym_COMMA] = ACTIONS(585), + [anon_sym_LPAREN] = ACTIONS(3791), + [anon_sym_EQ] = ACTIONS(589), + [anon_sym_PIPE] = ACTIONS(589), + [anon_sym_fn] = ACTIONS(3793), + [anon_sym_PLUS] = ACTIONS(589), + [anon_sym_DASH] = ACTIONS(589), + [anon_sym_STAR] = ACTIONS(3795), + [anon_sym_SLASH] = ACTIONS(589), + [anon_sym_PERCENT] = ACTIONS(589), + [anon_sym_LT] = ACTIONS(589), + [anon_sym_GT] = ACTIONS(589), + [anon_sym_EQ_EQ] = ACTIONS(585), + [anon_sym_BANG_EQ] = ACTIONS(585), + [anon_sym_LT_EQ] = ACTIONS(585), + [anon_sym_GT_EQ] = ACTIONS(585), + [anon_sym_LBRACK] = ACTIONS(585), + [anon_sym_struct] = ACTIONS(3797), + [anon_sym_PLUS_PLUS] = ACTIONS(585), + [anon_sym_DASH_DASH] = ACTIONS(585), + [anon_sym_QMARK] = ACTIONS(3799), + [anon_sym_BANG] = ACTIONS(3801), + [anon_sym_LBRACK2] = ACTIONS(3803), + [anon_sym_CARET] = ACTIONS(589), + [anon_sym_AMP] = ACTIONS(3805), + [anon_sym_LT_LT] = ACTIONS(589), + [anon_sym_GT_GT] = ACTIONS(589), + [anon_sym_GT_GT_GT] = ACTIONS(589), + [anon_sym_AMP_CARET] = ACTIONS(589), + [anon_sym_AMP_AMP] = ACTIONS(585), + [anon_sym_PIPE_PIPE] = ACTIONS(585), + [anon_sym_or] = ACTIONS(589), + [anon_sym_QMARK_DOT] = ACTIONS(585), + [anon_sym_POUND_LBRACK] = ACTIONS(585), + [anon_sym_is] = ACTIONS(589), + [anon_sym_BANGis] = ACTIONS(585), + [anon_sym_in] = ACTIONS(589), + [anon_sym_BANGin] = ACTIONS(585), + [anon_sym_STAR_EQ] = ACTIONS(585), + [anon_sym_SLASH_EQ] = ACTIONS(585), + [anon_sym_PERCENT_EQ] = ACTIONS(585), + [anon_sym_LT_LT_EQ] = ACTIONS(585), + [anon_sym_GT_GT_EQ] = ACTIONS(585), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(585), + [anon_sym_AMP_EQ] = ACTIONS(585), + [anon_sym_AMP_CARET_EQ] = ACTIONS(585), + [anon_sym_PLUS_EQ] = ACTIONS(585), + [anon_sym_DASH_EQ] = ACTIONS(585), + [anon_sym_PIPE_EQ] = ACTIONS(585), + [anon_sym_CARET_EQ] = ACTIONS(585), + [anon_sym_COLON_EQ] = ACTIONS(585), + [anon_sym_shared] = ACTIONS(3807), + [anon_sym_map_LBRACK] = ACTIONS(3809), + [anon_sym_chan] = ACTIONS(3811), + [anon_sym_thread] = ACTIONS(3813), + [anon_sym_atomic] = ACTIONS(3815), }, [1248] = { [sym_line_comment] = STATE(1248), [sym_block_comment] = STATE(1248), - [sym_identifier] = ACTIONS(2281), - [anon_sym_LF] = ACTIONS(2281), - [anon_sym_CR] = ACTIONS(2281), - [anon_sym_CR_LF] = ACTIONS(2281), - [anon_sym_SLASH_SLASH] = ACTIONS(497), - [anon_sym_SLASH_STAR] = ACTIONS(499), - [anon_sym_SEMI] = ACTIONS(2281), - [anon_sym_DOT] = ACTIONS(2281), - [anon_sym_as] = ACTIONS(2281), - [anon_sym_LBRACE] = ACTIONS(2281), - [anon_sym_COMMA] = ACTIONS(2281), - [anon_sym_RBRACE] = ACTIONS(2281), - [anon_sym_LPAREN] = ACTIONS(2281), - [anon_sym_RPAREN] = ACTIONS(2281), - [anon_sym_PIPE] = ACTIONS(2281), - [anon_sym_fn] = ACTIONS(2281), - [anon_sym_PLUS] = ACTIONS(2281), - [anon_sym_DASH] = ACTIONS(2281), - [anon_sym_STAR] = ACTIONS(2281), - [anon_sym_SLASH] = ACTIONS(2281), - [anon_sym_PERCENT] = ACTIONS(2281), - [anon_sym_LT] = ACTIONS(2281), - [anon_sym_GT] = ACTIONS(2281), - [anon_sym_EQ_EQ] = ACTIONS(2281), - [anon_sym_BANG_EQ] = ACTIONS(2281), - [anon_sym_LT_EQ] = ACTIONS(2281), - [anon_sym_GT_EQ] = ACTIONS(2281), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2281), - [anon_sym_LBRACK] = ACTIONS(2279), - [anon_sym_struct] = ACTIONS(2281), - [anon_sym_mut] = ACTIONS(2281), - [anon_sym_PLUS_PLUS] = ACTIONS(2281), - [anon_sym_DASH_DASH] = ACTIONS(2281), - [anon_sym_QMARK] = ACTIONS(2281), - [anon_sym_BANG] = ACTIONS(2281), - [anon_sym_go] = ACTIONS(2281), - [anon_sym_spawn] = ACTIONS(2281), - [anon_sym_json_DOTdecode] = ACTIONS(2281), - [anon_sym_LBRACK2] = ACTIONS(2281), - [anon_sym_TILDE] = ACTIONS(2281), - [anon_sym_CARET] = ACTIONS(2281), - [anon_sym_AMP] = ACTIONS(2281), - [anon_sym_LT_DASH] = ACTIONS(2281), - [anon_sym_LT_LT] = ACTIONS(2281), - [anon_sym_GT_GT] = ACTIONS(2281), - [anon_sym_GT_GT_GT] = ACTIONS(2281), - [anon_sym_AMP_CARET] = ACTIONS(2281), - [anon_sym_AMP_AMP] = ACTIONS(2281), - [anon_sym_PIPE_PIPE] = ACTIONS(2281), - [anon_sym_or] = ACTIONS(2281), - [sym_none] = ACTIONS(2281), - [sym_true] = ACTIONS(2281), - [sym_false] = ACTIONS(2281), - [sym_nil] = ACTIONS(2281), - [anon_sym_QMARK_DOT] = ACTIONS(2281), - [anon_sym_POUND_LBRACK] = ACTIONS(2281), - [anon_sym_if] = ACTIONS(2281), - [anon_sym_DOLLARif] = ACTIONS(2281), - [anon_sym_is] = ACTIONS(2281), - [anon_sym_BANGis] = ACTIONS(2281), - [anon_sym_in] = ACTIONS(2281), - [anon_sym_BANGin] = ACTIONS(2281), - [anon_sym_match] = ACTIONS(2281), - [anon_sym_select] = ACTIONS(2281), - [anon_sym_lock] = ACTIONS(2281), - [anon_sym_rlock] = ACTIONS(2281), - [anon_sym_unsafe] = ACTIONS(2281), - [anon_sym_sql] = ACTIONS(2281), - [sym_int_literal] = ACTIONS(2281), - [sym_float_literal] = ACTIONS(2281), - [sym_rune_literal] = ACTIONS(2281), - [sym_pseudo_compile_time_identifier] = ACTIONS(2281), - [anon_sym_shared] = ACTIONS(2281), - [anon_sym_map_LBRACK] = ACTIONS(2281), - [anon_sym_chan] = ACTIONS(2281), - [anon_sym_thread] = ACTIONS(2281), - [anon_sym_atomic] = ACTIONS(2281), - [sym___double_quote] = ACTIONS(2281), - [sym___single_quote] = ACTIONS(2281), - [sym___c_double_quote] = ACTIONS(2281), - [sym___c_single_quote] = ACTIONS(2281), - [sym___r_double_quote] = ACTIONS(2281), - [sym___r_single_quote] = ACTIONS(2281), + [sym_reference_expression] = STATE(4370), + [sym_type_reference_expression] = STATE(1909), + [sym_plain_type] = STATE(2038), + [sym__plain_type_without_special] = STATE(1945), + [sym_anon_struct_type] = STATE(1949), + [sym_multi_return_type] = STATE(1945), + [sym_result_type] = STATE(1945), + [sym_option_type] = STATE(1945), + [sym_qualified_type] = STATE(1909), + [sym_fixed_array_type] = STATE(1949), + [sym_array_type] = STATE(1949), + [sym_pointer_type] = STATE(1949), + [sym_wrong_pointer_type] = STATE(1949), + [sym_map_type] = STATE(1949), + [sym_channel_type] = STATE(1949), + [sym_shared_type] = STATE(1949), + [sym_thread_type] = STATE(1949), + [sym_atomic_type] = STATE(1949), + [sym_generic_type] = STATE(1949), + [sym_function_type] = STATE(1949), + [sym_identifier] = ACTIONS(3789), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_SEMI] = ACTIONS(617), + [anon_sym_DOT] = ACTIONS(617), + [anon_sym_as] = ACTIONS(619), + [anon_sym_LBRACE] = ACTIONS(617), + [anon_sym_COMMA] = ACTIONS(617), + [anon_sym_LPAREN] = ACTIONS(3791), + [anon_sym_EQ] = ACTIONS(619), + [anon_sym_PIPE] = ACTIONS(619), + [anon_sym_fn] = ACTIONS(3793), + [anon_sym_PLUS] = ACTIONS(619), + [anon_sym_DASH] = ACTIONS(619), + [anon_sym_STAR] = ACTIONS(3795), + [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(3797), + [anon_sym_PLUS_PLUS] = ACTIONS(617), + [anon_sym_DASH_DASH] = ACTIONS(617), + [anon_sym_QMARK] = ACTIONS(3799), + [anon_sym_BANG] = ACTIONS(3801), + [anon_sym_LBRACK2] = ACTIONS(3803), + [anon_sym_CARET] = ACTIONS(619), + [anon_sym_AMP] = ACTIONS(3805), + [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(3807), + [anon_sym_map_LBRACK] = ACTIONS(3809), + [anon_sym_chan] = ACTIONS(3811), + [anon_sym_thread] = ACTIONS(3813), + [anon_sym_atomic] = ACTIONS(3815), }, [1249] = { [sym_line_comment] = STATE(1249), [sym_block_comment] = STATE(1249), - [sym_reference_expression] = STATE(4495), - [sym_type_reference_expression] = STATE(3541), - [sym_plain_type] = STATE(2391), - [sym__plain_type_without_special] = STATE(2302), - [sym_anon_struct_type] = STATE(2303), - [sym_multi_return_type] = STATE(2302), - [sym_result_type] = STATE(2302), - [sym_option_type] = STATE(2302), - [sym_qualified_type] = STATE(3541), - [sym_fixed_array_type] = STATE(2303), - [sym_array_type] = STATE(2303), - [sym_pointer_type] = STATE(2303), - [sym_wrong_pointer_type] = STATE(2303), - [sym_map_type] = STATE(2303), - [sym_channel_type] = STATE(2303), - [sym_shared_type] = STATE(2303), - [sym_thread_type] = STATE(2303), - [sym_atomic_type] = STATE(2303), - [sym_generic_type] = STATE(2303), - [sym_function_type] = STATE(2303), - [sym_identifier] = ACTIONS(597), + [sym_reference_expression] = STATE(4370), + [sym_type_reference_expression] = STATE(1909), + [sym_plain_type] = STATE(2046), + [sym__plain_type_without_special] = STATE(1945), + [sym_anon_struct_type] = STATE(1949), + [sym_multi_return_type] = STATE(1945), + [sym_result_type] = STATE(1945), + [sym_option_type] = STATE(1945), + [sym_qualified_type] = STATE(1909), + [sym_fixed_array_type] = STATE(1949), + [sym_array_type] = STATE(1949), + [sym_pointer_type] = STATE(1949), + [sym_wrong_pointer_type] = STATE(1949), + [sym_map_type] = STATE(1949), + [sym_channel_type] = STATE(1949), + [sym_shared_type] = STATE(1949), + [sym_thread_type] = STATE(1949), + [sym_atomic_type] = STATE(1949), + [sym_generic_type] = STATE(1949), + [sym_function_type] = STATE(1949), + [sym_identifier] = ACTIONS(3789), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_SEMI] = ACTIONS(621), [anon_sym_DOT] = ACTIONS(621), [anon_sym_as] = ACTIONS(623), [anon_sym_LBRACE] = ACTIONS(621), [anon_sym_COMMA] = ACTIONS(621), - [anon_sym_LPAREN] = ACTIONS(621), + [anon_sym_LPAREN] = ACTIONS(3791), [anon_sym_EQ] = ACTIONS(623), [anon_sym_PIPE] = ACTIONS(623), - [anon_sym_fn] = ACTIONS(603), + [anon_sym_fn] = ACTIONS(3793), [anon_sym_PLUS] = ACTIONS(623), [anon_sym_DASH] = ACTIONS(623), - [anon_sym_STAR] = ACTIONS(623), + [anon_sym_STAR] = ACTIONS(3795), [anon_sym_SLASH] = ACTIONS(623), [anon_sym_PERCENT] = ACTIONS(623), [anon_sym_LT] = ACTIONS(623), @@ -160597,16 +160645,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT_EQ] = ACTIONS(621), [anon_sym_GT_EQ] = ACTIONS(621), [anon_sym_LBRACK] = ACTIONS(621), - [anon_sym_struct] = ACTIONS(607), - [anon_sym_COLON] = ACTIONS(621), + [anon_sym_struct] = ACTIONS(3797), [anon_sym_PLUS_PLUS] = ACTIONS(621), [anon_sym_DASH_DASH] = ACTIONS(621), - [anon_sym_QMARK] = ACTIONS(623), - [anon_sym_BANG] = ACTIONS(623), - [anon_sym_LBRACK2] = ACTIONS(623), + [anon_sym_QMARK] = ACTIONS(3799), + [anon_sym_BANG] = ACTIONS(3801), + [anon_sym_LBRACK2] = ACTIONS(3803), [anon_sym_CARET] = ACTIONS(623), - [anon_sym_AMP] = ACTIONS(623), - [anon_sym_LT_DASH] = ACTIONS(621), + [anon_sym_AMP] = ACTIONS(3805), [anon_sym_LT_LT] = ACTIONS(623), [anon_sym_GT_GT] = ACTIONS(623), [anon_sym_GT_GT_GT] = ACTIONS(623), @@ -160632,460 +160678,376 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH_EQ] = ACTIONS(621), [anon_sym_PIPE_EQ] = ACTIONS(621), [anon_sym_CARET_EQ] = ACTIONS(621), - [anon_sym_shared] = ACTIONS(615), - [anon_sym_map_LBRACK] = ACTIONS(85), - [anon_sym_chan] = ACTIONS(87), - [anon_sym_thread] = ACTIONS(89), - [anon_sym_atomic] = ACTIONS(91), + [anon_sym_COLON_EQ] = ACTIONS(621), + [anon_sym_shared] = ACTIONS(3807), + [anon_sym_map_LBRACK] = ACTIONS(3809), + [anon_sym_chan] = ACTIONS(3811), + [anon_sym_thread] = ACTIONS(3813), + [anon_sym_atomic] = ACTIONS(3815), }, [1250] = { [sym_line_comment] = STATE(1250), [sym_block_comment] = STATE(1250), - [sym_identifier] = ACTIONS(2525), - [anon_sym_LF] = ACTIONS(2525), - [anon_sym_CR] = ACTIONS(2525), - [anon_sym_CR_LF] = ACTIONS(2525), - [anon_sym_SLASH_SLASH] = ACTIONS(497), - [anon_sym_SLASH_STAR] = ACTIONS(499), - [anon_sym_SEMI] = ACTIONS(2525), - [anon_sym_DOT] = ACTIONS(2525), - [anon_sym_as] = ACTIONS(2525), - [anon_sym_LBRACE] = ACTIONS(2525), - [anon_sym_COMMA] = ACTIONS(2525), - [anon_sym_RBRACE] = ACTIONS(2525), - [anon_sym_LPAREN] = ACTIONS(2525), - [anon_sym_RPAREN] = ACTIONS(2525), - [anon_sym_PIPE] = ACTIONS(2525), - [anon_sym_fn] = ACTIONS(2525), - [anon_sym_PLUS] = ACTIONS(2525), - [anon_sym_DASH] = ACTIONS(2525), - [anon_sym_STAR] = ACTIONS(2525), - [anon_sym_SLASH] = ACTIONS(2525), - [anon_sym_PERCENT] = ACTIONS(2525), - [anon_sym_LT] = ACTIONS(2525), - [anon_sym_GT] = ACTIONS(2525), - [anon_sym_EQ_EQ] = ACTIONS(2525), - [anon_sym_BANG_EQ] = ACTIONS(2525), - [anon_sym_LT_EQ] = ACTIONS(2525), - [anon_sym_GT_EQ] = ACTIONS(2525), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2525), - [anon_sym_LBRACK] = ACTIONS(2523), - [anon_sym_struct] = ACTIONS(2525), - [anon_sym_mut] = ACTIONS(2525), - [anon_sym_PLUS_PLUS] = ACTIONS(2525), - [anon_sym_DASH_DASH] = ACTIONS(2525), - [anon_sym_QMARK] = ACTIONS(2525), - [anon_sym_BANG] = ACTIONS(3813), - [anon_sym_go] = ACTIONS(2525), - [anon_sym_spawn] = ACTIONS(2525), - [anon_sym_json_DOTdecode] = ACTIONS(2525), - [anon_sym_LBRACK2] = ACTIONS(2525), - [anon_sym_TILDE] = ACTIONS(2525), - [anon_sym_CARET] = ACTIONS(2525), - [anon_sym_AMP] = ACTIONS(2525), - [anon_sym_LT_DASH] = ACTIONS(2525), - [anon_sym_LT_LT] = ACTIONS(2525), - [anon_sym_GT_GT] = ACTIONS(2525), - [anon_sym_GT_GT_GT] = ACTIONS(2525), - [anon_sym_AMP_CARET] = ACTIONS(2525), - [anon_sym_AMP_AMP] = ACTIONS(2525), - [anon_sym_PIPE_PIPE] = ACTIONS(2525), - [anon_sym_or] = ACTIONS(2525), - [sym_none] = ACTIONS(2525), - [sym_true] = ACTIONS(2525), - [sym_false] = ACTIONS(2525), - [sym_nil] = ACTIONS(2525), - [anon_sym_QMARK_DOT] = ACTIONS(2525), - [anon_sym_POUND_LBRACK] = ACTIONS(2525), - [anon_sym_if] = ACTIONS(2525), - [anon_sym_DOLLARif] = ACTIONS(2525), - [anon_sym_is] = ACTIONS(2525), - [anon_sym_BANGis] = ACTIONS(2525), - [anon_sym_in] = ACTIONS(2525), - [anon_sym_BANGin] = ACTIONS(2525), - [anon_sym_match] = ACTIONS(2525), - [anon_sym_select] = ACTIONS(2525), - [anon_sym_lock] = ACTIONS(2525), - [anon_sym_rlock] = ACTIONS(2525), - [anon_sym_unsafe] = ACTIONS(2525), - [anon_sym_sql] = ACTIONS(2525), - [sym_int_literal] = ACTIONS(2525), - [sym_float_literal] = ACTIONS(2525), - [sym_rune_literal] = ACTIONS(2525), - [sym_pseudo_compile_time_identifier] = ACTIONS(2525), - [anon_sym_shared] = ACTIONS(2525), - [anon_sym_map_LBRACK] = ACTIONS(2525), - [anon_sym_chan] = ACTIONS(2525), - [anon_sym_thread] = ACTIONS(2525), - [anon_sym_atomic] = ACTIONS(2525), - [sym___double_quote] = ACTIONS(2525), - [sym___single_quote] = ACTIONS(2525), - [sym___c_double_quote] = ACTIONS(2525), - [sym___c_single_quote] = ACTIONS(2525), - [sym___r_double_quote] = ACTIONS(2525), - [sym___r_single_quote] = ACTIONS(2525), + [sym_reference_expression] = STATE(4498), + [sym_type_reference_expression] = STATE(3460), + [sym_plain_type] = STATE(2320), + [sym__plain_type_without_special] = STATE(2360), + [sym_anon_struct_type] = STATE(2362), + [sym_multi_return_type] = STATE(2360), + [sym_result_type] = STATE(2360), + [sym_option_type] = STATE(2360), + [sym_qualified_type] = STATE(3460), + [sym_fixed_array_type] = STATE(2362), + [sym_array_type] = STATE(2362), + [sym_pointer_type] = STATE(2362), + [sym_wrong_pointer_type] = STATE(2362), + [sym_map_type] = STATE(2362), + [sym_channel_type] = STATE(2362), + [sym_shared_type] = STATE(2362), + [sym_thread_type] = STATE(2362), + [sym_atomic_type] = STATE(2362), + [sym_generic_type] = STATE(2362), + [sym_function_type] = STATE(2362), + [sym_identifier] = ACTIONS(565), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(563), + [anon_sym_as] = ACTIONS(567), + [anon_sym_LBRACE] = ACTIONS(563), + [anon_sym_COMMA] = ACTIONS(563), + [anon_sym_LPAREN] = ACTIONS(3564), + [anon_sym_EQ] = ACTIONS(567), + [anon_sym_PIPE] = ACTIONS(567), + [anon_sym_fn] = ACTIONS(571), + [anon_sym_PLUS] = ACTIONS(567), + [anon_sym_DASH] = ACTIONS(567), + [anon_sym_STAR] = ACTIONS(573), + [anon_sym_SLASH] = ACTIONS(567), + [anon_sym_PERCENT] = ACTIONS(567), + [anon_sym_LT] = ACTIONS(567), + [anon_sym_GT] = ACTIONS(567), + [anon_sym_EQ_EQ] = ACTIONS(563), + [anon_sym_BANG_EQ] = ACTIONS(563), + [anon_sym_LT_EQ] = ACTIONS(563), + [anon_sym_GT_EQ] = ACTIONS(563), + [anon_sym_LBRACK] = ACTIONS(563), + [anon_sym_struct] = ACTIONS(575), + [anon_sym_COLON] = ACTIONS(563), + [anon_sym_PLUS_PLUS] = ACTIONS(563), + [anon_sym_DASH_DASH] = ACTIONS(563), + [anon_sym_QMARK] = ACTIONS(515), + [anon_sym_BANG] = ACTIONS(3817), + [anon_sym_LBRACK2] = ACTIONS(579), + [anon_sym_CARET] = ACTIONS(567), + [anon_sym_AMP] = ACTIONS(581), + [anon_sym_LT_DASH] = ACTIONS(563), + [anon_sym_LT_LT] = ACTIONS(567), + [anon_sym_GT_GT] = ACTIONS(567), + [anon_sym_GT_GT_GT] = ACTIONS(567), + [anon_sym_AMP_CARET] = ACTIONS(567), + [anon_sym_AMP_AMP] = ACTIONS(563), + [anon_sym_PIPE_PIPE] = ACTIONS(563), + [anon_sym_or] = ACTIONS(567), + [anon_sym_QMARK_DOT] = ACTIONS(563), + [anon_sym_POUND_LBRACK] = ACTIONS(563), + [anon_sym_is] = ACTIONS(567), + [anon_sym_BANGis] = ACTIONS(563), + [anon_sym_in] = ACTIONS(567), + [anon_sym_BANGin] = ACTIONS(563), + [anon_sym_STAR_EQ] = ACTIONS(563), + [anon_sym_SLASH_EQ] = ACTIONS(563), + [anon_sym_PERCENT_EQ] = ACTIONS(563), + [anon_sym_LT_LT_EQ] = ACTIONS(563), + [anon_sym_GT_GT_EQ] = ACTIONS(563), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(563), + [anon_sym_AMP_EQ] = ACTIONS(563), + [anon_sym_AMP_CARET_EQ] = ACTIONS(563), + [anon_sym_PLUS_EQ] = ACTIONS(563), + [anon_sym_DASH_EQ] = ACTIONS(563), + [anon_sym_PIPE_EQ] = ACTIONS(563), + [anon_sym_CARET_EQ] = ACTIONS(563), + [anon_sym_shared] = ACTIONS(583), + [anon_sym_map_LBRACK] = ACTIONS(85), + [anon_sym_chan] = ACTIONS(87), + [anon_sym_thread] = ACTIONS(89), + [anon_sym_atomic] = ACTIONS(91), }, [1251] = { [sym_line_comment] = STATE(1251), [sym_block_comment] = STATE(1251), - [sym_identifier] = ACTIONS(2836), - [anon_sym_LF] = ACTIONS(2836), - [anon_sym_CR] = ACTIONS(2836), - [anon_sym_CR_LF] = ACTIONS(2836), + [sym_identifier] = ACTIONS(2455), + [anon_sym_LF] = ACTIONS(2455), + [anon_sym_CR] = ACTIONS(2455), + [anon_sym_CR_LF] = ACTIONS(2455), [anon_sym_SLASH_SLASH] = ACTIONS(497), [anon_sym_SLASH_STAR] = ACTIONS(499), - [anon_sym_SEMI] = ACTIONS(2836), - [anon_sym_DOT] = ACTIONS(2836), - [anon_sym_as] = ACTIONS(2836), - [anon_sym_LBRACE] = ACTIONS(2836), - [anon_sym_COMMA] = ACTIONS(2836), - [anon_sym_RBRACE] = ACTIONS(2836), - [anon_sym_LPAREN] = ACTIONS(2836), - [anon_sym_RPAREN] = ACTIONS(2836), - [anon_sym_PIPE] = ACTIONS(2836), - [anon_sym_fn] = ACTIONS(2836), - [anon_sym_PLUS] = ACTIONS(2836), - [anon_sym_DASH] = ACTIONS(2836), - [anon_sym_STAR] = ACTIONS(2836), - [anon_sym_SLASH] = ACTIONS(2836), - [anon_sym_PERCENT] = ACTIONS(2836), - [anon_sym_LT] = ACTIONS(2836), - [anon_sym_GT] = ACTIONS(2836), - [anon_sym_EQ_EQ] = ACTIONS(2836), - [anon_sym_BANG_EQ] = ACTIONS(2836), - [anon_sym_LT_EQ] = ACTIONS(2836), - [anon_sym_GT_EQ] = ACTIONS(2836), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2836), - [anon_sym_LBRACK] = ACTIONS(2834), - [anon_sym_struct] = ACTIONS(2836), - [anon_sym_mut] = ACTIONS(2836), - [anon_sym_PLUS_PLUS] = ACTIONS(2836), - [anon_sym_DASH_DASH] = ACTIONS(2836), - [anon_sym_QMARK] = ACTIONS(2836), - [anon_sym_BANG] = ACTIONS(2836), - [anon_sym_go] = ACTIONS(2836), - [anon_sym_spawn] = ACTIONS(2836), - [anon_sym_json_DOTdecode] = ACTIONS(2836), - [anon_sym_LBRACK2] = ACTIONS(2836), - [anon_sym_TILDE] = ACTIONS(2836), - [anon_sym_CARET] = ACTIONS(2836), - [anon_sym_AMP] = ACTIONS(2836), - [anon_sym_LT_DASH] = ACTIONS(2836), - [anon_sym_LT_LT] = ACTIONS(2836), - [anon_sym_GT_GT] = ACTIONS(2836), - [anon_sym_GT_GT_GT] = ACTIONS(2836), - [anon_sym_AMP_CARET] = ACTIONS(2836), - [anon_sym_AMP_AMP] = ACTIONS(2836), - [anon_sym_PIPE_PIPE] = ACTIONS(2836), - [anon_sym_or] = ACTIONS(2836), - [sym_none] = ACTIONS(2836), - [sym_true] = ACTIONS(2836), - [sym_false] = ACTIONS(2836), - [sym_nil] = ACTIONS(2836), - [anon_sym_QMARK_DOT] = ACTIONS(2836), - [anon_sym_POUND_LBRACK] = ACTIONS(2836), - [anon_sym_if] = ACTIONS(2836), - [anon_sym_DOLLARif] = ACTIONS(2836), - [anon_sym_is] = ACTIONS(2836), - [anon_sym_BANGis] = ACTIONS(2836), - [anon_sym_in] = ACTIONS(2836), - [anon_sym_BANGin] = ACTIONS(2836), - [anon_sym_match] = ACTIONS(2836), - [anon_sym_select] = ACTIONS(2836), - [anon_sym_lock] = ACTIONS(2836), - [anon_sym_rlock] = ACTIONS(2836), - [anon_sym_unsafe] = ACTIONS(2836), - [anon_sym_sql] = ACTIONS(2836), - [sym_int_literal] = ACTIONS(2836), - [sym_float_literal] = ACTIONS(2836), - [sym_rune_literal] = ACTIONS(2836), - [sym_pseudo_compile_time_identifier] = ACTIONS(2836), - [anon_sym_shared] = ACTIONS(2836), - [anon_sym_map_LBRACK] = ACTIONS(2836), - [anon_sym_chan] = ACTIONS(2836), - [anon_sym_thread] = ACTIONS(2836), - [anon_sym_atomic] = ACTIONS(2836), - [sym___double_quote] = ACTIONS(2836), - [sym___single_quote] = ACTIONS(2836), - [sym___c_double_quote] = ACTIONS(2836), - [sym___c_single_quote] = ACTIONS(2836), - [sym___r_double_quote] = ACTIONS(2836), - [sym___r_single_quote] = ACTIONS(2836), + [anon_sym_SEMI] = ACTIONS(2455), + [anon_sym_DOT] = ACTIONS(2455), + [anon_sym_as] = ACTIONS(2455), + [anon_sym_LBRACE] = ACTIONS(2455), + [anon_sym_COMMA] = ACTIONS(2455), + [anon_sym_RBRACE] = ACTIONS(2455), + [anon_sym_LPAREN] = ACTIONS(2455), + [anon_sym_RPAREN] = ACTIONS(2455), + [anon_sym_PIPE] = ACTIONS(2455), + [anon_sym_fn] = ACTIONS(2455), + [anon_sym_PLUS] = ACTIONS(2455), + [anon_sym_DASH] = ACTIONS(2455), + [anon_sym_STAR] = ACTIONS(2455), + [anon_sym_SLASH] = ACTIONS(2455), + [anon_sym_PERCENT] = ACTIONS(2455), + [anon_sym_LT] = ACTIONS(2455), + [anon_sym_GT] = ACTIONS(2455), + [anon_sym_EQ_EQ] = ACTIONS(2455), + [anon_sym_BANG_EQ] = ACTIONS(2455), + [anon_sym_LT_EQ] = ACTIONS(2455), + [anon_sym_GT_EQ] = ACTIONS(2455), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2455), + [anon_sym_LBRACK] = ACTIONS(2453), + [anon_sym_struct] = ACTIONS(2455), + [anon_sym_mut] = ACTIONS(2455), + [anon_sym_PLUS_PLUS] = ACTIONS(2455), + [anon_sym_DASH_DASH] = ACTIONS(2455), + [anon_sym_QMARK] = ACTIONS(2455), + [anon_sym_BANG] = ACTIONS(2455), + [anon_sym_go] = ACTIONS(2455), + [anon_sym_spawn] = ACTIONS(2455), + [anon_sym_json_DOTdecode] = ACTIONS(2455), + [anon_sym_LBRACK2] = ACTIONS(2455), + [anon_sym_TILDE] = ACTIONS(2455), + [anon_sym_CARET] = ACTIONS(2455), + [anon_sym_AMP] = ACTIONS(2455), + [anon_sym_LT_DASH] = ACTIONS(2455), + [anon_sym_LT_LT] = ACTIONS(2455), + [anon_sym_GT_GT] = ACTIONS(2455), + [anon_sym_GT_GT_GT] = ACTIONS(2455), + [anon_sym_AMP_CARET] = ACTIONS(2455), + [anon_sym_AMP_AMP] = ACTIONS(2455), + [anon_sym_PIPE_PIPE] = ACTIONS(2455), + [anon_sym_or] = ACTIONS(2455), + [sym_none] = ACTIONS(2455), + [sym_true] = ACTIONS(2455), + [sym_false] = ACTIONS(2455), + [sym_nil] = ACTIONS(2455), + [anon_sym_QMARK_DOT] = ACTIONS(2455), + [anon_sym_POUND_LBRACK] = ACTIONS(2455), + [anon_sym_if] = ACTIONS(2455), + [anon_sym_DOLLARif] = ACTIONS(2455), + [anon_sym_is] = ACTIONS(2455), + [anon_sym_BANGis] = ACTIONS(2455), + [anon_sym_in] = ACTIONS(2455), + [anon_sym_BANGin] = ACTIONS(2455), + [anon_sym_match] = ACTIONS(2455), + [anon_sym_select] = ACTIONS(2455), + [anon_sym_lock] = ACTIONS(2455), + [anon_sym_rlock] = ACTIONS(2455), + [anon_sym_unsafe] = ACTIONS(2455), + [anon_sym_sql] = ACTIONS(2455), + [sym_int_literal] = ACTIONS(2455), + [sym_float_literal] = ACTIONS(2455), + [sym_rune_literal] = ACTIONS(2455), + [sym_pseudo_compile_time_identifier] = ACTIONS(2455), + [anon_sym_shared] = ACTIONS(2455), + [anon_sym_map_LBRACK] = ACTIONS(2455), + [anon_sym_chan] = ACTIONS(2455), + [anon_sym_thread] = ACTIONS(2455), + [anon_sym_atomic] = ACTIONS(2455), + [sym___double_quote] = ACTIONS(2455), + [sym___single_quote] = ACTIONS(2455), + [sym___c_double_quote] = ACTIONS(2455), + [sym___c_single_quote] = ACTIONS(2455), + [sym___r_double_quote] = ACTIONS(2455), + [sym___r_single_quote] = ACTIONS(2455), }, [1252] = { [sym_line_comment] = STATE(1252), [sym_block_comment] = STATE(1252), - [sym_identifier] = ACTIONS(2169), - [anon_sym_LF] = ACTIONS(2169), - [anon_sym_CR] = ACTIONS(2169), - [anon_sym_CR_LF] = ACTIONS(2169), + [sym_identifier] = ACTIONS(2513), + [anon_sym_LF] = ACTIONS(2513), + [anon_sym_CR] = ACTIONS(2513), + [anon_sym_CR_LF] = ACTIONS(2513), [anon_sym_SLASH_SLASH] = ACTIONS(497), [anon_sym_SLASH_STAR] = ACTIONS(499), - [anon_sym_SEMI] = ACTIONS(2169), - [anon_sym_DOT] = ACTIONS(2169), - [anon_sym_as] = ACTIONS(2169), - [anon_sym_LBRACE] = ACTIONS(2169), - [anon_sym_COMMA] = ACTIONS(2169), - [anon_sym_RBRACE] = ACTIONS(2169), - [anon_sym_LPAREN] = ACTIONS(2169), - [anon_sym_RPAREN] = ACTIONS(2169), - [anon_sym_PIPE] = ACTIONS(2169), - [anon_sym_fn] = ACTIONS(2169), - [anon_sym_PLUS] = ACTIONS(2169), - [anon_sym_DASH] = ACTIONS(2169), - [anon_sym_STAR] = ACTIONS(2169), - [anon_sym_SLASH] = ACTIONS(2169), - [anon_sym_PERCENT] = ACTIONS(2169), - [anon_sym_LT] = ACTIONS(2169), - [anon_sym_GT] = ACTIONS(2169), - [anon_sym_EQ_EQ] = ACTIONS(2169), - [anon_sym_BANG_EQ] = ACTIONS(2169), - [anon_sym_LT_EQ] = ACTIONS(2169), - [anon_sym_GT_EQ] = ACTIONS(2169), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2169), - [anon_sym_LBRACK] = ACTIONS(2167), - [anon_sym_struct] = ACTIONS(2169), - [anon_sym_mut] = ACTIONS(2169), - [anon_sym_PLUS_PLUS] = ACTIONS(2169), - [anon_sym_DASH_DASH] = ACTIONS(2169), - [anon_sym_QMARK] = ACTIONS(2169), - [anon_sym_BANG] = ACTIONS(2169), - [anon_sym_go] = ACTIONS(2169), - [anon_sym_spawn] = ACTIONS(2169), - [anon_sym_json_DOTdecode] = ACTIONS(2169), - [anon_sym_LBRACK2] = ACTIONS(2169), - [anon_sym_TILDE] = ACTIONS(2169), - [anon_sym_CARET] = ACTIONS(2169), - [anon_sym_AMP] = ACTIONS(2169), - [anon_sym_LT_DASH] = ACTIONS(2169), - [anon_sym_LT_LT] = ACTIONS(2169), - [anon_sym_GT_GT] = ACTIONS(2169), - [anon_sym_GT_GT_GT] = ACTIONS(2169), - [anon_sym_AMP_CARET] = ACTIONS(2169), - [anon_sym_AMP_AMP] = ACTIONS(2169), - [anon_sym_PIPE_PIPE] = ACTIONS(2169), - [anon_sym_or] = ACTIONS(2169), - [sym_none] = ACTIONS(2169), - [sym_true] = ACTIONS(2169), - [sym_false] = ACTIONS(2169), - [sym_nil] = ACTIONS(2169), - [anon_sym_QMARK_DOT] = ACTIONS(2169), - [anon_sym_POUND_LBRACK] = ACTIONS(2169), - [anon_sym_if] = ACTIONS(2169), - [anon_sym_DOLLARif] = ACTIONS(2169), - [anon_sym_is] = ACTIONS(2169), - [anon_sym_BANGis] = ACTIONS(2169), - [anon_sym_in] = ACTIONS(2169), - [anon_sym_BANGin] = ACTIONS(2169), - [anon_sym_match] = ACTIONS(2169), - [anon_sym_select] = ACTIONS(2169), - [anon_sym_lock] = ACTIONS(2169), - [anon_sym_rlock] = ACTIONS(2169), - [anon_sym_unsafe] = ACTIONS(2169), - [anon_sym_sql] = ACTIONS(2169), - [sym_int_literal] = ACTIONS(2169), - [sym_float_literal] = ACTIONS(2169), - [sym_rune_literal] = ACTIONS(2169), - [sym_pseudo_compile_time_identifier] = ACTIONS(2169), - [anon_sym_shared] = ACTIONS(2169), - [anon_sym_map_LBRACK] = ACTIONS(2169), - [anon_sym_chan] = ACTIONS(2169), - [anon_sym_thread] = ACTIONS(2169), - [anon_sym_atomic] = ACTIONS(2169), - [sym___double_quote] = ACTIONS(2169), - [sym___single_quote] = ACTIONS(2169), - [sym___c_double_quote] = ACTIONS(2169), - [sym___c_single_quote] = ACTIONS(2169), - [sym___r_double_quote] = ACTIONS(2169), - [sym___r_single_quote] = ACTIONS(2169), + [anon_sym_SEMI] = ACTIONS(2513), + [anon_sym_DOT] = ACTIONS(2515), + [anon_sym_as] = ACTIONS(2513), + [anon_sym_LBRACE] = ACTIONS(2513), + [anon_sym_COMMA] = ACTIONS(2513), + [anon_sym_LPAREN] = ACTIONS(2513), + [anon_sym_RPAREN] = ACTIONS(2513), + [anon_sym_PIPE] = ACTIONS(2513), + [anon_sym_fn] = ACTIONS(2513), + [anon_sym_PLUS] = ACTIONS(2513), + [anon_sym_DASH] = ACTIONS(2513), + [anon_sym_STAR] = ACTIONS(2513), + [anon_sym_SLASH] = ACTIONS(2513), + [anon_sym_PERCENT] = ACTIONS(2513), + [anon_sym_LT] = ACTIONS(2513), + [anon_sym_GT] = ACTIONS(2513), + [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_DOT_DOT_DOT] = ACTIONS(2513), + [anon_sym_LBRACK] = ACTIONS(2511), + [anon_sym_struct] = ACTIONS(2513), + [anon_sym_mut] = ACTIONS(2513), + [anon_sym_COLON] = ACTIONS(3819), + [anon_sym_PLUS_PLUS] = ACTIONS(2513), + [anon_sym_DASH_DASH] = ACTIONS(2513), + [anon_sym_QMARK] = ACTIONS(2513), + [anon_sym_BANG] = ACTIONS(2513), + [anon_sym_go] = ACTIONS(2513), + [anon_sym_spawn] = ACTIONS(2513), + [anon_sym_json_DOTdecode] = ACTIONS(2513), + [anon_sym_LBRACK2] = ACTIONS(2513), + [anon_sym_TILDE] = ACTIONS(2513), + [anon_sym_CARET] = ACTIONS(2513), + [anon_sym_AMP] = ACTIONS(2513), + [anon_sym_LT_DASH] = ACTIONS(2513), + [anon_sym_LT_LT] = ACTIONS(2513), + [anon_sym_GT_GT] = ACTIONS(2513), + [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(2513), + [sym_none] = ACTIONS(2513), + [sym_true] = ACTIONS(2513), + [sym_false] = ACTIONS(2513), + [sym_nil] = ACTIONS(2513), + [anon_sym_QMARK_DOT] = ACTIONS(2513), + [anon_sym_POUND_LBRACK] = ACTIONS(2513), + [anon_sym_if] = ACTIONS(2513), + [anon_sym_DOLLARif] = ACTIONS(2513), + [anon_sym_is] = ACTIONS(2513), + [anon_sym_BANGis] = ACTIONS(2513), + [anon_sym_in] = ACTIONS(2513), + [anon_sym_BANGin] = ACTIONS(2513), + [anon_sym_match] = ACTIONS(2513), + [anon_sym_select] = ACTIONS(2513), + [anon_sym_lock] = ACTIONS(2513), + [anon_sym_rlock] = ACTIONS(2513), + [anon_sym_unsafe] = ACTIONS(2513), + [anon_sym_sql] = ACTIONS(2513), + [sym_int_literal] = ACTIONS(2513), + [sym_float_literal] = ACTIONS(2513), + [sym_rune_literal] = ACTIONS(2513), + [sym_pseudo_compile_time_identifier] = ACTIONS(2513), + [anon_sym_shared] = ACTIONS(2513), + [anon_sym_map_LBRACK] = ACTIONS(2513), + [anon_sym_chan] = ACTIONS(2513), + [anon_sym_thread] = ACTIONS(2513), + [anon_sym_atomic] = ACTIONS(2513), + [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), }, [1253] = { [sym_line_comment] = STATE(1253), [sym_block_comment] = STATE(1253), - [sym_type_parameters] = STATE(4073), - [sym_argument_list] = STATE(1358), - [sym_or_block] = STATE(1359), - [sym_identifier] = ACTIONS(1777), - [anon_sym_SLASH_SLASH] = ACTIONS(3), - [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(3815), - [anon_sym_as] = ACTIONS(1777), - [anon_sym_LBRACE] = ACTIONS(1775), - [anon_sym_COMMA] = ACTIONS(1775), - [anon_sym_RBRACE] = ACTIONS(1775), - [anon_sym_LPAREN] = ACTIONS(3817), - [anon_sym_PIPE] = ACTIONS(1777), - [anon_sym_fn] = ACTIONS(1777), - [anon_sym_PLUS] = ACTIONS(1777), - [anon_sym_DASH] = ACTIONS(1777), - [anon_sym_STAR] = ACTIONS(1775), - [anon_sym_SLASH] = ACTIONS(1777), - [anon_sym_PERCENT] = ACTIONS(1775), - [anon_sym_LT] = ACTIONS(1777), - [anon_sym_GT] = ACTIONS(1777), - [anon_sym_EQ_EQ] = ACTIONS(1775), - [anon_sym_BANG_EQ] = ACTIONS(1775), - [anon_sym_LT_EQ] = ACTIONS(1775), - [anon_sym_GT_EQ] = ACTIONS(1775), - [anon_sym_LBRACK] = ACTIONS(3819), - [anon_sym_RBRACK] = ACTIONS(1775), - [anon_sym_struct] = ACTIONS(1777), - [anon_sym_mut] = ACTIONS(1777), - [anon_sym_COLON] = ACTIONS(1775), - [anon_sym_PLUS_PLUS] = ACTIONS(1775), - [anon_sym_DASH_DASH] = ACTIONS(1775), - [anon_sym_QMARK] = ACTIONS(3821), - [anon_sym_BANG] = ACTIONS(3823), - [anon_sym_go] = ACTIONS(1777), - [anon_sym_spawn] = ACTIONS(1777), - [anon_sym_json_DOTdecode] = ACTIONS(1775), - [anon_sym_LBRACK2] = ACTIONS(3825), - [anon_sym_TILDE] = ACTIONS(1775), - [anon_sym_CARET] = ACTIONS(1775), - [anon_sym_AMP] = ACTIONS(1777), - [anon_sym_LT_DASH] = ACTIONS(1775), - [anon_sym_LT_LT] = ACTIONS(1775), - [anon_sym_GT_GT] = ACTIONS(1777), - [anon_sym_GT_GT_GT] = ACTIONS(1775), - [anon_sym_AMP_CARET] = ACTIONS(1775), - [anon_sym_AMP_AMP] = ACTIONS(1775), - [anon_sym_PIPE_PIPE] = ACTIONS(1775), - [anon_sym_or] = ACTIONS(1777), - [sym_none] = ACTIONS(1777), - [sym_true] = ACTIONS(1777), - [sym_false] = ACTIONS(1777), - [sym_nil] = ACTIONS(1777), - [anon_sym_QMARK_DOT] = ACTIONS(3827), - [anon_sym_POUND_LBRACK] = ACTIONS(3829), - [anon_sym_if] = ACTIONS(1777), - [anon_sym_DOLLARif] = ACTIONS(1777), - [anon_sym_is] = ACTIONS(1777), - [anon_sym_BANGis] = ACTIONS(1775), - [anon_sym_in] = ACTIONS(1777), - [anon_sym_BANGin] = ACTIONS(1775), - [anon_sym_match] = ACTIONS(1777), - [anon_sym_select] = ACTIONS(1777), - [anon_sym_lock] = ACTIONS(1777), - [anon_sym_rlock] = ACTIONS(1777), - [anon_sym_unsafe] = ACTIONS(1777), - [anon_sym_sql] = ACTIONS(1777), - [sym_int_literal] = ACTIONS(1777), - [sym_float_literal] = ACTIONS(1775), - [sym_rune_literal] = ACTIONS(1775), - [sym_pseudo_compile_time_identifier] = ACTIONS(1777), - [anon_sym_shared] = ACTIONS(1777), - [anon_sym_map_LBRACK] = ACTIONS(1775), - [anon_sym_chan] = ACTIONS(1777), - [anon_sym_thread] = ACTIONS(1777), - [anon_sym_atomic] = ACTIONS(1777), - [sym___double_quote] = ACTIONS(1775), - [sym___single_quote] = ACTIONS(1775), - [sym___c_double_quote] = ACTIONS(1775), - [sym___c_single_quote] = ACTIONS(1775), - [sym___r_double_quote] = ACTIONS(1775), - [sym___r_single_quote] = ACTIONS(1775), + [sym_identifier] = ACTIONS(2459), + [anon_sym_LF] = ACTIONS(2459), + [anon_sym_CR] = ACTIONS(2459), + [anon_sym_CR_LF] = ACTIONS(2459), + [anon_sym_SLASH_SLASH] = ACTIONS(497), + [anon_sym_SLASH_STAR] = ACTIONS(499), + [anon_sym_SEMI] = ACTIONS(2459), + [anon_sym_DOT] = ACTIONS(2459), + [anon_sym_as] = ACTIONS(2459), + [anon_sym_LBRACE] = ACTIONS(2459), + [anon_sym_COMMA] = ACTIONS(2459), + [anon_sym_RBRACE] = ACTIONS(2459), + [anon_sym_LPAREN] = ACTIONS(2459), + [anon_sym_RPAREN] = ACTIONS(2459), + [anon_sym_PIPE] = ACTIONS(2459), + [anon_sym_fn] = ACTIONS(2459), + [anon_sym_PLUS] = ACTIONS(2459), + [anon_sym_DASH] = ACTIONS(2459), + [anon_sym_STAR] = ACTIONS(2459), + [anon_sym_SLASH] = ACTIONS(2459), + [anon_sym_PERCENT] = ACTIONS(2459), + [anon_sym_LT] = ACTIONS(2459), + [anon_sym_GT] = ACTIONS(2459), + [anon_sym_EQ_EQ] = ACTIONS(2459), + [anon_sym_BANG_EQ] = ACTIONS(2459), + [anon_sym_LT_EQ] = ACTIONS(2459), + [anon_sym_GT_EQ] = ACTIONS(2459), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2459), + [anon_sym_LBRACK] = ACTIONS(2457), + [anon_sym_struct] = ACTIONS(2459), + [anon_sym_mut] = ACTIONS(2459), + [anon_sym_PLUS_PLUS] = ACTIONS(2459), + [anon_sym_DASH_DASH] = ACTIONS(2459), + [anon_sym_QMARK] = ACTIONS(2459), + [anon_sym_BANG] = ACTIONS(2459), + [anon_sym_go] = ACTIONS(2459), + [anon_sym_spawn] = ACTIONS(2459), + [anon_sym_json_DOTdecode] = ACTIONS(2459), + [anon_sym_LBRACK2] = ACTIONS(2459), + [anon_sym_TILDE] = ACTIONS(2459), + [anon_sym_CARET] = ACTIONS(2459), + [anon_sym_AMP] = ACTIONS(2459), + [anon_sym_LT_DASH] = ACTIONS(2459), + [anon_sym_LT_LT] = ACTIONS(2459), + [anon_sym_GT_GT] = ACTIONS(2459), + [anon_sym_GT_GT_GT] = ACTIONS(2459), + [anon_sym_AMP_CARET] = ACTIONS(2459), + [anon_sym_AMP_AMP] = ACTIONS(2459), + [anon_sym_PIPE_PIPE] = ACTIONS(2459), + [anon_sym_or] = ACTIONS(2459), + [sym_none] = ACTIONS(2459), + [sym_true] = ACTIONS(2459), + [sym_false] = ACTIONS(2459), + [sym_nil] = ACTIONS(2459), + [anon_sym_QMARK_DOT] = ACTIONS(2459), + [anon_sym_POUND_LBRACK] = ACTIONS(2459), + [anon_sym_if] = ACTIONS(2459), + [anon_sym_DOLLARif] = ACTIONS(2459), + [anon_sym_is] = ACTIONS(2459), + [anon_sym_BANGis] = ACTIONS(2459), + [anon_sym_in] = ACTIONS(2459), + [anon_sym_BANGin] = ACTIONS(2459), + [anon_sym_match] = ACTIONS(2459), + [anon_sym_select] = ACTIONS(2459), + [anon_sym_lock] = ACTIONS(2459), + [anon_sym_rlock] = ACTIONS(2459), + [anon_sym_unsafe] = ACTIONS(2459), + [anon_sym_sql] = ACTIONS(2459), + [sym_int_literal] = ACTIONS(2459), + [sym_float_literal] = ACTIONS(2459), + [sym_rune_literal] = ACTIONS(2459), + [sym_pseudo_compile_time_identifier] = ACTIONS(2459), + [anon_sym_shared] = ACTIONS(2459), + [anon_sym_map_LBRACK] = ACTIONS(2459), + [anon_sym_chan] = ACTIONS(2459), + [anon_sym_thread] = ACTIONS(2459), + [anon_sym_atomic] = ACTIONS(2459), + [sym___double_quote] = ACTIONS(2459), + [sym___single_quote] = ACTIONS(2459), + [sym___c_double_quote] = ACTIONS(2459), + [sym___c_single_quote] = ACTIONS(2459), + [sym___r_double_quote] = ACTIONS(2459), + [sym___r_single_quote] = ACTIONS(2459), }, [1254] = { [sym_line_comment] = STATE(1254), [sym_block_comment] = STATE(1254), - [sym_identifier] = ACTIONS(2253), - [anon_sym_LF] = ACTIONS(2253), - [anon_sym_CR] = ACTIONS(2253), - [anon_sym_CR_LF] = ACTIONS(2253), - [anon_sym_SLASH_SLASH] = ACTIONS(497), - [anon_sym_SLASH_STAR] = ACTIONS(499), - [anon_sym_SEMI] = ACTIONS(2253), - [anon_sym_DOT] = ACTIONS(2253), - [anon_sym_as] = ACTIONS(2253), - [anon_sym_LBRACE] = ACTIONS(2253), - [anon_sym_COMMA] = ACTIONS(2253), - [anon_sym_LPAREN] = ACTIONS(2253), - [anon_sym_RPAREN] = ACTIONS(2253), - [anon_sym_PIPE] = ACTIONS(2253), - [anon_sym_fn] = ACTIONS(2253), - [anon_sym_PLUS] = ACTIONS(2253), - [anon_sym_DASH] = ACTIONS(2253), - [anon_sym_STAR] = ACTIONS(2253), - [anon_sym_SLASH] = ACTIONS(2253), - [anon_sym_PERCENT] = ACTIONS(2253), - [anon_sym_LT] = ACTIONS(2253), - [anon_sym_GT] = ACTIONS(2253), - [anon_sym_EQ_EQ] = ACTIONS(2253), - [anon_sym_BANG_EQ] = ACTIONS(2253), - [anon_sym_LT_EQ] = ACTIONS(2253), - [anon_sym_GT_EQ] = ACTIONS(2253), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2253), - [anon_sym_LBRACK] = ACTIONS(2256), - [anon_sym_struct] = ACTIONS(2253), - [anon_sym_mut] = ACTIONS(2253), - [anon_sym_PLUS_PLUS] = ACTIONS(2253), - [anon_sym_DASH_DASH] = ACTIONS(2253), - [anon_sym_QMARK] = ACTIONS(2253), - [anon_sym_BANG] = ACTIONS(2253), - [anon_sym_go] = ACTIONS(2253), - [anon_sym_spawn] = ACTIONS(2253), - [anon_sym_json_DOTdecode] = ACTIONS(2253), - [anon_sym_LBRACK2] = ACTIONS(2253), - [anon_sym_TILDE] = ACTIONS(2253), - [anon_sym_CARET] = ACTIONS(2253), - [anon_sym_AMP] = ACTIONS(2253), - [anon_sym_LT_DASH] = ACTIONS(2253), - [anon_sym_LT_LT] = ACTIONS(2253), - [anon_sym_GT_GT] = ACTIONS(2253), - [anon_sym_GT_GT_GT] = ACTIONS(2253), - [anon_sym_AMP_CARET] = ACTIONS(2253), - [anon_sym_AMP_AMP] = ACTIONS(2253), - [anon_sym_PIPE_PIPE] = ACTIONS(2253), - [anon_sym_or] = ACTIONS(2253), - [sym_none] = ACTIONS(2253), - [sym_true] = ACTIONS(2253), - [sym_false] = ACTIONS(2253), - [sym_nil] = ACTIONS(2253), - [anon_sym_QMARK_DOT] = ACTIONS(2253), - [anon_sym_POUND_LBRACK] = ACTIONS(2253), - [anon_sym_if] = ACTIONS(2253), - [anon_sym_DOLLARif] = ACTIONS(2253), - [anon_sym_is] = ACTIONS(2253), - [anon_sym_BANGis] = ACTIONS(2253), - [anon_sym_in] = ACTIONS(2253), - [anon_sym_BANGin] = ACTIONS(2253), - [anon_sym_match] = ACTIONS(2253), - [anon_sym_select] = ACTIONS(2253), - [anon_sym_lock] = ACTIONS(2253), - [anon_sym_rlock] = ACTIONS(2253), - [anon_sym_unsafe] = ACTIONS(2253), - [anon_sym_sql] = ACTIONS(2253), - [sym_int_literal] = ACTIONS(2253), - [sym_float_literal] = ACTIONS(2253), - [sym_rune_literal] = ACTIONS(2253), - [sym_pseudo_compile_time_identifier] = ACTIONS(2253), - [anon_sym_shared] = ACTIONS(2253), - [anon_sym_map_LBRACK] = ACTIONS(2253), - [anon_sym_chan] = ACTIONS(2253), - [anon_sym_thread] = ACTIONS(2253), - [anon_sym_atomic] = ACTIONS(2253), - [sym___double_quote] = ACTIONS(2253), - [sym___single_quote] = ACTIONS(2253), - [sym___c_double_quote] = ACTIONS(2253), - [sym___c_single_quote] = ACTIONS(2253), - [sym___r_double_quote] = ACTIONS(2253), - [sym___r_single_quote] = ACTIONS(2253), - }, - [1255] = { - [sym_line_comment] = STATE(1255), - [sym_block_comment] = STATE(1255), - [sym_type_parameters] = STATE(4073), - [sym_argument_list] = STATE(1358), - [sym_or_block] = STATE(1359), + [sym_type_parameters] = STATE(4093), + [sym_argument_list] = STATE(1361), + [sym_or_block] = STATE(1362), [sym_identifier] = ACTIONS(1765), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(3815), + [anon_sym_DOT] = ACTIONS(3821), [anon_sym_as] = ACTIONS(1765), [anon_sym_LBRACE] = ACTIONS(1763), [anon_sym_COMMA] = ACTIONS(1763), [anon_sym_RBRACE] = ACTIONS(1763), - [anon_sym_LPAREN] = ACTIONS(3817), + [anon_sym_LPAREN] = ACTIONS(3823), [anon_sym_PIPE] = ACTIONS(1765), [anon_sym_fn] = ACTIONS(1765), [anon_sym_PLUS] = ACTIONS(1765), @@ -161099,19 +161061,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BANG_EQ] = ACTIONS(1763), [anon_sym_LT_EQ] = ACTIONS(1763), [anon_sym_GT_EQ] = ACTIONS(1763), - [anon_sym_LBRACK] = ACTIONS(3819), + [anon_sym_LBRACK] = ACTIONS(3825), [anon_sym_RBRACK] = ACTIONS(1763), [anon_sym_struct] = ACTIONS(1765), [anon_sym_mut] = ACTIONS(1765), [anon_sym_COLON] = ACTIONS(1763), [anon_sym_PLUS_PLUS] = ACTIONS(1763), [anon_sym_DASH_DASH] = ACTIONS(1763), - [anon_sym_QMARK] = ACTIONS(3821), - [anon_sym_BANG] = ACTIONS(3823), + [anon_sym_QMARK] = ACTIONS(3827), + [anon_sym_BANG] = ACTIONS(3829), [anon_sym_go] = ACTIONS(1765), [anon_sym_spawn] = ACTIONS(1765), [anon_sym_json_DOTdecode] = ACTIONS(1763), - [anon_sym_LBRACK2] = ACTIONS(3825), + [anon_sym_LBRACK2] = ACTIONS(3831), [anon_sym_TILDE] = ACTIONS(1763), [anon_sym_CARET] = ACTIONS(1763), [anon_sym_AMP] = ACTIONS(1765), @@ -161127,8 +161089,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_true] = ACTIONS(1765), [sym_false] = ACTIONS(1765), [sym_nil] = ACTIONS(1765), - [anon_sym_QMARK_DOT] = ACTIONS(3827), - [anon_sym_POUND_LBRACK] = ACTIONS(3829), + [anon_sym_QMARK_DOT] = ACTIONS(3833), + [anon_sym_POUND_LBRACK] = ACTIONS(3835), [anon_sym_if] = ACTIONS(1765), [anon_sym_DOLLARif] = ACTIONS(1765), [anon_sym_is] = ACTIONS(1765), @@ -161157,107 +161119,107 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym___r_double_quote] = ACTIONS(1763), [sym___r_single_quote] = ACTIONS(1763), }, + [1255] = { + [sym_line_comment] = STATE(1255), + [sym_block_comment] = STATE(1255), + [sym_identifier] = ACTIONS(2219), + [anon_sym_LF] = ACTIONS(2219), + [anon_sym_CR] = ACTIONS(2219), + [anon_sym_CR_LF] = ACTIONS(2219), + [anon_sym_SLASH_SLASH] = ACTIONS(497), + [anon_sym_SLASH_STAR] = ACTIONS(499), + [anon_sym_SEMI] = ACTIONS(2219), + [anon_sym_DOT] = ACTIONS(2219), + [anon_sym_as] = ACTIONS(2219), + [anon_sym_LBRACE] = ACTIONS(2219), + [anon_sym_COMMA] = ACTIONS(2219), + [anon_sym_LPAREN] = ACTIONS(2219), + [anon_sym_RPAREN] = ACTIONS(2219), + [anon_sym_PIPE] = ACTIONS(2219), + [anon_sym_fn] = ACTIONS(2219), + [anon_sym_PLUS] = ACTIONS(2219), + [anon_sym_DASH] = ACTIONS(2219), + [anon_sym_STAR] = ACTIONS(2219), + [anon_sym_SLASH] = ACTIONS(2219), + [anon_sym_PERCENT] = ACTIONS(2219), + [anon_sym_LT] = ACTIONS(2219), + [anon_sym_GT] = ACTIONS(2219), + [anon_sym_EQ_EQ] = ACTIONS(2219), + [anon_sym_BANG_EQ] = ACTIONS(2219), + [anon_sym_LT_EQ] = ACTIONS(2219), + [anon_sym_GT_EQ] = ACTIONS(2219), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2219), + [anon_sym_LBRACK] = ACTIONS(2222), + [anon_sym_struct] = ACTIONS(2219), + [anon_sym_mut] = ACTIONS(2219), + [anon_sym_PLUS_PLUS] = ACTIONS(2219), + [anon_sym_DASH_DASH] = ACTIONS(2219), + [anon_sym_QMARK] = ACTIONS(2219), + [anon_sym_BANG] = ACTIONS(2219), + [anon_sym_go] = ACTIONS(2219), + [anon_sym_spawn] = ACTIONS(2219), + [anon_sym_json_DOTdecode] = ACTIONS(2219), + [anon_sym_LBRACK2] = ACTIONS(2219), + [anon_sym_TILDE] = ACTIONS(2219), + [anon_sym_CARET] = ACTIONS(2219), + [anon_sym_AMP] = ACTIONS(2219), + [anon_sym_LT_DASH] = ACTIONS(2219), + [anon_sym_LT_LT] = ACTIONS(2219), + [anon_sym_GT_GT] = ACTIONS(2219), + [anon_sym_GT_GT_GT] = ACTIONS(2219), + [anon_sym_AMP_CARET] = ACTIONS(2219), + [anon_sym_AMP_AMP] = ACTIONS(2219), + [anon_sym_PIPE_PIPE] = ACTIONS(2219), + [anon_sym_or] = ACTIONS(2219), + [sym_none] = ACTIONS(2219), + [sym_true] = ACTIONS(2219), + [sym_false] = ACTIONS(2219), + [sym_nil] = ACTIONS(2219), + [anon_sym_QMARK_DOT] = ACTIONS(2219), + [anon_sym_POUND_LBRACK] = ACTIONS(2219), + [anon_sym_if] = ACTIONS(2219), + [anon_sym_DOLLARif] = ACTIONS(2219), + [anon_sym_is] = ACTIONS(2219), + [anon_sym_BANGis] = ACTIONS(2219), + [anon_sym_in] = ACTIONS(2219), + [anon_sym_BANGin] = ACTIONS(2219), + [anon_sym_match] = ACTIONS(2219), + [anon_sym_select] = ACTIONS(2219), + [anon_sym_lock] = ACTIONS(2219), + [anon_sym_rlock] = ACTIONS(2219), + [anon_sym_unsafe] = ACTIONS(2219), + [anon_sym_sql] = ACTIONS(2219), + [sym_int_literal] = ACTIONS(2219), + [sym_float_literal] = ACTIONS(2219), + [sym_rune_literal] = ACTIONS(2219), + [sym_pseudo_compile_time_identifier] = ACTIONS(2219), + [anon_sym_shared] = ACTIONS(2219), + [anon_sym_map_LBRACK] = ACTIONS(2219), + [anon_sym_chan] = ACTIONS(2219), + [anon_sym_thread] = ACTIONS(2219), + [anon_sym_atomic] = ACTIONS(2219), + [sym___double_quote] = ACTIONS(2219), + [sym___single_quote] = ACTIONS(2219), + [sym___c_double_quote] = ACTIONS(2219), + [sym___c_single_quote] = ACTIONS(2219), + [sym___r_double_quote] = ACTIONS(2219), + [sym___r_single_quote] = ACTIONS(2219), + }, [1256] = { [sym_line_comment] = STATE(1256), [sym_block_comment] = STATE(1256), - [sym_reference_expression] = STATE(4495), - [sym_type_reference_expression] = STATE(3541), - [sym_plain_type] = STATE(2386), - [sym__plain_type_without_special] = STATE(2302), - [sym_anon_struct_type] = STATE(2303), - [sym_multi_return_type] = STATE(2302), - [sym_result_type] = STATE(2302), - [sym_option_type] = STATE(2302), - [sym_qualified_type] = STATE(3541), - [sym_fixed_array_type] = STATE(2303), - [sym_array_type] = STATE(2303), - [sym_pointer_type] = STATE(2303), - [sym_wrong_pointer_type] = STATE(2303), - [sym_map_type] = STATE(2303), - [sym_channel_type] = STATE(2303), - [sym_shared_type] = STATE(2303), - [sym_thread_type] = STATE(2303), - [sym_atomic_type] = STATE(2303), - [sym_generic_type] = STATE(2303), - [sym_function_type] = STATE(2303), - [sym_identifier] = ACTIONS(597), - [anon_sym_SLASH_SLASH] = ACTIONS(3), - [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_SEMI] = ACTIONS(595), - [anon_sym_DOT] = ACTIONS(595), - [anon_sym_as] = ACTIONS(599), - [anon_sym_COMMA] = ACTIONS(595), - [anon_sym_LPAREN] = ACTIONS(3586), - [anon_sym_EQ] = ACTIONS(599), - [anon_sym_PIPE] = ACTIONS(599), - [anon_sym_fn] = ACTIONS(603), - [anon_sym_PLUS] = ACTIONS(599), - [anon_sym_DASH] = ACTIONS(599), - [anon_sym_STAR] = ACTIONS(605), - [anon_sym_SLASH] = ACTIONS(599), - [anon_sym_PERCENT] = ACTIONS(599), - [anon_sym_LT] = ACTIONS(599), - [anon_sym_GT] = ACTIONS(599), - [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(607), - [anon_sym_PLUS_PLUS] = ACTIONS(595), - [anon_sym_DASH_DASH] = ACTIONS(595), - [anon_sym_QMARK] = ACTIONS(515), - [anon_sym_BANG] = ACTIONS(3831), - [anon_sym_LBRACK2] = ACTIONS(611), - [anon_sym_CARET] = ACTIONS(599), - [anon_sym_AMP] = ACTIONS(613), - [anon_sym_LT_LT] = ACTIONS(599), - [anon_sym_GT_GT] = ACTIONS(599), - [anon_sym_GT_GT_GT] = ACTIONS(599), - [anon_sym_AMP_CARET] = ACTIONS(599), - [anon_sym_AMP_AMP] = ACTIONS(595), - [anon_sym_PIPE_PIPE] = ACTIONS(595), - [anon_sym_or] = ACTIONS(599), - [anon_sym_QMARK_DOT] = ACTIONS(595), - [anon_sym_POUND_LBRACK] = ACTIONS(595), - [anon_sym_is] = ACTIONS(599), - [anon_sym_BANGis] = ACTIONS(595), - [anon_sym_in] = ACTIONS(599), - [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(615), - [anon_sym_map_LBRACK] = ACTIONS(85), - [anon_sym_chan] = ACTIONS(87), - [anon_sym_thread] = ACTIONS(89), - [anon_sym_atomic] = ACTIONS(91), - }, - [1257] = { - [sym_line_comment] = STATE(1257), - [sym_block_comment] = STATE(1257), - [sym_type_parameters] = STATE(4073), - [sym_argument_list] = STATE(1358), - [sym_or_block] = STATE(1359), + [sym_type_parameters] = STATE(4093), + [sym_argument_list] = STATE(1361), + [sym_or_block] = STATE(1362), [sym_identifier] = ACTIONS(1785), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(3815), + [anon_sym_DOT] = ACTIONS(3821), [anon_sym_as] = ACTIONS(1785), [anon_sym_LBRACE] = ACTIONS(1783), [anon_sym_COMMA] = ACTIONS(1783), [anon_sym_RBRACE] = ACTIONS(1783), - [anon_sym_LPAREN] = ACTIONS(3817), + [anon_sym_LPAREN] = ACTIONS(3823), [anon_sym_PIPE] = ACTIONS(1785), [anon_sym_fn] = ACTIONS(1785), [anon_sym_PLUS] = ACTIONS(1785), @@ -161271,19 +161233,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BANG_EQ] = ACTIONS(1783), [anon_sym_LT_EQ] = ACTIONS(1783), [anon_sym_GT_EQ] = ACTIONS(1783), - [anon_sym_LBRACK] = ACTIONS(3819), + [anon_sym_LBRACK] = ACTIONS(3825), [anon_sym_RBRACK] = ACTIONS(1783), [anon_sym_struct] = ACTIONS(1785), [anon_sym_mut] = ACTIONS(1785), [anon_sym_COLON] = ACTIONS(1783), [anon_sym_PLUS_PLUS] = ACTIONS(1783), [anon_sym_DASH_DASH] = ACTIONS(1783), - [anon_sym_QMARK] = ACTIONS(3821), - [anon_sym_BANG] = ACTIONS(3823), + [anon_sym_QMARK] = ACTIONS(3827), + [anon_sym_BANG] = ACTIONS(3829), [anon_sym_go] = ACTIONS(1785), [anon_sym_spawn] = ACTIONS(1785), [anon_sym_json_DOTdecode] = ACTIONS(1783), - [anon_sym_LBRACK2] = ACTIONS(3825), + [anon_sym_LBRACK2] = ACTIONS(3831), [anon_sym_TILDE] = ACTIONS(1783), [anon_sym_CARET] = ACTIONS(1783), [anon_sym_AMP] = ACTIONS(1785), @@ -161299,8 +161261,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_true] = ACTIONS(1785), [sym_false] = ACTIONS(1785), [sym_nil] = ACTIONS(1785), - [anon_sym_QMARK_DOT] = ACTIONS(3827), - [anon_sym_POUND_LBRACK] = ACTIONS(3829), + [anon_sym_QMARK_DOT] = ACTIONS(3833), + [anon_sym_POUND_LBRACK] = ACTIONS(3835), [anon_sym_if] = ACTIONS(1785), [anon_sym_DOLLARif] = ACTIONS(1785), [anon_sym_is] = ACTIONS(1785), @@ -161329,180 +161291,352 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym___r_double_quote] = ACTIONS(1783), [sym___r_single_quote] = ACTIONS(1783), }, + [1257] = { + [sym_line_comment] = STATE(1257), + [sym_block_comment] = STATE(1257), + [sym_reference_expression] = STATE(4498), + [sym_type_reference_expression] = STATE(3460), + [sym_plain_type] = STATE(2320), + [sym__plain_type_without_special] = STATE(2360), + [sym_anon_struct_type] = STATE(2362), + [sym_multi_return_type] = STATE(2360), + [sym_result_type] = STATE(2360), + [sym_option_type] = STATE(2360), + [sym_qualified_type] = STATE(3460), + [sym_fixed_array_type] = STATE(2362), + [sym_array_type] = STATE(2362), + [sym_pointer_type] = STATE(2362), + [sym_wrong_pointer_type] = STATE(2362), + [sym_map_type] = STATE(2362), + [sym_channel_type] = STATE(2362), + [sym_shared_type] = STATE(2362), + [sym_thread_type] = STATE(2362), + [sym_atomic_type] = STATE(2362), + [sym_generic_type] = STATE(2362), + [sym_function_type] = STATE(2362), + [sym_identifier] = ACTIONS(565), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_SEMI] = ACTIONS(563), + [anon_sym_DOT] = ACTIONS(563), + [anon_sym_as] = ACTIONS(567), + [anon_sym_COMMA] = ACTIONS(563), + [anon_sym_LPAREN] = ACTIONS(3564), + [anon_sym_EQ] = ACTIONS(567), + [anon_sym_PIPE] = ACTIONS(567), + [anon_sym_fn] = ACTIONS(571), + [anon_sym_PLUS] = ACTIONS(567), + [anon_sym_DASH] = ACTIONS(567), + [anon_sym_STAR] = ACTIONS(573), + [anon_sym_SLASH] = ACTIONS(567), + [anon_sym_PERCENT] = ACTIONS(567), + [anon_sym_LT] = ACTIONS(567), + [anon_sym_GT] = ACTIONS(567), + [anon_sym_EQ_EQ] = ACTIONS(563), + [anon_sym_BANG_EQ] = ACTIONS(563), + [anon_sym_LT_EQ] = ACTIONS(563), + [anon_sym_GT_EQ] = ACTIONS(563), + [anon_sym_LBRACK] = ACTIONS(563), + [anon_sym_struct] = ACTIONS(575), + [anon_sym_PLUS_PLUS] = ACTIONS(563), + [anon_sym_DASH_DASH] = ACTIONS(563), + [anon_sym_QMARK] = ACTIONS(515), + [anon_sym_BANG] = ACTIONS(3837), + [anon_sym_LBRACK2] = ACTIONS(579), + [anon_sym_CARET] = ACTIONS(567), + [anon_sym_AMP] = ACTIONS(581), + [anon_sym_LT_LT] = ACTIONS(567), + [anon_sym_GT_GT] = ACTIONS(567), + [anon_sym_GT_GT_GT] = ACTIONS(567), + [anon_sym_AMP_CARET] = ACTIONS(567), + [anon_sym_AMP_AMP] = ACTIONS(563), + [anon_sym_PIPE_PIPE] = ACTIONS(563), + [anon_sym_or] = ACTIONS(567), + [anon_sym_QMARK_DOT] = ACTIONS(563), + [anon_sym_POUND_LBRACK] = ACTIONS(563), + [anon_sym_is] = ACTIONS(567), + [anon_sym_BANGis] = ACTIONS(563), + [anon_sym_in] = ACTIONS(567), + [anon_sym_BANGin] = ACTIONS(563), + [anon_sym_STAR_EQ] = ACTIONS(563), + [anon_sym_SLASH_EQ] = ACTIONS(563), + [anon_sym_PERCENT_EQ] = ACTIONS(563), + [anon_sym_LT_LT_EQ] = ACTIONS(563), + [anon_sym_GT_GT_EQ] = ACTIONS(563), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(563), + [anon_sym_AMP_EQ] = ACTIONS(563), + [anon_sym_AMP_CARET_EQ] = ACTIONS(563), + [anon_sym_PLUS_EQ] = ACTIONS(563), + [anon_sym_DASH_EQ] = ACTIONS(563), + [anon_sym_PIPE_EQ] = ACTIONS(563), + [anon_sym_CARET_EQ] = ACTIONS(563), + [anon_sym_COLON_EQ] = ACTIONS(563), + [anon_sym_shared] = ACTIONS(583), + [anon_sym_map_LBRACK] = ACTIONS(85), + [anon_sym_chan] = ACTIONS(87), + [anon_sym_thread] = ACTIONS(89), + [anon_sym_atomic] = ACTIONS(91), + }, [1258] = { [sym_line_comment] = STATE(1258), [sym_block_comment] = STATE(1258), - [sym_type_parameters] = STATE(4073), - [sym_argument_list] = STATE(1358), - [sym_or_block] = STATE(1359), - [sym_format_specifier] = STATE(4069), - [sym_identifier] = ACTIONS(3833), + [sym_type_parameters] = STATE(4093), + [sym_argument_list] = STATE(1361), + [sym_or_block] = STATE(1362), + [sym_identifier] = ACTIONS(1769), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(3815), - [anon_sym_as] = ACTIONS(3835), - [anon_sym_LBRACE] = ACTIONS(3837), - [anon_sym_RBRACE] = ACTIONS(3837), - [anon_sym_LPAREN] = ACTIONS(3817), - [anon_sym_PIPE] = ACTIONS(3839), - [anon_sym_fn] = ACTIONS(3833), - [anon_sym_PLUS] = ACTIONS(3839), - [anon_sym_DASH] = ACTIONS(3839), - [anon_sym_STAR] = ACTIONS(3841), - [anon_sym_SLASH] = ACTIONS(3843), - [anon_sym_PERCENT] = ACTIONS(3841), - [anon_sym_LT] = ACTIONS(3845), - [anon_sym_GT] = ACTIONS(3845), - [anon_sym_EQ_EQ] = ACTIONS(3847), - [anon_sym_BANG_EQ] = ACTIONS(3847), - [anon_sym_LT_EQ] = ACTIONS(3847), - [anon_sym_GT_EQ] = ACTIONS(3847), - [anon_sym_LBRACK] = ACTIONS(3819), - [anon_sym_struct] = ACTIONS(3833), - [anon_sym_mut] = ACTIONS(3833), - [anon_sym_COLON] = ACTIONS(3849), - [anon_sym_PLUS_PLUS] = ACTIONS(3851), - [anon_sym_DASH_DASH] = ACTIONS(3853), - [anon_sym_QMARK] = ACTIONS(3821), - [anon_sym_BANG] = ACTIONS(3823), - [anon_sym_go] = ACTIONS(3833), - [anon_sym_spawn] = ACTIONS(3833), - [anon_sym_json_DOTdecode] = ACTIONS(3837), - [anon_sym_LBRACK2] = ACTIONS(3825), - [anon_sym_TILDE] = ACTIONS(3837), - [anon_sym_CARET] = ACTIONS(3855), - [anon_sym_AMP] = ACTIONS(3843), - [anon_sym_LT_DASH] = ACTIONS(3837), - [anon_sym_LT_LT] = ACTIONS(3841), - [anon_sym_GT_GT] = ACTIONS(3843), - [anon_sym_GT_GT_GT] = ACTIONS(3841), - [anon_sym_AMP_CARET] = ACTIONS(3841), - [anon_sym_AMP_AMP] = ACTIONS(3857), - [anon_sym_PIPE_PIPE] = ACTIONS(3859), - [anon_sym_or] = ACTIONS(3861), - [sym_none] = ACTIONS(3833), - [sym_true] = ACTIONS(3833), - [sym_false] = ACTIONS(3833), - [sym_nil] = ACTIONS(3833), - [anon_sym_QMARK_DOT] = ACTIONS(3827), - [anon_sym_POUND_LBRACK] = ACTIONS(3829), - [anon_sym_if] = ACTIONS(3833), - [anon_sym_DOLLARif] = ACTIONS(3833), - [anon_sym_is] = ACTIONS(3863), - [anon_sym_BANGis] = ACTIONS(3865), - [anon_sym_in] = ACTIONS(3867), - [anon_sym_BANGin] = ACTIONS(3869), - [anon_sym_match] = ACTIONS(3833), - [anon_sym_select] = ACTIONS(3833), - [anon_sym_lock] = ACTIONS(3833), - [anon_sym_rlock] = ACTIONS(3833), - [anon_sym_unsafe] = ACTIONS(3833), - [anon_sym_sql] = ACTIONS(3833), - [sym_int_literal] = ACTIONS(3833), - [sym_float_literal] = ACTIONS(3837), - [sym_rune_literal] = ACTIONS(3837), - [sym_pseudo_compile_time_identifier] = ACTIONS(3833), - [anon_sym_shared] = ACTIONS(3833), - [anon_sym_map_LBRACK] = ACTIONS(3837), - [anon_sym_chan] = ACTIONS(3833), - [anon_sym_thread] = ACTIONS(3833), - [anon_sym_atomic] = ACTIONS(3833), - [sym___double_quote] = ACTIONS(3837), - [sym___single_quote] = ACTIONS(3837), - [sym___c_double_quote] = ACTIONS(3837), - [sym___c_single_quote] = ACTIONS(3837), - [sym___r_double_quote] = ACTIONS(3837), - [sym___r_single_quote] = ACTIONS(3837), + [anon_sym_DOT] = ACTIONS(3821), + [anon_sym_as] = ACTIONS(1769), + [anon_sym_LBRACE] = ACTIONS(1767), + [anon_sym_COMMA] = ACTIONS(1767), + [anon_sym_RBRACE] = ACTIONS(1767), + [anon_sym_LPAREN] = ACTIONS(3823), + [anon_sym_PIPE] = ACTIONS(1769), + [anon_sym_fn] = ACTIONS(1769), + [anon_sym_PLUS] = ACTIONS(1769), + [anon_sym_DASH] = ACTIONS(1769), + [anon_sym_STAR] = ACTIONS(1767), + [anon_sym_SLASH] = ACTIONS(1769), + [anon_sym_PERCENT] = ACTIONS(1767), + [anon_sym_LT] = ACTIONS(1769), + [anon_sym_GT] = ACTIONS(1769), + [anon_sym_EQ_EQ] = ACTIONS(1767), + [anon_sym_BANG_EQ] = ACTIONS(1767), + [anon_sym_LT_EQ] = ACTIONS(1767), + [anon_sym_GT_EQ] = ACTIONS(1767), + [anon_sym_LBRACK] = ACTIONS(3825), + [anon_sym_RBRACK] = ACTIONS(1767), + [anon_sym_struct] = ACTIONS(1769), + [anon_sym_mut] = ACTIONS(1769), + [anon_sym_COLON] = ACTIONS(1767), + [anon_sym_PLUS_PLUS] = ACTIONS(1767), + [anon_sym_DASH_DASH] = ACTIONS(1767), + [anon_sym_QMARK] = ACTIONS(3827), + [anon_sym_BANG] = ACTIONS(3829), + [anon_sym_go] = ACTIONS(1769), + [anon_sym_spawn] = ACTIONS(1769), + [anon_sym_json_DOTdecode] = ACTIONS(1767), + [anon_sym_LBRACK2] = ACTIONS(3831), + [anon_sym_TILDE] = ACTIONS(1767), + [anon_sym_CARET] = ACTIONS(1767), + [anon_sym_AMP] = ACTIONS(1769), + [anon_sym_LT_DASH] = ACTIONS(1767), + [anon_sym_LT_LT] = ACTIONS(1767), + [anon_sym_GT_GT] = ACTIONS(1769), + [anon_sym_GT_GT_GT] = ACTIONS(1767), + [anon_sym_AMP_CARET] = ACTIONS(1767), + [anon_sym_AMP_AMP] = ACTIONS(1767), + [anon_sym_PIPE_PIPE] = ACTIONS(1767), + [anon_sym_or] = ACTIONS(1769), + [sym_none] = ACTIONS(1769), + [sym_true] = ACTIONS(1769), + [sym_false] = ACTIONS(1769), + [sym_nil] = ACTIONS(1769), + [anon_sym_QMARK_DOT] = ACTIONS(3833), + [anon_sym_POUND_LBRACK] = ACTIONS(3835), + [anon_sym_if] = ACTIONS(1769), + [anon_sym_DOLLARif] = ACTIONS(1769), + [anon_sym_is] = ACTIONS(1769), + [anon_sym_BANGis] = ACTIONS(1767), + [anon_sym_in] = ACTIONS(1769), + [anon_sym_BANGin] = ACTIONS(1767), + [anon_sym_match] = ACTIONS(1769), + [anon_sym_select] = ACTIONS(1769), + [anon_sym_lock] = ACTIONS(1769), + [anon_sym_rlock] = ACTIONS(1769), + [anon_sym_unsafe] = ACTIONS(1769), + [anon_sym_sql] = ACTIONS(1769), + [sym_int_literal] = ACTIONS(1769), + [sym_float_literal] = ACTIONS(1767), + [sym_rune_literal] = ACTIONS(1767), + [sym_pseudo_compile_time_identifier] = ACTIONS(1769), + [anon_sym_shared] = ACTIONS(1769), + [anon_sym_map_LBRACK] = ACTIONS(1767), + [anon_sym_chan] = ACTIONS(1769), + [anon_sym_thread] = ACTIONS(1769), + [anon_sym_atomic] = ACTIONS(1769), + [sym___double_quote] = ACTIONS(1767), + [sym___single_quote] = ACTIONS(1767), + [sym___c_double_quote] = ACTIONS(1767), + [sym___c_single_quote] = ACTIONS(1767), + [sym___r_double_quote] = ACTIONS(1767), + [sym___r_single_quote] = ACTIONS(1767), }, [1259] = { [sym_line_comment] = STATE(1259), [sym_block_comment] = STATE(1259), - [sym_type_parameters] = STATE(4073), - [sym_argument_list] = STATE(1358), - [sym_or_block] = STATE(1359), - [sym_format_specifier] = STATE(4273), - [sym_identifier] = ACTIONS(3833), + [sym_type_parameters] = STATE(4093), + [sym_argument_list] = STATE(1361), + [sym_or_block] = STATE(1362), + [sym_format_specifier] = STATE(4105), + [sym_identifier] = ACTIONS(3839), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(3815), - [anon_sym_as] = ACTIONS(3835), - [anon_sym_LBRACE] = ACTIONS(3837), - [anon_sym_RBRACE] = ACTIONS(3837), - [anon_sym_LPAREN] = ACTIONS(3817), - [anon_sym_PIPE] = ACTIONS(3839), - [anon_sym_fn] = ACTIONS(3833), - [anon_sym_PLUS] = ACTIONS(3839), - [anon_sym_DASH] = ACTIONS(3839), - [anon_sym_STAR] = ACTIONS(3841), - [anon_sym_SLASH] = ACTIONS(3843), - [anon_sym_PERCENT] = ACTIONS(3841), - [anon_sym_LT] = ACTIONS(3845), - [anon_sym_GT] = ACTIONS(3845), - [anon_sym_EQ_EQ] = ACTIONS(3847), - [anon_sym_BANG_EQ] = ACTIONS(3847), - [anon_sym_LT_EQ] = ACTIONS(3847), - [anon_sym_GT_EQ] = ACTIONS(3847), - [anon_sym_LBRACK] = ACTIONS(3819), - [anon_sym_struct] = ACTIONS(3833), - [anon_sym_mut] = ACTIONS(3833), - [anon_sym_COLON] = ACTIONS(3849), - [anon_sym_PLUS_PLUS] = ACTIONS(3851), - [anon_sym_DASH_DASH] = ACTIONS(3853), - [anon_sym_QMARK] = ACTIONS(3821), - [anon_sym_BANG] = ACTIONS(3823), - [anon_sym_go] = ACTIONS(3833), - [anon_sym_spawn] = ACTIONS(3833), - [anon_sym_json_DOTdecode] = ACTIONS(3837), - [anon_sym_LBRACK2] = ACTIONS(3825), - [anon_sym_TILDE] = ACTIONS(3837), - [anon_sym_CARET] = ACTIONS(3855), - [anon_sym_AMP] = ACTIONS(3843), - [anon_sym_LT_DASH] = ACTIONS(3837), - [anon_sym_LT_LT] = ACTIONS(3841), - [anon_sym_GT_GT] = ACTIONS(3843), - [anon_sym_GT_GT_GT] = ACTIONS(3841), - [anon_sym_AMP_CARET] = ACTIONS(3841), - [anon_sym_AMP_AMP] = ACTIONS(3857), - [anon_sym_PIPE_PIPE] = ACTIONS(3859), - [anon_sym_or] = ACTIONS(3861), - [sym_none] = ACTIONS(3833), - [sym_true] = ACTIONS(3833), - [sym_false] = ACTIONS(3833), - [sym_nil] = ACTIONS(3833), - [anon_sym_QMARK_DOT] = ACTIONS(3827), - [anon_sym_POUND_LBRACK] = ACTIONS(3829), - [anon_sym_if] = ACTIONS(3833), - [anon_sym_DOLLARif] = ACTIONS(3833), - [anon_sym_is] = ACTIONS(3863), - [anon_sym_BANGis] = ACTIONS(3865), - [anon_sym_in] = ACTIONS(3867), - [anon_sym_BANGin] = ACTIONS(3869), - [anon_sym_match] = ACTIONS(3833), - [anon_sym_select] = ACTIONS(3833), - [anon_sym_lock] = ACTIONS(3833), - [anon_sym_rlock] = ACTIONS(3833), - [anon_sym_unsafe] = ACTIONS(3833), - [anon_sym_sql] = ACTIONS(3833), - [sym_int_literal] = ACTIONS(3833), - [sym_float_literal] = ACTIONS(3837), - [sym_rune_literal] = ACTIONS(3837), - [sym_pseudo_compile_time_identifier] = ACTIONS(3833), - [anon_sym_shared] = ACTIONS(3833), - [anon_sym_map_LBRACK] = ACTIONS(3837), - [anon_sym_chan] = ACTIONS(3833), - [anon_sym_thread] = ACTIONS(3833), - [anon_sym_atomic] = ACTIONS(3833), - [sym___double_quote] = ACTIONS(3837), - [sym___single_quote] = ACTIONS(3837), - [sym___c_double_quote] = ACTIONS(3837), - [sym___c_single_quote] = ACTIONS(3837), - [sym___r_double_quote] = ACTIONS(3837), - [sym___r_single_quote] = ACTIONS(3837), + [anon_sym_DOT] = ACTIONS(3821), + [anon_sym_as] = ACTIONS(3841), + [anon_sym_LBRACE] = ACTIONS(3843), + [anon_sym_RBRACE] = ACTIONS(3843), + [anon_sym_LPAREN] = ACTIONS(3823), + [anon_sym_PIPE] = ACTIONS(3845), + [anon_sym_fn] = ACTIONS(3839), + [anon_sym_PLUS] = ACTIONS(3845), + [anon_sym_DASH] = ACTIONS(3845), + [anon_sym_STAR] = ACTIONS(3847), + [anon_sym_SLASH] = ACTIONS(3849), + [anon_sym_PERCENT] = ACTIONS(3847), + [anon_sym_LT] = ACTIONS(3851), + [anon_sym_GT] = ACTIONS(3851), + [anon_sym_EQ_EQ] = ACTIONS(3853), + [anon_sym_BANG_EQ] = ACTIONS(3853), + [anon_sym_LT_EQ] = ACTIONS(3853), + [anon_sym_GT_EQ] = ACTIONS(3853), + [anon_sym_LBRACK] = ACTIONS(3825), + [anon_sym_struct] = ACTIONS(3839), + [anon_sym_mut] = ACTIONS(3839), + [anon_sym_COLON] = ACTIONS(3855), + [anon_sym_PLUS_PLUS] = ACTIONS(3857), + [anon_sym_DASH_DASH] = ACTIONS(3859), + [anon_sym_QMARK] = ACTIONS(3827), + [anon_sym_BANG] = ACTIONS(3829), + [anon_sym_go] = ACTIONS(3839), + [anon_sym_spawn] = ACTIONS(3839), + [anon_sym_json_DOTdecode] = ACTIONS(3843), + [anon_sym_LBRACK2] = ACTIONS(3831), + [anon_sym_TILDE] = ACTIONS(3843), + [anon_sym_CARET] = ACTIONS(3861), + [anon_sym_AMP] = ACTIONS(3849), + [anon_sym_LT_DASH] = ACTIONS(3843), + [anon_sym_LT_LT] = ACTIONS(3847), + [anon_sym_GT_GT] = ACTIONS(3849), + [anon_sym_GT_GT_GT] = ACTIONS(3847), + [anon_sym_AMP_CARET] = ACTIONS(3847), + [anon_sym_AMP_AMP] = ACTIONS(3863), + [anon_sym_PIPE_PIPE] = ACTIONS(3865), + [anon_sym_or] = ACTIONS(3867), + [sym_none] = ACTIONS(3839), + [sym_true] = ACTIONS(3839), + [sym_false] = ACTIONS(3839), + [sym_nil] = ACTIONS(3839), + [anon_sym_QMARK_DOT] = ACTIONS(3833), + [anon_sym_POUND_LBRACK] = ACTIONS(3835), + [anon_sym_if] = ACTIONS(3839), + [anon_sym_DOLLARif] = ACTIONS(3839), + [anon_sym_is] = ACTIONS(3869), + [anon_sym_BANGis] = ACTIONS(3871), + [anon_sym_in] = ACTIONS(3873), + [anon_sym_BANGin] = ACTIONS(3875), + [anon_sym_match] = ACTIONS(3839), + [anon_sym_select] = ACTIONS(3839), + [anon_sym_lock] = ACTIONS(3839), + [anon_sym_rlock] = ACTIONS(3839), + [anon_sym_unsafe] = ACTIONS(3839), + [anon_sym_sql] = ACTIONS(3839), + [sym_int_literal] = ACTIONS(3839), + [sym_float_literal] = ACTIONS(3843), + [sym_rune_literal] = ACTIONS(3843), + [sym_pseudo_compile_time_identifier] = ACTIONS(3839), + [anon_sym_shared] = ACTIONS(3839), + [anon_sym_map_LBRACK] = ACTIONS(3843), + [anon_sym_chan] = ACTIONS(3839), + [anon_sym_thread] = ACTIONS(3839), + [anon_sym_atomic] = ACTIONS(3839), + [sym___double_quote] = ACTIONS(3843), + [sym___single_quote] = ACTIONS(3843), + [sym___c_double_quote] = ACTIONS(3843), + [sym___c_single_quote] = ACTIONS(3843), + [sym___r_double_quote] = ACTIONS(3843), + [sym___r_single_quote] = ACTIONS(3843), }, [1260] = { [sym_line_comment] = STATE(1260), [sym_block_comment] = STATE(1260), - [sym_else_branch] = STATE(1325), + [sym_type_parameters] = STATE(4093), + [sym_argument_list] = STATE(1361), + [sym_or_block] = STATE(1362), + [sym_format_specifier] = STATE(4072), + [sym_identifier] = ACTIONS(3839), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(3821), + [anon_sym_as] = ACTIONS(3841), + [anon_sym_LBRACE] = ACTIONS(3843), + [anon_sym_RBRACE] = ACTIONS(3843), + [anon_sym_LPAREN] = ACTIONS(3823), + [anon_sym_PIPE] = ACTIONS(3845), + [anon_sym_fn] = ACTIONS(3839), + [anon_sym_PLUS] = ACTIONS(3845), + [anon_sym_DASH] = ACTIONS(3845), + [anon_sym_STAR] = ACTIONS(3847), + [anon_sym_SLASH] = ACTIONS(3849), + [anon_sym_PERCENT] = ACTIONS(3847), + [anon_sym_LT] = ACTIONS(3851), + [anon_sym_GT] = ACTIONS(3851), + [anon_sym_EQ_EQ] = ACTIONS(3853), + [anon_sym_BANG_EQ] = ACTIONS(3853), + [anon_sym_LT_EQ] = ACTIONS(3853), + [anon_sym_GT_EQ] = ACTIONS(3853), + [anon_sym_LBRACK] = ACTIONS(3825), + [anon_sym_struct] = ACTIONS(3839), + [anon_sym_mut] = ACTIONS(3839), + [anon_sym_COLON] = ACTIONS(3855), + [anon_sym_PLUS_PLUS] = ACTIONS(3857), + [anon_sym_DASH_DASH] = ACTIONS(3859), + [anon_sym_QMARK] = ACTIONS(3827), + [anon_sym_BANG] = ACTIONS(3829), + [anon_sym_go] = ACTIONS(3839), + [anon_sym_spawn] = ACTIONS(3839), + [anon_sym_json_DOTdecode] = ACTIONS(3843), + [anon_sym_LBRACK2] = ACTIONS(3831), + [anon_sym_TILDE] = ACTIONS(3843), + [anon_sym_CARET] = ACTIONS(3861), + [anon_sym_AMP] = ACTIONS(3849), + [anon_sym_LT_DASH] = ACTIONS(3843), + [anon_sym_LT_LT] = ACTIONS(3847), + [anon_sym_GT_GT] = ACTIONS(3849), + [anon_sym_GT_GT_GT] = ACTIONS(3847), + [anon_sym_AMP_CARET] = ACTIONS(3847), + [anon_sym_AMP_AMP] = ACTIONS(3863), + [anon_sym_PIPE_PIPE] = ACTIONS(3865), + [anon_sym_or] = ACTIONS(3867), + [sym_none] = ACTIONS(3839), + [sym_true] = ACTIONS(3839), + [sym_false] = ACTIONS(3839), + [sym_nil] = ACTIONS(3839), + [anon_sym_QMARK_DOT] = ACTIONS(3833), + [anon_sym_POUND_LBRACK] = ACTIONS(3835), + [anon_sym_if] = ACTIONS(3839), + [anon_sym_DOLLARif] = ACTIONS(3839), + [anon_sym_is] = ACTIONS(3869), + [anon_sym_BANGis] = ACTIONS(3871), + [anon_sym_in] = ACTIONS(3873), + [anon_sym_BANGin] = ACTIONS(3875), + [anon_sym_match] = ACTIONS(3839), + [anon_sym_select] = ACTIONS(3839), + [anon_sym_lock] = ACTIONS(3839), + [anon_sym_rlock] = ACTIONS(3839), + [anon_sym_unsafe] = ACTIONS(3839), + [anon_sym_sql] = ACTIONS(3839), + [sym_int_literal] = ACTIONS(3839), + [sym_float_literal] = ACTIONS(3843), + [sym_rune_literal] = ACTIONS(3843), + [sym_pseudo_compile_time_identifier] = ACTIONS(3839), + [anon_sym_shared] = ACTIONS(3839), + [anon_sym_map_LBRACK] = ACTIONS(3843), + [anon_sym_chan] = ACTIONS(3839), + [anon_sym_thread] = ACTIONS(3839), + [anon_sym_atomic] = ACTIONS(3839), + [sym___double_quote] = ACTIONS(3843), + [sym___single_quote] = ACTIONS(3843), + [sym___c_double_quote] = ACTIONS(3843), + [sym___c_single_quote] = ACTIONS(3843), + [sym___r_double_quote] = ACTIONS(3843), + [sym___r_single_quote] = ACTIONS(3843), + }, + [1261] = { + [sym_line_comment] = STATE(1261), + [sym_block_comment] = STATE(1261), + [sym_else_branch] = STATE(1381), [sym_identifier] = ACTIONS(1799), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), @@ -161556,7 +161690,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_QMARK_DOT] = ACTIONS(1797), [anon_sym_POUND_LBRACK] = ACTIONS(1797), [anon_sym_if] = ACTIONS(1799), - [anon_sym_else] = ACTIONS(3871), + [anon_sym_else] = ACTIONS(3877), [anon_sym_DOLLARif] = ACTIONS(1799), [anon_sym_is] = ACTIONS(1799), [anon_sym_BANGis] = ACTIONS(1797), @@ -161584,10 +161718,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym___r_double_quote] = ACTIONS(1797), [sym___r_single_quote] = ACTIONS(1797), }, - [1261] = { - [sym_line_comment] = STATE(1261), - [sym_block_comment] = STATE(1261), - [sym_else_branch] = STATE(1332), + [1262] = { + [sym_line_comment] = STATE(1262), + [sym_block_comment] = STATE(1262), + [sym_else_branch] = STATE(1379), [sym_identifier] = ACTIONS(1805), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), @@ -161641,7 +161775,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_QMARK_DOT] = ACTIONS(1803), [anon_sym_POUND_LBRACK] = ACTIONS(1803), [anon_sym_if] = ACTIONS(1805), - [anon_sym_else] = ACTIONS(3871), + [anon_sym_else] = ACTIONS(3877), [anon_sym_DOLLARif] = ACTIONS(1805), [anon_sym_is] = ACTIONS(1805), [anon_sym_BANGis] = ACTIONS(1803), @@ -161669,9 +161803,177 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym___r_double_quote] = ACTIONS(1803), [sym___r_single_quote] = ACTIONS(1803), }, - [1262] = { - [sym_line_comment] = STATE(1262), - [sym_block_comment] = STATE(1262), + [1263] = { + [sym_line_comment] = STATE(1263), + [sym_block_comment] = STATE(1263), + [sym_identifier] = ACTIONS(1913), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(1913), + [anon_sym_as] = ACTIONS(1913), + [anon_sym_LBRACE] = ACTIONS(1911), + [anon_sym_COMMA] = ACTIONS(1911), + [anon_sym_RBRACE] = ACTIONS(1911), + [anon_sym_LPAREN] = ACTIONS(1911), + [anon_sym_PIPE] = ACTIONS(1913), + [anon_sym_fn] = ACTIONS(1913), + [anon_sym_PLUS] = ACTIONS(1913), + [anon_sym_DASH] = ACTIONS(1913), + [anon_sym_STAR] = ACTIONS(1911), + [anon_sym_SLASH] = ACTIONS(1913), + [anon_sym_PERCENT] = ACTIONS(1911), + [anon_sym_LT] = ACTIONS(1913), + [anon_sym_GT] = ACTIONS(1913), + [anon_sym_EQ_EQ] = ACTIONS(1911), + [anon_sym_BANG_EQ] = ACTIONS(1911), + [anon_sym_LT_EQ] = ACTIONS(1911), + [anon_sym_GT_EQ] = ACTIONS(1911), + [anon_sym_LBRACK] = ACTIONS(1911), + [anon_sym_RBRACK] = ACTIONS(1911), + [anon_sym_struct] = ACTIONS(1913), + [anon_sym_mut] = ACTIONS(1913), + [anon_sym_COLON] = ACTIONS(1911), + [anon_sym_PLUS_PLUS] = ACTIONS(1911), + [anon_sym_DASH_DASH] = ACTIONS(1911), + [anon_sym_QMARK] = ACTIONS(1913), + [anon_sym_BANG] = ACTIONS(1913), + [anon_sym_go] = ACTIONS(1913), + [anon_sym_spawn] = ACTIONS(1913), + [anon_sym_json_DOTdecode] = ACTIONS(1911), + [anon_sym_LBRACK2] = ACTIONS(1913), + [anon_sym_TILDE] = ACTIONS(1911), + [anon_sym_CARET] = ACTIONS(1911), + [anon_sym_AMP] = ACTIONS(1913), + [anon_sym_LT_DASH] = ACTIONS(1911), + [anon_sym_LT_LT] = ACTIONS(1911), + [anon_sym_GT_GT] = ACTIONS(1913), + [anon_sym_GT_GT_GT] = ACTIONS(1911), + [anon_sym_AMP_CARET] = ACTIONS(1911), + [anon_sym_AMP_AMP] = ACTIONS(1911), + [anon_sym_PIPE_PIPE] = ACTIONS(1911), + [anon_sym_or] = ACTIONS(1913), + [sym_none] = ACTIONS(1913), + [sym_true] = ACTIONS(1913), + [sym_false] = ACTIONS(1913), + [sym_nil] = ACTIONS(1913), + [anon_sym_QMARK_DOT] = ACTIONS(1911), + [anon_sym_POUND_LBRACK] = ACTIONS(1911), + [anon_sym_if] = ACTIONS(1913), + [anon_sym_DOLLARif] = ACTIONS(1913), + [anon_sym_DOLLARelse] = ACTIONS(3879), + [anon_sym_is] = ACTIONS(1913), + [anon_sym_BANGis] = ACTIONS(1911), + [anon_sym_in] = ACTIONS(1913), + [anon_sym_BANGin] = ACTIONS(1911), + [anon_sym_match] = ACTIONS(1913), + [anon_sym_select] = ACTIONS(1913), + [anon_sym_lock] = ACTIONS(1913), + [anon_sym_rlock] = ACTIONS(1913), + [anon_sym_unsafe] = ACTIONS(1913), + [anon_sym_sql] = ACTIONS(1913), + [sym_int_literal] = ACTIONS(1913), + [sym_float_literal] = ACTIONS(1911), + [sym_rune_literal] = ACTIONS(1911), + [sym_pseudo_compile_time_identifier] = ACTIONS(1913), + [anon_sym_shared] = ACTIONS(1913), + [anon_sym_map_LBRACK] = ACTIONS(1911), + [anon_sym_chan] = ACTIONS(1913), + [anon_sym_thread] = ACTIONS(1913), + [anon_sym_atomic] = ACTIONS(1913), + [sym___double_quote] = ACTIONS(1911), + [sym___single_quote] = ACTIONS(1911), + [sym___c_double_quote] = ACTIONS(1911), + [sym___c_single_quote] = ACTIONS(1911), + [sym___r_double_quote] = ACTIONS(1911), + [sym___r_single_quote] = ACTIONS(1911), + }, + [1264] = { + [sym_line_comment] = STATE(1264), + [sym_block_comment] = STATE(1264), + [sym_identifier] = ACTIONS(2736), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_SEMI] = ACTIONS(2734), + [anon_sym_DOT] = ACTIONS(2736), + [anon_sym_as] = ACTIONS(2736), + [anon_sym_LBRACE] = ACTIONS(2734), + [anon_sym_COMMA] = ACTIONS(2734), + [anon_sym_RBRACE] = ACTIONS(2734), + [anon_sym_LPAREN] = ACTIONS(2734), + [anon_sym_PIPE] = ACTIONS(2736), + [anon_sym_fn] = ACTIONS(2736), + [anon_sym_PLUS] = ACTIONS(2736), + [anon_sym_DASH] = ACTIONS(2736), + [anon_sym_STAR] = ACTIONS(2734), + [anon_sym_SLASH] = ACTIONS(2736), + [anon_sym_PERCENT] = ACTIONS(2734), + [anon_sym_LT] = ACTIONS(2736), + [anon_sym_GT] = ACTIONS(2736), + [anon_sym_EQ_EQ] = ACTIONS(2734), + [anon_sym_BANG_EQ] = ACTIONS(2734), + [anon_sym_LT_EQ] = ACTIONS(2734), + [anon_sym_GT_EQ] = ACTIONS(2734), + [anon_sym_LBRACK] = ACTIONS(2734), + [anon_sym_RBRACK] = ACTIONS(2734), + [anon_sym_struct] = ACTIONS(2736), + [anon_sym_mut] = ACTIONS(2736), + [anon_sym_COLON] = ACTIONS(2734), + [anon_sym_PLUS_PLUS] = ACTIONS(2734), + [anon_sym_DASH_DASH] = ACTIONS(2734), + [anon_sym_QMARK] = ACTIONS(2736), + [anon_sym_BANG] = ACTIONS(2736), + [anon_sym_go] = ACTIONS(2736), + [anon_sym_spawn] = ACTIONS(2736), + [anon_sym_json_DOTdecode] = ACTIONS(2734), + [anon_sym_LBRACK2] = ACTIONS(2736), + [anon_sym_TILDE] = ACTIONS(2734), + [anon_sym_CARET] = ACTIONS(2734), + [anon_sym_AMP] = ACTIONS(2736), + [anon_sym_LT_DASH] = ACTIONS(2734), + [anon_sym_LT_LT] = ACTIONS(2734), + [anon_sym_GT_GT] = ACTIONS(2736), + [anon_sym_GT_GT_GT] = ACTIONS(2734), + [anon_sym_AMP_CARET] = ACTIONS(2734), + [anon_sym_AMP_AMP] = ACTIONS(2734), + [anon_sym_PIPE_PIPE] = ACTIONS(2734), + [anon_sym_or] = ACTIONS(2736), + [sym_none] = ACTIONS(2736), + [sym_true] = ACTIONS(2736), + [sym_false] = ACTIONS(2736), + [sym_nil] = ACTIONS(2736), + [anon_sym_QMARK_DOT] = ACTIONS(2734), + [anon_sym_POUND_LBRACK] = ACTIONS(2734), + [anon_sym_if] = ACTIONS(2736), + [anon_sym_DOLLARif] = ACTIONS(2736), + [anon_sym_is] = ACTIONS(2736), + [anon_sym_BANGis] = ACTIONS(2734), + [anon_sym_in] = ACTIONS(2736), + [anon_sym_BANGin] = ACTIONS(2734), + [anon_sym_match] = ACTIONS(2736), + [anon_sym_select] = ACTIONS(2736), + [anon_sym_lock] = ACTIONS(2736), + [anon_sym_rlock] = ACTIONS(2736), + [anon_sym_unsafe] = ACTIONS(2736), + [anon_sym_sql] = ACTIONS(2736), + [sym_int_literal] = ACTIONS(2736), + [sym_float_literal] = ACTIONS(2734), + [sym_rune_literal] = ACTIONS(2734), + [sym_pseudo_compile_time_identifier] = ACTIONS(2736), + [anon_sym_shared] = ACTIONS(2736), + [anon_sym_map_LBRACK] = ACTIONS(2734), + [anon_sym_chan] = ACTIONS(2736), + [anon_sym_thread] = ACTIONS(2736), + [anon_sym_atomic] = ACTIONS(2736), + [sym___double_quote] = ACTIONS(2734), + [sym___single_quote] = ACTIONS(2734), + [sym___c_double_quote] = ACTIONS(2734), + [sym___c_single_quote] = ACTIONS(2734), + [sym___r_double_quote] = ACTIONS(2734), + [sym___r_single_quote] = ACTIONS(2734), + }, + [1265] = { + [sym_line_comment] = STATE(1265), + [sym_block_comment] = STATE(1265), [sym_identifier] = ACTIONS(2802), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), @@ -161753,1664 +162055,1244 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym___r_double_quote] = ACTIONS(2800), [sym___r_single_quote] = ACTIONS(2800), }, - [1263] = { - [sym_line_comment] = STATE(1263), - [sym_block_comment] = STATE(1263), - [sym_identifier] = ACTIONS(2892), - [anon_sym_SLASH_SLASH] = ACTIONS(3), - [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_SEMI] = ACTIONS(2890), - [anon_sym_DOT] = ACTIONS(2892), - [anon_sym_as] = ACTIONS(2892), - [anon_sym_LBRACE] = ACTIONS(2890), - [anon_sym_COMMA] = ACTIONS(2890), - [anon_sym_RBRACE] = ACTIONS(2890), - [anon_sym_LPAREN] = ACTIONS(2890), - [anon_sym_PIPE] = ACTIONS(2892), - [anon_sym_fn] = ACTIONS(2892), - [anon_sym_PLUS] = ACTIONS(2892), - [anon_sym_DASH] = ACTIONS(2892), - [anon_sym_STAR] = ACTIONS(2890), - [anon_sym_SLASH] = ACTIONS(2892), - [anon_sym_PERCENT] = ACTIONS(2890), - [anon_sym_LT] = ACTIONS(2892), - [anon_sym_GT] = ACTIONS(2892), - [anon_sym_EQ_EQ] = ACTIONS(2890), - [anon_sym_BANG_EQ] = ACTIONS(2890), - [anon_sym_LT_EQ] = ACTIONS(2890), - [anon_sym_GT_EQ] = ACTIONS(2890), - [anon_sym_LBRACK] = ACTIONS(2890), - [anon_sym_RBRACK] = ACTIONS(2890), - [anon_sym_struct] = ACTIONS(2892), - [anon_sym_mut] = ACTIONS(2892), - [anon_sym_COLON] = ACTIONS(2890), - [anon_sym_PLUS_PLUS] = ACTIONS(2890), - [anon_sym_DASH_DASH] = ACTIONS(2890), - [anon_sym_QMARK] = ACTIONS(2892), - [anon_sym_BANG] = ACTIONS(2892), - [anon_sym_go] = ACTIONS(2892), - [anon_sym_spawn] = ACTIONS(2892), - [anon_sym_json_DOTdecode] = ACTIONS(2890), - [anon_sym_LBRACK2] = ACTIONS(2892), - [anon_sym_TILDE] = ACTIONS(2890), - [anon_sym_CARET] = ACTIONS(2890), - [anon_sym_AMP] = ACTIONS(2892), - [anon_sym_LT_DASH] = ACTIONS(2890), - [anon_sym_LT_LT] = ACTIONS(2890), - [anon_sym_GT_GT] = ACTIONS(2892), - [anon_sym_GT_GT_GT] = ACTIONS(2890), - [anon_sym_AMP_CARET] = ACTIONS(2890), - [anon_sym_AMP_AMP] = ACTIONS(2890), - [anon_sym_PIPE_PIPE] = ACTIONS(2890), - [anon_sym_or] = ACTIONS(2892), - [sym_none] = ACTIONS(2892), - [sym_true] = ACTIONS(2892), - [sym_false] = ACTIONS(2892), - [sym_nil] = ACTIONS(2892), - [anon_sym_QMARK_DOT] = ACTIONS(2890), - [anon_sym_POUND_LBRACK] = ACTIONS(2890), - [anon_sym_if] = ACTIONS(2892), - [anon_sym_DOLLARif] = ACTIONS(2892), - [anon_sym_is] = ACTIONS(2892), - [anon_sym_BANGis] = ACTIONS(2890), - [anon_sym_in] = ACTIONS(2892), - [anon_sym_BANGin] = ACTIONS(2890), - [anon_sym_match] = ACTIONS(2892), - [anon_sym_select] = ACTIONS(2892), - [anon_sym_lock] = ACTIONS(2892), - [anon_sym_rlock] = ACTIONS(2892), - [anon_sym_unsafe] = ACTIONS(2892), - [anon_sym_sql] = ACTIONS(2892), - [sym_int_literal] = ACTIONS(2892), - [sym_float_literal] = ACTIONS(2890), - [sym_rune_literal] = ACTIONS(2890), - [sym_pseudo_compile_time_identifier] = ACTIONS(2892), - [anon_sym_shared] = ACTIONS(2892), - [anon_sym_map_LBRACK] = ACTIONS(2890), - [anon_sym_chan] = ACTIONS(2892), - [anon_sym_thread] = ACTIONS(2892), - [anon_sym_atomic] = ACTIONS(2892), - [sym___double_quote] = ACTIONS(2890), - [sym___single_quote] = ACTIONS(2890), - [sym___c_double_quote] = ACTIONS(2890), - [sym___c_single_quote] = ACTIONS(2890), - [sym___r_double_quote] = ACTIONS(2890), - [sym___r_single_quote] = ACTIONS(2890), - }, - [1264] = { - [sym_line_comment] = STATE(1264), - [sym_block_comment] = STATE(1264), - [sym_type_parameters] = STATE(4073), - [sym_argument_list] = STATE(1358), - [sym_or_block] = STATE(1359), - [sym_identifier] = ACTIONS(1785), - [anon_sym_SLASH_SLASH] = ACTIONS(3), - [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(3815), - [anon_sym_as] = ACTIONS(1785), - [anon_sym_LBRACE] = ACTIONS(1783), - [anon_sym_RBRACE] = ACTIONS(1783), - [anon_sym_LPAREN] = ACTIONS(3817), - [anon_sym_PIPE] = ACTIONS(3839), - [anon_sym_fn] = ACTIONS(1785), - [anon_sym_PLUS] = ACTIONS(3839), - [anon_sym_DASH] = ACTIONS(3839), - [anon_sym_STAR] = ACTIONS(3841), - [anon_sym_SLASH] = ACTIONS(3843), - [anon_sym_PERCENT] = ACTIONS(3841), - [anon_sym_LT] = ACTIONS(3845), - [anon_sym_GT] = ACTIONS(3845), - [anon_sym_EQ_EQ] = ACTIONS(3847), - [anon_sym_BANG_EQ] = ACTIONS(3847), - [anon_sym_LT_EQ] = ACTIONS(3847), - [anon_sym_GT_EQ] = ACTIONS(3847), - [anon_sym_LBRACK] = ACTIONS(3819), - [anon_sym_struct] = ACTIONS(1785), - [anon_sym_mut] = ACTIONS(1785), - [anon_sym_COLON] = ACTIONS(1783), - [anon_sym_PLUS_PLUS] = ACTIONS(1783), - [anon_sym_DASH_DASH] = ACTIONS(1783), - [anon_sym_QMARK] = ACTIONS(3821), - [anon_sym_BANG] = ACTIONS(3823), - [anon_sym_go] = ACTIONS(1785), - [anon_sym_spawn] = ACTIONS(1785), - [anon_sym_json_DOTdecode] = ACTIONS(1783), - [anon_sym_LBRACK2] = ACTIONS(3825), - [anon_sym_TILDE] = ACTIONS(1783), - [anon_sym_CARET] = ACTIONS(3855), - [anon_sym_AMP] = ACTIONS(3843), - [anon_sym_LT_DASH] = ACTIONS(1783), - [anon_sym_LT_LT] = ACTIONS(3841), - [anon_sym_GT_GT] = ACTIONS(3843), - [anon_sym_GT_GT_GT] = ACTIONS(3841), - [anon_sym_AMP_CARET] = ACTIONS(3841), - [anon_sym_AMP_AMP] = ACTIONS(3857), - [anon_sym_PIPE_PIPE] = ACTIONS(1783), - [anon_sym_or] = ACTIONS(1785), - [sym_none] = ACTIONS(1785), - [sym_true] = ACTIONS(1785), - [sym_false] = ACTIONS(1785), - [sym_nil] = ACTIONS(1785), - [anon_sym_QMARK_DOT] = ACTIONS(3827), - [anon_sym_POUND_LBRACK] = ACTIONS(3829), - [anon_sym_if] = ACTIONS(1785), - [anon_sym_DOLLARif] = ACTIONS(1785), - [anon_sym_is] = ACTIONS(1785), - [anon_sym_BANGis] = ACTIONS(1783), - [anon_sym_in] = ACTIONS(3867), - [anon_sym_BANGin] = ACTIONS(3869), - [anon_sym_match] = ACTIONS(1785), - [anon_sym_select] = ACTIONS(1785), - [anon_sym_lock] = ACTIONS(1785), - [anon_sym_rlock] = ACTIONS(1785), - [anon_sym_unsafe] = ACTIONS(1785), - [anon_sym_sql] = ACTIONS(1785), - [sym_int_literal] = ACTIONS(1785), - [sym_float_literal] = ACTIONS(1783), - [sym_rune_literal] = ACTIONS(1783), - [sym_pseudo_compile_time_identifier] = ACTIONS(1785), - [anon_sym_shared] = ACTIONS(1785), - [anon_sym_map_LBRACK] = ACTIONS(1783), - [anon_sym_chan] = ACTIONS(1785), - [anon_sym_thread] = ACTIONS(1785), - [anon_sym_atomic] = ACTIONS(1785), - [sym___double_quote] = ACTIONS(1783), - [sym___single_quote] = ACTIONS(1783), - [sym___c_double_quote] = ACTIONS(1783), - [sym___c_single_quote] = ACTIONS(1783), - [sym___r_double_quote] = ACTIONS(1783), - [sym___r_single_quote] = ACTIONS(1783), - }, - [1265] = { - [sym_line_comment] = STATE(1265), - [sym_block_comment] = STATE(1265), - [sym_type_parameters] = STATE(4073), - [sym_argument_list] = STATE(1358), - [sym_or_block] = STATE(1359), - [sym_identifier] = ACTIONS(1785), - [anon_sym_SLASH_SLASH] = ACTIONS(3), - [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(3815), - [anon_sym_as] = ACTIONS(1785), - [anon_sym_LBRACE] = ACTIONS(1783), - [anon_sym_RBRACE] = ACTIONS(1783), - [anon_sym_LPAREN] = ACTIONS(3817), - [anon_sym_PIPE] = ACTIONS(3839), - [anon_sym_fn] = ACTIONS(1785), - [anon_sym_PLUS] = ACTIONS(3839), - [anon_sym_DASH] = ACTIONS(3839), - [anon_sym_STAR] = ACTIONS(3841), - [anon_sym_SLASH] = ACTIONS(3843), - [anon_sym_PERCENT] = ACTIONS(3841), - [anon_sym_LT] = ACTIONS(3845), - [anon_sym_GT] = ACTIONS(3845), - [anon_sym_EQ_EQ] = ACTIONS(3847), - [anon_sym_BANG_EQ] = ACTIONS(3847), - [anon_sym_LT_EQ] = ACTIONS(3847), - [anon_sym_GT_EQ] = ACTIONS(3847), - [anon_sym_LBRACK] = ACTIONS(3819), - [anon_sym_struct] = ACTIONS(1785), - [anon_sym_mut] = ACTIONS(1785), - [anon_sym_COLON] = ACTIONS(1783), - [anon_sym_PLUS_PLUS] = ACTIONS(1783), - [anon_sym_DASH_DASH] = ACTIONS(1783), - [anon_sym_QMARK] = ACTIONS(3821), - [anon_sym_BANG] = ACTIONS(3823), - [anon_sym_go] = ACTIONS(1785), - [anon_sym_spawn] = ACTIONS(1785), - [anon_sym_json_DOTdecode] = ACTIONS(1783), - [anon_sym_LBRACK2] = ACTIONS(3825), - [anon_sym_TILDE] = ACTIONS(1783), - [anon_sym_CARET] = ACTIONS(3855), - [anon_sym_AMP] = ACTIONS(3843), - [anon_sym_LT_DASH] = ACTIONS(1783), - [anon_sym_LT_LT] = ACTIONS(3841), - [anon_sym_GT_GT] = ACTIONS(3843), - [anon_sym_GT_GT_GT] = ACTIONS(3841), - [anon_sym_AMP_CARET] = ACTIONS(3841), - [anon_sym_AMP_AMP] = ACTIONS(1783), - [anon_sym_PIPE_PIPE] = ACTIONS(1783), - [anon_sym_or] = ACTIONS(1785), - [sym_none] = ACTIONS(1785), - [sym_true] = ACTIONS(1785), - [sym_false] = ACTIONS(1785), - [sym_nil] = ACTIONS(1785), - [anon_sym_QMARK_DOT] = ACTIONS(3827), - [anon_sym_POUND_LBRACK] = ACTIONS(3829), - [anon_sym_if] = ACTIONS(1785), - [anon_sym_DOLLARif] = ACTIONS(1785), - [anon_sym_is] = ACTIONS(1785), - [anon_sym_BANGis] = ACTIONS(1783), - [anon_sym_in] = ACTIONS(3867), - [anon_sym_BANGin] = ACTIONS(3869), - [anon_sym_match] = ACTIONS(1785), - [anon_sym_select] = ACTIONS(1785), - [anon_sym_lock] = ACTIONS(1785), - [anon_sym_rlock] = ACTIONS(1785), - [anon_sym_unsafe] = ACTIONS(1785), - [anon_sym_sql] = ACTIONS(1785), - [sym_int_literal] = ACTIONS(1785), - [sym_float_literal] = ACTIONS(1783), - [sym_rune_literal] = ACTIONS(1783), - [sym_pseudo_compile_time_identifier] = ACTIONS(1785), - [anon_sym_shared] = ACTIONS(1785), - [anon_sym_map_LBRACK] = ACTIONS(1783), - [anon_sym_chan] = ACTIONS(1785), - [anon_sym_thread] = ACTIONS(1785), - [anon_sym_atomic] = ACTIONS(1785), - [sym___double_quote] = ACTIONS(1783), - [sym___single_quote] = ACTIONS(1783), - [sym___c_double_quote] = ACTIONS(1783), - [sym___c_single_quote] = ACTIONS(1783), - [sym___r_double_quote] = ACTIONS(1783), - [sym___r_single_quote] = ACTIONS(1783), - }, [1266] = { [sym_line_comment] = STATE(1266), [sym_block_comment] = STATE(1266), - [sym_type_parameters] = STATE(4073), - [sym_argument_list] = STATE(1358), - [sym_or_block] = STATE(1359), - [sym_identifier] = ACTIONS(1785), - [anon_sym_SLASH_SLASH] = ACTIONS(3), - [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(3815), - [anon_sym_as] = ACTIONS(1785), - [anon_sym_LBRACE] = ACTIONS(1783), - [anon_sym_RBRACE] = ACTIONS(1783), - [anon_sym_LPAREN] = ACTIONS(3817), - [anon_sym_PIPE] = ACTIONS(3839), - [anon_sym_fn] = ACTIONS(1785), - [anon_sym_PLUS] = ACTIONS(3839), - [anon_sym_DASH] = ACTIONS(3839), - [anon_sym_STAR] = ACTIONS(3841), - [anon_sym_SLASH] = ACTIONS(3843), - [anon_sym_PERCENT] = ACTIONS(3841), - [anon_sym_LT] = ACTIONS(1785), - [anon_sym_GT] = ACTIONS(1785), - [anon_sym_EQ_EQ] = ACTIONS(1783), - [anon_sym_BANG_EQ] = ACTIONS(1783), - [anon_sym_LT_EQ] = ACTIONS(1783), - [anon_sym_GT_EQ] = ACTIONS(1783), - [anon_sym_LBRACK] = ACTIONS(3819), - [anon_sym_struct] = ACTIONS(1785), - [anon_sym_mut] = ACTIONS(1785), - [anon_sym_COLON] = ACTIONS(1783), - [anon_sym_PLUS_PLUS] = ACTIONS(1783), - [anon_sym_DASH_DASH] = ACTIONS(1783), - [anon_sym_QMARK] = ACTIONS(3821), - [anon_sym_BANG] = ACTIONS(3823), - [anon_sym_go] = ACTIONS(1785), - [anon_sym_spawn] = ACTIONS(1785), - [anon_sym_json_DOTdecode] = ACTIONS(1783), - [anon_sym_LBRACK2] = ACTIONS(3825), - [anon_sym_TILDE] = ACTIONS(1783), - [anon_sym_CARET] = ACTIONS(3855), - [anon_sym_AMP] = ACTIONS(3843), - [anon_sym_LT_DASH] = ACTIONS(1783), - [anon_sym_LT_LT] = ACTIONS(3841), - [anon_sym_GT_GT] = ACTIONS(3843), - [anon_sym_GT_GT_GT] = ACTIONS(3841), - [anon_sym_AMP_CARET] = ACTIONS(3841), - [anon_sym_AMP_AMP] = ACTIONS(1783), - [anon_sym_PIPE_PIPE] = ACTIONS(1783), - [anon_sym_or] = ACTIONS(1785), - [sym_none] = ACTIONS(1785), - [sym_true] = ACTIONS(1785), - [sym_false] = ACTIONS(1785), - [sym_nil] = ACTIONS(1785), - [anon_sym_QMARK_DOT] = ACTIONS(3827), - [anon_sym_POUND_LBRACK] = ACTIONS(3829), - [anon_sym_if] = ACTIONS(1785), - [anon_sym_DOLLARif] = ACTIONS(1785), - [anon_sym_is] = ACTIONS(1785), - [anon_sym_BANGis] = ACTIONS(1783), - [anon_sym_in] = ACTIONS(1785), - [anon_sym_BANGin] = ACTIONS(1783), - [anon_sym_match] = ACTIONS(1785), - [anon_sym_select] = ACTIONS(1785), - [anon_sym_lock] = ACTIONS(1785), - [anon_sym_rlock] = ACTIONS(1785), - [anon_sym_unsafe] = ACTIONS(1785), - [anon_sym_sql] = ACTIONS(1785), - [sym_int_literal] = ACTIONS(1785), - [sym_float_literal] = ACTIONS(1783), - [sym_rune_literal] = ACTIONS(1783), - [sym_pseudo_compile_time_identifier] = ACTIONS(1785), - [anon_sym_shared] = ACTIONS(1785), - [anon_sym_map_LBRACK] = ACTIONS(1783), - [anon_sym_chan] = ACTIONS(1785), - [anon_sym_thread] = ACTIONS(1785), - [anon_sym_atomic] = ACTIONS(1785), - [sym___double_quote] = ACTIONS(1783), - [sym___single_quote] = ACTIONS(1783), - [sym___c_double_quote] = ACTIONS(1783), - [sym___c_single_quote] = ACTIONS(1783), - [sym___r_double_quote] = ACTIONS(1783), - [sym___r_single_quote] = ACTIONS(1783), - }, - [1267] = { - [sym_line_comment] = STATE(1267), - [sym_block_comment] = STATE(1267), - [sym_type_parameters] = STATE(4073), - [sym_argument_list] = STATE(1358), - [sym_or_block] = STATE(1359), - [sym_identifier] = ACTIONS(1785), + [sym_identifier] = ACTIONS(2798), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(3815), - [anon_sym_as] = ACTIONS(1785), - [anon_sym_LBRACE] = ACTIONS(1783), - [anon_sym_RBRACE] = ACTIONS(1783), - [anon_sym_LPAREN] = ACTIONS(3817), - [anon_sym_PIPE] = ACTIONS(1785), - [anon_sym_fn] = ACTIONS(1785), - [anon_sym_PLUS] = ACTIONS(1785), - [anon_sym_DASH] = ACTIONS(1785), - [anon_sym_STAR] = ACTIONS(3841), - [anon_sym_SLASH] = ACTIONS(3843), - [anon_sym_PERCENT] = ACTIONS(3841), - [anon_sym_LT] = ACTIONS(1785), - [anon_sym_GT] = ACTIONS(1785), - [anon_sym_EQ_EQ] = ACTIONS(1783), - [anon_sym_BANG_EQ] = ACTIONS(1783), - [anon_sym_LT_EQ] = ACTIONS(1783), - [anon_sym_GT_EQ] = ACTIONS(1783), - [anon_sym_LBRACK] = ACTIONS(3819), - [anon_sym_struct] = ACTIONS(1785), - [anon_sym_mut] = ACTIONS(1785), - [anon_sym_COLON] = ACTIONS(1783), - [anon_sym_PLUS_PLUS] = ACTIONS(1783), - [anon_sym_DASH_DASH] = ACTIONS(1783), - [anon_sym_QMARK] = ACTIONS(3821), - [anon_sym_BANG] = ACTIONS(3823), - [anon_sym_go] = ACTIONS(1785), - [anon_sym_spawn] = ACTIONS(1785), - [anon_sym_json_DOTdecode] = ACTIONS(1783), - [anon_sym_LBRACK2] = ACTIONS(3825), - [anon_sym_TILDE] = ACTIONS(1783), - [anon_sym_CARET] = ACTIONS(1783), - [anon_sym_AMP] = ACTIONS(3843), - [anon_sym_LT_DASH] = ACTIONS(1783), - [anon_sym_LT_LT] = ACTIONS(3841), - [anon_sym_GT_GT] = ACTIONS(3843), - [anon_sym_GT_GT_GT] = ACTIONS(3841), - [anon_sym_AMP_CARET] = ACTIONS(3841), - [anon_sym_AMP_AMP] = ACTIONS(1783), - [anon_sym_PIPE_PIPE] = ACTIONS(1783), - [anon_sym_or] = ACTIONS(1785), - [sym_none] = ACTIONS(1785), - [sym_true] = ACTIONS(1785), - [sym_false] = ACTIONS(1785), - [sym_nil] = ACTIONS(1785), - [anon_sym_QMARK_DOT] = ACTIONS(3827), - [anon_sym_POUND_LBRACK] = ACTIONS(3829), - [anon_sym_if] = ACTIONS(1785), - [anon_sym_DOLLARif] = ACTIONS(1785), - [anon_sym_is] = ACTIONS(1785), - [anon_sym_BANGis] = ACTIONS(1783), - [anon_sym_in] = ACTIONS(1785), - [anon_sym_BANGin] = ACTIONS(1783), - [anon_sym_match] = ACTIONS(1785), - [anon_sym_select] = ACTIONS(1785), - [anon_sym_lock] = ACTIONS(1785), - [anon_sym_rlock] = ACTIONS(1785), - [anon_sym_unsafe] = ACTIONS(1785), - [anon_sym_sql] = ACTIONS(1785), - [sym_int_literal] = ACTIONS(1785), - [sym_float_literal] = ACTIONS(1783), - [sym_rune_literal] = ACTIONS(1783), - [sym_pseudo_compile_time_identifier] = ACTIONS(1785), - [anon_sym_shared] = ACTIONS(1785), - [anon_sym_map_LBRACK] = ACTIONS(1783), - [anon_sym_chan] = ACTIONS(1785), - [anon_sym_thread] = ACTIONS(1785), - [anon_sym_atomic] = ACTIONS(1785), - [sym___double_quote] = ACTIONS(1783), - [sym___single_quote] = ACTIONS(1783), - [sym___c_double_quote] = ACTIONS(1783), - [sym___c_single_quote] = ACTIONS(1783), - [sym___r_double_quote] = ACTIONS(1783), - [sym___r_single_quote] = ACTIONS(1783), + [anon_sym_SEMI] = ACTIONS(2796), + [anon_sym_DOT] = ACTIONS(2798), + [anon_sym_as] = ACTIONS(2798), + [anon_sym_LBRACE] = ACTIONS(2796), + [anon_sym_COMMA] = ACTIONS(2796), + [anon_sym_RBRACE] = ACTIONS(2796), + [anon_sym_LPAREN] = ACTIONS(2796), + [anon_sym_PIPE] = ACTIONS(2798), + [anon_sym_fn] = ACTIONS(2798), + [anon_sym_PLUS] = ACTIONS(2798), + [anon_sym_DASH] = ACTIONS(2798), + [anon_sym_STAR] = ACTIONS(2796), + [anon_sym_SLASH] = ACTIONS(2798), + [anon_sym_PERCENT] = ACTIONS(2796), + [anon_sym_LT] = ACTIONS(2798), + [anon_sym_GT] = ACTIONS(2798), + [anon_sym_EQ_EQ] = ACTIONS(2796), + [anon_sym_BANG_EQ] = ACTIONS(2796), + [anon_sym_LT_EQ] = ACTIONS(2796), + [anon_sym_GT_EQ] = ACTIONS(2796), + [anon_sym_LBRACK] = ACTIONS(2796), + [anon_sym_RBRACK] = ACTIONS(2796), + [anon_sym_struct] = ACTIONS(2798), + [anon_sym_mut] = ACTIONS(2798), + [anon_sym_COLON] = ACTIONS(2796), + [anon_sym_PLUS_PLUS] = ACTIONS(2796), + [anon_sym_DASH_DASH] = ACTIONS(2796), + [anon_sym_QMARK] = ACTIONS(2798), + [anon_sym_BANG] = ACTIONS(2798), + [anon_sym_go] = ACTIONS(2798), + [anon_sym_spawn] = ACTIONS(2798), + [anon_sym_json_DOTdecode] = ACTIONS(2796), + [anon_sym_LBRACK2] = ACTIONS(2798), + [anon_sym_TILDE] = ACTIONS(2796), + [anon_sym_CARET] = ACTIONS(2796), + [anon_sym_AMP] = ACTIONS(2798), + [anon_sym_LT_DASH] = ACTIONS(2796), + [anon_sym_LT_LT] = ACTIONS(2796), + [anon_sym_GT_GT] = ACTIONS(2798), + [anon_sym_GT_GT_GT] = ACTIONS(2796), + [anon_sym_AMP_CARET] = ACTIONS(2796), + [anon_sym_AMP_AMP] = ACTIONS(2796), + [anon_sym_PIPE_PIPE] = ACTIONS(2796), + [anon_sym_or] = ACTIONS(2798), + [sym_none] = ACTIONS(2798), + [sym_true] = ACTIONS(2798), + [sym_false] = ACTIONS(2798), + [sym_nil] = ACTIONS(2798), + [anon_sym_QMARK_DOT] = ACTIONS(2796), + [anon_sym_POUND_LBRACK] = ACTIONS(2796), + [anon_sym_if] = ACTIONS(2798), + [anon_sym_DOLLARif] = ACTIONS(2798), + [anon_sym_is] = ACTIONS(2798), + [anon_sym_BANGis] = ACTIONS(2796), + [anon_sym_in] = ACTIONS(2798), + [anon_sym_BANGin] = ACTIONS(2796), + [anon_sym_match] = ACTIONS(2798), + [anon_sym_select] = ACTIONS(2798), + [anon_sym_lock] = ACTIONS(2798), + [anon_sym_rlock] = ACTIONS(2798), + [anon_sym_unsafe] = ACTIONS(2798), + [anon_sym_sql] = ACTIONS(2798), + [sym_int_literal] = ACTIONS(2798), + [sym_float_literal] = ACTIONS(2796), + [sym_rune_literal] = ACTIONS(2796), + [sym_pseudo_compile_time_identifier] = ACTIONS(2798), + [anon_sym_shared] = ACTIONS(2798), + [anon_sym_map_LBRACK] = ACTIONS(2796), + [anon_sym_chan] = ACTIONS(2798), + [anon_sym_thread] = ACTIONS(2798), + [anon_sym_atomic] = ACTIONS(2798), + [sym___double_quote] = ACTIONS(2796), + [sym___single_quote] = ACTIONS(2796), + [sym___c_double_quote] = ACTIONS(2796), + [sym___c_single_quote] = ACTIONS(2796), + [sym___r_double_quote] = ACTIONS(2796), + [sym___r_single_quote] = ACTIONS(2796), + }, + [1267] = { + [sym_line_comment] = STATE(1267), + [sym_block_comment] = STATE(1267), + [sym_type_parameters] = STATE(4093), + [sym_argument_list] = STATE(1361), + [sym_or_block] = STATE(1362), + [sym_identifier] = ACTIONS(1795), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(3821), + [anon_sym_as] = ACTIONS(3841), + [anon_sym_LBRACE] = ACTIONS(1793), + [anon_sym_RBRACE] = ACTIONS(1793), + [anon_sym_LPAREN] = ACTIONS(3823), + [anon_sym_PIPE] = ACTIONS(3845), + [anon_sym_fn] = ACTIONS(1795), + [anon_sym_PLUS] = ACTIONS(3845), + [anon_sym_DASH] = ACTIONS(3845), + [anon_sym_STAR] = ACTIONS(3847), + [anon_sym_SLASH] = ACTIONS(3849), + [anon_sym_PERCENT] = ACTIONS(3847), + [anon_sym_LT] = ACTIONS(3851), + [anon_sym_GT] = ACTIONS(3851), + [anon_sym_EQ_EQ] = ACTIONS(3853), + [anon_sym_BANG_EQ] = ACTIONS(3853), + [anon_sym_LT_EQ] = ACTIONS(3853), + [anon_sym_GT_EQ] = ACTIONS(3853), + [anon_sym_LBRACK] = ACTIONS(3825), + [anon_sym_struct] = ACTIONS(1795), + [anon_sym_mut] = ACTIONS(1795), + [anon_sym_COLON] = ACTIONS(1793), + [anon_sym_PLUS_PLUS] = ACTIONS(3857), + [anon_sym_DASH_DASH] = ACTIONS(3859), + [anon_sym_QMARK] = ACTIONS(3827), + [anon_sym_BANG] = ACTIONS(3829), + [anon_sym_go] = ACTIONS(1795), + [anon_sym_spawn] = ACTIONS(1795), + [anon_sym_json_DOTdecode] = ACTIONS(1793), + [anon_sym_LBRACK2] = ACTIONS(3831), + [anon_sym_TILDE] = ACTIONS(1793), + [anon_sym_CARET] = ACTIONS(3861), + [anon_sym_AMP] = ACTIONS(3849), + [anon_sym_LT_DASH] = ACTIONS(1793), + [anon_sym_LT_LT] = ACTIONS(3847), + [anon_sym_GT_GT] = ACTIONS(3849), + [anon_sym_GT_GT_GT] = ACTIONS(3847), + [anon_sym_AMP_CARET] = ACTIONS(3847), + [anon_sym_AMP_AMP] = ACTIONS(3863), + [anon_sym_PIPE_PIPE] = ACTIONS(3865), + [anon_sym_or] = ACTIONS(3867), + [sym_none] = ACTIONS(1795), + [sym_true] = ACTIONS(1795), + [sym_false] = ACTIONS(1795), + [sym_nil] = ACTIONS(1795), + [anon_sym_QMARK_DOT] = ACTIONS(3833), + [anon_sym_POUND_LBRACK] = ACTIONS(3835), + [anon_sym_if] = ACTIONS(1795), + [anon_sym_DOLLARif] = ACTIONS(1795), + [anon_sym_is] = ACTIONS(3869), + [anon_sym_BANGis] = ACTIONS(3871), + [anon_sym_in] = ACTIONS(3873), + [anon_sym_BANGin] = ACTIONS(3875), + [anon_sym_match] = ACTIONS(1795), + [anon_sym_select] = ACTIONS(1795), + [anon_sym_lock] = ACTIONS(1795), + [anon_sym_rlock] = ACTIONS(1795), + [anon_sym_unsafe] = ACTIONS(1795), + [anon_sym_sql] = ACTIONS(1795), + [sym_int_literal] = ACTIONS(1795), + [sym_float_literal] = ACTIONS(1793), + [sym_rune_literal] = ACTIONS(1793), + [sym_pseudo_compile_time_identifier] = ACTIONS(1795), + [anon_sym_shared] = ACTIONS(1795), + [anon_sym_map_LBRACK] = ACTIONS(1793), + [anon_sym_chan] = ACTIONS(1795), + [anon_sym_thread] = ACTIONS(1795), + [anon_sym_atomic] = ACTIONS(1795), + [sym___double_quote] = ACTIONS(1793), + [sym___single_quote] = ACTIONS(1793), + [sym___c_double_quote] = ACTIONS(1793), + [sym___c_single_quote] = ACTIONS(1793), + [sym___r_double_quote] = ACTIONS(1793), + [sym___r_single_quote] = ACTIONS(1793), }, [1268] = { [sym_line_comment] = STATE(1268), [sym_block_comment] = STATE(1268), - [sym_type_parameters] = STATE(4073), - [sym_argument_list] = STATE(1358), - [sym_or_block] = STATE(1359), - [sym_identifier] = ACTIONS(3873), + [sym_identifier] = ACTIONS(2788), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(3815), - [anon_sym_as] = ACTIONS(3835), - [anon_sym_LBRACE] = ACTIONS(3875), - [anon_sym_COMMA] = ACTIONS(3877), - [anon_sym_LPAREN] = ACTIONS(3817), - [anon_sym_PIPE] = ACTIONS(3879), - [anon_sym_fn] = ACTIONS(3873), - [anon_sym_PLUS] = ACTIONS(3879), - [anon_sym_DASH] = ACTIONS(3879), - [anon_sym_STAR] = ACTIONS(3881), - [anon_sym_SLASH] = ACTIONS(3883), - [anon_sym_PERCENT] = ACTIONS(3881), - [anon_sym_LT] = ACTIONS(3885), - [anon_sym_GT] = ACTIONS(3885), - [anon_sym_EQ_EQ] = ACTIONS(3887), - [anon_sym_BANG_EQ] = ACTIONS(3887), - [anon_sym_LT_EQ] = ACTIONS(3887), - [anon_sym_GT_EQ] = ACTIONS(3887), - [anon_sym_LBRACK] = ACTIONS(3819), - [anon_sym_RBRACK] = ACTIONS(3875), - [anon_sym_struct] = ACTIONS(3873), - [anon_sym_mut] = ACTIONS(3873), - [anon_sym_PLUS_PLUS] = ACTIONS(3851), - [anon_sym_DASH_DASH] = ACTIONS(3853), - [anon_sym_QMARK] = ACTIONS(3821), - [anon_sym_BANG] = ACTIONS(3823), - [anon_sym_go] = ACTIONS(3873), - [anon_sym_spawn] = ACTIONS(3873), - [anon_sym_json_DOTdecode] = ACTIONS(3875), - [anon_sym_LBRACK2] = ACTIONS(3825), - [anon_sym_TILDE] = ACTIONS(3875), - [anon_sym_CARET] = ACTIONS(3889), - [anon_sym_AMP] = ACTIONS(3883), - [anon_sym_LT_DASH] = ACTIONS(3875), - [anon_sym_LT_LT] = ACTIONS(3881), - [anon_sym_GT_GT] = ACTIONS(3883), - [anon_sym_GT_GT_GT] = ACTIONS(3881), - [anon_sym_AMP_CARET] = ACTIONS(3881), - [anon_sym_AMP_AMP] = ACTIONS(3891), - [anon_sym_PIPE_PIPE] = ACTIONS(3893), - [anon_sym_or] = ACTIONS(3861), - [sym_none] = ACTIONS(3873), - [sym_true] = ACTIONS(3873), - [sym_false] = ACTIONS(3873), - [sym_nil] = ACTIONS(3873), - [anon_sym_QMARK_DOT] = ACTIONS(3827), - [anon_sym_POUND_LBRACK] = ACTIONS(3829), - [anon_sym_if] = ACTIONS(3873), - [anon_sym_DOLLARif] = ACTIONS(3873), - [anon_sym_is] = ACTIONS(3863), - [anon_sym_BANGis] = ACTIONS(3865), - [anon_sym_in] = ACTIONS(3895), - [anon_sym_BANGin] = ACTIONS(3897), - [anon_sym_match] = ACTIONS(3873), - [anon_sym_select] = ACTIONS(3873), - [anon_sym_lock] = ACTIONS(3873), - [anon_sym_rlock] = ACTIONS(3873), - [anon_sym_unsafe] = ACTIONS(3873), - [anon_sym_sql] = ACTIONS(3873), - [sym_int_literal] = ACTIONS(3873), - [sym_float_literal] = ACTIONS(3875), - [sym_rune_literal] = ACTIONS(3875), - [sym_pseudo_compile_time_identifier] = ACTIONS(3873), - [anon_sym_shared] = ACTIONS(3873), - [anon_sym_map_LBRACK] = ACTIONS(3875), - [anon_sym_chan] = ACTIONS(3873), - [anon_sym_thread] = ACTIONS(3873), - [anon_sym_atomic] = ACTIONS(3873), - [sym___double_quote] = ACTIONS(3875), - [sym___single_quote] = ACTIONS(3875), - [sym___c_double_quote] = ACTIONS(3875), - [sym___c_single_quote] = ACTIONS(3875), - [sym___r_double_quote] = ACTIONS(3875), - [sym___r_single_quote] = ACTIONS(3875), + [anon_sym_SEMI] = ACTIONS(2786), + [anon_sym_DOT] = ACTIONS(2788), + [anon_sym_as] = ACTIONS(2788), + [anon_sym_LBRACE] = ACTIONS(2786), + [anon_sym_COMMA] = ACTIONS(2786), + [anon_sym_RBRACE] = ACTIONS(2786), + [anon_sym_LPAREN] = ACTIONS(2786), + [anon_sym_PIPE] = ACTIONS(2788), + [anon_sym_fn] = ACTIONS(2788), + [anon_sym_PLUS] = ACTIONS(2788), + [anon_sym_DASH] = ACTIONS(2788), + [anon_sym_STAR] = ACTIONS(2786), + [anon_sym_SLASH] = ACTIONS(2788), + [anon_sym_PERCENT] = ACTIONS(2786), + [anon_sym_LT] = ACTIONS(2788), + [anon_sym_GT] = ACTIONS(2788), + [anon_sym_EQ_EQ] = ACTIONS(2786), + [anon_sym_BANG_EQ] = ACTIONS(2786), + [anon_sym_LT_EQ] = ACTIONS(2786), + [anon_sym_GT_EQ] = ACTIONS(2786), + [anon_sym_LBRACK] = ACTIONS(2786), + [anon_sym_RBRACK] = ACTIONS(2786), + [anon_sym_struct] = ACTIONS(2788), + [anon_sym_mut] = ACTIONS(2788), + [anon_sym_COLON] = ACTIONS(2786), + [anon_sym_PLUS_PLUS] = ACTIONS(2786), + [anon_sym_DASH_DASH] = ACTIONS(2786), + [anon_sym_QMARK] = ACTIONS(2788), + [anon_sym_BANG] = ACTIONS(2788), + [anon_sym_go] = ACTIONS(2788), + [anon_sym_spawn] = ACTIONS(2788), + [anon_sym_json_DOTdecode] = ACTIONS(2786), + [anon_sym_LBRACK2] = ACTIONS(2788), + [anon_sym_TILDE] = ACTIONS(2786), + [anon_sym_CARET] = ACTIONS(2786), + [anon_sym_AMP] = ACTIONS(2788), + [anon_sym_LT_DASH] = ACTIONS(2786), + [anon_sym_LT_LT] = ACTIONS(2786), + [anon_sym_GT_GT] = ACTIONS(2788), + [anon_sym_GT_GT_GT] = ACTIONS(2786), + [anon_sym_AMP_CARET] = ACTIONS(2786), + [anon_sym_AMP_AMP] = ACTIONS(2786), + [anon_sym_PIPE_PIPE] = ACTIONS(2786), + [anon_sym_or] = ACTIONS(2788), + [sym_none] = ACTIONS(2788), + [sym_true] = ACTIONS(2788), + [sym_false] = ACTIONS(2788), + [sym_nil] = ACTIONS(2788), + [anon_sym_QMARK_DOT] = ACTIONS(2786), + [anon_sym_POUND_LBRACK] = ACTIONS(2786), + [anon_sym_if] = ACTIONS(2788), + [anon_sym_DOLLARif] = ACTIONS(2788), + [anon_sym_is] = ACTIONS(2788), + [anon_sym_BANGis] = ACTIONS(2786), + [anon_sym_in] = ACTIONS(2788), + [anon_sym_BANGin] = ACTIONS(2786), + [anon_sym_match] = ACTIONS(2788), + [anon_sym_select] = ACTIONS(2788), + [anon_sym_lock] = ACTIONS(2788), + [anon_sym_rlock] = ACTIONS(2788), + [anon_sym_unsafe] = ACTIONS(2788), + [anon_sym_sql] = ACTIONS(2788), + [sym_int_literal] = ACTIONS(2788), + [sym_float_literal] = ACTIONS(2786), + [sym_rune_literal] = ACTIONS(2786), + [sym_pseudo_compile_time_identifier] = ACTIONS(2788), + [anon_sym_shared] = ACTIONS(2788), + [anon_sym_map_LBRACK] = ACTIONS(2786), + [anon_sym_chan] = ACTIONS(2788), + [anon_sym_thread] = ACTIONS(2788), + [anon_sym_atomic] = ACTIONS(2788), + [sym___double_quote] = ACTIONS(2786), + [sym___single_quote] = ACTIONS(2786), + [sym___c_double_quote] = ACTIONS(2786), + [sym___c_single_quote] = ACTIONS(2786), + [sym___r_double_quote] = ACTIONS(2786), + [sym___r_single_quote] = ACTIONS(2786), }, [1269] = { [sym_line_comment] = STATE(1269), [sym_block_comment] = STATE(1269), - [sym_identifier] = ACTIONS(1921), + [sym_identifier] = ACTIONS(1843), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1921), - [anon_sym_as] = ACTIONS(1921), - [anon_sym_LBRACE] = ACTIONS(1919), - [anon_sym_COMMA] = ACTIONS(1919), - [anon_sym_RBRACE] = ACTIONS(1919), - [anon_sym_LPAREN] = ACTIONS(1919), - [anon_sym_PIPE] = ACTIONS(1921), - [anon_sym_fn] = ACTIONS(1921), - [anon_sym_PLUS] = ACTIONS(1921), - [anon_sym_DASH] = ACTIONS(1921), - [anon_sym_STAR] = ACTIONS(1919), - [anon_sym_SLASH] = ACTIONS(1921), - [anon_sym_PERCENT] = ACTIONS(1919), - [anon_sym_LT] = ACTIONS(1921), - [anon_sym_GT] = ACTIONS(1921), - [anon_sym_EQ_EQ] = ACTIONS(1919), - [anon_sym_BANG_EQ] = ACTIONS(1919), - [anon_sym_LT_EQ] = ACTIONS(1919), - [anon_sym_GT_EQ] = ACTIONS(1919), - [anon_sym_LBRACK] = ACTIONS(1919), - [anon_sym_RBRACK] = ACTIONS(1919), - [anon_sym_struct] = ACTIONS(1921), - [anon_sym_mut] = ACTIONS(1921), - [anon_sym_COLON] = ACTIONS(1919), - [anon_sym_PLUS_PLUS] = ACTIONS(1919), - [anon_sym_DASH_DASH] = ACTIONS(1919), - [anon_sym_QMARK] = ACTIONS(1921), - [anon_sym_BANG] = ACTIONS(1921), - [anon_sym_go] = ACTIONS(1921), - [anon_sym_spawn] = ACTIONS(1921), - [anon_sym_json_DOTdecode] = ACTIONS(1919), - [anon_sym_LBRACK2] = ACTIONS(1921), - [anon_sym_TILDE] = ACTIONS(1919), - [anon_sym_CARET] = ACTIONS(1919), - [anon_sym_AMP] = ACTIONS(1921), - [anon_sym_LT_DASH] = ACTIONS(1919), - [anon_sym_LT_LT] = ACTIONS(1919), - [anon_sym_GT_GT] = ACTIONS(1921), - [anon_sym_GT_GT_GT] = ACTIONS(1919), - [anon_sym_AMP_CARET] = ACTIONS(1919), - [anon_sym_AMP_AMP] = ACTIONS(1919), - [anon_sym_PIPE_PIPE] = ACTIONS(1919), - [anon_sym_or] = ACTIONS(1921), - [sym_none] = ACTIONS(1921), - [sym_true] = ACTIONS(1921), - [sym_false] = ACTIONS(1921), - [sym_nil] = ACTIONS(1921), - [anon_sym_QMARK_DOT] = ACTIONS(1919), - [anon_sym_POUND_LBRACK] = ACTIONS(1919), - [anon_sym_if] = ACTIONS(1921), - [anon_sym_DOLLARif] = ACTIONS(1921), - [anon_sym_DOLLARelse] = ACTIONS(3899), - [anon_sym_is] = ACTIONS(1921), - [anon_sym_BANGis] = ACTIONS(1919), - [anon_sym_in] = ACTIONS(1921), - [anon_sym_BANGin] = ACTIONS(1919), - [anon_sym_match] = ACTIONS(1921), - [anon_sym_select] = ACTIONS(1921), - [anon_sym_lock] = ACTIONS(1921), - [anon_sym_rlock] = ACTIONS(1921), - [anon_sym_unsafe] = ACTIONS(1921), - [anon_sym_sql] = ACTIONS(1921), - [sym_int_literal] = ACTIONS(1921), - [sym_float_literal] = ACTIONS(1919), - [sym_rune_literal] = ACTIONS(1919), - [sym_pseudo_compile_time_identifier] = ACTIONS(1921), - [anon_sym_shared] = ACTIONS(1921), - [anon_sym_map_LBRACK] = ACTIONS(1919), - [anon_sym_chan] = ACTIONS(1921), - [anon_sym_thread] = ACTIONS(1921), - [anon_sym_atomic] = ACTIONS(1921), - [sym___double_quote] = ACTIONS(1919), - [sym___single_quote] = ACTIONS(1919), - [sym___c_double_quote] = ACTIONS(1919), - [sym___c_single_quote] = ACTIONS(1919), - [sym___r_double_quote] = ACTIONS(1919), - [sym___r_single_quote] = ACTIONS(1919), + [anon_sym_DOT] = ACTIONS(1843), + [anon_sym_as] = ACTIONS(1843), + [anon_sym_LBRACE] = ACTIONS(1841), + [anon_sym_COMMA] = ACTIONS(1841), + [anon_sym_RBRACE] = ACTIONS(1841), + [anon_sym_LPAREN] = ACTIONS(1841), + [anon_sym_PIPE] = ACTIONS(1843), + [anon_sym_fn] = ACTIONS(1843), + [anon_sym_PLUS] = ACTIONS(1843), + [anon_sym_DASH] = ACTIONS(1843), + [anon_sym_STAR] = ACTIONS(1841), + [anon_sym_SLASH] = ACTIONS(1843), + [anon_sym_PERCENT] = ACTIONS(1841), + [anon_sym_LT] = ACTIONS(1843), + [anon_sym_GT] = ACTIONS(1843), + [anon_sym_EQ_EQ] = ACTIONS(1841), + [anon_sym_BANG_EQ] = ACTIONS(1841), + [anon_sym_LT_EQ] = ACTIONS(1841), + [anon_sym_GT_EQ] = ACTIONS(1841), + [anon_sym_LBRACK] = ACTIONS(1841), + [anon_sym_RBRACK] = ACTIONS(1841), + [anon_sym_struct] = ACTIONS(1843), + [anon_sym_mut] = ACTIONS(1843), + [anon_sym_COLON] = ACTIONS(1841), + [anon_sym_PLUS_PLUS] = ACTIONS(1841), + [anon_sym_DASH_DASH] = ACTIONS(1841), + [anon_sym_QMARK] = ACTIONS(1843), + [anon_sym_BANG] = ACTIONS(1843), + [anon_sym_go] = ACTIONS(1843), + [anon_sym_spawn] = ACTIONS(1843), + [anon_sym_json_DOTdecode] = ACTIONS(1841), + [anon_sym_LBRACK2] = ACTIONS(1843), + [anon_sym_TILDE] = ACTIONS(1841), + [anon_sym_CARET] = ACTIONS(1841), + [anon_sym_AMP] = ACTIONS(1843), + [anon_sym_LT_DASH] = ACTIONS(1841), + [anon_sym_LT_LT] = ACTIONS(1841), + [anon_sym_GT_GT] = ACTIONS(1843), + [anon_sym_GT_GT_GT] = ACTIONS(1841), + [anon_sym_AMP_CARET] = ACTIONS(1841), + [anon_sym_AMP_AMP] = ACTIONS(1841), + [anon_sym_PIPE_PIPE] = ACTIONS(1841), + [anon_sym_or] = ACTIONS(1843), + [sym_none] = ACTIONS(1843), + [sym_true] = ACTIONS(1843), + [sym_false] = ACTIONS(1843), + [sym_nil] = ACTIONS(1843), + [anon_sym_QMARK_DOT] = ACTIONS(1841), + [anon_sym_POUND_LBRACK] = ACTIONS(1841), + [anon_sym_if] = ACTIONS(1843), + [anon_sym_DOLLARif] = ACTIONS(1843), + [anon_sym_DOLLARelse] = ACTIONS(3881), + [anon_sym_is] = ACTIONS(1843), + [anon_sym_BANGis] = ACTIONS(1841), + [anon_sym_in] = ACTIONS(1843), + [anon_sym_BANGin] = ACTIONS(1841), + [anon_sym_match] = ACTIONS(1843), + [anon_sym_select] = ACTIONS(1843), + [anon_sym_lock] = ACTIONS(1843), + [anon_sym_rlock] = ACTIONS(1843), + [anon_sym_unsafe] = ACTIONS(1843), + [anon_sym_sql] = ACTIONS(1843), + [sym_int_literal] = ACTIONS(1843), + [sym_float_literal] = ACTIONS(1841), + [sym_rune_literal] = ACTIONS(1841), + [sym_pseudo_compile_time_identifier] = ACTIONS(1843), + [anon_sym_shared] = ACTIONS(1843), + [anon_sym_map_LBRACK] = ACTIONS(1841), + [anon_sym_chan] = ACTIONS(1843), + [anon_sym_thread] = ACTIONS(1843), + [anon_sym_atomic] = ACTIONS(1843), + [sym___double_quote] = ACTIONS(1841), + [sym___single_quote] = ACTIONS(1841), + [sym___c_double_quote] = ACTIONS(1841), + [sym___c_single_quote] = ACTIONS(1841), + [sym___r_double_quote] = ACTIONS(1841), + [sym___r_single_quote] = ACTIONS(1841), }, [1270] = { [sym_line_comment] = STATE(1270), [sym_block_comment] = STATE(1270), - [sym_identifier] = ACTIONS(2794), + [sym_identifier] = ACTIONS(1813), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_SEMI] = ACTIONS(2792), - [anon_sym_DOT] = ACTIONS(2794), - [anon_sym_as] = ACTIONS(2794), - [anon_sym_LBRACE] = ACTIONS(2792), - [anon_sym_COMMA] = ACTIONS(2792), - [anon_sym_RBRACE] = ACTIONS(2792), - [anon_sym_LPAREN] = ACTIONS(2792), - [anon_sym_PIPE] = ACTIONS(2794), - [anon_sym_fn] = ACTIONS(2794), - [anon_sym_PLUS] = ACTIONS(2794), - [anon_sym_DASH] = ACTIONS(2794), - [anon_sym_STAR] = ACTIONS(2792), - [anon_sym_SLASH] = ACTIONS(2794), - [anon_sym_PERCENT] = ACTIONS(2792), - [anon_sym_LT] = ACTIONS(2794), - [anon_sym_GT] = ACTIONS(2794), - [anon_sym_EQ_EQ] = ACTIONS(2792), - [anon_sym_BANG_EQ] = ACTIONS(2792), - [anon_sym_LT_EQ] = ACTIONS(2792), - [anon_sym_GT_EQ] = ACTIONS(2792), - [anon_sym_LBRACK] = ACTIONS(2792), - [anon_sym_RBRACK] = ACTIONS(2792), - [anon_sym_struct] = ACTIONS(2794), - [anon_sym_mut] = ACTIONS(2794), - [anon_sym_COLON] = ACTIONS(2792), - [anon_sym_PLUS_PLUS] = ACTIONS(2792), - [anon_sym_DASH_DASH] = ACTIONS(2792), - [anon_sym_QMARK] = ACTIONS(2794), - [anon_sym_BANG] = ACTIONS(2794), - [anon_sym_go] = ACTIONS(2794), - [anon_sym_spawn] = ACTIONS(2794), - [anon_sym_json_DOTdecode] = ACTIONS(2792), - [anon_sym_LBRACK2] = ACTIONS(2794), - [anon_sym_TILDE] = ACTIONS(2792), - [anon_sym_CARET] = ACTIONS(2792), - [anon_sym_AMP] = ACTIONS(2794), - [anon_sym_LT_DASH] = ACTIONS(2792), - [anon_sym_LT_LT] = ACTIONS(2792), - [anon_sym_GT_GT] = ACTIONS(2794), - [anon_sym_GT_GT_GT] = ACTIONS(2792), - [anon_sym_AMP_CARET] = ACTIONS(2792), - [anon_sym_AMP_AMP] = ACTIONS(2792), - [anon_sym_PIPE_PIPE] = ACTIONS(2792), - [anon_sym_or] = ACTIONS(2794), - [sym_none] = ACTIONS(2794), - [sym_true] = ACTIONS(2794), - [sym_false] = ACTIONS(2794), - [sym_nil] = ACTIONS(2794), - [anon_sym_QMARK_DOT] = ACTIONS(2792), - [anon_sym_POUND_LBRACK] = ACTIONS(2792), - [anon_sym_if] = ACTIONS(2794), - [anon_sym_DOLLARif] = ACTIONS(2794), - [anon_sym_is] = ACTIONS(2794), - [anon_sym_BANGis] = ACTIONS(2792), - [anon_sym_in] = ACTIONS(2794), - [anon_sym_BANGin] = ACTIONS(2792), - [anon_sym_match] = ACTIONS(2794), - [anon_sym_select] = ACTIONS(2794), - [anon_sym_lock] = ACTIONS(2794), - [anon_sym_rlock] = ACTIONS(2794), - [anon_sym_unsafe] = ACTIONS(2794), - [anon_sym_sql] = ACTIONS(2794), - [sym_int_literal] = ACTIONS(2794), - [sym_float_literal] = ACTIONS(2792), - [sym_rune_literal] = ACTIONS(2792), - [sym_pseudo_compile_time_identifier] = ACTIONS(2794), - [anon_sym_shared] = ACTIONS(2794), - [anon_sym_map_LBRACK] = ACTIONS(2792), - [anon_sym_chan] = ACTIONS(2794), - [anon_sym_thread] = ACTIONS(2794), - [anon_sym_atomic] = ACTIONS(2794), - [sym___double_quote] = ACTIONS(2792), - [sym___single_quote] = ACTIONS(2792), - [sym___c_double_quote] = ACTIONS(2792), - [sym___c_single_quote] = ACTIONS(2792), - [sym___r_double_quote] = ACTIONS(2792), - [sym___r_single_quote] = ACTIONS(2792), + [anon_sym_DOT] = ACTIONS(1813), + [anon_sym_as] = ACTIONS(1813), + [anon_sym_LBRACE] = ACTIONS(1811), + [anon_sym_COMMA] = ACTIONS(1811), + [anon_sym_RBRACE] = ACTIONS(1811), + [anon_sym_LPAREN] = ACTIONS(1811), + [anon_sym_PIPE] = ACTIONS(1813), + [anon_sym_fn] = ACTIONS(1813), + [anon_sym_PLUS] = ACTIONS(1813), + [anon_sym_DASH] = ACTIONS(1813), + [anon_sym_STAR] = ACTIONS(1811), + [anon_sym_SLASH] = ACTIONS(1813), + [anon_sym_PERCENT] = ACTIONS(1811), + [anon_sym_LT] = ACTIONS(1813), + [anon_sym_GT] = ACTIONS(1813), + [anon_sym_EQ_EQ] = ACTIONS(1811), + [anon_sym_BANG_EQ] = ACTIONS(1811), + [anon_sym_LT_EQ] = ACTIONS(1811), + [anon_sym_GT_EQ] = ACTIONS(1811), + [anon_sym_LBRACK] = ACTIONS(1811), + [anon_sym_RBRACK] = ACTIONS(1811), + [anon_sym_struct] = ACTIONS(1813), + [anon_sym_mut] = ACTIONS(1813), + [anon_sym_COLON] = ACTIONS(1811), + [anon_sym_PLUS_PLUS] = ACTIONS(1811), + [anon_sym_DASH_DASH] = ACTIONS(1811), + [anon_sym_QMARK] = ACTIONS(1813), + [anon_sym_BANG] = ACTIONS(1813), + [anon_sym_go] = ACTIONS(1813), + [anon_sym_spawn] = ACTIONS(1813), + [anon_sym_json_DOTdecode] = ACTIONS(1811), + [anon_sym_LBRACK2] = ACTIONS(1813), + [anon_sym_TILDE] = ACTIONS(1811), + [anon_sym_CARET] = ACTIONS(1811), + [anon_sym_AMP] = ACTIONS(1813), + [anon_sym_LT_DASH] = ACTIONS(1811), + [anon_sym_LT_LT] = ACTIONS(1811), + [anon_sym_GT_GT] = ACTIONS(1813), + [anon_sym_GT_GT_GT] = ACTIONS(1811), + [anon_sym_AMP_CARET] = ACTIONS(1811), + [anon_sym_AMP_AMP] = ACTIONS(1811), + [anon_sym_PIPE_PIPE] = ACTIONS(1811), + [anon_sym_or] = ACTIONS(1813), + [sym_none] = ACTIONS(1813), + [sym_true] = ACTIONS(1813), + [sym_false] = ACTIONS(1813), + [sym_nil] = ACTIONS(1813), + [anon_sym_QMARK_DOT] = ACTIONS(1811), + [anon_sym_POUND_LBRACK] = ACTIONS(1811), + [anon_sym_if] = ACTIONS(1813), + [anon_sym_else] = ACTIONS(1813), + [anon_sym_DOLLARif] = ACTIONS(1813), + [anon_sym_is] = ACTIONS(1813), + [anon_sym_BANGis] = ACTIONS(1811), + [anon_sym_in] = ACTIONS(1813), + [anon_sym_BANGin] = ACTIONS(1811), + [anon_sym_match] = ACTIONS(1813), + [anon_sym_select] = ACTIONS(1813), + [anon_sym_lock] = ACTIONS(1813), + [anon_sym_rlock] = ACTIONS(1813), + [anon_sym_unsafe] = ACTIONS(1813), + [anon_sym_sql] = ACTIONS(1813), + [sym_int_literal] = ACTIONS(1813), + [sym_float_literal] = ACTIONS(1811), + [sym_rune_literal] = ACTIONS(1811), + [sym_pseudo_compile_time_identifier] = ACTIONS(1813), + [anon_sym_shared] = ACTIONS(1813), + [anon_sym_map_LBRACK] = ACTIONS(1811), + [anon_sym_chan] = ACTIONS(1813), + [anon_sym_thread] = ACTIONS(1813), + [anon_sym_atomic] = ACTIONS(1813), + [sym___double_quote] = ACTIONS(1811), + [sym___single_quote] = ACTIONS(1811), + [sym___c_double_quote] = ACTIONS(1811), + [sym___c_single_quote] = ACTIONS(1811), + [sym___r_double_quote] = ACTIONS(1811), + [sym___r_single_quote] = ACTIONS(1811), }, [1271] = { [sym_line_comment] = STATE(1271), [sym_block_comment] = STATE(1271), - [sym_type_parameters] = STATE(4073), - [sym_argument_list] = STATE(1358), - [sym_or_block] = STATE(1359), - [sym_identifier] = ACTIONS(1773), + [sym_type_parameters] = STATE(4093), + [sym_argument_list] = STATE(1361), + [sym_or_block] = STATE(1362), + [sym_identifier] = ACTIONS(1765), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(3815), - [anon_sym_as] = ACTIONS(3835), - [anon_sym_LBRACE] = ACTIONS(1771), - [anon_sym_COMMA] = ACTIONS(1771), - [anon_sym_LPAREN] = ACTIONS(3817), - [anon_sym_PIPE] = ACTIONS(3879), - [anon_sym_fn] = ACTIONS(1773), - [anon_sym_PLUS] = ACTIONS(3879), - [anon_sym_DASH] = ACTIONS(3879), - [anon_sym_STAR] = ACTIONS(3881), - [anon_sym_SLASH] = ACTIONS(3883), - [anon_sym_PERCENT] = ACTIONS(3881), - [anon_sym_LT] = ACTIONS(3885), - [anon_sym_GT] = ACTIONS(3885), - [anon_sym_EQ_EQ] = ACTIONS(3887), - [anon_sym_BANG_EQ] = ACTIONS(3887), - [anon_sym_LT_EQ] = ACTIONS(3887), - [anon_sym_GT_EQ] = ACTIONS(3887), - [anon_sym_LBRACK] = ACTIONS(3819), - [anon_sym_RBRACK] = ACTIONS(1771), - [anon_sym_struct] = ACTIONS(1773), - [anon_sym_mut] = ACTIONS(1773), - [anon_sym_PLUS_PLUS] = ACTIONS(3851), - [anon_sym_DASH_DASH] = ACTIONS(3853), - [anon_sym_QMARK] = ACTIONS(3821), - [anon_sym_BANG] = ACTIONS(3823), - [anon_sym_go] = ACTIONS(1773), - [anon_sym_spawn] = ACTIONS(1773), - [anon_sym_json_DOTdecode] = ACTIONS(1771), - [anon_sym_LBRACK2] = ACTIONS(3825), - [anon_sym_TILDE] = ACTIONS(1771), + [anon_sym_DOT] = ACTIONS(3821), + [anon_sym_as] = ACTIONS(1765), + [anon_sym_LBRACE] = ACTIONS(1763), + [anon_sym_COMMA] = ACTIONS(1763), + [anon_sym_LPAREN] = ACTIONS(3823), + [anon_sym_PIPE] = ACTIONS(3883), + [anon_sym_fn] = ACTIONS(1765), + [anon_sym_PLUS] = ACTIONS(3883), + [anon_sym_DASH] = ACTIONS(3883), + [anon_sym_STAR] = ACTIONS(3885), + [anon_sym_SLASH] = ACTIONS(3887), + [anon_sym_PERCENT] = ACTIONS(3885), + [anon_sym_LT] = ACTIONS(1765), + [anon_sym_GT] = ACTIONS(1765), + [anon_sym_EQ_EQ] = ACTIONS(1763), + [anon_sym_BANG_EQ] = ACTIONS(1763), + [anon_sym_LT_EQ] = ACTIONS(1763), + [anon_sym_GT_EQ] = ACTIONS(1763), + [anon_sym_LBRACK] = ACTIONS(3825), + [anon_sym_RBRACK] = ACTIONS(1763), + [anon_sym_struct] = ACTIONS(1765), + [anon_sym_mut] = ACTIONS(1765), + [anon_sym_PLUS_PLUS] = ACTIONS(1763), + [anon_sym_DASH_DASH] = ACTIONS(1763), + [anon_sym_QMARK] = ACTIONS(3827), + [anon_sym_BANG] = ACTIONS(3829), + [anon_sym_go] = ACTIONS(1765), + [anon_sym_spawn] = ACTIONS(1765), + [anon_sym_json_DOTdecode] = ACTIONS(1763), + [anon_sym_LBRACK2] = ACTIONS(3831), + [anon_sym_TILDE] = ACTIONS(1763), [anon_sym_CARET] = ACTIONS(3889), - [anon_sym_AMP] = ACTIONS(3883), - [anon_sym_LT_DASH] = ACTIONS(1771), - [anon_sym_LT_LT] = ACTIONS(3881), - [anon_sym_GT_GT] = ACTIONS(3883), - [anon_sym_GT_GT_GT] = ACTIONS(3881), - [anon_sym_AMP_CARET] = ACTIONS(3881), - [anon_sym_AMP_AMP] = ACTIONS(3891), - [anon_sym_PIPE_PIPE] = ACTIONS(3893), - [anon_sym_or] = ACTIONS(3861), - [sym_none] = ACTIONS(1773), - [sym_true] = ACTIONS(1773), - [sym_false] = ACTIONS(1773), - [sym_nil] = ACTIONS(1773), - [anon_sym_QMARK_DOT] = ACTIONS(3827), - [anon_sym_POUND_LBRACK] = ACTIONS(3829), - [anon_sym_if] = ACTIONS(1773), - [anon_sym_DOLLARif] = ACTIONS(1773), - [anon_sym_is] = ACTIONS(3863), - [anon_sym_BANGis] = ACTIONS(3865), - [anon_sym_in] = ACTIONS(3895), - [anon_sym_BANGin] = ACTIONS(3897), - [anon_sym_match] = ACTIONS(1773), - [anon_sym_select] = ACTIONS(1773), - [anon_sym_lock] = ACTIONS(1773), - [anon_sym_rlock] = ACTIONS(1773), - [anon_sym_unsafe] = ACTIONS(1773), - [anon_sym_sql] = ACTIONS(1773), - [sym_int_literal] = ACTIONS(1773), - [sym_float_literal] = ACTIONS(1771), - [sym_rune_literal] = ACTIONS(1771), - [sym_pseudo_compile_time_identifier] = ACTIONS(1773), - [anon_sym_shared] = ACTIONS(1773), - [anon_sym_map_LBRACK] = ACTIONS(1771), - [anon_sym_chan] = ACTIONS(1773), - [anon_sym_thread] = ACTIONS(1773), - [anon_sym_atomic] = ACTIONS(1773), - [sym___double_quote] = ACTIONS(1771), - [sym___single_quote] = ACTIONS(1771), - [sym___c_double_quote] = ACTIONS(1771), - [sym___c_single_quote] = ACTIONS(1771), - [sym___r_double_quote] = ACTIONS(1771), - [sym___r_single_quote] = ACTIONS(1771), + [anon_sym_AMP] = ACTIONS(3887), + [anon_sym_LT_DASH] = ACTIONS(1763), + [anon_sym_LT_LT] = ACTIONS(3885), + [anon_sym_GT_GT] = ACTIONS(3887), + [anon_sym_GT_GT_GT] = ACTIONS(3885), + [anon_sym_AMP_CARET] = ACTIONS(3885), + [anon_sym_AMP_AMP] = ACTIONS(1763), + [anon_sym_PIPE_PIPE] = ACTIONS(1763), + [anon_sym_or] = ACTIONS(1765), + [sym_none] = ACTIONS(1765), + [sym_true] = ACTIONS(1765), + [sym_false] = ACTIONS(1765), + [sym_nil] = ACTIONS(1765), + [anon_sym_QMARK_DOT] = ACTIONS(3833), + [anon_sym_POUND_LBRACK] = ACTIONS(3835), + [anon_sym_if] = ACTIONS(1765), + [anon_sym_DOLLARif] = ACTIONS(1765), + [anon_sym_is] = ACTIONS(1765), + [anon_sym_BANGis] = ACTIONS(1763), + [anon_sym_in] = ACTIONS(1765), + [anon_sym_BANGin] = ACTIONS(1763), + [anon_sym_match] = ACTIONS(1765), + [anon_sym_select] = ACTIONS(1765), + [anon_sym_lock] = ACTIONS(1765), + [anon_sym_rlock] = ACTIONS(1765), + [anon_sym_unsafe] = ACTIONS(1765), + [anon_sym_sql] = ACTIONS(1765), + [sym_int_literal] = ACTIONS(1765), + [sym_float_literal] = ACTIONS(1763), + [sym_rune_literal] = ACTIONS(1763), + [sym_pseudo_compile_time_identifier] = ACTIONS(1765), + [anon_sym_shared] = ACTIONS(1765), + [anon_sym_map_LBRACK] = ACTIONS(1763), + [anon_sym_chan] = ACTIONS(1765), + [anon_sym_thread] = ACTIONS(1765), + [anon_sym_atomic] = ACTIONS(1765), + [sym___double_quote] = ACTIONS(1763), + [sym___single_quote] = ACTIONS(1763), + [sym___c_double_quote] = ACTIONS(1763), + [sym___c_single_quote] = ACTIONS(1763), + [sym___r_double_quote] = ACTIONS(1763), + [sym___r_single_quote] = ACTIONS(1763), }, [1272] = { [sym_line_comment] = STATE(1272), [sym_block_comment] = STATE(1272), - [sym_identifier] = ACTIONS(2806), + [sym_type_parameters] = STATE(4093), + [sym_argument_list] = STATE(1361), + [sym_or_block] = STATE(1362), + [sym_identifier] = ACTIONS(1765), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_SEMI] = ACTIONS(2804), - [anon_sym_DOT] = ACTIONS(2806), - [anon_sym_as] = ACTIONS(2806), - [anon_sym_LBRACE] = ACTIONS(2804), - [anon_sym_COMMA] = ACTIONS(2804), - [anon_sym_RBRACE] = ACTIONS(2804), - [anon_sym_LPAREN] = ACTIONS(2804), - [anon_sym_PIPE] = ACTIONS(2806), - [anon_sym_fn] = ACTIONS(2806), - [anon_sym_PLUS] = ACTIONS(2806), - [anon_sym_DASH] = ACTIONS(2806), - [anon_sym_STAR] = ACTIONS(2804), - [anon_sym_SLASH] = ACTIONS(2806), - [anon_sym_PERCENT] = ACTIONS(2804), - [anon_sym_LT] = ACTIONS(2806), - [anon_sym_GT] = ACTIONS(2806), - [anon_sym_EQ_EQ] = ACTIONS(2804), - [anon_sym_BANG_EQ] = ACTIONS(2804), - [anon_sym_LT_EQ] = ACTIONS(2804), - [anon_sym_GT_EQ] = ACTIONS(2804), - [anon_sym_LBRACK] = ACTIONS(2804), - [anon_sym_RBRACK] = ACTIONS(2804), - [anon_sym_struct] = ACTIONS(2806), - [anon_sym_mut] = ACTIONS(2806), - [anon_sym_COLON] = ACTIONS(2804), - [anon_sym_PLUS_PLUS] = ACTIONS(2804), - [anon_sym_DASH_DASH] = ACTIONS(2804), - [anon_sym_QMARK] = ACTIONS(2806), - [anon_sym_BANG] = ACTIONS(2806), - [anon_sym_go] = ACTIONS(2806), - [anon_sym_spawn] = ACTIONS(2806), - [anon_sym_json_DOTdecode] = ACTIONS(2804), - [anon_sym_LBRACK2] = ACTIONS(2806), - [anon_sym_TILDE] = ACTIONS(2804), - [anon_sym_CARET] = ACTIONS(2804), - [anon_sym_AMP] = ACTIONS(2806), - [anon_sym_LT_DASH] = ACTIONS(2804), - [anon_sym_LT_LT] = ACTIONS(2804), - [anon_sym_GT_GT] = ACTIONS(2806), - [anon_sym_GT_GT_GT] = ACTIONS(2804), - [anon_sym_AMP_CARET] = ACTIONS(2804), - [anon_sym_AMP_AMP] = ACTIONS(2804), - [anon_sym_PIPE_PIPE] = ACTIONS(2804), - [anon_sym_or] = ACTIONS(2806), - [sym_none] = ACTIONS(2806), - [sym_true] = ACTIONS(2806), - [sym_false] = ACTIONS(2806), - [sym_nil] = ACTIONS(2806), - [anon_sym_QMARK_DOT] = ACTIONS(2804), - [anon_sym_POUND_LBRACK] = ACTIONS(2804), - [anon_sym_if] = ACTIONS(2806), - [anon_sym_DOLLARif] = ACTIONS(2806), - [anon_sym_is] = ACTIONS(2806), - [anon_sym_BANGis] = ACTIONS(2804), - [anon_sym_in] = ACTIONS(2806), - [anon_sym_BANGin] = ACTIONS(2804), - [anon_sym_match] = ACTIONS(2806), - [anon_sym_select] = ACTIONS(2806), - [anon_sym_lock] = ACTIONS(2806), - [anon_sym_rlock] = ACTIONS(2806), - [anon_sym_unsafe] = ACTIONS(2806), - [anon_sym_sql] = ACTIONS(2806), - [sym_int_literal] = ACTIONS(2806), - [sym_float_literal] = ACTIONS(2804), - [sym_rune_literal] = ACTIONS(2804), - [sym_pseudo_compile_time_identifier] = ACTIONS(2806), - [anon_sym_shared] = ACTIONS(2806), - [anon_sym_map_LBRACK] = ACTIONS(2804), - [anon_sym_chan] = ACTIONS(2806), - [anon_sym_thread] = ACTIONS(2806), - [anon_sym_atomic] = ACTIONS(2806), - [sym___double_quote] = ACTIONS(2804), - [sym___single_quote] = ACTIONS(2804), - [sym___c_double_quote] = ACTIONS(2804), - [sym___c_single_quote] = ACTIONS(2804), - [sym___r_double_quote] = ACTIONS(2804), - [sym___r_single_quote] = ACTIONS(2804), + [anon_sym_DOT] = ACTIONS(3821), + [anon_sym_as] = ACTIONS(1765), + [anon_sym_LBRACE] = ACTIONS(1763), + [anon_sym_COMMA] = ACTIONS(1763), + [anon_sym_LPAREN] = ACTIONS(3823), + [anon_sym_PIPE] = ACTIONS(3883), + [anon_sym_fn] = ACTIONS(1765), + [anon_sym_PLUS] = ACTIONS(3883), + [anon_sym_DASH] = ACTIONS(3883), + [anon_sym_STAR] = ACTIONS(3885), + [anon_sym_SLASH] = ACTIONS(3887), + [anon_sym_PERCENT] = ACTIONS(3885), + [anon_sym_LT] = ACTIONS(3891), + [anon_sym_GT] = ACTIONS(3891), + [anon_sym_EQ_EQ] = ACTIONS(3893), + [anon_sym_BANG_EQ] = ACTIONS(3893), + [anon_sym_LT_EQ] = ACTIONS(3893), + [anon_sym_GT_EQ] = ACTIONS(3893), + [anon_sym_LBRACK] = ACTIONS(3825), + [anon_sym_RBRACK] = ACTIONS(1763), + [anon_sym_struct] = ACTIONS(1765), + [anon_sym_mut] = ACTIONS(1765), + [anon_sym_PLUS_PLUS] = ACTIONS(1763), + [anon_sym_DASH_DASH] = ACTIONS(1763), + [anon_sym_QMARK] = ACTIONS(3827), + [anon_sym_BANG] = ACTIONS(3829), + [anon_sym_go] = ACTIONS(1765), + [anon_sym_spawn] = ACTIONS(1765), + [anon_sym_json_DOTdecode] = ACTIONS(1763), + [anon_sym_LBRACK2] = ACTIONS(3831), + [anon_sym_TILDE] = ACTIONS(1763), + [anon_sym_CARET] = ACTIONS(3889), + [anon_sym_AMP] = ACTIONS(3887), + [anon_sym_LT_DASH] = ACTIONS(1763), + [anon_sym_LT_LT] = ACTIONS(3885), + [anon_sym_GT_GT] = ACTIONS(3887), + [anon_sym_GT_GT_GT] = ACTIONS(3885), + [anon_sym_AMP_CARET] = ACTIONS(3885), + [anon_sym_AMP_AMP] = ACTIONS(1763), + [anon_sym_PIPE_PIPE] = ACTIONS(1763), + [anon_sym_or] = ACTIONS(1765), + [sym_none] = ACTIONS(1765), + [sym_true] = ACTIONS(1765), + [sym_false] = ACTIONS(1765), + [sym_nil] = ACTIONS(1765), + [anon_sym_QMARK_DOT] = ACTIONS(3833), + [anon_sym_POUND_LBRACK] = ACTIONS(3835), + [anon_sym_if] = ACTIONS(1765), + [anon_sym_DOLLARif] = ACTIONS(1765), + [anon_sym_is] = ACTIONS(1765), + [anon_sym_BANGis] = ACTIONS(1763), + [anon_sym_in] = ACTIONS(3895), + [anon_sym_BANGin] = ACTIONS(3897), + [anon_sym_match] = ACTIONS(1765), + [anon_sym_select] = ACTIONS(1765), + [anon_sym_lock] = ACTIONS(1765), + [anon_sym_rlock] = ACTIONS(1765), + [anon_sym_unsafe] = ACTIONS(1765), + [anon_sym_sql] = ACTIONS(1765), + [sym_int_literal] = ACTIONS(1765), + [sym_float_literal] = ACTIONS(1763), + [sym_rune_literal] = ACTIONS(1763), + [sym_pseudo_compile_time_identifier] = ACTIONS(1765), + [anon_sym_shared] = ACTIONS(1765), + [anon_sym_map_LBRACK] = ACTIONS(1763), + [anon_sym_chan] = ACTIONS(1765), + [anon_sym_thread] = ACTIONS(1765), + [anon_sym_atomic] = ACTIONS(1765), + [sym___double_quote] = ACTIONS(1763), + [sym___single_quote] = ACTIONS(1763), + [sym___c_double_quote] = ACTIONS(1763), + [sym___c_single_quote] = ACTIONS(1763), + [sym___r_double_quote] = ACTIONS(1763), + [sym___r_single_quote] = ACTIONS(1763), }, [1273] = { [sym_line_comment] = STATE(1273), [sym_block_comment] = STATE(1273), - [sym_type_parameters] = STATE(4073), - [sym_argument_list] = STATE(1358), - [sym_or_block] = STATE(1359), - [sym_identifier] = ACTIONS(1785), + [sym_type_parameters] = STATE(4093), + [sym_argument_list] = STATE(1361), + [sym_or_block] = STATE(1362), + [sym_identifier] = ACTIONS(3899), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(3815), - [anon_sym_as] = ACTIONS(1785), - [anon_sym_LBRACE] = ACTIONS(1783), - [anon_sym_COMMA] = ACTIONS(1783), - [anon_sym_LPAREN] = ACTIONS(3817), - [anon_sym_PIPE] = ACTIONS(1785), - [anon_sym_fn] = ACTIONS(1785), - [anon_sym_PLUS] = ACTIONS(1785), - [anon_sym_DASH] = ACTIONS(1785), - [anon_sym_STAR] = ACTIONS(3881), - [anon_sym_SLASH] = ACTIONS(3883), - [anon_sym_PERCENT] = ACTIONS(3881), - [anon_sym_LT] = ACTIONS(1785), - [anon_sym_GT] = ACTIONS(1785), - [anon_sym_EQ_EQ] = ACTIONS(1783), - [anon_sym_BANG_EQ] = ACTIONS(1783), - [anon_sym_LT_EQ] = ACTIONS(1783), - [anon_sym_GT_EQ] = ACTIONS(1783), - [anon_sym_LBRACK] = ACTIONS(3819), - [anon_sym_RBRACK] = ACTIONS(1783), - [anon_sym_struct] = ACTIONS(1785), - [anon_sym_mut] = ACTIONS(1785), - [anon_sym_PLUS_PLUS] = ACTIONS(1783), - [anon_sym_DASH_DASH] = ACTIONS(1783), - [anon_sym_QMARK] = ACTIONS(3821), - [anon_sym_BANG] = ACTIONS(3823), - [anon_sym_go] = ACTIONS(1785), - [anon_sym_spawn] = ACTIONS(1785), - [anon_sym_json_DOTdecode] = ACTIONS(1783), - [anon_sym_LBRACK2] = ACTIONS(3825), - [anon_sym_TILDE] = ACTIONS(1783), - [anon_sym_CARET] = ACTIONS(1783), - [anon_sym_AMP] = ACTIONS(3883), - [anon_sym_LT_DASH] = ACTIONS(1783), - [anon_sym_LT_LT] = ACTIONS(3881), - [anon_sym_GT_GT] = ACTIONS(3883), - [anon_sym_GT_GT_GT] = ACTIONS(3881), - [anon_sym_AMP_CARET] = ACTIONS(3881), - [anon_sym_AMP_AMP] = ACTIONS(1783), - [anon_sym_PIPE_PIPE] = ACTIONS(1783), - [anon_sym_or] = ACTIONS(1785), - [sym_none] = ACTIONS(1785), - [sym_true] = ACTIONS(1785), - [sym_false] = ACTIONS(1785), - [sym_nil] = ACTIONS(1785), - [anon_sym_QMARK_DOT] = ACTIONS(3827), - [anon_sym_POUND_LBRACK] = ACTIONS(3829), - [anon_sym_if] = ACTIONS(1785), - [anon_sym_DOLLARif] = ACTIONS(1785), - [anon_sym_is] = ACTIONS(1785), - [anon_sym_BANGis] = ACTIONS(1783), - [anon_sym_in] = ACTIONS(1785), - [anon_sym_BANGin] = ACTIONS(1783), - [anon_sym_match] = ACTIONS(1785), - [anon_sym_select] = ACTIONS(1785), - [anon_sym_lock] = ACTIONS(1785), - [anon_sym_rlock] = ACTIONS(1785), - [anon_sym_unsafe] = ACTIONS(1785), - [anon_sym_sql] = ACTIONS(1785), - [sym_int_literal] = ACTIONS(1785), - [sym_float_literal] = ACTIONS(1783), - [sym_rune_literal] = ACTIONS(1783), - [sym_pseudo_compile_time_identifier] = ACTIONS(1785), - [anon_sym_shared] = ACTIONS(1785), - [anon_sym_map_LBRACK] = ACTIONS(1783), - [anon_sym_chan] = ACTIONS(1785), - [anon_sym_thread] = ACTIONS(1785), - [anon_sym_atomic] = ACTIONS(1785), - [sym___double_quote] = ACTIONS(1783), - [sym___single_quote] = ACTIONS(1783), - [sym___c_double_quote] = ACTIONS(1783), - [sym___c_single_quote] = ACTIONS(1783), - [sym___r_double_quote] = ACTIONS(1783), - [sym___r_single_quote] = ACTIONS(1783), + [anon_sym_DOT] = ACTIONS(3821), + [anon_sym_as] = ACTIONS(3841), + [anon_sym_LBRACE] = ACTIONS(3901), + [anon_sym_COMMA] = ACTIONS(3903), + [anon_sym_LPAREN] = ACTIONS(3823), + [anon_sym_PIPE] = ACTIONS(3883), + [anon_sym_fn] = ACTIONS(3899), + [anon_sym_PLUS] = ACTIONS(3883), + [anon_sym_DASH] = ACTIONS(3883), + [anon_sym_STAR] = ACTIONS(3885), + [anon_sym_SLASH] = ACTIONS(3887), + [anon_sym_PERCENT] = ACTIONS(3885), + [anon_sym_LT] = ACTIONS(3891), + [anon_sym_GT] = ACTIONS(3891), + [anon_sym_EQ_EQ] = ACTIONS(3893), + [anon_sym_BANG_EQ] = ACTIONS(3893), + [anon_sym_LT_EQ] = ACTIONS(3893), + [anon_sym_GT_EQ] = ACTIONS(3893), + [anon_sym_LBRACK] = ACTIONS(3825), + [anon_sym_RBRACK] = ACTIONS(3901), + [anon_sym_struct] = ACTIONS(3899), + [anon_sym_mut] = ACTIONS(3899), + [anon_sym_PLUS_PLUS] = ACTIONS(3857), + [anon_sym_DASH_DASH] = ACTIONS(3859), + [anon_sym_QMARK] = ACTIONS(3827), + [anon_sym_BANG] = ACTIONS(3829), + [anon_sym_go] = ACTIONS(3899), + [anon_sym_spawn] = ACTIONS(3899), + [anon_sym_json_DOTdecode] = ACTIONS(3901), + [anon_sym_LBRACK2] = ACTIONS(3831), + [anon_sym_TILDE] = ACTIONS(3901), + [anon_sym_CARET] = ACTIONS(3889), + [anon_sym_AMP] = ACTIONS(3887), + [anon_sym_LT_DASH] = ACTIONS(3901), + [anon_sym_LT_LT] = ACTIONS(3885), + [anon_sym_GT_GT] = ACTIONS(3887), + [anon_sym_GT_GT_GT] = ACTIONS(3885), + [anon_sym_AMP_CARET] = ACTIONS(3885), + [anon_sym_AMP_AMP] = ACTIONS(3905), + [anon_sym_PIPE_PIPE] = ACTIONS(3907), + [anon_sym_or] = ACTIONS(3867), + [sym_none] = ACTIONS(3899), + [sym_true] = ACTIONS(3899), + [sym_false] = ACTIONS(3899), + [sym_nil] = ACTIONS(3899), + [anon_sym_QMARK_DOT] = ACTIONS(3833), + [anon_sym_POUND_LBRACK] = ACTIONS(3835), + [anon_sym_if] = ACTIONS(3899), + [anon_sym_DOLLARif] = ACTIONS(3899), + [anon_sym_is] = ACTIONS(3869), + [anon_sym_BANGis] = ACTIONS(3871), + [anon_sym_in] = ACTIONS(3895), + [anon_sym_BANGin] = ACTIONS(3897), + [anon_sym_match] = ACTIONS(3899), + [anon_sym_select] = ACTIONS(3899), + [anon_sym_lock] = ACTIONS(3899), + [anon_sym_rlock] = ACTIONS(3899), + [anon_sym_unsafe] = ACTIONS(3899), + [anon_sym_sql] = ACTIONS(3899), + [sym_int_literal] = ACTIONS(3899), + [sym_float_literal] = ACTIONS(3901), + [sym_rune_literal] = ACTIONS(3901), + [sym_pseudo_compile_time_identifier] = ACTIONS(3899), + [anon_sym_shared] = ACTIONS(3899), + [anon_sym_map_LBRACK] = ACTIONS(3901), + [anon_sym_chan] = ACTIONS(3899), + [anon_sym_thread] = ACTIONS(3899), + [anon_sym_atomic] = ACTIONS(3899), + [sym___double_quote] = ACTIONS(3901), + [sym___single_quote] = ACTIONS(3901), + [sym___c_double_quote] = ACTIONS(3901), + [sym___c_single_quote] = ACTIONS(3901), + [sym___r_double_quote] = ACTIONS(3901), + [sym___r_single_quote] = ACTIONS(3901), }, [1274] = { [sym_line_comment] = STATE(1274), [sym_block_comment] = STATE(1274), - [sym_type_parameters] = STATE(4073), - [sym_argument_list] = STATE(1358), - [sym_or_block] = STATE(1359), - [sym_identifier] = ACTIONS(1781), + [sym_type_parameters] = STATE(4093), + [sym_argument_list] = STATE(1361), + [sym_or_block] = STATE(1362), + [sym_identifier] = ACTIONS(1765), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(3815), - [anon_sym_as] = ACTIONS(3835), - [anon_sym_LBRACE] = ACTIONS(1779), - [anon_sym_COMMA] = ACTIONS(1779), - [anon_sym_LPAREN] = ACTIONS(3817), - [anon_sym_PIPE] = ACTIONS(3879), - [anon_sym_fn] = ACTIONS(1781), - [anon_sym_PLUS] = ACTIONS(3879), - [anon_sym_DASH] = ACTIONS(3879), - [anon_sym_STAR] = ACTIONS(3881), - [anon_sym_SLASH] = ACTIONS(3883), - [anon_sym_PERCENT] = ACTIONS(3881), - [anon_sym_LT] = ACTIONS(3885), - [anon_sym_GT] = ACTIONS(3885), - [anon_sym_EQ_EQ] = ACTIONS(3887), - [anon_sym_BANG_EQ] = ACTIONS(3887), - [anon_sym_LT_EQ] = ACTIONS(3887), - [anon_sym_GT_EQ] = ACTIONS(3887), - [anon_sym_LBRACK] = ACTIONS(3819), - [anon_sym_RBRACK] = ACTIONS(1779), - [anon_sym_struct] = ACTIONS(1781), - [anon_sym_mut] = ACTIONS(1781), - [anon_sym_PLUS_PLUS] = ACTIONS(3851), - [anon_sym_DASH_DASH] = ACTIONS(3853), - [anon_sym_QMARK] = ACTIONS(3821), - [anon_sym_BANG] = ACTIONS(3823), - [anon_sym_go] = ACTIONS(1781), - [anon_sym_spawn] = ACTIONS(1781), - [anon_sym_json_DOTdecode] = ACTIONS(1779), - [anon_sym_LBRACK2] = ACTIONS(3825), - [anon_sym_TILDE] = ACTIONS(1779), + [anon_sym_DOT] = ACTIONS(3821), + [anon_sym_as] = ACTIONS(1765), + [anon_sym_LBRACE] = ACTIONS(1763), + [anon_sym_COMMA] = ACTIONS(1763), + [anon_sym_LPAREN] = ACTIONS(3823), + [anon_sym_PIPE] = ACTIONS(3883), + [anon_sym_fn] = ACTIONS(1765), + [anon_sym_PLUS] = ACTIONS(3883), + [anon_sym_DASH] = ACTIONS(3883), + [anon_sym_STAR] = ACTIONS(3885), + [anon_sym_SLASH] = ACTIONS(3887), + [anon_sym_PERCENT] = ACTIONS(3885), + [anon_sym_LT] = ACTIONS(3891), + [anon_sym_GT] = ACTIONS(3891), + [anon_sym_EQ_EQ] = ACTIONS(3893), + [anon_sym_BANG_EQ] = ACTIONS(3893), + [anon_sym_LT_EQ] = ACTIONS(3893), + [anon_sym_GT_EQ] = ACTIONS(3893), + [anon_sym_LBRACK] = ACTIONS(3825), + [anon_sym_RBRACK] = ACTIONS(1763), + [anon_sym_struct] = ACTIONS(1765), + [anon_sym_mut] = ACTIONS(1765), + [anon_sym_PLUS_PLUS] = ACTIONS(1763), + [anon_sym_DASH_DASH] = ACTIONS(1763), + [anon_sym_QMARK] = ACTIONS(3827), + [anon_sym_BANG] = ACTIONS(3829), + [anon_sym_go] = ACTIONS(1765), + [anon_sym_spawn] = ACTIONS(1765), + [anon_sym_json_DOTdecode] = ACTIONS(1763), + [anon_sym_LBRACK2] = ACTIONS(3831), + [anon_sym_TILDE] = ACTIONS(1763), [anon_sym_CARET] = ACTIONS(3889), - [anon_sym_AMP] = ACTIONS(3883), - [anon_sym_LT_DASH] = ACTIONS(1779), - [anon_sym_LT_LT] = ACTIONS(3881), - [anon_sym_GT_GT] = ACTIONS(3883), - [anon_sym_GT_GT_GT] = ACTIONS(3881), - [anon_sym_AMP_CARET] = ACTIONS(3881), - [anon_sym_AMP_AMP] = ACTIONS(3891), - [anon_sym_PIPE_PIPE] = ACTIONS(3893), - [anon_sym_or] = ACTIONS(3861), - [sym_none] = ACTIONS(1781), - [sym_true] = ACTIONS(1781), - [sym_false] = ACTIONS(1781), - [sym_nil] = ACTIONS(1781), - [anon_sym_QMARK_DOT] = ACTIONS(3827), - [anon_sym_POUND_LBRACK] = ACTIONS(3829), - [anon_sym_if] = ACTIONS(1781), - [anon_sym_DOLLARif] = ACTIONS(1781), - [anon_sym_is] = ACTIONS(3863), - [anon_sym_BANGis] = ACTIONS(3865), + [anon_sym_AMP] = ACTIONS(3887), + [anon_sym_LT_DASH] = ACTIONS(1763), + [anon_sym_LT_LT] = ACTIONS(3885), + [anon_sym_GT_GT] = ACTIONS(3887), + [anon_sym_GT_GT_GT] = ACTIONS(3885), + [anon_sym_AMP_CARET] = ACTIONS(3885), + [anon_sym_AMP_AMP] = ACTIONS(3905), + [anon_sym_PIPE_PIPE] = ACTIONS(1763), + [anon_sym_or] = ACTIONS(1765), + [sym_none] = ACTIONS(1765), + [sym_true] = ACTIONS(1765), + [sym_false] = ACTIONS(1765), + [sym_nil] = ACTIONS(1765), + [anon_sym_QMARK_DOT] = ACTIONS(3833), + [anon_sym_POUND_LBRACK] = ACTIONS(3835), + [anon_sym_if] = ACTIONS(1765), + [anon_sym_DOLLARif] = ACTIONS(1765), + [anon_sym_is] = ACTIONS(1765), + [anon_sym_BANGis] = ACTIONS(1763), [anon_sym_in] = ACTIONS(3895), [anon_sym_BANGin] = ACTIONS(3897), - [anon_sym_match] = ACTIONS(1781), - [anon_sym_select] = ACTIONS(1781), - [anon_sym_lock] = ACTIONS(1781), - [anon_sym_rlock] = ACTIONS(1781), - [anon_sym_unsafe] = ACTIONS(1781), - [anon_sym_sql] = ACTIONS(1781), - [sym_int_literal] = ACTIONS(1781), - [sym_float_literal] = ACTIONS(1779), - [sym_rune_literal] = ACTIONS(1779), - [sym_pseudo_compile_time_identifier] = ACTIONS(1781), - [anon_sym_shared] = ACTIONS(1781), - [anon_sym_map_LBRACK] = ACTIONS(1779), - [anon_sym_chan] = ACTIONS(1781), - [anon_sym_thread] = ACTIONS(1781), - [anon_sym_atomic] = ACTIONS(1781), - [sym___double_quote] = ACTIONS(1779), - [sym___single_quote] = ACTIONS(1779), - [sym___c_double_quote] = ACTIONS(1779), - [sym___c_single_quote] = ACTIONS(1779), - [sym___r_double_quote] = ACTIONS(1779), - [sym___r_single_quote] = ACTIONS(1779), + [anon_sym_match] = ACTIONS(1765), + [anon_sym_select] = ACTIONS(1765), + [anon_sym_lock] = ACTIONS(1765), + [anon_sym_rlock] = ACTIONS(1765), + [anon_sym_unsafe] = ACTIONS(1765), + [anon_sym_sql] = ACTIONS(1765), + [sym_int_literal] = ACTIONS(1765), + [sym_float_literal] = ACTIONS(1763), + [sym_rune_literal] = ACTIONS(1763), + [sym_pseudo_compile_time_identifier] = ACTIONS(1765), + [anon_sym_shared] = ACTIONS(1765), + [anon_sym_map_LBRACK] = ACTIONS(1763), + [anon_sym_chan] = ACTIONS(1765), + [anon_sym_thread] = ACTIONS(1765), + [anon_sym_atomic] = ACTIONS(1765), + [sym___double_quote] = ACTIONS(1763), + [sym___single_quote] = ACTIONS(1763), + [sym___c_double_quote] = ACTIONS(1763), + [sym___c_single_quote] = ACTIONS(1763), + [sym___r_double_quote] = ACTIONS(1763), + [sym___r_single_quote] = ACTIONS(1763), }, [1275] = { [sym_line_comment] = STATE(1275), [sym_block_comment] = STATE(1275), - [sym_identifier] = ACTIONS(2878), + [sym_identifier] = ACTIONS(1809), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_SEMI] = ACTIONS(2876), - [anon_sym_DOT] = ACTIONS(2878), - [anon_sym_as] = ACTIONS(2878), - [anon_sym_LBRACE] = ACTIONS(2876), - [anon_sym_COMMA] = ACTIONS(2876), - [anon_sym_RBRACE] = ACTIONS(2876), - [anon_sym_LPAREN] = ACTIONS(2876), - [anon_sym_PIPE] = ACTIONS(2878), - [anon_sym_fn] = ACTIONS(2878), - [anon_sym_PLUS] = ACTIONS(2878), - [anon_sym_DASH] = ACTIONS(2878), - [anon_sym_STAR] = ACTIONS(2876), - [anon_sym_SLASH] = ACTIONS(2878), - [anon_sym_PERCENT] = ACTIONS(2876), - [anon_sym_LT] = ACTIONS(2878), - [anon_sym_GT] = ACTIONS(2878), - [anon_sym_EQ_EQ] = ACTIONS(2876), - [anon_sym_BANG_EQ] = ACTIONS(2876), - [anon_sym_LT_EQ] = ACTIONS(2876), - [anon_sym_GT_EQ] = ACTIONS(2876), - [anon_sym_LBRACK] = ACTIONS(2876), - [anon_sym_RBRACK] = ACTIONS(2876), - [anon_sym_struct] = ACTIONS(2878), - [anon_sym_mut] = ACTIONS(2878), - [anon_sym_COLON] = ACTIONS(2876), - [anon_sym_PLUS_PLUS] = ACTIONS(2876), - [anon_sym_DASH_DASH] = ACTIONS(2876), - [anon_sym_QMARK] = ACTIONS(2878), - [anon_sym_BANG] = ACTIONS(2878), - [anon_sym_go] = ACTIONS(2878), - [anon_sym_spawn] = ACTIONS(2878), - [anon_sym_json_DOTdecode] = ACTIONS(2876), - [anon_sym_LBRACK2] = ACTIONS(2878), - [anon_sym_TILDE] = ACTIONS(2876), - [anon_sym_CARET] = ACTIONS(2876), - [anon_sym_AMP] = ACTIONS(2878), - [anon_sym_LT_DASH] = ACTIONS(2876), - [anon_sym_LT_LT] = ACTIONS(2876), - [anon_sym_GT_GT] = ACTIONS(2878), - [anon_sym_GT_GT_GT] = ACTIONS(2876), - [anon_sym_AMP_CARET] = ACTIONS(2876), - [anon_sym_AMP_AMP] = ACTIONS(2876), - [anon_sym_PIPE_PIPE] = ACTIONS(2876), - [anon_sym_or] = ACTIONS(2878), - [sym_none] = ACTIONS(2878), - [sym_true] = ACTIONS(2878), - [sym_false] = ACTIONS(2878), - [sym_nil] = ACTIONS(2878), - [anon_sym_QMARK_DOT] = ACTIONS(2876), - [anon_sym_POUND_LBRACK] = ACTIONS(2876), - [anon_sym_if] = ACTIONS(2878), - [anon_sym_DOLLARif] = ACTIONS(2878), - [anon_sym_is] = ACTIONS(2878), - [anon_sym_BANGis] = ACTIONS(2876), - [anon_sym_in] = ACTIONS(2878), - [anon_sym_BANGin] = ACTIONS(2876), - [anon_sym_match] = ACTIONS(2878), - [anon_sym_select] = ACTIONS(2878), - [anon_sym_lock] = ACTIONS(2878), - [anon_sym_rlock] = ACTIONS(2878), - [anon_sym_unsafe] = ACTIONS(2878), - [anon_sym_sql] = ACTIONS(2878), - [sym_int_literal] = ACTIONS(2878), - [sym_float_literal] = ACTIONS(2876), - [sym_rune_literal] = ACTIONS(2876), - [sym_pseudo_compile_time_identifier] = ACTIONS(2878), - [anon_sym_shared] = ACTIONS(2878), - [anon_sym_map_LBRACK] = ACTIONS(2876), - [anon_sym_chan] = ACTIONS(2878), - [anon_sym_thread] = ACTIONS(2878), - [anon_sym_atomic] = ACTIONS(2878), - [sym___double_quote] = ACTIONS(2876), - [sym___single_quote] = ACTIONS(2876), - [sym___c_double_quote] = ACTIONS(2876), - [sym___c_single_quote] = ACTIONS(2876), - [sym___r_double_quote] = ACTIONS(2876), - [sym___r_single_quote] = ACTIONS(2876), + [anon_sym_DOT] = ACTIONS(1809), + [anon_sym_as] = ACTIONS(1809), + [anon_sym_LBRACE] = ACTIONS(1807), + [anon_sym_COMMA] = ACTIONS(1807), + [anon_sym_RBRACE] = ACTIONS(1807), + [anon_sym_LPAREN] = ACTIONS(1807), + [anon_sym_PIPE] = ACTIONS(1809), + [anon_sym_fn] = ACTIONS(1809), + [anon_sym_PLUS] = ACTIONS(1809), + [anon_sym_DASH] = ACTIONS(1809), + [anon_sym_STAR] = ACTIONS(1807), + [anon_sym_SLASH] = ACTIONS(1809), + [anon_sym_PERCENT] = ACTIONS(1807), + [anon_sym_LT] = ACTIONS(1809), + [anon_sym_GT] = ACTIONS(1809), + [anon_sym_EQ_EQ] = ACTIONS(1807), + [anon_sym_BANG_EQ] = ACTIONS(1807), + [anon_sym_LT_EQ] = ACTIONS(1807), + [anon_sym_GT_EQ] = ACTIONS(1807), + [anon_sym_LBRACK] = ACTIONS(1807), + [anon_sym_RBRACK] = ACTIONS(1807), + [anon_sym_struct] = ACTIONS(1809), + [anon_sym_mut] = ACTIONS(1809), + [anon_sym_COLON] = ACTIONS(1807), + [anon_sym_PLUS_PLUS] = ACTIONS(1807), + [anon_sym_DASH_DASH] = ACTIONS(1807), + [anon_sym_QMARK] = ACTIONS(1809), + [anon_sym_BANG] = ACTIONS(1809), + [anon_sym_go] = ACTIONS(1809), + [anon_sym_spawn] = ACTIONS(1809), + [anon_sym_json_DOTdecode] = ACTIONS(1807), + [anon_sym_LBRACK2] = ACTIONS(1809), + [anon_sym_TILDE] = ACTIONS(1807), + [anon_sym_CARET] = ACTIONS(1807), + [anon_sym_AMP] = ACTIONS(1809), + [anon_sym_LT_DASH] = ACTIONS(1807), + [anon_sym_LT_LT] = ACTIONS(1807), + [anon_sym_GT_GT] = ACTIONS(1809), + [anon_sym_GT_GT_GT] = ACTIONS(1807), + [anon_sym_AMP_CARET] = ACTIONS(1807), + [anon_sym_AMP_AMP] = ACTIONS(1807), + [anon_sym_PIPE_PIPE] = ACTIONS(1807), + [anon_sym_or] = ACTIONS(1809), + [sym_none] = ACTIONS(1809), + [sym_true] = ACTIONS(1809), + [sym_false] = ACTIONS(1809), + [sym_nil] = ACTIONS(1809), + [anon_sym_QMARK_DOT] = ACTIONS(1807), + [anon_sym_POUND_LBRACK] = ACTIONS(1807), + [anon_sym_if] = ACTIONS(1809), + [anon_sym_DOLLARif] = ACTIONS(1809), + [anon_sym_DOLLARelse] = ACTIONS(1809), + [anon_sym_is] = ACTIONS(1809), + [anon_sym_BANGis] = ACTIONS(1807), + [anon_sym_in] = ACTIONS(1809), + [anon_sym_BANGin] = ACTIONS(1807), + [anon_sym_match] = ACTIONS(1809), + [anon_sym_select] = ACTIONS(1809), + [anon_sym_lock] = ACTIONS(1809), + [anon_sym_rlock] = ACTIONS(1809), + [anon_sym_unsafe] = ACTIONS(1809), + [anon_sym_sql] = ACTIONS(1809), + [sym_int_literal] = ACTIONS(1809), + [sym_float_literal] = ACTIONS(1807), + [sym_rune_literal] = ACTIONS(1807), + [sym_pseudo_compile_time_identifier] = ACTIONS(1809), + [anon_sym_shared] = ACTIONS(1809), + [anon_sym_map_LBRACK] = ACTIONS(1807), + [anon_sym_chan] = ACTIONS(1809), + [anon_sym_thread] = ACTIONS(1809), + [anon_sym_atomic] = ACTIONS(1809), + [sym___double_quote] = ACTIONS(1807), + [sym___single_quote] = ACTIONS(1807), + [sym___c_double_quote] = ACTIONS(1807), + [sym___c_single_quote] = ACTIONS(1807), + [sym___r_double_quote] = ACTIONS(1807), + [sym___r_single_quote] = ACTIONS(1807), }, [1276] = { [sym_line_comment] = STATE(1276), [sym_block_comment] = STATE(1276), - [sym_type_parameters] = STATE(4073), - [sym_argument_list] = STATE(1358), - [sym_or_block] = STATE(1359), - [sym_identifier] = ACTIONS(1785), + [sym_identifier] = ACTIONS(1809), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(3815), - [anon_sym_as] = ACTIONS(1785), - [anon_sym_LBRACE] = ACTIONS(1783), - [anon_sym_COMMA] = ACTIONS(1783), - [anon_sym_LPAREN] = ACTIONS(3817), - [anon_sym_PIPE] = ACTIONS(3879), - [anon_sym_fn] = ACTIONS(1785), - [anon_sym_PLUS] = ACTIONS(3879), - [anon_sym_DASH] = ACTIONS(3879), - [anon_sym_STAR] = ACTIONS(3881), - [anon_sym_SLASH] = ACTIONS(3883), - [anon_sym_PERCENT] = ACTIONS(3881), - [anon_sym_LT] = ACTIONS(1785), - [anon_sym_GT] = ACTIONS(1785), - [anon_sym_EQ_EQ] = ACTIONS(1783), - [anon_sym_BANG_EQ] = ACTIONS(1783), - [anon_sym_LT_EQ] = ACTIONS(1783), - [anon_sym_GT_EQ] = ACTIONS(1783), - [anon_sym_LBRACK] = ACTIONS(3819), - [anon_sym_RBRACK] = ACTIONS(1783), - [anon_sym_struct] = ACTIONS(1785), - [anon_sym_mut] = ACTIONS(1785), - [anon_sym_PLUS_PLUS] = ACTIONS(1783), - [anon_sym_DASH_DASH] = ACTIONS(1783), - [anon_sym_QMARK] = ACTIONS(3821), - [anon_sym_BANG] = ACTIONS(3823), - [anon_sym_go] = ACTIONS(1785), - [anon_sym_spawn] = ACTIONS(1785), - [anon_sym_json_DOTdecode] = ACTIONS(1783), - [anon_sym_LBRACK2] = ACTIONS(3825), - [anon_sym_TILDE] = ACTIONS(1783), - [anon_sym_CARET] = ACTIONS(3889), - [anon_sym_AMP] = ACTIONS(3883), - [anon_sym_LT_DASH] = ACTIONS(1783), - [anon_sym_LT_LT] = ACTIONS(3881), - [anon_sym_GT_GT] = ACTIONS(3883), - [anon_sym_GT_GT_GT] = ACTIONS(3881), - [anon_sym_AMP_CARET] = ACTIONS(3881), - [anon_sym_AMP_AMP] = ACTIONS(1783), - [anon_sym_PIPE_PIPE] = ACTIONS(1783), - [anon_sym_or] = ACTIONS(1785), - [sym_none] = ACTIONS(1785), - [sym_true] = ACTIONS(1785), - [sym_false] = ACTIONS(1785), - [sym_nil] = ACTIONS(1785), - [anon_sym_QMARK_DOT] = ACTIONS(3827), - [anon_sym_POUND_LBRACK] = ACTIONS(3829), - [anon_sym_if] = ACTIONS(1785), - [anon_sym_DOLLARif] = ACTIONS(1785), - [anon_sym_is] = ACTIONS(1785), - [anon_sym_BANGis] = ACTIONS(1783), - [anon_sym_in] = ACTIONS(1785), - [anon_sym_BANGin] = ACTIONS(1783), - [anon_sym_match] = ACTIONS(1785), - [anon_sym_select] = ACTIONS(1785), - [anon_sym_lock] = ACTIONS(1785), - [anon_sym_rlock] = ACTIONS(1785), - [anon_sym_unsafe] = ACTIONS(1785), - [anon_sym_sql] = ACTIONS(1785), - [sym_int_literal] = ACTIONS(1785), - [sym_float_literal] = ACTIONS(1783), - [sym_rune_literal] = ACTIONS(1783), - [sym_pseudo_compile_time_identifier] = ACTIONS(1785), - [anon_sym_shared] = ACTIONS(1785), - [anon_sym_map_LBRACK] = ACTIONS(1783), - [anon_sym_chan] = ACTIONS(1785), - [anon_sym_thread] = ACTIONS(1785), - [anon_sym_atomic] = ACTIONS(1785), - [sym___double_quote] = ACTIONS(1783), - [sym___single_quote] = ACTIONS(1783), - [sym___c_double_quote] = ACTIONS(1783), - [sym___c_single_quote] = ACTIONS(1783), - [sym___r_double_quote] = ACTIONS(1783), - [sym___r_single_quote] = ACTIONS(1783), + [anon_sym_DOT] = ACTIONS(1809), + [anon_sym_as] = ACTIONS(1809), + [anon_sym_LBRACE] = ACTIONS(1807), + [anon_sym_COMMA] = ACTIONS(1807), + [anon_sym_RBRACE] = ACTIONS(1807), + [anon_sym_LPAREN] = ACTIONS(1807), + [anon_sym_PIPE] = ACTIONS(1809), + [anon_sym_fn] = ACTIONS(1809), + [anon_sym_PLUS] = ACTIONS(1809), + [anon_sym_DASH] = ACTIONS(1809), + [anon_sym_STAR] = ACTIONS(1807), + [anon_sym_SLASH] = ACTIONS(1809), + [anon_sym_PERCENT] = ACTIONS(1807), + [anon_sym_LT] = ACTIONS(1809), + [anon_sym_GT] = ACTIONS(1809), + [anon_sym_EQ_EQ] = ACTIONS(1807), + [anon_sym_BANG_EQ] = ACTIONS(1807), + [anon_sym_LT_EQ] = ACTIONS(1807), + [anon_sym_GT_EQ] = ACTIONS(1807), + [anon_sym_LBRACK] = ACTIONS(1807), + [anon_sym_RBRACK] = ACTIONS(1807), + [anon_sym_struct] = ACTIONS(1809), + [anon_sym_mut] = ACTIONS(1809), + [anon_sym_COLON] = ACTIONS(1807), + [anon_sym_PLUS_PLUS] = ACTIONS(1807), + [anon_sym_DASH_DASH] = ACTIONS(1807), + [anon_sym_QMARK] = ACTIONS(1809), + [anon_sym_BANG] = ACTIONS(1809), + [anon_sym_go] = ACTIONS(1809), + [anon_sym_spawn] = ACTIONS(1809), + [anon_sym_json_DOTdecode] = ACTIONS(1807), + [anon_sym_LBRACK2] = ACTIONS(1809), + [anon_sym_TILDE] = ACTIONS(1807), + [anon_sym_CARET] = ACTIONS(1807), + [anon_sym_AMP] = ACTIONS(1809), + [anon_sym_LT_DASH] = ACTIONS(1807), + [anon_sym_LT_LT] = ACTIONS(1807), + [anon_sym_GT_GT] = ACTIONS(1809), + [anon_sym_GT_GT_GT] = ACTIONS(1807), + [anon_sym_AMP_CARET] = ACTIONS(1807), + [anon_sym_AMP_AMP] = ACTIONS(1807), + [anon_sym_PIPE_PIPE] = ACTIONS(1807), + [anon_sym_or] = ACTIONS(1809), + [sym_none] = ACTIONS(1809), + [sym_true] = ACTIONS(1809), + [sym_false] = ACTIONS(1809), + [sym_nil] = ACTIONS(1809), + [anon_sym_QMARK_DOT] = ACTIONS(1807), + [anon_sym_POUND_LBRACK] = ACTIONS(1807), + [anon_sym_if] = ACTIONS(1809), + [anon_sym_else] = ACTIONS(1809), + [anon_sym_DOLLARif] = ACTIONS(1809), + [anon_sym_is] = ACTIONS(1809), + [anon_sym_BANGis] = ACTIONS(1807), + [anon_sym_in] = ACTIONS(1809), + [anon_sym_BANGin] = ACTIONS(1807), + [anon_sym_match] = ACTIONS(1809), + [anon_sym_select] = ACTIONS(1809), + [anon_sym_lock] = ACTIONS(1809), + [anon_sym_rlock] = ACTIONS(1809), + [anon_sym_unsafe] = ACTIONS(1809), + [anon_sym_sql] = ACTIONS(1809), + [sym_int_literal] = ACTIONS(1809), + [sym_float_literal] = ACTIONS(1807), + [sym_rune_literal] = ACTIONS(1807), + [sym_pseudo_compile_time_identifier] = ACTIONS(1809), + [anon_sym_shared] = ACTIONS(1809), + [anon_sym_map_LBRACK] = ACTIONS(1807), + [anon_sym_chan] = ACTIONS(1809), + [anon_sym_thread] = ACTIONS(1809), + [anon_sym_atomic] = ACTIONS(1809), + [sym___double_quote] = ACTIONS(1807), + [sym___single_quote] = ACTIONS(1807), + [sym___c_double_quote] = ACTIONS(1807), + [sym___c_single_quote] = ACTIONS(1807), + [sym___r_double_quote] = ACTIONS(1807), + [sym___r_single_quote] = ACTIONS(1807), }, [1277] = { [sym_line_comment] = STATE(1277), [sym_block_comment] = STATE(1277), - [sym_type_parameters] = STATE(4073), - [sym_argument_list] = STATE(1358), - [sym_or_block] = STATE(1359), - [sym_identifier] = ACTIONS(1769), + [sym_identifier] = ACTIONS(2672), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(3815), - [anon_sym_as] = ACTIONS(1769), - [anon_sym_LBRACE] = ACTIONS(1767), - [anon_sym_RBRACE] = ACTIONS(1767), - [anon_sym_LPAREN] = ACTIONS(3817), - [anon_sym_PIPE] = ACTIONS(3839), - [anon_sym_fn] = ACTIONS(1769), - [anon_sym_PLUS] = ACTIONS(3839), - [anon_sym_DASH] = ACTIONS(3839), - [anon_sym_STAR] = ACTIONS(3841), - [anon_sym_SLASH] = ACTIONS(3843), - [anon_sym_PERCENT] = ACTIONS(3841), - [anon_sym_LT] = ACTIONS(1769), - [anon_sym_GT] = ACTIONS(1769), - [anon_sym_EQ_EQ] = ACTIONS(1767), - [anon_sym_BANG_EQ] = ACTIONS(1767), - [anon_sym_LT_EQ] = ACTIONS(1767), - [anon_sym_GT_EQ] = ACTIONS(1767), - [anon_sym_LBRACK] = ACTIONS(3819), - [anon_sym_struct] = ACTIONS(1769), - [anon_sym_mut] = ACTIONS(1769), - [anon_sym_COLON] = ACTIONS(1767), - [anon_sym_PLUS_PLUS] = ACTIONS(1767), - [anon_sym_DASH_DASH] = ACTIONS(1767), - [anon_sym_QMARK] = ACTIONS(3821), - [anon_sym_BANG] = ACTIONS(3823), - [anon_sym_go] = ACTIONS(1769), - [anon_sym_spawn] = ACTIONS(1769), - [anon_sym_json_DOTdecode] = ACTIONS(1767), - [anon_sym_LBRACK2] = ACTIONS(3825), - [anon_sym_TILDE] = ACTIONS(1767), - [anon_sym_CARET] = ACTIONS(3855), - [anon_sym_AMP] = ACTIONS(3843), - [anon_sym_LT_DASH] = ACTIONS(1767), - [anon_sym_LT_LT] = ACTIONS(3841), - [anon_sym_GT_GT] = ACTIONS(3843), - [anon_sym_GT_GT_GT] = ACTIONS(3841), - [anon_sym_AMP_CARET] = ACTIONS(3841), - [anon_sym_AMP_AMP] = ACTIONS(1767), - [anon_sym_PIPE_PIPE] = ACTIONS(1767), - [anon_sym_or] = ACTIONS(1769), - [sym_none] = ACTIONS(1769), - [sym_true] = ACTIONS(1769), - [sym_false] = ACTIONS(1769), - [sym_nil] = ACTIONS(1769), - [anon_sym_QMARK_DOT] = ACTIONS(3827), - [anon_sym_POUND_LBRACK] = ACTIONS(3829), - [anon_sym_if] = ACTIONS(1769), - [anon_sym_DOLLARif] = ACTIONS(1769), - [anon_sym_is] = ACTIONS(1769), - [anon_sym_BANGis] = ACTIONS(1767), - [anon_sym_in] = ACTIONS(1769), - [anon_sym_BANGin] = ACTIONS(1767), - [anon_sym_match] = ACTIONS(1769), - [anon_sym_select] = ACTIONS(1769), - [anon_sym_lock] = ACTIONS(1769), - [anon_sym_rlock] = ACTIONS(1769), - [anon_sym_unsafe] = ACTIONS(1769), - [anon_sym_sql] = ACTIONS(1769), - [sym_int_literal] = ACTIONS(1769), - [sym_float_literal] = ACTIONS(1767), - [sym_rune_literal] = ACTIONS(1767), - [sym_pseudo_compile_time_identifier] = ACTIONS(1769), - [anon_sym_shared] = ACTIONS(1769), - [anon_sym_map_LBRACK] = ACTIONS(1767), - [anon_sym_chan] = ACTIONS(1769), - [anon_sym_thread] = ACTIONS(1769), - [anon_sym_atomic] = ACTIONS(1769), - [sym___double_quote] = ACTIONS(1767), - [sym___single_quote] = ACTIONS(1767), - [sym___c_double_quote] = ACTIONS(1767), - [sym___c_single_quote] = ACTIONS(1767), - [sym___r_double_quote] = ACTIONS(1767), - [sym___r_single_quote] = ACTIONS(1767), + [anon_sym_SEMI] = ACTIONS(2670), + [anon_sym_DOT] = ACTIONS(2672), + [anon_sym_as] = ACTIONS(2672), + [anon_sym_LBRACE] = ACTIONS(2670), + [anon_sym_COMMA] = ACTIONS(2670), + [anon_sym_RBRACE] = ACTIONS(2670), + [anon_sym_LPAREN] = ACTIONS(2670), + [anon_sym_PIPE] = ACTIONS(2672), + [anon_sym_fn] = ACTIONS(2672), + [anon_sym_PLUS] = ACTIONS(2672), + [anon_sym_DASH] = ACTIONS(2672), + [anon_sym_STAR] = ACTIONS(2670), + [anon_sym_SLASH] = ACTIONS(2672), + [anon_sym_PERCENT] = ACTIONS(2670), + [anon_sym_LT] = ACTIONS(2672), + [anon_sym_GT] = ACTIONS(2672), + [anon_sym_EQ_EQ] = ACTIONS(2670), + [anon_sym_BANG_EQ] = ACTIONS(2670), + [anon_sym_LT_EQ] = ACTIONS(2670), + [anon_sym_GT_EQ] = ACTIONS(2670), + [anon_sym_LBRACK] = ACTIONS(2670), + [anon_sym_RBRACK] = ACTIONS(2670), + [anon_sym_struct] = ACTIONS(2672), + [anon_sym_mut] = ACTIONS(2672), + [anon_sym_COLON] = ACTIONS(2670), + [anon_sym_PLUS_PLUS] = ACTIONS(2670), + [anon_sym_DASH_DASH] = ACTIONS(2670), + [anon_sym_QMARK] = ACTIONS(2672), + [anon_sym_BANG] = ACTIONS(2672), + [anon_sym_go] = ACTIONS(2672), + [anon_sym_spawn] = ACTIONS(2672), + [anon_sym_json_DOTdecode] = ACTIONS(2670), + [anon_sym_LBRACK2] = ACTIONS(2672), + [anon_sym_TILDE] = ACTIONS(2670), + [anon_sym_CARET] = ACTIONS(2670), + [anon_sym_AMP] = ACTIONS(2672), + [anon_sym_LT_DASH] = ACTIONS(2670), + [anon_sym_LT_LT] = ACTIONS(2670), + [anon_sym_GT_GT] = ACTIONS(2672), + [anon_sym_GT_GT_GT] = ACTIONS(2670), + [anon_sym_AMP_CARET] = ACTIONS(2670), + [anon_sym_AMP_AMP] = ACTIONS(2670), + [anon_sym_PIPE_PIPE] = ACTIONS(2670), + [anon_sym_or] = ACTIONS(2672), + [sym_none] = ACTIONS(2672), + [sym_true] = ACTIONS(2672), + [sym_false] = ACTIONS(2672), + [sym_nil] = ACTIONS(2672), + [anon_sym_QMARK_DOT] = ACTIONS(2670), + [anon_sym_POUND_LBRACK] = ACTIONS(2670), + [anon_sym_if] = ACTIONS(2672), + [anon_sym_DOLLARif] = ACTIONS(2672), + [anon_sym_is] = ACTIONS(2672), + [anon_sym_BANGis] = ACTIONS(2670), + [anon_sym_in] = ACTIONS(2672), + [anon_sym_BANGin] = ACTIONS(2670), + [anon_sym_match] = ACTIONS(2672), + [anon_sym_select] = ACTIONS(2672), + [anon_sym_lock] = ACTIONS(2672), + [anon_sym_rlock] = ACTIONS(2672), + [anon_sym_unsafe] = ACTIONS(2672), + [anon_sym_sql] = ACTIONS(2672), + [sym_int_literal] = ACTIONS(2672), + [sym_float_literal] = ACTIONS(2670), + [sym_rune_literal] = ACTIONS(2670), + [sym_pseudo_compile_time_identifier] = ACTIONS(2672), + [anon_sym_shared] = ACTIONS(2672), + [anon_sym_map_LBRACK] = ACTIONS(2670), + [anon_sym_chan] = ACTIONS(2672), + [anon_sym_thread] = ACTIONS(2672), + [anon_sym_atomic] = ACTIONS(2672), + [sym___double_quote] = ACTIONS(2670), + [sym___single_quote] = ACTIONS(2670), + [sym___c_double_quote] = ACTIONS(2670), + [sym___c_single_quote] = ACTIONS(2670), + [sym___r_double_quote] = ACTIONS(2670), + [sym___r_single_quote] = ACTIONS(2670), }, [1278] = { [sym_line_comment] = STATE(1278), [sym_block_comment] = STATE(1278), - [sym_type_parameters] = STATE(1311), - [sym_identifier] = ACTIONS(1905), + [sym_type_parameters] = STATE(4093), + [sym_argument_list] = STATE(1361), + [sym_or_block] = STATE(1362), + [sym_identifier] = ACTIONS(1765), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1905), - [anon_sym_as] = ACTIONS(1905), - [anon_sym_LBRACE] = ACTIONS(1903), - [anon_sym_COMMA] = ACTIONS(1903), - [anon_sym_RBRACE] = ACTIONS(1903), - [anon_sym_LPAREN] = ACTIONS(1903), - [anon_sym_PIPE] = ACTIONS(1905), - [anon_sym_fn] = ACTIONS(1905), - [anon_sym_PLUS] = ACTIONS(1905), - [anon_sym_DASH] = ACTIONS(1905), - [anon_sym_STAR] = ACTIONS(1903), - [anon_sym_SLASH] = ACTIONS(1905), - [anon_sym_PERCENT] = ACTIONS(1903), - [anon_sym_LT] = ACTIONS(1905), - [anon_sym_GT] = ACTIONS(1905), - [anon_sym_EQ_EQ] = ACTIONS(1903), - [anon_sym_BANG_EQ] = ACTIONS(1903), - [anon_sym_LT_EQ] = ACTIONS(1903), - [anon_sym_GT_EQ] = ACTIONS(1903), - [anon_sym_LBRACK] = ACTIONS(1903), - [anon_sym_RBRACK] = ACTIONS(1903), - [anon_sym_struct] = ACTIONS(1905), - [anon_sym_mut] = ACTIONS(1905), - [anon_sym_COLON] = ACTIONS(1903), - [anon_sym_PLUS_PLUS] = ACTIONS(1903), - [anon_sym_DASH_DASH] = ACTIONS(1903), - [anon_sym_QMARK] = ACTIONS(1905), - [anon_sym_BANG] = ACTIONS(1905), - [anon_sym_go] = ACTIONS(1905), - [anon_sym_spawn] = ACTIONS(1905), - [anon_sym_json_DOTdecode] = ACTIONS(1903), - [anon_sym_LBRACK2] = ACTIONS(1905), - [anon_sym_TILDE] = ACTIONS(1903), - [anon_sym_CARET] = ACTIONS(1903), - [anon_sym_AMP] = ACTIONS(1905), - [anon_sym_LT_DASH] = ACTIONS(1903), - [anon_sym_LT_LT] = ACTIONS(1903), - [anon_sym_GT_GT] = ACTIONS(1905), - [anon_sym_GT_GT_GT] = ACTIONS(1903), - [anon_sym_AMP_CARET] = ACTIONS(1903), - [anon_sym_AMP_AMP] = ACTIONS(1903), - [anon_sym_PIPE_PIPE] = ACTIONS(1903), - [anon_sym_or] = ACTIONS(1905), - [sym_none] = ACTIONS(1905), - [sym_true] = ACTIONS(1905), - [sym_false] = ACTIONS(1905), - [sym_nil] = ACTIONS(1905), - [anon_sym_QMARK_DOT] = ACTIONS(1903), - [anon_sym_POUND_LBRACK] = ACTIONS(1903), - [anon_sym_if] = ACTIONS(1905), - [anon_sym_DOLLARif] = ACTIONS(1905), - [anon_sym_is] = ACTIONS(1905), - [anon_sym_BANGis] = ACTIONS(1903), - [anon_sym_in] = ACTIONS(1905), - [anon_sym_BANGin] = ACTIONS(1903), - [anon_sym_match] = ACTIONS(1905), - [anon_sym_select] = ACTIONS(1905), - [anon_sym_lock] = ACTIONS(1905), - [anon_sym_rlock] = ACTIONS(1905), - [anon_sym_unsafe] = ACTIONS(1905), - [anon_sym_sql] = ACTIONS(1905), - [sym_int_literal] = ACTIONS(1905), - [sym_float_literal] = ACTIONS(1903), - [sym_rune_literal] = ACTIONS(1903), - [sym_pseudo_compile_time_identifier] = ACTIONS(1905), - [anon_sym_shared] = ACTIONS(1905), - [anon_sym_map_LBRACK] = ACTIONS(1903), - [anon_sym_chan] = ACTIONS(1905), - [anon_sym_thread] = ACTIONS(1905), - [anon_sym_atomic] = ACTIONS(1905), - [sym___double_quote] = ACTIONS(1903), - [sym___single_quote] = ACTIONS(1903), - [sym___c_double_quote] = ACTIONS(1903), - [sym___c_single_quote] = ACTIONS(1903), - [sym___r_double_quote] = ACTIONS(1903), - [sym___r_single_quote] = ACTIONS(1903), + [anon_sym_DOT] = ACTIONS(3821), + [anon_sym_as] = ACTIONS(1765), + [anon_sym_LBRACE] = ACTIONS(1763), + [anon_sym_COMMA] = ACTIONS(1763), + [anon_sym_LPAREN] = ACTIONS(3823), + [anon_sym_PIPE] = ACTIONS(1765), + [anon_sym_fn] = ACTIONS(1765), + [anon_sym_PLUS] = ACTIONS(1765), + [anon_sym_DASH] = ACTIONS(1765), + [anon_sym_STAR] = ACTIONS(3885), + [anon_sym_SLASH] = ACTIONS(3887), + [anon_sym_PERCENT] = ACTIONS(3885), + [anon_sym_LT] = ACTIONS(1765), + [anon_sym_GT] = ACTIONS(1765), + [anon_sym_EQ_EQ] = ACTIONS(1763), + [anon_sym_BANG_EQ] = ACTIONS(1763), + [anon_sym_LT_EQ] = ACTIONS(1763), + [anon_sym_GT_EQ] = ACTIONS(1763), + [anon_sym_LBRACK] = ACTIONS(3825), + [anon_sym_RBRACK] = ACTIONS(1763), + [anon_sym_struct] = ACTIONS(1765), + [anon_sym_mut] = ACTIONS(1765), + [anon_sym_PLUS_PLUS] = ACTIONS(1763), + [anon_sym_DASH_DASH] = ACTIONS(1763), + [anon_sym_QMARK] = ACTIONS(3827), + [anon_sym_BANG] = ACTIONS(3829), + [anon_sym_go] = ACTIONS(1765), + [anon_sym_spawn] = ACTIONS(1765), + [anon_sym_json_DOTdecode] = ACTIONS(1763), + [anon_sym_LBRACK2] = ACTIONS(3831), + [anon_sym_TILDE] = ACTIONS(1763), + [anon_sym_CARET] = ACTIONS(1763), + [anon_sym_AMP] = ACTIONS(3887), + [anon_sym_LT_DASH] = ACTIONS(1763), + [anon_sym_LT_LT] = ACTIONS(3885), + [anon_sym_GT_GT] = ACTIONS(3887), + [anon_sym_GT_GT_GT] = ACTIONS(3885), + [anon_sym_AMP_CARET] = ACTIONS(3885), + [anon_sym_AMP_AMP] = ACTIONS(1763), + [anon_sym_PIPE_PIPE] = ACTIONS(1763), + [anon_sym_or] = ACTIONS(1765), + [sym_none] = ACTIONS(1765), + [sym_true] = ACTIONS(1765), + [sym_false] = ACTIONS(1765), + [sym_nil] = ACTIONS(1765), + [anon_sym_QMARK_DOT] = ACTIONS(3833), + [anon_sym_POUND_LBRACK] = ACTIONS(3835), + [anon_sym_if] = ACTIONS(1765), + [anon_sym_DOLLARif] = ACTIONS(1765), + [anon_sym_is] = ACTIONS(1765), + [anon_sym_BANGis] = ACTIONS(1763), + [anon_sym_in] = ACTIONS(1765), + [anon_sym_BANGin] = ACTIONS(1763), + [anon_sym_match] = ACTIONS(1765), + [anon_sym_select] = ACTIONS(1765), + [anon_sym_lock] = ACTIONS(1765), + [anon_sym_rlock] = ACTIONS(1765), + [anon_sym_unsafe] = ACTIONS(1765), + [anon_sym_sql] = ACTIONS(1765), + [sym_int_literal] = ACTIONS(1765), + [sym_float_literal] = ACTIONS(1763), + [sym_rune_literal] = ACTIONS(1763), + [sym_pseudo_compile_time_identifier] = ACTIONS(1765), + [anon_sym_shared] = ACTIONS(1765), + [anon_sym_map_LBRACK] = ACTIONS(1763), + [anon_sym_chan] = ACTIONS(1765), + [anon_sym_thread] = ACTIONS(1765), + [anon_sym_atomic] = ACTIONS(1765), + [sym___double_quote] = ACTIONS(1763), + [sym___single_quote] = ACTIONS(1763), + [sym___c_double_quote] = ACTIONS(1763), + [sym___c_single_quote] = ACTIONS(1763), + [sym___r_double_quote] = ACTIONS(1763), + [sym___r_single_quote] = ACTIONS(1763), }, [1279] = { [sym_line_comment] = STATE(1279), [sym_block_comment] = STATE(1279), - [sym_identifier] = ACTIONS(1851), + [sym_identifier] = ACTIONS(2740), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_SEMI] = ACTIONS(1849), - [anon_sym_DOT] = ACTIONS(1851), - [anon_sym_as] = ACTIONS(1851), - [anon_sym_LBRACE] = ACTIONS(1856), - [anon_sym_COMMA] = ACTIONS(1849), - [anon_sym_RBRACE] = ACTIONS(1849), - [anon_sym_LPAREN] = ACTIONS(1849), - [anon_sym_PIPE] = ACTIONS(1851), - [anon_sym_fn] = ACTIONS(1851), - [anon_sym_PLUS] = ACTIONS(1851), - [anon_sym_DASH] = ACTIONS(1851), - [anon_sym_STAR] = ACTIONS(1849), - [anon_sym_SLASH] = ACTIONS(1851), - [anon_sym_PERCENT] = ACTIONS(1849), - [anon_sym_LT] = ACTIONS(1851), - [anon_sym_GT] = ACTIONS(1851), - [anon_sym_EQ_EQ] = ACTIONS(1849), - [anon_sym_BANG_EQ] = ACTIONS(1849), - [anon_sym_LT_EQ] = ACTIONS(1849), - [anon_sym_GT_EQ] = ACTIONS(1849), - [anon_sym_LBRACK] = ACTIONS(1856), - [anon_sym_RBRACK] = ACTIONS(1849), - [anon_sym_struct] = ACTIONS(1851), - [anon_sym_mut] = ACTIONS(1851), - [anon_sym_COLON] = ACTIONS(1849), - [anon_sym_PLUS_PLUS] = ACTIONS(1849), - [anon_sym_DASH_DASH] = ACTIONS(1849), - [anon_sym_QMARK] = ACTIONS(1851), - [anon_sym_BANG] = ACTIONS(1851), - [anon_sym_go] = ACTIONS(1851), - [anon_sym_spawn] = ACTIONS(1851), - [anon_sym_json_DOTdecode] = ACTIONS(1849), - [anon_sym_LBRACK2] = ACTIONS(1851), - [anon_sym_TILDE] = ACTIONS(1849), - [anon_sym_CARET] = ACTIONS(1849), - [anon_sym_AMP] = ACTIONS(1851), - [anon_sym_LT_DASH] = ACTIONS(1849), - [anon_sym_LT_LT] = ACTIONS(1849), - [anon_sym_GT_GT] = ACTIONS(1851), - [anon_sym_GT_GT_GT] = ACTIONS(1849), - [anon_sym_AMP_CARET] = ACTIONS(1849), - [anon_sym_AMP_AMP] = ACTIONS(1849), - [anon_sym_PIPE_PIPE] = ACTIONS(1849), - [anon_sym_or] = ACTIONS(1851), - [sym_none] = ACTIONS(1851), - [sym_true] = ACTIONS(1851), - [sym_false] = ACTIONS(1851), - [sym_nil] = ACTIONS(1851), - [anon_sym_QMARK_DOT] = ACTIONS(1849), - [anon_sym_POUND_LBRACK] = ACTIONS(1849), - [anon_sym_if] = ACTIONS(1851), - [anon_sym_DOLLARif] = ACTIONS(1851), - [anon_sym_is] = ACTIONS(1851), - [anon_sym_BANGis] = ACTIONS(1849), - [anon_sym_in] = ACTIONS(1851), - [anon_sym_BANGin] = ACTIONS(1849), - [anon_sym_match] = ACTIONS(1851), - [anon_sym_select] = ACTIONS(1851), - [anon_sym_lock] = ACTIONS(1851), - [anon_sym_rlock] = ACTIONS(1851), - [anon_sym_unsafe] = ACTIONS(1851), - [anon_sym_sql] = ACTIONS(1851), - [sym_int_literal] = ACTIONS(1851), - [sym_float_literal] = ACTIONS(1849), - [sym_rune_literal] = ACTIONS(1849), - [sym_pseudo_compile_time_identifier] = ACTIONS(1851), - [anon_sym_shared] = ACTIONS(1851), - [anon_sym_map_LBRACK] = ACTIONS(1849), - [anon_sym_chan] = ACTIONS(1851), - [anon_sym_thread] = ACTIONS(1851), - [anon_sym_atomic] = ACTIONS(1851), - [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), + [anon_sym_SEMI] = ACTIONS(2738), + [anon_sym_DOT] = ACTIONS(2740), + [anon_sym_as] = ACTIONS(2740), + [anon_sym_LBRACE] = ACTIONS(2738), + [anon_sym_COMMA] = ACTIONS(2738), + [anon_sym_RBRACE] = ACTIONS(2738), + [anon_sym_LPAREN] = ACTIONS(2738), + [anon_sym_PIPE] = ACTIONS(2740), + [anon_sym_fn] = ACTIONS(2740), + [anon_sym_PLUS] = ACTIONS(2740), + [anon_sym_DASH] = ACTIONS(2740), + [anon_sym_STAR] = ACTIONS(2738), + [anon_sym_SLASH] = ACTIONS(2740), + [anon_sym_PERCENT] = ACTIONS(2738), + [anon_sym_LT] = ACTIONS(2740), + [anon_sym_GT] = ACTIONS(2740), + [anon_sym_EQ_EQ] = ACTIONS(2738), + [anon_sym_BANG_EQ] = ACTIONS(2738), + [anon_sym_LT_EQ] = ACTIONS(2738), + [anon_sym_GT_EQ] = ACTIONS(2738), + [anon_sym_LBRACK] = ACTIONS(2738), + [anon_sym_RBRACK] = ACTIONS(2738), + [anon_sym_struct] = ACTIONS(2740), + [anon_sym_mut] = ACTIONS(2740), + [anon_sym_COLON] = ACTIONS(2738), + [anon_sym_PLUS_PLUS] = ACTIONS(2738), + [anon_sym_DASH_DASH] = ACTIONS(2738), + [anon_sym_QMARK] = ACTIONS(2740), + [anon_sym_BANG] = ACTIONS(2740), + [anon_sym_go] = ACTIONS(2740), + [anon_sym_spawn] = ACTIONS(2740), + [anon_sym_json_DOTdecode] = ACTIONS(2738), + [anon_sym_LBRACK2] = ACTIONS(2740), + [anon_sym_TILDE] = ACTIONS(2738), + [anon_sym_CARET] = ACTIONS(2738), + [anon_sym_AMP] = ACTIONS(2740), + [anon_sym_LT_DASH] = ACTIONS(2738), + [anon_sym_LT_LT] = ACTIONS(2738), + [anon_sym_GT_GT] = ACTIONS(2740), + [anon_sym_GT_GT_GT] = ACTIONS(2738), + [anon_sym_AMP_CARET] = ACTIONS(2738), + [anon_sym_AMP_AMP] = ACTIONS(2738), + [anon_sym_PIPE_PIPE] = ACTIONS(2738), + [anon_sym_or] = ACTIONS(2740), + [sym_none] = ACTIONS(2740), + [sym_true] = ACTIONS(2740), + [sym_false] = ACTIONS(2740), + [sym_nil] = ACTIONS(2740), + [anon_sym_QMARK_DOT] = ACTIONS(2738), + [anon_sym_POUND_LBRACK] = ACTIONS(2738), + [anon_sym_if] = ACTIONS(2740), + [anon_sym_DOLLARif] = ACTIONS(2740), + [anon_sym_is] = ACTIONS(2740), + [anon_sym_BANGis] = ACTIONS(2738), + [anon_sym_in] = ACTIONS(2740), + [anon_sym_BANGin] = ACTIONS(2738), + [anon_sym_match] = ACTIONS(2740), + [anon_sym_select] = ACTIONS(2740), + [anon_sym_lock] = ACTIONS(2740), + [anon_sym_rlock] = ACTIONS(2740), + [anon_sym_unsafe] = ACTIONS(2740), + [anon_sym_sql] = ACTIONS(2740), + [sym_int_literal] = ACTIONS(2740), + [sym_float_literal] = ACTIONS(2738), + [sym_rune_literal] = ACTIONS(2738), + [sym_pseudo_compile_time_identifier] = ACTIONS(2740), + [anon_sym_shared] = ACTIONS(2740), + [anon_sym_map_LBRACK] = ACTIONS(2738), + [anon_sym_chan] = ACTIONS(2740), + [anon_sym_thread] = ACTIONS(2740), + [anon_sym_atomic] = ACTIONS(2740), + [sym___double_quote] = ACTIONS(2738), + [sym___single_quote] = ACTIONS(2738), + [sym___c_double_quote] = ACTIONS(2738), + [sym___c_single_quote] = ACTIONS(2738), + [sym___r_double_quote] = ACTIONS(2738), + [sym___r_single_quote] = ACTIONS(2738), }, [1280] = { [sym_line_comment] = STATE(1280), [sym_block_comment] = STATE(1280), - [sym_identifier] = ACTIONS(1845), - [anon_sym_SLASH_SLASH] = ACTIONS(3), - [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1845), - [anon_sym_as] = ACTIONS(1845), - [anon_sym_LBRACE] = ACTIONS(1843), - [anon_sym_COMMA] = ACTIONS(1843), - [anon_sym_RBRACE] = ACTIONS(1843), - [anon_sym_LPAREN] = ACTIONS(1843), - [anon_sym_PIPE] = ACTIONS(1845), - [anon_sym_fn] = ACTIONS(1845), - [anon_sym_PLUS] = ACTIONS(1845), - [anon_sym_DASH] = ACTIONS(1845), - [anon_sym_STAR] = ACTIONS(1843), - [anon_sym_SLASH] = ACTIONS(1845), - [anon_sym_PERCENT] = ACTIONS(1843), - [anon_sym_LT] = ACTIONS(1845), - [anon_sym_GT] = ACTIONS(1845), - [anon_sym_EQ_EQ] = ACTIONS(1843), - [anon_sym_BANG_EQ] = ACTIONS(1843), - [anon_sym_LT_EQ] = ACTIONS(1843), - [anon_sym_GT_EQ] = ACTIONS(1843), - [anon_sym_LBRACK] = ACTIONS(1843), - [anon_sym_RBRACK] = ACTIONS(1843), - [anon_sym_struct] = ACTIONS(1845), - [anon_sym_mut] = ACTIONS(1845), - [anon_sym_COLON] = ACTIONS(1843), - [anon_sym_PLUS_PLUS] = ACTIONS(1843), - [anon_sym_DASH_DASH] = ACTIONS(1843), - [anon_sym_QMARK] = ACTIONS(1845), - [anon_sym_BANG] = ACTIONS(1845), - [anon_sym_go] = ACTIONS(1845), - [anon_sym_spawn] = ACTIONS(1845), - [anon_sym_json_DOTdecode] = ACTIONS(1843), - [anon_sym_LBRACK2] = ACTIONS(1845), - [anon_sym_TILDE] = ACTIONS(1843), - [anon_sym_CARET] = ACTIONS(1843), - [anon_sym_AMP] = ACTIONS(1845), - [anon_sym_LT_DASH] = ACTIONS(1843), - [anon_sym_LT_LT] = ACTIONS(1843), - [anon_sym_GT_GT] = ACTIONS(1845), - [anon_sym_GT_GT_GT] = ACTIONS(1843), - [anon_sym_AMP_CARET] = ACTIONS(1843), - [anon_sym_AMP_AMP] = ACTIONS(1843), - [anon_sym_PIPE_PIPE] = ACTIONS(1843), - [anon_sym_or] = ACTIONS(1845), - [sym_none] = ACTIONS(1845), - [sym_true] = ACTIONS(1845), - [sym_false] = ACTIONS(1845), - [sym_nil] = ACTIONS(1845), - [anon_sym_QMARK_DOT] = ACTIONS(1843), - [anon_sym_POUND_LBRACK] = ACTIONS(1843), - [anon_sym_if] = ACTIONS(1845), - [anon_sym_DOLLARif] = ACTIONS(1845), - [anon_sym_DOLLARelse] = ACTIONS(1845), - [anon_sym_is] = ACTIONS(1845), - [anon_sym_BANGis] = ACTIONS(1843), - [anon_sym_in] = ACTIONS(1845), - [anon_sym_BANGin] = ACTIONS(1843), - [anon_sym_match] = ACTIONS(1845), - [anon_sym_select] = ACTIONS(1845), - [anon_sym_lock] = ACTIONS(1845), - [anon_sym_rlock] = ACTIONS(1845), - [anon_sym_unsafe] = ACTIONS(1845), - [anon_sym_sql] = ACTIONS(1845), - [sym_int_literal] = ACTIONS(1845), - [sym_float_literal] = ACTIONS(1843), - [sym_rune_literal] = ACTIONS(1843), - [sym_pseudo_compile_time_identifier] = ACTIONS(1845), - [anon_sym_shared] = ACTIONS(1845), - [anon_sym_map_LBRACK] = ACTIONS(1843), - [anon_sym_chan] = ACTIONS(1845), - [anon_sym_thread] = ACTIONS(1845), - [anon_sym_atomic] = ACTIONS(1845), - [sym___double_quote] = ACTIONS(1843), - [sym___single_quote] = ACTIONS(1843), - [sym___c_double_quote] = ACTIONS(1843), - [sym___c_single_quote] = ACTIONS(1843), - [sym___r_double_quote] = ACTIONS(1843), - [sym___r_single_quote] = ACTIONS(1843), - }, - [1281] = { - [sym_line_comment] = STATE(1281), - [sym_block_comment] = STATE(1281), - [sym_type_parameters] = STATE(4073), - [sym_argument_list] = STATE(1358), - [sym_or_block] = STATE(1359), - [sym_identifier] = ACTIONS(1785), - [anon_sym_SLASH_SLASH] = ACTIONS(3), - [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(3815), - [anon_sym_as] = ACTIONS(1785), - [anon_sym_LBRACE] = ACTIONS(1783), - [anon_sym_COMMA] = ACTIONS(1783), - [anon_sym_LPAREN] = ACTIONS(3817), - [anon_sym_PIPE] = ACTIONS(3879), - [anon_sym_fn] = ACTIONS(1785), - [anon_sym_PLUS] = ACTIONS(3879), - [anon_sym_DASH] = ACTIONS(3879), - [anon_sym_STAR] = ACTIONS(3881), - [anon_sym_SLASH] = ACTIONS(3883), - [anon_sym_PERCENT] = ACTIONS(3881), - [anon_sym_LT] = ACTIONS(3885), - [anon_sym_GT] = ACTIONS(3885), - [anon_sym_EQ_EQ] = ACTIONS(3887), - [anon_sym_BANG_EQ] = ACTIONS(3887), - [anon_sym_LT_EQ] = ACTIONS(3887), - [anon_sym_GT_EQ] = ACTIONS(3887), - [anon_sym_LBRACK] = ACTIONS(3819), - [anon_sym_RBRACK] = ACTIONS(1783), - [anon_sym_struct] = ACTIONS(1785), - [anon_sym_mut] = ACTIONS(1785), - [anon_sym_PLUS_PLUS] = ACTIONS(1783), - [anon_sym_DASH_DASH] = ACTIONS(1783), - [anon_sym_QMARK] = ACTIONS(3821), - [anon_sym_BANG] = ACTIONS(3823), - [anon_sym_go] = ACTIONS(1785), - [anon_sym_spawn] = ACTIONS(1785), - [anon_sym_json_DOTdecode] = ACTIONS(1783), - [anon_sym_LBRACK2] = ACTIONS(3825), - [anon_sym_TILDE] = ACTIONS(1783), - [anon_sym_CARET] = ACTIONS(3889), - [anon_sym_AMP] = ACTIONS(3883), - [anon_sym_LT_DASH] = ACTIONS(1783), - [anon_sym_LT_LT] = ACTIONS(3881), - [anon_sym_GT_GT] = ACTIONS(3883), - [anon_sym_GT_GT_GT] = ACTIONS(3881), - [anon_sym_AMP_CARET] = ACTIONS(3881), - [anon_sym_AMP_AMP] = ACTIONS(1783), - [anon_sym_PIPE_PIPE] = ACTIONS(1783), - [anon_sym_or] = ACTIONS(1785), - [sym_none] = ACTIONS(1785), - [sym_true] = ACTIONS(1785), - [sym_false] = ACTIONS(1785), - [sym_nil] = ACTIONS(1785), - [anon_sym_QMARK_DOT] = ACTIONS(3827), - [anon_sym_POUND_LBRACK] = ACTIONS(3829), - [anon_sym_if] = ACTIONS(1785), - [anon_sym_DOLLARif] = ACTIONS(1785), - [anon_sym_is] = ACTIONS(1785), - [anon_sym_BANGis] = ACTIONS(1783), - [anon_sym_in] = ACTIONS(3895), - [anon_sym_BANGin] = ACTIONS(3897), - [anon_sym_match] = ACTIONS(1785), - [anon_sym_select] = ACTIONS(1785), - [anon_sym_lock] = ACTIONS(1785), - [anon_sym_rlock] = ACTIONS(1785), - [anon_sym_unsafe] = ACTIONS(1785), - [anon_sym_sql] = ACTIONS(1785), - [sym_int_literal] = ACTIONS(1785), - [sym_float_literal] = ACTIONS(1783), - [sym_rune_literal] = ACTIONS(1783), - [sym_pseudo_compile_time_identifier] = ACTIONS(1785), - [anon_sym_shared] = ACTIONS(1785), - [anon_sym_map_LBRACK] = ACTIONS(1783), - [anon_sym_chan] = ACTIONS(1785), - [anon_sym_thread] = ACTIONS(1785), - [anon_sym_atomic] = ACTIONS(1785), - [sym___double_quote] = ACTIONS(1783), - [sym___single_quote] = ACTIONS(1783), - [sym___c_double_quote] = ACTIONS(1783), - [sym___c_single_quote] = ACTIONS(1783), - [sym___r_double_quote] = ACTIONS(1783), - [sym___r_single_quote] = ACTIONS(1783), - }, - [1282] = { - [sym_line_comment] = STATE(1282), - [sym_block_comment] = STATE(1282), - [sym_type_parameters] = STATE(4073), - [sym_argument_list] = STATE(1358), - [sym_or_block] = STATE(1359), + [sym_type_parameters] = STATE(4093), + [sym_argument_list] = STATE(1361), + [sym_or_block] = STATE(1362), [sym_identifier] = ACTIONS(1781), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(3815), - [anon_sym_as] = ACTIONS(3835), + [anon_sym_DOT] = ACTIONS(3821), + [anon_sym_as] = ACTIONS(1781), [anon_sym_LBRACE] = ACTIONS(1779), - [anon_sym_RBRACE] = ACTIONS(1779), - [anon_sym_LPAREN] = ACTIONS(3817), - [anon_sym_PIPE] = ACTIONS(3839), + [anon_sym_COMMA] = ACTIONS(1779), + [anon_sym_LPAREN] = ACTIONS(3823), + [anon_sym_PIPE] = ACTIONS(3883), [anon_sym_fn] = ACTIONS(1781), - [anon_sym_PLUS] = ACTIONS(3839), - [anon_sym_DASH] = ACTIONS(3839), - [anon_sym_STAR] = ACTIONS(3841), - [anon_sym_SLASH] = ACTIONS(3843), - [anon_sym_PERCENT] = ACTIONS(3841), - [anon_sym_LT] = ACTIONS(3845), - [anon_sym_GT] = ACTIONS(3845), - [anon_sym_EQ_EQ] = ACTIONS(3847), - [anon_sym_BANG_EQ] = ACTIONS(3847), - [anon_sym_LT_EQ] = ACTIONS(3847), - [anon_sym_GT_EQ] = ACTIONS(3847), - [anon_sym_LBRACK] = ACTIONS(3819), + [anon_sym_PLUS] = ACTIONS(3883), + [anon_sym_DASH] = ACTIONS(3883), + [anon_sym_STAR] = ACTIONS(3885), + [anon_sym_SLASH] = ACTIONS(3887), + [anon_sym_PERCENT] = ACTIONS(3885), + [anon_sym_LT] = ACTIONS(1781), + [anon_sym_GT] = ACTIONS(1781), + [anon_sym_EQ_EQ] = ACTIONS(1779), + [anon_sym_BANG_EQ] = ACTIONS(1779), + [anon_sym_LT_EQ] = ACTIONS(1779), + [anon_sym_GT_EQ] = ACTIONS(1779), + [anon_sym_LBRACK] = ACTIONS(3825), + [anon_sym_RBRACK] = ACTIONS(1779), [anon_sym_struct] = ACTIONS(1781), [anon_sym_mut] = ACTIONS(1781), - [anon_sym_COLON] = ACTIONS(1779), - [anon_sym_PLUS_PLUS] = ACTIONS(3851), - [anon_sym_DASH_DASH] = ACTIONS(3853), - [anon_sym_QMARK] = ACTIONS(3821), - [anon_sym_BANG] = ACTIONS(3823), + [anon_sym_PLUS_PLUS] = ACTIONS(1779), + [anon_sym_DASH_DASH] = ACTIONS(1779), + [anon_sym_QMARK] = ACTIONS(3827), + [anon_sym_BANG] = ACTIONS(3829), [anon_sym_go] = ACTIONS(1781), [anon_sym_spawn] = ACTIONS(1781), [anon_sym_json_DOTdecode] = ACTIONS(1779), - [anon_sym_LBRACK2] = ACTIONS(3825), + [anon_sym_LBRACK2] = ACTIONS(3831), [anon_sym_TILDE] = ACTIONS(1779), - [anon_sym_CARET] = ACTIONS(3855), - [anon_sym_AMP] = ACTIONS(3843), + [anon_sym_CARET] = ACTIONS(3889), + [anon_sym_AMP] = ACTIONS(3887), [anon_sym_LT_DASH] = ACTIONS(1779), - [anon_sym_LT_LT] = ACTIONS(3841), - [anon_sym_GT_GT] = ACTIONS(3843), - [anon_sym_GT_GT_GT] = ACTIONS(3841), - [anon_sym_AMP_CARET] = ACTIONS(3841), - [anon_sym_AMP_AMP] = ACTIONS(3857), - [anon_sym_PIPE_PIPE] = ACTIONS(3859), - [anon_sym_or] = ACTIONS(3861), + [anon_sym_LT_LT] = ACTIONS(3885), + [anon_sym_GT_GT] = ACTIONS(3887), + [anon_sym_GT_GT_GT] = ACTIONS(3885), + [anon_sym_AMP_CARET] = ACTIONS(3885), + [anon_sym_AMP_AMP] = ACTIONS(1779), + [anon_sym_PIPE_PIPE] = ACTIONS(1779), + [anon_sym_or] = ACTIONS(1781), [sym_none] = ACTIONS(1781), [sym_true] = ACTIONS(1781), [sym_false] = ACTIONS(1781), [sym_nil] = ACTIONS(1781), - [anon_sym_QMARK_DOT] = ACTIONS(3827), - [anon_sym_POUND_LBRACK] = ACTIONS(3829), + [anon_sym_QMARK_DOT] = ACTIONS(3833), + [anon_sym_POUND_LBRACK] = ACTIONS(3835), [anon_sym_if] = ACTIONS(1781), [anon_sym_DOLLARif] = ACTIONS(1781), - [anon_sym_is] = ACTIONS(3863), - [anon_sym_BANGis] = ACTIONS(3865), - [anon_sym_in] = ACTIONS(3867), - [anon_sym_BANGin] = ACTIONS(3869), + [anon_sym_is] = ACTIONS(1781), + [anon_sym_BANGis] = ACTIONS(1779), + [anon_sym_in] = ACTIONS(1781), + [anon_sym_BANGin] = ACTIONS(1779), [anon_sym_match] = ACTIONS(1781), [anon_sym_select] = ACTIONS(1781), [anon_sym_lock] = ACTIONS(1781), @@ -163433,656 +163315,824 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym___r_double_quote] = ACTIONS(1779), [sym___r_single_quote] = ACTIONS(1779), }, - [1283] = { - [sym_line_comment] = STATE(1283), - [sym_block_comment] = STATE(1283), - [sym_identifier] = ACTIONS(3042), + [1281] = { + [sym_line_comment] = STATE(1281), + [sym_block_comment] = STATE(1281), + [sym_type_parameters] = STATE(4093), + [sym_argument_list] = STATE(1361), + [sym_or_block] = STATE(1362), + [sym_identifier] = ACTIONS(1795), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_SEMI] = ACTIONS(3040), - [anon_sym_DOT] = ACTIONS(3042), - [anon_sym_as] = ACTIONS(3042), - [anon_sym_LBRACE] = ACTIONS(3040), - [anon_sym_COMMA] = ACTIONS(3040), - [anon_sym_RBRACE] = ACTIONS(3040), - [anon_sym_LPAREN] = ACTIONS(3040), - [anon_sym_PIPE] = ACTIONS(3042), - [anon_sym_fn] = ACTIONS(3042), - [anon_sym_PLUS] = ACTIONS(3042), - [anon_sym_DASH] = ACTIONS(3042), - [anon_sym_STAR] = ACTIONS(3040), - [anon_sym_SLASH] = ACTIONS(3042), - [anon_sym_PERCENT] = ACTIONS(3040), - [anon_sym_LT] = ACTIONS(3042), - [anon_sym_GT] = ACTIONS(3042), - [anon_sym_EQ_EQ] = ACTIONS(3040), - [anon_sym_BANG_EQ] = ACTIONS(3040), - [anon_sym_LT_EQ] = ACTIONS(3040), - [anon_sym_GT_EQ] = ACTIONS(3040), - [anon_sym_LBRACK] = ACTIONS(3040), - [anon_sym_RBRACK] = ACTIONS(3040), - [anon_sym_struct] = ACTIONS(3042), - [anon_sym_mut] = ACTIONS(3042), - [anon_sym_COLON] = ACTIONS(3040), - [anon_sym_PLUS_PLUS] = ACTIONS(3040), - [anon_sym_DASH_DASH] = ACTIONS(3040), - [anon_sym_QMARK] = ACTIONS(3042), - [anon_sym_BANG] = ACTIONS(3042), - [anon_sym_go] = ACTIONS(3042), - [anon_sym_spawn] = ACTIONS(3042), - [anon_sym_json_DOTdecode] = ACTIONS(3040), - [anon_sym_LBRACK2] = ACTIONS(3042), - [anon_sym_TILDE] = ACTIONS(3040), - [anon_sym_CARET] = ACTIONS(3040), - [anon_sym_AMP] = ACTIONS(3042), - [anon_sym_LT_DASH] = ACTIONS(3040), - [anon_sym_LT_LT] = ACTIONS(3040), - [anon_sym_GT_GT] = ACTIONS(3042), - [anon_sym_GT_GT_GT] = ACTIONS(3040), - [anon_sym_AMP_CARET] = ACTIONS(3040), - [anon_sym_AMP_AMP] = ACTIONS(3040), - [anon_sym_PIPE_PIPE] = ACTIONS(3040), - [anon_sym_or] = ACTIONS(3042), - [sym_none] = ACTIONS(3042), - [sym_true] = ACTIONS(3042), - [sym_false] = ACTIONS(3042), - [sym_nil] = ACTIONS(3042), - [anon_sym_QMARK_DOT] = ACTIONS(3040), - [anon_sym_POUND_LBRACK] = ACTIONS(3040), - [anon_sym_if] = ACTIONS(3042), - [anon_sym_DOLLARif] = ACTIONS(3042), - [anon_sym_is] = ACTIONS(3042), - [anon_sym_BANGis] = ACTIONS(3040), - [anon_sym_in] = ACTIONS(3042), - [anon_sym_BANGin] = ACTIONS(3040), - [anon_sym_match] = ACTIONS(3042), - [anon_sym_select] = ACTIONS(3042), - [anon_sym_lock] = ACTIONS(3042), - [anon_sym_rlock] = ACTIONS(3042), - [anon_sym_unsafe] = ACTIONS(3042), - [anon_sym_sql] = ACTIONS(3042), - [sym_int_literal] = ACTIONS(3042), - [sym_float_literal] = ACTIONS(3040), - [sym_rune_literal] = ACTIONS(3040), - [sym_pseudo_compile_time_identifier] = ACTIONS(3042), - [anon_sym_shared] = ACTIONS(3042), - [anon_sym_map_LBRACK] = ACTIONS(3040), - [anon_sym_chan] = ACTIONS(3042), - [anon_sym_thread] = ACTIONS(3042), - [anon_sym_atomic] = ACTIONS(3042), - [sym___double_quote] = ACTIONS(3040), - [sym___single_quote] = ACTIONS(3040), - [sym___c_double_quote] = ACTIONS(3040), - [sym___c_single_quote] = ACTIONS(3040), - [sym___r_double_quote] = ACTIONS(3040), - [sym___r_single_quote] = ACTIONS(3040), + [anon_sym_DOT] = ACTIONS(3821), + [anon_sym_as] = ACTIONS(3841), + [anon_sym_LBRACE] = ACTIONS(1793), + [anon_sym_COMMA] = ACTIONS(1793), + [anon_sym_LPAREN] = ACTIONS(3823), + [anon_sym_PIPE] = ACTIONS(3883), + [anon_sym_fn] = ACTIONS(1795), + [anon_sym_PLUS] = ACTIONS(3883), + [anon_sym_DASH] = ACTIONS(3883), + [anon_sym_STAR] = ACTIONS(3885), + [anon_sym_SLASH] = ACTIONS(3887), + [anon_sym_PERCENT] = ACTIONS(3885), + [anon_sym_LT] = ACTIONS(3891), + [anon_sym_GT] = ACTIONS(3891), + [anon_sym_EQ_EQ] = ACTIONS(3893), + [anon_sym_BANG_EQ] = ACTIONS(3893), + [anon_sym_LT_EQ] = ACTIONS(3893), + [anon_sym_GT_EQ] = ACTIONS(3893), + [anon_sym_LBRACK] = ACTIONS(3825), + [anon_sym_RBRACK] = ACTIONS(1793), + [anon_sym_struct] = ACTIONS(1795), + [anon_sym_mut] = ACTIONS(1795), + [anon_sym_PLUS_PLUS] = ACTIONS(3857), + [anon_sym_DASH_DASH] = ACTIONS(3859), + [anon_sym_QMARK] = ACTIONS(3827), + [anon_sym_BANG] = ACTIONS(3829), + [anon_sym_go] = ACTIONS(1795), + [anon_sym_spawn] = ACTIONS(1795), + [anon_sym_json_DOTdecode] = ACTIONS(1793), + [anon_sym_LBRACK2] = ACTIONS(3831), + [anon_sym_TILDE] = ACTIONS(1793), + [anon_sym_CARET] = ACTIONS(3889), + [anon_sym_AMP] = ACTIONS(3887), + [anon_sym_LT_DASH] = ACTIONS(1793), + [anon_sym_LT_LT] = ACTIONS(3885), + [anon_sym_GT_GT] = ACTIONS(3887), + [anon_sym_GT_GT_GT] = ACTIONS(3885), + [anon_sym_AMP_CARET] = ACTIONS(3885), + [anon_sym_AMP_AMP] = ACTIONS(3905), + [anon_sym_PIPE_PIPE] = ACTIONS(3907), + [anon_sym_or] = ACTIONS(3867), + [sym_none] = ACTIONS(1795), + [sym_true] = ACTIONS(1795), + [sym_false] = ACTIONS(1795), + [sym_nil] = ACTIONS(1795), + [anon_sym_QMARK_DOT] = ACTIONS(3833), + [anon_sym_POUND_LBRACK] = ACTIONS(3835), + [anon_sym_if] = ACTIONS(1795), + [anon_sym_DOLLARif] = ACTIONS(1795), + [anon_sym_is] = ACTIONS(3869), + [anon_sym_BANGis] = ACTIONS(3871), + [anon_sym_in] = ACTIONS(3895), + [anon_sym_BANGin] = ACTIONS(3897), + [anon_sym_match] = ACTIONS(1795), + [anon_sym_select] = ACTIONS(1795), + [anon_sym_lock] = ACTIONS(1795), + [anon_sym_rlock] = ACTIONS(1795), + [anon_sym_unsafe] = ACTIONS(1795), + [anon_sym_sql] = ACTIONS(1795), + [sym_int_literal] = ACTIONS(1795), + [sym_float_literal] = ACTIONS(1793), + [sym_rune_literal] = ACTIONS(1793), + [sym_pseudo_compile_time_identifier] = ACTIONS(1795), + [anon_sym_shared] = ACTIONS(1795), + [anon_sym_map_LBRACK] = ACTIONS(1793), + [anon_sym_chan] = ACTIONS(1795), + [anon_sym_thread] = ACTIONS(1795), + [anon_sym_atomic] = ACTIONS(1795), + [sym___double_quote] = ACTIONS(1793), + [sym___single_quote] = ACTIONS(1793), + [sym___c_double_quote] = ACTIONS(1793), + [sym___c_single_quote] = ACTIONS(1793), + [sym___r_double_quote] = ACTIONS(1793), + [sym___r_single_quote] = ACTIONS(1793), }, - [1284] = { - [sym_line_comment] = STATE(1284), - [sym_block_comment] = STATE(1284), - [sym_type_parameters] = STATE(4073), - [sym_argument_list] = STATE(1358), - [sym_or_block] = STATE(1359), - [sym_identifier] = ACTIONS(1785), + [1282] = { + [sym_line_comment] = STATE(1282), + [sym_block_comment] = STATE(1282), + [sym_type_parameters] = STATE(4093), + [sym_argument_list] = STATE(1361), + [sym_or_block] = STATE(1362), + [sym_identifier] = ACTIONS(1773), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(3815), - [anon_sym_as] = ACTIONS(1785), - [anon_sym_LBRACE] = ACTIONS(1783), - [anon_sym_COMMA] = ACTIONS(1783), - [anon_sym_LPAREN] = ACTIONS(3817), - [anon_sym_PIPE] = ACTIONS(3879), - [anon_sym_fn] = ACTIONS(1785), - [anon_sym_PLUS] = ACTIONS(3879), - [anon_sym_DASH] = ACTIONS(3879), - [anon_sym_STAR] = ACTIONS(3881), - [anon_sym_SLASH] = ACTIONS(3883), - [anon_sym_PERCENT] = ACTIONS(3881), - [anon_sym_LT] = ACTIONS(3885), - [anon_sym_GT] = ACTIONS(3885), - [anon_sym_EQ_EQ] = ACTIONS(3887), - [anon_sym_BANG_EQ] = ACTIONS(3887), - [anon_sym_LT_EQ] = ACTIONS(3887), - [anon_sym_GT_EQ] = ACTIONS(3887), - [anon_sym_LBRACK] = ACTIONS(3819), - [anon_sym_RBRACK] = ACTIONS(1783), - [anon_sym_struct] = ACTIONS(1785), - [anon_sym_mut] = ACTIONS(1785), - [anon_sym_PLUS_PLUS] = ACTIONS(1783), - [anon_sym_DASH_DASH] = ACTIONS(1783), - [anon_sym_QMARK] = ACTIONS(3821), - [anon_sym_BANG] = ACTIONS(3823), - [anon_sym_go] = ACTIONS(1785), - [anon_sym_spawn] = ACTIONS(1785), - [anon_sym_json_DOTdecode] = ACTIONS(1783), - [anon_sym_LBRACK2] = ACTIONS(3825), - [anon_sym_TILDE] = ACTIONS(1783), + [anon_sym_DOT] = ACTIONS(3821), + [anon_sym_as] = ACTIONS(3841), + [anon_sym_LBRACE] = ACTIONS(1771), + [anon_sym_COMMA] = ACTIONS(1771), + [anon_sym_LPAREN] = ACTIONS(3823), + [anon_sym_PIPE] = ACTIONS(3883), + [anon_sym_fn] = ACTIONS(1773), + [anon_sym_PLUS] = ACTIONS(3883), + [anon_sym_DASH] = ACTIONS(3883), + [anon_sym_STAR] = ACTIONS(3885), + [anon_sym_SLASH] = ACTIONS(3887), + [anon_sym_PERCENT] = ACTIONS(3885), + [anon_sym_LT] = ACTIONS(3891), + [anon_sym_GT] = ACTIONS(3891), + [anon_sym_EQ_EQ] = ACTIONS(3893), + [anon_sym_BANG_EQ] = ACTIONS(3893), + [anon_sym_LT_EQ] = ACTIONS(3893), + [anon_sym_GT_EQ] = ACTIONS(3893), + [anon_sym_LBRACK] = ACTIONS(3825), + [anon_sym_RBRACK] = ACTIONS(1771), + [anon_sym_struct] = ACTIONS(1773), + [anon_sym_mut] = ACTIONS(1773), + [anon_sym_PLUS_PLUS] = ACTIONS(3857), + [anon_sym_DASH_DASH] = ACTIONS(3859), + [anon_sym_QMARK] = ACTIONS(3827), + [anon_sym_BANG] = ACTIONS(3829), + [anon_sym_go] = ACTIONS(1773), + [anon_sym_spawn] = ACTIONS(1773), + [anon_sym_json_DOTdecode] = ACTIONS(1771), + [anon_sym_LBRACK2] = ACTIONS(3831), + [anon_sym_TILDE] = ACTIONS(1771), [anon_sym_CARET] = ACTIONS(3889), - [anon_sym_AMP] = ACTIONS(3883), - [anon_sym_LT_DASH] = ACTIONS(1783), - [anon_sym_LT_LT] = ACTIONS(3881), - [anon_sym_GT_GT] = ACTIONS(3883), - [anon_sym_GT_GT_GT] = ACTIONS(3881), - [anon_sym_AMP_CARET] = ACTIONS(3881), - [anon_sym_AMP_AMP] = ACTIONS(3891), - [anon_sym_PIPE_PIPE] = ACTIONS(1783), - [anon_sym_or] = ACTIONS(1785), - [sym_none] = ACTIONS(1785), - [sym_true] = ACTIONS(1785), - [sym_false] = ACTIONS(1785), - [sym_nil] = ACTIONS(1785), - [anon_sym_QMARK_DOT] = ACTIONS(3827), - [anon_sym_POUND_LBRACK] = ACTIONS(3829), - [anon_sym_if] = ACTIONS(1785), - [anon_sym_DOLLARif] = ACTIONS(1785), - [anon_sym_is] = ACTIONS(1785), - [anon_sym_BANGis] = ACTIONS(1783), + [anon_sym_AMP] = ACTIONS(3887), + [anon_sym_LT_DASH] = ACTIONS(1771), + [anon_sym_LT_LT] = ACTIONS(3885), + [anon_sym_GT_GT] = ACTIONS(3887), + [anon_sym_GT_GT_GT] = ACTIONS(3885), + [anon_sym_AMP_CARET] = ACTIONS(3885), + [anon_sym_AMP_AMP] = ACTIONS(3905), + [anon_sym_PIPE_PIPE] = ACTIONS(3907), + [anon_sym_or] = ACTIONS(3867), + [sym_none] = ACTIONS(1773), + [sym_true] = ACTIONS(1773), + [sym_false] = ACTIONS(1773), + [sym_nil] = ACTIONS(1773), + [anon_sym_QMARK_DOT] = ACTIONS(3833), + [anon_sym_POUND_LBRACK] = ACTIONS(3835), + [anon_sym_if] = ACTIONS(1773), + [anon_sym_DOLLARif] = ACTIONS(1773), + [anon_sym_is] = ACTIONS(3869), + [anon_sym_BANGis] = ACTIONS(3871), [anon_sym_in] = ACTIONS(3895), [anon_sym_BANGin] = ACTIONS(3897), - [anon_sym_match] = ACTIONS(1785), - [anon_sym_select] = ACTIONS(1785), - [anon_sym_lock] = ACTIONS(1785), - [anon_sym_rlock] = ACTIONS(1785), - [anon_sym_unsafe] = ACTIONS(1785), - [anon_sym_sql] = ACTIONS(1785), - [sym_int_literal] = ACTIONS(1785), - [sym_float_literal] = ACTIONS(1783), - [sym_rune_literal] = ACTIONS(1783), - [sym_pseudo_compile_time_identifier] = ACTIONS(1785), - [anon_sym_shared] = ACTIONS(1785), - [anon_sym_map_LBRACK] = ACTIONS(1783), - [anon_sym_chan] = ACTIONS(1785), - [anon_sym_thread] = ACTIONS(1785), - [anon_sym_atomic] = ACTIONS(1785), - [sym___double_quote] = ACTIONS(1783), - [sym___single_quote] = ACTIONS(1783), - [sym___c_double_quote] = ACTIONS(1783), - [sym___c_single_quote] = ACTIONS(1783), - [sym___r_double_quote] = ACTIONS(1783), - [sym___r_single_quote] = ACTIONS(1783), + [anon_sym_match] = ACTIONS(1773), + [anon_sym_select] = ACTIONS(1773), + [anon_sym_lock] = ACTIONS(1773), + [anon_sym_rlock] = ACTIONS(1773), + [anon_sym_unsafe] = ACTIONS(1773), + [anon_sym_sql] = ACTIONS(1773), + [sym_int_literal] = ACTIONS(1773), + [sym_float_literal] = ACTIONS(1771), + [sym_rune_literal] = ACTIONS(1771), + [sym_pseudo_compile_time_identifier] = ACTIONS(1773), + [anon_sym_shared] = ACTIONS(1773), + [anon_sym_map_LBRACK] = ACTIONS(1771), + [anon_sym_chan] = ACTIONS(1773), + [anon_sym_thread] = ACTIONS(1773), + [anon_sym_atomic] = ACTIONS(1773), + [sym___double_quote] = ACTIONS(1771), + [sym___single_quote] = ACTIONS(1771), + [sym___c_double_quote] = ACTIONS(1771), + [sym___c_single_quote] = ACTIONS(1771), + [sym___r_double_quote] = ACTIONS(1771), + [sym___r_single_quote] = ACTIONS(1771), }, - [1285] = { - [sym_line_comment] = STATE(1285), - [sym_block_comment] = STATE(1285), - [sym_type_parameters] = STATE(4073), - [sym_argument_list] = STATE(1358), - [sym_or_block] = STATE(1359), - [sym_identifier] = ACTIONS(1769), + [1283] = { + [sym_line_comment] = STATE(1283), + [sym_block_comment] = STATE(1283), + [sym_identifier] = ACTIONS(1813), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(3815), - [anon_sym_as] = ACTIONS(1769), - [anon_sym_LBRACE] = ACTIONS(1767), - [anon_sym_COMMA] = ACTIONS(1767), - [anon_sym_LPAREN] = ACTIONS(3817), - [anon_sym_PIPE] = ACTIONS(3879), - [anon_sym_fn] = ACTIONS(1769), - [anon_sym_PLUS] = ACTIONS(3879), - [anon_sym_DASH] = ACTIONS(3879), - [anon_sym_STAR] = ACTIONS(3881), - [anon_sym_SLASH] = ACTIONS(3883), - [anon_sym_PERCENT] = ACTIONS(3881), - [anon_sym_LT] = ACTIONS(1769), - [anon_sym_GT] = ACTIONS(1769), - [anon_sym_EQ_EQ] = ACTIONS(1767), - [anon_sym_BANG_EQ] = ACTIONS(1767), - [anon_sym_LT_EQ] = ACTIONS(1767), - [anon_sym_GT_EQ] = ACTIONS(1767), - [anon_sym_LBRACK] = ACTIONS(3819), - [anon_sym_RBRACK] = ACTIONS(1767), - [anon_sym_struct] = ACTIONS(1769), - [anon_sym_mut] = ACTIONS(1769), - [anon_sym_PLUS_PLUS] = ACTIONS(1767), - [anon_sym_DASH_DASH] = ACTIONS(1767), - [anon_sym_QMARK] = ACTIONS(3821), - [anon_sym_BANG] = ACTIONS(3823), - [anon_sym_go] = ACTIONS(1769), - [anon_sym_spawn] = ACTIONS(1769), - [anon_sym_json_DOTdecode] = ACTIONS(1767), - [anon_sym_LBRACK2] = ACTIONS(3825), - [anon_sym_TILDE] = ACTIONS(1767), - [anon_sym_CARET] = ACTIONS(3889), - [anon_sym_AMP] = ACTIONS(3883), - [anon_sym_LT_DASH] = ACTIONS(1767), - [anon_sym_LT_LT] = ACTIONS(3881), - [anon_sym_GT_GT] = ACTIONS(3883), - [anon_sym_GT_GT_GT] = ACTIONS(3881), - [anon_sym_AMP_CARET] = ACTIONS(3881), - [anon_sym_AMP_AMP] = ACTIONS(1767), - [anon_sym_PIPE_PIPE] = ACTIONS(1767), - [anon_sym_or] = ACTIONS(1769), - [sym_none] = ACTIONS(1769), - [sym_true] = ACTIONS(1769), - [sym_false] = ACTIONS(1769), - [sym_nil] = ACTIONS(1769), - [anon_sym_QMARK_DOT] = ACTIONS(3827), - [anon_sym_POUND_LBRACK] = ACTIONS(3829), - [anon_sym_if] = ACTIONS(1769), - [anon_sym_DOLLARif] = ACTIONS(1769), - [anon_sym_is] = ACTIONS(1769), - [anon_sym_BANGis] = ACTIONS(1767), - [anon_sym_in] = ACTIONS(1769), - [anon_sym_BANGin] = ACTIONS(1767), - [anon_sym_match] = ACTIONS(1769), - [anon_sym_select] = ACTIONS(1769), - [anon_sym_lock] = ACTIONS(1769), - [anon_sym_rlock] = ACTIONS(1769), - [anon_sym_unsafe] = ACTIONS(1769), - [anon_sym_sql] = ACTIONS(1769), - [sym_int_literal] = ACTIONS(1769), - [sym_float_literal] = ACTIONS(1767), - [sym_rune_literal] = ACTIONS(1767), - [sym_pseudo_compile_time_identifier] = ACTIONS(1769), - [anon_sym_shared] = ACTIONS(1769), - [anon_sym_map_LBRACK] = ACTIONS(1767), - [anon_sym_chan] = ACTIONS(1769), - [anon_sym_thread] = ACTIONS(1769), - [anon_sym_atomic] = ACTIONS(1769), - [sym___double_quote] = ACTIONS(1767), - [sym___single_quote] = ACTIONS(1767), - [sym___c_double_quote] = ACTIONS(1767), - [sym___c_single_quote] = ACTIONS(1767), - [sym___r_double_quote] = ACTIONS(1767), - [sym___r_single_quote] = ACTIONS(1767), + [anon_sym_DOT] = ACTIONS(1813), + [anon_sym_as] = ACTIONS(1813), + [anon_sym_LBRACE] = ACTIONS(1811), + [anon_sym_COMMA] = ACTIONS(1811), + [anon_sym_RBRACE] = ACTIONS(1811), + [anon_sym_LPAREN] = ACTIONS(1811), + [anon_sym_PIPE] = ACTIONS(1813), + [anon_sym_fn] = ACTIONS(1813), + [anon_sym_PLUS] = ACTIONS(1813), + [anon_sym_DASH] = ACTIONS(1813), + [anon_sym_STAR] = ACTIONS(1811), + [anon_sym_SLASH] = ACTIONS(1813), + [anon_sym_PERCENT] = ACTIONS(1811), + [anon_sym_LT] = ACTIONS(1813), + [anon_sym_GT] = ACTIONS(1813), + [anon_sym_EQ_EQ] = ACTIONS(1811), + [anon_sym_BANG_EQ] = ACTIONS(1811), + [anon_sym_LT_EQ] = ACTIONS(1811), + [anon_sym_GT_EQ] = ACTIONS(1811), + [anon_sym_LBRACK] = ACTIONS(1811), + [anon_sym_RBRACK] = ACTIONS(1811), + [anon_sym_struct] = ACTIONS(1813), + [anon_sym_mut] = ACTIONS(1813), + [anon_sym_COLON] = ACTIONS(1811), + [anon_sym_PLUS_PLUS] = ACTIONS(1811), + [anon_sym_DASH_DASH] = ACTIONS(1811), + [anon_sym_QMARK] = ACTIONS(1813), + [anon_sym_BANG] = ACTIONS(1813), + [anon_sym_go] = ACTIONS(1813), + [anon_sym_spawn] = ACTIONS(1813), + [anon_sym_json_DOTdecode] = ACTIONS(1811), + [anon_sym_LBRACK2] = ACTIONS(1813), + [anon_sym_TILDE] = ACTIONS(1811), + [anon_sym_CARET] = ACTIONS(1811), + [anon_sym_AMP] = ACTIONS(1813), + [anon_sym_LT_DASH] = ACTIONS(1811), + [anon_sym_LT_LT] = ACTIONS(1811), + [anon_sym_GT_GT] = ACTIONS(1813), + [anon_sym_GT_GT_GT] = ACTIONS(1811), + [anon_sym_AMP_CARET] = ACTIONS(1811), + [anon_sym_AMP_AMP] = ACTIONS(1811), + [anon_sym_PIPE_PIPE] = ACTIONS(1811), + [anon_sym_or] = ACTIONS(1813), + [sym_none] = ACTIONS(1813), + [sym_true] = ACTIONS(1813), + [sym_false] = ACTIONS(1813), + [sym_nil] = ACTIONS(1813), + [anon_sym_QMARK_DOT] = ACTIONS(1811), + [anon_sym_POUND_LBRACK] = ACTIONS(1811), + [anon_sym_if] = ACTIONS(1813), + [anon_sym_DOLLARif] = ACTIONS(1813), + [anon_sym_DOLLARelse] = ACTIONS(1813), + [anon_sym_is] = ACTIONS(1813), + [anon_sym_BANGis] = ACTIONS(1811), + [anon_sym_in] = ACTIONS(1813), + [anon_sym_BANGin] = ACTIONS(1811), + [anon_sym_match] = ACTIONS(1813), + [anon_sym_select] = ACTIONS(1813), + [anon_sym_lock] = ACTIONS(1813), + [anon_sym_rlock] = ACTIONS(1813), + [anon_sym_unsafe] = ACTIONS(1813), + [anon_sym_sql] = ACTIONS(1813), + [sym_int_literal] = ACTIONS(1813), + [sym_float_literal] = ACTIONS(1811), + [sym_rune_literal] = ACTIONS(1811), + [sym_pseudo_compile_time_identifier] = ACTIONS(1813), + [anon_sym_shared] = ACTIONS(1813), + [anon_sym_map_LBRACK] = ACTIONS(1811), + [anon_sym_chan] = ACTIONS(1813), + [anon_sym_thread] = ACTIONS(1813), + [anon_sym_atomic] = ACTIONS(1813), + [sym___double_quote] = ACTIONS(1811), + [sym___single_quote] = ACTIONS(1811), + [sym___c_double_quote] = ACTIONS(1811), + [sym___c_single_quote] = ACTIONS(1811), + [sym___r_double_quote] = ACTIONS(1811), + [sym___r_single_quote] = ACTIONS(1811), + }, + [1284] = { + [sym_line_comment] = STATE(1284), + [sym_block_comment] = STATE(1284), + [sym_type_parameters] = STATE(4093), + [sym_argument_list] = STATE(1361), + [sym_or_block] = STATE(1362), + [sym_identifier] = ACTIONS(1781), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(3821), + [anon_sym_as] = ACTIONS(1781), + [anon_sym_LBRACE] = ACTIONS(1779), + [anon_sym_RBRACE] = ACTIONS(1779), + [anon_sym_LPAREN] = ACTIONS(3823), + [anon_sym_PIPE] = ACTIONS(3845), + [anon_sym_fn] = ACTIONS(1781), + [anon_sym_PLUS] = ACTIONS(3845), + [anon_sym_DASH] = ACTIONS(3845), + [anon_sym_STAR] = ACTIONS(3847), + [anon_sym_SLASH] = ACTIONS(3849), + [anon_sym_PERCENT] = ACTIONS(3847), + [anon_sym_LT] = ACTIONS(1781), + [anon_sym_GT] = ACTIONS(1781), + [anon_sym_EQ_EQ] = ACTIONS(1779), + [anon_sym_BANG_EQ] = ACTIONS(1779), + [anon_sym_LT_EQ] = ACTIONS(1779), + [anon_sym_GT_EQ] = ACTIONS(1779), + [anon_sym_LBRACK] = ACTIONS(3825), + [anon_sym_struct] = ACTIONS(1781), + [anon_sym_mut] = ACTIONS(1781), + [anon_sym_COLON] = ACTIONS(1779), + [anon_sym_PLUS_PLUS] = ACTIONS(1779), + [anon_sym_DASH_DASH] = ACTIONS(1779), + [anon_sym_QMARK] = ACTIONS(3827), + [anon_sym_BANG] = ACTIONS(3829), + [anon_sym_go] = ACTIONS(1781), + [anon_sym_spawn] = ACTIONS(1781), + [anon_sym_json_DOTdecode] = ACTIONS(1779), + [anon_sym_LBRACK2] = ACTIONS(3831), + [anon_sym_TILDE] = ACTIONS(1779), + [anon_sym_CARET] = ACTIONS(3861), + [anon_sym_AMP] = ACTIONS(3849), + [anon_sym_LT_DASH] = ACTIONS(1779), + [anon_sym_LT_LT] = ACTIONS(3847), + [anon_sym_GT_GT] = ACTIONS(3849), + [anon_sym_GT_GT_GT] = ACTIONS(3847), + [anon_sym_AMP_CARET] = ACTIONS(3847), + [anon_sym_AMP_AMP] = ACTIONS(1779), + [anon_sym_PIPE_PIPE] = ACTIONS(1779), + [anon_sym_or] = ACTIONS(1781), + [sym_none] = ACTIONS(1781), + [sym_true] = ACTIONS(1781), + [sym_false] = ACTIONS(1781), + [sym_nil] = ACTIONS(1781), + [anon_sym_QMARK_DOT] = ACTIONS(3833), + [anon_sym_POUND_LBRACK] = ACTIONS(3835), + [anon_sym_if] = ACTIONS(1781), + [anon_sym_DOLLARif] = ACTIONS(1781), + [anon_sym_is] = ACTIONS(1781), + [anon_sym_BANGis] = ACTIONS(1779), + [anon_sym_in] = ACTIONS(1781), + [anon_sym_BANGin] = ACTIONS(1779), + [anon_sym_match] = ACTIONS(1781), + [anon_sym_select] = ACTIONS(1781), + [anon_sym_lock] = ACTIONS(1781), + [anon_sym_rlock] = ACTIONS(1781), + [anon_sym_unsafe] = ACTIONS(1781), + [anon_sym_sql] = ACTIONS(1781), + [sym_int_literal] = ACTIONS(1781), + [sym_float_literal] = ACTIONS(1779), + [sym_rune_literal] = ACTIONS(1779), + [sym_pseudo_compile_time_identifier] = ACTIONS(1781), + [anon_sym_shared] = ACTIONS(1781), + [anon_sym_map_LBRACK] = ACTIONS(1779), + [anon_sym_chan] = ACTIONS(1781), + [anon_sym_thread] = ACTIONS(1781), + [anon_sym_atomic] = ACTIONS(1781), + [sym___double_quote] = ACTIONS(1779), + [sym___single_quote] = ACTIONS(1779), + [sym___c_double_quote] = ACTIONS(1779), + [sym___c_single_quote] = ACTIONS(1779), + [sym___r_double_quote] = ACTIONS(1779), + [sym___r_single_quote] = ACTIONS(1779), + }, + [1285] = { + [sym_line_comment] = STATE(1285), + [sym_block_comment] = STATE(1285), + [sym_type_parameters] = STATE(4093), + [sym_argument_list] = STATE(1361), + [sym_or_block] = STATE(1362), + [sym_identifier] = ACTIONS(1765), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(3821), + [anon_sym_as] = ACTIONS(1765), + [anon_sym_LBRACE] = ACTIONS(1763), + [anon_sym_RBRACE] = ACTIONS(1763), + [anon_sym_LPAREN] = ACTIONS(3823), + [anon_sym_PIPE] = ACTIONS(1765), + [anon_sym_fn] = ACTIONS(1765), + [anon_sym_PLUS] = ACTIONS(1765), + [anon_sym_DASH] = ACTIONS(1765), + [anon_sym_STAR] = ACTIONS(3847), + [anon_sym_SLASH] = ACTIONS(3849), + [anon_sym_PERCENT] = ACTIONS(3847), + [anon_sym_LT] = ACTIONS(1765), + [anon_sym_GT] = ACTIONS(1765), + [anon_sym_EQ_EQ] = ACTIONS(1763), + [anon_sym_BANG_EQ] = ACTIONS(1763), + [anon_sym_LT_EQ] = ACTIONS(1763), + [anon_sym_GT_EQ] = ACTIONS(1763), + [anon_sym_LBRACK] = ACTIONS(3825), + [anon_sym_struct] = ACTIONS(1765), + [anon_sym_mut] = ACTIONS(1765), + [anon_sym_COLON] = ACTIONS(1763), + [anon_sym_PLUS_PLUS] = ACTIONS(1763), + [anon_sym_DASH_DASH] = ACTIONS(1763), + [anon_sym_QMARK] = ACTIONS(3827), + [anon_sym_BANG] = ACTIONS(3829), + [anon_sym_go] = ACTIONS(1765), + [anon_sym_spawn] = ACTIONS(1765), + [anon_sym_json_DOTdecode] = ACTIONS(1763), + [anon_sym_LBRACK2] = ACTIONS(3831), + [anon_sym_TILDE] = ACTIONS(1763), + [anon_sym_CARET] = ACTIONS(1763), + [anon_sym_AMP] = ACTIONS(3849), + [anon_sym_LT_DASH] = ACTIONS(1763), + [anon_sym_LT_LT] = ACTIONS(3847), + [anon_sym_GT_GT] = ACTIONS(3849), + [anon_sym_GT_GT_GT] = ACTIONS(3847), + [anon_sym_AMP_CARET] = ACTIONS(3847), + [anon_sym_AMP_AMP] = ACTIONS(1763), + [anon_sym_PIPE_PIPE] = ACTIONS(1763), + [anon_sym_or] = ACTIONS(1765), + [sym_none] = ACTIONS(1765), + [sym_true] = ACTIONS(1765), + [sym_false] = ACTIONS(1765), + [sym_nil] = ACTIONS(1765), + [anon_sym_QMARK_DOT] = ACTIONS(3833), + [anon_sym_POUND_LBRACK] = ACTIONS(3835), + [anon_sym_if] = ACTIONS(1765), + [anon_sym_DOLLARif] = ACTIONS(1765), + [anon_sym_is] = ACTIONS(1765), + [anon_sym_BANGis] = ACTIONS(1763), + [anon_sym_in] = ACTIONS(1765), + [anon_sym_BANGin] = ACTIONS(1763), + [anon_sym_match] = ACTIONS(1765), + [anon_sym_select] = ACTIONS(1765), + [anon_sym_lock] = ACTIONS(1765), + [anon_sym_rlock] = ACTIONS(1765), + [anon_sym_unsafe] = ACTIONS(1765), + [anon_sym_sql] = ACTIONS(1765), + [sym_int_literal] = ACTIONS(1765), + [sym_float_literal] = ACTIONS(1763), + [sym_rune_literal] = ACTIONS(1763), + [sym_pseudo_compile_time_identifier] = ACTIONS(1765), + [anon_sym_shared] = ACTIONS(1765), + [anon_sym_map_LBRACK] = ACTIONS(1763), + [anon_sym_chan] = ACTIONS(1765), + [anon_sym_thread] = ACTIONS(1765), + [anon_sym_atomic] = ACTIONS(1765), + [sym___double_quote] = ACTIONS(1763), + [sym___single_quote] = ACTIONS(1763), + [sym___c_double_quote] = ACTIONS(1763), + [sym___c_single_quote] = ACTIONS(1763), + [sym___r_double_quote] = ACTIONS(1763), + [sym___r_single_quote] = ACTIONS(1763), }, [1286] = { [sym_line_comment] = STATE(1286), [sym_block_comment] = STATE(1286), - [sym_identifier] = ACTIONS(3054), + [sym_type_parameters] = STATE(4093), + [sym_argument_list] = STATE(1361), + [sym_or_block] = STATE(1362), + [sym_identifier] = ACTIONS(1765), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_SEMI] = ACTIONS(3052), - [anon_sym_DOT] = ACTIONS(3054), - [anon_sym_as] = ACTIONS(3054), - [anon_sym_LBRACE] = ACTIONS(3052), - [anon_sym_COMMA] = ACTIONS(3052), - [anon_sym_RBRACE] = ACTIONS(3052), - [anon_sym_LPAREN] = ACTIONS(3052), - [anon_sym_PIPE] = ACTIONS(3054), - [anon_sym_fn] = ACTIONS(3054), - [anon_sym_PLUS] = ACTIONS(3054), - [anon_sym_DASH] = ACTIONS(3054), - [anon_sym_STAR] = ACTIONS(3052), - [anon_sym_SLASH] = ACTIONS(3054), - [anon_sym_PERCENT] = ACTIONS(3052), - [anon_sym_LT] = ACTIONS(3054), - [anon_sym_GT] = ACTIONS(3054), - [anon_sym_EQ_EQ] = ACTIONS(3052), - [anon_sym_BANG_EQ] = ACTIONS(3052), - [anon_sym_LT_EQ] = ACTIONS(3052), - [anon_sym_GT_EQ] = ACTIONS(3052), - [anon_sym_LBRACK] = ACTIONS(3052), - [anon_sym_RBRACK] = ACTIONS(3052), - [anon_sym_struct] = ACTIONS(3054), - [anon_sym_mut] = ACTIONS(3054), - [anon_sym_COLON] = ACTIONS(3052), - [anon_sym_PLUS_PLUS] = ACTIONS(3052), - [anon_sym_DASH_DASH] = ACTIONS(3052), - [anon_sym_QMARK] = ACTIONS(3054), - [anon_sym_BANG] = ACTIONS(3054), - [anon_sym_go] = ACTIONS(3054), - [anon_sym_spawn] = ACTIONS(3054), - [anon_sym_json_DOTdecode] = ACTIONS(3052), - [anon_sym_LBRACK2] = ACTIONS(3054), - [anon_sym_TILDE] = ACTIONS(3052), - [anon_sym_CARET] = ACTIONS(3052), - [anon_sym_AMP] = ACTIONS(3054), - [anon_sym_LT_DASH] = ACTIONS(3052), - [anon_sym_LT_LT] = ACTIONS(3052), - [anon_sym_GT_GT] = ACTIONS(3054), - [anon_sym_GT_GT_GT] = ACTIONS(3052), - [anon_sym_AMP_CARET] = ACTIONS(3052), - [anon_sym_AMP_AMP] = ACTIONS(3052), - [anon_sym_PIPE_PIPE] = ACTIONS(3052), - [anon_sym_or] = ACTIONS(3054), - [sym_none] = ACTIONS(3054), - [sym_true] = ACTIONS(3054), - [sym_false] = ACTIONS(3054), - [sym_nil] = ACTIONS(3054), - [anon_sym_QMARK_DOT] = ACTIONS(3052), - [anon_sym_POUND_LBRACK] = ACTIONS(3052), - [anon_sym_if] = ACTIONS(3054), - [anon_sym_DOLLARif] = ACTIONS(3054), - [anon_sym_is] = ACTIONS(3054), - [anon_sym_BANGis] = ACTIONS(3052), - [anon_sym_in] = ACTIONS(3054), - [anon_sym_BANGin] = ACTIONS(3052), - [anon_sym_match] = ACTIONS(3054), - [anon_sym_select] = ACTIONS(3054), - [anon_sym_lock] = ACTIONS(3054), - [anon_sym_rlock] = ACTIONS(3054), - [anon_sym_unsafe] = ACTIONS(3054), - [anon_sym_sql] = ACTIONS(3054), - [sym_int_literal] = ACTIONS(3054), - [sym_float_literal] = ACTIONS(3052), - [sym_rune_literal] = ACTIONS(3052), - [sym_pseudo_compile_time_identifier] = ACTIONS(3054), - [anon_sym_shared] = ACTIONS(3054), - [anon_sym_map_LBRACK] = ACTIONS(3052), - [anon_sym_chan] = ACTIONS(3054), - [anon_sym_thread] = ACTIONS(3054), - [anon_sym_atomic] = ACTIONS(3054), - [sym___double_quote] = ACTIONS(3052), - [sym___single_quote] = ACTIONS(3052), - [sym___c_double_quote] = ACTIONS(3052), - [sym___c_single_quote] = ACTIONS(3052), - [sym___r_double_quote] = ACTIONS(3052), - [sym___r_single_quote] = ACTIONS(3052), + [anon_sym_DOT] = ACTIONS(3821), + [anon_sym_as] = ACTIONS(1765), + [anon_sym_LBRACE] = ACTIONS(1763), + [anon_sym_RBRACE] = ACTIONS(1763), + [anon_sym_LPAREN] = ACTIONS(3823), + [anon_sym_PIPE] = ACTIONS(3845), + [anon_sym_fn] = ACTIONS(1765), + [anon_sym_PLUS] = ACTIONS(3845), + [anon_sym_DASH] = ACTIONS(3845), + [anon_sym_STAR] = ACTIONS(3847), + [anon_sym_SLASH] = ACTIONS(3849), + [anon_sym_PERCENT] = ACTIONS(3847), + [anon_sym_LT] = ACTIONS(3851), + [anon_sym_GT] = ACTIONS(3851), + [anon_sym_EQ_EQ] = ACTIONS(3853), + [anon_sym_BANG_EQ] = ACTIONS(3853), + [anon_sym_LT_EQ] = ACTIONS(3853), + [anon_sym_GT_EQ] = ACTIONS(3853), + [anon_sym_LBRACK] = ACTIONS(3825), + [anon_sym_struct] = ACTIONS(1765), + [anon_sym_mut] = ACTIONS(1765), + [anon_sym_COLON] = ACTIONS(1763), + [anon_sym_PLUS_PLUS] = ACTIONS(1763), + [anon_sym_DASH_DASH] = ACTIONS(1763), + [anon_sym_QMARK] = ACTIONS(3827), + [anon_sym_BANG] = ACTIONS(3829), + [anon_sym_go] = ACTIONS(1765), + [anon_sym_spawn] = ACTIONS(1765), + [anon_sym_json_DOTdecode] = ACTIONS(1763), + [anon_sym_LBRACK2] = ACTIONS(3831), + [anon_sym_TILDE] = ACTIONS(1763), + [anon_sym_CARET] = ACTIONS(3861), + [anon_sym_AMP] = ACTIONS(3849), + [anon_sym_LT_DASH] = ACTIONS(1763), + [anon_sym_LT_LT] = ACTIONS(3847), + [anon_sym_GT_GT] = ACTIONS(3849), + [anon_sym_GT_GT_GT] = ACTIONS(3847), + [anon_sym_AMP_CARET] = ACTIONS(3847), + [anon_sym_AMP_AMP] = ACTIONS(1763), + [anon_sym_PIPE_PIPE] = ACTIONS(1763), + [anon_sym_or] = ACTIONS(1765), + [sym_none] = ACTIONS(1765), + [sym_true] = ACTIONS(1765), + [sym_false] = ACTIONS(1765), + [sym_nil] = ACTIONS(1765), + [anon_sym_QMARK_DOT] = ACTIONS(3833), + [anon_sym_POUND_LBRACK] = ACTIONS(3835), + [anon_sym_if] = ACTIONS(1765), + [anon_sym_DOLLARif] = ACTIONS(1765), + [anon_sym_is] = ACTIONS(1765), + [anon_sym_BANGis] = ACTIONS(1763), + [anon_sym_in] = ACTIONS(3873), + [anon_sym_BANGin] = ACTIONS(3875), + [anon_sym_match] = ACTIONS(1765), + [anon_sym_select] = ACTIONS(1765), + [anon_sym_lock] = ACTIONS(1765), + [anon_sym_rlock] = ACTIONS(1765), + [anon_sym_unsafe] = ACTIONS(1765), + [anon_sym_sql] = ACTIONS(1765), + [sym_int_literal] = ACTIONS(1765), + [sym_float_literal] = ACTIONS(1763), + [sym_rune_literal] = ACTIONS(1763), + [sym_pseudo_compile_time_identifier] = ACTIONS(1765), + [anon_sym_shared] = ACTIONS(1765), + [anon_sym_map_LBRACK] = ACTIONS(1763), + [anon_sym_chan] = ACTIONS(1765), + [anon_sym_thread] = ACTIONS(1765), + [anon_sym_atomic] = ACTIONS(1765), + [sym___double_quote] = ACTIONS(1763), + [sym___single_quote] = ACTIONS(1763), + [sym___c_double_quote] = ACTIONS(1763), + [sym___c_single_quote] = ACTIONS(1763), + [sym___r_double_quote] = ACTIONS(1763), + [sym___r_single_quote] = ACTIONS(1763), }, [1287] = { [sym_line_comment] = STATE(1287), [sym_block_comment] = STATE(1287), - [sym_identifier] = ACTIONS(1899), + [sym_type_parameters] = STATE(4093), + [sym_argument_list] = STATE(1361), + [sym_or_block] = STATE(1362), + [sym_identifier] = ACTIONS(1765), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1899), - [anon_sym_as] = ACTIONS(1899), - [anon_sym_LBRACE] = ACTIONS(1897), - [anon_sym_COMMA] = ACTIONS(1897), - [anon_sym_RBRACE] = ACTIONS(1897), - [anon_sym_LPAREN] = ACTIONS(1897), - [anon_sym_PIPE] = ACTIONS(1899), - [anon_sym_fn] = ACTIONS(1899), - [anon_sym_PLUS] = ACTIONS(1899), - [anon_sym_DASH] = ACTIONS(1899), - [anon_sym_STAR] = ACTIONS(1897), - [anon_sym_SLASH] = ACTIONS(1899), - [anon_sym_PERCENT] = ACTIONS(1897), - [anon_sym_LT] = ACTIONS(1899), - [anon_sym_GT] = ACTIONS(1899), - [anon_sym_EQ_EQ] = ACTIONS(1897), - [anon_sym_BANG_EQ] = ACTIONS(1897), - [anon_sym_LT_EQ] = ACTIONS(1897), - [anon_sym_GT_EQ] = ACTIONS(1897), - [anon_sym_LBRACK] = ACTIONS(1897), - [anon_sym_RBRACK] = ACTIONS(1897), - [anon_sym_struct] = ACTIONS(1899), - [anon_sym_mut] = ACTIONS(1899), - [anon_sym_COLON] = ACTIONS(1897), - [anon_sym_PLUS_PLUS] = ACTIONS(1897), - [anon_sym_DASH_DASH] = ACTIONS(1897), - [anon_sym_QMARK] = ACTIONS(1899), - [anon_sym_BANG] = ACTIONS(1899), - [anon_sym_go] = ACTIONS(1899), - [anon_sym_spawn] = ACTIONS(1899), - [anon_sym_json_DOTdecode] = ACTIONS(1897), - [anon_sym_LBRACK2] = ACTIONS(1899), - [anon_sym_TILDE] = ACTIONS(1897), - [anon_sym_CARET] = ACTIONS(1897), - [anon_sym_AMP] = ACTIONS(1899), - [anon_sym_LT_DASH] = ACTIONS(1897), - [anon_sym_LT_LT] = ACTIONS(1897), - [anon_sym_GT_GT] = ACTIONS(1899), - [anon_sym_GT_GT_GT] = ACTIONS(1897), - [anon_sym_AMP_CARET] = ACTIONS(1897), - [anon_sym_AMP_AMP] = ACTIONS(1897), - [anon_sym_PIPE_PIPE] = ACTIONS(1897), - [anon_sym_or] = ACTIONS(1899), - [sym_none] = ACTIONS(1899), - [sym_true] = ACTIONS(1899), - [sym_false] = ACTIONS(1899), - [sym_nil] = ACTIONS(1899), - [anon_sym_QMARK_DOT] = ACTIONS(1897), - [anon_sym_POUND_LBRACK] = ACTIONS(1897), - [anon_sym_if] = ACTIONS(1899), - [anon_sym_DOLLARif] = ACTIONS(1899), - [anon_sym_DOLLARelse] = ACTIONS(3901), - [anon_sym_is] = ACTIONS(1899), - [anon_sym_BANGis] = ACTIONS(1897), - [anon_sym_in] = ACTIONS(1899), - [anon_sym_BANGin] = ACTIONS(1897), - [anon_sym_match] = ACTIONS(1899), - [anon_sym_select] = ACTIONS(1899), - [anon_sym_lock] = ACTIONS(1899), - [anon_sym_rlock] = ACTIONS(1899), - [anon_sym_unsafe] = ACTIONS(1899), - [anon_sym_sql] = ACTIONS(1899), - [sym_int_literal] = ACTIONS(1899), - [sym_float_literal] = ACTIONS(1897), - [sym_rune_literal] = ACTIONS(1897), - [sym_pseudo_compile_time_identifier] = ACTIONS(1899), - [anon_sym_shared] = ACTIONS(1899), - [anon_sym_map_LBRACK] = ACTIONS(1897), - [anon_sym_chan] = ACTIONS(1899), - [anon_sym_thread] = ACTIONS(1899), - [anon_sym_atomic] = ACTIONS(1899), - [sym___double_quote] = ACTIONS(1897), - [sym___single_quote] = ACTIONS(1897), - [sym___c_double_quote] = ACTIONS(1897), - [sym___c_single_quote] = ACTIONS(1897), - [sym___r_double_quote] = ACTIONS(1897), - [sym___r_single_quote] = ACTIONS(1897), + [anon_sym_DOT] = ACTIONS(3821), + [anon_sym_as] = ACTIONS(1765), + [anon_sym_LBRACE] = ACTIONS(1763), + [anon_sym_RBRACE] = ACTIONS(1763), + [anon_sym_LPAREN] = ACTIONS(3823), + [anon_sym_PIPE] = ACTIONS(3845), + [anon_sym_fn] = ACTIONS(1765), + [anon_sym_PLUS] = ACTIONS(3845), + [anon_sym_DASH] = ACTIONS(3845), + [anon_sym_STAR] = ACTIONS(3847), + [anon_sym_SLASH] = ACTIONS(3849), + [anon_sym_PERCENT] = ACTIONS(3847), + [anon_sym_LT] = ACTIONS(1765), + [anon_sym_GT] = ACTIONS(1765), + [anon_sym_EQ_EQ] = ACTIONS(1763), + [anon_sym_BANG_EQ] = ACTIONS(1763), + [anon_sym_LT_EQ] = ACTIONS(1763), + [anon_sym_GT_EQ] = ACTIONS(1763), + [anon_sym_LBRACK] = ACTIONS(3825), + [anon_sym_struct] = ACTIONS(1765), + [anon_sym_mut] = ACTIONS(1765), + [anon_sym_COLON] = ACTIONS(1763), + [anon_sym_PLUS_PLUS] = ACTIONS(1763), + [anon_sym_DASH_DASH] = ACTIONS(1763), + [anon_sym_QMARK] = ACTIONS(3827), + [anon_sym_BANG] = ACTIONS(3829), + [anon_sym_go] = ACTIONS(1765), + [anon_sym_spawn] = ACTIONS(1765), + [anon_sym_json_DOTdecode] = ACTIONS(1763), + [anon_sym_LBRACK2] = ACTIONS(3831), + [anon_sym_TILDE] = ACTIONS(1763), + [anon_sym_CARET] = ACTIONS(3861), + [anon_sym_AMP] = ACTIONS(3849), + [anon_sym_LT_DASH] = ACTIONS(1763), + [anon_sym_LT_LT] = ACTIONS(3847), + [anon_sym_GT_GT] = ACTIONS(3849), + [anon_sym_GT_GT_GT] = ACTIONS(3847), + [anon_sym_AMP_CARET] = ACTIONS(3847), + [anon_sym_AMP_AMP] = ACTIONS(1763), + [anon_sym_PIPE_PIPE] = ACTIONS(1763), + [anon_sym_or] = ACTIONS(1765), + [sym_none] = ACTIONS(1765), + [sym_true] = ACTIONS(1765), + [sym_false] = ACTIONS(1765), + [sym_nil] = ACTIONS(1765), + [anon_sym_QMARK_DOT] = ACTIONS(3833), + [anon_sym_POUND_LBRACK] = ACTIONS(3835), + [anon_sym_if] = ACTIONS(1765), + [anon_sym_DOLLARif] = ACTIONS(1765), + [anon_sym_is] = ACTIONS(1765), + [anon_sym_BANGis] = ACTIONS(1763), + [anon_sym_in] = ACTIONS(1765), + [anon_sym_BANGin] = ACTIONS(1763), + [anon_sym_match] = ACTIONS(1765), + [anon_sym_select] = ACTIONS(1765), + [anon_sym_lock] = ACTIONS(1765), + [anon_sym_rlock] = ACTIONS(1765), + [anon_sym_unsafe] = ACTIONS(1765), + [anon_sym_sql] = ACTIONS(1765), + [sym_int_literal] = ACTIONS(1765), + [sym_float_literal] = ACTIONS(1763), + [sym_rune_literal] = ACTIONS(1763), + [sym_pseudo_compile_time_identifier] = ACTIONS(1765), + [anon_sym_shared] = ACTIONS(1765), + [anon_sym_map_LBRACK] = ACTIONS(1763), + [anon_sym_chan] = ACTIONS(1765), + [anon_sym_thread] = ACTIONS(1765), + [anon_sym_atomic] = ACTIONS(1765), + [sym___double_quote] = ACTIONS(1763), + [sym___single_quote] = ACTIONS(1763), + [sym___c_double_quote] = ACTIONS(1763), + [sym___c_single_quote] = ACTIONS(1763), + [sym___r_double_quote] = ACTIONS(1763), + [sym___r_single_quote] = ACTIONS(1763), }, [1288] = { [sym_line_comment] = STATE(1288), [sym_block_comment] = STATE(1288), - [sym_identifier] = ACTIONS(1845), + [sym_type_parameters] = STATE(1327), + [sym_identifier] = ACTIONS(1881), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1845), - [anon_sym_as] = ACTIONS(1845), - [anon_sym_LBRACE] = ACTIONS(1843), - [anon_sym_COMMA] = ACTIONS(1843), - [anon_sym_RBRACE] = ACTIONS(1843), - [anon_sym_LPAREN] = ACTIONS(1843), - [anon_sym_PIPE] = ACTIONS(1845), - [anon_sym_fn] = ACTIONS(1845), - [anon_sym_PLUS] = ACTIONS(1845), - [anon_sym_DASH] = ACTIONS(1845), - [anon_sym_STAR] = ACTIONS(1843), - [anon_sym_SLASH] = ACTIONS(1845), - [anon_sym_PERCENT] = ACTIONS(1843), - [anon_sym_LT] = ACTIONS(1845), - [anon_sym_GT] = ACTIONS(1845), - [anon_sym_EQ_EQ] = ACTIONS(1843), - [anon_sym_BANG_EQ] = ACTIONS(1843), - [anon_sym_LT_EQ] = ACTIONS(1843), - [anon_sym_GT_EQ] = ACTIONS(1843), - [anon_sym_LBRACK] = ACTIONS(1843), - [anon_sym_RBRACK] = ACTIONS(1843), - [anon_sym_struct] = ACTIONS(1845), - [anon_sym_mut] = ACTIONS(1845), - [anon_sym_COLON] = ACTIONS(1843), - [anon_sym_PLUS_PLUS] = ACTIONS(1843), - [anon_sym_DASH_DASH] = ACTIONS(1843), - [anon_sym_QMARK] = ACTIONS(1845), - [anon_sym_BANG] = ACTIONS(1845), - [anon_sym_go] = ACTIONS(1845), - [anon_sym_spawn] = ACTIONS(1845), - [anon_sym_json_DOTdecode] = ACTIONS(1843), - [anon_sym_LBRACK2] = ACTIONS(1845), - [anon_sym_TILDE] = ACTIONS(1843), - [anon_sym_CARET] = ACTIONS(1843), - [anon_sym_AMP] = ACTIONS(1845), - [anon_sym_LT_DASH] = ACTIONS(1843), - [anon_sym_LT_LT] = ACTIONS(1843), - [anon_sym_GT_GT] = ACTIONS(1845), - [anon_sym_GT_GT_GT] = ACTIONS(1843), - [anon_sym_AMP_CARET] = ACTIONS(1843), - [anon_sym_AMP_AMP] = ACTIONS(1843), - [anon_sym_PIPE_PIPE] = ACTIONS(1843), - [anon_sym_or] = ACTIONS(1845), - [sym_none] = ACTIONS(1845), - [sym_true] = ACTIONS(1845), - [sym_false] = ACTIONS(1845), - [sym_nil] = ACTIONS(1845), - [anon_sym_QMARK_DOT] = ACTIONS(1843), - [anon_sym_POUND_LBRACK] = ACTIONS(1843), - [anon_sym_if] = ACTIONS(1845), - [anon_sym_else] = ACTIONS(1845), - [anon_sym_DOLLARif] = ACTIONS(1845), - [anon_sym_is] = ACTIONS(1845), - [anon_sym_BANGis] = ACTIONS(1843), - [anon_sym_in] = ACTIONS(1845), - [anon_sym_BANGin] = ACTIONS(1843), - [anon_sym_match] = ACTIONS(1845), - [anon_sym_select] = ACTIONS(1845), - [anon_sym_lock] = ACTIONS(1845), - [anon_sym_rlock] = ACTIONS(1845), - [anon_sym_unsafe] = ACTIONS(1845), - [anon_sym_sql] = ACTIONS(1845), - [sym_int_literal] = ACTIONS(1845), - [sym_float_literal] = ACTIONS(1843), - [sym_rune_literal] = ACTIONS(1843), - [sym_pseudo_compile_time_identifier] = ACTIONS(1845), - [anon_sym_shared] = ACTIONS(1845), - [anon_sym_map_LBRACK] = ACTIONS(1843), - [anon_sym_chan] = ACTIONS(1845), - [anon_sym_thread] = ACTIONS(1845), - [anon_sym_atomic] = ACTIONS(1845), - [sym___double_quote] = ACTIONS(1843), - [sym___single_quote] = ACTIONS(1843), - [sym___c_double_quote] = ACTIONS(1843), - [sym___c_single_quote] = ACTIONS(1843), - [sym___r_double_quote] = ACTIONS(1843), - [sym___r_single_quote] = ACTIONS(1843), + [anon_sym_DOT] = ACTIONS(1881), + [anon_sym_as] = ACTIONS(1881), + [anon_sym_LBRACE] = ACTIONS(1879), + [anon_sym_COMMA] = ACTIONS(1879), + [anon_sym_RBRACE] = ACTIONS(1879), + [anon_sym_LPAREN] = ACTIONS(1879), + [anon_sym_PIPE] = ACTIONS(1881), + [anon_sym_fn] = ACTIONS(1881), + [anon_sym_PLUS] = ACTIONS(1881), + [anon_sym_DASH] = ACTIONS(1881), + [anon_sym_STAR] = ACTIONS(1879), + [anon_sym_SLASH] = ACTIONS(1881), + [anon_sym_PERCENT] = ACTIONS(1879), + [anon_sym_LT] = ACTIONS(1881), + [anon_sym_GT] = ACTIONS(1881), + [anon_sym_EQ_EQ] = ACTIONS(1879), + [anon_sym_BANG_EQ] = ACTIONS(1879), + [anon_sym_LT_EQ] = ACTIONS(1879), + [anon_sym_GT_EQ] = ACTIONS(1879), + [anon_sym_LBRACK] = ACTIONS(1879), + [anon_sym_RBRACK] = ACTIONS(1879), + [anon_sym_struct] = ACTIONS(1881), + [anon_sym_mut] = ACTIONS(1881), + [anon_sym_COLON] = ACTIONS(1879), + [anon_sym_PLUS_PLUS] = ACTIONS(1879), + [anon_sym_DASH_DASH] = ACTIONS(1879), + [anon_sym_QMARK] = ACTIONS(1881), + [anon_sym_BANG] = ACTIONS(1881), + [anon_sym_go] = ACTIONS(1881), + [anon_sym_spawn] = ACTIONS(1881), + [anon_sym_json_DOTdecode] = ACTIONS(1879), + [anon_sym_LBRACK2] = ACTIONS(1881), + [anon_sym_TILDE] = ACTIONS(1879), + [anon_sym_CARET] = ACTIONS(1879), + [anon_sym_AMP] = ACTIONS(1881), + [anon_sym_LT_DASH] = ACTIONS(1879), + [anon_sym_LT_LT] = ACTIONS(1879), + [anon_sym_GT_GT] = ACTIONS(1881), + [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(1881), + [sym_none] = ACTIONS(1881), + [sym_true] = ACTIONS(1881), + [sym_false] = ACTIONS(1881), + [sym_nil] = ACTIONS(1881), + [anon_sym_QMARK_DOT] = ACTIONS(1879), + [anon_sym_POUND_LBRACK] = ACTIONS(1879), + [anon_sym_if] = ACTIONS(1881), + [anon_sym_DOLLARif] = ACTIONS(1881), + [anon_sym_is] = ACTIONS(1881), + [anon_sym_BANGis] = ACTIONS(1879), + [anon_sym_in] = ACTIONS(1881), + [anon_sym_BANGin] = ACTIONS(1879), + [anon_sym_match] = ACTIONS(1881), + [anon_sym_select] = ACTIONS(1881), + [anon_sym_lock] = ACTIONS(1881), + [anon_sym_rlock] = ACTIONS(1881), + [anon_sym_unsafe] = ACTIONS(1881), + [anon_sym_sql] = ACTIONS(1881), + [sym_int_literal] = ACTIONS(1881), + [sym_float_literal] = ACTIONS(1879), + [sym_rune_literal] = ACTIONS(1879), + [sym_pseudo_compile_time_identifier] = ACTIONS(1881), + [anon_sym_shared] = ACTIONS(1881), + [anon_sym_map_LBRACK] = ACTIONS(1879), + [anon_sym_chan] = ACTIONS(1881), + [anon_sym_thread] = ACTIONS(1881), + [anon_sym_atomic] = ACTIONS(1881), + [sym___double_quote] = ACTIONS(1879), + [sym___single_quote] = ACTIONS(1879), + [sym___c_double_quote] = ACTIONS(1879), + [sym___c_single_quote] = ACTIONS(1879), + [sym___r_double_quote] = ACTIONS(1879), + [sym___r_single_quote] = ACTIONS(1879), }, [1289] = { [sym_line_comment] = STATE(1289), [sym_block_comment] = STATE(1289), - [sym_identifier] = ACTIONS(1917), + [sym_type_parameters] = STATE(4093), + [sym_argument_list] = STATE(1361), + [sym_or_block] = STATE(1362), + [sym_identifier] = ACTIONS(1765), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1917), - [anon_sym_as] = ACTIONS(1917), - [anon_sym_LBRACE] = ACTIONS(1915), - [anon_sym_COMMA] = ACTIONS(1915), - [anon_sym_RBRACE] = ACTIONS(1915), - [anon_sym_LPAREN] = ACTIONS(1915), - [anon_sym_PIPE] = ACTIONS(1917), - [anon_sym_fn] = ACTIONS(1917), - [anon_sym_PLUS] = ACTIONS(1917), - [anon_sym_DASH] = ACTIONS(1917), - [anon_sym_STAR] = ACTIONS(1915), - [anon_sym_SLASH] = ACTIONS(1917), - [anon_sym_PERCENT] = ACTIONS(1915), - [anon_sym_LT] = ACTIONS(1917), - [anon_sym_GT] = ACTIONS(1917), - [anon_sym_EQ_EQ] = ACTIONS(1915), - [anon_sym_BANG_EQ] = ACTIONS(1915), - [anon_sym_LT_EQ] = ACTIONS(1915), - [anon_sym_GT_EQ] = ACTIONS(1915), - [anon_sym_LBRACK] = ACTIONS(1915), - [anon_sym_RBRACK] = ACTIONS(1915), - [anon_sym_struct] = ACTIONS(1917), - [anon_sym_mut] = ACTIONS(1917), - [anon_sym_COLON] = ACTIONS(1915), - [anon_sym_PLUS_PLUS] = ACTIONS(1915), - [anon_sym_DASH_DASH] = ACTIONS(1915), - [anon_sym_QMARK] = ACTIONS(1917), - [anon_sym_BANG] = ACTIONS(1917), - [anon_sym_go] = ACTIONS(1917), - [anon_sym_spawn] = ACTIONS(1917), - [anon_sym_json_DOTdecode] = ACTIONS(1915), - [anon_sym_LBRACK2] = ACTIONS(1917), - [anon_sym_TILDE] = ACTIONS(1915), - [anon_sym_CARET] = ACTIONS(1915), - [anon_sym_AMP] = ACTIONS(1917), - [anon_sym_LT_DASH] = ACTIONS(1915), - [anon_sym_LT_LT] = ACTIONS(1915), - [anon_sym_GT_GT] = ACTIONS(1917), - [anon_sym_GT_GT_GT] = ACTIONS(1915), - [anon_sym_AMP_CARET] = ACTIONS(1915), - [anon_sym_AMP_AMP] = ACTIONS(1915), - [anon_sym_PIPE_PIPE] = ACTIONS(1915), - [anon_sym_or] = ACTIONS(1917), - [sym_none] = ACTIONS(1917), - [sym_true] = ACTIONS(1917), - [sym_false] = ACTIONS(1917), - [sym_nil] = ACTIONS(1917), - [anon_sym_QMARK_DOT] = ACTIONS(1915), - [anon_sym_POUND_LBRACK] = ACTIONS(1915), - [anon_sym_if] = ACTIONS(1917), - [anon_sym_DOLLARif] = ACTIONS(1917), - [anon_sym_DOLLARelse] = ACTIONS(1917), - [anon_sym_is] = ACTIONS(1917), - [anon_sym_BANGis] = ACTIONS(1915), - [anon_sym_in] = ACTIONS(1917), - [anon_sym_BANGin] = ACTIONS(1915), - [anon_sym_match] = ACTIONS(1917), - [anon_sym_select] = ACTIONS(1917), - [anon_sym_lock] = ACTIONS(1917), - [anon_sym_rlock] = ACTIONS(1917), - [anon_sym_unsafe] = ACTIONS(1917), - [anon_sym_sql] = ACTIONS(1917), - [sym_int_literal] = ACTIONS(1917), - [sym_float_literal] = ACTIONS(1915), - [sym_rune_literal] = ACTIONS(1915), - [sym_pseudo_compile_time_identifier] = ACTIONS(1917), - [anon_sym_shared] = ACTIONS(1917), - [anon_sym_map_LBRACK] = ACTIONS(1915), - [anon_sym_chan] = ACTIONS(1917), - [anon_sym_thread] = ACTIONS(1917), - [anon_sym_atomic] = ACTIONS(1917), - [sym___double_quote] = ACTIONS(1915), - [sym___single_quote] = ACTIONS(1915), - [sym___c_double_quote] = ACTIONS(1915), - [sym___c_single_quote] = ACTIONS(1915), - [sym___r_double_quote] = ACTIONS(1915), - [sym___r_single_quote] = ACTIONS(1915), + [anon_sym_DOT] = ACTIONS(3821), + [anon_sym_as] = ACTIONS(1765), + [anon_sym_LBRACE] = ACTIONS(1763), + [anon_sym_RBRACE] = ACTIONS(1763), + [anon_sym_LPAREN] = ACTIONS(3823), + [anon_sym_PIPE] = ACTIONS(3845), + [anon_sym_fn] = ACTIONS(1765), + [anon_sym_PLUS] = ACTIONS(3845), + [anon_sym_DASH] = ACTIONS(3845), + [anon_sym_STAR] = ACTIONS(3847), + [anon_sym_SLASH] = ACTIONS(3849), + [anon_sym_PERCENT] = ACTIONS(3847), + [anon_sym_LT] = ACTIONS(3851), + [anon_sym_GT] = ACTIONS(3851), + [anon_sym_EQ_EQ] = ACTIONS(3853), + [anon_sym_BANG_EQ] = ACTIONS(3853), + [anon_sym_LT_EQ] = ACTIONS(3853), + [anon_sym_GT_EQ] = ACTIONS(3853), + [anon_sym_LBRACK] = ACTIONS(3825), + [anon_sym_struct] = ACTIONS(1765), + [anon_sym_mut] = ACTIONS(1765), + [anon_sym_COLON] = ACTIONS(1763), + [anon_sym_PLUS_PLUS] = ACTIONS(1763), + [anon_sym_DASH_DASH] = ACTIONS(1763), + [anon_sym_QMARK] = ACTIONS(3827), + [anon_sym_BANG] = ACTIONS(3829), + [anon_sym_go] = ACTIONS(1765), + [anon_sym_spawn] = ACTIONS(1765), + [anon_sym_json_DOTdecode] = ACTIONS(1763), + [anon_sym_LBRACK2] = ACTIONS(3831), + [anon_sym_TILDE] = ACTIONS(1763), + [anon_sym_CARET] = ACTIONS(3861), + [anon_sym_AMP] = ACTIONS(3849), + [anon_sym_LT_DASH] = ACTIONS(1763), + [anon_sym_LT_LT] = ACTIONS(3847), + [anon_sym_GT_GT] = ACTIONS(3849), + [anon_sym_GT_GT_GT] = ACTIONS(3847), + [anon_sym_AMP_CARET] = ACTIONS(3847), + [anon_sym_AMP_AMP] = ACTIONS(3863), + [anon_sym_PIPE_PIPE] = ACTIONS(1763), + [anon_sym_or] = ACTIONS(1765), + [sym_none] = ACTIONS(1765), + [sym_true] = ACTIONS(1765), + [sym_false] = ACTIONS(1765), + [sym_nil] = ACTIONS(1765), + [anon_sym_QMARK_DOT] = ACTIONS(3833), + [anon_sym_POUND_LBRACK] = ACTIONS(3835), + [anon_sym_if] = ACTIONS(1765), + [anon_sym_DOLLARif] = ACTIONS(1765), + [anon_sym_is] = ACTIONS(1765), + [anon_sym_BANGis] = ACTIONS(1763), + [anon_sym_in] = ACTIONS(3873), + [anon_sym_BANGin] = ACTIONS(3875), + [anon_sym_match] = ACTIONS(1765), + [anon_sym_select] = ACTIONS(1765), + [anon_sym_lock] = ACTIONS(1765), + [anon_sym_rlock] = ACTIONS(1765), + [anon_sym_unsafe] = ACTIONS(1765), + [anon_sym_sql] = ACTIONS(1765), + [sym_int_literal] = ACTIONS(1765), + [sym_float_literal] = ACTIONS(1763), + [sym_rune_literal] = ACTIONS(1763), + [sym_pseudo_compile_time_identifier] = ACTIONS(1765), + [anon_sym_shared] = ACTIONS(1765), + [anon_sym_map_LBRACK] = ACTIONS(1763), + [anon_sym_chan] = ACTIONS(1765), + [anon_sym_thread] = ACTIONS(1765), + [anon_sym_atomic] = ACTIONS(1765), + [sym___double_quote] = ACTIONS(1763), + [sym___single_quote] = ACTIONS(1763), + [sym___c_double_quote] = ACTIONS(1763), + [sym___c_single_quote] = ACTIONS(1763), + [sym___r_double_quote] = ACTIONS(1763), + [sym___r_single_quote] = ACTIONS(1763), }, [1290] = { [sym_line_comment] = STATE(1290), [sym_block_comment] = STATE(1290), - [sym_type_parameters] = STATE(4073), - [sym_argument_list] = STATE(1358), - [sym_or_block] = STATE(1359), + [sym_type_parameters] = STATE(4093), + [sym_argument_list] = STATE(1361), + [sym_or_block] = STATE(1362), [sym_identifier] = ACTIONS(1773), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(3815), - [anon_sym_as] = ACTIONS(3835), + [anon_sym_DOT] = ACTIONS(3821), + [anon_sym_as] = ACTIONS(3841), [anon_sym_LBRACE] = ACTIONS(1771), [anon_sym_RBRACE] = ACTIONS(1771), - [anon_sym_LPAREN] = ACTIONS(3817), - [anon_sym_PIPE] = ACTIONS(3839), + [anon_sym_LPAREN] = ACTIONS(3823), + [anon_sym_PIPE] = ACTIONS(3845), [anon_sym_fn] = ACTIONS(1773), - [anon_sym_PLUS] = ACTIONS(3839), - [anon_sym_DASH] = ACTIONS(3839), - [anon_sym_STAR] = ACTIONS(3841), - [anon_sym_SLASH] = ACTIONS(3843), - [anon_sym_PERCENT] = ACTIONS(3841), - [anon_sym_LT] = ACTIONS(3845), - [anon_sym_GT] = ACTIONS(3845), - [anon_sym_EQ_EQ] = ACTIONS(3847), - [anon_sym_BANG_EQ] = ACTIONS(3847), - [anon_sym_LT_EQ] = ACTIONS(3847), - [anon_sym_GT_EQ] = ACTIONS(3847), - [anon_sym_LBRACK] = ACTIONS(3819), + [anon_sym_PLUS] = ACTIONS(3845), + [anon_sym_DASH] = ACTIONS(3845), + [anon_sym_STAR] = ACTIONS(3847), + [anon_sym_SLASH] = ACTIONS(3849), + [anon_sym_PERCENT] = ACTIONS(3847), + [anon_sym_LT] = ACTIONS(3851), + [anon_sym_GT] = ACTIONS(3851), + [anon_sym_EQ_EQ] = ACTIONS(3853), + [anon_sym_BANG_EQ] = ACTIONS(3853), + [anon_sym_LT_EQ] = ACTIONS(3853), + [anon_sym_GT_EQ] = ACTIONS(3853), + [anon_sym_LBRACK] = ACTIONS(3825), [anon_sym_struct] = ACTIONS(1773), [anon_sym_mut] = ACTIONS(1773), [anon_sym_COLON] = ACTIONS(1771), - [anon_sym_PLUS_PLUS] = ACTIONS(3851), - [anon_sym_DASH_DASH] = ACTIONS(3853), - [anon_sym_QMARK] = ACTIONS(3821), - [anon_sym_BANG] = ACTIONS(3823), + [anon_sym_PLUS_PLUS] = ACTIONS(3857), + [anon_sym_DASH_DASH] = ACTIONS(3859), + [anon_sym_QMARK] = ACTIONS(3827), + [anon_sym_BANG] = ACTIONS(3829), [anon_sym_go] = ACTIONS(1773), [anon_sym_spawn] = ACTIONS(1773), [anon_sym_json_DOTdecode] = ACTIONS(1771), - [anon_sym_LBRACK2] = ACTIONS(3825), + [anon_sym_LBRACK2] = ACTIONS(3831), [anon_sym_TILDE] = ACTIONS(1771), - [anon_sym_CARET] = ACTIONS(3855), - [anon_sym_AMP] = ACTIONS(3843), + [anon_sym_CARET] = ACTIONS(3861), + [anon_sym_AMP] = ACTIONS(3849), [anon_sym_LT_DASH] = ACTIONS(1771), - [anon_sym_LT_LT] = ACTIONS(3841), - [anon_sym_GT_GT] = ACTIONS(3843), - [anon_sym_GT_GT_GT] = ACTIONS(3841), - [anon_sym_AMP_CARET] = ACTIONS(3841), - [anon_sym_AMP_AMP] = ACTIONS(3857), - [anon_sym_PIPE_PIPE] = ACTIONS(3859), - [anon_sym_or] = ACTIONS(3861), + [anon_sym_LT_LT] = ACTIONS(3847), + [anon_sym_GT_GT] = ACTIONS(3849), + [anon_sym_GT_GT_GT] = ACTIONS(3847), + [anon_sym_AMP_CARET] = ACTIONS(3847), + [anon_sym_AMP_AMP] = ACTIONS(3863), + [anon_sym_PIPE_PIPE] = ACTIONS(3865), + [anon_sym_or] = ACTIONS(3867), [sym_none] = ACTIONS(1773), [sym_true] = ACTIONS(1773), [sym_false] = ACTIONS(1773), [sym_nil] = ACTIONS(1773), - [anon_sym_QMARK_DOT] = ACTIONS(3827), - [anon_sym_POUND_LBRACK] = ACTIONS(3829), + [anon_sym_QMARK_DOT] = ACTIONS(3833), + [anon_sym_POUND_LBRACK] = ACTIONS(3835), [anon_sym_if] = ACTIONS(1773), [anon_sym_DOLLARif] = ACTIONS(1773), - [anon_sym_is] = ACTIONS(3863), - [anon_sym_BANGis] = ACTIONS(3865), - [anon_sym_in] = ACTIONS(3867), - [anon_sym_BANGin] = ACTIONS(3869), + [anon_sym_is] = ACTIONS(3869), + [anon_sym_BANGis] = ACTIONS(3871), + [anon_sym_in] = ACTIONS(3873), + [anon_sym_BANGin] = ACTIONS(3875), [anon_sym_match] = ACTIONS(1773), [anon_sym_select] = ACTIONS(1773), [anon_sym_lock] = ACTIONS(1773), @@ -164108,1916 +164158,2083 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [1291] = { [sym_line_comment] = STATE(1291), [sym_block_comment] = STATE(1291), - [sym_identifier] = ACTIONS(1917), + [sym_identifier] = ACTIONS(2880), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1917), - [anon_sym_as] = ACTIONS(1917), - [anon_sym_LBRACE] = ACTIONS(1915), - [anon_sym_COMMA] = ACTIONS(1915), - [anon_sym_RBRACE] = ACTIONS(1915), - [anon_sym_LPAREN] = ACTIONS(1915), - [anon_sym_PIPE] = ACTIONS(1917), - [anon_sym_fn] = ACTIONS(1917), - [anon_sym_PLUS] = ACTIONS(1917), - [anon_sym_DASH] = ACTIONS(1917), - [anon_sym_STAR] = ACTIONS(1915), - [anon_sym_SLASH] = ACTIONS(1917), - [anon_sym_PERCENT] = ACTIONS(1915), - [anon_sym_LT] = ACTIONS(1917), - [anon_sym_GT] = ACTIONS(1917), - [anon_sym_EQ_EQ] = ACTIONS(1915), - [anon_sym_BANG_EQ] = ACTIONS(1915), - [anon_sym_LT_EQ] = ACTIONS(1915), - [anon_sym_GT_EQ] = ACTIONS(1915), - [anon_sym_LBRACK] = ACTIONS(1915), - [anon_sym_RBRACK] = ACTIONS(1915), - [anon_sym_struct] = ACTIONS(1917), - [anon_sym_mut] = ACTIONS(1917), - [anon_sym_COLON] = ACTIONS(1915), - [anon_sym_PLUS_PLUS] = ACTIONS(1915), - [anon_sym_DASH_DASH] = ACTIONS(1915), - [anon_sym_QMARK] = ACTIONS(1917), - [anon_sym_BANG] = ACTIONS(1917), - [anon_sym_go] = ACTIONS(1917), - [anon_sym_spawn] = ACTIONS(1917), - [anon_sym_json_DOTdecode] = ACTIONS(1915), - [anon_sym_LBRACK2] = ACTIONS(1917), - [anon_sym_TILDE] = ACTIONS(1915), - [anon_sym_CARET] = ACTIONS(1915), - [anon_sym_AMP] = ACTIONS(1917), - [anon_sym_LT_DASH] = ACTIONS(1915), - [anon_sym_LT_LT] = ACTIONS(1915), - [anon_sym_GT_GT] = ACTIONS(1917), - [anon_sym_GT_GT_GT] = ACTIONS(1915), - [anon_sym_AMP_CARET] = ACTIONS(1915), - [anon_sym_AMP_AMP] = ACTIONS(1915), - [anon_sym_PIPE_PIPE] = ACTIONS(1915), - [anon_sym_or] = ACTIONS(1917), - [sym_none] = ACTIONS(1917), - [sym_true] = ACTIONS(1917), - [sym_false] = ACTIONS(1917), - [sym_nil] = ACTIONS(1917), - [anon_sym_QMARK_DOT] = ACTIONS(1915), - [anon_sym_POUND_LBRACK] = ACTIONS(1915), - [anon_sym_if] = ACTIONS(1917), - [anon_sym_else] = ACTIONS(1917), - [anon_sym_DOLLARif] = ACTIONS(1917), - [anon_sym_is] = ACTIONS(1917), - [anon_sym_BANGis] = ACTIONS(1915), - [anon_sym_in] = ACTIONS(1917), - [anon_sym_BANGin] = ACTIONS(1915), - [anon_sym_match] = ACTIONS(1917), - [anon_sym_select] = ACTIONS(1917), - [anon_sym_lock] = ACTIONS(1917), - [anon_sym_rlock] = ACTIONS(1917), - [anon_sym_unsafe] = ACTIONS(1917), - [anon_sym_sql] = ACTIONS(1917), - [sym_int_literal] = ACTIONS(1917), - [sym_float_literal] = ACTIONS(1915), - [sym_rune_literal] = ACTIONS(1915), - [sym_pseudo_compile_time_identifier] = ACTIONS(1917), - [anon_sym_shared] = ACTIONS(1917), - [anon_sym_map_LBRACK] = ACTIONS(1915), - [anon_sym_chan] = ACTIONS(1917), - [anon_sym_thread] = ACTIONS(1917), - [anon_sym_atomic] = ACTIONS(1917), - [sym___double_quote] = ACTIONS(1915), - [sym___single_quote] = ACTIONS(1915), - [sym___c_double_quote] = ACTIONS(1915), - [sym___c_single_quote] = ACTIONS(1915), - [sym___r_double_quote] = ACTIONS(1915), - [sym___r_single_quote] = ACTIONS(1915), + [anon_sym_SEMI] = ACTIONS(2878), + [anon_sym_DOT] = ACTIONS(2880), + [anon_sym_as] = ACTIONS(2880), + [anon_sym_LBRACE] = ACTIONS(2878), + [anon_sym_COMMA] = ACTIONS(2878), + [anon_sym_RBRACE] = ACTIONS(2878), + [anon_sym_LPAREN] = ACTIONS(2878), + [anon_sym_PIPE] = ACTIONS(2880), + [anon_sym_fn] = ACTIONS(2880), + [anon_sym_PLUS] = ACTIONS(2880), + [anon_sym_DASH] = ACTIONS(2880), + [anon_sym_STAR] = ACTIONS(2878), + [anon_sym_SLASH] = ACTIONS(2880), + [anon_sym_PERCENT] = ACTIONS(2878), + [anon_sym_LT] = ACTIONS(2880), + [anon_sym_GT] = ACTIONS(2880), + [anon_sym_EQ_EQ] = ACTIONS(2878), + [anon_sym_BANG_EQ] = ACTIONS(2878), + [anon_sym_LT_EQ] = ACTIONS(2878), + [anon_sym_GT_EQ] = ACTIONS(2878), + [anon_sym_LBRACK] = ACTIONS(2878), + [anon_sym_RBRACK] = ACTIONS(2878), + [anon_sym_struct] = ACTIONS(2880), + [anon_sym_mut] = ACTIONS(2880), + [anon_sym_COLON] = ACTIONS(2878), + [anon_sym_PLUS_PLUS] = ACTIONS(2878), + [anon_sym_DASH_DASH] = ACTIONS(2878), + [anon_sym_QMARK] = ACTIONS(2880), + [anon_sym_BANG] = ACTIONS(2880), + [anon_sym_go] = ACTIONS(2880), + [anon_sym_spawn] = ACTIONS(2880), + [anon_sym_json_DOTdecode] = ACTIONS(2878), + [anon_sym_LBRACK2] = ACTIONS(2880), + [anon_sym_TILDE] = ACTIONS(2878), + [anon_sym_CARET] = ACTIONS(2878), + [anon_sym_AMP] = ACTIONS(2880), + [anon_sym_LT_DASH] = ACTIONS(2878), + [anon_sym_LT_LT] = ACTIONS(2878), + [anon_sym_GT_GT] = ACTIONS(2880), + [anon_sym_GT_GT_GT] = ACTIONS(2878), + [anon_sym_AMP_CARET] = ACTIONS(2878), + [anon_sym_AMP_AMP] = ACTIONS(2878), + [anon_sym_PIPE_PIPE] = ACTIONS(2878), + [anon_sym_or] = ACTIONS(2880), + [sym_none] = ACTIONS(2880), + [sym_true] = ACTIONS(2880), + [sym_false] = ACTIONS(2880), + [sym_nil] = ACTIONS(2880), + [anon_sym_QMARK_DOT] = ACTIONS(2878), + [anon_sym_POUND_LBRACK] = ACTIONS(2878), + [anon_sym_if] = ACTIONS(2880), + [anon_sym_DOLLARif] = ACTIONS(2880), + [anon_sym_is] = ACTIONS(2880), + [anon_sym_BANGis] = ACTIONS(2878), + [anon_sym_in] = ACTIONS(2880), + [anon_sym_BANGin] = ACTIONS(2878), + [anon_sym_match] = ACTIONS(2880), + [anon_sym_select] = ACTIONS(2880), + [anon_sym_lock] = ACTIONS(2880), + [anon_sym_rlock] = ACTIONS(2880), + [anon_sym_unsafe] = ACTIONS(2880), + [anon_sym_sql] = ACTIONS(2880), + [sym_int_literal] = ACTIONS(2880), + [sym_float_literal] = ACTIONS(2878), + [sym_rune_literal] = ACTIONS(2878), + [sym_pseudo_compile_time_identifier] = ACTIONS(2880), + [anon_sym_shared] = ACTIONS(2880), + [anon_sym_map_LBRACK] = ACTIONS(2878), + [anon_sym_chan] = ACTIONS(2880), + [anon_sym_thread] = ACTIONS(2880), + [anon_sym_atomic] = ACTIONS(2880), + [sym___double_quote] = ACTIONS(2878), + [sym___single_quote] = ACTIONS(2878), + [sym___c_double_quote] = ACTIONS(2878), + [sym___c_single_quote] = ACTIONS(2878), + [sym___r_double_quote] = ACTIONS(2878), + [sym___r_single_quote] = ACTIONS(2878), }, [1292] = { [sym_line_comment] = STATE(1292), [sym_block_comment] = STATE(1292), - [sym_identifier] = ACTIONS(2305), + [sym_identifier] = ACTIONS(1889), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(2305), - [anon_sym_as] = ACTIONS(2305), - [anon_sym_LBRACE] = ACTIONS(2303), - [anon_sym_COMMA] = ACTIONS(2303), - [anon_sym_RBRACE] = ACTIONS(2303), - [anon_sym_LPAREN] = ACTIONS(2303), - [anon_sym_PIPE] = ACTIONS(2305), - [anon_sym_fn] = ACTIONS(2305), - [anon_sym_PLUS] = ACTIONS(2305), - [anon_sym_DASH] = ACTIONS(2305), - [anon_sym_STAR] = ACTIONS(2303), - [anon_sym_SLASH] = ACTIONS(2305), - [anon_sym_PERCENT] = ACTIONS(2303), - [anon_sym_LT] = ACTIONS(2305), - [anon_sym_GT] = ACTIONS(2305), - [anon_sym_EQ_EQ] = ACTIONS(2303), - [anon_sym_BANG_EQ] = ACTIONS(2303), - [anon_sym_LT_EQ] = ACTIONS(2303), - [anon_sym_GT_EQ] = ACTIONS(2303), - [anon_sym_LBRACK] = ACTIONS(2303), - [anon_sym_RBRACK] = ACTIONS(2303), - [anon_sym_struct] = ACTIONS(2305), - [anon_sym_mut] = ACTIONS(2305), - [anon_sym_COLON] = ACTIONS(2303), - [anon_sym_PLUS_PLUS] = ACTIONS(2303), - [anon_sym_DASH_DASH] = ACTIONS(2303), - [anon_sym_QMARK] = ACTIONS(2305), - [anon_sym_BANG] = ACTIONS(2305), - [anon_sym_go] = ACTIONS(2305), - [anon_sym_spawn] = ACTIONS(2305), - [anon_sym_json_DOTdecode] = ACTIONS(2303), - [anon_sym_LBRACK2] = ACTIONS(2305), - [anon_sym_TILDE] = ACTIONS(2303), - [anon_sym_CARET] = ACTIONS(2303), - [anon_sym_AMP] = ACTIONS(2305), - [anon_sym_LT_DASH] = ACTIONS(2303), - [anon_sym_LT_LT] = ACTIONS(2303), - [anon_sym_GT_GT] = ACTIONS(2305), - [anon_sym_GT_GT_GT] = ACTIONS(2303), - [anon_sym_AMP_CARET] = ACTIONS(2303), - [anon_sym_AMP_AMP] = ACTIONS(2303), - [anon_sym_PIPE_PIPE] = ACTIONS(2303), - [anon_sym_or] = ACTIONS(2305), - [sym_none] = ACTIONS(2305), - [sym_true] = ACTIONS(2305), - [sym_false] = ACTIONS(2305), - [sym_nil] = ACTIONS(2305), - [anon_sym_QMARK_DOT] = ACTIONS(2303), - [anon_sym_POUND_LBRACK] = ACTIONS(2303), - [anon_sym_if] = ACTIONS(2305), - [anon_sym_DOLLARif] = ACTIONS(2305), - [anon_sym_is] = ACTIONS(2305), - [anon_sym_BANGis] = ACTIONS(2303), - [anon_sym_in] = ACTIONS(2305), - [anon_sym_BANGin] = ACTIONS(2303), - [anon_sym_match] = ACTIONS(2305), - [anon_sym_select] = ACTIONS(2305), - [anon_sym_lock] = ACTIONS(2305), - [anon_sym_rlock] = ACTIONS(2305), - [anon_sym_unsafe] = ACTIONS(2305), - [anon_sym_sql] = ACTIONS(2305), - [sym_int_literal] = ACTIONS(2305), - [sym_float_literal] = ACTIONS(2303), - [sym_rune_literal] = ACTIONS(2303), - [sym_pseudo_compile_time_identifier] = ACTIONS(2305), - [anon_sym_shared] = ACTIONS(2305), - [anon_sym_map_LBRACK] = ACTIONS(2303), - [anon_sym_chan] = ACTIONS(2305), - [anon_sym_thread] = ACTIONS(2305), - [anon_sym_atomic] = ACTIONS(2305), - [sym___double_quote] = ACTIONS(2303), - [sym___single_quote] = ACTIONS(2303), - [sym___c_double_quote] = ACTIONS(2303), - [sym___c_single_quote] = ACTIONS(2303), - [sym___r_double_quote] = ACTIONS(2303), - [sym___r_single_quote] = ACTIONS(2303), + [anon_sym_SEMI] = ACTIONS(1887), + [anon_sym_DOT] = ACTIONS(1889), + [anon_sym_as] = ACTIONS(1889), + [anon_sym_LBRACE] = ACTIONS(1894), + [anon_sym_COMMA] = ACTIONS(1887), + [anon_sym_RBRACE] = ACTIONS(1887), + [anon_sym_LPAREN] = ACTIONS(1887), + [anon_sym_PIPE] = ACTIONS(1889), + [anon_sym_fn] = ACTIONS(1889), + [anon_sym_PLUS] = ACTIONS(1889), + [anon_sym_DASH] = ACTIONS(1889), + [anon_sym_STAR] = ACTIONS(1887), + [anon_sym_SLASH] = ACTIONS(1889), + [anon_sym_PERCENT] = ACTIONS(1887), + [anon_sym_LT] = ACTIONS(1889), + [anon_sym_GT] = ACTIONS(1889), + [anon_sym_EQ_EQ] = ACTIONS(1887), + [anon_sym_BANG_EQ] = ACTIONS(1887), + [anon_sym_LT_EQ] = ACTIONS(1887), + [anon_sym_GT_EQ] = ACTIONS(1887), + [anon_sym_LBRACK] = ACTIONS(1894), + [anon_sym_RBRACK] = ACTIONS(1887), + [anon_sym_struct] = ACTIONS(1889), + [anon_sym_mut] = ACTIONS(1889), + [anon_sym_COLON] = ACTIONS(1887), + [anon_sym_PLUS_PLUS] = ACTIONS(1887), + [anon_sym_DASH_DASH] = ACTIONS(1887), + [anon_sym_QMARK] = ACTIONS(1889), + [anon_sym_BANG] = ACTIONS(1889), + [anon_sym_go] = ACTIONS(1889), + [anon_sym_spawn] = ACTIONS(1889), + [anon_sym_json_DOTdecode] = ACTIONS(1887), + [anon_sym_LBRACK2] = ACTIONS(1889), + [anon_sym_TILDE] = ACTIONS(1887), + [anon_sym_CARET] = ACTIONS(1887), + [anon_sym_AMP] = ACTIONS(1889), + [anon_sym_LT_DASH] = ACTIONS(1887), + [anon_sym_LT_LT] = ACTIONS(1887), + [anon_sym_GT_GT] = ACTIONS(1889), + [anon_sym_GT_GT_GT] = ACTIONS(1887), + [anon_sym_AMP_CARET] = ACTIONS(1887), + [anon_sym_AMP_AMP] = ACTIONS(1887), + [anon_sym_PIPE_PIPE] = ACTIONS(1887), + [anon_sym_or] = ACTIONS(1889), + [sym_none] = ACTIONS(1889), + [sym_true] = ACTIONS(1889), + [sym_false] = ACTIONS(1889), + [sym_nil] = ACTIONS(1889), + [anon_sym_QMARK_DOT] = ACTIONS(1887), + [anon_sym_POUND_LBRACK] = ACTIONS(1887), + [anon_sym_if] = ACTIONS(1889), + [anon_sym_DOLLARif] = ACTIONS(1889), + [anon_sym_is] = ACTIONS(1889), + [anon_sym_BANGis] = ACTIONS(1887), + [anon_sym_in] = ACTIONS(1889), + [anon_sym_BANGin] = ACTIONS(1887), + [anon_sym_match] = ACTIONS(1889), + [anon_sym_select] = ACTIONS(1889), + [anon_sym_lock] = ACTIONS(1889), + [anon_sym_rlock] = ACTIONS(1889), + [anon_sym_unsafe] = ACTIONS(1889), + [anon_sym_sql] = ACTIONS(1889), + [sym_int_literal] = ACTIONS(1889), + [sym_float_literal] = ACTIONS(1887), + [sym_rune_literal] = ACTIONS(1887), + [sym_pseudo_compile_time_identifier] = ACTIONS(1889), + [anon_sym_shared] = ACTIONS(1889), + [anon_sym_map_LBRACK] = ACTIONS(1887), + [anon_sym_chan] = ACTIONS(1889), + [anon_sym_thread] = ACTIONS(1889), + [anon_sym_atomic] = ACTIONS(1889), + [sym___double_quote] = ACTIONS(1887), + [sym___single_quote] = ACTIONS(1887), + [sym___c_double_quote] = ACTIONS(1887), + [sym___c_single_quote] = ACTIONS(1887), + [sym___r_double_quote] = ACTIONS(1887), + [sym___r_single_quote] = ACTIONS(1887), }, [1293] = { [sym_line_comment] = STATE(1293), [sym_block_comment] = STATE(1293), - [sym_identifier] = ACTIONS(2753), + [sym_identifier] = ACTIONS(2509), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(2753), - [anon_sym_as] = ACTIONS(2753), - [anon_sym_LBRACE] = ACTIONS(2751), - [anon_sym_COMMA] = ACTIONS(2751), - [anon_sym_RBRACE] = ACTIONS(2751), - [anon_sym_LPAREN] = ACTIONS(2751), - [anon_sym_PIPE] = ACTIONS(2753), - [anon_sym_fn] = ACTIONS(2753), - [anon_sym_PLUS] = ACTIONS(2753), - [anon_sym_DASH] = ACTIONS(2753), - [anon_sym_STAR] = ACTIONS(2751), - [anon_sym_SLASH] = ACTIONS(2753), - [anon_sym_PERCENT] = ACTIONS(2751), - [anon_sym_LT] = ACTIONS(2753), - [anon_sym_GT] = ACTIONS(2753), - [anon_sym_EQ_EQ] = ACTIONS(2751), - [anon_sym_BANG_EQ] = ACTIONS(2751), - [anon_sym_LT_EQ] = ACTIONS(2751), - [anon_sym_GT_EQ] = ACTIONS(2751), - [anon_sym_LBRACK] = ACTIONS(2751), - [anon_sym_RBRACK] = ACTIONS(2751), - [anon_sym_struct] = ACTIONS(2753), - [anon_sym_mut] = ACTIONS(2753), - [anon_sym_COLON] = ACTIONS(2751), - [anon_sym_PLUS_PLUS] = ACTIONS(2751), - [anon_sym_DASH_DASH] = ACTIONS(2751), - [anon_sym_QMARK] = ACTIONS(2753), - [anon_sym_BANG] = ACTIONS(2753), - [anon_sym_go] = ACTIONS(2753), - [anon_sym_spawn] = ACTIONS(2753), - [anon_sym_json_DOTdecode] = ACTIONS(2751), - [anon_sym_LBRACK2] = ACTIONS(2753), - [anon_sym_TILDE] = ACTIONS(2751), - [anon_sym_CARET] = ACTIONS(2751), - [anon_sym_AMP] = ACTIONS(2753), - [anon_sym_LT_DASH] = ACTIONS(2751), - [anon_sym_LT_LT] = ACTIONS(2751), - [anon_sym_GT_GT] = ACTIONS(2753), - [anon_sym_GT_GT_GT] = ACTIONS(2751), - [anon_sym_AMP_CARET] = ACTIONS(2751), - [anon_sym_AMP_AMP] = ACTIONS(2751), - [anon_sym_PIPE_PIPE] = ACTIONS(2751), - [anon_sym_or] = ACTIONS(2753), - [sym_none] = ACTIONS(2753), - [sym_true] = ACTIONS(2753), - [sym_false] = ACTIONS(2753), - [sym_nil] = ACTIONS(2753), - [anon_sym_QMARK_DOT] = ACTIONS(2751), - [anon_sym_POUND_LBRACK] = ACTIONS(2751), - [anon_sym_if] = ACTIONS(2753), - [anon_sym_DOLLARif] = ACTIONS(2753), - [anon_sym_is] = ACTIONS(2753), - [anon_sym_BANGis] = ACTIONS(2751), - [anon_sym_in] = ACTIONS(2753), - [anon_sym_BANGin] = ACTIONS(2751), - [anon_sym_match] = ACTIONS(2753), - [anon_sym_select] = ACTIONS(2753), - [anon_sym_lock] = ACTIONS(2753), - [anon_sym_rlock] = ACTIONS(2753), - [anon_sym_unsafe] = ACTIONS(2753), - [anon_sym_sql] = ACTIONS(2753), - [sym_int_literal] = ACTIONS(2753), - [sym_float_literal] = ACTIONS(2751), - [sym_rune_literal] = ACTIONS(2751), - [sym_pseudo_compile_time_identifier] = ACTIONS(2753), - [anon_sym_shared] = ACTIONS(2753), - [anon_sym_map_LBRACK] = ACTIONS(2751), - [anon_sym_chan] = ACTIONS(2753), - [anon_sym_thread] = ACTIONS(2753), - [anon_sym_atomic] = ACTIONS(2753), - [sym___double_quote] = ACTIONS(2751), - [sym___single_quote] = ACTIONS(2751), - [sym___c_double_quote] = ACTIONS(2751), - [sym___c_single_quote] = ACTIONS(2751), - [sym___r_double_quote] = ACTIONS(2751), - [sym___r_single_quote] = ACTIONS(2751), + [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_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), }, [1294] = { [sym_line_comment] = STATE(1294), [sym_block_comment] = STATE(1294), - [sym_identifier] = ACTIONS(2761), + [sym_identifier] = ACTIONS(2455), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_SEMI] = ACTIONS(3903), - [anon_sym_DOT] = ACTIONS(2763), - [anon_sym_as] = ACTIONS(2761), - [anon_sym_LBRACE] = ACTIONS(2759), - [anon_sym_COMMA] = 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(3903), - [anon_sym_struct] = ACTIONS(2761), - [anon_sym_mut] = ACTIONS(2761), - [anon_sym_COLON] = ACTIONS(3903), - [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(2455), + [anon_sym_as] = ACTIONS(2455), + [anon_sym_LBRACE] = ACTIONS(2453), + [anon_sym_COMMA] = ACTIONS(2453), + [anon_sym_RBRACE] = ACTIONS(2453), + [anon_sym_LPAREN] = ACTIONS(2453), + [anon_sym_PIPE] = ACTIONS(2455), + [anon_sym_fn] = ACTIONS(2455), + [anon_sym_PLUS] = ACTIONS(2455), + [anon_sym_DASH] = ACTIONS(2455), + [anon_sym_STAR] = ACTIONS(2453), + [anon_sym_SLASH] = ACTIONS(2455), + [anon_sym_PERCENT] = ACTIONS(2453), + [anon_sym_LT] = ACTIONS(2455), + [anon_sym_GT] = ACTIONS(2455), + [anon_sym_EQ_EQ] = ACTIONS(2453), + [anon_sym_BANG_EQ] = ACTIONS(2453), + [anon_sym_LT_EQ] = ACTIONS(2453), + [anon_sym_GT_EQ] = ACTIONS(2453), + [anon_sym_LBRACK] = ACTIONS(2453), + [anon_sym_RBRACK] = ACTIONS(2453), + [anon_sym_struct] = ACTIONS(2455), + [anon_sym_mut] = ACTIONS(2455), + [anon_sym_COLON] = ACTIONS(2453), + [anon_sym_PLUS_PLUS] = ACTIONS(2453), + [anon_sym_DASH_DASH] = ACTIONS(2453), + [anon_sym_QMARK] = ACTIONS(2455), + [anon_sym_BANG] = ACTIONS(2455), + [anon_sym_go] = ACTIONS(2455), + [anon_sym_spawn] = ACTIONS(2455), + [anon_sym_json_DOTdecode] = ACTIONS(2453), + [anon_sym_LBRACK2] = ACTIONS(2455), + [anon_sym_TILDE] = ACTIONS(2453), + [anon_sym_CARET] = ACTIONS(2453), + [anon_sym_AMP] = ACTIONS(2455), + [anon_sym_LT_DASH] = ACTIONS(2453), + [anon_sym_LT_LT] = ACTIONS(2453), + [anon_sym_GT_GT] = ACTIONS(2455), + [anon_sym_GT_GT_GT] = ACTIONS(2453), + [anon_sym_AMP_CARET] = ACTIONS(2453), + [anon_sym_AMP_AMP] = ACTIONS(2453), + [anon_sym_PIPE_PIPE] = ACTIONS(2453), + [anon_sym_or] = ACTIONS(2455), + [sym_none] = ACTIONS(2455), + [sym_true] = ACTIONS(2455), + [sym_false] = ACTIONS(2455), + [sym_nil] = ACTIONS(2455), + [anon_sym_QMARK_DOT] = ACTIONS(2453), + [anon_sym_POUND_LBRACK] = ACTIONS(2453), + [anon_sym_if] = ACTIONS(2455), + [anon_sym_DOLLARif] = ACTIONS(2455), + [anon_sym_is] = ACTIONS(2455), + [anon_sym_BANGis] = ACTIONS(2453), + [anon_sym_in] = ACTIONS(2455), + [anon_sym_BANGin] = ACTIONS(2453), + [anon_sym_match] = ACTIONS(2455), + [anon_sym_select] = ACTIONS(2455), + [anon_sym_lock] = ACTIONS(2455), + [anon_sym_rlock] = ACTIONS(2455), + [anon_sym_unsafe] = ACTIONS(2455), + [anon_sym_sql] = ACTIONS(2455), + [sym_int_literal] = ACTIONS(2455), + [sym_float_literal] = ACTIONS(2453), + [sym_rune_literal] = ACTIONS(2453), + [sym_pseudo_compile_time_identifier] = ACTIONS(2455), + [anon_sym_shared] = ACTIONS(2455), + [anon_sym_map_LBRACK] = ACTIONS(2453), + [anon_sym_chan] = ACTIONS(2455), + [anon_sym_thread] = ACTIONS(2455), + [anon_sym_atomic] = ACTIONS(2455), + [sym___double_quote] = ACTIONS(2453), + [sym___single_quote] = ACTIONS(2453), + [sym___c_double_quote] = ACTIONS(2453), + [sym___c_single_quote] = ACTIONS(2453), + [sym___r_double_quote] = ACTIONS(2453), + [sym___r_single_quote] = ACTIONS(2453), }, [1295] = { [sym_line_comment] = STATE(1295), [sym_block_comment] = STATE(1295), - [sym_identifier] = ACTIONS(2647), + [sym_identifier] = ACTIONS(1987), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(2647), - [anon_sym_as] = ACTIONS(2647), - [anon_sym_LBRACE] = ACTIONS(2645), - [anon_sym_COMMA] = ACTIONS(2645), - [anon_sym_RBRACE] = ACTIONS(2645), - [anon_sym_LPAREN] = ACTIONS(2645), - [anon_sym_PIPE] = ACTIONS(2647), - [anon_sym_fn] = ACTIONS(2647), - [anon_sym_PLUS] = ACTIONS(2647), - [anon_sym_DASH] = ACTIONS(2647), - [anon_sym_STAR] = ACTIONS(2645), - [anon_sym_SLASH] = ACTIONS(2647), - [anon_sym_PERCENT] = ACTIONS(2645), - [anon_sym_LT] = ACTIONS(2647), - [anon_sym_GT] = ACTIONS(2647), - [anon_sym_EQ_EQ] = ACTIONS(2645), - [anon_sym_BANG_EQ] = ACTIONS(2645), - [anon_sym_LT_EQ] = ACTIONS(2645), - [anon_sym_GT_EQ] = ACTIONS(2645), - [anon_sym_LBRACK] = ACTIONS(2645), - [anon_sym_RBRACK] = ACTIONS(2645), - [anon_sym_struct] = ACTIONS(2647), - [anon_sym_mut] = ACTIONS(2647), - [anon_sym_COLON] = ACTIONS(2645), - [anon_sym_PLUS_PLUS] = ACTIONS(2645), - [anon_sym_DASH_DASH] = ACTIONS(2645), - [anon_sym_QMARK] = ACTIONS(2647), - [anon_sym_BANG] = ACTIONS(2647), - [anon_sym_go] = ACTIONS(2647), - [anon_sym_spawn] = ACTIONS(2647), - [anon_sym_json_DOTdecode] = ACTIONS(2645), - [anon_sym_LBRACK2] = ACTIONS(2647), - [anon_sym_TILDE] = ACTIONS(2645), - [anon_sym_CARET] = ACTIONS(2645), - [anon_sym_AMP] = ACTIONS(2647), - [anon_sym_LT_DASH] = ACTIONS(2645), - [anon_sym_LT_LT] = ACTIONS(2645), - [anon_sym_GT_GT] = ACTIONS(2647), - [anon_sym_GT_GT_GT] = ACTIONS(2645), - [anon_sym_AMP_CARET] = ACTIONS(2645), - [anon_sym_AMP_AMP] = ACTIONS(2645), - [anon_sym_PIPE_PIPE] = ACTIONS(2645), - [anon_sym_or] = ACTIONS(2647), - [sym_none] = ACTIONS(2647), - [sym_true] = ACTIONS(2647), - [sym_false] = ACTIONS(2647), - [sym_nil] = ACTIONS(2647), - [anon_sym_QMARK_DOT] = ACTIONS(2645), - [anon_sym_POUND_LBRACK] = ACTIONS(2645), - [anon_sym_if] = ACTIONS(2647), - [anon_sym_DOLLARif] = ACTIONS(2647), - [anon_sym_is] = ACTIONS(2647), - [anon_sym_BANGis] = ACTIONS(2645), - [anon_sym_in] = ACTIONS(2647), - [anon_sym_BANGin] = ACTIONS(2645), - [anon_sym_match] = ACTIONS(2647), - [anon_sym_select] = ACTIONS(2647), - [anon_sym_lock] = ACTIONS(2647), - [anon_sym_rlock] = ACTIONS(2647), - [anon_sym_unsafe] = ACTIONS(2647), - [anon_sym_sql] = ACTIONS(2647), - [sym_int_literal] = ACTIONS(2647), - [sym_float_literal] = ACTIONS(2645), - [sym_rune_literal] = ACTIONS(2645), - [sym_pseudo_compile_time_identifier] = ACTIONS(2647), - [anon_sym_shared] = ACTIONS(2647), - [anon_sym_map_LBRACK] = ACTIONS(2645), - [anon_sym_chan] = ACTIONS(2647), - [anon_sym_thread] = ACTIONS(2647), - [anon_sym_atomic] = ACTIONS(2647), - [sym___double_quote] = ACTIONS(2645), - [sym___single_quote] = ACTIONS(2645), - [sym___c_double_quote] = ACTIONS(2645), - [sym___c_single_quote] = ACTIONS(2645), - [sym___r_double_quote] = ACTIONS(2645), - [sym___r_single_quote] = ACTIONS(2645), + [anon_sym_DOT] = ACTIONS(1987), + [anon_sym_as] = ACTIONS(1987), + [anon_sym_LBRACE] = ACTIONS(1989), + [anon_sym_COMMA] = ACTIONS(1989), + [anon_sym_RBRACE] = ACTIONS(1989), + [anon_sym_LPAREN] = ACTIONS(1989), + [anon_sym_PIPE] = ACTIONS(1987), + [anon_sym_fn] = ACTIONS(1987), + [anon_sym_PLUS] = ACTIONS(1987), + [anon_sym_DASH] = ACTIONS(1987), + [anon_sym_STAR] = ACTIONS(1989), + [anon_sym_SLASH] = ACTIONS(1987), + [anon_sym_PERCENT] = ACTIONS(1989), + [anon_sym_LT] = ACTIONS(1987), + [anon_sym_GT] = ACTIONS(1987), + [anon_sym_EQ_EQ] = ACTIONS(1989), + [anon_sym_BANG_EQ] = ACTIONS(1989), + [anon_sym_LT_EQ] = ACTIONS(1989), + [anon_sym_GT_EQ] = ACTIONS(1989), + [anon_sym_LBRACK] = ACTIONS(1989), + [anon_sym_RBRACK] = ACTIONS(1989), + [anon_sym_struct] = ACTIONS(1987), + [anon_sym_mut] = ACTIONS(1987), + [anon_sym_COLON] = ACTIONS(1989), + [anon_sym_PLUS_PLUS] = ACTIONS(1989), + [anon_sym_DASH_DASH] = ACTIONS(1989), + [anon_sym_QMARK] = ACTIONS(1987), + [anon_sym_BANG] = ACTIONS(1987), + [anon_sym_go] = ACTIONS(1987), + [anon_sym_spawn] = ACTIONS(1987), + [anon_sym_json_DOTdecode] = ACTIONS(1989), + [anon_sym_LBRACK2] = ACTIONS(1987), + [anon_sym_TILDE] = ACTIONS(1989), + [anon_sym_CARET] = ACTIONS(1989), + [anon_sym_AMP] = ACTIONS(1987), + [anon_sym_LT_DASH] = ACTIONS(1989), + [anon_sym_LT_LT] = ACTIONS(1989), + [anon_sym_GT_GT] = ACTIONS(1987), + [anon_sym_GT_GT_GT] = ACTIONS(1989), + [anon_sym_AMP_CARET] = ACTIONS(1989), + [anon_sym_AMP_AMP] = ACTIONS(1989), + [anon_sym_PIPE_PIPE] = ACTIONS(1989), + [anon_sym_or] = ACTIONS(1987), + [sym_none] = ACTIONS(1987), + [sym_true] = ACTIONS(1987), + [sym_false] = ACTIONS(1987), + [sym_nil] = ACTIONS(1987), + [anon_sym_QMARK_DOT] = ACTIONS(1989), + [anon_sym_POUND_LBRACK] = ACTIONS(1989), + [anon_sym_if] = ACTIONS(1987), + [anon_sym_DOLLARif] = ACTIONS(1987), + [anon_sym_is] = ACTIONS(1987), + [anon_sym_BANGis] = ACTIONS(1989), + [anon_sym_in] = ACTIONS(1987), + [anon_sym_BANGin] = ACTIONS(1989), + [anon_sym_match] = ACTIONS(1987), + [anon_sym_select] = ACTIONS(1987), + [anon_sym_lock] = ACTIONS(1987), + [anon_sym_rlock] = ACTIONS(1987), + [anon_sym_unsafe] = ACTIONS(1987), + [anon_sym_sql] = ACTIONS(1987), + [sym_int_literal] = ACTIONS(1987), + [sym_float_literal] = ACTIONS(1989), + [sym_rune_literal] = ACTIONS(1989), + [sym_pseudo_compile_time_identifier] = ACTIONS(1987), + [anon_sym_shared] = ACTIONS(1987), + [anon_sym_map_LBRACK] = ACTIONS(1989), + [anon_sym_chan] = ACTIONS(1987), + [anon_sym_thread] = ACTIONS(1987), + [anon_sym_atomic] = ACTIONS(1987), + [sym___double_quote] = ACTIONS(1989), + [sym___single_quote] = ACTIONS(1989), + [sym___c_double_quote] = ACTIONS(1989), + [sym___c_single_quote] = ACTIONS(1989), + [sym___r_double_quote] = ACTIONS(1989), + [sym___r_single_quote] = ACTIONS(1989), }, [1296] = { [sym_line_comment] = STATE(1296), [sym_block_comment] = STATE(1296), - [sym_identifier] = ACTIONS(2655), + [sym_identifier] = ACTIONS(2862), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(2655), - [anon_sym_as] = ACTIONS(2655), - [anon_sym_LBRACE] = ACTIONS(2653), - [anon_sym_COMMA] = ACTIONS(2653), - [anon_sym_RBRACE] = ACTIONS(2653), - [anon_sym_LPAREN] = ACTIONS(2653), - [anon_sym_PIPE] = ACTIONS(2655), - [anon_sym_fn] = ACTIONS(2655), - [anon_sym_PLUS] = ACTIONS(2655), - [anon_sym_DASH] = ACTIONS(2655), - [anon_sym_STAR] = ACTIONS(2653), - [anon_sym_SLASH] = ACTIONS(2655), - [anon_sym_PERCENT] = ACTIONS(2653), - [anon_sym_LT] = ACTIONS(2655), - [anon_sym_GT] = ACTIONS(2655), - [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(2655), - [anon_sym_mut] = ACTIONS(2655), - [anon_sym_COLON] = ACTIONS(2653), - [anon_sym_PLUS_PLUS] = ACTIONS(2653), - [anon_sym_DASH_DASH] = ACTIONS(2653), - [anon_sym_QMARK] = ACTIONS(2655), - [anon_sym_BANG] = ACTIONS(2655), - [anon_sym_go] = ACTIONS(2655), - [anon_sym_spawn] = ACTIONS(2655), - [anon_sym_json_DOTdecode] = ACTIONS(2653), - [anon_sym_LBRACK2] = ACTIONS(2655), - [anon_sym_TILDE] = ACTIONS(2653), - [anon_sym_CARET] = ACTIONS(2653), - [anon_sym_AMP] = ACTIONS(2655), - [anon_sym_LT_DASH] = ACTIONS(2653), - [anon_sym_LT_LT] = ACTIONS(2653), - [anon_sym_GT_GT] = ACTIONS(2655), - [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(2655), - [sym_none] = ACTIONS(2655), - [sym_true] = ACTIONS(2655), - [sym_false] = ACTIONS(2655), - [sym_nil] = ACTIONS(2655), - [anon_sym_QMARK_DOT] = ACTIONS(2653), - [anon_sym_POUND_LBRACK] = ACTIONS(2653), - [anon_sym_if] = ACTIONS(2655), - [anon_sym_DOLLARif] = ACTIONS(2655), - [anon_sym_is] = ACTIONS(2655), - [anon_sym_BANGis] = ACTIONS(2653), - [anon_sym_in] = ACTIONS(2655), - [anon_sym_BANGin] = ACTIONS(2653), - [anon_sym_match] = ACTIONS(2655), - [anon_sym_select] = ACTIONS(2655), - [anon_sym_lock] = ACTIONS(2655), - [anon_sym_rlock] = ACTIONS(2655), - [anon_sym_unsafe] = ACTIONS(2655), - [anon_sym_sql] = ACTIONS(2655), - [sym_int_literal] = ACTIONS(2655), - [sym_float_literal] = ACTIONS(2653), - [sym_rune_literal] = ACTIONS(2653), - [sym_pseudo_compile_time_identifier] = ACTIONS(2655), - [anon_sym_shared] = ACTIONS(2655), - [anon_sym_map_LBRACK] = ACTIONS(2653), - [anon_sym_chan] = ACTIONS(2655), - [anon_sym_thread] = ACTIONS(2655), - [anon_sym_atomic] = ACTIONS(2655), - [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), + [anon_sym_DOT] = ACTIONS(2862), + [anon_sym_as] = ACTIONS(2862), + [anon_sym_LBRACE] = ACTIONS(2860), + [anon_sym_COMMA] = ACTIONS(2860), + [anon_sym_RBRACE] = ACTIONS(2860), + [anon_sym_LPAREN] = ACTIONS(2860), + [anon_sym_PIPE] = ACTIONS(2862), + [anon_sym_fn] = ACTIONS(2862), + [anon_sym_PLUS] = ACTIONS(2862), + [anon_sym_DASH] = ACTIONS(2862), + [anon_sym_STAR] = ACTIONS(2860), + [anon_sym_SLASH] = ACTIONS(2862), + [anon_sym_PERCENT] = ACTIONS(2860), + [anon_sym_LT] = ACTIONS(2862), + [anon_sym_GT] = ACTIONS(2862), + [anon_sym_EQ_EQ] = ACTIONS(2860), + [anon_sym_BANG_EQ] = ACTIONS(2860), + [anon_sym_LT_EQ] = ACTIONS(2860), + [anon_sym_GT_EQ] = ACTIONS(2860), + [anon_sym_LBRACK] = ACTIONS(2860), + [anon_sym_RBRACK] = ACTIONS(2860), + [anon_sym_struct] = ACTIONS(2862), + [anon_sym_mut] = ACTIONS(2862), + [anon_sym_COLON] = ACTIONS(2860), + [anon_sym_PLUS_PLUS] = ACTIONS(2860), + [anon_sym_DASH_DASH] = ACTIONS(2860), + [anon_sym_QMARK] = ACTIONS(2862), + [anon_sym_BANG] = ACTIONS(2862), + [anon_sym_go] = ACTIONS(2862), + [anon_sym_spawn] = ACTIONS(2862), + [anon_sym_json_DOTdecode] = ACTIONS(2860), + [anon_sym_LBRACK2] = ACTIONS(2862), + [anon_sym_TILDE] = ACTIONS(2860), + [anon_sym_CARET] = ACTIONS(2860), + [anon_sym_AMP] = ACTIONS(2862), + [anon_sym_LT_DASH] = ACTIONS(2860), + [anon_sym_LT_LT] = ACTIONS(2860), + [anon_sym_GT_GT] = ACTIONS(2862), + [anon_sym_GT_GT_GT] = ACTIONS(2860), + [anon_sym_AMP_CARET] = ACTIONS(2860), + [anon_sym_AMP_AMP] = ACTIONS(2860), + [anon_sym_PIPE_PIPE] = ACTIONS(2860), + [anon_sym_or] = ACTIONS(2862), + [sym_none] = ACTIONS(2862), + [sym_true] = ACTIONS(2862), + [sym_false] = ACTIONS(2862), + [sym_nil] = ACTIONS(2862), + [anon_sym_QMARK_DOT] = ACTIONS(2860), + [anon_sym_POUND_LBRACK] = ACTIONS(2860), + [anon_sym_if] = ACTIONS(2862), + [anon_sym_DOLLARif] = ACTIONS(2862), + [anon_sym_is] = ACTIONS(2862), + [anon_sym_BANGis] = ACTIONS(2860), + [anon_sym_in] = ACTIONS(2862), + [anon_sym_BANGin] = ACTIONS(2860), + [anon_sym_match] = ACTIONS(2862), + [anon_sym_select] = ACTIONS(2862), + [anon_sym_lock] = ACTIONS(2862), + [anon_sym_rlock] = ACTIONS(2862), + [anon_sym_unsafe] = ACTIONS(2862), + [anon_sym_sql] = ACTIONS(2862), + [sym_int_literal] = ACTIONS(2862), + [sym_float_literal] = ACTIONS(2860), + [sym_rune_literal] = ACTIONS(2860), + [sym_pseudo_compile_time_identifier] = ACTIONS(2862), + [anon_sym_shared] = ACTIONS(2862), + [anon_sym_map_LBRACK] = ACTIONS(2860), + [anon_sym_chan] = ACTIONS(2862), + [anon_sym_thread] = ACTIONS(2862), + [anon_sym_atomic] = ACTIONS(2862), + [sym___double_quote] = ACTIONS(2860), + [sym___single_quote] = ACTIONS(2860), + [sym___c_double_quote] = ACTIONS(2860), + [sym___c_single_quote] = ACTIONS(2860), + [sym___r_double_quote] = ACTIONS(2860), + [sym___r_single_quote] = ACTIONS(2860), }, [1297] = { [sym_line_comment] = STATE(1297), [sym_block_comment] = STATE(1297), - [sym_identifier] = ACTIONS(2667), + [sym_identifier] = ACTIONS(2199), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(2667), - [anon_sym_as] = ACTIONS(2667), - [anon_sym_LBRACE] = ACTIONS(2665), - [anon_sym_COMMA] = ACTIONS(2665), - [anon_sym_RBRACE] = ACTIONS(2665), - [anon_sym_LPAREN] = ACTIONS(2665), - [anon_sym_PIPE] = ACTIONS(2667), - [anon_sym_fn] = ACTIONS(2667), - [anon_sym_PLUS] = ACTIONS(2667), - [anon_sym_DASH] = ACTIONS(2667), - [anon_sym_STAR] = ACTIONS(2665), - [anon_sym_SLASH] = ACTIONS(2667), - [anon_sym_PERCENT] = ACTIONS(2665), - [anon_sym_LT] = ACTIONS(2667), - [anon_sym_GT] = ACTIONS(2667), - [anon_sym_EQ_EQ] = ACTIONS(2665), - [anon_sym_BANG_EQ] = ACTIONS(2665), - [anon_sym_LT_EQ] = ACTIONS(2665), - [anon_sym_GT_EQ] = ACTIONS(2665), - [anon_sym_LBRACK] = ACTIONS(2665), - [anon_sym_RBRACK] = ACTIONS(2665), - [anon_sym_struct] = ACTIONS(2667), - [anon_sym_mut] = ACTIONS(2667), - [anon_sym_COLON] = ACTIONS(2665), - [anon_sym_PLUS_PLUS] = ACTIONS(2665), - [anon_sym_DASH_DASH] = ACTIONS(2665), - [anon_sym_QMARK] = ACTIONS(2667), - [anon_sym_BANG] = ACTIONS(2667), - [anon_sym_go] = ACTIONS(2667), - [anon_sym_spawn] = ACTIONS(2667), - [anon_sym_json_DOTdecode] = ACTIONS(2665), - [anon_sym_LBRACK2] = ACTIONS(2667), - [anon_sym_TILDE] = ACTIONS(2665), - [anon_sym_CARET] = ACTIONS(2665), - [anon_sym_AMP] = ACTIONS(2667), - [anon_sym_LT_DASH] = ACTIONS(2665), - [anon_sym_LT_LT] = ACTIONS(2665), - [anon_sym_GT_GT] = ACTIONS(2667), - [anon_sym_GT_GT_GT] = ACTIONS(2665), - [anon_sym_AMP_CARET] = ACTIONS(2665), - [anon_sym_AMP_AMP] = ACTIONS(2665), - [anon_sym_PIPE_PIPE] = ACTIONS(2665), - [anon_sym_or] = ACTIONS(2667), - [sym_none] = ACTIONS(2667), - [sym_true] = ACTIONS(2667), - [sym_false] = ACTIONS(2667), - [sym_nil] = ACTIONS(2667), - [anon_sym_QMARK_DOT] = ACTIONS(2665), - [anon_sym_POUND_LBRACK] = ACTIONS(2665), - [anon_sym_if] = ACTIONS(2667), - [anon_sym_DOLLARif] = ACTIONS(2667), - [anon_sym_is] = ACTIONS(2667), - [anon_sym_BANGis] = ACTIONS(2665), - [anon_sym_in] = ACTIONS(2667), - [anon_sym_BANGin] = ACTIONS(2665), - [anon_sym_match] = ACTIONS(2667), - [anon_sym_select] = ACTIONS(2667), - [anon_sym_lock] = ACTIONS(2667), - [anon_sym_rlock] = ACTIONS(2667), - [anon_sym_unsafe] = ACTIONS(2667), - [anon_sym_sql] = ACTIONS(2667), - [sym_int_literal] = ACTIONS(2667), - [sym_float_literal] = ACTIONS(2665), - [sym_rune_literal] = ACTIONS(2665), - [sym_pseudo_compile_time_identifier] = ACTIONS(2667), - [anon_sym_shared] = ACTIONS(2667), - [anon_sym_map_LBRACK] = ACTIONS(2665), - [anon_sym_chan] = ACTIONS(2667), - [anon_sym_thread] = ACTIONS(2667), - [anon_sym_atomic] = ACTIONS(2667), - [sym___double_quote] = ACTIONS(2665), - [sym___single_quote] = ACTIONS(2665), - [sym___c_double_quote] = ACTIONS(2665), - [sym___c_single_quote] = ACTIONS(2665), - [sym___r_double_quote] = ACTIONS(2665), - [sym___r_single_quote] = ACTIONS(2665), + [anon_sym_DOT] = ACTIONS(2199), + [anon_sym_as] = ACTIONS(2199), + [anon_sym_LBRACE] = ACTIONS(2197), + [anon_sym_COMMA] = ACTIONS(2197), + [anon_sym_RBRACE] = ACTIONS(2197), + [anon_sym_LPAREN] = ACTIONS(2197), + [anon_sym_PIPE] = ACTIONS(2199), + [anon_sym_fn] = ACTIONS(2199), + [anon_sym_PLUS] = ACTIONS(2199), + [anon_sym_DASH] = ACTIONS(2199), + [anon_sym_STAR] = ACTIONS(2197), + [anon_sym_SLASH] = ACTIONS(2199), + [anon_sym_PERCENT] = ACTIONS(2197), + [anon_sym_LT] = ACTIONS(2199), + [anon_sym_GT] = ACTIONS(2199), + [anon_sym_EQ_EQ] = ACTIONS(2197), + [anon_sym_BANG_EQ] = ACTIONS(2197), + [anon_sym_LT_EQ] = ACTIONS(2197), + [anon_sym_GT_EQ] = ACTIONS(2197), + [anon_sym_LBRACK] = ACTIONS(2197), + [anon_sym_RBRACK] = ACTIONS(2197), + [anon_sym_struct] = ACTIONS(2199), + [anon_sym_mut] = ACTIONS(2199), + [anon_sym_COLON] = ACTIONS(2197), + [anon_sym_PLUS_PLUS] = ACTIONS(2197), + [anon_sym_DASH_DASH] = ACTIONS(2197), + [anon_sym_QMARK] = ACTIONS(2199), + [anon_sym_BANG] = ACTIONS(2199), + [anon_sym_go] = ACTIONS(2199), + [anon_sym_spawn] = ACTIONS(2199), + [anon_sym_json_DOTdecode] = ACTIONS(2197), + [anon_sym_LBRACK2] = ACTIONS(2199), + [anon_sym_TILDE] = ACTIONS(2197), + [anon_sym_CARET] = ACTIONS(2197), + [anon_sym_AMP] = ACTIONS(2199), + [anon_sym_LT_DASH] = ACTIONS(2197), + [anon_sym_LT_LT] = ACTIONS(2197), + [anon_sym_GT_GT] = ACTIONS(2199), + [anon_sym_GT_GT_GT] = ACTIONS(2197), + [anon_sym_AMP_CARET] = ACTIONS(2197), + [anon_sym_AMP_AMP] = ACTIONS(2197), + [anon_sym_PIPE_PIPE] = ACTIONS(2197), + [anon_sym_or] = ACTIONS(2199), + [sym_none] = ACTIONS(2199), + [sym_true] = ACTIONS(2199), + [sym_false] = ACTIONS(2199), + [sym_nil] = ACTIONS(2199), + [anon_sym_QMARK_DOT] = ACTIONS(2197), + [anon_sym_POUND_LBRACK] = ACTIONS(2197), + [anon_sym_if] = ACTIONS(2199), + [anon_sym_DOLLARif] = ACTIONS(2199), + [anon_sym_is] = ACTIONS(2199), + [anon_sym_BANGis] = ACTIONS(2197), + [anon_sym_in] = ACTIONS(2199), + [anon_sym_BANGin] = ACTIONS(2197), + [anon_sym_match] = ACTIONS(2199), + [anon_sym_select] = ACTIONS(2199), + [anon_sym_lock] = ACTIONS(2199), + [anon_sym_rlock] = ACTIONS(2199), + [anon_sym_unsafe] = ACTIONS(2199), + [anon_sym_sql] = ACTIONS(2199), + [sym_int_literal] = ACTIONS(2199), + [sym_float_literal] = ACTIONS(2197), + [sym_rune_literal] = ACTIONS(2197), + [sym_pseudo_compile_time_identifier] = ACTIONS(2199), + [anon_sym_shared] = ACTIONS(2199), + [anon_sym_map_LBRACK] = ACTIONS(2197), + [anon_sym_chan] = ACTIONS(2199), + [anon_sym_thread] = ACTIONS(2199), + [anon_sym_atomic] = ACTIONS(2199), + [sym___double_quote] = ACTIONS(2197), + [sym___single_quote] = ACTIONS(2197), + [sym___c_double_quote] = ACTIONS(2197), + [sym___c_single_quote] = ACTIONS(2197), + [sym___r_double_quote] = ACTIONS(2197), + [sym___r_single_quote] = ACTIONS(2197), }, [1298] = { [sym_line_comment] = STATE(1298), [sym_block_comment] = STATE(1298), - [sym_identifier] = ACTIONS(2860), + [sym_identifier] = ACTIONS(2513), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(2860), - [anon_sym_as] = ACTIONS(2860), - [anon_sym_LBRACE] = ACTIONS(2858), - [anon_sym_COMMA] = ACTIONS(2858), - [anon_sym_RBRACE] = ACTIONS(2858), - [anon_sym_LPAREN] = ACTIONS(2858), - [anon_sym_PIPE] = ACTIONS(2860), - [anon_sym_fn] = ACTIONS(2860), - [anon_sym_PLUS] = ACTIONS(2860), - [anon_sym_DASH] = ACTIONS(2860), - [anon_sym_STAR] = ACTIONS(2858), - [anon_sym_SLASH] = ACTIONS(2860), - [anon_sym_PERCENT] = ACTIONS(2858), - [anon_sym_LT] = ACTIONS(2860), - [anon_sym_GT] = ACTIONS(2860), - [anon_sym_EQ_EQ] = ACTIONS(2858), - [anon_sym_BANG_EQ] = ACTIONS(2858), - [anon_sym_LT_EQ] = ACTIONS(2858), - [anon_sym_GT_EQ] = ACTIONS(2858), - [anon_sym_LBRACK] = ACTIONS(2858), - [anon_sym_RBRACK] = ACTIONS(2858), - [anon_sym_struct] = ACTIONS(2860), - [anon_sym_mut] = ACTIONS(2860), - [anon_sym_COLON] = ACTIONS(2858), - [anon_sym_PLUS_PLUS] = ACTIONS(2858), - [anon_sym_DASH_DASH] = ACTIONS(2858), - [anon_sym_QMARK] = ACTIONS(2860), - [anon_sym_BANG] = ACTIONS(2860), - [anon_sym_go] = ACTIONS(2860), - [anon_sym_spawn] = ACTIONS(2860), - [anon_sym_json_DOTdecode] = ACTIONS(2858), - [anon_sym_LBRACK2] = ACTIONS(2860), - [anon_sym_TILDE] = ACTIONS(2858), - [anon_sym_CARET] = ACTIONS(2858), - [anon_sym_AMP] = ACTIONS(2860), - [anon_sym_LT_DASH] = ACTIONS(2858), - [anon_sym_LT_LT] = ACTIONS(2858), - [anon_sym_GT_GT] = ACTIONS(2860), - [anon_sym_GT_GT_GT] = ACTIONS(2858), - [anon_sym_AMP_CARET] = ACTIONS(2858), - [anon_sym_AMP_AMP] = ACTIONS(2858), - [anon_sym_PIPE_PIPE] = ACTIONS(2858), - [anon_sym_or] = ACTIONS(2860), - [sym_none] = ACTIONS(2860), - [sym_true] = ACTIONS(2860), - [sym_false] = ACTIONS(2860), - [sym_nil] = ACTIONS(2860), - [anon_sym_QMARK_DOT] = ACTIONS(2858), - [anon_sym_POUND_LBRACK] = ACTIONS(2858), - [anon_sym_if] = ACTIONS(2860), - [anon_sym_DOLLARif] = ACTIONS(2860), - [anon_sym_is] = ACTIONS(2860), - [anon_sym_BANGis] = ACTIONS(2858), - [anon_sym_in] = ACTIONS(2860), - [anon_sym_BANGin] = ACTIONS(2858), - [anon_sym_match] = ACTIONS(2860), - [anon_sym_select] = ACTIONS(2860), - [anon_sym_lock] = ACTIONS(2860), - [anon_sym_rlock] = ACTIONS(2860), - [anon_sym_unsafe] = ACTIONS(2860), - [anon_sym_sql] = ACTIONS(2860), - [sym_int_literal] = ACTIONS(2860), - [sym_float_literal] = ACTIONS(2858), - [sym_rune_literal] = ACTIONS(2858), - [sym_pseudo_compile_time_identifier] = ACTIONS(2860), - [anon_sym_shared] = ACTIONS(2860), - [anon_sym_map_LBRACK] = ACTIONS(2858), - [anon_sym_chan] = ACTIONS(2860), - [anon_sym_thread] = ACTIONS(2860), - [anon_sym_atomic] = ACTIONS(2860), - [sym___double_quote] = ACTIONS(2858), - [sym___single_quote] = ACTIONS(2858), - [sym___c_double_quote] = ACTIONS(2858), - [sym___c_single_quote] = ACTIONS(2858), - [sym___r_double_quote] = ACTIONS(2858), - [sym___r_single_quote] = ACTIONS(2858), + [anon_sym_DOT] = ACTIONS(2515), + [anon_sym_as] = ACTIONS(2513), + [anon_sym_LBRACE] = ACTIONS(2511), + [anon_sym_COMMA] = ACTIONS(2511), + [anon_sym_RBRACE] = ACTIONS(2511), + [anon_sym_LPAREN] = ACTIONS(2511), + [anon_sym_PIPE] = ACTIONS(2513), + [anon_sym_fn] = ACTIONS(2513), + [anon_sym_PLUS] = ACTIONS(2513), + [anon_sym_DASH] = ACTIONS(2513), + [anon_sym_STAR] = ACTIONS(2511), + [anon_sym_SLASH] = ACTIONS(2513), + [anon_sym_PERCENT] = ACTIONS(2511), + [anon_sym_LT] = ACTIONS(2513), + [anon_sym_GT] = ACTIONS(2513), + [anon_sym_EQ_EQ] = ACTIONS(2511), + [anon_sym_BANG_EQ] = ACTIONS(2511), + [anon_sym_LT_EQ] = ACTIONS(2511), + [anon_sym_GT_EQ] = ACTIONS(2511), + [anon_sym_LBRACK] = ACTIONS(2511), + [anon_sym_RBRACK] = ACTIONS(2511), + [anon_sym_struct] = ACTIONS(2513), + [anon_sym_mut] = ACTIONS(2513), + [anon_sym_COLON] = ACTIONS(2511), + [anon_sym_PLUS_PLUS] = ACTIONS(2511), + [anon_sym_DASH_DASH] = ACTIONS(2511), + [anon_sym_QMARK] = ACTIONS(2513), + [anon_sym_BANG] = ACTIONS(2513), + [anon_sym_go] = ACTIONS(2513), + [anon_sym_spawn] = ACTIONS(2513), + [anon_sym_json_DOTdecode] = ACTIONS(2511), + [anon_sym_LBRACK2] = ACTIONS(2513), + [anon_sym_TILDE] = ACTIONS(2511), + [anon_sym_CARET] = ACTIONS(2511), + [anon_sym_AMP] = ACTIONS(2513), + [anon_sym_LT_DASH] = ACTIONS(2511), + [anon_sym_LT_LT] = ACTIONS(2511), + [anon_sym_GT_GT] = ACTIONS(2513), + [anon_sym_GT_GT_GT] = ACTIONS(2511), + [anon_sym_AMP_CARET] = ACTIONS(2511), + [anon_sym_AMP_AMP] = ACTIONS(2511), + [anon_sym_PIPE_PIPE] = ACTIONS(2511), + [anon_sym_or] = ACTIONS(2513), + [sym_none] = ACTIONS(2513), + [sym_true] = ACTIONS(2513), + [sym_false] = ACTIONS(2513), + [sym_nil] = ACTIONS(2513), + [anon_sym_QMARK_DOT] = ACTIONS(2511), + [anon_sym_POUND_LBRACK] = ACTIONS(2511), + [anon_sym_if] = ACTIONS(2513), + [anon_sym_DOLLARif] = ACTIONS(2513), + [anon_sym_is] = ACTIONS(2513), + [anon_sym_BANGis] = ACTIONS(2511), + [anon_sym_in] = ACTIONS(2513), + [anon_sym_BANGin] = ACTIONS(2511), + [anon_sym_match] = ACTIONS(2513), + [anon_sym_select] = ACTIONS(2513), + [anon_sym_lock] = ACTIONS(2513), + [anon_sym_rlock] = ACTIONS(2513), + [anon_sym_unsafe] = ACTIONS(2513), + [anon_sym_sql] = ACTIONS(2513), + [sym_int_literal] = ACTIONS(2513), + [sym_float_literal] = ACTIONS(2511), + [sym_rune_literal] = ACTIONS(2511), + [sym_pseudo_compile_time_identifier] = ACTIONS(2513), + [anon_sym_shared] = ACTIONS(2513), + [anon_sym_map_LBRACK] = ACTIONS(2511), + [anon_sym_chan] = ACTIONS(2513), + [anon_sym_thread] = ACTIONS(2513), + [anon_sym_atomic] = ACTIONS(2513), + [sym___double_quote] = ACTIONS(2511), + [sym___single_quote] = ACTIONS(2511), + [sym___c_double_quote] = ACTIONS(2511), + [sym___c_single_quote] = ACTIONS(2511), + [sym___r_double_quote] = ACTIONS(2511), + [sym___r_single_quote] = ACTIONS(2511), }, [1299] = { [sym_line_comment] = STATE(1299), [sym_block_comment] = STATE(1299), - [sym_identifier] = ACTIONS(2856), + [sym_identifier] = ACTIONS(2229), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(2856), - [anon_sym_as] = ACTIONS(2856), - [anon_sym_LBRACE] = ACTIONS(2854), - [anon_sym_COMMA] = ACTIONS(2854), - [anon_sym_RBRACE] = ACTIONS(2854), - [anon_sym_LPAREN] = ACTIONS(2854), - [anon_sym_PIPE] = ACTIONS(2856), - [anon_sym_fn] = ACTIONS(2856), - [anon_sym_PLUS] = ACTIONS(2856), - [anon_sym_DASH] = ACTIONS(2856), - [anon_sym_STAR] = ACTIONS(2854), - [anon_sym_SLASH] = ACTIONS(2856), - [anon_sym_PERCENT] = ACTIONS(2854), - [anon_sym_LT] = ACTIONS(2856), - [anon_sym_GT] = ACTIONS(2856), - [anon_sym_EQ_EQ] = ACTIONS(2854), - [anon_sym_BANG_EQ] = ACTIONS(2854), - [anon_sym_LT_EQ] = ACTIONS(2854), - [anon_sym_GT_EQ] = ACTIONS(2854), - [anon_sym_LBRACK] = ACTIONS(2854), - [anon_sym_RBRACK] = ACTIONS(2854), - [anon_sym_struct] = ACTIONS(2856), - [anon_sym_mut] = ACTIONS(2856), - [anon_sym_COLON] = ACTIONS(2854), - [anon_sym_PLUS_PLUS] = ACTIONS(2854), - [anon_sym_DASH_DASH] = ACTIONS(2854), - [anon_sym_QMARK] = ACTIONS(2856), - [anon_sym_BANG] = ACTIONS(2856), - [anon_sym_go] = ACTIONS(2856), - [anon_sym_spawn] = ACTIONS(2856), - [anon_sym_json_DOTdecode] = ACTIONS(2854), - [anon_sym_LBRACK2] = ACTIONS(2856), - [anon_sym_TILDE] = ACTIONS(2854), - [anon_sym_CARET] = ACTIONS(2854), - [anon_sym_AMP] = ACTIONS(2856), - [anon_sym_LT_DASH] = ACTIONS(2854), - [anon_sym_LT_LT] = ACTIONS(2854), - [anon_sym_GT_GT] = ACTIONS(2856), - [anon_sym_GT_GT_GT] = ACTIONS(2854), - [anon_sym_AMP_CARET] = ACTIONS(2854), - [anon_sym_AMP_AMP] = ACTIONS(2854), - [anon_sym_PIPE_PIPE] = ACTIONS(2854), - [anon_sym_or] = ACTIONS(2856), - [sym_none] = ACTIONS(2856), - [sym_true] = ACTIONS(2856), - [sym_false] = ACTIONS(2856), - [sym_nil] = ACTIONS(2856), - [anon_sym_QMARK_DOT] = ACTIONS(2854), - [anon_sym_POUND_LBRACK] = ACTIONS(2854), - [anon_sym_if] = ACTIONS(2856), - [anon_sym_DOLLARif] = ACTIONS(2856), - [anon_sym_is] = ACTIONS(2856), - [anon_sym_BANGis] = ACTIONS(2854), - [anon_sym_in] = ACTIONS(2856), - [anon_sym_BANGin] = ACTIONS(2854), - [anon_sym_match] = ACTIONS(2856), - [anon_sym_select] = ACTIONS(2856), - [anon_sym_lock] = ACTIONS(2856), - [anon_sym_rlock] = ACTIONS(2856), - [anon_sym_unsafe] = ACTIONS(2856), - [anon_sym_sql] = ACTIONS(2856), - [sym_int_literal] = ACTIONS(2856), - [sym_float_literal] = ACTIONS(2854), - [sym_rune_literal] = ACTIONS(2854), - [sym_pseudo_compile_time_identifier] = ACTIONS(2856), - [anon_sym_shared] = ACTIONS(2856), - [anon_sym_map_LBRACK] = ACTIONS(2854), - [anon_sym_chan] = ACTIONS(2856), - [anon_sym_thread] = ACTIONS(2856), - [anon_sym_atomic] = ACTIONS(2856), - [sym___double_quote] = ACTIONS(2854), - [sym___single_quote] = ACTIONS(2854), - [sym___c_double_quote] = ACTIONS(2854), - [sym___c_single_quote] = ACTIONS(2854), - [sym___r_double_quote] = ACTIONS(2854), - [sym___r_single_quote] = ACTIONS(2854), + [anon_sym_DOT] = ACTIONS(2229), + [anon_sym_as] = ACTIONS(2229), + [anon_sym_LBRACE] = ACTIONS(2227), + [anon_sym_COMMA] = ACTIONS(2227), + [anon_sym_RBRACE] = ACTIONS(2227), + [anon_sym_LPAREN] = ACTIONS(2227), + [anon_sym_PIPE] = ACTIONS(2229), + [anon_sym_fn] = ACTIONS(2229), + [anon_sym_PLUS] = ACTIONS(2229), + [anon_sym_DASH] = ACTIONS(2229), + [anon_sym_STAR] = ACTIONS(2227), + [anon_sym_SLASH] = ACTIONS(2229), + [anon_sym_PERCENT] = ACTIONS(2227), + [anon_sym_LT] = ACTIONS(2229), + [anon_sym_GT] = ACTIONS(2229), + [anon_sym_EQ_EQ] = ACTIONS(2227), + [anon_sym_BANG_EQ] = ACTIONS(2227), + [anon_sym_LT_EQ] = ACTIONS(2227), + [anon_sym_GT_EQ] = ACTIONS(2227), + [anon_sym_LBRACK] = ACTIONS(2227), + [anon_sym_RBRACK] = ACTIONS(2227), + [anon_sym_struct] = ACTIONS(2229), + [anon_sym_mut] = ACTIONS(2229), + [anon_sym_COLON] = ACTIONS(2227), + [anon_sym_PLUS_PLUS] = ACTIONS(2227), + [anon_sym_DASH_DASH] = ACTIONS(2227), + [anon_sym_QMARK] = ACTIONS(2229), + [anon_sym_BANG] = ACTIONS(2229), + [anon_sym_go] = ACTIONS(2229), + [anon_sym_spawn] = ACTIONS(2229), + [anon_sym_json_DOTdecode] = ACTIONS(2227), + [anon_sym_LBRACK2] = ACTIONS(2229), + [anon_sym_TILDE] = ACTIONS(2227), + [anon_sym_CARET] = ACTIONS(2227), + [anon_sym_AMP] = ACTIONS(2229), + [anon_sym_LT_DASH] = ACTIONS(2227), + [anon_sym_LT_LT] = ACTIONS(2227), + [anon_sym_GT_GT] = ACTIONS(2229), + [anon_sym_GT_GT_GT] = ACTIONS(2227), + [anon_sym_AMP_CARET] = ACTIONS(2227), + [anon_sym_AMP_AMP] = ACTIONS(2227), + [anon_sym_PIPE_PIPE] = ACTIONS(2227), + [anon_sym_or] = ACTIONS(2229), + [sym_none] = ACTIONS(2229), + [sym_true] = ACTIONS(2229), + [sym_false] = ACTIONS(2229), + [sym_nil] = ACTIONS(2229), + [anon_sym_QMARK_DOT] = ACTIONS(2227), + [anon_sym_POUND_LBRACK] = ACTIONS(2227), + [anon_sym_if] = ACTIONS(2229), + [anon_sym_DOLLARif] = ACTIONS(2229), + [anon_sym_is] = ACTIONS(2229), + [anon_sym_BANGis] = ACTIONS(2227), + [anon_sym_in] = ACTIONS(2229), + [anon_sym_BANGin] = ACTIONS(2227), + [anon_sym_match] = ACTIONS(2229), + [anon_sym_select] = ACTIONS(2229), + [anon_sym_lock] = ACTIONS(2229), + [anon_sym_rlock] = ACTIONS(2229), + [anon_sym_unsafe] = ACTIONS(2229), + [anon_sym_sql] = ACTIONS(2229), + [sym_int_literal] = ACTIONS(2229), + [sym_float_literal] = ACTIONS(2227), + [sym_rune_literal] = ACTIONS(2227), + [sym_pseudo_compile_time_identifier] = ACTIONS(2229), + [anon_sym_shared] = ACTIONS(2229), + [anon_sym_map_LBRACK] = ACTIONS(2227), + [anon_sym_chan] = ACTIONS(2229), + [anon_sym_thread] = ACTIONS(2229), + [anon_sym_atomic] = ACTIONS(2229), + [sym___double_quote] = ACTIONS(2227), + [sym___single_quote] = ACTIONS(2227), + [sym___c_double_quote] = ACTIONS(2227), + [sym___c_single_quote] = ACTIONS(2227), + [sym___r_double_quote] = ACTIONS(2227), + [sym___r_single_quote] = ACTIONS(2227), }, [1300] = { [sym_line_comment] = STATE(1300), [sym_block_comment] = STATE(1300), - [sym_identifier] = ACTIONS(2293), + [sym_identifier] = ACTIONS(2914), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(2293), - [anon_sym_as] = ACTIONS(2293), - [anon_sym_LBRACE] = ACTIONS(2291), - [anon_sym_COMMA] = ACTIONS(2291), - [anon_sym_RBRACE] = ACTIONS(2291), - [anon_sym_LPAREN] = ACTIONS(2291), - [anon_sym_PIPE] = ACTIONS(2293), - [anon_sym_fn] = ACTIONS(2293), - [anon_sym_PLUS] = ACTIONS(2293), - [anon_sym_DASH] = ACTIONS(2293), - [anon_sym_STAR] = ACTIONS(2291), - [anon_sym_SLASH] = ACTIONS(2293), - [anon_sym_PERCENT] = ACTIONS(2291), - [anon_sym_LT] = ACTIONS(2293), - [anon_sym_GT] = ACTIONS(2293), - [anon_sym_EQ_EQ] = ACTIONS(2291), - [anon_sym_BANG_EQ] = ACTIONS(2291), - [anon_sym_LT_EQ] = ACTIONS(2291), - [anon_sym_GT_EQ] = ACTIONS(2291), - [anon_sym_LBRACK] = ACTIONS(2291), - [anon_sym_RBRACK] = ACTIONS(2291), - [anon_sym_struct] = ACTIONS(2293), - [anon_sym_mut] = ACTIONS(2293), - [anon_sym_COLON] = ACTIONS(2291), - [anon_sym_PLUS_PLUS] = ACTIONS(2291), - [anon_sym_DASH_DASH] = ACTIONS(2291), - [anon_sym_QMARK] = ACTIONS(2293), - [anon_sym_BANG] = ACTIONS(2293), - [anon_sym_go] = ACTIONS(2293), - [anon_sym_spawn] = ACTIONS(2293), - [anon_sym_json_DOTdecode] = ACTIONS(2291), - [anon_sym_LBRACK2] = ACTIONS(2293), - [anon_sym_TILDE] = ACTIONS(2291), - [anon_sym_CARET] = ACTIONS(2291), - [anon_sym_AMP] = ACTIONS(2293), - [anon_sym_LT_DASH] = ACTIONS(2291), - [anon_sym_LT_LT] = ACTIONS(2291), - [anon_sym_GT_GT] = ACTIONS(2293), - [anon_sym_GT_GT_GT] = ACTIONS(2291), - [anon_sym_AMP_CARET] = ACTIONS(2291), - [anon_sym_AMP_AMP] = ACTIONS(2291), - [anon_sym_PIPE_PIPE] = ACTIONS(2291), - [anon_sym_or] = ACTIONS(2293), - [sym_none] = ACTIONS(2293), - [sym_true] = ACTIONS(2293), - [sym_false] = ACTIONS(2293), - [sym_nil] = ACTIONS(2293), - [anon_sym_QMARK_DOT] = ACTIONS(2291), - [anon_sym_POUND_LBRACK] = ACTIONS(2291), - [anon_sym_if] = ACTIONS(2293), - [anon_sym_DOLLARif] = ACTIONS(2293), - [anon_sym_is] = ACTIONS(2293), - [anon_sym_BANGis] = ACTIONS(2291), - [anon_sym_in] = ACTIONS(2293), - [anon_sym_BANGin] = ACTIONS(2291), - [anon_sym_match] = ACTIONS(2293), - [anon_sym_select] = ACTIONS(2293), - [anon_sym_lock] = ACTIONS(2293), - [anon_sym_rlock] = ACTIONS(2293), - [anon_sym_unsafe] = ACTIONS(2293), - [anon_sym_sql] = ACTIONS(2293), - [sym_int_literal] = ACTIONS(2293), - [sym_float_literal] = ACTIONS(2291), - [sym_rune_literal] = ACTIONS(2291), - [sym_pseudo_compile_time_identifier] = ACTIONS(2293), - [anon_sym_shared] = ACTIONS(2293), - [anon_sym_map_LBRACK] = ACTIONS(2291), - [anon_sym_chan] = ACTIONS(2293), - [anon_sym_thread] = ACTIONS(2293), - [anon_sym_atomic] = ACTIONS(2293), - [sym___double_quote] = ACTIONS(2291), - [sym___single_quote] = ACTIONS(2291), - [sym___c_double_quote] = ACTIONS(2291), - [sym___c_single_quote] = ACTIONS(2291), - [sym___r_double_quote] = ACTIONS(2291), - [sym___r_single_quote] = ACTIONS(2291), + [anon_sym_DOT] = ACTIONS(2914), + [anon_sym_as] = ACTIONS(2914), + [anon_sym_LBRACE] = ACTIONS(2912), + [anon_sym_COMMA] = ACTIONS(2912), + [anon_sym_RBRACE] = ACTIONS(2912), + [anon_sym_LPAREN] = ACTIONS(2912), + [anon_sym_PIPE] = ACTIONS(2914), + [anon_sym_fn] = ACTIONS(2914), + [anon_sym_PLUS] = ACTIONS(2914), + [anon_sym_DASH] = ACTIONS(2914), + [anon_sym_STAR] = ACTIONS(2912), + [anon_sym_SLASH] = ACTIONS(2914), + [anon_sym_PERCENT] = ACTIONS(2912), + [anon_sym_LT] = ACTIONS(2914), + [anon_sym_GT] = ACTIONS(2914), + [anon_sym_EQ_EQ] = ACTIONS(2912), + [anon_sym_BANG_EQ] = ACTIONS(2912), + [anon_sym_LT_EQ] = ACTIONS(2912), + [anon_sym_GT_EQ] = ACTIONS(2912), + [anon_sym_LBRACK] = ACTIONS(2912), + [anon_sym_RBRACK] = ACTIONS(2912), + [anon_sym_struct] = ACTIONS(2914), + [anon_sym_mut] = ACTIONS(2914), + [anon_sym_COLON] = ACTIONS(2912), + [anon_sym_PLUS_PLUS] = ACTIONS(2912), + [anon_sym_DASH_DASH] = ACTIONS(2912), + [anon_sym_QMARK] = ACTIONS(2914), + [anon_sym_BANG] = ACTIONS(2914), + [anon_sym_go] = ACTIONS(2914), + [anon_sym_spawn] = ACTIONS(2914), + [anon_sym_json_DOTdecode] = ACTIONS(2912), + [anon_sym_LBRACK2] = ACTIONS(2914), + [anon_sym_TILDE] = ACTIONS(2912), + [anon_sym_CARET] = ACTIONS(2912), + [anon_sym_AMP] = ACTIONS(2914), + [anon_sym_LT_DASH] = ACTIONS(2912), + [anon_sym_LT_LT] = ACTIONS(2912), + [anon_sym_GT_GT] = ACTIONS(2914), + [anon_sym_GT_GT_GT] = ACTIONS(2912), + [anon_sym_AMP_CARET] = ACTIONS(2912), + [anon_sym_AMP_AMP] = ACTIONS(2912), + [anon_sym_PIPE_PIPE] = ACTIONS(2912), + [anon_sym_or] = ACTIONS(2914), + [sym_none] = ACTIONS(2914), + [sym_true] = ACTIONS(2914), + [sym_false] = ACTIONS(2914), + [sym_nil] = ACTIONS(2914), + [anon_sym_QMARK_DOT] = ACTIONS(2912), + [anon_sym_POUND_LBRACK] = ACTIONS(2912), + [anon_sym_if] = ACTIONS(2914), + [anon_sym_DOLLARif] = ACTIONS(2914), + [anon_sym_is] = ACTIONS(2914), + [anon_sym_BANGis] = ACTIONS(2912), + [anon_sym_in] = ACTIONS(2914), + [anon_sym_BANGin] = ACTIONS(2912), + [anon_sym_match] = ACTIONS(2914), + [anon_sym_select] = ACTIONS(2914), + [anon_sym_lock] = ACTIONS(2914), + [anon_sym_rlock] = ACTIONS(2914), + [anon_sym_unsafe] = ACTIONS(2914), + [anon_sym_sql] = ACTIONS(2914), + [sym_int_literal] = ACTIONS(2914), + [sym_float_literal] = ACTIONS(2912), + [sym_rune_literal] = ACTIONS(2912), + [sym_pseudo_compile_time_identifier] = ACTIONS(2914), + [anon_sym_shared] = ACTIONS(2914), + [anon_sym_map_LBRACK] = ACTIONS(2912), + [anon_sym_chan] = ACTIONS(2914), + [anon_sym_thread] = ACTIONS(2914), + [anon_sym_atomic] = ACTIONS(2914), + [sym___double_quote] = ACTIONS(2912), + [sym___single_quote] = ACTIONS(2912), + [sym___c_double_quote] = ACTIONS(2912), + [sym___c_single_quote] = ACTIONS(2912), + [sym___r_double_quote] = ACTIONS(2912), + [sym___r_single_quote] = ACTIONS(2912), }, [1301] = { [sym_line_comment] = STATE(1301), [sym_block_comment] = STATE(1301), - [sym_identifier] = ACTIONS(2121), + [sym_identifier] = ACTIONS(2918), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(2121), - [anon_sym_as] = ACTIONS(2121), - [anon_sym_LBRACE] = ACTIONS(2119), - [anon_sym_COMMA] = ACTIONS(2119), - [anon_sym_RBRACE] = ACTIONS(2119), - [anon_sym_LPAREN] = ACTIONS(2119), - [anon_sym_PIPE] = ACTIONS(2121), - [anon_sym_fn] = ACTIONS(2121), - [anon_sym_PLUS] = ACTIONS(2121), - [anon_sym_DASH] = ACTIONS(2121), - [anon_sym_STAR] = ACTIONS(2119), - [anon_sym_SLASH] = ACTIONS(2121), - [anon_sym_PERCENT] = ACTIONS(2119), - [anon_sym_LT] = ACTIONS(2121), - [anon_sym_GT] = ACTIONS(2121), - [anon_sym_EQ_EQ] = ACTIONS(2119), - [anon_sym_BANG_EQ] = ACTIONS(2119), - [anon_sym_LT_EQ] = ACTIONS(2119), - [anon_sym_GT_EQ] = ACTIONS(2119), - [anon_sym_LBRACK] = ACTIONS(2119), - [anon_sym_RBRACK] = ACTIONS(2119), - [anon_sym_struct] = ACTIONS(2121), - [anon_sym_mut] = ACTIONS(2121), - [anon_sym_COLON] = ACTIONS(2119), - [anon_sym_PLUS_PLUS] = ACTIONS(2119), - [anon_sym_DASH_DASH] = ACTIONS(2119), - [anon_sym_QMARK] = ACTIONS(2121), - [anon_sym_BANG] = ACTIONS(2121), - [anon_sym_go] = ACTIONS(2121), - [anon_sym_spawn] = ACTIONS(2121), - [anon_sym_json_DOTdecode] = ACTIONS(2119), - [anon_sym_LBRACK2] = ACTIONS(2121), - [anon_sym_TILDE] = ACTIONS(2119), - [anon_sym_CARET] = ACTIONS(2119), - [anon_sym_AMP] = ACTIONS(2121), - [anon_sym_LT_DASH] = ACTIONS(2119), - [anon_sym_LT_LT] = ACTIONS(2119), - [anon_sym_GT_GT] = ACTIONS(2121), - [anon_sym_GT_GT_GT] = ACTIONS(2119), - [anon_sym_AMP_CARET] = ACTIONS(2119), - [anon_sym_AMP_AMP] = ACTIONS(2119), - [anon_sym_PIPE_PIPE] = ACTIONS(2119), - [anon_sym_or] = ACTIONS(2121), - [sym_none] = ACTIONS(2121), - [sym_true] = ACTIONS(2121), - [sym_false] = ACTIONS(2121), - [sym_nil] = ACTIONS(2121), - [anon_sym_QMARK_DOT] = ACTIONS(2119), - [anon_sym_POUND_LBRACK] = ACTIONS(2119), - [anon_sym_if] = ACTIONS(2121), - [anon_sym_DOLLARif] = ACTIONS(2121), - [anon_sym_is] = ACTIONS(2121), - [anon_sym_BANGis] = ACTIONS(2119), - [anon_sym_in] = ACTIONS(2121), - [anon_sym_BANGin] = ACTIONS(2119), - [anon_sym_match] = ACTIONS(2121), - [anon_sym_select] = ACTIONS(2121), - [anon_sym_lock] = ACTIONS(2121), - [anon_sym_rlock] = ACTIONS(2121), - [anon_sym_unsafe] = ACTIONS(2121), - [anon_sym_sql] = ACTIONS(2121), - [sym_int_literal] = ACTIONS(2121), - [sym_float_literal] = ACTIONS(2119), - [sym_rune_literal] = ACTIONS(2119), - [sym_pseudo_compile_time_identifier] = ACTIONS(2121), - [anon_sym_shared] = ACTIONS(2121), - [anon_sym_map_LBRACK] = ACTIONS(2119), - [anon_sym_chan] = ACTIONS(2121), - [anon_sym_thread] = ACTIONS(2121), - [anon_sym_atomic] = ACTIONS(2121), - [sym___double_quote] = ACTIONS(2119), - [sym___single_quote] = ACTIONS(2119), - [sym___c_double_quote] = ACTIONS(2119), - [sym___c_single_quote] = ACTIONS(2119), - [sym___r_double_quote] = ACTIONS(2119), - [sym___r_single_quote] = ACTIONS(2119), + [anon_sym_DOT] = ACTIONS(2918), + [anon_sym_as] = ACTIONS(2918), + [anon_sym_LBRACE] = ACTIONS(2916), + [anon_sym_COMMA] = ACTIONS(2916), + [anon_sym_RBRACE] = ACTIONS(2916), + [anon_sym_LPAREN] = ACTIONS(2916), + [anon_sym_PIPE] = ACTIONS(2918), + [anon_sym_fn] = ACTIONS(2918), + [anon_sym_PLUS] = ACTIONS(2918), + [anon_sym_DASH] = ACTIONS(2918), + [anon_sym_STAR] = ACTIONS(2916), + [anon_sym_SLASH] = ACTIONS(2918), + [anon_sym_PERCENT] = ACTIONS(2916), + [anon_sym_LT] = ACTIONS(2918), + [anon_sym_GT] = ACTIONS(2918), + [anon_sym_EQ_EQ] = ACTIONS(2916), + [anon_sym_BANG_EQ] = ACTIONS(2916), + [anon_sym_LT_EQ] = ACTIONS(2916), + [anon_sym_GT_EQ] = ACTIONS(2916), + [anon_sym_LBRACK] = ACTIONS(2916), + [anon_sym_RBRACK] = ACTIONS(2916), + [anon_sym_struct] = ACTIONS(2918), + [anon_sym_mut] = ACTIONS(2918), + [anon_sym_COLON] = ACTIONS(2916), + [anon_sym_PLUS_PLUS] = ACTIONS(2916), + [anon_sym_DASH_DASH] = ACTIONS(2916), + [anon_sym_QMARK] = ACTIONS(2918), + [anon_sym_BANG] = ACTIONS(2918), + [anon_sym_go] = ACTIONS(2918), + [anon_sym_spawn] = ACTIONS(2918), + [anon_sym_json_DOTdecode] = ACTIONS(2916), + [anon_sym_LBRACK2] = ACTIONS(2918), + [anon_sym_TILDE] = ACTIONS(2916), + [anon_sym_CARET] = ACTIONS(2916), + [anon_sym_AMP] = ACTIONS(2918), + [anon_sym_LT_DASH] = ACTIONS(2916), + [anon_sym_LT_LT] = ACTIONS(2916), + [anon_sym_GT_GT] = ACTIONS(2918), + [anon_sym_GT_GT_GT] = ACTIONS(2916), + [anon_sym_AMP_CARET] = ACTIONS(2916), + [anon_sym_AMP_AMP] = ACTIONS(2916), + [anon_sym_PIPE_PIPE] = ACTIONS(2916), + [anon_sym_or] = ACTIONS(2918), + [sym_none] = ACTIONS(2918), + [sym_true] = ACTIONS(2918), + [sym_false] = ACTIONS(2918), + [sym_nil] = ACTIONS(2918), + [anon_sym_QMARK_DOT] = ACTIONS(2916), + [anon_sym_POUND_LBRACK] = ACTIONS(2916), + [anon_sym_if] = ACTIONS(2918), + [anon_sym_DOLLARif] = ACTIONS(2918), + [anon_sym_is] = ACTIONS(2918), + [anon_sym_BANGis] = ACTIONS(2916), + [anon_sym_in] = ACTIONS(2918), + [anon_sym_BANGin] = ACTIONS(2916), + [anon_sym_match] = ACTIONS(2918), + [anon_sym_select] = ACTIONS(2918), + [anon_sym_lock] = ACTIONS(2918), + [anon_sym_rlock] = ACTIONS(2918), + [anon_sym_unsafe] = ACTIONS(2918), + [anon_sym_sql] = ACTIONS(2918), + [sym_int_literal] = ACTIONS(2918), + [sym_float_literal] = ACTIONS(2916), + [sym_rune_literal] = ACTIONS(2916), + [sym_pseudo_compile_time_identifier] = ACTIONS(2918), + [anon_sym_shared] = ACTIONS(2918), + [anon_sym_map_LBRACK] = ACTIONS(2916), + [anon_sym_chan] = ACTIONS(2918), + [anon_sym_thread] = ACTIONS(2918), + [anon_sym_atomic] = ACTIONS(2918), + [sym___double_quote] = ACTIONS(2916), + [sym___single_quote] = ACTIONS(2916), + [sym___c_double_quote] = ACTIONS(2916), + [sym___c_single_quote] = ACTIONS(2916), + [sym___r_double_quote] = ACTIONS(2916), + [sym___r_single_quote] = ACTIONS(2916), }, [1302] = { [sym_line_comment] = STATE(1302), [sym_block_comment] = STATE(1302), - [sym_identifier] = ACTIONS(2681), + [sym_identifier] = ACTIONS(2728), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [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_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(2728), + [anon_sym_as] = ACTIONS(2728), + [anon_sym_LBRACE] = ACTIONS(2726), + [anon_sym_COMMA] = ACTIONS(2726), + [anon_sym_RBRACE] = ACTIONS(2726), + [anon_sym_LPAREN] = ACTIONS(2726), + [anon_sym_PIPE] = ACTIONS(2728), + [anon_sym_fn] = ACTIONS(2728), + [anon_sym_PLUS] = ACTIONS(2728), + [anon_sym_DASH] = ACTIONS(2728), + [anon_sym_STAR] = ACTIONS(2726), + [anon_sym_SLASH] = ACTIONS(2728), + [anon_sym_PERCENT] = ACTIONS(2726), + [anon_sym_LT] = ACTIONS(2728), + [anon_sym_GT] = ACTIONS(2728), + [anon_sym_EQ_EQ] = ACTIONS(2726), + [anon_sym_BANG_EQ] = ACTIONS(2726), + [anon_sym_LT_EQ] = ACTIONS(2726), + [anon_sym_GT_EQ] = ACTIONS(2726), + [anon_sym_LBRACK] = ACTIONS(2726), + [anon_sym_RBRACK] = ACTIONS(2726), + [anon_sym_struct] = ACTIONS(2728), + [anon_sym_mut] = ACTIONS(2728), + [anon_sym_COLON] = ACTIONS(2726), + [anon_sym_PLUS_PLUS] = ACTIONS(2726), + [anon_sym_DASH_DASH] = ACTIONS(2726), + [anon_sym_QMARK] = ACTIONS(2728), + [anon_sym_BANG] = ACTIONS(2728), + [anon_sym_go] = ACTIONS(2728), + [anon_sym_spawn] = ACTIONS(2728), + [anon_sym_json_DOTdecode] = ACTIONS(2726), + [anon_sym_LBRACK2] = ACTIONS(2728), + [anon_sym_TILDE] = ACTIONS(2726), + [anon_sym_CARET] = ACTIONS(2726), + [anon_sym_AMP] = ACTIONS(2728), + [anon_sym_LT_DASH] = ACTIONS(2726), + [anon_sym_LT_LT] = ACTIONS(2726), + [anon_sym_GT_GT] = ACTIONS(2728), + [anon_sym_GT_GT_GT] = ACTIONS(2726), + [anon_sym_AMP_CARET] = ACTIONS(2726), + [anon_sym_AMP_AMP] = ACTIONS(2726), + [anon_sym_PIPE_PIPE] = ACTIONS(2726), + [anon_sym_or] = ACTIONS(2728), + [sym_none] = ACTIONS(2728), + [sym_true] = ACTIONS(2728), + [sym_false] = ACTIONS(2728), + [sym_nil] = ACTIONS(2728), + [anon_sym_QMARK_DOT] = ACTIONS(2726), + [anon_sym_POUND_LBRACK] = ACTIONS(2726), + [anon_sym_if] = ACTIONS(2728), + [anon_sym_DOLLARif] = ACTIONS(2728), + [anon_sym_is] = ACTIONS(2728), + [anon_sym_BANGis] = ACTIONS(2726), + [anon_sym_in] = ACTIONS(2728), + [anon_sym_BANGin] = ACTIONS(2726), + [anon_sym_match] = ACTIONS(2728), + [anon_sym_select] = ACTIONS(2728), + [anon_sym_lock] = ACTIONS(2728), + [anon_sym_rlock] = ACTIONS(2728), + [anon_sym_unsafe] = ACTIONS(2728), + [anon_sym_sql] = ACTIONS(2728), + [sym_int_literal] = ACTIONS(2728), + [sym_float_literal] = ACTIONS(2726), + [sym_rune_literal] = ACTIONS(2726), + [sym_pseudo_compile_time_identifier] = ACTIONS(2728), + [anon_sym_shared] = ACTIONS(2728), + [anon_sym_map_LBRACK] = ACTIONS(2726), + [anon_sym_chan] = ACTIONS(2728), + [anon_sym_thread] = ACTIONS(2728), + [anon_sym_atomic] = ACTIONS(2728), + [sym___double_quote] = ACTIONS(2726), + [sym___single_quote] = ACTIONS(2726), + [sym___c_double_quote] = ACTIONS(2726), + [sym___c_single_quote] = ACTIONS(2726), + [sym___r_double_quote] = ACTIONS(2726), + [sym___r_single_quote] = ACTIONS(2726), }, [1303] = { [sym_line_comment] = STATE(1303), [sym_block_comment] = STATE(1303), - [sym_identifier] = ACTIONS(2745), + [sym_identifier] = ACTIONS(1881), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(2745), - [anon_sym_as] = ACTIONS(2745), - [anon_sym_LBRACE] = ACTIONS(2743), - [anon_sym_COMMA] = ACTIONS(2743), - [anon_sym_RBRACE] = ACTIONS(2743), - [anon_sym_LPAREN] = ACTIONS(2743), - [anon_sym_PIPE] = ACTIONS(2745), - [anon_sym_fn] = ACTIONS(2745), - [anon_sym_PLUS] = ACTIONS(2745), - [anon_sym_DASH] = ACTIONS(2745), - [anon_sym_STAR] = ACTIONS(2743), - [anon_sym_SLASH] = ACTIONS(2745), - [anon_sym_PERCENT] = ACTIONS(2743), - [anon_sym_LT] = ACTIONS(2745), - [anon_sym_GT] = ACTIONS(2745), - [anon_sym_EQ_EQ] = ACTIONS(2743), - [anon_sym_BANG_EQ] = ACTIONS(2743), - [anon_sym_LT_EQ] = ACTIONS(2743), - [anon_sym_GT_EQ] = ACTIONS(2743), - [anon_sym_LBRACK] = ACTIONS(2743), - [anon_sym_RBRACK] = ACTIONS(2743), - [anon_sym_struct] = ACTIONS(2745), - [anon_sym_mut] = ACTIONS(2745), - [anon_sym_COLON] = ACTIONS(2743), - [anon_sym_PLUS_PLUS] = ACTIONS(2743), - [anon_sym_DASH_DASH] = ACTIONS(2743), - [anon_sym_QMARK] = ACTIONS(2745), - [anon_sym_BANG] = ACTIONS(2745), - [anon_sym_go] = ACTIONS(2745), - [anon_sym_spawn] = ACTIONS(2745), - [anon_sym_json_DOTdecode] = ACTIONS(2743), - [anon_sym_LBRACK2] = ACTIONS(2745), - [anon_sym_TILDE] = ACTIONS(2743), - [anon_sym_CARET] = ACTIONS(2743), - [anon_sym_AMP] = ACTIONS(2745), - [anon_sym_LT_DASH] = ACTIONS(2743), - [anon_sym_LT_LT] = ACTIONS(2743), - [anon_sym_GT_GT] = ACTIONS(2745), - [anon_sym_GT_GT_GT] = ACTIONS(2743), - [anon_sym_AMP_CARET] = ACTIONS(2743), - [anon_sym_AMP_AMP] = ACTIONS(2743), - [anon_sym_PIPE_PIPE] = ACTIONS(2743), - [anon_sym_or] = ACTIONS(2745), - [sym_none] = ACTIONS(2745), - [sym_true] = ACTIONS(2745), - [sym_false] = ACTIONS(2745), - [sym_nil] = ACTIONS(2745), - [anon_sym_QMARK_DOT] = ACTIONS(2743), - [anon_sym_POUND_LBRACK] = ACTIONS(2743), - [anon_sym_if] = ACTIONS(2745), - [anon_sym_DOLLARif] = ACTIONS(2745), - [anon_sym_is] = ACTIONS(2745), - [anon_sym_BANGis] = ACTIONS(2743), - [anon_sym_in] = ACTIONS(2745), - [anon_sym_BANGin] = ACTIONS(2743), - [anon_sym_match] = ACTIONS(2745), - [anon_sym_select] = ACTIONS(2745), - [anon_sym_lock] = ACTIONS(2745), - [anon_sym_rlock] = ACTIONS(2745), - [anon_sym_unsafe] = ACTIONS(2745), - [anon_sym_sql] = ACTIONS(2745), - [sym_int_literal] = ACTIONS(2745), - [sym_float_literal] = ACTIONS(2743), - [sym_rune_literal] = ACTIONS(2743), - [sym_pseudo_compile_time_identifier] = ACTIONS(2745), - [anon_sym_shared] = ACTIONS(2745), - [anon_sym_map_LBRACK] = ACTIONS(2743), - [anon_sym_chan] = ACTIONS(2745), - [anon_sym_thread] = ACTIONS(2745), - [anon_sym_atomic] = ACTIONS(2745), - [sym___double_quote] = ACTIONS(2743), - [sym___single_quote] = ACTIONS(2743), - [sym___c_double_quote] = ACTIONS(2743), - [sym___c_single_quote] = ACTIONS(2743), - [sym___r_double_quote] = ACTIONS(2743), - [sym___r_single_quote] = ACTIONS(2743), + [anon_sym_DOT] = ACTIONS(1881), + [anon_sym_as] = ACTIONS(1881), + [anon_sym_LBRACE] = ACTIONS(1879), + [anon_sym_COMMA] = ACTIONS(1879), + [anon_sym_RBRACE] = ACTIONS(1879), + [anon_sym_LPAREN] = ACTIONS(1879), + [anon_sym_PIPE] = ACTIONS(1881), + [anon_sym_fn] = ACTIONS(1881), + [anon_sym_PLUS] = ACTIONS(1881), + [anon_sym_DASH] = ACTIONS(1881), + [anon_sym_STAR] = ACTIONS(1879), + [anon_sym_SLASH] = ACTIONS(1881), + [anon_sym_PERCENT] = ACTIONS(1879), + [anon_sym_LT] = ACTIONS(1881), + [anon_sym_GT] = ACTIONS(1881), + [anon_sym_EQ_EQ] = ACTIONS(1879), + [anon_sym_BANG_EQ] = ACTIONS(1879), + [anon_sym_LT_EQ] = ACTIONS(1879), + [anon_sym_GT_EQ] = ACTIONS(1879), + [anon_sym_LBRACK] = ACTIONS(1879), + [anon_sym_RBRACK] = ACTIONS(1879), + [anon_sym_struct] = ACTIONS(1881), + [anon_sym_mut] = ACTIONS(1881), + [anon_sym_COLON] = ACTIONS(1879), + [anon_sym_PLUS_PLUS] = ACTIONS(1879), + [anon_sym_DASH_DASH] = ACTIONS(1879), + [anon_sym_QMARK] = ACTIONS(1881), + [anon_sym_BANG] = ACTIONS(1881), + [anon_sym_go] = ACTIONS(1881), + [anon_sym_spawn] = ACTIONS(1881), + [anon_sym_json_DOTdecode] = ACTIONS(1879), + [anon_sym_LBRACK2] = ACTIONS(1881), + [anon_sym_TILDE] = ACTIONS(1879), + [anon_sym_CARET] = ACTIONS(1879), + [anon_sym_AMP] = ACTIONS(1881), + [anon_sym_LT_DASH] = ACTIONS(1879), + [anon_sym_LT_LT] = ACTIONS(1879), + [anon_sym_GT_GT] = ACTIONS(1881), + [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(1881), + [sym_none] = ACTIONS(1881), + [sym_true] = ACTIONS(1881), + [sym_false] = ACTIONS(1881), + [sym_nil] = ACTIONS(1881), + [anon_sym_QMARK_DOT] = ACTIONS(1879), + [anon_sym_POUND_LBRACK] = ACTIONS(1879), + [anon_sym_if] = ACTIONS(1881), + [anon_sym_DOLLARif] = ACTIONS(1881), + [anon_sym_is] = ACTIONS(1881), + [anon_sym_BANGis] = ACTIONS(1879), + [anon_sym_in] = ACTIONS(1881), + [anon_sym_BANGin] = ACTIONS(1879), + [anon_sym_match] = ACTIONS(1881), + [anon_sym_select] = ACTIONS(1881), + [anon_sym_lock] = ACTIONS(1881), + [anon_sym_rlock] = ACTIONS(1881), + [anon_sym_unsafe] = ACTIONS(1881), + [anon_sym_sql] = ACTIONS(1881), + [sym_int_literal] = ACTIONS(1881), + [sym_float_literal] = ACTIONS(1879), + [sym_rune_literal] = ACTIONS(1879), + [sym_pseudo_compile_time_identifier] = ACTIONS(1881), + [anon_sym_shared] = ACTIONS(1881), + [anon_sym_map_LBRACK] = ACTIONS(1879), + [anon_sym_chan] = ACTIONS(1881), + [anon_sym_thread] = ACTIONS(1881), + [anon_sym_atomic] = ACTIONS(1881), + [sym___double_quote] = ACTIONS(1879), + [sym___single_quote] = ACTIONS(1879), + [sym___c_double_quote] = ACTIONS(1879), + [sym___c_single_quote] = ACTIONS(1879), + [sym___r_double_quote] = ACTIONS(1879), + [sym___r_single_quote] = ACTIONS(1879), }, [1304] = { [sym_line_comment] = STATE(1304), [sym_block_comment] = STATE(1304), - [sym_identifier] = ACTIONS(2749), + [sym_identifier] = ACTIONS(2924), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(2749), - [anon_sym_as] = ACTIONS(2749), - [anon_sym_LBRACE] = ACTIONS(2747), - [anon_sym_COMMA] = ACTIONS(2747), - [anon_sym_RBRACE] = ACTIONS(2747), - [anon_sym_LPAREN] = ACTIONS(2747), - [anon_sym_PIPE] = ACTIONS(2749), - [anon_sym_fn] = ACTIONS(2749), - [anon_sym_PLUS] = ACTIONS(2749), - [anon_sym_DASH] = ACTIONS(2749), - [anon_sym_STAR] = ACTIONS(2747), - [anon_sym_SLASH] = ACTIONS(2749), - [anon_sym_PERCENT] = ACTIONS(2747), - [anon_sym_LT] = ACTIONS(2749), - [anon_sym_GT] = ACTIONS(2749), - [anon_sym_EQ_EQ] = ACTIONS(2747), - [anon_sym_BANG_EQ] = ACTIONS(2747), - [anon_sym_LT_EQ] = ACTIONS(2747), - [anon_sym_GT_EQ] = ACTIONS(2747), - [anon_sym_LBRACK] = ACTIONS(2747), - [anon_sym_RBRACK] = ACTIONS(2747), - [anon_sym_struct] = ACTIONS(2749), - [anon_sym_mut] = ACTIONS(2749), - [anon_sym_COLON] = ACTIONS(2747), - [anon_sym_PLUS_PLUS] = ACTIONS(2747), - [anon_sym_DASH_DASH] = ACTIONS(2747), - [anon_sym_QMARK] = ACTIONS(2749), - [anon_sym_BANG] = ACTIONS(2749), - [anon_sym_go] = ACTIONS(2749), - [anon_sym_spawn] = ACTIONS(2749), - [anon_sym_json_DOTdecode] = ACTIONS(2747), - [anon_sym_LBRACK2] = ACTIONS(2749), - [anon_sym_TILDE] = ACTIONS(2747), - [anon_sym_CARET] = ACTIONS(2747), - [anon_sym_AMP] = ACTIONS(2749), - [anon_sym_LT_DASH] = ACTIONS(2747), - [anon_sym_LT_LT] = ACTIONS(2747), - [anon_sym_GT_GT] = ACTIONS(2749), - [anon_sym_GT_GT_GT] = ACTIONS(2747), - [anon_sym_AMP_CARET] = ACTIONS(2747), - [anon_sym_AMP_AMP] = ACTIONS(2747), - [anon_sym_PIPE_PIPE] = ACTIONS(2747), - [anon_sym_or] = ACTIONS(2749), - [sym_none] = ACTIONS(2749), - [sym_true] = ACTIONS(2749), - [sym_false] = ACTIONS(2749), - [sym_nil] = ACTIONS(2749), - [anon_sym_QMARK_DOT] = ACTIONS(2747), - [anon_sym_POUND_LBRACK] = ACTIONS(2747), - [anon_sym_if] = ACTIONS(2749), - [anon_sym_DOLLARif] = ACTIONS(2749), - [anon_sym_is] = ACTIONS(2749), - [anon_sym_BANGis] = ACTIONS(2747), - [anon_sym_in] = ACTIONS(2749), - [anon_sym_BANGin] = ACTIONS(2747), - [anon_sym_match] = ACTIONS(2749), - [anon_sym_select] = ACTIONS(2749), - [anon_sym_lock] = ACTIONS(2749), - [anon_sym_rlock] = ACTIONS(2749), - [anon_sym_unsafe] = ACTIONS(2749), - [anon_sym_sql] = ACTIONS(2749), - [sym_int_literal] = ACTIONS(2749), - [sym_float_literal] = ACTIONS(2747), - [sym_rune_literal] = ACTIONS(2747), - [sym_pseudo_compile_time_identifier] = ACTIONS(2749), - [anon_sym_shared] = ACTIONS(2749), - [anon_sym_map_LBRACK] = ACTIONS(2747), - [anon_sym_chan] = ACTIONS(2749), - [anon_sym_thread] = ACTIONS(2749), - [anon_sym_atomic] = ACTIONS(2749), - [sym___double_quote] = ACTIONS(2747), - [sym___single_quote] = ACTIONS(2747), - [sym___c_double_quote] = ACTIONS(2747), - [sym___c_single_quote] = ACTIONS(2747), - [sym___r_double_quote] = ACTIONS(2747), - [sym___r_single_quote] = ACTIONS(2747), + [anon_sym_DOT] = ACTIONS(2924), + [anon_sym_as] = ACTIONS(2924), + [anon_sym_LBRACE] = ACTIONS(2922), + [anon_sym_COMMA] = ACTIONS(2922), + [anon_sym_RBRACE] = ACTIONS(2922), + [anon_sym_LPAREN] = ACTIONS(2922), + [anon_sym_PIPE] = ACTIONS(2924), + [anon_sym_fn] = ACTIONS(2924), + [anon_sym_PLUS] = ACTIONS(2924), + [anon_sym_DASH] = ACTIONS(2924), + [anon_sym_STAR] = ACTIONS(2922), + [anon_sym_SLASH] = ACTIONS(2924), + [anon_sym_PERCENT] = ACTIONS(2922), + [anon_sym_LT] = ACTIONS(2924), + [anon_sym_GT] = ACTIONS(2924), + [anon_sym_EQ_EQ] = ACTIONS(2922), + [anon_sym_BANG_EQ] = ACTIONS(2922), + [anon_sym_LT_EQ] = ACTIONS(2922), + [anon_sym_GT_EQ] = ACTIONS(2922), + [anon_sym_LBRACK] = ACTIONS(2922), + [anon_sym_RBRACK] = ACTIONS(2922), + [anon_sym_struct] = ACTIONS(2924), + [anon_sym_mut] = ACTIONS(2924), + [anon_sym_COLON] = ACTIONS(2922), + [anon_sym_PLUS_PLUS] = ACTIONS(2922), + [anon_sym_DASH_DASH] = ACTIONS(2922), + [anon_sym_QMARK] = ACTIONS(2924), + [anon_sym_BANG] = ACTIONS(2924), + [anon_sym_go] = ACTIONS(2924), + [anon_sym_spawn] = ACTIONS(2924), + [anon_sym_json_DOTdecode] = ACTIONS(2922), + [anon_sym_LBRACK2] = ACTIONS(2924), + [anon_sym_TILDE] = ACTIONS(2922), + [anon_sym_CARET] = ACTIONS(2922), + [anon_sym_AMP] = ACTIONS(2924), + [anon_sym_LT_DASH] = ACTIONS(2922), + [anon_sym_LT_LT] = ACTIONS(2922), + [anon_sym_GT_GT] = ACTIONS(2924), + [anon_sym_GT_GT_GT] = ACTIONS(2922), + [anon_sym_AMP_CARET] = ACTIONS(2922), + [anon_sym_AMP_AMP] = ACTIONS(2922), + [anon_sym_PIPE_PIPE] = ACTIONS(2922), + [anon_sym_or] = ACTIONS(2924), + [sym_none] = ACTIONS(2924), + [sym_true] = ACTIONS(2924), + [sym_false] = ACTIONS(2924), + [sym_nil] = ACTIONS(2924), + [anon_sym_QMARK_DOT] = ACTIONS(2922), + [anon_sym_POUND_LBRACK] = ACTIONS(2922), + [anon_sym_if] = ACTIONS(2924), + [anon_sym_DOLLARif] = ACTIONS(2924), + [anon_sym_is] = ACTIONS(2924), + [anon_sym_BANGis] = ACTIONS(2922), + [anon_sym_in] = ACTIONS(2924), + [anon_sym_BANGin] = ACTIONS(2922), + [anon_sym_match] = ACTIONS(2924), + [anon_sym_select] = ACTIONS(2924), + [anon_sym_lock] = ACTIONS(2924), + [anon_sym_rlock] = ACTIONS(2924), + [anon_sym_unsafe] = ACTIONS(2924), + [anon_sym_sql] = ACTIONS(2924), + [sym_int_literal] = ACTIONS(2924), + [sym_float_literal] = ACTIONS(2922), + [sym_rune_literal] = ACTIONS(2922), + [sym_pseudo_compile_time_identifier] = ACTIONS(2924), + [anon_sym_shared] = ACTIONS(2924), + [anon_sym_map_LBRACK] = ACTIONS(2922), + [anon_sym_chan] = ACTIONS(2924), + [anon_sym_thread] = ACTIONS(2924), + [anon_sym_atomic] = ACTIONS(2924), + [sym___double_quote] = ACTIONS(2922), + [sym___single_quote] = ACTIONS(2922), + [sym___c_double_quote] = ACTIONS(2922), + [sym___c_single_quote] = ACTIONS(2922), + [sym___r_double_quote] = ACTIONS(2922), + [sym___r_single_quote] = ACTIONS(2922), }, [1305] = { [sym_line_comment] = STATE(1305), [sym_block_comment] = STATE(1305), - [sym_identifier] = ACTIONS(2772), + [sym_identifier] = ACTIONS(2850), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(2772), - [anon_sym_as] = ACTIONS(2772), - [anon_sym_LBRACE] = ACTIONS(2770), - [anon_sym_COMMA] = ACTIONS(2770), - [anon_sym_RBRACE] = ACTIONS(2770), - [anon_sym_LPAREN] = ACTIONS(2770), - [anon_sym_PIPE] = ACTIONS(2772), - [anon_sym_fn] = ACTIONS(2772), - [anon_sym_PLUS] = ACTIONS(2772), - [anon_sym_DASH] = ACTIONS(2772), - [anon_sym_STAR] = ACTIONS(2770), - [anon_sym_SLASH] = ACTIONS(2772), - [anon_sym_PERCENT] = ACTIONS(2770), - [anon_sym_LT] = ACTIONS(2772), - [anon_sym_GT] = ACTIONS(2772), - [anon_sym_EQ_EQ] = ACTIONS(2770), - [anon_sym_BANG_EQ] = ACTIONS(2770), - [anon_sym_LT_EQ] = ACTIONS(2770), - [anon_sym_GT_EQ] = ACTIONS(2770), - [anon_sym_LBRACK] = ACTIONS(2770), - [anon_sym_RBRACK] = ACTIONS(2770), - [anon_sym_struct] = ACTIONS(2772), - [anon_sym_mut] = ACTIONS(2772), - [anon_sym_COLON] = ACTIONS(2770), - [anon_sym_PLUS_PLUS] = ACTIONS(2770), - [anon_sym_DASH_DASH] = ACTIONS(2770), - [anon_sym_QMARK] = ACTIONS(2772), - [anon_sym_BANG] = ACTIONS(2772), - [anon_sym_go] = ACTIONS(2772), - [anon_sym_spawn] = ACTIONS(2772), - [anon_sym_json_DOTdecode] = ACTIONS(2770), - [anon_sym_LBRACK2] = ACTIONS(2772), - [anon_sym_TILDE] = ACTIONS(2770), - [anon_sym_CARET] = ACTIONS(2770), - [anon_sym_AMP] = ACTIONS(2772), - [anon_sym_LT_DASH] = ACTIONS(2770), - [anon_sym_LT_LT] = ACTIONS(2770), - [anon_sym_GT_GT] = ACTIONS(2772), - [anon_sym_GT_GT_GT] = ACTIONS(2770), - [anon_sym_AMP_CARET] = ACTIONS(2770), - [anon_sym_AMP_AMP] = ACTIONS(2770), - [anon_sym_PIPE_PIPE] = ACTIONS(2770), - [anon_sym_or] = ACTIONS(2772), - [sym_none] = ACTIONS(2772), - [sym_true] = ACTIONS(2772), - [sym_false] = ACTIONS(2772), - [sym_nil] = ACTIONS(2772), - [anon_sym_QMARK_DOT] = ACTIONS(2770), - [anon_sym_POUND_LBRACK] = ACTIONS(2770), - [anon_sym_if] = ACTIONS(2772), - [anon_sym_DOLLARif] = ACTIONS(2772), - [anon_sym_is] = ACTIONS(2772), - [anon_sym_BANGis] = ACTIONS(2770), - [anon_sym_in] = ACTIONS(2772), - [anon_sym_BANGin] = ACTIONS(2770), - [anon_sym_match] = ACTIONS(2772), - [anon_sym_select] = ACTIONS(2772), - [anon_sym_lock] = ACTIONS(2772), - [anon_sym_rlock] = ACTIONS(2772), - [anon_sym_unsafe] = ACTIONS(2772), - [anon_sym_sql] = ACTIONS(2772), - [sym_int_literal] = ACTIONS(2772), - [sym_float_literal] = ACTIONS(2770), - [sym_rune_literal] = ACTIONS(2770), - [sym_pseudo_compile_time_identifier] = ACTIONS(2772), - [anon_sym_shared] = ACTIONS(2772), - [anon_sym_map_LBRACK] = ACTIONS(2770), - [anon_sym_chan] = ACTIONS(2772), - [anon_sym_thread] = ACTIONS(2772), - [anon_sym_atomic] = ACTIONS(2772), - [sym___double_quote] = ACTIONS(2770), - [sym___single_quote] = ACTIONS(2770), - [sym___c_double_quote] = ACTIONS(2770), - [sym___c_single_quote] = ACTIONS(2770), - [sym___r_double_quote] = ACTIONS(2770), - [sym___r_single_quote] = ACTIONS(2770), + [anon_sym_DOT] = ACTIONS(2850), + [anon_sym_as] = ACTIONS(2850), + [anon_sym_LBRACE] = ACTIONS(2848), + [anon_sym_COMMA] = ACTIONS(2848), + [anon_sym_RBRACE] = ACTIONS(2848), + [anon_sym_LPAREN] = ACTIONS(2848), + [anon_sym_PIPE] = ACTIONS(2850), + [anon_sym_fn] = ACTIONS(2850), + [anon_sym_PLUS] = ACTIONS(2850), + [anon_sym_DASH] = ACTIONS(2850), + [anon_sym_STAR] = ACTIONS(2848), + [anon_sym_SLASH] = ACTIONS(2850), + [anon_sym_PERCENT] = ACTIONS(2848), + [anon_sym_LT] = ACTIONS(2850), + [anon_sym_GT] = ACTIONS(2850), + [anon_sym_EQ_EQ] = ACTIONS(2848), + [anon_sym_BANG_EQ] = ACTIONS(2848), + [anon_sym_LT_EQ] = ACTIONS(2848), + [anon_sym_GT_EQ] = ACTIONS(2848), + [anon_sym_LBRACK] = ACTIONS(2848), + [anon_sym_RBRACK] = ACTIONS(2848), + [anon_sym_struct] = ACTIONS(2850), + [anon_sym_mut] = ACTIONS(2850), + [anon_sym_COLON] = ACTIONS(2848), + [anon_sym_PLUS_PLUS] = ACTIONS(2848), + [anon_sym_DASH_DASH] = ACTIONS(2848), + [anon_sym_QMARK] = ACTIONS(2850), + [anon_sym_BANG] = ACTIONS(2850), + [anon_sym_go] = ACTIONS(2850), + [anon_sym_spawn] = ACTIONS(2850), + [anon_sym_json_DOTdecode] = ACTIONS(2848), + [anon_sym_LBRACK2] = ACTIONS(2850), + [anon_sym_TILDE] = ACTIONS(2848), + [anon_sym_CARET] = ACTIONS(2848), + [anon_sym_AMP] = ACTIONS(2850), + [anon_sym_LT_DASH] = ACTIONS(2848), + [anon_sym_LT_LT] = ACTIONS(2848), + [anon_sym_GT_GT] = ACTIONS(2850), + [anon_sym_GT_GT_GT] = ACTIONS(2848), + [anon_sym_AMP_CARET] = ACTIONS(2848), + [anon_sym_AMP_AMP] = ACTIONS(2848), + [anon_sym_PIPE_PIPE] = ACTIONS(2848), + [anon_sym_or] = ACTIONS(2850), + [sym_none] = ACTIONS(2850), + [sym_true] = ACTIONS(2850), + [sym_false] = ACTIONS(2850), + [sym_nil] = ACTIONS(2850), + [anon_sym_QMARK_DOT] = ACTIONS(2848), + [anon_sym_POUND_LBRACK] = ACTIONS(2848), + [anon_sym_if] = ACTIONS(2850), + [anon_sym_DOLLARif] = ACTIONS(2850), + [anon_sym_is] = ACTIONS(2850), + [anon_sym_BANGis] = ACTIONS(2848), + [anon_sym_in] = ACTIONS(2850), + [anon_sym_BANGin] = ACTIONS(2848), + [anon_sym_match] = ACTIONS(2850), + [anon_sym_select] = ACTIONS(2850), + [anon_sym_lock] = ACTIONS(2850), + [anon_sym_rlock] = ACTIONS(2850), + [anon_sym_unsafe] = ACTIONS(2850), + [anon_sym_sql] = ACTIONS(2850), + [sym_int_literal] = ACTIONS(2850), + [sym_float_literal] = ACTIONS(2848), + [sym_rune_literal] = ACTIONS(2848), + [sym_pseudo_compile_time_identifier] = ACTIONS(2850), + [anon_sym_shared] = ACTIONS(2850), + [anon_sym_map_LBRACK] = ACTIONS(2848), + [anon_sym_chan] = ACTIONS(2850), + [anon_sym_thread] = ACTIONS(2850), + [anon_sym_atomic] = ACTIONS(2850), + [sym___double_quote] = ACTIONS(2848), + [sym___single_quote] = ACTIONS(2848), + [sym___c_double_quote] = ACTIONS(2848), + [sym___c_single_quote] = ACTIONS(2848), + [sym___r_double_quote] = ACTIONS(2848), + [sym___r_single_quote] = ACTIONS(2848), }, [1306] = { [sym_line_comment] = STATE(1306), [sym_block_comment] = STATE(1306), - [sym_identifier] = ACTIONS(2153), + [sym_identifier] = ACTIONS(3068), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(2153), - [anon_sym_as] = ACTIONS(2153), - [anon_sym_LBRACE] = ACTIONS(2151), - [anon_sym_COMMA] = ACTIONS(2151), - [anon_sym_RBRACE] = ACTIONS(2151), - [anon_sym_LPAREN] = ACTIONS(2151), - [anon_sym_PIPE] = ACTIONS(2153), - [anon_sym_fn] = ACTIONS(2153), - [anon_sym_PLUS] = ACTIONS(2153), - [anon_sym_DASH] = ACTIONS(2153), - [anon_sym_STAR] = ACTIONS(2151), - [anon_sym_SLASH] = ACTIONS(2153), - [anon_sym_PERCENT] = ACTIONS(2151), - [anon_sym_LT] = ACTIONS(2153), - [anon_sym_GT] = ACTIONS(2153), - [anon_sym_EQ_EQ] = ACTIONS(2151), - [anon_sym_BANG_EQ] = ACTIONS(2151), - [anon_sym_LT_EQ] = ACTIONS(2151), - [anon_sym_GT_EQ] = ACTIONS(2151), - [anon_sym_LBRACK] = ACTIONS(2151), - [anon_sym_RBRACK] = ACTIONS(2151), - [anon_sym_struct] = ACTIONS(2153), - [anon_sym_mut] = ACTIONS(2153), - [anon_sym_COLON] = ACTIONS(2151), - [anon_sym_PLUS_PLUS] = ACTIONS(2151), - [anon_sym_DASH_DASH] = ACTIONS(2151), - [anon_sym_QMARK] = ACTIONS(2153), - [anon_sym_BANG] = ACTIONS(2153), - [anon_sym_go] = ACTIONS(2153), - [anon_sym_spawn] = ACTIONS(2153), - [anon_sym_json_DOTdecode] = ACTIONS(2151), - [anon_sym_LBRACK2] = ACTIONS(2153), - [anon_sym_TILDE] = ACTIONS(2151), - [anon_sym_CARET] = ACTIONS(2151), - [anon_sym_AMP] = ACTIONS(2153), - [anon_sym_LT_DASH] = ACTIONS(2151), - [anon_sym_LT_LT] = ACTIONS(2151), - [anon_sym_GT_GT] = ACTIONS(2153), - [anon_sym_GT_GT_GT] = ACTIONS(2151), - [anon_sym_AMP_CARET] = ACTIONS(2151), - [anon_sym_AMP_AMP] = ACTIONS(2151), - [anon_sym_PIPE_PIPE] = ACTIONS(2151), - [anon_sym_or] = ACTIONS(2153), - [sym_none] = ACTIONS(2153), - [sym_true] = ACTIONS(2153), - [sym_false] = ACTIONS(2153), - [sym_nil] = ACTIONS(2153), - [anon_sym_QMARK_DOT] = ACTIONS(2151), - [anon_sym_POUND_LBRACK] = ACTIONS(2151), - [anon_sym_if] = ACTIONS(2153), - [anon_sym_DOLLARif] = ACTIONS(2153), - [anon_sym_is] = ACTIONS(2153), - [anon_sym_BANGis] = ACTIONS(2151), - [anon_sym_in] = ACTIONS(2153), - [anon_sym_BANGin] = ACTIONS(2151), - [anon_sym_match] = ACTIONS(2153), - [anon_sym_select] = ACTIONS(2153), - [anon_sym_lock] = ACTIONS(2153), - [anon_sym_rlock] = ACTIONS(2153), - [anon_sym_unsafe] = ACTIONS(2153), - [anon_sym_sql] = ACTIONS(2153), - [sym_int_literal] = ACTIONS(2153), - [sym_float_literal] = ACTIONS(2151), - [sym_rune_literal] = ACTIONS(2151), - [sym_pseudo_compile_time_identifier] = ACTIONS(2153), - [anon_sym_shared] = ACTIONS(2153), - [anon_sym_map_LBRACK] = ACTIONS(2151), - [anon_sym_chan] = ACTIONS(2153), - [anon_sym_thread] = ACTIONS(2153), - [anon_sym_atomic] = ACTIONS(2153), - [sym___double_quote] = ACTIONS(2151), - [sym___single_quote] = ACTIONS(2151), - [sym___c_double_quote] = ACTIONS(2151), - [sym___c_single_quote] = ACTIONS(2151), - [sym___r_double_quote] = ACTIONS(2151), - [sym___r_single_quote] = ACTIONS(2151), + [anon_sym_DOT] = ACTIONS(3068), + [anon_sym_as] = ACTIONS(3068), + [anon_sym_LBRACE] = ACTIONS(3066), + [anon_sym_COMMA] = ACTIONS(3066), + [anon_sym_RBRACE] = ACTIONS(3066), + [anon_sym_LPAREN] = ACTIONS(3066), + [anon_sym_PIPE] = ACTIONS(3068), + [anon_sym_fn] = ACTIONS(3068), + [anon_sym_PLUS] = ACTIONS(3068), + [anon_sym_DASH] = ACTIONS(3068), + [anon_sym_STAR] = ACTIONS(3066), + [anon_sym_SLASH] = ACTIONS(3068), + [anon_sym_PERCENT] = ACTIONS(3066), + [anon_sym_LT] = ACTIONS(3068), + [anon_sym_GT] = ACTIONS(3068), + [anon_sym_EQ_EQ] = ACTIONS(3066), + [anon_sym_BANG_EQ] = ACTIONS(3066), + [anon_sym_LT_EQ] = ACTIONS(3066), + [anon_sym_GT_EQ] = ACTIONS(3066), + [anon_sym_LBRACK] = ACTIONS(3066), + [anon_sym_RBRACK] = ACTIONS(3066), + [anon_sym_struct] = ACTIONS(3068), + [anon_sym_mut] = ACTIONS(3068), + [anon_sym_COLON] = ACTIONS(3066), + [anon_sym_PLUS_PLUS] = ACTIONS(3066), + [anon_sym_DASH_DASH] = ACTIONS(3066), + [anon_sym_QMARK] = ACTIONS(3068), + [anon_sym_BANG] = ACTIONS(3068), + [anon_sym_go] = ACTIONS(3068), + [anon_sym_spawn] = ACTIONS(3068), + [anon_sym_json_DOTdecode] = ACTIONS(3066), + [anon_sym_LBRACK2] = ACTIONS(3068), + [anon_sym_TILDE] = ACTIONS(3066), + [anon_sym_CARET] = ACTIONS(3066), + [anon_sym_AMP] = ACTIONS(3068), + [anon_sym_LT_DASH] = ACTIONS(3066), + [anon_sym_LT_LT] = ACTIONS(3066), + [anon_sym_GT_GT] = ACTIONS(3068), + [anon_sym_GT_GT_GT] = ACTIONS(3066), + [anon_sym_AMP_CARET] = ACTIONS(3066), + [anon_sym_AMP_AMP] = ACTIONS(3066), + [anon_sym_PIPE_PIPE] = ACTIONS(3066), + [anon_sym_or] = ACTIONS(3068), + [sym_none] = ACTIONS(3068), + [sym_true] = ACTIONS(3068), + [sym_false] = ACTIONS(3068), + [sym_nil] = ACTIONS(3068), + [anon_sym_QMARK_DOT] = ACTIONS(3066), + [anon_sym_POUND_LBRACK] = ACTIONS(3066), + [anon_sym_if] = ACTIONS(3068), + [anon_sym_DOLLARif] = ACTIONS(3068), + [anon_sym_is] = ACTIONS(3068), + [anon_sym_BANGis] = ACTIONS(3066), + [anon_sym_in] = ACTIONS(3068), + [anon_sym_BANGin] = ACTIONS(3066), + [anon_sym_match] = ACTIONS(3068), + [anon_sym_select] = ACTIONS(3068), + [anon_sym_lock] = ACTIONS(3068), + [anon_sym_rlock] = ACTIONS(3068), + [anon_sym_unsafe] = ACTIONS(3068), + [anon_sym_sql] = ACTIONS(3068), + [sym_int_literal] = ACTIONS(3068), + [sym_float_literal] = ACTIONS(3066), + [sym_rune_literal] = ACTIONS(3066), + [sym_pseudo_compile_time_identifier] = ACTIONS(3068), + [anon_sym_shared] = ACTIONS(3068), + [anon_sym_map_LBRACK] = ACTIONS(3066), + [anon_sym_chan] = ACTIONS(3068), + [anon_sym_thread] = ACTIONS(3068), + [anon_sym_atomic] = ACTIONS(3068), + [sym___double_quote] = ACTIONS(3066), + [sym___single_quote] = ACTIONS(3066), + [sym___c_double_quote] = ACTIONS(3066), + [sym___c_single_quote] = ACTIONS(3066), + [sym___r_double_quote] = ACTIONS(3066), + [sym___r_single_quote] = ACTIONS(3066), }, [1307] = { [sym_line_comment] = STATE(1307), [sym_block_comment] = STATE(1307), - [sym_identifier] = ACTIONS(2507), + [sym_identifier] = ACTIONS(2538), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(2507), - [anon_sym_as] = ACTIONS(2507), - [anon_sym_LBRACE] = ACTIONS(2505), - [anon_sym_COMMA] = ACTIONS(2505), - [anon_sym_RBRACE] = ACTIONS(2505), - [anon_sym_LPAREN] = ACTIONS(2505), - [anon_sym_PIPE] = ACTIONS(2507), - [anon_sym_fn] = ACTIONS(2507), - [anon_sym_PLUS] = ACTIONS(2507), - [anon_sym_DASH] = ACTIONS(2507), - [anon_sym_STAR] = ACTIONS(2505), - [anon_sym_SLASH] = ACTIONS(2507), - [anon_sym_PERCENT] = ACTIONS(2505), - [anon_sym_LT] = ACTIONS(2507), - [anon_sym_GT] = ACTIONS(2507), - [anon_sym_EQ_EQ] = ACTIONS(2505), - [anon_sym_BANG_EQ] = ACTIONS(2505), - [anon_sym_LT_EQ] = ACTIONS(2505), - [anon_sym_GT_EQ] = ACTIONS(2505), - [anon_sym_LBRACK] = ACTIONS(2505), - [anon_sym_RBRACK] = ACTIONS(2505), - [anon_sym_struct] = ACTIONS(2507), - [anon_sym_mut] = ACTIONS(2507), - [anon_sym_COLON] = ACTIONS(2505), - [anon_sym_PLUS_PLUS] = ACTIONS(2505), - [anon_sym_DASH_DASH] = ACTIONS(2505), - [anon_sym_QMARK] = ACTIONS(2507), - [anon_sym_BANG] = ACTIONS(2507), - [anon_sym_go] = ACTIONS(2507), - [anon_sym_spawn] = ACTIONS(2507), - [anon_sym_json_DOTdecode] = ACTIONS(2505), - [anon_sym_LBRACK2] = ACTIONS(2507), - [anon_sym_TILDE] = ACTIONS(2505), - [anon_sym_CARET] = ACTIONS(2505), - [anon_sym_AMP] = ACTIONS(2507), - [anon_sym_LT_DASH] = ACTIONS(2505), - [anon_sym_LT_LT] = ACTIONS(2505), - [anon_sym_GT_GT] = ACTIONS(2507), - [anon_sym_GT_GT_GT] = ACTIONS(2505), - [anon_sym_AMP_CARET] = ACTIONS(2505), - [anon_sym_AMP_AMP] = ACTIONS(2505), - [anon_sym_PIPE_PIPE] = ACTIONS(2505), - [anon_sym_or] = ACTIONS(2507), - [sym_none] = ACTIONS(2507), - [sym_true] = ACTIONS(2507), - [sym_false] = ACTIONS(2507), - [sym_nil] = ACTIONS(2507), - [anon_sym_QMARK_DOT] = ACTIONS(2505), - [anon_sym_POUND_LBRACK] = ACTIONS(2505), - [anon_sym_if] = ACTIONS(2507), - [anon_sym_DOLLARif] = ACTIONS(2507), - [anon_sym_is] = ACTIONS(2507), - [anon_sym_BANGis] = ACTIONS(2505), - [anon_sym_in] = ACTIONS(2507), - [anon_sym_BANGin] = ACTIONS(2505), - [anon_sym_match] = ACTIONS(2507), - [anon_sym_select] = ACTIONS(2507), - [anon_sym_lock] = ACTIONS(2507), - [anon_sym_rlock] = ACTIONS(2507), - [anon_sym_unsafe] = ACTIONS(2507), - [anon_sym_sql] = ACTIONS(2507), - [sym_int_literal] = ACTIONS(2507), - [sym_float_literal] = ACTIONS(2505), - [sym_rune_literal] = ACTIONS(2505), - [sym_pseudo_compile_time_identifier] = ACTIONS(2507), - [anon_sym_shared] = ACTIONS(2507), - [anon_sym_map_LBRACK] = ACTIONS(2505), - [anon_sym_chan] = ACTIONS(2507), - [anon_sym_thread] = ACTIONS(2507), - [anon_sym_atomic] = ACTIONS(2507), - [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), + [anon_sym_DOT] = ACTIONS(2538), + [anon_sym_as] = ACTIONS(2538), + [anon_sym_LBRACE] = ACTIONS(2536), + [anon_sym_COMMA] = ACTIONS(2536), + [anon_sym_RBRACE] = ACTIONS(2536), + [anon_sym_LPAREN] = ACTIONS(2536), + [anon_sym_PIPE] = ACTIONS(2538), + [anon_sym_fn] = ACTIONS(2538), + [anon_sym_PLUS] = ACTIONS(2538), + [anon_sym_DASH] = ACTIONS(2538), + [anon_sym_STAR] = ACTIONS(2536), + [anon_sym_SLASH] = ACTIONS(2538), + [anon_sym_PERCENT] = ACTIONS(2536), + [anon_sym_LT] = ACTIONS(2538), + [anon_sym_GT] = ACTIONS(2538), + [anon_sym_EQ_EQ] = ACTIONS(2536), + [anon_sym_BANG_EQ] = ACTIONS(2536), + [anon_sym_LT_EQ] = ACTIONS(2536), + [anon_sym_GT_EQ] = ACTIONS(2536), + [anon_sym_LBRACK] = ACTIONS(2536), + [anon_sym_RBRACK] = ACTIONS(2536), + [anon_sym_struct] = ACTIONS(2538), + [anon_sym_mut] = ACTIONS(2538), + [anon_sym_COLON] = ACTIONS(2536), + [anon_sym_PLUS_PLUS] = ACTIONS(2536), + [anon_sym_DASH_DASH] = ACTIONS(2536), + [anon_sym_QMARK] = ACTIONS(2538), + [anon_sym_BANG] = ACTIONS(2538), + [anon_sym_go] = ACTIONS(2538), + [anon_sym_spawn] = ACTIONS(2538), + [anon_sym_json_DOTdecode] = ACTIONS(2536), + [anon_sym_LBRACK2] = ACTIONS(2538), + [anon_sym_TILDE] = ACTIONS(2536), + [anon_sym_CARET] = ACTIONS(2536), + [anon_sym_AMP] = ACTIONS(2538), + [anon_sym_LT_DASH] = ACTIONS(2536), + [anon_sym_LT_LT] = ACTIONS(2536), + [anon_sym_GT_GT] = ACTIONS(2538), + [anon_sym_GT_GT_GT] = ACTIONS(2536), + [anon_sym_AMP_CARET] = ACTIONS(2536), + [anon_sym_AMP_AMP] = ACTIONS(2536), + [anon_sym_PIPE_PIPE] = ACTIONS(2536), + [anon_sym_or] = ACTIONS(2538), + [sym_none] = ACTIONS(2538), + [sym_true] = ACTIONS(2538), + [sym_false] = ACTIONS(2538), + [sym_nil] = ACTIONS(2538), + [anon_sym_QMARK_DOT] = ACTIONS(2536), + [anon_sym_POUND_LBRACK] = ACTIONS(2536), + [anon_sym_if] = ACTIONS(2538), + [anon_sym_DOLLARif] = ACTIONS(2538), + [anon_sym_is] = ACTIONS(2538), + [anon_sym_BANGis] = ACTIONS(2536), + [anon_sym_in] = ACTIONS(2538), + [anon_sym_BANGin] = ACTIONS(2536), + [anon_sym_match] = ACTIONS(2538), + [anon_sym_select] = ACTIONS(2538), + [anon_sym_lock] = ACTIONS(2538), + [anon_sym_rlock] = ACTIONS(2538), + [anon_sym_unsafe] = ACTIONS(2538), + [anon_sym_sql] = ACTIONS(2538), + [sym_int_literal] = ACTIONS(2538), + [sym_float_literal] = ACTIONS(2536), + [sym_rune_literal] = ACTIONS(2536), + [sym_pseudo_compile_time_identifier] = ACTIONS(2538), + [anon_sym_shared] = ACTIONS(2538), + [anon_sym_map_LBRACK] = ACTIONS(2536), + [anon_sym_chan] = ACTIONS(2538), + [anon_sym_thread] = ACTIONS(2538), + [anon_sym_atomic] = ACTIONS(2538), + [sym___double_quote] = ACTIONS(2536), + [sym___single_quote] = ACTIONS(2536), + [sym___c_double_quote] = ACTIONS(2536), + [sym___c_single_quote] = ACTIONS(2536), + [sym___r_double_quote] = ACTIONS(2536), + [sym___r_single_quote] = ACTIONS(2536), }, [1308] = { [sym_line_comment] = STATE(1308), [sym_block_comment] = STATE(1308), - [sym_identifier] = ACTIONS(3050), + [sym_identifier] = ACTIONS(3062), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(3050), - [anon_sym_as] = ACTIONS(3050), - [anon_sym_LBRACE] = ACTIONS(3048), - [anon_sym_COMMA] = ACTIONS(3048), - [anon_sym_RBRACE] = ACTIONS(3048), - [anon_sym_LPAREN] = ACTIONS(3048), - [anon_sym_PIPE] = ACTIONS(3050), - [anon_sym_fn] = ACTIONS(3050), - [anon_sym_PLUS] = ACTIONS(3050), - [anon_sym_DASH] = ACTIONS(3050), - [anon_sym_STAR] = ACTIONS(3048), - [anon_sym_SLASH] = ACTIONS(3050), - [anon_sym_PERCENT] = ACTIONS(3048), - [anon_sym_LT] = ACTIONS(3050), - [anon_sym_GT] = ACTIONS(3050), - [anon_sym_EQ_EQ] = ACTIONS(3048), - [anon_sym_BANG_EQ] = ACTIONS(3048), - [anon_sym_LT_EQ] = ACTIONS(3048), - [anon_sym_GT_EQ] = ACTIONS(3048), - [anon_sym_LBRACK] = ACTIONS(3048), - [anon_sym_RBRACK] = ACTIONS(3048), - [anon_sym_struct] = ACTIONS(3050), - [anon_sym_mut] = ACTIONS(3050), - [anon_sym_COLON] = ACTIONS(3048), - [anon_sym_PLUS_PLUS] = ACTIONS(3048), - [anon_sym_DASH_DASH] = ACTIONS(3048), - [anon_sym_QMARK] = ACTIONS(3050), - [anon_sym_BANG] = ACTIONS(3050), - [anon_sym_go] = ACTIONS(3050), - [anon_sym_spawn] = ACTIONS(3050), - [anon_sym_json_DOTdecode] = ACTIONS(3048), - [anon_sym_LBRACK2] = ACTIONS(3050), - [anon_sym_TILDE] = ACTIONS(3048), - [anon_sym_CARET] = ACTIONS(3048), - [anon_sym_AMP] = ACTIONS(3050), - [anon_sym_LT_DASH] = ACTIONS(3048), - [anon_sym_LT_LT] = ACTIONS(3048), - [anon_sym_GT_GT] = ACTIONS(3050), - [anon_sym_GT_GT_GT] = ACTIONS(3048), - [anon_sym_AMP_CARET] = ACTIONS(3048), - [anon_sym_AMP_AMP] = ACTIONS(3048), - [anon_sym_PIPE_PIPE] = ACTIONS(3048), - [anon_sym_or] = ACTIONS(3050), - [sym_none] = ACTIONS(3050), - [sym_true] = ACTIONS(3050), - [sym_false] = ACTIONS(3050), - [sym_nil] = ACTIONS(3050), - [anon_sym_QMARK_DOT] = ACTIONS(3048), - [anon_sym_POUND_LBRACK] = ACTIONS(3048), - [anon_sym_if] = ACTIONS(3050), - [anon_sym_DOLLARif] = ACTIONS(3050), - [anon_sym_is] = ACTIONS(3050), - [anon_sym_BANGis] = ACTIONS(3048), - [anon_sym_in] = ACTIONS(3050), - [anon_sym_BANGin] = ACTIONS(3048), - [anon_sym_match] = ACTIONS(3050), - [anon_sym_select] = ACTIONS(3050), - [anon_sym_lock] = ACTIONS(3050), - [anon_sym_rlock] = ACTIONS(3050), - [anon_sym_unsafe] = ACTIONS(3050), - [anon_sym_sql] = ACTIONS(3050), - [sym_int_literal] = ACTIONS(3050), - [sym_float_literal] = ACTIONS(3048), - [sym_rune_literal] = ACTIONS(3048), - [sym_pseudo_compile_time_identifier] = ACTIONS(3050), - [anon_sym_shared] = ACTIONS(3050), - [anon_sym_map_LBRACK] = ACTIONS(3048), - [anon_sym_chan] = ACTIONS(3050), - [anon_sym_thread] = ACTIONS(3050), - [anon_sym_atomic] = ACTIONS(3050), - [sym___double_quote] = ACTIONS(3048), - [sym___single_quote] = ACTIONS(3048), - [sym___c_double_quote] = ACTIONS(3048), - [sym___c_single_quote] = ACTIONS(3048), - [sym___r_double_quote] = ACTIONS(3048), - [sym___r_single_quote] = ACTIONS(3048), + [anon_sym_DOT] = ACTIONS(3062), + [anon_sym_as] = ACTIONS(3062), + [anon_sym_LBRACE] = ACTIONS(3060), + [anon_sym_COMMA] = ACTIONS(3060), + [anon_sym_RBRACE] = ACTIONS(3060), + [anon_sym_LPAREN] = ACTIONS(3060), + [anon_sym_PIPE] = ACTIONS(3062), + [anon_sym_fn] = ACTIONS(3062), + [anon_sym_PLUS] = ACTIONS(3062), + [anon_sym_DASH] = ACTIONS(3062), + [anon_sym_STAR] = ACTIONS(3060), + [anon_sym_SLASH] = ACTIONS(3062), + [anon_sym_PERCENT] = ACTIONS(3060), + [anon_sym_LT] = ACTIONS(3062), + [anon_sym_GT] = ACTIONS(3062), + [anon_sym_EQ_EQ] = ACTIONS(3060), + [anon_sym_BANG_EQ] = ACTIONS(3060), + [anon_sym_LT_EQ] = ACTIONS(3060), + [anon_sym_GT_EQ] = ACTIONS(3060), + [anon_sym_LBRACK] = ACTIONS(3060), + [anon_sym_RBRACK] = ACTIONS(3060), + [anon_sym_struct] = ACTIONS(3062), + [anon_sym_mut] = ACTIONS(3062), + [anon_sym_COLON] = ACTIONS(3060), + [anon_sym_PLUS_PLUS] = ACTIONS(3060), + [anon_sym_DASH_DASH] = ACTIONS(3060), + [anon_sym_QMARK] = ACTIONS(3062), + [anon_sym_BANG] = ACTIONS(3062), + [anon_sym_go] = ACTIONS(3062), + [anon_sym_spawn] = ACTIONS(3062), + [anon_sym_json_DOTdecode] = ACTIONS(3060), + [anon_sym_LBRACK2] = ACTIONS(3062), + [anon_sym_TILDE] = ACTIONS(3060), + [anon_sym_CARET] = ACTIONS(3060), + [anon_sym_AMP] = ACTIONS(3062), + [anon_sym_LT_DASH] = ACTIONS(3060), + [anon_sym_LT_LT] = ACTIONS(3060), + [anon_sym_GT_GT] = ACTIONS(3062), + [anon_sym_GT_GT_GT] = ACTIONS(3060), + [anon_sym_AMP_CARET] = ACTIONS(3060), + [anon_sym_AMP_AMP] = ACTIONS(3060), + [anon_sym_PIPE_PIPE] = ACTIONS(3060), + [anon_sym_or] = ACTIONS(3062), + [sym_none] = ACTIONS(3062), + [sym_true] = ACTIONS(3062), + [sym_false] = ACTIONS(3062), + [sym_nil] = ACTIONS(3062), + [anon_sym_QMARK_DOT] = ACTIONS(3060), + [anon_sym_POUND_LBRACK] = ACTIONS(3060), + [anon_sym_if] = ACTIONS(3062), + [anon_sym_DOLLARif] = ACTIONS(3062), + [anon_sym_is] = ACTIONS(3062), + [anon_sym_BANGis] = ACTIONS(3060), + [anon_sym_in] = ACTIONS(3062), + [anon_sym_BANGin] = ACTIONS(3060), + [anon_sym_match] = ACTIONS(3062), + [anon_sym_select] = ACTIONS(3062), + [anon_sym_lock] = ACTIONS(3062), + [anon_sym_rlock] = ACTIONS(3062), + [anon_sym_unsafe] = ACTIONS(3062), + [anon_sym_sql] = ACTIONS(3062), + [sym_int_literal] = ACTIONS(3062), + [sym_float_literal] = ACTIONS(3060), + [sym_rune_literal] = ACTIONS(3060), + [sym_pseudo_compile_time_identifier] = ACTIONS(3062), + [anon_sym_shared] = ACTIONS(3062), + [anon_sym_map_LBRACK] = ACTIONS(3060), + [anon_sym_chan] = ACTIONS(3062), + [anon_sym_thread] = ACTIONS(3062), + [anon_sym_atomic] = ACTIONS(3062), + [sym___double_quote] = ACTIONS(3060), + [sym___single_quote] = ACTIONS(3060), + [sym___c_double_quote] = ACTIONS(3060), + [sym___c_single_quote] = ACTIONS(3060), + [sym___r_double_quote] = ACTIONS(3060), + [sym___r_single_quote] = ACTIONS(3060), }, [1309] = { [sym_line_comment] = STATE(1309), [sym_block_comment] = STATE(1309), - [sym_identifier] = ACTIONS(2832), + [sym_identifier] = ACTIONS(2668), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(2832), - [anon_sym_as] = ACTIONS(2832), - [anon_sym_LBRACE] = ACTIONS(2830), - [anon_sym_COMMA] = ACTIONS(2830), - [anon_sym_RBRACE] = ACTIONS(2830), - [anon_sym_LPAREN] = ACTIONS(2830), - [anon_sym_PIPE] = ACTIONS(2832), - [anon_sym_fn] = ACTIONS(2832), - [anon_sym_PLUS] = ACTIONS(2832), - [anon_sym_DASH] = ACTIONS(2832), - [anon_sym_STAR] = ACTIONS(2830), - [anon_sym_SLASH] = ACTIONS(2832), - [anon_sym_PERCENT] = ACTIONS(2830), - [anon_sym_LT] = ACTIONS(2832), - [anon_sym_GT] = ACTIONS(2832), - [anon_sym_EQ_EQ] = ACTIONS(2830), - [anon_sym_BANG_EQ] = ACTIONS(2830), - [anon_sym_LT_EQ] = ACTIONS(2830), - [anon_sym_GT_EQ] = ACTIONS(2830), - [anon_sym_LBRACK] = ACTIONS(2830), - [anon_sym_RBRACK] = ACTIONS(2830), - [anon_sym_struct] = ACTIONS(2832), - [anon_sym_mut] = ACTIONS(2832), - [anon_sym_COLON] = ACTIONS(2830), - [anon_sym_PLUS_PLUS] = ACTIONS(2830), - [anon_sym_DASH_DASH] = ACTIONS(2830), - [anon_sym_QMARK] = ACTIONS(2832), - [anon_sym_BANG] = ACTIONS(2832), - [anon_sym_go] = ACTIONS(2832), - [anon_sym_spawn] = ACTIONS(2832), - [anon_sym_json_DOTdecode] = ACTIONS(2830), - [anon_sym_LBRACK2] = ACTIONS(2832), - [anon_sym_TILDE] = ACTIONS(2830), - [anon_sym_CARET] = ACTIONS(2830), - [anon_sym_AMP] = ACTIONS(2832), - [anon_sym_LT_DASH] = ACTIONS(2830), - [anon_sym_LT_LT] = ACTIONS(2830), - [anon_sym_GT_GT] = ACTIONS(2832), - [anon_sym_GT_GT_GT] = ACTIONS(2830), - [anon_sym_AMP_CARET] = ACTIONS(2830), - [anon_sym_AMP_AMP] = ACTIONS(2830), - [anon_sym_PIPE_PIPE] = ACTIONS(2830), - [anon_sym_or] = ACTIONS(2832), - [sym_none] = ACTIONS(2832), - [sym_true] = ACTIONS(2832), - [sym_false] = ACTIONS(2832), - [sym_nil] = ACTIONS(2832), - [anon_sym_QMARK_DOT] = ACTIONS(2830), - [anon_sym_POUND_LBRACK] = ACTIONS(2830), - [anon_sym_if] = ACTIONS(2832), - [anon_sym_DOLLARif] = ACTIONS(2832), - [anon_sym_is] = ACTIONS(2832), - [anon_sym_BANGis] = ACTIONS(2830), - [anon_sym_in] = ACTIONS(2832), - [anon_sym_BANGin] = ACTIONS(2830), - [anon_sym_match] = ACTIONS(2832), - [anon_sym_select] = ACTIONS(2832), - [anon_sym_lock] = ACTIONS(2832), - [anon_sym_rlock] = ACTIONS(2832), - [anon_sym_unsafe] = ACTIONS(2832), - [anon_sym_sql] = ACTIONS(2832), - [sym_int_literal] = ACTIONS(2832), - [sym_float_literal] = ACTIONS(2830), - [sym_rune_literal] = ACTIONS(2830), - [sym_pseudo_compile_time_identifier] = ACTIONS(2832), - [anon_sym_shared] = ACTIONS(2832), - [anon_sym_map_LBRACK] = ACTIONS(2830), - [anon_sym_chan] = ACTIONS(2832), - [anon_sym_thread] = ACTIONS(2832), - [anon_sym_atomic] = ACTIONS(2832), - [sym___double_quote] = ACTIONS(2830), - [sym___single_quote] = ACTIONS(2830), - [sym___c_double_quote] = ACTIONS(2830), - [sym___c_single_quote] = ACTIONS(2830), - [sym___r_double_quote] = ACTIONS(2830), - [sym___r_single_quote] = ACTIONS(2830), + [anon_sym_DOT] = ACTIONS(2668), + [anon_sym_as] = ACTIONS(2668), + [anon_sym_LBRACE] = ACTIONS(2666), + [anon_sym_COMMA] = ACTIONS(2666), + [anon_sym_RBRACE] = ACTIONS(2666), + [anon_sym_LPAREN] = ACTIONS(2666), + [anon_sym_PIPE] = ACTIONS(2668), + [anon_sym_fn] = ACTIONS(2668), + [anon_sym_PLUS] = ACTIONS(2668), + [anon_sym_DASH] = ACTIONS(2668), + [anon_sym_STAR] = ACTIONS(2666), + [anon_sym_SLASH] = ACTIONS(2668), + [anon_sym_PERCENT] = ACTIONS(2666), + [anon_sym_LT] = ACTIONS(2668), + [anon_sym_GT] = ACTIONS(2668), + [anon_sym_EQ_EQ] = ACTIONS(2666), + [anon_sym_BANG_EQ] = ACTIONS(2666), + [anon_sym_LT_EQ] = ACTIONS(2666), + [anon_sym_GT_EQ] = ACTIONS(2666), + [anon_sym_LBRACK] = ACTIONS(2666), + [anon_sym_RBRACK] = ACTIONS(2666), + [anon_sym_struct] = ACTIONS(2668), + [anon_sym_mut] = ACTIONS(2668), + [anon_sym_COLON] = ACTIONS(2666), + [anon_sym_PLUS_PLUS] = ACTIONS(2666), + [anon_sym_DASH_DASH] = ACTIONS(2666), + [anon_sym_QMARK] = ACTIONS(2668), + [anon_sym_BANG] = ACTIONS(2668), + [anon_sym_go] = ACTIONS(2668), + [anon_sym_spawn] = ACTIONS(2668), + [anon_sym_json_DOTdecode] = ACTIONS(2666), + [anon_sym_LBRACK2] = ACTIONS(2668), + [anon_sym_TILDE] = ACTIONS(2666), + [anon_sym_CARET] = ACTIONS(2666), + [anon_sym_AMP] = ACTIONS(2668), + [anon_sym_LT_DASH] = ACTIONS(2666), + [anon_sym_LT_LT] = ACTIONS(2666), + [anon_sym_GT_GT] = ACTIONS(2668), + [anon_sym_GT_GT_GT] = ACTIONS(2666), + [anon_sym_AMP_CARET] = ACTIONS(2666), + [anon_sym_AMP_AMP] = ACTIONS(2666), + [anon_sym_PIPE_PIPE] = ACTIONS(2666), + [anon_sym_or] = ACTIONS(2668), + [sym_none] = ACTIONS(2668), + [sym_true] = ACTIONS(2668), + [sym_false] = ACTIONS(2668), + [sym_nil] = ACTIONS(2668), + [anon_sym_QMARK_DOT] = ACTIONS(2666), + [anon_sym_POUND_LBRACK] = ACTIONS(2666), + [anon_sym_if] = ACTIONS(2668), + [anon_sym_DOLLARif] = ACTIONS(2668), + [anon_sym_is] = ACTIONS(2668), + [anon_sym_BANGis] = ACTIONS(2666), + [anon_sym_in] = ACTIONS(2668), + [anon_sym_BANGin] = ACTIONS(2666), + [anon_sym_match] = ACTIONS(2668), + [anon_sym_select] = ACTIONS(2668), + [anon_sym_lock] = ACTIONS(2668), + [anon_sym_rlock] = ACTIONS(2668), + [anon_sym_unsafe] = ACTIONS(2668), + [anon_sym_sql] = ACTIONS(2668), + [sym_int_literal] = ACTIONS(2668), + [sym_float_literal] = ACTIONS(2666), + [sym_rune_literal] = ACTIONS(2666), + [sym_pseudo_compile_time_identifier] = ACTIONS(2668), + [anon_sym_shared] = ACTIONS(2668), + [anon_sym_map_LBRACK] = ACTIONS(2666), + [anon_sym_chan] = ACTIONS(2668), + [anon_sym_thread] = ACTIONS(2668), + [anon_sym_atomic] = ACTIONS(2668), + [sym___double_quote] = ACTIONS(2666), + [sym___single_quote] = ACTIONS(2666), + [sym___c_double_quote] = ACTIONS(2666), + [sym___c_single_quote] = ACTIONS(2666), + [sym___r_double_quote] = ACTIONS(2666), + [sym___r_single_quote] = ACTIONS(2666), }, [1310] = { [sym_line_comment] = STATE(1310), [sym_block_comment] = STATE(1310), - [sym_identifier] = ACTIONS(2916), + [sym_identifier] = ACTIONS(2680), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(2916), - [anon_sym_as] = ACTIONS(2916), - [anon_sym_LBRACE] = ACTIONS(2914), - [anon_sym_COMMA] = ACTIONS(2914), - [anon_sym_RBRACE] = ACTIONS(2914), - [anon_sym_LPAREN] = ACTIONS(2914), - [anon_sym_PIPE] = ACTIONS(2916), - [anon_sym_fn] = ACTIONS(2916), - [anon_sym_PLUS] = ACTIONS(2916), - [anon_sym_DASH] = ACTIONS(2916), - [anon_sym_STAR] = ACTIONS(2914), - [anon_sym_SLASH] = ACTIONS(2916), - [anon_sym_PERCENT] = ACTIONS(2914), - [anon_sym_LT] = ACTIONS(2916), - [anon_sym_GT] = ACTIONS(2916), - [anon_sym_EQ_EQ] = ACTIONS(2914), - [anon_sym_BANG_EQ] = ACTIONS(2914), - [anon_sym_LT_EQ] = ACTIONS(2914), - [anon_sym_GT_EQ] = ACTIONS(2914), - [anon_sym_LBRACK] = ACTIONS(2914), - [anon_sym_RBRACK] = ACTIONS(2914), - [anon_sym_struct] = ACTIONS(2916), - [anon_sym_mut] = ACTIONS(2916), - [anon_sym_COLON] = ACTIONS(2914), - [anon_sym_PLUS_PLUS] = ACTIONS(2914), - [anon_sym_DASH_DASH] = ACTIONS(2914), - [anon_sym_QMARK] = ACTIONS(2916), - [anon_sym_BANG] = ACTIONS(2916), - [anon_sym_go] = ACTIONS(2916), - [anon_sym_spawn] = ACTIONS(2916), - [anon_sym_json_DOTdecode] = ACTIONS(2914), - [anon_sym_LBRACK2] = ACTIONS(2916), - [anon_sym_TILDE] = ACTIONS(2914), - [anon_sym_CARET] = ACTIONS(2914), - [anon_sym_AMP] = ACTIONS(2916), - [anon_sym_LT_DASH] = ACTIONS(2914), - [anon_sym_LT_LT] = ACTIONS(2914), - [anon_sym_GT_GT] = ACTIONS(2916), - [anon_sym_GT_GT_GT] = ACTIONS(2914), - [anon_sym_AMP_CARET] = ACTIONS(2914), - [anon_sym_AMP_AMP] = ACTIONS(2914), - [anon_sym_PIPE_PIPE] = ACTIONS(2914), - [anon_sym_or] = ACTIONS(2916), - [sym_none] = ACTIONS(2916), - [sym_true] = ACTIONS(2916), - [sym_false] = ACTIONS(2916), - [sym_nil] = ACTIONS(2916), - [anon_sym_QMARK_DOT] = ACTIONS(2914), - [anon_sym_POUND_LBRACK] = ACTIONS(2914), - [anon_sym_if] = ACTIONS(2916), - [anon_sym_DOLLARif] = ACTIONS(2916), - [anon_sym_is] = ACTIONS(2916), - [anon_sym_BANGis] = ACTIONS(2914), - [anon_sym_in] = ACTIONS(2916), - [anon_sym_BANGin] = ACTIONS(2914), - [anon_sym_match] = ACTIONS(2916), - [anon_sym_select] = ACTIONS(2916), - [anon_sym_lock] = ACTIONS(2916), - [anon_sym_rlock] = ACTIONS(2916), - [anon_sym_unsafe] = ACTIONS(2916), - [anon_sym_sql] = ACTIONS(2916), - [sym_int_literal] = ACTIONS(2916), - [sym_float_literal] = ACTIONS(2914), - [sym_rune_literal] = ACTIONS(2914), - [sym_pseudo_compile_time_identifier] = ACTIONS(2916), - [anon_sym_shared] = ACTIONS(2916), - [anon_sym_map_LBRACK] = ACTIONS(2914), - [anon_sym_chan] = ACTIONS(2916), - [anon_sym_thread] = ACTIONS(2916), - [anon_sym_atomic] = ACTIONS(2916), - [sym___double_quote] = ACTIONS(2914), - [sym___single_quote] = ACTIONS(2914), - [sym___c_double_quote] = ACTIONS(2914), - [sym___c_single_quote] = ACTIONS(2914), - [sym___r_double_quote] = ACTIONS(2914), - [sym___r_single_quote] = ACTIONS(2914), + [anon_sym_DOT] = ACTIONS(2680), + [anon_sym_as] = ACTIONS(2680), + [anon_sym_LBRACE] = ACTIONS(2678), + [anon_sym_COMMA] = ACTIONS(2678), + [anon_sym_RBRACE] = ACTIONS(2678), + [anon_sym_LPAREN] = ACTIONS(2678), + [anon_sym_PIPE] = ACTIONS(2680), + [anon_sym_fn] = ACTIONS(2680), + [anon_sym_PLUS] = ACTIONS(2680), + [anon_sym_DASH] = ACTIONS(2680), + [anon_sym_STAR] = ACTIONS(2678), + [anon_sym_SLASH] = ACTIONS(2680), + [anon_sym_PERCENT] = ACTIONS(2678), + [anon_sym_LT] = ACTIONS(2680), + [anon_sym_GT] = ACTIONS(2680), + [anon_sym_EQ_EQ] = ACTIONS(2678), + [anon_sym_BANG_EQ] = ACTIONS(2678), + [anon_sym_LT_EQ] = ACTIONS(2678), + [anon_sym_GT_EQ] = ACTIONS(2678), + [anon_sym_LBRACK] = ACTIONS(2678), + [anon_sym_RBRACK] = ACTIONS(2678), + [anon_sym_struct] = ACTIONS(2680), + [anon_sym_mut] = ACTIONS(2680), + [anon_sym_COLON] = ACTIONS(2678), + [anon_sym_PLUS_PLUS] = ACTIONS(2678), + [anon_sym_DASH_DASH] = ACTIONS(2678), + [anon_sym_QMARK] = ACTIONS(2680), + [anon_sym_BANG] = ACTIONS(2680), + [anon_sym_go] = ACTIONS(2680), + [anon_sym_spawn] = ACTIONS(2680), + [anon_sym_json_DOTdecode] = ACTIONS(2678), + [anon_sym_LBRACK2] = ACTIONS(2680), + [anon_sym_TILDE] = ACTIONS(2678), + [anon_sym_CARET] = ACTIONS(2678), + [anon_sym_AMP] = ACTIONS(2680), + [anon_sym_LT_DASH] = ACTIONS(2678), + [anon_sym_LT_LT] = ACTIONS(2678), + [anon_sym_GT_GT] = ACTIONS(2680), + [anon_sym_GT_GT_GT] = ACTIONS(2678), + [anon_sym_AMP_CARET] = ACTIONS(2678), + [anon_sym_AMP_AMP] = ACTIONS(2678), + [anon_sym_PIPE_PIPE] = ACTIONS(2678), + [anon_sym_or] = ACTIONS(2680), + [sym_none] = ACTIONS(2680), + [sym_true] = ACTIONS(2680), + [sym_false] = ACTIONS(2680), + [sym_nil] = ACTIONS(2680), + [anon_sym_QMARK_DOT] = ACTIONS(2678), + [anon_sym_POUND_LBRACK] = ACTIONS(2678), + [anon_sym_if] = ACTIONS(2680), + [anon_sym_DOLLARif] = ACTIONS(2680), + [anon_sym_is] = ACTIONS(2680), + [anon_sym_BANGis] = ACTIONS(2678), + [anon_sym_in] = ACTIONS(2680), + [anon_sym_BANGin] = ACTIONS(2678), + [anon_sym_match] = ACTIONS(2680), + [anon_sym_select] = ACTIONS(2680), + [anon_sym_lock] = ACTIONS(2680), + [anon_sym_rlock] = ACTIONS(2680), + [anon_sym_unsafe] = ACTIONS(2680), + [anon_sym_sql] = ACTIONS(2680), + [sym_int_literal] = ACTIONS(2680), + [sym_float_literal] = ACTIONS(2678), + [sym_rune_literal] = ACTIONS(2678), + [sym_pseudo_compile_time_identifier] = ACTIONS(2680), + [anon_sym_shared] = ACTIONS(2680), + [anon_sym_map_LBRACK] = ACTIONS(2678), + [anon_sym_chan] = ACTIONS(2680), + [anon_sym_thread] = ACTIONS(2680), + [anon_sym_atomic] = ACTIONS(2680), + [sym___double_quote] = ACTIONS(2678), + [sym___single_quote] = ACTIONS(2678), + [sym___c_double_quote] = ACTIONS(2678), + [sym___c_single_quote] = ACTIONS(2678), + [sym___r_double_quote] = ACTIONS(2678), + [sym___r_single_quote] = ACTIONS(2678), }, [1311] = { [sym_line_comment] = STATE(1311), [sym_block_comment] = STATE(1311), - [sym_identifier] = ACTIONS(2511), + [sym_identifier] = ACTIONS(2684), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(2511), - [anon_sym_as] = ACTIONS(2511), - [anon_sym_LBRACE] = ACTIONS(2509), - [anon_sym_COMMA] = ACTIONS(2509), - [anon_sym_RBRACE] = ACTIONS(2509), - [anon_sym_LPAREN] = ACTIONS(2509), - [anon_sym_PIPE] = ACTIONS(2511), - [anon_sym_fn] = ACTIONS(2511), - [anon_sym_PLUS] = ACTIONS(2511), - [anon_sym_DASH] = ACTIONS(2511), - [anon_sym_STAR] = ACTIONS(2509), - [anon_sym_SLASH] = ACTIONS(2511), - [anon_sym_PERCENT] = ACTIONS(2509), - [anon_sym_LT] = ACTIONS(2511), - [anon_sym_GT] = ACTIONS(2511), - [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(2509), - [anon_sym_RBRACK] = ACTIONS(2509), - [anon_sym_struct] = ACTIONS(2511), - [anon_sym_mut] = ACTIONS(2511), - [anon_sym_COLON] = ACTIONS(2509), - [anon_sym_PLUS_PLUS] = ACTIONS(2509), - [anon_sym_DASH_DASH] = ACTIONS(2509), - [anon_sym_QMARK] = ACTIONS(2511), - [anon_sym_BANG] = ACTIONS(2511), - [anon_sym_go] = ACTIONS(2511), - [anon_sym_spawn] = ACTIONS(2511), - [anon_sym_json_DOTdecode] = ACTIONS(2509), - [anon_sym_LBRACK2] = ACTIONS(2511), - [anon_sym_TILDE] = ACTIONS(2509), - [anon_sym_CARET] = ACTIONS(2509), - [anon_sym_AMP] = ACTIONS(2511), - [anon_sym_LT_DASH] = ACTIONS(2509), - [anon_sym_LT_LT] = ACTIONS(2509), - [anon_sym_GT_GT] = ACTIONS(2511), - [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(2511), - [sym_none] = ACTIONS(2511), - [sym_true] = ACTIONS(2511), - [sym_false] = ACTIONS(2511), - [sym_nil] = ACTIONS(2511), - [anon_sym_QMARK_DOT] = ACTIONS(2509), - [anon_sym_POUND_LBRACK] = ACTIONS(2509), - [anon_sym_if] = ACTIONS(2511), - [anon_sym_DOLLARif] = ACTIONS(2511), - [anon_sym_is] = ACTIONS(2511), - [anon_sym_BANGis] = ACTIONS(2509), - [anon_sym_in] = ACTIONS(2511), - [anon_sym_BANGin] = ACTIONS(2509), - [anon_sym_match] = ACTIONS(2511), - [anon_sym_select] = ACTIONS(2511), - [anon_sym_lock] = ACTIONS(2511), - [anon_sym_rlock] = ACTIONS(2511), - [anon_sym_unsafe] = ACTIONS(2511), - [anon_sym_sql] = ACTIONS(2511), - [sym_int_literal] = ACTIONS(2511), - [sym_float_literal] = ACTIONS(2509), - [sym_rune_literal] = ACTIONS(2509), - [sym_pseudo_compile_time_identifier] = ACTIONS(2511), - [anon_sym_shared] = ACTIONS(2511), - [anon_sym_map_LBRACK] = ACTIONS(2509), - [anon_sym_chan] = ACTIONS(2511), - [anon_sym_thread] = ACTIONS(2511), - [anon_sym_atomic] = ACTIONS(2511), - [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] = ACTIONS(2684), + [anon_sym_as] = ACTIONS(2684), + [anon_sym_LBRACE] = ACTIONS(2682), + [anon_sym_COMMA] = ACTIONS(2682), + [anon_sym_RBRACE] = ACTIONS(2682), + [anon_sym_LPAREN] = ACTIONS(2682), + [anon_sym_PIPE] = ACTIONS(2684), + [anon_sym_fn] = ACTIONS(2684), + [anon_sym_PLUS] = ACTIONS(2684), + [anon_sym_DASH] = ACTIONS(2684), + [anon_sym_STAR] = ACTIONS(2682), + [anon_sym_SLASH] = ACTIONS(2684), + [anon_sym_PERCENT] = ACTIONS(2682), + [anon_sym_LT] = ACTIONS(2684), + [anon_sym_GT] = ACTIONS(2684), + [anon_sym_EQ_EQ] = ACTIONS(2682), + [anon_sym_BANG_EQ] = ACTIONS(2682), + [anon_sym_LT_EQ] = ACTIONS(2682), + [anon_sym_GT_EQ] = ACTIONS(2682), + [anon_sym_LBRACK] = ACTIONS(2682), + [anon_sym_RBRACK] = ACTIONS(2682), + [anon_sym_struct] = ACTIONS(2684), + [anon_sym_mut] = ACTIONS(2684), + [anon_sym_COLON] = ACTIONS(2682), + [anon_sym_PLUS_PLUS] = ACTIONS(2682), + [anon_sym_DASH_DASH] = ACTIONS(2682), + [anon_sym_QMARK] = ACTIONS(2684), + [anon_sym_BANG] = ACTIONS(2684), + [anon_sym_go] = ACTIONS(2684), + [anon_sym_spawn] = ACTIONS(2684), + [anon_sym_json_DOTdecode] = ACTIONS(2682), + [anon_sym_LBRACK2] = ACTIONS(2684), + [anon_sym_TILDE] = ACTIONS(2682), + [anon_sym_CARET] = ACTIONS(2682), + [anon_sym_AMP] = ACTIONS(2684), + [anon_sym_LT_DASH] = ACTIONS(2682), + [anon_sym_LT_LT] = ACTIONS(2682), + [anon_sym_GT_GT] = ACTIONS(2684), + [anon_sym_GT_GT_GT] = ACTIONS(2682), + [anon_sym_AMP_CARET] = ACTIONS(2682), + [anon_sym_AMP_AMP] = ACTIONS(2682), + [anon_sym_PIPE_PIPE] = ACTIONS(2682), + [anon_sym_or] = ACTIONS(2684), + [sym_none] = ACTIONS(2684), + [sym_true] = ACTIONS(2684), + [sym_false] = ACTIONS(2684), + [sym_nil] = ACTIONS(2684), + [anon_sym_QMARK_DOT] = ACTIONS(2682), + [anon_sym_POUND_LBRACK] = ACTIONS(2682), + [anon_sym_if] = ACTIONS(2684), + [anon_sym_DOLLARif] = ACTIONS(2684), + [anon_sym_is] = ACTIONS(2684), + [anon_sym_BANGis] = ACTIONS(2682), + [anon_sym_in] = ACTIONS(2684), + [anon_sym_BANGin] = ACTIONS(2682), + [anon_sym_match] = ACTIONS(2684), + [anon_sym_select] = ACTIONS(2684), + [anon_sym_lock] = ACTIONS(2684), + [anon_sym_rlock] = ACTIONS(2684), + [anon_sym_unsafe] = ACTIONS(2684), + [anon_sym_sql] = ACTIONS(2684), + [sym_int_literal] = ACTIONS(2684), + [sym_float_literal] = ACTIONS(2682), + [sym_rune_literal] = ACTIONS(2682), + [sym_pseudo_compile_time_identifier] = ACTIONS(2684), + [anon_sym_shared] = ACTIONS(2684), + [anon_sym_map_LBRACK] = ACTIONS(2682), + [anon_sym_chan] = ACTIONS(2684), + [anon_sym_thread] = ACTIONS(2684), + [anon_sym_atomic] = ACTIONS(2684), + [sym___double_quote] = ACTIONS(2682), + [sym___single_quote] = ACTIONS(2682), + [sym___c_double_quote] = ACTIONS(2682), + [sym___c_single_quote] = ACTIONS(2682), + [sym___r_double_quote] = ACTIONS(2682), + [sym___r_single_quote] = ACTIONS(2682), }, [1312] = { [sym_line_comment] = STATE(1312), [sym_block_comment] = STATE(1312), - [sym_identifier] = ACTIONS(2778), + [sym_identifier] = ACTIONS(2688), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(2778), - [anon_sym_as] = ACTIONS(2778), - [anon_sym_LBRACE] = ACTIONS(2776), - [anon_sym_COMMA] = ACTIONS(2776), - [anon_sym_RBRACE] = ACTIONS(2776), - [anon_sym_LPAREN] = ACTIONS(2776), - [anon_sym_PIPE] = ACTIONS(2778), - [anon_sym_fn] = ACTIONS(2778), - [anon_sym_PLUS] = ACTIONS(2778), - [anon_sym_DASH] = ACTIONS(2778), - [anon_sym_STAR] = ACTIONS(2776), - [anon_sym_SLASH] = ACTIONS(2778), - [anon_sym_PERCENT] = ACTIONS(2776), - [anon_sym_LT] = ACTIONS(2778), - [anon_sym_GT] = ACTIONS(2778), - [anon_sym_EQ_EQ] = ACTIONS(2776), - [anon_sym_BANG_EQ] = ACTIONS(2776), - [anon_sym_LT_EQ] = ACTIONS(2776), - [anon_sym_GT_EQ] = ACTIONS(2776), - [anon_sym_LBRACK] = ACTIONS(2776), - [anon_sym_RBRACK] = ACTIONS(2776), - [anon_sym_struct] = ACTIONS(2778), - [anon_sym_mut] = ACTIONS(2778), - [anon_sym_COLON] = ACTIONS(2776), - [anon_sym_PLUS_PLUS] = ACTIONS(2776), - [anon_sym_DASH_DASH] = ACTIONS(2776), - [anon_sym_QMARK] = ACTIONS(2778), - [anon_sym_BANG] = ACTIONS(2778), - [anon_sym_go] = ACTIONS(2778), - [anon_sym_spawn] = ACTIONS(2778), - [anon_sym_json_DOTdecode] = ACTIONS(2776), - [anon_sym_LBRACK2] = ACTIONS(2778), - [anon_sym_TILDE] = ACTIONS(2776), - [anon_sym_CARET] = ACTIONS(2776), - [anon_sym_AMP] = ACTIONS(2778), - [anon_sym_LT_DASH] = ACTIONS(2776), - [anon_sym_LT_LT] = ACTIONS(2776), - [anon_sym_GT_GT] = ACTIONS(2778), - [anon_sym_GT_GT_GT] = ACTIONS(2776), - [anon_sym_AMP_CARET] = ACTIONS(2776), - [anon_sym_AMP_AMP] = ACTIONS(2776), - [anon_sym_PIPE_PIPE] = ACTIONS(2776), - [anon_sym_or] = ACTIONS(2778), - [sym_none] = ACTIONS(2778), - [sym_true] = ACTIONS(2778), - [sym_false] = ACTIONS(2778), - [sym_nil] = ACTIONS(2778), - [anon_sym_QMARK_DOT] = ACTIONS(2776), - [anon_sym_POUND_LBRACK] = ACTIONS(2776), - [anon_sym_if] = ACTIONS(2778), - [anon_sym_DOLLARif] = ACTIONS(2778), - [anon_sym_is] = ACTIONS(2778), - [anon_sym_BANGis] = ACTIONS(2776), - [anon_sym_in] = ACTIONS(2778), - [anon_sym_BANGin] = ACTIONS(2776), - [anon_sym_match] = ACTIONS(2778), - [anon_sym_select] = ACTIONS(2778), - [anon_sym_lock] = ACTIONS(2778), - [anon_sym_rlock] = ACTIONS(2778), - [anon_sym_unsafe] = ACTIONS(2778), - [anon_sym_sql] = ACTIONS(2778), - [sym_int_literal] = ACTIONS(2778), - [sym_float_literal] = ACTIONS(2776), - [sym_rune_literal] = ACTIONS(2776), - [sym_pseudo_compile_time_identifier] = ACTIONS(2778), - [anon_sym_shared] = ACTIONS(2778), - [anon_sym_map_LBRACK] = ACTIONS(2776), - [anon_sym_chan] = ACTIONS(2778), - [anon_sym_thread] = ACTIONS(2778), - [anon_sym_atomic] = ACTIONS(2778), - [sym___double_quote] = ACTIONS(2776), - [sym___single_quote] = ACTIONS(2776), - [sym___c_double_quote] = ACTIONS(2776), - [sym___c_single_quote] = ACTIONS(2776), - [sym___r_double_quote] = ACTIONS(2776), - [sym___r_single_quote] = ACTIONS(2776), + [anon_sym_DOT] = ACTIONS(2688), + [anon_sym_as] = ACTIONS(2688), + [anon_sym_LBRACE] = ACTIONS(2686), + [anon_sym_COMMA] = ACTIONS(2686), + [anon_sym_RBRACE] = ACTIONS(2686), + [anon_sym_LPAREN] = ACTIONS(2686), + [anon_sym_PIPE] = ACTIONS(2688), + [anon_sym_fn] = ACTIONS(2688), + [anon_sym_PLUS] = ACTIONS(2688), + [anon_sym_DASH] = ACTIONS(2688), + [anon_sym_STAR] = ACTIONS(2686), + [anon_sym_SLASH] = ACTIONS(2688), + [anon_sym_PERCENT] = ACTIONS(2686), + [anon_sym_LT] = ACTIONS(2688), + [anon_sym_GT] = ACTIONS(2688), + [anon_sym_EQ_EQ] = ACTIONS(2686), + [anon_sym_BANG_EQ] = ACTIONS(2686), + [anon_sym_LT_EQ] = ACTIONS(2686), + [anon_sym_GT_EQ] = ACTIONS(2686), + [anon_sym_LBRACK] = ACTIONS(2686), + [anon_sym_RBRACK] = ACTIONS(2686), + [anon_sym_struct] = ACTIONS(2688), + [anon_sym_mut] = ACTIONS(2688), + [anon_sym_COLON] = ACTIONS(2686), + [anon_sym_PLUS_PLUS] = ACTIONS(2686), + [anon_sym_DASH_DASH] = ACTIONS(2686), + [anon_sym_QMARK] = ACTIONS(2688), + [anon_sym_BANG] = ACTIONS(2688), + [anon_sym_go] = ACTIONS(2688), + [anon_sym_spawn] = ACTIONS(2688), + [anon_sym_json_DOTdecode] = ACTIONS(2686), + [anon_sym_LBRACK2] = ACTIONS(2688), + [anon_sym_TILDE] = ACTIONS(2686), + [anon_sym_CARET] = ACTIONS(2686), + [anon_sym_AMP] = ACTIONS(2688), + [anon_sym_LT_DASH] = ACTIONS(2686), + [anon_sym_LT_LT] = ACTIONS(2686), + [anon_sym_GT_GT] = ACTIONS(2688), + [anon_sym_GT_GT_GT] = ACTIONS(2686), + [anon_sym_AMP_CARET] = ACTIONS(2686), + [anon_sym_AMP_AMP] = ACTIONS(2686), + [anon_sym_PIPE_PIPE] = ACTIONS(2686), + [anon_sym_or] = ACTIONS(2688), + [sym_none] = ACTIONS(2688), + [sym_true] = ACTIONS(2688), + [sym_false] = ACTIONS(2688), + [sym_nil] = ACTIONS(2688), + [anon_sym_QMARK_DOT] = ACTIONS(2686), + [anon_sym_POUND_LBRACK] = ACTIONS(2686), + [anon_sym_if] = ACTIONS(2688), + [anon_sym_DOLLARif] = ACTIONS(2688), + [anon_sym_is] = ACTIONS(2688), + [anon_sym_BANGis] = ACTIONS(2686), + [anon_sym_in] = ACTIONS(2688), + [anon_sym_BANGin] = ACTIONS(2686), + [anon_sym_match] = ACTIONS(2688), + [anon_sym_select] = ACTIONS(2688), + [anon_sym_lock] = ACTIONS(2688), + [anon_sym_rlock] = ACTIONS(2688), + [anon_sym_unsafe] = ACTIONS(2688), + [anon_sym_sql] = ACTIONS(2688), + [sym_int_literal] = ACTIONS(2688), + [sym_float_literal] = ACTIONS(2686), + [sym_rune_literal] = ACTIONS(2686), + [sym_pseudo_compile_time_identifier] = ACTIONS(2688), + [anon_sym_shared] = ACTIONS(2688), + [anon_sym_map_LBRACK] = ACTIONS(2686), + [anon_sym_chan] = ACTIONS(2688), + [anon_sym_thread] = ACTIONS(2688), + [anon_sym_atomic] = ACTIONS(2688), + [sym___double_quote] = ACTIONS(2686), + [sym___single_quote] = ACTIONS(2686), + [sym___c_double_quote] = ACTIONS(2686), + [sym___c_single_quote] = ACTIONS(2686), + [sym___r_double_quote] = ACTIONS(2686), + [sym___r_single_quote] = ACTIONS(2686), }, [1313] = { [sym_line_comment] = STATE(1313), [sym_block_comment] = STATE(1313), - [sym_identifier] = ACTIONS(2761), + [sym_identifier] = ACTIONS(2692), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(2761), - [anon_sym_as] = ACTIONS(2761), - [anon_sym_LBRACE] = ACTIONS(2759), - [anon_sym_COMMA] = ACTIONS(2759), - [anon_sym_RBRACE] = ACTIONS(2759), - [anon_sym_LPAREN] = ACTIONS(2759), - [anon_sym_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(2692), + [anon_sym_as] = ACTIONS(2692), + [anon_sym_LBRACE] = ACTIONS(2690), + [anon_sym_COMMA] = ACTIONS(2690), + [anon_sym_RBRACE] = ACTIONS(2690), + [anon_sym_LPAREN] = ACTIONS(2690), + [anon_sym_PIPE] = ACTIONS(2692), + [anon_sym_fn] = ACTIONS(2692), + [anon_sym_PLUS] = ACTIONS(2692), + [anon_sym_DASH] = ACTIONS(2692), + [anon_sym_STAR] = ACTIONS(2690), + [anon_sym_SLASH] = ACTIONS(2692), + [anon_sym_PERCENT] = ACTIONS(2690), + [anon_sym_LT] = ACTIONS(2692), + [anon_sym_GT] = ACTIONS(2692), + [anon_sym_EQ_EQ] = ACTIONS(2690), + [anon_sym_BANG_EQ] = ACTIONS(2690), + [anon_sym_LT_EQ] = ACTIONS(2690), + [anon_sym_GT_EQ] = ACTIONS(2690), + [anon_sym_LBRACK] = ACTIONS(2690), + [anon_sym_RBRACK] = ACTIONS(2690), + [anon_sym_struct] = ACTIONS(2692), + [anon_sym_mut] = ACTIONS(2692), + [anon_sym_COLON] = ACTIONS(2690), + [anon_sym_PLUS_PLUS] = ACTIONS(2690), + [anon_sym_DASH_DASH] = ACTIONS(2690), + [anon_sym_QMARK] = ACTIONS(2692), + [anon_sym_BANG] = ACTIONS(2692), + [anon_sym_go] = ACTIONS(2692), + [anon_sym_spawn] = ACTIONS(2692), + [anon_sym_json_DOTdecode] = ACTIONS(2690), + [anon_sym_LBRACK2] = ACTIONS(2692), + [anon_sym_TILDE] = ACTIONS(2690), + [anon_sym_CARET] = ACTIONS(2690), + [anon_sym_AMP] = ACTIONS(2692), + [anon_sym_LT_DASH] = ACTIONS(2690), + [anon_sym_LT_LT] = ACTIONS(2690), + [anon_sym_GT_GT] = ACTIONS(2692), + [anon_sym_GT_GT_GT] = ACTIONS(2690), + [anon_sym_AMP_CARET] = ACTIONS(2690), + [anon_sym_AMP_AMP] = ACTIONS(2690), + [anon_sym_PIPE_PIPE] = ACTIONS(2690), + [anon_sym_or] = ACTIONS(2692), + [sym_none] = ACTIONS(2692), + [sym_true] = ACTIONS(2692), + [sym_false] = ACTIONS(2692), + [sym_nil] = ACTIONS(2692), + [anon_sym_QMARK_DOT] = ACTIONS(2690), + [anon_sym_POUND_LBRACK] = ACTIONS(2690), + [anon_sym_if] = ACTIONS(2692), + [anon_sym_DOLLARif] = ACTIONS(2692), + [anon_sym_is] = ACTIONS(2692), + [anon_sym_BANGis] = ACTIONS(2690), + [anon_sym_in] = ACTIONS(2692), + [anon_sym_BANGin] = ACTIONS(2690), + [anon_sym_match] = ACTIONS(2692), + [anon_sym_select] = ACTIONS(2692), + [anon_sym_lock] = ACTIONS(2692), + [anon_sym_rlock] = ACTIONS(2692), + [anon_sym_unsafe] = ACTIONS(2692), + [anon_sym_sql] = ACTIONS(2692), + [sym_int_literal] = ACTIONS(2692), + [sym_float_literal] = ACTIONS(2690), + [sym_rune_literal] = ACTIONS(2690), + [sym_pseudo_compile_time_identifier] = ACTIONS(2692), + [anon_sym_shared] = ACTIONS(2692), + [anon_sym_map_LBRACK] = ACTIONS(2690), + [anon_sym_chan] = ACTIONS(2692), + [anon_sym_thread] = ACTIONS(2692), + [anon_sym_atomic] = ACTIONS(2692), + [sym___double_quote] = ACTIONS(2690), + [sym___single_quote] = ACTIONS(2690), + [sym___c_double_quote] = ACTIONS(2690), + [sym___c_single_quote] = ACTIONS(2690), + [sym___r_double_quote] = ACTIONS(2690), + [sym___r_single_quote] = ACTIONS(2690), }, [1314] = { [sym_line_comment] = STATE(1314), [sym_block_comment] = STATE(1314), + [sym_identifier] = ACTIONS(2806), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(2806), + [anon_sym_as] = ACTIONS(2806), + [anon_sym_LBRACE] = ACTIONS(2804), + [anon_sym_COMMA] = ACTIONS(2804), + [anon_sym_RBRACE] = ACTIONS(2804), + [anon_sym_LPAREN] = ACTIONS(2804), + [anon_sym_PIPE] = ACTIONS(2806), + [anon_sym_fn] = ACTIONS(2806), + [anon_sym_PLUS] = ACTIONS(2806), + [anon_sym_DASH] = ACTIONS(2806), + [anon_sym_STAR] = ACTIONS(2804), + [anon_sym_SLASH] = ACTIONS(2806), + [anon_sym_PERCENT] = ACTIONS(2804), + [anon_sym_LT] = ACTIONS(2806), + [anon_sym_GT] = ACTIONS(2806), + [anon_sym_EQ_EQ] = ACTIONS(2804), + [anon_sym_BANG_EQ] = ACTIONS(2804), + [anon_sym_LT_EQ] = ACTIONS(2804), + [anon_sym_GT_EQ] = ACTIONS(2804), + [anon_sym_LBRACK] = ACTIONS(2804), + [anon_sym_RBRACK] = ACTIONS(2804), + [anon_sym_struct] = ACTIONS(2806), + [anon_sym_mut] = ACTIONS(2806), + [anon_sym_COLON] = ACTIONS(2804), + [anon_sym_PLUS_PLUS] = ACTIONS(2804), + [anon_sym_DASH_DASH] = ACTIONS(2804), + [anon_sym_QMARK] = ACTIONS(2806), + [anon_sym_BANG] = ACTIONS(2806), + [anon_sym_go] = ACTIONS(2806), + [anon_sym_spawn] = ACTIONS(2806), + [anon_sym_json_DOTdecode] = ACTIONS(2804), + [anon_sym_LBRACK2] = ACTIONS(2806), + [anon_sym_TILDE] = ACTIONS(2804), + [anon_sym_CARET] = ACTIONS(2804), + [anon_sym_AMP] = ACTIONS(2806), + [anon_sym_LT_DASH] = ACTIONS(2804), + [anon_sym_LT_LT] = ACTIONS(2804), + [anon_sym_GT_GT] = ACTIONS(2806), + [anon_sym_GT_GT_GT] = ACTIONS(2804), + [anon_sym_AMP_CARET] = ACTIONS(2804), + [anon_sym_AMP_AMP] = ACTIONS(2804), + [anon_sym_PIPE_PIPE] = ACTIONS(2804), + [anon_sym_or] = ACTIONS(2806), + [sym_none] = ACTIONS(2806), + [sym_true] = ACTIONS(2806), + [sym_false] = ACTIONS(2806), + [sym_nil] = ACTIONS(2806), + [anon_sym_QMARK_DOT] = ACTIONS(2804), + [anon_sym_POUND_LBRACK] = ACTIONS(2804), + [anon_sym_if] = ACTIONS(2806), + [anon_sym_DOLLARif] = ACTIONS(2806), + [anon_sym_is] = ACTIONS(2806), + [anon_sym_BANGis] = ACTIONS(2804), + [anon_sym_in] = ACTIONS(2806), + [anon_sym_BANGin] = ACTIONS(2804), + [anon_sym_match] = ACTIONS(2806), + [anon_sym_select] = ACTIONS(2806), + [anon_sym_lock] = ACTIONS(2806), + [anon_sym_rlock] = ACTIONS(2806), + [anon_sym_unsafe] = ACTIONS(2806), + [anon_sym_sql] = ACTIONS(2806), + [sym_int_literal] = ACTIONS(2806), + [sym_float_literal] = ACTIONS(2804), + [sym_rune_literal] = ACTIONS(2804), + [sym_pseudo_compile_time_identifier] = ACTIONS(2806), + [anon_sym_shared] = ACTIONS(2806), + [anon_sym_map_LBRACK] = ACTIONS(2804), + [anon_sym_chan] = ACTIONS(2806), + [anon_sym_thread] = ACTIONS(2806), + [anon_sym_atomic] = ACTIONS(2806), + [sym___double_quote] = ACTIONS(2804), + [sym___single_quote] = ACTIONS(2804), + [sym___c_double_quote] = ACTIONS(2804), + [sym___c_single_quote] = ACTIONS(2804), + [sym___r_double_quote] = ACTIONS(2804), + [sym___r_single_quote] = ACTIONS(2804), + }, + [1315] = { + [sym_line_comment] = STATE(1315), + [sym_block_comment] = STATE(1315), + [sym_identifier] = ACTIONS(2704), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(2704), + [anon_sym_as] = ACTIONS(2704), + [anon_sym_LBRACE] = ACTIONS(2702), + [anon_sym_COMMA] = ACTIONS(2702), + [anon_sym_RBRACE] = ACTIONS(2702), + [anon_sym_LPAREN] = ACTIONS(2702), + [anon_sym_PIPE] = ACTIONS(2704), + [anon_sym_fn] = ACTIONS(2704), + [anon_sym_PLUS] = ACTIONS(2704), + [anon_sym_DASH] = ACTIONS(2704), + [anon_sym_STAR] = ACTIONS(2702), + [anon_sym_SLASH] = ACTIONS(2704), + [anon_sym_PERCENT] = ACTIONS(2702), + [anon_sym_LT] = ACTIONS(2704), + [anon_sym_GT] = ACTIONS(2704), + [anon_sym_EQ_EQ] = ACTIONS(2702), + [anon_sym_BANG_EQ] = ACTIONS(2702), + [anon_sym_LT_EQ] = ACTIONS(2702), + [anon_sym_GT_EQ] = ACTIONS(2702), + [anon_sym_LBRACK] = ACTIONS(2702), + [anon_sym_RBRACK] = ACTIONS(2702), + [anon_sym_struct] = ACTIONS(2704), + [anon_sym_mut] = ACTIONS(2704), + [anon_sym_COLON] = ACTIONS(2702), + [anon_sym_PLUS_PLUS] = ACTIONS(2702), + [anon_sym_DASH_DASH] = ACTIONS(2702), + [anon_sym_QMARK] = ACTIONS(2704), + [anon_sym_BANG] = ACTIONS(2704), + [anon_sym_go] = ACTIONS(2704), + [anon_sym_spawn] = ACTIONS(2704), + [anon_sym_json_DOTdecode] = ACTIONS(2702), + [anon_sym_LBRACK2] = ACTIONS(2704), + [anon_sym_TILDE] = ACTIONS(2702), + [anon_sym_CARET] = ACTIONS(2702), + [anon_sym_AMP] = ACTIONS(2704), + [anon_sym_LT_DASH] = ACTIONS(2702), + [anon_sym_LT_LT] = ACTIONS(2702), + [anon_sym_GT_GT] = ACTIONS(2704), + [anon_sym_GT_GT_GT] = ACTIONS(2702), + [anon_sym_AMP_CARET] = ACTIONS(2702), + [anon_sym_AMP_AMP] = ACTIONS(2702), + [anon_sym_PIPE_PIPE] = ACTIONS(2702), + [anon_sym_or] = ACTIONS(2704), + [sym_none] = ACTIONS(2704), + [sym_true] = ACTIONS(2704), + [sym_false] = ACTIONS(2704), + [sym_nil] = ACTIONS(2704), + [anon_sym_QMARK_DOT] = ACTIONS(2702), + [anon_sym_POUND_LBRACK] = ACTIONS(2702), + [anon_sym_if] = ACTIONS(2704), + [anon_sym_DOLLARif] = ACTIONS(2704), + [anon_sym_is] = ACTIONS(2704), + [anon_sym_BANGis] = ACTIONS(2702), + [anon_sym_in] = ACTIONS(2704), + [anon_sym_BANGin] = ACTIONS(2702), + [anon_sym_match] = ACTIONS(2704), + [anon_sym_select] = ACTIONS(2704), + [anon_sym_lock] = ACTIONS(2704), + [anon_sym_rlock] = ACTIONS(2704), + [anon_sym_unsafe] = ACTIONS(2704), + [anon_sym_sql] = ACTIONS(2704), + [sym_int_literal] = ACTIONS(2704), + [sym_float_literal] = ACTIONS(2702), + [sym_rune_literal] = ACTIONS(2702), + [sym_pseudo_compile_time_identifier] = ACTIONS(2704), + [anon_sym_shared] = ACTIONS(2704), + [anon_sym_map_LBRACK] = ACTIONS(2702), + [anon_sym_chan] = ACTIONS(2704), + [anon_sym_thread] = ACTIONS(2704), + [anon_sym_atomic] = ACTIONS(2704), + [sym___double_quote] = ACTIONS(2702), + [sym___single_quote] = ACTIONS(2702), + [sym___c_double_quote] = ACTIONS(2702), + [sym___c_single_quote] = ACTIONS(2702), + [sym___r_double_quote] = ACTIONS(2702), + [sym___r_single_quote] = ACTIONS(2702), + }, + [1316] = { + [sym_line_comment] = STATE(1316), + [sym_block_comment] = STATE(1316), [sym_identifier] = ACTIONS(2768), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), @@ -166098,1669 +166315,839 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym___r_double_quote] = ACTIONS(2766), [sym___r_single_quote] = ACTIONS(2766), }, - [1315] = { - [sym_line_comment] = STATE(1315), - [sym_block_comment] = STATE(1315), - [sym_identifier] = ACTIONS(2273), - [anon_sym_SLASH_SLASH] = ACTIONS(3), - [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(2273), - [anon_sym_as] = ACTIONS(2273), - [anon_sym_LBRACE] = ACTIONS(2271), - [anon_sym_COMMA] = ACTIONS(2271), - [anon_sym_RBRACE] = ACTIONS(2271), - [anon_sym_LPAREN] = ACTIONS(2271), - [anon_sym_PIPE] = ACTIONS(2273), - [anon_sym_fn] = ACTIONS(2273), - [anon_sym_PLUS] = ACTIONS(2273), - [anon_sym_DASH] = ACTIONS(2273), - [anon_sym_STAR] = ACTIONS(2271), - [anon_sym_SLASH] = ACTIONS(2273), - [anon_sym_PERCENT] = ACTIONS(2271), - [anon_sym_LT] = ACTIONS(2273), - [anon_sym_GT] = ACTIONS(2273), - [anon_sym_EQ_EQ] = ACTIONS(2271), - [anon_sym_BANG_EQ] = ACTIONS(2271), - [anon_sym_LT_EQ] = ACTIONS(2271), - [anon_sym_GT_EQ] = ACTIONS(2271), - [anon_sym_LBRACK] = ACTIONS(2271), - [anon_sym_RBRACK] = ACTIONS(2271), - [anon_sym_struct] = ACTIONS(2273), - [anon_sym_mut] = ACTIONS(2273), - [anon_sym_COLON] = ACTIONS(2271), - [anon_sym_PLUS_PLUS] = ACTIONS(2271), - [anon_sym_DASH_DASH] = ACTIONS(2271), - [anon_sym_QMARK] = ACTIONS(2273), - [anon_sym_BANG] = ACTIONS(2273), - [anon_sym_go] = ACTIONS(2273), - [anon_sym_spawn] = ACTIONS(2273), - [anon_sym_json_DOTdecode] = ACTIONS(2271), - [anon_sym_LBRACK2] = ACTIONS(2273), - [anon_sym_TILDE] = ACTIONS(2271), - [anon_sym_CARET] = ACTIONS(2271), - [anon_sym_AMP] = ACTIONS(2273), - [anon_sym_LT_DASH] = ACTIONS(2271), - [anon_sym_LT_LT] = ACTIONS(2271), - [anon_sym_GT_GT] = ACTIONS(2273), - [anon_sym_GT_GT_GT] = ACTIONS(2271), - [anon_sym_AMP_CARET] = ACTIONS(2271), - [anon_sym_AMP_AMP] = ACTIONS(2271), - [anon_sym_PIPE_PIPE] = ACTIONS(2271), - [anon_sym_or] = ACTIONS(2273), - [sym_none] = ACTIONS(2273), - [sym_true] = ACTIONS(2273), - [sym_false] = ACTIONS(2273), - [sym_nil] = ACTIONS(2273), - [anon_sym_QMARK_DOT] = ACTIONS(2271), - [anon_sym_POUND_LBRACK] = ACTIONS(2271), - [anon_sym_if] = ACTIONS(2273), - [anon_sym_DOLLARif] = ACTIONS(2273), - [anon_sym_is] = ACTIONS(2273), - [anon_sym_BANGis] = ACTIONS(2271), - [anon_sym_in] = ACTIONS(2273), - [anon_sym_BANGin] = ACTIONS(2271), - [anon_sym_match] = ACTIONS(2273), - [anon_sym_select] = ACTIONS(2273), - [anon_sym_lock] = ACTIONS(2273), - [anon_sym_rlock] = ACTIONS(2273), - [anon_sym_unsafe] = ACTIONS(2273), - [anon_sym_sql] = ACTIONS(2273), - [sym_int_literal] = ACTIONS(2273), - [sym_float_literal] = ACTIONS(2271), - [sym_rune_literal] = ACTIONS(2271), - [sym_pseudo_compile_time_identifier] = ACTIONS(2273), - [anon_sym_shared] = ACTIONS(2273), - [anon_sym_map_LBRACK] = ACTIONS(2271), - [anon_sym_chan] = ACTIONS(2273), - [anon_sym_thread] = ACTIONS(2273), - [anon_sym_atomic] = ACTIONS(2273), - [sym___double_quote] = ACTIONS(2271), - [sym___single_quote] = ACTIONS(2271), - [sym___c_double_quote] = ACTIONS(2271), - [sym___c_single_quote] = ACTIONS(2271), - [sym___r_double_quote] = ACTIONS(2271), - [sym___r_single_quote] = ACTIONS(2271), - }, - [1316] = { - [sym_line_comment] = STATE(1316), - [sym_block_comment] = STATE(1316), - [sym_identifier] = ACTIONS(2177), - [anon_sym_SLASH_SLASH] = ACTIONS(3), - [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(2177), - [anon_sym_as] = ACTIONS(2177), - [anon_sym_LBRACE] = ACTIONS(2175), - [anon_sym_COMMA] = ACTIONS(2175), - [anon_sym_RBRACE] = ACTIONS(2175), - [anon_sym_LPAREN] = ACTIONS(2175), - [anon_sym_PIPE] = ACTIONS(2177), - [anon_sym_fn] = ACTIONS(2177), - [anon_sym_PLUS] = ACTIONS(2177), - [anon_sym_DASH] = ACTIONS(2177), - [anon_sym_STAR] = ACTIONS(2175), - [anon_sym_SLASH] = ACTIONS(2177), - [anon_sym_PERCENT] = ACTIONS(2175), - [anon_sym_LT] = ACTIONS(2177), - [anon_sym_GT] = ACTIONS(2177), - [anon_sym_EQ_EQ] = ACTIONS(2175), - [anon_sym_BANG_EQ] = ACTIONS(2175), - [anon_sym_LT_EQ] = ACTIONS(2175), - [anon_sym_GT_EQ] = ACTIONS(2175), - [anon_sym_LBRACK] = ACTIONS(2175), - [anon_sym_RBRACK] = ACTIONS(2175), - [anon_sym_struct] = ACTIONS(2177), - [anon_sym_mut] = ACTIONS(2177), - [anon_sym_COLON] = ACTIONS(2175), - [anon_sym_PLUS_PLUS] = ACTIONS(2175), - [anon_sym_DASH_DASH] = ACTIONS(2175), - [anon_sym_QMARK] = ACTIONS(2177), - [anon_sym_BANG] = ACTIONS(2177), - [anon_sym_go] = ACTIONS(2177), - [anon_sym_spawn] = ACTIONS(2177), - [anon_sym_json_DOTdecode] = ACTIONS(2175), - [anon_sym_LBRACK2] = ACTIONS(2177), - [anon_sym_TILDE] = ACTIONS(2175), - [anon_sym_CARET] = ACTIONS(2175), - [anon_sym_AMP] = ACTIONS(2177), - [anon_sym_LT_DASH] = ACTIONS(2175), - [anon_sym_LT_LT] = ACTIONS(2175), - [anon_sym_GT_GT] = ACTIONS(2177), - [anon_sym_GT_GT_GT] = ACTIONS(2175), - [anon_sym_AMP_CARET] = ACTIONS(2175), - [anon_sym_AMP_AMP] = ACTIONS(2175), - [anon_sym_PIPE_PIPE] = ACTIONS(2175), - [anon_sym_or] = ACTIONS(2177), - [sym_none] = ACTIONS(2177), - [sym_true] = ACTIONS(2177), - [sym_false] = ACTIONS(2177), - [sym_nil] = ACTIONS(2177), - [anon_sym_QMARK_DOT] = ACTIONS(2175), - [anon_sym_POUND_LBRACK] = ACTIONS(2175), - [anon_sym_if] = ACTIONS(2177), - [anon_sym_DOLLARif] = ACTIONS(2177), - [anon_sym_is] = ACTIONS(2177), - [anon_sym_BANGis] = ACTIONS(2175), - [anon_sym_in] = ACTIONS(2177), - [anon_sym_BANGin] = ACTIONS(2175), - [anon_sym_match] = ACTIONS(2177), - [anon_sym_select] = ACTIONS(2177), - [anon_sym_lock] = ACTIONS(2177), - [anon_sym_rlock] = ACTIONS(2177), - [anon_sym_unsafe] = ACTIONS(2177), - [anon_sym_sql] = ACTIONS(2177), - [sym_int_literal] = ACTIONS(2177), - [sym_float_literal] = ACTIONS(2175), - [sym_rune_literal] = ACTIONS(2175), - [sym_pseudo_compile_time_identifier] = ACTIONS(2177), - [anon_sym_shared] = ACTIONS(2177), - [anon_sym_map_LBRACK] = ACTIONS(2175), - [anon_sym_chan] = ACTIONS(2177), - [anon_sym_thread] = ACTIONS(2177), - [anon_sym_atomic] = ACTIONS(2177), - [sym___double_quote] = ACTIONS(2175), - [sym___single_quote] = ACTIONS(2175), - [sym___c_double_quote] = ACTIONS(2175), - [sym___c_single_quote] = ACTIONS(2175), - [sym___r_double_quote] = ACTIONS(2175), - [sym___r_single_quote] = ACTIONS(2175), - }, [1317] = { [sym_line_comment] = STATE(1317), [sym_block_comment] = STATE(1317), - [sym_identifier] = ACTIONS(2217), + [sym_identifier] = ACTIONS(3058), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(2217), - [anon_sym_as] = ACTIONS(2217), - [anon_sym_LBRACE] = ACTIONS(2215), - [anon_sym_COMMA] = ACTIONS(2215), - [anon_sym_RBRACE] = ACTIONS(2215), - [anon_sym_LPAREN] = ACTIONS(2215), - [anon_sym_PIPE] = ACTIONS(2217), - [anon_sym_fn] = ACTIONS(2217), - [anon_sym_PLUS] = ACTIONS(2217), - [anon_sym_DASH] = ACTIONS(2217), - [anon_sym_STAR] = ACTIONS(2215), - [anon_sym_SLASH] = ACTIONS(2217), - [anon_sym_PERCENT] = ACTIONS(2215), - [anon_sym_LT] = ACTIONS(2217), - [anon_sym_GT] = ACTIONS(2217), - [anon_sym_EQ_EQ] = ACTIONS(2215), - [anon_sym_BANG_EQ] = ACTIONS(2215), - [anon_sym_LT_EQ] = ACTIONS(2215), - [anon_sym_GT_EQ] = ACTIONS(2215), - [anon_sym_LBRACK] = ACTIONS(2215), - [anon_sym_RBRACK] = ACTIONS(2215), - [anon_sym_struct] = ACTIONS(2217), - [anon_sym_mut] = ACTIONS(2217), - [anon_sym_COLON] = ACTIONS(2215), - [anon_sym_PLUS_PLUS] = ACTIONS(2215), - [anon_sym_DASH_DASH] = ACTIONS(2215), - [anon_sym_QMARK] = ACTIONS(2217), - [anon_sym_BANG] = ACTIONS(2217), - [anon_sym_go] = ACTIONS(2217), - [anon_sym_spawn] = ACTIONS(2217), - [anon_sym_json_DOTdecode] = ACTIONS(2215), - [anon_sym_LBRACK2] = ACTIONS(2217), - [anon_sym_TILDE] = ACTIONS(2215), - [anon_sym_CARET] = ACTIONS(2215), - [anon_sym_AMP] = ACTIONS(2217), - [anon_sym_LT_DASH] = ACTIONS(2215), - [anon_sym_LT_LT] = ACTIONS(2215), - [anon_sym_GT_GT] = ACTIONS(2217), - [anon_sym_GT_GT_GT] = ACTIONS(2215), - [anon_sym_AMP_CARET] = ACTIONS(2215), - [anon_sym_AMP_AMP] = ACTIONS(2215), - [anon_sym_PIPE_PIPE] = ACTIONS(2215), - [anon_sym_or] = ACTIONS(2217), - [sym_none] = ACTIONS(2217), - [sym_true] = ACTIONS(2217), - [sym_false] = ACTIONS(2217), - [sym_nil] = ACTIONS(2217), - [anon_sym_QMARK_DOT] = ACTIONS(2215), - [anon_sym_POUND_LBRACK] = ACTIONS(2215), - [anon_sym_if] = ACTIONS(2217), - [anon_sym_DOLLARif] = ACTIONS(2217), - [anon_sym_is] = ACTIONS(2217), - [anon_sym_BANGis] = ACTIONS(2215), - [anon_sym_in] = ACTIONS(2217), - [anon_sym_BANGin] = ACTIONS(2215), - [anon_sym_match] = ACTIONS(2217), - [anon_sym_select] = ACTIONS(2217), - [anon_sym_lock] = ACTIONS(2217), - [anon_sym_rlock] = ACTIONS(2217), - [anon_sym_unsafe] = ACTIONS(2217), - [anon_sym_sql] = ACTIONS(2217), - [sym_int_literal] = ACTIONS(2217), - [sym_float_literal] = ACTIONS(2215), - [sym_rune_literal] = ACTIONS(2215), - [sym_pseudo_compile_time_identifier] = ACTIONS(2217), - [anon_sym_shared] = ACTIONS(2217), - [anon_sym_map_LBRACK] = ACTIONS(2215), - [anon_sym_chan] = ACTIONS(2217), - [anon_sym_thread] = ACTIONS(2217), - [anon_sym_atomic] = ACTIONS(2217), - [sym___double_quote] = ACTIONS(2215), - [sym___single_quote] = ACTIONS(2215), - [sym___c_double_quote] = ACTIONS(2215), - [sym___c_single_quote] = ACTIONS(2215), - [sym___r_double_quote] = ACTIONS(2215), - [sym___r_single_quote] = ACTIONS(2215), + [anon_sym_DOT] = ACTIONS(3058), + [anon_sym_as] = ACTIONS(3058), + [anon_sym_LBRACE] = ACTIONS(3056), + [anon_sym_COMMA] = ACTIONS(3056), + [anon_sym_RBRACE] = ACTIONS(3056), + [anon_sym_LPAREN] = ACTIONS(3056), + [anon_sym_PIPE] = ACTIONS(3058), + [anon_sym_fn] = ACTIONS(3058), + [anon_sym_PLUS] = ACTIONS(3058), + [anon_sym_DASH] = ACTIONS(3058), + [anon_sym_STAR] = ACTIONS(3056), + [anon_sym_SLASH] = ACTIONS(3058), + [anon_sym_PERCENT] = ACTIONS(3056), + [anon_sym_LT] = ACTIONS(3058), + [anon_sym_GT] = ACTIONS(3058), + [anon_sym_EQ_EQ] = ACTIONS(3056), + [anon_sym_BANG_EQ] = ACTIONS(3056), + [anon_sym_LT_EQ] = ACTIONS(3056), + [anon_sym_GT_EQ] = ACTIONS(3056), + [anon_sym_LBRACK] = ACTIONS(3056), + [anon_sym_RBRACK] = ACTIONS(3056), + [anon_sym_struct] = ACTIONS(3058), + [anon_sym_mut] = ACTIONS(3058), + [anon_sym_COLON] = ACTIONS(3056), + [anon_sym_PLUS_PLUS] = ACTIONS(3056), + [anon_sym_DASH_DASH] = ACTIONS(3056), + [anon_sym_QMARK] = ACTIONS(3058), + [anon_sym_BANG] = ACTIONS(3058), + [anon_sym_go] = ACTIONS(3058), + [anon_sym_spawn] = ACTIONS(3058), + [anon_sym_json_DOTdecode] = ACTIONS(3056), + [anon_sym_LBRACK2] = ACTIONS(3058), + [anon_sym_TILDE] = ACTIONS(3056), + [anon_sym_CARET] = ACTIONS(3056), + [anon_sym_AMP] = ACTIONS(3058), + [anon_sym_LT_DASH] = ACTIONS(3056), + [anon_sym_LT_LT] = ACTIONS(3056), + [anon_sym_GT_GT] = ACTIONS(3058), + [anon_sym_GT_GT_GT] = ACTIONS(3056), + [anon_sym_AMP_CARET] = ACTIONS(3056), + [anon_sym_AMP_AMP] = ACTIONS(3056), + [anon_sym_PIPE_PIPE] = ACTIONS(3056), + [anon_sym_or] = ACTIONS(3058), + [sym_none] = ACTIONS(3058), + [sym_true] = ACTIONS(3058), + [sym_false] = ACTIONS(3058), + [sym_nil] = ACTIONS(3058), + [anon_sym_QMARK_DOT] = ACTIONS(3056), + [anon_sym_POUND_LBRACK] = ACTIONS(3056), + [anon_sym_if] = ACTIONS(3058), + [anon_sym_DOLLARif] = ACTIONS(3058), + [anon_sym_is] = ACTIONS(3058), + [anon_sym_BANGis] = ACTIONS(3056), + [anon_sym_in] = ACTIONS(3058), + [anon_sym_BANGin] = ACTIONS(3056), + [anon_sym_match] = ACTIONS(3058), + [anon_sym_select] = ACTIONS(3058), + [anon_sym_lock] = ACTIONS(3058), + [anon_sym_rlock] = ACTIONS(3058), + [anon_sym_unsafe] = ACTIONS(3058), + [anon_sym_sql] = ACTIONS(3058), + [sym_int_literal] = ACTIONS(3058), + [sym_float_literal] = ACTIONS(3056), + [sym_rune_literal] = ACTIONS(3056), + [sym_pseudo_compile_time_identifier] = ACTIONS(3058), + [anon_sym_shared] = ACTIONS(3058), + [anon_sym_map_LBRACK] = ACTIONS(3056), + [anon_sym_chan] = ACTIONS(3058), + [anon_sym_thread] = ACTIONS(3058), + [anon_sym_atomic] = ACTIONS(3058), + [sym___double_quote] = ACTIONS(3056), + [sym___single_quote] = ACTIONS(3056), + [sym___c_double_quote] = ACTIONS(3056), + [sym___c_single_quote] = ACTIONS(3056), + [sym___r_double_quote] = ACTIONS(3056), + [sym___r_single_quote] = ACTIONS(3056), }, [1318] = { [sym_line_comment] = STATE(1318), [sym_block_comment] = STATE(1318), - [sym_identifier] = ACTIONS(2225), + [sym_identifier] = ACTIONS(2532), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(2225), - [anon_sym_as] = ACTIONS(2225), - [anon_sym_LBRACE] = ACTIONS(2223), - [anon_sym_COMMA] = ACTIONS(2223), - [anon_sym_RBRACE] = ACTIONS(2223), - [anon_sym_LPAREN] = ACTIONS(2223), - [anon_sym_PIPE] = ACTIONS(2225), - [anon_sym_fn] = ACTIONS(2225), - [anon_sym_PLUS] = ACTIONS(2225), - [anon_sym_DASH] = ACTIONS(2225), - [anon_sym_STAR] = ACTIONS(2223), - [anon_sym_SLASH] = ACTIONS(2225), - [anon_sym_PERCENT] = ACTIONS(2223), - [anon_sym_LT] = ACTIONS(2225), - [anon_sym_GT] = ACTIONS(2225), - [anon_sym_EQ_EQ] = ACTIONS(2223), - [anon_sym_BANG_EQ] = ACTIONS(2223), - [anon_sym_LT_EQ] = ACTIONS(2223), - [anon_sym_GT_EQ] = ACTIONS(2223), - [anon_sym_LBRACK] = ACTIONS(2223), - [anon_sym_RBRACK] = ACTIONS(2223), - [anon_sym_struct] = ACTIONS(2225), - [anon_sym_mut] = ACTIONS(2225), - [anon_sym_COLON] = ACTIONS(2223), - [anon_sym_PLUS_PLUS] = ACTIONS(2223), - [anon_sym_DASH_DASH] = ACTIONS(2223), - [anon_sym_QMARK] = ACTIONS(2225), - [anon_sym_BANG] = ACTIONS(2225), - [anon_sym_go] = ACTIONS(2225), - [anon_sym_spawn] = ACTIONS(2225), - [anon_sym_json_DOTdecode] = ACTIONS(2223), - [anon_sym_LBRACK2] = ACTIONS(2225), - [anon_sym_TILDE] = ACTIONS(2223), - [anon_sym_CARET] = ACTIONS(2223), - [anon_sym_AMP] = ACTIONS(2225), - [anon_sym_LT_DASH] = ACTIONS(2223), - [anon_sym_LT_LT] = ACTIONS(2223), - [anon_sym_GT_GT] = ACTIONS(2225), - [anon_sym_GT_GT_GT] = ACTIONS(2223), - [anon_sym_AMP_CARET] = ACTIONS(2223), - [anon_sym_AMP_AMP] = ACTIONS(2223), - [anon_sym_PIPE_PIPE] = ACTIONS(2223), - [anon_sym_or] = ACTIONS(2225), - [sym_none] = ACTIONS(2225), - [sym_true] = ACTIONS(2225), - [sym_false] = ACTIONS(2225), - [sym_nil] = ACTIONS(2225), - [anon_sym_QMARK_DOT] = ACTIONS(2223), - [anon_sym_POUND_LBRACK] = ACTIONS(2223), - [anon_sym_if] = ACTIONS(2225), - [anon_sym_DOLLARif] = ACTIONS(2225), - [anon_sym_is] = ACTIONS(2225), - [anon_sym_BANGis] = ACTIONS(2223), - [anon_sym_in] = ACTIONS(2225), - [anon_sym_BANGin] = ACTIONS(2223), - [anon_sym_match] = ACTIONS(2225), - [anon_sym_select] = ACTIONS(2225), - [anon_sym_lock] = ACTIONS(2225), - [anon_sym_rlock] = ACTIONS(2225), - [anon_sym_unsafe] = ACTIONS(2225), - [anon_sym_sql] = ACTIONS(2225), - [sym_int_literal] = ACTIONS(2225), - [sym_float_literal] = ACTIONS(2223), - [sym_rune_literal] = ACTIONS(2223), - [sym_pseudo_compile_time_identifier] = ACTIONS(2225), - [anon_sym_shared] = ACTIONS(2225), - [anon_sym_map_LBRACK] = ACTIONS(2223), - [anon_sym_chan] = ACTIONS(2225), - [anon_sym_thread] = ACTIONS(2225), - [anon_sym_atomic] = ACTIONS(2225), - [sym___double_quote] = ACTIONS(2223), - [sym___single_quote] = ACTIONS(2223), - [sym___c_double_quote] = ACTIONS(2223), - [sym___c_single_quote] = ACTIONS(2223), - [sym___r_double_quote] = ACTIONS(2223), - [sym___r_single_quote] = ACTIONS(2223), + [anon_sym_DOT] = ACTIONS(2532), + [anon_sym_as] = ACTIONS(2532), + [anon_sym_LBRACE] = ACTIONS(2530), + [anon_sym_COMMA] = ACTIONS(2530), + [anon_sym_RBRACE] = ACTIONS(2530), + [anon_sym_LPAREN] = ACTIONS(2530), + [anon_sym_PIPE] = ACTIONS(2532), + [anon_sym_fn] = ACTIONS(2532), + [anon_sym_PLUS] = ACTIONS(2532), + [anon_sym_DASH] = ACTIONS(2532), + [anon_sym_STAR] = ACTIONS(2530), + [anon_sym_SLASH] = ACTIONS(2532), + [anon_sym_PERCENT] = ACTIONS(2530), + [anon_sym_LT] = ACTIONS(2532), + [anon_sym_GT] = ACTIONS(2532), + [anon_sym_EQ_EQ] = ACTIONS(2530), + [anon_sym_BANG_EQ] = ACTIONS(2530), + [anon_sym_LT_EQ] = ACTIONS(2530), + [anon_sym_GT_EQ] = ACTIONS(2530), + [anon_sym_LBRACK] = ACTIONS(2530), + [anon_sym_RBRACK] = ACTIONS(2530), + [anon_sym_struct] = ACTIONS(2532), + [anon_sym_mut] = ACTIONS(2532), + [anon_sym_COLON] = ACTIONS(2530), + [anon_sym_PLUS_PLUS] = ACTIONS(2530), + [anon_sym_DASH_DASH] = ACTIONS(2530), + [anon_sym_QMARK] = ACTIONS(2532), + [anon_sym_BANG] = ACTIONS(2532), + [anon_sym_go] = ACTIONS(2532), + [anon_sym_spawn] = ACTIONS(2532), + [anon_sym_json_DOTdecode] = ACTIONS(2530), + [anon_sym_LBRACK2] = ACTIONS(2532), + [anon_sym_TILDE] = ACTIONS(2530), + [anon_sym_CARET] = ACTIONS(2530), + [anon_sym_AMP] = ACTIONS(2532), + [anon_sym_LT_DASH] = ACTIONS(2530), + [anon_sym_LT_LT] = ACTIONS(2530), + [anon_sym_GT_GT] = ACTIONS(2532), + [anon_sym_GT_GT_GT] = ACTIONS(2530), + [anon_sym_AMP_CARET] = ACTIONS(2530), + [anon_sym_AMP_AMP] = ACTIONS(2530), + [anon_sym_PIPE_PIPE] = ACTIONS(2530), + [anon_sym_or] = ACTIONS(2532), + [sym_none] = ACTIONS(2532), + [sym_true] = ACTIONS(2532), + [sym_false] = ACTIONS(2532), + [sym_nil] = ACTIONS(2532), + [anon_sym_QMARK_DOT] = ACTIONS(2530), + [anon_sym_POUND_LBRACK] = ACTIONS(2530), + [anon_sym_if] = ACTIONS(2532), + [anon_sym_DOLLARif] = ACTIONS(2532), + [anon_sym_is] = ACTIONS(2532), + [anon_sym_BANGis] = ACTIONS(2530), + [anon_sym_in] = ACTIONS(2532), + [anon_sym_BANGin] = ACTIONS(2530), + [anon_sym_match] = ACTIONS(2532), + [anon_sym_select] = ACTIONS(2532), + [anon_sym_lock] = ACTIONS(2532), + [anon_sym_rlock] = ACTIONS(2532), + [anon_sym_unsafe] = ACTIONS(2532), + [anon_sym_sql] = ACTIONS(2532), + [sym_int_literal] = ACTIONS(2532), + [sym_float_literal] = ACTIONS(2530), + [sym_rune_literal] = ACTIONS(2530), + [sym_pseudo_compile_time_identifier] = ACTIONS(2532), + [anon_sym_shared] = ACTIONS(2532), + [anon_sym_map_LBRACK] = ACTIONS(2530), + [anon_sym_chan] = ACTIONS(2532), + [anon_sym_thread] = ACTIONS(2532), + [anon_sym_atomic] = ACTIONS(2532), + [sym___double_quote] = ACTIONS(2530), + [sym___single_quote] = ACTIONS(2530), + [sym___c_double_quote] = ACTIONS(2530), + [sym___c_single_quote] = ACTIONS(2530), + [sym___r_double_quote] = ACTIONS(2530), + [sym___r_single_quote] = ACTIONS(2530), }, [1319] = { [sym_line_comment] = STATE(1319), [sym_block_comment] = STATE(1319), - [sym_identifier] = ACTIONS(2213), + [sym_identifier] = ACTIONS(2513), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(2213), - [anon_sym_as] = ACTIONS(2213), - [anon_sym_LBRACE] = ACTIONS(2211), - [anon_sym_COMMA] = ACTIONS(2211), - [anon_sym_RBRACE] = ACTIONS(2211), - [anon_sym_LPAREN] = ACTIONS(2211), - [anon_sym_PIPE] = ACTIONS(2213), - [anon_sym_fn] = ACTIONS(2213), - [anon_sym_PLUS] = ACTIONS(2213), - [anon_sym_DASH] = ACTIONS(2213), - [anon_sym_STAR] = ACTIONS(2211), - [anon_sym_SLASH] = ACTIONS(2213), - [anon_sym_PERCENT] = ACTIONS(2211), - [anon_sym_LT] = ACTIONS(2213), - [anon_sym_GT] = ACTIONS(2213), - [anon_sym_EQ_EQ] = ACTIONS(2211), - [anon_sym_BANG_EQ] = ACTIONS(2211), - [anon_sym_LT_EQ] = ACTIONS(2211), - [anon_sym_GT_EQ] = ACTIONS(2211), - [anon_sym_LBRACK] = ACTIONS(2211), - [anon_sym_RBRACK] = ACTIONS(2211), - [anon_sym_struct] = ACTIONS(2213), - [anon_sym_mut] = ACTIONS(2213), - [anon_sym_COLON] = ACTIONS(2211), - [anon_sym_PLUS_PLUS] = ACTIONS(2211), - [anon_sym_DASH_DASH] = ACTIONS(2211), - [anon_sym_QMARK] = ACTIONS(2213), - [anon_sym_BANG] = ACTIONS(2213), - [anon_sym_go] = ACTIONS(2213), - [anon_sym_spawn] = ACTIONS(2213), - [anon_sym_json_DOTdecode] = ACTIONS(2211), - [anon_sym_LBRACK2] = ACTIONS(2213), - [anon_sym_TILDE] = ACTIONS(2211), - [anon_sym_CARET] = ACTIONS(2211), - [anon_sym_AMP] = ACTIONS(2213), - [anon_sym_LT_DASH] = ACTIONS(2211), - [anon_sym_LT_LT] = ACTIONS(2211), - [anon_sym_GT_GT] = ACTIONS(2213), - [anon_sym_GT_GT_GT] = ACTIONS(2211), - [anon_sym_AMP_CARET] = ACTIONS(2211), - [anon_sym_AMP_AMP] = ACTIONS(2211), - [anon_sym_PIPE_PIPE] = ACTIONS(2211), - [anon_sym_or] = ACTIONS(2213), - [sym_none] = ACTIONS(2213), - [sym_true] = ACTIONS(2213), - [sym_false] = ACTIONS(2213), - [sym_nil] = ACTIONS(2213), - [anon_sym_QMARK_DOT] = ACTIONS(2211), - [anon_sym_POUND_LBRACK] = ACTIONS(2211), - [anon_sym_if] = ACTIONS(2213), - [anon_sym_DOLLARif] = ACTIONS(2213), - [anon_sym_is] = ACTIONS(2213), - [anon_sym_BANGis] = ACTIONS(2211), - [anon_sym_in] = ACTIONS(2213), - [anon_sym_BANGin] = ACTIONS(2211), - [anon_sym_match] = ACTIONS(2213), - [anon_sym_select] = ACTIONS(2213), - [anon_sym_lock] = ACTIONS(2213), - [anon_sym_rlock] = ACTIONS(2213), - [anon_sym_unsafe] = ACTIONS(2213), - [anon_sym_sql] = ACTIONS(2213), - [sym_int_literal] = ACTIONS(2213), - [sym_float_literal] = ACTIONS(2211), - [sym_rune_literal] = ACTIONS(2211), - [sym_pseudo_compile_time_identifier] = ACTIONS(2213), - [anon_sym_shared] = ACTIONS(2213), - [anon_sym_map_LBRACK] = ACTIONS(2211), - [anon_sym_chan] = ACTIONS(2213), - [anon_sym_thread] = ACTIONS(2213), - [anon_sym_atomic] = ACTIONS(2213), - [sym___double_quote] = ACTIONS(2211), - [sym___single_quote] = ACTIONS(2211), - [sym___c_double_quote] = ACTIONS(2211), - [sym___c_single_quote] = ACTIONS(2211), - [sym___r_double_quote] = ACTIONS(2211), - [sym___r_single_quote] = ACTIONS(2211), + [anon_sym_DOT] = ACTIONS(2513), + [anon_sym_as] = ACTIONS(2513), + [anon_sym_LBRACE] = ACTIONS(2511), + [anon_sym_COMMA] = ACTIONS(2511), + [anon_sym_RBRACE] = ACTIONS(2511), + [anon_sym_LPAREN] = ACTIONS(2511), + [anon_sym_PIPE] = ACTIONS(2513), + [anon_sym_fn] = ACTIONS(2513), + [anon_sym_PLUS] = ACTIONS(2513), + [anon_sym_DASH] = ACTIONS(2513), + [anon_sym_STAR] = ACTIONS(2511), + [anon_sym_SLASH] = ACTIONS(2513), + [anon_sym_PERCENT] = ACTIONS(2511), + [anon_sym_LT] = ACTIONS(2513), + [anon_sym_GT] = ACTIONS(2513), + [anon_sym_EQ_EQ] = ACTIONS(2511), + [anon_sym_BANG_EQ] = ACTIONS(2511), + [anon_sym_LT_EQ] = ACTIONS(2511), + [anon_sym_GT_EQ] = ACTIONS(2511), + [anon_sym_LBRACK] = ACTIONS(2511), + [anon_sym_RBRACK] = ACTIONS(2511), + [anon_sym_struct] = ACTIONS(2513), + [anon_sym_mut] = ACTIONS(2513), + [anon_sym_COLON] = ACTIONS(2511), + [anon_sym_PLUS_PLUS] = ACTIONS(2511), + [anon_sym_DASH_DASH] = ACTIONS(2511), + [anon_sym_QMARK] = ACTIONS(2513), + [anon_sym_BANG] = ACTIONS(2513), + [anon_sym_go] = ACTIONS(2513), + [anon_sym_spawn] = ACTIONS(2513), + [anon_sym_json_DOTdecode] = ACTIONS(2511), + [anon_sym_LBRACK2] = ACTIONS(2513), + [anon_sym_TILDE] = ACTIONS(2511), + [anon_sym_CARET] = ACTIONS(2511), + [anon_sym_AMP] = ACTIONS(2513), + [anon_sym_LT_DASH] = ACTIONS(2511), + [anon_sym_LT_LT] = ACTIONS(2511), + [anon_sym_GT_GT] = ACTIONS(2513), + [anon_sym_GT_GT_GT] = ACTIONS(2511), + [anon_sym_AMP_CARET] = ACTIONS(2511), + [anon_sym_AMP_AMP] = ACTIONS(2511), + [anon_sym_PIPE_PIPE] = ACTIONS(2511), + [anon_sym_or] = ACTIONS(2513), + [sym_none] = ACTIONS(2513), + [sym_true] = ACTIONS(2513), + [sym_false] = ACTIONS(2513), + [sym_nil] = ACTIONS(2513), + [anon_sym_QMARK_DOT] = ACTIONS(2511), + [anon_sym_POUND_LBRACK] = ACTIONS(2511), + [anon_sym_if] = ACTIONS(2513), + [anon_sym_DOLLARif] = ACTIONS(2513), + [anon_sym_is] = ACTIONS(2513), + [anon_sym_BANGis] = ACTIONS(2511), + [anon_sym_in] = ACTIONS(2513), + [anon_sym_BANGin] = ACTIONS(2511), + [anon_sym_match] = ACTIONS(2513), + [anon_sym_select] = ACTIONS(2513), + [anon_sym_lock] = ACTIONS(2513), + [anon_sym_rlock] = ACTIONS(2513), + [anon_sym_unsafe] = ACTIONS(2513), + [anon_sym_sql] = ACTIONS(2513), + [sym_int_literal] = ACTIONS(2513), + [sym_float_literal] = ACTIONS(2511), + [sym_rune_literal] = ACTIONS(2511), + [sym_pseudo_compile_time_identifier] = ACTIONS(2513), + [anon_sym_shared] = ACTIONS(2513), + [anon_sym_map_LBRACK] = ACTIONS(2511), + [anon_sym_chan] = ACTIONS(2513), + [anon_sym_thread] = ACTIONS(2513), + [anon_sym_atomic] = ACTIONS(2513), + [sym___double_quote] = ACTIONS(2511), + [sym___single_quote] = ACTIONS(2511), + [sym___c_double_quote] = ACTIONS(2511), + [sym___c_single_quote] = ACTIONS(2511), + [sym___r_double_quote] = ACTIONS(2511), + [sym___r_single_quote] = ACTIONS(2511), }, [1320] = { [sym_line_comment] = STATE(1320), [sym_block_comment] = STATE(1320), - [sym_identifier] = ACTIONS(2691), + [sym_identifier] = ACTIONS(2522), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(2691), - [anon_sym_as] = ACTIONS(2691), - [anon_sym_LBRACE] = ACTIONS(2689), - [anon_sym_COMMA] = ACTIONS(2689), - [anon_sym_RBRACE] = ACTIONS(2689), - [anon_sym_LPAREN] = ACTIONS(2689), - [anon_sym_PIPE] = ACTIONS(2691), - [anon_sym_fn] = ACTIONS(2691), - [anon_sym_PLUS] = ACTIONS(2691), - [anon_sym_DASH] = ACTIONS(2691), - [anon_sym_STAR] = ACTIONS(2689), - [anon_sym_SLASH] = ACTIONS(2691), - [anon_sym_PERCENT] = ACTIONS(2689), - [anon_sym_LT] = ACTIONS(2691), - [anon_sym_GT] = ACTIONS(2691), - [anon_sym_EQ_EQ] = ACTIONS(2689), - [anon_sym_BANG_EQ] = ACTIONS(2689), - [anon_sym_LT_EQ] = ACTIONS(2689), - [anon_sym_GT_EQ] = ACTIONS(2689), - [anon_sym_LBRACK] = ACTIONS(2689), - [anon_sym_RBRACK] = ACTIONS(2689), - [anon_sym_struct] = ACTIONS(2691), - [anon_sym_mut] = ACTIONS(2691), - [anon_sym_COLON] = ACTIONS(2689), - [anon_sym_PLUS_PLUS] = ACTIONS(2689), - [anon_sym_DASH_DASH] = ACTIONS(2689), - [anon_sym_QMARK] = ACTIONS(2691), - [anon_sym_BANG] = ACTIONS(2691), - [anon_sym_go] = ACTIONS(2691), - [anon_sym_spawn] = ACTIONS(2691), - [anon_sym_json_DOTdecode] = ACTIONS(2689), - [anon_sym_LBRACK2] = ACTIONS(2691), - [anon_sym_TILDE] = ACTIONS(2689), - [anon_sym_CARET] = ACTIONS(2689), - [anon_sym_AMP] = ACTIONS(2691), - [anon_sym_LT_DASH] = ACTIONS(2689), - [anon_sym_LT_LT] = ACTIONS(2689), - [anon_sym_GT_GT] = ACTIONS(2691), - [anon_sym_GT_GT_GT] = ACTIONS(2689), - [anon_sym_AMP_CARET] = ACTIONS(2689), - [anon_sym_AMP_AMP] = ACTIONS(2689), - [anon_sym_PIPE_PIPE] = ACTIONS(2689), - [anon_sym_or] = ACTIONS(2691), - [sym_none] = ACTIONS(2691), - [sym_true] = ACTIONS(2691), - [sym_false] = ACTIONS(2691), - [sym_nil] = ACTIONS(2691), - [anon_sym_QMARK_DOT] = ACTIONS(2689), - [anon_sym_POUND_LBRACK] = ACTIONS(2689), - [anon_sym_if] = ACTIONS(2691), - [anon_sym_DOLLARif] = ACTIONS(2691), - [anon_sym_is] = ACTIONS(2691), - [anon_sym_BANGis] = ACTIONS(2689), - [anon_sym_in] = ACTIONS(2691), - [anon_sym_BANGin] = ACTIONS(2689), - [anon_sym_match] = ACTIONS(2691), - [anon_sym_select] = ACTIONS(2691), - [anon_sym_lock] = ACTIONS(2691), - [anon_sym_rlock] = ACTIONS(2691), - [anon_sym_unsafe] = ACTIONS(2691), - [anon_sym_sql] = ACTIONS(2691), - [sym_int_literal] = ACTIONS(2691), - [sym_float_literal] = ACTIONS(2689), - [sym_rune_literal] = ACTIONS(2689), - [sym_pseudo_compile_time_identifier] = ACTIONS(2691), - [anon_sym_shared] = ACTIONS(2691), - [anon_sym_map_LBRACK] = ACTIONS(2689), - [anon_sym_chan] = ACTIONS(2691), - [anon_sym_thread] = ACTIONS(2691), - [anon_sym_atomic] = ACTIONS(2691), - [sym___double_quote] = ACTIONS(2689), - [sym___single_quote] = ACTIONS(2689), - [sym___c_double_quote] = ACTIONS(2689), - [sym___c_single_quote] = ACTIONS(2689), - [sym___r_double_quote] = ACTIONS(2689), - [sym___r_single_quote] = ACTIONS(2689), + [anon_sym_DOT] = ACTIONS(2522), + [anon_sym_as] = ACTIONS(2522), + [anon_sym_LBRACE] = ACTIONS(2520), + [anon_sym_COMMA] = ACTIONS(2520), + [anon_sym_RBRACE] = ACTIONS(2520), + [anon_sym_LPAREN] = ACTIONS(2520), + [anon_sym_PIPE] = ACTIONS(2522), + [anon_sym_fn] = ACTIONS(2522), + [anon_sym_PLUS] = ACTIONS(2522), + [anon_sym_DASH] = ACTIONS(2522), + [anon_sym_STAR] = ACTIONS(2520), + [anon_sym_SLASH] = ACTIONS(2522), + [anon_sym_PERCENT] = ACTIONS(2520), + [anon_sym_LT] = ACTIONS(2522), + [anon_sym_GT] = ACTIONS(2522), + [anon_sym_EQ_EQ] = ACTIONS(2520), + [anon_sym_BANG_EQ] = ACTIONS(2520), + [anon_sym_LT_EQ] = ACTIONS(2520), + [anon_sym_GT_EQ] = ACTIONS(2520), + [anon_sym_LBRACK] = ACTIONS(2520), + [anon_sym_RBRACK] = ACTIONS(2520), + [anon_sym_struct] = ACTIONS(2522), + [anon_sym_mut] = ACTIONS(2522), + [anon_sym_COLON] = ACTIONS(2520), + [anon_sym_PLUS_PLUS] = ACTIONS(2520), + [anon_sym_DASH_DASH] = ACTIONS(2520), + [anon_sym_QMARK] = ACTIONS(2522), + [anon_sym_BANG] = ACTIONS(2522), + [anon_sym_go] = ACTIONS(2522), + [anon_sym_spawn] = ACTIONS(2522), + [anon_sym_json_DOTdecode] = ACTIONS(2520), + [anon_sym_LBRACK2] = ACTIONS(2522), + [anon_sym_TILDE] = ACTIONS(2520), + [anon_sym_CARET] = ACTIONS(2520), + [anon_sym_AMP] = ACTIONS(2522), + [anon_sym_LT_DASH] = ACTIONS(2520), + [anon_sym_LT_LT] = ACTIONS(2520), + [anon_sym_GT_GT] = ACTIONS(2522), + [anon_sym_GT_GT_GT] = ACTIONS(2520), + [anon_sym_AMP_CARET] = ACTIONS(2520), + [anon_sym_AMP_AMP] = ACTIONS(2520), + [anon_sym_PIPE_PIPE] = ACTIONS(2520), + [anon_sym_or] = ACTIONS(2522), + [sym_none] = ACTIONS(2522), + [sym_true] = ACTIONS(2522), + [sym_false] = ACTIONS(2522), + [sym_nil] = ACTIONS(2522), + [anon_sym_QMARK_DOT] = ACTIONS(2520), + [anon_sym_POUND_LBRACK] = ACTIONS(2520), + [anon_sym_if] = ACTIONS(2522), + [anon_sym_DOLLARif] = ACTIONS(2522), + [anon_sym_is] = ACTIONS(2522), + [anon_sym_BANGis] = ACTIONS(2520), + [anon_sym_in] = ACTIONS(2522), + [anon_sym_BANGin] = ACTIONS(2520), + [anon_sym_match] = ACTIONS(2522), + [anon_sym_select] = ACTIONS(2522), + [anon_sym_lock] = ACTIONS(2522), + [anon_sym_rlock] = ACTIONS(2522), + [anon_sym_unsafe] = ACTIONS(2522), + [anon_sym_sql] = ACTIONS(2522), + [sym_int_literal] = ACTIONS(2522), + [sym_float_literal] = ACTIONS(2520), + [sym_rune_literal] = ACTIONS(2520), + [sym_pseudo_compile_time_identifier] = ACTIONS(2522), + [anon_sym_shared] = ACTIONS(2522), + [anon_sym_map_LBRACK] = ACTIONS(2520), + [anon_sym_chan] = ACTIONS(2522), + [anon_sym_thread] = ACTIONS(2522), + [anon_sym_atomic] = ACTIONS(2522), + [sym___double_quote] = ACTIONS(2520), + [sym___single_quote] = ACTIONS(2520), + [sym___c_double_quote] = ACTIONS(2520), + [sym___c_single_quote] = ACTIONS(2520), + [sym___r_double_quote] = ACTIONS(2520), + [sym___r_single_quote] = ACTIONS(2520), }, [1321] = { [sym_line_comment] = STATE(1321), [sym_block_comment] = STATE(1321), - [sym_identifier] = ACTIONS(2868), + [sym_identifier] = ACTIONS(2898), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(2868), - [anon_sym_as] = ACTIONS(2868), - [anon_sym_LBRACE] = ACTIONS(2866), - [anon_sym_COMMA] = ACTIONS(2866), - [anon_sym_RBRACE] = ACTIONS(2866), - [anon_sym_LPAREN] = ACTIONS(2866), - [anon_sym_PIPE] = ACTIONS(2868), - [anon_sym_fn] = ACTIONS(2868), - [anon_sym_PLUS] = ACTIONS(2868), - [anon_sym_DASH] = ACTIONS(2868), - [anon_sym_STAR] = ACTIONS(2866), - [anon_sym_SLASH] = ACTIONS(2868), - [anon_sym_PERCENT] = ACTIONS(2866), - [anon_sym_LT] = ACTIONS(2868), - [anon_sym_GT] = ACTIONS(2868), - [anon_sym_EQ_EQ] = ACTIONS(2866), - [anon_sym_BANG_EQ] = ACTIONS(2866), - [anon_sym_LT_EQ] = ACTIONS(2866), - [anon_sym_GT_EQ] = ACTIONS(2866), - [anon_sym_LBRACK] = ACTIONS(2866), - [anon_sym_RBRACK] = ACTIONS(2866), - [anon_sym_struct] = ACTIONS(2868), - [anon_sym_mut] = ACTIONS(2868), - [anon_sym_COLON] = ACTIONS(2866), - [anon_sym_PLUS_PLUS] = ACTIONS(2866), - [anon_sym_DASH_DASH] = ACTIONS(2866), - [anon_sym_QMARK] = ACTIONS(2868), - [anon_sym_BANG] = ACTIONS(2868), - [anon_sym_go] = ACTIONS(2868), - [anon_sym_spawn] = ACTIONS(2868), - [anon_sym_json_DOTdecode] = ACTIONS(2866), - [anon_sym_LBRACK2] = ACTIONS(2868), - [anon_sym_TILDE] = ACTIONS(2866), - [anon_sym_CARET] = ACTIONS(2866), - [anon_sym_AMP] = ACTIONS(2868), - [anon_sym_LT_DASH] = ACTIONS(2866), - [anon_sym_LT_LT] = ACTIONS(2866), - [anon_sym_GT_GT] = ACTIONS(2868), - [anon_sym_GT_GT_GT] = ACTIONS(2866), - [anon_sym_AMP_CARET] = ACTIONS(2866), - [anon_sym_AMP_AMP] = ACTIONS(2866), - [anon_sym_PIPE_PIPE] = ACTIONS(2866), - [anon_sym_or] = ACTIONS(2868), - [sym_none] = ACTIONS(2868), - [sym_true] = ACTIONS(2868), - [sym_false] = ACTIONS(2868), - [sym_nil] = ACTIONS(2868), - [anon_sym_QMARK_DOT] = ACTIONS(2866), - [anon_sym_POUND_LBRACK] = ACTIONS(2866), - [anon_sym_if] = ACTIONS(2868), - [anon_sym_DOLLARif] = ACTIONS(2868), - [anon_sym_is] = ACTIONS(2868), - [anon_sym_BANGis] = ACTIONS(2866), - [anon_sym_in] = ACTIONS(2868), - [anon_sym_BANGin] = ACTIONS(2866), - [anon_sym_match] = ACTIONS(2868), - [anon_sym_select] = ACTIONS(2868), - [anon_sym_lock] = ACTIONS(2868), - [anon_sym_rlock] = ACTIONS(2868), - [anon_sym_unsafe] = ACTIONS(2868), - [anon_sym_sql] = ACTIONS(2868), - [sym_int_literal] = ACTIONS(2868), - [sym_float_literal] = ACTIONS(2866), - [sym_rune_literal] = ACTIONS(2866), - [sym_pseudo_compile_time_identifier] = ACTIONS(2868), - [anon_sym_shared] = ACTIONS(2868), - [anon_sym_map_LBRACK] = ACTIONS(2866), - [anon_sym_chan] = ACTIONS(2868), - [anon_sym_thread] = ACTIONS(2868), - [anon_sym_atomic] = ACTIONS(2868), - [sym___double_quote] = ACTIONS(2866), - [sym___single_quote] = ACTIONS(2866), - [sym___c_double_quote] = ACTIONS(2866), - [sym___c_single_quote] = ACTIONS(2866), - [sym___r_double_quote] = ACTIONS(2866), - [sym___r_single_quote] = ACTIONS(2866), + [anon_sym_DOT] = ACTIONS(2898), + [anon_sym_as] = ACTIONS(2898), + [anon_sym_LBRACE] = ACTIONS(2896), + [anon_sym_COMMA] = ACTIONS(2896), + [anon_sym_RBRACE] = ACTIONS(2896), + [anon_sym_LPAREN] = ACTIONS(2896), + [anon_sym_PIPE] = ACTIONS(2898), + [anon_sym_fn] = ACTIONS(2898), + [anon_sym_PLUS] = ACTIONS(2898), + [anon_sym_DASH] = ACTIONS(2898), + [anon_sym_STAR] = ACTIONS(2896), + [anon_sym_SLASH] = ACTIONS(2898), + [anon_sym_PERCENT] = ACTIONS(2896), + [anon_sym_LT] = ACTIONS(2898), + [anon_sym_GT] = ACTIONS(2898), + [anon_sym_EQ_EQ] = ACTIONS(2896), + [anon_sym_BANG_EQ] = ACTIONS(2896), + [anon_sym_LT_EQ] = ACTIONS(2896), + [anon_sym_GT_EQ] = ACTIONS(2896), + [anon_sym_LBRACK] = ACTIONS(2896), + [anon_sym_RBRACK] = ACTIONS(2896), + [anon_sym_struct] = ACTIONS(2898), + [anon_sym_mut] = ACTIONS(2898), + [anon_sym_COLON] = ACTIONS(2896), + [anon_sym_PLUS_PLUS] = ACTIONS(2896), + [anon_sym_DASH_DASH] = ACTIONS(2896), + [anon_sym_QMARK] = ACTIONS(2898), + [anon_sym_BANG] = ACTIONS(2898), + [anon_sym_go] = ACTIONS(2898), + [anon_sym_spawn] = ACTIONS(2898), + [anon_sym_json_DOTdecode] = ACTIONS(2896), + [anon_sym_LBRACK2] = ACTIONS(2898), + [anon_sym_TILDE] = ACTIONS(2896), + [anon_sym_CARET] = ACTIONS(2896), + [anon_sym_AMP] = ACTIONS(2898), + [anon_sym_LT_DASH] = ACTIONS(2896), + [anon_sym_LT_LT] = ACTIONS(2896), + [anon_sym_GT_GT] = ACTIONS(2898), + [anon_sym_GT_GT_GT] = ACTIONS(2896), + [anon_sym_AMP_CARET] = ACTIONS(2896), + [anon_sym_AMP_AMP] = ACTIONS(2896), + [anon_sym_PIPE_PIPE] = ACTIONS(2896), + [anon_sym_or] = ACTIONS(2898), + [sym_none] = ACTIONS(2898), + [sym_true] = ACTIONS(2898), + [sym_false] = ACTIONS(2898), + [sym_nil] = ACTIONS(2898), + [anon_sym_QMARK_DOT] = ACTIONS(2896), + [anon_sym_POUND_LBRACK] = ACTIONS(2896), + [anon_sym_if] = ACTIONS(2898), + [anon_sym_DOLLARif] = ACTIONS(2898), + [anon_sym_is] = ACTIONS(2898), + [anon_sym_BANGis] = ACTIONS(2896), + [anon_sym_in] = ACTIONS(2898), + [anon_sym_BANGin] = ACTIONS(2896), + [anon_sym_match] = ACTIONS(2898), + [anon_sym_select] = ACTIONS(2898), + [anon_sym_lock] = ACTIONS(2898), + [anon_sym_rlock] = ACTIONS(2898), + [anon_sym_unsafe] = ACTIONS(2898), + [anon_sym_sql] = ACTIONS(2898), + [sym_int_literal] = ACTIONS(2898), + [sym_float_literal] = ACTIONS(2896), + [sym_rune_literal] = ACTIONS(2896), + [sym_pseudo_compile_time_identifier] = ACTIONS(2898), + [anon_sym_shared] = ACTIONS(2898), + [anon_sym_map_LBRACK] = ACTIONS(2896), + [anon_sym_chan] = ACTIONS(2898), + [anon_sym_thread] = ACTIONS(2898), + [anon_sym_atomic] = ACTIONS(2898), + [sym___double_quote] = ACTIONS(2896), + [sym___single_quote] = ACTIONS(2896), + [sym___c_double_quote] = ACTIONS(2896), + [sym___c_single_quote] = ACTIONS(2896), + [sym___r_double_quote] = ACTIONS(2896), + [sym___r_single_quote] = ACTIONS(2896), }, [1322] = { [sym_line_comment] = STATE(1322), [sym_block_comment] = STATE(1322), - [sym_identifier] = ACTIONS(2183), - [anon_sym_SLASH_SLASH] = ACTIONS(3), - [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(2183), - [anon_sym_as] = ACTIONS(2183), - [anon_sym_LBRACE] = ACTIONS(2181), - [anon_sym_COMMA] = ACTIONS(2181), - [anon_sym_RBRACE] = ACTIONS(2181), - [anon_sym_LPAREN] = ACTIONS(2181), - [anon_sym_PIPE] = ACTIONS(2183), - [anon_sym_fn] = ACTIONS(2183), - [anon_sym_PLUS] = ACTIONS(2183), - [anon_sym_DASH] = ACTIONS(2183), - [anon_sym_STAR] = ACTIONS(2181), - [anon_sym_SLASH] = ACTIONS(2183), - [anon_sym_PERCENT] = ACTIONS(2181), - [anon_sym_LT] = ACTIONS(2183), - [anon_sym_GT] = ACTIONS(2183), - [anon_sym_EQ_EQ] = ACTIONS(2181), - [anon_sym_BANG_EQ] = ACTIONS(2181), - [anon_sym_LT_EQ] = ACTIONS(2181), - [anon_sym_GT_EQ] = ACTIONS(2181), - [anon_sym_LBRACK] = ACTIONS(2181), - [anon_sym_RBRACK] = ACTIONS(2181), - [anon_sym_struct] = ACTIONS(2183), - [anon_sym_mut] = ACTIONS(2183), - [anon_sym_COLON] = ACTIONS(2181), - [anon_sym_PLUS_PLUS] = ACTIONS(2181), - [anon_sym_DASH_DASH] = ACTIONS(2181), - [anon_sym_QMARK] = ACTIONS(2183), - [anon_sym_BANG] = ACTIONS(2183), - [anon_sym_go] = ACTIONS(2183), - [anon_sym_spawn] = ACTIONS(2183), - [anon_sym_json_DOTdecode] = ACTIONS(2181), - [anon_sym_LBRACK2] = ACTIONS(2183), - [anon_sym_TILDE] = ACTIONS(2181), - [anon_sym_CARET] = ACTIONS(2181), - [anon_sym_AMP] = ACTIONS(2183), - [anon_sym_LT_DASH] = ACTIONS(2181), - [anon_sym_LT_LT] = ACTIONS(2181), - [anon_sym_GT_GT] = ACTIONS(2183), - [anon_sym_GT_GT_GT] = ACTIONS(2181), - [anon_sym_AMP_CARET] = ACTIONS(2181), - [anon_sym_AMP_AMP] = ACTIONS(2181), - [anon_sym_PIPE_PIPE] = ACTIONS(2181), - [anon_sym_or] = ACTIONS(2183), - [sym_none] = ACTIONS(2183), - [sym_true] = ACTIONS(2183), - [sym_false] = ACTIONS(2183), - [sym_nil] = ACTIONS(2183), - [anon_sym_QMARK_DOT] = ACTIONS(2181), - [anon_sym_POUND_LBRACK] = ACTIONS(2181), - [anon_sym_if] = ACTIONS(2183), - [anon_sym_DOLLARif] = ACTIONS(2183), - [anon_sym_is] = ACTIONS(2183), - [anon_sym_BANGis] = ACTIONS(2181), - [anon_sym_in] = ACTIONS(2183), - [anon_sym_BANGin] = ACTIONS(2181), - [anon_sym_match] = ACTIONS(2183), - [anon_sym_select] = ACTIONS(2183), - [anon_sym_lock] = ACTIONS(2183), - [anon_sym_rlock] = ACTIONS(2183), - [anon_sym_unsafe] = ACTIONS(2183), - [anon_sym_sql] = ACTIONS(2183), - [sym_int_literal] = ACTIONS(2183), - [sym_float_literal] = ACTIONS(2181), - [sym_rune_literal] = ACTIONS(2181), - [sym_pseudo_compile_time_identifier] = ACTIONS(2183), - [anon_sym_shared] = ACTIONS(2183), - [anon_sym_map_LBRACK] = ACTIONS(2181), - [anon_sym_chan] = ACTIONS(2183), - [anon_sym_thread] = ACTIONS(2183), - [anon_sym_atomic] = ACTIONS(2183), - [sym___double_quote] = ACTIONS(2181), - [sym___single_quote] = ACTIONS(2181), - [sym___c_double_quote] = ACTIONS(2181), - [sym___c_single_quote] = ACTIONS(2181), - [sym___r_double_quote] = ACTIONS(2181), - [sym___r_single_quote] = ACTIONS(2181), - }, - [1323] = { - [sym_line_comment] = STATE(1323), - [sym_block_comment] = STATE(1323), - [sym_type_parameters] = STATE(4073), - [sym_argument_list] = STATE(1358), - [sym_or_block] = STATE(1359), - [sym_identifier] = ACTIONS(3833), - [anon_sym_SLASH_SLASH] = ACTIONS(3), - [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(3815), - [anon_sym_as] = ACTIONS(3835), - [anon_sym_LBRACE] = ACTIONS(3837), - [anon_sym_RBRACE] = ACTIONS(3837), - [anon_sym_LPAREN] = ACTIONS(3817), - [anon_sym_PIPE] = ACTIONS(3839), - [anon_sym_fn] = ACTIONS(3833), - [anon_sym_PLUS] = ACTIONS(3839), - [anon_sym_DASH] = ACTIONS(3839), - [anon_sym_STAR] = ACTIONS(3841), - [anon_sym_SLASH] = ACTIONS(3843), - [anon_sym_PERCENT] = ACTIONS(3841), - [anon_sym_LT] = ACTIONS(3845), - [anon_sym_GT] = ACTIONS(3845), - [anon_sym_EQ_EQ] = ACTIONS(3847), - [anon_sym_BANG_EQ] = ACTIONS(3847), - [anon_sym_LT_EQ] = ACTIONS(3847), - [anon_sym_GT_EQ] = ACTIONS(3847), - [anon_sym_LBRACK] = ACTIONS(3819), - [anon_sym_struct] = ACTIONS(3833), - [anon_sym_mut] = ACTIONS(3833), - [anon_sym_PLUS_PLUS] = ACTIONS(3851), - [anon_sym_DASH_DASH] = ACTIONS(3853), - [anon_sym_QMARK] = ACTIONS(3821), - [anon_sym_BANG] = ACTIONS(3823), - [anon_sym_go] = ACTIONS(3833), - [anon_sym_spawn] = ACTIONS(3833), - [anon_sym_json_DOTdecode] = ACTIONS(3837), - [anon_sym_LBRACK2] = ACTIONS(3825), - [anon_sym_TILDE] = ACTIONS(3837), - [anon_sym_CARET] = ACTIONS(3855), - [anon_sym_AMP] = ACTIONS(3843), - [anon_sym_LT_DASH] = ACTIONS(3837), - [anon_sym_LT_LT] = ACTIONS(3841), - [anon_sym_GT_GT] = ACTIONS(3843), - [anon_sym_GT_GT_GT] = ACTIONS(3841), - [anon_sym_AMP_CARET] = ACTIONS(3841), - [anon_sym_AMP_AMP] = ACTIONS(3857), - [anon_sym_PIPE_PIPE] = ACTIONS(3859), - [anon_sym_or] = ACTIONS(3861), - [sym_none] = ACTIONS(3833), - [sym_true] = ACTIONS(3833), - [sym_false] = ACTIONS(3833), - [sym_nil] = ACTIONS(3833), - [anon_sym_QMARK_DOT] = ACTIONS(3827), - [anon_sym_POUND_LBRACK] = ACTIONS(3829), - [anon_sym_if] = ACTIONS(3833), - [anon_sym_DOLLARif] = ACTIONS(3833), - [anon_sym_is] = ACTIONS(3863), - [anon_sym_BANGis] = ACTIONS(3865), - [anon_sym_in] = ACTIONS(3867), - [anon_sym_BANGin] = ACTIONS(3869), - [anon_sym_match] = ACTIONS(3833), - [anon_sym_select] = ACTIONS(3833), - [anon_sym_lock] = ACTIONS(3833), - [anon_sym_rlock] = ACTIONS(3833), - [anon_sym_unsafe] = ACTIONS(3833), - [anon_sym_sql] = ACTIONS(3833), - [sym_int_literal] = ACTIONS(3833), - [sym_float_literal] = ACTIONS(3837), - [sym_rune_literal] = ACTIONS(3837), - [sym_pseudo_compile_time_identifier] = ACTIONS(3833), - [anon_sym_shared] = ACTIONS(3833), - [anon_sym_map_LBRACK] = ACTIONS(3837), - [anon_sym_chan] = ACTIONS(3833), - [anon_sym_thread] = ACTIONS(3833), - [anon_sym_atomic] = ACTIONS(3833), - [sym___double_quote] = ACTIONS(3837), - [sym___single_quote] = ACTIONS(3837), - [sym___c_double_quote] = ACTIONS(3837), - [sym___c_single_quote] = ACTIONS(3837), - [sym___r_double_quote] = ACTIONS(3837), - [sym___r_single_quote] = ACTIONS(3837), - }, - [1324] = { - [sym_line_comment] = STATE(1324), - [sym_block_comment] = STATE(1324), - [sym_identifier] = ACTIONS(2169), - [anon_sym_SLASH_SLASH] = ACTIONS(3), - [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(2169), - [anon_sym_as] = ACTIONS(2169), - [anon_sym_LBRACE] = ACTIONS(2167), - [anon_sym_COMMA] = ACTIONS(2167), - [anon_sym_RBRACE] = ACTIONS(2167), - [anon_sym_LPAREN] = ACTIONS(2167), - [anon_sym_PIPE] = ACTIONS(2169), - [anon_sym_fn] = ACTIONS(2169), - [anon_sym_PLUS] = ACTIONS(2169), - [anon_sym_DASH] = ACTIONS(2169), - [anon_sym_STAR] = ACTIONS(2167), - [anon_sym_SLASH] = ACTIONS(2169), - [anon_sym_PERCENT] = ACTIONS(2167), - [anon_sym_LT] = ACTIONS(2169), - [anon_sym_GT] = ACTIONS(2169), - [anon_sym_EQ_EQ] = ACTIONS(2167), - [anon_sym_BANG_EQ] = ACTIONS(2167), - [anon_sym_LT_EQ] = ACTIONS(2167), - [anon_sym_GT_EQ] = ACTIONS(2167), - [anon_sym_LBRACK] = ACTIONS(2167), - [anon_sym_RBRACK] = ACTIONS(2167), - [anon_sym_struct] = ACTIONS(2169), - [anon_sym_mut] = ACTIONS(2169), - [anon_sym_COLON] = ACTIONS(2167), - [anon_sym_PLUS_PLUS] = ACTIONS(2167), - [anon_sym_DASH_DASH] = ACTIONS(2167), - [anon_sym_QMARK] = ACTIONS(2169), - [anon_sym_BANG] = ACTIONS(2169), - [anon_sym_go] = ACTIONS(2169), - [anon_sym_spawn] = ACTIONS(2169), - [anon_sym_json_DOTdecode] = ACTIONS(2167), - [anon_sym_LBRACK2] = ACTIONS(2169), - [anon_sym_TILDE] = ACTIONS(2167), - [anon_sym_CARET] = ACTIONS(2167), - [anon_sym_AMP] = ACTIONS(2169), - [anon_sym_LT_DASH] = ACTIONS(2167), - [anon_sym_LT_LT] = ACTIONS(2167), - [anon_sym_GT_GT] = ACTIONS(2169), - [anon_sym_GT_GT_GT] = ACTIONS(2167), - [anon_sym_AMP_CARET] = ACTIONS(2167), - [anon_sym_AMP_AMP] = ACTIONS(2167), - [anon_sym_PIPE_PIPE] = ACTIONS(2167), - [anon_sym_or] = ACTIONS(2169), - [sym_none] = ACTIONS(2169), - [sym_true] = ACTIONS(2169), - [sym_false] = ACTIONS(2169), - [sym_nil] = ACTIONS(2169), - [anon_sym_QMARK_DOT] = ACTIONS(2167), - [anon_sym_POUND_LBRACK] = ACTIONS(2167), - [anon_sym_if] = ACTIONS(2169), - [anon_sym_DOLLARif] = ACTIONS(2169), - [anon_sym_is] = ACTIONS(2169), - [anon_sym_BANGis] = ACTIONS(2167), - [anon_sym_in] = ACTIONS(2169), - [anon_sym_BANGin] = ACTIONS(2167), - [anon_sym_match] = ACTIONS(2169), - [anon_sym_select] = ACTIONS(2169), - [anon_sym_lock] = ACTIONS(2169), - [anon_sym_rlock] = ACTIONS(2169), - [anon_sym_unsafe] = ACTIONS(2169), - [anon_sym_sql] = ACTIONS(2169), - [sym_int_literal] = ACTIONS(2169), - [sym_float_literal] = ACTIONS(2167), - [sym_rune_literal] = ACTIONS(2167), - [sym_pseudo_compile_time_identifier] = ACTIONS(2169), - [anon_sym_shared] = ACTIONS(2169), - [anon_sym_map_LBRACK] = ACTIONS(2167), - [anon_sym_chan] = ACTIONS(2169), - [anon_sym_thread] = ACTIONS(2169), - [anon_sym_atomic] = ACTIONS(2169), - [sym___double_quote] = ACTIONS(2167), - [sym___single_quote] = ACTIONS(2167), - [sym___c_double_quote] = ACTIONS(2167), - [sym___c_single_quote] = ACTIONS(2167), - [sym___r_double_quote] = ACTIONS(2167), - [sym___r_single_quote] = ACTIONS(2167), - }, - [1325] = { - [sym_line_comment] = STATE(1325), - [sym_block_comment] = STATE(1325), - [sym_identifier] = ACTIONS(2850), - [anon_sym_SLASH_SLASH] = ACTIONS(3), - [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(2850), - [anon_sym_as] = ACTIONS(2850), - [anon_sym_LBRACE] = ACTIONS(2848), - [anon_sym_COMMA] = ACTIONS(2848), - [anon_sym_RBRACE] = ACTIONS(2848), - [anon_sym_LPAREN] = ACTIONS(2848), - [anon_sym_PIPE] = ACTIONS(2850), - [anon_sym_fn] = ACTIONS(2850), - [anon_sym_PLUS] = ACTIONS(2850), - [anon_sym_DASH] = ACTIONS(2850), - [anon_sym_STAR] = ACTIONS(2848), - [anon_sym_SLASH] = ACTIONS(2850), - [anon_sym_PERCENT] = ACTIONS(2848), - [anon_sym_LT] = ACTIONS(2850), - [anon_sym_GT] = ACTIONS(2850), - [anon_sym_EQ_EQ] = ACTIONS(2848), - [anon_sym_BANG_EQ] = ACTIONS(2848), - [anon_sym_LT_EQ] = ACTIONS(2848), - [anon_sym_GT_EQ] = ACTIONS(2848), - [anon_sym_LBRACK] = ACTIONS(2848), - [anon_sym_RBRACK] = ACTIONS(2848), - [anon_sym_struct] = ACTIONS(2850), - [anon_sym_mut] = ACTIONS(2850), - [anon_sym_COLON] = ACTIONS(2848), - [anon_sym_PLUS_PLUS] = ACTIONS(2848), - [anon_sym_DASH_DASH] = ACTIONS(2848), - [anon_sym_QMARK] = ACTIONS(2850), - [anon_sym_BANG] = ACTIONS(2850), - [anon_sym_go] = ACTIONS(2850), - [anon_sym_spawn] = ACTIONS(2850), - [anon_sym_json_DOTdecode] = ACTIONS(2848), - [anon_sym_LBRACK2] = ACTIONS(2850), - [anon_sym_TILDE] = ACTIONS(2848), - [anon_sym_CARET] = ACTIONS(2848), - [anon_sym_AMP] = ACTIONS(2850), - [anon_sym_LT_DASH] = ACTIONS(2848), - [anon_sym_LT_LT] = ACTIONS(2848), - [anon_sym_GT_GT] = ACTIONS(2850), - [anon_sym_GT_GT_GT] = ACTIONS(2848), - [anon_sym_AMP_CARET] = ACTIONS(2848), - [anon_sym_AMP_AMP] = ACTIONS(2848), - [anon_sym_PIPE_PIPE] = ACTIONS(2848), - [anon_sym_or] = ACTIONS(2850), - [sym_none] = ACTIONS(2850), - [sym_true] = ACTIONS(2850), - [sym_false] = ACTIONS(2850), - [sym_nil] = ACTIONS(2850), - [anon_sym_QMARK_DOT] = ACTIONS(2848), - [anon_sym_POUND_LBRACK] = ACTIONS(2848), - [anon_sym_if] = ACTIONS(2850), - [anon_sym_DOLLARif] = ACTIONS(2850), - [anon_sym_is] = ACTIONS(2850), - [anon_sym_BANGis] = ACTIONS(2848), - [anon_sym_in] = ACTIONS(2850), - [anon_sym_BANGin] = ACTIONS(2848), - [anon_sym_match] = ACTIONS(2850), - [anon_sym_select] = ACTIONS(2850), - [anon_sym_lock] = ACTIONS(2850), - [anon_sym_rlock] = ACTIONS(2850), - [anon_sym_unsafe] = ACTIONS(2850), - [anon_sym_sql] = ACTIONS(2850), - [sym_int_literal] = ACTIONS(2850), - [sym_float_literal] = ACTIONS(2848), - [sym_rune_literal] = ACTIONS(2848), - [sym_pseudo_compile_time_identifier] = ACTIONS(2850), - [anon_sym_shared] = ACTIONS(2850), - [anon_sym_map_LBRACK] = ACTIONS(2848), - [anon_sym_chan] = ACTIONS(2850), - [anon_sym_thread] = ACTIONS(2850), - [anon_sym_atomic] = ACTIONS(2850), - [sym___double_quote] = ACTIONS(2848), - [sym___single_quote] = ACTIONS(2848), - [sym___c_double_quote] = ACTIONS(2848), - [sym___c_single_quote] = ACTIONS(2848), - [sym___r_double_quote] = ACTIONS(2848), - [sym___r_single_quote] = ACTIONS(2848), - }, - [1326] = { - [sym_line_comment] = STATE(1326), - [sym_block_comment] = STATE(1326), - [sym_identifier] = ACTIONS(2828), - [anon_sym_SLASH_SLASH] = ACTIONS(3), - [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(2828), - [anon_sym_as] = ACTIONS(2828), - [anon_sym_LBRACE] = ACTIONS(2826), - [anon_sym_COMMA] = ACTIONS(2826), - [anon_sym_RBRACE] = ACTIONS(2826), - [anon_sym_LPAREN] = ACTIONS(2826), - [anon_sym_PIPE] = ACTIONS(2828), - [anon_sym_fn] = ACTIONS(2828), - [anon_sym_PLUS] = ACTIONS(2828), - [anon_sym_DASH] = ACTIONS(2828), - [anon_sym_STAR] = ACTIONS(2826), - [anon_sym_SLASH] = ACTIONS(2828), - [anon_sym_PERCENT] = ACTIONS(2826), - [anon_sym_LT] = ACTIONS(2828), - [anon_sym_GT] = ACTIONS(2828), - [anon_sym_EQ_EQ] = ACTIONS(2826), - [anon_sym_BANG_EQ] = ACTIONS(2826), - [anon_sym_LT_EQ] = ACTIONS(2826), - [anon_sym_GT_EQ] = ACTIONS(2826), - [anon_sym_LBRACK] = ACTIONS(2826), - [anon_sym_RBRACK] = ACTIONS(2826), - [anon_sym_struct] = ACTIONS(2828), - [anon_sym_mut] = ACTIONS(2828), - [anon_sym_COLON] = ACTIONS(2826), - [anon_sym_PLUS_PLUS] = ACTIONS(2826), - [anon_sym_DASH_DASH] = ACTIONS(2826), - [anon_sym_QMARK] = ACTIONS(2828), - [anon_sym_BANG] = ACTIONS(2828), - [anon_sym_go] = ACTIONS(2828), - [anon_sym_spawn] = ACTIONS(2828), - [anon_sym_json_DOTdecode] = ACTIONS(2826), - [anon_sym_LBRACK2] = ACTIONS(2828), - [anon_sym_TILDE] = ACTIONS(2826), - [anon_sym_CARET] = ACTIONS(2826), - [anon_sym_AMP] = ACTIONS(2828), - [anon_sym_LT_DASH] = ACTIONS(2826), - [anon_sym_LT_LT] = ACTIONS(2826), - [anon_sym_GT_GT] = ACTIONS(2828), - [anon_sym_GT_GT_GT] = ACTIONS(2826), - [anon_sym_AMP_CARET] = ACTIONS(2826), - [anon_sym_AMP_AMP] = ACTIONS(2826), - [anon_sym_PIPE_PIPE] = ACTIONS(2826), - [anon_sym_or] = ACTIONS(2828), - [sym_none] = ACTIONS(2828), - [sym_true] = ACTIONS(2828), - [sym_false] = ACTIONS(2828), - [sym_nil] = ACTIONS(2828), - [anon_sym_QMARK_DOT] = ACTIONS(2826), - [anon_sym_POUND_LBRACK] = ACTIONS(2826), - [anon_sym_if] = ACTIONS(2828), - [anon_sym_DOLLARif] = ACTIONS(2828), - [anon_sym_is] = ACTIONS(2828), - [anon_sym_BANGis] = ACTIONS(2826), - [anon_sym_in] = ACTIONS(2828), - [anon_sym_BANGin] = ACTIONS(2826), - [anon_sym_match] = ACTIONS(2828), - [anon_sym_select] = ACTIONS(2828), - [anon_sym_lock] = ACTIONS(2828), - [anon_sym_rlock] = ACTIONS(2828), - [anon_sym_unsafe] = ACTIONS(2828), - [anon_sym_sql] = ACTIONS(2828), - [sym_int_literal] = ACTIONS(2828), - [sym_float_literal] = ACTIONS(2826), - [sym_rune_literal] = ACTIONS(2826), - [sym_pseudo_compile_time_identifier] = ACTIONS(2828), - [anon_sym_shared] = ACTIONS(2828), - [anon_sym_map_LBRACK] = ACTIONS(2826), - [anon_sym_chan] = ACTIONS(2828), - [anon_sym_thread] = ACTIONS(2828), - [anon_sym_atomic] = ACTIONS(2828), - [sym___double_quote] = ACTIONS(2826), - [sym___single_quote] = ACTIONS(2826), - [sym___c_double_quote] = ACTIONS(2826), - [sym___c_single_quote] = ACTIONS(2826), - [sym___r_double_quote] = ACTIONS(2826), - [sym___r_single_quote] = ACTIONS(2826), - }, - [1327] = { - [sym_line_comment] = STATE(1327), - [sym_block_comment] = STATE(1327), - [sym_identifier] = ACTIONS(2687), - [anon_sym_SLASH_SLASH] = ACTIONS(3), - [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(2687), - [anon_sym_as] = ACTIONS(2687), - [anon_sym_LBRACE] = ACTIONS(2685), - [anon_sym_COMMA] = ACTIONS(2685), - [anon_sym_RBRACE] = ACTIONS(2685), - [anon_sym_LPAREN] = ACTIONS(2685), - [anon_sym_PIPE] = ACTIONS(2687), - [anon_sym_fn] = ACTIONS(2687), - [anon_sym_PLUS] = ACTIONS(2687), - [anon_sym_DASH] = ACTIONS(2687), - [anon_sym_STAR] = ACTIONS(2685), - [anon_sym_SLASH] = ACTIONS(2687), - [anon_sym_PERCENT] = ACTIONS(2685), - [anon_sym_LT] = ACTIONS(2687), - [anon_sym_GT] = ACTIONS(2687), - [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(2685), - [anon_sym_RBRACK] = ACTIONS(2685), - [anon_sym_struct] = ACTIONS(2687), - [anon_sym_mut] = ACTIONS(2687), - [anon_sym_COLON] = ACTIONS(2685), - [anon_sym_PLUS_PLUS] = ACTIONS(2685), - [anon_sym_DASH_DASH] = ACTIONS(2685), - [anon_sym_QMARK] = ACTIONS(2687), - [anon_sym_BANG] = ACTIONS(2687), - [anon_sym_go] = ACTIONS(2687), - [anon_sym_spawn] = ACTIONS(2687), - [anon_sym_json_DOTdecode] = ACTIONS(2685), - [anon_sym_LBRACK2] = ACTIONS(2687), - [anon_sym_TILDE] = ACTIONS(2685), - [anon_sym_CARET] = ACTIONS(2685), - [anon_sym_AMP] = ACTIONS(2687), - [anon_sym_LT_DASH] = ACTIONS(2685), - [anon_sym_LT_LT] = ACTIONS(2685), - [anon_sym_GT_GT] = ACTIONS(2687), - [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(2687), - [sym_none] = ACTIONS(2687), - [sym_true] = ACTIONS(2687), - [sym_false] = ACTIONS(2687), - [sym_nil] = ACTIONS(2687), - [anon_sym_QMARK_DOT] = ACTIONS(2685), - [anon_sym_POUND_LBRACK] = ACTIONS(2685), - [anon_sym_if] = ACTIONS(2687), - [anon_sym_DOLLARif] = ACTIONS(2687), - [anon_sym_is] = ACTIONS(2687), - [anon_sym_BANGis] = ACTIONS(2685), - [anon_sym_in] = ACTIONS(2687), - [anon_sym_BANGin] = ACTIONS(2685), - [anon_sym_match] = ACTIONS(2687), - [anon_sym_select] = ACTIONS(2687), - [anon_sym_lock] = ACTIONS(2687), - [anon_sym_rlock] = ACTIONS(2687), - [anon_sym_unsafe] = ACTIONS(2687), - [anon_sym_sql] = ACTIONS(2687), - [sym_int_literal] = ACTIONS(2687), - [sym_float_literal] = ACTIONS(2685), - [sym_rune_literal] = ACTIONS(2685), - [sym_pseudo_compile_time_identifier] = ACTIONS(2687), - [anon_sym_shared] = ACTIONS(2687), - [anon_sym_map_LBRACK] = ACTIONS(2685), - [anon_sym_chan] = ACTIONS(2687), - [anon_sym_thread] = ACTIONS(2687), - [anon_sym_atomic] = ACTIONS(2687), - [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), - }, - [1328] = { - [sym_line_comment] = STATE(1328), - [sym_block_comment] = STATE(1328), - [sym_identifier] = ACTIONS(3046), - [anon_sym_SLASH_SLASH] = ACTIONS(3), - [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(3046), - [anon_sym_as] = ACTIONS(3046), - [anon_sym_LBRACE] = ACTIONS(3044), - [anon_sym_COMMA] = ACTIONS(3044), - [anon_sym_RBRACE] = ACTIONS(3044), - [anon_sym_LPAREN] = ACTIONS(3044), - [anon_sym_PIPE] = ACTIONS(3046), - [anon_sym_fn] = ACTIONS(3046), - [anon_sym_PLUS] = ACTIONS(3046), - [anon_sym_DASH] = ACTIONS(3046), - [anon_sym_STAR] = ACTIONS(3044), - [anon_sym_SLASH] = ACTIONS(3046), - [anon_sym_PERCENT] = ACTIONS(3044), - [anon_sym_LT] = ACTIONS(3046), - [anon_sym_GT] = ACTIONS(3046), - [anon_sym_EQ_EQ] = ACTIONS(3044), - [anon_sym_BANG_EQ] = ACTIONS(3044), - [anon_sym_LT_EQ] = ACTIONS(3044), - [anon_sym_GT_EQ] = ACTIONS(3044), - [anon_sym_LBRACK] = ACTIONS(3044), - [anon_sym_RBRACK] = ACTIONS(3044), - [anon_sym_struct] = ACTIONS(3046), - [anon_sym_mut] = ACTIONS(3046), - [anon_sym_COLON] = ACTIONS(3044), - [anon_sym_PLUS_PLUS] = ACTIONS(3044), - [anon_sym_DASH_DASH] = ACTIONS(3044), - [anon_sym_QMARK] = ACTIONS(3046), - [anon_sym_BANG] = ACTIONS(3046), - [anon_sym_go] = ACTIONS(3046), - [anon_sym_spawn] = ACTIONS(3046), - [anon_sym_json_DOTdecode] = ACTIONS(3044), - [anon_sym_LBRACK2] = ACTIONS(3046), - [anon_sym_TILDE] = ACTIONS(3044), - [anon_sym_CARET] = ACTIONS(3044), - [anon_sym_AMP] = ACTIONS(3046), - [anon_sym_LT_DASH] = ACTIONS(3044), - [anon_sym_LT_LT] = ACTIONS(3044), - [anon_sym_GT_GT] = ACTIONS(3046), - [anon_sym_GT_GT_GT] = ACTIONS(3044), - [anon_sym_AMP_CARET] = ACTIONS(3044), - [anon_sym_AMP_AMP] = ACTIONS(3044), - [anon_sym_PIPE_PIPE] = ACTIONS(3044), - [anon_sym_or] = ACTIONS(3046), - [sym_none] = ACTIONS(3046), - [sym_true] = ACTIONS(3046), - [sym_false] = ACTIONS(3046), - [sym_nil] = ACTIONS(3046), - [anon_sym_QMARK_DOT] = ACTIONS(3044), - [anon_sym_POUND_LBRACK] = ACTIONS(3044), - [anon_sym_if] = ACTIONS(3046), - [anon_sym_DOLLARif] = ACTIONS(3046), - [anon_sym_is] = ACTIONS(3046), - [anon_sym_BANGis] = ACTIONS(3044), - [anon_sym_in] = ACTIONS(3046), - [anon_sym_BANGin] = ACTIONS(3044), - [anon_sym_match] = ACTIONS(3046), - [anon_sym_select] = ACTIONS(3046), - [anon_sym_lock] = ACTIONS(3046), - [anon_sym_rlock] = ACTIONS(3046), - [anon_sym_unsafe] = ACTIONS(3046), - [anon_sym_sql] = ACTIONS(3046), - [sym_int_literal] = ACTIONS(3046), - [sym_float_literal] = ACTIONS(3044), - [sym_rune_literal] = ACTIONS(3044), - [sym_pseudo_compile_time_identifier] = ACTIONS(3046), - [anon_sym_shared] = ACTIONS(3046), - [anon_sym_map_LBRACK] = ACTIONS(3044), - [anon_sym_chan] = ACTIONS(3046), - [anon_sym_thread] = ACTIONS(3046), - [anon_sym_atomic] = ACTIONS(3046), - [sym___double_quote] = ACTIONS(3044), - [sym___single_quote] = ACTIONS(3044), - [sym___c_double_quote] = ACTIONS(3044), - [sym___c_single_quote] = ACTIONS(3044), - [sym___r_double_quote] = ACTIONS(3044), - [sym___r_single_quote] = ACTIONS(3044), - }, - [1329] = { - [sym_line_comment] = STATE(1329), - [sym_block_comment] = STATE(1329), - [sym_identifier] = ACTIONS(2798), - [anon_sym_SLASH_SLASH] = ACTIONS(3), - [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(2798), - [anon_sym_as] = ACTIONS(2798), - [anon_sym_LBRACE] = ACTIONS(2796), - [anon_sym_COMMA] = ACTIONS(2796), - [anon_sym_RBRACE] = ACTIONS(2796), - [anon_sym_LPAREN] = ACTIONS(2796), - [anon_sym_PIPE] = ACTIONS(2798), - [anon_sym_fn] = ACTIONS(2798), - [anon_sym_PLUS] = ACTIONS(2798), - [anon_sym_DASH] = ACTIONS(2798), - [anon_sym_STAR] = ACTIONS(2796), - [anon_sym_SLASH] = ACTIONS(2798), - [anon_sym_PERCENT] = ACTIONS(2796), - [anon_sym_LT] = ACTIONS(2798), - [anon_sym_GT] = ACTIONS(2798), - [anon_sym_EQ_EQ] = ACTIONS(2796), - [anon_sym_BANG_EQ] = ACTIONS(2796), - [anon_sym_LT_EQ] = ACTIONS(2796), - [anon_sym_GT_EQ] = ACTIONS(2796), - [anon_sym_LBRACK] = ACTIONS(2796), - [anon_sym_RBRACK] = ACTIONS(2796), - [anon_sym_struct] = ACTIONS(2798), - [anon_sym_mut] = ACTIONS(2798), - [anon_sym_COLON] = ACTIONS(2796), - [anon_sym_PLUS_PLUS] = ACTIONS(2796), - [anon_sym_DASH_DASH] = ACTIONS(2796), - [anon_sym_QMARK] = ACTIONS(2798), - [anon_sym_BANG] = ACTIONS(2798), - [anon_sym_go] = ACTIONS(2798), - [anon_sym_spawn] = ACTIONS(2798), - [anon_sym_json_DOTdecode] = ACTIONS(2796), - [anon_sym_LBRACK2] = ACTIONS(2798), - [anon_sym_TILDE] = ACTIONS(2796), - [anon_sym_CARET] = ACTIONS(2796), - [anon_sym_AMP] = ACTIONS(2798), - [anon_sym_LT_DASH] = ACTIONS(2796), - [anon_sym_LT_LT] = ACTIONS(2796), - [anon_sym_GT_GT] = ACTIONS(2798), - [anon_sym_GT_GT_GT] = ACTIONS(2796), - [anon_sym_AMP_CARET] = ACTIONS(2796), - [anon_sym_AMP_AMP] = ACTIONS(2796), - [anon_sym_PIPE_PIPE] = ACTIONS(2796), - [anon_sym_or] = ACTIONS(2798), - [sym_none] = ACTIONS(2798), - [sym_true] = ACTIONS(2798), - [sym_false] = ACTIONS(2798), - [sym_nil] = ACTIONS(2798), - [anon_sym_QMARK_DOT] = ACTIONS(2796), - [anon_sym_POUND_LBRACK] = ACTIONS(2796), - [anon_sym_if] = ACTIONS(2798), - [anon_sym_DOLLARif] = ACTIONS(2798), - [anon_sym_is] = ACTIONS(2798), - [anon_sym_BANGis] = ACTIONS(2796), - [anon_sym_in] = ACTIONS(2798), - [anon_sym_BANGin] = ACTIONS(2796), - [anon_sym_match] = ACTIONS(2798), - [anon_sym_select] = ACTIONS(2798), - [anon_sym_lock] = ACTIONS(2798), - [anon_sym_rlock] = ACTIONS(2798), - [anon_sym_unsafe] = ACTIONS(2798), - [anon_sym_sql] = ACTIONS(2798), - [sym_int_literal] = ACTIONS(2798), - [sym_float_literal] = ACTIONS(2796), - [sym_rune_literal] = ACTIONS(2796), - [sym_pseudo_compile_time_identifier] = ACTIONS(2798), - [anon_sym_shared] = ACTIONS(2798), - [anon_sym_map_LBRACK] = ACTIONS(2796), - [anon_sym_chan] = ACTIONS(2798), - [anon_sym_thread] = ACTIONS(2798), - [anon_sym_atomic] = ACTIONS(2798), - [sym___double_quote] = ACTIONS(2796), - [sym___single_quote] = ACTIONS(2796), - [sym___c_double_quote] = ACTIONS(2796), - [sym___c_single_quote] = ACTIONS(2796), - [sym___r_double_quote] = ACTIONS(2796), - [sym___r_single_quote] = ACTIONS(2796), - }, - [1330] = { - [sym_line_comment] = STATE(1330), - [sym_block_comment] = STATE(1330), - [sym_identifier] = ACTIONS(2912), + [sym_identifier] = ACTIONS(2505), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(2912), - [anon_sym_as] = ACTIONS(2912), - [anon_sym_LBRACE] = ACTIONS(2910), - [anon_sym_COMMA] = ACTIONS(2910), - [anon_sym_RBRACE] = ACTIONS(2910), - [anon_sym_LPAREN] = ACTIONS(2910), - [anon_sym_PIPE] = ACTIONS(2912), - [anon_sym_fn] = ACTIONS(2912), - [anon_sym_PLUS] = ACTIONS(2912), - [anon_sym_DASH] = ACTIONS(2912), - [anon_sym_STAR] = ACTIONS(2910), - [anon_sym_SLASH] = ACTIONS(2912), - [anon_sym_PERCENT] = ACTIONS(2910), - [anon_sym_LT] = ACTIONS(2912), - [anon_sym_GT] = ACTIONS(2912), - [anon_sym_EQ_EQ] = ACTIONS(2910), - [anon_sym_BANG_EQ] = ACTIONS(2910), - [anon_sym_LT_EQ] = ACTIONS(2910), - [anon_sym_GT_EQ] = ACTIONS(2910), - [anon_sym_LBRACK] = ACTIONS(2910), - [anon_sym_RBRACK] = ACTIONS(2910), - [anon_sym_struct] = ACTIONS(2912), - [anon_sym_mut] = ACTIONS(2912), - [anon_sym_COLON] = ACTIONS(2910), - [anon_sym_PLUS_PLUS] = ACTIONS(2910), - [anon_sym_DASH_DASH] = ACTIONS(2910), - [anon_sym_QMARK] = ACTIONS(2912), - [anon_sym_BANG] = ACTIONS(2912), - [anon_sym_go] = ACTIONS(2912), - [anon_sym_spawn] = ACTIONS(2912), - [anon_sym_json_DOTdecode] = ACTIONS(2910), - [anon_sym_LBRACK2] = ACTIONS(2912), - [anon_sym_TILDE] = ACTIONS(2910), - [anon_sym_CARET] = ACTIONS(2910), - [anon_sym_AMP] = ACTIONS(2912), - [anon_sym_LT_DASH] = ACTIONS(2910), - [anon_sym_LT_LT] = ACTIONS(2910), - [anon_sym_GT_GT] = ACTIONS(2912), - [anon_sym_GT_GT_GT] = ACTIONS(2910), - [anon_sym_AMP_CARET] = ACTIONS(2910), - [anon_sym_AMP_AMP] = ACTIONS(2910), - [anon_sym_PIPE_PIPE] = ACTIONS(2910), - [anon_sym_or] = ACTIONS(2912), - [sym_none] = ACTIONS(2912), - [sym_true] = ACTIONS(2912), - [sym_false] = ACTIONS(2912), - [sym_nil] = ACTIONS(2912), - [anon_sym_QMARK_DOT] = ACTIONS(2910), - [anon_sym_POUND_LBRACK] = ACTIONS(2910), - [anon_sym_if] = ACTIONS(2912), - [anon_sym_DOLLARif] = ACTIONS(2912), - [anon_sym_is] = ACTIONS(2912), - [anon_sym_BANGis] = ACTIONS(2910), - [anon_sym_in] = ACTIONS(2912), - [anon_sym_BANGin] = ACTIONS(2910), - [anon_sym_match] = ACTIONS(2912), - [anon_sym_select] = ACTIONS(2912), - [anon_sym_lock] = ACTIONS(2912), - [anon_sym_rlock] = ACTIONS(2912), - [anon_sym_unsafe] = ACTIONS(2912), - [anon_sym_sql] = ACTIONS(2912), - [sym_int_literal] = ACTIONS(2912), - [sym_float_literal] = ACTIONS(2910), - [sym_rune_literal] = ACTIONS(2910), - [sym_pseudo_compile_time_identifier] = ACTIONS(2912), - [anon_sym_shared] = ACTIONS(2912), - [anon_sym_map_LBRACK] = ACTIONS(2910), - [anon_sym_chan] = ACTIONS(2912), - [anon_sym_thread] = ACTIONS(2912), - [anon_sym_atomic] = ACTIONS(2912), - [sym___double_quote] = ACTIONS(2910), - [sym___single_quote] = ACTIONS(2910), - [sym___c_double_quote] = ACTIONS(2910), - [sym___c_single_quote] = ACTIONS(2910), - [sym___r_double_quote] = ACTIONS(2910), - [sym___r_single_quote] = ACTIONS(2910), - }, - [1331] = { - [sym_line_comment] = STATE(1331), - [sym_block_comment] = STATE(1331), - [sym_identifier] = ACTIONS(3062), + [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_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), + }, + [1323] = { + [sym_line_comment] = STATE(1323), + [sym_block_comment] = STATE(1323), + [sym_identifier] = ACTIONS(2467), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(3062), - [anon_sym_as] = ACTIONS(3062), - [anon_sym_LBRACE] = ACTIONS(3060), - [anon_sym_COMMA] = ACTIONS(3060), - [anon_sym_RBRACE] = ACTIONS(3060), - [anon_sym_LPAREN] = ACTIONS(3060), - [anon_sym_PIPE] = ACTIONS(3062), - [anon_sym_fn] = ACTIONS(3062), - [anon_sym_PLUS] = ACTIONS(3062), - [anon_sym_DASH] = ACTIONS(3062), - [anon_sym_STAR] = ACTIONS(3060), - [anon_sym_SLASH] = ACTIONS(3062), - [anon_sym_PERCENT] = ACTIONS(3060), - [anon_sym_LT] = ACTIONS(3062), - [anon_sym_GT] = ACTIONS(3062), - [anon_sym_EQ_EQ] = ACTIONS(3060), - [anon_sym_BANG_EQ] = ACTIONS(3060), - [anon_sym_LT_EQ] = ACTIONS(3060), - [anon_sym_GT_EQ] = ACTIONS(3060), - [anon_sym_LBRACK] = ACTIONS(3060), - [anon_sym_RBRACK] = ACTIONS(3060), - [anon_sym_struct] = ACTIONS(3062), - [anon_sym_mut] = ACTIONS(3062), - [anon_sym_COLON] = ACTIONS(3060), - [anon_sym_PLUS_PLUS] = ACTIONS(3060), - [anon_sym_DASH_DASH] = ACTIONS(3060), - [anon_sym_QMARK] = ACTIONS(3062), - [anon_sym_BANG] = ACTIONS(3062), - [anon_sym_go] = ACTIONS(3062), - [anon_sym_spawn] = ACTIONS(3062), - [anon_sym_json_DOTdecode] = ACTIONS(3060), - [anon_sym_LBRACK2] = ACTIONS(3062), - [anon_sym_TILDE] = ACTIONS(3060), - [anon_sym_CARET] = ACTIONS(3060), - [anon_sym_AMP] = ACTIONS(3062), - [anon_sym_LT_DASH] = ACTIONS(3060), - [anon_sym_LT_LT] = ACTIONS(3060), - [anon_sym_GT_GT] = ACTIONS(3062), - [anon_sym_GT_GT_GT] = ACTIONS(3060), - [anon_sym_AMP_CARET] = ACTIONS(3060), - [anon_sym_AMP_AMP] = ACTIONS(3060), - [anon_sym_PIPE_PIPE] = ACTIONS(3060), - [anon_sym_or] = ACTIONS(3062), - [sym_none] = ACTIONS(3062), - [sym_true] = ACTIONS(3062), - [sym_false] = ACTIONS(3062), - [sym_nil] = ACTIONS(3062), - [anon_sym_QMARK_DOT] = ACTIONS(3060), - [anon_sym_POUND_LBRACK] = ACTIONS(3060), - [anon_sym_if] = ACTIONS(3062), - [anon_sym_DOLLARif] = ACTIONS(3062), - [anon_sym_is] = ACTIONS(3062), - [anon_sym_BANGis] = ACTIONS(3060), - [anon_sym_in] = ACTIONS(3062), - [anon_sym_BANGin] = ACTIONS(3060), - [anon_sym_match] = ACTIONS(3062), - [anon_sym_select] = ACTIONS(3062), - [anon_sym_lock] = ACTIONS(3062), - [anon_sym_rlock] = ACTIONS(3062), - [anon_sym_unsafe] = ACTIONS(3062), - [anon_sym_sql] = ACTIONS(3062), - [sym_int_literal] = ACTIONS(3062), - [sym_float_literal] = ACTIONS(3060), - [sym_rune_literal] = ACTIONS(3060), - [sym_pseudo_compile_time_identifier] = ACTIONS(3062), - [anon_sym_shared] = ACTIONS(3062), - [anon_sym_map_LBRACK] = ACTIONS(3060), - [anon_sym_chan] = ACTIONS(3062), - [anon_sym_thread] = ACTIONS(3062), - [anon_sym_atomic] = ACTIONS(3062), - [sym___double_quote] = ACTIONS(3060), - [sym___single_quote] = ACTIONS(3060), - [sym___c_double_quote] = ACTIONS(3060), - [sym___c_single_quote] = ACTIONS(3060), - [sym___r_double_quote] = ACTIONS(3060), - [sym___r_single_quote] = ACTIONS(3060), + [anon_sym_DOT] = ACTIONS(2467), + [anon_sym_as] = ACTIONS(2467), + [anon_sym_LBRACE] = ACTIONS(2465), + [anon_sym_COMMA] = ACTIONS(2465), + [anon_sym_RBRACE] = ACTIONS(2465), + [anon_sym_LPAREN] = ACTIONS(2465), + [anon_sym_PIPE] = ACTIONS(2467), + [anon_sym_fn] = ACTIONS(2467), + [anon_sym_PLUS] = ACTIONS(2467), + [anon_sym_DASH] = ACTIONS(2467), + [anon_sym_STAR] = ACTIONS(2465), + [anon_sym_SLASH] = ACTIONS(2467), + [anon_sym_PERCENT] = ACTIONS(2465), + [anon_sym_LT] = ACTIONS(2467), + [anon_sym_GT] = ACTIONS(2467), + [anon_sym_EQ_EQ] = ACTIONS(2465), + [anon_sym_BANG_EQ] = ACTIONS(2465), + [anon_sym_LT_EQ] = ACTIONS(2465), + [anon_sym_GT_EQ] = ACTIONS(2465), + [anon_sym_LBRACK] = ACTIONS(2465), + [anon_sym_RBRACK] = ACTIONS(2465), + [anon_sym_struct] = ACTIONS(2467), + [anon_sym_mut] = ACTIONS(2467), + [anon_sym_COLON] = ACTIONS(2465), + [anon_sym_PLUS_PLUS] = ACTIONS(2465), + [anon_sym_DASH_DASH] = ACTIONS(2465), + [anon_sym_QMARK] = ACTIONS(2467), + [anon_sym_BANG] = ACTIONS(2467), + [anon_sym_go] = ACTIONS(2467), + [anon_sym_spawn] = ACTIONS(2467), + [anon_sym_json_DOTdecode] = ACTIONS(2465), + [anon_sym_LBRACK2] = ACTIONS(2467), + [anon_sym_TILDE] = ACTIONS(2465), + [anon_sym_CARET] = ACTIONS(2465), + [anon_sym_AMP] = ACTIONS(2467), + [anon_sym_LT_DASH] = ACTIONS(2465), + [anon_sym_LT_LT] = ACTIONS(2465), + [anon_sym_GT_GT] = ACTIONS(2467), + [anon_sym_GT_GT_GT] = ACTIONS(2465), + [anon_sym_AMP_CARET] = ACTIONS(2465), + [anon_sym_AMP_AMP] = ACTIONS(2465), + [anon_sym_PIPE_PIPE] = ACTIONS(2465), + [anon_sym_or] = ACTIONS(2467), + [sym_none] = ACTIONS(2467), + [sym_true] = ACTIONS(2467), + [sym_false] = ACTIONS(2467), + [sym_nil] = ACTIONS(2467), + [anon_sym_QMARK_DOT] = ACTIONS(2465), + [anon_sym_POUND_LBRACK] = ACTIONS(2465), + [anon_sym_if] = ACTIONS(2467), + [anon_sym_DOLLARif] = ACTIONS(2467), + [anon_sym_is] = ACTIONS(2467), + [anon_sym_BANGis] = ACTIONS(2465), + [anon_sym_in] = ACTIONS(2467), + [anon_sym_BANGin] = ACTIONS(2465), + [anon_sym_match] = ACTIONS(2467), + [anon_sym_select] = ACTIONS(2467), + [anon_sym_lock] = ACTIONS(2467), + [anon_sym_rlock] = ACTIONS(2467), + [anon_sym_unsafe] = ACTIONS(2467), + [anon_sym_sql] = ACTIONS(2467), + [sym_int_literal] = ACTIONS(2467), + [sym_float_literal] = ACTIONS(2465), + [sym_rune_literal] = ACTIONS(2465), + [sym_pseudo_compile_time_identifier] = ACTIONS(2467), + [anon_sym_shared] = ACTIONS(2467), + [anon_sym_map_LBRACK] = ACTIONS(2465), + [anon_sym_chan] = ACTIONS(2467), + [anon_sym_thread] = ACTIONS(2467), + [anon_sym_atomic] = ACTIONS(2467), + [sym___double_quote] = ACTIONS(2465), + [sym___single_quote] = ACTIONS(2465), + [sym___c_double_quote] = ACTIONS(2465), + [sym___c_single_quote] = ACTIONS(2465), + [sym___r_double_quote] = ACTIONS(2465), + [sym___r_single_quote] = ACTIONS(2465), }, - [1332] = { - [sym_line_comment] = STATE(1332), - [sym_block_comment] = STATE(1332), - [sym_identifier] = ACTIONS(2846), + [1324] = { + [sym_line_comment] = STATE(1324), + [sym_block_comment] = STATE(1324), + [sym_identifier] = ACTIONS(2463), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(2846), - [anon_sym_as] = ACTIONS(2846), - [anon_sym_LBRACE] = ACTIONS(2844), - [anon_sym_COMMA] = ACTIONS(2844), - [anon_sym_RBRACE] = ACTIONS(2844), - [anon_sym_LPAREN] = ACTIONS(2844), - [anon_sym_PIPE] = ACTIONS(2846), - [anon_sym_fn] = ACTIONS(2846), - [anon_sym_PLUS] = ACTIONS(2846), - [anon_sym_DASH] = ACTIONS(2846), - [anon_sym_STAR] = ACTIONS(2844), - [anon_sym_SLASH] = ACTIONS(2846), - [anon_sym_PERCENT] = ACTIONS(2844), - [anon_sym_LT] = ACTIONS(2846), - [anon_sym_GT] = ACTIONS(2846), - [anon_sym_EQ_EQ] = ACTIONS(2844), - [anon_sym_BANG_EQ] = ACTIONS(2844), - [anon_sym_LT_EQ] = ACTIONS(2844), - [anon_sym_GT_EQ] = ACTIONS(2844), - [anon_sym_LBRACK] = ACTIONS(2844), - [anon_sym_RBRACK] = ACTIONS(2844), - [anon_sym_struct] = ACTIONS(2846), - [anon_sym_mut] = ACTIONS(2846), - [anon_sym_COLON] = ACTIONS(2844), - [anon_sym_PLUS_PLUS] = ACTIONS(2844), - [anon_sym_DASH_DASH] = ACTIONS(2844), - [anon_sym_QMARK] = ACTIONS(2846), - [anon_sym_BANG] = ACTIONS(2846), - [anon_sym_go] = ACTIONS(2846), - [anon_sym_spawn] = ACTIONS(2846), - [anon_sym_json_DOTdecode] = ACTIONS(2844), - [anon_sym_LBRACK2] = ACTIONS(2846), - [anon_sym_TILDE] = ACTIONS(2844), - [anon_sym_CARET] = ACTIONS(2844), - [anon_sym_AMP] = ACTIONS(2846), - [anon_sym_LT_DASH] = ACTIONS(2844), - [anon_sym_LT_LT] = ACTIONS(2844), - [anon_sym_GT_GT] = ACTIONS(2846), - [anon_sym_GT_GT_GT] = ACTIONS(2844), - [anon_sym_AMP_CARET] = ACTIONS(2844), - [anon_sym_AMP_AMP] = ACTIONS(2844), - [anon_sym_PIPE_PIPE] = ACTIONS(2844), - [anon_sym_or] = ACTIONS(2846), - [sym_none] = ACTIONS(2846), - [sym_true] = ACTIONS(2846), - [sym_false] = ACTIONS(2846), - [sym_nil] = ACTIONS(2846), - [anon_sym_QMARK_DOT] = ACTIONS(2844), - [anon_sym_POUND_LBRACK] = ACTIONS(2844), - [anon_sym_if] = ACTIONS(2846), - [anon_sym_DOLLARif] = ACTIONS(2846), - [anon_sym_is] = ACTIONS(2846), - [anon_sym_BANGis] = ACTIONS(2844), - [anon_sym_in] = ACTIONS(2846), - [anon_sym_BANGin] = ACTIONS(2844), - [anon_sym_match] = ACTIONS(2846), - [anon_sym_select] = ACTIONS(2846), - [anon_sym_lock] = ACTIONS(2846), - [anon_sym_rlock] = ACTIONS(2846), - [anon_sym_unsafe] = ACTIONS(2846), - [anon_sym_sql] = ACTIONS(2846), - [sym_int_literal] = ACTIONS(2846), - [sym_float_literal] = ACTIONS(2844), - [sym_rune_literal] = ACTIONS(2844), - [sym_pseudo_compile_time_identifier] = ACTIONS(2846), - [anon_sym_shared] = ACTIONS(2846), - [anon_sym_map_LBRACK] = ACTIONS(2844), - [anon_sym_chan] = ACTIONS(2846), - [anon_sym_thread] = ACTIONS(2846), - [anon_sym_atomic] = ACTIONS(2846), - [sym___double_quote] = ACTIONS(2844), - [sym___single_quote] = ACTIONS(2844), - [sym___c_double_quote] = ACTIONS(2844), - [sym___c_single_quote] = ACTIONS(2844), - [sym___r_double_quote] = ACTIONS(2844), - [sym___r_single_quote] = ACTIONS(2844), + [anon_sym_DOT] = ACTIONS(2463), + [anon_sym_as] = ACTIONS(2463), + [anon_sym_LBRACE] = ACTIONS(2461), + [anon_sym_COMMA] = ACTIONS(2461), + [anon_sym_RBRACE] = ACTIONS(2461), + [anon_sym_LPAREN] = ACTIONS(2461), + [anon_sym_PIPE] = ACTIONS(2463), + [anon_sym_fn] = ACTIONS(2463), + [anon_sym_PLUS] = ACTIONS(2463), + [anon_sym_DASH] = ACTIONS(2463), + [anon_sym_STAR] = ACTIONS(2461), + [anon_sym_SLASH] = ACTIONS(2463), + [anon_sym_PERCENT] = ACTIONS(2461), + [anon_sym_LT] = ACTIONS(2463), + [anon_sym_GT] = ACTIONS(2463), + [anon_sym_EQ_EQ] = ACTIONS(2461), + [anon_sym_BANG_EQ] = ACTIONS(2461), + [anon_sym_LT_EQ] = ACTIONS(2461), + [anon_sym_GT_EQ] = ACTIONS(2461), + [anon_sym_LBRACK] = ACTIONS(2461), + [anon_sym_RBRACK] = ACTIONS(2461), + [anon_sym_struct] = ACTIONS(2463), + [anon_sym_mut] = ACTIONS(2463), + [anon_sym_COLON] = ACTIONS(2461), + [anon_sym_PLUS_PLUS] = ACTIONS(2461), + [anon_sym_DASH_DASH] = ACTIONS(2461), + [anon_sym_QMARK] = ACTIONS(2463), + [anon_sym_BANG] = ACTIONS(2463), + [anon_sym_go] = ACTIONS(2463), + [anon_sym_spawn] = ACTIONS(2463), + [anon_sym_json_DOTdecode] = ACTIONS(2461), + [anon_sym_LBRACK2] = ACTIONS(2463), + [anon_sym_TILDE] = ACTIONS(2461), + [anon_sym_CARET] = ACTIONS(2461), + [anon_sym_AMP] = ACTIONS(2463), + [anon_sym_LT_DASH] = ACTIONS(2461), + [anon_sym_LT_LT] = ACTIONS(2461), + [anon_sym_GT_GT] = ACTIONS(2463), + [anon_sym_GT_GT_GT] = ACTIONS(2461), + [anon_sym_AMP_CARET] = ACTIONS(2461), + [anon_sym_AMP_AMP] = ACTIONS(2461), + [anon_sym_PIPE_PIPE] = ACTIONS(2461), + [anon_sym_or] = ACTIONS(2463), + [sym_none] = ACTIONS(2463), + [sym_true] = ACTIONS(2463), + [sym_false] = ACTIONS(2463), + [sym_nil] = ACTIONS(2463), + [anon_sym_QMARK_DOT] = ACTIONS(2461), + [anon_sym_POUND_LBRACK] = ACTIONS(2461), + [anon_sym_if] = ACTIONS(2463), + [anon_sym_DOLLARif] = ACTIONS(2463), + [anon_sym_is] = ACTIONS(2463), + [anon_sym_BANGis] = ACTIONS(2461), + [anon_sym_in] = ACTIONS(2463), + [anon_sym_BANGin] = ACTIONS(2461), + [anon_sym_match] = ACTIONS(2463), + [anon_sym_select] = ACTIONS(2463), + [anon_sym_lock] = ACTIONS(2463), + [anon_sym_rlock] = ACTIONS(2463), + [anon_sym_unsafe] = ACTIONS(2463), + [anon_sym_sql] = ACTIONS(2463), + [sym_int_literal] = ACTIONS(2463), + [sym_float_literal] = ACTIONS(2461), + [sym_rune_literal] = ACTIONS(2461), + [sym_pseudo_compile_time_identifier] = ACTIONS(2463), + [anon_sym_shared] = ACTIONS(2463), + [anon_sym_map_LBRACK] = ACTIONS(2461), + [anon_sym_chan] = ACTIONS(2463), + [anon_sym_thread] = ACTIONS(2463), + [anon_sym_atomic] = ACTIONS(2463), + [sym___double_quote] = ACTIONS(2461), + [sym___single_quote] = ACTIONS(2461), + [sym___c_double_quote] = ACTIONS(2461), + [sym___c_single_quote] = ACTIONS(2461), + [sym___r_double_quote] = ACTIONS(2461), + [sym___r_single_quote] = ACTIONS(2461), }, - [1333] = { - [sym_line_comment] = STATE(1333), - [sym_block_comment] = STATE(1333), - [sym_identifier] = ACTIONS(2165), + [1325] = { + [sym_line_comment] = STATE(1325), + [sym_block_comment] = STATE(1325), + [sym_identifier] = ACTIONS(2143), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(2165), - [anon_sym_as] = ACTIONS(2165), - [anon_sym_LBRACE] = ACTIONS(2163), - [anon_sym_COMMA] = ACTIONS(2163), - [anon_sym_RBRACE] = ACTIONS(2163), - [anon_sym_LPAREN] = ACTIONS(2163), - [anon_sym_PIPE] = ACTIONS(2165), - [anon_sym_fn] = ACTIONS(2165), - [anon_sym_PLUS] = ACTIONS(2165), - [anon_sym_DASH] = ACTIONS(2165), - [anon_sym_STAR] = ACTIONS(2163), - [anon_sym_SLASH] = ACTIONS(2165), - [anon_sym_PERCENT] = ACTIONS(2163), - [anon_sym_LT] = ACTIONS(2165), - [anon_sym_GT] = ACTIONS(2165), - [anon_sym_EQ_EQ] = ACTIONS(2163), - [anon_sym_BANG_EQ] = ACTIONS(2163), - [anon_sym_LT_EQ] = ACTIONS(2163), - [anon_sym_GT_EQ] = ACTIONS(2163), - [anon_sym_LBRACK] = ACTIONS(2163), - [anon_sym_RBRACK] = ACTIONS(2163), - [anon_sym_struct] = ACTIONS(2165), - [anon_sym_mut] = ACTIONS(2165), - [anon_sym_COLON] = ACTIONS(2163), - [anon_sym_PLUS_PLUS] = ACTIONS(2163), - [anon_sym_DASH_DASH] = ACTIONS(2163), - [anon_sym_QMARK] = ACTIONS(2165), - [anon_sym_BANG] = ACTIONS(2165), - [anon_sym_go] = ACTIONS(2165), - [anon_sym_spawn] = ACTIONS(2165), - [anon_sym_json_DOTdecode] = ACTIONS(2163), - [anon_sym_LBRACK2] = ACTIONS(2165), - [anon_sym_TILDE] = ACTIONS(2163), - [anon_sym_CARET] = ACTIONS(2163), - [anon_sym_AMP] = ACTIONS(2165), - [anon_sym_LT_DASH] = ACTIONS(2163), - [anon_sym_LT_LT] = ACTIONS(2163), - [anon_sym_GT_GT] = ACTIONS(2165), - [anon_sym_GT_GT_GT] = ACTIONS(2163), - [anon_sym_AMP_CARET] = ACTIONS(2163), - [anon_sym_AMP_AMP] = ACTIONS(2163), - [anon_sym_PIPE_PIPE] = ACTIONS(2163), - [anon_sym_or] = ACTIONS(2165), - [sym_none] = ACTIONS(2165), - [sym_true] = ACTIONS(2165), - [sym_false] = ACTIONS(2165), - [sym_nil] = ACTIONS(2165), - [anon_sym_QMARK_DOT] = ACTIONS(2163), - [anon_sym_POUND_LBRACK] = ACTIONS(2163), - [anon_sym_if] = ACTIONS(2165), - [anon_sym_DOLLARif] = ACTIONS(2165), - [anon_sym_is] = ACTIONS(2165), - [anon_sym_BANGis] = ACTIONS(2163), - [anon_sym_in] = ACTIONS(2165), - [anon_sym_BANGin] = ACTIONS(2163), - [anon_sym_match] = ACTIONS(2165), - [anon_sym_select] = ACTIONS(2165), - [anon_sym_lock] = ACTIONS(2165), - [anon_sym_rlock] = ACTIONS(2165), - [anon_sym_unsafe] = ACTIONS(2165), - [anon_sym_sql] = ACTIONS(2165), - [sym_int_literal] = ACTIONS(2165), - [sym_float_literal] = ACTIONS(2163), - [sym_rune_literal] = ACTIONS(2163), - [sym_pseudo_compile_time_identifier] = ACTIONS(2165), - [anon_sym_shared] = ACTIONS(2165), - [anon_sym_map_LBRACK] = ACTIONS(2163), - [anon_sym_chan] = ACTIONS(2165), - [anon_sym_thread] = ACTIONS(2165), - [anon_sym_atomic] = ACTIONS(2165), - [sym___double_quote] = ACTIONS(2163), - [sym___single_quote] = ACTIONS(2163), - [sym___c_double_quote] = ACTIONS(2163), - [sym___c_single_quote] = ACTIONS(2163), - [sym___r_double_quote] = ACTIONS(2163), - [sym___r_single_quote] = ACTIONS(2163), + [anon_sym_DOT] = ACTIONS(2143), + [anon_sym_as] = ACTIONS(2143), + [anon_sym_LBRACE] = ACTIONS(2141), + [anon_sym_COMMA] = ACTIONS(2141), + [anon_sym_RBRACE] = ACTIONS(2141), + [anon_sym_LPAREN] = ACTIONS(2141), + [anon_sym_PIPE] = ACTIONS(2143), + [anon_sym_fn] = ACTIONS(2143), + [anon_sym_PLUS] = ACTIONS(2143), + [anon_sym_DASH] = ACTIONS(2143), + [anon_sym_STAR] = ACTIONS(2141), + [anon_sym_SLASH] = ACTIONS(2143), + [anon_sym_PERCENT] = ACTIONS(2141), + [anon_sym_LT] = ACTIONS(2143), + [anon_sym_GT] = ACTIONS(2143), + [anon_sym_EQ_EQ] = ACTIONS(2141), + [anon_sym_BANG_EQ] = ACTIONS(2141), + [anon_sym_LT_EQ] = ACTIONS(2141), + [anon_sym_GT_EQ] = ACTIONS(2141), + [anon_sym_LBRACK] = ACTIONS(2141), + [anon_sym_RBRACK] = ACTIONS(2141), + [anon_sym_struct] = ACTIONS(2143), + [anon_sym_mut] = ACTIONS(2143), + [anon_sym_COLON] = ACTIONS(2141), + [anon_sym_PLUS_PLUS] = ACTIONS(2141), + [anon_sym_DASH_DASH] = ACTIONS(2141), + [anon_sym_QMARK] = ACTIONS(2143), + [anon_sym_BANG] = ACTIONS(2143), + [anon_sym_go] = ACTIONS(2143), + [anon_sym_spawn] = ACTIONS(2143), + [anon_sym_json_DOTdecode] = ACTIONS(2141), + [anon_sym_LBRACK2] = ACTIONS(2143), + [anon_sym_TILDE] = ACTIONS(2141), + [anon_sym_CARET] = ACTIONS(2141), + [anon_sym_AMP] = ACTIONS(2143), + [anon_sym_LT_DASH] = ACTIONS(2141), + [anon_sym_LT_LT] = ACTIONS(2141), + [anon_sym_GT_GT] = ACTIONS(2143), + [anon_sym_GT_GT_GT] = ACTIONS(2141), + [anon_sym_AMP_CARET] = ACTIONS(2141), + [anon_sym_AMP_AMP] = ACTIONS(2141), + [anon_sym_PIPE_PIPE] = ACTIONS(2141), + [anon_sym_or] = ACTIONS(2143), + [sym_none] = ACTIONS(2143), + [sym_true] = ACTIONS(2143), + [sym_false] = ACTIONS(2143), + [sym_nil] = ACTIONS(2143), + [anon_sym_QMARK_DOT] = ACTIONS(2141), + [anon_sym_POUND_LBRACK] = ACTIONS(2141), + [anon_sym_if] = ACTIONS(2143), + [anon_sym_DOLLARif] = ACTIONS(2143), + [anon_sym_is] = ACTIONS(2143), + [anon_sym_BANGis] = ACTIONS(2141), + [anon_sym_in] = ACTIONS(2143), + [anon_sym_BANGin] = ACTIONS(2141), + [anon_sym_match] = ACTIONS(2143), + [anon_sym_select] = ACTIONS(2143), + [anon_sym_lock] = ACTIONS(2143), + [anon_sym_rlock] = ACTIONS(2143), + [anon_sym_unsafe] = ACTIONS(2143), + [anon_sym_sql] = ACTIONS(2143), + [sym_int_literal] = ACTIONS(2143), + [sym_float_literal] = ACTIONS(2141), + [sym_rune_literal] = ACTIONS(2141), + [sym_pseudo_compile_time_identifier] = ACTIONS(2143), + [anon_sym_shared] = ACTIONS(2143), + [anon_sym_map_LBRACK] = ACTIONS(2141), + [anon_sym_chan] = ACTIONS(2143), + [anon_sym_thread] = ACTIONS(2143), + [anon_sym_atomic] = ACTIONS(2143), + [sym___double_quote] = ACTIONS(2141), + [sym___single_quote] = ACTIONS(2141), + [sym___c_double_quote] = ACTIONS(2141), + [sym___c_single_quote] = ACTIONS(2141), + [sym___r_double_quote] = ACTIONS(2141), + [sym___r_single_quote] = ACTIONS(2141), }, - [1334] = { - [sym_line_comment] = STATE(1334), - [sym_block_comment] = STATE(1334), - [sym_identifier] = ACTIONS(2761), + [1326] = { + [sym_line_comment] = STATE(1326), + [sym_block_comment] = STATE(1326), + [sym_identifier] = ACTIONS(2315), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(2763), - [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(2315), + [anon_sym_as] = ACTIONS(2315), + [anon_sym_LBRACE] = ACTIONS(2313), + [anon_sym_COMMA] = ACTIONS(2313), + [anon_sym_RBRACE] = ACTIONS(2313), + [anon_sym_LPAREN] = ACTIONS(2313), + [anon_sym_PIPE] = ACTIONS(2315), + [anon_sym_fn] = ACTIONS(2315), + [anon_sym_PLUS] = ACTIONS(2315), + [anon_sym_DASH] = ACTIONS(2315), + [anon_sym_STAR] = ACTIONS(2313), + [anon_sym_SLASH] = ACTIONS(2315), + [anon_sym_PERCENT] = ACTIONS(2313), + [anon_sym_LT] = ACTIONS(2315), + [anon_sym_GT] = ACTIONS(2315), + [anon_sym_EQ_EQ] = ACTIONS(2313), + [anon_sym_BANG_EQ] = ACTIONS(2313), + [anon_sym_LT_EQ] = ACTIONS(2313), + [anon_sym_GT_EQ] = ACTIONS(2313), + [anon_sym_LBRACK] = ACTIONS(2313), + [anon_sym_RBRACK] = ACTIONS(2313), + [anon_sym_struct] = ACTIONS(2315), + [anon_sym_mut] = ACTIONS(2315), + [anon_sym_COLON] = ACTIONS(2313), + [anon_sym_PLUS_PLUS] = ACTIONS(2313), + [anon_sym_DASH_DASH] = ACTIONS(2313), + [anon_sym_QMARK] = ACTIONS(2315), + [anon_sym_BANG] = ACTIONS(2315), + [anon_sym_go] = ACTIONS(2315), + [anon_sym_spawn] = ACTIONS(2315), + [anon_sym_json_DOTdecode] = ACTIONS(2313), + [anon_sym_LBRACK2] = ACTIONS(2315), + [anon_sym_TILDE] = ACTIONS(2313), + [anon_sym_CARET] = ACTIONS(2313), + [anon_sym_AMP] = ACTIONS(2315), + [anon_sym_LT_DASH] = ACTIONS(2313), + [anon_sym_LT_LT] = ACTIONS(2313), + [anon_sym_GT_GT] = ACTIONS(2315), + [anon_sym_GT_GT_GT] = ACTIONS(2313), + [anon_sym_AMP_CARET] = ACTIONS(2313), + [anon_sym_AMP_AMP] = ACTIONS(2313), + [anon_sym_PIPE_PIPE] = ACTIONS(2313), + [anon_sym_or] = ACTIONS(2315), + [sym_none] = ACTIONS(2315), + [sym_true] = ACTIONS(2315), + [sym_false] = ACTIONS(2315), + [sym_nil] = ACTIONS(2315), + [anon_sym_QMARK_DOT] = ACTIONS(2313), + [anon_sym_POUND_LBRACK] = ACTIONS(2313), + [anon_sym_if] = ACTIONS(2315), + [anon_sym_DOLLARif] = ACTIONS(2315), + [anon_sym_is] = ACTIONS(2315), + [anon_sym_BANGis] = ACTIONS(2313), + [anon_sym_in] = ACTIONS(2315), + [anon_sym_BANGin] = ACTIONS(2313), + [anon_sym_match] = ACTIONS(2315), + [anon_sym_select] = ACTIONS(2315), + [anon_sym_lock] = ACTIONS(2315), + [anon_sym_rlock] = ACTIONS(2315), + [anon_sym_unsafe] = ACTIONS(2315), + [anon_sym_sql] = ACTIONS(2315), + [sym_int_literal] = ACTIONS(2315), + [sym_float_literal] = ACTIONS(2313), + [sym_rune_literal] = ACTIONS(2313), + [sym_pseudo_compile_time_identifier] = ACTIONS(2315), + [anon_sym_shared] = ACTIONS(2315), + [anon_sym_map_LBRACK] = ACTIONS(2313), + [anon_sym_chan] = ACTIONS(2315), + [anon_sym_thread] = ACTIONS(2315), + [anon_sym_atomic] = ACTIONS(2315), + [sym___double_quote] = ACTIONS(2313), + [sym___single_quote] = ACTIONS(2313), + [sym___c_double_quote] = ACTIONS(2313), + [sym___c_single_quote] = ACTIONS(2313), + [sym___r_double_quote] = ACTIONS(2313), + [sym___r_single_quote] = ACTIONS(2313), }, - [1335] = { - [sym_line_comment] = STATE(1335), - [sym_block_comment] = STATE(1335), + [1327] = { + [sym_line_comment] = STATE(1327), + [sym_block_comment] = STATE(1327), [sym_identifier] = ACTIONS(2840), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), @@ -167841,1084 +167228,1748 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym___r_double_quote] = ACTIONS(2838), [sym___r_single_quote] = ACTIONS(2838), }, + [1328] = { + [sym_line_comment] = STATE(1328), + [sym_block_comment] = STATE(1328), + [sym_identifier] = ACTIONS(2203), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(2203), + [anon_sym_as] = ACTIONS(2203), + [anon_sym_LBRACE] = ACTIONS(2201), + [anon_sym_COMMA] = ACTIONS(2201), + [anon_sym_RBRACE] = ACTIONS(2201), + [anon_sym_LPAREN] = ACTIONS(2201), + [anon_sym_PIPE] = ACTIONS(2203), + [anon_sym_fn] = ACTIONS(2203), + [anon_sym_PLUS] = ACTIONS(2203), + [anon_sym_DASH] = ACTIONS(2203), + [anon_sym_STAR] = ACTIONS(2201), + [anon_sym_SLASH] = ACTIONS(2203), + [anon_sym_PERCENT] = ACTIONS(2201), + [anon_sym_LT] = ACTIONS(2203), + [anon_sym_GT] = ACTIONS(2203), + [anon_sym_EQ_EQ] = ACTIONS(2201), + [anon_sym_BANG_EQ] = ACTIONS(2201), + [anon_sym_LT_EQ] = ACTIONS(2201), + [anon_sym_GT_EQ] = ACTIONS(2201), + [anon_sym_LBRACK] = ACTIONS(2201), + [anon_sym_RBRACK] = ACTIONS(2201), + [anon_sym_struct] = ACTIONS(2203), + [anon_sym_mut] = ACTIONS(2203), + [anon_sym_COLON] = ACTIONS(2201), + [anon_sym_PLUS_PLUS] = ACTIONS(2201), + [anon_sym_DASH_DASH] = ACTIONS(2201), + [anon_sym_QMARK] = ACTIONS(2203), + [anon_sym_BANG] = ACTIONS(2203), + [anon_sym_go] = ACTIONS(2203), + [anon_sym_spawn] = ACTIONS(2203), + [anon_sym_json_DOTdecode] = ACTIONS(2201), + [anon_sym_LBRACK2] = ACTIONS(2203), + [anon_sym_TILDE] = ACTIONS(2201), + [anon_sym_CARET] = ACTIONS(2201), + [anon_sym_AMP] = ACTIONS(2203), + [anon_sym_LT_DASH] = ACTIONS(2201), + [anon_sym_LT_LT] = ACTIONS(2201), + [anon_sym_GT_GT] = ACTIONS(2203), + [anon_sym_GT_GT_GT] = ACTIONS(2201), + [anon_sym_AMP_CARET] = ACTIONS(2201), + [anon_sym_AMP_AMP] = ACTIONS(2201), + [anon_sym_PIPE_PIPE] = ACTIONS(2201), + [anon_sym_or] = ACTIONS(2203), + [sym_none] = ACTIONS(2203), + [sym_true] = ACTIONS(2203), + [sym_false] = ACTIONS(2203), + [sym_nil] = ACTIONS(2203), + [anon_sym_QMARK_DOT] = ACTIONS(2201), + [anon_sym_POUND_LBRACK] = ACTIONS(2201), + [anon_sym_if] = ACTIONS(2203), + [anon_sym_DOLLARif] = ACTIONS(2203), + [anon_sym_is] = ACTIONS(2203), + [anon_sym_BANGis] = ACTIONS(2201), + [anon_sym_in] = ACTIONS(2203), + [anon_sym_BANGin] = ACTIONS(2201), + [anon_sym_match] = ACTIONS(2203), + [anon_sym_select] = ACTIONS(2203), + [anon_sym_lock] = ACTIONS(2203), + [anon_sym_rlock] = ACTIONS(2203), + [anon_sym_unsafe] = ACTIONS(2203), + [anon_sym_sql] = ACTIONS(2203), + [sym_int_literal] = ACTIONS(2203), + [sym_float_literal] = ACTIONS(2201), + [sym_rune_literal] = ACTIONS(2201), + [sym_pseudo_compile_time_identifier] = ACTIONS(2203), + [anon_sym_shared] = ACTIONS(2203), + [anon_sym_map_LBRACK] = ACTIONS(2201), + [anon_sym_chan] = ACTIONS(2203), + [anon_sym_thread] = ACTIONS(2203), + [anon_sym_atomic] = ACTIONS(2203), + [sym___double_quote] = ACTIONS(2201), + [sym___single_quote] = ACTIONS(2201), + [sym___c_double_quote] = ACTIONS(2201), + [sym___c_single_quote] = ACTIONS(2201), + [sym___r_double_quote] = ACTIONS(2201), + [sym___r_single_quote] = ACTIONS(2201), + }, + [1329] = { + [sym_line_comment] = STATE(1329), + [sym_block_comment] = STATE(1329), + [sym_identifier] = ACTIONS(2700), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(2700), + [anon_sym_as] = ACTIONS(2700), + [anon_sym_LBRACE] = ACTIONS(2698), + [anon_sym_COMMA] = ACTIONS(2698), + [anon_sym_RBRACE] = ACTIONS(2698), + [anon_sym_LPAREN] = ACTIONS(2698), + [anon_sym_PIPE] = ACTIONS(2700), + [anon_sym_fn] = ACTIONS(2700), + [anon_sym_PLUS] = ACTIONS(2700), + [anon_sym_DASH] = ACTIONS(2700), + [anon_sym_STAR] = ACTIONS(2698), + [anon_sym_SLASH] = ACTIONS(2700), + [anon_sym_PERCENT] = ACTIONS(2698), + [anon_sym_LT] = ACTIONS(2700), + [anon_sym_GT] = ACTIONS(2700), + [anon_sym_EQ_EQ] = ACTIONS(2698), + [anon_sym_BANG_EQ] = ACTIONS(2698), + [anon_sym_LT_EQ] = ACTIONS(2698), + [anon_sym_GT_EQ] = ACTIONS(2698), + [anon_sym_LBRACK] = ACTIONS(2698), + [anon_sym_RBRACK] = ACTIONS(2698), + [anon_sym_struct] = ACTIONS(2700), + [anon_sym_mut] = ACTIONS(2700), + [anon_sym_COLON] = ACTIONS(2698), + [anon_sym_PLUS_PLUS] = ACTIONS(2698), + [anon_sym_DASH_DASH] = ACTIONS(2698), + [anon_sym_QMARK] = ACTIONS(2700), + [anon_sym_BANG] = ACTIONS(2700), + [anon_sym_go] = ACTIONS(2700), + [anon_sym_spawn] = ACTIONS(2700), + [anon_sym_json_DOTdecode] = ACTIONS(2698), + [anon_sym_LBRACK2] = ACTIONS(2700), + [anon_sym_TILDE] = ACTIONS(2698), + [anon_sym_CARET] = ACTIONS(2698), + [anon_sym_AMP] = ACTIONS(2700), + [anon_sym_LT_DASH] = ACTIONS(2698), + [anon_sym_LT_LT] = ACTIONS(2698), + [anon_sym_GT_GT] = ACTIONS(2700), + [anon_sym_GT_GT_GT] = ACTIONS(2698), + [anon_sym_AMP_CARET] = ACTIONS(2698), + [anon_sym_AMP_AMP] = ACTIONS(2698), + [anon_sym_PIPE_PIPE] = ACTIONS(2698), + [anon_sym_or] = ACTIONS(2700), + [sym_none] = ACTIONS(2700), + [sym_true] = ACTIONS(2700), + [sym_false] = ACTIONS(2700), + [sym_nil] = ACTIONS(2700), + [anon_sym_QMARK_DOT] = ACTIONS(2698), + [anon_sym_POUND_LBRACK] = ACTIONS(2698), + [anon_sym_if] = ACTIONS(2700), + [anon_sym_DOLLARif] = ACTIONS(2700), + [anon_sym_is] = ACTIONS(2700), + [anon_sym_BANGis] = ACTIONS(2698), + [anon_sym_in] = ACTIONS(2700), + [anon_sym_BANGin] = ACTIONS(2698), + [anon_sym_match] = ACTIONS(2700), + [anon_sym_select] = ACTIONS(2700), + [anon_sym_lock] = ACTIONS(2700), + [anon_sym_rlock] = ACTIONS(2700), + [anon_sym_unsafe] = ACTIONS(2700), + [anon_sym_sql] = ACTIONS(2700), + [sym_int_literal] = ACTIONS(2700), + [sym_float_literal] = ACTIONS(2698), + [sym_rune_literal] = ACTIONS(2698), + [sym_pseudo_compile_time_identifier] = ACTIONS(2700), + [anon_sym_shared] = ACTIONS(2700), + [anon_sym_map_LBRACK] = ACTIONS(2698), + [anon_sym_chan] = ACTIONS(2700), + [anon_sym_thread] = ACTIONS(2700), + [anon_sym_atomic] = ACTIONS(2700), + [sym___double_quote] = ACTIONS(2698), + [sym___single_quote] = ACTIONS(2698), + [sym___c_double_quote] = ACTIONS(2698), + [sym___c_single_quote] = ACTIONS(2698), + [sym___r_double_quote] = ACTIONS(2698), + [sym___r_single_quote] = ACTIONS(2698), + }, + [1330] = { + [sym_line_comment] = STATE(1330), + [sym_block_comment] = STATE(1330), + [sym_identifier] = ACTIONS(2217), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(2219), + [anon_sym_as] = ACTIONS(2219), + [anon_sym_LBRACE] = ACTIONS(2215), + [anon_sym_COMMA] = ACTIONS(2215), + [anon_sym_RBRACE] = ACTIONS(2215), + [anon_sym_LPAREN] = ACTIONS(2222), + [anon_sym_PIPE] = ACTIONS(2219), + [anon_sym_fn] = ACTIONS(2217), + [anon_sym_PLUS] = ACTIONS(2219), + [anon_sym_DASH] = ACTIONS(2219), + [anon_sym_STAR] = ACTIONS(2222), + [anon_sym_SLASH] = ACTIONS(2219), + [anon_sym_PERCENT] = ACTIONS(2222), + [anon_sym_LT] = ACTIONS(2219), + [anon_sym_GT] = ACTIONS(2219), + [anon_sym_EQ_EQ] = ACTIONS(2222), + [anon_sym_BANG_EQ] = ACTIONS(2222), + [anon_sym_LT_EQ] = ACTIONS(2222), + [anon_sym_GT_EQ] = ACTIONS(2222), + [anon_sym_LBRACK] = ACTIONS(2222), + [anon_sym_RBRACK] = ACTIONS(2215), + [anon_sym_struct] = ACTIONS(2217), + [anon_sym_mut] = ACTIONS(2217), + [anon_sym_COLON] = ACTIONS(2215), + [anon_sym_PLUS_PLUS] = ACTIONS(2222), + [anon_sym_DASH_DASH] = ACTIONS(2222), + [anon_sym_QMARK] = ACTIONS(2219), + [anon_sym_BANG] = ACTIONS(2219), + [anon_sym_go] = ACTIONS(2217), + [anon_sym_spawn] = ACTIONS(2217), + [anon_sym_json_DOTdecode] = ACTIONS(2215), + [anon_sym_LBRACK2] = ACTIONS(2219), + [anon_sym_TILDE] = ACTIONS(2215), + [anon_sym_CARET] = ACTIONS(2222), + [anon_sym_AMP] = ACTIONS(2219), + [anon_sym_LT_DASH] = ACTIONS(2215), + [anon_sym_LT_LT] = ACTIONS(2222), + [anon_sym_GT_GT] = ACTIONS(2219), + [anon_sym_GT_GT_GT] = ACTIONS(2222), + [anon_sym_AMP_CARET] = ACTIONS(2222), + [anon_sym_AMP_AMP] = ACTIONS(2222), + [anon_sym_PIPE_PIPE] = ACTIONS(2222), + [anon_sym_or] = ACTIONS(2219), + [sym_none] = ACTIONS(2217), + [sym_true] = ACTIONS(2217), + [sym_false] = ACTIONS(2217), + [sym_nil] = ACTIONS(2217), + [anon_sym_QMARK_DOT] = ACTIONS(2222), + [anon_sym_POUND_LBRACK] = ACTIONS(2222), + [anon_sym_if] = ACTIONS(2217), + [anon_sym_DOLLARif] = ACTIONS(2217), + [anon_sym_is] = ACTIONS(2219), + [anon_sym_BANGis] = ACTIONS(2222), + [anon_sym_in] = ACTIONS(2219), + [anon_sym_BANGin] = ACTIONS(2222), + [anon_sym_match] = ACTIONS(2217), + [anon_sym_select] = ACTIONS(2217), + [anon_sym_lock] = ACTIONS(2217), + [anon_sym_rlock] = ACTIONS(2217), + [anon_sym_unsafe] = ACTIONS(2217), + [anon_sym_sql] = ACTIONS(2217), + [sym_int_literal] = ACTIONS(2217), + [sym_float_literal] = ACTIONS(2215), + [sym_rune_literal] = ACTIONS(2215), + [sym_pseudo_compile_time_identifier] = ACTIONS(2217), + [anon_sym_shared] = ACTIONS(2217), + [anon_sym_map_LBRACK] = ACTIONS(2215), + [anon_sym_chan] = ACTIONS(2217), + [anon_sym_thread] = ACTIONS(2217), + [anon_sym_atomic] = ACTIONS(2217), + [sym___double_quote] = ACTIONS(2215), + [sym___single_quote] = ACTIONS(2215), + [sym___c_double_quote] = ACTIONS(2215), + [sym___c_single_quote] = ACTIONS(2215), + [sym___r_double_quote] = ACTIONS(2215), + [sym___r_single_quote] = ACTIONS(2215), + }, + [1331] = { + [sym_line_comment] = STATE(1331), + [sym_block_comment] = STATE(1331), + [sym_identifier] = ACTIONS(2906), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(2906), + [anon_sym_as] = ACTIONS(2906), + [anon_sym_LBRACE] = ACTIONS(2904), + [anon_sym_COMMA] = ACTIONS(2904), + [anon_sym_RBRACE] = ACTIONS(2904), + [anon_sym_LPAREN] = ACTIONS(2904), + [anon_sym_PIPE] = ACTIONS(2906), + [anon_sym_fn] = ACTIONS(2906), + [anon_sym_PLUS] = ACTIONS(2906), + [anon_sym_DASH] = ACTIONS(2906), + [anon_sym_STAR] = ACTIONS(2904), + [anon_sym_SLASH] = ACTIONS(2906), + [anon_sym_PERCENT] = ACTIONS(2904), + [anon_sym_LT] = ACTIONS(2906), + [anon_sym_GT] = ACTIONS(2906), + [anon_sym_EQ_EQ] = ACTIONS(2904), + [anon_sym_BANG_EQ] = ACTIONS(2904), + [anon_sym_LT_EQ] = ACTIONS(2904), + [anon_sym_GT_EQ] = ACTIONS(2904), + [anon_sym_LBRACK] = ACTIONS(2904), + [anon_sym_RBRACK] = ACTIONS(2904), + [anon_sym_struct] = ACTIONS(2906), + [anon_sym_mut] = ACTIONS(2906), + [anon_sym_COLON] = ACTIONS(2904), + [anon_sym_PLUS_PLUS] = ACTIONS(2904), + [anon_sym_DASH_DASH] = ACTIONS(2904), + [anon_sym_QMARK] = ACTIONS(2906), + [anon_sym_BANG] = ACTIONS(2906), + [anon_sym_go] = ACTIONS(2906), + [anon_sym_spawn] = ACTIONS(2906), + [anon_sym_json_DOTdecode] = ACTIONS(2904), + [anon_sym_LBRACK2] = ACTIONS(2906), + [anon_sym_TILDE] = ACTIONS(2904), + [anon_sym_CARET] = ACTIONS(2904), + [anon_sym_AMP] = ACTIONS(2906), + [anon_sym_LT_DASH] = ACTIONS(2904), + [anon_sym_LT_LT] = ACTIONS(2904), + [anon_sym_GT_GT] = ACTIONS(2906), + [anon_sym_GT_GT_GT] = ACTIONS(2904), + [anon_sym_AMP_CARET] = ACTIONS(2904), + [anon_sym_AMP_AMP] = ACTIONS(2904), + [anon_sym_PIPE_PIPE] = ACTIONS(2904), + [anon_sym_or] = ACTIONS(2906), + [sym_none] = ACTIONS(2906), + [sym_true] = ACTIONS(2906), + [sym_false] = ACTIONS(2906), + [sym_nil] = ACTIONS(2906), + [anon_sym_QMARK_DOT] = ACTIONS(2904), + [anon_sym_POUND_LBRACK] = ACTIONS(2904), + [anon_sym_if] = ACTIONS(2906), + [anon_sym_DOLLARif] = ACTIONS(2906), + [anon_sym_is] = ACTIONS(2906), + [anon_sym_BANGis] = ACTIONS(2904), + [anon_sym_in] = ACTIONS(2906), + [anon_sym_BANGin] = ACTIONS(2904), + [anon_sym_match] = ACTIONS(2906), + [anon_sym_select] = ACTIONS(2906), + [anon_sym_lock] = ACTIONS(2906), + [anon_sym_rlock] = ACTIONS(2906), + [anon_sym_unsafe] = ACTIONS(2906), + [anon_sym_sql] = ACTIONS(2906), + [sym_int_literal] = ACTIONS(2906), + [sym_float_literal] = ACTIONS(2904), + [sym_rune_literal] = ACTIONS(2904), + [sym_pseudo_compile_time_identifier] = ACTIONS(2906), + [anon_sym_shared] = ACTIONS(2906), + [anon_sym_map_LBRACK] = ACTIONS(2904), + [anon_sym_chan] = ACTIONS(2906), + [anon_sym_thread] = ACTIONS(2906), + [anon_sym_atomic] = ACTIONS(2906), + [sym___double_quote] = ACTIONS(2904), + [sym___single_quote] = ACTIONS(2904), + [sym___c_double_quote] = ACTIONS(2904), + [sym___c_single_quote] = ACTIONS(2904), + [sym___r_double_quote] = ACTIONS(2904), + [sym___r_single_quote] = ACTIONS(2904), + }, + [1332] = { + [sym_line_comment] = STATE(1332), + [sym_block_comment] = STATE(1332), + [sym_identifier] = ACTIONS(2812), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(2812), + [anon_sym_as] = ACTIONS(2812), + [anon_sym_LBRACE] = ACTIONS(2810), + [anon_sym_COMMA] = ACTIONS(2810), + [anon_sym_RBRACE] = ACTIONS(2810), + [anon_sym_LPAREN] = ACTIONS(2810), + [anon_sym_PIPE] = ACTIONS(2812), + [anon_sym_fn] = ACTIONS(2812), + [anon_sym_PLUS] = ACTIONS(2812), + [anon_sym_DASH] = ACTIONS(2812), + [anon_sym_STAR] = ACTIONS(2810), + [anon_sym_SLASH] = ACTIONS(2812), + [anon_sym_PERCENT] = ACTIONS(2810), + [anon_sym_LT] = ACTIONS(2812), + [anon_sym_GT] = ACTIONS(2812), + [anon_sym_EQ_EQ] = ACTIONS(2810), + [anon_sym_BANG_EQ] = ACTIONS(2810), + [anon_sym_LT_EQ] = ACTIONS(2810), + [anon_sym_GT_EQ] = ACTIONS(2810), + [anon_sym_LBRACK] = ACTIONS(2810), + [anon_sym_RBRACK] = ACTIONS(2810), + [anon_sym_struct] = ACTIONS(2812), + [anon_sym_mut] = ACTIONS(2812), + [anon_sym_COLON] = ACTIONS(2810), + [anon_sym_PLUS_PLUS] = ACTIONS(2810), + [anon_sym_DASH_DASH] = ACTIONS(2810), + [anon_sym_QMARK] = ACTIONS(2812), + [anon_sym_BANG] = ACTIONS(2812), + [anon_sym_go] = ACTIONS(2812), + [anon_sym_spawn] = ACTIONS(2812), + [anon_sym_json_DOTdecode] = ACTIONS(2810), + [anon_sym_LBRACK2] = ACTIONS(2812), + [anon_sym_TILDE] = ACTIONS(2810), + [anon_sym_CARET] = ACTIONS(2810), + [anon_sym_AMP] = ACTIONS(2812), + [anon_sym_LT_DASH] = ACTIONS(2810), + [anon_sym_LT_LT] = ACTIONS(2810), + [anon_sym_GT_GT] = ACTIONS(2812), + [anon_sym_GT_GT_GT] = ACTIONS(2810), + [anon_sym_AMP_CARET] = ACTIONS(2810), + [anon_sym_AMP_AMP] = ACTIONS(2810), + [anon_sym_PIPE_PIPE] = ACTIONS(2810), + [anon_sym_or] = ACTIONS(2812), + [sym_none] = ACTIONS(2812), + [sym_true] = ACTIONS(2812), + [sym_false] = ACTIONS(2812), + [sym_nil] = ACTIONS(2812), + [anon_sym_QMARK_DOT] = ACTIONS(2810), + [anon_sym_POUND_LBRACK] = ACTIONS(2810), + [anon_sym_if] = ACTIONS(2812), + [anon_sym_DOLLARif] = ACTIONS(2812), + [anon_sym_is] = ACTIONS(2812), + [anon_sym_BANGis] = ACTIONS(2810), + [anon_sym_in] = ACTIONS(2812), + [anon_sym_BANGin] = ACTIONS(2810), + [anon_sym_match] = ACTIONS(2812), + [anon_sym_select] = ACTIONS(2812), + [anon_sym_lock] = ACTIONS(2812), + [anon_sym_rlock] = ACTIONS(2812), + [anon_sym_unsafe] = ACTIONS(2812), + [anon_sym_sql] = ACTIONS(2812), + [sym_int_literal] = ACTIONS(2812), + [sym_float_literal] = ACTIONS(2810), + [sym_rune_literal] = ACTIONS(2810), + [sym_pseudo_compile_time_identifier] = ACTIONS(2812), + [anon_sym_shared] = ACTIONS(2812), + [anon_sym_map_LBRACK] = ACTIONS(2810), + [anon_sym_chan] = ACTIONS(2812), + [anon_sym_thread] = ACTIONS(2812), + [anon_sym_atomic] = ACTIONS(2812), + [sym___double_quote] = ACTIONS(2810), + [sym___single_quote] = ACTIONS(2810), + [sym___c_double_quote] = ACTIONS(2810), + [sym___c_single_quote] = ACTIONS(2810), + [sym___r_double_quote] = ACTIONS(2810), + [sym___r_single_quote] = ACTIONS(2810), + }, + [1333] = { + [sym_line_comment] = STATE(1333), + [sym_block_comment] = STATE(1333), + [sym_identifier] = ACTIONS(2211), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(2211), + [anon_sym_as] = ACTIONS(2211), + [anon_sym_LBRACE] = ACTIONS(2209), + [anon_sym_COMMA] = ACTIONS(2209), + [anon_sym_RBRACE] = ACTIONS(2209), + [anon_sym_LPAREN] = ACTIONS(2209), + [anon_sym_PIPE] = ACTIONS(2211), + [anon_sym_fn] = ACTIONS(2211), + [anon_sym_PLUS] = ACTIONS(2211), + [anon_sym_DASH] = ACTIONS(2211), + [anon_sym_STAR] = ACTIONS(2209), + [anon_sym_SLASH] = ACTIONS(2211), + [anon_sym_PERCENT] = ACTIONS(2209), + [anon_sym_LT] = ACTIONS(2211), + [anon_sym_GT] = ACTIONS(2211), + [anon_sym_EQ_EQ] = ACTIONS(2209), + [anon_sym_BANG_EQ] = ACTIONS(2209), + [anon_sym_LT_EQ] = ACTIONS(2209), + [anon_sym_GT_EQ] = ACTIONS(2209), + [anon_sym_LBRACK] = ACTIONS(2209), + [anon_sym_RBRACK] = ACTIONS(2209), + [anon_sym_struct] = ACTIONS(2211), + [anon_sym_mut] = ACTIONS(2211), + [anon_sym_COLON] = ACTIONS(2209), + [anon_sym_PLUS_PLUS] = ACTIONS(2209), + [anon_sym_DASH_DASH] = ACTIONS(2209), + [anon_sym_QMARK] = ACTIONS(2211), + [anon_sym_BANG] = ACTIONS(2211), + [anon_sym_go] = ACTIONS(2211), + [anon_sym_spawn] = ACTIONS(2211), + [anon_sym_json_DOTdecode] = ACTIONS(2209), + [anon_sym_LBRACK2] = ACTIONS(2211), + [anon_sym_TILDE] = ACTIONS(2209), + [anon_sym_CARET] = ACTIONS(2209), + [anon_sym_AMP] = ACTIONS(2211), + [anon_sym_LT_DASH] = ACTIONS(2209), + [anon_sym_LT_LT] = ACTIONS(2209), + [anon_sym_GT_GT] = ACTIONS(2211), + [anon_sym_GT_GT_GT] = ACTIONS(2209), + [anon_sym_AMP_CARET] = ACTIONS(2209), + [anon_sym_AMP_AMP] = ACTIONS(2209), + [anon_sym_PIPE_PIPE] = ACTIONS(2209), + [anon_sym_or] = ACTIONS(2211), + [sym_none] = ACTIONS(2211), + [sym_true] = ACTIONS(2211), + [sym_false] = ACTIONS(2211), + [sym_nil] = ACTIONS(2211), + [anon_sym_QMARK_DOT] = ACTIONS(2209), + [anon_sym_POUND_LBRACK] = ACTIONS(2209), + [anon_sym_if] = ACTIONS(2211), + [anon_sym_DOLLARif] = ACTIONS(2211), + [anon_sym_is] = ACTIONS(2211), + [anon_sym_BANGis] = ACTIONS(2209), + [anon_sym_in] = ACTIONS(2211), + [anon_sym_BANGin] = ACTIONS(2209), + [anon_sym_match] = ACTIONS(2211), + [anon_sym_select] = ACTIONS(2211), + [anon_sym_lock] = ACTIONS(2211), + [anon_sym_rlock] = ACTIONS(2211), + [anon_sym_unsafe] = ACTIONS(2211), + [anon_sym_sql] = ACTIONS(2211), + [sym_int_literal] = ACTIONS(2211), + [sym_float_literal] = ACTIONS(2209), + [sym_rune_literal] = ACTIONS(2209), + [sym_pseudo_compile_time_identifier] = ACTIONS(2211), + [anon_sym_shared] = ACTIONS(2211), + [anon_sym_map_LBRACK] = ACTIONS(2209), + [anon_sym_chan] = ACTIONS(2211), + [anon_sym_thread] = ACTIONS(2211), + [anon_sym_atomic] = ACTIONS(2211), + [sym___double_quote] = ACTIONS(2209), + [sym___single_quote] = ACTIONS(2209), + [sym___c_double_quote] = ACTIONS(2209), + [sym___c_single_quote] = ACTIONS(2209), + [sym___r_double_quote] = ACTIONS(2209), + [sym___r_single_quote] = ACTIONS(2209), + }, + [1334] = { + [sym_line_comment] = STATE(1334), + [sym_block_comment] = STATE(1334), + [sym_identifier] = ACTIONS(2854), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(2854), + [anon_sym_as] = ACTIONS(2854), + [anon_sym_LBRACE] = ACTIONS(2852), + [anon_sym_COMMA] = ACTIONS(2852), + [anon_sym_RBRACE] = ACTIONS(2852), + [anon_sym_LPAREN] = ACTIONS(2852), + [anon_sym_PIPE] = ACTIONS(2854), + [anon_sym_fn] = ACTIONS(2854), + [anon_sym_PLUS] = ACTIONS(2854), + [anon_sym_DASH] = ACTIONS(2854), + [anon_sym_STAR] = ACTIONS(2852), + [anon_sym_SLASH] = ACTIONS(2854), + [anon_sym_PERCENT] = ACTIONS(2852), + [anon_sym_LT] = ACTIONS(2854), + [anon_sym_GT] = ACTIONS(2854), + [anon_sym_EQ_EQ] = ACTIONS(2852), + [anon_sym_BANG_EQ] = ACTIONS(2852), + [anon_sym_LT_EQ] = ACTIONS(2852), + [anon_sym_GT_EQ] = ACTIONS(2852), + [anon_sym_LBRACK] = ACTIONS(2852), + [anon_sym_RBRACK] = ACTIONS(2852), + [anon_sym_struct] = ACTIONS(2854), + [anon_sym_mut] = ACTIONS(2854), + [anon_sym_COLON] = ACTIONS(2852), + [anon_sym_PLUS_PLUS] = ACTIONS(2852), + [anon_sym_DASH_DASH] = ACTIONS(2852), + [anon_sym_QMARK] = ACTIONS(2854), + [anon_sym_BANG] = ACTIONS(2854), + [anon_sym_go] = ACTIONS(2854), + [anon_sym_spawn] = ACTIONS(2854), + [anon_sym_json_DOTdecode] = ACTIONS(2852), + [anon_sym_LBRACK2] = ACTIONS(2854), + [anon_sym_TILDE] = ACTIONS(2852), + [anon_sym_CARET] = ACTIONS(2852), + [anon_sym_AMP] = ACTIONS(2854), + [anon_sym_LT_DASH] = ACTIONS(2852), + [anon_sym_LT_LT] = ACTIONS(2852), + [anon_sym_GT_GT] = ACTIONS(2854), + [anon_sym_GT_GT_GT] = ACTIONS(2852), + [anon_sym_AMP_CARET] = ACTIONS(2852), + [anon_sym_AMP_AMP] = ACTIONS(2852), + [anon_sym_PIPE_PIPE] = ACTIONS(2852), + [anon_sym_or] = ACTIONS(2854), + [sym_none] = ACTIONS(2854), + [sym_true] = ACTIONS(2854), + [sym_false] = ACTIONS(2854), + [sym_nil] = ACTIONS(2854), + [anon_sym_QMARK_DOT] = ACTIONS(2852), + [anon_sym_POUND_LBRACK] = ACTIONS(2852), + [anon_sym_if] = ACTIONS(2854), + [anon_sym_DOLLARif] = ACTIONS(2854), + [anon_sym_is] = ACTIONS(2854), + [anon_sym_BANGis] = ACTIONS(2852), + [anon_sym_in] = ACTIONS(2854), + [anon_sym_BANGin] = ACTIONS(2852), + [anon_sym_match] = ACTIONS(2854), + [anon_sym_select] = ACTIONS(2854), + [anon_sym_lock] = ACTIONS(2854), + [anon_sym_rlock] = ACTIONS(2854), + [anon_sym_unsafe] = ACTIONS(2854), + [anon_sym_sql] = ACTIONS(2854), + [sym_int_literal] = ACTIONS(2854), + [sym_float_literal] = ACTIONS(2852), + [sym_rune_literal] = ACTIONS(2852), + [sym_pseudo_compile_time_identifier] = ACTIONS(2854), + [anon_sym_shared] = ACTIONS(2854), + [anon_sym_map_LBRACK] = ACTIONS(2852), + [anon_sym_chan] = ACTIONS(2854), + [anon_sym_thread] = ACTIONS(2854), + [anon_sym_atomic] = ACTIONS(2854), + [sym___double_quote] = ACTIONS(2852), + [sym___single_quote] = ACTIONS(2852), + [sym___c_double_quote] = ACTIONS(2852), + [sym___c_single_quote] = ACTIONS(2852), + [sym___r_double_quote] = ACTIONS(2852), + [sym___r_single_quote] = ACTIONS(2852), + }, + [1335] = { + [sym_line_comment] = STATE(1335), + [sym_block_comment] = STATE(1335), + [sym_identifier] = ACTIONS(2894), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(2894), + [anon_sym_as] = ACTIONS(2894), + [anon_sym_LBRACE] = ACTIONS(2892), + [anon_sym_COMMA] = ACTIONS(2892), + [anon_sym_RBRACE] = ACTIONS(2892), + [anon_sym_LPAREN] = ACTIONS(2892), + [anon_sym_PIPE] = ACTIONS(2894), + [anon_sym_fn] = ACTIONS(2894), + [anon_sym_PLUS] = ACTIONS(2894), + [anon_sym_DASH] = ACTIONS(2894), + [anon_sym_STAR] = ACTIONS(2892), + [anon_sym_SLASH] = ACTIONS(2894), + [anon_sym_PERCENT] = ACTIONS(2892), + [anon_sym_LT] = ACTIONS(2894), + [anon_sym_GT] = ACTIONS(2894), + [anon_sym_EQ_EQ] = ACTIONS(2892), + [anon_sym_BANG_EQ] = ACTIONS(2892), + [anon_sym_LT_EQ] = ACTIONS(2892), + [anon_sym_GT_EQ] = ACTIONS(2892), + [anon_sym_LBRACK] = ACTIONS(2892), + [anon_sym_RBRACK] = ACTIONS(2892), + [anon_sym_struct] = ACTIONS(2894), + [anon_sym_mut] = ACTIONS(2894), + [anon_sym_COLON] = ACTIONS(2892), + [anon_sym_PLUS_PLUS] = ACTIONS(2892), + [anon_sym_DASH_DASH] = ACTIONS(2892), + [anon_sym_QMARK] = ACTIONS(2894), + [anon_sym_BANG] = ACTIONS(2894), + [anon_sym_go] = ACTIONS(2894), + [anon_sym_spawn] = ACTIONS(2894), + [anon_sym_json_DOTdecode] = ACTIONS(2892), + [anon_sym_LBRACK2] = ACTIONS(2894), + [anon_sym_TILDE] = ACTIONS(2892), + [anon_sym_CARET] = ACTIONS(2892), + [anon_sym_AMP] = ACTIONS(2894), + [anon_sym_LT_DASH] = ACTIONS(2892), + [anon_sym_LT_LT] = ACTIONS(2892), + [anon_sym_GT_GT] = ACTIONS(2894), + [anon_sym_GT_GT_GT] = ACTIONS(2892), + [anon_sym_AMP_CARET] = ACTIONS(2892), + [anon_sym_AMP_AMP] = ACTIONS(2892), + [anon_sym_PIPE_PIPE] = ACTIONS(2892), + [anon_sym_or] = ACTIONS(2894), + [sym_none] = ACTIONS(2894), + [sym_true] = ACTIONS(2894), + [sym_false] = ACTIONS(2894), + [sym_nil] = ACTIONS(2894), + [anon_sym_QMARK_DOT] = ACTIONS(2892), + [anon_sym_POUND_LBRACK] = ACTIONS(2892), + [anon_sym_if] = ACTIONS(2894), + [anon_sym_DOLLARif] = ACTIONS(2894), + [anon_sym_is] = ACTIONS(2894), + [anon_sym_BANGis] = ACTIONS(2892), + [anon_sym_in] = ACTIONS(2894), + [anon_sym_BANGin] = ACTIONS(2892), + [anon_sym_match] = ACTIONS(2894), + [anon_sym_select] = ACTIONS(2894), + [anon_sym_lock] = ACTIONS(2894), + [anon_sym_rlock] = ACTIONS(2894), + [anon_sym_unsafe] = ACTIONS(2894), + [anon_sym_sql] = ACTIONS(2894), + [sym_int_literal] = ACTIONS(2894), + [sym_float_literal] = ACTIONS(2892), + [sym_rune_literal] = ACTIONS(2892), + [sym_pseudo_compile_time_identifier] = ACTIONS(2894), + [anon_sym_shared] = ACTIONS(2894), + [anon_sym_map_LBRACK] = ACTIONS(2892), + [anon_sym_chan] = ACTIONS(2894), + [anon_sym_thread] = ACTIONS(2894), + [anon_sym_atomic] = ACTIONS(2894), + [sym___double_quote] = ACTIONS(2892), + [sym___single_quote] = ACTIONS(2892), + [sym___c_double_quote] = ACTIONS(2892), + [sym___c_single_quote] = ACTIONS(2892), + [sym___r_double_quote] = ACTIONS(2892), + [sym___r_single_quote] = ACTIONS(2892), + }, [1336] = { [sym_line_comment] = STATE(1336), [sym_block_comment] = STATE(1336), - [sym_identifier] = ACTIONS(1851), + [sym_identifier] = ACTIONS(2269), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1851), - [anon_sym_as] = ACTIONS(1851), - [anon_sym_LBRACE] = ACTIONS(1849), - [anon_sym_COMMA] = ACTIONS(1849), - [anon_sym_RBRACE] = ACTIONS(1849), - [anon_sym_LPAREN] = ACTIONS(1849), - [anon_sym_PIPE] = ACTIONS(1851), - [anon_sym_fn] = ACTIONS(1851), - [anon_sym_PLUS] = ACTIONS(1851), - [anon_sym_DASH] = ACTIONS(1851), - [anon_sym_STAR] = ACTIONS(1849), - [anon_sym_SLASH] = ACTIONS(1851), - [anon_sym_PERCENT] = ACTIONS(1849), - [anon_sym_LT] = ACTIONS(1851), - [anon_sym_GT] = ACTIONS(1851), - [anon_sym_EQ_EQ] = ACTIONS(1849), - [anon_sym_BANG_EQ] = ACTIONS(1849), - [anon_sym_LT_EQ] = ACTIONS(1849), - [anon_sym_GT_EQ] = ACTIONS(1849), - [anon_sym_LBRACK] = ACTIONS(1849), - [anon_sym_RBRACK] = ACTIONS(1849), - [anon_sym_struct] = ACTIONS(1851), - [anon_sym_mut] = ACTIONS(1851), - [anon_sym_COLON] = ACTIONS(1849), - [anon_sym_PLUS_PLUS] = ACTIONS(1849), - [anon_sym_DASH_DASH] = ACTIONS(1849), - [anon_sym_QMARK] = ACTIONS(1851), - [anon_sym_BANG] = ACTIONS(1851), - [anon_sym_go] = ACTIONS(1851), - [anon_sym_spawn] = ACTIONS(1851), - [anon_sym_json_DOTdecode] = ACTIONS(1849), - [anon_sym_LBRACK2] = ACTIONS(1851), - [anon_sym_TILDE] = ACTIONS(1849), - [anon_sym_CARET] = ACTIONS(1849), - [anon_sym_AMP] = ACTIONS(1851), - [anon_sym_LT_DASH] = ACTIONS(1849), - [anon_sym_LT_LT] = ACTIONS(1849), - [anon_sym_GT_GT] = ACTIONS(1851), - [anon_sym_GT_GT_GT] = ACTIONS(1849), - [anon_sym_AMP_CARET] = ACTIONS(1849), - [anon_sym_AMP_AMP] = ACTIONS(1849), - [anon_sym_PIPE_PIPE] = ACTIONS(1849), - [anon_sym_or] = ACTIONS(1851), - [sym_none] = ACTIONS(1851), - [sym_true] = ACTIONS(1851), - [sym_false] = ACTIONS(1851), - [sym_nil] = ACTIONS(1851), - [anon_sym_QMARK_DOT] = ACTIONS(1849), - [anon_sym_POUND_LBRACK] = ACTIONS(1849), - [anon_sym_if] = ACTIONS(1851), - [anon_sym_DOLLARif] = ACTIONS(1851), - [anon_sym_is] = ACTIONS(1851), - [anon_sym_BANGis] = ACTIONS(1849), - [anon_sym_in] = ACTIONS(1851), - [anon_sym_BANGin] = ACTIONS(1849), - [anon_sym_match] = ACTIONS(1851), - [anon_sym_select] = ACTIONS(1851), - [anon_sym_lock] = ACTIONS(1851), - [anon_sym_rlock] = ACTIONS(1851), - [anon_sym_unsafe] = ACTIONS(1851), - [anon_sym_sql] = ACTIONS(1851), - [sym_int_literal] = ACTIONS(1851), - [sym_float_literal] = ACTIONS(1849), - [sym_rune_literal] = ACTIONS(1849), - [sym_pseudo_compile_time_identifier] = ACTIONS(1851), - [anon_sym_shared] = ACTIONS(1851), - [anon_sym_map_LBRACK] = ACTIONS(1849), - [anon_sym_chan] = ACTIONS(1851), - [anon_sym_thread] = ACTIONS(1851), - [anon_sym_atomic] = ACTIONS(1851), - [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), + [anon_sym_DOT] = ACTIONS(2269), + [anon_sym_as] = ACTIONS(2269), + [anon_sym_LBRACE] = ACTIONS(2267), + [anon_sym_COMMA] = ACTIONS(2267), + [anon_sym_RBRACE] = ACTIONS(2267), + [anon_sym_LPAREN] = ACTIONS(2267), + [anon_sym_PIPE] = ACTIONS(2269), + [anon_sym_fn] = ACTIONS(2269), + [anon_sym_PLUS] = ACTIONS(2269), + [anon_sym_DASH] = ACTIONS(2269), + [anon_sym_STAR] = ACTIONS(2267), + [anon_sym_SLASH] = ACTIONS(2269), + [anon_sym_PERCENT] = ACTIONS(2267), + [anon_sym_LT] = ACTIONS(2269), + [anon_sym_GT] = ACTIONS(2269), + [anon_sym_EQ_EQ] = ACTIONS(2267), + [anon_sym_BANG_EQ] = ACTIONS(2267), + [anon_sym_LT_EQ] = ACTIONS(2267), + [anon_sym_GT_EQ] = ACTIONS(2267), + [anon_sym_LBRACK] = ACTIONS(2267), + [anon_sym_RBRACK] = ACTIONS(2267), + [anon_sym_struct] = ACTIONS(2269), + [anon_sym_mut] = ACTIONS(2269), + [anon_sym_COLON] = ACTIONS(2267), + [anon_sym_PLUS_PLUS] = ACTIONS(2267), + [anon_sym_DASH_DASH] = ACTIONS(2267), + [anon_sym_QMARK] = ACTIONS(2269), + [anon_sym_BANG] = ACTIONS(2269), + [anon_sym_go] = ACTIONS(2269), + [anon_sym_spawn] = ACTIONS(2269), + [anon_sym_json_DOTdecode] = ACTIONS(2267), + [anon_sym_LBRACK2] = ACTIONS(2269), + [anon_sym_TILDE] = ACTIONS(2267), + [anon_sym_CARET] = ACTIONS(2267), + [anon_sym_AMP] = ACTIONS(2269), + [anon_sym_LT_DASH] = ACTIONS(2267), + [anon_sym_LT_LT] = ACTIONS(2267), + [anon_sym_GT_GT] = ACTIONS(2269), + [anon_sym_GT_GT_GT] = ACTIONS(2267), + [anon_sym_AMP_CARET] = ACTIONS(2267), + [anon_sym_AMP_AMP] = ACTIONS(2267), + [anon_sym_PIPE_PIPE] = ACTIONS(2267), + [anon_sym_or] = ACTIONS(2269), + [sym_none] = ACTIONS(2269), + [sym_true] = ACTIONS(2269), + [sym_false] = ACTIONS(2269), + [sym_nil] = ACTIONS(2269), + [anon_sym_QMARK_DOT] = ACTIONS(2267), + [anon_sym_POUND_LBRACK] = ACTIONS(2267), + [anon_sym_if] = ACTIONS(2269), + [anon_sym_DOLLARif] = ACTIONS(2269), + [anon_sym_is] = ACTIONS(2269), + [anon_sym_BANGis] = ACTIONS(2267), + [anon_sym_in] = ACTIONS(2269), + [anon_sym_BANGin] = ACTIONS(2267), + [anon_sym_match] = ACTIONS(2269), + [anon_sym_select] = ACTIONS(2269), + [anon_sym_lock] = ACTIONS(2269), + [anon_sym_rlock] = ACTIONS(2269), + [anon_sym_unsafe] = ACTIONS(2269), + [anon_sym_sql] = ACTIONS(2269), + [sym_int_literal] = ACTIONS(2269), + [sym_float_literal] = ACTIONS(2267), + [sym_rune_literal] = ACTIONS(2267), + [sym_pseudo_compile_time_identifier] = ACTIONS(2269), + [anon_sym_shared] = ACTIONS(2269), + [anon_sym_map_LBRACK] = ACTIONS(2267), + [anon_sym_chan] = ACTIONS(2269), + [anon_sym_thread] = ACTIONS(2269), + [anon_sym_atomic] = ACTIONS(2269), + [sym___double_quote] = ACTIONS(2267), + [sym___single_quote] = ACTIONS(2267), + [sym___c_double_quote] = ACTIONS(2267), + [sym___c_single_quote] = ACTIONS(2267), + [sym___r_double_quote] = ACTIONS(2267), + [sym___r_single_quote] = ACTIONS(2267), }, [1337] = { [sym_line_comment] = STATE(1337), [sym_block_comment] = STATE(1337), - [sym_identifier] = ACTIONS(2896), + [sym_identifier] = ACTIONS(2890), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(2896), - [anon_sym_as] = ACTIONS(2896), - [anon_sym_LBRACE] = ACTIONS(2894), - [anon_sym_COMMA] = ACTIONS(2894), - [anon_sym_RBRACE] = ACTIONS(2894), - [anon_sym_LPAREN] = ACTIONS(2894), - [anon_sym_PIPE] = ACTIONS(2896), - [anon_sym_fn] = ACTIONS(2896), - [anon_sym_PLUS] = ACTIONS(2896), - [anon_sym_DASH] = ACTIONS(2896), - [anon_sym_STAR] = ACTIONS(2894), - [anon_sym_SLASH] = ACTIONS(2896), - [anon_sym_PERCENT] = ACTIONS(2894), - [anon_sym_LT] = ACTIONS(2896), - [anon_sym_GT] = ACTIONS(2896), - [anon_sym_EQ_EQ] = ACTIONS(2894), - [anon_sym_BANG_EQ] = ACTIONS(2894), - [anon_sym_LT_EQ] = ACTIONS(2894), - [anon_sym_GT_EQ] = ACTIONS(2894), - [anon_sym_LBRACK] = ACTIONS(2894), - [anon_sym_RBRACK] = ACTIONS(2894), - [anon_sym_struct] = ACTIONS(2896), - [anon_sym_mut] = ACTIONS(2896), - [anon_sym_COLON] = ACTIONS(2894), - [anon_sym_PLUS_PLUS] = ACTIONS(2894), - [anon_sym_DASH_DASH] = ACTIONS(2894), - [anon_sym_QMARK] = ACTIONS(2896), - [anon_sym_BANG] = ACTIONS(2896), - [anon_sym_go] = ACTIONS(2896), - [anon_sym_spawn] = ACTIONS(2896), - [anon_sym_json_DOTdecode] = ACTIONS(2894), - [anon_sym_LBRACK2] = ACTIONS(2896), - [anon_sym_TILDE] = ACTIONS(2894), - [anon_sym_CARET] = ACTIONS(2894), - [anon_sym_AMP] = ACTIONS(2896), - [anon_sym_LT_DASH] = ACTIONS(2894), - [anon_sym_LT_LT] = ACTIONS(2894), - [anon_sym_GT_GT] = ACTIONS(2896), - [anon_sym_GT_GT_GT] = ACTIONS(2894), - [anon_sym_AMP_CARET] = ACTIONS(2894), - [anon_sym_AMP_AMP] = ACTIONS(2894), - [anon_sym_PIPE_PIPE] = ACTIONS(2894), - [anon_sym_or] = ACTIONS(2896), - [sym_none] = ACTIONS(2896), - [sym_true] = ACTIONS(2896), - [sym_false] = ACTIONS(2896), - [sym_nil] = ACTIONS(2896), - [anon_sym_QMARK_DOT] = ACTIONS(2894), - [anon_sym_POUND_LBRACK] = ACTIONS(2894), - [anon_sym_if] = ACTIONS(2896), - [anon_sym_DOLLARif] = ACTIONS(2896), - [anon_sym_is] = ACTIONS(2896), - [anon_sym_BANGis] = ACTIONS(2894), - [anon_sym_in] = ACTIONS(2896), - [anon_sym_BANGin] = ACTIONS(2894), - [anon_sym_match] = ACTIONS(2896), - [anon_sym_select] = ACTIONS(2896), - [anon_sym_lock] = ACTIONS(2896), - [anon_sym_rlock] = ACTIONS(2896), - [anon_sym_unsafe] = ACTIONS(2896), - [anon_sym_sql] = ACTIONS(2896), - [sym_int_literal] = ACTIONS(2896), - [sym_float_literal] = ACTIONS(2894), - [sym_rune_literal] = ACTIONS(2894), - [sym_pseudo_compile_time_identifier] = ACTIONS(2896), - [anon_sym_shared] = ACTIONS(2896), - [anon_sym_map_LBRACK] = ACTIONS(2894), - [anon_sym_chan] = ACTIONS(2896), - [anon_sym_thread] = ACTIONS(2896), - [anon_sym_atomic] = ACTIONS(2896), - [sym___double_quote] = ACTIONS(2894), - [sym___single_quote] = ACTIONS(2894), - [sym___c_double_quote] = ACTIONS(2894), - [sym___c_single_quote] = ACTIONS(2894), - [sym___r_double_quote] = ACTIONS(2894), - [sym___r_single_quote] = ACTIONS(2894), + [anon_sym_DOT] = ACTIONS(2890), + [anon_sym_as] = ACTIONS(2890), + [anon_sym_LBRACE] = ACTIONS(2888), + [anon_sym_COMMA] = ACTIONS(2888), + [anon_sym_RBRACE] = ACTIONS(2888), + [anon_sym_LPAREN] = ACTIONS(2888), + [anon_sym_PIPE] = ACTIONS(2890), + [anon_sym_fn] = ACTIONS(2890), + [anon_sym_PLUS] = ACTIONS(2890), + [anon_sym_DASH] = ACTIONS(2890), + [anon_sym_STAR] = ACTIONS(2888), + [anon_sym_SLASH] = ACTIONS(2890), + [anon_sym_PERCENT] = ACTIONS(2888), + [anon_sym_LT] = ACTIONS(2890), + [anon_sym_GT] = ACTIONS(2890), + [anon_sym_EQ_EQ] = ACTIONS(2888), + [anon_sym_BANG_EQ] = ACTIONS(2888), + [anon_sym_LT_EQ] = ACTIONS(2888), + [anon_sym_GT_EQ] = ACTIONS(2888), + [anon_sym_LBRACK] = ACTIONS(2888), + [anon_sym_RBRACK] = ACTIONS(2888), + [anon_sym_struct] = ACTIONS(2890), + [anon_sym_mut] = ACTIONS(2890), + [anon_sym_COLON] = ACTIONS(2888), + [anon_sym_PLUS_PLUS] = ACTIONS(2888), + [anon_sym_DASH_DASH] = ACTIONS(2888), + [anon_sym_QMARK] = ACTIONS(2890), + [anon_sym_BANG] = ACTIONS(2890), + [anon_sym_go] = ACTIONS(2890), + [anon_sym_spawn] = ACTIONS(2890), + [anon_sym_json_DOTdecode] = ACTIONS(2888), + [anon_sym_LBRACK2] = ACTIONS(2890), + [anon_sym_TILDE] = ACTIONS(2888), + [anon_sym_CARET] = ACTIONS(2888), + [anon_sym_AMP] = ACTIONS(2890), + [anon_sym_LT_DASH] = ACTIONS(2888), + [anon_sym_LT_LT] = ACTIONS(2888), + [anon_sym_GT_GT] = ACTIONS(2890), + [anon_sym_GT_GT_GT] = ACTIONS(2888), + [anon_sym_AMP_CARET] = ACTIONS(2888), + [anon_sym_AMP_AMP] = ACTIONS(2888), + [anon_sym_PIPE_PIPE] = ACTIONS(2888), + [anon_sym_or] = ACTIONS(2890), + [sym_none] = ACTIONS(2890), + [sym_true] = ACTIONS(2890), + [sym_false] = ACTIONS(2890), + [sym_nil] = ACTIONS(2890), + [anon_sym_QMARK_DOT] = ACTIONS(2888), + [anon_sym_POUND_LBRACK] = ACTIONS(2888), + [anon_sym_if] = ACTIONS(2890), + [anon_sym_DOLLARif] = ACTIONS(2890), + [anon_sym_is] = ACTIONS(2890), + [anon_sym_BANGis] = ACTIONS(2888), + [anon_sym_in] = ACTIONS(2890), + [anon_sym_BANGin] = ACTIONS(2888), + [anon_sym_match] = ACTIONS(2890), + [anon_sym_select] = ACTIONS(2890), + [anon_sym_lock] = ACTIONS(2890), + [anon_sym_rlock] = ACTIONS(2890), + [anon_sym_unsafe] = ACTIONS(2890), + [anon_sym_sql] = ACTIONS(2890), + [sym_int_literal] = ACTIONS(2890), + [sym_float_literal] = ACTIONS(2888), + [sym_rune_literal] = ACTIONS(2888), + [sym_pseudo_compile_time_identifier] = ACTIONS(2890), + [anon_sym_shared] = ACTIONS(2890), + [anon_sym_map_LBRACK] = ACTIONS(2888), + [anon_sym_chan] = ACTIONS(2890), + [anon_sym_thread] = ACTIONS(2890), + [anon_sym_atomic] = ACTIONS(2890), + [sym___double_quote] = ACTIONS(2888), + [sym___single_quote] = ACTIONS(2888), + [sym___c_double_quote] = ACTIONS(2888), + [sym___c_single_quote] = ACTIONS(2888), + [sym___r_double_quote] = ACTIONS(2888), + [sym___r_single_quote] = ACTIONS(2888), }, [1338] = { [sym_line_comment] = STATE(1338), [sym_block_comment] = STATE(1338), - [sym_identifier] = ACTIONS(2353), + [sym_identifier] = ACTIONS(2870), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(2353), - [anon_sym_as] = ACTIONS(2353), - [anon_sym_LBRACE] = ACTIONS(2351), - [anon_sym_COMMA] = ACTIONS(2351), - [anon_sym_RBRACE] = ACTIONS(2351), - [anon_sym_LPAREN] = ACTIONS(2351), - [anon_sym_PIPE] = ACTIONS(2353), - [anon_sym_fn] = ACTIONS(2353), - [anon_sym_PLUS] = ACTIONS(2353), - [anon_sym_DASH] = ACTIONS(2353), - [anon_sym_STAR] = ACTIONS(2351), - [anon_sym_SLASH] = ACTIONS(2353), - [anon_sym_PERCENT] = ACTIONS(2351), - [anon_sym_LT] = ACTIONS(2353), - [anon_sym_GT] = ACTIONS(2353), - [anon_sym_EQ_EQ] = ACTIONS(2351), - [anon_sym_BANG_EQ] = ACTIONS(2351), - [anon_sym_LT_EQ] = ACTIONS(2351), - [anon_sym_GT_EQ] = ACTIONS(2351), - [anon_sym_LBRACK] = ACTIONS(2351), - [anon_sym_RBRACK] = ACTIONS(2351), - [anon_sym_struct] = ACTIONS(2353), - [anon_sym_mut] = ACTIONS(2353), - [anon_sym_COLON] = ACTIONS(2351), - [anon_sym_PLUS_PLUS] = ACTIONS(2351), - [anon_sym_DASH_DASH] = ACTIONS(2351), - [anon_sym_QMARK] = ACTIONS(2353), - [anon_sym_BANG] = ACTIONS(2353), - [anon_sym_go] = ACTIONS(2353), - [anon_sym_spawn] = ACTIONS(2353), - [anon_sym_json_DOTdecode] = ACTIONS(2351), - [anon_sym_LBRACK2] = ACTIONS(2353), - [anon_sym_TILDE] = ACTIONS(2351), - [anon_sym_CARET] = ACTIONS(2351), - [anon_sym_AMP] = ACTIONS(2353), - [anon_sym_LT_DASH] = ACTIONS(2351), - [anon_sym_LT_LT] = ACTIONS(2351), - [anon_sym_GT_GT] = ACTIONS(2353), - [anon_sym_GT_GT_GT] = ACTIONS(2351), - [anon_sym_AMP_CARET] = ACTIONS(2351), - [anon_sym_AMP_AMP] = ACTIONS(2351), - [anon_sym_PIPE_PIPE] = ACTIONS(2351), - [anon_sym_or] = ACTIONS(2353), - [sym_none] = ACTIONS(2353), - [sym_true] = ACTIONS(2353), - [sym_false] = ACTIONS(2353), - [sym_nil] = ACTIONS(2353), - [anon_sym_QMARK_DOT] = ACTIONS(2351), - [anon_sym_POUND_LBRACK] = ACTIONS(2351), - [anon_sym_if] = ACTIONS(2353), - [anon_sym_DOLLARif] = ACTIONS(2353), - [anon_sym_is] = ACTIONS(2353), - [anon_sym_BANGis] = ACTIONS(2351), - [anon_sym_in] = ACTIONS(2353), - [anon_sym_BANGin] = ACTIONS(2351), - [anon_sym_match] = ACTIONS(2353), - [anon_sym_select] = ACTIONS(2353), - [anon_sym_lock] = ACTIONS(2353), - [anon_sym_rlock] = ACTIONS(2353), - [anon_sym_unsafe] = ACTIONS(2353), - [anon_sym_sql] = ACTIONS(2353), - [sym_int_literal] = ACTIONS(2353), - [sym_float_literal] = ACTIONS(2351), - [sym_rune_literal] = ACTIONS(2351), - [sym_pseudo_compile_time_identifier] = ACTIONS(2353), - [anon_sym_shared] = ACTIONS(2353), - [anon_sym_map_LBRACK] = ACTIONS(2351), - [anon_sym_chan] = ACTIONS(2353), - [anon_sym_thread] = ACTIONS(2353), - [anon_sym_atomic] = ACTIONS(2353), - [sym___double_quote] = ACTIONS(2351), - [sym___single_quote] = ACTIONS(2351), - [sym___c_double_quote] = ACTIONS(2351), - [sym___c_single_quote] = ACTIONS(2351), - [sym___r_double_quote] = ACTIONS(2351), - [sym___r_single_quote] = ACTIONS(2351), + [anon_sym_DOT] = ACTIONS(2870), + [anon_sym_as] = ACTIONS(2870), + [anon_sym_LBRACE] = ACTIONS(2868), + [anon_sym_COMMA] = ACTIONS(2868), + [anon_sym_RBRACE] = ACTIONS(2868), + [anon_sym_LPAREN] = ACTIONS(2868), + [anon_sym_PIPE] = ACTIONS(2870), + [anon_sym_fn] = ACTIONS(2870), + [anon_sym_PLUS] = ACTIONS(2870), + [anon_sym_DASH] = ACTIONS(2870), + [anon_sym_STAR] = ACTIONS(2868), + [anon_sym_SLASH] = ACTIONS(2870), + [anon_sym_PERCENT] = ACTIONS(2868), + [anon_sym_LT] = ACTIONS(2870), + [anon_sym_GT] = ACTIONS(2870), + [anon_sym_EQ_EQ] = ACTIONS(2868), + [anon_sym_BANG_EQ] = ACTIONS(2868), + [anon_sym_LT_EQ] = ACTIONS(2868), + [anon_sym_GT_EQ] = ACTIONS(2868), + [anon_sym_LBRACK] = ACTIONS(2868), + [anon_sym_RBRACK] = ACTIONS(2868), + [anon_sym_struct] = ACTIONS(2870), + [anon_sym_mut] = ACTIONS(2870), + [anon_sym_COLON] = ACTIONS(2868), + [anon_sym_PLUS_PLUS] = ACTIONS(2868), + [anon_sym_DASH_DASH] = ACTIONS(2868), + [anon_sym_QMARK] = ACTIONS(2870), + [anon_sym_BANG] = ACTIONS(2870), + [anon_sym_go] = ACTIONS(2870), + [anon_sym_spawn] = ACTIONS(2870), + [anon_sym_json_DOTdecode] = ACTIONS(2868), + [anon_sym_LBRACK2] = ACTIONS(2870), + [anon_sym_TILDE] = ACTIONS(2868), + [anon_sym_CARET] = ACTIONS(2868), + [anon_sym_AMP] = ACTIONS(2870), + [anon_sym_LT_DASH] = ACTIONS(2868), + [anon_sym_LT_LT] = ACTIONS(2868), + [anon_sym_GT_GT] = ACTIONS(2870), + [anon_sym_GT_GT_GT] = ACTIONS(2868), + [anon_sym_AMP_CARET] = ACTIONS(2868), + [anon_sym_AMP_AMP] = ACTIONS(2868), + [anon_sym_PIPE_PIPE] = ACTIONS(2868), + [anon_sym_or] = ACTIONS(2870), + [sym_none] = ACTIONS(2870), + [sym_true] = ACTIONS(2870), + [sym_false] = ACTIONS(2870), + [sym_nil] = ACTIONS(2870), + [anon_sym_QMARK_DOT] = ACTIONS(2868), + [anon_sym_POUND_LBRACK] = ACTIONS(2868), + [anon_sym_if] = ACTIONS(2870), + [anon_sym_DOLLARif] = ACTIONS(2870), + [anon_sym_is] = ACTIONS(2870), + [anon_sym_BANGis] = ACTIONS(2868), + [anon_sym_in] = ACTIONS(2870), + [anon_sym_BANGin] = ACTIONS(2868), + [anon_sym_match] = ACTIONS(2870), + [anon_sym_select] = ACTIONS(2870), + [anon_sym_lock] = ACTIONS(2870), + [anon_sym_rlock] = ACTIONS(2870), + [anon_sym_unsafe] = ACTIONS(2870), + [anon_sym_sql] = ACTIONS(2870), + [sym_int_literal] = ACTIONS(2870), + [sym_float_literal] = ACTIONS(2868), + [sym_rune_literal] = ACTIONS(2868), + [sym_pseudo_compile_time_identifier] = ACTIONS(2870), + [anon_sym_shared] = ACTIONS(2870), + [anon_sym_map_LBRACK] = ACTIONS(2868), + [anon_sym_chan] = ACTIONS(2870), + [anon_sym_thread] = ACTIONS(2870), + [anon_sym_atomic] = ACTIONS(2870), + [sym___double_quote] = ACTIONS(2868), + [sym___single_quote] = ACTIONS(2868), + [sym___c_double_quote] = ACTIONS(2868), + [sym___c_single_quote] = ACTIONS(2868), + [sym___r_double_quote] = ACTIONS(2868), + [sym___r_single_quote] = ACTIONS(2868), }, [1339] = { [sym_line_comment] = STATE(1339), [sym_block_comment] = STATE(1339), - [sym_identifier] = ACTIONS(2473), + [sym_identifier] = ACTIONS(2710), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(2473), - [anon_sym_as] = ACTIONS(2473), - [anon_sym_LBRACE] = ACTIONS(2471), - [anon_sym_COMMA] = ACTIONS(2471), - [anon_sym_RBRACE] = ACTIONS(2471), - [anon_sym_LPAREN] = ACTIONS(2471), - [anon_sym_PIPE] = ACTIONS(2473), - [anon_sym_fn] = ACTIONS(2473), - [anon_sym_PLUS] = ACTIONS(2473), - [anon_sym_DASH] = ACTIONS(2473), - [anon_sym_STAR] = ACTIONS(2471), - [anon_sym_SLASH] = ACTIONS(2473), - [anon_sym_PERCENT] = ACTIONS(2471), - [anon_sym_LT] = ACTIONS(2473), - [anon_sym_GT] = ACTIONS(2473), - [anon_sym_EQ_EQ] = ACTIONS(2471), - [anon_sym_BANG_EQ] = ACTIONS(2471), - [anon_sym_LT_EQ] = ACTIONS(2471), - [anon_sym_GT_EQ] = ACTIONS(2471), - [anon_sym_LBRACK] = ACTIONS(2471), - [anon_sym_RBRACK] = ACTIONS(2471), - [anon_sym_struct] = ACTIONS(2473), - [anon_sym_mut] = ACTIONS(2473), - [anon_sym_COLON] = ACTIONS(2471), - [anon_sym_PLUS_PLUS] = ACTIONS(2471), - [anon_sym_DASH_DASH] = ACTIONS(2471), - [anon_sym_QMARK] = ACTIONS(2473), - [anon_sym_BANG] = ACTIONS(2473), - [anon_sym_go] = ACTIONS(2473), - [anon_sym_spawn] = ACTIONS(2473), - [anon_sym_json_DOTdecode] = ACTIONS(2471), - [anon_sym_LBRACK2] = ACTIONS(2473), - [anon_sym_TILDE] = ACTIONS(2471), - [anon_sym_CARET] = ACTIONS(2471), - [anon_sym_AMP] = ACTIONS(2473), - [anon_sym_LT_DASH] = ACTIONS(2471), - [anon_sym_LT_LT] = ACTIONS(2471), - [anon_sym_GT_GT] = ACTIONS(2473), - [anon_sym_GT_GT_GT] = ACTIONS(2471), - [anon_sym_AMP_CARET] = ACTIONS(2471), - [anon_sym_AMP_AMP] = ACTIONS(2471), - [anon_sym_PIPE_PIPE] = ACTIONS(2471), - [anon_sym_or] = ACTIONS(2473), - [sym_none] = ACTIONS(2473), - [sym_true] = ACTIONS(2473), - [sym_false] = ACTIONS(2473), - [sym_nil] = ACTIONS(2473), - [anon_sym_QMARK_DOT] = ACTIONS(2471), - [anon_sym_POUND_LBRACK] = ACTIONS(2471), - [anon_sym_if] = ACTIONS(2473), - [anon_sym_DOLLARif] = ACTIONS(2473), - [anon_sym_is] = ACTIONS(2473), - [anon_sym_BANGis] = ACTIONS(2471), - [anon_sym_in] = ACTIONS(2473), - [anon_sym_BANGin] = ACTIONS(2471), - [anon_sym_match] = ACTIONS(2473), - [anon_sym_select] = ACTIONS(2473), - [anon_sym_lock] = ACTIONS(2473), - [anon_sym_rlock] = ACTIONS(2473), - [anon_sym_unsafe] = ACTIONS(2473), - [anon_sym_sql] = ACTIONS(2473), - [sym_int_literal] = ACTIONS(2473), - [sym_float_literal] = ACTIONS(2471), - [sym_rune_literal] = ACTIONS(2471), - [sym_pseudo_compile_time_identifier] = ACTIONS(2473), - [anon_sym_shared] = ACTIONS(2473), - [anon_sym_map_LBRACK] = ACTIONS(2471), - [anon_sym_chan] = ACTIONS(2473), - [anon_sym_thread] = ACTIONS(2473), - [anon_sym_atomic] = ACTIONS(2473), - [sym___double_quote] = ACTIONS(2471), - [sym___single_quote] = ACTIONS(2471), - [sym___c_double_quote] = ACTIONS(2471), - [sym___c_single_quote] = ACTIONS(2471), - [sym___r_double_quote] = ACTIONS(2471), - [sym___r_single_quote] = ACTIONS(2471), + [anon_sym_DOT] = ACTIONS(2710), + [anon_sym_as] = ACTIONS(2710), + [anon_sym_LBRACE] = ACTIONS(2708), + [anon_sym_COMMA] = ACTIONS(2708), + [anon_sym_RBRACE] = ACTIONS(2708), + [anon_sym_LPAREN] = ACTIONS(2708), + [anon_sym_PIPE] = ACTIONS(2710), + [anon_sym_fn] = ACTIONS(2710), + [anon_sym_PLUS] = ACTIONS(2710), + [anon_sym_DASH] = ACTIONS(2710), + [anon_sym_STAR] = ACTIONS(2708), + [anon_sym_SLASH] = ACTIONS(2710), + [anon_sym_PERCENT] = ACTIONS(2708), + [anon_sym_LT] = ACTIONS(2710), + [anon_sym_GT] = ACTIONS(2710), + [anon_sym_EQ_EQ] = ACTIONS(2708), + [anon_sym_BANG_EQ] = ACTIONS(2708), + [anon_sym_LT_EQ] = ACTIONS(2708), + [anon_sym_GT_EQ] = ACTIONS(2708), + [anon_sym_LBRACK] = ACTIONS(2708), + [anon_sym_RBRACK] = ACTIONS(2708), + [anon_sym_struct] = ACTIONS(2710), + [anon_sym_mut] = ACTIONS(2710), + [anon_sym_COLON] = ACTIONS(2708), + [anon_sym_PLUS_PLUS] = ACTIONS(2708), + [anon_sym_DASH_DASH] = ACTIONS(2708), + [anon_sym_QMARK] = ACTIONS(2710), + [anon_sym_BANG] = ACTIONS(2710), + [anon_sym_go] = ACTIONS(2710), + [anon_sym_spawn] = ACTIONS(2710), + [anon_sym_json_DOTdecode] = ACTIONS(2708), + [anon_sym_LBRACK2] = ACTIONS(2710), + [anon_sym_TILDE] = ACTIONS(2708), + [anon_sym_CARET] = ACTIONS(2708), + [anon_sym_AMP] = ACTIONS(2710), + [anon_sym_LT_DASH] = ACTIONS(2708), + [anon_sym_LT_LT] = ACTIONS(2708), + [anon_sym_GT_GT] = ACTIONS(2710), + [anon_sym_GT_GT_GT] = ACTIONS(2708), + [anon_sym_AMP_CARET] = ACTIONS(2708), + [anon_sym_AMP_AMP] = ACTIONS(2708), + [anon_sym_PIPE_PIPE] = ACTIONS(2708), + [anon_sym_or] = ACTIONS(2710), + [sym_none] = ACTIONS(2710), + [sym_true] = ACTIONS(2710), + [sym_false] = ACTIONS(2710), + [sym_nil] = ACTIONS(2710), + [anon_sym_QMARK_DOT] = ACTIONS(2708), + [anon_sym_POUND_LBRACK] = ACTIONS(2708), + [anon_sym_if] = ACTIONS(2710), + [anon_sym_DOLLARif] = ACTIONS(2710), + [anon_sym_is] = ACTIONS(2710), + [anon_sym_BANGis] = ACTIONS(2708), + [anon_sym_in] = ACTIONS(2710), + [anon_sym_BANGin] = ACTIONS(2708), + [anon_sym_match] = ACTIONS(2710), + [anon_sym_select] = ACTIONS(2710), + [anon_sym_lock] = ACTIONS(2710), + [anon_sym_rlock] = ACTIONS(2710), + [anon_sym_unsafe] = ACTIONS(2710), + [anon_sym_sql] = ACTIONS(2710), + [sym_int_literal] = ACTIONS(2710), + [sym_float_literal] = ACTIONS(2708), + [sym_rune_literal] = ACTIONS(2708), + [sym_pseudo_compile_time_identifier] = ACTIONS(2710), + [anon_sym_shared] = ACTIONS(2710), + [anon_sym_map_LBRACK] = ACTIONS(2708), + [anon_sym_chan] = ACTIONS(2710), + [anon_sym_thread] = ACTIONS(2710), + [anon_sym_atomic] = ACTIONS(2710), + [sym___double_quote] = ACTIONS(2708), + [sym___single_quote] = ACTIONS(2708), + [sym___c_double_quote] = ACTIONS(2708), + [sym___c_single_quote] = ACTIONS(2708), + [sym___r_double_quote] = ACTIONS(2708), + [sym___r_single_quote] = ACTIONS(2708), }, [1340] = { [sym_line_comment] = STATE(1340), [sym_block_comment] = STATE(1340), - [sym_identifier] = ACTIONS(2487), + [sym_type_parameters] = STATE(4093), + [sym_argument_list] = STATE(1361), + [sym_or_block] = STATE(1362), + [sym_identifier] = ACTIONS(3839), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(2487), - [anon_sym_as] = ACTIONS(2487), - [anon_sym_LBRACE] = ACTIONS(2485), - [anon_sym_COMMA] = ACTIONS(2485), - [anon_sym_RBRACE] = ACTIONS(2485), - [anon_sym_LPAREN] = ACTIONS(2485), - [anon_sym_PIPE] = ACTIONS(2487), - [anon_sym_fn] = ACTIONS(2487), - [anon_sym_PLUS] = ACTIONS(2487), - [anon_sym_DASH] = ACTIONS(2487), - [anon_sym_STAR] = ACTIONS(2485), - [anon_sym_SLASH] = ACTIONS(2487), - [anon_sym_PERCENT] = ACTIONS(2485), - [anon_sym_LT] = ACTIONS(2487), - [anon_sym_GT] = ACTIONS(2487), - [anon_sym_EQ_EQ] = ACTIONS(2485), - [anon_sym_BANG_EQ] = ACTIONS(2485), - [anon_sym_LT_EQ] = ACTIONS(2485), - [anon_sym_GT_EQ] = ACTIONS(2485), - [anon_sym_LBRACK] = ACTIONS(2485), - [anon_sym_RBRACK] = ACTIONS(2485), - [anon_sym_struct] = ACTIONS(2487), - [anon_sym_mut] = ACTIONS(2487), - [anon_sym_COLON] = ACTIONS(2485), - [anon_sym_PLUS_PLUS] = ACTIONS(2485), - [anon_sym_DASH_DASH] = ACTIONS(2485), - [anon_sym_QMARK] = ACTIONS(2487), - [anon_sym_BANG] = ACTIONS(2487), - [anon_sym_go] = ACTIONS(2487), - [anon_sym_spawn] = ACTIONS(2487), - [anon_sym_json_DOTdecode] = ACTIONS(2485), - [anon_sym_LBRACK2] = ACTIONS(2487), - [anon_sym_TILDE] = ACTIONS(2485), - [anon_sym_CARET] = ACTIONS(2485), - [anon_sym_AMP] = ACTIONS(2487), - [anon_sym_LT_DASH] = ACTIONS(2485), - [anon_sym_LT_LT] = ACTIONS(2485), - [anon_sym_GT_GT] = ACTIONS(2487), - [anon_sym_GT_GT_GT] = ACTIONS(2485), - [anon_sym_AMP_CARET] = ACTIONS(2485), - [anon_sym_AMP_AMP] = ACTIONS(2485), - [anon_sym_PIPE_PIPE] = ACTIONS(2485), - [anon_sym_or] = ACTIONS(2487), - [sym_none] = ACTIONS(2487), - [sym_true] = ACTIONS(2487), - [sym_false] = ACTIONS(2487), - [sym_nil] = ACTIONS(2487), - [anon_sym_QMARK_DOT] = ACTIONS(2485), - [anon_sym_POUND_LBRACK] = ACTIONS(2485), - [anon_sym_if] = ACTIONS(2487), - [anon_sym_DOLLARif] = ACTIONS(2487), - [anon_sym_is] = ACTIONS(2487), - [anon_sym_BANGis] = ACTIONS(2485), - [anon_sym_in] = ACTIONS(2487), - [anon_sym_BANGin] = ACTIONS(2485), - [anon_sym_match] = ACTIONS(2487), - [anon_sym_select] = ACTIONS(2487), - [anon_sym_lock] = ACTIONS(2487), - [anon_sym_rlock] = ACTIONS(2487), - [anon_sym_unsafe] = ACTIONS(2487), - [anon_sym_sql] = ACTIONS(2487), - [sym_int_literal] = ACTIONS(2487), - [sym_float_literal] = ACTIONS(2485), - [sym_rune_literal] = ACTIONS(2485), - [sym_pseudo_compile_time_identifier] = ACTIONS(2487), - [anon_sym_shared] = ACTIONS(2487), - [anon_sym_map_LBRACK] = ACTIONS(2485), - [anon_sym_chan] = ACTIONS(2487), - [anon_sym_thread] = ACTIONS(2487), - [anon_sym_atomic] = ACTIONS(2487), - [sym___double_quote] = ACTIONS(2485), - [sym___single_quote] = ACTIONS(2485), - [sym___c_double_quote] = ACTIONS(2485), - [sym___c_single_quote] = ACTIONS(2485), - [sym___r_double_quote] = ACTIONS(2485), - [sym___r_single_quote] = ACTIONS(2485), + [anon_sym_DOT] = ACTIONS(3821), + [anon_sym_as] = ACTIONS(3841), + [anon_sym_LBRACE] = ACTIONS(3843), + [anon_sym_RBRACE] = ACTIONS(3843), + [anon_sym_LPAREN] = ACTIONS(3823), + [anon_sym_PIPE] = ACTIONS(3845), + [anon_sym_fn] = ACTIONS(3839), + [anon_sym_PLUS] = ACTIONS(3845), + [anon_sym_DASH] = ACTIONS(3845), + [anon_sym_STAR] = ACTIONS(3847), + [anon_sym_SLASH] = ACTIONS(3849), + [anon_sym_PERCENT] = ACTIONS(3847), + [anon_sym_LT] = ACTIONS(3851), + [anon_sym_GT] = ACTIONS(3851), + [anon_sym_EQ_EQ] = ACTIONS(3853), + [anon_sym_BANG_EQ] = ACTIONS(3853), + [anon_sym_LT_EQ] = ACTIONS(3853), + [anon_sym_GT_EQ] = ACTIONS(3853), + [anon_sym_LBRACK] = ACTIONS(3825), + [anon_sym_struct] = ACTIONS(3839), + [anon_sym_mut] = ACTIONS(3839), + [anon_sym_PLUS_PLUS] = ACTIONS(3857), + [anon_sym_DASH_DASH] = ACTIONS(3859), + [anon_sym_QMARK] = ACTIONS(3827), + [anon_sym_BANG] = ACTIONS(3829), + [anon_sym_go] = ACTIONS(3839), + [anon_sym_spawn] = ACTIONS(3839), + [anon_sym_json_DOTdecode] = ACTIONS(3843), + [anon_sym_LBRACK2] = ACTIONS(3831), + [anon_sym_TILDE] = ACTIONS(3843), + [anon_sym_CARET] = ACTIONS(3861), + [anon_sym_AMP] = ACTIONS(3849), + [anon_sym_LT_DASH] = ACTIONS(3843), + [anon_sym_LT_LT] = ACTIONS(3847), + [anon_sym_GT_GT] = ACTIONS(3849), + [anon_sym_GT_GT_GT] = ACTIONS(3847), + [anon_sym_AMP_CARET] = ACTIONS(3847), + [anon_sym_AMP_AMP] = ACTIONS(3863), + [anon_sym_PIPE_PIPE] = ACTIONS(3865), + [anon_sym_or] = ACTIONS(3867), + [sym_none] = ACTIONS(3839), + [sym_true] = ACTIONS(3839), + [sym_false] = ACTIONS(3839), + [sym_nil] = ACTIONS(3839), + [anon_sym_QMARK_DOT] = ACTIONS(3833), + [anon_sym_POUND_LBRACK] = ACTIONS(3835), + [anon_sym_if] = ACTIONS(3839), + [anon_sym_DOLLARif] = ACTIONS(3839), + [anon_sym_is] = ACTIONS(3869), + [anon_sym_BANGis] = ACTIONS(3871), + [anon_sym_in] = ACTIONS(3873), + [anon_sym_BANGin] = ACTIONS(3875), + [anon_sym_match] = ACTIONS(3839), + [anon_sym_select] = ACTIONS(3839), + [anon_sym_lock] = ACTIONS(3839), + [anon_sym_rlock] = ACTIONS(3839), + [anon_sym_unsafe] = ACTIONS(3839), + [anon_sym_sql] = ACTIONS(3839), + [sym_int_literal] = ACTIONS(3839), + [sym_float_literal] = ACTIONS(3843), + [sym_rune_literal] = ACTIONS(3843), + [sym_pseudo_compile_time_identifier] = ACTIONS(3839), + [anon_sym_shared] = ACTIONS(3839), + [anon_sym_map_LBRACK] = ACTIONS(3843), + [anon_sym_chan] = ACTIONS(3839), + [anon_sym_thread] = ACTIONS(3839), + [anon_sym_atomic] = ACTIONS(3839), + [sym___double_quote] = ACTIONS(3843), + [sym___single_quote] = ACTIONS(3843), + [sym___c_double_quote] = ACTIONS(3843), + [sym___c_single_quote] = ACTIONS(3843), + [sym___r_double_quote] = ACTIONS(3843), + [sym___r_single_quote] = ACTIONS(3843), }, [1341] = { [sym_line_comment] = STATE(1341), [sym_block_comment] = STATE(1341), - [sym_identifier] = ACTIONS(2888), + [sym_identifier] = ACTIONS(3050), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(2888), - [anon_sym_as] = ACTIONS(2888), - [anon_sym_LBRACE] = ACTIONS(2886), - [anon_sym_COMMA] = ACTIONS(2886), - [anon_sym_RBRACE] = ACTIONS(2886), - [anon_sym_LPAREN] = ACTIONS(2886), - [anon_sym_PIPE] = ACTIONS(2888), - [anon_sym_fn] = ACTIONS(2888), - [anon_sym_PLUS] = ACTIONS(2888), - [anon_sym_DASH] = ACTIONS(2888), - [anon_sym_STAR] = ACTIONS(2886), - [anon_sym_SLASH] = ACTIONS(2888), - [anon_sym_PERCENT] = ACTIONS(2886), - [anon_sym_LT] = ACTIONS(2888), - [anon_sym_GT] = ACTIONS(2888), - [anon_sym_EQ_EQ] = ACTIONS(2886), - [anon_sym_BANG_EQ] = ACTIONS(2886), - [anon_sym_LT_EQ] = ACTIONS(2886), - [anon_sym_GT_EQ] = ACTIONS(2886), - [anon_sym_LBRACK] = ACTIONS(2886), - [anon_sym_RBRACK] = ACTIONS(2886), - [anon_sym_struct] = ACTIONS(2888), - [anon_sym_mut] = ACTIONS(2888), - [anon_sym_COLON] = ACTIONS(2886), - [anon_sym_PLUS_PLUS] = ACTIONS(2886), - [anon_sym_DASH_DASH] = ACTIONS(2886), - [anon_sym_QMARK] = ACTIONS(2888), - [anon_sym_BANG] = ACTIONS(2888), - [anon_sym_go] = ACTIONS(2888), - [anon_sym_spawn] = ACTIONS(2888), - [anon_sym_json_DOTdecode] = ACTIONS(2886), - [anon_sym_LBRACK2] = ACTIONS(2888), - [anon_sym_TILDE] = ACTIONS(2886), - [anon_sym_CARET] = ACTIONS(2886), - [anon_sym_AMP] = ACTIONS(2888), - [anon_sym_LT_DASH] = ACTIONS(2886), - [anon_sym_LT_LT] = ACTIONS(2886), - [anon_sym_GT_GT] = ACTIONS(2888), - [anon_sym_GT_GT_GT] = ACTIONS(2886), - [anon_sym_AMP_CARET] = ACTIONS(2886), - [anon_sym_AMP_AMP] = ACTIONS(2886), - [anon_sym_PIPE_PIPE] = ACTIONS(2886), - [anon_sym_or] = ACTIONS(2888), - [sym_none] = ACTIONS(2888), - [sym_true] = ACTIONS(2888), - [sym_false] = ACTIONS(2888), - [sym_nil] = ACTIONS(2888), - [anon_sym_QMARK_DOT] = ACTIONS(2886), - [anon_sym_POUND_LBRACK] = ACTIONS(2886), - [anon_sym_if] = ACTIONS(2888), - [anon_sym_DOLLARif] = ACTIONS(2888), - [anon_sym_is] = ACTIONS(2888), - [anon_sym_BANGis] = ACTIONS(2886), - [anon_sym_in] = ACTIONS(2888), - [anon_sym_BANGin] = ACTIONS(2886), - [anon_sym_match] = ACTIONS(2888), - [anon_sym_select] = ACTIONS(2888), - [anon_sym_lock] = ACTIONS(2888), - [anon_sym_rlock] = ACTIONS(2888), - [anon_sym_unsafe] = ACTIONS(2888), - [anon_sym_sql] = ACTIONS(2888), - [sym_int_literal] = ACTIONS(2888), - [sym_float_literal] = ACTIONS(2886), - [sym_rune_literal] = ACTIONS(2886), - [sym_pseudo_compile_time_identifier] = ACTIONS(2888), - [anon_sym_shared] = ACTIONS(2888), - [anon_sym_map_LBRACK] = ACTIONS(2886), - [anon_sym_chan] = ACTIONS(2888), - [anon_sym_thread] = ACTIONS(2888), - [anon_sym_atomic] = ACTIONS(2888), - [sym___double_quote] = ACTIONS(2886), - [sym___single_quote] = ACTIONS(2886), - [sym___c_double_quote] = ACTIONS(2886), - [sym___c_single_quote] = ACTIONS(2886), - [sym___r_double_quote] = ACTIONS(2886), - [sym___r_single_quote] = ACTIONS(2886), + [anon_sym_DOT] = ACTIONS(3050), + [anon_sym_as] = ACTIONS(3050), + [anon_sym_LBRACE] = ACTIONS(3048), + [anon_sym_COMMA] = ACTIONS(3048), + [anon_sym_RBRACE] = ACTIONS(3048), + [anon_sym_LPAREN] = ACTIONS(3048), + [anon_sym_PIPE] = ACTIONS(3050), + [anon_sym_fn] = ACTIONS(3050), + [anon_sym_PLUS] = ACTIONS(3050), + [anon_sym_DASH] = ACTIONS(3050), + [anon_sym_STAR] = ACTIONS(3048), + [anon_sym_SLASH] = ACTIONS(3050), + [anon_sym_PERCENT] = ACTIONS(3048), + [anon_sym_LT] = ACTIONS(3050), + [anon_sym_GT] = ACTIONS(3050), + [anon_sym_EQ_EQ] = ACTIONS(3048), + [anon_sym_BANG_EQ] = ACTIONS(3048), + [anon_sym_LT_EQ] = ACTIONS(3048), + [anon_sym_GT_EQ] = ACTIONS(3048), + [anon_sym_LBRACK] = ACTIONS(3048), + [anon_sym_RBRACK] = ACTIONS(3048), + [anon_sym_struct] = ACTIONS(3050), + [anon_sym_mut] = ACTIONS(3050), + [anon_sym_COLON] = ACTIONS(3048), + [anon_sym_PLUS_PLUS] = ACTIONS(3048), + [anon_sym_DASH_DASH] = ACTIONS(3048), + [anon_sym_QMARK] = ACTIONS(3050), + [anon_sym_BANG] = ACTIONS(3050), + [anon_sym_go] = ACTIONS(3050), + [anon_sym_spawn] = ACTIONS(3050), + [anon_sym_json_DOTdecode] = ACTIONS(3048), + [anon_sym_LBRACK2] = ACTIONS(3050), + [anon_sym_TILDE] = ACTIONS(3048), + [anon_sym_CARET] = ACTIONS(3048), + [anon_sym_AMP] = ACTIONS(3050), + [anon_sym_LT_DASH] = ACTIONS(3048), + [anon_sym_LT_LT] = ACTIONS(3048), + [anon_sym_GT_GT] = ACTIONS(3050), + [anon_sym_GT_GT_GT] = ACTIONS(3048), + [anon_sym_AMP_CARET] = ACTIONS(3048), + [anon_sym_AMP_AMP] = ACTIONS(3048), + [anon_sym_PIPE_PIPE] = ACTIONS(3048), + [anon_sym_or] = ACTIONS(3050), + [sym_none] = ACTIONS(3050), + [sym_true] = ACTIONS(3050), + [sym_false] = ACTIONS(3050), + [sym_nil] = ACTIONS(3050), + [anon_sym_QMARK_DOT] = ACTIONS(3048), + [anon_sym_POUND_LBRACK] = ACTIONS(3048), + [anon_sym_if] = ACTIONS(3050), + [anon_sym_DOLLARif] = ACTIONS(3050), + [anon_sym_is] = ACTIONS(3050), + [anon_sym_BANGis] = ACTIONS(3048), + [anon_sym_in] = ACTIONS(3050), + [anon_sym_BANGin] = ACTIONS(3048), + [anon_sym_match] = ACTIONS(3050), + [anon_sym_select] = ACTIONS(3050), + [anon_sym_lock] = ACTIONS(3050), + [anon_sym_rlock] = ACTIONS(3050), + [anon_sym_unsafe] = ACTIONS(3050), + [anon_sym_sql] = ACTIONS(3050), + [sym_int_literal] = ACTIONS(3050), + [sym_float_literal] = ACTIONS(3048), + [sym_rune_literal] = ACTIONS(3048), + [sym_pseudo_compile_time_identifier] = ACTIONS(3050), + [anon_sym_shared] = ACTIONS(3050), + [anon_sym_map_LBRACK] = ACTIONS(3048), + [anon_sym_chan] = ACTIONS(3050), + [anon_sym_thread] = ACTIONS(3050), + [anon_sym_atomic] = ACTIONS(3050), + [sym___double_quote] = ACTIONS(3048), + [sym___single_quote] = ACTIONS(3048), + [sym___c_double_quote] = ACTIONS(3048), + [sym___c_single_quote] = ACTIONS(3048), + [sym___r_double_quote] = ACTIONS(3048), + [sym___r_single_quote] = ACTIONS(3048), }, [1342] = { [sym_line_comment] = STATE(1342), [sym_block_comment] = STATE(1342), - [sym_identifier] = ACTIONS(2884), + [sym_identifier] = ACTIONS(2910), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(2884), - [anon_sym_as] = ACTIONS(2884), - [anon_sym_LBRACE] = ACTIONS(2882), - [anon_sym_COMMA] = ACTIONS(2882), - [anon_sym_RBRACE] = ACTIONS(2882), - [anon_sym_LPAREN] = ACTIONS(2882), - [anon_sym_PIPE] = ACTIONS(2884), - [anon_sym_fn] = ACTIONS(2884), - [anon_sym_PLUS] = ACTIONS(2884), - [anon_sym_DASH] = ACTIONS(2884), - [anon_sym_STAR] = ACTIONS(2882), - [anon_sym_SLASH] = ACTIONS(2884), - [anon_sym_PERCENT] = ACTIONS(2882), - [anon_sym_LT] = ACTIONS(2884), - [anon_sym_GT] = ACTIONS(2884), - [anon_sym_EQ_EQ] = ACTIONS(2882), - [anon_sym_BANG_EQ] = ACTIONS(2882), - [anon_sym_LT_EQ] = ACTIONS(2882), - [anon_sym_GT_EQ] = ACTIONS(2882), - [anon_sym_LBRACK] = ACTIONS(2882), - [anon_sym_RBRACK] = ACTIONS(2882), - [anon_sym_struct] = ACTIONS(2884), - [anon_sym_mut] = ACTIONS(2884), - [anon_sym_COLON] = ACTIONS(2882), - [anon_sym_PLUS_PLUS] = ACTIONS(2882), - [anon_sym_DASH_DASH] = ACTIONS(2882), - [anon_sym_QMARK] = ACTIONS(2884), - [anon_sym_BANG] = ACTIONS(2884), - [anon_sym_go] = ACTIONS(2884), - [anon_sym_spawn] = ACTIONS(2884), - [anon_sym_json_DOTdecode] = ACTIONS(2882), - [anon_sym_LBRACK2] = ACTIONS(2884), - [anon_sym_TILDE] = ACTIONS(2882), - [anon_sym_CARET] = ACTIONS(2882), - [anon_sym_AMP] = ACTIONS(2884), - [anon_sym_LT_DASH] = ACTIONS(2882), - [anon_sym_LT_LT] = ACTIONS(2882), - [anon_sym_GT_GT] = ACTIONS(2884), - [anon_sym_GT_GT_GT] = ACTIONS(2882), - [anon_sym_AMP_CARET] = ACTIONS(2882), - [anon_sym_AMP_AMP] = ACTIONS(2882), - [anon_sym_PIPE_PIPE] = ACTIONS(2882), - [anon_sym_or] = ACTIONS(2884), - [sym_none] = ACTIONS(2884), - [sym_true] = ACTIONS(2884), - [sym_false] = ACTIONS(2884), - [sym_nil] = ACTIONS(2884), - [anon_sym_QMARK_DOT] = ACTIONS(2882), - [anon_sym_POUND_LBRACK] = ACTIONS(2882), - [anon_sym_if] = ACTIONS(2884), - [anon_sym_DOLLARif] = ACTIONS(2884), - [anon_sym_is] = ACTIONS(2884), - [anon_sym_BANGis] = ACTIONS(2882), - [anon_sym_in] = ACTIONS(2884), - [anon_sym_BANGin] = ACTIONS(2882), - [anon_sym_match] = ACTIONS(2884), - [anon_sym_select] = ACTIONS(2884), - [anon_sym_lock] = ACTIONS(2884), - [anon_sym_rlock] = ACTIONS(2884), - [anon_sym_unsafe] = ACTIONS(2884), - [anon_sym_sql] = ACTIONS(2884), - [sym_int_literal] = ACTIONS(2884), - [sym_float_literal] = ACTIONS(2882), - [sym_rune_literal] = ACTIONS(2882), - [sym_pseudo_compile_time_identifier] = ACTIONS(2884), - [anon_sym_shared] = ACTIONS(2884), - [anon_sym_map_LBRACK] = ACTIONS(2882), - [anon_sym_chan] = ACTIONS(2884), - [anon_sym_thread] = ACTIONS(2884), - [anon_sym_atomic] = ACTIONS(2884), - [sym___double_quote] = ACTIONS(2882), - [sym___single_quote] = ACTIONS(2882), - [sym___c_double_quote] = ACTIONS(2882), - [sym___c_single_quote] = ACTIONS(2882), - [sym___r_double_quote] = ACTIONS(2882), - [sym___r_single_quote] = ACTIONS(2882), + [anon_sym_DOT] = ACTIONS(2910), + [anon_sym_as] = ACTIONS(2910), + [anon_sym_LBRACE] = ACTIONS(2908), + [anon_sym_COMMA] = ACTIONS(2908), + [anon_sym_RBRACE] = ACTIONS(2908), + [anon_sym_LPAREN] = ACTIONS(2908), + [anon_sym_PIPE] = ACTIONS(2910), + [anon_sym_fn] = ACTIONS(2910), + [anon_sym_PLUS] = ACTIONS(2910), + [anon_sym_DASH] = ACTIONS(2910), + [anon_sym_STAR] = ACTIONS(2908), + [anon_sym_SLASH] = ACTIONS(2910), + [anon_sym_PERCENT] = ACTIONS(2908), + [anon_sym_LT] = ACTIONS(2910), + [anon_sym_GT] = ACTIONS(2910), + [anon_sym_EQ_EQ] = ACTIONS(2908), + [anon_sym_BANG_EQ] = ACTIONS(2908), + [anon_sym_LT_EQ] = ACTIONS(2908), + [anon_sym_GT_EQ] = ACTIONS(2908), + [anon_sym_LBRACK] = ACTIONS(2908), + [anon_sym_RBRACK] = ACTIONS(2908), + [anon_sym_struct] = ACTIONS(2910), + [anon_sym_mut] = ACTIONS(2910), + [anon_sym_COLON] = ACTIONS(2908), + [anon_sym_PLUS_PLUS] = ACTIONS(2908), + [anon_sym_DASH_DASH] = ACTIONS(2908), + [anon_sym_QMARK] = ACTIONS(2910), + [anon_sym_BANG] = ACTIONS(2910), + [anon_sym_go] = ACTIONS(2910), + [anon_sym_spawn] = ACTIONS(2910), + [anon_sym_json_DOTdecode] = ACTIONS(2908), + [anon_sym_LBRACK2] = ACTIONS(2910), + [anon_sym_TILDE] = ACTIONS(2908), + [anon_sym_CARET] = ACTIONS(2908), + [anon_sym_AMP] = ACTIONS(2910), + [anon_sym_LT_DASH] = ACTIONS(2908), + [anon_sym_LT_LT] = ACTIONS(2908), + [anon_sym_GT_GT] = ACTIONS(2910), + [anon_sym_GT_GT_GT] = ACTIONS(2908), + [anon_sym_AMP_CARET] = ACTIONS(2908), + [anon_sym_AMP_AMP] = ACTIONS(2908), + [anon_sym_PIPE_PIPE] = ACTIONS(2908), + [anon_sym_or] = ACTIONS(2910), + [sym_none] = ACTIONS(2910), + [sym_true] = ACTIONS(2910), + [sym_false] = ACTIONS(2910), + [sym_nil] = ACTIONS(2910), + [anon_sym_QMARK_DOT] = ACTIONS(2908), + [anon_sym_POUND_LBRACK] = ACTIONS(2908), + [anon_sym_if] = ACTIONS(2910), + [anon_sym_DOLLARif] = ACTIONS(2910), + [anon_sym_is] = ACTIONS(2910), + [anon_sym_BANGis] = ACTIONS(2908), + [anon_sym_in] = ACTIONS(2910), + [anon_sym_BANGin] = ACTIONS(2908), + [anon_sym_match] = ACTIONS(2910), + [anon_sym_select] = ACTIONS(2910), + [anon_sym_lock] = ACTIONS(2910), + [anon_sym_rlock] = ACTIONS(2910), + [anon_sym_unsafe] = ACTIONS(2910), + [anon_sym_sql] = ACTIONS(2910), + [sym_int_literal] = ACTIONS(2910), + [sym_float_literal] = ACTIONS(2908), + [sym_rune_literal] = ACTIONS(2908), + [sym_pseudo_compile_time_identifier] = ACTIONS(2910), + [anon_sym_shared] = ACTIONS(2910), + [anon_sym_map_LBRACK] = ACTIONS(2908), + [anon_sym_chan] = ACTIONS(2910), + [anon_sym_thread] = ACTIONS(2910), + [anon_sym_atomic] = ACTIONS(2910), + [sym___double_quote] = ACTIONS(2908), + [sym___single_quote] = ACTIONS(2908), + [sym___c_double_quote] = ACTIONS(2908), + [sym___c_single_quote] = ACTIONS(2908), + [sym___r_double_quote] = ACTIONS(2908), + [sym___r_single_quote] = ACTIONS(2908), }, [1343] = { [sym_line_comment] = STATE(1343), [sym_block_comment] = STATE(1343), - [sym_identifier] = ACTIONS(2673), + [sym_identifier] = ACTIONS(2886), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(2673), - [anon_sym_as] = ACTIONS(2673), - [anon_sym_LBRACE] = ACTIONS(2671), - [anon_sym_COMMA] = ACTIONS(2671), - [anon_sym_RBRACE] = ACTIONS(2671), - [anon_sym_LPAREN] = ACTIONS(2671), - [anon_sym_PIPE] = ACTIONS(2673), - [anon_sym_fn] = ACTIONS(2673), - [anon_sym_PLUS] = ACTIONS(2673), - [anon_sym_DASH] = ACTIONS(2673), - [anon_sym_STAR] = ACTIONS(2671), - [anon_sym_SLASH] = ACTIONS(2673), - [anon_sym_PERCENT] = ACTIONS(2671), - [anon_sym_LT] = ACTIONS(2673), - [anon_sym_GT] = ACTIONS(2673), - [anon_sym_EQ_EQ] = ACTIONS(2671), - [anon_sym_BANG_EQ] = ACTIONS(2671), - [anon_sym_LT_EQ] = ACTIONS(2671), - [anon_sym_GT_EQ] = ACTIONS(2671), - [anon_sym_LBRACK] = ACTIONS(2671), - [anon_sym_RBRACK] = ACTIONS(2671), - [anon_sym_struct] = ACTIONS(2673), - [anon_sym_mut] = ACTIONS(2673), - [anon_sym_COLON] = ACTIONS(2671), - [anon_sym_PLUS_PLUS] = ACTIONS(2671), - [anon_sym_DASH_DASH] = ACTIONS(2671), - [anon_sym_QMARK] = ACTIONS(2673), - [anon_sym_BANG] = ACTIONS(2673), - [anon_sym_go] = ACTIONS(2673), - [anon_sym_spawn] = ACTIONS(2673), - [anon_sym_json_DOTdecode] = ACTIONS(2671), - [anon_sym_LBRACK2] = ACTIONS(2673), - [anon_sym_TILDE] = ACTIONS(2671), - [anon_sym_CARET] = ACTIONS(2671), - [anon_sym_AMP] = ACTIONS(2673), - [anon_sym_LT_DASH] = ACTIONS(2671), - [anon_sym_LT_LT] = ACTIONS(2671), - [anon_sym_GT_GT] = ACTIONS(2673), - [anon_sym_GT_GT_GT] = ACTIONS(2671), - [anon_sym_AMP_CARET] = ACTIONS(2671), - [anon_sym_AMP_AMP] = ACTIONS(2671), - [anon_sym_PIPE_PIPE] = ACTIONS(2671), - [anon_sym_or] = ACTIONS(2673), - [sym_none] = ACTIONS(2673), - [sym_true] = ACTIONS(2673), - [sym_false] = ACTIONS(2673), - [sym_nil] = ACTIONS(2673), - [anon_sym_QMARK_DOT] = ACTIONS(2671), - [anon_sym_POUND_LBRACK] = ACTIONS(2671), - [anon_sym_if] = ACTIONS(2673), - [anon_sym_DOLLARif] = ACTIONS(2673), - [anon_sym_is] = ACTIONS(2673), - [anon_sym_BANGis] = ACTIONS(2671), - [anon_sym_in] = ACTIONS(2673), - [anon_sym_BANGin] = ACTIONS(2671), - [anon_sym_match] = ACTIONS(2673), - [anon_sym_select] = ACTIONS(2673), - [anon_sym_lock] = ACTIONS(2673), - [anon_sym_rlock] = ACTIONS(2673), - [anon_sym_unsafe] = ACTIONS(2673), - [anon_sym_sql] = ACTIONS(2673), - [sym_int_literal] = ACTIONS(2673), - [sym_float_literal] = ACTIONS(2671), - [sym_rune_literal] = ACTIONS(2671), - [sym_pseudo_compile_time_identifier] = ACTIONS(2673), - [anon_sym_shared] = ACTIONS(2673), - [anon_sym_map_LBRACK] = ACTIONS(2671), - [anon_sym_chan] = ACTIONS(2673), - [anon_sym_thread] = ACTIONS(2673), - [anon_sym_atomic] = ACTIONS(2673), - [sym___double_quote] = ACTIONS(2671), - [sym___single_quote] = ACTIONS(2671), - [sym___c_double_quote] = ACTIONS(2671), - [sym___c_single_quote] = ACTIONS(2671), - [sym___r_double_quote] = ACTIONS(2671), - [sym___r_single_quote] = ACTIONS(2671), + [anon_sym_DOT] = ACTIONS(2886), + [anon_sym_as] = ACTIONS(2886), + [anon_sym_LBRACE] = ACTIONS(2884), + [anon_sym_COMMA] = ACTIONS(2884), + [anon_sym_RBRACE] = ACTIONS(2884), + [anon_sym_LPAREN] = ACTIONS(2884), + [anon_sym_PIPE] = ACTIONS(2886), + [anon_sym_fn] = ACTIONS(2886), + [anon_sym_PLUS] = ACTIONS(2886), + [anon_sym_DASH] = ACTIONS(2886), + [anon_sym_STAR] = ACTIONS(2884), + [anon_sym_SLASH] = ACTIONS(2886), + [anon_sym_PERCENT] = ACTIONS(2884), + [anon_sym_LT] = ACTIONS(2886), + [anon_sym_GT] = ACTIONS(2886), + [anon_sym_EQ_EQ] = ACTIONS(2884), + [anon_sym_BANG_EQ] = ACTIONS(2884), + [anon_sym_LT_EQ] = ACTIONS(2884), + [anon_sym_GT_EQ] = ACTIONS(2884), + [anon_sym_LBRACK] = ACTIONS(2884), + [anon_sym_RBRACK] = ACTIONS(2884), + [anon_sym_struct] = ACTIONS(2886), + [anon_sym_mut] = ACTIONS(2886), + [anon_sym_COLON] = ACTIONS(2884), + [anon_sym_PLUS_PLUS] = ACTIONS(2884), + [anon_sym_DASH_DASH] = ACTIONS(2884), + [anon_sym_QMARK] = ACTIONS(2886), + [anon_sym_BANG] = ACTIONS(2886), + [anon_sym_go] = ACTIONS(2886), + [anon_sym_spawn] = ACTIONS(2886), + [anon_sym_json_DOTdecode] = ACTIONS(2884), + [anon_sym_LBRACK2] = ACTIONS(2886), + [anon_sym_TILDE] = ACTIONS(2884), + [anon_sym_CARET] = ACTIONS(2884), + [anon_sym_AMP] = ACTIONS(2886), + [anon_sym_LT_DASH] = ACTIONS(2884), + [anon_sym_LT_LT] = ACTIONS(2884), + [anon_sym_GT_GT] = ACTIONS(2886), + [anon_sym_GT_GT_GT] = ACTIONS(2884), + [anon_sym_AMP_CARET] = ACTIONS(2884), + [anon_sym_AMP_AMP] = ACTIONS(2884), + [anon_sym_PIPE_PIPE] = ACTIONS(2884), + [anon_sym_or] = ACTIONS(2886), + [sym_none] = ACTIONS(2886), + [sym_true] = ACTIONS(2886), + [sym_false] = ACTIONS(2886), + [sym_nil] = ACTIONS(2886), + [anon_sym_QMARK_DOT] = ACTIONS(2884), + [anon_sym_POUND_LBRACK] = ACTIONS(2884), + [anon_sym_if] = ACTIONS(2886), + [anon_sym_DOLLARif] = ACTIONS(2886), + [anon_sym_is] = ACTIONS(2886), + [anon_sym_BANGis] = ACTIONS(2884), + [anon_sym_in] = ACTIONS(2886), + [anon_sym_BANGin] = ACTIONS(2884), + [anon_sym_match] = ACTIONS(2886), + [anon_sym_select] = ACTIONS(2886), + [anon_sym_lock] = ACTIONS(2886), + [anon_sym_rlock] = ACTIONS(2886), + [anon_sym_unsafe] = ACTIONS(2886), + [anon_sym_sql] = ACTIONS(2886), + [sym_int_literal] = ACTIONS(2886), + [sym_float_literal] = ACTIONS(2884), + [sym_rune_literal] = ACTIONS(2884), + [sym_pseudo_compile_time_identifier] = ACTIONS(2886), + [anon_sym_shared] = ACTIONS(2886), + [anon_sym_map_LBRACK] = ACTIONS(2884), + [anon_sym_chan] = ACTIONS(2886), + [anon_sym_thread] = ACTIONS(2886), + [anon_sym_atomic] = ACTIONS(2886), + [sym___double_quote] = ACTIONS(2884), + [sym___single_quote] = ACTIONS(2884), + [sym___c_double_quote] = ACTIONS(2884), + [sym___c_single_quote] = ACTIONS(2884), + [sym___r_double_quote] = ACTIONS(2884), + [sym___r_single_quote] = ACTIONS(2884), }, [1344] = { [sym_line_comment] = STATE(1344), [sym_block_comment] = STATE(1344), - [sym_identifier] = ACTIONS(2483), + [sym_identifier] = ACTIONS(2714), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(2483), - [anon_sym_as] = ACTIONS(2483), - [anon_sym_LBRACE] = ACTIONS(2481), - [anon_sym_COMMA] = ACTIONS(2481), - [anon_sym_RBRACE] = ACTIONS(2481), - [anon_sym_LPAREN] = ACTIONS(2481), - [anon_sym_PIPE] = ACTIONS(2483), - [anon_sym_fn] = ACTIONS(2483), - [anon_sym_PLUS] = ACTIONS(2483), - [anon_sym_DASH] = ACTIONS(2483), - [anon_sym_STAR] = ACTIONS(2481), - [anon_sym_SLASH] = ACTIONS(2483), - [anon_sym_PERCENT] = ACTIONS(2481), - [anon_sym_LT] = ACTIONS(2483), - [anon_sym_GT] = ACTIONS(2483), - [anon_sym_EQ_EQ] = ACTIONS(2481), - [anon_sym_BANG_EQ] = ACTIONS(2481), - [anon_sym_LT_EQ] = ACTIONS(2481), - [anon_sym_GT_EQ] = ACTIONS(2481), - [anon_sym_LBRACK] = ACTIONS(2481), - [anon_sym_RBRACK] = ACTIONS(2481), - [anon_sym_struct] = ACTIONS(2483), - [anon_sym_mut] = ACTIONS(2483), - [anon_sym_COLON] = ACTIONS(2481), - [anon_sym_PLUS_PLUS] = ACTIONS(2481), - [anon_sym_DASH_DASH] = ACTIONS(2481), - [anon_sym_QMARK] = ACTIONS(2483), - [anon_sym_BANG] = ACTIONS(2483), - [anon_sym_go] = ACTIONS(2483), - [anon_sym_spawn] = ACTIONS(2483), - [anon_sym_json_DOTdecode] = ACTIONS(2481), - [anon_sym_LBRACK2] = ACTIONS(2483), - [anon_sym_TILDE] = ACTIONS(2481), - [anon_sym_CARET] = ACTIONS(2481), - [anon_sym_AMP] = ACTIONS(2483), - [anon_sym_LT_DASH] = ACTIONS(2481), - [anon_sym_LT_LT] = ACTIONS(2481), - [anon_sym_GT_GT] = ACTIONS(2483), - [anon_sym_GT_GT_GT] = ACTIONS(2481), - [anon_sym_AMP_CARET] = ACTIONS(2481), - [anon_sym_AMP_AMP] = ACTIONS(2481), - [anon_sym_PIPE_PIPE] = ACTIONS(2481), - [anon_sym_or] = ACTIONS(2483), - [sym_none] = ACTIONS(2483), - [sym_true] = ACTIONS(2483), - [sym_false] = ACTIONS(2483), - [sym_nil] = ACTIONS(2483), - [anon_sym_QMARK_DOT] = ACTIONS(2481), - [anon_sym_POUND_LBRACK] = ACTIONS(2481), - [anon_sym_if] = ACTIONS(2483), - [anon_sym_DOLLARif] = ACTIONS(2483), - [anon_sym_is] = ACTIONS(2483), - [anon_sym_BANGis] = ACTIONS(2481), - [anon_sym_in] = ACTIONS(2483), - [anon_sym_BANGin] = ACTIONS(2481), - [anon_sym_match] = ACTIONS(2483), - [anon_sym_select] = ACTIONS(2483), - [anon_sym_lock] = ACTIONS(2483), - [anon_sym_rlock] = ACTIONS(2483), - [anon_sym_unsafe] = ACTIONS(2483), - [anon_sym_sql] = ACTIONS(2483), - [sym_int_literal] = ACTIONS(2483), - [sym_float_literal] = ACTIONS(2481), - [sym_rune_literal] = ACTIONS(2481), - [sym_pseudo_compile_time_identifier] = ACTIONS(2483), - [anon_sym_shared] = ACTIONS(2483), - [anon_sym_map_LBRACK] = ACTIONS(2481), - [anon_sym_chan] = ACTIONS(2483), - [anon_sym_thread] = ACTIONS(2483), - [anon_sym_atomic] = ACTIONS(2483), - [sym___double_quote] = ACTIONS(2481), - [sym___single_quote] = ACTIONS(2481), - [sym___c_double_quote] = ACTIONS(2481), - [sym___c_single_quote] = ACTIONS(2481), - [sym___r_double_quote] = ACTIONS(2481), - [sym___r_single_quote] = ACTIONS(2481), + [anon_sym_DOT] = ACTIONS(2714), + [anon_sym_as] = ACTIONS(2714), + [anon_sym_LBRACE] = ACTIONS(2712), + [anon_sym_COMMA] = ACTIONS(2712), + [anon_sym_RBRACE] = ACTIONS(2712), + [anon_sym_LPAREN] = ACTIONS(2712), + [anon_sym_PIPE] = ACTIONS(2714), + [anon_sym_fn] = ACTIONS(2714), + [anon_sym_PLUS] = ACTIONS(2714), + [anon_sym_DASH] = ACTIONS(2714), + [anon_sym_STAR] = ACTIONS(2712), + [anon_sym_SLASH] = ACTIONS(2714), + [anon_sym_PERCENT] = ACTIONS(2712), + [anon_sym_LT] = ACTIONS(2714), + [anon_sym_GT] = ACTIONS(2714), + [anon_sym_EQ_EQ] = ACTIONS(2712), + [anon_sym_BANG_EQ] = ACTIONS(2712), + [anon_sym_LT_EQ] = ACTIONS(2712), + [anon_sym_GT_EQ] = ACTIONS(2712), + [anon_sym_LBRACK] = ACTIONS(2712), + [anon_sym_RBRACK] = ACTIONS(2712), + [anon_sym_struct] = ACTIONS(2714), + [anon_sym_mut] = ACTIONS(2714), + [anon_sym_COLON] = ACTIONS(2712), + [anon_sym_PLUS_PLUS] = ACTIONS(2712), + [anon_sym_DASH_DASH] = ACTIONS(2712), + [anon_sym_QMARK] = ACTIONS(2714), + [anon_sym_BANG] = ACTIONS(2714), + [anon_sym_go] = ACTIONS(2714), + [anon_sym_spawn] = ACTIONS(2714), + [anon_sym_json_DOTdecode] = ACTIONS(2712), + [anon_sym_LBRACK2] = ACTIONS(2714), + [anon_sym_TILDE] = ACTIONS(2712), + [anon_sym_CARET] = ACTIONS(2712), + [anon_sym_AMP] = ACTIONS(2714), + [anon_sym_LT_DASH] = ACTIONS(2712), + [anon_sym_LT_LT] = ACTIONS(2712), + [anon_sym_GT_GT] = ACTIONS(2714), + [anon_sym_GT_GT_GT] = ACTIONS(2712), + [anon_sym_AMP_CARET] = ACTIONS(2712), + [anon_sym_AMP_AMP] = ACTIONS(2712), + [anon_sym_PIPE_PIPE] = ACTIONS(2712), + [anon_sym_or] = ACTIONS(2714), + [sym_none] = ACTIONS(2714), + [sym_true] = ACTIONS(2714), + [sym_false] = ACTIONS(2714), + [sym_nil] = ACTIONS(2714), + [anon_sym_QMARK_DOT] = ACTIONS(2712), + [anon_sym_POUND_LBRACK] = ACTIONS(2712), + [anon_sym_if] = ACTIONS(2714), + [anon_sym_DOLLARif] = ACTIONS(2714), + [anon_sym_is] = ACTIONS(2714), + [anon_sym_BANGis] = ACTIONS(2712), + [anon_sym_in] = ACTIONS(2714), + [anon_sym_BANGin] = ACTIONS(2712), + [anon_sym_match] = ACTIONS(2714), + [anon_sym_select] = ACTIONS(2714), + [anon_sym_lock] = ACTIONS(2714), + [anon_sym_rlock] = ACTIONS(2714), + [anon_sym_unsafe] = ACTIONS(2714), + [anon_sym_sql] = ACTIONS(2714), + [sym_int_literal] = ACTIONS(2714), + [sym_float_literal] = ACTIONS(2712), + [sym_rune_literal] = ACTIONS(2712), + [sym_pseudo_compile_time_identifier] = ACTIONS(2714), + [anon_sym_shared] = ACTIONS(2714), + [anon_sym_map_LBRACK] = ACTIONS(2712), + [anon_sym_chan] = ACTIONS(2714), + [anon_sym_thread] = ACTIONS(2714), + [anon_sym_atomic] = ACTIONS(2714), + [sym___double_quote] = ACTIONS(2712), + [sym___single_quote] = ACTIONS(2712), + [sym___c_double_quote] = ACTIONS(2712), + [sym___c_single_quote] = ACTIONS(2712), + [sym___r_double_quote] = ACTIONS(2712), + [sym___r_single_quote] = ACTIONS(2712), }, [1345] = { [sym_line_comment] = STATE(1345), [sym_block_comment] = STATE(1345), - [sym_identifier] = ACTIONS(2477), + [sym_identifier] = ACTIONS(2297), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(2477), - [anon_sym_as] = ACTIONS(2477), - [anon_sym_LBRACE] = ACTIONS(2475), - [anon_sym_COMMA] = ACTIONS(2475), - [anon_sym_RBRACE] = ACTIONS(2475), - [anon_sym_LPAREN] = ACTIONS(2475), - [anon_sym_PIPE] = ACTIONS(2477), - [anon_sym_fn] = ACTIONS(2477), - [anon_sym_PLUS] = ACTIONS(2477), - [anon_sym_DASH] = ACTIONS(2477), - [anon_sym_STAR] = ACTIONS(2475), - [anon_sym_SLASH] = ACTIONS(2477), - [anon_sym_PERCENT] = ACTIONS(2475), - [anon_sym_LT] = ACTIONS(2477), - [anon_sym_GT] = ACTIONS(2477), - [anon_sym_EQ_EQ] = ACTIONS(2475), - [anon_sym_BANG_EQ] = ACTIONS(2475), - [anon_sym_LT_EQ] = ACTIONS(2475), - [anon_sym_GT_EQ] = ACTIONS(2475), - [anon_sym_LBRACK] = ACTIONS(2475), - [anon_sym_RBRACK] = ACTIONS(2475), - [anon_sym_struct] = ACTIONS(2477), - [anon_sym_mut] = ACTIONS(2477), - [anon_sym_COLON] = ACTIONS(2475), - [anon_sym_PLUS_PLUS] = ACTIONS(2475), - [anon_sym_DASH_DASH] = ACTIONS(2475), - [anon_sym_QMARK] = ACTIONS(2477), - [anon_sym_BANG] = ACTIONS(2477), - [anon_sym_go] = ACTIONS(2477), - [anon_sym_spawn] = ACTIONS(2477), - [anon_sym_json_DOTdecode] = ACTIONS(2475), - [anon_sym_LBRACK2] = ACTIONS(2477), - [anon_sym_TILDE] = ACTIONS(2475), - [anon_sym_CARET] = ACTIONS(2475), - [anon_sym_AMP] = ACTIONS(2477), - [anon_sym_LT_DASH] = ACTIONS(2475), - [anon_sym_LT_LT] = ACTIONS(2475), - [anon_sym_GT_GT] = ACTIONS(2477), - [anon_sym_GT_GT_GT] = ACTIONS(2475), - [anon_sym_AMP_CARET] = ACTIONS(2475), - [anon_sym_AMP_AMP] = ACTIONS(2475), - [anon_sym_PIPE_PIPE] = ACTIONS(2475), - [anon_sym_or] = ACTIONS(2477), - [sym_none] = ACTIONS(2477), - [sym_true] = ACTIONS(2477), - [sym_false] = ACTIONS(2477), - [sym_nil] = ACTIONS(2477), - [anon_sym_QMARK_DOT] = ACTIONS(2475), - [anon_sym_POUND_LBRACK] = ACTIONS(2475), - [anon_sym_if] = ACTIONS(2477), - [anon_sym_DOLLARif] = ACTIONS(2477), - [anon_sym_is] = ACTIONS(2477), - [anon_sym_BANGis] = ACTIONS(2475), - [anon_sym_in] = ACTIONS(2477), - [anon_sym_BANGin] = ACTIONS(2475), - [anon_sym_match] = ACTIONS(2477), - [anon_sym_select] = ACTIONS(2477), - [anon_sym_lock] = ACTIONS(2477), - [anon_sym_rlock] = ACTIONS(2477), - [anon_sym_unsafe] = ACTIONS(2477), - [anon_sym_sql] = ACTIONS(2477), - [sym_int_literal] = ACTIONS(2477), - [sym_float_literal] = ACTIONS(2475), - [sym_rune_literal] = ACTIONS(2475), - [sym_pseudo_compile_time_identifier] = ACTIONS(2477), - [anon_sym_shared] = ACTIONS(2477), - [anon_sym_map_LBRACK] = ACTIONS(2475), - [anon_sym_chan] = ACTIONS(2477), - [anon_sym_thread] = ACTIONS(2477), - [anon_sym_atomic] = ACTIONS(2477), - [sym___double_quote] = ACTIONS(2475), - [sym___single_quote] = ACTIONS(2475), - [sym___c_double_quote] = ACTIONS(2475), - [sym___c_single_quote] = ACTIONS(2475), - [sym___r_double_quote] = ACTIONS(2475), - [sym___r_single_quote] = ACTIONS(2475), + [anon_sym_DOT] = ACTIONS(2297), + [anon_sym_as] = ACTIONS(2297), + [anon_sym_LBRACE] = ACTIONS(2295), + [anon_sym_COMMA] = ACTIONS(2295), + [anon_sym_RBRACE] = ACTIONS(2295), + [anon_sym_LPAREN] = ACTIONS(2295), + [anon_sym_PIPE] = ACTIONS(2297), + [anon_sym_fn] = ACTIONS(2297), + [anon_sym_PLUS] = ACTIONS(2297), + [anon_sym_DASH] = ACTIONS(2297), + [anon_sym_STAR] = ACTIONS(2295), + [anon_sym_SLASH] = ACTIONS(2297), + [anon_sym_PERCENT] = ACTIONS(2295), + [anon_sym_LT] = ACTIONS(2297), + [anon_sym_GT] = ACTIONS(2297), + [anon_sym_EQ_EQ] = ACTIONS(2295), + [anon_sym_BANG_EQ] = ACTIONS(2295), + [anon_sym_LT_EQ] = ACTIONS(2295), + [anon_sym_GT_EQ] = ACTIONS(2295), + [anon_sym_LBRACK] = ACTIONS(2295), + [anon_sym_RBRACK] = ACTIONS(2295), + [anon_sym_struct] = ACTIONS(2297), + [anon_sym_mut] = ACTIONS(2297), + [anon_sym_COLON] = ACTIONS(2295), + [anon_sym_PLUS_PLUS] = ACTIONS(2295), + [anon_sym_DASH_DASH] = ACTIONS(2295), + [anon_sym_QMARK] = ACTIONS(2297), + [anon_sym_BANG] = ACTIONS(2297), + [anon_sym_go] = ACTIONS(2297), + [anon_sym_spawn] = ACTIONS(2297), + [anon_sym_json_DOTdecode] = ACTIONS(2295), + [anon_sym_LBRACK2] = ACTIONS(2297), + [anon_sym_TILDE] = ACTIONS(2295), + [anon_sym_CARET] = ACTIONS(2295), + [anon_sym_AMP] = ACTIONS(2297), + [anon_sym_LT_DASH] = ACTIONS(2295), + [anon_sym_LT_LT] = ACTIONS(2295), + [anon_sym_GT_GT] = ACTIONS(2297), + [anon_sym_GT_GT_GT] = ACTIONS(2295), + [anon_sym_AMP_CARET] = ACTIONS(2295), + [anon_sym_AMP_AMP] = ACTIONS(2295), + [anon_sym_PIPE_PIPE] = ACTIONS(2295), + [anon_sym_or] = ACTIONS(2297), + [sym_none] = ACTIONS(2297), + [sym_true] = ACTIONS(2297), + [sym_false] = ACTIONS(2297), + [sym_nil] = ACTIONS(2297), + [anon_sym_QMARK_DOT] = ACTIONS(2295), + [anon_sym_POUND_LBRACK] = ACTIONS(2295), + [anon_sym_if] = ACTIONS(2297), + [anon_sym_DOLLARif] = ACTIONS(2297), + [anon_sym_is] = ACTIONS(2297), + [anon_sym_BANGis] = ACTIONS(2295), + [anon_sym_in] = ACTIONS(2297), + [anon_sym_BANGin] = ACTIONS(2295), + [anon_sym_match] = ACTIONS(2297), + [anon_sym_select] = ACTIONS(2297), + [anon_sym_lock] = ACTIONS(2297), + [anon_sym_rlock] = ACTIONS(2297), + [anon_sym_unsafe] = ACTIONS(2297), + [anon_sym_sql] = ACTIONS(2297), + [sym_int_literal] = ACTIONS(2297), + [sym_float_literal] = ACTIONS(2295), + [sym_rune_literal] = ACTIONS(2295), + [sym_pseudo_compile_time_identifier] = ACTIONS(2297), + [anon_sym_shared] = ACTIONS(2297), + [anon_sym_map_LBRACK] = ACTIONS(2295), + [anon_sym_chan] = ACTIONS(2297), + [anon_sym_thread] = ACTIONS(2297), + [anon_sym_atomic] = ACTIONS(2297), + [sym___double_quote] = ACTIONS(2295), + [sym___single_quote] = ACTIONS(2295), + [sym___c_double_quote] = ACTIONS(2295), + [sym___c_single_quote] = ACTIONS(2295), + [sym___r_double_quote] = ACTIONS(2295), + [sym___r_single_quote] = ACTIONS(2295), }, [1346] = { [sym_line_comment] = STATE(1346), [sym_block_comment] = STATE(1346), - [sym_identifier] = ACTIONS(2251), + [sym_identifier] = ACTIONS(2858), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(2253), - [anon_sym_as] = ACTIONS(2253), - [anon_sym_LBRACE] = ACTIONS(2249), - [anon_sym_COMMA] = ACTIONS(2249), - [anon_sym_RBRACE] = ACTIONS(2249), - [anon_sym_LPAREN] = ACTIONS(2256), - [anon_sym_PIPE] = ACTIONS(2253), - [anon_sym_fn] = ACTIONS(2251), - [anon_sym_PLUS] = ACTIONS(2253), - [anon_sym_DASH] = ACTIONS(2253), - [anon_sym_STAR] = ACTIONS(2256), - [anon_sym_SLASH] = ACTIONS(2253), - [anon_sym_PERCENT] = ACTIONS(2256), - [anon_sym_LT] = ACTIONS(2253), - [anon_sym_GT] = ACTIONS(2253), - [anon_sym_EQ_EQ] = ACTIONS(2256), - [anon_sym_BANG_EQ] = ACTIONS(2256), - [anon_sym_LT_EQ] = ACTIONS(2256), - [anon_sym_GT_EQ] = ACTIONS(2256), - [anon_sym_LBRACK] = ACTIONS(2256), - [anon_sym_RBRACK] = ACTIONS(2249), - [anon_sym_struct] = ACTIONS(2251), - [anon_sym_mut] = ACTIONS(2251), - [anon_sym_COLON] = ACTIONS(2249), - [anon_sym_PLUS_PLUS] = ACTIONS(2256), - [anon_sym_DASH_DASH] = ACTIONS(2256), - [anon_sym_QMARK] = ACTIONS(2253), - [anon_sym_BANG] = ACTIONS(2253), - [anon_sym_go] = ACTIONS(2251), - [anon_sym_spawn] = ACTIONS(2251), - [anon_sym_json_DOTdecode] = ACTIONS(2249), - [anon_sym_LBRACK2] = ACTIONS(2253), - [anon_sym_TILDE] = ACTIONS(2249), - [anon_sym_CARET] = ACTIONS(2256), - [anon_sym_AMP] = ACTIONS(2253), - [anon_sym_LT_DASH] = ACTIONS(2249), - [anon_sym_LT_LT] = ACTIONS(2256), - [anon_sym_GT_GT] = ACTIONS(2253), - [anon_sym_GT_GT_GT] = ACTIONS(2256), - [anon_sym_AMP_CARET] = ACTIONS(2256), - [anon_sym_AMP_AMP] = ACTIONS(2256), - [anon_sym_PIPE_PIPE] = ACTIONS(2256), - [anon_sym_or] = ACTIONS(2253), - [sym_none] = ACTIONS(2251), - [sym_true] = ACTIONS(2251), - [sym_false] = ACTIONS(2251), - [sym_nil] = ACTIONS(2251), - [anon_sym_QMARK_DOT] = ACTIONS(2256), - [anon_sym_POUND_LBRACK] = ACTIONS(2256), - [anon_sym_if] = ACTIONS(2251), - [anon_sym_DOLLARif] = ACTIONS(2251), - [anon_sym_is] = ACTIONS(2253), - [anon_sym_BANGis] = ACTIONS(2256), - [anon_sym_in] = ACTIONS(2253), - [anon_sym_BANGin] = ACTIONS(2256), - [anon_sym_match] = ACTIONS(2251), - [anon_sym_select] = ACTIONS(2251), - [anon_sym_lock] = ACTIONS(2251), - [anon_sym_rlock] = ACTIONS(2251), - [anon_sym_unsafe] = ACTIONS(2251), - [anon_sym_sql] = ACTIONS(2251), - [sym_int_literal] = ACTIONS(2251), - [sym_float_literal] = ACTIONS(2249), - [sym_rune_literal] = ACTIONS(2249), - [sym_pseudo_compile_time_identifier] = ACTIONS(2251), - [anon_sym_shared] = ACTIONS(2251), - [anon_sym_map_LBRACK] = ACTIONS(2249), - [anon_sym_chan] = ACTIONS(2251), - [anon_sym_thread] = ACTIONS(2251), - [anon_sym_atomic] = ACTIONS(2251), - [sym___double_quote] = ACTIONS(2249), - [sym___single_quote] = ACTIONS(2249), - [sym___c_double_quote] = ACTIONS(2249), - [sym___c_single_quote] = ACTIONS(2249), - [sym___r_double_quote] = ACTIONS(2249), - [sym___r_single_quote] = ACTIONS(2249), + [anon_sym_DOT] = ACTIONS(2858), + [anon_sym_as] = ACTIONS(2858), + [anon_sym_LBRACE] = ACTIONS(2856), + [anon_sym_COMMA] = ACTIONS(2856), + [anon_sym_RBRACE] = ACTIONS(2856), + [anon_sym_LPAREN] = ACTIONS(2856), + [anon_sym_PIPE] = ACTIONS(2858), + [anon_sym_fn] = ACTIONS(2858), + [anon_sym_PLUS] = ACTIONS(2858), + [anon_sym_DASH] = ACTIONS(2858), + [anon_sym_STAR] = ACTIONS(2856), + [anon_sym_SLASH] = ACTIONS(2858), + [anon_sym_PERCENT] = ACTIONS(2856), + [anon_sym_LT] = ACTIONS(2858), + [anon_sym_GT] = ACTIONS(2858), + [anon_sym_EQ_EQ] = ACTIONS(2856), + [anon_sym_BANG_EQ] = ACTIONS(2856), + [anon_sym_LT_EQ] = ACTIONS(2856), + [anon_sym_GT_EQ] = ACTIONS(2856), + [anon_sym_LBRACK] = ACTIONS(2856), + [anon_sym_RBRACK] = ACTIONS(2856), + [anon_sym_struct] = ACTIONS(2858), + [anon_sym_mut] = ACTIONS(2858), + [anon_sym_COLON] = ACTIONS(2856), + [anon_sym_PLUS_PLUS] = ACTIONS(2856), + [anon_sym_DASH_DASH] = ACTIONS(2856), + [anon_sym_QMARK] = ACTIONS(2858), + [anon_sym_BANG] = ACTIONS(2858), + [anon_sym_go] = ACTIONS(2858), + [anon_sym_spawn] = ACTIONS(2858), + [anon_sym_json_DOTdecode] = ACTIONS(2856), + [anon_sym_LBRACK2] = ACTIONS(2858), + [anon_sym_TILDE] = ACTIONS(2856), + [anon_sym_CARET] = ACTIONS(2856), + [anon_sym_AMP] = ACTIONS(2858), + [anon_sym_LT_DASH] = ACTIONS(2856), + [anon_sym_LT_LT] = ACTIONS(2856), + [anon_sym_GT_GT] = ACTIONS(2858), + [anon_sym_GT_GT_GT] = ACTIONS(2856), + [anon_sym_AMP_CARET] = ACTIONS(2856), + [anon_sym_AMP_AMP] = ACTIONS(2856), + [anon_sym_PIPE_PIPE] = ACTIONS(2856), + [anon_sym_or] = ACTIONS(2858), + [sym_none] = ACTIONS(2858), + [sym_true] = ACTIONS(2858), + [sym_false] = ACTIONS(2858), + [sym_nil] = ACTIONS(2858), + [anon_sym_QMARK_DOT] = ACTIONS(2856), + [anon_sym_POUND_LBRACK] = ACTIONS(2856), + [anon_sym_if] = ACTIONS(2858), + [anon_sym_DOLLARif] = ACTIONS(2858), + [anon_sym_is] = ACTIONS(2858), + [anon_sym_BANGis] = ACTIONS(2856), + [anon_sym_in] = ACTIONS(2858), + [anon_sym_BANGin] = ACTIONS(2856), + [anon_sym_match] = ACTIONS(2858), + [anon_sym_select] = ACTIONS(2858), + [anon_sym_lock] = ACTIONS(2858), + [anon_sym_rlock] = ACTIONS(2858), + [anon_sym_unsafe] = ACTIONS(2858), + [anon_sym_sql] = ACTIONS(2858), + [sym_int_literal] = ACTIONS(2858), + [sym_float_literal] = ACTIONS(2856), + [sym_rune_literal] = ACTIONS(2856), + [sym_pseudo_compile_time_identifier] = ACTIONS(2858), + [anon_sym_shared] = ACTIONS(2858), + [anon_sym_map_LBRACK] = ACTIONS(2856), + [anon_sym_chan] = ACTIONS(2858), + [anon_sym_thread] = ACTIONS(2858), + [anon_sym_atomic] = ACTIONS(2858), + [sym___double_quote] = ACTIONS(2856), + [sym___single_quote] = ACTIONS(2856), + [sym___c_double_quote] = ACTIONS(2856), + [sym___c_single_quote] = ACTIONS(2856), + [sym___r_double_quote] = ACTIONS(2856), + [sym___r_single_quote] = ACTIONS(2856), }, [1347] = { [sym_line_comment] = STATE(1347), [sym_block_comment] = STATE(1347), - [sym_identifier] = ACTIONS(2315), + [sym_identifier] = ACTIONS(2303), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(2315), - [anon_sym_as] = ACTIONS(2315), - [anon_sym_LBRACE] = ACTIONS(2313), - [anon_sym_COMMA] = ACTIONS(2313), - [anon_sym_RBRACE] = ACTIONS(2313), - [anon_sym_LPAREN] = ACTIONS(2313), - [anon_sym_PIPE] = ACTIONS(2315), - [anon_sym_fn] = ACTIONS(2315), - [anon_sym_PLUS] = ACTIONS(2315), - [anon_sym_DASH] = ACTIONS(2315), - [anon_sym_STAR] = ACTIONS(2313), - [anon_sym_SLASH] = ACTIONS(2315), - [anon_sym_PERCENT] = ACTIONS(2313), - [anon_sym_LT] = ACTIONS(2315), - [anon_sym_GT] = ACTIONS(2315), - [anon_sym_EQ_EQ] = ACTIONS(2313), - [anon_sym_BANG_EQ] = ACTIONS(2313), - [anon_sym_LT_EQ] = ACTIONS(2313), - [anon_sym_GT_EQ] = ACTIONS(2313), - [anon_sym_LBRACK] = ACTIONS(2313), - [anon_sym_RBRACK] = ACTIONS(2313), - [anon_sym_struct] = ACTIONS(2315), - [anon_sym_mut] = ACTIONS(2315), - [anon_sym_COLON] = ACTIONS(2313), - [anon_sym_PLUS_PLUS] = ACTIONS(2313), - [anon_sym_DASH_DASH] = ACTIONS(2313), - [anon_sym_QMARK] = ACTIONS(2315), - [anon_sym_BANG] = ACTIONS(2315), - [anon_sym_go] = ACTIONS(2315), - [anon_sym_spawn] = ACTIONS(2315), - [anon_sym_json_DOTdecode] = ACTIONS(2313), - [anon_sym_LBRACK2] = ACTIONS(2315), - [anon_sym_TILDE] = ACTIONS(2313), - [anon_sym_CARET] = ACTIONS(2313), - [anon_sym_AMP] = ACTIONS(2315), - [anon_sym_LT_DASH] = ACTIONS(2313), - [anon_sym_LT_LT] = ACTIONS(2313), - [anon_sym_GT_GT] = ACTIONS(2315), - [anon_sym_GT_GT_GT] = ACTIONS(2313), - [anon_sym_AMP_CARET] = ACTIONS(2313), - [anon_sym_AMP_AMP] = ACTIONS(2313), - [anon_sym_PIPE_PIPE] = ACTIONS(2313), - [anon_sym_or] = ACTIONS(2315), - [sym_none] = ACTIONS(2315), - [sym_true] = ACTIONS(2315), - [sym_false] = ACTIONS(2315), - [sym_nil] = ACTIONS(2315), - [anon_sym_QMARK_DOT] = ACTIONS(2313), - [anon_sym_POUND_LBRACK] = ACTIONS(2313), - [anon_sym_if] = ACTIONS(2315), - [anon_sym_DOLLARif] = ACTIONS(2315), - [anon_sym_is] = ACTIONS(2315), - [anon_sym_BANGis] = ACTIONS(2313), - [anon_sym_in] = ACTIONS(2315), - [anon_sym_BANGin] = ACTIONS(2313), - [anon_sym_match] = ACTIONS(2315), - [anon_sym_select] = ACTIONS(2315), - [anon_sym_lock] = ACTIONS(2315), - [anon_sym_rlock] = ACTIONS(2315), - [anon_sym_unsafe] = ACTIONS(2315), - [anon_sym_sql] = ACTIONS(2315), - [sym_int_literal] = ACTIONS(2315), - [sym_float_literal] = ACTIONS(2313), - [sym_rune_literal] = ACTIONS(2313), - [sym_pseudo_compile_time_identifier] = ACTIONS(2315), - [anon_sym_shared] = ACTIONS(2315), - [anon_sym_map_LBRACK] = ACTIONS(2313), - [anon_sym_chan] = ACTIONS(2315), - [anon_sym_thread] = ACTIONS(2315), - [anon_sym_atomic] = ACTIONS(2315), - [sym___double_quote] = ACTIONS(2313), - [sym___single_quote] = ACTIONS(2313), - [sym___c_double_quote] = ACTIONS(2313), - [sym___c_single_quote] = ACTIONS(2313), - [sym___r_double_quote] = ACTIONS(2313), - [sym___r_single_quote] = ACTIONS(2313), + [anon_sym_DOT] = ACTIONS(2303), + [anon_sym_as] = ACTIONS(2303), + [anon_sym_LBRACE] = ACTIONS(2301), + [anon_sym_COMMA] = ACTIONS(2301), + [anon_sym_RBRACE] = ACTIONS(2301), + [anon_sym_LPAREN] = ACTIONS(2301), + [anon_sym_PIPE] = ACTIONS(2303), + [anon_sym_fn] = ACTIONS(2303), + [anon_sym_PLUS] = ACTIONS(2303), + [anon_sym_DASH] = ACTIONS(2303), + [anon_sym_STAR] = ACTIONS(2301), + [anon_sym_SLASH] = ACTIONS(2303), + [anon_sym_PERCENT] = ACTIONS(2301), + [anon_sym_LT] = ACTIONS(2303), + [anon_sym_GT] = ACTIONS(2303), + [anon_sym_EQ_EQ] = ACTIONS(2301), + [anon_sym_BANG_EQ] = ACTIONS(2301), + [anon_sym_LT_EQ] = ACTIONS(2301), + [anon_sym_GT_EQ] = ACTIONS(2301), + [anon_sym_LBRACK] = ACTIONS(2301), + [anon_sym_RBRACK] = ACTIONS(2301), + [anon_sym_struct] = ACTIONS(2303), + [anon_sym_mut] = ACTIONS(2303), + [anon_sym_COLON] = ACTIONS(2301), + [anon_sym_PLUS_PLUS] = ACTIONS(2301), + [anon_sym_DASH_DASH] = ACTIONS(2301), + [anon_sym_QMARK] = ACTIONS(2303), + [anon_sym_BANG] = ACTIONS(2303), + [anon_sym_go] = ACTIONS(2303), + [anon_sym_spawn] = ACTIONS(2303), + [anon_sym_json_DOTdecode] = ACTIONS(2301), + [anon_sym_LBRACK2] = ACTIONS(2303), + [anon_sym_TILDE] = ACTIONS(2301), + [anon_sym_CARET] = ACTIONS(2301), + [anon_sym_AMP] = ACTIONS(2303), + [anon_sym_LT_DASH] = ACTIONS(2301), + [anon_sym_LT_LT] = ACTIONS(2301), + [anon_sym_GT_GT] = ACTIONS(2303), + [anon_sym_GT_GT_GT] = ACTIONS(2301), + [anon_sym_AMP_CARET] = ACTIONS(2301), + [anon_sym_AMP_AMP] = ACTIONS(2301), + [anon_sym_PIPE_PIPE] = ACTIONS(2301), + [anon_sym_or] = ACTIONS(2303), + [sym_none] = ACTIONS(2303), + [sym_true] = ACTIONS(2303), + [sym_false] = ACTIONS(2303), + [sym_nil] = ACTIONS(2303), + [anon_sym_QMARK_DOT] = ACTIONS(2301), + [anon_sym_POUND_LBRACK] = ACTIONS(2301), + [anon_sym_if] = ACTIONS(2303), + [anon_sym_DOLLARif] = ACTIONS(2303), + [anon_sym_is] = ACTIONS(2303), + [anon_sym_BANGis] = ACTIONS(2301), + [anon_sym_in] = ACTIONS(2303), + [anon_sym_BANGin] = ACTIONS(2301), + [anon_sym_match] = ACTIONS(2303), + [anon_sym_select] = ACTIONS(2303), + [anon_sym_lock] = ACTIONS(2303), + [anon_sym_rlock] = ACTIONS(2303), + [anon_sym_unsafe] = ACTIONS(2303), + [anon_sym_sql] = ACTIONS(2303), + [sym_int_literal] = ACTIONS(2303), + [sym_float_literal] = ACTIONS(2301), + [sym_rune_literal] = ACTIONS(2301), + [sym_pseudo_compile_time_identifier] = ACTIONS(2303), + [anon_sym_shared] = ACTIONS(2303), + [anon_sym_map_LBRACK] = ACTIONS(2301), + [anon_sym_chan] = ACTIONS(2303), + [anon_sym_thread] = ACTIONS(2303), + [anon_sym_atomic] = ACTIONS(2303), + [sym___double_quote] = ACTIONS(2301), + [sym___single_quote] = ACTIONS(2301), + [sym___c_double_quote] = ACTIONS(2301), + [sym___c_single_quote] = ACTIONS(2301), + [sym___r_double_quote] = ACTIONS(2301), + [sym___r_single_quote] = ACTIONS(2301), }, [1348] = { [sym_line_comment] = STATE(1348), [sym_block_comment] = STATE(1348), - [sym_identifier] = ACTIONS(2507), + [sym_identifier] = ACTIONS(3054), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1853), - [anon_sym_as] = ACTIONS(2507), - [anon_sym_LBRACE] = ACTIONS(2505), - [anon_sym_COMMA] = ACTIONS(2505), - [anon_sym_RBRACE] = ACTIONS(2505), - [anon_sym_LPAREN] = ACTIONS(2505), - [anon_sym_PIPE] = ACTIONS(2507), - [anon_sym_fn] = ACTIONS(2507), - [anon_sym_PLUS] = ACTIONS(2507), - [anon_sym_DASH] = ACTIONS(2507), - [anon_sym_STAR] = ACTIONS(2505), - [anon_sym_SLASH] = ACTIONS(2507), - [anon_sym_PERCENT] = ACTIONS(2505), - [anon_sym_LT] = ACTIONS(2507), - [anon_sym_GT] = ACTIONS(2507), - [anon_sym_EQ_EQ] = ACTIONS(2505), - [anon_sym_BANG_EQ] = ACTIONS(2505), - [anon_sym_LT_EQ] = ACTIONS(2505), - [anon_sym_GT_EQ] = ACTIONS(2505), - [anon_sym_LBRACK] = ACTIONS(2505), - [anon_sym_RBRACK] = ACTIONS(2505), - [anon_sym_struct] = ACTIONS(2507), - [anon_sym_mut] = ACTIONS(2507), - [anon_sym_COLON] = ACTIONS(2505), - [anon_sym_PLUS_PLUS] = ACTIONS(2505), - [anon_sym_DASH_DASH] = ACTIONS(2505), - [anon_sym_QMARK] = ACTIONS(2507), - [anon_sym_BANG] = ACTIONS(2507), - [anon_sym_go] = ACTIONS(2507), - [anon_sym_spawn] = ACTIONS(2507), - [anon_sym_json_DOTdecode] = ACTIONS(2505), - [anon_sym_LBRACK2] = ACTIONS(2507), - [anon_sym_TILDE] = ACTIONS(2505), - [anon_sym_CARET] = ACTIONS(2505), - [anon_sym_AMP] = ACTIONS(2507), - [anon_sym_LT_DASH] = ACTIONS(2505), - [anon_sym_LT_LT] = ACTIONS(2505), - [anon_sym_GT_GT] = ACTIONS(2507), - [anon_sym_GT_GT_GT] = ACTIONS(2505), - [anon_sym_AMP_CARET] = ACTIONS(2505), - [anon_sym_AMP_AMP] = ACTIONS(2505), - [anon_sym_PIPE_PIPE] = ACTIONS(2505), - [anon_sym_or] = ACTIONS(2507), - [sym_none] = ACTIONS(2507), - [sym_true] = ACTIONS(2507), - [sym_false] = ACTIONS(2507), - [sym_nil] = ACTIONS(2507), - [anon_sym_QMARK_DOT] = ACTIONS(2505), - [anon_sym_POUND_LBRACK] = ACTIONS(2505), - [anon_sym_if] = ACTIONS(2507), - [anon_sym_DOLLARif] = ACTIONS(2507), - [anon_sym_is] = ACTIONS(2507), - [anon_sym_BANGis] = ACTIONS(2505), - [anon_sym_in] = ACTIONS(2507), - [anon_sym_BANGin] = ACTIONS(2505), - [anon_sym_match] = ACTIONS(2507), - [anon_sym_select] = ACTIONS(2507), - [anon_sym_lock] = ACTIONS(2507), - [anon_sym_rlock] = ACTIONS(2507), - [anon_sym_unsafe] = ACTIONS(2507), - [anon_sym_sql] = ACTIONS(2507), - [sym_int_literal] = ACTIONS(2507), - [sym_float_literal] = ACTIONS(2505), - [sym_rune_literal] = ACTIONS(2505), - [sym_pseudo_compile_time_identifier] = ACTIONS(2507), - [anon_sym_shared] = ACTIONS(2507), - [anon_sym_map_LBRACK] = ACTIONS(2505), - [anon_sym_chan] = ACTIONS(2507), - [anon_sym_thread] = ACTIONS(2507), - [anon_sym_atomic] = ACTIONS(2507), - [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), + [anon_sym_DOT] = ACTIONS(3054), + [anon_sym_as] = ACTIONS(3054), + [anon_sym_LBRACE] = ACTIONS(3052), + [anon_sym_COMMA] = ACTIONS(3052), + [anon_sym_RBRACE] = ACTIONS(3052), + [anon_sym_LPAREN] = ACTIONS(3052), + [anon_sym_PIPE] = ACTIONS(3054), + [anon_sym_fn] = ACTIONS(3054), + [anon_sym_PLUS] = ACTIONS(3054), + [anon_sym_DASH] = ACTIONS(3054), + [anon_sym_STAR] = ACTIONS(3052), + [anon_sym_SLASH] = ACTIONS(3054), + [anon_sym_PERCENT] = ACTIONS(3052), + [anon_sym_LT] = ACTIONS(3054), + [anon_sym_GT] = ACTIONS(3054), + [anon_sym_EQ_EQ] = ACTIONS(3052), + [anon_sym_BANG_EQ] = ACTIONS(3052), + [anon_sym_LT_EQ] = ACTIONS(3052), + [anon_sym_GT_EQ] = ACTIONS(3052), + [anon_sym_LBRACK] = ACTIONS(3052), + [anon_sym_RBRACK] = ACTIONS(3052), + [anon_sym_struct] = ACTIONS(3054), + [anon_sym_mut] = ACTIONS(3054), + [anon_sym_COLON] = ACTIONS(3052), + [anon_sym_PLUS_PLUS] = ACTIONS(3052), + [anon_sym_DASH_DASH] = ACTIONS(3052), + [anon_sym_QMARK] = ACTIONS(3054), + [anon_sym_BANG] = ACTIONS(3054), + [anon_sym_go] = ACTIONS(3054), + [anon_sym_spawn] = ACTIONS(3054), + [anon_sym_json_DOTdecode] = ACTIONS(3052), + [anon_sym_LBRACK2] = ACTIONS(3054), + [anon_sym_TILDE] = ACTIONS(3052), + [anon_sym_CARET] = ACTIONS(3052), + [anon_sym_AMP] = ACTIONS(3054), + [anon_sym_LT_DASH] = ACTIONS(3052), + [anon_sym_LT_LT] = ACTIONS(3052), + [anon_sym_GT_GT] = ACTIONS(3054), + [anon_sym_GT_GT_GT] = ACTIONS(3052), + [anon_sym_AMP_CARET] = ACTIONS(3052), + [anon_sym_AMP_AMP] = ACTIONS(3052), + [anon_sym_PIPE_PIPE] = ACTIONS(3052), + [anon_sym_or] = ACTIONS(3054), + [sym_none] = ACTIONS(3054), + [sym_true] = ACTIONS(3054), + [sym_false] = ACTIONS(3054), + [sym_nil] = ACTIONS(3054), + [anon_sym_QMARK_DOT] = ACTIONS(3052), + [anon_sym_POUND_LBRACK] = ACTIONS(3052), + [anon_sym_if] = ACTIONS(3054), + [anon_sym_DOLLARif] = ACTIONS(3054), + [anon_sym_is] = ACTIONS(3054), + [anon_sym_BANGis] = ACTIONS(3052), + [anon_sym_in] = ACTIONS(3054), + [anon_sym_BANGin] = ACTIONS(3052), + [anon_sym_match] = ACTIONS(3054), + [anon_sym_select] = ACTIONS(3054), + [anon_sym_lock] = ACTIONS(3054), + [anon_sym_rlock] = ACTIONS(3054), + [anon_sym_unsafe] = ACTIONS(3054), + [anon_sym_sql] = ACTIONS(3054), + [sym_int_literal] = ACTIONS(3054), + [sym_float_literal] = ACTIONS(3052), + [sym_rune_literal] = ACTIONS(3052), + [sym_pseudo_compile_time_identifier] = ACTIONS(3054), + [anon_sym_shared] = ACTIONS(3054), + [anon_sym_map_LBRACK] = ACTIONS(3052), + [anon_sym_chan] = ACTIONS(3054), + [anon_sym_thread] = ACTIONS(3054), + [anon_sym_atomic] = ACTIONS(3054), + [sym___double_quote] = ACTIONS(3052), + [sym___single_quote] = ACTIONS(3052), + [sym___c_double_quote] = ACTIONS(3052), + [sym___c_single_quote] = ACTIONS(3052), + [sym___r_double_quote] = ACTIONS(3052), + [sym___r_single_quote] = ACTIONS(3052), }, [1349] = { [sym_line_comment] = STATE(1349), @@ -169006,6 +169057,255 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [1350] = { [sym_line_comment] = STATE(1350), [sym_block_comment] = STATE(1350), + [sym_identifier] = ACTIONS(2828), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(2828), + [anon_sym_as] = ACTIONS(2828), + [anon_sym_LBRACE] = ACTIONS(2826), + [anon_sym_COMMA] = ACTIONS(2826), + [anon_sym_RBRACE] = ACTIONS(2826), + [anon_sym_LPAREN] = ACTIONS(2826), + [anon_sym_PIPE] = ACTIONS(2828), + [anon_sym_fn] = ACTIONS(2828), + [anon_sym_PLUS] = ACTIONS(2828), + [anon_sym_DASH] = ACTIONS(2828), + [anon_sym_STAR] = ACTIONS(2826), + [anon_sym_SLASH] = ACTIONS(2828), + [anon_sym_PERCENT] = ACTIONS(2826), + [anon_sym_LT] = ACTIONS(2828), + [anon_sym_GT] = ACTIONS(2828), + [anon_sym_EQ_EQ] = ACTIONS(2826), + [anon_sym_BANG_EQ] = ACTIONS(2826), + [anon_sym_LT_EQ] = ACTIONS(2826), + [anon_sym_GT_EQ] = ACTIONS(2826), + [anon_sym_LBRACK] = ACTIONS(2826), + [anon_sym_RBRACK] = ACTIONS(2826), + [anon_sym_struct] = ACTIONS(2828), + [anon_sym_mut] = ACTIONS(2828), + [anon_sym_COLON] = ACTIONS(2826), + [anon_sym_PLUS_PLUS] = ACTIONS(2826), + [anon_sym_DASH_DASH] = ACTIONS(2826), + [anon_sym_QMARK] = ACTIONS(2828), + [anon_sym_BANG] = ACTIONS(2828), + [anon_sym_go] = ACTIONS(2828), + [anon_sym_spawn] = ACTIONS(2828), + [anon_sym_json_DOTdecode] = ACTIONS(2826), + [anon_sym_LBRACK2] = ACTIONS(2828), + [anon_sym_TILDE] = ACTIONS(2826), + [anon_sym_CARET] = ACTIONS(2826), + [anon_sym_AMP] = ACTIONS(2828), + [anon_sym_LT_DASH] = ACTIONS(2826), + [anon_sym_LT_LT] = ACTIONS(2826), + [anon_sym_GT_GT] = ACTIONS(2828), + [anon_sym_GT_GT_GT] = ACTIONS(2826), + [anon_sym_AMP_CARET] = ACTIONS(2826), + [anon_sym_AMP_AMP] = ACTIONS(2826), + [anon_sym_PIPE_PIPE] = ACTIONS(2826), + [anon_sym_or] = ACTIONS(2828), + [sym_none] = ACTIONS(2828), + [sym_true] = ACTIONS(2828), + [sym_false] = ACTIONS(2828), + [sym_nil] = ACTIONS(2828), + [anon_sym_QMARK_DOT] = ACTIONS(2826), + [anon_sym_POUND_LBRACK] = ACTIONS(2826), + [anon_sym_if] = ACTIONS(2828), + [anon_sym_DOLLARif] = ACTIONS(2828), + [anon_sym_is] = ACTIONS(2828), + [anon_sym_BANGis] = ACTIONS(2826), + [anon_sym_in] = ACTIONS(2828), + [anon_sym_BANGin] = ACTIONS(2826), + [anon_sym_match] = ACTIONS(2828), + [anon_sym_select] = ACTIONS(2828), + [anon_sym_lock] = ACTIONS(2828), + [anon_sym_rlock] = ACTIONS(2828), + [anon_sym_unsafe] = ACTIONS(2828), + [anon_sym_sql] = ACTIONS(2828), + [sym_int_literal] = ACTIONS(2828), + [sym_float_literal] = ACTIONS(2826), + [sym_rune_literal] = ACTIONS(2826), + [sym_pseudo_compile_time_identifier] = ACTIONS(2828), + [anon_sym_shared] = ACTIONS(2828), + [anon_sym_map_LBRACK] = ACTIONS(2826), + [anon_sym_chan] = ACTIONS(2828), + [anon_sym_thread] = ACTIONS(2828), + [anon_sym_atomic] = ACTIONS(2828), + [sym___double_quote] = ACTIONS(2826), + [sym___single_quote] = ACTIONS(2826), + [sym___c_double_quote] = ACTIONS(2826), + [sym___c_single_quote] = ACTIONS(2826), + [sym___r_double_quote] = ACTIONS(2826), + [sym___r_single_quote] = ACTIONS(2826), + }, + [1351] = { + [sym_line_comment] = STATE(1351), + [sym_block_comment] = STATE(1351), + [sym_identifier] = ACTIONS(2137), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(2137), + [anon_sym_as] = ACTIONS(2137), + [anon_sym_LBRACE] = ACTIONS(2135), + [anon_sym_COMMA] = ACTIONS(2135), + [anon_sym_RBRACE] = ACTIONS(2135), + [anon_sym_LPAREN] = ACTIONS(2135), + [anon_sym_PIPE] = ACTIONS(2137), + [anon_sym_fn] = ACTIONS(2137), + [anon_sym_PLUS] = ACTIONS(2137), + [anon_sym_DASH] = ACTIONS(2137), + [anon_sym_STAR] = ACTIONS(2135), + [anon_sym_SLASH] = ACTIONS(2137), + [anon_sym_PERCENT] = ACTIONS(2135), + [anon_sym_LT] = ACTIONS(2137), + [anon_sym_GT] = ACTIONS(2137), + [anon_sym_EQ_EQ] = ACTIONS(2135), + [anon_sym_BANG_EQ] = ACTIONS(2135), + [anon_sym_LT_EQ] = ACTIONS(2135), + [anon_sym_GT_EQ] = ACTIONS(2135), + [anon_sym_LBRACK] = ACTIONS(2135), + [anon_sym_RBRACK] = ACTIONS(2135), + [anon_sym_struct] = ACTIONS(2137), + [anon_sym_mut] = ACTIONS(2137), + [anon_sym_COLON] = ACTIONS(2135), + [anon_sym_PLUS_PLUS] = ACTIONS(2135), + [anon_sym_DASH_DASH] = ACTIONS(2135), + [anon_sym_QMARK] = ACTIONS(2137), + [anon_sym_BANG] = ACTIONS(2137), + [anon_sym_go] = ACTIONS(2137), + [anon_sym_spawn] = ACTIONS(2137), + [anon_sym_json_DOTdecode] = ACTIONS(2135), + [anon_sym_LBRACK2] = ACTIONS(2137), + [anon_sym_TILDE] = ACTIONS(2135), + [anon_sym_CARET] = ACTIONS(2135), + [anon_sym_AMP] = ACTIONS(2137), + [anon_sym_LT_DASH] = ACTIONS(2135), + [anon_sym_LT_LT] = ACTIONS(2135), + [anon_sym_GT_GT] = ACTIONS(2137), + [anon_sym_GT_GT_GT] = ACTIONS(2135), + [anon_sym_AMP_CARET] = ACTIONS(2135), + [anon_sym_AMP_AMP] = ACTIONS(2135), + [anon_sym_PIPE_PIPE] = ACTIONS(2135), + [anon_sym_or] = ACTIONS(2137), + [sym_none] = ACTIONS(2137), + [sym_true] = ACTIONS(2137), + [sym_false] = ACTIONS(2137), + [sym_nil] = ACTIONS(2137), + [anon_sym_QMARK_DOT] = ACTIONS(2135), + [anon_sym_POUND_LBRACK] = ACTIONS(2135), + [anon_sym_if] = ACTIONS(2137), + [anon_sym_DOLLARif] = ACTIONS(2137), + [anon_sym_is] = ACTIONS(2137), + [anon_sym_BANGis] = ACTIONS(2135), + [anon_sym_in] = ACTIONS(2137), + [anon_sym_BANGin] = ACTIONS(2135), + [anon_sym_match] = ACTIONS(2137), + [anon_sym_select] = ACTIONS(2137), + [anon_sym_lock] = ACTIONS(2137), + [anon_sym_rlock] = ACTIONS(2137), + [anon_sym_unsafe] = ACTIONS(2137), + [anon_sym_sql] = ACTIONS(2137), + [sym_int_literal] = ACTIONS(2137), + [sym_float_literal] = ACTIONS(2135), + [sym_rune_literal] = ACTIONS(2135), + [sym_pseudo_compile_time_identifier] = ACTIONS(2137), + [anon_sym_shared] = ACTIONS(2137), + [anon_sym_map_LBRACK] = ACTIONS(2135), + [anon_sym_chan] = ACTIONS(2137), + [anon_sym_thread] = ACTIONS(2137), + [anon_sym_atomic] = ACTIONS(2137), + [sym___double_quote] = ACTIONS(2135), + [sym___single_quote] = ACTIONS(2135), + [sym___c_double_quote] = ACTIONS(2135), + [sym___c_single_quote] = ACTIONS(2135), + [sym___r_double_quote] = ACTIONS(2135), + [sym___r_single_quote] = ACTIONS(2135), + }, + [1352] = { + [sym_line_comment] = STATE(1352), + [sym_block_comment] = STATE(1352), + [sym_identifier] = ACTIONS(2724), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(2724), + [anon_sym_as] = ACTIONS(2724), + [anon_sym_LBRACE] = ACTIONS(2722), + [anon_sym_COMMA] = ACTIONS(2722), + [anon_sym_RBRACE] = ACTIONS(2722), + [anon_sym_LPAREN] = ACTIONS(2722), + [anon_sym_PIPE] = ACTIONS(2724), + [anon_sym_fn] = ACTIONS(2724), + [anon_sym_PLUS] = ACTIONS(2724), + [anon_sym_DASH] = ACTIONS(2724), + [anon_sym_STAR] = ACTIONS(2722), + [anon_sym_SLASH] = ACTIONS(2724), + [anon_sym_PERCENT] = ACTIONS(2722), + [anon_sym_LT] = ACTIONS(2724), + [anon_sym_GT] = ACTIONS(2724), + [anon_sym_EQ_EQ] = ACTIONS(2722), + [anon_sym_BANG_EQ] = ACTIONS(2722), + [anon_sym_LT_EQ] = ACTIONS(2722), + [anon_sym_GT_EQ] = ACTIONS(2722), + [anon_sym_LBRACK] = ACTIONS(2722), + [anon_sym_RBRACK] = ACTIONS(2722), + [anon_sym_struct] = ACTIONS(2724), + [anon_sym_mut] = ACTIONS(2724), + [anon_sym_COLON] = ACTIONS(2722), + [anon_sym_PLUS_PLUS] = ACTIONS(2722), + [anon_sym_DASH_DASH] = ACTIONS(2722), + [anon_sym_QMARK] = ACTIONS(2724), + [anon_sym_BANG] = ACTIONS(2724), + [anon_sym_go] = ACTIONS(2724), + [anon_sym_spawn] = ACTIONS(2724), + [anon_sym_json_DOTdecode] = ACTIONS(2722), + [anon_sym_LBRACK2] = ACTIONS(2724), + [anon_sym_TILDE] = ACTIONS(2722), + [anon_sym_CARET] = ACTIONS(2722), + [anon_sym_AMP] = ACTIONS(2724), + [anon_sym_LT_DASH] = ACTIONS(2722), + [anon_sym_LT_LT] = ACTIONS(2722), + [anon_sym_GT_GT] = ACTIONS(2724), + [anon_sym_GT_GT_GT] = ACTIONS(2722), + [anon_sym_AMP_CARET] = ACTIONS(2722), + [anon_sym_AMP_AMP] = ACTIONS(2722), + [anon_sym_PIPE_PIPE] = ACTIONS(2722), + [anon_sym_or] = ACTIONS(2724), + [sym_none] = ACTIONS(2724), + [sym_true] = ACTIONS(2724), + [sym_false] = ACTIONS(2724), + [sym_nil] = ACTIONS(2724), + [anon_sym_QMARK_DOT] = ACTIONS(2722), + [anon_sym_POUND_LBRACK] = ACTIONS(2722), + [anon_sym_if] = ACTIONS(2724), + [anon_sym_DOLLARif] = ACTIONS(2724), + [anon_sym_is] = ACTIONS(2724), + [anon_sym_BANGis] = ACTIONS(2722), + [anon_sym_in] = ACTIONS(2724), + [anon_sym_BANGin] = ACTIONS(2722), + [anon_sym_match] = ACTIONS(2724), + [anon_sym_select] = ACTIONS(2724), + [anon_sym_lock] = ACTIONS(2724), + [anon_sym_rlock] = ACTIONS(2724), + [anon_sym_unsafe] = ACTIONS(2724), + [anon_sym_sql] = ACTIONS(2724), + [sym_int_literal] = ACTIONS(2724), + [sym_float_literal] = ACTIONS(2722), + [sym_rune_literal] = ACTIONS(2722), + [sym_pseudo_compile_time_identifier] = ACTIONS(2724), + [anon_sym_shared] = ACTIONS(2724), + [anon_sym_map_LBRACK] = ACTIONS(2722), + [anon_sym_chan] = ACTIONS(2724), + [anon_sym_thread] = ACTIONS(2724), + [anon_sym_atomic] = ACTIONS(2724), + [sym___double_quote] = ACTIONS(2722), + [sym___single_quote] = ACTIONS(2722), + [sym___c_double_quote] = ACTIONS(2722), + [sym___c_single_quote] = ACTIONS(2722), + [sym___r_double_quote] = ACTIONS(2722), + [sym___r_single_quote] = ACTIONS(2722), + }, + [1353] = { + [sym_line_comment] = STATE(1353), + [sym_block_comment] = STATE(1353), [sym_identifier] = ACTIONS(2824), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), @@ -169086,1752 +169386,2499 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym___r_double_quote] = ACTIONS(2822), [sym___r_single_quote] = ACTIONS(2822), }, - [1351] = { - [sym_line_comment] = STATE(1351), - [sym_block_comment] = STATE(1351), - [sym_identifier] = ACTIONS(2782), - [anon_sym_SLASH_SLASH] = ACTIONS(3), - [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(2782), - [anon_sym_as] = ACTIONS(2782), - [anon_sym_LBRACE] = ACTIONS(2780), - [anon_sym_COMMA] = ACTIONS(2780), - [anon_sym_RBRACE] = ACTIONS(2780), - [anon_sym_LPAREN] = ACTIONS(2780), - [anon_sym_PIPE] = ACTIONS(2782), - [anon_sym_fn] = ACTIONS(2782), - [anon_sym_PLUS] = ACTIONS(2782), - [anon_sym_DASH] = ACTIONS(2782), - [anon_sym_STAR] = ACTIONS(2780), - [anon_sym_SLASH] = ACTIONS(2782), - [anon_sym_PERCENT] = ACTIONS(2780), - [anon_sym_LT] = ACTIONS(2782), - [anon_sym_GT] = ACTIONS(2782), - [anon_sym_EQ_EQ] = ACTIONS(2780), - [anon_sym_BANG_EQ] = ACTIONS(2780), - [anon_sym_LT_EQ] = ACTIONS(2780), - [anon_sym_GT_EQ] = ACTIONS(2780), - [anon_sym_LBRACK] = ACTIONS(2780), - [anon_sym_RBRACK] = ACTIONS(2780), - [anon_sym_struct] = ACTIONS(2782), - [anon_sym_mut] = ACTIONS(2782), - [anon_sym_COLON] = ACTIONS(2780), - [anon_sym_PLUS_PLUS] = ACTIONS(2780), - [anon_sym_DASH_DASH] = ACTIONS(2780), - [anon_sym_QMARK] = ACTIONS(2782), - [anon_sym_BANG] = ACTIONS(2782), - [anon_sym_go] = ACTIONS(2782), - [anon_sym_spawn] = ACTIONS(2782), - [anon_sym_json_DOTdecode] = ACTIONS(2780), - [anon_sym_LBRACK2] = ACTIONS(2782), - [anon_sym_TILDE] = ACTIONS(2780), - [anon_sym_CARET] = ACTIONS(2780), - [anon_sym_AMP] = ACTIONS(2782), - [anon_sym_LT_DASH] = ACTIONS(2780), - [anon_sym_LT_LT] = ACTIONS(2780), - [anon_sym_GT_GT] = ACTIONS(2782), - [anon_sym_GT_GT_GT] = ACTIONS(2780), - [anon_sym_AMP_CARET] = ACTIONS(2780), - [anon_sym_AMP_AMP] = ACTIONS(2780), - [anon_sym_PIPE_PIPE] = ACTIONS(2780), - [anon_sym_or] = ACTIONS(2782), - [sym_none] = ACTIONS(2782), - [sym_true] = ACTIONS(2782), - [sym_false] = ACTIONS(2782), - [sym_nil] = ACTIONS(2782), - [anon_sym_QMARK_DOT] = ACTIONS(2780), - [anon_sym_POUND_LBRACK] = ACTIONS(2780), - [anon_sym_if] = ACTIONS(2782), - [anon_sym_DOLLARif] = ACTIONS(2782), - [anon_sym_is] = ACTIONS(2782), - [anon_sym_BANGis] = ACTIONS(2780), - [anon_sym_in] = ACTIONS(2782), - [anon_sym_BANGin] = ACTIONS(2780), - [anon_sym_match] = ACTIONS(2782), - [anon_sym_select] = ACTIONS(2782), - [anon_sym_lock] = ACTIONS(2782), - [anon_sym_rlock] = ACTIONS(2782), - [anon_sym_unsafe] = ACTIONS(2782), - [anon_sym_sql] = ACTIONS(2782), - [sym_int_literal] = ACTIONS(2782), - [sym_float_literal] = ACTIONS(2780), - [sym_rune_literal] = ACTIONS(2780), - [sym_pseudo_compile_time_identifier] = ACTIONS(2782), - [anon_sym_shared] = ACTIONS(2782), - [anon_sym_map_LBRACK] = ACTIONS(2780), - [anon_sym_chan] = ACTIONS(2782), - [anon_sym_thread] = ACTIONS(2782), - [anon_sym_atomic] = ACTIONS(2782), - [sym___double_quote] = ACTIONS(2780), - [sym___single_quote] = ACTIONS(2780), - [sym___c_double_quote] = ACTIONS(2780), - [sym___c_single_quote] = ACTIONS(2780), - [sym___r_double_quote] = ACTIONS(2780), - [sym___r_single_quote] = ACTIONS(2780), - }, - [1352] = { - [sym_line_comment] = STATE(1352), - [sym_block_comment] = STATE(1352), - [sym_identifier] = ACTIONS(2757), - [anon_sym_SLASH_SLASH] = ACTIONS(3), - [anon_sym_SLASH_STAR] = ACTIONS(5), - [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_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), - }, - [1353] = { - [sym_line_comment] = STATE(1353), - [sym_block_comment] = STATE(1353), - [sym_identifier] = ACTIONS(2810), - [anon_sym_SLASH_SLASH] = ACTIONS(3), - [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(2810), - [anon_sym_as] = ACTIONS(2810), - [anon_sym_LBRACE] = ACTIONS(2808), - [anon_sym_COMMA] = ACTIONS(2808), - [anon_sym_RBRACE] = ACTIONS(2808), - [anon_sym_LPAREN] = ACTIONS(2808), - [anon_sym_PIPE] = ACTIONS(2810), - [anon_sym_fn] = ACTIONS(2810), - [anon_sym_PLUS] = ACTIONS(2810), - [anon_sym_DASH] = ACTIONS(2810), - [anon_sym_STAR] = ACTIONS(2808), - [anon_sym_SLASH] = ACTIONS(2810), - [anon_sym_PERCENT] = ACTIONS(2808), - [anon_sym_LT] = ACTIONS(2810), - [anon_sym_GT] = ACTIONS(2810), - [anon_sym_EQ_EQ] = ACTIONS(2808), - [anon_sym_BANG_EQ] = ACTIONS(2808), - [anon_sym_LT_EQ] = ACTIONS(2808), - [anon_sym_GT_EQ] = ACTIONS(2808), - [anon_sym_LBRACK] = ACTIONS(2808), - [anon_sym_RBRACK] = ACTIONS(2808), - [anon_sym_struct] = ACTIONS(2810), - [anon_sym_mut] = ACTIONS(2810), - [anon_sym_COLON] = ACTIONS(2808), - [anon_sym_PLUS_PLUS] = ACTIONS(2808), - [anon_sym_DASH_DASH] = ACTIONS(2808), - [anon_sym_QMARK] = ACTIONS(2810), - [anon_sym_BANG] = ACTIONS(2810), - [anon_sym_go] = ACTIONS(2810), - [anon_sym_spawn] = ACTIONS(2810), - [anon_sym_json_DOTdecode] = ACTIONS(2808), - [anon_sym_LBRACK2] = ACTIONS(2810), - [anon_sym_TILDE] = ACTIONS(2808), - [anon_sym_CARET] = ACTIONS(2808), - [anon_sym_AMP] = ACTIONS(2810), - [anon_sym_LT_DASH] = ACTIONS(2808), - [anon_sym_LT_LT] = ACTIONS(2808), - [anon_sym_GT_GT] = ACTIONS(2810), - [anon_sym_GT_GT_GT] = ACTIONS(2808), - [anon_sym_AMP_CARET] = ACTIONS(2808), - [anon_sym_AMP_AMP] = ACTIONS(2808), - [anon_sym_PIPE_PIPE] = ACTIONS(2808), - [anon_sym_or] = ACTIONS(2810), - [sym_none] = ACTIONS(2810), - [sym_true] = ACTIONS(2810), - [sym_false] = ACTIONS(2810), - [sym_nil] = ACTIONS(2810), - [anon_sym_QMARK_DOT] = ACTIONS(2808), - [anon_sym_POUND_LBRACK] = ACTIONS(2808), - [anon_sym_if] = ACTIONS(2810), - [anon_sym_DOLLARif] = ACTIONS(2810), - [anon_sym_is] = ACTIONS(2810), - [anon_sym_BANGis] = ACTIONS(2808), - [anon_sym_in] = ACTIONS(2810), - [anon_sym_BANGin] = ACTIONS(2808), - [anon_sym_match] = ACTIONS(2810), - [anon_sym_select] = ACTIONS(2810), - [anon_sym_lock] = ACTIONS(2810), - [anon_sym_rlock] = ACTIONS(2810), - [anon_sym_unsafe] = ACTIONS(2810), - [anon_sym_sql] = ACTIONS(2810), - [sym_int_literal] = ACTIONS(2810), - [sym_float_literal] = ACTIONS(2808), - [sym_rune_literal] = ACTIONS(2808), - [sym_pseudo_compile_time_identifier] = ACTIONS(2810), - [anon_sym_shared] = ACTIONS(2810), - [anon_sym_map_LBRACK] = ACTIONS(2808), - [anon_sym_chan] = ACTIONS(2810), - [anon_sym_thread] = ACTIONS(2810), - [anon_sym_atomic] = ACTIONS(2810), - [sym___double_quote] = ACTIONS(2808), - [sym___single_quote] = ACTIONS(2808), - [sym___c_double_quote] = ACTIONS(2808), - [sym___c_single_quote] = ACTIONS(2808), - [sym___r_double_quote] = ACTIONS(2808), - [sym___r_single_quote] = ACTIONS(2808), - }, [1354] = { [sym_line_comment] = STATE(1354), [sym_block_comment] = STATE(1354), - [sym_identifier] = ACTIONS(2739), + [sym_identifier] = ACTIONS(2459), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(2739), - [anon_sym_as] = ACTIONS(2739), - [anon_sym_LBRACE] = ACTIONS(2737), - [anon_sym_COMMA] = ACTIONS(2737), - [anon_sym_RBRACE] = ACTIONS(2737), - [anon_sym_LPAREN] = ACTIONS(2737), - [anon_sym_PIPE] = ACTIONS(2739), - [anon_sym_fn] = ACTIONS(2739), - [anon_sym_PLUS] = ACTIONS(2739), - [anon_sym_DASH] = ACTIONS(2739), - [anon_sym_STAR] = ACTIONS(2737), - [anon_sym_SLASH] = ACTIONS(2739), - [anon_sym_PERCENT] = ACTIONS(2737), - [anon_sym_LT] = ACTIONS(2739), - [anon_sym_GT] = ACTIONS(2739), - [anon_sym_EQ_EQ] = ACTIONS(2737), - [anon_sym_BANG_EQ] = ACTIONS(2737), - [anon_sym_LT_EQ] = ACTIONS(2737), - [anon_sym_GT_EQ] = ACTIONS(2737), - [anon_sym_LBRACK] = ACTIONS(2737), - [anon_sym_RBRACK] = ACTIONS(2737), - [anon_sym_struct] = ACTIONS(2739), - [anon_sym_mut] = ACTIONS(2739), - [anon_sym_COLON] = ACTIONS(2737), - [anon_sym_PLUS_PLUS] = ACTIONS(2737), - [anon_sym_DASH_DASH] = ACTIONS(2737), - [anon_sym_QMARK] = ACTIONS(2739), - [anon_sym_BANG] = ACTIONS(2739), - [anon_sym_go] = ACTIONS(2739), - [anon_sym_spawn] = ACTIONS(2739), - [anon_sym_json_DOTdecode] = ACTIONS(2737), - [anon_sym_LBRACK2] = ACTIONS(2739), - [anon_sym_TILDE] = ACTIONS(2737), - [anon_sym_CARET] = ACTIONS(2737), - [anon_sym_AMP] = ACTIONS(2739), - [anon_sym_LT_DASH] = ACTIONS(2737), - [anon_sym_LT_LT] = ACTIONS(2737), - [anon_sym_GT_GT] = ACTIONS(2739), - [anon_sym_GT_GT_GT] = ACTIONS(2737), - [anon_sym_AMP_CARET] = ACTIONS(2737), - [anon_sym_AMP_AMP] = ACTIONS(2737), - [anon_sym_PIPE_PIPE] = ACTIONS(2737), - [anon_sym_or] = ACTIONS(2739), - [sym_none] = ACTIONS(2739), - [sym_true] = ACTIONS(2739), - [sym_false] = ACTIONS(2739), - [sym_nil] = ACTIONS(2739), - [anon_sym_QMARK_DOT] = ACTIONS(2737), - [anon_sym_POUND_LBRACK] = ACTIONS(2737), - [anon_sym_if] = ACTIONS(2739), - [anon_sym_DOLLARif] = ACTIONS(2739), - [anon_sym_is] = ACTIONS(2739), - [anon_sym_BANGis] = ACTIONS(2737), - [anon_sym_in] = ACTIONS(2739), - [anon_sym_BANGin] = ACTIONS(2737), - [anon_sym_match] = ACTIONS(2739), - [anon_sym_select] = ACTIONS(2739), - [anon_sym_lock] = ACTIONS(2739), - [anon_sym_rlock] = ACTIONS(2739), - [anon_sym_unsafe] = ACTIONS(2739), - [anon_sym_sql] = ACTIONS(2739), - [sym_int_literal] = ACTIONS(2739), - [sym_float_literal] = ACTIONS(2737), - [sym_rune_literal] = ACTIONS(2737), - [sym_pseudo_compile_time_identifier] = ACTIONS(2739), - [anon_sym_shared] = ACTIONS(2739), - [anon_sym_map_LBRACK] = ACTIONS(2737), - [anon_sym_chan] = ACTIONS(2739), - [anon_sym_thread] = ACTIONS(2739), - [anon_sym_atomic] = ACTIONS(2739), - [sym___double_quote] = ACTIONS(2737), - [sym___single_quote] = ACTIONS(2737), - [sym___c_double_quote] = ACTIONS(2737), - [sym___c_single_quote] = ACTIONS(2737), - [sym___r_double_quote] = ACTIONS(2737), - [sym___r_single_quote] = ACTIONS(2737), + [anon_sym_DOT] = ACTIONS(2459), + [anon_sym_as] = ACTIONS(2459), + [anon_sym_LBRACE] = ACTIONS(2457), + [anon_sym_COMMA] = ACTIONS(2457), + [anon_sym_RBRACE] = ACTIONS(2457), + [anon_sym_LPAREN] = ACTIONS(2457), + [anon_sym_PIPE] = ACTIONS(2459), + [anon_sym_fn] = ACTIONS(2459), + [anon_sym_PLUS] = ACTIONS(2459), + [anon_sym_DASH] = ACTIONS(2459), + [anon_sym_STAR] = ACTIONS(2457), + [anon_sym_SLASH] = ACTIONS(2459), + [anon_sym_PERCENT] = ACTIONS(2457), + [anon_sym_LT] = ACTIONS(2459), + [anon_sym_GT] = ACTIONS(2459), + [anon_sym_EQ_EQ] = ACTIONS(2457), + [anon_sym_BANG_EQ] = ACTIONS(2457), + [anon_sym_LT_EQ] = ACTIONS(2457), + [anon_sym_GT_EQ] = ACTIONS(2457), + [anon_sym_LBRACK] = ACTIONS(2457), + [anon_sym_RBRACK] = ACTIONS(2457), + [anon_sym_struct] = ACTIONS(2459), + [anon_sym_mut] = ACTIONS(2459), + [anon_sym_COLON] = ACTIONS(2457), + [anon_sym_PLUS_PLUS] = ACTIONS(2457), + [anon_sym_DASH_DASH] = ACTIONS(2457), + [anon_sym_QMARK] = ACTIONS(2459), + [anon_sym_BANG] = ACTIONS(2459), + [anon_sym_go] = ACTIONS(2459), + [anon_sym_spawn] = ACTIONS(2459), + [anon_sym_json_DOTdecode] = ACTIONS(2457), + [anon_sym_LBRACK2] = ACTIONS(2459), + [anon_sym_TILDE] = ACTIONS(2457), + [anon_sym_CARET] = ACTIONS(2457), + [anon_sym_AMP] = ACTIONS(2459), + [anon_sym_LT_DASH] = ACTIONS(2457), + [anon_sym_LT_LT] = ACTIONS(2457), + [anon_sym_GT_GT] = ACTIONS(2459), + [anon_sym_GT_GT_GT] = ACTIONS(2457), + [anon_sym_AMP_CARET] = ACTIONS(2457), + [anon_sym_AMP_AMP] = ACTIONS(2457), + [anon_sym_PIPE_PIPE] = ACTIONS(2457), + [anon_sym_or] = ACTIONS(2459), + [sym_none] = ACTIONS(2459), + [sym_true] = ACTIONS(2459), + [sym_false] = ACTIONS(2459), + [sym_nil] = ACTIONS(2459), + [anon_sym_QMARK_DOT] = ACTIONS(2457), + [anon_sym_POUND_LBRACK] = ACTIONS(2457), + [anon_sym_if] = ACTIONS(2459), + [anon_sym_DOLLARif] = ACTIONS(2459), + [anon_sym_is] = ACTIONS(2459), + [anon_sym_BANGis] = ACTIONS(2457), + [anon_sym_in] = ACTIONS(2459), + [anon_sym_BANGin] = ACTIONS(2457), + [anon_sym_match] = ACTIONS(2459), + [anon_sym_select] = ACTIONS(2459), + [anon_sym_lock] = ACTIONS(2459), + [anon_sym_rlock] = ACTIONS(2459), + [anon_sym_unsafe] = ACTIONS(2459), + [anon_sym_sql] = ACTIONS(2459), + [sym_int_literal] = ACTIONS(2459), + [sym_float_literal] = ACTIONS(2457), + [sym_rune_literal] = ACTIONS(2457), + [sym_pseudo_compile_time_identifier] = ACTIONS(2459), + [anon_sym_shared] = ACTIONS(2459), + [anon_sym_map_LBRACK] = ACTIONS(2457), + [anon_sym_chan] = ACTIONS(2459), + [anon_sym_thread] = ACTIONS(2459), + [anon_sym_atomic] = ACTIONS(2459), + [sym___double_quote] = ACTIONS(2457), + [sym___single_quote] = ACTIONS(2457), + [sym___c_double_quote] = ACTIONS(2457), + [sym___c_single_quote] = ACTIONS(2457), + [sym___r_double_quote] = ACTIONS(2457), + [sym___r_single_quote] = ACTIONS(2457), }, [1355] = { [sym_line_comment] = STATE(1355), [sym_block_comment] = STATE(1355), - [sym_identifier] = ACTIONS(2820), + [sym_identifier] = ACTIONS(2696), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(2820), - [anon_sym_as] = ACTIONS(2820), - [anon_sym_LBRACE] = ACTIONS(2818), - [anon_sym_COMMA] = ACTIONS(2818), - [anon_sym_RBRACE] = ACTIONS(2818), - [anon_sym_LPAREN] = ACTIONS(2818), - [anon_sym_PIPE] = ACTIONS(2820), - [anon_sym_fn] = ACTIONS(2820), - [anon_sym_PLUS] = ACTIONS(2820), - [anon_sym_DASH] = ACTIONS(2820), - [anon_sym_STAR] = ACTIONS(2818), - [anon_sym_SLASH] = ACTIONS(2820), - [anon_sym_PERCENT] = ACTIONS(2818), - [anon_sym_LT] = ACTIONS(2820), - [anon_sym_GT] = ACTIONS(2820), - [anon_sym_EQ_EQ] = ACTIONS(2818), - [anon_sym_BANG_EQ] = ACTIONS(2818), - [anon_sym_LT_EQ] = ACTIONS(2818), - [anon_sym_GT_EQ] = ACTIONS(2818), - [anon_sym_LBRACK] = ACTIONS(2818), - [anon_sym_RBRACK] = ACTIONS(2818), - [anon_sym_struct] = ACTIONS(2820), - [anon_sym_mut] = ACTIONS(2820), - [anon_sym_COLON] = ACTIONS(2818), - [anon_sym_PLUS_PLUS] = ACTIONS(2818), - [anon_sym_DASH_DASH] = ACTIONS(2818), - [anon_sym_QMARK] = ACTIONS(2820), - [anon_sym_BANG] = ACTIONS(2820), - [anon_sym_go] = ACTIONS(2820), - [anon_sym_spawn] = ACTIONS(2820), - [anon_sym_json_DOTdecode] = ACTIONS(2818), - [anon_sym_LBRACK2] = ACTIONS(2820), - [anon_sym_TILDE] = ACTIONS(2818), - [anon_sym_CARET] = ACTIONS(2818), - [anon_sym_AMP] = ACTIONS(2820), - [anon_sym_LT_DASH] = ACTIONS(2818), - [anon_sym_LT_LT] = ACTIONS(2818), - [anon_sym_GT_GT] = ACTIONS(2820), - [anon_sym_GT_GT_GT] = ACTIONS(2818), - [anon_sym_AMP_CARET] = ACTIONS(2818), - [anon_sym_AMP_AMP] = ACTIONS(2818), - [anon_sym_PIPE_PIPE] = ACTIONS(2818), - [anon_sym_or] = ACTIONS(2820), - [sym_none] = ACTIONS(2820), - [sym_true] = ACTIONS(2820), - [sym_false] = ACTIONS(2820), - [sym_nil] = ACTIONS(2820), - [anon_sym_QMARK_DOT] = ACTIONS(2818), - [anon_sym_POUND_LBRACK] = ACTIONS(2818), - [anon_sym_if] = ACTIONS(2820), - [anon_sym_DOLLARif] = ACTIONS(2820), - [anon_sym_is] = ACTIONS(2820), - [anon_sym_BANGis] = ACTIONS(2818), - [anon_sym_in] = ACTIONS(2820), - [anon_sym_BANGin] = ACTIONS(2818), - [anon_sym_match] = ACTIONS(2820), - [anon_sym_select] = ACTIONS(2820), - [anon_sym_lock] = ACTIONS(2820), - [anon_sym_rlock] = ACTIONS(2820), - [anon_sym_unsafe] = ACTIONS(2820), - [anon_sym_sql] = ACTIONS(2820), - [sym_int_literal] = ACTIONS(2820), - [sym_float_literal] = ACTIONS(2818), - [sym_rune_literal] = ACTIONS(2818), - [sym_pseudo_compile_time_identifier] = ACTIONS(2820), - [anon_sym_shared] = ACTIONS(2820), - [anon_sym_map_LBRACK] = ACTIONS(2818), - [anon_sym_chan] = ACTIONS(2820), - [anon_sym_thread] = ACTIONS(2820), - [anon_sym_atomic] = ACTIONS(2820), - [sym___double_quote] = ACTIONS(2818), - [sym___single_quote] = ACTIONS(2818), - [sym___c_double_quote] = ACTIONS(2818), - [sym___c_single_quote] = ACTIONS(2818), - [sym___r_double_quote] = ACTIONS(2818), - [sym___r_single_quote] = ACTIONS(2818), + [anon_sym_DOT] = ACTIONS(2696), + [anon_sym_as] = ACTIONS(2696), + [anon_sym_LBRACE] = ACTIONS(2694), + [anon_sym_COMMA] = ACTIONS(2694), + [anon_sym_RBRACE] = ACTIONS(2694), + [anon_sym_LPAREN] = ACTIONS(2694), + [anon_sym_PIPE] = ACTIONS(2696), + [anon_sym_fn] = ACTIONS(2696), + [anon_sym_PLUS] = ACTIONS(2696), + [anon_sym_DASH] = ACTIONS(2696), + [anon_sym_STAR] = ACTIONS(2694), + [anon_sym_SLASH] = ACTIONS(2696), + [anon_sym_PERCENT] = ACTIONS(2694), + [anon_sym_LT] = ACTIONS(2696), + [anon_sym_GT] = ACTIONS(2696), + [anon_sym_EQ_EQ] = ACTIONS(2694), + [anon_sym_BANG_EQ] = ACTIONS(2694), + [anon_sym_LT_EQ] = ACTIONS(2694), + [anon_sym_GT_EQ] = ACTIONS(2694), + [anon_sym_LBRACK] = ACTIONS(2694), + [anon_sym_RBRACK] = ACTIONS(2694), + [anon_sym_struct] = ACTIONS(2696), + [anon_sym_mut] = ACTIONS(2696), + [anon_sym_COLON] = ACTIONS(2694), + [anon_sym_PLUS_PLUS] = ACTIONS(2694), + [anon_sym_DASH_DASH] = ACTIONS(2694), + [anon_sym_QMARK] = ACTIONS(2696), + [anon_sym_BANG] = ACTIONS(2696), + [anon_sym_go] = ACTIONS(2696), + [anon_sym_spawn] = ACTIONS(2696), + [anon_sym_json_DOTdecode] = ACTIONS(2694), + [anon_sym_LBRACK2] = ACTIONS(2696), + [anon_sym_TILDE] = ACTIONS(2694), + [anon_sym_CARET] = ACTIONS(2694), + [anon_sym_AMP] = ACTIONS(2696), + [anon_sym_LT_DASH] = ACTIONS(2694), + [anon_sym_LT_LT] = ACTIONS(2694), + [anon_sym_GT_GT] = ACTIONS(2696), + [anon_sym_GT_GT_GT] = ACTIONS(2694), + [anon_sym_AMP_CARET] = ACTIONS(2694), + [anon_sym_AMP_AMP] = ACTIONS(2694), + [anon_sym_PIPE_PIPE] = ACTIONS(2694), + [anon_sym_or] = ACTIONS(2696), + [sym_none] = ACTIONS(2696), + [sym_true] = ACTIONS(2696), + [sym_false] = ACTIONS(2696), + [sym_nil] = ACTIONS(2696), + [anon_sym_QMARK_DOT] = ACTIONS(2694), + [anon_sym_POUND_LBRACK] = ACTIONS(2694), + [anon_sym_if] = ACTIONS(2696), + [anon_sym_DOLLARif] = ACTIONS(2696), + [anon_sym_is] = ACTIONS(2696), + [anon_sym_BANGis] = ACTIONS(2694), + [anon_sym_in] = ACTIONS(2696), + [anon_sym_BANGin] = ACTIONS(2694), + [anon_sym_match] = ACTIONS(2696), + [anon_sym_select] = ACTIONS(2696), + [anon_sym_lock] = ACTIONS(2696), + [anon_sym_rlock] = ACTIONS(2696), + [anon_sym_unsafe] = ACTIONS(2696), + [anon_sym_sql] = ACTIONS(2696), + [sym_int_literal] = ACTIONS(2696), + [sym_float_literal] = ACTIONS(2694), + [sym_rune_literal] = ACTIONS(2694), + [sym_pseudo_compile_time_identifier] = ACTIONS(2696), + [anon_sym_shared] = ACTIONS(2696), + [anon_sym_map_LBRACK] = ACTIONS(2694), + [anon_sym_chan] = ACTIONS(2696), + [anon_sym_thread] = ACTIONS(2696), + [anon_sym_atomic] = ACTIONS(2696), + [sym___double_quote] = ACTIONS(2694), + [sym___single_quote] = ACTIONS(2694), + [sym___c_double_quote] = ACTIONS(2694), + [sym___c_single_quote] = ACTIONS(2694), + [sym___r_double_quote] = ACTIONS(2694), + [sym___r_single_quote] = ACTIONS(2694), }, [1356] = { [sym_line_comment] = STATE(1356), [sym_block_comment] = STATE(1356), - [sym_identifier] = ACTIONS(2285), + [sym_identifier] = ACTIONS(2449), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(2285), - [anon_sym_as] = ACTIONS(2285), - [anon_sym_LBRACE] = ACTIONS(2283), - [anon_sym_COMMA] = ACTIONS(2283), - [anon_sym_RBRACE] = ACTIONS(2283), - [anon_sym_LPAREN] = ACTIONS(2283), - [anon_sym_PIPE] = ACTIONS(2285), - [anon_sym_fn] = ACTIONS(2285), - [anon_sym_PLUS] = ACTIONS(2285), - [anon_sym_DASH] = ACTIONS(2285), - [anon_sym_STAR] = ACTIONS(2283), - [anon_sym_SLASH] = ACTIONS(2285), - [anon_sym_PERCENT] = ACTIONS(2283), - [anon_sym_LT] = ACTIONS(2285), - [anon_sym_GT] = ACTIONS(2285), - [anon_sym_EQ_EQ] = ACTIONS(2283), - [anon_sym_BANG_EQ] = ACTIONS(2283), - [anon_sym_LT_EQ] = ACTIONS(2283), - [anon_sym_GT_EQ] = ACTIONS(2283), - [anon_sym_LBRACK] = ACTIONS(2283), - [anon_sym_RBRACK] = ACTIONS(2283), - [anon_sym_struct] = ACTIONS(2285), - [anon_sym_mut] = ACTIONS(2285), - [anon_sym_COLON] = ACTIONS(2283), - [anon_sym_PLUS_PLUS] = ACTIONS(2283), - [anon_sym_DASH_DASH] = ACTIONS(2283), - [anon_sym_QMARK] = ACTIONS(2285), - [anon_sym_BANG] = ACTIONS(2285), - [anon_sym_go] = ACTIONS(2285), - [anon_sym_spawn] = ACTIONS(2285), - [anon_sym_json_DOTdecode] = ACTIONS(2283), - [anon_sym_LBRACK2] = ACTIONS(2285), - [anon_sym_TILDE] = ACTIONS(2283), - [anon_sym_CARET] = ACTIONS(2283), - [anon_sym_AMP] = ACTIONS(2285), - [anon_sym_LT_DASH] = ACTIONS(2283), - [anon_sym_LT_LT] = ACTIONS(2283), - [anon_sym_GT_GT] = ACTIONS(2285), - [anon_sym_GT_GT_GT] = ACTIONS(2283), - [anon_sym_AMP_CARET] = ACTIONS(2283), - [anon_sym_AMP_AMP] = ACTIONS(2283), - [anon_sym_PIPE_PIPE] = ACTIONS(2283), - [anon_sym_or] = ACTIONS(2285), - [sym_none] = ACTIONS(2285), - [sym_true] = ACTIONS(2285), - [sym_false] = ACTIONS(2285), - [sym_nil] = ACTIONS(2285), - [anon_sym_QMARK_DOT] = ACTIONS(2283), - [anon_sym_POUND_LBRACK] = ACTIONS(2283), - [anon_sym_if] = ACTIONS(2285), - [anon_sym_DOLLARif] = ACTIONS(2285), - [anon_sym_is] = ACTIONS(2285), - [anon_sym_BANGis] = ACTIONS(2283), - [anon_sym_in] = ACTIONS(2285), - [anon_sym_BANGin] = ACTIONS(2283), - [anon_sym_match] = ACTIONS(2285), - [anon_sym_select] = ACTIONS(2285), - [anon_sym_lock] = ACTIONS(2285), - [anon_sym_rlock] = ACTIONS(2285), - [anon_sym_unsafe] = ACTIONS(2285), - [anon_sym_sql] = ACTIONS(2285), - [sym_int_literal] = ACTIONS(2285), - [sym_float_literal] = ACTIONS(2283), - [sym_rune_literal] = ACTIONS(2283), - [sym_pseudo_compile_time_identifier] = ACTIONS(2285), - [anon_sym_shared] = ACTIONS(2285), - [anon_sym_map_LBRACK] = ACTIONS(2283), - [anon_sym_chan] = ACTIONS(2285), - [anon_sym_thread] = ACTIONS(2285), - [anon_sym_atomic] = ACTIONS(2285), - [sym___double_quote] = ACTIONS(2283), - [sym___single_quote] = ACTIONS(2283), - [sym___c_double_quote] = ACTIONS(2283), - [sym___c_single_quote] = ACTIONS(2283), - [sym___r_double_quote] = ACTIONS(2283), - [sym___r_single_quote] = ACTIONS(2283), + [anon_sym_DOT] = ACTIONS(2449), + [anon_sym_as] = ACTIONS(2449), + [anon_sym_LBRACE] = ACTIONS(2447), + [anon_sym_COMMA] = ACTIONS(2447), + [anon_sym_RBRACE] = ACTIONS(2447), + [anon_sym_LPAREN] = ACTIONS(2447), + [anon_sym_PIPE] = ACTIONS(2449), + [anon_sym_fn] = ACTIONS(2449), + [anon_sym_PLUS] = ACTIONS(2449), + [anon_sym_DASH] = ACTIONS(2449), + [anon_sym_STAR] = ACTIONS(2447), + [anon_sym_SLASH] = ACTIONS(2449), + [anon_sym_PERCENT] = ACTIONS(2447), + [anon_sym_LT] = ACTIONS(2449), + [anon_sym_GT] = ACTIONS(2449), + [anon_sym_EQ_EQ] = ACTIONS(2447), + [anon_sym_BANG_EQ] = ACTIONS(2447), + [anon_sym_LT_EQ] = ACTIONS(2447), + [anon_sym_GT_EQ] = ACTIONS(2447), + [anon_sym_LBRACK] = ACTIONS(2447), + [anon_sym_RBRACK] = ACTIONS(2447), + [anon_sym_struct] = ACTIONS(2449), + [anon_sym_mut] = ACTIONS(2449), + [anon_sym_COLON] = ACTIONS(2447), + [anon_sym_PLUS_PLUS] = ACTIONS(2447), + [anon_sym_DASH_DASH] = ACTIONS(2447), + [anon_sym_QMARK] = ACTIONS(2449), + [anon_sym_BANG] = ACTIONS(2449), + [anon_sym_go] = ACTIONS(2449), + [anon_sym_spawn] = ACTIONS(2449), + [anon_sym_json_DOTdecode] = ACTIONS(2447), + [anon_sym_LBRACK2] = ACTIONS(2449), + [anon_sym_TILDE] = ACTIONS(2447), + [anon_sym_CARET] = ACTIONS(2447), + [anon_sym_AMP] = ACTIONS(2449), + [anon_sym_LT_DASH] = ACTIONS(2447), + [anon_sym_LT_LT] = ACTIONS(2447), + [anon_sym_GT_GT] = ACTIONS(2449), + [anon_sym_GT_GT_GT] = ACTIONS(2447), + [anon_sym_AMP_CARET] = ACTIONS(2447), + [anon_sym_AMP_AMP] = ACTIONS(2447), + [anon_sym_PIPE_PIPE] = ACTIONS(2447), + [anon_sym_or] = ACTIONS(2449), + [sym_none] = ACTIONS(2449), + [sym_true] = ACTIONS(2449), + [sym_false] = ACTIONS(2449), + [sym_nil] = ACTIONS(2449), + [anon_sym_QMARK_DOT] = ACTIONS(2447), + [anon_sym_POUND_LBRACK] = ACTIONS(2447), + [anon_sym_if] = ACTIONS(2449), + [anon_sym_DOLLARif] = ACTIONS(2449), + [anon_sym_is] = ACTIONS(2449), + [anon_sym_BANGis] = ACTIONS(2447), + [anon_sym_in] = ACTIONS(2449), + [anon_sym_BANGin] = ACTIONS(2447), + [anon_sym_match] = ACTIONS(2449), + [anon_sym_select] = ACTIONS(2449), + [anon_sym_lock] = ACTIONS(2449), + [anon_sym_rlock] = ACTIONS(2449), + [anon_sym_unsafe] = ACTIONS(2449), + [anon_sym_sql] = ACTIONS(2449), + [sym_int_literal] = ACTIONS(2449), + [sym_float_literal] = ACTIONS(2447), + [sym_rune_literal] = ACTIONS(2447), + [sym_pseudo_compile_time_identifier] = ACTIONS(2449), + [anon_sym_shared] = ACTIONS(2449), + [anon_sym_map_LBRACK] = ACTIONS(2447), + [anon_sym_chan] = ACTIONS(2449), + [anon_sym_thread] = ACTIONS(2449), + [anon_sym_atomic] = ACTIONS(2449), + [sym___double_quote] = ACTIONS(2447), + [sym___single_quote] = ACTIONS(2447), + [sym___c_double_quote] = ACTIONS(2447), + [sym___c_single_quote] = ACTIONS(2447), + [sym___r_double_quote] = ACTIONS(2447), + [sym___r_single_quote] = ACTIONS(2447), }, [1357] = { [sym_line_comment] = STATE(1357), [sym_block_comment] = STATE(1357), - [sym_identifier] = ACTIONS(2786), + [sym_identifier] = ACTIONS(2443), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(2786), - [anon_sym_as] = ACTIONS(2786), - [anon_sym_LBRACE] = ACTIONS(2784), - [anon_sym_COMMA] = ACTIONS(2784), - [anon_sym_RBRACE] = ACTIONS(2784), - [anon_sym_LPAREN] = ACTIONS(2784), - [anon_sym_PIPE] = ACTIONS(2786), - [anon_sym_fn] = ACTIONS(2786), - [anon_sym_PLUS] = ACTIONS(2786), - [anon_sym_DASH] = ACTIONS(2786), - [anon_sym_STAR] = ACTIONS(2784), - [anon_sym_SLASH] = ACTIONS(2786), - [anon_sym_PERCENT] = ACTIONS(2784), - [anon_sym_LT] = ACTIONS(2786), - [anon_sym_GT] = ACTIONS(2786), - [anon_sym_EQ_EQ] = ACTIONS(2784), - [anon_sym_BANG_EQ] = ACTIONS(2784), - [anon_sym_LT_EQ] = ACTIONS(2784), - [anon_sym_GT_EQ] = ACTIONS(2784), - [anon_sym_LBRACK] = ACTIONS(2784), - [anon_sym_RBRACK] = ACTIONS(2784), - [anon_sym_struct] = ACTIONS(2786), - [anon_sym_mut] = ACTIONS(2786), - [anon_sym_COLON] = ACTIONS(2784), - [anon_sym_PLUS_PLUS] = ACTIONS(2784), - [anon_sym_DASH_DASH] = ACTIONS(2784), - [anon_sym_QMARK] = ACTIONS(2786), - [anon_sym_BANG] = ACTIONS(2786), - [anon_sym_go] = ACTIONS(2786), - [anon_sym_spawn] = ACTIONS(2786), - [anon_sym_json_DOTdecode] = ACTIONS(2784), - [anon_sym_LBRACK2] = ACTIONS(2786), - [anon_sym_TILDE] = ACTIONS(2784), - [anon_sym_CARET] = ACTIONS(2784), - [anon_sym_AMP] = ACTIONS(2786), - [anon_sym_LT_DASH] = ACTIONS(2784), - [anon_sym_LT_LT] = ACTIONS(2784), - [anon_sym_GT_GT] = ACTIONS(2786), - [anon_sym_GT_GT_GT] = ACTIONS(2784), - [anon_sym_AMP_CARET] = ACTIONS(2784), - [anon_sym_AMP_AMP] = ACTIONS(2784), - [anon_sym_PIPE_PIPE] = ACTIONS(2784), - [anon_sym_or] = ACTIONS(2786), - [sym_none] = ACTIONS(2786), - [sym_true] = ACTIONS(2786), - [sym_false] = ACTIONS(2786), - [sym_nil] = ACTIONS(2786), - [anon_sym_QMARK_DOT] = ACTIONS(2784), - [anon_sym_POUND_LBRACK] = ACTIONS(2784), - [anon_sym_if] = ACTIONS(2786), - [anon_sym_DOLLARif] = ACTIONS(2786), - [anon_sym_is] = ACTIONS(2786), - [anon_sym_BANGis] = ACTIONS(2784), - [anon_sym_in] = ACTIONS(2786), - [anon_sym_BANGin] = ACTIONS(2784), - [anon_sym_match] = ACTIONS(2786), - [anon_sym_select] = ACTIONS(2786), - [anon_sym_lock] = ACTIONS(2786), - [anon_sym_rlock] = ACTIONS(2786), - [anon_sym_unsafe] = ACTIONS(2786), - [anon_sym_sql] = ACTIONS(2786), - [sym_int_literal] = ACTIONS(2786), - [sym_float_literal] = ACTIONS(2784), - [sym_rune_literal] = ACTIONS(2784), - [sym_pseudo_compile_time_identifier] = ACTIONS(2786), - [anon_sym_shared] = ACTIONS(2786), - [anon_sym_map_LBRACK] = ACTIONS(2784), - [anon_sym_chan] = ACTIONS(2786), - [anon_sym_thread] = ACTIONS(2786), - [anon_sym_atomic] = ACTIONS(2786), - [sym___double_quote] = ACTIONS(2784), - [sym___single_quote] = ACTIONS(2784), - [sym___c_double_quote] = ACTIONS(2784), - [sym___c_single_quote] = ACTIONS(2784), - [sym___r_double_quote] = ACTIONS(2784), - [sym___r_single_quote] = ACTIONS(2784), + [anon_sym_DOT] = ACTIONS(2443), + [anon_sym_as] = ACTIONS(2443), + [anon_sym_LBRACE] = ACTIONS(2441), + [anon_sym_COMMA] = ACTIONS(2441), + [anon_sym_RBRACE] = ACTIONS(2441), + [anon_sym_LPAREN] = ACTIONS(2441), + [anon_sym_PIPE] = ACTIONS(2443), + [anon_sym_fn] = ACTIONS(2443), + [anon_sym_PLUS] = ACTIONS(2443), + [anon_sym_DASH] = ACTIONS(2443), + [anon_sym_STAR] = ACTIONS(2441), + [anon_sym_SLASH] = ACTIONS(2443), + [anon_sym_PERCENT] = ACTIONS(2441), + [anon_sym_LT] = ACTIONS(2443), + [anon_sym_GT] = ACTIONS(2443), + [anon_sym_EQ_EQ] = ACTIONS(2441), + [anon_sym_BANG_EQ] = ACTIONS(2441), + [anon_sym_LT_EQ] = ACTIONS(2441), + [anon_sym_GT_EQ] = ACTIONS(2441), + [anon_sym_LBRACK] = ACTIONS(2441), + [anon_sym_RBRACK] = ACTIONS(2441), + [anon_sym_struct] = ACTIONS(2443), + [anon_sym_mut] = ACTIONS(2443), + [anon_sym_COLON] = ACTIONS(2441), + [anon_sym_PLUS_PLUS] = ACTIONS(2441), + [anon_sym_DASH_DASH] = ACTIONS(2441), + [anon_sym_QMARK] = ACTIONS(2443), + [anon_sym_BANG] = ACTIONS(2443), + [anon_sym_go] = ACTIONS(2443), + [anon_sym_spawn] = ACTIONS(2443), + [anon_sym_json_DOTdecode] = ACTIONS(2441), + [anon_sym_LBRACK2] = ACTIONS(2443), + [anon_sym_TILDE] = ACTIONS(2441), + [anon_sym_CARET] = ACTIONS(2441), + [anon_sym_AMP] = ACTIONS(2443), + [anon_sym_LT_DASH] = ACTIONS(2441), + [anon_sym_LT_LT] = ACTIONS(2441), + [anon_sym_GT_GT] = ACTIONS(2443), + [anon_sym_GT_GT_GT] = ACTIONS(2441), + [anon_sym_AMP_CARET] = ACTIONS(2441), + [anon_sym_AMP_AMP] = ACTIONS(2441), + [anon_sym_PIPE_PIPE] = ACTIONS(2441), + [anon_sym_or] = ACTIONS(2443), + [sym_none] = ACTIONS(2443), + [sym_true] = ACTIONS(2443), + [sym_false] = ACTIONS(2443), + [sym_nil] = ACTIONS(2443), + [anon_sym_QMARK_DOT] = ACTIONS(2441), + [anon_sym_POUND_LBRACK] = ACTIONS(2441), + [anon_sym_if] = ACTIONS(2443), + [anon_sym_DOLLARif] = ACTIONS(2443), + [anon_sym_is] = ACTIONS(2443), + [anon_sym_BANGis] = ACTIONS(2441), + [anon_sym_in] = ACTIONS(2443), + [anon_sym_BANGin] = ACTIONS(2441), + [anon_sym_match] = ACTIONS(2443), + [anon_sym_select] = ACTIONS(2443), + [anon_sym_lock] = ACTIONS(2443), + [anon_sym_rlock] = ACTIONS(2443), + [anon_sym_unsafe] = ACTIONS(2443), + [anon_sym_sql] = ACTIONS(2443), + [sym_int_literal] = ACTIONS(2443), + [sym_float_literal] = ACTIONS(2441), + [sym_rune_literal] = ACTIONS(2441), + [sym_pseudo_compile_time_identifier] = ACTIONS(2443), + [anon_sym_shared] = ACTIONS(2443), + [anon_sym_map_LBRACK] = ACTIONS(2441), + [anon_sym_chan] = ACTIONS(2443), + [anon_sym_thread] = ACTIONS(2443), + [anon_sym_atomic] = ACTIONS(2443), + [sym___double_quote] = ACTIONS(2441), + [sym___single_quote] = ACTIONS(2441), + [sym___c_double_quote] = ACTIONS(2441), + [sym___c_single_quote] = ACTIONS(2441), + [sym___r_double_quote] = ACTIONS(2441), + [sym___r_single_quote] = ACTIONS(2441), }, [1358] = { [sym_line_comment] = STATE(1358), [sym_block_comment] = STATE(1358), - [sym_identifier] = ACTIONS(2519), + [sym_identifier] = ACTIONS(2902), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(2519), - [anon_sym_as] = ACTIONS(2519), - [anon_sym_LBRACE] = ACTIONS(2517), - [anon_sym_COMMA] = ACTIONS(2517), - [anon_sym_RBRACE] = ACTIONS(2517), - [anon_sym_LPAREN] = ACTIONS(2517), - [anon_sym_PIPE] = ACTIONS(2519), - [anon_sym_fn] = ACTIONS(2519), - [anon_sym_PLUS] = ACTIONS(2519), - [anon_sym_DASH] = ACTIONS(2519), - [anon_sym_STAR] = ACTIONS(2517), - [anon_sym_SLASH] = ACTIONS(2519), - [anon_sym_PERCENT] = ACTIONS(2517), - [anon_sym_LT] = ACTIONS(2519), - [anon_sym_GT] = ACTIONS(2519), - [anon_sym_EQ_EQ] = ACTIONS(2517), - [anon_sym_BANG_EQ] = ACTIONS(2517), - [anon_sym_LT_EQ] = ACTIONS(2517), - [anon_sym_GT_EQ] = ACTIONS(2517), - [anon_sym_LBRACK] = ACTIONS(2517), - [anon_sym_RBRACK] = ACTIONS(2517), - [anon_sym_struct] = ACTIONS(2519), - [anon_sym_mut] = ACTIONS(2519), - [anon_sym_COLON] = ACTIONS(2517), - [anon_sym_PLUS_PLUS] = ACTIONS(2517), - [anon_sym_DASH_DASH] = ACTIONS(2517), - [anon_sym_QMARK] = ACTIONS(2519), - [anon_sym_BANG] = ACTIONS(2519), - [anon_sym_go] = ACTIONS(2519), - [anon_sym_spawn] = ACTIONS(2519), - [anon_sym_json_DOTdecode] = ACTIONS(2517), - [anon_sym_LBRACK2] = ACTIONS(2519), - [anon_sym_TILDE] = ACTIONS(2517), - [anon_sym_CARET] = ACTIONS(2517), - [anon_sym_AMP] = ACTIONS(2519), - [anon_sym_LT_DASH] = ACTIONS(2517), - [anon_sym_LT_LT] = ACTIONS(2517), - [anon_sym_GT_GT] = ACTIONS(2519), - [anon_sym_GT_GT_GT] = ACTIONS(2517), - [anon_sym_AMP_CARET] = ACTIONS(2517), - [anon_sym_AMP_AMP] = ACTIONS(2517), - [anon_sym_PIPE_PIPE] = ACTIONS(2517), - [anon_sym_or] = ACTIONS(2519), - [sym_none] = ACTIONS(2519), - [sym_true] = ACTIONS(2519), - [sym_false] = ACTIONS(2519), - [sym_nil] = ACTIONS(2519), - [anon_sym_QMARK_DOT] = ACTIONS(2517), - [anon_sym_POUND_LBRACK] = ACTIONS(2517), - [anon_sym_if] = ACTIONS(2519), - [anon_sym_DOLLARif] = ACTIONS(2519), - [anon_sym_is] = ACTIONS(2519), - [anon_sym_BANGis] = ACTIONS(2517), - [anon_sym_in] = ACTIONS(2519), - [anon_sym_BANGin] = ACTIONS(2517), - [anon_sym_match] = ACTIONS(2519), - [anon_sym_select] = ACTIONS(2519), - [anon_sym_lock] = ACTIONS(2519), - [anon_sym_rlock] = ACTIONS(2519), - [anon_sym_unsafe] = ACTIONS(2519), - [anon_sym_sql] = ACTIONS(2519), - [sym_int_literal] = ACTIONS(2519), - [sym_float_literal] = ACTIONS(2517), - [sym_rune_literal] = ACTIONS(2517), - [sym_pseudo_compile_time_identifier] = ACTIONS(2519), - [anon_sym_shared] = ACTIONS(2519), - [anon_sym_map_LBRACK] = ACTIONS(2517), - [anon_sym_chan] = ACTIONS(2519), - [anon_sym_thread] = ACTIONS(2519), - [anon_sym_atomic] = ACTIONS(2519), - [sym___double_quote] = ACTIONS(2517), - [sym___single_quote] = ACTIONS(2517), - [sym___c_double_quote] = ACTIONS(2517), - [sym___c_single_quote] = ACTIONS(2517), - [sym___r_double_quote] = ACTIONS(2517), - [sym___r_single_quote] = ACTIONS(2517), + [anon_sym_DOT] = ACTIONS(2902), + [anon_sym_as] = ACTIONS(2902), + [anon_sym_LBRACE] = ACTIONS(2900), + [anon_sym_COMMA] = ACTIONS(2900), + [anon_sym_RBRACE] = ACTIONS(2900), + [anon_sym_LPAREN] = ACTIONS(2900), + [anon_sym_PIPE] = ACTIONS(2902), + [anon_sym_fn] = ACTIONS(2902), + [anon_sym_PLUS] = ACTIONS(2902), + [anon_sym_DASH] = ACTIONS(2902), + [anon_sym_STAR] = ACTIONS(2900), + [anon_sym_SLASH] = ACTIONS(2902), + [anon_sym_PERCENT] = ACTIONS(2900), + [anon_sym_LT] = ACTIONS(2902), + [anon_sym_GT] = ACTIONS(2902), + [anon_sym_EQ_EQ] = ACTIONS(2900), + [anon_sym_BANG_EQ] = ACTIONS(2900), + [anon_sym_LT_EQ] = ACTIONS(2900), + [anon_sym_GT_EQ] = ACTIONS(2900), + [anon_sym_LBRACK] = ACTIONS(2900), + [anon_sym_RBRACK] = ACTIONS(2900), + [anon_sym_struct] = ACTIONS(2902), + [anon_sym_mut] = ACTIONS(2902), + [anon_sym_COLON] = ACTIONS(2900), + [anon_sym_PLUS_PLUS] = ACTIONS(2900), + [anon_sym_DASH_DASH] = ACTIONS(2900), + [anon_sym_QMARK] = ACTIONS(2902), + [anon_sym_BANG] = ACTIONS(2902), + [anon_sym_go] = ACTIONS(2902), + [anon_sym_spawn] = ACTIONS(2902), + [anon_sym_json_DOTdecode] = ACTIONS(2900), + [anon_sym_LBRACK2] = ACTIONS(2902), + [anon_sym_TILDE] = ACTIONS(2900), + [anon_sym_CARET] = ACTIONS(2900), + [anon_sym_AMP] = ACTIONS(2902), + [anon_sym_LT_DASH] = ACTIONS(2900), + [anon_sym_LT_LT] = ACTIONS(2900), + [anon_sym_GT_GT] = ACTIONS(2902), + [anon_sym_GT_GT_GT] = ACTIONS(2900), + [anon_sym_AMP_CARET] = ACTIONS(2900), + [anon_sym_AMP_AMP] = ACTIONS(2900), + [anon_sym_PIPE_PIPE] = ACTIONS(2900), + [anon_sym_or] = ACTIONS(2902), + [sym_none] = ACTIONS(2902), + [sym_true] = ACTIONS(2902), + [sym_false] = ACTIONS(2902), + [sym_nil] = ACTIONS(2902), + [anon_sym_QMARK_DOT] = ACTIONS(2900), + [anon_sym_POUND_LBRACK] = ACTIONS(2900), + [anon_sym_if] = ACTIONS(2902), + [anon_sym_DOLLARif] = ACTIONS(2902), + [anon_sym_is] = ACTIONS(2902), + [anon_sym_BANGis] = ACTIONS(2900), + [anon_sym_in] = ACTIONS(2902), + [anon_sym_BANGin] = ACTIONS(2900), + [anon_sym_match] = ACTIONS(2902), + [anon_sym_select] = ACTIONS(2902), + [anon_sym_lock] = ACTIONS(2902), + [anon_sym_rlock] = ACTIONS(2902), + [anon_sym_unsafe] = ACTIONS(2902), + [anon_sym_sql] = ACTIONS(2902), + [sym_int_literal] = ACTIONS(2902), + [sym_float_literal] = ACTIONS(2900), + [sym_rune_literal] = ACTIONS(2900), + [sym_pseudo_compile_time_identifier] = ACTIONS(2902), + [anon_sym_shared] = ACTIONS(2902), + [anon_sym_map_LBRACK] = ACTIONS(2900), + [anon_sym_chan] = ACTIONS(2902), + [anon_sym_thread] = ACTIONS(2902), + [anon_sym_atomic] = ACTIONS(2902), + [sym___double_quote] = ACTIONS(2900), + [sym___single_quote] = ACTIONS(2900), + [sym___c_double_quote] = ACTIONS(2900), + [sym___c_single_quote] = ACTIONS(2900), + [sym___r_double_quote] = ACTIONS(2900), + [sym___r_single_quote] = ACTIONS(2900), }, [1359] = { [sym_line_comment] = STATE(1359), [sym_block_comment] = STATE(1359), - [sym_identifier] = ACTIONS(2515), + [sym_identifier] = ACTIONS(2744), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [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_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(2744), + [anon_sym_as] = ACTIONS(2744), + [anon_sym_LBRACE] = ACTIONS(2742), + [anon_sym_COMMA] = ACTIONS(2742), + [anon_sym_RBRACE] = ACTIONS(2742), + [anon_sym_LPAREN] = ACTIONS(2742), + [anon_sym_PIPE] = ACTIONS(2744), + [anon_sym_fn] = ACTIONS(2744), + [anon_sym_PLUS] = ACTIONS(2744), + [anon_sym_DASH] = ACTIONS(2744), + [anon_sym_STAR] = ACTIONS(2742), + [anon_sym_SLASH] = ACTIONS(2744), + [anon_sym_PERCENT] = ACTIONS(2742), + [anon_sym_LT] = ACTIONS(2744), + [anon_sym_GT] = ACTIONS(2744), + [anon_sym_EQ_EQ] = ACTIONS(2742), + [anon_sym_BANG_EQ] = ACTIONS(2742), + [anon_sym_LT_EQ] = ACTIONS(2742), + [anon_sym_GT_EQ] = ACTIONS(2742), + [anon_sym_LBRACK] = ACTIONS(2742), + [anon_sym_RBRACK] = ACTIONS(2742), + [anon_sym_struct] = ACTIONS(2744), + [anon_sym_mut] = ACTIONS(2744), + [anon_sym_COLON] = ACTIONS(2742), + [anon_sym_PLUS_PLUS] = ACTIONS(2742), + [anon_sym_DASH_DASH] = ACTIONS(2742), + [anon_sym_QMARK] = ACTIONS(2744), + [anon_sym_BANG] = ACTIONS(2744), + [anon_sym_go] = ACTIONS(2744), + [anon_sym_spawn] = ACTIONS(2744), + [anon_sym_json_DOTdecode] = ACTIONS(2742), + [anon_sym_LBRACK2] = ACTIONS(2744), + [anon_sym_TILDE] = ACTIONS(2742), + [anon_sym_CARET] = ACTIONS(2742), + [anon_sym_AMP] = ACTIONS(2744), + [anon_sym_LT_DASH] = ACTIONS(2742), + [anon_sym_LT_LT] = ACTIONS(2742), + [anon_sym_GT_GT] = ACTIONS(2744), + [anon_sym_GT_GT_GT] = ACTIONS(2742), + [anon_sym_AMP_CARET] = ACTIONS(2742), + [anon_sym_AMP_AMP] = ACTIONS(2742), + [anon_sym_PIPE_PIPE] = ACTIONS(2742), + [anon_sym_or] = ACTIONS(2744), + [sym_none] = ACTIONS(2744), + [sym_true] = ACTIONS(2744), + [sym_false] = ACTIONS(2744), + [sym_nil] = ACTIONS(2744), + [anon_sym_QMARK_DOT] = ACTIONS(2742), + [anon_sym_POUND_LBRACK] = ACTIONS(2742), + [anon_sym_if] = ACTIONS(2744), + [anon_sym_DOLLARif] = ACTIONS(2744), + [anon_sym_is] = ACTIONS(2744), + [anon_sym_BANGis] = ACTIONS(2742), + [anon_sym_in] = ACTIONS(2744), + [anon_sym_BANGin] = ACTIONS(2742), + [anon_sym_match] = ACTIONS(2744), + [anon_sym_select] = ACTIONS(2744), + [anon_sym_lock] = ACTIONS(2744), + [anon_sym_rlock] = ACTIONS(2744), + [anon_sym_unsafe] = ACTIONS(2744), + [anon_sym_sql] = ACTIONS(2744), + [sym_int_literal] = ACTIONS(2744), + [sym_float_literal] = ACTIONS(2742), + [sym_rune_literal] = ACTIONS(2742), + [sym_pseudo_compile_time_identifier] = ACTIONS(2744), + [anon_sym_shared] = ACTIONS(2744), + [anon_sym_map_LBRACK] = ACTIONS(2742), + [anon_sym_chan] = ACTIONS(2744), + [anon_sym_thread] = ACTIONS(2744), + [anon_sym_atomic] = ACTIONS(2744), + [sym___double_quote] = ACTIONS(2742), + [sym___single_quote] = ACTIONS(2742), + [sym___c_double_quote] = ACTIONS(2742), + [sym___c_single_quote] = ACTIONS(2742), + [sym___r_double_quote] = ACTIONS(2742), + [sym___r_single_quote] = ACTIONS(2742), }, [1360] = { [sym_line_comment] = STATE(1360), [sym_block_comment] = STATE(1360), - [sym_identifier] = ACTIONS(1905), + [sym_identifier] = ACTIONS(2874), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1905), - [anon_sym_as] = ACTIONS(1905), - [anon_sym_LBRACE] = ACTIONS(1903), - [anon_sym_COMMA] = ACTIONS(1903), - [anon_sym_RBRACE] = ACTIONS(1903), - [anon_sym_LPAREN] = ACTIONS(1903), - [anon_sym_PIPE] = ACTIONS(1905), - [anon_sym_fn] = ACTIONS(1905), - [anon_sym_PLUS] = ACTIONS(1905), - [anon_sym_DASH] = ACTIONS(1905), - [anon_sym_STAR] = ACTIONS(1903), - [anon_sym_SLASH] = ACTIONS(1905), - [anon_sym_PERCENT] = ACTIONS(1903), - [anon_sym_LT] = ACTIONS(1905), - [anon_sym_GT] = ACTIONS(1905), - [anon_sym_EQ_EQ] = ACTIONS(1903), - [anon_sym_BANG_EQ] = ACTIONS(1903), - [anon_sym_LT_EQ] = ACTIONS(1903), - [anon_sym_GT_EQ] = ACTIONS(1903), - [anon_sym_LBRACK] = ACTIONS(1903), - [anon_sym_RBRACK] = ACTIONS(1903), - [anon_sym_struct] = ACTIONS(1905), - [anon_sym_mut] = ACTIONS(1905), - [anon_sym_COLON] = ACTIONS(1903), - [anon_sym_PLUS_PLUS] = ACTIONS(1903), - [anon_sym_DASH_DASH] = ACTIONS(1903), - [anon_sym_QMARK] = ACTIONS(1905), - [anon_sym_BANG] = ACTIONS(1905), - [anon_sym_go] = ACTIONS(1905), - [anon_sym_spawn] = ACTIONS(1905), - [anon_sym_json_DOTdecode] = ACTIONS(1903), - [anon_sym_LBRACK2] = ACTIONS(1905), - [anon_sym_TILDE] = ACTIONS(1903), - [anon_sym_CARET] = ACTIONS(1903), - [anon_sym_AMP] = ACTIONS(1905), - [anon_sym_LT_DASH] = ACTIONS(1903), - [anon_sym_LT_LT] = ACTIONS(1903), - [anon_sym_GT_GT] = ACTIONS(1905), - [anon_sym_GT_GT_GT] = ACTIONS(1903), - [anon_sym_AMP_CARET] = ACTIONS(1903), - [anon_sym_AMP_AMP] = ACTIONS(1903), - [anon_sym_PIPE_PIPE] = ACTIONS(1903), - [anon_sym_or] = ACTIONS(1905), - [sym_none] = ACTIONS(1905), - [sym_true] = ACTIONS(1905), - [sym_false] = ACTIONS(1905), - [sym_nil] = ACTIONS(1905), - [anon_sym_QMARK_DOT] = ACTIONS(1903), - [anon_sym_POUND_LBRACK] = ACTIONS(1903), - [anon_sym_if] = ACTIONS(1905), - [anon_sym_DOLLARif] = ACTIONS(1905), - [anon_sym_is] = ACTIONS(1905), - [anon_sym_BANGis] = ACTIONS(1903), - [anon_sym_in] = ACTIONS(1905), - [anon_sym_BANGin] = ACTIONS(1903), - [anon_sym_match] = ACTIONS(1905), - [anon_sym_select] = ACTIONS(1905), - [anon_sym_lock] = ACTIONS(1905), - [anon_sym_rlock] = ACTIONS(1905), - [anon_sym_unsafe] = ACTIONS(1905), - [anon_sym_sql] = ACTIONS(1905), - [sym_int_literal] = ACTIONS(1905), - [sym_float_literal] = ACTIONS(1903), - [sym_rune_literal] = ACTIONS(1903), - [sym_pseudo_compile_time_identifier] = ACTIONS(1905), - [anon_sym_shared] = ACTIONS(1905), - [anon_sym_map_LBRACK] = ACTIONS(1903), - [anon_sym_chan] = ACTIONS(1905), - [anon_sym_thread] = ACTIONS(1905), - [anon_sym_atomic] = ACTIONS(1905), - [sym___double_quote] = ACTIONS(1903), - [sym___single_quote] = ACTIONS(1903), - [sym___c_double_quote] = ACTIONS(1903), - [sym___c_single_quote] = ACTIONS(1903), - [sym___r_double_quote] = ACTIONS(1903), - [sym___r_single_quote] = ACTIONS(1903), + [anon_sym_DOT] = ACTIONS(2874), + [anon_sym_as] = ACTIONS(2874), + [anon_sym_LBRACE] = ACTIONS(2872), + [anon_sym_COMMA] = ACTIONS(2872), + [anon_sym_RBRACE] = ACTIONS(2872), + [anon_sym_LPAREN] = ACTIONS(2872), + [anon_sym_PIPE] = ACTIONS(2874), + [anon_sym_fn] = ACTIONS(2874), + [anon_sym_PLUS] = ACTIONS(2874), + [anon_sym_DASH] = ACTIONS(2874), + [anon_sym_STAR] = ACTIONS(2872), + [anon_sym_SLASH] = ACTIONS(2874), + [anon_sym_PERCENT] = ACTIONS(2872), + [anon_sym_LT] = ACTIONS(2874), + [anon_sym_GT] = ACTIONS(2874), + [anon_sym_EQ_EQ] = ACTIONS(2872), + [anon_sym_BANG_EQ] = ACTIONS(2872), + [anon_sym_LT_EQ] = ACTIONS(2872), + [anon_sym_GT_EQ] = ACTIONS(2872), + [anon_sym_LBRACK] = ACTIONS(2872), + [anon_sym_RBRACK] = ACTIONS(2872), + [anon_sym_struct] = ACTIONS(2874), + [anon_sym_mut] = ACTIONS(2874), + [anon_sym_COLON] = ACTIONS(2872), + [anon_sym_PLUS_PLUS] = ACTIONS(2872), + [anon_sym_DASH_DASH] = ACTIONS(2872), + [anon_sym_QMARK] = ACTIONS(2874), + [anon_sym_BANG] = ACTIONS(2874), + [anon_sym_go] = ACTIONS(2874), + [anon_sym_spawn] = ACTIONS(2874), + [anon_sym_json_DOTdecode] = ACTIONS(2872), + [anon_sym_LBRACK2] = ACTIONS(2874), + [anon_sym_TILDE] = ACTIONS(2872), + [anon_sym_CARET] = ACTIONS(2872), + [anon_sym_AMP] = ACTIONS(2874), + [anon_sym_LT_DASH] = ACTIONS(2872), + [anon_sym_LT_LT] = ACTIONS(2872), + [anon_sym_GT_GT] = ACTIONS(2874), + [anon_sym_GT_GT_GT] = ACTIONS(2872), + [anon_sym_AMP_CARET] = ACTIONS(2872), + [anon_sym_AMP_AMP] = ACTIONS(2872), + [anon_sym_PIPE_PIPE] = ACTIONS(2872), + [anon_sym_or] = ACTIONS(2874), + [sym_none] = ACTIONS(2874), + [sym_true] = ACTIONS(2874), + [sym_false] = ACTIONS(2874), + [sym_nil] = ACTIONS(2874), + [anon_sym_QMARK_DOT] = ACTIONS(2872), + [anon_sym_POUND_LBRACK] = ACTIONS(2872), + [anon_sym_if] = ACTIONS(2874), + [anon_sym_DOLLARif] = ACTIONS(2874), + [anon_sym_is] = ACTIONS(2874), + [anon_sym_BANGis] = ACTIONS(2872), + [anon_sym_in] = ACTIONS(2874), + [anon_sym_BANGin] = ACTIONS(2872), + [anon_sym_match] = ACTIONS(2874), + [anon_sym_select] = ACTIONS(2874), + [anon_sym_lock] = ACTIONS(2874), + [anon_sym_rlock] = ACTIONS(2874), + [anon_sym_unsafe] = ACTIONS(2874), + [anon_sym_sql] = ACTIONS(2874), + [sym_int_literal] = ACTIONS(2874), + [sym_float_literal] = ACTIONS(2872), + [sym_rune_literal] = ACTIONS(2872), + [sym_pseudo_compile_time_identifier] = ACTIONS(2874), + [anon_sym_shared] = ACTIONS(2874), + [anon_sym_map_LBRACK] = ACTIONS(2872), + [anon_sym_chan] = ACTIONS(2874), + [anon_sym_thread] = ACTIONS(2874), + [anon_sym_atomic] = ACTIONS(2874), + [sym___double_quote] = ACTIONS(2872), + [sym___single_quote] = ACTIONS(2872), + [sym___c_double_quote] = ACTIONS(2872), + [sym___c_single_quote] = ACTIONS(2872), + [sym___r_double_quote] = ACTIONS(2872), + [sym___r_single_quote] = ACTIONS(2872), }, [1361] = { [sym_line_comment] = STATE(1361), [sym_block_comment] = STATE(1361), - [sym_identifier] = ACTIONS(2247), + [sym_identifier] = ACTIONS(2307), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(2247), - [anon_sym_as] = ACTIONS(2247), - [anon_sym_LBRACE] = ACTIONS(2245), - [anon_sym_COMMA] = ACTIONS(2245), - [anon_sym_RBRACE] = ACTIONS(2245), - [anon_sym_LPAREN] = ACTIONS(2245), - [anon_sym_PIPE] = ACTIONS(2247), - [anon_sym_fn] = ACTIONS(2247), - [anon_sym_PLUS] = ACTIONS(2247), - [anon_sym_DASH] = ACTIONS(2247), - [anon_sym_STAR] = ACTIONS(2245), - [anon_sym_SLASH] = ACTIONS(2247), - [anon_sym_PERCENT] = ACTIONS(2245), - [anon_sym_LT] = ACTIONS(2247), - [anon_sym_GT] = ACTIONS(2247), - [anon_sym_EQ_EQ] = ACTIONS(2245), - [anon_sym_BANG_EQ] = ACTIONS(2245), - [anon_sym_LT_EQ] = ACTIONS(2245), - [anon_sym_GT_EQ] = ACTIONS(2245), - [anon_sym_LBRACK] = ACTIONS(2245), - [anon_sym_RBRACK] = ACTIONS(2245), - [anon_sym_struct] = ACTIONS(2247), - [anon_sym_mut] = ACTIONS(2247), - [anon_sym_COLON] = ACTIONS(2245), - [anon_sym_PLUS_PLUS] = ACTIONS(2245), - [anon_sym_DASH_DASH] = ACTIONS(2245), - [anon_sym_QMARK] = ACTIONS(2247), - [anon_sym_BANG] = ACTIONS(2247), - [anon_sym_go] = ACTIONS(2247), - [anon_sym_spawn] = ACTIONS(2247), - [anon_sym_json_DOTdecode] = ACTIONS(2245), - [anon_sym_LBRACK2] = ACTIONS(2247), - [anon_sym_TILDE] = ACTIONS(2245), - [anon_sym_CARET] = ACTIONS(2245), - [anon_sym_AMP] = ACTIONS(2247), - [anon_sym_LT_DASH] = ACTIONS(2245), - [anon_sym_LT_LT] = ACTIONS(2245), - [anon_sym_GT_GT] = ACTIONS(2247), - [anon_sym_GT_GT_GT] = ACTIONS(2245), - [anon_sym_AMP_CARET] = ACTIONS(2245), - [anon_sym_AMP_AMP] = ACTIONS(2245), - [anon_sym_PIPE_PIPE] = ACTIONS(2245), - [anon_sym_or] = ACTIONS(2247), - [sym_none] = ACTIONS(2247), - [sym_true] = ACTIONS(2247), - [sym_false] = ACTIONS(2247), - [sym_nil] = ACTIONS(2247), - [anon_sym_QMARK_DOT] = ACTIONS(2245), - [anon_sym_POUND_LBRACK] = ACTIONS(2245), - [anon_sym_if] = ACTIONS(2247), - [anon_sym_DOLLARif] = ACTIONS(2247), - [anon_sym_is] = ACTIONS(2247), - [anon_sym_BANGis] = ACTIONS(2245), - [anon_sym_in] = ACTIONS(2247), - [anon_sym_BANGin] = ACTIONS(2245), - [anon_sym_match] = ACTIONS(2247), - [anon_sym_select] = ACTIONS(2247), - [anon_sym_lock] = ACTIONS(2247), - [anon_sym_rlock] = ACTIONS(2247), - [anon_sym_unsafe] = ACTIONS(2247), - [anon_sym_sql] = ACTIONS(2247), - [sym_int_literal] = ACTIONS(2247), - [sym_float_literal] = ACTIONS(2245), - [sym_rune_literal] = ACTIONS(2245), - [sym_pseudo_compile_time_identifier] = ACTIONS(2247), - [anon_sym_shared] = ACTIONS(2247), - [anon_sym_map_LBRACK] = ACTIONS(2245), - [anon_sym_chan] = ACTIONS(2247), - [anon_sym_thread] = ACTIONS(2247), - [anon_sym_atomic] = ACTIONS(2247), - [sym___double_quote] = ACTIONS(2245), - [sym___single_quote] = ACTIONS(2245), - [sym___c_double_quote] = ACTIONS(2245), - [sym___c_single_quote] = ACTIONS(2245), - [sym___r_double_quote] = ACTIONS(2245), - [sym___r_single_quote] = ACTIONS(2245), + [anon_sym_DOT] = ACTIONS(2307), + [anon_sym_as] = ACTIONS(2307), + [anon_sym_LBRACE] = ACTIONS(2305), + [anon_sym_COMMA] = ACTIONS(2305), + [anon_sym_RBRACE] = ACTIONS(2305), + [anon_sym_LPAREN] = ACTIONS(2305), + [anon_sym_PIPE] = ACTIONS(2307), + [anon_sym_fn] = ACTIONS(2307), + [anon_sym_PLUS] = ACTIONS(2307), + [anon_sym_DASH] = ACTIONS(2307), + [anon_sym_STAR] = ACTIONS(2305), + [anon_sym_SLASH] = ACTIONS(2307), + [anon_sym_PERCENT] = ACTIONS(2305), + [anon_sym_LT] = ACTIONS(2307), + [anon_sym_GT] = ACTIONS(2307), + [anon_sym_EQ_EQ] = ACTIONS(2305), + [anon_sym_BANG_EQ] = ACTIONS(2305), + [anon_sym_LT_EQ] = ACTIONS(2305), + [anon_sym_GT_EQ] = ACTIONS(2305), + [anon_sym_LBRACK] = ACTIONS(2305), + [anon_sym_RBRACK] = ACTIONS(2305), + [anon_sym_struct] = ACTIONS(2307), + [anon_sym_mut] = ACTIONS(2307), + [anon_sym_COLON] = ACTIONS(2305), + [anon_sym_PLUS_PLUS] = ACTIONS(2305), + [anon_sym_DASH_DASH] = ACTIONS(2305), + [anon_sym_QMARK] = ACTIONS(2307), + [anon_sym_BANG] = ACTIONS(2307), + [anon_sym_go] = ACTIONS(2307), + [anon_sym_spawn] = ACTIONS(2307), + [anon_sym_json_DOTdecode] = ACTIONS(2305), + [anon_sym_LBRACK2] = ACTIONS(2307), + [anon_sym_TILDE] = ACTIONS(2305), + [anon_sym_CARET] = ACTIONS(2305), + [anon_sym_AMP] = ACTIONS(2307), + [anon_sym_LT_DASH] = ACTIONS(2305), + [anon_sym_LT_LT] = ACTIONS(2305), + [anon_sym_GT_GT] = ACTIONS(2307), + [anon_sym_GT_GT_GT] = ACTIONS(2305), + [anon_sym_AMP_CARET] = ACTIONS(2305), + [anon_sym_AMP_AMP] = ACTIONS(2305), + [anon_sym_PIPE_PIPE] = ACTIONS(2305), + [anon_sym_or] = ACTIONS(2307), + [sym_none] = ACTIONS(2307), + [sym_true] = ACTIONS(2307), + [sym_false] = ACTIONS(2307), + [sym_nil] = ACTIONS(2307), + [anon_sym_QMARK_DOT] = ACTIONS(2305), + [anon_sym_POUND_LBRACK] = ACTIONS(2305), + [anon_sym_if] = ACTIONS(2307), + [anon_sym_DOLLARif] = ACTIONS(2307), + [anon_sym_is] = ACTIONS(2307), + [anon_sym_BANGis] = ACTIONS(2305), + [anon_sym_in] = ACTIONS(2307), + [anon_sym_BANGin] = ACTIONS(2305), + [anon_sym_match] = ACTIONS(2307), + [anon_sym_select] = ACTIONS(2307), + [anon_sym_lock] = ACTIONS(2307), + [anon_sym_rlock] = ACTIONS(2307), + [anon_sym_unsafe] = ACTIONS(2307), + [anon_sym_sql] = ACTIONS(2307), + [sym_int_literal] = ACTIONS(2307), + [sym_float_literal] = ACTIONS(2305), + [sym_rune_literal] = ACTIONS(2305), + [sym_pseudo_compile_time_identifier] = ACTIONS(2307), + [anon_sym_shared] = ACTIONS(2307), + [anon_sym_map_LBRACK] = ACTIONS(2305), + [anon_sym_chan] = ACTIONS(2307), + [anon_sym_thread] = ACTIONS(2307), + [anon_sym_atomic] = ACTIONS(2307), + [sym___double_quote] = ACTIONS(2305), + [sym___single_quote] = ACTIONS(2305), + [sym___c_double_quote] = ACTIONS(2305), + [sym___c_single_quote] = ACTIONS(2305), + [sym___r_double_quote] = ACTIONS(2305), + [sym___r_single_quote] = ACTIONS(2305), }, [1362] = { [sym_line_comment] = STATE(1362), [sym_block_comment] = STATE(1362), - [sym_identifier] = ACTIONS(2309), + [sym_identifier] = ACTIONS(2293), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(2309), - [anon_sym_as] = ACTIONS(2309), - [anon_sym_LBRACE] = ACTIONS(2307), - [anon_sym_COMMA] = ACTIONS(2307), - [anon_sym_RBRACE] = ACTIONS(2307), - [anon_sym_LPAREN] = ACTIONS(2307), - [anon_sym_PIPE] = ACTIONS(2309), - [anon_sym_fn] = ACTIONS(2309), - [anon_sym_PLUS] = ACTIONS(2309), - [anon_sym_DASH] = ACTIONS(2309), - [anon_sym_STAR] = ACTIONS(2307), - [anon_sym_SLASH] = ACTIONS(2309), - [anon_sym_PERCENT] = ACTIONS(2307), - [anon_sym_LT] = ACTIONS(2309), - [anon_sym_GT] = ACTIONS(2309), - [anon_sym_EQ_EQ] = ACTIONS(2307), - [anon_sym_BANG_EQ] = ACTIONS(2307), - [anon_sym_LT_EQ] = ACTIONS(2307), - [anon_sym_GT_EQ] = ACTIONS(2307), - [anon_sym_LBRACK] = ACTIONS(2307), - [anon_sym_RBRACK] = ACTIONS(2307), - [anon_sym_struct] = ACTIONS(2309), - [anon_sym_mut] = ACTIONS(2309), - [anon_sym_COLON] = ACTIONS(2307), - [anon_sym_PLUS_PLUS] = ACTIONS(2307), - [anon_sym_DASH_DASH] = ACTIONS(2307), - [anon_sym_QMARK] = ACTIONS(2309), - [anon_sym_BANG] = ACTIONS(2309), - [anon_sym_go] = ACTIONS(2309), - [anon_sym_spawn] = ACTIONS(2309), - [anon_sym_json_DOTdecode] = ACTIONS(2307), - [anon_sym_LBRACK2] = ACTIONS(2309), - [anon_sym_TILDE] = ACTIONS(2307), - [anon_sym_CARET] = ACTIONS(2307), - [anon_sym_AMP] = ACTIONS(2309), - [anon_sym_LT_DASH] = ACTIONS(2307), - [anon_sym_LT_LT] = ACTIONS(2307), - [anon_sym_GT_GT] = ACTIONS(2309), - [anon_sym_GT_GT_GT] = ACTIONS(2307), - [anon_sym_AMP_CARET] = ACTIONS(2307), - [anon_sym_AMP_AMP] = ACTIONS(2307), - [anon_sym_PIPE_PIPE] = ACTIONS(2307), - [anon_sym_or] = ACTIONS(2309), - [sym_none] = ACTIONS(2309), - [sym_true] = ACTIONS(2309), - [sym_false] = ACTIONS(2309), - [sym_nil] = ACTIONS(2309), - [anon_sym_QMARK_DOT] = ACTIONS(2307), - [anon_sym_POUND_LBRACK] = ACTIONS(2307), - [anon_sym_if] = ACTIONS(2309), - [anon_sym_DOLLARif] = ACTIONS(2309), - [anon_sym_is] = ACTIONS(2309), - [anon_sym_BANGis] = ACTIONS(2307), - [anon_sym_in] = ACTIONS(2309), - [anon_sym_BANGin] = ACTIONS(2307), - [anon_sym_match] = ACTIONS(2309), - [anon_sym_select] = ACTIONS(2309), - [anon_sym_lock] = ACTIONS(2309), - [anon_sym_rlock] = ACTIONS(2309), - [anon_sym_unsafe] = ACTIONS(2309), - [anon_sym_sql] = ACTIONS(2309), - [sym_int_literal] = ACTIONS(2309), - [sym_float_literal] = ACTIONS(2307), - [sym_rune_literal] = ACTIONS(2307), - [sym_pseudo_compile_time_identifier] = ACTIONS(2309), - [anon_sym_shared] = ACTIONS(2309), - [anon_sym_map_LBRACK] = ACTIONS(2307), - [anon_sym_chan] = ACTIONS(2309), - [anon_sym_thread] = ACTIONS(2309), - [anon_sym_atomic] = ACTIONS(2309), - [sym___double_quote] = ACTIONS(2307), - [sym___single_quote] = ACTIONS(2307), - [sym___c_double_quote] = ACTIONS(2307), - [sym___c_single_quote] = ACTIONS(2307), - [sym___r_double_quote] = ACTIONS(2307), - [sym___r_single_quote] = ACTIONS(2307), + [anon_sym_DOT] = ACTIONS(2293), + [anon_sym_as] = ACTIONS(2293), + [anon_sym_LBRACE] = ACTIONS(2291), + [anon_sym_COMMA] = ACTIONS(2291), + [anon_sym_RBRACE] = ACTIONS(2291), + [anon_sym_LPAREN] = ACTIONS(2291), + [anon_sym_PIPE] = ACTIONS(2293), + [anon_sym_fn] = ACTIONS(2293), + [anon_sym_PLUS] = ACTIONS(2293), + [anon_sym_DASH] = ACTIONS(2293), + [anon_sym_STAR] = ACTIONS(2291), + [anon_sym_SLASH] = ACTIONS(2293), + [anon_sym_PERCENT] = ACTIONS(2291), + [anon_sym_LT] = ACTIONS(2293), + [anon_sym_GT] = ACTIONS(2293), + [anon_sym_EQ_EQ] = ACTIONS(2291), + [anon_sym_BANG_EQ] = ACTIONS(2291), + [anon_sym_LT_EQ] = ACTIONS(2291), + [anon_sym_GT_EQ] = ACTIONS(2291), + [anon_sym_LBRACK] = ACTIONS(2291), + [anon_sym_RBRACK] = ACTIONS(2291), + [anon_sym_struct] = ACTIONS(2293), + [anon_sym_mut] = ACTIONS(2293), + [anon_sym_COLON] = ACTIONS(2291), + [anon_sym_PLUS_PLUS] = ACTIONS(2291), + [anon_sym_DASH_DASH] = ACTIONS(2291), + [anon_sym_QMARK] = ACTIONS(2293), + [anon_sym_BANG] = ACTIONS(2293), + [anon_sym_go] = ACTIONS(2293), + [anon_sym_spawn] = ACTIONS(2293), + [anon_sym_json_DOTdecode] = ACTIONS(2291), + [anon_sym_LBRACK2] = ACTIONS(2293), + [anon_sym_TILDE] = ACTIONS(2291), + [anon_sym_CARET] = ACTIONS(2291), + [anon_sym_AMP] = ACTIONS(2293), + [anon_sym_LT_DASH] = ACTIONS(2291), + [anon_sym_LT_LT] = ACTIONS(2291), + [anon_sym_GT_GT] = ACTIONS(2293), + [anon_sym_GT_GT_GT] = ACTIONS(2291), + [anon_sym_AMP_CARET] = ACTIONS(2291), + [anon_sym_AMP_AMP] = ACTIONS(2291), + [anon_sym_PIPE_PIPE] = ACTIONS(2291), + [anon_sym_or] = ACTIONS(2293), + [sym_none] = ACTIONS(2293), + [sym_true] = ACTIONS(2293), + [sym_false] = ACTIONS(2293), + [sym_nil] = ACTIONS(2293), + [anon_sym_QMARK_DOT] = ACTIONS(2291), + [anon_sym_POUND_LBRACK] = ACTIONS(2291), + [anon_sym_if] = ACTIONS(2293), + [anon_sym_DOLLARif] = ACTIONS(2293), + [anon_sym_is] = ACTIONS(2293), + [anon_sym_BANGis] = ACTIONS(2291), + [anon_sym_in] = ACTIONS(2293), + [anon_sym_BANGin] = ACTIONS(2291), + [anon_sym_match] = ACTIONS(2293), + [anon_sym_select] = ACTIONS(2293), + [anon_sym_lock] = ACTIONS(2293), + [anon_sym_rlock] = ACTIONS(2293), + [anon_sym_unsafe] = ACTIONS(2293), + [anon_sym_sql] = ACTIONS(2293), + [sym_int_literal] = ACTIONS(2293), + [sym_float_literal] = ACTIONS(2291), + [sym_rune_literal] = ACTIONS(2291), + [sym_pseudo_compile_time_identifier] = ACTIONS(2293), + [anon_sym_shared] = ACTIONS(2293), + [anon_sym_map_LBRACK] = ACTIONS(2291), + [anon_sym_chan] = ACTIONS(2293), + [anon_sym_thread] = ACTIONS(2293), + [anon_sym_atomic] = ACTIONS(2293), + [sym___double_quote] = ACTIONS(2291), + [sym___single_quote] = ACTIONS(2291), + [sym___c_double_quote] = ACTIONS(2291), + [sym___c_single_quote] = ACTIONS(2291), + [sym___r_double_quote] = ACTIONS(2291), + [sym___r_single_quote] = ACTIONS(2291), }, [1363] = { [sym_line_comment] = STATE(1363), [sym_block_comment] = STATE(1363), - [sym_identifier] = ACTIONS(2117), + [sym_identifier] = ACTIONS(2750), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(2117), - [anon_sym_as] = ACTIONS(2117), - [anon_sym_LBRACE] = ACTIONS(2115), - [anon_sym_COMMA] = ACTIONS(2115), - [anon_sym_RBRACE] = ACTIONS(2115), - [anon_sym_LPAREN] = ACTIONS(2115), - [anon_sym_PIPE] = ACTIONS(2117), - [anon_sym_fn] = ACTIONS(2117), - [anon_sym_PLUS] = ACTIONS(2117), - [anon_sym_DASH] = ACTIONS(2117), - [anon_sym_STAR] = ACTIONS(2115), - [anon_sym_SLASH] = ACTIONS(2117), - [anon_sym_PERCENT] = ACTIONS(2115), - [anon_sym_LT] = ACTIONS(2117), - [anon_sym_GT] = ACTIONS(2117), - [anon_sym_EQ_EQ] = ACTIONS(2115), - [anon_sym_BANG_EQ] = ACTIONS(2115), - [anon_sym_LT_EQ] = ACTIONS(2115), - [anon_sym_GT_EQ] = ACTIONS(2115), - [anon_sym_LBRACK] = ACTIONS(2115), - [anon_sym_RBRACK] = ACTIONS(2115), - [anon_sym_struct] = ACTIONS(2117), - [anon_sym_mut] = ACTIONS(2117), - [anon_sym_COLON] = ACTIONS(2115), - [anon_sym_PLUS_PLUS] = ACTIONS(2115), - [anon_sym_DASH_DASH] = ACTIONS(2115), - [anon_sym_QMARK] = ACTIONS(2117), - [anon_sym_BANG] = ACTIONS(2117), - [anon_sym_go] = ACTIONS(2117), - [anon_sym_spawn] = ACTIONS(2117), - [anon_sym_json_DOTdecode] = ACTIONS(2115), - [anon_sym_LBRACK2] = ACTIONS(2117), - [anon_sym_TILDE] = ACTIONS(2115), - [anon_sym_CARET] = ACTIONS(2115), - [anon_sym_AMP] = ACTIONS(2117), - [anon_sym_LT_DASH] = ACTIONS(2115), - [anon_sym_LT_LT] = ACTIONS(2115), - [anon_sym_GT_GT] = ACTIONS(2117), - [anon_sym_GT_GT_GT] = ACTIONS(2115), - [anon_sym_AMP_CARET] = ACTIONS(2115), - [anon_sym_AMP_AMP] = ACTIONS(2115), - [anon_sym_PIPE_PIPE] = ACTIONS(2115), - [anon_sym_or] = ACTIONS(2117), - [sym_none] = ACTIONS(2117), - [sym_true] = ACTIONS(2117), - [sym_false] = ACTIONS(2117), - [sym_nil] = ACTIONS(2117), - [anon_sym_QMARK_DOT] = ACTIONS(2115), - [anon_sym_POUND_LBRACK] = ACTIONS(2115), - [anon_sym_if] = ACTIONS(2117), - [anon_sym_DOLLARif] = ACTIONS(2117), - [anon_sym_is] = ACTIONS(2117), - [anon_sym_BANGis] = ACTIONS(2115), - [anon_sym_in] = ACTIONS(2117), - [anon_sym_BANGin] = ACTIONS(2115), - [anon_sym_match] = ACTIONS(2117), - [anon_sym_select] = ACTIONS(2117), - [anon_sym_lock] = ACTIONS(2117), - [anon_sym_rlock] = ACTIONS(2117), - [anon_sym_unsafe] = ACTIONS(2117), - [anon_sym_sql] = ACTIONS(2117), - [sym_int_literal] = ACTIONS(2117), - [sym_float_literal] = ACTIONS(2115), - [sym_rune_literal] = ACTIONS(2115), - [sym_pseudo_compile_time_identifier] = ACTIONS(2117), - [anon_sym_shared] = ACTIONS(2117), - [anon_sym_map_LBRACK] = ACTIONS(2115), - [anon_sym_chan] = ACTIONS(2117), - [anon_sym_thread] = ACTIONS(2117), - [anon_sym_atomic] = ACTIONS(2117), - [sym___double_quote] = ACTIONS(2115), - [sym___single_quote] = ACTIONS(2115), - [sym___c_double_quote] = ACTIONS(2115), - [sym___c_single_quote] = ACTIONS(2115), - [sym___r_double_quote] = ACTIONS(2115), - [sym___r_single_quote] = ACTIONS(2115), + [anon_sym_DOT] = ACTIONS(2750), + [anon_sym_as] = ACTIONS(2750), + [anon_sym_LBRACE] = ACTIONS(2748), + [anon_sym_COMMA] = ACTIONS(2748), + [anon_sym_RBRACE] = ACTIONS(2748), + [anon_sym_LPAREN] = ACTIONS(2748), + [anon_sym_PIPE] = ACTIONS(2750), + [anon_sym_fn] = ACTIONS(2750), + [anon_sym_PLUS] = ACTIONS(2750), + [anon_sym_DASH] = ACTIONS(2750), + [anon_sym_STAR] = ACTIONS(2748), + [anon_sym_SLASH] = ACTIONS(2750), + [anon_sym_PERCENT] = ACTIONS(2748), + [anon_sym_LT] = ACTIONS(2750), + [anon_sym_GT] = ACTIONS(2750), + [anon_sym_EQ_EQ] = ACTIONS(2748), + [anon_sym_BANG_EQ] = ACTIONS(2748), + [anon_sym_LT_EQ] = ACTIONS(2748), + [anon_sym_GT_EQ] = ACTIONS(2748), + [anon_sym_LBRACK] = ACTIONS(2748), + [anon_sym_RBRACK] = ACTIONS(2748), + [anon_sym_struct] = ACTIONS(2750), + [anon_sym_mut] = ACTIONS(2750), + [anon_sym_COLON] = ACTIONS(2748), + [anon_sym_PLUS_PLUS] = ACTIONS(2748), + [anon_sym_DASH_DASH] = ACTIONS(2748), + [anon_sym_QMARK] = ACTIONS(2750), + [anon_sym_BANG] = ACTIONS(2750), + [anon_sym_go] = ACTIONS(2750), + [anon_sym_spawn] = ACTIONS(2750), + [anon_sym_json_DOTdecode] = ACTIONS(2748), + [anon_sym_LBRACK2] = ACTIONS(2750), + [anon_sym_TILDE] = ACTIONS(2748), + [anon_sym_CARET] = ACTIONS(2748), + [anon_sym_AMP] = ACTIONS(2750), + [anon_sym_LT_DASH] = ACTIONS(2748), + [anon_sym_LT_LT] = ACTIONS(2748), + [anon_sym_GT_GT] = ACTIONS(2750), + [anon_sym_GT_GT_GT] = ACTIONS(2748), + [anon_sym_AMP_CARET] = ACTIONS(2748), + [anon_sym_AMP_AMP] = ACTIONS(2748), + [anon_sym_PIPE_PIPE] = ACTIONS(2748), + [anon_sym_or] = ACTIONS(2750), + [sym_none] = ACTIONS(2750), + [sym_true] = ACTIONS(2750), + [sym_false] = ACTIONS(2750), + [sym_nil] = ACTIONS(2750), + [anon_sym_QMARK_DOT] = ACTIONS(2748), + [anon_sym_POUND_LBRACK] = ACTIONS(2748), + [anon_sym_if] = ACTIONS(2750), + [anon_sym_DOLLARif] = ACTIONS(2750), + [anon_sym_is] = ACTIONS(2750), + [anon_sym_BANGis] = ACTIONS(2748), + [anon_sym_in] = ACTIONS(2750), + [anon_sym_BANGin] = ACTIONS(2748), + [anon_sym_match] = ACTIONS(2750), + [anon_sym_select] = ACTIONS(2750), + [anon_sym_lock] = ACTIONS(2750), + [anon_sym_rlock] = ACTIONS(2750), + [anon_sym_unsafe] = ACTIONS(2750), + [anon_sym_sql] = ACTIONS(2750), + [sym_int_literal] = ACTIONS(2750), + [sym_float_literal] = ACTIONS(2748), + [sym_rune_literal] = ACTIONS(2748), + [sym_pseudo_compile_time_identifier] = ACTIONS(2750), + [anon_sym_shared] = ACTIONS(2750), + [anon_sym_map_LBRACK] = ACTIONS(2748), + [anon_sym_chan] = ACTIONS(2750), + [anon_sym_thread] = ACTIONS(2750), + [anon_sym_atomic] = ACTIONS(2750), + [sym___double_quote] = ACTIONS(2748), + [sym___single_quote] = ACTIONS(2748), + [sym___c_double_quote] = ACTIONS(2748), + [sym___c_single_quote] = ACTIONS(2748), + [sym___r_double_quote] = ACTIONS(2748), + [sym___r_single_quote] = ACTIONS(2748), }, [1364] = { [sym_line_comment] = STATE(1364), [sym_block_comment] = STATE(1364), - [sym_identifier] = ACTIONS(2920), + [sym_identifier] = ACTIONS(2756), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(2920), - [anon_sym_as] = ACTIONS(2920), - [anon_sym_LBRACE] = ACTIONS(2918), - [anon_sym_COMMA] = ACTIONS(2918), - [anon_sym_RBRACE] = ACTIONS(2918), - [anon_sym_LPAREN] = ACTIONS(2918), - [anon_sym_PIPE] = ACTIONS(2920), - [anon_sym_fn] = ACTIONS(2920), - [anon_sym_PLUS] = ACTIONS(2920), - [anon_sym_DASH] = ACTIONS(2920), - [anon_sym_STAR] = ACTIONS(2918), - [anon_sym_SLASH] = ACTIONS(2920), - [anon_sym_PERCENT] = ACTIONS(2918), - [anon_sym_LT] = ACTIONS(2920), - [anon_sym_GT] = ACTIONS(2920), - [anon_sym_EQ_EQ] = ACTIONS(2918), - [anon_sym_BANG_EQ] = ACTIONS(2918), - [anon_sym_LT_EQ] = ACTIONS(2918), - [anon_sym_GT_EQ] = ACTIONS(2918), - [anon_sym_LBRACK] = ACTIONS(2918), - [anon_sym_RBRACK] = ACTIONS(2918), - [anon_sym_struct] = ACTIONS(2920), - [anon_sym_mut] = ACTIONS(2920), - [anon_sym_COLON] = ACTIONS(2918), - [anon_sym_PLUS_PLUS] = ACTIONS(2918), - [anon_sym_DASH_DASH] = ACTIONS(2918), - [anon_sym_QMARK] = ACTIONS(2920), - [anon_sym_BANG] = ACTIONS(2920), - [anon_sym_go] = ACTIONS(2920), - [anon_sym_spawn] = ACTIONS(2920), - [anon_sym_json_DOTdecode] = ACTIONS(2918), - [anon_sym_LBRACK2] = ACTIONS(2920), - [anon_sym_TILDE] = ACTIONS(2918), - [anon_sym_CARET] = ACTIONS(2918), - [anon_sym_AMP] = ACTIONS(2920), - [anon_sym_LT_DASH] = ACTIONS(2918), - [anon_sym_LT_LT] = ACTIONS(2918), - [anon_sym_GT_GT] = ACTIONS(2920), - [anon_sym_GT_GT_GT] = ACTIONS(2918), - [anon_sym_AMP_CARET] = ACTIONS(2918), - [anon_sym_AMP_AMP] = ACTIONS(2918), - [anon_sym_PIPE_PIPE] = ACTIONS(2918), - [anon_sym_or] = ACTIONS(2920), - [sym_none] = ACTIONS(2920), - [sym_true] = ACTIONS(2920), - [sym_false] = ACTIONS(2920), - [sym_nil] = ACTIONS(2920), - [anon_sym_QMARK_DOT] = ACTIONS(2918), - [anon_sym_POUND_LBRACK] = ACTIONS(2918), - [anon_sym_if] = ACTIONS(2920), - [anon_sym_DOLLARif] = ACTIONS(2920), - [anon_sym_is] = ACTIONS(2920), - [anon_sym_BANGis] = ACTIONS(2918), - [anon_sym_in] = ACTIONS(2920), - [anon_sym_BANGin] = ACTIONS(2918), - [anon_sym_match] = ACTIONS(2920), - [anon_sym_select] = ACTIONS(2920), - [anon_sym_lock] = ACTIONS(2920), - [anon_sym_rlock] = ACTIONS(2920), - [anon_sym_unsafe] = ACTIONS(2920), - [anon_sym_sql] = ACTIONS(2920), - [sym_int_literal] = ACTIONS(2920), - [sym_float_literal] = ACTIONS(2918), - [sym_rune_literal] = ACTIONS(2918), - [sym_pseudo_compile_time_identifier] = ACTIONS(2920), - [anon_sym_shared] = ACTIONS(2920), - [anon_sym_map_LBRACK] = ACTIONS(2918), - [anon_sym_chan] = ACTIONS(2920), - [anon_sym_thread] = ACTIONS(2920), - [anon_sym_atomic] = ACTIONS(2920), - [sym___double_quote] = ACTIONS(2918), - [sym___single_quote] = ACTIONS(2918), - [sym___c_double_quote] = ACTIONS(2918), - [sym___c_single_quote] = ACTIONS(2918), - [sym___r_double_quote] = ACTIONS(2918), - [sym___r_single_quote] = ACTIONS(2918), + [anon_sym_DOT] = ACTIONS(2756), + [anon_sym_as] = ACTIONS(2756), + [anon_sym_LBRACE] = ACTIONS(2754), + [anon_sym_COMMA] = ACTIONS(2754), + [anon_sym_RBRACE] = ACTIONS(2754), + [anon_sym_LPAREN] = ACTIONS(2754), + [anon_sym_PIPE] = ACTIONS(2756), + [anon_sym_fn] = ACTIONS(2756), + [anon_sym_PLUS] = ACTIONS(2756), + [anon_sym_DASH] = ACTIONS(2756), + [anon_sym_STAR] = ACTIONS(2754), + [anon_sym_SLASH] = ACTIONS(2756), + [anon_sym_PERCENT] = ACTIONS(2754), + [anon_sym_LT] = ACTIONS(2756), + [anon_sym_GT] = ACTIONS(2756), + [anon_sym_EQ_EQ] = ACTIONS(2754), + [anon_sym_BANG_EQ] = ACTIONS(2754), + [anon_sym_LT_EQ] = ACTIONS(2754), + [anon_sym_GT_EQ] = ACTIONS(2754), + [anon_sym_LBRACK] = ACTIONS(2754), + [anon_sym_RBRACK] = ACTIONS(2754), + [anon_sym_struct] = ACTIONS(2756), + [anon_sym_mut] = ACTIONS(2756), + [anon_sym_COLON] = ACTIONS(2754), + [anon_sym_PLUS_PLUS] = ACTIONS(2754), + [anon_sym_DASH_DASH] = ACTIONS(2754), + [anon_sym_QMARK] = ACTIONS(2756), + [anon_sym_BANG] = ACTIONS(2756), + [anon_sym_go] = ACTIONS(2756), + [anon_sym_spawn] = ACTIONS(2756), + [anon_sym_json_DOTdecode] = ACTIONS(2754), + [anon_sym_LBRACK2] = ACTIONS(2756), + [anon_sym_TILDE] = ACTIONS(2754), + [anon_sym_CARET] = ACTIONS(2754), + [anon_sym_AMP] = ACTIONS(2756), + [anon_sym_LT_DASH] = ACTIONS(2754), + [anon_sym_LT_LT] = ACTIONS(2754), + [anon_sym_GT_GT] = ACTIONS(2756), + [anon_sym_GT_GT_GT] = ACTIONS(2754), + [anon_sym_AMP_CARET] = ACTIONS(2754), + [anon_sym_AMP_AMP] = ACTIONS(2754), + [anon_sym_PIPE_PIPE] = ACTIONS(2754), + [anon_sym_or] = ACTIONS(2756), + [sym_none] = ACTIONS(2756), + [sym_true] = ACTIONS(2756), + [sym_false] = ACTIONS(2756), + [sym_nil] = ACTIONS(2756), + [anon_sym_QMARK_DOT] = ACTIONS(2754), + [anon_sym_POUND_LBRACK] = ACTIONS(2754), + [anon_sym_if] = ACTIONS(2756), + [anon_sym_DOLLARif] = ACTIONS(2756), + [anon_sym_is] = ACTIONS(2756), + [anon_sym_BANGis] = ACTIONS(2754), + [anon_sym_in] = ACTIONS(2756), + [anon_sym_BANGin] = ACTIONS(2754), + [anon_sym_match] = ACTIONS(2756), + [anon_sym_select] = ACTIONS(2756), + [anon_sym_lock] = ACTIONS(2756), + [anon_sym_rlock] = ACTIONS(2756), + [anon_sym_unsafe] = ACTIONS(2756), + [anon_sym_sql] = ACTIONS(2756), + [sym_int_literal] = ACTIONS(2756), + [sym_float_literal] = ACTIONS(2754), + [sym_rune_literal] = ACTIONS(2754), + [sym_pseudo_compile_time_identifier] = ACTIONS(2756), + [anon_sym_shared] = ACTIONS(2756), + [anon_sym_map_LBRACK] = ACTIONS(2754), + [anon_sym_chan] = ACTIONS(2756), + [anon_sym_thread] = ACTIONS(2756), + [anon_sym_atomic] = ACTIONS(2756), + [sym___double_quote] = ACTIONS(2754), + [sym___single_quote] = ACTIONS(2754), + [sym___c_double_quote] = ACTIONS(2754), + [sym___c_single_quote] = ACTIONS(2754), + [sym___r_double_quote] = ACTIONS(2754), + [sym___r_single_quote] = ACTIONS(2754), }, [1365] = { [sym_line_comment] = STATE(1365), [sym_block_comment] = STATE(1365), - [sym_identifier] = ACTIONS(2159), + [sym_identifier] = ACTIONS(2191), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(2159), - [anon_sym_as] = ACTIONS(2159), - [anon_sym_LBRACE] = ACTIONS(2157), - [anon_sym_COMMA] = ACTIONS(2157), - [anon_sym_RBRACE] = ACTIONS(2157), - [anon_sym_LPAREN] = ACTIONS(2157), - [anon_sym_PIPE] = ACTIONS(2159), - [anon_sym_fn] = ACTIONS(2159), - [anon_sym_PLUS] = ACTIONS(2159), - [anon_sym_DASH] = ACTIONS(2159), - [anon_sym_STAR] = ACTIONS(2157), - [anon_sym_SLASH] = ACTIONS(2159), - [anon_sym_PERCENT] = ACTIONS(2157), - [anon_sym_LT] = ACTIONS(2159), - [anon_sym_GT] = ACTIONS(2159), - [anon_sym_EQ_EQ] = ACTIONS(2157), - [anon_sym_BANG_EQ] = ACTIONS(2157), - [anon_sym_LT_EQ] = ACTIONS(2157), - [anon_sym_GT_EQ] = ACTIONS(2157), - [anon_sym_LBRACK] = ACTIONS(2157), - [anon_sym_RBRACK] = ACTIONS(2157), - [anon_sym_struct] = ACTIONS(2159), - [anon_sym_mut] = ACTIONS(2159), - [anon_sym_COLON] = ACTIONS(2157), - [anon_sym_PLUS_PLUS] = ACTIONS(2157), - [anon_sym_DASH_DASH] = ACTIONS(2157), - [anon_sym_QMARK] = ACTIONS(2159), - [anon_sym_BANG] = ACTIONS(2159), - [anon_sym_go] = ACTIONS(2159), - [anon_sym_spawn] = ACTIONS(2159), - [anon_sym_json_DOTdecode] = ACTIONS(2157), - [anon_sym_LBRACK2] = ACTIONS(2159), - [anon_sym_TILDE] = ACTIONS(2157), - [anon_sym_CARET] = ACTIONS(2157), - [anon_sym_AMP] = ACTIONS(2159), - [anon_sym_LT_DASH] = ACTIONS(2157), - [anon_sym_LT_LT] = ACTIONS(2157), - [anon_sym_GT_GT] = ACTIONS(2159), - [anon_sym_GT_GT_GT] = ACTIONS(2157), - [anon_sym_AMP_CARET] = ACTIONS(2157), - [anon_sym_AMP_AMP] = ACTIONS(2157), - [anon_sym_PIPE_PIPE] = ACTIONS(2157), - [anon_sym_or] = ACTIONS(2159), - [sym_none] = ACTIONS(2159), - [sym_true] = ACTIONS(2159), - [sym_false] = ACTIONS(2159), - [sym_nil] = ACTIONS(2159), - [anon_sym_QMARK_DOT] = ACTIONS(2157), - [anon_sym_POUND_LBRACK] = ACTIONS(2157), - [anon_sym_if] = ACTIONS(2159), - [anon_sym_DOLLARif] = ACTIONS(2159), - [anon_sym_is] = ACTIONS(2159), - [anon_sym_BANGis] = ACTIONS(2157), - [anon_sym_in] = ACTIONS(2159), - [anon_sym_BANGin] = ACTIONS(2157), - [anon_sym_match] = ACTIONS(2159), - [anon_sym_select] = ACTIONS(2159), - [anon_sym_lock] = ACTIONS(2159), - [anon_sym_rlock] = ACTIONS(2159), - [anon_sym_unsafe] = ACTIONS(2159), - [anon_sym_sql] = ACTIONS(2159), - [sym_int_literal] = ACTIONS(2159), - [sym_float_literal] = ACTIONS(2157), - [sym_rune_literal] = ACTIONS(2157), - [sym_pseudo_compile_time_identifier] = ACTIONS(2159), - [anon_sym_shared] = ACTIONS(2159), - [anon_sym_map_LBRACK] = ACTIONS(2157), - [anon_sym_chan] = ACTIONS(2159), - [anon_sym_thread] = ACTIONS(2159), - [anon_sym_atomic] = ACTIONS(2159), - [sym___double_quote] = ACTIONS(2157), - [sym___single_quote] = ACTIONS(2157), - [sym___c_double_quote] = ACTIONS(2157), - [sym___c_single_quote] = ACTIONS(2157), - [sym___r_double_quote] = ACTIONS(2157), - [sym___r_single_quote] = ACTIONS(2157), + [anon_sym_DOT] = ACTIONS(2191), + [anon_sym_as] = ACTIONS(2191), + [anon_sym_LBRACE] = ACTIONS(2189), + [anon_sym_COMMA] = ACTIONS(2189), + [anon_sym_RBRACE] = ACTIONS(2189), + [anon_sym_LPAREN] = ACTIONS(2189), + [anon_sym_PIPE] = ACTIONS(2191), + [anon_sym_fn] = ACTIONS(2191), + [anon_sym_PLUS] = ACTIONS(2191), + [anon_sym_DASH] = ACTIONS(2191), + [anon_sym_STAR] = ACTIONS(2189), + [anon_sym_SLASH] = ACTIONS(2191), + [anon_sym_PERCENT] = ACTIONS(2189), + [anon_sym_LT] = ACTIONS(2191), + [anon_sym_GT] = ACTIONS(2191), + [anon_sym_EQ_EQ] = ACTIONS(2189), + [anon_sym_BANG_EQ] = ACTIONS(2189), + [anon_sym_LT_EQ] = ACTIONS(2189), + [anon_sym_GT_EQ] = ACTIONS(2189), + [anon_sym_LBRACK] = ACTIONS(2189), + [anon_sym_RBRACK] = ACTIONS(2189), + [anon_sym_struct] = ACTIONS(2191), + [anon_sym_mut] = ACTIONS(2191), + [anon_sym_COLON] = ACTIONS(2189), + [anon_sym_PLUS_PLUS] = ACTIONS(2189), + [anon_sym_DASH_DASH] = ACTIONS(2189), + [anon_sym_QMARK] = ACTIONS(2191), + [anon_sym_BANG] = ACTIONS(2191), + [anon_sym_go] = ACTIONS(2191), + [anon_sym_spawn] = ACTIONS(2191), + [anon_sym_json_DOTdecode] = ACTIONS(2189), + [anon_sym_LBRACK2] = ACTIONS(2191), + [anon_sym_TILDE] = ACTIONS(2189), + [anon_sym_CARET] = ACTIONS(2189), + [anon_sym_AMP] = ACTIONS(2191), + [anon_sym_LT_DASH] = ACTIONS(2189), + [anon_sym_LT_LT] = ACTIONS(2189), + [anon_sym_GT_GT] = ACTIONS(2191), + [anon_sym_GT_GT_GT] = ACTIONS(2189), + [anon_sym_AMP_CARET] = ACTIONS(2189), + [anon_sym_AMP_AMP] = ACTIONS(2189), + [anon_sym_PIPE_PIPE] = ACTIONS(2189), + [anon_sym_or] = ACTIONS(2191), + [sym_none] = ACTIONS(2191), + [sym_true] = ACTIONS(2191), + [sym_false] = ACTIONS(2191), + [sym_nil] = ACTIONS(2191), + [anon_sym_QMARK_DOT] = ACTIONS(2189), + [anon_sym_POUND_LBRACK] = ACTIONS(2189), + [anon_sym_if] = ACTIONS(2191), + [anon_sym_DOLLARif] = ACTIONS(2191), + [anon_sym_is] = ACTIONS(2191), + [anon_sym_BANGis] = ACTIONS(2189), + [anon_sym_in] = ACTIONS(2191), + [anon_sym_BANGin] = ACTIONS(2189), + [anon_sym_match] = ACTIONS(2191), + [anon_sym_select] = ACTIONS(2191), + [anon_sym_lock] = ACTIONS(2191), + [anon_sym_rlock] = ACTIONS(2191), + [anon_sym_unsafe] = ACTIONS(2191), + [anon_sym_sql] = ACTIONS(2191), + [sym_int_literal] = ACTIONS(2191), + [sym_float_literal] = ACTIONS(2189), + [sym_rune_literal] = ACTIONS(2189), + [sym_pseudo_compile_time_identifier] = ACTIONS(2191), + [anon_sym_shared] = ACTIONS(2191), + [anon_sym_map_LBRACK] = ACTIONS(2189), + [anon_sym_chan] = ACTIONS(2191), + [anon_sym_thread] = ACTIONS(2191), + [anon_sym_atomic] = ACTIONS(2191), + [sym___double_quote] = ACTIONS(2189), + [sym___single_quote] = ACTIONS(2189), + [sym___c_double_quote] = ACTIONS(2189), + [sym___c_single_quote] = ACTIONS(2189), + [sym___r_double_quote] = ACTIONS(2189), + [sym___r_single_quote] = ACTIONS(2189), }, [1366] = { [sym_line_comment] = STATE(1366), [sym_block_comment] = STATE(1366), - [sym_identifier] = ACTIONS(2735), + [sym_identifier] = ACTIONS(3044), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(2735), - [anon_sym_as] = ACTIONS(2735), - [anon_sym_LBRACE] = ACTIONS(2733), - [anon_sym_COMMA] = ACTIONS(2733), - [anon_sym_RBRACE] = ACTIONS(2733), - [anon_sym_LPAREN] = ACTIONS(2733), - [anon_sym_PIPE] = ACTIONS(2735), - [anon_sym_fn] = ACTIONS(2735), - [anon_sym_PLUS] = ACTIONS(2735), - [anon_sym_DASH] = ACTIONS(2735), - [anon_sym_STAR] = ACTIONS(2733), - [anon_sym_SLASH] = ACTIONS(2735), - [anon_sym_PERCENT] = ACTIONS(2733), - [anon_sym_LT] = ACTIONS(2735), - [anon_sym_GT] = ACTIONS(2735), - [anon_sym_EQ_EQ] = ACTIONS(2733), - [anon_sym_BANG_EQ] = ACTIONS(2733), - [anon_sym_LT_EQ] = ACTIONS(2733), - [anon_sym_GT_EQ] = ACTIONS(2733), - [anon_sym_LBRACK] = ACTIONS(2733), - [anon_sym_RBRACK] = ACTIONS(2733), - [anon_sym_struct] = ACTIONS(2735), - [anon_sym_mut] = ACTIONS(2735), - [anon_sym_COLON] = ACTIONS(2733), - [anon_sym_PLUS_PLUS] = ACTIONS(2733), - [anon_sym_DASH_DASH] = ACTIONS(2733), - [anon_sym_QMARK] = ACTIONS(2735), - [anon_sym_BANG] = ACTIONS(2735), - [anon_sym_go] = ACTIONS(2735), - [anon_sym_spawn] = ACTIONS(2735), - [anon_sym_json_DOTdecode] = ACTIONS(2733), - [anon_sym_LBRACK2] = ACTIONS(2735), - [anon_sym_TILDE] = ACTIONS(2733), - [anon_sym_CARET] = ACTIONS(2733), - [anon_sym_AMP] = ACTIONS(2735), - [anon_sym_LT_DASH] = ACTIONS(2733), - [anon_sym_LT_LT] = ACTIONS(2733), - [anon_sym_GT_GT] = ACTIONS(2735), - [anon_sym_GT_GT_GT] = ACTIONS(2733), - [anon_sym_AMP_CARET] = ACTIONS(2733), - [anon_sym_AMP_AMP] = ACTIONS(2733), - [anon_sym_PIPE_PIPE] = ACTIONS(2733), - [anon_sym_or] = ACTIONS(2735), - [sym_none] = ACTIONS(2735), - [sym_true] = ACTIONS(2735), - [sym_false] = ACTIONS(2735), - [sym_nil] = ACTIONS(2735), - [anon_sym_QMARK_DOT] = ACTIONS(2733), - [anon_sym_POUND_LBRACK] = ACTIONS(2733), - [anon_sym_if] = ACTIONS(2735), - [anon_sym_DOLLARif] = ACTIONS(2735), - [anon_sym_is] = ACTIONS(2735), - [anon_sym_BANGis] = ACTIONS(2733), - [anon_sym_in] = ACTIONS(2735), - [anon_sym_BANGin] = ACTIONS(2733), - [anon_sym_match] = ACTIONS(2735), - [anon_sym_select] = ACTIONS(2735), - [anon_sym_lock] = ACTIONS(2735), - [anon_sym_rlock] = ACTIONS(2735), - [anon_sym_unsafe] = ACTIONS(2735), - [anon_sym_sql] = ACTIONS(2735), - [sym_int_literal] = ACTIONS(2735), - [sym_float_literal] = ACTIONS(2733), - [sym_rune_literal] = ACTIONS(2733), - [sym_pseudo_compile_time_identifier] = ACTIONS(2735), - [anon_sym_shared] = ACTIONS(2735), - [anon_sym_map_LBRACK] = ACTIONS(2733), - [anon_sym_chan] = ACTIONS(2735), - [anon_sym_thread] = ACTIONS(2735), - [anon_sym_atomic] = ACTIONS(2735), - [sym___double_quote] = ACTIONS(2733), - [sym___single_quote] = ACTIONS(2733), - [sym___c_double_quote] = ACTIONS(2733), - [sym___c_single_quote] = ACTIONS(2733), - [sym___r_double_quote] = ACTIONS(2733), - [sym___r_single_quote] = ACTIONS(2733), + [anon_sym_DOT] = ACTIONS(3044), + [anon_sym_as] = ACTIONS(3044), + [anon_sym_LBRACE] = ACTIONS(3042), + [anon_sym_COMMA] = ACTIONS(3042), + [anon_sym_RBRACE] = ACTIONS(3042), + [anon_sym_LPAREN] = ACTIONS(3042), + [anon_sym_PIPE] = ACTIONS(3044), + [anon_sym_fn] = ACTIONS(3044), + [anon_sym_PLUS] = ACTIONS(3044), + [anon_sym_DASH] = ACTIONS(3044), + [anon_sym_STAR] = ACTIONS(3042), + [anon_sym_SLASH] = ACTIONS(3044), + [anon_sym_PERCENT] = ACTIONS(3042), + [anon_sym_LT] = ACTIONS(3044), + [anon_sym_GT] = ACTIONS(3044), + [anon_sym_EQ_EQ] = ACTIONS(3042), + [anon_sym_BANG_EQ] = ACTIONS(3042), + [anon_sym_LT_EQ] = ACTIONS(3042), + [anon_sym_GT_EQ] = ACTIONS(3042), + [anon_sym_LBRACK] = ACTIONS(3042), + [anon_sym_RBRACK] = ACTIONS(3042), + [anon_sym_struct] = ACTIONS(3044), + [anon_sym_mut] = ACTIONS(3044), + [anon_sym_COLON] = ACTIONS(3042), + [anon_sym_PLUS_PLUS] = ACTIONS(3042), + [anon_sym_DASH_DASH] = ACTIONS(3042), + [anon_sym_QMARK] = ACTIONS(3044), + [anon_sym_BANG] = ACTIONS(3044), + [anon_sym_go] = ACTIONS(3044), + [anon_sym_spawn] = ACTIONS(3044), + [anon_sym_json_DOTdecode] = ACTIONS(3042), + [anon_sym_LBRACK2] = ACTIONS(3044), + [anon_sym_TILDE] = ACTIONS(3042), + [anon_sym_CARET] = ACTIONS(3042), + [anon_sym_AMP] = ACTIONS(3044), + [anon_sym_LT_DASH] = ACTIONS(3042), + [anon_sym_LT_LT] = ACTIONS(3042), + [anon_sym_GT_GT] = ACTIONS(3044), + [anon_sym_GT_GT_GT] = ACTIONS(3042), + [anon_sym_AMP_CARET] = ACTIONS(3042), + [anon_sym_AMP_AMP] = ACTIONS(3042), + [anon_sym_PIPE_PIPE] = ACTIONS(3042), + [anon_sym_or] = ACTIONS(3044), + [sym_none] = ACTIONS(3044), + [sym_true] = ACTIONS(3044), + [sym_false] = ACTIONS(3044), + [sym_nil] = ACTIONS(3044), + [anon_sym_QMARK_DOT] = ACTIONS(3042), + [anon_sym_POUND_LBRACK] = ACTIONS(3042), + [anon_sym_if] = ACTIONS(3044), + [anon_sym_DOLLARif] = ACTIONS(3044), + [anon_sym_is] = ACTIONS(3044), + [anon_sym_BANGis] = ACTIONS(3042), + [anon_sym_in] = ACTIONS(3044), + [anon_sym_BANGin] = ACTIONS(3042), + [anon_sym_match] = ACTIONS(3044), + [anon_sym_select] = ACTIONS(3044), + [anon_sym_lock] = ACTIONS(3044), + [anon_sym_rlock] = ACTIONS(3044), + [anon_sym_unsafe] = ACTIONS(3044), + [anon_sym_sql] = ACTIONS(3044), + [sym_int_literal] = ACTIONS(3044), + [sym_float_literal] = ACTIONS(3042), + [sym_rune_literal] = ACTIONS(3042), + [sym_pseudo_compile_time_identifier] = ACTIONS(3044), + [anon_sym_shared] = ACTIONS(3044), + [anon_sym_map_LBRACK] = ACTIONS(3042), + [anon_sym_chan] = ACTIONS(3044), + [anon_sym_thread] = ACTIONS(3044), + [anon_sym_atomic] = ACTIONS(3044), + [sym___double_quote] = ACTIONS(3042), + [sym___single_quote] = ACTIONS(3042), + [sym___c_double_quote] = ACTIONS(3042), + [sym___c_single_quote] = ACTIONS(3042), + [sym___r_double_quote] = ACTIONS(3042), + [sym___r_single_quote] = ACTIONS(3042), }, [1367] = { [sym_line_comment] = STATE(1367), [sym_block_comment] = STATE(1367), - [sym_identifier] = ACTIONS(2173), + [sym_identifier] = ACTIONS(2846), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(2173), - [anon_sym_as] = ACTIONS(2173), - [anon_sym_LBRACE] = ACTIONS(2171), - [anon_sym_COMMA] = ACTIONS(2171), - [anon_sym_RBRACE] = ACTIONS(2171), - [anon_sym_LPAREN] = ACTIONS(2171), - [anon_sym_PIPE] = ACTIONS(2173), - [anon_sym_fn] = ACTIONS(2173), - [anon_sym_PLUS] = ACTIONS(2173), - [anon_sym_DASH] = ACTIONS(2173), - [anon_sym_STAR] = ACTIONS(2171), - [anon_sym_SLASH] = ACTIONS(2173), - [anon_sym_PERCENT] = ACTIONS(2171), - [anon_sym_LT] = ACTIONS(2173), - [anon_sym_GT] = ACTIONS(2173), - [anon_sym_EQ_EQ] = ACTIONS(2171), - [anon_sym_BANG_EQ] = ACTIONS(2171), - [anon_sym_LT_EQ] = ACTIONS(2171), - [anon_sym_GT_EQ] = ACTIONS(2171), - [anon_sym_LBRACK] = ACTIONS(2171), - [anon_sym_RBRACK] = ACTIONS(2171), - [anon_sym_struct] = ACTIONS(2173), - [anon_sym_mut] = ACTIONS(2173), - [anon_sym_COLON] = ACTIONS(2171), - [anon_sym_PLUS_PLUS] = ACTIONS(2171), - [anon_sym_DASH_DASH] = ACTIONS(2171), - [anon_sym_QMARK] = ACTIONS(2173), - [anon_sym_BANG] = ACTIONS(2173), - [anon_sym_go] = ACTIONS(2173), - [anon_sym_spawn] = ACTIONS(2173), - [anon_sym_json_DOTdecode] = ACTIONS(2171), - [anon_sym_LBRACK2] = ACTIONS(2173), - [anon_sym_TILDE] = ACTIONS(2171), - [anon_sym_CARET] = ACTIONS(2171), - [anon_sym_AMP] = ACTIONS(2173), - [anon_sym_LT_DASH] = ACTIONS(2171), - [anon_sym_LT_LT] = ACTIONS(2171), - [anon_sym_GT_GT] = ACTIONS(2173), - [anon_sym_GT_GT_GT] = ACTIONS(2171), - [anon_sym_AMP_CARET] = ACTIONS(2171), - [anon_sym_AMP_AMP] = ACTIONS(2171), - [anon_sym_PIPE_PIPE] = ACTIONS(2171), - [anon_sym_or] = ACTIONS(2173), - [sym_none] = ACTIONS(2173), - [sym_true] = ACTIONS(2173), - [sym_false] = ACTIONS(2173), - [sym_nil] = ACTIONS(2173), - [anon_sym_QMARK_DOT] = ACTIONS(2171), - [anon_sym_POUND_LBRACK] = ACTIONS(2171), - [anon_sym_if] = ACTIONS(2173), - [anon_sym_DOLLARif] = ACTIONS(2173), - [anon_sym_is] = ACTIONS(2173), - [anon_sym_BANGis] = ACTIONS(2171), - [anon_sym_in] = ACTIONS(2173), - [anon_sym_BANGin] = ACTIONS(2171), - [anon_sym_match] = ACTIONS(2173), - [anon_sym_select] = ACTIONS(2173), - [anon_sym_lock] = ACTIONS(2173), - [anon_sym_rlock] = ACTIONS(2173), - [anon_sym_unsafe] = ACTIONS(2173), - [anon_sym_sql] = ACTIONS(2173), - [sym_int_literal] = ACTIONS(2173), - [sym_float_literal] = ACTIONS(2171), - [sym_rune_literal] = ACTIONS(2171), - [sym_pseudo_compile_time_identifier] = ACTIONS(2173), - [anon_sym_shared] = ACTIONS(2173), - [anon_sym_map_LBRACK] = ACTIONS(2171), - [anon_sym_chan] = ACTIONS(2173), - [anon_sym_thread] = ACTIONS(2173), - [anon_sym_atomic] = ACTIONS(2173), - [sym___double_quote] = ACTIONS(2171), - [sym___single_quote] = ACTIONS(2171), - [sym___c_double_quote] = ACTIONS(2171), - [sym___c_single_quote] = ACTIONS(2171), - [sym___r_double_quote] = ACTIONS(2171), - [sym___r_single_quote] = ACTIONS(2171), + [anon_sym_DOT] = ACTIONS(2846), + [anon_sym_as] = ACTIONS(2846), + [anon_sym_LBRACE] = ACTIONS(2844), + [anon_sym_COMMA] = ACTIONS(2844), + [anon_sym_RBRACE] = ACTIONS(2844), + [anon_sym_LPAREN] = ACTIONS(2844), + [anon_sym_PIPE] = ACTIONS(2846), + [anon_sym_fn] = ACTIONS(2846), + [anon_sym_PLUS] = ACTIONS(2846), + [anon_sym_DASH] = ACTIONS(2846), + [anon_sym_STAR] = ACTIONS(2844), + [anon_sym_SLASH] = ACTIONS(2846), + [anon_sym_PERCENT] = ACTIONS(2844), + [anon_sym_LT] = ACTIONS(2846), + [anon_sym_GT] = ACTIONS(2846), + [anon_sym_EQ_EQ] = ACTIONS(2844), + [anon_sym_BANG_EQ] = ACTIONS(2844), + [anon_sym_LT_EQ] = ACTIONS(2844), + [anon_sym_GT_EQ] = ACTIONS(2844), + [anon_sym_LBRACK] = ACTIONS(2844), + [anon_sym_RBRACK] = ACTIONS(2844), + [anon_sym_struct] = ACTIONS(2846), + [anon_sym_mut] = ACTIONS(2846), + [anon_sym_COLON] = ACTIONS(2844), + [anon_sym_PLUS_PLUS] = ACTIONS(2844), + [anon_sym_DASH_DASH] = ACTIONS(2844), + [anon_sym_QMARK] = ACTIONS(2846), + [anon_sym_BANG] = ACTIONS(2846), + [anon_sym_go] = ACTIONS(2846), + [anon_sym_spawn] = ACTIONS(2846), + [anon_sym_json_DOTdecode] = ACTIONS(2844), + [anon_sym_LBRACK2] = ACTIONS(2846), + [anon_sym_TILDE] = ACTIONS(2844), + [anon_sym_CARET] = ACTIONS(2844), + [anon_sym_AMP] = ACTIONS(2846), + [anon_sym_LT_DASH] = ACTIONS(2844), + [anon_sym_LT_LT] = ACTIONS(2844), + [anon_sym_GT_GT] = ACTIONS(2846), + [anon_sym_GT_GT_GT] = ACTIONS(2844), + [anon_sym_AMP_CARET] = ACTIONS(2844), + [anon_sym_AMP_AMP] = ACTIONS(2844), + [anon_sym_PIPE_PIPE] = ACTIONS(2844), + [anon_sym_or] = ACTIONS(2846), + [sym_none] = ACTIONS(2846), + [sym_true] = ACTIONS(2846), + [sym_false] = ACTIONS(2846), + [sym_nil] = ACTIONS(2846), + [anon_sym_QMARK_DOT] = ACTIONS(2844), + [anon_sym_POUND_LBRACK] = ACTIONS(2844), + [anon_sym_if] = ACTIONS(2846), + [anon_sym_DOLLARif] = ACTIONS(2846), + [anon_sym_is] = ACTIONS(2846), + [anon_sym_BANGis] = ACTIONS(2844), + [anon_sym_in] = ACTIONS(2846), + [anon_sym_BANGin] = ACTIONS(2844), + [anon_sym_match] = ACTIONS(2846), + [anon_sym_select] = ACTIONS(2846), + [anon_sym_lock] = ACTIONS(2846), + [anon_sym_rlock] = ACTIONS(2846), + [anon_sym_unsafe] = ACTIONS(2846), + [anon_sym_sql] = ACTIONS(2846), + [sym_int_literal] = ACTIONS(2846), + [sym_float_literal] = ACTIONS(2844), + [sym_rune_literal] = ACTIONS(2844), + [sym_pseudo_compile_time_identifier] = ACTIONS(2846), + [anon_sym_shared] = ACTIONS(2846), + [anon_sym_map_LBRACK] = ACTIONS(2844), + [anon_sym_chan] = ACTIONS(2846), + [anon_sym_thread] = ACTIONS(2846), + [anon_sym_atomic] = ACTIONS(2846), + [sym___double_quote] = ACTIONS(2844), + [sym___single_quote] = ACTIONS(2844), + [sym___c_double_quote] = ACTIONS(2844), + [sym___c_single_quote] = ACTIONS(2844), + [sym___r_double_quote] = ACTIONS(2844), + [sym___r_single_quote] = ACTIONS(2844), }, [1368] = { [sym_line_comment] = STATE(1368), [sym_block_comment] = STATE(1368), - [sym_identifier] = ACTIONS(2816), + [sym_identifier] = ACTIONS(2125), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(2125), + [anon_sym_as] = ACTIONS(2125), + [anon_sym_LBRACE] = ACTIONS(2123), + [anon_sym_COMMA] = ACTIONS(2123), + [anon_sym_RBRACE] = ACTIONS(2123), + [anon_sym_LPAREN] = ACTIONS(2123), + [anon_sym_PIPE] = ACTIONS(2125), + [anon_sym_fn] = ACTIONS(2125), + [anon_sym_PLUS] = ACTIONS(2125), + [anon_sym_DASH] = ACTIONS(2125), + [anon_sym_STAR] = ACTIONS(2123), + [anon_sym_SLASH] = ACTIONS(2125), + [anon_sym_PERCENT] = ACTIONS(2123), + [anon_sym_LT] = ACTIONS(2125), + [anon_sym_GT] = ACTIONS(2125), + [anon_sym_EQ_EQ] = ACTIONS(2123), + [anon_sym_BANG_EQ] = ACTIONS(2123), + [anon_sym_LT_EQ] = ACTIONS(2123), + [anon_sym_GT_EQ] = ACTIONS(2123), + [anon_sym_LBRACK] = ACTIONS(2123), + [anon_sym_RBRACK] = ACTIONS(2123), + [anon_sym_struct] = ACTIONS(2125), + [anon_sym_mut] = ACTIONS(2125), + [anon_sym_COLON] = ACTIONS(2123), + [anon_sym_PLUS_PLUS] = ACTIONS(2123), + [anon_sym_DASH_DASH] = ACTIONS(2123), + [anon_sym_QMARK] = ACTIONS(2125), + [anon_sym_BANG] = ACTIONS(2125), + [anon_sym_go] = ACTIONS(2125), + [anon_sym_spawn] = ACTIONS(2125), + [anon_sym_json_DOTdecode] = ACTIONS(2123), + [anon_sym_LBRACK2] = ACTIONS(2125), + [anon_sym_TILDE] = ACTIONS(2123), + [anon_sym_CARET] = ACTIONS(2123), + [anon_sym_AMP] = ACTIONS(2125), + [anon_sym_LT_DASH] = ACTIONS(2123), + [anon_sym_LT_LT] = ACTIONS(2123), + [anon_sym_GT_GT] = ACTIONS(2125), + [anon_sym_GT_GT_GT] = ACTIONS(2123), + [anon_sym_AMP_CARET] = ACTIONS(2123), + [anon_sym_AMP_AMP] = ACTIONS(2123), + [anon_sym_PIPE_PIPE] = ACTIONS(2123), + [anon_sym_or] = ACTIONS(2125), + [sym_none] = ACTIONS(2125), + [sym_true] = ACTIONS(2125), + [sym_false] = ACTIONS(2125), + [sym_nil] = ACTIONS(2125), + [anon_sym_QMARK_DOT] = ACTIONS(2123), + [anon_sym_POUND_LBRACK] = ACTIONS(2123), + [anon_sym_if] = ACTIONS(2125), + [anon_sym_DOLLARif] = ACTIONS(2125), + [anon_sym_is] = ACTIONS(2125), + [anon_sym_BANGis] = ACTIONS(2123), + [anon_sym_in] = ACTIONS(2125), + [anon_sym_BANGin] = ACTIONS(2123), + [anon_sym_match] = ACTIONS(2125), + [anon_sym_select] = ACTIONS(2125), + [anon_sym_lock] = ACTIONS(2125), + [anon_sym_rlock] = ACTIONS(2125), + [anon_sym_unsafe] = ACTIONS(2125), + [anon_sym_sql] = ACTIONS(2125), + [sym_int_literal] = ACTIONS(2125), + [sym_float_literal] = ACTIONS(2123), + [sym_rune_literal] = ACTIONS(2123), + [sym_pseudo_compile_time_identifier] = ACTIONS(2125), + [anon_sym_shared] = ACTIONS(2125), + [anon_sym_map_LBRACK] = ACTIONS(2123), + [anon_sym_chan] = ACTIONS(2125), + [anon_sym_thread] = ACTIONS(2125), + [anon_sym_atomic] = ACTIONS(2125), + [sym___double_quote] = ACTIONS(2123), + [sym___single_quote] = ACTIONS(2123), + [sym___c_double_quote] = ACTIONS(2123), + [sym___c_single_quote] = ACTIONS(2123), + [sym___r_double_quote] = ACTIONS(2123), + [sym___r_single_quote] = ACTIONS(2123), + }, + [1369] = { + [sym_line_comment] = STATE(1369), + [sym_block_comment] = STATE(1369), + [sym_identifier] = ACTIONS(2513), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_SEMI] = ACTIONS(3909), + [anon_sym_DOT] = ACTIONS(2515), + [anon_sym_as] = ACTIONS(2513), + [anon_sym_LBRACE] = ACTIONS(2511), + [anon_sym_COMMA] = ACTIONS(2511), + [anon_sym_LPAREN] = ACTIONS(2511), + [anon_sym_PIPE] = ACTIONS(2513), + [anon_sym_fn] = ACTIONS(2513), + [anon_sym_PLUS] = ACTIONS(2513), + [anon_sym_DASH] = ACTIONS(2513), + [anon_sym_STAR] = ACTIONS(2511), + [anon_sym_SLASH] = ACTIONS(2513), + [anon_sym_PERCENT] = ACTIONS(2511), + [anon_sym_LT] = ACTIONS(2513), + [anon_sym_GT] = ACTIONS(2513), + [anon_sym_EQ_EQ] = ACTIONS(2511), + [anon_sym_BANG_EQ] = ACTIONS(2511), + [anon_sym_LT_EQ] = ACTIONS(2511), + [anon_sym_GT_EQ] = ACTIONS(2511), + [anon_sym_LBRACK] = ACTIONS(2511), + [anon_sym_RBRACK] = ACTIONS(3909), + [anon_sym_struct] = ACTIONS(2513), + [anon_sym_mut] = ACTIONS(2513), + [anon_sym_COLON] = ACTIONS(3909), + [anon_sym_PLUS_PLUS] = ACTIONS(2511), + [anon_sym_DASH_DASH] = ACTIONS(2511), + [anon_sym_QMARK] = ACTIONS(2513), + [anon_sym_BANG] = ACTIONS(2513), + [anon_sym_go] = ACTIONS(2513), + [anon_sym_spawn] = ACTIONS(2513), + [anon_sym_json_DOTdecode] = ACTIONS(2511), + [anon_sym_LBRACK2] = ACTIONS(2513), + [anon_sym_TILDE] = ACTIONS(2511), + [anon_sym_CARET] = ACTIONS(2511), + [anon_sym_AMP] = ACTIONS(2513), + [anon_sym_LT_DASH] = ACTIONS(2511), + [anon_sym_LT_LT] = ACTIONS(2511), + [anon_sym_GT_GT] = ACTIONS(2513), + [anon_sym_GT_GT_GT] = ACTIONS(2511), + [anon_sym_AMP_CARET] = ACTIONS(2511), + [anon_sym_AMP_AMP] = ACTIONS(2511), + [anon_sym_PIPE_PIPE] = ACTIONS(2511), + [anon_sym_or] = ACTIONS(2513), + [sym_none] = ACTIONS(2513), + [sym_true] = ACTIONS(2513), + [sym_false] = ACTIONS(2513), + [sym_nil] = ACTIONS(2513), + [anon_sym_QMARK_DOT] = ACTIONS(2511), + [anon_sym_POUND_LBRACK] = ACTIONS(2511), + [anon_sym_if] = ACTIONS(2513), + [anon_sym_DOLLARif] = ACTIONS(2513), + [anon_sym_is] = ACTIONS(2513), + [anon_sym_BANGis] = ACTIONS(2511), + [anon_sym_in] = ACTIONS(2513), + [anon_sym_BANGin] = ACTIONS(2511), + [anon_sym_match] = ACTIONS(2513), + [anon_sym_select] = ACTIONS(2513), + [anon_sym_lock] = ACTIONS(2513), + [anon_sym_rlock] = ACTIONS(2513), + [anon_sym_unsafe] = ACTIONS(2513), + [anon_sym_sql] = ACTIONS(2513), + [sym_int_literal] = ACTIONS(2513), + [sym_float_literal] = ACTIONS(2511), + [sym_rune_literal] = ACTIONS(2511), + [sym_pseudo_compile_time_identifier] = ACTIONS(2513), + [anon_sym_shared] = ACTIONS(2513), + [anon_sym_map_LBRACK] = ACTIONS(2511), + [anon_sym_chan] = ACTIONS(2513), + [anon_sym_thread] = ACTIONS(2513), + [anon_sym_atomic] = ACTIONS(2513), + [sym___double_quote] = ACTIONS(2511), + [sym___single_quote] = ACTIONS(2511), + [sym___c_double_quote] = ACTIONS(2511), + [sym___c_single_quote] = ACTIONS(2511), + [sym___r_double_quote] = ACTIONS(2511), + [sym___r_single_quote] = ACTIONS(2511), + }, + [1370] = { + [sym_line_comment] = STATE(1370), + [sym_block_comment] = STATE(1370), + [sym_identifier] = ACTIONS(2149), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(2149), + [anon_sym_as] = ACTIONS(2149), + [anon_sym_LBRACE] = ACTIONS(2147), + [anon_sym_COMMA] = ACTIONS(2147), + [anon_sym_RBRACE] = ACTIONS(2147), + [anon_sym_LPAREN] = ACTIONS(2147), + [anon_sym_PIPE] = ACTIONS(2149), + [anon_sym_fn] = ACTIONS(2149), + [anon_sym_PLUS] = ACTIONS(2149), + [anon_sym_DASH] = ACTIONS(2149), + [anon_sym_STAR] = ACTIONS(2147), + [anon_sym_SLASH] = ACTIONS(2149), + [anon_sym_PERCENT] = ACTIONS(2147), + [anon_sym_LT] = ACTIONS(2149), + [anon_sym_GT] = ACTIONS(2149), + [anon_sym_EQ_EQ] = ACTIONS(2147), + [anon_sym_BANG_EQ] = ACTIONS(2147), + [anon_sym_LT_EQ] = ACTIONS(2147), + [anon_sym_GT_EQ] = ACTIONS(2147), + [anon_sym_LBRACK] = ACTIONS(2147), + [anon_sym_RBRACK] = ACTIONS(2147), + [anon_sym_struct] = ACTIONS(2149), + [anon_sym_mut] = ACTIONS(2149), + [anon_sym_COLON] = ACTIONS(2147), + [anon_sym_PLUS_PLUS] = ACTIONS(2147), + [anon_sym_DASH_DASH] = ACTIONS(2147), + [anon_sym_QMARK] = ACTIONS(2149), + [anon_sym_BANG] = ACTIONS(2149), + [anon_sym_go] = ACTIONS(2149), + [anon_sym_spawn] = ACTIONS(2149), + [anon_sym_json_DOTdecode] = ACTIONS(2147), + [anon_sym_LBRACK2] = ACTIONS(2149), + [anon_sym_TILDE] = ACTIONS(2147), + [anon_sym_CARET] = ACTIONS(2147), + [anon_sym_AMP] = ACTIONS(2149), + [anon_sym_LT_DASH] = ACTIONS(2147), + [anon_sym_LT_LT] = ACTIONS(2147), + [anon_sym_GT_GT] = ACTIONS(2149), + [anon_sym_GT_GT_GT] = ACTIONS(2147), + [anon_sym_AMP_CARET] = ACTIONS(2147), + [anon_sym_AMP_AMP] = ACTIONS(2147), + [anon_sym_PIPE_PIPE] = ACTIONS(2147), + [anon_sym_or] = ACTIONS(2149), + [sym_none] = ACTIONS(2149), + [sym_true] = ACTIONS(2149), + [sym_false] = ACTIONS(2149), + [sym_nil] = ACTIONS(2149), + [anon_sym_QMARK_DOT] = ACTIONS(2147), + [anon_sym_POUND_LBRACK] = ACTIONS(2147), + [anon_sym_if] = ACTIONS(2149), + [anon_sym_DOLLARif] = ACTIONS(2149), + [anon_sym_is] = ACTIONS(2149), + [anon_sym_BANGis] = ACTIONS(2147), + [anon_sym_in] = ACTIONS(2149), + [anon_sym_BANGin] = ACTIONS(2147), + [anon_sym_match] = ACTIONS(2149), + [anon_sym_select] = ACTIONS(2149), + [anon_sym_lock] = ACTIONS(2149), + [anon_sym_rlock] = ACTIONS(2149), + [anon_sym_unsafe] = ACTIONS(2149), + [anon_sym_sql] = ACTIONS(2149), + [sym_int_literal] = ACTIONS(2149), + [sym_float_literal] = ACTIONS(2147), + [sym_rune_literal] = ACTIONS(2147), + [sym_pseudo_compile_time_identifier] = ACTIONS(2149), + [anon_sym_shared] = ACTIONS(2149), + [anon_sym_map_LBRACK] = ACTIONS(2147), + [anon_sym_chan] = ACTIONS(2149), + [anon_sym_thread] = ACTIONS(2149), + [anon_sym_atomic] = ACTIONS(2149), + [sym___double_quote] = ACTIONS(2147), + [sym___single_quote] = ACTIONS(2147), + [sym___c_double_quote] = ACTIONS(2147), + [sym___c_single_quote] = ACTIONS(2147), + [sym___r_double_quote] = ACTIONS(2147), + [sym___r_single_quote] = ACTIONS(2147), + }, + [1371] = { + [sym_line_comment] = STATE(1371), + [sym_block_comment] = STATE(1371), + [sym_identifier] = ACTIONS(2311), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(2311), + [anon_sym_as] = ACTIONS(2311), + [anon_sym_LBRACE] = ACTIONS(2309), + [anon_sym_COMMA] = ACTIONS(2309), + [anon_sym_RBRACE] = ACTIONS(2309), + [anon_sym_LPAREN] = ACTIONS(2309), + [anon_sym_PIPE] = ACTIONS(2311), + [anon_sym_fn] = ACTIONS(2311), + [anon_sym_PLUS] = ACTIONS(2311), + [anon_sym_DASH] = ACTIONS(2311), + [anon_sym_STAR] = ACTIONS(2309), + [anon_sym_SLASH] = ACTIONS(2311), + [anon_sym_PERCENT] = ACTIONS(2309), + [anon_sym_LT] = ACTIONS(2311), + [anon_sym_GT] = ACTIONS(2311), + [anon_sym_EQ_EQ] = ACTIONS(2309), + [anon_sym_BANG_EQ] = ACTIONS(2309), + [anon_sym_LT_EQ] = ACTIONS(2309), + [anon_sym_GT_EQ] = ACTIONS(2309), + [anon_sym_LBRACK] = ACTIONS(2309), + [anon_sym_RBRACK] = ACTIONS(2309), + [anon_sym_struct] = ACTIONS(2311), + [anon_sym_mut] = ACTIONS(2311), + [anon_sym_COLON] = ACTIONS(2309), + [anon_sym_PLUS_PLUS] = ACTIONS(2309), + [anon_sym_DASH_DASH] = ACTIONS(2309), + [anon_sym_QMARK] = ACTIONS(2311), + [anon_sym_BANG] = ACTIONS(2311), + [anon_sym_go] = ACTIONS(2311), + [anon_sym_spawn] = ACTIONS(2311), + [anon_sym_json_DOTdecode] = ACTIONS(2309), + [anon_sym_LBRACK2] = ACTIONS(2311), + [anon_sym_TILDE] = ACTIONS(2309), + [anon_sym_CARET] = ACTIONS(2309), + [anon_sym_AMP] = ACTIONS(2311), + [anon_sym_LT_DASH] = ACTIONS(2309), + [anon_sym_LT_LT] = ACTIONS(2309), + [anon_sym_GT_GT] = ACTIONS(2311), + [anon_sym_GT_GT_GT] = ACTIONS(2309), + [anon_sym_AMP_CARET] = ACTIONS(2309), + [anon_sym_AMP_AMP] = ACTIONS(2309), + [anon_sym_PIPE_PIPE] = ACTIONS(2309), + [anon_sym_or] = ACTIONS(2311), + [sym_none] = ACTIONS(2311), + [sym_true] = ACTIONS(2311), + [sym_false] = ACTIONS(2311), + [sym_nil] = ACTIONS(2311), + [anon_sym_QMARK_DOT] = ACTIONS(2309), + [anon_sym_POUND_LBRACK] = ACTIONS(2309), + [anon_sym_if] = ACTIONS(2311), + [anon_sym_DOLLARif] = ACTIONS(2311), + [anon_sym_is] = ACTIONS(2311), + [anon_sym_BANGis] = ACTIONS(2309), + [anon_sym_in] = ACTIONS(2311), + [anon_sym_BANGin] = ACTIONS(2309), + [anon_sym_match] = ACTIONS(2311), + [anon_sym_select] = ACTIONS(2311), + [anon_sym_lock] = ACTIONS(2311), + [anon_sym_rlock] = ACTIONS(2311), + [anon_sym_unsafe] = ACTIONS(2311), + [anon_sym_sql] = ACTIONS(2311), + [sym_int_literal] = ACTIONS(2311), + [sym_float_literal] = ACTIONS(2309), + [sym_rune_literal] = ACTIONS(2309), + [sym_pseudo_compile_time_identifier] = ACTIONS(2311), + [anon_sym_shared] = ACTIONS(2311), + [anon_sym_map_LBRACK] = ACTIONS(2309), + [anon_sym_chan] = ACTIONS(2311), + [anon_sym_thread] = ACTIONS(2311), + [anon_sym_atomic] = ACTIONS(2311), + [sym___double_quote] = ACTIONS(2309), + [sym___single_quote] = ACTIONS(2309), + [sym___c_double_quote] = ACTIONS(2309), + [sym___c_single_quote] = ACTIONS(2309), + [sym___r_double_quote] = ACTIONS(2309), + [sym___r_single_quote] = ACTIONS(2309), + }, + [1372] = { + [sym_line_comment] = STATE(1372), + [sym_block_comment] = STATE(1372), + [sym_identifier] = ACTIONS(2471), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(2471), + [anon_sym_as] = ACTIONS(2471), + [anon_sym_LBRACE] = ACTIONS(2469), + [anon_sym_COMMA] = ACTIONS(2469), + [anon_sym_RBRACE] = ACTIONS(2469), + [anon_sym_LPAREN] = ACTIONS(2469), + [anon_sym_PIPE] = ACTIONS(2471), + [anon_sym_fn] = ACTIONS(2471), + [anon_sym_PLUS] = ACTIONS(2471), + [anon_sym_DASH] = ACTIONS(2471), + [anon_sym_STAR] = ACTIONS(2469), + [anon_sym_SLASH] = ACTIONS(2471), + [anon_sym_PERCENT] = ACTIONS(2469), + [anon_sym_LT] = ACTIONS(2471), + [anon_sym_GT] = ACTIONS(2471), + [anon_sym_EQ_EQ] = ACTIONS(2469), + [anon_sym_BANG_EQ] = ACTIONS(2469), + [anon_sym_LT_EQ] = ACTIONS(2469), + [anon_sym_GT_EQ] = ACTIONS(2469), + [anon_sym_LBRACK] = ACTIONS(2469), + [anon_sym_RBRACK] = ACTIONS(2469), + [anon_sym_struct] = ACTIONS(2471), + [anon_sym_mut] = ACTIONS(2471), + [anon_sym_COLON] = ACTIONS(2469), + [anon_sym_PLUS_PLUS] = ACTIONS(2469), + [anon_sym_DASH_DASH] = ACTIONS(2469), + [anon_sym_QMARK] = ACTIONS(2471), + [anon_sym_BANG] = ACTIONS(2471), + [anon_sym_go] = ACTIONS(2471), + [anon_sym_spawn] = ACTIONS(2471), + [anon_sym_json_DOTdecode] = ACTIONS(2469), + [anon_sym_LBRACK2] = ACTIONS(2471), + [anon_sym_TILDE] = ACTIONS(2469), + [anon_sym_CARET] = ACTIONS(2469), + [anon_sym_AMP] = ACTIONS(2471), + [anon_sym_LT_DASH] = ACTIONS(2469), + [anon_sym_LT_LT] = ACTIONS(2469), + [anon_sym_GT_GT] = ACTIONS(2471), + [anon_sym_GT_GT_GT] = ACTIONS(2469), + [anon_sym_AMP_CARET] = ACTIONS(2469), + [anon_sym_AMP_AMP] = ACTIONS(2469), + [anon_sym_PIPE_PIPE] = ACTIONS(2469), + [anon_sym_or] = ACTIONS(2471), + [sym_none] = ACTIONS(2471), + [sym_true] = ACTIONS(2471), + [sym_false] = ACTIONS(2471), + [sym_nil] = ACTIONS(2471), + [anon_sym_QMARK_DOT] = ACTIONS(2469), + [anon_sym_POUND_LBRACK] = ACTIONS(2469), + [anon_sym_if] = ACTIONS(2471), + [anon_sym_DOLLARif] = ACTIONS(2471), + [anon_sym_is] = ACTIONS(2471), + [anon_sym_BANGis] = ACTIONS(2469), + [anon_sym_in] = ACTIONS(2471), + [anon_sym_BANGin] = ACTIONS(2469), + [anon_sym_match] = ACTIONS(2471), + [anon_sym_select] = ACTIONS(2471), + [anon_sym_lock] = ACTIONS(2471), + [anon_sym_rlock] = ACTIONS(2471), + [anon_sym_unsafe] = ACTIONS(2471), + [anon_sym_sql] = ACTIONS(2471), + [sym_int_literal] = ACTIONS(2471), + [sym_float_literal] = ACTIONS(2469), + [sym_rune_literal] = ACTIONS(2469), + [sym_pseudo_compile_time_identifier] = ACTIONS(2471), + [anon_sym_shared] = ACTIONS(2471), + [anon_sym_map_LBRACK] = ACTIONS(2469), + [anon_sym_chan] = ACTIONS(2471), + [anon_sym_thread] = ACTIONS(2471), + [anon_sym_atomic] = ACTIONS(2471), + [sym___double_quote] = ACTIONS(2469), + [sym___single_quote] = ACTIONS(2469), + [sym___c_double_quote] = ACTIONS(2469), + [sym___c_single_quote] = ACTIONS(2469), + [sym___r_double_quote] = ACTIONS(2469), + [sym___r_single_quote] = ACTIONS(2469), + }, + [1373] = { + [sym_line_comment] = STATE(1373), + [sym_block_comment] = STATE(1373), + [sym_identifier] = ACTIONS(2115), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(2115), + [anon_sym_as] = ACTIONS(2115), + [anon_sym_LBRACE] = ACTIONS(2113), + [anon_sym_COMMA] = ACTIONS(2113), + [anon_sym_RBRACE] = ACTIONS(2113), + [anon_sym_LPAREN] = ACTIONS(2113), + [anon_sym_PIPE] = ACTIONS(2115), + [anon_sym_fn] = ACTIONS(2115), + [anon_sym_PLUS] = ACTIONS(2115), + [anon_sym_DASH] = ACTIONS(2115), + [anon_sym_STAR] = ACTIONS(2113), + [anon_sym_SLASH] = ACTIONS(2115), + [anon_sym_PERCENT] = ACTIONS(2113), + [anon_sym_LT] = ACTIONS(2115), + [anon_sym_GT] = ACTIONS(2115), + [anon_sym_EQ_EQ] = ACTIONS(2113), + [anon_sym_BANG_EQ] = ACTIONS(2113), + [anon_sym_LT_EQ] = ACTIONS(2113), + [anon_sym_GT_EQ] = ACTIONS(2113), + [anon_sym_LBRACK] = ACTIONS(2113), + [anon_sym_RBRACK] = ACTIONS(2113), + [anon_sym_struct] = ACTIONS(2115), + [anon_sym_mut] = ACTIONS(2115), + [anon_sym_COLON] = ACTIONS(2113), + [anon_sym_PLUS_PLUS] = ACTIONS(2113), + [anon_sym_DASH_DASH] = ACTIONS(2113), + [anon_sym_QMARK] = ACTIONS(2115), + [anon_sym_BANG] = ACTIONS(2115), + [anon_sym_go] = ACTIONS(2115), + [anon_sym_spawn] = ACTIONS(2115), + [anon_sym_json_DOTdecode] = ACTIONS(2113), + [anon_sym_LBRACK2] = ACTIONS(2115), + [anon_sym_TILDE] = ACTIONS(2113), + [anon_sym_CARET] = ACTIONS(2113), + [anon_sym_AMP] = ACTIONS(2115), + [anon_sym_LT_DASH] = ACTIONS(2113), + [anon_sym_LT_LT] = ACTIONS(2113), + [anon_sym_GT_GT] = ACTIONS(2115), + [anon_sym_GT_GT_GT] = ACTIONS(2113), + [anon_sym_AMP_CARET] = ACTIONS(2113), + [anon_sym_AMP_AMP] = ACTIONS(2113), + [anon_sym_PIPE_PIPE] = ACTIONS(2113), + [anon_sym_or] = ACTIONS(2115), + [sym_none] = ACTIONS(2115), + [sym_true] = ACTIONS(2115), + [sym_false] = ACTIONS(2115), + [sym_nil] = ACTIONS(2115), + [anon_sym_QMARK_DOT] = ACTIONS(2113), + [anon_sym_POUND_LBRACK] = ACTIONS(2113), + [anon_sym_if] = ACTIONS(2115), + [anon_sym_DOLLARif] = ACTIONS(2115), + [anon_sym_is] = ACTIONS(2115), + [anon_sym_BANGis] = ACTIONS(2113), + [anon_sym_in] = ACTIONS(2115), + [anon_sym_BANGin] = ACTIONS(2113), + [anon_sym_match] = ACTIONS(2115), + [anon_sym_select] = ACTIONS(2115), + [anon_sym_lock] = ACTIONS(2115), + [anon_sym_rlock] = ACTIONS(2115), + [anon_sym_unsafe] = ACTIONS(2115), + [anon_sym_sql] = ACTIONS(2115), + [sym_int_literal] = ACTIONS(2115), + [sym_float_literal] = ACTIONS(2113), + [sym_rune_literal] = ACTIONS(2113), + [sym_pseudo_compile_time_identifier] = ACTIONS(2115), + [anon_sym_shared] = ACTIONS(2115), + [anon_sym_map_LBRACK] = ACTIONS(2113), + [anon_sym_chan] = ACTIONS(2115), + [anon_sym_thread] = ACTIONS(2115), + [anon_sym_atomic] = ACTIONS(2115), + [sym___double_quote] = ACTIONS(2113), + [sym___single_quote] = ACTIONS(2113), + [sym___c_double_quote] = ACTIONS(2113), + [sym___c_single_quote] = ACTIONS(2113), + [sym___r_double_quote] = ACTIONS(2113), + [sym___r_single_quote] = ACTIONS(2113), + }, + [1374] = { + [sym_line_comment] = STATE(1374), + [sym_block_comment] = STATE(1374), + [sym_identifier] = ACTIONS(2501), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(2501), + [anon_sym_as] = ACTIONS(2501), + [anon_sym_LBRACE] = ACTIONS(2499), + [anon_sym_COMMA] = ACTIONS(2499), + [anon_sym_RBRACE] = ACTIONS(2499), + [anon_sym_LPAREN] = ACTIONS(2499), + [anon_sym_PIPE] = ACTIONS(2501), + [anon_sym_fn] = ACTIONS(2501), + [anon_sym_PLUS] = ACTIONS(2501), + [anon_sym_DASH] = ACTIONS(2501), + [anon_sym_STAR] = ACTIONS(2499), + [anon_sym_SLASH] = ACTIONS(2501), + [anon_sym_PERCENT] = ACTIONS(2499), + [anon_sym_LT] = ACTIONS(2501), + [anon_sym_GT] = ACTIONS(2501), + [anon_sym_EQ_EQ] = ACTIONS(2499), + [anon_sym_BANG_EQ] = ACTIONS(2499), + [anon_sym_LT_EQ] = ACTIONS(2499), + [anon_sym_GT_EQ] = ACTIONS(2499), + [anon_sym_LBRACK] = ACTIONS(2499), + [anon_sym_RBRACK] = ACTIONS(2499), + [anon_sym_struct] = ACTIONS(2501), + [anon_sym_mut] = ACTIONS(2501), + [anon_sym_COLON] = ACTIONS(2499), + [anon_sym_PLUS_PLUS] = ACTIONS(2499), + [anon_sym_DASH_DASH] = ACTIONS(2499), + [anon_sym_QMARK] = ACTIONS(2501), + [anon_sym_BANG] = ACTIONS(2501), + [anon_sym_go] = ACTIONS(2501), + [anon_sym_spawn] = ACTIONS(2501), + [anon_sym_json_DOTdecode] = ACTIONS(2499), + [anon_sym_LBRACK2] = ACTIONS(2501), + [anon_sym_TILDE] = ACTIONS(2499), + [anon_sym_CARET] = ACTIONS(2499), + [anon_sym_AMP] = ACTIONS(2501), + [anon_sym_LT_DASH] = ACTIONS(2499), + [anon_sym_LT_LT] = ACTIONS(2499), + [anon_sym_GT_GT] = ACTIONS(2501), + [anon_sym_GT_GT_GT] = ACTIONS(2499), + [anon_sym_AMP_CARET] = ACTIONS(2499), + [anon_sym_AMP_AMP] = ACTIONS(2499), + [anon_sym_PIPE_PIPE] = ACTIONS(2499), + [anon_sym_or] = ACTIONS(2501), + [sym_none] = ACTIONS(2501), + [sym_true] = ACTIONS(2501), + [sym_false] = ACTIONS(2501), + [sym_nil] = ACTIONS(2501), + [anon_sym_QMARK_DOT] = ACTIONS(2499), + [anon_sym_POUND_LBRACK] = ACTIONS(2499), + [anon_sym_if] = ACTIONS(2501), + [anon_sym_DOLLARif] = ACTIONS(2501), + [anon_sym_is] = ACTIONS(2501), + [anon_sym_BANGis] = ACTIONS(2499), + [anon_sym_in] = ACTIONS(2501), + [anon_sym_BANGin] = ACTIONS(2499), + [anon_sym_match] = ACTIONS(2501), + [anon_sym_select] = ACTIONS(2501), + [anon_sym_lock] = ACTIONS(2501), + [anon_sym_rlock] = ACTIONS(2501), + [anon_sym_unsafe] = ACTIONS(2501), + [anon_sym_sql] = ACTIONS(2501), + [sym_int_literal] = ACTIONS(2501), + [sym_float_literal] = ACTIONS(2499), + [sym_rune_literal] = ACTIONS(2499), + [sym_pseudo_compile_time_identifier] = ACTIONS(2501), + [anon_sym_shared] = ACTIONS(2501), + [anon_sym_map_LBRACK] = ACTIONS(2499), + [anon_sym_chan] = ACTIONS(2501), + [anon_sym_thread] = ACTIONS(2501), + [anon_sym_atomic] = ACTIONS(2501), + [sym___double_quote] = ACTIONS(2499), + [sym___single_quote] = ACTIONS(2499), + [sym___c_double_quote] = ACTIONS(2499), + [sym___c_single_quote] = ACTIONS(2499), + [sym___r_double_quote] = ACTIONS(2499), + [sym___r_single_quote] = ACTIONS(2499), + }, + [1375] = { + [sym_line_comment] = STATE(1375), + [sym_block_comment] = STATE(1375), + [sym_identifier] = ACTIONS(2718), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(2718), + [anon_sym_as] = ACTIONS(2718), + [anon_sym_LBRACE] = ACTIONS(2716), + [anon_sym_COMMA] = ACTIONS(2716), + [anon_sym_RBRACE] = ACTIONS(2716), + [anon_sym_LPAREN] = ACTIONS(2716), + [anon_sym_PIPE] = ACTIONS(2718), + [anon_sym_fn] = ACTIONS(2718), + [anon_sym_PLUS] = ACTIONS(2718), + [anon_sym_DASH] = ACTIONS(2718), + [anon_sym_STAR] = ACTIONS(2716), + [anon_sym_SLASH] = ACTIONS(2718), + [anon_sym_PERCENT] = ACTIONS(2716), + [anon_sym_LT] = ACTIONS(2718), + [anon_sym_GT] = ACTIONS(2718), + [anon_sym_EQ_EQ] = ACTIONS(2716), + [anon_sym_BANG_EQ] = ACTIONS(2716), + [anon_sym_LT_EQ] = ACTIONS(2716), + [anon_sym_GT_EQ] = ACTIONS(2716), + [anon_sym_LBRACK] = ACTIONS(2716), + [anon_sym_RBRACK] = ACTIONS(2716), + [anon_sym_struct] = ACTIONS(2718), + [anon_sym_mut] = ACTIONS(2718), + [anon_sym_COLON] = ACTIONS(2716), + [anon_sym_PLUS_PLUS] = ACTIONS(2716), + [anon_sym_DASH_DASH] = ACTIONS(2716), + [anon_sym_QMARK] = ACTIONS(2718), + [anon_sym_BANG] = ACTIONS(2718), + [anon_sym_go] = ACTIONS(2718), + [anon_sym_spawn] = ACTIONS(2718), + [anon_sym_json_DOTdecode] = ACTIONS(2716), + [anon_sym_LBRACK2] = ACTIONS(2718), + [anon_sym_TILDE] = ACTIONS(2716), + [anon_sym_CARET] = ACTIONS(2716), + [anon_sym_AMP] = ACTIONS(2718), + [anon_sym_LT_DASH] = ACTIONS(2716), + [anon_sym_LT_LT] = ACTIONS(2716), + [anon_sym_GT_GT] = ACTIONS(2718), + [anon_sym_GT_GT_GT] = ACTIONS(2716), + [anon_sym_AMP_CARET] = ACTIONS(2716), + [anon_sym_AMP_AMP] = ACTIONS(2716), + [anon_sym_PIPE_PIPE] = ACTIONS(2716), + [anon_sym_or] = ACTIONS(2718), + [sym_none] = ACTIONS(2718), + [sym_true] = ACTIONS(2718), + [sym_false] = ACTIONS(2718), + [sym_nil] = ACTIONS(2718), + [anon_sym_QMARK_DOT] = ACTIONS(2716), + [anon_sym_POUND_LBRACK] = ACTIONS(2716), + [anon_sym_if] = ACTIONS(2718), + [anon_sym_DOLLARif] = ACTIONS(2718), + [anon_sym_is] = ACTIONS(2718), + [anon_sym_BANGis] = ACTIONS(2716), + [anon_sym_in] = ACTIONS(2718), + [anon_sym_BANGin] = ACTIONS(2716), + [anon_sym_match] = ACTIONS(2718), + [anon_sym_select] = ACTIONS(2718), + [anon_sym_lock] = ACTIONS(2718), + [anon_sym_rlock] = ACTIONS(2718), + [anon_sym_unsafe] = ACTIONS(2718), + [anon_sym_sql] = ACTIONS(2718), + [sym_int_literal] = ACTIONS(2718), + [sym_float_literal] = ACTIONS(2716), + [sym_rune_literal] = ACTIONS(2716), + [sym_pseudo_compile_time_identifier] = ACTIONS(2718), + [anon_sym_shared] = ACTIONS(2718), + [anon_sym_map_LBRACK] = ACTIONS(2716), + [anon_sym_chan] = ACTIONS(2718), + [anon_sym_thread] = ACTIONS(2718), + [anon_sym_atomic] = ACTIONS(2718), + [sym___double_quote] = ACTIONS(2716), + [sym___single_quote] = ACTIONS(2716), + [sym___c_double_quote] = ACTIONS(2716), + [sym___c_single_quote] = ACTIONS(2716), + [sym___r_double_quote] = ACTIONS(2716), + [sym___r_single_quote] = ACTIONS(2716), + }, + [1376] = { + [sym_line_comment] = STATE(1376), + [sym_block_comment] = STATE(1376), + [sym_identifier] = ACTIONS(2119), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(2119), + [anon_sym_as] = ACTIONS(2119), + [anon_sym_LBRACE] = ACTIONS(2117), + [anon_sym_COMMA] = ACTIONS(2117), + [anon_sym_RBRACE] = ACTIONS(2117), + [anon_sym_LPAREN] = ACTIONS(2117), + [anon_sym_PIPE] = ACTIONS(2119), + [anon_sym_fn] = ACTIONS(2119), + [anon_sym_PLUS] = ACTIONS(2119), + [anon_sym_DASH] = ACTIONS(2119), + [anon_sym_STAR] = ACTIONS(2117), + [anon_sym_SLASH] = ACTIONS(2119), + [anon_sym_PERCENT] = ACTIONS(2117), + [anon_sym_LT] = ACTIONS(2119), + [anon_sym_GT] = ACTIONS(2119), + [anon_sym_EQ_EQ] = ACTIONS(2117), + [anon_sym_BANG_EQ] = ACTIONS(2117), + [anon_sym_LT_EQ] = ACTIONS(2117), + [anon_sym_GT_EQ] = ACTIONS(2117), + [anon_sym_LBRACK] = ACTIONS(2117), + [anon_sym_RBRACK] = ACTIONS(2117), + [anon_sym_struct] = ACTIONS(2119), + [anon_sym_mut] = ACTIONS(2119), + [anon_sym_COLON] = ACTIONS(2117), + [anon_sym_PLUS_PLUS] = ACTIONS(2117), + [anon_sym_DASH_DASH] = ACTIONS(2117), + [anon_sym_QMARK] = ACTIONS(2119), + [anon_sym_BANG] = ACTIONS(2119), + [anon_sym_go] = ACTIONS(2119), + [anon_sym_spawn] = ACTIONS(2119), + [anon_sym_json_DOTdecode] = ACTIONS(2117), + [anon_sym_LBRACK2] = ACTIONS(2119), + [anon_sym_TILDE] = ACTIONS(2117), + [anon_sym_CARET] = ACTIONS(2117), + [anon_sym_AMP] = ACTIONS(2119), + [anon_sym_LT_DASH] = ACTIONS(2117), + [anon_sym_LT_LT] = ACTIONS(2117), + [anon_sym_GT_GT] = ACTIONS(2119), + [anon_sym_GT_GT_GT] = ACTIONS(2117), + [anon_sym_AMP_CARET] = ACTIONS(2117), + [anon_sym_AMP_AMP] = ACTIONS(2117), + [anon_sym_PIPE_PIPE] = ACTIONS(2117), + [anon_sym_or] = ACTIONS(2119), + [sym_none] = ACTIONS(2119), + [sym_true] = ACTIONS(2119), + [sym_false] = ACTIONS(2119), + [sym_nil] = ACTIONS(2119), + [anon_sym_QMARK_DOT] = ACTIONS(2117), + [anon_sym_POUND_LBRACK] = ACTIONS(2117), + [anon_sym_if] = ACTIONS(2119), + [anon_sym_DOLLARif] = ACTIONS(2119), + [anon_sym_is] = ACTIONS(2119), + [anon_sym_BANGis] = ACTIONS(2117), + [anon_sym_in] = ACTIONS(2119), + [anon_sym_BANGin] = ACTIONS(2117), + [anon_sym_match] = ACTIONS(2119), + [anon_sym_select] = ACTIONS(2119), + [anon_sym_lock] = ACTIONS(2119), + [anon_sym_rlock] = ACTIONS(2119), + [anon_sym_unsafe] = ACTIONS(2119), + [anon_sym_sql] = ACTIONS(2119), + [sym_int_literal] = ACTIONS(2119), + [sym_float_literal] = ACTIONS(2117), + [sym_rune_literal] = ACTIONS(2117), + [sym_pseudo_compile_time_identifier] = ACTIONS(2119), + [anon_sym_shared] = ACTIONS(2119), + [anon_sym_map_LBRACK] = ACTIONS(2117), + [anon_sym_chan] = ACTIONS(2119), + [anon_sym_thread] = ACTIONS(2119), + [anon_sym_atomic] = ACTIONS(2119), + [sym___double_quote] = ACTIONS(2117), + [sym___single_quote] = ACTIONS(2117), + [sym___c_double_quote] = ACTIONS(2117), + [sym___c_single_quote] = ACTIONS(2117), + [sym___r_double_quote] = ACTIONS(2117), + [sym___r_single_quote] = ACTIONS(2117), + }, + [1377] = { + [sym_line_comment] = STATE(1377), + [sym_block_comment] = STATE(1377), + [sym_identifier] = ACTIONS(2782), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(2782), + [anon_sym_as] = ACTIONS(2782), + [anon_sym_LBRACE] = ACTIONS(2780), + [anon_sym_COMMA] = ACTIONS(2780), + [anon_sym_RBRACE] = ACTIONS(2780), + [anon_sym_LPAREN] = ACTIONS(2780), + [anon_sym_PIPE] = ACTIONS(2782), + [anon_sym_fn] = ACTIONS(2782), + [anon_sym_PLUS] = ACTIONS(2782), + [anon_sym_DASH] = ACTIONS(2782), + [anon_sym_STAR] = ACTIONS(2780), + [anon_sym_SLASH] = ACTIONS(2782), + [anon_sym_PERCENT] = ACTIONS(2780), + [anon_sym_LT] = ACTIONS(2782), + [anon_sym_GT] = ACTIONS(2782), + [anon_sym_EQ_EQ] = ACTIONS(2780), + [anon_sym_BANG_EQ] = ACTIONS(2780), + [anon_sym_LT_EQ] = ACTIONS(2780), + [anon_sym_GT_EQ] = ACTIONS(2780), + [anon_sym_LBRACK] = ACTIONS(2780), + [anon_sym_RBRACK] = ACTIONS(2780), + [anon_sym_struct] = ACTIONS(2782), + [anon_sym_mut] = ACTIONS(2782), + [anon_sym_COLON] = ACTIONS(2780), + [anon_sym_PLUS_PLUS] = ACTIONS(2780), + [anon_sym_DASH_DASH] = ACTIONS(2780), + [anon_sym_QMARK] = ACTIONS(2782), + [anon_sym_BANG] = ACTIONS(2782), + [anon_sym_go] = ACTIONS(2782), + [anon_sym_spawn] = ACTIONS(2782), + [anon_sym_json_DOTdecode] = ACTIONS(2780), + [anon_sym_LBRACK2] = ACTIONS(2782), + [anon_sym_TILDE] = ACTIONS(2780), + [anon_sym_CARET] = ACTIONS(2780), + [anon_sym_AMP] = ACTIONS(2782), + [anon_sym_LT_DASH] = ACTIONS(2780), + [anon_sym_LT_LT] = ACTIONS(2780), + [anon_sym_GT_GT] = ACTIONS(2782), + [anon_sym_GT_GT_GT] = ACTIONS(2780), + [anon_sym_AMP_CARET] = ACTIONS(2780), + [anon_sym_AMP_AMP] = ACTIONS(2780), + [anon_sym_PIPE_PIPE] = ACTIONS(2780), + [anon_sym_or] = ACTIONS(2782), + [sym_none] = ACTIONS(2782), + [sym_true] = ACTIONS(2782), + [sym_false] = ACTIONS(2782), + [sym_nil] = ACTIONS(2782), + [anon_sym_QMARK_DOT] = ACTIONS(2780), + [anon_sym_POUND_LBRACK] = ACTIONS(2780), + [anon_sym_if] = ACTIONS(2782), + [anon_sym_DOLLARif] = ACTIONS(2782), + [anon_sym_is] = ACTIONS(2782), + [anon_sym_BANGis] = ACTIONS(2780), + [anon_sym_in] = ACTIONS(2782), + [anon_sym_BANGin] = ACTIONS(2780), + [anon_sym_match] = ACTIONS(2782), + [anon_sym_select] = ACTIONS(2782), + [anon_sym_lock] = ACTIONS(2782), + [anon_sym_rlock] = ACTIONS(2782), + [anon_sym_unsafe] = ACTIONS(2782), + [anon_sym_sql] = ACTIONS(2782), + [sym_int_literal] = ACTIONS(2782), + [sym_float_literal] = ACTIONS(2780), + [sym_rune_literal] = ACTIONS(2780), + [sym_pseudo_compile_time_identifier] = ACTIONS(2782), + [anon_sym_shared] = ACTIONS(2782), + [anon_sym_map_LBRACK] = ACTIONS(2780), + [anon_sym_chan] = ACTIONS(2782), + [anon_sym_thread] = ACTIONS(2782), + [anon_sym_atomic] = ACTIONS(2782), + [sym___double_quote] = ACTIONS(2780), + [sym___single_quote] = ACTIONS(2780), + [sym___c_double_quote] = ACTIONS(2780), + [sym___c_single_quote] = ACTIONS(2780), + [sym___r_double_quote] = ACTIONS(2780), + [sym___r_single_quote] = ACTIONS(2780), + }, + [1378] = { + [sym_line_comment] = STATE(1378), + [sym_block_comment] = STATE(1378), + [sym_identifier] = ACTIONS(2732), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(2732), + [anon_sym_as] = ACTIONS(2732), + [anon_sym_LBRACE] = ACTIONS(2730), + [anon_sym_COMMA] = ACTIONS(2730), + [anon_sym_RBRACE] = ACTIONS(2730), + [anon_sym_LPAREN] = ACTIONS(2730), + [anon_sym_PIPE] = ACTIONS(2732), + [anon_sym_fn] = ACTIONS(2732), + [anon_sym_PLUS] = ACTIONS(2732), + [anon_sym_DASH] = ACTIONS(2732), + [anon_sym_STAR] = ACTIONS(2730), + [anon_sym_SLASH] = ACTIONS(2732), + [anon_sym_PERCENT] = ACTIONS(2730), + [anon_sym_LT] = ACTIONS(2732), + [anon_sym_GT] = ACTIONS(2732), + [anon_sym_EQ_EQ] = ACTIONS(2730), + [anon_sym_BANG_EQ] = ACTIONS(2730), + [anon_sym_LT_EQ] = ACTIONS(2730), + [anon_sym_GT_EQ] = ACTIONS(2730), + [anon_sym_LBRACK] = ACTIONS(2730), + [anon_sym_RBRACK] = ACTIONS(2730), + [anon_sym_struct] = ACTIONS(2732), + [anon_sym_mut] = ACTIONS(2732), + [anon_sym_COLON] = ACTIONS(2730), + [anon_sym_PLUS_PLUS] = ACTIONS(2730), + [anon_sym_DASH_DASH] = ACTIONS(2730), + [anon_sym_QMARK] = ACTIONS(2732), + [anon_sym_BANG] = ACTIONS(2732), + [anon_sym_go] = ACTIONS(2732), + [anon_sym_spawn] = ACTIONS(2732), + [anon_sym_json_DOTdecode] = ACTIONS(2730), + [anon_sym_LBRACK2] = ACTIONS(2732), + [anon_sym_TILDE] = ACTIONS(2730), + [anon_sym_CARET] = ACTIONS(2730), + [anon_sym_AMP] = ACTIONS(2732), + [anon_sym_LT_DASH] = ACTIONS(2730), + [anon_sym_LT_LT] = ACTIONS(2730), + [anon_sym_GT_GT] = ACTIONS(2732), + [anon_sym_GT_GT_GT] = ACTIONS(2730), + [anon_sym_AMP_CARET] = ACTIONS(2730), + [anon_sym_AMP_AMP] = ACTIONS(2730), + [anon_sym_PIPE_PIPE] = ACTIONS(2730), + [anon_sym_or] = ACTIONS(2732), + [sym_none] = ACTIONS(2732), + [sym_true] = ACTIONS(2732), + [sym_false] = ACTIONS(2732), + [sym_nil] = ACTIONS(2732), + [anon_sym_QMARK_DOT] = ACTIONS(2730), + [anon_sym_POUND_LBRACK] = ACTIONS(2730), + [anon_sym_if] = ACTIONS(2732), + [anon_sym_DOLLARif] = ACTIONS(2732), + [anon_sym_is] = ACTIONS(2732), + [anon_sym_BANGis] = ACTIONS(2730), + [anon_sym_in] = ACTIONS(2732), + [anon_sym_BANGin] = ACTIONS(2730), + [anon_sym_match] = ACTIONS(2732), + [anon_sym_select] = ACTIONS(2732), + [anon_sym_lock] = ACTIONS(2732), + [anon_sym_rlock] = ACTIONS(2732), + [anon_sym_unsafe] = ACTIONS(2732), + [anon_sym_sql] = ACTIONS(2732), + [sym_int_literal] = ACTIONS(2732), + [sym_float_literal] = ACTIONS(2730), + [sym_rune_literal] = ACTIONS(2730), + [sym_pseudo_compile_time_identifier] = ACTIONS(2732), + [anon_sym_shared] = ACTIONS(2732), + [anon_sym_map_LBRACK] = ACTIONS(2730), + [anon_sym_chan] = ACTIONS(2732), + [anon_sym_thread] = ACTIONS(2732), + [anon_sym_atomic] = ACTIONS(2732), + [sym___double_quote] = ACTIONS(2730), + [sym___single_quote] = ACTIONS(2730), + [sym___c_double_quote] = ACTIONS(2730), + [sym___c_single_quote] = ACTIONS(2730), + [sym___r_double_quote] = ACTIONS(2730), + [sym___r_single_quote] = ACTIONS(2730), + }, + [1379] = { + [sym_line_comment] = STATE(1379), + [sym_block_comment] = STATE(1379), + [sym_identifier] = ACTIONS(2794), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(2794), + [anon_sym_as] = ACTIONS(2794), + [anon_sym_LBRACE] = ACTIONS(2792), + [anon_sym_COMMA] = ACTIONS(2792), + [anon_sym_RBRACE] = ACTIONS(2792), + [anon_sym_LPAREN] = ACTIONS(2792), + [anon_sym_PIPE] = ACTIONS(2794), + [anon_sym_fn] = ACTIONS(2794), + [anon_sym_PLUS] = ACTIONS(2794), + [anon_sym_DASH] = ACTIONS(2794), + [anon_sym_STAR] = ACTIONS(2792), + [anon_sym_SLASH] = ACTIONS(2794), + [anon_sym_PERCENT] = ACTIONS(2792), + [anon_sym_LT] = ACTIONS(2794), + [anon_sym_GT] = ACTIONS(2794), + [anon_sym_EQ_EQ] = ACTIONS(2792), + [anon_sym_BANG_EQ] = ACTIONS(2792), + [anon_sym_LT_EQ] = ACTIONS(2792), + [anon_sym_GT_EQ] = ACTIONS(2792), + [anon_sym_LBRACK] = ACTIONS(2792), + [anon_sym_RBRACK] = ACTIONS(2792), + [anon_sym_struct] = ACTIONS(2794), + [anon_sym_mut] = ACTIONS(2794), + [anon_sym_COLON] = ACTIONS(2792), + [anon_sym_PLUS_PLUS] = ACTIONS(2792), + [anon_sym_DASH_DASH] = ACTIONS(2792), + [anon_sym_QMARK] = ACTIONS(2794), + [anon_sym_BANG] = ACTIONS(2794), + [anon_sym_go] = ACTIONS(2794), + [anon_sym_spawn] = ACTIONS(2794), + [anon_sym_json_DOTdecode] = ACTIONS(2792), + [anon_sym_LBRACK2] = ACTIONS(2794), + [anon_sym_TILDE] = ACTIONS(2792), + [anon_sym_CARET] = ACTIONS(2792), + [anon_sym_AMP] = ACTIONS(2794), + [anon_sym_LT_DASH] = ACTIONS(2792), + [anon_sym_LT_LT] = ACTIONS(2792), + [anon_sym_GT_GT] = ACTIONS(2794), + [anon_sym_GT_GT_GT] = ACTIONS(2792), + [anon_sym_AMP_CARET] = ACTIONS(2792), + [anon_sym_AMP_AMP] = ACTIONS(2792), + [anon_sym_PIPE_PIPE] = ACTIONS(2792), + [anon_sym_or] = ACTIONS(2794), + [sym_none] = ACTIONS(2794), + [sym_true] = ACTIONS(2794), + [sym_false] = ACTIONS(2794), + [sym_nil] = ACTIONS(2794), + [anon_sym_QMARK_DOT] = ACTIONS(2792), + [anon_sym_POUND_LBRACK] = ACTIONS(2792), + [anon_sym_if] = ACTIONS(2794), + [anon_sym_DOLLARif] = ACTIONS(2794), + [anon_sym_is] = ACTIONS(2794), + [anon_sym_BANGis] = ACTIONS(2792), + [anon_sym_in] = ACTIONS(2794), + [anon_sym_BANGin] = ACTIONS(2792), + [anon_sym_match] = ACTIONS(2794), + [anon_sym_select] = ACTIONS(2794), + [anon_sym_lock] = ACTIONS(2794), + [anon_sym_rlock] = ACTIONS(2794), + [anon_sym_unsafe] = ACTIONS(2794), + [anon_sym_sql] = ACTIONS(2794), + [sym_int_literal] = ACTIONS(2794), + [sym_float_literal] = ACTIONS(2792), + [sym_rune_literal] = ACTIONS(2792), + [sym_pseudo_compile_time_identifier] = ACTIONS(2794), + [anon_sym_shared] = ACTIONS(2794), + [anon_sym_map_LBRACK] = ACTIONS(2792), + [anon_sym_chan] = ACTIONS(2794), + [anon_sym_thread] = ACTIONS(2794), + [anon_sym_atomic] = ACTIONS(2794), + [sym___double_quote] = ACTIONS(2792), + [sym___single_quote] = ACTIONS(2792), + [sym___c_double_quote] = ACTIONS(2792), + [sym___c_single_quote] = ACTIONS(2792), + [sym___r_double_quote] = ACTIONS(2792), + [sym___r_single_quote] = ACTIONS(2792), + }, + [1380] = { + [sym_line_comment] = STATE(1380), + [sym_block_comment] = STATE(1380), + [sym_identifier] = ACTIONS(2475), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(2816), - [anon_sym_as] = ACTIONS(2816), - [anon_sym_LBRACE] = ACTIONS(2814), - [anon_sym_COMMA] = ACTIONS(2814), - [anon_sym_RBRACE] = ACTIONS(2814), - [anon_sym_LPAREN] = ACTIONS(2814), - [anon_sym_PIPE] = ACTIONS(2816), - [anon_sym_fn] = ACTIONS(2816), - [anon_sym_PLUS] = ACTIONS(2816), - [anon_sym_DASH] = ACTIONS(2816), - [anon_sym_STAR] = ACTIONS(2814), - [anon_sym_SLASH] = ACTIONS(2816), - [anon_sym_PERCENT] = ACTIONS(2814), - [anon_sym_LT] = ACTIONS(2816), - [anon_sym_GT] = ACTIONS(2816), - [anon_sym_EQ_EQ] = ACTIONS(2814), - [anon_sym_BANG_EQ] = ACTIONS(2814), - [anon_sym_LT_EQ] = ACTIONS(2814), - [anon_sym_GT_EQ] = ACTIONS(2814), - [anon_sym_LBRACK] = ACTIONS(2814), - [anon_sym_RBRACK] = ACTIONS(2814), - [anon_sym_struct] = ACTIONS(2816), - [anon_sym_mut] = ACTIONS(2816), - [anon_sym_COLON] = ACTIONS(2814), - [anon_sym_PLUS_PLUS] = ACTIONS(2814), - [anon_sym_DASH_DASH] = ACTIONS(2814), - [anon_sym_QMARK] = ACTIONS(2816), - [anon_sym_BANG] = ACTIONS(2816), - [anon_sym_go] = ACTIONS(2816), - [anon_sym_spawn] = ACTIONS(2816), - [anon_sym_json_DOTdecode] = ACTIONS(2814), - [anon_sym_LBRACK2] = ACTIONS(2816), - [anon_sym_TILDE] = ACTIONS(2814), - [anon_sym_CARET] = ACTIONS(2814), - [anon_sym_AMP] = ACTIONS(2816), - [anon_sym_LT_DASH] = ACTIONS(2814), - [anon_sym_LT_LT] = ACTIONS(2814), - [anon_sym_GT_GT] = ACTIONS(2816), - [anon_sym_GT_GT_GT] = ACTIONS(2814), - [anon_sym_AMP_CARET] = ACTIONS(2814), - [anon_sym_AMP_AMP] = ACTIONS(2814), - [anon_sym_PIPE_PIPE] = ACTIONS(2814), - [anon_sym_or] = ACTIONS(2816), - [sym_none] = ACTIONS(2816), - [sym_true] = ACTIONS(2816), - [sym_false] = ACTIONS(2816), - [sym_nil] = ACTIONS(2816), - [anon_sym_QMARK_DOT] = ACTIONS(2814), - [anon_sym_POUND_LBRACK] = ACTIONS(2814), - [anon_sym_if] = ACTIONS(2816), - [anon_sym_DOLLARif] = ACTIONS(2816), - [anon_sym_is] = ACTIONS(2816), - [anon_sym_BANGis] = ACTIONS(2814), - [anon_sym_in] = ACTIONS(2816), - [anon_sym_BANGin] = ACTIONS(2814), - [anon_sym_match] = ACTIONS(2816), - [anon_sym_select] = ACTIONS(2816), - [anon_sym_lock] = ACTIONS(2816), - [anon_sym_rlock] = ACTIONS(2816), - [anon_sym_unsafe] = ACTIONS(2816), - [anon_sym_sql] = ACTIONS(2816), - [sym_int_literal] = ACTIONS(2816), - [sym_float_literal] = ACTIONS(2814), - [sym_rune_literal] = ACTIONS(2814), - [sym_pseudo_compile_time_identifier] = ACTIONS(2816), - [anon_sym_shared] = ACTIONS(2816), - [anon_sym_map_LBRACK] = ACTIONS(2814), - [anon_sym_chan] = ACTIONS(2816), - [anon_sym_thread] = ACTIONS(2816), - [anon_sym_atomic] = ACTIONS(2816), - [sym___double_quote] = ACTIONS(2814), - [sym___single_quote] = ACTIONS(2814), - [sym___c_double_quote] = ACTIONS(2814), - [sym___c_single_quote] = ACTIONS(2814), - [sym___r_double_quote] = ACTIONS(2814), - [sym___r_single_quote] = ACTIONS(2814), + [anon_sym_DOT] = ACTIONS(2475), + [anon_sym_as] = ACTIONS(2475), + [anon_sym_LBRACE] = ACTIONS(2473), + [anon_sym_COMMA] = ACTIONS(2473), + [anon_sym_RBRACE] = ACTIONS(2473), + [anon_sym_LPAREN] = ACTIONS(2473), + [anon_sym_PIPE] = ACTIONS(2475), + [anon_sym_fn] = ACTIONS(2475), + [anon_sym_PLUS] = ACTIONS(2475), + [anon_sym_DASH] = ACTIONS(2475), + [anon_sym_STAR] = ACTIONS(2473), + [anon_sym_SLASH] = ACTIONS(2475), + [anon_sym_PERCENT] = ACTIONS(2473), + [anon_sym_LT] = ACTIONS(2475), + [anon_sym_GT] = ACTIONS(2475), + [anon_sym_EQ_EQ] = ACTIONS(2473), + [anon_sym_BANG_EQ] = ACTIONS(2473), + [anon_sym_LT_EQ] = ACTIONS(2473), + [anon_sym_GT_EQ] = ACTIONS(2473), + [anon_sym_LBRACK] = ACTIONS(2473), + [anon_sym_RBRACK] = ACTIONS(2473), + [anon_sym_struct] = ACTIONS(2475), + [anon_sym_mut] = ACTIONS(2475), + [anon_sym_COLON] = ACTIONS(2473), + [anon_sym_PLUS_PLUS] = ACTIONS(2473), + [anon_sym_DASH_DASH] = ACTIONS(2473), + [anon_sym_QMARK] = ACTIONS(2475), + [anon_sym_BANG] = ACTIONS(2475), + [anon_sym_go] = ACTIONS(2475), + [anon_sym_spawn] = ACTIONS(2475), + [anon_sym_json_DOTdecode] = ACTIONS(2473), + [anon_sym_LBRACK2] = ACTIONS(2475), + [anon_sym_TILDE] = ACTIONS(2473), + [anon_sym_CARET] = ACTIONS(2473), + [anon_sym_AMP] = ACTIONS(2475), + [anon_sym_LT_DASH] = ACTIONS(2473), + [anon_sym_LT_LT] = ACTIONS(2473), + [anon_sym_GT_GT] = ACTIONS(2475), + [anon_sym_GT_GT_GT] = ACTIONS(2473), + [anon_sym_AMP_CARET] = ACTIONS(2473), + [anon_sym_AMP_AMP] = ACTIONS(2473), + [anon_sym_PIPE_PIPE] = ACTIONS(2473), + [anon_sym_or] = ACTIONS(2475), + [sym_none] = ACTIONS(2475), + [sym_true] = ACTIONS(2475), + [sym_false] = ACTIONS(2475), + [sym_nil] = ACTIONS(2475), + [anon_sym_QMARK_DOT] = ACTIONS(2473), + [anon_sym_POUND_LBRACK] = ACTIONS(2473), + [anon_sym_if] = ACTIONS(2475), + [anon_sym_DOLLARif] = ACTIONS(2475), + [anon_sym_is] = ACTIONS(2475), + [anon_sym_BANGis] = ACTIONS(2473), + [anon_sym_in] = ACTIONS(2475), + [anon_sym_BANGin] = ACTIONS(2473), + [anon_sym_match] = ACTIONS(2475), + [anon_sym_select] = ACTIONS(2475), + [anon_sym_lock] = ACTIONS(2475), + [anon_sym_rlock] = ACTIONS(2475), + [anon_sym_unsafe] = ACTIONS(2475), + [anon_sym_sql] = ACTIONS(2475), + [sym_int_literal] = ACTIONS(2475), + [sym_float_literal] = ACTIONS(2473), + [sym_rune_literal] = ACTIONS(2473), + [sym_pseudo_compile_time_identifier] = ACTIONS(2475), + [anon_sym_shared] = ACTIONS(2475), + [anon_sym_map_LBRACK] = ACTIONS(2473), + [anon_sym_chan] = ACTIONS(2475), + [anon_sym_thread] = ACTIONS(2475), + [anon_sym_atomic] = ACTIONS(2475), + [sym___double_quote] = ACTIONS(2473), + [sym___single_quote] = ACTIONS(2473), + [sym___c_double_quote] = ACTIONS(2473), + [sym___c_single_quote] = ACTIONS(2473), + [sym___r_double_quote] = ACTIONS(2473), + [sym___r_single_quote] = ACTIONS(2473), }, - [1369] = { - [sym_line_comment] = STATE(1369), - [sym_block_comment] = STATE(1369), - [sym_identifier] = ACTIONS(2289), + [1381] = { + [sym_line_comment] = STATE(1381), + [sym_block_comment] = STATE(1381), + [sym_identifier] = ACTIONS(2832), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(2289), - [anon_sym_as] = ACTIONS(2289), - [anon_sym_LBRACE] = ACTIONS(2287), - [anon_sym_COMMA] = ACTIONS(2287), - [anon_sym_RBRACE] = ACTIONS(2287), - [anon_sym_LPAREN] = ACTIONS(2287), - [anon_sym_PIPE] = ACTIONS(2289), - [anon_sym_fn] = ACTIONS(2289), - [anon_sym_PLUS] = ACTIONS(2289), - [anon_sym_DASH] = ACTIONS(2289), - [anon_sym_STAR] = ACTIONS(2287), - [anon_sym_SLASH] = ACTIONS(2289), - [anon_sym_PERCENT] = ACTIONS(2287), - [anon_sym_LT] = ACTIONS(2289), - [anon_sym_GT] = ACTIONS(2289), - [anon_sym_EQ_EQ] = ACTIONS(2287), - [anon_sym_BANG_EQ] = ACTIONS(2287), - [anon_sym_LT_EQ] = ACTIONS(2287), - [anon_sym_GT_EQ] = ACTIONS(2287), - [anon_sym_LBRACK] = ACTIONS(2287), - [anon_sym_RBRACK] = ACTIONS(2287), - [anon_sym_struct] = ACTIONS(2289), - [anon_sym_mut] = ACTIONS(2289), - [anon_sym_COLON] = ACTIONS(2287), - [anon_sym_PLUS_PLUS] = ACTIONS(2287), - [anon_sym_DASH_DASH] = ACTIONS(2287), - [anon_sym_QMARK] = ACTIONS(2289), - [anon_sym_BANG] = ACTIONS(2289), - [anon_sym_go] = ACTIONS(2289), - [anon_sym_spawn] = ACTIONS(2289), - [anon_sym_json_DOTdecode] = ACTIONS(2287), - [anon_sym_LBRACK2] = ACTIONS(2289), - [anon_sym_TILDE] = ACTIONS(2287), - [anon_sym_CARET] = ACTIONS(2287), - [anon_sym_AMP] = ACTIONS(2289), - [anon_sym_LT_DASH] = ACTIONS(2287), - [anon_sym_LT_LT] = ACTIONS(2287), - [anon_sym_GT_GT] = ACTIONS(2289), - [anon_sym_GT_GT_GT] = ACTIONS(2287), - [anon_sym_AMP_CARET] = ACTIONS(2287), - [anon_sym_AMP_AMP] = ACTIONS(2287), - [anon_sym_PIPE_PIPE] = ACTIONS(2287), - [anon_sym_or] = ACTIONS(2289), - [sym_none] = ACTIONS(2289), - [sym_true] = ACTIONS(2289), - [sym_false] = ACTIONS(2289), - [sym_nil] = ACTIONS(2289), - [anon_sym_QMARK_DOT] = ACTIONS(2287), - [anon_sym_POUND_LBRACK] = ACTIONS(2287), - [anon_sym_if] = ACTIONS(2289), - [anon_sym_DOLLARif] = ACTIONS(2289), - [anon_sym_is] = ACTIONS(2289), - [anon_sym_BANGis] = ACTIONS(2287), - [anon_sym_in] = ACTIONS(2289), - [anon_sym_BANGin] = ACTIONS(2287), - [anon_sym_match] = ACTIONS(2289), - [anon_sym_select] = ACTIONS(2289), - [anon_sym_lock] = ACTIONS(2289), - [anon_sym_rlock] = ACTIONS(2289), - [anon_sym_unsafe] = ACTIONS(2289), - [anon_sym_sql] = ACTIONS(2289), - [sym_int_literal] = ACTIONS(2289), - [sym_float_literal] = ACTIONS(2287), - [sym_rune_literal] = ACTIONS(2287), - [sym_pseudo_compile_time_identifier] = ACTIONS(2289), - [anon_sym_shared] = ACTIONS(2289), - [anon_sym_map_LBRACK] = ACTIONS(2287), - [anon_sym_chan] = ACTIONS(2289), - [anon_sym_thread] = ACTIONS(2289), - [anon_sym_atomic] = ACTIONS(2289), - [sym___double_quote] = ACTIONS(2287), - [sym___single_quote] = ACTIONS(2287), - [sym___c_double_quote] = ACTIONS(2287), - [sym___c_single_quote] = ACTIONS(2287), - [sym___r_double_quote] = ACTIONS(2287), - [sym___r_single_quote] = ACTIONS(2287), + [anon_sym_DOT] = ACTIONS(2832), + [anon_sym_as] = ACTIONS(2832), + [anon_sym_LBRACE] = ACTIONS(2830), + [anon_sym_COMMA] = ACTIONS(2830), + [anon_sym_RBRACE] = ACTIONS(2830), + [anon_sym_LPAREN] = ACTIONS(2830), + [anon_sym_PIPE] = ACTIONS(2832), + [anon_sym_fn] = ACTIONS(2832), + [anon_sym_PLUS] = ACTIONS(2832), + [anon_sym_DASH] = ACTIONS(2832), + [anon_sym_STAR] = ACTIONS(2830), + [anon_sym_SLASH] = ACTIONS(2832), + [anon_sym_PERCENT] = ACTIONS(2830), + [anon_sym_LT] = ACTIONS(2832), + [anon_sym_GT] = ACTIONS(2832), + [anon_sym_EQ_EQ] = ACTIONS(2830), + [anon_sym_BANG_EQ] = ACTIONS(2830), + [anon_sym_LT_EQ] = ACTIONS(2830), + [anon_sym_GT_EQ] = ACTIONS(2830), + [anon_sym_LBRACK] = ACTIONS(2830), + [anon_sym_RBRACK] = ACTIONS(2830), + [anon_sym_struct] = ACTIONS(2832), + [anon_sym_mut] = ACTIONS(2832), + [anon_sym_COLON] = ACTIONS(2830), + [anon_sym_PLUS_PLUS] = ACTIONS(2830), + [anon_sym_DASH_DASH] = ACTIONS(2830), + [anon_sym_QMARK] = ACTIONS(2832), + [anon_sym_BANG] = ACTIONS(2832), + [anon_sym_go] = ACTIONS(2832), + [anon_sym_spawn] = ACTIONS(2832), + [anon_sym_json_DOTdecode] = ACTIONS(2830), + [anon_sym_LBRACK2] = ACTIONS(2832), + [anon_sym_TILDE] = ACTIONS(2830), + [anon_sym_CARET] = ACTIONS(2830), + [anon_sym_AMP] = ACTIONS(2832), + [anon_sym_LT_DASH] = ACTIONS(2830), + [anon_sym_LT_LT] = ACTIONS(2830), + [anon_sym_GT_GT] = ACTIONS(2832), + [anon_sym_GT_GT_GT] = ACTIONS(2830), + [anon_sym_AMP_CARET] = ACTIONS(2830), + [anon_sym_AMP_AMP] = ACTIONS(2830), + [anon_sym_PIPE_PIPE] = ACTIONS(2830), + [anon_sym_or] = ACTIONS(2832), + [sym_none] = ACTIONS(2832), + [sym_true] = ACTIONS(2832), + [sym_false] = ACTIONS(2832), + [sym_nil] = ACTIONS(2832), + [anon_sym_QMARK_DOT] = ACTIONS(2830), + [anon_sym_POUND_LBRACK] = ACTIONS(2830), + [anon_sym_if] = ACTIONS(2832), + [anon_sym_DOLLARif] = ACTIONS(2832), + [anon_sym_is] = ACTIONS(2832), + [anon_sym_BANGis] = ACTIONS(2830), + [anon_sym_in] = ACTIONS(2832), + [anon_sym_BANGin] = ACTIONS(2830), + [anon_sym_match] = ACTIONS(2832), + [anon_sym_select] = ACTIONS(2832), + [anon_sym_lock] = ACTIONS(2832), + [anon_sym_rlock] = ACTIONS(2832), + [anon_sym_unsafe] = ACTIONS(2832), + [anon_sym_sql] = ACTIONS(2832), + [sym_int_literal] = ACTIONS(2832), + [sym_float_literal] = ACTIONS(2830), + [sym_rune_literal] = ACTIONS(2830), + [sym_pseudo_compile_time_identifier] = ACTIONS(2832), + [anon_sym_shared] = ACTIONS(2832), + [anon_sym_map_LBRACK] = ACTIONS(2830), + [anon_sym_chan] = ACTIONS(2832), + [anon_sym_thread] = ACTIONS(2832), + [anon_sym_atomic] = ACTIONS(2832), + [sym___double_quote] = ACTIONS(2830), + [sym___single_quote] = ACTIONS(2830), + [sym___c_double_quote] = ACTIONS(2830), + [sym___c_single_quote] = ACTIONS(2830), + [sym___r_double_quote] = ACTIONS(2830), + [sym___r_single_quote] = ACTIONS(2830), }, - [1370] = { - [sym_line_comment] = STATE(1370), - [sym_block_comment] = STATE(1370), - [sym_identifier] = ACTIONS(2243), + [1382] = { + [sym_line_comment] = STATE(1382), + [sym_block_comment] = STATE(1382), + [sym_identifier] = ACTIONS(2772), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(2243), - [anon_sym_as] = ACTIONS(2243), - [anon_sym_LBRACE] = ACTIONS(2241), - [anon_sym_COMMA] = ACTIONS(2241), - [anon_sym_RBRACE] = ACTIONS(2241), - [anon_sym_LPAREN] = ACTIONS(2241), - [anon_sym_PIPE] = ACTIONS(2243), - [anon_sym_fn] = ACTIONS(2243), - [anon_sym_PLUS] = ACTIONS(2243), - [anon_sym_DASH] = ACTIONS(2243), - [anon_sym_STAR] = ACTIONS(2241), - [anon_sym_SLASH] = ACTIONS(2243), - [anon_sym_PERCENT] = ACTIONS(2241), - [anon_sym_LT] = ACTIONS(2243), - [anon_sym_GT] = ACTIONS(2243), - [anon_sym_EQ_EQ] = ACTIONS(2241), - [anon_sym_BANG_EQ] = ACTIONS(2241), - [anon_sym_LT_EQ] = ACTIONS(2241), - [anon_sym_GT_EQ] = ACTIONS(2241), - [anon_sym_LBRACK] = ACTIONS(2241), - [anon_sym_RBRACK] = ACTIONS(2241), - [anon_sym_struct] = ACTIONS(2243), - [anon_sym_mut] = ACTIONS(2243), - [anon_sym_COLON] = ACTIONS(2241), - [anon_sym_PLUS_PLUS] = ACTIONS(2241), - [anon_sym_DASH_DASH] = ACTIONS(2241), - [anon_sym_QMARK] = ACTIONS(2243), - [anon_sym_BANG] = ACTIONS(2243), - [anon_sym_go] = ACTIONS(2243), - [anon_sym_spawn] = ACTIONS(2243), - [anon_sym_json_DOTdecode] = ACTIONS(2241), - [anon_sym_LBRACK2] = ACTIONS(2243), - [anon_sym_TILDE] = ACTIONS(2241), - [anon_sym_CARET] = ACTIONS(2241), - [anon_sym_AMP] = ACTIONS(2243), - [anon_sym_LT_DASH] = ACTIONS(2241), - [anon_sym_LT_LT] = ACTIONS(2241), - [anon_sym_GT_GT] = ACTIONS(2243), - [anon_sym_GT_GT_GT] = ACTIONS(2241), - [anon_sym_AMP_CARET] = ACTIONS(2241), - [anon_sym_AMP_AMP] = ACTIONS(2241), - [anon_sym_PIPE_PIPE] = ACTIONS(2241), - [anon_sym_or] = ACTIONS(2243), - [sym_none] = ACTIONS(2243), - [sym_true] = ACTIONS(2243), - [sym_false] = ACTIONS(2243), - [sym_nil] = ACTIONS(2243), - [anon_sym_QMARK_DOT] = ACTIONS(2241), - [anon_sym_POUND_LBRACK] = ACTIONS(2241), - [anon_sym_if] = ACTIONS(2243), - [anon_sym_DOLLARif] = ACTIONS(2243), - [anon_sym_is] = ACTIONS(2243), - [anon_sym_BANGis] = ACTIONS(2241), - [anon_sym_in] = ACTIONS(2243), - [anon_sym_BANGin] = ACTIONS(2241), - [anon_sym_match] = ACTIONS(2243), - [anon_sym_select] = ACTIONS(2243), - [anon_sym_lock] = ACTIONS(2243), - [anon_sym_rlock] = ACTIONS(2243), - [anon_sym_unsafe] = ACTIONS(2243), - [anon_sym_sql] = ACTIONS(2243), - [sym_int_literal] = ACTIONS(2243), - [sym_float_literal] = ACTIONS(2241), - [sym_rune_literal] = ACTIONS(2241), - [sym_pseudo_compile_time_identifier] = ACTIONS(2243), - [anon_sym_shared] = ACTIONS(2243), - [anon_sym_map_LBRACK] = ACTIONS(2241), - [anon_sym_chan] = ACTIONS(2243), - [anon_sym_thread] = ACTIONS(2243), - [anon_sym_atomic] = ACTIONS(2243), - [sym___double_quote] = ACTIONS(2241), - [sym___single_quote] = ACTIONS(2241), - [sym___c_double_quote] = ACTIONS(2241), - [sym___c_single_quote] = ACTIONS(2241), - [sym___r_double_quote] = ACTIONS(2241), - [sym___r_single_quote] = ACTIONS(2241), + [anon_sym_DOT] = ACTIONS(2772), + [anon_sym_as] = ACTIONS(2772), + [anon_sym_LBRACE] = ACTIONS(2770), + [anon_sym_COMMA] = ACTIONS(2770), + [anon_sym_RBRACE] = ACTIONS(2770), + [anon_sym_LPAREN] = ACTIONS(2770), + [anon_sym_PIPE] = ACTIONS(2772), + [anon_sym_fn] = ACTIONS(2772), + [anon_sym_PLUS] = ACTIONS(2772), + [anon_sym_DASH] = ACTIONS(2772), + [anon_sym_STAR] = ACTIONS(2770), + [anon_sym_SLASH] = ACTIONS(2772), + [anon_sym_PERCENT] = ACTIONS(2770), + [anon_sym_LT] = ACTIONS(2772), + [anon_sym_GT] = ACTIONS(2772), + [anon_sym_EQ_EQ] = ACTIONS(2770), + [anon_sym_BANG_EQ] = ACTIONS(2770), + [anon_sym_LT_EQ] = ACTIONS(2770), + [anon_sym_GT_EQ] = ACTIONS(2770), + [anon_sym_LBRACK] = ACTIONS(2770), + [anon_sym_RBRACK] = ACTIONS(2770), + [anon_sym_struct] = ACTIONS(2772), + [anon_sym_mut] = ACTIONS(2772), + [anon_sym_COLON] = ACTIONS(2770), + [anon_sym_PLUS_PLUS] = ACTIONS(2770), + [anon_sym_DASH_DASH] = ACTIONS(2770), + [anon_sym_QMARK] = ACTIONS(2772), + [anon_sym_BANG] = ACTIONS(2772), + [anon_sym_go] = ACTIONS(2772), + [anon_sym_spawn] = ACTIONS(2772), + [anon_sym_json_DOTdecode] = ACTIONS(2770), + [anon_sym_LBRACK2] = ACTIONS(2772), + [anon_sym_TILDE] = ACTIONS(2770), + [anon_sym_CARET] = ACTIONS(2770), + [anon_sym_AMP] = ACTIONS(2772), + [anon_sym_LT_DASH] = ACTIONS(2770), + [anon_sym_LT_LT] = ACTIONS(2770), + [anon_sym_GT_GT] = ACTIONS(2772), + [anon_sym_GT_GT_GT] = ACTIONS(2770), + [anon_sym_AMP_CARET] = ACTIONS(2770), + [anon_sym_AMP_AMP] = ACTIONS(2770), + [anon_sym_PIPE_PIPE] = ACTIONS(2770), + [anon_sym_or] = ACTIONS(2772), + [sym_none] = ACTIONS(2772), + [sym_true] = ACTIONS(2772), + [sym_false] = ACTIONS(2772), + [sym_nil] = ACTIONS(2772), + [anon_sym_QMARK_DOT] = ACTIONS(2770), + [anon_sym_POUND_LBRACK] = ACTIONS(2770), + [anon_sym_if] = ACTIONS(2772), + [anon_sym_DOLLARif] = ACTIONS(2772), + [anon_sym_is] = ACTIONS(2772), + [anon_sym_BANGis] = ACTIONS(2770), + [anon_sym_in] = ACTIONS(2772), + [anon_sym_BANGin] = ACTIONS(2770), + [anon_sym_match] = ACTIONS(2772), + [anon_sym_select] = ACTIONS(2772), + [anon_sym_lock] = ACTIONS(2772), + [anon_sym_rlock] = ACTIONS(2772), + [anon_sym_unsafe] = ACTIONS(2772), + [anon_sym_sql] = ACTIONS(2772), + [sym_int_literal] = ACTIONS(2772), + [sym_float_literal] = ACTIONS(2770), + [sym_rune_literal] = ACTIONS(2770), + [sym_pseudo_compile_time_identifier] = ACTIONS(2772), + [anon_sym_shared] = ACTIONS(2772), + [anon_sym_map_LBRACK] = ACTIONS(2770), + [anon_sym_chan] = ACTIONS(2772), + [anon_sym_thread] = ACTIONS(2772), + [anon_sym_atomic] = ACTIONS(2772), + [sym___double_quote] = ACTIONS(2770), + [sym___single_quote] = ACTIONS(2770), + [sym___c_double_quote] = ACTIONS(2770), + [sym___c_single_quote] = ACTIONS(2770), + [sym___r_double_quote] = ACTIONS(2770), + [sym___r_single_quote] = ACTIONS(2770), }, - [1371] = { - [sym_line_comment] = STATE(1371), - [sym_block_comment] = STATE(1371), - [sym_identifier] = ACTIONS(2281), + [1383] = { + [sym_line_comment] = STATE(1383), + [sym_block_comment] = STATE(1383), + [sym_identifier] = ACTIONS(2778), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(2281), - [anon_sym_as] = ACTIONS(2281), - [anon_sym_LBRACE] = ACTIONS(2279), - [anon_sym_COMMA] = ACTIONS(2279), - [anon_sym_RBRACE] = ACTIONS(2279), - [anon_sym_LPAREN] = ACTIONS(2279), - [anon_sym_PIPE] = ACTIONS(2281), - [anon_sym_fn] = ACTIONS(2281), - [anon_sym_PLUS] = ACTIONS(2281), - [anon_sym_DASH] = ACTIONS(2281), - [anon_sym_STAR] = ACTIONS(2279), - [anon_sym_SLASH] = ACTIONS(2281), - [anon_sym_PERCENT] = ACTIONS(2279), - [anon_sym_LT] = ACTIONS(2281), - [anon_sym_GT] = ACTIONS(2281), - [anon_sym_EQ_EQ] = ACTIONS(2279), - [anon_sym_BANG_EQ] = ACTIONS(2279), - [anon_sym_LT_EQ] = ACTIONS(2279), - [anon_sym_GT_EQ] = ACTIONS(2279), - [anon_sym_LBRACK] = ACTIONS(2279), - [anon_sym_RBRACK] = ACTIONS(2279), - [anon_sym_struct] = ACTIONS(2281), - [anon_sym_mut] = ACTIONS(2281), - [anon_sym_COLON] = ACTIONS(2279), - [anon_sym_PLUS_PLUS] = ACTIONS(2279), - [anon_sym_DASH_DASH] = ACTIONS(2279), - [anon_sym_QMARK] = ACTIONS(2281), - [anon_sym_BANG] = ACTIONS(2281), - [anon_sym_go] = ACTIONS(2281), - [anon_sym_spawn] = ACTIONS(2281), - [anon_sym_json_DOTdecode] = ACTIONS(2279), - [anon_sym_LBRACK2] = ACTIONS(2281), - [anon_sym_TILDE] = ACTIONS(2279), - [anon_sym_CARET] = ACTIONS(2279), - [anon_sym_AMP] = ACTIONS(2281), - [anon_sym_LT_DASH] = ACTIONS(2279), - [anon_sym_LT_LT] = ACTIONS(2279), - [anon_sym_GT_GT] = ACTIONS(2281), - [anon_sym_GT_GT_GT] = ACTIONS(2279), - [anon_sym_AMP_CARET] = ACTIONS(2279), - [anon_sym_AMP_AMP] = ACTIONS(2279), - [anon_sym_PIPE_PIPE] = ACTIONS(2279), - [anon_sym_or] = ACTIONS(2281), - [sym_none] = ACTIONS(2281), - [sym_true] = ACTIONS(2281), - [sym_false] = ACTIONS(2281), - [sym_nil] = ACTIONS(2281), - [anon_sym_QMARK_DOT] = ACTIONS(2279), - [anon_sym_POUND_LBRACK] = ACTIONS(2279), - [anon_sym_if] = ACTIONS(2281), - [anon_sym_DOLLARif] = ACTIONS(2281), - [anon_sym_is] = ACTIONS(2281), - [anon_sym_BANGis] = ACTIONS(2279), - [anon_sym_in] = ACTIONS(2281), - [anon_sym_BANGin] = ACTIONS(2279), - [anon_sym_match] = ACTIONS(2281), - [anon_sym_select] = ACTIONS(2281), - [anon_sym_lock] = ACTIONS(2281), - [anon_sym_rlock] = ACTIONS(2281), - [anon_sym_unsafe] = ACTIONS(2281), - [anon_sym_sql] = ACTIONS(2281), - [sym_int_literal] = ACTIONS(2281), - [sym_float_literal] = ACTIONS(2279), - [sym_rune_literal] = ACTIONS(2279), - [sym_pseudo_compile_time_identifier] = ACTIONS(2281), - [anon_sym_shared] = ACTIONS(2281), - [anon_sym_map_LBRACK] = ACTIONS(2279), - [anon_sym_chan] = ACTIONS(2281), - [anon_sym_thread] = ACTIONS(2281), - [anon_sym_atomic] = ACTIONS(2281), - [sym___double_quote] = ACTIONS(2279), - [sym___single_quote] = ACTIONS(2279), - [sym___c_double_quote] = ACTIONS(2279), - [sym___c_single_quote] = ACTIONS(2279), - [sym___r_double_quote] = ACTIONS(2279), - [sym___r_single_quote] = ACTIONS(2279), + [anon_sym_DOT] = ACTIONS(2778), + [anon_sym_as] = ACTIONS(2778), + [anon_sym_LBRACE] = ACTIONS(2776), + [anon_sym_COMMA] = ACTIONS(2776), + [anon_sym_RBRACE] = ACTIONS(2776), + [anon_sym_LPAREN] = ACTIONS(2776), + [anon_sym_PIPE] = ACTIONS(2778), + [anon_sym_fn] = ACTIONS(2778), + [anon_sym_PLUS] = ACTIONS(2778), + [anon_sym_DASH] = ACTIONS(2778), + [anon_sym_STAR] = ACTIONS(2776), + [anon_sym_SLASH] = ACTIONS(2778), + [anon_sym_PERCENT] = ACTIONS(2776), + [anon_sym_LT] = ACTIONS(2778), + [anon_sym_GT] = ACTIONS(2778), + [anon_sym_EQ_EQ] = ACTIONS(2776), + [anon_sym_BANG_EQ] = ACTIONS(2776), + [anon_sym_LT_EQ] = ACTIONS(2776), + [anon_sym_GT_EQ] = ACTIONS(2776), + [anon_sym_LBRACK] = ACTIONS(2776), + [anon_sym_RBRACK] = ACTIONS(2776), + [anon_sym_struct] = ACTIONS(2778), + [anon_sym_mut] = ACTIONS(2778), + [anon_sym_COLON] = ACTIONS(2776), + [anon_sym_PLUS_PLUS] = ACTIONS(2776), + [anon_sym_DASH_DASH] = ACTIONS(2776), + [anon_sym_QMARK] = ACTIONS(2778), + [anon_sym_BANG] = ACTIONS(2778), + [anon_sym_go] = ACTIONS(2778), + [anon_sym_spawn] = ACTIONS(2778), + [anon_sym_json_DOTdecode] = ACTIONS(2776), + [anon_sym_LBRACK2] = ACTIONS(2778), + [anon_sym_TILDE] = ACTIONS(2776), + [anon_sym_CARET] = ACTIONS(2776), + [anon_sym_AMP] = ACTIONS(2778), + [anon_sym_LT_DASH] = ACTIONS(2776), + [anon_sym_LT_LT] = ACTIONS(2776), + [anon_sym_GT_GT] = ACTIONS(2778), + [anon_sym_GT_GT_GT] = ACTIONS(2776), + [anon_sym_AMP_CARET] = ACTIONS(2776), + [anon_sym_AMP_AMP] = ACTIONS(2776), + [anon_sym_PIPE_PIPE] = ACTIONS(2776), + [anon_sym_or] = ACTIONS(2778), + [sym_none] = ACTIONS(2778), + [sym_true] = ACTIONS(2778), + [sym_false] = ACTIONS(2778), + [sym_nil] = ACTIONS(2778), + [anon_sym_QMARK_DOT] = ACTIONS(2776), + [anon_sym_POUND_LBRACK] = ACTIONS(2776), + [anon_sym_if] = ACTIONS(2778), + [anon_sym_DOLLARif] = ACTIONS(2778), + [anon_sym_is] = ACTIONS(2778), + [anon_sym_BANGis] = ACTIONS(2776), + [anon_sym_in] = ACTIONS(2778), + [anon_sym_BANGin] = ACTIONS(2776), + [anon_sym_match] = ACTIONS(2778), + [anon_sym_select] = ACTIONS(2778), + [anon_sym_lock] = ACTIONS(2778), + [anon_sym_rlock] = ACTIONS(2778), + [anon_sym_unsafe] = ACTIONS(2778), + [anon_sym_sql] = ACTIONS(2778), + [sym_int_literal] = ACTIONS(2778), + [sym_float_literal] = ACTIONS(2776), + [sym_rune_literal] = ACTIONS(2776), + [sym_pseudo_compile_time_identifier] = ACTIONS(2778), + [anon_sym_shared] = ACTIONS(2778), + [anon_sym_map_LBRACK] = ACTIONS(2776), + [anon_sym_chan] = ACTIONS(2778), + [anon_sym_thread] = ACTIONS(2778), + [anon_sym_atomic] = ACTIONS(2778), + [sym___double_quote] = ACTIONS(2776), + [sym___single_quote] = ACTIONS(2776), + [sym___c_double_quote] = ACTIONS(2776), + [sym___c_single_quote] = ACTIONS(2776), + [sym___r_double_quote] = ACTIONS(2776), + [sym___r_single_quote] = ACTIONS(2776), }, - [1372] = { - [sym_line_comment] = STATE(1372), - [sym_block_comment] = STATE(1372), + [1384] = { + [sym_line_comment] = STATE(1384), + [sym_block_comment] = STATE(1384), [sym_identifier] = ACTIONS(2233), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), @@ -170912,1356 +171959,770 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym___r_double_quote] = ACTIONS(2231), [sym___r_single_quote] = ACTIONS(2231), }, - [1373] = { - [sym_line_comment] = STATE(1373), - [sym_block_comment] = STATE(1373), - [sym_identifier] = ACTIONS(2900), - [anon_sym_SLASH_SLASH] = ACTIONS(3), - [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(2900), - [anon_sym_as] = ACTIONS(2900), - [anon_sym_LBRACE] = ACTIONS(2898), - [anon_sym_COMMA] = ACTIONS(2898), - [anon_sym_RBRACE] = ACTIONS(2898), - [anon_sym_LPAREN] = ACTIONS(2898), - [anon_sym_PIPE] = ACTIONS(2900), - [anon_sym_fn] = ACTIONS(2900), - [anon_sym_PLUS] = ACTIONS(2900), - [anon_sym_DASH] = ACTIONS(2900), - [anon_sym_STAR] = ACTIONS(2898), - [anon_sym_SLASH] = ACTIONS(2900), - [anon_sym_PERCENT] = ACTIONS(2898), - [anon_sym_LT] = ACTIONS(2900), - [anon_sym_GT] = ACTIONS(2900), - [anon_sym_EQ_EQ] = ACTIONS(2898), - [anon_sym_BANG_EQ] = ACTIONS(2898), - [anon_sym_LT_EQ] = ACTIONS(2898), - [anon_sym_GT_EQ] = ACTIONS(2898), - [anon_sym_LBRACK] = ACTIONS(2898), - [anon_sym_RBRACK] = ACTIONS(2898), - [anon_sym_struct] = ACTIONS(2900), - [anon_sym_mut] = ACTIONS(2900), - [anon_sym_COLON] = ACTIONS(2898), - [anon_sym_PLUS_PLUS] = ACTIONS(2898), - [anon_sym_DASH_DASH] = ACTIONS(2898), - [anon_sym_QMARK] = ACTIONS(2900), - [anon_sym_BANG] = ACTIONS(2900), - [anon_sym_go] = ACTIONS(2900), - [anon_sym_spawn] = ACTIONS(2900), - [anon_sym_json_DOTdecode] = ACTIONS(2898), - [anon_sym_LBRACK2] = ACTIONS(2900), - [anon_sym_TILDE] = ACTIONS(2898), - [anon_sym_CARET] = ACTIONS(2898), - [anon_sym_AMP] = ACTIONS(2900), - [anon_sym_LT_DASH] = ACTIONS(2898), - [anon_sym_LT_LT] = ACTIONS(2898), - [anon_sym_GT_GT] = ACTIONS(2900), - [anon_sym_GT_GT_GT] = ACTIONS(2898), - [anon_sym_AMP_CARET] = ACTIONS(2898), - [anon_sym_AMP_AMP] = ACTIONS(2898), - [anon_sym_PIPE_PIPE] = ACTIONS(2898), - [anon_sym_or] = ACTIONS(2900), - [sym_none] = ACTIONS(2900), - [sym_true] = ACTIONS(2900), - [sym_false] = ACTIONS(2900), - [sym_nil] = ACTIONS(2900), - [anon_sym_QMARK_DOT] = ACTIONS(2898), - [anon_sym_POUND_LBRACK] = ACTIONS(2898), - [anon_sym_if] = ACTIONS(2900), - [anon_sym_DOLLARif] = ACTIONS(2900), - [anon_sym_is] = ACTIONS(2900), - [anon_sym_BANGis] = ACTIONS(2898), - [anon_sym_in] = ACTIONS(2900), - [anon_sym_BANGin] = ACTIONS(2898), - [anon_sym_match] = ACTIONS(2900), - [anon_sym_select] = ACTIONS(2900), - [anon_sym_lock] = ACTIONS(2900), - [anon_sym_rlock] = ACTIONS(2900), - [anon_sym_unsafe] = ACTIONS(2900), - [anon_sym_sql] = ACTIONS(2900), - [sym_int_literal] = ACTIONS(2900), - [sym_float_literal] = ACTIONS(2898), - [sym_rune_literal] = ACTIONS(2898), - [sym_pseudo_compile_time_identifier] = ACTIONS(2900), - [anon_sym_shared] = ACTIONS(2900), - [anon_sym_map_LBRACK] = ACTIONS(2898), - [anon_sym_chan] = ACTIONS(2900), - [anon_sym_thread] = ACTIONS(2900), - [anon_sym_atomic] = ACTIONS(2900), - [sym___double_quote] = ACTIONS(2898), - [sym___single_quote] = ACTIONS(2898), - [sym___c_double_quote] = ACTIONS(2898), - [sym___c_single_quote] = ACTIONS(2898), - [sym___r_double_quote] = ACTIONS(2898), - [sym___r_single_quote] = ACTIONS(2898), - }, - [1374] = { - [sym_line_comment] = STATE(1374), - [sym_block_comment] = STATE(1374), - [sym_identifier] = ACTIONS(2229), - [anon_sym_SLASH_SLASH] = ACTIONS(3), - [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(2229), - [anon_sym_as] = ACTIONS(2229), - [anon_sym_LBRACE] = ACTIONS(2227), - [anon_sym_COMMA] = ACTIONS(2227), - [anon_sym_RBRACE] = ACTIONS(2227), - [anon_sym_LPAREN] = ACTIONS(2227), - [anon_sym_PIPE] = ACTIONS(2229), - [anon_sym_fn] = ACTIONS(2229), - [anon_sym_PLUS] = ACTIONS(2229), - [anon_sym_DASH] = ACTIONS(2229), - [anon_sym_STAR] = ACTIONS(2227), - [anon_sym_SLASH] = ACTIONS(2229), - [anon_sym_PERCENT] = ACTIONS(2227), - [anon_sym_LT] = ACTIONS(2229), - [anon_sym_GT] = ACTIONS(2229), - [anon_sym_EQ_EQ] = ACTIONS(2227), - [anon_sym_BANG_EQ] = ACTIONS(2227), - [anon_sym_LT_EQ] = ACTIONS(2227), - [anon_sym_GT_EQ] = ACTIONS(2227), - [anon_sym_LBRACK] = ACTIONS(2227), - [anon_sym_RBRACK] = ACTIONS(2227), - [anon_sym_struct] = ACTIONS(2229), - [anon_sym_mut] = ACTIONS(2229), - [anon_sym_COLON] = ACTIONS(2227), - [anon_sym_PLUS_PLUS] = ACTIONS(2227), - [anon_sym_DASH_DASH] = ACTIONS(2227), - [anon_sym_QMARK] = ACTIONS(2229), - [anon_sym_BANG] = ACTIONS(2229), - [anon_sym_go] = ACTIONS(2229), - [anon_sym_spawn] = ACTIONS(2229), - [anon_sym_json_DOTdecode] = ACTIONS(2227), - [anon_sym_LBRACK2] = ACTIONS(2229), - [anon_sym_TILDE] = ACTIONS(2227), - [anon_sym_CARET] = ACTIONS(2227), - [anon_sym_AMP] = ACTIONS(2229), - [anon_sym_LT_DASH] = ACTIONS(2227), - [anon_sym_LT_LT] = ACTIONS(2227), - [anon_sym_GT_GT] = ACTIONS(2229), - [anon_sym_GT_GT_GT] = ACTIONS(2227), - [anon_sym_AMP_CARET] = ACTIONS(2227), - [anon_sym_AMP_AMP] = ACTIONS(2227), - [anon_sym_PIPE_PIPE] = ACTIONS(2227), - [anon_sym_or] = ACTIONS(2229), - [sym_none] = ACTIONS(2229), - [sym_true] = ACTIONS(2229), - [sym_false] = ACTIONS(2229), - [sym_nil] = ACTIONS(2229), - [anon_sym_QMARK_DOT] = ACTIONS(2227), - [anon_sym_POUND_LBRACK] = ACTIONS(2227), - [anon_sym_if] = ACTIONS(2229), - [anon_sym_DOLLARif] = ACTIONS(2229), - [anon_sym_is] = ACTIONS(2229), - [anon_sym_BANGis] = ACTIONS(2227), - [anon_sym_in] = ACTIONS(2229), - [anon_sym_BANGin] = ACTIONS(2227), - [anon_sym_match] = ACTIONS(2229), - [anon_sym_select] = ACTIONS(2229), - [anon_sym_lock] = ACTIONS(2229), - [anon_sym_rlock] = ACTIONS(2229), - [anon_sym_unsafe] = ACTIONS(2229), - [anon_sym_sql] = ACTIONS(2229), - [sym_int_literal] = ACTIONS(2229), - [sym_float_literal] = ACTIONS(2227), - [sym_rune_literal] = ACTIONS(2227), - [sym_pseudo_compile_time_identifier] = ACTIONS(2229), - [anon_sym_shared] = ACTIONS(2229), - [anon_sym_map_LBRACK] = ACTIONS(2227), - [anon_sym_chan] = ACTIONS(2229), - [anon_sym_thread] = ACTIONS(2229), - [anon_sym_atomic] = ACTIONS(2229), - [sym___double_quote] = ACTIONS(2227), - [sym___single_quote] = ACTIONS(2227), - [sym___c_double_quote] = ACTIONS(2227), - [sym___c_single_quote] = ACTIONS(2227), - [sym___r_double_quote] = ACTIONS(2227), - [sym___r_single_quote] = ACTIONS(2227), - }, - [1375] = { - [sym_line_comment] = STATE(1375), - [sym_block_comment] = STATE(1375), - [sym_identifier] = ACTIONS(2908), - [anon_sym_SLASH_SLASH] = ACTIONS(3), - [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(2908), - [anon_sym_as] = ACTIONS(2908), - [anon_sym_LBRACE] = ACTIONS(2906), - [anon_sym_COMMA] = ACTIONS(2906), - [anon_sym_RBRACE] = ACTIONS(2906), - [anon_sym_LPAREN] = ACTIONS(2906), - [anon_sym_PIPE] = ACTIONS(2908), - [anon_sym_fn] = ACTIONS(2908), - [anon_sym_PLUS] = ACTIONS(2908), - [anon_sym_DASH] = ACTIONS(2908), - [anon_sym_STAR] = ACTIONS(2906), - [anon_sym_SLASH] = ACTIONS(2908), - [anon_sym_PERCENT] = ACTIONS(2906), - [anon_sym_LT] = ACTIONS(2908), - [anon_sym_GT] = ACTIONS(2908), - [anon_sym_EQ_EQ] = ACTIONS(2906), - [anon_sym_BANG_EQ] = ACTIONS(2906), - [anon_sym_LT_EQ] = ACTIONS(2906), - [anon_sym_GT_EQ] = ACTIONS(2906), - [anon_sym_LBRACK] = ACTIONS(2906), - [anon_sym_RBRACK] = ACTIONS(2906), - [anon_sym_struct] = ACTIONS(2908), - [anon_sym_mut] = ACTIONS(2908), - [anon_sym_COLON] = ACTIONS(2906), - [anon_sym_PLUS_PLUS] = ACTIONS(2906), - [anon_sym_DASH_DASH] = ACTIONS(2906), - [anon_sym_QMARK] = ACTIONS(2908), - [anon_sym_BANG] = ACTIONS(2908), - [anon_sym_go] = ACTIONS(2908), - [anon_sym_spawn] = ACTIONS(2908), - [anon_sym_json_DOTdecode] = ACTIONS(2906), - [anon_sym_LBRACK2] = ACTIONS(2908), - [anon_sym_TILDE] = ACTIONS(2906), - [anon_sym_CARET] = ACTIONS(2906), - [anon_sym_AMP] = ACTIONS(2908), - [anon_sym_LT_DASH] = ACTIONS(2906), - [anon_sym_LT_LT] = ACTIONS(2906), - [anon_sym_GT_GT] = ACTIONS(2908), - [anon_sym_GT_GT_GT] = ACTIONS(2906), - [anon_sym_AMP_CARET] = ACTIONS(2906), - [anon_sym_AMP_AMP] = ACTIONS(2906), - [anon_sym_PIPE_PIPE] = ACTIONS(2906), - [anon_sym_or] = ACTIONS(2908), - [sym_none] = ACTIONS(2908), - [sym_true] = ACTIONS(2908), - [sym_false] = ACTIONS(2908), - [sym_nil] = ACTIONS(2908), - [anon_sym_QMARK_DOT] = ACTIONS(2906), - [anon_sym_POUND_LBRACK] = ACTIONS(2906), - [anon_sym_if] = ACTIONS(2908), - [anon_sym_DOLLARif] = ACTIONS(2908), - [anon_sym_is] = ACTIONS(2908), - [anon_sym_BANGis] = ACTIONS(2906), - [anon_sym_in] = ACTIONS(2908), - [anon_sym_BANGin] = ACTIONS(2906), - [anon_sym_match] = ACTIONS(2908), - [anon_sym_select] = ACTIONS(2908), - [anon_sym_lock] = ACTIONS(2908), - [anon_sym_rlock] = ACTIONS(2908), - [anon_sym_unsafe] = ACTIONS(2908), - [anon_sym_sql] = ACTIONS(2908), - [sym_int_literal] = ACTIONS(2908), - [sym_float_literal] = ACTIONS(2906), - [sym_rune_literal] = ACTIONS(2906), - [sym_pseudo_compile_time_identifier] = ACTIONS(2908), - [anon_sym_shared] = ACTIONS(2908), - [anon_sym_map_LBRACK] = ACTIONS(2906), - [anon_sym_chan] = ACTIONS(2908), - [anon_sym_thread] = ACTIONS(2908), - [anon_sym_atomic] = ACTIONS(2908), - [sym___double_quote] = ACTIONS(2906), - [sym___single_quote] = ACTIONS(2906), - [sym___c_double_quote] = ACTIONS(2906), - [sym___c_single_quote] = ACTIONS(2906), - [sym___r_double_quote] = ACTIONS(2906), - [sym___r_single_quote] = ACTIONS(2906), - }, - [1376] = { - [sym_line_comment] = STATE(1376), - [sym_block_comment] = STATE(1376), - [sym_identifier] = ACTIONS(2904), - [anon_sym_SLASH_SLASH] = ACTIONS(3), - [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(2904), - [anon_sym_as] = ACTIONS(2904), - [anon_sym_LBRACE] = ACTIONS(2902), - [anon_sym_COMMA] = ACTIONS(2902), - [anon_sym_RBRACE] = ACTIONS(2902), - [anon_sym_LPAREN] = ACTIONS(2902), - [anon_sym_PIPE] = ACTIONS(2904), - [anon_sym_fn] = ACTIONS(2904), - [anon_sym_PLUS] = ACTIONS(2904), - [anon_sym_DASH] = ACTIONS(2904), - [anon_sym_STAR] = ACTIONS(2902), - [anon_sym_SLASH] = ACTIONS(2904), - [anon_sym_PERCENT] = ACTIONS(2902), - [anon_sym_LT] = ACTIONS(2904), - [anon_sym_GT] = ACTIONS(2904), - [anon_sym_EQ_EQ] = ACTIONS(2902), - [anon_sym_BANG_EQ] = ACTIONS(2902), - [anon_sym_LT_EQ] = ACTIONS(2902), - [anon_sym_GT_EQ] = ACTIONS(2902), - [anon_sym_LBRACK] = ACTIONS(2902), - [anon_sym_RBRACK] = ACTIONS(2902), - [anon_sym_struct] = ACTIONS(2904), - [anon_sym_mut] = ACTIONS(2904), - [anon_sym_COLON] = ACTIONS(2902), - [anon_sym_PLUS_PLUS] = ACTIONS(2902), - [anon_sym_DASH_DASH] = ACTIONS(2902), - [anon_sym_QMARK] = ACTIONS(2904), - [anon_sym_BANG] = ACTIONS(2904), - [anon_sym_go] = ACTIONS(2904), - [anon_sym_spawn] = ACTIONS(2904), - [anon_sym_json_DOTdecode] = ACTIONS(2902), - [anon_sym_LBRACK2] = ACTIONS(2904), - [anon_sym_TILDE] = ACTIONS(2902), - [anon_sym_CARET] = ACTIONS(2902), - [anon_sym_AMP] = ACTIONS(2904), - [anon_sym_LT_DASH] = ACTIONS(2902), - [anon_sym_LT_LT] = ACTIONS(2902), - [anon_sym_GT_GT] = ACTIONS(2904), - [anon_sym_GT_GT_GT] = ACTIONS(2902), - [anon_sym_AMP_CARET] = ACTIONS(2902), - [anon_sym_AMP_AMP] = ACTIONS(2902), - [anon_sym_PIPE_PIPE] = ACTIONS(2902), - [anon_sym_or] = ACTIONS(2904), - [sym_none] = ACTIONS(2904), - [sym_true] = ACTIONS(2904), - [sym_false] = ACTIONS(2904), - [sym_nil] = ACTIONS(2904), - [anon_sym_QMARK_DOT] = ACTIONS(2902), - [anon_sym_POUND_LBRACK] = ACTIONS(2902), - [anon_sym_if] = ACTIONS(2904), - [anon_sym_DOLLARif] = ACTIONS(2904), - [anon_sym_is] = ACTIONS(2904), - [anon_sym_BANGis] = ACTIONS(2902), - [anon_sym_in] = ACTIONS(2904), - [anon_sym_BANGin] = ACTIONS(2902), - [anon_sym_match] = ACTIONS(2904), - [anon_sym_select] = ACTIONS(2904), - [anon_sym_lock] = ACTIONS(2904), - [anon_sym_rlock] = ACTIONS(2904), - [anon_sym_unsafe] = ACTIONS(2904), - [anon_sym_sql] = ACTIONS(2904), - [sym_int_literal] = ACTIONS(2904), - [sym_float_literal] = ACTIONS(2902), - [sym_rune_literal] = ACTIONS(2902), - [sym_pseudo_compile_time_identifier] = ACTIONS(2904), - [anon_sym_shared] = ACTIONS(2904), - [anon_sym_map_LBRACK] = ACTIONS(2902), - [anon_sym_chan] = ACTIONS(2904), - [anon_sym_thread] = ACTIONS(2904), - [anon_sym_atomic] = ACTIONS(2904), - [sym___double_quote] = ACTIONS(2902), - [sym___single_quote] = ACTIONS(2902), - [sym___c_double_quote] = ACTIONS(2902), - [sym___c_single_quote] = ACTIONS(2902), - [sym___r_double_quote] = ACTIONS(2902), - [sym___r_single_quote] = ACTIONS(2902), - }, - [1377] = { - [sym_line_comment] = STATE(1377), - [sym_block_comment] = STATE(1377), - [sym_identifier] = ACTIONS(2872), - [anon_sym_SLASH_SLASH] = ACTIONS(3), - [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(2872), - [anon_sym_as] = ACTIONS(2872), - [anon_sym_LBRACE] = ACTIONS(2870), - [anon_sym_COMMA] = ACTIONS(2870), - [anon_sym_RBRACE] = ACTIONS(2870), - [anon_sym_LPAREN] = ACTIONS(2870), - [anon_sym_PIPE] = ACTIONS(2872), - [anon_sym_fn] = ACTIONS(2872), - [anon_sym_PLUS] = ACTIONS(2872), - [anon_sym_DASH] = ACTIONS(2872), - [anon_sym_STAR] = ACTIONS(2870), - [anon_sym_SLASH] = ACTIONS(2872), - [anon_sym_PERCENT] = ACTIONS(2870), - [anon_sym_LT] = ACTIONS(2872), - [anon_sym_GT] = ACTIONS(2872), - [anon_sym_EQ_EQ] = ACTIONS(2870), - [anon_sym_BANG_EQ] = ACTIONS(2870), - [anon_sym_LT_EQ] = ACTIONS(2870), - [anon_sym_GT_EQ] = ACTIONS(2870), - [anon_sym_LBRACK] = ACTIONS(2870), - [anon_sym_RBRACK] = ACTIONS(2870), - [anon_sym_struct] = ACTIONS(2872), - [anon_sym_mut] = ACTIONS(2872), - [anon_sym_COLON] = ACTIONS(2870), - [anon_sym_PLUS_PLUS] = ACTIONS(2870), - [anon_sym_DASH_DASH] = ACTIONS(2870), - [anon_sym_QMARK] = ACTIONS(2872), - [anon_sym_BANG] = ACTIONS(2872), - [anon_sym_go] = ACTIONS(2872), - [anon_sym_spawn] = ACTIONS(2872), - [anon_sym_json_DOTdecode] = ACTIONS(2870), - [anon_sym_LBRACK2] = ACTIONS(2872), - [anon_sym_TILDE] = ACTIONS(2870), - [anon_sym_CARET] = ACTIONS(2870), - [anon_sym_AMP] = ACTIONS(2872), - [anon_sym_LT_DASH] = ACTIONS(2870), - [anon_sym_LT_LT] = ACTIONS(2870), - [anon_sym_GT_GT] = ACTIONS(2872), - [anon_sym_GT_GT_GT] = ACTIONS(2870), - [anon_sym_AMP_CARET] = ACTIONS(2870), - [anon_sym_AMP_AMP] = ACTIONS(2870), - [anon_sym_PIPE_PIPE] = ACTIONS(2870), - [anon_sym_or] = ACTIONS(2872), - [sym_none] = ACTIONS(2872), - [sym_true] = ACTIONS(2872), - [sym_false] = ACTIONS(2872), - [sym_nil] = ACTIONS(2872), - [anon_sym_QMARK_DOT] = ACTIONS(2870), - [anon_sym_POUND_LBRACK] = ACTIONS(2870), - [anon_sym_if] = ACTIONS(2872), - [anon_sym_DOLLARif] = ACTIONS(2872), - [anon_sym_is] = ACTIONS(2872), - [anon_sym_BANGis] = ACTIONS(2870), - [anon_sym_in] = ACTIONS(2872), - [anon_sym_BANGin] = ACTIONS(2870), - [anon_sym_match] = ACTIONS(2872), - [anon_sym_select] = ACTIONS(2872), - [anon_sym_lock] = ACTIONS(2872), - [anon_sym_rlock] = ACTIONS(2872), - [anon_sym_unsafe] = ACTIONS(2872), - [anon_sym_sql] = ACTIONS(2872), - [sym_int_literal] = ACTIONS(2872), - [sym_float_literal] = ACTIONS(2870), - [sym_rune_literal] = ACTIONS(2870), - [sym_pseudo_compile_time_identifier] = ACTIONS(2872), - [anon_sym_shared] = ACTIONS(2872), - [anon_sym_map_LBRACK] = ACTIONS(2870), - [anon_sym_chan] = ACTIONS(2872), - [anon_sym_thread] = ACTIONS(2872), - [anon_sym_atomic] = ACTIONS(2872), - [sym___double_quote] = ACTIONS(2870), - [sym___single_quote] = ACTIONS(2870), - [sym___c_double_quote] = ACTIONS(2870), - [sym___c_single_quote] = ACTIONS(2870), - [sym___r_double_quote] = ACTIONS(2870), - [sym___r_single_quote] = ACTIONS(2870), - }, - [1378] = { - [sym_line_comment] = STATE(1378), - [sym_block_comment] = STATE(1378), - [sym_identifier] = ACTIONS(2790), - [anon_sym_SLASH_SLASH] = ACTIONS(3), - [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(2790), - [anon_sym_as] = ACTIONS(2790), - [anon_sym_LBRACE] = ACTIONS(2788), - [anon_sym_COMMA] = ACTIONS(2788), - [anon_sym_RBRACE] = ACTIONS(2788), - [anon_sym_LPAREN] = ACTIONS(2788), - [anon_sym_PIPE] = ACTIONS(2790), - [anon_sym_fn] = ACTIONS(2790), - [anon_sym_PLUS] = ACTIONS(2790), - [anon_sym_DASH] = ACTIONS(2790), - [anon_sym_STAR] = ACTIONS(2788), - [anon_sym_SLASH] = ACTIONS(2790), - [anon_sym_PERCENT] = ACTIONS(2788), - [anon_sym_LT] = ACTIONS(2790), - [anon_sym_GT] = ACTIONS(2790), - [anon_sym_EQ_EQ] = ACTIONS(2788), - [anon_sym_BANG_EQ] = ACTIONS(2788), - [anon_sym_LT_EQ] = ACTIONS(2788), - [anon_sym_GT_EQ] = ACTIONS(2788), - [anon_sym_LBRACK] = ACTIONS(2788), - [anon_sym_RBRACK] = ACTIONS(2788), - [anon_sym_struct] = ACTIONS(2790), - [anon_sym_mut] = ACTIONS(2790), - [anon_sym_COLON] = ACTIONS(2788), - [anon_sym_PLUS_PLUS] = ACTIONS(2788), - [anon_sym_DASH_DASH] = ACTIONS(2788), - [anon_sym_QMARK] = ACTIONS(2790), - [anon_sym_BANG] = ACTIONS(2790), - [anon_sym_go] = ACTIONS(2790), - [anon_sym_spawn] = ACTIONS(2790), - [anon_sym_json_DOTdecode] = ACTIONS(2788), - [anon_sym_LBRACK2] = ACTIONS(2790), - [anon_sym_TILDE] = ACTIONS(2788), - [anon_sym_CARET] = ACTIONS(2788), - [anon_sym_AMP] = ACTIONS(2790), - [anon_sym_LT_DASH] = ACTIONS(2788), - [anon_sym_LT_LT] = ACTIONS(2788), - [anon_sym_GT_GT] = ACTIONS(2790), - [anon_sym_GT_GT_GT] = ACTIONS(2788), - [anon_sym_AMP_CARET] = ACTIONS(2788), - [anon_sym_AMP_AMP] = ACTIONS(2788), - [anon_sym_PIPE_PIPE] = ACTIONS(2788), - [anon_sym_or] = ACTIONS(2790), - [sym_none] = ACTIONS(2790), - [sym_true] = ACTIONS(2790), - [sym_false] = ACTIONS(2790), - [sym_nil] = ACTIONS(2790), - [anon_sym_QMARK_DOT] = ACTIONS(2788), - [anon_sym_POUND_LBRACK] = ACTIONS(2788), - [anon_sym_if] = ACTIONS(2790), - [anon_sym_DOLLARif] = ACTIONS(2790), - [anon_sym_is] = ACTIONS(2790), - [anon_sym_BANGis] = ACTIONS(2788), - [anon_sym_in] = ACTIONS(2790), - [anon_sym_BANGin] = ACTIONS(2788), - [anon_sym_match] = ACTIONS(2790), - [anon_sym_select] = ACTIONS(2790), - [anon_sym_lock] = ACTIONS(2790), - [anon_sym_rlock] = ACTIONS(2790), - [anon_sym_unsafe] = ACTIONS(2790), - [anon_sym_sql] = ACTIONS(2790), - [sym_int_literal] = ACTIONS(2790), - [sym_float_literal] = ACTIONS(2788), - [sym_rune_literal] = ACTIONS(2788), - [sym_pseudo_compile_time_identifier] = ACTIONS(2790), - [anon_sym_shared] = ACTIONS(2790), - [anon_sym_map_LBRACK] = ACTIONS(2788), - [anon_sym_chan] = ACTIONS(2790), - [anon_sym_thread] = ACTIONS(2790), - [anon_sym_atomic] = ACTIONS(2790), - [sym___double_quote] = ACTIONS(2788), - [sym___single_quote] = ACTIONS(2788), - [sym___c_double_quote] = ACTIONS(2788), - [sym___c_single_quote] = ACTIONS(2788), - [sym___r_double_quote] = ACTIONS(2788), - [sym___r_single_quote] = ACTIONS(2788), - }, - [1379] = { - [sym_line_comment] = STATE(1379), - [sym_block_comment] = STATE(1379), - [sym_identifier] = ACTIONS(2677), - [anon_sym_SLASH_SLASH] = ACTIONS(3), - [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(2677), - [anon_sym_as] = ACTIONS(2677), - [anon_sym_LBRACE] = ACTIONS(2675), - [anon_sym_COMMA] = ACTIONS(2675), - [anon_sym_RBRACE] = ACTIONS(2675), - [anon_sym_LPAREN] = ACTIONS(2675), - [anon_sym_PIPE] = ACTIONS(2677), - [anon_sym_fn] = ACTIONS(2677), - [anon_sym_PLUS] = ACTIONS(2677), - [anon_sym_DASH] = ACTIONS(2677), - [anon_sym_STAR] = ACTIONS(2675), - [anon_sym_SLASH] = ACTIONS(2677), - [anon_sym_PERCENT] = ACTIONS(2675), - [anon_sym_LT] = ACTIONS(2677), - [anon_sym_GT] = ACTIONS(2677), - [anon_sym_EQ_EQ] = ACTIONS(2675), - [anon_sym_BANG_EQ] = ACTIONS(2675), - [anon_sym_LT_EQ] = ACTIONS(2675), - [anon_sym_GT_EQ] = ACTIONS(2675), - [anon_sym_LBRACK] = ACTIONS(2675), - [anon_sym_RBRACK] = ACTIONS(2675), - [anon_sym_struct] = ACTIONS(2677), - [anon_sym_mut] = ACTIONS(2677), - [anon_sym_COLON] = ACTIONS(2675), - [anon_sym_PLUS_PLUS] = ACTIONS(2675), - [anon_sym_DASH_DASH] = ACTIONS(2675), - [anon_sym_QMARK] = ACTIONS(2677), - [anon_sym_BANG] = ACTIONS(2677), - [anon_sym_go] = ACTIONS(2677), - [anon_sym_spawn] = ACTIONS(2677), - [anon_sym_json_DOTdecode] = ACTIONS(2675), - [anon_sym_LBRACK2] = ACTIONS(2677), - [anon_sym_TILDE] = ACTIONS(2675), - [anon_sym_CARET] = ACTIONS(2675), - [anon_sym_AMP] = ACTIONS(2677), - [anon_sym_LT_DASH] = ACTIONS(2675), - [anon_sym_LT_LT] = ACTIONS(2675), - [anon_sym_GT_GT] = ACTIONS(2677), - [anon_sym_GT_GT_GT] = ACTIONS(2675), - [anon_sym_AMP_CARET] = ACTIONS(2675), - [anon_sym_AMP_AMP] = ACTIONS(2675), - [anon_sym_PIPE_PIPE] = ACTIONS(2675), - [anon_sym_or] = ACTIONS(2677), - [sym_none] = ACTIONS(2677), - [sym_true] = ACTIONS(2677), - [sym_false] = ACTIONS(2677), - [sym_nil] = ACTIONS(2677), - [anon_sym_QMARK_DOT] = ACTIONS(2675), - [anon_sym_POUND_LBRACK] = ACTIONS(2675), - [anon_sym_if] = ACTIONS(2677), - [anon_sym_DOLLARif] = ACTIONS(2677), - [anon_sym_is] = ACTIONS(2677), - [anon_sym_BANGis] = ACTIONS(2675), - [anon_sym_in] = ACTIONS(2677), - [anon_sym_BANGin] = ACTIONS(2675), - [anon_sym_match] = ACTIONS(2677), - [anon_sym_select] = ACTIONS(2677), - [anon_sym_lock] = ACTIONS(2677), - [anon_sym_rlock] = ACTIONS(2677), - [anon_sym_unsafe] = ACTIONS(2677), - [anon_sym_sql] = ACTIONS(2677), - [sym_int_literal] = ACTIONS(2677), - [sym_float_literal] = ACTIONS(2675), - [sym_rune_literal] = ACTIONS(2675), - [sym_pseudo_compile_time_identifier] = ACTIONS(2677), - [anon_sym_shared] = ACTIONS(2677), - [anon_sym_map_LBRACK] = ACTIONS(2675), - [anon_sym_chan] = ACTIONS(2677), - [anon_sym_thread] = ACTIONS(2677), - [anon_sym_atomic] = ACTIONS(2677), - [sym___double_quote] = ACTIONS(2675), - [sym___single_quote] = ACTIONS(2675), - [sym___c_double_quote] = ACTIONS(2675), - [sym___c_single_quote] = ACTIONS(2675), - [sym___r_double_quote] = ACTIONS(2675), - [sym___r_single_quote] = ACTIONS(2675), - }, - [1380] = { - [sym_line_comment] = STATE(1380), - [sym_block_comment] = STATE(1380), - [sym_identifier] = ACTIONS(2659), - [anon_sym_SLASH_SLASH] = ACTIONS(3), - [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(2659), - [anon_sym_as] = ACTIONS(2659), - [anon_sym_LBRACE] = ACTIONS(2657), - [anon_sym_COMMA] = ACTIONS(2657), - [anon_sym_RBRACE] = ACTIONS(2657), - [anon_sym_LPAREN] = ACTIONS(2657), - [anon_sym_PIPE] = ACTIONS(2659), - [anon_sym_fn] = ACTIONS(2659), - [anon_sym_PLUS] = ACTIONS(2659), - [anon_sym_DASH] = ACTIONS(2659), - [anon_sym_STAR] = ACTIONS(2657), - [anon_sym_SLASH] = ACTIONS(2659), - [anon_sym_PERCENT] = ACTIONS(2657), - [anon_sym_LT] = ACTIONS(2659), - [anon_sym_GT] = ACTIONS(2659), - [anon_sym_EQ_EQ] = ACTIONS(2657), - [anon_sym_BANG_EQ] = ACTIONS(2657), - [anon_sym_LT_EQ] = ACTIONS(2657), - [anon_sym_GT_EQ] = ACTIONS(2657), - [anon_sym_LBRACK] = ACTIONS(2657), - [anon_sym_RBRACK] = ACTIONS(2657), - [anon_sym_struct] = ACTIONS(2659), - [anon_sym_mut] = ACTIONS(2659), - [anon_sym_COLON] = ACTIONS(2657), - [anon_sym_PLUS_PLUS] = ACTIONS(2657), - [anon_sym_DASH_DASH] = ACTIONS(2657), - [anon_sym_QMARK] = ACTIONS(2659), - [anon_sym_BANG] = ACTIONS(2659), - [anon_sym_go] = ACTIONS(2659), - [anon_sym_spawn] = ACTIONS(2659), - [anon_sym_json_DOTdecode] = ACTIONS(2657), - [anon_sym_LBRACK2] = ACTIONS(2659), - [anon_sym_TILDE] = ACTIONS(2657), - [anon_sym_CARET] = ACTIONS(2657), - [anon_sym_AMP] = ACTIONS(2659), - [anon_sym_LT_DASH] = ACTIONS(2657), - [anon_sym_LT_LT] = ACTIONS(2657), - [anon_sym_GT_GT] = ACTIONS(2659), - [anon_sym_GT_GT_GT] = ACTIONS(2657), - [anon_sym_AMP_CARET] = ACTIONS(2657), - [anon_sym_AMP_AMP] = ACTIONS(2657), - [anon_sym_PIPE_PIPE] = ACTIONS(2657), - [anon_sym_or] = ACTIONS(2659), - [sym_none] = ACTIONS(2659), - [sym_true] = ACTIONS(2659), - [sym_false] = ACTIONS(2659), - [sym_nil] = ACTIONS(2659), - [anon_sym_QMARK_DOT] = ACTIONS(2657), - [anon_sym_POUND_LBRACK] = ACTIONS(2657), - [anon_sym_if] = ACTIONS(2659), - [anon_sym_DOLLARif] = ACTIONS(2659), - [anon_sym_is] = ACTIONS(2659), - [anon_sym_BANGis] = ACTIONS(2657), - [anon_sym_in] = ACTIONS(2659), - [anon_sym_BANGin] = ACTIONS(2657), - [anon_sym_match] = ACTIONS(2659), - [anon_sym_select] = ACTIONS(2659), - [anon_sym_lock] = ACTIONS(2659), - [anon_sym_rlock] = ACTIONS(2659), - [anon_sym_unsafe] = ACTIONS(2659), - [anon_sym_sql] = ACTIONS(2659), - [sym_int_literal] = ACTIONS(2659), - [sym_float_literal] = ACTIONS(2657), - [sym_rune_literal] = ACTIONS(2657), - [sym_pseudo_compile_time_identifier] = ACTIONS(2659), - [anon_sym_shared] = ACTIONS(2659), - [anon_sym_map_LBRACK] = ACTIONS(2657), - [anon_sym_chan] = ACTIONS(2659), - [anon_sym_thread] = ACTIONS(2659), - [anon_sym_atomic] = ACTIONS(2659), - [sym___double_quote] = ACTIONS(2657), - [sym___single_quote] = ACTIONS(2657), - [sym___c_double_quote] = ACTIONS(2657), - [sym___c_single_quote] = ACTIONS(2657), - [sym___r_double_quote] = ACTIONS(2657), - [sym___r_single_quote] = ACTIONS(2657), - }, - [1381] = { - [sym_line_comment] = STATE(1381), - [sym_block_comment] = STATE(1381), - [sym_identifier] = ACTIONS(2651), - [anon_sym_SLASH_SLASH] = ACTIONS(3), - [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(2651), - [anon_sym_as] = ACTIONS(2651), - [anon_sym_LBRACE] = ACTIONS(2649), - [anon_sym_COMMA] = ACTIONS(2649), - [anon_sym_RBRACE] = ACTIONS(2649), - [anon_sym_LPAREN] = ACTIONS(2649), - [anon_sym_PIPE] = ACTIONS(2651), - [anon_sym_fn] = ACTIONS(2651), - [anon_sym_PLUS] = ACTIONS(2651), - [anon_sym_DASH] = ACTIONS(2651), - [anon_sym_STAR] = ACTIONS(2649), - [anon_sym_SLASH] = ACTIONS(2651), - [anon_sym_PERCENT] = ACTIONS(2649), - [anon_sym_LT] = ACTIONS(2651), - [anon_sym_GT] = ACTIONS(2651), - [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(2649), - [anon_sym_RBRACK] = ACTIONS(2649), - [anon_sym_struct] = ACTIONS(2651), - [anon_sym_mut] = ACTIONS(2651), - [anon_sym_COLON] = ACTIONS(2649), - [anon_sym_PLUS_PLUS] = ACTIONS(2649), - [anon_sym_DASH_DASH] = ACTIONS(2649), - [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(2649), - [anon_sym_LBRACK2] = ACTIONS(2651), - [anon_sym_TILDE] = ACTIONS(2649), - [anon_sym_CARET] = ACTIONS(2649), - [anon_sym_AMP] = ACTIONS(2651), - [anon_sym_LT_DASH] = ACTIONS(2649), - [anon_sym_LT_LT] = ACTIONS(2649), - [anon_sym_GT_GT] = ACTIONS(2651), - [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(2651), - [sym_none] = ACTIONS(2651), - [sym_true] = ACTIONS(2651), - [sym_false] = ACTIONS(2651), - [sym_nil] = ACTIONS(2651), - [anon_sym_QMARK_DOT] = ACTIONS(2649), - [anon_sym_POUND_LBRACK] = ACTIONS(2649), - [anon_sym_if] = ACTIONS(2651), - [anon_sym_DOLLARif] = ACTIONS(2651), - [anon_sym_is] = ACTIONS(2651), - [anon_sym_BANGis] = ACTIONS(2649), - [anon_sym_in] = ACTIONS(2651), - [anon_sym_BANGin] = ACTIONS(2649), - [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(2649), - [sym_rune_literal] = ACTIONS(2649), - [sym_pseudo_compile_time_identifier] = ACTIONS(2651), - [anon_sym_shared] = ACTIONS(2651), - [anon_sym_map_LBRACK] = ACTIONS(2649), - [anon_sym_chan] = ACTIONS(2651), - [anon_sym_thread] = ACTIONS(2651), - [anon_sym_atomic] = ACTIONS(2651), - [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), - }, - [1382] = { - [sym_line_comment] = STATE(1382), - [sym_block_comment] = STATE(1382), - [sym_identifier] = ACTIONS(2525), - [anon_sym_SLASH_SLASH] = ACTIONS(3), - [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(2525), - [anon_sym_as] = ACTIONS(2525), - [anon_sym_LBRACE] = ACTIONS(2523), - [anon_sym_COMMA] = ACTIONS(2523), - [anon_sym_RBRACE] = ACTIONS(2523), - [anon_sym_LPAREN] = ACTIONS(2523), - [anon_sym_PIPE] = ACTIONS(2525), - [anon_sym_fn] = ACTIONS(2525), - [anon_sym_PLUS] = ACTIONS(2525), - [anon_sym_DASH] = ACTIONS(2525), - [anon_sym_STAR] = ACTIONS(2523), - [anon_sym_SLASH] = ACTIONS(2525), - [anon_sym_PERCENT] = ACTIONS(2523), - [anon_sym_LT] = ACTIONS(2525), - [anon_sym_GT] = ACTIONS(2525), - [anon_sym_EQ_EQ] = ACTIONS(2523), - [anon_sym_BANG_EQ] = ACTIONS(2523), - [anon_sym_LT_EQ] = ACTIONS(2523), - [anon_sym_GT_EQ] = ACTIONS(2523), - [anon_sym_LBRACK] = ACTIONS(2523), - [anon_sym_RBRACK] = ACTIONS(2523), - [anon_sym_struct] = ACTIONS(2525), - [anon_sym_mut] = ACTIONS(2525), - [anon_sym_COLON] = ACTIONS(2523), - [anon_sym_PLUS_PLUS] = ACTIONS(2523), - [anon_sym_DASH_DASH] = ACTIONS(2523), - [anon_sym_QMARK] = ACTIONS(2525), - [anon_sym_BANG] = ACTIONS(3905), - [anon_sym_go] = ACTIONS(2525), - [anon_sym_spawn] = ACTIONS(2525), - [anon_sym_json_DOTdecode] = ACTIONS(2523), - [anon_sym_LBRACK2] = ACTIONS(2525), - [anon_sym_TILDE] = ACTIONS(2523), - [anon_sym_CARET] = ACTIONS(2523), - [anon_sym_AMP] = ACTIONS(2525), - [anon_sym_LT_DASH] = ACTIONS(2523), - [anon_sym_LT_LT] = ACTIONS(2523), - [anon_sym_GT_GT] = ACTIONS(2525), - [anon_sym_GT_GT_GT] = ACTIONS(2523), - [anon_sym_AMP_CARET] = ACTIONS(2523), - [anon_sym_AMP_AMP] = ACTIONS(2523), - [anon_sym_PIPE_PIPE] = ACTIONS(2523), - [anon_sym_or] = ACTIONS(2525), - [sym_none] = ACTIONS(2525), - [sym_true] = ACTIONS(2525), - [sym_false] = ACTIONS(2525), - [sym_nil] = ACTIONS(2525), - [anon_sym_QMARK_DOT] = ACTIONS(2523), - [anon_sym_POUND_LBRACK] = ACTIONS(2523), - [anon_sym_if] = ACTIONS(2525), - [anon_sym_DOLLARif] = ACTIONS(2525), - [anon_sym_is] = ACTIONS(2525), - [anon_sym_BANGis] = ACTIONS(2523), - [anon_sym_in] = ACTIONS(2525), - [anon_sym_BANGin] = ACTIONS(2523), - [anon_sym_match] = ACTIONS(2525), - [anon_sym_select] = ACTIONS(2525), - [anon_sym_lock] = ACTIONS(2525), - [anon_sym_rlock] = ACTIONS(2525), - [anon_sym_unsafe] = ACTIONS(2525), - [anon_sym_sql] = ACTIONS(2525), - [sym_int_literal] = ACTIONS(2525), - [sym_float_literal] = ACTIONS(2523), - [sym_rune_literal] = ACTIONS(2523), - [sym_pseudo_compile_time_identifier] = ACTIONS(2525), - [anon_sym_shared] = ACTIONS(2525), - [anon_sym_map_LBRACK] = ACTIONS(2523), - [anon_sym_chan] = ACTIONS(2525), - [anon_sym_thread] = ACTIONS(2525), - [anon_sym_atomic] = ACTIONS(2525), - [sym___double_quote] = ACTIONS(2523), - [sym___single_quote] = ACTIONS(2523), - [sym___c_double_quote] = ACTIONS(2523), - [sym___c_single_quote] = ACTIONS(2523), - [sym___r_double_quote] = ACTIONS(2523), - [sym___r_single_quote] = ACTIONS(2523), - }, - [1383] = { - [sym_line_comment] = STATE(1383), - [sym_block_comment] = STATE(1383), - [sym_identifier] = ACTIONS(2267), - [anon_sym_SLASH_SLASH] = ACTIONS(3), - [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(2267), - [anon_sym_as] = ACTIONS(2267), - [anon_sym_LBRACE] = ACTIONS(2265), - [anon_sym_COMMA] = ACTIONS(2265), - [anon_sym_RBRACE] = ACTIONS(2265), - [anon_sym_LPAREN] = ACTIONS(2265), - [anon_sym_PIPE] = ACTIONS(2267), - [anon_sym_fn] = ACTIONS(2267), - [anon_sym_PLUS] = ACTIONS(2267), - [anon_sym_DASH] = ACTIONS(2267), - [anon_sym_STAR] = ACTIONS(2265), - [anon_sym_SLASH] = ACTIONS(2267), - [anon_sym_PERCENT] = ACTIONS(2265), - [anon_sym_LT] = ACTIONS(2267), - [anon_sym_GT] = ACTIONS(2267), - [anon_sym_EQ_EQ] = ACTIONS(2265), - [anon_sym_BANG_EQ] = ACTIONS(2265), - [anon_sym_LT_EQ] = ACTIONS(2265), - [anon_sym_GT_EQ] = ACTIONS(2265), - [anon_sym_LBRACK] = ACTIONS(2265), - [anon_sym_RBRACK] = ACTIONS(2265), - [anon_sym_struct] = ACTIONS(2267), - [anon_sym_mut] = ACTIONS(2267), - [anon_sym_COLON] = ACTIONS(2265), - [anon_sym_PLUS_PLUS] = ACTIONS(2265), - [anon_sym_DASH_DASH] = ACTIONS(2265), - [anon_sym_QMARK] = ACTIONS(2267), - [anon_sym_BANG] = ACTIONS(2267), - [anon_sym_go] = ACTIONS(2267), - [anon_sym_spawn] = ACTIONS(2267), - [anon_sym_json_DOTdecode] = ACTIONS(2265), - [anon_sym_LBRACK2] = ACTIONS(2267), - [anon_sym_TILDE] = ACTIONS(2265), - [anon_sym_CARET] = ACTIONS(2265), - [anon_sym_AMP] = ACTIONS(2267), - [anon_sym_LT_DASH] = ACTIONS(2265), - [anon_sym_LT_LT] = ACTIONS(2265), - [anon_sym_GT_GT] = ACTIONS(2267), - [anon_sym_GT_GT_GT] = ACTIONS(2265), - [anon_sym_AMP_CARET] = ACTIONS(2265), - [anon_sym_AMP_AMP] = ACTIONS(2265), - [anon_sym_PIPE_PIPE] = ACTIONS(2265), - [anon_sym_or] = ACTIONS(2267), - [sym_none] = ACTIONS(2267), - [sym_true] = ACTIONS(2267), - [sym_false] = ACTIONS(2267), - [sym_nil] = ACTIONS(2267), - [anon_sym_QMARK_DOT] = ACTIONS(2265), - [anon_sym_POUND_LBRACK] = ACTIONS(2265), - [anon_sym_if] = ACTIONS(2267), - [anon_sym_DOLLARif] = ACTIONS(2267), - [anon_sym_is] = ACTIONS(2267), - [anon_sym_BANGis] = ACTIONS(2265), - [anon_sym_in] = ACTIONS(2267), - [anon_sym_BANGin] = ACTIONS(2265), - [anon_sym_match] = ACTIONS(2267), - [anon_sym_select] = ACTIONS(2267), - [anon_sym_lock] = ACTIONS(2267), - [anon_sym_rlock] = ACTIONS(2267), - [anon_sym_unsafe] = ACTIONS(2267), - [anon_sym_sql] = ACTIONS(2267), - [sym_int_literal] = ACTIONS(2267), - [sym_float_literal] = ACTIONS(2265), - [sym_rune_literal] = ACTIONS(2265), - [sym_pseudo_compile_time_identifier] = ACTIONS(2267), - [anon_sym_shared] = ACTIONS(2267), - [anon_sym_map_LBRACK] = ACTIONS(2265), - [anon_sym_chan] = ACTIONS(2267), - [anon_sym_thread] = ACTIONS(2267), - [anon_sym_atomic] = ACTIONS(2267), - [sym___double_quote] = ACTIONS(2265), - [sym___single_quote] = ACTIONS(2265), - [sym___c_double_quote] = ACTIONS(2265), - [sym___c_single_quote] = ACTIONS(2265), - [sym___r_double_quote] = ACTIONS(2265), - [sym___r_single_quote] = ACTIONS(2265), - }, - [1384] = { - [sym_line_comment] = STATE(1384), - [sym_block_comment] = STATE(1384), - [sym_identifier] = ACTIONS(2239), - [anon_sym_SLASH_SLASH] = ACTIONS(3), - [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(2239), - [anon_sym_as] = ACTIONS(2239), - [anon_sym_LBRACE] = ACTIONS(2237), - [anon_sym_COMMA] = ACTIONS(2237), - [anon_sym_RBRACE] = ACTIONS(2237), - [anon_sym_LPAREN] = ACTIONS(2237), - [anon_sym_PIPE] = ACTIONS(2239), - [anon_sym_fn] = ACTIONS(2239), - [anon_sym_PLUS] = ACTIONS(2239), - [anon_sym_DASH] = ACTIONS(2239), - [anon_sym_STAR] = ACTIONS(2237), - [anon_sym_SLASH] = ACTIONS(2239), - [anon_sym_PERCENT] = ACTIONS(2237), - [anon_sym_LT] = ACTIONS(2239), - [anon_sym_GT] = ACTIONS(2239), - [anon_sym_EQ_EQ] = ACTIONS(2237), - [anon_sym_BANG_EQ] = ACTIONS(2237), - [anon_sym_LT_EQ] = ACTIONS(2237), - [anon_sym_GT_EQ] = ACTIONS(2237), - [anon_sym_LBRACK] = ACTIONS(2237), - [anon_sym_RBRACK] = ACTIONS(2237), - [anon_sym_struct] = ACTIONS(2239), - [anon_sym_mut] = ACTIONS(2239), - [anon_sym_COLON] = ACTIONS(2237), - [anon_sym_PLUS_PLUS] = ACTIONS(2237), - [anon_sym_DASH_DASH] = ACTIONS(2237), - [anon_sym_QMARK] = ACTIONS(2239), - [anon_sym_BANG] = ACTIONS(2239), - [anon_sym_go] = ACTIONS(2239), - [anon_sym_spawn] = ACTIONS(2239), - [anon_sym_json_DOTdecode] = ACTIONS(2237), - [anon_sym_LBRACK2] = ACTIONS(2239), - [anon_sym_TILDE] = ACTIONS(2237), - [anon_sym_CARET] = ACTIONS(2237), - [anon_sym_AMP] = ACTIONS(2239), - [anon_sym_LT_DASH] = ACTIONS(2237), - [anon_sym_LT_LT] = ACTIONS(2237), - [anon_sym_GT_GT] = ACTIONS(2239), - [anon_sym_GT_GT_GT] = ACTIONS(2237), - [anon_sym_AMP_CARET] = ACTIONS(2237), - [anon_sym_AMP_AMP] = ACTIONS(2237), - [anon_sym_PIPE_PIPE] = ACTIONS(2237), - [anon_sym_or] = ACTIONS(2239), - [sym_none] = ACTIONS(2239), - [sym_true] = ACTIONS(2239), - [sym_false] = ACTIONS(2239), - [sym_nil] = ACTIONS(2239), - [anon_sym_QMARK_DOT] = ACTIONS(2237), - [anon_sym_POUND_LBRACK] = ACTIONS(2237), - [anon_sym_if] = ACTIONS(2239), - [anon_sym_DOLLARif] = ACTIONS(2239), - [anon_sym_is] = ACTIONS(2239), - [anon_sym_BANGis] = ACTIONS(2237), - [anon_sym_in] = ACTIONS(2239), - [anon_sym_BANGin] = ACTIONS(2237), - [anon_sym_match] = ACTIONS(2239), - [anon_sym_select] = ACTIONS(2239), - [anon_sym_lock] = ACTIONS(2239), - [anon_sym_rlock] = ACTIONS(2239), - [anon_sym_unsafe] = ACTIONS(2239), - [anon_sym_sql] = ACTIONS(2239), - [sym_int_literal] = ACTIONS(2239), - [sym_float_literal] = ACTIONS(2237), - [sym_rune_literal] = ACTIONS(2237), - [sym_pseudo_compile_time_identifier] = ACTIONS(2239), - [anon_sym_shared] = ACTIONS(2239), - [anon_sym_map_LBRACK] = ACTIONS(2237), - [anon_sym_chan] = ACTIONS(2239), - [anon_sym_thread] = ACTIONS(2239), - [anon_sym_atomic] = ACTIONS(2239), - [sym___double_quote] = ACTIONS(2237), - [sym___single_quote] = ACTIONS(2237), - [sym___c_double_quote] = ACTIONS(2237), - [sym___c_single_quote] = ACTIONS(2237), - [sym___r_double_quote] = ACTIONS(2237), - [sym___r_single_quote] = ACTIONS(2237), - }, [1385] = { [sym_line_comment] = STATE(1385), [sym_block_comment] = STATE(1385), - [sym_identifier] = ACTIONS(1951), + [sym_identifier] = ACTIONS(2542), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1951), - [anon_sym_as] = ACTIONS(1951), - [anon_sym_LBRACE] = ACTIONS(1953), - [anon_sym_COMMA] = ACTIONS(1953), - [anon_sym_RBRACE] = ACTIONS(1953), - [anon_sym_LPAREN] = ACTIONS(1953), - [anon_sym_PIPE] = ACTIONS(1951), - [anon_sym_fn] = ACTIONS(1951), - [anon_sym_PLUS] = ACTIONS(1951), - [anon_sym_DASH] = ACTIONS(1951), - [anon_sym_STAR] = ACTIONS(1953), - [anon_sym_SLASH] = ACTIONS(1951), - [anon_sym_PERCENT] = ACTIONS(1953), - [anon_sym_LT] = ACTIONS(1951), - [anon_sym_GT] = ACTIONS(1951), - [anon_sym_EQ_EQ] = ACTIONS(1953), - [anon_sym_BANG_EQ] = ACTIONS(1953), - [anon_sym_LT_EQ] = ACTIONS(1953), - [anon_sym_GT_EQ] = ACTIONS(1953), - [anon_sym_LBRACK] = ACTIONS(1953), - [anon_sym_RBRACK] = ACTIONS(1953), - [anon_sym_struct] = ACTIONS(1951), - [anon_sym_mut] = ACTIONS(1951), - [anon_sym_COLON] = ACTIONS(1953), - [anon_sym_PLUS_PLUS] = ACTIONS(1953), - [anon_sym_DASH_DASH] = ACTIONS(1953), - [anon_sym_QMARK] = ACTIONS(1951), - [anon_sym_BANG] = ACTIONS(1951), - [anon_sym_go] = ACTIONS(1951), - [anon_sym_spawn] = ACTIONS(1951), - [anon_sym_json_DOTdecode] = ACTIONS(1953), - [anon_sym_LBRACK2] = ACTIONS(1951), - [anon_sym_TILDE] = ACTIONS(1953), - [anon_sym_CARET] = ACTIONS(1953), - [anon_sym_AMP] = ACTIONS(1951), - [anon_sym_LT_DASH] = ACTIONS(1953), - [anon_sym_LT_LT] = ACTIONS(1953), - [anon_sym_GT_GT] = ACTIONS(1951), - [anon_sym_GT_GT_GT] = ACTIONS(1953), - [anon_sym_AMP_CARET] = ACTIONS(1953), - [anon_sym_AMP_AMP] = ACTIONS(1953), - [anon_sym_PIPE_PIPE] = ACTIONS(1953), - [anon_sym_or] = ACTIONS(1951), - [sym_none] = ACTIONS(1951), - [sym_true] = ACTIONS(1951), - [sym_false] = ACTIONS(1951), - [sym_nil] = ACTIONS(1951), - [anon_sym_QMARK_DOT] = ACTIONS(1953), - [anon_sym_POUND_LBRACK] = ACTIONS(1953), - [anon_sym_if] = ACTIONS(1951), - [anon_sym_DOLLARif] = ACTIONS(1951), - [anon_sym_is] = ACTIONS(1951), - [anon_sym_BANGis] = ACTIONS(1953), - [anon_sym_in] = ACTIONS(1951), - [anon_sym_BANGin] = ACTIONS(1953), - [anon_sym_match] = ACTIONS(1951), - [anon_sym_select] = ACTIONS(1951), - [anon_sym_lock] = ACTIONS(1951), - [anon_sym_rlock] = ACTIONS(1951), - [anon_sym_unsafe] = ACTIONS(1951), - [anon_sym_sql] = ACTIONS(1951), - [sym_int_literal] = ACTIONS(1951), - [sym_float_literal] = ACTIONS(1953), - [sym_rune_literal] = ACTIONS(1953), - [sym_pseudo_compile_time_identifier] = ACTIONS(1951), - [anon_sym_shared] = ACTIONS(1951), - [anon_sym_map_LBRACK] = ACTIONS(1953), - [anon_sym_chan] = ACTIONS(1951), - [anon_sym_thread] = ACTIONS(1951), - [anon_sym_atomic] = ACTIONS(1951), - [sym___double_quote] = ACTIONS(1953), - [sym___single_quote] = ACTIONS(1953), - [sym___c_double_quote] = ACTIONS(1953), - [sym___c_single_quote] = ACTIONS(1953), - [sym___r_double_quote] = ACTIONS(1953), - [sym___r_single_quote] = ACTIONS(1953), + [anon_sym_DOT] = ACTIONS(2542), + [anon_sym_as] = ACTIONS(2542), + [anon_sym_LBRACE] = ACTIONS(2540), + [anon_sym_COMMA] = ACTIONS(2540), + [anon_sym_RBRACE] = ACTIONS(2540), + [anon_sym_LPAREN] = ACTIONS(2540), + [anon_sym_PIPE] = ACTIONS(2542), + [anon_sym_fn] = ACTIONS(2542), + [anon_sym_PLUS] = ACTIONS(2542), + [anon_sym_DASH] = ACTIONS(2542), + [anon_sym_STAR] = ACTIONS(2540), + [anon_sym_SLASH] = ACTIONS(2542), + [anon_sym_PERCENT] = ACTIONS(2540), + [anon_sym_LT] = ACTIONS(2542), + [anon_sym_GT] = ACTIONS(2542), + [anon_sym_EQ_EQ] = ACTIONS(2540), + [anon_sym_BANG_EQ] = ACTIONS(2540), + [anon_sym_LT_EQ] = ACTIONS(2540), + [anon_sym_GT_EQ] = ACTIONS(2540), + [anon_sym_LBRACK] = ACTIONS(2540), + [anon_sym_RBRACK] = ACTIONS(2540), + [anon_sym_struct] = ACTIONS(2542), + [anon_sym_mut] = ACTIONS(2542), + [anon_sym_COLON] = ACTIONS(2540), + [anon_sym_PLUS_PLUS] = ACTIONS(2540), + [anon_sym_DASH_DASH] = ACTIONS(2540), + [anon_sym_QMARK] = ACTIONS(2542), + [anon_sym_BANG] = ACTIONS(3911), + [anon_sym_go] = ACTIONS(2542), + [anon_sym_spawn] = ACTIONS(2542), + [anon_sym_json_DOTdecode] = ACTIONS(2540), + [anon_sym_LBRACK2] = ACTIONS(2542), + [anon_sym_TILDE] = ACTIONS(2540), + [anon_sym_CARET] = ACTIONS(2540), + [anon_sym_AMP] = ACTIONS(2542), + [anon_sym_LT_DASH] = ACTIONS(2540), + [anon_sym_LT_LT] = ACTIONS(2540), + [anon_sym_GT_GT] = ACTIONS(2542), + [anon_sym_GT_GT_GT] = ACTIONS(2540), + [anon_sym_AMP_CARET] = ACTIONS(2540), + [anon_sym_AMP_AMP] = ACTIONS(2540), + [anon_sym_PIPE_PIPE] = ACTIONS(2540), + [anon_sym_or] = ACTIONS(2542), + [sym_none] = ACTIONS(2542), + [sym_true] = ACTIONS(2542), + [sym_false] = ACTIONS(2542), + [sym_nil] = ACTIONS(2542), + [anon_sym_QMARK_DOT] = ACTIONS(2540), + [anon_sym_POUND_LBRACK] = ACTIONS(2540), + [anon_sym_if] = ACTIONS(2542), + [anon_sym_DOLLARif] = ACTIONS(2542), + [anon_sym_is] = ACTIONS(2542), + [anon_sym_BANGis] = ACTIONS(2540), + [anon_sym_in] = ACTIONS(2542), + [anon_sym_BANGin] = ACTIONS(2540), + [anon_sym_match] = ACTIONS(2542), + [anon_sym_select] = ACTIONS(2542), + [anon_sym_lock] = ACTIONS(2542), + [anon_sym_rlock] = ACTIONS(2542), + [anon_sym_unsafe] = ACTIONS(2542), + [anon_sym_sql] = ACTIONS(2542), + [sym_int_literal] = ACTIONS(2542), + [sym_float_literal] = ACTIONS(2540), + [sym_rune_literal] = ACTIONS(2540), + [sym_pseudo_compile_time_identifier] = ACTIONS(2542), + [anon_sym_shared] = ACTIONS(2542), + [anon_sym_map_LBRACK] = ACTIONS(2540), + [anon_sym_chan] = ACTIONS(2542), + [anon_sym_thread] = ACTIONS(2542), + [anon_sym_atomic] = ACTIONS(2542), + [sym___double_quote] = ACTIONS(2540), + [sym___single_quote] = ACTIONS(2540), + [sym___c_double_quote] = ACTIONS(2540), + [sym___c_single_quote] = ACTIONS(2540), + [sym___r_double_quote] = ACTIONS(2540), + [sym___r_single_quote] = ACTIONS(2540), }, [1386] = { [sym_line_comment] = STATE(1386), [sym_block_comment] = STATE(1386), - [sym_identifier] = ACTIONS(2731), + [sym_identifier] = ACTIONS(2475), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(2731), - [anon_sym_as] = ACTIONS(2731), - [anon_sym_LBRACE] = ACTIONS(2729), - [anon_sym_COMMA] = ACTIONS(2729), - [anon_sym_RBRACE] = ACTIONS(2729), - [anon_sym_LPAREN] = ACTIONS(2729), - [anon_sym_PIPE] = ACTIONS(2731), - [anon_sym_fn] = ACTIONS(2731), - [anon_sym_PLUS] = ACTIONS(2731), - [anon_sym_DASH] = ACTIONS(2731), - [anon_sym_STAR] = ACTIONS(2729), - [anon_sym_SLASH] = ACTIONS(2731), - [anon_sym_PERCENT] = ACTIONS(2729), - [anon_sym_LT] = ACTIONS(2731), - [anon_sym_GT] = ACTIONS(2731), - [anon_sym_EQ_EQ] = ACTIONS(2729), - [anon_sym_BANG_EQ] = ACTIONS(2729), - [anon_sym_LT_EQ] = ACTIONS(2729), - [anon_sym_GT_EQ] = ACTIONS(2729), - [anon_sym_LBRACK] = ACTIONS(2729), - [anon_sym_RBRACK] = ACTIONS(2729), - [anon_sym_struct] = ACTIONS(2731), - [anon_sym_mut] = ACTIONS(2731), - [anon_sym_COLON] = ACTIONS(2729), - [anon_sym_PLUS_PLUS] = ACTIONS(2729), - [anon_sym_DASH_DASH] = ACTIONS(2729), - [anon_sym_QMARK] = ACTIONS(2731), - [anon_sym_BANG] = ACTIONS(2731), - [anon_sym_go] = ACTIONS(2731), - [anon_sym_spawn] = ACTIONS(2731), - [anon_sym_json_DOTdecode] = ACTIONS(2729), - [anon_sym_LBRACK2] = ACTIONS(2731), - [anon_sym_TILDE] = ACTIONS(2729), - [anon_sym_CARET] = ACTIONS(2729), - [anon_sym_AMP] = ACTIONS(2731), - [anon_sym_LT_DASH] = ACTIONS(2729), - [anon_sym_LT_LT] = ACTIONS(2729), - [anon_sym_GT_GT] = ACTIONS(2731), - [anon_sym_GT_GT_GT] = ACTIONS(2729), - [anon_sym_AMP_CARET] = ACTIONS(2729), - [anon_sym_AMP_AMP] = ACTIONS(2729), - [anon_sym_PIPE_PIPE] = ACTIONS(2729), - [anon_sym_or] = ACTIONS(2731), - [sym_none] = ACTIONS(2731), - [sym_true] = ACTIONS(2731), - [sym_false] = ACTIONS(2731), - [sym_nil] = ACTIONS(2731), - [anon_sym_QMARK_DOT] = ACTIONS(2729), - [anon_sym_POUND_LBRACK] = ACTIONS(2729), - [anon_sym_if] = ACTIONS(2731), - [anon_sym_DOLLARif] = ACTIONS(2731), - [anon_sym_is] = ACTIONS(2731), - [anon_sym_BANGis] = ACTIONS(2729), - [anon_sym_in] = ACTIONS(2731), - [anon_sym_BANGin] = ACTIONS(2729), - [anon_sym_match] = ACTIONS(2731), - [anon_sym_select] = ACTIONS(2731), - [anon_sym_lock] = ACTIONS(2731), - [anon_sym_rlock] = ACTIONS(2731), - [anon_sym_unsafe] = ACTIONS(2731), - [anon_sym_sql] = ACTIONS(2731), - [sym_int_literal] = ACTIONS(2731), - [sym_float_literal] = ACTIONS(2729), - [sym_rune_literal] = ACTIONS(2729), - [sym_pseudo_compile_time_identifier] = ACTIONS(2731), - [anon_sym_shared] = ACTIONS(2731), - [anon_sym_map_LBRACK] = ACTIONS(2729), - [anon_sym_chan] = ACTIONS(2731), - [anon_sym_thread] = ACTIONS(2731), - [anon_sym_atomic] = ACTIONS(2731), - [sym___double_quote] = ACTIONS(2729), - [sym___single_quote] = ACTIONS(2729), - [sym___c_double_quote] = ACTIONS(2729), - [sym___c_single_quote] = ACTIONS(2729), - [sym___r_double_quote] = ACTIONS(2729), - [sym___r_single_quote] = ACTIONS(2729), + [anon_sym_DOT] = ACTIONS(1891), + [anon_sym_as] = ACTIONS(2475), + [anon_sym_LBRACE] = ACTIONS(2473), + [anon_sym_COMMA] = ACTIONS(2473), + [anon_sym_RBRACE] = ACTIONS(2473), + [anon_sym_LPAREN] = ACTIONS(2473), + [anon_sym_PIPE] = ACTIONS(2475), + [anon_sym_fn] = ACTIONS(2475), + [anon_sym_PLUS] = ACTIONS(2475), + [anon_sym_DASH] = ACTIONS(2475), + [anon_sym_STAR] = ACTIONS(2473), + [anon_sym_SLASH] = ACTIONS(2475), + [anon_sym_PERCENT] = ACTIONS(2473), + [anon_sym_LT] = ACTIONS(2475), + [anon_sym_GT] = ACTIONS(2475), + [anon_sym_EQ_EQ] = ACTIONS(2473), + [anon_sym_BANG_EQ] = ACTIONS(2473), + [anon_sym_LT_EQ] = ACTIONS(2473), + [anon_sym_GT_EQ] = ACTIONS(2473), + [anon_sym_LBRACK] = ACTIONS(2473), + [anon_sym_RBRACK] = ACTIONS(2473), + [anon_sym_struct] = ACTIONS(2475), + [anon_sym_mut] = ACTIONS(2475), + [anon_sym_COLON] = ACTIONS(2473), + [anon_sym_PLUS_PLUS] = ACTIONS(2473), + [anon_sym_DASH_DASH] = ACTIONS(2473), + [anon_sym_QMARK] = ACTIONS(2475), + [anon_sym_BANG] = ACTIONS(2475), + [anon_sym_go] = ACTIONS(2475), + [anon_sym_spawn] = ACTIONS(2475), + [anon_sym_json_DOTdecode] = ACTIONS(2473), + [anon_sym_LBRACK2] = ACTIONS(2475), + [anon_sym_TILDE] = ACTIONS(2473), + [anon_sym_CARET] = ACTIONS(2473), + [anon_sym_AMP] = ACTIONS(2475), + [anon_sym_LT_DASH] = ACTIONS(2473), + [anon_sym_LT_LT] = ACTIONS(2473), + [anon_sym_GT_GT] = ACTIONS(2475), + [anon_sym_GT_GT_GT] = ACTIONS(2473), + [anon_sym_AMP_CARET] = ACTIONS(2473), + [anon_sym_AMP_AMP] = ACTIONS(2473), + [anon_sym_PIPE_PIPE] = ACTIONS(2473), + [anon_sym_or] = ACTIONS(2475), + [sym_none] = ACTIONS(2475), + [sym_true] = ACTIONS(2475), + [sym_false] = ACTIONS(2475), + [sym_nil] = ACTIONS(2475), + [anon_sym_QMARK_DOT] = ACTIONS(2473), + [anon_sym_POUND_LBRACK] = ACTIONS(2473), + [anon_sym_if] = ACTIONS(2475), + [anon_sym_DOLLARif] = ACTIONS(2475), + [anon_sym_is] = ACTIONS(2475), + [anon_sym_BANGis] = ACTIONS(2473), + [anon_sym_in] = ACTIONS(2475), + [anon_sym_BANGin] = ACTIONS(2473), + [anon_sym_match] = ACTIONS(2475), + [anon_sym_select] = ACTIONS(2475), + [anon_sym_lock] = ACTIONS(2475), + [anon_sym_rlock] = ACTIONS(2475), + [anon_sym_unsafe] = ACTIONS(2475), + [anon_sym_sql] = ACTIONS(2475), + [sym_int_literal] = ACTIONS(2475), + [sym_float_literal] = ACTIONS(2473), + [sym_rune_literal] = ACTIONS(2473), + [sym_pseudo_compile_time_identifier] = ACTIONS(2475), + [anon_sym_shared] = ACTIONS(2475), + [anon_sym_map_LBRACK] = ACTIONS(2473), + [anon_sym_chan] = ACTIONS(2475), + [anon_sym_thread] = ACTIONS(2475), + [anon_sym_atomic] = ACTIONS(2475), + [sym___double_quote] = ACTIONS(2473), + [sym___single_quote] = ACTIONS(2473), + [sym___c_double_quote] = ACTIONS(2473), + [sym___c_single_quote] = ACTIONS(2473), + [sym___r_double_quote] = ACTIONS(2473), + [sym___r_single_quote] = ACTIONS(2473), }, [1387] = { [sym_line_comment] = STATE(1387), [sym_block_comment] = STATE(1387), - [sym_identifier] = ACTIONS(3054), + [sym_identifier] = ACTIONS(1889), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_SEMI] = ACTIONS(3052), - [anon_sym_DOT] = ACTIONS(3054), - [anon_sym_as] = ACTIONS(3054), - [anon_sym_LBRACE] = ACTIONS(3052), - [anon_sym_COMMA] = ACTIONS(3052), - [anon_sym_LPAREN] = ACTIONS(3052), - [anon_sym_PIPE] = ACTIONS(3054), - [anon_sym_fn] = ACTIONS(3054), - [anon_sym_PLUS] = ACTIONS(3054), - [anon_sym_DASH] = ACTIONS(3054), - [anon_sym_STAR] = ACTIONS(3052), - [anon_sym_SLASH] = ACTIONS(3054), - [anon_sym_PERCENT] = ACTIONS(3052), - [anon_sym_LT] = ACTIONS(3054), - [anon_sym_GT] = ACTIONS(3054), - [anon_sym_EQ_EQ] = ACTIONS(3052), - [anon_sym_BANG_EQ] = ACTIONS(3052), - [anon_sym_LT_EQ] = ACTIONS(3052), - [anon_sym_GT_EQ] = ACTIONS(3052), - [anon_sym_LBRACK] = ACTIONS(3052), - [anon_sym_RBRACK] = ACTIONS(3907), - [anon_sym_struct] = ACTIONS(3054), - [anon_sym_mut] = ACTIONS(3054), - [anon_sym_PLUS_PLUS] = ACTIONS(3052), - [anon_sym_DASH_DASH] = ACTIONS(3052), - [anon_sym_QMARK] = ACTIONS(3054), - [anon_sym_BANG] = ACTIONS(3054), - [anon_sym_go] = ACTIONS(3054), - [anon_sym_spawn] = ACTIONS(3054), - [anon_sym_json_DOTdecode] = ACTIONS(3052), - [anon_sym_LBRACK2] = ACTIONS(3054), - [anon_sym_TILDE] = ACTIONS(3052), - [anon_sym_CARET] = ACTIONS(3052), - [anon_sym_AMP] = ACTIONS(3054), - [anon_sym_LT_DASH] = ACTIONS(3052), - [anon_sym_LT_LT] = ACTIONS(3052), - [anon_sym_GT_GT] = ACTIONS(3054), - [anon_sym_GT_GT_GT] = ACTIONS(3052), - [anon_sym_AMP_CARET] = ACTIONS(3052), - [anon_sym_AMP_AMP] = ACTIONS(3052), - [anon_sym_PIPE_PIPE] = ACTIONS(3052), - [anon_sym_or] = ACTIONS(3054), - [sym_none] = ACTIONS(3054), - [sym_true] = ACTIONS(3054), - [sym_false] = ACTIONS(3054), - [sym_nil] = ACTIONS(3054), - [anon_sym_QMARK_DOT] = ACTIONS(3052), - [anon_sym_POUND_LBRACK] = ACTIONS(3052), - [anon_sym_if] = ACTIONS(3054), - [anon_sym_DOLLARif] = ACTIONS(3054), - [anon_sym_is] = ACTIONS(3054), - [anon_sym_BANGis] = ACTIONS(3052), - [anon_sym_in] = ACTIONS(3054), - [anon_sym_BANGin] = ACTIONS(3052), - [anon_sym_match] = ACTIONS(3054), - [anon_sym_select] = ACTIONS(3054), - [anon_sym_lock] = ACTIONS(3054), - [anon_sym_rlock] = ACTIONS(3054), - [anon_sym_unsafe] = ACTIONS(3054), - [anon_sym_sql] = ACTIONS(3054), - [sym_int_literal] = ACTIONS(3054), - [sym_float_literal] = ACTIONS(3052), - [sym_rune_literal] = ACTIONS(3052), - [sym_pseudo_compile_time_identifier] = ACTIONS(3054), - [anon_sym_shared] = ACTIONS(3054), - [anon_sym_map_LBRACK] = ACTIONS(3052), - [anon_sym_chan] = ACTIONS(3054), - [anon_sym_thread] = ACTIONS(3054), - [anon_sym_atomic] = ACTIONS(3054), - [sym___double_quote] = ACTIONS(3052), - [sym___single_quote] = ACTIONS(3052), - [sym___c_double_quote] = ACTIONS(3052), - [sym___c_single_quote] = ACTIONS(3052), - [sym___r_double_quote] = ACTIONS(3052), - [sym___r_single_quote] = ACTIONS(3052), + [anon_sym_DOT] = ACTIONS(1889), + [anon_sym_as] = ACTIONS(1889), + [anon_sym_LBRACE] = ACTIONS(1887), + [anon_sym_COMMA] = ACTIONS(1887), + [anon_sym_RBRACE] = ACTIONS(1887), + [anon_sym_LPAREN] = ACTIONS(1887), + [anon_sym_PIPE] = ACTIONS(1889), + [anon_sym_fn] = ACTIONS(1889), + [anon_sym_PLUS] = ACTIONS(1889), + [anon_sym_DASH] = ACTIONS(1889), + [anon_sym_STAR] = ACTIONS(1887), + [anon_sym_SLASH] = ACTIONS(1889), + [anon_sym_PERCENT] = ACTIONS(1887), + [anon_sym_LT] = ACTIONS(1889), + [anon_sym_GT] = ACTIONS(1889), + [anon_sym_EQ_EQ] = ACTIONS(1887), + [anon_sym_BANG_EQ] = ACTIONS(1887), + [anon_sym_LT_EQ] = ACTIONS(1887), + [anon_sym_GT_EQ] = ACTIONS(1887), + [anon_sym_LBRACK] = ACTIONS(1887), + [anon_sym_RBRACK] = ACTIONS(1887), + [anon_sym_struct] = ACTIONS(1889), + [anon_sym_mut] = ACTIONS(1889), + [anon_sym_COLON] = ACTIONS(1887), + [anon_sym_PLUS_PLUS] = ACTIONS(1887), + [anon_sym_DASH_DASH] = ACTIONS(1887), + [anon_sym_QMARK] = ACTIONS(1889), + [anon_sym_BANG] = ACTIONS(1889), + [anon_sym_go] = ACTIONS(1889), + [anon_sym_spawn] = ACTIONS(1889), + [anon_sym_json_DOTdecode] = ACTIONS(1887), + [anon_sym_LBRACK2] = ACTIONS(1889), + [anon_sym_TILDE] = ACTIONS(1887), + [anon_sym_CARET] = ACTIONS(1887), + [anon_sym_AMP] = ACTIONS(1889), + [anon_sym_LT_DASH] = ACTIONS(1887), + [anon_sym_LT_LT] = ACTIONS(1887), + [anon_sym_GT_GT] = ACTIONS(1889), + [anon_sym_GT_GT_GT] = ACTIONS(1887), + [anon_sym_AMP_CARET] = ACTIONS(1887), + [anon_sym_AMP_AMP] = ACTIONS(1887), + [anon_sym_PIPE_PIPE] = ACTIONS(1887), + [anon_sym_or] = ACTIONS(1889), + [sym_none] = ACTIONS(1889), + [sym_true] = ACTIONS(1889), + [sym_false] = ACTIONS(1889), + [sym_nil] = ACTIONS(1889), + [anon_sym_QMARK_DOT] = ACTIONS(1887), + [anon_sym_POUND_LBRACK] = ACTIONS(1887), + [anon_sym_if] = ACTIONS(1889), + [anon_sym_DOLLARif] = ACTIONS(1889), + [anon_sym_is] = ACTIONS(1889), + [anon_sym_BANGis] = ACTIONS(1887), + [anon_sym_in] = ACTIONS(1889), + [anon_sym_BANGin] = ACTIONS(1887), + [anon_sym_match] = ACTIONS(1889), + [anon_sym_select] = ACTIONS(1889), + [anon_sym_lock] = ACTIONS(1889), + [anon_sym_rlock] = ACTIONS(1889), + [anon_sym_unsafe] = ACTIONS(1889), + [anon_sym_sql] = ACTIONS(1889), + [sym_int_literal] = ACTIONS(1889), + [sym_float_literal] = ACTIONS(1887), + [sym_rune_literal] = ACTIONS(1887), + [sym_pseudo_compile_time_identifier] = ACTIONS(1889), + [anon_sym_shared] = ACTIONS(1889), + [anon_sym_map_LBRACK] = ACTIONS(1887), + [anon_sym_chan] = ACTIONS(1889), + [anon_sym_thread] = ACTIONS(1889), + [anon_sym_atomic] = ACTIONS(1889), + [sym___double_quote] = ACTIONS(1887), + [sym___single_quote] = ACTIONS(1887), + [sym___c_double_quote] = ACTIONS(1887), + [sym___c_single_quote] = ACTIONS(1887), + [sym___r_double_quote] = ACTIONS(1887), + [sym___r_single_quote] = ACTIONS(1887), }, [1388] = { [sym_line_comment] = STATE(1388), [sym_block_comment] = STATE(1388), - [sym_identifier] = ACTIONS(3050), + [sym_identifier] = ACTIONS(1809), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_SEMI] = ACTIONS(3910), - [anon_sym_DOT] = ACTIONS(3050), - [anon_sym_as] = ACTIONS(3050), - [anon_sym_LBRACE] = ACTIONS(3048), - [anon_sym_COMMA] = ACTIONS(3048), - [anon_sym_LPAREN] = ACTIONS(3048), - [anon_sym_PIPE] = ACTIONS(3050), - [anon_sym_fn] = ACTIONS(3050), - [anon_sym_PLUS] = ACTIONS(3050), - [anon_sym_DASH] = ACTIONS(3050), - [anon_sym_STAR] = ACTIONS(3048), - [anon_sym_SLASH] = ACTIONS(3050), - [anon_sym_PERCENT] = ACTIONS(3048), - [anon_sym_LT] = ACTIONS(3050), - [anon_sym_GT] = ACTIONS(3050), - [anon_sym_EQ_EQ] = ACTIONS(3048), - [anon_sym_BANG_EQ] = ACTIONS(3048), - [anon_sym_LT_EQ] = ACTIONS(3048), - [anon_sym_GT_EQ] = ACTIONS(3048), - [anon_sym_LBRACK] = ACTIONS(3048), - [anon_sym_RBRACK] = ACTIONS(3910), - [anon_sym_struct] = ACTIONS(3050), - [anon_sym_mut] = ACTIONS(3050), - [anon_sym_PLUS_PLUS] = ACTIONS(3048), - [anon_sym_DASH_DASH] = ACTIONS(3048), - [anon_sym_QMARK] = ACTIONS(3050), - [anon_sym_BANG] = ACTIONS(3050), - [anon_sym_go] = ACTIONS(3050), - [anon_sym_spawn] = ACTIONS(3050), - [anon_sym_json_DOTdecode] = ACTIONS(3048), - [anon_sym_LBRACK2] = ACTIONS(3050), - [anon_sym_TILDE] = ACTIONS(3048), - [anon_sym_CARET] = ACTIONS(3048), - [anon_sym_AMP] = ACTIONS(3050), - [anon_sym_LT_DASH] = ACTIONS(3048), - [anon_sym_LT_LT] = ACTIONS(3048), - [anon_sym_GT_GT] = ACTIONS(3050), - [anon_sym_GT_GT_GT] = ACTIONS(3048), - [anon_sym_AMP_CARET] = ACTIONS(3048), - [anon_sym_AMP_AMP] = ACTIONS(3048), - [anon_sym_PIPE_PIPE] = ACTIONS(3048), - [anon_sym_or] = ACTIONS(3050), - [sym_none] = ACTIONS(3050), - [sym_true] = ACTIONS(3050), - [sym_false] = ACTIONS(3050), - [sym_nil] = ACTIONS(3050), - [anon_sym_QMARK_DOT] = ACTIONS(3048), - [anon_sym_POUND_LBRACK] = ACTIONS(3048), - [anon_sym_if] = ACTIONS(3050), - [anon_sym_DOLLARif] = ACTIONS(3050), - [anon_sym_is] = ACTIONS(3050), - [anon_sym_BANGis] = ACTIONS(3048), - [anon_sym_in] = ACTIONS(3050), - [anon_sym_BANGin] = ACTIONS(3048), - [anon_sym_match] = ACTIONS(3050), - [anon_sym_select] = ACTIONS(3050), - [anon_sym_lock] = ACTIONS(3050), - [anon_sym_rlock] = ACTIONS(3050), - [anon_sym_unsafe] = ACTIONS(3050), - [anon_sym_sql] = ACTIONS(3050), - [sym_int_literal] = ACTIONS(3050), - [sym_float_literal] = ACTIONS(3048), - [sym_rune_literal] = ACTIONS(3048), - [sym_pseudo_compile_time_identifier] = ACTIONS(3050), - [anon_sym_shared] = ACTIONS(3050), - [anon_sym_map_LBRACK] = ACTIONS(3048), - [anon_sym_chan] = ACTIONS(3050), - [anon_sym_thread] = ACTIONS(3050), - [anon_sym_atomic] = ACTIONS(3050), - [sym___double_quote] = ACTIONS(3048), - [sym___single_quote] = ACTIONS(3048), - [sym___c_double_quote] = ACTIONS(3048), - [sym___c_single_quote] = ACTIONS(3048), - [sym___r_double_quote] = ACTIONS(3048), - [sym___r_single_quote] = ACTIONS(3048), + [anon_sym_DOT] = ACTIONS(1809), + [anon_sym_as] = ACTIONS(1809), + [anon_sym_LBRACE] = ACTIONS(1807), + [anon_sym_COMMA] = ACTIONS(1989), + [anon_sym_RBRACE] = ACTIONS(1807), + [anon_sym_LPAREN] = ACTIONS(1807), + [anon_sym_PIPE] = ACTIONS(1809), + [anon_sym_fn] = ACTIONS(1809), + [anon_sym_PLUS] = ACTIONS(1809), + [anon_sym_DASH] = ACTIONS(1809), + [anon_sym_STAR] = ACTIONS(1807), + [anon_sym_SLASH] = ACTIONS(1809), + [anon_sym_PERCENT] = ACTIONS(1807), + [anon_sym_LT] = ACTIONS(1809), + [anon_sym_GT] = ACTIONS(1809), + [anon_sym_EQ_EQ] = ACTIONS(1807), + [anon_sym_BANG_EQ] = ACTIONS(1807), + [anon_sym_LT_EQ] = ACTIONS(1807), + [anon_sym_GT_EQ] = ACTIONS(1807), + [anon_sym_LBRACK] = ACTIONS(1807), + [anon_sym_struct] = ACTIONS(1809), + [anon_sym_mut] = ACTIONS(1809), + [anon_sym_COLON] = ACTIONS(1807), + [anon_sym_PLUS_PLUS] = ACTIONS(1807), + [anon_sym_DASH_DASH] = ACTIONS(1807), + [anon_sym_QMARK] = ACTIONS(1809), + [anon_sym_BANG] = ACTIONS(1809), + [anon_sym_go] = ACTIONS(1809), + [anon_sym_spawn] = ACTIONS(1809), + [anon_sym_json_DOTdecode] = ACTIONS(1807), + [anon_sym_LBRACK2] = ACTIONS(1809), + [anon_sym_TILDE] = ACTIONS(1807), + [anon_sym_CARET] = ACTIONS(1807), + [anon_sym_AMP] = ACTIONS(1809), + [anon_sym_LT_DASH] = ACTIONS(1807), + [anon_sym_LT_LT] = ACTIONS(1807), + [anon_sym_GT_GT] = ACTIONS(1809), + [anon_sym_GT_GT_GT] = ACTIONS(1807), + [anon_sym_AMP_CARET] = ACTIONS(1807), + [anon_sym_AMP_AMP] = ACTIONS(1807), + [anon_sym_PIPE_PIPE] = ACTIONS(1807), + [anon_sym_or] = ACTIONS(1809), + [sym_none] = ACTIONS(1809), + [sym_true] = ACTIONS(1809), + [sym_false] = ACTIONS(1809), + [sym_nil] = ACTIONS(1809), + [anon_sym_QMARK_DOT] = ACTIONS(1807), + [anon_sym_POUND_LBRACK] = ACTIONS(1807), + [anon_sym_if] = ACTIONS(1809), + [anon_sym_DOLLARif] = ACTIONS(1809), + [anon_sym_is] = ACTIONS(1809), + [anon_sym_BANGis] = ACTIONS(1807), + [anon_sym_in] = ACTIONS(1809), + [anon_sym_BANGin] = ACTIONS(1807), + [anon_sym_match] = ACTIONS(1809), + [anon_sym_select] = ACTIONS(1809), + [anon_sym_lock] = ACTIONS(1809), + [anon_sym_rlock] = ACTIONS(1809), + [anon_sym_unsafe] = ACTIONS(1809), + [anon_sym_sql] = ACTIONS(1809), + [sym_int_literal] = ACTIONS(1809), + [sym_float_literal] = ACTIONS(1807), + [sym_rune_literal] = ACTIONS(1807), + [sym_pseudo_compile_time_identifier] = ACTIONS(1809), + [anon_sym_shared] = ACTIONS(1809), + [anon_sym_map_LBRACK] = ACTIONS(1807), + [anon_sym_chan] = ACTIONS(1809), + [anon_sym_thread] = ACTIONS(1809), + [anon_sym_atomic] = ACTIONS(1809), + [sym___double_quote] = ACTIONS(1807), + [sym___single_quote] = ACTIONS(1807), + [sym___c_double_quote] = ACTIONS(1807), + [sym___c_single_quote] = ACTIONS(1807), + [sym___r_double_quote] = ACTIONS(1807), + [sym___r_single_quote] = ACTIONS(1807), }, [1389] = { [sym_line_comment] = STATE(1389), [sym_block_comment] = STATE(1389), - [sym_reference_expression] = STATE(4495), - [sym_type_reference_expression] = STATE(3541), - [sym_plain_type] = STATE(2391), - [sym__plain_type_without_special] = STATE(2302), - [sym_anon_struct_type] = STATE(2303), - [sym_multi_return_type] = STATE(2302), - [sym_result_type] = STATE(2302), - [sym_option_type] = STATE(2302), - [sym_qualified_type] = STATE(3541), - [sym_fixed_array_type] = STATE(2303), - [sym_array_type] = STATE(2303), - [sym_pointer_type] = STATE(2303), - [sym_wrong_pointer_type] = STATE(2303), - [sym_map_type] = STATE(2303), - [sym_channel_type] = STATE(2303), - [sym_shared_type] = STATE(2303), - [sym_thread_type] = STATE(2303), - [sym_atomic_type] = STATE(2303), - [sym_generic_type] = STATE(2303), - [sym_function_type] = STATE(2303), - [sym_identifier] = ACTIONS(623), + [sym_identifier] = ACTIONS(2676), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(2676), + [anon_sym_as] = ACTIONS(2676), + [anon_sym_LBRACE] = ACTIONS(2674), + [anon_sym_COMMA] = ACTIONS(1989), + [anon_sym_RBRACE] = ACTIONS(2674), + [anon_sym_LPAREN] = ACTIONS(2674), + [anon_sym_PIPE] = ACTIONS(2676), + [anon_sym_fn] = ACTIONS(2676), + [anon_sym_PLUS] = ACTIONS(2676), + [anon_sym_DASH] = ACTIONS(2676), + [anon_sym_STAR] = ACTIONS(2674), + [anon_sym_SLASH] = ACTIONS(2676), + [anon_sym_PERCENT] = ACTIONS(2674), + [anon_sym_LT] = ACTIONS(2676), + [anon_sym_GT] = ACTIONS(2676), + [anon_sym_EQ_EQ] = ACTIONS(2674), + [anon_sym_BANG_EQ] = ACTIONS(2674), + [anon_sym_LT_EQ] = ACTIONS(2674), + [anon_sym_GT_EQ] = ACTIONS(2674), + [anon_sym_LBRACK] = ACTIONS(2674), + [anon_sym_struct] = ACTIONS(2676), + [anon_sym_mut] = ACTIONS(2676), + [anon_sym_COLON] = ACTIONS(2674), + [anon_sym_PLUS_PLUS] = ACTIONS(2674), + [anon_sym_DASH_DASH] = ACTIONS(2674), + [anon_sym_QMARK] = ACTIONS(2676), + [anon_sym_BANG] = ACTIONS(2676), + [anon_sym_go] = ACTIONS(2676), + [anon_sym_spawn] = ACTIONS(2676), + [anon_sym_json_DOTdecode] = ACTIONS(2674), + [anon_sym_LBRACK2] = ACTIONS(2676), + [anon_sym_TILDE] = ACTIONS(2674), + [anon_sym_CARET] = ACTIONS(2674), + [anon_sym_AMP] = ACTIONS(2676), + [anon_sym_LT_DASH] = ACTIONS(2674), + [anon_sym_LT_LT] = ACTIONS(2674), + [anon_sym_GT_GT] = ACTIONS(2676), + [anon_sym_GT_GT_GT] = ACTIONS(2674), + [anon_sym_AMP_CARET] = ACTIONS(2674), + [anon_sym_AMP_AMP] = ACTIONS(2674), + [anon_sym_PIPE_PIPE] = ACTIONS(2674), + [anon_sym_or] = ACTIONS(2676), + [sym_none] = ACTIONS(2676), + [sym_true] = ACTIONS(2676), + [sym_false] = ACTIONS(2676), + [sym_nil] = ACTIONS(2676), + [anon_sym_QMARK_DOT] = ACTIONS(2674), + [anon_sym_POUND_LBRACK] = ACTIONS(2674), + [anon_sym_if] = ACTIONS(2676), + [anon_sym_DOLLARif] = ACTIONS(2676), + [anon_sym_is] = ACTIONS(2676), + [anon_sym_BANGis] = ACTIONS(2674), + [anon_sym_in] = ACTIONS(2676), + [anon_sym_BANGin] = ACTIONS(2674), + [anon_sym_match] = ACTIONS(2676), + [anon_sym_select] = ACTIONS(2676), + [anon_sym_lock] = ACTIONS(2676), + [anon_sym_rlock] = ACTIONS(2676), + [anon_sym_unsafe] = ACTIONS(2676), + [anon_sym_sql] = ACTIONS(2676), + [sym_int_literal] = ACTIONS(2676), + [sym_float_literal] = ACTIONS(2674), + [sym_rune_literal] = ACTIONS(2674), + [sym_pseudo_compile_time_identifier] = ACTIONS(2676), + [anon_sym_shared] = ACTIONS(2676), + [anon_sym_map_LBRACK] = ACTIONS(2674), + [anon_sym_chan] = ACTIONS(2676), + [anon_sym_thread] = ACTIONS(2676), + [anon_sym_atomic] = ACTIONS(2676), + [sym___double_quote] = ACTIONS(2674), + [sym___single_quote] = ACTIONS(2674), + [sym___c_double_quote] = ACTIONS(2674), + [sym___c_single_quote] = ACTIONS(2674), + [sym___r_double_quote] = ACTIONS(2674), + [sym___r_single_quote] = ACTIONS(2674), + }, + [1390] = { + [sym_line_comment] = STATE(1390), + [sym_block_comment] = STATE(1390), + [sym_identifier] = ACTIONS(2806), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_SEMI] = ACTIONS(3913), + [anon_sym_DOT] = ACTIONS(2806), + [anon_sym_as] = ACTIONS(2806), + [anon_sym_LBRACE] = ACTIONS(2804), + [anon_sym_COMMA] = ACTIONS(2804), + [anon_sym_LPAREN] = ACTIONS(2804), + [anon_sym_PIPE] = ACTIONS(2806), + [anon_sym_fn] = ACTIONS(2806), + [anon_sym_PLUS] = ACTIONS(2806), + [anon_sym_DASH] = ACTIONS(2806), + [anon_sym_STAR] = ACTIONS(2804), + [anon_sym_SLASH] = ACTIONS(2806), + [anon_sym_PERCENT] = ACTIONS(2804), + [anon_sym_LT] = ACTIONS(2806), + [anon_sym_GT] = ACTIONS(2806), + [anon_sym_EQ_EQ] = ACTIONS(2804), + [anon_sym_BANG_EQ] = ACTIONS(2804), + [anon_sym_LT_EQ] = ACTIONS(2804), + [anon_sym_GT_EQ] = ACTIONS(2804), + [anon_sym_LBRACK] = ACTIONS(2804), + [anon_sym_RBRACK] = ACTIONS(3913), + [anon_sym_struct] = ACTIONS(2806), + [anon_sym_mut] = ACTIONS(2806), + [anon_sym_PLUS_PLUS] = ACTIONS(2804), + [anon_sym_DASH_DASH] = ACTIONS(2804), + [anon_sym_QMARK] = ACTIONS(2806), + [anon_sym_BANG] = ACTIONS(2806), + [anon_sym_go] = ACTIONS(2806), + [anon_sym_spawn] = ACTIONS(2806), + [anon_sym_json_DOTdecode] = ACTIONS(2804), + [anon_sym_LBRACK2] = ACTIONS(2806), + [anon_sym_TILDE] = ACTIONS(2804), + [anon_sym_CARET] = ACTIONS(2804), + [anon_sym_AMP] = ACTIONS(2806), + [anon_sym_LT_DASH] = ACTIONS(2804), + [anon_sym_LT_LT] = ACTIONS(2804), + [anon_sym_GT_GT] = ACTIONS(2806), + [anon_sym_GT_GT_GT] = ACTIONS(2804), + [anon_sym_AMP_CARET] = ACTIONS(2804), + [anon_sym_AMP_AMP] = ACTIONS(2804), + [anon_sym_PIPE_PIPE] = ACTIONS(2804), + [anon_sym_or] = ACTIONS(2806), + [sym_none] = ACTIONS(2806), + [sym_true] = ACTIONS(2806), + [sym_false] = ACTIONS(2806), + [sym_nil] = ACTIONS(2806), + [anon_sym_QMARK_DOT] = ACTIONS(2804), + [anon_sym_POUND_LBRACK] = ACTIONS(2804), + [anon_sym_if] = ACTIONS(2806), + [anon_sym_DOLLARif] = ACTIONS(2806), + [anon_sym_is] = ACTIONS(2806), + [anon_sym_BANGis] = ACTIONS(2804), + [anon_sym_in] = ACTIONS(2806), + [anon_sym_BANGin] = ACTIONS(2804), + [anon_sym_match] = ACTIONS(2806), + [anon_sym_select] = ACTIONS(2806), + [anon_sym_lock] = ACTIONS(2806), + [anon_sym_rlock] = ACTIONS(2806), + [anon_sym_unsafe] = ACTIONS(2806), + [anon_sym_sql] = ACTIONS(2806), + [sym_int_literal] = ACTIONS(2806), + [sym_float_literal] = ACTIONS(2804), + [sym_rune_literal] = ACTIONS(2804), + [sym_pseudo_compile_time_identifier] = ACTIONS(2806), + [anon_sym_shared] = ACTIONS(2806), + [anon_sym_map_LBRACK] = ACTIONS(2804), + [anon_sym_chan] = ACTIONS(2806), + [anon_sym_thread] = ACTIONS(2806), + [anon_sym_atomic] = ACTIONS(2806), + [sym___double_quote] = ACTIONS(2804), + [sym___single_quote] = ACTIONS(2804), + [sym___c_double_quote] = ACTIONS(2804), + [sym___c_single_quote] = ACTIONS(2804), + [sym___r_double_quote] = ACTIONS(2804), + [sym___r_single_quote] = ACTIONS(2804), + }, + [1391] = { + [sym_line_comment] = STATE(1391), + [sym_block_comment] = STATE(1391), + [sym_reference_expression] = STATE(4498), + [sym_type_reference_expression] = STATE(3460), + [sym_plain_type] = STATE(2345), + [sym__plain_type_without_special] = STATE(2360), + [sym_anon_struct_type] = STATE(2362), + [sym_multi_return_type] = STATE(2360), + [sym_result_type] = STATE(2360), + [sym_option_type] = STATE(2360), + [sym_qualified_type] = STATE(3460), + [sym_fixed_array_type] = STATE(2362), + [sym_array_type] = STATE(2362), + [sym_pointer_type] = STATE(2362), + [sym_wrong_pointer_type] = STATE(2362), + [sym_map_type] = STATE(2362), + [sym_channel_type] = STATE(2362), + [sym_shared_type] = STATE(2362), + [sym_thread_type] = STATE(2362), + [sym_atomic_type] = STATE(2362), + [sym_generic_type] = STATE(2362), + [sym_function_type] = STATE(2362), + [sym_identifier] = ACTIONS(627), + [anon_sym_LF] = ACTIONS(627), + [anon_sym_CR] = ACTIONS(627), + [anon_sym_CR_LF] = ACTIONS(627), + [anon_sym_SLASH_SLASH] = ACTIONS(497), + [anon_sym_SLASH_STAR] = ACTIONS(499), + [anon_sym_SEMI] = ACTIONS(627), + [anon_sym_DOT] = ACTIONS(627), + [anon_sym_as] = ACTIONS(627), + [anon_sym_LBRACE] = ACTIONS(623), + [anon_sym_COMMA] = ACTIONS(627), + [anon_sym_RBRACE] = ACTIONS(627), + [anon_sym_LPAREN] = ACTIONS(627), + [anon_sym___global] = ACTIONS(627), + [anon_sym_PIPE] = ACTIONS(627), + [anon_sym_fn] = ACTIONS(571), + [anon_sym_PLUS] = ACTIONS(627), + [anon_sym_DASH] = ACTIONS(627), + [anon_sym_STAR] = ACTIONS(627), + [anon_sym_SLASH] = ACTIONS(627), + [anon_sym_PERCENT] = ACTIONS(627), + [anon_sym_LT] = ACTIONS(627), + [anon_sym_GT] = ACTIONS(627), + [anon_sym_EQ_EQ] = ACTIONS(627), + [anon_sym_BANG_EQ] = ACTIONS(627), + [anon_sym_LT_EQ] = ACTIONS(627), + [anon_sym_GT_EQ] = ACTIONS(627), + [anon_sym_DOT_DOT_DOT] = ACTIONS(627), + [anon_sym_LBRACK] = ACTIONS(625), + [anon_sym_struct] = ACTIONS(575), + [anon_sym_pub] = ACTIONS(627), + [anon_sym_mut] = ACTIONS(627), + [anon_sym_PLUS_PLUS] = ACTIONS(627), + [anon_sym_DASH_DASH] = ACTIONS(627), + [anon_sym_QMARK] = ACTIONS(627), + [anon_sym_BANG] = ACTIONS(627), + [anon_sym_LBRACK2] = ACTIONS(627), + [anon_sym_CARET] = ACTIONS(627), + [anon_sym_AMP] = ACTIONS(627), + [anon_sym_LT_LT] = ACTIONS(627), + [anon_sym_GT_GT] = ACTIONS(627), + [anon_sym_GT_GT_GT] = ACTIONS(627), + [anon_sym_AMP_CARET] = ACTIONS(627), + [anon_sym_AMP_AMP] = ACTIONS(627), + [anon_sym_PIPE_PIPE] = ACTIONS(627), + [anon_sym_or] = ACTIONS(627), + [anon_sym_QMARK_DOT] = ACTIONS(627), + [anon_sym_POUND_LBRACK] = ACTIONS(627), + [anon_sym_is] = ACTIONS(627), + [anon_sym_BANGis] = ACTIONS(627), + [anon_sym_in] = ACTIONS(627), + [anon_sym_BANGin] = ACTIONS(627), + [anon_sym_shared] = ACTIONS(583), + [anon_sym_map_LBRACK] = ACTIONS(549), + [anon_sym_chan] = ACTIONS(87), + [anon_sym_thread] = ACTIONS(89), + [anon_sym_atomic] = ACTIONS(91), + [anon_sym_AT_LBRACK] = ACTIONS(627), + }, + [1392] = { + [sym_line_comment] = STATE(1392), + [sym_block_comment] = STATE(1392), + [sym_identifier] = ACTIONS(2880), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_SEMI] = ACTIONS(2878), + [anon_sym_DOT] = ACTIONS(2880), + [anon_sym_as] = ACTIONS(2880), + [anon_sym_LBRACE] = ACTIONS(2878), + [anon_sym_COMMA] = ACTIONS(2878), + [anon_sym_LPAREN] = ACTIONS(2878), + [anon_sym_PIPE] = ACTIONS(2880), + [anon_sym_fn] = ACTIONS(2880), + [anon_sym_PLUS] = ACTIONS(2880), + [anon_sym_DASH] = ACTIONS(2880), + [anon_sym_STAR] = ACTIONS(2878), + [anon_sym_SLASH] = ACTIONS(2880), + [anon_sym_PERCENT] = ACTIONS(2878), + [anon_sym_LT] = ACTIONS(2880), + [anon_sym_GT] = ACTIONS(2880), + [anon_sym_EQ_EQ] = ACTIONS(2878), + [anon_sym_BANG_EQ] = ACTIONS(2878), + [anon_sym_LT_EQ] = ACTIONS(2878), + [anon_sym_GT_EQ] = ACTIONS(2878), + [anon_sym_LBRACK] = ACTIONS(2878), + [anon_sym_RBRACK] = ACTIONS(3915), + [anon_sym_struct] = ACTIONS(2880), + [anon_sym_mut] = ACTIONS(2880), + [anon_sym_PLUS_PLUS] = ACTIONS(2878), + [anon_sym_DASH_DASH] = ACTIONS(2878), + [anon_sym_QMARK] = ACTIONS(2880), + [anon_sym_BANG] = ACTIONS(2880), + [anon_sym_go] = ACTIONS(2880), + [anon_sym_spawn] = ACTIONS(2880), + [anon_sym_json_DOTdecode] = ACTIONS(2878), + [anon_sym_LBRACK2] = ACTIONS(2880), + [anon_sym_TILDE] = ACTIONS(2878), + [anon_sym_CARET] = ACTIONS(2878), + [anon_sym_AMP] = ACTIONS(2880), + [anon_sym_LT_DASH] = ACTIONS(2878), + [anon_sym_LT_LT] = ACTIONS(2878), + [anon_sym_GT_GT] = ACTIONS(2880), + [anon_sym_GT_GT_GT] = ACTIONS(2878), + [anon_sym_AMP_CARET] = ACTIONS(2878), + [anon_sym_AMP_AMP] = ACTIONS(2878), + [anon_sym_PIPE_PIPE] = ACTIONS(2878), + [anon_sym_or] = ACTIONS(2880), + [sym_none] = ACTIONS(2880), + [sym_true] = ACTIONS(2880), + [sym_false] = ACTIONS(2880), + [sym_nil] = ACTIONS(2880), + [anon_sym_QMARK_DOT] = ACTIONS(2878), + [anon_sym_POUND_LBRACK] = ACTIONS(2878), + [anon_sym_if] = ACTIONS(2880), + [anon_sym_DOLLARif] = ACTIONS(2880), + [anon_sym_is] = ACTIONS(2880), + [anon_sym_BANGis] = ACTIONS(2878), + [anon_sym_in] = ACTIONS(2880), + [anon_sym_BANGin] = ACTIONS(2878), + [anon_sym_match] = ACTIONS(2880), + [anon_sym_select] = ACTIONS(2880), + [anon_sym_lock] = ACTIONS(2880), + [anon_sym_rlock] = ACTIONS(2880), + [anon_sym_unsafe] = ACTIONS(2880), + [anon_sym_sql] = ACTIONS(2880), + [sym_int_literal] = ACTIONS(2880), + [sym_float_literal] = ACTIONS(2878), + [sym_rune_literal] = ACTIONS(2878), + [sym_pseudo_compile_time_identifier] = ACTIONS(2880), + [anon_sym_shared] = ACTIONS(2880), + [anon_sym_map_LBRACK] = ACTIONS(2878), + [anon_sym_chan] = ACTIONS(2880), + [anon_sym_thread] = ACTIONS(2880), + [anon_sym_atomic] = ACTIONS(2880), + [sym___double_quote] = ACTIONS(2878), + [sym___single_quote] = ACTIONS(2878), + [sym___c_double_quote] = ACTIONS(2878), + [sym___c_single_quote] = ACTIONS(2878), + [sym___r_double_quote] = ACTIONS(2878), + [sym___r_single_quote] = ACTIONS(2878), + }, + [1393] = { + [sym_line_comment] = STATE(1393), + [sym_block_comment] = STATE(1393), + [sym_reference_expression] = STATE(4471), + [sym_type_reference_expression] = STATE(2142), + [sym_plain_type] = STATE(2194), + [sym__plain_type_without_special] = STATE(2183), + [sym_anon_struct_type] = STATE(2184), + [sym_multi_return_type] = STATE(2183), + [sym_result_type] = STATE(2183), + [sym_option_type] = STATE(2183), + [sym_qualified_type] = STATE(2142), + [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(3918), + [anon_sym_LF] = ACTIONS(589), + [anon_sym_CR] = ACTIONS(589), + [anon_sym_CR_LF] = ACTIONS(589), + [anon_sym_SLASH_SLASH] = ACTIONS(497), + [anon_sym_SLASH_STAR] = ACTIONS(499), + [anon_sym_SEMI] = ACTIONS(589), + [anon_sym_DOT] = ACTIONS(589), + [anon_sym_as] = ACTIONS(589), + [anon_sym_COMMA] = ACTIONS(589), + [anon_sym_RBRACE] = ACTIONS(589), + [anon_sym_LPAREN] = ACTIONS(3920), + [anon_sym___global] = ACTIONS(589), + [anon_sym_PIPE] = ACTIONS(589), + [anon_sym_fn] = ACTIONS(3922), + [anon_sym_PLUS] = ACTIONS(589), + [anon_sym_DASH] = ACTIONS(589), + [anon_sym_STAR] = ACTIONS(3924), + [anon_sym_SLASH] = ACTIONS(589), + [anon_sym_PERCENT] = ACTIONS(589), + [anon_sym_LT] = ACTIONS(589), + [anon_sym_GT] = ACTIONS(589), + [anon_sym_EQ_EQ] = ACTIONS(589), + [anon_sym_BANG_EQ] = ACTIONS(589), + [anon_sym_LT_EQ] = ACTIONS(589), + [anon_sym_GT_EQ] = ACTIONS(589), + [anon_sym_DOT_DOT_DOT] = ACTIONS(589), + [anon_sym_LBRACK] = ACTIONS(585), + [anon_sym_struct] = ACTIONS(3926), + [anon_sym_pub] = ACTIONS(589), + [anon_sym_mut] = ACTIONS(589), + [anon_sym_PLUS_PLUS] = ACTIONS(589), + [anon_sym_DASH_DASH] = ACTIONS(589), + [anon_sym_QMARK] = ACTIONS(3928), + [anon_sym_BANG] = ACTIONS(3930), + [anon_sym_LBRACK2] = ACTIONS(3932), + [anon_sym_CARET] = ACTIONS(589), + [anon_sym_AMP] = ACTIONS(3934), + [anon_sym_LT_LT] = ACTIONS(589), + [anon_sym_GT_GT] = ACTIONS(589), + [anon_sym_GT_GT_GT] = ACTIONS(589), + [anon_sym_AMP_CARET] = ACTIONS(589), + [anon_sym_AMP_AMP] = ACTIONS(589), + [anon_sym_PIPE_PIPE] = ACTIONS(589), + [anon_sym_or] = ACTIONS(589), + [anon_sym_QMARK_DOT] = ACTIONS(589), + [anon_sym_POUND_LBRACK] = ACTIONS(589), + [anon_sym_is] = ACTIONS(589), + [anon_sym_BANGis] = ACTIONS(589), + [anon_sym_in] = ACTIONS(589), + [anon_sym_BANGin] = ACTIONS(589), + [anon_sym_shared] = ACTIONS(3936), + [anon_sym_map_LBRACK] = ACTIONS(3938), + [anon_sym_chan] = ACTIONS(3940), + [anon_sym_thread] = ACTIONS(3942), + [anon_sym_atomic] = ACTIONS(3944), + [anon_sym_AT_LBRACK] = ACTIONS(589), + }, + [1394] = { + [sym_line_comment] = STATE(1394), + [sym_block_comment] = STATE(1394), + [sym_reference_expression] = STATE(4471), + [sym_type_reference_expression] = STATE(2142), + [sym_plain_type] = STATE(2235), + [sym__plain_type_without_special] = STATE(2183), + [sym_anon_struct_type] = STATE(2184), + [sym_multi_return_type] = STATE(2183), + [sym_result_type] = STATE(2183), + [sym_option_type] = STATE(2183), + [sym_qualified_type] = STATE(2142), + [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(3918), [anon_sym_LF] = ACTIONS(623), [anon_sym_CR] = ACTIONS(623), [anon_sym_CR_LF] = ACTIONS(623), @@ -172270,16 +172731,15 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_SEMI] = ACTIONS(623), [anon_sym_DOT] = ACTIONS(623), [anon_sym_as] = ACTIONS(623), - [anon_sym_LBRACE] = ACTIONS(567), [anon_sym_COMMA] = ACTIONS(623), [anon_sym_RBRACE] = ACTIONS(623), - [anon_sym_LPAREN] = ACTIONS(623), + [anon_sym_LPAREN] = ACTIONS(3920), [anon_sym___global] = ACTIONS(623), [anon_sym_PIPE] = ACTIONS(623), - [anon_sym_fn] = ACTIONS(603), + [anon_sym_fn] = ACTIONS(3922), [anon_sym_PLUS] = ACTIONS(623), [anon_sym_DASH] = ACTIONS(623), - [anon_sym_STAR] = ACTIONS(623), + [anon_sym_STAR] = ACTIONS(3924), [anon_sym_SLASH] = ACTIONS(623), [anon_sym_PERCENT] = ACTIONS(623), [anon_sym_LT] = ACTIONS(623), @@ -172290,16 +172750,16 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_GT_EQ] = ACTIONS(623), [anon_sym_DOT_DOT_DOT] = ACTIONS(623), [anon_sym_LBRACK] = ACTIONS(621), - [anon_sym_struct] = ACTIONS(607), + [anon_sym_struct] = ACTIONS(3926), [anon_sym_pub] = ACTIONS(623), [anon_sym_mut] = ACTIONS(623), [anon_sym_PLUS_PLUS] = ACTIONS(623), [anon_sym_DASH_DASH] = ACTIONS(623), - [anon_sym_QMARK] = ACTIONS(623), - [anon_sym_BANG] = ACTIONS(623), - [anon_sym_LBRACK2] = ACTIONS(623), + [anon_sym_QMARK] = ACTIONS(3928), + [anon_sym_BANG] = ACTIONS(3930), + [anon_sym_LBRACK2] = ACTIONS(3932), [anon_sym_CARET] = ACTIONS(623), - [anon_sym_AMP] = ACTIONS(623), + [anon_sym_AMP] = ACTIONS(3934), [anon_sym_LT_LT] = ACTIONS(623), [anon_sym_GT_GT] = ACTIONS(623), [anon_sym_GT_GT_GT] = ACTIONS(623), @@ -172313,606 +172773,37 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BANGis] = ACTIONS(623), [anon_sym_in] = ACTIONS(623), [anon_sym_BANGin] = ACTIONS(623), - [anon_sym_shared] = ACTIONS(615), - [anon_sym_map_LBRACK] = ACTIONS(549), - [anon_sym_chan] = ACTIONS(87), - [anon_sym_thread] = ACTIONS(89), - [anon_sym_atomic] = ACTIONS(91), + [anon_sym_shared] = ACTIONS(3936), + [anon_sym_map_LBRACK] = ACTIONS(3938), + [anon_sym_chan] = ACTIONS(3940), + [anon_sym_thread] = ACTIONS(3942), + [anon_sym_atomic] = ACTIONS(3944), [anon_sym_AT_LBRACK] = ACTIONS(623), }, - [1390] = { - [sym_line_comment] = STATE(1390), - [sym_block_comment] = STATE(1390), - [sym_identifier] = ACTIONS(2663), - [anon_sym_SLASH_SLASH] = ACTIONS(3), - [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(2663), - [anon_sym_as] = ACTIONS(2663), - [anon_sym_LBRACE] = ACTIONS(2661), - [anon_sym_COMMA] = ACTIONS(1953), - [anon_sym_RBRACE] = ACTIONS(2661), - [anon_sym_LPAREN] = ACTIONS(2661), - [anon_sym_PIPE] = ACTIONS(2663), - [anon_sym_fn] = ACTIONS(2663), - [anon_sym_PLUS] = ACTIONS(2663), - [anon_sym_DASH] = ACTIONS(2663), - [anon_sym_STAR] = ACTIONS(2661), - [anon_sym_SLASH] = ACTIONS(2663), - [anon_sym_PERCENT] = ACTIONS(2661), - [anon_sym_LT] = ACTIONS(2663), - [anon_sym_GT] = ACTIONS(2663), - [anon_sym_EQ_EQ] = ACTIONS(2661), - [anon_sym_BANG_EQ] = ACTIONS(2661), - [anon_sym_LT_EQ] = ACTIONS(2661), - [anon_sym_GT_EQ] = ACTIONS(2661), - [anon_sym_LBRACK] = ACTIONS(2661), - [anon_sym_struct] = ACTIONS(2663), - [anon_sym_mut] = ACTIONS(2663), - [anon_sym_COLON] = ACTIONS(2661), - [anon_sym_PLUS_PLUS] = ACTIONS(2661), - [anon_sym_DASH_DASH] = ACTIONS(2661), - [anon_sym_QMARK] = ACTIONS(2663), - [anon_sym_BANG] = ACTIONS(2663), - [anon_sym_go] = ACTIONS(2663), - [anon_sym_spawn] = ACTIONS(2663), - [anon_sym_json_DOTdecode] = ACTIONS(2661), - [anon_sym_LBRACK2] = ACTIONS(2663), - [anon_sym_TILDE] = ACTIONS(2661), - [anon_sym_CARET] = ACTIONS(2661), - [anon_sym_AMP] = ACTIONS(2663), - [anon_sym_LT_DASH] = ACTIONS(2661), - [anon_sym_LT_LT] = ACTIONS(2661), - [anon_sym_GT_GT] = ACTIONS(2663), - [anon_sym_GT_GT_GT] = ACTIONS(2661), - [anon_sym_AMP_CARET] = ACTIONS(2661), - [anon_sym_AMP_AMP] = ACTIONS(2661), - [anon_sym_PIPE_PIPE] = ACTIONS(2661), - [anon_sym_or] = ACTIONS(2663), - [sym_none] = ACTIONS(2663), - [sym_true] = ACTIONS(2663), - [sym_false] = ACTIONS(2663), - [sym_nil] = ACTIONS(2663), - [anon_sym_QMARK_DOT] = ACTIONS(2661), - [anon_sym_POUND_LBRACK] = ACTIONS(2661), - [anon_sym_if] = ACTIONS(2663), - [anon_sym_DOLLARif] = ACTIONS(2663), - [anon_sym_is] = ACTIONS(2663), - [anon_sym_BANGis] = ACTIONS(2661), - [anon_sym_in] = ACTIONS(2663), - [anon_sym_BANGin] = ACTIONS(2661), - [anon_sym_match] = ACTIONS(2663), - [anon_sym_select] = ACTIONS(2663), - [anon_sym_lock] = ACTIONS(2663), - [anon_sym_rlock] = ACTIONS(2663), - [anon_sym_unsafe] = ACTIONS(2663), - [anon_sym_sql] = ACTIONS(2663), - [sym_int_literal] = ACTIONS(2663), - [sym_float_literal] = ACTIONS(2661), - [sym_rune_literal] = ACTIONS(2661), - [sym_pseudo_compile_time_identifier] = ACTIONS(2663), - [anon_sym_shared] = ACTIONS(2663), - [anon_sym_map_LBRACK] = ACTIONS(2661), - [anon_sym_chan] = ACTIONS(2663), - [anon_sym_thread] = ACTIONS(2663), - [anon_sym_atomic] = ACTIONS(2663), - [sym___double_quote] = ACTIONS(2661), - [sym___single_quote] = ACTIONS(2661), - [sym___c_double_quote] = ACTIONS(2661), - [sym___c_single_quote] = ACTIONS(2661), - [sym___r_double_quote] = ACTIONS(2661), - [sym___r_single_quote] = ACTIONS(2661), - }, - [1391] = { - [sym_line_comment] = STATE(1391), - [sym_block_comment] = STATE(1391), - [sym_identifier] = ACTIONS(1917), - [anon_sym_SLASH_SLASH] = ACTIONS(3), - [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1917), - [anon_sym_as] = ACTIONS(1917), - [anon_sym_LBRACE] = ACTIONS(1915), - [anon_sym_COMMA] = ACTIONS(1953), - [anon_sym_RBRACE] = ACTIONS(1915), - [anon_sym_LPAREN] = ACTIONS(1915), - [anon_sym_PIPE] = ACTIONS(1917), - [anon_sym_fn] = ACTIONS(1917), - [anon_sym_PLUS] = ACTIONS(1917), - [anon_sym_DASH] = ACTIONS(1917), - [anon_sym_STAR] = ACTIONS(1915), - [anon_sym_SLASH] = ACTIONS(1917), - [anon_sym_PERCENT] = ACTIONS(1915), - [anon_sym_LT] = ACTIONS(1917), - [anon_sym_GT] = ACTIONS(1917), - [anon_sym_EQ_EQ] = ACTIONS(1915), - [anon_sym_BANG_EQ] = ACTIONS(1915), - [anon_sym_LT_EQ] = ACTIONS(1915), - [anon_sym_GT_EQ] = ACTIONS(1915), - [anon_sym_LBRACK] = ACTIONS(1915), - [anon_sym_struct] = ACTIONS(1917), - [anon_sym_mut] = ACTIONS(1917), - [anon_sym_COLON] = ACTIONS(1915), - [anon_sym_PLUS_PLUS] = ACTIONS(1915), - [anon_sym_DASH_DASH] = ACTIONS(1915), - [anon_sym_QMARK] = ACTIONS(1917), - [anon_sym_BANG] = ACTIONS(1917), - [anon_sym_go] = ACTIONS(1917), - [anon_sym_spawn] = ACTIONS(1917), - [anon_sym_json_DOTdecode] = ACTIONS(1915), - [anon_sym_LBRACK2] = ACTIONS(1917), - [anon_sym_TILDE] = ACTIONS(1915), - [anon_sym_CARET] = ACTIONS(1915), - [anon_sym_AMP] = ACTIONS(1917), - [anon_sym_LT_DASH] = ACTIONS(1915), - [anon_sym_LT_LT] = ACTIONS(1915), - [anon_sym_GT_GT] = ACTIONS(1917), - [anon_sym_GT_GT_GT] = ACTIONS(1915), - [anon_sym_AMP_CARET] = ACTIONS(1915), - [anon_sym_AMP_AMP] = ACTIONS(1915), - [anon_sym_PIPE_PIPE] = ACTIONS(1915), - [anon_sym_or] = ACTIONS(1917), - [sym_none] = ACTIONS(1917), - [sym_true] = ACTIONS(1917), - [sym_false] = ACTIONS(1917), - [sym_nil] = ACTIONS(1917), - [anon_sym_QMARK_DOT] = ACTIONS(1915), - [anon_sym_POUND_LBRACK] = ACTIONS(1915), - [anon_sym_if] = ACTIONS(1917), - [anon_sym_DOLLARif] = ACTIONS(1917), - [anon_sym_is] = ACTIONS(1917), - [anon_sym_BANGis] = ACTIONS(1915), - [anon_sym_in] = ACTIONS(1917), - [anon_sym_BANGin] = ACTIONS(1915), - [anon_sym_match] = ACTIONS(1917), - [anon_sym_select] = ACTIONS(1917), - [anon_sym_lock] = ACTIONS(1917), - [anon_sym_rlock] = ACTIONS(1917), - [anon_sym_unsafe] = ACTIONS(1917), - [anon_sym_sql] = ACTIONS(1917), - [sym_int_literal] = ACTIONS(1917), - [sym_float_literal] = ACTIONS(1915), - [sym_rune_literal] = ACTIONS(1915), - [sym_pseudo_compile_time_identifier] = ACTIONS(1917), - [anon_sym_shared] = ACTIONS(1917), - [anon_sym_map_LBRACK] = ACTIONS(1915), - [anon_sym_chan] = ACTIONS(1917), - [anon_sym_thread] = ACTIONS(1917), - [anon_sym_atomic] = ACTIONS(1917), - [sym___double_quote] = ACTIONS(1915), - [sym___single_quote] = ACTIONS(1915), - [sym___c_double_quote] = ACTIONS(1915), - [sym___c_single_quote] = ACTIONS(1915), - [sym___r_double_quote] = ACTIONS(1915), - [sym___r_single_quote] = ACTIONS(1915), - }, - [1392] = { - [sym_line_comment] = STATE(1392), - [sym_block_comment] = STATE(1392), - [sym_reference_expression] = STATE(4495), - [sym_type_reference_expression] = STATE(3541), - [sym_plain_type] = STATE(2386), - [sym__plain_type_without_special] = STATE(2302), - [sym_anon_struct_type] = STATE(2303), - [sym_multi_return_type] = STATE(2302), - [sym_result_type] = STATE(2302), - [sym_option_type] = STATE(2302), - [sym_qualified_type] = STATE(3541), - [sym_fixed_array_type] = STATE(2303), - [sym_array_type] = STATE(2303), - [sym_pointer_type] = STATE(2303), - [sym_wrong_pointer_type] = STATE(2303), - [sym_map_type] = STATE(2303), - [sym_channel_type] = STATE(2303), - [sym_shared_type] = STATE(2303), - [sym_thread_type] = STATE(2303), - [sym_atomic_type] = STATE(2303), - [sym_generic_type] = STATE(2303), - [sym_function_type] = STATE(2303), - [sym_identifier] = ACTIONS(597), - [anon_sym_LF] = ACTIONS(599), - [anon_sym_CR] = ACTIONS(599), - [anon_sym_CR_LF] = ACTIONS(599), - [anon_sym_SLASH_SLASH] = ACTIONS(497), - [anon_sym_SLASH_STAR] = ACTIONS(499), - [anon_sym_SEMI] = ACTIONS(599), - [anon_sym_DOT] = ACTIONS(599), - [anon_sym_as] = ACTIONS(599), - [anon_sym_COMMA] = ACTIONS(599), - [anon_sym_RBRACE] = ACTIONS(599), - [anon_sym_LPAREN] = ACTIONS(601), - [anon_sym___global] = ACTIONS(599), - [anon_sym_PIPE] = ACTIONS(599), - [anon_sym_fn] = ACTIONS(603), - [anon_sym_PLUS] = ACTIONS(599), - [anon_sym_DASH] = ACTIONS(599), - [anon_sym_STAR] = ACTIONS(605), - [anon_sym_SLASH] = ACTIONS(599), - [anon_sym_PERCENT] = ACTIONS(599), - [anon_sym_LT] = ACTIONS(599), - [anon_sym_GT] = ACTIONS(599), - [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(595), - [anon_sym_struct] = ACTIONS(607), - [anon_sym_pub] = ACTIONS(599), - [anon_sym_mut] = ACTIONS(599), - [anon_sym_PLUS_PLUS] = ACTIONS(599), - [anon_sym_DASH_DASH] = ACTIONS(599), - [anon_sym_QMARK] = ACTIONS(515), - [anon_sym_BANG] = ACTIONS(3912), - [anon_sym_LBRACK2] = ACTIONS(611), - [anon_sym_CARET] = ACTIONS(599), - [anon_sym_AMP] = ACTIONS(613), - [anon_sym_LT_LT] = ACTIONS(599), - [anon_sym_GT_GT] = ACTIONS(599), - [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(599), - [anon_sym_QMARK_DOT] = ACTIONS(599), - [anon_sym_POUND_LBRACK] = ACTIONS(599), - [anon_sym_is] = ACTIONS(599), - [anon_sym_BANGis] = ACTIONS(599), - [anon_sym_in] = ACTIONS(599), - [anon_sym_BANGin] = ACTIONS(599), - [anon_sym_shared] = ACTIONS(615), - [anon_sym_map_LBRACK] = ACTIONS(549), - [anon_sym_chan] = ACTIONS(87), - [anon_sym_thread] = ACTIONS(89), - [anon_sym_atomic] = ACTIONS(91), - [anon_sym_AT_LBRACK] = ACTIONS(599), - }, - [1393] = { - [sym_line_comment] = STATE(1393), - [sym_block_comment] = STATE(1393), - [sym_identifier] = ACTIONS(2761), - [anon_sym_SLASH_SLASH] = ACTIONS(3), - [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(2761), - [anon_sym_as] = ACTIONS(2761), - [anon_sym_LBRACE] = ACTIONS(2759), - [anon_sym_COMMA] = ACTIONS(2759), - [anon_sym_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(3914), - [anon_sym_struct] = ACTIONS(2761), - [anon_sym_mut] = ACTIONS(2761), - [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), - }, - [1394] = { - [sym_line_comment] = STATE(1394), - [sym_block_comment] = STATE(1394), - [sym_identifier] = ACTIONS(2761), - [anon_sym_SLASH_SLASH] = ACTIONS(3), - [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(2763), - [anon_sym_as] = ACTIONS(2761), - [anon_sym_LBRACE] = ACTIONS(2759), - [anon_sym_COMMA] = 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(3914), - [anon_sym_struct] = ACTIONS(2761), - [anon_sym_mut] = ACTIONS(2761), - [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), - }, - [1395] = { - [sym_line_comment] = STATE(1395), - [sym_block_comment] = STATE(1395), - [sym_identifier] = ACTIONS(2663), - [anon_sym_SLASH_SLASH] = ACTIONS(3), - [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(2663), - [anon_sym_as] = ACTIONS(2663), - [anon_sym_LBRACE] = ACTIONS(2661), - [anon_sym_COMMA] = ACTIONS(2661), - [anon_sym_LPAREN] = ACTIONS(2661), - [anon_sym_PIPE] = ACTIONS(2663), - [anon_sym_fn] = ACTIONS(2663), - [anon_sym_PLUS] = ACTIONS(2663), - [anon_sym_DASH] = ACTIONS(2663), - [anon_sym_STAR] = ACTIONS(2661), - [anon_sym_SLASH] = ACTIONS(2663), - [anon_sym_PERCENT] = ACTIONS(2661), - [anon_sym_LT] = ACTIONS(2663), - [anon_sym_GT] = ACTIONS(2663), - [anon_sym_EQ_EQ] = ACTIONS(2661), - [anon_sym_BANG_EQ] = ACTIONS(2661), - [anon_sym_LT_EQ] = ACTIONS(2661), - [anon_sym_GT_EQ] = ACTIONS(2661), - [anon_sym_LBRACK] = ACTIONS(2661), - [anon_sym_RBRACK] = ACTIONS(2661), - [anon_sym_struct] = ACTIONS(2663), - [anon_sym_mut] = ACTIONS(2663), - [anon_sym_PLUS_PLUS] = ACTIONS(2661), - [anon_sym_DASH_DASH] = ACTIONS(2661), - [anon_sym_QMARK] = ACTIONS(2663), - [anon_sym_BANG] = ACTIONS(2663), - [anon_sym_go] = ACTIONS(2663), - [anon_sym_spawn] = ACTIONS(2663), - [anon_sym_json_DOTdecode] = ACTIONS(2661), - [anon_sym_LBRACK2] = ACTIONS(2663), - [anon_sym_TILDE] = ACTIONS(2661), - [anon_sym_CARET] = ACTIONS(2661), - [anon_sym_AMP] = ACTIONS(2663), - [anon_sym_LT_DASH] = ACTIONS(2661), - [anon_sym_LT_LT] = ACTIONS(2661), - [anon_sym_GT_GT] = ACTIONS(2663), - [anon_sym_GT_GT_GT] = ACTIONS(2661), - [anon_sym_AMP_CARET] = ACTIONS(2661), - [anon_sym_AMP_AMP] = ACTIONS(2661), - [anon_sym_PIPE_PIPE] = ACTIONS(2661), - [anon_sym_or] = ACTIONS(2663), - [sym_none] = ACTIONS(2663), - [sym_true] = ACTIONS(2663), - [sym_false] = ACTIONS(2663), - [sym_nil] = ACTIONS(2663), - [anon_sym_QMARK_DOT] = ACTIONS(2661), - [anon_sym_POUND_LBRACK] = ACTIONS(2661), - [anon_sym_if] = ACTIONS(2663), - [anon_sym_DOLLARif] = ACTIONS(2663), - [anon_sym_is] = ACTIONS(2663), - [anon_sym_BANGis] = ACTIONS(2661), - [anon_sym_in] = ACTIONS(2663), - [anon_sym_BANGin] = ACTIONS(2661), - [anon_sym_match] = ACTIONS(2663), - [anon_sym_select] = ACTIONS(2663), - [anon_sym_lock] = ACTIONS(2663), - [anon_sym_rlock] = ACTIONS(2663), - [anon_sym_unsafe] = ACTIONS(2663), - [anon_sym_sql] = ACTIONS(2663), - [sym_int_literal] = ACTIONS(2663), - [sym_float_literal] = ACTIONS(2661), - [sym_rune_literal] = ACTIONS(2661), - [sym_pseudo_compile_time_identifier] = ACTIONS(2663), - [anon_sym_shared] = ACTIONS(2663), - [anon_sym_map_LBRACK] = ACTIONS(2661), - [anon_sym_chan] = ACTIONS(2663), - [anon_sym_thread] = ACTIONS(2663), - [anon_sym_atomic] = ACTIONS(2663), - [sym___double_quote] = ACTIONS(2661), - [sym___single_quote] = ACTIONS(2661), - [sym___c_double_quote] = ACTIONS(2661), - [sym___c_single_quote] = ACTIONS(2661), - [sym___r_double_quote] = ACTIONS(2661), - [sym___r_single_quote] = ACTIONS(2661), - }, - [1396] = { - [sym_line_comment] = STATE(1396), - [sym_block_comment] = STATE(1396), - [sym_identifier] = ACTIONS(1917), - [anon_sym_SLASH_SLASH] = ACTIONS(3), - [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1917), - [anon_sym_as] = ACTIONS(1917), - [anon_sym_LBRACE] = ACTIONS(1915), - [anon_sym_COMMA] = ACTIONS(1915), - [anon_sym_LPAREN] = ACTIONS(1915), - [anon_sym_PIPE] = ACTIONS(1917), - [anon_sym_fn] = ACTIONS(1917), - [anon_sym_PLUS] = ACTIONS(1917), - [anon_sym_DASH] = ACTIONS(1917), - [anon_sym_STAR] = ACTIONS(1915), - [anon_sym_SLASH] = ACTIONS(1917), - [anon_sym_PERCENT] = ACTIONS(1915), - [anon_sym_LT] = ACTIONS(1917), - [anon_sym_GT] = ACTIONS(1917), - [anon_sym_EQ_EQ] = ACTIONS(1915), - [anon_sym_BANG_EQ] = ACTIONS(1915), - [anon_sym_LT_EQ] = ACTIONS(1915), - [anon_sym_GT_EQ] = ACTIONS(1915), - [anon_sym_LBRACK] = ACTIONS(1915), - [anon_sym_RBRACK] = ACTIONS(1915), - [anon_sym_struct] = ACTIONS(1917), - [anon_sym_mut] = ACTIONS(1917), - [anon_sym_PLUS_PLUS] = ACTIONS(1915), - [anon_sym_DASH_DASH] = ACTIONS(1915), - [anon_sym_QMARK] = ACTIONS(1917), - [anon_sym_BANG] = ACTIONS(1917), - [anon_sym_go] = ACTIONS(1917), - [anon_sym_spawn] = ACTIONS(1917), - [anon_sym_json_DOTdecode] = ACTIONS(1915), - [anon_sym_LBRACK2] = ACTIONS(1917), - [anon_sym_TILDE] = ACTIONS(1915), - [anon_sym_CARET] = ACTIONS(1915), - [anon_sym_AMP] = ACTIONS(1917), - [anon_sym_LT_DASH] = ACTIONS(1915), - [anon_sym_LT_LT] = ACTIONS(1915), - [anon_sym_GT_GT] = ACTIONS(1917), - [anon_sym_GT_GT_GT] = ACTIONS(1915), - [anon_sym_AMP_CARET] = ACTIONS(1915), - [anon_sym_AMP_AMP] = ACTIONS(1915), - [anon_sym_PIPE_PIPE] = ACTIONS(1915), - [anon_sym_or] = ACTIONS(1917), - [sym_none] = ACTIONS(1917), - [sym_true] = ACTIONS(1917), - [sym_false] = ACTIONS(1917), - [sym_nil] = ACTIONS(1917), - [anon_sym_QMARK_DOT] = ACTIONS(1915), - [anon_sym_POUND_LBRACK] = ACTIONS(1915), - [anon_sym_if] = ACTIONS(1917), - [anon_sym_DOLLARif] = ACTIONS(1917), - [anon_sym_is] = ACTIONS(1917), - [anon_sym_BANGis] = ACTIONS(1915), - [anon_sym_in] = ACTIONS(1917), - [anon_sym_BANGin] = ACTIONS(1915), - [anon_sym_match] = ACTIONS(1917), - [anon_sym_select] = ACTIONS(1917), - [anon_sym_lock] = ACTIONS(1917), - [anon_sym_rlock] = ACTIONS(1917), - [anon_sym_unsafe] = ACTIONS(1917), - [anon_sym_sql] = ACTIONS(1917), - [sym_int_literal] = ACTIONS(1917), - [sym_float_literal] = ACTIONS(1915), - [sym_rune_literal] = ACTIONS(1915), - [sym_pseudo_compile_time_identifier] = ACTIONS(1917), - [anon_sym_shared] = ACTIONS(1917), - [anon_sym_map_LBRACK] = ACTIONS(1915), - [anon_sym_chan] = ACTIONS(1917), - [anon_sym_thread] = ACTIONS(1917), - [anon_sym_atomic] = ACTIONS(1917), - [sym___double_quote] = ACTIONS(1915), - [sym___single_quote] = ACTIONS(1915), - [sym___c_double_quote] = ACTIONS(1915), - [sym___c_single_quote] = ACTIONS(1915), - [sym___r_double_quote] = ACTIONS(1915), - [sym___r_single_quote] = ACTIONS(1915), - }, - [1397] = { - [sym_line_comment] = STATE(1397), - [sym_block_comment] = STATE(1397), - [sym_reference_expression] = STATE(4468), - [sym_type_reference_expression] = STATE(2140), - [sym_plain_type] = STATE(2235), - [sym__plain_type_without_special] = STATE(2178), - [sym_anon_struct_type] = STATE(2179), - [sym_multi_return_type] = STATE(2178), - [sym_result_type] = STATE(2178), - [sym_option_type] = STATE(2178), - [sym_qualified_type] = STATE(2140), - [sym_fixed_array_type] = STATE(2179), - [sym_array_type] = STATE(2179), - [sym_pointer_type] = STATE(2179), - [sym_wrong_pointer_type] = STATE(2179), - [sym_map_type] = STATE(2179), - [sym_channel_type] = STATE(2179), - [sym_shared_type] = STATE(2179), - [sym_thread_type] = STATE(2179), - [sym_atomic_type] = STATE(2179), - [sym_generic_type] = STATE(2179), - [sym_function_type] = STATE(2179), - [sym_identifier] = ACTIONS(3917), + [1395] = { + [sym_line_comment] = STATE(1395), + [sym_block_comment] = STATE(1395), + [sym_reference_expression] = STATE(4498), + [sym_type_reference_expression] = STATE(3460), + [sym_plain_type] = STATE(2320), + [sym__plain_type_without_special] = STATE(2360), + [sym_anon_struct_type] = STATE(2362), + [sym_multi_return_type] = STATE(2360), + [sym_result_type] = STATE(2360), + [sym_option_type] = STATE(2360), + [sym_qualified_type] = STATE(3460), + [sym_fixed_array_type] = STATE(2362), + [sym_array_type] = STATE(2362), + [sym_pointer_type] = STATE(2362), + [sym_wrong_pointer_type] = STATE(2362), + [sym_map_type] = STATE(2362), + [sym_channel_type] = STATE(2362), + [sym_shared_type] = STATE(2362), + [sym_thread_type] = STATE(2362), + [sym_atomic_type] = STATE(2362), + [sym_generic_type] = STATE(2362), + [sym_function_type] = STATE(2362), + [sym_identifier] = ACTIONS(565), [anon_sym_LF] = ACTIONS(567), [anon_sym_CR] = ACTIONS(567), [anon_sym_CR_LF] = ACTIONS(567), @@ -172923,13 +172814,13 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_as] = ACTIONS(567), [anon_sym_COMMA] = ACTIONS(567), [anon_sym_RBRACE] = ACTIONS(567), - [anon_sym_LPAREN] = ACTIONS(3919), + [anon_sym_LPAREN] = ACTIONS(569), [anon_sym___global] = ACTIONS(567), [anon_sym_PIPE] = ACTIONS(567), - [anon_sym_fn] = ACTIONS(3921), + [anon_sym_fn] = ACTIONS(571), [anon_sym_PLUS] = ACTIONS(567), [anon_sym_DASH] = ACTIONS(567), - [anon_sym_STAR] = ACTIONS(3923), + [anon_sym_STAR] = ACTIONS(573), [anon_sym_SLASH] = ACTIONS(567), [anon_sym_PERCENT] = ACTIONS(567), [anon_sym_LT] = ACTIONS(567), @@ -172940,16 +172831,16 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_GT_EQ] = ACTIONS(567), [anon_sym_DOT_DOT_DOT] = ACTIONS(567), [anon_sym_LBRACK] = ACTIONS(563), - [anon_sym_struct] = ACTIONS(3925), + [anon_sym_struct] = ACTIONS(575), [anon_sym_pub] = ACTIONS(567), [anon_sym_mut] = ACTIONS(567), [anon_sym_PLUS_PLUS] = ACTIONS(567), [anon_sym_DASH_DASH] = ACTIONS(567), - [anon_sym_QMARK] = ACTIONS(3927), - [anon_sym_BANG] = ACTIONS(3929), - [anon_sym_LBRACK2] = ACTIONS(3931), + [anon_sym_QMARK] = ACTIONS(515), + [anon_sym_BANG] = ACTIONS(3946), + [anon_sym_LBRACK2] = ACTIONS(579), [anon_sym_CARET] = ACTIONS(567), - [anon_sym_AMP] = ACTIONS(3933), + [anon_sym_AMP] = ACTIONS(581), [anon_sym_LT_LT] = ACTIONS(567), [anon_sym_GT_GT] = ACTIONS(567), [anon_sym_GT_GT_GT] = ACTIONS(567), @@ -172963,118 +172854,199 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BANGis] = ACTIONS(567), [anon_sym_in] = ACTIONS(567), [anon_sym_BANGin] = ACTIONS(567), - [anon_sym_shared] = ACTIONS(3935), - [anon_sym_map_LBRACK] = ACTIONS(3937), - [anon_sym_chan] = ACTIONS(3939), - [anon_sym_thread] = ACTIONS(3941), - [anon_sym_atomic] = ACTIONS(3943), + [anon_sym_shared] = ACTIONS(583), + [anon_sym_map_LBRACK] = ACTIONS(549), + [anon_sym_chan] = ACTIONS(87), + [anon_sym_thread] = ACTIONS(89), + [anon_sym_atomic] = ACTIONS(91), [anon_sym_AT_LBRACK] = ACTIONS(567), }, + [1396] = { + [sym_line_comment] = STATE(1396), + [sym_block_comment] = STATE(1396), + [sym_identifier] = ACTIONS(1809), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(1809), + [anon_sym_as] = ACTIONS(1809), + [anon_sym_LBRACE] = ACTIONS(1807), + [anon_sym_COMMA] = ACTIONS(1807), + [anon_sym_LPAREN] = ACTIONS(1807), + [anon_sym_PIPE] = ACTIONS(1809), + [anon_sym_fn] = ACTIONS(1809), + [anon_sym_PLUS] = ACTIONS(1809), + [anon_sym_DASH] = ACTIONS(1809), + [anon_sym_STAR] = ACTIONS(1807), + [anon_sym_SLASH] = ACTIONS(1809), + [anon_sym_PERCENT] = ACTIONS(1807), + [anon_sym_LT] = ACTIONS(1809), + [anon_sym_GT] = ACTIONS(1809), + [anon_sym_EQ_EQ] = ACTIONS(1807), + [anon_sym_BANG_EQ] = ACTIONS(1807), + [anon_sym_LT_EQ] = ACTIONS(1807), + [anon_sym_GT_EQ] = ACTIONS(1807), + [anon_sym_LBRACK] = ACTIONS(1807), + [anon_sym_RBRACK] = ACTIONS(1807), + [anon_sym_struct] = ACTIONS(1809), + [anon_sym_mut] = ACTIONS(1809), + [anon_sym_PLUS_PLUS] = ACTIONS(1807), + [anon_sym_DASH_DASH] = ACTIONS(1807), + [anon_sym_QMARK] = ACTIONS(1809), + [anon_sym_BANG] = ACTIONS(1809), + [anon_sym_go] = ACTIONS(1809), + [anon_sym_spawn] = ACTIONS(1809), + [anon_sym_json_DOTdecode] = ACTIONS(1807), + [anon_sym_LBRACK2] = ACTIONS(1809), + [anon_sym_TILDE] = ACTIONS(1807), + [anon_sym_CARET] = ACTIONS(1807), + [anon_sym_AMP] = ACTIONS(1809), + [anon_sym_LT_DASH] = ACTIONS(1807), + [anon_sym_LT_LT] = ACTIONS(1807), + [anon_sym_GT_GT] = ACTIONS(1809), + [anon_sym_GT_GT_GT] = ACTIONS(1807), + [anon_sym_AMP_CARET] = ACTIONS(1807), + [anon_sym_AMP_AMP] = ACTIONS(1807), + [anon_sym_PIPE_PIPE] = ACTIONS(1807), + [anon_sym_or] = ACTIONS(1809), + [sym_none] = ACTIONS(1809), + [sym_true] = ACTIONS(1809), + [sym_false] = ACTIONS(1809), + [sym_nil] = ACTIONS(1809), + [anon_sym_QMARK_DOT] = ACTIONS(1807), + [anon_sym_POUND_LBRACK] = ACTIONS(1807), + [anon_sym_if] = ACTIONS(1809), + [anon_sym_DOLLARif] = ACTIONS(1809), + [anon_sym_is] = ACTIONS(1809), + [anon_sym_BANGis] = ACTIONS(1807), + [anon_sym_in] = ACTIONS(1809), + [anon_sym_BANGin] = ACTIONS(1807), + [anon_sym_match] = ACTIONS(1809), + [anon_sym_select] = ACTIONS(1809), + [anon_sym_lock] = ACTIONS(1809), + [anon_sym_rlock] = ACTIONS(1809), + [anon_sym_unsafe] = ACTIONS(1809), + [anon_sym_sql] = ACTIONS(1809), + [sym_int_literal] = ACTIONS(1809), + [sym_float_literal] = ACTIONS(1807), + [sym_rune_literal] = ACTIONS(1807), + [sym_pseudo_compile_time_identifier] = ACTIONS(1809), + [anon_sym_shared] = ACTIONS(1809), + [anon_sym_map_LBRACK] = ACTIONS(1807), + [anon_sym_chan] = ACTIONS(1809), + [anon_sym_thread] = ACTIONS(1809), + [anon_sym_atomic] = ACTIONS(1809), + [sym___double_quote] = ACTIONS(1807), + [sym___single_quote] = ACTIONS(1807), + [sym___c_double_quote] = ACTIONS(1807), + [sym___c_single_quote] = ACTIONS(1807), + [sym___r_double_quote] = ACTIONS(1807), + [sym___r_single_quote] = ACTIONS(1807), + }, + [1397] = { + [sym_line_comment] = STATE(1397), + [sym_block_comment] = STATE(1397), + [sym_identifier] = ACTIONS(2513), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(2515), + [anon_sym_as] = ACTIONS(2513), + [anon_sym_LBRACE] = ACTIONS(2511), + [anon_sym_COMMA] = ACTIONS(2511), + [anon_sym_LPAREN] = ACTIONS(2511), + [anon_sym_PIPE] = ACTIONS(2513), + [anon_sym_fn] = ACTIONS(2513), + [anon_sym_PLUS] = ACTIONS(2513), + [anon_sym_DASH] = ACTIONS(2513), + [anon_sym_STAR] = ACTIONS(2511), + [anon_sym_SLASH] = ACTIONS(2513), + [anon_sym_PERCENT] = ACTIONS(2511), + [anon_sym_LT] = ACTIONS(2513), + [anon_sym_GT] = ACTIONS(2513), + [anon_sym_EQ_EQ] = ACTIONS(2511), + [anon_sym_BANG_EQ] = ACTIONS(2511), + [anon_sym_LT_EQ] = ACTIONS(2511), + [anon_sym_GT_EQ] = ACTIONS(2511), + [anon_sym_LBRACK] = ACTIONS(2511), + [anon_sym_RBRACK] = ACTIONS(3948), + [anon_sym_struct] = ACTIONS(2513), + [anon_sym_mut] = ACTIONS(2513), + [anon_sym_PLUS_PLUS] = ACTIONS(2511), + [anon_sym_DASH_DASH] = ACTIONS(2511), + [anon_sym_QMARK] = ACTIONS(2513), + [anon_sym_BANG] = ACTIONS(2513), + [anon_sym_go] = ACTIONS(2513), + [anon_sym_spawn] = ACTIONS(2513), + [anon_sym_json_DOTdecode] = ACTIONS(2511), + [anon_sym_LBRACK2] = ACTIONS(2513), + [anon_sym_TILDE] = ACTIONS(2511), + [anon_sym_CARET] = ACTIONS(2511), + [anon_sym_AMP] = ACTIONS(2513), + [anon_sym_LT_DASH] = ACTIONS(2511), + [anon_sym_LT_LT] = ACTIONS(2511), + [anon_sym_GT_GT] = ACTIONS(2513), + [anon_sym_GT_GT_GT] = ACTIONS(2511), + [anon_sym_AMP_CARET] = ACTIONS(2511), + [anon_sym_AMP_AMP] = ACTIONS(2511), + [anon_sym_PIPE_PIPE] = ACTIONS(2511), + [anon_sym_or] = ACTIONS(2513), + [sym_none] = ACTIONS(2513), + [sym_true] = ACTIONS(2513), + [sym_false] = ACTIONS(2513), + [sym_nil] = ACTIONS(2513), + [anon_sym_QMARK_DOT] = ACTIONS(2511), + [anon_sym_POUND_LBRACK] = ACTIONS(2511), + [anon_sym_if] = ACTIONS(2513), + [anon_sym_DOLLARif] = ACTIONS(2513), + [anon_sym_is] = ACTIONS(2513), + [anon_sym_BANGis] = ACTIONS(2511), + [anon_sym_in] = ACTIONS(2513), + [anon_sym_BANGin] = ACTIONS(2511), + [anon_sym_match] = ACTIONS(2513), + [anon_sym_select] = ACTIONS(2513), + [anon_sym_lock] = ACTIONS(2513), + [anon_sym_rlock] = ACTIONS(2513), + [anon_sym_unsafe] = ACTIONS(2513), + [anon_sym_sql] = ACTIONS(2513), + [sym_int_literal] = ACTIONS(2513), + [sym_float_literal] = ACTIONS(2511), + [sym_rune_literal] = ACTIONS(2511), + [sym_pseudo_compile_time_identifier] = ACTIONS(2513), + [anon_sym_shared] = ACTIONS(2513), + [anon_sym_map_LBRACK] = ACTIONS(2511), + [anon_sym_chan] = ACTIONS(2513), + [anon_sym_thread] = ACTIONS(2513), + [anon_sym_atomic] = ACTIONS(2513), + [sym___double_quote] = ACTIONS(2511), + [sym___single_quote] = ACTIONS(2511), + [sym___c_double_quote] = ACTIONS(2511), + [sym___c_single_quote] = ACTIONS(2511), + [sym___r_double_quote] = ACTIONS(2511), + [sym___r_single_quote] = ACTIONS(2511), + }, [1398] = { [sym_line_comment] = STATE(1398), [sym_block_comment] = STATE(1398), - [sym_reference_expression] = STATE(4468), - [sym_type_reference_expression] = STATE(2140), - [sym_plain_type] = STATE(2191), - [sym__plain_type_without_special] = STATE(2178), - [sym_anon_struct_type] = STATE(2179), - [sym_multi_return_type] = STATE(2178), - [sym_result_type] = STATE(2178), - [sym_option_type] = STATE(2178), - [sym_qualified_type] = STATE(2140), - [sym_fixed_array_type] = STATE(2179), - [sym_array_type] = STATE(2179), - [sym_pointer_type] = STATE(2179), - [sym_wrong_pointer_type] = STATE(2179), - [sym_map_type] = STATE(2179), - [sym_channel_type] = STATE(2179), - [sym_shared_type] = STATE(2179), - [sym_thread_type] = STATE(2179), - [sym_atomic_type] = STATE(2179), - [sym_generic_type] = STATE(2179), - [sym_function_type] = STATE(2179), - [sym_identifier] = ACTIONS(3917), - [anon_sym_LF] = ACTIONS(627), - [anon_sym_CR] = ACTIONS(627), - [anon_sym_CR_LF] = ACTIONS(627), - [anon_sym_SLASH_SLASH] = ACTIONS(497), - [anon_sym_SLASH_STAR] = ACTIONS(499), - [anon_sym_SEMI] = ACTIONS(627), - [anon_sym_DOT] = ACTIONS(627), - [anon_sym_as] = ACTIONS(627), - [anon_sym_COMMA] = ACTIONS(627), - [anon_sym_RBRACE] = ACTIONS(627), - [anon_sym_LPAREN] = ACTIONS(3919), - [anon_sym___global] = ACTIONS(627), - [anon_sym_PIPE] = ACTIONS(627), - [anon_sym_fn] = ACTIONS(3921), - [anon_sym_PLUS] = ACTIONS(627), - [anon_sym_DASH] = ACTIONS(627), - [anon_sym_STAR] = ACTIONS(3923), - [anon_sym_SLASH] = ACTIONS(627), - [anon_sym_PERCENT] = ACTIONS(627), - [anon_sym_LT] = ACTIONS(627), - [anon_sym_GT] = ACTIONS(627), - [anon_sym_EQ_EQ] = ACTIONS(627), - [anon_sym_BANG_EQ] = ACTIONS(627), - [anon_sym_LT_EQ] = ACTIONS(627), - [anon_sym_GT_EQ] = ACTIONS(627), - [anon_sym_DOT_DOT_DOT] = ACTIONS(627), - [anon_sym_LBRACK] = ACTIONS(625), - [anon_sym_struct] = ACTIONS(3925), - [anon_sym_pub] = ACTIONS(627), - [anon_sym_mut] = ACTIONS(627), - [anon_sym_PLUS_PLUS] = ACTIONS(627), - [anon_sym_DASH_DASH] = ACTIONS(627), - [anon_sym_QMARK] = ACTIONS(3927), - [anon_sym_BANG] = ACTIONS(3929), - [anon_sym_LBRACK2] = ACTIONS(3931), - [anon_sym_CARET] = ACTIONS(627), - [anon_sym_AMP] = ACTIONS(3933), - [anon_sym_LT_LT] = ACTIONS(627), - [anon_sym_GT_GT] = ACTIONS(627), - [anon_sym_GT_GT_GT] = ACTIONS(627), - [anon_sym_AMP_CARET] = ACTIONS(627), - [anon_sym_AMP_AMP] = ACTIONS(627), - [anon_sym_PIPE_PIPE] = ACTIONS(627), - [anon_sym_or] = ACTIONS(627), - [anon_sym_QMARK_DOT] = ACTIONS(627), - [anon_sym_POUND_LBRACK] = ACTIONS(627), - [anon_sym_is] = ACTIONS(627), - [anon_sym_BANGis] = ACTIONS(627), - [anon_sym_in] = ACTIONS(627), - [anon_sym_BANGin] = ACTIONS(627), - [anon_sym_shared] = ACTIONS(3935), - [anon_sym_map_LBRACK] = ACTIONS(3937), - [anon_sym_chan] = ACTIONS(3939), - [anon_sym_thread] = ACTIONS(3941), - [anon_sym_atomic] = ACTIONS(3943), - [anon_sym_AT_LBRACK] = ACTIONS(627), - }, - [1399] = { - [sym_line_comment] = STATE(1399), - [sym_block_comment] = STATE(1399), - [sym_reference_expression] = STATE(4468), - [sym_type_reference_expression] = STATE(2140), + [sym_reference_expression] = STATE(4471), + [sym_type_reference_expression] = STATE(2142), [sym_plain_type] = STATE(2231), - [sym__plain_type_without_special] = STATE(2178), - [sym_anon_struct_type] = STATE(2179), - [sym_multi_return_type] = STATE(2178), - [sym_result_type] = STATE(2178), - [sym_option_type] = STATE(2178), - [sym_qualified_type] = STATE(2140), - [sym_fixed_array_type] = STATE(2179), - [sym_array_type] = STATE(2179), - [sym_pointer_type] = STATE(2179), - [sym_wrong_pointer_type] = STATE(2179), - [sym_map_type] = STATE(2179), - [sym_channel_type] = STATE(2179), - [sym_shared_type] = STATE(2179), - [sym_thread_type] = STATE(2179), - [sym_atomic_type] = STATE(2179), - [sym_generic_type] = STATE(2179), - [sym_function_type] = STATE(2179), - [sym_identifier] = ACTIONS(3917), + [sym__plain_type_without_special] = STATE(2183), + [sym_anon_struct_type] = STATE(2184), + [sym_multi_return_type] = STATE(2183), + [sym_result_type] = STATE(2183), + [sym_option_type] = STATE(2183), + [sym_qualified_type] = STATE(2142), + [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(3918), [anon_sym_LF] = ACTIONS(619), [anon_sym_CR] = ACTIONS(619), [anon_sym_CR_LF] = ACTIONS(619), @@ -173085,13 +173057,13 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_as] = ACTIONS(619), [anon_sym_COMMA] = ACTIONS(619), [anon_sym_RBRACE] = ACTIONS(619), - [anon_sym_LPAREN] = ACTIONS(3919), + [anon_sym_LPAREN] = ACTIONS(3920), [anon_sym___global] = ACTIONS(619), [anon_sym_PIPE] = ACTIONS(619), - [anon_sym_fn] = ACTIONS(3921), + [anon_sym_fn] = ACTIONS(3922), [anon_sym_PLUS] = ACTIONS(619), [anon_sym_DASH] = ACTIONS(619), - [anon_sym_STAR] = ACTIONS(3923), + [anon_sym_STAR] = ACTIONS(3924), [anon_sym_SLASH] = ACTIONS(619), [anon_sym_PERCENT] = ACTIONS(619), [anon_sym_LT] = ACTIONS(619), @@ -173102,16 +173074,16 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_GT_EQ] = ACTIONS(619), [anon_sym_DOT_DOT_DOT] = ACTIONS(619), [anon_sym_LBRACK] = ACTIONS(617), - [anon_sym_struct] = ACTIONS(3925), + [anon_sym_struct] = ACTIONS(3926), [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(3927), - [anon_sym_BANG] = ACTIONS(3929), - [anon_sym_LBRACK2] = ACTIONS(3931), + [anon_sym_QMARK] = ACTIONS(3928), + [anon_sym_BANG] = ACTIONS(3930), + [anon_sym_LBRACK2] = ACTIONS(3932), [anon_sym_CARET] = ACTIONS(619), - [anon_sym_AMP] = ACTIONS(3933), + [anon_sym_AMP] = ACTIONS(3934), [anon_sym_LT_LT] = ACTIONS(619), [anon_sym_GT_GT] = ACTIONS(619), [anon_sym_GT_GT_GT] = ACTIONS(619), @@ -173125,271 +173097,355 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BANGis] = ACTIONS(619), [anon_sym_in] = ACTIONS(619), [anon_sym_BANGin] = ACTIONS(619), - [anon_sym_shared] = ACTIONS(3935), - [anon_sym_map_LBRACK] = ACTIONS(3937), - [anon_sym_chan] = ACTIONS(3939), - [anon_sym_thread] = ACTIONS(3941), - [anon_sym_atomic] = ACTIONS(3943), + [anon_sym_shared] = ACTIONS(3936), + [anon_sym_map_LBRACK] = ACTIONS(3938), + [anon_sym_chan] = ACTIONS(3940), + [anon_sym_thread] = ACTIONS(3942), + [anon_sym_atomic] = ACTIONS(3944), [anon_sym_AT_LBRACK] = ACTIONS(619), }, + [1399] = { + [sym_line_comment] = STATE(1399), + [sym_block_comment] = STATE(1399), + [sym_identifier] = ACTIONS(2513), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(2513), + [anon_sym_as] = ACTIONS(2513), + [anon_sym_LBRACE] = ACTIONS(2511), + [anon_sym_COMMA] = ACTIONS(2511), + [anon_sym_LPAREN] = ACTIONS(2511), + [anon_sym_PIPE] = ACTIONS(2513), + [anon_sym_fn] = ACTIONS(2513), + [anon_sym_PLUS] = ACTIONS(2513), + [anon_sym_DASH] = ACTIONS(2513), + [anon_sym_STAR] = ACTIONS(2511), + [anon_sym_SLASH] = ACTIONS(2513), + [anon_sym_PERCENT] = ACTIONS(2511), + [anon_sym_LT] = ACTIONS(2513), + [anon_sym_GT] = ACTIONS(2513), + [anon_sym_EQ_EQ] = ACTIONS(2511), + [anon_sym_BANG_EQ] = ACTIONS(2511), + [anon_sym_LT_EQ] = ACTIONS(2511), + [anon_sym_GT_EQ] = ACTIONS(2511), + [anon_sym_LBRACK] = ACTIONS(2511), + [anon_sym_RBRACK] = ACTIONS(3948), + [anon_sym_struct] = ACTIONS(2513), + [anon_sym_mut] = ACTIONS(2513), + [anon_sym_PLUS_PLUS] = ACTIONS(2511), + [anon_sym_DASH_DASH] = ACTIONS(2511), + [anon_sym_QMARK] = ACTIONS(2513), + [anon_sym_BANG] = ACTIONS(2513), + [anon_sym_go] = ACTIONS(2513), + [anon_sym_spawn] = ACTIONS(2513), + [anon_sym_json_DOTdecode] = ACTIONS(2511), + [anon_sym_LBRACK2] = ACTIONS(2513), + [anon_sym_TILDE] = ACTIONS(2511), + [anon_sym_CARET] = ACTIONS(2511), + [anon_sym_AMP] = ACTIONS(2513), + [anon_sym_LT_DASH] = ACTIONS(2511), + [anon_sym_LT_LT] = ACTIONS(2511), + [anon_sym_GT_GT] = ACTIONS(2513), + [anon_sym_GT_GT_GT] = ACTIONS(2511), + [anon_sym_AMP_CARET] = ACTIONS(2511), + [anon_sym_AMP_AMP] = ACTIONS(2511), + [anon_sym_PIPE_PIPE] = ACTIONS(2511), + [anon_sym_or] = ACTIONS(2513), + [sym_none] = ACTIONS(2513), + [sym_true] = ACTIONS(2513), + [sym_false] = ACTIONS(2513), + [sym_nil] = ACTIONS(2513), + [anon_sym_QMARK_DOT] = ACTIONS(2511), + [anon_sym_POUND_LBRACK] = ACTIONS(2511), + [anon_sym_if] = ACTIONS(2513), + [anon_sym_DOLLARif] = ACTIONS(2513), + [anon_sym_is] = ACTIONS(2513), + [anon_sym_BANGis] = ACTIONS(2511), + [anon_sym_in] = ACTIONS(2513), + [anon_sym_BANGin] = ACTIONS(2511), + [anon_sym_match] = ACTIONS(2513), + [anon_sym_select] = ACTIONS(2513), + [anon_sym_lock] = ACTIONS(2513), + [anon_sym_rlock] = ACTIONS(2513), + [anon_sym_unsafe] = ACTIONS(2513), + [anon_sym_sql] = ACTIONS(2513), + [sym_int_literal] = ACTIONS(2513), + [sym_float_literal] = ACTIONS(2511), + [sym_rune_literal] = ACTIONS(2511), + [sym_pseudo_compile_time_identifier] = ACTIONS(2513), + [anon_sym_shared] = ACTIONS(2513), + [anon_sym_map_LBRACK] = ACTIONS(2511), + [anon_sym_chan] = ACTIONS(2513), + [anon_sym_thread] = ACTIONS(2513), + [anon_sym_atomic] = ACTIONS(2513), + [sym___double_quote] = ACTIONS(2511), + [sym___single_quote] = ACTIONS(2511), + [sym___c_double_quote] = ACTIONS(2511), + [sym___c_single_quote] = ACTIONS(2511), + [sym___r_double_quote] = ACTIONS(2511), + [sym___r_single_quote] = ACTIONS(2511), + }, [1400] = { [sym_line_comment] = STATE(1400), [sym_block_comment] = STATE(1400), - [sym_reference_expression] = STATE(4495), - [sym_type_reference_expression] = STATE(2283), - [sym_plain_type] = STATE(2391), - [sym__plain_type_without_special] = STATE(2302), - [sym_anon_struct_type] = STATE(2303), - [sym_multi_return_type] = STATE(2302), - [sym_result_type] = STATE(2302), - [sym_option_type] = STATE(2302), - [sym_qualified_type] = STATE(2283), - [sym_fixed_array_type] = STATE(2303), - [sym_array_type] = STATE(2303), - [sym_pointer_type] = STATE(2303), - [sym_wrong_pointer_type] = STATE(2303), - [sym_map_type] = STATE(2303), - [sym_channel_type] = STATE(2303), - [sym_shared_type] = STATE(2303), - [sym_thread_type] = STATE(2303), - [sym_atomic_type] = STATE(2303), - [sym_generic_type] = STATE(2303), - [sym_function_type] = STATE(2303), - [sym_identifier] = ACTIONS(3945), + [sym_identifier] = ACTIONS(2676), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_SEMI] = ACTIONS(563), - [anon_sym_DOT] = ACTIONS(567), - [anon_sym_as] = ACTIONS(567), - [anon_sym_LBRACE] = ACTIONS(563), - [anon_sym_COMMA] = ACTIONS(563), - [anon_sym_LPAREN] = ACTIONS(3586), - [anon_sym_RPAREN] = ACTIONS(563), - [anon_sym_PIPE] = ACTIONS(567), - [anon_sym_fn] = ACTIONS(3947), - [anon_sym_PLUS] = ACTIONS(567), - [anon_sym_DASH] = ACTIONS(567), - [anon_sym_STAR] = ACTIONS(3949), - [anon_sym_SLASH] = ACTIONS(567), - [anon_sym_PERCENT] = ACTIONS(563), - [anon_sym_LT] = ACTIONS(567), - [anon_sym_GT] = ACTIONS(567), - [anon_sym_EQ_EQ] = ACTIONS(563), - [anon_sym_BANG_EQ] = ACTIONS(563), - [anon_sym_LT_EQ] = ACTIONS(563), - [anon_sym_GT_EQ] = ACTIONS(563), - [anon_sym_LBRACK] = ACTIONS(563), - [anon_sym_RBRACK] = ACTIONS(563), - [anon_sym_struct] = ACTIONS(607), - [anon_sym_COLON] = ACTIONS(567), - [anon_sym_PLUS_PLUS] = ACTIONS(563), - [anon_sym_DASH_DASH] = ACTIONS(563), - [anon_sym_QMARK] = ACTIONS(3951), - [anon_sym_BANG] = ACTIONS(3953), - [anon_sym_LBRACK2] = ACTIONS(3955), - [anon_sym_CARET] = ACTIONS(563), - [anon_sym_AMP] = ACTIONS(3957), - [anon_sym_LT_LT] = ACTIONS(563), - [anon_sym_GT_GT] = ACTIONS(567), - [anon_sym_GT_GT_GT] = ACTIONS(563), - [anon_sym_AMP_CARET] = ACTIONS(563), - [anon_sym_AMP_AMP] = ACTIONS(563), - [anon_sym_PIPE_PIPE] = ACTIONS(563), - [anon_sym_or] = ACTIONS(567), - [anon_sym_QMARK_DOT] = ACTIONS(563), - [anon_sym_POUND_LBRACK] = ACTIONS(563), - [anon_sym_is] = ACTIONS(567), - [anon_sym_BANGis] = ACTIONS(563), - [anon_sym_in] = ACTIONS(567), - [anon_sym_BANGin] = ACTIONS(563), - [anon_sym_COLON_EQ] = ACTIONS(563), - [anon_sym_shared] = ACTIONS(3959), - [anon_sym_map_LBRACK] = ACTIONS(3961), - [anon_sym_chan] = ACTIONS(3963), - [anon_sym_thread] = ACTIONS(3965), - [anon_sym_atomic] = ACTIONS(3967), - [anon_sym_DOT_DOT] = ACTIONS(563), + [anon_sym_DOT] = ACTIONS(2676), + [anon_sym_as] = ACTIONS(2676), + [anon_sym_LBRACE] = ACTIONS(2674), + [anon_sym_COMMA] = ACTIONS(2674), + [anon_sym_LPAREN] = ACTIONS(2674), + [anon_sym_PIPE] = ACTIONS(2676), + [anon_sym_fn] = ACTIONS(2676), + [anon_sym_PLUS] = ACTIONS(2676), + [anon_sym_DASH] = ACTIONS(2676), + [anon_sym_STAR] = ACTIONS(2674), + [anon_sym_SLASH] = ACTIONS(2676), + [anon_sym_PERCENT] = ACTIONS(2674), + [anon_sym_LT] = ACTIONS(2676), + [anon_sym_GT] = ACTIONS(2676), + [anon_sym_EQ_EQ] = ACTIONS(2674), + [anon_sym_BANG_EQ] = ACTIONS(2674), + [anon_sym_LT_EQ] = ACTIONS(2674), + [anon_sym_GT_EQ] = ACTIONS(2674), + [anon_sym_LBRACK] = ACTIONS(2674), + [anon_sym_RBRACK] = ACTIONS(2674), + [anon_sym_struct] = ACTIONS(2676), + [anon_sym_mut] = ACTIONS(2676), + [anon_sym_PLUS_PLUS] = ACTIONS(2674), + [anon_sym_DASH_DASH] = ACTIONS(2674), + [anon_sym_QMARK] = ACTIONS(2676), + [anon_sym_BANG] = ACTIONS(2676), + [anon_sym_go] = ACTIONS(2676), + [anon_sym_spawn] = ACTIONS(2676), + [anon_sym_json_DOTdecode] = ACTIONS(2674), + [anon_sym_LBRACK2] = ACTIONS(2676), + [anon_sym_TILDE] = ACTIONS(2674), + [anon_sym_CARET] = ACTIONS(2674), + [anon_sym_AMP] = ACTIONS(2676), + [anon_sym_LT_DASH] = ACTIONS(2674), + [anon_sym_LT_LT] = ACTIONS(2674), + [anon_sym_GT_GT] = ACTIONS(2676), + [anon_sym_GT_GT_GT] = ACTIONS(2674), + [anon_sym_AMP_CARET] = ACTIONS(2674), + [anon_sym_AMP_AMP] = ACTIONS(2674), + [anon_sym_PIPE_PIPE] = ACTIONS(2674), + [anon_sym_or] = ACTIONS(2676), + [sym_none] = ACTIONS(2676), + [sym_true] = ACTIONS(2676), + [sym_false] = ACTIONS(2676), + [sym_nil] = ACTIONS(2676), + [anon_sym_QMARK_DOT] = ACTIONS(2674), + [anon_sym_POUND_LBRACK] = ACTIONS(2674), + [anon_sym_if] = ACTIONS(2676), + [anon_sym_DOLLARif] = ACTIONS(2676), + [anon_sym_is] = ACTIONS(2676), + [anon_sym_BANGis] = ACTIONS(2674), + [anon_sym_in] = ACTIONS(2676), + [anon_sym_BANGin] = ACTIONS(2674), + [anon_sym_match] = ACTIONS(2676), + [anon_sym_select] = ACTIONS(2676), + [anon_sym_lock] = ACTIONS(2676), + [anon_sym_rlock] = ACTIONS(2676), + [anon_sym_unsafe] = ACTIONS(2676), + [anon_sym_sql] = ACTIONS(2676), + [sym_int_literal] = ACTIONS(2676), + [sym_float_literal] = ACTIONS(2674), + [sym_rune_literal] = ACTIONS(2674), + [sym_pseudo_compile_time_identifier] = ACTIONS(2676), + [anon_sym_shared] = ACTIONS(2676), + [anon_sym_map_LBRACK] = ACTIONS(2674), + [anon_sym_chan] = ACTIONS(2676), + [anon_sym_thread] = ACTIONS(2676), + [anon_sym_atomic] = ACTIONS(2676), + [sym___double_quote] = ACTIONS(2674), + [sym___single_quote] = ACTIONS(2674), + [sym___c_double_quote] = ACTIONS(2674), + [sym___c_single_quote] = ACTIONS(2674), + [sym___r_double_quote] = ACTIONS(2674), + [sym___r_single_quote] = ACTIONS(2674), }, [1401] = { [sym_line_comment] = STATE(1401), [sym_block_comment] = STATE(1401), - [sym_reference_expression] = STATE(4495), - [sym_type_reference_expression] = STATE(2283), - [sym_plain_type] = STATE(2304), - [sym__plain_type_without_special] = STATE(2302), - [sym_anon_struct_type] = STATE(2303), - [sym_multi_return_type] = STATE(2302), - [sym_result_type] = STATE(2302), - [sym_option_type] = STATE(2302), - [sym_qualified_type] = STATE(2283), - [sym_fixed_array_type] = STATE(2303), - [sym_array_type] = STATE(2303), - [sym_pointer_type] = STATE(2303), - [sym_wrong_pointer_type] = STATE(2303), - [sym_map_type] = STATE(2303), - [sym_channel_type] = STATE(2303), - [sym_shared_type] = STATE(2303), - [sym_thread_type] = STATE(2303), - [sym_atomic_type] = STATE(2303), - [sym_generic_type] = STATE(2303), - [sym_function_type] = STATE(2303), - [sym_identifier] = ACTIONS(3945), - [anon_sym_SLASH_SLASH] = ACTIONS(3), - [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_SEMI] = ACTIONS(625), - [anon_sym_DOT] = ACTIONS(627), - [anon_sym_as] = ACTIONS(627), - [anon_sym_LBRACE] = ACTIONS(625), - [anon_sym_COMMA] = ACTIONS(625), - [anon_sym_LPAREN] = ACTIONS(3586), - [anon_sym_RPAREN] = ACTIONS(625), - [anon_sym_PIPE] = ACTIONS(627), - [anon_sym_fn] = ACTIONS(3947), - [anon_sym_PLUS] = ACTIONS(627), - [anon_sym_DASH] = ACTIONS(627), - [anon_sym_STAR] = ACTIONS(3949), - [anon_sym_SLASH] = ACTIONS(627), - [anon_sym_PERCENT] = ACTIONS(625), - [anon_sym_LT] = ACTIONS(627), - [anon_sym_GT] = ACTIONS(627), - [anon_sym_EQ_EQ] = ACTIONS(625), - [anon_sym_BANG_EQ] = ACTIONS(625), - [anon_sym_LT_EQ] = ACTIONS(625), - [anon_sym_GT_EQ] = ACTIONS(625), - [anon_sym_LBRACK] = ACTIONS(625), - [anon_sym_RBRACK] = ACTIONS(625), - [anon_sym_struct] = ACTIONS(607), - [anon_sym_COLON] = ACTIONS(627), - [anon_sym_PLUS_PLUS] = ACTIONS(625), - [anon_sym_DASH_DASH] = ACTIONS(625), - [anon_sym_QMARK] = ACTIONS(3951), - [anon_sym_BANG] = ACTIONS(3953), - [anon_sym_LBRACK2] = ACTIONS(3955), - [anon_sym_CARET] = ACTIONS(625), - [anon_sym_AMP] = ACTIONS(3957), - [anon_sym_LT_LT] = ACTIONS(625), - [anon_sym_GT_GT] = ACTIONS(627), - [anon_sym_GT_GT_GT] = ACTIONS(625), - [anon_sym_AMP_CARET] = ACTIONS(625), - [anon_sym_AMP_AMP] = ACTIONS(625), - [anon_sym_PIPE_PIPE] = ACTIONS(625), - [anon_sym_or] = ACTIONS(627), - [anon_sym_QMARK_DOT] = ACTIONS(625), - [anon_sym_POUND_LBRACK] = ACTIONS(625), - [anon_sym_is] = ACTIONS(627), - [anon_sym_BANGis] = ACTIONS(625), - [anon_sym_in] = ACTIONS(627), - [anon_sym_BANGin] = ACTIONS(625), - [anon_sym_COLON_EQ] = ACTIONS(625), - [anon_sym_shared] = ACTIONS(3959), - [anon_sym_map_LBRACK] = ACTIONS(3961), - [anon_sym_chan] = ACTIONS(3963), - [anon_sym_thread] = ACTIONS(3965), - [anon_sym_atomic] = ACTIONS(3967), - [anon_sym_DOT_DOT] = ACTIONS(625), + [sym_type_parameters] = STATE(1460), + [ts_builtin_sym_end] = ACTIONS(1879), + [sym_identifier] = ACTIONS(1881), + [anon_sym_LF] = ACTIONS(1881), + [anon_sym_CR] = ACTIONS(1881), + [anon_sym_CR_LF] = ACTIONS(1881), + [anon_sym_SLASH_SLASH] = ACTIONS(497), + [anon_sym_SLASH_STAR] = ACTIONS(499), + [anon_sym_DOT] = ACTIONS(1881), + [anon_sym_LBRACE] = ACTIONS(1881), + [anon_sym_const] = ACTIONS(1881), + [anon_sym_LPAREN] = 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_LBRACK] = ACTIONS(3951), + [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_QMARK] = ACTIONS(1881), + [anon_sym_BANG] = ACTIONS(1881), + [anon_sym_go] = ACTIONS(1881), + [anon_sym_spawn] = ACTIONS(1881), + [anon_sym_json_DOTdecode] = ACTIONS(1881), + [anon_sym_LBRACK2] = ACTIONS(1881), + [anon_sym_TILDE] = ACTIONS(1881), + [anon_sym_CARET] = ACTIONS(1881), + [anon_sym_AMP] = ACTIONS(1881), + [anon_sym_LT_DASH] = ACTIONS(1881), + [sym_none] = ACTIONS(1881), + [sym_true] = ACTIONS(1881), + [sym_false] = ACTIONS(1881), + [sym_nil] = ACTIONS(1881), + [anon_sym_if] = ACTIONS(1881), + [anon_sym_DOLLARif] = 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), }, [1402] = { [sym_line_comment] = STATE(1402), [sym_block_comment] = STATE(1402), - [sym_type_parameters] = STATE(1445), - [ts_builtin_sym_end] = ACTIONS(1903), - [sym_identifier] = ACTIONS(1905), - [anon_sym_LF] = ACTIONS(1905), - [anon_sym_CR] = ACTIONS(1905), - [anon_sym_CR_LF] = ACTIONS(1905), - [anon_sym_SLASH_SLASH] = ACTIONS(497), - [anon_sym_SLASH_STAR] = ACTIONS(499), - [anon_sym_DOT] = ACTIONS(1905), - [anon_sym_LBRACE] = ACTIONS(1905), - [anon_sym_const] = ACTIONS(1905), - [anon_sym_LPAREN] = ACTIONS(1905), - [anon_sym___global] = ACTIONS(1905), - [anon_sym_type] = ACTIONS(1905), - [anon_sym_PIPE] = ACTIONS(1905), - [anon_sym_fn] = ACTIONS(1905), - [anon_sym_PLUS] = ACTIONS(1905), - [anon_sym_DASH] = ACTIONS(1905), - [anon_sym_STAR] = ACTIONS(1905), - [anon_sym_LBRACK] = ACTIONS(3969), - [anon_sym_struct] = ACTIONS(1905), - [anon_sym_union] = ACTIONS(1905), - [anon_sym_pub] = ACTIONS(1905), - [anon_sym_mut] = ACTIONS(1905), - [anon_sym_enum] = ACTIONS(1905), - [anon_sym_interface] = ACTIONS(1905), - [anon_sym_QMARK] = ACTIONS(1905), - [anon_sym_BANG] = ACTIONS(1905), - [anon_sym_go] = ACTIONS(1905), - [anon_sym_spawn] = ACTIONS(1905), - [anon_sym_json_DOTdecode] = ACTIONS(1905), - [anon_sym_LBRACK2] = ACTIONS(1905), - [anon_sym_TILDE] = ACTIONS(1905), - [anon_sym_CARET] = ACTIONS(1905), - [anon_sym_AMP] = ACTIONS(1905), - [anon_sym_LT_DASH] = ACTIONS(1905), - [sym_none] = ACTIONS(1905), - [sym_true] = ACTIONS(1905), - [sym_false] = ACTIONS(1905), - [sym_nil] = ACTIONS(1905), - [anon_sym_if] = ACTIONS(1905), - [anon_sym_DOLLARif] = ACTIONS(1905), - [anon_sym_match] = ACTIONS(1905), - [anon_sym_select] = ACTIONS(1905), - [anon_sym_lock] = ACTIONS(1905), - [anon_sym_rlock] = ACTIONS(1905), - [anon_sym_unsafe] = ACTIONS(1905), - [anon_sym_sql] = ACTIONS(1905), - [sym_int_literal] = ACTIONS(1905), - [sym_float_literal] = ACTIONS(1905), - [sym_rune_literal] = ACTIONS(1905), - [sym_pseudo_compile_time_identifier] = ACTIONS(1905), - [anon_sym_shared] = ACTIONS(1905), - [anon_sym_map_LBRACK] = ACTIONS(1905), - [anon_sym_chan] = ACTIONS(1905), - [anon_sym_thread] = ACTIONS(1905), - [anon_sym_atomic] = ACTIONS(1905), - [anon_sym_assert] = ACTIONS(1905), - [anon_sym_defer] = ACTIONS(1905), - [anon_sym_goto] = ACTIONS(1905), - [anon_sym_break] = ACTIONS(1905), - [anon_sym_continue] = ACTIONS(1905), - [anon_sym_return] = ACTIONS(1905), - [anon_sym_DOLLARfor] = ACTIONS(1905), - [anon_sym_for] = ACTIONS(1905), - [anon_sym_POUND] = ACTIONS(1905), - [anon_sym_asm] = ACTIONS(1905), - [anon_sym_AT_LBRACK] = ACTIONS(1905), - [sym___double_quote] = ACTIONS(1905), - [sym___single_quote] = ACTIONS(1905), - [sym___c_double_quote] = ACTIONS(1905), - [sym___c_single_quote] = ACTIONS(1905), - [sym___r_double_quote] = ACTIONS(1905), - [sym___r_single_quote] = ACTIONS(1905), + [sym_reference_expression] = STATE(4498), + [sym_type_reference_expression] = STATE(2283), + [sym_plain_type] = STATE(2345), + [sym__plain_type_without_special] = STATE(2360), + [sym_anon_struct_type] = STATE(2362), + [sym_multi_return_type] = STATE(2360), + [sym_result_type] = STATE(2360), + [sym_option_type] = STATE(2360), + [sym_qualified_type] = STATE(2283), + [sym_fixed_array_type] = STATE(2362), + [sym_array_type] = STATE(2362), + [sym_pointer_type] = STATE(2362), + [sym_wrong_pointer_type] = STATE(2362), + [sym_map_type] = STATE(2362), + [sym_channel_type] = STATE(2362), + [sym_shared_type] = STATE(2362), + [sym_thread_type] = STATE(2362), + [sym_atomic_type] = STATE(2362), + [sym_generic_type] = STATE(2362), + [sym_function_type] = STATE(2362), + [sym_identifier] = ACTIONS(3953), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [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(3564), + [anon_sym_RPAREN] = ACTIONS(621), + [anon_sym_PIPE] = ACTIONS(623), + [anon_sym_fn] = ACTIONS(3955), + [anon_sym_PLUS] = ACTIONS(623), + [anon_sym_DASH] = ACTIONS(623), + [anon_sym_STAR] = ACTIONS(3957), + [anon_sym_SLASH] = ACTIONS(623), + [anon_sym_PERCENT] = ACTIONS(621), + [anon_sym_LT] = ACTIONS(623), + [anon_sym_GT] = ACTIONS(623), + [anon_sym_EQ_EQ] = ACTIONS(621), + [anon_sym_BANG_EQ] = ACTIONS(621), + [anon_sym_LT_EQ] = ACTIONS(621), + [anon_sym_GT_EQ] = ACTIONS(621), + [anon_sym_LBRACK] = ACTIONS(621), + [anon_sym_RBRACK] = ACTIONS(621), + [anon_sym_struct] = ACTIONS(575), + [anon_sym_COLON] = ACTIONS(623), + [anon_sym_PLUS_PLUS] = ACTIONS(621), + [anon_sym_DASH_DASH] = ACTIONS(621), + [anon_sym_QMARK] = ACTIONS(3959), + [anon_sym_BANG] = ACTIONS(3961), + [anon_sym_LBRACK2] = ACTIONS(3963), + [anon_sym_CARET] = ACTIONS(621), + [anon_sym_AMP] = ACTIONS(3965), + [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(3967), + [anon_sym_map_LBRACK] = ACTIONS(3969), + [anon_sym_chan] = ACTIONS(3971), + [anon_sym_thread] = ACTIONS(3973), + [anon_sym_atomic] = ACTIONS(3975), + [anon_sym_DOT_DOT] = ACTIONS(621), }, [1403] = { [sym_line_comment] = STATE(1403), [sym_block_comment] = STATE(1403), - [sym_reference_expression] = STATE(4495), + [sym_reference_expression] = STATE(4498), [sym_type_reference_expression] = STATE(2283), - [sym_plain_type] = STATE(2414), - [sym__plain_type_without_special] = STATE(2302), - [sym_anon_struct_type] = STATE(2303), - [sym_multi_return_type] = STATE(2302), - [sym_result_type] = STATE(2302), - [sym_option_type] = STATE(2302), + [sym_plain_type] = STATE(2416), + [sym__plain_type_without_special] = STATE(2360), + [sym_anon_struct_type] = STATE(2362), + [sym_multi_return_type] = STATE(2360), + [sym_result_type] = STATE(2360), + [sym_option_type] = STATE(2360), [sym_qualified_type] = STATE(2283), - [sym_fixed_array_type] = STATE(2303), - [sym_array_type] = STATE(2303), - [sym_pointer_type] = STATE(2303), - [sym_wrong_pointer_type] = STATE(2303), - [sym_map_type] = STATE(2303), - [sym_channel_type] = STATE(2303), - [sym_shared_type] = STATE(2303), - [sym_thread_type] = STATE(2303), - [sym_atomic_type] = STATE(2303), - [sym_generic_type] = STATE(2303), - [sym_function_type] = STATE(2303), - [sym_identifier] = ACTIONS(3945), + [sym_fixed_array_type] = STATE(2362), + [sym_array_type] = STATE(2362), + [sym_pointer_type] = STATE(2362), + [sym_wrong_pointer_type] = STATE(2362), + [sym_map_type] = STATE(2362), + [sym_channel_type] = STATE(2362), + [sym_shared_type] = STATE(2362), + [sym_thread_type] = STATE(2362), + [sym_atomic_type] = STATE(2362), + [sym_generic_type] = STATE(2362), + [sym_function_type] = STATE(2362), + [sym_identifier] = ACTIONS(3953), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), [anon_sym_SEMI] = ACTIONS(617), @@ -173397,13 +173453,13 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_as] = ACTIONS(619), [anon_sym_LBRACE] = ACTIONS(617), [anon_sym_COMMA] = ACTIONS(617), - [anon_sym_LPAREN] = ACTIONS(3586), + [anon_sym_LPAREN] = ACTIONS(3564), [anon_sym_RPAREN] = ACTIONS(617), [anon_sym_PIPE] = ACTIONS(619), - [anon_sym_fn] = ACTIONS(3947), + [anon_sym_fn] = ACTIONS(3955), [anon_sym_PLUS] = ACTIONS(619), [anon_sym_DASH] = ACTIONS(619), - [anon_sym_STAR] = ACTIONS(3949), + [anon_sym_STAR] = ACTIONS(3957), [anon_sym_SLASH] = ACTIONS(619), [anon_sym_PERCENT] = ACTIONS(617), [anon_sym_LT] = ACTIONS(619), @@ -173414,15 +173470,15 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_GT_EQ] = ACTIONS(617), [anon_sym_LBRACK] = ACTIONS(617), [anon_sym_RBRACK] = ACTIONS(617), - [anon_sym_struct] = ACTIONS(607), + [anon_sym_struct] = ACTIONS(575), [anon_sym_COLON] = ACTIONS(619), [anon_sym_PLUS_PLUS] = ACTIONS(617), [anon_sym_DASH_DASH] = ACTIONS(617), - [anon_sym_QMARK] = ACTIONS(3951), - [anon_sym_BANG] = ACTIONS(3953), - [anon_sym_LBRACK2] = ACTIONS(3955), + [anon_sym_QMARK] = ACTIONS(3959), + [anon_sym_BANG] = ACTIONS(3961), + [anon_sym_LBRACK2] = ACTIONS(3963), [anon_sym_CARET] = ACTIONS(617), - [anon_sym_AMP] = ACTIONS(3957), + [anon_sym_AMP] = ACTIONS(3965), [anon_sym_LT_LT] = ACTIONS(617), [anon_sym_GT_GT] = ACTIONS(619), [anon_sym_GT_GT_GT] = ACTIONS(617), @@ -173437,1265 +173493,1495 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_in] = ACTIONS(619), [anon_sym_BANGin] = ACTIONS(617), [anon_sym_COLON_EQ] = ACTIONS(617), - [anon_sym_shared] = ACTIONS(3959), - [anon_sym_map_LBRACK] = ACTIONS(3961), - [anon_sym_chan] = ACTIONS(3963), - [anon_sym_thread] = ACTIONS(3965), - [anon_sym_atomic] = ACTIONS(3967), + [anon_sym_shared] = ACTIONS(3967), + [anon_sym_map_LBRACK] = ACTIONS(3969), + [anon_sym_chan] = ACTIONS(3971), + [anon_sym_thread] = ACTIONS(3973), + [anon_sym_atomic] = ACTIONS(3975), [anon_sym_DOT_DOT] = ACTIONS(617), }, [1404] = { [sym_line_comment] = STATE(1404), [sym_block_comment] = STATE(1404), - [aux_sym_strictly_expression_list_repeat1] = STATE(1405), - [ts_builtin_sym_end] = ACTIONS(3478), - [sym_identifier] = ACTIONS(1661), - [anon_sym_LF] = ACTIONS(1661), - [anon_sym_CR] = ACTIONS(1661), - [anon_sym_CR_LF] = ACTIONS(1661), - [anon_sym_SLASH_SLASH] = ACTIONS(497), - [anon_sym_SLASH_STAR] = ACTIONS(499), - [anon_sym_DOT] = ACTIONS(1661), - [anon_sym_LBRACE] = ACTIONS(1661), - [anon_sym_COMMA] = ACTIONS(3484), - [anon_sym_const] = ACTIONS(1661), - [anon_sym_LPAREN] = ACTIONS(1661), - [anon_sym___global] = ACTIONS(1661), - [anon_sym_type] = ACTIONS(1661), - [anon_sym_fn] = ACTIONS(1661), - [anon_sym_PLUS] = ACTIONS(1661), - [anon_sym_DASH] = ACTIONS(1661), - [anon_sym_STAR] = ACTIONS(1661), - [anon_sym_struct] = ACTIONS(1661), - [anon_sym_union] = ACTIONS(1661), - [anon_sym_pub] = ACTIONS(1661), - [anon_sym_mut] = ACTIONS(1661), - [anon_sym_enum] = ACTIONS(1661), - [anon_sym_interface] = ACTIONS(1661), - [anon_sym_QMARK] = ACTIONS(1661), - [anon_sym_BANG] = ACTIONS(1661), - [anon_sym_go] = ACTIONS(1661), - [anon_sym_spawn] = ACTIONS(1661), - [anon_sym_json_DOTdecode] = ACTIONS(1661), - [anon_sym_LBRACK2] = ACTIONS(1661), - [anon_sym_TILDE] = ACTIONS(1661), - [anon_sym_CARET] = ACTIONS(1661), - [anon_sym_AMP] = ACTIONS(1661), - [anon_sym_LT_DASH] = ACTIONS(1661), - [sym_none] = ACTIONS(1661), - [sym_true] = ACTIONS(1661), - [sym_false] = ACTIONS(1661), - [sym_nil] = ACTIONS(1661), - [anon_sym_if] = ACTIONS(1661), - [anon_sym_DOLLARif] = ACTIONS(1661), - [anon_sym_match] = ACTIONS(1661), - [anon_sym_select] = ACTIONS(1661), - [anon_sym_lock] = ACTIONS(1661), - [anon_sym_rlock] = ACTIONS(1661), - [anon_sym_unsafe] = ACTIONS(1661), - [anon_sym_sql] = ACTIONS(1661), - [sym_int_literal] = ACTIONS(1661), - [sym_float_literal] = ACTIONS(1661), - [sym_rune_literal] = ACTIONS(1661), - [sym_pseudo_compile_time_identifier] = ACTIONS(1661), - [anon_sym_shared] = ACTIONS(1661), - [anon_sym_map_LBRACK] = ACTIONS(1661), - [anon_sym_chan] = ACTIONS(1661), - [anon_sym_thread] = ACTIONS(1661), - [anon_sym_atomic] = ACTIONS(1661), - [anon_sym_assert] = ACTIONS(1661), - [anon_sym_defer] = ACTIONS(1661), - [anon_sym_goto] = ACTIONS(1661), - [anon_sym_break] = ACTIONS(1661), - [anon_sym_continue] = ACTIONS(1661), - [anon_sym_return] = ACTIONS(1661), - [anon_sym_DOLLARfor] = ACTIONS(1661), - [anon_sym_for] = ACTIONS(1661), - [anon_sym_POUND] = ACTIONS(1661), - [anon_sym_asm] = ACTIONS(1661), - [anon_sym_AT_LBRACK] = ACTIONS(1661), - [sym___double_quote] = ACTIONS(1661), - [sym___single_quote] = ACTIONS(1661), - [sym___c_double_quote] = ACTIONS(1661), - [sym___c_single_quote] = ACTIONS(1661), - [sym___r_double_quote] = ACTIONS(1661), - [sym___r_single_quote] = ACTIONS(1661), + [sym_reference_expression] = STATE(4498), + [sym_type_reference_expression] = STATE(2283), + [sym_plain_type] = STATE(2325), + [sym__plain_type_without_special] = STATE(2360), + [sym_anon_struct_type] = STATE(2362), + [sym_multi_return_type] = STATE(2360), + [sym_result_type] = STATE(2360), + [sym_option_type] = STATE(2360), + [sym_qualified_type] = STATE(2283), + [sym_fixed_array_type] = STATE(2362), + [sym_array_type] = STATE(2362), + [sym_pointer_type] = STATE(2362), + [sym_wrong_pointer_type] = STATE(2362), + [sym_map_type] = STATE(2362), + [sym_channel_type] = STATE(2362), + [sym_shared_type] = STATE(2362), + [sym_thread_type] = STATE(2362), + [sym_atomic_type] = STATE(2362), + [sym_generic_type] = STATE(2362), + [sym_function_type] = STATE(2362), + [sym_identifier] = ACTIONS(3953), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_SEMI] = ACTIONS(585), + [anon_sym_DOT] = ACTIONS(589), + [anon_sym_as] = ACTIONS(589), + [anon_sym_LBRACE] = ACTIONS(585), + [anon_sym_COMMA] = ACTIONS(585), + [anon_sym_LPAREN] = ACTIONS(3564), + [anon_sym_RPAREN] = ACTIONS(585), + [anon_sym_PIPE] = ACTIONS(589), + [anon_sym_fn] = ACTIONS(3955), + [anon_sym_PLUS] = ACTIONS(589), + [anon_sym_DASH] = ACTIONS(589), + [anon_sym_STAR] = ACTIONS(3957), + [anon_sym_SLASH] = ACTIONS(589), + [anon_sym_PERCENT] = ACTIONS(585), + [anon_sym_LT] = ACTIONS(589), + [anon_sym_GT] = ACTIONS(589), + [anon_sym_EQ_EQ] = ACTIONS(585), + [anon_sym_BANG_EQ] = ACTIONS(585), + [anon_sym_LT_EQ] = ACTIONS(585), + [anon_sym_GT_EQ] = ACTIONS(585), + [anon_sym_LBRACK] = ACTIONS(585), + [anon_sym_RBRACK] = ACTIONS(585), + [anon_sym_struct] = ACTIONS(575), + [anon_sym_COLON] = ACTIONS(589), + [anon_sym_PLUS_PLUS] = ACTIONS(585), + [anon_sym_DASH_DASH] = ACTIONS(585), + [anon_sym_QMARK] = ACTIONS(3959), + [anon_sym_BANG] = ACTIONS(3961), + [anon_sym_LBRACK2] = ACTIONS(3963), + [anon_sym_CARET] = ACTIONS(585), + [anon_sym_AMP] = ACTIONS(3965), + [anon_sym_LT_LT] = ACTIONS(585), + [anon_sym_GT_GT] = ACTIONS(589), + [anon_sym_GT_GT_GT] = ACTIONS(585), + [anon_sym_AMP_CARET] = ACTIONS(585), + [anon_sym_AMP_AMP] = ACTIONS(585), + [anon_sym_PIPE_PIPE] = ACTIONS(585), + [anon_sym_or] = ACTIONS(589), + [anon_sym_QMARK_DOT] = ACTIONS(585), + [anon_sym_POUND_LBRACK] = ACTIONS(585), + [anon_sym_is] = ACTIONS(589), + [anon_sym_BANGis] = ACTIONS(585), + [anon_sym_in] = ACTIONS(589), + [anon_sym_BANGin] = ACTIONS(585), + [anon_sym_COLON_EQ] = ACTIONS(585), + [anon_sym_shared] = ACTIONS(3967), + [anon_sym_map_LBRACK] = ACTIONS(3969), + [anon_sym_chan] = ACTIONS(3971), + [anon_sym_thread] = ACTIONS(3973), + [anon_sym_atomic] = ACTIONS(3975), + [anon_sym_DOT_DOT] = ACTIONS(585), }, [1405] = { [sym_line_comment] = STATE(1405), [sym_block_comment] = STATE(1405), - [aux_sym_strictly_expression_list_repeat1] = STATE(1406), - [ts_builtin_sym_end] = ACTIONS(3971), - [sym_identifier] = ACTIONS(3973), - [anon_sym_LF] = ACTIONS(3973), - [anon_sym_CR] = ACTIONS(3973), - [anon_sym_CR_LF] = ACTIONS(3973), + [aux_sym_strictly_expression_list_repeat1] = STATE(1405), + [ts_builtin_sym_end] = ACTIONS(3522), + [sym_identifier] = ACTIONS(1649), + [anon_sym_LF] = ACTIONS(1649), + [anon_sym_CR] = ACTIONS(1649), + [anon_sym_CR_LF] = ACTIONS(1649), [anon_sym_SLASH_SLASH] = ACTIONS(497), [anon_sym_SLASH_STAR] = ACTIONS(499), - [anon_sym_DOT] = ACTIONS(3973), - [anon_sym_LBRACE] = ACTIONS(3973), - [anon_sym_COMMA] = ACTIONS(3484), - [anon_sym_const] = ACTIONS(3973), - [anon_sym_LPAREN] = ACTIONS(3973), - [anon_sym___global] = ACTIONS(3973), - [anon_sym_type] = ACTIONS(3973), - [anon_sym_fn] = ACTIONS(3973), - [anon_sym_PLUS] = ACTIONS(3973), - [anon_sym_DASH] = ACTIONS(3973), - [anon_sym_STAR] = ACTIONS(3973), - [anon_sym_struct] = ACTIONS(3973), - [anon_sym_union] = ACTIONS(3973), - [anon_sym_pub] = ACTIONS(3973), - [anon_sym_mut] = ACTIONS(3973), - [anon_sym_enum] = ACTIONS(3973), - [anon_sym_interface] = ACTIONS(3973), - [anon_sym_QMARK] = ACTIONS(3973), - [anon_sym_BANG] = ACTIONS(3973), - [anon_sym_go] = ACTIONS(3973), - [anon_sym_spawn] = ACTIONS(3973), - [anon_sym_json_DOTdecode] = ACTIONS(3973), - [anon_sym_LBRACK2] = ACTIONS(3973), - [anon_sym_TILDE] = ACTIONS(3973), - [anon_sym_CARET] = ACTIONS(3973), - [anon_sym_AMP] = ACTIONS(3973), - [anon_sym_LT_DASH] = ACTIONS(3973), - [sym_none] = ACTIONS(3973), - [sym_true] = ACTIONS(3973), - [sym_false] = ACTIONS(3973), - [sym_nil] = ACTIONS(3973), - [anon_sym_if] = ACTIONS(3973), - [anon_sym_DOLLARif] = ACTIONS(3973), - [anon_sym_match] = ACTIONS(3973), - [anon_sym_select] = ACTIONS(3973), - [anon_sym_lock] = ACTIONS(3973), - [anon_sym_rlock] = ACTIONS(3973), - [anon_sym_unsafe] = ACTIONS(3973), - [anon_sym_sql] = ACTIONS(3973), - [sym_int_literal] = ACTIONS(3973), - [sym_float_literal] = ACTIONS(3973), - [sym_rune_literal] = ACTIONS(3973), - [sym_pseudo_compile_time_identifier] = ACTIONS(3973), - [anon_sym_shared] = ACTIONS(3973), - [anon_sym_map_LBRACK] = ACTIONS(3973), - [anon_sym_chan] = ACTIONS(3973), - [anon_sym_thread] = ACTIONS(3973), - [anon_sym_atomic] = ACTIONS(3973), - [anon_sym_assert] = ACTIONS(3973), - [anon_sym_defer] = ACTIONS(3973), - [anon_sym_goto] = ACTIONS(3973), - [anon_sym_break] = ACTIONS(3973), - [anon_sym_continue] = ACTIONS(3973), - [anon_sym_return] = ACTIONS(3973), - [anon_sym_DOLLARfor] = ACTIONS(3973), - [anon_sym_for] = ACTIONS(3973), - [anon_sym_POUND] = ACTIONS(3973), - [anon_sym_asm] = ACTIONS(3973), - [anon_sym_AT_LBRACK] = ACTIONS(3973), - [sym___double_quote] = ACTIONS(3973), - [sym___single_quote] = ACTIONS(3973), - [sym___c_double_quote] = ACTIONS(3973), - [sym___c_single_quote] = ACTIONS(3973), - [sym___r_double_quote] = ACTIONS(3973), - [sym___r_single_quote] = ACTIONS(3973), + [anon_sym_DOT] = ACTIONS(1649), + [anon_sym_LBRACE] = ACTIONS(1649), + [anon_sym_COMMA] = ACTIONS(3977), + [anon_sym_const] = ACTIONS(1649), + [anon_sym_LPAREN] = ACTIONS(1649), + [anon_sym___global] = ACTIONS(1649), + [anon_sym_type] = ACTIONS(1649), + [anon_sym_fn] = ACTIONS(1649), + [anon_sym_PLUS] = ACTIONS(1649), + [anon_sym_DASH] = ACTIONS(1649), + [anon_sym_STAR] = ACTIONS(1649), + [anon_sym_struct] = ACTIONS(1649), + [anon_sym_union] = ACTIONS(1649), + [anon_sym_pub] = ACTIONS(1649), + [anon_sym_mut] = ACTIONS(1649), + [anon_sym_enum] = ACTIONS(1649), + [anon_sym_interface] = ACTIONS(1649), + [anon_sym_QMARK] = ACTIONS(1649), + [anon_sym_BANG] = ACTIONS(1649), + [anon_sym_go] = ACTIONS(1649), + [anon_sym_spawn] = ACTIONS(1649), + [anon_sym_json_DOTdecode] = ACTIONS(1649), + [anon_sym_LBRACK2] = ACTIONS(1649), + [anon_sym_TILDE] = ACTIONS(1649), + [anon_sym_CARET] = ACTIONS(1649), + [anon_sym_AMP] = ACTIONS(1649), + [anon_sym_LT_DASH] = ACTIONS(1649), + [sym_none] = ACTIONS(1649), + [sym_true] = ACTIONS(1649), + [sym_false] = ACTIONS(1649), + [sym_nil] = ACTIONS(1649), + [anon_sym_if] = ACTIONS(1649), + [anon_sym_DOLLARif] = ACTIONS(1649), + [anon_sym_match] = ACTIONS(1649), + [anon_sym_select] = ACTIONS(1649), + [anon_sym_lock] = ACTIONS(1649), + [anon_sym_rlock] = ACTIONS(1649), + [anon_sym_unsafe] = ACTIONS(1649), + [anon_sym_sql] = ACTIONS(1649), + [sym_int_literal] = ACTIONS(1649), + [sym_float_literal] = ACTIONS(1649), + [sym_rune_literal] = ACTIONS(1649), + [sym_pseudo_compile_time_identifier] = ACTIONS(1649), + [anon_sym_shared] = ACTIONS(1649), + [anon_sym_map_LBRACK] = ACTIONS(1649), + [anon_sym_chan] = ACTIONS(1649), + [anon_sym_thread] = ACTIONS(1649), + [anon_sym_atomic] = ACTIONS(1649), + [anon_sym_assert] = ACTIONS(1649), + [anon_sym_defer] = ACTIONS(1649), + [anon_sym_goto] = ACTIONS(1649), + [anon_sym_break] = ACTIONS(1649), + [anon_sym_continue] = ACTIONS(1649), + [anon_sym_return] = ACTIONS(1649), + [anon_sym_DOLLARfor] = ACTIONS(1649), + [anon_sym_for] = ACTIONS(1649), + [anon_sym_POUND] = ACTIONS(1649), + [anon_sym_asm] = ACTIONS(1649), + [anon_sym_AT_LBRACK] = ACTIONS(1649), + [sym___double_quote] = ACTIONS(1649), + [sym___single_quote] = ACTIONS(1649), + [sym___c_double_quote] = ACTIONS(1649), + [sym___c_single_quote] = ACTIONS(1649), + [sym___r_double_quote] = ACTIONS(1649), + [sym___r_single_quote] = ACTIONS(1649), }, [1406] = { [sym_line_comment] = STATE(1406), [sym_block_comment] = STATE(1406), - [aux_sym_strictly_expression_list_repeat1] = STATE(1406), - [ts_builtin_sym_end] = ACTIONS(3524), - [sym_identifier] = ACTIONS(1761), - [anon_sym_LF] = ACTIONS(1761), - [anon_sym_CR] = ACTIONS(1761), - [anon_sym_CR_LF] = ACTIONS(1761), + [aux_sym__type_union_list_repeat1] = STATE(1414), + [ts_builtin_sym_end] = ACTIONS(3980), + [sym_identifier] = ACTIONS(3982), + [anon_sym_LF] = ACTIONS(3984), + [anon_sym_CR] = ACTIONS(3984), + [anon_sym_CR_LF] = ACTIONS(3984), [anon_sym_SLASH_SLASH] = ACTIONS(497), [anon_sym_SLASH_STAR] = ACTIONS(499), - [anon_sym_DOT] = ACTIONS(1761), - [anon_sym_LBRACE] = ACTIONS(1761), - [anon_sym_COMMA] = ACTIONS(3975), - [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), + [anon_sym_DOT] = ACTIONS(3982), + [anon_sym_LBRACE] = ACTIONS(3982), + [anon_sym_const] = ACTIONS(3982), + [anon_sym_LPAREN] = ACTIONS(3982), + [anon_sym___global] = ACTIONS(3982), + [anon_sym_type] = ACTIONS(3982), + [anon_sym_PIPE] = ACTIONS(3987), + [anon_sym_fn] = ACTIONS(3982), + [anon_sym_PLUS] = ACTIONS(3982), + [anon_sym_DASH] = ACTIONS(3982), + [anon_sym_STAR] = ACTIONS(3982), + [anon_sym_struct] = ACTIONS(3982), + [anon_sym_union] = ACTIONS(3982), + [anon_sym_pub] = ACTIONS(3982), + [anon_sym_mut] = ACTIONS(3982), + [anon_sym_enum] = ACTIONS(3982), + [anon_sym_interface] = ACTIONS(3982), + [anon_sym_QMARK] = ACTIONS(3982), + [anon_sym_BANG] = ACTIONS(3982), + [anon_sym_go] = ACTIONS(3982), + [anon_sym_spawn] = ACTIONS(3982), + [anon_sym_json_DOTdecode] = ACTIONS(3982), + [anon_sym_LBRACK2] = ACTIONS(3982), + [anon_sym_TILDE] = ACTIONS(3982), + [anon_sym_CARET] = ACTIONS(3982), + [anon_sym_AMP] = ACTIONS(3982), + [anon_sym_LT_DASH] = ACTIONS(3982), + [sym_none] = ACTIONS(3982), + [sym_true] = ACTIONS(3982), + [sym_false] = ACTIONS(3982), + [sym_nil] = ACTIONS(3982), + [anon_sym_if] = ACTIONS(3982), + [anon_sym_DOLLARif] = ACTIONS(3982), + [anon_sym_match] = ACTIONS(3982), + [anon_sym_select] = ACTIONS(3982), + [anon_sym_lock] = ACTIONS(3982), + [anon_sym_rlock] = ACTIONS(3982), + [anon_sym_unsafe] = ACTIONS(3982), + [anon_sym_sql] = ACTIONS(3982), + [sym_int_literal] = ACTIONS(3982), + [sym_float_literal] = ACTIONS(3982), + [sym_rune_literal] = ACTIONS(3982), + [sym_pseudo_compile_time_identifier] = ACTIONS(3982), + [anon_sym_shared] = ACTIONS(3982), + [anon_sym_map_LBRACK] = ACTIONS(3982), + [anon_sym_chan] = ACTIONS(3982), + [anon_sym_thread] = ACTIONS(3982), + [anon_sym_atomic] = ACTIONS(3982), + [anon_sym_assert] = ACTIONS(3982), + [anon_sym_defer] = ACTIONS(3982), + [anon_sym_goto] = ACTIONS(3982), + [anon_sym_break] = ACTIONS(3982), + [anon_sym_continue] = ACTIONS(3982), + [anon_sym_return] = ACTIONS(3982), + [anon_sym_DOLLARfor] = ACTIONS(3982), + [anon_sym_for] = ACTIONS(3982), + [anon_sym_POUND] = ACTIONS(3982), + [anon_sym_asm] = ACTIONS(3982), + [anon_sym_AT_LBRACK] = ACTIONS(3982), + [sym___double_quote] = ACTIONS(3982), + [sym___single_quote] = ACTIONS(3982), + [sym___c_double_quote] = ACTIONS(3982), + [sym___c_single_quote] = ACTIONS(3982), + [sym___r_double_quote] = ACTIONS(3982), + [sym___r_single_quote] = ACTIONS(3982), }, [1407] = { [sym_line_comment] = STATE(1407), [sym_block_comment] = STATE(1407), - [sym_reference_expression] = STATE(4495), - [sym_type_reference_expression] = STATE(3541), - [sym_plain_type] = STATE(2391), - [sym__plain_type_without_special] = STATE(2302), - [sym_anon_struct_type] = STATE(2303), - [sym_multi_return_type] = STATE(2302), - [sym_result_type] = STATE(2302), - [sym_option_type] = STATE(2302), - [sym_qualified_type] = STATE(3541), - [sym_fixed_array_type] = STATE(2303), - [sym_array_type] = STATE(2303), - [sym_pointer_type] = STATE(2303), - [sym_wrong_pointer_type] = STATE(2303), - [sym_map_type] = STATE(2303), - [sym_channel_type] = STATE(2303), - [sym_shared_type] = STATE(2303), - [sym_thread_type] = STATE(2303), - [sym_atomic_type] = STATE(2303), - [sym_generic_type] = STATE(2303), - [sym_function_type] = STATE(2303), - [sym_identifier] = ACTIONS(597), - [anon_sym_LF] = ACTIONS(623), - [anon_sym_CR] = ACTIONS(623), - [anon_sym_CR_LF] = ACTIONS(623), + [aux_sym__type_union_list_repeat1] = STATE(1407), + [ts_builtin_sym_end] = ACTIONS(3989), + [sym_identifier] = ACTIONS(3991), + [anon_sym_LF] = ACTIONS(3993), + [anon_sym_CR] = ACTIONS(3993), + [anon_sym_CR_LF] = ACTIONS(3993), [anon_sym_SLASH_SLASH] = ACTIONS(497), [anon_sym_SLASH_STAR] = ACTIONS(499), - [anon_sym_SEMI] = ACTIONS(623), - [anon_sym_DOT] = ACTIONS(623), - [anon_sym_as] = ACTIONS(623), - [anon_sym_LBRACE] = ACTIONS(567), - [anon_sym_COMMA] = ACTIONS(623), - [anon_sym_RBRACE] = ACTIONS(623), - [anon_sym_LPAREN] = ACTIONS(623), - [anon_sym_PIPE] = ACTIONS(623), - [anon_sym_fn] = ACTIONS(603), - [anon_sym_PLUS] = ACTIONS(623), - [anon_sym_DASH] = ACTIONS(623), - [anon_sym_STAR] = ACTIONS(623), - [anon_sym_SLASH] = ACTIONS(623), - [anon_sym_PERCENT] = ACTIONS(623), - [anon_sym_LT] = ACTIONS(623), - [anon_sym_GT] = ACTIONS(623), - [anon_sym_EQ_EQ] = ACTIONS(623), - [anon_sym_BANG_EQ] = ACTIONS(623), - [anon_sym_LT_EQ] = ACTIONS(623), - [anon_sym_GT_EQ] = ACTIONS(623), - [anon_sym_LBRACK] = ACTIONS(621), - [anon_sym_struct] = ACTIONS(607), - [anon_sym_PLUS_PLUS] = ACTIONS(623), - [anon_sym_DASH_DASH] = ACTIONS(623), - [anon_sym_QMARK] = ACTIONS(623), - [anon_sym_BANG] = ACTIONS(623), - [anon_sym_LBRACK2] = ACTIONS(623), - [anon_sym_CARET] = ACTIONS(623), - [anon_sym_AMP] = ACTIONS(623), - [anon_sym_LT_LT] = ACTIONS(623), - [anon_sym_GT_GT] = ACTIONS(623), - [anon_sym_GT_GT_GT] = ACTIONS(623), - [anon_sym_AMP_CARET] = ACTIONS(623), - [anon_sym_AMP_AMP] = ACTIONS(623), - [anon_sym_PIPE_PIPE] = ACTIONS(623), - [anon_sym_or] = ACTIONS(623), - [anon_sym_QMARK_DOT] = ACTIONS(623), - [anon_sym_POUND_LBRACK] = ACTIONS(623), - [anon_sym_is] = ACTIONS(623), - [anon_sym_BANGis] = ACTIONS(623), - [anon_sym_in] = ACTIONS(623), - [anon_sym_BANGin] = ACTIONS(623), - [anon_sym_shared] = ACTIONS(615), - [anon_sym_map_LBRACK] = ACTIONS(549), - [anon_sym_chan] = ACTIONS(87), - [anon_sym_thread] = ACTIONS(89), - [anon_sym_atomic] = ACTIONS(91), + [anon_sym_DOT] = ACTIONS(3991), + [anon_sym_LBRACE] = ACTIONS(3991), + [anon_sym_const] = ACTIONS(3991), + [anon_sym_LPAREN] = ACTIONS(3991), + [anon_sym___global] = ACTIONS(3991), + [anon_sym_type] = ACTIONS(3991), + [anon_sym_PIPE] = ACTIONS(3996), + [anon_sym_fn] = ACTIONS(3991), + [anon_sym_PLUS] = ACTIONS(3991), + [anon_sym_DASH] = ACTIONS(3991), + [anon_sym_STAR] = ACTIONS(3991), + [anon_sym_struct] = ACTIONS(3991), + [anon_sym_union] = ACTIONS(3991), + [anon_sym_pub] = ACTIONS(3991), + [anon_sym_mut] = ACTIONS(3991), + [anon_sym_enum] = ACTIONS(3991), + [anon_sym_interface] = ACTIONS(3991), + [anon_sym_QMARK] = ACTIONS(3991), + [anon_sym_BANG] = ACTIONS(3991), + [anon_sym_go] = ACTIONS(3991), + [anon_sym_spawn] = ACTIONS(3991), + [anon_sym_json_DOTdecode] = ACTIONS(3991), + [anon_sym_LBRACK2] = ACTIONS(3991), + [anon_sym_TILDE] = ACTIONS(3991), + [anon_sym_CARET] = ACTIONS(3991), + [anon_sym_AMP] = ACTIONS(3991), + [anon_sym_LT_DASH] = ACTIONS(3991), + [sym_none] = ACTIONS(3991), + [sym_true] = ACTIONS(3991), + [sym_false] = ACTIONS(3991), + [sym_nil] = ACTIONS(3991), + [anon_sym_if] = ACTIONS(3991), + [anon_sym_DOLLARif] = ACTIONS(3991), + [anon_sym_match] = ACTIONS(3991), + [anon_sym_select] = ACTIONS(3991), + [anon_sym_lock] = ACTIONS(3991), + [anon_sym_rlock] = ACTIONS(3991), + [anon_sym_unsafe] = ACTIONS(3991), + [anon_sym_sql] = ACTIONS(3991), + [sym_int_literal] = ACTIONS(3991), + [sym_float_literal] = ACTIONS(3991), + [sym_rune_literal] = ACTIONS(3991), + [sym_pseudo_compile_time_identifier] = ACTIONS(3991), + [anon_sym_shared] = ACTIONS(3991), + [anon_sym_map_LBRACK] = ACTIONS(3991), + [anon_sym_chan] = ACTIONS(3991), + [anon_sym_thread] = ACTIONS(3991), + [anon_sym_atomic] = ACTIONS(3991), + [anon_sym_assert] = ACTIONS(3991), + [anon_sym_defer] = ACTIONS(3991), + [anon_sym_goto] = ACTIONS(3991), + [anon_sym_break] = ACTIONS(3991), + [anon_sym_continue] = ACTIONS(3991), + [anon_sym_return] = ACTIONS(3991), + [anon_sym_DOLLARfor] = ACTIONS(3991), + [anon_sym_for] = ACTIONS(3991), + [anon_sym_POUND] = ACTIONS(3991), + [anon_sym_asm] = ACTIONS(3991), + [anon_sym_AT_LBRACK] = ACTIONS(3991), + [sym___double_quote] = ACTIONS(3991), + [sym___single_quote] = ACTIONS(3991), + [sym___c_double_quote] = ACTIONS(3991), + [sym___c_single_quote] = ACTIONS(3991), + [sym___r_double_quote] = ACTIONS(3991), + [sym___r_single_quote] = ACTIONS(3991), }, [1408] = { [sym_line_comment] = STATE(1408), [sym_block_comment] = STATE(1408), - [ts_builtin_sym_end] = ACTIONS(2505), - [sym_identifier] = ACTIONS(2507), - [anon_sym_LF] = ACTIONS(2507), - [anon_sym_CR] = ACTIONS(2507), - [anon_sym_CR_LF] = ACTIONS(2507), + [ts_builtin_sym_end] = ACTIONS(2473), + [sym_identifier] = ACTIONS(2475), + [anon_sym_LF] = ACTIONS(2475), + [anon_sym_CR] = ACTIONS(2475), + [anon_sym_CR_LF] = ACTIONS(2475), [anon_sym_SLASH_SLASH] = ACTIONS(497), [anon_sym_SLASH_STAR] = ACTIONS(499), - [anon_sym_DOT] = ACTIONS(2507), - [anon_sym_LBRACE] = ACTIONS(2507), - [anon_sym_const] = ACTIONS(2507), - [anon_sym_LPAREN] = ACTIONS(2507), - [anon_sym___global] = ACTIONS(2507), - [anon_sym_type] = ACTIONS(2507), - [anon_sym_PIPE] = ACTIONS(2507), - [anon_sym_fn] = ACTIONS(2507), - [anon_sym_PLUS] = ACTIONS(2507), - [anon_sym_DASH] = ACTIONS(2507), - [anon_sym_STAR] = ACTIONS(2507), - [anon_sym_LBRACK] = ACTIONS(2505), - [anon_sym_struct] = ACTIONS(2507), - [anon_sym_union] = ACTIONS(2507), - [anon_sym_pub] = ACTIONS(2507), - [anon_sym_mut] = ACTIONS(2507), - [anon_sym_enum] = ACTIONS(2507), - [anon_sym_interface] = ACTIONS(2507), - [anon_sym_QMARK] = ACTIONS(2507), - [anon_sym_BANG] = ACTIONS(2507), - [anon_sym_go] = ACTIONS(2507), - [anon_sym_spawn] = ACTIONS(2507), - [anon_sym_json_DOTdecode] = ACTIONS(2507), - [anon_sym_LBRACK2] = ACTIONS(2507), - [anon_sym_TILDE] = ACTIONS(2507), - [anon_sym_CARET] = ACTIONS(2507), - [anon_sym_AMP] = ACTIONS(2507), - [anon_sym_LT_DASH] = ACTIONS(2507), - [sym_none] = ACTIONS(2507), - [sym_true] = ACTIONS(2507), - [sym_false] = ACTIONS(2507), - [sym_nil] = ACTIONS(2507), - [anon_sym_if] = ACTIONS(2507), - [anon_sym_DOLLARif] = ACTIONS(2507), - [anon_sym_match] = ACTIONS(2507), - [anon_sym_select] = ACTIONS(2507), - [anon_sym_lock] = ACTIONS(2507), - [anon_sym_rlock] = ACTIONS(2507), - [anon_sym_unsafe] = ACTIONS(2507), - [anon_sym_sql] = ACTIONS(2507), - [sym_int_literal] = ACTIONS(2507), - [sym_float_literal] = ACTIONS(2507), - [sym_rune_literal] = ACTIONS(2507), - [sym_pseudo_compile_time_identifier] = ACTIONS(2507), - [anon_sym_shared] = ACTIONS(2507), - [anon_sym_map_LBRACK] = ACTIONS(2507), - [anon_sym_chan] = ACTIONS(2507), - [anon_sym_thread] = ACTIONS(2507), - [anon_sym_atomic] = ACTIONS(2507), - [anon_sym_assert] = ACTIONS(2507), - [anon_sym_defer] = ACTIONS(2507), - [anon_sym_goto] = ACTIONS(2507), - [anon_sym_break] = ACTIONS(2507), - [anon_sym_continue] = ACTIONS(2507), - [anon_sym_return] = ACTIONS(2507), - [anon_sym_DOLLARfor] = ACTIONS(2507), - [anon_sym_for] = ACTIONS(2507), - [anon_sym_POUND] = ACTIONS(2507), - [anon_sym_asm] = ACTIONS(2507), - [anon_sym_AT_LBRACK] = ACTIONS(2507), - [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(2475), + [anon_sym_LBRACE] = ACTIONS(2475), + [anon_sym_const] = ACTIONS(2475), + [anon_sym_LPAREN] = ACTIONS(2475), + [anon_sym___global] = ACTIONS(2475), + [anon_sym_type] = ACTIONS(2475), + [anon_sym_PIPE] = ACTIONS(2475), + [anon_sym_fn] = ACTIONS(2475), + [anon_sym_PLUS] = ACTIONS(2475), + [anon_sym_DASH] = ACTIONS(2475), + [anon_sym_STAR] = ACTIONS(2475), + [anon_sym_LBRACK] = ACTIONS(2473), + [anon_sym_struct] = ACTIONS(2475), + [anon_sym_union] = ACTIONS(2475), + [anon_sym_pub] = ACTIONS(2475), + [anon_sym_mut] = ACTIONS(2475), + [anon_sym_enum] = ACTIONS(2475), + [anon_sym_interface] = ACTIONS(2475), + [anon_sym_QMARK] = ACTIONS(2475), + [anon_sym_BANG] = ACTIONS(2475), + [anon_sym_go] = ACTIONS(2475), + [anon_sym_spawn] = ACTIONS(2475), + [anon_sym_json_DOTdecode] = ACTIONS(2475), + [anon_sym_LBRACK2] = ACTIONS(2475), + [anon_sym_TILDE] = ACTIONS(2475), + [anon_sym_CARET] = ACTIONS(2475), + [anon_sym_AMP] = ACTIONS(2475), + [anon_sym_LT_DASH] = ACTIONS(2475), + [sym_none] = ACTIONS(2475), + [sym_true] = ACTIONS(2475), + [sym_false] = ACTIONS(2475), + [sym_nil] = ACTIONS(2475), + [anon_sym_if] = ACTIONS(2475), + [anon_sym_DOLLARif] = ACTIONS(2475), + [anon_sym_match] = ACTIONS(2475), + [anon_sym_select] = ACTIONS(2475), + [anon_sym_lock] = ACTIONS(2475), + [anon_sym_rlock] = ACTIONS(2475), + [anon_sym_unsafe] = ACTIONS(2475), + [anon_sym_sql] = ACTIONS(2475), + [sym_int_literal] = ACTIONS(2475), + [sym_float_literal] = ACTIONS(2475), + [sym_rune_literal] = ACTIONS(2475), + [sym_pseudo_compile_time_identifier] = ACTIONS(2475), + [anon_sym_shared] = ACTIONS(2475), + [anon_sym_map_LBRACK] = ACTIONS(2475), + [anon_sym_chan] = ACTIONS(2475), + [anon_sym_thread] = ACTIONS(2475), + [anon_sym_atomic] = ACTIONS(2475), + [anon_sym_assert] = ACTIONS(2475), + [anon_sym_defer] = ACTIONS(2475), + [anon_sym_goto] = ACTIONS(2475), + [anon_sym_break] = ACTIONS(2475), + [anon_sym_continue] = ACTIONS(2475), + [anon_sym_return] = ACTIONS(2475), + [anon_sym_DOLLARfor] = ACTIONS(2475), + [anon_sym_for] = ACTIONS(2475), + [anon_sym_POUND] = ACTIONS(2475), + [anon_sym_asm] = ACTIONS(2475), + [anon_sym_AT_LBRACK] = ACTIONS(2475), + [sym___double_quote] = ACTIONS(2475), + [sym___single_quote] = ACTIONS(2475), + [sym___c_double_quote] = ACTIONS(2475), + [sym___c_single_quote] = ACTIONS(2475), + [sym___r_double_quote] = ACTIONS(2475), + [sym___r_single_quote] = ACTIONS(2475), }, [1409] = { [sym_line_comment] = STATE(1409), [sym_block_comment] = STATE(1409), - [aux_sym__type_union_list_repeat1] = STATE(1409), - [ts_builtin_sym_end] = ACTIONS(3978), - [sym_identifier] = ACTIONS(3980), - [anon_sym_LF] = ACTIONS(3982), - [anon_sym_CR] = ACTIONS(3982), - [anon_sym_CR_LF] = ACTIONS(3982), - [anon_sym_SLASH_SLASH] = ACTIONS(497), - [anon_sym_SLASH_STAR] = ACTIONS(499), - [anon_sym_DOT] = ACTIONS(3980), - [anon_sym_LBRACE] = ACTIONS(3980), - [anon_sym_const] = ACTIONS(3980), - [anon_sym_LPAREN] = ACTIONS(3980), - [anon_sym___global] = ACTIONS(3980), - [anon_sym_type] = ACTIONS(3980), - [anon_sym_PIPE] = ACTIONS(3985), - [anon_sym_fn] = ACTIONS(3980), - [anon_sym_PLUS] = ACTIONS(3980), - [anon_sym_DASH] = ACTIONS(3980), - [anon_sym_STAR] = ACTIONS(3980), - [anon_sym_struct] = ACTIONS(3980), - [anon_sym_union] = ACTIONS(3980), - [anon_sym_pub] = ACTIONS(3980), - [anon_sym_mut] = ACTIONS(3980), - [anon_sym_enum] = ACTIONS(3980), - [anon_sym_interface] = ACTIONS(3980), - [anon_sym_QMARK] = ACTIONS(3980), - [anon_sym_BANG] = ACTIONS(3980), - [anon_sym_go] = ACTIONS(3980), - [anon_sym_spawn] = ACTIONS(3980), - [anon_sym_json_DOTdecode] = ACTIONS(3980), - [anon_sym_LBRACK2] = ACTIONS(3980), - [anon_sym_TILDE] = ACTIONS(3980), - [anon_sym_CARET] = ACTIONS(3980), - [anon_sym_AMP] = ACTIONS(3980), - [anon_sym_LT_DASH] = ACTIONS(3980), - [sym_none] = ACTIONS(3980), - [sym_true] = ACTIONS(3980), - [sym_false] = ACTIONS(3980), - [sym_nil] = ACTIONS(3980), - [anon_sym_if] = ACTIONS(3980), - [anon_sym_DOLLARif] = ACTIONS(3980), - [anon_sym_match] = ACTIONS(3980), - [anon_sym_select] = ACTIONS(3980), - [anon_sym_lock] = ACTIONS(3980), - [anon_sym_rlock] = ACTIONS(3980), - [anon_sym_unsafe] = ACTIONS(3980), - [anon_sym_sql] = ACTIONS(3980), - [sym_int_literal] = ACTIONS(3980), - [sym_float_literal] = ACTIONS(3980), - [sym_rune_literal] = ACTIONS(3980), - [sym_pseudo_compile_time_identifier] = ACTIONS(3980), - [anon_sym_shared] = ACTIONS(3980), - [anon_sym_map_LBRACK] = ACTIONS(3980), - [anon_sym_chan] = ACTIONS(3980), - [anon_sym_thread] = ACTIONS(3980), - [anon_sym_atomic] = ACTIONS(3980), - [anon_sym_assert] = ACTIONS(3980), - [anon_sym_defer] = ACTIONS(3980), - [anon_sym_goto] = ACTIONS(3980), - [anon_sym_break] = ACTIONS(3980), - [anon_sym_continue] = ACTIONS(3980), - [anon_sym_return] = ACTIONS(3980), - [anon_sym_DOLLARfor] = ACTIONS(3980), - [anon_sym_for] = ACTIONS(3980), - [anon_sym_POUND] = ACTIONS(3980), - [anon_sym_asm] = ACTIONS(3980), - [anon_sym_AT_LBRACK] = ACTIONS(3980), - [sym___double_quote] = ACTIONS(3980), - [sym___single_quote] = ACTIONS(3980), - [sym___c_double_quote] = ACTIONS(3980), - [sym___c_single_quote] = ACTIONS(3980), - [sym___r_double_quote] = ACTIONS(3980), - [sym___r_single_quote] = ACTIONS(3980), + [sym_reference_expression] = STATE(4498), + [sym_type_reference_expression] = STATE(3460), + [sym_plain_type] = STATE(2345), + [sym__plain_type_without_special] = STATE(2360), + [sym_anon_struct_type] = STATE(2362), + [sym_multi_return_type] = STATE(2360), + [sym_result_type] = STATE(2360), + [sym_option_type] = STATE(2360), + [sym_qualified_type] = STATE(3460), + [sym_fixed_array_type] = STATE(2362), + [sym_array_type] = STATE(2362), + [sym_pointer_type] = STATE(2362), + [sym_wrong_pointer_type] = STATE(2362), + [sym_map_type] = STATE(2362), + [sym_channel_type] = STATE(2362), + [sym_shared_type] = STATE(2362), + [sym_thread_type] = STATE(2362), + [sym_atomic_type] = STATE(2362), + [sym_generic_type] = STATE(2362), + [sym_function_type] = STATE(2362), + [sym_identifier] = ACTIONS(565), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_SEMI] = ACTIONS(625), + [anon_sym_DOT] = ACTIONS(627), + [anon_sym_as] = ACTIONS(627), + [anon_sym_LBRACE] = ACTIONS(621), + [anon_sym_COMMA] = ACTIONS(621), + [anon_sym_LPAREN] = ACTIONS(625), + [anon_sym_RPAREN] = ACTIONS(625), + [anon_sym_PIPE] = ACTIONS(627), + [anon_sym_fn] = ACTIONS(571), + [anon_sym_PLUS] = ACTIONS(627), + [anon_sym_DASH] = ACTIONS(627), + [anon_sym_STAR] = ACTIONS(625), + [anon_sym_SLASH] = ACTIONS(627), + [anon_sym_PERCENT] = ACTIONS(625), + [anon_sym_LT] = ACTIONS(627), + [anon_sym_GT] = ACTIONS(627), + [anon_sym_EQ_EQ] = ACTIONS(625), + [anon_sym_BANG_EQ] = ACTIONS(625), + [anon_sym_LT_EQ] = ACTIONS(625), + [anon_sym_GT_EQ] = ACTIONS(625), + [anon_sym_LBRACK] = ACTIONS(625), + [anon_sym_RBRACK] = ACTIONS(625), + [anon_sym_struct] = ACTIONS(575), + [anon_sym_COLON] = ACTIONS(625), + [anon_sym_PLUS_PLUS] = ACTIONS(625), + [anon_sym_DASH_DASH] = ACTIONS(625), + [anon_sym_QMARK] = ACTIONS(627), + [anon_sym_BANG] = ACTIONS(627), + [anon_sym_LBRACK2] = ACTIONS(627), + [anon_sym_CARET] = ACTIONS(625), + [anon_sym_AMP] = ACTIONS(627), + [anon_sym_LT_LT] = ACTIONS(625), + [anon_sym_GT_GT] = ACTIONS(627), + [anon_sym_GT_GT_GT] = ACTIONS(625), + [anon_sym_AMP_CARET] = ACTIONS(625), + [anon_sym_AMP_AMP] = ACTIONS(625), + [anon_sym_PIPE_PIPE] = ACTIONS(625), + [anon_sym_or] = ACTIONS(627), + [anon_sym_QMARK_DOT] = ACTIONS(625), + [anon_sym_POUND_LBRACK] = ACTIONS(625), + [anon_sym_is] = ACTIONS(627), + [anon_sym_BANGis] = ACTIONS(625), + [anon_sym_in] = ACTIONS(627), + [anon_sym_BANGin] = ACTIONS(625), + [anon_sym_shared] = ACTIONS(583), + [anon_sym_map_LBRACK] = ACTIONS(85), + [anon_sym_chan] = ACTIONS(87), + [anon_sym_thread] = ACTIONS(89), + [anon_sym_atomic] = ACTIONS(91), + [anon_sym_DOT_DOT] = ACTIONS(625), }, [1410] = { [sym_line_comment] = STATE(1410), [sym_block_comment] = STATE(1410), - [aux_sym__type_union_list_repeat1] = STATE(1409), - [ts_builtin_sym_end] = ACTIONS(3988), - [sym_identifier] = ACTIONS(3990), - [anon_sym_LF] = ACTIONS(3992), - [anon_sym_CR] = ACTIONS(3992), - [anon_sym_CR_LF] = ACTIONS(3992), + [aux_sym_strictly_expression_list_repeat1] = STATE(1405), + [ts_builtin_sym_end] = ACTIONS(3999), + [sym_identifier] = ACTIONS(4001), + [anon_sym_LF] = ACTIONS(4001), + [anon_sym_CR] = ACTIONS(4001), + [anon_sym_CR_LF] = ACTIONS(4001), [anon_sym_SLASH_SLASH] = ACTIONS(497), [anon_sym_SLASH_STAR] = ACTIONS(499), - [anon_sym_DOT] = ACTIONS(3990), - [anon_sym_LBRACE] = ACTIONS(3990), - [anon_sym_const] = ACTIONS(3990), - [anon_sym_LPAREN] = ACTIONS(3990), - [anon_sym___global] = ACTIONS(3990), - [anon_sym_type] = ACTIONS(3990), - [anon_sym_PIPE] = ACTIONS(3995), - [anon_sym_fn] = ACTIONS(3990), - [anon_sym_PLUS] = ACTIONS(3990), - [anon_sym_DASH] = ACTIONS(3990), - [anon_sym_STAR] = ACTIONS(3990), - [anon_sym_struct] = ACTIONS(3990), - [anon_sym_union] = ACTIONS(3990), - [anon_sym_pub] = ACTIONS(3990), - [anon_sym_mut] = ACTIONS(3990), - [anon_sym_enum] = ACTIONS(3990), - [anon_sym_interface] = ACTIONS(3990), - [anon_sym_QMARK] = ACTIONS(3990), - [anon_sym_BANG] = ACTIONS(3990), - [anon_sym_go] = ACTIONS(3990), - [anon_sym_spawn] = ACTIONS(3990), - [anon_sym_json_DOTdecode] = ACTIONS(3990), - [anon_sym_LBRACK2] = ACTIONS(3990), - [anon_sym_TILDE] = ACTIONS(3990), - [anon_sym_CARET] = ACTIONS(3990), - [anon_sym_AMP] = ACTIONS(3990), - [anon_sym_LT_DASH] = ACTIONS(3990), - [sym_none] = ACTIONS(3990), - [sym_true] = ACTIONS(3990), - [sym_false] = ACTIONS(3990), - [sym_nil] = ACTIONS(3990), - [anon_sym_if] = ACTIONS(3990), - [anon_sym_DOLLARif] = ACTIONS(3990), - [anon_sym_match] = ACTIONS(3990), - [anon_sym_select] = ACTIONS(3990), - [anon_sym_lock] = ACTIONS(3990), - [anon_sym_rlock] = ACTIONS(3990), - [anon_sym_unsafe] = ACTIONS(3990), - [anon_sym_sql] = ACTIONS(3990), - [sym_int_literal] = ACTIONS(3990), - [sym_float_literal] = ACTIONS(3990), - [sym_rune_literal] = ACTIONS(3990), - [sym_pseudo_compile_time_identifier] = ACTIONS(3990), - [anon_sym_shared] = ACTIONS(3990), - [anon_sym_map_LBRACK] = ACTIONS(3990), - [anon_sym_chan] = ACTIONS(3990), - [anon_sym_thread] = ACTIONS(3990), - [anon_sym_atomic] = ACTIONS(3990), - [anon_sym_assert] = ACTIONS(3990), - [anon_sym_defer] = ACTIONS(3990), - [anon_sym_goto] = ACTIONS(3990), - [anon_sym_break] = ACTIONS(3990), - [anon_sym_continue] = ACTIONS(3990), - [anon_sym_return] = ACTIONS(3990), - [anon_sym_DOLLARfor] = ACTIONS(3990), - [anon_sym_for] = ACTIONS(3990), - [anon_sym_POUND] = ACTIONS(3990), - [anon_sym_asm] = ACTIONS(3990), - [anon_sym_AT_LBRACK] = ACTIONS(3990), - [sym___double_quote] = ACTIONS(3990), - [sym___single_quote] = ACTIONS(3990), - [sym___c_double_quote] = ACTIONS(3990), - [sym___c_single_quote] = ACTIONS(3990), - [sym___r_double_quote] = ACTIONS(3990), - [sym___r_single_quote] = ACTIONS(3990), + [anon_sym_DOT] = ACTIONS(4001), + [anon_sym_LBRACE] = ACTIONS(4001), + [anon_sym_COMMA] = ACTIONS(3490), + [anon_sym_const] = ACTIONS(4001), + [anon_sym_LPAREN] = ACTIONS(4001), + [anon_sym___global] = ACTIONS(4001), + [anon_sym_type] = ACTIONS(4001), + [anon_sym_fn] = ACTIONS(4001), + [anon_sym_PLUS] = ACTIONS(4001), + [anon_sym_DASH] = ACTIONS(4001), + [anon_sym_STAR] = ACTIONS(4001), + [anon_sym_struct] = ACTIONS(4001), + [anon_sym_union] = ACTIONS(4001), + [anon_sym_pub] = ACTIONS(4001), + [anon_sym_mut] = ACTIONS(4001), + [anon_sym_enum] = ACTIONS(4001), + [anon_sym_interface] = ACTIONS(4001), + [anon_sym_QMARK] = ACTIONS(4001), + [anon_sym_BANG] = ACTIONS(4001), + [anon_sym_go] = ACTIONS(4001), + [anon_sym_spawn] = ACTIONS(4001), + [anon_sym_json_DOTdecode] = ACTIONS(4001), + [anon_sym_LBRACK2] = ACTIONS(4001), + [anon_sym_TILDE] = ACTIONS(4001), + [anon_sym_CARET] = ACTIONS(4001), + [anon_sym_AMP] = ACTIONS(4001), + [anon_sym_LT_DASH] = ACTIONS(4001), + [sym_none] = ACTIONS(4001), + [sym_true] = ACTIONS(4001), + [sym_false] = ACTIONS(4001), + [sym_nil] = ACTIONS(4001), + [anon_sym_if] = ACTIONS(4001), + [anon_sym_DOLLARif] = ACTIONS(4001), + [anon_sym_match] = ACTIONS(4001), + [anon_sym_select] = ACTIONS(4001), + [anon_sym_lock] = ACTIONS(4001), + [anon_sym_rlock] = ACTIONS(4001), + [anon_sym_unsafe] = ACTIONS(4001), + [anon_sym_sql] = ACTIONS(4001), + [sym_int_literal] = ACTIONS(4001), + [sym_float_literal] = ACTIONS(4001), + [sym_rune_literal] = ACTIONS(4001), + [sym_pseudo_compile_time_identifier] = ACTIONS(4001), + [anon_sym_shared] = ACTIONS(4001), + [anon_sym_map_LBRACK] = ACTIONS(4001), + [anon_sym_chan] = ACTIONS(4001), + [anon_sym_thread] = ACTIONS(4001), + [anon_sym_atomic] = ACTIONS(4001), + [anon_sym_assert] = ACTIONS(4001), + [anon_sym_defer] = ACTIONS(4001), + [anon_sym_goto] = ACTIONS(4001), + [anon_sym_break] = ACTIONS(4001), + [anon_sym_continue] = ACTIONS(4001), + [anon_sym_return] = ACTIONS(4001), + [anon_sym_DOLLARfor] = ACTIONS(4001), + [anon_sym_for] = ACTIONS(4001), + [anon_sym_POUND] = ACTIONS(4001), + [anon_sym_asm] = ACTIONS(4001), + [anon_sym_AT_LBRACK] = ACTIONS(4001), + [sym___double_quote] = ACTIONS(4001), + [sym___single_quote] = ACTIONS(4001), + [sym___c_double_quote] = ACTIONS(4001), + [sym___c_single_quote] = ACTIONS(4001), + [sym___r_double_quote] = ACTIONS(4001), + [sym___r_single_quote] = ACTIONS(4001), }, [1411] = { [sym_line_comment] = STATE(1411), [sym_block_comment] = STATE(1411), - [aux_sym_strictly_expression_list_repeat1] = STATE(1406), - [ts_builtin_sym_end] = ACTIONS(3997), - [sym_identifier] = ACTIONS(3999), - [anon_sym_LF] = ACTIONS(3999), - [anon_sym_CR] = ACTIONS(3999), - [anon_sym_CR_LF] = ACTIONS(3999), + [sym_reference_expression] = STATE(4498), + [sym_type_reference_expression] = STATE(3460), + [sym_plain_type] = STATE(2345), + [sym__plain_type_without_special] = STATE(2360), + [sym_anon_struct_type] = STATE(2362), + [sym_multi_return_type] = STATE(2360), + [sym_result_type] = STATE(2360), + [sym_option_type] = STATE(2360), + [sym_qualified_type] = STATE(3460), + [sym_fixed_array_type] = STATE(2362), + [sym_array_type] = STATE(2362), + [sym_pointer_type] = STATE(2362), + [sym_wrong_pointer_type] = STATE(2362), + [sym_map_type] = STATE(2362), + [sym_channel_type] = STATE(2362), + [sym_shared_type] = STATE(2362), + [sym_thread_type] = STATE(2362), + [sym_atomic_type] = STATE(2362), + [sym_generic_type] = STATE(2362), + [sym_function_type] = STATE(2362), + [sym_identifier] = ACTIONS(565), + [anon_sym_LF] = ACTIONS(627), + [anon_sym_CR] = ACTIONS(627), + [anon_sym_CR_LF] = ACTIONS(627), [anon_sym_SLASH_SLASH] = ACTIONS(497), [anon_sym_SLASH_STAR] = ACTIONS(499), - [anon_sym_DOT] = ACTIONS(3999), - [anon_sym_LBRACE] = ACTIONS(3999), - [anon_sym_COMMA] = ACTIONS(3484), - [anon_sym_const] = ACTIONS(3999), - [anon_sym_LPAREN] = ACTIONS(3999), - [anon_sym___global] = ACTIONS(3999), - [anon_sym_type] = ACTIONS(3999), - [anon_sym_fn] = ACTIONS(3999), - [anon_sym_PLUS] = ACTIONS(3999), - [anon_sym_DASH] = ACTIONS(3999), - [anon_sym_STAR] = ACTIONS(3999), - [anon_sym_struct] = ACTIONS(3999), - [anon_sym_union] = ACTIONS(3999), - [anon_sym_pub] = ACTIONS(3999), - [anon_sym_mut] = ACTIONS(3999), - [anon_sym_enum] = ACTIONS(3999), - [anon_sym_interface] = ACTIONS(3999), - [anon_sym_QMARK] = ACTIONS(3999), - [anon_sym_BANG] = ACTIONS(3999), - [anon_sym_go] = ACTIONS(3999), - [anon_sym_spawn] = ACTIONS(3999), - [anon_sym_json_DOTdecode] = ACTIONS(3999), - [anon_sym_LBRACK2] = ACTIONS(3999), - [anon_sym_TILDE] = ACTIONS(3999), - [anon_sym_CARET] = ACTIONS(3999), - [anon_sym_AMP] = ACTIONS(3999), - [anon_sym_LT_DASH] = ACTIONS(3999), - [sym_none] = ACTIONS(3999), - [sym_true] = ACTIONS(3999), - [sym_false] = ACTIONS(3999), - [sym_nil] = ACTIONS(3999), - [anon_sym_if] = ACTIONS(3999), - [anon_sym_DOLLARif] = ACTIONS(3999), - [anon_sym_match] = ACTIONS(3999), - [anon_sym_select] = ACTIONS(3999), - [anon_sym_lock] = ACTIONS(3999), - [anon_sym_rlock] = ACTIONS(3999), - [anon_sym_unsafe] = ACTIONS(3999), - [anon_sym_sql] = ACTIONS(3999), - [sym_int_literal] = ACTIONS(3999), - [sym_float_literal] = ACTIONS(3999), - [sym_rune_literal] = ACTIONS(3999), - [sym_pseudo_compile_time_identifier] = ACTIONS(3999), - [anon_sym_shared] = ACTIONS(3999), - [anon_sym_map_LBRACK] = ACTIONS(3999), - [anon_sym_chan] = ACTIONS(3999), - [anon_sym_thread] = ACTIONS(3999), - [anon_sym_atomic] = ACTIONS(3999), - [anon_sym_assert] = ACTIONS(3999), - [anon_sym_defer] = ACTIONS(3999), - [anon_sym_goto] = ACTIONS(3999), - [anon_sym_break] = ACTIONS(3999), - [anon_sym_continue] = ACTIONS(3999), - [anon_sym_return] = ACTIONS(3999), - [anon_sym_DOLLARfor] = ACTIONS(3999), - [anon_sym_for] = ACTIONS(3999), - [anon_sym_POUND] = ACTIONS(3999), - [anon_sym_asm] = ACTIONS(3999), - [anon_sym_AT_LBRACK] = ACTIONS(3999), - [sym___double_quote] = ACTIONS(3999), - [sym___single_quote] = ACTIONS(3999), - [sym___c_double_quote] = ACTIONS(3999), - [sym___c_single_quote] = ACTIONS(3999), - [sym___r_double_quote] = ACTIONS(3999), - [sym___r_single_quote] = ACTIONS(3999), + [anon_sym_SEMI] = ACTIONS(627), + [anon_sym_DOT] = ACTIONS(627), + [anon_sym_as] = ACTIONS(627), + [anon_sym_LBRACE] = ACTIONS(623), + [anon_sym_COMMA] = ACTIONS(627), + [anon_sym_RBRACE] = ACTIONS(627), + [anon_sym_LPAREN] = ACTIONS(627), + [anon_sym_PIPE] = ACTIONS(627), + [anon_sym_fn] = ACTIONS(571), + [anon_sym_PLUS] = ACTIONS(627), + [anon_sym_DASH] = ACTIONS(627), + [anon_sym_STAR] = ACTIONS(627), + [anon_sym_SLASH] = ACTIONS(627), + [anon_sym_PERCENT] = ACTIONS(627), + [anon_sym_LT] = ACTIONS(627), + [anon_sym_GT] = ACTIONS(627), + [anon_sym_EQ_EQ] = ACTIONS(627), + [anon_sym_BANG_EQ] = ACTIONS(627), + [anon_sym_LT_EQ] = ACTIONS(627), + [anon_sym_GT_EQ] = ACTIONS(627), + [anon_sym_LBRACK] = ACTIONS(625), + [anon_sym_struct] = ACTIONS(575), + [anon_sym_PLUS_PLUS] = ACTIONS(627), + [anon_sym_DASH_DASH] = ACTIONS(627), + [anon_sym_QMARK] = ACTIONS(627), + [anon_sym_BANG] = ACTIONS(627), + [anon_sym_LBRACK2] = ACTIONS(627), + [anon_sym_CARET] = ACTIONS(627), + [anon_sym_AMP] = ACTIONS(627), + [anon_sym_LT_LT] = ACTIONS(627), + [anon_sym_GT_GT] = ACTIONS(627), + [anon_sym_GT_GT_GT] = ACTIONS(627), + [anon_sym_AMP_CARET] = ACTIONS(627), + [anon_sym_AMP_AMP] = ACTIONS(627), + [anon_sym_PIPE_PIPE] = ACTIONS(627), + [anon_sym_or] = ACTIONS(627), + [anon_sym_QMARK_DOT] = ACTIONS(627), + [anon_sym_POUND_LBRACK] = ACTIONS(627), + [anon_sym_is] = ACTIONS(627), + [anon_sym_BANGis] = ACTIONS(627), + [anon_sym_in] = ACTIONS(627), + [anon_sym_BANGin] = ACTIONS(627), + [anon_sym_shared] = ACTIONS(583), + [anon_sym_map_LBRACK] = ACTIONS(549), + [anon_sym_chan] = ACTIONS(87), + [anon_sym_thread] = ACTIONS(89), + [anon_sym_atomic] = ACTIONS(91), }, [1412] = { [sym_line_comment] = STATE(1412), [sym_block_comment] = STATE(1412), - [aux_sym__type_union_list_repeat1] = STATE(1410), - [ts_builtin_sym_end] = ACTIONS(4001), - [sym_identifier] = ACTIONS(4003), - [anon_sym_LF] = ACTIONS(4005), - [anon_sym_CR] = ACTIONS(4005), - [anon_sym_CR_LF] = ACTIONS(4005), + [ts_builtin_sym_end] = ACTIONS(2473), + [sym_identifier] = ACTIONS(2475), + [anon_sym_LF] = ACTIONS(2475), + [anon_sym_CR] = ACTIONS(2475), + [anon_sym_CR_LF] = ACTIONS(2475), [anon_sym_SLASH_SLASH] = ACTIONS(497), [anon_sym_SLASH_STAR] = ACTIONS(499), - [anon_sym_DOT] = ACTIONS(4003), - [anon_sym_LBRACE] = ACTIONS(4003), - [anon_sym_const] = ACTIONS(4003), - [anon_sym_LPAREN] = ACTIONS(4003), - [anon_sym___global] = ACTIONS(4003), - [anon_sym_type] = ACTIONS(4003), - [anon_sym_PIPE] = ACTIONS(3995), - [anon_sym_fn] = ACTIONS(4003), - [anon_sym_PLUS] = ACTIONS(4003), - [anon_sym_DASH] = ACTIONS(4003), - [anon_sym_STAR] = ACTIONS(4003), - [anon_sym_struct] = ACTIONS(4003), - [anon_sym_union] = ACTIONS(4003), - [anon_sym_pub] = ACTIONS(4003), - [anon_sym_mut] = ACTIONS(4003), - [anon_sym_enum] = ACTIONS(4003), - [anon_sym_interface] = ACTIONS(4003), - [anon_sym_QMARK] = ACTIONS(4003), - [anon_sym_BANG] = ACTIONS(4003), - [anon_sym_go] = ACTIONS(4003), - [anon_sym_spawn] = ACTIONS(4003), - [anon_sym_json_DOTdecode] = ACTIONS(4003), - [anon_sym_LBRACK2] = ACTIONS(4003), - [anon_sym_TILDE] = ACTIONS(4003), - [anon_sym_CARET] = ACTIONS(4003), - [anon_sym_AMP] = ACTIONS(4003), - [anon_sym_LT_DASH] = ACTIONS(4003), - [sym_none] = ACTIONS(4003), - [sym_true] = ACTIONS(4003), - [sym_false] = ACTIONS(4003), - [sym_nil] = ACTIONS(4003), - [anon_sym_if] = ACTIONS(4003), - [anon_sym_DOLLARif] = ACTIONS(4003), - [anon_sym_match] = ACTIONS(4003), - [anon_sym_select] = ACTIONS(4003), - [anon_sym_lock] = ACTIONS(4003), - [anon_sym_rlock] = ACTIONS(4003), - [anon_sym_unsafe] = ACTIONS(4003), - [anon_sym_sql] = ACTIONS(4003), - [sym_int_literal] = ACTIONS(4003), - [sym_float_literal] = ACTIONS(4003), - [sym_rune_literal] = ACTIONS(4003), - [sym_pseudo_compile_time_identifier] = ACTIONS(4003), - [anon_sym_shared] = ACTIONS(4003), - [anon_sym_map_LBRACK] = ACTIONS(4003), - [anon_sym_chan] = ACTIONS(4003), - [anon_sym_thread] = ACTIONS(4003), - [anon_sym_atomic] = ACTIONS(4003), - [anon_sym_assert] = ACTIONS(4003), - [anon_sym_defer] = ACTIONS(4003), - [anon_sym_goto] = ACTIONS(4003), - [anon_sym_break] = ACTIONS(4003), - [anon_sym_continue] = ACTIONS(4003), - [anon_sym_return] = ACTIONS(4003), - [anon_sym_DOLLARfor] = ACTIONS(4003), - [anon_sym_for] = ACTIONS(4003), - [anon_sym_POUND] = ACTIONS(4003), - [anon_sym_asm] = ACTIONS(4003), - [anon_sym_AT_LBRACK] = ACTIONS(4003), - [sym___double_quote] = ACTIONS(4003), - [sym___single_quote] = ACTIONS(4003), - [sym___c_double_quote] = ACTIONS(4003), - [sym___c_single_quote] = ACTIONS(4003), - [sym___r_double_quote] = ACTIONS(4003), - [sym___r_single_quote] = ACTIONS(4003), + [anon_sym_DOT] = ACTIONS(1891), + [anon_sym_LBRACE] = ACTIONS(2475), + [anon_sym_const] = ACTIONS(2475), + [anon_sym_LPAREN] = ACTIONS(2475), + [anon_sym___global] = ACTIONS(2475), + [anon_sym_type] = ACTIONS(2475), + [anon_sym_PIPE] = ACTIONS(2475), + [anon_sym_fn] = ACTIONS(2475), + [anon_sym_PLUS] = ACTIONS(2475), + [anon_sym_DASH] = ACTIONS(2475), + [anon_sym_STAR] = ACTIONS(2475), + [anon_sym_LBRACK] = ACTIONS(2473), + [anon_sym_struct] = ACTIONS(2475), + [anon_sym_union] = ACTIONS(2475), + [anon_sym_pub] = ACTIONS(2475), + [anon_sym_mut] = ACTIONS(2475), + [anon_sym_enum] = ACTIONS(2475), + [anon_sym_interface] = ACTIONS(2475), + [anon_sym_QMARK] = ACTIONS(2475), + [anon_sym_BANG] = ACTIONS(2475), + [anon_sym_go] = ACTIONS(2475), + [anon_sym_spawn] = ACTIONS(2475), + [anon_sym_json_DOTdecode] = ACTIONS(2475), + [anon_sym_LBRACK2] = ACTIONS(2475), + [anon_sym_TILDE] = ACTIONS(2475), + [anon_sym_CARET] = ACTIONS(2475), + [anon_sym_AMP] = ACTIONS(2475), + [anon_sym_LT_DASH] = ACTIONS(2475), + [sym_none] = ACTIONS(2475), + [sym_true] = ACTIONS(2475), + [sym_false] = ACTIONS(2475), + [sym_nil] = ACTIONS(2475), + [anon_sym_if] = ACTIONS(2475), + [anon_sym_DOLLARif] = ACTIONS(2475), + [anon_sym_match] = ACTIONS(2475), + [anon_sym_select] = ACTIONS(2475), + [anon_sym_lock] = ACTIONS(2475), + [anon_sym_rlock] = ACTIONS(2475), + [anon_sym_unsafe] = ACTIONS(2475), + [anon_sym_sql] = ACTIONS(2475), + [sym_int_literal] = ACTIONS(2475), + [sym_float_literal] = ACTIONS(2475), + [sym_rune_literal] = ACTIONS(2475), + [sym_pseudo_compile_time_identifier] = ACTIONS(2475), + [anon_sym_shared] = ACTIONS(2475), + [anon_sym_map_LBRACK] = ACTIONS(2475), + [anon_sym_chan] = ACTIONS(2475), + [anon_sym_thread] = ACTIONS(2475), + [anon_sym_atomic] = ACTIONS(2475), + [anon_sym_assert] = ACTIONS(2475), + [anon_sym_defer] = ACTIONS(2475), + [anon_sym_goto] = ACTIONS(2475), + [anon_sym_break] = ACTIONS(2475), + [anon_sym_continue] = ACTIONS(2475), + [anon_sym_return] = ACTIONS(2475), + [anon_sym_DOLLARfor] = ACTIONS(2475), + [anon_sym_for] = ACTIONS(2475), + [anon_sym_POUND] = ACTIONS(2475), + [anon_sym_asm] = ACTIONS(2475), + [anon_sym_AT_LBRACK] = ACTIONS(2475), + [sym___double_quote] = ACTIONS(2475), + [sym___single_quote] = ACTIONS(2475), + [sym___c_double_quote] = ACTIONS(2475), + [sym___c_single_quote] = ACTIONS(2475), + [sym___r_double_quote] = ACTIONS(2475), + [sym___r_single_quote] = ACTIONS(2475), }, [1413] = { [sym_line_comment] = STATE(1413), [sym_block_comment] = STATE(1413), - [ts_builtin_sym_end] = ACTIONS(2830), - [sym_identifier] = ACTIONS(2832), - [anon_sym_LF] = ACTIONS(2832), - [anon_sym_CR] = ACTIONS(2832), - [anon_sym_CR_LF] = ACTIONS(2832), + [aux_sym_strictly_expression_list_repeat1] = STATE(1410), + [ts_builtin_sym_end] = ACTIONS(3484), + [sym_identifier] = ACTIONS(1757), + [anon_sym_LF] = ACTIONS(1757), + [anon_sym_CR] = ACTIONS(1757), + [anon_sym_CR_LF] = ACTIONS(1757), [anon_sym_SLASH_SLASH] = ACTIONS(497), [anon_sym_SLASH_STAR] = ACTIONS(499), - [anon_sym_DOT] = ACTIONS(2832), - [anon_sym_LBRACE] = ACTIONS(2832), - [anon_sym_const] = ACTIONS(2832), - [anon_sym_LPAREN] = ACTIONS(2832), - [anon_sym___global] = ACTIONS(2832), - [anon_sym_type] = ACTIONS(2832), - [anon_sym_PIPE] = ACTIONS(2832), - [anon_sym_fn] = ACTIONS(2832), - [anon_sym_PLUS] = ACTIONS(2832), - [anon_sym_DASH] = ACTIONS(2832), - [anon_sym_STAR] = ACTIONS(2832), - [anon_sym_LBRACK] = ACTIONS(2830), - [anon_sym_struct] = ACTIONS(2832), - [anon_sym_union] = ACTIONS(2832), - [anon_sym_pub] = ACTIONS(2832), - [anon_sym_mut] = ACTIONS(2832), - [anon_sym_enum] = ACTIONS(2832), - [anon_sym_interface] = ACTIONS(2832), - [anon_sym_QMARK] = ACTIONS(2832), - [anon_sym_BANG] = ACTIONS(2832), - [anon_sym_go] = ACTIONS(2832), - [anon_sym_spawn] = ACTIONS(2832), - [anon_sym_json_DOTdecode] = ACTIONS(2832), - [anon_sym_LBRACK2] = ACTIONS(2832), - [anon_sym_TILDE] = ACTIONS(2832), - [anon_sym_CARET] = ACTIONS(2832), - [anon_sym_AMP] = ACTIONS(2832), - [anon_sym_LT_DASH] = ACTIONS(2832), - [sym_none] = ACTIONS(2832), - [sym_true] = ACTIONS(2832), - [sym_false] = ACTIONS(2832), - [sym_nil] = ACTIONS(2832), - [anon_sym_if] = ACTIONS(2832), - [anon_sym_DOLLARif] = ACTIONS(2832), - [anon_sym_match] = ACTIONS(2832), - [anon_sym_select] = ACTIONS(2832), - [anon_sym_lock] = ACTIONS(2832), - [anon_sym_rlock] = ACTIONS(2832), - [anon_sym_unsafe] = ACTIONS(2832), - [anon_sym_sql] = ACTIONS(2832), - [sym_int_literal] = ACTIONS(2832), - [sym_float_literal] = ACTIONS(2832), - [sym_rune_literal] = ACTIONS(2832), - [sym_pseudo_compile_time_identifier] = ACTIONS(2832), - [anon_sym_shared] = ACTIONS(2832), - [anon_sym_map_LBRACK] = ACTIONS(2832), - [anon_sym_chan] = ACTIONS(2832), - [anon_sym_thread] = ACTIONS(2832), - [anon_sym_atomic] = ACTIONS(2832), - [anon_sym_assert] = ACTIONS(2832), - [anon_sym_defer] = ACTIONS(2832), - [anon_sym_goto] = ACTIONS(2832), - [anon_sym_break] = ACTIONS(2832), - [anon_sym_continue] = ACTIONS(2832), - [anon_sym_return] = ACTIONS(2832), - [anon_sym_DOLLARfor] = ACTIONS(2832), - [anon_sym_for] = ACTIONS(2832), - [anon_sym_POUND] = ACTIONS(2832), - [anon_sym_asm] = ACTIONS(2832), - [anon_sym_AT_LBRACK] = ACTIONS(2832), - [sym___double_quote] = ACTIONS(2832), - [sym___single_quote] = ACTIONS(2832), - [sym___c_double_quote] = ACTIONS(2832), - [sym___c_single_quote] = ACTIONS(2832), - [sym___r_double_quote] = ACTIONS(2832), - [sym___r_single_quote] = ACTIONS(2832), + [anon_sym_DOT] = ACTIONS(1757), + [anon_sym_LBRACE] = ACTIONS(1757), + [anon_sym_COMMA] = ACTIONS(3490), + [anon_sym_const] = ACTIONS(1757), + [anon_sym_LPAREN] = ACTIONS(1757), + [anon_sym___global] = ACTIONS(1757), + [anon_sym_type] = ACTIONS(1757), + [anon_sym_fn] = ACTIONS(1757), + [anon_sym_PLUS] = ACTIONS(1757), + [anon_sym_DASH] = ACTIONS(1757), + [anon_sym_STAR] = ACTIONS(1757), + [anon_sym_struct] = ACTIONS(1757), + [anon_sym_union] = ACTIONS(1757), + [anon_sym_pub] = ACTIONS(1757), + [anon_sym_mut] = ACTIONS(1757), + [anon_sym_enum] = ACTIONS(1757), + [anon_sym_interface] = ACTIONS(1757), + [anon_sym_QMARK] = ACTIONS(1757), + [anon_sym_BANG] = ACTIONS(1757), + [anon_sym_go] = ACTIONS(1757), + [anon_sym_spawn] = ACTIONS(1757), + [anon_sym_json_DOTdecode] = ACTIONS(1757), + [anon_sym_LBRACK2] = ACTIONS(1757), + [anon_sym_TILDE] = ACTIONS(1757), + [anon_sym_CARET] = ACTIONS(1757), + [anon_sym_AMP] = ACTIONS(1757), + [anon_sym_LT_DASH] = ACTIONS(1757), + [sym_none] = ACTIONS(1757), + [sym_true] = ACTIONS(1757), + [sym_false] = ACTIONS(1757), + [sym_nil] = ACTIONS(1757), + [anon_sym_if] = ACTIONS(1757), + [anon_sym_DOLLARif] = ACTIONS(1757), + [anon_sym_match] = ACTIONS(1757), + [anon_sym_select] = ACTIONS(1757), + [anon_sym_lock] = ACTIONS(1757), + [anon_sym_rlock] = ACTIONS(1757), + [anon_sym_unsafe] = ACTIONS(1757), + [anon_sym_sql] = ACTIONS(1757), + [sym_int_literal] = ACTIONS(1757), + [sym_float_literal] = ACTIONS(1757), + [sym_rune_literal] = ACTIONS(1757), + [sym_pseudo_compile_time_identifier] = ACTIONS(1757), + [anon_sym_shared] = ACTIONS(1757), + [anon_sym_map_LBRACK] = ACTIONS(1757), + [anon_sym_chan] = ACTIONS(1757), + [anon_sym_thread] = ACTIONS(1757), + [anon_sym_atomic] = ACTIONS(1757), + [anon_sym_assert] = ACTIONS(1757), + [anon_sym_defer] = ACTIONS(1757), + [anon_sym_goto] = ACTIONS(1757), + [anon_sym_break] = ACTIONS(1757), + [anon_sym_continue] = ACTIONS(1757), + [anon_sym_return] = ACTIONS(1757), + [anon_sym_DOLLARfor] = ACTIONS(1757), + [anon_sym_for] = ACTIONS(1757), + [anon_sym_POUND] = ACTIONS(1757), + [anon_sym_asm] = ACTIONS(1757), + [anon_sym_AT_LBRACK] = ACTIONS(1757), + [sym___double_quote] = ACTIONS(1757), + [sym___single_quote] = ACTIONS(1757), + [sym___c_double_quote] = ACTIONS(1757), + [sym___c_single_quote] = ACTIONS(1757), + [sym___r_double_quote] = ACTIONS(1757), + [sym___r_single_quote] = ACTIONS(1757), }, [1414] = { [sym_line_comment] = STATE(1414), [sym_block_comment] = STATE(1414), - [ts_builtin_sym_end] = ACTIONS(2505), - [sym_identifier] = ACTIONS(2507), - [anon_sym_LF] = ACTIONS(2507), - [anon_sym_CR] = ACTIONS(2507), - [anon_sym_CR_LF] = ACTIONS(2507), + [aux_sym__type_union_list_repeat1] = STATE(1407), + [ts_builtin_sym_end] = ACTIONS(4003), + [sym_identifier] = ACTIONS(4005), + [anon_sym_LF] = ACTIONS(4007), + [anon_sym_CR] = ACTIONS(4007), + [anon_sym_CR_LF] = ACTIONS(4007), [anon_sym_SLASH_SLASH] = ACTIONS(497), [anon_sym_SLASH_STAR] = ACTIONS(499), - [anon_sym_DOT] = ACTIONS(1853), - [anon_sym_LBRACE] = ACTIONS(2507), - [anon_sym_const] = ACTIONS(2507), - [anon_sym_LPAREN] = ACTIONS(2507), - [anon_sym___global] = ACTIONS(2507), - [anon_sym_type] = ACTIONS(2507), - [anon_sym_PIPE] = ACTIONS(2507), - [anon_sym_fn] = ACTIONS(2507), - [anon_sym_PLUS] = ACTIONS(2507), - [anon_sym_DASH] = ACTIONS(2507), - [anon_sym_STAR] = ACTIONS(2507), - [anon_sym_LBRACK] = ACTIONS(2505), - [anon_sym_struct] = ACTIONS(2507), - [anon_sym_union] = ACTIONS(2507), - [anon_sym_pub] = ACTIONS(2507), - [anon_sym_mut] = ACTIONS(2507), - [anon_sym_enum] = ACTIONS(2507), - [anon_sym_interface] = ACTIONS(2507), - [anon_sym_QMARK] = ACTIONS(2507), - [anon_sym_BANG] = ACTIONS(2507), - [anon_sym_go] = ACTIONS(2507), - [anon_sym_spawn] = ACTIONS(2507), - [anon_sym_json_DOTdecode] = ACTIONS(2507), - [anon_sym_LBRACK2] = ACTIONS(2507), - [anon_sym_TILDE] = ACTIONS(2507), - [anon_sym_CARET] = ACTIONS(2507), - [anon_sym_AMP] = ACTIONS(2507), - [anon_sym_LT_DASH] = ACTIONS(2507), - [sym_none] = ACTIONS(2507), - [sym_true] = ACTIONS(2507), - [sym_false] = ACTIONS(2507), - [sym_nil] = ACTIONS(2507), - [anon_sym_if] = ACTIONS(2507), - [anon_sym_DOLLARif] = ACTIONS(2507), - [anon_sym_match] = ACTIONS(2507), - [anon_sym_select] = ACTIONS(2507), - [anon_sym_lock] = ACTIONS(2507), - [anon_sym_rlock] = ACTIONS(2507), - [anon_sym_unsafe] = ACTIONS(2507), - [anon_sym_sql] = ACTIONS(2507), - [sym_int_literal] = ACTIONS(2507), - [sym_float_literal] = ACTIONS(2507), - [sym_rune_literal] = ACTIONS(2507), - [sym_pseudo_compile_time_identifier] = ACTIONS(2507), - [anon_sym_shared] = ACTIONS(2507), - [anon_sym_map_LBRACK] = ACTIONS(2507), - [anon_sym_chan] = ACTIONS(2507), - [anon_sym_thread] = ACTIONS(2507), - [anon_sym_atomic] = ACTIONS(2507), - [anon_sym_assert] = ACTIONS(2507), - [anon_sym_defer] = ACTIONS(2507), - [anon_sym_goto] = ACTIONS(2507), - [anon_sym_break] = ACTIONS(2507), - [anon_sym_continue] = ACTIONS(2507), - [anon_sym_return] = ACTIONS(2507), - [anon_sym_DOLLARfor] = ACTIONS(2507), - [anon_sym_for] = ACTIONS(2507), - [anon_sym_POUND] = ACTIONS(2507), - [anon_sym_asm] = ACTIONS(2507), - [anon_sym_AT_LBRACK] = ACTIONS(2507), - [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(4005), + [anon_sym_LBRACE] = ACTIONS(4005), + [anon_sym_const] = ACTIONS(4005), + [anon_sym_LPAREN] = ACTIONS(4005), + [anon_sym___global] = ACTIONS(4005), + [anon_sym_type] = ACTIONS(4005), + [anon_sym_PIPE] = ACTIONS(3987), + [anon_sym_fn] = ACTIONS(4005), + [anon_sym_PLUS] = ACTIONS(4005), + [anon_sym_DASH] = ACTIONS(4005), + [anon_sym_STAR] = ACTIONS(4005), + [anon_sym_struct] = ACTIONS(4005), + [anon_sym_union] = ACTIONS(4005), + [anon_sym_pub] = ACTIONS(4005), + [anon_sym_mut] = ACTIONS(4005), + [anon_sym_enum] = ACTIONS(4005), + [anon_sym_interface] = ACTIONS(4005), + [anon_sym_QMARK] = ACTIONS(4005), + [anon_sym_BANG] = ACTIONS(4005), + [anon_sym_go] = ACTIONS(4005), + [anon_sym_spawn] = ACTIONS(4005), + [anon_sym_json_DOTdecode] = ACTIONS(4005), + [anon_sym_LBRACK2] = ACTIONS(4005), + [anon_sym_TILDE] = ACTIONS(4005), + [anon_sym_CARET] = ACTIONS(4005), + [anon_sym_AMP] = ACTIONS(4005), + [anon_sym_LT_DASH] = ACTIONS(4005), + [sym_none] = ACTIONS(4005), + [sym_true] = ACTIONS(4005), + [sym_false] = ACTIONS(4005), + [sym_nil] = ACTIONS(4005), + [anon_sym_if] = ACTIONS(4005), + [anon_sym_DOLLARif] = ACTIONS(4005), + [anon_sym_match] = ACTIONS(4005), + [anon_sym_select] = ACTIONS(4005), + [anon_sym_lock] = ACTIONS(4005), + [anon_sym_rlock] = ACTIONS(4005), + [anon_sym_unsafe] = ACTIONS(4005), + [anon_sym_sql] = ACTIONS(4005), + [sym_int_literal] = ACTIONS(4005), + [sym_float_literal] = ACTIONS(4005), + [sym_rune_literal] = ACTIONS(4005), + [sym_pseudo_compile_time_identifier] = ACTIONS(4005), + [anon_sym_shared] = ACTIONS(4005), + [anon_sym_map_LBRACK] = ACTIONS(4005), + [anon_sym_chan] = ACTIONS(4005), + [anon_sym_thread] = ACTIONS(4005), + [anon_sym_atomic] = ACTIONS(4005), + [anon_sym_assert] = ACTIONS(4005), + [anon_sym_defer] = ACTIONS(4005), + [anon_sym_goto] = ACTIONS(4005), + [anon_sym_break] = ACTIONS(4005), + [anon_sym_continue] = ACTIONS(4005), + [anon_sym_return] = ACTIONS(4005), + [anon_sym_DOLLARfor] = ACTIONS(4005), + [anon_sym_for] = ACTIONS(4005), + [anon_sym_POUND] = ACTIONS(4005), + [anon_sym_asm] = ACTIONS(4005), + [anon_sym_AT_LBRACK] = ACTIONS(4005), + [sym___double_quote] = ACTIONS(4005), + [sym___single_quote] = ACTIONS(4005), + [sym___c_double_quote] = ACTIONS(4005), + [sym___c_single_quote] = ACTIONS(4005), + [sym___r_double_quote] = ACTIONS(4005), + [sym___r_single_quote] = ACTIONS(4005), }, [1415] = { [sym_line_comment] = STATE(1415), [sym_block_comment] = STATE(1415), - [sym_reference_expression] = STATE(4495), - [sym_type_reference_expression] = STATE(3541), - [sym_plain_type] = STATE(2391), - [sym__plain_type_without_special] = STATE(2302), - [sym_anon_struct_type] = STATE(2303), - [sym_multi_return_type] = STATE(2302), - [sym_result_type] = STATE(2302), - [sym_option_type] = STATE(2302), - [sym_qualified_type] = STATE(3541), - [sym_fixed_array_type] = STATE(2303), - [sym_array_type] = STATE(2303), - [sym_pointer_type] = STATE(2303), - [sym_wrong_pointer_type] = STATE(2303), - [sym_map_type] = STATE(2303), - [sym_channel_type] = STATE(2303), - [sym_shared_type] = STATE(2303), - [sym_thread_type] = STATE(2303), - [sym_atomic_type] = STATE(2303), - [sym_generic_type] = STATE(2303), - [sym_function_type] = STATE(2303), - [sym_identifier] = ACTIONS(597), - [anon_sym_SLASH_SLASH] = ACTIONS(3), - [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_SEMI] = ACTIONS(621), - [anon_sym_DOT] = ACTIONS(623), - [anon_sym_as] = ACTIONS(623), - [anon_sym_LBRACE] = ACTIONS(563), - [anon_sym_COMMA] = ACTIONS(563), - [anon_sym_LPAREN] = ACTIONS(621), - [anon_sym_RPAREN] = ACTIONS(621), - [anon_sym_PIPE] = ACTIONS(623), - [anon_sym_fn] = ACTIONS(603), - [anon_sym_PLUS] = ACTIONS(623), - [anon_sym_DASH] = ACTIONS(623), - [anon_sym_STAR] = ACTIONS(621), - [anon_sym_SLASH] = ACTIONS(623), - [anon_sym_PERCENT] = ACTIONS(621), - [anon_sym_LT] = ACTIONS(623), - [anon_sym_GT] = ACTIONS(623), - [anon_sym_EQ_EQ] = ACTIONS(621), - [anon_sym_BANG_EQ] = ACTIONS(621), - [anon_sym_LT_EQ] = ACTIONS(621), - [anon_sym_GT_EQ] = ACTIONS(621), - [anon_sym_LBRACK] = ACTIONS(621), - [anon_sym_RBRACK] = ACTIONS(621), - [anon_sym_struct] = ACTIONS(607), - [anon_sym_COLON] = ACTIONS(621), - [anon_sym_PLUS_PLUS] = ACTIONS(621), - [anon_sym_DASH_DASH] = ACTIONS(621), - [anon_sym_QMARK] = ACTIONS(623), - [anon_sym_BANG] = ACTIONS(623), - [anon_sym_LBRACK2] = ACTIONS(623), - [anon_sym_CARET] = ACTIONS(621), - [anon_sym_AMP] = ACTIONS(623), - [anon_sym_LT_LT] = ACTIONS(621), - [anon_sym_GT_GT] = ACTIONS(623), - [anon_sym_GT_GT_GT] = ACTIONS(621), - [anon_sym_AMP_CARET] = ACTIONS(621), - [anon_sym_AMP_AMP] = ACTIONS(621), - [anon_sym_PIPE_PIPE] = ACTIONS(621), - [anon_sym_or] = ACTIONS(623), - [anon_sym_QMARK_DOT] = ACTIONS(621), - [anon_sym_POUND_LBRACK] = ACTIONS(621), - [anon_sym_is] = ACTIONS(623), - [anon_sym_BANGis] = ACTIONS(621), - [anon_sym_in] = ACTIONS(623), - [anon_sym_BANGin] = ACTIONS(621), - [anon_sym_shared] = ACTIONS(615), - [anon_sym_map_LBRACK] = ACTIONS(85), - [anon_sym_chan] = ACTIONS(87), - [anon_sym_thread] = ACTIONS(89), - [anon_sym_atomic] = ACTIONS(91), - [anon_sym_DOT_DOT] = ACTIONS(621), + [ts_builtin_sym_end] = ACTIONS(2770), + [sym_identifier] = ACTIONS(2772), + [anon_sym_LF] = ACTIONS(2772), + [anon_sym_CR] = ACTIONS(2772), + [anon_sym_CR_LF] = ACTIONS(2772), + [anon_sym_SLASH_SLASH] = ACTIONS(497), + [anon_sym_SLASH_STAR] = ACTIONS(499), + [anon_sym_DOT] = ACTIONS(2772), + [anon_sym_LBRACE] = ACTIONS(2772), + [anon_sym_const] = ACTIONS(2772), + [anon_sym_LPAREN] = ACTIONS(2772), + [anon_sym___global] = ACTIONS(2772), + [anon_sym_type] = ACTIONS(2772), + [anon_sym_PIPE] = ACTIONS(2772), + [anon_sym_fn] = ACTIONS(2772), + [anon_sym_PLUS] = ACTIONS(2772), + [anon_sym_DASH] = ACTIONS(2772), + [anon_sym_STAR] = ACTIONS(2772), + [anon_sym_LBRACK] = ACTIONS(2770), + [anon_sym_struct] = ACTIONS(2772), + [anon_sym_union] = ACTIONS(2772), + [anon_sym_pub] = ACTIONS(2772), + [anon_sym_mut] = ACTIONS(2772), + [anon_sym_enum] = ACTIONS(2772), + [anon_sym_interface] = ACTIONS(2772), + [anon_sym_QMARK] = ACTIONS(2772), + [anon_sym_BANG] = ACTIONS(2772), + [anon_sym_go] = ACTIONS(2772), + [anon_sym_spawn] = ACTIONS(2772), + [anon_sym_json_DOTdecode] = ACTIONS(2772), + [anon_sym_LBRACK2] = ACTIONS(2772), + [anon_sym_TILDE] = ACTIONS(2772), + [anon_sym_CARET] = ACTIONS(2772), + [anon_sym_AMP] = ACTIONS(2772), + [anon_sym_LT_DASH] = ACTIONS(2772), + [sym_none] = ACTIONS(2772), + [sym_true] = ACTIONS(2772), + [sym_false] = ACTIONS(2772), + [sym_nil] = ACTIONS(2772), + [anon_sym_if] = ACTIONS(2772), + [anon_sym_DOLLARif] = ACTIONS(2772), + [anon_sym_match] = ACTIONS(2772), + [anon_sym_select] = ACTIONS(2772), + [anon_sym_lock] = ACTIONS(2772), + [anon_sym_rlock] = ACTIONS(2772), + [anon_sym_unsafe] = ACTIONS(2772), + [anon_sym_sql] = ACTIONS(2772), + [sym_int_literal] = ACTIONS(2772), + [sym_float_literal] = ACTIONS(2772), + [sym_rune_literal] = ACTIONS(2772), + [sym_pseudo_compile_time_identifier] = ACTIONS(2772), + [anon_sym_shared] = ACTIONS(2772), + [anon_sym_map_LBRACK] = ACTIONS(2772), + [anon_sym_chan] = ACTIONS(2772), + [anon_sym_thread] = ACTIONS(2772), + [anon_sym_atomic] = ACTIONS(2772), + [anon_sym_assert] = ACTIONS(2772), + [anon_sym_defer] = ACTIONS(2772), + [anon_sym_goto] = ACTIONS(2772), + [anon_sym_break] = ACTIONS(2772), + [anon_sym_continue] = ACTIONS(2772), + [anon_sym_return] = ACTIONS(2772), + [anon_sym_DOLLARfor] = ACTIONS(2772), + [anon_sym_for] = ACTIONS(2772), + [anon_sym_POUND] = ACTIONS(2772), + [anon_sym_asm] = ACTIONS(2772), + [anon_sym_AT_LBRACK] = ACTIONS(2772), + [sym___double_quote] = ACTIONS(2772), + [sym___single_quote] = ACTIONS(2772), + [sym___c_double_quote] = ACTIONS(2772), + [sym___c_single_quote] = ACTIONS(2772), + [sym___r_double_quote] = ACTIONS(2772), + [sym___r_single_quote] = ACTIONS(2772), }, [1416] = { [sym_line_comment] = STATE(1416), [sym_block_comment] = STATE(1416), - [sym_block] = STATE(1510), - [ts_builtin_sym_end] = ACTIONS(4008), - [sym_identifier] = ACTIONS(4010), - [anon_sym_LF] = ACTIONS(4010), - [anon_sym_CR] = ACTIONS(4010), - [anon_sym_CR_LF] = ACTIONS(4010), + [aux_sym_strictly_expression_list_repeat1] = STATE(1405), + [ts_builtin_sym_end] = ACTIONS(4010), + [sym_identifier] = ACTIONS(4012), + [anon_sym_LF] = ACTIONS(4012), + [anon_sym_CR] = ACTIONS(4012), + [anon_sym_CR_LF] = ACTIONS(4012), [anon_sym_SLASH_SLASH] = ACTIONS(497), [anon_sym_SLASH_STAR] = ACTIONS(499), - [anon_sym_DOT] = ACTIONS(4010), + [anon_sym_DOT] = ACTIONS(4012), [anon_sym_LBRACE] = ACTIONS(4012), - [anon_sym_const] = ACTIONS(4010), - [anon_sym_LPAREN] = ACTIONS(4010), - [anon_sym___global] = ACTIONS(4010), - [anon_sym_type] = ACTIONS(4010), - [anon_sym_fn] = ACTIONS(4010), - [anon_sym_PLUS] = ACTIONS(4010), - [anon_sym_DASH] = ACTIONS(4010), - [anon_sym_STAR] = ACTIONS(4010), - [anon_sym_struct] = ACTIONS(4010), - [anon_sym_union] = ACTIONS(4010), - [anon_sym_pub] = ACTIONS(4010), - [anon_sym_mut] = ACTIONS(4010), - [anon_sym_enum] = ACTIONS(4010), - [anon_sym_interface] = ACTIONS(4010), - [anon_sym_QMARK] = ACTIONS(4010), - [anon_sym_BANG] = ACTIONS(4010), - [anon_sym_go] = ACTIONS(4010), - [anon_sym_spawn] = ACTIONS(4010), - [anon_sym_json_DOTdecode] = ACTIONS(4010), - [anon_sym_LBRACK2] = ACTIONS(4010), - [anon_sym_TILDE] = ACTIONS(4010), - [anon_sym_CARET] = ACTIONS(4010), - [anon_sym_AMP] = ACTIONS(4010), - [anon_sym_LT_DASH] = ACTIONS(4010), - [sym_none] = ACTIONS(4010), - [sym_true] = ACTIONS(4010), - [sym_false] = ACTIONS(4010), - [sym_nil] = ACTIONS(4010), - [anon_sym_if] = ACTIONS(4010), - [anon_sym_DOLLARif] = ACTIONS(4010), - [anon_sym_match] = ACTIONS(4010), - [anon_sym_select] = ACTIONS(4010), - [anon_sym_lock] = ACTIONS(4010), - [anon_sym_rlock] = ACTIONS(4010), - [anon_sym_unsafe] = ACTIONS(4010), - [anon_sym_sql] = ACTIONS(4010), - [sym_int_literal] = ACTIONS(4010), - [sym_float_literal] = ACTIONS(4010), - [sym_rune_literal] = ACTIONS(4010), - [sym_pseudo_compile_time_identifier] = ACTIONS(4010), - [anon_sym_shared] = ACTIONS(4010), - [anon_sym_map_LBRACK] = ACTIONS(4010), - [anon_sym_chan] = ACTIONS(4010), - [anon_sym_thread] = ACTIONS(4010), - [anon_sym_atomic] = ACTIONS(4010), - [anon_sym_assert] = ACTIONS(4010), - [anon_sym_defer] = ACTIONS(4010), - [anon_sym_goto] = ACTIONS(4010), - [anon_sym_break] = ACTIONS(4010), - [anon_sym_continue] = ACTIONS(4010), - [anon_sym_return] = ACTIONS(4010), - [anon_sym_DOLLARfor] = ACTIONS(4010), - [anon_sym_for] = ACTIONS(4010), - [anon_sym_POUND] = ACTIONS(4010), - [anon_sym_asm] = ACTIONS(4010), - [anon_sym_AT_LBRACK] = ACTIONS(4010), - [sym___double_quote] = ACTIONS(4010), - [sym___single_quote] = ACTIONS(4010), - [sym___c_double_quote] = ACTIONS(4010), - [sym___c_single_quote] = ACTIONS(4010), - [sym___r_double_quote] = ACTIONS(4010), - [sym___r_single_quote] = ACTIONS(4010), + [anon_sym_COMMA] = ACTIONS(3490), + [anon_sym_const] = ACTIONS(4012), + [anon_sym_LPAREN] = ACTIONS(4012), + [anon_sym___global] = ACTIONS(4012), + [anon_sym_type] = ACTIONS(4012), + [anon_sym_fn] = ACTIONS(4012), + [anon_sym_PLUS] = ACTIONS(4012), + [anon_sym_DASH] = ACTIONS(4012), + [anon_sym_STAR] = ACTIONS(4012), + [anon_sym_struct] = ACTIONS(4012), + [anon_sym_union] = ACTIONS(4012), + [anon_sym_pub] = ACTIONS(4012), + [anon_sym_mut] = ACTIONS(4012), + [anon_sym_enum] = ACTIONS(4012), + [anon_sym_interface] = ACTIONS(4012), + [anon_sym_QMARK] = ACTIONS(4012), + [anon_sym_BANG] = ACTIONS(4012), + [anon_sym_go] = ACTIONS(4012), + [anon_sym_spawn] = ACTIONS(4012), + [anon_sym_json_DOTdecode] = ACTIONS(4012), + [anon_sym_LBRACK2] = ACTIONS(4012), + [anon_sym_TILDE] = ACTIONS(4012), + [anon_sym_CARET] = ACTIONS(4012), + [anon_sym_AMP] = ACTIONS(4012), + [anon_sym_LT_DASH] = ACTIONS(4012), + [sym_none] = ACTIONS(4012), + [sym_true] = ACTIONS(4012), + [sym_false] = ACTIONS(4012), + [sym_nil] = ACTIONS(4012), + [anon_sym_if] = ACTIONS(4012), + [anon_sym_DOLLARif] = ACTIONS(4012), + [anon_sym_match] = ACTIONS(4012), + [anon_sym_select] = ACTIONS(4012), + [anon_sym_lock] = ACTIONS(4012), + [anon_sym_rlock] = ACTIONS(4012), + [anon_sym_unsafe] = ACTIONS(4012), + [anon_sym_sql] = ACTIONS(4012), + [sym_int_literal] = ACTIONS(4012), + [sym_float_literal] = ACTIONS(4012), + [sym_rune_literal] = ACTIONS(4012), + [sym_pseudo_compile_time_identifier] = ACTIONS(4012), + [anon_sym_shared] = ACTIONS(4012), + [anon_sym_map_LBRACK] = ACTIONS(4012), + [anon_sym_chan] = ACTIONS(4012), + [anon_sym_thread] = ACTIONS(4012), + [anon_sym_atomic] = ACTIONS(4012), + [anon_sym_assert] = ACTIONS(4012), + [anon_sym_defer] = ACTIONS(4012), + [anon_sym_goto] = ACTIONS(4012), + [anon_sym_break] = ACTIONS(4012), + [anon_sym_continue] = ACTIONS(4012), + [anon_sym_return] = ACTIONS(4012), + [anon_sym_DOLLARfor] = ACTIONS(4012), + [anon_sym_for] = ACTIONS(4012), + [anon_sym_POUND] = ACTIONS(4012), + [anon_sym_asm] = ACTIONS(4012), + [anon_sym_AT_LBRACK] = ACTIONS(4012), + [sym___double_quote] = ACTIONS(4012), + [sym___single_quote] = ACTIONS(4012), + [sym___c_double_quote] = ACTIONS(4012), + [sym___c_single_quote] = ACTIONS(4012), + [sym___r_double_quote] = ACTIONS(4012), + [sym___r_single_quote] = ACTIONS(4012), }, [1417] = { [sym_line_comment] = STATE(1417), [sym_block_comment] = STATE(1417), - [ts_builtin_sym_end] = ACTIONS(2826), - [sym_identifier] = ACTIONS(2828), - [anon_sym_LF] = ACTIONS(2828), - [anon_sym_CR] = ACTIONS(2828), - [anon_sym_CR_LF] = ACTIONS(2828), + [sym_block] = STATE(1571), + [ts_builtin_sym_end] = ACTIONS(4014), + [sym_identifier] = ACTIONS(4016), + [anon_sym_LF] = ACTIONS(4016), + [anon_sym_CR] = ACTIONS(4016), + [anon_sym_CR_LF] = ACTIONS(4016), [anon_sym_SLASH_SLASH] = ACTIONS(497), [anon_sym_SLASH_STAR] = ACTIONS(499), - [anon_sym_DOT] = ACTIONS(2828), - [anon_sym_LBRACE] = ACTIONS(2828), - [anon_sym_const] = ACTIONS(2828), - [anon_sym_LPAREN] = ACTIONS(2828), - [anon_sym___global] = ACTIONS(2828), - [anon_sym_type] = ACTIONS(2828), - [anon_sym_PIPE] = ACTIONS(2828), - [anon_sym_fn] = ACTIONS(2828), - [anon_sym_PLUS] = ACTIONS(2828), - [anon_sym_DASH] = ACTIONS(2828), - [anon_sym_STAR] = ACTIONS(2828), - [anon_sym_struct] = ACTIONS(2828), - [anon_sym_union] = ACTIONS(2828), - [anon_sym_pub] = ACTIONS(2828), - [anon_sym_mut] = ACTIONS(2828), - [anon_sym_enum] = ACTIONS(2828), - [anon_sym_interface] = ACTIONS(2828), - [anon_sym_QMARK] = ACTIONS(2828), - [anon_sym_BANG] = ACTIONS(2828), - [anon_sym_go] = ACTIONS(2828), - [anon_sym_spawn] = ACTIONS(2828), - [anon_sym_json_DOTdecode] = ACTIONS(2828), - [anon_sym_LBRACK2] = ACTIONS(2828), - [anon_sym_TILDE] = ACTIONS(2828), - [anon_sym_CARET] = ACTIONS(2828), - [anon_sym_AMP] = ACTIONS(2828), - [anon_sym_LT_DASH] = ACTIONS(2828), - [sym_none] = ACTIONS(2828), - [sym_true] = ACTIONS(2828), - [sym_false] = ACTIONS(2828), - [sym_nil] = ACTIONS(2828), - [anon_sym_if] = ACTIONS(2828), - [anon_sym_DOLLARif] = ACTIONS(2828), - [anon_sym_match] = ACTIONS(2828), - [anon_sym_select] = ACTIONS(2828), - [anon_sym_lock] = ACTIONS(2828), - [anon_sym_rlock] = ACTIONS(2828), - [anon_sym_unsafe] = ACTIONS(2828), - [anon_sym_sql] = ACTIONS(2828), - [sym_int_literal] = ACTIONS(2828), - [sym_float_literal] = ACTIONS(2828), - [sym_rune_literal] = ACTIONS(2828), - [sym_pseudo_compile_time_identifier] = ACTIONS(2828), - [anon_sym_shared] = ACTIONS(2828), - [anon_sym_map_LBRACK] = ACTIONS(2828), - [anon_sym_chan] = ACTIONS(2828), - [anon_sym_thread] = ACTIONS(2828), - [anon_sym_atomic] = ACTIONS(2828), - [anon_sym_assert] = ACTIONS(2828), - [anon_sym_defer] = ACTIONS(2828), - [anon_sym_goto] = ACTIONS(2828), - [anon_sym_break] = ACTIONS(2828), - [anon_sym_continue] = ACTIONS(2828), - [anon_sym_return] = ACTIONS(2828), - [anon_sym_DOLLARfor] = ACTIONS(2828), - [anon_sym_for] = ACTIONS(2828), - [anon_sym_POUND] = ACTIONS(2828), - [anon_sym_asm] = ACTIONS(2828), - [anon_sym_AT_LBRACK] = ACTIONS(2828), - [sym___double_quote] = ACTIONS(2828), - [sym___single_quote] = ACTIONS(2828), - [sym___c_double_quote] = ACTIONS(2828), - [sym___c_single_quote] = ACTIONS(2828), - [sym___r_double_quote] = ACTIONS(2828), - [sym___r_single_quote] = ACTIONS(2828), + [anon_sym_DOT] = ACTIONS(4016), + [anon_sym_LBRACE] = ACTIONS(4018), + [anon_sym_const] = ACTIONS(4016), + [anon_sym_LPAREN] = ACTIONS(4016), + [anon_sym___global] = ACTIONS(4016), + [anon_sym_type] = ACTIONS(4016), + [anon_sym_fn] = ACTIONS(4016), + [anon_sym_PLUS] = ACTIONS(4016), + [anon_sym_DASH] = ACTIONS(4016), + [anon_sym_STAR] = ACTIONS(4016), + [anon_sym_struct] = ACTIONS(4016), + [anon_sym_union] = ACTIONS(4016), + [anon_sym_pub] = ACTIONS(4016), + [anon_sym_mut] = ACTIONS(4016), + [anon_sym_enum] = ACTIONS(4016), + [anon_sym_interface] = ACTIONS(4016), + [anon_sym_QMARK] = ACTIONS(4016), + [anon_sym_BANG] = ACTIONS(4016), + [anon_sym_go] = ACTIONS(4016), + [anon_sym_spawn] = ACTIONS(4016), + [anon_sym_json_DOTdecode] = ACTIONS(4016), + [anon_sym_LBRACK2] = ACTIONS(4016), + [anon_sym_TILDE] = ACTIONS(4016), + [anon_sym_CARET] = ACTIONS(4016), + [anon_sym_AMP] = ACTIONS(4016), + [anon_sym_LT_DASH] = ACTIONS(4016), + [sym_none] = ACTIONS(4016), + [sym_true] = ACTIONS(4016), + [sym_false] = ACTIONS(4016), + [sym_nil] = ACTIONS(4016), + [anon_sym_if] = ACTIONS(4016), + [anon_sym_DOLLARif] = ACTIONS(4016), + [anon_sym_match] = ACTIONS(4016), + [anon_sym_select] = ACTIONS(4016), + [anon_sym_lock] = ACTIONS(4016), + [anon_sym_rlock] = ACTIONS(4016), + [anon_sym_unsafe] = ACTIONS(4016), + [anon_sym_sql] = ACTIONS(4016), + [sym_int_literal] = ACTIONS(4016), + [sym_float_literal] = ACTIONS(4016), + [sym_rune_literal] = ACTIONS(4016), + [sym_pseudo_compile_time_identifier] = ACTIONS(4016), + [anon_sym_shared] = ACTIONS(4016), + [anon_sym_map_LBRACK] = ACTIONS(4016), + [anon_sym_chan] = ACTIONS(4016), + [anon_sym_thread] = ACTIONS(4016), + [anon_sym_atomic] = ACTIONS(4016), + [anon_sym_assert] = ACTIONS(4016), + [anon_sym_defer] = ACTIONS(4016), + [anon_sym_goto] = ACTIONS(4016), + [anon_sym_break] = ACTIONS(4016), + [anon_sym_continue] = ACTIONS(4016), + [anon_sym_return] = ACTIONS(4016), + [anon_sym_DOLLARfor] = ACTIONS(4016), + [anon_sym_for] = ACTIONS(4016), + [anon_sym_POUND] = ACTIONS(4016), + [anon_sym_asm] = ACTIONS(4016), + [anon_sym_AT_LBRACK] = ACTIONS(4016), + [sym___double_quote] = ACTIONS(4016), + [sym___single_quote] = ACTIONS(4016), + [sym___c_double_quote] = ACTIONS(4016), + [sym___c_single_quote] = ACTIONS(4016), + [sym___r_double_quote] = ACTIONS(4016), + [sym___r_single_quote] = ACTIONS(4016), }, [1418] = { [sym_line_comment] = STATE(1418), [sym_block_comment] = STATE(1418), - [ts_builtin_sym_end] = ACTIONS(2784), - [sym_identifier] = ACTIONS(2786), - [anon_sym_LF] = ACTIONS(2786), - [anon_sym_CR] = ACTIONS(2786), - [anon_sym_CR_LF] = ACTIONS(2786), + [ts_builtin_sym_end] = ACTIONS(3060), + [sym_identifier] = ACTIONS(3062), + [anon_sym_LF] = ACTIONS(3062), + [anon_sym_CR] = ACTIONS(3062), + [anon_sym_CR_LF] = ACTIONS(3062), [anon_sym_SLASH_SLASH] = ACTIONS(497), [anon_sym_SLASH_STAR] = ACTIONS(499), - [anon_sym_DOT] = ACTIONS(2786), - [anon_sym_LBRACE] = ACTIONS(2786), - [anon_sym_const] = ACTIONS(2786), - [anon_sym_LPAREN] = ACTIONS(2786), - [anon_sym___global] = ACTIONS(2786), - [anon_sym_type] = ACTIONS(2786), - [anon_sym_PIPE] = ACTIONS(2786), - [anon_sym_fn] = ACTIONS(2786), - [anon_sym_PLUS] = ACTIONS(2786), - [anon_sym_DASH] = ACTIONS(2786), - [anon_sym_STAR] = ACTIONS(2786), - [anon_sym_struct] = ACTIONS(2786), - [anon_sym_union] = ACTIONS(2786), - [anon_sym_pub] = ACTIONS(2786), - [anon_sym_mut] = ACTIONS(2786), - [anon_sym_enum] = ACTIONS(2786), - [anon_sym_interface] = ACTIONS(2786), - [anon_sym_QMARK] = ACTIONS(2786), - [anon_sym_BANG] = ACTIONS(2786), - [anon_sym_go] = ACTIONS(2786), - [anon_sym_spawn] = ACTIONS(2786), - [anon_sym_json_DOTdecode] = ACTIONS(2786), - [anon_sym_LBRACK2] = ACTIONS(2786), - [anon_sym_TILDE] = ACTIONS(2786), - [anon_sym_CARET] = ACTIONS(2786), - [anon_sym_AMP] = ACTIONS(2786), - [anon_sym_LT_DASH] = ACTIONS(2786), - [sym_none] = ACTIONS(2786), - [sym_true] = ACTIONS(2786), - [sym_false] = ACTIONS(2786), - [sym_nil] = ACTIONS(2786), - [anon_sym_if] = ACTIONS(2786), - [anon_sym_DOLLARif] = ACTIONS(2786), - [anon_sym_match] = ACTIONS(2786), - [anon_sym_select] = ACTIONS(2786), - [anon_sym_lock] = ACTIONS(2786), - [anon_sym_rlock] = ACTIONS(2786), - [anon_sym_unsafe] = ACTIONS(2786), - [anon_sym_sql] = ACTIONS(2786), - [sym_int_literal] = ACTIONS(2786), - [sym_float_literal] = ACTIONS(2786), - [sym_rune_literal] = ACTIONS(2786), - [sym_pseudo_compile_time_identifier] = ACTIONS(2786), - [anon_sym_shared] = ACTIONS(2786), - [anon_sym_map_LBRACK] = ACTIONS(2786), - [anon_sym_chan] = ACTIONS(2786), - [anon_sym_thread] = ACTIONS(2786), - [anon_sym_atomic] = ACTIONS(2786), - [anon_sym_assert] = ACTIONS(2786), - [anon_sym_defer] = ACTIONS(2786), - [anon_sym_goto] = ACTIONS(2786), - [anon_sym_break] = ACTIONS(2786), - [anon_sym_continue] = ACTIONS(2786), - [anon_sym_return] = ACTIONS(2786), - [anon_sym_DOLLARfor] = ACTIONS(2786), - [anon_sym_for] = ACTIONS(2786), - [anon_sym_POUND] = ACTIONS(2786), - [anon_sym_asm] = ACTIONS(2786), - [anon_sym_AT_LBRACK] = ACTIONS(2786), - [sym___double_quote] = ACTIONS(2786), - [sym___single_quote] = ACTIONS(2786), - [sym___c_double_quote] = ACTIONS(2786), - [sym___c_single_quote] = ACTIONS(2786), - [sym___r_double_quote] = ACTIONS(2786), - [sym___r_single_quote] = ACTIONS(2786), + [anon_sym_DOT] = ACTIONS(3062), + [anon_sym_LBRACE] = ACTIONS(3062), + [anon_sym_const] = ACTIONS(3062), + [anon_sym_LPAREN] = ACTIONS(3062), + [anon_sym___global] = ACTIONS(3062), + [anon_sym_type] = ACTIONS(3062), + [anon_sym_PIPE] = ACTIONS(3062), + [anon_sym_fn] = ACTIONS(3062), + [anon_sym_PLUS] = ACTIONS(3062), + [anon_sym_DASH] = ACTIONS(3062), + [anon_sym_STAR] = ACTIONS(3062), + [anon_sym_struct] = ACTIONS(3062), + [anon_sym_union] = ACTIONS(3062), + [anon_sym_pub] = ACTIONS(3062), + [anon_sym_mut] = ACTIONS(3062), + [anon_sym_enum] = ACTIONS(3062), + [anon_sym_interface] = ACTIONS(3062), + [anon_sym_QMARK] = ACTIONS(3062), + [anon_sym_BANG] = ACTIONS(3062), + [anon_sym_go] = ACTIONS(3062), + [anon_sym_spawn] = ACTIONS(3062), + [anon_sym_json_DOTdecode] = ACTIONS(3062), + [anon_sym_LBRACK2] = ACTIONS(3062), + [anon_sym_TILDE] = ACTIONS(3062), + [anon_sym_CARET] = ACTIONS(3062), + [anon_sym_AMP] = ACTIONS(3062), + [anon_sym_LT_DASH] = ACTIONS(3062), + [sym_none] = ACTIONS(3062), + [sym_true] = ACTIONS(3062), + [sym_false] = ACTIONS(3062), + [sym_nil] = ACTIONS(3062), + [anon_sym_if] = ACTIONS(3062), + [anon_sym_DOLLARif] = ACTIONS(3062), + [anon_sym_match] = ACTIONS(3062), + [anon_sym_select] = ACTIONS(3062), + [anon_sym_lock] = ACTIONS(3062), + [anon_sym_rlock] = ACTIONS(3062), + [anon_sym_unsafe] = ACTIONS(3062), + [anon_sym_sql] = ACTIONS(3062), + [sym_int_literal] = ACTIONS(3062), + [sym_float_literal] = ACTIONS(3062), + [sym_rune_literal] = ACTIONS(3062), + [sym_pseudo_compile_time_identifier] = ACTIONS(3062), + [anon_sym_shared] = ACTIONS(3062), + [anon_sym_map_LBRACK] = ACTIONS(3062), + [anon_sym_chan] = ACTIONS(3062), + [anon_sym_thread] = ACTIONS(3062), + [anon_sym_atomic] = ACTIONS(3062), + [anon_sym_assert] = ACTIONS(3062), + [anon_sym_defer] = ACTIONS(3062), + [anon_sym_goto] = ACTIONS(3062), + [anon_sym_break] = ACTIONS(3062), + [anon_sym_continue] = ACTIONS(3062), + [anon_sym_return] = ACTIONS(3062), + [anon_sym_DOLLARfor] = ACTIONS(3062), + [anon_sym_for] = ACTIONS(3062), + [anon_sym_POUND] = ACTIONS(3062), + [anon_sym_asm] = ACTIONS(3062), + [anon_sym_AT_LBRACK] = ACTIONS(3062), + [sym___double_quote] = ACTIONS(3062), + [sym___single_quote] = ACTIONS(3062), + [sym___c_double_quote] = ACTIONS(3062), + [sym___c_single_quote] = ACTIONS(3062), + [sym___r_double_quote] = ACTIONS(3062), + [sym___r_single_quote] = ACTIONS(3062), }, [1419] = { [sym_line_comment] = STATE(1419), [sym_block_comment] = STATE(1419), - [ts_builtin_sym_end] = ACTIONS(1903), - [sym_identifier] = ACTIONS(1905), - [anon_sym_LF] = ACTIONS(1905), - [anon_sym_CR] = ACTIONS(1905), - [anon_sym_CR_LF] = ACTIONS(1905), + [sym_block] = STATE(1519), + [ts_builtin_sym_end] = ACTIONS(4020), + [sym_identifier] = ACTIONS(4022), + [anon_sym_LF] = ACTIONS(4022), + [anon_sym_CR] = ACTIONS(4022), + [anon_sym_CR_LF] = ACTIONS(4022), [anon_sym_SLASH_SLASH] = ACTIONS(497), [anon_sym_SLASH_STAR] = ACTIONS(499), - [anon_sym_DOT] = ACTIONS(1905), - [anon_sym_LBRACE] = ACTIONS(1905), - [anon_sym_const] = ACTIONS(1905), - [anon_sym_LPAREN] = ACTIONS(1905), - [anon_sym___global] = ACTIONS(1905), - [anon_sym_type] = ACTIONS(1905), - [anon_sym_PIPE] = ACTIONS(1905), - [anon_sym_fn] = ACTIONS(1905), - [anon_sym_PLUS] = ACTIONS(1905), - [anon_sym_DASH] = ACTIONS(1905), - [anon_sym_STAR] = ACTIONS(1905), - [anon_sym_struct] = ACTIONS(1905), - [anon_sym_union] = ACTIONS(1905), - [anon_sym_pub] = ACTIONS(1905), - [anon_sym_mut] = ACTIONS(1905), - [anon_sym_enum] = ACTIONS(1905), - [anon_sym_interface] = ACTIONS(1905), - [anon_sym_QMARK] = ACTIONS(1905), - [anon_sym_BANG] = ACTIONS(1905), - [anon_sym_go] = ACTIONS(1905), - [anon_sym_spawn] = ACTIONS(1905), - [anon_sym_json_DOTdecode] = ACTIONS(1905), - [anon_sym_LBRACK2] = ACTIONS(1905), - [anon_sym_TILDE] = ACTIONS(1905), - [anon_sym_CARET] = ACTIONS(1905), - [anon_sym_AMP] = ACTIONS(1905), - [anon_sym_LT_DASH] = ACTIONS(1905), - [sym_none] = ACTIONS(1905), - [sym_true] = ACTIONS(1905), - [sym_false] = ACTIONS(1905), - [sym_nil] = ACTIONS(1905), - [anon_sym_if] = ACTIONS(1905), - [anon_sym_DOLLARif] = ACTIONS(1905), - [anon_sym_match] = ACTIONS(1905), - [anon_sym_select] = ACTIONS(1905), - [anon_sym_lock] = ACTIONS(1905), - [anon_sym_rlock] = ACTIONS(1905), - [anon_sym_unsafe] = ACTIONS(1905), - [anon_sym_sql] = ACTIONS(1905), - [sym_int_literal] = ACTIONS(1905), - [sym_float_literal] = ACTIONS(1905), - [sym_rune_literal] = ACTIONS(1905), - [sym_pseudo_compile_time_identifier] = ACTIONS(1905), - [anon_sym_shared] = ACTIONS(1905), - [anon_sym_map_LBRACK] = ACTIONS(1905), - [anon_sym_chan] = ACTIONS(1905), - [anon_sym_thread] = ACTIONS(1905), - [anon_sym_atomic] = ACTIONS(1905), - [anon_sym_assert] = ACTIONS(1905), - [anon_sym_defer] = ACTIONS(1905), - [anon_sym_goto] = ACTIONS(1905), - [anon_sym_break] = ACTIONS(1905), - [anon_sym_continue] = ACTIONS(1905), - [anon_sym_return] = ACTIONS(1905), - [anon_sym_DOLLARfor] = ACTIONS(1905), - [anon_sym_for] = ACTIONS(1905), - [anon_sym_POUND] = ACTIONS(1905), - [anon_sym_asm] = ACTIONS(1905), - [anon_sym_AT_LBRACK] = ACTIONS(1905), - [sym___double_quote] = ACTIONS(1905), - [sym___single_quote] = ACTIONS(1905), - [sym___c_double_quote] = ACTIONS(1905), - [sym___c_single_quote] = ACTIONS(1905), - [sym___r_double_quote] = ACTIONS(1905), - [sym___r_single_quote] = ACTIONS(1905), + [anon_sym_DOT] = ACTIONS(4022), + [anon_sym_LBRACE] = ACTIONS(4018), + [anon_sym_const] = ACTIONS(4022), + [anon_sym_LPAREN] = ACTIONS(4022), + [anon_sym___global] = ACTIONS(4022), + [anon_sym_type] = ACTIONS(4022), + [anon_sym_fn] = ACTIONS(4022), + [anon_sym_PLUS] = ACTIONS(4022), + [anon_sym_DASH] = ACTIONS(4022), + [anon_sym_STAR] = ACTIONS(4022), + [anon_sym_struct] = ACTIONS(4022), + [anon_sym_union] = ACTIONS(4022), + [anon_sym_pub] = ACTIONS(4022), + [anon_sym_mut] = ACTIONS(4022), + [anon_sym_enum] = ACTIONS(4022), + [anon_sym_interface] = ACTIONS(4022), + [anon_sym_QMARK] = ACTIONS(4022), + [anon_sym_BANG] = ACTIONS(4022), + [anon_sym_go] = ACTIONS(4022), + [anon_sym_spawn] = ACTIONS(4022), + [anon_sym_json_DOTdecode] = ACTIONS(4022), + [anon_sym_LBRACK2] = ACTIONS(4022), + [anon_sym_TILDE] = ACTIONS(4022), + [anon_sym_CARET] = ACTIONS(4022), + [anon_sym_AMP] = ACTIONS(4022), + [anon_sym_LT_DASH] = ACTIONS(4022), + [sym_none] = ACTIONS(4022), + [sym_true] = ACTIONS(4022), + [sym_false] = ACTIONS(4022), + [sym_nil] = ACTIONS(4022), + [anon_sym_if] = ACTIONS(4022), + [anon_sym_DOLLARif] = ACTIONS(4022), + [anon_sym_match] = ACTIONS(4022), + [anon_sym_select] = ACTIONS(4022), + [anon_sym_lock] = ACTIONS(4022), + [anon_sym_rlock] = ACTIONS(4022), + [anon_sym_unsafe] = ACTIONS(4022), + [anon_sym_sql] = ACTIONS(4022), + [sym_int_literal] = ACTIONS(4022), + [sym_float_literal] = ACTIONS(4022), + [sym_rune_literal] = ACTIONS(4022), + [sym_pseudo_compile_time_identifier] = ACTIONS(4022), + [anon_sym_shared] = ACTIONS(4022), + [anon_sym_map_LBRACK] = ACTIONS(4022), + [anon_sym_chan] = ACTIONS(4022), + [anon_sym_thread] = ACTIONS(4022), + [anon_sym_atomic] = ACTIONS(4022), + [anon_sym_assert] = ACTIONS(4022), + [anon_sym_defer] = ACTIONS(4022), + [anon_sym_goto] = ACTIONS(4022), + [anon_sym_break] = ACTIONS(4022), + [anon_sym_continue] = ACTIONS(4022), + [anon_sym_return] = ACTIONS(4022), + [anon_sym_DOLLARfor] = ACTIONS(4022), + [anon_sym_for] = ACTIONS(4022), + [anon_sym_POUND] = ACTIONS(4022), + [anon_sym_asm] = ACTIONS(4022), + [anon_sym_AT_LBRACK] = ACTIONS(4022), + [sym___double_quote] = ACTIONS(4022), + [sym___single_quote] = ACTIONS(4022), + [sym___c_double_quote] = ACTIONS(4022), + [sym___c_single_quote] = ACTIONS(4022), + [sym___r_double_quote] = ACTIONS(4022), + [sym___r_single_quote] = ACTIONS(4022), }, [1420] = { [sym_line_comment] = STATE(1420), [sym_block_comment] = STATE(1420), - [sym_reference_expression] = STATE(4388), - [sym_type_reference_expression] = STATE(2432), - [sym_plain_type] = STATE(2475), - [sym__plain_type_without_special] = STATE(2492), - [sym_anon_struct_type] = STATE(2493), - [sym_multi_return_type] = STATE(2492), - [sym_result_type] = STATE(2492), - [sym_option_type] = STATE(2492), - [sym_qualified_type] = STATE(2432), - [sym_fixed_array_type] = STATE(2493), - [sym_array_type] = STATE(2493), - [sym_pointer_type] = STATE(2493), - [sym_wrong_pointer_type] = STATE(2493), - [sym_map_type] = STATE(2493), - [sym_channel_type] = STATE(2493), - [sym_shared_type] = STATE(2493), - [sym_thread_type] = STATE(2493), - [sym_atomic_type] = STATE(2493), - [sym_generic_type] = STATE(2493), - [sym_function_type] = STATE(2493), - [sym_identifier] = ACTIONS(4014), + [sym_block] = STATE(1520), + [ts_builtin_sym_end] = ACTIONS(4024), + [sym_identifier] = ACTIONS(4026), + [anon_sym_LF] = ACTIONS(4026), + [anon_sym_CR] = ACTIONS(4026), + [anon_sym_CR_LF] = ACTIONS(4026), + [anon_sym_SLASH_SLASH] = ACTIONS(497), + [anon_sym_SLASH_STAR] = ACTIONS(499), + [anon_sym_DOT] = ACTIONS(4026), + [anon_sym_LBRACE] = ACTIONS(4018), + [anon_sym_const] = ACTIONS(4026), + [anon_sym_LPAREN] = ACTIONS(4026), + [anon_sym___global] = ACTIONS(4026), + [anon_sym_type] = ACTIONS(4026), + [anon_sym_fn] = ACTIONS(4026), + [anon_sym_PLUS] = ACTIONS(4026), + [anon_sym_DASH] = ACTIONS(4026), + [anon_sym_STAR] = ACTIONS(4026), + [anon_sym_struct] = ACTIONS(4026), + [anon_sym_union] = ACTIONS(4026), + [anon_sym_pub] = ACTIONS(4026), + [anon_sym_mut] = ACTIONS(4026), + [anon_sym_enum] = ACTIONS(4026), + [anon_sym_interface] = ACTIONS(4026), + [anon_sym_QMARK] = ACTIONS(4026), + [anon_sym_BANG] = ACTIONS(4026), + [anon_sym_go] = ACTIONS(4026), + [anon_sym_spawn] = ACTIONS(4026), + [anon_sym_json_DOTdecode] = ACTIONS(4026), + [anon_sym_LBRACK2] = ACTIONS(4026), + [anon_sym_TILDE] = ACTIONS(4026), + [anon_sym_CARET] = ACTIONS(4026), + [anon_sym_AMP] = ACTIONS(4026), + [anon_sym_LT_DASH] = ACTIONS(4026), + [sym_none] = ACTIONS(4026), + [sym_true] = ACTIONS(4026), + [sym_false] = ACTIONS(4026), + [sym_nil] = ACTIONS(4026), + [anon_sym_if] = ACTIONS(4026), + [anon_sym_DOLLARif] = ACTIONS(4026), + [anon_sym_match] = ACTIONS(4026), + [anon_sym_select] = ACTIONS(4026), + [anon_sym_lock] = ACTIONS(4026), + [anon_sym_rlock] = ACTIONS(4026), + [anon_sym_unsafe] = ACTIONS(4026), + [anon_sym_sql] = ACTIONS(4026), + [sym_int_literal] = ACTIONS(4026), + [sym_float_literal] = ACTIONS(4026), + [sym_rune_literal] = ACTIONS(4026), + [sym_pseudo_compile_time_identifier] = ACTIONS(4026), + [anon_sym_shared] = ACTIONS(4026), + [anon_sym_map_LBRACK] = ACTIONS(4026), + [anon_sym_chan] = ACTIONS(4026), + [anon_sym_thread] = ACTIONS(4026), + [anon_sym_atomic] = ACTIONS(4026), + [anon_sym_assert] = ACTIONS(4026), + [anon_sym_defer] = ACTIONS(4026), + [anon_sym_goto] = ACTIONS(4026), + [anon_sym_break] = ACTIONS(4026), + [anon_sym_continue] = ACTIONS(4026), + [anon_sym_return] = ACTIONS(4026), + [anon_sym_DOLLARfor] = ACTIONS(4026), + [anon_sym_for] = ACTIONS(4026), + [anon_sym_POUND] = ACTIONS(4026), + [anon_sym_asm] = ACTIONS(4026), + [anon_sym_AT_LBRACK] = ACTIONS(4026), + [sym___double_quote] = ACTIONS(4026), + [sym___single_quote] = ACTIONS(4026), + [sym___c_double_quote] = ACTIONS(4026), + [sym___c_single_quote] = ACTIONS(4026), + [sym___r_double_quote] = ACTIONS(4026), + [sym___r_single_quote] = ACTIONS(4026), + }, + [1421] = { + [sym_line_comment] = STATE(1421), + [sym_block_comment] = STATE(1421), + [sym_block] = STATE(1536), + [ts_builtin_sym_end] = ACTIONS(4028), + [sym_identifier] = ACTIONS(4030), + [anon_sym_LF] = ACTIONS(4030), + [anon_sym_CR] = ACTIONS(4030), + [anon_sym_CR_LF] = ACTIONS(4030), + [anon_sym_SLASH_SLASH] = ACTIONS(497), + [anon_sym_SLASH_STAR] = ACTIONS(499), + [anon_sym_DOT] = ACTIONS(4030), + [anon_sym_LBRACE] = ACTIONS(4018), + [anon_sym_const] = ACTIONS(4030), + [anon_sym_LPAREN] = ACTIONS(4030), + [anon_sym___global] = ACTIONS(4030), + [anon_sym_type] = ACTIONS(4030), + [anon_sym_fn] = ACTIONS(4030), + [anon_sym_PLUS] = ACTIONS(4030), + [anon_sym_DASH] = ACTIONS(4030), + [anon_sym_STAR] = ACTIONS(4030), + [anon_sym_struct] = ACTIONS(4030), + [anon_sym_union] = ACTIONS(4030), + [anon_sym_pub] = ACTIONS(4030), + [anon_sym_mut] = ACTIONS(4030), + [anon_sym_enum] = ACTIONS(4030), + [anon_sym_interface] = ACTIONS(4030), + [anon_sym_QMARK] = ACTIONS(4030), + [anon_sym_BANG] = ACTIONS(4030), + [anon_sym_go] = ACTIONS(4030), + [anon_sym_spawn] = ACTIONS(4030), + [anon_sym_json_DOTdecode] = ACTIONS(4030), + [anon_sym_LBRACK2] = ACTIONS(4030), + [anon_sym_TILDE] = ACTIONS(4030), + [anon_sym_CARET] = ACTIONS(4030), + [anon_sym_AMP] = ACTIONS(4030), + [anon_sym_LT_DASH] = ACTIONS(4030), + [sym_none] = ACTIONS(4030), + [sym_true] = ACTIONS(4030), + [sym_false] = ACTIONS(4030), + [sym_nil] = ACTIONS(4030), + [anon_sym_if] = ACTIONS(4030), + [anon_sym_DOLLARif] = ACTIONS(4030), + [anon_sym_match] = ACTIONS(4030), + [anon_sym_select] = ACTIONS(4030), + [anon_sym_lock] = ACTIONS(4030), + [anon_sym_rlock] = ACTIONS(4030), + [anon_sym_unsafe] = ACTIONS(4030), + [anon_sym_sql] = ACTIONS(4030), + [sym_int_literal] = ACTIONS(4030), + [sym_float_literal] = ACTIONS(4030), + [sym_rune_literal] = ACTIONS(4030), + [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), + }, + [1422] = { + [sym_line_comment] = STATE(1422), + [sym_block_comment] = STATE(1422), + [sym_block] = STATE(1542), + [ts_builtin_sym_end] = ACTIONS(4032), + [sym_identifier] = ACTIONS(4034), + [anon_sym_LF] = ACTIONS(4034), + [anon_sym_CR] = ACTIONS(4034), + [anon_sym_CR_LF] = ACTIONS(4034), + [anon_sym_SLASH_SLASH] = ACTIONS(497), + [anon_sym_SLASH_STAR] = ACTIONS(499), + [anon_sym_DOT] = ACTIONS(4034), + [anon_sym_LBRACE] = ACTIONS(4018), + [anon_sym_const] = ACTIONS(4034), + [anon_sym_LPAREN] = ACTIONS(4034), + [anon_sym___global] = ACTIONS(4034), + [anon_sym_type] = ACTIONS(4034), + [anon_sym_fn] = ACTIONS(4034), + [anon_sym_PLUS] = ACTIONS(4034), + [anon_sym_DASH] = ACTIONS(4034), + [anon_sym_STAR] = ACTIONS(4034), + [anon_sym_struct] = ACTIONS(4034), + [anon_sym_union] = ACTIONS(4034), + [anon_sym_pub] = ACTIONS(4034), + [anon_sym_mut] = ACTIONS(4034), + [anon_sym_enum] = ACTIONS(4034), + [anon_sym_interface] = ACTIONS(4034), + [anon_sym_QMARK] = ACTIONS(4034), + [anon_sym_BANG] = ACTIONS(4034), + [anon_sym_go] = ACTIONS(4034), + [anon_sym_spawn] = ACTIONS(4034), + [anon_sym_json_DOTdecode] = ACTIONS(4034), + [anon_sym_LBRACK2] = ACTIONS(4034), + [anon_sym_TILDE] = ACTIONS(4034), + [anon_sym_CARET] = ACTIONS(4034), + [anon_sym_AMP] = ACTIONS(4034), + [anon_sym_LT_DASH] = ACTIONS(4034), + [sym_none] = ACTIONS(4034), + [sym_true] = ACTIONS(4034), + [sym_false] = ACTIONS(4034), + [sym_nil] = ACTIONS(4034), + [anon_sym_if] = ACTIONS(4034), + [anon_sym_DOLLARif] = ACTIONS(4034), + [anon_sym_match] = ACTIONS(4034), + [anon_sym_select] = ACTIONS(4034), + [anon_sym_lock] = ACTIONS(4034), + [anon_sym_rlock] = ACTIONS(4034), + [anon_sym_unsafe] = ACTIONS(4034), + [anon_sym_sql] = ACTIONS(4034), + [sym_int_literal] = ACTIONS(4034), + [sym_float_literal] = ACTIONS(4034), + [sym_rune_literal] = ACTIONS(4034), + [sym_pseudo_compile_time_identifier] = ACTIONS(4034), + [anon_sym_shared] = ACTIONS(4034), + [anon_sym_map_LBRACK] = ACTIONS(4034), + [anon_sym_chan] = ACTIONS(4034), + [anon_sym_thread] = ACTIONS(4034), + [anon_sym_atomic] = ACTIONS(4034), + [anon_sym_assert] = ACTIONS(4034), + [anon_sym_defer] = ACTIONS(4034), + [anon_sym_goto] = ACTIONS(4034), + [anon_sym_break] = ACTIONS(4034), + [anon_sym_continue] = ACTIONS(4034), + [anon_sym_return] = ACTIONS(4034), + [anon_sym_DOLLARfor] = ACTIONS(4034), + [anon_sym_for] = ACTIONS(4034), + [anon_sym_POUND] = ACTIONS(4034), + [anon_sym_asm] = ACTIONS(4034), + [anon_sym_AT_LBRACK] = ACTIONS(4034), + [sym___double_quote] = ACTIONS(4034), + [sym___single_quote] = ACTIONS(4034), + [sym___c_double_quote] = ACTIONS(4034), + [sym___c_single_quote] = ACTIONS(4034), + [sym___r_double_quote] = ACTIONS(4034), + [sym___r_single_quote] = ACTIONS(4034), + }, + [1423] = { + [sym_line_comment] = STATE(1423), + [sym_block_comment] = STATE(1423), + [sym_reference_expression] = STATE(4498), + [sym_type_reference_expression] = STATE(3460), + [sym_plain_type] = STATE(2320), + [sym__plain_type_without_special] = STATE(2360), + [sym_anon_struct_type] = STATE(2362), + [sym_multi_return_type] = STATE(2360), + [sym_result_type] = STATE(2360), + [sym_option_type] = STATE(2360), + [sym_qualified_type] = STATE(3460), + [sym_fixed_array_type] = STATE(2362), + [sym_array_type] = STATE(2362), + [sym_pointer_type] = STATE(2362), + [sym_wrong_pointer_type] = STATE(2362), + [sym_map_type] = STATE(2362), + [sym_channel_type] = STATE(2362), + [sym_shared_type] = STATE(2362), + [sym_thread_type] = STATE(2362), + [sym_atomic_type] = STATE(2362), + [sym_generic_type] = STATE(2362), + [sym_function_type] = STATE(2362), + [sym_identifier] = ACTIONS(565), [anon_sym_LF] = ACTIONS(567), [anon_sym_CR] = ACTIONS(567), [anon_sym_CR_LF] = ACTIONS(567), @@ -174706,12 +174992,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_as] = ACTIONS(567), [anon_sym_COMMA] = ACTIONS(567), [anon_sym_RBRACE] = ACTIONS(567), - [anon_sym_LPAREN] = ACTIONS(4016), + [anon_sym_LPAREN] = ACTIONS(569), [anon_sym_PIPE] = ACTIONS(567), - [anon_sym_fn] = ACTIONS(4018), + [anon_sym_fn] = ACTIONS(571), [anon_sym_PLUS] = ACTIONS(567), [anon_sym_DASH] = ACTIONS(567), - [anon_sym_STAR] = ACTIONS(4020), + [anon_sym_STAR] = ACTIONS(573), [anon_sym_SLASH] = ACTIONS(567), [anon_sym_PERCENT] = ACTIONS(567), [anon_sym_LT] = ACTIONS(567), @@ -174721,1481 +175007,1025 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT_EQ] = ACTIONS(567), [anon_sym_GT_EQ] = ACTIONS(567), [anon_sym_LBRACK] = ACTIONS(563), - [anon_sym_struct] = ACTIONS(4022), + [anon_sym_struct] = ACTIONS(575), [anon_sym_PLUS_PLUS] = ACTIONS(567), [anon_sym_DASH_DASH] = ACTIONS(567), - [anon_sym_QMARK] = ACTIONS(4024), - [anon_sym_BANG] = ACTIONS(4026), - [anon_sym_LBRACK2] = ACTIONS(4028), + [anon_sym_QMARK] = ACTIONS(515), + [anon_sym_BANG] = ACTIONS(4036), + [anon_sym_LBRACK2] = ACTIONS(579), [anon_sym_CARET] = ACTIONS(567), - [anon_sym_AMP] = ACTIONS(4030), + [anon_sym_AMP] = ACTIONS(581), [anon_sym_LT_LT] = ACTIONS(567), [anon_sym_GT_GT] = ACTIONS(567), - [anon_sym_GT_GT_GT] = ACTIONS(567), - [anon_sym_AMP_CARET] = ACTIONS(567), - [anon_sym_AMP_AMP] = ACTIONS(567), - [anon_sym_PIPE_PIPE] = ACTIONS(567), - [anon_sym_or] = ACTIONS(567), - [anon_sym_QMARK_DOT] = ACTIONS(567), - [anon_sym_POUND_LBRACK] = ACTIONS(567), - [anon_sym_is] = ACTIONS(567), - [anon_sym_BANGis] = ACTIONS(567), - [anon_sym_in] = ACTIONS(567), - [anon_sym_BANGin] = ACTIONS(567), - [anon_sym_shared] = ACTIONS(4032), - [anon_sym_map_LBRACK] = ACTIONS(4034), - [anon_sym_chan] = ACTIONS(4036), - [anon_sym_thread] = ACTIONS(4038), - [anon_sym_atomic] = ACTIONS(4040), - }, - [1421] = { - [sym_line_comment] = STATE(1421), - [sym_block_comment] = STATE(1421), - [ts_builtin_sym_end] = ACTIONS(2808), - [sym_identifier] = ACTIONS(2810), - [anon_sym_LF] = ACTIONS(2810), - [anon_sym_CR] = ACTIONS(2810), - [anon_sym_CR_LF] = ACTIONS(2810), - [anon_sym_SLASH_SLASH] = ACTIONS(497), - [anon_sym_SLASH_STAR] = ACTIONS(499), - [anon_sym_DOT] = ACTIONS(2810), - [anon_sym_LBRACE] = ACTIONS(2810), - [anon_sym_const] = ACTIONS(2810), - [anon_sym_LPAREN] = ACTIONS(2810), - [anon_sym___global] = ACTIONS(2810), - [anon_sym_type] = ACTIONS(2810), - [anon_sym_PIPE] = ACTIONS(2810), - [anon_sym_fn] = ACTIONS(2810), - [anon_sym_PLUS] = ACTIONS(2810), - [anon_sym_DASH] = ACTIONS(2810), - [anon_sym_STAR] = ACTIONS(2810), - [anon_sym_struct] = ACTIONS(2810), - [anon_sym_union] = ACTIONS(2810), - [anon_sym_pub] = ACTIONS(2810), - [anon_sym_mut] = ACTIONS(2810), - [anon_sym_enum] = ACTIONS(2810), - [anon_sym_interface] = ACTIONS(2810), - [anon_sym_QMARK] = ACTIONS(2810), - [anon_sym_BANG] = ACTIONS(2810), - [anon_sym_go] = ACTIONS(2810), - [anon_sym_spawn] = ACTIONS(2810), - [anon_sym_json_DOTdecode] = ACTIONS(2810), - [anon_sym_LBRACK2] = ACTIONS(2810), - [anon_sym_TILDE] = ACTIONS(2810), - [anon_sym_CARET] = ACTIONS(2810), - [anon_sym_AMP] = ACTIONS(2810), - [anon_sym_LT_DASH] = ACTIONS(2810), - [sym_none] = ACTIONS(2810), - [sym_true] = ACTIONS(2810), - [sym_false] = ACTIONS(2810), - [sym_nil] = ACTIONS(2810), - [anon_sym_if] = ACTIONS(2810), - [anon_sym_DOLLARif] = ACTIONS(2810), - [anon_sym_match] = ACTIONS(2810), - [anon_sym_select] = ACTIONS(2810), - [anon_sym_lock] = ACTIONS(2810), - [anon_sym_rlock] = ACTIONS(2810), - [anon_sym_unsafe] = ACTIONS(2810), - [anon_sym_sql] = ACTIONS(2810), - [sym_int_literal] = ACTIONS(2810), - [sym_float_literal] = ACTIONS(2810), - [sym_rune_literal] = ACTIONS(2810), - [sym_pseudo_compile_time_identifier] = ACTIONS(2810), - [anon_sym_shared] = ACTIONS(2810), - [anon_sym_map_LBRACK] = ACTIONS(2810), - [anon_sym_chan] = ACTIONS(2810), - [anon_sym_thread] = ACTIONS(2810), - [anon_sym_atomic] = ACTIONS(2810), - [anon_sym_assert] = ACTIONS(2810), - [anon_sym_defer] = ACTIONS(2810), - [anon_sym_goto] = ACTIONS(2810), - [anon_sym_break] = ACTIONS(2810), - [anon_sym_continue] = ACTIONS(2810), - [anon_sym_return] = ACTIONS(2810), - [anon_sym_DOLLARfor] = ACTIONS(2810), - [anon_sym_for] = ACTIONS(2810), - [anon_sym_POUND] = ACTIONS(2810), - [anon_sym_asm] = ACTIONS(2810), - [anon_sym_AT_LBRACK] = ACTIONS(2810), - [sym___double_quote] = ACTIONS(2810), - [sym___single_quote] = ACTIONS(2810), - [sym___c_double_quote] = ACTIONS(2810), - [sym___c_single_quote] = ACTIONS(2810), - [sym___r_double_quote] = ACTIONS(2810), - [sym___r_single_quote] = ACTIONS(2810), - }, - [1422] = { - [sym_line_comment] = STATE(1422), - [sym_block_comment] = STATE(1422), - [sym_reference_expression] = STATE(4388), - [sym_type_reference_expression] = STATE(2432), - [sym_plain_type] = STATE(2463), - [sym__plain_type_without_special] = STATE(2492), - [sym_anon_struct_type] = STATE(2493), - [sym_multi_return_type] = STATE(2492), - [sym_result_type] = STATE(2492), - [sym_option_type] = STATE(2492), - [sym_qualified_type] = STATE(2432), - [sym_fixed_array_type] = STATE(2493), - [sym_array_type] = STATE(2493), - [sym_pointer_type] = STATE(2493), - [sym_wrong_pointer_type] = STATE(2493), - [sym_map_type] = STATE(2493), - [sym_channel_type] = STATE(2493), - [sym_shared_type] = STATE(2493), - [sym_thread_type] = STATE(2493), - [sym_atomic_type] = STATE(2493), - [sym_generic_type] = STATE(2493), - [sym_function_type] = STATE(2493), - [sym_identifier] = ACTIONS(4014), - [anon_sym_LF] = ACTIONS(619), - [anon_sym_CR] = ACTIONS(619), - [anon_sym_CR_LF] = ACTIONS(619), - [anon_sym_SLASH_SLASH] = ACTIONS(497), - [anon_sym_SLASH_STAR] = ACTIONS(499), - [anon_sym_SEMI] = ACTIONS(619), - [anon_sym_DOT] = ACTIONS(619), - [anon_sym_as] = ACTIONS(619), - [anon_sym_COMMA] = ACTIONS(619), - [anon_sym_RBRACE] = ACTIONS(619), - [anon_sym_LPAREN] = ACTIONS(4016), - [anon_sym_PIPE] = ACTIONS(619), - [anon_sym_fn] = ACTIONS(4018), - [anon_sym_PLUS] = ACTIONS(619), - [anon_sym_DASH] = ACTIONS(619), - [anon_sym_STAR] = ACTIONS(4020), - [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(4022), - [anon_sym_PLUS_PLUS] = ACTIONS(619), - [anon_sym_DASH_DASH] = ACTIONS(619), - [anon_sym_QMARK] = ACTIONS(4024), - [anon_sym_BANG] = ACTIONS(4026), - [anon_sym_LBRACK2] = ACTIONS(4028), - [anon_sym_CARET] = ACTIONS(619), - [anon_sym_AMP] = ACTIONS(4030), - [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(4032), - [anon_sym_map_LBRACK] = ACTIONS(4034), - [anon_sym_chan] = ACTIONS(4036), - [anon_sym_thread] = ACTIONS(4038), - [anon_sym_atomic] = ACTIONS(4040), - }, - [1423] = { - [sym_line_comment] = STATE(1423), - [sym_block_comment] = STATE(1423), - [sym_label_reference] = STATE(1484), - [ts_builtin_sym_end] = ACTIONS(4042), - [sym_identifier] = ACTIONS(4044), - [anon_sym_LF] = ACTIONS(4046), - [anon_sym_CR] = ACTIONS(4046), - [anon_sym_CR_LF] = ACTIONS(4046), - [anon_sym_SLASH_SLASH] = ACTIONS(497), - [anon_sym_SLASH_STAR] = ACTIONS(499), - [anon_sym_DOT] = ACTIONS(4046), - [anon_sym_LBRACE] = ACTIONS(4046), - [anon_sym_const] = ACTIONS(4046), - [anon_sym_LPAREN] = ACTIONS(4046), - [anon_sym___global] = ACTIONS(4046), - [anon_sym_type] = ACTIONS(4046), - [anon_sym_fn] = ACTIONS(4046), - [anon_sym_PLUS] = ACTIONS(4046), - [anon_sym_DASH] = ACTIONS(4046), - [anon_sym_STAR] = ACTIONS(4046), - [anon_sym_struct] = ACTIONS(4046), - [anon_sym_union] = ACTIONS(4046), - [anon_sym_pub] = ACTIONS(4046), - [anon_sym_mut] = ACTIONS(4046), - [anon_sym_enum] = ACTIONS(4046), - [anon_sym_interface] = ACTIONS(4046), - [anon_sym_QMARK] = ACTIONS(4046), - [anon_sym_BANG] = ACTIONS(4046), - [anon_sym_go] = ACTIONS(4046), - [anon_sym_spawn] = ACTIONS(4046), - [anon_sym_json_DOTdecode] = ACTIONS(4046), - [anon_sym_LBRACK2] = ACTIONS(4046), - [anon_sym_TILDE] = ACTIONS(4046), - [anon_sym_CARET] = ACTIONS(4046), - [anon_sym_AMP] = ACTIONS(4046), - [anon_sym_LT_DASH] = ACTIONS(4046), - [sym_none] = ACTIONS(4046), - [sym_true] = ACTIONS(4046), - [sym_false] = ACTIONS(4046), - [sym_nil] = ACTIONS(4046), - [anon_sym_if] = ACTIONS(4046), - [anon_sym_DOLLARif] = ACTIONS(4046), - [anon_sym_match] = ACTIONS(4046), - [anon_sym_select] = ACTIONS(4046), - [anon_sym_lock] = ACTIONS(4046), - [anon_sym_rlock] = ACTIONS(4046), - [anon_sym_unsafe] = ACTIONS(4046), - [anon_sym_sql] = ACTIONS(4046), - [sym_int_literal] = ACTIONS(4046), - [sym_float_literal] = ACTIONS(4046), - [sym_rune_literal] = ACTIONS(4046), - [sym_pseudo_compile_time_identifier] = ACTIONS(4046), - [anon_sym_shared] = ACTIONS(4046), - [anon_sym_map_LBRACK] = ACTIONS(4046), - [anon_sym_chan] = ACTIONS(4046), - [anon_sym_thread] = ACTIONS(4046), - [anon_sym_atomic] = ACTIONS(4046), - [anon_sym_assert] = ACTIONS(4046), - [anon_sym_defer] = ACTIONS(4046), - [anon_sym_goto] = ACTIONS(4046), - [anon_sym_break] = ACTIONS(4046), - [anon_sym_continue] = ACTIONS(4046), - [anon_sym_return] = ACTIONS(4046), - [anon_sym_DOLLARfor] = ACTIONS(4046), - [anon_sym_for] = ACTIONS(4046), - [anon_sym_POUND] = ACTIONS(4046), - [anon_sym_asm] = ACTIONS(4046), - [anon_sym_AT_LBRACK] = ACTIONS(4046), - [sym___double_quote] = ACTIONS(4046), - [sym___single_quote] = ACTIONS(4046), - [sym___c_double_quote] = ACTIONS(4046), - [sym___c_single_quote] = ACTIONS(4046), - [sym___r_double_quote] = ACTIONS(4046), - [sym___r_single_quote] = ACTIONS(4046), - }, - [1424] = { - [sym_line_comment] = STATE(1424), - [sym_block_comment] = STATE(1424), - [sym_label_reference] = STATE(1485), - [ts_builtin_sym_end] = ACTIONS(4048), - [sym_identifier] = ACTIONS(4044), - [anon_sym_LF] = ACTIONS(4050), - [anon_sym_CR] = ACTIONS(4050), - [anon_sym_CR_LF] = ACTIONS(4050), - [anon_sym_SLASH_SLASH] = ACTIONS(497), - [anon_sym_SLASH_STAR] = ACTIONS(499), - [anon_sym_DOT] = ACTIONS(4050), - [anon_sym_LBRACE] = ACTIONS(4050), - [anon_sym_const] = ACTIONS(4050), - [anon_sym_LPAREN] = ACTIONS(4050), - [anon_sym___global] = ACTIONS(4050), - [anon_sym_type] = ACTIONS(4050), - [anon_sym_fn] = ACTIONS(4050), - [anon_sym_PLUS] = ACTIONS(4050), - [anon_sym_DASH] = ACTIONS(4050), - [anon_sym_STAR] = ACTIONS(4050), - [anon_sym_struct] = ACTIONS(4050), - [anon_sym_union] = ACTIONS(4050), - [anon_sym_pub] = ACTIONS(4050), - [anon_sym_mut] = ACTIONS(4050), - [anon_sym_enum] = ACTIONS(4050), - [anon_sym_interface] = ACTIONS(4050), - [anon_sym_QMARK] = ACTIONS(4050), - [anon_sym_BANG] = ACTIONS(4050), - [anon_sym_go] = ACTIONS(4050), - [anon_sym_spawn] = ACTIONS(4050), - [anon_sym_json_DOTdecode] = ACTIONS(4050), - [anon_sym_LBRACK2] = ACTIONS(4050), - [anon_sym_TILDE] = ACTIONS(4050), - [anon_sym_CARET] = ACTIONS(4050), - [anon_sym_AMP] = ACTIONS(4050), - [anon_sym_LT_DASH] = ACTIONS(4050), - [sym_none] = ACTIONS(4050), - [sym_true] = ACTIONS(4050), - [sym_false] = ACTIONS(4050), - [sym_nil] = ACTIONS(4050), - [anon_sym_if] = ACTIONS(4050), - [anon_sym_DOLLARif] = ACTIONS(4050), - [anon_sym_match] = ACTIONS(4050), - [anon_sym_select] = ACTIONS(4050), - [anon_sym_lock] = ACTIONS(4050), - [anon_sym_rlock] = ACTIONS(4050), - [anon_sym_unsafe] = ACTIONS(4050), - [anon_sym_sql] = ACTIONS(4050), - [sym_int_literal] = ACTIONS(4050), - [sym_float_literal] = ACTIONS(4050), - [sym_rune_literal] = ACTIONS(4050), - [sym_pseudo_compile_time_identifier] = ACTIONS(4050), - [anon_sym_shared] = ACTIONS(4050), - [anon_sym_map_LBRACK] = ACTIONS(4050), - [anon_sym_chan] = ACTIONS(4050), - [anon_sym_thread] = ACTIONS(4050), - [anon_sym_atomic] = ACTIONS(4050), - [anon_sym_assert] = ACTIONS(4050), - [anon_sym_defer] = ACTIONS(4050), - [anon_sym_goto] = ACTIONS(4050), - [anon_sym_break] = ACTIONS(4050), - [anon_sym_continue] = ACTIONS(4050), - [anon_sym_return] = ACTIONS(4050), - [anon_sym_DOLLARfor] = ACTIONS(4050), - [anon_sym_for] = ACTIONS(4050), - [anon_sym_POUND] = ACTIONS(4050), - [anon_sym_asm] = ACTIONS(4050), - [anon_sym_AT_LBRACK] = ACTIONS(4050), - [sym___double_quote] = ACTIONS(4050), - [sym___single_quote] = ACTIONS(4050), - [sym___c_double_quote] = ACTIONS(4050), - [sym___c_single_quote] = ACTIONS(4050), - [sym___r_double_quote] = ACTIONS(4050), - [sym___r_single_quote] = ACTIONS(4050), - }, - [1425] = { - [sym_line_comment] = STATE(1425), - [sym_block_comment] = STATE(1425), - [ts_builtin_sym_end] = ACTIONS(2814), - [sym_identifier] = ACTIONS(2816), - [anon_sym_LF] = ACTIONS(2816), - [anon_sym_CR] = ACTIONS(2816), - [anon_sym_CR_LF] = ACTIONS(2816), - [anon_sym_SLASH_SLASH] = ACTIONS(497), - [anon_sym_SLASH_STAR] = ACTIONS(499), - [anon_sym_DOT] = ACTIONS(2816), - [anon_sym_LBRACE] = ACTIONS(2816), - [anon_sym_const] = ACTIONS(2816), - [anon_sym_LPAREN] = ACTIONS(2816), - [anon_sym___global] = ACTIONS(2816), - [anon_sym_type] = ACTIONS(2816), - [anon_sym_PIPE] = ACTIONS(2816), - [anon_sym_fn] = ACTIONS(2816), - [anon_sym_PLUS] = ACTIONS(2816), - [anon_sym_DASH] = ACTIONS(2816), - [anon_sym_STAR] = ACTIONS(2816), - [anon_sym_struct] = ACTIONS(2816), - [anon_sym_union] = ACTIONS(2816), - [anon_sym_pub] = ACTIONS(2816), - [anon_sym_mut] = ACTIONS(2816), - [anon_sym_enum] = ACTIONS(2816), - [anon_sym_interface] = ACTIONS(2816), - [anon_sym_QMARK] = ACTIONS(2816), - [anon_sym_BANG] = ACTIONS(2816), - [anon_sym_go] = ACTIONS(2816), - [anon_sym_spawn] = ACTIONS(2816), - [anon_sym_json_DOTdecode] = ACTIONS(2816), - [anon_sym_LBRACK2] = ACTIONS(2816), - [anon_sym_TILDE] = ACTIONS(2816), - [anon_sym_CARET] = ACTIONS(2816), - [anon_sym_AMP] = ACTIONS(2816), - [anon_sym_LT_DASH] = ACTIONS(2816), - [sym_none] = ACTIONS(2816), - [sym_true] = ACTIONS(2816), - [sym_false] = ACTIONS(2816), - [sym_nil] = ACTIONS(2816), - [anon_sym_if] = ACTIONS(2816), - [anon_sym_DOLLARif] = ACTIONS(2816), - [anon_sym_match] = ACTIONS(2816), - [anon_sym_select] = ACTIONS(2816), - [anon_sym_lock] = ACTIONS(2816), - [anon_sym_rlock] = ACTIONS(2816), - [anon_sym_unsafe] = ACTIONS(2816), - [anon_sym_sql] = ACTIONS(2816), - [sym_int_literal] = ACTIONS(2816), - [sym_float_literal] = ACTIONS(2816), - [sym_rune_literal] = ACTIONS(2816), - [sym_pseudo_compile_time_identifier] = ACTIONS(2816), - [anon_sym_shared] = ACTIONS(2816), - [anon_sym_map_LBRACK] = ACTIONS(2816), - [anon_sym_chan] = ACTIONS(2816), - [anon_sym_thread] = ACTIONS(2816), - [anon_sym_atomic] = ACTIONS(2816), - [anon_sym_assert] = ACTIONS(2816), - [anon_sym_defer] = ACTIONS(2816), - [anon_sym_goto] = ACTIONS(2816), - [anon_sym_break] = ACTIONS(2816), - [anon_sym_continue] = ACTIONS(2816), - [anon_sym_return] = ACTIONS(2816), - [anon_sym_DOLLARfor] = ACTIONS(2816), - [anon_sym_for] = ACTIONS(2816), - [anon_sym_POUND] = ACTIONS(2816), - [anon_sym_asm] = ACTIONS(2816), - [anon_sym_AT_LBRACK] = ACTIONS(2816), - [sym___double_quote] = ACTIONS(2816), - [sym___single_quote] = ACTIONS(2816), - [sym___c_double_quote] = ACTIONS(2816), - [sym___c_single_quote] = ACTIONS(2816), - [sym___r_double_quote] = ACTIONS(2816), - [sym___r_single_quote] = ACTIONS(2816), - }, - [1426] = { - [sym_line_comment] = STATE(1426), - [sym_block_comment] = STATE(1426), - [sym_reference_expression] = STATE(4388), - [sym_type_reference_expression] = STATE(2432), - [sym_plain_type] = STATE(2451), - [sym__plain_type_without_special] = STATE(2492), - [sym_anon_struct_type] = STATE(2493), - [sym_multi_return_type] = STATE(2492), - [sym_result_type] = STATE(2492), - [sym_option_type] = STATE(2492), - [sym_qualified_type] = STATE(2432), - [sym_fixed_array_type] = STATE(2493), - [sym_array_type] = STATE(2493), - [sym_pointer_type] = STATE(2493), - [sym_wrong_pointer_type] = STATE(2493), - [sym_map_type] = STATE(2493), - [sym_channel_type] = STATE(2493), - [sym_shared_type] = STATE(2493), - [sym_thread_type] = STATE(2493), - [sym_atomic_type] = STATE(2493), - [sym_generic_type] = STATE(2493), - [sym_function_type] = STATE(2493), - [sym_identifier] = ACTIONS(4014), - [anon_sym_LF] = ACTIONS(627), - [anon_sym_CR] = ACTIONS(627), - [anon_sym_CR_LF] = ACTIONS(627), - [anon_sym_SLASH_SLASH] = ACTIONS(497), - [anon_sym_SLASH_STAR] = ACTIONS(499), - [anon_sym_SEMI] = ACTIONS(627), - [anon_sym_DOT] = ACTIONS(627), - [anon_sym_as] = ACTIONS(627), - [anon_sym_COMMA] = ACTIONS(627), - [anon_sym_RBRACE] = ACTIONS(627), - [anon_sym_LPAREN] = ACTIONS(4016), - [anon_sym_PIPE] = ACTIONS(627), - [anon_sym_fn] = ACTIONS(4018), - [anon_sym_PLUS] = ACTIONS(627), - [anon_sym_DASH] = ACTIONS(627), - [anon_sym_STAR] = ACTIONS(4020), - [anon_sym_SLASH] = ACTIONS(627), - [anon_sym_PERCENT] = ACTIONS(627), - [anon_sym_LT] = ACTIONS(627), - [anon_sym_GT] = ACTIONS(627), - [anon_sym_EQ_EQ] = ACTIONS(627), - [anon_sym_BANG_EQ] = ACTIONS(627), - [anon_sym_LT_EQ] = ACTIONS(627), - [anon_sym_GT_EQ] = ACTIONS(627), - [anon_sym_LBRACK] = ACTIONS(625), - [anon_sym_struct] = ACTIONS(4022), - [anon_sym_PLUS_PLUS] = ACTIONS(627), - [anon_sym_DASH_DASH] = ACTIONS(627), - [anon_sym_QMARK] = ACTIONS(4024), - [anon_sym_BANG] = ACTIONS(4026), - [anon_sym_LBRACK2] = ACTIONS(4028), - [anon_sym_CARET] = ACTIONS(627), - [anon_sym_AMP] = ACTIONS(4030), - [anon_sym_LT_LT] = ACTIONS(627), - [anon_sym_GT_GT] = ACTIONS(627), - [anon_sym_GT_GT_GT] = ACTIONS(627), - [anon_sym_AMP_CARET] = ACTIONS(627), - [anon_sym_AMP_AMP] = ACTIONS(627), - [anon_sym_PIPE_PIPE] = ACTIONS(627), - [anon_sym_or] = ACTIONS(627), - [anon_sym_QMARK_DOT] = ACTIONS(627), - [anon_sym_POUND_LBRACK] = ACTIONS(627), - [anon_sym_is] = ACTIONS(627), - [anon_sym_BANGis] = ACTIONS(627), - [anon_sym_in] = ACTIONS(627), - [anon_sym_BANGin] = ACTIONS(627), - [anon_sym_shared] = ACTIONS(4032), - [anon_sym_map_LBRACK] = ACTIONS(4034), - [anon_sym_chan] = ACTIONS(4036), - [anon_sym_thread] = ACTIONS(4038), + [anon_sym_GT_GT_GT] = ACTIONS(567), + [anon_sym_AMP_CARET] = ACTIONS(567), + [anon_sym_AMP_AMP] = ACTIONS(567), + [anon_sym_PIPE_PIPE] = ACTIONS(567), + [anon_sym_or] = ACTIONS(567), + [anon_sym_QMARK_DOT] = ACTIONS(567), + [anon_sym_POUND_LBRACK] = ACTIONS(567), + [anon_sym_is] = ACTIONS(567), + [anon_sym_BANGis] = ACTIONS(567), + [anon_sym_in] = ACTIONS(567), + [anon_sym_BANGin] = ACTIONS(567), + [anon_sym_shared] = ACTIONS(583), + [anon_sym_map_LBRACK] = ACTIONS(549), + [anon_sym_chan] = ACTIONS(87), + [anon_sym_thread] = ACTIONS(89), + [anon_sym_atomic] = ACTIONS(91), + }, + [1424] = { + [sym_line_comment] = STATE(1424), + [sym_block_comment] = STATE(1424), + [sym_block] = STATE(1555), + [ts_builtin_sym_end] = ACTIONS(4038), + [sym_identifier] = ACTIONS(4040), + [anon_sym_LF] = ACTIONS(4040), + [anon_sym_CR] = ACTIONS(4040), + [anon_sym_CR_LF] = ACTIONS(4040), + [anon_sym_SLASH_SLASH] = ACTIONS(497), + [anon_sym_SLASH_STAR] = ACTIONS(499), + [anon_sym_DOT] = ACTIONS(4040), + [anon_sym_LBRACE] = ACTIONS(4018), + [anon_sym_const] = ACTIONS(4040), + [anon_sym_LPAREN] = ACTIONS(4040), + [anon_sym___global] = ACTIONS(4040), + [anon_sym_type] = ACTIONS(4040), + [anon_sym_fn] = ACTIONS(4040), + [anon_sym_PLUS] = ACTIONS(4040), + [anon_sym_DASH] = ACTIONS(4040), + [anon_sym_STAR] = ACTIONS(4040), + [anon_sym_struct] = ACTIONS(4040), + [anon_sym_union] = ACTIONS(4040), + [anon_sym_pub] = ACTIONS(4040), + [anon_sym_mut] = ACTIONS(4040), + [anon_sym_enum] = ACTIONS(4040), + [anon_sym_interface] = ACTIONS(4040), + [anon_sym_QMARK] = ACTIONS(4040), + [anon_sym_BANG] = ACTIONS(4040), + [anon_sym_go] = ACTIONS(4040), + [anon_sym_spawn] = ACTIONS(4040), + [anon_sym_json_DOTdecode] = ACTIONS(4040), + [anon_sym_LBRACK2] = ACTIONS(4040), + [anon_sym_TILDE] = ACTIONS(4040), + [anon_sym_CARET] = ACTIONS(4040), + [anon_sym_AMP] = ACTIONS(4040), + [anon_sym_LT_DASH] = ACTIONS(4040), + [sym_none] = ACTIONS(4040), + [sym_true] = ACTIONS(4040), + [sym_false] = ACTIONS(4040), + [sym_nil] = ACTIONS(4040), + [anon_sym_if] = ACTIONS(4040), + [anon_sym_DOLLARif] = ACTIONS(4040), + [anon_sym_match] = ACTIONS(4040), + [anon_sym_select] = ACTIONS(4040), + [anon_sym_lock] = ACTIONS(4040), + [anon_sym_rlock] = ACTIONS(4040), + [anon_sym_unsafe] = ACTIONS(4040), + [anon_sym_sql] = ACTIONS(4040), + [sym_int_literal] = ACTIONS(4040), + [sym_float_literal] = ACTIONS(4040), + [sym_rune_literal] = ACTIONS(4040), + [sym_pseudo_compile_time_identifier] = ACTIONS(4040), + [anon_sym_shared] = ACTIONS(4040), + [anon_sym_map_LBRACK] = ACTIONS(4040), + [anon_sym_chan] = ACTIONS(4040), + [anon_sym_thread] = ACTIONS(4040), [anon_sym_atomic] = ACTIONS(4040), + [anon_sym_assert] = ACTIONS(4040), + [anon_sym_defer] = ACTIONS(4040), + [anon_sym_goto] = ACTIONS(4040), + [anon_sym_break] = ACTIONS(4040), + [anon_sym_continue] = ACTIONS(4040), + [anon_sym_return] = ACTIONS(4040), + [anon_sym_DOLLARfor] = ACTIONS(4040), + [anon_sym_for] = ACTIONS(4040), + [anon_sym_POUND] = ACTIONS(4040), + [anon_sym_asm] = ACTIONS(4040), + [anon_sym_AT_LBRACK] = ACTIONS(4040), + [sym___double_quote] = ACTIONS(4040), + [sym___single_quote] = ACTIONS(4040), + [sym___c_double_quote] = ACTIONS(4040), + [sym___c_single_quote] = ACTIONS(4040), + [sym___r_double_quote] = ACTIONS(4040), + [sym___r_single_quote] = ACTIONS(4040), + }, + [1425] = { + [sym_line_comment] = STATE(1425), + [sym_block_comment] = STATE(1425), + [sym_block] = STATE(1558), + [ts_builtin_sym_end] = ACTIONS(4042), + [sym_identifier] = ACTIONS(4044), + [anon_sym_LF] = ACTIONS(4044), + [anon_sym_CR] = ACTIONS(4044), + [anon_sym_CR_LF] = ACTIONS(4044), + [anon_sym_SLASH_SLASH] = ACTIONS(497), + [anon_sym_SLASH_STAR] = ACTIONS(499), + [anon_sym_DOT] = ACTIONS(4044), + [anon_sym_LBRACE] = ACTIONS(4018), + [anon_sym_const] = ACTIONS(4044), + [anon_sym_LPAREN] = ACTIONS(4044), + [anon_sym___global] = ACTIONS(4044), + [anon_sym_type] = ACTIONS(4044), + [anon_sym_fn] = ACTIONS(4044), + [anon_sym_PLUS] = ACTIONS(4044), + [anon_sym_DASH] = ACTIONS(4044), + [anon_sym_STAR] = ACTIONS(4044), + [anon_sym_struct] = ACTIONS(4044), + [anon_sym_union] = ACTIONS(4044), + [anon_sym_pub] = ACTIONS(4044), + [anon_sym_mut] = ACTIONS(4044), + [anon_sym_enum] = ACTIONS(4044), + [anon_sym_interface] = ACTIONS(4044), + [anon_sym_QMARK] = ACTIONS(4044), + [anon_sym_BANG] = ACTIONS(4044), + [anon_sym_go] = ACTIONS(4044), + [anon_sym_spawn] = ACTIONS(4044), + [anon_sym_json_DOTdecode] = ACTIONS(4044), + [anon_sym_LBRACK2] = ACTIONS(4044), + [anon_sym_TILDE] = ACTIONS(4044), + [anon_sym_CARET] = ACTIONS(4044), + [anon_sym_AMP] = ACTIONS(4044), + [anon_sym_LT_DASH] = ACTIONS(4044), + [sym_none] = ACTIONS(4044), + [sym_true] = ACTIONS(4044), + [sym_false] = ACTIONS(4044), + [sym_nil] = ACTIONS(4044), + [anon_sym_if] = ACTIONS(4044), + [anon_sym_DOLLARif] = ACTIONS(4044), + [anon_sym_match] = ACTIONS(4044), + [anon_sym_select] = ACTIONS(4044), + [anon_sym_lock] = ACTIONS(4044), + [anon_sym_rlock] = ACTIONS(4044), + [anon_sym_unsafe] = ACTIONS(4044), + [anon_sym_sql] = ACTIONS(4044), + [sym_int_literal] = ACTIONS(4044), + [sym_float_literal] = ACTIONS(4044), + [sym_rune_literal] = ACTIONS(4044), + [sym_pseudo_compile_time_identifier] = ACTIONS(4044), + [anon_sym_shared] = ACTIONS(4044), + [anon_sym_map_LBRACK] = ACTIONS(4044), + [anon_sym_chan] = ACTIONS(4044), + [anon_sym_thread] = ACTIONS(4044), + [anon_sym_atomic] = ACTIONS(4044), + [anon_sym_assert] = ACTIONS(4044), + [anon_sym_defer] = ACTIONS(4044), + [anon_sym_goto] = ACTIONS(4044), + [anon_sym_break] = ACTIONS(4044), + [anon_sym_continue] = ACTIONS(4044), + [anon_sym_return] = ACTIONS(4044), + [anon_sym_DOLLARfor] = ACTIONS(4044), + [anon_sym_for] = ACTIONS(4044), + [anon_sym_POUND] = ACTIONS(4044), + [anon_sym_asm] = ACTIONS(4044), + [anon_sym_AT_LBRACK] = ACTIONS(4044), + [sym___double_quote] = ACTIONS(4044), + [sym___single_quote] = ACTIONS(4044), + [sym___c_double_quote] = ACTIONS(4044), + [sym___c_single_quote] = ACTIONS(4044), + [sym___r_double_quote] = ACTIONS(4044), + [sym___r_single_quote] = ACTIONS(4044), + }, + [1426] = { + [sym_line_comment] = STATE(1426), + [sym_block_comment] = STATE(1426), + [sym_block] = STATE(1482), + [ts_builtin_sym_end] = ACTIONS(4046), + [sym_identifier] = ACTIONS(4048), + [anon_sym_LF] = ACTIONS(4048), + [anon_sym_CR] = ACTIONS(4048), + [anon_sym_CR_LF] = ACTIONS(4048), + [anon_sym_SLASH_SLASH] = ACTIONS(497), + [anon_sym_SLASH_STAR] = ACTIONS(499), + [anon_sym_DOT] = ACTIONS(4048), + [anon_sym_LBRACE] = ACTIONS(4018), + [anon_sym_const] = ACTIONS(4048), + [anon_sym_LPAREN] = ACTIONS(4048), + [anon_sym___global] = ACTIONS(4048), + [anon_sym_type] = ACTIONS(4048), + [anon_sym_fn] = ACTIONS(4048), + [anon_sym_PLUS] = ACTIONS(4048), + [anon_sym_DASH] = ACTIONS(4048), + [anon_sym_STAR] = ACTIONS(4048), + [anon_sym_struct] = ACTIONS(4048), + [anon_sym_union] = ACTIONS(4048), + [anon_sym_pub] = ACTIONS(4048), + [anon_sym_mut] = ACTIONS(4048), + [anon_sym_enum] = ACTIONS(4048), + [anon_sym_interface] = ACTIONS(4048), + [anon_sym_QMARK] = ACTIONS(4048), + [anon_sym_BANG] = ACTIONS(4048), + [anon_sym_go] = ACTIONS(4048), + [anon_sym_spawn] = ACTIONS(4048), + [anon_sym_json_DOTdecode] = ACTIONS(4048), + [anon_sym_LBRACK2] = ACTIONS(4048), + [anon_sym_TILDE] = ACTIONS(4048), + [anon_sym_CARET] = ACTIONS(4048), + [anon_sym_AMP] = ACTIONS(4048), + [anon_sym_LT_DASH] = ACTIONS(4048), + [sym_none] = ACTIONS(4048), + [sym_true] = ACTIONS(4048), + [sym_false] = ACTIONS(4048), + [sym_nil] = ACTIONS(4048), + [anon_sym_if] = ACTIONS(4048), + [anon_sym_DOLLARif] = ACTIONS(4048), + [anon_sym_match] = ACTIONS(4048), + [anon_sym_select] = ACTIONS(4048), + [anon_sym_lock] = ACTIONS(4048), + [anon_sym_rlock] = ACTIONS(4048), + [anon_sym_unsafe] = ACTIONS(4048), + [anon_sym_sql] = ACTIONS(4048), + [sym_int_literal] = ACTIONS(4048), + [sym_float_literal] = ACTIONS(4048), + [sym_rune_literal] = ACTIONS(4048), + [sym_pseudo_compile_time_identifier] = ACTIONS(4048), + [anon_sym_shared] = ACTIONS(4048), + [anon_sym_map_LBRACK] = ACTIONS(4048), + [anon_sym_chan] = ACTIONS(4048), + [anon_sym_thread] = ACTIONS(4048), + [anon_sym_atomic] = ACTIONS(4048), + [anon_sym_assert] = ACTIONS(4048), + [anon_sym_defer] = ACTIONS(4048), + [anon_sym_goto] = ACTIONS(4048), + [anon_sym_break] = ACTIONS(4048), + [anon_sym_continue] = ACTIONS(4048), + [anon_sym_return] = ACTIONS(4048), + [anon_sym_DOLLARfor] = ACTIONS(4048), + [anon_sym_for] = ACTIONS(4048), + [anon_sym_POUND] = ACTIONS(4048), + [anon_sym_asm] = ACTIONS(4048), + [anon_sym_AT_LBRACK] = ACTIONS(4048), + [sym___double_quote] = ACTIONS(4048), + [sym___single_quote] = ACTIONS(4048), + [sym___c_double_quote] = ACTIONS(4048), + [sym___c_single_quote] = ACTIONS(4048), + [sym___r_double_quote] = ACTIONS(4048), + [sym___r_single_quote] = ACTIONS(4048), }, [1427] = { [sym_line_comment] = STATE(1427), [sym_block_comment] = STATE(1427), - [sym_block] = STATE(1538), - [ts_builtin_sym_end] = ACTIONS(4052), - [sym_identifier] = ACTIONS(4054), - [anon_sym_LF] = ACTIONS(4054), - [anon_sym_CR] = ACTIONS(4054), - [anon_sym_CR_LF] = ACTIONS(4054), + [sym_block] = STATE(1563), + [ts_builtin_sym_end] = ACTIONS(4050), + [sym_identifier] = ACTIONS(4052), + [anon_sym_LF] = ACTIONS(4052), + [anon_sym_CR] = ACTIONS(4052), + [anon_sym_CR_LF] = ACTIONS(4052), [anon_sym_SLASH_SLASH] = ACTIONS(497), [anon_sym_SLASH_STAR] = ACTIONS(499), - [anon_sym_DOT] = ACTIONS(4054), - [anon_sym_LBRACE] = ACTIONS(4012), - [anon_sym_const] = ACTIONS(4054), - [anon_sym_LPAREN] = ACTIONS(4054), - [anon_sym___global] = ACTIONS(4054), - [anon_sym_type] = ACTIONS(4054), - [anon_sym_fn] = ACTIONS(4054), - [anon_sym_PLUS] = ACTIONS(4054), - [anon_sym_DASH] = ACTIONS(4054), - [anon_sym_STAR] = ACTIONS(4054), - [anon_sym_struct] = ACTIONS(4054), - [anon_sym_union] = ACTIONS(4054), - [anon_sym_pub] = ACTIONS(4054), - [anon_sym_mut] = ACTIONS(4054), - [anon_sym_enum] = ACTIONS(4054), - [anon_sym_interface] = ACTIONS(4054), - [anon_sym_QMARK] = ACTIONS(4054), - [anon_sym_BANG] = ACTIONS(4054), - [anon_sym_go] = ACTIONS(4054), - [anon_sym_spawn] = ACTIONS(4054), - [anon_sym_json_DOTdecode] = ACTIONS(4054), - [anon_sym_LBRACK2] = ACTIONS(4054), - [anon_sym_TILDE] = ACTIONS(4054), - [anon_sym_CARET] = ACTIONS(4054), - [anon_sym_AMP] = ACTIONS(4054), - [anon_sym_LT_DASH] = ACTIONS(4054), - [sym_none] = ACTIONS(4054), - [sym_true] = ACTIONS(4054), - [sym_false] = ACTIONS(4054), - [sym_nil] = ACTIONS(4054), - [anon_sym_if] = ACTIONS(4054), - [anon_sym_DOLLARif] = ACTIONS(4054), - [anon_sym_match] = ACTIONS(4054), - [anon_sym_select] = ACTIONS(4054), - [anon_sym_lock] = ACTIONS(4054), - [anon_sym_rlock] = ACTIONS(4054), - [anon_sym_unsafe] = ACTIONS(4054), - [anon_sym_sql] = ACTIONS(4054), - [sym_int_literal] = ACTIONS(4054), - [sym_float_literal] = ACTIONS(4054), - [sym_rune_literal] = ACTIONS(4054), - [sym_pseudo_compile_time_identifier] = ACTIONS(4054), - [anon_sym_shared] = ACTIONS(4054), - [anon_sym_map_LBRACK] = ACTIONS(4054), - [anon_sym_chan] = ACTIONS(4054), - [anon_sym_thread] = ACTIONS(4054), - [anon_sym_atomic] = ACTIONS(4054), - [anon_sym_assert] = ACTIONS(4054), - [anon_sym_defer] = ACTIONS(4054), - [anon_sym_goto] = ACTIONS(4054), - [anon_sym_break] = ACTIONS(4054), - [anon_sym_continue] = ACTIONS(4054), - [anon_sym_return] = ACTIONS(4054), - [anon_sym_DOLLARfor] = ACTIONS(4054), - [anon_sym_for] = ACTIONS(4054), - [anon_sym_POUND] = ACTIONS(4054), - [anon_sym_asm] = ACTIONS(4054), - [anon_sym_AT_LBRACK] = ACTIONS(4054), - [sym___double_quote] = ACTIONS(4054), - [sym___single_quote] = ACTIONS(4054), - [sym___c_double_quote] = ACTIONS(4054), - [sym___c_single_quote] = ACTIONS(4054), - [sym___r_double_quote] = ACTIONS(4054), - [sym___r_single_quote] = ACTIONS(4054), + [anon_sym_DOT] = ACTIONS(4052), + [anon_sym_LBRACE] = ACTIONS(4018), + [anon_sym_const] = ACTIONS(4052), + [anon_sym_LPAREN] = ACTIONS(4052), + [anon_sym___global] = ACTIONS(4052), + [anon_sym_type] = ACTIONS(4052), + [anon_sym_fn] = ACTIONS(4052), + [anon_sym_PLUS] = ACTIONS(4052), + [anon_sym_DASH] = ACTIONS(4052), + [anon_sym_STAR] = ACTIONS(4052), + [anon_sym_struct] = ACTIONS(4052), + [anon_sym_union] = ACTIONS(4052), + [anon_sym_pub] = ACTIONS(4052), + [anon_sym_mut] = ACTIONS(4052), + [anon_sym_enum] = ACTIONS(4052), + [anon_sym_interface] = ACTIONS(4052), + [anon_sym_QMARK] = ACTIONS(4052), + [anon_sym_BANG] = ACTIONS(4052), + [anon_sym_go] = ACTIONS(4052), + [anon_sym_spawn] = ACTIONS(4052), + [anon_sym_json_DOTdecode] = ACTIONS(4052), + [anon_sym_LBRACK2] = ACTIONS(4052), + [anon_sym_TILDE] = ACTIONS(4052), + [anon_sym_CARET] = ACTIONS(4052), + [anon_sym_AMP] = ACTIONS(4052), + [anon_sym_LT_DASH] = ACTIONS(4052), + [sym_none] = ACTIONS(4052), + [sym_true] = ACTIONS(4052), + [sym_false] = ACTIONS(4052), + [sym_nil] = ACTIONS(4052), + [anon_sym_if] = ACTIONS(4052), + [anon_sym_DOLLARif] = ACTIONS(4052), + [anon_sym_match] = ACTIONS(4052), + [anon_sym_select] = ACTIONS(4052), + [anon_sym_lock] = ACTIONS(4052), + [anon_sym_rlock] = ACTIONS(4052), + [anon_sym_unsafe] = ACTIONS(4052), + [anon_sym_sql] = ACTIONS(4052), + [sym_int_literal] = ACTIONS(4052), + [sym_float_literal] = ACTIONS(4052), + [sym_rune_literal] = ACTIONS(4052), + [sym_pseudo_compile_time_identifier] = ACTIONS(4052), + [anon_sym_shared] = ACTIONS(4052), + [anon_sym_map_LBRACK] = ACTIONS(4052), + [anon_sym_chan] = ACTIONS(4052), + [anon_sym_thread] = ACTIONS(4052), + [anon_sym_atomic] = ACTIONS(4052), + [anon_sym_assert] = ACTIONS(4052), + [anon_sym_defer] = ACTIONS(4052), + [anon_sym_goto] = ACTIONS(4052), + [anon_sym_break] = ACTIONS(4052), + [anon_sym_continue] = ACTIONS(4052), + [anon_sym_return] = ACTIONS(4052), + [anon_sym_DOLLARfor] = ACTIONS(4052), + [anon_sym_for] = ACTIONS(4052), + [anon_sym_POUND] = ACTIONS(4052), + [anon_sym_asm] = ACTIONS(4052), + [anon_sym_AT_LBRACK] = ACTIONS(4052), + [sym___double_quote] = ACTIONS(4052), + [sym___single_quote] = ACTIONS(4052), + [sym___c_double_quote] = ACTIONS(4052), + [sym___c_single_quote] = ACTIONS(4052), + [sym___r_double_quote] = ACTIONS(4052), + [sym___r_single_quote] = ACTIONS(4052), }, [1428] = { [sym_line_comment] = STATE(1428), [sym_block_comment] = STATE(1428), - [sym_block] = STATE(1480), - [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_block] = STATE(1567), + [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), [anon_sym_SLASH_SLASH] = ACTIONS(497), [anon_sym_SLASH_STAR] = ACTIONS(499), - [anon_sym_DOT] = ACTIONS(4058), - [anon_sym_LBRACE] = ACTIONS(4012), - [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), + [anon_sym_DOT] = ACTIONS(4056), + [anon_sym_LBRACE] = ACTIONS(4018), + [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), }, [1429] = { [sym_line_comment] = STATE(1429), [sym_block_comment] = STATE(1429), - [ts_builtin_sym_end] = ACTIONS(2870), - [sym_identifier] = ACTIONS(2872), - [anon_sym_LF] = ACTIONS(2872), - [anon_sym_CR] = ACTIONS(2872), - [anon_sym_CR_LF] = ACTIONS(2872), + [sym_block] = STATE(1572), + [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), [anon_sym_SLASH_SLASH] = ACTIONS(497), [anon_sym_SLASH_STAR] = ACTIONS(499), - [anon_sym_DOT] = ACTIONS(2872), - [anon_sym_LBRACE] = ACTIONS(2872), - [anon_sym_const] = ACTIONS(2872), - [anon_sym_LPAREN] = ACTIONS(2872), - [anon_sym___global] = ACTIONS(2872), - [anon_sym_type] = ACTIONS(2872), - [anon_sym_PIPE] = ACTIONS(2872), - [anon_sym_fn] = ACTIONS(2872), - [anon_sym_PLUS] = ACTIONS(2872), - [anon_sym_DASH] = ACTIONS(2872), - [anon_sym_STAR] = ACTIONS(2872), - [anon_sym_struct] = ACTIONS(2872), - [anon_sym_union] = ACTIONS(2872), - [anon_sym_pub] = ACTIONS(2872), - [anon_sym_mut] = ACTIONS(2872), - [anon_sym_enum] = ACTIONS(2872), - [anon_sym_interface] = ACTIONS(2872), - [anon_sym_QMARK] = ACTIONS(2872), - [anon_sym_BANG] = ACTIONS(2872), - [anon_sym_go] = ACTIONS(2872), - [anon_sym_spawn] = ACTIONS(2872), - [anon_sym_json_DOTdecode] = ACTIONS(2872), - [anon_sym_LBRACK2] = ACTIONS(2872), - [anon_sym_TILDE] = ACTIONS(2872), - [anon_sym_CARET] = ACTIONS(2872), - [anon_sym_AMP] = ACTIONS(2872), - [anon_sym_LT_DASH] = ACTIONS(2872), - [sym_none] = ACTIONS(2872), - [sym_true] = ACTIONS(2872), - [sym_false] = ACTIONS(2872), - [sym_nil] = ACTIONS(2872), - [anon_sym_if] = ACTIONS(2872), - [anon_sym_DOLLARif] = ACTIONS(2872), - [anon_sym_match] = ACTIONS(2872), - [anon_sym_select] = ACTIONS(2872), - [anon_sym_lock] = ACTIONS(2872), - [anon_sym_rlock] = ACTIONS(2872), - [anon_sym_unsafe] = ACTIONS(2872), - [anon_sym_sql] = ACTIONS(2872), - [sym_int_literal] = ACTIONS(2872), - [sym_float_literal] = ACTIONS(2872), - [sym_rune_literal] = ACTIONS(2872), - [sym_pseudo_compile_time_identifier] = ACTIONS(2872), - [anon_sym_shared] = ACTIONS(2872), - [anon_sym_map_LBRACK] = ACTIONS(2872), - [anon_sym_chan] = ACTIONS(2872), - [anon_sym_thread] = ACTIONS(2872), - [anon_sym_atomic] = ACTIONS(2872), - [anon_sym_assert] = ACTIONS(2872), - [anon_sym_defer] = ACTIONS(2872), - [anon_sym_goto] = ACTIONS(2872), - [anon_sym_break] = ACTIONS(2872), - [anon_sym_continue] = ACTIONS(2872), - [anon_sym_return] = ACTIONS(2872), - [anon_sym_DOLLARfor] = ACTIONS(2872), - [anon_sym_for] = ACTIONS(2872), - [anon_sym_POUND] = ACTIONS(2872), - [anon_sym_asm] = ACTIONS(2872), - [anon_sym_AT_LBRACK] = ACTIONS(2872), - [sym___double_quote] = ACTIONS(2872), - [sym___single_quote] = ACTIONS(2872), - [sym___c_double_quote] = ACTIONS(2872), - [sym___c_single_quote] = ACTIONS(2872), - [sym___r_double_quote] = ACTIONS(2872), - [sym___r_single_quote] = ACTIONS(2872), + [anon_sym_DOT] = ACTIONS(4060), + [anon_sym_LBRACE] = ACTIONS(4018), + [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), }, [1430] = { [sym_line_comment] = STATE(1430), [sym_block_comment] = STATE(1430), - [ts_builtin_sym_end] = ACTIONS(2898), - [sym_identifier] = ACTIONS(2900), - [anon_sym_LF] = ACTIONS(2900), - [anon_sym_CR] = ACTIONS(2900), - [anon_sym_CR_LF] = ACTIONS(2900), + [sym_block] = STATE(1573), + [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), [anon_sym_SLASH_SLASH] = ACTIONS(497), [anon_sym_SLASH_STAR] = ACTIONS(499), - [anon_sym_DOT] = ACTIONS(2900), - [anon_sym_LBRACE] = ACTIONS(2900), - [anon_sym_const] = ACTIONS(2900), - [anon_sym_LPAREN] = ACTIONS(2900), - [anon_sym___global] = ACTIONS(2900), - [anon_sym_type] = ACTIONS(2900), - [anon_sym_PIPE] = ACTIONS(2900), - [anon_sym_fn] = ACTIONS(2900), - [anon_sym_PLUS] = ACTIONS(2900), - [anon_sym_DASH] = ACTIONS(2900), - [anon_sym_STAR] = ACTIONS(2900), - [anon_sym_struct] = ACTIONS(2900), - [anon_sym_union] = ACTIONS(2900), - [anon_sym_pub] = ACTIONS(2900), - [anon_sym_mut] = ACTIONS(2900), - [anon_sym_enum] = ACTIONS(2900), - [anon_sym_interface] = ACTIONS(2900), - [anon_sym_QMARK] = ACTIONS(2900), - [anon_sym_BANG] = ACTIONS(2900), - [anon_sym_go] = ACTIONS(2900), - [anon_sym_spawn] = ACTIONS(2900), - [anon_sym_json_DOTdecode] = ACTIONS(2900), - [anon_sym_LBRACK2] = ACTIONS(2900), - [anon_sym_TILDE] = ACTIONS(2900), - [anon_sym_CARET] = ACTIONS(2900), - [anon_sym_AMP] = ACTIONS(2900), - [anon_sym_LT_DASH] = ACTIONS(2900), - [sym_none] = ACTIONS(2900), - [sym_true] = ACTIONS(2900), - [sym_false] = ACTIONS(2900), - [sym_nil] = ACTIONS(2900), - [anon_sym_if] = ACTIONS(2900), - [anon_sym_DOLLARif] = ACTIONS(2900), - [anon_sym_match] = ACTIONS(2900), - [anon_sym_select] = ACTIONS(2900), - [anon_sym_lock] = ACTIONS(2900), - [anon_sym_rlock] = ACTIONS(2900), - [anon_sym_unsafe] = ACTIONS(2900), - [anon_sym_sql] = ACTIONS(2900), - [sym_int_literal] = ACTIONS(2900), - [sym_float_literal] = ACTIONS(2900), - [sym_rune_literal] = ACTIONS(2900), - [sym_pseudo_compile_time_identifier] = ACTIONS(2900), - [anon_sym_shared] = ACTIONS(2900), - [anon_sym_map_LBRACK] = ACTIONS(2900), - [anon_sym_chan] = ACTIONS(2900), - [anon_sym_thread] = ACTIONS(2900), - [anon_sym_atomic] = ACTIONS(2900), - [anon_sym_assert] = ACTIONS(2900), - [anon_sym_defer] = ACTIONS(2900), - [anon_sym_goto] = ACTIONS(2900), - [anon_sym_break] = ACTIONS(2900), - [anon_sym_continue] = ACTIONS(2900), - [anon_sym_return] = ACTIONS(2900), - [anon_sym_DOLLARfor] = ACTIONS(2900), - [anon_sym_for] = ACTIONS(2900), - [anon_sym_POUND] = ACTIONS(2900), - [anon_sym_asm] = ACTIONS(2900), - [anon_sym_AT_LBRACK] = ACTIONS(2900), - [sym___double_quote] = ACTIONS(2900), - [sym___single_quote] = ACTIONS(2900), - [sym___c_double_quote] = ACTIONS(2900), - [sym___c_single_quote] = ACTIONS(2900), - [sym___r_double_quote] = ACTIONS(2900), - [sym___r_single_quote] = ACTIONS(2900), + [anon_sym_DOT] = ACTIONS(4064), + [anon_sym_LBRACE] = ACTIONS(4018), + [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), }, [1431] = { [sym_line_comment] = STATE(1431), [sym_block_comment] = STATE(1431), - [ts_builtin_sym_end] = ACTIONS(2918), - [sym_identifier] = ACTIONS(2920), - [anon_sym_LF] = ACTIONS(2920), - [anon_sym_CR] = ACTIONS(2920), - [anon_sym_CR_LF] = ACTIONS(2920), + [ts_builtin_sym_end] = ACTIONS(3989), + [sym_identifier] = ACTIONS(3991), + [anon_sym_LF] = ACTIONS(3991), + [anon_sym_CR] = ACTIONS(3991), + [anon_sym_CR_LF] = ACTIONS(3991), [anon_sym_SLASH_SLASH] = ACTIONS(497), [anon_sym_SLASH_STAR] = ACTIONS(499), - [anon_sym_DOT] = ACTIONS(2920), - [anon_sym_LBRACE] = ACTIONS(2920), - [anon_sym_const] = ACTIONS(2920), - [anon_sym_LPAREN] = ACTIONS(2920), - [anon_sym___global] = ACTIONS(2920), - [anon_sym_type] = ACTIONS(2920), - [anon_sym_PIPE] = ACTIONS(2920), - [anon_sym_fn] = ACTIONS(2920), - [anon_sym_PLUS] = ACTIONS(2920), - [anon_sym_DASH] = ACTIONS(2920), - [anon_sym_STAR] = ACTIONS(2920), - [anon_sym_struct] = ACTIONS(2920), - [anon_sym_union] = ACTIONS(2920), - [anon_sym_pub] = ACTIONS(2920), - [anon_sym_mut] = ACTIONS(2920), - [anon_sym_enum] = ACTIONS(2920), - [anon_sym_interface] = ACTIONS(2920), - [anon_sym_QMARK] = ACTIONS(2920), - [anon_sym_BANG] = ACTIONS(2920), - [anon_sym_go] = ACTIONS(2920), - [anon_sym_spawn] = ACTIONS(2920), - [anon_sym_json_DOTdecode] = ACTIONS(2920), - [anon_sym_LBRACK2] = ACTIONS(2920), - [anon_sym_TILDE] = ACTIONS(2920), - [anon_sym_CARET] = ACTIONS(2920), - [anon_sym_AMP] = ACTIONS(2920), - [anon_sym_LT_DASH] = ACTIONS(2920), - [sym_none] = ACTIONS(2920), - [sym_true] = ACTIONS(2920), - [sym_false] = ACTIONS(2920), - [sym_nil] = ACTIONS(2920), - [anon_sym_if] = ACTIONS(2920), - [anon_sym_DOLLARif] = ACTIONS(2920), - [anon_sym_match] = ACTIONS(2920), - [anon_sym_select] = ACTIONS(2920), - [anon_sym_lock] = ACTIONS(2920), - [anon_sym_rlock] = ACTIONS(2920), - [anon_sym_unsafe] = ACTIONS(2920), - [anon_sym_sql] = ACTIONS(2920), - [sym_int_literal] = ACTIONS(2920), - [sym_float_literal] = ACTIONS(2920), - [sym_rune_literal] = ACTIONS(2920), - [sym_pseudo_compile_time_identifier] = ACTIONS(2920), - [anon_sym_shared] = ACTIONS(2920), - [anon_sym_map_LBRACK] = ACTIONS(2920), - [anon_sym_chan] = ACTIONS(2920), - [anon_sym_thread] = ACTIONS(2920), - [anon_sym_atomic] = ACTIONS(2920), - [anon_sym_assert] = ACTIONS(2920), - [anon_sym_defer] = ACTIONS(2920), - [anon_sym_goto] = ACTIONS(2920), - [anon_sym_break] = ACTIONS(2920), - [anon_sym_continue] = ACTIONS(2920), - [anon_sym_return] = ACTIONS(2920), - [anon_sym_DOLLARfor] = ACTIONS(2920), - [anon_sym_for] = ACTIONS(2920), - [anon_sym_POUND] = ACTIONS(2920), - [anon_sym_asm] = ACTIONS(2920), - [anon_sym_AT_LBRACK] = ACTIONS(2920), - [sym___double_quote] = ACTIONS(2920), - [sym___single_quote] = ACTIONS(2920), - [sym___c_double_quote] = ACTIONS(2920), - [sym___c_single_quote] = ACTIONS(2920), - [sym___r_double_quote] = ACTIONS(2920), - [sym___r_single_quote] = ACTIONS(2920), + [anon_sym_DOT] = ACTIONS(3991), + [anon_sym_LBRACE] = ACTIONS(3991), + [anon_sym_const] = ACTIONS(3991), + [anon_sym_LPAREN] = ACTIONS(3991), + [anon_sym___global] = ACTIONS(3991), + [anon_sym_type] = ACTIONS(3991), + [anon_sym_PIPE] = ACTIONS(3991), + [anon_sym_fn] = ACTIONS(3991), + [anon_sym_PLUS] = ACTIONS(3991), + [anon_sym_DASH] = ACTIONS(3991), + [anon_sym_STAR] = ACTIONS(3991), + [anon_sym_struct] = ACTIONS(3991), + [anon_sym_union] = ACTIONS(3991), + [anon_sym_pub] = ACTIONS(3991), + [anon_sym_mut] = ACTIONS(3991), + [anon_sym_enum] = ACTIONS(3991), + [anon_sym_interface] = ACTIONS(3991), + [anon_sym_QMARK] = ACTIONS(3991), + [anon_sym_BANG] = ACTIONS(3991), + [anon_sym_go] = ACTIONS(3991), + [anon_sym_spawn] = ACTIONS(3991), + [anon_sym_json_DOTdecode] = ACTIONS(3991), + [anon_sym_LBRACK2] = ACTIONS(3991), + [anon_sym_TILDE] = ACTIONS(3991), + [anon_sym_CARET] = ACTIONS(3991), + [anon_sym_AMP] = ACTIONS(3991), + [anon_sym_LT_DASH] = ACTIONS(3991), + [sym_none] = ACTIONS(3991), + [sym_true] = ACTIONS(3991), + [sym_false] = ACTIONS(3991), + [sym_nil] = ACTIONS(3991), + [anon_sym_if] = ACTIONS(3991), + [anon_sym_DOLLARif] = ACTIONS(3991), + [anon_sym_match] = ACTIONS(3991), + [anon_sym_select] = ACTIONS(3991), + [anon_sym_lock] = ACTIONS(3991), + [anon_sym_rlock] = ACTIONS(3991), + [anon_sym_unsafe] = ACTIONS(3991), + [anon_sym_sql] = ACTIONS(3991), + [sym_int_literal] = ACTIONS(3991), + [sym_float_literal] = ACTIONS(3991), + [sym_rune_literal] = ACTIONS(3991), + [sym_pseudo_compile_time_identifier] = ACTIONS(3991), + [anon_sym_shared] = ACTIONS(3991), + [anon_sym_map_LBRACK] = ACTIONS(3991), + [anon_sym_chan] = ACTIONS(3991), + [anon_sym_thread] = ACTIONS(3991), + [anon_sym_atomic] = ACTIONS(3991), + [anon_sym_assert] = ACTIONS(3991), + [anon_sym_defer] = ACTIONS(3991), + [anon_sym_goto] = ACTIONS(3991), + [anon_sym_break] = ACTIONS(3991), + [anon_sym_continue] = ACTIONS(3991), + [anon_sym_return] = ACTIONS(3991), + [anon_sym_DOLLARfor] = ACTIONS(3991), + [anon_sym_for] = ACTIONS(3991), + [anon_sym_POUND] = ACTIONS(3991), + [anon_sym_asm] = ACTIONS(3991), + [anon_sym_AT_LBRACK] = ACTIONS(3991), + [sym___double_quote] = ACTIONS(3991), + [sym___single_quote] = ACTIONS(3991), + [sym___c_double_quote] = ACTIONS(3991), + [sym___c_single_quote] = ACTIONS(3991), + [sym___r_double_quote] = ACTIONS(3991), + [sym___r_single_quote] = ACTIONS(3991), }, [1432] = { [sym_line_comment] = STATE(1432), [sym_block_comment] = STATE(1432), - [ts_builtin_sym_end] = ACTIONS(2115), - [sym_identifier] = ACTIONS(2117), - [anon_sym_LF] = ACTIONS(2117), - [anon_sym_CR] = ACTIONS(2117), - [anon_sym_CR_LF] = ACTIONS(2117), + [sym_block] = STATE(1566), + [ts_builtin_sym_end] = ACTIONS(4066), + [sym_identifier] = ACTIONS(4068), + [anon_sym_LF] = ACTIONS(4068), + [anon_sym_CR] = ACTIONS(4068), + [anon_sym_CR_LF] = ACTIONS(4068), [anon_sym_SLASH_SLASH] = ACTIONS(497), [anon_sym_SLASH_STAR] = ACTIONS(499), - [anon_sym_DOT] = ACTIONS(2117), - [anon_sym_LBRACE] = ACTIONS(2117), - [anon_sym_const] = ACTIONS(2117), - [anon_sym_LPAREN] = ACTIONS(2117), - [anon_sym___global] = ACTIONS(2117), - [anon_sym_type] = ACTIONS(2117), - [anon_sym_PIPE] = ACTIONS(2117), - [anon_sym_fn] = ACTIONS(2117), - [anon_sym_PLUS] = ACTIONS(2117), - [anon_sym_DASH] = ACTIONS(2117), - [anon_sym_STAR] = ACTIONS(2117), - [anon_sym_struct] = ACTIONS(2117), - [anon_sym_union] = ACTIONS(2117), - [anon_sym_pub] = ACTIONS(2117), - [anon_sym_mut] = ACTIONS(2117), - [anon_sym_enum] = ACTIONS(2117), - [anon_sym_interface] = ACTIONS(2117), - [anon_sym_QMARK] = ACTIONS(2117), - [anon_sym_BANG] = ACTIONS(2117), - [anon_sym_go] = ACTIONS(2117), - [anon_sym_spawn] = ACTIONS(2117), - [anon_sym_json_DOTdecode] = ACTIONS(2117), - [anon_sym_LBRACK2] = ACTIONS(2117), - [anon_sym_TILDE] = ACTIONS(2117), - [anon_sym_CARET] = ACTIONS(2117), - [anon_sym_AMP] = ACTIONS(2117), - [anon_sym_LT_DASH] = ACTIONS(2117), - [sym_none] = ACTIONS(2117), - [sym_true] = ACTIONS(2117), - [sym_false] = ACTIONS(2117), - [sym_nil] = ACTIONS(2117), - [anon_sym_if] = ACTIONS(2117), - [anon_sym_DOLLARif] = ACTIONS(2117), - [anon_sym_match] = ACTIONS(2117), - [anon_sym_select] = ACTIONS(2117), - [anon_sym_lock] = ACTIONS(2117), - [anon_sym_rlock] = ACTIONS(2117), - [anon_sym_unsafe] = ACTIONS(2117), - [anon_sym_sql] = ACTIONS(2117), - [sym_int_literal] = ACTIONS(2117), - [sym_float_literal] = ACTIONS(2117), - [sym_rune_literal] = ACTIONS(2117), - [sym_pseudo_compile_time_identifier] = ACTIONS(2117), - [anon_sym_shared] = ACTIONS(2117), - [anon_sym_map_LBRACK] = ACTIONS(2117), - [anon_sym_chan] = ACTIONS(2117), - [anon_sym_thread] = ACTIONS(2117), - [anon_sym_atomic] = ACTIONS(2117), - [anon_sym_assert] = ACTIONS(2117), - [anon_sym_defer] = ACTIONS(2117), - [anon_sym_goto] = ACTIONS(2117), - [anon_sym_break] = ACTIONS(2117), - [anon_sym_continue] = ACTIONS(2117), - [anon_sym_return] = ACTIONS(2117), - [anon_sym_DOLLARfor] = ACTIONS(2117), - [anon_sym_for] = ACTIONS(2117), - [anon_sym_POUND] = ACTIONS(2117), - [anon_sym_asm] = ACTIONS(2117), - [anon_sym_AT_LBRACK] = ACTIONS(2117), - [sym___double_quote] = ACTIONS(2117), - [sym___single_quote] = ACTIONS(2117), - [sym___c_double_quote] = ACTIONS(2117), - [sym___c_single_quote] = ACTIONS(2117), - [sym___r_double_quote] = ACTIONS(2117), - [sym___r_single_quote] = ACTIONS(2117), + [anon_sym_DOT] = ACTIONS(4068), + [anon_sym_LBRACE] = ACTIONS(4018), + [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), }, [1433] = { [sym_line_comment] = STATE(1433), [sym_block_comment] = STATE(1433), - [sym_block] = STATE(1490), - [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_block] = STATE(1564), + [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), [anon_sym_SLASH_SLASH] = ACTIONS(497), [anon_sym_SLASH_STAR] = ACTIONS(499), - [anon_sym_DOT] = ACTIONS(4062), - [anon_sym_LBRACE] = ACTIONS(4012), - [anon_sym_const] = ACTIONS(4062), - [anon_sym_LPAREN] = ACTIONS(4062), - [anon_sym___global] = ACTIONS(4062), - [anon_sym_type] = ACTIONS(4062), - [anon_sym_fn] = ACTIONS(4062), - [anon_sym_PLUS] = ACTIONS(4062), - [anon_sym_DASH] = ACTIONS(4062), - [anon_sym_STAR] = ACTIONS(4062), - [anon_sym_struct] = ACTIONS(4062), - [anon_sym_union] = ACTIONS(4062), - [anon_sym_pub] = ACTIONS(4062), - [anon_sym_mut] = ACTIONS(4062), - [anon_sym_enum] = ACTIONS(4062), - [anon_sym_interface] = ACTIONS(4062), - [anon_sym_QMARK] = ACTIONS(4062), - [anon_sym_BANG] = ACTIONS(4062), - [anon_sym_go] = ACTIONS(4062), - [anon_sym_spawn] = ACTIONS(4062), - [anon_sym_json_DOTdecode] = ACTIONS(4062), - [anon_sym_LBRACK2] = ACTIONS(4062), - [anon_sym_TILDE] = ACTIONS(4062), - [anon_sym_CARET] = ACTIONS(4062), - [anon_sym_AMP] = ACTIONS(4062), - [anon_sym_LT_DASH] = ACTIONS(4062), - [sym_none] = ACTIONS(4062), - [sym_true] = ACTIONS(4062), - [sym_false] = ACTIONS(4062), - [sym_nil] = ACTIONS(4062), - [anon_sym_if] = ACTIONS(4062), - [anon_sym_DOLLARif] = ACTIONS(4062), - [anon_sym_match] = ACTIONS(4062), - [anon_sym_select] = ACTIONS(4062), - [anon_sym_lock] = ACTIONS(4062), - [anon_sym_rlock] = ACTIONS(4062), - [anon_sym_unsafe] = ACTIONS(4062), - [anon_sym_sql] = ACTIONS(4062), - [sym_int_literal] = ACTIONS(4062), - [sym_float_literal] = ACTIONS(4062), - [sym_rune_literal] = ACTIONS(4062), - [sym_pseudo_compile_time_identifier] = ACTIONS(4062), - [anon_sym_shared] = ACTIONS(4062), - [anon_sym_map_LBRACK] = ACTIONS(4062), - [anon_sym_chan] = ACTIONS(4062), - [anon_sym_thread] = ACTIONS(4062), - [anon_sym_atomic] = ACTIONS(4062), - [anon_sym_assert] = ACTIONS(4062), - [anon_sym_defer] = ACTIONS(4062), - [anon_sym_goto] = ACTIONS(4062), - [anon_sym_break] = ACTIONS(4062), - [anon_sym_continue] = ACTIONS(4062), - [anon_sym_return] = ACTIONS(4062), - [anon_sym_DOLLARfor] = ACTIONS(4062), - [anon_sym_for] = ACTIONS(4062), - [anon_sym_POUND] = ACTIONS(4062), - [anon_sym_asm] = ACTIONS(4062), - [anon_sym_AT_LBRACK] = ACTIONS(4062), - [sym___double_quote] = ACTIONS(4062), - [sym___single_quote] = ACTIONS(4062), - [sym___c_double_quote] = ACTIONS(4062), - [sym___c_single_quote] = ACTIONS(4062), - [sym___r_double_quote] = ACTIONS(4062), - [sym___r_single_quote] = ACTIONS(4062), + [anon_sym_DOT] = ACTIONS(4072), + [anon_sym_LBRACE] = ACTIONS(4018), + [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), }, [1434] = { [sym_line_comment] = STATE(1434), [sym_block_comment] = STATE(1434), - [sym_block] = STATE(1499), - [ts_builtin_sym_end] = ACTIONS(4064), - [sym_identifier] = ACTIONS(4066), - [anon_sym_LF] = ACTIONS(4066), - [anon_sym_CR] = ACTIONS(4066), - [anon_sym_CR_LF] = ACTIONS(4066), + [sym_block] = STATE(1562), + [ts_builtin_sym_end] = ACTIONS(4074), + [sym_identifier] = ACTIONS(4076), + [anon_sym_LF] = ACTIONS(4076), + [anon_sym_CR] = ACTIONS(4076), + [anon_sym_CR_LF] = ACTIONS(4076), [anon_sym_SLASH_SLASH] = ACTIONS(497), [anon_sym_SLASH_STAR] = ACTIONS(499), - [anon_sym_DOT] = ACTIONS(4066), - [anon_sym_LBRACE] = ACTIONS(4012), - [anon_sym_const] = ACTIONS(4066), - [anon_sym_LPAREN] = ACTIONS(4066), - [anon_sym___global] = ACTIONS(4066), - [anon_sym_type] = ACTIONS(4066), - [anon_sym_fn] = ACTIONS(4066), - [anon_sym_PLUS] = ACTIONS(4066), - [anon_sym_DASH] = ACTIONS(4066), - [anon_sym_STAR] = ACTIONS(4066), - [anon_sym_struct] = ACTIONS(4066), - [anon_sym_union] = ACTIONS(4066), - [anon_sym_pub] = ACTIONS(4066), - [anon_sym_mut] = ACTIONS(4066), - [anon_sym_enum] = ACTIONS(4066), - [anon_sym_interface] = ACTIONS(4066), - [anon_sym_QMARK] = ACTIONS(4066), - [anon_sym_BANG] = ACTIONS(4066), - [anon_sym_go] = ACTIONS(4066), - [anon_sym_spawn] = ACTIONS(4066), - [anon_sym_json_DOTdecode] = ACTIONS(4066), - [anon_sym_LBRACK2] = ACTIONS(4066), - [anon_sym_TILDE] = ACTIONS(4066), - [anon_sym_CARET] = ACTIONS(4066), - [anon_sym_AMP] = ACTIONS(4066), - [anon_sym_LT_DASH] = ACTIONS(4066), - [sym_none] = ACTIONS(4066), - [sym_true] = ACTIONS(4066), - [sym_false] = ACTIONS(4066), - [sym_nil] = ACTIONS(4066), - [anon_sym_if] = ACTIONS(4066), - [anon_sym_DOLLARif] = ACTIONS(4066), - [anon_sym_match] = ACTIONS(4066), - [anon_sym_select] = ACTIONS(4066), - [anon_sym_lock] = ACTIONS(4066), - [anon_sym_rlock] = ACTIONS(4066), - [anon_sym_unsafe] = ACTIONS(4066), - [anon_sym_sql] = ACTIONS(4066), - [sym_int_literal] = ACTIONS(4066), - [sym_float_literal] = ACTIONS(4066), - [sym_rune_literal] = ACTIONS(4066), - [sym_pseudo_compile_time_identifier] = ACTIONS(4066), - [anon_sym_shared] = ACTIONS(4066), - [anon_sym_map_LBRACK] = ACTIONS(4066), - [anon_sym_chan] = ACTIONS(4066), - [anon_sym_thread] = ACTIONS(4066), - [anon_sym_atomic] = ACTIONS(4066), - [anon_sym_assert] = ACTIONS(4066), - [anon_sym_defer] = ACTIONS(4066), - [anon_sym_goto] = ACTIONS(4066), - [anon_sym_break] = ACTIONS(4066), - [anon_sym_continue] = ACTIONS(4066), - [anon_sym_return] = ACTIONS(4066), - [anon_sym_DOLLARfor] = ACTIONS(4066), - [anon_sym_for] = ACTIONS(4066), - [anon_sym_POUND] = ACTIONS(4066), - [anon_sym_asm] = ACTIONS(4066), - [anon_sym_AT_LBRACK] = ACTIONS(4066), - [sym___double_quote] = ACTIONS(4066), - [sym___single_quote] = ACTIONS(4066), - [sym___c_double_quote] = ACTIONS(4066), - [sym___c_single_quote] = ACTIONS(4066), - [sym___r_double_quote] = ACTIONS(4066), - [sym___r_single_quote] = ACTIONS(4066), + [anon_sym_DOT] = ACTIONS(4076), + [anon_sym_LBRACE] = ACTIONS(4018), + [anon_sym_const] = ACTIONS(4076), + [anon_sym_LPAREN] = ACTIONS(4076), + [anon_sym___global] = ACTIONS(4076), + [anon_sym_type] = ACTIONS(4076), + [anon_sym_fn] = ACTIONS(4076), + [anon_sym_PLUS] = ACTIONS(4076), + [anon_sym_DASH] = ACTIONS(4076), + [anon_sym_STAR] = ACTIONS(4076), + [anon_sym_struct] = ACTIONS(4076), + [anon_sym_union] = ACTIONS(4076), + [anon_sym_pub] = ACTIONS(4076), + [anon_sym_mut] = ACTIONS(4076), + [anon_sym_enum] = ACTIONS(4076), + [anon_sym_interface] = ACTIONS(4076), + [anon_sym_QMARK] = ACTIONS(4076), + [anon_sym_BANG] = ACTIONS(4076), + [anon_sym_go] = ACTIONS(4076), + [anon_sym_spawn] = ACTIONS(4076), + [anon_sym_json_DOTdecode] = ACTIONS(4076), + [anon_sym_LBRACK2] = ACTIONS(4076), + [anon_sym_TILDE] = ACTIONS(4076), + [anon_sym_CARET] = ACTIONS(4076), + [anon_sym_AMP] = ACTIONS(4076), + [anon_sym_LT_DASH] = ACTIONS(4076), + [sym_none] = ACTIONS(4076), + [sym_true] = ACTIONS(4076), + [sym_false] = ACTIONS(4076), + [sym_nil] = ACTIONS(4076), + [anon_sym_if] = ACTIONS(4076), + [anon_sym_DOLLARif] = ACTIONS(4076), + [anon_sym_match] = ACTIONS(4076), + [anon_sym_select] = ACTIONS(4076), + [anon_sym_lock] = ACTIONS(4076), + [anon_sym_rlock] = ACTIONS(4076), + [anon_sym_unsafe] = ACTIONS(4076), + [anon_sym_sql] = ACTIONS(4076), + [sym_int_literal] = ACTIONS(4076), + [sym_float_literal] = ACTIONS(4076), + [sym_rune_literal] = ACTIONS(4076), + [sym_pseudo_compile_time_identifier] = ACTIONS(4076), + [anon_sym_shared] = ACTIONS(4076), + [anon_sym_map_LBRACK] = ACTIONS(4076), + [anon_sym_chan] = ACTIONS(4076), + [anon_sym_thread] = ACTIONS(4076), + [anon_sym_atomic] = ACTIONS(4076), + [anon_sym_assert] = ACTIONS(4076), + [anon_sym_defer] = ACTIONS(4076), + [anon_sym_goto] = ACTIONS(4076), + [anon_sym_break] = ACTIONS(4076), + [anon_sym_continue] = ACTIONS(4076), + [anon_sym_return] = ACTIONS(4076), + [anon_sym_DOLLARfor] = ACTIONS(4076), + [anon_sym_for] = ACTIONS(4076), + [anon_sym_POUND] = ACTIONS(4076), + [anon_sym_asm] = ACTIONS(4076), + [anon_sym_AT_LBRACK] = ACTIONS(4076), + [sym___double_quote] = ACTIONS(4076), + [sym___single_quote] = ACTIONS(4076), + [sym___c_double_quote] = ACTIONS(4076), + [sym___c_single_quote] = ACTIONS(4076), + [sym___r_double_quote] = ACTIONS(4076), + [sym___r_single_quote] = ACTIONS(4076), }, [1435] = { [sym_line_comment] = STATE(1435), [sym_block_comment] = STATE(1435), - [sym_block] = STATE(1500), - [ts_builtin_sym_end] = ACTIONS(4068), - [sym_identifier] = ACTIONS(4070), - [anon_sym_LF] = ACTIONS(4070), - [anon_sym_CR] = ACTIONS(4070), - [anon_sym_CR_LF] = ACTIONS(4070), + [sym_block] = STATE(1561), + [ts_builtin_sym_end] = ACTIONS(4078), + [sym_identifier] = ACTIONS(4080), + [anon_sym_LF] = ACTIONS(4080), + [anon_sym_CR] = ACTIONS(4080), + [anon_sym_CR_LF] = ACTIONS(4080), [anon_sym_SLASH_SLASH] = ACTIONS(497), [anon_sym_SLASH_STAR] = ACTIONS(499), - [anon_sym_DOT] = ACTIONS(4070), - [anon_sym_LBRACE] = ACTIONS(4012), - [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(4080), + [anon_sym_LBRACE] = ACTIONS(4018), + [anon_sym_const] = ACTIONS(4080), + [anon_sym_LPAREN] = ACTIONS(4080), + [anon_sym___global] = ACTIONS(4080), + [anon_sym_type] = ACTIONS(4080), + [anon_sym_fn] = ACTIONS(4080), + [anon_sym_PLUS] = ACTIONS(4080), + [anon_sym_DASH] = ACTIONS(4080), + [anon_sym_STAR] = ACTIONS(4080), + [anon_sym_struct] = ACTIONS(4080), + [anon_sym_union] = ACTIONS(4080), + [anon_sym_pub] = ACTIONS(4080), + [anon_sym_mut] = ACTIONS(4080), + [anon_sym_enum] = ACTIONS(4080), + [anon_sym_interface] = ACTIONS(4080), + [anon_sym_QMARK] = ACTIONS(4080), + [anon_sym_BANG] = ACTIONS(4080), + [anon_sym_go] = ACTIONS(4080), + [anon_sym_spawn] = ACTIONS(4080), + [anon_sym_json_DOTdecode] = ACTIONS(4080), + [anon_sym_LBRACK2] = ACTIONS(4080), + [anon_sym_TILDE] = ACTIONS(4080), + [anon_sym_CARET] = ACTIONS(4080), + [anon_sym_AMP] = ACTIONS(4080), + [anon_sym_LT_DASH] = ACTIONS(4080), + [sym_none] = ACTIONS(4080), + [sym_true] = ACTIONS(4080), + [sym_false] = ACTIONS(4080), + [sym_nil] = ACTIONS(4080), + [anon_sym_if] = ACTIONS(4080), + [anon_sym_DOLLARif] = ACTIONS(4080), + [anon_sym_match] = ACTIONS(4080), + [anon_sym_select] = ACTIONS(4080), + [anon_sym_lock] = ACTIONS(4080), + [anon_sym_rlock] = ACTIONS(4080), + [anon_sym_unsafe] = ACTIONS(4080), + [anon_sym_sql] = ACTIONS(4080), + [sym_int_literal] = ACTIONS(4080), + [sym_float_literal] = ACTIONS(4080), + [sym_rune_literal] = ACTIONS(4080), + [sym_pseudo_compile_time_identifier] = ACTIONS(4080), + [anon_sym_shared] = ACTIONS(4080), + [anon_sym_map_LBRACK] = ACTIONS(4080), + [anon_sym_chan] = ACTIONS(4080), + [anon_sym_thread] = ACTIONS(4080), + [anon_sym_atomic] = ACTIONS(4080), + [anon_sym_assert] = ACTIONS(4080), + [anon_sym_defer] = ACTIONS(4080), + [anon_sym_goto] = ACTIONS(4080), + [anon_sym_break] = ACTIONS(4080), + [anon_sym_continue] = ACTIONS(4080), + [anon_sym_return] = ACTIONS(4080), + [anon_sym_DOLLARfor] = ACTIONS(4080), + [anon_sym_for] = ACTIONS(4080), + [anon_sym_POUND] = ACTIONS(4080), + [anon_sym_asm] = ACTIONS(4080), + [anon_sym_AT_LBRACK] = ACTIONS(4080), + [sym___double_quote] = ACTIONS(4080), + [sym___single_quote] = ACTIONS(4080), + [sym___c_double_quote] = ACTIONS(4080), + [sym___c_single_quote] = ACTIONS(4080), + [sym___r_double_quote] = ACTIONS(4080), + [sym___r_single_quote] = ACTIONS(4080), }, [1436] = { [sym_line_comment] = STATE(1436), [sym_block_comment] = STATE(1436), - [sym_block] = STATE(1506), - [ts_builtin_sym_end] = ACTIONS(4072), - [sym_identifier] = ACTIONS(4074), - [anon_sym_LF] = ACTIONS(4074), - [anon_sym_CR] = ACTIONS(4074), - [anon_sym_CR_LF] = ACTIONS(4074), + [sym_block] = STATE(1559), + [ts_builtin_sym_end] = ACTIONS(4082), + [sym_identifier] = ACTIONS(4084), + [anon_sym_LF] = ACTIONS(4084), + [anon_sym_CR] = ACTIONS(4084), + [anon_sym_CR_LF] = ACTIONS(4084), [anon_sym_SLASH_SLASH] = ACTIONS(497), [anon_sym_SLASH_STAR] = ACTIONS(499), - [anon_sym_DOT] = ACTIONS(4074), - [anon_sym_LBRACE] = ACTIONS(4012), - [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(4084), + [anon_sym_LBRACE] = ACTIONS(4018), + [anon_sym_const] = ACTIONS(4084), + [anon_sym_LPAREN] = ACTIONS(4084), + [anon_sym___global] = ACTIONS(4084), + [anon_sym_type] = ACTIONS(4084), + [anon_sym_fn] = ACTIONS(4084), + [anon_sym_PLUS] = ACTIONS(4084), + [anon_sym_DASH] = ACTIONS(4084), + [anon_sym_STAR] = ACTIONS(4084), + [anon_sym_struct] = ACTIONS(4084), + [anon_sym_union] = ACTIONS(4084), + [anon_sym_pub] = ACTIONS(4084), + [anon_sym_mut] = ACTIONS(4084), + [anon_sym_enum] = ACTIONS(4084), + [anon_sym_interface] = ACTIONS(4084), + [anon_sym_QMARK] = ACTIONS(4084), + [anon_sym_BANG] = ACTIONS(4084), + [anon_sym_go] = ACTIONS(4084), + [anon_sym_spawn] = ACTIONS(4084), + [anon_sym_json_DOTdecode] = ACTIONS(4084), + [anon_sym_LBRACK2] = ACTIONS(4084), + [anon_sym_TILDE] = ACTIONS(4084), + [anon_sym_CARET] = ACTIONS(4084), + [anon_sym_AMP] = ACTIONS(4084), + [anon_sym_LT_DASH] = ACTIONS(4084), + [sym_none] = ACTIONS(4084), + [sym_true] = ACTIONS(4084), + [sym_false] = ACTIONS(4084), + [sym_nil] = ACTIONS(4084), + [anon_sym_if] = ACTIONS(4084), + [anon_sym_DOLLARif] = ACTIONS(4084), + [anon_sym_match] = ACTIONS(4084), + [anon_sym_select] = ACTIONS(4084), + [anon_sym_lock] = ACTIONS(4084), + [anon_sym_rlock] = ACTIONS(4084), + [anon_sym_unsafe] = ACTIONS(4084), + [anon_sym_sql] = ACTIONS(4084), + [sym_int_literal] = ACTIONS(4084), + [sym_float_literal] = ACTIONS(4084), + [sym_rune_literal] = ACTIONS(4084), + [sym_pseudo_compile_time_identifier] = ACTIONS(4084), + [anon_sym_shared] = ACTIONS(4084), + [anon_sym_map_LBRACK] = ACTIONS(4084), + [anon_sym_chan] = ACTIONS(4084), + [anon_sym_thread] = ACTIONS(4084), + [anon_sym_atomic] = ACTIONS(4084), + [anon_sym_assert] = ACTIONS(4084), + [anon_sym_defer] = ACTIONS(4084), + [anon_sym_goto] = ACTIONS(4084), + [anon_sym_break] = ACTIONS(4084), + [anon_sym_continue] = ACTIONS(4084), + [anon_sym_return] = ACTIONS(4084), + [anon_sym_DOLLARfor] = ACTIONS(4084), + [anon_sym_for] = ACTIONS(4084), + [anon_sym_POUND] = ACTIONS(4084), + [anon_sym_asm] = ACTIONS(4084), + [anon_sym_AT_LBRACK] = ACTIONS(4084), + [sym___double_quote] = ACTIONS(4084), + [sym___single_quote] = ACTIONS(4084), + [sym___c_double_quote] = ACTIONS(4084), + [sym___c_single_quote] = ACTIONS(4084), + [sym___r_double_quote] = ACTIONS(4084), + [sym___r_single_quote] = ACTIONS(4084), }, [1437] = { [sym_line_comment] = STATE(1437), [sym_block_comment] = STATE(1437), - [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), - [anon_sym_SLASH_SLASH] = ACTIONS(497), - [anon_sym_SLASH_STAR] = ACTIONS(499), - [anon_sym_DOT] = ACTIONS(4078), - [anon_sym_LBRACE] = ACTIONS(4078), - [anon_sym_const] = ACTIONS(4078), - [anon_sym_LPAREN] = ACTIONS(4078), - [anon_sym___global] = ACTIONS(4078), - [anon_sym_type] = ACTIONS(4078), - [anon_sym_PIPE] = 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), - }, - [1438] = { - [sym_line_comment] = STATE(1438), - [sym_block_comment] = STATE(1438), - [sym_block] = STATE(1512), - [ts_builtin_sym_end] = ACTIONS(4080), - [sym_identifier] = ACTIONS(4082), - [anon_sym_LF] = ACTIONS(4082), - [anon_sym_CR] = ACTIONS(4082), - [anon_sym_CR_LF] = ACTIONS(4082), - [anon_sym_SLASH_SLASH] = ACTIONS(497), - [anon_sym_SLASH_STAR] = ACTIONS(499), - [anon_sym_DOT] = ACTIONS(4082), - [anon_sym_LBRACE] = ACTIONS(4012), - [anon_sym_const] = ACTIONS(4082), - [anon_sym_LPAREN] = ACTIONS(4082), - [anon_sym___global] = ACTIONS(4082), - [anon_sym_type] = ACTIONS(4082), - [anon_sym_fn] = ACTIONS(4082), - [anon_sym_PLUS] = ACTIONS(4082), - [anon_sym_DASH] = ACTIONS(4082), - [anon_sym_STAR] = ACTIONS(4082), - [anon_sym_struct] = ACTIONS(4082), - [anon_sym_union] = ACTIONS(4082), - [anon_sym_pub] = ACTIONS(4082), - [anon_sym_mut] = ACTIONS(4082), - [anon_sym_enum] = ACTIONS(4082), - [anon_sym_interface] = ACTIONS(4082), - [anon_sym_QMARK] = ACTIONS(4082), - [anon_sym_BANG] = ACTIONS(4082), - [anon_sym_go] = ACTIONS(4082), - [anon_sym_spawn] = ACTIONS(4082), - [anon_sym_json_DOTdecode] = ACTIONS(4082), - [anon_sym_LBRACK2] = ACTIONS(4082), - [anon_sym_TILDE] = ACTIONS(4082), - [anon_sym_CARET] = ACTIONS(4082), - [anon_sym_AMP] = ACTIONS(4082), - [anon_sym_LT_DASH] = ACTIONS(4082), - [sym_none] = ACTIONS(4082), - [sym_true] = ACTIONS(4082), - [sym_false] = ACTIONS(4082), - [sym_nil] = ACTIONS(4082), - [anon_sym_if] = ACTIONS(4082), - [anon_sym_DOLLARif] = ACTIONS(4082), - [anon_sym_match] = ACTIONS(4082), - [anon_sym_select] = ACTIONS(4082), - [anon_sym_lock] = ACTIONS(4082), - [anon_sym_rlock] = ACTIONS(4082), - [anon_sym_unsafe] = ACTIONS(4082), - [anon_sym_sql] = ACTIONS(4082), - [sym_int_literal] = ACTIONS(4082), - [sym_float_literal] = ACTIONS(4082), - [sym_rune_literal] = ACTIONS(4082), - [sym_pseudo_compile_time_identifier] = ACTIONS(4082), - [anon_sym_shared] = ACTIONS(4082), - [anon_sym_map_LBRACK] = ACTIONS(4082), - [anon_sym_chan] = ACTIONS(4082), - [anon_sym_thread] = ACTIONS(4082), - [anon_sym_atomic] = ACTIONS(4082), - [anon_sym_assert] = ACTIONS(4082), - [anon_sym_defer] = ACTIONS(4082), - [anon_sym_goto] = ACTIONS(4082), - [anon_sym_break] = ACTIONS(4082), - [anon_sym_continue] = ACTIONS(4082), - [anon_sym_return] = ACTIONS(4082), - [anon_sym_DOLLARfor] = ACTIONS(4082), - [anon_sym_for] = ACTIONS(4082), - [anon_sym_POUND] = ACTIONS(4082), - [anon_sym_asm] = ACTIONS(4082), - [anon_sym_AT_LBRACK] = ACTIONS(4082), - [sym___double_quote] = ACTIONS(4082), - [sym___single_quote] = ACTIONS(4082), - [sym___c_double_quote] = ACTIONS(4082), - [sym___c_single_quote] = ACTIONS(4082), - [sym___r_double_quote] = ACTIONS(4082), - [sym___r_single_quote] = ACTIONS(4082), - }, - [1439] = { - [sym_line_comment] = STATE(1439), - [sym_block_comment] = STATE(1439), - [sym_reference_expression] = STATE(4495), - [sym_type_reference_expression] = STATE(3541), - [sym_plain_type] = STATE(2386), - [sym__plain_type_without_special] = STATE(2302), - [sym_anon_struct_type] = STATE(2303), - [sym_multi_return_type] = STATE(2302), - [sym_result_type] = STATE(2302), - [sym_option_type] = STATE(2302), - [sym_qualified_type] = STATE(3541), - [sym_fixed_array_type] = STATE(2303), - [sym_array_type] = STATE(2303), - [sym_pointer_type] = STATE(2303), - [sym_wrong_pointer_type] = STATE(2303), - [sym_map_type] = STATE(2303), - [sym_channel_type] = STATE(2303), - [sym_shared_type] = STATE(2303), - [sym_thread_type] = STATE(2303), - [sym_atomic_type] = STATE(2303), - [sym_generic_type] = STATE(2303), - [sym_function_type] = STATE(2303), - [sym_identifier] = ACTIONS(597), - [anon_sym_LF] = ACTIONS(599), - [anon_sym_CR] = ACTIONS(599), - [anon_sym_CR_LF] = ACTIONS(599), - [anon_sym_SLASH_SLASH] = ACTIONS(497), - [anon_sym_SLASH_STAR] = ACTIONS(499), - [anon_sym_SEMI] = ACTIONS(599), - [anon_sym_DOT] = ACTIONS(599), - [anon_sym_as] = ACTIONS(599), - [anon_sym_COMMA] = ACTIONS(599), - [anon_sym_RBRACE] = ACTIONS(599), - [anon_sym_LPAREN] = ACTIONS(601), - [anon_sym_PIPE] = ACTIONS(599), - [anon_sym_fn] = ACTIONS(603), - [anon_sym_PLUS] = ACTIONS(599), - [anon_sym_DASH] = ACTIONS(599), - [anon_sym_STAR] = ACTIONS(605), - [anon_sym_SLASH] = ACTIONS(599), - [anon_sym_PERCENT] = ACTIONS(599), - [anon_sym_LT] = ACTIONS(599), - [anon_sym_GT] = ACTIONS(599), - [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(595), - [anon_sym_struct] = ACTIONS(607), - [anon_sym_PLUS_PLUS] = ACTIONS(599), - [anon_sym_DASH_DASH] = ACTIONS(599), - [anon_sym_QMARK] = ACTIONS(515), - [anon_sym_BANG] = ACTIONS(4084), - [anon_sym_LBRACK2] = ACTIONS(611), - [anon_sym_CARET] = ACTIONS(599), - [anon_sym_AMP] = ACTIONS(613), - [anon_sym_LT_LT] = ACTIONS(599), - [anon_sym_GT_GT] = ACTIONS(599), - [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(599), - [anon_sym_QMARK_DOT] = ACTIONS(599), - [anon_sym_POUND_LBRACK] = ACTIONS(599), - [anon_sym_is] = ACTIONS(599), - [anon_sym_BANGis] = ACTIONS(599), - [anon_sym_in] = ACTIONS(599), - [anon_sym_BANGin] = ACTIONS(599), - [anon_sym_shared] = ACTIONS(615), - [anon_sym_map_LBRACK] = ACTIONS(549), - [anon_sym_chan] = ACTIONS(87), - [anon_sym_thread] = ACTIONS(89), - [anon_sym_atomic] = ACTIONS(91), - }, - [1440] = { - [sym_line_comment] = STATE(1440), - [sym_block_comment] = STATE(1440), - [sym_block] = STATE(1515), + [sym_block] = STATE(1557), [ts_builtin_sym_end] = ACTIONS(4086), [sym_identifier] = ACTIONS(4088), [anon_sym_LF] = ACTIONS(4088), @@ -176204,7 +176034,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_SLASH_SLASH] = ACTIONS(497), [anon_sym_SLASH_STAR] = ACTIONS(499), [anon_sym_DOT] = ACTIONS(4088), - [anon_sym_LBRACE] = ACTIONS(4012), + [anon_sym_LBRACE] = ACTIONS(4018), [anon_sym_const] = ACTIONS(4088), [anon_sym_LPAREN] = ACTIONS(4088), [anon_sym___global] = ACTIONS(4088), @@ -176268,10 +176098,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym___r_double_quote] = ACTIONS(4088), [sym___r_single_quote] = ACTIONS(4088), }, - [1441] = { - [sym_line_comment] = STATE(1441), - [sym_block_comment] = STATE(1441), - [sym_block] = STATE(1516), + [1438] = { + [sym_line_comment] = STATE(1438), + [sym_block_comment] = STATE(1438), + [sym_block] = STATE(1556), [ts_builtin_sym_end] = ACTIONS(4090), [sym_identifier] = ACTIONS(4092), [anon_sym_LF] = ACTIONS(4092), @@ -176280,7 +176110,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_SLASH_SLASH] = ACTIONS(497), [anon_sym_SLASH_STAR] = ACTIONS(499), [anon_sym_DOT] = ACTIONS(4092), - [anon_sym_LBRACE] = ACTIONS(4012), + [anon_sym_LBRACE] = ACTIONS(4018), [anon_sym_const] = ACTIONS(4092), [anon_sym_LPAREN] = ACTIONS(4092), [anon_sym___global] = ACTIONS(4092), @@ -176344,10 +176174,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym___r_double_quote] = ACTIONS(4092), [sym___r_single_quote] = ACTIONS(4092), }, - [1442] = { - [sym_line_comment] = STATE(1442), - [sym_block_comment] = STATE(1442), - [sym_block] = STATE(1526), + [1439] = { + [sym_line_comment] = STATE(1439), + [sym_block_comment] = STATE(1439), [ts_builtin_sym_end] = ACTIONS(4094), [sym_identifier] = ACTIONS(4096), [anon_sym_LF] = ACTIONS(4096), @@ -176356,11 +176185,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_SLASH_SLASH] = ACTIONS(497), [anon_sym_SLASH_STAR] = ACTIONS(499), [anon_sym_DOT] = ACTIONS(4096), - [anon_sym_LBRACE] = ACTIONS(4012), + [anon_sym_LBRACE] = ACTIONS(4096), [anon_sym_const] = ACTIONS(4096), [anon_sym_LPAREN] = ACTIONS(4096), [anon_sym___global] = ACTIONS(4096), [anon_sym_type] = ACTIONS(4096), + [anon_sym_PIPE] = ACTIONS(4096), [anon_sym_fn] = ACTIONS(4096), [anon_sym_PLUS] = ACTIONS(4096), [anon_sym_DASH] = ACTIONS(4096), @@ -176420,10 +176250,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym___r_double_quote] = ACTIONS(4096), [sym___r_single_quote] = ACTIONS(4096), }, - [1443] = { - [sym_line_comment] = STATE(1443), - [sym_block_comment] = STATE(1443), - [sym_block] = STATE(1534), + [1440] = { + [sym_line_comment] = STATE(1440), + [sym_block_comment] = STATE(1440), + [sym_block] = STATE(1554), [ts_builtin_sym_end] = ACTIONS(4098), [sym_identifier] = ACTIONS(4100), [anon_sym_LF] = ACTIONS(4100), @@ -176432,7 +176262,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_SLASH_SLASH] = ACTIONS(497), [anon_sym_SLASH_STAR] = ACTIONS(499), [anon_sym_DOT] = ACTIONS(4100), - [anon_sym_LBRACE] = ACTIONS(4012), + [anon_sym_LBRACE] = ACTIONS(4018), [anon_sym_const] = ACTIONS(4100), [anon_sym_LPAREN] = ACTIONS(4100), [anon_sym___global] = ACTIONS(4100), @@ -176496,162 +176326,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym___r_double_quote] = ACTIONS(4100), [sym___r_single_quote] = ACTIONS(4100), }, - [1444] = { - [sym_line_comment] = STATE(1444), - [sym_block_comment] = STATE(1444), - [ts_builtin_sym_end] = ACTIONS(3978), - [sym_identifier] = ACTIONS(3980), - [anon_sym_LF] = ACTIONS(3980), - [anon_sym_CR] = ACTIONS(3980), - [anon_sym_CR_LF] = ACTIONS(3980), - [anon_sym_SLASH_SLASH] = ACTIONS(497), - [anon_sym_SLASH_STAR] = ACTIONS(499), - [anon_sym_DOT] = ACTIONS(3980), - [anon_sym_LBRACE] = ACTIONS(3980), - [anon_sym_const] = ACTIONS(3980), - [anon_sym_LPAREN] = ACTIONS(3980), - [anon_sym___global] = ACTIONS(3980), - [anon_sym_type] = ACTIONS(3980), - [anon_sym_PIPE] = ACTIONS(3980), - [anon_sym_fn] = ACTIONS(3980), - [anon_sym_PLUS] = ACTIONS(3980), - [anon_sym_DASH] = ACTIONS(3980), - [anon_sym_STAR] = ACTIONS(3980), - [anon_sym_struct] = ACTIONS(3980), - [anon_sym_union] = ACTIONS(3980), - [anon_sym_pub] = ACTIONS(3980), - [anon_sym_mut] = ACTIONS(3980), - [anon_sym_enum] = ACTIONS(3980), - [anon_sym_interface] = ACTIONS(3980), - [anon_sym_QMARK] = ACTIONS(3980), - [anon_sym_BANG] = ACTIONS(3980), - [anon_sym_go] = ACTIONS(3980), - [anon_sym_spawn] = ACTIONS(3980), - [anon_sym_json_DOTdecode] = ACTIONS(3980), - [anon_sym_LBRACK2] = ACTIONS(3980), - [anon_sym_TILDE] = ACTIONS(3980), - [anon_sym_CARET] = ACTIONS(3980), - [anon_sym_AMP] = ACTIONS(3980), - [anon_sym_LT_DASH] = ACTIONS(3980), - [sym_none] = ACTIONS(3980), - [sym_true] = ACTIONS(3980), - [sym_false] = ACTIONS(3980), - [sym_nil] = ACTIONS(3980), - [anon_sym_if] = ACTIONS(3980), - [anon_sym_DOLLARif] = ACTIONS(3980), - [anon_sym_match] = ACTIONS(3980), - [anon_sym_select] = ACTIONS(3980), - [anon_sym_lock] = ACTIONS(3980), - [anon_sym_rlock] = ACTIONS(3980), - [anon_sym_unsafe] = ACTIONS(3980), - [anon_sym_sql] = ACTIONS(3980), - [sym_int_literal] = ACTIONS(3980), - [sym_float_literal] = ACTIONS(3980), - [sym_rune_literal] = ACTIONS(3980), - [sym_pseudo_compile_time_identifier] = ACTIONS(3980), - [anon_sym_shared] = ACTIONS(3980), - [anon_sym_map_LBRACK] = ACTIONS(3980), - [anon_sym_chan] = ACTIONS(3980), - [anon_sym_thread] = ACTIONS(3980), - [anon_sym_atomic] = ACTIONS(3980), - [anon_sym_assert] = ACTIONS(3980), - [anon_sym_defer] = ACTIONS(3980), - [anon_sym_goto] = ACTIONS(3980), - [anon_sym_break] = ACTIONS(3980), - [anon_sym_continue] = ACTIONS(3980), - [anon_sym_return] = ACTIONS(3980), - [anon_sym_DOLLARfor] = ACTIONS(3980), - [anon_sym_for] = ACTIONS(3980), - [anon_sym_POUND] = ACTIONS(3980), - [anon_sym_asm] = ACTIONS(3980), - [anon_sym_AT_LBRACK] = ACTIONS(3980), - [sym___double_quote] = ACTIONS(3980), - [sym___single_quote] = ACTIONS(3980), - [sym___c_double_quote] = ACTIONS(3980), - [sym___c_single_quote] = ACTIONS(3980), - [sym___r_double_quote] = ACTIONS(3980), - [sym___r_single_quote] = ACTIONS(3980), - }, - [1445] = { - [sym_line_comment] = STATE(1445), - [sym_block_comment] = STATE(1445), - [ts_builtin_sym_end] = ACTIONS(2509), - [sym_identifier] = ACTIONS(2511), - [anon_sym_LF] = ACTIONS(2511), - [anon_sym_CR] = ACTIONS(2511), - [anon_sym_CR_LF] = ACTIONS(2511), - [anon_sym_SLASH_SLASH] = ACTIONS(497), - [anon_sym_SLASH_STAR] = ACTIONS(499), - [anon_sym_DOT] = ACTIONS(2511), - [anon_sym_LBRACE] = ACTIONS(2511), - [anon_sym_const] = ACTIONS(2511), - [anon_sym_LPAREN] = ACTIONS(2511), - [anon_sym___global] = ACTIONS(2511), - [anon_sym_type] = ACTIONS(2511), - [anon_sym_PIPE] = ACTIONS(2511), - [anon_sym_fn] = ACTIONS(2511), - [anon_sym_PLUS] = ACTIONS(2511), - [anon_sym_DASH] = ACTIONS(2511), - [anon_sym_STAR] = ACTIONS(2511), - [anon_sym_struct] = ACTIONS(2511), - [anon_sym_union] = ACTIONS(2511), - [anon_sym_pub] = ACTIONS(2511), - [anon_sym_mut] = ACTIONS(2511), - [anon_sym_enum] = ACTIONS(2511), - [anon_sym_interface] = ACTIONS(2511), - [anon_sym_QMARK] = ACTIONS(2511), - [anon_sym_BANG] = ACTIONS(2511), - [anon_sym_go] = ACTIONS(2511), - [anon_sym_spawn] = ACTIONS(2511), - [anon_sym_json_DOTdecode] = ACTIONS(2511), - [anon_sym_LBRACK2] = ACTIONS(2511), - [anon_sym_TILDE] = ACTIONS(2511), - [anon_sym_CARET] = ACTIONS(2511), - [anon_sym_AMP] = ACTIONS(2511), - [anon_sym_LT_DASH] = ACTIONS(2511), - [sym_none] = ACTIONS(2511), - [sym_true] = ACTIONS(2511), - [sym_false] = ACTIONS(2511), - [sym_nil] = ACTIONS(2511), - [anon_sym_if] = ACTIONS(2511), - [anon_sym_DOLLARif] = ACTIONS(2511), - [anon_sym_match] = ACTIONS(2511), - [anon_sym_select] = ACTIONS(2511), - [anon_sym_lock] = ACTIONS(2511), - [anon_sym_rlock] = ACTIONS(2511), - [anon_sym_unsafe] = ACTIONS(2511), - [anon_sym_sql] = ACTIONS(2511), - [sym_int_literal] = ACTIONS(2511), - [sym_float_literal] = ACTIONS(2511), - [sym_rune_literal] = ACTIONS(2511), - [sym_pseudo_compile_time_identifier] = ACTIONS(2511), - [anon_sym_shared] = ACTIONS(2511), - [anon_sym_map_LBRACK] = ACTIONS(2511), - [anon_sym_chan] = ACTIONS(2511), - [anon_sym_thread] = ACTIONS(2511), - [anon_sym_atomic] = ACTIONS(2511), - [anon_sym_assert] = ACTIONS(2511), - [anon_sym_defer] = ACTIONS(2511), - [anon_sym_goto] = ACTIONS(2511), - [anon_sym_break] = ACTIONS(2511), - [anon_sym_continue] = ACTIONS(2511), - [anon_sym_return] = ACTIONS(2511), - [anon_sym_DOLLARfor] = ACTIONS(2511), - [anon_sym_for] = ACTIONS(2511), - [anon_sym_POUND] = ACTIONS(2511), - [anon_sym_asm] = ACTIONS(2511), - [anon_sym_AT_LBRACK] = ACTIONS(2511), - [sym___double_quote] = ACTIONS(2511), - [sym___single_quote] = ACTIONS(2511), - [sym___c_double_quote] = ACTIONS(2511), - [sym___c_single_quote] = ACTIONS(2511), - [sym___r_double_quote] = ACTIONS(2511), - [sym___r_single_quote] = ACTIONS(2511), - }, - [1446] = { - [sym_line_comment] = STATE(1446), - [sym_block_comment] = STATE(1446), - [sym_block] = STATE(1543), + [1441] = { + [sym_line_comment] = STATE(1441), + [sym_block_comment] = STATE(1441), + [sym_block] = STATE(1553), [ts_builtin_sym_end] = ACTIONS(4102), [sym_identifier] = ACTIONS(4104), [anon_sym_LF] = ACTIONS(4104), @@ -176660,7 +176338,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_SLASH_SLASH] = ACTIONS(497), [anon_sym_SLASH_STAR] = ACTIONS(499), [anon_sym_DOT] = ACTIONS(4104), - [anon_sym_LBRACE] = ACTIONS(4012), + [anon_sym_LBRACE] = ACTIONS(4018), [anon_sym_const] = ACTIONS(4104), [anon_sym_LPAREN] = ACTIONS(4104), [anon_sym___global] = ACTIONS(4104), @@ -176724,238 +176402,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym___r_double_quote] = ACTIONS(4104), [sym___r_single_quote] = ACTIONS(4104), }, - [1447] = { - [sym_line_comment] = STATE(1447), - [sym_block_comment] = STATE(1447), - [ts_builtin_sym_end] = ACTIONS(2914), - [sym_identifier] = ACTIONS(2916), - [anon_sym_LF] = ACTIONS(2916), - [anon_sym_CR] = ACTIONS(2916), - [anon_sym_CR_LF] = ACTIONS(2916), - [anon_sym_SLASH_SLASH] = ACTIONS(497), - [anon_sym_SLASH_STAR] = ACTIONS(499), - [anon_sym_DOT] = ACTIONS(2916), - [anon_sym_LBRACE] = ACTIONS(2916), - [anon_sym_const] = ACTIONS(2916), - [anon_sym_LPAREN] = ACTIONS(2916), - [anon_sym___global] = ACTIONS(2916), - [anon_sym_type] = ACTIONS(2916), - [anon_sym_PIPE] = ACTIONS(2916), - [anon_sym_fn] = ACTIONS(2916), - [anon_sym_PLUS] = ACTIONS(2916), - [anon_sym_DASH] = ACTIONS(2916), - [anon_sym_STAR] = ACTIONS(2916), - [anon_sym_struct] = ACTIONS(2916), - [anon_sym_union] = ACTIONS(2916), - [anon_sym_pub] = ACTIONS(2916), - [anon_sym_mut] = ACTIONS(2916), - [anon_sym_enum] = ACTIONS(2916), - [anon_sym_interface] = ACTIONS(2916), - [anon_sym_QMARK] = ACTIONS(2916), - [anon_sym_BANG] = ACTIONS(2916), - [anon_sym_go] = ACTIONS(2916), - [anon_sym_spawn] = ACTIONS(2916), - [anon_sym_json_DOTdecode] = ACTIONS(2916), - [anon_sym_LBRACK2] = ACTIONS(2916), - [anon_sym_TILDE] = ACTIONS(2916), - [anon_sym_CARET] = ACTIONS(2916), - [anon_sym_AMP] = ACTIONS(2916), - [anon_sym_LT_DASH] = ACTIONS(2916), - [sym_none] = ACTIONS(2916), - [sym_true] = ACTIONS(2916), - [sym_false] = ACTIONS(2916), - [sym_nil] = ACTIONS(2916), - [anon_sym_if] = ACTIONS(2916), - [anon_sym_DOLLARif] = ACTIONS(2916), - [anon_sym_match] = ACTIONS(2916), - [anon_sym_select] = ACTIONS(2916), - [anon_sym_lock] = ACTIONS(2916), - [anon_sym_rlock] = ACTIONS(2916), - [anon_sym_unsafe] = ACTIONS(2916), - [anon_sym_sql] = ACTIONS(2916), - [sym_int_literal] = ACTIONS(2916), - [sym_float_literal] = ACTIONS(2916), - [sym_rune_literal] = ACTIONS(2916), - [sym_pseudo_compile_time_identifier] = ACTIONS(2916), - [anon_sym_shared] = ACTIONS(2916), - [anon_sym_map_LBRACK] = ACTIONS(2916), - [anon_sym_chan] = ACTIONS(2916), - [anon_sym_thread] = ACTIONS(2916), - [anon_sym_atomic] = ACTIONS(2916), - [anon_sym_assert] = ACTIONS(2916), - [anon_sym_defer] = ACTIONS(2916), - [anon_sym_goto] = ACTIONS(2916), - [anon_sym_break] = ACTIONS(2916), - [anon_sym_continue] = ACTIONS(2916), - [anon_sym_return] = ACTIONS(2916), - [anon_sym_DOLLARfor] = ACTIONS(2916), - [anon_sym_for] = ACTIONS(2916), - [anon_sym_POUND] = ACTIONS(2916), - [anon_sym_asm] = ACTIONS(2916), - [anon_sym_AT_LBRACK] = ACTIONS(2916), - [sym___double_quote] = ACTIONS(2916), - [sym___single_quote] = ACTIONS(2916), - [sym___c_double_quote] = ACTIONS(2916), - [sym___c_single_quote] = ACTIONS(2916), - [sym___r_double_quote] = ACTIONS(2916), - [sym___r_single_quote] = ACTIONS(2916), - }, - [1448] = { - [sym_line_comment] = STATE(1448), - [sym_block_comment] = STATE(1448), - [ts_builtin_sym_end] = ACTIONS(2910), - [sym_identifier] = ACTIONS(2912), - [anon_sym_LF] = ACTIONS(2912), - [anon_sym_CR] = ACTIONS(2912), - [anon_sym_CR_LF] = ACTIONS(2912), - [anon_sym_SLASH_SLASH] = ACTIONS(497), - [anon_sym_SLASH_STAR] = ACTIONS(499), - [anon_sym_DOT] = ACTIONS(2912), - [anon_sym_LBRACE] = ACTIONS(2912), - [anon_sym_const] = ACTIONS(2912), - [anon_sym_LPAREN] = ACTIONS(2912), - [anon_sym___global] = ACTIONS(2912), - [anon_sym_type] = ACTIONS(2912), - [anon_sym_PIPE] = ACTIONS(2912), - [anon_sym_fn] = ACTIONS(2912), - [anon_sym_PLUS] = ACTIONS(2912), - [anon_sym_DASH] = ACTIONS(2912), - [anon_sym_STAR] = ACTIONS(2912), - [anon_sym_struct] = ACTIONS(2912), - [anon_sym_union] = ACTIONS(2912), - [anon_sym_pub] = ACTIONS(2912), - [anon_sym_mut] = ACTIONS(2912), - [anon_sym_enum] = ACTIONS(2912), - [anon_sym_interface] = ACTIONS(2912), - [anon_sym_QMARK] = ACTIONS(2912), - [anon_sym_BANG] = ACTIONS(2912), - [anon_sym_go] = ACTIONS(2912), - [anon_sym_spawn] = ACTIONS(2912), - [anon_sym_json_DOTdecode] = ACTIONS(2912), - [anon_sym_LBRACK2] = ACTIONS(2912), - [anon_sym_TILDE] = ACTIONS(2912), - [anon_sym_CARET] = ACTIONS(2912), - [anon_sym_AMP] = ACTIONS(2912), - [anon_sym_LT_DASH] = ACTIONS(2912), - [sym_none] = ACTIONS(2912), - [sym_true] = ACTIONS(2912), - [sym_false] = ACTIONS(2912), - [sym_nil] = ACTIONS(2912), - [anon_sym_if] = ACTIONS(2912), - [anon_sym_DOLLARif] = ACTIONS(2912), - [anon_sym_match] = ACTIONS(2912), - [anon_sym_select] = ACTIONS(2912), - [anon_sym_lock] = ACTIONS(2912), - [anon_sym_rlock] = ACTIONS(2912), - [anon_sym_unsafe] = ACTIONS(2912), - [anon_sym_sql] = ACTIONS(2912), - [sym_int_literal] = ACTIONS(2912), - [sym_float_literal] = ACTIONS(2912), - [sym_rune_literal] = ACTIONS(2912), - [sym_pseudo_compile_time_identifier] = ACTIONS(2912), - [anon_sym_shared] = ACTIONS(2912), - [anon_sym_map_LBRACK] = ACTIONS(2912), - [anon_sym_chan] = ACTIONS(2912), - [anon_sym_thread] = ACTIONS(2912), - [anon_sym_atomic] = ACTIONS(2912), - [anon_sym_assert] = ACTIONS(2912), - [anon_sym_defer] = ACTIONS(2912), - [anon_sym_goto] = ACTIONS(2912), - [anon_sym_break] = ACTIONS(2912), - [anon_sym_continue] = ACTIONS(2912), - [anon_sym_return] = ACTIONS(2912), - [anon_sym_DOLLARfor] = ACTIONS(2912), - [anon_sym_for] = ACTIONS(2912), - [anon_sym_POUND] = ACTIONS(2912), - [anon_sym_asm] = ACTIONS(2912), - [anon_sym_AT_LBRACK] = ACTIONS(2912), - [sym___double_quote] = ACTIONS(2912), - [sym___single_quote] = ACTIONS(2912), - [sym___c_double_quote] = ACTIONS(2912), - [sym___c_single_quote] = ACTIONS(2912), - [sym___r_double_quote] = ACTIONS(2912), - [sym___r_single_quote] = ACTIONS(2912), - }, - [1449] = { - [sym_line_comment] = STATE(1449), - [sym_block_comment] = STATE(1449), - [ts_builtin_sym_end] = ACTIONS(2770), - [sym_identifier] = ACTIONS(2772), - [anon_sym_LF] = ACTIONS(2772), - [anon_sym_CR] = ACTIONS(2772), - [anon_sym_CR_LF] = ACTIONS(2772), - [anon_sym_SLASH_SLASH] = ACTIONS(497), - [anon_sym_SLASH_STAR] = ACTIONS(499), - [anon_sym_DOT] = ACTIONS(2772), - [anon_sym_LBRACE] = ACTIONS(2772), - [anon_sym_const] = ACTIONS(2772), - [anon_sym_LPAREN] = ACTIONS(2772), - [anon_sym___global] = ACTIONS(2772), - [anon_sym_type] = ACTIONS(2772), - [anon_sym_PIPE] = ACTIONS(2772), - [anon_sym_fn] = ACTIONS(2772), - [anon_sym_PLUS] = ACTIONS(2772), - [anon_sym_DASH] = ACTIONS(2772), - [anon_sym_STAR] = ACTIONS(2772), - [anon_sym_struct] = ACTIONS(2772), - [anon_sym_union] = ACTIONS(2772), - [anon_sym_pub] = ACTIONS(2772), - [anon_sym_mut] = ACTIONS(2772), - [anon_sym_enum] = ACTIONS(2772), - [anon_sym_interface] = ACTIONS(2772), - [anon_sym_QMARK] = ACTIONS(2772), - [anon_sym_BANG] = ACTIONS(2772), - [anon_sym_go] = ACTIONS(2772), - [anon_sym_spawn] = ACTIONS(2772), - [anon_sym_json_DOTdecode] = ACTIONS(2772), - [anon_sym_LBRACK2] = ACTIONS(2772), - [anon_sym_TILDE] = ACTIONS(2772), - [anon_sym_CARET] = ACTIONS(2772), - [anon_sym_AMP] = ACTIONS(2772), - [anon_sym_LT_DASH] = ACTIONS(2772), - [sym_none] = ACTIONS(2772), - [sym_true] = ACTIONS(2772), - [sym_false] = ACTIONS(2772), - [sym_nil] = ACTIONS(2772), - [anon_sym_if] = ACTIONS(2772), - [anon_sym_DOLLARif] = ACTIONS(2772), - [anon_sym_match] = ACTIONS(2772), - [anon_sym_select] = ACTIONS(2772), - [anon_sym_lock] = ACTIONS(2772), - [anon_sym_rlock] = ACTIONS(2772), - [anon_sym_unsafe] = ACTIONS(2772), - [anon_sym_sql] = ACTIONS(2772), - [sym_int_literal] = ACTIONS(2772), - [sym_float_literal] = ACTIONS(2772), - [sym_rune_literal] = ACTIONS(2772), - [sym_pseudo_compile_time_identifier] = ACTIONS(2772), - [anon_sym_shared] = ACTIONS(2772), - [anon_sym_map_LBRACK] = ACTIONS(2772), - [anon_sym_chan] = ACTIONS(2772), - [anon_sym_thread] = ACTIONS(2772), - [anon_sym_atomic] = ACTIONS(2772), - [anon_sym_assert] = ACTIONS(2772), - [anon_sym_defer] = ACTIONS(2772), - [anon_sym_goto] = ACTIONS(2772), - [anon_sym_break] = ACTIONS(2772), - [anon_sym_continue] = ACTIONS(2772), - [anon_sym_return] = ACTIONS(2772), - [anon_sym_DOLLARfor] = ACTIONS(2772), - [anon_sym_for] = ACTIONS(2772), - [anon_sym_POUND] = ACTIONS(2772), - [anon_sym_asm] = ACTIONS(2772), - [anon_sym_AT_LBRACK] = ACTIONS(2772), - [sym___double_quote] = ACTIONS(2772), - [sym___single_quote] = ACTIONS(2772), - [sym___c_double_quote] = ACTIONS(2772), - [sym___c_single_quote] = ACTIONS(2772), - [sym___r_double_quote] = ACTIONS(2772), - [sym___r_single_quote] = ACTIONS(2772), - }, - [1450] = { - [sym_line_comment] = STATE(1450), - [sym_block_comment] = STATE(1450), - [sym_block] = STATE(1545), + [1442] = { + [sym_line_comment] = STATE(1442), + [sym_block_comment] = STATE(1442), + [sym_block] = STATE(1552), [ts_builtin_sym_end] = ACTIONS(4106), [sym_identifier] = ACTIONS(4108), [anon_sym_LF] = ACTIONS(4108), @@ -176964,7 +176414,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_SLASH_SLASH] = ACTIONS(497), [anon_sym_SLASH_STAR] = ACTIONS(499), [anon_sym_DOT] = ACTIONS(4108), - [anon_sym_LBRACE] = ACTIONS(4012), + [anon_sym_LBRACE] = ACTIONS(4018), [anon_sym_const] = ACTIONS(4108), [anon_sym_LPAREN] = ACTIONS(4108), [anon_sym___global] = ACTIONS(4108), @@ -177028,10 +176478,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym___r_double_quote] = ACTIONS(4108), [sym___r_single_quote] = ACTIONS(4108), }, - [1451] = { - [sym_line_comment] = STATE(1451), - [sym_block_comment] = STATE(1451), - [sym_block] = STATE(1546), + [1443] = { + [sym_line_comment] = STATE(1443), + [sym_block_comment] = STATE(1443), + [sym_block] = STATE(1550), [ts_builtin_sym_end] = ACTIONS(4110), [sym_identifier] = ACTIONS(4112), [anon_sym_LF] = ACTIONS(4112), @@ -177040,7 +176490,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_SLASH_SLASH] = ACTIONS(497), [anon_sym_SLASH_STAR] = ACTIONS(499), [anon_sym_DOT] = ACTIONS(4112), - [anon_sym_LBRACE] = ACTIONS(4012), + [anon_sym_LBRACE] = ACTIONS(4018), [anon_sym_const] = ACTIONS(4112), [anon_sym_LPAREN] = ACTIONS(4112), [anon_sym___global] = ACTIONS(4112), @@ -177104,2431 +176554,3040 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym___r_double_quote] = ACTIONS(4112), [sym___r_single_quote] = ACTIONS(4112), }, + [1444] = { + [sym_line_comment] = STATE(1444), + [sym_block_comment] = STATE(1444), + [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), + [anon_sym_SLASH_SLASH] = ACTIONS(497), + [anon_sym_SLASH_STAR] = ACTIONS(499), + [anon_sym_DOT] = ACTIONS(2509), + [anon_sym_LBRACE] = 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_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_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), + [sym_none] = ACTIONS(2509), + [sym_true] = ACTIONS(2509), + [sym_false] = ACTIONS(2509), + [sym_nil] = ACTIONS(2509), + [anon_sym_if] = ACTIONS(2509), + [anon_sym_DOLLARif] = 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), + }, + [1445] = { + [sym_line_comment] = STATE(1445), + [sym_block_comment] = STATE(1445), + [ts_builtin_sym_end] = ACTIONS(1879), + [sym_identifier] = ACTIONS(1881), + [anon_sym_LF] = ACTIONS(1881), + [anon_sym_CR] = ACTIONS(1881), + [anon_sym_CR_LF] = ACTIONS(1881), + [anon_sym_SLASH_SLASH] = ACTIONS(497), + [anon_sym_SLASH_STAR] = ACTIONS(499), + [anon_sym_DOT] = ACTIONS(1881), + [anon_sym_LBRACE] = ACTIONS(1881), + [anon_sym_const] = ACTIONS(1881), + [anon_sym_LPAREN] = 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_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_QMARK] = ACTIONS(1881), + [anon_sym_BANG] = ACTIONS(1881), + [anon_sym_go] = ACTIONS(1881), + [anon_sym_spawn] = ACTIONS(1881), + [anon_sym_json_DOTdecode] = ACTIONS(1881), + [anon_sym_LBRACK2] = ACTIONS(1881), + [anon_sym_TILDE] = ACTIONS(1881), + [anon_sym_CARET] = ACTIONS(1881), + [anon_sym_AMP] = ACTIONS(1881), + [anon_sym_LT_DASH] = ACTIONS(1881), + [sym_none] = ACTIONS(1881), + [sym_true] = ACTIONS(1881), + [sym_false] = ACTIONS(1881), + [sym_nil] = ACTIONS(1881), + [anon_sym_if] = ACTIONS(1881), + [anon_sym_DOLLARif] = 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), + }, + [1446] = { + [sym_line_comment] = STATE(1446), + [sym_block_comment] = STATE(1446), + [ts_builtin_sym_end] = ACTIONS(2766), + [sym_identifier] = ACTIONS(2768), + [anon_sym_LF] = ACTIONS(2768), + [anon_sym_CR] = ACTIONS(2768), + [anon_sym_CR_LF] = ACTIONS(2768), + [anon_sym_SLASH_SLASH] = ACTIONS(497), + [anon_sym_SLASH_STAR] = ACTIONS(499), + [anon_sym_DOT] = ACTIONS(2768), + [anon_sym_LBRACE] = ACTIONS(2768), + [anon_sym_const] = ACTIONS(2768), + [anon_sym_LPAREN] = ACTIONS(2768), + [anon_sym___global] = ACTIONS(2768), + [anon_sym_type] = ACTIONS(2768), + [anon_sym_PIPE] = ACTIONS(2768), + [anon_sym_fn] = ACTIONS(2768), + [anon_sym_PLUS] = ACTIONS(2768), + [anon_sym_DASH] = ACTIONS(2768), + [anon_sym_STAR] = ACTIONS(2768), + [anon_sym_struct] = ACTIONS(2768), + [anon_sym_union] = ACTIONS(2768), + [anon_sym_pub] = ACTIONS(2768), + [anon_sym_mut] = ACTIONS(2768), + [anon_sym_enum] = ACTIONS(2768), + [anon_sym_interface] = ACTIONS(2768), + [anon_sym_QMARK] = ACTIONS(2768), + [anon_sym_BANG] = ACTIONS(2768), + [anon_sym_go] = ACTIONS(2768), + [anon_sym_spawn] = ACTIONS(2768), + [anon_sym_json_DOTdecode] = ACTIONS(2768), + [anon_sym_LBRACK2] = ACTIONS(2768), + [anon_sym_TILDE] = ACTIONS(2768), + [anon_sym_CARET] = ACTIONS(2768), + [anon_sym_AMP] = ACTIONS(2768), + [anon_sym_LT_DASH] = ACTIONS(2768), + [sym_none] = ACTIONS(2768), + [sym_true] = ACTIONS(2768), + [sym_false] = ACTIONS(2768), + [sym_nil] = ACTIONS(2768), + [anon_sym_if] = ACTIONS(2768), + [anon_sym_DOLLARif] = ACTIONS(2768), + [anon_sym_match] = ACTIONS(2768), + [anon_sym_select] = ACTIONS(2768), + [anon_sym_lock] = ACTIONS(2768), + [anon_sym_rlock] = ACTIONS(2768), + [anon_sym_unsafe] = ACTIONS(2768), + [anon_sym_sql] = ACTIONS(2768), + [sym_int_literal] = ACTIONS(2768), + [sym_float_literal] = ACTIONS(2768), + [sym_rune_literal] = ACTIONS(2768), + [sym_pseudo_compile_time_identifier] = ACTIONS(2768), + [anon_sym_shared] = ACTIONS(2768), + [anon_sym_map_LBRACK] = ACTIONS(2768), + [anon_sym_chan] = ACTIONS(2768), + [anon_sym_thread] = ACTIONS(2768), + [anon_sym_atomic] = ACTIONS(2768), + [anon_sym_assert] = ACTIONS(2768), + [anon_sym_defer] = ACTIONS(2768), + [anon_sym_goto] = ACTIONS(2768), + [anon_sym_break] = ACTIONS(2768), + [anon_sym_continue] = ACTIONS(2768), + [anon_sym_return] = ACTIONS(2768), + [anon_sym_DOLLARfor] = ACTIONS(2768), + [anon_sym_for] = ACTIONS(2768), + [anon_sym_POUND] = ACTIONS(2768), + [anon_sym_asm] = ACTIONS(2768), + [anon_sym_AT_LBRACK] = ACTIONS(2768), + [sym___double_quote] = ACTIONS(2768), + [sym___single_quote] = ACTIONS(2768), + [sym___c_double_quote] = ACTIONS(2768), + [sym___c_single_quote] = ACTIONS(2768), + [sym___r_double_quote] = ACTIONS(2768), + [sym___r_single_quote] = ACTIONS(2768), + }, + [1447] = { + [sym_line_comment] = STATE(1447), + [sym_block_comment] = STATE(1447), + [ts_builtin_sym_end] = ACTIONS(3056), + [sym_identifier] = ACTIONS(3058), + [anon_sym_LF] = ACTIONS(3058), + [anon_sym_CR] = ACTIONS(3058), + [anon_sym_CR_LF] = ACTIONS(3058), + [anon_sym_SLASH_SLASH] = ACTIONS(497), + [anon_sym_SLASH_STAR] = ACTIONS(499), + [anon_sym_DOT] = ACTIONS(3058), + [anon_sym_LBRACE] = ACTIONS(3058), + [anon_sym_const] = ACTIONS(3058), + [anon_sym_LPAREN] = ACTIONS(3058), + [anon_sym___global] = ACTIONS(3058), + [anon_sym_type] = ACTIONS(3058), + [anon_sym_PIPE] = ACTIONS(3058), + [anon_sym_fn] = ACTIONS(3058), + [anon_sym_PLUS] = ACTIONS(3058), + [anon_sym_DASH] = ACTIONS(3058), + [anon_sym_STAR] = ACTIONS(3058), + [anon_sym_struct] = ACTIONS(3058), + [anon_sym_union] = ACTIONS(3058), + [anon_sym_pub] = ACTIONS(3058), + [anon_sym_mut] = ACTIONS(3058), + [anon_sym_enum] = ACTIONS(3058), + [anon_sym_interface] = ACTIONS(3058), + [anon_sym_QMARK] = ACTIONS(3058), + [anon_sym_BANG] = ACTIONS(3058), + [anon_sym_go] = ACTIONS(3058), + [anon_sym_spawn] = ACTIONS(3058), + [anon_sym_json_DOTdecode] = ACTIONS(3058), + [anon_sym_LBRACK2] = ACTIONS(3058), + [anon_sym_TILDE] = ACTIONS(3058), + [anon_sym_CARET] = ACTIONS(3058), + [anon_sym_AMP] = ACTIONS(3058), + [anon_sym_LT_DASH] = ACTIONS(3058), + [sym_none] = ACTIONS(3058), + [sym_true] = ACTIONS(3058), + [sym_false] = ACTIONS(3058), + [sym_nil] = ACTIONS(3058), + [anon_sym_if] = ACTIONS(3058), + [anon_sym_DOLLARif] = ACTIONS(3058), + [anon_sym_match] = ACTIONS(3058), + [anon_sym_select] = ACTIONS(3058), + [anon_sym_lock] = ACTIONS(3058), + [anon_sym_rlock] = ACTIONS(3058), + [anon_sym_unsafe] = ACTIONS(3058), + [anon_sym_sql] = ACTIONS(3058), + [sym_int_literal] = ACTIONS(3058), + [sym_float_literal] = ACTIONS(3058), + [sym_rune_literal] = ACTIONS(3058), + [sym_pseudo_compile_time_identifier] = ACTIONS(3058), + [anon_sym_shared] = ACTIONS(3058), + [anon_sym_map_LBRACK] = ACTIONS(3058), + [anon_sym_chan] = ACTIONS(3058), + [anon_sym_thread] = ACTIONS(3058), + [anon_sym_atomic] = ACTIONS(3058), + [anon_sym_assert] = ACTIONS(3058), + [anon_sym_defer] = ACTIONS(3058), + [anon_sym_goto] = ACTIONS(3058), + [anon_sym_break] = ACTIONS(3058), + [anon_sym_continue] = ACTIONS(3058), + [anon_sym_return] = ACTIONS(3058), + [anon_sym_DOLLARfor] = ACTIONS(3058), + [anon_sym_for] = ACTIONS(3058), + [anon_sym_POUND] = ACTIONS(3058), + [anon_sym_asm] = ACTIONS(3058), + [anon_sym_AT_LBRACK] = ACTIONS(3058), + [sym___double_quote] = ACTIONS(3058), + [sym___single_quote] = ACTIONS(3058), + [sym___c_double_quote] = ACTIONS(3058), + [sym___c_single_quote] = ACTIONS(3058), + [sym___r_double_quote] = ACTIONS(3058), + [sym___r_single_quote] = ACTIONS(3058), + }, + [1448] = { + [sym_line_comment] = STATE(1448), + [sym_block_comment] = STATE(1448), + [ts_builtin_sym_end] = ACTIONS(2708), + [sym_identifier] = ACTIONS(2710), + [anon_sym_LF] = ACTIONS(2710), + [anon_sym_CR] = ACTIONS(2710), + [anon_sym_CR_LF] = ACTIONS(2710), + [anon_sym_SLASH_SLASH] = ACTIONS(497), + [anon_sym_SLASH_STAR] = ACTIONS(499), + [anon_sym_DOT] = ACTIONS(2710), + [anon_sym_LBRACE] = ACTIONS(2710), + [anon_sym_const] = ACTIONS(2710), + [anon_sym_LPAREN] = ACTIONS(2710), + [anon_sym___global] = ACTIONS(2710), + [anon_sym_type] = ACTIONS(2710), + [anon_sym_PIPE] = ACTIONS(2710), + [anon_sym_fn] = ACTIONS(2710), + [anon_sym_PLUS] = ACTIONS(2710), + [anon_sym_DASH] = ACTIONS(2710), + [anon_sym_STAR] = ACTIONS(2710), + [anon_sym_struct] = ACTIONS(2710), + [anon_sym_union] = ACTIONS(2710), + [anon_sym_pub] = ACTIONS(2710), + [anon_sym_mut] = ACTIONS(2710), + [anon_sym_enum] = ACTIONS(2710), + [anon_sym_interface] = ACTIONS(2710), + [anon_sym_QMARK] = ACTIONS(2710), + [anon_sym_BANG] = ACTIONS(2710), + [anon_sym_go] = ACTIONS(2710), + [anon_sym_spawn] = ACTIONS(2710), + [anon_sym_json_DOTdecode] = ACTIONS(2710), + [anon_sym_LBRACK2] = ACTIONS(2710), + [anon_sym_TILDE] = ACTIONS(2710), + [anon_sym_CARET] = ACTIONS(2710), + [anon_sym_AMP] = ACTIONS(2710), + [anon_sym_LT_DASH] = ACTIONS(2710), + [sym_none] = ACTIONS(2710), + [sym_true] = ACTIONS(2710), + [sym_false] = ACTIONS(2710), + [sym_nil] = ACTIONS(2710), + [anon_sym_if] = ACTIONS(2710), + [anon_sym_DOLLARif] = ACTIONS(2710), + [anon_sym_match] = ACTIONS(2710), + [anon_sym_select] = ACTIONS(2710), + [anon_sym_lock] = ACTIONS(2710), + [anon_sym_rlock] = ACTIONS(2710), + [anon_sym_unsafe] = ACTIONS(2710), + [anon_sym_sql] = ACTIONS(2710), + [sym_int_literal] = ACTIONS(2710), + [sym_float_literal] = ACTIONS(2710), + [sym_rune_literal] = ACTIONS(2710), + [sym_pseudo_compile_time_identifier] = ACTIONS(2710), + [anon_sym_shared] = ACTIONS(2710), + [anon_sym_map_LBRACK] = ACTIONS(2710), + [anon_sym_chan] = ACTIONS(2710), + [anon_sym_thread] = ACTIONS(2710), + [anon_sym_atomic] = ACTIONS(2710), + [anon_sym_assert] = ACTIONS(2710), + [anon_sym_defer] = ACTIONS(2710), + [anon_sym_goto] = ACTIONS(2710), + [anon_sym_break] = ACTIONS(2710), + [anon_sym_continue] = ACTIONS(2710), + [anon_sym_return] = ACTIONS(2710), + [anon_sym_DOLLARfor] = ACTIONS(2710), + [anon_sym_for] = ACTIONS(2710), + [anon_sym_POUND] = ACTIONS(2710), + [anon_sym_asm] = ACTIONS(2710), + [anon_sym_AT_LBRACK] = ACTIONS(2710), + [sym___double_quote] = ACTIONS(2710), + [sym___single_quote] = ACTIONS(2710), + [sym___c_double_quote] = ACTIONS(2710), + [sym___c_single_quote] = ACTIONS(2710), + [sym___r_double_quote] = ACTIONS(2710), + [sym___r_single_quote] = ACTIONS(2710), + }, + [1449] = { + [sym_line_comment] = STATE(1449), + [sym_block_comment] = STATE(1449), + [ts_builtin_sym_end] = ACTIONS(2702), + [sym_identifier] = ACTIONS(2704), + [anon_sym_LF] = ACTIONS(2704), + [anon_sym_CR] = ACTIONS(2704), + [anon_sym_CR_LF] = ACTIONS(2704), + [anon_sym_SLASH_SLASH] = ACTIONS(497), + [anon_sym_SLASH_STAR] = ACTIONS(499), + [anon_sym_DOT] = ACTIONS(2704), + [anon_sym_LBRACE] = ACTIONS(2704), + [anon_sym_const] = ACTIONS(2704), + [anon_sym_LPAREN] = ACTIONS(2704), + [anon_sym___global] = ACTIONS(2704), + [anon_sym_type] = ACTIONS(2704), + [anon_sym_PIPE] = ACTIONS(2704), + [anon_sym_fn] = ACTIONS(2704), + [anon_sym_PLUS] = ACTIONS(2704), + [anon_sym_DASH] = ACTIONS(2704), + [anon_sym_STAR] = ACTIONS(2704), + [anon_sym_struct] = ACTIONS(2704), + [anon_sym_union] = ACTIONS(2704), + [anon_sym_pub] = ACTIONS(2704), + [anon_sym_mut] = ACTIONS(2704), + [anon_sym_enum] = ACTIONS(2704), + [anon_sym_interface] = ACTIONS(2704), + [anon_sym_QMARK] = ACTIONS(2704), + [anon_sym_BANG] = ACTIONS(2704), + [anon_sym_go] = ACTIONS(2704), + [anon_sym_spawn] = ACTIONS(2704), + [anon_sym_json_DOTdecode] = ACTIONS(2704), + [anon_sym_LBRACK2] = ACTIONS(2704), + [anon_sym_TILDE] = ACTIONS(2704), + [anon_sym_CARET] = ACTIONS(2704), + [anon_sym_AMP] = ACTIONS(2704), + [anon_sym_LT_DASH] = ACTIONS(2704), + [sym_none] = ACTIONS(2704), + [sym_true] = ACTIONS(2704), + [sym_false] = ACTIONS(2704), + [sym_nil] = ACTIONS(2704), + [anon_sym_if] = ACTIONS(2704), + [anon_sym_DOLLARif] = ACTIONS(2704), + [anon_sym_match] = ACTIONS(2704), + [anon_sym_select] = ACTIONS(2704), + [anon_sym_lock] = ACTIONS(2704), + [anon_sym_rlock] = ACTIONS(2704), + [anon_sym_unsafe] = ACTIONS(2704), + [anon_sym_sql] = ACTIONS(2704), + [sym_int_literal] = ACTIONS(2704), + [sym_float_literal] = ACTIONS(2704), + [sym_rune_literal] = ACTIONS(2704), + [sym_pseudo_compile_time_identifier] = ACTIONS(2704), + [anon_sym_shared] = ACTIONS(2704), + [anon_sym_map_LBRACK] = ACTIONS(2704), + [anon_sym_chan] = ACTIONS(2704), + [anon_sym_thread] = ACTIONS(2704), + [anon_sym_atomic] = ACTIONS(2704), + [anon_sym_assert] = ACTIONS(2704), + [anon_sym_defer] = ACTIONS(2704), + [anon_sym_goto] = ACTIONS(2704), + [anon_sym_break] = ACTIONS(2704), + [anon_sym_continue] = ACTIONS(2704), + [anon_sym_return] = ACTIONS(2704), + [anon_sym_DOLLARfor] = ACTIONS(2704), + [anon_sym_for] = ACTIONS(2704), + [anon_sym_POUND] = ACTIONS(2704), + [anon_sym_asm] = ACTIONS(2704), + [anon_sym_AT_LBRACK] = ACTIONS(2704), + [sym___double_quote] = ACTIONS(2704), + [sym___single_quote] = ACTIONS(2704), + [sym___c_double_quote] = ACTIONS(2704), + [sym___c_single_quote] = ACTIONS(2704), + [sym___r_double_quote] = ACTIONS(2704), + [sym___r_single_quote] = ACTIONS(2704), + }, + [1450] = { + [sym_line_comment] = STATE(1450), + [sym_block_comment] = STATE(1450), + [ts_builtin_sym_end] = ACTIONS(3522), + [sym_identifier] = ACTIONS(1649), + [anon_sym_LF] = ACTIONS(1649), + [anon_sym_CR] = ACTIONS(1649), + [anon_sym_CR_LF] = ACTIONS(1649), + [anon_sym_SLASH_SLASH] = ACTIONS(497), + [anon_sym_SLASH_STAR] = ACTIONS(499), + [anon_sym_DOT] = ACTIONS(1649), + [anon_sym_LBRACE] = ACTIONS(1649), + [anon_sym_COMMA] = ACTIONS(1649), + [anon_sym_const] = ACTIONS(1649), + [anon_sym_LPAREN] = ACTIONS(1649), + [anon_sym___global] = ACTIONS(1649), + [anon_sym_type] = ACTIONS(1649), + [anon_sym_fn] = ACTIONS(1649), + [anon_sym_PLUS] = ACTIONS(1649), + [anon_sym_DASH] = ACTIONS(1649), + [anon_sym_STAR] = ACTIONS(1649), + [anon_sym_struct] = ACTIONS(1649), + [anon_sym_union] = ACTIONS(1649), + [anon_sym_pub] = ACTIONS(1649), + [anon_sym_mut] = ACTIONS(1649), + [anon_sym_enum] = ACTIONS(1649), + [anon_sym_interface] = ACTIONS(1649), + [anon_sym_QMARK] = ACTIONS(1649), + [anon_sym_BANG] = ACTIONS(1649), + [anon_sym_go] = ACTIONS(1649), + [anon_sym_spawn] = ACTIONS(1649), + [anon_sym_json_DOTdecode] = ACTIONS(1649), + [anon_sym_LBRACK2] = ACTIONS(1649), + [anon_sym_TILDE] = ACTIONS(1649), + [anon_sym_CARET] = ACTIONS(1649), + [anon_sym_AMP] = ACTIONS(1649), + [anon_sym_LT_DASH] = ACTIONS(1649), + [sym_none] = ACTIONS(1649), + [sym_true] = ACTIONS(1649), + [sym_false] = ACTIONS(1649), + [sym_nil] = ACTIONS(1649), + [anon_sym_if] = ACTIONS(1649), + [anon_sym_DOLLARif] = ACTIONS(1649), + [anon_sym_match] = ACTIONS(1649), + [anon_sym_select] = ACTIONS(1649), + [anon_sym_lock] = ACTIONS(1649), + [anon_sym_rlock] = ACTIONS(1649), + [anon_sym_unsafe] = ACTIONS(1649), + [anon_sym_sql] = ACTIONS(1649), + [sym_int_literal] = ACTIONS(1649), + [sym_float_literal] = ACTIONS(1649), + [sym_rune_literal] = ACTIONS(1649), + [sym_pseudo_compile_time_identifier] = ACTIONS(1649), + [anon_sym_shared] = ACTIONS(1649), + [anon_sym_map_LBRACK] = ACTIONS(1649), + [anon_sym_chan] = ACTIONS(1649), + [anon_sym_thread] = ACTIONS(1649), + [anon_sym_atomic] = ACTIONS(1649), + [anon_sym_assert] = ACTIONS(1649), + [anon_sym_defer] = ACTIONS(1649), + [anon_sym_goto] = ACTIONS(1649), + [anon_sym_break] = ACTIONS(1649), + [anon_sym_continue] = ACTIONS(1649), + [anon_sym_return] = ACTIONS(1649), + [anon_sym_DOLLARfor] = ACTIONS(1649), + [anon_sym_for] = ACTIONS(1649), + [anon_sym_POUND] = ACTIONS(1649), + [anon_sym_asm] = ACTIONS(1649), + [anon_sym_AT_LBRACK] = ACTIONS(1649), + [sym___double_quote] = ACTIONS(1649), + [sym___single_quote] = ACTIONS(1649), + [sym___c_double_quote] = ACTIONS(1649), + [sym___c_single_quote] = ACTIONS(1649), + [sym___r_double_quote] = ACTIONS(1649), + [sym___r_single_quote] = ACTIONS(1649), + }, + [1451] = { + [sym_line_comment] = STATE(1451), + [sym_block_comment] = STATE(1451), + [ts_builtin_sym_end] = ACTIONS(2698), + [sym_identifier] = ACTIONS(2700), + [anon_sym_LF] = ACTIONS(2700), + [anon_sym_CR] = ACTIONS(2700), + [anon_sym_CR_LF] = ACTIONS(2700), + [anon_sym_SLASH_SLASH] = ACTIONS(497), + [anon_sym_SLASH_STAR] = ACTIONS(499), + [anon_sym_DOT] = ACTIONS(2700), + [anon_sym_LBRACE] = ACTIONS(2700), + [anon_sym_const] = ACTIONS(2700), + [anon_sym_LPAREN] = ACTIONS(2700), + [anon_sym___global] = ACTIONS(2700), + [anon_sym_type] = ACTIONS(2700), + [anon_sym_PIPE] = ACTIONS(2700), + [anon_sym_fn] = ACTIONS(2700), + [anon_sym_PLUS] = ACTIONS(2700), + [anon_sym_DASH] = ACTIONS(2700), + [anon_sym_STAR] = ACTIONS(2700), + [anon_sym_struct] = ACTIONS(2700), + [anon_sym_union] = ACTIONS(2700), + [anon_sym_pub] = ACTIONS(2700), + [anon_sym_mut] = ACTIONS(2700), + [anon_sym_enum] = ACTIONS(2700), + [anon_sym_interface] = ACTIONS(2700), + [anon_sym_QMARK] = ACTIONS(2700), + [anon_sym_BANG] = ACTIONS(2700), + [anon_sym_go] = ACTIONS(2700), + [anon_sym_spawn] = ACTIONS(2700), + [anon_sym_json_DOTdecode] = ACTIONS(2700), + [anon_sym_LBRACK2] = ACTIONS(2700), + [anon_sym_TILDE] = ACTIONS(2700), + [anon_sym_CARET] = ACTIONS(2700), + [anon_sym_AMP] = ACTIONS(2700), + [anon_sym_LT_DASH] = ACTIONS(2700), + [sym_none] = ACTIONS(2700), + [sym_true] = ACTIONS(2700), + [sym_false] = ACTIONS(2700), + [sym_nil] = ACTIONS(2700), + [anon_sym_if] = ACTIONS(2700), + [anon_sym_DOLLARif] = ACTIONS(2700), + [anon_sym_match] = ACTIONS(2700), + [anon_sym_select] = ACTIONS(2700), + [anon_sym_lock] = ACTIONS(2700), + [anon_sym_rlock] = ACTIONS(2700), + [anon_sym_unsafe] = ACTIONS(2700), + [anon_sym_sql] = ACTIONS(2700), + [sym_int_literal] = ACTIONS(2700), + [sym_float_literal] = ACTIONS(2700), + [sym_rune_literal] = ACTIONS(2700), + [sym_pseudo_compile_time_identifier] = ACTIONS(2700), + [anon_sym_shared] = ACTIONS(2700), + [anon_sym_map_LBRACK] = ACTIONS(2700), + [anon_sym_chan] = ACTIONS(2700), + [anon_sym_thread] = ACTIONS(2700), + [anon_sym_atomic] = ACTIONS(2700), + [anon_sym_assert] = ACTIONS(2700), + [anon_sym_defer] = ACTIONS(2700), + [anon_sym_goto] = ACTIONS(2700), + [anon_sym_break] = ACTIONS(2700), + [anon_sym_continue] = ACTIONS(2700), + [anon_sym_return] = ACTIONS(2700), + [anon_sym_DOLLARfor] = ACTIONS(2700), + [anon_sym_for] = ACTIONS(2700), + [anon_sym_POUND] = ACTIONS(2700), + [anon_sym_asm] = ACTIONS(2700), + [anon_sym_AT_LBRACK] = ACTIONS(2700), + [sym___double_quote] = ACTIONS(2700), + [sym___single_quote] = ACTIONS(2700), + [sym___c_double_quote] = ACTIONS(2700), + [sym___c_single_quote] = ACTIONS(2700), + [sym___r_double_quote] = ACTIONS(2700), + [sym___r_single_quote] = ACTIONS(2700), + }, [1452] = { [sym_line_comment] = STATE(1452), [sym_block_comment] = STATE(1452), - [ts_builtin_sym_end] = ACTIONS(2747), - [sym_identifier] = ACTIONS(2749), - [anon_sym_LF] = ACTIONS(2749), - [anon_sym_CR] = ACTIONS(2749), - [anon_sym_CR_LF] = ACTIONS(2749), + [ts_builtin_sym_end] = ACTIONS(2904), + [sym_identifier] = ACTIONS(2906), + [anon_sym_LF] = ACTIONS(2906), + [anon_sym_CR] = ACTIONS(2906), + [anon_sym_CR_LF] = ACTIONS(2906), [anon_sym_SLASH_SLASH] = ACTIONS(497), [anon_sym_SLASH_STAR] = ACTIONS(499), - [anon_sym_DOT] = ACTIONS(2749), - [anon_sym_LBRACE] = ACTIONS(2749), - [anon_sym_const] = ACTIONS(2749), - [anon_sym_LPAREN] = ACTIONS(2749), - [anon_sym___global] = ACTIONS(2749), - [anon_sym_type] = ACTIONS(2749), - [anon_sym_PIPE] = ACTIONS(2749), - [anon_sym_fn] = ACTIONS(2749), - [anon_sym_PLUS] = ACTIONS(2749), - [anon_sym_DASH] = ACTIONS(2749), - [anon_sym_STAR] = ACTIONS(2749), - [anon_sym_struct] = ACTIONS(2749), - [anon_sym_union] = ACTIONS(2749), - [anon_sym_pub] = ACTIONS(2749), - [anon_sym_mut] = ACTIONS(2749), - [anon_sym_enum] = ACTIONS(2749), - [anon_sym_interface] = ACTIONS(2749), - [anon_sym_QMARK] = ACTIONS(2749), - [anon_sym_BANG] = ACTIONS(2749), - [anon_sym_go] = ACTIONS(2749), - [anon_sym_spawn] = ACTIONS(2749), - [anon_sym_json_DOTdecode] = ACTIONS(2749), - [anon_sym_LBRACK2] = ACTIONS(2749), - [anon_sym_TILDE] = ACTIONS(2749), - [anon_sym_CARET] = ACTIONS(2749), - [anon_sym_AMP] = ACTIONS(2749), - [anon_sym_LT_DASH] = ACTIONS(2749), - [sym_none] = ACTIONS(2749), - [sym_true] = ACTIONS(2749), - [sym_false] = ACTIONS(2749), - [sym_nil] = ACTIONS(2749), - [anon_sym_if] = ACTIONS(2749), - [anon_sym_DOLLARif] = ACTIONS(2749), - [anon_sym_match] = ACTIONS(2749), - [anon_sym_select] = ACTIONS(2749), - [anon_sym_lock] = ACTIONS(2749), - [anon_sym_rlock] = ACTIONS(2749), - [anon_sym_unsafe] = ACTIONS(2749), - [anon_sym_sql] = ACTIONS(2749), - [sym_int_literal] = ACTIONS(2749), - [sym_float_literal] = ACTIONS(2749), - [sym_rune_literal] = ACTIONS(2749), - [sym_pseudo_compile_time_identifier] = ACTIONS(2749), - [anon_sym_shared] = ACTIONS(2749), - [anon_sym_map_LBRACK] = ACTIONS(2749), - [anon_sym_chan] = ACTIONS(2749), - [anon_sym_thread] = ACTIONS(2749), - [anon_sym_atomic] = ACTIONS(2749), - [anon_sym_assert] = ACTIONS(2749), - [anon_sym_defer] = ACTIONS(2749), - [anon_sym_goto] = ACTIONS(2749), - [anon_sym_break] = ACTIONS(2749), - [anon_sym_continue] = ACTIONS(2749), - [anon_sym_return] = ACTIONS(2749), - [anon_sym_DOLLARfor] = ACTIONS(2749), - [anon_sym_for] = ACTIONS(2749), - [anon_sym_POUND] = ACTIONS(2749), - [anon_sym_asm] = ACTIONS(2749), - [anon_sym_AT_LBRACK] = ACTIONS(2749), - [sym___double_quote] = ACTIONS(2749), - [sym___single_quote] = ACTIONS(2749), - [sym___c_double_quote] = ACTIONS(2749), - [sym___c_single_quote] = ACTIONS(2749), - [sym___r_double_quote] = ACTIONS(2749), - [sym___r_single_quote] = ACTIONS(2749), + [anon_sym_DOT] = ACTIONS(2906), + [anon_sym_LBRACE] = ACTIONS(2906), + [anon_sym_const] = ACTIONS(2906), + [anon_sym_LPAREN] = ACTIONS(2906), + [anon_sym___global] = ACTIONS(2906), + [anon_sym_type] = ACTIONS(2906), + [anon_sym_PIPE] = ACTIONS(2906), + [anon_sym_fn] = ACTIONS(2906), + [anon_sym_PLUS] = ACTIONS(2906), + [anon_sym_DASH] = ACTIONS(2906), + [anon_sym_STAR] = ACTIONS(2906), + [anon_sym_struct] = ACTIONS(2906), + [anon_sym_union] = ACTIONS(2906), + [anon_sym_pub] = ACTIONS(2906), + [anon_sym_mut] = ACTIONS(2906), + [anon_sym_enum] = ACTIONS(2906), + [anon_sym_interface] = ACTIONS(2906), + [anon_sym_QMARK] = ACTIONS(2906), + [anon_sym_BANG] = ACTIONS(2906), + [anon_sym_go] = ACTIONS(2906), + [anon_sym_spawn] = ACTIONS(2906), + [anon_sym_json_DOTdecode] = ACTIONS(2906), + [anon_sym_LBRACK2] = ACTIONS(2906), + [anon_sym_TILDE] = ACTIONS(2906), + [anon_sym_CARET] = ACTIONS(2906), + [anon_sym_AMP] = ACTIONS(2906), + [anon_sym_LT_DASH] = ACTIONS(2906), + [sym_none] = ACTIONS(2906), + [sym_true] = ACTIONS(2906), + [sym_false] = ACTIONS(2906), + [sym_nil] = ACTIONS(2906), + [anon_sym_if] = ACTIONS(2906), + [anon_sym_DOLLARif] = ACTIONS(2906), + [anon_sym_match] = ACTIONS(2906), + [anon_sym_select] = ACTIONS(2906), + [anon_sym_lock] = ACTIONS(2906), + [anon_sym_rlock] = ACTIONS(2906), + [anon_sym_unsafe] = ACTIONS(2906), + [anon_sym_sql] = ACTIONS(2906), + [sym_int_literal] = ACTIONS(2906), + [sym_float_literal] = ACTIONS(2906), + [sym_rune_literal] = ACTIONS(2906), + [sym_pseudo_compile_time_identifier] = ACTIONS(2906), + [anon_sym_shared] = ACTIONS(2906), + [anon_sym_map_LBRACK] = ACTIONS(2906), + [anon_sym_chan] = ACTIONS(2906), + [anon_sym_thread] = ACTIONS(2906), + [anon_sym_atomic] = ACTIONS(2906), + [anon_sym_assert] = ACTIONS(2906), + [anon_sym_defer] = ACTIONS(2906), + [anon_sym_goto] = ACTIONS(2906), + [anon_sym_break] = ACTIONS(2906), + [anon_sym_continue] = ACTIONS(2906), + [anon_sym_return] = ACTIONS(2906), + [anon_sym_DOLLARfor] = ACTIONS(2906), + [anon_sym_for] = ACTIONS(2906), + [anon_sym_POUND] = ACTIONS(2906), + [anon_sym_asm] = ACTIONS(2906), + [anon_sym_AT_LBRACK] = ACTIONS(2906), + [sym___double_quote] = ACTIONS(2906), + [sym___single_quote] = ACTIONS(2906), + [sym___c_double_quote] = ACTIONS(2906), + [sym___c_single_quote] = ACTIONS(2906), + [sym___r_double_quote] = ACTIONS(2906), + [sym___r_single_quote] = ACTIONS(2906), }, [1453] = { [sym_line_comment] = STATE(1453), [sym_block_comment] = STATE(1453), - [ts_builtin_sym_end] = ACTIONS(2743), - [sym_identifier] = ACTIONS(2745), - [anon_sym_LF] = ACTIONS(2745), - [anon_sym_CR] = ACTIONS(2745), - [anon_sym_CR_LF] = ACTIONS(2745), + [ts_builtin_sym_end] = ACTIONS(2690), + [sym_identifier] = ACTIONS(2692), + [anon_sym_LF] = ACTIONS(2692), + [anon_sym_CR] = ACTIONS(2692), + [anon_sym_CR_LF] = ACTIONS(2692), [anon_sym_SLASH_SLASH] = ACTIONS(497), [anon_sym_SLASH_STAR] = ACTIONS(499), - [anon_sym_DOT] = ACTIONS(2745), - [anon_sym_LBRACE] = ACTIONS(2745), - [anon_sym_const] = ACTIONS(2745), - [anon_sym_LPAREN] = ACTIONS(2745), - [anon_sym___global] = ACTIONS(2745), - [anon_sym_type] = ACTIONS(2745), - [anon_sym_PIPE] = ACTIONS(2745), - [anon_sym_fn] = ACTIONS(2745), - [anon_sym_PLUS] = ACTIONS(2745), - [anon_sym_DASH] = ACTIONS(2745), - [anon_sym_STAR] = ACTIONS(2745), - [anon_sym_struct] = ACTIONS(2745), - [anon_sym_union] = ACTIONS(2745), - [anon_sym_pub] = ACTIONS(2745), - [anon_sym_mut] = ACTIONS(2745), - [anon_sym_enum] = ACTIONS(2745), - [anon_sym_interface] = ACTIONS(2745), - [anon_sym_QMARK] = ACTIONS(2745), - [anon_sym_BANG] = ACTIONS(2745), - [anon_sym_go] = ACTIONS(2745), - [anon_sym_spawn] = ACTIONS(2745), - [anon_sym_json_DOTdecode] = ACTIONS(2745), - [anon_sym_LBRACK2] = ACTIONS(2745), - [anon_sym_TILDE] = ACTIONS(2745), - [anon_sym_CARET] = ACTIONS(2745), - [anon_sym_AMP] = ACTIONS(2745), - [anon_sym_LT_DASH] = ACTIONS(2745), - [sym_none] = ACTIONS(2745), - [sym_true] = ACTIONS(2745), - [sym_false] = ACTIONS(2745), - [sym_nil] = ACTIONS(2745), - [anon_sym_if] = ACTIONS(2745), - [anon_sym_DOLLARif] = ACTIONS(2745), - [anon_sym_match] = ACTIONS(2745), - [anon_sym_select] = ACTIONS(2745), - [anon_sym_lock] = ACTIONS(2745), - [anon_sym_rlock] = ACTIONS(2745), - [anon_sym_unsafe] = ACTIONS(2745), - [anon_sym_sql] = ACTIONS(2745), - [sym_int_literal] = ACTIONS(2745), - [sym_float_literal] = ACTIONS(2745), - [sym_rune_literal] = ACTIONS(2745), - [sym_pseudo_compile_time_identifier] = ACTIONS(2745), - [anon_sym_shared] = ACTIONS(2745), - [anon_sym_map_LBRACK] = ACTIONS(2745), - [anon_sym_chan] = ACTIONS(2745), - [anon_sym_thread] = ACTIONS(2745), - [anon_sym_atomic] = ACTIONS(2745), - [anon_sym_assert] = ACTIONS(2745), - [anon_sym_defer] = ACTIONS(2745), - [anon_sym_goto] = ACTIONS(2745), - [anon_sym_break] = ACTIONS(2745), - [anon_sym_continue] = ACTIONS(2745), - [anon_sym_return] = ACTIONS(2745), - [anon_sym_DOLLARfor] = ACTIONS(2745), - [anon_sym_for] = ACTIONS(2745), - [anon_sym_POUND] = ACTIONS(2745), - [anon_sym_asm] = ACTIONS(2745), - [anon_sym_AT_LBRACK] = ACTIONS(2745), - [sym___double_quote] = ACTIONS(2745), - [sym___single_quote] = ACTIONS(2745), - [sym___c_double_quote] = ACTIONS(2745), - [sym___c_single_quote] = ACTIONS(2745), - [sym___r_double_quote] = ACTIONS(2745), - [sym___r_single_quote] = ACTIONS(2745), + [anon_sym_DOT] = ACTIONS(2692), + [anon_sym_LBRACE] = ACTIONS(2692), + [anon_sym_const] = ACTIONS(2692), + [anon_sym_LPAREN] = ACTIONS(2692), + [anon_sym___global] = ACTIONS(2692), + [anon_sym_type] = ACTIONS(2692), + [anon_sym_PIPE] = ACTIONS(2692), + [anon_sym_fn] = ACTIONS(2692), + [anon_sym_PLUS] = ACTIONS(2692), + [anon_sym_DASH] = ACTIONS(2692), + [anon_sym_STAR] = ACTIONS(2692), + [anon_sym_struct] = ACTIONS(2692), + [anon_sym_union] = ACTIONS(2692), + [anon_sym_pub] = ACTIONS(2692), + [anon_sym_mut] = ACTIONS(2692), + [anon_sym_enum] = ACTIONS(2692), + [anon_sym_interface] = ACTIONS(2692), + [anon_sym_QMARK] = ACTIONS(2692), + [anon_sym_BANG] = ACTIONS(2692), + [anon_sym_go] = ACTIONS(2692), + [anon_sym_spawn] = ACTIONS(2692), + [anon_sym_json_DOTdecode] = ACTIONS(2692), + [anon_sym_LBRACK2] = ACTIONS(2692), + [anon_sym_TILDE] = ACTIONS(2692), + [anon_sym_CARET] = ACTIONS(2692), + [anon_sym_AMP] = ACTIONS(2692), + [anon_sym_LT_DASH] = ACTIONS(2692), + [sym_none] = ACTIONS(2692), + [sym_true] = ACTIONS(2692), + [sym_false] = ACTIONS(2692), + [sym_nil] = ACTIONS(2692), + [anon_sym_if] = ACTIONS(2692), + [anon_sym_DOLLARif] = ACTIONS(2692), + [anon_sym_match] = ACTIONS(2692), + [anon_sym_select] = ACTIONS(2692), + [anon_sym_lock] = ACTIONS(2692), + [anon_sym_rlock] = ACTIONS(2692), + [anon_sym_unsafe] = ACTIONS(2692), + [anon_sym_sql] = ACTIONS(2692), + [sym_int_literal] = ACTIONS(2692), + [sym_float_literal] = ACTIONS(2692), + [sym_rune_literal] = ACTIONS(2692), + [sym_pseudo_compile_time_identifier] = ACTIONS(2692), + [anon_sym_shared] = ACTIONS(2692), + [anon_sym_map_LBRACK] = ACTIONS(2692), + [anon_sym_chan] = ACTIONS(2692), + [anon_sym_thread] = ACTIONS(2692), + [anon_sym_atomic] = ACTIONS(2692), + [anon_sym_assert] = ACTIONS(2692), + [anon_sym_defer] = ACTIONS(2692), + [anon_sym_goto] = ACTIONS(2692), + [anon_sym_break] = ACTIONS(2692), + [anon_sym_continue] = ACTIONS(2692), + [anon_sym_return] = ACTIONS(2692), + [anon_sym_DOLLARfor] = ACTIONS(2692), + [anon_sym_for] = ACTIONS(2692), + [anon_sym_POUND] = ACTIONS(2692), + [anon_sym_asm] = ACTIONS(2692), + [anon_sym_AT_LBRACK] = ACTIONS(2692), + [sym___double_quote] = ACTIONS(2692), + [sym___single_quote] = ACTIONS(2692), + [sym___c_double_quote] = ACTIONS(2692), + [sym___c_single_quote] = ACTIONS(2692), + [sym___r_double_quote] = ACTIONS(2692), + [sym___r_single_quote] = ACTIONS(2692), }, [1454] = { [sym_line_comment] = STATE(1454), [sym_block_comment] = STATE(1454), - [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_reference_expression] = STATE(4391), + [sym_type_reference_expression] = STATE(2446), + [sym_plain_type] = STATE(2516), + [sym__plain_type_without_special] = STATE(2471), + [sym_anon_struct_type] = STATE(2472), + [sym_multi_return_type] = STATE(2471), + [sym_result_type] = STATE(2471), + [sym_option_type] = STATE(2471), + [sym_qualified_type] = STATE(2446), + [sym_fixed_array_type] = STATE(2472), + [sym_array_type] = STATE(2472), + [sym_pointer_type] = STATE(2472), + [sym_wrong_pointer_type] = STATE(2472), + [sym_map_type] = STATE(2472), + [sym_channel_type] = STATE(2472), + [sym_shared_type] = STATE(2472), + [sym_thread_type] = STATE(2472), + [sym_atomic_type] = STATE(2472), + [sym_generic_type] = STATE(2472), + [sym_function_type] = STATE(2472), + [sym_identifier] = ACTIONS(4114), + [anon_sym_LF] = ACTIONS(589), + [anon_sym_CR] = ACTIONS(589), + [anon_sym_CR_LF] = ACTIONS(589), [anon_sym_SLASH_SLASH] = ACTIONS(497), [anon_sym_SLASH_STAR] = ACTIONS(499), - [anon_sym_DOT] = ACTIONS(2681), - [anon_sym_LBRACE] = 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_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_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), - [sym_none] = ACTIONS(2681), - [sym_true] = ACTIONS(2681), - [sym_false] = ACTIONS(2681), - [sym_nil] = ACTIONS(2681), - [anon_sym_if] = ACTIONS(2681), - [anon_sym_DOLLARif] = 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_SEMI] = ACTIONS(589), + [anon_sym_DOT] = ACTIONS(589), + [anon_sym_as] = ACTIONS(589), + [anon_sym_COMMA] = ACTIONS(589), + [anon_sym_RBRACE] = ACTIONS(589), + [anon_sym_LPAREN] = ACTIONS(4116), + [anon_sym_PIPE] = ACTIONS(589), + [anon_sym_fn] = ACTIONS(4118), + [anon_sym_PLUS] = ACTIONS(589), + [anon_sym_DASH] = ACTIONS(589), + [anon_sym_STAR] = ACTIONS(4120), + [anon_sym_SLASH] = ACTIONS(589), + [anon_sym_PERCENT] = ACTIONS(589), + [anon_sym_LT] = ACTIONS(589), + [anon_sym_GT] = ACTIONS(589), + [anon_sym_EQ_EQ] = ACTIONS(589), + [anon_sym_BANG_EQ] = ACTIONS(589), + [anon_sym_LT_EQ] = ACTIONS(589), + [anon_sym_GT_EQ] = ACTIONS(589), + [anon_sym_LBRACK] = ACTIONS(585), + [anon_sym_struct] = ACTIONS(4122), + [anon_sym_PLUS_PLUS] = ACTIONS(589), + [anon_sym_DASH_DASH] = ACTIONS(589), + [anon_sym_QMARK] = ACTIONS(4124), + [anon_sym_BANG] = ACTIONS(4126), + [anon_sym_LBRACK2] = ACTIONS(4128), + [anon_sym_CARET] = ACTIONS(589), + [anon_sym_AMP] = ACTIONS(4130), + [anon_sym_LT_LT] = ACTIONS(589), + [anon_sym_GT_GT] = ACTIONS(589), + [anon_sym_GT_GT_GT] = ACTIONS(589), + [anon_sym_AMP_CARET] = ACTIONS(589), + [anon_sym_AMP_AMP] = ACTIONS(589), + [anon_sym_PIPE_PIPE] = ACTIONS(589), + [anon_sym_or] = ACTIONS(589), + [anon_sym_QMARK_DOT] = ACTIONS(589), + [anon_sym_POUND_LBRACK] = ACTIONS(589), + [anon_sym_is] = ACTIONS(589), + [anon_sym_BANGis] = ACTIONS(589), + [anon_sym_in] = ACTIONS(589), + [anon_sym_BANGin] = ACTIONS(589), + [anon_sym_shared] = ACTIONS(4132), + [anon_sym_map_LBRACK] = ACTIONS(4134), + [anon_sym_chan] = ACTIONS(4136), + [anon_sym_thread] = ACTIONS(4138), + [anon_sym_atomic] = ACTIONS(4140), }, [1455] = { [sym_line_comment] = STATE(1455), [sym_block_comment] = STATE(1455), - [ts_builtin_sym_end] = ACTIONS(2665), - [sym_identifier] = ACTIONS(2667), - [anon_sym_LF] = ACTIONS(2667), - [anon_sym_CR] = ACTIONS(2667), - [anon_sym_CR_LF] = ACTIONS(2667), + [sym_reference_expression] = STATE(4391), + [sym_type_reference_expression] = STATE(2446), + [sym_plain_type] = STATE(2559), + [sym__plain_type_without_special] = STATE(2471), + [sym_anon_struct_type] = STATE(2472), + [sym_multi_return_type] = STATE(2471), + [sym_result_type] = STATE(2471), + [sym_option_type] = STATE(2471), + [sym_qualified_type] = STATE(2446), + [sym_fixed_array_type] = STATE(2472), + [sym_array_type] = STATE(2472), + [sym_pointer_type] = STATE(2472), + [sym_wrong_pointer_type] = STATE(2472), + [sym_map_type] = STATE(2472), + [sym_channel_type] = STATE(2472), + [sym_shared_type] = STATE(2472), + [sym_thread_type] = STATE(2472), + [sym_atomic_type] = STATE(2472), + [sym_generic_type] = STATE(2472), + [sym_function_type] = STATE(2472), + [sym_identifier] = ACTIONS(4114), + [anon_sym_LF] = ACTIONS(619), + [anon_sym_CR] = ACTIONS(619), + [anon_sym_CR_LF] = ACTIONS(619), [anon_sym_SLASH_SLASH] = ACTIONS(497), [anon_sym_SLASH_STAR] = ACTIONS(499), - [anon_sym_DOT] = ACTIONS(2667), - [anon_sym_LBRACE] = ACTIONS(2667), - [anon_sym_const] = ACTIONS(2667), - [anon_sym_LPAREN] = ACTIONS(2667), - [anon_sym___global] = ACTIONS(2667), - [anon_sym_type] = ACTIONS(2667), - [anon_sym_PIPE] = ACTIONS(2667), - [anon_sym_fn] = ACTIONS(2667), - [anon_sym_PLUS] = ACTIONS(2667), - [anon_sym_DASH] = ACTIONS(2667), - [anon_sym_STAR] = ACTIONS(2667), - [anon_sym_struct] = ACTIONS(2667), - [anon_sym_union] = ACTIONS(2667), - [anon_sym_pub] = ACTIONS(2667), - [anon_sym_mut] = ACTIONS(2667), - [anon_sym_enum] = ACTIONS(2667), - [anon_sym_interface] = ACTIONS(2667), - [anon_sym_QMARK] = ACTIONS(2667), - [anon_sym_BANG] = ACTIONS(2667), - [anon_sym_go] = ACTIONS(2667), - [anon_sym_spawn] = ACTIONS(2667), - [anon_sym_json_DOTdecode] = ACTIONS(2667), - [anon_sym_LBRACK2] = ACTIONS(2667), - [anon_sym_TILDE] = ACTIONS(2667), - [anon_sym_CARET] = ACTIONS(2667), - [anon_sym_AMP] = ACTIONS(2667), - [anon_sym_LT_DASH] = ACTIONS(2667), - [sym_none] = ACTIONS(2667), - [sym_true] = ACTIONS(2667), - [sym_false] = ACTIONS(2667), - [sym_nil] = ACTIONS(2667), - [anon_sym_if] = ACTIONS(2667), - [anon_sym_DOLLARif] = ACTIONS(2667), - [anon_sym_match] = ACTIONS(2667), - [anon_sym_select] = ACTIONS(2667), - [anon_sym_lock] = ACTIONS(2667), - [anon_sym_rlock] = ACTIONS(2667), - [anon_sym_unsafe] = ACTIONS(2667), - [anon_sym_sql] = ACTIONS(2667), - [sym_int_literal] = ACTIONS(2667), - [sym_float_literal] = ACTIONS(2667), - [sym_rune_literal] = ACTIONS(2667), - [sym_pseudo_compile_time_identifier] = ACTIONS(2667), - [anon_sym_shared] = ACTIONS(2667), - [anon_sym_map_LBRACK] = ACTIONS(2667), - [anon_sym_chan] = ACTIONS(2667), - [anon_sym_thread] = ACTIONS(2667), - [anon_sym_atomic] = ACTIONS(2667), - [anon_sym_assert] = ACTIONS(2667), - [anon_sym_defer] = ACTIONS(2667), - [anon_sym_goto] = ACTIONS(2667), - [anon_sym_break] = ACTIONS(2667), - [anon_sym_continue] = ACTIONS(2667), - [anon_sym_return] = ACTIONS(2667), - [anon_sym_DOLLARfor] = ACTIONS(2667), - [anon_sym_for] = ACTIONS(2667), - [anon_sym_POUND] = ACTIONS(2667), - [anon_sym_asm] = ACTIONS(2667), - [anon_sym_AT_LBRACK] = ACTIONS(2667), - [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_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(4116), + [anon_sym_PIPE] = ACTIONS(619), + [anon_sym_fn] = ACTIONS(4118), + [anon_sym_PLUS] = ACTIONS(619), + [anon_sym_DASH] = ACTIONS(619), + [anon_sym_STAR] = ACTIONS(4120), + [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(4122), + [anon_sym_PLUS_PLUS] = ACTIONS(619), + [anon_sym_DASH_DASH] = ACTIONS(619), + [anon_sym_QMARK] = ACTIONS(4124), + [anon_sym_BANG] = ACTIONS(4126), + [anon_sym_LBRACK2] = ACTIONS(4128), + [anon_sym_CARET] = ACTIONS(619), + [anon_sym_AMP] = ACTIONS(4130), + [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(4132), + [anon_sym_map_LBRACK] = ACTIONS(4134), + [anon_sym_chan] = ACTIONS(4136), + [anon_sym_thread] = ACTIONS(4138), + [anon_sym_atomic] = ACTIONS(4140), }, [1456] = { [sym_line_comment] = STATE(1456), [sym_block_comment] = STATE(1456), - [ts_builtin_sym_end] = ACTIONS(2653), - [sym_identifier] = ACTIONS(2655), - [anon_sym_LF] = ACTIONS(2655), - [anon_sym_CR] = ACTIONS(2655), - [anon_sym_CR_LF] = ACTIONS(2655), + [sym_label_reference] = STATE(1526), + [ts_builtin_sym_end] = ACTIONS(4142), + [sym_identifier] = ACTIONS(4144), + [anon_sym_LF] = ACTIONS(4146), + [anon_sym_CR] = ACTIONS(4146), + [anon_sym_CR_LF] = ACTIONS(4146), [anon_sym_SLASH_SLASH] = ACTIONS(497), [anon_sym_SLASH_STAR] = ACTIONS(499), - [anon_sym_DOT] = ACTIONS(2655), - [anon_sym_LBRACE] = ACTIONS(2655), - [anon_sym_const] = ACTIONS(2655), - [anon_sym_LPAREN] = ACTIONS(2655), - [anon_sym___global] = ACTIONS(2655), - [anon_sym_type] = ACTIONS(2655), - [anon_sym_PIPE] = ACTIONS(2655), - [anon_sym_fn] = ACTIONS(2655), - [anon_sym_PLUS] = ACTIONS(2655), - [anon_sym_DASH] = ACTIONS(2655), - [anon_sym_STAR] = ACTIONS(2655), - [anon_sym_struct] = ACTIONS(2655), - [anon_sym_union] = ACTIONS(2655), - [anon_sym_pub] = ACTIONS(2655), - [anon_sym_mut] = ACTIONS(2655), - [anon_sym_enum] = ACTIONS(2655), - [anon_sym_interface] = ACTIONS(2655), - [anon_sym_QMARK] = ACTIONS(2655), - [anon_sym_BANG] = ACTIONS(2655), - [anon_sym_go] = ACTIONS(2655), - [anon_sym_spawn] = ACTIONS(2655), - [anon_sym_json_DOTdecode] = ACTIONS(2655), - [anon_sym_LBRACK2] = ACTIONS(2655), - [anon_sym_TILDE] = ACTIONS(2655), - [anon_sym_CARET] = ACTIONS(2655), - [anon_sym_AMP] = ACTIONS(2655), - [anon_sym_LT_DASH] = ACTIONS(2655), - [sym_none] = ACTIONS(2655), - [sym_true] = ACTIONS(2655), - [sym_false] = ACTIONS(2655), - [sym_nil] = ACTIONS(2655), - [anon_sym_if] = ACTIONS(2655), - [anon_sym_DOLLARif] = ACTIONS(2655), - [anon_sym_match] = ACTIONS(2655), - [anon_sym_select] = ACTIONS(2655), - [anon_sym_lock] = ACTIONS(2655), - [anon_sym_rlock] = ACTIONS(2655), - [anon_sym_unsafe] = ACTIONS(2655), - [anon_sym_sql] = ACTIONS(2655), - [sym_int_literal] = ACTIONS(2655), - [sym_float_literal] = ACTIONS(2655), - [sym_rune_literal] = ACTIONS(2655), - [sym_pseudo_compile_time_identifier] = ACTIONS(2655), - [anon_sym_shared] = ACTIONS(2655), - [anon_sym_map_LBRACK] = ACTIONS(2655), - [anon_sym_chan] = ACTIONS(2655), - [anon_sym_thread] = ACTIONS(2655), - [anon_sym_atomic] = ACTIONS(2655), - [anon_sym_assert] = ACTIONS(2655), - [anon_sym_defer] = ACTIONS(2655), - [anon_sym_goto] = ACTIONS(2655), - [anon_sym_break] = ACTIONS(2655), - [anon_sym_continue] = ACTIONS(2655), - [anon_sym_return] = ACTIONS(2655), - [anon_sym_DOLLARfor] = ACTIONS(2655), - [anon_sym_for] = ACTIONS(2655), - [anon_sym_POUND] = ACTIONS(2655), - [anon_sym_asm] = ACTIONS(2655), - [anon_sym_AT_LBRACK] = ACTIONS(2655), - [sym___double_quote] = ACTIONS(2655), - [sym___single_quote] = ACTIONS(2655), - [sym___c_double_quote] = ACTIONS(2655), - [sym___c_single_quote] = ACTIONS(2655), - [sym___r_double_quote] = ACTIONS(2655), - [sym___r_single_quote] = ACTIONS(2655), + [anon_sym_DOT] = ACTIONS(4146), + [anon_sym_LBRACE] = ACTIONS(4146), + [anon_sym_const] = ACTIONS(4146), + [anon_sym_LPAREN] = ACTIONS(4146), + [anon_sym___global] = ACTIONS(4146), + [anon_sym_type] = ACTIONS(4146), + [anon_sym_fn] = ACTIONS(4146), + [anon_sym_PLUS] = ACTIONS(4146), + [anon_sym_DASH] = ACTIONS(4146), + [anon_sym_STAR] = ACTIONS(4146), + [anon_sym_struct] = ACTIONS(4146), + [anon_sym_union] = ACTIONS(4146), + [anon_sym_pub] = ACTIONS(4146), + [anon_sym_mut] = ACTIONS(4146), + [anon_sym_enum] = ACTIONS(4146), + [anon_sym_interface] = ACTIONS(4146), + [anon_sym_QMARK] = ACTIONS(4146), + [anon_sym_BANG] = ACTIONS(4146), + [anon_sym_go] = ACTIONS(4146), + [anon_sym_spawn] = ACTIONS(4146), + [anon_sym_json_DOTdecode] = ACTIONS(4146), + [anon_sym_LBRACK2] = ACTIONS(4146), + [anon_sym_TILDE] = ACTIONS(4146), + [anon_sym_CARET] = ACTIONS(4146), + [anon_sym_AMP] = ACTIONS(4146), + [anon_sym_LT_DASH] = ACTIONS(4146), + [sym_none] = ACTIONS(4146), + [sym_true] = ACTIONS(4146), + [sym_false] = ACTIONS(4146), + [sym_nil] = ACTIONS(4146), + [anon_sym_if] = ACTIONS(4146), + [anon_sym_DOLLARif] = ACTIONS(4146), + [anon_sym_match] = ACTIONS(4146), + [anon_sym_select] = ACTIONS(4146), + [anon_sym_lock] = ACTIONS(4146), + [anon_sym_rlock] = ACTIONS(4146), + [anon_sym_unsafe] = ACTIONS(4146), + [anon_sym_sql] = ACTIONS(4146), + [sym_int_literal] = ACTIONS(4146), + [sym_float_literal] = ACTIONS(4146), + [sym_rune_literal] = ACTIONS(4146), + [sym_pseudo_compile_time_identifier] = ACTIONS(4146), + [anon_sym_shared] = ACTIONS(4146), + [anon_sym_map_LBRACK] = ACTIONS(4146), + [anon_sym_chan] = ACTIONS(4146), + [anon_sym_thread] = ACTIONS(4146), + [anon_sym_atomic] = ACTIONS(4146), + [anon_sym_assert] = ACTIONS(4146), + [anon_sym_defer] = ACTIONS(4146), + [anon_sym_goto] = ACTIONS(4146), + [anon_sym_break] = ACTIONS(4146), + [anon_sym_continue] = ACTIONS(4146), + [anon_sym_return] = ACTIONS(4146), + [anon_sym_DOLLARfor] = ACTIONS(4146), + [anon_sym_for] = ACTIONS(4146), + [anon_sym_POUND] = ACTIONS(4146), + [anon_sym_asm] = ACTIONS(4146), + [anon_sym_AT_LBRACK] = ACTIONS(4146), + [sym___double_quote] = ACTIONS(4146), + [sym___single_quote] = ACTIONS(4146), + [sym___c_double_quote] = ACTIONS(4146), + [sym___c_single_quote] = ACTIONS(4146), + [sym___r_double_quote] = ACTIONS(4146), + [sym___r_single_quote] = ACTIONS(4146), }, [1457] = { [sym_line_comment] = STATE(1457), [sym_block_comment] = STATE(1457), - [ts_builtin_sym_end] = ACTIONS(2645), - [sym_identifier] = ACTIONS(2647), - [anon_sym_LF] = ACTIONS(2647), - [anon_sym_CR] = ACTIONS(2647), - [anon_sym_CR_LF] = ACTIONS(2647), + [sym_label_reference] = STATE(1525), + [ts_builtin_sym_end] = ACTIONS(4148), + [sym_identifier] = ACTIONS(4144), + [anon_sym_LF] = ACTIONS(4150), + [anon_sym_CR] = ACTIONS(4150), + [anon_sym_CR_LF] = ACTIONS(4150), [anon_sym_SLASH_SLASH] = ACTIONS(497), [anon_sym_SLASH_STAR] = ACTIONS(499), - [anon_sym_DOT] = ACTIONS(2647), - [anon_sym_LBRACE] = ACTIONS(2647), - [anon_sym_const] = ACTIONS(2647), - [anon_sym_LPAREN] = ACTIONS(2647), - [anon_sym___global] = ACTIONS(2647), - [anon_sym_type] = ACTIONS(2647), - [anon_sym_PIPE] = ACTIONS(2647), - [anon_sym_fn] = ACTIONS(2647), - [anon_sym_PLUS] = ACTIONS(2647), - [anon_sym_DASH] = ACTIONS(2647), - [anon_sym_STAR] = ACTIONS(2647), - [anon_sym_struct] = ACTIONS(2647), - [anon_sym_union] = ACTIONS(2647), - [anon_sym_pub] = ACTIONS(2647), - [anon_sym_mut] = ACTIONS(2647), - [anon_sym_enum] = ACTIONS(2647), - [anon_sym_interface] = ACTIONS(2647), - [anon_sym_QMARK] = ACTIONS(2647), - [anon_sym_BANG] = ACTIONS(2647), - [anon_sym_go] = ACTIONS(2647), - [anon_sym_spawn] = ACTIONS(2647), - [anon_sym_json_DOTdecode] = ACTIONS(2647), - [anon_sym_LBRACK2] = ACTIONS(2647), - [anon_sym_TILDE] = ACTIONS(2647), - [anon_sym_CARET] = ACTIONS(2647), - [anon_sym_AMP] = ACTIONS(2647), - [anon_sym_LT_DASH] = ACTIONS(2647), - [sym_none] = ACTIONS(2647), - [sym_true] = ACTIONS(2647), - [sym_false] = ACTIONS(2647), - [sym_nil] = ACTIONS(2647), - [anon_sym_if] = ACTIONS(2647), - [anon_sym_DOLLARif] = ACTIONS(2647), - [anon_sym_match] = ACTIONS(2647), - [anon_sym_select] = ACTIONS(2647), - [anon_sym_lock] = ACTIONS(2647), - [anon_sym_rlock] = ACTIONS(2647), - [anon_sym_unsafe] = ACTIONS(2647), - [anon_sym_sql] = ACTIONS(2647), - [sym_int_literal] = ACTIONS(2647), - [sym_float_literal] = ACTIONS(2647), - [sym_rune_literal] = ACTIONS(2647), - [sym_pseudo_compile_time_identifier] = ACTIONS(2647), - [anon_sym_shared] = ACTIONS(2647), - [anon_sym_map_LBRACK] = ACTIONS(2647), - [anon_sym_chan] = ACTIONS(2647), - [anon_sym_thread] = ACTIONS(2647), - [anon_sym_atomic] = ACTIONS(2647), - [anon_sym_assert] = ACTIONS(2647), - [anon_sym_defer] = ACTIONS(2647), - [anon_sym_goto] = ACTIONS(2647), - [anon_sym_break] = ACTIONS(2647), - [anon_sym_continue] = ACTIONS(2647), - [anon_sym_return] = ACTIONS(2647), - [anon_sym_DOLLARfor] = ACTIONS(2647), - [anon_sym_for] = ACTIONS(2647), - [anon_sym_POUND] = ACTIONS(2647), - [anon_sym_asm] = ACTIONS(2647), - [anon_sym_AT_LBRACK] = ACTIONS(2647), - [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), + [anon_sym_DOT] = ACTIONS(4150), + [anon_sym_LBRACE] = ACTIONS(4150), + [anon_sym_const] = ACTIONS(4150), + [anon_sym_LPAREN] = ACTIONS(4150), + [anon_sym___global] = ACTIONS(4150), + [anon_sym_type] = ACTIONS(4150), + [anon_sym_fn] = ACTIONS(4150), + [anon_sym_PLUS] = ACTIONS(4150), + [anon_sym_DASH] = ACTIONS(4150), + [anon_sym_STAR] = ACTIONS(4150), + [anon_sym_struct] = ACTIONS(4150), + [anon_sym_union] = ACTIONS(4150), + [anon_sym_pub] = ACTIONS(4150), + [anon_sym_mut] = ACTIONS(4150), + [anon_sym_enum] = ACTIONS(4150), + [anon_sym_interface] = ACTIONS(4150), + [anon_sym_QMARK] = ACTIONS(4150), + [anon_sym_BANG] = ACTIONS(4150), + [anon_sym_go] = ACTIONS(4150), + [anon_sym_spawn] = ACTIONS(4150), + [anon_sym_json_DOTdecode] = ACTIONS(4150), + [anon_sym_LBRACK2] = ACTIONS(4150), + [anon_sym_TILDE] = ACTIONS(4150), + [anon_sym_CARET] = ACTIONS(4150), + [anon_sym_AMP] = ACTIONS(4150), + [anon_sym_LT_DASH] = ACTIONS(4150), + [sym_none] = ACTIONS(4150), + [sym_true] = ACTIONS(4150), + [sym_false] = ACTIONS(4150), + [sym_nil] = ACTIONS(4150), + [anon_sym_if] = ACTIONS(4150), + [anon_sym_DOLLARif] = ACTIONS(4150), + [anon_sym_match] = ACTIONS(4150), + [anon_sym_select] = ACTIONS(4150), + [anon_sym_lock] = ACTIONS(4150), + [anon_sym_rlock] = ACTIONS(4150), + [anon_sym_unsafe] = ACTIONS(4150), + [anon_sym_sql] = ACTIONS(4150), + [sym_int_literal] = ACTIONS(4150), + [sym_float_literal] = ACTIONS(4150), + [sym_rune_literal] = ACTIONS(4150), + [sym_pseudo_compile_time_identifier] = ACTIONS(4150), + [anon_sym_shared] = ACTIONS(4150), + [anon_sym_map_LBRACK] = ACTIONS(4150), + [anon_sym_chan] = ACTIONS(4150), + [anon_sym_thread] = ACTIONS(4150), + [anon_sym_atomic] = ACTIONS(4150), + [anon_sym_assert] = ACTIONS(4150), + [anon_sym_defer] = ACTIONS(4150), + [anon_sym_goto] = ACTIONS(4150), + [anon_sym_break] = ACTIONS(4150), + [anon_sym_continue] = ACTIONS(4150), + [anon_sym_return] = ACTIONS(4150), + [anon_sym_DOLLARfor] = ACTIONS(4150), + [anon_sym_for] = ACTIONS(4150), + [anon_sym_POUND] = ACTIONS(4150), + [anon_sym_asm] = ACTIONS(4150), + [anon_sym_AT_LBRACK] = ACTIONS(4150), + [sym___double_quote] = ACTIONS(4150), + [sym___single_quote] = ACTIONS(4150), + [sym___c_double_quote] = ACTIONS(4150), + [sym___c_single_quote] = ACTIONS(4150), + [sym___r_double_quote] = ACTIONS(4150), + [sym___r_single_quote] = ACTIONS(4150), }, [1458] = { [sym_line_comment] = STATE(1458), [sym_block_comment] = STATE(1458), - [sym_block] = STATE(1547), - [ts_builtin_sym_end] = ACTIONS(4114), - [sym_identifier] = ACTIONS(4116), - [anon_sym_LF] = ACTIONS(4116), - [anon_sym_CR] = ACTIONS(4116), - [anon_sym_CR_LF] = ACTIONS(4116), + [ts_builtin_sym_end] = ACTIONS(2900), + [sym_identifier] = ACTIONS(2902), + [anon_sym_LF] = ACTIONS(2902), + [anon_sym_CR] = ACTIONS(2902), + [anon_sym_CR_LF] = ACTIONS(2902), [anon_sym_SLASH_SLASH] = ACTIONS(497), [anon_sym_SLASH_STAR] = ACTIONS(499), - [anon_sym_DOT] = ACTIONS(4116), - [anon_sym_LBRACE] = ACTIONS(4012), - [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), + [anon_sym_DOT] = ACTIONS(2902), + [anon_sym_LBRACE] = ACTIONS(2902), + [anon_sym_const] = ACTIONS(2902), + [anon_sym_LPAREN] = ACTIONS(2902), + [anon_sym___global] = ACTIONS(2902), + [anon_sym_type] = ACTIONS(2902), + [anon_sym_PIPE] = ACTIONS(2902), + [anon_sym_fn] = ACTIONS(2902), + [anon_sym_PLUS] = ACTIONS(2902), + [anon_sym_DASH] = ACTIONS(2902), + [anon_sym_STAR] = ACTIONS(2902), + [anon_sym_struct] = ACTIONS(2902), + [anon_sym_union] = ACTIONS(2902), + [anon_sym_pub] = ACTIONS(2902), + [anon_sym_mut] = ACTIONS(2902), + [anon_sym_enum] = ACTIONS(2902), + [anon_sym_interface] = ACTIONS(2902), + [anon_sym_QMARK] = ACTIONS(2902), + [anon_sym_BANG] = ACTIONS(2902), + [anon_sym_go] = ACTIONS(2902), + [anon_sym_spawn] = ACTIONS(2902), + [anon_sym_json_DOTdecode] = ACTIONS(2902), + [anon_sym_LBRACK2] = ACTIONS(2902), + [anon_sym_TILDE] = ACTIONS(2902), + [anon_sym_CARET] = ACTIONS(2902), + [anon_sym_AMP] = ACTIONS(2902), + [anon_sym_LT_DASH] = ACTIONS(2902), + [sym_none] = ACTIONS(2902), + [sym_true] = ACTIONS(2902), + [sym_false] = ACTIONS(2902), + [sym_nil] = ACTIONS(2902), + [anon_sym_if] = ACTIONS(2902), + [anon_sym_DOLLARif] = ACTIONS(2902), + [anon_sym_match] = ACTIONS(2902), + [anon_sym_select] = ACTIONS(2902), + [anon_sym_lock] = ACTIONS(2902), + [anon_sym_rlock] = ACTIONS(2902), + [anon_sym_unsafe] = ACTIONS(2902), + [anon_sym_sql] = ACTIONS(2902), + [sym_int_literal] = ACTIONS(2902), + [sym_float_literal] = ACTIONS(2902), + [sym_rune_literal] = ACTIONS(2902), + [sym_pseudo_compile_time_identifier] = ACTIONS(2902), + [anon_sym_shared] = ACTIONS(2902), + [anon_sym_map_LBRACK] = ACTIONS(2902), + [anon_sym_chan] = ACTIONS(2902), + [anon_sym_thread] = ACTIONS(2902), + [anon_sym_atomic] = ACTIONS(2902), + [anon_sym_assert] = ACTIONS(2902), + [anon_sym_defer] = ACTIONS(2902), + [anon_sym_goto] = ACTIONS(2902), + [anon_sym_break] = ACTIONS(2902), + [anon_sym_continue] = ACTIONS(2902), + [anon_sym_return] = ACTIONS(2902), + [anon_sym_DOLLARfor] = ACTIONS(2902), + [anon_sym_for] = ACTIONS(2902), + [anon_sym_POUND] = ACTIONS(2902), + [anon_sym_asm] = ACTIONS(2902), + [anon_sym_AT_LBRACK] = ACTIONS(2902), + [sym___double_quote] = ACTIONS(2902), + [sym___single_quote] = ACTIONS(2902), + [sym___c_double_quote] = ACTIONS(2902), + [sym___c_single_quote] = ACTIONS(2902), + [sym___r_double_quote] = ACTIONS(2902), + [sym___r_single_quote] = ACTIONS(2902), }, [1459] = { [sym_line_comment] = STATE(1459), [sym_block_comment] = STATE(1459), - [ts_builtin_sym_end] = ACTIONS(2796), - [sym_identifier] = ACTIONS(2798), - [anon_sym_LF] = ACTIONS(2798), - [anon_sym_CR] = ACTIONS(2798), - [anon_sym_CR_LF] = ACTIONS(2798), + [sym_reference_expression] = STATE(4391), + [sym_type_reference_expression] = STATE(2446), + [sym_plain_type] = STATE(2552), + [sym__plain_type_without_special] = STATE(2471), + [sym_anon_struct_type] = STATE(2472), + [sym_multi_return_type] = STATE(2471), + [sym_result_type] = STATE(2471), + [sym_option_type] = STATE(2471), + [sym_qualified_type] = STATE(2446), + [sym_fixed_array_type] = STATE(2472), + [sym_array_type] = STATE(2472), + [sym_pointer_type] = STATE(2472), + [sym_wrong_pointer_type] = STATE(2472), + [sym_map_type] = STATE(2472), + [sym_channel_type] = STATE(2472), + [sym_shared_type] = STATE(2472), + [sym_thread_type] = STATE(2472), + [sym_atomic_type] = STATE(2472), + [sym_generic_type] = STATE(2472), + [sym_function_type] = STATE(2472), + [sym_identifier] = ACTIONS(4114), + [anon_sym_LF] = ACTIONS(623), + [anon_sym_CR] = ACTIONS(623), + [anon_sym_CR_LF] = ACTIONS(623), [anon_sym_SLASH_SLASH] = ACTIONS(497), [anon_sym_SLASH_STAR] = ACTIONS(499), - [anon_sym_DOT] = ACTIONS(2798), - [anon_sym_LBRACE] = ACTIONS(2798), - [anon_sym_const] = ACTIONS(2798), - [anon_sym_LPAREN] = ACTIONS(2798), - [anon_sym___global] = ACTIONS(2798), - [anon_sym_type] = ACTIONS(2798), - [anon_sym_PIPE] = ACTIONS(2798), - [anon_sym_fn] = ACTIONS(2798), - [anon_sym_PLUS] = ACTIONS(2798), - [anon_sym_DASH] = ACTIONS(2798), - [anon_sym_STAR] = ACTIONS(2798), - [anon_sym_struct] = ACTIONS(2798), - [anon_sym_union] = ACTIONS(2798), - [anon_sym_pub] = ACTIONS(2798), - [anon_sym_mut] = ACTIONS(2798), - [anon_sym_enum] = ACTIONS(2798), - [anon_sym_interface] = ACTIONS(2798), - [anon_sym_QMARK] = ACTIONS(2798), - [anon_sym_BANG] = ACTIONS(2798), - [anon_sym_go] = ACTIONS(2798), - [anon_sym_spawn] = ACTIONS(2798), - [anon_sym_json_DOTdecode] = ACTIONS(2798), - [anon_sym_LBRACK2] = ACTIONS(2798), - [anon_sym_TILDE] = ACTIONS(2798), - [anon_sym_CARET] = ACTIONS(2798), - [anon_sym_AMP] = ACTIONS(2798), - [anon_sym_LT_DASH] = ACTIONS(2798), - [sym_none] = ACTIONS(2798), - [sym_true] = ACTIONS(2798), - [sym_false] = ACTIONS(2798), - [sym_nil] = ACTIONS(2798), - [anon_sym_if] = ACTIONS(2798), - [anon_sym_DOLLARif] = ACTIONS(2798), - [anon_sym_match] = ACTIONS(2798), - [anon_sym_select] = ACTIONS(2798), - [anon_sym_lock] = ACTIONS(2798), - [anon_sym_rlock] = ACTIONS(2798), - [anon_sym_unsafe] = ACTIONS(2798), - [anon_sym_sql] = ACTIONS(2798), - [sym_int_literal] = ACTIONS(2798), - [sym_float_literal] = ACTIONS(2798), - [sym_rune_literal] = ACTIONS(2798), - [sym_pseudo_compile_time_identifier] = ACTIONS(2798), - [anon_sym_shared] = ACTIONS(2798), - [anon_sym_map_LBRACK] = ACTIONS(2798), - [anon_sym_chan] = ACTIONS(2798), - [anon_sym_thread] = ACTIONS(2798), - [anon_sym_atomic] = ACTIONS(2798), - [anon_sym_assert] = ACTIONS(2798), - [anon_sym_defer] = ACTIONS(2798), - [anon_sym_goto] = ACTIONS(2798), - [anon_sym_break] = ACTIONS(2798), - [anon_sym_continue] = ACTIONS(2798), - [anon_sym_return] = ACTIONS(2798), - [anon_sym_DOLLARfor] = ACTIONS(2798), - [anon_sym_for] = ACTIONS(2798), - [anon_sym_POUND] = ACTIONS(2798), - [anon_sym_asm] = ACTIONS(2798), - [anon_sym_AT_LBRACK] = ACTIONS(2798), - [sym___double_quote] = ACTIONS(2798), - [sym___single_quote] = ACTIONS(2798), - [sym___c_double_quote] = ACTIONS(2798), - [sym___c_single_quote] = ACTIONS(2798), - [sym___r_double_quote] = ACTIONS(2798), - [sym___r_single_quote] = ACTIONS(2798), + [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(4116), + [anon_sym_PIPE] = ACTIONS(623), + [anon_sym_fn] = ACTIONS(4118), + [anon_sym_PLUS] = ACTIONS(623), + [anon_sym_DASH] = ACTIONS(623), + [anon_sym_STAR] = ACTIONS(4120), + [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(4122), + [anon_sym_PLUS_PLUS] = ACTIONS(623), + [anon_sym_DASH_DASH] = ACTIONS(623), + [anon_sym_QMARK] = ACTIONS(4124), + [anon_sym_BANG] = ACTIONS(4126), + [anon_sym_LBRACK2] = ACTIONS(4128), + [anon_sym_CARET] = ACTIONS(623), + [anon_sym_AMP] = ACTIONS(4130), + [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(4132), + [anon_sym_map_LBRACK] = ACTIONS(4134), + [anon_sym_chan] = ACTIONS(4136), + [anon_sym_thread] = ACTIONS(4138), + [anon_sym_atomic] = ACTIONS(4140), }, [1460] = { [sym_line_comment] = STATE(1460), [sym_block_comment] = STATE(1460), - [sym_block] = STATE(1548), - [ts_builtin_sym_end] = ACTIONS(4118), - [sym_identifier] = ACTIONS(4120), - [anon_sym_LF] = ACTIONS(4120), - [anon_sym_CR] = ACTIONS(4120), - [anon_sym_CR_LF] = ACTIONS(4120), + [ts_builtin_sym_end] = ACTIONS(2838), + [sym_identifier] = ACTIONS(2840), + [anon_sym_LF] = ACTIONS(2840), + [anon_sym_CR] = ACTIONS(2840), + [anon_sym_CR_LF] = ACTIONS(2840), [anon_sym_SLASH_SLASH] = ACTIONS(497), [anon_sym_SLASH_STAR] = ACTIONS(499), - [anon_sym_DOT] = ACTIONS(4120), - [anon_sym_LBRACE] = ACTIONS(4012), - [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), + [anon_sym_DOT] = ACTIONS(2840), + [anon_sym_LBRACE] = ACTIONS(2840), + [anon_sym_const] = ACTIONS(2840), + [anon_sym_LPAREN] = ACTIONS(2840), + [anon_sym___global] = ACTIONS(2840), + [anon_sym_type] = ACTIONS(2840), + [anon_sym_PIPE] = ACTIONS(2840), + [anon_sym_fn] = ACTIONS(2840), + [anon_sym_PLUS] = ACTIONS(2840), + [anon_sym_DASH] = ACTIONS(2840), + [anon_sym_STAR] = ACTIONS(2840), + [anon_sym_struct] = ACTIONS(2840), + [anon_sym_union] = ACTIONS(2840), + [anon_sym_pub] = ACTIONS(2840), + [anon_sym_mut] = ACTIONS(2840), + [anon_sym_enum] = ACTIONS(2840), + [anon_sym_interface] = ACTIONS(2840), + [anon_sym_QMARK] = ACTIONS(2840), + [anon_sym_BANG] = ACTIONS(2840), + [anon_sym_go] = ACTIONS(2840), + [anon_sym_spawn] = ACTIONS(2840), + [anon_sym_json_DOTdecode] = ACTIONS(2840), + [anon_sym_LBRACK2] = ACTIONS(2840), + [anon_sym_TILDE] = ACTIONS(2840), + [anon_sym_CARET] = ACTIONS(2840), + [anon_sym_AMP] = ACTIONS(2840), + [anon_sym_LT_DASH] = ACTIONS(2840), + [sym_none] = ACTIONS(2840), + [sym_true] = ACTIONS(2840), + [sym_false] = ACTIONS(2840), + [sym_nil] = ACTIONS(2840), + [anon_sym_if] = ACTIONS(2840), + [anon_sym_DOLLARif] = ACTIONS(2840), + [anon_sym_match] = ACTIONS(2840), + [anon_sym_select] = ACTIONS(2840), + [anon_sym_lock] = ACTIONS(2840), + [anon_sym_rlock] = ACTIONS(2840), + [anon_sym_unsafe] = ACTIONS(2840), + [anon_sym_sql] = ACTIONS(2840), + [sym_int_literal] = ACTIONS(2840), + [sym_float_literal] = ACTIONS(2840), + [sym_rune_literal] = ACTIONS(2840), + [sym_pseudo_compile_time_identifier] = ACTIONS(2840), + [anon_sym_shared] = ACTIONS(2840), + [anon_sym_map_LBRACK] = ACTIONS(2840), + [anon_sym_chan] = ACTIONS(2840), + [anon_sym_thread] = ACTIONS(2840), + [anon_sym_atomic] = ACTIONS(2840), + [anon_sym_assert] = ACTIONS(2840), + [anon_sym_defer] = ACTIONS(2840), + [anon_sym_goto] = ACTIONS(2840), + [anon_sym_break] = ACTIONS(2840), + [anon_sym_continue] = ACTIONS(2840), + [anon_sym_return] = ACTIONS(2840), + [anon_sym_DOLLARfor] = ACTIONS(2840), + [anon_sym_for] = ACTIONS(2840), + [anon_sym_POUND] = ACTIONS(2840), + [anon_sym_asm] = ACTIONS(2840), + [anon_sym_AT_LBRACK] = ACTIONS(2840), + [sym___double_quote] = ACTIONS(2840), + [sym___single_quote] = ACTIONS(2840), + [sym___c_double_quote] = ACTIONS(2840), + [sym___c_single_quote] = ACTIONS(2840), + [sym___r_double_quote] = ACTIONS(2840), + [sym___r_single_quote] = ACTIONS(2840), }, [1461] = { [sym_line_comment] = STATE(1461), [sym_block_comment] = STATE(1461), - [sym_block] = STATE(1557), - [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), + [ts_builtin_sym_end] = ACTIONS(2686), + [sym_identifier] = ACTIONS(2688), + [anon_sym_LF] = ACTIONS(2688), + [anon_sym_CR] = ACTIONS(2688), + [anon_sym_CR_LF] = ACTIONS(2688), [anon_sym_SLASH_SLASH] = ACTIONS(497), [anon_sym_SLASH_STAR] = ACTIONS(499), - [anon_sym_DOT] = ACTIONS(4124), - [anon_sym_LBRACE] = ACTIONS(4012), - [anon_sym_const] = ACTIONS(4124), - [anon_sym_LPAREN] = ACTIONS(4124), - [anon_sym___global] = ACTIONS(4124), - [anon_sym_type] = ACTIONS(4124), - [anon_sym_fn] = ACTIONS(4124), - [anon_sym_PLUS] = ACTIONS(4124), - [anon_sym_DASH] = ACTIONS(4124), - [anon_sym_STAR] = ACTIONS(4124), - [anon_sym_struct] = ACTIONS(4124), - [anon_sym_union] = ACTIONS(4124), - [anon_sym_pub] = ACTIONS(4124), - [anon_sym_mut] = ACTIONS(4124), - [anon_sym_enum] = ACTIONS(4124), - [anon_sym_interface] = ACTIONS(4124), - [anon_sym_QMARK] = ACTIONS(4124), - [anon_sym_BANG] = ACTIONS(4124), - [anon_sym_go] = ACTIONS(4124), - [anon_sym_spawn] = ACTIONS(4124), - [anon_sym_json_DOTdecode] = ACTIONS(4124), - [anon_sym_LBRACK2] = ACTIONS(4124), - [anon_sym_TILDE] = ACTIONS(4124), - [anon_sym_CARET] = ACTIONS(4124), - [anon_sym_AMP] = ACTIONS(4124), - [anon_sym_LT_DASH] = ACTIONS(4124), - [sym_none] = ACTIONS(4124), - [sym_true] = ACTIONS(4124), - [sym_false] = ACTIONS(4124), - [sym_nil] = ACTIONS(4124), - [anon_sym_if] = ACTIONS(4124), - [anon_sym_DOLLARif] = ACTIONS(4124), - [anon_sym_match] = ACTIONS(4124), - [anon_sym_select] = ACTIONS(4124), - [anon_sym_lock] = ACTIONS(4124), - [anon_sym_rlock] = ACTIONS(4124), - [anon_sym_unsafe] = ACTIONS(4124), - [anon_sym_sql] = ACTIONS(4124), - [sym_int_literal] = ACTIONS(4124), - [sym_float_literal] = ACTIONS(4124), - [sym_rune_literal] = ACTIONS(4124), - [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), + [anon_sym_DOT] = ACTIONS(2688), + [anon_sym_LBRACE] = ACTIONS(2688), + [anon_sym_const] = ACTIONS(2688), + [anon_sym_LPAREN] = ACTIONS(2688), + [anon_sym___global] = ACTIONS(2688), + [anon_sym_type] = ACTIONS(2688), + [anon_sym_PIPE] = ACTIONS(2688), + [anon_sym_fn] = ACTIONS(2688), + [anon_sym_PLUS] = ACTIONS(2688), + [anon_sym_DASH] = ACTIONS(2688), + [anon_sym_STAR] = ACTIONS(2688), + [anon_sym_struct] = ACTIONS(2688), + [anon_sym_union] = ACTIONS(2688), + [anon_sym_pub] = ACTIONS(2688), + [anon_sym_mut] = ACTIONS(2688), + [anon_sym_enum] = ACTIONS(2688), + [anon_sym_interface] = ACTIONS(2688), + [anon_sym_QMARK] = ACTIONS(2688), + [anon_sym_BANG] = ACTIONS(2688), + [anon_sym_go] = ACTIONS(2688), + [anon_sym_spawn] = ACTIONS(2688), + [anon_sym_json_DOTdecode] = ACTIONS(2688), + [anon_sym_LBRACK2] = ACTIONS(2688), + [anon_sym_TILDE] = ACTIONS(2688), + [anon_sym_CARET] = ACTIONS(2688), + [anon_sym_AMP] = ACTIONS(2688), + [anon_sym_LT_DASH] = ACTIONS(2688), + [sym_none] = ACTIONS(2688), + [sym_true] = ACTIONS(2688), + [sym_false] = ACTIONS(2688), + [sym_nil] = ACTIONS(2688), + [anon_sym_if] = ACTIONS(2688), + [anon_sym_DOLLARif] = ACTIONS(2688), + [anon_sym_match] = ACTIONS(2688), + [anon_sym_select] = ACTIONS(2688), + [anon_sym_lock] = ACTIONS(2688), + [anon_sym_rlock] = ACTIONS(2688), + [anon_sym_unsafe] = ACTIONS(2688), + [anon_sym_sql] = ACTIONS(2688), + [sym_int_literal] = ACTIONS(2688), + [sym_float_literal] = ACTIONS(2688), + [sym_rune_literal] = ACTIONS(2688), + [sym_pseudo_compile_time_identifier] = ACTIONS(2688), + [anon_sym_shared] = ACTIONS(2688), + [anon_sym_map_LBRACK] = ACTIONS(2688), + [anon_sym_chan] = ACTIONS(2688), + [anon_sym_thread] = ACTIONS(2688), + [anon_sym_atomic] = ACTIONS(2688), + [anon_sym_assert] = ACTIONS(2688), + [anon_sym_defer] = ACTIONS(2688), + [anon_sym_goto] = ACTIONS(2688), + [anon_sym_break] = ACTIONS(2688), + [anon_sym_continue] = ACTIONS(2688), + [anon_sym_return] = ACTIONS(2688), + [anon_sym_DOLLARfor] = ACTIONS(2688), + [anon_sym_for] = ACTIONS(2688), + [anon_sym_POUND] = ACTIONS(2688), + [anon_sym_asm] = ACTIONS(2688), + [anon_sym_AT_LBRACK] = ACTIONS(2688), + [sym___double_quote] = ACTIONS(2688), + [sym___single_quote] = ACTIONS(2688), + [sym___c_double_quote] = ACTIONS(2688), + [sym___c_single_quote] = ACTIONS(2688), + [sym___r_double_quote] = ACTIONS(2688), + [sym___r_single_quote] = ACTIONS(2688), }, [1462] = { [sym_line_comment] = STATE(1462), [sym_block_comment] = STATE(1462), - [sym_block] = STATE(1552), - [ts_builtin_sym_end] = ACTIONS(4126), - [sym_identifier] = ACTIONS(4128), - [anon_sym_LF] = ACTIONS(4128), - [anon_sym_CR] = ACTIONS(4128), - [anon_sym_CR_LF] = ACTIONS(4128), + [ts_builtin_sym_end] = ACTIONS(2868), + [sym_identifier] = ACTIONS(2870), + [anon_sym_LF] = ACTIONS(2870), + [anon_sym_CR] = ACTIONS(2870), + [anon_sym_CR_LF] = ACTIONS(2870), [anon_sym_SLASH_SLASH] = ACTIONS(497), [anon_sym_SLASH_STAR] = ACTIONS(499), - [anon_sym_DOT] = ACTIONS(4128), - [anon_sym_LBRACE] = ACTIONS(4012), - [anon_sym_const] = ACTIONS(4128), - [anon_sym_LPAREN] = ACTIONS(4128), - [anon_sym___global] = ACTIONS(4128), - [anon_sym_type] = ACTIONS(4128), - [anon_sym_fn] = ACTIONS(4128), - [anon_sym_PLUS] = ACTIONS(4128), - [anon_sym_DASH] = ACTIONS(4128), - [anon_sym_STAR] = ACTIONS(4128), - [anon_sym_struct] = ACTIONS(4128), - [anon_sym_union] = ACTIONS(4128), - [anon_sym_pub] = ACTIONS(4128), - [anon_sym_mut] = ACTIONS(4128), - [anon_sym_enum] = ACTIONS(4128), - [anon_sym_interface] = ACTIONS(4128), - [anon_sym_QMARK] = ACTIONS(4128), - [anon_sym_BANG] = ACTIONS(4128), - [anon_sym_go] = ACTIONS(4128), - [anon_sym_spawn] = ACTIONS(4128), - [anon_sym_json_DOTdecode] = ACTIONS(4128), - [anon_sym_LBRACK2] = ACTIONS(4128), - [anon_sym_TILDE] = ACTIONS(4128), - [anon_sym_CARET] = ACTIONS(4128), - [anon_sym_AMP] = ACTIONS(4128), - [anon_sym_LT_DASH] = ACTIONS(4128), - [sym_none] = ACTIONS(4128), - [sym_true] = ACTIONS(4128), - [sym_false] = ACTIONS(4128), - [sym_nil] = ACTIONS(4128), - [anon_sym_if] = ACTIONS(4128), - [anon_sym_DOLLARif] = ACTIONS(4128), - [anon_sym_match] = ACTIONS(4128), - [anon_sym_select] = ACTIONS(4128), - [anon_sym_lock] = ACTIONS(4128), - [anon_sym_rlock] = ACTIONS(4128), - [anon_sym_unsafe] = ACTIONS(4128), - [anon_sym_sql] = ACTIONS(4128), - [sym_int_literal] = ACTIONS(4128), - [sym_float_literal] = ACTIONS(4128), - [sym_rune_literal] = ACTIONS(4128), - [sym_pseudo_compile_time_identifier] = ACTIONS(4128), - [anon_sym_shared] = ACTIONS(4128), - [anon_sym_map_LBRACK] = ACTIONS(4128), - [anon_sym_chan] = ACTIONS(4128), - [anon_sym_thread] = ACTIONS(4128), - [anon_sym_atomic] = ACTIONS(4128), - [anon_sym_assert] = ACTIONS(4128), - [anon_sym_defer] = ACTIONS(4128), - [anon_sym_goto] = ACTIONS(4128), - [anon_sym_break] = ACTIONS(4128), - [anon_sym_continue] = ACTIONS(4128), - [anon_sym_return] = ACTIONS(4128), - [anon_sym_DOLLARfor] = ACTIONS(4128), - [anon_sym_for] = ACTIONS(4128), - [anon_sym_POUND] = ACTIONS(4128), - [anon_sym_asm] = ACTIONS(4128), - [anon_sym_AT_LBRACK] = ACTIONS(4128), - [sym___double_quote] = ACTIONS(4128), - [sym___single_quote] = ACTIONS(4128), - [sym___c_double_quote] = ACTIONS(4128), - [sym___c_single_quote] = ACTIONS(4128), - [sym___r_double_quote] = ACTIONS(4128), - [sym___r_single_quote] = ACTIONS(4128), + [anon_sym_DOT] = ACTIONS(2870), + [anon_sym_LBRACE] = ACTIONS(2870), + [anon_sym_const] = ACTIONS(2870), + [anon_sym_LPAREN] = ACTIONS(2870), + [anon_sym___global] = ACTIONS(2870), + [anon_sym_type] = ACTIONS(2870), + [anon_sym_PIPE] = ACTIONS(2870), + [anon_sym_fn] = ACTIONS(2870), + [anon_sym_PLUS] = ACTIONS(2870), + [anon_sym_DASH] = ACTIONS(2870), + [anon_sym_STAR] = ACTIONS(2870), + [anon_sym_struct] = ACTIONS(2870), + [anon_sym_union] = ACTIONS(2870), + [anon_sym_pub] = ACTIONS(2870), + [anon_sym_mut] = ACTIONS(2870), + [anon_sym_enum] = ACTIONS(2870), + [anon_sym_interface] = ACTIONS(2870), + [anon_sym_QMARK] = ACTIONS(2870), + [anon_sym_BANG] = ACTIONS(2870), + [anon_sym_go] = ACTIONS(2870), + [anon_sym_spawn] = ACTIONS(2870), + [anon_sym_json_DOTdecode] = ACTIONS(2870), + [anon_sym_LBRACK2] = ACTIONS(2870), + [anon_sym_TILDE] = ACTIONS(2870), + [anon_sym_CARET] = ACTIONS(2870), + [anon_sym_AMP] = ACTIONS(2870), + [anon_sym_LT_DASH] = ACTIONS(2870), + [sym_none] = ACTIONS(2870), + [sym_true] = ACTIONS(2870), + [sym_false] = ACTIONS(2870), + [sym_nil] = ACTIONS(2870), + [anon_sym_if] = ACTIONS(2870), + [anon_sym_DOLLARif] = ACTIONS(2870), + [anon_sym_match] = ACTIONS(2870), + [anon_sym_select] = ACTIONS(2870), + [anon_sym_lock] = ACTIONS(2870), + [anon_sym_rlock] = ACTIONS(2870), + [anon_sym_unsafe] = ACTIONS(2870), + [anon_sym_sql] = ACTIONS(2870), + [sym_int_literal] = ACTIONS(2870), + [sym_float_literal] = ACTIONS(2870), + [sym_rune_literal] = ACTIONS(2870), + [sym_pseudo_compile_time_identifier] = ACTIONS(2870), + [anon_sym_shared] = ACTIONS(2870), + [anon_sym_map_LBRACK] = ACTIONS(2870), + [anon_sym_chan] = ACTIONS(2870), + [anon_sym_thread] = ACTIONS(2870), + [anon_sym_atomic] = ACTIONS(2870), + [anon_sym_assert] = ACTIONS(2870), + [anon_sym_defer] = ACTIONS(2870), + [anon_sym_goto] = ACTIONS(2870), + [anon_sym_break] = ACTIONS(2870), + [anon_sym_continue] = ACTIONS(2870), + [anon_sym_return] = ACTIONS(2870), + [anon_sym_DOLLARfor] = ACTIONS(2870), + [anon_sym_for] = ACTIONS(2870), + [anon_sym_POUND] = ACTIONS(2870), + [anon_sym_asm] = ACTIONS(2870), + [anon_sym_AT_LBRACK] = ACTIONS(2870), + [sym___double_quote] = ACTIONS(2870), + [sym___single_quote] = ACTIONS(2870), + [sym___c_double_quote] = ACTIONS(2870), + [sym___c_single_quote] = ACTIONS(2870), + [sym___r_double_quote] = ACTIONS(2870), + [sym___r_single_quote] = ACTIONS(2870), }, [1463] = { [sym_line_comment] = STATE(1463), [sym_block_comment] = STATE(1463), - [sym_block] = STATE(1558), - [ts_builtin_sym_end] = ACTIONS(4130), - [sym_identifier] = ACTIONS(4132), - [anon_sym_LF] = ACTIONS(4132), - [anon_sym_CR] = ACTIONS(4132), - [anon_sym_CR_LF] = ACTIONS(4132), + [ts_builtin_sym_end] = ACTIONS(2810), + [sym_identifier] = ACTIONS(2812), + [anon_sym_LF] = ACTIONS(2812), + [anon_sym_CR] = ACTIONS(2812), + [anon_sym_CR_LF] = ACTIONS(2812), [anon_sym_SLASH_SLASH] = ACTIONS(497), [anon_sym_SLASH_STAR] = ACTIONS(499), - [anon_sym_DOT] = ACTIONS(4132), - [anon_sym_LBRACE] = ACTIONS(4012), - [anon_sym_const] = ACTIONS(4132), - [anon_sym_LPAREN] = ACTIONS(4132), - [anon_sym___global] = ACTIONS(4132), - [anon_sym_type] = ACTIONS(4132), - [anon_sym_fn] = ACTIONS(4132), - [anon_sym_PLUS] = ACTIONS(4132), - [anon_sym_DASH] = ACTIONS(4132), - [anon_sym_STAR] = ACTIONS(4132), - [anon_sym_struct] = ACTIONS(4132), - [anon_sym_union] = ACTIONS(4132), - [anon_sym_pub] = ACTIONS(4132), - [anon_sym_mut] = ACTIONS(4132), - [anon_sym_enum] = ACTIONS(4132), - [anon_sym_interface] = ACTIONS(4132), - [anon_sym_QMARK] = ACTIONS(4132), - [anon_sym_BANG] = ACTIONS(4132), - [anon_sym_go] = ACTIONS(4132), - [anon_sym_spawn] = ACTIONS(4132), - [anon_sym_json_DOTdecode] = ACTIONS(4132), - [anon_sym_LBRACK2] = ACTIONS(4132), - [anon_sym_TILDE] = ACTIONS(4132), - [anon_sym_CARET] = ACTIONS(4132), - [anon_sym_AMP] = ACTIONS(4132), - [anon_sym_LT_DASH] = ACTIONS(4132), - [sym_none] = ACTIONS(4132), - [sym_true] = ACTIONS(4132), - [sym_false] = ACTIONS(4132), - [sym_nil] = ACTIONS(4132), - [anon_sym_if] = ACTIONS(4132), - [anon_sym_DOLLARif] = ACTIONS(4132), - [anon_sym_match] = ACTIONS(4132), - [anon_sym_select] = ACTIONS(4132), - [anon_sym_lock] = ACTIONS(4132), - [anon_sym_rlock] = ACTIONS(4132), - [anon_sym_unsafe] = ACTIONS(4132), - [anon_sym_sql] = ACTIONS(4132), - [sym_int_literal] = ACTIONS(4132), - [sym_float_literal] = ACTIONS(4132), - [sym_rune_literal] = ACTIONS(4132), - [sym_pseudo_compile_time_identifier] = ACTIONS(4132), - [anon_sym_shared] = ACTIONS(4132), - [anon_sym_map_LBRACK] = ACTIONS(4132), - [anon_sym_chan] = ACTIONS(4132), - [anon_sym_thread] = ACTIONS(4132), - [anon_sym_atomic] = ACTIONS(4132), - [anon_sym_assert] = ACTIONS(4132), - [anon_sym_defer] = ACTIONS(4132), - [anon_sym_goto] = ACTIONS(4132), - [anon_sym_break] = ACTIONS(4132), - [anon_sym_continue] = ACTIONS(4132), - [anon_sym_return] = ACTIONS(4132), - [anon_sym_DOLLARfor] = ACTIONS(4132), - [anon_sym_for] = ACTIONS(4132), - [anon_sym_POUND] = ACTIONS(4132), - [anon_sym_asm] = ACTIONS(4132), - [anon_sym_AT_LBRACK] = ACTIONS(4132), - [sym___double_quote] = ACTIONS(4132), - [sym___single_quote] = ACTIONS(4132), - [sym___c_double_quote] = ACTIONS(4132), - [sym___c_single_quote] = ACTIONS(4132), - [sym___r_double_quote] = ACTIONS(4132), - [sym___r_single_quote] = ACTIONS(4132), + [anon_sym_DOT] = ACTIONS(2812), + [anon_sym_LBRACE] = ACTIONS(2812), + [anon_sym_const] = ACTIONS(2812), + [anon_sym_LPAREN] = ACTIONS(2812), + [anon_sym___global] = ACTIONS(2812), + [anon_sym_type] = ACTIONS(2812), + [anon_sym_PIPE] = ACTIONS(2812), + [anon_sym_fn] = ACTIONS(2812), + [anon_sym_PLUS] = ACTIONS(2812), + [anon_sym_DASH] = ACTIONS(2812), + [anon_sym_STAR] = ACTIONS(2812), + [anon_sym_struct] = ACTIONS(2812), + [anon_sym_union] = ACTIONS(2812), + [anon_sym_pub] = ACTIONS(2812), + [anon_sym_mut] = ACTIONS(2812), + [anon_sym_enum] = ACTIONS(2812), + [anon_sym_interface] = ACTIONS(2812), + [anon_sym_QMARK] = ACTIONS(2812), + [anon_sym_BANG] = ACTIONS(2812), + [anon_sym_go] = ACTIONS(2812), + [anon_sym_spawn] = ACTIONS(2812), + [anon_sym_json_DOTdecode] = ACTIONS(2812), + [anon_sym_LBRACK2] = ACTIONS(2812), + [anon_sym_TILDE] = ACTIONS(2812), + [anon_sym_CARET] = ACTIONS(2812), + [anon_sym_AMP] = ACTIONS(2812), + [anon_sym_LT_DASH] = ACTIONS(2812), + [sym_none] = ACTIONS(2812), + [sym_true] = ACTIONS(2812), + [sym_false] = ACTIONS(2812), + [sym_nil] = ACTIONS(2812), + [anon_sym_if] = ACTIONS(2812), + [anon_sym_DOLLARif] = ACTIONS(2812), + [anon_sym_match] = ACTIONS(2812), + [anon_sym_select] = ACTIONS(2812), + [anon_sym_lock] = ACTIONS(2812), + [anon_sym_rlock] = ACTIONS(2812), + [anon_sym_unsafe] = ACTIONS(2812), + [anon_sym_sql] = ACTIONS(2812), + [sym_int_literal] = ACTIONS(2812), + [sym_float_literal] = ACTIONS(2812), + [sym_rune_literal] = ACTIONS(2812), + [sym_pseudo_compile_time_identifier] = ACTIONS(2812), + [anon_sym_shared] = ACTIONS(2812), + [anon_sym_map_LBRACK] = ACTIONS(2812), + [anon_sym_chan] = ACTIONS(2812), + [anon_sym_thread] = ACTIONS(2812), + [anon_sym_atomic] = ACTIONS(2812), + [anon_sym_assert] = ACTIONS(2812), + [anon_sym_defer] = ACTIONS(2812), + [anon_sym_goto] = ACTIONS(2812), + [anon_sym_break] = ACTIONS(2812), + [anon_sym_continue] = ACTIONS(2812), + [anon_sym_return] = ACTIONS(2812), + [anon_sym_DOLLARfor] = ACTIONS(2812), + [anon_sym_for] = ACTIONS(2812), + [anon_sym_POUND] = ACTIONS(2812), + [anon_sym_asm] = ACTIONS(2812), + [anon_sym_AT_LBRACK] = ACTIONS(2812), + [sym___double_quote] = ACTIONS(2812), + [sym___single_quote] = ACTIONS(2812), + [sym___c_double_quote] = ACTIONS(2812), + [sym___c_single_quote] = ACTIONS(2812), + [sym___r_double_quote] = ACTIONS(2812), + [sym___r_single_quote] = ACTIONS(2812), }, [1464] = { [sym_line_comment] = STATE(1464), [sym_block_comment] = STATE(1464), - [ts_builtin_sym_end] = ACTIONS(3524), - [sym_identifier] = ACTIONS(1761), - [anon_sym_LF] = ACTIONS(1761), - [anon_sym_CR] = ACTIONS(1761), - [anon_sym_CR_LF] = ACTIONS(1761), + [ts_builtin_sym_end] = ACTIONS(2776), + [sym_identifier] = ACTIONS(2778), + [anon_sym_LF] = ACTIONS(2778), + [anon_sym_CR] = ACTIONS(2778), + [anon_sym_CR_LF] = ACTIONS(2778), [anon_sym_SLASH_SLASH] = ACTIONS(497), [anon_sym_SLASH_STAR] = ACTIONS(499), - [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), + [anon_sym_DOT] = ACTIONS(2778), + [anon_sym_LBRACE] = ACTIONS(2778), + [anon_sym_const] = ACTIONS(2778), + [anon_sym_LPAREN] = ACTIONS(2778), + [anon_sym___global] = ACTIONS(2778), + [anon_sym_type] = ACTIONS(2778), + [anon_sym_PIPE] = ACTIONS(2778), + [anon_sym_fn] = ACTIONS(2778), + [anon_sym_PLUS] = ACTIONS(2778), + [anon_sym_DASH] = ACTIONS(2778), + [anon_sym_STAR] = ACTIONS(2778), + [anon_sym_struct] = ACTIONS(2778), + [anon_sym_union] = ACTIONS(2778), + [anon_sym_pub] = ACTIONS(2778), + [anon_sym_mut] = ACTIONS(2778), + [anon_sym_enum] = ACTIONS(2778), + [anon_sym_interface] = ACTIONS(2778), + [anon_sym_QMARK] = ACTIONS(2778), + [anon_sym_BANG] = ACTIONS(2778), + [anon_sym_go] = ACTIONS(2778), + [anon_sym_spawn] = ACTIONS(2778), + [anon_sym_json_DOTdecode] = ACTIONS(2778), + [anon_sym_LBRACK2] = ACTIONS(2778), + [anon_sym_TILDE] = ACTIONS(2778), + [anon_sym_CARET] = ACTIONS(2778), + [anon_sym_AMP] = ACTIONS(2778), + [anon_sym_LT_DASH] = ACTIONS(2778), + [sym_none] = ACTIONS(2778), + [sym_true] = ACTIONS(2778), + [sym_false] = ACTIONS(2778), + [sym_nil] = ACTIONS(2778), + [anon_sym_if] = ACTIONS(2778), + [anon_sym_DOLLARif] = ACTIONS(2778), + [anon_sym_match] = ACTIONS(2778), + [anon_sym_select] = ACTIONS(2778), + [anon_sym_lock] = ACTIONS(2778), + [anon_sym_rlock] = ACTIONS(2778), + [anon_sym_unsafe] = ACTIONS(2778), + [anon_sym_sql] = ACTIONS(2778), + [sym_int_literal] = ACTIONS(2778), + [sym_float_literal] = ACTIONS(2778), + [sym_rune_literal] = ACTIONS(2778), + [sym_pseudo_compile_time_identifier] = ACTIONS(2778), + [anon_sym_shared] = ACTIONS(2778), + [anon_sym_map_LBRACK] = ACTIONS(2778), + [anon_sym_chan] = ACTIONS(2778), + [anon_sym_thread] = ACTIONS(2778), + [anon_sym_atomic] = ACTIONS(2778), + [anon_sym_assert] = ACTIONS(2778), + [anon_sym_defer] = ACTIONS(2778), + [anon_sym_goto] = ACTIONS(2778), + [anon_sym_break] = ACTIONS(2778), + [anon_sym_continue] = ACTIONS(2778), + [anon_sym_return] = ACTIONS(2778), + [anon_sym_DOLLARfor] = ACTIONS(2778), + [anon_sym_for] = ACTIONS(2778), + [anon_sym_POUND] = ACTIONS(2778), + [anon_sym_asm] = ACTIONS(2778), + [anon_sym_AT_LBRACK] = ACTIONS(2778), + [sym___double_quote] = ACTIONS(2778), + [sym___single_quote] = ACTIONS(2778), + [sym___c_double_quote] = ACTIONS(2778), + [sym___c_single_quote] = ACTIONS(2778), + [sym___r_double_quote] = ACTIONS(2778), + [sym___r_single_quote] = ACTIONS(2778), }, [1465] = { [sym_line_comment] = STATE(1465), [sym_block_comment] = STATE(1465), - [sym_block] = STATE(1571), - [ts_builtin_sym_end] = ACTIONS(4134), - [sym_identifier] = ACTIONS(4136), - [anon_sym_LF] = ACTIONS(4136), - [anon_sym_CR] = ACTIONS(4136), - [anon_sym_CR_LF] = ACTIONS(4136), + [ts_builtin_sym_end] = ACTIONS(2682), + [sym_identifier] = ACTIONS(2684), + [anon_sym_LF] = ACTIONS(2684), + [anon_sym_CR] = ACTIONS(2684), + [anon_sym_CR_LF] = ACTIONS(2684), [anon_sym_SLASH_SLASH] = ACTIONS(497), [anon_sym_SLASH_STAR] = ACTIONS(499), - [anon_sym_DOT] = ACTIONS(4136), - [anon_sym_LBRACE] = ACTIONS(4012), - [anon_sym_const] = ACTIONS(4136), - [anon_sym_LPAREN] = ACTIONS(4136), - [anon_sym___global] = ACTIONS(4136), - [anon_sym_type] = ACTIONS(4136), - [anon_sym_fn] = ACTIONS(4136), - [anon_sym_PLUS] = ACTIONS(4136), - [anon_sym_DASH] = ACTIONS(4136), - [anon_sym_STAR] = ACTIONS(4136), - [anon_sym_struct] = ACTIONS(4136), - [anon_sym_union] = ACTIONS(4136), - [anon_sym_pub] = ACTIONS(4136), - [anon_sym_mut] = ACTIONS(4136), - [anon_sym_enum] = ACTIONS(4136), - [anon_sym_interface] = ACTIONS(4136), - [anon_sym_QMARK] = ACTIONS(4136), - [anon_sym_BANG] = ACTIONS(4136), - [anon_sym_go] = ACTIONS(4136), - [anon_sym_spawn] = ACTIONS(4136), - [anon_sym_json_DOTdecode] = ACTIONS(4136), - [anon_sym_LBRACK2] = ACTIONS(4136), - [anon_sym_TILDE] = ACTIONS(4136), - [anon_sym_CARET] = ACTIONS(4136), - [anon_sym_AMP] = ACTIONS(4136), - [anon_sym_LT_DASH] = ACTIONS(4136), - [sym_none] = ACTIONS(4136), - [sym_true] = ACTIONS(4136), - [sym_false] = ACTIONS(4136), - [sym_nil] = ACTIONS(4136), - [anon_sym_if] = ACTIONS(4136), - [anon_sym_DOLLARif] = ACTIONS(4136), - [anon_sym_match] = ACTIONS(4136), - [anon_sym_select] = ACTIONS(4136), - [anon_sym_lock] = ACTIONS(4136), - [anon_sym_rlock] = ACTIONS(4136), - [anon_sym_unsafe] = ACTIONS(4136), - [anon_sym_sql] = ACTIONS(4136), - [sym_int_literal] = ACTIONS(4136), - [sym_float_literal] = ACTIONS(4136), - [sym_rune_literal] = ACTIONS(4136), - [sym_pseudo_compile_time_identifier] = ACTIONS(4136), - [anon_sym_shared] = ACTIONS(4136), - [anon_sym_map_LBRACK] = ACTIONS(4136), - [anon_sym_chan] = ACTIONS(4136), - [anon_sym_thread] = ACTIONS(4136), - [anon_sym_atomic] = ACTIONS(4136), - [anon_sym_assert] = ACTIONS(4136), - [anon_sym_defer] = ACTIONS(4136), - [anon_sym_goto] = ACTIONS(4136), - [anon_sym_break] = ACTIONS(4136), - [anon_sym_continue] = ACTIONS(4136), - [anon_sym_return] = ACTIONS(4136), - [anon_sym_DOLLARfor] = ACTIONS(4136), - [anon_sym_for] = ACTIONS(4136), - [anon_sym_POUND] = ACTIONS(4136), - [anon_sym_asm] = ACTIONS(4136), - [anon_sym_AT_LBRACK] = ACTIONS(4136), - [sym___double_quote] = ACTIONS(4136), - [sym___single_quote] = ACTIONS(4136), - [sym___c_double_quote] = ACTIONS(4136), - [sym___c_single_quote] = ACTIONS(4136), - [sym___r_double_quote] = ACTIONS(4136), - [sym___r_single_quote] = ACTIONS(4136), + [anon_sym_DOT] = ACTIONS(2684), + [anon_sym_LBRACE] = ACTIONS(2684), + [anon_sym_const] = ACTIONS(2684), + [anon_sym_LPAREN] = ACTIONS(2684), + [anon_sym___global] = ACTIONS(2684), + [anon_sym_type] = ACTIONS(2684), + [anon_sym_PIPE] = ACTIONS(2684), + [anon_sym_fn] = ACTIONS(2684), + [anon_sym_PLUS] = ACTIONS(2684), + [anon_sym_DASH] = ACTIONS(2684), + [anon_sym_STAR] = ACTIONS(2684), + [anon_sym_struct] = ACTIONS(2684), + [anon_sym_union] = ACTIONS(2684), + [anon_sym_pub] = ACTIONS(2684), + [anon_sym_mut] = ACTIONS(2684), + [anon_sym_enum] = ACTIONS(2684), + [anon_sym_interface] = ACTIONS(2684), + [anon_sym_QMARK] = ACTIONS(2684), + [anon_sym_BANG] = ACTIONS(2684), + [anon_sym_go] = ACTIONS(2684), + [anon_sym_spawn] = ACTIONS(2684), + [anon_sym_json_DOTdecode] = ACTIONS(2684), + [anon_sym_LBRACK2] = ACTIONS(2684), + [anon_sym_TILDE] = ACTIONS(2684), + [anon_sym_CARET] = ACTIONS(2684), + [anon_sym_AMP] = ACTIONS(2684), + [anon_sym_LT_DASH] = ACTIONS(2684), + [sym_none] = ACTIONS(2684), + [sym_true] = ACTIONS(2684), + [sym_false] = ACTIONS(2684), + [sym_nil] = ACTIONS(2684), + [anon_sym_if] = ACTIONS(2684), + [anon_sym_DOLLARif] = ACTIONS(2684), + [anon_sym_match] = ACTIONS(2684), + [anon_sym_select] = ACTIONS(2684), + [anon_sym_lock] = ACTIONS(2684), + [anon_sym_rlock] = ACTIONS(2684), + [anon_sym_unsafe] = ACTIONS(2684), + [anon_sym_sql] = ACTIONS(2684), + [sym_int_literal] = ACTIONS(2684), + [sym_float_literal] = ACTIONS(2684), + [sym_rune_literal] = ACTIONS(2684), + [sym_pseudo_compile_time_identifier] = ACTIONS(2684), + [anon_sym_shared] = ACTIONS(2684), + [anon_sym_map_LBRACK] = ACTIONS(2684), + [anon_sym_chan] = ACTIONS(2684), + [anon_sym_thread] = ACTIONS(2684), + [anon_sym_atomic] = ACTIONS(2684), + [anon_sym_assert] = ACTIONS(2684), + [anon_sym_defer] = ACTIONS(2684), + [anon_sym_goto] = ACTIONS(2684), + [anon_sym_break] = ACTIONS(2684), + [anon_sym_continue] = ACTIONS(2684), + [anon_sym_return] = ACTIONS(2684), + [anon_sym_DOLLARfor] = ACTIONS(2684), + [anon_sym_for] = ACTIONS(2684), + [anon_sym_POUND] = ACTIONS(2684), + [anon_sym_asm] = ACTIONS(2684), + [anon_sym_AT_LBRACK] = ACTIONS(2684), + [sym___double_quote] = ACTIONS(2684), + [sym___single_quote] = ACTIONS(2684), + [sym___c_double_quote] = ACTIONS(2684), + [sym___c_single_quote] = ACTIONS(2684), + [sym___r_double_quote] = ACTIONS(2684), + [sym___r_single_quote] = ACTIONS(2684), }, [1466] = { [sym_line_comment] = STATE(1466), [sym_block_comment] = STATE(1466), - [ts_builtin_sym_end] = ACTIONS(2167), - [sym_identifier] = ACTIONS(2169), - [anon_sym_LF] = ACTIONS(2169), - [anon_sym_CR] = ACTIONS(2169), - [anon_sym_CR_LF] = ACTIONS(2169), + [ts_builtin_sym_end] = ACTIONS(2678), + [sym_identifier] = ACTIONS(2680), + [anon_sym_LF] = ACTIONS(2680), + [anon_sym_CR] = ACTIONS(2680), + [anon_sym_CR_LF] = ACTIONS(2680), [anon_sym_SLASH_SLASH] = ACTIONS(497), [anon_sym_SLASH_STAR] = ACTIONS(499), - [anon_sym_DOT] = ACTIONS(2169), - [anon_sym_LBRACE] = ACTIONS(2169), - [anon_sym_const] = ACTIONS(2169), - [anon_sym_LPAREN] = ACTIONS(2169), - [anon_sym___global] = ACTIONS(2169), - [anon_sym_type] = ACTIONS(2169), - [anon_sym_PIPE] = ACTIONS(2169), - [anon_sym_fn] = ACTIONS(2169), - [anon_sym_PLUS] = ACTIONS(2169), - [anon_sym_DASH] = ACTIONS(2169), - [anon_sym_STAR] = ACTIONS(2169), - [anon_sym_struct] = ACTIONS(2169), - [anon_sym_union] = ACTIONS(2169), - [anon_sym_pub] = ACTIONS(2169), - [anon_sym_mut] = ACTIONS(2169), - [anon_sym_enum] = ACTIONS(2169), - [anon_sym_interface] = ACTIONS(2169), - [anon_sym_QMARK] = ACTIONS(2169), - [anon_sym_BANG] = ACTIONS(2169), - [anon_sym_go] = ACTIONS(2169), - [anon_sym_spawn] = ACTIONS(2169), - [anon_sym_json_DOTdecode] = ACTIONS(2169), - [anon_sym_LBRACK2] = ACTIONS(2169), - [anon_sym_TILDE] = ACTIONS(2169), - [anon_sym_CARET] = ACTIONS(2169), - [anon_sym_AMP] = ACTIONS(2169), - [anon_sym_LT_DASH] = ACTIONS(2169), - [sym_none] = ACTIONS(2169), - [sym_true] = ACTIONS(2169), - [sym_false] = ACTIONS(2169), - [sym_nil] = ACTIONS(2169), - [anon_sym_if] = ACTIONS(2169), - [anon_sym_DOLLARif] = ACTIONS(2169), - [anon_sym_match] = ACTIONS(2169), - [anon_sym_select] = ACTIONS(2169), - [anon_sym_lock] = ACTIONS(2169), - [anon_sym_rlock] = ACTIONS(2169), - [anon_sym_unsafe] = ACTIONS(2169), - [anon_sym_sql] = ACTIONS(2169), - [sym_int_literal] = ACTIONS(2169), - [sym_float_literal] = ACTIONS(2169), - [sym_rune_literal] = ACTIONS(2169), - [sym_pseudo_compile_time_identifier] = ACTIONS(2169), - [anon_sym_shared] = ACTIONS(2169), - [anon_sym_map_LBRACK] = ACTIONS(2169), - [anon_sym_chan] = ACTIONS(2169), - [anon_sym_thread] = ACTIONS(2169), - [anon_sym_atomic] = ACTIONS(2169), - [anon_sym_assert] = ACTIONS(2169), - [anon_sym_defer] = ACTIONS(2169), - [anon_sym_goto] = ACTIONS(2169), - [anon_sym_break] = ACTIONS(2169), - [anon_sym_continue] = ACTIONS(2169), - [anon_sym_return] = ACTIONS(2169), - [anon_sym_DOLLARfor] = ACTIONS(2169), - [anon_sym_for] = ACTIONS(2169), - [anon_sym_POUND] = ACTIONS(2169), - [anon_sym_asm] = ACTIONS(2169), - [anon_sym_AT_LBRACK] = ACTIONS(2169), - [sym___double_quote] = ACTIONS(2169), - [sym___single_quote] = ACTIONS(2169), - [sym___c_double_quote] = ACTIONS(2169), - [sym___c_single_quote] = ACTIONS(2169), - [sym___r_double_quote] = ACTIONS(2169), - [sym___r_single_quote] = ACTIONS(2169), + [anon_sym_DOT] = ACTIONS(2680), + [anon_sym_LBRACE] = ACTIONS(2680), + [anon_sym_const] = ACTIONS(2680), + [anon_sym_LPAREN] = ACTIONS(2680), + [anon_sym___global] = ACTIONS(2680), + [anon_sym_type] = ACTIONS(2680), + [anon_sym_PIPE] = ACTIONS(2680), + [anon_sym_fn] = ACTIONS(2680), + [anon_sym_PLUS] = ACTIONS(2680), + [anon_sym_DASH] = ACTIONS(2680), + [anon_sym_STAR] = ACTIONS(2680), + [anon_sym_struct] = ACTIONS(2680), + [anon_sym_union] = ACTIONS(2680), + [anon_sym_pub] = ACTIONS(2680), + [anon_sym_mut] = ACTIONS(2680), + [anon_sym_enum] = ACTIONS(2680), + [anon_sym_interface] = ACTIONS(2680), + [anon_sym_QMARK] = ACTIONS(2680), + [anon_sym_BANG] = ACTIONS(2680), + [anon_sym_go] = ACTIONS(2680), + [anon_sym_spawn] = ACTIONS(2680), + [anon_sym_json_DOTdecode] = ACTIONS(2680), + [anon_sym_LBRACK2] = ACTIONS(2680), + [anon_sym_TILDE] = ACTIONS(2680), + [anon_sym_CARET] = ACTIONS(2680), + [anon_sym_AMP] = ACTIONS(2680), + [anon_sym_LT_DASH] = ACTIONS(2680), + [sym_none] = ACTIONS(2680), + [sym_true] = ACTIONS(2680), + [sym_false] = ACTIONS(2680), + [sym_nil] = ACTIONS(2680), + [anon_sym_if] = ACTIONS(2680), + [anon_sym_DOLLARif] = ACTIONS(2680), + [anon_sym_match] = ACTIONS(2680), + [anon_sym_select] = ACTIONS(2680), + [anon_sym_lock] = ACTIONS(2680), + [anon_sym_rlock] = ACTIONS(2680), + [anon_sym_unsafe] = ACTIONS(2680), + [anon_sym_sql] = ACTIONS(2680), + [sym_int_literal] = ACTIONS(2680), + [sym_float_literal] = ACTIONS(2680), + [sym_rune_literal] = ACTIONS(2680), + [sym_pseudo_compile_time_identifier] = ACTIONS(2680), + [anon_sym_shared] = ACTIONS(2680), + [anon_sym_map_LBRACK] = ACTIONS(2680), + [anon_sym_chan] = ACTIONS(2680), + [anon_sym_thread] = ACTIONS(2680), + [anon_sym_atomic] = ACTIONS(2680), + [anon_sym_assert] = ACTIONS(2680), + [anon_sym_defer] = ACTIONS(2680), + [anon_sym_goto] = ACTIONS(2680), + [anon_sym_break] = ACTIONS(2680), + [anon_sym_continue] = ACTIONS(2680), + [anon_sym_return] = ACTIONS(2680), + [anon_sym_DOLLARfor] = ACTIONS(2680), + [anon_sym_for] = ACTIONS(2680), + [anon_sym_POUND] = ACTIONS(2680), + [anon_sym_asm] = ACTIONS(2680), + [anon_sym_AT_LBRACK] = ACTIONS(2680), + [sym___double_quote] = ACTIONS(2680), + [sym___single_quote] = ACTIONS(2680), + [sym___c_double_quote] = ACTIONS(2680), + [sym___c_single_quote] = ACTIONS(2680), + [sym___r_double_quote] = ACTIONS(2680), + [sym___r_single_quote] = ACTIONS(2680), }, [1467] = { [sym_line_comment] = STATE(1467), [sym_block_comment] = STATE(1467), - [ts_builtin_sym_end] = ACTIONS(2151), - [sym_identifier] = ACTIONS(2153), - [anon_sym_LF] = ACTIONS(2153), - [anon_sym_CR] = ACTIONS(2153), - [anon_sym_CR_LF] = ACTIONS(2153), + [ts_builtin_sym_end] = ACTIONS(2666), + [sym_identifier] = ACTIONS(2668), + [anon_sym_LF] = ACTIONS(2668), + [anon_sym_CR] = ACTIONS(2668), + [anon_sym_CR_LF] = ACTIONS(2668), [anon_sym_SLASH_SLASH] = ACTIONS(497), [anon_sym_SLASH_STAR] = ACTIONS(499), - [anon_sym_DOT] = ACTIONS(2153), - [anon_sym_LBRACE] = ACTIONS(2153), - [anon_sym_const] = ACTIONS(2153), - [anon_sym_LPAREN] = ACTIONS(2153), - [anon_sym___global] = ACTIONS(2153), - [anon_sym_type] = ACTIONS(2153), - [anon_sym_PIPE] = ACTIONS(2153), - [anon_sym_fn] = ACTIONS(2153), - [anon_sym_PLUS] = ACTIONS(2153), - [anon_sym_DASH] = ACTIONS(2153), - [anon_sym_STAR] = ACTIONS(2153), - [anon_sym_struct] = ACTIONS(2153), - [anon_sym_union] = ACTIONS(2153), - [anon_sym_pub] = ACTIONS(2153), - [anon_sym_mut] = ACTIONS(2153), - [anon_sym_enum] = ACTIONS(2153), - [anon_sym_interface] = ACTIONS(2153), - [anon_sym_QMARK] = ACTIONS(2153), - [anon_sym_BANG] = ACTIONS(2153), - [anon_sym_go] = ACTIONS(2153), - [anon_sym_spawn] = ACTIONS(2153), - [anon_sym_json_DOTdecode] = ACTIONS(2153), - [anon_sym_LBRACK2] = ACTIONS(2153), - [anon_sym_TILDE] = ACTIONS(2153), - [anon_sym_CARET] = ACTIONS(2153), - [anon_sym_AMP] = ACTIONS(2153), - [anon_sym_LT_DASH] = ACTIONS(2153), - [sym_none] = ACTIONS(2153), - [sym_true] = ACTIONS(2153), - [sym_false] = ACTIONS(2153), - [sym_nil] = ACTIONS(2153), - [anon_sym_if] = ACTIONS(2153), - [anon_sym_DOLLARif] = ACTIONS(2153), - [anon_sym_match] = ACTIONS(2153), - [anon_sym_select] = ACTIONS(2153), - [anon_sym_lock] = ACTIONS(2153), - [anon_sym_rlock] = ACTIONS(2153), - [anon_sym_unsafe] = ACTIONS(2153), - [anon_sym_sql] = ACTIONS(2153), - [sym_int_literal] = ACTIONS(2153), - [sym_float_literal] = ACTIONS(2153), - [sym_rune_literal] = ACTIONS(2153), - [sym_pseudo_compile_time_identifier] = ACTIONS(2153), - [anon_sym_shared] = ACTIONS(2153), - [anon_sym_map_LBRACK] = ACTIONS(2153), - [anon_sym_chan] = ACTIONS(2153), - [anon_sym_thread] = ACTIONS(2153), - [anon_sym_atomic] = ACTIONS(2153), - [anon_sym_assert] = ACTIONS(2153), - [anon_sym_defer] = ACTIONS(2153), - [anon_sym_goto] = ACTIONS(2153), - [anon_sym_break] = ACTIONS(2153), - [anon_sym_continue] = ACTIONS(2153), - [anon_sym_return] = ACTIONS(2153), - [anon_sym_DOLLARfor] = ACTIONS(2153), - [anon_sym_for] = ACTIONS(2153), - [anon_sym_POUND] = ACTIONS(2153), - [anon_sym_asm] = ACTIONS(2153), - [anon_sym_AT_LBRACK] = ACTIONS(2153), - [sym___double_quote] = ACTIONS(2153), - [sym___single_quote] = ACTIONS(2153), - [sym___c_double_quote] = ACTIONS(2153), - [sym___c_single_quote] = ACTIONS(2153), - [sym___r_double_quote] = ACTIONS(2153), - [sym___r_single_quote] = ACTIONS(2153), + [anon_sym_DOT] = ACTIONS(2668), + [anon_sym_LBRACE] = ACTIONS(2668), + [anon_sym_const] = ACTIONS(2668), + [anon_sym_LPAREN] = ACTIONS(2668), + [anon_sym___global] = ACTIONS(2668), + [anon_sym_type] = ACTIONS(2668), + [anon_sym_PIPE] = ACTIONS(2668), + [anon_sym_fn] = ACTIONS(2668), + [anon_sym_PLUS] = ACTIONS(2668), + [anon_sym_DASH] = ACTIONS(2668), + [anon_sym_STAR] = ACTIONS(2668), + [anon_sym_struct] = ACTIONS(2668), + [anon_sym_union] = ACTIONS(2668), + [anon_sym_pub] = ACTIONS(2668), + [anon_sym_mut] = ACTIONS(2668), + [anon_sym_enum] = ACTIONS(2668), + [anon_sym_interface] = ACTIONS(2668), + [anon_sym_QMARK] = ACTIONS(2668), + [anon_sym_BANG] = ACTIONS(2668), + [anon_sym_go] = ACTIONS(2668), + [anon_sym_spawn] = ACTIONS(2668), + [anon_sym_json_DOTdecode] = ACTIONS(2668), + [anon_sym_LBRACK2] = ACTIONS(2668), + [anon_sym_TILDE] = ACTIONS(2668), + [anon_sym_CARET] = ACTIONS(2668), + [anon_sym_AMP] = ACTIONS(2668), + [anon_sym_LT_DASH] = ACTIONS(2668), + [sym_none] = ACTIONS(2668), + [sym_true] = ACTIONS(2668), + [sym_false] = ACTIONS(2668), + [sym_nil] = ACTIONS(2668), + [anon_sym_if] = ACTIONS(2668), + [anon_sym_DOLLARif] = ACTIONS(2668), + [anon_sym_match] = ACTIONS(2668), + [anon_sym_select] = ACTIONS(2668), + [anon_sym_lock] = ACTIONS(2668), + [anon_sym_rlock] = ACTIONS(2668), + [anon_sym_unsafe] = ACTIONS(2668), + [anon_sym_sql] = ACTIONS(2668), + [sym_int_literal] = ACTIONS(2668), + [sym_float_literal] = ACTIONS(2668), + [sym_rune_literal] = ACTIONS(2668), + [sym_pseudo_compile_time_identifier] = ACTIONS(2668), + [anon_sym_shared] = ACTIONS(2668), + [anon_sym_map_LBRACK] = ACTIONS(2668), + [anon_sym_chan] = ACTIONS(2668), + [anon_sym_thread] = ACTIONS(2668), + [anon_sym_atomic] = ACTIONS(2668), + [anon_sym_assert] = ACTIONS(2668), + [anon_sym_defer] = ACTIONS(2668), + [anon_sym_goto] = ACTIONS(2668), + [anon_sym_break] = ACTIONS(2668), + [anon_sym_continue] = ACTIONS(2668), + [anon_sym_return] = ACTIONS(2668), + [anon_sym_DOLLARfor] = ACTIONS(2668), + [anon_sym_for] = ACTIONS(2668), + [anon_sym_POUND] = ACTIONS(2668), + [anon_sym_asm] = ACTIONS(2668), + [anon_sym_AT_LBRACK] = ACTIONS(2668), + [sym___double_quote] = ACTIONS(2668), + [sym___single_quote] = ACTIONS(2668), + [sym___c_double_quote] = ACTIONS(2668), + [sym___c_single_quote] = ACTIONS(2668), + [sym___r_double_quote] = ACTIONS(2668), + [sym___r_single_quote] = ACTIONS(2668), }, [1468] = { [sym_line_comment] = STATE(1468), [sym_block_comment] = STATE(1468), - [ts_builtin_sym_end] = ACTIONS(2175), - [sym_identifier] = ACTIONS(2177), - [anon_sym_LF] = ACTIONS(2177), - [anon_sym_CR] = ACTIONS(2177), - [anon_sym_CR_LF] = ACTIONS(2177), + [ts_builtin_sym_end] = ACTIONS(2536), + [sym_identifier] = ACTIONS(2538), + [anon_sym_LF] = ACTIONS(2538), + [anon_sym_CR] = ACTIONS(2538), + [anon_sym_CR_LF] = ACTIONS(2538), [anon_sym_SLASH_SLASH] = ACTIONS(497), [anon_sym_SLASH_STAR] = ACTIONS(499), - [anon_sym_DOT] = ACTIONS(2177), - [anon_sym_LBRACE] = ACTIONS(2177), - [anon_sym_const] = ACTIONS(2177), - [anon_sym_LPAREN] = ACTIONS(2177), - [anon_sym___global] = ACTIONS(2177), - [anon_sym_type] = ACTIONS(2177), - [anon_sym_PIPE] = ACTIONS(2177), - [anon_sym_fn] = ACTIONS(2177), - [anon_sym_PLUS] = ACTIONS(2177), - [anon_sym_DASH] = ACTIONS(2177), - [anon_sym_STAR] = ACTIONS(2177), - [anon_sym_struct] = ACTIONS(2177), - [anon_sym_union] = ACTIONS(2177), - [anon_sym_pub] = ACTIONS(2177), - [anon_sym_mut] = ACTIONS(2177), - [anon_sym_enum] = ACTIONS(2177), - [anon_sym_interface] = ACTIONS(2177), - [anon_sym_QMARK] = ACTIONS(2177), - [anon_sym_BANG] = ACTIONS(2177), - [anon_sym_go] = ACTIONS(2177), - [anon_sym_spawn] = ACTIONS(2177), - [anon_sym_json_DOTdecode] = ACTIONS(2177), - [anon_sym_LBRACK2] = ACTIONS(2177), - [anon_sym_TILDE] = ACTIONS(2177), - [anon_sym_CARET] = ACTIONS(2177), - [anon_sym_AMP] = ACTIONS(2177), - [anon_sym_LT_DASH] = ACTIONS(2177), - [sym_none] = ACTIONS(2177), - [sym_true] = ACTIONS(2177), - [sym_false] = ACTIONS(2177), - [sym_nil] = ACTIONS(2177), - [anon_sym_if] = ACTIONS(2177), - [anon_sym_DOLLARif] = ACTIONS(2177), - [anon_sym_match] = ACTIONS(2177), - [anon_sym_select] = ACTIONS(2177), - [anon_sym_lock] = ACTIONS(2177), - [anon_sym_rlock] = ACTIONS(2177), - [anon_sym_unsafe] = ACTIONS(2177), - [anon_sym_sql] = ACTIONS(2177), - [sym_int_literal] = ACTIONS(2177), - [sym_float_literal] = ACTIONS(2177), - [sym_rune_literal] = ACTIONS(2177), - [sym_pseudo_compile_time_identifier] = ACTIONS(2177), - [anon_sym_shared] = ACTIONS(2177), - [anon_sym_map_LBRACK] = ACTIONS(2177), - [anon_sym_chan] = ACTIONS(2177), - [anon_sym_thread] = ACTIONS(2177), - [anon_sym_atomic] = ACTIONS(2177), - [anon_sym_assert] = ACTIONS(2177), - [anon_sym_defer] = ACTIONS(2177), - [anon_sym_goto] = ACTIONS(2177), - [anon_sym_break] = ACTIONS(2177), - [anon_sym_continue] = ACTIONS(2177), - [anon_sym_return] = ACTIONS(2177), - [anon_sym_DOLLARfor] = ACTIONS(2177), - [anon_sym_for] = ACTIONS(2177), - [anon_sym_POUND] = ACTIONS(2177), - [anon_sym_asm] = ACTIONS(2177), - [anon_sym_AT_LBRACK] = ACTIONS(2177), - [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(2538), + [anon_sym_LBRACE] = ACTIONS(2538), + [anon_sym_const] = ACTIONS(2538), + [anon_sym_LPAREN] = ACTIONS(2538), + [anon_sym___global] = ACTIONS(2538), + [anon_sym_type] = ACTIONS(2538), + [anon_sym_PIPE] = ACTIONS(2538), + [anon_sym_fn] = ACTIONS(2538), + [anon_sym_PLUS] = ACTIONS(2538), + [anon_sym_DASH] = ACTIONS(2538), + [anon_sym_STAR] = ACTIONS(2538), + [anon_sym_struct] = ACTIONS(2538), + [anon_sym_union] = ACTIONS(2538), + [anon_sym_pub] = ACTIONS(2538), + [anon_sym_mut] = ACTIONS(2538), + [anon_sym_enum] = ACTIONS(2538), + [anon_sym_interface] = ACTIONS(2538), + [anon_sym_QMARK] = ACTIONS(2538), + [anon_sym_BANG] = ACTIONS(2538), + [anon_sym_go] = ACTIONS(2538), + [anon_sym_spawn] = ACTIONS(2538), + [anon_sym_json_DOTdecode] = ACTIONS(2538), + [anon_sym_LBRACK2] = ACTIONS(2538), + [anon_sym_TILDE] = ACTIONS(2538), + [anon_sym_CARET] = ACTIONS(2538), + [anon_sym_AMP] = ACTIONS(2538), + [anon_sym_LT_DASH] = ACTIONS(2538), + [sym_none] = ACTIONS(2538), + [sym_true] = ACTIONS(2538), + [sym_false] = ACTIONS(2538), + [sym_nil] = ACTIONS(2538), + [anon_sym_if] = ACTIONS(2538), + [anon_sym_DOLLARif] = ACTIONS(2538), + [anon_sym_match] = ACTIONS(2538), + [anon_sym_select] = ACTIONS(2538), + [anon_sym_lock] = ACTIONS(2538), + [anon_sym_rlock] = ACTIONS(2538), + [anon_sym_unsafe] = ACTIONS(2538), + [anon_sym_sql] = ACTIONS(2538), + [sym_int_literal] = ACTIONS(2538), + [sym_float_literal] = ACTIONS(2538), + [sym_rune_literal] = ACTIONS(2538), + [sym_pseudo_compile_time_identifier] = ACTIONS(2538), + [anon_sym_shared] = ACTIONS(2538), + [anon_sym_map_LBRACK] = ACTIONS(2538), + [anon_sym_chan] = ACTIONS(2538), + [anon_sym_thread] = ACTIONS(2538), + [anon_sym_atomic] = ACTIONS(2538), + [anon_sym_assert] = ACTIONS(2538), + [anon_sym_defer] = ACTIONS(2538), + [anon_sym_goto] = ACTIONS(2538), + [anon_sym_break] = ACTIONS(2538), + [anon_sym_continue] = ACTIONS(2538), + [anon_sym_return] = ACTIONS(2538), + [anon_sym_DOLLARfor] = ACTIONS(2538), + [anon_sym_for] = ACTIONS(2538), + [anon_sym_POUND] = ACTIONS(2538), + [anon_sym_asm] = ACTIONS(2538), + [anon_sym_AT_LBRACK] = ACTIONS(2538), + [sym___double_quote] = ACTIONS(2538), + [sym___single_quote] = ACTIONS(2538), + [sym___c_double_quote] = ACTIONS(2538), + [sym___c_single_quote] = ACTIONS(2538), + [sym___r_double_quote] = ACTIONS(2538), + [sym___r_single_quote] = ACTIONS(2538), }, [1469] = { [sym_line_comment] = STATE(1469), [sym_block_comment] = STATE(1469), - [ts_builtin_sym_end] = ACTIONS(2685), - [sym_identifier] = ACTIONS(2687), - [anon_sym_LF] = ACTIONS(2687), - [anon_sym_CR] = ACTIONS(2687), - [anon_sym_CR_LF] = ACTIONS(2687), + [sym_block] = STATE(1549), + [ts_builtin_sym_end] = ACTIONS(4152), + [sym_identifier] = ACTIONS(4154), + [anon_sym_LF] = ACTIONS(4154), + [anon_sym_CR] = ACTIONS(4154), + [anon_sym_CR_LF] = ACTIONS(4154), [anon_sym_SLASH_SLASH] = ACTIONS(497), [anon_sym_SLASH_STAR] = ACTIONS(499), - [anon_sym_DOT] = ACTIONS(2687), - [anon_sym_LBRACE] = ACTIONS(2687), - [anon_sym_const] = ACTIONS(2687), - [anon_sym_LPAREN] = ACTIONS(2687), - [anon_sym___global] = ACTIONS(2687), - [anon_sym_type] = ACTIONS(2687), - [anon_sym_PIPE] = ACTIONS(2687), - [anon_sym_fn] = ACTIONS(2687), - [anon_sym_PLUS] = ACTIONS(2687), - [anon_sym_DASH] = ACTIONS(2687), - [anon_sym_STAR] = ACTIONS(2687), - [anon_sym_struct] = ACTIONS(2687), - [anon_sym_union] = ACTIONS(2687), - [anon_sym_pub] = ACTIONS(2687), - [anon_sym_mut] = ACTIONS(2687), - [anon_sym_enum] = ACTIONS(2687), - [anon_sym_interface] = ACTIONS(2687), - [anon_sym_QMARK] = ACTIONS(2687), - [anon_sym_BANG] = ACTIONS(2687), - [anon_sym_go] = ACTIONS(2687), - [anon_sym_spawn] = ACTIONS(2687), - [anon_sym_json_DOTdecode] = ACTIONS(2687), - [anon_sym_LBRACK2] = ACTIONS(2687), - [anon_sym_TILDE] = ACTIONS(2687), - [anon_sym_CARET] = ACTIONS(2687), - [anon_sym_AMP] = ACTIONS(2687), - [anon_sym_LT_DASH] = ACTIONS(2687), - [sym_none] = ACTIONS(2687), - [sym_true] = ACTIONS(2687), - [sym_false] = ACTIONS(2687), - [sym_nil] = ACTIONS(2687), - [anon_sym_if] = ACTIONS(2687), - [anon_sym_DOLLARif] = ACTIONS(2687), - [anon_sym_match] = ACTIONS(2687), - [anon_sym_select] = ACTIONS(2687), - [anon_sym_lock] = ACTIONS(2687), - [anon_sym_rlock] = ACTIONS(2687), - [anon_sym_unsafe] = ACTIONS(2687), - [anon_sym_sql] = ACTIONS(2687), - [sym_int_literal] = ACTIONS(2687), - [sym_float_literal] = ACTIONS(2687), - [sym_rune_literal] = ACTIONS(2687), - [sym_pseudo_compile_time_identifier] = ACTIONS(2687), - [anon_sym_shared] = ACTIONS(2687), - [anon_sym_map_LBRACK] = ACTIONS(2687), - [anon_sym_chan] = ACTIONS(2687), - [anon_sym_thread] = ACTIONS(2687), - [anon_sym_atomic] = ACTIONS(2687), - [anon_sym_assert] = ACTIONS(2687), - [anon_sym_defer] = ACTIONS(2687), - [anon_sym_goto] = ACTIONS(2687), - [anon_sym_break] = ACTIONS(2687), - [anon_sym_continue] = ACTIONS(2687), - [anon_sym_return] = ACTIONS(2687), - [anon_sym_DOLLARfor] = ACTIONS(2687), - [anon_sym_for] = ACTIONS(2687), - [anon_sym_POUND] = ACTIONS(2687), - [anon_sym_asm] = ACTIONS(2687), - [anon_sym_AT_LBRACK] = ACTIONS(2687), - [sym___double_quote] = ACTIONS(2687), - [sym___single_quote] = ACTIONS(2687), - [sym___c_double_quote] = ACTIONS(2687), - [sym___c_single_quote] = ACTIONS(2687), - [sym___r_double_quote] = ACTIONS(2687), - [sym___r_single_quote] = ACTIONS(2687), + [anon_sym_DOT] = ACTIONS(4154), + [anon_sym_LBRACE] = ACTIONS(4018), + [anon_sym_const] = ACTIONS(4154), + [anon_sym_LPAREN] = ACTIONS(4154), + [anon_sym___global] = ACTIONS(4154), + [anon_sym_type] = ACTIONS(4154), + [anon_sym_fn] = ACTIONS(4154), + [anon_sym_PLUS] = ACTIONS(4154), + [anon_sym_DASH] = ACTIONS(4154), + [anon_sym_STAR] = ACTIONS(4154), + [anon_sym_struct] = ACTIONS(4154), + [anon_sym_union] = ACTIONS(4154), + [anon_sym_pub] = ACTIONS(4154), + [anon_sym_mut] = ACTIONS(4154), + [anon_sym_enum] = ACTIONS(4154), + [anon_sym_interface] = ACTIONS(4154), + [anon_sym_QMARK] = ACTIONS(4154), + [anon_sym_BANG] = ACTIONS(4154), + [anon_sym_go] = ACTIONS(4154), + [anon_sym_spawn] = ACTIONS(4154), + [anon_sym_json_DOTdecode] = ACTIONS(4154), + [anon_sym_LBRACK2] = ACTIONS(4154), + [anon_sym_TILDE] = ACTIONS(4154), + [anon_sym_CARET] = ACTIONS(4154), + [anon_sym_AMP] = ACTIONS(4154), + [anon_sym_LT_DASH] = ACTIONS(4154), + [sym_none] = ACTIONS(4154), + [sym_true] = ACTIONS(4154), + [sym_false] = ACTIONS(4154), + [sym_nil] = ACTIONS(4154), + [anon_sym_if] = ACTIONS(4154), + [anon_sym_DOLLARif] = ACTIONS(4154), + [anon_sym_match] = ACTIONS(4154), + [anon_sym_select] = ACTIONS(4154), + [anon_sym_lock] = ACTIONS(4154), + [anon_sym_rlock] = ACTIONS(4154), + [anon_sym_unsafe] = ACTIONS(4154), + [anon_sym_sql] = ACTIONS(4154), + [sym_int_literal] = ACTIONS(4154), + [sym_float_literal] = ACTIONS(4154), + [sym_rune_literal] = ACTIONS(4154), + [sym_pseudo_compile_time_identifier] = ACTIONS(4154), + [anon_sym_shared] = ACTIONS(4154), + [anon_sym_map_LBRACK] = ACTIONS(4154), + [anon_sym_chan] = ACTIONS(4154), + [anon_sym_thread] = ACTIONS(4154), + [anon_sym_atomic] = ACTIONS(4154), + [anon_sym_assert] = ACTIONS(4154), + [anon_sym_defer] = ACTIONS(4154), + [anon_sym_goto] = ACTIONS(4154), + [anon_sym_break] = ACTIONS(4154), + [anon_sym_continue] = ACTIONS(4154), + [anon_sym_return] = ACTIONS(4154), + [anon_sym_DOLLARfor] = ACTIONS(4154), + [anon_sym_for] = ACTIONS(4154), + [anon_sym_POUND] = ACTIONS(4154), + [anon_sym_asm] = ACTIONS(4154), + [anon_sym_AT_LBRACK] = ACTIONS(4154), + [sym___double_quote] = ACTIONS(4154), + [sym___single_quote] = ACTIONS(4154), + [sym___c_double_quote] = ACTIONS(4154), + [sym___c_single_quote] = ACTIONS(4154), + [sym___r_double_quote] = ACTIONS(4154), + [sym___r_single_quote] = ACTIONS(4154), }, [1470] = { [sym_line_comment] = STATE(1470), [sym_block_comment] = STATE(1470), - [ts_builtin_sym_end] = ACTIONS(2271), - [sym_identifier] = ACTIONS(2273), - [anon_sym_LF] = ACTIONS(2273), - [anon_sym_CR] = ACTIONS(2273), - [anon_sym_CR_LF] = ACTIONS(2273), + [ts_builtin_sym_end] = ACTIONS(2754), + [sym_identifier] = ACTIONS(2756), + [anon_sym_LF] = ACTIONS(2756), + [anon_sym_CR] = ACTIONS(2756), + [anon_sym_CR_LF] = ACTIONS(2756), [anon_sym_SLASH_SLASH] = ACTIONS(497), [anon_sym_SLASH_STAR] = ACTIONS(499), - [anon_sym_DOT] = ACTIONS(2273), - [anon_sym_LBRACE] = ACTIONS(2273), - [anon_sym_const] = ACTIONS(2273), - [anon_sym_LPAREN] = ACTIONS(2273), - [anon_sym___global] = ACTIONS(2273), - [anon_sym_type] = ACTIONS(2273), - [anon_sym_PIPE] = ACTIONS(2273), - [anon_sym_fn] = ACTIONS(2273), - [anon_sym_PLUS] = ACTIONS(2273), - [anon_sym_DASH] = ACTIONS(2273), - [anon_sym_STAR] = ACTIONS(2273), - [anon_sym_struct] = ACTIONS(2273), - [anon_sym_union] = ACTIONS(2273), - [anon_sym_pub] = ACTIONS(2273), - [anon_sym_mut] = ACTIONS(2273), - [anon_sym_enum] = ACTIONS(2273), - [anon_sym_interface] = ACTIONS(2273), - [anon_sym_QMARK] = ACTIONS(2273), - [anon_sym_BANG] = ACTIONS(2273), - [anon_sym_go] = ACTIONS(2273), - [anon_sym_spawn] = ACTIONS(2273), - [anon_sym_json_DOTdecode] = ACTIONS(2273), - [anon_sym_LBRACK2] = ACTIONS(2273), - [anon_sym_TILDE] = ACTIONS(2273), - [anon_sym_CARET] = ACTIONS(2273), - [anon_sym_AMP] = ACTIONS(2273), - [anon_sym_LT_DASH] = ACTIONS(2273), - [sym_none] = ACTIONS(2273), - [sym_true] = ACTIONS(2273), - [sym_false] = ACTIONS(2273), - [sym_nil] = ACTIONS(2273), - [anon_sym_if] = ACTIONS(2273), - [anon_sym_DOLLARif] = ACTIONS(2273), - [anon_sym_match] = ACTIONS(2273), - [anon_sym_select] = ACTIONS(2273), - [anon_sym_lock] = ACTIONS(2273), - [anon_sym_rlock] = ACTIONS(2273), - [anon_sym_unsafe] = ACTIONS(2273), - [anon_sym_sql] = ACTIONS(2273), - [sym_int_literal] = ACTIONS(2273), - [sym_float_literal] = ACTIONS(2273), - [sym_rune_literal] = ACTIONS(2273), - [sym_pseudo_compile_time_identifier] = ACTIONS(2273), - [anon_sym_shared] = ACTIONS(2273), - [anon_sym_map_LBRACK] = ACTIONS(2273), - [anon_sym_chan] = ACTIONS(2273), - [anon_sym_thread] = ACTIONS(2273), - [anon_sym_atomic] = ACTIONS(2273), - [anon_sym_assert] = ACTIONS(2273), - [anon_sym_defer] = ACTIONS(2273), - [anon_sym_goto] = ACTIONS(2273), - [anon_sym_break] = ACTIONS(2273), - [anon_sym_continue] = ACTIONS(2273), - [anon_sym_return] = ACTIONS(2273), - [anon_sym_DOLLARfor] = ACTIONS(2273), - [anon_sym_for] = ACTIONS(2273), - [anon_sym_POUND] = ACTIONS(2273), - [anon_sym_asm] = ACTIONS(2273), - [anon_sym_AT_LBRACK] = ACTIONS(2273), - [sym___double_quote] = ACTIONS(2273), - [sym___single_quote] = ACTIONS(2273), - [sym___c_double_quote] = ACTIONS(2273), - [sym___c_single_quote] = ACTIONS(2273), - [sym___r_double_quote] = ACTIONS(2273), - [sym___r_single_quote] = ACTIONS(2273), + [anon_sym_DOT] = ACTIONS(2756), + [anon_sym_LBRACE] = ACTIONS(2756), + [anon_sym_const] = ACTIONS(2756), + [anon_sym_LPAREN] = ACTIONS(2756), + [anon_sym___global] = ACTIONS(2756), + [anon_sym_type] = ACTIONS(2756), + [anon_sym_PIPE] = ACTIONS(2756), + [anon_sym_fn] = ACTIONS(2756), + [anon_sym_PLUS] = ACTIONS(2756), + [anon_sym_DASH] = ACTIONS(2756), + [anon_sym_STAR] = ACTIONS(2756), + [anon_sym_struct] = ACTIONS(2756), + [anon_sym_union] = ACTIONS(2756), + [anon_sym_pub] = ACTIONS(2756), + [anon_sym_mut] = ACTIONS(2756), + [anon_sym_enum] = ACTIONS(2756), + [anon_sym_interface] = ACTIONS(2756), + [anon_sym_QMARK] = ACTIONS(2756), + [anon_sym_BANG] = ACTIONS(2756), + [anon_sym_go] = ACTIONS(2756), + [anon_sym_spawn] = ACTIONS(2756), + [anon_sym_json_DOTdecode] = ACTIONS(2756), + [anon_sym_LBRACK2] = ACTIONS(2756), + [anon_sym_TILDE] = ACTIONS(2756), + [anon_sym_CARET] = ACTIONS(2756), + [anon_sym_AMP] = ACTIONS(2756), + [anon_sym_LT_DASH] = ACTIONS(2756), + [sym_none] = ACTIONS(2756), + [sym_true] = ACTIONS(2756), + [sym_false] = ACTIONS(2756), + [sym_nil] = ACTIONS(2756), + [anon_sym_if] = ACTIONS(2756), + [anon_sym_DOLLARif] = ACTIONS(2756), + [anon_sym_match] = ACTIONS(2756), + [anon_sym_select] = ACTIONS(2756), + [anon_sym_lock] = ACTIONS(2756), + [anon_sym_rlock] = ACTIONS(2756), + [anon_sym_unsafe] = ACTIONS(2756), + [anon_sym_sql] = ACTIONS(2756), + [sym_int_literal] = ACTIONS(2756), + [sym_float_literal] = ACTIONS(2756), + [sym_rune_literal] = ACTIONS(2756), + [sym_pseudo_compile_time_identifier] = ACTIONS(2756), + [anon_sym_shared] = ACTIONS(2756), + [anon_sym_map_LBRACK] = ACTIONS(2756), + [anon_sym_chan] = ACTIONS(2756), + [anon_sym_thread] = ACTIONS(2756), + [anon_sym_atomic] = ACTIONS(2756), + [anon_sym_assert] = ACTIONS(2756), + [anon_sym_defer] = ACTIONS(2756), + [anon_sym_goto] = ACTIONS(2756), + [anon_sym_break] = ACTIONS(2756), + [anon_sym_continue] = ACTIONS(2756), + [anon_sym_return] = ACTIONS(2756), + [anon_sym_DOLLARfor] = ACTIONS(2756), + [anon_sym_for] = ACTIONS(2756), + [anon_sym_POUND] = ACTIONS(2756), + [anon_sym_asm] = ACTIONS(2756), + [anon_sym_AT_LBRACK] = ACTIONS(2756), + [sym___double_quote] = ACTIONS(2756), + [sym___single_quote] = ACTIONS(2756), + [sym___c_double_quote] = ACTIONS(2756), + [sym___c_single_quote] = ACTIONS(2756), + [sym___r_double_quote] = ACTIONS(2756), + [sym___r_single_quote] = ACTIONS(2756), }, [1471] = { [sym_line_comment] = STATE(1471), [sym_block_comment] = STATE(1471), - [ts_builtin_sym_end] = ACTIONS(2181), - [sym_identifier] = ACTIONS(2183), - [anon_sym_LF] = ACTIONS(2183), - [anon_sym_CR] = ACTIONS(2183), - [anon_sym_CR_LF] = ACTIONS(2183), + [ts_builtin_sym_end] = ACTIONS(2748), + [sym_identifier] = ACTIONS(2750), + [anon_sym_LF] = ACTIONS(2750), + [anon_sym_CR] = ACTIONS(2750), + [anon_sym_CR_LF] = ACTIONS(2750), [anon_sym_SLASH_SLASH] = ACTIONS(497), [anon_sym_SLASH_STAR] = ACTIONS(499), - [anon_sym_DOT] = ACTIONS(2183), - [anon_sym_LBRACE] = ACTIONS(2183), - [anon_sym_const] = ACTIONS(2183), - [anon_sym_LPAREN] = ACTIONS(2183), - [anon_sym___global] = ACTIONS(2183), - [anon_sym_type] = ACTIONS(2183), - [anon_sym_PIPE] = ACTIONS(2183), - [anon_sym_fn] = ACTIONS(2183), - [anon_sym_PLUS] = ACTIONS(2183), - [anon_sym_DASH] = ACTIONS(2183), - [anon_sym_STAR] = ACTIONS(2183), - [anon_sym_struct] = ACTIONS(2183), - [anon_sym_union] = ACTIONS(2183), - [anon_sym_pub] = ACTIONS(2183), - [anon_sym_mut] = ACTIONS(2183), - [anon_sym_enum] = ACTIONS(2183), - [anon_sym_interface] = ACTIONS(2183), - [anon_sym_QMARK] = ACTIONS(2183), - [anon_sym_BANG] = ACTIONS(2183), - [anon_sym_go] = ACTIONS(2183), - [anon_sym_spawn] = ACTIONS(2183), - [anon_sym_json_DOTdecode] = ACTIONS(2183), - [anon_sym_LBRACK2] = ACTIONS(2183), - [anon_sym_TILDE] = ACTIONS(2183), - [anon_sym_CARET] = ACTIONS(2183), - [anon_sym_AMP] = ACTIONS(2183), - [anon_sym_LT_DASH] = ACTIONS(2183), - [sym_none] = ACTIONS(2183), - [sym_true] = ACTIONS(2183), - [sym_false] = ACTIONS(2183), - [sym_nil] = ACTIONS(2183), - [anon_sym_if] = ACTIONS(2183), - [anon_sym_DOLLARif] = ACTIONS(2183), - [anon_sym_match] = ACTIONS(2183), - [anon_sym_select] = ACTIONS(2183), - [anon_sym_lock] = ACTIONS(2183), - [anon_sym_rlock] = ACTIONS(2183), - [anon_sym_unsafe] = ACTIONS(2183), - [anon_sym_sql] = ACTIONS(2183), - [sym_int_literal] = ACTIONS(2183), - [sym_float_literal] = ACTIONS(2183), - [sym_rune_literal] = ACTIONS(2183), - [sym_pseudo_compile_time_identifier] = ACTIONS(2183), - [anon_sym_shared] = ACTIONS(2183), - [anon_sym_map_LBRACK] = ACTIONS(2183), - [anon_sym_chan] = ACTIONS(2183), - [anon_sym_thread] = ACTIONS(2183), - [anon_sym_atomic] = ACTIONS(2183), - [anon_sym_assert] = ACTIONS(2183), - [anon_sym_defer] = ACTIONS(2183), - [anon_sym_goto] = ACTIONS(2183), - [anon_sym_break] = ACTIONS(2183), - [anon_sym_continue] = ACTIONS(2183), - [anon_sym_return] = ACTIONS(2183), - [anon_sym_DOLLARfor] = ACTIONS(2183), - [anon_sym_for] = ACTIONS(2183), - [anon_sym_POUND] = ACTIONS(2183), - [anon_sym_asm] = ACTIONS(2183), - [anon_sym_AT_LBRACK] = ACTIONS(2183), - [sym___double_quote] = ACTIONS(2183), - [sym___single_quote] = ACTIONS(2183), - [sym___c_double_quote] = ACTIONS(2183), - [sym___c_single_quote] = ACTIONS(2183), - [sym___r_double_quote] = ACTIONS(2183), - [sym___r_single_quote] = ACTIONS(2183), + [anon_sym_DOT] = ACTIONS(2750), + [anon_sym_LBRACE] = ACTIONS(2750), + [anon_sym_const] = ACTIONS(2750), + [anon_sym_LPAREN] = ACTIONS(2750), + [anon_sym___global] = ACTIONS(2750), + [anon_sym_type] = ACTIONS(2750), + [anon_sym_PIPE] = ACTIONS(2750), + [anon_sym_fn] = ACTIONS(2750), + [anon_sym_PLUS] = ACTIONS(2750), + [anon_sym_DASH] = ACTIONS(2750), + [anon_sym_STAR] = ACTIONS(2750), + [anon_sym_struct] = ACTIONS(2750), + [anon_sym_union] = ACTIONS(2750), + [anon_sym_pub] = ACTIONS(2750), + [anon_sym_mut] = ACTIONS(2750), + [anon_sym_enum] = ACTIONS(2750), + [anon_sym_interface] = ACTIONS(2750), + [anon_sym_QMARK] = ACTIONS(2750), + [anon_sym_BANG] = ACTIONS(2750), + [anon_sym_go] = ACTIONS(2750), + [anon_sym_spawn] = ACTIONS(2750), + [anon_sym_json_DOTdecode] = ACTIONS(2750), + [anon_sym_LBRACK2] = ACTIONS(2750), + [anon_sym_TILDE] = ACTIONS(2750), + [anon_sym_CARET] = ACTIONS(2750), + [anon_sym_AMP] = ACTIONS(2750), + [anon_sym_LT_DASH] = ACTIONS(2750), + [sym_none] = ACTIONS(2750), + [sym_true] = ACTIONS(2750), + [sym_false] = ACTIONS(2750), + [sym_nil] = ACTIONS(2750), + [anon_sym_if] = ACTIONS(2750), + [anon_sym_DOLLARif] = ACTIONS(2750), + [anon_sym_match] = ACTIONS(2750), + [anon_sym_select] = ACTIONS(2750), + [anon_sym_lock] = ACTIONS(2750), + [anon_sym_rlock] = ACTIONS(2750), + [anon_sym_unsafe] = ACTIONS(2750), + [anon_sym_sql] = ACTIONS(2750), + [sym_int_literal] = ACTIONS(2750), + [sym_float_literal] = ACTIONS(2750), + [sym_rune_literal] = ACTIONS(2750), + [sym_pseudo_compile_time_identifier] = ACTIONS(2750), + [anon_sym_shared] = ACTIONS(2750), + [anon_sym_map_LBRACK] = ACTIONS(2750), + [anon_sym_chan] = ACTIONS(2750), + [anon_sym_thread] = ACTIONS(2750), + [anon_sym_atomic] = ACTIONS(2750), + [anon_sym_assert] = ACTIONS(2750), + [anon_sym_defer] = ACTIONS(2750), + [anon_sym_goto] = ACTIONS(2750), + [anon_sym_break] = ACTIONS(2750), + [anon_sym_continue] = ACTIONS(2750), + [anon_sym_return] = ACTIONS(2750), + [anon_sym_DOLLARfor] = ACTIONS(2750), + [anon_sym_for] = ACTIONS(2750), + [anon_sym_POUND] = ACTIONS(2750), + [anon_sym_asm] = ACTIONS(2750), + [anon_sym_AT_LBRACK] = ACTIONS(2750), + [sym___double_quote] = ACTIONS(2750), + [sym___single_quote] = ACTIONS(2750), + [sym___c_double_quote] = ACTIONS(2750), + [sym___c_single_quote] = ACTIONS(2750), + [sym___r_double_quote] = ACTIONS(2750), + [sym___r_single_quote] = ACTIONS(2750), }, [1472] = { [sym_line_comment] = STATE(1472), [sym_block_comment] = STATE(1472), - [sym_block] = STATE(1550), - [ts_builtin_sym_end] = ACTIONS(4138), - [sym_identifier] = ACTIONS(4140), - [anon_sym_LF] = ACTIONS(4140), - [anon_sym_CR] = ACTIONS(4140), - [anon_sym_CR_LF] = ACTIONS(4140), + [ts_builtin_sym_end] = ACTIONS(2742), + [sym_identifier] = ACTIONS(2744), + [anon_sym_LF] = ACTIONS(2744), + [anon_sym_CR] = ACTIONS(2744), + [anon_sym_CR_LF] = ACTIONS(2744), [anon_sym_SLASH_SLASH] = ACTIONS(497), [anon_sym_SLASH_STAR] = ACTIONS(499), - [anon_sym_DOT] = ACTIONS(4140), - [anon_sym_LBRACE] = ACTIONS(4012), - [anon_sym_const] = ACTIONS(4140), - [anon_sym_LPAREN] = ACTIONS(4140), - [anon_sym___global] = ACTIONS(4140), - [anon_sym_type] = ACTIONS(4140), - [anon_sym_fn] = ACTIONS(4140), - [anon_sym_PLUS] = ACTIONS(4140), - [anon_sym_DASH] = ACTIONS(4140), - [anon_sym_STAR] = ACTIONS(4140), - [anon_sym_struct] = ACTIONS(4140), - [anon_sym_union] = ACTIONS(4140), - [anon_sym_pub] = ACTIONS(4140), - [anon_sym_mut] = ACTIONS(4140), - [anon_sym_enum] = ACTIONS(4140), - [anon_sym_interface] = ACTIONS(4140), - [anon_sym_QMARK] = ACTIONS(4140), - [anon_sym_BANG] = ACTIONS(4140), - [anon_sym_go] = ACTIONS(4140), - [anon_sym_spawn] = ACTIONS(4140), - [anon_sym_json_DOTdecode] = ACTIONS(4140), - [anon_sym_LBRACK2] = ACTIONS(4140), - [anon_sym_TILDE] = ACTIONS(4140), - [anon_sym_CARET] = ACTIONS(4140), - [anon_sym_AMP] = ACTIONS(4140), - [anon_sym_LT_DASH] = ACTIONS(4140), - [sym_none] = ACTIONS(4140), - [sym_true] = ACTIONS(4140), - [sym_false] = ACTIONS(4140), - [sym_nil] = ACTIONS(4140), - [anon_sym_if] = ACTIONS(4140), - [anon_sym_DOLLARif] = ACTIONS(4140), - [anon_sym_match] = ACTIONS(4140), - [anon_sym_select] = ACTIONS(4140), - [anon_sym_lock] = ACTIONS(4140), - [anon_sym_rlock] = ACTIONS(4140), - [anon_sym_unsafe] = ACTIONS(4140), - [anon_sym_sql] = ACTIONS(4140), - [sym_int_literal] = ACTIONS(4140), - [sym_float_literal] = ACTIONS(4140), - [sym_rune_literal] = ACTIONS(4140), - [sym_pseudo_compile_time_identifier] = ACTIONS(4140), - [anon_sym_shared] = ACTIONS(4140), - [anon_sym_map_LBRACK] = ACTIONS(4140), - [anon_sym_chan] = ACTIONS(4140), - [anon_sym_thread] = ACTIONS(4140), - [anon_sym_atomic] = ACTIONS(4140), - [anon_sym_assert] = ACTIONS(4140), - [anon_sym_defer] = ACTIONS(4140), - [anon_sym_goto] = ACTIONS(4140), - [anon_sym_break] = ACTIONS(4140), - [anon_sym_continue] = ACTIONS(4140), - [anon_sym_return] = ACTIONS(4140), - [anon_sym_DOLLARfor] = ACTIONS(4140), - [anon_sym_for] = ACTIONS(4140), - [anon_sym_POUND] = ACTIONS(4140), - [anon_sym_asm] = ACTIONS(4140), - [anon_sym_AT_LBRACK] = ACTIONS(4140), - [sym___double_quote] = ACTIONS(4140), - [sym___single_quote] = ACTIONS(4140), - [sym___c_double_quote] = ACTIONS(4140), - [sym___c_single_quote] = ACTIONS(4140), - [sym___r_double_quote] = ACTIONS(4140), - [sym___r_single_quote] = ACTIONS(4140), + [anon_sym_DOT] = ACTIONS(2744), + [anon_sym_LBRACE] = ACTIONS(2744), + [anon_sym_const] = ACTIONS(2744), + [anon_sym_LPAREN] = ACTIONS(2744), + [anon_sym___global] = ACTIONS(2744), + [anon_sym_type] = ACTIONS(2744), + [anon_sym_PIPE] = ACTIONS(2744), + [anon_sym_fn] = ACTIONS(2744), + [anon_sym_PLUS] = ACTIONS(2744), + [anon_sym_DASH] = ACTIONS(2744), + [anon_sym_STAR] = ACTIONS(2744), + [anon_sym_struct] = ACTIONS(2744), + [anon_sym_union] = ACTIONS(2744), + [anon_sym_pub] = ACTIONS(2744), + [anon_sym_mut] = ACTIONS(2744), + [anon_sym_enum] = ACTIONS(2744), + [anon_sym_interface] = ACTIONS(2744), + [anon_sym_QMARK] = ACTIONS(2744), + [anon_sym_BANG] = ACTIONS(2744), + [anon_sym_go] = ACTIONS(2744), + [anon_sym_spawn] = ACTIONS(2744), + [anon_sym_json_DOTdecode] = ACTIONS(2744), + [anon_sym_LBRACK2] = ACTIONS(2744), + [anon_sym_TILDE] = ACTIONS(2744), + [anon_sym_CARET] = ACTIONS(2744), + [anon_sym_AMP] = ACTIONS(2744), + [anon_sym_LT_DASH] = ACTIONS(2744), + [sym_none] = ACTIONS(2744), + [sym_true] = ACTIONS(2744), + [sym_false] = ACTIONS(2744), + [sym_nil] = ACTIONS(2744), + [anon_sym_if] = ACTIONS(2744), + [anon_sym_DOLLARif] = ACTIONS(2744), + [anon_sym_match] = ACTIONS(2744), + [anon_sym_select] = ACTIONS(2744), + [anon_sym_lock] = ACTIONS(2744), + [anon_sym_rlock] = ACTIONS(2744), + [anon_sym_unsafe] = ACTIONS(2744), + [anon_sym_sql] = ACTIONS(2744), + [sym_int_literal] = ACTIONS(2744), + [sym_float_literal] = ACTIONS(2744), + [sym_rune_literal] = ACTIONS(2744), + [sym_pseudo_compile_time_identifier] = ACTIONS(2744), + [anon_sym_shared] = ACTIONS(2744), + [anon_sym_map_LBRACK] = ACTIONS(2744), + [anon_sym_chan] = ACTIONS(2744), + [anon_sym_thread] = ACTIONS(2744), + [anon_sym_atomic] = ACTIONS(2744), + [anon_sym_assert] = ACTIONS(2744), + [anon_sym_defer] = ACTIONS(2744), + [anon_sym_goto] = ACTIONS(2744), + [anon_sym_break] = ACTIONS(2744), + [anon_sym_continue] = ACTIONS(2744), + [anon_sym_return] = ACTIONS(2744), + [anon_sym_DOLLARfor] = ACTIONS(2744), + [anon_sym_for] = ACTIONS(2744), + [anon_sym_POUND] = ACTIONS(2744), + [anon_sym_asm] = ACTIONS(2744), + [anon_sym_AT_LBRACK] = ACTIONS(2744), + [sym___double_quote] = ACTIONS(2744), + [sym___single_quote] = ACTIONS(2744), + [sym___c_double_quote] = ACTIONS(2744), + [sym___c_single_quote] = ACTIONS(2744), + [sym___r_double_quote] = ACTIONS(2744), + [sym___r_single_quote] = ACTIONS(2744), }, [1473] = { [sym_line_comment] = STATE(1473), [sym_block_comment] = STATE(1473), - [sym_block] = STATE(1551), - [ts_builtin_sym_end] = ACTIONS(4142), - [sym_identifier] = ACTIONS(4144), - [anon_sym_LF] = ACTIONS(4144), - [anon_sym_CR] = ACTIONS(4144), - [anon_sym_CR_LF] = ACTIONS(4144), + [ts_builtin_sym_end] = ACTIONS(2722), + [sym_identifier] = ACTIONS(2724), + [anon_sym_LF] = ACTIONS(2724), + [anon_sym_CR] = ACTIONS(2724), + [anon_sym_CR_LF] = ACTIONS(2724), [anon_sym_SLASH_SLASH] = ACTIONS(497), [anon_sym_SLASH_STAR] = ACTIONS(499), - [anon_sym_DOT] = ACTIONS(4144), - [anon_sym_LBRACE] = ACTIONS(4012), - [anon_sym_const] = ACTIONS(4144), - [anon_sym_LPAREN] = ACTIONS(4144), - [anon_sym___global] = ACTIONS(4144), - [anon_sym_type] = ACTIONS(4144), - [anon_sym_fn] = ACTIONS(4144), - [anon_sym_PLUS] = ACTIONS(4144), - [anon_sym_DASH] = ACTIONS(4144), - [anon_sym_STAR] = ACTIONS(4144), - [anon_sym_struct] = ACTIONS(4144), - [anon_sym_union] = ACTIONS(4144), - [anon_sym_pub] = ACTIONS(4144), - [anon_sym_mut] = ACTIONS(4144), - [anon_sym_enum] = ACTIONS(4144), - [anon_sym_interface] = ACTIONS(4144), - [anon_sym_QMARK] = ACTIONS(4144), - [anon_sym_BANG] = ACTIONS(4144), - [anon_sym_go] = ACTIONS(4144), - [anon_sym_spawn] = ACTIONS(4144), - [anon_sym_json_DOTdecode] = ACTIONS(4144), - [anon_sym_LBRACK2] = ACTIONS(4144), - [anon_sym_TILDE] = ACTIONS(4144), - [anon_sym_CARET] = ACTIONS(4144), - [anon_sym_AMP] = ACTIONS(4144), - [anon_sym_LT_DASH] = ACTIONS(4144), - [sym_none] = ACTIONS(4144), - [sym_true] = ACTIONS(4144), - [sym_false] = ACTIONS(4144), - [sym_nil] = ACTIONS(4144), - [anon_sym_if] = ACTIONS(4144), - [anon_sym_DOLLARif] = ACTIONS(4144), - [anon_sym_match] = ACTIONS(4144), - [anon_sym_select] = ACTIONS(4144), - [anon_sym_lock] = ACTIONS(4144), - [anon_sym_rlock] = ACTIONS(4144), - [anon_sym_unsafe] = ACTIONS(4144), - [anon_sym_sql] = ACTIONS(4144), - [sym_int_literal] = ACTIONS(4144), - [sym_float_literal] = ACTIONS(4144), - [sym_rune_literal] = ACTIONS(4144), - [sym_pseudo_compile_time_identifier] = ACTIONS(4144), - [anon_sym_shared] = ACTIONS(4144), - [anon_sym_map_LBRACK] = ACTIONS(4144), - [anon_sym_chan] = ACTIONS(4144), - [anon_sym_thread] = ACTIONS(4144), - [anon_sym_atomic] = ACTIONS(4144), - [anon_sym_assert] = ACTIONS(4144), - [anon_sym_defer] = ACTIONS(4144), - [anon_sym_goto] = ACTIONS(4144), - [anon_sym_break] = ACTIONS(4144), - [anon_sym_continue] = ACTIONS(4144), - [anon_sym_return] = ACTIONS(4144), - [anon_sym_DOLLARfor] = ACTIONS(4144), - [anon_sym_for] = ACTIONS(4144), - [anon_sym_POUND] = ACTIONS(4144), - [anon_sym_asm] = ACTIONS(4144), - [anon_sym_AT_LBRACK] = ACTIONS(4144), - [sym___double_quote] = ACTIONS(4144), - [sym___single_quote] = ACTIONS(4144), - [sym___c_double_quote] = ACTIONS(4144), - [sym___c_single_quote] = ACTIONS(4144), - [sym___r_double_quote] = ACTIONS(4144), - [sym___r_single_quote] = ACTIONS(4144), + [anon_sym_DOT] = ACTIONS(2724), + [anon_sym_LBRACE] = ACTIONS(2724), + [anon_sym_const] = ACTIONS(2724), + [anon_sym_LPAREN] = ACTIONS(2724), + [anon_sym___global] = ACTIONS(2724), + [anon_sym_type] = ACTIONS(2724), + [anon_sym_PIPE] = ACTIONS(2724), + [anon_sym_fn] = ACTIONS(2724), + [anon_sym_PLUS] = ACTIONS(2724), + [anon_sym_DASH] = ACTIONS(2724), + [anon_sym_STAR] = ACTIONS(2724), + [anon_sym_struct] = ACTIONS(2724), + [anon_sym_union] = ACTIONS(2724), + [anon_sym_pub] = ACTIONS(2724), + [anon_sym_mut] = ACTIONS(2724), + [anon_sym_enum] = ACTIONS(2724), + [anon_sym_interface] = ACTIONS(2724), + [anon_sym_QMARK] = ACTIONS(2724), + [anon_sym_BANG] = ACTIONS(2724), + [anon_sym_go] = ACTIONS(2724), + [anon_sym_spawn] = ACTIONS(2724), + [anon_sym_json_DOTdecode] = ACTIONS(2724), + [anon_sym_LBRACK2] = ACTIONS(2724), + [anon_sym_TILDE] = ACTIONS(2724), + [anon_sym_CARET] = ACTIONS(2724), + [anon_sym_AMP] = ACTIONS(2724), + [anon_sym_LT_DASH] = ACTIONS(2724), + [sym_none] = ACTIONS(2724), + [sym_true] = ACTIONS(2724), + [sym_false] = ACTIONS(2724), + [sym_nil] = ACTIONS(2724), + [anon_sym_if] = ACTIONS(2724), + [anon_sym_DOLLARif] = ACTIONS(2724), + [anon_sym_match] = ACTIONS(2724), + [anon_sym_select] = ACTIONS(2724), + [anon_sym_lock] = ACTIONS(2724), + [anon_sym_rlock] = ACTIONS(2724), + [anon_sym_unsafe] = ACTIONS(2724), + [anon_sym_sql] = ACTIONS(2724), + [sym_int_literal] = ACTIONS(2724), + [sym_float_literal] = ACTIONS(2724), + [sym_rune_literal] = ACTIONS(2724), + [sym_pseudo_compile_time_identifier] = ACTIONS(2724), + [anon_sym_shared] = ACTIONS(2724), + [anon_sym_map_LBRACK] = ACTIONS(2724), + [anon_sym_chan] = ACTIONS(2724), + [anon_sym_thread] = ACTIONS(2724), + [anon_sym_atomic] = ACTIONS(2724), + [anon_sym_assert] = ACTIONS(2724), + [anon_sym_defer] = ACTIONS(2724), + [anon_sym_goto] = ACTIONS(2724), + [anon_sym_break] = ACTIONS(2724), + [anon_sym_continue] = ACTIONS(2724), + [anon_sym_return] = ACTIONS(2724), + [anon_sym_DOLLARfor] = ACTIONS(2724), + [anon_sym_for] = ACTIONS(2724), + [anon_sym_POUND] = ACTIONS(2724), + [anon_sym_asm] = ACTIONS(2724), + [anon_sym_AT_LBRACK] = ACTIONS(2724), + [sym___double_quote] = ACTIONS(2724), + [sym___single_quote] = ACTIONS(2724), + [sym___c_double_quote] = ACTIONS(2724), + [sym___c_single_quote] = ACTIONS(2724), + [sym___r_double_quote] = ACTIONS(2724), + [sym___r_single_quote] = ACTIONS(2724), }, [1474] = { [sym_line_comment] = STATE(1474), [sym_block_comment] = STATE(1474), - [ts_builtin_sym_end] = ACTIONS(2211), - [sym_identifier] = ACTIONS(2213), - [anon_sym_LF] = ACTIONS(2213), - [anon_sym_CR] = ACTIONS(2213), - [anon_sym_CR_LF] = ACTIONS(2213), + [ts_builtin_sym_end] = ACTIONS(2135), + [sym_identifier] = ACTIONS(2137), + [anon_sym_LF] = ACTIONS(2137), + [anon_sym_CR] = ACTIONS(2137), + [anon_sym_CR_LF] = ACTIONS(2137), [anon_sym_SLASH_SLASH] = ACTIONS(497), [anon_sym_SLASH_STAR] = ACTIONS(499), - [anon_sym_DOT] = ACTIONS(2213), - [anon_sym_LBRACE] = ACTIONS(2213), - [anon_sym_const] = ACTIONS(2213), - [anon_sym_LPAREN] = ACTIONS(2213), - [anon_sym___global] = ACTIONS(2213), - [anon_sym_type] = ACTIONS(2213), - [anon_sym_PIPE] = ACTIONS(2213), - [anon_sym_fn] = ACTIONS(2213), - [anon_sym_PLUS] = ACTIONS(2213), - [anon_sym_DASH] = ACTIONS(2213), - [anon_sym_STAR] = ACTIONS(2213), - [anon_sym_struct] = ACTIONS(2213), - [anon_sym_union] = ACTIONS(2213), - [anon_sym_pub] = ACTIONS(2213), - [anon_sym_mut] = ACTIONS(2213), - [anon_sym_enum] = ACTIONS(2213), - [anon_sym_interface] = ACTIONS(2213), - [anon_sym_QMARK] = ACTIONS(2213), - [anon_sym_BANG] = ACTIONS(2213), - [anon_sym_go] = ACTIONS(2213), - [anon_sym_spawn] = ACTIONS(2213), - [anon_sym_json_DOTdecode] = ACTIONS(2213), - [anon_sym_LBRACK2] = ACTIONS(2213), - [anon_sym_TILDE] = ACTIONS(2213), - [anon_sym_CARET] = ACTIONS(2213), - [anon_sym_AMP] = ACTIONS(2213), - [anon_sym_LT_DASH] = ACTIONS(2213), - [sym_none] = ACTIONS(2213), - [sym_true] = ACTIONS(2213), - [sym_false] = ACTIONS(2213), - [sym_nil] = ACTIONS(2213), - [anon_sym_if] = ACTIONS(2213), - [anon_sym_DOLLARif] = ACTIONS(2213), - [anon_sym_match] = ACTIONS(2213), - [anon_sym_select] = ACTIONS(2213), - [anon_sym_lock] = ACTIONS(2213), - [anon_sym_rlock] = ACTIONS(2213), - [anon_sym_unsafe] = ACTIONS(2213), - [anon_sym_sql] = ACTIONS(2213), - [sym_int_literal] = ACTIONS(2213), - [sym_float_literal] = ACTIONS(2213), - [sym_rune_literal] = ACTIONS(2213), - [sym_pseudo_compile_time_identifier] = ACTIONS(2213), - [anon_sym_shared] = ACTIONS(2213), - [anon_sym_map_LBRACK] = ACTIONS(2213), - [anon_sym_chan] = ACTIONS(2213), - [anon_sym_thread] = ACTIONS(2213), - [anon_sym_atomic] = ACTIONS(2213), - [anon_sym_assert] = ACTIONS(2213), - [anon_sym_defer] = ACTIONS(2213), - [anon_sym_goto] = ACTIONS(2213), - [anon_sym_break] = ACTIONS(2213), - [anon_sym_continue] = ACTIONS(2213), - [anon_sym_return] = ACTIONS(2213), - [anon_sym_DOLLARfor] = ACTIONS(2213), - [anon_sym_for] = ACTIONS(2213), - [anon_sym_POUND] = ACTIONS(2213), - [anon_sym_asm] = ACTIONS(2213), - [anon_sym_AT_LBRACK] = ACTIONS(2213), - [sym___double_quote] = ACTIONS(2213), - [sym___single_quote] = ACTIONS(2213), - [sym___c_double_quote] = ACTIONS(2213), - [sym___c_single_quote] = ACTIONS(2213), - [sym___r_double_quote] = ACTIONS(2213), - [sym___r_single_quote] = ACTIONS(2213), + [anon_sym_DOT] = ACTIONS(2137), + [anon_sym_LBRACE] = ACTIONS(2137), + [anon_sym_const] = ACTIONS(2137), + [anon_sym_LPAREN] = ACTIONS(2137), + [anon_sym___global] = ACTIONS(2137), + [anon_sym_type] = ACTIONS(2137), + [anon_sym_PIPE] = ACTIONS(2137), + [anon_sym_fn] = ACTIONS(2137), + [anon_sym_PLUS] = ACTIONS(2137), + [anon_sym_DASH] = ACTIONS(2137), + [anon_sym_STAR] = ACTIONS(2137), + [anon_sym_struct] = ACTIONS(2137), + [anon_sym_union] = ACTIONS(2137), + [anon_sym_pub] = ACTIONS(2137), + [anon_sym_mut] = ACTIONS(2137), + [anon_sym_enum] = ACTIONS(2137), + [anon_sym_interface] = ACTIONS(2137), + [anon_sym_QMARK] = ACTIONS(2137), + [anon_sym_BANG] = ACTIONS(2137), + [anon_sym_go] = ACTIONS(2137), + [anon_sym_spawn] = ACTIONS(2137), + [anon_sym_json_DOTdecode] = ACTIONS(2137), + [anon_sym_LBRACK2] = ACTIONS(2137), + [anon_sym_TILDE] = ACTIONS(2137), + [anon_sym_CARET] = ACTIONS(2137), + [anon_sym_AMP] = ACTIONS(2137), + [anon_sym_LT_DASH] = ACTIONS(2137), + [sym_none] = ACTIONS(2137), + [sym_true] = ACTIONS(2137), + [sym_false] = ACTIONS(2137), + [sym_nil] = ACTIONS(2137), + [anon_sym_if] = ACTIONS(2137), + [anon_sym_DOLLARif] = ACTIONS(2137), + [anon_sym_match] = ACTIONS(2137), + [anon_sym_select] = ACTIONS(2137), + [anon_sym_lock] = ACTIONS(2137), + [anon_sym_rlock] = ACTIONS(2137), + [anon_sym_unsafe] = ACTIONS(2137), + [anon_sym_sql] = ACTIONS(2137), + [sym_int_literal] = ACTIONS(2137), + [sym_float_literal] = ACTIONS(2137), + [sym_rune_literal] = ACTIONS(2137), + [sym_pseudo_compile_time_identifier] = ACTIONS(2137), + [anon_sym_shared] = ACTIONS(2137), + [anon_sym_map_LBRACK] = ACTIONS(2137), + [anon_sym_chan] = ACTIONS(2137), + [anon_sym_thread] = ACTIONS(2137), + [anon_sym_atomic] = ACTIONS(2137), + [anon_sym_assert] = ACTIONS(2137), + [anon_sym_defer] = ACTIONS(2137), + [anon_sym_goto] = ACTIONS(2137), + [anon_sym_break] = ACTIONS(2137), + [anon_sym_continue] = ACTIONS(2137), + [anon_sym_return] = ACTIONS(2137), + [anon_sym_DOLLARfor] = ACTIONS(2137), + [anon_sym_for] = ACTIONS(2137), + [anon_sym_POUND] = ACTIONS(2137), + [anon_sym_asm] = ACTIONS(2137), + [anon_sym_AT_LBRACK] = ACTIONS(2137), + [sym___double_quote] = ACTIONS(2137), + [sym___single_quote] = ACTIONS(2137), + [sym___c_double_quote] = ACTIONS(2137), + [sym___c_single_quote] = ACTIONS(2137), + [sym___r_double_quote] = ACTIONS(2137), + [sym___r_single_quote] = ACTIONS(2137), }, [1475] = { [sym_line_comment] = STATE(1475), [sym_block_comment] = STATE(1475), - [sym_block] = STATE(1527), - [ts_builtin_sym_end] = ACTIONS(4146), - [sym_identifier] = ACTIONS(4148), - [anon_sym_LF] = ACTIONS(4148), - [anon_sym_CR] = ACTIONS(4148), - [anon_sym_CR_LF] = ACTIONS(4148), + [ts_builtin_sym_end] = ACTIONS(2712), + [sym_identifier] = ACTIONS(2714), + [anon_sym_LF] = ACTIONS(2714), + [anon_sym_CR] = ACTIONS(2714), + [anon_sym_CR_LF] = ACTIONS(2714), [anon_sym_SLASH_SLASH] = ACTIONS(497), [anon_sym_SLASH_STAR] = ACTIONS(499), - [anon_sym_DOT] = ACTIONS(4148), - [anon_sym_LBRACE] = ACTIONS(4012), - [anon_sym_const] = ACTIONS(4148), - [anon_sym_LPAREN] = ACTIONS(4148), - [anon_sym___global] = ACTIONS(4148), - [anon_sym_type] = ACTIONS(4148), - [anon_sym_fn] = ACTIONS(4148), - [anon_sym_PLUS] = ACTIONS(4148), - [anon_sym_DASH] = ACTIONS(4148), - [anon_sym_STAR] = ACTIONS(4148), - [anon_sym_struct] = ACTIONS(4148), - [anon_sym_union] = ACTIONS(4148), - [anon_sym_pub] = ACTIONS(4148), - [anon_sym_mut] = ACTIONS(4148), - [anon_sym_enum] = ACTIONS(4148), - [anon_sym_interface] = ACTIONS(4148), - [anon_sym_QMARK] = ACTIONS(4148), - [anon_sym_BANG] = ACTIONS(4148), - [anon_sym_go] = ACTIONS(4148), - [anon_sym_spawn] = ACTIONS(4148), - [anon_sym_json_DOTdecode] = ACTIONS(4148), - [anon_sym_LBRACK2] = ACTIONS(4148), - [anon_sym_TILDE] = ACTIONS(4148), - [anon_sym_CARET] = ACTIONS(4148), - [anon_sym_AMP] = ACTIONS(4148), - [anon_sym_LT_DASH] = ACTIONS(4148), - [sym_none] = ACTIONS(4148), - [sym_true] = ACTIONS(4148), - [sym_false] = ACTIONS(4148), - [sym_nil] = ACTIONS(4148), - [anon_sym_if] = ACTIONS(4148), - [anon_sym_DOLLARif] = ACTIONS(4148), - [anon_sym_match] = ACTIONS(4148), - [anon_sym_select] = ACTIONS(4148), - [anon_sym_lock] = ACTIONS(4148), - [anon_sym_rlock] = ACTIONS(4148), - [anon_sym_unsafe] = ACTIONS(4148), - [anon_sym_sql] = ACTIONS(4148), - [sym_int_literal] = ACTIONS(4148), - [sym_float_literal] = ACTIONS(4148), - [sym_rune_literal] = ACTIONS(4148), - [sym_pseudo_compile_time_identifier] = ACTIONS(4148), - [anon_sym_shared] = ACTIONS(4148), - [anon_sym_map_LBRACK] = ACTIONS(4148), - [anon_sym_chan] = ACTIONS(4148), - [anon_sym_thread] = ACTIONS(4148), - [anon_sym_atomic] = ACTIONS(4148), - [anon_sym_assert] = ACTIONS(4148), - [anon_sym_defer] = ACTIONS(4148), - [anon_sym_goto] = ACTIONS(4148), - [anon_sym_break] = ACTIONS(4148), - [anon_sym_continue] = ACTIONS(4148), - [anon_sym_return] = ACTIONS(4148), - [anon_sym_DOLLARfor] = ACTIONS(4148), - [anon_sym_for] = ACTIONS(4148), - [anon_sym_POUND] = ACTIONS(4148), - [anon_sym_asm] = ACTIONS(4148), - [anon_sym_AT_LBRACK] = ACTIONS(4148), - [sym___double_quote] = ACTIONS(4148), - [sym___single_quote] = ACTIONS(4148), - [sym___c_double_quote] = ACTIONS(4148), - [sym___c_single_quote] = ACTIONS(4148), - [sym___r_double_quote] = ACTIONS(4148), - [sym___r_single_quote] = ACTIONS(4148), + [anon_sym_DOT] = ACTIONS(2714), + [anon_sym_LBRACE] = ACTIONS(2714), + [anon_sym_const] = ACTIONS(2714), + [anon_sym_LPAREN] = ACTIONS(2714), + [anon_sym___global] = ACTIONS(2714), + [anon_sym_type] = ACTIONS(2714), + [anon_sym_PIPE] = ACTIONS(2714), + [anon_sym_fn] = ACTIONS(2714), + [anon_sym_PLUS] = ACTIONS(2714), + [anon_sym_DASH] = ACTIONS(2714), + [anon_sym_STAR] = ACTIONS(2714), + [anon_sym_struct] = ACTIONS(2714), + [anon_sym_union] = ACTIONS(2714), + [anon_sym_pub] = ACTIONS(2714), + [anon_sym_mut] = ACTIONS(2714), + [anon_sym_enum] = ACTIONS(2714), + [anon_sym_interface] = ACTIONS(2714), + [anon_sym_QMARK] = ACTIONS(2714), + [anon_sym_BANG] = ACTIONS(2714), + [anon_sym_go] = ACTIONS(2714), + [anon_sym_spawn] = ACTIONS(2714), + [anon_sym_json_DOTdecode] = ACTIONS(2714), + [anon_sym_LBRACK2] = ACTIONS(2714), + [anon_sym_TILDE] = ACTIONS(2714), + [anon_sym_CARET] = ACTIONS(2714), + [anon_sym_AMP] = ACTIONS(2714), + [anon_sym_LT_DASH] = ACTIONS(2714), + [sym_none] = ACTIONS(2714), + [sym_true] = ACTIONS(2714), + [sym_false] = ACTIONS(2714), + [sym_nil] = ACTIONS(2714), + [anon_sym_if] = ACTIONS(2714), + [anon_sym_DOLLARif] = ACTIONS(2714), + [anon_sym_match] = ACTIONS(2714), + [anon_sym_select] = ACTIONS(2714), + [anon_sym_lock] = ACTIONS(2714), + [anon_sym_rlock] = ACTIONS(2714), + [anon_sym_unsafe] = ACTIONS(2714), + [anon_sym_sql] = ACTIONS(2714), + [sym_int_literal] = ACTIONS(2714), + [sym_float_literal] = ACTIONS(2714), + [sym_rune_literal] = ACTIONS(2714), + [sym_pseudo_compile_time_identifier] = ACTIONS(2714), + [anon_sym_shared] = ACTIONS(2714), + [anon_sym_map_LBRACK] = ACTIONS(2714), + [anon_sym_chan] = ACTIONS(2714), + [anon_sym_thread] = ACTIONS(2714), + [anon_sym_atomic] = ACTIONS(2714), + [anon_sym_assert] = ACTIONS(2714), + [anon_sym_defer] = ACTIONS(2714), + [anon_sym_goto] = ACTIONS(2714), + [anon_sym_break] = ACTIONS(2714), + [anon_sym_continue] = ACTIONS(2714), + [anon_sym_return] = ACTIONS(2714), + [anon_sym_DOLLARfor] = ACTIONS(2714), + [anon_sym_for] = ACTIONS(2714), + [anon_sym_POUND] = ACTIONS(2714), + [anon_sym_asm] = ACTIONS(2714), + [anon_sym_AT_LBRACK] = ACTIONS(2714), + [sym___double_quote] = ACTIONS(2714), + [sym___single_quote] = ACTIONS(2714), + [sym___c_double_quote] = ACTIONS(2714), + [sym___c_single_quote] = ACTIONS(2714), + [sym___r_double_quote] = ACTIONS(2714), + [sym___r_single_quote] = ACTIONS(2714), }, [1476] = { [sym_line_comment] = STATE(1476), [sym_block_comment] = STATE(1476), - [ts_builtin_sym_end] = ACTIONS(2215), - [sym_identifier] = ACTIONS(2217), - [anon_sym_LF] = ACTIONS(2217), - [anon_sym_CR] = ACTIONS(2217), - [anon_sym_CR_LF] = ACTIONS(2217), + [ts_builtin_sym_end] = ACTIONS(2726), + [sym_identifier] = ACTIONS(2728), + [anon_sym_LF] = ACTIONS(2728), + [anon_sym_CR] = ACTIONS(2728), + [anon_sym_CR_LF] = ACTIONS(2728), [anon_sym_SLASH_SLASH] = ACTIONS(497), [anon_sym_SLASH_STAR] = ACTIONS(499), - [anon_sym_DOT] = ACTIONS(2217), - [anon_sym_LBRACE] = ACTIONS(2217), - [anon_sym_const] = ACTIONS(2217), - [anon_sym_LPAREN] = ACTIONS(2217), - [anon_sym___global] = ACTIONS(2217), - [anon_sym_type] = ACTIONS(2217), - [anon_sym_PIPE] = ACTIONS(2217), - [anon_sym_fn] = ACTIONS(2217), - [anon_sym_PLUS] = ACTIONS(2217), - [anon_sym_DASH] = ACTIONS(2217), - [anon_sym_STAR] = ACTIONS(2217), - [anon_sym_struct] = ACTIONS(2217), - [anon_sym_union] = ACTIONS(2217), - [anon_sym_pub] = ACTIONS(2217), - [anon_sym_mut] = ACTIONS(2217), - [anon_sym_enum] = ACTIONS(2217), - [anon_sym_interface] = ACTIONS(2217), - [anon_sym_QMARK] = ACTIONS(2217), - [anon_sym_BANG] = ACTIONS(2217), - [anon_sym_go] = ACTIONS(2217), - [anon_sym_spawn] = ACTIONS(2217), - [anon_sym_json_DOTdecode] = ACTIONS(2217), - [anon_sym_LBRACK2] = ACTIONS(2217), - [anon_sym_TILDE] = ACTIONS(2217), - [anon_sym_CARET] = ACTIONS(2217), - [anon_sym_AMP] = ACTIONS(2217), - [anon_sym_LT_DASH] = ACTIONS(2217), - [sym_none] = ACTIONS(2217), - [sym_true] = ACTIONS(2217), - [sym_false] = ACTIONS(2217), - [sym_nil] = ACTIONS(2217), - [anon_sym_if] = ACTIONS(2217), - [anon_sym_DOLLARif] = ACTIONS(2217), - [anon_sym_match] = ACTIONS(2217), - [anon_sym_select] = ACTIONS(2217), - [anon_sym_lock] = ACTIONS(2217), - [anon_sym_rlock] = ACTIONS(2217), - [anon_sym_unsafe] = ACTIONS(2217), - [anon_sym_sql] = ACTIONS(2217), - [sym_int_literal] = ACTIONS(2217), - [sym_float_literal] = ACTIONS(2217), - [sym_rune_literal] = ACTIONS(2217), - [sym_pseudo_compile_time_identifier] = ACTIONS(2217), - [anon_sym_shared] = ACTIONS(2217), - [anon_sym_map_LBRACK] = ACTIONS(2217), - [anon_sym_chan] = ACTIONS(2217), - [anon_sym_thread] = ACTIONS(2217), - [anon_sym_atomic] = ACTIONS(2217), - [anon_sym_assert] = ACTIONS(2217), - [anon_sym_defer] = ACTIONS(2217), - [anon_sym_goto] = ACTIONS(2217), - [anon_sym_break] = ACTIONS(2217), - [anon_sym_continue] = ACTIONS(2217), - [anon_sym_return] = ACTIONS(2217), - [anon_sym_DOLLARfor] = ACTIONS(2217), - [anon_sym_for] = ACTIONS(2217), - [anon_sym_POUND] = ACTIONS(2217), - [anon_sym_asm] = ACTIONS(2217), - [anon_sym_AT_LBRACK] = ACTIONS(2217), - [sym___double_quote] = ACTIONS(2217), - [sym___single_quote] = ACTIONS(2217), - [sym___c_double_quote] = ACTIONS(2217), - [sym___c_single_quote] = ACTIONS(2217), - [sym___r_double_quote] = ACTIONS(2217), - [sym___r_single_quote] = ACTIONS(2217), + [anon_sym_DOT] = ACTIONS(2728), + [anon_sym_LBRACE] = ACTIONS(2728), + [anon_sym_const] = ACTIONS(2728), + [anon_sym_LPAREN] = ACTIONS(2728), + [anon_sym___global] = ACTIONS(2728), + [anon_sym_type] = ACTIONS(2728), + [anon_sym_PIPE] = ACTIONS(2728), + [anon_sym_fn] = ACTIONS(2728), + [anon_sym_PLUS] = ACTIONS(2728), + [anon_sym_DASH] = ACTIONS(2728), + [anon_sym_STAR] = ACTIONS(2728), + [anon_sym_struct] = ACTIONS(2728), + [anon_sym_union] = ACTIONS(2728), + [anon_sym_pub] = ACTIONS(2728), + [anon_sym_mut] = ACTIONS(2728), + [anon_sym_enum] = ACTIONS(2728), + [anon_sym_interface] = ACTIONS(2728), + [anon_sym_QMARK] = ACTIONS(2728), + [anon_sym_BANG] = ACTIONS(2728), + [anon_sym_go] = ACTIONS(2728), + [anon_sym_spawn] = ACTIONS(2728), + [anon_sym_json_DOTdecode] = ACTIONS(2728), + [anon_sym_LBRACK2] = ACTIONS(2728), + [anon_sym_TILDE] = ACTIONS(2728), + [anon_sym_CARET] = ACTIONS(2728), + [anon_sym_AMP] = ACTIONS(2728), + [anon_sym_LT_DASH] = ACTIONS(2728), + [sym_none] = ACTIONS(2728), + [sym_true] = ACTIONS(2728), + [sym_false] = ACTIONS(2728), + [sym_nil] = ACTIONS(2728), + [anon_sym_if] = ACTIONS(2728), + [anon_sym_DOLLARif] = ACTIONS(2728), + [anon_sym_match] = ACTIONS(2728), + [anon_sym_select] = ACTIONS(2728), + [anon_sym_lock] = ACTIONS(2728), + [anon_sym_rlock] = ACTIONS(2728), + [anon_sym_unsafe] = ACTIONS(2728), + [anon_sym_sql] = ACTIONS(2728), + [sym_int_literal] = ACTIONS(2728), + [sym_float_literal] = ACTIONS(2728), + [sym_rune_literal] = ACTIONS(2728), + [sym_pseudo_compile_time_identifier] = ACTIONS(2728), + [anon_sym_shared] = ACTIONS(2728), + [anon_sym_map_LBRACK] = ACTIONS(2728), + [anon_sym_chan] = ACTIONS(2728), + [anon_sym_thread] = ACTIONS(2728), + [anon_sym_atomic] = ACTIONS(2728), + [anon_sym_assert] = ACTIONS(2728), + [anon_sym_defer] = ACTIONS(2728), + [anon_sym_goto] = ACTIONS(2728), + [anon_sym_break] = ACTIONS(2728), + [anon_sym_continue] = ACTIONS(2728), + [anon_sym_return] = ACTIONS(2728), + [anon_sym_DOLLARfor] = ACTIONS(2728), + [anon_sym_for] = ACTIONS(2728), + [anon_sym_POUND] = ACTIONS(2728), + [anon_sym_asm] = ACTIONS(2728), + [anon_sym_AT_LBRACK] = ACTIONS(2728), + [sym___double_quote] = ACTIONS(2728), + [sym___single_quote] = ACTIONS(2728), + [sym___c_double_quote] = ACTIONS(2728), + [sym___c_single_quote] = ACTIONS(2728), + [sym___r_double_quote] = ACTIONS(2728), + [sym___r_single_quote] = ACTIONS(2728), }, [1477] = { [sym_line_comment] = STATE(1477), [sym_block_comment] = STATE(1477), - [ts_builtin_sym_end] = ACTIONS(2223), - [sym_identifier] = ACTIONS(2225), - [anon_sym_LF] = ACTIONS(2225), - [anon_sym_CR] = ACTIONS(2225), - [anon_sym_CR_LF] = ACTIONS(2225), + [ts_builtin_sym_end] = ACTIONS(2912), + [sym_identifier] = ACTIONS(2914), + [anon_sym_LF] = ACTIONS(2914), + [anon_sym_CR] = ACTIONS(2914), + [anon_sym_CR_LF] = ACTIONS(2914), [anon_sym_SLASH_SLASH] = ACTIONS(497), [anon_sym_SLASH_STAR] = ACTIONS(499), - [anon_sym_DOT] = ACTIONS(2225), - [anon_sym_LBRACE] = ACTIONS(2225), - [anon_sym_const] = ACTIONS(2225), - [anon_sym_LPAREN] = ACTIONS(2225), - [anon_sym___global] = ACTIONS(2225), - [anon_sym_type] = ACTIONS(2225), - [anon_sym_PIPE] = ACTIONS(2225), - [anon_sym_fn] = ACTIONS(2225), - [anon_sym_PLUS] = ACTIONS(2225), - [anon_sym_DASH] = ACTIONS(2225), - [anon_sym_STAR] = ACTIONS(2225), - [anon_sym_struct] = ACTIONS(2225), - [anon_sym_union] = ACTIONS(2225), - [anon_sym_pub] = ACTIONS(2225), - [anon_sym_mut] = ACTIONS(2225), - [anon_sym_enum] = ACTIONS(2225), - [anon_sym_interface] = ACTIONS(2225), - [anon_sym_QMARK] = ACTIONS(2225), - [anon_sym_BANG] = ACTIONS(2225), - [anon_sym_go] = ACTIONS(2225), - [anon_sym_spawn] = ACTIONS(2225), - [anon_sym_json_DOTdecode] = ACTIONS(2225), - [anon_sym_LBRACK2] = ACTIONS(2225), - [anon_sym_TILDE] = ACTIONS(2225), - [anon_sym_CARET] = ACTIONS(2225), - [anon_sym_AMP] = ACTIONS(2225), - [anon_sym_LT_DASH] = ACTIONS(2225), - [sym_none] = ACTIONS(2225), - [sym_true] = ACTIONS(2225), - [sym_false] = ACTIONS(2225), - [sym_nil] = ACTIONS(2225), - [anon_sym_if] = ACTIONS(2225), - [anon_sym_DOLLARif] = ACTIONS(2225), - [anon_sym_match] = ACTIONS(2225), - [anon_sym_select] = ACTIONS(2225), - [anon_sym_lock] = ACTIONS(2225), - [anon_sym_rlock] = ACTIONS(2225), - [anon_sym_unsafe] = ACTIONS(2225), - [anon_sym_sql] = ACTIONS(2225), - [sym_int_literal] = ACTIONS(2225), - [sym_float_literal] = ACTIONS(2225), - [sym_rune_literal] = ACTIONS(2225), - [sym_pseudo_compile_time_identifier] = ACTIONS(2225), - [anon_sym_shared] = ACTIONS(2225), - [anon_sym_map_LBRACK] = ACTIONS(2225), - [anon_sym_chan] = ACTIONS(2225), - [anon_sym_thread] = ACTIONS(2225), - [anon_sym_atomic] = ACTIONS(2225), - [anon_sym_assert] = ACTIONS(2225), - [anon_sym_defer] = ACTIONS(2225), - [anon_sym_goto] = ACTIONS(2225), - [anon_sym_break] = ACTIONS(2225), - [anon_sym_continue] = ACTIONS(2225), - [anon_sym_return] = ACTIONS(2225), - [anon_sym_DOLLARfor] = ACTIONS(2225), - [anon_sym_for] = ACTIONS(2225), - [anon_sym_POUND] = ACTIONS(2225), - [anon_sym_asm] = ACTIONS(2225), - [anon_sym_AT_LBRACK] = ACTIONS(2225), - [sym___double_quote] = ACTIONS(2225), - [sym___single_quote] = ACTIONS(2225), - [sym___c_double_quote] = ACTIONS(2225), - [sym___c_single_quote] = ACTIONS(2225), - [sym___r_double_quote] = ACTIONS(2225), - [sym___r_single_quote] = ACTIONS(2225), + [anon_sym_DOT] = ACTIONS(2914), + [anon_sym_LBRACE] = ACTIONS(2914), + [anon_sym_const] = ACTIONS(2914), + [anon_sym_LPAREN] = ACTIONS(2914), + [anon_sym___global] = ACTIONS(2914), + [anon_sym_type] = ACTIONS(2914), + [anon_sym_PIPE] = ACTIONS(2914), + [anon_sym_fn] = ACTIONS(2914), + [anon_sym_PLUS] = ACTIONS(2914), + [anon_sym_DASH] = ACTIONS(2914), + [anon_sym_STAR] = ACTIONS(2914), + [anon_sym_struct] = ACTIONS(2914), + [anon_sym_union] = ACTIONS(2914), + [anon_sym_pub] = ACTIONS(2914), + [anon_sym_mut] = ACTIONS(2914), + [anon_sym_enum] = ACTIONS(2914), + [anon_sym_interface] = ACTIONS(2914), + [anon_sym_QMARK] = ACTIONS(2914), + [anon_sym_BANG] = ACTIONS(2914), + [anon_sym_go] = ACTIONS(2914), + [anon_sym_spawn] = ACTIONS(2914), + [anon_sym_json_DOTdecode] = ACTIONS(2914), + [anon_sym_LBRACK2] = ACTIONS(2914), + [anon_sym_TILDE] = ACTIONS(2914), + [anon_sym_CARET] = ACTIONS(2914), + [anon_sym_AMP] = ACTIONS(2914), + [anon_sym_LT_DASH] = ACTIONS(2914), + [sym_none] = ACTIONS(2914), + [sym_true] = ACTIONS(2914), + [sym_false] = ACTIONS(2914), + [sym_nil] = ACTIONS(2914), + [anon_sym_if] = ACTIONS(2914), + [anon_sym_DOLLARif] = ACTIONS(2914), + [anon_sym_match] = ACTIONS(2914), + [anon_sym_select] = ACTIONS(2914), + [anon_sym_lock] = ACTIONS(2914), + [anon_sym_rlock] = ACTIONS(2914), + [anon_sym_unsafe] = ACTIONS(2914), + [anon_sym_sql] = ACTIONS(2914), + [sym_int_literal] = ACTIONS(2914), + [sym_float_literal] = ACTIONS(2914), + [sym_rune_literal] = ACTIONS(2914), + [sym_pseudo_compile_time_identifier] = ACTIONS(2914), + [anon_sym_shared] = ACTIONS(2914), + [anon_sym_map_LBRACK] = ACTIONS(2914), + [anon_sym_chan] = ACTIONS(2914), + [anon_sym_thread] = ACTIONS(2914), + [anon_sym_atomic] = ACTIONS(2914), + [anon_sym_assert] = ACTIONS(2914), + [anon_sym_defer] = ACTIONS(2914), + [anon_sym_goto] = ACTIONS(2914), + [anon_sym_break] = ACTIONS(2914), + [anon_sym_continue] = ACTIONS(2914), + [anon_sym_return] = ACTIONS(2914), + [anon_sym_DOLLARfor] = ACTIONS(2914), + [anon_sym_for] = ACTIONS(2914), + [anon_sym_POUND] = ACTIONS(2914), + [anon_sym_asm] = ACTIONS(2914), + [anon_sym_AT_LBRACK] = ACTIONS(2914), + [sym___double_quote] = ACTIONS(2914), + [sym___single_quote] = ACTIONS(2914), + [sym___c_double_quote] = ACTIONS(2914), + [sym___c_single_quote] = ACTIONS(2914), + [sym___r_double_quote] = ACTIONS(2914), + [sym___r_single_quote] = ACTIONS(2914), }, [1478] = { [sym_line_comment] = STATE(1478), [sym_block_comment] = STATE(1478), - [ts_builtin_sym_end] = ACTIONS(4150), - [sym_identifier] = ACTIONS(4152), - [anon_sym_LF] = ACTIONS(4152), - [anon_sym_CR] = ACTIONS(4152), - [anon_sym_CR_LF] = ACTIONS(4152), + [ts_builtin_sym_end] = ACTIONS(2916), + [sym_identifier] = ACTIONS(2918), + [anon_sym_LF] = ACTIONS(2918), + [anon_sym_CR] = ACTIONS(2918), + [anon_sym_CR_LF] = ACTIONS(2918), [anon_sym_SLASH_SLASH] = ACTIONS(497), [anon_sym_SLASH_STAR] = ACTIONS(499), - [anon_sym_DOT] = ACTIONS(4152), - [anon_sym_LBRACE] = ACTIONS(4152), - [anon_sym_const] = ACTIONS(4152), - [anon_sym_LPAREN] = ACTIONS(4152), - [anon_sym___global] = ACTIONS(4152), - [anon_sym_type] = ACTIONS(4152), - [anon_sym_fn] = ACTIONS(4152), - [anon_sym_PLUS] = ACTIONS(4152), - [anon_sym_DASH] = ACTIONS(4152), - [anon_sym_STAR] = ACTIONS(4152), - [anon_sym_struct] = ACTIONS(4152), - [anon_sym_union] = ACTIONS(4152), - [anon_sym_pub] = ACTIONS(4152), - [anon_sym_mut] = ACTIONS(4152), - [anon_sym_enum] = ACTIONS(4152), - [anon_sym_interface] = ACTIONS(4152), - [anon_sym_QMARK] = ACTIONS(4152), - [anon_sym_BANG] = ACTIONS(4152), - [anon_sym_go] = ACTIONS(4152), - [anon_sym_spawn] = ACTIONS(4152), - [anon_sym_json_DOTdecode] = ACTIONS(4152), - [anon_sym_LBRACK2] = ACTIONS(4152), - [anon_sym_TILDE] = ACTIONS(4152), - [anon_sym_CARET] = ACTIONS(4152), - [anon_sym_AMP] = ACTIONS(4152), - [anon_sym_LT_DASH] = ACTIONS(4152), - [sym_none] = ACTIONS(4152), - [sym_true] = ACTIONS(4152), - [sym_false] = ACTIONS(4152), - [sym_nil] = ACTIONS(4152), - [anon_sym_if] = ACTIONS(4152), - [anon_sym_DOLLARif] = ACTIONS(4152), - [anon_sym_match] = ACTIONS(4152), - [anon_sym_select] = ACTIONS(4152), - [anon_sym_lock] = ACTIONS(4152), - [anon_sym_rlock] = ACTIONS(4152), - [anon_sym_unsafe] = ACTIONS(4152), - [anon_sym_sql] = ACTIONS(4152), - [sym_int_literal] = ACTIONS(4152), - [sym_float_literal] = ACTIONS(4152), - [sym_rune_literal] = ACTIONS(4152), - [sym_pseudo_compile_time_identifier] = ACTIONS(4152), - [anon_sym_shared] = ACTIONS(4152), - [anon_sym_map_LBRACK] = ACTIONS(4152), - [anon_sym_chan] = ACTIONS(4152), - [anon_sym_thread] = ACTIONS(4152), - [anon_sym_atomic] = ACTIONS(4152), - [anon_sym_assert] = ACTIONS(4152), - [anon_sym_defer] = ACTIONS(4152), - [anon_sym_goto] = ACTIONS(4152), - [anon_sym_break] = ACTIONS(4152), - [anon_sym_continue] = ACTIONS(4152), - [anon_sym_return] = ACTIONS(4152), - [anon_sym_DOLLARfor] = ACTIONS(4152), - [anon_sym_for] = ACTIONS(4152), - [anon_sym_POUND] = ACTIONS(4152), - [anon_sym_asm] = ACTIONS(4152), - [anon_sym_AT_LBRACK] = ACTIONS(4152), - [sym___double_quote] = ACTIONS(4152), - [sym___single_quote] = ACTIONS(4152), - [sym___c_double_quote] = ACTIONS(4152), - [sym___c_single_quote] = ACTIONS(4152), - [sym___r_double_quote] = ACTIONS(4152), - [sym___r_single_quote] = ACTIONS(4152), + [anon_sym_DOT] = ACTIONS(2918), + [anon_sym_LBRACE] = ACTIONS(2918), + [anon_sym_const] = ACTIONS(2918), + [anon_sym_LPAREN] = ACTIONS(2918), + [anon_sym___global] = ACTIONS(2918), + [anon_sym_type] = ACTIONS(2918), + [anon_sym_PIPE] = ACTIONS(2918), + [anon_sym_fn] = ACTIONS(2918), + [anon_sym_PLUS] = ACTIONS(2918), + [anon_sym_DASH] = ACTIONS(2918), + [anon_sym_STAR] = ACTIONS(2918), + [anon_sym_struct] = ACTIONS(2918), + [anon_sym_union] = ACTIONS(2918), + [anon_sym_pub] = ACTIONS(2918), + [anon_sym_mut] = ACTIONS(2918), + [anon_sym_enum] = ACTIONS(2918), + [anon_sym_interface] = ACTIONS(2918), + [anon_sym_QMARK] = ACTIONS(2918), + [anon_sym_BANG] = ACTIONS(2918), + [anon_sym_go] = ACTIONS(2918), + [anon_sym_spawn] = ACTIONS(2918), + [anon_sym_json_DOTdecode] = ACTIONS(2918), + [anon_sym_LBRACK2] = ACTIONS(2918), + [anon_sym_TILDE] = ACTIONS(2918), + [anon_sym_CARET] = ACTIONS(2918), + [anon_sym_AMP] = ACTIONS(2918), + [anon_sym_LT_DASH] = ACTIONS(2918), + [sym_none] = ACTIONS(2918), + [sym_true] = ACTIONS(2918), + [sym_false] = ACTIONS(2918), + [sym_nil] = ACTIONS(2918), + [anon_sym_if] = ACTIONS(2918), + [anon_sym_DOLLARif] = ACTIONS(2918), + [anon_sym_match] = ACTIONS(2918), + [anon_sym_select] = ACTIONS(2918), + [anon_sym_lock] = ACTIONS(2918), + [anon_sym_rlock] = ACTIONS(2918), + [anon_sym_unsafe] = ACTIONS(2918), + [anon_sym_sql] = ACTIONS(2918), + [sym_int_literal] = ACTIONS(2918), + [sym_float_literal] = ACTIONS(2918), + [sym_rune_literal] = ACTIONS(2918), + [sym_pseudo_compile_time_identifier] = ACTIONS(2918), + [anon_sym_shared] = ACTIONS(2918), + [anon_sym_map_LBRACK] = ACTIONS(2918), + [anon_sym_chan] = ACTIONS(2918), + [anon_sym_thread] = ACTIONS(2918), + [anon_sym_atomic] = ACTIONS(2918), + [anon_sym_assert] = ACTIONS(2918), + [anon_sym_defer] = ACTIONS(2918), + [anon_sym_goto] = ACTIONS(2918), + [anon_sym_break] = ACTIONS(2918), + [anon_sym_continue] = ACTIONS(2918), + [anon_sym_return] = ACTIONS(2918), + [anon_sym_DOLLARfor] = ACTIONS(2918), + [anon_sym_for] = ACTIONS(2918), + [anon_sym_POUND] = ACTIONS(2918), + [anon_sym_asm] = ACTIONS(2918), + [anon_sym_AT_LBRACK] = ACTIONS(2918), + [sym___double_quote] = ACTIONS(2918), + [sym___single_quote] = ACTIONS(2918), + [sym___c_double_quote] = ACTIONS(2918), + [sym___c_single_quote] = ACTIONS(2918), + [sym___r_double_quote] = ACTIONS(2918), + [sym___r_single_quote] = ACTIONS(2918), }, [1479] = { [sym_line_comment] = STATE(1479), [sym_block_comment] = STATE(1479), - [ts_builtin_sym_end] = ACTIONS(4154), - [sym_identifier] = ACTIONS(4156), - [anon_sym_LF] = ACTIONS(4156), - [anon_sym_CR] = ACTIONS(4156), - [anon_sym_CR_LF] = ACTIONS(4156), + [ts_builtin_sym_end] = ACTIONS(4156), + [sym_identifier] = ACTIONS(4158), + [anon_sym_LF] = ACTIONS(4158), + [anon_sym_CR] = ACTIONS(4158), + [anon_sym_CR_LF] = ACTIONS(4158), [anon_sym_SLASH_SLASH] = ACTIONS(497), [anon_sym_SLASH_STAR] = ACTIONS(499), - [anon_sym_DOT] = ACTIONS(4156), - [anon_sym_LBRACE] = ACTIONS(4156), - [anon_sym_const] = ACTIONS(4156), - [anon_sym_LPAREN] = ACTIONS(4156), - [anon_sym___global] = ACTIONS(4156), - [anon_sym_type] = ACTIONS(4156), - [anon_sym_fn] = ACTIONS(4156), - [anon_sym_PLUS] = ACTIONS(4156), - [anon_sym_DASH] = ACTIONS(4156), - [anon_sym_STAR] = ACTIONS(4156), - [anon_sym_struct] = ACTIONS(4156), - [anon_sym_union] = ACTIONS(4156), - [anon_sym_pub] = ACTIONS(4156), - [anon_sym_mut] = ACTIONS(4156), - [anon_sym_enum] = ACTIONS(4156), - [anon_sym_interface] = ACTIONS(4156), - [anon_sym_QMARK] = ACTIONS(4156), - [anon_sym_BANG] = ACTIONS(4156), - [anon_sym_go] = ACTIONS(4156), - [anon_sym_spawn] = ACTIONS(4156), - [anon_sym_json_DOTdecode] = ACTIONS(4156), - [anon_sym_LBRACK2] = ACTIONS(4156), - [anon_sym_TILDE] = ACTIONS(4156), - [anon_sym_CARET] = ACTIONS(4156), - [anon_sym_AMP] = ACTIONS(4156), - [anon_sym_LT_DASH] = ACTIONS(4156), - [sym_none] = ACTIONS(4156), - [sym_true] = ACTIONS(4156), - [sym_false] = ACTIONS(4156), - [sym_nil] = ACTIONS(4156), - [anon_sym_if] = ACTIONS(4156), - [anon_sym_DOLLARif] = ACTIONS(4156), - [anon_sym_match] = ACTIONS(4156), - [anon_sym_select] = ACTIONS(4156), - [anon_sym_lock] = ACTIONS(4156), - [anon_sym_rlock] = ACTIONS(4156), - [anon_sym_unsafe] = ACTIONS(4156), - [anon_sym_sql] = ACTIONS(4156), - [sym_int_literal] = ACTIONS(4156), - [sym_float_literal] = ACTIONS(4156), - [sym_rune_literal] = ACTIONS(4156), - [sym_pseudo_compile_time_identifier] = ACTIONS(4156), - [anon_sym_shared] = ACTIONS(4156), - [anon_sym_map_LBRACK] = ACTIONS(4156), - [anon_sym_chan] = ACTIONS(4156), - [anon_sym_thread] = ACTIONS(4156), - [anon_sym_atomic] = ACTIONS(4156), - [anon_sym_assert] = ACTIONS(4156), - [anon_sym_defer] = ACTIONS(4156), - [anon_sym_goto] = ACTIONS(4156), - [anon_sym_break] = ACTIONS(4156), - [anon_sym_continue] = ACTIONS(4156), - [anon_sym_return] = ACTIONS(4156), - [anon_sym_DOLLARfor] = ACTIONS(4156), - [anon_sym_for] = ACTIONS(4156), - [anon_sym_POUND] = ACTIONS(4156), - [anon_sym_asm] = ACTIONS(4156), - [anon_sym_AT_LBRACK] = ACTIONS(4156), - [sym___double_quote] = ACTIONS(4156), - [sym___single_quote] = ACTIONS(4156), - [sym___c_double_quote] = ACTIONS(4156), - [sym___c_single_quote] = ACTIONS(4156), - [sym___r_double_quote] = ACTIONS(4156), - [sym___r_single_quote] = ACTIONS(4156), + [anon_sym_DOT] = ACTIONS(4158), + [anon_sym_LBRACE] = ACTIONS(4158), + [anon_sym_const] = ACTIONS(4158), + [anon_sym_LPAREN] = ACTIONS(4158), + [anon_sym___global] = ACTIONS(4158), + [anon_sym_type] = ACTIONS(4158), + [anon_sym_fn] = ACTIONS(4158), + [anon_sym_PLUS] = ACTIONS(4158), + [anon_sym_DASH] = ACTIONS(4158), + [anon_sym_STAR] = ACTIONS(4158), + [anon_sym_struct] = ACTIONS(4158), + [anon_sym_union] = ACTIONS(4158), + [anon_sym_pub] = ACTIONS(4158), + [anon_sym_mut] = ACTIONS(4158), + [anon_sym_enum] = ACTIONS(4158), + [anon_sym_interface] = ACTIONS(4158), + [anon_sym_QMARK] = ACTIONS(4158), + [anon_sym_BANG] = ACTIONS(4158), + [anon_sym_go] = ACTIONS(4158), + [anon_sym_spawn] = ACTIONS(4158), + [anon_sym_json_DOTdecode] = ACTIONS(4158), + [anon_sym_LBRACK2] = ACTIONS(4158), + [anon_sym_TILDE] = ACTIONS(4158), + [anon_sym_CARET] = ACTIONS(4158), + [anon_sym_AMP] = ACTIONS(4158), + [anon_sym_LT_DASH] = ACTIONS(4158), + [sym_none] = ACTIONS(4158), + [sym_true] = ACTIONS(4158), + [sym_false] = ACTIONS(4158), + [sym_nil] = ACTIONS(4158), + [anon_sym_if] = ACTIONS(4158), + [anon_sym_DOLLARif] = ACTIONS(4158), + [anon_sym_match] = ACTIONS(4158), + [anon_sym_select] = ACTIONS(4158), + [anon_sym_lock] = ACTIONS(4158), + [anon_sym_rlock] = ACTIONS(4158), + [anon_sym_unsafe] = ACTIONS(4158), + [anon_sym_sql] = ACTIONS(4158), + [sym_int_literal] = ACTIONS(4158), + [sym_float_literal] = ACTIONS(4158), + [sym_rune_literal] = ACTIONS(4158), + [sym_pseudo_compile_time_identifier] = ACTIONS(4158), + [anon_sym_shared] = ACTIONS(4158), + [anon_sym_map_LBRACK] = ACTIONS(4158), + [anon_sym_chan] = ACTIONS(4158), + [anon_sym_thread] = ACTIONS(4158), + [anon_sym_atomic] = ACTIONS(4158), + [anon_sym_assert] = ACTIONS(4158), + [anon_sym_defer] = ACTIONS(4158), + [anon_sym_goto] = ACTIONS(4158), + [anon_sym_break] = ACTIONS(4158), + [anon_sym_continue] = ACTIONS(4158), + [anon_sym_return] = ACTIONS(4158), + [anon_sym_DOLLARfor] = ACTIONS(4158), + [anon_sym_for] = ACTIONS(4158), + [anon_sym_POUND] = ACTIONS(4158), + [anon_sym_asm] = ACTIONS(4158), + [anon_sym_AT_LBRACK] = ACTIONS(4158), + [sym___double_quote] = ACTIONS(4158), + [sym___single_quote] = ACTIONS(4158), + [sym___c_double_quote] = ACTIONS(4158), + [sym___c_single_quote] = ACTIONS(4158), + [sym___r_double_quote] = ACTIONS(4158), + [sym___r_single_quote] = ACTIONS(4158), }, [1480] = { [sym_line_comment] = STATE(1480), [sym_block_comment] = STATE(1480), - [ts_builtin_sym_end] = ACTIONS(4158), - [sym_identifier] = ACTIONS(4160), - [anon_sym_LF] = ACTIONS(4160), - [anon_sym_CR] = ACTIONS(4160), - [anon_sym_CR_LF] = ACTIONS(4160), + [ts_builtin_sym_end] = ACTIONS(4160), + [sym_identifier] = ACTIONS(4162), + [anon_sym_LF] = ACTIONS(4162), + [anon_sym_CR] = ACTIONS(4162), + [anon_sym_CR_LF] = ACTIONS(4162), [anon_sym_SLASH_SLASH] = ACTIONS(497), [anon_sym_SLASH_STAR] = ACTIONS(499), - [anon_sym_DOT] = ACTIONS(4160), - [anon_sym_LBRACE] = ACTIONS(4160), - [anon_sym_const] = ACTIONS(4160), - [anon_sym_LPAREN] = ACTIONS(4160), - [anon_sym___global] = ACTIONS(4160), - [anon_sym_type] = ACTIONS(4160), - [anon_sym_fn] = ACTIONS(4160), - [anon_sym_PLUS] = ACTIONS(4160), - [anon_sym_DASH] = ACTIONS(4160), - [anon_sym_STAR] = ACTIONS(4160), - [anon_sym_struct] = ACTIONS(4160), - [anon_sym_union] = ACTIONS(4160), - [anon_sym_pub] = ACTIONS(4160), - [anon_sym_mut] = ACTIONS(4160), - [anon_sym_enum] = ACTIONS(4160), - [anon_sym_interface] = ACTIONS(4160), - [anon_sym_QMARK] = ACTIONS(4160), - [anon_sym_BANG] = ACTIONS(4160), - [anon_sym_go] = ACTIONS(4160), - [anon_sym_spawn] = ACTIONS(4160), - [anon_sym_json_DOTdecode] = ACTIONS(4160), - [anon_sym_LBRACK2] = ACTIONS(4160), - [anon_sym_TILDE] = ACTIONS(4160), - [anon_sym_CARET] = ACTIONS(4160), - [anon_sym_AMP] = ACTIONS(4160), - [anon_sym_LT_DASH] = ACTIONS(4160), - [sym_none] = ACTIONS(4160), - [sym_true] = ACTIONS(4160), - [sym_false] = ACTIONS(4160), - [sym_nil] = ACTIONS(4160), - [anon_sym_if] = ACTIONS(4160), - [anon_sym_DOLLARif] = ACTIONS(4160), - [anon_sym_match] = ACTIONS(4160), - [anon_sym_select] = ACTIONS(4160), - [anon_sym_lock] = ACTIONS(4160), - [anon_sym_rlock] = ACTIONS(4160), - [anon_sym_unsafe] = ACTIONS(4160), - [anon_sym_sql] = ACTIONS(4160), - [sym_int_literal] = ACTIONS(4160), - [sym_float_literal] = ACTIONS(4160), - [sym_rune_literal] = ACTIONS(4160), - [sym_pseudo_compile_time_identifier] = ACTIONS(4160), - [anon_sym_shared] = ACTIONS(4160), - [anon_sym_map_LBRACK] = ACTIONS(4160), - [anon_sym_chan] = ACTIONS(4160), - [anon_sym_thread] = ACTIONS(4160), - [anon_sym_atomic] = ACTIONS(4160), - [anon_sym_assert] = ACTIONS(4160), - [anon_sym_defer] = ACTIONS(4160), - [anon_sym_goto] = ACTIONS(4160), - [anon_sym_break] = ACTIONS(4160), - [anon_sym_continue] = ACTIONS(4160), - [anon_sym_return] = ACTIONS(4160), - [anon_sym_DOLLARfor] = ACTIONS(4160), - [anon_sym_for] = ACTIONS(4160), - [anon_sym_POUND] = ACTIONS(4160), - [anon_sym_asm] = ACTIONS(4160), - [anon_sym_AT_LBRACK] = ACTIONS(4160), - [sym___double_quote] = ACTIONS(4160), - [sym___single_quote] = ACTIONS(4160), - [sym___c_double_quote] = ACTIONS(4160), - [sym___c_single_quote] = ACTIONS(4160), - [sym___r_double_quote] = ACTIONS(4160), - [sym___r_single_quote] = ACTIONS(4160), + [anon_sym_DOT] = ACTIONS(4162), + [anon_sym_LBRACE] = ACTIONS(4162), + [anon_sym_const] = ACTIONS(4162), + [anon_sym_LPAREN] = ACTIONS(4162), + [anon_sym___global] = ACTIONS(4162), + [anon_sym_type] = ACTIONS(4162), + [anon_sym_fn] = ACTIONS(4162), + [anon_sym_PLUS] = ACTIONS(4162), + [anon_sym_DASH] = ACTIONS(4162), + [anon_sym_STAR] = ACTIONS(4162), + [anon_sym_struct] = ACTIONS(4162), + [anon_sym_union] = ACTIONS(4162), + [anon_sym_pub] = ACTIONS(4162), + [anon_sym_mut] = ACTIONS(4162), + [anon_sym_enum] = ACTIONS(4162), + [anon_sym_interface] = ACTIONS(4162), + [anon_sym_QMARK] = ACTIONS(4162), + [anon_sym_BANG] = ACTIONS(4162), + [anon_sym_go] = ACTIONS(4162), + [anon_sym_spawn] = ACTIONS(4162), + [anon_sym_json_DOTdecode] = ACTIONS(4162), + [anon_sym_LBRACK2] = ACTIONS(4162), + [anon_sym_TILDE] = ACTIONS(4162), + [anon_sym_CARET] = ACTIONS(4162), + [anon_sym_AMP] = ACTIONS(4162), + [anon_sym_LT_DASH] = ACTIONS(4162), + [sym_none] = ACTIONS(4162), + [sym_true] = ACTIONS(4162), + [sym_false] = ACTIONS(4162), + [sym_nil] = ACTIONS(4162), + [anon_sym_if] = ACTIONS(4162), + [anon_sym_DOLLARif] = ACTIONS(4162), + [anon_sym_match] = ACTIONS(4162), + [anon_sym_select] = ACTIONS(4162), + [anon_sym_lock] = ACTIONS(4162), + [anon_sym_rlock] = ACTIONS(4162), + [anon_sym_unsafe] = ACTIONS(4162), + [anon_sym_sql] = ACTIONS(4162), + [sym_int_literal] = ACTIONS(4162), + [sym_float_literal] = ACTIONS(4162), + [sym_rune_literal] = ACTIONS(4162), + [sym_pseudo_compile_time_identifier] = ACTIONS(4162), + [anon_sym_shared] = ACTIONS(4162), + [anon_sym_map_LBRACK] = ACTIONS(4162), + [anon_sym_chan] = ACTIONS(4162), + [anon_sym_thread] = ACTIONS(4162), + [anon_sym_atomic] = ACTIONS(4162), + [anon_sym_assert] = ACTIONS(4162), + [anon_sym_defer] = ACTIONS(4162), + [anon_sym_goto] = ACTIONS(4162), + [anon_sym_break] = ACTIONS(4162), + [anon_sym_continue] = ACTIONS(4162), + [anon_sym_return] = ACTIONS(4162), + [anon_sym_DOLLARfor] = ACTIONS(4162), + [anon_sym_for] = ACTIONS(4162), + [anon_sym_POUND] = ACTIONS(4162), + [anon_sym_asm] = ACTIONS(4162), + [anon_sym_AT_LBRACK] = ACTIONS(4162), + [sym___double_quote] = ACTIONS(4162), + [sym___single_quote] = ACTIONS(4162), + [sym___c_double_quote] = ACTIONS(4162), + [sym___c_single_quote] = ACTIONS(4162), + [sym___r_double_quote] = ACTIONS(4162), + [sym___r_single_quote] = ACTIONS(4162), }, [1481] = { [sym_line_comment] = STATE(1481), [sym_block_comment] = STATE(1481), - [ts_builtin_sym_end] = ACTIONS(4162), - [sym_identifier] = ACTIONS(4164), - [anon_sym_LF] = ACTIONS(4164), - [anon_sym_CR] = ACTIONS(4164), - [anon_sym_CR_LF] = ACTIONS(4164), + [ts_builtin_sym_end] = ACTIONS(4164), + [sym_identifier] = ACTIONS(4166), + [anon_sym_LF] = ACTIONS(4166), + [anon_sym_CR] = ACTIONS(4166), + [anon_sym_CR_LF] = ACTIONS(4166), [anon_sym_SLASH_SLASH] = ACTIONS(497), [anon_sym_SLASH_STAR] = ACTIONS(499), - [anon_sym_DOT] = ACTIONS(4164), - [anon_sym_LBRACE] = ACTIONS(4164), - [anon_sym_const] = ACTIONS(4164), - [anon_sym_LPAREN] = ACTIONS(4164), - [anon_sym___global] = ACTIONS(4164), - [anon_sym_type] = ACTIONS(4164), - [anon_sym_fn] = ACTIONS(4164), - [anon_sym_PLUS] = ACTIONS(4164), - [anon_sym_DASH] = ACTIONS(4164), - [anon_sym_STAR] = ACTIONS(4164), - [anon_sym_struct] = ACTIONS(4164), - [anon_sym_union] = ACTIONS(4164), - [anon_sym_pub] = ACTIONS(4164), - [anon_sym_mut] = ACTIONS(4164), - [anon_sym_enum] = ACTIONS(4164), - [anon_sym_interface] = ACTIONS(4164), - [anon_sym_QMARK] = ACTIONS(4164), - [anon_sym_BANG] = ACTIONS(4164), - [anon_sym_go] = ACTIONS(4164), - [anon_sym_spawn] = ACTIONS(4164), - [anon_sym_json_DOTdecode] = ACTIONS(4164), - [anon_sym_LBRACK2] = ACTIONS(4164), - [anon_sym_TILDE] = ACTIONS(4164), - [anon_sym_CARET] = ACTIONS(4164), - [anon_sym_AMP] = ACTIONS(4164), - [anon_sym_LT_DASH] = ACTIONS(4164), - [sym_none] = ACTIONS(4164), - [sym_true] = ACTIONS(4164), - [sym_false] = ACTIONS(4164), - [sym_nil] = ACTIONS(4164), - [anon_sym_if] = ACTIONS(4164), - [anon_sym_DOLLARif] = ACTIONS(4164), - [anon_sym_match] = ACTIONS(4164), - [anon_sym_select] = ACTIONS(4164), - [anon_sym_lock] = ACTIONS(4164), - [anon_sym_rlock] = ACTIONS(4164), - [anon_sym_unsafe] = ACTIONS(4164), - [anon_sym_sql] = ACTIONS(4164), - [sym_int_literal] = ACTIONS(4164), - [sym_float_literal] = ACTIONS(4164), - [sym_rune_literal] = ACTIONS(4164), - [sym_pseudo_compile_time_identifier] = ACTIONS(4164), - [anon_sym_shared] = ACTIONS(4164), - [anon_sym_map_LBRACK] = ACTIONS(4164), - [anon_sym_chan] = ACTIONS(4164), - [anon_sym_thread] = ACTIONS(4164), - [anon_sym_atomic] = ACTIONS(4164), - [anon_sym_assert] = ACTIONS(4164), - [anon_sym_defer] = ACTIONS(4164), - [anon_sym_goto] = ACTIONS(4164), - [anon_sym_break] = ACTIONS(4164), - [anon_sym_continue] = ACTIONS(4164), - [anon_sym_return] = ACTIONS(4164), - [anon_sym_DOLLARfor] = ACTIONS(4164), - [anon_sym_for] = ACTIONS(4164), - [anon_sym_POUND] = ACTIONS(4164), - [anon_sym_asm] = ACTIONS(4164), - [anon_sym_AT_LBRACK] = ACTIONS(4164), - [sym___double_quote] = ACTIONS(4164), - [sym___single_quote] = ACTIONS(4164), - [sym___c_double_quote] = ACTIONS(4164), - [sym___c_single_quote] = ACTIONS(4164), - [sym___r_double_quote] = ACTIONS(4164), - [sym___r_single_quote] = ACTIONS(4164), + [anon_sym_DOT] = ACTIONS(4166), + [anon_sym_LBRACE] = ACTIONS(4166), + [anon_sym_const] = ACTIONS(4166), + [anon_sym_LPAREN] = ACTIONS(4166), + [anon_sym___global] = ACTIONS(4166), + [anon_sym_type] = ACTIONS(4166), + [anon_sym_fn] = ACTIONS(4166), + [anon_sym_PLUS] = ACTIONS(4166), + [anon_sym_DASH] = ACTIONS(4166), + [anon_sym_STAR] = ACTIONS(4166), + [anon_sym_struct] = ACTIONS(4166), + [anon_sym_union] = ACTIONS(4166), + [anon_sym_pub] = ACTIONS(4166), + [anon_sym_mut] = ACTIONS(4166), + [anon_sym_enum] = ACTIONS(4166), + [anon_sym_interface] = ACTIONS(4166), + [anon_sym_QMARK] = ACTIONS(4166), + [anon_sym_BANG] = ACTIONS(4166), + [anon_sym_go] = ACTIONS(4166), + [anon_sym_spawn] = ACTIONS(4166), + [anon_sym_json_DOTdecode] = ACTIONS(4166), + [anon_sym_LBRACK2] = ACTIONS(4166), + [anon_sym_TILDE] = ACTIONS(4166), + [anon_sym_CARET] = ACTIONS(4166), + [anon_sym_AMP] = ACTIONS(4166), + [anon_sym_LT_DASH] = ACTIONS(4166), + [sym_none] = ACTIONS(4166), + [sym_true] = ACTIONS(4166), + [sym_false] = ACTIONS(4166), + [sym_nil] = ACTIONS(4166), + [anon_sym_if] = ACTIONS(4166), + [anon_sym_DOLLARif] = ACTIONS(4166), + [anon_sym_match] = ACTIONS(4166), + [anon_sym_select] = ACTIONS(4166), + [anon_sym_lock] = ACTIONS(4166), + [anon_sym_rlock] = ACTIONS(4166), + [anon_sym_unsafe] = ACTIONS(4166), + [anon_sym_sql] = ACTIONS(4166), + [sym_int_literal] = ACTIONS(4166), + [sym_float_literal] = ACTIONS(4166), + [sym_rune_literal] = ACTIONS(4166), + [sym_pseudo_compile_time_identifier] = ACTIONS(4166), + [anon_sym_shared] = ACTIONS(4166), + [anon_sym_map_LBRACK] = ACTIONS(4166), + [anon_sym_chan] = ACTIONS(4166), + [anon_sym_thread] = ACTIONS(4166), + [anon_sym_atomic] = ACTIONS(4166), + [anon_sym_assert] = ACTIONS(4166), + [anon_sym_defer] = ACTIONS(4166), + [anon_sym_goto] = ACTIONS(4166), + [anon_sym_break] = ACTIONS(4166), + [anon_sym_continue] = ACTIONS(4166), + [anon_sym_return] = ACTIONS(4166), + [anon_sym_DOLLARfor] = ACTIONS(4166), + [anon_sym_for] = ACTIONS(4166), + [anon_sym_POUND] = ACTIONS(4166), + [anon_sym_asm] = ACTIONS(4166), + [anon_sym_AT_LBRACK] = ACTIONS(4166), + [sym___double_quote] = ACTIONS(4166), + [sym___single_quote] = ACTIONS(4166), + [sym___c_double_quote] = ACTIONS(4166), + [sym___c_single_quote] = ACTIONS(4166), + [sym___r_double_quote] = ACTIONS(4166), + [sym___r_single_quote] = ACTIONS(4166), }, [1482] = { [sym_line_comment] = STATE(1482), [sym_block_comment] = STATE(1482), - [ts_builtin_sym_end] = ACTIONS(4166), - [sym_identifier] = ACTIONS(4168), - [anon_sym_LF] = ACTIONS(4168), - [anon_sym_CR] = ACTIONS(4168), - [anon_sym_CR_LF] = ACTIONS(4168), + [ts_builtin_sym_end] = ACTIONS(4168), + [sym_identifier] = ACTIONS(4170), + [anon_sym_LF] = ACTIONS(4170), + [anon_sym_CR] = ACTIONS(4170), + [anon_sym_CR_LF] = ACTIONS(4170), [anon_sym_SLASH_SLASH] = ACTIONS(497), [anon_sym_SLASH_STAR] = ACTIONS(499), - [anon_sym_DOT] = ACTIONS(4168), - [anon_sym_LBRACE] = ACTIONS(4168), - [anon_sym_const] = ACTIONS(4168), - [anon_sym_LPAREN] = ACTIONS(4168), - [anon_sym___global] = ACTIONS(4168), - [anon_sym_type] = ACTIONS(4168), - [anon_sym_fn] = ACTIONS(4168), - [anon_sym_PLUS] = ACTIONS(4168), - [anon_sym_DASH] = ACTIONS(4168), - [anon_sym_STAR] = ACTIONS(4168), - [anon_sym_struct] = ACTIONS(4168), - [anon_sym_union] = ACTIONS(4168), - [anon_sym_pub] = ACTIONS(4168), - [anon_sym_mut] = ACTIONS(4168), - [anon_sym_enum] = ACTIONS(4168), - [anon_sym_interface] = ACTIONS(4168), - [anon_sym_QMARK] = ACTIONS(4168), - [anon_sym_BANG] = ACTIONS(4168), - [anon_sym_go] = ACTIONS(4168), - [anon_sym_spawn] = ACTIONS(4168), - [anon_sym_json_DOTdecode] = ACTIONS(4168), - [anon_sym_LBRACK2] = ACTIONS(4168), - [anon_sym_TILDE] = ACTIONS(4168), - [anon_sym_CARET] = ACTIONS(4168), - [anon_sym_AMP] = ACTIONS(4168), - [anon_sym_LT_DASH] = ACTIONS(4168), - [sym_none] = ACTIONS(4168), - [sym_true] = ACTIONS(4168), - [sym_false] = ACTIONS(4168), - [sym_nil] = ACTIONS(4168), - [anon_sym_if] = ACTIONS(4168), - [anon_sym_DOLLARif] = ACTIONS(4168), - [anon_sym_match] = ACTIONS(4168), - [anon_sym_select] = ACTIONS(4168), - [anon_sym_lock] = ACTIONS(4168), - [anon_sym_rlock] = ACTIONS(4168), - [anon_sym_unsafe] = ACTIONS(4168), - [anon_sym_sql] = ACTIONS(4168), - [sym_int_literal] = ACTIONS(4168), - [sym_float_literal] = ACTIONS(4168), - [sym_rune_literal] = ACTIONS(4168), - [sym_pseudo_compile_time_identifier] = ACTIONS(4168), - [anon_sym_shared] = ACTIONS(4168), - [anon_sym_map_LBRACK] = ACTIONS(4168), - [anon_sym_chan] = ACTIONS(4168), - [anon_sym_thread] = ACTIONS(4168), - [anon_sym_atomic] = ACTIONS(4168), - [anon_sym_assert] = ACTIONS(4168), - [anon_sym_defer] = ACTIONS(4168), - [anon_sym_goto] = ACTIONS(4168), - [anon_sym_break] = ACTIONS(4168), - [anon_sym_continue] = ACTIONS(4168), - [anon_sym_return] = ACTIONS(4168), - [anon_sym_DOLLARfor] = ACTIONS(4168), - [anon_sym_for] = ACTIONS(4168), - [anon_sym_POUND] = ACTIONS(4168), - [anon_sym_asm] = ACTIONS(4168), - [anon_sym_AT_LBRACK] = ACTIONS(4168), - [sym___double_quote] = ACTIONS(4168), - [sym___single_quote] = ACTIONS(4168), - [sym___c_double_quote] = ACTIONS(4168), - [sym___c_single_quote] = ACTIONS(4168), - [sym___r_double_quote] = ACTIONS(4168), - [sym___r_single_quote] = ACTIONS(4168), + [anon_sym_DOT] = ACTIONS(4170), + [anon_sym_LBRACE] = ACTIONS(4170), + [anon_sym_const] = ACTIONS(4170), + [anon_sym_LPAREN] = ACTIONS(4170), + [anon_sym___global] = ACTIONS(4170), + [anon_sym_type] = ACTIONS(4170), + [anon_sym_fn] = ACTIONS(4170), + [anon_sym_PLUS] = ACTIONS(4170), + [anon_sym_DASH] = ACTIONS(4170), + [anon_sym_STAR] = ACTIONS(4170), + [anon_sym_struct] = ACTIONS(4170), + [anon_sym_union] = ACTIONS(4170), + [anon_sym_pub] = ACTIONS(4170), + [anon_sym_mut] = ACTIONS(4170), + [anon_sym_enum] = ACTIONS(4170), + [anon_sym_interface] = ACTIONS(4170), + [anon_sym_QMARK] = ACTIONS(4170), + [anon_sym_BANG] = ACTIONS(4170), + [anon_sym_go] = ACTIONS(4170), + [anon_sym_spawn] = ACTIONS(4170), + [anon_sym_json_DOTdecode] = ACTIONS(4170), + [anon_sym_LBRACK2] = ACTIONS(4170), + [anon_sym_TILDE] = ACTIONS(4170), + [anon_sym_CARET] = ACTIONS(4170), + [anon_sym_AMP] = ACTIONS(4170), + [anon_sym_LT_DASH] = ACTIONS(4170), + [sym_none] = ACTIONS(4170), + [sym_true] = ACTIONS(4170), + [sym_false] = ACTIONS(4170), + [sym_nil] = ACTIONS(4170), + [anon_sym_if] = ACTIONS(4170), + [anon_sym_DOLLARif] = ACTIONS(4170), + [anon_sym_match] = ACTIONS(4170), + [anon_sym_select] = ACTIONS(4170), + [anon_sym_lock] = ACTIONS(4170), + [anon_sym_rlock] = ACTIONS(4170), + [anon_sym_unsafe] = ACTIONS(4170), + [anon_sym_sql] = ACTIONS(4170), + [sym_int_literal] = ACTIONS(4170), + [sym_float_literal] = ACTIONS(4170), + [sym_rune_literal] = ACTIONS(4170), + [sym_pseudo_compile_time_identifier] = ACTIONS(4170), + [anon_sym_shared] = ACTIONS(4170), + [anon_sym_map_LBRACK] = ACTIONS(4170), + [anon_sym_chan] = ACTIONS(4170), + [anon_sym_thread] = ACTIONS(4170), + [anon_sym_atomic] = ACTIONS(4170), + [anon_sym_assert] = ACTIONS(4170), + [anon_sym_defer] = ACTIONS(4170), + [anon_sym_goto] = ACTIONS(4170), + [anon_sym_break] = ACTIONS(4170), + [anon_sym_continue] = ACTIONS(4170), + [anon_sym_return] = ACTIONS(4170), + [anon_sym_DOLLARfor] = ACTIONS(4170), + [anon_sym_for] = ACTIONS(4170), + [anon_sym_POUND] = ACTIONS(4170), + [anon_sym_asm] = ACTIONS(4170), + [anon_sym_AT_LBRACK] = ACTIONS(4170), + [sym___double_quote] = ACTIONS(4170), + [sym___single_quote] = ACTIONS(4170), + [sym___c_double_quote] = ACTIONS(4170), + [sym___c_single_quote] = ACTIONS(4170), + [sym___r_double_quote] = ACTIONS(4170), + [sym___r_single_quote] = ACTIONS(4170), }, [1483] = { [sym_line_comment] = STATE(1483), [sym_block_comment] = STATE(1483), - [ts_builtin_sym_end] = ACTIONS(4170), - [sym_identifier] = ACTIONS(4172), + [ts_builtin_sym_end] = ACTIONS(4172), + [sym_identifier] = ACTIONS(4174), [anon_sym_LF] = ACTIONS(4174), [anon_sym_CR] = ACTIONS(4174), [anon_sym_CR_LF] = ACTIONS(4174), [anon_sym_SLASH_SLASH] = ACTIONS(497), [anon_sym_SLASH_STAR] = ACTIONS(499), - [anon_sym_DOT] = ACTIONS(4172), - [anon_sym_LBRACE] = ACTIONS(4172), - [anon_sym_const] = ACTIONS(4172), - [anon_sym_LPAREN] = ACTIONS(4172), - [anon_sym___global] = ACTIONS(4172), - [anon_sym_type] = ACTIONS(4172), - [anon_sym_fn] = ACTIONS(4172), - [anon_sym_PLUS] = ACTIONS(4172), - [anon_sym_DASH] = ACTIONS(4172), - [anon_sym_STAR] = ACTIONS(4172), - [anon_sym_struct] = ACTIONS(4172), - [anon_sym_union] = ACTIONS(4172), - [anon_sym_pub] = ACTIONS(4172), - [anon_sym_mut] = ACTIONS(4172), - [anon_sym_enum] = ACTIONS(4172), - [anon_sym_interface] = ACTIONS(4172), - [anon_sym_QMARK] = ACTIONS(4172), - [anon_sym_BANG] = ACTIONS(4172), - [anon_sym_go] = ACTIONS(4172), - [anon_sym_spawn] = ACTIONS(4172), - [anon_sym_json_DOTdecode] = ACTIONS(4172), - [anon_sym_LBRACK2] = ACTIONS(4172), - [anon_sym_TILDE] = ACTIONS(4172), - [anon_sym_CARET] = ACTIONS(4172), - [anon_sym_AMP] = ACTIONS(4172), - [anon_sym_LT_DASH] = ACTIONS(4172), - [sym_none] = ACTIONS(4172), - [sym_true] = ACTIONS(4172), - [sym_false] = ACTIONS(4172), - [sym_nil] = ACTIONS(4172), - [anon_sym_if] = ACTIONS(4172), - [anon_sym_DOLLARif] = ACTIONS(4172), - [anon_sym_match] = ACTIONS(4172), - [anon_sym_select] = ACTIONS(4172), - [anon_sym_lock] = ACTIONS(4172), - [anon_sym_rlock] = ACTIONS(4172), - [anon_sym_unsafe] = ACTIONS(4172), - [anon_sym_sql] = ACTIONS(4172), - [sym_int_literal] = ACTIONS(4172), - [sym_float_literal] = ACTIONS(4172), - [sym_rune_literal] = ACTIONS(4172), - [sym_pseudo_compile_time_identifier] = ACTIONS(4172), - [anon_sym_shared] = ACTIONS(4172), - [anon_sym_map_LBRACK] = ACTIONS(4172), - [anon_sym_chan] = ACTIONS(4172), - [anon_sym_thread] = ACTIONS(4172), - [anon_sym_atomic] = ACTIONS(4172), - [anon_sym_assert] = ACTIONS(4172), - [anon_sym_defer] = ACTIONS(4172), - [anon_sym_goto] = ACTIONS(4172), - [anon_sym_break] = ACTIONS(4172), - [anon_sym_continue] = ACTIONS(4172), - [anon_sym_return] = ACTIONS(4172), - [anon_sym_DOLLARfor] = ACTIONS(4172), - [anon_sym_for] = ACTIONS(4172), - [anon_sym_POUND] = ACTIONS(4172), - [anon_sym_asm] = ACTIONS(4172), - [anon_sym_AT_LBRACK] = ACTIONS(4172), - [sym___double_quote] = ACTIONS(4172), - [sym___single_quote] = ACTIONS(4172), - [sym___c_double_quote] = ACTIONS(4172), - [sym___c_single_quote] = ACTIONS(4172), - [sym___r_double_quote] = ACTIONS(4172), - [sym___r_single_quote] = ACTIONS(4172), + [anon_sym_DOT] = ACTIONS(4174), + [anon_sym_LBRACE] = ACTIONS(4174), + [anon_sym_const] = ACTIONS(4174), + [anon_sym_LPAREN] = ACTIONS(4174), + [anon_sym___global] = ACTIONS(4174), + [anon_sym_type] = ACTIONS(4174), + [anon_sym_fn] = ACTIONS(4174), + [anon_sym_PLUS] = ACTIONS(4174), + [anon_sym_DASH] = ACTIONS(4174), + [anon_sym_STAR] = ACTIONS(4174), + [anon_sym_struct] = ACTIONS(4174), + [anon_sym_union] = ACTIONS(4174), + [anon_sym_pub] = ACTIONS(4174), + [anon_sym_mut] = ACTIONS(4174), + [anon_sym_enum] = ACTIONS(4174), + [anon_sym_interface] = ACTIONS(4174), + [anon_sym_QMARK] = ACTIONS(4174), + [anon_sym_BANG] = ACTIONS(4174), + [anon_sym_go] = ACTIONS(4174), + [anon_sym_spawn] = ACTIONS(4174), + [anon_sym_json_DOTdecode] = ACTIONS(4174), + [anon_sym_LBRACK2] = ACTIONS(4174), + [anon_sym_TILDE] = ACTIONS(4174), + [anon_sym_CARET] = ACTIONS(4174), + [anon_sym_AMP] = ACTIONS(4174), + [anon_sym_LT_DASH] = ACTIONS(4174), + [sym_none] = ACTIONS(4174), + [sym_true] = ACTIONS(4174), + [sym_false] = ACTIONS(4174), + [sym_nil] = ACTIONS(4174), + [anon_sym_if] = ACTIONS(4174), + [anon_sym_DOLLARif] = ACTIONS(4174), + [anon_sym_match] = ACTIONS(4174), + [anon_sym_select] = ACTIONS(4174), + [anon_sym_lock] = ACTIONS(4174), + [anon_sym_rlock] = ACTIONS(4174), + [anon_sym_unsafe] = ACTIONS(4174), + [anon_sym_sql] = ACTIONS(4174), + [sym_int_literal] = ACTIONS(4174), + [sym_float_literal] = ACTIONS(4174), + [sym_rune_literal] = ACTIONS(4174), + [sym_pseudo_compile_time_identifier] = ACTIONS(4174), + [anon_sym_shared] = ACTIONS(4174), + [anon_sym_map_LBRACK] = ACTIONS(4174), + [anon_sym_chan] = ACTIONS(4174), + [anon_sym_thread] = ACTIONS(4174), + [anon_sym_atomic] = ACTIONS(4174), + [anon_sym_assert] = ACTIONS(4174), + [anon_sym_defer] = ACTIONS(4174), + [anon_sym_goto] = ACTIONS(4174), + [anon_sym_break] = ACTIONS(4174), + [anon_sym_continue] = ACTIONS(4174), + [anon_sym_return] = ACTIONS(4174), + [anon_sym_DOLLARfor] = ACTIONS(4174), + [anon_sym_for] = ACTIONS(4174), + [anon_sym_POUND] = ACTIONS(4174), + [anon_sym_asm] = ACTIONS(4174), + [anon_sym_AT_LBRACK] = ACTIONS(4174), + [sym___double_quote] = ACTIONS(4174), + [sym___single_quote] = ACTIONS(4174), + [sym___c_double_quote] = ACTIONS(4174), + [sym___c_single_quote] = ACTIONS(4174), + [sym___r_double_quote] = ACTIONS(4174), + [sym___r_single_quote] = ACTIONS(4174), }, [1484] = { [sym_line_comment] = STATE(1484), @@ -179758,81 +179817,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [1487] = { [sym_line_comment] = STATE(1487), [sym_block_comment] = STATE(1487), - [ts_builtin_sym_end] = ACTIONS(1649), - [sym_identifier] = ACTIONS(1651), - [anon_sym_LF] = ACTIONS(1651), - [anon_sym_CR] = ACTIONS(1651), - [anon_sym_CR_LF] = ACTIONS(1651), - [anon_sym_SLASH_SLASH] = ACTIONS(497), - [anon_sym_SLASH_STAR] = ACTIONS(499), - [anon_sym_DOT] = ACTIONS(1651), - [anon_sym_LBRACE] = ACTIONS(1651), - [anon_sym_const] = ACTIONS(1651), - [anon_sym_LPAREN] = ACTIONS(1651), - [anon_sym___global] = ACTIONS(1651), - [anon_sym_type] = ACTIONS(1651), - [anon_sym_fn] = ACTIONS(1651), - [anon_sym_PLUS] = ACTIONS(1651), - [anon_sym_DASH] = ACTIONS(1651), - [anon_sym_STAR] = ACTIONS(1651), - [anon_sym_struct] = ACTIONS(1651), - [anon_sym_union] = ACTIONS(1651), - [anon_sym_pub] = ACTIONS(1651), - [anon_sym_mut] = ACTIONS(1651), - [anon_sym_enum] = ACTIONS(1651), - [anon_sym_interface] = ACTIONS(1651), - [anon_sym_QMARK] = ACTIONS(1651), - [anon_sym_BANG] = ACTIONS(1651), - [anon_sym_go] = ACTIONS(1651), - [anon_sym_spawn] = ACTIONS(1651), - [anon_sym_json_DOTdecode] = ACTIONS(1651), - [anon_sym_LBRACK2] = ACTIONS(1651), - [anon_sym_TILDE] = ACTIONS(1651), - [anon_sym_CARET] = ACTIONS(1651), - [anon_sym_AMP] = ACTIONS(1651), - [anon_sym_LT_DASH] = ACTIONS(1651), - [sym_none] = ACTIONS(1651), - [sym_true] = ACTIONS(1651), - [sym_false] = ACTIONS(1651), - [sym_nil] = ACTIONS(1651), - [anon_sym_if] = ACTIONS(1651), - [anon_sym_DOLLARif] = ACTIONS(1651), - [anon_sym_match] = ACTIONS(1651), - [anon_sym_select] = ACTIONS(1651), - [anon_sym_lock] = ACTIONS(1651), - [anon_sym_rlock] = ACTIONS(1651), - [anon_sym_unsafe] = ACTIONS(1651), - [anon_sym_sql] = ACTIONS(1651), - [sym_int_literal] = ACTIONS(1651), - [sym_float_literal] = ACTIONS(1651), - [sym_rune_literal] = ACTIONS(1651), - [sym_pseudo_compile_time_identifier] = ACTIONS(1651), - [anon_sym_shared] = ACTIONS(1651), - [anon_sym_map_LBRACK] = ACTIONS(1651), - [anon_sym_chan] = ACTIONS(1651), - [anon_sym_thread] = ACTIONS(1651), - [anon_sym_atomic] = ACTIONS(1651), - [anon_sym_assert] = ACTIONS(1651), - [anon_sym_defer] = ACTIONS(1651), - [anon_sym_goto] = ACTIONS(1651), - [anon_sym_break] = ACTIONS(1651), - [anon_sym_continue] = ACTIONS(1651), - [anon_sym_return] = ACTIONS(1651), - [anon_sym_DOLLARfor] = ACTIONS(1651), - [anon_sym_for] = ACTIONS(1651), - [anon_sym_POUND] = ACTIONS(1651), - [anon_sym_asm] = ACTIONS(1651), - [anon_sym_AT_LBRACK] = ACTIONS(1651), - [sym___double_quote] = ACTIONS(1651), - [sym___single_quote] = ACTIONS(1651), - [sym___c_double_quote] = ACTIONS(1651), - [sym___c_single_quote] = ACTIONS(1651), - [sym___r_double_quote] = ACTIONS(1651), - [sym___r_single_quote] = ACTIONS(1651), - }, - [1488] = { - [sym_line_comment] = STATE(1488), - [sym_block_comment] = STATE(1488), [ts_builtin_sym_end] = ACTIONS(4188), [sym_identifier] = ACTIONS(4190), [anon_sym_LF] = ACTIONS(4190), @@ -179905,9 +179889,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym___r_double_quote] = ACTIONS(4190), [sym___r_single_quote] = ACTIONS(4190), }, - [1489] = { - [sym_line_comment] = STATE(1489), - [sym_block_comment] = STATE(1489), + [1488] = { + [sym_line_comment] = STATE(1488), + [sym_block_comment] = STATE(1488), [ts_builtin_sym_end] = ACTIONS(4192), [sym_identifier] = ACTIONS(4194), [anon_sym_LF] = ACTIONS(4194), @@ -179980,9 +179964,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym___r_double_quote] = ACTIONS(4194), [sym___r_single_quote] = ACTIONS(4194), }, - [1490] = { - [sym_line_comment] = STATE(1490), - [sym_block_comment] = STATE(1490), + [1489] = { + [sym_line_comment] = STATE(1489), + [sym_block_comment] = STATE(1489), [ts_builtin_sym_end] = ACTIONS(4196), [sym_identifier] = ACTIONS(4198), [anon_sym_LF] = ACTIONS(4198), @@ -180055,9 +180039,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym___r_double_quote] = ACTIONS(4198), [sym___r_single_quote] = ACTIONS(4198), }, - [1491] = { - [sym_line_comment] = STATE(1491), - [sym_block_comment] = STATE(1491), + [1490] = { + [sym_line_comment] = STATE(1490), + [sym_block_comment] = STATE(1490), [ts_builtin_sym_end] = ACTIONS(4200), [sym_identifier] = ACTIONS(4202), [anon_sym_LF] = ACTIONS(4202), @@ -180130,42 +180114,42 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym___r_double_quote] = ACTIONS(4202), [sym___r_single_quote] = ACTIONS(4202), }, - [1492] = { - [sym_line_comment] = STATE(1492), - [sym_block_comment] = STATE(1492), - [sym_import_declaration] = STATE(1586), - [aux_sym_import_list_repeat1] = STATE(1492), + [1491] = { + [sym_line_comment] = STATE(1491), + [sym_block_comment] = STATE(1491), [ts_builtin_sym_end] = ACTIONS(4204), [sym_identifier] = ACTIONS(4206), - [anon_sym_SLASH_SLASH] = ACTIONS(3), - [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_import] = ACTIONS(4208), + [anon_sym_LF] = ACTIONS(4206), + [anon_sym_CR] = ACTIONS(4206), + [anon_sym_CR_LF] = ACTIONS(4206), + [anon_sym_SLASH_SLASH] = ACTIONS(497), + [anon_sym_SLASH_STAR] = ACTIONS(499), [anon_sym_DOT] = ACTIONS(4206), - [anon_sym_LBRACE] = ACTIONS(4204), + [anon_sym_LBRACE] = ACTIONS(4206), [anon_sym_const] = ACTIONS(4206), - [anon_sym_LPAREN] = ACTIONS(4204), + [anon_sym_LPAREN] = ACTIONS(4206), [anon_sym___global] = ACTIONS(4206), [anon_sym_type] = ACTIONS(4206), [anon_sym_fn] = ACTIONS(4206), - [anon_sym_PLUS] = ACTIONS(4204), - [anon_sym_DASH] = ACTIONS(4204), - [anon_sym_STAR] = ACTIONS(4204), + [anon_sym_PLUS] = ACTIONS(4206), + [anon_sym_DASH] = ACTIONS(4206), + [anon_sym_STAR] = ACTIONS(4206), [anon_sym_struct] = ACTIONS(4206), [anon_sym_union] = ACTIONS(4206), [anon_sym_pub] = ACTIONS(4206), [anon_sym_mut] = ACTIONS(4206), [anon_sym_enum] = ACTIONS(4206), [anon_sym_interface] = ACTIONS(4206), - [anon_sym_QMARK] = ACTIONS(4204), - [anon_sym_BANG] = ACTIONS(4204), + [anon_sym_QMARK] = ACTIONS(4206), + [anon_sym_BANG] = ACTIONS(4206), [anon_sym_go] = ACTIONS(4206), [anon_sym_spawn] = ACTIONS(4206), - [anon_sym_json_DOTdecode] = ACTIONS(4204), - [anon_sym_LBRACK2] = ACTIONS(4204), - [anon_sym_TILDE] = ACTIONS(4204), - [anon_sym_CARET] = ACTIONS(4204), - [anon_sym_AMP] = ACTIONS(4204), - [anon_sym_LT_DASH] = ACTIONS(4204), + [anon_sym_json_DOTdecode] = ACTIONS(4206), + [anon_sym_LBRACK2] = ACTIONS(4206), + [anon_sym_TILDE] = ACTIONS(4206), + [anon_sym_CARET] = ACTIONS(4206), + [anon_sym_AMP] = ACTIONS(4206), + [anon_sym_LT_DASH] = ACTIONS(4206), [sym_none] = ACTIONS(4206), [sym_true] = ACTIONS(4206), [sym_false] = ACTIONS(4206), @@ -180179,11 +180163,11 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_unsafe] = ACTIONS(4206), [anon_sym_sql] = ACTIONS(4206), [sym_int_literal] = ACTIONS(4206), - [sym_float_literal] = ACTIONS(4204), - [sym_rune_literal] = ACTIONS(4204), + [sym_float_literal] = ACTIONS(4206), + [sym_rune_literal] = ACTIONS(4206), [sym_pseudo_compile_time_identifier] = ACTIONS(4206), [anon_sym_shared] = ACTIONS(4206), - [anon_sym_map_LBRACK] = ACTIONS(4204), + [anon_sym_map_LBRACK] = ACTIONS(4206), [anon_sym_chan] = ACTIONS(4206), [anon_sym_thread] = ACTIONS(4206), [anon_sym_atomic] = ACTIONS(4206), @@ -180195,3158 +180179,3308 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_return] = ACTIONS(4206), [anon_sym_DOLLARfor] = ACTIONS(4206), [anon_sym_for] = ACTIONS(4206), - [anon_sym_POUND] = ACTIONS(4204), + [anon_sym_POUND] = ACTIONS(4206), [anon_sym_asm] = ACTIONS(4206), - [anon_sym_AT_LBRACK] = ACTIONS(4204), - [sym___double_quote] = ACTIONS(4204), - [sym___single_quote] = ACTIONS(4204), - [sym___c_double_quote] = ACTIONS(4204), - [sym___c_single_quote] = ACTIONS(4204), - [sym___r_double_quote] = ACTIONS(4204), - [sym___r_single_quote] = ACTIONS(4204), + [anon_sym_AT_LBRACK] = ACTIONS(4206), + [sym___double_quote] = ACTIONS(4206), + [sym___single_quote] = ACTIONS(4206), + [sym___c_double_quote] = ACTIONS(4206), + [sym___c_single_quote] = ACTIONS(4206), + [sym___r_double_quote] = ACTIONS(4206), + [sym___r_single_quote] = ACTIONS(4206), + }, + [1492] = { + [sym_line_comment] = STATE(1492), + [sym_block_comment] = STATE(1492), + [ts_builtin_sym_end] = ACTIONS(4208), + [sym_identifier] = ACTIONS(4210), + [anon_sym_LF] = ACTIONS(4210), + [anon_sym_CR] = ACTIONS(4210), + [anon_sym_CR_LF] = ACTIONS(4210), + [anon_sym_SLASH_SLASH] = ACTIONS(497), + [anon_sym_SLASH_STAR] = ACTIONS(499), + [anon_sym_DOT] = ACTIONS(4210), + [anon_sym_LBRACE] = ACTIONS(4210), + [anon_sym_const] = ACTIONS(4210), + [anon_sym_LPAREN] = ACTIONS(4210), + [anon_sym___global] = ACTIONS(4210), + [anon_sym_type] = ACTIONS(4210), + [anon_sym_fn] = ACTIONS(4210), + [anon_sym_PLUS] = ACTIONS(4210), + [anon_sym_DASH] = ACTIONS(4210), + [anon_sym_STAR] = ACTIONS(4210), + [anon_sym_struct] = ACTIONS(4210), + [anon_sym_union] = ACTIONS(4210), + [anon_sym_pub] = ACTIONS(4210), + [anon_sym_mut] = ACTIONS(4210), + [anon_sym_enum] = ACTIONS(4210), + [anon_sym_interface] = ACTIONS(4210), + [anon_sym_QMARK] = ACTIONS(4210), + [anon_sym_BANG] = ACTIONS(4210), + [anon_sym_go] = ACTIONS(4210), + [anon_sym_spawn] = ACTIONS(4210), + [anon_sym_json_DOTdecode] = ACTIONS(4210), + [anon_sym_LBRACK2] = ACTIONS(4210), + [anon_sym_TILDE] = ACTIONS(4210), + [anon_sym_CARET] = ACTIONS(4210), + [anon_sym_AMP] = ACTIONS(4210), + [anon_sym_LT_DASH] = ACTIONS(4210), + [sym_none] = ACTIONS(4210), + [sym_true] = ACTIONS(4210), + [sym_false] = ACTIONS(4210), + [sym_nil] = ACTIONS(4210), + [anon_sym_if] = ACTIONS(4210), + [anon_sym_DOLLARif] = ACTIONS(4210), + [anon_sym_match] = ACTIONS(4210), + [anon_sym_select] = ACTIONS(4210), + [anon_sym_lock] = ACTIONS(4210), + [anon_sym_rlock] = ACTIONS(4210), + [anon_sym_unsafe] = ACTIONS(4210), + [anon_sym_sql] = ACTIONS(4210), + [sym_int_literal] = ACTIONS(4210), + [sym_float_literal] = ACTIONS(4210), + [sym_rune_literal] = ACTIONS(4210), + [sym_pseudo_compile_time_identifier] = ACTIONS(4210), + [anon_sym_shared] = ACTIONS(4210), + [anon_sym_map_LBRACK] = ACTIONS(4210), + [anon_sym_chan] = ACTIONS(4210), + [anon_sym_thread] = ACTIONS(4210), + [anon_sym_atomic] = ACTIONS(4210), + [anon_sym_assert] = ACTIONS(4210), + [anon_sym_defer] = ACTIONS(4210), + [anon_sym_goto] = ACTIONS(4210), + [anon_sym_break] = ACTIONS(4210), + [anon_sym_continue] = ACTIONS(4210), + [anon_sym_return] = ACTIONS(4210), + [anon_sym_DOLLARfor] = ACTIONS(4210), + [anon_sym_for] = ACTIONS(4210), + [anon_sym_POUND] = ACTIONS(4210), + [anon_sym_asm] = ACTIONS(4210), + [anon_sym_AT_LBRACK] = ACTIONS(4210), + [sym___double_quote] = ACTIONS(4210), + [sym___single_quote] = ACTIONS(4210), + [sym___c_double_quote] = ACTIONS(4210), + [sym___c_single_quote] = ACTIONS(4210), + [sym___r_double_quote] = ACTIONS(4210), + [sym___r_single_quote] = ACTIONS(4210), }, [1493] = { [sym_line_comment] = STATE(1493), [sym_block_comment] = STATE(1493), - [ts_builtin_sym_end] = ACTIONS(4211), - [sym_identifier] = ACTIONS(4213), - [anon_sym_LF] = ACTIONS(4213), - [anon_sym_CR] = ACTIONS(4213), - [anon_sym_CR_LF] = ACTIONS(4213), + [ts_builtin_sym_end] = ACTIONS(4212), + [sym_identifier] = ACTIONS(4214), + [anon_sym_LF] = ACTIONS(4214), + [anon_sym_CR] = ACTIONS(4214), + [anon_sym_CR_LF] = ACTIONS(4214), [anon_sym_SLASH_SLASH] = ACTIONS(497), [anon_sym_SLASH_STAR] = ACTIONS(499), - [anon_sym_DOT] = ACTIONS(4213), - [anon_sym_LBRACE] = ACTIONS(4213), - [anon_sym_const] = ACTIONS(4213), - [anon_sym_LPAREN] = ACTIONS(4213), - [anon_sym___global] = ACTIONS(4213), - [anon_sym_type] = ACTIONS(4213), - [anon_sym_fn] = ACTIONS(4213), - [anon_sym_PLUS] = ACTIONS(4213), - [anon_sym_DASH] = ACTIONS(4213), - [anon_sym_STAR] = ACTIONS(4213), - [anon_sym_struct] = ACTIONS(4213), - [anon_sym_union] = ACTIONS(4213), - [anon_sym_pub] = ACTIONS(4213), - [anon_sym_mut] = ACTIONS(4213), - [anon_sym_enum] = ACTIONS(4213), - [anon_sym_interface] = ACTIONS(4213), - [anon_sym_QMARK] = ACTIONS(4213), - [anon_sym_BANG] = ACTIONS(4213), - [anon_sym_go] = ACTIONS(4213), - [anon_sym_spawn] = ACTIONS(4213), - [anon_sym_json_DOTdecode] = ACTIONS(4213), - [anon_sym_LBRACK2] = ACTIONS(4213), - [anon_sym_TILDE] = ACTIONS(4213), - [anon_sym_CARET] = ACTIONS(4213), - [anon_sym_AMP] = ACTIONS(4213), - [anon_sym_LT_DASH] = ACTIONS(4213), - [sym_none] = ACTIONS(4213), - [sym_true] = ACTIONS(4213), - [sym_false] = ACTIONS(4213), - [sym_nil] = ACTIONS(4213), - [anon_sym_if] = ACTIONS(4213), - [anon_sym_DOLLARif] = ACTIONS(4213), - [anon_sym_match] = ACTIONS(4213), - [anon_sym_select] = ACTIONS(4213), - [anon_sym_lock] = ACTIONS(4213), - [anon_sym_rlock] = ACTIONS(4213), - [anon_sym_unsafe] = ACTIONS(4213), - [anon_sym_sql] = ACTIONS(4213), - [sym_int_literal] = ACTIONS(4213), - [sym_float_literal] = ACTIONS(4213), - [sym_rune_literal] = ACTIONS(4213), - [sym_pseudo_compile_time_identifier] = ACTIONS(4213), - [anon_sym_shared] = ACTIONS(4213), - [anon_sym_map_LBRACK] = ACTIONS(4213), - [anon_sym_chan] = ACTIONS(4213), - [anon_sym_thread] = ACTIONS(4213), - [anon_sym_atomic] = ACTIONS(4213), - [anon_sym_assert] = ACTIONS(4213), - [anon_sym_defer] = ACTIONS(4213), - [anon_sym_goto] = ACTIONS(4213), - [anon_sym_break] = ACTIONS(4213), - [anon_sym_continue] = ACTIONS(4213), - [anon_sym_return] = ACTIONS(4213), - [anon_sym_DOLLARfor] = ACTIONS(4213), - [anon_sym_for] = ACTIONS(4213), - [anon_sym_POUND] = ACTIONS(4213), - [anon_sym_asm] = ACTIONS(4213), - [anon_sym_AT_LBRACK] = ACTIONS(4213), - [sym___double_quote] = ACTIONS(4213), - [sym___single_quote] = ACTIONS(4213), - [sym___c_double_quote] = ACTIONS(4213), - [sym___c_single_quote] = ACTIONS(4213), - [sym___r_double_quote] = ACTIONS(4213), - [sym___r_single_quote] = ACTIONS(4213), + [anon_sym_DOT] = ACTIONS(4214), + [anon_sym_LBRACE] = ACTIONS(4214), + [anon_sym_const] = ACTIONS(4214), + [anon_sym_LPAREN] = ACTIONS(4214), + [anon_sym___global] = ACTIONS(4214), + [anon_sym_type] = ACTIONS(4214), + [anon_sym_fn] = ACTIONS(4214), + [anon_sym_PLUS] = ACTIONS(4214), + [anon_sym_DASH] = ACTIONS(4214), + [anon_sym_STAR] = ACTIONS(4214), + [anon_sym_struct] = ACTIONS(4214), + [anon_sym_union] = ACTIONS(4214), + [anon_sym_pub] = ACTIONS(4214), + [anon_sym_mut] = ACTIONS(4214), + [anon_sym_enum] = ACTIONS(4214), + [anon_sym_interface] = ACTIONS(4214), + [anon_sym_QMARK] = ACTIONS(4214), + [anon_sym_BANG] = ACTIONS(4214), + [anon_sym_go] = ACTIONS(4214), + [anon_sym_spawn] = ACTIONS(4214), + [anon_sym_json_DOTdecode] = ACTIONS(4214), + [anon_sym_LBRACK2] = ACTIONS(4214), + [anon_sym_TILDE] = ACTIONS(4214), + [anon_sym_CARET] = ACTIONS(4214), + [anon_sym_AMP] = ACTIONS(4214), + [anon_sym_LT_DASH] = ACTIONS(4214), + [sym_none] = ACTIONS(4214), + [sym_true] = ACTIONS(4214), + [sym_false] = ACTIONS(4214), + [sym_nil] = ACTIONS(4214), + [anon_sym_if] = ACTIONS(4214), + [anon_sym_DOLLARif] = ACTIONS(4214), + [anon_sym_match] = ACTIONS(4214), + [anon_sym_select] = ACTIONS(4214), + [anon_sym_lock] = ACTIONS(4214), + [anon_sym_rlock] = ACTIONS(4214), + [anon_sym_unsafe] = ACTIONS(4214), + [anon_sym_sql] = ACTIONS(4214), + [sym_int_literal] = ACTIONS(4214), + [sym_float_literal] = ACTIONS(4214), + [sym_rune_literal] = ACTIONS(4214), + [sym_pseudo_compile_time_identifier] = ACTIONS(4214), + [anon_sym_shared] = ACTIONS(4214), + [anon_sym_map_LBRACK] = ACTIONS(4214), + [anon_sym_chan] = ACTIONS(4214), + [anon_sym_thread] = ACTIONS(4214), + [anon_sym_atomic] = ACTIONS(4214), + [anon_sym_assert] = ACTIONS(4214), + [anon_sym_defer] = ACTIONS(4214), + [anon_sym_goto] = ACTIONS(4214), + [anon_sym_break] = ACTIONS(4214), + [anon_sym_continue] = ACTIONS(4214), + [anon_sym_return] = ACTIONS(4214), + [anon_sym_DOLLARfor] = ACTIONS(4214), + [anon_sym_for] = ACTIONS(4214), + [anon_sym_POUND] = ACTIONS(4214), + [anon_sym_asm] = ACTIONS(4214), + [anon_sym_AT_LBRACK] = ACTIONS(4214), + [sym___double_quote] = ACTIONS(4214), + [sym___single_quote] = ACTIONS(4214), + [sym___c_double_quote] = ACTIONS(4214), + [sym___c_single_quote] = ACTIONS(4214), + [sym___r_double_quote] = ACTIONS(4214), + [sym___r_single_quote] = ACTIONS(4214), }, [1494] = { [sym_line_comment] = STATE(1494), [sym_block_comment] = STATE(1494), - [sym_import_declaration] = STATE(1586), - [aux_sym_import_list_repeat1] = STATE(1492), - [ts_builtin_sym_end] = ACTIONS(4215), - [sym_identifier] = ACTIONS(4217), + [sym_reference_expression] = STATE(4498), + [sym_type_reference_expression] = STATE(3460), + [sym_plain_type] = STATE(2320), + [sym__plain_type_without_special] = STATE(2360), + [sym_anon_struct_type] = STATE(2362), + [sym_multi_return_type] = STATE(2360), + [sym_result_type] = STATE(2360), + [sym_option_type] = STATE(2360), + [sym_qualified_type] = STATE(3460), + [sym_fixed_array_type] = STATE(2362), + [sym_array_type] = STATE(2362), + [sym_pointer_type] = STATE(2362), + [sym_wrong_pointer_type] = STATE(2362), + [sym_map_type] = STATE(2362), + [sym_channel_type] = STATE(2362), + [sym_shared_type] = STATE(2362), + [sym_thread_type] = STATE(2362), + [sym_atomic_type] = STATE(2362), + [sym_generic_type] = STATE(2362), + [sym_function_type] = STATE(2362), + [sym_identifier] = ACTIONS(565), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_import] = ACTIONS(15), - [anon_sym_DOT] = ACTIONS(4217), - [anon_sym_LBRACE] = ACTIONS(4215), - [anon_sym_const] = ACTIONS(4217), - [anon_sym_LPAREN] = ACTIONS(4215), - [anon_sym___global] = ACTIONS(4217), - [anon_sym_type] = ACTIONS(4217), - [anon_sym_fn] = ACTIONS(4217), - [anon_sym_PLUS] = ACTIONS(4215), - [anon_sym_DASH] = ACTIONS(4215), - [anon_sym_STAR] = ACTIONS(4215), - [anon_sym_struct] = ACTIONS(4217), - [anon_sym_union] = ACTIONS(4217), - [anon_sym_pub] = ACTIONS(4217), - [anon_sym_mut] = ACTIONS(4217), - [anon_sym_enum] = ACTIONS(4217), - [anon_sym_interface] = ACTIONS(4217), - [anon_sym_QMARK] = ACTIONS(4215), - [anon_sym_BANG] = ACTIONS(4215), - [anon_sym_go] = ACTIONS(4217), - [anon_sym_spawn] = ACTIONS(4217), - [anon_sym_json_DOTdecode] = ACTIONS(4215), - [anon_sym_LBRACK2] = ACTIONS(4215), - [anon_sym_TILDE] = ACTIONS(4215), - [anon_sym_CARET] = ACTIONS(4215), - [anon_sym_AMP] = ACTIONS(4215), - [anon_sym_LT_DASH] = ACTIONS(4215), - [sym_none] = ACTIONS(4217), - [sym_true] = ACTIONS(4217), - [sym_false] = ACTIONS(4217), - [sym_nil] = ACTIONS(4217), - [anon_sym_if] = ACTIONS(4217), - [anon_sym_DOLLARif] = ACTIONS(4217), - [anon_sym_match] = ACTIONS(4217), - [anon_sym_select] = ACTIONS(4217), - [anon_sym_lock] = ACTIONS(4217), - [anon_sym_rlock] = ACTIONS(4217), - [anon_sym_unsafe] = ACTIONS(4217), - [anon_sym_sql] = ACTIONS(4217), - [sym_int_literal] = ACTIONS(4217), - [sym_float_literal] = ACTIONS(4215), - [sym_rune_literal] = ACTIONS(4215), - [sym_pseudo_compile_time_identifier] = ACTIONS(4217), - [anon_sym_shared] = ACTIONS(4217), - [anon_sym_map_LBRACK] = ACTIONS(4215), - [anon_sym_chan] = ACTIONS(4217), - [anon_sym_thread] = ACTIONS(4217), - [anon_sym_atomic] = ACTIONS(4217), - [anon_sym_assert] = ACTIONS(4217), - [anon_sym_defer] = ACTIONS(4217), - [anon_sym_goto] = ACTIONS(4217), - [anon_sym_break] = ACTIONS(4217), - [anon_sym_continue] = ACTIONS(4217), - [anon_sym_return] = ACTIONS(4217), - [anon_sym_DOLLARfor] = ACTIONS(4217), - [anon_sym_for] = ACTIONS(4217), - [anon_sym_POUND] = ACTIONS(4215), - [anon_sym_asm] = ACTIONS(4217), - [anon_sym_AT_LBRACK] = ACTIONS(4215), - [sym___double_quote] = ACTIONS(4215), - [sym___single_quote] = ACTIONS(4215), - [sym___c_double_quote] = ACTIONS(4215), - [sym___c_single_quote] = ACTIONS(4215), - [sym___r_double_quote] = ACTIONS(4215), - [sym___r_single_quote] = ACTIONS(4215), + [anon_sym_SEMI] = ACTIONS(563), + [anon_sym_DOT] = ACTIONS(567), + [anon_sym_as] = ACTIONS(567), + [anon_sym_LPAREN] = ACTIONS(3564), + [anon_sym_RPAREN] = ACTIONS(563), + [anon_sym_PIPE] = ACTIONS(567), + [anon_sym_fn] = ACTIONS(571), + [anon_sym_PLUS] = ACTIONS(567), + [anon_sym_DASH] = ACTIONS(567), + [anon_sym_STAR] = ACTIONS(3566), + [anon_sym_SLASH] = ACTIONS(567), + [anon_sym_PERCENT] = ACTIONS(563), + [anon_sym_LT] = ACTIONS(567), + [anon_sym_GT] = ACTIONS(567), + [anon_sym_EQ_EQ] = ACTIONS(563), + [anon_sym_BANG_EQ] = ACTIONS(563), + [anon_sym_LT_EQ] = ACTIONS(563), + [anon_sym_GT_EQ] = ACTIONS(563), + [anon_sym_LBRACK] = ACTIONS(563), + [anon_sym_RBRACK] = ACTIONS(563), + [anon_sym_struct] = ACTIONS(575), + [anon_sym_COLON] = ACTIONS(563), + [anon_sym_PLUS_PLUS] = ACTIONS(563), + [anon_sym_DASH_DASH] = ACTIONS(563), + [anon_sym_QMARK] = ACTIONS(515), + [anon_sym_BANG] = ACTIONS(4216), + [anon_sym_LBRACK2] = ACTIONS(579), + [anon_sym_CARET] = ACTIONS(563), + [anon_sym_AMP] = ACTIONS(581), + [anon_sym_LT_LT] = ACTIONS(563), + [anon_sym_GT_GT] = ACTIONS(567), + [anon_sym_GT_GT_GT] = ACTIONS(563), + [anon_sym_AMP_CARET] = ACTIONS(563), + [anon_sym_AMP_AMP] = ACTIONS(563), + [anon_sym_PIPE_PIPE] = ACTIONS(563), + [anon_sym_or] = ACTIONS(567), + [anon_sym_QMARK_DOT] = ACTIONS(563), + [anon_sym_POUND_LBRACK] = ACTIONS(563), + [anon_sym_is] = ACTIONS(567), + [anon_sym_BANGis] = ACTIONS(563), + [anon_sym_in] = ACTIONS(567), + [anon_sym_BANGin] = ACTIONS(563), + [anon_sym_shared] = ACTIONS(583), + [anon_sym_map_LBRACK] = ACTIONS(85), + [anon_sym_chan] = ACTIONS(87), + [anon_sym_thread] = ACTIONS(89), + [anon_sym_atomic] = ACTIONS(91), + [anon_sym_DOT_DOT] = ACTIONS(563), }, [1495] = { [sym_line_comment] = STATE(1495), [sym_block_comment] = STATE(1495), - [ts_builtin_sym_end] = ACTIONS(1843), - [sym_identifier] = ACTIONS(1845), - [anon_sym_LF] = ACTIONS(1845), - [anon_sym_CR] = ACTIONS(1845), - [anon_sym_CR_LF] = ACTIONS(1845), + [ts_builtin_sym_end] = ACTIONS(4218), + [sym_identifier] = ACTIONS(4220), + [anon_sym_LF] = ACTIONS(4220), + [anon_sym_CR] = ACTIONS(4220), + [anon_sym_CR_LF] = ACTIONS(4220), [anon_sym_SLASH_SLASH] = ACTIONS(497), [anon_sym_SLASH_STAR] = ACTIONS(499), - [anon_sym_DOT] = ACTIONS(1845), - [anon_sym_LBRACE] = ACTIONS(1845), - [anon_sym_const] = ACTIONS(1845), - [anon_sym_LPAREN] = ACTIONS(1845), - [anon_sym___global] = ACTIONS(1845), - [anon_sym_type] = ACTIONS(1845), - [anon_sym_fn] = ACTIONS(1845), - [anon_sym_PLUS] = ACTIONS(1845), - [anon_sym_DASH] = ACTIONS(1845), - [anon_sym_STAR] = ACTIONS(1845), - [anon_sym_struct] = ACTIONS(1845), - [anon_sym_union] = ACTIONS(1845), - [anon_sym_pub] = ACTIONS(1845), - [anon_sym_mut] = ACTIONS(1845), - [anon_sym_enum] = ACTIONS(1845), - [anon_sym_interface] = ACTIONS(1845), - [anon_sym_QMARK] = ACTIONS(1845), - [anon_sym_BANG] = ACTIONS(1845), - [anon_sym_go] = ACTIONS(1845), - [anon_sym_spawn] = ACTIONS(1845), - [anon_sym_json_DOTdecode] = ACTIONS(1845), - [anon_sym_LBRACK2] = ACTIONS(1845), - [anon_sym_TILDE] = ACTIONS(1845), - [anon_sym_CARET] = ACTIONS(1845), - [anon_sym_AMP] = ACTIONS(1845), - [anon_sym_LT_DASH] = ACTIONS(1845), - [sym_none] = ACTIONS(1845), - [sym_true] = ACTIONS(1845), - [sym_false] = ACTIONS(1845), - [sym_nil] = ACTIONS(1845), - [anon_sym_if] = ACTIONS(1845), - [anon_sym_DOLLARif] = ACTIONS(1845), - [anon_sym_match] = ACTIONS(1845), - [anon_sym_select] = ACTIONS(1845), - [anon_sym_lock] = ACTIONS(1845), - [anon_sym_rlock] = ACTIONS(1845), - [anon_sym_unsafe] = ACTIONS(1845), - [anon_sym_sql] = ACTIONS(1845), - [sym_int_literal] = ACTIONS(1845), - [sym_float_literal] = ACTIONS(1845), - [sym_rune_literal] = ACTIONS(1845), - [sym_pseudo_compile_time_identifier] = ACTIONS(1845), - [anon_sym_shared] = ACTIONS(1845), - [anon_sym_map_LBRACK] = ACTIONS(1845), - [anon_sym_chan] = ACTIONS(1845), - [anon_sym_thread] = ACTIONS(1845), - [anon_sym_atomic] = ACTIONS(1845), - [anon_sym_assert] = ACTIONS(1845), - [anon_sym_defer] = ACTIONS(1845), - [anon_sym_goto] = ACTIONS(1845), - [anon_sym_break] = ACTIONS(1845), - [anon_sym_continue] = ACTIONS(1845), - [anon_sym_return] = ACTIONS(1845), - [anon_sym_DOLLARfor] = ACTIONS(1845), - [anon_sym_for] = ACTIONS(1845), - [anon_sym_POUND] = ACTIONS(1845), - [anon_sym_asm] = ACTIONS(1845), - [anon_sym_AT_LBRACK] = ACTIONS(1845), - [sym___double_quote] = ACTIONS(1845), - [sym___single_quote] = ACTIONS(1845), - [sym___c_double_quote] = ACTIONS(1845), - [sym___c_single_quote] = ACTIONS(1845), - [sym___r_double_quote] = ACTIONS(1845), - [sym___r_single_quote] = ACTIONS(1845), + [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), }, [1496] = { [sym_line_comment] = STATE(1496), [sym_block_comment] = STATE(1496), - [sym_reference_expression] = STATE(4495), - [sym_type_reference_expression] = STATE(3541), - [sym_plain_type] = STATE(2386), - [sym__plain_type_without_special] = STATE(2302), - [sym_anon_struct_type] = STATE(2303), - [sym_multi_return_type] = STATE(2302), - [sym_result_type] = STATE(2302), - [sym_option_type] = STATE(2302), - [sym_qualified_type] = STATE(3541), - [sym_fixed_array_type] = STATE(2303), - [sym_array_type] = STATE(2303), - [sym_pointer_type] = STATE(2303), - [sym_wrong_pointer_type] = STATE(2303), - [sym_map_type] = STATE(2303), - [sym_channel_type] = STATE(2303), - [sym_shared_type] = STATE(2303), - [sym_thread_type] = STATE(2303), - [sym_atomic_type] = STATE(2303), - [sym_generic_type] = STATE(2303), - [sym_function_type] = STATE(2303), - [sym_identifier] = ACTIONS(597), - [anon_sym_SLASH_SLASH] = ACTIONS(3), - [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_SEMI] = ACTIONS(595), - [anon_sym_DOT] = ACTIONS(599), - [anon_sym_as] = ACTIONS(599), - [anon_sym_LPAREN] = ACTIONS(3586), - [anon_sym_RPAREN] = ACTIONS(595), - [anon_sym_PIPE] = ACTIONS(599), - [anon_sym_fn] = ACTIONS(603), - [anon_sym_PLUS] = ACTIONS(599), - [anon_sym_DASH] = ACTIONS(599), - [anon_sym_STAR] = ACTIONS(3588), - [anon_sym_SLASH] = ACTIONS(599), - [anon_sym_PERCENT] = ACTIONS(595), - [anon_sym_LT] = ACTIONS(599), - [anon_sym_GT] = ACTIONS(599), - [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(607), - [anon_sym_COLON] = ACTIONS(595), - [anon_sym_PLUS_PLUS] = ACTIONS(595), - [anon_sym_DASH_DASH] = ACTIONS(595), - [anon_sym_QMARK] = ACTIONS(515), - [anon_sym_BANG] = ACTIONS(4219), - [anon_sym_LBRACK2] = ACTIONS(611), - [anon_sym_CARET] = ACTIONS(595), - [anon_sym_AMP] = ACTIONS(613), - [anon_sym_LT_LT] = ACTIONS(595), - [anon_sym_GT_GT] = ACTIONS(599), - [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(599), - [anon_sym_QMARK_DOT] = ACTIONS(595), - [anon_sym_POUND_LBRACK] = ACTIONS(595), - [anon_sym_is] = ACTIONS(599), - [anon_sym_BANGis] = ACTIONS(595), - [anon_sym_in] = ACTIONS(599), - [anon_sym_BANGin] = ACTIONS(595), - [anon_sym_shared] = ACTIONS(615), - [anon_sym_map_LBRACK] = ACTIONS(85), - [anon_sym_chan] = ACTIONS(87), - [anon_sym_thread] = ACTIONS(89), - [anon_sym_atomic] = ACTIONS(91), - [anon_sym_DOT_DOT] = ACTIONS(595), + [ts_builtin_sym_end] = ACTIONS(4222), + [sym_identifier] = ACTIONS(4224), + [anon_sym_LF] = ACTIONS(4226), + [anon_sym_CR] = ACTIONS(4226), + [anon_sym_CR_LF] = ACTIONS(4226), + [anon_sym_SLASH_SLASH] = ACTIONS(497), + [anon_sym_SLASH_STAR] = ACTIONS(499), + [anon_sym_DOT] = ACTIONS(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), }, [1497] = { [sym_line_comment] = STATE(1497), [sym_block_comment] = STATE(1497), - [ts_builtin_sym_end] = ACTIONS(4221), - [sym_identifier] = ACTIONS(4223), - [anon_sym_LF] = ACTIONS(4223), - [anon_sym_CR] = ACTIONS(4223), - [anon_sym_CR_LF] = ACTIONS(4223), + [ts_builtin_sym_end] = ACTIONS(1751), + [sym_identifier] = ACTIONS(1753), + [anon_sym_LF] = ACTIONS(1753), + [anon_sym_CR] = ACTIONS(1753), + [anon_sym_CR_LF] = ACTIONS(1753), [anon_sym_SLASH_SLASH] = ACTIONS(497), [anon_sym_SLASH_STAR] = ACTIONS(499), - [anon_sym_DOT] = ACTIONS(4223), - [anon_sym_LBRACE] = ACTIONS(4223), - [anon_sym_const] = ACTIONS(4223), - [anon_sym_LPAREN] = ACTIONS(4223), - [anon_sym___global] = ACTIONS(4223), - [anon_sym_type] = ACTIONS(4223), - [anon_sym_fn] = ACTIONS(4223), - [anon_sym_PLUS] = ACTIONS(4223), - [anon_sym_DASH] = ACTIONS(4223), - [anon_sym_STAR] = ACTIONS(4223), - [anon_sym_struct] = ACTIONS(4223), - [anon_sym_union] = ACTIONS(4223), - [anon_sym_pub] = ACTIONS(4223), - [anon_sym_mut] = ACTIONS(4223), - [anon_sym_enum] = ACTIONS(4223), - [anon_sym_interface] = ACTIONS(4223), - [anon_sym_QMARK] = ACTIONS(4223), - [anon_sym_BANG] = ACTIONS(4223), - [anon_sym_go] = ACTIONS(4223), - [anon_sym_spawn] = ACTIONS(4223), - [anon_sym_json_DOTdecode] = ACTIONS(4223), - [anon_sym_LBRACK2] = ACTIONS(4223), - [anon_sym_TILDE] = ACTIONS(4223), - [anon_sym_CARET] = ACTIONS(4223), - [anon_sym_AMP] = ACTIONS(4223), - [anon_sym_LT_DASH] = ACTIONS(4223), - [sym_none] = ACTIONS(4223), - [sym_true] = ACTIONS(4223), - [sym_false] = ACTIONS(4223), - [sym_nil] = ACTIONS(4223), - [anon_sym_if] = ACTIONS(4223), - [anon_sym_DOLLARif] = ACTIONS(4223), - [anon_sym_match] = ACTIONS(4223), - [anon_sym_select] = ACTIONS(4223), - [anon_sym_lock] = ACTIONS(4223), - [anon_sym_rlock] = ACTIONS(4223), - [anon_sym_unsafe] = ACTIONS(4223), - [anon_sym_sql] = ACTIONS(4223), - [sym_int_literal] = ACTIONS(4223), - [sym_float_literal] = ACTIONS(4223), - [sym_rune_literal] = ACTIONS(4223), - [sym_pseudo_compile_time_identifier] = ACTIONS(4223), - [anon_sym_shared] = ACTIONS(4223), - [anon_sym_map_LBRACK] = ACTIONS(4223), - [anon_sym_chan] = ACTIONS(4223), - [anon_sym_thread] = ACTIONS(4223), - [anon_sym_atomic] = ACTIONS(4223), - [anon_sym_assert] = ACTIONS(4223), - [anon_sym_defer] = ACTIONS(4223), - [anon_sym_goto] = ACTIONS(4223), - [anon_sym_break] = ACTIONS(4223), - [anon_sym_continue] = ACTIONS(4223), - [anon_sym_return] = ACTIONS(4223), - [anon_sym_DOLLARfor] = ACTIONS(4223), - [anon_sym_for] = ACTIONS(4223), - [anon_sym_POUND] = ACTIONS(4223), - [anon_sym_asm] = ACTIONS(4223), - [anon_sym_AT_LBRACK] = ACTIONS(4223), - [sym___double_quote] = ACTIONS(4223), - [sym___single_quote] = ACTIONS(4223), - [sym___c_double_quote] = ACTIONS(4223), - [sym___c_single_quote] = ACTIONS(4223), - [sym___r_double_quote] = ACTIONS(4223), - [sym___r_single_quote] = ACTIONS(4223), + [anon_sym_DOT] = ACTIONS(1753), + [anon_sym_LBRACE] = ACTIONS(1753), + [anon_sym_const] = ACTIONS(1753), + [anon_sym_LPAREN] = ACTIONS(1753), + [anon_sym___global] = ACTIONS(1753), + [anon_sym_type] = ACTIONS(1753), + [anon_sym_fn] = ACTIONS(1753), + [anon_sym_PLUS] = ACTIONS(1753), + [anon_sym_DASH] = ACTIONS(1753), + [anon_sym_STAR] = ACTIONS(1753), + [anon_sym_struct] = ACTIONS(1753), + [anon_sym_union] = ACTIONS(1753), + [anon_sym_pub] = ACTIONS(1753), + [anon_sym_mut] = ACTIONS(1753), + [anon_sym_enum] = ACTIONS(1753), + [anon_sym_interface] = ACTIONS(1753), + [anon_sym_QMARK] = ACTIONS(1753), + [anon_sym_BANG] = ACTIONS(1753), + [anon_sym_go] = ACTIONS(1753), + [anon_sym_spawn] = ACTIONS(1753), + [anon_sym_json_DOTdecode] = ACTIONS(1753), + [anon_sym_LBRACK2] = ACTIONS(1753), + [anon_sym_TILDE] = ACTIONS(1753), + [anon_sym_CARET] = ACTIONS(1753), + [anon_sym_AMP] = ACTIONS(1753), + [anon_sym_LT_DASH] = ACTIONS(1753), + [sym_none] = ACTIONS(1753), + [sym_true] = ACTIONS(1753), + [sym_false] = ACTIONS(1753), + [sym_nil] = ACTIONS(1753), + [anon_sym_if] = ACTIONS(1753), + [anon_sym_DOLLARif] = ACTIONS(1753), + [anon_sym_match] = ACTIONS(1753), + [anon_sym_select] = ACTIONS(1753), + [anon_sym_lock] = ACTIONS(1753), + [anon_sym_rlock] = ACTIONS(1753), + [anon_sym_unsafe] = ACTIONS(1753), + [anon_sym_sql] = ACTIONS(1753), + [sym_int_literal] = ACTIONS(1753), + [sym_float_literal] = ACTIONS(1753), + [sym_rune_literal] = ACTIONS(1753), + [sym_pseudo_compile_time_identifier] = ACTIONS(1753), + [anon_sym_shared] = ACTIONS(1753), + [anon_sym_map_LBRACK] = ACTIONS(1753), + [anon_sym_chan] = ACTIONS(1753), + [anon_sym_thread] = ACTIONS(1753), + [anon_sym_atomic] = ACTIONS(1753), + [anon_sym_assert] = ACTIONS(1753), + [anon_sym_defer] = ACTIONS(1753), + [anon_sym_goto] = ACTIONS(1753), + [anon_sym_break] = ACTIONS(1753), + [anon_sym_continue] = ACTIONS(1753), + [anon_sym_return] = ACTIONS(1753), + [anon_sym_DOLLARfor] = ACTIONS(1753), + [anon_sym_for] = ACTIONS(1753), + [anon_sym_POUND] = ACTIONS(1753), + [anon_sym_asm] = ACTIONS(1753), + [anon_sym_AT_LBRACK] = ACTIONS(1753), + [sym___double_quote] = ACTIONS(1753), + [sym___single_quote] = ACTIONS(1753), + [sym___c_double_quote] = ACTIONS(1753), + [sym___c_single_quote] = ACTIONS(1753), + [sym___r_double_quote] = ACTIONS(1753), + [sym___r_single_quote] = ACTIONS(1753), }, [1498] = { [sym_line_comment] = STATE(1498), [sym_block_comment] = STATE(1498), - [ts_builtin_sym_end] = ACTIONS(4225), - [sym_identifier] = ACTIONS(4227), - [anon_sym_LF] = ACTIONS(4227), - [anon_sym_CR] = ACTIONS(4227), - [anon_sym_CR_LF] = ACTIONS(4227), + [ts_builtin_sym_end] = ACTIONS(4228), + [sym_identifier] = ACTIONS(4230), + [anon_sym_LF] = ACTIONS(4230), + [anon_sym_CR] = ACTIONS(4230), + [anon_sym_CR_LF] = ACTIONS(4230), [anon_sym_SLASH_SLASH] = ACTIONS(497), [anon_sym_SLASH_STAR] = ACTIONS(499), - [anon_sym_DOT] = ACTIONS(4227), - [anon_sym_LBRACE] = ACTIONS(4227), - [anon_sym_const] = ACTIONS(4227), - [anon_sym_LPAREN] = ACTIONS(4227), - [anon_sym___global] = ACTIONS(4227), - [anon_sym_type] = ACTIONS(4227), - [anon_sym_fn] = ACTIONS(4227), - [anon_sym_PLUS] = ACTIONS(4227), - [anon_sym_DASH] = ACTIONS(4227), - [anon_sym_STAR] = ACTIONS(4227), - [anon_sym_struct] = ACTIONS(4227), - [anon_sym_union] = ACTIONS(4227), - [anon_sym_pub] = ACTIONS(4227), - [anon_sym_mut] = ACTIONS(4227), - [anon_sym_enum] = ACTIONS(4227), - [anon_sym_interface] = ACTIONS(4227), - [anon_sym_QMARK] = ACTIONS(4227), - [anon_sym_BANG] = ACTIONS(4227), - [anon_sym_go] = ACTIONS(4227), - [anon_sym_spawn] = ACTIONS(4227), - [anon_sym_json_DOTdecode] = ACTIONS(4227), - [anon_sym_LBRACK2] = ACTIONS(4227), - [anon_sym_TILDE] = ACTIONS(4227), - [anon_sym_CARET] = ACTIONS(4227), - [anon_sym_AMP] = ACTIONS(4227), - [anon_sym_LT_DASH] = ACTIONS(4227), - [sym_none] = ACTIONS(4227), - [sym_true] = ACTIONS(4227), - [sym_false] = ACTIONS(4227), - [sym_nil] = ACTIONS(4227), - [anon_sym_if] = ACTIONS(4227), - [anon_sym_DOLLARif] = ACTIONS(4227), - [anon_sym_match] = ACTIONS(4227), - [anon_sym_select] = ACTIONS(4227), - [anon_sym_lock] = ACTIONS(4227), - [anon_sym_rlock] = ACTIONS(4227), - [anon_sym_unsafe] = ACTIONS(4227), - [anon_sym_sql] = ACTIONS(4227), - [sym_int_literal] = ACTIONS(4227), - [sym_float_literal] = ACTIONS(4227), - [sym_rune_literal] = ACTIONS(4227), - [sym_pseudo_compile_time_identifier] = ACTIONS(4227), - [anon_sym_shared] = ACTIONS(4227), - [anon_sym_map_LBRACK] = ACTIONS(4227), - [anon_sym_chan] = ACTIONS(4227), - [anon_sym_thread] = ACTIONS(4227), - [anon_sym_atomic] = ACTIONS(4227), - [anon_sym_assert] = ACTIONS(4227), - [anon_sym_defer] = ACTIONS(4227), - [anon_sym_goto] = ACTIONS(4227), - [anon_sym_break] = ACTIONS(4227), - [anon_sym_continue] = ACTIONS(4227), - [anon_sym_return] = ACTIONS(4227), - [anon_sym_DOLLARfor] = ACTIONS(4227), - [anon_sym_for] = ACTIONS(4227), - [anon_sym_POUND] = ACTIONS(4227), - [anon_sym_asm] = ACTIONS(4227), - [anon_sym_AT_LBRACK] = ACTIONS(4227), - [sym___double_quote] = ACTIONS(4227), - [sym___single_quote] = ACTIONS(4227), - [sym___c_double_quote] = ACTIONS(4227), - [sym___c_single_quote] = ACTIONS(4227), - [sym___r_double_quote] = ACTIONS(4227), - [sym___r_single_quote] = ACTIONS(4227), + [anon_sym_DOT] = ACTIONS(4230), + [anon_sym_LBRACE] = ACTIONS(4230), + [anon_sym_const] = ACTIONS(4230), + [anon_sym_LPAREN] = ACTIONS(4230), + [anon_sym___global] = ACTIONS(4230), + [anon_sym_type] = ACTIONS(4230), + [anon_sym_fn] = ACTIONS(4230), + [anon_sym_PLUS] = ACTIONS(4230), + [anon_sym_DASH] = ACTIONS(4230), + [anon_sym_STAR] = ACTIONS(4230), + [anon_sym_struct] = ACTIONS(4230), + [anon_sym_union] = ACTIONS(4230), + [anon_sym_pub] = ACTIONS(4230), + [anon_sym_mut] = ACTIONS(4230), + [anon_sym_enum] = ACTIONS(4230), + [anon_sym_interface] = ACTIONS(4230), + [anon_sym_QMARK] = ACTIONS(4230), + [anon_sym_BANG] = ACTIONS(4230), + [anon_sym_go] = ACTIONS(4230), + [anon_sym_spawn] = ACTIONS(4230), + [anon_sym_json_DOTdecode] = ACTIONS(4230), + [anon_sym_LBRACK2] = ACTIONS(4230), + [anon_sym_TILDE] = ACTIONS(4230), + [anon_sym_CARET] = ACTIONS(4230), + [anon_sym_AMP] = ACTIONS(4230), + [anon_sym_LT_DASH] = ACTIONS(4230), + [sym_none] = ACTIONS(4230), + [sym_true] = ACTIONS(4230), + [sym_false] = ACTIONS(4230), + [sym_nil] = ACTIONS(4230), + [anon_sym_if] = ACTIONS(4230), + [anon_sym_DOLLARif] = ACTIONS(4230), + [anon_sym_match] = ACTIONS(4230), + [anon_sym_select] = ACTIONS(4230), + [anon_sym_lock] = ACTIONS(4230), + [anon_sym_rlock] = ACTIONS(4230), + [anon_sym_unsafe] = ACTIONS(4230), + [anon_sym_sql] = ACTIONS(4230), + [sym_int_literal] = ACTIONS(4230), + [sym_float_literal] = ACTIONS(4230), + [sym_rune_literal] = ACTIONS(4230), + [sym_pseudo_compile_time_identifier] = ACTIONS(4230), + [anon_sym_shared] = ACTIONS(4230), + [anon_sym_map_LBRACK] = ACTIONS(4230), + [anon_sym_chan] = ACTIONS(4230), + [anon_sym_thread] = ACTIONS(4230), + [anon_sym_atomic] = ACTIONS(4230), + [anon_sym_assert] = ACTIONS(4230), + [anon_sym_defer] = ACTIONS(4230), + [anon_sym_goto] = ACTIONS(4230), + [anon_sym_break] = ACTIONS(4230), + [anon_sym_continue] = ACTIONS(4230), + [anon_sym_return] = ACTIONS(4230), + [anon_sym_DOLLARfor] = ACTIONS(4230), + [anon_sym_for] = ACTIONS(4230), + [anon_sym_POUND] = ACTIONS(4230), + [anon_sym_asm] = ACTIONS(4230), + [anon_sym_AT_LBRACK] = ACTIONS(4230), + [sym___double_quote] = ACTIONS(4230), + [sym___single_quote] = ACTIONS(4230), + [sym___c_double_quote] = ACTIONS(4230), + [sym___c_single_quote] = ACTIONS(4230), + [sym___r_double_quote] = ACTIONS(4230), + [sym___r_single_quote] = ACTIONS(4230), }, [1499] = { [sym_line_comment] = STATE(1499), [sym_block_comment] = STATE(1499), - [ts_builtin_sym_end] = ACTIONS(4229), - [sym_identifier] = ACTIONS(4231), - [anon_sym_LF] = ACTIONS(4231), - [anon_sym_CR] = ACTIONS(4231), - [anon_sym_CR_LF] = ACTIONS(4231), + [ts_builtin_sym_end] = ACTIONS(4232), + [sym_identifier] = ACTIONS(4234), + [anon_sym_LF] = ACTIONS(4234), + [anon_sym_CR] = ACTIONS(4234), + [anon_sym_CR_LF] = ACTIONS(4234), [anon_sym_SLASH_SLASH] = ACTIONS(497), [anon_sym_SLASH_STAR] = ACTIONS(499), - [anon_sym_DOT] = ACTIONS(4231), - [anon_sym_LBRACE] = ACTIONS(4231), - [anon_sym_const] = ACTIONS(4231), - [anon_sym_LPAREN] = ACTIONS(4231), - [anon_sym___global] = ACTIONS(4231), - [anon_sym_type] = ACTIONS(4231), - [anon_sym_fn] = ACTIONS(4231), - [anon_sym_PLUS] = ACTIONS(4231), - [anon_sym_DASH] = ACTIONS(4231), - [anon_sym_STAR] = ACTIONS(4231), - [anon_sym_struct] = ACTIONS(4231), - [anon_sym_union] = ACTIONS(4231), - [anon_sym_pub] = ACTIONS(4231), - [anon_sym_mut] = ACTIONS(4231), - [anon_sym_enum] = ACTIONS(4231), - [anon_sym_interface] = ACTIONS(4231), - [anon_sym_QMARK] = ACTIONS(4231), - [anon_sym_BANG] = ACTIONS(4231), - [anon_sym_go] = ACTIONS(4231), - [anon_sym_spawn] = ACTIONS(4231), - [anon_sym_json_DOTdecode] = ACTIONS(4231), - [anon_sym_LBRACK2] = ACTIONS(4231), - [anon_sym_TILDE] = ACTIONS(4231), - [anon_sym_CARET] = ACTIONS(4231), - [anon_sym_AMP] = ACTIONS(4231), - [anon_sym_LT_DASH] = ACTIONS(4231), - [sym_none] = ACTIONS(4231), - [sym_true] = ACTIONS(4231), - [sym_false] = ACTIONS(4231), - [sym_nil] = ACTIONS(4231), - [anon_sym_if] = ACTIONS(4231), - [anon_sym_DOLLARif] = ACTIONS(4231), - [anon_sym_match] = ACTIONS(4231), - [anon_sym_select] = ACTIONS(4231), - [anon_sym_lock] = ACTIONS(4231), - [anon_sym_rlock] = ACTIONS(4231), - [anon_sym_unsafe] = ACTIONS(4231), - [anon_sym_sql] = ACTIONS(4231), - [sym_int_literal] = ACTIONS(4231), - [sym_float_literal] = ACTIONS(4231), - [sym_rune_literal] = ACTIONS(4231), - [sym_pseudo_compile_time_identifier] = ACTIONS(4231), - [anon_sym_shared] = ACTIONS(4231), - [anon_sym_map_LBRACK] = ACTIONS(4231), - [anon_sym_chan] = ACTIONS(4231), - [anon_sym_thread] = ACTIONS(4231), - [anon_sym_atomic] = ACTIONS(4231), - [anon_sym_assert] = ACTIONS(4231), - [anon_sym_defer] = ACTIONS(4231), - [anon_sym_goto] = ACTIONS(4231), - [anon_sym_break] = ACTIONS(4231), - [anon_sym_continue] = ACTIONS(4231), - [anon_sym_return] = ACTIONS(4231), - [anon_sym_DOLLARfor] = ACTIONS(4231), - [anon_sym_for] = ACTIONS(4231), - [anon_sym_POUND] = ACTIONS(4231), - [anon_sym_asm] = ACTIONS(4231), - [anon_sym_AT_LBRACK] = ACTIONS(4231), - [sym___double_quote] = ACTIONS(4231), - [sym___single_quote] = ACTIONS(4231), - [sym___c_double_quote] = ACTIONS(4231), - [sym___c_single_quote] = ACTIONS(4231), - [sym___r_double_quote] = ACTIONS(4231), - [sym___r_single_quote] = ACTIONS(4231), + [anon_sym_DOT] = ACTIONS(4234), + [anon_sym_LBRACE] = ACTIONS(4234), + [anon_sym_const] = ACTIONS(4234), + [anon_sym_LPAREN] = ACTIONS(4234), + [anon_sym___global] = ACTIONS(4234), + [anon_sym_type] = ACTIONS(4234), + [anon_sym_fn] = ACTIONS(4234), + [anon_sym_PLUS] = ACTIONS(4234), + [anon_sym_DASH] = ACTIONS(4234), + [anon_sym_STAR] = ACTIONS(4234), + [anon_sym_struct] = ACTIONS(4234), + [anon_sym_union] = ACTIONS(4234), + [anon_sym_pub] = ACTIONS(4234), + [anon_sym_mut] = ACTIONS(4234), + [anon_sym_enum] = ACTIONS(4234), + [anon_sym_interface] = ACTIONS(4234), + [anon_sym_QMARK] = ACTIONS(4234), + [anon_sym_BANG] = ACTIONS(4234), + [anon_sym_go] = ACTIONS(4234), + [anon_sym_spawn] = ACTIONS(4234), + [anon_sym_json_DOTdecode] = ACTIONS(4234), + [anon_sym_LBRACK2] = ACTIONS(4234), + [anon_sym_TILDE] = ACTIONS(4234), + [anon_sym_CARET] = ACTIONS(4234), + [anon_sym_AMP] = ACTIONS(4234), + [anon_sym_LT_DASH] = ACTIONS(4234), + [sym_none] = ACTIONS(4234), + [sym_true] = ACTIONS(4234), + [sym_false] = ACTIONS(4234), + [sym_nil] = ACTIONS(4234), + [anon_sym_if] = ACTIONS(4234), + [anon_sym_DOLLARif] = ACTIONS(4234), + [anon_sym_match] = ACTIONS(4234), + [anon_sym_select] = ACTIONS(4234), + [anon_sym_lock] = ACTIONS(4234), + [anon_sym_rlock] = ACTIONS(4234), + [anon_sym_unsafe] = ACTIONS(4234), + [anon_sym_sql] = ACTIONS(4234), + [sym_int_literal] = ACTIONS(4234), + [sym_float_literal] = ACTIONS(4234), + [sym_rune_literal] = ACTIONS(4234), + [sym_pseudo_compile_time_identifier] = ACTIONS(4234), + [anon_sym_shared] = ACTIONS(4234), + [anon_sym_map_LBRACK] = ACTIONS(4234), + [anon_sym_chan] = ACTIONS(4234), + [anon_sym_thread] = ACTIONS(4234), + [anon_sym_atomic] = ACTIONS(4234), + [anon_sym_assert] = ACTIONS(4234), + [anon_sym_defer] = ACTIONS(4234), + [anon_sym_goto] = ACTIONS(4234), + [anon_sym_break] = ACTIONS(4234), + [anon_sym_continue] = ACTIONS(4234), + [anon_sym_return] = ACTIONS(4234), + [anon_sym_DOLLARfor] = ACTIONS(4234), + [anon_sym_for] = ACTIONS(4234), + [anon_sym_POUND] = ACTIONS(4234), + [anon_sym_asm] = ACTIONS(4234), + [anon_sym_AT_LBRACK] = ACTIONS(4234), + [sym___double_quote] = ACTIONS(4234), + [sym___single_quote] = ACTIONS(4234), + [sym___c_double_quote] = ACTIONS(4234), + [sym___c_single_quote] = ACTIONS(4234), + [sym___r_double_quote] = ACTIONS(4234), + [sym___r_single_quote] = ACTIONS(4234), }, [1500] = { [sym_line_comment] = STATE(1500), [sym_block_comment] = STATE(1500), - [ts_builtin_sym_end] = ACTIONS(4233), - [sym_identifier] = ACTIONS(4235), - [anon_sym_LF] = ACTIONS(4235), - [anon_sym_CR] = ACTIONS(4235), - [anon_sym_CR_LF] = ACTIONS(4235), + [ts_builtin_sym_end] = ACTIONS(4236), + [sym_identifier] = ACTIONS(4238), + [anon_sym_LF] = ACTIONS(4238), + [anon_sym_CR] = ACTIONS(4238), + [anon_sym_CR_LF] = ACTIONS(4238), [anon_sym_SLASH_SLASH] = ACTIONS(497), [anon_sym_SLASH_STAR] = ACTIONS(499), - [anon_sym_DOT] = ACTIONS(4235), - [anon_sym_LBRACE] = ACTIONS(4235), - [anon_sym_const] = ACTIONS(4235), - [anon_sym_LPAREN] = ACTIONS(4235), - [anon_sym___global] = ACTIONS(4235), - [anon_sym_type] = ACTIONS(4235), - [anon_sym_fn] = ACTIONS(4235), - [anon_sym_PLUS] = ACTIONS(4235), - [anon_sym_DASH] = ACTIONS(4235), - [anon_sym_STAR] = ACTIONS(4235), - [anon_sym_struct] = ACTIONS(4235), - [anon_sym_union] = ACTIONS(4235), - [anon_sym_pub] = ACTIONS(4235), - [anon_sym_mut] = ACTIONS(4235), - [anon_sym_enum] = ACTIONS(4235), - [anon_sym_interface] = ACTIONS(4235), - [anon_sym_QMARK] = ACTIONS(4235), - [anon_sym_BANG] = ACTIONS(4235), - [anon_sym_go] = ACTIONS(4235), - [anon_sym_spawn] = ACTIONS(4235), - [anon_sym_json_DOTdecode] = ACTIONS(4235), - [anon_sym_LBRACK2] = ACTIONS(4235), - [anon_sym_TILDE] = ACTIONS(4235), - [anon_sym_CARET] = ACTIONS(4235), - [anon_sym_AMP] = ACTIONS(4235), - [anon_sym_LT_DASH] = ACTIONS(4235), - [sym_none] = ACTIONS(4235), - [sym_true] = ACTIONS(4235), - [sym_false] = ACTIONS(4235), - [sym_nil] = ACTIONS(4235), - [anon_sym_if] = ACTIONS(4235), - [anon_sym_DOLLARif] = ACTIONS(4235), - [anon_sym_match] = ACTIONS(4235), - [anon_sym_select] = ACTIONS(4235), - [anon_sym_lock] = ACTIONS(4235), - [anon_sym_rlock] = ACTIONS(4235), - [anon_sym_unsafe] = ACTIONS(4235), - [anon_sym_sql] = ACTIONS(4235), - [sym_int_literal] = ACTIONS(4235), - [sym_float_literal] = ACTIONS(4235), - [sym_rune_literal] = ACTIONS(4235), - [sym_pseudo_compile_time_identifier] = ACTIONS(4235), - [anon_sym_shared] = ACTIONS(4235), - [anon_sym_map_LBRACK] = ACTIONS(4235), - [anon_sym_chan] = ACTIONS(4235), - [anon_sym_thread] = ACTIONS(4235), - [anon_sym_atomic] = ACTIONS(4235), - [anon_sym_assert] = ACTIONS(4235), - [anon_sym_defer] = ACTIONS(4235), - [anon_sym_goto] = ACTIONS(4235), - [anon_sym_break] = ACTIONS(4235), - [anon_sym_continue] = ACTIONS(4235), - [anon_sym_return] = ACTIONS(4235), - [anon_sym_DOLLARfor] = ACTIONS(4235), - [anon_sym_for] = ACTIONS(4235), - [anon_sym_POUND] = ACTIONS(4235), - [anon_sym_asm] = ACTIONS(4235), - [anon_sym_AT_LBRACK] = ACTIONS(4235), - [sym___double_quote] = ACTIONS(4235), - [sym___single_quote] = ACTIONS(4235), - [sym___c_double_quote] = ACTIONS(4235), - [sym___c_single_quote] = ACTIONS(4235), - [sym___r_double_quote] = ACTIONS(4235), - [sym___r_single_quote] = ACTIONS(4235), + [anon_sym_DOT] = ACTIONS(4238), + [anon_sym_LBRACE] = ACTIONS(4238), + [anon_sym_const] = ACTIONS(4238), + [anon_sym_LPAREN] = ACTIONS(4238), + [anon_sym___global] = ACTIONS(4238), + [anon_sym_type] = ACTIONS(4238), + [anon_sym_fn] = ACTIONS(4238), + [anon_sym_PLUS] = ACTIONS(4238), + [anon_sym_DASH] = ACTIONS(4238), + [anon_sym_STAR] = ACTIONS(4238), + [anon_sym_struct] = ACTIONS(4238), + [anon_sym_union] = ACTIONS(4238), + [anon_sym_pub] = ACTIONS(4238), + [anon_sym_mut] = ACTIONS(4238), + [anon_sym_enum] = ACTIONS(4238), + [anon_sym_interface] = ACTIONS(4238), + [anon_sym_QMARK] = ACTIONS(4238), + [anon_sym_BANG] = ACTIONS(4238), + [anon_sym_go] = ACTIONS(4238), + [anon_sym_spawn] = ACTIONS(4238), + [anon_sym_json_DOTdecode] = ACTIONS(4238), + [anon_sym_LBRACK2] = ACTIONS(4238), + [anon_sym_TILDE] = ACTIONS(4238), + [anon_sym_CARET] = ACTIONS(4238), + [anon_sym_AMP] = ACTIONS(4238), + [anon_sym_LT_DASH] = ACTIONS(4238), + [sym_none] = ACTIONS(4238), + [sym_true] = ACTIONS(4238), + [sym_false] = ACTIONS(4238), + [sym_nil] = ACTIONS(4238), + [anon_sym_if] = ACTIONS(4238), + [anon_sym_DOLLARif] = ACTIONS(4238), + [anon_sym_match] = ACTIONS(4238), + [anon_sym_select] = ACTIONS(4238), + [anon_sym_lock] = ACTIONS(4238), + [anon_sym_rlock] = ACTIONS(4238), + [anon_sym_unsafe] = ACTIONS(4238), + [anon_sym_sql] = ACTIONS(4238), + [sym_int_literal] = ACTIONS(4238), + [sym_float_literal] = ACTIONS(4238), + [sym_rune_literal] = ACTIONS(4238), + [sym_pseudo_compile_time_identifier] = ACTIONS(4238), + [anon_sym_shared] = ACTIONS(4238), + [anon_sym_map_LBRACK] = ACTIONS(4238), + [anon_sym_chan] = ACTIONS(4238), + [anon_sym_thread] = ACTIONS(4238), + [anon_sym_atomic] = ACTIONS(4238), + [anon_sym_assert] = ACTIONS(4238), + [anon_sym_defer] = ACTIONS(4238), + [anon_sym_goto] = ACTIONS(4238), + [anon_sym_break] = ACTIONS(4238), + [anon_sym_continue] = ACTIONS(4238), + [anon_sym_return] = ACTIONS(4238), + [anon_sym_DOLLARfor] = ACTIONS(4238), + [anon_sym_for] = ACTIONS(4238), + [anon_sym_POUND] = ACTIONS(4238), + [anon_sym_asm] = ACTIONS(4238), + [anon_sym_AT_LBRACK] = ACTIONS(4238), + [sym___double_quote] = ACTIONS(4238), + [sym___single_quote] = ACTIONS(4238), + [sym___c_double_quote] = ACTIONS(4238), + [sym___c_single_quote] = ACTIONS(4238), + [sym___r_double_quote] = ACTIONS(4238), + [sym___r_single_quote] = ACTIONS(4238), }, [1501] = { [sym_line_comment] = STATE(1501), [sym_block_comment] = STATE(1501), - [ts_builtin_sym_end] = ACTIONS(4237), - [sym_identifier] = ACTIONS(4239), - [anon_sym_LF] = ACTIONS(4239), - [anon_sym_CR] = ACTIONS(4239), - [anon_sym_CR_LF] = ACTIONS(4239), + [ts_builtin_sym_end] = ACTIONS(4240), + [sym_identifier] = ACTIONS(4242), + [anon_sym_LF] = ACTIONS(4242), + [anon_sym_CR] = ACTIONS(4242), + [anon_sym_CR_LF] = ACTIONS(4242), [anon_sym_SLASH_SLASH] = ACTIONS(497), [anon_sym_SLASH_STAR] = ACTIONS(499), - [anon_sym_DOT] = ACTIONS(4239), - [anon_sym_LBRACE] = ACTIONS(4239), - [anon_sym_const] = ACTIONS(4239), - [anon_sym_LPAREN] = ACTIONS(4239), - [anon_sym___global] = ACTIONS(4239), - [anon_sym_type] = ACTIONS(4239), - [anon_sym_fn] = ACTIONS(4239), - [anon_sym_PLUS] = ACTIONS(4239), - [anon_sym_DASH] = ACTIONS(4239), - [anon_sym_STAR] = ACTIONS(4239), - [anon_sym_struct] = ACTIONS(4239), - [anon_sym_union] = ACTIONS(4239), - [anon_sym_pub] = ACTIONS(4239), - [anon_sym_mut] = ACTIONS(4239), - [anon_sym_enum] = ACTIONS(4239), - [anon_sym_interface] = ACTIONS(4239), - [anon_sym_QMARK] = ACTIONS(4239), - [anon_sym_BANG] = ACTIONS(4239), - [anon_sym_go] = ACTIONS(4239), - [anon_sym_spawn] = ACTIONS(4239), - [anon_sym_json_DOTdecode] = ACTIONS(4239), - [anon_sym_LBRACK2] = ACTIONS(4239), - [anon_sym_TILDE] = ACTIONS(4239), - [anon_sym_CARET] = ACTIONS(4239), - [anon_sym_AMP] = ACTIONS(4239), - [anon_sym_LT_DASH] = ACTIONS(4239), - [sym_none] = ACTIONS(4239), - [sym_true] = ACTIONS(4239), - [sym_false] = ACTIONS(4239), - [sym_nil] = ACTIONS(4239), - [anon_sym_if] = ACTIONS(4239), - [anon_sym_DOLLARif] = ACTIONS(4239), - [anon_sym_match] = ACTIONS(4239), - [anon_sym_select] = ACTIONS(4239), - [anon_sym_lock] = ACTIONS(4239), - [anon_sym_rlock] = ACTIONS(4239), - [anon_sym_unsafe] = ACTIONS(4239), - [anon_sym_sql] = ACTIONS(4239), - [sym_int_literal] = ACTIONS(4239), - [sym_float_literal] = ACTIONS(4239), - [sym_rune_literal] = ACTIONS(4239), - [sym_pseudo_compile_time_identifier] = ACTIONS(4239), - [anon_sym_shared] = ACTIONS(4239), - [anon_sym_map_LBRACK] = ACTIONS(4239), - [anon_sym_chan] = ACTIONS(4239), - [anon_sym_thread] = ACTIONS(4239), - [anon_sym_atomic] = ACTIONS(4239), - [anon_sym_assert] = ACTIONS(4239), - [anon_sym_defer] = ACTIONS(4239), - [anon_sym_goto] = ACTIONS(4239), - [anon_sym_break] = ACTIONS(4239), - [anon_sym_continue] = ACTIONS(4239), - [anon_sym_return] = ACTIONS(4239), - [anon_sym_DOLLARfor] = ACTIONS(4239), - [anon_sym_for] = ACTIONS(4239), - [anon_sym_POUND] = ACTIONS(4239), - [anon_sym_asm] = ACTIONS(4239), - [anon_sym_AT_LBRACK] = ACTIONS(4239), - [sym___double_quote] = ACTIONS(4239), - [sym___single_quote] = ACTIONS(4239), - [sym___c_double_quote] = ACTIONS(4239), - [sym___c_single_quote] = ACTIONS(4239), - [sym___r_double_quote] = ACTIONS(4239), - [sym___r_single_quote] = ACTIONS(4239), + [anon_sym_DOT] = ACTIONS(4242), + [anon_sym_LBRACE] = ACTIONS(4242), + [anon_sym_const] = ACTIONS(4242), + [anon_sym_LPAREN] = ACTIONS(4242), + [anon_sym___global] = ACTIONS(4242), + [anon_sym_type] = ACTIONS(4242), + [anon_sym_fn] = ACTIONS(4242), + [anon_sym_PLUS] = ACTIONS(4242), + [anon_sym_DASH] = ACTIONS(4242), + [anon_sym_STAR] = ACTIONS(4242), + [anon_sym_struct] = ACTIONS(4242), + [anon_sym_union] = ACTIONS(4242), + [anon_sym_pub] = ACTIONS(4242), + [anon_sym_mut] = ACTIONS(4242), + [anon_sym_enum] = ACTIONS(4242), + [anon_sym_interface] = ACTIONS(4242), + [anon_sym_QMARK] = ACTIONS(4242), + [anon_sym_BANG] = ACTIONS(4242), + [anon_sym_go] = ACTIONS(4242), + [anon_sym_spawn] = ACTIONS(4242), + [anon_sym_json_DOTdecode] = ACTIONS(4242), + [anon_sym_LBRACK2] = ACTIONS(4242), + [anon_sym_TILDE] = ACTIONS(4242), + [anon_sym_CARET] = ACTIONS(4242), + [anon_sym_AMP] = ACTIONS(4242), + [anon_sym_LT_DASH] = ACTIONS(4242), + [sym_none] = ACTIONS(4242), + [sym_true] = ACTIONS(4242), + [sym_false] = ACTIONS(4242), + [sym_nil] = ACTIONS(4242), + [anon_sym_if] = ACTIONS(4242), + [anon_sym_DOLLARif] = ACTIONS(4242), + [anon_sym_match] = ACTIONS(4242), + [anon_sym_select] = ACTIONS(4242), + [anon_sym_lock] = ACTIONS(4242), + [anon_sym_rlock] = ACTIONS(4242), + [anon_sym_unsafe] = ACTIONS(4242), + [anon_sym_sql] = ACTIONS(4242), + [sym_int_literal] = ACTIONS(4242), + [sym_float_literal] = ACTIONS(4242), + [sym_rune_literal] = ACTIONS(4242), + [sym_pseudo_compile_time_identifier] = ACTIONS(4242), + [anon_sym_shared] = ACTIONS(4242), + [anon_sym_map_LBRACK] = ACTIONS(4242), + [anon_sym_chan] = ACTIONS(4242), + [anon_sym_thread] = ACTIONS(4242), + [anon_sym_atomic] = ACTIONS(4242), + [anon_sym_assert] = ACTIONS(4242), + [anon_sym_defer] = ACTIONS(4242), + [anon_sym_goto] = ACTIONS(4242), + [anon_sym_break] = ACTIONS(4242), + [anon_sym_continue] = ACTIONS(4242), + [anon_sym_return] = ACTIONS(4242), + [anon_sym_DOLLARfor] = ACTIONS(4242), + [anon_sym_for] = ACTIONS(4242), + [anon_sym_POUND] = ACTIONS(4242), + [anon_sym_asm] = ACTIONS(4242), + [anon_sym_AT_LBRACK] = ACTIONS(4242), + [sym___double_quote] = ACTIONS(4242), + [sym___single_quote] = ACTIONS(4242), + [sym___c_double_quote] = ACTIONS(4242), + [sym___c_single_quote] = ACTIONS(4242), + [sym___r_double_quote] = ACTIONS(4242), + [sym___r_single_quote] = ACTIONS(4242), }, [1502] = { [sym_line_comment] = STATE(1502), [sym_block_comment] = STATE(1502), - [ts_builtin_sym_end] = ACTIONS(4241), - [sym_identifier] = ACTIONS(4243), - [anon_sym_LF] = ACTIONS(4243), - [anon_sym_CR] = ACTIONS(4243), - [anon_sym_CR_LF] = ACTIONS(4243), + [ts_builtin_sym_end] = ACTIONS(4244), + [sym_identifier] = ACTIONS(4246), + [anon_sym_LF] = ACTIONS(4246), + [anon_sym_CR] = ACTIONS(4246), + [anon_sym_CR_LF] = ACTIONS(4246), [anon_sym_SLASH_SLASH] = ACTIONS(497), [anon_sym_SLASH_STAR] = ACTIONS(499), - [anon_sym_DOT] = ACTIONS(4243), - [anon_sym_LBRACE] = ACTIONS(4243), - [anon_sym_const] = ACTIONS(4243), - [anon_sym_LPAREN] = ACTIONS(4243), - [anon_sym___global] = ACTIONS(4243), - [anon_sym_type] = ACTIONS(4243), - [anon_sym_fn] = ACTIONS(4243), - [anon_sym_PLUS] = ACTIONS(4243), - [anon_sym_DASH] = ACTIONS(4243), - [anon_sym_STAR] = ACTIONS(4243), - [anon_sym_struct] = ACTIONS(4243), - [anon_sym_union] = ACTIONS(4243), - [anon_sym_pub] = ACTIONS(4243), - [anon_sym_mut] = ACTIONS(4243), - [anon_sym_enum] = ACTIONS(4243), - [anon_sym_interface] = ACTIONS(4243), - [anon_sym_QMARK] = ACTIONS(4243), - [anon_sym_BANG] = ACTIONS(4243), - [anon_sym_go] = ACTIONS(4243), - [anon_sym_spawn] = ACTIONS(4243), - [anon_sym_json_DOTdecode] = ACTIONS(4243), - [anon_sym_LBRACK2] = ACTIONS(4243), - [anon_sym_TILDE] = ACTIONS(4243), - [anon_sym_CARET] = ACTIONS(4243), - [anon_sym_AMP] = ACTIONS(4243), - [anon_sym_LT_DASH] = ACTIONS(4243), - [sym_none] = ACTIONS(4243), - [sym_true] = ACTIONS(4243), - [sym_false] = ACTIONS(4243), - [sym_nil] = ACTIONS(4243), - [anon_sym_if] = ACTIONS(4243), - [anon_sym_DOLLARif] = ACTIONS(4243), - [anon_sym_match] = ACTIONS(4243), - [anon_sym_select] = ACTIONS(4243), - [anon_sym_lock] = ACTIONS(4243), - [anon_sym_rlock] = ACTIONS(4243), - [anon_sym_unsafe] = ACTIONS(4243), - [anon_sym_sql] = ACTIONS(4243), - [sym_int_literal] = ACTIONS(4243), - [sym_float_literal] = ACTIONS(4243), - [sym_rune_literal] = ACTIONS(4243), - [sym_pseudo_compile_time_identifier] = ACTIONS(4243), - [anon_sym_shared] = ACTIONS(4243), - [anon_sym_map_LBRACK] = ACTIONS(4243), - [anon_sym_chan] = ACTIONS(4243), - [anon_sym_thread] = ACTIONS(4243), - [anon_sym_atomic] = ACTIONS(4243), - [anon_sym_assert] = ACTIONS(4243), - [anon_sym_defer] = ACTIONS(4243), - [anon_sym_goto] = ACTIONS(4243), - [anon_sym_break] = ACTIONS(4243), - [anon_sym_continue] = ACTIONS(4243), - [anon_sym_return] = ACTIONS(4243), - [anon_sym_DOLLARfor] = ACTIONS(4243), - [anon_sym_for] = ACTIONS(4243), - [anon_sym_POUND] = ACTIONS(4243), - [anon_sym_asm] = ACTIONS(4243), - [anon_sym_AT_LBRACK] = ACTIONS(4243), - [sym___double_quote] = ACTIONS(4243), - [sym___single_quote] = ACTIONS(4243), - [sym___c_double_quote] = ACTIONS(4243), - [sym___c_single_quote] = ACTIONS(4243), - [sym___r_double_quote] = ACTIONS(4243), - [sym___r_single_quote] = ACTIONS(4243), + [anon_sym_DOT] = ACTIONS(4246), + [anon_sym_LBRACE] = ACTIONS(4246), + [anon_sym_const] = ACTIONS(4246), + [anon_sym_LPAREN] = ACTIONS(4246), + [anon_sym___global] = ACTIONS(4246), + [anon_sym_type] = ACTIONS(4246), + [anon_sym_fn] = ACTIONS(4246), + [anon_sym_PLUS] = ACTIONS(4246), + [anon_sym_DASH] = ACTIONS(4246), + [anon_sym_STAR] = ACTIONS(4246), + [anon_sym_struct] = ACTIONS(4246), + [anon_sym_union] = ACTIONS(4246), + [anon_sym_pub] = ACTIONS(4246), + [anon_sym_mut] = ACTIONS(4246), + [anon_sym_enum] = ACTIONS(4246), + [anon_sym_interface] = ACTIONS(4246), + [anon_sym_QMARK] = ACTIONS(4246), + [anon_sym_BANG] = ACTIONS(4246), + [anon_sym_go] = ACTIONS(4246), + [anon_sym_spawn] = ACTIONS(4246), + [anon_sym_json_DOTdecode] = ACTIONS(4246), + [anon_sym_LBRACK2] = ACTIONS(4246), + [anon_sym_TILDE] = ACTIONS(4246), + [anon_sym_CARET] = ACTIONS(4246), + [anon_sym_AMP] = ACTIONS(4246), + [anon_sym_LT_DASH] = ACTIONS(4246), + [sym_none] = ACTIONS(4246), + [sym_true] = ACTIONS(4246), + [sym_false] = ACTIONS(4246), + [sym_nil] = ACTIONS(4246), + [anon_sym_if] = ACTIONS(4246), + [anon_sym_DOLLARif] = ACTIONS(4246), + [anon_sym_match] = ACTIONS(4246), + [anon_sym_select] = ACTIONS(4246), + [anon_sym_lock] = ACTIONS(4246), + [anon_sym_rlock] = ACTIONS(4246), + [anon_sym_unsafe] = ACTIONS(4246), + [anon_sym_sql] = ACTIONS(4246), + [sym_int_literal] = ACTIONS(4246), + [sym_float_literal] = ACTIONS(4246), + [sym_rune_literal] = ACTIONS(4246), + [sym_pseudo_compile_time_identifier] = ACTIONS(4246), + [anon_sym_shared] = ACTIONS(4246), + [anon_sym_map_LBRACK] = ACTIONS(4246), + [anon_sym_chan] = ACTIONS(4246), + [anon_sym_thread] = ACTIONS(4246), + [anon_sym_atomic] = ACTIONS(4246), + [anon_sym_assert] = ACTIONS(4246), + [anon_sym_defer] = ACTIONS(4246), + [anon_sym_goto] = ACTIONS(4246), + [anon_sym_break] = ACTIONS(4246), + [anon_sym_continue] = ACTIONS(4246), + [anon_sym_return] = ACTIONS(4246), + [anon_sym_DOLLARfor] = ACTIONS(4246), + [anon_sym_for] = ACTIONS(4246), + [anon_sym_POUND] = ACTIONS(4246), + [anon_sym_asm] = ACTIONS(4246), + [anon_sym_AT_LBRACK] = ACTIONS(4246), + [sym___double_quote] = ACTIONS(4246), + [sym___single_quote] = ACTIONS(4246), + [sym___c_double_quote] = ACTIONS(4246), + [sym___c_single_quote] = ACTIONS(4246), + [sym___r_double_quote] = ACTIONS(4246), + [sym___r_single_quote] = ACTIONS(4246), }, [1503] = { [sym_line_comment] = STATE(1503), [sym_block_comment] = STATE(1503), - [ts_builtin_sym_end] = ACTIONS(4245), - [sym_identifier] = ACTIONS(4247), - [anon_sym_LF] = ACTIONS(4247), - [anon_sym_CR] = ACTIONS(4247), - [anon_sym_CR_LF] = ACTIONS(4247), + [ts_builtin_sym_end] = ACTIONS(4248), + [sym_identifier] = ACTIONS(4250), + [anon_sym_LF] = ACTIONS(4250), + [anon_sym_CR] = ACTIONS(4250), + [anon_sym_CR_LF] = ACTIONS(4250), [anon_sym_SLASH_SLASH] = ACTIONS(497), [anon_sym_SLASH_STAR] = ACTIONS(499), - [anon_sym_DOT] = ACTIONS(4247), - [anon_sym_LBRACE] = ACTIONS(4247), - [anon_sym_const] = ACTIONS(4247), - [anon_sym_LPAREN] = ACTIONS(4247), - [anon_sym___global] = ACTIONS(4247), - [anon_sym_type] = ACTIONS(4247), - [anon_sym_fn] = ACTIONS(4247), - [anon_sym_PLUS] = ACTIONS(4247), - [anon_sym_DASH] = ACTIONS(4247), - [anon_sym_STAR] = ACTIONS(4247), - [anon_sym_struct] = ACTIONS(4247), - [anon_sym_union] = ACTIONS(4247), - [anon_sym_pub] = ACTIONS(4247), - [anon_sym_mut] = ACTIONS(4247), - [anon_sym_enum] = ACTIONS(4247), - [anon_sym_interface] = ACTIONS(4247), - [anon_sym_QMARK] = ACTIONS(4247), - [anon_sym_BANG] = ACTIONS(4247), - [anon_sym_go] = ACTIONS(4247), - [anon_sym_spawn] = ACTIONS(4247), - [anon_sym_json_DOTdecode] = ACTIONS(4247), - [anon_sym_LBRACK2] = ACTIONS(4247), - [anon_sym_TILDE] = ACTIONS(4247), - [anon_sym_CARET] = ACTIONS(4247), - [anon_sym_AMP] = ACTIONS(4247), - [anon_sym_LT_DASH] = ACTIONS(4247), - [sym_none] = ACTIONS(4247), - [sym_true] = ACTIONS(4247), - [sym_false] = ACTIONS(4247), - [sym_nil] = ACTIONS(4247), - [anon_sym_if] = ACTIONS(4247), - [anon_sym_DOLLARif] = ACTIONS(4247), - [anon_sym_match] = ACTIONS(4247), - [anon_sym_select] = ACTIONS(4247), - [anon_sym_lock] = ACTIONS(4247), - [anon_sym_rlock] = ACTIONS(4247), - [anon_sym_unsafe] = ACTIONS(4247), - [anon_sym_sql] = ACTIONS(4247), - [sym_int_literal] = ACTIONS(4247), - [sym_float_literal] = ACTIONS(4247), - [sym_rune_literal] = ACTIONS(4247), - [sym_pseudo_compile_time_identifier] = ACTIONS(4247), - [anon_sym_shared] = ACTIONS(4247), - [anon_sym_map_LBRACK] = ACTIONS(4247), - [anon_sym_chan] = ACTIONS(4247), - [anon_sym_thread] = ACTIONS(4247), - [anon_sym_atomic] = ACTIONS(4247), - [anon_sym_assert] = ACTIONS(4247), - [anon_sym_defer] = ACTIONS(4247), - [anon_sym_goto] = ACTIONS(4247), - [anon_sym_break] = ACTIONS(4247), - [anon_sym_continue] = ACTIONS(4247), - [anon_sym_return] = ACTIONS(4247), - [anon_sym_DOLLARfor] = ACTIONS(4247), - [anon_sym_for] = ACTIONS(4247), - [anon_sym_POUND] = ACTIONS(4247), - [anon_sym_asm] = ACTIONS(4247), - [anon_sym_AT_LBRACK] = ACTIONS(4247), - [sym___double_quote] = ACTIONS(4247), - [sym___single_quote] = ACTIONS(4247), - [sym___c_double_quote] = ACTIONS(4247), - [sym___c_single_quote] = ACTIONS(4247), - [sym___r_double_quote] = ACTIONS(4247), - [sym___r_single_quote] = ACTIONS(4247), + [anon_sym_DOT] = ACTIONS(4250), + [anon_sym_LBRACE] = ACTIONS(4250), + [anon_sym_const] = ACTIONS(4250), + [anon_sym_LPAREN] = ACTIONS(4250), + [anon_sym___global] = ACTIONS(4250), + [anon_sym_type] = ACTIONS(4250), + [anon_sym_fn] = ACTIONS(4250), + [anon_sym_PLUS] = ACTIONS(4250), + [anon_sym_DASH] = ACTIONS(4250), + [anon_sym_STAR] = ACTIONS(4250), + [anon_sym_struct] = ACTIONS(4250), + [anon_sym_union] = ACTIONS(4250), + [anon_sym_pub] = ACTIONS(4250), + [anon_sym_mut] = ACTIONS(4250), + [anon_sym_enum] = ACTIONS(4250), + [anon_sym_interface] = ACTIONS(4250), + [anon_sym_QMARK] = ACTIONS(4250), + [anon_sym_BANG] = ACTIONS(4250), + [anon_sym_go] = ACTIONS(4250), + [anon_sym_spawn] = ACTIONS(4250), + [anon_sym_json_DOTdecode] = ACTIONS(4250), + [anon_sym_LBRACK2] = ACTIONS(4250), + [anon_sym_TILDE] = ACTIONS(4250), + [anon_sym_CARET] = ACTIONS(4250), + [anon_sym_AMP] = ACTIONS(4250), + [anon_sym_LT_DASH] = ACTIONS(4250), + [sym_none] = ACTIONS(4250), + [sym_true] = ACTIONS(4250), + [sym_false] = ACTIONS(4250), + [sym_nil] = ACTIONS(4250), + [anon_sym_if] = ACTIONS(4250), + [anon_sym_DOLLARif] = ACTIONS(4250), + [anon_sym_match] = ACTIONS(4250), + [anon_sym_select] = ACTIONS(4250), + [anon_sym_lock] = ACTIONS(4250), + [anon_sym_rlock] = ACTIONS(4250), + [anon_sym_unsafe] = ACTIONS(4250), + [anon_sym_sql] = ACTIONS(4250), + [sym_int_literal] = ACTIONS(4250), + [sym_float_literal] = ACTIONS(4250), + [sym_rune_literal] = ACTIONS(4250), + [sym_pseudo_compile_time_identifier] = ACTIONS(4250), + [anon_sym_shared] = ACTIONS(4250), + [anon_sym_map_LBRACK] = ACTIONS(4250), + [anon_sym_chan] = ACTIONS(4250), + [anon_sym_thread] = ACTIONS(4250), + [anon_sym_atomic] = ACTIONS(4250), + [anon_sym_assert] = ACTIONS(4250), + [anon_sym_defer] = ACTIONS(4250), + [anon_sym_goto] = ACTIONS(4250), + [anon_sym_break] = ACTIONS(4250), + [anon_sym_continue] = ACTIONS(4250), + [anon_sym_return] = ACTIONS(4250), + [anon_sym_DOLLARfor] = ACTIONS(4250), + [anon_sym_for] = ACTIONS(4250), + [anon_sym_POUND] = ACTIONS(4250), + [anon_sym_asm] = ACTIONS(4250), + [anon_sym_AT_LBRACK] = ACTIONS(4250), + [sym___double_quote] = ACTIONS(4250), + [sym___single_quote] = ACTIONS(4250), + [sym___c_double_quote] = ACTIONS(4250), + [sym___c_single_quote] = ACTIONS(4250), + [sym___r_double_quote] = ACTIONS(4250), + [sym___r_single_quote] = ACTIONS(4250), }, [1504] = { [sym_line_comment] = STATE(1504), [sym_block_comment] = STATE(1504), - [ts_builtin_sym_end] = ACTIONS(4249), - [sym_identifier] = ACTIONS(4251), - [anon_sym_LF] = ACTIONS(4251), - [anon_sym_CR] = ACTIONS(4251), - [anon_sym_CR_LF] = ACTIONS(4251), + [ts_builtin_sym_end] = ACTIONS(4252), + [sym_identifier] = ACTIONS(4254), + [anon_sym_LF] = ACTIONS(4254), + [anon_sym_CR] = ACTIONS(4254), + [anon_sym_CR_LF] = ACTIONS(4254), [anon_sym_SLASH_SLASH] = ACTIONS(497), [anon_sym_SLASH_STAR] = ACTIONS(499), - [anon_sym_DOT] = ACTIONS(4251), - [anon_sym_LBRACE] = ACTIONS(4251), - [anon_sym_const] = ACTIONS(4251), - [anon_sym_LPAREN] = ACTIONS(4251), - [anon_sym___global] = ACTIONS(4251), - [anon_sym_type] = ACTIONS(4251), - [anon_sym_fn] = ACTIONS(4251), - [anon_sym_PLUS] = ACTIONS(4251), - [anon_sym_DASH] = ACTIONS(4251), - [anon_sym_STAR] = ACTIONS(4251), - [anon_sym_struct] = ACTIONS(4251), - [anon_sym_union] = ACTIONS(4251), - [anon_sym_pub] = ACTIONS(4251), - [anon_sym_mut] = ACTIONS(4251), - [anon_sym_enum] = ACTIONS(4251), - [anon_sym_interface] = ACTIONS(4251), - [anon_sym_QMARK] = ACTIONS(4251), - [anon_sym_BANG] = ACTIONS(4251), - [anon_sym_go] = ACTIONS(4251), - [anon_sym_spawn] = ACTIONS(4251), - [anon_sym_json_DOTdecode] = ACTIONS(4251), - [anon_sym_LBRACK2] = ACTIONS(4251), - [anon_sym_TILDE] = ACTIONS(4251), - [anon_sym_CARET] = ACTIONS(4251), - [anon_sym_AMP] = ACTIONS(4251), - [anon_sym_LT_DASH] = ACTIONS(4251), - [sym_none] = ACTIONS(4251), - [sym_true] = ACTIONS(4251), - [sym_false] = ACTIONS(4251), - [sym_nil] = ACTIONS(4251), - [anon_sym_if] = ACTIONS(4251), - [anon_sym_DOLLARif] = ACTIONS(4251), - [anon_sym_match] = ACTIONS(4251), - [anon_sym_select] = ACTIONS(4251), - [anon_sym_lock] = ACTIONS(4251), - [anon_sym_rlock] = ACTIONS(4251), - [anon_sym_unsafe] = ACTIONS(4251), - [anon_sym_sql] = ACTIONS(4251), - [sym_int_literal] = ACTIONS(4251), - [sym_float_literal] = ACTIONS(4251), - [sym_rune_literal] = ACTIONS(4251), - [sym_pseudo_compile_time_identifier] = ACTIONS(4251), - [anon_sym_shared] = ACTIONS(4251), - [anon_sym_map_LBRACK] = ACTIONS(4251), - [anon_sym_chan] = ACTIONS(4251), - [anon_sym_thread] = ACTIONS(4251), - [anon_sym_atomic] = ACTIONS(4251), - [anon_sym_assert] = ACTIONS(4251), - [anon_sym_defer] = ACTIONS(4251), - [anon_sym_goto] = ACTIONS(4251), - [anon_sym_break] = ACTIONS(4251), - [anon_sym_continue] = ACTIONS(4251), - [anon_sym_return] = ACTIONS(4251), - [anon_sym_DOLLARfor] = ACTIONS(4251), - [anon_sym_for] = ACTIONS(4251), - [anon_sym_POUND] = ACTIONS(4251), - [anon_sym_asm] = ACTIONS(4251), - [anon_sym_AT_LBRACK] = ACTIONS(4251), - [sym___double_quote] = ACTIONS(4251), - [sym___single_quote] = ACTIONS(4251), - [sym___c_double_quote] = ACTIONS(4251), - [sym___c_single_quote] = ACTIONS(4251), - [sym___r_double_quote] = ACTIONS(4251), - [sym___r_single_quote] = ACTIONS(4251), + [anon_sym_DOT] = ACTIONS(4254), + [anon_sym_LBRACE] = ACTIONS(4254), + [anon_sym_const] = ACTIONS(4254), + [anon_sym_LPAREN] = ACTIONS(4254), + [anon_sym___global] = ACTIONS(4254), + [anon_sym_type] = ACTIONS(4254), + [anon_sym_fn] = ACTIONS(4254), + [anon_sym_PLUS] = ACTIONS(4254), + [anon_sym_DASH] = ACTIONS(4254), + [anon_sym_STAR] = ACTIONS(4254), + [anon_sym_struct] = ACTIONS(4254), + [anon_sym_union] = ACTIONS(4254), + [anon_sym_pub] = ACTIONS(4254), + [anon_sym_mut] = ACTIONS(4254), + [anon_sym_enum] = ACTIONS(4254), + [anon_sym_interface] = ACTIONS(4254), + [anon_sym_QMARK] = ACTIONS(4254), + [anon_sym_BANG] = ACTIONS(4254), + [anon_sym_go] = ACTIONS(4254), + [anon_sym_spawn] = ACTIONS(4254), + [anon_sym_json_DOTdecode] = ACTIONS(4254), + [anon_sym_LBRACK2] = ACTIONS(4254), + [anon_sym_TILDE] = ACTIONS(4254), + [anon_sym_CARET] = ACTIONS(4254), + [anon_sym_AMP] = ACTIONS(4254), + [anon_sym_LT_DASH] = ACTIONS(4254), + [sym_none] = ACTIONS(4254), + [sym_true] = ACTIONS(4254), + [sym_false] = ACTIONS(4254), + [sym_nil] = ACTIONS(4254), + [anon_sym_if] = ACTIONS(4254), + [anon_sym_DOLLARif] = ACTIONS(4254), + [anon_sym_match] = ACTIONS(4254), + [anon_sym_select] = ACTIONS(4254), + [anon_sym_lock] = ACTIONS(4254), + [anon_sym_rlock] = ACTIONS(4254), + [anon_sym_unsafe] = ACTIONS(4254), + [anon_sym_sql] = ACTIONS(4254), + [sym_int_literal] = ACTIONS(4254), + [sym_float_literal] = ACTIONS(4254), + [sym_rune_literal] = ACTIONS(4254), + [sym_pseudo_compile_time_identifier] = ACTIONS(4254), + [anon_sym_shared] = ACTIONS(4254), + [anon_sym_map_LBRACK] = ACTIONS(4254), + [anon_sym_chan] = ACTIONS(4254), + [anon_sym_thread] = ACTIONS(4254), + [anon_sym_atomic] = ACTIONS(4254), + [anon_sym_assert] = ACTIONS(4254), + [anon_sym_defer] = ACTIONS(4254), + [anon_sym_goto] = ACTIONS(4254), + [anon_sym_break] = ACTIONS(4254), + [anon_sym_continue] = ACTIONS(4254), + [anon_sym_return] = ACTIONS(4254), + [anon_sym_DOLLARfor] = ACTIONS(4254), + [anon_sym_for] = ACTIONS(4254), + [anon_sym_POUND] = ACTIONS(4254), + [anon_sym_asm] = ACTIONS(4254), + [anon_sym_AT_LBRACK] = ACTIONS(4254), + [sym___double_quote] = ACTIONS(4254), + [sym___single_quote] = ACTIONS(4254), + [sym___c_double_quote] = ACTIONS(4254), + [sym___c_single_quote] = ACTIONS(4254), + [sym___r_double_quote] = ACTIONS(4254), + [sym___r_single_quote] = ACTIONS(4254), }, [1505] = { [sym_line_comment] = STATE(1505), [sym_block_comment] = STATE(1505), - [ts_builtin_sym_end] = ACTIONS(2475), - [sym_identifier] = ACTIONS(2477), - [anon_sym_LF] = ACTIONS(2477), - [anon_sym_CR] = ACTIONS(2477), - [anon_sym_CR_LF] = ACTIONS(2477), + [ts_builtin_sym_end] = ACTIONS(4256), + [sym_identifier] = ACTIONS(4258), + [anon_sym_LF] = ACTIONS(4258), + [anon_sym_CR] = ACTIONS(4258), + [anon_sym_CR_LF] = ACTIONS(4258), [anon_sym_SLASH_SLASH] = ACTIONS(497), [anon_sym_SLASH_STAR] = ACTIONS(499), - [anon_sym_DOT] = ACTIONS(2477), - [anon_sym_LBRACE] = ACTIONS(2477), - [anon_sym_const] = ACTIONS(2477), - [anon_sym_LPAREN] = ACTIONS(2477), - [anon_sym___global] = ACTIONS(2477), - [anon_sym_type] = ACTIONS(2477), - [anon_sym_fn] = ACTIONS(2477), - [anon_sym_PLUS] = ACTIONS(2477), - [anon_sym_DASH] = ACTIONS(2477), - [anon_sym_STAR] = ACTIONS(2477), - [anon_sym_struct] = ACTIONS(2477), - [anon_sym_union] = ACTIONS(2477), - [anon_sym_pub] = ACTIONS(2477), - [anon_sym_mut] = ACTIONS(2477), - [anon_sym_enum] = ACTIONS(2477), - [anon_sym_interface] = ACTIONS(2477), - [anon_sym_QMARK] = ACTIONS(2477), - [anon_sym_BANG] = ACTIONS(2477), - [anon_sym_go] = ACTIONS(2477), - [anon_sym_spawn] = ACTIONS(2477), - [anon_sym_json_DOTdecode] = ACTIONS(2477), - [anon_sym_LBRACK2] = ACTIONS(2477), - [anon_sym_TILDE] = ACTIONS(2477), - [anon_sym_CARET] = ACTIONS(2477), - [anon_sym_AMP] = ACTIONS(2477), - [anon_sym_LT_DASH] = ACTIONS(2477), - [sym_none] = ACTIONS(2477), - [sym_true] = ACTIONS(2477), - [sym_false] = ACTIONS(2477), - [sym_nil] = ACTIONS(2477), - [anon_sym_if] = ACTIONS(2477), - [anon_sym_DOLLARif] = ACTIONS(2477), - [anon_sym_match] = ACTIONS(2477), - [anon_sym_select] = ACTIONS(2477), - [anon_sym_lock] = ACTIONS(2477), - [anon_sym_rlock] = ACTIONS(2477), - [anon_sym_unsafe] = ACTIONS(2477), - [anon_sym_sql] = ACTIONS(2477), - [sym_int_literal] = ACTIONS(2477), - [sym_float_literal] = ACTIONS(2477), - [sym_rune_literal] = ACTIONS(2477), - [sym_pseudo_compile_time_identifier] = ACTIONS(2477), - [anon_sym_shared] = ACTIONS(2477), - [anon_sym_map_LBRACK] = ACTIONS(2477), - [anon_sym_chan] = ACTIONS(2477), - [anon_sym_thread] = ACTIONS(2477), - [anon_sym_atomic] = ACTIONS(2477), - [anon_sym_assert] = ACTIONS(2477), - [anon_sym_defer] = ACTIONS(2477), - [anon_sym_goto] = ACTIONS(2477), - [anon_sym_break] = ACTIONS(2477), - [anon_sym_continue] = ACTIONS(2477), - [anon_sym_return] = ACTIONS(2477), - [anon_sym_DOLLARfor] = ACTIONS(2477), - [anon_sym_for] = ACTIONS(2477), - [anon_sym_POUND] = ACTIONS(2477), - [anon_sym_asm] = ACTIONS(2477), - [anon_sym_AT_LBRACK] = ACTIONS(2477), - [sym___double_quote] = ACTIONS(2477), - [sym___single_quote] = ACTIONS(2477), - [sym___c_double_quote] = ACTIONS(2477), - [sym___c_single_quote] = ACTIONS(2477), - [sym___r_double_quote] = ACTIONS(2477), - [sym___r_single_quote] = ACTIONS(2477), + [anon_sym_DOT] = ACTIONS(4258), + [anon_sym_LBRACE] = ACTIONS(4258), + [anon_sym_const] = ACTIONS(4258), + [anon_sym_LPAREN] = ACTIONS(4258), + [anon_sym___global] = ACTIONS(4258), + [anon_sym_type] = ACTIONS(4258), + [anon_sym_fn] = ACTIONS(4258), + [anon_sym_PLUS] = ACTIONS(4258), + [anon_sym_DASH] = ACTIONS(4258), + [anon_sym_STAR] = ACTIONS(4258), + [anon_sym_struct] = ACTIONS(4258), + [anon_sym_union] = ACTIONS(4258), + [anon_sym_pub] = ACTIONS(4258), + [anon_sym_mut] = ACTIONS(4258), + [anon_sym_enum] = ACTIONS(4258), + [anon_sym_interface] = ACTIONS(4258), + [anon_sym_QMARK] = ACTIONS(4258), + [anon_sym_BANG] = ACTIONS(4258), + [anon_sym_go] = ACTIONS(4258), + [anon_sym_spawn] = ACTIONS(4258), + [anon_sym_json_DOTdecode] = ACTIONS(4258), + [anon_sym_LBRACK2] = ACTIONS(4258), + [anon_sym_TILDE] = ACTIONS(4258), + [anon_sym_CARET] = ACTIONS(4258), + [anon_sym_AMP] = ACTIONS(4258), + [anon_sym_LT_DASH] = ACTIONS(4258), + [sym_none] = ACTIONS(4258), + [sym_true] = ACTIONS(4258), + [sym_false] = ACTIONS(4258), + [sym_nil] = ACTIONS(4258), + [anon_sym_if] = ACTIONS(4258), + [anon_sym_DOLLARif] = ACTIONS(4258), + [anon_sym_match] = ACTIONS(4258), + [anon_sym_select] = ACTIONS(4258), + [anon_sym_lock] = ACTIONS(4258), + [anon_sym_rlock] = ACTIONS(4258), + [anon_sym_unsafe] = ACTIONS(4258), + [anon_sym_sql] = ACTIONS(4258), + [sym_int_literal] = ACTIONS(4258), + [sym_float_literal] = ACTIONS(4258), + [sym_rune_literal] = ACTIONS(4258), + [sym_pseudo_compile_time_identifier] = ACTIONS(4258), + [anon_sym_shared] = ACTIONS(4258), + [anon_sym_map_LBRACK] = ACTIONS(4258), + [anon_sym_chan] = ACTIONS(4258), + [anon_sym_thread] = ACTIONS(4258), + [anon_sym_atomic] = ACTIONS(4258), + [anon_sym_assert] = ACTIONS(4258), + [anon_sym_defer] = ACTIONS(4258), + [anon_sym_goto] = ACTIONS(4258), + [anon_sym_break] = ACTIONS(4258), + [anon_sym_continue] = ACTIONS(4258), + [anon_sym_return] = ACTIONS(4258), + [anon_sym_DOLLARfor] = ACTIONS(4258), + [anon_sym_for] = ACTIONS(4258), + [anon_sym_POUND] = ACTIONS(4258), + [anon_sym_asm] = ACTIONS(4258), + [anon_sym_AT_LBRACK] = ACTIONS(4258), + [sym___double_quote] = ACTIONS(4258), + [sym___single_quote] = ACTIONS(4258), + [sym___c_double_quote] = ACTIONS(4258), + [sym___c_single_quote] = ACTIONS(4258), + [sym___r_double_quote] = ACTIONS(4258), + [sym___r_single_quote] = ACTIONS(4258), }, [1506] = { [sym_line_comment] = STATE(1506), [sym_block_comment] = STATE(1506), - [ts_builtin_sym_end] = ACTIONS(4253), - [sym_identifier] = ACTIONS(4255), - [anon_sym_LF] = ACTIONS(4255), - [anon_sym_CR] = ACTIONS(4255), - [anon_sym_CR_LF] = ACTIONS(4255), + [ts_builtin_sym_end] = ACTIONS(4260), + [sym_identifier] = ACTIONS(4262), + [anon_sym_LF] = ACTIONS(4262), + [anon_sym_CR] = ACTIONS(4262), + [anon_sym_CR_LF] = ACTIONS(4262), [anon_sym_SLASH_SLASH] = ACTIONS(497), [anon_sym_SLASH_STAR] = ACTIONS(499), - [anon_sym_DOT] = ACTIONS(4255), - [anon_sym_LBRACE] = ACTIONS(4255), - [anon_sym_const] = ACTIONS(4255), - [anon_sym_LPAREN] = ACTIONS(4255), - [anon_sym___global] = ACTIONS(4255), - [anon_sym_type] = ACTIONS(4255), - [anon_sym_fn] = ACTIONS(4255), - [anon_sym_PLUS] = ACTIONS(4255), - [anon_sym_DASH] = ACTIONS(4255), - [anon_sym_STAR] = ACTIONS(4255), - [anon_sym_struct] = ACTIONS(4255), - [anon_sym_union] = ACTIONS(4255), - [anon_sym_pub] = ACTIONS(4255), - [anon_sym_mut] = ACTIONS(4255), - [anon_sym_enum] = ACTIONS(4255), - [anon_sym_interface] = ACTIONS(4255), - [anon_sym_QMARK] = ACTIONS(4255), - [anon_sym_BANG] = ACTIONS(4255), - [anon_sym_go] = ACTIONS(4255), - [anon_sym_spawn] = ACTIONS(4255), - [anon_sym_json_DOTdecode] = ACTIONS(4255), - [anon_sym_LBRACK2] = ACTIONS(4255), - [anon_sym_TILDE] = ACTIONS(4255), - [anon_sym_CARET] = ACTIONS(4255), - [anon_sym_AMP] = ACTIONS(4255), - [anon_sym_LT_DASH] = ACTIONS(4255), - [sym_none] = ACTIONS(4255), - [sym_true] = ACTIONS(4255), - [sym_false] = ACTIONS(4255), - [sym_nil] = ACTIONS(4255), - [anon_sym_if] = ACTIONS(4255), - [anon_sym_DOLLARif] = ACTIONS(4255), - [anon_sym_match] = ACTIONS(4255), - [anon_sym_select] = ACTIONS(4255), - [anon_sym_lock] = ACTIONS(4255), - [anon_sym_rlock] = ACTIONS(4255), - [anon_sym_unsafe] = ACTIONS(4255), - [anon_sym_sql] = ACTIONS(4255), - [sym_int_literal] = ACTIONS(4255), - [sym_float_literal] = ACTIONS(4255), - [sym_rune_literal] = ACTIONS(4255), - [sym_pseudo_compile_time_identifier] = ACTIONS(4255), - [anon_sym_shared] = ACTIONS(4255), - [anon_sym_map_LBRACK] = ACTIONS(4255), - [anon_sym_chan] = ACTIONS(4255), - [anon_sym_thread] = ACTIONS(4255), - [anon_sym_atomic] = ACTIONS(4255), - [anon_sym_assert] = ACTIONS(4255), - [anon_sym_defer] = ACTIONS(4255), - [anon_sym_goto] = ACTIONS(4255), - [anon_sym_break] = ACTIONS(4255), - [anon_sym_continue] = ACTIONS(4255), - [anon_sym_return] = ACTIONS(4255), - [anon_sym_DOLLARfor] = ACTIONS(4255), - [anon_sym_for] = ACTIONS(4255), - [anon_sym_POUND] = ACTIONS(4255), - [anon_sym_asm] = ACTIONS(4255), - [anon_sym_AT_LBRACK] = ACTIONS(4255), - [sym___double_quote] = ACTIONS(4255), - [sym___single_quote] = ACTIONS(4255), - [sym___c_double_quote] = ACTIONS(4255), - [sym___c_single_quote] = ACTIONS(4255), - [sym___r_double_quote] = ACTIONS(4255), - [sym___r_single_quote] = ACTIONS(4255), + [anon_sym_DOT] = ACTIONS(4262), + [anon_sym_LBRACE] = ACTIONS(4262), + [anon_sym_const] = ACTIONS(4262), + [anon_sym_LPAREN] = ACTIONS(4262), + [anon_sym___global] = ACTIONS(4262), + [anon_sym_type] = ACTIONS(4262), + [anon_sym_fn] = ACTIONS(4262), + [anon_sym_PLUS] = ACTIONS(4262), + [anon_sym_DASH] = ACTIONS(4262), + [anon_sym_STAR] = ACTIONS(4262), + [anon_sym_struct] = ACTIONS(4262), + [anon_sym_union] = ACTIONS(4262), + [anon_sym_pub] = ACTIONS(4262), + [anon_sym_mut] = ACTIONS(4262), + [anon_sym_enum] = ACTIONS(4262), + [anon_sym_interface] = ACTIONS(4262), + [anon_sym_QMARK] = ACTIONS(4262), + [anon_sym_BANG] = ACTIONS(4262), + [anon_sym_go] = ACTIONS(4262), + [anon_sym_spawn] = ACTIONS(4262), + [anon_sym_json_DOTdecode] = ACTIONS(4262), + [anon_sym_LBRACK2] = ACTIONS(4262), + [anon_sym_TILDE] = ACTIONS(4262), + [anon_sym_CARET] = ACTIONS(4262), + [anon_sym_AMP] = ACTIONS(4262), + [anon_sym_LT_DASH] = ACTIONS(4262), + [sym_none] = ACTIONS(4262), + [sym_true] = ACTIONS(4262), + [sym_false] = ACTIONS(4262), + [sym_nil] = ACTIONS(4262), + [anon_sym_if] = ACTIONS(4262), + [anon_sym_DOLLARif] = ACTIONS(4262), + [anon_sym_match] = ACTIONS(4262), + [anon_sym_select] = ACTIONS(4262), + [anon_sym_lock] = ACTIONS(4262), + [anon_sym_rlock] = ACTIONS(4262), + [anon_sym_unsafe] = ACTIONS(4262), + [anon_sym_sql] = ACTIONS(4262), + [sym_int_literal] = ACTIONS(4262), + [sym_float_literal] = ACTIONS(4262), + [sym_rune_literal] = ACTIONS(4262), + [sym_pseudo_compile_time_identifier] = ACTIONS(4262), + [anon_sym_shared] = ACTIONS(4262), + [anon_sym_map_LBRACK] = ACTIONS(4262), + [anon_sym_chan] = ACTIONS(4262), + [anon_sym_thread] = ACTIONS(4262), + [anon_sym_atomic] = ACTIONS(4262), + [anon_sym_assert] = ACTIONS(4262), + [anon_sym_defer] = ACTIONS(4262), + [anon_sym_goto] = ACTIONS(4262), + [anon_sym_break] = ACTIONS(4262), + [anon_sym_continue] = ACTIONS(4262), + [anon_sym_return] = ACTIONS(4262), + [anon_sym_DOLLARfor] = ACTIONS(4262), + [anon_sym_for] = ACTIONS(4262), + [anon_sym_POUND] = ACTIONS(4262), + [anon_sym_asm] = ACTIONS(4262), + [anon_sym_AT_LBRACK] = ACTIONS(4262), + [sym___double_quote] = ACTIONS(4262), + [sym___single_quote] = ACTIONS(4262), + [sym___c_double_quote] = ACTIONS(4262), + [sym___c_single_quote] = ACTIONS(4262), + [sym___r_double_quote] = ACTIONS(4262), + [sym___r_single_quote] = ACTIONS(4262), }, [1507] = { [sym_line_comment] = STATE(1507), [sym_block_comment] = STATE(1507), - [ts_builtin_sym_end] = ACTIONS(4257), - [sym_identifier] = ACTIONS(4259), - [anon_sym_LF] = ACTIONS(4259), - [anon_sym_CR] = ACTIONS(4259), - [anon_sym_CR_LF] = ACTIONS(4259), + [ts_builtin_sym_end] = ACTIONS(4264), + [sym_identifier] = ACTIONS(4266), + [anon_sym_LF] = ACTIONS(4266), + [anon_sym_CR] = ACTIONS(4266), + [anon_sym_CR_LF] = ACTIONS(4266), [anon_sym_SLASH_SLASH] = ACTIONS(497), [anon_sym_SLASH_STAR] = ACTIONS(499), - [anon_sym_DOT] = ACTIONS(4259), - [anon_sym_LBRACE] = ACTIONS(4259), - [anon_sym_const] = ACTIONS(4259), - [anon_sym_LPAREN] = ACTIONS(4259), - [anon_sym___global] = ACTIONS(4259), - [anon_sym_type] = ACTIONS(4259), - [anon_sym_fn] = ACTIONS(4259), - [anon_sym_PLUS] = ACTIONS(4259), - [anon_sym_DASH] = ACTIONS(4259), - [anon_sym_STAR] = ACTIONS(4259), - [anon_sym_struct] = ACTIONS(4259), - [anon_sym_union] = ACTIONS(4259), - [anon_sym_pub] = ACTIONS(4259), - [anon_sym_mut] = ACTIONS(4259), - [anon_sym_enum] = ACTIONS(4259), - [anon_sym_interface] = ACTIONS(4259), - [anon_sym_QMARK] = ACTIONS(4259), - [anon_sym_BANG] = ACTIONS(4259), - [anon_sym_go] = ACTIONS(4259), - [anon_sym_spawn] = ACTIONS(4259), - [anon_sym_json_DOTdecode] = ACTIONS(4259), - [anon_sym_LBRACK2] = ACTIONS(4259), - [anon_sym_TILDE] = ACTIONS(4259), - [anon_sym_CARET] = ACTIONS(4259), - [anon_sym_AMP] = ACTIONS(4259), - [anon_sym_LT_DASH] = ACTIONS(4259), - [sym_none] = ACTIONS(4259), - [sym_true] = ACTIONS(4259), - [sym_false] = ACTIONS(4259), - [sym_nil] = ACTIONS(4259), - [anon_sym_if] = ACTIONS(4259), - [anon_sym_DOLLARif] = ACTIONS(4259), - [anon_sym_match] = ACTIONS(4259), - [anon_sym_select] = ACTIONS(4259), - [anon_sym_lock] = ACTIONS(4259), - [anon_sym_rlock] = ACTIONS(4259), - [anon_sym_unsafe] = ACTIONS(4259), - [anon_sym_sql] = ACTIONS(4259), - [sym_int_literal] = ACTIONS(4259), - [sym_float_literal] = ACTIONS(4259), - [sym_rune_literal] = ACTIONS(4259), - [sym_pseudo_compile_time_identifier] = ACTIONS(4259), - [anon_sym_shared] = ACTIONS(4259), - [anon_sym_map_LBRACK] = ACTIONS(4259), - [anon_sym_chan] = ACTIONS(4259), - [anon_sym_thread] = ACTIONS(4259), - [anon_sym_atomic] = ACTIONS(4259), - [anon_sym_assert] = ACTIONS(4259), - [anon_sym_defer] = ACTIONS(4259), - [anon_sym_goto] = ACTIONS(4259), - [anon_sym_break] = ACTIONS(4259), - [anon_sym_continue] = ACTIONS(4259), - [anon_sym_return] = ACTIONS(4259), - [anon_sym_DOLLARfor] = ACTIONS(4259), - [anon_sym_for] = ACTIONS(4259), - [anon_sym_POUND] = ACTIONS(4259), - [anon_sym_asm] = ACTIONS(4259), - [anon_sym_AT_LBRACK] = ACTIONS(4259), - [sym___double_quote] = ACTIONS(4259), - [sym___single_quote] = ACTIONS(4259), - [sym___c_double_quote] = ACTIONS(4259), - [sym___c_single_quote] = ACTIONS(4259), - [sym___r_double_quote] = ACTIONS(4259), - [sym___r_single_quote] = ACTIONS(4259), + [anon_sym_DOT] = ACTIONS(4266), + [anon_sym_LBRACE] = ACTIONS(4266), + [anon_sym_const] = ACTIONS(4266), + [anon_sym_LPAREN] = ACTIONS(4266), + [anon_sym___global] = ACTIONS(4266), + [anon_sym_type] = ACTIONS(4266), + [anon_sym_fn] = ACTIONS(4266), + [anon_sym_PLUS] = ACTIONS(4266), + [anon_sym_DASH] = ACTIONS(4266), + [anon_sym_STAR] = ACTIONS(4266), + [anon_sym_struct] = ACTIONS(4266), + [anon_sym_union] = ACTIONS(4266), + [anon_sym_pub] = ACTIONS(4266), + [anon_sym_mut] = ACTIONS(4266), + [anon_sym_enum] = ACTIONS(4266), + [anon_sym_interface] = ACTIONS(4266), + [anon_sym_QMARK] = ACTIONS(4266), + [anon_sym_BANG] = ACTIONS(4266), + [anon_sym_go] = ACTIONS(4266), + [anon_sym_spawn] = ACTIONS(4266), + [anon_sym_json_DOTdecode] = ACTIONS(4266), + [anon_sym_LBRACK2] = ACTIONS(4266), + [anon_sym_TILDE] = ACTIONS(4266), + [anon_sym_CARET] = ACTIONS(4266), + [anon_sym_AMP] = ACTIONS(4266), + [anon_sym_LT_DASH] = ACTIONS(4266), + [sym_none] = ACTIONS(4266), + [sym_true] = ACTIONS(4266), + [sym_false] = ACTIONS(4266), + [sym_nil] = ACTIONS(4266), + [anon_sym_if] = ACTIONS(4266), + [anon_sym_DOLLARif] = ACTIONS(4266), + [anon_sym_match] = ACTIONS(4266), + [anon_sym_select] = ACTIONS(4266), + [anon_sym_lock] = ACTIONS(4266), + [anon_sym_rlock] = ACTIONS(4266), + [anon_sym_unsafe] = ACTIONS(4266), + [anon_sym_sql] = ACTIONS(4266), + [sym_int_literal] = ACTIONS(4266), + [sym_float_literal] = ACTIONS(4266), + [sym_rune_literal] = ACTIONS(4266), + [sym_pseudo_compile_time_identifier] = ACTIONS(4266), + [anon_sym_shared] = ACTIONS(4266), + [anon_sym_map_LBRACK] = ACTIONS(4266), + [anon_sym_chan] = ACTIONS(4266), + [anon_sym_thread] = ACTIONS(4266), + [anon_sym_atomic] = ACTIONS(4266), + [anon_sym_assert] = ACTIONS(4266), + [anon_sym_defer] = ACTIONS(4266), + [anon_sym_goto] = ACTIONS(4266), + [anon_sym_break] = ACTIONS(4266), + [anon_sym_continue] = ACTIONS(4266), + [anon_sym_return] = ACTIONS(4266), + [anon_sym_DOLLARfor] = ACTIONS(4266), + [anon_sym_for] = ACTIONS(4266), + [anon_sym_POUND] = ACTIONS(4266), + [anon_sym_asm] = ACTIONS(4266), + [anon_sym_AT_LBRACK] = ACTIONS(4266), + [sym___double_quote] = ACTIONS(4266), + [sym___single_quote] = ACTIONS(4266), + [sym___c_double_quote] = ACTIONS(4266), + [sym___c_single_quote] = ACTIONS(4266), + [sym___r_double_quote] = ACTIONS(4266), + [sym___r_single_quote] = ACTIONS(4266), }, [1508] = { [sym_line_comment] = STATE(1508), [sym_block_comment] = STATE(1508), - [ts_builtin_sym_end] = ACTIONS(4261), - [sym_identifier] = ACTIONS(4263), - [anon_sym_LF] = ACTIONS(4263), - [anon_sym_CR] = ACTIONS(4263), - [anon_sym_CR_LF] = ACTIONS(4263), + [ts_builtin_sym_end] = ACTIONS(4268), + [sym_identifier] = ACTIONS(4270), + [anon_sym_LF] = ACTIONS(4270), + [anon_sym_CR] = ACTIONS(4270), + [anon_sym_CR_LF] = ACTIONS(4270), [anon_sym_SLASH_SLASH] = ACTIONS(497), [anon_sym_SLASH_STAR] = ACTIONS(499), - [anon_sym_DOT] = ACTIONS(4263), - [anon_sym_LBRACE] = ACTIONS(4263), - [anon_sym_const] = ACTIONS(4263), - [anon_sym_LPAREN] = ACTIONS(4263), - [anon_sym___global] = ACTIONS(4263), - [anon_sym_type] = ACTIONS(4263), - [anon_sym_fn] = ACTIONS(4263), - [anon_sym_PLUS] = ACTIONS(4263), - [anon_sym_DASH] = ACTIONS(4263), - [anon_sym_STAR] = ACTIONS(4263), - [anon_sym_struct] = ACTIONS(4263), - [anon_sym_union] = ACTIONS(4263), - [anon_sym_pub] = ACTIONS(4263), - [anon_sym_mut] = ACTIONS(4263), - [anon_sym_enum] = ACTIONS(4263), - [anon_sym_interface] = ACTIONS(4263), - [anon_sym_QMARK] = ACTIONS(4263), - [anon_sym_BANG] = ACTIONS(4263), - [anon_sym_go] = ACTIONS(4263), - [anon_sym_spawn] = ACTIONS(4263), - [anon_sym_json_DOTdecode] = ACTIONS(4263), - [anon_sym_LBRACK2] = ACTIONS(4263), - [anon_sym_TILDE] = ACTIONS(4263), - [anon_sym_CARET] = ACTIONS(4263), - [anon_sym_AMP] = ACTIONS(4263), - [anon_sym_LT_DASH] = ACTIONS(4263), - [sym_none] = ACTIONS(4263), - [sym_true] = ACTIONS(4263), - [sym_false] = ACTIONS(4263), - [sym_nil] = ACTIONS(4263), - [anon_sym_if] = ACTIONS(4263), - [anon_sym_DOLLARif] = ACTIONS(4263), - [anon_sym_match] = ACTIONS(4263), - [anon_sym_select] = ACTIONS(4263), - [anon_sym_lock] = ACTIONS(4263), - [anon_sym_rlock] = ACTIONS(4263), - [anon_sym_unsafe] = ACTIONS(4263), - [anon_sym_sql] = ACTIONS(4263), - [sym_int_literal] = ACTIONS(4263), - [sym_float_literal] = ACTIONS(4263), - [sym_rune_literal] = ACTIONS(4263), - [sym_pseudo_compile_time_identifier] = ACTIONS(4263), - [anon_sym_shared] = ACTIONS(4263), - [anon_sym_map_LBRACK] = ACTIONS(4263), - [anon_sym_chan] = ACTIONS(4263), - [anon_sym_thread] = ACTIONS(4263), - [anon_sym_atomic] = ACTIONS(4263), - [anon_sym_assert] = ACTIONS(4263), - [anon_sym_defer] = ACTIONS(4263), - [anon_sym_goto] = ACTIONS(4263), - [anon_sym_break] = ACTIONS(4263), - [anon_sym_continue] = ACTIONS(4263), - [anon_sym_return] = ACTIONS(4263), - [anon_sym_DOLLARfor] = ACTIONS(4263), - [anon_sym_for] = ACTIONS(4263), - [anon_sym_POUND] = ACTIONS(4263), - [anon_sym_asm] = ACTIONS(4263), - [anon_sym_AT_LBRACK] = ACTIONS(4263), - [sym___double_quote] = ACTIONS(4263), - [sym___single_quote] = ACTIONS(4263), - [sym___c_double_quote] = ACTIONS(4263), - [sym___c_single_quote] = ACTIONS(4263), - [sym___r_double_quote] = ACTIONS(4263), - [sym___r_single_quote] = ACTIONS(4263), + [anon_sym_DOT] = ACTIONS(4270), + [anon_sym_LBRACE] = ACTIONS(4270), + [anon_sym_const] = ACTIONS(4270), + [anon_sym_LPAREN] = ACTIONS(4270), + [anon_sym___global] = ACTIONS(4270), + [anon_sym_type] = ACTIONS(4270), + [anon_sym_fn] = ACTIONS(4270), + [anon_sym_PLUS] = ACTIONS(4270), + [anon_sym_DASH] = ACTIONS(4270), + [anon_sym_STAR] = ACTIONS(4270), + [anon_sym_struct] = ACTIONS(4270), + [anon_sym_union] = ACTIONS(4270), + [anon_sym_pub] = ACTIONS(4270), + [anon_sym_mut] = ACTIONS(4270), + [anon_sym_enum] = ACTIONS(4270), + [anon_sym_interface] = ACTIONS(4270), + [anon_sym_QMARK] = ACTIONS(4270), + [anon_sym_BANG] = ACTIONS(4270), + [anon_sym_go] = ACTIONS(4270), + [anon_sym_spawn] = ACTIONS(4270), + [anon_sym_json_DOTdecode] = ACTIONS(4270), + [anon_sym_LBRACK2] = ACTIONS(4270), + [anon_sym_TILDE] = ACTIONS(4270), + [anon_sym_CARET] = ACTIONS(4270), + [anon_sym_AMP] = ACTIONS(4270), + [anon_sym_LT_DASH] = ACTIONS(4270), + [sym_none] = ACTIONS(4270), + [sym_true] = ACTIONS(4270), + [sym_false] = ACTIONS(4270), + [sym_nil] = ACTIONS(4270), + [anon_sym_if] = ACTIONS(4270), + [anon_sym_DOLLARif] = ACTIONS(4270), + [anon_sym_match] = ACTIONS(4270), + [anon_sym_select] = ACTIONS(4270), + [anon_sym_lock] = ACTIONS(4270), + [anon_sym_rlock] = ACTIONS(4270), + [anon_sym_unsafe] = ACTIONS(4270), + [anon_sym_sql] = ACTIONS(4270), + [sym_int_literal] = ACTIONS(4270), + [sym_float_literal] = ACTIONS(4270), + [sym_rune_literal] = ACTIONS(4270), + [sym_pseudo_compile_time_identifier] = ACTIONS(4270), + [anon_sym_shared] = ACTIONS(4270), + [anon_sym_map_LBRACK] = ACTIONS(4270), + [anon_sym_chan] = ACTIONS(4270), + [anon_sym_thread] = ACTIONS(4270), + [anon_sym_atomic] = ACTIONS(4270), + [anon_sym_assert] = ACTIONS(4270), + [anon_sym_defer] = ACTIONS(4270), + [anon_sym_goto] = ACTIONS(4270), + [anon_sym_break] = ACTIONS(4270), + [anon_sym_continue] = ACTIONS(4270), + [anon_sym_return] = ACTIONS(4270), + [anon_sym_DOLLARfor] = ACTIONS(4270), + [anon_sym_for] = ACTIONS(4270), + [anon_sym_POUND] = ACTIONS(4270), + [anon_sym_asm] = ACTIONS(4270), + [anon_sym_AT_LBRACK] = ACTIONS(4270), + [sym___double_quote] = ACTIONS(4270), + [sym___single_quote] = ACTIONS(4270), + [sym___c_double_quote] = ACTIONS(4270), + [sym___c_single_quote] = ACTIONS(4270), + [sym___r_double_quote] = ACTIONS(4270), + [sym___r_single_quote] = ACTIONS(4270), }, [1509] = { [sym_line_comment] = STATE(1509), [sym_block_comment] = STATE(1509), - [ts_builtin_sym_end] = ACTIONS(4265), - [sym_identifier] = ACTIONS(4267), - [anon_sym_LF] = ACTIONS(4267), - [anon_sym_CR] = ACTIONS(4267), - [anon_sym_CR_LF] = ACTIONS(4267), + [ts_builtin_sym_end] = ACTIONS(4272), + [sym_identifier] = ACTIONS(4274), + [anon_sym_LF] = ACTIONS(4274), + [anon_sym_CR] = ACTIONS(4274), + [anon_sym_CR_LF] = ACTIONS(4274), [anon_sym_SLASH_SLASH] = ACTIONS(497), [anon_sym_SLASH_STAR] = ACTIONS(499), - [anon_sym_DOT] = ACTIONS(4267), - [anon_sym_LBRACE] = ACTIONS(4267), - [anon_sym_const] = ACTIONS(4267), - [anon_sym_LPAREN] = ACTIONS(4267), - [anon_sym___global] = ACTIONS(4267), - [anon_sym_type] = ACTIONS(4267), - [anon_sym_fn] = ACTIONS(4267), - [anon_sym_PLUS] = ACTIONS(4267), - [anon_sym_DASH] = ACTIONS(4267), - [anon_sym_STAR] = ACTIONS(4267), - [anon_sym_struct] = ACTIONS(4267), - [anon_sym_union] = ACTIONS(4267), - [anon_sym_pub] = ACTIONS(4267), - [anon_sym_mut] = ACTIONS(4267), - [anon_sym_enum] = ACTIONS(4267), - [anon_sym_interface] = ACTIONS(4267), - [anon_sym_QMARK] = ACTIONS(4267), - [anon_sym_BANG] = ACTIONS(4267), - [anon_sym_go] = ACTIONS(4267), - [anon_sym_spawn] = ACTIONS(4267), - [anon_sym_json_DOTdecode] = ACTIONS(4267), - [anon_sym_LBRACK2] = ACTIONS(4267), - [anon_sym_TILDE] = ACTIONS(4267), - [anon_sym_CARET] = ACTIONS(4267), - [anon_sym_AMP] = ACTIONS(4267), - [anon_sym_LT_DASH] = ACTIONS(4267), - [sym_none] = ACTIONS(4267), - [sym_true] = ACTIONS(4267), - [sym_false] = ACTIONS(4267), - [sym_nil] = ACTIONS(4267), - [anon_sym_if] = ACTIONS(4267), - [anon_sym_DOLLARif] = ACTIONS(4267), - [anon_sym_match] = ACTIONS(4267), - [anon_sym_select] = ACTIONS(4267), - [anon_sym_lock] = ACTIONS(4267), - [anon_sym_rlock] = ACTIONS(4267), - [anon_sym_unsafe] = ACTIONS(4267), - [anon_sym_sql] = ACTIONS(4267), - [sym_int_literal] = ACTIONS(4267), - [sym_float_literal] = ACTIONS(4267), - [sym_rune_literal] = ACTIONS(4267), - [sym_pseudo_compile_time_identifier] = ACTIONS(4267), - [anon_sym_shared] = ACTIONS(4267), - [anon_sym_map_LBRACK] = ACTIONS(4267), - [anon_sym_chan] = ACTIONS(4267), - [anon_sym_thread] = ACTIONS(4267), - [anon_sym_atomic] = ACTIONS(4267), - [anon_sym_assert] = ACTIONS(4267), - [anon_sym_defer] = ACTIONS(4267), - [anon_sym_goto] = ACTIONS(4267), - [anon_sym_break] = ACTIONS(4267), - [anon_sym_continue] = ACTIONS(4267), - [anon_sym_return] = ACTIONS(4267), - [anon_sym_DOLLARfor] = ACTIONS(4267), - [anon_sym_for] = ACTIONS(4267), - [anon_sym_POUND] = ACTIONS(4267), - [anon_sym_asm] = ACTIONS(4267), - [anon_sym_AT_LBRACK] = ACTIONS(4267), - [sym___double_quote] = ACTIONS(4267), - [sym___single_quote] = ACTIONS(4267), - [sym___c_double_quote] = ACTIONS(4267), - [sym___c_single_quote] = ACTIONS(4267), - [sym___r_double_quote] = ACTIONS(4267), - [sym___r_single_quote] = ACTIONS(4267), + [anon_sym_DOT] = ACTIONS(4274), + [anon_sym_LBRACE] = ACTIONS(4274), + [anon_sym_const] = ACTIONS(4274), + [anon_sym_LPAREN] = ACTIONS(4274), + [anon_sym___global] = ACTIONS(4274), + [anon_sym_type] = ACTIONS(4274), + [anon_sym_fn] = ACTIONS(4274), + [anon_sym_PLUS] = ACTIONS(4274), + [anon_sym_DASH] = ACTIONS(4274), + [anon_sym_STAR] = ACTIONS(4274), + [anon_sym_struct] = ACTIONS(4274), + [anon_sym_union] = ACTIONS(4274), + [anon_sym_pub] = ACTIONS(4274), + [anon_sym_mut] = ACTIONS(4274), + [anon_sym_enum] = ACTIONS(4274), + [anon_sym_interface] = ACTIONS(4274), + [anon_sym_QMARK] = ACTIONS(4274), + [anon_sym_BANG] = ACTIONS(4274), + [anon_sym_go] = ACTIONS(4274), + [anon_sym_spawn] = ACTIONS(4274), + [anon_sym_json_DOTdecode] = ACTIONS(4274), + [anon_sym_LBRACK2] = ACTIONS(4274), + [anon_sym_TILDE] = ACTIONS(4274), + [anon_sym_CARET] = ACTIONS(4274), + [anon_sym_AMP] = ACTIONS(4274), + [anon_sym_LT_DASH] = ACTIONS(4274), + [sym_none] = ACTIONS(4274), + [sym_true] = ACTIONS(4274), + [sym_false] = ACTIONS(4274), + [sym_nil] = ACTIONS(4274), + [anon_sym_if] = ACTIONS(4274), + [anon_sym_DOLLARif] = ACTIONS(4274), + [anon_sym_match] = ACTIONS(4274), + [anon_sym_select] = ACTIONS(4274), + [anon_sym_lock] = ACTIONS(4274), + [anon_sym_rlock] = ACTIONS(4274), + [anon_sym_unsafe] = ACTIONS(4274), + [anon_sym_sql] = ACTIONS(4274), + [sym_int_literal] = ACTIONS(4274), + [sym_float_literal] = ACTIONS(4274), + [sym_rune_literal] = ACTIONS(4274), + [sym_pseudo_compile_time_identifier] = ACTIONS(4274), + [anon_sym_shared] = ACTIONS(4274), + [anon_sym_map_LBRACK] = ACTIONS(4274), + [anon_sym_chan] = ACTIONS(4274), + [anon_sym_thread] = ACTIONS(4274), + [anon_sym_atomic] = ACTIONS(4274), + [anon_sym_assert] = ACTIONS(4274), + [anon_sym_defer] = ACTIONS(4274), + [anon_sym_goto] = ACTIONS(4274), + [anon_sym_break] = ACTIONS(4274), + [anon_sym_continue] = ACTIONS(4274), + [anon_sym_return] = ACTIONS(4274), + [anon_sym_DOLLARfor] = ACTIONS(4274), + [anon_sym_for] = ACTIONS(4274), + [anon_sym_POUND] = ACTIONS(4274), + [anon_sym_asm] = ACTIONS(4274), + [anon_sym_AT_LBRACK] = ACTIONS(4274), + [sym___double_quote] = ACTIONS(4274), + [sym___single_quote] = ACTIONS(4274), + [sym___c_double_quote] = ACTIONS(4274), + [sym___c_single_quote] = ACTIONS(4274), + [sym___r_double_quote] = ACTIONS(4274), + [sym___r_single_quote] = ACTIONS(4274), }, [1510] = { [sym_line_comment] = STATE(1510), [sym_block_comment] = STATE(1510), - [ts_builtin_sym_end] = ACTIONS(4269), - [sym_identifier] = ACTIONS(4271), - [anon_sym_LF] = ACTIONS(4271), - [anon_sym_CR] = ACTIONS(4271), - [anon_sym_CR_LF] = ACTIONS(4271), + [ts_builtin_sym_end] = ACTIONS(4276), + [sym_identifier] = ACTIONS(4278), + [anon_sym_LF] = ACTIONS(4278), + [anon_sym_CR] = ACTIONS(4278), + [anon_sym_CR_LF] = ACTIONS(4278), [anon_sym_SLASH_SLASH] = ACTIONS(497), [anon_sym_SLASH_STAR] = ACTIONS(499), - [anon_sym_DOT] = ACTIONS(4271), - [anon_sym_LBRACE] = ACTIONS(4271), - [anon_sym_const] = ACTIONS(4271), - [anon_sym_LPAREN] = ACTIONS(4271), - [anon_sym___global] = ACTIONS(4271), - [anon_sym_type] = ACTIONS(4271), - [anon_sym_fn] = ACTIONS(4271), - [anon_sym_PLUS] = ACTIONS(4271), - [anon_sym_DASH] = ACTIONS(4271), - [anon_sym_STAR] = ACTIONS(4271), - [anon_sym_struct] = ACTIONS(4271), - [anon_sym_union] = ACTIONS(4271), - [anon_sym_pub] = ACTIONS(4271), - [anon_sym_mut] = ACTIONS(4271), - [anon_sym_enum] = ACTIONS(4271), - [anon_sym_interface] = ACTIONS(4271), - [anon_sym_QMARK] = ACTIONS(4271), - [anon_sym_BANG] = ACTIONS(4271), - [anon_sym_go] = ACTIONS(4271), - [anon_sym_spawn] = ACTIONS(4271), - [anon_sym_json_DOTdecode] = ACTIONS(4271), - [anon_sym_LBRACK2] = ACTIONS(4271), - [anon_sym_TILDE] = ACTIONS(4271), - [anon_sym_CARET] = ACTIONS(4271), - [anon_sym_AMP] = ACTIONS(4271), - [anon_sym_LT_DASH] = ACTIONS(4271), - [sym_none] = ACTIONS(4271), - [sym_true] = ACTIONS(4271), - [sym_false] = ACTIONS(4271), - [sym_nil] = ACTIONS(4271), - [anon_sym_if] = ACTIONS(4271), - [anon_sym_DOLLARif] = ACTIONS(4271), - [anon_sym_match] = ACTIONS(4271), - [anon_sym_select] = ACTIONS(4271), - [anon_sym_lock] = ACTIONS(4271), - [anon_sym_rlock] = ACTIONS(4271), - [anon_sym_unsafe] = ACTIONS(4271), - [anon_sym_sql] = ACTIONS(4271), - [sym_int_literal] = ACTIONS(4271), - [sym_float_literal] = ACTIONS(4271), - [sym_rune_literal] = ACTIONS(4271), - [sym_pseudo_compile_time_identifier] = ACTIONS(4271), - [anon_sym_shared] = ACTIONS(4271), - [anon_sym_map_LBRACK] = ACTIONS(4271), - [anon_sym_chan] = ACTIONS(4271), - [anon_sym_thread] = ACTIONS(4271), - [anon_sym_atomic] = ACTIONS(4271), - [anon_sym_assert] = ACTIONS(4271), - [anon_sym_defer] = ACTIONS(4271), - [anon_sym_goto] = ACTIONS(4271), - [anon_sym_break] = ACTIONS(4271), - [anon_sym_continue] = ACTIONS(4271), - [anon_sym_return] = ACTIONS(4271), - [anon_sym_DOLLARfor] = ACTIONS(4271), - [anon_sym_for] = ACTIONS(4271), - [anon_sym_POUND] = ACTIONS(4271), - [anon_sym_asm] = ACTIONS(4271), - [anon_sym_AT_LBRACK] = ACTIONS(4271), - [sym___double_quote] = ACTIONS(4271), - [sym___single_quote] = ACTIONS(4271), - [sym___c_double_quote] = ACTIONS(4271), - [sym___c_single_quote] = ACTIONS(4271), - [sym___r_double_quote] = ACTIONS(4271), - [sym___r_single_quote] = ACTIONS(4271), + [anon_sym_DOT] = ACTIONS(4278), + [anon_sym_LBRACE] = ACTIONS(4278), + [anon_sym_const] = ACTIONS(4278), + [anon_sym_LPAREN] = ACTIONS(4278), + [anon_sym___global] = ACTIONS(4278), + [anon_sym_type] = ACTIONS(4278), + [anon_sym_fn] = ACTIONS(4278), + [anon_sym_PLUS] = ACTIONS(4278), + [anon_sym_DASH] = ACTIONS(4278), + [anon_sym_STAR] = ACTIONS(4278), + [anon_sym_struct] = ACTIONS(4278), + [anon_sym_union] = ACTIONS(4278), + [anon_sym_pub] = ACTIONS(4278), + [anon_sym_mut] = ACTIONS(4278), + [anon_sym_enum] = ACTIONS(4278), + [anon_sym_interface] = ACTIONS(4278), + [anon_sym_QMARK] = ACTIONS(4278), + [anon_sym_BANG] = ACTIONS(4278), + [anon_sym_go] = ACTIONS(4278), + [anon_sym_spawn] = ACTIONS(4278), + [anon_sym_json_DOTdecode] = ACTIONS(4278), + [anon_sym_LBRACK2] = ACTIONS(4278), + [anon_sym_TILDE] = ACTIONS(4278), + [anon_sym_CARET] = ACTIONS(4278), + [anon_sym_AMP] = ACTIONS(4278), + [anon_sym_LT_DASH] = ACTIONS(4278), + [sym_none] = ACTIONS(4278), + [sym_true] = ACTIONS(4278), + [sym_false] = ACTIONS(4278), + [sym_nil] = ACTIONS(4278), + [anon_sym_if] = ACTIONS(4278), + [anon_sym_DOLLARif] = ACTIONS(4278), + [anon_sym_match] = ACTIONS(4278), + [anon_sym_select] = ACTIONS(4278), + [anon_sym_lock] = ACTIONS(4278), + [anon_sym_rlock] = ACTIONS(4278), + [anon_sym_unsafe] = ACTIONS(4278), + [anon_sym_sql] = ACTIONS(4278), + [sym_int_literal] = ACTIONS(4278), + [sym_float_literal] = ACTIONS(4278), + [sym_rune_literal] = ACTIONS(4278), + [sym_pseudo_compile_time_identifier] = ACTIONS(4278), + [anon_sym_shared] = ACTIONS(4278), + [anon_sym_map_LBRACK] = ACTIONS(4278), + [anon_sym_chan] = ACTIONS(4278), + [anon_sym_thread] = ACTIONS(4278), + [anon_sym_atomic] = ACTIONS(4278), + [anon_sym_assert] = ACTIONS(4278), + [anon_sym_defer] = ACTIONS(4278), + [anon_sym_goto] = ACTIONS(4278), + [anon_sym_break] = ACTIONS(4278), + [anon_sym_continue] = ACTIONS(4278), + [anon_sym_return] = ACTIONS(4278), + [anon_sym_DOLLARfor] = ACTIONS(4278), + [anon_sym_for] = ACTIONS(4278), + [anon_sym_POUND] = ACTIONS(4278), + [anon_sym_asm] = ACTIONS(4278), + [anon_sym_AT_LBRACK] = ACTIONS(4278), + [sym___double_quote] = ACTIONS(4278), + [sym___single_quote] = ACTIONS(4278), + [sym___c_double_quote] = ACTIONS(4278), + [sym___c_single_quote] = ACTIONS(4278), + [sym___r_double_quote] = ACTIONS(4278), + [sym___r_single_quote] = ACTIONS(4278), }, [1511] = { [sym_line_comment] = STATE(1511), [sym_block_comment] = STATE(1511), - [ts_builtin_sym_end] = ACTIONS(4273), - [sym_identifier] = ACTIONS(4275), - [anon_sym_LF] = ACTIONS(4275), - [anon_sym_CR] = ACTIONS(4275), - [anon_sym_CR_LF] = ACTIONS(4275), + [ts_builtin_sym_end] = ACTIONS(4280), + [sym_identifier] = ACTIONS(4282), + [anon_sym_LF] = ACTIONS(4282), + [anon_sym_CR] = ACTIONS(4282), + [anon_sym_CR_LF] = ACTIONS(4282), [anon_sym_SLASH_SLASH] = ACTIONS(497), [anon_sym_SLASH_STAR] = ACTIONS(499), - [anon_sym_DOT] = ACTIONS(4275), - [anon_sym_LBRACE] = ACTIONS(4275), - [anon_sym_const] = ACTIONS(4275), - [anon_sym_LPAREN] = ACTIONS(4275), - [anon_sym___global] = ACTIONS(4275), - [anon_sym_type] = ACTIONS(4275), - [anon_sym_fn] = ACTIONS(4275), - [anon_sym_PLUS] = ACTIONS(4275), - [anon_sym_DASH] = ACTIONS(4275), - [anon_sym_STAR] = ACTIONS(4275), - [anon_sym_struct] = ACTIONS(4275), - [anon_sym_union] = ACTIONS(4275), - [anon_sym_pub] = ACTIONS(4275), - [anon_sym_mut] = ACTIONS(4275), - [anon_sym_enum] = ACTIONS(4275), - [anon_sym_interface] = ACTIONS(4275), - [anon_sym_QMARK] = ACTIONS(4275), - [anon_sym_BANG] = ACTIONS(4275), - [anon_sym_go] = ACTIONS(4275), - [anon_sym_spawn] = ACTIONS(4275), - [anon_sym_json_DOTdecode] = ACTIONS(4275), - [anon_sym_LBRACK2] = ACTIONS(4275), - [anon_sym_TILDE] = ACTIONS(4275), - [anon_sym_CARET] = ACTIONS(4275), - [anon_sym_AMP] = ACTIONS(4275), - [anon_sym_LT_DASH] = ACTIONS(4275), - [sym_none] = ACTIONS(4275), - [sym_true] = ACTIONS(4275), - [sym_false] = ACTIONS(4275), - [sym_nil] = ACTIONS(4275), - [anon_sym_if] = ACTIONS(4275), - [anon_sym_DOLLARif] = ACTIONS(4275), - [anon_sym_match] = ACTIONS(4275), - [anon_sym_select] = ACTIONS(4275), - [anon_sym_lock] = ACTIONS(4275), - [anon_sym_rlock] = ACTIONS(4275), - [anon_sym_unsafe] = ACTIONS(4275), - [anon_sym_sql] = ACTIONS(4275), - [sym_int_literal] = ACTIONS(4275), - [sym_float_literal] = ACTIONS(4275), - [sym_rune_literal] = ACTIONS(4275), - [sym_pseudo_compile_time_identifier] = ACTIONS(4275), - [anon_sym_shared] = ACTIONS(4275), - [anon_sym_map_LBRACK] = ACTIONS(4275), - [anon_sym_chan] = ACTIONS(4275), - [anon_sym_thread] = ACTIONS(4275), - [anon_sym_atomic] = ACTIONS(4275), - [anon_sym_assert] = ACTIONS(4275), - [anon_sym_defer] = ACTIONS(4275), - [anon_sym_goto] = ACTIONS(4275), - [anon_sym_break] = ACTIONS(4275), - [anon_sym_continue] = ACTIONS(4275), - [anon_sym_return] = ACTIONS(4275), - [anon_sym_DOLLARfor] = ACTIONS(4275), - [anon_sym_for] = ACTIONS(4275), - [anon_sym_POUND] = ACTIONS(4275), - [anon_sym_asm] = ACTIONS(4275), - [anon_sym_AT_LBRACK] = ACTIONS(4275), - [sym___double_quote] = ACTIONS(4275), - [sym___single_quote] = ACTIONS(4275), - [sym___c_double_quote] = ACTIONS(4275), - [sym___c_single_quote] = ACTIONS(4275), - [sym___r_double_quote] = ACTIONS(4275), - [sym___r_single_quote] = ACTIONS(4275), + [anon_sym_DOT] = ACTIONS(4282), + [anon_sym_LBRACE] = ACTIONS(4282), + [anon_sym_const] = ACTIONS(4282), + [anon_sym_LPAREN] = ACTIONS(4282), + [anon_sym___global] = ACTIONS(4282), + [anon_sym_type] = ACTIONS(4282), + [anon_sym_fn] = ACTIONS(4282), + [anon_sym_PLUS] = ACTIONS(4282), + [anon_sym_DASH] = ACTIONS(4282), + [anon_sym_STAR] = ACTIONS(4282), + [anon_sym_struct] = ACTIONS(4282), + [anon_sym_union] = ACTIONS(4282), + [anon_sym_pub] = ACTIONS(4282), + [anon_sym_mut] = ACTIONS(4282), + [anon_sym_enum] = ACTIONS(4282), + [anon_sym_interface] = ACTIONS(4282), + [anon_sym_QMARK] = ACTIONS(4282), + [anon_sym_BANG] = ACTIONS(4282), + [anon_sym_go] = ACTIONS(4282), + [anon_sym_spawn] = ACTIONS(4282), + [anon_sym_json_DOTdecode] = ACTIONS(4282), + [anon_sym_LBRACK2] = ACTIONS(4282), + [anon_sym_TILDE] = ACTIONS(4282), + [anon_sym_CARET] = ACTIONS(4282), + [anon_sym_AMP] = ACTIONS(4282), + [anon_sym_LT_DASH] = ACTIONS(4282), + [sym_none] = ACTIONS(4282), + [sym_true] = ACTIONS(4282), + [sym_false] = ACTIONS(4282), + [sym_nil] = ACTIONS(4282), + [anon_sym_if] = ACTIONS(4282), + [anon_sym_DOLLARif] = ACTIONS(4282), + [anon_sym_match] = ACTIONS(4282), + [anon_sym_select] = ACTIONS(4282), + [anon_sym_lock] = ACTIONS(4282), + [anon_sym_rlock] = ACTIONS(4282), + [anon_sym_unsafe] = ACTIONS(4282), + [anon_sym_sql] = ACTIONS(4282), + [sym_int_literal] = ACTIONS(4282), + [sym_float_literal] = ACTIONS(4282), + [sym_rune_literal] = ACTIONS(4282), + [sym_pseudo_compile_time_identifier] = ACTIONS(4282), + [anon_sym_shared] = ACTIONS(4282), + [anon_sym_map_LBRACK] = ACTIONS(4282), + [anon_sym_chan] = ACTIONS(4282), + [anon_sym_thread] = ACTIONS(4282), + [anon_sym_atomic] = ACTIONS(4282), + [anon_sym_assert] = ACTIONS(4282), + [anon_sym_defer] = ACTIONS(4282), + [anon_sym_goto] = ACTIONS(4282), + [anon_sym_break] = ACTIONS(4282), + [anon_sym_continue] = ACTIONS(4282), + [anon_sym_return] = ACTIONS(4282), + [anon_sym_DOLLARfor] = ACTIONS(4282), + [anon_sym_for] = ACTIONS(4282), + [anon_sym_POUND] = ACTIONS(4282), + [anon_sym_asm] = ACTIONS(4282), + [anon_sym_AT_LBRACK] = ACTIONS(4282), + [sym___double_quote] = ACTIONS(4282), + [sym___single_quote] = ACTIONS(4282), + [sym___c_double_quote] = ACTIONS(4282), + [sym___c_single_quote] = ACTIONS(4282), + [sym___r_double_quote] = ACTIONS(4282), + [sym___r_single_quote] = ACTIONS(4282), }, [1512] = { [sym_line_comment] = STATE(1512), [sym_block_comment] = STATE(1512), - [ts_builtin_sym_end] = ACTIONS(4277), - [sym_identifier] = ACTIONS(4279), - [anon_sym_LF] = ACTIONS(4279), - [anon_sym_CR] = ACTIONS(4279), - [anon_sym_CR_LF] = ACTIONS(4279), + [ts_builtin_sym_end] = ACTIONS(4284), + [sym_identifier] = ACTIONS(4286), + [anon_sym_LF] = ACTIONS(4286), + [anon_sym_CR] = ACTIONS(4286), + [anon_sym_CR_LF] = ACTIONS(4286), [anon_sym_SLASH_SLASH] = ACTIONS(497), [anon_sym_SLASH_STAR] = ACTIONS(499), - [anon_sym_DOT] = ACTIONS(4279), - [anon_sym_LBRACE] = ACTIONS(4279), - [anon_sym_const] = ACTIONS(4279), - [anon_sym_LPAREN] = ACTIONS(4279), - [anon_sym___global] = ACTIONS(4279), - [anon_sym_type] = ACTIONS(4279), - [anon_sym_fn] = ACTIONS(4279), - [anon_sym_PLUS] = ACTIONS(4279), - [anon_sym_DASH] = ACTIONS(4279), - [anon_sym_STAR] = ACTIONS(4279), - [anon_sym_struct] = ACTIONS(4279), - [anon_sym_union] = ACTIONS(4279), - [anon_sym_pub] = ACTIONS(4279), - [anon_sym_mut] = ACTIONS(4279), - [anon_sym_enum] = ACTIONS(4279), - [anon_sym_interface] = ACTIONS(4279), - [anon_sym_QMARK] = ACTIONS(4279), - [anon_sym_BANG] = ACTIONS(4279), - [anon_sym_go] = ACTIONS(4279), - [anon_sym_spawn] = ACTIONS(4279), - [anon_sym_json_DOTdecode] = ACTIONS(4279), - [anon_sym_LBRACK2] = ACTIONS(4279), - [anon_sym_TILDE] = ACTIONS(4279), - [anon_sym_CARET] = ACTIONS(4279), - [anon_sym_AMP] = ACTIONS(4279), - [anon_sym_LT_DASH] = ACTIONS(4279), - [sym_none] = ACTIONS(4279), - [sym_true] = ACTIONS(4279), - [sym_false] = ACTIONS(4279), - [sym_nil] = ACTIONS(4279), - [anon_sym_if] = ACTIONS(4279), - [anon_sym_DOLLARif] = ACTIONS(4279), - [anon_sym_match] = ACTIONS(4279), - [anon_sym_select] = ACTIONS(4279), - [anon_sym_lock] = ACTIONS(4279), - [anon_sym_rlock] = ACTIONS(4279), - [anon_sym_unsafe] = ACTIONS(4279), - [anon_sym_sql] = ACTIONS(4279), - [sym_int_literal] = ACTIONS(4279), - [sym_float_literal] = ACTIONS(4279), - [sym_rune_literal] = ACTIONS(4279), - [sym_pseudo_compile_time_identifier] = ACTIONS(4279), - [anon_sym_shared] = ACTIONS(4279), - [anon_sym_map_LBRACK] = ACTIONS(4279), - [anon_sym_chan] = ACTIONS(4279), - [anon_sym_thread] = ACTIONS(4279), - [anon_sym_atomic] = ACTIONS(4279), - [anon_sym_assert] = ACTIONS(4279), - [anon_sym_defer] = ACTIONS(4279), - [anon_sym_goto] = ACTIONS(4279), - [anon_sym_break] = ACTIONS(4279), - [anon_sym_continue] = ACTIONS(4279), - [anon_sym_return] = ACTIONS(4279), - [anon_sym_DOLLARfor] = ACTIONS(4279), - [anon_sym_for] = ACTIONS(4279), - [anon_sym_POUND] = ACTIONS(4279), - [anon_sym_asm] = ACTIONS(4279), - [anon_sym_AT_LBRACK] = ACTIONS(4279), - [sym___double_quote] = ACTIONS(4279), - [sym___single_quote] = ACTIONS(4279), - [sym___c_double_quote] = ACTIONS(4279), - [sym___c_single_quote] = ACTIONS(4279), - [sym___r_double_quote] = ACTIONS(4279), - [sym___r_single_quote] = ACTIONS(4279), + [anon_sym_DOT] = ACTIONS(4286), + [anon_sym_LBRACE] = ACTIONS(4286), + [anon_sym_const] = ACTIONS(4286), + [anon_sym_LPAREN] = ACTIONS(4286), + [anon_sym___global] = ACTIONS(4286), + [anon_sym_type] = ACTIONS(4286), + [anon_sym_fn] = ACTIONS(4286), + [anon_sym_PLUS] = ACTIONS(4286), + [anon_sym_DASH] = ACTIONS(4286), + [anon_sym_STAR] = ACTIONS(4286), + [anon_sym_struct] = ACTIONS(4286), + [anon_sym_union] = ACTIONS(4286), + [anon_sym_pub] = ACTIONS(4286), + [anon_sym_mut] = ACTIONS(4286), + [anon_sym_enum] = ACTIONS(4286), + [anon_sym_interface] = ACTIONS(4286), + [anon_sym_QMARK] = ACTIONS(4286), + [anon_sym_BANG] = ACTIONS(4286), + [anon_sym_go] = ACTIONS(4286), + [anon_sym_spawn] = ACTIONS(4286), + [anon_sym_json_DOTdecode] = ACTIONS(4286), + [anon_sym_LBRACK2] = ACTIONS(4286), + [anon_sym_TILDE] = ACTIONS(4286), + [anon_sym_CARET] = ACTIONS(4286), + [anon_sym_AMP] = ACTIONS(4286), + [anon_sym_LT_DASH] = ACTIONS(4286), + [sym_none] = ACTIONS(4286), + [sym_true] = ACTIONS(4286), + [sym_false] = ACTIONS(4286), + [sym_nil] = ACTIONS(4286), + [anon_sym_if] = ACTIONS(4286), + [anon_sym_DOLLARif] = ACTIONS(4286), + [anon_sym_match] = ACTIONS(4286), + [anon_sym_select] = ACTIONS(4286), + [anon_sym_lock] = ACTIONS(4286), + [anon_sym_rlock] = ACTIONS(4286), + [anon_sym_unsafe] = ACTIONS(4286), + [anon_sym_sql] = ACTIONS(4286), + [sym_int_literal] = ACTIONS(4286), + [sym_float_literal] = ACTIONS(4286), + [sym_rune_literal] = ACTIONS(4286), + [sym_pseudo_compile_time_identifier] = ACTIONS(4286), + [anon_sym_shared] = ACTIONS(4286), + [anon_sym_map_LBRACK] = ACTIONS(4286), + [anon_sym_chan] = ACTIONS(4286), + [anon_sym_thread] = ACTIONS(4286), + [anon_sym_atomic] = ACTIONS(4286), + [anon_sym_assert] = ACTIONS(4286), + [anon_sym_defer] = ACTIONS(4286), + [anon_sym_goto] = ACTIONS(4286), + [anon_sym_break] = ACTIONS(4286), + [anon_sym_continue] = ACTIONS(4286), + [anon_sym_return] = ACTIONS(4286), + [anon_sym_DOLLARfor] = ACTIONS(4286), + [anon_sym_for] = ACTIONS(4286), + [anon_sym_POUND] = ACTIONS(4286), + [anon_sym_asm] = ACTIONS(4286), + [anon_sym_AT_LBRACK] = ACTIONS(4286), + [sym___double_quote] = ACTIONS(4286), + [sym___single_quote] = ACTIONS(4286), + [sym___c_double_quote] = ACTIONS(4286), + [sym___c_single_quote] = ACTIONS(4286), + [sym___r_double_quote] = ACTIONS(4286), + [sym___r_single_quote] = ACTIONS(4286), }, [1513] = { [sym_line_comment] = STATE(1513), [sym_block_comment] = STATE(1513), - [ts_builtin_sym_end] = ACTIONS(4281), - [sym_identifier] = ACTIONS(4283), - [anon_sym_LF] = ACTIONS(4283), - [anon_sym_CR] = ACTIONS(4283), - [anon_sym_CR_LF] = ACTIONS(4283), + [ts_builtin_sym_end] = ACTIONS(4288), + [sym_identifier] = ACTIONS(4290), + [anon_sym_LF] = ACTIONS(4290), + [anon_sym_CR] = ACTIONS(4290), + [anon_sym_CR_LF] = ACTIONS(4290), [anon_sym_SLASH_SLASH] = ACTIONS(497), [anon_sym_SLASH_STAR] = ACTIONS(499), - [anon_sym_DOT] = ACTIONS(4283), - [anon_sym_LBRACE] = ACTIONS(4283), - [anon_sym_const] = ACTIONS(4283), - [anon_sym_LPAREN] = ACTIONS(4283), - [anon_sym___global] = ACTIONS(4283), - [anon_sym_type] = ACTIONS(4283), - [anon_sym_fn] = ACTIONS(4283), - [anon_sym_PLUS] = ACTIONS(4283), - [anon_sym_DASH] = ACTIONS(4283), - [anon_sym_STAR] = ACTIONS(4283), - [anon_sym_struct] = ACTIONS(4283), - [anon_sym_union] = ACTIONS(4283), - [anon_sym_pub] = ACTIONS(4283), - [anon_sym_mut] = ACTIONS(4283), - [anon_sym_enum] = ACTIONS(4283), - [anon_sym_interface] = ACTIONS(4283), - [anon_sym_QMARK] = ACTIONS(4283), - [anon_sym_BANG] = ACTIONS(4283), - [anon_sym_go] = ACTIONS(4283), - [anon_sym_spawn] = ACTIONS(4283), - [anon_sym_json_DOTdecode] = ACTIONS(4283), - [anon_sym_LBRACK2] = ACTIONS(4283), - [anon_sym_TILDE] = ACTIONS(4283), - [anon_sym_CARET] = ACTIONS(4283), - [anon_sym_AMP] = ACTIONS(4283), - [anon_sym_LT_DASH] = ACTIONS(4283), - [sym_none] = ACTIONS(4283), - [sym_true] = ACTIONS(4283), - [sym_false] = ACTIONS(4283), - [sym_nil] = ACTIONS(4283), - [anon_sym_if] = ACTIONS(4283), - [anon_sym_DOLLARif] = ACTIONS(4283), - [anon_sym_match] = ACTIONS(4283), - [anon_sym_select] = ACTIONS(4283), - [anon_sym_lock] = ACTIONS(4283), - [anon_sym_rlock] = ACTIONS(4283), - [anon_sym_unsafe] = ACTIONS(4283), - [anon_sym_sql] = ACTIONS(4283), - [sym_int_literal] = ACTIONS(4283), - [sym_float_literal] = ACTIONS(4283), - [sym_rune_literal] = ACTIONS(4283), - [sym_pseudo_compile_time_identifier] = ACTIONS(4283), - [anon_sym_shared] = ACTIONS(4283), - [anon_sym_map_LBRACK] = ACTIONS(4283), - [anon_sym_chan] = ACTIONS(4283), - [anon_sym_thread] = ACTIONS(4283), - [anon_sym_atomic] = ACTIONS(4283), - [anon_sym_assert] = ACTIONS(4283), - [anon_sym_defer] = ACTIONS(4283), - [anon_sym_goto] = ACTIONS(4283), - [anon_sym_break] = ACTIONS(4283), - [anon_sym_continue] = ACTIONS(4283), - [anon_sym_return] = ACTIONS(4283), - [anon_sym_DOLLARfor] = ACTIONS(4283), - [anon_sym_for] = ACTIONS(4283), - [anon_sym_POUND] = ACTIONS(4283), - [anon_sym_asm] = ACTIONS(4283), - [anon_sym_AT_LBRACK] = ACTIONS(4283), - [sym___double_quote] = ACTIONS(4283), - [sym___single_quote] = ACTIONS(4283), - [sym___c_double_quote] = ACTIONS(4283), - [sym___c_single_quote] = ACTIONS(4283), - [sym___r_double_quote] = ACTIONS(4283), - [sym___r_single_quote] = ACTIONS(4283), + [anon_sym_DOT] = ACTIONS(4290), + [anon_sym_LBRACE] = ACTIONS(4290), + [anon_sym_const] = ACTIONS(4290), + [anon_sym_LPAREN] = ACTIONS(4290), + [anon_sym___global] = ACTIONS(4290), + [anon_sym_type] = ACTIONS(4290), + [anon_sym_fn] = ACTIONS(4290), + [anon_sym_PLUS] = ACTIONS(4290), + [anon_sym_DASH] = ACTIONS(4290), + [anon_sym_STAR] = ACTIONS(4290), + [anon_sym_struct] = ACTIONS(4290), + [anon_sym_union] = ACTIONS(4290), + [anon_sym_pub] = ACTIONS(4290), + [anon_sym_mut] = ACTIONS(4290), + [anon_sym_enum] = ACTIONS(4290), + [anon_sym_interface] = ACTIONS(4290), + [anon_sym_QMARK] = ACTIONS(4290), + [anon_sym_BANG] = ACTIONS(4290), + [anon_sym_go] = ACTIONS(4290), + [anon_sym_spawn] = ACTIONS(4290), + [anon_sym_json_DOTdecode] = ACTIONS(4290), + [anon_sym_LBRACK2] = ACTIONS(4290), + [anon_sym_TILDE] = ACTIONS(4290), + [anon_sym_CARET] = ACTIONS(4290), + [anon_sym_AMP] = ACTIONS(4290), + [anon_sym_LT_DASH] = ACTIONS(4290), + [sym_none] = ACTIONS(4290), + [sym_true] = ACTIONS(4290), + [sym_false] = ACTIONS(4290), + [sym_nil] = ACTIONS(4290), + [anon_sym_if] = ACTIONS(4290), + [anon_sym_DOLLARif] = ACTIONS(4290), + [anon_sym_match] = ACTIONS(4290), + [anon_sym_select] = ACTIONS(4290), + [anon_sym_lock] = ACTIONS(4290), + [anon_sym_rlock] = ACTIONS(4290), + [anon_sym_unsafe] = ACTIONS(4290), + [anon_sym_sql] = ACTIONS(4290), + [sym_int_literal] = ACTIONS(4290), + [sym_float_literal] = ACTIONS(4290), + [sym_rune_literal] = ACTIONS(4290), + [sym_pseudo_compile_time_identifier] = ACTIONS(4290), + [anon_sym_shared] = ACTIONS(4290), + [anon_sym_map_LBRACK] = ACTIONS(4290), + [anon_sym_chan] = ACTIONS(4290), + [anon_sym_thread] = ACTIONS(4290), + [anon_sym_atomic] = ACTIONS(4290), + [anon_sym_assert] = ACTIONS(4290), + [anon_sym_defer] = ACTIONS(4290), + [anon_sym_goto] = ACTIONS(4290), + [anon_sym_break] = ACTIONS(4290), + [anon_sym_continue] = ACTIONS(4290), + [anon_sym_return] = ACTIONS(4290), + [anon_sym_DOLLARfor] = ACTIONS(4290), + [anon_sym_for] = ACTIONS(4290), + [anon_sym_POUND] = ACTIONS(4290), + [anon_sym_asm] = ACTIONS(4290), + [anon_sym_AT_LBRACK] = ACTIONS(4290), + [sym___double_quote] = ACTIONS(4290), + [sym___single_quote] = ACTIONS(4290), + [sym___c_double_quote] = ACTIONS(4290), + [sym___c_single_quote] = ACTIONS(4290), + [sym___r_double_quote] = ACTIONS(4290), + [sym___r_single_quote] = ACTIONS(4290), }, [1514] = { [sym_line_comment] = STATE(1514), [sym_block_comment] = STATE(1514), - [ts_builtin_sym_end] = ACTIONS(4285), - [sym_identifier] = ACTIONS(4287), - [anon_sym_LF] = ACTIONS(4287), - [anon_sym_CR] = ACTIONS(4287), - [anon_sym_CR_LF] = ACTIONS(4287), + [ts_builtin_sym_end] = ACTIONS(4292), + [sym_identifier] = ACTIONS(4294), + [anon_sym_LF] = ACTIONS(4294), + [anon_sym_CR] = ACTIONS(4294), + [anon_sym_CR_LF] = ACTIONS(4294), [anon_sym_SLASH_SLASH] = ACTIONS(497), [anon_sym_SLASH_STAR] = ACTIONS(499), - [anon_sym_DOT] = ACTIONS(4287), - [anon_sym_LBRACE] = ACTIONS(4287), - [anon_sym_const] = ACTIONS(4287), - [anon_sym_LPAREN] = ACTIONS(4287), - [anon_sym___global] = ACTIONS(4287), - [anon_sym_type] = ACTIONS(4287), - [anon_sym_fn] = ACTIONS(4287), - [anon_sym_PLUS] = ACTIONS(4287), - [anon_sym_DASH] = ACTIONS(4287), - [anon_sym_STAR] = ACTIONS(4287), - [anon_sym_struct] = ACTIONS(4287), - [anon_sym_union] = ACTIONS(4287), - [anon_sym_pub] = ACTIONS(4287), - [anon_sym_mut] = ACTIONS(4287), - [anon_sym_enum] = ACTIONS(4287), - [anon_sym_interface] = ACTIONS(4287), - [anon_sym_QMARK] = ACTIONS(4287), - [anon_sym_BANG] = ACTIONS(4287), - [anon_sym_go] = ACTIONS(4287), - [anon_sym_spawn] = ACTIONS(4287), - [anon_sym_json_DOTdecode] = ACTIONS(4287), - [anon_sym_LBRACK2] = ACTIONS(4287), - [anon_sym_TILDE] = ACTIONS(4287), - [anon_sym_CARET] = ACTIONS(4287), - [anon_sym_AMP] = ACTIONS(4287), - [anon_sym_LT_DASH] = ACTIONS(4287), - [sym_none] = ACTIONS(4287), - [sym_true] = ACTIONS(4287), - [sym_false] = ACTIONS(4287), - [sym_nil] = ACTIONS(4287), - [anon_sym_if] = ACTIONS(4287), - [anon_sym_DOLLARif] = ACTIONS(4287), - [anon_sym_match] = ACTIONS(4287), - [anon_sym_select] = ACTIONS(4287), - [anon_sym_lock] = ACTIONS(4287), - [anon_sym_rlock] = ACTIONS(4287), - [anon_sym_unsafe] = ACTIONS(4287), - [anon_sym_sql] = ACTIONS(4287), - [sym_int_literal] = ACTIONS(4287), - [sym_float_literal] = ACTIONS(4287), - [sym_rune_literal] = ACTIONS(4287), - [sym_pseudo_compile_time_identifier] = ACTIONS(4287), - [anon_sym_shared] = ACTIONS(4287), - [anon_sym_map_LBRACK] = ACTIONS(4287), - [anon_sym_chan] = ACTIONS(4287), - [anon_sym_thread] = ACTIONS(4287), - [anon_sym_atomic] = ACTIONS(4287), - [anon_sym_assert] = ACTIONS(4287), - [anon_sym_defer] = ACTIONS(4287), - [anon_sym_goto] = ACTIONS(4287), - [anon_sym_break] = ACTIONS(4287), - [anon_sym_continue] = ACTIONS(4287), - [anon_sym_return] = ACTIONS(4287), - [anon_sym_DOLLARfor] = ACTIONS(4287), - [anon_sym_for] = ACTIONS(4287), - [anon_sym_POUND] = ACTIONS(4287), - [anon_sym_asm] = ACTIONS(4287), - [anon_sym_AT_LBRACK] = ACTIONS(4287), - [sym___double_quote] = ACTIONS(4287), - [sym___single_quote] = ACTIONS(4287), - [sym___c_double_quote] = ACTIONS(4287), - [sym___c_single_quote] = ACTIONS(4287), - [sym___r_double_quote] = ACTIONS(4287), - [sym___r_single_quote] = ACTIONS(4287), + [anon_sym_DOT] = ACTIONS(4294), + [anon_sym_LBRACE] = ACTIONS(4294), + [anon_sym_const] = ACTIONS(4294), + [anon_sym_LPAREN] = ACTIONS(4294), + [anon_sym___global] = ACTIONS(4294), + [anon_sym_type] = ACTIONS(4294), + [anon_sym_fn] = ACTIONS(4294), + [anon_sym_PLUS] = ACTIONS(4294), + [anon_sym_DASH] = ACTIONS(4294), + [anon_sym_STAR] = ACTIONS(4294), + [anon_sym_struct] = ACTIONS(4294), + [anon_sym_union] = ACTIONS(4294), + [anon_sym_pub] = ACTIONS(4294), + [anon_sym_mut] = ACTIONS(4294), + [anon_sym_enum] = ACTIONS(4294), + [anon_sym_interface] = ACTIONS(4294), + [anon_sym_QMARK] = ACTIONS(4294), + [anon_sym_BANG] = ACTIONS(4294), + [anon_sym_go] = ACTIONS(4294), + [anon_sym_spawn] = ACTIONS(4294), + [anon_sym_json_DOTdecode] = ACTIONS(4294), + [anon_sym_LBRACK2] = ACTIONS(4294), + [anon_sym_TILDE] = ACTIONS(4294), + [anon_sym_CARET] = ACTIONS(4294), + [anon_sym_AMP] = ACTIONS(4294), + [anon_sym_LT_DASH] = ACTIONS(4294), + [sym_none] = ACTIONS(4294), + [sym_true] = ACTIONS(4294), + [sym_false] = ACTIONS(4294), + [sym_nil] = ACTIONS(4294), + [anon_sym_if] = ACTIONS(4294), + [anon_sym_DOLLARif] = ACTIONS(4294), + [anon_sym_match] = ACTIONS(4294), + [anon_sym_select] = ACTIONS(4294), + [anon_sym_lock] = ACTIONS(4294), + [anon_sym_rlock] = ACTIONS(4294), + [anon_sym_unsafe] = ACTIONS(4294), + [anon_sym_sql] = ACTIONS(4294), + [sym_int_literal] = ACTIONS(4294), + [sym_float_literal] = ACTIONS(4294), + [sym_rune_literal] = ACTIONS(4294), + [sym_pseudo_compile_time_identifier] = ACTIONS(4294), + [anon_sym_shared] = ACTIONS(4294), + [anon_sym_map_LBRACK] = ACTIONS(4294), + [anon_sym_chan] = ACTIONS(4294), + [anon_sym_thread] = ACTIONS(4294), + [anon_sym_atomic] = ACTIONS(4294), + [anon_sym_assert] = ACTIONS(4294), + [anon_sym_defer] = ACTIONS(4294), + [anon_sym_goto] = ACTIONS(4294), + [anon_sym_break] = ACTIONS(4294), + [anon_sym_continue] = ACTIONS(4294), + [anon_sym_return] = ACTIONS(4294), + [anon_sym_DOLLARfor] = ACTIONS(4294), + [anon_sym_for] = ACTIONS(4294), + [anon_sym_POUND] = ACTIONS(4294), + [anon_sym_asm] = ACTIONS(4294), + [anon_sym_AT_LBRACK] = ACTIONS(4294), + [sym___double_quote] = ACTIONS(4294), + [sym___single_quote] = ACTIONS(4294), + [sym___c_double_quote] = ACTIONS(4294), + [sym___c_single_quote] = ACTIONS(4294), + [sym___r_double_quote] = ACTIONS(4294), + [sym___r_single_quote] = ACTIONS(4294), }, [1515] = { [sym_line_comment] = STATE(1515), [sym_block_comment] = STATE(1515), - [ts_builtin_sym_end] = ACTIONS(4289), - [sym_identifier] = ACTIONS(4291), - [anon_sym_LF] = ACTIONS(4291), - [anon_sym_CR] = ACTIONS(4291), - [anon_sym_CR_LF] = ACTIONS(4291), + [ts_builtin_sym_end] = ACTIONS(1811), + [sym_identifier] = ACTIONS(1813), + [anon_sym_LF] = ACTIONS(1813), + [anon_sym_CR] = ACTIONS(1813), + [anon_sym_CR_LF] = ACTIONS(1813), [anon_sym_SLASH_SLASH] = ACTIONS(497), [anon_sym_SLASH_STAR] = ACTIONS(499), - [anon_sym_DOT] = ACTIONS(4291), - [anon_sym_LBRACE] = ACTIONS(4291), - [anon_sym_const] = ACTIONS(4291), - [anon_sym_LPAREN] = ACTIONS(4291), - [anon_sym___global] = ACTIONS(4291), - [anon_sym_type] = ACTIONS(4291), - [anon_sym_fn] = ACTIONS(4291), - [anon_sym_PLUS] = ACTIONS(4291), - [anon_sym_DASH] = ACTIONS(4291), - [anon_sym_STAR] = ACTIONS(4291), - [anon_sym_struct] = ACTIONS(4291), - [anon_sym_union] = ACTIONS(4291), - [anon_sym_pub] = ACTIONS(4291), - [anon_sym_mut] = ACTIONS(4291), - [anon_sym_enum] = ACTIONS(4291), - [anon_sym_interface] = ACTIONS(4291), - [anon_sym_QMARK] = ACTIONS(4291), - [anon_sym_BANG] = ACTIONS(4291), - [anon_sym_go] = ACTIONS(4291), - [anon_sym_spawn] = ACTIONS(4291), - [anon_sym_json_DOTdecode] = ACTIONS(4291), - [anon_sym_LBRACK2] = ACTIONS(4291), - [anon_sym_TILDE] = ACTIONS(4291), - [anon_sym_CARET] = ACTIONS(4291), - [anon_sym_AMP] = ACTIONS(4291), - [anon_sym_LT_DASH] = ACTIONS(4291), - [sym_none] = ACTIONS(4291), - [sym_true] = ACTIONS(4291), - [sym_false] = ACTIONS(4291), - [sym_nil] = ACTIONS(4291), - [anon_sym_if] = ACTIONS(4291), - [anon_sym_DOLLARif] = ACTIONS(4291), - [anon_sym_match] = ACTIONS(4291), - [anon_sym_select] = ACTIONS(4291), - [anon_sym_lock] = ACTIONS(4291), - [anon_sym_rlock] = ACTIONS(4291), - [anon_sym_unsafe] = ACTIONS(4291), - [anon_sym_sql] = ACTIONS(4291), - [sym_int_literal] = ACTIONS(4291), - [sym_float_literal] = ACTIONS(4291), - [sym_rune_literal] = ACTIONS(4291), - [sym_pseudo_compile_time_identifier] = ACTIONS(4291), - [anon_sym_shared] = ACTIONS(4291), - [anon_sym_map_LBRACK] = ACTIONS(4291), - [anon_sym_chan] = ACTIONS(4291), - [anon_sym_thread] = ACTIONS(4291), - [anon_sym_atomic] = ACTIONS(4291), - [anon_sym_assert] = ACTIONS(4291), - [anon_sym_defer] = ACTIONS(4291), - [anon_sym_goto] = ACTIONS(4291), - [anon_sym_break] = ACTIONS(4291), - [anon_sym_continue] = ACTIONS(4291), - [anon_sym_return] = ACTIONS(4291), - [anon_sym_DOLLARfor] = ACTIONS(4291), - [anon_sym_for] = ACTIONS(4291), - [anon_sym_POUND] = ACTIONS(4291), - [anon_sym_asm] = ACTIONS(4291), - [anon_sym_AT_LBRACK] = ACTIONS(4291), - [sym___double_quote] = ACTIONS(4291), - [sym___single_quote] = ACTIONS(4291), - [sym___c_double_quote] = ACTIONS(4291), - [sym___c_single_quote] = ACTIONS(4291), - [sym___r_double_quote] = ACTIONS(4291), - [sym___r_single_quote] = ACTIONS(4291), + [anon_sym_DOT] = ACTIONS(1813), + [anon_sym_LBRACE] = ACTIONS(1813), + [anon_sym_const] = ACTIONS(1813), + [anon_sym_LPAREN] = ACTIONS(1813), + [anon_sym___global] = ACTIONS(1813), + [anon_sym_type] = ACTIONS(1813), + [anon_sym_fn] = ACTIONS(1813), + [anon_sym_PLUS] = ACTIONS(1813), + [anon_sym_DASH] = ACTIONS(1813), + [anon_sym_STAR] = ACTIONS(1813), + [anon_sym_struct] = ACTIONS(1813), + [anon_sym_union] = ACTIONS(1813), + [anon_sym_pub] = ACTIONS(1813), + [anon_sym_mut] = ACTIONS(1813), + [anon_sym_enum] = ACTIONS(1813), + [anon_sym_interface] = ACTIONS(1813), + [anon_sym_QMARK] = ACTIONS(1813), + [anon_sym_BANG] = ACTIONS(1813), + [anon_sym_go] = ACTIONS(1813), + [anon_sym_spawn] = ACTIONS(1813), + [anon_sym_json_DOTdecode] = ACTIONS(1813), + [anon_sym_LBRACK2] = ACTIONS(1813), + [anon_sym_TILDE] = ACTIONS(1813), + [anon_sym_CARET] = ACTIONS(1813), + [anon_sym_AMP] = ACTIONS(1813), + [anon_sym_LT_DASH] = ACTIONS(1813), + [sym_none] = ACTIONS(1813), + [sym_true] = ACTIONS(1813), + [sym_false] = ACTIONS(1813), + [sym_nil] = ACTIONS(1813), + [anon_sym_if] = ACTIONS(1813), + [anon_sym_DOLLARif] = ACTIONS(1813), + [anon_sym_match] = ACTIONS(1813), + [anon_sym_select] = ACTIONS(1813), + [anon_sym_lock] = ACTIONS(1813), + [anon_sym_rlock] = ACTIONS(1813), + [anon_sym_unsafe] = ACTIONS(1813), + [anon_sym_sql] = ACTIONS(1813), + [sym_int_literal] = ACTIONS(1813), + [sym_float_literal] = ACTIONS(1813), + [sym_rune_literal] = ACTIONS(1813), + [sym_pseudo_compile_time_identifier] = ACTIONS(1813), + [anon_sym_shared] = ACTIONS(1813), + [anon_sym_map_LBRACK] = ACTIONS(1813), + [anon_sym_chan] = ACTIONS(1813), + [anon_sym_thread] = ACTIONS(1813), + [anon_sym_atomic] = ACTIONS(1813), + [anon_sym_assert] = ACTIONS(1813), + [anon_sym_defer] = ACTIONS(1813), + [anon_sym_goto] = ACTIONS(1813), + [anon_sym_break] = ACTIONS(1813), + [anon_sym_continue] = ACTIONS(1813), + [anon_sym_return] = ACTIONS(1813), + [anon_sym_DOLLARfor] = ACTIONS(1813), + [anon_sym_for] = ACTIONS(1813), + [anon_sym_POUND] = ACTIONS(1813), + [anon_sym_asm] = ACTIONS(1813), + [anon_sym_AT_LBRACK] = ACTIONS(1813), + [sym___double_quote] = ACTIONS(1813), + [sym___single_quote] = ACTIONS(1813), + [sym___c_double_quote] = ACTIONS(1813), + [sym___c_single_quote] = ACTIONS(1813), + [sym___r_double_quote] = ACTIONS(1813), + [sym___r_single_quote] = ACTIONS(1813), }, [1516] = { [sym_line_comment] = STATE(1516), [sym_block_comment] = STATE(1516), - [ts_builtin_sym_end] = ACTIONS(4293), - [sym_identifier] = ACTIONS(4295), - [anon_sym_LF] = ACTIONS(4295), - [anon_sym_CR] = ACTIONS(4295), - [anon_sym_CR_LF] = ACTIONS(4295), + [ts_builtin_sym_end] = ACTIONS(4296), + [sym_identifier] = ACTIONS(4298), + [anon_sym_LF] = ACTIONS(4298), + [anon_sym_CR] = ACTIONS(4298), + [anon_sym_CR_LF] = ACTIONS(4298), [anon_sym_SLASH_SLASH] = ACTIONS(497), [anon_sym_SLASH_STAR] = ACTIONS(499), - [anon_sym_DOT] = ACTIONS(4295), - [anon_sym_LBRACE] = ACTIONS(4295), - [anon_sym_const] = ACTIONS(4295), - [anon_sym_LPAREN] = ACTIONS(4295), - [anon_sym___global] = ACTIONS(4295), - [anon_sym_type] = ACTIONS(4295), - [anon_sym_fn] = ACTIONS(4295), - [anon_sym_PLUS] = ACTIONS(4295), - [anon_sym_DASH] = ACTIONS(4295), - [anon_sym_STAR] = ACTIONS(4295), - [anon_sym_struct] = ACTIONS(4295), - [anon_sym_union] = ACTIONS(4295), - [anon_sym_pub] = ACTIONS(4295), - [anon_sym_mut] = ACTIONS(4295), - [anon_sym_enum] = ACTIONS(4295), - [anon_sym_interface] = ACTIONS(4295), - [anon_sym_QMARK] = ACTIONS(4295), - [anon_sym_BANG] = ACTIONS(4295), - [anon_sym_go] = ACTIONS(4295), - [anon_sym_spawn] = ACTIONS(4295), - [anon_sym_json_DOTdecode] = ACTIONS(4295), - [anon_sym_LBRACK2] = ACTIONS(4295), - [anon_sym_TILDE] = ACTIONS(4295), - [anon_sym_CARET] = ACTIONS(4295), - [anon_sym_AMP] = ACTIONS(4295), - [anon_sym_LT_DASH] = ACTIONS(4295), - [sym_none] = ACTIONS(4295), - [sym_true] = ACTIONS(4295), - [sym_false] = ACTIONS(4295), - [sym_nil] = ACTIONS(4295), - [anon_sym_if] = ACTIONS(4295), - [anon_sym_DOLLARif] = ACTIONS(4295), - [anon_sym_match] = ACTIONS(4295), - [anon_sym_select] = ACTIONS(4295), - [anon_sym_lock] = ACTIONS(4295), - [anon_sym_rlock] = ACTIONS(4295), - [anon_sym_unsafe] = ACTIONS(4295), - [anon_sym_sql] = ACTIONS(4295), - [sym_int_literal] = ACTIONS(4295), - [sym_float_literal] = ACTIONS(4295), - [sym_rune_literal] = ACTIONS(4295), - [sym_pseudo_compile_time_identifier] = ACTIONS(4295), - [anon_sym_shared] = ACTIONS(4295), - [anon_sym_map_LBRACK] = ACTIONS(4295), - [anon_sym_chan] = ACTIONS(4295), - [anon_sym_thread] = ACTIONS(4295), - [anon_sym_atomic] = ACTIONS(4295), - [anon_sym_assert] = ACTIONS(4295), - [anon_sym_defer] = ACTIONS(4295), - [anon_sym_goto] = ACTIONS(4295), - [anon_sym_break] = ACTIONS(4295), - [anon_sym_continue] = ACTIONS(4295), - [anon_sym_return] = ACTIONS(4295), - [anon_sym_DOLLARfor] = ACTIONS(4295), - [anon_sym_for] = ACTIONS(4295), - [anon_sym_POUND] = ACTIONS(4295), - [anon_sym_asm] = ACTIONS(4295), - [anon_sym_AT_LBRACK] = ACTIONS(4295), - [sym___double_quote] = ACTIONS(4295), - [sym___single_quote] = ACTIONS(4295), - [sym___c_double_quote] = ACTIONS(4295), - [sym___c_single_quote] = ACTIONS(4295), - [sym___r_double_quote] = ACTIONS(4295), - [sym___r_single_quote] = ACTIONS(4295), + [anon_sym_DOT] = ACTIONS(4298), + [anon_sym_LBRACE] = ACTIONS(4298), + [anon_sym_const] = ACTIONS(4298), + [anon_sym_LPAREN] = ACTIONS(4298), + [anon_sym___global] = ACTIONS(4298), + [anon_sym_type] = ACTIONS(4298), + [anon_sym_fn] = ACTIONS(4298), + [anon_sym_PLUS] = ACTIONS(4298), + [anon_sym_DASH] = ACTIONS(4298), + [anon_sym_STAR] = ACTIONS(4298), + [anon_sym_struct] = ACTIONS(4298), + [anon_sym_union] = ACTIONS(4298), + [anon_sym_pub] = ACTIONS(4298), + [anon_sym_mut] = ACTIONS(4298), + [anon_sym_enum] = ACTIONS(4298), + [anon_sym_interface] = ACTIONS(4298), + [anon_sym_QMARK] = ACTIONS(4298), + [anon_sym_BANG] = ACTIONS(4298), + [anon_sym_go] = ACTIONS(4298), + [anon_sym_spawn] = ACTIONS(4298), + [anon_sym_json_DOTdecode] = ACTIONS(4298), + [anon_sym_LBRACK2] = ACTIONS(4298), + [anon_sym_TILDE] = ACTIONS(4298), + [anon_sym_CARET] = ACTIONS(4298), + [anon_sym_AMP] = ACTIONS(4298), + [anon_sym_LT_DASH] = ACTIONS(4298), + [sym_none] = ACTIONS(4298), + [sym_true] = ACTIONS(4298), + [sym_false] = ACTIONS(4298), + [sym_nil] = ACTIONS(4298), + [anon_sym_if] = ACTIONS(4298), + [anon_sym_DOLLARif] = ACTIONS(4298), + [anon_sym_match] = ACTIONS(4298), + [anon_sym_select] = ACTIONS(4298), + [anon_sym_lock] = ACTIONS(4298), + [anon_sym_rlock] = ACTIONS(4298), + [anon_sym_unsafe] = ACTIONS(4298), + [anon_sym_sql] = ACTIONS(4298), + [sym_int_literal] = ACTIONS(4298), + [sym_float_literal] = ACTIONS(4298), + [sym_rune_literal] = ACTIONS(4298), + [sym_pseudo_compile_time_identifier] = ACTIONS(4298), + [anon_sym_shared] = ACTIONS(4298), + [anon_sym_map_LBRACK] = ACTIONS(4298), + [anon_sym_chan] = ACTIONS(4298), + [anon_sym_thread] = ACTIONS(4298), + [anon_sym_atomic] = ACTIONS(4298), + [anon_sym_assert] = ACTIONS(4298), + [anon_sym_defer] = ACTIONS(4298), + [anon_sym_goto] = ACTIONS(4298), + [anon_sym_break] = ACTIONS(4298), + [anon_sym_continue] = ACTIONS(4298), + [anon_sym_return] = ACTIONS(4298), + [anon_sym_DOLLARfor] = ACTIONS(4298), + [anon_sym_for] = ACTIONS(4298), + [anon_sym_POUND] = ACTIONS(4298), + [anon_sym_asm] = ACTIONS(4298), + [anon_sym_AT_LBRACK] = ACTIONS(4298), + [sym___double_quote] = ACTIONS(4298), + [sym___single_quote] = ACTIONS(4298), + [sym___c_double_quote] = ACTIONS(4298), + [sym___c_single_quote] = ACTIONS(4298), + [sym___r_double_quote] = ACTIONS(4298), + [sym___r_single_quote] = ACTIONS(4298), }, [1517] = { [sym_line_comment] = STATE(1517), [sym_block_comment] = STATE(1517), - [ts_builtin_sym_end] = ACTIONS(4297), - [sym_identifier] = ACTIONS(4299), - [anon_sym_LF] = ACTIONS(4299), - [anon_sym_CR] = ACTIONS(4299), - [anon_sym_CR_LF] = ACTIONS(4299), - [anon_sym_SLASH_SLASH] = ACTIONS(497), - [anon_sym_SLASH_STAR] = ACTIONS(499), - [anon_sym_DOT] = ACTIONS(4299), - [anon_sym_LBRACE] = ACTIONS(4299), - [anon_sym_const] = ACTIONS(4299), - [anon_sym_LPAREN] = ACTIONS(4299), - [anon_sym___global] = ACTIONS(4299), - [anon_sym_type] = ACTIONS(4299), - [anon_sym_fn] = ACTIONS(4299), - [anon_sym_PLUS] = ACTIONS(4299), - [anon_sym_DASH] = ACTIONS(4299), - [anon_sym_STAR] = ACTIONS(4299), - [anon_sym_struct] = ACTIONS(4299), - [anon_sym_union] = ACTIONS(4299), - [anon_sym_pub] = ACTIONS(4299), - [anon_sym_mut] = ACTIONS(4299), - [anon_sym_enum] = ACTIONS(4299), - [anon_sym_interface] = ACTIONS(4299), - [anon_sym_QMARK] = ACTIONS(4299), - [anon_sym_BANG] = ACTIONS(4299), - [anon_sym_go] = ACTIONS(4299), - [anon_sym_spawn] = ACTIONS(4299), - [anon_sym_json_DOTdecode] = ACTIONS(4299), - [anon_sym_LBRACK2] = ACTIONS(4299), - [anon_sym_TILDE] = ACTIONS(4299), - [anon_sym_CARET] = ACTIONS(4299), - [anon_sym_AMP] = ACTIONS(4299), - [anon_sym_LT_DASH] = ACTIONS(4299), - [sym_none] = ACTIONS(4299), - [sym_true] = ACTIONS(4299), - [sym_false] = ACTIONS(4299), - [sym_nil] = ACTIONS(4299), - [anon_sym_if] = ACTIONS(4299), - [anon_sym_DOLLARif] = ACTIONS(4299), - [anon_sym_match] = ACTIONS(4299), - [anon_sym_select] = ACTIONS(4299), - [anon_sym_lock] = ACTIONS(4299), - [anon_sym_rlock] = ACTIONS(4299), - [anon_sym_unsafe] = ACTIONS(4299), - [anon_sym_sql] = ACTIONS(4299), - [sym_int_literal] = ACTIONS(4299), - [sym_float_literal] = ACTIONS(4299), - [sym_rune_literal] = ACTIONS(4299), - [sym_pseudo_compile_time_identifier] = ACTIONS(4299), - [anon_sym_shared] = ACTIONS(4299), - [anon_sym_map_LBRACK] = ACTIONS(4299), - [anon_sym_chan] = ACTIONS(4299), - [anon_sym_thread] = ACTIONS(4299), - [anon_sym_atomic] = ACTIONS(4299), - [anon_sym_assert] = ACTIONS(4299), - [anon_sym_defer] = ACTIONS(4299), - [anon_sym_goto] = ACTIONS(4299), - [anon_sym_break] = ACTIONS(4299), - [anon_sym_continue] = ACTIONS(4299), - [anon_sym_return] = ACTIONS(4299), - [anon_sym_DOLLARfor] = ACTIONS(4299), - [anon_sym_for] = ACTIONS(4299), - [anon_sym_POUND] = ACTIONS(4299), - [anon_sym_asm] = ACTIONS(4299), - [anon_sym_AT_LBRACK] = ACTIONS(4299), - [sym___double_quote] = ACTIONS(4299), - [sym___single_quote] = ACTIONS(4299), - [sym___c_double_quote] = ACTIONS(4299), - [sym___c_single_quote] = ACTIONS(4299), - [sym___r_double_quote] = ACTIONS(4299), - [sym___r_single_quote] = ACTIONS(4299), + [sym_import_declaration] = STATE(1586), + [aux_sym_import_list_repeat1] = STATE(1517), + [ts_builtin_sym_end] = ACTIONS(4300), + [sym_identifier] = ACTIONS(4302), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_import] = ACTIONS(4304), + [anon_sym_DOT] = ACTIONS(4302), + [anon_sym_LBRACE] = ACTIONS(4300), + [anon_sym_const] = ACTIONS(4302), + [anon_sym_LPAREN] = ACTIONS(4300), + [anon_sym___global] = ACTIONS(4302), + [anon_sym_type] = ACTIONS(4302), + [anon_sym_fn] = ACTIONS(4302), + [anon_sym_PLUS] = ACTIONS(4300), + [anon_sym_DASH] = ACTIONS(4300), + [anon_sym_STAR] = ACTIONS(4300), + [anon_sym_struct] = ACTIONS(4302), + [anon_sym_union] = ACTIONS(4302), + [anon_sym_pub] = ACTIONS(4302), + [anon_sym_mut] = ACTIONS(4302), + [anon_sym_enum] = ACTIONS(4302), + [anon_sym_interface] = ACTIONS(4302), + [anon_sym_QMARK] = ACTIONS(4300), + [anon_sym_BANG] = ACTIONS(4300), + [anon_sym_go] = ACTIONS(4302), + [anon_sym_spawn] = ACTIONS(4302), + [anon_sym_json_DOTdecode] = ACTIONS(4300), + [anon_sym_LBRACK2] = ACTIONS(4300), + [anon_sym_TILDE] = ACTIONS(4300), + [anon_sym_CARET] = ACTIONS(4300), + [anon_sym_AMP] = ACTIONS(4300), + [anon_sym_LT_DASH] = ACTIONS(4300), + [sym_none] = ACTIONS(4302), + [sym_true] = ACTIONS(4302), + [sym_false] = ACTIONS(4302), + [sym_nil] = ACTIONS(4302), + [anon_sym_if] = ACTIONS(4302), + [anon_sym_DOLLARif] = ACTIONS(4302), + [anon_sym_match] = ACTIONS(4302), + [anon_sym_select] = ACTIONS(4302), + [anon_sym_lock] = ACTIONS(4302), + [anon_sym_rlock] = ACTIONS(4302), + [anon_sym_unsafe] = ACTIONS(4302), + [anon_sym_sql] = ACTIONS(4302), + [sym_int_literal] = ACTIONS(4302), + [sym_float_literal] = ACTIONS(4300), + [sym_rune_literal] = ACTIONS(4300), + [sym_pseudo_compile_time_identifier] = ACTIONS(4302), + [anon_sym_shared] = ACTIONS(4302), + [anon_sym_map_LBRACK] = ACTIONS(4300), + [anon_sym_chan] = ACTIONS(4302), + [anon_sym_thread] = ACTIONS(4302), + [anon_sym_atomic] = ACTIONS(4302), + [anon_sym_assert] = ACTIONS(4302), + [anon_sym_defer] = ACTIONS(4302), + [anon_sym_goto] = ACTIONS(4302), + [anon_sym_break] = ACTIONS(4302), + [anon_sym_continue] = ACTIONS(4302), + [anon_sym_return] = ACTIONS(4302), + [anon_sym_DOLLARfor] = ACTIONS(4302), + [anon_sym_for] = ACTIONS(4302), + [anon_sym_POUND] = ACTIONS(4300), + [anon_sym_asm] = ACTIONS(4302), + [anon_sym_AT_LBRACK] = ACTIONS(4300), + [sym___double_quote] = ACTIONS(4300), + [sym___single_quote] = ACTIONS(4300), + [sym___c_double_quote] = ACTIONS(4300), + [sym___c_single_quote] = ACTIONS(4300), + [sym___r_double_quote] = ACTIONS(4300), + [sym___r_single_quote] = ACTIONS(4300), }, [1518] = { [sym_line_comment] = STATE(1518), [sym_block_comment] = STATE(1518), - [ts_builtin_sym_end] = ACTIONS(4301), - [sym_identifier] = ACTIONS(4303), - [anon_sym_LF] = ACTIONS(4303), - [anon_sym_CR] = ACTIONS(4303), - [anon_sym_CR_LF] = ACTIONS(4303), + [ts_builtin_sym_end] = ACTIONS(4307), + [sym_identifier] = ACTIONS(4309), + [anon_sym_LF] = ACTIONS(4309), + [anon_sym_CR] = ACTIONS(4309), + [anon_sym_CR_LF] = ACTIONS(4309), [anon_sym_SLASH_SLASH] = ACTIONS(497), [anon_sym_SLASH_STAR] = ACTIONS(499), - [anon_sym_DOT] = ACTIONS(4303), - [anon_sym_LBRACE] = ACTIONS(4303), - [anon_sym_const] = ACTIONS(4303), - [anon_sym_LPAREN] = ACTIONS(4303), - [anon_sym___global] = ACTIONS(4303), - [anon_sym_type] = ACTIONS(4303), - [anon_sym_fn] = ACTIONS(4303), - [anon_sym_PLUS] = ACTIONS(4303), - [anon_sym_DASH] = ACTIONS(4303), - [anon_sym_STAR] = ACTIONS(4303), - [anon_sym_struct] = ACTIONS(4303), - [anon_sym_union] = ACTIONS(4303), - [anon_sym_pub] = ACTIONS(4303), - [anon_sym_mut] = ACTIONS(4303), - [anon_sym_enum] = ACTIONS(4303), - [anon_sym_interface] = ACTIONS(4303), - [anon_sym_QMARK] = ACTIONS(4303), - [anon_sym_BANG] = ACTIONS(4303), - [anon_sym_go] = ACTIONS(4303), - [anon_sym_spawn] = ACTIONS(4303), - [anon_sym_json_DOTdecode] = ACTIONS(4303), - [anon_sym_LBRACK2] = ACTIONS(4303), - [anon_sym_TILDE] = ACTIONS(4303), - [anon_sym_CARET] = ACTIONS(4303), - [anon_sym_AMP] = ACTIONS(4303), - [anon_sym_LT_DASH] = ACTIONS(4303), - [sym_none] = ACTIONS(4303), - [sym_true] = ACTIONS(4303), - [sym_false] = ACTIONS(4303), - [sym_nil] = ACTIONS(4303), - [anon_sym_if] = ACTIONS(4303), - [anon_sym_DOLLARif] = ACTIONS(4303), - [anon_sym_match] = ACTIONS(4303), - [anon_sym_select] = ACTIONS(4303), - [anon_sym_lock] = ACTIONS(4303), - [anon_sym_rlock] = ACTIONS(4303), - [anon_sym_unsafe] = ACTIONS(4303), - [anon_sym_sql] = ACTIONS(4303), - [sym_int_literal] = ACTIONS(4303), - [sym_float_literal] = ACTIONS(4303), - [sym_rune_literal] = ACTIONS(4303), - [sym_pseudo_compile_time_identifier] = ACTIONS(4303), - [anon_sym_shared] = ACTIONS(4303), - [anon_sym_map_LBRACK] = ACTIONS(4303), - [anon_sym_chan] = ACTIONS(4303), - [anon_sym_thread] = ACTIONS(4303), - [anon_sym_atomic] = ACTIONS(4303), - [anon_sym_assert] = ACTIONS(4303), - [anon_sym_defer] = ACTIONS(4303), - [anon_sym_goto] = ACTIONS(4303), - [anon_sym_break] = ACTIONS(4303), - [anon_sym_continue] = ACTIONS(4303), - [anon_sym_return] = ACTIONS(4303), - [anon_sym_DOLLARfor] = ACTIONS(4303), - [anon_sym_for] = ACTIONS(4303), - [anon_sym_POUND] = ACTIONS(4303), - [anon_sym_asm] = ACTIONS(4303), - [anon_sym_AT_LBRACK] = ACTIONS(4303), - [sym___double_quote] = ACTIONS(4303), - [sym___single_quote] = ACTIONS(4303), - [sym___c_double_quote] = ACTIONS(4303), - [sym___c_single_quote] = ACTIONS(4303), - [sym___r_double_quote] = ACTIONS(4303), - [sym___r_single_quote] = ACTIONS(4303), + [anon_sym_DOT] = ACTIONS(4309), + [anon_sym_LBRACE] = ACTIONS(4309), + [anon_sym_const] = ACTIONS(4309), + [anon_sym_LPAREN] = ACTIONS(4309), + [anon_sym___global] = ACTIONS(4309), + [anon_sym_type] = ACTIONS(4309), + [anon_sym_fn] = ACTIONS(4309), + [anon_sym_PLUS] = ACTIONS(4309), + [anon_sym_DASH] = ACTIONS(4309), + [anon_sym_STAR] = ACTIONS(4309), + [anon_sym_struct] = ACTIONS(4309), + [anon_sym_union] = ACTIONS(4309), + [anon_sym_pub] = ACTIONS(4309), + [anon_sym_mut] = ACTIONS(4309), + [anon_sym_enum] = ACTIONS(4309), + [anon_sym_interface] = ACTIONS(4309), + [anon_sym_QMARK] = ACTIONS(4309), + [anon_sym_BANG] = ACTIONS(4309), + [anon_sym_go] = ACTIONS(4309), + [anon_sym_spawn] = ACTIONS(4309), + [anon_sym_json_DOTdecode] = ACTIONS(4309), + [anon_sym_LBRACK2] = ACTIONS(4309), + [anon_sym_TILDE] = ACTIONS(4309), + [anon_sym_CARET] = ACTIONS(4309), + [anon_sym_AMP] = ACTIONS(4309), + [anon_sym_LT_DASH] = ACTIONS(4309), + [sym_none] = ACTIONS(4309), + [sym_true] = ACTIONS(4309), + [sym_false] = ACTIONS(4309), + [sym_nil] = ACTIONS(4309), + [anon_sym_if] = ACTIONS(4309), + [anon_sym_DOLLARif] = ACTIONS(4309), + [anon_sym_match] = ACTIONS(4309), + [anon_sym_select] = ACTIONS(4309), + [anon_sym_lock] = ACTIONS(4309), + [anon_sym_rlock] = ACTIONS(4309), + [anon_sym_unsafe] = ACTIONS(4309), + [anon_sym_sql] = ACTIONS(4309), + [sym_int_literal] = ACTIONS(4309), + [sym_float_literal] = ACTIONS(4309), + [sym_rune_literal] = ACTIONS(4309), + [sym_pseudo_compile_time_identifier] = ACTIONS(4309), + [anon_sym_shared] = ACTIONS(4309), + [anon_sym_map_LBRACK] = ACTIONS(4309), + [anon_sym_chan] = ACTIONS(4309), + [anon_sym_thread] = ACTIONS(4309), + [anon_sym_atomic] = ACTIONS(4309), + [anon_sym_assert] = ACTIONS(4309), + [anon_sym_defer] = ACTIONS(4309), + [anon_sym_goto] = ACTIONS(4309), + [anon_sym_break] = ACTIONS(4309), + [anon_sym_continue] = ACTIONS(4309), + [anon_sym_return] = ACTIONS(4309), + [anon_sym_DOLLARfor] = ACTIONS(4309), + [anon_sym_for] = ACTIONS(4309), + [anon_sym_POUND] = ACTIONS(4309), + [anon_sym_asm] = ACTIONS(4309), + [anon_sym_AT_LBRACK] = ACTIONS(4309), + [sym___double_quote] = ACTIONS(4309), + [sym___single_quote] = ACTIONS(4309), + [sym___c_double_quote] = ACTIONS(4309), + [sym___c_single_quote] = ACTIONS(4309), + [sym___r_double_quote] = ACTIONS(4309), + [sym___r_single_quote] = ACTIONS(4309), }, [1519] = { [sym_line_comment] = STATE(1519), [sym_block_comment] = STATE(1519), - [ts_builtin_sym_end] = ACTIONS(4305), - [sym_identifier] = ACTIONS(4307), - [anon_sym_LF] = ACTIONS(4307), - [anon_sym_CR] = ACTIONS(4307), - [anon_sym_CR_LF] = ACTIONS(4307), + [ts_builtin_sym_end] = ACTIONS(4311), + [sym_identifier] = ACTIONS(4313), + [anon_sym_LF] = ACTIONS(4313), + [anon_sym_CR] = ACTIONS(4313), + [anon_sym_CR_LF] = ACTIONS(4313), [anon_sym_SLASH_SLASH] = ACTIONS(497), [anon_sym_SLASH_STAR] = ACTIONS(499), - [anon_sym_DOT] = ACTIONS(4307), - [anon_sym_LBRACE] = ACTIONS(4307), - [anon_sym_const] = ACTIONS(4307), - [anon_sym_LPAREN] = ACTIONS(4307), - [anon_sym___global] = ACTIONS(4307), - [anon_sym_type] = ACTIONS(4307), - [anon_sym_fn] = ACTIONS(4307), - [anon_sym_PLUS] = ACTIONS(4307), - [anon_sym_DASH] = ACTIONS(4307), - [anon_sym_STAR] = ACTIONS(4307), - [anon_sym_struct] = ACTIONS(4307), - [anon_sym_union] = ACTIONS(4307), - [anon_sym_pub] = ACTIONS(4307), - [anon_sym_mut] = ACTIONS(4307), - [anon_sym_enum] = ACTIONS(4307), - [anon_sym_interface] = ACTIONS(4307), - [anon_sym_QMARK] = ACTIONS(4307), - [anon_sym_BANG] = ACTIONS(4307), - [anon_sym_go] = ACTIONS(4307), - [anon_sym_spawn] = ACTIONS(4307), - [anon_sym_json_DOTdecode] = ACTIONS(4307), - [anon_sym_LBRACK2] = ACTIONS(4307), - [anon_sym_TILDE] = ACTIONS(4307), - [anon_sym_CARET] = ACTIONS(4307), - [anon_sym_AMP] = ACTIONS(4307), - [anon_sym_LT_DASH] = ACTIONS(4307), - [sym_none] = ACTIONS(4307), - [sym_true] = ACTIONS(4307), - [sym_false] = ACTIONS(4307), - [sym_nil] = ACTIONS(4307), - [anon_sym_if] = ACTIONS(4307), - [anon_sym_DOLLARif] = ACTIONS(4307), - [anon_sym_match] = ACTIONS(4307), - [anon_sym_select] = ACTIONS(4307), - [anon_sym_lock] = ACTIONS(4307), - [anon_sym_rlock] = ACTIONS(4307), - [anon_sym_unsafe] = ACTIONS(4307), - [anon_sym_sql] = ACTIONS(4307), - [sym_int_literal] = ACTIONS(4307), - [sym_float_literal] = ACTIONS(4307), - [sym_rune_literal] = ACTIONS(4307), - [sym_pseudo_compile_time_identifier] = ACTIONS(4307), - [anon_sym_shared] = ACTIONS(4307), - [anon_sym_map_LBRACK] = ACTIONS(4307), - [anon_sym_chan] = ACTIONS(4307), - [anon_sym_thread] = ACTIONS(4307), - [anon_sym_atomic] = ACTIONS(4307), - [anon_sym_assert] = ACTIONS(4307), - [anon_sym_defer] = ACTIONS(4307), - [anon_sym_goto] = ACTIONS(4307), - [anon_sym_break] = ACTIONS(4307), - [anon_sym_continue] = ACTIONS(4307), - [anon_sym_return] = ACTIONS(4307), - [anon_sym_DOLLARfor] = ACTIONS(4307), - [anon_sym_for] = ACTIONS(4307), - [anon_sym_POUND] = ACTIONS(4307), - [anon_sym_asm] = ACTIONS(4307), - [anon_sym_AT_LBRACK] = ACTIONS(4307), - [sym___double_quote] = ACTIONS(4307), - [sym___single_quote] = ACTIONS(4307), - [sym___c_double_quote] = ACTIONS(4307), - [sym___c_single_quote] = ACTIONS(4307), - [sym___r_double_quote] = ACTIONS(4307), - [sym___r_single_quote] = ACTIONS(4307), + [anon_sym_DOT] = ACTIONS(4313), + [anon_sym_LBRACE] = ACTIONS(4313), + [anon_sym_const] = ACTIONS(4313), + [anon_sym_LPAREN] = ACTIONS(4313), + [anon_sym___global] = ACTIONS(4313), + [anon_sym_type] = ACTIONS(4313), + [anon_sym_fn] = ACTIONS(4313), + [anon_sym_PLUS] = ACTIONS(4313), + [anon_sym_DASH] = ACTIONS(4313), + [anon_sym_STAR] = ACTIONS(4313), + [anon_sym_struct] = ACTIONS(4313), + [anon_sym_union] = ACTIONS(4313), + [anon_sym_pub] = ACTIONS(4313), + [anon_sym_mut] = ACTIONS(4313), + [anon_sym_enum] = ACTIONS(4313), + [anon_sym_interface] = ACTIONS(4313), + [anon_sym_QMARK] = ACTIONS(4313), + [anon_sym_BANG] = ACTIONS(4313), + [anon_sym_go] = ACTIONS(4313), + [anon_sym_spawn] = ACTIONS(4313), + [anon_sym_json_DOTdecode] = ACTIONS(4313), + [anon_sym_LBRACK2] = ACTIONS(4313), + [anon_sym_TILDE] = ACTIONS(4313), + [anon_sym_CARET] = ACTIONS(4313), + [anon_sym_AMP] = ACTIONS(4313), + [anon_sym_LT_DASH] = ACTIONS(4313), + [sym_none] = ACTIONS(4313), + [sym_true] = ACTIONS(4313), + [sym_false] = ACTIONS(4313), + [sym_nil] = ACTIONS(4313), + [anon_sym_if] = ACTIONS(4313), + [anon_sym_DOLLARif] = ACTIONS(4313), + [anon_sym_match] = ACTIONS(4313), + [anon_sym_select] = ACTIONS(4313), + [anon_sym_lock] = ACTIONS(4313), + [anon_sym_rlock] = ACTIONS(4313), + [anon_sym_unsafe] = ACTIONS(4313), + [anon_sym_sql] = ACTIONS(4313), + [sym_int_literal] = ACTIONS(4313), + [sym_float_literal] = ACTIONS(4313), + [sym_rune_literal] = ACTIONS(4313), + [sym_pseudo_compile_time_identifier] = ACTIONS(4313), + [anon_sym_shared] = ACTIONS(4313), + [anon_sym_map_LBRACK] = ACTIONS(4313), + [anon_sym_chan] = ACTIONS(4313), + [anon_sym_thread] = ACTIONS(4313), + [anon_sym_atomic] = ACTIONS(4313), + [anon_sym_assert] = ACTIONS(4313), + [anon_sym_defer] = ACTIONS(4313), + [anon_sym_goto] = ACTIONS(4313), + [anon_sym_break] = ACTIONS(4313), + [anon_sym_continue] = ACTIONS(4313), + [anon_sym_return] = ACTIONS(4313), + [anon_sym_DOLLARfor] = ACTIONS(4313), + [anon_sym_for] = ACTIONS(4313), + [anon_sym_POUND] = ACTIONS(4313), + [anon_sym_asm] = ACTIONS(4313), + [anon_sym_AT_LBRACK] = ACTIONS(4313), + [sym___double_quote] = ACTIONS(4313), + [sym___single_quote] = ACTIONS(4313), + [sym___c_double_quote] = ACTIONS(4313), + [sym___c_single_quote] = ACTIONS(4313), + [sym___r_double_quote] = ACTIONS(4313), + [sym___r_single_quote] = ACTIONS(4313), }, [1520] = { [sym_line_comment] = STATE(1520), [sym_block_comment] = STATE(1520), - [ts_builtin_sym_end] = ACTIONS(4309), - [sym_identifier] = ACTIONS(4311), - [anon_sym_LF] = ACTIONS(4311), - [anon_sym_CR] = ACTIONS(4311), - [anon_sym_CR_LF] = ACTIONS(4311), + [ts_builtin_sym_end] = ACTIONS(4315), + [sym_identifier] = ACTIONS(4317), + [anon_sym_LF] = ACTIONS(4317), + [anon_sym_CR] = ACTIONS(4317), + [anon_sym_CR_LF] = ACTIONS(4317), [anon_sym_SLASH_SLASH] = ACTIONS(497), [anon_sym_SLASH_STAR] = ACTIONS(499), - [anon_sym_DOT] = ACTIONS(4311), - [anon_sym_LBRACE] = ACTIONS(4311), - [anon_sym_const] = ACTIONS(4311), - [anon_sym_LPAREN] = ACTIONS(4311), - [anon_sym___global] = ACTIONS(4311), - [anon_sym_type] = ACTIONS(4311), - [anon_sym_fn] = ACTIONS(4311), - [anon_sym_PLUS] = ACTIONS(4311), - [anon_sym_DASH] = ACTIONS(4311), - [anon_sym_STAR] = ACTIONS(4311), - [anon_sym_struct] = ACTIONS(4311), - [anon_sym_union] = ACTIONS(4311), - [anon_sym_pub] = ACTIONS(4311), - [anon_sym_mut] = ACTIONS(4311), - [anon_sym_enum] = ACTIONS(4311), - [anon_sym_interface] = ACTIONS(4311), - [anon_sym_QMARK] = ACTIONS(4311), - [anon_sym_BANG] = ACTIONS(4311), - [anon_sym_go] = ACTIONS(4311), - [anon_sym_spawn] = ACTIONS(4311), - [anon_sym_json_DOTdecode] = ACTIONS(4311), - [anon_sym_LBRACK2] = ACTIONS(4311), - [anon_sym_TILDE] = ACTIONS(4311), - [anon_sym_CARET] = ACTIONS(4311), - [anon_sym_AMP] = ACTIONS(4311), - [anon_sym_LT_DASH] = ACTIONS(4311), - [sym_none] = ACTIONS(4311), - [sym_true] = ACTIONS(4311), - [sym_false] = ACTIONS(4311), - [sym_nil] = ACTIONS(4311), - [anon_sym_if] = ACTIONS(4311), - [anon_sym_DOLLARif] = ACTIONS(4311), - [anon_sym_match] = ACTIONS(4311), - [anon_sym_select] = ACTIONS(4311), - [anon_sym_lock] = ACTIONS(4311), - [anon_sym_rlock] = ACTIONS(4311), - [anon_sym_unsafe] = ACTIONS(4311), - [anon_sym_sql] = ACTIONS(4311), - [sym_int_literal] = ACTIONS(4311), - [sym_float_literal] = ACTIONS(4311), - [sym_rune_literal] = ACTIONS(4311), - [sym_pseudo_compile_time_identifier] = ACTIONS(4311), - [anon_sym_shared] = ACTIONS(4311), - [anon_sym_map_LBRACK] = ACTIONS(4311), - [anon_sym_chan] = ACTIONS(4311), - [anon_sym_thread] = ACTIONS(4311), - [anon_sym_atomic] = ACTIONS(4311), - [anon_sym_assert] = ACTIONS(4311), - [anon_sym_defer] = ACTIONS(4311), - [anon_sym_goto] = ACTIONS(4311), - [anon_sym_break] = ACTIONS(4311), - [anon_sym_continue] = ACTIONS(4311), - [anon_sym_return] = ACTIONS(4311), - [anon_sym_DOLLARfor] = ACTIONS(4311), - [anon_sym_for] = ACTIONS(4311), - [anon_sym_POUND] = ACTIONS(4311), - [anon_sym_asm] = ACTIONS(4311), - [anon_sym_AT_LBRACK] = ACTIONS(4311), - [sym___double_quote] = ACTIONS(4311), - [sym___single_quote] = ACTIONS(4311), - [sym___c_double_quote] = ACTIONS(4311), - [sym___c_single_quote] = ACTIONS(4311), - [sym___r_double_quote] = ACTIONS(4311), - [sym___r_single_quote] = ACTIONS(4311), + [anon_sym_DOT] = ACTIONS(4317), + [anon_sym_LBRACE] = ACTIONS(4317), + [anon_sym_const] = ACTIONS(4317), + [anon_sym_LPAREN] = ACTIONS(4317), + [anon_sym___global] = ACTIONS(4317), + [anon_sym_type] = ACTIONS(4317), + [anon_sym_fn] = ACTIONS(4317), + [anon_sym_PLUS] = ACTIONS(4317), + [anon_sym_DASH] = ACTIONS(4317), + [anon_sym_STAR] = ACTIONS(4317), + [anon_sym_struct] = ACTIONS(4317), + [anon_sym_union] = ACTIONS(4317), + [anon_sym_pub] = ACTIONS(4317), + [anon_sym_mut] = ACTIONS(4317), + [anon_sym_enum] = ACTIONS(4317), + [anon_sym_interface] = ACTIONS(4317), + [anon_sym_QMARK] = ACTIONS(4317), + [anon_sym_BANG] = ACTIONS(4317), + [anon_sym_go] = ACTIONS(4317), + [anon_sym_spawn] = ACTIONS(4317), + [anon_sym_json_DOTdecode] = ACTIONS(4317), + [anon_sym_LBRACK2] = ACTIONS(4317), + [anon_sym_TILDE] = ACTIONS(4317), + [anon_sym_CARET] = ACTIONS(4317), + [anon_sym_AMP] = ACTIONS(4317), + [anon_sym_LT_DASH] = ACTIONS(4317), + [sym_none] = ACTIONS(4317), + [sym_true] = ACTIONS(4317), + [sym_false] = ACTIONS(4317), + [sym_nil] = ACTIONS(4317), + [anon_sym_if] = ACTIONS(4317), + [anon_sym_DOLLARif] = ACTIONS(4317), + [anon_sym_match] = ACTIONS(4317), + [anon_sym_select] = ACTIONS(4317), + [anon_sym_lock] = ACTIONS(4317), + [anon_sym_rlock] = ACTIONS(4317), + [anon_sym_unsafe] = ACTIONS(4317), + [anon_sym_sql] = ACTIONS(4317), + [sym_int_literal] = ACTIONS(4317), + [sym_float_literal] = ACTIONS(4317), + [sym_rune_literal] = ACTIONS(4317), + [sym_pseudo_compile_time_identifier] = ACTIONS(4317), + [anon_sym_shared] = ACTIONS(4317), + [anon_sym_map_LBRACK] = ACTIONS(4317), + [anon_sym_chan] = ACTIONS(4317), + [anon_sym_thread] = ACTIONS(4317), + [anon_sym_atomic] = ACTIONS(4317), + [anon_sym_assert] = ACTIONS(4317), + [anon_sym_defer] = ACTIONS(4317), + [anon_sym_goto] = ACTIONS(4317), + [anon_sym_break] = ACTIONS(4317), + [anon_sym_continue] = ACTIONS(4317), + [anon_sym_return] = ACTIONS(4317), + [anon_sym_DOLLARfor] = ACTIONS(4317), + [anon_sym_for] = ACTIONS(4317), + [anon_sym_POUND] = ACTIONS(4317), + [anon_sym_asm] = ACTIONS(4317), + [anon_sym_AT_LBRACK] = ACTIONS(4317), + [sym___double_quote] = ACTIONS(4317), + [sym___single_quote] = ACTIONS(4317), + [sym___c_double_quote] = ACTIONS(4317), + [sym___c_single_quote] = ACTIONS(4317), + [sym___r_double_quote] = ACTIONS(4317), + [sym___r_single_quote] = ACTIONS(4317), }, [1521] = { [sym_line_comment] = STATE(1521), [sym_block_comment] = STATE(1521), - [ts_builtin_sym_end] = ACTIONS(4313), - [sym_identifier] = ACTIONS(4315), - [anon_sym_LF] = ACTIONS(4315), - [anon_sym_CR] = ACTIONS(4315), - [anon_sym_CR_LF] = ACTIONS(4315), + [ts_builtin_sym_end] = ACTIONS(4319), + [sym_identifier] = ACTIONS(4321), + [anon_sym_LF] = ACTIONS(4321), + [anon_sym_CR] = ACTIONS(4321), + [anon_sym_CR_LF] = ACTIONS(4321), [anon_sym_SLASH_SLASH] = ACTIONS(497), [anon_sym_SLASH_STAR] = ACTIONS(499), - [anon_sym_DOT] = ACTIONS(4315), - [anon_sym_LBRACE] = ACTIONS(4315), - [anon_sym_const] = ACTIONS(4315), - [anon_sym_LPAREN] = ACTIONS(4315), - [anon_sym___global] = ACTIONS(4315), - [anon_sym_type] = ACTIONS(4315), - [anon_sym_fn] = ACTIONS(4315), - [anon_sym_PLUS] = ACTIONS(4315), - [anon_sym_DASH] = ACTIONS(4315), - [anon_sym_STAR] = ACTIONS(4315), - [anon_sym_struct] = ACTIONS(4315), - [anon_sym_union] = ACTIONS(4315), - [anon_sym_pub] = ACTIONS(4315), - [anon_sym_mut] = ACTIONS(4315), - [anon_sym_enum] = ACTIONS(4315), - [anon_sym_interface] = ACTIONS(4315), - [anon_sym_QMARK] = ACTIONS(4315), - [anon_sym_BANG] = ACTIONS(4315), - [anon_sym_go] = ACTIONS(4315), - [anon_sym_spawn] = ACTIONS(4315), - [anon_sym_json_DOTdecode] = ACTIONS(4315), - [anon_sym_LBRACK2] = ACTIONS(4315), - [anon_sym_TILDE] = ACTIONS(4315), - [anon_sym_CARET] = ACTIONS(4315), - [anon_sym_AMP] = ACTIONS(4315), - [anon_sym_LT_DASH] = ACTIONS(4315), - [sym_none] = ACTIONS(4315), - [sym_true] = ACTIONS(4315), - [sym_false] = ACTIONS(4315), - [sym_nil] = ACTIONS(4315), - [anon_sym_if] = ACTIONS(4315), - [anon_sym_DOLLARif] = ACTIONS(4315), - [anon_sym_match] = ACTIONS(4315), - [anon_sym_select] = ACTIONS(4315), - [anon_sym_lock] = ACTIONS(4315), - [anon_sym_rlock] = ACTIONS(4315), - [anon_sym_unsafe] = ACTIONS(4315), - [anon_sym_sql] = ACTIONS(4315), - [sym_int_literal] = ACTIONS(4315), - [sym_float_literal] = ACTIONS(4315), - [sym_rune_literal] = ACTIONS(4315), - [sym_pseudo_compile_time_identifier] = ACTIONS(4315), - [anon_sym_shared] = ACTIONS(4315), - [anon_sym_map_LBRACK] = ACTIONS(4315), - [anon_sym_chan] = ACTIONS(4315), - [anon_sym_thread] = ACTIONS(4315), - [anon_sym_atomic] = ACTIONS(4315), - [anon_sym_assert] = ACTIONS(4315), - [anon_sym_defer] = ACTIONS(4315), - [anon_sym_goto] = ACTIONS(4315), - [anon_sym_break] = ACTIONS(4315), - [anon_sym_continue] = ACTIONS(4315), - [anon_sym_return] = ACTIONS(4315), - [anon_sym_DOLLARfor] = ACTIONS(4315), - [anon_sym_for] = ACTIONS(4315), - [anon_sym_POUND] = ACTIONS(4315), - [anon_sym_asm] = ACTIONS(4315), - [anon_sym_AT_LBRACK] = ACTIONS(4315), - [sym___double_quote] = ACTIONS(4315), - [sym___single_quote] = ACTIONS(4315), - [sym___c_double_quote] = ACTIONS(4315), - [sym___c_single_quote] = ACTIONS(4315), - [sym___r_double_quote] = ACTIONS(4315), - [sym___r_single_quote] = ACTIONS(4315), + [anon_sym_DOT] = ACTIONS(4321), + [anon_sym_LBRACE] = ACTIONS(4321), + [anon_sym_const] = ACTIONS(4321), + [anon_sym_LPAREN] = ACTIONS(4321), + [anon_sym___global] = ACTIONS(4321), + [anon_sym_type] = ACTIONS(4321), + [anon_sym_fn] = ACTIONS(4321), + [anon_sym_PLUS] = ACTIONS(4321), + [anon_sym_DASH] = ACTIONS(4321), + [anon_sym_STAR] = ACTIONS(4321), + [anon_sym_struct] = ACTIONS(4321), + [anon_sym_union] = ACTIONS(4321), + [anon_sym_pub] = ACTIONS(4321), + [anon_sym_mut] = ACTIONS(4321), + [anon_sym_enum] = ACTIONS(4321), + [anon_sym_interface] = ACTIONS(4321), + [anon_sym_QMARK] = ACTIONS(4321), + [anon_sym_BANG] = ACTIONS(4321), + [anon_sym_go] = ACTIONS(4321), + [anon_sym_spawn] = ACTIONS(4321), + [anon_sym_json_DOTdecode] = ACTIONS(4321), + [anon_sym_LBRACK2] = ACTIONS(4321), + [anon_sym_TILDE] = ACTIONS(4321), + [anon_sym_CARET] = ACTIONS(4321), + [anon_sym_AMP] = ACTIONS(4321), + [anon_sym_LT_DASH] = ACTIONS(4321), + [sym_none] = ACTIONS(4321), + [sym_true] = ACTIONS(4321), + [sym_false] = ACTIONS(4321), + [sym_nil] = ACTIONS(4321), + [anon_sym_if] = ACTIONS(4321), + [anon_sym_DOLLARif] = ACTIONS(4321), + [anon_sym_match] = ACTIONS(4321), + [anon_sym_select] = ACTIONS(4321), + [anon_sym_lock] = ACTIONS(4321), + [anon_sym_rlock] = ACTIONS(4321), + [anon_sym_unsafe] = ACTIONS(4321), + [anon_sym_sql] = ACTIONS(4321), + [sym_int_literal] = ACTIONS(4321), + [sym_float_literal] = ACTIONS(4321), + [sym_rune_literal] = ACTIONS(4321), + [sym_pseudo_compile_time_identifier] = ACTIONS(4321), + [anon_sym_shared] = ACTIONS(4321), + [anon_sym_map_LBRACK] = ACTIONS(4321), + [anon_sym_chan] = ACTIONS(4321), + [anon_sym_thread] = ACTIONS(4321), + [anon_sym_atomic] = ACTIONS(4321), + [anon_sym_assert] = ACTIONS(4321), + [anon_sym_defer] = ACTIONS(4321), + [anon_sym_goto] = ACTIONS(4321), + [anon_sym_break] = ACTIONS(4321), + [anon_sym_continue] = ACTIONS(4321), + [anon_sym_return] = ACTIONS(4321), + [anon_sym_DOLLARfor] = ACTIONS(4321), + [anon_sym_for] = ACTIONS(4321), + [anon_sym_POUND] = ACTIONS(4321), + [anon_sym_asm] = ACTIONS(4321), + [anon_sym_AT_LBRACK] = ACTIONS(4321), + [sym___double_quote] = ACTIONS(4321), + [sym___single_quote] = ACTIONS(4321), + [sym___c_double_quote] = ACTIONS(4321), + [sym___c_single_quote] = ACTIONS(4321), + [sym___r_double_quote] = ACTIONS(4321), + [sym___r_single_quote] = ACTIONS(4321), }, [1522] = { [sym_line_comment] = STATE(1522), [sym_block_comment] = STATE(1522), - [ts_builtin_sym_end] = ACTIONS(4317), - [sym_identifier] = ACTIONS(4319), - [anon_sym_LF] = ACTIONS(4319), - [anon_sym_CR] = ACTIONS(4319), - [anon_sym_CR_LF] = ACTIONS(4319), + [ts_builtin_sym_end] = ACTIONS(4323), + [sym_identifier] = ACTIONS(4325), + [anon_sym_LF] = ACTIONS(4325), + [anon_sym_CR] = ACTIONS(4325), + [anon_sym_CR_LF] = ACTIONS(4325), [anon_sym_SLASH_SLASH] = ACTIONS(497), [anon_sym_SLASH_STAR] = ACTIONS(499), - [anon_sym_DOT] = ACTIONS(4319), - [anon_sym_LBRACE] = ACTIONS(4319), - [anon_sym_const] = ACTIONS(4319), - [anon_sym_LPAREN] = ACTIONS(4319), - [anon_sym___global] = ACTIONS(4319), - [anon_sym_type] = ACTIONS(4319), - [anon_sym_fn] = ACTIONS(4319), - [anon_sym_PLUS] = ACTIONS(4319), - [anon_sym_DASH] = ACTIONS(4319), - [anon_sym_STAR] = ACTIONS(4319), - [anon_sym_struct] = ACTIONS(4319), - [anon_sym_union] = ACTIONS(4319), - [anon_sym_pub] = ACTIONS(4319), - [anon_sym_mut] = ACTIONS(4319), - [anon_sym_enum] = ACTIONS(4319), - [anon_sym_interface] = ACTIONS(4319), - [anon_sym_QMARK] = ACTIONS(4319), - [anon_sym_BANG] = ACTIONS(4319), - [anon_sym_go] = ACTIONS(4319), - [anon_sym_spawn] = ACTIONS(4319), - [anon_sym_json_DOTdecode] = ACTIONS(4319), - [anon_sym_LBRACK2] = ACTIONS(4319), - [anon_sym_TILDE] = ACTIONS(4319), - [anon_sym_CARET] = ACTIONS(4319), - [anon_sym_AMP] = ACTIONS(4319), - [anon_sym_LT_DASH] = ACTIONS(4319), - [sym_none] = ACTIONS(4319), - [sym_true] = ACTIONS(4319), - [sym_false] = ACTIONS(4319), - [sym_nil] = ACTIONS(4319), - [anon_sym_if] = ACTIONS(4319), - [anon_sym_DOLLARif] = ACTIONS(4319), - [anon_sym_match] = ACTIONS(4319), - [anon_sym_select] = ACTIONS(4319), - [anon_sym_lock] = ACTIONS(4319), - [anon_sym_rlock] = ACTIONS(4319), - [anon_sym_unsafe] = ACTIONS(4319), - [anon_sym_sql] = ACTIONS(4319), - [sym_int_literal] = ACTIONS(4319), - [sym_float_literal] = ACTIONS(4319), - [sym_rune_literal] = ACTIONS(4319), - [sym_pseudo_compile_time_identifier] = ACTIONS(4319), - [anon_sym_shared] = ACTIONS(4319), - [anon_sym_map_LBRACK] = ACTIONS(4319), - [anon_sym_chan] = ACTIONS(4319), - [anon_sym_thread] = ACTIONS(4319), - [anon_sym_atomic] = ACTIONS(4319), - [anon_sym_assert] = ACTIONS(4319), - [anon_sym_defer] = ACTIONS(4319), - [anon_sym_goto] = ACTIONS(4319), - [anon_sym_break] = ACTIONS(4319), - [anon_sym_continue] = ACTIONS(4319), - [anon_sym_return] = ACTIONS(4319), - [anon_sym_DOLLARfor] = ACTIONS(4319), - [anon_sym_for] = ACTIONS(4319), - [anon_sym_POUND] = ACTIONS(4319), - [anon_sym_asm] = ACTIONS(4319), - [anon_sym_AT_LBRACK] = ACTIONS(4319), - [sym___double_quote] = ACTIONS(4319), - [sym___single_quote] = ACTIONS(4319), - [sym___c_double_quote] = ACTIONS(4319), - [sym___c_single_quote] = ACTIONS(4319), - [sym___r_double_quote] = ACTIONS(4319), - [sym___r_single_quote] = ACTIONS(4319), + [anon_sym_DOT] = ACTIONS(4325), + [anon_sym_LBRACE] = ACTIONS(4325), + [anon_sym_const] = ACTIONS(4325), + [anon_sym_LPAREN] = ACTIONS(4325), + [anon_sym___global] = ACTIONS(4325), + [anon_sym_type] = ACTIONS(4325), + [anon_sym_fn] = ACTIONS(4325), + [anon_sym_PLUS] = ACTIONS(4325), + [anon_sym_DASH] = ACTIONS(4325), + [anon_sym_STAR] = ACTIONS(4325), + [anon_sym_struct] = ACTIONS(4325), + [anon_sym_union] = ACTIONS(4325), + [anon_sym_pub] = ACTIONS(4325), + [anon_sym_mut] = ACTIONS(4325), + [anon_sym_enum] = ACTIONS(4325), + [anon_sym_interface] = ACTIONS(4325), + [anon_sym_QMARK] = ACTIONS(4325), + [anon_sym_BANG] = ACTIONS(4325), + [anon_sym_go] = ACTIONS(4325), + [anon_sym_spawn] = ACTIONS(4325), + [anon_sym_json_DOTdecode] = ACTIONS(4325), + [anon_sym_LBRACK2] = ACTIONS(4325), + [anon_sym_TILDE] = ACTIONS(4325), + [anon_sym_CARET] = ACTIONS(4325), + [anon_sym_AMP] = ACTIONS(4325), + [anon_sym_LT_DASH] = ACTIONS(4325), + [sym_none] = ACTIONS(4325), + [sym_true] = ACTIONS(4325), + [sym_false] = ACTIONS(4325), + [sym_nil] = ACTIONS(4325), + [anon_sym_if] = ACTIONS(4325), + [anon_sym_DOLLARif] = ACTIONS(4325), + [anon_sym_match] = ACTIONS(4325), + [anon_sym_select] = ACTIONS(4325), + [anon_sym_lock] = ACTIONS(4325), + [anon_sym_rlock] = ACTIONS(4325), + [anon_sym_unsafe] = ACTIONS(4325), + [anon_sym_sql] = ACTIONS(4325), + [sym_int_literal] = ACTIONS(4325), + [sym_float_literal] = ACTIONS(4325), + [sym_rune_literal] = ACTIONS(4325), + [sym_pseudo_compile_time_identifier] = ACTIONS(4325), + [anon_sym_shared] = ACTIONS(4325), + [anon_sym_map_LBRACK] = ACTIONS(4325), + [anon_sym_chan] = ACTIONS(4325), + [anon_sym_thread] = ACTIONS(4325), + [anon_sym_atomic] = ACTIONS(4325), + [anon_sym_assert] = ACTIONS(4325), + [anon_sym_defer] = ACTIONS(4325), + [anon_sym_goto] = ACTIONS(4325), + [anon_sym_break] = ACTIONS(4325), + [anon_sym_continue] = ACTIONS(4325), + [anon_sym_return] = ACTIONS(4325), + [anon_sym_DOLLARfor] = ACTIONS(4325), + [anon_sym_for] = ACTIONS(4325), + [anon_sym_POUND] = ACTIONS(4325), + [anon_sym_asm] = ACTIONS(4325), + [anon_sym_AT_LBRACK] = ACTIONS(4325), + [sym___double_quote] = ACTIONS(4325), + [sym___single_quote] = ACTIONS(4325), + [sym___c_double_quote] = ACTIONS(4325), + [sym___c_single_quote] = ACTIONS(4325), + [sym___r_double_quote] = ACTIONS(4325), + [sym___r_single_quote] = ACTIONS(4325), }, [1523] = { [sym_line_comment] = STATE(1523), [sym_block_comment] = STATE(1523), - [ts_builtin_sym_end] = ACTIONS(4321), - [sym_identifier] = ACTIONS(4323), - [anon_sym_LF] = ACTIONS(4323), - [anon_sym_CR] = ACTIONS(4323), - [anon_sym_CR_LF] = ACTIONS(4323), + [ts_builtin_sym_end] = ACTIONS(4327), + [sym_identifier] = ACTIONS(4329), + [anon_sym_LF] = ACTIONS(4329), + [anon_sym_CR] = ACTIONS(4329), + [anon_sym_CR_LF] = ACTIONS(4329), [anon_sym_SLASH_SLASH] = ACTIONS(497), [anon_sym_SLASH_STAR] = ACTIONS(499), - [anon_sym_DOT] = ACTIONS(4323), - [anon_sym_LBRACE] = ACTIONS(4323), - [anon_sym_const] = ACTIONS(4323), - [anon_sym_LPAREN] = ACTIONS(4323), - [anon_sym___global] = ACTIONS(4323), - [anon_sym_type] = ACTIONS(4323), - [anon_sym_fn] = ACTIONS(4323), - [anon_sym_PLUS] = ACTIONS(4323), - [anon_sym_DASH] = ACTIONS(4323), - [anon_sym_STAR] = ACTIONS(4323), - [anon_sym_struct] = ACTIONS(4323), - [anon_sym_union] = ACTIONS(4323), - [anon_sym_pub] = ACTIONS(4323), - [anon_sym_mut] = ACTIONS(4323), - [anon_sym_enum] = ACTIONS(4323), - [anon_sym_interface] = ACTIONS(4323), - [anon_sym_QMARK] = ACTIONS(4323), - [anon_sym_BANG] = ACTIONS(4323), - [anon_sym_go] = ACTIONS(4323), - [anon_sym_spawn] = ACTIONS(4323), - [anon_sym_json_DOTdecode] = ACTIONS(4323), - [anon_sym_LBRACK2] = ACTIONS(4323), - [anon_sym_TILDE] = ACTIONS(4323), - [anon_sym_CARET] = ACTIONS(4323), - [anon_sym_AMP] = ACTIONS(4323), - [anon_sym_LT_DASH] = ACTIONS(4323), - [sym_none] = ACTIONS(4323), - [sym_true] = ACTIONS(4323), - [sym_false] = ACTIONS(4323), - [sym_nil] = ACTIONS(4323), - [anon_sym_if] = ACTIONS(4323), - [anon_sym_DOLLARif] = ACTIONS(4323), - [anon_sym_match] = ACTIONS(4323), - [anon_sym_select] = ACTIONS(4323), - [anon_sym_lock] = ACTIONS(4323), - [anon_sym_rlock] = ACTIONS(4323), - [anon_sym_unsafe] = ACTIONS(4323), - [anon_sym_sql] = ACTIONS(4323), - [sym_int_literal] = ACTIONS(4323), - [sym_float_literal] = ACTIONS(4323), - [sym_rune_literal] = ACTIONS(4323), - [sym_pseudo_compile_time_identifier] = ACTIONS(4323), - [anon_sym_shared] = ACTIONS(4323), - [anon_sym_map_LBRACK] = ACTIONS(4323), - [anon_sym_chan] = ACTIONS(4323), - [anon_sym_thread] = ACTIONS(4323), - [anon_sym_atomic] = ACTIONS(4323), - [anon_sym_assert] = ACTIONS(4323), - [anon_sym_defer] = ACTIONS(4323), - [anon_sym_goto] = ACTIONS(4323), - [anon_sym_break] = ACTIONS(4323), - [anon_sym_continue] = ACTIONS(4323), - [anon_sym_return] = ACTIONS(4323), - [anon_sym_DOLLARfor] = ACTIONS(4323), - [anon_sym_for] = ACTIONS(4323), - [anon_sym_POUND] = ACTIONS(4323), - [anon_sym_asm] = ACTIONS(4323), - [anon_sym_AT_LBRACK] = ACTIONS(4323), - [sym___double_quote] = ACTIONS(4323), - [sym___single_quote] = ACTIONS(4323), - [sym___c_double_quote] = ACTIONS(4323), - [sym___c_single_quote] = ACTIONS(4323), - [sym___r_double_quote] = ACTIONS(4323), - [sym___r_single_quote] = ACTIONS(4323), + [anon_sym_DOT] = ACTIONS(4329), + [anon_sym_LBRACE] = ACTIONS(4329), + [anon_sym_const] = ACTIONS(4329), + [anon_sym_LPAREN] = ACTIONS(4329), + [anon_sym___global] = ACTIONS(4329), + [anon_sym_type] = ACTIONS(4329), + [anon_sym_fn] = ACTIONS(4329), + [anon_sym_PLUS] = ACTIONS(4329), + [anon_sym_DASH] = ACTIONS(4329), + [anon_sym_STAR] = ACTIONS(4329), + [anon_sym_struct] = ACTIONS(4329), + [anon_sym_union] = ACTIONS(4329), + [anon_sym_pub] = ACTIONS(4329), + [anon_sym_mut] = ACTIONS(4329), + [anon_sym_enum] = ACTIONS(4329), + [anon_sym_interface] = ACTIONS(4329), + [anon_sym_QMARK] = ACTIONS(4329), + [anon_sym_BANG] = ACTIONS(4329), + [anon_sym_go] = ACTIONS(4329), + [anon_sym_spawn] = ACTIONS(4329), + [anon_sym_json_DOTdecode] = ACTIONS(4329), + [anon_sym_LBRACK2] = ACTIONS(4329), + [anon_sym_TILDE] = ACTIONS(4329), + [anon_sym_CARET] = ACTIONS(4329), + [anon_sym_AMP] = ACTIONS(4329), + [anon_sym_LT_DASH] = ACTIONS(4329), + [sym_none] = ACTIONS(4329), + [sym_true] = ACTIONS(4329), + [sym_false] = ACTIONS(4329), + [sym_nil] = ACTIONS(4329), + [anon_sym_if] = ACTIONS(4329), + [anon_sym_DOLLARif] = ACTIONS(4329), + [anon_sym_match] = ACTIONS(4329), + [anon_sym_select] = ACTIONS(4329), + [anon_sym_lock] = ACTIONS(4329), + [anon_sym_rlock] = ACTIONS(4329), + [anon_sym_unsafe] = ACTIONS(4329), + [anon_sym_sql] = ACTIONS(4329), + [sym_int_literal] = ACTIONS(4329), + [sym_float_literal] = ACTIONS(4329), + [sym_rune_literal] = ACTIONS(4329), + [sym_pseudo_compile_time_identifier] = ACTIONS(4329), + [anon_sym_shared] = ACTIONS(4329), + [anon_sym_map_LBRACK] = ACTIONS(4329), + [anon_sym_chan] = ACTIONS(4329), + [anon_sym_thread] = ACTIONS(4329), + [anon_sym_atomic] = ACTIONS(4329), + [anon_sym_assert] = ACTIONS(4329), + [anon_sym_defer] = ACTIONS(4329), + [anon_sym_goto] = ACTIONS(4329), + [anon_sym_break] = ACTIONS(4329), + [anon_sym_continue] = ACTIONS(4329), + [anon_sym_return] = ACTIONS(4329), + [anon_sym_DOLLARfor] = ACTIONS(4329), + [anon_sym_for] = ACTIONS(4329), + [anon_sym_POUND] = ACTIONS(4329), + [anon_sym_asm] = ACTIONS(4329), + [anon_sym_AT_LBRACK] = ACTIONS(4329), + [sym___double_quote] = ACTIONS(4329), + [sym___single_quote] = ACTIONS(4329), + [sym___c_double_quote] = ACTIONS(4329), + [sym___c_single_quote] = ACTIONS(4329), + [sym___r_double_quote] = ACTIONS(4329), + [sym___r_single_quote] = ACTIONS(4329), }, [1524] = { [sym_line_comment] = STATE(1524), [sym_block_comment] = STATE(1524), - [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(4331), + [sym_identifier] = ACTIONS(4333), + [anon_sym_LF] = ACTIONS(4333), + [anon_sym_CR] = ACTIONS(4333), + [anon_sym_CR_LF] = ACTIONS(4333), [anon_sym_SLASH_SLASH] = ACTIONS(497), [anon_sym_SLASH_STAR] = ACTIONS(499), - [anon_sym_DOT] = ACTIONS(4327), - [anon_sym_LBRACE] = ACTIONS(4327), - [anon_sym_const] = ACTIONS(4327), - [anon_sym_LPAREN] = ACTIONS(4327), - [anon_sym___global] = ACTIONS(4327), - [anon_sym_type] = ACTIONS(4327), - [anon_sym_fn] = ACTIONS(4327), - [anon_sym_PLUS] = ACTIONS(4327), - [anon_sym_DASH] = ACTIONS(4327), - [anon_sym_STAR] = ACTIONS(4327), - [anon_sym_struct] = ACTIONS(4327), - [anon_sym_union] = ACTIONS(4327), - [anon_sym_pub] = ACTIONS(4327), - [anon_sym_mut] = ACTIONS(4327), - [anon_sym_enum] = ACTIONS(4327), - [anon_sym_interface] = ACTIONS(4327), - [anon_sym_QMARK] = ACTIONS(4327), - [anon_sym_BANG] = ACTIONS(4327), - [anon_sym_go] = ACTIONS(4327), - [anon_sym_spawn] = ACTIONS(4327), - [anon_sym_json_DOTdecode] = ACTIONS(4327), - [anon_sym_LBRACK2] = ACTIONS(4327), - [anon_sym_TILDE] = ACTIONS(4327), - [anon_sym_CARET] = ACTIONS(4327), - [anon_sym_AMP] = ACTIONS(4327), - [anon_sym_LT_DASH] = ACTIONS(4327), - [sym_none] = ACTIONS(4327), - [sym_true] = ACTIONS(4327), - [sym_false] = ACTIONS(4327), - [sym_nil] = ACTIONS(4327), - [anon_sym_if] = ACTIONS(4327), - [anon_sym_DOLLARif] = ACTIONS(4327), - [anon_sym_match] = ACTIONS(4327), - [anon_sym_select] = ACTIONS(4327), - [anon_sym_lock] = ACTIONS(4327), - [anon_sym_rlock] = ACTIONS(4327), - [anon_sym_unsafe] = ACTIONS(4327), - [anon_sym_sql] = ACTIONS(4327), - [sym_int_literal] = ACTIONS(4327), - [sym_float_literal] = ACTIONS(4327), - [sym_rune_literal] = ACTIONS(4327), - [sym_pseudo_compile_time_identifier] = ACTIONS(4327), - [anon_sym_shared] = ACTIONS(4327), - [anon_sym_map_LBRACK] = ACTIONS(4327), - [anon_sym_chan] = ACTIONS(4327), - [anon_sym_thread] = ACTIONS(4327), - [anon_sym_atomic] = ACTIONS(4327), - [anon_sym_assert] = ACTIONS(4327), - [anon_sym_defer] = ACTIONS(4327), - [anon_sym_goto] = ACTIONS(4327), - [anon_sym_break] = ACTIONS(4327), - [anon_sym_continue] = ACTIONS(4327), - [anon_sym_return] = ACTIONS(4327), - [anon_sym_DOLLARfor] = ACTIONS(4327), - [anon_sym_for] = ACTIONS(4327), - [anon_sym_POUND] = ACTIONS(4327), - [anon_sym_asm] = ACTIONS(4327), - [anon_sym_AT_LBRACK] = ACTIONS(4327), - [sym___double_quote] = ACTIONS(4327), - [sym___single_quote] = ACTIONS(4327), - [sym___c_double_quote] = ACTIONS(4327), - [sym___c_single_quote] = ACTIONS(4327), - [sym___r_double_quote] = ACTIONS(4327), - [sym___r_single_quote] = ACTIONS(4327), + [anon_sym_DOT] = ACTIONS(4333), + [anon_sym_LBRACE] = ACTIONS(4333), + [anon_sym_const] = ACTIONS(4333), + [anon_sym_LPAREN] = ACTIONS(4333), + [anon_sym___global] = ACTIONS(4333), + [anon_sym_type] = ACTIONS(4333), + [anon_sym_fn] = ACTIONS(4333), + [anon_sym_PLUS] = ACTIONS(4333), + [anon_sym_DASH] = ACTIONS(4333), + [anon_sym_STAR] = ACTIONS(4333), + [anon_sym_struct] = ACTIONS(4333), + [anon_sym_union] = ACTIONS(4333), + [anon_sym_pub] = ACTIONS(4333), + [anon_sym_mut] = ACTIONS(4333), + [anon_sym_enum] = ACTIONS(4333), + [anon_sym_interface] = ACTIONS(4333), + [anon_sym_QMARK] = ACTIONS(4333), + [anon_sym_BANG] = ACTIONS(4333), + [anon_sym_go] = ACTIONS(4333), + [anon_sym_spawn] = ACTIONS(4333), + [anon_sym_json_DOTdecode] = ACTIONS(4333), + [anon_sym_LBRACK2] = ACTIONS(4333), + [anon_sym_TILDE] = ACTIONS(4333), + [anon_sym_CARET] = ACTIONS(4333), + [anon_sym_AMP] = ACTIONS(4333), + [anon_sym_LT_DASH] = ACTIONS(4333), + [sym_none] = ACTIONS(4333), + [sym_true] = ACTIONS(4333), + [sym_false] = ACTIONS(4333), + [sym_nil] = ACTIONS(4333), + [anon_sym_if] = ACTIONS(4333), + [anon_sym_DOLLARif] = ACTIONS(4333), + [anon_sym_match] = ACTIONS(4333), + [anon_sym_select] = ACTIONS(4333), + [anon_sym_lock] = ACTIONS(4333), + [anon_sym_rlock] = ACTIONS(4333), + [anon_sym_unsafe] = ACTIONS(4333), + [anon_sym_sql] = ACTIONS(4333), + [sym_int_literal] = ACTIONS(4333), + [sym_float_literal] = ACTIONS(4333), + [sym_rune_literal] = ACTIONS(4333), + [sym_pseudo_compile_time_identifier] = ACTIONS(4333), + [anon_sym_shared] = ACTIONS(4333), + [anon_sym_map_LBRACK] = ACTIONS(4333), + [anon_sym_chan] = ACTIONS(4333), + [anon_sym_thread] = ACTIONS(4333), + [anon_sym_atomic] = ACTIONS(4333), + [anon_sym_assert] = ACTIONS(4333), + [anon_sym_defer] = ACTIONS(4333), + [anon_sym_goto] = ACTIONS(4333), + [anon_sym_break] = ACTIONS(4333), + [anon_sym_continue] = ACTIONS(4333), + [anon_sym_return] = ACTIONS(4333), + [anon_sym_DOLLARfor] = ACTIONS(4333), + [anon_sym_for] = ACTIONS(4333), + [anon_sym_POUND] = ACTIONS(4333), + [anon_sym_asm] = ACTIONS(4333), + [anon_sym_AT_LBRACK] = ACTIONS(4333), + [sym___double_quote] = ACTIONS(4333), + [sym___single_quote] = ACTIONS(4333), + [sym___c_double_quote] = ACTIONS(4333), + [sym___c_single_quote] = ACTIONS(4333), + [sym___r_double_quote] = ACTIONS(4333), + [sym___r_single_quote] = ACTIONS(4333), }, [1525] = { [sym_line_comment] = STATE(1525), [sym_block_comment] = STATE(1525), - [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(4335), + [sym_identifier] = ACTIONS(4337), + [anon_sym_LF] = ACTIONS(4337), + [anon_sym_CR] = ACTIONS(4337), + [anon_sym_CR_LF] = ACTIONS(4337), [anon_sym_SLASH_SLASH] = ACTIONS(497), [anon_sym_SLASH_STAR] = ACTIONS(499), - [anon_sym_DOT] = ACTIONS(4331), - [anon_sym_LBRACE] = ACTIONS(4331), - [anon_sym_const] = ACTIONS(4331), - [anon_sym_LPAREN] = ACTIONS(4331), - [anon_sym___global] = ACTIONS(4331), - [anon_sym_type] = ACTIONS(4331), - [anon_sym_fn] = ACTIONS(4331), - [anon_sym_PLUS] = ACTIONS(4331), - [anon_sym_DASH] = ACTIONS(4331), - [anon_sym_STAR] = ACTIONS(4331), - [anon_sym_struct] = ACTIONS(4331), - [anon_sym_union] = ACTIONS(4331), - [anon_sym_pub] = ACTIONS(4331), - [anon_sym_mut] = ACTIONS(4331), - [anon_sym_enum] = ACTIONS(4331), - [anon_sym_interface] = ACTIONS(4331), - [anon_sym_QMARK] = ACTIONS(4331), - [anon_sym_BANG] = ACTIONS(4331), - [anon_sym_go] = ACTIONS(4331), - [anon_sym_spawn] = ACTIONS(4331), - [anon_sym_json_DOTdecode] = ACTIONS(4331), - [anon_sym_LBRACK2] = ACTIONS(4331), - [anon_sym_TILDE] = ACTIONS(4331), - [anon_sym_CARET] = ACTIONS(4331), - [anon_sym_AMP] = ACTIONS(4331), - [anon_sym_LT_DASH] = ACTIONS(4331), - [sym_none] = ACTIONS(4331), - [sym_true] = ACTIONS(4331), - [sym_false] = ACTIONS(4331), - [sym_nil] = ACTIONS(4331), - [anon_sym_if] = ACTIONS(4331), - [anon_sym_DOLLARif] = ACTIONS(4331), - [anon_sym_match] = ACTIONS(4331), - [anon_sym_select] = ACTIONS(4331), - [anon_sym_lock] = ACTIONS(4331), - [anon_sym_rlock] = ACTIONS(4331), - [anon_sym_unsafe] = ACTIONS(4331), - [anon_sym_sql] = ACTIONS(4331), - [sym_int_literal] = ACTIONS(4331), - [sym_float_literal] = ACTIONS(4331), - [sym_rune_literal] = ACTIONS(4331), - [sym_pseudo_compile_time_identifier] = ACTIONS(4331), - [anon_sym_shared] = ACTIONS(4331), - [anon_sym_map_LBRACK] = ACTIONS(4331), - [anon_sym_chan] = ACTIONS(4331), - [anon_sym_thread] = ACTIONS(4331), - [anon_sym_atomic] = ACTIONS(4331), - [anon_sym_assert] = ACTIONS(4331), - [anon_sym_defer] = ACTIONS(4331), - [anon_sym_goto] = ACTIONS(4331), - [anon_sym_break] = ACTIONS(4331), - [anon_sym_continue] = ACTIONS(4331), - [anon_sym_return] = ACTIONS(4331), - [anon_sym_DOLLARfor] = ACTIONS(4331), - [anon_sym_for] = ACTIONS(4331), - [anon_sym_POUND] = ACTIONS(4331), - [anon_sym_asm] = ACTIONS(4331), - [anon_sym_AT_LBRACK] = ACTIONS(4331), - [sym___double_quote] = ACTIONS(4331), - [sym___single_quote] = ACTIONS(4331), - [sym___c_double_quote] = ACTIONS(4331), - [sym___c_single_quote] = ACTIONS(4331), - [sym___r_double_quote] = ACTIONS(4331), - [sym___r_single_quote] = ACTIONS(4331), + [anon_sym_DOT] = ACTIONS(4337), + [anon_sym_LBRACE] = ACTIONS(4337), + [anon_sym_const] = ACTIONS(4337), + [anon_sym_LPAREN] = ACTIONS(4337), + [anon_sym___global] = ACTIONS(4337), + [anon_sym_type] = ACTIONS(4337), + [anon_sym_fn] = ACTIONS(4337), + [anon_sym_PLUS] = ACTIONS(4337), + [anon_sym_DASH] = ACTIONS(4337), + [anon_sym_STAR] = ACTIONS(4337), + [anon_sym_struct] = ACTIONS(4337), + [anon_sym_union] = ACTIONS(4337), + [anon_sym_pub] = ACTIONS(4337), + [anon_sym_mut] = ACTIONS(4337), + [anon_sym_enum] = ACTIONS(4337), + [anon_sym_interface] = ACTIONS(4337), + [anon_sym_QMARK] = ACTIONS(4337), + [anon_sym_BANG] = ACTIONS(4337), + [anon_sym_go] = ACTIONS(4337), + [anon_sym_spawn] = ACTIONS(4337), + [anon_sym_json_DOTdecode] = ACTIONS(4337), + [anon_sym_LBRACK2] = ACTIONS(4337), + [anon_sym_TILDE] = ACTIONS(4337), + [anon_sym_CARET] = ACTIONS(4337), + [anon_sym_AMP] = ACTIONS(4337), + [anon_sym_LT_DASH] = ACTIONS(4337), + [sym_none] = ACTIONS(4337), + [sym_true] = ACTIONS(4337), + [sym_false] = ACTIONS(4337), + [sym_nil] = ACTIONS(4337), + [anon_sym_if] = ACTIONS(4337), + [anon_sym_DOLLARif] = ACTIONS(4337), + [anon_sym_match] = ACTIONS(4337), + [anon_sym_select] = ACTIONS(4337), + [anon_sym_lock] = ACTIONS(4337), + [anon_sym_rlock] = ACTIONS(4337), + [anon_sym_unsafe] = ACTIONS(4337), + [anon_sym_sql] = ACTIONS(4337), + [sym_int_literal] = ACTIONS(4337), + [sym_float_literal] = ACTIONS(4337), + [sym_rune_literal] = ACTIONS(4337), + [sym_pseudo_compile_time_identifier] = ACTIONS(4337), + [anon_sym_shared] = ACTIONS(4337), + [anon_sym_map_LBRACK] = ACTIONS(4337), + [anon_sym_chan] = ACTIONS(4337), + [anon_sym_thread] = ACTIONS(4337), + [anon_sym_atomic] = ACTIONS(4337), + [anon_sym_assert] = ACTIONS(4337), + [anon_sym_defer] = ACTIONS(4337), + [anon_sym_goto] = ACTIONS(4337), + [anon_sym_break] = ACTIONS(4337), + [anon_sym_continue] = ACTIONS(4337), + [anon_sym_return] = ACTIONS(4337), + [anon_sym_DOLLARfor] = ACTIONS(4337), + [anon_sym_for] = ACTIONS(4337), + [anon_sym_POUND] = ACTIONS(4337), + [anon_sym_asm] = ACTIONS(4337), + [anon_sym_AT_LBRACK] = ACTIONS(4337), + [sym___double_quote] = ACTIONS(4337), + [sym___single_quote] = ACTIONS(4337), + [sym___c_double_quote] = ACTIONS(4337), + [sym___c_single_quote] = ACTIONS(4337), + [sym___r_double_quote] = ACTIONS(4337), + [sym___r_single_quote] = ACTIONS(4337), }, [1526] = { [sym_line_comment] = STATE(1526), [sym_block_comment] = STATE(1526), - [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(4339), + [sym_identifier] = ACTIONS(4341), + [anon_sym_LF] = ACTIONS(4341), + [anon_sym_CR] = ACTIONS(4341), + [anon_sym_CR_LF] = ACTIONS(4341), [anon_sym_SLASH_SLASH] = ACTIONS(497), [anon_sym_SLASH_STAR] = ACTIONS(499), - [anon_sym_DOT] = ACTIONS(4335), - [anon_sym_LBRACE] = ACTIONS(4335), - [anon_sym_const] = ACTIONS(4335), - [anon_sym_LPAREN] = ACTIONS(4335), - [anon_sym___global] = ACTIONS(4335), - [anon_sym_type] = ACTIONS(4335), - [anon_sym_fn] = ACTIONS(4335), - [anon_sym_PLUS] = ACTIONS(4335), - [anon_sym_DASH] = ACTIONS(4335), - [anon_sym_STAR] = ACTIONS(4335), - [anon_sym_struct] = ACTIONS(4335), - [anon_sym_union] = ACTIONS(4335), - [anon_sym_pub] = ACTIONS(4335), - [anon_sym_mut] = ACTIONS(4335), - [anon_sym_enum] = ACTIONS(4335), - [anon_sym_interface] = ACTIONS(4335), - [anon_sym_QMARK] = ACTIONS(4335), - [anon_sym_BANG] = ACTIONS(4335), - [anon_sym_go] = ACTIONS(4335), - [anon_sym_spawn] = ACTIONS(4335), - [anon_sym_json_DOTdecode] = ACTIONS(4335), - [anon_sym_LBRACK2] = ACTIONS(4335), - [anon_sym_TILDE] = ACTIONS(4335), - [anon_sym_CARET] = ACTIONS(4335), - [anon_sym_AMP] = ACTIONS(4335), - [anon_sym_LT_DASH] = ACTIONS(4335), - [sym_none] = ACTIONS(4335), - [sym_true] = ACTIONS(4335), - [sym_false] = ACTIONS(4335), - [sym_nil] = ACTIONS(4335), - [anon_sym_if] = ACTIONS(4335), - [anon_sym_DOLLARif] = ACTIONS(4335), - [anon_sym_match] = ACTIONS(4335), - [anon_sym_select] = ACTIONS(4335), - [anon_sym_lock] = ACTIONS(4335), - [anon_sym_rlock] = ACTIONS(4335), - [anon_sym_unsafe] = ACTIONS(4335), - [anon_sym_sql] = ACTIONS(4335), - [sym_int_literal] = ACTIONS(4335), - [sym_float_literal] = ACTIONS(4335), - [sym_rune_literal] = ACTIONS(4335), - [sym_pseudo_compile_time_identifier] = ACTIONS(4335), - [anon_sym_shared] = ACTIONS(4335), - [anon_sym_map_LBRACK] = ACTIONS(4335), - [anon_sym_chan] = ACTIONS(4335), - [anon_sym_thread] = ACTIONS(4335), - [anon_sym_atomic] = ACTIONS(4335), - [anon_sym_assert] = ACTIONS(4335), - [anon_sym_defer] = ACTIONS(4335), - [anon_sym_goto] = ACTIONS(4335), - [anon_sym_break] = ACTIONS(4335), - [anon_sym_continue] = ACTIONS(4335), - [anon_sym_return] = ACTIONS(4335), - [anon_sym_DOLLARfor] = ACTIONS(4335), - [anon_sym_for] = ACTIONS(4335), - [anon_sym_POUND] = ACTIONS(4335), - [anon_sym_asm] = ACTIONS(4335), - [anon_sym_AT_LBRACK] = ACTIONS(4335), - [sym___double_quote] = ACTIONS(4335), - [sym___single_quote] = ACTIONS(4335), - [sym___c_double_quote] = ACTIONS(4335), - [sym___c_single_quote] = ACTIONS(4335), - [sym___r_double_quote] = ACTIONS(4335), - [sym___r_single_quote] = ACTIONS(4335), + [anon_sym_DOT] = ACTIONS(4341), + [anon_sym_LBRACE] = ACTIONS(4341), + [anon_sym_const] = ACTIONS(4341), + [anon_sym_LPAREN] = ACTIONS(4341), + [anon_sym___global] = ACTIONS(4341), + [anon_sym_type] = ACTIONS(4341), + [anon_sym_fn] = ACTIONS(4341), + [anon_sym_PLUS] = ACTIONS(4341), + [anon_sym_DASH] = ACTIONS(4341), + [anon_sym_STAR] = ACTIONS(4341), + [anon_sym_struct] = ACTIONS(4341), + [anon_sym_union] = ACTIONS(4341), + [anon_sym_pub] = ACTIONS(4341), + [anon_sym_mut] = ACTIONS(4341), + [anon_sym_enum] = ACTIONS(4341), + [anon_sym_interface] = ACTIONS(4341), + [anon_sym_QMARK] = ACTIONS(4341), + [anon_sym_BANG] = ACTIONS(4341), + [anon_sym_go] = ACTIONS(4341), + [anon_sym_spawn] = ACTIONS(4341), + [anon_sym_json_DOTdecode] = ACTIONS(4341), + [anon_sym_LBRACK2] = ACTIONS(4341), + [anon_sym_TILDE] = ACTIONS(4341), + [anon_sym_CARET] = ACTIONS(4341), + [anon_sym_AMP] = ACTIONS(4341), + [anon_sym_LT_DASH] = ACTIONS(4341), + [sym_none] = ACTIONS(4341), + [sym_true] = ACTIONS(4341), + [sym_false] = ACTIONS(4341), + [sym_nil] = ACTIONS(4341), + [anon_sym_if] = ACTIONS(4341), + [anon_sym_DOLLARif] = ACTIONS(4341), + [anon_sym_match] = ACTIONS(4341), + [anon_sym_select] = ACTIONS(4341), + [anon_sym_lock] = ACTIONS(4341), + [anon_sym_rlock] = ACTIONS(4341), + [anon_sym_unsafe] = ACTIONS(4341), + [anon_sym_sql] = ACTIONS(4341), + [sym_int_literal] = ACTIONS(4341), + [sym_float_literal] = ACTIONS(4341), + [sym_rune_literal] = ACTIONS(4341), + [sym_pseudo_compile_time_identifier] = ACTIONS(4341), + [anon_sym_shared] = ACTIONS(4341), + [anon_sym_map_LBRACK] = ACTIONS(4341), + [anon_sym_chan] = ACTIONS(4341), + [anon_sym_thread] = ACTIONS(4341), + [anon_sym_atomic] = ACTIONS(4341), + [anon_sym_assert] = ACTIONS(4341), + [anon_sym_defer] = ACTIONS(4341), + [anon_sym_goto] = ACTIONS(4341), + [anon_sym_break] = ACTIONS(4341), + [anon_sym_continue] = ACTIONS(4341), + [anon_sym_return] = ACTIONS(4341), + [anon_sym_DOLLARfor] = ACTIONS(4341), + [anon_sym_for] = ACTIONS(4341), + [anon_sym_POUND] = ACTIONS(4341), + [anon_sym_asm] = ACTIONS(4341), + [anon_sym_AT_LBRACK] = ACTIONS(4341), + [sym___double_quote] = ACTIONS(4341), + [sym___single_quote] = ACTIONS(4341), + [sym___c_double_quote] = ACTIONS(4341), + [sym___c_single_quote] = ACTIONS(4341), + [sym___r_double_quote] = ACTIONS(4341), + [sym___r_single_quote] = ACTIONS(4341), }, [1527] = { [sym_line_comment] = STATE(1527), [sym_block_comment] = STATE(1527), - [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(1807), + [sym_identifier] = ACTIONS(1809), + [anon_sym_LF] = ACTIONS(1809), + [anon_sym_CR] = ACTIONS(1809), + [anon_sym_CR_LF] = ACTIONS(1809), [anon_sym_SLASH_SLASH] = ACTIONS(497), [anon_sym_SLASH_STAR] = ACTIONS(499), - [anon_sym_DOT] = ACTIONS(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(1809), + [anon_sym_LBRACE] = ACTIONS(1809), + [anon_sym_const] = ACTIONS(1809), + [anon_sym_LPAREN] = ACTIONS(1809), + [anon_sym___global] = ACTIONS(1809), + [anon_sym_type] = ACTIONS(1809), + [anon_sym_fn] = ACTIONS(1809), + [anon_sym_PLUS] = ACTIONS(1809), + [anon_sym_DASH] = ACTIONS(1809), + [anon_sym_STAR] = ACTIONS(1809), + [anon_sym_struct] = ACTIONS(1809), + [anon_sym_union] = ACTIONS(1809), + [anon_sym_pub] = ACTIONS(1809), + [anon_sym_mut] = ACTIONS(1809), + [anon_sym_enum] = ACTIONS(1809), + [anon_sym_interface] = ACTIONS(1809), + [anon_sym_QMARK] = ACTIONS(1809), + [anon_sym_BANG] = ACTIONS(1809), + [anon_sym_go] = ACTIONS(1809), + [anon_sym_spawn] = ACTIONS(1809), + [anon_sym_json_DOTdecode] = ACTIONS(1809), + [anon_sym_LBRACK2] = ACTIONS(1809), + [anon_sym_TILDE] = ACTIONS(1809), + [anon_sym_CARET] = ACTIONS(1809), + [anon_sym_AMP] = ACTIONS(1809), + [anon_sym_LT_DASH] = ACTIONS(1809), + [sym_none] = ACTIONS(1809), + [sym_true] = ACTIONS(1809), + [sym_false] = ACTIONS(1809), + [sym_nil] = ACTIONS(1809), + [anon_sym_if] = ACTIONS(1809), + [anon_sym_DOLLARif] = ACTIONS(1809), + [anon_sym_match] = ACTIONS(1809), + [anon_sym_select] = ACTIONS(1809), + [anon_sym_lock] = ACTIONS(1809), + [anon_sym_rlock] = ACTIONS(1809), + [anon_sym_unsafe] = ACTIONS(1809), + [anon_sym_sql] = ACTIONS(1809), + [sym_int_literal] = ACTIONS(1809), + [sym_float_literal] = ACTIONS(1809), + [sym_rune_literal] = ACTIONS(1809), + [sym_pseudo_compile_time_identifier] = ACTIONS(1809), + [anon_sym_shared] = ACTIONS(1809), + [anon_sym_map_LBRACK] = ACTIONS(1809), + [anon_sym_chan] = ACTIONS(1809), + [anon_sym_thread] = ACTIONS(1809), + [anon_sym_atomic] = ACTIONS(1809), + [anon_sym_assert] = ACTIONS(1809), + [anon_sym_defer] = ACTIONS(1809), + [anon_sym_goto] = ACTIONS(1809), + [anon_sym_break] = ACTIONS(1809), + [anon_sym_continue] = ACTIONS(1809), + [anon_sym_return] = ACTIONS(1809), + [anon_sym_DOLLARfor] = ACTIONS(1809), + [anon_sym_for] = ACTIONS(1809), + [anon_sym_POUND] = ACTIONS(1809), + [anon_sym_asm] = ACTIONS(1809), + [anon_sym_AT_LBRACK] = ACTIONS(1809), + [sym___double_quote] = ACTIONS(1809), + [sym___single_quote] = ACTIONS(1809), + [sym___c_double_quote] = ACTIONS(1809), + [sym___c_single_quote] = ACTIONS(1809), + [sym___r_double_quote] = ACTIONS(1809), + [sym___r_single_quote] = ACTIONS(1809), }, [1528] = { [sym_line_comment] = STATE(1528), [sym_block_comment] = STATE(1528), - [sym_reference_expression] = STATE(4495), - [sym_type_reference_expression] = STATE(3541), - [sym_plain_type] = STATE(2391), - [sym__plain_type_without_special] = STATE(2302), - [sym_anon_struct_type] = STATE(2303), - [sym_multi_return_type] = STATE(2302), - [sym_result_type] = STATE(2302), - [sym_option_type] = STATE(2302), - [sym_qualified_type] = STATE(3541), - [sym_fixed_array_type] = STATE(2303), - [sym_array_type] = STATE(2303), - [sym_pointer_type] = STATE(2303), - [sym_wrong_pointer_type] = STATE(2303), - [sym_map_type] = STATE(2303), - [sym_channel_type] = STATE(2303), - [sym_shared_type] = STATE(2303), - [sym_thread_type] = STATE(2303), - [sym_atomic_type] = STATE(2303), - [sym_generic_type] = STATE(2303), - [sym_function_type] = STATE(2303), - [sym_identifier] = ACTIONS(597), - [anon_sym_SLASH_SLASH] = ACTIONS(3), - [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(623), - [anon_sym_as] = ACTIONS(623), - [anon_sym_LBRACE] = ACTIONS(621), - [anon_sym_COMMA] = ACTIONS(621), - [anon_sym_LPAREN] = ACTIONS(621), - [anon_sym_PIPE] = ACTIONS(623), - [anon_sym_fn] = ACTIONS(603), - [anon_sym_PLUS] = ACTIONS(623), - [anon_sym_DASH] = ACTIONS(623), - [anon_sym_STAR] = ACTIONS(621), - [anon_sym_SLASH] = ACTIONS(623), - [anon_sym_PERCENT] = ACTIONS(621), - [anon_sym_LT] = ACTIONS(623), - [anon_sym_GT] = ACTIONS(623), - [anon_sym_EQ_EQ] = ACTIONS(621), - [anon_sym_BANG_EQ] = ACTIONS(621), - [anon_sym_LT_EQ] = ACTIONS(621), - [anon_sym_GT_EQ] = ACTIONS(621), - [anon_sym_DOT_DOT_DOT] = ACTIONS(621), - [anon_sym_LBRACK] = ACTIONS(621), - [anon_sym_struct] = ACTIONS(607), - [anon_sym_PLUS_PLUS] = ACTIONS(621), - [anon_sym_DASH_DASH] = ACTIONS(621), - [anon_sym_QMARK] = ACTIONS(623), - [anon_sym_BANG] = ACTIONS(623), - [anon_sym_LBRACK2] = ACTIONS(623), - [anon_sym_CARET] = ACTIONS(621), - [anon_sym_AMP] = ACTIONS(623), - [anon_sym_LT_LT] = ACTIONS(621), - [anon_sym_GT_GT] = ACTIONS(623), - [anon_sym_GT_GT_GT] = ACTIONS(621), - [anon_sym_AMP_CARET] = ACTIONS(621), - [anon_sym_AMP_AMP] = ACTIONS(621), - [anon_sym_PIPE_PIPE] = ACTIONS(621), - [anon_sym_or] = ACTIONS(623), - [anon_sym_QMARK_DOT] = ACTIONS(621), - [anon_sym_POUND_LBRACK] = ACTIONS(621), - [anon_sym_is] = ACTIONS(623), - [anon_sym_BANGis] = ACTIONS(621), - [anon_sym_in] = ACTIONS(623), - [anon_sym_BANGin] = ACTIONS(621), - [anon_sym_COLON_EQ] = ACTIONS(621), - [anon_sym_shared] = ACTIONS(615), - [anon_sym_map_LBRACK] = ACTIONS(85), - [anon_sym_chan] = ACTIONS(87), - [anon_sym_thread] = ACTIONS(89), - [anon_sym_atomic] = ACTIONS(91), - [anon_sym_DOT_DOT] = ACTIONS(623), + [ts_builtin_sym_end] = ACTIONS(4343), + [sym_identifier] = ACTIONS(4345), + [anon_sym_LF] = ACTIONS(4345), + [anon_sym_CR] = ACTIONS(4345), + [anon_sym_CR_LF] = ACTIONS(4345), + [anon_sym_SLASH_SLASH] = ACTIONS(497), + [anon_sym_SLASH_STAR] = ACTIONS(499), + [anon_sym_DOT] = ACTIONS(4345), + [anon_sym_LBRACE] = ACTIONS(4345), + [anon_sym_const] = ACTIONS(4345), + [anon_sym_LPAREN] = ACTIONS(4345), + [anon_sym___global] = ACTIONS(4345), + [anon_sym_type] = ACTIONS(4345), + [anon_sym_fn] = ACTIONS(4345), + [anon_sym_PLUS] = ACTIONS(4345), + [anon_sym_DASH] = ACTIONS(4345), + [anon_sym_STAR] = ACTIONS(4345), + [anon_sym_struct] = ACTIONS(4345), + [anon_sym_union] = ACTIONS(4345), + [anon_sym_pub] = ACTIONS(4345), + [anon_sym_mut] = ACTIONS(4345), + [anon_sym_enum] = ACTIONS(4345), + [anon_sym_interface] = ACTIONS(4345), + [anon_sym_QMARK] = ACTIONS(4345), + [anon_sym_BANG] = ACTIONS(4345), + [anon_sym_go] = ACTIONS(4345), + [anon_sym_spawn] = ACTIONS(4345), + [anon_sym_json_DOTdecode] = ACTIONS(4345), + [anon_sym_LBRACK2] = ACTIONS(4345), + [anon_sym_TILDE] = ACTIONS(4345), + [anon_sym_CARET] = ACTIONS(4345), + [anon_sym_AMP] = ACTIONS(4345), + [anon_sym_LT_DASH] = ACTIONS(4345), + [sym_none] = ACTIONS(4345), + [sym_true] = ACTIONS(4345), + [sym_false] = ACTIONS(4345), + [sym_nil] = ACTIONS(4345), + [anon_sym_if] = ACTIONS(4345), + [anon_sym_DOLLARif] = ACTIONS(4345), + [anon_sym_match] = ACTIONS(4345), + [anon_sym_select] = ACTIONS(4345), + [anon_sym_lock] = ACTIONS(4345), + [anon_sym_rlock] = ACTIONS(4345), + [anon_sym_unsafe] = ACTIONS(4345), + [anon_sym_sql] = ACTIONS(4345), + [sym_int_literal] = ACTIONS(4345), + [sym_float_literal] = ACTIONS(4345), + [sym_rune_literal] = ACTIONS(4345), + [sym_pseudo_compile_time_identifier] = ACTIONS(4345), + [anon_sym_shared] = ACTIONS(4345), + [anon_sym_map_LBRACK] = ACTIONS(4345), + [anon_sym_chan] = ACTIONS(4345), + [anon_sym_thread] = ACTIONS(4345), + [anon_sym_atomic] = ACTIONS(4345), + [anon_sym_assert] = ACTIONS(4345), + [anon_sym_defer] = ACTIONS(4345), + [anon_sym_goto] = ACTIONS(4345), + [anon_sym_break] = ACTIONS(4345), + [anon_sym_continue] = ACTIONS(4345), + [anon_sym_return] = ACTIONS(4345), + [anon_sym_DOLLARfor] = ACTIONS(4345), + [anon_sym_for] = ACTIONS(4345), + [anon_sym_POUND] = ACTIONS(4345), + [anon_sym_asm] = ACTIONS(4345), + [anon_sym_AT_LBRACK] = ACTIONS(4345), + [sym___double_quote] = ACTIONS(4345), + [sym___single_quote] = ACTIONS(4345), + [sym___c_double_quote] = ACTIONS(4345), + [sym___c_single_quote] = ACTIONS(4345), + [sym___r_double_quote] = ACTIONS(4345), + [sym___r_single_quote] = ACTIONS(4345), }, [1529] = { [sym_line_comment] = STATE(1529), [sym_block_comment] = STATE(1529), - [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(2469), + [sym_identifier] = ACTIONS(2471), + [anon_sym_LF] = ACTIONS(2471), + [anon_sym_CR] = ACTIONS(2471), + [anon_sym_CR_LF] = ACTIONS(2471), [anon_sym_SLASH_SLASH] = ACTIONS(497), [anon_sym_SLASH_STAR] = ACTIONS(499), - [anon_sym_DOT] = ACTIONS(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(2471), + [anon_sym_LBRACE] = ACTIONS(2471), + [anon_sym_const] = ACTIONS(2471), + [anon_sym_LPAREN] = ACTIONS(2471), + [anon_sym___global] = ACTIONS(2471), + [anon_sym_type] = ACTIONS(2471), + [anon_sym_fn] = ACTIONS(2471), + [anon_sym_PLUS] = ACTIONS(2471), + [anon_sym_DASH] = ACTIONS(2471), + [anon_sym_STAR] = ACTIONS(2471), + [anon_sym_struct] = ACTIONS(2471), + [anon_sym_union] = ACTIONS(2471), + [anon_sym_pub] = ACTIONS(2471), + [anon_sym_mut] = ACTIONS(2471), + [anon_sym_enum] = ACTIONS(2471), + [anon_sym_interface] = ACTIONS(2471), + [anon_sym_QMARK] = ACTIONS(2471), + [anon_sym_BANG] = ACTIONS(2471), + [anon_sym_go] = ACTIONS(2471), + [anon_sym_spawn] = ACTIONS(2471), + [anon_sym_json_DOTdecode] = ACTIONS(2471), + [anon_sym_LBRACK2] = ACTIONS(2471), + [anon_sym_TILDE] = ACTIONS(2471), + [anon_sym_CARET] = ACTIONS(2471), + [anon_sym_AMP] = ACTIONS(2471), + [anon_sym_LT_DASH] = ACTIONS(2471), + [sym_none] = ACTIONS(2471), + [sym_true] = ACTIONS(2471), + [sym_false] = ACTIONS(2471), + [sym_nil] = ACTIONS(2471), + [anon_sym_if] = ACTIONS(2471), + [anon_sym_DOLLARif] = ACTIONS(2471), + [anon_sym_match] = ACTIONS(2471), + [anon_sym_select] = ACTIONS(2471), + [anon_sym_lock] = ACTIONS(2471), + [anon_sym_rlock] = ACTIONS(2471), + [anon_sym_unsafe] = ACTIONS(2471), + [anon_sym_sql] = ACTIONS(2471), + [sym_int_literal] = ACTIONS(2471), + [sym_float_literal] = ACTIONS(2471), + [sym_rune_literal] = ACTIONS(2471), + [sym_pseudo_compile_time_identifier] = ACTIONS(2471), + [anon_sym_shared] = ACTIONS(2471), + [anon_sym_map_LBRACK] = ACTIONS(2471), + [anon_sym_chan] = ACTIONS(2471), + [anon_sym_thread] = ACTIONS(2471), + [anon_sym_atomic] = ACTIONS(2471), + [anon_sym_assert] = ACTIONS(2471), + [anon_sym_defer] = ACTIONS(2471), + [anon_sym_goto] = ACTIONS(2471), + [anon_sym_break] = ACTIONS(2471), + [anon_sym_continue] = ACTIONS(2471), + [anon_sym_return] = ACTIONS(2471), + [anon_sym_DOLLARfor] = ACTIONS(2471), + [anon_sym_for] = ACTIONS(2471), + [anon_sym_POUND] = ACTIONS(2471), + [anon_sym_asm] = ACTIONS(2471), + [anon_sym_AT_LBRACK] = ACTIONS(2471), + [sym___double_quote] = ACTIONS(2471), + [sym___single_quote] = ACTIONS(2471), + [sym___c_double_quote] = ACTIONS(2471), + [sym___c_single_quote] = ACTIONS(2471), + [sym___r_double_quote] = ACTIONS(2471), + [sym___r_single_quote] = ACTIONS(2471), }, [1530] = { [sym_line_comment] = STATE(1530), [sym_block_comment] = STATE(1530), - [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(4347), + [sym_identifier] = ACTIONS(4349), + [anon_sym_LF] = ACTIONS(4349), + [anon_sym_CR] = ACTIONS(4349), + [anon_sym_CR_LF] = ACTIONS(4349), [anon_sym_SLASH_SLASH] = ACTIONS(497), [anon_sym_SLASH_STAR] = ACTIONS(499), - [anon_sym_DOT] = ACTIONS(4347), - [anon_sym_LBRACE] = ACTIONS(4347), - [anon_sym_const] = ACTIONS(4347), - [anon_sym_LPAREN] = ACTIONS(4347), - [anon_sym___global] = ACTIONS(4347), - [anon_sym_type] = ACTIONS(4347), - [anon_sym_fn] = ACTIONS(4347), - [anon_sym_PLUS] = ACTIONS(4347), - [anon_sym_DASH] = ACTIONS(4347), - [anon_sym_STAR] = ACTIONS(4347), - [anon_sym_struct] = ACTIONS(4347), - [anon_sym_union] = ACTIONS(4347), - [anon_sym_pub] = ACTIONS(4347), - [anon_sym_mut] = ACTIONS(4347), - [anon_sym_enum] = ACTIONS(4347), - [anon_sym_interface] = ACTIONS(4347), - [anon_sym_QMARK] = ACTIONS(4347), - [anon_sym_BANG] = ACTIONS(4347), - [anon_sym_go] = ACTIONS(4347), - [anon_sym_spawn] = ACTIONS(4347), - [anon_sym_json_DOTdecode] = ACTIONS(4347), - [anon_sym_LBRACK2] = ACTIONS(4347), - [anon_sym_TILDE] = ACTIONS(4347), - [anon_sym_CARET] = ACTIONS(4347), - [anon_sym_AMP] = ACTIONS(4347), - [anon_sym_LT_DASH] = ACTIONS(4347), - [sym_none] = ACTIONS(4347), - [sym_true] = ACTIONS(4347), - [sym_false] = ACTIONS(4347), - [sym_nil] = ACTIONS(4347), - [anon_sym_if] = ACTIONS(4347), - [anon_sym_DOLLARif] = ACTIONS(4347), - [anon_sym_match] = ACTIONS(4347), - [anon_sym_select] = ACTIONS(4347), - [anon_sym_lock] = ACTIONS(4347), - [anon_sym_rlock] = ACTIONS(4347), - [anon_sym_unsafe] = ACTIONS(4347), - [anon_sym_sql] = ACTIONS(4347), - [sym_int_literal] = ACTIONS(4347), - [sym_float_literal] = ACTIONS(4347), - [sym_rune_literal] = ACTIONS(4347), - [sym_pseudo_compile_time_identifier] = ACTIONS(4347), - [anon_sym_shared] = ACTIONS(4347), - [anon_sym_map_LBRACK] = ACTIONS(4347), - [anon_sym_chan] = ACTIONS(4347), - [anon_sym_thread] = ACTIONS(4347), - [anon_sym_atomic] = ACTIONS(4347), - [anon_sym_assert] = ACTIONS(4347), - [anon_sym_defer] = ACTIONS(4347), - [anon_sym_goto] = ACTIONS(4347), - [anon_sym_break] = ACTIONS(4347), - [anon_sym_continue] = ACTIONS(4347), - [anon_sym_return] = ACTIONS(4347), - [anon_sym_DOLLARfor] = ACTIONS(4347), - [anon_sym_for] = ACTIONS(4347), - [anon_sym_POUND] = ACTIONS(4347), - [anon_sym_asm] = ACTIONS(4347), - [anon_sym_AT_LBRACK] = ACTIONS(4347), - [sym___double_quote] = ACTIONS(4347), - [sym___single_quote] = ACTIONS(4347), - [sym___c_double_quote] = ACTIONS(4347), - [sym___c_single_quote] = ACTIONS(4347), - [sym___r_double_quote] = ACTIONS(4347), - [sym___r_single_quote] = ACTIONS(4347), + [anon_sym_DOT] = ACTIONS(4349), + [anon_sym_LBRACE] = ACTIONS(4349), + [anon_sym_const] = ACTIONS(4349), + [anon_sym_LPAREN] = ACTIONS(4349), + [anon_sym___global] = ACTIONS(4349), + [anon_sym_type] = ACTIONS(4349), + [anon_sym_fn] = ACTIONS(4349), + [anon_sym_PLUS] = ACTIONS(4349), + [anon_sym_DASH] = ACTIONS(4349), + [anon_sym_STAR] = ACTIONS(4349), + [anon_sym_struct] = ACTIONS(4349), + [anon_sym_union] = ACTIONS(4349), + [anon_sym_pub] = ACTIONS(4349), + [anon_sym_mut] = ACTIONS(4349), + [anon_sym_enum] = ACTIONS(4349), + [anon_sym_interface] = ACTIONS(4349), + [anon_sym_QMARK] = ACTIONS(4349), + [anon_sym_BANG] = ACTIONS(4349), + [anon_sym_go] = ACTIONS(4349), + [anon_sym_spawn] = ACTIONS(4349), + [anon_sym_json_DOTdecode] = ACTIONS(4349), + [anon_sym_LBRACK2] = ACTIONS(4349), + [anon_sym_TILDE] = ACTIONS(4349), + [anon_sym_CARET] = ACTIONS(4349), + [anon_sym_AMP] = ACTIONS(4349), + [anon_sym_LT_DASH] = ACTIONS(4349), + [sym_none] = ACTIONS(4349), + [sym_true] = ACTIONS(4349), + [sym_false] = ACTIONS(4349), + [sym_nil] = ACTIONS(4349), + [anon_sym_if] = ACTIONS(4349), + [anon_sym_DOLLARif] = ACTIONS(4349), + [anon_sym_match] = ACTIONS(4349), + [anon_sym_select] = ACTIONS(4349), + [anon_sym_lock] = ACTIONS(4349), + [anon_sym_rlock] = ACTIONS(4349), + [anon_sym_unsafe] = ACTIONS(4349), + [anon_sym_sql] = ACTIONS(4349), + [sym_int_literal] = ACTIONS(4349), + [sym_float_literal] = ACTIONS(4349), + [sym_rune_literal] = ACTIONS(4349), + [sym_pseudo_compile_time_identifier] = ACTIONS(4349), + [anon_sym_shared] = ACTIONS(4349), + [anon_sym_map_LBRACK] = ACTIONS(4349), + [anon_sym_chan] = ACTIONS(4349), + [anon_sym_thread] = ACTIONS(4349), + [anon_sym_atomic] = ACTIONS(4349), + [anon_sym_assert] = ACTIONS(4349), + [anon_sym_defer] = ACTIONS(4349), + [anon_sym_goto] = ACTIONS(4349), + [anon_sym_break] = ACTIONS(4349), + [anon_sym_continue] = ACTIONS(4349), + [anon_sym_return] = ACTIONS(4349), + [anon_sym_DOLLARfor] = ACTIONS(4349), + [anon_sym_for] = ACTIONS(4349), + [anon_sym_POUND] = ACTIONS(4349), + [anon_sym_asm] = ACTIONS(4349), + [anon_sym_AT_LBRACK] = ACTIONS(4349), + [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), }, [1531] = { [sym_line_comment] = STATE(1531), [sym_block_comment] = STATE(1531), - [ts_builtin_sym_end] = ACTIONS(4349), - [sym_identifier] = ACTIONS(4351), - [anon_sym_LF] = ACTIONS(4351), - [anon_sym_CR] = ACTIONS(4351), - [anon_sym_CR_LF] = ACTIONS(4351), + [ts_builtin_sym_end] = ACTIONS(4351), + [sym_identifier] = ACTIONS(4353), + [anon_sym_LF] = ACTIONS(4353), + [anon_sym_CR] = ACTIONS(4353), + [anon_sym_CR_LF] = ACTIONS(4353), [anon_sym_SLASH_SLASH] = ACTIONS(497), [anon_sym_SLASH_STAR] = ACTIONS(499), - [anon_sym_DOT] = ACTIONS(4351), - [anon_sym_LBRACE] = ACTIONS(4351), - [anon_sym_const] = ACTIONS(4351), - [anon_sym_LPAREN] = ACTIONS(4351), - [anon_sym___global] = ACTIONS(4351), - [anon_sym_type] = ACTIONS(4351), - [anon_sym_fn] = ACTIONS(4351), - [anon_sym_PLUS] = ACTIONS(4351), - [anon_sym_DASH] = ACTIONS(4351), - [anon_sym_STAR] = ACTIONS(4351), - [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(4351), - [anon_sym_BANG] = ACTIONS(4351), - [anon_sym_go] = ACTIONS(4351), - [anon_sym_spawn] = ACTIONS(4351), - [anon_sym_json_DOTdecode] = ACTIONS(4351), - [anon_sym_LBRACK2] = ACTIONS(4351), - [anon_sym_TILDE] = ACTIONS(4351), - [anon_sym_CARET] = ACTIONS(4351), - [anon_sym_AMP] = ACTIONS(4351), - [anon_sym_LT_DASH] = ACTIONS(4351), - [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(4351), - [sym_rune_literal] = ACTIONS(4351), - [sym_pseudo_compile_time_identifier] = ACTIONS(4351), - [anon_sym_shared] = ACTIONS(4351), - [anon_sym_map_LBRACK] = ACTIONS(4351), - [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(4351), - [anon_sym_asm] = ACTIONS(4351), - [anon_sym_AT_LBRACK] = ACTIONS(4351), - [sym___double_quote] = ACTIONS(4351), - [sym___single_quote] = ACTIONS(4351), - [sym___c_double_quote] = ACTIONS(4351), - [sym___c_single_quote] = ACTIONS(4351), - [sym___r_double_quote] = ACTIONS(4351), - [sym___r_single_quote] = ACTIONS(4351), + [anon_sym_DOT] = ACTIONS(4353), + [anon_sym_LBRACE] = ACTIONS(4353), + [anon_sym_const] = ACTIONS(4353), + [anon_sym_LPAREN] = ACTIONS(4353), + [anon_sym___global] = ACTIONS(4353), + [anon_sym_type] = ACTIONS(4353), + [anon_sym_fn] = ACTIONS(4353), + [anon_sym_PLUS] = ACTIONS(4353), + [anon_sym_DASH] = ACTIONS(4353), + [anon_sym_STAR] = ACTIONS(4353), + [anon_sym_struct] = ACTIONS(4353), + [anon_sym_union] = ACTIONS(4353), + [anon_sym_pub] = ACTIONS(4353), + [anon_sym_mut] = ACTIONS(4353), + [anon_sym_enum] = ACTIONS(4353), + [anon_sym_interface] = ACTIONS(4353), + [anon_sym_QMARK] = ACTIONS(4353), + [anon_sym_BANG] = ACTIONS(4353), + [anon_sym_go] = ACTIONS(4353), + [anon_sym_spawn] = ACTIONS(4353), + [anon_sym_json_DOTdecode] = ACTIONS(4353), + [anon_sym_LBRACK2] = ACTIONS(4353), + [anon_sym_TILDE] = ACTIONS(4353), + [anon_sym_CARET] = ACTIONS(4353), + [anon_sym_AMP] = ACTIONS(4353), + [anon_sym_LT_DASH] = ACTIONS(4353), + [sym_none] = ACTIONS(4353), + [sym_true] = ACTIONS(4353), + [sym_false] = ACTIONS(4353), + [sym_nil] = ACTIONS(4353), + [anon_sym_if] = ACTIONS(4353), + [anon_sym_DOLLARif] = ACTIONS(4353), + [anon_sym_match] = ACTIONS(4353), + [anon_sym_select] = ACTIONS(4353), + [anon_sym_lock] = ACTIONS(4353), + [anon_sym_rlock] = ACTIONS(4353), + [anon_sym_unsafe] = ACTIONS(4353), + [anon_sym_sql] = ACTIONS(4353), + [sym_int_literal] = ACTIONS(4353), + [sym_float_literal] = ACTIONS(4353), + [sym_rune_literal] = ACTIONS(4353), + [sym_pseudo_compile_time_identifier] = ACTIONS(4353), + [anon_sym_shared] = ACTIONS(4353), + [anon_sym_map_LBRACK] = ACTIONS(4353), + [anon_sym_chan] = ACTIONS(4353), + [anon_sym_thread] = ACTIONS(4353), + [anon_sym_atomic] = ACTIONS(4353), + [anon_sym_assert] = ACTIONS(4353), + [anon_sym_defer] = ACTIONS(4353), + [anon_sym_goto] = ACTIONS(4353), + [anon_sym_break] = ACTIONS(4353), + [anon_sym_continue] = ACTIONS(4353), + [anon_sym_return] = ACTIONS(4353), + [anon_sym_DOLLARfor] = ACTIONS(4353), + [anon_sym_for] = ACTIONS(4353), + [anon_sym_POUND] = ACTIONS(4353), + [anon_sym_asm] = ACTIONS(4353), + [anon_sym_AT_LBRACK] = ACTIONS(4353), + [sym___double_quote] = ACTIONS(4353), + [sym___single_quote] = ACTIONS(4353), + [sym___c_double_quote] = ACTIONS(4353), + [sym___c_single_quote] = ACTIONS(4353), + [sym___r_double_quote] = ACTIONS(4353), + [sym___r_single_quote] = ACTIONS(4353), }, [1532] = { [sym_line_comment] = STATE(1532), [sym_block_comment] = STATE(1532), - [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(4355), + [sym_identifier] = ACTIONS(4357), + [anon_sym_LF] = ACTIONS(4357), + [anon_sym_CR] = ACTIONS(4357), + [anon_sym_CR_LF] = ACTIONS(4357), [anon_sym_SLASH_SLASH] = ACTIONS(497), [anon_sym_SLASH_STAR] = ACTIONS(499), - [anon_sym_DOT] = ACTIONS(4355), - [anon_sym_LBRACE] = ACTIONS(4355), - [anon_sym_const] = ACTIONS(4355), - [anon_sym_LPAREN] = ACTIONS(4355), - [anon_sym___global] = ACTIONS(4355), - [anon_sym_type] = ACTIONS(4355), - [anon_sym_fn] = ACTIONS(4355), - [anon_sym_PLUS] = ACTIONS(4355), - [anon_sym_DASH] = ACTIONS(4355), - [anon_sym_STAR] = ACTIONS(4355), - [anon_sym_struct] = ACTIONS(4355), - [anon_sym_union] = ACTIONS(4355), - [anon_sym_pub] = ACTIONS(4355), - [anon_sym_mut] = ACTIONS(4355), - [anon_sym_enum] = ACTIONS(4355), - [anon_sym_interface] = ACTIONS(4355), - [anon_sym_QMARK] = ACTIONS(4355), - [anon_sym_BANG] = ACTIONS(4355), - [anon_sym_go] = ACTIONS(4355), - [anon_sym_spawn] = ACTIONS(4355), - [anon_sym_json_DOTdecode] = ACTIONS(4355), - [anon_sym_LBRACK2] = ACTIONS(4355), - [anon_sym_TILDE] = ACTIONS(4355), - [anon_sym_CARET] = ACTIONS(4355), - [anon_sym_AMP] = ACTIONS(4355), - [anon_sym_LT_DASH] = ACTIONS(4355), - [sym_none] = ACTIONS(4355), - [sym_true] = ACTIONS(4355), - [sym_false] = ACTIONS(4355), - [sym_nil] = ACTIONS(4355), - [anon_sym_if] = ACTIONS(4355), - [anon_sym_DOLLARif] = ACTIONS(4355), - [anon_sym_match] = ACTIONS(4355), - [anon_sym_select] = ACTIONS(4355), - [anon_sym_lock] = ACTIONS(4355), - [anon_sym_rlock] = ACTIONS(4355), - [anon_sym_unsafe] = ACTIONS(4355), - [anon_sym_sql] = ACTIONS(4355), - [sym_int_literal] = ACTIONS(4355), - [sym_float_literal] = ACTIONS(4355), - [sym_rune_literal] = ACTIONS(4355), - [sym_pseudo_compile_time_identifier] = ACTIONS(4355), - [anon_sym_shared] = ACTIONS(4355), - [anon_sym_map_LBRACK] = ACTIONS(4355), - [anon_sym_chan] = ACTIONS(4355), - [anon_sym_thread] = ACTIONS(4355), - [anon_sym_atomic] = ACTIONS(4355), - [anon_sym_assert] = ACTIONS(4355), - [anon_sym_defer] = ACTIONS(4355), - [anon_sym_goto] = ACTIONS(4355), - [anon_sym_break] = ACTIONS(4355), - [anon_sym_continue] = ACTIONS(4355), - [anon_sym_return] = ACTIONS(4355), - [anon_sym_DOLLARfor] = ACTIONS(4355), - [anon_sym_for] = ACTIONS(4355), - [anon_sym_POUND] = ACTIONS(4355), - [anon_sym_asm] = ACTIONS(4355), - [anon_sym_AT_LBRACK] = ACTIONS(4355), - [sym___double_quote] = ACTIONS(4355), - [sym___single_quote] = ACTIONS(4355), - [sym___c_double_quote] = ACTIONS(4355), - [sym___c_single_quote] = ACTIONS(4355), - [sym___r_double_quote] = ACTIONS(4355), - [sym___r_single_quote] = ACTIONS(4355), + [anon_sym_DOT] = ACTIONS(4357), + [anon_sym_LBRACE] = ACTIONS(4357), + [anon_sym_const] = ACTIONS(4357), + [anon_sym_LPAREN] = ACTIONS(4357), + [anon_sym___global] = ACTIONS(4357), + [anon_sym_type] = ACTIONS(4357), + [anon_sym_fn] = ACTIONS(4357), + [anon_sym_PLUS] = ACTIONS(4357), + [anon_sym_DASH] = ACTIONS(4357), + [anon_sym_STAR] = ACTIONS(4357), + [anon_sym_struct] = ACTIONS(4357), + [anon_sym_union] = ACTIONS(4357), + [anon_sym_pub] = ACTIONS(4357), + [anon_sym_mut] = ACTIONS(4357), + [anon_sym_enum] = ACTIONS(4357), + [anon_sym_interface] = ACTIONS(4357), + [anon_sym_QMARK] = ACTIONS(4357), + [anon_sym_BANG] = ACTIONS(4357), + [anon_sym_go] = ACTIONS(4357), + [anon_sym_spawn] = ACTIONS(4357), + [anon_sym_json_DOTdecode] = ACTIONS(4357), + [anon_sym_LBRACK2] = ACTIONS(4357), + [anon_sym_TILDE] = ACTIONS(4357), + [anon_sym_CARET] = ACTIONS(4357), + [anon_sym_AMP] = ACTIONS(4357), + [anon_sym_LT_DASH] = ACTIONS(4357), + [sym_none] = ACTIONS(4357), + [sym_true] = ACTIONS(4357), + [sym_false] = ACTIONS(4357), + [sym_nil] = ACTIONS(4357), + [anon_sym_if] = ACTIONS(4357), + [anon_sym_DOLLARif] = ACTIONS(4357), + [anon_sym_match] = ACTIONS(4357), + [anon_sym_select] = ACTIONS(4357), + [anon_sym_lock] = ACTIONS(4357), + [anon_sym_rlock] = ACTIONS(4357), + [anon_sym_unsafe] = ACTIONS(4357), + [anon_sym_sql] = ACTIONS(4357), + [sym_int_literal] = ACTIONS(4357), + [sym_float_literal] = ACTIONS(4357), + [sym_rune_literal] = ACTIONS(4357), + [sym_pseudo_compile_time_identifier] = ACTIONS(4357), + [anon_sym_shared] = ACTIONS(4357), + [anon_sym_map_LBRACK] = ACTIONS(4357), + [anon_sym_chan] = ACTIONS(4357), + [anon_sym_thread] = ACTIONS(4357), + [anon_sym_atomic] = ACTIONS(4357), + [anon_sym_assert] = ACTIONS(4357), + [anon_sym_defer] = ACTIONS(4357), + [anon_sym_goto] = ACTIONS(4357), + [anon_sym_break] = ACTIONS(4357), + [anon_sym_continue] = ACTIONS(4357), + [anon_sym_return] = ACTIONS(4357), + [anon_sym_DOLLARfor] = ACTIONS(4357), + [anon_sym_for] = ACTIONS(4357), + [anon_sym_POUND] = ACTIONS(4357), + [anon_sym_asm] = ACTIONS(4357), + [anon_sym_AT_LBRACK] = ACTIONS(4357), + [sym___double_quote] = ACTIONS(4357), + [sym___single_quote] = ACTIONS(4357), + [sym___c_double_quote] = ACTIONS(4357), + [sym___c_single_quote] = ACTIONS(4357), + [sym___r_double_quote] = ACTIONS(4357), + [sym___r_single_quote] = ACTIONS(4357), }, [1533] = { [sym_line_comment] = STATE(1533), [sym_block_comment] = STATE(1533), - [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(4359), + [sym_identifier] = ACTIONS(4361), + [anon_sym_LF] = ACTIONS(4361), + [anon_sym_CR] = ACTIONS(4361), + [anon_sym_CR_LF] = ACTIONS(4361), [anon_sym_SLASH_SLASH] = ACTIONS(497), [anon_sym_SLASH_STAR] = ACTIONS(499), - [anon_sym_DOT] = ACTIONS(4359), - [anon_sym_LBRACE] = ACTIONS(4359), - [anon_sym_const] = ACTIONS(4359), - [anon_sym_LPAREN] = ACTIONS(4359), - [anon_sym___global] = ACTIONS(4359), - [anon_sym_type] = ACTIONS(4359), - [anon_sym_fn] = ACTIONS(4359), - [anon_sym_PLUS] = ACTIONS(4359), - [anon_sym_DASH] = ACTIONS(4359), - [anon_sym_STAR] = ACTIONS(4359), - [anon_sym_struct] = ACTIONS(4359), - [anon_sym_union] = ACTIONS(4359), - [anon_sym_pub] = ACTIONS(4359), - [anon_sym_mut] = ACTIONS(4359), - [anon_sym_enum] = ACTIONS(4359), - [anon_sym_interface] = ACTIONS(4359), - [anon_sym_QMARK] = ACTIONS(4359), - [anon_sym_BANG] = ACTIONS(4359), - [anon_sym_go] = ACTIONS(4359), - [anon_sym_spawn] = ACTIONS(4359), - [anon_sym_json_DOTdecode] = ACTIONS(4359), - [anon_sym_LBRACK2] = ACTIONS(4359), - [anon_sym_TILDE] = ACTIONS(4359), - [anon_sym_CARET] = ACTIONS(4359), - [anon_sym_AMP] = ACTIONS(4359), - [anon_sym_LT_DASH] = ACTIONS(4359), - [sym_none] = ACTIONS(4359), - [sym_true] = ACTIONS(4359), - [sym_false] = ACTIONS(4359), - [sym_nil] = ACTIONS(4359), - [anon_sym_if] = ACTIONS(4359), - [anon_sym_DOLLARif] = ACTIONS(4359), - [anon_sym_match] = ACTIONS(4359), - [anon_sym_select] = ACTIONS(4359), - [anon_sym_lock] = ACTIONS(4359), - [anon_sym_rlock] = ACTIONS(4359), - [anon_sym_unsafe] = ACTIONS(4359), - [anon_sym_sql] = ACTIONS(4359), - [sym_int_literal] = ACTIONS(4359), - [sym_float_literal] = ACTIONS(4359), - [sym_rune_literal] = ACTIONS(4359), - [sym_pseudo_compile_time_identifier] = ACTIONS(4359), - [anon_sym_shared] = ACTIONS(4359), - [anon_sym_map_LBRACK] = ACTIONS(4359), - [anon_sym_chan] = ACTIONS(4359), - [anon_sym_thread] = ACTIONS(4359), - [anon_sym_atomic] = ACTIONS(4359), - [anon_sym_assert] = ACTIONS(4359), - [anon_sym_defer] = ACTIONS(4359), - [anon_sym_goto] = ACTIONS(4359), - [anon_sym_break] = ACTIONS(4359), - [anon_sym_continue] = ACTIONS(4359), - [anon_sym_return] = ACTIONS(4359), - [anon_sym_DOLLARfor] = ACTIONS(4359), - [anon_sym_for] = ACTIONS(4359), - [anon_sym_POUND] = ACTIONS(4359), - [anon_sym_asm] = ACTIONS(4359), - [anon_sym_AT_LBRACK] = ACTIONS(4359), - [sym___double_quote] = ACTIONS(4359), - [sym___single_quote] = ACTIONS(4359), - [sym___c_double_quote] = ACTIONS(4359), - [sym___c_single_quote] = ACTIONS(4359), - [sym___r_double_quote] = ACTIONS(4359), - [sym___r_single_quote] = ACTIONS(4359), + [anon_sym_DOT] = ACTIONS(4361), + [anon_sym_LBRACE] = ACTIONS(4361), + [anon_sym_const] = ACTIONS(4361), + [anon_sym_LPAREN] = ACTIONS(4361), + [anon_sym___global] = ACTIONS(4361), + [anon_sym_type] = ACTIONS(4361), + [anon_sym_fn] = ACTIONS(4361), + [anon_sym_PLUS] = ACTIONS(4361), + [anon_sym_DASH] = ACTIONS(4361), + [anon_sym_STAR] = ACTIONS(4361), + [anon_sym_struct] = ACTIONS(4361), + [anon_sym_union] = ACTIONS(4361), + [anon_sym_pub] = ACTIONS(4361), + [anon_sym_mut] = ACTIONS(4361), + [anon_sym_enum] = ACTIONS(4361), + [anon_sym_interface] = ACTIONS(4361), + [anon_sym_QMARK] = ACTIONS(4361), + [anon_sym_BANG] = ACTIONS(4361), + [anon_sym_go] = ACTIONS(4361), + [anon_sym_spawn] = ACTIONS(4361), + [anon_sym_json_DOTdecode] = ACTIONS(4361), + [anon_sym_LBRACK2] = ACTIONS(4361), + [anon_sym_TILDE] = ACTIONS(4361), + [anon_sym_CARET] = ACTIONS(4361), + [anon_sym_AMP] = ACTIONS(4361), + [anon_sym_LT_DASH] = ACTIONS(4361), + [sym_none] = ACTIONS(4361), + [sym_true] = ACTIONS(4361), + [sym_false] = ACTIONS(4361), + [sym_nil] = ACTIONS(4361), + [anon_sym_if] = ACTIONS(4361), + [anon_sym_DOLLARif] = ACTIONS(4361), + [anon_sym_match] = ACTIONS(4361), + [anon_sym_select] = ACTIONS(4361), + [anon_sym_lock] = ACTIONS(4361), + [anon_sym_rlock] = ACTIONS(4361), + [anon_sym_unsafe] = ACTIONS(4361), + [anon_sym_sql] = ACTIONS(4361), + [sym_int_literal] = ACTIONS(4361), + [sym_float_literal] = ACTIONS(4361), + [sym_rune_literal] = ACTIONS(4361), + [sym_pseudo_compile_time_identifier] = ACTIONS(4361), + [anon_sym_shared] = ACTIONS(4361), + [anon_sym_map_LBRACK] = ACTIONS(4361), + [anon_sym_chan] = ACTIONS(4361), + [anon_sym_thread] = ACTIONS(4361), + [anon_sym_atomic] = ACTIONS(4361), + [anon_sym_assert] = ACTIONS(4361), + [anon_sym_defer] = ACTIONS(4361), + [anon_sym_goto] = ACTIONS(4361), + [anon_sym_break] = ACTIONS(4361), + [anon_sym_continue] = ACTIONS(4361), + [anon_sym_return] = ACTIONS(4361), + [anon_sym_DOLLARfor] = ACTIONS(4361), + [anon_sym_for] = ACTIONS(4361), + [anon_sym_POUND] = ACTIONS(4361), + [anon_sym_asm] = ACTIONS(4361), + [anon_sym_AT_LBRACK] = ACTIONS(4361), + [sym___double_quote] = ACTIONS(4361), + [sym___single_quote] = ACTIONS(4361), + [sym___c_double_quote] = ACTIONS(4361), + [sym___c_single_quote] = ACTIONS(4361), + [sym___r_double_quote] = ACTIONS(4361), + [sym___r_single_quote] = ACTIONS(4361), }, [1534] = { [sym_line_comment] = STATE(1534), [sym_block_comment] = STATE(1534), - [ts_builtin_sym_end] = ACTIONS(4361), - [sym_identifier] = ACTIONS(4363), - [anon_sym_LF] = ACTIONS(4363), - [anon_sym_CR] = ACTIONS(4363), - [anon_sym_CR_LF] = ACTIONS(4363), - [anon_sym_SLASH_SLASH] = ACTIONS(497), - [anon_sym_SLASH_STAR] = ACTIONS(499), - [anon_sym_DOT] = ACTIONS(4363), + [sym_reference_expression] = STATE(4498), + [sym_type_reference_expression] = STATE(3460), + [sym_plain_type] = STATE(2345), + [sym__plain_type_without_special] = STATE(2360), + [sym_anon_struct_type] = STATE(2362), + [sym_multi_return_type] = STATE(2360), + [sym_result_type] = STATE(2360), + [sym_option_type] = STATE(2360), + [sym_qualified_type] = STATE(3460), + [sym_fixed_array_type] = STATE(2362), + [sym_array_type] = STATE(2362), + [sym_pointer_type] = STATE(2362), + [sym_wrong_pointer_type] = STATE(2362), + [sym_map_type] = STATE(2362), + [sym_channel_type] = STATE(2362), + [sym_shared_type] = STATE(2362), + [sym_thread_type] = STATE(2362), + [sym_atomic_type] = STATE(2362), + [sym_generic_type] = STATE(2362), + [sym_function_type] = STATE(2362), + [sym_identifier] = ACTIONS(565), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(627), + [anon_sym_as] = ACTIONS(627), + [anon_sym_LBRACE] = ACTIONS(625), + [anon_sym_COMMA] = ACTIONS(625), + [anon_sym_LPAREN] = ACTIONS(625), + [anon_sym_PIPE] = ACTIONS(627), + [anon_sym_fn] = ACTIONS(571), + [anon_sym_PLUS] = ACTIONS(627), + [anon_sym_DASH] = ACTIONS(627), + [anon_sym_STAR] = ACTIONS(625), + [anon_sym_SLASH] = ACTIONS(627), + [anon_sym_PERCENT] = ACTIONS(625), + [anon_sym_LT] = ACTIONS(627), + [anon_sym_GT] = ACTIONS(627), + [anon_sym_EQ_EQ] = ACTIONS(625), + [anon_sym_BANG_EQ] = ACTIONS(625), + [anon_sym_LT_EQ] = ACTIONS(625), + [anon_sym_GT_EQ] = ACTIONS(625), + [anon_sym_DOT_DOT_DOT] = ACTIONS(625), + [anon_sym_LBRACK] = ACTIONS(625), + [anon_sym_struct] = ACTIONS(575), + [anon_sym_PLUS_PLUS] = ACTIONS(625), + [anon_sym_DASH_DASH] = ACTIONS(625), + [anon_sym_QMARK] = ACTIONS(627), + [anon_sym_BANG] = ACTIONS(627), + [anon_sym_LBRACK2] = ACTIONS(627), + [anon_sym_CARET] = ACTIONS(625), + [anon_sym_AMP] = ACTIONS(627), + [anon_sym_LT_LT] = ACTIONS(625), + [anon_sym_GT_GT] = ACTIONS(627), + [anon_sym_GT_GT_GT] = ACTIONS(625), + [anon_sym_AMP_CARET] = ACTIONS(625), + [anon_sym_AMP_AMP] = ACTIONS(625), + [anon_sym_PIPE_PIPE] = ACTIONS(625), + [anon_sym_or] = ACTIONS(627), + [anon_sym_QMARK_DOT] = ACTIONS(625), + [anon_sym_POUND_LBRACK] = ACTIONS(625), + [anon_sym_is] = ACTIONS(627), + [anon_sym_BANGis] = ACTIONS(625), + [anon_sym_in] = ACTIONS(627), + [anon_sym_BANGin] = ACTIONS(625), + [anon_sym_COLON_EQ] = ACTIONS(625), + [anon_sym_shared] = ACTIONS(583), + [anon_sym_map_LBRACK] = ACTIONS(85), + [anon_sym_chan] = ACTIONS(87), + [anon_sym_thread] = ACTIONS(89), + [anon_sym_atomic] = ACTIONS(91), + [anon_sym_DOT_DOT] = ACTIONS(627), + }, + [1535] = { + [sym_line_comment] = STATE(1535), + [sym_block_comment] = STATE(1535), + [sym_import_declaration] = STATE(1586), + [aux_sym_import_list_repeat1] = STATE(1517), + [ts_builtin_sym_end] = ACTIONS(4363), + [sym_identifier] = ACTIONS(4365), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_import] = ACTIONS(15), + [anon_sym_DOT] = ACTIONS(4365), [anon_sym_LBRACE] = ACTIONS(4363), - [anon_sym_const] = ACTIONS(4363), + [anon_sym_const] = ACTIONS(4365), [anon_sym_LPAREN] = ACTIONS(4363), - [anon_sym___global] = ACTIONS(4363), - [anon_sym_type] = ACTIONS(4363), - [anon_sym_fn] = ACTIONS(4363), + [anon_sym___global] = ACTIONS(4365), + [anon_sym_type] = ACTIONS(4365), + [anon_sym_fn] = ACTIONS(4365), [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_struct] = ACTIONS(4365), + [anon_sym_union] = ACTIONS(4365), + [anon_sym_pub] = ACTIONS(4365), + [anon_sym_mut] = ACTIONS(4365), + [anon_sym_enum] = ACTIONS(4365), + [anon_sym_interface] = ACTIONS(4365), [anon_sym_QMARK] = ACTIONS(4363), [anon_sym_BANG] = ACTIONS(4363), - [anon_sym_go] = ACTIONS(4363), - [anon_sym_spawn] = ACTIONS(4363), + [anon_sym_go] = ACTIONS(4365), + [anon_sym_spawn] = ACTIONS(4365), [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_none] = ACTIONS(4365), + [sym_true] = ACTIONS(4365), + [sym_false] = ACTIONS(4365), + [sym_nil] = ACTIONS(4365), + [anon_sym_if] = ACTIONS(4365), + [anon_sym_DOLLARif] = ACTIONS(4365), + [anon_sym_match] = ACTIONS(4365), + [anon_sym_select] = ACTIONS(4365), + [anon_sym_lock] = ACTIONS(4365), + [anon_sym_rlock] = ACTIONS(4365), + [anon_sym_unsafe] = ACTIONS(4365), + [anon_sym_sql] = ACTIONS(4365), + [sym_int_literal] = ACTIONS(4365), [sym_float_literal] = ACTIONS(4363), [sym_rune_literal] = ACTIONS(4363), - [sym_pseudo_compile_time_identifier] = ACTIONS(4363), - [anon_sym_shared] = ACTIONS(4363), + [sym_pseudo_compile_time_identifier] = ACTIONS(4365), + [anon_sym_shared] = ACTIONS(4365), [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_chan] = ACTIONS(4365), + [anon_sym_thread] = ACTIONS(4365), + [anon_sym_atomic] = ACTIONS(4365), + [anon_sym_assert] = ACTIONS(4365), + [anon_sym_defer] = ACTIONS(4365), + [anon_sym_goto] = ACTIONS(4365), + [anon_sym_break] = ACTIONS(4365), + [anon_sym_continue] = ACTIONS(4365), + [anon_sym_return] = ACTIONS(4365), + [anon_sym_DOLLARfor] = ACTIONS(4365), + [anon_sym_for] = ACTIONS(4365), [anon_sym_POUND] = ACTIONS(4363), - [anon_sym_asm] = ACTIONS(4363), + [anon_sym_asm] = ACTIONS(4365), [anon_sym_AT_LBRACK] = ACTIONS(4363), [sym___double_quote] = ACTIONS(4363), [sym___single_quote] = ACTIONS(4363), @@ -183355,3115 +183489,2967 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym___r_double_quote] = ACTIONS(4363), [sym___r_single_quote] = ACTIONS(4363), }, - [1535] = { - [sym_line_comment] = STATE(1535), - [sym_block_comment] = STATE(1535), - [ts_builtin_sym_end] = ACTIONS(4365), - [sym_identifier] = ACTIONS(4367), - [anon_sym_LF] = ACTIONS(4367), - [anon_sym_CR] = ACTIONS(4367), - [anon_sym_CR_LF] = ACTIONS(4367), - [anon_sym_SLASH_SLASH] = ACTIONS(497), - [anon_sym_SLASH_STAR] = ACTIONS(499), - [anon_sym_DOT] = ACTIONS(4367), - [anon_sym_LBRACE] = ACTIONS(4367), - [anon_sym_const] = ACTIONS(4367), - [anon_sym_LPAREN] = ACTIONS(4367), - [anon_sym___global] = ACTIONS(4367), - [anon_sym_type] = ACTIONS(4367), - [anon_sym_fn] = ACTIONS(4367), - [anon_sym_PLUS] = ACTIONS(4367), - [anon_sym_DASH] = ACTIONS(4367), - [anon_sym_STAR] = ACTIONS(4367), - [anon_sym_struct] = ACTIONS(4367), - [anon_sym_union] = ACTIONS(4367), - [anon_sym_pub] = ACTIONS(4367), - [anon_sym_mut] = ACTIONS(4367), - [anon_sym_enum] = ACTIONS(4367), - [anon_sym_interface] = ACTIONS(4367), - [anon_sym_QMARK] = ACTIONS(4367), - [anon_sym_BANG] = ACTIONS(4367), - [anon_sym_go] = ACTIONS(4367), - [anon_sym_spawn] = ACTIONS(4367), - [anon_sym_json_DOTdecode] = ACTIONS(4367), - [anon_sym_LBRACK2] = ACTIONS(4367), - [anon_sym_TILDE] = ACTIONS(4367), - [anon_sym_CARET] = ACTIONS(4367), - [anon_sym_AMP] = ACTIONS(4367), - [anon_sym_LT_DASH] = ACTIONS(4367), - [sym_none] = ACTIONS(4367), - [sym_true] = ACTIONS(4367), - [sym_false] = ACTIONS(4367), - [sym_nil] = ACTIONS(4367), - [anon_sym_if] = ACTIONS(4367), - [anon_sym_DOLLARif] = ACTIONS(4367), - [anon_sym_match] = ACTIONS(4367), - [anon_sym_select] = ACTIONS(4367), - [anon_sym_lock] = ACTIONS(4367), - [anon_sym_rlock] = ACTIONS(4367), - [anon_sym_unsafe] = ACTIONS(4367), - [anon_sym_sql] = ACTIONS(4367), - [sym_int_literal] = ACTIONS(4367), - [sym_float_literal] = ACTIONS(4367), - [sym_rune_literal] = ACTIONS(4367), - [sym_pseudo_compile_time_identifier] = ACTIONS(4367), - [anon_sym_shared] = ACTIONS(4367), - [anon_sym_map_LBRACK] = ACTIONS(4367), - [anon_sym_chan] = ACTIONS(4367), - [anon_sym_thread] = ACTIONS(4367), - [anon_sym_atomic] = ACTIONS(4367), - [anon_sym_assert] = ACTIONS(4367), - [anon_sym_defer] = ACTIONS(4367), - [anon_sym_goto] = ACTIONS(4367), - [anon_sym_break] = ACTIONS(4367), - [anon_sym_continue] = ACTIONS(4367), - [anon_sym_return] = ACTIONS(4367), - [anon_sym_DOLLARfor] = ACTIONS(4367), - [anon_sym_for] = ACTIONS(4367), - [anon_sym_POUND] = ACTIONS(4367), - [anon_sym_asm] = ACTIONS(4367), - [anon_sym_AT_LBRACK] = ACTIONS(4367), - [sym___double_quote] = ACTIONS(4367), - [sym___single_quote] = ACTIONS(4367), - [sym___c_double_quote] = ACTIONS(4367), - [sym___c_single_quote] = ACTIONS(4367), - [sym___r_double_quote] = ACTIONS(4367), - [sym___r_single_quote] = ACTIONS(4367), - }, [1536] = { [sym_line_comment] = STATE(1536), [sym_block_comment] = STATE(1536), - [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(4367), + [sym_identifier] = ACTIONS(4369), + [anon_sym_LF] = ACTIONS(4369), + [anon_sym_CR] = ACTIONS(4369), + [anon_sym_CR_LF] = ACTIONS(4369), [anon_sym_SLASH_SLASH] = ACTIONS(497), [anon_sym_SLASH_STAR] = ACTIONS(499), - [anon_sym_DOT] = ACTIONS(4371), - [anon_sym_LBRACE] = ACTIONS(4371), - [anon_sym_const] = ACTIONS(4371), - [anon_sym_LPAREN] = ACTIONS(4371), - [anon_sym___global] = ACTIONS(4371), - [anon_sym_type] = ACTIONS(4371), - [anon_sym_fn] = ACTIONS(4371), - [anon_sym_PLUS] = ACTIONS(4371), - [anon_sym_DASH] = ACTIONS(4371), - [anon_sym_STAR] = ACTIONS(4371), - [anon_sym_struct] = ACTIONS(4371), - [anon_sym_union] = ACTIONS(4371), - [anon_sym_pub] = ACTIONS(4371), - [anon_sym_mut] = ACTIONS(4371), - [anon_sym_enum] = ACTIONS(4371), - [anon_sym_interface] = ACTIONS(4371), - [anon_sym_QMARK] = ACTIONS(4371), - [anon_sym_BANG] = ACTIONS(4371), - [anon_sym_go] = ACTIONS(4371), - [anon_sym_spawn] = ACTIONS(4371), - [anon_sym_json_DOTdecode] = ACTIONS(4371), - [anon_sym_LBRACK2] = ACTIONS(4371), - [anon_sym_TILDE] = ACTIONS(4371), - [anon_sym_CARET] = ACTIONS(4371), - [anon_sym_AMP] = ACTIONS(4371), - [anon_sym_LT_DASH] = ACTIONS(4371), - [sym_none] = ACTIONS(4371), - [sym_true] = ACTIONS(4371), - [sym_false] = ACTIONS(4371), - [sym_nil] = ACTIONS(4371), - [anon_sym_if] = ACTIONS(4371), - [anon_sym_DOLLARif] = ACTIONS(4371), - [anon_sym_match] = ACTIONS(4371), - [anon_sym_select] = ACTIONS(4371), - [anon_sym_lock] = ACTIONS(4371), - [anon_sym_rlock] = ACTIONS(4371), - [anon_sym_unsafe] = ACTIONS(4371), - [anon_sym_sql] = ACTIONS(4371), - [sym_int_literal] = ACTIONS(4371), - [sym_float_literal] = ACTIONS(4371), - [sym_rune_literal] = ACTIONS(4371), - [sym_pseudo_compile_time_identifier] = ACTIONS(4371), - [anon_sym_shared] = ACTIONS(4371), - [anon_sym_map_LBRACK] = ACTIONS(4371), - [anon_sym_chan] = ACTIONS(4371), - [anon_sym_thread] = ACTIONS(4371), - [anon_sym_atomic] = ACTIONS(4371), - [anon_sym_assert] = ACTIONS(4371), - [anon_sym_defer] = ACTIONS(4371), - [anon_sym_goto] = ACTIONS(4371), - [anon_sym_break] = ACTIONS(4371), - [anon_sym_continue] = ACTIONS(4371), - [anon_sym_return] = ACTIONS(4371), - [anon_sym_DOLLARfor] = ACTIONS(4371), - [anon_sym_for] = ACTIONS(4371), - [anon_sym_POUND] = ACTIONS(4371), - [anon_sym_asm] = ACTIONS(4371), - [anon_sym_AT_LBRACK] = ACTIONS(4371), - [sym___double_quote] = ACTIONS(4371), - [sym___single_quote] = ACTIONS(4371), - [sym___c_double_quote] = ACTIONS(4371), - [sym___c_single_quote] = ACTIONS(4371), - [sym___r_double_quote] = ACTIONS(4371), - [sym___r_single_quote] = ACTIONS(4371), + [anon_sym_DOT] = ACTIONS(4369), + [anon_sym_LBRACE] = ACTIONS(4369), + [anon_sym_const] = ACTIONS(4369), + [anon_sym_LPAREN] = ACTIONS(4369), + [anon_sym___global] = ACTIONS(4369), + [anon_sym_type] = ACTIONS(4369), + [anon_sym_fn] = ACTIONS(4369), + [anon_sym_PLUS] = ACTIONS(4369), + [anon_sym_DASH] = ACTIONS(4369), + [anon_sym_STAR] = ACTIONS(4369), + [anon_sym_struct] = ACTIONS(4369), + [anon_sym_union] = ACTIONS(4369), + [anon_sym_pub] = ACTIONS(4369), + [anon_sym_mut] = ACTIONS(4369), + [anon_sym_enum] = ACTIONS(4369), + [anon_sym_interface] = ACTIONS(4369), + [anon_sym_QMARK] = ACTIONS(4369), + [anon_sym_BANG] = ACTIONS(4369), + [anon_sym_go] = ACTIONS(4369), + [anon_sym_spawn] = ACTIONS(4369), + [anon_sym_json_DOTdecode] = ACTIONS(4369), + [anon_sym_LBRACK2] = ACTIONS(4369), + [anon_sym_TILDE] = ACTIONS(4369), + [anon_sym_CARET] = ACTIONS(4369), + [anon_sym_AMP] = ACTIONS(4369), + [anon_sym_LT_DASH] = ACTIONS(4369), + [sym_none] = ACTIONS(4369), + [sym_true] = ACTIONS(4369), + [sym_false] = ACTIONS(4369), + [sym_nil] = ACTIONS(4369), + [anon_sym_if] = ACTIONS(4369), + [anon_sym_DOLLARif] = ACTIONS(4369), + [anon_sym_match] = ACTIONS(4369), + [anon_sym_select] = ACTIONS(4369), + [anon_sym_lock] = ACTIONS(4369), + [anon_sym_rlock] = ACTIONS(4369), + [anon_sym_unsafe] = ACTIONS(4369), + [anon_sym_sql] = ACTIONS(4369), + [sym_int_literal] = ACTIONS(4369), + [sym_float_literal] = ACTIONS(4369), + [sym_rune_literal] = ACTIONS(4369), + [sym_pseudo_compile_time_identifier] = ACTIONS(4369), + [anon_sym_shared] = ACTIONS(4369), + [anon_sym_map_LBRACK] = ACTIONS(4369), + [anon_sym_chan] = ACTIONS(4369), + [anon_sym_thread] = ACTIONS(4369), + [anon_sym_atomic] = ACTIONS(4369), + [anon_sym_assert] = ACTIONS(4369), + [anon_sym_defer] = ACTIONS(4369), + [anon_sym_goto] = ACTIONS(4369), + [anon_sym_break] = ACTIONS(4369), + [anon_sym_continue] = ACTIONS(4369), + [anon_sym_return] = ACTIONS(4369), + [anon_sym_DOLLARfor] = ACTIONS(4369), + [anon_sym_for] = ACTIONS(4369), + [anon_sym_POUND] = ACTIONS(4369), + [anon_sym_asm] = ACTIONS(4369), + [anon_sym_AT_LBRACK] = ACTIONS(4369), + [sym___double_quote] = ACTIONS(4369), + [sym___single_quote] = ACTIONS(4369), + [sym___c_double_quote] = ACTIONS(4369), + [sym___c_single_quote] = ACTIONS(4369), + [sym___r_double_quote] = ACTIONS(4369), + [sym___r_single_quote] = ACTIONS(4369), }, [1537] = { [sym_line_comment] = STATE(1537), [sym_block_comment] = STATE(1537), - [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(4371), + [sym_identifier] = ACTIONS(4373), + [anon_sym_LF] = ACTIONS(4373), + [anon_sym_CR] = ACTIONS(4373), + [anon_sym_CR_LF] = ACTIONS(4373), [anon_sym_SLASH_SLASH] = ACTIONS(497), [anon_sym_SLASH_STAR] = ACTIONS(499), - [anon_sym_DOT] = ACTIONS(4375), - [anon_sym_LBRACE] = ACTIONS(4375), - [anon_sym_const] = ACTIONS(4375), - [anon_sym_LPAREN] = ACTIONS(4375), - [anon_sym___global] = ACTIONS(4375), - [anon_sym_type] = ACTIONS(4375), - [anon_sym_fn] = ACTIONS(4375), - [anon_sym_PLUS] = ACTIONS(4375), - [anon_sym_DASH] = ACTIONS(4375), - [anon_sym_STAR] = ACTIONS(4375), - [anon_sym_struct] = ACTIONS(4375), - [anon_sym_union] = ACTIONS(4375), - [anon_sym_pub] = ACTIONS(4375), - [anon_sym_mut] = ACTIONS(4375), - [anon_sym_enum] = ACTIONS(4375), - [anon_sym_interface] = ACTIONS(4375), - [anon_sym_QMARK] = ACTIONS(4375), - [anon_sym_BANG] = ACTIONS(4375), - [anon_sym_go] = ACTIONS(4375), - [anon_sym_spawn] = ACTIONS(4375), - [anon_sym_json_DOTdecode] = ACTIONS(4375), - [anon_sym_LBRACK2] = ACTIONS(4375), - [anon_sym_TILDE] = ACTIONS(4375), - [anon_sym_CARET] = ACTIONS(4375), - [anon_sym_AMP] = ACTIONS(4375), - [anon_sym_LT_DASH] = ACTIONS(4375), - [sym_none] = ACTIONS(4375), - [sym_true] = ACTIONS(4375), - [sym_false] = ACTIONS(4375), - [sym_nil] = ACTIONS(4375), - [anon_sym_if] = ACTIONS(4375), - [anon_sym_DOLLARif] = ACTIONS(4375), - [anon_sym_match] = ACTIONS(4375), - [anon_sym_select] = ACTIONS(4375), - [anon_sym_lock] = ACTIONS(4375), - [anon_sym_rlock] = ACTIONS(4375), - [anon_sym_unsafe] = ACTIONS(4375), - [anon_sym_sql] = ACTIONS(4375), - [sym_int_literal] = ACTIONS(4375), - [sym_float_literal] = ACTIONS(4375), - [sym_rune_literal] = ACTIONS(4375), - [sym_pseudo_compile_time_identifier] = ACTIONS(4375), - [anon_sym_shared] = ACTIONS(4375), - [anon_sym_map_LBRACK] = ACTIONS(4375), - [anon_sym_chan] = ACTIONS(4375), - [anon_sym_thread] = ACTIONS(4375), - [anon_sym_atomic] = ACTIONS(4375), - [anon_sym_assert] = ACTIONS(4375), - [anon_sym_defer] = ACTIONS(4375), - [anon_sym_goto] = ACTIONS(4375), - [anon_sym_break] = ACTIONS(4375), - [anon_sym_continue] = ACTIONS(4375), - [anon_sym_return] = ACTIONS(4375), - [anon_sym_DOLLARfor] = ACTIONS(4375), - [anon_sym_for] = ACTIONS(4375), - [anon_sym_POUND] = ACTIONS(4375), - [anon_sym_asm] = ACTIONS(4375), - [anon_sym_AT_LBRACK] = ACTIONS(4375), - [sym___double_quote] = ACTIONS(4375), - [sym___single_quote] = ACTIONS(4375), - [sym___c_double_quote] = ACTIONS(4375), - [sym___c_single_quote] = ACTIONS(4375), - [sym___r_double_quote] = ACTIONS(4375), - [sym___r_single_quote] = ACTIONS(4375), + [anon_sym_DOT] = ACTIONS(4373), + [anon_sym_LBRACE] = ACTIONS(4373), + [anon_sym_const] = ACTIONS(4373), + [anon_sym_LPAREN] = ACTIONS(4373), + [anon_sym___global] = ACTIONS(4373), + [anon_sym_type] = ACTIONS(4373), + [anon_sym_fn] = ACTIONS(4373), + [anon_sym_PLUS] = ACTIONS(4373), + [anon_sym_DASH] = ACTIONS(4373), + [anon_sym_STAR] = ACTIONS(4373), + [anon_sym_struct] = ACTIONS(4373), + [anon_sym_union] = ACTIONS(4373), + [anon_sym_pub] = ACTIONS(4373), + [anon_sym_mut] = ACTIONS(4373), + [anon_sym_enum] = ACTIONS(4373), + [anon_sym_interface] = ACTIONS(4373), + [anon_sym_QMARK] = ACTIONS(4373), + [anon_sym_BANG] = ACTIONS(4373), + [anon_sym_go] = ACTIONS(4373), + [anon_sym_spawn] = ACTIONS(4373), + [anon_sym_json_DOTdecode] = ACTIONS(4373), + [anon_sym_LBRACK2] = ACTIONS(4373), + [anon_sym_TILDE] = ACTIONS(4373), + [anon_sym_CARET] = ACTIONS(4373), + [anon_sym_AMP] = ACTIONS(4373), + [anon_sym_LT_DASH] = ACTIONS(4373), + [sym_none] = ACTIONS(4373), + [sym_true] = ACTIONS(4373), + [sym_false] = ACTIONS(4373), + [sym_nil] = ACTIONS(4373), + [anon_sym_if] = ACTIONS(4373), + [anon_sym_DOLLARif] = ACTIONS(4373), + [anon_sym_match] = ACTIONS(4373), + [anon_sym_select] = ACTIONS(4373), + [anon_sym_lock] = ACTIONS(4373), + [anon_sym_rlock] = ACTIONS(4373), + [anon_sym_unsafe] = ACTIONS(4373), + [anon_sym_sql] = ACTIONS(4373), + [sym_int_literal] = ACTIONS(4373), + [sym_float_literal] = ACTIONS(4373), + [sym_rune_literal] = ACTIONS(4373), + [sym_pseudo_compile_time_identifier] = ACTIONS(4373), + [anon_sym_shared] = ACTIONS(4373), + [anon_sym_map_LBRACK] = ACTIONS(4373), + [anon_sym_chan] = ACTIONS(4373), + [anon_sym_thread] = ACTIONS(4373), + [anon_sym_atomic] = ACTIONS(4373), + [anon_sym_assert] = ACTIONS(4373), + [anon_sym_defer] = ACTIONS(4373), + [anon_sym_goto] = ACTIONS(4373), + [anon_sym_break] = ACTIONS(4373), + [anon_sym_continue] = ACTIONS(4373), + [anon_sym_return] = ACTIONS(4373), + [anon_sym_DOLLARfor] = ACTIONS(4373), + [anon_sym_for] = ACTIONS(4373), + [anon_sym_POUND] = ACTIONS(4373), + [anon_sym_asm] = ACTIONS(4373), + [anon_sym_AT_LBRACK] = ACTIONS(4373), + [sym___double_quote] = ACTIONS(4373), + [sym___single_quote] = ACTIONS(4373), + [sym___c_double_quote] = ACTIONS(4373), + [sym___c_single_quote] = ACTIONS(4373), + [sym___r_double_quote] = ACTIONS(4373), + [sym___r_single_quote] = ACTIONS(4373), }, [1538] = { [sym_line_comment] = STATE(1538), [sym_block_comment] = STATE(1538), - [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(4375), + [sym_identifier] = ACTIONS(4377), + [anon_sym_LF] = ACTIONS(4377), + [anon_sym_CR] = ACTIONS(4377), + [anon_sym_CR_LF] = ACTIONS(4377), [anon_sym_SLASH_SLASH] = ACTIONS(497), [anon_sym_SLASH_STAR] = ACTIONS(499), - [anon_sym_DOT] = ACTIONS(4379), - [anon_sym_LBRACE] = ACTIONS(4379), - [anon_sym_const] = ACTIONS(4379), - [anon_sym_LPAREN] = ACTIONS(4379), - [anon_sym___global] = ACTIONS(4379), - [anon_sym_type] = ACTIONS(4379), - [anon_sym_fn] = ACTIONS(4379), - [anon_sym_PLUS] = ACTIONS(4379), - [anon_sym_DASH] = ACTIONS(4379), - [anon_sym_STAR] = ACTIONS(4379), - [anon_sym_struct] = ACTIONS(4379), - [anon_sym_union] = ACTIONS(4379), - [anon_sym_pub] = ACTIONS(4379), - [anon_sym_mut] = ACTIONS(4379), - [anon_sym_enum] = ACTIONS(4379), - [anon_sym_interface] = ACTIONS(4379), - [anon_sym_QMARK] = ACTIONS(4379), - [anon_sym_BANG] = ACTIONS(4379), - [anon_sym_go] = ACTIONS(4379), - [anon_sym_spawn] = ACTIONS(4379), - [anon_sym_json_DOTdecode] = ACTIONS(4379), - [anon_sym_LBRACK2] = ACTIONS(4379), - [anon_sym_TILDE] = ACTIONS(4379), - [anon_sym_CARET] = ACTIONS(4379), - [anon_sym_AMP] = ACTIONS(4379), - [anon_sym_LT_DASH] = ACTIONS(4379), - [sym_none] = ACTIONS(4379), - [sym_true] = ACTIONS(4379), - [sym_false] = ACTIONS(4379), - [sym_nil] = ACTIONS(4379), - [anon_sym_if] = ACTIONS(4379), - [anon_sym_DOLLARif] = ACTIONS(4379), - [anon_sym_match] = ACTIONS(4379), - [anon_sym_select] = ACTIONS(4379), - [anon_sym_lock] = ACTIONS(4379), - [anon_sym_rlock] = ACTIONS(4379), - [anon_sym_unsafe] = ACTIONS(4379), - [anon_sym_sql] = ACTIONS(4379), - [sym_int_literal] = ACTIONS(4379), - [sym_float_literal] = ACTIONS(4379), - [sym_rune_literal] = ACTIONS(4379), - [sym_pseudo_compile_time_identifier] = ACTIONS(4379), - [anon_sym_shared] = ACTIONS(4379), - [anon_sym_map_LBRACK] = ACTIONS(4379), - [anon_sym_chan] = ACTIONS(4379), - [anon_sym_thread] = ACTIONS(4379), - [anon_sym_atomic] = ACTIONS(4379), - [anon_sym_assert] = ACTIONS(4379), - [anon_sym_defer] = ACTIONS(4379), - [anon_sym_goto] = ACTIONS(4379), - [anon_sym_break] = ACTIONS(4379), - [anon_sym_continue] = ACTIONS(4379), - [anon_sym_return] = ACTIONS(4379), - [anon_sym_DOLLARfor] = ACTIONS(4379), - [anon_sym_for] = ACTIONS(4379), - [anon_sym_POUND] = ACTIONS(4379), - [anon_sym_asm] = ACTIONS(4379), - [anon_sym_AT_LBRACK] = ACTIONS(4379), - [sym___double_quote] = ACTIONS(4379), - [sym___single_quote] = ACTIONS(4379), - [sym___c_double_quote] = ACTIONS(4379), - [sym___c_single_quote] = ACTIONS(4379), - [sym___r_double_quote] = ACTIONS(4379), - [sym___r_single_quote] = ACTIONS(4379), + [anon_sym_DOT] = ACTIONS(4377), + [anon_sym_LBRACE] = ACTIONS(4377), + [anon_sym_const] = ACTIONS(4377), + [anon_sym_LPAREN] = ACTIONS(4377), + [anon_sym___global] = ACTIONS(4377), + [anon_sym_type] = ACTIONS(4377), + [anon_sym_fn] = ACTIONS(4377), + [anon_sym_PLUS] = ACTIONS(4377), + [anon_sym_DASH] = ACTIONS(4377), + [anon_sym_STAR] = ACTIONS(4377), + [anon_sym_struct] = ACTIONS(4377), + [anon_sym_union] = ACTIONS(4377), + [anon_sym_pub] = ACTIONS(4377), + [anon_sym_mut] = ACTIONS(4377), + [anon_sym_enum] = ACTIONS(4377), + [anon_sym_interface] = ACTIONS(4377), + [anon_sym_QMARK] = ACTIONS(4377), + [anon_sym_BANG] = ACTIONS(4377), + [anon_sym_go] = ACTIONS(4377), + [anon_sym_spawn] = ACTIONS(4377), + [anon_sym_json_DOTdecode] = ACTIONS(4377), + [anon_sym_LBRACK2] = ACTIONS(4377), + [anon_sym_TILDE] = ACTIONS(4377), + [anon_sym_CARET] = ACTIONS(4377), + [anon_sym_AMP] = ACTIONS(4377), + [anon_sym_LT_DASH] = ACTIONS(4377), + [sym_none] = ACTIONS(4377), + [sym_true] = ACTIONS(4377), + [sym_false] = ACTIONS(4377), + [sym_nil] = ACTIONS(4377), + [anon_sym_if] = ACTIONS(4377), + [anon_sym_DOLLARif] = ACTIONS(4377), + [anon_sym_match] = ACTIONS(4377), + [anon_sym_select] = ACTIONS(4377), + [anon_sym_lock] = ACTIONS(4377), + [anon_sym_rlock] = ACTIONS(4377), + [anon_sym_unsafe] = ACTIONS(4377), + [anon_sym_sql] = ACTIONS(4377), + [sym_int_literal] = ACTIONS(4377), + [sym_float_literal] = ACTIONS(4377), + [sym_rune_literal] = ACTIONS(4377), + [sym_pseudo_compile_time_identifier] = ACTIONS(4377), + [anon_sym_shared] = ACTIONS(4377), + [anon_sym_map_LBRACK] = ACTIONS(4377), + [anon_sym_chan] = ACTIONS(4377), + [anon_sym_thread] = ACTIONS(4377), + [anon_sym_atomic] = ACTIONS(4377), + [anon_sym_assert] = ACTIONS(4377), + [anon_sym_defer] = ACTIONS(4377), + [anon_sym_goto] = ACTIONS(4377), + [anon_sym_break] = ACTIONS(4377), + [anon_sym_continue] = ACTIONS(4377), + [anon_sym_return] = ACTIONS(4377), + [anon_sym_DOLLARfor] = ACTIONS(4377), + [anon_sym_for] = ACTIONS(4377), + [anon_sym_POUND] = ACTIONS(4377), + [anon_sym_asm] = ACTIONS(4377), + [anon_sym_AT_LBRACK] = ACTIONS(4377), + [sym___double_quote] = ACTIONS(4377), + [sym___single_quote] = ACTIONS(4377), + [sym___c_double_quote] = ACTIONS(4377), + [sym___c_single_quote] = ACTIONS(4377), + [sym___r_double_quote] = ACTIONS(4377), + [sym___r_single_quote] = ACTIONS(4377), }, [1539] = { [sym_line_comment] = STATE(1539), [sym_block_comment] = STATE(1539), - [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(4379), + [sym_identifier] = ACTIONS(4381), + [anon_sym_LF] = ACTIONS(4381), + [anon_sym_CR] = ACTIONS(4381), + [anon_sym_CR_LF] = ACTIONS(4381), [anon_sym_SLASH_SLASH] = ACTIONS(497), [anon_sym_SLASH_STAR] = ACTIONS(499), - [anon_sym_DOT] = ACTIONS(4383), - [anon_sym_LBRACE] = ACTIONS(4383), - [anon_sym_const] = ACTIONS(4383), - [anon_sym_LPAREN] = ACTIONS(4383), - [anon_sym___global] = ACTIONS(4383), - [anon_sym_type] = ACTIONS(4383), - [anon_sym_fn] = ACTIONS(4383), - [anon_sym_PLUS] = ACTIONS(4383), - [anon_sym_DASH] = ACTIONS(4383), - [anon_sym_STAR] = ACTIONS(4383), - [anon_sym_struct] = ACTIONS(4383), - [anon_sym_union] = ACTIONS(4383), - [anon_sym_pub] = ACTIONS(4383), - [anon_sym_mut] = ACTIONS(4383), - [anon_sym_enum] = ACTIONS(4383), - [anon_sym_interface] = ACTIONS(4383), - [anon_sym_QMARK] = ACTIONS(4383), - [anon_sym_BANG] = ACTIONS(4383), - [anon_sym_go] = ACTIONS(4383), - [anon_sym_spawn] = ACTIONS(4383), - [anon_sym_json_DOTdecode] = ACTIONS(4383), - [anon_sym_LBRACK2] = ACTIONS(4383), - [anon_sym_TILDE] = ACTIONS(4383), - [anon_sym_CARET] = ACTIONS(4383), - [anon_sym_AMP] = ACTIONS(4383), - [anon_sym_LT_DASH] = ACTIONS(4383), - [sym_none] = ACTIONS(4383), - [sym_true] = ACTIONS(4383), - [sym_false] = ACTIONS(4383), - [sym_nil] = ACTIONS(4383), - [anon_sym_if] = ACTIONS(4383), - [anon_sym_DOLLARif] = ACTIONS(4383), - [anon_sym_match] = ACTIONS(4383), - [anon_sym_select] = ACTIONS(4383), - [anon_sym_lock] = ACTIONS(4383), - [anon_sym_rlock] = ACTIONS(4383), - [anon_sym_unsafe] = ACTIONS(4383), - [anon_sym_sql] = ACTIONS(4383), - [sym_int_literal] = ACTIONS(4383), - [sym_float_literal] = ACTIONS(4383), - [sym_rune_literal] = ACTIONS(4383), - [sym_pseudo_compile_time_identifier] = ACTIONS(4383), - [anon_sym_shared] = ACTIONS(4383), - [anon_sym_map_LBRACK] = ACTIONS(4383), - [anon_sym_chan] = ACTIONS(4383), - [anon_sym_thread] = ACTIONS(4383), - [anon_sym_atomic] = ACTIONS(4383), - [anon_sym_assert] = ACTIONS(4383), - [anon_sym_defer] = ACTIONS(4383), - [anon_sym_goto] = ACTIONS(4383), - [anon_sym_break] = ACTIONS(4383), - [anon_sym_continue] = ACTIONS(4383), - [anon_sym_return] = ACTIONS(4383), - [anon_sym_DOLLARfor] = ACTIONS(4383), - [anon_sym_for] = ACTIONS(4383), - [anon_sym_POUND] = ACTIONS(4383), - [anon_sym_asm] = ACTIONS(4383), - [anon_sym_AT_LBRACK] = ACTIONS(4383), - [sym___double_quote] = ACTIONS(4383), - [sym___single_quote] = ACTIONS(4383), - [sym___c_double_quote] = ACTIONS(4383), - [sym___c_single_quote] = ACTIONS(4383), - [sym___r_double_quote] = ACTIONS(4383), - [sym___r_single_quote] = ACTIONS(4383), + [anon_sym_DOT] = ACTIONS(4381), + [anon_sym_LBRACE] = ACTIONS(4381), + [anon_sym_const] = ACTIONS(4381), + [anon_sym_LPAREN] = ACTIONS(4381), + [anon_sym___global] = ACTIONS(4381), + [anon_sym_type] = ACTIONS(4381), + [anon_sym_fn] = ACTIONS(4381), + [anon_sym_PLUS] = ACTIONS(4381), + [anon_sym_DASH] = ACTIONS(4381), + [anon_sym_STAR] = ACTIONS(4381), + [anon_sym_struct] = ACTIONS(4381), + [anon_sym_union] = ACTIONS(4381), + [anon_sym_pub] = ACTIONS(4381), + [anon_sym_mut] = ACTIONS(4381), + [anon_sym_enum] = ACTIONS(4381), + [anon_sym_interface] = ACTIONS(4381), + [anon_sym_QMARK] = ACTIONS(4381), + [anon_sym_BANG] = ACTIONS(4381), + [anon_sym_go] = ACTIONS(4381), + [anon_sym_spawn] = ACTIONS(4381), + [anon_sym_json_DOTdecode] = ACTIONS(4381), + [anon_sym_LBRACK2] = ACTIONS(4381), + [anon_sym_TILDE] = ACTIONS(4381), + [anon_sym_CARET] = ACTIONS(4381), + [anon_sym_AMP] = ACTIONS(4381), + [anon_sym_LT_DASH] = ACTIONS(4381), + [sym_none] = ACTIONS(4381), + [sym_true] = ACTIONS(4381), + [sym_false] = ACTIONS(4381), + [sym_nil] = ACTIONS(4381), + [anon_sym_if] = ACTIONS(4381), + [anon_sym_DOLLARif] = ACTIONS(4381), + [anon_sym_match] = ACTIONS(4381), + [anon_sym_select] = ACTIONS(4381), + [anon_sym_lock] = ACTIONS(4381), + [anon_sym_rlock] = ACTIONS(4381), + [anon_sym_unsafe] = ACTIONS(4381), + [anon_sym_sql] = ACTIONS(4381), + [sym_int_literal] = ACTIONS(4381), + [sym_float_literal] = ACTIONS(4381), + [sym_rune_literal] = ACTIONS(4381), + [sym_pseudo_compile_time_identifier] = ACTIONS(4381), + [anon_sym_shared] = ACTIONS(4381), + [anon_sym_map_LBRACK] = ACTIONS(4381), + [anon_sym_chan] = ACTIONS(4381), + [anon_sym_thread] = ACTIONS(4381), + [anon_sym_atomic] = ACTIONS(4381), + [anon_sym_assert] = ACTIONS(4381), + [anon_sym_defer] = ACTIONS(4381), + [anon_sym_goto] = ACTIONS(4381), + [anon_sym_break] = ACTIONS(4381), + [anon_sym_continue] = ACTIONS(4381), + [anon_sym_return] = ACTIONS(4381), + [anon_sym_DOLLARfor] = ACTIONS(4381), + [anon_sym_for] = ACTIONS(4381), + [anon_sym_POUND] = ACTIONS(4381), + [anon_sym_asm] = ACTIONS(4381), + [anon_sym_AT_LBRACK] = ACTIONS(4381), + [sym___double_quote] = ACTIONS(4381), + [sym___single_quote] = ACTIONS(4381), + [sym___c_double_quote] = ACTIONS(4381), + [sym___c_single_quote] = ACTIONS(4381), + [sym___r_double_quote] = ACTIONS(4381), + [sym___r_single_quote] = ACTIONS(4381), }, [1540] = { [sym_line_comment] = STATE(1540), [sym_block_comment] = STATE(1540), - [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(4383), + [sym_identifier] = ACTIONS(4385), + [anon_sym_LF] = ACTIONS(4385), + [anon_sym_CR] = ACTIONS(4385), + [anon_sym_CR_LF] = ACTIONS(4385), [anon_sym_SLASH_SLASH] = ACTIONS(497), [anon_sym_SLASH_STAR] = ACTIONS(499), - [anon_sym_DOT] = ACTIONS(4387), - [anon_sym_LBRACE] = ACTIONS(4387), - [anon_sym_const] = ACTIONS(4387), - [anon_sym_LPAREN] = ACTIONS(4387), - [anon_sym___global] = ACTIONS(4387), - [anon_sym_type] = ACTIONS(4387), - [anon_sym_fn] = ACTIONS(4387), - [anon_sym_PLUS] = ACTIONS(4387), - [anon_sym_DASH] = ACTIONS(4387), - [anon_sym_STAR] = ACTIONS(4387), - [anon_sym_struct] = ACTIONS(4387), - [anon_sym_union] = ACTIONS(4387), - [anon_sym_pub] = ACTIONS(4387), - [anon_sym_mut] = ACTIONS(4387), - [anon_sym_enum] = ACTIONS(4387), - [anon_sym_interface] = ACTIONS(4387), - [anon_sym_QMARK] = ACTIONS(4387), - [anon_sym_BANG] = ACTIONS(4387), - [anon_sym_go] = ACTIONS(4387), - [anon_sym_spawn] = ACTIONS(4387), - [anon_sym_json_DOTdecode] = ACTIONS(4387), - [anon_sym_LBRACK2] = ACTIONS(4387), - [anon_sym_TILDE] = ACTIONS(4387), - [anon_sym_CARET] = ACTIONS(4387), - [anon_sym_AMP] = ACTIONS(4387), - [anon_sym_LT_DASH] = ACTIONS(4387), - [sym_none] = ACTIONS(4387), - [sym_true] = ACTIONS(4387), - [sym_false] = ACTIONS(4387), - [sym_nil] = ACTIONS(4387), - [anon_sym_if] = ACTIONS(4387), - [anon_sym_DOLLARif] = ACTIONS(4387), - [anon_sym_match] = ACTIONS(4387), - [anon_sym_select] = ACTIONS(4387), - [anon_sym_lock] = ACTIONS(4387), - [anon_sym_rlock] = ACTIONS(4387), - [anon_sym_unsafe] = ACTIONS(4387), - [anon_sym_sql] = ACTIONS(4387), - [sym_int_literal] = ACTIONS(4387), - [sym_float_literal] = ACTIONS(4387), - [sym_rune_literal] = ACTIONS(4387), - [sym_pseudo_compile_time_identifier] = ACTIONS(4387), - [anon_sym_shared] = ACTIONS(4387), - [anon_sym_map_LBRACK] = ACTIONS(4387), - [anon_sym_chan] = ACTIONS(4387), - [anon_sym_thread] = ACTIONS(4387), - [anon_sym_atomic] = ACTIONS(4387), - [anon_sym_assert] = ACTIONS(4387), - [anon_sym_defer] = ACTIONS(4387), - [anon_sym_goto] = ACTIONS(4387), - [anon_sym_break] = ACTIONS(4387), - [anon_sym_continue] = ACTIONS(4387), - [anon_sym_return] = ACTIONS(4387), - [anon_sym_DOLLARfor] = ACTIONS(4387), - [anon_sym_for] = ACTIONS(4387), - [anon_sym_POUND] = ACTIONS(4387), - [anon_sym_asm] = ACTIONS(4387), - [anon_sym_AT_LBRACK] = ACTIONS(4387), - [sym___double_quote] = ACTIONS(4387), - [sym___single_quote] = ACTIONS(4387), - [sym___c_double_quote] = ACTIONS(4387), - [sym___c_single_quote] = ACTIONS(4387), - [sym___r_double_quote] = ACTIONS(4387), - [sym___r_single_quote] = ACTIONS(4387), + [anon_sym_DOT] = ACTIONS(4385), + [anon_sym_LBRACE] = ACTIONS(4385), + [anon_sym_const] = ACTIONS(4385), + [anon_sym_LPAREN] = ACTIONS(4385), + [anon_sym___global] = ACTIONS(4385), + [anon_sym_type] = ACTIONS(4385), + [anon_sym_fn] = ACTIONS(4385), + [anon_sym_PLUS] = ACTIONS(4385), + [anon_sym_DASH] = ACTIONS(4385), + [anon_sym_STAR] = ACTIONS(4385), + [anon_sym_struct] = ACTIONS(4385), + [anon_sym_union] = ACTIONS(4385), + [anon_sym_pub] = ACTIONS(4385), + [anon_sym_mut] = ACTIONS(4385), + [anon_sym_enum] = ACTIONS(4385), + [anon_sym_interface] = ACTIONS(4385), + [anon_sym_QMARK] = ACTIONS(4385), + [anon_sym_BANG] = ACTIONS(4385), + [anon_sym_go] = ACTIONS(4385), + [anon_sym_spawn] = ACTIONS(4385), + [anon_sym_json_DOTdecode] = ACTIONS(4385), + [anon_sym_LBRACK2] = ACTIONS(4385), + [anon_sym_TILDE] = ACTIONS(4385), + [anon_sym_CARET] = ACTIONS(4385), + [anon_sym_AMP] = ACTIONS(4385), + [anon_sym_LT_DASH] = ACTIONS(4385), + [sym_none] = ACTIONS(4385), + [sym_true] = ACTIONS(4385), + [sym_false] = ACTIONS(4385), + [sym_nil] = ACTIONS(4385), + [anon_sym_if] = ACTIONS(4385), + [anon_sym_DOLLARif] = ACTIONS(4385), + [anon_sym_match] = ACTIONS(4385), + [anon_sym_select] = ACTIONS(4385), + [anon_sym_lock] = ACTIONS(4385), + [anon_sym_rlock] = ACTIONS(4385), + [anon_sym_unsafe] = ACTIONS(4385), + [anon_sym_sql] = ACTIONS(4385), + [sym_int_literal] = ACTIONS(4385), + [sym_float_literal] = ACTIONS(4385), + [sym_rune_literal] = ACTIONS(4385), + [sym_pseudo_compile_time_identifier] = ACTIONS(4385), + [anon_sym_shared] = ACTIONS(4385), + [anon_sym_map_LBRACK] = ACTIONS(4385), + [anon_sym_chan] = ACTIONS(4385), + [anon_sym_thread] = ACTIONS(4385), + [anon_sym_atomic] = ACTIONS(4385), + [anon_sym_assert] = ACTIONS(4385), + [anon_sym_defer] = ACTIONS(4385), + [anon_sym_goto] = ACTIONS(4385), + [anon_sym_break] = ACTIONS(4385), + [anon_sym_continue] = ACTIONS(4385), + [anon_sym_return] = ACTIONS(4385), + [anon_sym_DOLLARfor] = ACTIONS(4385), + [anon_sym_for] = ACTIONS(4385), + [anon_sym_POUND] = ACTIONS(4385), + [anon_sym_asm] = ACTIONS(4385), + [anon_sym_AT_LBRACK] = ACTIONS(4385), + [sym___double_quote] = ACTIONS(4385), + [sym___single_quote] = ACTIONS(4385), + [sym___c_double_quote] = ACTIONS(4385), + [sym___c_single_quote] = ACTIONS(4385), + [sym___r_double_quote] = ACTIONS(4385), + [sym___r_single_quote] = ACTIONS(4385), }, [1541] = { [sym_line_comment] = STATE(1541), [sym_block_comment] = STATE(1541), - [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(4387), + [sym_identifier] = ACTIONS(4389), + [anon_sym_LF] = ACTIONS(4389), + [anon_sym_CR] = ACTIONS(4389), + [anon_sym_CR_LF] = ACTIONS(4389), [anon_sym_SLASH_SLASH] = ACTIONS(497), [anon_sym_SLASH_STAR] = ACTIONS(499), - [anon_sym_DOT] = ACTIONS(4391), - [anon_sym_LBRACE] = ACTIONS(4391), - [anon_sym_const] = ACTIONS(4391), - [anon_sym_LPAREN] = ACTIONS(4391), - [anon_sym___global] = ACTIONS(4391), - [anon_sym_type] = ACTIONS(4391), - [anon_sym_fn] = ACTIONS(4391), - [anon_sym_PLUS] = ACTIONS(4391), - [anon_sym_DASH] = ACTIONS(4391), - [anon_sym_STAR] = ACTIONS(4391), - [anon_sym_struct] = ACTIONS(4391), - [anon_sym_union] = ACTIONS(4391), - [anon_sym_pub] = ACTIONS(4391), - [anon_sym_mut] = ACTIONS(4391), - [anon_sym_enum] = ACTIONS(4391), - [anon_sym_interface] = ACTIONS(4391), - [anon_sym_QMARK] = ACTIONS(4391), - [anon_sym_BANG] = ACTIONS(4391), - [anon_sym_go] = ACTIONS(4391), - [anon_sym_spawn] = ACTIONS(4391), - [anon_sym_json_DOTdecode] = ACTIONS(4391), - [anon_sym_LBRACK2] = ACTIONS(4391), - [anon_sym_TILDE] = ACTIONS(4391), - [anon_sym_CARET] = ACTIONS(4391), - [anon_sym_AMP] = ACTIONS(4391), - [anon_sym_LT_DASH] = ACTIONS(4391), - [sym_none] = ACTIONS(4391), - [sym_true] = ACTIONS(4391), - [sym_false] = ACTIONS(4391), - [sym_nil] = ACTIONS(4391), - [anon_sym_if] = ACTIONS(4391), - [anon_sym_DOLLARif] = ACTIONS(4391), - [anon_sym_match] = ACTIONS(4391), - [anon_sym_select] = ACTIONS(4391), - [anon_sym_lock] = ACTIONS(4391), - [anon_sym_rlock] = ACTIONS(4391), - [anon_sym_unsafe] = ACTIONS(4391), - [anon_sym_sql] = ACTIONS(4391), - [sym_int_literal] = ACTIONS(4391), - [sym_float_literal] = ACTIONS(4391), - [sym_rune_literal] = ACTIONS(4391), - [sym_pseudo_compile_time_identifier] = ACTIONS(4391), - [anon_sym_shared] = ACTIONS(4391), - [anon_sym_map_LBRACK] = ACTIONS(4391), - [anon_sym_chan] = ACTIONS(4391), - [anon_sym_thread] = ACTIONS(4391), - [anon_sym_atomic] = ACTIONS(4391), - [anon_sym_assert] = ACTIONS(4391), - [anon_sym_defer] = ACTIONS(4391), - [anon_sym_goto] = ACTIONS(4391), - [anon_sym_break] = ACTIONS(4391), - [anon_sym_continue] = ACTIONS(4391), - [anon_sym_return] = ACTIONS(4391), - [anon_sym_DOLLARfor] = ACTIONS(4391), - [anon_sym_for] = ACTIONS(4391), - [anon_sym_POUND] = ACTIONS(4391), - [anon_sym_asm] = ACTIONS(4391), - [anon_sym_AT_LBRACK] = ACTIONS(4391), - [sym___double_quote] = ACTIONS(4391), - [sym___single_quote] = ACTIONS(4391), - [sym___c_double_quote] = ACTIONS(4391), - [sym___c_single_quote] = ACTIONS(4391), - [sym___r_double_quote] = ACTIONS(4391), - [sym___r_single_quote] = ACTIONS(4391), + [anon_sym_DOT] = ACTIONS(4389), + [anon_sym_LBRACE] = ACTIONS(4389), + [anon_sym_const] = ACTIONS(4389), + [anon_sym_LPAREN] = ACTIONS(4389), + [anon_sym___global] = ACTIONS(4389), + [anon_sym_type] = ACTIONS(4389), + [anon_sym_fn] = ACTIONS(4389), + [anon_sym_PLUS] = ACTIONS(4389), + [anon_sym_DASH] = ACTIONS(4389), + [anon_sym_STAR] = ACTIONS(4389), + [anon_sym_struct] = ACTIONS(4389), + [anon_sym_union] = ACTIONS(4389), + [anon_sym_pub] = ACTIONS(4389), + [anon_sym_mut] = ACTIONS(4389), + [anon_sym_enum] = ACTIONS(4389), + [anon_sym_interface] = ACTIONS(4389), + [anon_sym_QMARK] = ACTIONS(4389), + [anon_sym_BANG] = ACTIONS(4389), + [anon_sym_go] = ACTIONS(4389), + [anon_sym_spawn] = ACTIONS(4389), + [anon_sym_json_DOTdecode] = ACTIONS(4389), + [anon_sym_LBRACK2] = ACTIONS(4389), + [anon_sym_TILDE] = ACTIONS(4389), + [anon_sym_CARET] = ACTIONS(4389), + [anon_sym_AMP] = ACTIONS(4389), + [anon_sym_LT_DASH] = ACTIONS(4389), + [sym_none] = ACTIONS(4389), + [sym_true] = ACTIONS(4389), + [sym_false] = ACTIONS(4389), + [sym_nil] = ACTIONS(4389), + [anon_sym_if] = ACTIONS(4389), + [anon_sym_DOLLARif] = ACTIONS(4389), + [anon_sym_match] = ACTIONS(4389), + [anon_sym_select] = ACTIONS(4389), + [anon_sym_lock] = ACTIONS(4389), + [anon_sym_rlock] = ACTIONS(4389), + [anon_sym_unsafe] = ACTIONS(4389), + [anon_sym_sql] = ACTIONS(4389), + [sym_int_literal] = ACTIONS(4389), + [sym_float_literal] = ACTIONS(4389), + [sym_rune_literal] = ACTIONS(4389), + [sym_pseudo_compile_time_identifier] = ACTIONS(4389), + [anon_sym_shared] = ACTIONS(4389), + [anon_sym_map_LBRACK] = ACTIONS(4389), + [anon_sym_chan] = ACTIONS(4389), + [anon_sym_thread] = ACTIONS(4389), + [anon_sym_atomic] = ACTIONS(4389), + [anon_sym_assert] = ACTIONS(4389), + [anon_sym_defer] = ACTIONS(4389), + [anon_sym_goto] = ACTIONS(4389), + [anon_sym_break] = ACTIONS(4389), + [anon_sym_continue] = ACTIONS(4389), + [anon_sym_return] = ACTIONS(4389), + [anon_sym_DOLLARfor] = ACTIONS(4389), + [anon_sym_for] = ACTIONS(4389), + [anon_sym_POUND] = ACTIONS(4389), + [anon_sym_asm] = ACTIONS(4389), + [anon_sym_AT_LBRACK] = ACTIONS(4389), + [sym___double_quote] = ACTIONS(4389), + [sym___single_quote] = ACTIONS(4389), + [sym___c_double_quote] = ACTIONS(4389), + [sym___c_single_quote] = ACTIONS(4389), + [sym___r_double_quote] = ACTIONS(4389), + [sym___r_single_quote] = ACTIONS(4389), }, [1542] = { [sym_line_comment] = STATE(1542), [sym_block_comment] = STATE(1542), - [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(4391), + [sym_identifier] = ACTIONS(4393), + [anon_sym_LF] = ACTIONS(4393), + [anon_sym_CR] = ACTIONS(4393), + [anon_sym_CR_LF] = ACTIONS(4393), [anon_sym_SLASH_SLASH] = ACTIONS(497), [anon_sym_SLASH_STAR] = ACTIONS(499), - [anon_sym_DOT] = ACTIONS(4395), - [anon_sym_LBRACE] = ACTIONS(4395), - [anon_sym_const] = ACTIONS(4395), - [anon_sym_LPAREN] = ACTIONS(4395), - [anon_sym___global] = ACTIONS(4395), - [anon_sym_type] = ACTIONS(4395), - [anon_sym_fn] = ACTIONS(4395), - [anon_sym_PLUS] = ACTIONS(4395), - [anon_sym_DASH] = ACTIONS(4395), - [anon_sym_STAR] = ACTIONS(4395), - [anon_sym_struct] = ACTIONS(4395), - [anon_sym_union] = ACTIONS(4395), - [anon_sym_pub] = ACTIONS(4395), - [anon_sym_mut] = ACTIONS(4395), - [anon_sym_enum] = ACTIONS(4395), - [anon_sym_interface] = ACTIONS(4395), - [anon_sym_QMARK] = ACTIONS(4395), - [anon_sym_BANG] = ACTIONS(4395), - [anon_sym_go] = ACTIONS(4395), - [anon_sym_spawn] = ACTIONS(4395), - [anon_sym_json_DOTdecode] = ACTIONS(4395), - [anon_sym_LBRACK2] = ACTIONS(4395), - [anon_sym_TILDE] = ACTIONS(4395), - [anon_sym_CARET] = ACTIONS(4395), - [anon_sym_AMP] = ACTIONS(4395), - [anon_sym_LT_DASH] = ACTIONS(4395), - [sym_none] = ACTIONS(4395), - [sym_true] = ACTIONS(4395), - [sym_false] = ACTIONS(4395), - [sym_nil] = ACTIONS(4395), - [anon_sym_if] = ACTIONS(4395), - [anon_sym_DOLLARif] = ACTIONS(4395), - [anon_sym_match] = ACTIONS(4395), - [anon_sym_select] = ACTIONS(4395), - [anon_sym_lock] = ACTIONS(4395), - [anon_sym_rlock] = ACTIONS(4395), - [anon_sym_unsafe] = ACTIONS(4395), - [anon_sym_sql] = ACTIONS(4395), - [sym_int_literal] = ACTIONS(4395), - [sym_float_literal] = ACTIONS(4395), - [sym_rune_literal] = ACTIONS(4395), - [sym_pseudo_compile_time_identifier] = ACTIONS(4395), - [anon_sym_shared] = ACTIONS(4395), - [anon_sym_map_LBRACK] = ACTIONS(4395), - [anon_sym_chan] = ACTIONS(4395), - [anon_sym_thread] = ACTIONS(4395), - [anon_sym_atomic] = ACTIONS(4395), - [anon_sym_assert] = ACTIONS(4395), - [anon_sym_defer] = ACTIONS(4395), - [anon_sym_goto] = ACTIONS(4395), - [anon_sym_break] = ACTIONS(4395), - [anon_sym_continue] = ACTIONS(4395), - [anon_sym_return] = ACTIONS(4395), - [anon_sym_DOLLARfor] = ACTIONS(4395), - [anon_sym_for] = ACTIONS(4395), - [anon_sym_POUND] = ACTIONS(4395), - [anon_sym_asm] = ACTIONS(4395), - [anon_sym_AT_LBRACK] = ACTIONS(4395), - [sym___double_quote] = ACTIONS(4395), - [sym___single_quote] = ACTIONS(4395), - [sym___c_double_quote] = ACTIONS(4395), - [sym___c_single_quote] = ACTIONS(4395), - [sym___r_double_quote] = ACTIONS(4395), - [sym___r_single_quote] = ACTIONS(4395), + [anon_sym_DOT] = ACTIONS(4393), + [anon_sym_LBRACE] = ACTIONS(4393), + [anon_sym_const] = ACTIONS(4393), + [anon_sym_LPAREN] = ACTIONS(4393), + [anon_sym___global] = ACTIONS(4393), + [anon_sym_type] = ACTIONS(4393), + [anon_sym_fn] = ACTIONS(4393), + [anon_sym_PLUS] = ACTIONS(4393), + [anon_sym_DASH] = ACTIONS(4393), + [anon_sym_STAR] = ACTIONS(4393), + [anon_sym_struct] = ACTIONS(4393), + [anon_sym_union] = ACTIONS(4393), + [anon_sym_pub] = ACTIONS(4393), + [anon_sym_mut] = ACTIONS(4393), + [anon_sym_enum] = ACTIONS(4393), + [anon_sym_interface] = ACTIONS(4393), + [anon_sym_QMARK] = ACTIONS(4393), + [anon_sym_BANG] = ACTIONS(4393), + [anon_sym_go] = ACTIONS(4393), + [anon_sym_spawn] = ACTIONS(4393), + [anon_sym_json_DOTdecode] = ACTIONS(4393), + [anon_sym_LBRACK2] = ACTIONS(4393), + [anon_sym_TILDE] = ACTIONS(4393), + [anon_sym_CARET] = ACTIONS(4393), + [anon_sym_AMP] = ACTIONS(4393), + [anon_sym_LT_DASH] = ACTIONS(4393), + [sym_none] = ACTIONS(4393), + [sym_true] = ACTIONS(4393), + [sym_false] = ACTIONS(4393), + [sym_nil] = ACTIONS(4393), + [anon_sym_if] = ACTIONS(4393), + [anon_sym_DOLLARif] = ACTIONS(4393), + [anon_sym_match] = ACTIONS(4393), + [anon_sym_select] = ACTIONS(4393), + [anon_sym_lock] = ACTIONS(4393), + [anon_sym_rlock] = ACTIONS(4393), + [anon_sym_unsafe] = ACTIONS(4393), + [anon_sym_sql] = ACTIONS(4393), + [sym_int_literal] = ACTIONS(4393), + [sym_float_literal] = ACTIONS(4393), + [sym_rune_literal] = ACTIONS(4393), + [sym_pseudo_compile_time_identifier] = ACTIONS(4393), + [anon_sym_shared] = ACTIONS(4393), + [anon_sym_map_LBRACK] = ACTIONS(4393), + [anon_sym_chan] = ACTIONS(4393), + [anon_sym_thread] = ACTIONS(4393), + [anon_sym_atomic] = ACTIONS(4393), + [anon_sym_assert] = ACTIONS(4393), + [anon_sym_defer] = ACTIONS(4393), + [anon_sym_goto] = ACTIONS(4393), + [anon_sym_break] = ACTIONS(4393), + [anon_sym_continue] = ACTIONS(4393), + [anon_sym_return] = ACTIONS(4393), + [anon_sym_DOLLARfor] = ACTIONS(4393), + [anon_sym_for] = ACTIONS(4393), + [anon_sym_POUND] = ACTIONS(4393), + [anon_sym_asm] = ACTIONS(4393), + [anon_sym_AT_LBRACK] = ACTIONS(4393), + [sym___double_quote] = ACTIONS(4393), + [sym___single_quote] = ACTIONS(4393), + [sym___c_double_quote] = ACTIONS(4393), + [sym___c_single_quote] = ACTIONS(4393), + [sym___r_double_quote] = ACTIONS(4393), + [sym___r_single_quote] = ACTIONS(4393), }, [1543] = { [sym_line_comment] = STATE(1543), [sym_block_comment] = STATE(1543), - [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(4395), + [sym_identifier] = ACTIONS(4397), + [anon_sym_LF] = ACTIONS(4397), + [anon_sym_CR] = ACTIONS(4397), + [anon_sym_CR_LF] = ACTIONS(4397), [anon_sym_SLASH_SLASH] = ACTIONS(497), [anon_sym_SLASH_STAR] = ACTIONS(499), - [anon_sym_DOT] = ACTIONS(4399), - [anon_sym_LBRACE] = ACTIONS(4399), - [anon_sym_const] = ACTIONS(4399), - [anon_sym_LPAREN] = ACTIONS(4399), - [anon_sym___global] = ACTIONS(4399), - [anon_sym_type] = ACTIONS(4399), - [anon_sym_fn] = ACTIONS(4399), - [anon_sym_PLUS] = ACTIONS(4399), - [anon_sym_DASH] = ACTIONS(4399), - [anon_sym_STAR] = ACTIONS(4399), - [anon_sym_struct] = ACTIONS(4399), - [anon_sym_union] = ACTIONS(4399), - [anon_sym_pub] = ACTIONS(4399), - [anon_sym_mut] = ACTIONS(4399), - [anon_sym_enum] = ACTIONS(4399), - [anon_sym_interface] = ACTIONS(4399), - [anon_sym_QMARK] = ACTIONS(4399), - [anon_sym_BANG] = ACTIONS(4399), - [anon_sym_go] = ACTIONS(4399), - [anon_sym_spawn] = ACTIONS(4399), - [anon_sym_json_DOTdecode] = ACTIONS(4399), - [anon_sym_LBRACK2] = ACTIONS(4399), - [anon_sym_TILDE] = ACTIONS(4399), - [anon_sym_CARET] = ACTIONS(4399), - [anon_sym_AMP] = ACTIONS(4399), - [anon_sym_LT_DASH] = ACTIONS(4399), - [sym_none] = ACTIONS(4399), - [sym_true] = ACTIONS(4399), - [sym_false] = ACTIONS(4399), - [sym_nil] = ACTIONS(4399), - [anon_sym_if] = ACTIONS(4399), - [anon_sym_DOLLARif] = ACTIONS(4399), - [anon_sym_match] = ACTIONS(4399), - [anon_sym_select] = ACTIONS(4399), - [anon_sym_lock] = ACTIONS(4399), - [anon_sym_rlock] = ACTIONS(4399), - [anon_sym_unsafe] = ACTIONS(4399), - [anon_sym_sql] = ACTIONS(4399), - [sym_int_literal] = ACTIONS(4399), - [sym_float_literal] = ACTIONS(4399), - [sym_rune_literal] = ACTIONS(4399), - [sym_pseudo_compile_time_identifier] = ACTIONS(4399), - [anon_sym_shared] = ACTIONS(4399), - [anon_sym_map_LBRACK] = ACTIONS(4399), - [anon_sym_chan] = ACTIONS(4399), - [anon_sym_thread] = ACTIONS(4399), - [anon_sym_atomic] = ACTIONS(4399), - [anon_sym_assert] = ACTIONS(4399), - [anon_sym_defer] = ACTIONS(4399), - [anon_sym_goto] = ACTIONS(4399), - [anon_sym_break] = ACTIONS(4399), - [anon_sym_continue] = ACTIONS(4399), - [anon_sym_return] = ACTIONS(4399), - [anon_sym_DOLLARfor] = ACTIONS(4399), - [anon_sym_for] = ACTIONS(4399), - [anon_sym_POUND] = ACTIONS(4399), - [anon_sym_asm] = ACTIONS(4399), - [anon_sym_AT_LBRACK] = ACTIONS(4399), - [sym___double_quote] = ACTIONS(4399), - [sym___single_quote] = ACTIONS(4399), - [sym___c_double_quote] = ACTIONS(4399), - [sym___c_single_quote] = ACTIONS(4399), - [sym___r_double_quote] = ACTIONS(4399), - [sym___r_single_quote] = ACTIONS(4399), + [anon_sym_DOT] = ACTIONS(4397), + [anon_sym_LBRACE] = ACTIONS(4397), + [anon_sym_const] = ACTIONS(4397), + [anon_sym_LPAREN] = ACTIONS(4397), + [anon_sym___global] = ACTIONS(4397), + [anon_sym_type] = ACTIONS(4397), + [anon_sym_fn] = ACTIONS(4397), + [anon_sym_PLUS] = ACTIONS(4397), + [anon_sym_DASH] = ACTIONS(4397), + [anon_sym_STAR] = ACTIONS(4397), + [anon_sym_struct] = ACTIONS(4397), + [anon_sym_union] = ACTIONS(4397), + [anon_sym_pub] = ACTIONS(4397), + [anon_sym_mut] = ACTIONS(4397), + [anon_sym_enum] = ACTIONS(4397), + [anon_sym_interface] = ACTIONS(4397), + [anon_sym_QMARK] = ACTIONS(4397), + [anon_sym_BANG] = ACTIONS(4397), + [anon_sym_go] = ACTIONS(4397), + [anon_sym_spawn] = ACTIONS(4397), + [anon_sym_json_DOTdecode] = ACTIONS(4397), + [anon_sym_LBRACK2] = ACTIONS(4397), + [anon_sym_TILDE] = ACTIONS(4397), + [anon_sym_CARET] = ACTIONS(4397), + [anon_sym_AMP] = ACTIONS(4397), + [anon_sym_LT_DASH] = ACTIONS(4397), + [sym_none] = ACTIONS(4397), + [sym_true] = ACTIONS(4397), + [sym_false] = ACTIONS(4397), + [sym_nil] = ACTIONS(4397), + [anon_sym_if] = ACTIONS(4397), + [anon_sym_DOLLARif] = ACTIONS(4397), + [anon_sym_match] = ACTIONS(4397), + [anon_sym_select] = ACTIONS(4397), + [anon_sym_lock] = ACTIONS(4397), + [anon_sym_rlock] = ACTIONS(4397), + [anon_sym_unsafe] = ACTIONS(4397), + [anon_sym_sql] = ACTIONS(4397), + [sym_int_literal] = ACTIONS(4397), + [sym_float_literal] = ACTIONS(4397), + [sym_rune_literal] = ACTIONS(4397), + [sym_pseudo_compile_time_identifier] = ACTIONS(4397), + [anon_sym_shared] = ACTIONS(4397), + [anon_sym_map_LBRACK] = ACTIONS(4397), + [anon_sym_chan] = ACTIONS(4397), + [anon_sym_thread] = ACTIONS(4397), + [anon_sym_atomic] = ACTIONS(4397), + [anon_sym_assert] = ACTIONS(4397), + [anon_sym_defer] = ACTIONS(4397), + [anon_sym_goto] = ACTIONS(4397), + [anon_sym_break] = ACTIONS(4397), + [anon_sym_continue] = ACTIONS(4397), + [anon_sym_return] = ACTIONS(4397), + [anon_sym_DOLLARfor] = ACTIONS(4397), + [anon_sym_for] = ACTIONS(4397), + [anon_sym_POUND] = ACTIONS(4397), + [anon_sym_asm] = ACTIONS(4397), + [anon_sym_AT_LBRACK] = ACTIONS(4397), + [sym___double_quote] = ACTIONS(4397), + [sym___single_quote] = ACTIONS(4397), + [sym___c_double_quote] = ACTIONS(4397), + [sym___c_single_quote] = ACTIONS(4397), + [sym___r_double_quote] = ACTIONS(4397), + [sym___r_single_quote] = ACTIONS(4397), }, [1544] = { [sym_line_comment] = STATE(1544), [sym_block_comment] = STATE(1544), - [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(4399), + [sym_identifier] = ACTIONS(4401), + [anon_sym_LF] = ACTIONS(4401), + [anon_sym_CR] = ACTIONS(4401), + [anon_sym_CR_LF] = ACTIONS(4401), [anon_sym_SLASH_SLASH] = ACTIONS(497), [anon_sym_SLASH_STAR] = ACTIONS(499), - [anon_sym_DOT] = ACTIONS(4403), - [anon_sym_LBRACE] = ACTIONS(4403), - [anon_sym_const] = ACTIONS(4403), - [anon_sym_LPAREN] = ACTIONS(4403), - [anon_sym___global] = ACTIONS(4403), - [anon_sym_type] = ACTIONS(4403), - [anon_sym_fn] = ACTIONS(4403), - [anon_sym_PLUS] = ACTIONS(4403), - [anon_sym_DASH] = ACTIONS(4403), - [anon_sym_STAR] = ACTIONS(4403), - [anon_sym_struct] = ACTIONS(4403), - [anon_sym_union] = ACTIONS(4403), - [anon_sym_pub] = ACTIONS(4403), - [anon_sym_mut] = ACTIONS(4403), - [anon_sym_enum] = ACTIONS(4403), - [anon_sym_interface] = ACTIONS(4403), - [anon_sym_QMARK] = ACTIONS(4403), - [anon_sym_BANG] = ACTIONS(4403), - [anon_sym_go] = ACTIONS(4403), - [anon_sym_spawn] = ACTIONS(4403), - [anon_sym_json_DOTdecode] = ACTIONS(4403), - [anon_sym_LBRACK2] = ACTIONS(4403), - [anon_sym_TILDE] = ACTIONS(4403), - [anon_sym_CARET] = ACTIONS(4403), - [anon_sym_AMP] = ACTIONS(4403), - [anon_sym_LT_DASH] = ACTIONS(4403), - [sym_none] = ACTIONS(4403), - [sym_true] = ACTIONS(4403), - [sym_false] = ACTIONS(4403), - [sym_nil] = ACTIONS(4403), - [anon_sym_if] = ACTIONS(4403), - [anon_sym_DOLLARif] = ACTIONS(4403), - [anon_sym_match] = ACTIONS(4403), - [anon_sym_select] = ACTIONS(4403), - [anon_sym_lock] = ACTIONS(4403), - [anon_sym_rlock] = ACTIONS(4403), - [anon_sym_unsafe] = ACTIONS(4403), - [anon_sym_sql] = ACTIONS(4403), - [sym_int_literal] = ACTIONS(4403), - [sym_float_literal] = ACTIONS(4403), - [sym_rune_literal] = ACTIONS(4403), - [sym_pseudo_compile_time_identifier] = ACTIONS(4403), - [anon_sym_shared] = ACTIONS(4403), - [anon_sym_map_LBRACK] = ACTIONS(4403), - [anon_sym_chan] = ACTIONS(4403), - [anon_sym_thread] = ACTIONS(4403), - [anon_sym_atomic] = ACTIONS(4403), - [anon_sym_assert] = ACTIONS(4403), - [anon_sym_defer] = ACTIONS(4403), - [anon_sym_goto] = ACTIONS(4403), - [anon_sym_break] = ACTIONS(4403), - [anon_sym_continue] = ACTIONS(4403), - [anon_sym_return] = ACTIONS(4403), - [anon_sym_DOLLARfor] = ACTIONS(4403), - [anon_sym_for] = ACTIONS(4403), - [anon_sym_POUND] = ACTIONS(4403), - [anon_sym_asm] = ACTIONS(4403), - [anon_sym_AT_LBRACK] = ACTIONS(4403), - [sym___double_quote] = ACTIONS(4403), - [sym___single_quote] = ACTIONS(4403), - [sym___c_double_quote] = ACTIONS(4403), - [sym___c_single_quote] = ACTIONS(4403), - [sym___r_double_quote] = ACTIONS(4403), - [sym___r_single_quote] = ACTIONS(4403), + [anon_sym_DOT] = ACTIONS(4401), + [anon_sym_LBRACE] = ACTIONS(4401), + [anon_sym_const] = ACTIONS(4401), + [anon_sym_LPAREN] = ACTIONS(4401), + [anon_sym___global] = ACTIONS(4401), + [anon_sym_type] = ACTIONS(4401), + [anon_sym_fn] = ACTIONS(4401), + [anon_sym_PLUS] = ACTIONS(4401), + [anon_sym_DASH] = ACTIONS(4401), + [anon_sym_STAR] = ACTIONS(4401), + [anon_sym_struct] = ACTIONS(4401), + [anon_sym_union] = ACTIONS(4401), + [anon_sym_pub] = ACTIONS(4401), + [anon_sym_mut] = ACTIONS(4401), + [anon_sym_enum] = ACTIONS(4401), + [anon_sym_interface] = ACTIONS(4401), + [anon_sym_QMARK] = ACTIONS(4401), + [anon_sym_BANG] = ACTIONS(4401), + [anon_sym_go] = ACTIONS(4401), + [anon_sym_spawn] = ACTIONS(4401), + [anon_sym_json_DOTdecode] = ACTIONS(4401), + [anon_sym_LBRACK2] = ACTIONS(4401), + [anon_sym_TILDE] = ACTIONS(4401), + [anon_sym_CARET] = ACTIONS(4401), + [anon_sym_AMP] = ACTIONS(4401), + [anon_sym_LT_DASH] = ACTIONS(4401), + [sym_none] = ACTIONS(4401), + [sym_true] = ACTIONS(4401), + [sym_false] = ACTIONS(4401), + [sym_nil] = ACTIONS(4401), + [anon_sym_if] = ACTIONS(4401), + [anon_sym_DOLLARif] = ACTIONS(4401), + [anon_sym_match] = ACTIONS(4401), + [anon_sym_select] = ACTIONS(4401), + [anon_sym_lock] = ACTIONS(4401), + [anon_sym_rlock] = ACTIONS(4401), + [anon_sym_unsafe] = ACTIONS(4401), + [anon_sym_sql] = ACTIONS(4401), + [sym_int_literal] = ACTIONS(4401), + [sym_float_literal] = ACTIONS(4401), + [sym_rune_literal] = ACTIONS(4401), + [sym_pseudo_compile_time_identifier] = ACTIONS(4401), + [anon_sym_shared] = ACTIONS(4401), + [anon_sym_map_LBRACK] = ACTIONS(4401), + [anon_sym_chan] = ACTIONS(4401), + [anon_sym_thread] = ACTIONS(4401), + [anon_sym_atomic] = ACTIONS(4401), + [anon_sym_assert] = ACTIONS(4401), + [anon_sym_defer] = ACTIONS(4401), + [anon_sym_goto] = ACTIONS(4401), + [anon_sym_break] = ACTIONS(4401), + [anon_sym_continue] = ACTIONS(4401), + [anon_sym_return] = ACTIONS(4401), + [anon_sym_DOLLARfor] = ACTIONS(4401), + [anon_sym_for] = ACTIONS(4401), + [anon_sym_POUND] = ACTIONS(4401), + [anon_sym_asm] = ACTIONS(4401), + [anon_sym_AT_LBRACK] = ACTIONS(4401), + [sym___double_quote] = ACTIONS(4401), + [sym___single_quote] = ACTIONS(4401), + [sym___c_double_quote] = ACTIONS(4401), + [sym___c_single_quote] = ACTIONS(4401), + [sym___r_double_quote] = ACTIONS(4401), + [sym___r_single_quote] = ACTIONS(4401), }, [1545] = { [sym_line_comment] = STATE(1545), [sym_block_comment] = STATE(1545), - [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(4403), + [sym_identifier] = ACTIONS(4405), + [anon_sym_LF] = ACTIONS(4405), + [anon_sym_CR] = ACTIONS(4405), + [anon_sym_CR_LF] = ACTIONS(4405), [anon_sym_SLASH_SLASH] = ACTIONS(497), [anon_sym_SLASH_STAR] = ACTIONS(499), - [anon_sym_DOT] = ACTIONS(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(4405), + [anon_sym_LBRACE] = ACTIONS(4405), + [anon_sym_const] = ACTIONS(4405), + [anon_sym_LPAREN] = ACTIONS(4405), + [anon_sym___global] = ACTIONS(4405), + [anon_sym_type] = ACTIONS(4405), + [anon_sym_fn] = ACTIONS(4405), + [anon_sym_PLUS] = ACTIONS(4405), + [anon_sym_DASH] = ACTIONS(4405), + [anon_sym_STAR] = ACTIONS(4405), + [anon_sym_struct] = ACTIONS(4405), + [anon_sym_union] = ACTIONS(4405), + [anon_sym_pub] = ACTIONS(4405), + [anon_sym_mut] = ACTIONS(4405), + [anon_sym_enum] = ACTIONS(4405), + [anon_sym_interface] = ACTIONS(4405), + [anon_sym_QMARK] = ACTIONS(4405), + [anon_sym_BANG] = ACTIONS(4405), + [anon_sym_go] = ACTIONS(4405), + [anon_sym_spawn] = ACTIONS(4405), + [anon_sym_json_DOTdecode] = ACTIONS(4405), + [anon_sym_LBRACK2] = ACTIONS(4405), + [anon_sym_TILDE] = ACTIONS(4405), + [anon_sym_CARET] = ACTIONS(4405), + [anon_sym_AMP] = ACTIONS(4405), + [anon_sym_LT_DASH] = ACTIONS(4405), + [sym_none] = ACTIONS(4405), + [sym_true] = ACTIONS(4405), + [sym_false] = ACTIONS(4405), + [sym_nil] = ACTIONS(4405), + [anon_sym_if] = ACTIONS(4405), + [anon_sym_DOLLARif] = ACTIONS(4405), + [anon_sym_match] = ACTIONS(4405), + [anon_sym_select] = ACTIONS(4405), + [anon_sym_lock] = ACTIONS(4405), + [anon_sym_rlock] = ACTIONS(4405), + [anon_sym_unsafe] = ACTIONS(4405), + [anon_sym_sql] = ACTIONS(4405), + [sym_int_literal] = ACTIONS(4405), + [sym_float_literal] = ACTIONS(4405), + [sym_rune_literal] = ACTIONS(4405), + [sym_pseudo_compile_time_identifier] = ACTIONS(4405), + [anon_sym_shared] = ACTIONS(4405), + [anon_sym_map_LBRACK] = ACTIONS(4405), + [anon_sym_chan] = ACTIONS(4405), + [anon_sym_thread] = ACTIONS(4405), + [anon_sym_atomic] = ACTIONS(4405), + [anon_sym_assert] = ACTIONS(4405), + [anon_sym_defer] = ACTIONS(4405), + [anon_sym_goto] = ACTIONS(4405), + [anon_sym_break] = ACTIONS(4405), + [anon_sym_continue] = ACTIONS(4405), + [anon_sym_return] = ACTIONS(4405), + [anon_sym_DOLLARfor] = ACTIONS(4405), + [anon_sym_for] = ACTIONS(4405), + [anon_sym_POUND] = ACTIONS(4405), + [anon_sym_asm] = ACTIONS(4405), + [anon_sym_AT_LBRACK] = ACTIONS(4405), + [sym___double_quote] = ACTIONS(4405), + [sym___single_quote] = ACTIONS(4405), + [sym___c_double_quote] = ACTIONS(4405), + [sym___c_single_quote] = ACTIONS(4405), + [sym___r_double_quote] = ACTIONS(4405), + [sym___r_single_quote] = ACTIONS(4405), }, [1546] = { [sym_line_comment] = STATE(1546), [sym_block_comment] = STATE(1546), - [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(4407), + [sym_identifier] = ACTIONS(4409), + [anon_sym_LF] = ACTIONS(4409), + [anon_sym_CR] = ACTIONS(4409), + [anon_sym_CR_LF] = ACTIONS(4409), [anon_sym_SLASH_SLASH] = ACTIONS(497), [anon_sym_SLASH_STAR] = ACTIONS(499), - [anon_sym_DOT] = ACTIONS(4411), - [anon_sym_LBRACE] = ACTIONS(4411), - [anon_sym_const] = ACTIONS(4411), - [anon_sym_LPAREN] = ACTIONS(4411), - [anon_sym___global] = ACTIONS(4411), - [anon_sym_type] = ACTIONS(4411), - [anon_sym_fn] = ACTIONS(4411), - [anon_sym_PLUS] = ACTIONS(4411), - [anon_sym_DASH] = ACTIONS(4411), - [anon_sym_STAR] = ACTIONS(4411), - [anon_sym_struct] = ACTIONS(4411), - [anon_sym_union] = ACTIONS(4411), - [anon_sym_pub] = ACTIONS(4411), - [anon_sym_mut] = ACTIONS(4411), - [anon_sym_enum] = ACTIONS(4411), - [anon_sym_interface] = ACTIONS(4411), - [anon_sym_QMARK] = ACTIONS(4411), - [anon_sym_BANG] = ACTIONS(4411), - [anon_sym_go] = ACTIONS(4411), - [anon_sym_spawn] = ACTIONS(4411), - [anon_sym_json_DOTdecode] = ACTIONS(4411), - [anon_sym_LBRACK2] = ACTIONS(4411), - [anon_sym_TILDE] = ACTIONS(4411), - [anon_sym_CARET] = ACTIONS(4411), - [anon_sym_AMP] = ACTIONS(4411), - [anon_sym_LT_DASH] = ACTIONS(4411), - [sym_none] = ACTIONS(4411), - [sym_true] = ACTIONS(4411), - [sym_false] = ACTIONS(4411), - [sym_nil] = ACTIONS(4411), - [anon_sym_if] = ACTIONS(4411), - [anon_sym_DOLLARif] = ACTIONS(4411), - [anon_sym_match] = ACTIONS(4411), - [anon_sym_select] = ACTIONS(4411), - [anon_sym_lock] = ACTIONS(4411), - [anon_sym_rlock] = ACTIONS(4411), - [anon_sym_unsafe] = ACTIONS(4411), - [anon_sym_sql] = ACTIONS(4411), - [sym_int_literal] = ACTIONS(4411), - [sym_float_literal] = ACTIONS(4411), - [sym_rune_literal] = ACTIONS(4411), - [sym_pseudo_compile_time_identifier] = ACTIONS(4411), - [anon_sym_shared] = ACTIONS(4411), - [anon_sym_map_LBRACK] = ACTIONS(4411), - [anon_sym_chan] = ACTIONS(4411), - [anon_sym_thread] = ACTIONS(4411), - [anon_sym_atomic] = ACTIONS(4411), - [anon_sym_assert] = ACTIONS(4411), - [anon_sym_defer] = ACTIONS(4411), - [anon_sym_goto] = ACTIONS(4411), - [anon_sym_break] = ACTIONS(4411), - [anon_sym_continue] = ACTIONS(4411), - [anon_sym_return] = ACTIONS(4411), - [anon_sym_DOLLARfor] = ACTIONS(4411), - [anon_sym_for] = ACTIONS(4411), - [anon_sym_POUND] = ACTIONS(4411), - [anon_sym_asm] = ACTIONS(4411), - [anon_sym_AT_LBRACK] = ACTIONS(4411), - [sym___double_quote] = ACTIONS(4411), - [sym___single_quote] = ACTIONS(4411), - [sym___c_double_quote] = ACTIONS(4411), - [sym___c_single_quote] = ACTIONS(4411), - [sym___r_double_quote] = ACTIONS(4411), - [sym___r_single_quote] = ACTIONS(4411), + [anon_sym_DOT] = ACTIONS(4409), + [anon_sym_LBRACE] = ACTIONS(4409), + [anon_sym_const] = ACTIONS(4409), + [anon_sym_LPAREN] = ACTIONS(4409), + [anon_sym___global] = ACTIONS(4409), + [anon_sym_type] = ACTIONS(4409), + [anon_sym_fn] = ACTIONS(4409), + [anon_sym_PLUS] = ACTIONS(4409), + [anon_sym_DASH] = ACTIONS(4409), + [anon_sym_STAR] = ACTIONS(4409), + [anon_sym_struct] = ACTIONS(4409), + [anon_sym_union] = ACTIONS(4409), + [anon_sym_pub] = ACTIONS(4409), + [anon_sym_mut] = ACTIONS(4409), + [anon_sym_enum] = ACTIONS(4409), + [anon_sym_interface] = ACTIONS(4409), + [anon_sym_QMARK] = ACTIONS(4409), + [anon_sym_BANG] = ACTIONS(4409), + [anon_sym_go] = ACTIONS(4409), + [anon_sym_spawn] = ACTIONS(4409), + [anon_sym_json_DOTdecode] = ACTIONS(4409), + [anon_sym_LBRACK2] = ACTIONS(4409), + [anon_sym_TILDE] = ACTIONS(4409), + [anon_sym_CARET] = ACTIONS(4409), + [anon_sym_AMP] = ACTIONS(4409), + [anon_sym_LT_DASH] = ACTIONS(4409), + [sym_none] = ACTIONS(4409), + [sym_true] = ACTIONS(4409), + [sym_false] = ACTIONS(4409), + [sym_nil] = ACTIONS(4409), + [anon_sym_if] = ACTIONS(4409), + [anon_sym_DOLLARif] = ACTIONS(4409), + [anon_sym_match] = ACTIONS(4409), + [anon_sym_select] = ACTIONS(4409), + [anon_sym_lock] = ACTIONS(4409), + [anon_sym_rlock] = ACTIONS(4409), + [anon_sym_unsafe] = ACTIONS(4409), + [anon_sym_sql] = ACTIONS(4409), + [sym_int_literal] = ACTIONS(4409), + [sym_float_literal] = ACTIONS(4409), + [sym_rune_literal] = ACTIONS(4409), + [sym_pseudo_compile_time_identifier] = ACTIONS(4409), + [anon_sym_shared] = ACTIONS(4409), + [anon_sym_map_LBRACK] = ACTIONS(4409), + [anon_sym_chan] = ACTIONS(4409), + [anon_sym_thread] = ACTIONS(4409), + [anon_sym_atomic] = ACTIONS(4409), + [anon_sym_assert] = ACTIONS(4409), + [anon_sym_defer] = ACTIONS(4409), + [anon_sym_goto] = ACTIONS(4409), + [anon_sym_break] = ACTIONS(4409), + [anon_sym_continue] = ACTIONS(4409), + [anon_sym_return] = ACTIONS(4409), + [anon_sym_DOLLARfor] = ACTIONS(4409), + [anon_sym_for] = ACTIONS(4409), + [anon_sym_POUND] = ACTIONS(4409), + [anon_sym_asm] = ACTIONS(4409), + [anon_sym_AT_LBRACK] = ACTIONS(4409), + [sym___double_quote] = ACTIONS(4409), + [sym___single_quote] = ACTIONS(4409), + [sym___c_double_quote] = ACTIONS(4409), + [sym___c_single_quote] = ACTIONS(4409), + [sym___r_double_quote] = ACTIONS(4409), + [sym___r_single_quote] = ACTIONS(4409), }, [1547] = { [sym_line_comment] = STATE(1547), [sym_block_comment] = STATE(1547), - [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(4411), + [sym_identifier] = ACTIONS(4413), + [anon_sym_LF] = ACTIONS(4413), + [anon_sym_CR] = ACTIONS(4413), + [anon_sym_CR_LF] = ACTIONS(4413), [anon_sym_SLASH_SLASH] = ACTIONS(497), [anon_sym_SLASH_STAR] = ACTIONS(499), - [anon_sym_DOT] = ACTIONS(4415), - [anon_sym_LBRACE] = ACTIONS(4415), - [anon_sym_const] = ACTIONS(4415), - [anon_sym_LPAREN] = ACTIONS(4415), - [anon_sym___global] = ACTIONS(4415), - [anon_sym_type] = ACTIONS(4415), - [anon_sym_fn] = ACTIONS(4415), - [anon_sym_PLUS] = ACTIONS(4415), - [anon_sym_DASH] = ACTIONS(4415), - [anon_sym_STAR] = ACTIONS(4415), - [anon_sym_struct] = ACTIONS(4415), - [anon_sym_union] = ACTIONS(4415), - [anon_sym_pub] = ACTIONS(4415), - [anon_sym_mut] = ACTIONS(4415), - [anon_sym_enum] = ACTIONS(4415), - [anon_sym_interface] = ACTIONS(4415), - [anon_sym_QMARK] = ACTIONS(4415), - [anon_sym_BANG] = ACTIONS(4415), - [anon_sym_go] = ACTIONS(4415), - [anon_sym_spawn] = ACTIONS(4415), - [anon_sym_json_DOTdecode] = ACTIONS(4415), - [anon_sym_LBRACK2] = ACTIONS(4415), - [anon_sym_TILDE] = ACTIONS(4415), - [anon_sym_CARET] = ACTIONS(4415), - [anon_sym_AMP] = ACTIONS(4415), - [anon_sym_LT_DASH] = ACTIONS(4415), - [sym_none] = ACTIONS(4415), - [sym_true] = ACTIONS(4415), - [sym_false] = ACTIONS(4415), - [sym_nil] = ACTIONS(4415), - [anon_sym_if] = ACTIONS(4415), - [anon_sym_DOLLARif] = ACTIONS(4415), - [anon_sym_match] = ACTIONS(4415), - [anon_sym_select] = ACTIONS(4415), - [anon_sym_lock] = ACTIONS(4415), - [anon_sym_rlock] = ACTIONS(4415), - [anon_sym_unsafe] = ACTIONS(4415), - [anon_sym_sql] = ACTIONS(4415), - [sym_int_literal] = ACTIONS(4415), - [sym_float_literal] = ACTIONS(4415), - [sym_rune_literal] = ACTIONS(4415), - [sym_pseudo_compile_time_identifier] = ACTIONS(4415), - [anon_sym_shared] = ACTIONS(4415), - [anon_sym_map_LBRACK] = ACTIONS(4415), - [anon_sym_chan] = ACTIONS(4415), - [anon_sym_thread] = ACTIONS(4415), - [anon_sym_atomic] = ACTIONS(4415), - [anon_sym_assert] = ACTIONS(4415), - [anon_sym_defer] = ACTIONS(4415), - [anon_sym_goto] = ACTIONS(4415), - [anon_sym_break] = ACTIONS(4415), - [anon_sym_continue] = ACTIONS(4415), - [anon_sym_return] = ACTIONS(4415), - [anon_sym_DOLLARfor] = ACTIONS(4415), - [anon_sym_for] = ACTIONS(4415), - [anon_sym_POUND] = ACTIONS(4415), - [anon_sym_asm] = ACTIONS(4415), - [anon_sym_AT_LBRACK] = ACTIONS(4415), - [sym___double_quote] = ACTIONS(4415), - [sym___single_quote] = ACTIONS(4415), - [sym___c_double_quote] = ACTIONS(4415), - [sym___c_single_quote] = ACTIONS(4415), - [sym___r_double_quote] = ACTIONS(4415), - [sym___r_single_quote] = ACTIONS(4415), + [anon_sym_DOT] = ACTIONS(4413), + [anon_sym_LBRACE] = ACTIONS(4413), + [anon_sym_const] = ACTIONS(4413), + [anon_sym_LPAREN] = ACTIONS(4413), + [anon_sym___global] = ACTIONS(4413), + [anon_sym_type] = ACTIONS(4413), + [anon_sym_fn] = ACTIONS(4413), + [anon_sym_PLUS] = ACTIONS(4413), + [anon_sym_DASH] = ACTIONS(4413), + [anon_sym_STAR] = ACTIONS(4413), + [anon_sym_struct] = ACTIONS(4413), + [anon_sym_union] = ACTIONS(4413), + [anon_sym_pub] = ACTIONS(4413), + [anon_sym_mut] = ACTIONS(4413), + [anon_sym_enum] = ACTIONS(4413), + [anon_sym_interface] = ACTIONS(4413), + [anon_sym_QMARK] = ACTIONS(4413), + [anon_sym_BANG] = ACTIONS(4413), + [anon_sym_go] = ACTIONS(4413), + [anon_sym_spawn] = ACTIONS(4413), + [anon_sym_json_DOTdecode] = ACTIONS(4413), + [anon_sym_LBRACK2] = ACTIONS(4413), + [anon_sym_TILDE] = ACTIONS(4413), + [anon_sym_CARET] = ACTIONS(4413), + [anon_sym_AMP] = ACTIONS(4413), + [anon_sym_LT_DASH] = ACTIONS(4413), + [sym_none] = ACTIONS(4413), + [sym_true] = ACTIONS(4413), + [sym_false] = ACTIONS(4413), + [sym_nil] = ACTIONS(4413), + [anon_sym_if] = ACTIONS(4413), + [anon_sym_DOLLARif] = ACTIONS(4413), + [anon_sym_match] = ACTIONS(4413), + [anon_sym_select] = ACTIONS(4413), + [anon_sym_lock] = ACTIONS(4413), + [anon_sym_rlock] = ACTIONS(4413), + [anon_sym_unsafe] = ACTIONS(4413), + [anon_sym_sql] = ACTIONS(4413), + [sym_int_literal] = ACTIONS(4413), + [sym_float_literal] = ACTIONS(4413), + [sym_rune_literal] = ACTIONS(4413), + [sym_pseudo_compile_time_identifier] = ACTIONS(4413), + [anon_sym_shared] = ACTIONS(4413), + [anon_sym_map_LBRACK] = ACTIONS(4413), + [anon_sym_chan] = ACTIONS(4413), + [anon_sym_thread] = ACTIONS(4413), + [anon_sym_atomic] = ACTIONS(4413), + [anon_sym_assert] = ACTIONS(4413), + [anon_sym_defer] = ACTIONS(4413), + [anon_sym_goto] = ACTIONS(4413), + [anon_sym_break] = ACTIONS(4413), + [anon_sym_continue] = ACTIONS(4413), + [anon_sym_return] = ACTIONS(4413), + [anon_sym_DOLLARfor] = ACTIONS(4413), + [anon_sym_for] = ACTIONS(4413), + [anon_sym_POUND] = ACTIONS(4413), + [anon_sym_asm] = ACTIONS(4413), + [anon_sym_AT_LBRACK] = ACTIONS(4413), + [sym___double_quote] = ACTIONS(4413), + [sym___single_quote] = ACTIONS(4413), + [sym___c_double_quote] = ACTIONS(4413), + [sym___c_single_quote] = ACTIONS(4413), + [sym___r_double_quote] = ACTIONS(4413), + [sym___r_single_quote] = ACTIONS(4413), }, [1548] = { [sym_line_comment] = STATE(1548), [sym_block_comment] = STATE(1548), - [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(4415), + [sym_identifier] = ACTIONS(4417), + [anon_sym_LF] = ACTIONS(4417), + [anon_sym_CR] = ACTIONS(4417), + [anon_sym_CR_LF] = ACTIONS(4417), [anon_sym_SLASH_SLASH] = ACTIONS(497), [anon_sym_SLASH_STAR] = ACTIONS(499), - [anon_sym_DOT] = ACTIONS(4419), - [anon_sym_LBRACE] = ACTIONS(4419), - [anon_sym_const] = ACTIONS(4419), - [anon_sym_LPAREN] = ACTIONS(4419), - [anon_sym___global] = ACTIONS(4419), - [anon_sym_type] = ACTIONS(4419), - [anon_sym_fn] = ACTIONS(4419), - [anon_sym_PLUS] = ACTIONS(4419), - [anon_sym_DASH] = ACTIONS(4419), - [anon_sym_STAR] = ACTIONS(4419), - [anon_sym_struct] = ACTIONS(4419), - [anon_sym_union] = ACTIONS(4419), - [anon_sym_pub] = ACTIONS(4419), - [anon_sym_mut] = ACTIONS(4419), - [anon_sym_enum] = ACTIONS(4419), - [anon_sym_interface] = ACTIONS(4419), - [anon_sym_QMARK] = ACTIONS(4419), - [anon_sym_BANG] = ACTIONS(4419), - [anon_sym_go] = ACTIONS(4419), - [anon_sym_spawn] = ACTIONS(4419), - [anon_sym_json_DOTdecode] = ACTIONS(4419), - [anon_sym_LBRACK2] = ACTIONS(4419), - [anon_sym_TILDE] = ACTIONS(4419), - [anon_sym_CARET] = ACTIONS(4419), - [anon_sym_AMP] = ACTIONS(4419), - [anon_sym_LT_DASH] = ACTIONS(4419), - [sym_none] = ACTIONS(4419), - [sym_true] = ACTIONS(4419), - [sym_false] = ACTIONS(4419), - [sym_nil] = ACTIONS(4419), - [anon_sym_if] = ACTIONS(4419), - [anon_sym_DOLLARif] = ACTIONS(4419), - [anon_sym_match] = ACTIONS(4419), - [anon_sym_select] = ACTIONS(4419), - [anon_sym_lock] = ACTIONS(4419), - [anon_sym_rlock] = ACTIONS(4419), - [anon_sym_unsafe] = ACTIONS(4419), - [anon_sym_sql] = ACTIONS(4419), - [sym_int_literal] = ACTIONS(4419), - [sym_float_literal] = ACTIONS(4419), - [sym_rune_literal] = ACTIONS(4419), - [sym_pseudo_compile_time_identifier] = ACTIONS(4419), - [anon_sym_shared] = ACTIONS(4419), - [anon_sym_map_LBRACK] = ACTIONS(4419), - [anon_sym_chan] = ACTIONS(4419), - [anon_sym_thread] = ACTIONS(4419), - [anon_sym_atomic] = ACTIONS(4419), - [anon_sym_assert] = ACTIONS(4419), - [anon_sym_defer] = ACTIONS(4419), - [anon_sym_goto] = ACTIONS(4419), - [anon_sym_break] = ACTIONS(4419), - [anon_sym_continue] = ACTIONS(4419), - [anon_sym_return] = ACTIONS(4419), - [anon_sym_DOLLARfor] = ACTIONS(4419), - [anon_sym_for] = ACTIONS(4419), - [anon_sym_POUND] = ACTIONS(4419), - [anon_sym_asm] = ACTIONS(4419), - [anon_sym_AT_LBRACK] = ACTIONS(4419), - [sym___double_quote] = ACTIONS(4419), - [sym___single_quote] = ACTIONS(4419), - [sym___c_double_quote] = ACTIONS(4419), - [sym___c_single_quote] = ACTIONS(4419), - [sym___r_double_quote] = ACTIONS(4419), - [sym___r_single_quote] = ACTIONS(4419), + [anon_sym_DOT] = ACTIONS(4417), + [anon_sym_LBRACE] = ACTIONS(4417), + [anon_sym_const] = ACTIONS(4417), + [anon_sym_LPAREN] = ACTIONS(4417), + [anon_sym___global] = ACTIONS(4417), + [anon_sym_type] = ACTIONS(4417), + [anon_sym_fn] = ACTIONS(4417), + [anon_sym_PLUS] = ACTIONS(4417), + [anon_sym_DASH] = ACTIONS(4417), + [anon_sym_STAR] = ACTIONS(4417), + [anon_sym_struct] = ACTIONS(4417), + [anon_sym_union] = ACTIONS(4417), + [anon_sym_pub] = ACTIONS(4417), + [anon_sym_mut] = ACTIONS(4417), + [anon_sym_enum] = ACTIONS(4417), + [anon_sym_interface] = ACTIONS(4417), + [anon_sym_QMARK] = ACTIONS(4417), + [anon_sym_BANG] = ACTIONS(4417), + [anon_sym_go] = ACTIONS(4417), + [anon_sym_spawn] = ACTIONS(4417), + [anon_sym_json_DOTdecode] = ACTIONS(4417), + [anon_sym_LBRACK2] = ACTIONS(4417), + [anon_sym_TILDE] = ACTIONS(4417), + [anon_sym_CARET] = ACTIONS(4417), + [anon_sym_AMP] = ACTIONS(4417), + [anon_sym_LT_DASH] = ACTIONS(4417), + [sym_none] = ACTIONS(4417), + [sym_true] = ACTIONS(4417), + [sym_false] = ACTIONS(4417), + [sym_nil] = ACTIONS(4417), + [anon_sym_if] = ACTIONS(4417), + [anon_sym_DOLLARif] = ACTIONS(4417), + [anon_sym_match] = ACTIONS(4417), + [anon_sym_select] = ACTIONS(4417), + [anon_sym_lock] = ACTIONS(4417), + [anon_sym_rlock] = ACTIONS(4417), + [anon_sym_unsafe] = ACTIONS(4417), + [anon_sym_sql] = ACTIONS(4417), + [sym_int_literal] = ACTIONS(4417), + [sym_float_literal] = ACTIONS(4417), + [sym_rune_literal] = ACTIONS(4417), + [sym_pseudo_compile_time_identifier] = ACTIONS(4417), + [anon_sym_shared] = ACTIONS(4417), + [anon_sym_map_LBRACK] = ACTIONS(4417), + [anon_sym_chan] = ACTIONS(4417), + [anon_sym_thread] = ACTIONS(4417), + [anon_sym_atomic] = ACTIONS(4417), + [anon_sym_assert] = ACTIONS(4417), + [anon_sym_defer] = ACTIONS(4417), + [anon_sym_goto] = ACTIONS(4417), + [anon_sym_break] = ACTIONS(4417), + [anon_sym_continue] = ACTIONS(4417), + [anon_sym_return] = ACTIONS(4417), + [anon_sym_DOLLARfor] = ACTIONS(4417), + [anon_sym_for] = ACTIONS(4417), + [anon_sym_POUND] = ACTIONS(4417), + [anon_sym_asm] = ACTIONS(4417), + [anon_sym_AT_LBRACK] = ACTIONS(4417), + [sym___double_quote] = ACTIONS(4417), + [sym___single_quote] = ACTIONS(4417), + [sym___c_double_quote] = ACTIONS(4417), + [sym___c_single_quote] = ACTIONS(4417), + [sym___r_double_quote] = ACTIONS(4417), + [sym___r_single_quote] = ACTIONS(4417), }, [1549] = { [sym_line_comment] = STATE(1549), [sym_block_comment] = STATE(1549), - [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), + [ts_builtin_sym_end] = ACTIONS(4419), + [sym_identifier] = ACTIONS(4421), + [anon_sym_LF] = ACTIONS(4421), + [anon_sym_CR] = ACTIONS(4421), + [anon_sym_CR_LF] = ACTIONS(4421), [anon_sym_SLASH_SLASH] = ACTIONS(497), [anon_sym_SLASH_STAR] = ACTIONS(499), - [anon_sym_DOT] = ACTIONS(4423), - [anon_sym_LBRACE] = ACTIONS(4423), - [anon_sym_const] = ACTIONS(4423), - [anon_sym_LPAREN] = ACTIONS(4423), - [anon_sym___global] = ACTIONS(4423), - [anon_sym_type] = ACTIONS(4423), - [anon_sym_fn] = ACTIONS(4423), - [anon_sym_PLUS] = ACTIONS(4423), - [anon_sym_DASH] = ACTIONS(4423), - [anon_sym_STAR] = ACTIONS(4423), - [anon_sym_struct] = ACTIONS(4423), - [anon_sym_union] = ACTIONS(4423), - [anon_sym_pub] = ACTIONS(4423), - [anon_sym_mut] = ACTIONS(4423), - [anon_sym_enum] = ACTIONS(4423), - [anon_sym_interface] = ACTIONS(4423), - [anon_sym_QMARK] = ACTIONS(4423), - [anon_sym_BANG] = ACTIONS(4423), - [anon_sym_go] = ACTIONS(4423), - [anon_sym_spawn] = ACTIONS(4423), - [anon_sym_json_DOTdecode] = ACTIONS(4423), - [anon_sym_LBRACK2] = ACTIONS(4423), - [anon_sym_TILDE] = ACTIONS(4423), - [anon_sym_CARET] = ACTIONS(4423), - [anon_sym_AMP] = ACTIONS(4423), - [anon_sym_LT_DASH] = ACTIONS(4423), - [sym_none] = ACTIONS(4423), - [sym_true] = ACTIONS(4423), - [sym_false] = ACTIONS(4423), - [sym_nil] = ACTIONS(4423), - [anon_sym_if] = ACTIONS(4423), - [anon_sym_DOLLARif] = ACTIONS(4423), - [anon_sym_match] = ACTIONS(4423), - [anon_sym_select] = ACTIONS(4423), - [anon_sym_lock] = ACTIONS(4423), - [anon_sym_rlock] = ACTIONS(4423), - [anon_sym_unsafe] = ACTIONS(4423), - [anon_sym_sql] = ACTIONS(4423), - [sym_int_literal] = ACTIONS(4423), - [sym_float_literal] = ACTIONS(4423), - [sym_rune_literal] = ACTIONS(4423), - [sym_pseudo_compile_time_identifier] = ACTIONS(4423), - [anon_sym_shared] = ACTIONS(4423), - [anon_sym_map_LBRACK] = ACTIONS(4423), - [anon_sym_chan] = ACTIONS(4423), - [anon_sym_thread] = ACTIONS(4423), - [anon_sym_atomic] = ACTIONS(4423), - [anon_sym_assert] = ACTIONS(4423), - [anon_sym_defer] = ACTIONS(4423), - [anon_sym_goto] = ACTIONS(4423), - [anon_sym_break] = ACTIONS(4423), - [anon_sym_continue] = ACTIONS(4423), - [anon_sym_return] = ACTIONS(4423), - [anon_sym_DOLLARfor] = ACTIONS(4423), - [anon_sym_for] = ACTIONS(4423), - [anon_sym_POUND] = ACTIONS(4423), - [anon_sym_asm] = ACTIONS(4423), - [anon_sym_AT_LBRACK] = ACTIONS(4423), - [sym___double_quote] = ACTIONS(4423), - [sym___single_quote] = ACTIONS(4423), - [sym___c_double_quote] = ACTIONS(4423), - [sym___c_single_quote] = ACTIONS(4423), - [sym___r_double_quote] = ACTIONS(4423), - [sym___r_single_quote] = ACTIONS(4423), + [anon_sym_DOT] = ACTIONS(4421), + [anon_sym_LBRACE] = ACTIONS(4421), + [anon_sym_const] = ACTIONS(4421), + [anon_sym_LPAREN] = ACTIONS(4421), + [anon_sym___global] = ACTIONS(4421), + [anon_sym_type] = ACTIONS(4421), + [anon_sym_fn] = ACTIONS(4421), + [anon_sym_PLUS] = ACTIONS(4421), + [anon_sym_DASH] = ACTIONS(4421), + [anon_sym_STAR] = ACTIONS(4421), + [anon_sym_struct] = ACTIONS(4421), + [anon_sym_union] = ACTIONS(4421), + [anon_sym_pub] = ACTIONS(4421), + [anon_sym_mut] = ACTIONS(4421), + [anon_sym_enum] = ACTIONS(4421), + [anon_sym_interface] = ACTIONS(4421), + [anon_sym_QMARK] = ACTIONS(4421), + [anon_sym_BANG] = ACTIONS(4421), + [anon_sym_go] = ACTIONS(4421), + [anon_sym_spawn] = ACTIONS(4421), + [anon_sym_json_DOTdecode] = ACTIONS(4421), + [anon_sym_LBRACK2] = ACTIONS(4421), + [anon_sym_TILDE] = ACTIONS(4421), + [anon_sym_CARET] = ACTIONS(4421), + [anon_sym_AMP] = ACTIONS(4421), + [anon_sym_LT_DASH] = ACTIONS(4421), + [sym_none] = ACTIONS(4421), + [sym_true] = ACTIONS(4421), + [sym_false] = ACTIONS(4421), + [sym_nil] = ACTIONS(4421), + [anon_sym_if] = ACTIONS(4421), + [anon_sym_DOLLARif] = ACTIONS(4421), + [anon_sym_match] = ACTIONS(4421), + [anon_sym_select] = ACTIONS(4421), + [anon_sym_lock] = ACTIONS(4421), + [anon_sym_rlock] = ACTIONS(4421), + [anon_sym_unsafe] = ACTIONS(4421), + [anon_sym_sql] = ACTIONS(4421), + [sym_int_literal] = ACTIONS(4421), + [sym_float_literal] = ACTIONS(4421), + [sym_rune_literal] = ACTIONS(4421), + [sym_pseudo_compile_time_identifier] = ACTIONS(4421), + [anon_sym_shared] = ACTIONS(4421), + [anon_sym_map_LBRACK] = ACTIONS(4421), + [anon_sym_chan] = ACTIONS(4421), + [anon_sym_thread] = ACTIONS(4421), + [anon_sym_atomic] = ACTIONS(4421), + [anon_sym_assert] = ACTIONS(4421), + [anon_sym_defer] = ACTIONS(4421), + [anon_sym_goto] = ACTIONS(4421), + [anon_sym_break] = ACTIONS(4421), + [anon_sym_continue] = ACTIONS(4421), + [anon_sym_return] = ACTIONS(4421), + [anon_sym_DOLLARfor] = ACTIONS(4421), + [anon_sym_for] = ACTIONS(4421), + [anon_sym_POUND] = ACTIONS(4421), + [anon_sym_asm] = ACTIONS(4421), + [anon_sym_AT_LBRACK] = ACTIONS(4421), + [sym___double_quote] = ACTIONS(4421), + [sym___single_quote] = ACTIONS(4421), + [sym___c_double_quote] = ACTIONS(4421), + [sym___c_single_quote] = ACTIONS(4421), + [sym___r_double_quote] = ACTIONS(4421), + [sym___r_single_quote] = ACTIONS(4421), }, [1550] = { [sym_line_comment] = STATE(1550), [sym_block_comment] = STATE(1550), - [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(4423), + [sym_identifier] = ACTIONS(4425), + [anon_sym_LF] = ACTIONS(4425), + [anon_sym_CR] = ACTIONS(4425), + [anon_sym_CR_LF] = ACTIONS(4425), [anon_sym_SLASH_SLASH] = ACTIONS(497), [anon_sym_SLASH_STAR] = ACTIONS(499), - [anon_sym_DOT] = ACTIONS(4427), - [anon_sym_LBRACE] = ACTIONS(4427), - [anon_sym_const] = ACTIONS(4427), - [anon_sym_LPAREN] = ACTIONS(4427), - [anon_sym___global] = ACTIONS(4427), - [anon_sym_type] = ACTIONS(4427), - [anon_sym_fn] = ACTIONS(4427), - [anon_sym_PLUS] = ACTIONS(4427), - [anon_sym_DASH] = ACTIONS(4427), - [anon_sym_STAR] = ACTIONS(4427), - [anon_sym_struct] = ACTIONS(4427), - [anon_sym_union] = ACTIONS(4427), - [anon_sym_pub] = ACTIONS(4427), - [anon_sym_mut] = ACTIONS(4427), - [anon_sym_enum] = ACTIONS(4427), - [anon_sym_interface] = ACTIONS(4427), - [anon_sym_QMARK] = ACTIONS(4427), - [anon_sym_BANG] = ACTIONS(4427), - [anon_sym_go] = ACTIONS(4427), - [anon_sym_spawn] = ACTIONS(4427), - [anon_sym_json_DOTdecode] = ACTIONS(4427), - [anon_sym_LBRACK2] = ACTIONS(4427), - [anon_sym_TILDE] = ACTIONS(4427), - [anon_sym_CARET] = ACTIONS(4427), - [anon_sym_AMP] = ACTIONS(4427), - [anon_sym_LT_DASH] = ACTIONS(4427), - [sym_none] = ACTIONS(4427), - [sym_true] = ACTIONS(4427), - [sym_false] = ACTIONS(4427), - [sym_nil] = ACTIONS(4427), - [anon_sym_if] = ACTIONS(4427), - [anon_sym_DOLLARif] = ACTIONS(4427), - [anon_sym_match] = ACTIONS(4427), - [anon_sym_select] = ACTIONS(4427), - [anon_sym_lock] = ACTIONS(4427), - [anon_sym_rlock] = ACTIONS(4427), - [anon_sym_unsafe] = ACTIONS(4427), - [anon_sym_sql] = ACTIONS(4427), - [sym_int_literal] = ACTIONS(4427), - [sym_float_literal] = ACTIONS(4427), - [sym_rune_literal] = ACTIONS(4427), - [sym_pseudo_compile_time_identifier] = ACTIONS(4427), - [anon_sym_shared] = ACTIONS(4427), - [anon_sym_map_LBRACK] = ACTIONS(4427), - [anon_sym_chan] = ACTIONS(4427), - [anon_sym_thread] = ACTIONS(4427), - [anon_sym_atomic] = ACTIONS(4427), - [anon_sym_assert] = ACTIONS(4427), - [anon_sym_defer] = ACTIONS(4427), - [anon_sym_goto] = ACTIONS(4427), - [anon_sym_break] = ACTIONS(4427), - [anon_sym_continue] = ACTIONS(4427), - [anon_sym_return] = ACTIONS(4427), - [anon_sym_DOLLARfor] = ACTIONS(4427), - [anon_sym_for] = ACTIONS(4427), - [anon_sym_POUND] = ACTIONS(4427), - [anon_sym_asm] = ACTIONS(4427), - [anon_sym_AT_LBRACK] = ACTIONS(4427), - [sym___double_quote] = ACTIONS(4427), - [sym___single_quote] = ACTIONS(4427), - [sym___c_double_quote] = ACTIONS(4427), - [sym___c_single_quote] = ACTIONS(4427), - [sym___r_double_quote] = ACTIONS(4427), - [sym___r_single_quote] = ACTIONS(4427), + [anon_sym_DOT] = ACTIONS(4425), + [anon_sym_LBRACE] = ACTIONS(4425), + [anon_sym_const] = ACTIONS(4425), + [anon_sym_LPAREN] = ACTIONS(4425), + [anon_sym___global] = ACTIONS(4425), + [anon_sym_type] = ACTIONS(4425), + [anon_sym_fn] = ACTIONS(4425), + [anon_sym_PLUS] = ACTIONS(4425), + [anon_sym_DASH] = ACTIONS(4425), + [anon_sym_STAR] = ACTIONS(4425), + [anon_sym_struct] = ACTIONS(4425), + [anon_sym_union] = ACTIONS(4425), + [anon_sym_pub] = ACTIONS(4425), + [anon_sym_mut] = ACTIONS(4425), + [anon_sym_enum] = ACTIONS(4425), + [anon_sym_interface] = ACTIONS(4425), + [anon_sym_QMARK] = ACTIONS(4425), + [anon_sym_BANG] = ACTIONS(4425), + [anon_sym_go] = ACTIONS(4425), + [anon_sym_spawn] = ACTIONS(4425), + [anon_sym_json_DOTdecode] = ACTIONS(4425), + [anon_sym_LBRACK2] = ACTIONS(4425), + [anon_sym_TILDE] = ACTIONS(4425), + [anon_sym_CARET] = ACTIONS(4425), + [anon_sym_AMP] = ACTIONS(4425), + [anon_sym_LT_DASH] = ACTIONS(4425), + [sym_none] = ACTIONS(4425), + [sym_true] = ACTIONS(4425), + [sym_false] = ACTIONS(4425), + [sym_nil] = ACTIONS(4425), + [anon_sym_if] = ACTIONS(4425), + [anon_sym_DOLLARif] = ACTIONS(4425), + [anon_sym_match] = ACTIONS(4425), + [anon_sym_select] = ACTIONS(4425), + [anon_sym_lock] = ACTIONS(4425), + [anon_sym_rlock] = ACTIONS(4425), + [anon_sym_unsafe] = ACTIONS(4425), + [anon_sym_sql] = ACTIONS(4425), + [sym_int_literal] = ACTIONS(4425), + [sym_float_literal] = ACTIONS(4425), + [sym_rune_literal] = ACTIONS(4425), + [sym_pseudo_compile_time_identifier] = ACTIONS(4425), + [anon_sym_shared] = ACTIONS(4425), + [anon_sym_map_LBRACK] = ACTIONS(4425), + [anon_sym_chan] = ACTIONS(4425), + [anon_sym_thread] = ACTIONS(4425), + [anon_sym_atomic] = ACTIONS(4425), + [anon_sym_assert] = ACTIONS(4425), + [anon_sym_defer] = ACTIONS(4425), + [anon_sym_goto] = ACTIONS(4425), + [anon_sym_break] = ACTIONS(4425), + [anon_sym_continue] = ACTIONS(4425), + [anon_sym_return] = ACTIONS(4425), + [anon_sym_DOLLARfor] = ACTIONS(4425), + [anon_sym_for] = ACTIONS(4425), + [anon_sym_POUND] = ACTIONS(4425), + [anon_sym_asm] = ACTIONS(4425), + [anon_sym_AT_LBRACK] = ACTIONS(4425), + [sym___double_quote] = ACTIONS(4425), + [sym___single_quote] = ACTIONS(4425), + [sym___c_double_quote] = ACTIONS(4425), + [sym___c_single_quote] = ACTIONS(4425), + [sym___r_double_quote] = ACTIONS(4425), + [sym___r_single_quote] = ACTIONS(4425), }, [1551] = { [sym_line_comment] = STATE(1551), [sym_block_comment] = STATE(1551), - [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(4427), + [sym_identifier] = ACTIONS(4429), + [anon_sym_LF] = ACTIONS(4429), + [anon_sym_CR] = ACTIONS(4429), + [anon_sym_CR_LF] = ACTIONS(4429), [anon_sym_SLASH_SLASH] = ACTIONS(497), [anon_sym_SLASH_STAR] = ACTIONS(499), - [anon_sym_DOT] = ACTIONS(4431), - [anon_sym_LBRACE] = ACTIONS(4431), - [anon_sym_const] = ACTIONS(4431), - [anon_sym_LPAREN] = ACTIONS(4431), - [anon_sym___global] = ACTIONS(4431), - [anon_sym_type] = ACTIONS(4431), - [anon_sym_fn] = ACTIONS(4431), - [anon_sym_PLUS] = ACTIONS(4431), - [anon_sym_DASH] = ACTIONS(4431), - [anon_sym_STAR] = ACTIONS(4431), - [anon_sym_struct] = ACTIONS(4431), - [anon_sym_union] = ACTIONS(4431), - [anon_sym_pub] = ACTIONS(4431), - [anon_sym_mut] = ACTIONS(4431), - [anon_sym_enum] = ACTIONS(4431), - [anon_sym_interface] = ACTIONS(4431), - [anon_sym_QMARK] = ACTIONS(4431), - [anon_sym_BANG] = ACTIONS(4431), - [anon_sym_go] = ACTIONS(4431), - [anon_sym_spawn] = ACTIONS(4431), - [anon_sym_json_DOTdecode] = ACTIONS(4431), - [anon_sym_LBRACK2] = ACTIONS(4431), - [anon_sym_TILDE] = ACTIONS(4431), - [anon_sym_CARET] = ACTIONS(4431), - [anon_sym_AMP] = ACTIONS(4431), - [anon_sym_LT_DASH] = ACTIONS(4431), - [sym_none] = ACTIONS(4431), - [sym_true] = ACTIONS(4431), - [sym_false] = ACTIONS(4431), - [sym_nil] = ACTIONS(4431), - [anon_sym_if] = ACTIONS(4431), - [anon_sym_DOLLARif] = ACTIONS(4431), - [anon_sym_match] = ACTIONS(4431), - [anon_sym_select] = ACTIONS(4431), - [anon_sym_lock] = ACTIONS(4431), - [anon_sym_rlock] = ACTIONS(4431), - [anon_sym_unsafe] = ACTIONS(4431), - [anon_sym_sql] = ACTIONS(4431), - [sym_int_literal] = ACTIONS(4431), - [sym_float_literal] = ACTIONS(4431), - [sym_rune_literal] = ACTIONS(4431), - [sym_pseudo_compile_time_identifier] = ACTIONS(4431), - [anon_sym_shared] = ACTIONS(4431), - [anon_sym_map_LBRACK] = ACTIONS(4431), - [anon_sym_chan] = ACTIONS(4431), - [anon_sym_thread] = ACTIONS(4431), - [anon_sym_atomic] = ACTIONS(4431), - [anon_sym_assert] = ACTIONS(4431), - [anon_sym_defer] = ACTIONS(4431), - [anon_sym_goto] = ACTIONS(4431), - [anon_sym_break] = ACTIONS(4431), - [anon_sym_continue] = ACTIONS(4431), - [anon_sym_return] = ACTIONS(4431), - [anon_sym_DOLLARfor] = ACTIONS(4431), - [anon_sym_for] = ACTIONS(4431), - [anon_sym_POUND] = ACTIONS(4431), - [anon_sym_asm] = ACTIONS(4431), - [anon_sym_AT_LBRACK] = ACTIONS(4431), - [sym___double_quote] = ACTIONS(4431), - [sym___single_quote] = ACTIONS(4431), - [sym___c_double_quote] = ACTIONS(4431), - [sym___c_single_quote] = ACTIONS(4431), - [sym___r_double_quote] = ACTIONS(4431), - [sym___r_single_quote] = ACTIONS(4431), + [anon_sym_DOT] = ACTIONS(4429), + [anon_sym_LBRACE] = ACTIONS(4429), + [anon_sym_const] = ACTIONS(4429), + [anon_sym_LPAREN] = ACTIONS(4429), + [anon_sym___global] = ACTIONS(4429), + [anon_sym_type] = ACTIONS(4429), + [anon_sym_fn] = ACTIONS(4429), + [anon_sym_PLUS] = ACTIONS(4429), + [anon_sym_DASH] = ACTIONS(4429), + [anon_sym_STAR] = ACTIONS(4429), + [anon_sym_struct] = ACTIONS(4429), + [anon_sym_union] = ACTIONS(4429), + [anon_sym_pub] = ACTIONS(4429), + [anon_sym_mut] = ACTIONS(4429), + [anon_sym_enum] = ACTIONS(4429), + [anon_sym_interface] = ACTIONS(4429), + [anon_sym_QMARK] = ACTIONS(4429), + [anon_sym_BANG] = ACTIONS(4429), + [anon_sym_go] = ACTIONS(4429), + [anon_sym_spawn] = ACTIONS(4429), + [anon_sym_json_DOTdecode] = ACTIONS(4429), + [anon_sym_LBRACK2] = ACTIONS(4429), + [anon_sym_TILDE] = ACTIONS(4429), + [anon_sym_CARET] = ACTIONS(4429), + [anon_sym_AMP] = ACTIONS(4429), + [anon_sym_LT_DASH] = ACTIONS(4429), + [sym_none] = ACTIONS(4429), + [sym_true] = ACTIONS(4429), + [sym_false] = ACTIONS(4429), + [sym_nil] = ACTIONS(4429), + [anon_sym_if] = ACTIONS(4429), + [anon_sym_DOLLARif] = ACTIONS(4429), + [anon_sym_match] = ACTIONS(4429), + [anon_sym_select] = ACTIONS(4429), + [anon_sym_lock] = ACTIONS(4429), + [anon_sym_rlock] = ACTIONS(4429), + [anon_sym_unsafe] = ACTIONS(4429), + [anon_sym_sql] = ACTIONS(4429), + [sym_int_literal] = ACTIONS(4429), + [sym_float_literal] = ACTIONS(4429), + [sym_rune_literal] = ACTIONS(4429), + [sym_pseudo_compile_time_identifier] = ACTIONS(4429), + [anon_sym_shared] = ACTIONS(4429), + [anon_sym_map_LBRACK] = ACTIONS(4429), + [anon_sym_chan] = ACTIONS(4429), + [anon_sym_thread] = ACTIONS(4429), + [anon_sym_atomic] = ACTIONS(4429), + [anon_sym_assert] = ACTIONS(4429), + [anon_sym_defer] = ACTIONS(4429), + [anon_sym_goto] = ACTIONS(4429), + [anon_sym_break] = ACTIONS(4429), + [anon_sym_continue] = ACTIONS(4429), + [anon_sym_return] = ACTIONS(4429), + [anon_sym_DOLLARfor] = ACTIONS(4429), + [anon_sym_for] = ACTIONS(4429), + [anon_sym_POUND] = ACTIONS(4429), + [anon_sym_asm] = ACTIONS(4429), + [anon_sym_AT_LBRACK] = ACTIONS(4429), + [sym___double_quote] = ACTIONS(4429), + [sym___single_quote] = ACTIONS(4429), + [sym___c_double_quote] = ACTIONS(4429), + [sym___c_single_quote] = ACTIONS(4429), + [sym___r_double_quote] = ACTIONS(4429), + [sym___r_single_quote] = ACTIONS(4429), }, [1552] = { [sym_line_comment] = STATE(1552), [sym_block_comment] = STATE(1552), - [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(4431), + [sym_identifier] = ACTIONS(4433), + [anon_sym_LF] = ACTIONS(4433), + [anon_sym_CR] = ACTIONS(4433), + [anon_sym_CR_LF] = ACTIONS(4433), [anon_sym_SLASH_SLASH] = ACTIONS(497), [anon_sym_SLASH_STAR] = ACTIONS(499), - [anon_sym_DOT] = ACTIONS(4435), - [anon_sym_LBRACE] = ACTIONS(4435), - [anon_sym_const] = ACTIONS(4435), - [anon_sym_LPAREN] = ACTIONS(4435), - [anon_sym___global] = ACTIONS(4435), - [anon_sym_type] = ACTIONS(4435), - [anon_sym_fn] = ACTIONS(4435), - [anon_sym_PLUS] = ACTIONS(4435), - [anon_sym_DASH] = ACTIONS(4435), - [anon_sym_STAR] = ACTIONS(4435), - [anon_sym_struct] = ACTIONS(4435), - [anon_sym_union] = ACTIONS(4435), - [anon_sym_pub] = ACTIONS(4435), - [anon_sym_mut] = ACTIONS(4435), - [anon_sym_enum] = ACTIONS(4435), - [anon_sym_interface] = ACTIONS(4435), - [anon_sym_QMARK] = ACTIONS(4435), - [anon_sym_BANG] = ACTIONS(4435), - [anon_sym_go] = ACTIONS(4435), - [anon_sym_spawn] = ACTIONS(4435), - [anon_sym_json_DOTdecode] = ACTIONS(4435), - [anon_sym_LBRACK2] = ACTIONS(4435), - [anon_sym_TILDE] = ACTIONS(4435), - [anon_sym_CARET] = ACTIONS(4435), - [anon_sym_AMP] = ACTIONS(4435), - [anon_sym_LT_DASH] = ACTIONS(4435), - [sym_none] = ACTIONS(4435), - [sym_true] = ACTIONS(4435), - [sym_false] = ACTIONS(4435), - [sym_nil] = ACTIONS(4435), - [anon_sym_if] = ACTIONS(4435), - [anon_sym_DOLLARif] = ACTIONS(4435), - [anon_sym_match] = ACTIONS(4435), - [anon_sym_select] = ACTIONS(4435), - [anon_sym_lock] = ACTIONS(4435), - [anon_sym_rlock] = ACTIONS(4435), - [anon_sym_unsafe] = ACTIONS(4435), - [anon_sym_sql] = ACTIONS(4435), - [sym_int_literal] = ACTIONS(4435), - [sym_float_literal] = ACTIONS(4435), - [sym_rune_literal] = ACTIONS(4435), - [sym_pseudo_compile_time_identifier] = ACTIONS(4435), - [anon_sym_shared] = ACTIONS(4435), - [anon_sym_map_LBRACK] = ACTIONS(4435), - [anon_sym_chan] = ACTIONS(4435), - [anon_sym_thread] = ACTIONS(4435), - [anon_sym_atomic] = ACTIONS(4435), - [anon_sym_assert] = ACTIONS(4435), - [anon_sym_defer] = ACTIONS(4435), - [anon_sym_goto] = ACTIONS(4435), - [anon_sym_break] = ACTIONS(4435), - [anon_sym_continue] = ACTIONS(4435), - [anon_sym_return] = ACTIONS(4435), - [anon_sym_DOLLARfor] = ACTIONS(4435), - [anon_sym_for] = ACTIONS(4435), - [anon_sym_POUND] = ACTIONS(4435), - [anon_sym_asm] = ACTIONS(4435), - [anon_sym_AT_LBRACK] = ACTIONS(4435), - [sym___double_quote] = ACTIONS(4435), - [sym___single_quote] = ACTIONS(4435), - [sym___c_double_quote] = ACTIONS(4435), - [sym___c_single_quote] = ACTIONS(4435), - [sym___r_double_quote] = ACTIONS(4435), - [sym___r_single_quote] = ACTIONS(4435), + [anon_sym_DOT] = ACTIONS(4433), + [anon_sym_LBRACE] = ACTIONS(4433), + [anon_sym_const] = ACTIONS(4433), + [anon_sym_LPAREN] = ACTIONS(4433), + [anon_sym___global] = ACTIONS(4433), + [anon_sym_type] = ACTIONS(4433), + [anon_sym_fn] = ACTIONS(4433), + [anon_sym_PLUS] = ACTIONS(4433), + [anon_sym_DASH] = ACTIONS(4433), + [anon_sym_STAR] = ACTIONS(4433), + [anon_sym_struct] = ACTIONS(4433), + [anon_sym_union] = ACTIONS(4433), + [anon_sym_pub] = ACTIONS(4433), + [anon_sym_mut] = ACTIONS(4433), + [anon_sym_enum] = ACTIONS(4433), + [anon_sym_interface] = ACTIONS(4433), + [anon_sym_QMARK] = ACTIONS(4433), + [anon_sym_BANG] = ACTIONS(4433), + [anon_sym_go] = ACTIONS(4433), + [anon_sym_spawn] = ACTIONS(4433), + [anon_sym_json_DOTdecode] = ACTIONS(4433), + [anon_sym_LBRACK2] = ACTIONS(4433), + [anon_sym_TILDE] = ACTIONS(4433), + [anon_sym_CARET] = ACTIONS(4433), + [anon_sym_AMP] = ACTIONS(4433), + [anon_sym_LT_DASH] = ACTIONS(4433), + [sym_none] = ACTIONS(4433), + [sym_true] = ACTIONS(4433), + [sym_false] = ACTIONS(4433), + [sym_nil] = ACTIONS(4433), + [anon_sym_if] = ACTIONS(4433), + [anon_sym_DOLLARif] = ACTIONS(4433), + [anon_sym_match] = ACTIONS(4433), + [anon_sym_select] = ACTIONS(4433), + [anon_sym_lock] = ACTIONS(4433), + [anon_sym_rlock] = ACTIONS(4433), + [anon_sym_unsafe] = ACTIONS(4433), + [anon_sym_sql] = ACTIONS(4433), + [sym_int_literal] = ACTIONS(4433), + [sym_float_literal] = ACTIONS(4433), + [sym_rune_literal] = ACTIONS(4433), + [sym_pseudo_compile_time_identifier] = ACTIONS(4433), + [anon_sym_shared] = ACTIONS(4433), + [anon_sym_map_LBRACK] = ACTIONS(4433), + [anon_sym_chan] = ACTIONS(4433), + [anon_sym_thread] = ACTIONS(4433), + [anon_sym_atomic] = ACTIONS(4433), + [anon_sym_assert] = ACTIONS(4433), + [anon_sym_defer] = ACTIONS(4433), + [anon_sym_goto] = ACTIONS(4433), + [anon_sym_break] = ACTIONS(4433), + [anon_sym_continue] = ACTIONS(4433), + [anon_sym_return] = ACTIONS(4433), + [anon_sym_DOLLARfor] = ACTIONS(4433), + [anon_sym_for] = ACTIONS(4433), + [anon_sym_POUND] = ACTIONS(4433), + [anon_sym_asm] = ACTIONS(4433), + [anon_sym_AT_LBRACK] = ACTIONS(4433), + [sym___double_quote] = ACTIONS(4433), + [sym___single_quote] = ACTIONS(4433), + [sym___c_double_quote] = ACTIONS(4433), + [sym___c_single_quote] = ACTIONS(4433), + [sym___r_double_quote] = ACTIONS(4433), + [sym___r_single_quote] = ACTIONS(4433), }, [1553] = { [sym_line_comment] = STATE(1553), [sym_block_comment] = STATE(1553), - [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(4435), + [sym_identifier] = ACTIONS(4437), + [anon_sym_LF] = ACTIONS(4437), + [anon_sym_CR] = ACTIONS(4437), + [anon_sym_CR_LF] = ACTIONS(4437), [anon_sym_SLASH_SLASH] = ACTIONS(497), [anon_sym_SLASH_STAR] = ACTIONS(499), - [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(4437), + [anon_sym_LBRACE] = ACTIONS(4437), + [anon_sym_const] = ACTIONS(4437), + [anon_sym_LPAREN] = ACTIONS(4437), + [anon_sym___global] = ACTIONS(4437), + [anon_sym_type] = ACTIONS(4437), + [anon_sym_fn] = ACTIONS(4437), + [anon_sym_PLUS] = ACTIONS(4437), + [anon_sym_DASH] = ACTIONS(4437), + [anon_sym_STAR] = ACTIONS(4437), + [anon_sym_struct] = ACTIONS(4437), + [anon_sym_union] = ACTIONS(4437), + [anon_sym_pub] = ACTIONS(4437), + [anon_sym_mut] = ACTIONS(4437), + [anon_sym_enum] = ACTIONS(4437), + [anon_sym_interface] = ACTIONS(4437), + [anon_sym_QMARK] = ACTIONS(4437), + [anon_sym_BANG] = ACTIONS(4437), + [anon_sym_go] = ACTIONS(4437), + [anon_sym_spawn] = ACTIONS(4437), + [anon_sym_json_DOTdecode] = ACTIONS(4437), + [anon_sym_LBRACK2] = ACTIONS(4437), + [anon_sym_TILDE] = ACTIONS(4437), + [anon_sym_CARET] = ACTIONS(4437), + [anon_sym_AMP] = ACTIONS(4437), + [anon_sym_LT_DASH] = ACTIONS(4437), + [sym_none] = ACTIONS(4437), + [sym_true] = ACTIONS(4437), + [sym_false] = ACTIONS(4437), + [sym_nil] = ACTIONS(4437), + [anon_sym_if] = ACTIONS(4437), + [anon_sym_DOLLARif] = ACTIONS(4437), + [anon_sym_match] = ACTIONS(4437), + [anon_sym_select] = ACTIONS(4437), + [anon_sym_lock] = ACTIONS(4437), + [anon_sym_rlock] = ACTIONS(4437), + [anon_sym_unsafe] = ACTIONS(4437), + [anon_sym_sql] = ACTIONS(4437), + [sym_int_literal] = ACTIONS(4437), + [sym_float_literal] = ACTIONS(4437), + [sym_rune_literal] = ACTIONS(4437), + [sym_pseudo_compile_time_identifier] = ACTIONS(4437), + [anon_sym_shared] = ACTIONS(4437), + [anon_sym_map_LBRACK] = ACTIONS(4437), + [anon_sym_chan] = ACTIONS(4437), + [anon_sym_thread] = ACTIONS(4437), + [anon_sym_atomic] = ACTIONS(4437), + [anon_sym_assert] = ACTIONS(4437), + [anon_sym_defer] = ACTIONS(4437), + [anon_sym_goto] = ACTIONS(4437), + [anon_sym_break] = ACTIONS(4437), + [anon_sym_continue] = ACTIONS(4437), + [anon_sym_return] = ACTIONS(4437), + [anon_sym_DOLLARfor] = ACTIONS(4437), + [anon_sym_for] = ACTIONS(4437), + [anon_sym_POUND] = ACTIONS(4437), + [anon_sym_asm] = ACTIONS(4437), + [anon_sym_AT_LBRACK] = ACTIONS(4437), + [sym___double_quote] = ACTIONS(4437), + [sym___single_quote] = ACTIONS(4437), + [sym___c_double_quote] = ACTIONS(4437), + [sym___c_single_quote] = ACTIONS(4437), + [sym___r_double_quote] = ACTIONS(4437), + [sym___r_single_quote] = ACTIONS(4437), }, [1554] = { [sym_line_comment] = STATE(1554), [sym_block_comment] = STATE(1554), - [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(4439), + [sym_identifier] = ACTIONS(4441), + [anon_sym_LF] = ACTIONS(4441), + [anon_sym_CR] = ACTIONS(4441), + [anon_sym_CR_LF] = ACTIONS(4441), [anon_sym_SLASH_SLASH] = ACTIONS(497), [anon_sym_SLASH_STAR] = ACTIONS(499), - [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(4441), + [anon_sym_LBRACE] = ACTIONS(4441), + [anon_sym_const] = ACTIONS(4441), + [anon_sym_LPAREN] = ACTIONS(4441), + [anon_sym___global] = ACTIONS(4441), + [anon_sym_type] = ACTIONS(4441), + [anon_sym_fn] = ACTIONS(4441), + [anon_sym_PLUS] = ACTIONS(4441), + [anon_sym_DASH] = ACTIONS(4441), + [anon_sym_STAR] = ACTIONS(4441), + [anon_sym_struct] = ACTIONS(4441), + [anon_sym_union] = ACTIONS(4441), + [anon_sym_pub] = ACTIONS(4441), + [anon_sym_mut] = ACTIONS(4441), + [anon_sym_enum] = ACTIONS(4441), + [anon_sym_interface] = ACTIONS(4441), + [anon_sym_QMARK] = ACTIONS(4441), + [anon_sym_BANG] = ACTIONS(4441), + [anon_sym_go] = ACTIONS(4441), + [anon_sym_spawn] = ACTIONS(4441), + [anon_sym_json_DOTdecode] = ACTIONS(4441), + [anon_sym_LBRACK2] = ACTIONS(4441), + [anon_sym_TILDE] = ACTIONS(4441), + [anon_sym_CARET] = ACTIONS(4441), + [anon_sym_AMP] = ACTIONS(4441), + [anon_sym_LT_DASH] = ACTIONS(4441), + [sym_none] = ACTIONS(4441), + [sym_true] = ACTIONS(4441), + [sym_false] = ACTIONS(4441), + [sym_nil] = ACTIONS(4441), + [anon_sym_if] = ACTIONS(4441), + [anon_sym_DOLLARif] = ACTIONS(4441), + [anon_sym_match] = ACTIONS(4441), + [anon_sym_select] = ACTIONS(4441), + [anon_sym_lock] = ACTIONS(4441), + [anon_sym_rlock] = ACTIONS(4441), + [anon_sym_unsafe] = ACTIONS(4441), + [anon_sym_sql] = ACTIONS(4441), + [sym_int_literal] = ACTIONS(4441), + [sym_float_literal] = ACTIONS(4441), + [sym_rune_literal] = ACTIONS(4441), + [sym_pseudo_compile_time_identifier] = ACTIONS(4441), + [anon_sym_shared] = ACTIONS(4441), + [anon_sym_map_LBRACK] = ACTIONS(4441), + [anon_sym_chan] = ACTIONS(4441), + [anon_sym_thread] = ACTIONS(4441), + [anon_sym_atomic] = ACTIONS(4441), + [anon_sym_assert] = ACTIONS(4441), + [anon_sym_defer] = ACTIONS(4441), + [anon_sym_goto] = ACTIONS(4441), + [anon_sym_break] = ACTIONS(4441), + [anon_sym_continue] = ACTIONS(4441), + [anon_sym_return] = ACTIONS(4441), + [anon_sym_DOLLARfor] = ACTIONS(4441), + [anon_sym_for] = ACTIONS(4441), + [anon_sym_POUND] = ACTIONS(4441), + [anon_sym_asm] = ACTIONS(4441), + [anon_sym_AT_LBRACK] = ACTIONS(4441), + [sym___double_quote] = ACTIONS(4441), + [sym___single_quote] = ACTIONS(4441), + [sym___c_double_quote] = ACTIONS(4441), + [sym___c_single_quote] = ACTIONS(4441), + [sym___r_double_quote] = ACTIONS(4441), + [sym___r_single_quote] = ACTIONS(4441), }, [1555] = { [sym_line_comment] = STATE(1555), [sym_block_comment] = STATE(1555), - [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(4443), + [sym_identifier] = ACTIONS(4445), + [anon_sym_LF] = ACTIONS(4445), + [anon_sym_CR] = ACTIONS(4445), + [anon_sym_CR_LF] = ACTIONS(4445), [anon_sym_SLASH_SLASH] = ACTIONS(497), [anon_sym_SLASH_STAR] = ACTIONS(499), - [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(4445), + [anon_sym_LBRACE] = ACTIONS(4445), + [anon_sym_const] = ACTIONS(4445), + [anon_sym_LPAREN] = ACTIONS(4445), + [anon_sym___global] = ACTIONS(4445), + [anon_sym_type] = ACTIONS(4445), + [anon_sym_fn] = ACTIONS(4445), + [anon_sym_PLUS] = ACTIONS(4445), + [anon_sym_DASH] = ACTIONS(4445), + [anon_sym_STAR] = ACTIONS(4445), + [anon_sym_struct] = ACTIONS(4445), + [anon_sym_union] = ACTIONS(4445), + [anon_sym_pub] = ACTIONS(4445), + [anon_sym_mut] = ACTIONS(4445), + [anon_sym_enum] = ACTIONS(4445), + [anon_sym_interface] = ACTIONS(4445), + [anon_sym_QMARK] = ACTIONS(4445), + [anon_sym_BANG] = ACTIONS(4445), + [anon_sym_go] = ACTIONS(4445), + [anon_sym_spawn] = ACTIONS(4445), + [anon_sym_json_DOTdecode] = ACTIONS(4445), + [anon_sym_LBRACK2] = ACTIONS(4445), + [anon_sym_TILDE] = ACTIONS(4445), + [anon_sym_CARET] = ACTIONS(4445), + [anon_sym_AMP] = ACTIONS(4445), + [anon_sym_LT_DASH] = ACTIONS(4445), + [sym_none] = ACTIONS(4445), + [sym_true] = ACTIONS(4445), + [sym_false] = ACTIONS(4445), + [sym_nil] = ACTIONS(4445), + [anon_sym_if] = ACTIONS(4445), + [anon_sym_DOLLARif] = ACTIONS(4445), + [anon_sym_match] = ACTIONS(4445), + [anon_sym_select] = ACTIONS(4445), + [anon_sym_lock] = ACTIONS(4445), + [anon_sym_rlock] = ACTIONS(4445), + [anon_sym_unsafe] = ACTIONS(4445), + [anon_sym_sql] = ACTIONS(4445), + [sym_int_literal] = ACTIONS(4445), + [sym_float_literal] = ACTIONS(4445), + [sym_rune_literal] = ACTIONS(4445), + [sym_pseudo_compile_time_identifier] = ACTIONS(4445), + [anon_sym_shared] = ACTIONS(4445), + [anon_sym_map_LBRACK] = ACTIONS(4445), + [anon_sym_chan] = ACTIONS(4445), + [anon_sym_thread] = ACTIONS(4445), + [anon_sym_atomic] = ACTIONS(4445), + [anon_sym_assert] = ACTIONS(4445), + [anon_sym_defer] = ACTIONS(4445), + [anon_sym_goto] = ACTIONS(4445), + [anon_sym_break] = ACTIONS(4445), + [anon_sym_continue] = ACTIONS(4445), + [anon_sym_return] = ACTIONS(4445), + [anon_sym_DOLLARfor] = ACTIONS(4445), + [anon_sym_for] = ACTIONS(4445), + [anon_sym_POUND] = ACTIONS(4445), + [anon_sym_asm] = ACTIONS(4445), + [anon_sym_AT_LBRACK] = ACTIONS(4445), + [sym___double_quote] = ACTIONS(4445), + [sym___single_quote] = ACTIONS(4445), + [sym___c_double_quote] = ACTIONS(4445), + [sym___c_single_quote] = ACTIONS(4445), + [sym___r_double_quote] = ACTIONS(4445), + [sym___r_single_quote] = ACTIONS(4445), }, [1556] = { [sym_line_comment] = STATE(1556), [sym_block_comment] = STATE(1556), - [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(4447), + [sym_identifier] = ACTIONS(4449), + [anon_sym_LF] = ACTIONS(4449), + [anon_sym_CR] = ACTIONS(4449), + [anon_sym_CR_LF] = ACTIONS(4449), [anon_sym_SLASH_SLASH] = ACTIONS(497), [anon_sym_SLASH_STAR] = ACTIONS(499), - [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(4449), + [anon_sym_LBRACE] = ACTIONS(4449), + [anon_sym_const] = ACTIONS(4449), + [anon_sym_LPAREN] = ACTIONS(4449), + [anon_sym___global] = ACTIONS(4449), + [anon_sym_type] = ACTIONS(4449), + [anon_sym_fn] = ACTIONS(4449), + [anon_sym_PLUS] = ACTIONS(4449), + [anon_sym_DASH] = ACTIONS(4449), + [anon_sym_STAR] = ACTIONS(4449), + [anon_sym_struct] = ACTIONS(4449), + [anon_sym_union] = ACTIONS(4449), + [anon_sym_pub] = ACTIONS(4449), + [anon_sym_mut] = ACTIONS(4449), + [anon_sym_enum] = ACTIONS(4449), + [anon_sym_interface] = ACTIONS(4449), + [anon_sym_QMARK] = ACTIONS(4449), + [anon_sym_BANG] = ACTIONS(4449), + [anon_sym_go] = ACTIONS(4449), + [anon_sym_spawn] = ACTIONS(4449), + [anon_sym_json_DOTdecode] = ACTIONS(4449), + [anon_sym_LBRACK2] = ACTIONS(4449), + [anon_sym_TILDE] = ACTIONS(4449), + [anon_sym_CARET] = ACTIONS(4449), + [anon_sym_AMP] = ACTIONS(4449), + [anon_sym_LT_DASH] = ACTIONS(4449), + [sym_none] = ACTIONS(4449), + [sym_true] = ACTIONS(4449), + [sym_false] = ACTIONS(4449), + [sym_nil] = ACTIONS(4449), + [anon_sym_if] = ACTIONS(4449), + [anon_sym_DOLLARif] = ACTIONS(4449), + [anon_sym_match] = ACTIONS(4449), + [anon_sym_select] = ACTIONS(4449), + [anon_sym_lock] = ACTIONS(4449), + [anon_sym_rlock] = ACTIONS(4449), + [anon_sym_unsafe] = ACTIONS(4449), + [anon_sym_sql] = ACTIONS(4449), + [sym_int_literal] = ACTIONS(4449), + [sym_float_literal] = ACTIONS(4449), + [sym_rune_literal] = ACTIONS(4449), + [sym_pseudo_compile_time_identifier] = ACTIONS(4449), + [anon_sym_shared] = ACTIONS(4449), + [anon_sym_map_LBRACK] = ACTIONS(4449), + [anon_sym_chan] = ACTIONS(4449), + [anon_sym_thread] = ACTIONS(4449), + [anon_sym_atomic] = ACTIONS(4449), + [anon_sym_assert] = ACTIONS(4449), + [anon_sym_defer] = ACTIONS(4449), + [anon_sym_goto] = ACTIONS(4449), + [anon_sym_break] = ACTIONS(4449), + [anon_sym_continue] = ACTIONS(4449), + [anon_sym_return] = ACTIONS(4449), + [anon_sym_DOLLARfor] = ACTIONS(4449), + [anon_sym_for] = ACTIONS(4449), + [anon_sym_POUND] = ACTIONS(4449), + [anon_sym_asm] = ACTIONS(4449), + [anon_sym_AT_LBRACK] = ACTIONS(4449), + [sym___double_quote] = ACTIONS(4449), + [sym___single_quote] = ACTIONS(4449), + [sym___c_double_quote] = ACTIONS(4449), + [sym___c_single_quote] = ACTIONS(4449), + [sym___r_double_quote] = ACTIONS(4449), + [sym___r_single_quote] = ACTIONS(4449), }, [1557] = { [sym_line_comment] = STATE(1557), [sym_block_comment] = STATE(1557), - [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(4451), + [sym_identifier] = ACTIONS(4453), + [anon_sym_LF] = ACTIONS(4453), + [anon_sym_CR] = ACTIONS(4453), + [anon_sym_CR_LF] = ACTIONS(4453), [anon_sym_SLASH_SLASH] = ACTIONS(497), [anon_sym_SLASH_STAR] = ACTIONS(499), - [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(4453), + [anon_sym_LBRACE] = ACTIONS(4453), + [anon_sym_const] = ACTIONS(4453), + [anon_sym_LPAREN] = ACTIONS(4453), + [anon_sym___global] = ACTIONS(4453), + [anon_sym_type] = ACTIONS(4453), + [anon_sym_fn] = ACTIONS(4453), + [anon_sym_PLUS] = ACTIONS(4453), + [anon_sym_DASH] = ACTIONS(4453), + [anon_sym_STAR] = ACTIONS(4453), + [anon_sym_struct] = ACTIONS(4453), + [anon_sym_union] = ACTIONS(4453), + [anon_sym_pub] = ACTIONS(4453), + [anon_sym_mut] = ACTIONS(4453), + [anon_sym_enum] = ACTIONS(4453), + [anon_sym_interface] = ACTIONS(4453), + [anon_sym_QMARK] = ACTIONS(4453), + [anon_sym_BANG] = ACTIONS(4453), + [anon_sym_go] = ACTIONS(4453), + [anon_sym_spawn] = ACTIONS(4453), + [anon_sym_json_DOTdecode] = ACTIONS(4453), + [anon_sym_LBRACK2] = ACTIONS(4453), + [anon_sym_TILDE] = ACTIONS(4453), + [anon_sym_CARET] = ACTIONS(4453), + [anon_sym_AMP] = ACTIONS(4453), + [anon_sym_LT_DASH] = ACTIONS(4453), + [sym_none] = ACTIONS(4453), + [sym_true] = ACTIONS(4453), + [sym_false] = ACTIONS(4453), + [sym_nil] = ACTIONS(4453), + [anon_sym_if] = ACTIONS(4453), + [anon_sym_DOLLARif] = ACTIONS(4453), + [anon_sym_match] = ACTIONS(4453), + [anon_sym_select] = ACTIONS(4453), + [anon_sym_lock] = ACTIONS(4453), + [anon_sym_rlock] = ACTIONS(4453), + [anon_sym_unsafe] = ACTIONS(4453), + [anon_sym_sql] = ACTIONS(4453), + [sym_int_literal] = ACTIONS(4453), + [sym_float_literal] = ACTIONS(4453), + [sym_rune_literal] = ACTIONS(4453), + [sym_pseudo_compile_time_identifier] = ACTIONS(4453), + [anon_sym_shared] = ACTIONS(4453), + [anon_sym_map_LBRACK] = ACTIONS(4453), + [anon_sym_chan] = ACTIONS(4453), + [anon_sym_thread] = ACTIONS(4453), + [anon_sym_atomic] = ACTIONS(4453), + [anon_sym_assert] = ACTIONS(4453), + [anon_sym_defer] = ACTIONS(4453), + [anon_sym_goto] = ACTIONS(4453), + [anon_sym_break] = ACTIONS(4453), + [anon_sym_continue] = ACTIONS(4453), + [anon_sym_return] = ACTIONS(4453), + [anon_sym_DOLLARfor] = ACTIONS(4453), + [anon_sym_for] = ACTIONS(4453), + [anon_sym_POUND] = ACTIONS(4453), + [anon_sym_asm] = ACTIONS(4453), + [anon_sym_AT_LBRACK] = ACTIONS(4453), + [sym___double_quote] = ACTIONS(4453), + [sym___single_quote] = ACTIONS(4453), + [sym___c_double_quote] = ACTIONS(4453), + [sym___c_single_quote] = ACTIONS(4453), + [sym___r_double_quote] = ACTIONS(4453), + [sym___r_single_quote] = ACTIONS(4453), }, [1558] = { [sym_line_comment] = STATE(1558), [sym_block_comment] = STATE(1558), - [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(4455), + [sym_identifier] = ACTIONS(4457), + [anon_sym_LF] = ACTIONS(4457), + [anon_sym_CR] = ACTIONS(4457), + [anon_sym_CR_LF] = ACTIONS(4457), [anon_sym_SLASH_SLASH] = ACTIONS(497), [anon_sym_SLASH_STAR] = ACTIONS(499), - [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(4457), + [anon_sym_LBRACE] = ACTIONS(4457), + [anon_sym_const] = ACTIONS(4457), + [anon_sym_LPAREN] = ACTIONS(4457), + [anon_sym___global] = ACTIONS(4457), + [anon_sym_type] = ACTIONS(4457), + [anon_sym_fn] = ACTIONS(4457), + [anon_sym_PLUS] = ACTIONS(4457), + [anon_sym_DASH] = ACTIONS(4457), + [anon_sym_STAR] = ACTIONS(4457), + [anon_sym_struct] = ACTIONS(4457), + [anon_sym_union] = ACTIONS(4457), + [anon_sym_pub] = ACTIONS(4457), + [anon_sym_mut] = ACTIONS(4457), + [anon_sym_enum] = ACTIONS(4457), + [anon_sym_interface] = ACTIONS(4457), + [anon_sym_QMARK] = ACTIONS(4457), + [anon_sym_BANG] = ACTIONS(4457), + [anon_sym_go] = ACTIONS(4457), + [anon_sym_spawn] = ACTIONS(4457), + [anon_sym_json_DOTdecode] = ACTIONS(4457), + [anon_sym_LBRACK2] = ACTIONS(4457), + [anon_sym_TILDE] = ACTIONS(4457), + [anon_sym_CARET] = ACTIONS(4457), + [anon_sym_AMP] = ACTIONS(4457), + [anon_sym_LT_DASH] = ACTIONS(4457), + [sym_none] = ACTIONS(4457), + [sym_true] = ACTIONS(4457), + [sym_false] = ACTIONS(4457), + [sym_nil] = ACTIONS(4457), + [anon_sym_if] = ACTIONS(4457), + [anon_sym_DOLLARif] = ACTIONS(4457), + [anon_sym_match] = ACTIONS(4457), + [anon_sym_select] = ACTIONS(4457), + [anon_sym_lock] = ACTIONS(4457), + [anon_sym_rlock] = ACTIONS(4457), + [anon_sym_unsafe] = ACTIONS(4457), + [anon_sym_sql] = ACTIONS(4457), + [sym_int_literal] = ACTIONS(4457), + [sym_float_literal] = ACTIONS(4457), + [sym_rune_literal] = ACTIONS(4457), + [sym_pseudo_compile_time_identifier] = ACTIONS(4457), + [anon_sym_shared] = ACTIONS(4457), + [anon_sym_map_LBRACK] = ACTIONS(4457), + [anon_sym_chan] = ACTIONS(4457), + [anon_sym_thread] = ACTIONS(4457), + [anon_sym_atomic] = ACTIONS(4457), + [anon_sym_assert] = ACTIONS(4457), + [anon_sym_defer] = ACTIONS(4457), + [anon_sym_goto] = ACTIONS(4457), + [anon_sym_break] = ACTIONS(4457), + [anon_sym_continue] = ACTIONS(4457), + [anon_sym_return] = ACTIONS(4457), + [anon_sym_DOLLARfor] = ACTIONS(4457), + [anon_sym_for] = ACTIONS(4457), + [anon_sym_POUND] = ACTIONS(4457), + [anon_sym_asm] = ACTIONS(4457), + [anon_sym_AT_LBRACK] = ACTIONS(4457), + [sym___double_quote] = ACTIONS(4457), + [sym___single_quote] = ACTIONS(4457), + [sym___c_double_quote] = ACTIONS(4457), + [sym___c_single_quote] = ACTIONS(4457), + [sym___r_double_quote] = ACTIONS(4457), + [sym___r_single_quote] = ACTIONS(4457), }, [1559] = { [sym_line_comment] = STATE(1559), [sym_block_comment] = STATE(1559), - [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(4459), + [sym_identifier] = ACTIONS(4461), + [anon_sym_LF] = ACTIONS(4461), + [anon_sym_CR] = ACTIONS(4461), + [anon_sym_CR_LF] = ACTIONS(4461), [anon_sym_SLASH_SLASH] = ACTIONS(497), [anon_sym_SLASH_STAR] = ACTIONS(499), - [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(4461), + [anon_sym_LBRACE] = ACTIONS(4461), + [anon_sym_const] = ACTIONS(4461), + [anon_sym_LPAREN] = ACTIONS(4461), + [anon_sym___global] = ACTIONS(4461), + [anon_sym_type] = ACTIONS(4461), + [anon_sym_fn] = ACTIONS(4461), + [anon_sym_PLUS] = ACTIONS(4461), + [anon_sym_DASH] = ACTIONS(4461), + [anon_sym_STAR] = ACTIONS(4461), + [anon_sym_struct] = ACTIONS(4461), + [anon_sym_union] = ACTIONS(4461), + [anon_sym_pub] = ACTIONS(4461), + [anon_sym_mut] = ACTIONS(4461), + [anon_sym_enum] = ACTIONS(4461), + [anon_sym_interface] = ACTIONS(4461), + [anon_sym_QMARK] = ACTIONS(4461), + [anon_sym_BANG] = ACTIONS(4461), + [anon_sym_go] = ACTIONS(4461), + [anon_sym_spawn] = ACTIONS(4461), + [anon_sym_json_DOTdecode] = ACTIONS(4461), + [anon_sym_LBRACK2] = ACTIONS(4461), + [anon_sym_TILDE] = ACTIONS(4461), + [anon_sym_CARET] = ACTIONS(4461), + [anon_sym_AMP] = ACTIONS(4461), + [anon_sym_LT_DASH] = ACTIONS(4461), + [sym_none] = ACTIONS(4461), + [sym_true] = ACTIONS(4461), + [sym_false] = ACTIONS(4461), + [sym_nil] = ACTIONS(4461), + [anon_sym_if] = ACTIONS(4461), + [anon_sym_DOLLARif] = ACTIONS(4461), + [anon_sym_match] = ACTIONS(4461), + [anon_sym_select] = ACTIONS(4461), + [anon_sym_lock] = ACTIONS(4461), + [anon_sym_rlock] = ACTIONS(4461), + [anon_sym_unsafe] = ACTIONS(4461), + [anon_sym_sql] = ACTIONS(4461), + [sym_int_literal] = ACTIONS(4461), + [sym_float_literal] = ACTIONS(4461), + [sym_rune_literal] = ACTIONS(4461), + [sym_pseudo_compile_time_identifier] = ACTIONS(4461), + [anon_sym_shared] = ACTIONS(4461), + [anon_sym_map_LBRACK] = ACTIONS(4461), + [anon_sym_chan] = ACTIONS(4461), + [anon_sym_thread] = ACTIONS(4461), + [anon_sym_atomic] = ACTIONS(4461), + [anon_sym_assert] = ACTIONS(4461), + [anon_sym_defer] = ACTIONS(4461), + [anon_sym_goto] = ACTIONS(4461), + [anon_sym_break] = ACTIONS(4461), + [anon_sym_continue] = ACTIONS(4461), + [anon_sym_return] = ACTIONS(4461), + [anon_sym_DOLLARfor] = ACTIONS(4461), + [anon_sym_for] = ACTIONS(4461), + [anon_sym_POUND] = ACTIONS(4461), + [anon_sym_asm] = ACTIONS(4461), + [anon_sym_AT_LBRACK] = ACTIONS(4461), + [sym___double_quote] = ACTIONS(4461), + [sym___single_quote] = ACTIONS(4461), + [sym___c_double_quote] = ACTIONS(4461), + [sym___c_single_quote] = ACTIONS(4461), + [sym___r_double_quote] = ACTIONS(4461), + [sym___r_single_quote] = ACTIONS(4461), }, [1560] = { [sym_line_comment] = STATE(1560), [sym_block_comment] = STATE(1560), - [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(4463), + [sym_identifier] = ACTIONS(4465), + [anon_sym_LF] = ACTIONS(4465), + [anon_sym_CR] = ACTIONS(4465), + [anon_sym_CR_LF] = ACTIONS(4465), [anon_sym_SLASH_SLASH] = ACTIONS(497), [anon_sym_SLASH_STAR] = ACTIONS(499), - [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(4465), + [anon_sym_LBRACE] = ACTIONS(4465), + [anon_sym_const] = ACTIONS(4465), + [anon_sym_LPAREN] = ACTIONS(4465), + [anon_sym___global] = ACTIONS(4465), + [anon_sym_type] = ACTIONS(4465), + [anon_sym_fn] = ACTIONS(4465), + [anon_sym_PLUS] = ACTIONS(4465), + [anon_sym_DASH] = ACTIONS(4465), + [anon_sym_STAR] = ACTIONS(4465), + [anon_sym_struct] = ACTIONS(4465), + [anon_sym_union] = ACTIONS(4465), + [anon_sym_pub] = ACTIONS(4465), + [anon_sym_mut] = ACTIONS(4465), + [anon_sym_enum] = ACTIONS(4465), + [anon_sym_interface] = ACTIONS(4465), + [anon_sym_QMARK] = ACTIONS(4465), + [anon_sym_BANG] = ACTIONS(4465), + [anon_sym_go] = ACTIONS(4465), + [anon_sym_spawn] = ACTIONS(4465), + [anon_sym_json_DOTdecode] = ACTIONS(4465), + [anon_sym_LBRACK2] = ACTIONS(4465), + [anon_sym_TILDE] = ACTIONS(4465), + [anon_sym_CARET] = ACTIONS(4465), + [anon_sym_AMP] = ACTIONS(4465), + [anon_sym_LT_DASH] = ACTIONS(4465), + [sym_none] = ACTIONS(4465), + [sym_true] = ACTIONS(4465), + [sym_false] = ACTIONS(4465), + [sym_nil] = ACTIONS(4465), + [anon_sym_if] = ACTIONS(4465), + [anon_sym_DOLLARif] = ACTIONS(4465), + [anon_sym_match] = ACTIONS(4465), + [anon_sym_select] = ACTIONS(4465), + [anon_sym_lock] = ACTIONS(4465), + [anon_sym_rlock] = ACTIONS(4465), + [anon_sym_unsafe] = ACTIONS(4465), + [anon_sym_sql] = ACTIONS(4465), + [sym_int_literal] = ACTIONS(4465), + [sym_float_literal] = ACTIONS(4465), + [sym_rune_literal] = ACTIONS(4465), + [sym_pseudo_compile_time_identifier] = ACTIONS(4465), + [anon_sym_shared] = ACTIONS(4465), + [anon_sym_map_LBRACK] = ACTIONS(4465), + [anon_sym_chan] = ACTIONS(4465), + [anon_sym_thread] = ACTIONS(4465), + [anon_sym_atomic] = ACTIONS(4465), + [anon_sym_assert] = ACTIONS(4465), + [anon_sym_defer] = ACTIONS(4465), + [anon_sym_goto] = ACTIONS(4465), + [anon_sym_break] = ACTIONS(4465), + [anon_sym_continue] = ACTIONS(4465), + [anon_sym_return] = ACTIONS(4465), + [anon_sym_DOLLARfor] = ACTIONS(4465), + [anon_sym_for] = ACTIONS(4465), + [anon_sym_POUND] = ACTIONS(4465), + [anon_sym_asm] = ACTIONS(4465), + [anon_sym_AT_LBRACK] = ACTIONS(4465), + [sym___double_quote] = ACTIONS(4465), + [sym___single_quote] = ACTIONS(4465), + [sym___c_double_quote] = ACTIONS(4465), + [sym___c_single_quote] = ACTIONS(4465), + [sym___r_double_quote] = ACTIONS(4465), + [sym___r_single_quote] = ACTIONS(4465), }, [1561] = { [sym_line_comment] = STATE(1561), [sym_block_comment] = STATE(1561), - [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(4467), + [sym_identifier] = ACTIONS(4469), + [anon_sym_LF] = ACTIONS(4469), + [anon_sym_CR] = ACTIONS(4469), + [anon_sym_CR_LF] = ACTIONS(4469), [anon_sym_SLASH_SLASH] = ACTIONS(497), [anon_sym_SLASH_STAR] = ACTIONS(499), - [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(4469), + [anon_sym_LBRACE] = ACTIONS(4469), + [anon_sym_const] = ACTIONS(4469), + [anon_sym_LPAREN] = ACTIONS(4469), + [anon_sym___global] = ACTIONS(4469), + [anon_sym_type] = ACTIONS(4469), + [anon_sym_fn] = ACTIONS(4469), + [anon_sym_PLUS] = ACTIONS(4469), + [anon_sym_DASH] = ACTIONS(4469), + [anon_sym_STAR] = ACTIONS(4469), + [anon_sym_struct] = ACTIONS(4469), + [anon_sym_union] = ACTIONS(4469), + [anon_sym_pub] = ACTIONS(4469), + [anon_sym_mut] = ACTIONS(4469), + [anon_sym_enum] = ACTIONS(4469), + [anon_sym_interface] = ACTIONS(4469), + [anon_sym_QMARK] = ACTIONS(4469), + [anon_sym_BANG] = ACTIONS(4469), + [anon_sym_go] = ACTIONS(4469), + [anon_sym_spawn] = ACTIONS(4469), + [anon_sym_json_DOTdecode] = ACTIONS(4469), + [anon_sym_LBRACK2] = ACTIONS(4469), + [anon_sym_TILDE] = ACTIONS(4469), + [anon_sym_CARET] = ACTIONS(4469), + [anon_sym_AMP] = ACTIONS(4469), + [anon_sym_LT_DASH] = ACTIONS(4469), + [sym_none] = ACTIONS(4469), + [sym_true] = ACTIONS(4469), + [sym_false] = ACTIONS(4469), + [sym_nil] = ACTIONS(4469), + [anon_sym_if] = ACTIONS(4469), + [anon_sym_DOLLARif] = ACTIONS(4469), + [anon_sym_match] = ACTIONS(4469), + [anon_sym_select] = ACTIONS(4469), + [anon_sym_lock] = ACTIONS(4469), + [anon_sym_rlock] = ACTIONS(4469), + [anon_sym_unsafe] = ACTIONS(4469), + [anon_sym_sql] = ACTIONS(4469), + [sym_int_literal] = ACTIONS(4469), + [sym_float_literal] = ACTIONS(4469), + [sym_rune_literal] = ACTIONS(4469), + [sym_pseudo_compile_time_identifier] = ACTIONS(4469), + [anon_sym_shared] = ACTIONS(4469), + [anon_sym_map_LBRACK] = ACTIONS(4469), + [anon_sym_chan] = ACTIONS(4469), + [anon_sym_thread] = ACTIONS(4469), + [anon_sym_atomic] = ACTIONS(4469), + [anon_sym_assert] = ACTIONS(4469), + [anon_sym_defer] = ACTIONS(4469), + [anon_sym_goto] = ACTIONS(4469), + [anon_sym_break] = ACTIONS(4469), + [anon_sym_continue] = ACTIONS(4469), + [anon_sym_return] = ACTIONS(4469), + [anon_sym_DOLLARfor] = ACTIONS(4469), + [anon_sym_for] = ACTIONS(4469), + [anon_sym_POUND] = ACTIONS(4469), + [anon_sym_asm] = ACTIONS(4469), + [anon_sym_AT_LBRACK] = ACTIONS(4469), + [sym___double_quote] = ACTIONS(4469), + [sym___single_quote] = ACTIONS(4469), + [sym___c_double_quote] = ACTIONS(4469), + [sym___c_single_quote] = ACTIONS(4469), + [sym___r_double_quote] = ACTIONS(4469), + [sym___r_single_quote] = ACTIONS(4469), }, [1562] = { [sym_line_comment] = STATE(1562), [sym_block_comment] = STATE(1562), - [ts_builtin_sym_end] = ACTIONS(1915), - [sym_identifier] = ACTIONS(1917), - [anon_sym_LF] = ACTIONS(1917), - [anon_sym_CR] = ACTIONS(1917), - [anon_sym_CR_LF] = ACTIONS(1917), + [ts_builtin_sym_end] = ACTIONS(4471), + [sym_identifier] = ACTIONS(4473), + [anon_sym_LF] = ACTIONS(4473), + [anon_sym_CR] = ACTIONS(4473), + [anon_sym_CR_LF] = ACTIONS(4473), [anon_sym_SLASH_SLASH] = ACTIONS(497), [anon_sym_SLASH_STAR] = ACTIONS(499), - [anon_sym_DOT] = ACTIONS(1917), - [anon_sym_LBRACE] = ACTIONS(1917), - [anon_sym_const] = ACTIONS(1917), - [anon_sym_LPAREN] = ACTIONS(1917), - [anon_sym___global] = ACTIONS(1917), - [anon_sym_type] = ACTIONS(1917), - [anon_sym_fn] = ACTIONS(1917), - [anon_sym_PLUS] = ACTIONS(1917), - [anon_sym_DASH] = ACTIONS(1917), - [anon_sym_STAR] = ACTIONS(1917), - [anon_sym_struct] = ACTIONS(1917), - [anon_sym_union] = ACTIONS(1917), - [anon_sym_pub] = ACTIONS(1917), - [anon_sym_mut] = ACTIONS(1917), - [anon_sym_enum] = ACTIONS(1917), - [anon_sym_interface] = ACTIONS(1917), - [anon_sym_QMARK] = ACTIONS(1917), - [anon_sym_BANG] = ACTIONS(1917), - [anon_sym_go] = ACTIONS(1917), - [anon_sym_spawn] = ACTIONS(1917), - [anon_sym_json_DOTdecode] = ACTIONS(1917), - [anon_sym_LBRACK2] = ACTIONS(1917), - [anon_sym_TILDE] = ACTIONS(1917), - [anon_sym_CARET] = ACTIONS(1917), - [anon_sym_AMP] = ACTIONS(1917), - [anon_sym_LT_DASH] = ACTIONS(1917), - [sym_none] = ACTIONS(1917), - [sym_true] = ACTIONS(1917), - [sym_false] = ACTIONS(1917), - [sym_nil] = ACTIONS(1917), - [anon_sym_if] = ACTIONS(1917), - [anon_sym_DOLLARif] = ACTIONS(1917), - [anon_sym_match] = ACTIONS(1917), - [anon_sym_select] = ACTIONS(1917), - [anon_sym_lock] = ACTIONS(1917), - [anon_sym_rlock] = ACTIONS(1917), - [anon_sym_unsafe] = ACTIONS(1917), - [anon_sym_sql] = ACTIONS(1917), - [sym_int_literal] = ACTIONS(1917), - [sym_float_literal] = ACTIONS(1917), - [sym_rune_literal] = ACTIONS(1917), - [sym_pseudo_compile_time_identifier] = ACTIONS(1917), - [anon_sym_shared] = ACTIONS(1917), - [anon_sym_map_LBRACK] = ACTIONS(1917), - [anon_sym_chan] = ACTIONS(1917), - [anon_sym_thread] = ACTIONS(1917), - [anon_sym_atomic] = ACTIONS(1917), - [anon_sym_assert] = ACTIONS(1917), - [anon_sym_defer] = ACTIONS(1917), - [anon_sym_goto] = ACTIONS(1917), - [anon_sym_break] = ACTIONS(1917), - [anon_sym_continue] = ACTIONS(1917), - [anon_sym_return] = ACTIONS(1917), - [anon_sym_DOLLARfor] = ACTIONS(1917), - [anon_sym_for] = ACTIONS(1917), - [anon_sym_POUND] = ACTIONS(1917), - [anon_sym_asm] = ACTIONS(1917), - [anon_sym_AT_LBRACK] = ACTIONS(1917), - [sym___double_quote] = ACTIONS(1917), - [sym___single_quote] = ACTIONS(1917), - [sym___c_double_quote] = ACTIONS(1917), - [sym___c_single_quote] = ACTIONS(1917), - [sym___r_double_quote] = ACTIONS(1917), - [sym___r_single_quote] = ACTIONS(1917), + [anon_sym_DOT] = ACTIONS(4473), + [anon_sym_LBRACE] = ACTIONS(4473), + [anon_sym_const] = ACTIONS(4473), + [anon_sym_LPAREN] = ACTIONS(4473), + [anon_sym___global] = ACTIONS(4473), + [anon_sym_type] = ACTIONS(4473), + [anon_sym_fn] = ACTIONS(4473), + [anon_sym_PLUS] = ACTIONS(4473), + [anon_sym_DASH] = ACTIONS(4473), + [anon_sym_STAR] = ACTIONS(4473), + [anon_sym_struct] = ACTIONS(4473), + [anon_sym_union] = ACTIONS(4473), + [anon_sym_pub] = ACTIONS(4473), + [anon_sym_mut] = ACTIONS(4473), + [anon_sym_enum] = ACTIONS(4473), + [anon_sym_interface] = ACTIONS(4473), + [anon_sym_QMARK] = ACTIONS(4473), + [anon_sym_BANG] = ACTIONS(4473), + [anon_sym_go] = ACTIONS(4473), + [anon_sym_spawn] = ACTIONS(4473), + [anon_sym_json_DOTdecode] = ACTIONS(4473), + [anon_sym_LBRACK2] = ACTIONS(4473), + [anon_sym_TILDE] = ACTIONS(4473), + [anon_sym_CARET] = ACTIONS(4473), + [anon_sym_AMP] = ACTIONS(4473), + [anon_sym_LT_DASH] = ACTIONS(4473), + [sym_none] = ACTIONS(4473), + [sym_true] = ACTIONS(4473), + [sym_false] = ACTIONS(4473), + [sym_nil] = ACTIONS(4473), + [anon_sym_if] = ACTIONS(4473), + [anon_sym_DOLLARif] = ACTIONS(4473), + [anon_sym_match] = ACTIONS(4473), + [anon_sym_select] = ACTIONS(4473), + [anon_sym_lock] = ACTIONS(4473), + [anon_sym_rlock] = ACTIONS(4473), + [anon_sym_unsafe] = ACTIONS(4473), + [anon_sym_sql] = ACTIONS(4473), + [sym_int_literal] = ACTIONS(4473), + [sym_float_literal] = ACTIONS(4473), + [sym_rune_literal] = ACTIONS(4473), + [sym_pseudo_compile_time_identifier] = ACTIONS(4473), + [anon_sym_shared] = ACTIONS(4473), + [anon_sym_map_LBRACK] = ACTIONS(4473), + [anon_sym_chan] = ACTIONS(4473), + [anon_sym_thread] = ACTIONS(4473), + [anon_sym_atomic] = ACTIONS(4473), + [anon_sym_assert] = ACTIONS(4473), + [anon_sym_defer] = ACTIONS(4473), + [anon_sym_goto] = ACTIONS(4473), + [anon_sym_break] = ACTIONS(4473), + [anon_sym_continue] = ACTIONS(4473), + [anon_sym_return] = ACTIONS(4473), + [anon_sym_DOLLARfor] = ACTIONS(4473), + [anon_sym_for] = ACTIONS(4473), + [anon_sym_POUND] = ACTIONS(4473), + [anon_sym_asm] = ACTIONS(4473), + [anon_sym_AT_LBRACK] = ACTIONS(4473), + [sym___double_quote] = ACTIONS(4473), + [sym___single_quote] = ACTIONS(4473), + [sym___c_double_quote] = ACTIONS(4473), + [sym___c_single_quote] = ACTIONS(4473), + [sym___r_double_quote] = ACTIONS(4473), + [sym___r_single_quote] = ACTIONS(4473), }, [1563] = { [sym_line_comment] = STATE(1563), [sym_block_comment] = STATE(1563), - [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(4475), + [sym_identifier] = ACTIONS(4477), + [anon_sym_LF] = ACTIONS(4477), + [anon_sym_CR] = ACTIONS(4477), + [anon_sym_CR_LF] = ACTIONS(4477), [anon_sym_SLASH_SLASH] = ACTIONS(497), [anon_sym_SLASH_STAR] = ACTIONS(499), - [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(4477), + [anon_sym_LBRACE] = ACTIONS(4477), + [anon_sym_const] = ACTIONS(4477), + [anon_sym_LPAREN] = ACTIONS(4477), + [anon_sym___global] = ACTIONS(4477), + [anon_sym_type] = ACTIONS(4477), + [anon_sym_fn] = ACTIONS(4477), + [anon_sym_PLUS] = ACTIONS(4477), + [anon_sym_DASH] = ACTIONS(4477), + [anon_sym_STAR] = ACTIONS(4477), + [anon_sym_struct] = ACTIONS(4477), + [anon_sym_union] = ACTIONS(4477), + [anon_sym_pub] = ACTIONS(4477), + [anon_sym_mut] = ACTIONS(4477), + [anon_sym_enum] = ACTIONS(4477), + [anon_sym_interface] = ACTIONS(4477), + [anon_sym_QMARK] = ACTIONS(4477), + [anon_sym_BANG] = ACTIONS(4477), + [anon_sym_go] = ACTIONS(4477), + [anon_sym_spawn] = ACTIONS(4477), + [anon_sym_json_DOTdecode] = ACTIONS(4477), + [anon_sym_LBRACK2] = ACTIONS(4477), + [anon_sym_TILDE] = ACTIONS(4477), + [anon_sym_CARET] = ACTIONS(4477), + [anon_sym_AMP] = ACTIONS(4477), + [anon_sym_LT_DASH] = ACTIONS(4477), + [sym_none] = ACTIONS(4477), + [sym_true] = ACTIONS(4477), + [sym_false] = ACTIONS(4477), + [sym_nil] = ACTIONS(4477), + [anon_sym_if] = ACTIONS(4477), + [anon_sym_DOLLARif] = ACTIONS(4477), + [anon_sym_match] = ACTIONS(4477), + [anon_sym_select] = ACTIONS(4477), + [anon_sym_lock] = ACTIONS(4477), + [anon_sym_rlock] = ACTIONS(4477), + [anon_sym_unsafe] = ACTIONS(4477), + [anon_sym_sql] = ACTIONS(4477), + [sym_int_literal] = ACTIONS(4477), + [sym_float_literal] = ACTIONS(4477), + [sym_rune_literal] = ACTIONS(4477), + [sym_pseudo_compile_time_identifier] = ACTIONS(4477), + [anon_sym_shared] = ACTIONS(4477), + [anon_sym_map_LBRACK] = ACTIONS(4477), + [anon_sym_chan] = ACTIONS(4477), + [anon_sym_thread] = ACTIONS(4477), + [anon_sym_atomic] = ACTIONS(4477), + [anon_sym_assert] = ACTIONS(4477), + [anon_sym_defer] = ACTIONS(4477), + [anon_sym_goto] = ACTIONS(4477), + [anon_sym_break] = ACTIONS(4477), + [anon_sym_continue] = ACTIONS(4477), + [anon_sym_return] = ACTIONS(4477), + [anon_sym_DOLLARfor] = ACTIONS(4477), + [anon_sym_for] = ACTIONS(4477), + [anon_sym_POUND] = ACTIONS(4477), + [anon_sym_asm] = ACTIONS(4477), + [anon_sym_AT_LBRACK] = ACTIONS(4477), + [sym___double_quote] = ACTIONS(4477), + [sym___single_quote] = ACTIONS(4477), + [sym___c_double_quote] = ACTIONS(4477), + [sym___c_single_quote] = ACTIONS(4477), + [sym___r_double_quote] = ACTIONS(4477), + [sym___r_single_quote] = ACTIONS(4477), }, [1564] = { [sym_line_comment] = STATE(1564), [sym_block_comment] = STATE(1564), - [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(4479), + [sym_identifier] = ACTIONS(4481), + [anon_sym_LF] = ACTIONS(4481), + [anon_sym_CR] = ACTIONS(4481), + [anon_sym_CR_LF] = ACTIONS(4481), [anon_sym_SLASH_SLASH] = ACTIONS(497), [anon_sym_SLASH_STAR] = ACTIONS(499), - [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(4481), + [anon_sym_LBRACE] = ACTIONS(4481), + [anon_sym_const] = ACTIONS(4481), + [anon_sym_LPAREN] = ACTIONS(4481), + [anon_sym___global] = ACTIONS(4481), + [anon_sym_type] = ACTIONS(4481), + [anon_sym_fn] = ACTIONS(4481), + [anon_sym_PLUS] = ACTIONS(4481), + [anon_sym_DASH] = ACTIONS(4481), + [anon_sym_STAR] = ACTIONS(4481), + [anon_sym_struct] = ACTIONS(4481), + [anon_sym_union] = ACTIONS(4481), + [anon_sym_pub] = ACTIONS(4481), + [anon_sym_mut] = ACTIONS(4481), + [anon_sym_enum] = ACTIONS(4481), + [anon_sym_interface] = ACTIONS(4481), + [anon_sym_QMARK] = ACTIONS(4481), + [anon_sym_BANG] = ACTIONS(4481), + [anon_sym_go] = ACTIONS(4481), + [anon_sym_spawn] = ACTIONS(4481), + [anon_sym_json_DOTdecode] = ACTIONS(4481), + [anon_sym_LBRACK2] = ACTIONS(4481), + [anon_sym_TILDE] = ACTIONS(4481), + [anon_sym_CARET] = ACTIONS(4481), + [anon_sym_AMP] = ACTIONS(4481), + [anon_sym_LT_DASH] = ACTIONS(4481), + [sym_none] = ACTIONS(4481), + [sym_true] = ACTIONS(4481), + [sym_false] = ACTIONS(4481), + [sym_nil] = ACTIONS(4481), + [anon_sym_if] = ACTIONS(4481), + [anon_sym_DOLLARif] = ACTIONS(4481), + [anon_sym_match] = ACTIONS(4481), + [anon_sym_select] = ACTIONS(4481), + [anon_sym_lock] = ACTIONS(4481), + [anon_sym_rlock] = ACTIONS(4481), + [anon_sym_unsafe] = ACTIONS(4481), + [anon_sym_sql] = ACTIONS(4481), + [sym_int_literal] = ACTIONS(4481), + [sym_float_literal] = ACTIONS(4481), + [sym_rune_literal] = ACTIONS(4481), + [sym_pseudo_compile_time_identifier] = ACTIONS(4481), + [anon_sym_shared] = ACTIONS(4481), + [anon_sym_map_LBRACK] = ACTIONS(4481), + [anon_sym_chan] = ACTIONS(4481), + [anon_sym_thread] = ACTIONS(4481), + [anon_sym_atomic] = ACTIONS(4481), + [anon_sym_assert] = ACTIONS(4481), + [anon_sym_defer] = ACTIONS(4481), + [anon_sym_goto] = ACTIONS(4481), + [anon_sym_break] = ACTIONS(4481), + [anon_sym_continue] = ACTIONS(4481), + [anon_sym_return] = ACTIONS(4481), + [anon_sym_DOLLARfor] = ACTIONS(4481), + [anon_sym_for] = ACTIONS(4481), + [anon_sym_POUND] = ACTIONS(4481), + [anon_sym_asm] = ACTIONS(4481), + [anon_sym_AT_LBRACK] = ACTIONS(4481), + [sym___double_quote] = ACTIONS(4481), + [sym___single_quote] = ACTIONS(4481), + [sym___c_double_quote] = ACTIONS(4481), + [sym___c_single_quote] = ACTIONS(4481), + [sym___r_double_quote] = ACTIONS(4481), + [sym___r_single_quote] = ACTIONS(4481), }, [1565] = { [sym_line_comment] = STATE(1565), [sym_block_comment] = STATE(1565), - [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(4483), + [sym_identifier] = ACTIONS(4485), + [anon_sym_LF] = ACTIONS(4485), + [anon_sym_CR] = ACTIONS(4485), + [anon_sym_CR_LF] = ACTIONS(4485), [anon_sym_SLASH_SLASH] = ACTIONS(497), [anon_sym_SLASH_STAR] = ACTIONS(499), - [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(4485), + [anon_sym_LBRACE] = ACTIONS(4485), + [anon_sym_const] = ACTIONS(4485), + [anon_sym_LPAREN] = ACTIONS(4485), + [anon_sym___global] = ACTIONS(4485), + [anon_sym_type] = ACTIONS(4485), + [anon_sym_fn] = ACTIONS(4485), + [anon_sym_PLUS] = ACTIONS(4485), + [anon_sym_DASH] = ACTIONS(4485), + [anon_sym_STAR] = ACTIONS(4485), + [anon_sym_struct] = ACTIONS(4485), + [anon_sym_union] = ACTIONS(4485), + [anon_sym_pub] = ACTIONS(4485), + [anon_sym_mut] = ACTIONS(4485), + [anon_sym_enum] = ACTIONS(4485), + [anon_sym_interface] = ACTIONS(4485), + [anon_sym_QMARK] = ACTIONS(4485), + [anon_sym_BANG] = ACTIONS(4485), + [anon_sym_go] = ACTIONS(4485), + [anon_sym_spawn] = ACTIONS(4485), + [anon_sym_json_DOTdecode] = ACTIONS(4485), + [anon_sym_LBRACK2] = ACTIONS(4485), + [anon_sym_TILDE] = ACTIONS(4485), + [anon_sym_CARET] = ACTIONS(4485), + [anon_sym_AMP] = ACTIONS(4485), + [anon_sym_LT_DASH] = ACTIONS(4485), + [sym_none] = ACTIONS(4485), + [sym_true] = ACTIONS(4485), + [sym_false] = ACTIONS(4485), + [sym_nil] = ACTIONS(4485), + [anon_sym_if] = ACTIONS(4485), + [anon_sym_DOLLARif] = ACTIONS(4485), + [anon_sym_match] = ACTIONS(4485), + [anon_sym_select] = ACTIONS(4485), + [anon_sym_lock] = ACTIONS(4485), + [anon_sym_rlock] = ACTIONS(4485), + [anon_sym_unsafe] = ACTIONS(4485), + [anon_sym_sql] = ACTIONS(4485), + [sym_int_literal] = ACTIONS(4485), + [sym_float_literal] = ACTIONS(4485), + [sym_rune_literal] = ACTIONS(4485), + [sym_pseudo_compile_time_identifier] = ACTIONS(4485), + [anon_sym_shared] = ACTIONS(4485), + [anon_sym_map_LBRACK] = ACTIONS(4485), + [anon_sym_chan] = ACTIONS(4485), + [anon_sym_thread] = ACTIONS(4485), + [anon_sym_atomic] = ACTIONS(4485), + [anon_sym_assert] = ACTIONS(4485), + [anon_sym_defer] = ACTIONS(4485), + [anon_sym_goto] = ACTIONS(4485), + [anon_sym_break] = ACTIONS(4485), + [anon_sym_continue] = ACTIONS(4485), + [anon_sym_return] = ACTIONS(4485), + [anon_sym_DOLLARfor] = ACTIONS(4485), + [anon_sym_for] = ACTIONS(4485), + [anon_sym_POUND] = ACTIONS(4485), + [anon_sym_asm] = ACTIONS(4485), + [anon_sym_AT_LBRACK] = ACTIONS(4485), + [sym___double_quote] = ACTIONS(4485), + [sym___single_quote] = ACTIONS(4485), + [sym___c_double_quote] = ACTIONS(4485), + [sym___c_single_quote] = ACTIONS(4485), + [sym___r_double_quote] = ACTIONS(4485), + [sym___r_single_quote] = ACTIONS(4485), }, [1566] = { [sym_line_comment] = STATE(1566), [sym_block_comment] = STATE(1566), - [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(4487), + [sym_identifier] = ACTIONS(4489), + [anon_sym_LF] = ACTIONS(4489), + [anon_sym_CR] = ACTIONS(4489), + [anon_sym_CR_LF] = ACTIONS(4489), [anon_sym_SLASH_SLASH] = ACTIONS(497), [anon_sym_SLASH_STAR] = ACTIONS(499), - [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(4489), + [anon_sym_LBRACE] = ACTIONS(4489), + [anon_sym_const] = ACTIONS(4489), + [anon_sym_LPAREN] = ACTIONS(4489), + [anon_sym___global] = ACTIONS(4489), + [anon_sym_type] = ACTIONS(4489), + [anon_sym_fn] = ACTIONS(4489), + [anon_sym_PLUS] = ACTIONS(4489), + [anon_sym_DASH] = ACTIONS(4489), + [anon_sym_STAR] = ACTIONS(4489), + [anon_sym_struct] = ACTIONS(4489), + [anon_sym_union] = ACTIONS(4489), + [anon_sym_pub] = ACTIONS(4489), + [anon_sym_mut] = ACTIONS(4489), + [anon_sym_enum] = ACTIONS(4489), + [anon_sym_interface] = ACTIONS(4489), + [anon_sym_QMARK] = ACTIONS(4489), + [anon_sym_BANG] = ACTIONS(4489), + [anon_sym_go] = ACTIONS(4489), + [anon_sym_spawn] = ACTIONS(4489), + [anon_sym_json_DOTdecode] = ACTIONS(4489), + [anon_sym_LBRACK2] = ACTIONS(4489), + [anon_sym_TILDE] = ACTIONS(4489), + [anon_sym_CARET] = ACTIONS(4489), + [anon_sym_AMP] = ACTIONS(4489), + [anon_sym_LT_DASH] = ACTIONS(4489), + [sym_none] = ACTIONS(4489), + [sym_true] = ACTIONS(4489), + [sym_false] = ACTIONS(4489), + [sym_nil] = ACTIONS(4489), + [anon_sym_if] = ACTIONS(4489), + [anon_sym_DOLLARif] = ACTIONS(4489), + [anon_sym_match] = ACTIONS(4489), + [anon_sym_select] = ACTIONS(4489), + [anon_sym_lock] = ACTIONS(4489), + [anon_sym_rlock] = ACTIONS(4489), + [anon_sym_unsafe] = ACTIONS(4489), + [anon_sym_sql] = ACTIONS(4489), + [sym_int_literal] = ACTIONS(4489), + [sym_float_literal] = ACTIONS(4489), + [sym_rune_literal] = ACTIONS(4489), + [sym_pseudo_compile_time_identifier] = ACTIONS(4489), + [anon_sym_shared] = ACTIONS(4489), + [anon_sym_map_LBRACK] = ACTIONS(4489), + [anon_sym_chan] = ACTIONS(4489), + [anon_sym_thread] = ACTIONS(4489), + [anon_sym_atomic] = ACTIONS(4489), + [anon_sym_assert] = ACTIONS(4489), + [anon_sym_defer] = ACTIONS(4489), + [anon_sym_goto] = ACTIONS(4489), + [anon_sym_break] = ACTIONS(4489), + [anon_sym_continue] = ACTIONS(4489), + [anon_sym_return] = ACTIONS(4489), + [anon_sym_DOLLARfor] = ACTIONS(4489), + [anon_sym_for] = ACTIONS(4489), + [anon_sym_POUND] = ACTIONS(4489), + [anon_sym_asm] = ACTIONS(4489), + [anon_sym_AT_LBRACK] = ACTIONS(4489), + [sym___double_quote] = ACTIONS(4489), + [sym___single_quote] = ACTIONS(4489), + [sym___c_double_quote] = ACTIONS(4489), + [sym___c_single_quote] = ACTIONS(4489), + [sym___r_double_quote] = ACTIONS(4489), + [sym___r_single_quote] = ACTIONS(4489), }, [1567] = { [sym_line_comment] = STATE(1567), [sym_block_comment] = STATE(1567), - [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(4491), + [sym_identifier] = ACTIONS(4493), + [anon_sym_LF] = ACTIONS(4493), + [anon_sym_CR] = ACTIONS(4493), + [anon_sym_CR_LF] = ACTIONS(4493), [anon_sym_SLASH_SLASH] = ACTIONS(497), [anon_sym_SLASH_STAR] = ACTIONS(499), - [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(4493), + [anon_sym_LBRACE] = ACTIONS(4493), + [anon_sym_const] = ACTIONS(4493), + [anon_sym_LPAREN] = ACTIONS(4493), + [anon_sym___global] = ACTIONS(4493), + [anon_sym_type] = ACTIONS(4493), + [anon_sym_fn] = ACTIONS(4493), + [anon_sym_PLUS] = ACTIONS(4493), + [anon_sym_DASH] = ACTIONS(4493), + [anon_sym_STAR] = ACTIONS(4493), + [anon_sym_struct] = ACTIONS(4493), + [anon_sym_union] = ACTIONS(4493), + [anon_sym_pub] = ACTIONS(4493), + [anon_sym_mut] = ACTIONS(4493), + [anon_sym_enum] = ACTIONS(4493), + [anon_sym_interface] = ACTIONS(4493), + [anon_sym_QMARK] = ACTIONS(4493), + [anon_sym_BANG] = ACTIONS(4493), + [anon_sym_go] = ACTIONS(4493), + [anon_sym_spawn] = ACTIONS(4493), + [anon_sym_json_DOTdecode] = ACTIONS(4493), + [anon_sym_LBRACK2] = ACTIONS(4493), + [anon_sym_TILDE] = ACTIONS(4493), + [anon_sym_CARET] = ACTIONS(4493), + [anon_sym_AMP] = ACTIONS(4493), + [anon_sym_LT_DASH] = ACTIONS(4493), + [sym_none] = ACTIONS(4493), + [sym_true] = ACTIONS(4493), + [sym_false] = ACTIONS(4493), + [sym_nil] = ACTIONS(4493), + [anon_sym_if] = ACTIONS(4493), + [anon_sym_DOLLARif] = ACTIONS(4493), + [anon_sym_match] = ACTIONS(4493), + [anon_sym_select] = ACTIONS(4493), + [anon_sym_lock] = ACTIONS(4493), + [anon_sym_rlock] = ACTIONS(4493), + [anon_sym_unsafe] = ACTIONS(4493), + [anon_sym_sql] = ACTIONS(4493), + [sym_int_literal] = ACTIONS(4493), + [sym_float_literal] = ACTIONS(4493), + [sym_rune_literal] = ACTIONS(4493), + [sym_pseudo_compile_time_identifier] = ACTIONS(4493), + [anon_sym_shared] = ACTIONS(4493), + [anon_sym_map_LBRACK] = ACTIONS(4493), + [anon_sym_chan] = ACTIONS(4493), + [anon_sym_thread] = ACTIONS(4493), + [anon_sym_atomic] = ACTIONS(4493), + [anon_sym_assert] = ACTIONS(4493), + [anon_sym_defer] = ACTIONS(4493), + [anon_sym_goto] = ACTIONS(4493), + [anon_sym_break] = ACTIONS(4493), + [anon_sym_continue] = ACTIONS(4493), + [anon_sym_return] = ACTIONS(4493), + [anon_sym_DOLLARfor] = ACTIONS(4493), + [anon_sym_for] = ACTIONS(4493), + [anon_sym_POUND] = ACTIONS(4493), + [anon_sym_asm] = ACTIONS(4493), + [anon_sym_AT_LBRACK] = ACTIONS(4493), + [sym___double_quote] = ACTIONS(4493), + [sym___single_quote] = ACTIONS(4493), + [sym___c_double_quote] = ACTIONS(4493), + [sym___c_single_quote] = ACTIONS(4493), + [sym___r_double_quote] = ACTIONS(4493), + [sym___r_single_quote] = ACTIONS(4493), }, [1568] = { [sym_line_comment] = STATE(1568), [sym_block_comment] = STATE(1568), - [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(4495), + [sym_identifier] = ACTIONS(4497), + [anon_sym_LF] = ACTIONS(4497), + [anon_sym_CR] = ACTIONS(4497), + [anon_sym_CR_LF] = ACTIONS(4497), [anon_sym_SLASH_SLASH] = ACTIONS(497), [anon_sym_SLASH_STAR] = ACTIONS(499), - [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(4497), + [anon_sym_LBRACE] = ACTIONS(4497), + [anon_sym_const] = ACTIONS(4497), + [anon_sym_LPAREN] = ACTIONS(4497), + [anon_sym___global] = ACTIONS(4497), + [anon_sym_type] = ACTIONS(4497), + [anon_sym_fn] = ACTIONS(4497), + [anon_sym_PLUS] = ACTIONS(4497), + [anon_sym_DASH] = ACTIONS(4497), + [anon_sym_STAR] = ACTIONS(4497), + [anon_sym_struct] = ACTIONS(4497), + [anon_sym_union] = ACTIONS(4497), + [anon_sym_pub] = ACTIONS(4497), + [anon_sym_mut] = ACTIONS(4497), + [anon_sym_enum] = ACTIONS(4497), + [anon_sym_interface] = ACTIONS(4497), + [anon_sym_QMARK] = ACTIONS(4497), + [anon_sym_BANG] = ACTIONS(4497), + [anon_sym_go] = ACTIONS(4497), + [anon_sym_spawn] = ACTIONS(4497), + [anon_sym_json_DOTdecode] = ACTIONS(4497), + [anon_sym_LBRACK2] = ACTIONS(4497), + [anon_sym_TILDE] = ACTIONS(4497), + [anon_sym_CARET] = ACTIONS(4497), + [anon_sym_AMP] = ACTIONS(4497), + [anon_sym_LT_DASH] = ACTIONS(4497), + [sym_none] = ACTIONS(4497), + [sym_true] = ACTIONS(4497), + [sym_false] = ACTIONS(4497), + [sym_nil] = ACTIONS(4497), + [anon_sym_if] = ACTIONS(4497), + [anon_sym_DOLLARif] = ACTIONS(4497), + [anon_sym_match] = ACTIONS(4497), + [anon_sym_select] = ACTIONS(4497), + [anon_sym_lock] = ACTIONS(4497), + [anon_sym_rlock] = ACTIONS(4497), + [anon_sym_unsafe] = ACTIONS(4497), + [anon_sym_sql] = ACTIONS(4497), + [sym_int_literal] = ACTIONS(4497), + [sym_float_literal] = ACTIONS(4497), + [sym_rune_literal] = ACTIONS(4497), + [sym_pseudo_compile_time_identifier] = ACTIONS(4497), + [anon_sym_shared] = ACTIONS(4497), + [anon_sym_map_LBRACK] = ACTIONS(4497), + [anon_sym_chan] = ACTIONS(4497), + [anon_sym_thread] = ACTIONS(4497), + [anon_sym_atomic] = ACTIONS(4497), + [anon_sym_assert] = ACTIONS(4497), + [anon_sym_defer] = ACTIONS(4497), + [anon_sym_goto] = ACTIONS(4497), + [anon_sym_break] = ACTIONS(4497), + [anon_sym_continue] = ACTIONS(4497), + [anon_sym_return] = ACTIONS(4497), + [anon_sym_DOLLARfor] = ACTIONS(4497), + [anon_sym_for] = ACTIONS(4497), + [anon_sym_POUND] = ACTIONS(4497), + [anon_sym_asm] = ACTIONS(4497), + [anon_sym_AT_LBRACK] = ACTIONS(4497), + [sym___double_quote] = ACTIONS(4497), + [sym___single_quote] = ACTIONS(4497), + [sym___c_double_quote] = ACTIONS(4497), + [sym___c_single_quote] = ACTIONS(4497), + [sym___r_double_quote] = ACTIONS(4497), + [sym___r_single_quote] = ACTIONS(4497), }, [1569] = { [sym_line_comment] = STATE(1569), [sym_block_comment] = STATE(1569), - [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(4499), + [sym_identifier] = ACTIONS(4501), + [anon_sym_LF] = ACTIONS(4501), + [anon_sym_CR] = ACTIONS(4501), + [anon_sym_CR_LF] = ACTIONS(4501), [anon_sym_SLASH_SLASH] = ACTIONS(497), [anon_sym_SLASH_STAR] = ACTIONS(499), - [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(4501), + [anon_sym_LBRACE] = ACTIONS(4501), + [anon_sym_const] = ACTIONS(4501), + [anon_sym_LPAREN] = ACTIONS(4501), + [anon_sym___global] = ACTIONS(4501), + [anon_sym_type] = ACTIONS(4501), + [anon_sym_fn] = ACTIONS(4501), + [anon_sym_PLUS] = ACTIONS(4501), + [anon_sym_DASH] = ACTIONS(4501), + [anon_sym_STAR] = ACTIONS(4501), + [anon_sym_struct] = ACTIONS(4501), + [anon_sym_union] = ACTIONS(4501), + [anon_sym_pub] = ACTIONS(4501), + [anon_sym_mut] = ACTIONS(4501), + [anon_sym_enum] = ACTIONS(4501), + [anon_sym_interface] = ACTIONS(4501), + [anon_sym_QMARK] = ACTIONS(4501), + [anon_sym_BANG] = ACTIONS(4501), + [anon_sym_go] = ACTIONS(4501), + [anon_sym_spawn] = ACTIONS(4501), + [anon_sym_json_DOTdecode] = ACTIONS(4501), + [anon_sym_LBRACK2] = ACTIONS(4501), + [anon_sym_TILDE] = ACTIONS(4501), + [anon_sym_CARET] = ACTIONS(4501), + [anon_sym_AMP] = ACTIONS(4501), + [anon_sym_LT_DASH] = ACTIONS(4501), + [sym_none] = ACTIONS(4501), + [sym_true] = ACTIONS(4501), + [sym_false] = ACTIONS(4501), + [sym_nil] = ACTIONS(4501), + [anon_sym_if] = ACTIONS(4501), + [anon_sym_DOLLARif] = ACTIONS(4501), + [anon_sym_match] = ACTIONS(4501), + [anon_sym_select] = ACTIONS(4501), + [anon_sym_lock] = ACTIONS(4501), + [anon_sym_rlock] = ACTIONS(4501), + [anon_sym_unsafe] = ACTIONS(4501), + [anon_sym_sql] = ACTIONS(4501), + [sym_int_literal] = ACTIONS(4501), + [sym_float_literal] = ACTIONS(4501), + [sym_rune_literal] = ACTIONS(4501), + [sym_pseudo_compile_time_identifier] = ACTIONS(4501), + [anon_sym_shared] = ACTIONS(4501), + [anon_sym_map_LBRACK] = ACTIONS(4501), + [anon_sym_chan] = ACTIONS(4501), + [anon_sym_thread] = ACTIONS(4501), + [anon_sym_atomic] = ACTIONS(4501), + [anon_sym_assert] = ACTIONS(4501), + [anon_sym_defer] = ACTIONS(4501), + [anon_sym_goto] = ACTIONS(4501), + [anon_sym_break] = ACTIONS(4501), + [anon_sym_continue] = ACTIONS(4501), + [anon_sym_return] = ACTIONS(4501), + [anon_sym_DOLLARfor] = ACTIONS(4501), + [anon_sym_for] = ACTIONS(4501), + [anon_sym_POUND] = ACTIONS(4501), + [anon_sym_asm] = ACTIONS(4501), + [anon_sym_AT_LBRACK] = ACTIONS(4501), + [sym___double_quote] = ACTIONS(4501), + [sym___single_quote] = ACTIONS(4501), + [sym___c_double_quote] = ACTIONS(4501), + [sym___c_single_quote] = ACTIONS(4501), + [sym___r_double_quote] = ACTIONS(4501), + [sym___r_single_quote] = ACTIONS(4501), }, [1570] = { [sym_line_comment] = STATE(1570), [sym_block_comment] = STATE(1570), - [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), + [ts_builtin_sym_end] = ACTIONS(4503), + [sym_identifier] = ACTIONS(4505), + [anon_sym_LF] = ACTIONS(4505), + [anon_sym_CR] = ACTIONS(4505), + [anon_sym_CR_LF] = ACTIONS(4505), [anon_sym_SLASH_SLASH] = ACTIONS(497), [anon_sym_SLASH_STAR] = ACTIONS(499), - [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), + [anon_sym_DOT] = ACTIONS(4505), + [anon_sym_LBRACE] = ACTIONS(4505), + [anon_sym_const] = ACTIONS(4505), + [anon_sym_LPAREN] = ACTIONS(4505), + [anon_sym___global] = ACTIONS(4505), + [anon_sym_type] = ACTIONS(4505), + [anon_sym_fn] = ACTIONS(4505), + [anon_sym_PLUS] = ACTIONS(4505), + [anon_sym_DASH] = ACTIONS(4505), + [anon_sym_STAR] = ACTIONS(4505), + [anon_sym_struct] = ACTIONS(4505), + [anon_sym_union] = ACTIONS(4505), + [anon_sym_pub] = ACTIONS(4505), + [anon_sym_mut] = ACTIONS(4505), + [anon_sym_enum] = ACTIONS(4505), + [anon_sym_interface] = ACTIONS(4505), + [anon_sym_QMARK] = ACTIONS(4505), + [anon_sym_BANG] = ACTIONS(4505), + [anon_sym_go] = ACTIONS(4505), + [anon_sym_spawn] = ACTIONS(4505), + [anon_sym_json_DOTdecode] = ACTIONS(4505), + [anon_sym_LBRACK2] = ACTIONS(4505), + [anon_sym_TILDE] = ACTIONS(4505), + [anon_sym_CARET] = ACTIONS(4505), + [anon_sym_AMP] = ACTIONS(4505), + [anon_sym_LT_DASH] = ACTIONS(4505), + [sym_none] = ACTIONS(4505), + [sym_true] = ACTIONS(4505), + [sym_false] = ACTIONS(4505), + [sym_nil] = ACTIONS(4505), + [anon_sym_if] = ACTIONS(4505), + [anon_sym_DOLLARif] = ACTIONS(4505), + [anon_sym_match] = ACTIONS(4505), + [anon_sym_select] = ACTIONS(4505), + [anon_sym_lock] = ACTIONS(4505), + [anon_sym_rlock] = ACTIONS(4505), + [anon_sym_unsafe] = ACTIONS(4505), + [anon_sym_sql] = ACTIONS(4505), + [sym_int_literal] = ACTIONS(4505), + [sym_float_literal] = ACTIONS(4505), + [sym_rune_literal] = ACTIONS(4505), + [sym_pseudo_compile_time_identifier] = ACTIONS(4505), + [anon_sym_shared] = ACTIONS(4505), + [anon_sym_map_LBRACK] = ACTIONS(4505), + [anon_sym_chan] = ACTIONS(4505), + [anon_sym_thread] = ACTIONS(4505), + [anon_sym_atomic] = ACTIONS(4505), + [anon_sym_assert] = ACTIONS(4505), + [anon_sym_defer] = ACTIONS(4505), + [anon_sym_goto] = ACTIONS(4505), + [anon_sym_break] = ACTIONS(4505), + [anon_sym_continue] = ACTIONS(4505), + [anon_sym_return] = ACTIONS(4505), + [anon_sym_DOLLARfor] = ACTIONS(4505), + [anon_sym_for] = ACTIONS(4505), + [anon_sym_POUND] = ACTIONS(4505), + [anon_sym_asm] = ACTIONS(4505), + [anon_sym_AT_LBRACK] = ACTIONS(4505), + [sym___double_quote] = ACTIONS(4505), + [sym___single_quote] = ACTIONS(4505), + [sym___c_double_quote] = ACTIONS(4505), + [sym___c_single_quote] = ACTIONS(4505), + [sym___r_double_quote] = ACTIONS(4505), + [sym___r_single_quote] = ACTIONS(4505), }, [1571] = { [sym_line_comment] = STATE(1571), [sym_block_comment] = STATE(1571), - [ts_builtin_sym_end] = ACTIONS(4505), - [sym_identifier] = ACTIONS(4507), - [anon_sym_LF] = ACTIONS(4507), - [anon_sym_CR] = ACTIONS(4507), - [anon_sym_CR_LF] = ACTIONS(4507), + [ts_builtin_sym_end] = ACTIONS(4507), + [sym_identifier] = ACTIONS(4509), + [anon_sym_LF] = ACTIONS(4509), + [anon_sym_CR] = ACTIONS(4509), + [anon_sym_CR_LF] = ACTIONS(4509), [anon_sym_SLASH_SLASH] = ACTIONS(497), [anon_sym_SLASH_STAR] = ACTIONS(499), - [anon_sym_DOT] = ACTIONS(4507), - [anon_sym_LBRACE] = ACTIONS(4507), - [anon_sym_const] = ACTIONS(4507), - [anon_sym_LPAREN] = ACTIONS(4507), - [anon_sym___global] = ACTIONS(4507), - [anon_sym_type] = ACTIONS(4507), - [anon_sym_fn] = ACTIONS(4507), - [anon_sym_PLUS] = ACTIONS(4507), - [anon_sym_DASH] = ACTIONS(4507), - [anon_sym_STAR] = ACTIONS(4507), - [anon_sym_struct] = ACTIONS(4507), - [anon_sym_union] = ACTIONS(4507), - [anon_sym_pub] = ACTIONS(4507), - [anon_sym_mut] = ACTIONS(4507), - [anon_sym_enum] = ACTIONS(4507), - [anon_sym_interface] = ACTIONS(4507), - [anon_sym_QMARK] = ACTIONS(4507), - [anon_sym_BANG] = ACTIONS(4507), - [anon_sym_go] = ACTIONS(4507), - [anon_sym_spawn] = ACTIONS(4507), - [anon_sym_json_DOTdecode] = ACTIONS(4507), - [anon_sym_LBRACK2] = ACTIONS(4507), - [anon_sym_TILDE] = ACTIONS(4507), - [anon_sym_CARET] = ACTIONS(4507), - [anon_sym_AMP] = ACTIONS(4507), - [anon_sym_LT_DASH] = ACTIONS(4507), - [sym_none] = ACTIONS(4507), - [sym_true] = ACTIONS(4507), - [sym_false] = ACTIONS(4507), - [sym_nil] = ACTIONS(4507), - [anon_sym_if] = ACTIONS(4507), - [anon_sym_DOLLARif] = ACTIONS(4507), - [anon_sym_match] = ACTIONS(4507), - [anon_sym_select] = ACTIONS(4507), - [anon_sym_lock] = ACTIONS(4507), - [anon_sym_rlock] = ACTIONS(4507), - [anon_sym_unsafe] = ACTIONS(4507), - [anon_sym_sql] = ACTIONS(4507), - [sym_int_literal] = ACTIONS(4507), - [sym_float_literal] = ACTIONS(4507), - [sym_rune_literal] = ACTIONS(4507), - [sym_pseudo_compile_time_identifier] = ACTIONS(4507), - [anon_sym_shared] = ACTIONS(4507), - [anon_sym_map_LBRACK] = ACTIONS(4507), - [anon_sym_chan] = ACTIONS(4507), - [anon_sym_thread] = ACTIONS(4507), - [anon_sym_atomic] = ACTIONS(4507), - [anon_sym_assert] = ACTIONS(4507), - [anon_sym_defer] = ACTIONS(4507), - [anon_sym_goto] = ACTIONS(4507), - [anon_sym_break] = ACTIONS(4507), - [anon_sym_continue] = ACTIONS(4507), - [anon_sym_return] = ACTIONS(4507), - [anon_sym_DOLLARfor] = ACTIONS(4507), - [anon_sym_for] = ACTIONS(4507), - [anon_sym_POUND] = ACTIONS(4507), - [anon_sym_asm] = ACTIONS(4507), - [anon_sym_AT_LBRACK] = ACTIONS(4507), - [sym___double_quote] = ACTIONS(4507), - [sym___single_quote] = ACTIONS(4507), - [sym___c_double_quote] = ACTIONS(4507), - [sym___c_single_quote] = ACTIONS(4507), - [sym___r_double_quote] = ACTIONS(4507), - [sym___r_single_quote] = ACTIONS(4507), + [anon_sym_DOT] = ACTIONS(4509), + [anon_sym_LBRACE] = ACTIONS(4509), + [anon_sym_const] = ACTIONS(4509), + [anon_sym_LPAREN] = ACTIONS(4509), + [anon_sym___global] = ACTIONS(4509), + [anon_sym_type] = ACTIONS(4509), + [anon_sym_fn] = ACTIONS(4509), + [anon_sym_PLUS] = ACTIONS(4509), + [anon_sym_DASH] = ACTIONS(4509), + [anon_sym_STAR] = ACTIONS(4509), + [anon_sym_struct] = ACTIONS(4509), + [anon_sym_union] = ACTIONS(4509), + [anon_sym_pub] = ACTIONS(4509), + [anon_sym_mut] = ACTIONS(4509), + [anon_sym_enum] = ACTIONS(4509), + [anon_sym_interface] = ACTIONS(4509), + [anon_sym_QMARK] = ACTIONS(4509), + [anon_sym_BANG] = ACTIONS(4509), + [anon_sym_go] = ACTIONS(4509), + [anon_sym_spawn] = ACTIONS(4509), + [anon_sym_json_DOTdecode] = ACTIONS(4509), + [anon_sym_LBRACK2] = ACTIONS(4509), + [anon_sym_TILDE] = ACTIONS(4509), + [anon_sym_CARET] = ACTIONS(4509), + [anon_sym_AMP] = ACTIONS(4509), + [anon_sym_LT_DASH] = ACTIONS(4509), + [sym_none] = ACTIONS(4509), + [sym_true] = ACTIONS(4509), + [sym_false] = ACTIONS(4509), + [sym_nil] = ACTIONS(4509), + [anon_sym_if] = ACTIONS(4509), + [anon_sym_DOLLARif] = ACTIONS(4509), + [anon_sym_match] = ACTIONS(4509), + [anon_sym_select] = ACTIONS(4509), + [anon_sym_lock] = ACTIONS(4509), + [anon_sym_rlock] = ACTIONS(4509), + [anon_sym_unsafe] = ACTIONS(4509), + [anon_sym_sql] = ACTIONS(4509), + [sym_int_literal] = ACTIONS(4509), + [sym_float_literal] = ACTIONS(4509), + [sym_rune_literal] = ACTIONS(4509), + [sym_pseudo_compile_time_identifier] = ACTIONS(4509), + [anon_sym_shared] = ACTIONS(4509), + [anon_sym_map_LBRACK] = ACTIONS(4509), + [anon_sym_chan] = ACTIONS(4509), + [anon_sym_thread] = ACTIONS(4509), + [anon_sym_atomic] = ACTIONS(4509), + [anon_sym_assert] = ACTIONS(4509), + [anon_sym_defer] = ACTIONS(4509), + [anon_sym_goto] = ACTIONS(4509), + [anon_sym_break] = ACTIONS(4509), + [anon_sym_continue] = ACTIONS(4509), + [anon_sym_return] = ACTIONS(4509), + [anon_sym_DOLLARfor] = ACTIONS(4509), + [anon_sym_for] = ACTIONS(4509), + [anon_sym_POUND] = ACTIONS(4509), + [anon_sym_asm] = ACTIONS(4509), + [anon_sym_AT_LBRACK] = ACTIONS(4509), + [sym___double_quote] = ACTIONS(4509), + [sym___single_quote] = ACTIONS(4509), + [sym___c_double_quote] = ACTIONS(4509), + [sym___c_single_quote] = ACTIONS(4509), + [sym___r_double_quote] = ACTIONS(4509), + [sym___r_single_quote] = ACTIONS(4509), }, [1572] = { [sym_line_comment] = STATE(1572), [sym_block_comment] = STATE(1572), - [ts_builtin_sym_end] = ACTIONS(4509), - [sym_identifier] = ACTIONS(4511), - [anon_sym_LF] = ACTIONS(4511), - [anon_sym_CR] = ACTIONS(4511), - [anon_sym_CR_LF] = ACTIONS(4511), + [ts_builtin_sym_end] = ACTIONS(4511), + [sym_identifier] = ACTIONS(4513), + [anon_sym_LF] = ACTIONS(4513), + [anon_sym_CR] = ACTIONS(4513), + [anon_sym_CR_LF] = ACTIONS(4513), [anon_sym_SLASH_SLASH] = ACTIONS(497), [anon_sym_SLASH_STAR] = ACTIONS(499), - [anon_sym_DOT] = ACTIONS(4511), - [anon_sym_LBRACE] = ACTIONS(4511), - [anon_sym_const] = ACTIONS(4511), - [anon_sym_LPAREN] = ACTIONS(4511), - [anon_sym___global] = ACTIONS(4511), - [anon_sym_type] = ACTIONS(4511), - [anon_sym_fn] = ACTIONS(4511), - [anon_sym_PLUS] = ACTIONS(4511), - [anon_sym_DASH] = ACTIONS(4511), - [anon_sym_STAR] = ACTIONS(4511), - [anon_sym_struct] = ACTIONS(4511), - [anon_sym_union] = ACTIONS(4511), - [anon_sym_pub] = ACTIONS(4511), - [anon_sym_mut] = ACTIONS(4511), - [anon_sym_enum] = ACTIONS(4511), - [anon_sym_interface] = ACTIONS(4511), - [anon_sym_QMARK] = ACTIONS(4511), - [anon_sym_BANG] = ACTIONS(4511), - [anon_sym_go] = ACTIONS(4511), - [anon_sym_spawn] = ACTIONS(4511), - [anon_sym_json_DOTdecode] = ACTIONS(4511), - [anon_sym_LBRACK2] = ACTIONS(4511), - [anon_sym_TILDE] = ACTIONS(4511), - [anon_sym_CARET] = ACTIONS(4511), - [anon_sym_AMP] = ACTIONS(4511), - [anon_sym_LT_DASH] = ACTIONS(4511), - [sym_none] = ACTIONS(4511), - [sym_true] = ACTIONS(4511), - [sym_false] = ACTIONS(4511), - [sym_nil] = ACTIONS(4511), - [anon_sym_if] = ACTIONS(4511), - [anon_sym_DOLLARif] = ACTIONS(4511), - [anon_sym_match] = ACTIONS(4511), - [anon_sym_select] = ACTIONS(4511), - [anon_sym_lock] = ACTIONS(4511), - [anon_sym_rlock] = ACTIONS(4511), - [anon_sym_unsafe] = ACTIONS(4511), - [anon_sym_sql] = ACTIONS(4511), - [sym_int_literal] = ACTIONS(4511), - [sym_float_literal] = ACTIONS(4511), - [sym_rune_literal] = ACTIONS(4511), - [sym_pseudo_compile_time_identifier] = ACTIONS(4511), - [anon_sym_shared] = ACTIONS(4511), - [anon_sym_map_LBRACK] = ACTIONS(4511), - [anon_sym_chan] = ACTIONS(4511), - [anon_sym_thread] = ACTIONS(4511), - [anon_sym_atomic] = ACTIONS(4511), - [anon_sym_assert] = ACTIONS(4511), - [anon_sym_defer] = ACTIONS(4511), - [anon_sym_goto] = ACTIONS(4511), - [anon_sym_break] = ACTIONS(4511), - [anon_sym_continue] = ACTIONS(4511), - [anon_sym_return] = ACTIONS(4511), - [anon_sym_DOLLARfor] = ACTIONS(4511), - [anon_sym_for] = ACTIONS(4511), - [anon_sym_POUND] = ACTIONS(4511), - [anon_sym_asm] = ACTIONS(4511), - [anon_sym_AT_LBRACK] = ACTIONS(4511), - [sym___double_quote] = ACTIONS(4511), - [sym___single_quote] = ACTIONS(4511), - [sym___c_double_quote] = ACTIONS(4511), - [sym___c_single_quote] = ACTIONS(4511), - [sym___r_double_quote] = ACTIONS(4511), - [sym___r_single_quote] = ACTIONS(4511), + [anon_sym_DOT] = ACTIONS(4513), + [anon_sym_LBRACE] = ACTIONS(4513), + [anon_sym_const] = ACTIONS(4513), + [anon_sym_LPAREN] = ACTIONS(4513), + [anon_sym___global] = ACTIONS(4513), + [anon_sym_type] = ACTIONS(4513), + [anon_sym_fn] = ACTIONS(4513), + [anon_sym_PLUS] = ACTIONS(4513), + [anon_sym_DASH] = ACTIONS(4513), + [anon_sym_STAR] = ACTIONS(4513), + [anon_sym_struct] = ACTIONS(4513), + [anon_sym_union] = ACTIONS(4513), + [anon_sym_pub] = ACTIONS(4513), + [anon_sym_mut] = ACTIONS(4513), + [anon_sym_enum] = ACTIONS(4513), + [anon_sym_interface] = ACTIONS(4513), + [anon_sym_QMARK] = ACTIONS(4513), + [anon_sym_BANG] = ACTIONS(4513), + [anon_sym_go] = ACTIONS(4513), + [anon_sym_spawn] = ACTIONS(4513), + [anon_sym_json_DOTdecode] = ACTIONS(4513), + [anon_sym_LBRACK2] = ACTIONS(4513), + [anon_sym_TILDE] = ACTIONS(4513), + [anon_sym_CARET] = ACTIONS(4513), + [anon_sym_AMP] = ACTIONS(4513), + [anon_sym_LT_DASH] = ACTIONS(4513), + [sym_none] = ACTIONS(4513), + [sym_true] = ACTIONS(4513), + [sym_false] = ACTIONS(4513), + [sym_nil] = ACTIONS(4513), + [anon_sym_if] = ACTIONS(4513), + [anon_sym_DOLLARif] = ACTIONS(4513), + [anon_sym_match] = ACTIONS(4513), + [anon_sym_select] = ACTIONS(4513), + [anon_sym_lock] = ACTIONS(4513), + [anon_sym_rlock] = ACTIONS(4513), + [anon_sym_unsafe] = ACTIONS(4513), + [anon_sym_sql] = ACTIONS(4513), + [sym_int_literal] = ACTIONS(4513), + [sym_float_literal] = ACTIONS(4513), + [sym_rune_literal] = ACTIONS(4513), + [sym_pseudo_compile_time_identifier] = ACTIONS(4513), + [anon_sym_shared] = ACTIONS(4513), + [anon_sym_map_LBRACK] = ACTIONS(4513), + [anon_sym_chan] = ACTIONS(4513), + [anon_sym_thread] = ACTIONS(4513), + [anon_sym_atomic] = ACTIONS(4513), + [anon_sym_assert] = ACTIONS(4513), + [anon_sym_defer] = ACTIONS(4513), + [anon_sym_goto] = ACTIONS(4513), + [anon_sym_break] = ACTIONS(4513), + [anon_sym_continue] = ACTIONS(4513), + [anon_sym_return] = ACTIONS(4513), + [anon_sym_DOLLARfor] = ACTIONS(4513), + [anon_sym_for] = ACTIONS(4513), + [anon_sym_POUND] = ACTIONS(4513), + [anon_sym_asm] = ACTIONS(4513), + [anon_sym_AT_LBRACK] = ACTIONS(4513), + [sym___double_quote] = ACTIONS(4513), + [sym___single_quote] = ACTIONS(4513), + [sym___c_double_quote] = ACTIONS(4513), + [sym___c_single_quote] = ACTIONS(4513), + [sym___r_double_quote] = ACTIONS(4513), + [sym___r_single_quote] = ACTIONS(4513), }, [1573] = { [sym_line_comment] = STATE(1573), [sym_block_comment] = STATE(1573), - [ts_builtin_sym_end] = ACTIONS(4513), - [sym_identifier] = ACTIONS(4515), - [anon_sym_LF] = ACTIONS(4515), - [anon_sym_CR] = ACTIONS(4515), - [anon_sym_CR_LF] = ACTIONS(4515), + [ts_builtin_sym_end] = ACTIONS(4515), + [sym_identifier] = ACTIONS(4517), + [anon_sym_LF] = ACTIONS(4517), + [anon_sym_CR] = ACTIONS(4517), + [anon_sym_CR_LF] = ACTIONS(4517), [anon_sym_SLASH_SLASH] = ACTIONS(497), [anon_sym_SLASH_STAR] = ACTIONS(499), - [anon_sym_DOT] = ACTIONS(4515), - [anon_sym_LBRACE] = ACTIONS(4515), - [anon_sym_const] = ACTIONS(4515), - [anon_sym_LPAREN] = ACTIONS(4515), - [anon_sym___global] = ACTIONS(4515), - [anon_sym_type] = ACTIONS(4515), - [anon_sym_fn] = ACTIONS(4515), - [anon_sym_PLUS] = ACTIONS(4515), - [anon_sym_DASH] = ACTIONS(4515), - [anon_sym_STAR] = ACTIONS(4515), - [anon_sym_struct] = ACTIONS(4515), - [anon_sym_union] = ACTIONS(4515), - [anon_sym_pub] = ACTIONS(4515), - [anon_sym_mut] = ACTIONS(4515), - [anon_sym_enum] = ACTIONS(4515), - [anon_sym_interface] = ACTIONS(4515), - [anon_sym_QMARK] = ACTIONS(4515), - [anon_sym_BANG] = ACTIONS(4515), - [anon_sym_go] = ACTIONS(4515), - [anon_sym_spawn] = ACTIONS(4515), - [anon_sym_json_DOTdecode] = ACTIONS(4515), - [anon_sym_LBRACK2] = ACTIONS(4515), - [anon_sym_TILDE] = ACTIONS(4515), - [anon_sym_CARET] = ACTIONS(4515), - [anon_sym_AMP] = ACTIONS(4515), - [anon_sym_LT_DASH] = ACTIONS(4515), - [sym_none] = ACTIONS(4515), - [sym_true] = ACTIONS(4515), - [sym_false] = ACTIONS(4515), - [sym_nil] = ACTIONS(4515), - [anon_sym_if] = ACTIONS(4515), - [anon_sym_DOLLARif] = ACTIONS(4515), - [anon_sym_match] = ACTIONS(4515), - [anon_sym_select] = ACTIONS(4515), - [anon_sym_lock] = ACTIONS(4515), - [anon_sym_rlock] = ACTIONS(4515), - [anon_sym_unsafe] = ACTIONS(4515), - [anon_sym_sql] = ACTIONS(4515), - [sym_int_literal] = ACTIONS(4515), - [sym_float_literal] = ACTIONS(4515), - [sym_rune_literal] = ACTIONS(4515), - [sym_pseudo_compile_time_identifier] = ACTIONS(4515), - [anon_sym_shared] = ACTIONS(4515), - [anon_sym_map_LBRACK] = ACTIONS(4515), - [anon_sym_chan] = ACTIONS(4515), - [anon_sym_thread] = ACTIONS(4515), - [anon_sym_atomic] = ACTIONS(4515), - [anon_sym_assert] = ACTIONS(4515), - [anon_sym_defer] = ACTIONS(4515), - [anon_sym_goto] = ACTIONS(4515), - [anon_sym_break] = ACTIONS(4515), - [anon_sym_continue] = ACTIONS(4515), - [anon_sym_return] = ACTIONS(4515), - [anon_sym_DOLLARfor] = ACTIONS(4515), - [anon_sym_for] = ACTIONS(4515), - [anon_sym_POUND] = ACTIONS(4515), - [anon_sym_asm] = ACTIONS(4515), - [anon_sym_AT_LBRACK] = ACTIONS(4515), - [sym___double_quote] = ACTIONS(4515), - [sym___single_quote] = ACTIONS(4515), - [sym___c_double_quote] = ACTIONS(4515), - [sym___c_single_quote] = ACTIONS(4515), - [sym___r_double_quote] = ACTIONS(4515), - [sym___r_single_quote] = ACTIONS(4515), + [anon_sym_DOT] = ACTIONS(4517), + [anon_sym_LBRACE] = ACTIONS(4517), + [anon_sym_const] = ACTIONS(4517), + [anon_sym_LPAREN] = ACTIONS(4517), + [anon_sym___global] = ACTIONS(4517), + [anon_sym_type] = ACTIONS(4517), + [anon_sym_fn] = ACTIONS(4517), + [anon_sym_PLUS] = ACTIONS(4517), + [anon_sym_DASH] = ACTIONS(4517), + [anon_sym_STAR] = ACTIONS(4517), + [anon_sym_struct] = ACTIONS(4517), + [anon_sym_union] = ACTIONS(4517), + [anon_sym_pub] = ACTIONS(4517), + [anon_sym_mut] = ACTIONS(4517), + [anon_sym_enum] = ACTIONS(4517), + [anon_sym_interface] = ACTIONS(4517), + [anon_sym_QMARK] = ACTIONS(4517), + [anon_sym_BANG] = ACTIONS(4517), + [anon_sym_go] = ACTIONS(4517), + [anon_sym_spawn] = ACTIONS(4517), + [anon_sym_json_DOTdecode] = ACTIONS(4517), + [anon_sym_LBRACK2] = ACTIONS(4517), + [anon_sym_TILDE] = ACTIONS(4517), + [anon_sym_CARET] = ACTIONS(4517), + [anon_sym_AMP] = ACTIONS(4517), + [anon_sym_LT_DASH] = ACTIONS(4517), + [sym_none] = ACTIONS(4517), + [sym_true] = ACTIONS(4517), + [sym_false] = ACTIONS(4517), + [sym_nil] = ACTIONS(4517), + [anon_sym_if] = ACTIONS(4517), + [anon_sym_DOLLARif] = ACTIONS(4517), + [anon_sym_match] = ACTIONS(4517), + [anon_sym_select] = ACTIONS(4517), + [anon_sym_lock] = ACTIONS(4517), + [anon_sym_rlock] = ACTIONS(4517), + [anon_sym_unsafe] = ACTIONS(4517), + [anon_sym_sql] = ACTIONS(4517), + [sym_int_literal] = ACTIONS(4517), + [sym_float_literal] = ACTIONS(4517), + [sym_rune_literal] = ACTIONS(4517), + [sym_pseudo_compile_time_identifier] = ACTIONS(4517), + [anon_sym_shared] = ACTIONS(4517), + [anon_sym_map_LBRACK] = ACTIONS(4517), + [anon_sym_chan] = ACTIONS(4517), + [anon_sym_thread] = ACTIONS(4517), + [anon_sym_atomic] = ACTIONS(4517), + [anon_sym_assert] = ACTIONS(4517), + [anon_sym_defer] = ACTIONS(4517), + [anon_sym_goto] = ACTIONS(4517), + [anon_sym_break] = ACTIONS(4517), + [anon_sym_continue] = ACTIONS(4517), + [anon_sym_return] = ACTIONS(4517), + [anon_sym_DOLLARfor] = ACTIONS(4517), + [anon_sym_for] = ACTIONS(4517), + [anon_sym_POUND] = ACTIONS(4517), + [anon_sym_asm] = ACTIONS(4517), + [anon_sym_AT_LBRACK] = ACTIONS(4517), + [sym___double_quote] = ACTIONS(4517), + [sym___single_quote] = ACTIONS(4517), + [sym___c_double_quote] = ACTIONS(4517), + [sym___c_single_quote] = ACTIONS(4517), + [sym___r_double_quote] = ACTIONS(4517), + [sym___r_single_quote] = ACTIONS(4517), }, [1574] = { [sym_line_comment] = STATE(1574), [sym_block_comment] = STATE(1574), - [sym_reference_expression] = STATE(4495), - [sym_type_reference_expression] = STATE(3541), - [sym_plain_type] = STATE(2386), - [sym__plain_type_without_special] = STATE(2302), - [sym_anon_struct_type] = STATE(2303), - [sym_multi_return_type] = STATE(2302), - [sym_result_type] = STATE(2302), - [sym_option_type] = STATE(2302), - [sym_qualified_type] = STATE(3541), - [sym_fixed_array_type] = STATE(2303), - [sym_array_type] = STATE(2303), - [sym_pointer_type] = STATE(2303), - [sym_wrong_pointer_type] = STATE(2303), - [sym_map_type] = STATE(2303), - [sym_channel_type] = STATE(2303), - [sym_shared_type] = STATE(2303), - [sym_thread_type] = STATE(2303), - [sym_atomic_type] = STATE(2303), - [sym_generic_type] = STATE(2303), - [sym_function_type] = STATE(2303), - [sym_identifier] = ACTIONS(597), - [anon_sym_SLASH_SLASH] = ACTIONS(3), - [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(599), - [anon_sym_as] = ACTIONS(599), - [anon_sym_LBRACE] = ACTIONS(595), - [anon_sym_COMMA] = ACTIONS(595), - [anon_sym_LPAREN] = ACTIONS(3586), - [anon_sym_PIPE] = ACTIONS(599), - [anon_sym_fn] = ACTIONS(603), - [anon_sym_PLUS] = ACTIONS(599), - [anon_sym_DASH] = ACTIONS(599), - [anon_sym_STAR] = ACTIONS(3588), - [anon_sym_SLASH] = ACTIONS(599), - [anon_sym_PERCENT] = ACTIONS(595), - [anon_sym_LT] = ACTIONS(599), - [anon_sym_GT] = ACTIONS(599), - [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(607), - [anon_sym_PLUS_PLUS] = ACTIONS(595), - [anon_sym_DASH_DASH] = ACTIONS(595), - [anon_sym_QMARK] = ACTIONS(515), - [anon_sym_BANG] = ACTIONS(4517), - [anon_sym_LBRACK2] = ACTIONS(611), - [anon_sym_CARET] = ACTIONS(595), - [anon_sym_AMP] = ACTIONS(613), - [anon_sym_LT_LT] = ACTIONS(595), - [anon_sym_GT_GT] = ACTIONS(599), - [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(599), - [anon_sym_QMARK_DOT] = ACTIONS(595), - [anon_sym_POUND_LBRACK] = ACTIONS(595), - [anon_sym_is] = ACTIONS(599), - [anon_sym_BANGis] = ACTIONS(595), - [anon_sym_in] = ACTIONS(599), - [anon_sym_BANGin] = ACTIONS(595), - [anon_sym_shared] = ACTIONS(615), - [anon_sym_map_LBRACK] = ACTIONS(85), - [anon_sym_chan] = ACTIONS(87), - [anon_sym_thread] = ACTIONS(89), - [anon_sym_atomic] = ACTIONS(91), - [anon_sym_DOT_DOT] = ACTIONS(599), + [ts_builtin_sym_end] = ACTIONS(4519), + [sym_identifier] = ACTIONS(4521), + [anon_sym_LF] = ACTIONS(4521), + [anon_sym_CR] = ACTIONS(4521), + [anon_sym_CR_LF] = ACTIONS(4521), + [anon_sym_SLASH_SLASH] = ACTIONS(497), + [anon_sym_SLASH_STAR] = ACTIONS(499), + [anon_sym_DOT] = ACTIONS(4521), + [anon_sym_LBRACE] = ACTIONS(4521), + [anon_sym_const] = ACTIONS(4521), + [anon_sym_LPAREN] = ACTIONS(4521), + [anon_sym___global] = ACTIONS(4521), + [anon_sym_type] = ACTIONS(4521), + [anon_sym_fn] = ACTIONS(4521), + [anon_sym_PLUS] = ACTIONS(4521), + [anon_sym_DASH] = ACTIONS(4521), + [anon_sym_STAR] = ACTIONS(4521), + [anon_sym_struct] = ACTIONS(4521), + [anon_sym_union] = ACTIONS(4521), + [anon_sym_pub] = ACTIONS(4521), + [anon_sym_mut] = ACTIONS(4521), + [anon_sym_enum] = ACTIONS(4521), + [anon_sym_interface] = ACTIONS(4521), + [anon_sym_QMARK] = ACTIONS(4521), + [anon_sym_BANG] = ACTIONS(4521), + [anon_sym_go] = ACTIONS(4521), + [anon_sym_spawn] = ACTIONS(4521), + [anon_sym_json_DOTdecode] = ACTIONS(4521), + [anon_sym_LBRACK2] = ACTIONS(4521), + [anon_sym_TILDE] = ACTIONS(4521), + [anon_sym_CARET] = ACTIONS(4521), + [anon_sym_AMP] = ACTIONS(4521), + [anon_sym_LT_DASH] = ACTIONS(4521), + [sym_none] = ACTIONS(4521), + [sym_true] = ACTIONS(4521), + [sym_false] = ACTIONS(4521), + [sym_nil] = ACTIONS(4521), + [anon_sym_if] = ACTIONS(4521), + [anon_sym_DOLLARif] = ACTIONS(4521), + [anon_sym_match] = ACTIONS(4521), + [anon_sym_select] = ACTIONS(4521), + [anon_sym_lock] = ACTIONS(4521), + [anon_sym_rlock] = ACTIONS(4521), + [anon_sym_unsafe] = ACTIONS(4521), + [anon_sym_sql] = ACTIONS(4521), + [sym_int_literal] = ACTIONS(4521), + [sym_float_literal] = ACTIONS(4521), + [sym_rune_literal] = ACTIONS(4521), + [sym_pseudo_compile_time_identifier] = ACTIONS(4521), + [anon_sym_shared] = ACTIONS(4521), + [anon_sym_map_LBRACK] = ACTIONS(4521), + [anon_sym_chan] = ACTIONS(4521), + [anon_sym_thread] = ACTIONS(4521), + [anon_sym_atomic] = ACTIONS(4521), + [anon_sym_assert] = ACTIONS(4521), + [anon_sym_defer] = ACTIONS(4521), + [anon_sym_goto] = ACTIONS(4521), + [anon_sym_break] = ACTIONS(4521), + [anon_sym_continue] = ACTIONS(4521), + [anon_sym_return] = ACTIONS(4521), + [anon_sym_DOLLARfor] = ACTIONS(4521), + [anon_sym_for] = ACTIONS(4521), + [anon_sym_POUND] = ACTIONS(4521), + [anon_sym_asm] = ACTIONS(4521), + [anon_sym_AT_LBRACK] = ACTIONS(4521), + [sym___double_quote] = ACTIONS(4521), + [sym___single_quote] = ACTIONS(4521), + [sym___c_double_quote] = ACTIONS(4521), + [sym___c_single_quote] = ACTIONS(4521), + [sym___r_double_quote] = ACTIONS(4521), + [sym___r_single_quote] = ACTIONS(4521), }, [1575] = { [sym_line_comment] = STATE(1575), [sym_block_comment] = STATE(1575), - [sym_reference_expression] = STATE(4476), - [sym_type_reference_expression] = STATE(2602), - [sym_plain_type] = STATE(2707), - [sym__plain_type_without_special] = STATE(2696), - [sym_anon_struct_type] = STATE(2697), - [sym_multi_return_type] = STATE(2696), - [sym_result_type] = STATE(2696), - [sym_option_type] = STATE(2696), - [sym_qualified_type] = STATE(2602), - [sym_fixed_array_type] = STATE(2697), - [sym_array_type] = STATE(2697), - [sym_pointer_type] = STATE(2697), - [sym_wrong_pointer_type] = STATE(2697), - [sym_map_type] = STATE(2697), - [sym_channel_type] = STATE(2697), - [sym_shared_type] = STATE(2697), - [sym_thread_type] = STATE(2697), - [sym_atomic_type] = STATE(2697), - [sym_generic_type] = STATE(2697), - [sym_function_type] = STATE(2697), - [sym_identifier] = ACTIONS(4519), - [anon_sym_SLASH_SLASH] = ACTIONS(3), - [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(627), - [anon_sym_as] = ACTIONS(627), - [anon_sym_LBRACE] = ACTIONS(625), - [anon_sym_COMMA] = ACTIONS(625), - [anon_sym_LPAREN] = ACTIONS(4521), - [anon_sym_PIPE] = ACTIONS(627), - [anon_sym_fn] = ACTIONS(4523), - [anon_sym_PLUS] = ACTIONS(627), - [anon_sym_DASH] = ACTIONS(627), - [anon_sym_STAR] = ACTIONS(4525), - [anon_sym_SLASH] = ACTIONS(627), - [anon_sym_PERCENT] = ACTIONS(625), - [anon_sym_LT] = ACTIONS(627), - [anon_sym_GT] = ACTIONS(627), - [anon_sym_EQ_EQ] = ACTIONS(625), - [anon_sym_BANG_EQ] = ACTIONS(625), - [anon_sym_LT_EQ] = ACTIONS(625), - [anon_sym_GT_EQ] = ACTIONS(625), - [anon_sym_DOT_DOT_DOT] = ACTIONS(625), - [anon_sym_LBRACK] = ACTIONS(625), - [anon_sym_struct] = ACTIONS(4527), - [anon_sym_PLUS_PLUS] = ACTIONS(625), - [anon_sym_DASH_DASH] = ACTIONS(625), - [anon_sym_QMARK] = ACTIONS(4529), - [anon_sym_BANG] = ACTIONS(4531), - [anon_sym_LBRACK2] = ACTIONS(4533), - [anon_sym_CARET] = ACTIONS(625), - [anon_sym_AMP] = ACTIONS(4535), - [anon_sym_LT_LT] = ACTIONS(625), - [anon_sym_GT_GT] = ACTIONS(627), - [anon_sym_GT_GT_GT] = ACTIONS(625), - [anon_sym_AMP_CARET] = ACTIONS(625), - [anon_sym_AMP_AMP] = ACTIONS(625), - [anon_sym_PIPE_PIPE] = ACTIONS(625), - [anon_sym_or] = ACTIONS(627), - [anon_sym_QMARK_DOT] = ACTIONS(625), - [anon_sym_POUND_LBRACK] = ACTIONS(625), - [anon_sym_is] = ACTIONS(627), - [anon_sym_BANGis] = ACTIONS(625), - [anon_sym_in] = ACTIONS(627), - [anon_sym_BANGin] = ACTIONS(625), - [anon_sym_shared] = ACTIONS(4537), - [anon_sym_map_LBRACK] = ACTIONS(4539), - [anon_sym_chan] = ACTIONS(4541), - [anon_sym_thread] = ACTIONS(4543), - [anon_sym_atomic] = ACTIONS(4545), - [anon_sym_DOT_DOT] = ACTIONS(627), - }, - [1576] = { - [sym_line_comment] = STATE(1576), - [sym_block_comment] = STATE(1576), - [sym_reference_expression] = STATE(4476), - [sym_type_reference_expression] = STATE(2602), - [sym_plain_type] = STATE(2719), - [sym__plain_type_without_special] = STATE(2696), - [sym_anon_struct_type] = STATE(2697), - [sym_multi_return_type] = STATE(2696), - [sym_result_type] = STATE(2696), - [sym_option_type] = STATE(2696), - [sym_qualified_type] = STATE(2602), - [sym_fixed_array_type] = STATE(2697), - [sym_array_type] = STATE(2697), - [sym_pointer_type] = STATE(2697), - [sym_wrong_pointer_type] = STATE(2697), - [sym_map_type] = STATE(2697), - [sym_channel_type] = STATE(2697), - [sym_shared_type] = STATE(2697), - [sym_thread_type] = STATE(2697), - [sym_atomic_type] = STATE(2697), - [sym_generic_type] = STATE(2697), - [sym_function_type] = STATE(2697), - [sym_identifier] = ACTIONS(4519), + [sym_reference_expression] = STATE(4479), + [sym_type_reference_expression] = STATE(2597), + [sym_plain_type] = STATE(2722), + [sym__plain_type_without_special] = STATE(2699), + [sym_anon_struct_type] = STATE(2700), + [sym_multi_return_type] = STATE(2699), + [sym_result_type] = STATE(2699), + [sym_option_type] = STATE(2699), + [sym_qualified_type] = STATE(2597), + [sym_fixed_array_type] = STATE(2700), + [sym_array_type] = STATE(2700), + [sym_pointer_type] = STATE(2700), + [sym_wrong_pointer_type] = STATE(2700), + [sym_map_type] = STATE(2700), + [sym_channel_type] = STATE(2700), + [sym_shared_type] = STATE(2700), + [sym_thread_type] = STATE(2700), + [sym_atomic_type] = STATE(2700), + [sym_generic_type] = STATE(2700), + [sym_function_type] = STATE(2700), + [sym_identifier] = ACTIONS(4523), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), [anon_sym_DOT] = ACTIONS(619), [anon_sym_as] = ACTIONS(619), [anon_sym_LBRACE] = ACTIONS(617), [anon_sym_COMMA] = ACTIONS(617), - [anon_sym_LPAREN] = ACTIONS(4521), + [anon_sym_LPAREN] = ACTIONS(4525), [anon_sym_PIPE] = ACTIONS(619), - [anon_sym_fn] = ACTIONS(4523), + [anon_sym_fn] = ACTIONS(4527), [anon_sym_PLUS] = ACTIONS(619), [anon_sym_DASH] = ACTIONS(619), - [anon_sym_STAR] = ACTIONS(4525), + [anon_sym_STAR] = ACTIONS(4529), [anon_sym_SLASH] = ACTIONS(619), [anon_sym_PERCENT] = ACTIONS(617), [anon_sym_LT] = ACTIONS(619), @@ -186474,14 +186460,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_GT_EQ] = ACTIONS(617), [anon_sym_DOT_DOT_DOT] = ACTIONS(617), [anon_sym_LBRACK] = ACTIONS(617), - [anon_sym_struct] = ACTIONS(4527), + [anon_sym_struct] = ACTIONS(4531), [anon_sym_PLUS_PLUS] = ACTIONS(617), [anon_sym_DASH_DASH] = ACTIONS(617), - [anon_sym_QMARK] = ACTIONS(4529), - [anon_sym_BANG] = ACTIONS(4531), - [anon_sym_LBRACK2] = ACTIONS(4533), + [anon_sym_QMARK] = ACTIONS(4533), + [anon_sym_BANG] = ACTIONS(4535), + [anon_sym_LBRACK2] = ACTIONS(4537), [anon_sym_CARET] = ACTIONS(617), - [anon_sym_AMP] = ACTIONS(4535), + [anon_sym_AMP] = ACTIONS(4539), [anon_sym_LT_LT] = ACTIONS(617), [anon_sym_GT_GT] = ACTIONS(619), [anon_sym_GT_GT_GT] = ACTIONS(617), @@ -186495,49 +186481,271 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BANGis] = ACTIONS(617), [anon_sym_in] = ACTIONS(619), [anon_sym_BANGin] = ACTIONS(617), - [anon_sym_shared] = ACTIONS(4537), - [anon_sym_map_LBRACK] = ACTIONS(4539), - [anon_sym_chan] = ACTIONS(4541), - [anon_sym_thread] = ACTIONS(4543), - [anon_sym_atomic] = ACTIONS(4545), + [anon_sym_shared] = ACTIONS(4541), + [anon_sym_map_LBRACK] = ACTIONS(4543), + [anon_sym_chan] = ACTIONS(4545), + [anon_sym_thread] = ACTIONS(4547), + [anon_sym_atomic] = ACTIONS(4549), [anon_sym_DOT_DOT] = ACTIONS(619), }, + [1576] = { + [sym_line_comment] = STATE(1576), + [sym_block_comment] = STATE(1576), + [sym_reference_expression] = STATE(4479), + [sym_type_reference_expression] = STATE(2597), + [sym_plain_type] = STATE(2726), + [sym__plain_type_without_special] = STATE(2699), + [sym_anon_struct_type] = STATE(2700), + [sym_multi_return_type] = STATE(2699), + [sym_result_type] = STATE(2699), + [sym_option_type] = STATE(2699), + [sym_qualified_type] = STATE(2597), + [sym_fixed_array_type] = STATE(2700), + [sym_array_type] = STATE(2700), + [sym_pointer_type] = STATE(2700), + [sym_wrong_pointer_type] = STATE(2700), + [sym_map_type] = STATE(2700), + [sym_channel_type] = STATE(2700), + [sym_shared_type] = STATE(2700), + [sym_thread_type] = STATE(2700), + [sym_atomic_type] = STATE(2700), + [sym_generic_type] = STATE(2700), + [sym_function_type] = STATE(2700), + [sym_identifier] = ACTIONS(4523), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(623), + [anon_sym_as] = ACTIONS(623), + [anon_sym_LBRACE] = ACTIONS(621), + [anon_sym_COMMA] = ACTIONS(621), + [anon_sym_LPAREN] = ACTIONS(4525), + [anon_sym_PIPE] = ACTIONS(623), + [anon_sym_fn] = ACTIONS(4527), + [anon_sym_PLUS] = ACTIONS(623), + [anon_sym_DASH] = ACTIONS(623), + [anon_sym_STAR] = ACTIONS(4529), + [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(4531), + [anon_sym_PLUS_PLUS] = ACTIONS(621), + [anon_sym_DASH_DASH] = ACTIONS(621), + [anon_sym_QMARK] = ACTIONS(4533), + [anon_sym_BANG] = ACTIONS(4535), + [anon_sym_LBRACK2] = ACTIONS(4537), + [anon_sym_CARET] = ACTIONS(621), + [anon_sym_AMP] = ACTIONS(4539), + [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(4541), + [anon_sym_map_LBRACK] = ACTIONS(4543), + [anon_sym_chan] = ACTIONS(4545), + [anon_sym_thread] = ACTIONS(4547), + [anon_sym_atomic] = ACTIONS(4549), + [anon_sym_DOT_DOT] = ACTIONS(623), + }, [1577] = { [sym_line_comment] = STATE(1577), [sym_block_comment] = STATE(1577), - [sym_reference_expression] = STATE(4476), - [sym_type_reference_expression] = STATE(2602), - [sym_plain_type] = STATE(2723), - [sym__plain_type_without_special] = STATE(2696), - [sym_anon_struct_type] = STATE(2697), - [sym_multi_return_type] = STATE(2696), - [sym_result_type] = STATE(2696), - [sym_option_type] = STATE(2696), - [sym_qualified_type] = STATE(2602), - [sym_fixed_array_type] = STATE(2697), - [sym_array_type] = STATE(2697), - [sym_pointer_type] = STATE(2697), - [sym_wrong_pointer_type] = STATE(2697), - [sym_map_type] = STATE(2697), - [sym_channel_type] = STATE(2697), - [sym_shared_type] = STATE(2697), - [sym_thread_type] = STATE(2697), - [sym_atomic_type] = STATE(2697), - [sym_generic_type] = STATE(2697), - [sym_function_type] = STATE(2697), - [sym_identifier] = ACTIONS(4519), + [ts_builtin_sym_end] = ACTIONS(4551), + [sym_identifier] = ACTIONS(4553), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_module] = ACTIONS(4553), + [anon_sym_import] = ACTIONS(4553), + [anon_sym_DOT] = ACTIONS(4553), + [anon_sym_LBRACE] = ACTIONS(4551), + [anon_sym_const] = ACTIONS(4553), + [anon_sym_LPAREN] = ACTIONS(4551), + [anon_sym___global] = ACTIONS(4553), + [anon_sym_type] = ACTIONS(4553), + [anon_sym_fn] = ACTIONS(4553), + [anon_sym_PLUS] = ACTIONS(4551), + [anon_sym_DASH] = ACTIONS(4551), + [anon_sym_STAR] = ACTIONS(4551), + [anon_sym_struct] = ACTIONS(4553), + [anon_sym_union] = ACTIONS(4553), + [anon_sym_pub] = ACTIONS(4553), + [anon_sym_mut] = ACTIONS(4553), + [anon_sym_enum] = ACTIONS(4553), + [anon_sym_interface] = ACTIONS(4553), + [anon_sym_QMARK] = ACTIONS(4551), + [anon_sym_BANG] = ACTIONS(4551), + [anon_sym_go] = ACTIONS(4553), + [anon_sym_spawn] = ACTIONS(4553), + [anon_sym_json_DOTdecode] = ACTIONS(4551), + [anon_sym_LBRACK2] = ACTIONS(4551), + [anon_sym_TILDE] = ACTIONS(4551), + [anon_sym_CARET] = ACTIONS(4551), + [anon_sym_AMP] = ACTIONS(4551), + [anon_sym_LT_DASH] = ACTIONS(4551), + [sym_none] = ACTIONS(4553), + [sym_true] = ACTIONS(4553), + [sym_false] = ACTIONS(4553), + [sym_nil] = ACTIONS(4553), + [anon_sym_if] = ACTIONS(4553), + [anon_sym_DOLLARif] = ACTIONS(4553), + [anon_sym_match] = ACTIONS(4553), + [anon_sym_select] = ACTIONS(4553), + [anon_sym_lock] = ACTIONS(4553), + [anon_sym_rlock] = ACTIONS(4553), + [anon_sym_unsafe] = ACTIONS(4553), + [anon_sym_sql] = ACTIONS(4553), + [sym_int_literal] = ACTIONS(4553), + [sym_float_literal] = ACTIONS(4551), + [sym_rune_literal] = ACTIONS(4551), + [sym_pseudo_compile_time_identifier] = ACTIONS(4553), + [anon_sym_shared] = ACTIONS(4553), + [anon_sym_map_LBRACK] = ACTIONS(4551), + [anon_sym_chan] = ACTIONS(4553), + [anon_sym_thread] = ACTIONS(4553), + [anon_sym_atomic] = ACTIONS(4553), + [anon_sym_assert] = ACTIONS(4553), + [anon_sym_defer] = ACTIONS(4553), + [anon_sym_goto] = ACTIONS(4553), + [anon_sym_break] = ACTIONS(4553), + [anon_sym_continue] = ACTIONS(4553), + [anon_sym_return] = ACTIONS(4553), + [anon_sym_DOLLARfor] = ACTIONS(4553), + [anon_sym_for] = ACTIONS(4553), + [anon_sym_POUND] = ACTIONS(4551), + [anon_sym_asm] = ACTIONS(4553), + [anon_sym_AT_LBRACK] = ACTIONS(4551), + [sym___double_quote] = ACTIONS(4551), + [sym___single_quote] = ACTIONS(4551), + [sym___c_double_quote] = ACTIONS(4551), + [sym___c_single_quote] = ACTIONS(4551), + [sym___r_double_quote] = ACTIONS(4551), + [sym___r_single_quote] = ACTIONS(4551), + }, + [1578] = { + [sym_line_comment] = STATE(1578), + [sym_block_comment] = STATE(1578), + [sym_reference_expression] = STATE(4479), + [sym_type_reference_expression] = STATE(2597), + [sym_plain_type] = STATE(2710), + [sym__plain_type_without_special] = STATE(2699), + [sym_anon_struct_type] = STATE(2700), + [sym_multi_return_type] = STATE(2699), + [sym_result_type] = STATE(2699), + [sym_option_type] = STATE(2699), + [sym_qualified_type] = STATE(2597), + [sym_fixed_array_type] = STATE(2700), + [sym_array_type] = STATE(2700), + [sym_pointer_type] = STATE(2700), + [sym_wrong_pointer_type] = STATE(2700), + [sym_map_type] = STATE(2700), + [sym_channel_type] = STATE(2700), + [sym_shared_type] = STATE(2700), + [sym_thread_type] = STATE(2700), + [sym_atomic_type] = STATE(2700), + [sym_generic_type] = STATE(2700), + [sym_function_type] = STATE(2700), + [sym_identifier] = ACTIONS(4523), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(589), + [anon_sym_as] = ACTIONS(589), + [anon_sym_LBRACE] = ACTIONS(585), + [anon_sym_COMMA] = ACTIONS(585), + [anon_sym_LPAREN] = ACTIONS(4525), + [anon_sym_PIPE] = ACTIONS(589), + [anon_sym_fn] = ACTIONS(4527), + [anon_sym_PLUS] = ACTIONS(589), + [anon_sym_DASH] = ACTIONS(589), + [anon_sym_STAR] = ACTIONS(4529), + [anon_sym_SLASH] = ACTIONS(589), + [anon_sym_PERCENT] = ACTIONS(585), + [anon_sym_LT] = ACTIONS(589), + [anon_sym_GT] = ACTIONS(589), + [anon_sym_EQ_EQ] = ACTIONS(585), + [anon_sym_BANG_EQ] = ACTIONS(585), + [anon_sym_LT_EQ] = ACTIONS(585), + [anon_sym_GT_EQ] = ACTIONS(585), + [anon_sym_DOT_DOT_DOT] = ACTIONS(585), + [anon_sym_LBRACK] = ACTIONS(585), + [anon_sym_struct] = ACTIONS(4531), + [anon_sym_PLUS_PLUS] = ACTIONS(585), + [anon_sym_DASH_DASH] = ACTIONS(585), + [anon_sym_QMARK] = ACTIONS(4533), + [anon_sym_BANG] = ACTIONS(4535), + [anon_sym_LBRACK2] = ACTIONS(4537), + [anon_sym_CARET] = ACTIONS(585), + [anon_sym_AMP] = ACTIONS(4539), + [anon_sym_LT_LT] = ACTIONS(585), + [anon_sym_GT_GT] = ACTIONS(589), + [anon_sym_GT_GT_GT] = ACTIONS(585), + [anon_sym_AMP_CARET] = ACTIONS(585), + [anon_sym_AMP_AMP] = ACTIONS(585), + [anon_sym_PIPE_PIPE] = ACTIONS(585), + [anon_sym_or] = ACTIONS(589), + [anon_sym_QMARK_DOT] = ACTIONS(585), + [anon_sym_POUND_LBRACK] = ACTIONS(585), + [anon_sym_is] = ACTIONS(589), + [anon_sym_BANGis] = ACTIONS(585), + [anon_sym_in] = ACTIONS(589), + [anon_sym_BANGin] = ACTIONS(585), + [anon_sym_shared] = ACTIONS(4541), + [anon_sym_map_LBRACK] = ACTIONS(4543), + [anon_sym_chan] = ACTIONS(4545), + [anon_sym_thread] = ACTIONS(4547), + [anon_sym_atomic] = ACTIONS(4549), + [anon_sym_DOT_DOT] = ACTIONS(589), + }, + [1579] = { + [sym_line_comment] = STATE(1579), + [sym_block_comment] = STATE(1579), + [sym_reference_expression] = STATE(4498), + [sym_type_reference_expression] = STATE(3460), + [sym_plain_type] = STATE(2320), + [sym__plain_type_without_special] = STATE(2360), + [sym_anon_struct_type] = STATE(2362), + [sym_multi_return_type] = STATE(2360), + [sym_result_type] = STATE(2360), + [sym_option_type] = STATE(2360), + [sym_qualified_type] = STATE(3460), + [sym_fixed_array_type] = STATE(2362), + [sym_array_type] = STATE(2362), + [sym_pointer_type] = STATE(2362), + [sym_wrong_pointer_type] = STATE(2362), + [sym_map_type] = STATE(2362), + [sym_channel_type] = STATE(2362), + [sym_shared_type] = STATE(2362), + [sym_thread_type] = STATE(2362), + [sym_atomic_type] = STATE(2362), + [sym_generic_type] = STATE(2362), + [sym_function_type] = STATE(2362), + [sym_identifier] = ACTIONS(565), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), [anon_sym_DOT] = ACTIONS(567), [anon_sym_as] = ACTIONS(567), [anon_sym_LBRACE] = ACTIONS(563), [anon_sym_COMMA] = ACTIONS(563), - [anon_sym_LPAREN] = ACTIONS(4521), + [anon_sym_LPAREN] = ACTIONS(3564), [anon_sym_PIPE] = ACTIONS(567), - [anon_sym_fn] = ACTIONS(4523), + [anon_sym_fn] = ACTIONS(571), [anon_sym_PLUS] = ACTIONS(567), [anon_sym_DASH] = ACTIONS(567), - [anon_sym_STAR] = ACTIONS(4525), + [anon_sym_STAR] = ACTIONS(3566), [anon_sym_SLASH] = ACTIONS(567), [anon_sym_PERCENT] = ACTIONS(563), [anon_sym_LT] = ACTIONS(567), @@ -186548,14 +186756,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_GT_EQ] = ACTIONS(563), [anon_sym_DOT_DOT_DOT] = ACTIONS(563), [anon_sym_LBRACK] = ACTIONS(563), - [anon_sym_struct] = ACTIONS(4527), + [anon_sym_struct] = ACTIONS(575), [anon_sym_PLUS_PLUS] = ACTIONS(563), [anon_sym_DASH_DASH] = ACTIONS(563), - [anon_sym_QMARK] = ACTIONS(4529), - [anon_sym_BANG] = ACTIONS(4531), - [anon_sym_LBRACK2] = ACTIONS(4533), + [anon_sym_QMARK] = ACTIONS(515), + [anon_sym_BANG] = ACTIONS(4555), + [anon_sym_LBRACK2] = ACTIONS(579), [anon_sym_CARET] = ACTIONS(563), - [anon_sym_AMP] = ACTIONS(4535), + [anon_sym_AMP] = ACTIONS(581), [anon_sym_LT_LT] = ACTIONS(563), [anon_sym_GT_GT] = ACTIONS(567), [anon_sym_GT_GT_GT] = ACTIONS(563), @@ -186569,341 +186777,132 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BANGis] = ACTIONS(563), [anon_sym_in] = ACTIONS(567), [anon_sym_BANGin] = ACTIONS(563), - [anon_sym_shared] = ACTIONS(4537), - [anon_sym_map_LBRACK] = ACTIONS(4539), - [anon_sym_chan] = ACTIONS(4541), - [anon_sym_thread] = ACTIONS(4543), - [anon_sym_atomic] = ACTIONS(4545), - [anon_sym_DOT_DOT] = ACTIONS(567), - }, - [1578] = { - [sym_line_comment] = STATE(1578), - [sym_block_comment] = STATE(1578), - [ts_builtin_sym_end] = ACTIONS(4547), - [sym_identifier] = ACTIONS(4549), - [anon_sym_SLASH_SLASH] = ACTIONS(3), - [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_module] = ACTIONS(4549), - [anon_sym_import] = ACTIONS(4549), - [anon_sym_DOT] = ACTIONS(4549), - [anon_sym_LBRACE] = ACTIONS(4547), - [anon_sym_const] = ACTIONS(4549), - [anon_sym_LPAREN] = ACTIONS(4547), - [anon_sym___global] = ACTIONS(4549), - [anon_sym_type] = ACTIONS(4549), - [anon_sym_fn] = ACTIONS(4549), - [anon_sym_PLUS] = ACTIONS(4547), - [anon_sym_DASH] = ACTIONS(4547), - [anon_sym_STAR] = ACTIONS(4547), - [anon_sym_struct] = ACTIONS(4549), - [anon_sym_union] = ACTIONS(4549), - [anon_sym_pub] = ACTIONS(4549), - [anon_sym_mut] = ACTIONS(4549), - [anon_sym_enum] = ACTIONS(4549), - [anon_sym_interface] = ACTIONS(4549), - [anon_sym_QMARK] = ACTIONS(4547), - [anon_sym_BANG] = ACTIONS(4547), - [anon_sym_go] = ACTIONS(4549), - [anon_sym_spawn] = ACTIONS(4549), - [anon_sym_json_DOTdecode] = ACTIONS(4547), - [anon_sym_LBRACK2] = ACTIONS(4547), - [anon_sym_TILDE] = ACTIONS(4547), - [anon_sym_CARET] = ACTIONS(4547), - [anon_sym_AMP] = ACTIONS(4547), - [anon_sym_LT_DASH] = ACTIONS(4547), - [sym_none] = ACTIONS(4549), - [sym_true] = ACTIONS(4549), - [sym_false] = ACTIONS(4549), - [sym_nil] = ACTIONS(4549), - [anon_sym_if] = ACTIONS(4549), - [anon_sym_DOLLARif] = ACTIONS(4549), - [anon_sym_match] = ACTIONS(4549), - [anon_sym_select] = ACTIONS(4549), - [anon_sym_lock] = ACTIONS(4549), - [anon_sym_rlock] = ACTIONS(4549), - [anon_sym_unsafe] = ACTIONS(4549), - [anon_sym_sql] = ACTIONS(4549), - [sym_int_literal] = ACTIONS(4549), - [sym_float_literal] = ACTIONS(4547), - [sym_rune_literal] = ACTIONS(4547), - [sym_pseudo_compile_time_identifier] = ACTIONS(4549), - [anon_sym_shared] = ACTIONS(4549), - [anon_sym_map_LBRACK] = ACTIONS(4547), - [anon_sym_chan] = ACTIONS(4549), - [anon_sym_thread] = ACTIONS(4549), - [anon_sym_atomic] = ACTIONS(4549), - [anon_sym_assert] = ACTIONS(4549), - [anon_sym_defer] = ACTIONS(4549), - [anon_sym_goto] = ACTIONS(4549), - [anon_sym_break] = ACTIONS(4549), - [anon_sym_continue] = ACTIONS(4549), - [anon_sym_return] = ACTIONS(4549), - [anon_sym_DOLLARfor] = ACTIONS(4549), - [anon_sym_for] = ACTIONS(4549), - [anon_sym_POUND] = ACTIONS(4547), - [anon_sym_asm] = ACTIONS(4549), - [anon_sym_AT_LBRACK] = ACTIONS(4547), - [sym___double_quote] = ACTIONS(4547), - [sym___single_quote] = ACTIONS(4547), - [sym___c_double_quote] = ACTIONS(4547), - [sym___c_single_quote] = ACTIONS(4547), - [sym___r_double_quote] = ACTIONS(4547), - [sym___r_single_quote] = ACTIONS(4547), - }, - [1579] = { - [sym_line_comment] = STATE(1579), - [sym_block_comment] = STATE(1579), - [sym_reference_expression] = STATE(4495), - [sym_type_reference_expression] = STATE(3541), - [sym_plain_type] = STATE(2391), - [sym__plain_type_without_special] = STATE(2302), - [sym_anon_struct_type] = STATE(2303), - [sym_multi_return_type] = STATE(2302), - [sym_result_type] = STATE(2302), - [sym_option_type] = STATE(2302), - [sym_qualified_type] = STATE(3541), - [sym_fixed_array_type] = STATE(2303), - [sym_array_type] = STATE(2303), - [sym_pointer_type] = STATE(2303), - [sym_wrong_pointer_type] = STATE(2303), - [sym_map_type] = STATE(2303), - [sym_channel_type] = STATE(2303), - [sym_shared_type] = STATE(2303), - [sym_thread_type] = STATE(2303), - [sym_atomic_type] = STATE(2303), - [sym_generic_type] = STATE(2303), - [sym_function_type] = STATE(2303), - [sym_identifier] = ACTIONS(597), - [anon_sym_SLASH_SLASH] = ACTIONS(3), - [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_SEMI] = ACTIONS(621), - [anon_sym_DOT] = ACTIONS(621), - [anon_sym_as] = ACTIONS(623), - [anon_sym_LBRACE] = ACTIONS(563), - [anon_sym_COMMA] = ACTIONS(621), - [anon_sym_LPAREN] = ACTIONS(621), - [anon_sym_PIPE] = ACTIONS(623), - [anon_sym_fn] = ACTIONS(603), - [anon_sym_PLUS] = ACTIONS(623), - [anon_sym_DASH] = ACTIONS(623), - [anon_sym_STAR] = ACTIONS(621), - [anon_sym_SLASH] = ACTIONS(623), - [anon_sym_PERCENT] = ACTIONS(621), - [anon_sym_LT] = ACTIONS(623), - [anon_sym_GT] = ACTIONS(623), - [anon_sym_EQ_EQ] = ACTIONS(621), - [anon_sym_BANG_EQ] = ACTIONS(621), - [anon_sym_LT_EQ] = ACTIONS(621), - [anon_sym_GT_EQ] = ACTIONS(621), - [anon_sym_LBRACK] = ACTIONS(621), - [anon_sym_struct] = ACTIONS(607), - [anon_sym_PLUS_PLUS] = ACTIONS(621), - [anon_sym_DASH_DASH] = ACTIONS(621), - [anon_sym_QMARK] = ACTIONS(623), - [anon_sym_BANG] = ACTIONS(623), - [anon_sym_LBRACK2] = ACTIONS(623), - [anon_sym_CARET] = ACTIONS(621), - [anon_sym_AMP] = ACTIONS(623), - [anon_sym_LT_LT] = ACTIONS(621), - [anon_sym_GT_GT] = ACTIONS(623), - [anon_sym_GT_GT_GT] = ACTIONS(621), - [anon_sym_AMP_CARET] = ACTIONS(621), - [anon_sym_AMP_AMP] = ACTIONS(621), - [anon_sym_PIPE_PIPE] = ACTIONS(621), - [anon_sym_or] = ACTIONS(623), - [anon_sym_QMARK_DOT] = ACTIONS(621), - [anon_sym_POUND_LBRACK] = ACTIONS(621), - [anon_sym_is] = ACTIONS(623), - [anon_sym_BANGis] = ACTIONS(621), - [anon_sym_in] = ACTIONS(623), - [anon_sym_BANGin] = ACTIONS(621), - [anon_sym_COLON_EQ] = ACTIONS(621), - [anon_sym_shared] = ACTIONS(615), + [anon_sym_shared] = ACTIONS(583), [anon_sym_map_LBRACK] = ACTIONS(85), [anon_sym_chan] = ACTIONS(87), [anon_sym_thread] = ACTIONS(89), [anon_sym_atomic] = ACTIONS(91), + [anon_sym_DOT_DOT] = ACTIONS(567), }, [1580] = { [sym_line_comment] = STATE(1580), [sym_block_comment] = STATE(1580), - [sym_reference_expression] = STATE(4495), - [sym_type_reference_expression] = STATE(3541), - [sym_plain_type] = STATE(2289), - [sym__plain_type_without_special] = STATE(2302), - [sym_anon_struct_type] = STATE(2303), - [sym_multi_return_type] = STATE(2302), - [sym_result_type] = STATE(2302), - [sym_option_type] = STATE(2302), - [sym_qualified_type] = STATE(3541), - [sym_fixed_array_type] = STATE(2303), - [sym_array_type] = STATE(2303), - [sym_pointer_type] = STATE(2303), - [sym_wrong_pointer_type] = STATE(2303), - [sym_map_type] = STATE(2303), - [sym_channel_type] = STATE(2303), - [sym_shared_type] = STATE(2303), - [sym_thread_type] = STATE(2303), - [sym_atomic_type] = STATE(2303), - [sym_generic_type] = STATE(2303), - [sym_function_type] = STATE(2303), - [sym_identifier] = ACTIONS(4551), - [anon_sym_SLASH_SLASH] = ACTIONS(3), - [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(4551), - [anon_sym_LBRACE] = ACTIONS(4553), - [anon_sym_LPAREN] = ACTIONS(4553), - [anon_sym_fn] = ACTIONS(4551), - [anon_sym_PLUS] = ACTIONS(4553), - [anon_sym_DASH] = ACTIONS(4553), - [anon_sym_STAR] = ACTIONS(4553), - [anon_sym_struct] = ACTIONS(4551), - [anon_sym_mut] = ACTIONS(4551), - [anon_sym_QMARK] = ACTIONS(4553), - [anon_sym_BANG] = ACTIONS(4553), - [anon_sym_go] = ACTIONS(4551), - [anon_sym_spawn] = ACTIONS(4551), - [anon_sym_json_DOTdecode] = ACTIONS(4553), - [anon_sym_LBRACK2] = ACTIONS(4553), - [anon_sym_TILDE] = ACTIONS(4553), - [anon_sym_CARET] = ACTIONS(4553), - [anon_sym_AMP] = ACTIONS(4553), - [anon_sym_LT_DASH] = ACTIONS(4553), - [sym_none] = ACTIONS(4551), - [sym_true] = ACTIONS(4551), - [sym_false] = ACTIONS(4551), - [sym_nil] = ACTIONS(4551), - [anon_sym_if] = ACTIONS(4551), - [anon_sym_DOLLARif] = ACTIONS(4551), - [anon_sym_match] = ACTIONS(4551), - [anon_sym_select] = ACTIONS(4551), - [anon_sym_lock] = ACTIONS(4551), - [anon_sym_rlock] = ACTIONS(4551), - [anon_sym_unsafe] = ACTIONS(4551), - [anon_sym_sql] = ACTIONS(4551), - [sym_int_literal] = ACTIONS(4551), - [sym_float_literal] = ACTIONS(4553), - [sym_rune_literal] = ACTIONS(4553), - [sym_pseudo_compile_time_identifier] = ACTIONS(4551), - [anon_sym_shared] = ACTIONS(4551), - [anon_sym_map_LBRACK] = ACTIONS(4553), - [anon_sym_chan] = ACTIONS(4551), - [anon_sym_thread] = ACTIONS(4551), - [anon_sym_atomic] = ACTIONS(4551), - [sym___double_quote] = ACTIONS(4553), - [sym___single_quote] = ACTIONS(4553), - [sym___c_double_quote] = ACTIONS(4553), - [sym___c_single_quote] = ACTIONS(4553), - [sym___r_double_quote] = ACTIONS(4553), - [sym___r_single_quote] = ACTIONS(4553), - }, - [1581] = { - [sym_line_comment] = STATE(1581), - [sym_block_comment] = STATE(1581), - [sym_reference_expression] = STATE(4495), - [sym_type_reference_expression] = STATE(3541), - [sym_plain_type] = STATE(2386), - [sym__plain_type_without_special] = STATE(2302), - [sym_anon_struct_type] = STATE(2303), - [sym_multi_return_type] = STATE(2302), - [sym_result_type] = STATE(2302), - [sym_option_type] = STATE(2302), - [sym_qualified_type] = STATE(3541), - [sym_fixed_array_type] = STATE(2303), - [sym_array_type] = STATE(2303), - [sym_pointer_type] = STATE(2303), - [sym_wrong_pointer_type] = STATE(2303), - [sym_map_type] = STATE(2303), - [sym_channel_type] = STATE(2303), - [sym_shared_type] = STATE(2303), - [sym_thread_type] = STATE(2303), - [sym_atomic_type] = STATE(2303), - [sym_generic_type] = STATE(2303), - [sym_function_type] = STATE(2303), - [sym_identifier] = ACTIONS(597), + [sym_reference_expression] = STATE(4498), + [sym_type_reference_expression] = STATE(3460), + [sym_plain_type] = STATE(2345), + [sym__plain_type_without_special] = STATE(2360), + [sym_anon_struct_type] = STATE(2362), + [sym_multi_return_type] = STATE(2360), + [sym_result_type] = STATE(2360), + [sym_option_type] = STATE(2360), + [sym_qualified_type] = STATE(3460), + [sym_fixed_array_type] = STATE(2362), + [sym_array_type] = STATE(2362), + [sym_pointer_type] = STATE(2362), + [sym_wrong_pointer_type] = STATE(2362), + [sym_map_type] = STATE(2362), + [sym_channel_type] = STATE(2362), + [sym_shared_type] = STATE(2362), + [sym_thread_type] = STATE(2362), + [sym_atomic_type] = STATE(2362), + [sym_generic_type] = STATE(2362), + [sym_function_type] = STATE(2362), + [sym_identifier] = ACTIONS(565), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(595), - [anon_sym_as] = ACTIONS(599), - [anon_sym_LBRACE] = ACTIONS(595), - [anon_sym_COMMA] = ACTIONS(595), - [anon_sym_LPAREN] = ACTIONS(3586), - [anon_sym_PIPE] = ACTIONS(599), - [anon_sym_fn] = ACTIONS(603), - [anon_sym_PLUS] = ACTIONS(599), - [anon_sym_DASH] = ACTIONS(599), - [anon_sym_STAR] = ACTIONS(3588), - [anon_sym_SLASH] = ACTIONS(599), - [anon_sym_PERCENT] = ACTIONS(595), - [anon_sym_LT] = ACTIONS(599), - [anon_sym_GT] = ACTIONS(599), - [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(607), - [anon_sym_PLUS_PLUS] = ACTIONS(595), - [anon_sym_DASH_DASH] = ACTIONS(595), - [anon_sym_QMARK] = ACTIONS(515), - [anon_sym_BANG] = ACTIONS(4517), - [anon_sym_LBRACK2] = ACTIONS(611), - [anon_sym_CARET] = ACTIONS(595), - [anon_sym_AMP] = ACTIONS(613), - [anon_sym_LT_LT] = ACTIONS(595), - [anon_sym_GT_GT] = ACTIONS(599), - [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(599), - [anon_sym_QMARK_DOT] = ACTIONS(595), - [anon_sym_POUND_LBRACK] = ACTIONS(595), - [anon_sym_is] = ACTIONS(599), - [anon_sym_BANGis] = ACTIONS(595), - [anon_sym_in] = ACTIONS(599), - [anon_sym_BANGin] = ACTIONS(595), - [anon_sym_COLON_EQ] = ACTIONS(595), - [anon_sym_shared] = ACTIONS(615), + [anon_sym_SEMI] = ACTIONS(625), + [anon_sym_DOT] = ACTIONS(625), + [anon_sym_as] = ACTIONS(627), + [anon_sym_LBRACE] = ACTIONS(621), + [anon_sym_COMMA] = ACTIONS(625), + [anon_sym_LPAREN] = ACTIONS(625), + [anon_sym_PIPE] = ACTIONS(627), + [anon_sym_fn] = ACTIONS(571), + [anon_sym_PLUS] = ACTIONS(627), + [anon_sym_DASH] = ACTIONS(627), + [anon_sym_STAR] = ACTIONS(625), + [anon_sym_SLASH] = ACTIONS(627), + [anon_sym_PERCENT] = ACTIONS(625), + [anon_sym_LT] = ACTIONS(627), + [anon_sym_GT] = ACTIONS(627), + [anon_sym_EQ_EQ] = ACTIONS(625), + [anon_sym_BANG_EQ] = ACTIONS(625), + [anon_sym_LT_EQ] = ACTIONS(625), + [anon_sym_GT_EQ] = ACTIONS(625), + [anon_sym_LBRACK] = ACTIONS(625), + [anon_sym_struct] = ACTIONS(575), + [anon_sym_PLUS_PLUS] = ACTIONS(625), + [anon_sym_DASH_DASH] = ACTIONS(625), + [anon_sym_QMARK] = ACTIONS(627), + [anon_sym_BANG] = ACTIONS(627), + [anon_sym_LBRACK2] = ACTIONS(627), + [anon_sym_CARET] = ACTIONS(625), + [anon_sym_AMP] = ACTIONS(627), + [anon_sym_LT_LT] = ACTIONS(625), + [anon_sym_GT_GT] = ACTIONS(627), + [anon_sym_GT_GT_GT] = ACTIONS(625), + [anon_sym_AMP_CARET] = ACTIONS(625), + [anon_sym_AMP_AMP] = ACTIONS(625), + [anon_sym_PIPE_PIPE] = ACTIONS(625), + [anon_sym_or] = ACTIONS(627), + [anon_sym_QMARK_DOT] = ACTIONS(625), + [anon_sym_POUND_LBRACK] = ACTIONS(625), + [anon_sym_is] = ACTIONS(627), + [anon_sym_BANGis] = ACTIONS(625), + [anon_sym_in] = ACTIONS(627), + [anon_sym_BANGin] = ACTIONS(625), + [anon_sym_COLON_EQ] = ACTIONS(625), + [anon_sym_shared] = ACTIONS(583), [anon_sym_map_LBRACK] = ACTIONS(85), [anon_sym_chan] = ACTIONS(87), [anon_sym_thread] = ACTIONS(89), [anon_sym_atomic] = ACTIONS(91), }, - [1582] = { - [sym_line_comment] = STATE(1582), - [sym_block_comment] = STATE(1582), - [ts_builtin_sym_end] = ACTIONS(4555), + [1581] = { + [sym_line_comment] = STATE(1581), + [sym_block_comment] = STATE(1581), + [sym_reference_expression] = STATE(4498), + [sym_type_reference_expression] = STATE(3460), + [sym_plain_type] = STATE(2332), + [sym__plain_type_without_special] = STATE(2360), + [sym_anon_struct_type] = STATE(2362), + [sym_multi_return_type] = STATE(2360), + [sym_result_type] = STATE(2360), + [sym_option_type] = STATE(2360), + [sym_qualified_type] = STATE(3460), + [sym_fixed_array_type] = STATE(2362), + [sym_array_type] = STATE(2362), + [sym_pointer_type] = STATE(2362), + [sym_wrong_pointer_type] = STATE(2362), + [sym_map_type] = STATE(2362), + [sym_channel_type] = STATE(2362), + [sym_shared_type] = STATE(2362), + [sym_thread_type] = STATE(2362), + [sym_atomic_type] = STATE(2362), + [sym_generic_type] = STATE(2362), + [sym_function_type] = STATE(2362), [sym_identifier] = ACTIONS(4557), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_import] = ACTIONS(4557), [anon_sym_DOT] = ACTIONS(4557), - [anon_sym_LBRACE] = ACTIONS(4555), - [anon_sym_const] = ACTIONS(4557), - [anon_sym_LPAREN] = ACTIONS(4555), - [anon_sym___global] = ACTIONS(4557), - [anon_sym_type] = ACTIONS(4557), + [anon_sym_LBRACE] = ACTIONS(4559), + [anon_sym_LPAREN] = ACTIONS(4559), [anon_sym_fn] = ACTIONS(4557), - [anon_sym_PLUS] = ACTIONS(4555), - [anon_sym_DASH] = ACTIONS(4555), - [anon_sym_STAR] = ACTIONS(4555), + [anon_sym_PLUS] = ACTIONS(4559), + [anon_sym_DASH] = ACTIONS(4559), + [anon_sym_STAR] = ACTIONS(4559), [anon_sym_struct] = ACTIONS(4557), - [anon_sym_union] = ACTIONS(4557), - [anon_sym_pub] = ACTIONS(4557), [anon_sym_mut] = ACTIONS(4557), - [anon_sym_enum] = ACTIONS(4557), - [anon_sym_interface] = ACTIONS(4557), - [anon_sym_QMARK] = ACTIONS(4555), - [anon_sym_BANG] = ACTIONS(4555), + [anon_sym_QMARK] = ACTIONS(4559), + [anon_sym_BANG] = ACTIONS(4559), [anon_sym_go] = ACTIONS(4557), [anon_sym_spawn] = ACTIONS(4557), - [anon_sym_json_DOTdecode] = ACTIONS(4555), - [anon_sym_LBRACK2] = ACTIONS(4555), - [anon_sym_TILDE] = ACTIONS(4555), - [anon_sym_CARET] = ACTIONS(4555), - [anon_sym_AMP] = ACTIONS(4555), - [anon_sym_LT_DASH] = ACTIONS(4555), + [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(4557), [sym_true] = ACTIONS(4557), [sym_false] = ACTIONS(4557), @@ -186917,98 +186916,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_unsafe] = ACTIONS(4557), [anon_sym_sql] = ACTIONS(4557), [sym_int_literal] = ACTIONS(4557), - [sym_float_literal] = ACTIONS(4555), - [sym_rune_literal] = ACTIONS(4555), - [sym_pseudo_compile_time_identifier] = ACTIONS(4557), - [anon_sym_shared] = ACTIONS(4557), - [anon_sym_map_LBRACK] = ACTIONS(4555), - [anon_sym_chan] = ACTIONS(4557), - [anon_sym_thread] = ACTIONS(4557), - [anon_sym_atomic] = ACTIONS(4557), - [anon_sym_assert] = ACTIONS(4557), - [anon_sym_defer] = ACTIONS(4557), - [anon_sym_goto] = ACTIONS(4557), - [anon_sym_break] = ACTIONS(4557), - [anon_sym_continue] = ACTIONS(4557), - [anon_sym_return] = ACTIONS(4557), - [anon_sym_DOLLARfor] = ACTIONS(4557), - [anon_sym_for] = ACTIONS(4557), - [anon_sym_POUND] = ACTIONS(4555), - [anon_sym_asm] = ACTIONS(4557), - [anon_sym_AT_LBRACK] = ACTIONS(4555), - [sym___double_quote] = ACTIONS(4555), - [sym___single_quote] = ACTIONS(4555), - [sym___c_double_quote] = ACTIONS(4555), - [sym___c_single_quote] = ACTIONS(4555), - [sym___r_double_quote] = ACTIONS(4555), - [sym___r_single_quote] = ACTIONS(4555), - }, - [1583] = { - [sym_line_comment] = STATE(1583), - [sym_block_comment] = STATE(1583), - [ts_builtin_sym_end] = ACTIONS(4559), - [sym_identifier] = ACTIONS(4561), - [anon_sym_SLASH_SLASH] = ACTIONS(3), - [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_import] = ACTIONS(4561), - [anon_sym_DOT] = ACTIONS(4561), - [anon_sym_LBRACE] = ACTIONS(4559), - [anon_sym_const] = ACTIONS(4561), - [anon_sym_LPAREN] = ACTIONS(4559), - [anon_sym___global] = ACTIONS(4561), - [anon_sym_type] = ACTIONS(4561), - [anon_sym_fn] = ACTIONS(4561), - [anon_sym_PLUS] = ACTIONS(4559), - [anon_sym_DASH] = ACTIONS(4559), - [anon_sym_STAR] = ACTIONS(4559), - [anon_sym_struct] = ACTIONS(4561), - [anon_sym_union] = ACTIONS(4561), - [anon_sym_pub] = ACTIONS(4561), - [anon_sym_mut] = ACTIONS(4561), - [anon_sym_enum] = ACTIONS(4561), - [anon_sym_interface] = ACTIONS(4561), - [anon_sym_QMARK] = ACTIONS(4559), - [anon_sym_BANG] = ACTIONS(4559), - [anon_sym_go] = ACTIONS(4561), - [anon_sym_spawn] = ACTIONS(4561), - [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(4561), - [sym_true] = ACTIONS(4561), - [sym_false] = ACTIONS(4561), - [sym_nil] = ACTIONS(4561), - [anon_sym_if] = ACTIONS(4561), - [anon_sym_DOLLARif] = ACTIONS(4561), - [anon_sym_match] = ACTIONS(4561), - [anon_sym_select] = ACTIONS(4561), - [anon_sym_lock] = ACTIONS(4561), - [anon_sym_rlock] = ACTIONS(4561), - [anon_sym_unsafe] = ACTIONS(4561), - [anon_sym_sql] = ACTIONS(4561), - [sym_int_literal] = ACTIONS(4561), [sym_float_literal] = ACTIONS(4559), [sym_rune_literal] = ACTIONS(4559), - [sym_pseudo_compile_time_identifier] = ACTIONS(4561), - [anon_sym_shared] = ACTIONS(4561), + [sym_pseudo_compile_time_identifier] = ACTIONS(4557), + [anon_sym_shared] = ACTIONS(4557), [anon_sym_map_LBRACK] = ACTIONS(4559), - [anon_sym_chan] = ACTIONS(4561), - [anon_sym_thread] = ACTIONS(4561), - [anon_sym_atomic] = ACTIONS(4561), - [anon_sym_assert] = ACTIONS(4561), - [anon_sym_defer] = ACTIONS(4561), - [anon_sym_goto] = ACTIONS(4561), - [anon_sym_break] = ACTIONS(4561), - [anon_sym_continue] = ACTIONS(4561), - [anon_sym_return] = ACTIONS(4561), - [anon_sym_DOLLARfor] = ACTIONS(4561), - [anon_sym_for] = ACTIONS(4561), - [anon_sym_POUND] = ACTIONS(4559), - [anon_sym_asm] = ACTIONS(4561), - [anon_sym_AT_LBRACK] = ACTIONS(4559), + [anon_sym_chan] = ACTIONS(4557), + [anon_sym_thread] = ACTIONS(4557), + [anon_sym_atomic] = ACTIONS(4557), [sym___double_quote] = ACTIONS(4559), [sym___single_quote] = ACTIONS(4559), [sym___c_double_quote] = ACTIONS(4559), @@ -187016,155 +186931,155 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym___r_double_quote] = ACTIONS(4559), [sym___r_single_quote] = ACTIONS(4559), }, - [1584] = { - [sym_line_comment] = STATE(1584), - [sym_block_comment] = STATE(1584), - [ts_builtin_sym_end] = ACTIONS(4563), - [sym_identifier] = ACTIONS(4565), + [1582] = { + [sym_line_comment] = STATE(1582), + [sym_block_comment] = STATE(1582), + [ts_builtin_sym_end] = ACTIONS(4561), + [sym_identifier] = ACTIONS(4563), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_import] = ACTIONS(4565), - [anon_sym_DOT] = ACTIONS(4565), - [anon_sym_LBRACE] = ACTIONS(4563), - [anon_sym_const] = ACTIONS(4565), - [anon_sym_LPAREN] = ACTIONS(4563), - [anon_sym___global] = ACTIONS(4565), - [anon_sym_type] = ACTIONS(4565), - [anon_sym_fn] = ACTIONS(4565), - [anon_sym_PLUS] = ACTIONS(4563), - [anon_sym_DASH] = ACTIONS(4563), - [anon_sym_STAR] = ACTIONS(4563), - [anon_sym_struct] = ACTIONS(4565), - [anon_sym_union] = ACTIONS(4565), - [anon_sym_pub] = ACTIONS(4565), - [anon_sym_mut] = ACTIONS(4565), - [anon_sym_enum] = ACTIONS(4565), - [anon_sym_interface] = ACTIONS(4565), - [anon_sym_QMARK] = ACTIONS(4563), - [anon_sym_BANG] = ACTIONS(4563), - [anon_sym_go] = ACTIONS(4565), - [anon_sym_spawn] = ACTIONS(4565), - [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(4565), - [sym_true] = ACTIONS(4565), - [sym_false] = ACTIONS(4565), - [sym_nil] = ACTIONS(4565), - [anon_sym_if] = ACTIONS(4565), - [anon_sym_DOLLARif] = ACTIONS(4565), - [anon_sym_match] = ACTIONS(4565), - [anon_sym_select] = ACTIONS(4565), - [anon_sym_lock] = ACTIONS(4565), - [anon_sym_rlock] = ACTIONS(4565), - [anon_sym_unsafe] = ACTIONS(4565), - [anon_sym_sql] = ACTIONS(4565), - [sym_int_literal] = ACTIONS(4565), - [sym_float_literal] = ACTIONS(4563), - [sym_rune_literal] = ACTIONS(4563), - [sym_pseudo_compile_time_identifier] = ACTIONS(4565), - [anon_sym_shared] = ACTIONS(4565), - [anon_sym_map_LBRACK] = ACTIONS(4563), - [anon_sym_chan] = ACTIONS(4565), - [anon_sym_thread] = ACTIONS(4565), - [anon_sym_atomic] = ACTIONS(4565), - [anon_sym_assert] = ACTIONS(4565), - [anon_sym_defer] = ACTIONS(4565), - [anon_sym_goto] = ACTIONS(4565), - [anon_sym_break] = ACTIONS(4565), - [anon_sym_continue] = ACTIONS(4565), - [anon_sym_return] = ACTIONS(4565), - [anon_sym_DOLLARfor] = ACTIONS(4565), - [anon_sym_for] = ACTIONS(4565), - [anon_sym_POUND] = ACTIONS(4563), - [anon_sym_asm] = ACTIONS(4565), - [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), + [anon_sym_import] = ACTIONS(4563), + [anon_sym_DOT] = ACTIONS(4563), + [anon_sym_LBRACE] = ACTIONS(4561), + [anon_sym_const] = ACTIONS(4563), + [anon_sym_LPAREN] = ACTIONS(4561), + [anon_sym___global] = ACTIONS(4563), + [anon_sym_type] = ACTIONS(4563), + [anon_sym_fn] = ACTIONS(4563), + [anon_sym_PLUS] = ACTIONS(4561), + [anon_sym_DASH] = ACTIONS(4561), + [anon_sym_STAR] = ACTIONS(4561), + [anon_sym_struct] = ACTIONS(4563), + [anon_sym_union] = ACTIONS(4563), + [anon_sym_pub] = ACTIONS(4563), + [anon_sym_mut] = ACTIONS(4563), + [anon_sym_enum] = ACTIONS(4563), + [anon_sym_interface] = ACTIONS(4563), + [anon_sym_QMARK] = ACTIONS(4561), + [anon_sym_BANG] = ACTIONS(4561), + [anon_sym_go] = ACTIONS(4563), + [anon_sym_spawn] = ACTIONS(4563), + [anon_sym_json_DOTdecode] = ACTIONS(4561), + [anon_sym_LBRACK2] = ACTIONS(4561), + [anon_sym_TILDE] = ACTIONS(4561), + [anon_sym_CARET] = ACTIONS(4561), + [anon_sym_AMP] = ACTIONS(4561), + [anon_sym_LT_DASH] = ACTIONS(4561), + [sym_none] = ACTIONS(4563), + [sym_true] = ACTIONS(4563), + [sym_false] = ACTIONS(4563), + [sym_nil] = ACTIONS(4563), + [anon_sym_if] = ACTIONS(4563), + [anon_sym_DOLLARif] = ACTIONS(4563), + [anon_sym_match] = ACTIONS(4563), + [anon_sym_select] = ACTIONS(4563), + [anon_sym_lock] = ACTIONS(4563), + [anon_sym_rlock] = ACTIONS(4563), + [anon_sym_unsafe] = ACTIONS(4563), + [anon_sym_sql] = ACTIONS(4563), + [sym_int_literal] = ACTIONS(4563), + [sym_float_literal] = ACTIONS(4561), + [sym_rune_literal] = ACTIONS(4561), + [sym_pseudo_compile_time_identifier] = ACTIONS(4563), + [anon_sym_shared] = ACTIONS(4563), + [anon_sym_map_LBRACK] = ACTIONS(4561), + [anon_sym_chan] = ACTIONS(4563), + [anon_sym_thread] = ACTIONS(4563), + [anon_sym_atomic] = ACTIONS(4563), + [anon_sym_assert] = ACTIONS(4563), + [anon_sym_defer] = ACTIONS(4563), + [anon_sym_goto] = ACTIONS(4563), + [anon_sym_break] = ACTIONS(4563), + [anon_sym_continue] = ACTIONS(4563), + [anon_sym_return] = ACTIONS(4563), + [anon_sym_DOLLARfor] = ACTIONS(4563), + [anon_sym_for] = ACTIONS(4563), + [anon_sym_POUND] = ACTIONS(4561), + [anon_sym_asm] = ACTIONS(4563), + [anon_sym_AT_LBRACK] = ACTIONS(4561), + [sym___double_quote] = ACTIONS(4561), + [sym___single_quote] = ACTIONS(4561), + [sym___c_double_quote] = ACTIONS(4561), + [sym___c_single_quote] = ACTIONS(4561), + [sym___r_double_quote] = ACTIONS(4561), + [sym___r_single_quote] = ACTIONS(4561), }, - [1585] = { - [sym_line_comment] = STATE(1585), - [sym_block_comment] = STATE(1585), - [sym_reference_expression] = STATE(4495), - [sym_type_reference_expression] = STATE(3541), - [sym_plain_type] = STATE(2386), - [sym__plain_type_without_special] = STATE(2302), - [sym_anon_struct_type] = STATE(2303), - [sym_multi_return_type] = STATE(2302), - [sym_result_type] = STATE(2302), - [sym_option_type] = STATE(2302), - [sym_qualified_type] = STATE(3541), - [sym_fixed_array_type] = STATE(2303), - [sym_array_type] = STATE(2303), - [sym_pointer_type] = STATE(2303), - [sym_wrong_pointer_type] = STATE(2303), - [sym_map_type] = STATE(2303), - [sym_channel_type] = STATE(2303), - [sym_shared_type] = STATE(2303), - [sym_thread_type] = STATE(2303), - [sym_atomic_type] = STATE(2303), - [sym_generic_type] = STATE(2303), - [sym_function_type] = STATE(2303), - [sym_identifier] = ACTIONS(597), + [1583] = { + [sym_line_comment] = STATE(1583), + [sym_block_comment] = STATE(1583), + [ts_builtin_sym_end] = ACTIONS(4565), + [sym_identifier] = ACTIONS(4567), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_SEMI] = ACTIONS(595), - [anon_sym_DOT] = ACTIONS(595), - [anon_sym_as] = ACTIONS(599), - [anon_sym_COMMA] = ACTIONS(595), - [anon_sym_LPAREN] = ACTIONS(3586), - [anon_sym_PIPE] = ACTIONS(599), - [anon_sym_fn] = ACTIONS(603), - [anon_sym_PLUS] = ACTIONS(599), - [anon_sym_DASH] = ACTIONS(599), - [anon_sym_STAR] = ACTIONS(3588), - [anon_sym_SLASH] = ACTIONS(599), - [anon_sym_PERCENT] = ACTIONS(595), - [anon_sym_LT] = ACTIONS(599), - [anon_sym_GT] = ACTIONS(599), - [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(607), - [anon_sym_PLUS_PLUS] = ACTIONS(595), - [anon_sym_DASH_DASH] = ACTIONS(595), - [anon_sym_QMARK] = ACTIONS(515), - [anon_sym_BANG] = ACTIONS(4567), - [anon_sym_LBRACK2] = ACTIONS(611), - [anon_sym_CARET] = ACTIONS(595), - [anon_sym_AMP] = ACTIONS(613), - [anon_sym_LT_LT] = ACTIONS(595), - [anon_sym_GT_GT] = ACTIONS(599), - [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(599), - [anon_sym_QMARK_DOT] = ACTIONS(595), - [anon_sym_POUND_LBRACK] = ACTIONS(595), - [anon_sym_is] = ACTIONS(599), - [anon_sym_BANGis] = ACTIONS(595), - [anon_sym_in] = ACTIONS(599), - [anon_sym_BANGin] = ACTIONS(595), - [anon_sym_COLON_EQ] = ACTIONS(595), - [anon_sym_shared] = ACTIONS(615), - [anon_sym_map_LBRACK] = ACTIONS(85), - [anon_sym_chan] = ACTIONS(87), - [anon_sym_thread] = ACTIONS(89), - [anon_sym_atomic] = ACTIONS(91), + [anon_sym_import] = ACTIONS(4567), + [anon_sym_DOT] = ACTIONS(4567), + [anon_sym_LBRACE] = ACTIONS(4565), + [anon_sym_const] = ACTIONS(4567), + [anon_sym_LPAREN] = ACTIONS(4565), + [anon_sym___global] = ACTIONS(4567), + [anon_sym_type] = ACTIONS(4567), + [anon_sym_fn] = ACTIONS(4567), + [anon_sym_PLUS] = ACTIONS(4565), + [anon_sym_DASH] = ACTIONS(4565), + [anon_sym_STAR] = ACTIONS(4565), + [anon_sym_struct] = ACTIONS(4567), + [anon_sym_union] = ACTIONS(4567), + [anon_sym_pub] = ACTIONS(4567), + [anon_sym_mut] = ACTIONS(4567), + [anon_sym_enum] = ACTIONS(4567), + [anon_sym_interface] = ACTIONS(4567), + [anon_sym_QMARK] = ACTIONS(4565), + [anon_sym_BANG] = ACTIONS(4565), + [anon_sym_go] = ACTIONS(4567), + [anon_sym_spawn] = ACTIONS(4567), + [anon_sym_json_DOTdecode] = ACTIONS(4565), + [anon_sym_LBRACK2] = ACTIONS(4565), + [anon_sym_TILDE] = ACTIONS(4565), + [anon_sym_CARET] = ACTIONS(4565), + [anon_sym_AMP] = ACTIONS(4565), + [anon_sym_LT_DASH] = ACTIONS(4565), + [sym_none] = ACTIONS(4567), + [sym_true] = ACTIONS(4567), + [sym_false] = ACTIONS(4567), + [sym_nil] = ACTIONS(4567), + [anon_sym_if] = ACTIONS(4567), + [anon_sym_DOLLARif] = ACTIONS(4567), + [anon_sym_match] = ACTIONS(4567), + [anon_sym_select] = ACTIONS(4567), + [anon_sym_lock] = ACTIONS(4567), + [anon_sym_rlock] = ACTIONS(4567), + [anon_sym_unsafe] = ACTIONS(4567), + [anon_sym_sql] = ACTIONS(4567), + [sym_int_literal] = ACTIONS(4567), + [sym_float_literal] = ACTIONS(4565), + [sym_rune_literal] = ACTIONS(4565), + [sym_pseudo_compile_time_identifier] = ACTIONS(4567), + [anon_sym_shared] = ACTIONS(4567), + [anon_sym_map_LBRACK] = ACTIONS(4565), + [anon_sym_chan] = ACTIONS(4567), + [anon_sym_thread] = ACTIONS(4567), + [anon_sym_atomic] = ACTIONS(4567), + [anon_sym_assert] = ACTIONS(4567), + [anon_sym_defer] = ACTIONS(4567), + [anon_sym_goto] = ACTIONS(4567), + [anon_sym_break] = ACTIONS(4567), + [anon_sym_continue] = ACTIONS(4567), + [anon_sym_return] = ACTIONS(4567), + [anon_sym_DOLLARfor] = ACTIONS(4567), + [anon_sym_for] = ACTIONS(4567), + [anon_sym_POUND] = ACTIONS(4565), + [anon_sym_asm] = ACTIONS(4567), + [anon_sym_AT_LBRACK] = ACTIONS(4565), + [sym___double_quote] = ACTIONS(4565), + [sym___single_quote] = ACTIONS(4565), + [sym___c_double_quote] = ACTIONS(4565), + [sym___c_single_quote] = ACTIONS(4565), + [sym___r_double_quote] = ACTIONS(4565), + [sym___r_single_quote] = ACTIONS(4565), }, - [1586] = { - [sym_line_comment] = STATE(1586), - [sym_block_comment] = STATE(1586), + [1584] = { + [sym_line_comment] = STATE(1584), + [sym_block_comment] = STATE(1584), [ts_builtin_sym_end] = ACTIONS(4569), [sym_identifier] = ACTIONS(4571), [anon_sym_SLASH_SLASH] = ACTIONS(3), @@ -187235,1590 +187150,1980 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym___r_double_quote] = ACTIONS(4569), [sym___r_single_quote] = ACTIONS(4569), }, + [1585] = { + [sym_line_comment] = STATE(1585), + [sym_block_comment] = STATE(1585), + [sym_reference_expression] = STATE(4498), + [sym_type_reference_expression] = STATE(3460), + [sym_plain_type] = STATE(2320), + [sym__plain_type_without_special] = STATE(2360), + [sym_anon_struct_type] = STATE(2362), + [sym_multi_return_type] = STATE(2360), + [sym_result_type] = STATE(2360), + [sym_option_type] = STATE(2360), + [sym_qualified_type] = STATE(3460), + [sym_fixed_array_type] = STATE(2362), + [sym_array_type] = STATE(2362), + [sym_pointer_type] = STATE(2362), + [sym_wrong_pointer_type] = STATE(2362), + [sym_map_type] = STATE(2362), + [sym_channel_type] = STATE(2362), + [sym_shared_type] = STATE(2362), + [sym_thread_type] = STATE(2362), + [sym_atomic_type] = STATE(2362), + [sym_generic_type] = STATE(2362), + [sym_function_type] = STATE(2362), + [sym_identifier] = ACTIONS(565), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_SEMI] = ACTIONS(563), + [anon_sym_DOT] = ACTIONS(563), + [anon_sym_as] = ACTIONS(567), + [anon_sym_COMMA] = ACTIONS(563), + [anon_sym_LPAREN] = ACTIONS(3564), + [anon_sym_PIPE] = ACTIONS(567), + [anon_sym_fn] = ACTIONS(571), + [anon_sym_PLUS] = ACTIONS(567), + [anon_sym_DASH] = ACTIONS(567), + [anon_sym_STAR] = ACTIONS(3566), + [anon_sym_SLASH] = ACTIONS(567), + [anon_sym_PERCENT] = ACTIONS(563), + [anon_sym_LT] = ACTIONS(567), + [anon_sym_GT] = ACTIONS(567), + [anon_sym_EQ_EQ] = ACTIONS(563), + [anon_sym_BANG_EQ] = ACTIONS(563), + [anon_sym_LT_EQ] = ACTIONS(563), + [anon_sym_GT_EQ] = ACTIONS(563), + [anon_sym_LBRACK] = ACTIONS(563), + [anon_sym_struct] = ACTIONS(575), + [anon_sym_PLUS_PLUS] = ACTIONS(563), + [anon_sym_DASH_DASH] = ACTIONS(563), + [anon_sym_QMARK] = ACTIONS(515), + [anon_sym_BANG] = ACTIONS(4573), + [anon_sym_LBRACK2] = ACTIONS(579), + [anon_sym_CARET] = ACTIONS(563), + [anon_sym_AMP] = ACTIONS(581), + [anon_sym_LT_LT] = ACTIONS(563), + [anon_sym_GT_GT] = ACTIONS(567), + [anon_sym_GT_GT_GT] = ACTIONS(563), + [anon_sym_AMP_CARET] = ACTIONS(563), + [anon_sym_AMP_AMP] = ACTIONS(563), + [anon_sym_PIPE_PIPE] = ACTIONS(563), + [anon_sym_or] = ACTIONS(567), + [anon_sym_QMARK_DOT] = ACTIONS(563), + [anon_sym_POUND_LBRACK] = ACTIONS(563), + [anon_sym_is] = ACTIONS(567), + [anon_sym_BANGis] = ACTIONS(563), + [anon_sym_in] = ACTIONS(567), + [anon_sym_BANGin] = ACTIONS(563), + [anon_sym_COLON_EQ] = ACTIONS(563), + [anon_sym_shared] = ACTIONS(583), + [anon_sym_map_LBRACK] = ACTIONS(85), + [anon_sym_chan] = ACTIONS(87), + [anon_sym_thread] = ACTIONS(89), + [anon_sym_atomic] = ACTIONS(91), + }, + [1586] = { + [sym_line_comment] = STATE(1586), + [sym_block_comment] = STATE(1586), + [ts_builtin_sym_end] = ACTIONS(4575), + [sym_identifier] = ACTIONS(4577), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_import] = ACTIONS(4577), + [anon_sym_DOT] = ACTIONS(4577), + [anon_sym_LBRACE] = ACTIONS(4575), + [anon_sym_const] = ACTIONS(4577), + [anon_sym_LPAREN] = ACTIONS(4575), + [anon_sym___global] = ACTIONS(4577), + [anon_sym_type] = ACTIONS(4577), + [anon_sym_fn] = ACTIONS(4577), + [anon_sym_PLUS] = ACTIONS(4575), + [anon_sym_DASH] = ACTIONS(4575), + [anon_sym_STAR] = ACTIONS(4575), + [anon_sym_struct] = ACTIONS(4577), + [anon_sym_union] = ACTIONS(4577), + [anon_sym_pub] = ACTIONS(4577), + [anon_sym_mut] = ACTIONS(4577), + [anon_sym_enum] = ACTIONS(4577), + [anon_sym_interface] = ACTIONS(4577), + [anon_sym_QMARK] = ACTIONS(4575), + [anon_sym_BANG] = ACTIONS(4575), + [anon_sym_go] = ACTIONS(4577), + [anon_sym_spawn] = ACTIONS(4577), + [anon_sym_json_DOTdecode] = ACTIONS(4575), + [anon_sym_LBRACK2] = ACTIONS(4575), + [anon_sym_TILDE] = ACTIONS(4575), + [anon_sym_CARET] = ACTIONS(4575), + [anon_sym_AMP] = ACTIONS(4575), + [anon_sym_LT_DASH] = ACTIONS(4575), + [sym_none] = ACTIONS(4577), + [sym_true] = ACTIONS(4577), + [sym_false] = ACTIONS(4577), + [sym_nil] = ACTIONS(4577), + [anon_sym_if] = ACTIONS(4577), + [anon_sym_DOLLARif] = ACTIONS(4577), + [anon_sym_match] = ACTIONS(4577), + [anon_sym_select] = ACTIONS(4577), + [anon_sym_lock] = ACTIONS(4577), + [anon_sym_rlock] = ACTIONS(4577), + [anon_sym_unsafe] = ACTIONS(4577), + [anon_sym_sql] = ACTIONS(4577), + [sym_int_literal] = ACTIONS(4577), + [sym_float_literal] = ACTIONS(4575), + [sym_rune_literal] = ACTIONS(4575), + [sym_pseudo_compile_time_identifier] = ACTIONS(4577), + [anon_sym_shared] = ACTIONS(4577), + [anon_sym_map_LBRACK] = ACTIONS(4575), + [anon_sym_chan] = ACTIONS(4577), + [anon_sym_thread] = ACTIONS(4577), + [anon_sym_atomic] = ACTIONS(4577), + [anon_sym_assert] = ACTIONS(4577), + [anon_sym_defer] = ACTIONS(4577), + [anon_sym_goto] = ACTIONS(4577), + [anon_sym_break] = ACTIONS(4577), + [anon_sym_continue] = ACTIONS(4577), + [anon_sym_return] = ACTIONS(4577), + [anon_sym_DOLLARfor] = ACTIONS(4577), + [anon_sym_for] = ACTIONS(4577), + [anon_sym_POUND] = ACTIONS(4575), + [anon_sym_asm] = ACTIONS(4577), + [anon_sym_AT_LBRACK] = ACTIONS(4575), + [sym___double_quote] = ACTIONS(4575), + [sym___single_quote] = ACTIONS(4575), + [sym___c_double_quote] = ACTIONS(4575), + [sym___c_single_quote] = ACTIONS(4575), + [sym___r_double_quote] = ACTIONS(4575), + [sym___r_single_quote] = ACTIONS(4575), + }, [1587] = { [sym_line_comment] = STATE(1587), [sym_block_comment] = STATE(1587), - [ts_builtin_sym_end] = ACTIONS(133), - [sym_identifier] = ACTIONS(4573), + [sym_reference_expression] = STATE(4498), + [sym_type_reference_expression] = STATE(3460), + [sym_plain_type] = STATE(2320), + [sym__plain_type_without_special] = STATE(2360), + [sym_anon_struct_type] = STATE(2362), + [sym_multi_return_type] = STATE(2360), + [sym_result_type] = STATE(2360), + [sym_option_type] = STATE(2360), + [sym_qualified_type] = STATE(3460), + [sym_fixed_array_type] = STATE(2362), + [sym_array_type] = STATE(2362), + [sym_pointer_type] = STATE(2362), + [sym_wrong_pointer_type] = STATE(2362), + [sym_map_type] = STATE(2362), + [sym_channel_type] = STATE(2362), + [sym_shared_type] = STATE(2362), + [sym_thread_type] = STATE(2362), + [sym_atomic_type] = STATE(2362), + [sym_generic_type] = STATE(2362), + [sym_function_type] = STATE(2362), + [sym_identifier] = ACTIONS(565), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(4573), - [anon_sym_LBRACE] = ACTIONS(133), - [anon_sym_const] = ACTIONS(4573), - [anon_sym_LPAREN] = ACTIONS(133), - [anon_sym___global] = ACTIONS(4573), - [anon_sym_type] = ACTIONS(4573), - [anon_sym_fn] = ACTIONS(4573), - [anon_sym_PLUS] = ACTIONS(133), - [anon_sym_DASH] = ACTIONS(133), - [anon_sym_STAR] = ACTIONS(133), - [anon_sym_struct] = ACTIONS(4573), - [anon_sym_union] = ACTIONS(4573), - [anon_sym_pub] = ACTIONS(4573), - [anon_sym_mut] = ACTIONS(4573), - [anon_sym_enum] = ACTIONS(4573), - [anon_sym_interface] = ACTIONS(4573), - [anon_sym_QMARK] = ACTIONS(133), - [anon_sym_BANG] = ACTIONS(133), - [anon_sym_go] = ACTIONS(4573), - [anon_sym_spawn] = ACTIONS(4573), - [anon_sym_json_DOTdecode] = ACTIONS(133), - [anon_sym_LBRACK2] = ACTIONS(133), - [anon_sym_TILDE] = ACTIONS(133), - [anon_sym_CARET] = ACTIONS(133), - [anon_sym_AMP] = ACTIONS(133), - [anon_sym_LT_DASH] = ACTIONS(133), - [sym_none] = ACTIONS(4573), - [sym_true] = ACTIONS(4573), - [sym_false] = ACTIONS(4573), - [sym_nil] = ACTIONS(4573), - [anon_sym_if] = ACTIONS(4573), - [anon_sym_DOLLARif] = ACTIONS(4573), - [anon_sym_match] = ACTIONS(4573), - [anon_sym_select] = ACTIONS(4573), - [anon_sym_lock] = ACTIONS(4573), - [anon_sym_rlock] = ACTIONS(4573), - [anon_sym_unsafe] = ACTIONS(4573), - [anon_sym_sql] = ACTIONS(4573), - [sym_int_literal] = ACTIONS(4573), - [sym_float_literal] = ACTIONS(133), - [sym_rune_literal] = ACTIONS(133), - [sym_pseudo_compile_time_identifier] = ACTIONS(4573), - [anon_sym_shared] = ACTIONS(4573), - [anon_sym_map_LBRACK] = ACTIONS(133), - [anon_sym_chan] = ACTIONS(4573), - [anon_sym_thread] = ACTIONS(4573), - [anon_sym_atomic] = ACTIONS(4573), - [anon_sym_assert] = ACTIONS(4573), - [anon_sym_defer] = ACTIONS(4573), - [anon_sym_goto] = ACTIONS(4573), - [anon_sym_break] = ACTIONS(4573), - [anon_sym_continue] = ACTIONS(4573), - [anon_sym_return] = ACTIONS(4573), - [anon_sym_DOLLARfor] = ACTIONS(4573), - [anon_sym_for] = ACTIONS(4573), - [anon_sym_POUND] = ACTIONS(133), - [anon_sym_asm] = ACTIONS(4573), - [anon_sym_AT_LBRACK] = ACTIONS(133), - [sym___double_quote] = ACTIONS(133), - [sym___single_quote] = ACTIONS(133), - [sym___c_double_quote] = ACTIONS(133), - [sym___c_single_quote] = ACTIONS(133), - [sym___r_double_quote] = ACTIONS(133), - [sym___r_single_quote] = ACTIONS(133), + [anon_sym_DOT] = ACTIONS(563), + [anon_sym_as] = ACTIONS(567), + [anon_sym_LBRACE] = ACTIONS(563), + [anon_sym_COMMA] = ACTIONS(563), + [anon_sym_LPAREN] = ACTIONS(3564), + [anon_sym_PIPE] = ACTIONS(567), + [anon_sym_fn] = ACTIONS(571), + [anon_sym_PLUS] = ACTIONS(567), + [anon_sym_DASH] = ACTIONS(567), + [anon_sym_STAR] = ACTIONS(3566), + [anon_sym_SLASH] = ACTIONS(567), + [anon_sym_PERCENT] = ACTIONS(563), + [anon_sym_LT] = ACTIONS(567), + [anon_sym_GT] = ACTIONS(567), + [anon_sym_EQ_EQ] = ACTIONS(563), + [anon_sym_BANG_EQ] = ACTIONS(563), + [anon_sym_LT_EQ] = ACTIONS(563), + [anon_sym_GT_EQ] = ACTIONS(563), + [anon_sym_LBRACK] = ACTIONS(563), + [anon_sym_struct] = ACTIONS(575), + [anon_sym_PLUS_PLUS] = ACTIONS(563), + [anon_sym_DASH_DASH] = ACTIONS(563), + [anon_sym_QMARK] = ACTIONS(515), + [anon_sym_BANG] = ACTIONS(4555), + [anon_sym_LBRACK2] = ACTIONS(579), + [anon_sym_CARET] = ACTIONS(563), + [anon_sym_AMP] = ACTIONS(581), + [anon_sym_LT_LT] = ACTIONS(563), + [anon_sym_GT_GT] = ACTIONS(567), + [anon_sym_GT_GT_GT] = ACTIONS(563), + [anon_sym_AMP_CARET] = ACTIONS(563), + [anon_sym_AMP_AMP] = ACTIONS(563), + [anon_sym_PIPE_PIPE] = ACTIONS(563), + [anon_sym_or] = ACTIONS(567), + [anon_sym_QMARK_DOT] = ACTIONS(563), + [anon_sym_POUND_LBRACK] = ACTIONS(563), + [anon_sym_is] = ACTIONS(567), + [anon_sym_BANGis] = ACTIONS(563), + [anon_sym_in] = ACTIONS(567), + [anon_sym_BANGin] = ACTIONS(563), + [anon_sym_COLON_EQ] = ACTIONS(563), + [anon_sym_shared] = ACTIONS(583), + [anon_sym_map_LBRACK] = ACTIONS(85), + [anon_sym_chan] = ACTIONS(87), + [anon_sym_thread] = ACTIONS(89), + [anon_sym_atomic] = ACTIONS(91), }, [1588] = { [sym_line_comment] = STATE(1588), [sym_block_comment] = STATE(1588), - [sym_identifier] = ACTIONS(2912), - [anon_sym_LF] = ACTIONS(2912), - [anon_sym_CR] = ACTIONS(2912), - [anon_sym_CR_LF] = ACTIONS(2912), - [anon_sym_SLASH_SLASH] = ACTIONS(497), - [anon_sym_SLASH_STAR] = ACTIONS(499), - [anon_sym_DOT] = ACTIONS(2912), - [anon_sym_as] = ACTIONS(2912), - [anon_sym_COMMA] = ACTIONS(2912), - [anon_sym_RBRACE] = ACTIONS(2912), - [anon_sym_LPAREN] = ACTIONS(2912), - [anon_sym_EQ] = ACTIONS(2912), - [anon_sym_PIPE] = ACTIONS(2912), - [anon_sym_fn] = ACTIONS(2912), - [anon_sym_PLUS] = ACTIONS(2912), - [anon_sym_DASH] = ACTIONS(2912), - [anon_sym_STAR] = ACTIONS(2912), - [anon_sym_SLASH] = ACTIONS(2912), - [anon_sym_PERCENT] = ACTIONS(2912), - [anon_sym_LT] = ACTIONS(2912), - [anon_sym_GT] = ACTIONS(2912), - [anon_sym_EQ_EQ] = ACTIONS(2912), - [anon_sym_BANG_EQ] = ACTIONS(2912), - [anon_sym_LT_EQ] = ACTIONS(2912), - [anon_sym_GT_EQ] = ACTIONS(2912), - [anon_sym_LBRACK] = ACTIONS(2910), - [anon_sym_struct] = ACTIONS(2912), - [anon_sym_COLON] = ACTIONS(2912), - [anon_sym_PLUS_PLUS] = ACTIONS(2912), - [anon_sym_DASH_DASH] = ACTIONS(2912), - [anon_sym_QMARK] = ACTIONS(2912), - [anon_sym_BANG] = ACTIONS(2912), - [anon_sym_LBRACK2] = ACTIONS(2912), - [anon_sym_CARET] = ACTIONS(2912), - [anon_sym_AMP] = ACTIONS(2912), - [anon_sym_LT_DASH] = ACTIONS(2912), - [anon_sym_LT_LT] = ACTIONS(2912), - [anon_sym_GT_GT] = ACTIONS(2912), - [anon_sym_GT_GT_GT] = ACTIONS(2912), - [anon_sym_AMP_CARET] = ACTIONS(2912), - [anon_sym_AMP_AMP] = ACTIONS(2912), - [anon_sym_PIPE_PIPE] = ACTIONS(2912), - [anon_sym_or] = ACTIONS(2912), - [anon_sym_QMARK_DOT] = ACTIONS(2912), - [anon_sym_POUND_LBRACK] = ACTIONS(2912), - [anon_sym_is] = ACTIONS(2912), - [anon_sym_BANGis] = ACTIONS(2912), - [anon_sym_in] = ACTIONS(2912), - [anon_sym_BANGin] = ACTIONS(2912), - [anon_sym_STAR_EQ] = ACTIONS(2912), - [anon_sym_SLASH_EQ] = ACTIONS(2912), - [anon_sym_PERCENT_EQ] = ACTIONS(2912), - [anon_sym_LT_LT_EQ] = ACTIONS(2912), - [anon_sym_GT_GT_EQ] = ACTIONS(2912), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(2912), - [anon_sym_AMP_EQ] = ACTIONS(2912), - [anon_sym_AMP_CARET_EQ] = ACTIONS(2912), - [anon_sym_PLUS_EQ] = ACTIONS(2912), - [anon_sym_DASH_EQ] = ACTIONS(2912), - [anon_sym_PIPE_EQ] = ACTIONS(2912), - [anon_sym_CARET_EQ] = ACTIONS(2912), - [anon_sym_COLON_EQ] = ACTIONS(2912), - [anon_sym_shared] = ACTIONS(2912), - [anon_sym_map_LBRACK] = ACTIONS(2912), - [anon_sym_chan] = ACTIONS(2912), - [anon_sym_thread] = ACTIONS(2912), - [anon_sym_atomic] = ACTIONS(2912), + [ts_builtin_sym_end] = ACTIONS(135), + [sym_identifier] = ACTIONS(4579), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(4579), + [anon_sym_LBRACE] = ACTIONS(135), + [anon_sym_const] = ACTIONS(4579), + [anon_sym_LPAREN] = ACTIONS(135), + [anon_sym___global] = ACTIONS(4579), + [anon_sym_type] = ACTIONS(4579), + [anon_sym_fn] = ACTIONS(4579), + [anon_sym_PLUS] = ACTIONS(135), + [anon_sym_DASH] = ACTIONS(135), + [anon_sym_STAR] = ACTIONS(135), + [anon_sym_struct] = ACTIONS(4579), + [anon_sym_union] = ACTIONS(4579), + [anon_sym_pub] = ACTIONS(4579), + [anon_sym_mut] = ACTIONS(4579), + [anon_sym_enum] = ACTIONS(4579), + [anon_sym_interface] = ACTIONS(4579), + [anon_sym_QMARK] = ACTIONS(135), + [anon_sym_BANG] = ACTIONS(135), + [anon_sym_go] = ACTIONS(4579), + [anon_sym_spawn] = ACTIONS(4579), + [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(4579), + [sym_true] = ACTIONS(4579), + [sym_false] = ACTIONS(4579), + [sym_nil] = ACTIONS(4579), + [anon_sym_if] = ACTIONS(4579), + [anon_sym_DOLLARif] = ACTIONS(4579), + [anon_sym_match] = ACTIONS(4579), + [anon_sym_select] = ACTIONS(4579), + [anon_sym_lock] = ACTIONS(4579), + [anon_sym_rlock] = ACTIONS(4579), + [anon_sym_unsafe] = ACTIONS(4579), + [anon_sym_sql] = ACTIONS(4579), + [sym_int_literal] = ACTIONS(4579), + [sym_float_literal] = ACTIONS(135), + [sym_rune_literal] = ACTIONS(135), + [sym_pseudo_compile_time_identifier] = ACTIONS(4579), + [anon_sym_shared] = ACTIONS(4579), + [anon_sym_map_LBRACK] = ACTIONS(135), + [anon_sym_chan] = ACTIONS(4579), + [anon_sym_thread] = ACTIONS(4579), + [anon_sym_atomic] = ACTIONS(4579), + [anon_sym_assert] = ACTIONS(4579), + [anon_sym_defer] = ACTIONS(4579), + [anon_sym_goto] = ACTIONS(4579), + [anon_sym_break] = ACTIONS(4579), + [anon_sym_continue] = ACTIONS(4579), + [anon_sym_return] = ACTIONS(4579), + [anon_sym_DOLLARfor] = ACTIONS(4579), + [anon_sym_for] = ACTIONS(4579), + [anon_sym_POUND] = ACTIONS(135), + [anon_sym_asm] = ACTIONS(4579), + [anon_sym_AT_LBRACK] = ACTIONS(135), + [sym___double_quote] = ACTIONS(135), + [sym___single_quote] = ACTIONS(135), + [sym___c_double_quote] = ACTIONS(135), + [sym___c_single_quote] = ACTIONS(135), + [sym___r_double_quote] = ACTIONS(135), + [sym___r_single_quote] = ACTIONS(135), }, [1589] = { [sym_line_comment] = STATE(1589), [sym_block_comment] = STATE(1589), - [sym_identifier] = ACTIONS(2217), - [anon_sym_LF] = ACTIONS(2217), - [anon_sym_CR] = ACTIONS(2217), - [anon_sym_CR_LF] = ACTIONS(2217), + [sym_identifier] = ACTIONS(2870), + [anon_sym_LF] = ACTIONS(2870), + [anon_sym_CR] = ACTIONS(2870), + [anon_sym_CR_LF] = ACTIONS(2870), [anon_sym_SLASH_SLASH] = ACTIONS(497), [anon_sym_SLASH_STAR] = ACTIONS(499), - [anon_sym_DOT] = ACTIONS(2217), - [anon_sym_as] = ACTIONS(2217), - [anon_sym_COMMA] = ACTIONS(2217), - [anon_sym_RBRACE] = ACTIONS(2217), - [anon_sym_LPAREN] = ACTIONS(2217), - [anon_sym_EQ] = ACTIONS(2217), - [anon_sym_PIPE] = ACTIONS(2217), - [anon_sym_fn] = ACTIONS(2217), - [anon_sym_PLUS] = ACTIONS(2217), - [anon_sym_DASH] = ACTIONS(2217), - [anon_sym_STAR] = ACTIONS(2217), - [anon_sym_SLASH] = ACTIONS(2217), - [anon_sym_PERCENT] = ACTIONS(2217), - [anon_sym_LT] = ACTIONS(2217), - [anon_sym_GT] = ACTIONS(2217), - [anon_sym_EQ_EQ] = ACTIONS(2217), - [anon_sym_BANG_EQ] = ACTIONS(2217), - [anon_sym_LT_EQ] = ACTIONS(2217), - [anon_sym_GT_EQ] = ACTIONS(2217), - [anon_sym_LBRACK] = ACTIONS(2215), - [anon_sym_struct] = ACTIONS(2217), - [anon_sym_COLON] = ACTIONS(2217), - [anon_sym_PLUS_PLUS] = ACTIONS(2217), - [anon_sym_DASH_DASH] = ACTIONS(2217), - [anon_sym_QMARK] = ACTIONS(2217), - [anon_sym_BANG] = ACTIONS(2217), - [anon_sym_LBRACK2] = ACTIONS(2217), - [anon_sym_CARET] = ACTIONS(2217), - [anon_sym_AMP] = ACTIONS(2217), - [anon_sym_LT_DASH] = ACTIONS(2217), - [anon_sym_LT_LT] = ACTIONS(2217), - [anon_sym_GT_GT] = ACTIONS(2217), - [anon_sym_GT_GT_GT] = ACTIONS(2217), - [anon_sym_AMP_CARET] = ACTIONS(2217), - [anon_sym_AMP_AMP] = ACTIONS(2217), - [anon_sym_PIPE_PIPE] = ACTIONS(2217), - [anon_sym_or] = ACTIONS(2217), - [anon_sym_QMARK_DOT] = ACTIONS(2217), - [anon_sym_POUND_LBRACK] = ACTIONS(2217), - [anon_sym_is] = ACTIONS(2217), - [anon_sym_BANGis] = ACTIONS(2217), - [anon_sym_in] = ACTIONS(2217), - [anon_sym_BANGin] = ACTIONS(2217), - [anon_sym_STAR_EQ] = ACTIONS(2217), - [anon_sym_SLASH_EQ] = ACTIONS(2217), - [anon_sym_PERCENT_EQ] = ACTIONS(2217), - [anon_sym_LT_LT_EQ] = ACTIONS(2217), - [anon_sym_GT_GT_EQ] = ACTIONS(2217), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(2217), - [anon_sym_AMP_EQ] = ACTIONS(2217), - [anon_sym_AMP_CARET_EQ] = ACTIONS(2217), - [anon_sym_PLUS_EQ] = ACTIONS(2217), - [anon_sym_DASH_EQ] = ACTIONS(2217), - [anon_sym_PIPE_EQ] = ACTIONS(2217), - [anon_sym_CARET_EQ] = ACTIONS(2217), - [anon_sym_COLON_EQ] = ACTIONS(2217), - [anon_sym_shared] = ACTIONS(2217), - [anon_sym_map_LBRACK] = ACTIONS(2217), - [anon_sym_chan] = ACTIONS(2217), - [anon_sym_thread] = ACTIONS(2217), - [anon_sym_atomic] = ACTIONS(2217), + [anon_sym_DOT] = ACTIONS(2870), + [anon_sym_as] = ACTIONS(2870), + [anon_sym_COMMA] = ACTIONS(2870), + [anon_sym_RBRACE] = ACTIONS(2870), + [anon_sym_LPAREN] = ACTIONS(2870), + [anon_sym_EQ] = ACTIONS(2870), + [anon_sym_PIPE] = ACTIONS(2870), + [anon_sym_fn] = ACTIONS(2870), + [anon_sym_PLUS] = ACTIONS(2870), + [anon_sym_DASH] = ACTIONS(2870), + [anon_sym_STAR] = ACTIONS(2870), + [anon_sym_SLASH] = ACTIONS(2870), + [anon_sym_PERCENT] = ACTIONS(2870), + [anon_sym_LT] = ACTIONS(2870), + [anon_sym_GT] = ACTIONS(2870), + [anon_sym_EQ_EQ] = ACTIONS(2870), + [anon_sym_BANG_EQ] = ACTIONS(2870), + [anon_sym_LT_EQ] = ACTIONS(2870), + [anon_sym_GT_EQ] = ACTIONS(2870), + [anon_sym_LBRACK] = ACTIONS(2868), + [anon_sym_struct] = ACTIONS(2870), + [anon_sym_COLON] = ACTIONS(2870), + [anon_sym_PLUS_PLUS] = ACTIONS(2870), + [anon_sym_DASH_DASH] = ACTIONS(2870), + [anon_sym_QMARK] = ACTIONS(2870), + [anon_sym_BANG] = ACTIONS(2870), + [anon_sym_LBRACK2] = ACTIONS(2870), + [anon_sym_CARET] = ACTIONS(2870), + [anon_sym_AMP] = ACTIONS(2870), + [anon_sym_LT_DASH] = ACTIONS(2870), + [anon_sym_LT_LT] = ACTIONS(2870), + [anon_sym_GT_GT] = ACTIONS(2870), + [anon_sym_GT_GT_GT] = ACTIONS(2870), + [anon_sym_AMP_CARET] = ACTIONS(2870), + [anon_sym_AMP_AMP] = ACTIONS(2870), + [anon_sym_PIPE_PIPE] = ACTIONS(2870), + [anon_sym_or] = ACTIONS(2870), + [anon_sym_QMARK_DOT] = ACTIONS(2870), + [anon_sym_POUND_LBRACK] = ACTIONS(2870), + [anon_sym_is] = ACTIONS(2870), + [anon_sym_BANGis] = ACTIONS(2870), + [anon_sym_in] = ACTIONS(2870), + [anon_sym_BANGin] = ACTIONS(2870), + [anon_sym_STAR_EQ] = ACTIONS(2870), + [anon_sym_SLASH_EQ] = ACTIONS(2870), + [anon_sym_PERCENT_EQ] = ACTIONS(2870), + [anon_sym_LT_LT_EQ] = ACTIONS(2870), + [anon_sym_GT_GT_EQ] = ACTIONS(2870), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(2870), + [anon_sym_AMP_EQ] = ACTIONS(2870), + [anon_sym_AMP_CARET_EQ] = ACTIONS(2870), + [anon_sym_PLUS_EQ] = ACTIONS(2870), + [anon_sym_DASH_EQ] = ACTIONS(2870), + [anon_sym_PIPE_EQ] = ACTIONS(2870), + [anon_sym_CARET_EQ] = ACTIONS(2870), + [anon_sym_COLON_EQ] = ACTIONS(2870), + [anon_sym_shared] = ACTIONS(2870), + [anon_sym_map_LBRACK] = ACTIONS(2870), + [anon_sym_chan] = ACTIONS(2870), + [anon_sym_thread] = ACTIONS(2870), + [anon_sym_atomic] = ACTIONS(2870), }, [1590] = { [sym_line_comment] = STATE(1590), [sym_block_comment] = STATE(1590), - [sym_identifier] = ACTIONS(2177), - [anon_sym_LF] = ACTIONS(2177), - [anon_sym_CR] = ACTIONS(2177), - [anon_sym_CR_LF] = ACTIONS(2177), + [sym_identifier] = ACTIONS(2918), + [anon_sym_LF] = ACTIONS(2918), + [anon_sym_CR] = ACTIONS(2918), + [anon_sym_CR_LF] = ACTIONS(2918), [anon_sym_SLASH_SLASH] = ACTIONS(497), [anon_sym_SLASH_STAR] = ACTIONS(499), - [anon_sym_DOT] = ACTIONS(2177), - [anon_sym_as] = ACTIONS(2177), - [anon_sym_COMMA] = ACTIONS(2177), - [anon_sym_RBRACE] = ACTIONS(2177), - [anon_sym_LPAREN] = ACTIONS(2177), - [anon_sym_EQ] = ACTIONS(2177), - [anon_sym_PIPE] = ACTIONS(2177), - [anon_sym_fn] = ACTIONS(2177), - [anon_sym_PLUS] = ACTIONS(2177), - [anon_sym_DASH] = ACTIONS(2177), - [anon_sym_STAR] = ACTIONS(2177), - [anon_sym_SLASH] = ACTIONS(2177), - [anon_sym_PERCENT] = ACTIONS(2177), - [anon_sym_LT] = ACTIONS(2177), - [anon_sym_GT] = ACTIONS(2177), - [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(2175), - [anon_sym_struct] = ACTIONS(2177), - [anon_sym_COLON] = ACTIONS(2177), - [anon_sym_PLUS_PLUS] = ACTIONS(2177), - [anon_sym_DASH_DASH] = ACTIONS(2177), - [anon_sym_QMARK] = ACTIONS(2177), - [anon_sym_BANG] = ACTIONS(2177), - [anon_sym_LBRACK2] = ACTIONS(2177), - [anon_sym_CARET] = ACTIONS(2177), - [anon_sym_AMP] = ACTIONS(2177), - [anon_sym_LT_DASH] = ACTIONS(2177), - [anon_sym_LT_LT] = ACTIONS(2177), - [anon_sym_GT_GT] = ACTIONS(2177), - [anon_sym_GT_GT_GT] = ACTIONS(2177), - [anon_sym_AMP_CARET] = ACTIONS(2177), - [anon_sym_AMP_AMP] = ACTIONS(2177), - [anon_sym_PIPE_PIPE] = ACTIONS(2177), - [anon_sym_or] = ACTIONS(2177), - [anon_sym_QMARK_DOT] = ACTIONS(2177), - [anon_sym_POUND_LBRACK] = ACTIONS(2177), - [anon_sym_is] = ACTIONS(2177), - [anon_sym_BANGis] = ACTIONS(2177), - [anon_sym_in] = ACTIONS(2177), - [anon_sym_BANGin] = ACTIONS(2177), - [anon_sym_STAR_EQ] = ACTIONS(2177), - [anon_sym_SLASH_EQ] = ACTIONS(2177), - [anon_sym_PERCENT_EQ] = ACTIONS(2177), - [anon_sym_LT_LT_EQ] = ACTIONS(2177), - [anon_sym_GT_GT_EQ] = ACTIONS(2177), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(2177), - [anon_sym_AMP_EQ] = ACTIONS(2177), - [anon_sym_AMP_CARET_EQ] = ACTIONS(2177), - [anon_sym_PLUS_EQ] = ACTIONS(2177), - [anon_sym_DASH_EQ] = ACTIONS(2177), - [anon_sym_PIPE_EQ] = ACTIONS(2177), - [anon_sym_CARET_EQ] = ACTIONS(2177), - [anon_sym_COLON_EQ] = ACTIONS(2177), - [anon_sym_shared] = ACTIONS(2177), - [anon_sym_map_LBRACK] = ACTIONS(2177), - [anon_sym_chan] = ACTIONS(2177), - [anon_sym_thread] = ACTIONS(2177), - [anon_sym_atomic] = ACTIONS(2177), + [anon_sym_DOT] = ACTIONS(2918), + [anon_sym_as] = ACTIONS(2918), + [anon_sym_COMMA] = ACTIONS(2918), + [anon_sym_RBRACE] = ACTIONS(2918), + [anon_sym_LPAREN] = ACTIONS(2918), + [anon_sym_EQ] = ACTIONS(2918), + [anon_sym_PIPE] = ACTIONS(2918), + [anon_sym_fn] = ACTIONS(2918), + [anon_sym_PLUS] = ACTIONS(2918), + [anon_sym_DASH] = ACTIONS(2918), + [anon_sym_STAR] = ACTIONS(2918), + [anon_sym_SLASH] = ACTIONS(2918), + [anon_sym_PERCENT] = ACTIONS(2918), + [anon_sym_LT] = ACTIONS(2918), + [anon_sym_GT] = ACTIONS(2918), + [anon_sym_EQ_EQ] = ACTIONS(2918), + [anon_sym_BANG_EQ] = ACTIONS(2918), + [anon_sym_LT_EQ] = ACTIONS(2918), + [anon_sym_GT_EQ] = ACTIONS(2918), + [anon_sym_LBRACK] = ACTIONS(2916), + [anon_sym_struct] = ACTIONS(2918), + [anon_sym_COLON] = ACTIONS(2918), + [anon_sym_PLUS_PLUS] = ACTIONS(2918), + [anon_sym_DASH_DASH] = ACTIONS(2918), + [anon_sym_QMARK] = ACTIONS(2918), + [anon_sym_BANG] = ACTIONS(2918), + [anon_sym_LBRACK2] = ACTIONS(2918), + [anon_sym_CARET] = ACTIONS(2918), + [anon_sym_AMP] = ACTIONS(2918), + [anon_sym_LT_DASH] = ACTIONS(2918), + [anon_sym_LT_LT] = ACTIONS(2918), + [anon_sym_GT_GT] = ACTIONS(2918), + [anon_sym_GT_GT_GT] = ACTIONS(2918), + [anon_sym_AMP_CARET] = ACTIONS(2918), + [anon_sym_AMP_AMP] = ACTIONS(2918), + [anon_sym_PIPE_PIPE] = ACTIONS(2918), + [anon_sym_or] = ACTIONS(2918), + [anon_sym_QMARK_DOT] = ACTIONS(2918), + [anon_sym_POUND_LBRACK] = ACTIONS(2918), + [anon_sym_is] = ACTIONS(2918), + [anon_sym_BANGis] = ACTIONS(2918), + [anon_sym_in] = ACTIONS(2918), + [anon_sym_BANGin] = ACTIONS(2918), + [anon_sym_STAR_EQ] = ACTIONS(2918), + [anon_sym_SLASH_EQ] = ACTIONS(2918), + [anon_sym_PERCENT_EQ] = ACTIONS(2918), + [anon_sym_LT_LT_EQ] = ACTIONS(2918), + [anon_sym_GT_GT_EQ] = ACTIONS(2918), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(2918), + [anon_sym_AMP_EQ] = ACTIONS(2918), + [anon_sym_AMP_CARET_EQ] = ACTIONS(2918), + [anon_sym_PLUS_EQ] = ACTIONS(2918), + [anon_sym_DASH_EQ] = ACTIONS(2918), + [anon_sym_PIPE_EQ] = ACTIONS(2918), + [anon_sym_CARET_EQ] = ACTIONS(2918), + [anon_sym_COLON_EQ] = ACTIONS(2918), + [anon_sym_shared] = ACTIONS(2918), + [anon_sym_map_LBRACK] = ACTIONS(2918), + [anon_sym_chan] = ACTIONS(2918), + [anon_sym_thread] = ACTIONS(2918), + [anon_sym_atomic] = ACTIONS(2918), }, [1591] = { [sym_line_comment] = STATE(1591), [sym_block_comment] = STATE(1591), - [sym_identifier] = ACTIONS(2153), - [anon_sym_LF] = ACTIONS(2153), - [anon_sym_CR] = ACTIONS(2153), - [anon_sym_CR_LF] = ACTIONS(2153), + [sym_identifier] = ACTIONS(2914), + [anon_sym_LF] = ACTIONS(2914), + [anon_sym_CR] = ACTIONS(2914), + [anon_sym_CR_LF] = ACTIONS(2914), [anon_sym_SLASH_SLASH] = ACTIONS(497), [anon_sym_SLASH_STAR] = ACTIONS(499), - [anon_sym_DOT] = ACTIONS(2153), - [anon_sym_as] = ACTIONS(2153), - [anon_sym_COMMA] = ACTIONS(2153), - [anon_sym_RBRACE] = ACTIONS(2153), - [anon_sym_LPAREN] = ACTIONS(2153), - [anon_sym_EQ] = ACTIONS(2153), - [anon_sym_PIPE] = ACTIONS(2153), - [anon_sym_fn] = ACTIONS(2153), - [anon_sym_PLUS] = ACTIONS(2153), - [anon_sym_DASH] = ACTIONS(2153), - [anon_sym_STAR] = ACTIONS(2153), - [anon_sym_SLASH] = ACTIONS(2153), - [anon_sym_PERCENT] = ACTIONS(2153), - [anon_sym_LT] = ACTIONS(2153), - [anon_sym_GT] = ACTIONS(2153), - [anon_sym_EQ_EQ] = ACTIONS(2153), - [anon_sym_BANG_EQ] = ACTIONS(2153), - [anon_sym_LT_EQ] = ACTIONS(2153), - [anon_sym_GT_EQ] = ACTIONS(2153), - [anon_sym_LBRACK] = ACTIONS(2151), - [anon_sym_struct] = ACTIONS(2153), - [anon_sym_COLON] = ACTIONS(2153), - [anon_sym_PLUS_PLUS] = ACTIONS(2153), - [anon_sym_DASH_DASH] = ACTIONS(2153), - [anon_sym_QMARK] = ACTIONS(2153), - [anon_sym_BANG] = ACTIONS(2153), - [anon_sym_LBRACK2] = ACTIONS(2153), - [anon_sym_CARET] = ACTIONS(2153), - [anon_sym_AMP] = ACTIONS(2153), - [anon_sym_LT_DASH] = ACTIONS(2153), - [anon_sym_LT_LT] = ACTIONS(2153), - [anon_sym_GT_GT] = ACTIONS(2153), - [anon_sym_GT_GT_GT] = ACTIONS(2153), - [anon_sym_AMP_CARET] = ACTIONS(2153), - [anon_sym_AMP_AMP] = ACTIONS(2153), - [anon_sym_PIPE_PIPE] = ACTIONS(2153), - [anon_sym_or] = ACTIONS(2153), - [anon_sym_QMARK_DOT] = ACTIONS(2153), - [anon_sym_POUND_LBRACK] = ACTIONS(2153), - [anon_sym_is] = ACTIONS(2153), - [anon_sym_BANGis] = ACTIONS(2153), - [anon_sym_in] = ACTIONS(2153), - [anon_sym_BANGin] = ACTIONS(2153), - [anon_sym_STAR_EQ] = ACTIONS(2153), - [anon_sym_SLASH_EQ] = ACTIONS(2153), - [anon_sym_PERCENT_EQ] = ACTIONS(2153), - [anon_sym_LT_LT_EQ] = ACTIONS(2153), - [anon_sym_GT_GT_EQ] = ACTIONS(2153), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(2153), - [anon_sym_AMP_EQ] = ACTIONS(2153), - [anon_sym_AMP_CARET_EQ] = ACTIONS(2153), - [anon_sym_PLUS_EQ] = ACTIONS(2153), - [anon_sym_DASH_EQ] = ACTIONS(2153), - [anon_sym_PIPE_EQ] = ACTIONS(2153), - [anon_sym_CARET_EQ] = ACTIONS(2153), - [anon_sym_COLON_EQ] = ACTIONS(2153), - [anon_sym_shared] = ACTIONS(2153), - [anon_sym_map_LBRACK] = ACTIONS(2153), - [anon_sym_chan] = ACTIONS(2153), - [anon_sym_thread] = ACTIONS(2153), - [anon_sym_atomic] = ACTIONS(2153), + [anon_sym_DOT] = ACTIONS(2914), + [anon_sym_as] = ACTIONS(2914), + [anon_sym_COMMA] = ACTIONS(2914), + [anon_sym_RBRACE] = ACTIONS(2914), + [anon_sym_LPAREN] = ACTIONS(2914), + [anon_sym_EQ] = ACTIONS(2914), + [anon_sym_PIPE] = ACTIONS(2914), + [anon_sym_fn] = ACTIONS(2914), + [anon_sym_PLUS] = ACTIONS(2914), + [anon_sym_DASH] = ACTIONS(2914), + [anon_sym_STAR] = ACTIONS(2914), + [anon_sym_SLASH] = ACTIONS(2914), + [anon_sym_PERCENT] = ACTIONS(2914), + [anon_sym_LT] = ACTIONS(2914), + [anon_sym_GT] = ACTIONS(2914), + [anon_sym_EQ_EQ] = ACTIONS(2914), + [anon_sym_BANG_EQ] = ACTIONS(2914), + [anon_sym_LT_EQ] = ACTIONS(2914), + [anon_sym_GT_EQ] = ACTIONS(2914), + [anon_sym_LBRACK] = ACTIONS(2912), + [anon_sym_struct] = ACTIONS(2914), + [anon_sym_COLON] = ACTIONS(2914), + [anon_sym_PLUS_PLUS] = ACTIONS(2914), + [anon_sym_DASH_DASH] = ACTIONS(2914), + [anon_sym_QMARK] = ACTIONS(2914), + [anon_sym_BANG] = ACTIONS(2914), + [anon_sym_LBRACK2] = ACTIONS(2914), + [anon_sym_CARET] = ACTIONS(2914), + [anon_sym_AMP] = ACTIONS(2914), + [anon_sym_LT_DASH] = ACTIONS(2914), + [anon_sym_LT_LT] = ACTIONS(2914), + [anon_sym_GT_GT] = ACTIONS(2914), + [anon_sym_GT_GT_GT] = ACTIONS(2914), + [anon_sym_AMP_CARET] = ACTIONS(2914), + [anon_sym_AMP_AMP] = ACTIONS(2914), + [anon_sym_PIPE_PIPE] = ACTIONS(2914), + [anon_sym_or] = ACTIONS(2914), + [anon_sym_QMARK_DOT] = ACTIONS(2914), + [anon_sym_POUND_LBRACK] = ACTIONS(2914), + [anon_sym_is] = ACTIONS(2914), + [anon_sym_BANGis] = ACTIONS(2914), + [anon_sym_in] = ACTIONS(2914), + [anon_sym_BANGin] = ACTIONS(2914), + [anon_sym_STAR_EQ] = ACTIONS(2914), + [anon_sym_SLASH_EQ] = ACTIONS(2914), + [anon_sym_PERCENT_EQ] = ACTIONS(2914), + [anon_sym_LT_LT_EQ] = ACTIONS(2914), + [anon_sym_GT_GT_EQ] = ACTIONS(2914), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(2914), + [anon_sym_AMP_EQ] = ACTIONS(2914), + [anon_sym_AMP_CARET_EQ] = ACTIONS(2914), + [anon_sym_PLUS_EQ] = ACTIONS(2914), + [anon_sym_DASH_EQ] = ACTIONS(2914), + [anon_sym_PIPE_EQ] = ACTIONS(2914), + [anon_sym_CARET_EQ] = ACTIONS(2914), + [anon_sym_COLON_EQ] = ACTIONS(2914), + [anon_sym_shared] = ACTIONS(2914), + [anon_sym_map_LBRACK] = ACTIONS(2914), + [anon_sym_chan] = ACTIONS(2914), + [anon_sym_thread] = ACTIONS(2914), + [anon_sym_atomic] = ACTIONS(2914), }, [1592] = { [sym_line_comment] = STATE(1592), [sym_block_comment] = STATE(1592), - [sym_identifier] = ACTIONS(2225), - [anon_sym_LF] = ACTIONS(2225), - [anon_sym_CR] = ACTIONS(2225), - [anon_sym_CR_LF] = ACTIONS(2225), + [sym_identifier] = ACTIONS(2704), + [anon_sym_LF] = ACTIONS(2704), + [anon_sym_CR] = ACTIONS(2704), + [anon_sym_CR_LF] = ACTIONS(2704), [anon_sym_SLASH_SLASH] = ACTIONS(497), [anon_sym_SLASH_STAR] = ACTIONS(499), - [anon_sym_DOT] = ACTIONS(2225), - [anon_sym_as] = ACTIONS(2225), - [anon_sym_COMMA] = ACTIONS(2225), - [anon_sym_RBRACE] = ACTIONS(2225), - [anon_sym_LPAREN] = ACTIONS(2225), - [anon_sym_EQ] = ACTIONS(2225), - [anon_sym_PIPE] = ACTIONS(2225), - [anon_sym_fn] = ACTIONS(2225), - [anon_sym_PLUS] = ACTIONS(2225), - [anon_sym_DASH] = ACTIONS(2225), - [anon_sym_STAR] = ACTIONS(2225), - [anon_sym_SLASH] = ACTIONS(2225), - [anon_sym_PERCENT] = ACTIONS(2225), - [anon_sym_LT] = ACTIONS(2225), - [anon_sym_GT] = ACTIONS(2225), - [anon_sym_EQ_EQ] = ACTIONS(2225), - [anon_sym_BANG_EQ] = ACTIONS(2225), - [anon_sym_LT_EQ] = ACTIONS(2225), - [anon_sym_GT_EQ] = ACTIONS(2225), - [anon_sym_LBRACK] = ACTIONS(2223), - [anon_sym_struct] = ACTIONS(2225), - [anon_sym_COLON] = ACTIONS(2225), - [anon_sym_PLUS_PLUS] = ACTIONS(2225), - [anon_sym_DASH_DASH] = ACTIONS(2225), - [anon_sym_QMARK] = ACTIONS(2225), - [anon_sym_BANG] = ACTIONS(2225), - [anon_sym_LBRACK2] = ACTIONS(2225), - [anon_sym_CARET] = ACTIONS(2225), - [anon_sym_AMP] = ACTIONS(2225), - [anon_sym_LT_DASH] = ACTIONS(2225), - [anon_sym_LT_LT] = ACTIONS(2225), - [anon_sym_GT_GT] = ACTIONS(2225), - [anon_sym_GT_GT_GT] = ACTIONS(2225), - [anon_sym_AMP_CARET] = ACTIONS(2225), - [anon_sym_AMP_AMP] = ACTIONS(2225), - [anon_sym_PIPE_PIPE] = ACTIONS(2225), - [anon_sym_or] = ACTIONS(2225), - [anon_sym_QMARK_DOT] = ACTIONS(2225), - [anon_sym_POUND_LBRACK] = ACTIONS(2225), - [anon_sym_is] = ACTIONS(2225), - [anon_sym_BANGis] = ACTIONS(2225), - [anon_sym_in] = ACTIONS(2225), - [anon_sym_BANGin] = ACTIONS(2225), - [anon_sym_STAR_EQ] = ACTIONS(2225), - [anon_sym_SLASH_EQ] = ACTIONS(2225), - [anon_sym_PERCENT_EQ] = ACTIONS(2225), - [anon_sym_LT_LT_EQ] = ACTIONS(2225), - [anon_sym_GT_GT_EQ] = ACTIONS(2225), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(2225), - [anon_sym_AMP_EQ] = ACTIONS(2225), - [anon_sym_AMP_CARET_EQ] = ACTIONS(2225), - [anon_sym_PLUS_EQ] = ACTIONS(2225), - [anon_sym_DASH_EQ] = ACTIONS(2225), - [anon_sym_PIPE_EQ] = ACTIONS(2225), - [anon_sym_CARET_EQ] = ACTIONS(2225), - [anon_sym_COLON_EQ] = ACTIONS(2225), - [anon_sym_shared] = ACTIONS(2225), - [anon_sym_map_LBRACK] = ACTIONS(2225), - [anon_sym_chan] = ACTIONS(2225), - [anon_sym_thread] = ACTIONS(2225), - [anon_sym_atomic] = ACTIONS(2225), + [anon_sym_DOT] = ACTIONS(2704), + [anon_sym_as] = ACTIONS(2704), + [anon_sym_COMMA] = ACTIONS(2704), + [anon_sym_RBRACE] = ACTIONS(2704), + [anon_sym_LPAREN] = ACTIONS(2704), + [anon_sym_EQ] = ACTIONS(2704), + [anon_sym_PIPE] = ACTIONS(2704), + [anon_sym_fn] = ACTIONS(2704), + [anon_sym_PLUS] = ACTIONS(2704), + [anon_sym_DASH] = ACTIONS(2704), + [anon_sym_STAR] = ACTIONS(2704), + [anon_sym_SLASH] = ACTIONS(2704), + [anon_sym_PERCENT] = ACTIONS(2704), + [anon_sym_LT] = ACTIONS(2704), + [anon_sym_GT] = ACTIONS(2704), + [anon_sym_EQ_EQ] = ACTIONS(2704), + [anon_sym_BANG_EQ] = ACTIONS(2704), + [anon_sym_LT_EQ] = ACTIONS(2704), + [anon_sym_GT_EQ] = ACTIONS(2704), + [anon_sym_LBRACK] = ACTIONS(2702), + [anon_sym_struct] = ACTIONS(2704), + [anon_sym_COLON] = ACTIONS(2704), + [anon_sym_PLUS_PLUS] = ACTIONS(2704), + [anon_sym_DASH_DASH] = ACTIONS(2704), + [anon_sym_QMARK] = ACTIONS(2704), + [anon_sym_BANG] = ACTIONS(2704), + [anon_sym_LBRACK2] = ACTIONS(2704), + [anon_sym_CARET] = ACTIONS(2704), + [anon_sym_AMP] = ACTIONS(2704), + [anon_sym_LT_DASH] = ACTIONS(2704), + [anon_sym_LT_LT] = ACTIONS(2704), + [anon_sym_GT_GT] = ACTIONS(2704), + [anon_sym_GT_GT_GT] = ACTIONS(2704), + [anon_sym_AMP_CARET] = ACTIONS(2704), + [anon_sym_AMP_AMP] = ACTIONS(2704), + [anon_sym_PIPE_PIPE] = ACTIONS(2704), + [anon_sym_or] = ACTIONS(2704), + [anon_sym_QMARK_DOT] = ACTIONS(2704), + [anon_sym_POUND_LBRACK] = ACTIONS(2704), + [anon_sym_is] = ACTIONS(2704), + [anon_sym_BANGis] = ACTIONS(2704), + [anon_sym_in] = ACTIONS(2704), + [anon_sym_BANGin] = ACTIONS(2704), + [anon_sym_STAR_EQ] = ACTIONS(2704), + [anon_sym_SLASH_EQ] = ACTIONS(2704), + [anon_sym_PERCENT_EQ] = ACTIONS(2704), + [anon_sym_LT_LT_EQ] = ACTIONS(2704), + [anon_sym_GT_GT_EQ] = ACTIONS(2704), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(2704), + [anon_sym_AMP_EQ] = ACTIONS(2704), + [anon_sym_AMP_CARET_EQ] = ACTIONS(2704), + [anon_sym_PLUS_EQ] = ACTIONS(2704), + [anon_sym_DASH_EQ] = ACTIONS(2704), + [anon_sym_PIPE_EQ] = ACTIONS(2704), + [anon_sym_CARET_EQ] = ACTIONS(2704), + [anon_sym_COLON_EQ] = ACTIONS(2704), + [anon_sym_shared] = ACTIONS(2704), + [anon_sym_map_LBRACK] = ACTIONS(2704), + [anon_sym_chan] = ACTIONS(2704), + [anon_sym_thread] = ACTIONS(2704), + [anon_sym_atomic] = ACTIONS(2704), }, [1593] = { [sym_line_comment] = STATE(1593), [sym_block_comment] = STATE(1593), - [sym_identifier] = ACTIONS(2912), - [anon_sym_LF] = ACTIONS(2912), - [anon_sym_CR] = ACTIONS(2912), - [anon_sym_CR_LF] = ACTIONS(2912), + [sym_identifier] = ACTIONS(2812), + [anon_sym_LF] = ACTIONS(2812), + [anon_sym_CR] = ACTIONS(2812), + [anon_sym_CR_LF] = ACTIONS(2812), [anon_sym_SLASH_SLASH] = ACTIONS(497), [anon_sym_SLASH_STAR] = ACTIONS(499), - [anon_sym_DOT] = ACTIONS(2912), - [anon_sym_as] = ACTIONS(2912), - [anon_sym_COMMA] = ACTIONS(2912), - [anon_sym_RBRACE] = ACTIONS(2912), - [anon_sym_LPAREN] = ACTIONS(2912), - [anon_sym_EQ] = ACTIONS(2912), - [anon_sym_PIPE] = ACTIONS(2912), - [anon_sym_fn] = ACTIONS(2912), - [anon_sym_PLUS] = ACTIONS(2912), - [anon_sym_DASH] = ACTIONS(2912), - [anon_sym_STAR] = ACTIONS(2912), - [anon_sym_SLASH] = ACTIONS(2912), - [anon_sym_PERCENT] = ACTIONS(2912), - [anon_sym_LT] = ACTIONS(2912), - [anon_sym_GT] = ACTIONS(2912), - [anon_sym_EQ_EQ] = ACTIONS(2912), - [anon_sym_BANG_EQ] = ACTIONS(2912), - [anon_sym_LT_EQ] = ACTIONS(2912), - [anon_sym_GT_EQ] = ACTIONS(2912), - [anon_sym_LBRACK] = ACTIONS(2910), - [anon_sym_struct] = ACTIONS(2912), - [anon_sym_PLUS_PLUS] = ACTIONS(2912), - [anon_sym_DASH_DASH] = ACTIONS(2912), - [anon_sym_QMARK] = ACTIONS(2912), - [anon_sym_BANG] = ACTIONS(2912), - [anon_sym_LBRACK2] = ACTIONS(2912), - [anon_sym_CARET] = ACTIONS(2912), - [anon_sym_AMP] = ACTIONS(2912), - [anon_sym_LT_LT] = ACTIONS(2912), - [anon_sym_GT_GT] = ACTIONS(2912), - [anon_sym_GT_GT_GT] = ACTIONS(2912), - [anon_sym_AMP_CARET] = ACTIONS(2912), - [anon_sym_AMP_AMP] = ACTIONS(2912), - [anon_sym_PIPE_PIPE] = ACTIONS(2912), - [anon_sym_or] = ACTIONS(2912), - [anon_sym_QMARK_DOT] = ACTIONS(2912), - [anon_sym_POUND_LBRACK] = ACTIONS(2912), - [anon_sym_is] = ACTIONS(2912), - [anon_sym_BANGis] = ACTIONS(2912), - [anon_sym_in] = ACTIONS(2912), - [anon_sym_BANGin] = ACTIONS(2912), - [anon_sym_STAR_EQ] = ACTIONS(2912), - [anon_sym_SLASH_EQ] = ACTIONS(2912), - [anon_sym_PERCENT_EQ] = ACTIONS(2912), - [anon_sym_LT_LT_EQ] = ACTIONS(2912), - [anon_sym_GT_GT_EQ] = ACTIONS(2912), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(2912), - [anon_sym_AMP_EQ] = ACTIONS(2912), - [anon_sym_AMP_CARET_EQ] = ACTIONS(2912), - [anon_sym_PLUS_EQ] = ACTIONS(2912), - [anon_sym_DASH_EQ] = ACTIONS(2912), - [anon_sym_PIPE_EQ] = ACTIONS(2912), - [anon_sym_CARET_EQ] = ACTIONS(2912), - [anon_sym_COLON_EQ] = ACTIONS(2912), - [anon_sym_shared] = ACTIONS(2912), - [anon_sym_map_LBRACK] = ACTIONS(2912), - [anon_sym_chan] = ACTIONS(2912), - [anon_sym_thread] = ACTIONS(2912), - [anon_sym_atomic] = ACTIONS(2912), + [anon_sym_DOT] = ACTIONS(2812), + [anon_sym_as] = ACTIONS(2812), + [anon_sym_COMMA] = ACTIONS(2812), + [anon_sym_RBRACE] = ACTIONS(2812), + [anon_sym_LPAREN] = ACTIONS(2812), + [anon_sym_EQ] = ACTIONS(2812), + [anon_sym_PIPE] = ACTIONS(2812), + [anon_sym_fn] = ACTIONS(2812), + [anon_sym_PLUS] = ACTIONS(2812), + [anon_sym_DASH] = ACTIONS(2812), + [anon_sym_STAR] = ACTIONS(2812), + [anon_sym_SLASH] = ACTIONS(2812), + [anon_sym_PERCENT] = ACTIONS(2812), + [anon_sym_LT] = ACTIONS(2812), + [anon_sym_GT] = ACTIONS(2812), + [anon_sym_EQ_EQ] = ACTIONS(2812), + [anon_sym_BANG_EQ] = ACTIONS(2812), + [anon_sym_LT_EQ] = ACTIONS(2812), + [anon_sym_GT_EQ] = ACTIONS(2812), + [anon_sym_LBRACK] = ACTIONS(2810), + [anon_sym_struct] = ACTIONS(2812), + [anon_sym_COLON] = ACTIONS(2812), + [anon_sym_PLUS_PLUS] = ACTIONS(2812), + [anon_sym_DASH_DASH] = ACTIONS(2812), + [anon_sym_QMARK] = ACTIONS(2812), + [anon_sym_BANG] = ACTIONS(2812), + [anon_sym_LBRACK2] = ACTIONS(2812), + [anon_sym_CARET] = ACTIONS(2812), + [anon_sym_AMP] = ACTIONS(2812), + [anon_sym_LT_DASH] = ACTIONS(2812), + [anon_sym_LT_LT] = ACTIONS(2812), + [anon_sym_GT_GT] = ACTIONS(2812), + [anon_sym_GT_GT_GT] = ACTIONS(2812), + [anon_sym_AMP_CARET] = ACTIONS(2812), + [anon_sym_AMP_AMP] = ACTIONS(2812), + [anon_sym_PIPE_PIPE] = ACTIONS(2812), + [anon_sym_or] = ACTIONS(2812), + [anon_sym_QMARK_DOT] = ACTIONS(2812), + [anon_sym_POUND_LBRACK] = ACTIONS(2812), + [anon_sym_is] = ACTIONS(2812), + [anon_sym_BANGis] = ACTIONS(2812), + [anon_sym_in] = ACTIONS(2812), + [anon_sym_BANGin] = ACTIONS(2812), + [anon_sym_STAR_EQ] = ACTIONS(2812), + [anon_sym_SLASH_EQ] = ACTIONS(2812), + [anon_sym_PERCENT_EQ] = ACTIONS(2812), + [anon_sym_LT_LT_EQ] = ACTIONS(2812), + [anon_sym_GT_GT_EQ] = ACTIONS(2812), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(2812), + [anon_sym_AMP_EQ] = ACTIONS(2812), + [anon_sym_AMP_CARET_EQ] = ACTIONS(2812), + [anon_sym_PLUS_EQ] = ACTIONS(2812), + [anon_sym_DASH_EQ] = ACTIONS(2812), + [anon_sym_PIPE_EQ] = ACTIONS(2812), + [anon_sym_CARET_EQ] = ACTIONS(2812), + [anon_sym_COLON_EQ] = ACTIONS(2812), + [anon_sym_shared] = ACTIONS(2812), + [anon_sym_map_LBRACK] = ACTIONS(2812), + [anon_sym_chan] = ACTIONS(2812), + [anon_sym_thread] = ACTIONS(2812), + [anon_sym_atomic] = ACTIONS(2812), }, [1594] = { [sym_line_comment] = STATE(1594), [sym_block_comment] = STATE(1594), - [sym_identifier] = ACTIONS(2177), - [anon_sym_LF] = ACTIONS(2177), - [anon_sym_CR] = ACTIONS(2177), - [anon_sym_CR_LF] = ACTIONS(2177), + [sym_identifier] = ACTIONS(2704), + [anon_sym_LF] = ACTIONS(2704), + [anon_sym_CR] = ACTIONS(2704), + [anon_sym_CR_LF] = ACTIONS(2704), [anon_sym_SLASH_SLASH] = ACTIONS(497), [anon_sym_SLASH_STAR] = ACTIONS(499), - [anon_sym_DOT] = ACTIONS(2177), - [anon_sym_as] = ACTIONS(2177), - [anon_sym_COMMA] = ACTIONS(2177), - [anon_sym_RBRACE] = ACTIONS(2177), - [anon_sym_LPAREN] = ACTIONS(2177), - [anon_sym_EQ] = ACTIONS(2177), - [anon_sym_PIPE] = ACTIONS(2177), - [anon_sym_fn] = ACTIONS(2177), - [anon_sym_PLUS] = ACTIONS(2177), - [anon_sym_DASH] = ACTIONS(2177), - [anon_sym_STAR] = ACTIONS(2177), - [anon_sym_SLASH] = ACTIONS(2177), - [anon_sym_PERCENT] = ACTIONS(2177), - [anon_sym_LT] = ACTIONS(2177), - [anon_sym_GT] = ACTIONS(2177), - [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(2175), - [anon_sym_struct] = ACTIONS(2177), - [anon_sym_PLUS_PLUS] = ACTIONS(2177), - [anon_sym_DASH_DASH] = ACTIONS(2177), - [anon_sym_QMARK] = ACTIONS(2177), - [anon_sym_BANG] = ACTIONS(2177), - [anon_sym_LBRACK2] = ACTIONS(2177), - [anon_sym_CARET] = ACTIONS(2177), - [anon_sym_AMP] = ACTIONS(2177), - [anon_sym_LT_LT] = ACTIONS(2177), - [anon_sym_GT_GT] = ACTIONS(2177), - [anon_sym_GT_GT_GT] = ACTIONS(2177), - [anon_sym_AMP_CARET] = ACTIONS(2177), - [anon_sym_AMP_AMP] = ACTIONS(2177), - [anon_sym_PIPE_PIPE] = ACTIONS(2177), - [anon_sym_or] = ACTIONS(2177), - [anon_sym_QMARK_DOT] = ACTIONS(2177), - [anon_sym_POUND_LBRACK] = ACTIONS(2177), - [anon_sym_is] = ACTIONS(2177), - [anon_sym_BANGis] = ACTIONS(2177), - [anon_sym_in] = ACTIONS(2177), - [anon_sym_BANGin] = ACTIONS(2177), - [anon_sym_STAR_EQ] = ACTIONS(2177), - [anon_sym_SLASH_EQ] = ACTIONS(2177), - [anon_sym_PERCENT_EQ] = ACTIONS(2177), - [anon_sym_LT_LT_EQ] = ACTIONS(2177), - [anon_sym_GT_GT_EQ] = ACTIONS(2177), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(2177), - [anon_sym_AMP_EQ] = ACTIONS(2177), - [anon_sym_AMP_CARET_EQ] = ACTIONS(2177), - [anon_sym_PLUS_EQ] = ACTIONS(2177), - [anon_sym_DASH_EQ] = ACTIONS(2177), - [anon_sym_PIPE_EQ] = ACTIONS(2177), - [anon_sym_CARET_EQ] = ACTIONS(2177), - [anon_sym_COLON_EQ] = ACTIONS(2177), - [anon_sym_shared] = ACTIONS(2177), - [anon_sym_map_LBRACK] = ACTIONS(2177), - [anon_sym_chan] = ACTIONS(2177), - [anon_sym_thread] = ACTIONS(2177), - [anon_sym_atomic] = ACTIONS(2177), + [anon_sym_DOT] = ACTIONS(2704), + [anon_sym_as] = ACTIONS(2704), + [anon_sym_COMMA] = ACTIONS(2704), + [anon_sym_RBRACE] = ACTIONS(2704), + [anon_sym_LPAREN] = ACTIONS(2704), + [anon_sym_EQ] = ACTIONS(2704), + [anon_sym_PIPE] = ACTIONS(2704), + [anon_sym_fn] = ACTIONS(2704), + [anon_sym_PLUS] = ACTIONS(2704), + [anon_sym_DASH] = ACTIONS(2704), + [anon_sym_STAR] = ACTIONS(2704), + [anon_sym_SLASH] = ACTIONS(2704), + [anon_sym_PERCENT] = ACTIONS(2704), + [anon_sym_LT] = ACTIONS(2704), + [anon_sym_GT] = ACTIONS(2704), + [anon_sym_EQ_EQ] = ACTIONS(2704), + [anon_sym_BANG_EQ] = ACTIONS(2704), + [anon_sym_LT_EQ] = ACTIONS(2704), + [anon_sym_GT_EQ] = ACTIONS(2704), + [anon_sym_LBRACK] = ACTIONS(2702), + [anon_sym_struct] = ACTIONS(2704), + [anon_sym_PLUS_PLUS] = ACTIONS(2704), + [anon_sym_DASH_DASH] = ACTIONS(2704), + [anon_sym_QMARK] = ACTIONS(2704), + [anon_sym_BANG] = ACTIONS(2704), + [anon_sym_LBRACK2] = ACTIONS(2704), + [anon_sym_CARET] = ACTIONS(2704), + [anon_sym_AMP] = ACTIONS(2704), + [anon_sym_LT_LT] = ACTIONS(2704), + [anon_sym_GT_GT] = ACTIONS(2704), + [anon_sym_GT_GT_GT] = ACTIONS(2704), + [anon_sym_AMP_CARET] = ACTIONS(2704), + [anon_sym_AMP_AMP] = ACTIONS(2704), + [anon_sym_PIPE_PIPE] = ACTIONS(2704), + [anon_sym_or] = ACTIONS(2704), + [anon_sym_QMARK_DOT] = ACTIONS(2704), + [anon_sym_POUND_LBRACK] = ACTIONS(2704), + [anon_sym_is] = ACTIONS(2704), + [anon_sym_BANGis] = ACTIONS(2704), + [anon_sym_in] = ACTIONS(2704), + [anon_sym_BANGin] = ACTIONS(2704), + [anon_sym_STAR_EQ] = ACTIONS(2704), + [anon_sym_SLASH_EQ] = ACTIONS(2704), + [anon_sym_PERCENT_EQ] = ACTIONS(2704), + [anon_sym_LT_LT_EQ] = ACTIONS(2704), + [anon_sym_GT_GT_EQ] = ACTIONS(2704), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(2704), + [anon_sym_AMP_EQ] = ACTIONS(2704), + [anon_sym_AMP_CARET_EQ] = ACTIONS(2704), + [anon_sym_PLUS_EQ] = ACTIONS(2704), + [anon_sym_DASH_EQ] = ACTIONS(2704), + [anon_sym_PIPE_EQ] = ACTIONS(2704), + [anon_sym_CARET_EQ] = ACTIONS(2704), + [anon_sym_COLON_EQ] = ACTIONS(2704), + [anon_sym_shared] = ACTIONS(2704), + [anon_sym_map_LBRACK] = ACTIONS(2704), + [anon_sym_chan] = ACTIONS(2704), + [anon_sym_thread] = ACTIONS(2704), + [anon_sym_atomic] = ACTIONS(2704), }, [1595] = { [sym_line_comment] = STATE(1595), [sym_block_comment] = STATE(1595), - [sym_identifier] = ACTIONS(2153), - [anon_sym_LF] = ACTIONS(2153), - [anon_sym_CR] = ACTIONS(2153), - [anon_sym_CR_LF] = ACTIONS(2153), + [sym_identifier] = ACTIONS(2812), + [anon_sym_LF] = ACTIONS(2812), + [anon_sym_CR] = ACTIONS(2812), + [anon_sym_CR_LF] = ACTIONS(2812), [anon_sym_SLASH_SLASH] = ACTIONS(497), [anon_sym_SLASH_STAR] = ACTIONS(499), - [anon_sym_DOT] = ACTIONS(2153), - [anon_sym_as] = ACTIONS(2153), - [anon_sym_COMMA] = ACTIONS(2153), - [anon_sym_RBRACE] = ACTIONS(2153), - [anon_sym_LPAREN] = ACTIONS(2153), - [anon_sym_EQ] = ACTIONS(2153), - [anon_sym_PIPE] = ACTIONS(2153), - [anon_sym_fn] = ACTIONS(2153), - [anon_sym_PLUS] = ACTIONS(2153), - [anon_sym_DASH] = ACTIONS(2153), - [anon_sym_STAR] = ACTIONS(2153), - [anon_sym_SLASH] = ACTIONS(2153), - [anon_sym_PERCENT] = ACTIONS(2153), - [anon_sym_LT] = ACTIONS(2153), - [anon_sym_GT] = ACTIONS(2153), - [anon_sym_EQ_EQ] = ACTIONS(2153), - [anon_sym_BANG_EQ] = ACTIONS(2153), - [anon_sym_LT_EQ] = ACTIONS(2153), - [anon_sym_GT_EQ] = ACTIONS(2153), - [anon_sym_LBRACK] = ACTIONS(2151), - [anon_sym_struct] = ACTIONS(2153), - [anon_sym_PLUS_PLUS] = ACTIONS(2153), - [anon_sym_DASH_DASH] = ACTIONS(2153), - [anon_sym_QMARK] = ACTIONS(2153), - [anon_sym_BANG] = ACTIONS(2153), - [anon_sym_LBRACK2] = ACTIONS(2153), - [anon_sym_CARET] = ACTIONS(2153), - [anon_sym_AMP] = ACTIONS(2153), - [anon_sym_LT_LT] = ACTIONS(2153), - [anon_sym_GT_GT] = ACTIONS(2153), - [anon_sym_GT_GT_GT] = ACTIONS(2153), - [anon_sym_AMP_CARET] = ACTIONS(2153), - [anon_sym_AMP_AMP] = ACTIONS(2153), - [anon_sym_PIPE_PIPE] = ACTIONS(2153), - [anon_sym_or] = ACTIONS(2153), - [anon_sym_QMARK_DOT] = ACTIONS(2153), - [anon_sym_POUND_LBRACK] = ACTIONS(2153), - [anon_sym_is] = ACTIONS(2153), - [anon_sym_BANGis] = ACTIONS(2153), - [anon_sym_in] = ACTIONS(2153), - [anon_sym_BANGin] = ACTIONS(2153), - [anon_sym_STAR_EQ] = ACTIONS(2153), - [anon_sym_SLASH_EQ] = ACTIONS(2153), - [anon_sym_PERCENT_EQ] = ACTIONS(2153), - [anon_sym_LT_LT_EQ] = ACTIONS(2153), - [anon_sym_GT_GT_EQ] = ACTIONS(2153), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(2153), - [anon_sym_AMP_EQ] = ACTIONS(2153), - [anon_sym_AMP_CARET_EQ] = ACTIONS(2153), - [anon_sym_PLUS_EQ] = ACTIONS(2153), - [anon_sym_DASH_EQ] = ACTIONS(2153), - [anon_sym_PIPE_EQ] = ACTIONS(2153), - [anon_sym_CARET_EQ] = ACTIONS(2153), - [anon_sym_COLON_EQ] = ACTIONS(2153), - [anon_sym_shared] = ACTIONS(2153), - [anon_sym_map_LBRACK] = ACTIONS(2153), - [anon_sym_chan] = ACTIONS(2153), - [anon_sym_thread] = ACTIONS(2153), - [anon_sym_atomic] = ACTIONS(2153), + [anon_sym_DOT] = ACTIONS(2812), + [anon_sym_as] = ACTIONS(2812), + [anon_sym_COMMA] = ACTIONS(2812), + [anon_sym_RBRACE] = ACTIONS(2812), + [anon_sym_LPAREN] = ACTIONS(2812), + [anon_sym_EQ] = ACTIONS(2812), + [anon_sym_PIPE] = ACTIONS(2812), + [anon_sym_fn] = ACTIONS(2812), + [anon_sym_PLUS] = ACTIONS(2812), + [anon_sym_DASH] = ACTIONS(2812), + [anon_sym_STAR] = ACTIONS(2812), + [anon_sym_SLASH] = ACTIONS(2812), + [anon_sym_PERCENT] = ACTIONS(2812), + [anon_sym_LT] = ACTIONS(2812), + [anon_sym_GT] = ACTIONS(2812), + [anon_sym_EQ_EQ] = ACTIONS(2812), + [anon_sym_BANG_EQ] = ACTIONS(2812), + [anon_sym_LT_EQ] = ACTIONS(2812), + [anon_sym_GT_EQ] = ACTIONS(2812), + [anon_sym_LBRACK] = ACTIONS(2810), + [anon_sym_struct] = ACTIONS(2812), + [anon_sym_PLUS_PLUS] = ACTIONS(2812), + [anon_sym_DASH_DASH] = ACTIONS(2812), + [anon_sym_QMARK] = ACTIONS(2812), + [anon_sym_BANG] = ACTIONS(2812), + [anon_sym_LBRACK2] = ACTIONS(2812), + [anon_sym_CARET] = ACTIONS(2812), + [anon_sym_AMP] = ACTIONS(2812), + [anon_sym_LT_LT] = ACTIONS(2812), + [anon_sym_GT_GT] = ACTIONS(2812), + [anon_sym_GT_GT_GT] = ACTIONS(2812), + [anon_sym_AMP_CARET] = ACTIONS(2812), + [anon_sym_AMP_AMP] = ACTIONS(2812), + [anon_sym_PIPE_PIPE] = ACTIONS(2812), + [anon_sym_or] = ACTIONS(2812), + [anon_sym_QMARK_DOT] = ACTIONS(2812), + [anon_sym_POUND_LBRACK] = ACTIONS(2812), + [anon_sym_is] = ACTIONS(2812), + [anon_sym_BANGis] = ACTIONS(2812), + [anon_sym_in] = ACTIONS(2812), + [anon_sym_BANGin] = ACTIONS(2812), + [anon_sym_STAR_EQ] = ACTIONS(2812), + [anon_sym_SLASH_EQ] = ACTIONS(2812), + [anon_sym_PERCENT_EQ] = ACTIONS(2812), + [anon_sym_LT_LT_EQ] = ACTIONS(2812), + [anon_sym_GT_GT_EQ] = ACTIONS(2812), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(2812), + [anon_sym_AMP_EQ] = ACTIONS(2812), + [anon_sym_AMP_CARET_EQ] = ACTIONS(2812), + [anon_sym_PLUS_EQ] = ACTIONS(2812), + [anon_sym_DASH_EQ] = ACTIONS(2812), + [anon_sym_PIPE_EQ] = ACTIONS(2812), + [anon_sym_CARET_EQ] = ACTIONS(2812), + [anon_sym_COLON_EQ] = ACTIONS(2812), + [anon_sym_shared] = ACTIONS(2812), + [anon_sym_map_LBRACK] = ACTIONS(2812), + [anon_sym_chan] = ACTIONS(2812), + [anon_sym_thread] = ACTIONS(2812), + [anon_sym_atomic] = ACTIONS(2812), }, [1596] = { [sym_line_comment] = STATE(1596), [sym_block_comment] = STATE(1596), - [sym_identifier] = ACTIONS(2217), - [anon_sym_LF] = ACTIONS(2217), - [anon_sym_CR] = ACTIONS(2217), - [anon_sym_CR_LF] = ACTIONS(2217), + [sym_identifier] = ACTIONS(2870), + [anon_sym_LF] = ACTIONS(2870), + [anon_sym_CR] = ACTIONS(2870), + [anon_sym_CR_LF] = ACTIONS(2870), [anon_sym_SLASH_SLASH] = ACTIONS(497), [anon_sym_SLASH_STAR] = ACTIONS(499), - [anon_sym_DOT] = ACTIONS(2217), - [anon_sym_as] = ACTIONS(2217), - [anon_sym_COMMA] = ACTIONS(2217), - [anon_sym_RBRACE] = ACTIONS(2217), - [anon_sym_LPAREN] = ACTIONS(2217), - [anon_sym_EQ] = ACTIONS(2217), - [anon_sym_PIPE] = ACTIONS(2217), - [anon_sym_fn] = ACTIONS(2217), - [anon_sym_PLUS] = ACTIONS(2217), - [anon_sym_DASH] = ACTIONS(2217), - [anon_sym_STAR] = ACTIONS(2217), - [anon_sym_SLASH] = ACTIONS(2217), - [anon_sym_PERCENT] = ACTIONS(2217), - [anon_sym_LT] = ACTIONS(2217), - [anon_sym_GT] = ACTIONS(2217), - [anon_sym_EQ_EQ] = ACTIONS(2217), - [anon_sym_BANG_EQ] = ACTIONS(2217), - [anon_sym_LT_EQ] = ACTIONS(2217), - [anon_sym_GT_EQ] = ACTIONS(2217), - [anon_sym_LBRACK] = ACTIONS(2215), - [anon_sym_struct] = ACTIONS(2217), - [anon_sym_PLUS_PLUS] = ACTIONS(2217), - [anon_sym_DASH_DASH] = ACTIONS(2217), - [anon_sym_QMARK] = ACTIONS(2217), - [anon_sym_BANG] = ACTIONS(2217), - [anon_sym_LBRACK2] = ACTIONS(2217), - [anon_sym_CARET] = ACTIONS(2217), - [anon_sym_AMP] = ACTIONS(2217), - [anon_sym_LT_LT] = ACTIONS(2217), - [anon_sym_GT_GT] = ACTIONS(2217), - [anon_sym_GT_GT_GT] = ACTIONS(2217), - [anon_sym_AMP_CARET] = ACTIONS(2217), - [anon_sym_AMP_AMP] = ACTIONS(2217), - [anon_sym_PIPE_PIPE] = ACTIONS(2217), - [anon_sym_or] = ACTIONS(2217), - [anon_sym_QMARK_DOT] = ACTIONS(2217), - [anon_sym_POUND_LBRACK] = ACTIONS(2217), - [anon_sym_is] = ACTIONS(2217), - [anon_sym_BANGis] = ACTIONS(2217), - [anon_sym_in] = ACTIONS(2217), - [anon_sym_BANGin] = ACTIONS(2217), - [anon_sym_STAR_EQ] = ACTIONS(2217), - [anon_sym_SLASH_EQ] = ACTIONS(2217), - [anon_sym_PERCENT_EQ] = ACTIONS(2217), - [anon_sym_LT_LT_EQ] = ACTIONS(2217), - [anon_sym_GT_GT_EQ] = ACTIONS(2217), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(2217), - [anon_sym_AMP_EQ] = ACTIONS(2217), - [anon_sym_AMP_CARET_EQ] = ACTIONS(2217), - [anon_sym_PLUS_EQ] = ACTIONS(2217), - [anon_sym_DASH_EQ] = ACTIONS(2217), - [anon_sym_PIPE_EQ] = ACTIONS(2217), - [anon_sym_CARET_EQ] = ACTIONS(2217), - [anon_sym_COLON_EQ] = ACTIONS(2217), - [anon_sym_shared] = ACTIONS(2217), - [anon_sym_map_LBRACK] = ACTIONS(2217), - [anon_sym_chan] = ACTIONS(2217), - [anon_sym_thread] = ACTIONS(2217), - [anon_sym_atomic] = ACTIONS(2217), + [anon_sym_DOT] = ACTIONS(2870), + [anon_sym_as] = ACTIONS(2870), + [anon_sym_COMMA] = ACTIONS(2870), + [anon_sym_RBRACE] = ACTIONS(2870), + [anon_sym_LPAREN] = ACTIONS(2870), + [anon_sym_EQ] = ACTIONS(2870), + [anon_sym_PIPE] = ACTIONS(2870), + [anon_sym_fn] = ACTIONS(2870), + [anon_sym_PLUS] = ACTIONS(2870), + [anon_sym_DASH] = ACTIONS(2870), + [anon_sym_STAR] = ACTIONS(2870), + [anon_sym_SLASH] = ACTIONS(2870), + [anon_sym_PERCENT] = ACTIONS(2870), + [anon_sym_LT] = ACTIONS(2870), + [anon_sym_GT] = ACTIONS(2870), + [anon_sym_EQ_EQ] = ACTIONS(2870), + [anon_sym_BANG_EQ] = ACTIONS(2870), + [anon_sym_LT_EQ] = ACTIONS(2870), + [anon_sym_GT_EQ] = ACTIONS(2870), + [anon_sym_LBRACK] = ACTIONS(2868), + [anon_sym_struct] = ACTIONS(2870), + [anon_sym_PLUS_PLUS] = ACTIONS(2870), + [anon_sym_DASH_DASH] = ACTIONS(2870), + [anon_sym_QMARK] = ACTIONS(2870), + [anon_sym_BANG] = ACTIONS(2870), + [anon_sym_LBRACK2] = ACTIONS(2870), + [anon_sym_CARET] = ACTIONS(2870), + [anon_sym_AMP] = ACTIONS(2870), + [anon_sym_LT_LT] = ACTIONS(2870), + [anon_sym_GT_GT] = ACTIONS(2870), + [anon_sym_GT_GT_GT] = ACTIONS(2870), + [anon_sym_AMP_CARET] = ACTIONS(2870), + [anon_sym_AMP_AMP] = ACTIONS(2870), + [anon_sym_PIPE_PIPE] = ACTIONS(2870), + [anon_sym_or] = ACTIONS(2870), + [anon_sym_QMARK_DOT] = ACTIONS(2870), + [anon_sym_POUND_LBRACK] = ACTIONS(2870), + [anon_sym_is] = ACTIONS(2870), + [anon_sym_BANGis] = ACTIONS(2870), + [anon_sym_in] = ACTIONS(2870), + [anon_sym_BANGin] = ACTIONS(2870), + [anon_sym_STAR_EQ] = ACTIONS(2870), + [anon_sym_SLASH_EQ] = ACTIONS(2870), + [anon_sym_PERCENT_EQ] = ACTIONS(2870), + [anon_sym_LT_LT_EQ] = ACTIONS(2870), + [anon_sym_GT_GT_EQ] = ACTIONS(2870), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(2870), + [anon_sym_AMP_EQ] = ACTIONS(2870), + [anon_sym_AMP_CARET_EQ] = ACTIONS(2870), + [anon_sym_PLUS_EQ] = ACTIONS(2870), + [anon_sym_DASH_EQ] = ACTIONS(2870), + [anon_sym_PIPE_EQ] = ACTIONS(2870), + [anon_sym_CARET_EQ] = ACTIONS(2870), + [anon_sym_COLON_EQ] = ACTIONS(2870), + [anon_sym_shared] = ACTIONS(2870), + [anon_sym_map_LBRACK] = ACTIONS(2870), + [anon_sym_chan] = ACTIONS(2870), + [anon_sym_thread] = ACTIONS(2870), + [anon_sym_atomic] = ACTIONS(2870), }, [1597] = { [sym_line_comment] = STATE(1597), [sym_block_comment] = STATE(1597), - [sym_identifier] = ACTIONS(2225), - [anon_sym_LF] = ACTIONS(2225), - [anon_sym_CR] = ACTIONS(2225), - [anon_sym_CR_LF] = ACTIONS(2225), + [sym_identifier] = ACTIONS(2914), + [anon_sym_LF] = ACTIONS(2914), + [anon_sym_CR] = ACTIONS(2914), + [anon_sym_CR_LF] = ACTIONS(2914), [anon_sym_SLASH_SLASH] = ACTIONS(497), [anon_sym_SLASH_STAR] = ACTIONS(499), - [anon_sym_DOT] = ACTIONS(2225), - [anon_sym_as] = ACTIONS(2225), - [anon_sym_COMMA] = ACTIONS(2225), - [anon_sym_RBRACE] = ACTIONS(2225), - [anon_sym_LPAREN] = ACTIONS(2225), - [anon_sym_EQ] = ACTIONS(2225), - [anon_sym_PIPE] = ACTIONS(2225), - [anon_sym_fn] = ACTIONS(2225), - [anon_sym_PLUS] = ACTIONS(2225), - [anon_sym_DASH] = ACTIONS(2225), - [anon_sym_STAR] = ACTIONS(2225), - [anon_sym_SLASH] = ACTIONS(2225), - [anon_sym_PERCENT] = ACTIONS(2225), - [anon_sym_LT] = ACTIONS(2225), - [anon_sym_GT] = ACTIONS(2225), - [anon_sym_EQ_EQ] = ACTIONS(2225), - [anon_sym_BANG_EQ] = ACTIONS(2225), - [anon_sym_LT_EQ] = ACTIONS(2225), - [anon_sym_GT_EQ] = ACTIONS(2225), - [anon_sym_LBRACK] = ACTIONS(2223), - [anon_sym_struct] = ACTIONS(2225), - [anon_sym_PLUS_PLUS] = ACTIONS(2225), - [anon_sym_DASH_DASH] = ACTIONS(2225), - [anon_sym_QMARK] = ACTIONS(2225), - [anon_sym_BANG] = ACTIONS(2225), - [anon_sym_LBRACK2] = ACTIONS(2225), - [anon_sym_CARET] = ACTIONS(2225), - [anon_sym_AMP] = ACTIONS(2225), - [anon_sym_LT_LT] = ACTIONS(2225), - [anon_sym_GT_GT] = ACTIONS(2225), - [anon_sym_GT_GT_GT] = ACTIONS(2225), - [anon_sym_AMP_CARET] = ACTIONS(2225), - [anon_sym_AMP_AMP] = ACTIONS(2225), - [anon_sym_PIPE_PIPE] = ACTIONS(2225), - [anon_sym_or] = ACTIONS(2225), - [anon_sym_QMARK_DOT] = ACTIONS(2225), - [anon_sym_POUND_LBRACK] = ACTIONS(2225), - [anon_sym_is] = ACTIONS(2225), - [anon_sym_BANGis] = ACTIONS(2225), - [anon_sym_in] = ACTIONS(2225), - [anon_sym_BANGin] = ACTIONS(2225), - [anon_sym_STAR_EQ] = ACTIONS(2225), - [anon_sym_SLASH_EQ] = ACTIONS(2225), - [anon_sym_PERCENT_EQ] = ACTIONS(2225), - [anon_sym_LT_LT_EQ] = ACTIONS(2225), - [anon_sym_GT_GT_EQ] = ACTIONS(2225), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(2225), - [anon_sym_AMP_EQ] = ACTIONS(2225), - [anon_sym_AMP_CARET_EQ] = ACTIONS(2225), - [anon_sym_PLUS_EQ] = ACTIONS(2225), - [anon_sym_DASH_EQ] = ACTIONS(2225), - [anon_sym_PIPE_EQ] = ACTIONS(2225), - [anon_sym_CARET_EQ] = ACTIONS(2225), - [anon_sym_COLON_EQ] = ACTIONS(2225), - [anon_sym_shared] = ACTIONS(2225), - [anon_sym_map_LBRACK] = ACTIONS(2225), - [anon_sym_chan] = ACTIONS(2225), - [anon_sym_thread] = ACTIONS(2225), - [anon_sym_atomic] = ACTIONS(2225), + [anon_sym_DOT] = ACTIONS(2914), + [anon_sym_as] = ACTIONS(2914), + [anon_sym_COMMA] = ACTIONS(2914), + [anon_sym_RBRACE] = ACTIONS(2914), + [anon_sym_LPAREN] = ACTIONS(2914), + [anon_sym_EQ] = ACTIONS(2914), + [anon_sym_PIPE] = ACTIONS(2914), + [anon_sym_fn] = ACTIONS(2914), + [anon_sym_PLUS] = ACTIONS(2914), + [anon_sym_DASH] = ACTIONS(2914), + [anon_sym_STAR] = ACTIONS(2914), + [anon_sym_SLASH] = ACTIONS(2914), + [anon_sym_PERCENT] = ACTIONS(2914), + [anon_sym_LT] = ACTIONS(2914), + [anon_sym_GT] = ACTIONS(2914), + [anon_sym_EQ_EQ] = ACTIONS(2914), + [anon_sym_BANG_EQ] = ACTIONS(2914), + [anon_sym_LT_EQ] = ACTIONS(2914), + [anon_sym_GT_EQ] = ACTIONS(2914), + [anon_sym_LBRACK] = ACTIONS(2912), + [anon_sym_struct] = ACTIONS(2914), + [anon_sym_PLUS_PLUS] = ACTIONS(2914), + [anon_sym_DASH_DASH] = ACTIONS(2914), + [anon_sym_QMARK] = ACTIONS(2914), + [anon_sym_BANG] = ACTIONS(2914), + [anon_sym_LBRACK2] = ACTIONS(2914), + [anon_sym_CARET] = ACTIONS(2914), + [anon_sym_AMP] = ACTIONS(2914), + [anon_sym_LT_LT] = ACTIONS(2914), + [anon_sym_GT_GT] = ACTIONS(2914), + [anon_sym_GT_GT_GT] = ACTIONS(2914), + [anon_sym_AMP_CARET] = ACTIONS(2914), + [anon_sym_AMP_AMP] = ACTIONS(2914), + [anon_sym_PIPE_PIPE] = ACTIONS(2914), + [anon_sym_or] = ACTIONS(2914), + [anon_sym_QMARK_DOT] = ACTIONS(2914), + [anon_sym_POUND_LBRACK] = ACTIONS(2914), + [anon_sym_is] = ACTIONS(2914), + [anon_sym_BANGis] = ACTIONS(2914), + [anon_sym_in] = ACTIONS(2914), + [anon_sym_BANGin] = ACTIONS(2914), + [anon_sym_STAR_EQ] = ACTIONS(2914), + [anon_sym_SLASH_EQ] = ACTIONS(2914), + [anon_sym_PERCENT_EQ] = ACTIONS(2914), + [anon_sym_LT_LT_EQ] = ACTIONS(2914), + [anon_sym_GT_GT_EQ] = ACTIONS(2914), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(2914), + [anon_sym_AMP_EQ] = ACTIONS(2914), + [anon_sym_AMP_CARET_EQ] = ACTIONS(2914), + [anon_sym_PLUS_EQ] = ACTIONS(2914), + [anon_sym_DASH_EQ] = ACTIONS(2914), + [anon_sym_PIPE_EQ] = ACTIONS(2914), + [anon_sym_CARET_EQ] = ACTIONS(2914), + [anon_sym_COLON_EQ] = ACTIONS(2914), + [anon_sym_shared] = ACTIONS(2914), + [anon_sym_map_LBRACK] = ACTIONS(2914), + [anon_sym_chan] = ACTIONS(2914), + [anon_sym_thread] = ACTIONS(2914), + [anon_sym_atomic] = ACTIONS(2914), }, [1598] = { [sym_line_comment] = STATE(1598), [sym_block_comment] = STATE(1598), - [sym_identifier] = ACTIONS(2912), - [anon_sym_SLASH_SLASH] = ACTIONS(3), - [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(2910), - [anon_sym_as] = ACTIONS(2912), - [anon_sym_LBRACE] = ACTIONS(2910), - [anon_sym_COMMA] = ACTIONS(2910), - [anon_sym_LPAREN] = ACTIONS(2910), - [anon_sym_EQ] = ACTIONS(2912), - [anon_sym_PIPE] = ACTIONS(2912), - [anon_sym_fn] = ACTIONS(2912), - [anon_sym_PLUS] = ACTIONS(2912), - [anon_sym_DASH] = ACTIONS(2912), - [anon_sym_STAR] = ACTIONS(2912), - [anon_sym_SLASH] = ACTIONS(2912), - [anon_sym_PERCENT] = ACTIONS(2912), - [anon_sym_LT] = ACTIONS(2912), - [anon_sym_GT] = ACTIONS(2912), - [anon_sym_EQ_EQ] = ACTIONS(2910), - [anon_sym_BANG_EQ] = ACTIONS(2910), - [anon_sym_LT_EQ] = ACTIONS(2910), - [anon_sym_GT_EQ] = ACTIONS(2910), - [anon_sym_LBRACK] = ACTIONS(2910), - [anon_sym_struct] = ACTIONS(2912), - [anon_sym_COLON] = ACTIONS(2910), - [anon_sym_PLUS_PLUS] = ACTIONS(2910), - [anon_sym_DASH_DASH] = ACTIONS(2910), - [anon_sym_QMARK] = ACTIONS(2912), - [anon_sym_BANG] = ACTIONS(2912), - [anon_sym_LBRACK2] = ACTIONS(2912), - [anon_sym_CARET] = ACTIONS(2912), - [anon_sym_AMP] = ACTIONS(2912), - [anon_sym_LT_DASH] = ACTIONS(2910), - [anon_sym_LT_LT] = ACTIONS(2912), - [anon_sym_GT_GT] = ACTIONS(2912), - [anon_sym_GT_GT_GT] = ACTIONS(2912), - [anon_sym_AMP_CARET] = ACTIONS(2912), - [anon_sym_AMP_AMP] = ACTIONS(2910), - [anon_sym_PIPE_PIPE] = ACTIONS(2910), - [anon_sym_or] = ACTIONS(2912), - [anon_sym_QMARK_DOT] = ACTIONS(2910), - [anon_sym_POUND_LBRACK] = ACTIONS(2910), - [anon_sym_is] = ACTIONS(2912), - [anon_sym_BANGis] = ACTIONS(2910), - [anon_sym_in] = ACTIONS(2912), - [anon_sym_BANGin] = ACTIONS(2910), - [anon_sym_STAR_EQ] = ACTIONS(2910), - [anon_sym_SLASH_EQ] = ACTIONS(2910), - [anon_sym_PERCENT_EQ] = ACTIONS(2910), - [anon_sym_LT_LT_EQ] = ACTIONS(2910), - [anon_sym_GT_GT_EQ] = ACTIONS(2910), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(2910), - [anon_sym_AMP_EQ] = ACTIONS(2910), - [anon_sym_AMP_CARET_EQ] = ACTIONS(2910), - [anon_sym_PLUS_EQ] = ACTIONS(2910), - [anon_sym_DASH_EQ] = ACTIONS(2910), - [anon_sym_PIPE_EQ] = ACTIONS(2910), - [anon_sym_CARET_EQ] = ACTIONS(2910), - [anon_sym_shared] = ACTIONS(2912), - [anon_sym_map_LBRACK] = ACTIONS(2910), - [anon_sym_chan] = ACTIONS(2912), - [anon_sym_thread] = ACTIONS(2912), - [anon_sym_atomic] = ACTIONS(2912), + [sym_identifier] = ACTIONS(2918), + [anon_sym_LF] = ACTIONS(2918), + [anon_sym_CR] = ACTIONS(2918), + [anon_sym_CR_LF] = ACTIONS(2918), + [anon_sym_SLASH_SLASH] = ACTIONS(497), + [anon_sym_SLASH_STAR] = ACTIONS(499), + [anon_sym_DOT] = ACTIONS(2918), + [anon_sym_as] = ACTIONS(2918), + [anon_sym_COMMA] = ACTIONS(2918), + [anon_sym_RBRACE] = ACTIONS(2918), + [anon_sym_LPAREN] = ACTIONS(2918), + [anon_sym_EQ] = ACTIONS(2918), + [anon_sym_PIPE] = ACTIONS(2918), + [anon_sym_fn] = ACTIONS(2918), + [anon_sym_PLUS] = ACTIONS(2918), + [anon_sym_DASH] = ACTIONS(2918), + [anon_sym_STAR] = ACTIONS(2918), + [anon_sym_SLASH] = ACTIONS(2918), + [anon_sym_PERCENT] = ACTIONS(2918), + [anon_sym_LT] = ACTIONS(2918), + [anon_sym_GT] = ACTIONS(2918), + [anon_sym_EQ_EQ] = ACTIONS(2918), + [anon_sym_BANG_EQ] = ACTIONS(2918), + [anon_sym_LT_EQ] = ACTIONS(2918), + [anon_sym_GT_EQ] = ACTIONS(2918), + [anon_sym_LBRACK] = ACTIONS(2916), + [anon_sym_struct] = ACTIONS(2918), + [anon_sym_PLUS_PLUS] = ACTIONS(2918), + [anon_sym_DASH_DASH] = ACTIONS(2918), + [anon_sym_QMARK] = ACTIONS(2918), + [anon_sym_BANG] = ACTIONS(2918), + [anon_sym_LBRACK2] = ACTIONS(2918), + [anon_sym_CARET] = ACTIONS(2918), + [anon_sym_AMP] = ACTIONS(2918), + [anon_sym_LT_LT] = ACTIONS(2918), + [anon_sym_GT_GT] = ACTIONS(2918), + [anon_sym_GT_GT_GT] = ACTIONS(2918), + [anon_sym_AMP_CARET] = ACTIONS(2918), + [anon_sym_AMP_AMP] = ACTIONS(2918), + [anon_sym_PIPE_PIPE] = ACTIONS(2918), + [anon_sym_or] = ACTIONS(2918), + [anon_sym_QMARK_DOT] = ACTIONS(2918), + [anon_sym_POUND_LBRACK] = ACTIONS(2918), + [anon_sym_is] = ACTIONS(2918), + [anon_sym_BANGis] = ACTIONS(2918), + [anon_sym_in] = ACTIONS(2918), + [anon_sym_BANGin] = ACTIONS(2918), + [anon_sym_STAR_EQ] = ACTIONS(2918), + [anon_sym_SLASH_EQ] = ACTIONS(2918), + [anon_sym_PERCENT_EQ] = ACTIONS(2918), + [anon_sym_LT_LT_EQ] = ACTIONS(2918), + [anon_sym_GT_GT_EQ] = ACTIONS(2918), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(2918), + [anon_sym_AMP_EQ] = ACTIONS(2918), + [anon_sym_AMP_CARET_EQ] = ACTIONS(2918), + [anon_sym_PLUS_EQ] = ACTIONS(2918), + [anon_sym_DASH_EQ] = ACTIONS(2918), + [anon_sym_PIPE_EQ] = ACTIONS(2918), + [anon_sym_CARET_EQ] = ACTIONS(2918), + [anon_sym_COLON_EQ] = ACTIONS(2918), + [anon_sym_shared] = ACTIONS(2918), + [anon_sym_map_LBRACK] = ACTIONS(2918), + [anon_sym_chan] = ACTIONS(2918), + [anon_sym_thread] = ACTIONS(2918), + [anon_sym_atomic] = ACTIONS(2918), }, [1599] = { [sym_line_comment] = STATE(1599), [sym_block_comment] = STATE(1599), - [sym_identifier] = ACTIONS(2153), + [sym_identifier] = ACTIONS(2812), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_SEMI] = ACTIONS(2151), - [anon_sym_DOT] = ACTIONS(2151), - [anon_sym_as] = ACTIONS(2153), - [anon_sym_LBRACE] = ACTIONS(2151), - [anon_sym_COMMA] = ACTIONS(2151), - [anon_sym_LPAREN] = ACTIONS(2151), - [anon_sym_EQ] = ACTIONS(2153), - [anon_sym_PIPE] = ACTIONS(2153), - [anon_sym_fn] = ACTIONS(2153), - [anon_sym_PLUS] = ACTIONS(2153), - [anon_sym_DASH] = ACTIONS(2153), - [anon_sym_STAR] = ACTIONS(2153), - [anon_sym_SLASH] = ACTIONS(2153), - [anon_sym_PERCENT] = ACTIONS(2153), - [anon_sym_LT] = ACTIONS(2153), - [anon_sym_GT] = ACTIONS(2153), - [anon_sym_EQ_EQ] = ACTIONS(2151), - [anon_sym_BANG_EQ] = ACTIONS(2151), - [anon_sym_LT_EQ] = ACTIONS(2151), - [anon_sym_GT_EQ] = ACTIONS(2151), - [anon_sym_LBRACK] = ACTIONS(2151), - [anon_sym_struct] = ACTIONS(2153), - [anon_sym_PLUS_PLUS] = ACTIONS(2151), - [anon_sym_DASH_DASH] = ACTIONS(2151), - [anon_sym_QMARK] = ACTIONS(2153), - [anon_sym_BANG] = ACTIONS(2153), - [anon_sym_LBRACK2] = ACTIONS(2153), - [anon_sym_CARET] = ACTIONS(2153), - [anon_sym_AMP] = ACTIONS(2153), - [anon_sym_LT_LT] = ACTIONS(2153), - [anon_sym_GT_GT] = ACTIONS(2153), - [anon_sym_GT_GT_GT] = ACTIONS(2153), - [anon_sym_AMP_CARET] = ACTIONS(2153), - [anon_sym_AMP_AMP] = ACTIONS(2151), - [anon_sym_PIPE_PIPE] = ACTIONS(2151), - [anon_sym_or] = ACTIONS(2153), - [anon_sym_QMARK_DOT] = ACTIONS(2151), - [anon_sym_POUND_LBRACK] = ACTIONS(2151), - [anon_sym_is] = ACTIONS(2153), - [anon_sym_BANGis] = ACTIONS(2151), - [anon_sym_in] = ACTIONS(2153), - [anon_sym_BANGin] = ACTIONS(2151), - [anon_sym_STAR_EQ] = ACTIONS(2151), - [anon_sym_SLASH_EQ] = ACTIONS(2151), - [anon_sym_PERCENT_EQ] = ACTIONS(2151), - [anon_sym_LT_LT_EQ] = ACTIONS(2151), - [anon_sym_GT_GT_EQ] = ACTIONS(2151), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(2151), - [anon_sym_AMP_EQ] = ACTIONS(2151), - [anon_sym_AMP_CARET_EQ] = ACTIONS(2151), - [anon_sym_PLUS_EQ] = ACTIONS(2151), - [anon_sym_DASH_EQ] = ACTIONS(2151), - [anon_sym_PIPE_EQ] = ACTIONS(2151), - [anon_sym_CARET_EQ] = ACTIONS(2151), - [anon_sym_COLON_EQ] = ACTIONS(2151), - [anon_sym_shared] = ACTIONS(2153), - [anon_sym_map_LBRACK] = ACTIONS(2151), - [anon_sym_chan] = ACTIONS(2153), - [anon_sym_thread] = ACTIONS(2153), - [anon_sym_atomic] = ACTIONS(2153), + [anon_sym_DOT] = ACTIONS(2810), + [anon_sym_as] = ACTIONS(2812), + [anon_sym_LBRACE] = ACTIONS(2810), + [anon_sym_COMMA] = ACTIONS(2810), + [anon_sym_LPAREN] = ACTIONS(2810), + [anon_sym_EQ] = ACTIONS(2812), + [anon_sym_PIPE] = ACTIONS(2812), + [anon_sym_fn] = ACTIONS(2812), + [anon_sym_PLUS] = ACTIONS(2812), + [anon_sym_DASH] = ACTIONS(2812), + [anon_sym_STAR] = ACTIONS(2812), + [anon_sym_SLASH] = ACTIONS(2812), + [anon_sym_PERCENT] = ACTIONS(2812), + [anon_sym_LT] = ACTIONS(2812), + [anon_sym_GT] = ACTIONS(2812), + [anon_sym_EQ_EQ] = ACTIONS(2810), + [anon_sym_BANG_EQ] = ACTIONS(2810), + [anon_sym_LT_EQ] = ACTIONS(2810), + [anon_sym_GT_EQ] = ACTIONS(2810), + [anon_sym_LBRACK] = ACTIONS(2810), + [anon_sym_struct] = ACTIONS(2812), + [anon_sym_COLON] = ACTIONS(2810), + [anon_sym_PLUS_PLUS] = ACTIONS(2810), + [anon_sym_DASH_DASH] = ACTIONS(2810), + [anon_sym_QMARK] = ACTIONS(2812), + [anon_sym_BANG] = ACTIONS(2812), + [anon_sym_LBRACK2] = ACTIONS(2812), + [anon_sym_CARET] = ACTIONS(2812), + [anon_sym_AMP] = ACTIONS(2812), + [anon_sym_LT_DASH] = ACTIONS(2810), + [anon_sym_LT_LT] = ACTIONS(2812), + [anon_sym_GT_GT] = ACTIONS(2812), + [anon_sym_GT_GT_GT] = ACTIONS(2812), + [anon_sym_AMP_CARET] = ACTIONS(2812), + [anon_sym_AMP_AMP] = ACTIONS(2810), + [anon_sym_PIPE_PIPE] = ACTIONS(2810), + [anon_sym_or] = ACTIONS(2812), + [anon_sym_QMARK_DOT] = ACTIONS(2810), + [anon_sym_POUND_LBRACK] = ACTIONS(2810), + [anon_sym_is] = ACTIONS(2812), + [anon_sym_BANGis] = ACTIONS(2810), + [anon_sym_in] = ACTIONS(2812), + [anon_sym_BANGin] = ACTIONS(2810), + [anon_sym_STAR_EQ] = ACTIONS(2810), + [anon_sym_SLASH_EQ] = ACTIONS(2810), + [anon_sym_PERCENT_EQ] = ACTIONS(2810), + [anon_sym_LT_LT_EQ] = ACTIONS(2810), + [anon_sym_GT_GT_EQ] = ACTIONS(2810), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(2810), + [anon_sym_AMP_EQ] = ACTIONS(2810), + [anon_sym_AMP_CARET_EQ] = ACTIONS(2810), + [anon_sym_PLUS_EQ] = ACTIONS(2810), + [anon_sym_DASH_EQ] = ACTIONS(2810), + [anon_sym_PIPE_EQ] = ACTIONS(2810), + [anon_sym_CARET_EQ] = ACTIONS(2810), + [anon_sym_shared] = ACTIONS(2812), + [anon_sym_map_LBRACK] = ACTIONS(2810), + [anon_sym_chan] = ACTIONS(2812), + [anon_sym_thread] = ACTIONS(2812), + [anon_sym_atomic] = ACTIONS(2812), }, [1600] = { [sym_line_comment] = STATE(1600), [sym_block_comment] = STATE(1600), - [sym_identifier] = ACTIONS(2912), + [sym_identifier] = ACTIONS(2870), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_SEMI] = ACTIONS(2910), - [anon_sym_DOT] = ACTIONS(2910), - [anon_sym_as] = ACTIONS(2912), - [anon_sym_LBRACE] = ACTIONS(2910), - [anon_sym_COMMA] = ACTIONS(2910), - [anon_sym_LPAREN] = ACTIONS(2910), - [anon_sym_EQ] = ACTIONS(2912), - [anon_sym_PIPE] = ACTIONS(2912), - [anon_sym_fn] = ACTIONS(2912), - [anon_sym_PLUS] = ACTIONS(2912), - [anon_sym_DASH] = ACTIONS(2912), - [anon_sym_STAR] = ACTIONS(2912), - [anon_sym_SLASH] = ACTIONS(2912), - [anon_sym_PERCENT] = ACTIONS(2912), - [anon_sym_LT] = ACTIONS(2912), - [anon_sym_GT] = ACTIONS(2912), - [anon_sym_EQ_EQ] = ACTIONS(2910), - [anon_sym_BANG_EQ] = ACTIONS(2910), - [anon_sym_LT_EQ] = ACTIONS(2910), - [anon_sym_GT_EQ] = ACTIONS(2910), - [anon_sym_LBRACK] = ACTIONS(2910), - [anon_sym_struct] = ACTIONS(2912), - [anon_sym_PLUS_PLUS] = ACTIONS(2910), - [anon_sym_DASH_DASH] = ACTIONS(2910), - [anon_sym_QMARK] = ACTIONS(2912), - [anon_sym_BANG] = ACTIONS(2912), - [anon_sym_LBRACK2] = ACTIONS(2912), - [anon_sym_CARET] = ACTIONS(2912), - [anon_sym_AMP] = ACTIONS(2912), - [anon_sym_LT_LT] = ACTIONS(2912), - [anon_sym_GT_GT] = ACTIONS(2912), - [anon_sym_GT_GT_GT] = ACTIONS(2912), - [anon_sym_AMP_CARET] = ACTIONS(2912), - [anon_sym_AMP_AMP] = ACTIONS(2910), - [anon_sym_PIPE_PIPE] = ACTIONS(2910), - [anon_sym_or] = ACTIONS(2912), - [anon_sym_QMARK_DOT] = ACTIONS(2910), - [anon_sym_POUND_LBRACK] = ACTIONS(2910), - [anon_sym_is] = ACTIONS(2912), - [anon_sym_BANGis] = ACTIONS(2910), - [anon_sym_in] = ACTIONS(2912), - [anon_sym_BANGin] = ACTIONS(2910), - [anon_sym_STAR_EQ] = ACTIONS(2910), - [anon_sym_SLASH_EQ] = ACTIONS(2910), - [anon_sym_PERCENT_EQ] = ACTIONS(2910), - [anon_sym_LT_LT_EQ] = ACTIONS(2910), - [anon_sym_GT_GT_EQ] = ACTIONS(2910), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(2910), - [anon_sym_AMP_EQ] = ACTIONS(2910), - [anon_sym_AMP_CARET_EQ] = ACTIONS(2910), - [anon_sym_PLUS_EQ] = ACTIONS(2910), - [anon_sym_DASH_EQ] = ACTIONS(2910), - [anon_sym_PIPE_EQ] = ACTIONS(2910), - [anon_sym_CARET_EQ] = ACTIONS(2910), - [anon_sym_COLON_EQ] = ACTIONS(2910), - [anon_sym_shared] = ACTIONS(2912), - [anon_sym_map_LBRACK] = ACTIONS(2910), - [anon_sym_chan] = ACTIONS(2912), - [anon_sym_thread] = ACTIONS(2912), - [anon_sym_atomic] = ACTIONS(2912), + [anon_sym_DOT] = ACTIONS(2868), + [anon_sym_as] = ACTIONS(2870), + [anon_sym_LBRACE] = ACTIONS(2868), + [anon_sym_COMMA] = ACTIONS(2868), + [anon_sym_LPAREN] = ACTIONS(2868), + [anon_sym_EQ] = ACTIONS(2870), + [anon_sym_PIPE] = ACTIONS(2870), + [anon_sym_fn] = ACTIONS(2870), + [anon_sym_PLUS] = ACTIONS(2870), + [anon_sym_DASH] = ACTIONS(2870), + [anon_sym_STAR] = ACTIONS(2870), + [anon_sym_SLASH] = ACTIONS(2870), + [anon_sym_PERCENT] = ACTIONS(2870), + [anon_sym_LT] = ACTIONS(2870), + [anon_sym_GT] = ACTIONS(2870), + [anon_sym_EQ_EQ] = ACTIONS(2868), + [anon_sym_BANG_EQ] = ACTIONS(2868), + [anon_sym_LT_EQ] = ACTIONS(2868), + [anon_sym_GT_EQ] = ACTIONS(2868), + [anon_sym_LBRACK] = ACTIONS(2868), + [anon_sym_struct] = ACTIONS(2870), + [anon_sym_COLON] = ACTIONS(2868), + [anon_sym_PLUS_PLUS] = ACTIONS(2868), + [anon_sym_DASH_DASH] = ACTIONS(2868), + [anon_sym_QMARK] = ACTIONS(2870), + [anon_sym_BANG] = ACTIONS(2870), + [anon_sym_LBRACK2] = ACTIONS(2870), + [anon_sym_CARET] = ACTIONS(2870), + [anon_sym_AMP] = ACTIONS(2870), + [anon_sym_LT_DASH] = ACTIONS(2868), + [anon_sym_LT_LT] = ACTIONS(2870), + [anon_sym_GT_GT] = ACTIONS(2870), + [anon_sym_GT_GT_GT] = ACTIONS(2870), + [anon_sym_AMP_CARET] = ACTIONS(2870), + [anon_sym_AMP_AMP] = ACTIONS(2868), + [anon_sym_PIPE_PIPE] = ACTIONS(2868), + [anon_sym_or] = ACTIONS(2870), + [anon_sym_QMARK_DOT] = ACTIONS(2868), + [anon_sym_POUND_LBRACK] = ACTIONS(2868), + [anon_sym_is] = ACTIONS(2870), + [anon_sym_BANGis] = ACTIONS(2868), + [anon_sym_in] = ACTIONS(2870), + [anon_sym_BANGin] = ACTIONS(2868), + [anon_sym_STAR_EQ] = ACTIONS(2868), + [anon_sym_SLASH_EQ] = ACTIONS(2868), + [anon_sym_PERCENT_EQ] = ACTIONS(2868), + [anon_sym_LT_LT_EQ] = ACTIONS(2868), + [anon_sym_GT_GT_EQ] = ACTIONS(2868), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(2868), + [anon_sym_AMP_EQ] = ACTIONS(2868), + [anon_sym_AMP_CARET_EQ] = ACTIONS(2868), + [anon_sym_PLUS_EQ] = ACTIONS(2868), + [anon_sym_DASH_EQ] = ACTIONS(2868), + [anon_sym_PIPE_EQ] = ACTIONS(2868), + [anon_sym_CARET_EQ] = ACTIONS(2868), + [anon_sym_shared] = ACTIONS(2870), + [anon_sym_map_LBRACK] = ACTIONS(2868), + [anon_sym_chan] = ACTIONS(2870), + [anon_sym_thread] = ACTIONS(2870), + [anon_sym_atomic] = ACTIONS(2870), }, [1601] = { [sym_line_comment] = STATE(1601), [sym_block_comment] = STATE(1601), - [sym_type_parameters] = STATE(4263), - [sym_argument_list] = STATE(1675), - [sym_or_block] = STATE(1689), - [aux_sym_strictly_expression_list_repeat1] = STATE(3270), - [anon_sym_LF] = ACTIONS(1651), - [anon_sym_CR] = ACTIONS(1651), - [anon_sym_CR_LF] = ACTIONS(1651), - [anon_sym_SLASH_SLASH] = ACTIONS(497), - [anon_sym_SLASH_STAR] = ACTIONS(499), - [anon_sym_DOT] = ACTIONS(4575), - [anon_sym_as] = ACTIONS(4577), - [anon_sym_COMMA] = ACTIONS(4579), - [anon_sym_RBRACE] = ACTIONS(1651), - [anon_sym_LPAREN] = ACTIONS(4581), - [anon_sym_EQ] = ACTIONS(1661), - [anon_sym_PIPE] = ACTIONS(4583), - [anon_sym_PLUS] = ACTIONS(4583), - [anon_sym_DASH] = ACTIONS(4583), - [anon_sym_STAR] = ACTIONS(4585), - [anon_sym_SLASH] = ACTIONS(4585), - [anon_sym_PERCENT] = ACTIONS(4585), - [anon_sym_LT] = ACTIONS(4587), - [anon_sym_GT] = ACTIONS(4587), - [anon_sym_EQ_EQ] = ACTIONS(4587), - [anon_sym_BANG_EQ] = ACTIONS(4587), - [anon_sym_LT_EQ] = ACTIONS(4587), - [anon_sym_GT_EQ] = ACTIONS(4587), - [anon_sym_LBRACK] = ACTIONS(4589), - [anon_sym_COLON] = ACTIONS(4591), - [anon_sym_PLUS_PLUS] = ACTIONS(4593), - [anon_sym_DASH_DASH] = ACTIONS(4595), - [anon_sym_QMARK] = ACTIONS(4597), - [anon_sym_BANG] = ACTIONS(4599), - [anon_sym_LBRACK2] = ACTIONS(4601), - [anon_sym_CARET] = ACTIONS(4583), - [anon_sym_AMP] = ACTIONS(4585), - [anon_sym_LT_DASH] = ACTIONS(4603), - [anon_sym_LT_LT] = ACTIONS(4605), - [anon_sym_GT_GT] = ACTIONS(4585), - [anon_sym_GT_GT_GT] = ACTIONS(4585), - [anon_sym_AMP_CARET] = ACTIONS(4585), - [anon_sym_AMP_AMP] = ACTIONS(4607), - [anon_sym_PIPE_PIPE] = ACTIONS(4609), - [anon_sym_or] = ACTIONS(4611), - [anon_sym_QMARK_DOT] = ACTIONS(4575), - [anon_sym_POUND_LBRACK] = ACTIONS(4601), - [anon_sym_is] = ACTIONS(4613), - [anon_sym_BANGis] = ACTIONS(4613), - [anon_sym_in] = ACTIONS(4615), - [anon_sym_BANGin] = ACTIONS(4615), - [anon_sym_STAR_EQ] = ACTIONS(1661), - [anon_sym_SLASH_EQ] = ACTIONS(1661), - [anon_sym_PERCENT_EQ] = ACTIONS(1661), - [anon_sym_LT_LT_EQ] = ACTIONS(1661), - [anon_sym_GT_GT_EQ] = ACTIONS(1661), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(1661), - [anon_sym_AMP_EQ] = ACTIONS(1661), - [anon_sym_AMP_CARET_EQ] = ACTIONS(1661), - [anon_sym_PLUS_EQ] = ACTIONS(1661), - [anon_sym_DASH_EQ] = ACTIONS(1661), - [anon_sym_PIPE_EQ] = ACTIONS(1661), - [anon_sym_CARET_EQ] = ACTIONS(1661), - [anon_sym_COLON_EQ] = ACTIONS(1661), + [sym_identifier] = ACTIONS(2918), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(2916), + [anon_sym_as] = ACTIONS(2918), + [anon_sym_LBRACE] = ACTIONS(2916), + [anon_sym_COMMA] = ACTIONS(2916), + [anon_sym_LPAREN] = ACTIONS(2916), + [anon_sym_EQ] = ACTIONS(2918), + [anon_sym_PIPE] = ACTIONS(2918), + [anon_sym_fn] = ACTIONS(2918), + [anon_sym_PLUS] = ACTIONS(2918), + [anon_sym_DASH] = ACTIONS(2918), + [anon_sym_STAR] = ACTIONS(2918), + [anon_sym_SLASH] = ACTIONS(2918), + [anon_sym_PERCENT] = ACTIONS(2918), + [anon_sym_LT] = ACTIONS(2918), + [anon_sym_GT] = ACTIONS(2918), + [anon_sym_EQ_EQ] = ACTIONS(2916), + [anon_sym_BANG_EQ] = ACTIONS(2916), + [anon_sym_LT_EQ] = ACTIONS(2916), + [anon_sym_GT_EQ] = ACTIONS(2916), + [anon_sym_LBRACK] = ACTIONS(2916), + [anon_sym_struct] = ACTIONS(2918), + [anon_sym_COLON] = ACTIONS(2916), + [anon_sym_PLUS_PLUS] = ACTIONS(2916), + [anon_sym_DASH_DASH] = ACTIONS(2916), + [anon_sym_QMARK] = ACTIONS(2918), + [anon_sym_BANG] = ACTIONS(2918), + [anon_sym_LBRACK2] = ACTIONS(2918), + [anon_sym_CARET] = ACTIONS(2918), + [anon_sym_AMP] = ACTIONS(2918), + [anon_sym_LT_DASH] = ACTIONS(2916), + [anon_sym_LT_LT] = ACTIONS(2918), + [anon_sym_GT_GT] = ACTIONS(2918), + [anon_sym_GT_GT_GT] = ACTIONS(2918), + [anon_sym_AMP_CARET] = ACTIONS(2918), + [anon_sym_AMP_AMP] = ACTIONS(2916), + [anon_sym_PIPE_PIPE] = ACTIONS(2916), + [anon_sym_or] = ACTIONS(2918), + [anon_sym_QMARK_DOT] = ACTIONS(2916), + [anon_sym_POUND_LBRACK] = ACTIONS(2916), + [anon_sym_is] = ACTIONS(2918), + [anon_sym_BANGis] = ACTIONS(2916), + [anon_sym_in] = ACTIONS(2918), + [anon_sym_BANGin] = ACTIONS(2916), + [anon_sym_STAR_EQ] = ACTIONS(2916), + [anon_sym_SLASH_EQ] = ACTIONS(2916), + [anon_sym_PERCENT_EQ] = ACTIONS(2916), + [anon_sym_LT_LT_EQ] = ACTIONS(2916), + [anon_sym_GT_GT_EQ] = ACTIONS(2916), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(2916), + [anon_sym_AMP_EQ] = ACTIONS(2916), + [anon_sym_AMP_CARET_EQ] = ACTIONS(2916), + [anon_sym_PLUS_EQ] = ACTIONS(2916), + [anon_sym_DASH_EQ] = ACTIONS(2916), + [anon_sym_PIPE_EQ] = ACTIONS(2916), + [anon_sym_CARET_EQ] = ACTIONS(2916), + [anon_sym_shared] = ACTIONS(2918), + [anon_sym_map_LBRACK] = ACTIONS(2916), + [anon_sym_chan] = ACTIONS(2918), + [anon_sym_thread] = ACTIONS(2918), + [anon_sym_atomic] = ACTIONS(2918), }, [1602] = { [sym_line_comment] = STATE(1602), [sym_block_comment] = STATE(1602), - [sym_identifier] = ACTIONS(2153), + [sym_identifier] = ACTIONS(2914), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(2151), - [anon_sym_as] = ACTIONS(2153), - [anon_sym_LBRACE] = ACTIONS(2151), - [anon_sym_COMMA] = ACTIONS(2151), - [anon_sym_LPAREN] = ACTIONS(2151), - [anon_sym_EQ] = ACTIONS(2153), - [anon_sym_PIPE] = ACTIONS(2153), - [anon_sym_fn] = ACTIONS(2153), - [anon_sym_PLUS] = ACTIONS(2153), - [anon_sym_DASH] = ACTIONS(2153), - [anon_sym_STAR] = ACTIONS(2153), - [anon_sym_SLASH] = ACTIONS(2153), - [anon_sym_PERCENT] = ACTIONS(2153), - [anon_sym_LT] = ACTIONS(2153), - [anon_sym_GT] = ACTIONS(2153), - [anon_sym_EQ_EQ] = ACTIONS(2151), - [anon_sym_BANG_EQ] = ACTIONS(2151), - [anon_sym_LT_EQ] = ACTIONS(2151), - [anon_sym_GT_EQ] = ACTIONS(2151), - [anon_sym_LBRACK] = ACTIONS(2151), - [anon_sym_struct] = ACTIONS(2153), - [anon_sym_COLON] = ACTIONS(2151), - [anon_sym_PLUS_PLUS] = ACTIONS(2151), - [anon_sym_DASH_DASH] = ACTIONS(2151), - [anon_sym_QMARK] = ACTIONS(2153), - [anon_sym_BANG] = ACTIONS(2153), - [anon_sym_LBRACK2] = ACTIONS(2153), - [anon_sym_CARET] = ACTIONS(2153), - [anon_sym_AMP] = ACTIONS(2153), - [anon_sym_LT_DASH] = ACTIONS(2151), - [anon_sym_LT_LT] = ACTIONS(2153), - [anon_sym_GT_GT] = ACTIONS(2153), - [anon_sym_GT_GT_GT] = ACTIONS(2153), - [anon_sym_AMP_CARET] = ACTIONS(2153), - [anon_sym_AMP_AMP] = ACTIONS(2151), - [anon_sym_PIPE_PIPE] = ACTIONS(2151), - [anon_sym_or] = ACTIONS(2153), - [anon_sym_QMARK_DOT] = ACTIONS(2151), - [anon_sym_POUND_LBRACK] = ACTIONS(2151), - [anon_sym_is] = ACTIONS(2153), - [anon_sym_BANGis] = ACTIONS(2151), - [anon_sym_in] = ACTIONS(2153), - [anon_sym_BANGin] = ACTIONS(2151), - [anon_sym_STAR_EQ] = ACTIONS(2151), - [anon_sym_SLASH_EQ] = ACTIONS(2151), - [anon_sym_PERCENT_EQ] = ACTIONS(2151), - [anon_sym_LT_LT_EQ] = ACTIONS(2151), - [anon_sym_GT_GT_EQ] = ACTIONS(2151), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(2151), - [anon_sym_AMP_EQ] = ACTIONS(2151), - [anon_sym_AMP_CARET_EQ] = ACTIONS(2151), - [anon_sym_PLUS_EQ] = ACTIONS(2151), - [anon_sym_DASH_EQ] = ACTIONS(2151), - [anon_sym_PIPE_EQ] = ACTIONS(2151), - [anon_sym_CARET_EQ] = ACTIONS(2151), - [anon_sym_shared] = ACTIONS(2153), - [anon_sym_map_LBRACK] = ACTIONS(2151), - [anon_sym_chan] = ACTIONS(2153), - [anon_sym_thread] = ACTIONS(2153), - [anon_sym_atomic] = ACTIONS(2153), + [anon_sym_DOT] = ACTIONS(2912), + [anon_sym_as] = ACTIONS(2914), + [anon_sym_LBRACE] = ACTIONS(2912), + [anon_sym_COMMA] = ACTIONS(2912), + [anon_sym_LPAREN] = ACTIONS(2912), + [anon_sym_EQ] = ACTIONS(2914), + [anon_sym_PIPE] = ACTIONS(2914), + [anon_sym_fn] = ACTIONS(2914), + [anon_sym_PLUS] = ACTIONS(2914), + [anon_sym_DASH] = ACTIONS(2914), + [anon_sym_STAR] = ACTIONS(2914), + [anon_sym_SLASH] = ACTIONS(2914), + [anon_sym_PERCENT] = ACTIONS(2914), + [anon_sym_LT] = ACTIONS(2914), + [anon_sym_GT] = ACTIONS(2914), + [anon_sym_EQ_EQ] = ACTIONS(2912), + [anon_sym_BANG_EQ] = ACTIONS(2912), + [anon_sym_LT_EQ] = ACTIONS(2912), + [anon_sym_GT_EQ] = ACTIONS(2912), + [anon_sym_LBRACK] = ACTIONS(2912), + [anon_sym_struct] = ACTIONS(2914), + [anon_sym_COLON] = ACTIONS(2912), + [anon_sym_PLUS_PLUS] = ACTIONS(2912), + [anon_sym_DASH_DASH] = ACTIONS(2912), + [anon_sym_QMARK] = ACTIONS(2914), + [anon_sym_BANG] = ACTIONS(2914), + [anon_sym_LBRACK2] = ACTIONS(2914), + [anon_sym_CARET] = ACTIONS(2914), + [anon_sym_AMP] = ACTIONS(2914), + [anon_sym_LT_DASH] = ACTIONS(2912), + [anon_sym_LT_LT] = ACTIONS(2914), + [anon_sym_GT_GT] = ACTIONS(2914), + [anon_sym_GT_GT_GT] = ACTIONS(2914), + [anon_sym_AMP_CARET] = ACTIONS(2914), + [anon_sym_AMP_AMP] = ACTIONS(2912), + [anon_sym_PIPE_PIPE] = ACTIONS(2912), + [anon_sym_or] = ACTIONS(2914), + [anon_sym_QMARK_DOT] = ACTIONS(2912), + [anon_sym_POUND_LBRACK] = ACTIONS(2912), + [anon_sym_is] = ACTIONS(2914), + [anon_sym_BANGis] = ACTIONS(2912), + [anon_sym_in] = ACTIONS(2914), + [anon_sym_BANGin] = ACTIONS(2912), + [anon_sym_STAR_EQ] = ACTIONS(2912), + [anon_sym_SLASH_EQ] = ACTIONS(2912), + [anon_sym_PERCENT_EQ] = ACTIONS(2912), + [anon_sym_LT_LT_EQ] = ACTIONS(2912), + [anon_sym_GT_GT_EQ] = ACTIONS(2912), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(2912), + [anon_sym_AMP_EQ] = ACTIONS(2912), + [anon_sym_AMP_CARET_EQ] = ACTIONS(2912), + [anon_sym_PLUS_EQ] = ACTIONS(2912), + [anon_sym_DASH_EQ] = ACTIONS(2912), + [anon_sym_PIPE_EQ] = ACTIONS(2912), + [anon_sym_CARET_EQ] = ACTIONS(2912), + [anon_sym_shared] = ACTIONS(2914), + [anon_sym_map_LBRACK] = ACTIONS(2912), + [anon_sym_chan] = ACTIONS(2914), + [anon_sym_thread] = ACTIONS(2914), + [anon_sym_atomic] = ACTIONS(2914), }, [1603] = { [sym_line_comment] = STATE(1603), [sym_block_comment] = STATE(1603), - [sym_identifier] = ACTIONS(2225), + [sym_identifier] = ACTIONS(2704), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_SEMI] = ACTIONS(2223), - [anon_sym_DOT] = ACTIONS(2223), - [anon_sym_as] = ACTIONS(2225), - [anon_sym_LBRACE] = ACTIONS(2223), - [anon_sym_COMMA] = ACTIONS(2223), - [anon_sym_LPAREN] = ACTIONS(2223), - [anon_sym_EQ] = ACTIONS(2225), - [anon_sym_PIPE] = ACTIONS(2225), - [anon_sym_fn] = ACTIONS(2225), - [anon_sym_PLUS] = ACTIONS(2225), - [anon_sym_DASH] = ACTIONS(2225), - [anon_sym_STAR] = ACTIONS(2225), - [anon_sym_SLASH] = ACTIONS(2225), - [anon_sym_PERCENT] = ACTIONS(2225), - [anon_sym_LT] = ACTIONS(2225), - [anon_sym_GT] = ACTIONS(2225), - [anon_sym_EQ_EQ] = ACTIONS(2223), - [anon_sym_BANG_EQ] = ACTIONS(2223), - [anon_sym_LT_EQ] = ACTIONS(2223), - [anon_sym_GT_EQ] = ACTIONS(2223), - [anon_sym_LBRACK] = ACTIONS(2223), - [anon_sym_struct] = ACTIONS(2225), - [anon_sym_PLUS_PLUS] = ACTIONS(2223), - [anon_sym_DASH_DASH] = ACTIONS(2223), - [anon_sym_QMARK] = ACTIONS(2225), - [anon_sym_BANG] = ACTIONS(2225), - [anon_sym_LBRACK2] = ACTIONS(2225), - [anon_sym_CARET] = ACTIONS(2225), - [anon_sym_AMP] = ACTIONS(2225), - [anon_sym_LT_LT] = ACTIONS(2225), - [anon_sym_GT_GT] = ACTIONS(2225), - [anon_sym_GT_GT_GT] = ACTIONS(2225), - [anon_sym_AMP_CARET] = ACTIONS(2225), - [anon_sym_AMP_AMP] = ACTIONS(2223), - [anon_sym_PIPE_PIPE] = ACTIONS(2223), - [anon_sym_or] = ACTIONS(2225), - [anon_sym_QMARK_DOT] = ACTIONS(2223), - [anon_sym_POUND_LBRACK] = ACTIONS(2223), - [anon_sym_is] = ACTIONS(2225), - [anon_sym_BANGis] = ACTIONS(2223), - [anon_sym_in] = ACTIONS(2225), - [anon_sym_BANGin] = ACTIONS(2223), - [anon_sym_STAR_EQ] = ACTIONS(2223), - [anon_sym_SLASH_EQ] = ACTIONS(2223), - [anon_sym_PERCENT_EQ] = ACTIONS(2223), - [anon_sym_LT_LT_EQ] = ACTIONS(2223), - [anon_sym_GT_GT_EQ] = ACTIONS(2223), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(2223), - [anon_sym_AMP_EQ] = ACTIONS(2223), - [anon_sym_AMP_CARET_EQ] = ACTIONS(2223), - [anon_sym_PLUS_EQ] = ACTIONS(2223), - [anon_sym_DASH_EQ] = ACTIONS(2223), - [anon_sym_PIPE_EQ] = ACTIONS(2223), - [anon_sym_CARET_EQ] = ACTIONS(2223), - [anon_sym_COLON_EQ] = ACTIONS(2223), - [anon_sym_shared] = ACTIONS(2225), - [anon_sym_map_LBRACK] = ACTIONS(2223), - [anon_sym_chan] = ACTIONS(2225), - [anon_sym_thread] = ACTIONS(2225), - [anon_sym_atomic] = ACTIONS(2225), + [anon_sym_SEMI] = ACTIONS(2702), + [anon_sym_DOT] = ACTIONS(2702), + [anon_sym_as] = ACTIONS(2704), + [anon_sym_LBRACE] = ACTIONS(2702), + [anon_sym_COMMA] = ACTIONS(2702), + [anon_sym_LPAREN] = ACTIONS(2702), + [anon_sym_EQ] = ACTIONS(2704), + [anon_sym_PIPE] = ACTIONS(2704), + [anon_sym_fn] = ACTIONS(2704), + [anon_sym_PLUS] = ACTIONS(2704), + [anon_sym_DASH] = ACTIONS(2704), + [anon_sym_STAR] = ACTIONS(2704), + [anon_sym_SLASH] = ACTIONS(2704), + [anon_sym_PERCENT] = ACTIONS(2704), + [anon_sym_LT] = ACTIONS(2704), + [anon_sym_GT] = ACTIONS(2704), + [anon_sym_EQ_EQ] = ACTIONS(2702), + [anon_sym_BANG_EQ] = ACTIONS(2702), + [anon_sym_LT_EQ] = ACTIONS(2702), + [anon_sym_GT_EQ] = ACTIONS(2702), + [anon_sym_LBRACK] = ACTIONS(2702), + [anon_sym_struct] = ACTIONS(2704), + [anon_sym_PLUS_PLUS] = ACTIONS(2702), + [anon_sym_DASH_DASH] = ACTIONS(2702), + [anon_sym_QMARK] = ACTIONS(2704), + [anon_sym_BANG] = ACTIONS(2704), + [anon_sym_LBRACK2] = ACTIONS(2704), + [anon_sym_CARET] = ACTIONS(2704), + [anon_sym_AMP] = ACTIONS(2704), + [anon_sym_LT_LT] = ACTIONS(2704), + [anon_sym_GT_GT] = ACTIONS(2704), + [anon_sym_GT_GT_GT] = ACTIONS(2704), + [anon_sym_AMP_CARET] = ACTIONS(2704), + [anon_sym_AMP_AMP] = ACTIONS(2702), + [anon_sym_PIPE_PIPE] = ACTIONS(2702), + [anon_sym_or] = ACTIONS(2704), + [anon_sym_QMARK_DOT] = ACTIONS(2702), + [anon_sym_POUND_LBRACK] = ACTIONS(2702), + [anon_sym_is] = ACTIONS(2704), + [anon_sym_BANGis] = ACTIONS(2702), + [anon_sym_in] = ACTIONS(2704), + [anon_sym_BANGin] = ACTIONS(2702), + [anon_sym_STAR_EQ] = ACTIONS(2702), + [anon_sym_SLASH_EQ] = ACTIONS(2702), + [anon_sym_PERCENT_EQ] = ACTIONS(2702), + [anon_sym_LT_LT_EQ] = ACTIONS(2702), + [anon_sym_GT_GT_EQ] = ACTIONS(2702), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(2702), + [anon_sym_AMP_EQ] = ACTIONS(2702), + [anon_sym_AMP_CARET_EQ] = ACTIONS(2702), + [anon_sym_PLUS_EQ] = ACTIONS(2702), + [anon_sym_DASH_EQ] = ACTIONS(2702), + [anon_sym_PIPE_EQ] = ACTIONS(2702), + [anon_sym_CARET_EQ] = ACTIONS(2702), + [anon_sym_COLON_EQ] = ACTIONS(2702), + [anon_sym_shared] = ACTIONS(2704), + [anon_sym_map_LBRACK] = ACTIONS(2702), + [anon_sym_chan] = ACTIONS(2704), + [anon_sym_thread] = ACTIONS(2704), + [anon_sym_atomic] = ACTIONS(2704), }, [1604] = { [sym_line_comment] = STATE(1604), [sym_block_comment] = STATE(1604), - [sym_identifier] = ACTIONS(2177), + [sym_identifier] = ACTIONS(2704), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(2175), - [anon_sym_as] = ACTIONS(2177), - [anon_sym_LBRACE] = ACTIONS(2175), - [anon_sym_COMMA] = ACTIONS(2175), - [anon_sym_LPAREN] = ACTIONS(2175), - [anon_sym_EQ] = ACTIONS(2177), - [anon_sym_PIPE] = ACTIONS(2177), - [anon_sym_fn] = ACTIONS(2177), - [anon_sym_PLUS] = ACTIONS(2177), - [anon_sym_DASH] = ACTIONS(2177), - [anon_sym_STAR] = ACTIONS(2177), - [anon_sym_SLASH] = ACTIONS(2177), - [anon_sym_PERCENT] = ACTIONS(2177), - [anon_sym_LT] = ACTIONS(2177), - [anon_sym_GT] = ACTIONS(2177), - [anon_sym_EQ_EQ] = ACTIONS(2175), - [anon_sym_BANG_EQ] = ACTIONS(2175), - [anon_sym_LT_EQ] = ACTIONS(2175), - [anon_sym_GT_EQ] = ACTIONS(2175), - [anon_sym_LBRACK] = ACTIONS(2175), - [anon_sym_struct] = ACTIONS(2177), - [anon_sym_COLON] = ACTIONS(2175), - [anon_sym_PLUS_PLUS] = ACTIONS(2175), - [anon_sym_DASH_DASH] = ACTIONS(2175), - [anon_sym_QMARK] = ACTIONS(2177), - [anon_sym_BANG] = ACTIONS(2177), - [anon_sym_LBRACK2] = ACTIONS(2177), - [anon_sym_CARET] = ACTIONS(2177), - [anon_sym_AMP] = ACTIONS(2177), - [anon_sym_LT_DASH] = ACTIONS(2175), - [anon_sym_LT_LT] = ACTIONS(2177), - [anon_sym_GT_GT] = ACTIONS(2177), - [anon_sym_GT_GT_GT] = ACTIONS(2177), - [anon_sym_AMP_CARET] = ACTIONS(2177), - [anon_sym_AMP_AMP] = ACTIONS(2175), - [anon_sym_PIPE_PIPE] = ACTIONS(2175), - [anon_sym_or] = ACTIONS(2177), - [anon_sym_QMARK_DOT] = ACTIONS(2175), - [anon_sym_POUND_LBRACK] = ACTIONS(2175), - [anon_sym_is] = ACTIONS(2177), - [anon_sym_BANGis] = ACTIONS(2175), - [anon_sym_in] = ACTIONS(2177), - [anon_sym_BANGin] = ACTIONS(2175), - [anon_sym_STAR_EQ] = ACTIONS(2175), - [anon_sym_SLASH_EQ] = ACTIONS(2175), - [anon_sym_PERCENT_EQ] = ACTIONS(2175), - [anon_sym_LT_LT_EQ] = ACTIONS(2175), - [anon_sym_GT_GT_EQ] = ACTIONS(2175), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(2175), - [anon_sym_AMP_EQ] = ACTIONS(2175), - [anon_sym_AMP_CARET_EQ] = ACTIONS(2175), - [anon_sym_PLUS_EQ] = ACTIONS(2175), - [anon_sym_DASH_EQ] = ACTIONS(2175), - [anon_sym_PIPE_EQ] = ACTIONS(2175), - [anon_sym_CARET_EQ] = ACTIONS(2175), - [anon_sym_shared] = ACTIONS(2177), - [anon_sym_map_LBRACK] = ACTIONS(2175), - [anon_sym_chan] = ACTIONS(2177), - [anon_sym_thread] = ACTIONS(2177), - [anon_sym_atomic] = ACTIONS(2177), + [anon_sym_DOT] = ACTIONS(2702), + [anon_sym_as] = ACTIONS(2704), + [anon_sym_LBRACE] = ACTIONS(2702), + [anon_sym_COMMA] = ACTIONS(2702), + [anon_sym_LPAREN] = ACTIONS(2702), + [anon_sym_EQ] = ACTIONS(2704), + [anon_sym_PIPE] = ACTIONS(2704), + [anon_sym_fn] = ACTIONS(2704), + [anon_sym_PLUS] = ACTIONS(2704), + [anon_sym_DASH] = ACTIONS(2704), + [anon_sym_STAR] = ACTIONS(2704), + [anon_sym_SLASH] = ACTIONS(2704), + [anon_sym_PERCENT] = ACTIONS(2704), + [anon_sym_LT] = ACTIONS(2704), + [anon_sym_GT] = ACTIONS(2704), + [anon_sym_EQ_EQ] = ACTIONS(2702), + [anon_sym_BANG_EQ] = ACTIONS(2702), + [anon_sym_LT_EQ] = ACTIONS(2702), + [anon_sym_GT_EQ] = ACTIONS(2702), + [anon_sym_LBRACK] = ACTIONS(2702), + [anon_sym_struct] = ACTIONS(2704), + [anon_sym_COLON] = ACTIONS(2702), + [anon_sym_PLUS_PLUS] = ACTIONS(2702), + [anon_sym_DASH_DASH] = ACTIONS(2702), + [anon_sym_QMARK] = ACTIONS(2704), + [anon_sym_BANG] = ACTIONS(2704), + [anon_sym_LBRACK2] = ACTIONS(2704), + [anon_sym_CARET] = ACTIONS(2704), + [anon_sym_AMP] = ACTIONS(2704), + [anon_sym_LT_DASH] = ACTIONS(2702), + [anon_sym_LT_LT] = ACTIONS(2704), + [anon_sym_GT_GT] = ACTIONS(2704), + [anon_sym_GT_GT_GT] = ACTIONS(2704), + [anon_sym_AMP_CARET] = ACTIONS(2704), + [anon_sym_AMP_AMP] = ACTIONS(2702), + [anon_sym_PIPE_PIPE] = ACTIONS(2702), + [anon_sym_or] = ACTIONS(2704), + [anon_sym_QMARK_DOT] = ACTIONS(2702), + [anon_sym_POUND_LBRACK] = ACTIONS(2702), + [anon_sym_is] = ACTIONS(2704), + [anon_sym_BANGis] = ACTIONS(2702), + [anon_sym_in] = ACTIONS(2704), + [anon_sym_BANGin] = ACTIONS(2702), + [anon_sym_STAR_EQ] = ACTIONS(2702), + [anon_sym_SLASH_EQ] = ACTIONS(2702), + [anon_sym_PERCENT_EQ] = ACTIONS(2702), + [anon_sym_LT_LT_EQ] = ACTIONS(2702), + [anon_sym_GT_GT_EQ] = ACTIONS(2702), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(2702), + [anon_sym_AMP_EQ] = ACTIONS(2702), + [anon_sym_AMP_CARET_EQ] = ACTIONS(2702), + [anon_sym_PLUS_EQ] = ACTIONS(2702), + [anon_sym_DASH_EQ] = ACTIONS(2702), + [anon_sym_PIPE_EQ] = ACTIONS(2702), + [anon_sym_CARET_EQ] = ACTIONS(2702), + [anon_sym_shared] = ACTIONS(2704), + [anon_sym_map_LBRACK] = ACTIONS(2702), + [anon_sym_chan] = ACTIONS(2704), + [anon_sym_thread] = ACTIONS(2704), + [anon_sym_atomic] = ACTIONS(2704), }, [1605] = { [sym_line_comment] = STATE(1605), [sym_block_comment] = STATE(1605), - [sym_identifier] = ACTIONS(2225), - [anon_sym_SLASH_SLASH] = ACTIONS(3), - [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(2223), - [anon_sym_as] = ACTIONS(2225), - [anon_sym_LBRACE] = ACTIONS(2223), - [anon_sym_COMMA] = ACTIONS(2223), - [anon_sym_LPAREN] = ACTIONS(2223), - [anon_sym_EQ] = ACTIONS(2225), - [anon_sym_PIPE] = ACTIONS(2225), - [anon_sym_fn] = ACTIONS(2225), - [anon_sym_PLUS] = ACTIONS(2225), - [anon_sym_DASH] = ACTIONS(2225), - [anon_sym_STAR] = ACTIONS(2225), - [anon_sym_SLASH] = ACTIONS(2225), - [anon_sym_PERCENT] = ACTIONS(2225), - [anon_sym_LT] = ACTIONS(2225), - [anon_sym_GT] = ACTIONS(2225), - [anon_sym_EQ_EQ] = ACTIONS(2223), - [anon_sym_BANG_EQ] = ACTIONS(2223), - [anon_sym_LT_EQ] = ACTIONS(2223), - [anon_sym_GT_EQ] = ACTIONS(2223), - [anon_sym_LBRACK] = ACTIONS(2223), - [anon_sym_struct] = ACTIONS(2225), - [anon_sym_COLON] = ACTIONS(2223), - [anon_sym_PLUS_PLUS] = ACTIONS(2223), - [anon_sym_DASH_DASH] = ACTIONS(2223), - [anon_sym_QMARK] = ACTIONS(2225), - [anon_sym_BANG] = ACTIONS(2225), - [anon_sym_LBRACK2] = ACTIONS(2225), - [anon_sym_CARET] = ACTIONS(2225), - [anon_sym_AMP] = ACTIONS(2225), - [anon_sym_LT_DASH] = ACTIONS(2223), - [anon_sym_LT_LT] = ACTIONS(2225), - [anon_sym_GT_GT] = ACTIONS(2225), - [anon_sym_GT_GT_GT] = ACTIONS(2225), - [anon_sym_AMP_CARET] = ACTIONS(2225), - [anon_sym_AMP_AMP] = ACTIONS(2223), - [anon_sym_PIPE_PIPE] = ACTIONS(2223), - [anon_sym_or] = ACTIONS(2225), - [anon_sym_QMARK_DOT] = ACTIONS(2223), - [anon_sym_POUND_LBRACK] = ACTIONS(2223), - [anon_sym_is] = ACTIONS(2225), - [anon_sym_BANGis] = ACTIONS(2223), - [anon_sym_in] = ACTIONS(2225), - [anon_sym_BANGin] = ACTIONS(2223), - [anon_sym_STAR_EQ] = ACTIONS(2223), - [anon_sym_SLASH_EQ] = ACTIONS(2223), - [anon_sym_PERCENT_EQ] = ACTIONS(2223), - [anon_sym_LT_LT_EQ] = ACTIONS(2223), - [anon_sym_GT_GT_EQ] = ACTIONS(2223), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(2223), - [anon_sym_AMP_EQ] = ACTIONS(2223), - [anon_sym_AMP_CARET_EQ] = ACTIONS(2223), - [anon_sym_PLUS_EQ] = ACTIONS(2223), - [anon_sym_DASH_EQ] = ACTIONS(2223), - [anon_sym_PIPE_EQ] = ACTIONS(2223), - [anon_sym_CARET_EQ] = ACTIONS(2223), - [anon_sym_shared] = ACTIONS(2225), - [anon_sym_map_LBRACK] = ACTIONS(2223), - [anon_sym_chan] = ACTIONS(2225), - [anon_sym_thread] = ACTIONS(2225), - [anon_sym_atomic] = ACTIONS(2225), + [sym_type_parameters] = STATE(4210), + [sym_argument_list] = STATE(1739), + [sym_or_block] = STATE(1727), + [aux_sym_strictly_expression_list_repeat1] = STATE(3270), + [anon_sym_LF] = ACTIONS(1753), + [anon_sym_CR] = ACTIONS(1753), + [anon_sym_CR_LF] = ACTIONS(1753), + [anon_sym_SLASH_SLASH] = ACTIONS(497), + [anon_sym_SLASH_STAR] = ACTIONS(499), + [anon_sym_DOT] = ACTIONS(4581), + [anon_sym_as] = ACTIONS(4583), + [anon_sym_COMMA] = ACTIONS(4585), + [anon_sym_RBRACE] = ACTIONS(1753), + [anon_sym_LPAREN] = ACTIONS(4587), + [anon_sym_EQ] = ACTIONS(1757), + [anon_sym_PIPE] = ACTIONS(4589), + [anon_sym_PLUS] = ACTIONS(4589), + [anon_sym_DASH] = ACTIONS(4589), + [anon_sym_STAR] = ACTIONS(4591), + [anon_sym_SLASH] = ACTIONS(4591), + [anon_sym_PERCENT] = ACTIONS(4591), + [anon_sym_LT] = ACTIONS(4593), + [anon_sym_GT] = ACTIONS(4593), + [anon_sym_EQ_EQ] = ACTIONS(4593), + [anon_sym_BANG_EQ] = ACTIONS(4593), + [anon_sym_LT_EQ] = ACTIONS(4593), + [anon_sym_GT_EQ] = ACTIONS(4593), + [anon_sym_LBRACK] = ACTIONS(4595), + [anon_sym_COLON] = ACTIONS(4597), + [anon_sym_PLUS_PLUS] = ACTIONS(4599), + [anon_sym_DASH_DASH] = ACTIONS(4601), + [anon_sym_QMARK] = ACTIONS(4603), + [anon_sym_BANG] = ACTIONS(4605), + [anon_sym_LBRACK2] = ACTIONS(4607), + [anon_sym_CARET] = ACTIONS(4589), + [anon_sym_AMP] = ACTIONS(4591), + [anon_sym_LT_DASH] = ACTIONS(4609), + [anon_sym_LT_LT] = ACTIONS(4611), + [anon_sym_GT_GT] = ACTIONS(4591), + [anon_sym_GT_GT_GT] = ACTIONS(4591), + [anon_sym_AMP_CARET] = ACTIONS(4591), + [anon_sym_AMP_AMP] = ACTIONS(4613), + [anon_sym_PIPE_PIPE] = ACTIONS(4615), + [anon_sym_or] = ACTIONS(4617), + [anon_sym_QMARK_DOT] = ACTIONS(4581), + [anon_sym_POUND_LBRACK] = ACTIONS(4607), + [anon_sym_is] = ACTIONS(4619), + [anon_sym_BANGis] = ACTIONS(4619), + [anon_sym_in] = ACTIONS(4621), + [anon_sym_BANGin] = ACTIONS(4621), + [anon_sym_STAR_EQ] = ACTIONS(1757), + [anon_sym_SLASH_EQ] = ACTIONS(1757), + [anon_sym_PERCENT_EQ] = ACTIONS(1757), + [anon_sym_LT_LT_EQ] = ACTIONS(1757), + [anon_sym_GT_GT_EQ] = ACTIONS(1757), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(1757), + [anon_sym_AMP_EQ] = ACTIONS(1757), + [anon_sym_AMP_CARET_EQ] = ACTIONS(1757), + [anon_sym_PLUS_EQ] = ACTIONS(1757), + [anon_sym_DASH_EQ] = ACTIONS(1757), + [anon_sym_PIPE_EQ] = ACTIONS(1757), + [anon_sym_CARET_EQ] = ACTIONS(1757), + [anon_sym_COLON_EQ] = ACTIONS(1757), }, [1606] = { [sym_line_comment] = STATE(1606), [sym_block_comment] = STATE(1606), - [sym_identifier] = ACTIONS(2217), + [sym_identifier] = ACTIONS(2914), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(2215), - [anon_sym_as] = ACTIONS(2217), - [anon_sym_LBRACE] = ACTIONS(2215), - [anon_sym_COMMA] = ACTIONS(2215), - [anon_sym_LPAREN] = ACTIONS(2215), - [anon_sym_EQ] = ACTIONS(2217), - [anon_sym_PIPE] = ACTIONS(2217), - [anon_sym_fn] = ACTIONS(2217), - [anon_sym_PLUS] = ACTIONS(2217), - [anon_sym_DASH] = ACTIONS(2217), - [anon_sym_STAR] = ACTIONS(2217), - [anon_sym_SLASH] = ACTIONS(2217), - [anon_sym_PERCENT] = ACTIONS(2217), - [anon_sym_LT] = ACTIONS(2217), - [anon_sym_GT] = ACTIONS(2217), - [anon_sym_EQ_EQ] = ACTIONS(2215), - [anon_sym_BANG_EQ] = ACTIONS(2215), - [anon_sym_LT_EQ] = ACTIONS(2215), - [anon_sym_GT_EQ] = ACTIONS(2215), - [anon_sym_LBRACK] = ACTIONS(2215), - [anon_sym_struct] = ACTIONS(2217), - [anon_sym_COLON] = ACTIONS(2215), - [anon_sym_PLUS_PLUS] = ACTIONS(2215), - [anon_sym_DASH_DASH] = ACTIONS(2215), - [anon_sym_QMARK] = ACTIONS(2217), - [anon_sym_BANG] = ACTIONS(2217), - [anon_sym_LBRACK2] = ACTIONS(2217), - [anon_sym_CARET] = ACTIONS(2217), - [anon_sym_AMP] = ACTIONS(2217), - [anon_sym_LT_DASH] = ACTIONS(2215), - [anon_sym_LT_LT] = ACTIONS(2217), - [anon_sym_GT_GT] = ACTIONS(2217), - [anon_sym_GT_GT_GT] = ACTIONS(2217), - [anon_sym_AMP_CARET] = ACTIONS(2217), - [anon_sym_AMP_AMP] = ACTIONS(2215), - [anon_sym_PIPE_PIPE] = ACTIONS(2215), - [anon_sym_or] = ACTIONS(2217), - [anon_sym_QMARK_DOT] = ACTIONS(2215), - [anon_sym_POUND_LBRACK] = ACTIONS(2215), - [anon_sym_is] = ACTIONS(2217), - [anon_sym_BANGis] = ACTIONS(2215), - [anon_sym_in] = ACTIONS(2217), - [anon_sym_BANGin] = ACTIONS(2215), - [anon_sym_STAR_EQ] = ACTIONS(2215), - [anon_sym_SLASH_EQ] = ACTIONS(2215), - [anon_sym_PERCENT_EQ] = ACTIONS(2215), - [anon_sym_LT_LT_EQ] = ACTIONS(2215), - [anon_sym_GT_GT_EQ] = ACTIONS(2215), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(2215), - [anon_sym_AMP_EQ] = ACTIONS(2215), - [anon_sym_AMP_CARET_EQ] = ACTIONS(2215), - [anon_sym_PLUS_EQ] = ACTIONS(2215), - [anon_sym_DASH_EQ] = ACTIONS(2215), - [anon_sym_PIPE_EQ] = ACTIONS(2215), - [anon_sym_CARET_EQ] = ACTIONS(2215), - [anon_sym_shared] = ACTIONS(2217), - [anon_sym_map_LBRACK] = ACTIONS(2215), - [anon_sym_chan] = ACTIONS(2217), - [anon_sym_thread] = ACTIONS(2217), - [anon_sym_atomic] = ACTIONS(2217), + [anon_sym_SEMI] = ACTIONS(2912), + [anon_sym_DOT] = ACTIONS(2912), + [anon_sym_as] = ACTIONS(2914), + [anon_sym_LBRACE] = ACTIONS(2912), + [anon_sym_COMMA] = ACTIONS(2912), + [anon_sym_LPAREN] = ACTIONS(2912), + [anon_sym_EQ] = ACTIONS(2914), + [anon_sym_PIPE] = ACTIONS(2914), + [anon_sym_fn] = ACTIONS(2914), + [anon_sym_PLUS] = ACTIONS(2914), + [anon_sym_DASH] = ACTIONS(2914), + [anon_sym_STAR] = ACTIONS(2914), + [anon_sym_SLASH] = ACTIONS(2914), + [anon_sym_PERCENT] = ACTIONS(2914), + [anon_sym_LT] = ACTIONS(2914), + [anon_sym_GT] = ACTIONS(2914), + [anon_sym_EQ_EQ] = ACTIONS(2912), + [anon_sym_BANG_EQ] = ACTIONS(2912), + [anon_sym_LT_EQ] = ACTIONS(2912), + [anon_sym_GT_EQ] = ACTIONS(2912), + [anon_sym_LBRACK] = ACTIONS(2912), + [anon_sym_struct] = ACTIONS(2914), + [anon_sym_PLUS_PLUS] = ACTIONS(2912), + [anon_sym_DASH_DASH] = ACTIONS(2912), + [anon_sym_QMARK] = ACTIONS(2914), + [anon_sym_BANG] = ACTIONS(2914), + [anon_sym_LBRACK2] = ACTIONS(2914), + [anon_sym_CARET] = ACTIONS(2914), + [anon_sym_AMP] = ACTIONS(2914), + [anon_sym_LT_LT] = ACTIONS(2914), + [anon_sym_GT_GT] = ACTIONS(2914), + [anon_sym_GT_GT_GT] = ACTIONS(2914), + [anon_sym_AMP_CARET] = ACTIONS(2914), + [anon_sym_AMP_AMP] = ACTIONS(2912), + [anon_sym_PIPE_PIPE] = ACTIONS(2912), + [anon_sym_or] = ACTIONS(2914), + [anon_sym_QMARK_DOT] = ACTIONS(2912), + [anon_sym_POUND_LBRACK] = ACTIONS(2912), + [anon_sym_is] = ACTIONS(2914), + [anon_sym_BANGis] = ACTIONS(2912), + [anon_sym_in] = ACTIONS(2914), + [anon_sym_BANGin] = ACTIONS(2912), + [anon_sym_STAR_EQ] = ACTIONS(2912), + [anon_sym_SLASH_EQ] = ACTIONS(2912), + [anon_sym_PERCENT_EQ] = ACTIONS(2912), + [anon_sym_LT_LT_EQ] = ACTIONS(2912), + [anon_sym_GT_GT_EQ] = ACTIONS(2912), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(2912), + [anon_sym_AMP_EQ] = ACTIONS(2912), + [anon_sym_AMP_CARET_EQ] = ACTIONS(2912), + [anon_sym_PLUS_EQ] = ACTIONS(2912), + [anon_sym_DASH_EQ] = ACTIONS(2912), + [anon_sym_PIPE_EQ] = ACTIONS(2912), + [anon_sym_CARET_EQ] = ACTIONS(2912), + [anon_sym_COLON_EQ] = ACTIONS(2912), + [anon_sym_shared] = ACTIONS(2914), + [anon_sym_map_LBRACK] = ACTIONS(2912), + [anon_sym_chan] = ACTIONS(2914), + [anon_sym_thread] = ACTIONS(2914), + [anon_sym_atomic] = ACTIONS(2914), }, [1607] = { [sym_line_comment] = STATE(1607), [sym_block_comment] = STATE(1607), - [sym_identifier] = ACTIONS(2217), + [sym_identifier] = ACTIONS(2918), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_SEMI] = ACTIONS(2215), - [anon_sym_DOT] = ACTIONS(2215), - [anon_sym_as] = ACTIONS(2217), - [anon_sym_LBRACE] = ACTIONS(2215), - [anon_sym_COMMA] = ACTIONS(2215), - [anon_sym_LPAREN] = ACTIONS(2215), - [anon_sym_EQ] = ACTIONS(2217), - [anon_sym_PIPE] = ACTIONS(2217), - [anon_sym_fn] = ACTIONS(2217), - [anon_sym_PLUS] = ACTIONS(2217), - [anon_sym_DASH] = ACTIONS(2217), - [anon_sym_STAR] = ACTIONS(2217), - [anon_sym_SLASH] = ACTIONS(2217), - [anon_sym_PERCENT] = ACTIONS(2217), - [anon_sym_LT] = ACTIONS(2217), - [anon_sym_GT] = ACTIONS(2217), - [anon_sym_EQ_EQ] = ACTIONS(2215), - [anon_sym_BANG_EQ] = ACTIONS(2215), - [anon_sym_LT_EQ] = ACTIONS(2215), - [anon_sym_GT_EQ] = ACTIONS(2215), - [anon_sym_LBRACK] = ACTIONS(2215), - [anon_sym_struct] = ACTIONS(2217), - [anon_sym_PLUS_PLUS] = ACTIONS(2215), - [anon_sym_DASH_DASH] = ACTIONS(2215), - [anon_sym_QMARK] = ACTIONS(2217), - [anon_sym_BANG] = ACTIONS(2217), - [anon_sym_LBRACK2] = ACTIONS(2217), - [anon_sym_CARET] = ACTIONS(2217), - [anon_sym_AMP] = ACTIONS(2217), - [anon_sym_LT_LT] = ACTIONS(2217), - [anon_sym_GT_GT] = ACTIONS(2217), - [anon_sym_GT_GT_GT] = ACTIONS(2217), - [anon_sym_AMP_CARET] = ACTIONS(2217), - [anon_sym_AMP_AMP] = ACTIONS(2215), - [anon_sym_PIPE_PIPE] = ACTIONS(2215), - [anon_sym_or] = ACTIONS(2217), - [anon_sym_QMARK_DOT] = ACTIONS(2215), - [anon_sym_POUND_LBRACK] = ACTIONS(2215), - [anon_sym_is] = ACTIONS(2217), - [anon_sym_BANGis] = ACTIONS(2215), - [anon_sym_in] = ACTIONS(2217), - [anon_sym_BANGin] = ACTIONS(2215), - [anon_sym_STAR_EQ] = ACTIONS(2215), - [anon_sym_SLASH_EQ] = ACTIONS(2215), - [anon_sym_PERCENT_EQ] = ACTIONS(2215), - [anon_sym_LT_LT_EQ] = ACTIONS(2215), - [anon_sym_GT_GT_EQ] = ACTIONS(2215), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(2215), - [anon_sym_AMP_EQ] = ACTIONS(2215), - [anon_sym_AMP_CARET_EQ] = ACTIONS(2215), - [anon_sym_PLUS_EQ] = ACTIONS(2215), - [anon_sym_DASH_EQ] = ACTIONS(2215), - [anon_sym_PIPE_EQ] = ACTIONS(2215), - [anon_sym_CARET_EQ] = ACTIONS(2215), - [anon_sym_COLON_EQ] = ACTIONS(2215), - [anon_sym_shared] = ACTIONS(2217), - [anon_sym_map_LBRACK] = ACTIONS(2215), - [anon_sym_chan] = ACTIONS(2217), - [anon_sym_thread] = ACTIONS(2217), - [anon_sym_atomic] = ACTIONS(2217), + [anon_sym_SEMI] = ACTIONS(2916), + [anon_sym_DOT] = ACTIONS(2916), + [anon_sym_as] = ACTIONS(2918), + [anon_sym_LBRACE] = ACTIONS(2916), + [anon_sym_COMMA] = ACTIONS(2916), + [anon_sym_LPAREN] = ACTIONS(2916), + [anon_sym_EQ] = ACTIONS(2918), + [anon_sym_PIPE] = ACTIONS(2918), + [anon_sym_fn] = ACTIONS(2918), + [anon_sym_PLUS] = ACTIONS(2918), + [anon_sym_DASH] = ACTIONS(2918), + [anon_sym_STAR] = ACTIONS(2918), + [anon_sym_SLASH] = ACTIONS(2918), + [anon_sym_PERCENT] = ACTIONS(2918), + [anon_sym_LT] = ACTIONS(2918), + [anon_sym_GT] = ACTIONS(2918), + [anon_sym_EQ_EQ] = ACTIONS(2916), + [anon_sym_BANG_EQ] = ACTIONS(2916), + [anon_sym_LT_EQ] = ACTIONS(2916), + [anon_sym_GT_EQ] = ACTIONS(2916), + [anon_sym_LBRACK] = ACTIONS(2916), + [anon_sym_struct] = ACTIONS(2918), + [anon_sym_PLUS_PLUS] = ACTIONS(2916), + [anon_sym_DASH_DASH] = ACTIONS(2916), + [anon_sym_QMARK] = ACTIONS(2918), + [anon_sym_BANG] = ACTIONS(2918), + [anon_sym_LBRACK2] = ACTIONS(2918), + [anon_sym_CARET] = ACTIONS(2918), + [anon_sym_AMP] = ACTIONS(2918), + [anon_sym_LT_LT] = ACTIONS(2918), + [anon_sym_GT_GT] = ACTIONS(2918), + [anon_sym_GT_GT_GT] = ACTIONS(2918), + [anon_sym_AMP_CARET] = ACTIONS(2918), + [anon_sym_AMP_AMP] = ACTIONS(2916), + [anon_sym_PIPE_PIPE] = ACTIONS(2916), + [anon_sym_or] = ACTIONS(2918), + [anon_sym_QMARK_DOT] = ACTIONS(2916), + [anon_sym_POUND_LBRACK] = ACTIONS(2916), + [anon_sym_is] = ACTIONS(2918), + [anon_sym_BANGis] = ACTIONS(2916), + [anon_sym_in] = ACTIONS(2918), + [anon_sym_BANGin] = ACTIONS(2916), + [anon_sym_STAR_EQ] = ACTIONS(2916), + [anon_sym_SLASH_EQ] = ACTIONS(2916), + [anon_sym_PERCENT_EQ] = ACTIONS(2916), + [anon_sym_LT_LT_EQ] = ACTIONS(2916), + [anon_sym_GT_GT_EQ] = ACTIONS(2916), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(2916), + [anon_sym_AMP_EQ] = ACTIONS(2916), + [anon_sym_AMP_CARET_EQ] = ACTIONS(2916), + [anon_sym_PLUS_EQ] = ACTIONS(2916), + [anon_sym_DASH_EQ] = ACTIONS(2916), + [anon_sym_PIPE_EQ] = ACTIONS(2916), + [anon_sym_CARET_EQ] = ACTIONS(2916), + [anon_sym_COLON_EQ] = ACTIONS(2916), + [anon_sym_shared] = ACTIONS(2918), + [anon_sym_map_LBRACK] = ACTIONS(2916), + [anon_sym_chan] = ACTIONS(2918), + [anon_sym_thread] = ACTIONS(2918), + [anon_sym_atomic] = ACTIONS(2918), }, [1608] = { [sym_line_comment] = STATE(1608), [sym_block_comment] = STATE(1608), - [sym_identifier] = ACTIONS(2177), + [sym_identifier] = ACTIONS(2870), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_SEMI] = ACTIONS(2868), + [anon_sym_DOT] = ACTIONS(2868), + [anon_sym_as] = ACTIONS(2870), + [anon_sym_LBRACE] = ACTIONS(2868), + [anon_sym_COMMA] = ACTIONS(2868), + [anon_sym_LPAREN] = ACTIONS(2868), + [anon_sym_EQ] = ACTIONS(2870), + [anon_sym_PIPE] = ACTIONS(2870), + [anon_sym_fn] = ACTIONS(2870), + [anon_sym_PLUS] = ACTIONS(2870), + [anon_sym_DASH] = ACTIONS(2870), + [anon_sym_STAR] = ACTIONS(2870), + [anon_sym_SLASH] = ACTIONS(2870), + [anon_sym_PERCENT] = ACTIONS(2870), + [anon_sym_LT] = ACTIONS(2870), + [anon_sym_GT] = ACTIONS(2870), + [anon_sym_EQ_EQ] = ACTIONS(2868), + [anon_sym_BANG_EQ] = ACTIONS(2868), + [anon_sym_LT_EQ] = ACTIONS(2868), + [anon_sym_GT_EQ] = ACTIONS(2868), + [anon_sym_LBRACK] = ACTIONS(2868), + [anon_sym_struct] = ACTIONS(2870), + [anon_sym_PLUS_PLUS] = ACTIONS(2868), + [anon_sym_DASH_DASH] = ACTIONS(2868), + [anon_sym_QMARK] = ACTIONS(2870), + [anon_sym_BANG] = ACTIONS(2870), + [anon_sym_LBRACK2] = ACTIONS(2870), + [anon_sym_CARET] = ACTIONS(2870), + [anon_sym_AMP] = ACTIONS(2870), + [anon_sym_LT_LT] = ACTIONS(2870), + [anon_sym_GT_GT] = ACTIONS(2870), + [anon_sym_GT_GT_GT] = ACTIONS(2870), + [anon_sym_AMP_CARET] = ACTIONS(2870), + [anon_sym_AMP_AMP] = ACTIONS(2868), + [anon_sym_PIPE_PIPE] = ACTIONS(2868), + [anon_sym_or] = ACTIONS(2870), + [anon_sym_QMARK_DOT] = ACTIONS(2868), + [anon_sym_POUND_LBRACK] = ACTIONS(2868), + [anon_sym_is] = ACTIONS(2870), + [anon_sym_BANGis] = ACTIONS(2868), + [anon_sym_in] = ACTIONS(2870), + [anon_sym_BANGin] = ACTIONS(2868), + [anon_sym_STAR_EQ] = ACTIONS(2868), + [anon_sym_SLASH_EQ] = ACTIONS(2868), + [anon_sym_PERCENT_EQ] = ACTIONS(2868), + [anon_sym_LT_LT_EQ] = ACTIONS(2868), + [anon_sym_GT_GT_EQ] = ACTIONS(2868), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(2868), + [anon_sym_AMP_EQ] = ACTIONS(2868), + [anon_sym_AMP_CARET_EQ] = ACTIONS(2868), + [anon_sym_PLUS_EQ] = ACTIONS(2868), + [anon_sym_DASH_EQ] = ACTIONS(2868), + [anon_sym_PIPE_EQ] = ACTIONS(2868), + [anon_sym_CARET_EQ] = ACTIONS(2868), + [anon_sym_COLON_EQ] = ACTIONS(2868), + [anon_sym_shared] = ACTIONS(2870), + [anon_sym_map_LBRACK] = ACTIONS(2868), + [anon_sym_chan] = ACTIONS(2870), + [anon_sym_thread] = ACTIONS(2870), + [anon_sym_atomic] = ACTIONS(2870), + }, + [1609] = { + [sym_line_comment] = STATE(1609), + [sym_block_comment] = STATE(1609), + [sym_identifier] = ACTIONS(2812), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_SEMI] = ACTIONS(2175), - [anon_sym_DOT] = ACTIONS(2175), - [anon_sym_as] = ACTIONS(2177), - [anon_sym_LBRACE] = ACTIONS(2175), - [anon_sym_COMMA] = ACTIONS(2175), - [anon_sym_LPAREN] = ACTIONS(2175), - [anon_sym_EQ] = ACTIONS(2177), - [anon_sym_PIPE] = ACTIONS(2177), - [anon_sym_fn] = ACTIONS(2177), - [anon_sym_PLUS] = ACTIONS(2177), - [anon_sym_DASH] = ACTIONS(2177), - [anon_sym_STAR] = ACTIONS(2177), - [anon_sym_SLASH] = ACTIONS(2177), - [anon_sym_PERCENT] = ACTIONS(2177), - [anon_sym_LT] = ACTIONS(2177), - [anon_sym_GT] = ACTIONS(2177), - [anon_sym_EQ_EQ] = ACTIONS(2175), - [anon_sym_BANG_EQ] = ACTIONS(2175), - [anon_sym_LT_EQ] = ACTIONS(2175), - [anon_sym_GT_EQ] = ACTIONS(2175), - [anon_sym_LBRACK] = ACTIONS(2175), - [anon_sym_struct] = ACTIONS(2177), - [anon_sym_PLUS_PLUS] = ACTIONS(2175), - [anon_sym_DASH_DASH] = ACTIONS(2175), - [anon_sym_QMARK] = ACTIONS(2177), - [anon_sym_BANG] = ACTIONS(2177), - [anon_sym_LBRACK2] = ACTIONS(2177), - [anon_sym_CARET] = ACTIONS(2177), - [anon_sym_AMP] = ACTIONS(2177), - [anon_sym_LT_LT] = ACTIONS(2177), - [anon_sym_GT_GT] = ACTIONS(2177), - [anon_sym_GT_GT_GT] = ACTIONS(2177), - [anon_sym_AMP_CARET] = ACTIONS(2177), - [anon_sym_AMP_AMP] = ACTIONS(2175), - [anon_sym_PIPE_PIPE] = ACTIONS(2175), - [anon_sym_or] = ACTIONS(2177), - [anon_sym_QMARK_DOT] = ACTIONS(2175), - [anon_sym_POUND_LBRACK] = ACTIONS(2175), - [anon_sym_is] = ACTIONS(2177), - [anon_sym_BANGis] = ACTIONS(2175), - [anon_sym_in] = ACTIONS(2177), - [anon_sym_BANGin] = ACTIONS(2175), - [anon_sym_STAR_EQ] = ACTIONS(2175), - [anon_sym_SLASH_EQ] = ACTIONS(2175), - [anon_sym_PERCENT_EQ] = ACTIONS(2175), - [anon_sym_LT_LT_EQ] = ACTIONS(2175), - [anon_sym_GT_GT_EQ] = ACTIONS(2175), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(2175), - [anon_sym_AMP_EQ] = ACTIONS(2175), - [anon_sym_AMP_CARET_EQ] = ACTIONS(2175), - [anon_sym_PLUS_EQ] = ACTIONS(2175), - [anon_sym_DASH_EQ] = ACTIONS(2175), - [anon_sym_PIPE_EQ] = ACTIONS(2175), - [anon_sym_CARET_EQ] = ACTIONS(2175), - [anon_sym_COLON_EQ] = ACTIONS(2175), - [anon_sym_shared] = ACTIONS(2177), - [anon_sym_map_LBRACK] = ACTIONS(2175), - [anon_sym_chan] = ACTIONS(2177), - [anon_sym_thread] = ACTIONS(2177), - [anon_sym_atomic] = ACTIONS(2177), + [anon_sym_SEMI] = ACTIONS(2810), + [anon_sym_DOT] = ACTIONS(2810), + [anon_sym_as] = ACTIONS(2812), + [anon_sym_LBRACE] = ACTIONS(2810), + [anon_sym_COMMA] = ACTIONS(2810), + [anon_sym_LPAREN] = ACTIONS(2810), + [anon_sym_EQ] = ACTIONS(2812), + [anon_sym_PIPE] = ACTIONS(2812), + [anon_sym_fn] = ACTIONS(2812), + [anon_sym_PLUS] = ACTIONS(2812), + [anon_sym_DASH] = ACTIONS(2812), + [anon_sym_STAR] = ACTIONS(2812), + [anon_sym_SLASH] = ACTIONS(2812), + [anon_sym_PERCENT] = ACTIONS(2812), + [anon_sym_LT] = ACTIONS(2812), + [anon_sym_GT] = ACTIONS(2812), + [anon_sym_EQ_EQ] = ACTIONS(2810), + [anon_sym_BANG_EQ] = ACTIONS(2810), + [anon_sym_LT_EQ] = ACTIONS(2810), + [anon_sym_GT_EQ] = ACTIONS(2810), + [anon_sym_LBRACK] = ACTIONS(2810), + [anon_sym_struct] = ACTIONS(2812), + [anon_sym_PLUS_PLUS] = ACTIONS(2810), + [anon_sym_DASH_DASH] = ACTIONS(2810), + [anon_sym_QMARK] = ACTIONS(2812), + [anon_sym_BANG] = ACTIONS(2812), + [anon_sym_LBRACK2] = ACTIONS(2812), + [anon_sym_CARET] = ACTIONS(2812), + [anon_sym_AMP] = ACTIONS(2812), + [anon_sym_LT_LT] = ACTIONS(2812), + [anon_sym_GT_GT] = ACTIONS(2812), + [anon_sym_GT_GT_GT] = ACTIONS(2812), + [anon_sym_AMP_CARET] = ACTIONS(2812), + [anon_sym_AMP_AMP] = ACTIONS(2810), + [anon_sym_PIPE_PIPE] = ACTIONS(2810), + [anon_sym_or] = ACTIONS(2812), + [anon_sym_QMARK_DOT] = ACTIONS(2810), + [anon_sym_POUND_LBRACK] = ACTIONS(2810), + [anon_sym_is] = ACTIONS(2812), + [anon_sym_BANGis] = ACTIONS(2810), + [anon_sym_in] = ACTIONS(2812), + [anon_sym_BANGin] = ACTIONS(2810), + [anon_sym_STAR_EQ] = ACTIONS(2810), + [anon_sym_SLASH_EQ] = ACTIONS(2810), + [anon_sym_PERCENT_EQ] = ACTIONS(2810), + [anon_sym_LT_LT_EQ] = ACTIONS(2810), + [anon_sym_GT_GT_EQ] = ACTIONS(2810), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(2810), + [anon_sym_AMP_EQ] = ACTIONS(2810), + [anon_sym_AMP_CARET_EQ] = ACTIONS(2810), + [anon_sym_PLUS_EQ] = ACTIONS(2810), + [anon_sym_DASH_EQ] = ACTIONS(2810), + [anon_sym_PIPE_EQ] = ACTIONS(2810), + [anon_sym_CARET_EQ] = ACTIONS(2810), + [anon_sym_COLON_EQ] = ACTIONS(2810), + [anon_sym_shared] = ACTIONS(2812), + [anon_sym_map_LBRACK] = ACTIONS(2810), + [anon_sym_chan] = ACTIONS(2812), + [anon_sym_thread] = ACTIONS(2812), + [anon_sym_atomic] = ACTIONS(2812), }, }; static const uint16_t ts_small_parse_table[] = { - [0] = 29, + [0] = 24, ACTIONS(497), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, anon_sym_SLASH_STAR, - ACTIONS(4577), 1, + ACTIONS(4583), 1, anon_sym_as, - ACTIONS(4579), 1, - anon_sym_COMMA, - ACTIONS(4581), 1, + ACTIONS(4587), 1, anon_sym_LPAREN, - ACTIONS(4589), 1, + ACTIONS(4595), 1, anon_sym_LBRACK, - ACTIONS(4593), 1, + ACTIONS(4599), 1, anon_sym_PLUS_PLUS, - ACTIONS(4595), 1, + ACTIONS(4601), 1, anon_sym_DASH_DASH, - ACTIONS(4597), 1, + ACTIONS(4603), 1, anon_sym_QMARK, - ACTIONS(4599), 1, + ACTIONS(4605), 1, anon_sym_BANG, - ACTIONS(4603), 1, + ACTIONS(4613), 1, + anon_sym_AMP_AMP, + ACTIONS(4615), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4617), 1, + anon_sym_or, + STATE(1727), 1, + sym_or_block, + STATE(1739), 1, + sym_argument_list, + STATE(4210), 1, + sym_type_parameters, + ACTIONS(4581), 2, + anon_sym_DOT, + anon_sym_QMARK_DOT, + ACTIONS(4607), 2, + anon_sym_LBRACK2, + anon_sym_POUND_LBRACK, + ACTIONS(4619), 2, + anon_sym_is, + anon_sym_BANGis, + ACTIONS(4621), 2, + anon_sym_in, + anon_sym_BANGin, + STATE(1610), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(4589), 4, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_CARET, + ACTIONS(4593), 6, + anon_sym_LT, + anon_sym_GT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(4591), 8, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_AMP, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_GT_GT_GT, + anon_sym_AMP_CARET, + ACTIONS(1795), 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, + [113] = 17, + ACTIONS(497), 1, + anon_sym_SLASH_SLASH, + ACTIONS(499), 1, + anon_sym_SLASH_STAR, + ACTIONS(4587), 1, + anon_sym_LPAREN, + ACTIONS(4595), 1, + anon_sym_LBRACK, + ACTIONS(4603), 1, + anon_sym_QMARK, ACTIONS(4605), 1, + anon_sym_BANG, + STATE(1727), 1, + sym_or_block, + STATE(1739), 1, + sym_argument_list, + STATE(4210), 1, + sym_type_parameters, + ACTIONS(4581), 2, + anon_sym_DOT, + anon_sym_QMARK_DOT, + ACTIONS(4607), 2, + anon_sym_LBRACK2, + anon_sym_POUND_LBRACK, + ACTIONS(4621), 2, + anon_sym_in, + anon_sym_BANGin, + STATE(1611), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(4589), 4, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_CARET, + ACTIONS(4593), 6, + anon_sym_LT, + anon_sym_GT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(4591), 8, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_AMP, anon_sym_LT_LT, - ACTIONS(4607), 1, + anon_sym_GT_GT, + anon_sym_GT_GT_GT, + anon_sym_AMP_CARET, + ACTIONS(1765), 29, + anon_sym_LF, + anon_sym_CR, + anon_sym_CR_LF, + anon_sym_as, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_EQ, + anon_sym_COLON, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_LT_DASH, anon_sym_AMP_AMP, - ACTIONS(4609), 1, 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, + [212] = 29, + ACTIONS(497), 1, + anon_sym_SLASH_SLASH, + ACTIONS(499), 1, + anon_sym_SLASH_STAR, + ACTIONS(4583), 1, + anon_sym_as, + ACTIONS(4585), 1, + anon_sym_COMMA, + ACTIONS(4587), 1, + anon_sym_LPAREN, + ACTIONS(4595), 1, + anon_sym_LBRACK, + ACTIONS(4599), 1, + anon_sym_PLUS_PLUS, + ACTIONS(4601), 1, + anon_sym_DASH_DASH, + ACTIONS(4603), 1, + anon_sym_QMARK, + ACTIONS(4605), 1, + anon_sym_BANG, + ACTIONS(4609), 1, + anon_sym_LT_DASH, ACTIONS(4611), 1, + anon_sym_LT_LT, + ACTIONS(4613), 1, + anon_sym_AMP_AMP, + ACTIONS(4615), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4617), 1, anon_sym_or, - STATE(1675), 1, - sym_argument_list, - STATE(1689), 1, + STATE(1727), 1, sym_or_block, + STATE(1739), 1, + sym_argument_list, STATE(3270), 1, aux_sym_strictly_expression_list_repeat1, - STATE(4263), 1, + STATE(4210), 1, sym_type_parameters, - ACTIONS(4575), 2, + ACTIONS(4581), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - ACTIONS(4601), 2, + ACTIONS(4607), 2, anon_sym_LBRACK2, anon_sym_POUND_LBRACK, - ACTIONS(4613), 2, + ACTIONS(4619), 2, anon_sym_is, anon_sym_BANGis, - ACTIONS(4615), 2, + ACTIONS(4621), 2, anon_sym_in, anon_sym_BANGin, - STATE(1609), 2, + STATE(1612), 2, sym_line_comment, sym_block_comment, - ACTIONS(1651), 4, + ACTIONS(1753), 4, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, anon_sym_RBRACE, - ACTIONS(4583), 4, + ACTIONS(4589), 4, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_CARET, - ACTIONS(4587), 6, + ACTIONS(4593), 6, anon_sym_LT, anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(4585), 7, + ACTIONS(4591), 7, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, @@ -188826,7 +189131,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(1661), 14, + ACTIONS(1757), 14, anon_sym_EQ, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -188841,35 +189146,124 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [123] = 14, + [335] = 24, ACTIONS(497), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, anon_sym_SLASH_STAR, - ACTIONS(4581), 1, + ACTIONS(4583), 1, + anon_sym_as, + ACTIONS(4587), 1, anon_sym_LPAREN, - ACTIONS(4589), 1, + ACTIONS(4595), 1, anon_sym_LBRACK, - ACTIONS(4597), 1, - anon_sym_QMARK, ACTIONS(4599), 1, + anon_sym_PLUS_PLUS, + ACTIONS(4601), 1, + anon_sym_DASH_DASH, + ACTIONS(4603), 1, + anon_sym_QMARK, + ACTIONS(4605), 1, anon_sym_BANG, - STATE(1675), 1, + ACTIONS(4613), 1, + anon_sym_AMP_AMP, + ACTIONS(4615), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4617), 1, + anon_sym_or, + STATE(1727), 1, + sym_or_block, + STATE(1739), 1, sym_argument_list, - STATE(1689), 1, + STATE(4210), 1, + sym_type_parameters, + ACTIONS(4581), 2, + anon_sym_DOT, + anon_sym_QMARK_DOT, + ACTIONS(4607), 2, + anon_sym_LBRACK2, + anon_sym_POUND_LBRACK, + ACTIONS(4619), 2, + anon_sym_is, + anon_sym_BANGis, + ACTIONS(4621), 2, + anon_sym_in, + anon_sym_BANGin, + STATE(1613), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(4589), 4, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_CARET, + ACTIONS(4593), 6, + anon_sym_LT, + anon_sym_GT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(4591), 8, + anon_sym_STAR, + anon_sym_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(1773), 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, + [448] = 14, + ACTIONS(497), 1, + anon_sym_SLASH_SLASH, + ACTIONS(499), 1, + anon_sym_SLASH_STAR, + ACTIONS(4587), 1, + anon_sym_LPAREN, + ACTIONS(4595), 1, + anon_sym_LBRACK, + ACTIONS(4603), 1, + anon_sym_QMARK, + ACTIONS(4605), 1, + anon_sym_BANG, + STATE(1727), 1, sym_or_block, - STATE(4263), 1, + STATE(1739), 1, + sym_argument_list, + STATE(4210), 1, sym_type_parameters, - ACTIONS(4575), 2, + ACTIONS(4581), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - ACTIONS(4601), 2, + ACTIONS(4607), 2, anon_sym_LBRACK2, anon_sym_POUND_LBRACK, - STATE(1610), 2, + STATE(1614), 2, sym_line_comment, sym_block_comment, - ACTIONS(4585), 8, + ACTIONS(4591), 8, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, @@ -188878,7 +189272,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(1785), 41, + ACTIONS(1765), 41, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -188920,35 +189314,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [216] = 13, + [541] = 13, ACTIONS(497), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, anon_sym_SLASH_STAR, - ACTIONS(4581), 1, + ACTIONS(4587), 1, anon_sym_LPAREN, - ACTIONS(4589), 1, + ACTIONS(4595), 1, anon_sym_LBRACK, - ACTIONS(4597), 1, + ACTIONS(4603), 1, anon_sym_QMARK, - ACTIONS(4599), 1, + ACTIONS(4605), 1, anon_sym_BANG, - STATE(1675), 1, - sym_argument_list, - STATE(1689), 1, + STATE(1727), 1, sym_or_block, - STATE(4263), 1, + STATE(1739), 1, + sym_argument_list, + STATE(4210), 1, sym_type_parameters, - ACTIONS(4575), 2, + ACTIONS(4581), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - ACTIONS(4601), 2, + ACTIONS(4607), 2, anon_sym_LBRACK2, anon_sym_POUND_LBRACK, - STATE(1611), 2, + STATE(1615), 2, sym_line_comment, sym_block_comment, - ACTIONS(1785), 49, + ACTIONS(1765), 49, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -188998,49 +189392,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [307] = 15, + [632] = 13, ACTIONS(497), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, anon_sym_SLASH_STAR, - ACTIONS(4581), 1, + ACTIONS(4587), 1, anon_sym_LPAREN, - ACTIONS(4589), 1, + ACTIONS(4595), 1, anon_sym_LBRACK, - ACTIONS(4597), 1, + ACTIONS(4603), 1, anon_sym_QMARK, - ACTIONS(4599), 1, + ACTIONS(4605), 1, anon_sym_BANG, - STATE(1675), 1, - sym_argument_list, - STATE(1689), 1, + STATE(1727), 1, sym_or_block, - STATE(4263), 1, + STATE(1739), 1, + sym_argument_list, + STATE(4210), 1, sym_type_parameters, - ACTIONS(4575), 2, + ACTIONS(4581), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - ACTIONS(4601), 2, + ACTIONS(4607), 2, anon_sym_LBRACK2, anon_sym_POUND_LBRACK, - STATE(1612), 2, + STATE(1616), 2, sym_line_comment, sym_block_comment, - ACTIONS(4583), 4, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_CARET, - ACTIONS(4585), 8, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_AMP, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - ACTIONS(1785), 37, + ACTIONS(1769), 49, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -189048,6 +189428,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, @@ -189057,7 +189443,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, + anon_sym_CARET, + anon_sym_AMP, anon_sym_LT_DASH, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_GT_GT_GT, + anon_sym_AMP_CARET, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_or, @@ -189078,72 +189470,76 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [402] = 14, + [723] = 18, ACTIONS(497), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, anon_sym_SLASH_STAR, - ACTIONS(4581), 1, + ACTIONS(4587), 1, anon_sym_LPAREN, - ACTIONS(4589), 1, + ACTIONS(4595), 1, anon_sym_LBRACK, - ACTIONS(4597), 1, + ACTIONS(4603), 1, anon_sym_QMARK, - ACTIONS(4599), 1, + ACTIONS(4605), 1, anon_sym_BANG, - STATE(1675), 1, - sym_argument_list, - STATE(1689), 1, + ACTIONS(4613), 1, + anon_sym_AMP_AMP, + STATE(1727), 1, sym_or_block, - STATE(4263), 1, + STATE(1739), 1, + sym_argument_list, + STATE(4210), 1, sym_type_parameters, - ACTIONS(4575), 2, + ACTIONS(4581), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - ACTIONS(4601), 2, + ACTIONS(4607), 2, anon_sym_LBRACK2, anon_sym_POUND_LBRACK, - STATE(1613), 2, + ACTIONS(4621), 2, + anon_sym_in, + anon_sym_BANGin, + STATE(1617), 2, sym_line_comment, sym_block_comment, - ACTIONS(1795), 4, - anon_sym_LF, - anon_sym_CR, - anon_sym_CR_LF, - anon_sym_RBRACE, - ACTIONS(1785), 45, - anon_sym_as, - anon_sym_COMMA, - anon_sym_EQ, + ACTIONS(4589), 4, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, + anon_sym_CARET, + ACTIONS(4593), 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(4591), 8, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, anon_sym_AMP, - anon_sym_LT_DASH, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - anon_sym_AMP_AMP, + ACTIONS(1765), 28, + anon_sym_LF, + anon_sym_CR, + anon_sym_CR_LF, + anon_sym_as, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_EQ, + anon_sym_COLON, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_LT_DASH, anon_sym_PIPE_PIPE, anon_sym_or, anon_sym_is, anon_sym_BANGis, - anon_sym_in, - anon_sym_BANGin, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, @@ -189157,50 +189553,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [495] = 17, + [824] = 15, ACTIONS(497), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, anon_sym_SLASH_STAR, - ACTIONS(4581), 1, + ACTIONS(4587), 1, anon_sym_LPAREN, - ACTIONS(4589), 1, + ACTIONS(4595), 1, anon_sym_LBRACK, - ACTIONS(4597), 1, + ACTIONS(4603), 1, anon_sym_QMARK, - ACTIONS(4599), 1, + ACTIONS(4605), 1, anon_sym_BANG, - STATE(1675), 1, - sym_argument_list, - STATE(1689), 1, + STATE(1727), 1, sym_or_block, - STATE(4263), 1, + STATE(1739), 1, + sym_argument_list, + STATE(4210), 1, sym_type_parameters, - ACTIONS(4575), 2, + ACTIONS(4581), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - ACTIONS(4601), 2, + ACTIONS(4607), 2, anon_sym_LBRACK2, anon_sym_POUND_LBRACK, - ACTIONS(4615), 2, - anon_sym_in, - anon_sym_BANGin, - STATE(1614), 2, + STATE(1618), 2, sym_line_comment, sym_block_comment, - ACTIONS(4583), 4, + ACTIONS(4589), 4, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_CARET, - ACTIONS(4587), 6, - anon_sym_LT, - anon_sym_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(4585), 8, + ACTIONS(4591), 8, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, @@ -189209,7 +189595,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(1785), 29, + ACTIONS(1781), 37, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -189217,6 +189603,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_RBRACE, anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, anon_sym_COLON, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, @@ -189226,6 +189618,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, @@ -189239,52 +189633,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [594] = 18, + [919] = 15, ACTIONS(497), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, anon_sym_SLASH_STAR, - ACTIONS(4581), 1, + ACTIONS(4587), 1, anon_sym_LPAREN, - ACTIONS(4589), 1, + ACTIONS(4595), 1, anon_sym_LBRACK, - ACTIONS(4597), 1, + ACTIONS(4603), 1, anon_sym_QMARK, - ACTIONS(4599), 1, + ACTIONS(4605), 1, anon_sym_BANG, - ACTIONS(4607), 1, - anon_sym_AMP_AMP, - STATE(1675), 1, - sym_argument_list, - STATE(1689), 1, + STATE(1727), 1, sym_or_block, - STATE(4263), 1, + STATE(1739), 1, + sym_argument_list, + STATE(4210), 1, sym_type_parameters, - ACTIONS(4575), 2, + ACTIONS(4581), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - ACTIONS(4601), 2, + ACTIONS(4607), 2, anon_sym_LBRACK2, anon_sym_POUND_LBRACK, - ACTIONS(4615), 2, - anon_sym_in, - anon_sym_BANGin, - STATE(1615), 2, + STATE(1619), 2, sym_line_comment, sym_block_comment, - ACTIONS(4583), 4, + ACTIONS(4589), 4, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_CARET, - ACTIONS(4587), 6, - anon_sym_LT, - anon_sym_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(4585), 8, + ACTIONS(4591), 8, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, @@ -189293,7 +189675,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(1785), 28, + ACTIONS(1765), 37, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -189301,14 +189683,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, @@ -189322,35 +189713,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [695] = 13, + [1014] = 13, ACTIONS(497), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, anon_sym_SLASH_STAR, - ACTIONS(4581), 1, + ACTIONS(4587), 1, anon_sym_LPAREN, - ACTIONS(4589), 1, + ACTIONS(4595), 1, anon_sym_LBRACK, - ACTIONS(4597), 1, + ACTIONS(4603), 1, anon_sym_QMARK, - ACTIONS(4599), 1, + ACTIONS(4605), 1, anon_sym_BANG, - STATE(1675), 1, - sym_argument_list, - STATE(1689), 1, + STATE(1727), 1, sym_or_block, - STATE(4263), 1, + STATE(1739), 1, + sym_argument_list, + STATE(4210), 1, sym_type_parameters, - ACTIONS(4575), 2, + ACTIONS(4581), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - ACTIONS(4601), 2, + ACTIONS(4607), 2, anon_sym_LBRACK2, anon_sym_POUND_LBRACK, - STATE(1616), 2, + STATE(1620), 2, sym_line_comment, sym_block_comment, - ACTIONS(1777), 49, + ACTIONS(1785), 49, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -189400,56 +189791,49 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [786] = 15, + [1105] = 14, ACTIONS(497), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, anon_sym_SLASH_STAR, - ACTIONS(4581), 1, + ACTIONS(4587), 1, anon_sym_LPAREN, - ACTIONS(4589), 1, + ACTIONS(4595), 1, anon_sym_LBRACK, - ACTIONS(4597), 1, + ACTIONS(4603), 1, anon_sym_QMARK, - ACTIONS(4599), 1, + ACTIONS(4605), 1, anon_sym_BANG, - STATE(1675), 1, - sym_argument_list, - STATE(1689), 1, + STATE(1727), 1, sym_or_block, - STATE(4263), 1, + STATE(1739), 1, + sym_argument_list, + STATE(4210), 1, sym_type_parameters, - ACTIONS(4575), 2, + ACTIONS(4581), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - ACTIONS(4601), 2, + ACTIONS(4607), 2, anon_sym_LBRACK2, anon_sym_POUND_LBRACK, - STATE(1617), 2, + STATE(1621), 2, sym_line_comment, sym_block_comment, - ACTIONS(4583), 4, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_CARET, - ACTIONS(4585), 8, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_AMP, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - ACTIONS(1769), 37, + ACTIONS(1777), 4, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, + anon_sym_RBRACE, + ACTIONS(1765), 45, anon_sym_as, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_EQ, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, anon_sym_LT, anon_sym_GT, anon_sym_EQ_EQ, @@ -189459,7 +189843,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, + anon_sym_CARET, + anon_sym_AMP, anon_sym_LT_DASH, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_GT_GT_GT, + anon_sym_AMP_CARET, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_or, @@ -189480,82 +189870,62 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [881] = 24, + [1198] = 5, ACTIONS(497), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, anon_sym_SLASH_STAR, - ACTIONS(4577), 1, - anon_sym_as, - ACTIONS(4581), 1, - anon_sym_LPAREN, - ACTIONS(4589), 1, + ACTIONS(1807), 1, anon_sym_LBRACK, - ACTIONS(4593), 1, - anon_sym_PLUS_PLUS, - ACTIONS(4595), 1, - anon_sym_DASH_DASH, - ACTIONS(4597), 1, - anon_sym_QMARK, - ACTIONS(4599), 1, - anon_sym_BANG, - ACTIONS(4607), 1, - anon_sym_AMP_AMP, - ACTIONS(4609), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4611), 1, - anon_sym_or, - STATE(1675), 1, - sym_argument_list, - STATE(1689), 1, - sym_or_block, - STATE(4263), 1, - sym_type_parameters, - ACTIONS(4575), 2, - anon_sym_DOT, - anon_sym_QMARK_DOT, - ACTIONS(4601), 2, - anon_sym_LBRACK2, - anon_sym_POUND_LBRACK, - ACTIONS(4613), 2, - anon_sym_is, - anon_sym_BANGis, - ACTIONS(4615), 2, - anon_sym_in, - anon_sym_BANGin, - STATE(1618), 2, + STATE(1622), 2, sym_line_comment, sym_block_comment, - ACTIONS(4583), 4, + ACTIONS(1809), 58, + anon_sym_LF, + anon_sym_CR, + anon_sym_CR_LF, + anon_sym_DOT, + anon_sym_as, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_EQ, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - anon_sym_CARET, - ACTIONS(4587), 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(4585), 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(1773), 21, - anon_sym_LF, - anon_sym_CR, - anon_sym_CR_LF, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_EQ, - anon_sym_COLON, - anon_sym_LT_DASH, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_or, + anon_sym_QMARK_DOT, + anon_sym_POUND_LBRACK, + anon_sym_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, @@ -189569,82 +189939,62 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [994] = 24, + [1272] = 5, ACTIONS(497), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, anon_sym_SLASH_STAR, - ACTIONS(4577), 1, - anon_sym_as, - ACTIONS(4581), 1, - anon_sym_LPAREN, - ACTIONS(4589), 1, + ACTIONS(1811), 1, anon_sym_LBRACK, - ACTIONS(4593), 1, - anon_sym_PLUS_PLUS, - ACTIONS(4595), 1, - anon_sym_DASH_DASH, - ACTIONS(4597), 1, - anon_sym_QMARK, - ACTIONS(4599), 1, - anon_sym_BANG, - ACTIONS(4607), 1, - anon_sym_AMP_AMP, - ACTIONS(4609), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4611), 1, - anon_sym_or, - STATE(1675), 1, - sym_argument_list, - STATE(1689), 1, - sym_or_block, - STATE(4263), 1, - sym_type_parameters, - ACTIONS(4575), 2, - anon_sym_DOT, - anon_sym_QMARK_DOT, - ACTIONS(4601), 2, - anon_sym_LBRACK2, - anon_sym_POUND_LBRACK, - ACTIONS(4613), 2, - anon_sym_is, - anon_sym_BANGis, - ACTIONS(4615), 2, - anon_sym_in, - anon_sym_BANGin, - STATE(1619), 2, + STATE(1623), 2, sym_line_comment, sym_block_comment, - ACTIONS(4583), 4, + ACTIONS(1813), 58, + anon_sym_LF, + anon_sym_CR, + anon_sym_CR_LF, + anon_sym_DOT, + anon_sym_as, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_EQ, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - anon_sym_CARET, - ACTIONS(4587), 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(4585), 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(1781), 21, - anon_sym_LF, - anon_sym_CR, - anon_sym_CR_LF, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_EQ, - anon_sym_COLON, - anon_sym_LT_DASH, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_or, + anon_sym_QMARK_DOT, + anon_sym_POUND_LBRACK, + anon_sym_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, @@ -189658,41 +190008,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [1107] = 13, + [1346] = 7, ACTIONS(497), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, anon_sym_SLASH_STAR, - ACTIONS(4581), 1, - anon_sym_LPAREN, - ACTIONS(4589), 1, + ACTIONS(1797), 1, anon_sym_LBRACK, - ACTIONS(4597), 1, - anon_sym_QMARK, - ACTIONS(4599), 1, - anon_sym_BANG, - STATE(1675), 1, - sym_argument_list, - STATE(1689), 1, - sym_or_block, - STATE(4263), 1, - sym_type_parameters, - ACTIONS(4575), 2, - anon_sym_DOT, - anon_sym_QMARK_DOT, - ACTIONS(4601), 2, - anon_sym_LBRACK2, - anon_sym_POUND_LBRACK, - STATE(1620), 2, + ACTIONS(4623), 1, + anon_sym_else, + STATE(1721), 1, + sym_else_branch, + STATE(1624), 2, sym_line_comment, sym_block_comment, - ACTIONS(1765), 49, + ACTIONS(1799), 56, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, + anon_sym_DOT, anon_sym_as, anon_sym_COMMA, anon_sym_RBRACE, + anon_sym_LPAREN, anon_sym_EQ, anon_sym_PIPE, anon_sym_PLUS, @@ -189709,6 +190047,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, + anon_sym_QMARK, + anon_sym_BANG, + anon_sym_LBRACK2, anon_sym_CARET, anon_sym_AMP, anon_sym_LT_DASH, @@ -189719,6 +190060,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, @@ -189736,17 +190079,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [1198] = 5, + [1424] = 7, ACTIONS(497), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, anon_sym_SLASH_STAR, - ACTIONS(1843), 1, + ACTIONS(1803), 1, anon_sym_LBRACK, - STATE(1621), 2, + ACTIONS(4623), 1, + anon_sym_else, + STATE(1741), 1, + sym_else_branch, + STATE(1625), 2, sym_line_comment, sym_block_comment, - ACTIONS(1845), 58, + ACTIONS(1805), 56, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -189786,8 +190133,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, @@ -189805,72 +190150,72 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [1272] = 26, + [1502] = 26, ACTIONS(497), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, anon_sym_SLASH_STAR, - ACTIONS(4619), 1, + ACTIONS(4627), 1, anon_sym_as, - ACTIONS(4621), 1, - anon_sym_LPAREN, ACTIONS(4629), 1, + anon_sym_LPAREN, + ACTIONS(4637), 1, anon_sym_LBRACK, - ACTIONS(4631), 1, + ACTIONS(4639), 1, anon_sym_PLUS_PLUS, - ACTIONS(4633), 1, + ACTIONS(4641), 1, anon_sym_DASH_DASH, - ACTIONS(4635), 1, + ACTIONS(4643), 1, anon_sym_QMARK, - ACTIONS(4637), 1, + ACTIONS(4645), 1, anon_sym_BANG, - ACTIONS(4641), 1, + ACTIONS(4649), 1, anon_sym_AMP_AMP, - ACTIONS(4643), 1, + ACTIONS(4651), 1, anon_sym_PIPE_PIPE, - ACTIONS(4645), 1, + ACTIONS(4653), 1, anon_sym_or, - STATE(1847), 1, - sym_or_block, - STATE(1849), 1, + STATE(1846), 1, sym_argument_list, - STATE(3455), 1, + STATE(1849), 1, + sym_or_block, + STATE(3468), 1, aux_sym_strictly_expression_list_repeat1, - STATE(4013), 1, + STATE(4269), 1, sym_type_parameters, - ACTIONS(4617), 2, + ACTIONS(4625), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - ACTIONS(4639), 2, + ACTIONS(4647), 2, anon_sym_LBRACK2, anon_sym_POUND_LBRACK, - ACTIONS(4647), 2, + ACTIONS(4655), 2, anon_sym_is, anon_sym_BANGis, - ACTIONS(4649), 2, + ACTIONS(4657), 2, anon_sym_in, anon_sym_BANGin, - STATE(1622), 2, + STATE(1626), 2, sym_line_comment, sym_block_comment, - ACTIONS(1759), 4, + ACTIONS(1643), 4, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, anon_sym_RBRACE, - ACTIONS(4623), 4, + ACTIONS(4631), 4, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_CARET, - ACTIONS(4627), 6, + ACTIONS(4635), 6, anon_sym_LT, anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(4625), 8, + ACTIONS(4633), 8, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, @@ -189879,7 +190224,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(1761), 15, + ACTIONS(1649), 15, anon_sym_COMMA, anon_sym_EQ, anon_sym_STAR_EQ, @@ -189895,20 +190240,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [1388] = 5, + [1618] = 5, ACTIONS(497), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, anon_sym_SLASH_STAR, - ACTIONS(1915), 1, + ACTIONS(2678), 1, anon_sym_LBRACK, - STATE(1623), 2, + STATE(1627), 2, sym_line_comment, sym_block_comment, - ACTIONS(1917), 58, + ACTIONS(2680), 57, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, + anon_sym_SEMI, anon_sym_DOT, anon_sym_as, anon_sym_COMMA, @@ -189945,8 +190291,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, @@ -189964,135 +190308,73 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [1462] = 7, + [1691] = 17, ACTIONS(497), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, anon_sym_SLASH_STAR, - ACTIONS(1797), 1, + ACTIONS(4629), 1, + anon_sym_LPAREN, + ACTIONS(4637), 1, anon_sym_LBRACK, - ACTIONS(4651), 1, - anon_sym_else, - STATE(1721), 1, - sym_else_branch, - STATE(1624), 2, + ACTIONS(4643), 1, + anon_sym_QMARK, + ACTIONS(4645), 1, + anon_sym_BANG, + STATE(1846), 1, + sym_argument_list, + STATE(1849), 1, + sym_or_block, + STATE(4269), 1, + sym_type_parameters, + ACTIONS(4625), 2, + anon_sym_DOT, + anon_sym_QMARK_DOT, + ACTIONS(4647), 2, + anon_sym_LBRACK2, + anon_sym_POUND_LBRACK, + ACTIONS(4657), 2, + anon_sym_in, + anon_sym_BANGin, + STATE(1628), 2, sym_line_comment, sym_block_comment, - ACTIONS(1799), 56, - anon_sym_LF, - anon_sym_CR, - anon_sym_CR_LF, - anon_sym_DOT, - anon_sym_as, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_EQ, + ACTIONS(4631), 4, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, + anon_sym_CARET, + ACTIONS(4635), 6, anon_sym_LT, anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - anon_sym_COLON, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_LBRACK2, - anon_sym_CARET, + ACTIONS(4633), 8, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, anon_sym_AMP, - anon_sym_LT_DASH, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_or, - anon_sym_QMARK_DOT, - anon_sym_POUND_LBRACK, - anon_sym_is, - anon_sym_BANGis, - anon_sym_in, - anon_sym_BANGin, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_AMP_CARET_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, - anon_sym_COLON_EQ, - [1540] = 7, - ACTIONS(497), 1, - anon_sym_SLASH_SLASH, - ACTIONS(499), 1, - anon_sym_SLASH_STAR, - ACTIONS(1803), 1, - anon_sym_LBRACK, - ACTIONS(4651), 1, - anon_sym_else, - STATE(1720), 1, - sym_else_branch, - STATE(1625), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(1805), 56, + ACTIONS(1765), 27, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, - anon_sym_DOT, anon_sym_as, anon_sym_COMMA, anon_sym_RBRACE, - anon_sym_LPAREN, anon_sym_EQ, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_LT, - anon_sym_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_COLON, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_LBRACK2, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_LT_DASH, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_or, - anon_sym_QMARK_DOT, - anon_sym_POUND_LBRACK, anon_sym_is, anon_sym_BANGis, - anon_sym_in, - anon_sym_BANGin, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, @@ -190106,21 +190388,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [1618] = 5, + [1788] = 6, ACTIONS(497), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, anon_sym_SLASH_STAR, - ACTIONS(2743), 1, + ACTIONS(1987), 1, + anon_sym_LBRACE, + ACTIONS(2674), 1, anon_sym_LBRACK, - STATE(1626), 2, + STATE(1629), 2, sym_line_comment, sym_block_comment, - ACTIONS(2745), 57, + ACTIONS(2676), 56, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, - anon_sym_SEMI, anon_sym_DOT, anon_sym_as, anon_sym_COMMA, @@ -190174,50 +190457,79 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [1691] = 17, - ACTIONS(497), 1, + [1863] = 32, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, - ACTIONS(499), 1, + ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(4621), 1, + ACTIONS(1751), 1, + anon_sym_SEMI, + ACTIONS(1757), 1, + anon_sym_EQ, + ACTIONS(4661), 1, + anon_sym_as, + ACTIONS(4663), 1, + anon_sym_LBRACE, + ACTIONS(4665), 1, + anon_sym_COMMA, + ACTIONS(4667), 1, anon_sym_LPAREN, - ACTIONS(4629), 1, + ACTIONS(4677), 1, anon_sym_LBRACK, - ACTIONS(4635), 1, + ACTIONS(4679), 1, + anon_sym_PLUS_PLUS, + ACTIONS(4681), 1, + anon_sym_DASH_DASH, + ACTIONS(4683), 1, anon_sym_QMARK, - ACTIONS(4637), 1, + ACTIONS(4685), 1, anon_sym_BANG, - STATE(1847), 1, + ACTIONS(4687), 1, + anon_sym_LBRACK2, + ACTIONS(4689), 1, + anon_sym_AMP_AMP, + ACTIONS(4691), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4693), 1, + anon_sym_or, + ACTIONS(4695), 1, + anon_sym_POUND_LBRACK, + STATE(1495), 1, + sym_block, + STATE(1972), 1, sym_or_block, - STATE(1849), 1, + STATE(1977), 1, sym_argument_list, - STATE(4013), 1, + STATE(3270), 1, + aux_sym_strictly_expression_list_repeat1, + STATE(4147), 1, sym_type_parameters, - ACTIONS(4617), 2, + ACTIONS(4659), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - ACTIONS(4639), 2, - anon_sym_LBRACK2, - anon_sym_POUND_LBRACK, - ACTIONS(4649), 2, + ACTIONS(4673), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(4697), 2, + anon_sym_is, + anon_sym_BANGis, + ACTIONS(4699), 2, anon_sym_in, anon_sym_BANGin, - STATE(1627), 2, + STATE(1630), 2, sym_line_comment, sym_block_comment, - ACTIONS(4623), 4, + ACTIONS(4669), 4, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_CARET, - ACTIONS(4627), 6, - anon_sym_LT, - anon_sym_GT, + ACTIONS(4675), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(4625), 8, + ACTIONS(4671), 8, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, @@ -190226,21 +190538,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(1785), 27, - anon_sym_LF, - anon_sym_CR, - anon_sym_CR_LF, - anon_sym_as, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_EQ, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_or, - anon_sym_is, - anon_sym_BANGis, + ACTIONS(3484), 13, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, @@ -190254,21 +190552,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [1788] = 5, + [1990] = 6, ACTIONS(497), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, anon_sym_SLASH_STAR, - ACTIONS(2685), 1, + ACTIONS(1879), 1, anon_sym_LBRACK, - STATE(1628), 2, + STATE(1677), 1, + sym_type_parameters, + STATE(1631), 2, sym_line_comment, sym_block_comment, - ACTIONS(2687), 57, + ACTIONS(1881), 56, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, - anon_sym_SEMI, anon_sym_DOT, anon_sym_as, anon_sym_COMMA, @@ -190322,61 +190621,80 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [1861] = 5, + [2065] = 24, ACTIONS(497), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, anon_sym_SLASH_STAR, - ACTIONS(1903), 1, + ACTIONS(4627), 1, + anon_sym_as, + ACTIONS(4629), 1, + anon_sym_LPAREN, + ACTIONS(4637), 1, anon_sym_LBRACK, - STATE(1629), 2, + ACTIONS(4639), 1, + anon_sym_PLUS_PLUS, + ACTIONS(4641), 1, + anon_sym_DASH_DASH, + ACTIONS(4643), 1, + anon_sym_QMARK, + ACTIONS(4645), 1, + anon_sym_BANG, + ACTIONS(4649), 1, + anon_sym_AMP_AMP, + ACTIONS(4651), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4653), 1, + anon_sym_or, + STATE(1846), 1, + sym_argument_list, + STATE(1849), 1, + sym_or_block, + STATE(4269), 1, + sym_type_parameters, + ACTIONS(4625), 2, + anon_sym_DOT, + anon_sym_QMARK_DOT, + ACTIONS(4647), 2, + anon_sym_LBRACK2, + anon_sym_POUND_LBRACK, + ACTIONS(4657), 2, + anon_sym_in, + anon_sym_BANGin, + ACTIONS(4701), 2, + anon_sym_is, + anon_sym_BANGis, + STATE(1632), 2, sym_line_comment, sym_block_comment, - ACTIONS(1905), 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, + ACTIONS(4631), 4, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, + anon_sym_CARET, + ACTIONS(4635), 6, anon_sym_LT, anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - anon_sym_COLON, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_LBRACK2, - anon_sym_CARET, + ACTIONS(4633), 8, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, anon_sym_AMP, - anon_sym_LT_DASH, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_or, - anon_sym_QMARK_DOT, - anon_sym_POUND_LBRACK, - anon_sym_is, - anon_sym_BANGis, - anon_sym_in, - anon_sym_BANGin, + ACTIONS(1789), 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, @@ -190390,22 +190708,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [1934] = 6, + [2176] = 5, ACTIONS(497), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, anon_sym_SLASH_STAR, - ACTIONS(1919), 1, + ACTIONS(2742), 1, anon_sym_LBRACK, - ACTIONS(4653), 1, - anon_sym_DOLLARelse, - STATE(1630), 2, + STATE(1633), 2, sym_line_comment, sym_block_comment, - ACTIONS(1921), 56, + ACTIONS(2744), 57, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, + anon_sym_SEMI, anon_sym_DOT, anon_sym_as, anon_sym_COMMA, @@ -190459,22 +190776,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [2009] = 6, + [2249] = 5, ACTIONS(497), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, anon_sym_SLASH_STAR, - ACTIONS(1897), 1, + ACTIONS(2666), 1, anon_sym_LBRACK, - ACTIONS(4655), 1, - anon_sym_DOLLARelse, - STATE(1631), 2, + STATE(1634), 2, sym_line_comment, sym_block_comment, - ACTIONS(1899), 56, + ACTIONS(2668), 57, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, + anon_sym_SEMI, anon_sym_DOT, anon_sym_as, anon_sym_COMMA, @@ -190528,17 +190844,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [2084] = 5, + [2322] = 5, ACTIONS(497), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, anon_sym_SLASH_STAR, - ACTIONS(2679), 1, + ACTIONS(2748), 1, anon_sym_LBRACK, - STATE(1632), 2, + STATE(1635), 2, sym_line_comment, sym_block_comment, - ACTIONS(2681), 57, + ACTIONS(2750), 57, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -190596,17 +190912,112 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [2157] = 5, + [2395] = 32, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(1751), 1, + anon_sym_SEMI, + ACTIONS(1757), 1, + anon_sym_EQ, + ACTIONS(4661), 1, + anon_sym_as, + ACTIONS(4665), 1, + anon_sym_COMMA, + ACTIONS(4667), 1, + anon_sym_LPAREN, + ACTIONS(4677), 1, + anon_sym_LBRACK, + ACTIONS(4679), 1, + anon_sym_PLUS_PLUS, + ACTIONS(4681), 1, + anon_sym_DASH_DASH, + ACTIONS(4683), 1, + anon_sym_QMARK, + ACTIONS(4685), 1, + anon_sym_BANG, + ACTIONS(4687), 1, + anon_sym_LBRACK2, + ACTIONS(4689), 1, + anon_sym_AMP_AMP, + ACTIONS(4691), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4693), 1, + anon_sym_or, + ACTIONS(4695), 1, + anon_sym_POUND_LBRACK, + ACTIONS(4703), 1, + anon_sym_LBRACE, + STATE(1972), 1, + sym_or_block, + STATE(1977), 1, + sym_argument_list, + STATE(3270), 1, + aux_sym_strictly_expression_list_repeat1, + STATE(3668), 1, + sym_block, + STATE(4147), 1, + sym_type_parameters, + ACTIONS(4659), 2, + anon_sym_DOT, + anon_sym_QMARK_DOT, + ACTIONS(4673), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(4697), 2, + anon_sym_is, + anon_sym_BANGis, + ACTIONS(4699), 2, + anon_sym_in, + anon_sym_BANGin, + STATE(1636), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(4669), 4, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_CARET, + ACTIONS(4675), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(4671), 8, + anon_sym_STAR, + anon_sym_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(3484), 13, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_AMP_CARET_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_PIPE_EQ, + anon_sym_CARET_EQ, + anon_sym_COLON_EQ, + [2522] = 5, ACTIONS(497), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, anon_sym_SLASH_STAR, - ACTIONS(2747), 1, + ACTIONS(2754), 1, anon_sym_LBRACK, - STATE(1633), 2, + STATE(1637), 2, sym_line_comment, sym_block_comment, - ACTIONS(2749), 57, + ACTIONS(2756), 57, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -190664,22 +191075,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [2230] = 6, + [2595] = 5, ACTIONS(497), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, anon_sym_SLASH_STAR, - ACTIONS(1951), 1, - anon_sym_LBRACE, - ACTIONS(2661), 1, + ACTIONS(2712), 1, anon_sym_LBRACK, - STATE(1634), 2, + STATE(1638), 2, sym_line_comment, sym_block_comment, - ACTIONS(2663), 56, + ACTIONS(2714), 57, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, + anon_sym_SEMI, anon_sym_DOT, anon_sym_as, anon_sym_COMMA, @@ -190733,17 +191143,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [2305] = 5, + [2668] = 5, ACTIONS(497), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, anon_sym_SLASH_STAR, - ACTIONS(2784), 1, + ACTIONS(2135), 1, anon_sym_LBRACK, - STATE(1635), 2, + STATE(1639), 2, sym_line_comment, sym_block_comment, - ACTIONS(2786), 57, + ACTIONS(2137), 57, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -190801,22 +191211,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [2378] = 6, + [2741] = 5, ACTIONS(497), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, anon_sym_SLASH_STAR, - ACTIONS(1903), 1, + ACTIONS(2708), 1, anon_sym_LBRACK, - STATE(1722), 1, - sym_type_parameters, - STATE(1636), 2, + STATE(1640), 2, sym_line_comment, sym_block_comment, - ACTIONS(1905), 56, + ACTIONS(2710), 57, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, + anon_sym_SEMI, anon_sym_DOT, anon_sym_as, anon_sym_COMMA, @@ -190870,17 +191279,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [2453] = 5, + [2814] = 5, ACTIONS(497), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, anon_sym_SLASH_STAR, - ACTIONS(2870), 1, + ACTIONS(2776), 1, anon_sym_LBRACK, - STATE(1637), 2, + STATE(1641), 2, sym_line_comment, sym_block_comment, - ACTIONS(2872), 57, + ACTIONS(2778), 57, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -190938,67 +191347,57 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [2526] = 15, + [2887] = 5, ACTIONS(497), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, anon_sym_SLASH_STAR, - ACTIONS(4621), 1, - anon_sym_LPAREN, - ACTIONS(4629), 1, + ACTIONS(2900), 1, anon_sym_LBRACK, - ACTIONS(4635), 1, - anon_sym_QMARK, - ACTIONS(4637), 1, - anon_sym_BANG, - STATE(1847), 1, - sym_or_block, - STATE(1849), 1, - sym_argument_list, - STATE(4013), 1, - sym_type_parameters, - ACTIONS(4617), 2, - anon_sym_DOT, - anon_sym_QMARK_DOT, - ACTIONS(4639), 2, - anon_sym_LBRACK2, - anon_sym_POUND_LBRACK, - STATE(1638), 2, + STATE(1642), 2, sym_line_comment, sym_block_comment, - ACTIONS(4623), 4, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_CARET, - ACTIONS(4625), 8, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_AMP, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - ACTIONS(1769), 35, + ACTIONS(2902), 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, @@ -191016,17 +191415,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [2619] = 5, + [2960] = 5, ACTIONS(497), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, anon_sym_SLASH_STAR, - ACTIONS(2808), 1, + ACTIONS(3056), 1, anon_sym_LBRACK, - STATE(1639), 2, + STATE(1643), 2, sym_line_comment, sym_block_comment, - ACTIONS(2810), 57, + ACTIONS(3058), 57, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -191084,21 +191483,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [2692] = 5, + [3033] = 6, ACTIONS(497), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, anon_sym_SLASH_STAR, - ACTIONS(2770), 1, + ACTIONS(1911), 1, anon_sym_LBRACK, - STATE(1640), 2, + ACTIONS(4705), 1, + anon_sym_DOLLARelse, + STATE(1644), 2, sym_line_comment, sym_block_comment, - ACTIONS(2772), 57, + ACTIONS(1913), 56, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, - anon_sym_SEMI, anon_sym_DOT, anon_sym_as, anon_sym_COMMA, @@ -191152,35 +191552,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [2765] = 14, + [3108] = 15, ACTIONS(497), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, anon_sym_SLASH_STAR, - ACTIONS(4621), 1, - anon_sym_LPAREN, ACTIONS(4629), 1, + anon_sym_LPAREN, + ACTIONS(4637), 1, anon_sym_LBRACK, - ACTIONS(4635), 1, + ACTIONS(4643), 1, anon_sym_QMARK, - ACTIONS(4637), 1, + ACTIONS(4645), 1, anon_sym_BANG, - STATE(1847), 1, - sym_or_block, - STATE(1849), 1, + STATE(1846), 1, sym_argument_list, - STATE(4013), 1, + STATE(1849), 1, + sym_or_block, + STATE(4269), 1, sym_type_parameters, - ACTIONS(4617), 2, + ACTIONS(4625), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - ACTIONS(4639), 2, + ACTIONS(4647), 2, anon_sym_LBRACK2, anon_sym_POUND_LBRACK, - STATE(1641), 2, + STATE(1645), 2, sym_line_comment, sym_block_comment, - ACTIONS(4625), 8, + ACTIONS(4631), 4, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_CARET, + ACTIONS(4633), 8, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, @@ -191189,7 +191594,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(1785), 39, + ACTIONS(1781), 35, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -191197,9 +191602,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_RBRACE, anon_sym_EQ, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, anon_sym_LT, anon_sym_GT, anon_sym_EQ_EQ, @@ -191208,7 +191610,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_CARET, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_or, @@ -191229,133 +191630,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [2856] = 5, + [3201] = 18, ACTIONS(497), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, anon_sym_SLASH_STAR, - ACTIONS(2914), 1, - anon_sym_LBRACK, - STATE(1642), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(2916), 57, - anon_sym_LF, - anon_sym_CR, - anon_sym_CR_LF, - anon_sym_SEMI, - anon_sym_DOT, - anon_sym_as, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_EQ, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_LT, - anon_sym_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_COLON, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_LBRACK2, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_LT_DASH, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_or, - anon_sym_QMARK_DOT, - anon_sym_POUND_LBRACK, - anon_sym_is, - anon_sym_BANGis, - anon_sym_in, - anon_sym_BANGin, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_AMP_CARET_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, - anon_sym_COLON_EQ, - [2929] = 24, - ACTIONS(497), 1, - anon_sym_SLASH_SLASH, - ACTIONS(499), 1, - anon_sym_SLASH_STAR, - ACTIONS(4619), 1, - anon_sym_as, - ACTIONS(4621), 1, - anon_sym_LPAREN, ACTIONS(4629), 1, + anon_sym_LPAREN, + ACTIONS(4637), 1, anon_sym_LBRACK, - ACTIONS(4631), 1, - anon_sym_PLUS_PLUS, - ACTIONS(4633), 1, - anon_sym_DASH_DASH, - ACTIONS(4635), 1, + ACTIONS(4643), 1, anon_sym_QMARK, - ACTIONS(4637), 1, + ACTIONS(4645), 1, anon_sym_BANG, - ACTIONS(4641), 1, + ACTIONS(4649), 1, anon_sym_AMP_AMP, - ACTIONS(4643), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4645), 1, - anon_sym_or, - STATE(1847), 1, - sym_or_block, - STATE(1849), 1, + STATE(1846), 1, sym_argument_list, - STATE(4013), 1, + STATE(1849), 1, + sym_or_block, + STATE(4269), 1, sym_type_parameters, - ACTIONS(4617), 2, + ACTIONS(4625), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - ACTIONS(4639), 2, + ACTIONS(4647), 2, anon_sym_LBRACK2, anon_sym_POUND_LBRACK, - ACTIONS(4649), 2, + ACTIONS(4657), 2, anon_sym_in, anon_sym_BANGin, - ACTIONS(4657), 2, - anon_sym_is, - anon_sym_BANGis, - STATE(1643), 2, + STATE(1646), 2, sym_line_comment, sym_block_comment, - ACTIONS(4623), 4, + ACTIONS(4631), 4, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_CARET, - ACTIONS(4627), 6, + ACTIONS(4635), 6, anon_sym_LT, anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(4625), 8, + ACTIONS(4633), 8, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, @@ -191364,13 +191684,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(1789), 19, + ACTIONS(1765), 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, @@ -191384,17 +191711,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [3040] = 5, + [3300] = 5, ACTIONS(497), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, anon_sym_SLASH_STAR, - ACTIONS(2814), 1, + ACTIONS(2507), 1, anon_sym_LBRACK, - STATE(1644), 2, + STATE(1647), 2, sym_line_comment, sym_block_comment, - ACTIONS(2816), 57, + ACTIONS(2509), 57, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -191452,21 +191779,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [3113] = 5, + [3373] = 6, ACTIONS(497), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, anon_sym_SLASH_STAR, - ACTIONS(2167), 1, + ACTIONS(1841), 1, anon_sym_LBRACK, - STATE(1645), 2, + ACTIONS(4707), 1, + anon_sym_DOLLARelse, + STATE(1648), 2, sym_line_comment, sym_block_comment, - ACTIONS(2169), 57, + ACTIONS(1843), 56, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, - anon_sym_SEMI, anon_sym_DOT, anon_sym_as, anon_sym_COMMA, @@ -191520,57 +191848,67 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [3186] = 5, + [3448] = 15, ACTIONS(497), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, anon_sym_SLASH_STAR, - ACTIONS(2271), 1, + ACTIONS(4629), 1, + anon_sym_LPAREN, + ACTIONS(4637), 1, anon_sym_LBRACK, - STATE(1646), 2, + ACTIONS(4643), 1, + anon_sym_QMARK, + ACTIONS(4645), 1, + anon_sym_BANG, + STATE(1846), 1, + sym_argument_list, + STATE(1849), 1, + sym_or_block, + STATE(4269), 1, + sym_type_parameters, + ACTIONS(4625), 2, + anon_sym_DOT, + anon_sym_QMARK_DOT, + ACTIONS(4647), 2, + anon_sym_LBRACK2, + anon_sym_POUND_LBRACK, + STATE(1649), 2, sym_line_comment, sym_block_comment, - ACTIONS(2273), 57, + ACTIONS(4631), 4, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_CARET, + ACTIONS(4633), 8, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_AMP, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_GT_GT_GT, + anon_sym_AMP_CARET, + ACTIONS(1765), 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, @@ -191588,58 +191926,66 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [3259] = 6, + [3541] = 14, ACTIONS(497), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, anon_sym_SLASH_STAR, - ACTIONS(1915), 1, + ACTIONS(4629), 1, + anon_sym_LPAREN, + ACTIONS(4637), 1, anon_sym_LBRACK, - ACTIONS(1951), 1, - anon_sym_LBRACE, - STATE(1647), 2, + ACTIONS(4643), 1, + anon_sym_QMARK, + ACTIONS(4645), 1, + anon_sym_BANG, + STATE(1846), 1, + sym_argument_list, + STATE(1849), 1, + sym_or_block, + STATE(4269), 1, + sym_type_parameters, + ACTIONS(4625), 2, + anon_sym_DOT, + anon_sym_QMARK_DOT, + ACTIONS(4647), 2, + anon_sym_LBRACK2, + anon_sym_POUND_LBRACK, + STATE(1650), 2, sym_line_comment, sym_block_comment, - ACTIONS(1917), 56, + ACTIONS(4633), 8, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_AMP, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_GT_GT_GT, + anon_sym_AMP_CARET, + ACTIONS(1765), 39, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, - anon_sym_DOT, anon_sym_as, anon_sym_COMMA, anon_sym_RBRACE, - anon_sym_LPAREN, anon_sym_EQ, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, anon_sym_LT, anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - anon_sym_COLON, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_LBRACK2, anon_sym_CARET, - anon_sym_AMP, - anon_sym_LT_DASH, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_or, - anon_sym_QMARK_DOT, - anon_sym_POUND_LBRACK, anon_sym_is, anon_sym_BANGis, anon_sym_in, @@ -191657,88 +192003,63 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [3334] = 32, - ACTIONS(3), 1, + [3632] = 7, + ACTIONS(497), 1, anon_sym_SLASH_SLASH, - ACTIONS(5), 1, + ACTIONS(499), 1, anon_sym_SLASH_STAR, - ACTIONS(1649), 1, - anon_sym_SEMI, - ACTIONS(1661), 1, - anon_sym_EQ, - ACTIONS(4661), 1, - anon_sym_as, - ACTIONS(4663), 1, + ACTIONS(1894), 1, + anon_sym_LBRACK, + ACTIONS(1897), 1, + anon_sym_COLON, + ACTIONS(2475), 1, anon_sym_LBRACE, - ACTIONS(4665), 1, + STATE(1651), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(1889), 55, + anon_sym_LF, + anon_sym_CR, + anon_sym_CR_LF, + anon_sym_DOT, + anon_sym_as, anon_sym_COMMA, - ACTIONS(4667), 1, + anon_sym_RBRACE, anon_sym_LPAREN, - ACTIONS(4677), 1, - anon_sym_LBRACK, - ACTIONS(4679), 1, + anon_sym_EQ, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_LT, + anon_sym_GT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, anon_sym_PLUS_PLUS, - ACTIONS(4681), 1, anon_sym_DASH_DASH, - ACTIONS(4683), 1, anon_sym_QMARK, - ACTIONS(4685), 1, anon_sym_BANG, - ACTIONS(4687), 1, anon_sym_LBRACK2, - ACTIONS(4689), 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(4691), 1, anon_sym_PIPE_PIPE, - ACTIONS(4693), 1, anon_sym_or, - ACTIONS(4695), 1, - anon_sym_POUND_LBRACK, - STATE(1507), 1, - sym_block, - STATE(2067), 1, - sym_argument_list, - STATE(2068), 1, - sym_or_block, - STATE(3270), 1, - aux_sym_strictly_expression_list_repeat1, - STATE(4090), 1, - sym_type_parameters, - ACTIONS(4659), 2, - anon_sym_DOT, anon_sym_QMARK_DOT, - ACTIONS(4673), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(4697), 2, + anon_sym_POUND_LBRACK, anon_sym_is, anon_sym_BANGis, - ACTIONS(4699), 2, anon_sym_in, anon_sym_BANGin, - STATE(1648), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(4669), 4, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_CARET, - ACTIONS(4675), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(4671), 8, - anon_sym_STAR, - anon_sym_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(3478), 13, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, @@ -191752,17 +192073,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [3461] = 5, + [3709] = 5, ACTIONS(497), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, anon_sym_SLASH_STAR, - ACTIONS(2115), 1, + ACTIONS(2722), 1, anon_sym_LBRACK, - STATE(1649), 2, + STATE(1652), 2, sym_line_comment, sym_block_comment, - ACTIONS(2117), 57, + ACTIONS(2724), 57, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -191820,19 +192141,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [3534] = 6, + [3782] = 6, ACTIONS(497), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, anon_sym_SLASH_STAR, - ACTIONS(1856), 1, + ACTIONS(1894), 1, anon_sym_LBRACK, - ACTIONS(2507), 1, + ACTIONS(2475), 1, anon_sym_LBRACE, - STATE(1650), 2, + STATE(1653), 2, sym_line_comment, sym_block_comment, - ACTIONS(1851), 56, + ACTIONS(1889), 56, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -191889,26 +192210,41 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [3609] = 5, + [3857] = 13, ACTIONS(497), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, anon_sym_SLASH_STAR, - ACTIONS(2645), 1, + ACTIONS(4629), 1, + anon_sym_LPAREN, + ACTIONS(4637), 1, anon_sym_LBRACK, - STATE(1651), 2, + ACTIONS(4643), 1, + anon_sym_QMARK, + ACTIONS(4645), 1, + anon_sym_BANG, + STATE(1846), 1, + sym_argument_list, + STATE(1849), 1, + sym_or_block, + STATE(4269), 1, + sym_type_parameters, + ACTIONS(4625), 2, + anon_sym_DOT, + anon_sym_QMARK_DOT, + ACTIONS(4647), 2, + anon_sym_LBRACK2, + anon_sym_POUND_LBRACK, + STATE(1654), 2, sym_line_comment, sym_block_comment, - ACTIONS(2647), 57, + ACTIONS(1765), 47, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, - anon_sym_SEMI, - anon_sym_DOT, anon_sym_as, anon_sym_COMMA, anon_sym_RBRACE, - anon_sym_LPAREN, anon_sym_EQ, anon_sym_PIPE, anon_sym_PLUS, @@ -191922,15 +192258,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, @@ -191938,8 +192269,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, @@ -191957,17 +192286,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [3682] = 5, + [3946] = 5, ACTIONS(497), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, anon_sym_SLASH_STAR, - ACTIONS(2653), 1, + ACTIONS(2698), 1, anon_sym_LBRACK, - STATE(1652), 2, + STATE(1655), 2, sym_line_comment, sym_block_comment, - ACTIONS(2655), 57, + ACTIONS(2700), 57, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -192025,97 +192354,41 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [3755] = 5, - ACTIONS(3), 1, + [4019] = 13, + ACTIONS(497), 1, anon_sym_SLASH_SLASH, - ACTIONS(5), 1, + ACTIONS(499), 1, anon_sym_SLASH_STAR, - STATE(1653), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(4703), 24, - anon_sym_LBRACE, - anon_sym_RBRACE, + ACTIONS(4629), 1, anon_sym_LPAREN, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, + ACTIONS(4637), 1, + anon_sym_LBRACK, + ACTIONS(4643), 1, anon_sym_QMARK, + ACTIONS(4645), 1, anon_sym_BANG, - anon_sym_json_DOTdecode, - anon_sym_LBRACK2, - anon_sym_TILDE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_LT_DASH, - sym_float_literal, - sym_rune_literal, - anon_sym_map_LBRACK, - anon_sym_POUND, - sym___double_quote, - sym___single_quote, - sym___c_double_quote, - sym___c_single_quote, - sym___r_double_quote, - sym___r_single_quote, - ACTIONS(4701), 34, + STATE(1846), 1, + sym_argument_list, + STATE(1849), 1, + sym_or_block, + STATE(4269), 1, + sym_type_parameters, + ACTIONS(4625), 2, anon_sym_DOT, - anon_sym_fn, - anon_sym_struct, - anon_sym_mut, - anon_sym_go, - anon_sym_spawn, - sym_none, - sym_true, - sym_false, - sym_nil, - anon_sym_if, - anon_sym_DOLLARif, - anon_sym_match, - anon_sym_select, - anon_sym_lock, - anon_sym_rlock, - anon_sym_unsafe, - anon_sym_sql, - sym_int_literal, - sym_pseudo_compile_time_identifier, - sym_identifier, - anon_sym_shared, - anon_sym_chan, - anon_sym_thread, - anon_sym_atomic, - anon_sym_assert, - anon_sym_defer, - anon_sym_goto, - anon_sym_break, - anon_sym_continue, - anon_sym_return, - anon_sym_DOLLARfor, - anon_sym_for, - anon_sym_asm, - [3828] = 7, - ACTIONS(497), 1, - anon_sym_SLASH_SLASH, - ACTIONS(499), 1, - anon_sym_SLASH_STAR, - ACTIONS(1856), 1, - anon_sym_LBRACK, - ACTIONS(1859), 1, - anon_sym_COLON, - ACTIONS(2507), 1, - anon_sym_LBRACE, - STATE(1654), 2, + anon_sym_QMARK_DOT, + ACTIONS(4647), 2, + anon_sym_LBRACK2, + anon_sym_POUND_LBRACK, + STATE(1656), 2, sym_line_comment, sym_block_comment, - ACTIONS(1851), 55, + ACTIONS(1785), 47, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, - anon_sym_DOT, anon_sym_as, anon_sym_COMMA, anon_sym_RBRACE, - anon_sym_LPAREN, anon_sym_EQ, anon_sym_PIPE, anon_sym_PLUS, @@ -192131,12 +192404,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_LBRACK2, anon_sym_CARET, anon_sym_AMP, - anon_sym_LT_DASH, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_GT_GT_GT, @@ -192144,8 +192413,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, @@ -192163,52 +192430,65 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [3905] = 18, + [4108] = 24, ACTIONS(497), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, anon_sym_SLASH_STAR, - ACTIONS(4621), 1, - anon_sym_LPAREN, + ACTIONS(4627), 1, + anon_sym_as, ACTIONS(4629), 1, + anon_sym_LPAREN, + ACTIONS(4637), 1, anon_sym_LBRACK, - ACTIONS(4635), 1, + ACTIONS(4639), 1, + anon_sym_PLUS_PLUS, + ACTIONS(4641), 1, + anon_sym_DASH_DASH, + ACTIONS(4643), 1, anon_sym_QMARK, - ACTIONS(4637), 1, + ACTIONS(4645), 1, anon_sym_BANG, - ACTIONS(4641), 1, + ACTIONS(4649), 1, anon_sym_AMP_AMP, - STATE(1847), 1, - sym_or_block, - STATE(1849), 1, + ACTIONS(4651), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4653), 1, + anon_sym_or, + STATE(1846), 1, sym_argument_list, - STATE(4013), 1, + STATE(1849), 1, + sym_or_block, + STATE(4269), 1, sym_type_parameters, - ACTIONS(4617), 2, + ACTIONS(4625), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - ACTIONS(4639), 2, + ACTIONS(4647), 2, anon_sym_LBRACK2, anon_sym_POUND_LBRACK, - ACTIONS(4649), 2, + ACTIONS(4655), 2, + anon_sym_is, + anon_sym_BANGis, + ACTIONS(4657), 2, anon_sym_in, anon_sym_BANGin, - STATE(1655), 2, + STATE(1657), 2, sym_line_comment, sym_block_comment, - ACTIONS(4623), 4, + ACTIONS(4631), 4, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_CARET, - ACTIONS(4627), 6, + ACTIONS(4635), 6, anon_sym_LT, anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(4625), 8, + ACTIONS(4633), 8, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, @@ -192217,20 +192497,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(1785), 26, + ACTIONS(1795), 19, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, - anon_sym_as, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_EQ, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PIPE_PIPE, - anon_sym_or, - anon_sym_is, - anon_sym_BANGis, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, @@ -192244,79 +192517,65 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [4004] = 32, - ACTIONS(3), 1, + [4219] = 24, + ACTIONS(497), 1, anon_sym_SLASH_SLASH, - ACTIONS(5), 1, + ACTIONS(499), 1, anon_sym_SLASH_STAR, - ACTIONS(1649), 1, - anon_sym_SEMI, - ACTIONS(1661), 1, - anon_sym_EQ, - ACTIONS(4661), 1, + ACTIONS(4627), 1, anon_sym_as, - ACTIONS(4665), 1, - anon_sym_COMMA, - ACTIONS(4667), 1, + ACTIONS(4629), 1, anon_sym_LPAREN, - ACTIONS(4677), 1, + ACTIONS(4637), 1, anon_sym_LBRACK, - ACTIONS(4679), 1, + ACTIONS(4639), 1, anon_sym_PLUS_PLUS, - ACTIONS(4681), 1, + ACTIONS(4641), 1, anon_sym_DASH_DASH, - ACTIONS(4683), 1, + ACTIONS(4643), 1, anon_sym_QMARK, - ACTIONS(4685), 1, + ACTIONS(4645), 1, anon_sym_BANG, - ACTIONS(4687), 1, - anon_sym_LBRACK2, - ACTIONS(4689), 1, + ACTIONS(4649), 1, anon_sym_AMP_AMP, - ACTIONS(4691), 1, + ACTIONS(4651), 1, anon_sym_PIPE_PIPE, - ACTIONS(4693), 1, + ACTIONS(4653), 1, anon_sym_or, - ACTIONS(4695), 1, - anon_sym_POUND_LBRACK, - ACTIONS(4705), 1, - anon_sym_LBRACE, - STATE(2067), 1, + STATE(1846), 1, sym_argument_list, - STATE(2068), 1, + STATE(1849), 1, sym_or_block, - STATE(3270), 1, - aux_sym_strictly_expression_list_repeat1, - STATE(3678), 1, - sym_block, - STATE(4090), 1, + STATE(4269), 1, sym_type_parameters, - ACTIONS(4659), 2, + ACTIONS(4625), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - ACTIONS(4673), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(4697), 2, + ACTIONS(4647), 2, + anon_sym_LBRACK2, + anon_sym_POUND_LBRACK, + ACTIONS(4655), 2, anon_sym_is, anon_sym_BANGis, - ACTIONS(4699), 2, + ACTIONS(4657), 2, anon_sym_in, anon_sym_BANGin, - STATE(1656), 2, + STATE(1658), 2, sym_line_comment, sym_block_comment, - ACTIONS(4669), 4, + ACTIONS(4631), 4, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_CARET, - ACTIONS(4675), 4, + ACTIONS(4635), 6, + anon_sym_LT, + anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(4671), 8, + ACTIONS(4633), 8, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, @@ -192325,7 +192584,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(3478), 13, + ACTIONS(1773), 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, @@ -192339,21 +192604,98 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [4131] = 5, + [4330] = 13, ACTIONS(497), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, anon_sym_SLASH_STAR, - ACTIONS(2918), 1, + ACTIONS(4629), 1, + anon_sym_LPAREN, + ACTIONS(4637), 1, anon_sym_LBRACK, - STATE(1657), 2, + ACTIONS(4643), 1, + anon_sym_QMARK, + ACTIONS(4645), 1, + anon_sym_BANG, + STATE(1846), 1, + sym_argument_list, + STATE(1849), 1, + sym_or_block, + STATE(4269), 1, + sym_type_parameters, + ACTIONS(4625), 2, + anon_sym_DOT, + anon_sym_QMARK_DOT, + ACTIONS(4647), 2, + anon_sym_LBRACK2, + anon_sym_POUND_LBRACK, + STATE(1659), 2, sym_line_comment, sym_block_comment, - ACTIONS(2920), 57, + ACTIONS(1769), 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_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_LT, + anon_sym_GT, + anon_sym_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, + [4419] = 6, + ACTIONS(497), 1, + anon_sym_SLASH_SLASH, + ACTIONS(499), 1, + anon_sym_SLASH_STAR, + ACTIONS(1807), 1, + anon_sym_LBRACK, + ACTIONS(1987), 1, + anon_sym_LBRACE, + STATE(1660), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(1809), 56, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, - anon_sym_SEMI, anon_sym_DOT, anon_sym_as, anon_sym_COMMA, @@ -192407,41 +192749,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [4204] = 13, + [4494] = 6, ACTIONS(497), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, anon_sym_SLASH_STAR, - ACTIONS(4621), 1, - anon_sym_LPAREN, - ACTIONS(4629), 1, + ACTIONS(1894), 1, anon_sym_LBRACK, - ACTIONS(4635), 1, - anon_sym_QMARK, - ACTIONS(4637), 1, - anon_sym_BANG, - STATE(1847), 1, - sym_or_block, - STATE(1849), 1, - sym_argument_list, - STATE(4013), 1, - sym_type_parameters, - ACTIONS(4617), 2, - anon_sym_DOT, - anon_sym_QMARK_DOT, - ACTIONS(4639), 2, - anon_sym_LBRACK2, - anon_sym_POUND_LBRACK, - STATE(1658), 2, + ACTIONS(2475), 1, + anon_sym_LBRACE, + STATE(1661), 2, sym_line_comment, sym_block_comment, - ACTIONS(1785), 47, + ACTIONS(1889), 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, @@ -192455,10 +192783,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, @@ -192466,6 +192799,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, @@ -192483,41 +192818,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [4293] = 13, + [4569] = 5, ACTIONS(497), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, anon_sym_SLASH_STAR, - ACTIONS(4621), 1, - anon_sym_LPAREN, - ACTIONS(4629), 1, + ACTIONS(2536), 1, anon_sym_LBRACK, - ACTIONS(4635), 1, - anon_sym_QMARK, - ACTIONS(4637), 1, - anon_sym_BANG, - STATE(1847), 1, - sym_or_block, - STATE(1849), 1, - sym_argument_list, - STATE(4013), 1, - sym_type_parameters, - ACTIONS(4617), 2, - anon_sym_DOT, - anon_sym_QMARK_DOT, - ACTIONS(4639), 2, - anon_sym_LBRACK2, - anon_sym_POUND_LBRACK, - STATE(1659), 2, + STATE(1662), 2, sym_line_comment, sym_block_comment, - ACTIONS(1765), 47, + ACTIONS(2538), 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, @@ -192531,10 +192851,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, @@ -192542,6 +192867,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, @@ -192559,17 +192886,85 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [4382] = 5, + [4642] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + STATE(1663), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(4711), 24, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_QMARK, + anon_sym_BANG, + anon_sym_json_DOTdecode, + anon_sym_LBRACK2, + anon_sym_TILDE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_LT_DASH, + sym_float_literal, + sym_rune_literal, + anon_sym_map_LBRACK, + anon_sym_POUND, + sym___double_quote, + sym___single_quote, + sym___c_double_quote, + sym___c_single_quote, + sym___r_double_quote, + sym___r_single_quote, + ACTIONS(4709), 34, + anon_sym_DOT, + anon_sym_fn, + anon_sym_struct, + anon_sym_mut, + anon_sym_go, + anon_sym_spawn, + sym_none, + sym_true, + sym_false, + sym_nil, + anon_sym_if, + anon_sym_DOLLARif, + anon_sym_match, + anon_sym_select, + anon_sym_lock, + anon_sym_rlock, + anon_sym_unsafe, + anon_sym_sql, + sym_int_literal, + sym_pseudo_compile_time_identifier, + sym_identifier, + anon_sym_shared, + anon_sym_chan, + anon_sym_thread, + anon_sym_atomic, + anon_sym_assert, + anon_sym_defer, + anon_sym_goto, + anon_sym_break, + anon_sym_continue, + anon_sym_return, + anon_sym_DOLLARfor, + anon_sym_for, + anon_sym_asm, + [4715] = 5, ACTIONS(497), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, anon_sym_SLASH_STAR, - ACTIONS(2898), 1, + ACTIONS(2690), 1, anon_sym_LBRACK, - STATE(1660), 2, + STATE(1664), 2, sym_line_comment, sym_block_comment, - ACTIONS(2900), 57, + ACTIONS(2692), 57, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -192627,67 +193022,57 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [4455] = 15, + [4788] = 5, ACTIONS(497), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, anon_sym_SLASH_STAR, - ACTIONS(4621), 1, - anon_sym_LPAREN, - ACTIONS(4629), 1, + ACTIONS(2686), 1, anon_sym_LBRACK, - ACTIONS(4635), 1, - anon_sym_QMARK, - ACTIONS(4637), 1, - anon_sym_BANG, - STATE(1847), 1, - sym_or_block, - STATE(1849), 1, - sym_argument_list, - STATE(4013), 1, - sym_type_parameters, - ACTIONS(4617), 2, - anon_sym_DOT, - anon_sym_QMARK_DOT, - ACTIONS(4639), 2, - anon_sym_LBRACK2, - anon_sym_POUND_LBRACK, - STATE(1661), 2, + STATE(1665), 2, sym_line_comment, sym_block_comment, - ACTIONS(4623), 4, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_CARET, - ACTIONS(4625), 8, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_AMP, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - ACTIONS(1785), 35, + ACTIONS(2688), 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, @@ -192705,17 +193090,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [4548] = 5, + [4861] = 5, ACTIONS(497), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, anon_sym_SLASH_STAR, - ACTIONS(2181), 1, + ACTIONS(2904), 1, anon_sym_LBRACK, - STATE(1662), 2, + STATE(1666), 2, sym_line_comment, sym_block_comment, - ACTIONS(2183), 57, + ACTIONS(2906), 57, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -192773,17 +193158,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [4621] = 5, + [4934] = 5, ACTIONS(497), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, anon_sym_SLASH_STAR, - ACTIONS(2665), 1, + ACTIONS(1879), 1, anon_sym_LBRACK, - STATE(1663), 2, + STATE(1667), 2, sym_line_comment, sym_block_comment, - ACTIONS(2667), 57, + ACTIONS(1881), 57, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -192841,80 +193226,61 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [4694] = 24, + [5007] = 5, ACTIONS(497), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, anon_sym_SLASH_STAR, - ACTIONS(4619), 1, - anon_sym_as, - ACTIONS(4621), 1, - anon_sym_LPAREN, - ACTIONS(4629), 1, + ACTIONS(2682), 1, anon_sym_LBRACK, - ACTIONS(4631), 1, - anon_sym_PLUS_PLUS, - ACTIONS(4633), 1, - anon_sym_DASH_DASH, - ACTIONS(4635), 1, - anon_sym_QMARK, - ACTIONS(4637), 1, - anon_sym_BANG, - ACTIONS(4641), 1, - anon_sym_AMP_AMP, - ACTIONS(4643), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4645), 1, - anon_sym_or, - STATE(1847), 1, - sym_or_block, - STATE(1849), 1, - sym_argument_list, - STATE(4013), 1, - sym_type_parameters, - ACTIONS(4617), 2, - anon_sym_DOT, - anon_sym_QMARK_DOT, - ACTIONS(4639), 2, - anon_sym_LBRACK2, - anon_sym_POUND_LBRACK, - ACTIONS(4647), 2, - anon_sym_is, - anon_sym_BANGis, - ACTIONS(4649), 2, - anon_sym_in, - anon_sym_BANGin, - STATE(1664), 2, + STATE(1668), 2, sym_line_comment, sym_block_comment, - ACTIONS(4623), 4, + ACTIONS(2684), 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_CARET, - ACTIONS(4627), 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(4625), 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(1781), 19, - anon_sym_LF, - anon_sym_CR, - anon_sym_CR_LF, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_or, + anon_sym_QMARK_DOT, + anon_sym_POUND_LBRACK, + anon_sym_is, + anon_sym_BANGis, + anon_sym_in, + anon_sym_BANGin, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, @@ -192928,80 +193294,128 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [4805] = 24, + [5080] = 5, ACTIONS(497), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, anon_sym_SLASH_STAR, - ACTIONS(4619), 1, + ACTIONS(3060), 1, + anon_sym_LBRACK, + STATE(1669), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3062), 57, + anon_sym_LF, + anon_sym_CR, + anon_sym_CR_LF, + anon_sym_SEMI, + anon_sym_DOT, anon_sym_as, - ACTIONS(4621), 1, + anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_LPAREN, - ACTIONS(4629), 1, - anon_sym_LBRACK, - ACTIONS(4631), 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(4633), 1, anon_sym_DASH_DASH, - ACTIONS(4635), 1, anon_sym_QMARK, - ACTIONS(4637), 1, anon_sym_BANG, - ACTIONS(4641), 1, + anon_sym_LBRACK2, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_LT_DASH, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_GT_GT_GT, + anon_sym_AMP_CARET, anon_sym_AMP_AMP, - ACTIONS(4643), 1, anon_sym_PIPE_PIPE, - ACTIONS(4645), 1, anon_sym_or, - STATE(1847), 1, - sym_or_block, - STATE(1849), 1, - sym_argument_list, - STATE(4013), 1, - sym_type_parameters, - ACTIONS(4617), 2, - anon_sym_DOT, anon_sym_QMARK_DOT, - ACTIONS(4639), 2, - anon_sym_LBRACK2, anon_sym_POUND_LBRACK, - ACTIONS(4647), 2, anon_sym_is, anon_sym_BANGis, - ACTIONS(4649), 2, anon_sym_in, anon_sym_BANGin, - STATE(1665), 2, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_AMP_CARET_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_PIPE_EQ, + anon_sym_CARET_EQ, + anon_sym_COLON_EQ, + [5153] = 5, + ACTIONS(497), 1, + anon_sym_SLASH_SLASH, + ACTIONS(499), 1, + anon_sym_SLASH_STAR, + ACTIONS(1887), 1, + anon_sym_LBRACK, + STATE(1670), 2, sym_line_comment, sym_block_comment, - ACTIONS(4623), 4, + ACTIONS(1889), 56, + anon_sym_LF, + anon_sym_CR, + anon_sym_CR_LF, + anon_sym_DOT, + anon_sym_as, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_EQ, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - anon_sym_CARET, - ACTIONS(4627), 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(4625), 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(1773), 19, - anon_sym_LF, - anon_sym_CR, - anon_sym_CR_LF, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_or, + anon_sym_QMARK_DOT, + anon_sym_POUND_LBRACK, + anon_sym_is, + anon_sym_BANGis, + anon_sym_in, + anon_sym_BANGin, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, @@ -193015,41 +193429,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [4916] = 13, + [5225] = 7, ACTIONS(497), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, anon_sym_SLASH_STAR, - ACTIONS(4621), 1, - anon_sym_LPAREN, - ACTIONS(4629), 1, + ACTIONS(1797), 1, anon_sym_LBRACK, - ACTIONS(4635), 1, - anon_sym_QMARK, - ACTIONS(4637), 1, - anon_sym_BANG, - STATE(1847), 1, - sym_or_block, - STATE(1849), 1, - sym_argument_list, - STATE(4013), 1, - sym_type_parameters, - ACTIONS(4617), 2, - anon_sym_DOT, - anon_sym_QMARK_DOT, - ACTIONS(4639), 2, - anon_sym_LBRACK2, - anon_sym_POUND_LBRACK, - STATE(1666), 2, + ACTIONS(4713), 1, + anon_sym_else, + STATE(1893), 1, + sym_else_branch, + STATE(1671), 2, sym_line_comment, sym_block_comment, - ACTIONS(1777), 47, + ACTIONS(1799), 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, @@ -193065,6 +193467,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, + anon_sym_QMARK, + anon_sym_BANG, + anon_sym_LBRACK2, anon_sym_CARET, anon_sym_AMP, anon_sym_LT_LT, @@ -193074,6 +193479,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, @@ -193091,21 +193498,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [5005] = 5, + [5301] = 5, ACTIONS(497), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, anon_sym_SLASH_STAR, - ACTIONS(2211), 1, + ACTIONS(2770), 1, anon_sym_LBRACK, - STATE(1667), 2, + STATE(1672), 2, sym_line_comment, sym_block_comment, - ACTIONS(2213), 57, + ACTIONS(2772), 56, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, - anon_sym_SEMI, anon_sym_DOT, anon_sym_as, anon_sym_COMMA, @@ -193159,26 +193565,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [5078] = 6, + [5373] = 6, ACTIONS(497), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, anon_sym_SLASH_STAR, - ACTIONS(1856), 1, + ACTIONS(2222), 1, anon_sym_LBRACK, - ACTIONS(2507), 1, - anon_sym_LBRACE, - STATE(1668), 2, + STATE(1673), 2, sym_line_comment, sym_block_comment, - ACTIONS(1851), 56, + ACTIONS(2217), 6, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, + anon_sym_RBRACE, + anon_sym_COLON, + anon_sym_LT_DASH, + ACTIONS(2219), 50, anon_sym_DOT, anon_sym_as, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_EQ, anon_sym_PIPE, @@ -193193,7 +193600,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, @@ -193201,7 +193607,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, @@ -193228,84 +193633,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [5153] = 5, + [5447] = 6, ACTIONS(497), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, anon_sym_SLASH_STAR, - ACTIONS(2886), 1, + ACTIONS(2540), 1, anon_sym_LBRACK, - STATE(1669), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(2888), 56, - anon_sym_LF, - anon_sym_CR, - anon_sym_CR_LF, - anon_sym_DOT, - anon_sym_as, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_EQ, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_LT, - anon_sym_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_COLON, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_QMARK, + ACTIONS(4715), 1, anon_sym_BANG, - anon_sym_LBRACK2, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_LT_DASH, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_or, - 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, - [5225] = 5, - ACTIONS(497), 1, - anon_sym_SLASH_SLASH, - ACTIONS(499), 1, - anon_sym_SLASH_STAR, - ACTIONS(3044), 1, - anon_sym_LBRACK, - STATE(1670), 2, + STATE(1674), 2, sym_line_comment, sym_block_comment, - ACTIONS(3046), 56, + ACTIONS(2542), 55, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -193331,7 +193671,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, @@ -193362,17 +193701,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [5297] = 5, + [5521] = 5, ACTIONS(497), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, anon_sym_SLASH_STAR, - ACTIONS(2291), 1, + ACTIONS(2295), 1, anon_sym_LBRACK, - STATE(1671), 2, + STATE(1675), 2, sym_line_comment, sym_block_comment, - ACTIONS(2293), 56, + ACTIONS(2297), 56, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -193429,17 +193768,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [5369] = 5, + [5593] = 5, ACTIONS(497), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, anon_sym_SLASH_STAR, - ACTIONS(1915), 1, + ACTIONS(2766), 1, anon_sym_LBRACK, - STATE(1672), 2, + STATE(1676), 2, sym_line_comment, sym_block_comment, - ACTIONS(1917), 56, + ACTIONS(2768), 56, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -193461,74 +193800,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_LBRACK2, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_or, - anon_sym_QMARK_DOT, - anon_sym_POUND_LBRACK, - anon_sym_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, - [5441] = 6, - ACTIONS(497), 1, - anon_sym_SLASH_SLASH, - ACTIONS(499), 1, - anon_sym_SLASH_STAR, - ACTIONS(1853), 1, - anon_sym_DOT, - ACTIONS(2505), 1, - anon_sym_LBRACK, - STATE(1673), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(2507), 55, - anon_sym_LF, - anon_sym_CR, - anon_sym_CR_LF, - anon_sym_as, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_EQ, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_LT, - anon_sym_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, anon_sym_COLON, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, @@ -193564,22 +193835,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [5515] = 6, + [5665] = 5, ACTIONS(497), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, anon_sym_SLASH_STAR, - ACTIONS(2759), 1, + ACTIONS(2838), 1, anon_sym_LBRACK, - ACTIONS(2763), 1, - anon_sym_DOT, - STATE(1674), 2, + STATE(1677), 2, sym_line_comment, sym_block_comment, - ACTIONS(2761), 55, + ACTIONS(2840), 56, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, + anon_sym_DOT, anon_sym_as, anon_sym_COMMA, anon_sym_RBRACE, @@ -193632,17 +193902,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [5589] = 5, + [5737] = 5, ACTIONS(497), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, anon_sym_SLASH_STAR, - ACTIONS(2517), 1, + ACTIONS(2892), 1, anon_sym_LBRACK, - STATE(1675), 2, + STATE(1678), 2, sym_line_comment, sym_block_comment, - ACTIONS(2519), 56, + ACTIONS(2894), 56, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -193699,17 +193969,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [5661] = 5, + [5809] = 5, ACTIONS(497), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, anon_sym_SLASH_STAR, - ACTIONS(2737), 1, + ACTIONS(2726), 1, anon_sym_LBRACK, - STATE(1676), 2, + STATE(1679), 2, sym_line_comment, sym_block_comment, - ACTIONS(2739), 56, + ACTIONS(2728), 56, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -193766,17 +194036,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [5733] = 5, + [5881] = 5, ACTIONS(497), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, anon_sym_SLASH_STAR, - ACTIONS(2766), 1, + ACTIONS(2896), 1, anon_sym_LBRACK, - STATE(1677), 2, + STATE(1680), 2, sym_line_comment, sym_block_comment, - ACTIONS(2768), 56, + ACTIONS(2898), 56, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -193833,17 +194103,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [5805] = 5, + [5953] = 5, ACTIONS(497), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, anon_sym_SLASH_STAR, - ACTIONS(1849), 1, + ACTIONS(2872), 1, anon_sym_LBRACK, - STATE(1678), 2, + STATE(1681), 2, sym_line_comment, sym_block_comment, - ACTIONS(1851), 56, + ACTIONS(2874), 56, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -193900,17 +194170,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [5877] = 5, + [6025] = 5, ACTIONS(497), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, anon_sym_SLASH_STAR, - ACTIONS(2287), 1, + ACTIONS(2209), 1, anon_sym_LBRACK, - STATE(1679), 2, + STATE(1682), 2, sym_line_comment, sym_block_comment, - ACTIONS(2289), 56, + ACTIONS(2211), 56, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -193967,17 +194237,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [5949] = 5, + [6097] = 5, ACTIONS(497), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, anon_sym_SLASH_STAR, - ACTIONS(2689), 1, + ACTIONS(2201), 1, anon_sym_LBRACK, - STATE(1680), 2, + STATE(1683), 2, sym_line_comment, sym_block_comment, - ACTIONS(2691), 56, + ACTIONS(2203), 56, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -194034,25 +194304,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [6021] = 6, + [6169] = 5, ACTIONS(497), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, anon_sym_SLASH_STAR, - ACTIONS(1953), 1, + ACTIONS(2670), 1, anon_sym_LBRACK, - STATE(1681), 2, + STATE(1684), 2, sym_line_comment, sym_block_comment, - ACTIONS(1917), 4, + ACTIONS(2672), 56, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, - anon_sym_RBRACE, - ACTIONS(1951), 52, anon_sym_DOT, anon_sym_as, anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_EQ, anon_sym_PIPE, @@ -194102,17 +194371,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [6095] = 5, + [6241] = 5, ACTIONS(497), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, anon_sym_SLASH_STAR, - ACTIONS(2279), 1, + ACTIONS(2313), 1, anon_sym_LBRACK, - STATE(1682), 2, + STATE(1685), 2, sym_line_comment, sym_block_comment, - ACTIONS(2281), 56, + ACTIONS(2315), 56, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -194169,17 +194438,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [6167] = 5, + [6313] = 5, ACTIONS(497), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, anon_sym_SLASH_STAR, - ACTIONS(2231), 1, + ACTIONS(2461), 1, anon_sym_LBRACK, - STATE(1683), 2, + STATE(1686), 2, sym_line_comment, sym_block_comment, - ACTIONS(2233), 56, + ACTIONS(2463), 56, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -194236,17 +194505,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [6239] = 5, + [6385] = 5, ACTIONS(497), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, anon_sym_SLASH_STAR, - ACTIONS(2759), 1, + ACTIONS(1811), 1, anon_sym_LBRACK, - STATE(1684), 2, + STATE(1687), 2, sym_line_comment, sym_block_comment, - ACTIONS(2761), 56, + ACTIONS(1813), 56, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -194268,7 +194537,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, @@ -194276,7 +194544,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, @@ -194286,6 +194553,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, @@ -194303,17 +194572,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [6311] = 5, + [6457] = 5, ACTIONS(497), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, anon_sym_SLASH_STAR, - ACTIONS(2227), 1, + ACTIONS(2123), 1, anon_sym_LBRACK, - STATE(1685), 2, + STATE(1688), 2, sym_line_comment, sym_block_comment, - ACTIONS(2229), 56, + ACTIONS(2125), 56, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -194370,17 +194639,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [6383] = 5, + [6529] = 5, ACTIONS(497), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, anon_sym_SLASH_STAR, - ACTIONS(2751), 1, + ACTIONS(2147), 1, anon_sym_LBRACK, - STATE(1686), 2, + STATE(1689), 2, sym_line_comment, sym_block_comment, - ACTIONS(2753), 56, + ACTIONS(2149), 56, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -194437,17 +194706,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [6455] = 5, + [6601] = 5, ACTIONS(497), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, anon_sym_SLASH_STAR, - ACTIONS(2505), 1, + ACTIONS(2734), 1, anon_sym_LBRACK, - STATE(1687), 2, + STATE(1690), 2, sym_line_comment, sym_block_comment, - ACTIONS(2507), 56, + ACTIONS(2736), 56, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -194504,60 +194773,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [6527] = 5, + [6673] = 6, ACTIONS(497), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, anon_sym_SLASH_STAR, - ACTIONS(2755), 1, + ACTIONS(2222), 1, anon_sym_LBRACK, - STATE(1688), 2, + STATE(1691), 2, sym_line_comment, sym_block_comment, - ACTIONS(2757), 56, + ACTIONS(2217), 21, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, - anon_sym_DOT, - anon_sym_as, anon_sym_COMMA, anon_sym_RBRACE, - anon_sym_LPAREN, anon_sym_EQ, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_LT, - anon_sym_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, anon_sym_COLON, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_LBRACK2, - anon_sym_CARET, - anon_sym_AMP, anon_sym_LT_DASH, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_or, - anon_sym_QMARK_DOT, - anon_sym_POUND_LBRACK, - anon_sym_is, - anon_sym_BANGis, - anon_sym_in, - anon_sym_BANGin, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, @@ -194571,26 +194805,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [6599] = 5, - ACTIONS(497), 1, - anon_sym_SLASH_SLASH, - ACTIONS(499), 1, - anon_sym_SLASH_STAR, - ACTIONS(2513), 1, - anon_sym_LBRACK, - STATE(1689), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(2515), 56, - anon_sym_LF, - anon_sym_CR, - anon_sym_CR_LF, + ACTIONS(2219), 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, @@ -194603,7 +194821,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, @@ -194611,7 +194828,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, @@ -194625,30 +194841,17 @@ 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, - [6671] = 5, + [6747] = 5, ACTIONS(497), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, anon_sym_SLASH_STAR, - ACTIONS(2307), 1, + ACTIONS(2884), 1, anon_sym_LBRACK, - STATE(1690), 2, + STATE(1692), 2, sym_line_comment, sym_block_comment, - ACTIONS(2309), 56, + ACTIONS(2886), 56, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -194705,17 +194908,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [6743] = 5, + [6819] = 5, ACTIONS(497), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, anon_sym_SLASH_STAR, - ACTIONS(2780), 1, + ACTIONS(2457), 1, anon_sym_LBRACK, - STATE(1691), 2, + STATE(1693), 2, sym_line_comment, sym_block_comment, - ACTIONS(2782), 56, + ACTIONS(2459), 56, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -194772,24 +194975,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [6815] = 5, + [6891] = 6, ACTIONS(497), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, anon_sym_SLASH_STAR, - ACTIONS(2776), 1, + ACTIONS(1989), 1, anon_sym_LBRACK, - STATE(1692), 2, + STATE(1694), 2, sym_line_comment, sym_block_comment, - ACTIONS(2778), 56, + ACTIONS(1809), 4, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, + anon_sym_RBRACE, + ACTIONS(1987), 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, @@ -194804,7 +195010,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, @@ -194812,7 +195017,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, @@ -194839,17 +195043,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [6887] = 5, + [6965] = 5, ACTIONS(497), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, anon_sym_SLASH_STAR, - ACTIONS(2796), 1, + ACTIONS(2465), 1, anon_sym_LBRACK, - STATE(1693), 2, + STATE(1695), 2, sym_line_comment, sym_block_comment, - ACTIONS(2798), 56, + ACTIONS(2467), 56, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -194906,17 +195110,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [6959] = 5, + [7037] = 5, ACTIONS(497), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, anon_sym_SLASH_STAR, - ACTIONS(2906), 1, + ACTIONS(2453), 1, anon_sym_LBRACK, - STATE(1694), 2, + STATE(1696), 2, sym_line_comment, sym_block_comment, - ACTIONS(2908), 56, + ACTIONS(2455), 56, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -194973,17 +195177,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [7031] = 5, + [7109] = 5, ACTIONS(497), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, anon_sym_SLASH_STAR, - ACTIONS(1953), 1, + ACTIONS(2113), 1, anon_sym_LBRACK, - STATE(1695), 2, + STATE(1697), 2, sym_line_comment, sym_block_comment, - ACTIONS(1951), 56, + ACTIONS(2115), 56, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -195040,17 +195244,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [7103] = 5, + [7181] = 5, ACTIONS(497), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, anon_sym_SLASH_STAR, - ACTIONS(2902), 1, + ACTIONS(2197), 1, anon_sym_LBRACK, - STATE(1696), 2, + STATE(1698), 2, sym_line_comment, sym_block_comment, - ACTIONS(2904), 56, + ACTIONS(2199), 56, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -195107,27 +195311,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [7175] = 6, + [7253] = 5, ACTIONS(497), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, anon_sym_SLASH_STAR, - ACTIONS(1953), 1, + ACTIONS(2503), 1, anon_sym_LBRACK, - STATE(1697), 2, + STATE(1699), 2, sym_line_comment, sym_block_comment, - ACTIONS(1917), 4, + ACTIONS(2505), 56, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, - anon_sym_RBRACE, - ACTIONS(1951), 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, @@ -195142,6 +195343,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, @@ -195149,6 +195351,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, @@ -195175,17 +195378,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [7249] = 5, + [7325] = 5, ACTIONS(497), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, anon_sym_SLASH_STAR, - ACTIONS(3048), 1, + ACTIONS(1807), 1, anon_sym_LBRACK, - STATE(1698), 2, + STATE(1700), 2, sym_line_comment, sym_block_comment, - ACTIONS(3050), 56, + ACTIONS(1809), 56, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -195207,7 +195410,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, @@ -195215,7 +195417,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, @@ -195225,6 +195426,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, @@ -195242,17 +195445,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [7321] = 5, + [7397] = 5, ACTIONS(497), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, anon_sym_SLASH_STAR, - ACTIONS(2788), 1, + ACTIONS(2860), 1, anon_sym_LBRACK, - STATE(1699), 2, + STATE(1701), 2, sym_line_comment, sym_block_comment, - ACTIONS(2790), 56, + ACTIONS(2862), 56, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -195309,17 +195512,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [7393] = 5, + [7469] = 5, ACTIONS(497), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, anon_sym_SLASH_STAR, - ACTIONS(2675), 1, + ACTIONS(3066), 1, anon_sym_LBRACK, - STATE(1700), 2, + STATE(1702), 2, sym_line_comment, sym_block_comment, - ACTIONS(2677), 56, + ACTIONS(3068), 56, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -195376,17 +195579,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [7465] = 5, + [7541] = 5, ACTIONS(497), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, anon_sym_SLASH_STAR, - ACTIONS(2657), 1, + ACTIONS(2309), 1, anon_sym_LBRACK, - STATE(1701), 2, + STATE(1703), 2, sym_line_comment, sym_block_comment, - ACTIONS(2659), 56, + ACTIONS(2311), 56, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -195443,17 +195646,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [7537] = 5, + [7613] = 5, ACTIONS(497), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, anon_sym_SLASH_STAR, - ACTIONS(2163), 1, + ACTIONS(2730), 1, anon_sym_LBRACK, - STATE(1702), 2, + STATE(1704), 2, sym_line_comment, sym_block_comment, - ACTIONS(2165), 56, + ACTIONS(2732), 56, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -195510,17 +195713,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [7609] = 5, + [7685] = 5, ACTIONS(497), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, anon_sym_SLASH_STAR, - ACTIONS(2649), 1, + ACTIONS(2908), 1, anon_sym_LBRACK, - STATE(1703), 2, + STATE(1705), 2, sym_line_comment, sym_block_comment, - ACTIONS(2651), 56, + ACTIONS(2910), 56, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -195577,17 +195780,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [7681] = 5, + [7757] = 5, ACTIONS(497), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, anon_sym_SLASH_STAR, - ACTIONS(2265), 1, + ACTIONS(2117), 1, anon_sym_LBRACK, - STATE(1704), 2, + STATE(1706), 2, sym_line_comment, sym_block_comment, - ACTIONS(2267), 56, + ACTIONS(2119), 56, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -195644,21 +195847,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [7753] = 5, + [7829] = 6, ACTIONS(497), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, anon_sym_SLASH_STAR, - ACTIONS(3052), 1, + ACTIONS(1891), 1, + anon_sym_DOT, + ACTIONS(2473), 1, anon_sym_LBRACK, - STATE(1705), 2, + STATE(1707), 2, sym_line_comment, sym_block_comment, - ACTIONS(3054), 56, + ACTIONS(2475), 55, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, - anon_sym_DOT, anon_sym_as, anon_sym_COMMA, anon_sym_RBRACE, @@ -195711,17 +195915,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [7825] = 5, + [7903] = 5, ACTIONS(497), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, anon_sym_SLASH_STAR, - ACTIONS(2237), 1, + ACTIONS(1989), 1, anon_sym_LBRACK, - STATE(1706), 2, + STATE(1708), 2, sym_line_comment, sym_block_comment, - ACTIONS(2239), 56, + ACTIONS(1987), 56, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -195778,17 +195982,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [7897] = 5, + [7975] = 5, ACTIONS(497), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, anon_sym_SLASH_STAR, - ACTIONS(2245), 1, + ACTIONS(3048), 1, anon_sym_LBRACK, - STATE(1707), 2, + STATE(1709), 2, sym_line_comment, sym_block_comment, - ACTIONS(2247), 56, + ACTIONS(3050), 56, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -195845,27 +196049,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [7969] = 6, + [8047] = 5, ACTIONS(497), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, anon_sym_SLASH_STAR, - ACTIONS(2256), 1, + ACTIONS(2267), 1, anon_sym_LBRACK, - STATE(1708), 2, + STATE(1710), 2, sym_line_comment, sym_block_comment, - ACTIONS(2251), 6, + ACTIONS(2269), 56, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, - anon_sym_RBRACE, - anon_sym_COLON, - anon_sym_LT_DASH, - ACTIONS(2253), 50, anon_sym_DOT, anon_sym_as, anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_EQ, anon_sym_PIPE, @@ -195880,6 +196081,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, @@ -195887,6 +196089,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, @@ -195913,17 +196116,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [8043] = 5, + [8119] = 5, ACTIONS(497), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, anon_sym_SLASH_STAR, - ACTIONS(2283), 1, + ACTIONS(2447), 1, anon_sym_LBRACK, - STATE(1709), 2, + STATE(1711), 2, sym_line_comment, sym_block_comment, - ACTIONS(2285), 56, + ACTIONS(2449), 56, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -195980,17 +196183,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [8115] = 5, + [8191] = 5, ACTIONS(497), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, anon_sym_SLASH_STAR, - ACTIONS(2303), 1, + ACTIONS(2848), 1, anon_sym_LBRACK, - STATE(1710), 2, + STATE(1712), 2, sym_line_comment, sym_block_comment, - ACTIONS(2305), 56, + ACTIONS(2850), 56, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -196047,17 +196250,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [8187] = 5, + [8263] = 5, ACTIONS(497), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, anon_sym_SLASH_STAR, - ACTIONS(2313), 1, + ACTIONS(2694), 1, anon_sym_LBRACK, - STATE(1711), 2, + STATE(1713), 2, sym_line_comment, sym_block_comment, - ACTIONS(2315), 56, + ACTIONS(2696), 56, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -196114,17 +196317,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [8259] = 5, + [8335] = 5, ACTIONS(497), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, anon_sym_SLASH_STAR, - ACTIONS(2475), 1, + ACTIONS(2852), 1, anon_sym_LBRACK, - STATE(1712), 2, + STATE(1714), 2, sym_line_comment, sym_block_comment, - ACTIONS(2477), 56, + ACTIONS(2854), 56, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -196181,17 +196384,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [8331] = 5, + [8407] = 5, ACTIONS(497), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, anon_sym_SLASH_STAR, - ACTIONS(2157), 1, + ACTIONS(2856), 1, anon_sym_LBRACK, - STATE(1713), 2, + STATE(1715), 2, sym_line_comment, sym_block_comment, - ACTIONS(2159), 56, + ACTIONS(2858), 56, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -196248,17 +196451,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [8403] = 5, + [8479] = 5, ACTIONS(497), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, anon_sym_SLASH_STAR, - ACTIONS(2481), 1, + ACTIONS(3052), 1, anon_sym_LBRACK, - STATE(1714), 2, + STATE(1716), 2, sym_line_comment, sym_block_comment, - ACTIONS(2483), 56, + ACTIONS(3054), 56, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -196315,17 +196518,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [8475] = 5, + [8551] = 5, ACTIONS(497), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, anon_sym_SLASH_STAR, - ACTIONS(2671), 1, + ACTIONS(3042), 1, anon_sym_LBRACK, - STATE(1715), 2, + STATE(1717), 2, sym_line_comment, sym_block_comment, - ACTIONS(2673), 56, + ACTIONS(3044), 56, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -196382,17 +196585,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [8547] = 5, + [8623] = 5, ACTIONS(497), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, anon_sym_SLASH_STAR, - ACTIONS(2351), 1, + ACTIONS(2844), 1, anon_sym_LBRACK, - STATE(1716), 2, + STATE(1718), 2, sym_line_comment, sym_block_comment, - ACTIONS(2353), 56, + ACTIONS(2846), 56, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -196449,17 +196652,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [8619] = 5, + [8695] = 5, ACTIONS(497), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, anon_sym_SLASH_STAR, - ACTIONS(2471), 1, + ACTIONS(2231), 1, anon_sym_LBRACK, - STATE(1717), 2, + STATE(1719), 2, sym_line_comment, sym_block_comment, - ACTIONS(2473), 56, + ACTIONS(2233), 56, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -196516,17 +196719,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [8691] = 5, + [8767] = 5, ACTIONS(497), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, anon_sym_SLASH_STAR, - ACTIONS(2838), 1, + ACTIONS(2738), 1, anon_sym_LBRACK, - STATE(1718), 2, + STATE(1720), 2, sym_line_comment, sym_block_comment, - ACTIONS(2840), 56, + ACTIONS(2740), 56, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -196583,17 +196786,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [8763] = 5, + [8839] = 5, ACTIONS(497), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, anon_sym_SLASH_STAR, - ACTIONS(2485), 1, + ACTIONS(2830), 1, anon_sym_LBRACK, - STATE(1719), 2, + STATE(1721), 2, sym_line_comment, sym_block_comment, - ACTIONS(2487), 56, + ACTIONS(2832), 56, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -196650,17 +196853,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [8835] = 5, + [8911] = 5, ACTIONS(497), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, anon_sym_SLASH_STAR, - ACTIONS(2844), 1, + ACTIONS(2189), 1, anon_sym_LBRACK, - STATE(1720), 2, + STATE(1722), 2, sym_line_comment, sym_block_comment, - ACTIONS(2846), 56, + ACTIONS(2191), 56, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -196717,24 +196920,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [8907] = 5, + [8983] = 6, ACTIONS(497), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, anon_sym_SLASH_STAR, - ACTIONS(2848), 1, + ACTIONS(1989), 1, anon_sym_LBRACK, - STATE(1721), 2, + STATE(1723), 2, sym_line_comment, sym_block_comment, - ACTIONS(2850), 56, + ACTIONS(1809), 4, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, + anon_sym_RBRACE, + ACTIONS(1987), 52, anon_sym_DOT, anon_sym_as, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_EQ, anon_sym_PIPE, @@ -196784,17 +196988,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [8979] = 5, + [9057] = 7, ACTIONS(497), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, anon_sym_SLASH_STAR, - ACTIONS(2509), 1, + ACTIONS(1803), 1, anon_sym_LBRACK, - STATE(1722), 2, + ACTIONS(4713), 1, + anon_sym_else, + STATE(1896), 1, + sym_else_branch, + STATE(1724), 2, sym_line_comment, sym_block_comment, - ACTIONS(2511), 56, + ACTIONS(1805), 54, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -196816,7 +197024,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, @@ -196824,7 +197031,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, @@ -196851,17 +197057,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [9051] = 5, + [9133] = 5, ACTIONS(497), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, anon_sym_SLASH_STAR, - ACTIONS(2866), 1, + ACTIONS(2922), 1, anon_sym_LBRACK, - STATE(1723), 2, + STATE(1725), 2, sym_line_comment, sym_block_comment, - ACTIONS(2868), 56, + ACTIONS(2924), 56, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -196918,17 +197124,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [9123] = 5, + [9205] = 5, ACTIONS(497), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, anon_sym_SLASH_STAR, - ACTIONS(1843), 1, + ACTIONS(2301), 1, anon_sym_LBRACK, - STATE(1724), 2, + STATE(1726), 2, sym_line_comment, sym_block_comment, - ACTIONS(1845), 56, + ACTIONS(2303), 56, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -196950,6 +197156,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, @@ -196957,6 +197164,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, @@ -196966,8 +197174,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, @@ -196985,17 +197191,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [9195] = 5, + [9277] = 5, ACTIONS(497), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, anon_sym_SLASH_STAR, - ACTIONS(2858), 1, + ACTIONS(2291), 1, anon_sym_LBRACK, - STATE(1725), 2, + STATE(1727), 2, sym_line_comment, sym_block_comment, - ACTIONS(2860), 56, + ACTIONS(2293), 56, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -197052,25 +197258,60 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [9267] = 6, + [9349] = 5, ACTIONS(497), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, anon_sym_SLASH_STAR, - ACTIONS(2256), 1, + ACTIONS(2786), 1, anon_sym_LBRACK, - STATE(1726), 2, + STATE(1728), 2, sym_line_comment, sym_block_comment, - ACTIONS(2251), 21, + ACTIONS(2788), 56, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, + anon_sym_DOT, + anon_sym_as, anon_sym_COMMA, anon_sym_RBRACE, + anon_sym_LPAREN, anon_sym_EQ, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_LT, + anon_sym_GT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, anon_sym_COLON, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_QMARK, + anon_sym_BANG, + anon_sym_LBRACK2, + anon_sym_CARET, + anon_sym_AMP, anon_sym_LT_DASH, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_GT_GT_GT, + anon_sym_AMP_CARET, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_or, + anon_sym_QMARK_DOT, + anon_sym_POUND_LBRACK, + anon_sym_is, + anon_sym_BANGis, + anon_sym_in, + anon_sym_BANGin, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, @@ -197084,10 +197325,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - ACTIONS(2253), 35, + [9421] = 5, + ACTIONS(497), 1, + anon_sym_SLASH_SLASH, + ACTIONS(499), 1, + anon_sym_SLASH_STAR, + ACTIONS(2469), 1, + anon_sym_LBRACK, + STATE(1729), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(2471), 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, @@ -197100,6 +197357,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, @@ -197107,6 +197365,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, @@ -197120,17 +197379,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [9341] = 5, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_AMP_CARET_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_PIPE_EQ, + anon_sym_CARET_EQ, + anon_sym_COLON_EQ, + [9493] = 5, ACTIONS(497), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, anon_sym_SLASH_STAR, - ACTIONS(2854), 1, + ACTIONS(2499), 1, anon_sym_LBRACK, - STATE(1727), 2, + STATE(1730), 2, sym_line_comment, sym_block_comment, - ACTIONS(2856), 56, + ACTIONS(2501), 56, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -197187,17 +197459,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [9413] = 5, + [9565] = 5, ACTIONS(497), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, anon_sym_SLASH_STAR, - ACTIONS(2171), 1, + ACTIONS(2473), 1, anon_sym_LBRACK, - STATE(1728), 2, + STATE(1731), 2, sym_line_comment, sym_block_comment, - ACTIONS(2173), 56, + ACTIONS(2475), 56, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -197254,17 +197526,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [9485] = 5, + [9637] = 5, ACTIONS(497), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, anon_sym_SLASH_STAR, - ACTIONS(2876), 1, + ACTIONS(2796), 1, anon_sym_LBRACK, - STATE(1729), 2, + STATE(1732), 2, sym_line_comment, sym_block_comment, - ACTIONS(2878), 56, + ACTIONS(2798), 56, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -197321,17 +197593,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [9557] = 5, + [9709] = 5, ACTIONS(497), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, anon_sym_SLASH_STAR, - ACTIONS(2241), 1, + ACTIONS(2878), 1, anon_sym_LBRACK, - STATE(1730), 2, + STATE(1733), 2, sym_line_comment, sym_block_comment, - ACTIONS(2243), 56, + ACTIONS(2880), 56, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -197388,17 +197660,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [9629] = 5, + [9781] = 5, ACTIONS(497), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, anon_sym_SLASH_STAR, - ACTIONS(2792), 1, + ACTIONS(2716), 1, anon_sym_LBRACK, - STATE(1731), 2, + STATE(1734), 2, sym_line_comment, sym_block_comment, - ACTIONS(2794), 56, + ACTIONS(2718), 56, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -197455,17 +197727,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [9701] = 5, + [9853] = 5, ACTIONS(497), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, anon_sym_SLASH_STAR, - ACTIONS(2119), 1, + ACTIONS(2800), 1, anon_sym_LBRACK, - STATE(1732), 2, + STATE(1735), 2, sym_line_comment, sym_block_comment, - ACTIONS(2121), 56, + ACTIONS(2802), 56, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -197522,17 +197794,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [9773] = 5, + [9925] = 5, ACTIONS(497), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, anon_sym_SLASH_STAR, - ACTIONS(3060), 1, + ACTIONS(2780), 1, anon_sym_LBRACK, - STATE(1733), 2, + STATE(1736), 2, sym_line_comment, sym_block_comment, - ACTIONS(3062), 56, + ACTIONS(2782), 56, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -197589,21 +197861,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [9845] = 7, + [9997] = 5, ACTIONS(497), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, anon_sym_SLASH_STAR, - ACTIONS(1803), 1, + ACTIONS(2822), 1, anon_sym_LBRACK, - ACTIONS(4707), 1, - anon_sym_else, - STATE(1830), 1, - sym_else_branch, - STATE(1734), 2, + STATE(1737), 2, sym_line_comment, sym_block_comment, - ACTIONS(1805), 54, + ACTIONS(2824), 56, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -197625,6 +197893,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, @@ -197632,6 +197901,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, @@ -197658,17 +197928,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [9921] = 5, + [10069] = 5, ACTIONS(497), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, anon_sym_SLASH_STAR, - ACTIONS(2826), 1, + ACTIONS(2804), 1, anon_sym_LBRACK, - STATE(1735), 2, + STATE(1738), 2, sym_line_comment, sym_block_comment, - ACTIONS(2828), 56, + ACTIONS(2806), 56, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -197725,17 +197995,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [9993] = 5, + [10141] = 5, ACTIONS(497), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, anon_sym_SLASH_STAR, - ACTIONS(2894), 1, + ACTIONS(2305), 1, anon_sym_LBRACK, - STATE(1736), 2, + STATE(1739), 2, sym_line_comment, sym_block_comment, - ACTIONS(2896), 56, + ACTIONS(2307), 56, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -197792,17 +198062,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [10065] = 5, + [10213] = 5, ACTIONS(497), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, anon_sym_SLASH_STAR, - ACTIONS(2882), 1, + ACTIONS(2141), 1, anon_sym_LBRACK, - STATE(1737), 2, + STATE(1740), 2, sym_line_comment, sym_block_comment, - ACTIONS(2884), 56, + ACTIONS(2143), 56, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -197859,17 +198129,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [10137] = 5, + [10285] = 5, ACTIONS(497), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, anon_sym_SLASH_STAR, - ACTIONS(2834), 1, + ACTIONS(2792), 1, anon_sym_LBRACK, - STATE(1738), 2, + STATE(1741), 2, sym_line_comment, sym_block_comment, - ACTIONS(2836), 56, + ACTIONS(2794), 56, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -197926,19 +198196,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [10209] = 6, + [10357] = 5, ACTIONS(497), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, anon_sym_SLASH_STAR, - ACTIONS(2523), 1, + ACTIONS(2826), 1, anon_sym_LBRACK, - ACTIONS(4709), 1, - anon_sym_BANG, - STATE(1739), 2, + STATE(1742), 2, sym_line_comment, sym_block_comment, - ACTIONS(2525), 55, + ACTIONS(2828), 56, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -197964,6 +198232,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, @@ -197994,17 +198263,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [10283] = 5, + [10429] = 5, ACTIONS(497), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, anon_sym_SLASH_STAR, - ACTIONS(2822), 1, + ACTIONS(2227), 1, anon_sym_LBRACK, - STATE(1740), 2, + STATE(1743), 2, sym_line_comment, sym_block_comment, - ACTIONS(2824), 56, + ACTIONS(2229), 56, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -198061,17 +198330,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [10355] = 5, + [10501] = 5, ACTIONS(497), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, anon_sym_SLASH_STAR, - ACTIONS(2729), 1, + ACTIONS(2441), 1, anon_sym_LBRACK, - STATE(1741), 2, + STATE(1744), 2, sym_line_comment, sym_block_comment, - ACTIONS(2731), 56, + ACTIONS(2443), 56, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -198128,21 +198397,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [10427] = 5, + [10573] = 6, ACTIONS(497), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, anon_sym_SLASH_STAR, - ACTIONS(2830), 1, + ACTIONS(2511), 1, anon_sym_LBRACK, - STATE(1742), 2, + ACTIONS(2515), 1, + anon_sym_DOT, + STATE(1745), 2, sym_line_comment, sym_block_comment, - ACTIONS(2832), 56, + ACTIONS(2513), 55, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, - anon_sym_DOT, anon_sym_as, anon_sym_COMMA, anon_sym_RBRACE, @@ -198195,17 +198465,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [10499] = 5, + [10647] = 5, ACTIONS(497), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, anon_sym_SLASH_STAR, - ACTIONS(2818), 1, + ACTIONS(2520), 1, anon_sym_LBRACK, - STATE(1743), 2, + STATE(1746), 2, sym_line_comment, sym_block_comment, - ACTIONS(2820), 56, + ACTIONS(2522), 56, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -198262,17 +198532,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [10571] = 5, + [10719] = 5, ACTIONS(497), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, anon_sym_SLASH_STAR, - ACTIONS(2804), 1, + ACTIONS(2530), 1, anon_sym_LBRACK, - STATE(1744), 2, + STATE(1747), 2, sym_line_comment, sym_block_comment, - ACTIONS(2806), 56, + ACTIONS(2532), 56, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -198329,17 +198599,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [10643] = 5, + [10791] = 5, ACTIONS(497), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, anon_sym_SLASH_STAR, - ACTIONS(3040), 1, + ACTIONS(2834), 1, anon_sym_LBRACK, - STATE(1745), 2, + STATE(1748), 2, sym_line_comment, sym_block_comment, - ACTIONS(3042), 56, + ACTIONS(2836), 56, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -198396,21 +198666,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [10715] = 7, + [10863] = 5, ACTIONS(497), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, anon_sym_SLASH_STAR, - ACTIONS(1797), 1, + ACTIONS(2511), 1, anon_sym_LBRACK, - ACTIONS(4707), 1, - anon_sym_else, - STATE(1828), 1, - sym_else_branch, - STATE(1746), 2, + STATE(1749), 2, sym_line_comment, sym_block_comment, - ACTIONS(1799), 54, + ACTIONS(2513), 56, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -198432,6 +198698,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, @@ -198439,6 +198706,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, @@ -198465,17 +198733,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [10791] = 5, + [10935] = 5, ACTIONS(497), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, anon_sym_SLASH_STAR, - ACTIONS(2733), 1, + ACTIONS(2888), 1, anon_sym_LBRACK, - STATE(1747), 2, + STATE(1750), 2, sym_line_comment, sym_block_comment, - ACTIONS(2735), 56, + ACTIONS(2890), 56, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -198532,17 +198800,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [10863] = 5, + [11007] = 6, ACTIONS(497), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, anon_sym_SLASH_STAR, - ACTIONS(2800), 1, + ACTIONS(1879), 1, anon_sym_LBRACK, - STATE(1748), 2, + STATE(1818), 1, + sym_type_parameters, + STATE(1751), 2, sym_line_comment, sym_block_comment, - ACTIONS(2802), 56, + ACTIONS(1881), 54, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -198564,7 +198834,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, @@ -198572,7 +198841,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, @@ -198599,25 +198867,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [10935] = 5, - ACTIONS(497), 1, + [11080] = 15, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, - ACTIONS(499), 1, + ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(2890), 1, + ACTIONS(4719), 1, + anon_sym_LPAREN, + ACTIONS(4721), 1, anon_sym_LBRACK, - STATE(1749), 2, + ACTIONS(4723), 1, + anon_sym_QMARK, + ACTIONS(4725), 1, + anon_sym_BANG, + ACTIONS(4727), 1, + anon_sym_LBRACK2, + ACTIONS(4729), 1, + anon_sym_POUND_LBRACK, + STATE(2080), 1, + sym_argument_list, + STATE(2081), 1, + sym_or_block, + STATE(4267), 1, + sym_type_parameters, + ACTIONS(4717), 2, + anon_sym_DOT, + anon_sym_QMARK_DOT, + STATE(1752), 2, sym_line_comment, sym_block_comment, - ACTIONS(2892), 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, + ACTIONS(1785), 15, anon_sym_EQ, anon_sym_PIPE, anon_sym_PLUS, @@ -198627,6 +198906,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PERCENT, anon_sym_LT, anon_sym_GT, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_GT_GT_GT, + anon_sym_AMP_CARET, + ACTIONS(1783), 30, + anon_sym_as, + anon_sym_LBRACE, + anon_sym_COMMA, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, @@ -198634,21 +198923,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_LBRACK2, - anon_sym_CARET, - anon_sym_AMP, anon_sym_LT_DASH, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_or, - anon_sym_QMARK_DOT, - anon_sym_POUND_LBRACK, anon_sym_is, anon_sym_BANGis, anon_sym_in, @@ -198665,70 +198943,69 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_EQ, anon_sym_PIPE_EQ, anon_sym_CARET_EQ, - anon_sym_COLON_EQ, - [11007] = 27, + [11171] = 27, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(1781), 1, + ACTIONS(1795), 1, anon_sym_EQ, - ACTIONS(4661), 1, - anon_sym_as, - ACTIONS(4667), 1, + ACTIONS(4719), 1, anon_sym_LPAREN, - ACTIONS(4677), 1, + ACTIONS(4721), 1, anon_sym_LBRACK, - ACTIONS(4679), 1, - anon_sym_PLUS_PLUS, - ACTIONS(4681), 1, - anon_sym_DASH_DASH, - ACTIONS(4683), 1, + ACTIONS(4723), 1, anon_sym_QMARK, - ACTIONS(4685), 1, + ACTIONS(4725), 1, anon_sym_BANG, - ACTIONS(4687), 1, + ACTIONS(4727), 1, anon_sym_LBRACK2, - ACTIONS(4689), 1, + ACTIONS(4729), 1, + anon_sym_POUND_LBRACK, + ACTIONS(4731), 1, + anon_sym_as, + ACTIONS(4741), 1, + anon_sym_PLUS_PLUS, + ACTIONS(4743), 1, + anon_sym_DASH_DASH, + ACTIONS(4745), 1, anon_sym_AMP_AMP, - ACTIONS(4691), 1, + ACTIONS(4747), 1, anon_sym_PIPE_PIPE, - ACTIONS(4693), 1, + ACTIONS(4749), 1, anon_sym_or, - ACTIONS(4695), 1, - anon_sym_POUND_LBRACK, - STATE(2067), 1, + STATE(2080), 1, sym_argument_list, - STATE(2068), 1, + STATE(2081), 1, sym_or_block, - STATE(4090), 1, + STATE(4267), 1, sym_type_parameters, - ACTIONS(4659), 2, + ACTIONS(4717), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - ACTIONS(4673), 2, + ACTIONS(4737), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(4697), 2, + ACTIONS(4751), 2, anon_sym_is, anon_sym_BANGis, - ACTIONS(4699), 2, + ACTIONS(4753), 2, anon_sym_in, anon_sym_BANGin, - STATE(1750), 2, + STATE(1753), 2, sym_line_comment, sym_block_comment, - ACTIONS(4669), 4, + ACTIONS(4733), 4, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_CARET, - ACTIONS(4675), 4, + ACTIONS(4739), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(4671), 8, + ACTIONS(4735), 8, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, @@ -198737,10 +199014,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(1779), 16, - anon_sym_SEMI, + ACTIONS(1793), 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, @@ -198753,70 +199031,69 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_EQ, anon_sym_PIPE_EQ, anon_sym_CARET_EQ, - anon_sym_COLON_EQ, - [11122] = 27, + [11286] = 27, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(1773), 1, anon_sym_EQ, - ACTIONS(4661), 1, - anon_sym_as, - ACTIONS(4667), 1, + ACTIONS(4719), 1, anon_sym_LPAREN, - ACTIONS(4677), 1, + ACTIONS(4721), 1, anon_sym_LBRACK, - ACTIONS(4679), 1, - anon_sym_PLUS_PLUS, - ACTIONS(4681), 1, - anon_sym_DASH_DASH, - ACTIONS(4683), 1, + ACTIONS(4723), 1, anon_sym_QMARK, - ACTIONS(4685), 1, + ACTIONS(4725), 1, anon_sym_BANG, - ACTIONS(4687), 1, + ACTIONS(4727), 1, anon_sym_LBRACK2, - ACTIONS(4689), 1, + ACTIONS(4729), 1, + anon_sym_POUND_LBRACK, + ACTIONS(4731), 1, + anon_sym_as, + ACTIONS(4741), 1, + anon_sym_PLUS_PLUS, + ACTIONS(4743), 1, + anon_sym_DASH_DASH, + ACTIONS(4745), 1, anon_sym_AMP_AMP, - ACTIONS(4691), 1, + ACTIONS(4747), 1, anon_sym_PIPE_PIPE, - ACTIONS(4693), 1, + ACTIONS(4749), 1, anon_sym_or, - ACTIONS(4695), 1, - anon_sym_POUND_LBRACK, - STATE(2067), 1, + STATE(2080), 1, sym_argument_list, - STATE(2068), 1, + STATE(2081), 1, sym_or_block, - STATE(4090), 1, + STATE(4267), 1, sym_type_parameters, - ACTIONS(4659), 2, + ACTIONS(4717), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - ACTIONS(4673), 2, + ACTIONS(4737), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(4697), 2, + ACTIONS(4751), 2, anon_sym_is, anon_sym_BANGis, - ACTIONS(4699), 2, + ACTIONS(4753), 2, anon_sym_in, anon_sym_BANGin, - STATE(1751), 2, + STATE(1754), 2, sym_line_comment, sym_block_comment, - ACTIONS(4669), 4, + ACTIONS(4733), 4, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_CARET, - ACTIONS(4675), 4, + ACTIONS(4739), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(4671), 8, + ACTIONS(4735), 8, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, @@ -198826,9 +199103,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT_GT, anon_sym_AMP_CARET, ACTIONS(1771), 16, - anon_sym_SEMI, anon_sym_LBRACE, anon_sym_COMMA, + anon_sym_COLON, + anon_sym_LT_DASH, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, @@ -198841,28 +199119,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_EQ, anon_sym_PIPE_EQ, anon_sym_CARET_EQ, - anon_sym_COLON_EQ, - [11237] = 6, - ACTIONS(497), 1, + [11401] = 15, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, - ACTIONS(499), 1, + ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(1915), 1, + ACTIONS(4719), 1, + anon_sym_LPAREN, + ACTIONS(4721), 1, anon_sym_LBRACK, - ACTIONS(1951), 1, - anon_sym_LBRACE, - STATE(1752), 2, + ACTIONS(4723), 1, + anon_sym_QMARK, + ACTIONS(4725), 1, + anon_sym_BANG, + ACTIONS(4727), 1, + anon_sym_LBRACK2, + ACTIONS(4729), 1, + anon_sym_POUND_LBRACK, + STATE(2080), 1, + sym_argument_list, + STATE(2081), 1, + sym_or_block, + STATE(4267), 1, + sym_type_parameters, + ACTIONS(4717), 2, + anon_sym_DOT, + anon_sym_QMARK_DOT, + STATE(1755), 2, sym_line_comment, sym_block_comment, - ACTIONS(1917), 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(1769), 15, anon_sym_EQ, anon_sym_PIPE, anon_sym_PLUS, @@ -198872,26 +199158,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PERCENT, anon_sym_LT, anon_sym_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_LBRACK2, anon_sym_CARET, anon_sym_AMP, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, + ACTIONS(1767), 30, + anon_sym_as, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_COLON, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_LT_DASH, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_or, - anon_sym_QMARK_DOT, - anon_sym_POUND_LBRACK, anon_sym_is, anon_sym_BANGis, anon_sym_in, @@ -198908,37 +199195,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_EQ, anon_sym_PIPE_EQ, anon_sym_CARET_EQ, - anon_sym_COLON_EQ, - [11310] = 15, - ACTIONS(3), 1, + [11492] = 6, + ACTIONS(497), 1, anon_sym_SLASH_SLASH, - ACTIONS(5), 1, + ACTIONS(499), 1, anon_sym_SLASH_STAR, - ACTIONS(4667), 1, - anon_sym_LPAREN, - ACTIONS(4677), 1, + ACTIONS(1841), 1, anon_sym_LBRACK, - ACTIONS(4683), 1, - anon_sym_QMARK, - ACTIONS(4685), 1, - anon_sym_BANG, - ACTIONS(4687), 1, - anon_sym_LBRACK2, - ACTIONS(4695), 1, - anon_sym_POUND_LBRACK, - STATE(2067), 1, - sym_argument_list, - STATE(2068), 1, - sym_or_block, - STATE(4090), 1, - sym_type_parameters, - ACTIONS(4659), 2, - anon_sym_DOT, - anon_sym_QMARK_DOT, - STATE(1753), 2, + ACTIONS(4755), 1, + anon_sym_DOLLARelse, + STATE(1756), 2, sym_line_comment, sym_block_comment, - ACTIONS(1777), 15, + ACTIONS(1843), 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, @@ -198948,26 +199225,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(1775), 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, @@ -198985,19 +199262,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [11401] = 6, + [11565] = 6, ACTIONS(497), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, anon_sym_SLASH_STAR, - ACTIONS(1903), 1, + ACTIONS(1807), 1, anon_sym_LBRACK, - STATE(1812), 1, - sym_type_parameters, - STATE(1754), 2, + ACTIONS(1987), 1, + anon_sym_LBRACE, + STATE(1757), 2, sym_line_comment, sym_block_comment, - ACTIONS(1905), 54, + ACTIONS(1809), 54, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -199052,45 +199329,44 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [11474] = 17, + [11638] = 16, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(4713), 1, - anon_sym_LPAREN, ACTIONS(4719), 1, - anon_sym_LBRACK, + anon_sym_LPAREN, ACTIONS(4721), 1, - anon_sym_QMARK, + anon_sym_LBRACK, ACTIONS(4723), 1, - anon_sym_BANG, + anon_sym_QMARK, ACTIONS(4725), 1, - anon_sym_LBRACK2, + anon_sym_BANG, ACTIONS(4727), 1, + anon_sym_LBRACK2, + ACTIONS(4729), 1, anon_sym_POUND_LBRACK, - STATE(2077), 1, + STATE(2080), 1, sym_argument_list, - STATE(2078), 1, + STATE(2081), 1, sym_or_block, - STATE(4022), 1, + STATE(4267), 1, sym_type_parameters, - ACTIONS(4711), 2, + ACTIONS(4717), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - STATE(1755), 2, + STATE(1758), 2, sym_line_comment, sym_block_comment, - ACTIONS(1769), 3, + ACTIONS(1765), 7, anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - ACTIONS(4715), 4, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, + anon_sym_LT, + anon_sym_GT, anon_sym_CARET, - ACTIONS(4717), 8, + ACTIONS(4735), 8, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, @@ -199099,7 +199375,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(1767), 30, + ACTIONS(1763), 30, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -199130,73 +199406,45 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_EQ, anon_sym_PIPE_EQ, anon_sym_CARET_EQ, - [11569] = 29, + [11731] = 17, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(1757), 1, - anon_sym_SEMI, - ACTIONS(1761), 1, - anon_sym_EQ, - ACTIONS(4661), 1, - anon_sym_as, - ACTIONS(4667), 1, + ACTIONS(4719), 1, anon_sym_LPAREN, - ACTIONS(4677), 1, + ACTIONS(4721), 1, anon_sym_LBRACK, - ACTIONS(4679), 1, - anon_sym_PLUS_PLUS, - ACTIONS(4681), 1, - anon_sym_DASH_DASH, - ACTIONS(4683), 1, + ACTIONS(4723), 1, anon_sym_QMARK, - ACTIONS(4685), 1, + ACTIONS(4725), 1, anon_sym_BANG, - ACTIONS(4687), 1, + ACTIONS(4727), 1, anon_sym_LBRACK2, - ACTIONS(4693), 1, - anon_sym_or, - ACTIONS(4695), 1, + ACTIONS(4729), 1, anon_sym_POUND_LBRACK, - ACTIONS(4737), 1, - anon_sym_AMP_AMP, - ACTIONS(4739), 1, - anon_sym_PIPE_PIPE, - STATE(2067), 1, + STATE(2080), 1, sym_argument_list, - STATE(2068), 1, + STATE(2081), 1, sym_or_block, - STATE(3792), 1, - aux_sym_strictly_expression_list_repeat1, - STATE(4090), 1, + STATE(4267), 1, sym_type_parameters, - ACTIONS(4659), 2, + ACTIONS(4717), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - ACTIONS(4697), 2, - anon_sym_is, - anon_sym_BANGis, - ACTIONS(4733), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(4741), 2, - anon_sym_in, - anon_sym_BANGin, - STATE(1756), 2, + STATE(1759), 2, sym_line_comment, sym_block_comment, - ACTIONS(4729), 4, + ACTIONS(1765), 3, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + ACTIONS(4733), 4, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_CARET, - ACTIONS(4735), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(4731), 8, + ACTIONS(4735), 8, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, @@ -199205,8 +199453,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(3524), 14, + ACTIONS(1763), 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, @@ -199219,76 +199484,54 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_EQ, anon_sym_PIPE_EQ, anon_sym_CARET_EQ, - anon_sym_COLON_EQ, - [11688] = 30, + [11826] = 20, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(1649), 1, - anon_sym_LBRACE, - ACTIONS(1661), 1, + ACTIONS(1765), 1, anon_sym_EQ, - ACTIONS(4661), 1, - anon_sym_as, - ACTIONS(4667), 1, + ACTIONS(4719), 1, anon_sym_LPAREN, - ACTIONS(4677), 1, + ACTIONS(4721), 1, anon_sym_LBRACK, - ACTIONS(4679), 1, - anon_sym_PLUS_PLUS, - ACTIONS(4681), 1, - anon_sym_DASH_DASH, - ACTIONS(4683), 1, + ACTIONS(4723), 1, anon_sym_QMARK, - ACTIONS(4685), 1, + ACTIONS(4725), 1, anon_sym_BANG, - ACTIONS(4687), 1, + ACTIONS(4727), 1, anon_sym_LBRACK2, - ACTIONS(4689), 1, - anon_sym_AMP_AMP, - ACTIONS(4691), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4693), 1, - anon_sym_or, - ACTIONS(4695), 1, + ACTIONS(4729), 1, anon_sym_POUND_LBRACK, - ACTIONS(4743), 1, - anon_sym_COMMA, - STATE(2067), 1, + STATE(2080), 1, sym_argument_list, - STATE(2068), 1, + STATE(2081), 1, sym_or_block, - STATE(3270), 1, - aux_sym_strictly_expression_list_repeat1, - STATE(4090), 1, + STATE(4267), 1, sym_type_parameters, - ACTIONS(4659), 2, + ACTIONS(4717), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - ACTIONS(4673), 2, + ACTIONS(4737), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(4697), 2, - anon_sym_is, - anon_sym_BANGis, - ACTIONS(4699), 2, + ACTIONS(4753), 2, anon_sym_in, anon_sym_BANGin, - STATE(1757), 2, + STATE(1760), 2, sym_line_comment, sym_block_comment, - ACTIONS(4669), 4, + ACTIONS(4733), 4, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_CARET, - ACTIONS(4675), 4, + ACTIONS(4739), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(4671), 8, + ACTIONS(4735), 8, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, @@ -199297,7 +199540,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(3478), 13, + ACTIONS(1763), 24, + anon_sym_as, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_LT_DASH, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_or, + anon_sym_is, + anon_sym_BANGis, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, @@ -199310,71 +199565,76 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_EQ, anon_sym_PIPE_EQ, anon_sym_CARET_EQ, - anon_sym_COLON_EQ, - [11809] = 15, + [11927] = 21, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(4713), 1, - anon_sym_LPAREN, + ACTIONS(1765), 1, + anon_sym_EQ, ACTIONS(4719), 1, - anon_sym_LBRACK, + anon_sym_LPAREN, ACTIONS(4721), 1, - anon_sym_QMARK, + anon_sym_LBRACK, ACTIONS(4723), 1, - anon_sym_BANG, + anon_sym_QMARK, ACTIONS(4725), 1, - anon_sym_LBRACK2, + anon_sym_BANG, ACTIONS(4727), 1, + anon_sym_LBRACK2, + ACTIONS(4729), 1, anon_sym_POUND_LBRACK, - STATE(2077), 1, + ACTIONS(4745), 1, + anon_sym_AMP_AMP, + STATE(2080), 1, sym_argument_list, - STATE(2078), 1, + STATE(2081), 1, sym_or_block, - STATE(4022), 1, + STATE(4267), 1, sym_type_parameters, - ACTIONS(4711), 2, + ACTIONS(4717), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - STATE(1758), 2, + ACTIONS(4737), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(4753), 2, + anon_sym_in, + anon_sym_BANGin, + STATE(1761), 2, sym_line_comment, sym_block_comment, - ACTIONS(1777), 15, - anon_sym_EQ, + ACTIONS(4733), 4, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, + anon_sym_CARET, + ACTIONS(4739), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(4735), 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(1775), 30, + ACTIONS(1763), 23, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, anon_sym_COLON, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_LT_DASH, - anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_or, anon_sym_is, anon_sym_BANGis, - anon_sym_in, - anon_sym_BANGin, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, @@ -199387,127 +199647,84 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_EQ, anon_sym_PIPE_EQ, anon_sym_CARET_EQ, - [11900] = 6, - ACTIONS(497), 1, + [12030] = 30, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, - ACTIONS(499), 1, + ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(1919), 1, - anon_sym_LBRACK, - ACTIONS(4745), 1, - anon_sym_DOLLARelse, - STATE(1759), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(1921), 54, - anon_sym_LF, - anon_sym_CR, - anon_sym_CR_LF, - anon_sym_DOT, + ACTIONS(1751), 1, + anon_sym_LBRACE, + ACTIONS(1757), 1, + anon_sym_EQ, + ACTIONS(4661), 1, anon_sym_as, - anon_sym_COMMA, - anon_sym_RBRACE, + ACTIONS(4667), 1, anon_sym_LPAREN, - anon_sym_EQ, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_LT, - anon_sym_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, + ACTIONS(4677), 1, + anon_sym_LBRACK, + ACTIONS(4679), 1, anon_sym_PLUS_PLUS, + ACTIONS(4681), 1, anon_sym_DASH_DASH, + ACTIONS(4683), 1, anon_sym_QMARK, + ACTIONS(4685), 1, anon_sym_BANG, + ACTIONS(4687), 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(4689), 1, anon_sym_AMP_AMP, + ACTIONS(4691), 1, anon_sym_PIPE_PIPE, + ACTIONS(4693), 1, anon_sym_or, - anon_sym_QMARK_DOT, + ACTIONS(4695), 1, anon_sym_POUND_LBRACK, + ACTIONS(4757), 1, + anon_sym_COMMA, + STATE(1972), 1, + sym_or_block, + STATE(1977), 1, + sym_argument_list, + STATE(3270), 1, + aux_sym_strictly_expression_list_repeat1, + STATE(4147), 1, + sym_type_parameters, + ACTIONS(4659), 2, + anon_sym_DOT, + anon_sym_QMARK_DOT, + ACTIONS(4673), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(4697), 2, anon_sym_is, anon_sym_BANGis, + ACTIONS(4699), 2, anon_sym_in, anon_sym_BANGin, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_AMP_CARET_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, - anon_sym_COLON_EQ, - [11973] = 6, - ACTIONS(497), 1, - anon_sym_SLASH_SLASH, - ACTIONS(499), 1, - anon_sym_SLASH_STAR, - ACTIONS(1897), 1, - anon_sym_LBRACK, - ACTIONS(4747), 1, - anon_sym_DOLLARelse, - STATE(1760), 2, + STATE(1762), 2, sym_line_comment, sym_block_comment, - ACTIONS(1899), 54, - anon_sym_LF, - anon_sym_CR, - anon_sym_CR_LF, - anon_sym_DOT, - anon_sym_as, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_EQ, + ACTIONS(4669), 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(4675), 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(4671), 8, + anon_sym_STAR, + anon_sym_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(3484), 13, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, @@ -199521,69 +199738,45 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [12046] = 27, + [12151] = 17, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(1773), 1, - anon_sym_EQ, - ACTIONS(4713), 1, - anon_sym_LPAREN, ACTIONS(4719), 1, - anon_sym_LBRACK, + anon_sym_LPAREN, ACTIONS(4721), 1, - anon_sym_QMARK, + anon_sym_LBRACK, ACTIONS(4723), 1, - anon_sym_BANG, + anon_sym_QMARK, ACTIONS(4725), 1, - anon_sym_LBRACK2, + anon_sym_BANG, ACTIONS(4727), 1, + anon_sym_LBRACK2, + ACTIONS(4729), 1, anon_sym_POUND_LBRACK, - ACTIONS(4749), 1, - anon_sym_as, - ACTIONS(4755), 1, - anon_sym_PLUS_PLUS, - ACTIONS(4757), 1, - anon_sym_DASH_DASH, - ACTIONS(4759), 1, - anon_sym_AMP_AMP, - ACTIONS(4761), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4763), 1, - anon_sym_or, - STATE(2077), 1, + STATE(2080), 1, sym_argument_list, - STATE(2078), 1, + STATE(2081), 1, sym_or_block, - STATE(4022), 1, + STATE(4267), 1, sym_type_parameters, - ACTIONS(4711), 2, + ACTIONS(4717), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - ACTIONS(4751), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(4765), 2, - anon_sym_is, - anon_sym_BANGis, - ACTIONS(4767), 2, - anon_sym_in, - anon_sym_BANGin, - STATE(1761), 2, + STATE(1763), 2, sym_line_comment, sym_block_comment, - ACTIONS(4715), 4, + ACTIONS(1781), 3, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + ACTIONS(4733), 4, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_CARET, - ACTIONS(4753), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(4717), 8, + ACTIONS(4735), 8, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, @@ -199592,11 +199785,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(1771), 16, + ACTIONS(1779), 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, @@ -199609,82 +199816,69 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_EQ, anon_sym_PIPE_EQ, anon_sym_CARET_EQ, - [12161] = 27, + [12246] = 15, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(1781), 1, - anon_sym_EQ, - ACTIONS(4713), 1, + ACTIONS(4667), 1, anon_sym_LPAREN, - ACTIONS(4719), 1, + ACTIONS(4677), 1, anon_sym_LBRACK, - ACTIONS(4721), 1, + ACTIONS(4683), 1, anon_sym_QMARK, - ACTIONS(4723), 1, + ACTIONS(4685), 1, anon_sym_BANG, - ACTIONS(4725), 1, + ACTIONS(4687), 1, anon_sym_LBRACK2, - ACTIONS(4727), 1, + ACTIONS(4695), 1, anon_sym_POUND_LBRACK, - ACTIONS(4749), 1, - anon_sym_as, - ACTIONS(4755), 1, - anon_sym_PLUS_PLUS, - ACTIONS(4757), 1, - anon_sym_DASH_DASH, - ACTIONS(4759), 1, - anon_sym_AMP_AMP, - ACTIONS(4761), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4763), 1, - anon_sym_or, - STATE(2077), 1, - sym_argument_list, - STATE(2078), 1, + STATE(1972), 1, sym_or_block, - STATE(4022), 1, + STATE(1977), 1, + sym_argument_list, + STATE(4147), 1, sym_type_parameters, - ACTIONS(4711), 2, + ACTIONS(4659), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - ACTIONS(4751), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(4765), 2, - anon_sym_is, - anon_sym_BANGis, - ACTIONS(4767), 2, - anon_sym_in, - anon_sym_BANGin, - STATE(1762), 2, + STATE(1764), 2, sym_line_comment, sym_block_comment, - ACTIONS(4715), 4, + ACTIONS(1769), 15, + anon_sym_EQ, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - anon_sym_CARET, - ACTIONS(4753), 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(1779), 16, + ACTIONS(1767), 30, + anon_sym_SEMI, + anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, - anon_sym_COLON, - anon_sym_LT_DASH, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_or, + anon_sym_is, + anon_sym_BANGis, + anon_sym_in, + anon_sym_BANGin, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, @@ -199697,70 +199891,84 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_EQ, anon_sym_PIPE_EQ, anon_sym_CARET_EQ, - [12276] = 15, + anon_sym_COLON_EQ, + [12337] = 29, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(4713), 1, + ACTIONS(1641), 1, + anon_sym_LBRACE, + ACTIONS(1649), 1, + anon_sym_EQ, + ACTIONS(4661), 1, + anon_sym_as, + ACTIONS(4667), 1, anon_sym_LPAREN, - ACTIONS(4719), 1, + ACTIONS(4677), 1, anon_sym_LBRACK, - ACTIONS(4721), 1, + ACTIONS(4679), 1, + anon_sym_PLUS_PLUS, + ACTIONS(4681), 1, + anon_sym_DASH_DASH, + ACTIONS(4683), 1, anon_sym_QMARK, - ACTIONS(4723), 1, + ACTIONS(4685), 1, anon_sym_BANG, - ACTIONS(4725), 1, + ACTIONS(4687), 1, anon_sym_LBRACK2, - ACTIONS(4727), 1, + ACTIONS(4689), 1, + anon_sym_AMP_AMP, + ACTIONS(4691), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4693), 1, + anon_sym_or, + ACTIONS(4695), 1, anon_sym_POUND_LBRACK, - STATE(2077), 1, - sym_argument_list, - STATE(2078), 1, + STATE(1972), 1, sym_or_block, - STATE(4022), 1, + STATE(1977), 1, + sym_argument_list, + STATE(3891), 1, + aux_sym_strictly_expression_list_repeat1, + STATE(4147), 1, sym_type_parameters, - ACTIONS(4711), 2, + ACTIONS(4659), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - STATE(1763), 2, + ACTIONS(4673), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(4697), 2, + anon_sym_is, + anon_sym_BANGis, + ACTIONS(4699), 2, + anon_sym_in, + anon_sym_BANGin, + STATE(1765), 2, sym_line_comment, sym_block_comment, - ACTIONS(1785), 15, - anon_sym_EQ, + ACTIONS(4669), 4, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, + anon_sym_CARET, + ACTIONS(4675), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(4671), 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(1783), 30, - anon_sym_as, - anon_sym_LBRACE, + ACTIONS(3522), 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, @@ -199773,69 +199981,84 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_EQ, anon_sym_PIPE_EQ, anon_sym_CARET_EQ, - [12367] = 15, + anon_sym_COLON_EQ, + [12456] = 29, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, + ACTIONS(1641), 1, + anon_sym_SEMI, + ACTIONS(1649), 1, + anon_sym_EQ, + ACTIONS(4661), 1, + anon_sym_as, ACTIONS(4667), 1, anon_sym_LPAREN, ACTIONS(4677), 1, anon_sym_LBRACK, + ACTIONS(4679), 1, + anon_sym_PLUS_PLUS, + ACTIONS(4681), 1, + anon_sym_DASH_DASH, ACTIONS(4683), 1, anon_sym_QMARK, ACTIONS(4685), 1, anon_sym_BANG, ACTIONS(4687), 1, anon_sym_LBRACK2, + ACTIONS(4693), 1, + anon_sym_or, ACTIONS(4695), 1, anon_sym_POUND_LBRACK, - STATE(2067), 1, - sym_argument_list, - STATE(2068), 1, + ACTIONS(4767), 1, + anon_sym_AMP_AMP, + ACTIONS(4769), 1, + anon_sym_PIPE_PIPE, + STATE(1972), 1, sym_or_block, - STATE(4090), 1, + STATE(1977), 1, + sym_argument_list, + STATE(3905), 1, + aux_sym_strictly_expression_list_repeat1, + STATE(4147), 1, sym_type_parameters, ACTIONS(4659), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - STATE(1764), 2, + ACTIONS(4697), 2, + anon_sym_is, + anon_sym_BANGis, + ACTIONS(4763), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(4771), 2, + anon_sym_in, + anon_sym_BANGin, + STATE(1766), 2, sym_line_comment, sym_block_comment, - ACTIONS(1765), 15, - anon_sym_EQ, + ACTIONS(4759), 4, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, + anon_sym_CARET, + ACTIONS(4765), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(4761), 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(1763), 30, - anon_sym_SEMI, - anon_sym_as, - anon_sym_LBRACE, + ACTIONS(3522), 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, @@ -199849,14 +200072,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [12458] = 29, + [12575] = 27, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(1757), 1, - anon_sym_LBRACE, - ACTIONS(1761), 1, + ACTIONS(1773), 1, anon_sym_EQ, ACTIONS(4661), 1, anon_sym_as, @@ -199882,13 +200103,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_or, ACTIONS(4695), 1, anon_sym_POUND_LBRACK, - STATE(2067), 1, - sym_argument_list, - STATE(2068), 1, + STATE(1972), 1, sym_or_block, - STATE(3893), 1, - aux_sym_strictly_expression_list_repeat1, - STATE(4090), 1, + STATE(1977), 1, + sym_argument_list, + STATE(4147), 1, sym_type_parameters, ACTIONS(4659), 2, anon_sym_DOT, @@ -199902,7 +200121,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(4699), 2, anon_sym_in, anon_sym_BANGin, - STATE(1765), 2, + STATE(1767), 2, sym_line_comment, sym_block_comment, ACTIONS(4669), 4, @@ -199924,7 +200143,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(3524), 14, + ACTIONS(1771), 16, + anon_sym_SEMI, + anon_sym_LBRACE, anon_sym_COMMA, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -199939,33 +200160,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [12577] = 15, + [12690] = 15, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(4713), 1, - anon_sym_LPAREN, ACTIONS(4719), 1, - anon_sym_LBRACK, + anon_sym_LPAREN, ACTIONS(4721), 1, - anon_sym_QMARK, + anon_sym_LBRACK, ACTIONS(4723), 1, - anon_sym_BANG, + anon_sym_QMARK, ACTIONS(4725), 1, - anon_sym_LBRACK2, + anon_sym_BANG, ACTIONS(4727), 1, + anon_sym_LBRACK2, + ACTIONS(4729), 1, anon_sym_POUND_LBRACK, - STATE(2077), 1, + STATE(2080), 1, sym_argument_list, - STATE(2078), 1, + STATE(2081), 1, sym_or_block, - STATE(4022), 1, + STATE(4267), 1, sym_type_parameters, - ACTIONS(4711), 2, + ACTIONS(4717), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - STATE(1766), 2, + STATE(1768), 2, sym_line_comment, sym_block_comment, ACTIONS(1765), 15, @@ -200015,162 +200236,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_EQ, anon_sym_PIPE_EQ, anon_sym_CARET_EQ, - [12668] = 17, + [12781] = 27, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(4667), 1, - anon_sym_LPAREN, - ACTIONS(4677), 1, - anon_sym_LBRACK, - ACTIONS(4683), 1, - anon_sym_QMARK, - ACTIONS(4685), 1, - anon_sym_BANG, - ACTIONS(4687), 1, - anon_sym_LBRACK2, - ACTIONS(4695), 1, - anon_sym_POUND_LBRACK, - STATE(2067), 1, - sym_argument_list, - STATE(2068), 1, - sym_or_block, - STATE(4090), 1, - sym_type_parameters, - ACTIONS(4659), 2, - anon_sym_DOT, - anon_sym_QMARK_DOT, - STATE(1767), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(1769), 3, + ACTIONS(1795), 1, anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - ACTIONS(4669), 4, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_CARET, - ACTIONS(4671), 8, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_AMP, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - ACTIONS(1767), 30, - anon_sym_SEMI, - anon_sym_as, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_or, - anon_sym_is, - anon_sym_BANGis, - anon_sym_in, - anon_sym_BANGin, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_AMP_CARET_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, - anon_sym_COLON_EQ, - [12763] = 6, - ACTIONS(497), 1, - anon_sym_SLASH_SLASH, - ACTIONS(499), 1, - anon_sym_SLASH_STAR, - ACTIONS(1856), 1, - anon_sym_LBRACK, - ACTIONS(2507), 1, - anon_sym_LBRACE, - STATE(1768), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(1851), 54, - anon_sym_LF, - anon_sym_CR, - anon_sym_CR_LF, - anon_sym_DOT, + ACTIONS(4661), 1, 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, - [12836] = 21, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_STAR, - ACTIONS(1785), 1, - anon_sym_EQ, ACTIONS(4667), 1, anon_sym_LPAREN, ACTIONS(4677), 1, anon_sym_LBRACK, + ACTIONS(4679), 1, + anon_sym_PLUS_PLUS, + ACTIONS(4681), 1, + anon_sym_DASH_DASH, ACTIONS(4683), 1, anon_sym_QMARK, ACTIONS(4685), 1, @@ -200179,13 +200261,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, ACTIONS(4689), 1, anon_sym_AMP_AMP, + ACTIONS(4691), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4693), 1, + anon_sym_or, ACTIONS(4695), 1, anon_sym_POUND_LBRACK, - STATE(2067), 1, - sym_argument_list, - STATE(2068), 1, + STATE(1972), 1, sym_or_block, - STATE(4090), 1, + STATE(1977), 1, + sym_argument_list, + STATE(4147), 1, sym_type_parameters, ACTIONS(4659), 2, anon_sym_DOT, @@ -200193,6 +200279,9 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(4673), 2, anon_sym_LT, anon_sym_GT, + ACTIONS(4697), 2, + anon_sym_is, + anon_sym_BANGis, ACTIONS(4699), 2, anon_sym_in, anon_sym_BANGin, @@ -200218,17 +200307,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(1783), 23, + ACTIONS(1793), 16, 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, @@ -200242,54 +200324,45 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [12939] = 20, + [12896] = 17, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(1785), 1, - anon_sym_EQ, - ACTIONS(4713), 1, + ACTIONS(4667), 1, anon_sym_LPAREN, - ACTIONS(4719), 1, + ACTIONS(4677), 1, anon_sym_LBRACK, - ACTIONS(4721), 1, + ACTIONS(4683), 1, anon_sym_QMARK, - ACTIONS(4723), 1, + ACTIONS(4685), 1, anon_sym_BANG, - ACTIONS(4725), 1, + ACTIONS(4687), 1, anon_sym_LBRACK2, - ACTIONS(4727), 1, + ACTIONS(4695), 1, anon_sym_POUND_LBRACK, - STATE(2077), 1, - sym_argument_list, - STATE(2078), 1, + STATE(1972), 1, sym_or_block, - STATE(4022), 1, + STATE(1977), 1, + sym_argument_list, + STATE(4147), 1, sym_type_parameters, - ACTIONS(4711), 2, + ACTIONS(4659), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - ACTIONS(4751), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(4767), 2, - anon_sym_in, - anon_sym_BANGin, STATE(1770), 2, sym_line_comment, sym_block_comment, - ACTIONS(4715), 4, + ACTIONS(1781), 3, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + ACTIONS(4669), 4, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_CARET, - ACTIONS(4753), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(4717), 8, + ACTIONS(4671), 8, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, @@ -200298,19 +200371,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(1783), 24, + ACTIONS(1779), 30, + anon_sym_SEMI, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, - anon_sym_COLON, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_LT_DASH, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_or, anon_sym_is, anon_sym_BANGis, + anon_sym_in, + anon_sym_BANGin, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, @@ -200323,56 +200401,57 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_EQ, anon_sym_PIPE_EQ, anon_sym_CARET_EQ, - [13040] = 21, + anon_sym_COLON_EQ, + [12991] = 21, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(1785), 1, + ACTIONS(1765), 1, anon_sym_EQ, - ACTIONS(4713), 1, + ACTIONS(4667), 1, anon_sym_LPAREN, - ACTIONS(4719), 1, + ACTIONS(4677), 1, anon_sym_LBRACK, - ACTIONS(4721), 1, + ACTIONS(4683), 1, anon_sym_QMARK, - ACTIONS(4723), 1, + ACTIONS(4685), 1, anon_sym_BANG, - ACTIONS(4725), 1, + ACTIONS(4687), 1, anon_sym_LBRACK2, - ACTIONS(4727), 1, - anon_sym_POUND_LBRACK, - ACTIONS(4759), 1, + ACTIONS(4689), 1, anon_sym_AMP_AMP, - STATE(2077), 1, - sym_argument_list, - STATE(2078), 1, + ACTIONS(4695), 1, + anon_sym_POUND_LBRACK, + STATE(1972), 1, sym_or_block, - STATE(4022), 1, + STATE(1977), 1, + sym_argument_list, + STATE(4147), 1, sym_type_parameters, - ACTIONS(4711), 2, + ACTIONS(4659), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - ACTIONS(4751), 2, + ACTIONS(4673), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(4767), 2, + ACTIONS(4699), 2, anon_sym_in, anon_sym_BANGin, STATE(1771), 2, sym_line_comment, sym_block_comment, - ACTIONS(4715), 4, + ACTIONS(4669), 4, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_CARET, - ACTIONS(4753), 4, + ACTIONS(4675), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(4717), 8, + ACTIONS(4671), 8, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, @@ -200381,14 +200460,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(1783), 23, + ACTIONS(1763), 23, + anon_sym_SEMI, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, - anon_sym_COLON, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_LT_DASH, anon_sym_PIPE_PIPE, anon_sym_or, anon_sym_is, @@ -200405,12 +200483,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_EQ, anon_sym_PIPE_EQ, anon_sym_CARET_EQ, - [13143] = 20, + anon_sym_COLON_EQ, + [13094] = 20, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(1785), 1, + ACTIONS(1765), 1, anon_sym_EQ, ACTIONS(4667), 1, anon_sym_LPAREN, @@ -200424,11 +200503,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, ACTIONS(4695), 1, anon_sym_POUND_LBRACK, - STATE(2067), 1, - sym_argument_list, - STATE(2068), 1, + STATE(1972), 1, sym_or_block, - STATE(4090), 1, + STATE(1977), 1, + sym_argument_list, + STATE(4147), 1, sym_type_parameters, ACTIONS(4659), 2, anon_sym_DOT, @@ -200461,7 +200540,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(1783), 24, + ACTIONS(1763), 24, anon_sym_SEMI, anon_sym_as, anon_sym_LBRACE, @@ -200486,7 +200565,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [13244] = 17, + [13195] = 17, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, @@ -200503,11 +200582,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, ACTIONS(4695), 1, anon_sym_POUND_LBRACK, - STATE(2067), 1, - sym_argument_list, - STATE(2068), 1, + STATE(1972), 1, sym_or_block, - STATE(4090), 1, + STATE(1977), 1, + sym_argument_list, + STATE(4147), 1, sym_type_parameters, ACTIONS(4659), 2, anon_sym_DOT, @@ -200515,7 +200594,7 @@ static const uint16_t ts_small_parse_table[] = { STATE(1773), 2, sym_line_comment, sym_block_comment, - ACTIONS(1785), 3, + ACTIONS(1765), 3, anon_sym_EQ, anon_sym_LT, anon_sym_GT, @@ -200533,7 +200612,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(1783), 30, + ACTIONS(1763), 30, anon_sym_SEMI, anon_sym_as, anon_sym_LBRACE, @@ -200564,7 +200643,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [13339] = 15, + [13290] = 15, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, @@ -200581,11 +200660,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, ACTIONS(4695), 1, anon_sym_POUND_LBRACK, - STATE(2067), 1, - sym_argument_list, - STATE(2068), 1, + STATE(1972), 1, sym_or_block, - STATE(4090), 1, + STATE(1977), 1, + sym_argument_list, + STATE(4147), 1, sym_type_parameters, ACTIONS(4659), 2, anon_sym_DOT, @@ -200593,7 +200672,7 @@ static const uint16_t ts_small_parse_table[] = { STATE(1774), 2, sym_line_comment, sym_block_comment, - ACTIONS(1785), 15, + ACTIONS(1765), 15, anon_sym_EQ, anon_sym_PIPE, anon_sym_PLUS, @@ -200609,7 +200688,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(1783), 30, + ACTIONS(1763), 30, anon_sym_SEMI, anon_sym_as, anon_sym_LBRACE, @@ -200640,7 +200719,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [13430] = 16, + [13381] = 16, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, @@ -200657,11 +200736,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, ACTIONS(4695), 1, anon_sym_POUND_LBRACK, - STATE(2067), 1, - sym_argument_list, - STATE(2068), 1, + STATE(1972), 1, sym_or_block, - STATE(4090), 1, + STATE(1977), 1, + sym_argument_list, + STATE(4147), 1, sym_type_parameters, ACTIONS(4659), 2, anon_sym_DOT, @@ -200669,7 +200748,7 @@ static const uint16_t ts_small_parse_table[] = { STATE(1775), 2, sym_line_comment, sym_block_comment, - ACTIONS(1785), 7, + ACTIONS(1765), 7, anon_sym_EQ, anon_sym_PIPE, anon_sym_PLUS, @@ -200686,7 +200765,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(1783), 30, + ACTIONS(1763), 30, anon_sym_SEMI, anon_sym_as, anon_sym_LBRACE, @@ -200717,19 +200796,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [13523] = 6, + [13474] = 6, ACTIONS(497), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, anon_sym_SLASH_STAR, - ACTIONS(1951), 1, - anon_sym_LBRACE, - ACTIONS(2661), 1, + ACTIONS(1894), 1, anon_sym_LBRACK, + ACTIONS(2475), 1, + anon_sym_LBRACE, STATE(1776), 2, sym_line_comment, sym_block_comment, - ACTIONS(2663), 54, + ACTIONS(1889), 54, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -200784,54 +200863,53 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [13596] = 17, + [13547] = 15, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(4713), 1, + ACTIONS(4667), 1, anon_sym_LPAREN, - ACTIONS(4719), 1, + ACTIONS(4677), 1, anon_sym_LBRACK, - ACTIONS(4721), 1, + ACTIONS(4683), 1, anon_sym_QMARK, - ACTIONS(4723), 1, + ACTIONS(4685), 1, anon_sym_BANG, - ACTIONS(4725), 1, + ACTIONS(4687), 1, anon_sym_LBRACK2, - ACTIONS(4727), 1, + ACTIONS(4695), 1, anon_sym_POUND_LBRACK, - STATE(2077), 1, - sym_argument_list, - STATE(2078), 1, + STATE(1972), 1, sym_or_block, - STATE(4022), 1, + STATE(1977), 1, + sym_argument_list, + STATE(4147), 1, sym_type_parameters, - ACTIONS(4711), 2, + ACTIONS(4659), 2, anon_sym_DOT, anon_sym_QMARK_DOT, STATE(1777), 2, sym_line_comment, sym_block_comment, - ACTIONS(1785), 3, + ACTIONS(1785), 15, 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_CARET, anon_sym_AMP, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, ACTIONS(1783), 30, + anon_sym_SEMI, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -200839,10 +200917,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, @@ -200862,67 +200938,57 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_EQ, anon_sym_PIPE_EQ, anon_sym_CARET_EQ, - [13691] = 16, - ACTIONS(3), 1, + anon_sym_COLON_EQ, + [13638] = 6, + ACTIONS(497), 1, anon_sym_SLASH_SLASH, - ACTIONS(5), 1, + ACTIONS(499), 1, anon_sym_SLASH_STAR, - ACTIONS(4713), 1, - anon_sym_LPAREN, - ACTIONS(4719), 1, + ACTIONS(1911), 1, anon_sym_LBRACK, - ACTIONS(4721), 1, - anon_sym_QMARK, - ACTIONS(4723), 1, - anon_sym_BANG, - ACTIONS(4725), 1, - anon_sym_LBRACK2, - ACTIONS(4727), 1, - anon_sym_POUND_LBRACK, - STATE(2077), 1, - sym_argument_list, - STATE(2078), 1, - sym_or_block, - STATE(4022), 1, - sym_type_parameters, - ACTIONS(4711), 2, - anon_sym_DOT, - anon_sym_QMARK_DOT, + ACTIONS(4773), 1, + anon_sym_DOLLARelse, STATE(1778), 2, sym_line_comment, sym_block_comment, - ACTIONS(1785), 7, + ACTIONS(1913), 54, + anon_sym_LF, + anon_sym_CR, + anon_sym_CR_LF, + anon_sym_DOT, + anon_sym_as, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, anon_sym_EQ, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - anon_sym_LT, - anon_sym_GT, - anon_sym_CARET, - ACTIONS(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(1783), 30, - anon_sym_as, - anon_sym_LBRACE, - anon_sym_COMMA, + anon_sym_LT, + anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - anon_sym_COLON, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_LT_DASH, + anon_sym_QMARK, + anon_sym_BANG, + anon_sym_LBRACK2, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_GT_GT_GT, + anon_sym_AMP_CARET, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_or, + anon_sym_QMARK_DOT, + anon_sym_POUND_LBRACK, anon_sym_is, anon_sym_BANGis, anon_sym_in, @@ -200939,17 +201005,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_EQ, anon_sym_PIPE_EQ, anon_sym_CARET_EQ, - [13784] = 5, + anon_sym_COLON_EQ, + [13711] = 6, ACTIONS(497), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, anon_sym_SLASH_STAR, - ACTIONS(2645), 1, + ACTIONS(1987), 1, + anon_sym_LBRACE, + ACTIONS(2674), 1, anon_sym_LBRACK, STATE(1779), 2, sym_line_comment, sym_block_comment, - ACTIONS(2647), 54, + ACTIONS(2676), 54, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -201004,73 +201073,58 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [13854] = 20, - ACTIONS(3), 1, + [13784] = 5, + ACTIONS(497), 1, anon_sym_SLASH_SLASH, - ACTIONS(5), 1, + ACTIONS(499), 1, anon_sym_SLASH_STAR, - ACTIONS(1785), 1, - anon_sym_EQ, - ACTIONS(4667), 1, - anon_sym_LPAREN, - ACTIONS(4677), 1, + ACTIONS(1989), 1, anon_sym_LBRACK, - ACTIONS(4683), 1, - anon_sym_QMARK, - ACTIONS(4685), 1, - anon_sym_BANG, - ACTIONS(4687), 1, - anon_sym_LBRACK2, - ACTIONS(4695), 1, - anon_sym_POUND_LBRACK, - STATE(2067), 1, - sym_argument_list, - STATE(2068), 1, - sym_or_block, - STATE(4090), 1, - sym_type_parameters, - ACTIONS(4659), 2, - anon_sym_DOT, - anon_sym_QMARK_DOT, - ACTIONS(4733), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(4741), 2, - anon_sym_in, - anon_sym_BANGin, STATE(1780), 2, sym_line_comment, sym_block_comment, - ACTIONS(4729), 4, + ACTIONS(1987), 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_CARET, - ACTIONS(4735), 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(4731), 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(1783), 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, @@ -201084,17 +201138,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [13954] = 5, - ACTIONS(3), 1, + [13854] = 5, + ACTIONS(497), 1, anon_sym_SLASH_SLASH, - ACTIONS(5), 1, + ACTIONS(499), 1, anon_sym_SLASH_STAR, + ACTIONS(2916), 1, + anon_sym_LBRACK, STATE(1781), 2, sym_line_comment, sym_block_comment, - ACTIONS(1917), 18, - anon_sym_EQ, + ACTIONS(2918), 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, @@ -201102,6 +201168,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, @@ -201111,28 +201187,70 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(1915), 37, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_or, + anon_sym_QMARK_DOT, + anon_sym_POUND_LBRACK, + anon_sym_is, + anon_sym_BANGis, + anon_sym_in, + anon_sym_BANGin, + sym_identifier, + anon_sym_shared, + anon_sym_map_LBRACK, + anon_sym_chan, + anon_sym_thread, + anon_sym_atomic, + anon_sym_AT_LBRACK, + [13924] = 5, + ACTIONS(497), 1, + anon_sym_SLASH_SLASH, + ACTIONS(499), 1, + anon_sym_SLASH_STAR, + ACTIONS(3042), 1, + anon_sym_LBRACK, + STATE(1782), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3044), 54, + anon_sym_LF, + anon_sym_CR, + anon_sym_CR_LF, anon_sym_DOT, anon_sym_as, - anon_sym_LBRACE, anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_LPAREN, + anon_sym_EQ, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_LT, + anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - anon_sym_LBRACK, - anon_sym_COLON, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_LT_DASH, + anon_sym_QMARK, + anon_sym_BANG, + anon_sym_LBRACK2, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_GT_GT_GT, + anon_sym_AMP_CARET, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_or, anon_sym_QMARK_DOT, anon_sym_POUND_LBRACK, - anon_sym_else, - anon_sym_DOLLARelse, anon_sym_is, anon_sym_BANGis, anon_sym_in, @@ -201149,22 +201267,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_EQ, anon_sym_PIPE_EQ, anon_sym_CARET_EQ, - [14024] = 6, + anon_sym_COLON_EQ, + [13994] = 5, ACTIONS(497), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, anon_sym_SLASH_STAR, - ACTIONS(2759), 1, + ACTIONS(2726), 1, anon_sym_LBRACK, - ACTIONS(2763), 1, - anon_sym_DOT, - STATE(1782), 2, + STATE(1783), 2, sym_line_comment, sym_block_comment, - ACTIONS(2761), 53, + ACTIONS(2728), 54, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, + anon_sym_DOT, anon_sym_as, anon_sym_COMMA, anon_sym_RBRACE, @@ -201215,17 +201333,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [14096] = 5, + [14064] = 5, ACTIONS(497), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, anon_sym_SLASH_STAR, - ACTIONS(2733), 1, + ACTIONS(2844), 1, anon_sym_LBRACK, - STATE(1783), 2, + STATE(1784), 2, sym_line_comment, sym_block_comment, - ACTIONS(2735), 54, + ACTIONS(2846), 54, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -201280,17 +201398,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [14166] = 5, + [14134] = 5, ACTIONS(497), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, anon_sym_SLASH_STAR, - ACTIONS(2792), 1, + ACTIONS(2231), 1, anon_sym_LBRACK, - STATE(1784), 2, + STATE(1785), 2, sym_line_comment, sym_block_comment, - ACTIONS(2794), 54, + ACTIONS(2233), 54, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -201345,17 +201463,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [14236] = 5, + [14204] = 5, ACTIONS(497), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, anon_sym_SLASH_STAR, - ACTIONS(2800), 1, + ACTIONS(3060), 1, anon_sym_LBRACK, - STATE(1785), 2, + STATE(1786), 2, sym_line_comment, sym_block_comment, - ACTIONS(2802), 54, + ACTIONS(3062), 54, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -201410,17 +201528,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [14306] = 5, + [14274] = 5, ACTIONS(497), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, anon_sym_SLASH_STAR, - ACTIONS(2804), 1, + ACTIONS(2766), 1, anon_sym_LBRACK, - STATE(1786), 2, + STATE(1787), 2, sym_line_comment, sym_block_comment, - ACTIONS(2806), 54, + ACTIONS(2768), 54, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -201475,17 +201593,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [14376] = 5, + [14344] = 5, ACTIONS(497), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, anon_sym_SLASH_STAR, - ACTIONS(2818), 1, + ACTIONS(3056), 1, anon_sym_LBRACK, - STATE(1787), 2, + STATE(1788), 2, sym_line_comment, sym_block_comment, - ACTIONS(2820), 54, + ACTIONS(3058), 54, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -201540,17 +201658,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [14446] = 5, + [14414] = 5, ACTIONS(497), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, anon_sym_SLASH_STAR, - ACTIONS(2822), 1, + ACTIONS(2904), 1, anon_sym_LBRACK, - STATE(1788), 2, + STATE(1789), 2, sym_line_comment, sym_block_comment, - ACTIONS(2824), 54, + ACTIONS(2906), 54, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -201605,17 +201723,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [14516] = 5, + [14484] = 5, ACTIONS(497), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, anon_sym_SLASH_STAR, - ACTIONS(2256), 1, + ACTIONS(2900), 1, anon_sym_LBRACK, - STATE(1789), 2, + STATE(1790), 2, sym_line_comment, sym_block_comment, - ACTIONS(2253), 54, + ACTIONS(2902), 54, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -201670,17 +201788,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [14586] = 5, + [14554] = 5, ACTIONS(497), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, anon_sym_SLASH_STAR, - ACTIONS(2471), 1, + ACTIONS(2295), 1, anon_sym_LBRACK, - STATE(1790), 2, + STATE(1791), 2, sym_line_comment, sym_block_comment, - ACTIONS(2473), 54, + ACTIONS(2297), 54, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -201735,17 +201853,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [14656] = 5, + [14624] = 5, ACTIONS(497), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, anon_sym_SLASH_STAR, - ACTIONS(1903), 1, + ACTIONS(2878), 1, anon_sym_LBRACK, - STATE(1791), 2, + STATE(1792), 2, sym_line_comment, sym_block_comment, - ACTIONS(1905), 54, + ACTIONS(2880), 54, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -201800,21 +201918,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [14726] = 5, + [14694] = 6, ACTIONS(497), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, anon_sym_SLASH_STAR, - ACTIONS(2729), 1, + ACTIONS(1891), 1, + anon_sym_DOT, + ACTIONS(2473), 1, anon_sym_LBRACK, - STATE(1792), 2, + STATE(1793), 2, sym_line_comment, sym_block_comment, - ACTIONS(2731), 54, + ACTIONS(2475), 53, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, - anon_sym_DOT, anon_sym_as, anon_sym_COMMA, anon_sym_RBRACE, @@ -201865,17 +201984,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [14796] = 5, + [14766] = 5, ACTIONS(497), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, anon_sym_SLASH_STAR, - ACTIONS(2808), 1, + ACTIONS(2776), 1, anon_sym_LBRACK, - STATE(1793), 2, + STATE(1794), 2, sym_line_comment, sym_block_comment, - ACTIONS(2810), 54, + ACTIONS(2778), 54, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -201930,17 +202049,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [14866] = 5, + [14836] = 5, ACTIONS(497), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, anon_sym_SLASH_STAR, - ACTIONS(2814), 1, + ACTIONS(2770), 1, anon_sym_LBRACK, - STATE(1794), 2, + STATE(1795), 2, sym_line_comment, sym_block_comment, - ACTIONS(2816), 54, + ACTIONS(2772), 54, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -201995,17 +202114,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [14936] = 5, + [14906] = 5, ACTIONS(497), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, anon_sym_SLASH_STAR, - ACTIONS(2882), 1, + ACTIONS(2222), 1, anon_sym_LBRACK, - STATE(1795), 2, + STATE(1796), 2, sym_line_comment, sym_block_comment, - ACTIONS(2884), 54, + ACTIONS(2219), 54, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -202060,17 +202179,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [15006] = 5, + [14976] = 5, ACTIONS(497), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, anon_sym_SLASH_STAR, - ACTIONS(2886), 1, + ACTIONS(2804), 1, anon_sym_LBRACK, - STATE(1796), 2, + STATE(1797), 2, sym_line_comment, sym_block_comment, - ACTIONS(2888), 54, + ACTIONS(2806), 54, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -202125,17 +202244,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [15076] = 5, + [15046] = 5, ACTIONS(497), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, anon_sym_SLASH_STAR, - ACTIONS(2870), 1, + ACTIONS(2473), 1, anon_sym_LBRACK, - STATE(1797), 2, + STATE(1798), 2, sym_line_comment, sym_block_comment, - ACTIONS(2872), 54, + ACTIONS(2475), 54, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -202190,17 +202309,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [15146] = 5, + [15116] = 5, ACTIONS(497), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, anon_sym_SLASH_STAR, - ACTIONS(2898), 1, + ACTIONS(2530), 1, anon_sym_LBRACK, - STATE(1798), 2, + STATE(1799), 2, sym_line_comment, sym_block_comment, - ACTIONS(2900), 54, + ACTIONS(2532), 54, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -202255,17 +202374,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [15216] = 5, + [15186] = 5, ACTIONS(497), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, anon_sym_SLASH_STAR, - ACTIONS(2894), 1, + ACTIONS(2511), 1, anon_sym_LBRACK, - STATE(1799), 2, + STATE(1800), 2, sym_line_comment, sym_block_comment, - ACTIONS(2896), 54, + ACTIONS(2513), 54, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -202320,84 +202439,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [15286] = 7, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_STAR, - ACTIONS(4769), 1, - anon_sym_else, - STATE(1953), 1, - sym_else_branch, - STATE(1800), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(1799), 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(1797), 35, - anon_sym_DOT, - anon_sym_as, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_LBRACK, - anon_sym_COLON, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_LT_DASH, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_or, - 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, - [15360] = 5, + [15256] = 5, ACTIONS(497), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, anon_sym_SLASH_STAR, - ACTIONS(2918), 1, + ACTIONS(2520), 1, anon_sym_LBRACK, STATE(1801), 2, sym_line_comment, sym_block_comment, - ACTIONS(2920), 54, + ACTIONS(2522), 54, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -202452,17 +202504,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [15430] = 5, + [15326] = 5, ACTIONS(497), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, anon_sym_SLASH_STAR, - ACTIONS(2351), 1, + ACTIONS(2856), 1, anon_sym_LBRACK, STATE(1802), 2, sym_line_comment, sym_block_comment, - ACTIONS(2353), 54, + ACTIONS(2858), 54, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -202517,17 +202569,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [15500] = 5, + [15396] = 5, ACTIONS(497), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, anon_sym_SLASH_STAR, - ACTIONS(3060), 1, + ACTIONS(2141), 1, anon_sym_LBRACK, STATE(1803), 2, sym_line_comment, sym_block_comment, - ACTIONS(3062), 54, + ACTIONS(2143), 54, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -202582,29 +202634,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [15570] = 5, + [15466] = 5, ACTIONS(497), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, anon_sym_SLASH_STAR, - ACTIONS(2223), 1, + ACTIONS(2852), 1, anon_sym_LBRACK, STATE(1804), 2, sym_line_comment, sym_block_comment, - ACTIONS(2225), 54, + ACTIONS(2854), 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, @@ -202616,10 +202666,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, @@ -202640,24 +202686,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - sym_identifier, - anon_sym_shared, - anon_sym_map_LBRACK, - anon_sym_chan, - anon_sym_thread, - anon_sym_atomic, - anon_sym_AT_LBRACK, - [15640] = 5, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_AMP_CARET_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_PIPE_EQ, + anon_sym_CARET_EQ, + anon_sym_COLON_EQ, + [15536] = 5, ACTIONS(497), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, anon_sym_SLASH_STAR, - ACTIONS(2115), 1, + ACTIONS(2694), 1, anon_sym_LBRACK, STATE(1805), 2, sym_line_comment, sym_block_comment, - ACTIONS(2117), 54, + ACTIONS(2696), 54, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -202712,19 +202764,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [15710] = 6, + [15606] = 5, ACTIONS(497), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, anon_sym_SLASH_STAR, - ACTIONS(2523), 1, + ACTIONS(2754), 1, anon_sym_LBRACK, - ACTIONS(4771), 1, - anon_sym_BANG, STATE(1806), 2, sym_line_comment, sym_block_comment, - ACTIONS(2525), 53, + ACTIONS(2756), 54, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -202749,6 +202799,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, @@ -202778,19 +202829,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [15782] = 7, - ACTIONS(3), 1, + [15676] = 5, + ACTIONS(497), 1, anon_sym_SLASH_SLASH, - ACTIONS(5), 1, + ACTIONS(499), 1, anon_sym_SLASH_STAR, - ACTIONS(4769), 1, - anon_sym_else, - STATE(1952), 1, - sym_else_branch, + ACTIONS(2503), 1, + anon_sym_LBRACK, STATE(1807), 2, sym_line_comment, sym_block_comment, - ACTIONS(1805), 18, + ACTIONS(2505), 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, @@ -202800,6 +202857,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, @@ -202809,21 +202872,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(1803), 35, - anon_sym_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, @@ -202845,29 +202893,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_EQ, anon_sym_PIPE_EQ, anon_sym_CARET_EQ, - [15856] = 5, + anon_sym_COLON_EQ, + [15746] = 5, ACTIONS(497), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, anon_sym_SLASH_STAR, - ACTIONS(2215), 1, + ACTIONS(2465), 1, anon_sym_LBRACK, STATE(1808), 2, sym_line_comment, sym_block_comment, - ACTIONS(2217), 54, + ACTIONS(2467), 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, @@ -202879,10 +202926,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, @@ -202903,24 +202946,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - sym_identifier, - anon_sym_shared, - anon_sym_map_LBRACK, - anon_sym_chan, - anon_sym_thread, - anon_sym_atomic, - anon_sym_AT_LBRACK, - [15926] = 5, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_AMP_CARET_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_PIPE_EQ, + anon_sym_CARET_EQ, + anon_sym_COLON_EQ, + [15816] = 5, ACTIONS(497), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, anon_sym_SLASH_STAR, - ACTIONS(2119), 1, + ACTIONS(2748), 1, anon_sym_LBRACK, STATE(1809), 2, sym_line_comment, sym_block_comment, - ACTIONS(2121), 54, + ACTIONS(2750), 54, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -202975,17 +203024,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [15996] = 5, + [15886] = 5, ACTIONS(497), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, anon_sym_SLASH_STAR, - ACTIONS(2291), 1, + ACTIONS(2461), 1, anon_sym_LBRACK, STATE(1810), 2, sym_line_comment, sym_block_comment, - ACTIONS(2293), 54, + ACTIONS(2463), 54, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -203040,65 +203089,54 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [16066] = 16, - ACTIONS(3), 1, + [15956] = 5, + ACTIONS(497), 1, anon_sym_SLASH_SLASH, - ACTIONS(5), 1, + ACTIONS(499), 1, anon_sym_SLASH_STAR, - ACTIONS(4667), 1, - anon_sym_LPAREN, - ACTIONS(4677), 1, + ACTIONS(2742), 1, anon_sym_LBRACK, - ACTIONS(4683), 1, - anon_sym_QMARK, - ACTIONS(4685), 1, - anon_sym_BANG, - ACTIONS(4687), 1, - anon_sym_LBRACK2, - ACTIONS(4695), 1, - anon_sym_POUND_LBRACK, - STATE(2067), 1, - sym_argument_list, - STATE(2068), 1, - sym_or_block, - STATE(4090), 1, - sym_type_parameters, - ACTIONS(4659), 2, - anon_sym_DOT, - anon_sym_QMARK_DOT, STATE(1811), 2, sym_line_comment, sym_block_comment, - ACTIONS(1785), 7, + ACTIONS(2744), 54, + anon_sym_LF, + anon_sym_CR, + anon_sym_CR_LF, + anon_sym_DOT, + anon_sym_as, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, anon_sym_EQ, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - anon_sym_LT, - anon_sym_GT, - anon_sym_CARET, - ACTIONS(4731), 8, anon_sym_STAR, anon_sym_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(1783), 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, @@ -203116,17 +203154,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [16158] = 5, + [16026] = 5, ACTIONS(497), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, anon_sym_SLASH_STAR, - ACTIONS(2509), 1, + ACTIONS(2722), 1, anon_sym_LBRACK, STATE(1812), 2, sym_line_comment, sym_block_comment, - ACTIONS(2511), 54, + ACTIONS(2724), 54, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -203181,17 +203219,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [16228] = 5, + [16096] = 5, ACTIONS(497), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, anon_sym_SLASH_STAR, - ACTIONS(2241), 1, + ACTIONS(2135), 1, anon_sym_LBRACK, STATE(1813), 2, sym_line_comment, sym_block_comment, - ACTIONS(2243), 54, + ACTIONS(2137), 54, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -203246,17 +203284,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [16298] = 5, + [16166] = 5, ACTIONS(497), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, anon_sym_SLASH_STAR, - ACTIONS(2914), 1, + ACTIONS(2712), 1, anon_sym_LBRACK, STATE(1814), 2, sym_line_comment, sym_block_comment, - ACTIONS(2916), 54, + ACTIONS(2714), 54, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -203311,29 +203349,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [16368] = 5, + [16236] = 5, ACTIONS(497), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, anon_sym_SLASH_STAR, - ACTIONS(2910), 1, + ACTIONS(2708), 1, anon_sym_LBRACK, STATE(1815), 2, sym_line_comment, sym_block_comment, - ACTIONS(2912), 54, + ACTIONS(2710), 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, @@ -203345,10 +203381,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, @@ -203369,24 +203401,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - sym_identifier, - anon_sym_shared, - anon_sym_map_LBRACK, - anon_sym_chan, - anon_sym_thread, - anon_sym_atomic, - anon_sym_AT_LBRACK, - [16438] = 5, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_AMP_CARET_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_PIPE_EQ, + anon_sym_CARET_EQ, + anon_sym_COLON_EQ, + [16306] = 5, ACTIONS(497), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, anon_sym_SLASH_STAR, - ACTIONS(2770), 1, + ACTIONS(2698), 1, anon_sym_LBRACK, STATE(1816), 2, sym_line_comment, sym_block_comment, - ACTIONS(2772), 54, + ACTIONS(2700), 54, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -203441,17 +203479,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [16508] = 5, + [16376] = 5, ACTIONS(497), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, anon_sym_SLASH_STAR, - ACTIONS(2747), 1, + ACTIONS(2267), 1, anon_sym_LBRACK, STATE(1817), 2, sym_line_comment, sym_block_comment, - ACTIONS(2749), 54, + ACTIONS(2269), 54, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -203506,17 +203544,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [16578] = 5, + [16446] = 5, ACTIONS(497), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, anon_sym_SLASH_STAR, - ACTIONS(2743), 1, + ACTIONS(2838), 1, anon_sym_LBRACK, STATE(1818), 2, sym_line_comment, sym_block_comment, - ACTIONS(2745), 54, + ACTIONS(2840), 54, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -203571,17 +203609,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [16648] = 5, + [16516] = 5, ACTIONS(497), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, anon_sym_SLASH_STAR, - ACTIONS(2679), 1, + ACTIONS(2313), 1, anon_sym_LBRACK, STATE(1819), 2, sym_line_comment, sym_block_comment, - ACTIONS(2681), 54, + ACTIONS(2315), 54, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -203636,27 +203674,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [16718] = 5, + [16586] = 5, ACTIONS(497), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, anon_sym_SLASH_STAR, - ACTIONS(2854), 1, + ACTIONS(2912), 1, anon_sym_LBRACK, STATE(1820), 2, sym_line_comment, sym_block_comment, - ACTIONS(2856), 54, + ACTIONS(2914), 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, @@ -203668,6 +203708,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, @@ -203688,30 +203732,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_AMP_CARET_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, - anon_sym_COLON_EQ, - [16788] = 5, + sym_identifier, + anon_sym_shared, + anon_sym_map_LBRACK, + anon_sym_chan, + anon_sym_thread, + anon_sym_atomic, + anon_sym_AT_LBRACK, + [16656] = 5, ACTIONS(497), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, anon_sym_SLASH_STAR, - ACTIONS(2171), 1, + ACTIONS(3048), 1, anon_sym_LBRACK, STATE(1821), 2, sym_line_comment, sym_block_comment, - ACTIONS(2173), 54, + ACTIONS(3050), 54, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -203766,17 +203804,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [16858] = 5, + [16726] = 5, ACTIONS(497), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, anon_sym_SLASH_STAR, - ACTIONS(2858), 1, + ACTIONS(2908), 1, anon_sym_LBRACK, STATE(1822), 2, sym_line_comment, sym_block_comment, - ACTIONS(2860), 54, + ACTIONS(2910), 54, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -203831,17 +203869,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [16928] = 5, + [16796] = 5, ACTIONS(497), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, anon_sym_SLASH_STAR, - ACTIONS(2665), 1, + ACTIONS(2884), 1, anon_sym_LBRACK, STATE(1823), 2, sym_line_comment, sym_block_comment, - ACTIONS(2667), 54, + ACTIONS(2886), 54, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -203896,17 +203934,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [16998] = 5, + [16866] = 5, ACTIONS(497), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, anon_sym_SLASH_STAR, - ACTIONS(2653), 1, + ACTIONS(2690), 1, anon_sym_LBRACK, STATE(1824), 2, sym_line_comment, sym_block_comment, - ACTIONS(2655), 54, + ACTIONS(2692), 54, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -203961,17 +203999,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [17068] = 5, + [16936] = 5, ACTIONS(497), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, anon_sym_SLASH_STAR, - ACTIONS(3044), 1, + ACTIONS(2686), 1, anon_sym_LBRACK, STATE(1825), 2, sym_line_comment, sym_block_comment, - ACTIONS(3046), 54, + ACTIONS(2688), 54, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -204026,17 +204064,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [17138] = 5, + [17006] = 5, ACTIONS(497), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, anon_sym_SLASH_STAR, - ACTIONS(2866), 1, + ACTIONS(2682), 1, anon_sym_LBRACK, STATE(1826), 2, sym_line_comment, sym_block_comment, - ACTIONS(2868), 54, + ACTIONS(2684), 54, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -204091,19 +204129,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [17208] = 7, - ACTIONS(3), 1, + [17076] = 5, + ACTIONS(497), 1, anon_sym_SLASH_SLASH, - ACTIONS(5), 1, + ACTIONS(499), 1, anon_sym_SLASH_STAR, - ACTIONS(4773), 1, - anon_sym_else, - STATE(2014), 1, - sym_else_branch, + ACTIONS(2678), 1, + anon_sym_LBRACK, STATE(1827), 2, sym_line_comment, sym_block_comment, - ACTIONS(1799), 18, + ACTIONS(2680), 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, @@ -204113,6 +204157,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, @@ -204122,20 +204172,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(1797), 35, - anon_sym_SEMI, - anon_sym_DOT, - anon_sym_as, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_LBRACK, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_or, @@ -204158,17 +204194,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [17282] = 5, + [17146] = 5, ACTIONS(497), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, anon_sym_SLASH_STAR, - ACTIONS(2848), 1, + ACTIONS(2738), 1, anon_sym_LBRACK, STATE(1828), 2, sym_line_comment, sym_block_comment, - ACTIONS(2850), 54, + ACTIONS(2740), 54, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -204223,19 +204259,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [17352] = 7, - ACTIONS(3), 1, + [17216] = 5, + ACTIONS(497), 1, anon_sym_SLASH_SLASH, - ACTIONS(5), 1, + ACTIONS(499), 1, anon_sym_SLASH_STAR, - ACTIONS(4773), 1, - anon_sym_else, - STATE(2106), 1, - sym_else_branch, + ACTIONS(2734), 1, + anon_sym_LBRACK, STATE(1829), 2, sym_line_comment, sym_block_comment, - ACTIONS(1805), 18, + ACTIONS(2736), 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, @@ -204245,6 +204287,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, @@ -204254,20 +204302,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(1803), 35, - anon_sym_SEMI, - anon_sym_DOT, - anon_sym_as, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_LBRACK, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_or, @@ -204290,17 +204324,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [17426] = 5, + [17286] = 5, ACTIONS(497), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, anon_sym_SLASH_STAR, - ACTIONS(2844), 1, + ACTIONS(2301), 1, anon_sym_LBRACK, STATE(1830), 2, sym_line_comment, sym_block_comment, - ACTIONS(2846), 54, + ACTIONS(2303), 54, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -204355,25 +204389,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [17496] = 5, - ACTIONS(497), 1, + [17356] = 7, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, - ACTIONS(499), 1, + ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(2485), 1, - anon_sym_LBRACK, + ACTIONS(4775), 1, + anon_sym_else, + STATE(1918), 1, + sym_else_branch, STATE(1831), 2, sym_line_comment, sym_block_comment, - ACTIONS(2487), 54, - anon_sym_LF, - anon_sym_CR, - anon_sym_CR_LF, - anon_sym_DOT, - anon_sym_as, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, + ACTIONS(1805), 18, anon_sym_EQ, anon_sym_PIPE, anon_sym_PLUS, @@ -204383,12 +204411,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, @@ -204398,6 +204420,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, + ACTIONS(1803), 35, + anon_sym_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, @@ -204419,26 +204456,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_EQ, anon_sym_PIPE_EQ, anon_sym_CARET_EQ, - anon_sym_COLON_EQ, - [17566] = 5, - ACTIONS(497), 1, + [17430] = 7, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, - ACTIONS(499), 1, + ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(2838), 1, - anon_sym_LBRACK, + ACTIONS(4775), 1, + anon_sym_else, + STATE(1919), 1, + sym_else_branch, STATE(1832), 2, sym_line_comment, sym_block_comment, - ACTIONS(2840), 54, - anon_sym_LF, - anon_sym_CR, - anon_sym_CR_LF, - anon_sym_DOT, - anon_sym_as, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, + ACTIONS(1799), 18, anon_sym_EQ, anon_sym_PIPE, anon_sym_PLUS, @@ -204448,12 +204478,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, @@ -204463,6 +204487,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, + ACTIONS(1797), 35, + anon_sym_DOT, + anon_sym_as, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LBRACK, + anon_sym_COLON, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_LT_DASH, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_or, @@ -204484,18 +204523,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_EQ, anon_sym_PIPE_EQ, anon_sym_CARET_EQ, - anon_sym_COLON_EQ, - [17636] = 5, + [17504] = 5, ACTIONS(497), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, anon_sym_SLASH_STAR, - ACTIONS(2671), 1, + ACTIONS(2670), 1, anon_sym_LBRACK, STATE(1833), 2, sym_line_comment, sym_block_comment, - ACTIONS(2673), 54, + ACTIONS(2672), 54, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -204550,17 +204588,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [17706] = 5, + [17574] = 5, ACTIONS(497), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, anon_sym_SLASH_STAR, - ACTIONS(2481), 1, + ACTIONS(2666), 1, anon_sym_LBRACK, STATE(1834), 2, sym_line_comment, sym_block_comment, - ACTIONS(2483), 54, + ACTIONS(2668), 54, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -204615,17 +204653,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [17776] = 5, + [17644] = 5, ACTIONS(497), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, anon_sym_SLASH_STAR, - ACTIONS(2313), 1, + ACTIONS(2457), 1, anon_sym_LBRACK, STATE(1835), 2, sym_line_comment, sym_block_comment, - ACTIONS(2315), 54, + ACTIONS(2459), 54, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -204680,26 +204718,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [17846] = 5, + [17714] = 6, ACTIONS(497), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, anon_sym_SLASH_STAR, - ACTIONS(2303), 1, + ACTIONS(2222), 1, anon_sym_LBRACK, STATE(1836), 2, sym_line_comment, sym_block_comment, - ACTIONS(2305), 54, + ACTIONS(2217), 19, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, - anon_sym_DOT, - anon_sym_as, anon_sym_COMMA, anon_sym_RBRACE, - anon_sym_LPAREN, anon_sym_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_AMP_CARET_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_PIPE_EQ, + anon_sym_CARET_EQ, + anon_sym_COLON_EQ, + ACTIONS(2219), 35, + anon_sym_DOT, + anon_sym_as, + anon_sym_LPAREN, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, @@ -204732,30 +204784,17 @@ 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, - [17916] = 5, + [17786] = 5, ACTIONS(497), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, anon_sym_SLASH_STAR, - ACTIONS(1953), 1, + ACTIONS(2453), 1, anon_sym_LBRACK, STATE(1837), 2, sym_line_comment, sym_block_comment, - ACTIONS(1951), 54, + ACTIONS(2455), 54, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -204810,17 +204849,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [17986] = 5, + [17856] = 5, ACTIONS(497), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, anon_sym_SLASH_STAR, - ACTIONS(2475), 1, + ACTIONS(2536), 1, anon_sym_LBRACK, STATE(1838), 2, sym_line_comment, sym_block_comment, - ACTIONS(2477), 54, + ACTIONS(2538), 54, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -204875,15 +204914,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [18056] = 5, - ACTIONS(3), 1, + [17926] = 5, + ACTIONS(497), 1, anon_sym_SLASH_SLASH, - ACTIONS(5), 1, + ACTIONS(499), 1, anon_sym_SLASH_STAR, + ACTIONS(2447), 1, + anon_sym_LBRACK, STATE(1839), 2, sym_line_comment, sym_block_comment, - ACTIONS(1917), 18, + ACTIONS(2449), 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, @@ -204893,6 +204942,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, @@ -204902,27 +204957,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(1915), 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, @@ -204940,17 +204979,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [18126] = 5, + [17996] = 5, ACTIONS(497), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, anon_sym_SLASH_STAR, - ACTIONS(2283), 1, + ACTIONS(2441), 1, anon_sym_LBRACK, STATE(1840), 2, sym_line_comment, sym_block_comment, - ACTIONS(2285), 54, + ACTIONS(2443), 54, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -205005,17 +205044,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [18196] = 5, + [18066] = 5, ACTIONS(497), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, anon_sym_SLASH_STAR, - ACTIONS(2157), 1, + ACTIONS(1879), 1, anon_sym_LBRACK, STATE(1841), 2, sym_line_comment, sym_block_comment, - ACTIONS(2159), 54, + ACTIONS(1881), 54, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -205070,66 +205109,54 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [18266] = 17, - ACTIONS(3), 1, + [18136] = 5, + ACTIONS(497), 1, anon_sym_SLASH_SLASH, - ACTIONS(5), 1, + ACTIONS(499), 1, anon_sym_SLASH_STAR, - ACTIONS(4667), 1, - anon_sym_LPAREN, - ACTIONS(4677), 1, + ACTIONS(2507), 1, anon_sym_LBRACK, - ACTIONS(4683), 1, - anon_sym_QMARK, - ACTIONS(4685), 1, - anon_sym_BANG, - ACTIONS(4687), 1, - anon_sym_LBRACK2, - ACTIONS(4695), 1, - anon_sym_POUND_LBRACK, - STATE(2067), 1, - sym_argument_list, - STATE(2068), 1, - sym_or_block, - STATE(4090), 1, - sym_type_parameters, - ACTIONS(4659), 2, - anon_sym_DOT, - anon_sym_QMARK_DOT, STATE(1842), 2, sym_line_comment, sym_block_comment, - ACTIONS(1785), 3, + ACTIONS(2509), 54, + anon_sym_LF, + anon_sym_CR, + anon_sym_CR_LF, + anon_sym_DOT, + anon_sym_as, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - ACTIONS(4729), 4, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - anon_sym_CARET, - ACTIONS(4731), 8, anon_sym_STAR, anon_sym_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(1783), 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, @@ -205147,17 +205174,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [18360] = 5, + [18206] = 5, ACTIONS(497), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, anon_sym_SLASH_STAR, - ACTIONS(2245), 1, + ACTIONS(2309), 1, anon_sym_LBRACK, STATE(1843), 2, sym_line_comment, sym_block_comment, - ACTIONS(2247), 54, + ACTIONS(2311), 54, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -205212,21 +205239,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [18430] = 5, + [18276] = 6, ACTIONS(497), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, anon_sym_SLASH_STAR, - ACTIONS(2784), 1, + ACTIONS(2511), 1, anon_sym_LBRACK, + ACTIONS(2515), 1, + anon_sym_DOT, STATE(1844), 2, sym_line_comment, sym_block_comment, - ACTIONS(2786), 54, + ACTIONS(2513), 53, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, - anon_sym_DOT, anon_sym_as, anon_sym_COMMA, anon_sym_RBRACE, @@ -205277,17 +205305,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [18500] = 5, + [18348] = 5, ACTIONS(497), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, anon_sym_SLASH_STAR, - ACTIONS(2237), 1, + ACTIONS(3052), 1, anon_sym_LBRACK, STATE(1845), 2, sym_line_comment, sym_block_comment, - ACTIONS(2239), 54, + ACTIONS(3054), 54, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -205342,17 +205370,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [18570] = 5, + [18418] = 5, ACTIONS(497), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, anon_sym_SLASH_STAR, - ACTIONS(2307), 1, + ACTIONS(2305), 1, anon_sym_LBRACK, STATE(1846), 2, sym_line_comment, sym_block_comment, - ACTIONS(2309), 54, + ACTIONS(2307), 54, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -205407,54 +205435,65 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [18640] = 5, - ACTIONS(497), 1, + [18488] = 16, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, - ACTIONS(499), 1, + ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(2513), 1, + ACTIONS(4667), 1, + anon_sym_LPAREN, + ACTIONS(4677), 1, anon_sym_LBRACK, + ACTIONS(4683), 1, + anon_sym_QMARK, + ACTIONS(4685), 1, + anon_sym_BANG, + ACTIONS(4687), 1, + anon_sym_LBRACK2, + ACTIONS(4695), 1, + anon_sym_POUND_LBRACK, + STATE(1972), 1, + sym_or_block, + STATE(1977), 1, + sym_argument_list, + STATE(4147), 1, + sym_type_parameters, + ACTIONS(4659), 2, + anon_sym_DOT, + anon_sym_QMARK_DOT, STATE(1847), 2, sym_line_comment, sym_block_comment, - ACTIONS(2515), 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(1765), 7, anon_sym_EQ, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, + anon_sym_LT, + anon_sym_GT, + anon_sym_CARET, + ACTIONS(4761), 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(1763), 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, @@ -205472,54 +205511,66 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [18710] = 5, - ACTIONS(497), 1, + [18580] = 17, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, - ACTIONS(499), 1, + ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(2505), 1, + ACTIONS(4667), 1, + anon_sym_LPAREN, + ACTIONS(4677), 1, anon_sym_LBRACK, + ACTIONS(4683), 1, + anon_sym_QMARK, + ACTIONS(4685), 1, + anon_sym_BANG, + ACTIONS(4687), 1, + anon_sym_LBRACK2, + ACTIONS(4695), 1, + anon_sym_POUND_LBRACK, + STATE(1972), 1, + sym_or_block, + STATE(1977), 1, + sym_argument_list, + STATE(4147), 1, + sym_type_parameters, + ACTIONS(4659), 2, + anon_sym_DOT, + anon_sym_QMARK_DOT, STATE(1848), 2, sym_line_comment, sym_block_comment, - ACTIONS(2507), 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(1765), 3, anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + ACTIONS(4759), 4, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, + anon_sym_CARET, + ACTIONS(4761), 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(1763), 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, @@ -205537,17 +205588,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [18780] = 5, + [18674] = 5, ACTIONS(497), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, anon_sym_SLASH_STAR, - ACTIONS(2517), 1, + ACTIONS(2291), 1, anon_sym_LBRACK, STATE(1849), 2, sym_line_comment, sym_block_comment, - ACTIONS(2519), 54, + ACTIONS(2293), 54, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -205602,58 +205653,73 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [18850] = 5, - ACTIONS(497), 1, + [18744] = 20, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, - ACTIONS(499), 1, + ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(2163), 1, + ACTIONS(1765), 1, + anon_sym_EQ, + ACTIONS(4667), 1, + anon_sym_LPAREN, + ACTIONS(4677), 1, anon_sym_LBRACK, + ACTIONS(4683), 1, + anon_sym_QMARK, + ACTIONS(4685), 1, + anon_sym_BANG, + ACTIONS(4687), 1, + anon_sym_LBRACK2, + ACTIONS(4695), 1, + anon_sym_POUND_LBRACK, + STATE(1972), 1, + sym_or_block, + STATE(1977), 1, + sym_argument_list, + STATE(4147), 1, + sym_type_parameters, + ACTIONS(4659), 2, + anon_sym_DOT, + anon_sym_QMARK_DOT, + ACTIONS(4763), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(4771), 2, + anon_sym_in, + anon_sym_BANGin, STATE(1850), 2, sym_line_comment, sym_block_comment, - ACTIONS(2165), 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, + ACTIONS(4759), 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(4765), 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(4761), 8, + anon_sym_STAR, + anon_sym_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(1763), 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, @@ -205667,23 +205733,74 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [18920] = 6, - ACTIONS(497), 1, + [18844] = 21, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, - ACTIONS(499), 1, + ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(2256), 1, + ACTIONS(1765), 1, + anon_sym_EQ, + ACTIONS(4667), 1, + anon_sym_LPAREN, + ACTIONS(4677), 1, anon_sym_LBRACK, + ACTIONS(4683), 1, + anon_sym_QMARK, + ACTIONS(4685), 1, + anon_sym_BANG, + ACTIONS(4687), 1, + anon_sym_LBRACK2, + ACTIONS(4695), 1, + anon_sym_POUND_LBRACK, + ACTIONS(4767), 1, + anon_sym_AMP_AMP, + STATE(1972), 1, + sym_or_block, + STATE(1977), 1, + sym_argument_list, + STATE(4147), 1, + sym_type_parameters, + ACTIONS(4659), 2, + anon_sym_DOT, + anon_sym_QMARK_DOT, + ACTIONS(4763), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(4771), 2, + anon_sym_in, + anon_sym_BANGin, STATE(1851), 2, sym_line_comment, sym_block_comment, - ACTIONS(2251), 19, - anon_sym_LF, - anon_sym_CR, - anon_sym_CR_LF, + ACTIONS(4759), 4, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_CARET, + ACTIONS(4765), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(4761), 8, + anon_sym_STAR, + anon_sym_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(1763), 22, + anon_sym_SEMI, + 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, @@ -205697,10 +205814,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - ACTIONS(2253), 35, + [18946] = 5, + ACTIONS(497), 1, + anon_sym_SLASH_SLASH, + ACTIONS(499), 1, + anon_sym_SLASH_STAR, + ACTIONS(2189), 1, + anon_sym_LBRACK, + STATE(1852), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(2191), 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, @@ -205733,54 +205866,79 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [18992] = 5, - ACTIONS(497), 1, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_AMP_CARET_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_PIPE_EQ, + anon_sym_CARET_EQ, + anon_sym_COLON_EQ, + [19016] = 17, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, - ACTIONS(499), 1, + ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(2830), 1, + ACTIONS(4667), 1, + anon_sym_LPAREN, + ACTIONS(4677), 1, anon_sym_LBRACK, - STATE(1852), 2, + ACTIONS(4683), 1, + anon_sym_QMARK, + ACTIONS(4685), 1, + anon_sym_BANG, + ACTIONS(4687), 1, + anon_sym_LBRACK2, + ACTIONS(4695), 1, + anon_sym_POUND_LBRACK, + STATE(1972), 1, + sym_or_block, + STATE(1977), 1, + sym_argument_list, + STATE(4147), 1, + sym_type_parameters, + ACTIONS(4659), 2, + anon_sym_DOT, + anon_sym_QMARK_DOT, + STATE(1853), 2, sym_line_comment, sym_block_comment, - ACTIONS(2832), 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(1781), 3, anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + ACTIONS(4759), 4, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, + anon_sym_CARET, + ACTIONS(4761), 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(1779), 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, @@ -205798,17 +205956,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [19062] = 5, + [19110] = 5, ACTIONS(497), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, anon_sym_SLASH_STAR, - ACTIONS(2271), 1, + ACTIONS(2201), 1, anon_sym_LBRACK, - STATE(1853), 2, + STATE(1854), 2, sym_line_comment, sym_block_comment, - ACTIONS(2273), 54, + ACTIONS(2203), 54, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -205863,25 +206021,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [19132] = 5, - ACTIONS(497), 1, + [19180] = 7, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, - ACTIONS(499), 1, + ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(2737), 1, - anon_sym_LBRACK, - STATE(1854), 2, + ACTIONS(4777), 1, + anon_sym_else, + STATE(1954), 1, + sym_else_branch, + STATE(1855), 2, sym_line_comment, sym_block_comment, - ACTIONS(2739), 54, - anon_sym_LF, - anon_sym_CR, - anon_sym_CR_LF, - anon_sym_DOT, - anon_sym_as, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, + ACTIONS(1799), 18, anon_sym_EQ, anon_sym_PIPE, anon_sym_PLUS, @@ -205891,12 +206043,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, @@ -205906,6 +206052,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, + ACTIONS(1797), 35, + anon_sym_SEMI, + anon_sym_DOT, + anon_sym_as, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LBRACK, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_or, @@ -205928,22 +206088,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [19202] = 6, + [19254] = 5, ACTIONS(497), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, anon_sym_SLASH_STAR, - ACTIONS(1853), 1, - anon_sym_DOT, - ACTIONS(2505), 1, + ACTIONS(2209), 1, anon_sym_LBRACK, - STATE(1855), 2, + STATE(1856), 2, sym_line_comment, sym_block_comment, - ACTIONS(2507), 53, + ACTIONS(2211), 54, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, + anon_sym_DOT, anon_sym_as, anon_sym_COMMA, anon_sym_RBRACE, @@ -205994,63 +206153,80 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [19274] = 9, + [19324] = 27, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(4775), 1, - anon_sym_COMMA, - ACTIONS(4777), 1, - anon_sym_COLON_EQ, - STATE(3768), 1, - aux_sym_identifier_list_repeat1, - ACTIONS(1856), 2, - anon_sym_LBRACE, + ACTIONS(1789), 1, + anon_sym_EQ, + ACTIONS(4661), 1, + anon_sym_as, + ACTIONS(4667), 1, + anon_sym_LPAREN, + ACTIONS(4677), 1, anon_sym_LBRACK, - STATE(1856), 2, + ACTIONS(4679), 1, + anon_sym_PLUS_PLUS, + ACTIONS(4681), 1, + anon_sym_DASH_DASH, + ACTIONS(4683), 1, + anon_sym_QMARK, + ACTIONS(4685), 1, + anon_sym_BANG, + ACTIONS(4687), 1, + anon_sym_LBRACK2, + ACTIONS(4689), 1, + anon_sym_AMP_AMP, + ACTIONS(4691), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4693), 1, + anon_sym_or, + ACTIONS(4695), 1, + anon_sym_POUND_LBRACK, + STATE(1972), 1, + sym_or_block, + STATE(1977), 1, + sym_argument_list, + STATE(4147), 1, + sym_type_parameters, + ACTIONS(4659), 2, + anon_sym_DOT, + anon_sym_QMARK_DOT, + ACTIONS(4673), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(4699), 2, + anon_sym_in, + anon_sym_BANGin, + ACTIONS(4779), 2, + anon_sym_is, + anon_sym_BANGis, + STATE(1857), 2, sym_line_comment, sym_block_comment, - ACTIONS(1851), 19, - anon_sym_EQ, + ACTIONS(4669), 4, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, + anon_sym_CARET, + ACTIONS(4675), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(4671), 8, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - anon_sym_LT, - anon_sym_GT, - anon_sym_COLON, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_LBRACK2, - anon_sym_CARET, anon_sym_AMP, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(1849), 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, - anon_sym_QMARK_DOT, - anon_sym_POUND_LBRACK, - anon_sym_is, - anon_sym_BANGis, - anon_sym_in, - anon_sym_BANGin, + ACTIONS(1787), 15, + anon_sym_LBRACE, + anon_sym_COMMA, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, @@ -206063,17 +206239,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_EQ, anon_sym_PIPE_EQ, anon_sym_CARET_EQ, - [19352] = 5, + anon_sym_COLON_EQ, + [19438] = 5, ACTIONS(497), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, anon_sym_SLASH_STAR, - ACTIONS(2834), 1, + ACTIONS(2123), 1, anon_sym_LBRACK, - STATE(1857), 2, + STATE(1858), 2, sym_line_comment, sym_block_comment, - ACTIONS(2836), 54, + ACTIONS(2125), 54, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -206128,17 +206305,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [19422] = 5, + [19508] = 5, ACTIONS(497), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, anon_sym_SLASH_STAR, - ACTIONS(2211), 1, + ACTIONS(2147), 1, anon_sym_LBRACK, - STATE(1858), 2, + STATE(1859), 2, sym_line_comment, sym_block_comment, - ACTIONS(2213), 54, + ACTIONS(2149), 54, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -206193,27 +206370,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [19492] = 5, + [19578] = 5, ACTIONS(497), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, anon_sym_SLASH_STAR, - ACTIONS(2181), 1, + ACTIONS(2702), 1, anon_sym_LBRACK, - STATE(1859), 2, + STATE(1860), 2, sym_line_comment, sym_block_comment, - ACTIONS(2183), 54, + ACTIONS(2704), 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, @@ -206225,6 +206404,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, @@ -206245,93 +206428,65 @@ 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, - [19562] = 27, - ACTIONS(3), 1, + sym_identifier, + anon_sym_shared, + anon_sym_map_LBRACK, + anon_sym_chan, + anon_sym_thread, + anon_sym_atomic, + anon_sym_AT_LBRACK, + [19648] = 5, + ACTIONS(497), 1, anon_sym_SLASH_SLASH, - ACTIONS(5), 1, + ACTIONS(499), 1, anon_sym_SLASH_STAR, - ACTIONS(1781), 1, - anon_sym_EQ, - ACTIONS(4661), 1, - anon_sym_as, - ACTIONS(4667), 1, - anon_sym_LPAREN, - ACTIONS(4677), 1, + ACTIONS(2113), 1, anon_sym_LBRACK, - ACTIONS(4679), 1, - anon_sym_PLUS_PLUS, - ACTIONS(4681), 1, - anon_sym_DASH_DASH, - ACTIONS(4683), 1, - anon_sym_QMARK, - ACTIONS(4685), 1, - anon_sym_BANG, - ACTIONS(4687), 1, - anon_sym_LBRACK2, - ACTIONS(4693), 1, - anon_sym_or, - ACTIONS(4695), 1, - anon_sym_POUND_LBRACK, - ACTIONS(4737), 1, - anon_sym_AMP_AMP, - ACTIONS(4739), 1, - anon_sym_PIPE_PIPE, - STATE(2067), 1, - sym_argument_list, - STATE(2068), 1, - sym_or_block, - STATE(4090), 1, - sym_type_parameters, - ACTIONS(4659), 2, - anon_sym_DOT, - anon_sym_QMARK_DOT, - ACTIONS(4697), 2, - anon_sym_is, - anon_sym_BANGis, - ACTIONS(4733), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(4741), 2, - anon_sym_in, - anon_sym_BANGin, - STATE(1860), 2, + STATE(1861), 2, sym_line_comment, sym_block_comment, - ACTIONS(4729), 4, + ACTIONS(2115), 54, + anon_sym_LF, + anon_sym_CR, + anon_sym_CR_LF, + anon_sym_DOT, + anon_sym_as, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_EQ, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - anon_sym_CARET, - ACTIONS(4735), 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(4731), 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(1779), 15, - anon_sym_SEMI, - anon_sym_COMMA, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_or, + anon_sym_QMARK_DOT, + anon_sym_POUND_LBRACK, + anon_sym_is, + anon_sym_BANGis, + anon_sym_in, + anon_sym_BANGin, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, @@ -206345,74 +206500,59 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [19676] = 21, - ACTIONS(3), 1, + [19718] = 6, + ACTIONS(497), 1, anon_sym_SLASH_SLASH, - ACTIONS(5), 1, + ACTIONS(499), 1, anon_sym_SLASH_STAR, - ACTIONS(1785), 1, - anon_sym_EQ, - ACTIONS(4667), 1, - anon_sym_LPAREN, - ACTIONS(4677), 1, + ACTIONS(2540), 1, anon_sym_LBRACK, - ACTIONS(4683), 1, - anon_sym_QMARK, - ACTIONS(4685), 1, + ACTIONS(4781), 1, anon_sym_BANG, - ACTIONS(4687), 1, - anon_sym_LBRACK2, - ACTIONS(4695), 1, - anon_sym_POUND_LBRACK, - ACTIONS(4737), 1, - anon_sym_AMP_AMP, - STATE(2067), 1, - sym_argument_list, - STATE(2068), 1, - sym_or_block, - STATE(4090), 1, - sym_type_parameters, - ACTIONS(4659), 2, - anon_sym_DOT, - anon_sym_QMARK_DOT, - ACTIONS(4733), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(4741), 2, - anon_sym_in, - anon_sym_BANGin, - STATE(1861), 2, + STATE(1862), 2, sym_line_comment, sym_block_comment, - ACTIONS(4729), 4, + ACTIONS(2542), 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_CARET, - ACTIONS(4735), 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(4731), 8, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, + 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, - ACTIONS(1783), 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, @@ -206426,15 +206566,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [19778] = 5, + [19790] = 7, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - STATE(1862), 2, + ACTIONS(4777), 1, + anon_sym_else, + STATE(1957), 1, + sym_else_branch, + STATE(1863), 2, sym_line_comment, sym_block_comment, - ACTIONS(1845), 18, + ACTIONS(1805), 18, anon_sym_EQ, anon_sym_PIPE, anon_sym_PLUS, @@ -206453,7 +206597,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(1843), 37, + ACTIONS(1803), 35, anon_sym_SEMI, anon_sym_DOT, anon_sym_as, @@ -206472,8 +206616,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, @@ -206491,12 +206633,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [19848] = 27, + [19864] = 27, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(1773), 1, + ACTIONS(1789), 1, anon_sym_EQ, ACTIONS(4661), 1, anon_sym_as, @@ -206518,42 +206660,42 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_or, ACTIONS(4695), 1, anon_sym_POUND_LBRACK, - ACTIONS(4737), 1, + ACTIONS(4767), 1, anon_sym_AMP_AMP, - ACTIONS(4739), 1, + ACTIONS(4769), 1, anon_sym_PIPE_PIPE, - STATE(2067), 1, - sym_argument_list, - STATE(2068), 1, + STATE(1972), 1, sym_or_block, - STATE(4090), 1, + STATE(1977), 1, + sym_argument_list, + STATE(4147), 1, sym_type_parameters, ACTIONS(4659), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - ACTIONS(4697), 2, - anon_sym_is, - anon_sym_BANGis, - ACTIONS(4733), 2, + ACTIONS(4763), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(4741), 2, + ACTIONS(4771), 2, anon_sym_in, anon_sym_BANGin, - STATE(1863), 2, + ACTIONS(4779), 2, + anon_sym_is, + anon_sym_BANGis, + STATE(1864), 2, sym_line_comment, sym_block_comment, - ACTIONS(4729), 4, + ACTIONS(4759), 4, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_CARET, - ACTIONS(4735), 4, + ACTIONS(4765), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(4731), 8, + ACTIONS(4761), 8, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, @@ -206562,7 +206704,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(1771), 15, + ACTIONS(1787), 15, anon_sym_SEMI, anon_sym_COMMA, anon_sym_STAR_EQ, @@ -206578,82 +206720,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [19962] = 5, - ACTIONS(497), 1, - anon_sym_SLASH_SLASH, - ACTIONS(499), 1, - anon_sym_SLASH_STAR, - ACTIONS(3040), 1, - anon_sym_LBRACK, - STATE(1864), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(3042), 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, - [20032] = 5, + [19978] = 5, ACTIONS(497), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, anon_sym_SLASH_STAR, - ACTIONS(2167), 1, + ACTIONS(2730), 1, anon_sym_LBRACK, STATE(1865), 2, sym_line_comment, sym_block_comment, - ACTIONS(2169), 54, + ACTIONS(2732), 54, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -206708,17 +206785,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [20102] = 5, + [20048] = 5, ACTIONS(497), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, anon_sym_SLASH_STAR, - ACTIONS(2826), 1, + ACTIONS(2117), 1, anon_sym_LBRACK, STATE(1866), 2, sym_line_comment, sym_block_comment, - ACTIONS(2828), 54, + ACTIONS(2119), 54, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -206773,17 +206850,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [20172] = 5, + [20118] = 5, ACTIONS(497), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, anon_sym_SLASH_STAR, - ACTIONS(2890), 1, + ACTIONS(2786), 1, anon_sym_LBRACK, STATE(1867), 2, sym_line_comment, sym_block_comment, - ACTIONS(2892), 54, + ACTIONS(2788), 54, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -206838,17 +206915,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [20242] = 5, + [20188] = 5, ACTIONS(497), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, anon_sym_SLASH_STAR, - ACTIONS(2685), 1, + ACTIONS(2796), 1, anon_sym_LBRACK, STATE(1868), 2, sym_line_comment, sym_block_comment, - ACTIONS(2687), 54, + ACTIONS(2798), 54, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -206903,29 +206980,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [20312] = 5, + [20258] = 5, ACTIONS(497), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, anon_sym_SLASH_STAR, - ACTIONS(2175), 1, + ACTIONS(2800), 1, anon_sym_LBRACK, STATE(1869), 2, sym_line_comment, sym_block_comment, - ACTIONS(2177), 54, + ACTIONS(2802), 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, @@ -206937,10 +207012,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, @@ -206961,36 +207032,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - sym_identifier, - anon_sym_shared, - anon_sym_map_LBRACK, - anon_sym_chan, - anon_sym_thread, - anon_sym_atomic, - anon_sym_AT_LBRACK, - [20382] = 5, - ACTIONS(497), 1, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_AMP_CARET_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_PIPE_EQ, + anon_sym_CARET_EQ, + anon_sym_COLON_EQ, + [20328] = 5, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, - ACTIONS(499), 1, + ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(2151), 1, - anon_sym_LBRACK, STATE(1870), 2, sym_line_comment, sym_block_comment, - ACTIONS(2153), 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, + ACTIONS(1809), 18, + anon_sym_EQ, anon_sym_PIPE, - anon_sym_fn, anon_sym_PLUS, anon_sym_DASH, anon_sym_STAR, @@ -206998,16 +207063,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_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, @@ -207017,70 +207072,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_or, - anon_sym_QMARK_DOT, - anon_sym_POUND_LBRACK, - anon_sym_is, - anon_sym_BANGis, - anon_sym_in, - anon_sym_BANGin, - sym_identifier, - anon_sym_shared, - anon_sym_map_LBRACK, - anon_sym_chan, - anon_sym_thread, - anon_sym_atomic, - anon_sym_AT_LBRACK, - [20452] = 5, - ACTIONS(497), 1, - anon_sym_SLASH_SLASH, - ACTIONS(499), 1, - anon_sym_SLASH_STAR, - ACTIONS(2265), 1, - anon_sym_LBRACK, - STATE(1871), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(2267), 54, - anon_sym_LF, - anon_sym_CR, - anon_sym_CR_LF, + ACTIONS(1807), 37, anon_sym_DOT, anon_sym_as, + anon_sym_LBRACE, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_LPAREN, - anon_sym_EQ, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_LT, - anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, + anon_sym_LBRACK, + anon_sym_COLON, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_LBRACK2, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, + anon_sym_LT_DASH, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_or, anon_sym_QMARK_DOT, anon_sym_POUND_LBRACK, + anon_sym_else, + anon_sym_DOLLARelse, anon_sym_is, anon_sym_BANGis, anon_sym_in, @@ -207097,18 +207110,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_EQ, anon_sym_PIPE_EQ, anon_sym_CARET_EQ, - anon_sym_COLON_EQ, - [20522] = 5, + [20398] = 5, ACTIONS(497), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, anon_sym_SLASH_STAR, - ACTIONS(2649), 1, + ACTIONS(2822), 1, anon_sym_LBRACK, - STATE(1872), 2, + STATE(1871), 2, sym_line_comment, sym_block_comment, - ACTIONS(2651), 54, + ACTIONS(2824), 54, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -207163,80 +207175,63 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [20592] = 27, + [20468] = 9, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(1789), 1, - anon_sym_EQ, - ACTIONS(4661), 1, - anon_sym_as, - ACTIONS(4667), 1, - anon_sym_LPAREN, - ACTIONS(4677), 1, + ACTIONS(4783), 1, + anon_sym_COMMA, + ACTIONS(4785), 1, + anon_sym_COLON_EQ, + STATE(3820), 1, + aux_sym_identifier_list_repeat1, + ACTIONS(1894), 2, + anon_sym_LBRACE, anon_sym_LBRACK, - ACTIONS(4679), 1, - anon_sym_PLUS_PLUS, - ACTIONS(4681), 1, - anon_sym_DASH_DASH, - ACTIONS(4683), 1, - anon_sym_QMARK, - ACTIONS(4685), 1, - anon_sym_BANG, - ACTIONS(4687), 1, - anon_sym_LBRACK2, - ACTIONS(4693), 1, - anon_sym_or, - ACTIONS(4695), 1, - anon_sym_POUND_LBRACK, - ACTIONS(4737), 1, - anon_sym_AMP_AMP, - ACTIONS(4739), 1, - anon_sym_PIPE_PIPE, - STATE(2067), 1, - sym_argument_list, - STATE(2068), 1, - sym_or_block, - STATE(4090), 1, - sym_type_parameters, - ACTIONS(4659), 2, - anon_sym_DOT, - anon_sym_QMARK_DOT, - ACTIONS(4733), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(4741), 2, - anon_sym_in, - anon_sym_BANGin, - ACTIONS(4779), 2, - anon_sym_is, - anon_sym_BANGis, - STATE(1873), 2, + STATE(1872), 2, sym_line_comment, sym_block_comment, - ACTIONS(4729), 4, + ACTIONS(1889), 19, + anon_sym_EQ, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - anon_sym_CARET, - ACTIONS(4735), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(4731), 8, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, + anon_sym_LT, + anon_sym_GT, + anon_sym_COLON, + anon_sym_QMARK, + anon_sym_BANG, + anon_sym_LBRACK2, + anon_sym_CARET, anon_sym_AMP, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(1787), 15, - anon_sym_SEMI, - anon_sym_COMMA, + ACTIONS(1887), 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, + 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, @@ -207249,67 +207244,54 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_EQ, anon_sym_PIPE_EQ, anon_sym_CARET_EQ, - anon_sym_COLON_EQ, - [20706] = 17, - ACTIONS(3), 1, + [20546] = 5, + ACTIONS(497), 1, anon_sym_SLASH_SLASH, - ACTIONS(5), 1, + ACTIONS(499), 1, anon_sym_SLASH_STAR, - ACTIONS(4667), 1, - anon_sym_LPAREN, - ACTIONS(4677), 1, + ACTIONS(2826), 1, anon_sym_LBRACK, - ACTIONS(4683), 1, - anon_sym_QMARK, - ACTIONS(4685), 1, - anon_sym_BANG, - ACTIONS(4687), 1, - anon_sym_LBRACK2, - ACTIONS(4695), 1, - anon_sym_POUND_LBRACK, - STATE(2067), 1, - sym_argument_list, - STATE(2068), 1, - sym_or_block, - STATE(4090), 1, - sym_type_parameters, - ACTIONS(4659), 2, - anon_sym_DOT, - anon_sym_QMARK_DOT, - STATE(1874), 2, + STATE(1873), 2, sym_line_comment, sym_block_comment, - ACTIONS(1769), 3, + ACTIONS(2828), 54, + anon_sym_LF, + anon_sym_CR, + anon_sym_CR_LF, + anon_sym_DOT, + anon_sym_as, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - ACTIONS(4729), 4, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - anon_sym_CARET, - ACTIONS(4731), 8, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - anon_sym_AMP, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - ACTIONS(1767), 29, - anon_sym_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, @@ -207327,17 +207309,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [20800] = 5, + [20616] = 5, ACTIONS(497), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, anon_sym_SLASH_STAR, - ACTIONS(2657), 1, + ACTIONS(2499), 1, anon_sym_LBRACK, - STATE(1875), 2, + STATE(1874), 2, sym_line_comment, sym_block_comment, - ACTIONS(2659), 54, + ACTIONS(2501), 54, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -207392,17 +207374,104 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [20870] = 5, + [20686] = 27, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(1795), 1, + anon_sym_EQ, + ACTIONS(4661), 1, + anon_sym_as, + ACTIONS(4667), 1, + anon_sym_LPAREN, + ACTIONS(4677), 1, + anon_sym_LBRACK, + ACTIONS(4679), 1, + anon_sym_PLUS_PLUS, + ACTIONS(4681), 1, + anon_sym_DASH_DASH, + ACTIONS(4683), 1, + anon_sym_QMARK, + ACTIONS(4685), 1, + anon_sym_BANG, + ACTIONS(4687), 1, + anon_sym_LBRACK2, + ACTIONS(4693), 1, + anon_sym_or, + ACTIONS(4695), 1, + anon_sym_POUND_LBRACK, + ACTIONS(4767), 1, + anon_sym_AMP_AMP, + ACTIONS(4769), 1, + anon_sym_PIPE_PIPE, + STATE(1972), 1, + sym_or_block, + STATE(1977), 1, + sym_argument_list, + STATE(4147), 1, + sym_type_parameters, + ACTIONS(4659), 2, + anon_sym_DOT, + anon_sym_QMARK_DOT, + ACTIONS(4697), 2, + anon_sym_is, + anon_sym_BANGis, + ACTIONS(4763), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(4771), 2, + anon_sym_in, + anon_sym_BANGin, + STATE(1875), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(4759), 4, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_CARET, + ACTIONS(4765), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(4761), 8, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_AMP, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_GT_GT_GT, + anon_sym_AMP_CARET, + ACTIONS(1793), 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, + [20800] = 5, ACTIONS(497), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, anon_sym_SLASH_STAR, - ACTIONS(2675), 1, + ACTIONS(2834), 1, anon_sym_LBRACK, STATE(1876), 2, sym_line_comment, sym_block_comment, - ACTIONS(2677), 54, + ACTIONS(2836), 54, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -207457,12 +207526,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [20940] = 27, + [20870] = 27, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(1789), 1, + ACTIONS(1773), 1, anon_sym_EQ, ACTIONS(4661), 1, anon_sym_as, @@ -207480,46 +207549,46 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG, ACTIONS(4687), 1, anon_sym_LBRACK2, - ACTIONS(4689), 1, - anon_sym_AMP_AMP, - ACTIONS(4691), 1, - anon_sym_PIPE_PIPE, ACTIONS(4693), 1, anon_sym_or, ACTIONS(4695), 1, anon_sym_POUND_LBRACK, - STATE(2067), 1, - sym_argument_list, - STATE(2068), 1, + ACTIONS(4767), 1, + anon_sym_AMP_AMP, + ACTIONS(4769), 1, + anon_sym_PIPE_PIPE, + STATE(1972), 1, sym_or_block, - STATE(4090), 1, + STATE(1977), 1, + sym_argument_list, + STATE(4147), 1, sym_type_parameters, ACTIONS(4659), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - ACTIONS(4673), 2, + ACTIONS(4697), 2, + anon_sym_is, + anon_sym_BANGis, + ACTIONS(4763), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(4699), 2, + ACTIONS(4771), 2, anon_sym_in, anon_sym_BANGin, - ACTIONS(4779), 2, - anon_sym_is, - anon_sym_BANGis, STATE(1877), 2, sym_line_comment, sym_block_comment, - ACTIONS(4669), 4, + ACTIONS(4759), 4, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_CARET, - ACTIONS(4675), 4, + ACTIONS(4765), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(4671), 8, + ACTIONS(4761), 8, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, @@ -207528,8 +207597,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(1787), 15, - anon_sym_LBRACE, + ACTIONS(1771), 15, + anon_sym_SEMI, anon_sym_COMMA, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -207544,17 +207613,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [21054] = 5, + [20984] = 5, ACTIONS(497), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, anon_sym_SLASH_STAR, - ACTIONS(2751), 1, + ACTIONS(2888), 1, anon_sym_LBRACK, STATE(1878), 2, sym_line_comment, sym_block_comment, - ACTIONS(2753), 54, + ACTIONS(2890), 54, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -207609,17 +207678,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [21124] = 5, + [21054] = 5, ACTIONS(497), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, anon_sym_SLASH_STAR, - ACTIONS(2755), 1, + ACTIONS(2892), 1, anon_sym_LBRACK, STATE(1879), 2, sym_line_comment, sym_block_comment, - ACTIONS(2757), 54, + ACTIONS(2894), 54, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -207674,17 +207743,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [21194] = 5, + [21124] = 5, ACTIONS(497), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, anon_sym_SLASH_STAR, - ACTIONS(2796), 1, + ACTIONS(2896), 1, anon_sym_LBRACK, STATE(1880), 2, sym_line_comment, sym_block_comment, - ACTIONS(2798), 54, + ACTIONS(2898), 54, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -207739,17 +207808,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [21264] = 5, + [21194] = 5, ACTIONS(497), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, anon_sym_SLASH_STAR, - ACTIONS(2689), 1, + ACTIONS(3066), 1, anon_sym_LBRACK, STATE(1881), 2, sym_line_comment, sym_block_comment, - ACTIONS(2691), 54, + ACTIONS(3068), 54, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -207804,27 +207873,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [21334] = 5, + [21264] = 5, ACTIONS(497), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, anon_sym_SLASH_STAR, - ACTIONS(3052), 1, + ACTIONS(2810), 1, anon_sym_LBRACK, STATE(1882), 2, sym_line_comment, sym_block_comment, - ACTIONS(3054), 54, + ACTIONS(2812), 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, @@ -207836,6 +207907,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, @@ -207856,40 +207931,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_AMP_CARET_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, - anon_sym_COLON_EQ, - [21404] = 5, + sym_identifier, + anon_sym_shared, + anon_sym_map_LBRACK, + anon_sym_chan, + anon_sym_thread, + anon_sym_atomic, + anon_sym_AT_LBRACK, + [21334] = 5, ACTIONS(497), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, anon_sym_SLASH_STAR, - ACTIONS(2788), 1, + ACTIONS(2868), 1, anon_sym_LBRACK, STATE(1883), 2, sym_line_comment, sym_block_comment, - ACTIONS(2790), 54, + ACTIONS(2870), 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, @@ -207901,6 +207972,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, @@ -207921,6 +207996,65 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, + sym_identifier, + anon_sym_shared, + anon_sym_map_LBRACK, + anon_sym_chan, + anon_sym_thread, + anon_sym_atomic, + anon_sym_AT_LBRACK, + [21404] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + STATE(1884), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(1809), 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(1807), 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, @@ -207939,12 +208073,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH, ACTIONS(499), 1, anon_sym_SLASH_STAR, - ACTIONS(2902), 1, + ACTIONS(2227), 1, anon_sym_LBRACK, - STATE(1884), 2, + STATE(1885), 2, sym_line_comment, sym_block_comment, - ACTIONS(2904), 54, + ACTIONS(2229), 54, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -208004,12 +208138,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH, ACTIONS(499), 1, anon_sym_SLASH_STAR, - ACTIONS(2906), 1, + ACTIONS(2469), 1, anon_sym_LBRACK, - STATE(1885), 2, + STATE(1886), 2, sym_line_comment, sym_block_comment, - ACTIONS(2908), 54, + ACTIONS(2471), 54, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -208065,14 +208199,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_COLON_EQ, [21614] = 5, - ACTIONS(3), 1, + ACTIONS(497), 1, anon_sym_SLASH_SLASH, - ACTIONS(5), 1, + ACTIONS(499), 1, anon_sym_SLASH_STAR, - STATE(1886), 2, + ACTIONS(2197), 1, + anon_sym_LBRACK, + STATE(1887), 2, sym_line_comment, sym_block_comment, - ACTIONS(1845), 18, + ACTIONS(2199), 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, @@ -208082,6 +208226,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, @@ -208091,28 +208241,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(1843), 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, @@ -208129,17 +208262,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_EQ, anon_sym_PIPE_EQ, anon_sym_CARET_EQ, + anon_sym_COLON_EQ, [21684] = 5, ACTIONS(497), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, anon_sym_SLASH_STAR, - ACTIONS(2227), 1, + ACTIONS(2860), 1, anon_sym_LBRACK, - STATE(1887), 2, + STATE(1888), 2, sym_line_comment, sym_block_comment, - ACTIONS(2229), 54, + ACTIONS(2862), 54, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -208199,12 +208333,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH, ACTIONS(499), 1, anon_sym_SLASH_STAR, - ACTIONS(2231), 1, + ACTIONS(2872), 1, anon_sym_LBRACK, - STATE(1888), 2, + STATE(1889), 2, sym_line_comment, sym_block_comment, - ACTIONS(2233), 54, + ACTIONS(2874), 54, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -208264,12 +208398,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH, ACTIONS(499), 1, anon_sym_SLASH_STAR, - ACTIONS(3048), 1, + ACTIONS(2922), 1, anon_sym_LBRACK, - STATE(1889), 2, + STATE(1890), 2, sym_line_comment, sym_block_comment, - ACTIONS(3050), 54, + ACTIONS(2924), 54, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -208329,12 +208463,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH, ACTIONS(499), 1, anon_sym_SLASH_STAR, - ACTIONS(2279), 1, + ACTIONS(2848), 1, anon_sym_LBRACK, - STATE(1890), 2, + STATE(1891), 2, sym_line_comment, sym_block_comment, - ACTIONS(2281), 54, + ACTIONS(2850), 54, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -208394,12 +208528,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH, ACTIONS(499), 1, anon_sym_SLASH_STAR, - ACTIONS(2776), 1, + ACTIONS(2716), 1, anon_sym_LBRACK, - STATE(1891), 2, + STATE(1892), 2, sym_line_comment, sym_block_comment, - ACTIONS(2778), 54, + ACTIONS(2718), 54, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -208459,12 +208593,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH, ACTIONS(499), 1, anon_sym_SLASH_STAR, - ACTIONS(2287), 1, + ACTIONS(2830), 1, anon_sym_LBRACK, - STATE(1892), 2, + STATE(1893), 2, sym_line_comment, sym_block_comment, - ACTIONS(2289), 54, + ACTIONS(2832), 54, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -208524,12 +208658,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH, ACTIONS(499), 1, anon_sym_SLASH_STAR, - ACTIONS(2759), 1, + ACTIONS(1887), 1, anon_sym_LBRACK, - STATE(1893), 2, + STATE(1894), 2, sym_line_comment, sym_block_comment, - ACTIONS(2761), 54, + ACTIONS(1889), 54, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -208585,24 +208719,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_COLON_EQ, [22174] = 5, - ACTIONS(497), 1, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, - ACTIONS(499), 1, + ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(2780), 1, - anon_sym_LBRACK, - STATE(1894), 2, + STATE(1895), 2, sym_line_comment, sym_block_comment, - ACTIONS(2782), 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(1813), 18, anon_sym_EQ, anon_sym_PIPE, anon_sym_PLUS, @@ -208612,12 +208736,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, @@ -208627,11 +208745,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, + ACTIONS(1811), 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, @@ -208654,12 +208788,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH, ACTIONS(499), 1, anon_sym_SLASH_STAR, - ACTIONS(2766), 1, + ACTIONS(2792), 1, anon_sym_LBRACK, - STATE(1895), 2, + STATE(1896), 2, sym_line_comment, sym_block_comment, - ACTIONS(2768), 54, + ACTIONS(2794), 54, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -208719,12 +208853,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH, ACTIONS(499), 1, anon_sym_SLASH_STAR, - ACTIONS(1849), 1, + ACTIONS(2780), 1, anon_sym_LBRACK, - STATE(1896), 2, + STATE(1897), 2, sym_line_comment, sym_block_comment, - ACTIONS(1851), 54, + ACTIONS(2782), 54, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -208780,24 +208914,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_COLON_EQ, [22384] = 5, - ACTIONS(497), 1, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, - ACTIONS(499), 1, + ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(2876), 1, - anon_sym_LBRACK, - STATE(1897), 2, + STATE(1898), 2, sym_line_comment, sym_block_comment, - ACTIONS(2878), 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(1813), 18, anon_sym_EQ, anon_sym_PIPE, anon_sym_PLUS, @@ -208807,12 +208931,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, @@ -208822,11 +208940,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, + ACTIONS(1811), 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, @@ -208843,80 +208978,59 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_EQ, anon_sym_PIPE_EQ, anon_sym_CARET_EQ, - anon_sym_COLON_EQ, - [22454] = 27, + [22454] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(1789), 1, - anon_sym_EQ, - ACTIONS(4661), 1, - anon_sym_as, - ACTIONS(4667), 1, - anon_sym_LPAREN, - ACTIONS(4677), 1, - anon_sym_LBRACK, - ACTIONS(4679), 1, - anon_sym_PLUS_PLUS, - ACTIONS(4681), 1, - anon_sym_DASH_DASH, - ACTIONS(4683), 1, - anon_sym_QMARK, - ACTIONS(4685), 1, - anon_sym_BANG, - ACTIONS(4687), 1, - anon_sym_LBRACK2, - ACTIONS(4693), 1, - anon_sym_or, - ACTIONS(4695), 1, - anon_sym_POUND_LBRACK, - ACTIONS(4737), 1, - anon_sym_AMP_AMP, - ACTIONS(4739), 1, - anon_sym_PIPE_PIPE, - STATE(2067), 1, - sym_argument_list, - STATE(2068), 1, - sym_or_block, - STATE(4090), 1, + STATE(1937), 1, sym_type_parameters, - ACTIONS(4659), 2, - anon_sym_DOT, - anon_sym_QMARK_DOT, - ACTIONS(4733), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(4741), 2, - anon_sym_in, - anon_sym_BANGin, - ACTIONS(4781), 2, - anon_sym_is, - anon_sym_BANGis, - STATE(1898), 2, + STATE(1899), 2, sym_line_comment, sym_block_comment, - ACTIONS(4729), 4, + ACTIONS(1881), 18, + anon_sym_EQ, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - anon_sym_CARET, - ACTIONS(4735), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(4731), 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(1787), 14, + ACTIONS(1879), 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, @@ -208929,8 +209043,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, - [22567] = 27, + [22525] = 27, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, @@ -208957,42 +209070,42 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_or, ACTIONS(4695), 1, anon_sym_POUND_LBRACK, - ACTIONS(4737), 1, + ACTIONS(4767), 1, anon_sym_AMP_AMP, - ACTIONS(4739), 1, + ACTIONS(4769), 1, anon_sym_PIPE_PIPE, - STATE(2067), 1, - sym_argument_list, - STATE(2068), 1, + STATE(1972), 1, sym_or_block, - STATE(4090), 1, + STATE(1977), 1, + sym_argument_list, + STATE(4147), 1, sym_type_parameters, ACTIONS(4659), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - ACTIONS(4733), 2, + ACTIONS(4763), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(4741), 2, + ACTIONS(4771), 2, anon_sym_in, anon_sym_BANGin, - ACTIONS(4783), 2, + ACTIONS(4787), 2, anon_sym_is, anon_sym_BANGis, - STATE(1899), 2, + STATE(1900), 2, sym_line_comment, sym_block_comment, - ACTIONS(4729), 4, + ACTIONS(4759), 4, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_CARET, - ACTIONS(4735), 4, + ACTIONS(4765), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(4731), 8, + ACTIONS(4761), 8, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, @@ -209016,17 +209129,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [22680] = 6, + [22638] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(4785), 1, + ACTIONS(4789), 1, anon_sym_DOLLARelse, - STATE(1900), 2, + STATE(1901), 2, sym_line_comment, sym_block_comment, - ACTIONS(1899), 18, + ACTIONS(1913), 18, anon_sym_EQ, anon_sym_PIPE, anon_sym_PLUS, @@ -209045,7 +209158,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(1897), 35, + ACTIONS(1911), 35, anon_sym_SEMI, anon_sym_DOT, anon_sym_as, @@ -209081,7 +209194,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [22751] = 27, + [22709] = 27, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, @@ -209108,42 +209221,42 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_or, ACTIONS(4695), 1, anon_sym_POUND_LBRACK, - ACTIONS(4737), 1, + ACTIONS(4767), 1, anon_sym_AMP_AMP, - ACTIONS(4739), 1, + ACTIONS(4769), 1, anon_sym_PIPE_PIPE, - STATE(2067), 1, - sym_argument_list, - STATE(2068), 1, + STATE(1972), 1, sym_or_block, - STATE(4090), 1, + STATE(1977), 1, + sym_argument_list, + STATE(4147), 1, sym_type_parameters, ACTIONS(4659), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - ACTIONS(4733), 2, + ACTIONS(4763), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(4741), 2, + ACTIONS(4771), 2, anon_sym_in, anon_sym_BANGin, - ACTIONS(4787), 2, + ACTIONS(4791), 2, anon_sym_is, anon_sym_BANGis, - STATE(1901), 2, + STATE(1902), 2, sym_line_comment, sym_block_comment, - ACTIONS(4729), 4, + ACTIONS(4759), 4, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_CARET, - ACTIONS(4735), 4, + ACTIONS(4765), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(4731), 8, + ACTIONS(4761), 8, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, @@ -209167,21 +209280,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [22864] = 9, + [22822] = 9, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(4791), 1, + ACTIONS(4795), 1, anon_sym_COMMA, - ACTIONS(4793), 1, + ACTIONS(4797), 1, anon_sym_EQ, - STATE(3271), 1, + STATE(3274), 1, aux_sym_expression_without_blocks_list_repeat1, - STATE(1902), 2, + STATE(1903), 2, sym_line_comment, sym_block_comment, - ACTIONS(4789), 13, + ACTIONS(4793), 13, anon_sym_LBRACE, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -209195,7 +209308,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_EQ, anon_sym_PIPE_EQ, anon_sym_CARET_EQ, - ACTIONS(2778), 17, + ACTIONS(2532), 17, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, @@ -209213,7 +209326,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(2776), 21, + ACTIONS(2530), 21, anon_sym_DOT, anon_sym_as, anon_sym_LPAREN, @@ -209235,71 +209348,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [22941] = 5, - ACTIONS(497), 1, - anon_sym_SLASH_SLASH, - ACTIONS(499), 1, - anon_sym_SLASH_STAR, - STATE(1903), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(4797), 5, - anon_sym_LF, - anon_sym_CR, - anon_sym_CR_LF, - anon_sym_SEMI, - anon_sym_COMMA, - ACTIONS(4795), 49, - anon_sym_DOT, - anon_sym_LBRACE, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_fn, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_DOT_DOT_DOT, - anon_sym_struct, - anon_sym_mut, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_go, - anon_sym_spawn, - anon_sym_json_DOTdecode, - anon_sym_LBRACK2, - anon_sym_TILDE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_LT_DASH, - sym_none, - sym_true, - sym_false, - sym_nil, - anon_sym_if, - anon_sym_DOLLARif, - anon_sym_match, - anon_sym_select, - anon_sym_lock, - anon_sym_rlock, - anon_sym_unsafe, - anon_sym_sql, - sym_int_literal, - sym_float_literal, - sym_rune_literal, - sym_pseudo_compile_time_identifier, - sym_identifier, - anon_sym_shared, - anon_sym_map_LBRACK, - anon_sym_chan, - anon_sym_thread, - anon_sym_atomic, - sym___double_quote, - sym___single_quote, - sym___c_double_quote, - sym___c_single_quote, - sym___r_double_quote, - sym___r_single_quote, - [23010] = 4, + [22899] = 4, ACTIONS(497), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, @@ -209307,7 +209356,7 @@ static const uint16_t ts_small_parse_table[] = { STATE(1904), 2, sym_line_comment, sym_block_comment, - ACTIONS(3688), 54, + ACTIONS(3732), 54, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -209362,7 +209411,7 @@ static const uint16_t ts_small_parse_table[] = { sym___c_single_quote, sym___r_double_quote, sym___r_single_quote, - [23077] = 6, + [22966] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, @@ -209372,7 +209421,7 @@ static const uint16_t ts_small_parse_table[] = { STATE(1905), 2, sym_line_comment, sym_block_comment, - ACTIONS(1921), 18, + ACTIONS(1843), 18, anon_sym_EQ, anon_sym_PIPE, anon_sym_PLUS, @@ -209391,7 +209440,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(1919), 35, + ACTIONS(1841), 35, anon_sym_SEMI, anon_sym_DOT, anon_sym_as, @@ -209427,77 +209476,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [23148] = 6, + [23037] = 27, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(4801), 1, - anon_sym_DOLLARelse, - STATE(1906), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(1921), 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(1919), 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, - [23219] = 27, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_STAR, - ACTIONS(1761), 1, + ACTIONS(1649), 1, anon_sym_EQ, ACTIONS(4661), 1, anon_sym_as, @@ -209519,15 +209503,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_or, ACTIONS(4695), 1, anon_sym_POUND_LBRACK, - ACTIONS(4737), 1, + ACTIONS(4767), 1, anon_sym_AMP_AMP, - ACTIONS(4739), 1, + ACTIONS(4769), 1, anon_sym_PIPE_PIPE, - STATE(2067), 1, - sym_argument_list, - STATE(2068), 1, + STATE(1972), 1, sym_or_block, - STATE(4090), 1, + STATE(1977), 1, + sym_argument_list, + STATE(4147), 1, sym_type_parameters, ACTIONS(4659), 2, anon_sym_DOT, @@ -209535,26 +209519,26 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(4697), 2, anon_sym_is, anon_sym_BANGis, - ACTIONS(4733), 2, + ACTIONS(4763), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(4741), 2, + ACTIONS(4771), 2, anon_sym_in, anon_sym_BANGin, - STATE(1907), 2, + STATE(1906), 2, sym_line_comment, sym_block_comment, - ACTIONS(4729), 4, + ACTIONS(4759), 4, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_CARET, - ACTIONS(4735), 4, + ACTIONS(4765), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(4731), 8, + ACTIONS(4761), 8, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, @@ -209563,7 +209547,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(3524), 14, + ACTIONS(3522), 14, anon_sym_COMMA, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -209578,315 +209562,143 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [23332] = 6, - ACTIONS(3), 1, + [23150] = 5, + ACTIONS(497), 1, anon_sym_SLASH_SLASH, - ACTIONS(5), 1, + ACTIONS(499), 1, anon_sym_SLASH_STAR, - STATE(1931), 1, - sym_type_parameters, - STATE(1908), 2, + STATE(1907), 2, sym_line_comment, sym_block_comment, - ACTIONS(1905), 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(1903), 35, + ACTIONS(4803), 5, + anon_sym_LF, + anon_sym_CR, + anon_sym_CR_LF, + anon_sym_SEMI, + anon_sym_COMMA, + ACTIONS(4801), 49, 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, - [23403] = 6, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_STAR, - ACTIONS(4803), 1, - anon_sym_DOLLARelse, - STATE(1909), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(1899), 18, - anon_sym_EQ, - anon_sym_PIPE, + anon_sym_RPAREN, + anon_sym_fn, anon_sym_PLUS, anon_sym_DASH, anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_LT, - anon_sym_GT, + anon_sym_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(1897), 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, - [23474] = 6, + 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, + [23219] = 27, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - STATE(1987), 1, - sym_type_parameters, - STATE(1910), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(1905), 18, + ACTIONS(1789), 1, anon_sym_EQ, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_LT, - anon_sym_GT, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_LBRACK2, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - ACTIONS(1903), 35, - anon_sym_SEMI, - anon_sym_DOT, + ACTIONS(4661), 1, anon_sym_as, - anon_sym_LBRACE, - anon_sym_COMMA, + ACTIONS(4667), 1, anon_sym_LPAREN, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, + ACTIONS(4677), 1, anon_sym_LBRACK, + ACTIONS(4679), 1, anon_sym_PLUS_PLUS, + ACTIONS(4681), 1, anon_sym_DASH_DASH, + ACTIONS(4683), 1, + anon_sym_QMARK, + ACTIONS(4685), 1, + anon_sym_BANG, + ACTIONS(4687), 1, + anon_sym_LBRACK2, + ACTIONS(4693), 1, + anon_sym_or, + ACTIONS(4695), 1, + anon_sym_POUND_LBRACK, + ACTIONS(4767), 1, anon_sym_AMP_AMP, + ACTIONS(4769), 1, anon_sym_PIPE_PIPE, - anon_sym_or, + STATE(1972), 1, + sym_or_block, + STATE(1977), 1, + sym_argument_list, + STATE(4147), 1, + sym_type_parameters, + ACTIONS(4659), 2, + anon_sym_DOT, anon_sym_QMARK_DOT, - anon_sym_POUND_LBRACK, - anon_sym_is, - anon_sym_BANGis, + ACTIONS(4763), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(4771), 2, anon_sym_in, anon_sym_BANGin, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_AMP_CARET_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, - anon_sym_COLON_EQ, - [23545] = 5, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_STAR, - STATE(1911), 2, + ACTIONS(4805), 2, + anon_sym_is, + anon_sym_BANGis, + STATE(1908), 2, sym_line_comment, sym_block_comment, - ACTIONS(1917), 18, - anon_sym_EQ, + ACTIONS(4759), 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_QMARK, - anon_sym_BANG, - anon_sym_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(1915), 35, - anon_sym_SEMI, - anon_sym_DOT, - anon_sym_as, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_LPAREN, + ACTIONS(4765), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - anon_sym_LBRACK, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_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, - [23613] = 6, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_STAR, - ACTIONS(4805), 1, - anon_sym_DOT, - STATE(1912), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(2761), 18, - anon_sym_EQ, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, + ACTIONS(4761), 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(2759), 34, - anon_sym_SEMI, - anon_sym_as, - anon_sym_LBRACE, + ACTIONS(1787), 14, anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_LBRACK, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_or, - anon_sym_QMARK_DOT, - anon_sym_POUND_LBRACK, - anon_sym_is, - anon_sym_BANGis, - anon_sym_in, - anon_sym_BANGin, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, @@ -209900,15 +209712,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [23683] = 5, + [23332] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - STATE(1913), 2, + STATE(2028), 1, + sym_type_parameters, + STATE(1909), 2, sym_line_comment, sym_block_comment, - ACTIONS(2920), 18, + ACTIONS(1881), 18, anon_sym_EQ, anon_sym_PIPE, anon_sym_PLUS, @@ -209927,7 +209741,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(2918), 35, + ACTIONS(1879), 35, + anon_sym_SEMI, anon_sym_DOT, anon_sym_as, anon_sym_LBRACE, @@ -209938,10 +209753,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, @@ -209963,17 +209776,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_EQ, anon_sym_PIPE_EQ, anon_sym_CARET_EQ, - [23751] = 6, + anon_sym_COLON_EQ, + [23403] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(4805), 1, - anon_sym_DOT, - STATE(1914), 2, + ACTIONS(4807), 1, + anon_sym_DOLLARelse, + STATE(1910), 2, sym_line_comment, sym_block_comment, - ACTIONS(2761), 18, + ACTIONS(1843), 18, anon_sym_EQ, anon_sym_PIPE, anon_sym_PLUS, @@ -209992,7 +209806,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(2759), 34, + ACTIONS(1841), 35, + anon_sym_DOT, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -210027,15 +209842,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_EQ, anon_sym_PIPE_EQ, anon_sym_CARET_EQ, - [23821] = 5, + [23474] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - STATE(1915), 2, + ACTIONS(4809), 1, + anon_sym_DOLLARelse, + STATE(1911), 2, sym_line_comment, sym_block_comment, - ACTIONS(2900), 18, + ACTIONS(1913), 18, anon_sym_EQ, anon_sym_PIPE, anon_sym_PLUS, @@ -210054,7 +209871,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(2898), 35, + ACTIONS(1911), 35, anon_sym_DOT, anon_sym_as, anon_sym_LBRACE, @@ -210090,15 +209907,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_EQ, anon_sym_PIPE_EQ, anon_sym_CARET_EQ, - [23889] = 5, + [23545] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - STATE(1916), 2, + STATE(1912), 2, sym_line_comment, sym_block_comment, - ACTIONS(2872), 18, + ACTIONS(2199), 18, anon_sym_EQ, anon_sym_PIPE, anon_sym_PLUS, @@ -210117,7 +209934,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(2870), 35, + ACTIONS(2197), 35, anon_sym_DOT, anon_sym_as, anon_sym_LBRACE, @@ -210153,141 +209970,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_EQ, anon_sym_PIPE_EQ, anon_sym_CARET_EQ, - [23957] = 5, + [23613] = 7, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - STATE(1917), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(2749), 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(2747), 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, + ACTIONS(1894), 1, anon_sym_LBRACK, - anon_sym_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, - [24025] = 5, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_STAR, - STATE(1918), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(2772), 18, - anon_sym_EQ, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_LT, - anon_sym_GT, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_LBRACK2, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - ACTIONS(2770), 35, - anon_sym_DOT, - anon_sym_as, + ACTIONS(2473), 1, 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, - [24093] = 5, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_STAR, - STATE(1919), 2, + STATE(1913), 2, sym_line_comment, sym_block_comment, - ACTIONS(2840), 18, + ACTIONS(1889), 18, anon_sym_EQ, anon_sym_PIPE, anon_sym_PLUS, @@ -210306,18 +210001,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(2838), 35, + ACTIONS(1887), 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, @@ -210342,15 +210035,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [24161] = 5, + [23685] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - STATE(1920), 2, + STATE(1914), 2, sym_line_comment, sym_block_comment, - ACTIONS(2673), 18, + ACTIONS(2680), 18, anon_sym_EQ, anon_sym_PIPE, anon_sym_PLUS, @@ -210369,8 +210062,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(2671), 35, - anon_sym_SEMI, + ACTIONS(2678), 35, anon_sym_DOT, anon_sym_as, anon_sym_LBRACE, @@ -210381,8 +210073,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, @@ -210404,16 +210098,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_EQ, anon_sym_PIPE_EQ, anon_sym_CARET_EQ, - anon_sym_COLON_EQ, - [24229] = 5, + [23753] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - STATE(1921), 2, + STATE(1915), 2, sym_line_comment, sym_block_comment, - ACTIONS(2229), 18, + ACTIONS(2532), 18, anon_sym_EQ, anon_sym_PIPE, anon_sym_PLUS, @@ -210432,7 +210125,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(2227), 35, + ACTIONS(2530), 35, anon_sym_DOT, anon_sym_as, anon_sym_LBRACE, @@ -210468,15 +210161,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_EQ, anon_sym_PIPE_EQ, anon_sym_CARET_EQ, - [24297] = 5, + [23821] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - STATE(1922), 2, + STATE(1916), 2, sym_line_comment, sym_block_comment, - ACTIONS(2916), 18, + ACTIONS(2684), 18, anon_sym_EQ, anon_sym_PIPE, anon_sym_PLUS, @@ -210495,7 +210188,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(2914), 35, + ACTIONS(2682), 35, anon_sym_DOT, anon_sym_as, anon_sym_LBRACE, @@ -210531,15 +210224,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_EQ, anon_sym_PIPE_EQ, anon_sym_CARET_EQ, - [24365] = 5, + [23889] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - STATE(1923), 2, + ACTIONS(4811), 1, + anon_sym_BANG, + STATE(1917), 2, sym_line_comment, sym_block_comment, - ACTIONS(2655), 18, + ACTIONS(2542), 17, anon_sym_EQ, anon_sym_PIPE, anon_sym_PLUS, @@ -210550,7 +210245,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, @@ -210558,7 +210252,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(2653), 35, + ACTIONS(2540), 35, + anon_sym_SEMI, anon_sym_DOT, anon_sym_as, anon_sym_LBRACE, @@ -210569,10 +210264,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, @@ -210594,15 +210287,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_EQ, anon_sym_PIPE_EQ, anon_sym_CARET_EQ, - [24433] = 5, + anon_sym_COLON_EQ, + [23959] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - STATE(1924), 2, + STATE(1918), 2, sym_line_comment, sym_block_comment, - ACTIONS(2816), 18, + ACTIONS(2794), 18, anon_sym_EQ, anon_sym_PIPE, anon_sym_PLUS, @@ -210621,7 +210315,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(2814), 35, + ACTIONS(2792), 35, anon_sym_DOT, anon_sym_as, anon_sym_LBRACE, @@ -210657,15 +210351,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_EQ, anon_sym_PIPE_EQ, anon_sym_CARET_EQ, - [24501] = 5, + [24027] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - STATE(1925), 2, + STATE(1919), 2, sym_line_comment, sym_block_comment, - ACTIONS(2667), 18, + ACTIONS(2832), 18, anon_sym_EQ, anon_sym_PIPE, anon_sym_PLUS, @@ -210684,7 +210378,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(2665), 35, + ACTIONS(2830), 35, anon_sym_DOT, anon_sym_as, anon_sym_LBRACE, @@ -210720,15 +210414,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_EQ, anon_sym_PIPE_EQ, anon_sym_CARET_EQ, - [24569] = 5, + [24095] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - STATE(1926), 2, + STATE(1920), 2, sym_line_comment, sym_block_comment, - ACTIONS(2810), 18, + ACTIONS(2732), 18, anon_sym_EQ, anon_sym_PIPE, anon_sym_PLUS, @@ -210747,7 +210441,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(2808), 35, + ACTIONS(2730), 35, + anon_sym_SEMI, anon_sym_DOT, anon_sym_as, anon_sym_LBRACE, @@ -210758,10 +210453,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, @@ -210783,15 +210476,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_EQ, anon_sym_PIPE_EQ, anon_sym_CARET_EQ, - [24637] = 5, + anon_sym_COLON_EQ, + [24163] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - STATE(1927), 2, + STATE(1921), 2, sym_line_comment, sym_block_comment, - ACTIONS(2681), 18, + ACTIONS(2119), 18, anon_sym_EQ, anon_sym_PIPE, anon_sym_PLUS, @@ -210810,7 +210504,8 @@ 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(2117), 35, + anon_sym_SEMI, anon_sym_DOT, anon_sym_as, anon_sym_LBRACE, @@ -210821,10 +210516,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, @@ -210846,15 +210539,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_EQ, anon_sym_PIPE_EQ, anon_sym_CARET_EQ, - [24705] = 5, + anon_sym_COLON_EQ, + [24231] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - STATE(1928), 2, + STATE(1922), 2, sym_line_comment, sym_block_comment, - ACTIONS(1851), 18, + ACTIONS(2788), 18, anon_sym_EQ, anon_sym_PIPE, anon_sym_PLUS, @@ -210873,7 +210567,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(1849), 35, + ACTIONS(2786), 35, + anon_sym_SEMI, anon_sym_DOT, anon_sym_as, anon_sym_LBRACE, @@ -210884,10 +210579,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, @@ -210909,15 +210602,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_EQ, anon_sym_PIPE_EQ, anon_sym_CARET_EQ, - [24773] = 5, + anon_sym_COLON_EQ, + [24299] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - STATE(1929), 2, + STATE(1923), 2, sym_line_comment, sym_block_comment, - ACTIONS(1905), 18, + ACTIONS(2798), 18, anon_sym_EQ, anon_sym_PIPE, anon_sym_PLUS, @@ -210936,7 +210630,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(1903), 35, + ACTIONS(2796), 35, + anon_sym_SEMI, anon_sym_DOT, anon_sym_as, anon_sym_LBRACE, @@ -210947,10 +210642,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, @@ -210972,15 +210665,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_EQ, anon_sym_PIPE_EQ, anon_sym_CARET_EQ, - [24841] = 5, + anon_sym_COLON_EQ, + [24367] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - STATE(1930), 2, + STATE(1924), 2, sym_line_comment, sym_block_comment, - ACTIONS(2786), 18, + ACTIONS(2802), 18, anon_sym_EQ, anon_sym_PIPE, anon_sym_PLUS, @@ -210999,7 +210693,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(2784), 35, + ACTIONS(2800), 35, + anon_sym_SEMI, anon_sym_DOT, anon_sym_as, anon_sym_LBRACE, @@ -211010,10 +210705,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, @@ -211035,15 +210728,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_EQ, anon_sym_PIPE_EQ, anon_sym_CARET_EQ, - [24909] = 5, + anon_sym_COLON_EQ, + [24435] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - STATE(1931), 2, + STATE(1925), 2, sym_line_comment, sym_block_comment, - ACTIONS(2511), 18, + ACTIONS(2824), 18, anon_sym_EQ, anon_sym_PIPE, anon_sym_PLUS, @@ -211062,7 +210756,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(2509), 35, + ACTIONS(2822), 35, + anon_sym_SEMI, anon_sym_DOT, anon_sym_as, anon_sym_LBRACE, @@ -211073,10 +210768,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, @@ -211098,15 +210791,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_EQ, anon_sym_PIPE_EQ, anon_sym_CARET_EQ, - [24977] = 5, + anon_sym_COLON_EQ, + [24503] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - STATE(1932), 2, + STATE(1926), 2, sym_line_comment, sym_block_comment, - ACTIONS(2745), 18, + ACTIONS(2828), 18, anon_sym_EQ, anon_sym_PIPE, anon_sym_PLUS, @@ -211125,7 +210819,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(2743), 35, + ACTIONS(2826), 35, + anon_sym_SEMI, anon_sym_DOT, anon_sym_as, anon_sym_LBRACE, @@ -211136,10 +210831,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, @@ -211161,15 +210854,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_EQ, anon_sym_PIPE_EQ, anon_sym_CARET_EQ, - [25045] = 5, + anon_sym_COLON_EQ, + [24571] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - STATE(1933), 2, + STATE(1927), 2, sym_line_comment, sym_block_comment, - ACTIONS(2281), 18, + ACTIONS(2836), 18, anon_sym_EQ, anon_sym_PIPE, anon_sym_PLUS, @@ -211188,7 +210882,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(2279), 35, + ACTIONS(2834), 35, + anon_sym_SEMI, anon_sym_DOT, anon_sym_as, anon_sym_LBRACE, @@ -211199,10 +210894,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, @@ -211224,15 +210917,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_EQ, anon_sym_PIPE_EQ, anon_sym_CARET_EQ, - [25113] = 5, + anon_sym_COLON_EQ, + [24639] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - STATE(1934), 2, + STATE(1928), 2, sym_line_comment, sym_block_comment, - ACTIONS(2233), 18, + ACTIONS(2890), 18, anon_sym_EQ, anon_sym_PIPE, anon_sym_PLUS, @@ -211251,7 +210945,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(2231), 35, + ACTIONS(2888), 35, + anon_sym_SEMI, anon_sym_DOT, anon_sym_as, anon_sym_LBRACE, @@ -211262,10 +210957,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, @@ -211287,15 +210980,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_EQ, anon_sym_PIPE_EQ, anon_sym_CARET_EQ, - [25181] = 5, + anon_sym_COLON_EQ, + [24707] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - STATE(1935), 2, + STATE(1929), 2, sym_line_comment, sym_block_comment, - ACTIONS(2647), 18, + ACTIONS(2894), 18, anon_sym_EQ, anon_sym_PIPE, anon_sym_PLUS, @@ -211314,7 +211008,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(2645), 35, + ACTIONS(2892), 35, + anon_sym_SEMI, anon_sym_DOT, anon_sym_as, anon_sym_LBRACE, @@ -211325,10 +211020,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, @@ -211350,15 +211043,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_EQ, anon_sym_PIPE_EQ, anon_sym_CARET_EQ, - [25249] = 5, + anon_sym_COLON_EQ, + [24775] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - STATE(1936), 2, + STATE(1930), 2, sym_line_comment, sym_block_comment, - ACTIONS(2798), 18, + ACTIONS(2728), 18, anon_sym_EQ, anon_sym_PIPE, anon_sym_PLUS, @@ -211377,8 +211071,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(2796), 35, - anon_sym_SEMI, + ACTIONS(2726), 35, anon_sym_DOT, anon_sym_as, anon_sym_LBRACE, @@ -211389,8 +211082,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, @@ -211412,16 +211107,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_EQ, anon_sym_PIPE_EQ, anon_sym_CARET_EQ, - anon_sym_COLON_EQ, - [25317] = 5, + [24843] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - STATE(1937), 2, + STATE(1931), 2, sym_line_comment, sym_block_comment, - ACTIONS(2908), 18, + ACTIONS(2898), 18, anon_sym_EQ, anon_sym_PIPE, anon_sym_PLUS, @@ -211440,7 +211134,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(2906), 35, + ACTIONS(2896), 35, anon_sym_DOT, anon_sym_as, anon_sym_LBRACE, @@ -211476,15 +211170,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_EQ, anon_sym_PIPE_EQ, anon_sym_CARET_EQ, - [25385] = 5, + [24911] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - STATE(1938), 2, + STATE(1932), 2, sym_line_comment, sym_block_comment, - ACTIONS(2904), 18, + ACTIONS(2898), 18, anon_sym_EQ, anon_sym_PIPE, anon_sym_PLUS, @@ -211503,7 +211197,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(2902), 35, + ACTIONS(2896), 35, + anon_sym_SEMI, anon_sym_DOT, anon_sym_as, anon_sym_LBRACE, @@ -211514,10 +211209,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, @@ -211539,15 +211232,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_EQ, anon_sym_PIPE_EQ, anon_sym_CARET_EQ, - [25453] = 5, + anon_sym_COLON_EQ, + [24979] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - STATE(1939), 2, + STATE(1933), 2, sym_line_comment, sym_block_comment, - ACTIONS(2790), 18, + ACTIONS(1987), 18, anon_sym_EQ, anon_sym_PIPE, anon_sym_PLUS, @@ -211566,7 +211260,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(2788), 35, + ACTIONS(1989), 35, + anon_sym_SEMI, anon_sym_DOT, anon_sym_as, anon_sym_LBRACE, @@ -211577,10 +211272,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, @@ -211602,15 +211295,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_EQ, anon_sym_PIPE_EQ, anon_sym_CARET_EQ, - [25521] = 5, + anon_sym_COLON_EQ, + [25047] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - STATE(1940), 2, + STATE(1934), 2, sym_line_comment, sym_block_comment, - ACTIONS(2677), 18, + ACTIONS(2311), 18, anon_sym_EQ, anon_sym_PIPE, anon_sym_PLUS, @@ -211629,7 +211323,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(2675), 35, + ACTIONS(2309), 35, anon_sym_DOT, anon_sym_as, anon_sym_LBRACE, @@ -211665,15 +211359,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_EQ, anon_sym_PIPE_EQ, anon_sym_CARET_EQ, - [25589] = 5, + [25115] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - STATE(1941), 2, + STATE(1935), 2, sym_line_comment, sym_block_comment, - ACTIONS(2659), 18, + ACTIONS(2894), 18, anon_sym_EQ, anon_sym_PIPE, anon_sym_PLUS, @@ -211692,7 +211386,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(2657), 35, + ACTIONS(2892), 35, anon_sym_DOT, anon_sym_as, anon_sym_LBRACE, @@ -211728,15 +211422,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_EQ, anon_sym_PIPE_EQ, anon_sym_CARET_EQ, - [25657] = 5, + [25183] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - STATE(1942), 2, + STATE(1936), 2, sym_line_comment, sym_block_comment, - ACTIONS(2651), 18, + ACTIONS(2115), 18, anon_sym_EQ, anon_sym_PIPE, anon_sym_PLUS, @@ -211755,7 +211449,70 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(2649), 35, + ACTIONS(2113), 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, + [25251] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + STATE(1937), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(2840), 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(2838), 35, anon_sym_DOT, anon_sym_as, anon_sym_LBRACE, @@ -211791,15 +211548,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_EQ, anon_sym_PIPE_EQ, anon_sym_CARET_EQ, - [25725] = 5, + [25319] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - STATE(1943), 2, + STATE(1938), 2, sym_line_comment, sym_block_comment, - ACTIONS(2687), 18, + ACTIONS(3068), 18, anon_sym_EQ, anon_sym_PIPE, anon_sym_PLUS, @@ -211818,7 +211575,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(2685), 35, + ACTIONS(3066), 35, anon_sym_SEMI, anon_sym_DOT, anon_sym_as, @@ -211854,15 +211611,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [25793] = 5, + [25387] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - STATE(1944), 2, + STATE(1939), 2, sym_line_comment, sym_block_comment, - ACTIONS(2239), 18, + ACTIONS(2522), 18, anon_sym_EQ, anon_sym_PIPE, anon_sym_PLUS, @@ -211881,7 +211638,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(2237), 35, + ACTIONS(2520), 35, anon_sym_DOT, anon_sym_as, anon_sym_LBRACE, @@ -211917,15 +211674,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_EQ, anon_sym_PIPE_EQ, anon_sym_CARET_EQ, - [25861] = 5, + [25455] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - STATE(1945), 2, + STATE(1940), 2, sym_line_comment, sym_block_comment, - ACTIONS(2247), 18, + ACTIONS(2668), 18, anon_sym_EQ, anon_sym_PIPE, anon_sym_PLUS, @@ -211944,7 +211701,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(2245), 35, + ACTIONS(2666), 35, anon_sym_DOT, anon_sym_as, anon_sym_LBRACE, @@ -211980,15 +211737,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_EQ, anon_sym_PIPE_EQ, anon_sym_CARET_EQ, - [25929] = 5, + [25523] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - STATE(1946), 2, + STATE(1941), 2, sym_line_comment, sym_block_comment, - ACTIONS(2828), 18, + ACTIONS(2229), 18, anon_sym_EQ, anon_sym_PIPE, anon_sym_PLUS, @@ -212007,7 +211764,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(2826), 35, + ACTIONS(2227), 35, anon_sym_SEMI, anon_sym_DOT, anon_sym_as, @@ -212043,15 +211800,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [25997] = 5, + [25591] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - STATE(1947), 2, + STATE(1942), 2, sym_line_comment, sym_block_comment, - ACTIONS(2860), 18, + ACTIONS(2880), 18, anon_sym_EQ, anon_sym_PIPE, anon_sym_PLUS, @@ -212070,7 +211827,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(2858), 35, + ACTIONS(2878), 35, anon_sym_SEMI, anon_sym_DOT, anon_sym_as, @@ -212106,15 +211863,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [26065] = 5, + [25659] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - STATE(1948), 2, + STATE(1943), 2, sym_line_comment, sym_block_comment, - ACTIONS(2169), 18, + ACTIONS(2806), 18, anon_sym_EQ, anon_sym_PIPE, anon_sym_PLUS, @@ -212133,7 +211890,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(2167), 35, + ACTIONS(2804), 35, anon_sym_SEMI, anon_sym_DOT, anon_sym_as, @@ -212169,15 +211926,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [26133] = 5, + [25727] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - STATE(1949), 2, + ACTIONS(4813), 1, + anon_sym_DOT, + STATE(1944), 2, sym_line_comment, sym_block_comment, - ACTIONS(2483), 18, + ACTIONS(2513), 18, anon_sym_EQ, anon_sym_PIPE, anon_sym_PLUS, @@ -212196,8 +211955,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(2481), 35, - anon_sym_DOT, + ACTIONS(2511), 34, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -212232,15 +211990,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_EQ, anon_sym_PIPE_EQ, anon_sym_CARET_EQ, - [26201] = 5, + [25797] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - STATE(1950), 2, + STATE(1945), 2, sym_line_comment, sym_block_comment, - ACTIONS(2673), 18, + ACTIONS(2509), 18, anon_sym_EQ, anon_sym_PIPE, anon_sym_PLUS, @@ -212259,7 +212017,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(2671), 35, + ACTIONS(2507), 35, + anon_sym_SEMI, anon_sym_DOT, anon_sym_as, anon_sym_LBRACE, @@ -212270,10 +212029,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, @@ -212295,15 +212052,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_EQ, anon_sym_PIPE_EQ, anon_sym_CARET_EQ, - [26269] = 5, + anon_sym_COLON_EQ, + [25865] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - STATE(1951), 2, + STATE(1946), 2, sym_line_comment, sym_block_comment, - ACTIONS(2840), 18, + ACTIONS(2199), 18, anon_sym_EQ, anon_sym_PIPE, anon_sym_PLUS, @@ -212322,7 +212080,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(2838), 35, + ACTIONS(2197), 35, + anon_sym_SEMI, anon_sym_DOT, anon_sym_as, anon_sym_LBRACE, @@ -212333,10 +212092,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, @@ -212358,15 +212115,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_EQ, anon_sym_PIPE_EQ, anon_sym_CARET_EQ, - [26337] = 5, + anon_sym_COLON_EQ, + [25933] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - STATE(1952), 2, + STATE(1947), 2, sym_line_comment, sym_block_comment, - ACTIONS(2846), 18, + ACTIONS(2862), 18, anon_sym_EQ, anon_sym_PIPE, anon_sym_PLUS, @@ -212385,7 +212143,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(2844), 35, + ACTIONS(2860), 35, + anon_sym_SEMI, anon_sym_DOT, anon_sym_as, anon_sym_LBRACE, @@ -212396,10 +212155,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, @@ -212421,15 +212178,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_EQ, anon_sym_PIPE_EQ, anon_sym_CARET_EQ, - [26405] = 5, + anon_sym_COLON_EQ, + [26001] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - STATE(1953), 2, + STATE(1948), 2, sym_line_comment, sym_block_comment, - ACTIONS(2850), 18, + ACTIONS(2874), 18, anon_sym_EQ, anon_sym_PIPE, anon_sym_PLUS, @@ -212448,7 +212206,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(2848), 35, + ACTIONS(2872), 35, + anon_sym_SEMI, anon_sym_DOT, anon_sym_as, anon_sym_LBRACE, @@ -212459,10 +212218,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, @@ -212484,15 +212241,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_EQ, anon_sym_PIPE_EQ, anon_sym_CARET_EQ, - [26473] = 5, + anon_sym_COLON_EQ, + [26069] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - STATE(1954), 2, + STATE(1949), 2, sym_line_comment, sym_block_comment, - ACTIONS(2183), 18, + ACTIONS(1881), 18, anon_sym_EQ, anon_sym_PIPE, anon_sym_PLUS, @@ -212511,7 +212269,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(2181), 35, + ACTIONS(1879), 35, anon_sym_SEMI, anon_sym_DOT, anon_sym_as, @@ -212547,15 +212305,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [26541] = 5, + [26137] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - STATE(1955), 2, + STATE(1950), 2, sym_line_comment, sym_block_comment, - ACTIONS(2213), 18, + ACTIONS(2924), 18, anon_sym_EQ, anon_sym_PIPE, anon_sym_PLUS, @@ -212574,7 +212332,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(2211), 35, + ACTIONS(2922), 35, anon_sym_SEMI, anon_sym_DOT, anon_sym_as, @@ -212610,15 +212368,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [26609] = 5, + [26205] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - STATE(1956), 2, + STATE(1951), 2, sym_line_comment, sym_block_comment, - ACTIONS(2860), 18, + ACTIONS(2125), 18, anon_sym_EQ, anon_sym_PIPE, anon_sym_PLUS, @@ -212637,7 +212395,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(2858), 35, + ACTIONS(2123), 35, + anon_sym_SEMI, anon_sym_DOT, anon_sym_as, anon_sym_LBRACE, @@ -212648,10 +212407,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, @@ -212673,15 +212430,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_EQ, anon_sym_PIPE_EQ, anon_sym_CARET_EQ, - [26677] = 5, + anon_sym_COLON_EQ, + [26273] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - STATE(1957), 2, + STATE(1952), 2, sym_line_comment, sym_block_comment, - ACTIONS(2856), 18, + ACTIONS(2850), 18, anon_sym_EQ, anon_sym_PIPE, anon_sym_PLUS, @@ -212700,7 +212458,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(2854), 35, + ACTIONS(2848), 35, + anon_sym_SEMI, anon_sym_DOT, anon_sym_as, anon_sym_LBRACE, @@ -212711,10 +212470,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, @@ -212736,15 +212493,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_EQ, anon_sym_PIPE_EQ, anon_sym_CARET_EQ, - [26745] = 5, + anon_sym_COLON_EQ, + [26341] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - STATE(1958), 2, + STATE(1953), 2, sym_line_comment, sym_block_comment, - ACTIONS(2507), 18, + ACTIONS(2532), 18, anon_sym_EQ, anon_sym_PIPE, anon_sym_PLUS, @@ -212763,7 +212521,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(2505), 35, + ACTIONS(2530), 35, + anon_sym_SEMI, anon_sym_DOT, anon_sym_as, anon_sym_LBRACE, @@ -212774,10 +212533,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, @@ -212799,12 +212556,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_EQ, anon_sym_PIPE_EQ, anon_sym_CARET_EQ, - [26813] = 5, + anon_sym_COLON_EQ, + [26409] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - STATE(1959), 2, + STATE(1954), 2, sym_line_comment, sym_block_comment, ACTIONS(2832), 18, @@ -212827,6 +212585,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT_GT, anon_sym_AMP_CARET, ACTIONS(2830), 35, + anon_sym_SEMI, anon_sym_DOT, anon_sym_as, anon_sym_LBRACE, @@ -212837,10 +212596,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, @@ -212862,15 +212619,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_EQ, anon_sym_PIPE_EQ, anon_sym_CARET_EQ, - [26881] = 5, + anon_sym_COLON_EQ, + [26477] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - STATE(1960), 2, + STATE(1955), 2, sym_line_comment, sym_block_comment, - ACTIONS(2273), 18, + ACTIONS(2513), 18, anon_sym_EQ, anon_sym_PIPE, anon_sym_PLUS, @@ -212889,7 +212647,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(2271), 35, + ACTIONS(2511), 35, + anon_sym_SEMI, anon_sym_DOT, anon_sym_as, anon_sym_LBRACE, @@ -212900,10 +212659,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, @@ -212925,15 +212682,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_EQ, anon_sym_PIPE_EQ, anon_sym_CARET_EQ, - [26949] = 5, + anon_sym_COLON_EQ, + [26545] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - STATE(1961), 2, + ACTIONS(4813), 1, + anon_sym_DOT, + STATE(1956), 2, sym_line_comment, sym_block_comment, - ACTIONS(2663), 18, + ACTIONS(2513), 18, anon_sym_EQ, anon_sym_PIPE, anon_sym_PLUS, @@ -212952,9 +212712,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(2661), 35, + ACTIONS(2511), 34, anon_sym_SEMI, - anon_sym_DOT, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -212988,15 +212747,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [27017] = 5, + [26615] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - STATE(1962), 2, + STATE(1957), 2, sym_line_comment, sym_block_comment, - ACTIONS(2273), 18, + ACTIONS(2794), 18, anon_sym_EQ, anon_sym_PIPE, anon_sym_PLUS, @@ -213015,7 +212774,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(2271), 35, + ACTIONS(2792), 35, anon_sym_SEMI, anon_sym_DOT, anon_sym_as, @@ -213051,15 +212810,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [27085] = 5, + [26683] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - STATE(1963), 2, + STATE(1958), 2, sym_line_comment, sym_block_comment, - ACTIONS(3062), 18, + ACTIONS(2522), 18, anon_sym_EQ, anon_sym_PIPE, anon_sym_PLUS, @@ -213078,7 +212837,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(3060), 35, + ACTIONS(2520), 35, + anon_sym_SEMI, anon_sym_DOT, anon_sym_as, anon_sym_LBRACE, @@ -213089,10 +212849,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, @@ -213114,15 +212872,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_EQ, anon_sym_PIPE_EQ, anon_sym_CARET_EQ, - [27153] = 5, + anon_sym_COLON_EQ, + [26751] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - STATE(1964), 2, + STATE(1959), 2, sym_line_comment, sym_block_comment, - ACTIONS(2832), 18, + ACTIONS(2782), 18, anon_sym_EQ, anon_sym_PIPE, anon_sym_PLUS, @@ -213141,7 +212900,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(2830), 35, + ACTIONS(2780), 35, anon_sym_SEMI, anon_sym_DOT, anon_sym_as, @@ -213177,15 +212936,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [27221] = 5, + [26819] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - STATE(1965), 2, + STATE(1960), 2, sym_line_comment, sym_block_comment, - ACTIONS(2507), 18, + ACTIONS(2718), 18, anon_sym_EQ, anon_sym_PIPE, anon_sym_PLUS, @@ -213204,7 +212963,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(2505), 35, + ACTIONS(2716), 35, anon_sym_SEMI, anon_sym_DOT, anon_sym_as, @@ -213240,15 +212999,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [27289] = 5, + [26887] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - STATE(1966), 2, + STATE(1961), 2, sym_line_comment, sym_block_comment, - ACTIONS(2213), 18, + ACTIONS(2501), 18, anon_sym_EQ, anon_sym_PIPE, anon_sym_PLUS, @@ -213267,7 +213026,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(2211), 35, + ACTIONS(2499), 35, + anon_sym_SEMI, anon_sym_DOT, anon_sym_as, anon_sym_LBRACE, @@ -213278,10 +213038,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, @@ -213303,15 +213061,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_EQ, anon_sym_PIPE_EQ, anon_sym_CARET_EQ, - [27357] = 5, + anon_sym_COLON_EQ, + [26955] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - STATE(1967), 2, + STATE(1962), 2, sym_line_comment, sym_block_comment, - ACTIONS(2183), 18, + ACTIONS(2471), 18, anon_sym_EQ, anon_sym_PIPE, anon_sym_PLUS, @@ -213330,7 +213089,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(2181), 35, + ACTIONS(2469), 35, + anon_sym_SEMI, anon_sym_DOT, anon_sym_as, anon_sym_LBRACE, @@ -213341,10 +213101,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, @@ -213366,15 +213124,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_EQ, anon_sym_PIPE_EQ, anon_sym_CARET_EQ, - [27425] = 5, + anon_sym_COLON_EQ, + [27023] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - STATE(1968), 2, + STATE(1963), 2, sym_line_comment, sym_block_comment, - ACTIONS(2477), 18, + ACTIONS(2692), 18, anon_sym_EQ, anon_sym_PIPE, anon_sym_PLUS, @@ -213393,7 +213152,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(2475), 35, + ACTIONS(2690), 35, anon_sym_DOT, anon_sym_as, anon_sym_LBRACE, @@ -213429,15 +213188,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_EQ, anon_sym_PIPE_EQ, anon_sym_CARET_EQ, - [27493] = 5, + [27091] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - STATE(1969), 2, + STATE(1964), 2, sym_line_comment, sym_block_comment, - ACTIONS(2169), 18, + ACTIONS(2676), 18, anon_sym_EQ, anon_sym_PIPE, anon_sym_PLUS, @@ -213456,7 +213215,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(2167), 35, + ACTIONS(2674), 35, + anon_sym_SEMI, anon_sym_DOT, anon_sym_as, anon_sym_LBRACE, @@ -213467,10 +213227,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, @@ -213492,15 +213250,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_EQ, anon_sym_PIPE_EQ, anon_sym_CARET_EQ, - [27561] = 5, + anon_sym_COLON_EQ, + [27159] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - STATE(1970), 2, + STATE(1965), 2, sym_line_comment, sym_block_comment, - ACTIONS(2828), 18, + ACTIONS(2311), 18, anon_sym_EQ, anon_sym_PIPE, anon_sym_PLUS, @@ -213519,7 +213278,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(2826), 35, + ACTIONS(2309), 35, + anon_sym_SEMI, anon_sym_DOT, anon_sym_as, anon_sym_LBRACE, @@ -213530,10 +213290,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, @@ -213555,15 +213313,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_EQ, anon_sym_PIPE_EQ, anon_sym_CARET_EQ, - [27629] = 5, + anon_sym_COLON_EQ, + [27227] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - STATE(1971), 2, + ACTIONS(1989), 1, + anon_sym_LBRACE, + STATE(1966), 2, sym_line_comment, sym_block_comment, - ACTIONS(2687), 18, + ACTIONS(1809), 18, anon_sym_EQ, anon_sym_PIPE, anon_sym_PLUS, @@ -213582,10 +213343,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(2685), 35, + ACTIONS(1807), 34, + anon_sym_SEMI, anon_sym_DOT, anon_sym_as, - anon_sym_LBRACE, anon_sym_COMMA, anon_sym_LPAREN, anon_sym_EQ_EQ, @@ -213593,10 +213354,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, @@ -213618,15 +213377,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_EQ, anon_sym_PIPE_EQ, anon_sym_CARET_EQ, - [27697] = 5, + anon_sym_COLON_EQ, + [27297] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - STATE(1972), 2, + STATE(1967), 2, sym_line_comment, sym_block_comment, - ACTIONS(2735), 18, + ACTIONS(2303), 18, anon_sym_EQ, anon_sym_PIPE, anon_sym_PLUS, @@ -213645,7 +213405,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(2733), 35, + ACTIONS(2301), 35, + anon_sym_SEMI, anon_sym_DOT, anon_sym_as, anon_sym_LBRACE, @@ -213656,10 +213417,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, @@ -213681,15 +213440,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_EQ, anon_sym_PIPE_EQ, anon_sym_CARET_EQ, - [27765] = 5, + anon_sym_COLON_EQ, + [27365] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - STATE(1973), 2, + ACTIONS(1894), 2, + anon_sym_LBRACE, + anon_sym_LBRACK, + STATE(1968), 2, sym_line_comment, sym_block_comment, - ACTIONS(2798), 18, + ACTIONS(1889), 18, anon_sym_EQ, anon_sym_PIPE, anon_sym_PLUS, @@ -213708,21 +213471,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(2796), 35, + ACTIONS(1887), 33, + anon_sym_SEMI, anon_sym_DOT, anon_sym_as, - anon_sym_LBRACE, anon_sym_COMMA, anon_sym_LPAREN, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - anon_sym_LBRACK, - anon_sym_COLON, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_LT_DASH, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_or, @@ -213744,15 +213504,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_EQ, anon_sym_PIPE_EQ, anon_sym_CARET_EQ, - [27833] = 5, + anon_sym_COLON_EQ, + [27435] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - STATE(1974), 2, + STATE(1969), 2, sym_line_comment, sym_block_comment, - ACTIONS(2731), 18, + ACTIONS(2191), 18, anon_sym_EQ, anon_sym_PIPE, anon_sym_PLUS, @@ -213771,7 +213532,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(2729), 35, + ACTIONS(2189), 35, + anon_sym_SEMI, anon_sym_DOT, anon_sym_as, anon_sym_LBRACE, @@ -213782,10 +213544,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, @@ -213807,15 +213567,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_EQ, anon_sym_PIPE_EQ, anon_sym_CARET_EQ, - [27901] = 5, + anon_sym_COLON_EQ, + [27503] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - STATE(1975), 2, + STATE(1970), 2, sym_line_comment, sym_block_comment, - ACTIONS(2289), 18, + ACTIONS(2297), 18, anon_sym_EQ, anon_sym_PIPE, anon_sym_PLUS, @@ -213834,7 +213595,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(2287), 35, + ACTIONS(2295), 35, + anon_sym_SEMI, anon_sym_DOT, anon_sym_as, anon_sym_LBRACE, @@ -213845,10 +213607,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, @@ -213870,15 +213630,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_EQ, anon_sym_PIPE_EQ, anon_sym_CARET_EQ, - [27969] = 5, + anon_sym_COLON_EQ, + [27571] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - STATE(1976), 2, + STATE(1971), 2, sym_line_comment, sym_block_comment, - ACTIONS(2647), 18, + ACTIONS(2538), 18, anon_sym_EQ, anon_sym_PIPE, anon_sym_PLUS, @@ -213897,7 +213658,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(2645), 35, + ACTIONS(2536), 35, anon_sym_SEMI, anon_sym_DOT, anon_sym_as, @@ -213933,15 +213694,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [28037] = 5, + [27639] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - STATE(1977), 2, + STATE(1972), 2, sym_line_comment, sym_block_comment, - ACTIONS(2655), 18, + ACTIONS(2293), 18, anon_sym_EQ, anon_sym_PIPE, anon_sym_PLUS, @@ -213960,7 +213721,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(2653), 35, + ACTIONS(2291), 35, anon_sym_SEMI, anon_sym_DOT, anon_sym_as, @@ -213996,15 +213757,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [28105] = 5, + [27707] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - STATE(1978), 2, + STATE(1973), 2, sym_line_comment, sym_block_comment, - ACTIONS(2667), 18, + ACTIONS(2668), 18, anon_sym_EQ, anon_sym_PIPE, anon_sym_PLUS, @@ -214023,7 +213784,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(2665), 35, + ACTIONS(2666), 35, anon_sym_SEMI, anon_sym_DOT, anon_sym_as, @@ -214059,15 +213820,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [28173] = 5, + [27775] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - STATE(1979), 2, + STATE(1974), 2, sym_line_comment, sym_block_comment, - ACTIONS(2681), 18, + ACTIONS(2211), 18, anon_sym_EQ, anon_sym_PIPE, anon_sym_PLUS, @@ -214086,7 +213847,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(2209), 35, anon_sym_SEMI, anon_sym_DOT, anon_sym_as, @@ -214122,15 +213883,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [28241] = 5, + [27843] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - STATE(1980), 2, + STATE(1975), 2, sym_line_comment, sym_block_comment, - ACTIONS(2745), 18, + ACTIONS(2203), 18, anon_sym_EQ, anon_sym_PIPE, anon_sym_PLUS, @@ -214149,7 +213910,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(2743), 35, + ACTIONS(2201), 35, anon_sym_SEMI, anon_sym_DOT, anon_sym_as, @@ -214185,15 +213946,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [28309] = 5, + [27911] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - STATE(1981), 2, + STATE(1976), 2, sym_line_comment, sym_block_comment, - ACTIONS(2749), 18, + ACTIONS(2890), 18, anon_sym_EQ, anon_sym_PIPE, anon_sym_PLUS, @@ -214212,8 +213973,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(2747), 35, - anon_sym_SEMI, + ACTIONS(2888), 35, anon_sym_DOT, anon_sym_as, anon_sym_LBRACE, @@ -214224,8 +213984,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, @@ -214247,16 +214009,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_EQ, anon_sym_PIPE_EQ, anon_sym_CARET_EQ, - anon_sym_COLON_EQ, - [28377] = 5, + [27979] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - STATE(1982), 2, + STATE(1977), 2, sym_line_comment, sym_block_comment, - ACTIONS(2772), 18, + ACTIONS(2307), 18, anon_sym_EQ, anon_sym_PIPE, anon_sym_PLUS, @@ -214275,7 +214036,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(2770), 35, + ACTIONS(2305), 35, anon_sym_SEMI, anon_sym_DOT, anon_sym_as, @@ -214311,15 +214072,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [28445] = 5, + [28047] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - STATE(1983), 2, + STATE(1978), 2, sym_line_comment, sym_block_comment, - ACTIONS(2916), 18, + ACTIONS(2688), 18, anon_sym_EQ, anon_sym_PIPE, anon_sym_PLUS, @@ -214338,8 +214099,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(2914), 35, - anon_sym_SEMI, + ACTIONS(2686), 35, anon_sym_DOT, anon_sym_as, anon_sym_LBRACE, @@ -214350,8 +214110,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, @@ -214373,16 +214135,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_EQ, anon_sym_PIPE_EQ, anon_sym_CARET_EQ, - anon_sym_COLON_EQ, - [28513] = 5, + [28115] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - STATE(1984), 2, + STATE(1979), 2, sym_line_comment, sym_block_comment, - ACTIONS(1951), 18, + ACTIONS(2538), 18, anon_sym_EQ, anon_sym_PIPE, anon_sym_PLUS, @@ -214401,7 +214162,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(1953), 35, + ACTIONS(2536), 35, anon_sym_DOT, anon_sym_as, anon_sym_LBRACE, @@ -214437,15 +214198,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_EQ, anon_sym_PIPE_EQ, anon_sym_CARET_EQ, - [28581] = 5, + [28183] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - STATE(1985), 2, + STATE(1980), 2, sym_line_comment, sym_block_comment, - ACTIONS(2159), 18, + ACTIONS(2315), 18, anon_sym_EQ, anon_sym_PIPE, anon_sym_PLUS, @@ -214464,7 +214225,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(2157), 35, + ACTIONS(2313), 35, + anon_sym_SEMI, anon_sym_DOT, anon_sym_as, anon_sym_LBRACE, @@ -214475,10 +214237,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, @@ -214500,15 +214260,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_EQ, anon_sym_PIPE_EQ, anon_sym_CARET_EQ, - [28649] = 5, + anon_sym_COLON_EQ, + [28251] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - STATE(1986), 2, + STATE(1981), 2, sym_line_comment, sym_block_comment, - ACTIONS(2309), 18, + ACTIONS(2463), 18, anon_sym_EQ, anon_sym_PIPE, anon_sym_PLUS, @@ -214527,7 +214288,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(2307), 35, + ACTIONS(2461), 35, + anon_sym_SEMI, anon_sym_DOT, anon_sym_as, anon_sym_LBRACE, @@ -214538,10 +214300,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, @@ -214563,15 +214323,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_EQ, anon_sym_PIPE_EQ, anon_sym_CARET_EQ, - [28717] = 5, + anon_sym_COLON_EQ, + [28319] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - STATE(1987), 2, + STATE(1982), 2, sym_line_comment, sym_block_comment, - ACTIONS(2511), 18, + ACTIONS(3050), 18, anon_sym_EQ, anon_sym_PIPE, anon_sym_PLUS, @@ -214590,8 +214351,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(2509), 35, - anon_sym_SEMI, + ACTIONS(3048), 35, anon_sym_DOT, anon_sym_as, anon_sym_LBRACE, @@ -214602,8 +214362,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, @@ -214625,22 +214387,57 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_EQ, anon_sym_PIPE_EQ, anon_sym_CARET_EQ, - anon_sym_COLON_EQ, - [28785] = 7, + [28387] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(2251), 1, - anon_sym_EQ, - STATE(1988), 2, + STATE(1983), 2, sym_line_comment, sym_block_comment, - ACTIONS(2249), 16, + ACTIONS(2910), 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(2908), 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, @@ -214653,7 +214450,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_EQ, anon_sym_PIPE_EQ, anon_sym_CARET_EQ, - ACTIONS(2253), 17, + [28455] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + STATE(1984), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(2886), 18, + anon_sym_EQ, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, @@ -214671,17 +214477,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(2256), 19, + ACTIONS(2884), 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, @@ -214691,15 +214501,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [28857] = 5, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_AMP_CARET_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_PIPE_EQ, + anon_sym_CARET_EQ, + [28523] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - STATE(1989), 2, + STATE(1985), 2, sym_line_comment, sym_block_comment, - ACTIONS(2117), 18, + ACTIONS(2467), 18, anon_sym_EQ, anon_sym_PIPE, anon_sym_PLUS, @@ -214718,7 +214540,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(2115), 35, + ACTIONS(2465), 35, anon_sym_SEMI, anon_sym_DOT, anon_sym_as, @@ -214754,15 +214576,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [28925] = 5, + [28591] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - STATE(1990), 2, + STATE(1986), 2, sym_line_comment, sym_block_comment, - ACTIONS(2920), 18, + ACTIONS(2680), 18, anon_sym_EQ, anon_sym_PIPE, anon_sym_PLUS, @@ -214781,7 +214603,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(2918), 35, + ACTIONS(2678), 35, anon_sym_SEMI, anon_sym_DOT, anon_sym_as, @@ -214817,15 +214639,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [28993] = 5, + [28659] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - STATE(1991), 2, + STATE(1987), 2, sym_line_comment, sym_block_comment, - ACTIONS(2900), 18, + ACTIONS(2684), 18, anon_sym_EQ, anon_sym_PIPE, anon_sym_PLUS, @@ -214844,7 +214666,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(2898), 35, + ACTIONS(2682), 35, anon_sym_SEMI, anon_sym_DOT, anon_sym_as, @@ -214880,15 +214702,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [29061] = 5, + [28727] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - STATE(1992), 2, + STATE(1988), 2, sym_line_comment, sym_block_comment, - ACTIONS(2872), 18, + ACTIONS(2505), 18, anon_sym_EQ, anon_sym_PIPE, anon_sym_PLUS, @@ -214907,7 +214729,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(2870), 35, + ACTIONS(2503), 35, anon_sym_SEMI, anon_sym_DOT, anon_sym_as, @@ -214943,15 +214765,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [29129] = 5, + [28795] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - STATE(1993), 2, + STATE(1989), 2, sym_line_comment, sym_block_comment, - ACTIONS(2487), 18, + ACTIONS(2688), 18, anon_sym_EQ, anon_sym_PIPE, anon_sym_PLUS, @@ -214970,7 +214792,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(2485), 35, + ACTIONS(2686), 35, + anon_sym_SEMI, anon_sym_DOT, anon_sym_as, anon_sym_LBRACE, @@ -214981,10 +214804,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, @@ -215006,15 +214827,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_EQ, anon_sym_PIPE_EQ, anon_sym_CARET_EQ, - [29197] = 5, + anon_sym_COLON_EQ, + [28863] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - STATE(1994), 2, + STATE(1990), 2, sym_line_comment, sym_block_comment, - ACTIONS(2473), 18, + ACTIONS(2696), 18, anon_sym_EQ, anon_sym_PIPE, anon_sym_PLUS, @@ -215033,7 +214855,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(2471), 35, + ACTIONS(2694), 35, + anon_sym_SEMI, anon_sym_DOT, anon_sym_as, anon_sym_LBRACE, @@ -215044,10 +214867,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, @@ -215069,15 +214890,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_EQ, anon_sym_PIPE_EQ, anon_sym_CARET_EQ, - [29265] = 5, + anon_sym_COLON_EQ, + [28931] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - STATE(1995), 2, + STATE(1991), 2, sym_line_comment, sym_block_comment, - ACTIONS(2353), 18, + ACTIONS(2854), 18, anon_sym_EQ, anon_sym_PIPE, anon_sym_PLUS, @@ -215096,7 +214918,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(2351), 35, + ACTIONS(2852), 35, + anon_sym_SEMI, anon_sym_DOT, anon_sym_as, anon_sym_LBRACE, @@ -215107,10 +214930,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, @@ -215132,15 +214953,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_EQ, anon_sym_PIPE_EQ, anon_sym_CARET_EQ, - [29333] = 5, + anon_sym_COLON_EQ, + [28999] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - STATE(1996), 2, + STATE(1992), 2, sym_line_comment, sym_block_comment, - ACTIONS(2816), 18, + ACTIONS(2143), 18, anon_sym_EQ, anon_sym_PIPE, anon_sym_PLUS, @@ -215159,7 +214981,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(2814), 35, + ACTIONS(2141), 35, anon_sym_SEMI, anon_sym_DOT, anon_sym_as, @@ -215195,15 +215017,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [29401] = 5, + [29067] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - STATE(1997), 2, + STATE(1993), 2, sym_line_comment, sym_block_comment, - ACTIONS(2267), 18, + ACTIONS(2692), 18, anon_sym_EQ, anon_sym_PIPE, anon_sym_PLUS, @@ -215222,7 +215044,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(2265), 35, + ACTIONS(2690), 35, + anon_sym_SEMI, anon_sym_DOT, anon_sym_as, anon_sym_LBRACE, @@ -215233,10 +215056,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, @@ -215258,15 +215079,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_EQ, anon_sym_PIPE_EQ, anon_sym_CARET_EQ, - [29469] = 5, + anon_sym_COLON_EQ, + [29135] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - STATE(1998), 2, + STATE(1994), 2, sym_line_comment, sym_block_comment, - ACTIONS(2810), 18, + ACTIONS(2858), 18, anon_sym_EQ, anon_sym_PIPE, anon_sym_PLUS, @@ -215285,7 +215107,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(2808), 35, + ACTIONS(2856), 35, anon_sym_SEMI, anon_sym_DOT, anon_sym_as, @@ -215321,18 +215143,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [29537] = 6, + [29203] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(1856), 2, - anon_sym_LBRACE, - anon_sym_LBRACK, - STATE(1999), 2, + STATE(1995), 2, sym_line_comment, sym_block_comment, - ACTIONS(1851), 18, + ACTIONS(3058), 18, anon_sym_EQ, anon_sym_PIPE, anon_sym_PLUS, @@ -215351,16 +215170,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(1849), 33, + ACTIONS(3056), 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, @@ -215385,17 +215206,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [29607] = 6, + [29271] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(1953), 1, - anon_sym_LBRACE, - STATE(2000), 2, + STATE(1996), 2, sym_line_comment, sym_block_comment, - ACTIONS(1917), 18, + ACTIONS(2443), 18, anon_sym_EQ, anon_sym_PIPE, anon_sym_PLUS, @@ -215414,10 +215233,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(1915), 34, + ACTIONS(2441), 35, anon_sym_SEMI, anon_sym_DOT, anon_sym_as, + anon_sym_LBRACE, anon_sym_COMMA, anon_sym_LPAREN, anon_sym_EQ_EQ, @@ -215449,78 +215269,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [29677] = 5, - ACTIONS(497), 1, + [29339] = 5, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, - ACTIONS(499), 1, + ACTIONS(5), 1, anon_sym_SLASH_STAR, - STATE(2001), 2, + STATE(1997), 2, sym_line_comment, sym_block_comment, - ACTIONS(4810), 5, - anon_sym_LF, - anon_sym_CR, - anon_sym_CR_LF, - anon_sym_SEMI, - anon_sym_COMMA, - ACTIONS(4808), 48, - anon_sym_DOT, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_fn, + ACTIONS(3054), 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, - [29745] = 5, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_GT_GT_GT, + anon_sym_AMP_CARET, + ACTIONS(3052), 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, + [29407] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - STATE(2002), 2, + STATE(1998), 2, sym_line_comment, sym_block_comment, - ACTIONS(1905), 18, + ACTIONS(3044), 18, anon_sym_EQ, anon_sym_PIPE, anon_sym_PLUS, @@ -215539,7 +215359,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(1903), 35, + ACTIONS(3042), 35, anon_sym_SEMI, anon_sym_DOT, anon_sym_as, @@ -215575,15 +215395,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [29813] = 5, + [29475] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - STATE(2003), 2, + STATE(1999), 2, sym_line_comment, sym_block_comment, - ACTIONS(2786), 18, + ACTIONS(2846), 18, anon_sym_EQ, anon_sym_PIPE, anon_sym_PLUS, @@ -215602,7 +215422,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(2784), 35, + ACTIONS(2844), 35, anon_sym_SEMI, anon_sym_DOT, anon_sym_as, @@ -215638,15 +215458,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [29881] = 5, + [29543] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - STATE(2004), 2, + STATE(2000), 2, sym_line_comment, sym_block_comment, - ACTIONS(2768), 18, + ACTIONS(2233), 18, anon_sym_EQ, anon_sym_PIPE, anon_sym_PLUS, @@ -215665,7 +215485,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(2766), 35, + ACTIONS(2231), 35, + anon_sym_SEMI, anon_sym_DOT, anon_sym_as, anon_sym_LBRACE, @@ -215676,10 +215497,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, @@ -215701,15 +215520,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_EQ, anon_sym_PIPE_EQ, anon_sym_CARET_EQ, - [29949] = 5, + anon_sym_COLON_EQ, + [29611] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - STATE(2005), 2, + STATE(2001), 2, sym_line_comment, sym_block_comment, - ACTIONS(2778), 18, + ACTIONS(2449), 18, anon_sym_EQ, anon_sym_PIPE, anon_sym_PLUS, @@ -215728,7 +215548,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(2776), 35, + ACTIONS(2447), 35, + anon_sym_SEMI, anon_sym_DOT, anon_sym_as, anon_sym_LBRACE, @@ -215739,10 +215560,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, @@ -215764,15 +215583,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_EQ, anon_sym_PIPE_EQ, anon_sym_CARET_EQ, - [30017] = 5, + anon_sym_COLON_EQ, + [29679] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - STATE(2006), 2, + STATE(2002), 2, sym_line_comment, sym_block_comment, - ACTIONS(3046), 18, + ACTIONS(2700), 18, anon_sym_EQ, anon_sym_PIPE, anon_sym_PLUS, @@ -215791,8 +215611,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(3044), 35, - anon_sym_SEMI, + ACTIONS(2698), 35, anon_sym_DOT, anon_sym_as, anon_sym_LBRACE, @@ -215803,8 +215622,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, @@ -215826,19 +215647,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_EQ, anon_sym_PIPE_EQ, anon_sym_CARET_EQ, - anon_sym_COLON_EQ, - [30085] = 6, + [29747] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(2249), 2, - anon_sym_SEMI, - anon_sym_LBRACE, - STATE(2007), 2, + STATE(2003), 2, sym_line_comment, sym_block_comment, - ACTIONS(2253), 18, + ACTIONS(1889), 18, anon_sym_EQ, anon_sym_PIPE, anon_sym_PLUS, @@ -215857,9 +215674,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(2256), 33, + ACTIONS(1887), 35, anon_sym_DOT, anon_sym_as, + anon_sym_LBRACE, anon_sym_COMMA, anon_sym_LPAREN, anon_sym_EQ_EQ, @@ -215867,8 +215685,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, @@ -215890,16 +215710,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_EQ, anon_sym_PIPE_EQ, anon_sym_CARET_EQ, - anon_sym_COLON_EQ, - [30155] = 5, + [29815] = 5, + ACTIONS(497), 1, + anon_sym_SLASH_SLASH, + ACTIONS(499), 1, + anon_sym_SLASH_STAR, + STATE(2004), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(4818), 5, + anon_sym_LF, + anon_sym_CR, + anon_sym_CR_LF, + anon_sym_SEMI, + anon_sym_COMMA, + ACTIONS(4816), 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, + [29883] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - STATE(2008), 2, + STATE(2005), 2, sym_line_comment, sym_block_comment, - ACTIONS(2117), 18, + ACTIONS(1881), 18, anon_sym_EQ, anon_sym_PIPE, anon_sym_PLUS, @@ -215918,7 +215800,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(2115), 35, + ACTIONS(1879), 35, anon_sym_DOT, anon_sym_as, anon_sym_LBRACE, @@ -215954,15 +215836,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_EQ, anon_sym_PIPE_EQ, anon_sym_CARET_EQ, - [30223] = 5, + [29951] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - STATE(2009), 2, + STATE(2006), 2, sym_line_comment, sym_block_comment, - ACTIONS(2868), 18, + ACTIONS(2509), 18, anon_sym_EQ, anon_sym_PIPE, anon_sym_PLUS, @@ -215981,7 +215863,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(2866), 35, + ACTIONS(2507), 35, anon_sym_DOT, anon_sym_as, anon_sym_LBRACE, @@ -216017,15 +215899,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_EQ, anon_sym_PIPE_EQ, anon_sym_CARET_EQ, - [30291] = 5, + [30019] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - STATE(2010), 2, + STATE(2007), 2, sym_line_comment, sym_block_comment, - ACTIONS(2483), 18, + ACTIONS(2910), 18, anon_sym_EQ, anon_sym_PIPE, anon_sym_PLUS, @@ -216044,7 +215926,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(2481), 35, + ACTIONS(2908), 35, anon_sym_SEMI, anon_sym_DOT, anon_sym_as, @@ -216080,15 +215962,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [30359] = 5, + [30087] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - STATE(2011), 2, + STATE(2008), 2, sym_line_comment, sym_block_comment, - ACTIONS(3046), 18, + ACTIONS(3050), 18, anon_sym_EQ, anon_sym_PIPE, anon_sym_PLUS, @@ -216107,7 +215989,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(3044), 35, + ACTIONS(3048), 35, + anon_sym_SEMI, anon_sym_DOT, anon_sym_as, anon_sym_LBRACE, @@ -216118,10 +216001,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, @@ -216143,16 +216024,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_EQ, anon_sym_PIPE_EQ, anon_sym_CARET_EQ, - [30427] = 5, + anon_sym_COLON_EQ, + [30155] = 7, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - STATE(2012), 2, + ACTIONS(2217), 1, + anon_sym_EQ, + STATE(2009), 2, sym_line_comment, sym_block_comment, - ACTIONS(2477), 18, - anon_sym_EQ, + ACTIONS(2215), 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(2219), 17, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, @@ -216170,11 +216070,59 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(2475), 35, - anon_sym_SEMI, + ACTIONS(2222), 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, + [30227] = 6, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(2215), 2, + anon_sym_SEMI, anon_sym_LBRACE, + STATE(2010), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(2219), 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(2222), 33, + anon_sym_DOT, + anon_sym_as, anon_sym_COMMA, anon_sym_LPAREN, anon_sym_EQ_EQ, @@ -216206,15 +216154,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [30495] = 5, + [30297] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - STATE(2013), 2, + STATE(2011), 2, sym_line_comment, sym_block_comment, - ACTIONS(2868), 18, + ACTIONS(2455), 18, anon_sym_EQ, anon_sym_PIPE, anon_sym_PLUS, @@ -216233,7 +216181,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(2866), 35, + ACTIONS(2453), 35, anon_sym_SEMI, anon_sym_DOT, anon_sym_as, @@ -216269,15 +216217,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [30563] = 5, + [30365] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - STATE(2014), 2, + STATE(2012), 2, sym_line_comment, sym_block_comment, - ACTIONS(2850), 18, + ACTIONS(2459), 18, anon_sym_EQ, anon_sym_PIPE, anon_sym_PLUS, @@ -216296,7 +216244,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(2848), 35, + ACTIONS(2457), 35, anon_sym_SEMI, anon_sym_DOT, anon_sym_as, @@ -216332,15 +216280,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [30631] = 5, + [30433] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - STATE(2015), 2, + STATE(2013), 2, sym_line_comment, sym_block_comment, - ACTIONS(2293), 18, + ACTIONS(2710), 18, anon_sym_EQ, anon_sym_PIPE, anon_sym_PLUS, @@ -216359,7 +216307,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(2291), 35, + ACTIONS(2708), 35, anon_sym_DOT, anon_sym_as, anon_sym_LBRACE, @@ -216395,15 +216343,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_EQ, anon_sym_PIPE_EQ, anon_sym_CARET_EQ, - [30699] = 5, + [30501] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - STATE(2016), 2, + STATE(2014), 2, sym_line_comment, sym_block_comment, - ACTIONS(2121), 18, + ACTIONS(2676), 18, anon_sym_EQ, anon_sym_PIPE, anon_sym_PLUS, @@ -216422,7 +216370,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(2119), 35, + ACTIONS(2674), 35, anon_sym_DOT, anon_sym_as, anon_sym_LBRACE, @@ -216458,15 +216406,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_EQ, anon_sym_PIPE_EQ, anon_sym_CARET_EQ, - [30767] = 5, + [30569] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - STATE(2017), 2, + STATE(2015), 2, sym_line_comment, sym_block_comment, - ACTIONS(2663), 18, + ACTIONS(2714), 18, anon_sym_EQ, anon_sym_PIPE, anon_sym_PLUS, @@ -216485,7 +216433,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(2661), 35, + ACTIONS(2712), 35, anon_sym_DOT, anon_sym_as, anon_sym_LBRACE, @@ -216521,15 +216469,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_EQ, anon_sym_PIPE_EQ, anon_sym_CARET_EQ, - [30835] = 5, + [30637] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - STATE(2018), 2, + STATE(2016), 2, sym_line_comment, sym_block_comment, - ACTIONS(2315), 18, + ACTIONS(2137), 18, anon_sym_EQ, anon_sym_PIPE, anon_sym_PLUS, @@ -216548,8 +216496,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(2313), 35, - anon_sym_SEMI, + ACTIONS(2135), 35, anon_sym_DOT, anon_sym_as, anon_sym_LBRACE, @@ -216560,8 +216507,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, @@ -216583,16 +216532,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_EQ, anon_sym_PIPE_EQ, anon_sym_CARET_EQ, - anon_sym_COLON_EQ, - [30903] = 5, + [30705] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - STATE(2019), 2, + STATE(2017), 2, sym_line_comment, sym_block_comment, - ACTIONS(2253), 18, + ACTIONS(2672), 18, anon_sym_EQ, anon_sym_PIPE, anon_sym_PLUS, @@ -216611,7 +216559,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(2256), 35, + ACTIONS(2670), 35, anon_sym_SEMI, anon_sym_DOT, anon_sym_as, @@ -216647,15 +216595,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [30971] = 5, + [30773] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - STATE(2020), 2, + STATE(2018), 2, sym_line_comment, sym_block_comment, - ACTIONS(2305), 18, + ACTIONS(2219), 18, anon_sym_EQ, anon_sym_PIPE, anon_sym_PLUS, @@ -216674,7 +216622,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(2303), 35, + ACTIONS(2222), 35, anon_sym_SEMI, anon_sym_DOT, anon_sym_as, @@ -216710,15 +216658,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [31039] = 5, + [30841] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - STATE(2021), 2, + ACTIONS(1894), 1, + anon_sym_DOT, + STATE(2019), 2, sym_line_comment, sym_block_comment, - ACTIONS(1917), 18, + ACTIONS(2475), 18, anon_sym_EQ, anon_sym_PIPE, anon_sym_PLUS, @@ -216737,8 +216687,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(1915), 35, - anon_sym_DOT, + ACTIONS(2473), 34, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -216773,18 +216722,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_EQ, anon_sym_PIPE_EQ, anon_sym_CARET_EQ, - [31107] = 6, + [30911] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(1856), 2, + STATE(2020), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(2736), 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(2734), 35, + anon_sym_SEMI, + anon_sym_DOT, + anon_sym_as, anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, anon_sym_LBRACK, - STATE(2022), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_or, + anon_sym_QMARK_DOT, + anon_sym_POUND_LBRACK, + anon_sym_is, + anon_sym_BANGis, + anon_sym_in, + anon_sym_BANGin, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_AMP_CARET_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_PIPE_EQ, + anon_sym_CARET_EQ, + anon_sym_COLON_EQ, + [30979] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + STATE(2021), 2, sym_line_comment, sym_block_comment, - ACTIONS(1851), 18, + ACTIONS(2724), 18, anon_sym_EQ, anon_sym_PIPE, anon_sym_PLUS, @@ -216803,15 +216812,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(1849), 33, + ACTIONS(2722), 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, @@ -216837,17 +216848,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_EQ, anon_sym_PIPE_EQ, anon_sym_CARET_EQ, - [31177] = 6, + [31047] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(1856), 1, - anon_sym_DOT, - STATE(2023), 2, + STATE(2022), 2, sym_line_comment, sym_block_comment, - ACTIONS(2507), 18, + ACTIONS(2740), 18, anon_sym_EQ, anon_sym_PIPE, anon_sym_PLUS, @@ -216866,8 +216875,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(2505), 34, + ACTIONS(2738), 35, anon_sym_SEMI, + anon_sym_DOT, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -216901,15 +216911,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [31247] = 5, + [31115] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - STATE(2024), 2, + STATE(2023), 2, sym_line_comment, sym_block_comment, - ACTIONS(2285), 18, + ACTIONS(2744), 18, anon_sym_EQ, anon_sym_PIPE, anon_sym_PLUS, @@ -216928,8 +216938,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(2283), 35, - anon_sym_SEMI, + ACTIONS(2742), 35, anon_sym_DOT, anon_sym_as, anon_sym_LBRACE, @@ -216940,8 +216949,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, @@ -216963,18 +216974,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_EQ, anon_sym_PIPE_EQ, anon_sym_CARET_EQ, - anon_sym_COLON_EQ, - [31315] = 6, + [31183] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(1856), 1, - anon_sym_DOT, - STATE(2025), 2, + STATE(2024), 2, sym_line_comment, sym_block_comment, - ACTIONS(2507), 18, + ACTIONS(2846), 18, anon_sym_EQ, anon_sym_PIPE, anon_sym_PLUS, @@ -216993,7 +217001,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(2505), 34, + ACTIONS(2844), 35, + anon_sym_DOT, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -217028,15 +217037,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_EQ, anon_sym_PIPE_EQ, anon_sym_CARET_EQ, - [31385] = 5, + [31251] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - STATE(2026), 2, + STATE(2025), 2, sym_line_comment, sym_block_comment, - ACTIONS(3054), 18, + ACTIONS(3044), 18, anon_sym_EQ, anon_sym_PIPE, anon_sym_PLUS, @@ -217055,7 +217064,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(3052), 35, + ACTIONS(3042), 35, anon_sym_DOT, anon_sym_as, anon_sym_LBRACE, @@ -217091,15 +217100,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_EQ, anon_sym_PIPE_EQ, anon_sym_CARET_EQ, - [31453] = 5, + [31319] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - STATE(2027), 2, + STATE(2026), 2, sym_line_comment, sym_block_comment, - ACTIONS(3050), 18, + ACTIONS(2750), 18, anon_sym_EQ, anon_sym_PIPE, anon_sym_PLUS, @@ -217118,7 +217127,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(3048), 35, + ACTIONS(2748), 35, anon_sym_DOT, anon_sym_as, anon_sym_LBRACE, @@ -217154,15 +217163,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_EQ, anon_sym_PIPE_EQ, anon_sym_CARET_EQ, - [31521] = 5, + [31387] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - STATE(2028), 2, + STATE(2027), 2, sym_line_comment, sym_block_comment, - ACTIONS(2315), 18, + ACTIONS(2728), 18, anon_sym_EQ, anon_sym_PIPE, anon_sym_PLUS, @@ -217181,7 +217190,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(2313), 35, + ACTIONS(2726), 35, + anon_sym_SEMI, anon_sym_DOT, anon_sym_as, anon_sym_LBRACE, @@ -217192,10 +217202,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, @@ -217217,15 +217225,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_EQ, anon_sym_PIPE_EQ, anon_sym_CARET_EQ, - [31589] = 5, + anon_sym_COLON_EQ, + [31455] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - STATE(2029), 2, + STATE(2028), 2, sym_line_comment, sym_block_comment, - ACTIONS(1851), 18, + ACTIONS(2840), 18, anon_sym_EQ, anon_sym_PIPE, anon_sym_PLUS, @@ -217244,7 +217253,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(1849), 35, + ACTIONS(2838), 35, anon_sym_SEMI, anon_sym_DOT, anon_sym_as, @@ -217280,15 +217289,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [31657] = 5, + [31523] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - STATE(2030), 2, + STATE(2029), 2, sym_line_comment, sym_block_comment, - ACTIONS(1951), 18, + ACTIONS(2880), 18, anon_sym_EQ, anon_sym_PIPE, anon_sym_PLUS, @@ -217307,8 +217316,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(1953), 35, - anon_sym_SEMI, + ACTIONS(2878), 35, anon_sym_DOT, anon_sym_as, anon_sym_LBRACE, @@ -217319,8 +217327,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, @@ -217342,16 +217352,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_EQ, anon_sym_PIPE_EQ, anon_sym_CARET_EQ, - anon_sym_COLON_EQ, - [31725] = 5, + [31591] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - STATE(2031), 2, + STATE(2030), 2, sym_line_comment, sym_block_comment, - ACTIONS(2293), 18, + ACTIONS(2806), 18, anon_sym_EQ, anon_sym_PIPE, anon_sym_PLUS, @@ -217370,8 +217379,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(2291), 35, - anon_sym_SEMI, + ACTIONS(2804), 35, anon_sym_DOT, anon_sym_as, anon_sym_LBRACE, @@ -217382,8 +217390,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, @@ -217405,16 +217415,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_EQ, anon_sym_PIPE_EQ, anon_sym_CARET_EQ, - anon_sym_COLON_EQ, - [31793] = 5, + [31659] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - STATE(2032), 2, + STATE(2031), 2, sym_line_comment, sym_block_comment, - ACTIONS(2761), 18, + ACTIONS(2191), 18, anon_sym_EQ, anon_sym_PIPE, anon_sym_PLUS, @@ -217433,7 +217442,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(2189), 35, anon_sym_DOT, anon_sym_as, anon_sym_LBRACE, @@ -217469,15 +217478,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_EQ, anon_sym_PIPE_EQ, anon_sym_CARET_EQ, - [31861] = 5, + [31727] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - STATE(2033), 2, + STATE(2032), 2, sym_line_comment, sym_block_comment, - ACTIONS(2247), 18, + ACTIONS(2906), 18, anon_sym_EQ, anon_sym_PIPE, anon_sym_PLUS, @@ -217496,7 +217505,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(2245), 35, + ACTIONS(2904), 35, anon_sym_SEMI, anon_sym_DOT, anon_sym_as, @@ -217532,21 +217541,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [31929] = 7, + [31795] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(1856), 2, + STATE(2033), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(2125), 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(2123), 35, + anon_sym_DOT, + anon_sym_as, anon_sym_LBRACE, - anon_sym_LBRACK, - ACTIONS(4812), 2, anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LBRACK, + anon_sym_COLON, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_LT_DASH, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_or, + anon_sym_QMARK_DOT, + anon_sym_POUND_LBRACK, + anon_sym_is, + anon_sym_BANGis, anon_sym_in, + 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, + [31863] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, STATE(2034), 2, sym_line_comment, sym_block_comment, - ACTIONS(1851), 18, + ACTIONS(1987), 18, anon_sym_EQ, anon_sym_PIPE, anon_sym_PLUS, @@ -217565,17 +217631,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(1849), 31, - anon_sym_SEMI, + ACTIONS(1989), 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, @@ -217583,6 +217653,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, @@ -217596,8 +217667,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, - [32001] = 5, + [31931] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, @@ -217605,7 +217675,7 @@ static const uint16_t ts_small_parse_table[] = { STATE(2035), 2, sym_line_comment, sym_block_comment, - ACTIONS(2239), 18, + ACTIONS(2513), 18, anon_sym_EQ, anon_sym_PIPE, anon_sym_PLUS, @@ -217624,7 +217694,70 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(2237), 35, + ACTIONS(2511), 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, + [31999] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + STATE(2036), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(2700), 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(2698), 35, anon_sym_SEMI, anon_sym_DOT, anon_sym_as, @@ -217660,15 +217793,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [32069] = 5, + [32067] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - STATE(2036), 2, + STATE(2037), 2, sym_line_comment, sym_block_comment, - ACTIONS(2896), 18, + ACTIONS(2211), 18, anon_sym_EQ, anon_sym_PIPE, anon_sym_PLUS, @@ -217687,7 +217820,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(2894), 35, + ACTIONS(2209), 35, anon_sym_DOT, anon_sym_as, anon_sym_LBRACE, @@ -217723,15 +217856,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_EQ, anon_sym_PIPE_EQ, anon_sym_CARET_EQ, - [32137] = 5, + [32135] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - STATE(2037), 2, + STATE(2038), 2, sym_line_comment, sym_block_comment, - ACTIONS(2856), 18, + ACTIONS(2710), 18, anon_sym_EQ, anon_sym_PIPE, anon_sym_PLUS, @@ -217750,7 +217883,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(2854), 35, + ACTIONS(2708), 35, anon_sym_SEMI, anon_sym_DOT, anon_sym_as, @@ -217786,15 +217919,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [32205] = 5, + [32203] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - STATE(2038), 2, + STATE(2039), 2, sym_line_comment, sym_block_comment, - ACTIONS(2888), 18, + ACTIONS(2714), 18, anon_sym_EQ, anon_sym_PIPE, anon_sym_PLUS, @@ -217813,7 +217946,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(2886), 35, + ACTIONS(2712), 35, + anon_sym_SEMI, anon_sym_DOT, anon_sym_as, anon_sym_LBRACE, @@ -217824,10 +217958,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, @@ -217849,15 +217981,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_EQ, anon_sym_PIPE_EQ, anon_sym_CARET_EQ, - [32273] = 5, + anon_sym_COLON_EQ, + [32271] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - STATE(2039), 2, + STATE(2040), 2, sym_line_comment, sym_block_comment, - ACTIONS(2691), 18, + ACTIONS(2137), 18, anon_sym_EQ, anon_sym_PIPE, anon_sym_PLUS, @@ -217876,7 +218009,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(2689), 35, + ACTIONS(2135), 35, + anon_sym_SEMI, anon_sym_DOT, anon_sym_as, anon_sym_LBRACE, @@ -217887,10 +218021,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_LBRACK, - anon_sym_COLON, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_LT_DASH, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_or, @@ -217912,15 +218044,79 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_EQ, anon_sym_PIPE_EQ, anon_sym_CARET_EQ, - [32341] = 5, + anon_sym_COLON_EQ, + [32339] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - STATE(2040), 2, + STATE(2041), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(2886), 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(2884), 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, + [32407] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + STATE(2042), 2, sym_line_comment, sym_block_comment, - ACTIONS(2884), 18, + ACTIONS(2143), 18, anon_sym_EQ, anon_sym_PIPE, anon_sym_PLUS, @@ -217939,7 +218135,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(2882), 35, + ACTIONS(2141), 35, anon_sym_DOT, anon_sym_as, anon_sym_LBRACE, @@ -217975,15 +218171,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_EQ, anon_sym_PIPE_EQ, anon_sym_CARET_EQ, - [32409] = 5, + [32475] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - STATE(2041), 2, + STATE(2043), 2, sym_line_comment, sym_block_comment, - ACTIONS(3054), 18, + ACTIONS(2724), 18, anon_sym_EQ, anon_sym_PIPE, anon_sym_PLUS, @@ -218002,7 +218198,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(3052), 35, + ACTIONS(2722), 35, anon_sym_SEMI, anon_sym_DOT, anon_sym_as, @@ -218038,20 +218234,57 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [32477] = 7, + [32543] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(2251), 1, - anon_sym_EQ, - STATE(2042), 2, + STATE(2044), 2, sym_line_comment, sym_block_comment, - ACTIONS(2249), 16, - anon_sym_SEMI, + ACTIONS(2858), 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(2856), 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, @@ -218064,8 +218297,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_EQ, anon_sym_PIPE_EQ, anon_sym_CARET_EQ, - anon_sym_COLON_EQ, - ACTIONS(2253), 17, + [32611] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + STATE(2045), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(2854), 18, + anon_sym_EQ, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, @@ -218083,17 +218324,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(2256), 19, + ACTIONS(2852), 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, @@ -218103,15 +218348,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [32549] = 5, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_AMP_CARET_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_PIPE_EQ, + anon_sym_CARET_EQ, + [32679] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - STATE(2043), 2, + STATE(2046), 2, sym_line_comment, sym_block_comment, - ACTIONS(3050), 18, + ACTIONS(2744), 18, anon_sym_EQ, anon_sym_PIPE, anon_sym_PLUS, @@ -218130,7 +218387,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(3048), 35, + ACTIONS(2742), 35, anon_sym_SEMI, anon_sym_DOT, anon_sym_as, @@ -218166,15 +218423,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [32617] = 5, + [32747] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - STATE(2044), 2, + STATE(2047), 2, sym_line_comment, sym_block_comment, - ACTIONS(2778), 18, + ACTIONS(3062), 18, anon_sym_EQ, anon_sym_PIPE, anon_sym_PLUS, @@ -218193,8 +218450,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(2776), 35, - anon_sym_SEMI, + ACTIONS(3060), 35, anon_sym_DOT, anon_sym_as, anon_sym_LBRACE, @@ -218205,8 +218461,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, @@ -218228,16 +218486,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_EQ, anon_sym_PIPE_EQ, anon_sym_CARET_EQ, - anon_sym_COLON_EQ, - [32685] = 5, + [32815] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - STATE(2045), 2, + STATE(2048), 2, sym_line_comment, sym_block_comment, - ACTIONS(2761), 18, + ACTIONS(2233), 18, anon_sym_EQ, anon_sym_PIPE, anon_sym_PLUS, @@ -218256,8 +218513,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(2231), 35, anon_sym_DOT, anon_sym_as, anon_sym_LBRACE, @@ -218268,8 +218524,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, @@ -218291,16 +218549,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_EQ, anon_sym_PIPE_EQ, anon_sym_CARET_EQ, - anon_sym_COLON_EQ, - [32753] = 5, + [32883] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - STATE(2046), 2, + STATE(2049), 2, sym_line_comment, sym_block_comment, - ACTIONS(2768), 18, + ACTIONS(2696), 18, anon_sym_EQ, anon_sym_PIPE, anon_sym_PLUS, @@ -218319,8 +218576,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(2766), 35, - anon_sym_SEMI, + ACTIONS(2694), 35, anon_sym_DOT, anon_sym_as, anon_sym_LBRACE, @@ -218331,8 +218587,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, @@ -218354,16 +218612,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_EQ, anon_sym_PIPE_EQ, anon_sym_CARET_EQ, - anon_sym_COLON_EQ, - [32821] = 5, + [32951] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - STATE(2047), 2, + STATE(2050), 2, sym_line_comment, sym_block_comment, - ACTIONS(2691), 18, + ACTIONS(2750), 18, anon_sym_EQ, anon_sym_PIPE, anon_sym_PLUS, @@ -218382,7 +218639,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(2689), 35, + ACTIONS(2748), 35, anon_sym_SEMI, anon_sym_DOT, anon_sym_as, @@ -218418,15 +218675,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [32889] = 5, + [33019] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - STATE(2048), 2, + STATE(2051), 2, sym_line_comment, sym_block_comment, - ACTIONS(2165), 18, + ACTIONS(2505), 18, anon_sym_EQ, anon_sym_PIPE, anon_sym_PLUS, @@ -218445,8 +218702,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(2163), 35, - anon_sym_SEMI, + ACTIONS(2503), 35, anon_sym_DOT, anon_sym_as, anon_sym_LBRACE, @@ -218457,8 +218713,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, @@ -218480,16 +218738,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_EQ, anon_sym_PIPE_EQ, anon_sym_CARET_EQ, - anon_sym_COLON_EQ, - [32957] = 5, + [33087] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - STATE(2049), 2, + STATE(2052), 2, sym_line_comment, sym_block_comment, - ACTIONS(2353), 18, + ACTIONS(2756), 18, anon_sym_EQ, anon_sym_PIPE, anon_sym_PLUS, @@ -218508,7 +218765,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(2351), 35, + ACTIONS(2754), 35, anon_sym_SEMI, anon_sym_DOT, anon_sym_as, @@ -218544,15 +218801,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [33025] = 5, + [33155] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - STATE(2050), 2, + STATE(2053), 2, sym_line_comment, sym_block_comment, - ACTIONS(2473), 18, + ACTIONS(3054), 18, anon_sym_EQ, anon_sym_PIPE, anon_sym_PLUS, @@ -218571,8 +218828,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(2471), 35, - anon_sym_SEMI, + ACTIONS(3052), 35, anon_sym_DOT, anon_sym_as, anon_sym_LBRACE, @@ -218583,8 +218839,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, @@ -218606,16 +218864,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_EQ, anon_sym_PIPE_EQ, anon_sym_CARET_EQ, - anon_sym_COLON_EQ, - [33093] = 5, + [33223] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - STATE(2051), 2, + STATE(2054), 2, sym_line_comment, sym_block_comment, - ACTIONS(2487), 18, + ACTIONS(2768), 18, anon_sym_EQ, anon_sym_PIPE, anon_sym_PLUS, @@ -218634,8 +218891,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(2485), 35, - anon_sym_SEMI, + ACTIONS(2766), 35, anon_sym_DOT, anon_sym_as, anon_sym_LBRACE, @@ -218646,8 +218902,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, @@ -218669,16 +218927,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_EQ, anon_sym_PIPE_EQ, anon_sym_CARET_EQ, - anon_sym_COLON_EQ, - [33161] = 5, + [33291] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - STATE(2052), 2, + STATE(2055), 2, sym_line_comment, sym_block_comment, - ACTIONS(2165), 18, + ACTIONS(2269), 18, anon_sym_EQ, anon_sym_PIPE, anon_sym_PLUS, @@ -218697,7 +218954,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(2163), 35, + ACTIONS(2267), 35, anon_sym_DOT, anon_sym_as, anon_sym_LBRACE, @@ -218733,15 +218990,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_EQ, anon_sym_PIPE_EQ, anon_sym_CARET_EQ, - [33229] = 5, + [33359] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - STATE(2053), 2, + STATE(2056), 2, sym_line_comment, sym_block_comment, - ACTIONS(2267), 18, + ACTIONS(2467), 18, anon_sym_EQ, anon_sym_PIPE, anon_sym_PLUS, @@ -218760,8 +219017,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(2265), 35, - anon_sym_SEMI, + ACTIONS(2465), 35, anon_sym_DOT, anon_sym_as, anon_sym_LBRACE, @@ -218772,8 +219028,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, @@ -218795,16 +219053,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_EQ, anon_sym_PIPE_EQ, anon_sym_CARET_EQ, - anon_sym_COLON_EQ, - [33297] = 5, + [33427] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - STATE(2054), 2, + STATE(2057), 2, sym_line_comment, sym_block_comment, - ACTIONS(2651), 18, + ACTIONS(2463), 18, anon_sym_EQ, anon_sym_PIPE, anon_sym_PLUS, @@ -218823,8 +219080,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(2649), 35, - anon_sym_SEMI, + ACTIONS(2461), 35, anon_sym_DOT, anon_sym_as, anon_sym_LBRACE, @@ -218835,8 +219091,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, @@ -218858,16 +219116,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_EQ, anon_sym_PIPE_EQ, anon_sym_CARET_EQ, - anon_sym_COLON_EQ, - [33365] = 5, + [33495] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - STATE(2055), 2, + STATE(2058), 2, sym_line_comment, sym_block_comment, - ACTIONS(3042), 18, + ACTIONS(3062), 18, anon_sym_EQ, anon_sym_PIPE, anon_sym_PLUS, @@ -218886,7 +219143,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(3040), 35, + ACTIONS(3060), 35, anon_sym_SEMI, anon_sym_DOT, anon_sym_as, @@ -218922,15 +219179,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [33433] = 5, + [33563] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - STATE(2056), 2, + STATE(2059), 2, sym_line_comment, sym_block_comment, - ACTIONS(2892), 18, + ACTIONS(3058), 18, anon_sym_EQ, anon_sym_PIPE, anon_sym_PLUS, @@ -218949,8 +219206,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(2890), 35, - anon_sym_SEMI, + ACTIONS(3056), 35, anon_sym_DOT, anon_sym_as, anon_sym_LBRACE, @@ -218961,8 +219217,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, @@ -218984,16 +219242,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_EQ, anon_sym_PIPE_EQ, anon_sym_CARET_EQ, - anon_sym_COLON_EQ, - [33501] = 5, + [33631] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - STATE(2057), 2, + STATE(2060), 2, sym_line_comment, sym_block_comment, - ACTIONS(2659), 18, + ACTIONS(2203), 18, anon_sym_EQ, anon_sym_PIPE, anon_sym_PLUS, @@ -219012,8 +219269,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(2657), 35, - anon_sym_SEMI, + ACTIONS(2201), 35, anon_sym_DOT, anon_sym_as, anon_sym_LBRACE, @@ -219024,8 +219280,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, @@ -219047,16 +219305,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_EQ, anon_sym_PIPE_EQ, anon_sym_CARET_EQ, - anon_sym_COLON_EQ, - [33569] = 5, + [33699] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - STATE(2058), 2, + STATE(2061), 2, sym_line_comment, sym_block_comment, - ACTIONS(2878), 18, + ACTIONS(1809), 18, anon_sym_EQ, anon_sym_PIPE, anon_sym_PLUS, @@ -219075,8 +219332,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(2876), 35, - anon_sym_SEMI, + ACTIONS(1807), 35, anon_sym_DOT, anon_sym_as, anon_sym_LBRACE, @@ -219087,8 +219343,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, @@ -219110,16 +219368,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_EQ, anon_sym_PIPE_EQ, anon_sym_CARET_EQ, - anon_sym_COLON_EQ, - [33637] = 5, + [33767] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - STATE(2059), 2, + ACTIONS(1894), 2, + anon_sym_LBRACE, + anon_sym_LBRACK, + STATE(2062), 2, sym_line_comment, sym_block_comment, - ACTIONS(2782), 18, + ACTIONS(1889), 18, anon_sym_EQ, anon_sym_PIPE, anon_sym_PLUS, @@ -219138,20 +219398,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(2780), 35, - anon_sym_SEMI, + ACTIONS(1887), 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, @@ -219173,16 +219432,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_EQ, anon_sym_PIPE_EQ, anon_sym_CARET_EQ, - anon_sym_COLON_EQ, - [33705] = 5, + [33837] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - STATE(2060), 2, + STATE(2063), 2, sym_line_comment, sym_block_comment, - ACTIONS(2757), 18, + ACTIONS(2732), 18, anon_sym_EQ, anon_sym_PIPE, anon_sym_PLUS, @@ -219201,8 +219459,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(2755), 35, - anon_sym_SEMI, + ACTIONS(2730), 35, anon_sym_DOT, anon_sym_as, anon_sym_LBRACE, @@ -219213,8 +219470,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, @@ -219236,16 +219495,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_EQ, anon_sym_PIPE_EQ, anon_sym_CARET_EQ, - anon_sym_COLON_EQ, - [33773] = 5, + [33905] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - STATE(2061), 2, + STATE(2064), 2, sym_line_comment, sym_block_comment, - ACTIONS(2753), 18, + ACTIONS(2471), 18, anon_sym_EQ, anon_sym_PIPE, anon_sym_PLUS, @@ -219264,8 +219522,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(2751), 35, - anon_sym_SEMI, + ACTIONS(2469), 35, anon_sym_DOT, anon_sym_as, anon_sym_LBRACE, @@ -219276,8 +219533,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, @@ -219299,20 +219558,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_EQ, anon_sym_PIPE_EQ, anon_sym_CARET_EQ, - anon_sym_COLON_EQ, - [33841] = 7, + [33973] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(1856), 1, - anon_sym_LBRACK, - ACTIONS(2505), 1, - anon_sym_LBRACE, - STATE(2062), 2, + STATE(2065), 2, sym_line_comment, sym_block_comment, - ACTIONS(1851), 18, + ACTIONS(2149), 18, anon_sym_EQ, anon_sym_PIPE, anon_sym_PLUS, @@ -219331,16 +219585,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(1849), 33, + ACTIONS(2147), 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, @@ -219365,15 +219621,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [33913] = 5, + [34041] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - STATE(2063), 2, + STATE(2066), 2, sym_line_comment, sym_block_comment, - ACTIONS(2739), 18, + ACTIONS(2119), 18, anon_sym_EQ, anon_sym_PIPE, anon_sym_PLUS, @@ -219392,8 +219648,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(2737), 35, - anon_sym_SEMI, + ACTIONS(2117), 35, anon_sym_DOT, anon_sym_as, anon_sym_LBRACE, @@ -219404,8 +219659,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, @@ -219427,16 +219684,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_EQ, anon_sym_PIPE_EQ, anon_sym_CARET_EQ, - anon_sym_COLON_EQ, - [33981] = 5, + [34109] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - STATE(2064), 2, + STATE(2067), 2, sym_line_comment, sym_block_comment, - ACTIONS(3042), 18, + ACTIONS(2740), 18, anon_sym_EQ, anon_sym_PIPE, anon_sym_PLUS, @@ -219455,7 +219711,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(3040), 35, + ACTIONS(2738), 35, anon_sym_DOT, anon_sym_as, anon_sym_LBRACE, @@ -219491,15 +219747,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_EQ, anon_sym_PIPE_EQ, anon_sym_CARET_EQ, - [34049] = 5, + [34177] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - STATE(2065), 2, + STATE(2068), 2, sym_line_comment, sym_block_comment, - ACTIONS(2892), 18, + ACTIONS(2736), 18, anon_sym_EQ, anon_sym_PIPE, anon_sym_PLUS, @@ -219518,7 +219774,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(2890), 35, + ACTIONS(2734), 35, anon_sym_DOT, anon_sym_as, anon_sym_LBRACE, @@ -219554,15 +219810,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_EQ, anon_sym_PIPE_EQ, anon_sym_CARET_EQ, - [34117] = 5, + [34245] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - STATE(2066), 2, + STATE(2069), 2, sym_line_comment, sym_block_comment, - ACTIONS(2878), 18, + ACTIONS(2672), 18, anon_sym_EQ, anon_sym_PIPE, anon_sym_PLUS, @@ -219581,7 +219837,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(2876), 35, + ACTIONS(2670), 35, anon_sym_DOT, anon_sym_as, anon_sym_LBRACE, @@ -219617,15 +219873,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_EQ, anon_sym_PIPE_EQ, anon_sym_CARET_EQ, - [34185] = 5, + [34313] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - STATE(2067), 2, + STATE(2070), 2, sym_line_comment, sym_block_comment, - ACTIONS(2519), 18, + ACTIONS(2782), 18, anon_sym_EQ, anon_sym_PIPE, anon_sym_PLUS, @@ -219644,8 +219900,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(2517), 35, - anon_sym_SEMI, + ACTIONS(2780), 35, anon_sym_DOT, anon_sym_as, anon_sym_LBRACE, @@ -219656,8 +219911,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, @@ -219679,16 +219936,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_EQ, anon_sym_PIPE_EQ, anon_sym_CARET_EQ, - anon_sym_COLON_EQ, - [34253] = 5, + [34381] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - STATE(2068), 2, + STATE(2071), 2, sym_line_comment, sym_block_comment, - ACTIONS(2515), 18, + ACTIONS(2906), 18, anon_sym_EQ, anon_sym_PIPE, anon_sym_PLUS, @@ -219707,8 +219963,7 @@ 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_SEMI, + ACTIONS(2904), 35, anon_sym_DOT, anon_sym_as, anon_sym_LBRACE, @@ -219719,8 +219974,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, @@ -219742,16 +219999,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_EQ, anon_sym_PIPE_EQ, anon_sym_CARET_EQ, - anon_sym_COLON_EQ, - [34321] = 5, + [34449] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - STATE(2069), 2, + STATE(2072), 2, sym_line_comment, sym_block_comment, - ACTIONS(2309), 18, + ACTIONS(2902), 18, anon_sym_EQ, anon_sym_PIPE, anon_sym_PLUS, @@ -219770,8 +220026,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(2307), 35, - anon_sym_SEMI, + ACTIONS(2900), 35, anon_sym_DOT, anon_sym_as, anon_sym_LBRACE, @@ -219782,8 +220037,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, @@ -219805,16 +220062,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_EQ, anon_sym_PIPE_EQ, anon_sym_CARET_EQ, - anon_sym_COLON_EQ, - [34389] = 5, + [34517] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - STATE(2070), 2, + STATE(2073), 2, sym_line_comment, sym_block_comment, - ACTIONS(2782), 18, + ACTIONS(2459), 18, anon_sym_EQ, anon_sym_PIPE, anon_sym_PLUS, @@ -219833,7 +220089,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(2780), 35, + ACTIONS(2457), 35, anon_sym_DOT, anon_sym_as, anon_sym_LBRACE, @@ -219869,15 +220125,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_EQ, anon_sym_PIPE_EQ, anon_sym_CARET_EQ, - [34457] = 5, + [34585] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - STATE(2071), 2, + STATE(2074), 2, sym_line_comment, sym_block_comment, - ACTIONS(2757), 18, + ACTIONS(2455), 18, anon_sym_EQ, anon_sym_PIPE, anon_sym_PLUS, @@ -219896,7 +220152,7 @@ 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(2453), 35, anon_sym_DOT, anon_sym_as, anon_sym_LBRACE, @@ -219932,15 +220188,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_EQ, anon_sym_PIPE_EQ, anon_sym_CARET_EQ, - [34525] = 5, + [34653] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - STATE(2072), 2, + STATE(2075), 2, sym_line_comment, sym_block_comment, - ACTIONS(2753), 18, + ACTIONS(2449), 18, anon_sym_EQ, anon_sym_PIPE, anon_sym_PLUS, @@ -219959,7 +220215,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(2751), 35, + ACTIONS(2447), 35, anon_sym_DOT, anon_sym_as, anon_sym_LBRACE, @@ -219995,15 +220251,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_EQ, anon_sym_PIPE_EQ, anon_sym_CARET_EQ, - [34593] = 5, + [34721] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - STATE(2073), 2, + STATE(2076), 2, sym_line_comment, sym_block_comment, - ACTIONS(2739), 18, + ACTIONS(2443), 18, anon_sym_EQ, anon_sym_PIPE, anon_sym_PLUS, @@ -220022,7 +220278,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(2737), 35, + ACTIONS(2441), 35, anon_sym_DOT, anon_sym_as, anon_sym_LBRACE, @@ -220058,15 +220314,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_EQ, anon_sym_PIPE_EQ, anon_sym_CARET_EQ, - [34661] = 5, + [34789] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - STATE(2074), 2, + STATE(2077), 2, sym_line_comment, sym_block_comment, - ACTIONS(2159), 18, + ACTIONS(2778), 18, anon_sym_EQ, anon_sym_PIPE, anon_sym_PLUS, @@ -220085,8 +220341,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(2157), 35, - anon_sym_SEMI, + ACTIONS(2776), 35, anon_sym_DOT, anon_sym_as, anon_sym_LBRACE, @@ -220097,8 +220352,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, @@ -220120,16 +220377,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_EQ, anon_sym_PIPE_EQ, anon_sym_CARET_EQ, - anon_sym_COLON_EQ, - [34729] = 5, + [34857] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - STATE(2075), 2, + STATE(2078), 2, sym_line_comment, sym_block_comment, - ACTIONS(2243), 18, + ACTIONS(2772), 18, anon_sym_EQ, anon_sym_PIPE, anon_sym_PLUS, @@ -220148,8 +220404,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(2241), 35, - anon_sym_SEMI, + ACTIONS(2770), 35, anon_sym_DOT, anon_sym_as, anon_sym_LBRACE, @@ -220160,8 +220415,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, @@ -220183,16 +220440,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_EQ, anon_sym_PIPE_EQ, anon_sym_CARET_EQ, - anon_sym_COLON_EQ, - [34797] = 5, + [34925] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - STATE(2076), 2, + STATE(2079), 2, sym_line_comment, sym_block_comment, - ACTIONS(2173), 18, + ACTIONS(2718), 18, anon_sym_EQ, anon_sym_PIPE, anon_sym_PLUS, @@ -220211,8 +220467,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(2171), 35, - anon_sym_SEMI, + ACTIONS(2716), 35, anon_sym_DOT, anon_sym_as, anon_sym_LBRACE, @@ -220223,8 +220478,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, @@ -220246,16 +220503,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_EQ, anon_sym_PIPE_EQ, anon_sym_CARET_EQ, - anon_sym_COLON_EQ, - [34865] = 5, + [34993] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - STATE(2077), 2, + STATE(2080), 2, sym_line_comment, sym_block_comment, - ACTIONS(2519), 18, + ACTIONS(2307), 18, anon_sym_EQ, anon_sym_PIPE, anon_sym_PLUS, @@ -220274,7 +220530,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(2517), 35, + ACTIONS(2305), 35, anon_sym_DOT, anon_sym_as, anon_sym_LBRACE, @@ -220310,15 +220566,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_EQ, anon_sym_PIPE_EQ, anon_sym_CARET_EQ, - [34933] = 5, + [35061] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - STATE(2078), 2, + STATE(2081), 2, sym_line_comment, sym_block_comment, - ACTIONS(2515), 18, + ACTIONS(2293), 18, anon_sym_EQ, anon_sym_PIPE, anon_sym_PLUS, @@ -220337,7 +220593,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(2513), 35, + ACTIONS(2291), 35, anon_sym_DOT, anon_sym_as, anon_sym_LBRACE, @@ -220373,17 +220629,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_EQ, anon_sym_PIPE_EQ, anon_sym_CARET_EQ, - [35001] = 6, + [35129] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(4814), 1, - anon_sym_BANG, - STATE(2079), 2, + STATE(2082), 2, sym_line_comment, sym_block_comment, - ACTIONS(2525), 17, + ACTIONS(2475), 18, anon_sym_EQ, anon_sym_PIPE, anon_sym_PLUS, @@ -220394,6 +220648,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, @@ -220401,8 +220656,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(2523), 35, - anon_sym_SEMI, + ACTIONS(2473), 35, anon_sym_DOT, anon_sym_as, anon_sym_LBRACE, @@ -220413,8 +220667,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, @@ -220436,16 +220692,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_EQ, anon_sym_PIPE_EQ, anon_sym_CARET_EQ, - anon_sym_COLON_EQ, - [35071] = 5, + [35197] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - STATE(2080), 2, + STATE(2083), 2, sym_line_comment, sym_block_comment, - ACTIONS(2731), 18, + ACTIONS(2269), 18, anon_sym_EQ, anon_sym_PIPE, anon_sym_PLUS, @@ -220464,7 +220719,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(2729), 35, + ACTIONS(2267), 35, anon_sym_SEMI, anon_sym_DOT, anon_sym_as, @@ -220500,15 +220755,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [35139] = 5, + [35265] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - STATE(2081), 2, + STATE(2084), 2, sym_line_comment, sym_block_comment, - ACTIONS(2677), 18, + ACTIONS(2229), 18, anon_sym_EQ, anon_sym_PIPE, anon_sym_PLUS, @@ -220527,8 +220782,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(2675), 35, - anon_sym_SEMI, + ACTIONS(2227), 35, anon_sym_DOT, anon_sym_as, anon_sym_LBRACE, @@ -220539,8 +220793,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, @@ -220562,16 +220818,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_EQ, anon_sym_PIPE_EQ, anon_sym_CARET_EQ, - anon_sym_COLON_EQ, - [35207] = 5, + [35333] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - STATE(2082), 2, + STATE(2085), 2, sym_line_comment, sym_block_comment, - ACTIONS(2735), 18, + ACTIONS(2303), 18, anon_sym_EQ, anon_sym_PIPE, anon_sym_PLUS, @@ -220590,8 +220845,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(2733), 35, - anon_sym_SEMI, + ACTIONS(2301), 35, anon_sym_DOT, anon_sym_as, anon_sym_LBRACE, @@ -220602,8 +220856,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, @@ -220625,16 +220881,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_EQ, anon_sym_PIPE_EQ, anon_sym_CARET_EQ, - anon_sym_COLON_EQ, - [35275] = 5, + [35401] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - STATE(2083), 2, + STATE(2086), 2, sym_line_comment, sym_block_comment, - ACTIONS(2794), 18, + ACTIONS(2768), 18, anon_sym_EQ, anon_sym_PIPE, anon_sym_PLUS, @@ -220653,7 +220908,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(2792), 35, + ACTIONS(2766), 35, anon_sym_SEMI, anon_sym_DOT, anon_sym_as, @@ -220689,15 +220944,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [35343] = 5, + [35469] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - STATE(2084), 2, + STATE(2087), 2, sym_line_comment, sym_block_comment, - ACTIONS(2802), 18, + ACTIONS(2756), 18, anon_sym_EQ, anon_sym_PIPE, anon_sym_PLUS, @@ -220716,8 +220971,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(2800), 35, - anon_sym_SEMI, + ACTIONS(2754), 35, anon_sym_DOT, anon_sym_as, anon_sym_LBRACE, @@ -220728,8 +220982,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, @@ -220751,16 +221007,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_EQ, anon_sym_PIPE_EQ, anon_sym_CARET_EQ, - anon_sym_COLON_EQ, - [35411] = 5, + [35537] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - STATE(2085), 2, + STATE(2088), 2, sym_line_comment, sym_block_comment, - ACTIONS(2173), 18, + ACTIONS(2149), 18, anon_sym_EQ, anon_sym_PIPE, anon_sym_PLUS, @@ -220779,7 +221034,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(2171), 35, + ACTIONS(2147), 35, anon_sym_DOT, anon_sym_as, anon_sym_LBRACE, @@ -220815,15 +221070,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_EQ, anon_sym_PIPE_EQ, anon_sym_CARET_EQ, - [35479] = 5, + [35605] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - STATE(2086), 2, + STATE(2089), 2, sym_line_comment, sym_block_comment, - ACTIONS(2806), 18, + ACTIONS(2501), 18, anon_sym_EQ, anon_sym_PIPE, anon_sym_PLUS, @@ -220842,8 +221097,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(2804), 35, - anon_sym_SEMI, + ACTIONS(2499), 35, anon_sym_DOT, anon_sym_as, anon_sym_LBRACE, @@ -220854,8 +221108,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, @@ -220877,16 +221133,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_EQ, anon_sym_PIPE_EQ, anon_sym_CARET_EQ, - anon_sym_COLON_EQ, - [35547] = 5, + [35673] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - STATE(2087), 2, + STATE(2090), 2, sym_line_comment, sym_block_comment, - ACTIONS(2820), 18, + ACTIONS(2924), 18, anon_sym_EQ, anon_sym_PIPE, anon_sym_PLUS, @@ -220905,8 +221160,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(2818), 35, - anon_sym_SEMI, + ACTIONS(2922), 35, anon_sym_DOT, anon_sym_as, anon_sym_LBRACE, @@ -220917,8 +221171,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, @@ -220940,16 +221196,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_EQ, anon_sym_PIPE_EQ, anon_sym_CARET_EQ, - anon_sym_COLON_EQ, - [35615] = 5, + [35741] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - STATE(2088), 2, + STATE(2091), 2, sym_line_comment, sym_block_comment, - ACTIONS(2243), 18, + ACTIONS(2115), 18, anon_sym_EQ, anon_sym_PIPE, anon_sym_PLUS, @@ -220968,7 +221223,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(2241), 35, + ACTIONS(2113), 35, anon_sym_DOT, anon_sym_as, anon_sym_LBRACE, @@ -221004,15 +221259,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_EQ, anon_sym_PIPE_EQ, anon_sym_CARET_EQ, - [35683] = 5, + [35809] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - STATE(2089), 2, + STATE(2092), 2, sym_line_comment, sym_block_comment, - ACTIONS(2824), 18, + ACTIONS(2297), 18, anon_sym_EQ, anon_sym_PIPE, anon_sym_PLUS, @@ -221031,8 +221286,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(2822), 35, - anon_sym_SEMI, + ACTIONS(2295), 35, anon_sym_DOT, anon_sym_as, anon_sym_LBRACE, @@ -221043,8 +221297,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, @@ -221066,16 +221322,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_EQ, anon_sym_PIPE_EQ, anon_sym_CARET_EQ, - anon_sym_COLON_EQ, - [35751] = 5, + [35877] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - STATE(2090), 2, + STATE(2093), 2, sym_line_comment, sym_block_comment, - ACTIONS(2289), 18, + ACTIONS(2850), 18, anon_sym_EQ, anon_sym_PIPE, anon_sym_PLUS, @@ -221094,8 +221349,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(2287), 35, - anon_sym_SEMI, + ACTIONS(2848), 35, anon_sym_DOT, anon_sym_as, anon_sym_LBRACE, @@ -221106,8 +221360,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, @@ -221129,16 +221385,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_EQ, anon_sym_PIPE_EQ, anon_sym_CARET_EQ, - anon_sym_COLON_EQ, - [35819] = 5, + [35945] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - STATE(2091), 2, + STATE(2094), 2, sym_line_comment, sym_block_comment, - ACTIONS(2281), 18, + ACTIONS(1809), 18, anon_sym_EQ, anon_sym_PIPE, anon_sym_PLUS, @@ -221157,7 +221412,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(2279), 35, + ACTIONS(1807), 35, anon_sym_SEMI, anon_sym_DOT, anon_sym_as, @@ -221193,56 +221448,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [35887] = 5, + [36013] = 7, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - STATE(2092), 2, + ACTIONS(2217), 1, + anon_sym_EQ, + STATE(2095), 2, sym_line_comment, sym_block_comment, - ACTIONS(2233), 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(2231), 35, + ACTIONS(2215), 16, anon_sym_SEMI, - anon_sym_DOT, - anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_LBRACK, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_or, - anon_sym_QMARK_DOT, - anon_sym_POUND_LBRACK, - anon_sym_is, - anon_sym_BANGis, - anon_sym_in, - anon_sym_BANGin, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, @@ -221256,16 +221475,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [35955] = 5, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_STAR, - STATE(2093), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(2229), 18, - anon_sym_EQ, + ACTIONS(2219), 17, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, @@ -221283,12 +221493,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(2227), 35, - anon_sym_SEMI, + ACTIONS(2222), 19, anon_sym_DOT, anon_sym_as, - anon_sym_LBRACE, - anon_sym_COMMA, anon_sym_LPAREN, anon_sym_EQ_EQ, anon_sym_BANG_EQ, @@ -221306,28 +221513,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_AMP_CARET_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, - anon_sym_COLON_EQ, - [36023] = 5, + [36085] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - STATE(2094), 2, + STATE(2096), 2, sym_line_comment, sym_block_comment, - ACTIONS(2836), 18, + ACTIONS(2475), 18, anon_sym_EQ, anon_sym_PIPE, anon_sym_PLUS, @@ -221346,7 +221540,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(2834), 35, + ACTIONS(2473), 35, anon_sym_SEMI, anon_sym_DOT, anon_sym_as, @@ -221382,15 +221576,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [36091] = 5, + [36153] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - STATE(2095), 2, + STATE(2097), 2, sym_line_comment, sym_block_comment, - ACTIONS(2908), 18, + ACTIONS(2772), 18, anon_sym_EQ, anon_sym_PIPE, anon_sym_PLUS, @@ -221409,7 +221603,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(2906), 35, + ACTIONS(2770), 35, anon_sym_SEMI, anon_sym_DOT, anon_sym_as, @@ -221445,15 +221639,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [36159] = 5, + [36221] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - STATE(2096), 2, + STATE(2098), 2, sym_line_comment, sym_block_comment, - ACTIONS(2904), 18, + ACTIONS(3068), 18, anon_sym_EQ, anon_sym_PIPE, anon_sym_PLUS, @@ -221472,8 +221666,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(2902), 35, - anon_sym_SEMI, + ACTIONS(3066), 35, anon_sym_DOT, anon_sym_as, anon_sym_LBRACE, @@ -221484,8 +221677,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, @@ -221507,16 +221702,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_EQ, anon_sym_PIPE_EQ, anon_sym_CARET_EQ, - anon_sym_COLON_EQ, - [36227] = 5, + [36289] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - STATE(2097), 2, + ACTIONS(4820), 1, + anon_sym_LBRACE, + STATE(2099), 2, sym_line_comment, sym_block_comment, - ACTIONS(2790), 18, + ACTIONS(2513), 18, anon_sym_EQ, anon_sym_PIPE, anon_sym_PLUS, @@ -221535,11 +221731,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(2788), 35, + ACTIONS(2511), 34, anon_sym_SEMI, anon_sym_DOT, anon_sym_as, - anon_sym_LBRACE, anon_sym_COMMA, anon_sym_LPAREN, anon_sym_EQ_EQ, @@ -221571,15 +221766,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [36295] = 5, + [36359] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - STATE(2098), 2, + STATE(2100), 2, sym_line_comment, sym_block_comment, - ACTIONS(2884), 18, + ACTIONS(2778), 18, anon_sym_EQ, anon_sym_PIPE, anon_sym_PLUS, @@ -221598,7 +221793,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(2882), 35, + ACTIONS(2776), 35, anon_sym_SEMI, anon_sym_DOT, anon_sym_as, @@ -221634,17 +221829,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [36363] = 6, + [36427] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(4816), 1, - anon_sym_BANG, - STATE(2099), 2, + STATE(2101), 2, sym_line_comment, sym_block_comment, - ACTIONS(2525), 17, + ACTIONS(1889), 18, anon_sym_EQ, anon_sym_PIPE, anon_sym_PLUS, @@ -221655,6 +221848,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, @@ -221662,7 +221856,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(2523), 35, + ACTIONS(1887), 35, + anon_sym_SEMI, anon_sym_DOT, anon_sym_as, anon_sym_LBRACE, @@ -221673,10 +221868,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, @@ -221698,15 +221891,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_EQ, anon_sym_PIPE_EQ, anon_sym_CARET_EQ, - [36433] = 5, + anon_sym_COLON_EQ, + [36495] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - STATE(2100), 2, + ACTIONS(4822), 1, + anon_sym_BANG, + STATE(2102), 2, sym_line_comment, sym_block_comment, - ACTIONS(2888), 18, + ACTIONS(2542), 17, anon_sym_EQ, anon_sym_PIPE, anon_sym_PLUS, @@ -221717,7 +221913,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, @@ -221725,8 +221920,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(2886), 35, - anon_sym_SEMI, + ACTIONS(2540), 35, anon_sym_DOT, anon_sym_as, anon_sym_LBRACE, @@ -221737,8 +221931,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, @@ -221760,16 +221956,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_EQ, anon_sym_PIPE_EQ, anon_sym_CARET_EQ, - anon_sym_COLON_EQ, - [36501] = 5, + [36565] = 7, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - STATE(2101), 2, + ACTIONS(1894), 2, + anon_sym_LBRACE, + anon_sym_LBRACK, + ACTIONS(4824), 2, + anon_sym_COMMA, + anon_sym_in, + STATE(2103), 2, sym_line_comment, sym_block_comment, - ACTIONS(2896), 18, + ACTIONS(1889), 18, anon_sym_EQ, anon_sym_PIPE, anon_sym_PLUS, @@ -221788,18 +221989,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(2894), 35, + ACTIONS(1887), 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, @@ -221809,7 +222007,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, @@ -221824,15 +222021,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [36569] = 5, + [36637] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - STATE(2102), 2, + STATE(2104), 2, sym_line_comment, sym_block_comment, - ACTIONS(3062), 18, + ACTIONS(2862), 18, anon_sym_EQ, anon_sym_PIPE, anon_sym_PLUS, @@ -221851,8 +222048,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(3060), 35, - anon_sym_SEMI, + ACTIONS(2860), 35, anon_sym_DOT, anon_sym_as, anon_sym_LBRACE, @@ -221863,8 +222059,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, @@ -221886,18 +222084,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_EQ, anon_sym_PIPE_EQ, anon_sym_CARET_EQ, - anon_sym_COLON_EQ, - [36637] = 6, + [36705] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(1953), 1, - anon_sym_LBRACE, - STATE(2103), 2, + STATE(2105), 2, sym_line_comment, sym_block_comment, - ACTIONS(2663), 18, + ACTIONS(2315), 18, anon_sym_EQ, anon_sym_PIPE, anon_sym_PLUS, @@ -221916,10 +222111,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(2661), 34, - anon_sym_SEMI, + ACTIONS(2313), 35, anon_sym_DOT, anon_sym_as, + anon_sym_LBRACE, anon_sym_COMMA, anon_sym_LPAREN, anon_sym_EQ_EQ, @@ -221927,8 +222122,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, @@ -221950,16 +222147,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_EQ, anon_sym_PIPE_EQ, anon_sym_CARET_EQ, - anon_sym_COLON_EQ, - [36707] = 5, + [36773] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - STATE(2104), 2, + ACTIONS(1989), 1, + anon_sym_LBRACE, + STATE(2106), 2, sym_line_comment, sym_block_comment, - ACTIONS(2121), 18, + ACTIONS(2676), 18, anon_sym_EQ, anon_sym_PIPE, anon_sym_PLUS, @@ -221978,11 +222176,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(2119), 35, + ACTIONS(2674), 34, anon_sym_SEMI, anon_sym_DOT, anon_sym_as, - anon_sym_LBRACE, anon_sym_COMMA, anon_sym_LPAREN, anon_sym_EQ_EQ, @@ -222014,15 +222211,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [36775] = 5, + [36843] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - STATE(2105), 2, + STATE(2107), 2, sym_line_comment, sym_block_comment, - ACTIONS(2305), 18, + ACTIONS(2836), 18, anon_sym_EQ, anon_sym_PIPE, anon_sym_PLUS, @@ -222041,7 +222238,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(2303), 35, + ACTIONS(2834), 35, anon_sym_DOT, anon_sym_as, anon_sym_LBRACE, @@ -222077,15 +222274,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_EQ, anon_sym_PIPE_EQ, anon_sym_CARET_EQ, - [36843] = 5, + [36911] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - STATE(2106), 2, + ACTIONS(1894), 1, + anon_sym_DOT, + STATE(2108), 2, sym_line_comment, sym_block_comment, - ACTIONS(2846), 18, + ACTIONS(2475), 18, anon_sym_EQ, anon_sym_PIPE, anon_sym_PLUS, @@ -222104,9 +222303,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(2844), 35, + ACTIONS(2473), 34, anon_sym_SEMI, - anon_sym_DOT, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -222140,15 +222338,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [36911] = 5, + [36981] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - STATE(2107), 2, + STATE(2109), 2, sym_line_comment, sym_block_comment, - ACTIONS(2285), 18, + ACTIONS(2874), 18, anon_sym_EQ, anon_sym_PIPE, anon_sym_PLUS, @@ -222167,7 +222365,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(2283), 35, + ACTIONS(2872), 35, anon_sym_DOT, anon_sym_as, anon_sym_LBRACE, @@ -222203,15 +222401,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_EQ, anon_sym_PIPE_EQ, anon_sym_CARET_EQ, - [36979] = 5, + [37049] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - STATE(2108), 2, + STATE(2110), 2, sym_line_comment, sym_block_comment, - ACTIONS(2794), 18, + ACTIONS(2902), 18, anon_sym_EQ, anon_sym_PIPE, anon_sym_PLUS, @@ -222230,7 +222428,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(2792), 35, + ACTIONS(2900), 35, + anon_sym_SEMI, anon_sym_DOT, anon_sym_as, anon_sym_LBRACE, @@ -222241,10 +222440,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, @@ -222266,15 +222463,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_EQ, anon_sym_PIPE_EQ, anon_sym_CARET_EQ, - [37047] = 5, + anon_sym_COLON_EQ, + [37117] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - STATE(2109), 2, + STATE(2111), 2, sym_line_comment, sym_block_comment, - ACTIONS(2802), 18, + ACTIONS(2788), 18, anon_sym_EQ, anon_sym_PIPE, anon_sym_PLUS, @@ -222293,7 +222491,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(2800), 35, + ACTIONS(2786), 35, anon_sym_DOT, anon_sym_as, anon_sym_LBRACE, @@ -222329,15 +222527,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_EQ, anon_sym_PIPE_EQ, anon_sym_CARET_EQ, - [37115] = 5, + [37185] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - STATE(2110), 2, + STATE(2112), 2, sym_line_comment, sym_block_comment, - ACTIONS(2806), 18, + ACTIONS(2798), 18, anon_sym_EQ, anon_sym_PIPE, anon_sym_PLUS, @@ -222356,7 +222554,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(2804), 35, + ACTIONS(2796), 35, anon_sym_DOT, anon_sym_as, anon_sym_LBRACE, @@ -222392,15 +222590,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_EQ, anon_sym_PIPE_EQ, anon_sym_CARET_EQ, - [37183] = 5, + [37253] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - STATE(2111), 2, + STATE(2113), 2, sym_line_comment, sym_block_comment, - ACTIONS(2820), 18, + ACTIONS(2802), 18, anon_sym_EQ, anon_sym_PIPE, anon_sym_PLUS, @@ -222419,7 +222617,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(2818), 35, + ACTIONS(2800), 35, anon_sym_DOT, anon_sym_as, anon_sym_LBRACE, @@ -222455,12 +222653,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_EQ, anon_sym_PIPE_EQ, anon_sym_CARET_EQ, - [37251] = 5, + [37321] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - STATE(2112), 2, + STATE(2114), 2, sym_line_comment, sym_block_comment, ACTIONS(2824), 18, @@ -222518,15 +222716,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_EQ, anon_sym_PIPE_EQ, anon_sym_CARET_EQ, - [37319] = 5, + [37389] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - STATE(2113), 2, + STATE(2115), 2, sym_line_comment, sym_block_comment, - ACTIONS(2836), 18, + ACTIONS(2828), 18, anon_sym_EQ, anon_sym_PIPE, anon_sym_PLUS, @@ -222545,7 +222743,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(2834), 35, + ACTIONS(2826), 35, anon_sym_DOT, anon_sym_as, anon_sym_LBRACE, @@ -222581,15 +222779,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_EQ, anon_sym_PIPE_EQ, anon_sym_CARET_EQ, - [37387] = 5, + [37457] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - STATE(2114), 2, + STATE(2116), 2, sym_line_comment, sym_block_comment, - ACTIONS(2153), 24, + ACTIONS(2914), 24, anon_sym_DOT, anon_sym_as, anon_sym_PIPE, @@ -222614,7 +222812,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_chan, anon_sym_thread, anon_sym_atomic, - ACTIONS(2151), 28, + ACTIONS(2912), 28, anon_sym_SEMI, anon_sym_LBRACE, anon_sym_COMMA, @@ -222643,15 +222841,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_EQ, anon_sym_map_LBRACK, anon_sym_DOT_DOT, - [37454] = 5, + [37524] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - STATE(2115), 2, + STATE(2117), 2, sym_line_comment, sym_block_comment, - ACTIONS(2177), 24, + ACTIONS(2918), 24, anon_sym_DOT, anon_sym_as, anon_sym_PIPE, @@ -222676,7 +222874,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_chan, anon_sym_thread, anon_sym_atomic, - ACTIONS(2175), 28, + ACTIONS(2916), 28, anon_sym_SEMI, anon_sym_LBRACE, anon_sym_COMMA, @@ -222705,15 +222903,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_EQ, anon_sym_map_LBRACK, anon_sym_DOT_DOT, - [37521] = 5, + [37591] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - STATE(2116), 2, + STATE(2118), 2, sym_line_comment, sym_block_comment, - ACTIONS(2217), 24, + ACTIONS(2704), 24, anon_sym_DOT, anon_sym_as, anon_sym_PIPE, @@ -222738,7 +222936,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_chan, anon_sym_thread, anon_sym_atomic, - ACTIONS(2215), 28, + ACTIONS(2702), 28, anon_sym_SEMI, anon_sym_LBRACE, anon_sym_COMMA, @@ -222767,15 +222965,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_EQ, anon_sym_map_LBRACK, anon_sym_DOT_DOT, - [37588] = 5, + [37658] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - STATE(2117), 2, + STATE(2119), 2, sym_line_comment, sym_block_comment, - ACTIONS(2225), 24, + ACTIONS(2812), 24, anon_sym_DOT, anon_sym_as, anon_sym_PIPE, @@ -222800,7 +222998,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_chan, anon_sym_thread, anon_sym_atomic, - ACTIONS(2223), 28, + ACTIONS(2810), 28, anon_sym_SEMI, anon_sym_LBRACE, anon_sym_COMMA, @@ -222829,15 +223027,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_EQ, anon_sym_map_LBRACK, anon_sym_DOT_DOT, - [37655] = 5, + [37725] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - STATE(2118), 2, + STATE(2120), 2, sym_line_comment, sym_block_comment, - ACTIONS(2912), 24, + ACTIONS(2870), 24, anon_sym_DOT, anon_sym_as, anon_sym_PIPE, @@ -222862,7 +223060,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_chan, anon_sym_thread, anon_sym_atomic, - ACTIONS(2910), 28, + ACTIONS(2868), 28, anon_sym_SEMI, anon_sym_LBRACE, anon_sym_COMMA, @@ -222891,35 +223089,104 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_EQ, anon_sym_map_LBRACK, anon_sym_DOT_DOT, - [37722] = 13, + [37792] = 13, ACTIONS(497), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, anon_sym_SLASH_STAR, - ACTIONS(4820), 1, + ACTIONS(4828), 1, anon_sym_LPAREN, - ACTIONS(4822), 1, + ACTIONS(4830), 1, anon_sym_LBRACK, - ACTIONS(4824), 1, + ACTIONS(4832), 1, anon_sym_QMARK, - ACTIONS(4826), 1, + ACTIONS(4834), 1, anon_sym_BANG, - STATE(2236), 1, + STATE(2174), 1, + sym_argument_list, + STATE(2176), 1, sym_or_block, - STATE(2238), 1, + STATE(4133), 1, + sym_type_parameters, + ACTIONS(4826), 2, + anon_sym_DOT, + anon_sym_QMARK_DOT, + ACTIONS(4836), 2, + anon_sym_LBRACK2, + anon_sym_POUND_LBRACK, + STATE(2121), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(1785), 40, + anon_sym_LF, + anon_sym_CR, + anon_sym_CR_LF, + anon_sym_SEMI, + anon_sym_as, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym___global, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_LT, + anon_sym_GT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_DOT_DOT_DOT, + anon_sym_pub, + anon_sym_mut, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_GT_GT_GT, + anon_sym_AMP_CARET, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_or, + anon_sym_is, + anon_sym_BANGis, + anon_sym_in, + anon_sym_BANGin, + sym_identifier, + anon_sym_AT_LBRACK, + [37874] = 13, + ACTIONS(497), 1, + anon_sym_SLASH_SLASH, + ACTIONS(499), 1, + anon_sym_SLASH_STAR, + ACTIONS(4828), 1, + anon_sym_LPAREN, + ACTIONS(4830), 1, + anon_sym_LBRACK, + ACTIONS(4832), 1, + anon_sym_QMARK, + ACTIONS(4834), 1, + anon_sym_BANG, + STATE(2174), 1, sym_argument_list, - STATE(4307), 1, + STATE(2176), 1, + sym_or_block, + STATE(4133), 1, sym_type_parameters, - ACTIONS(4818), 2, + ACTIONS(4826), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - ACTIONS(4828), 2, + ACTIONS(4836), 2, anon_sym_LBRACK2, anon_sym_POUND_LBRACK, - STATE(2119), 2, + STATE(2122), 2, sym_line_comment, sym_block_comment, - ACTIONS(1765), 40, + ACTIONS(1769), 40, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -222960,17 +223227,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGin, sym_identifier, anon_sym_AT_LBRACK, - [37804] = 7, + [37956] = 7, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(4832), 1, + ACTIONS(4840), 1, anon_sym_EQ, - STATE(2120), 2, + STATE(2123), 2, sym_line_comment, sym_block_comment, - ACTIONS(4830), 14, + ACTIONS(4838), 14, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_STAR_EQ, @@ -222985,7 +223252,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_EQ, anon_sym_PIPE_EQ, anon_sym_CARET_EQ, - ACTIONS(2778), 17, + ACTIONS(2532), 17, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, @@ -223003,7 +223270,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(2776), 19, + ACTIONS(2530), 19, anon_sym_DOT, anon_sym_as, anon_sym_LPAREN, @@ -223023,104 +223290,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [37874] = 13, + [38026] = 13, ACTIONS(497), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, anon_sym_SLASH_STAR, - ACTIONS(4820), 1, + ACTIONS(4828), 1, anon_sym_LPAREN, - ACTIONS(4822), 1, + ACTIONS(4830), 1, anon_sym_LBRACK, - ACTIONS(4824), 1, + ACTIONS(4832), 1, anon_sym_QMARK, - ACTIONS(4826), 1, + ACTIONS(4834), 1, anon_sym_BANG, - STATE(2236), 1, - sym_or_block, - STATE(2238), 1, + STATE(2174), 1, sym_argument_list, - STATE(4307), 1, - sym_type_parameters, - ACTIONS(4818), 2, - anon_sym_DOT, - anon_sym_QMARK_DOT, - ACTIONS(4828), 2, - anon_sym_LBRACK2, - anon_sym_POUND_LBRACK, - STATE(2121), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(1785), 40, - anon_sym_LF, - anon_sym_CR, - anon_sym_CR_LF, - anon_sym_SEMI, - anon_sym_as, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym___global, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_LT, - anon_sym_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_pub, - anon_sym_mut, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_or, - anon_sym_is, - anon_sym_BANGis, - anon_sym_in, - anon_sym_BANGin, - sym_identifier, - anon_sym_AT_LBRACK, - [37956] = 13, - ACTIONS(497), 1, - anon_sym_SLASH_SLASH, - ACTIONS(499), 1, - anon_sym_SLASH_STAR, - ACTIONS(4820), 1, - anon_sym_LPAREN, - ACTIONS(4822), 1, - anon_sym_LBRACK, - ACTIONS(4824), 1, - anon_sym_QMARK, - ACTIONS(4826), 1, - anon_sym_BANG, - STATE(2236), 1, + STATE(2176), 1, sym_or_block, - STATE(2238), 1, - sym_argument_list, - STATE(4307), 1, + STATE(4133), 1, sym_type_parameters, - ACTIONS(4818), 2, + ACTIONS(4826), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - ACTIONS(4828), 2, + ACTIONS(4836), 2, anon_sym_LBRACK2, anon_sym_POUND_LBRACK, - STATE(2122), 2, + STATE(2124), 2, sym_line_comment, sym_block_comment, - ACTIONS(1777), 40, + ACTIONS(1765), 40, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -223161,21 +223359,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGin, sym_identifier, anon_sym_AT_LBRACK, - [38038] = 7, + [38108] = 7, ACTIONS(497), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, anon_sym_SLASH_STAR, - ACTIONS(1803), 1, + ACTIONS(1797), 1, anon_sym_LBRACK, - ACTIONS(4834), 1, + ACTIONS(4842), 1, anon_sym_else, - STATE(2193), 1, + STATE(2246), 1, sym_else_branch, - STATE(2123), 2, + STATE(2125), 2, sym_line_comment, sym_block_comment, - ACTIONS(1805), 47, + ACTIONS(1799), 47, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -223223,21 +223421,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGin, sym_identifier, anon_sym_AT_LBRACK, - [38107] = 7, + [38177] = 7, ACTIONS(497), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, anon_sym_SLASH_STAR, - ACTIONS(1797), 1, + ACTIONS(1803), 1, anon_sym_LBRACK, - ACTIONS(4834), 1, + ACTIONS(4842), 1, anon_sym_else, - STATE(2195), 1, + STATE(2247), 1, sym_else_branch, - STATE(2124), 2, + STATE(2126), 2, sym_line_comment, sym_block_comment, - ACTIONS(1799), 47, + ACTIONS(1805), 47, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -223285,21 +223483,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGin, sym_identifier, anon_sym_AT_LBRACK, - [38176] = 8, + [38246] = 8, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(4836), 1, - anon_sym_COLON, - ACTIONS(4838), 1, + ACTIONS(2816), 1, anon_sym_static, - ACTIONS(4840), 1, + ACTIONS(2818), 1, anon_sym_volatile, - STATE(2125), 2, + ACTIONS(4844), 1, + anon_sym_COLON, + STATE(2127), 2, sym_line_comment, sym_block_comment, - ACTIONS(4553), 22, + ACTIONS(4559), 22, anon_sym_LBRACE, anon_sym_LPAREN, anon_sym_PLUS, @@ -223322,7 +223520,7 @@ static const uint16_t ts_small_parse_table[] = { sym___c_single_quote, sym___r_double_quote, sym___r_single_quote, - ACTIONS(4551), 25, + ACTIONS(4557), 25, anon_sym_DOT, anon_sym_fn, anon_sym_struct, @@ -223348,140 +223546,136 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_chan, anon_sym_thread, anon_sym_atomic, - [38247] = 7, - ACTIONS(3), 1, + [38317] = 6, + ACTIONS(497), 1, anon_sym_SLASH_SLASH, - ACTIONS(5), 1, + ACTIONS(499), 1, anon_sym_SLASH_STAR, - ACTIONS(4838), 1, - anon_sym_static, - ACTIONS(4840), 1, - anon_sym_volatile, - STATE(2126), 2, + ACTIONS(1894), 1, + anon_sym_LBRACK, + ACTIONS(2475), 1, + anon_sym_LBRACE, + STATE(2128), 2, sym_line_comment, sym_block_comment, - ACTIONS(4553), 22, - anon_sym_LBRACE, + ACTIONS(1889), 47, + anon_sym_LF, + anon_sym_CR, + anon_sym_CR_LF, + anon_sym_SEMI, + anon_sym_DOT, + anon_sym_as, + anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_LPAREN, + anon_sym___global, + anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_LT, + anon_sym_GT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_DOT_DOT_DOT, + anon_sym_pub, + anon_sym_mut, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, anon_sym_QMARK, anon_sym_BANG, - anon_sym_json_DOTdecode, anon_sym_LBRACK2, - anon_sym_TILDE, anon_sym_CARET, anon_sym_AMP, - anon_sym_LT_DASH, - sym_float_literal, - sym_rune_literal, - anon_sym_map_LBRACK, - sym___double_quote, - sym___single_quote, - sym___c_double_quote, - sym___c_single_quote, - sym___r_double_quote, - sym___r_single_quote, - ACTIONS(4551), 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, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_GT_GT_GT, + anon_sym_AMP_CARET, + anon_sym_AMP_AMP, + anon_sym_PIPE_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, - [38315] = 8, - ACTIONS(3), 1, + anon_sym_AT_LBRACK, + [38383] = 5, + ACTIONS(497), 1, anon_sym_SLASH_SLASH, - ACTIONS(5), 1, + ACTIONS(499), 1, anon_sym_SLASH_STAR, - ACTIONS(4838), 1, - anon_sym_static, - ACTIONS(4840), 1, - anon_sym_volatile, - ACTIONS(4842), 1, - sym_identifier, - STATE(2127), 2, + ACTIONS(1807), 1, + anon_sym_LBRACK, + STATE(2129), 2, sym_line_comment, sym_block_comment, - ACTIONS(4553), 22, - anon_sym_LBRACE, + ACTIONS(1809), 48, + anon_sym_LF, + anon_sym_CR, + anon_sym_CR_LF, + anon_sym_SEMI, + anon_sym_DOT, + anon_sym_as, + anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_LPAREN, + anon_sym___global, + anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_LT, + anon_sym_GT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_DOT_DOT_DOT, + anon_sym_pub, + anon_sym_mut, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, anon_sym_QMARK, anon_sym_BANG, - anon_sym_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(4551), 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, - [38385] = 5, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_GT_GT_GT, + anon_sym_AMP_CARET, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_or, + anon_sym_QMARK_DOT, + anon_sym_POUND_LBRACK, + anon_sym_else, + anon_sym_is, + anon_sym_BANGis, + anon_sym_in, + anon_sym_BANGin, + sym_identifier, + anon_sym_AT_LBRACK, + [38447] = 5, ACTIONS(497), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, anon_sym_SLASH_STAR, - ACTIONS(1915), 1, + ACTIONS(1811), 1, anon_sym_LBRACK, - STATE(2128), 2, + STATE(2130), 2, sym_line_comment, sym_block_comment, - ACTIONS(1917), 48, + ACTIONS(1813), 48, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -223523,24 +223717,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_or, anon_sym_QMARK_DOT, anon_sym_POUND_LBRACK, - anon_sym_DOLLARelse, + anon_sym_else, anon_sym_is, anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, sym_identifier, anon_sym_AT_LBRACK, - [38449] = 5, + [38511] = 6, ACTIONS(497), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, anon_sym_SLASH_STAR, - ACTIONS(1843), 1, + ACTIONS(1911), 1, anon_sym_LBRACK, - STATE(2129), 2, + ACTIONS(4846), 1, + anon_sym_DOLLARelse, + STATE(2131), 2, sym_line_comment, sym_block_comment, - ACTIONS(1845), 48, + ACTIONS(1913), 47, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -223582,26 +223778,25 @@ 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, - [38513] = 6, + [38577] = 6, ACTIONS(497), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, anon_sym_SLASH_STAR, - ACTIONS(1856), 1, + ACTIONS(1841), 1, anon_sym_LBRACK, - ACTIONS(2507), 1, - anon_sym_LBRACE, - STATE(2130), 2, + ACTIONS(4848), 1, + anon_sym_DOLLARelse, + STATE(2132), 2, sym_line_comment, sym_block_comment, - ACTIONS(1851), 47, + ACTIONS(1843), 47, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -223649,80 +223844,140 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGin, sym_identifier, anon_sym_AT_LBRACK, - [38579] = 5, - ACTIONS(3), 1, + [38643] = 5, + ACTIONS(497), 1, anon_sym_SLASH_SLASH, - ACTIONS(5), 1, + ACTIONS(499), 1, anon_sym_SLASH_STAR, - STATE(2131), 2, + ACTIONS(1811), 1, + anon_sym_LBRACK, + STATE(2133), 2, sym_line_comment, sym_block_comment, - ACTIONS(1843), 23, - anon_sym_LBRACE, + ACTIONS(1813), 48, + anon_sym_LF, + anon_sym_CR, + anon_sym_CR_LF, + anon_sym_SEMI, + anon_sym_DOT, + anon_sym_as, + anon_sym_COMMA, anon_sym_RBRACE, anon_sym_LPAREN, + anon_sym___global, + anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_LT, + anon_sym_GT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_DOT_DOT_DOT, + anon_sym_pub, + anon_sym_mut, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, anon_sym_QMARK, anon_sym_BANG, - anon_sym_json_DOTdecode, anon_sym_LBRACK2, - anon_sym_TILDE, anon_sym_CARET, anon_sym_AMP, - anon_sym_LT_DASH, - sym_float_literal, - sym_rune_literal, - anon_sym_map_LBRACK, - sym___double_quote, - sym___single_quote, - sym___c_double_quote, - sym___c_single_quote, - sym___r_double_quote, - sym___r_single_quote, - ACTIONS(1845), 26, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_GT_GT_GT, + anon_sym_AMP_CARET, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_or, + anon_sym_QMARK_DOT, + anon_sym_POUND_LBRACK, + anon_sym_DOLLARelse, + anon_sym_is, + anon_sym_BANGis, + anon_sym_in, + anon_sym_BANGin, + sym_identifier, + anon_sym_AT_LBRACK, + [38707] = 5, + ACTIONS(497), 1, + anon_sym_SLASH_SLASH, + ACTIONS(499), 1, + anon_sym_SLASH_STAR, + ACTIONS(1807), 1, + anon_sym_LBRACK, + STATE(2134), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(1809), 48, + anon_sym_LF, + anon_sym_CR, + anon_sym_CR_LF, + anon_sym_SEMI, anon_sym_DOT, - anon_sym_fn, - anon_sym_struct, + anon_sym_as, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym___global, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_LT, + anon_sym_GT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_DOT_DOT_DOT, + anon_sym_pub, anon_sym_mut, - anon_sym_go, - anon_sym_spawn, - sym_none, - sym_true, - sym_false, - sym_nil, - anon_sym_if, - anon_sym_else, - anon_sym_DOLLARif, - anon_sym_match, - anon_sym_select, - anon_sym_lock, - anon_sym_rlock, - anon_sym_unsafe, - anon_sym_sql, - sym_int_literal, - sym_pseudo_compile_time_identifier, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_QMARK, + anon_sym_BANG, + anon_sym_LBRACK2, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_GT_GT_GT, + anon_sym_AMP_CARET, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_or, + anon_sym_QMARK_DOT, + anon_sym_POUND_LBRACK, + anon_sym_DOLLARelse, + anon_sym_is, + anon_sym_BANGis, + anon_sym_in, + anon_sym_BANGin, sym_identifier, - anon_sym_shared, - anon_sym_chan, - anon_sym_thread, - anon_sym_atomic, - [38643] = 5, + anon_sym_AT_LBRACK, + [38771] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - STATE(2132), 2, + STATE(2135), 2, sym_line_comment, sym_block_comment, - ACTIONS(4846), 23, + ACTIONS(1516), 24, anon_sym_LBRACE, - anon_sym_RBRACE, anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_PLUS, anon_sym_DASH, anon_sym_STAR, + anon_sym_DOT_DOT_DOT, anon_sym_QMARK, anon_sym_BANG, anon_sym_json_DOTdecode, @@ -223740,7 +223995,7 @@ static const uint16_t ts_small_parse_table[] = { sym___c_single_quote, sym___r_double_quote, sym___r_single_quote, - ACTIONS(4844), 26, + ACTIONS(4850), 25, anon_sym_DOT, anon_sym_fn, anon_sym_struct, @@ -223752,7 +224007,6 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_nil, anon_sym_if, - anon_sym_else, anon_sym_DOLLARif, anon_sym_match, anon_sym_select, @@ -223767,22 +224021,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_chan, anon_sym_thread, anon_sym_atomic, - [38707] = 5, + [38835] = 7, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - STATE(2133), 2, + ACTIONS(2816), 1, + anon_sym_static, + ACTIONS(2818), 1, + anon_sym_volatile, + STATE(2136), 2, sym_line_comment, sym_block_comment, - ACTIONS(1514), 24, + ACTIONS(4559), 22, anon_sym_LBRACE, anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_PLUS, anon_sym_DASH, anon_sym_STAR, - anon_sym_DOT_DOT_DOT, anon_sym_QMARK, anon_sym_BANG, anon_sym_json_DOTdecode, @@ -223800,7 +224056,7 @@ static const uint16_t ts_small_parse_table[] = { sym___c_single_quote, sym___r_double_quote, sym___r_single_quote, - ACTIONS(4848), 25, + ACTIONS(4557), 25, anon_sym_DOT, anon_sym_fn, anon_sym_struct, @@ -223826,80 +224082,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_chan, anon_sym_thread, anon_sym_atomic, - [38771] = 6, + [38903] = 27, ACTIONS(497), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, anon_sym_SLASH_STAR, - ACTIONS(1919), 1, - anon_sym_LBRACK, - ACTIONS(4850), 1, - anon_sym_DOLLARelse, - STATE(2134), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(1921), 47, - anon_sym_LF, - anon_sym_CR, - anon_sym_CR_LF, - anon_sym_SEMI, - anon_sym_DOT, - anon_sym_as, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym___global, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_LT, - anon_sym_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_pub, - anon_sym_mut, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_LBRACK2, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_or, - anon_sym_QMARK_DOT, - anon_sym_POUND_LBRACK, - anon_sym_is, - anon_sym_BANGis, - anon_sym_in, - anon_sym_BANGin, - sym_identifier, - anon_sym_AT_LBRACK, - [38837] = 27, - ACTIONS(497), 1, - anon_sym_SLASH_SLASH, - ACTIONS(499), 1, - anon_sym_SLASH_STAR, - ACTIONS(4820), 1, + ACTIONS(4828), 1, anon_sym_LPAREN, - ACTIONS(4822), 1, + ACTIONS(4830), 1, anon_sym_LBRACK, - ACTIONS(4824), 1, + ACTIONS(4832), 1, anon_sym_QMARK, - ACTIONS(4826), 1, + ACTIONS(4834), 1, anon_sym_BANG, - ACTIONS(4828), 1, + ACTIONS(4836), 1, anon_sym_POUND_LBRACK, ACTIONS(4854), 1, anon_sym_as, @@ -223917,15 +224113,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_or, ACTIONS(4878), 1, anon_sym_AT_LBRACK, - STATE(2236), 1, - sym_or_block, - STATE(2238), 1, + STATE(2174), 1, sym_argument_list, - STATE(3394), 1, + STATE(2176), 1, + sym_or_block, + STATE(3385), 1, sym_attribute, - STATE(4307), 1, + STATE(4133), 1, sym_type_parameters, - ACTIONS(4818), 2, + ACTIONS(4826), 2, anon_sym_DOT, anon_sym_QMARK_DOT, ACTIONS(4874), 2, @@ -223934,7 +224130,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(4876), 2, anon_sym_in, anon_sym_BANGin, - STATE(2135), 2, + STATE(2137), 2, sym_line_comment, sym_block_comment, ACTIONS(4856), 4, @@ -223957,195 +224153,76 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___global, anon_sym_pub, anon_sym_mut, - sym_identifier, - ACTIONS(4858), 8, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_AMP, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - [38945] = 6, - ACTIONS(497), 1, - anon_sym_SLASH_SLASH, - ACTIONS(499), 1, - anon_sym_SLASH_STAR, - ACTIONS(1897), 1, - anon_sym_LBRACK, - ACTIONS(4880), 1, - anon_sym_DOLLARelse, - STATE(2136), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(1899), 47, - anon_sym_LF, - anon_sym_CR, - anon_sym_CR_LF, - anon_sym_SEMI, - anon_sym_DOT, - anon_sym_as, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym___global, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_LT, - anon_sym_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_pub, - anon_sym_mut, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_LBRACK2, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_or, - anon_sym_QMARK_DOT, - anon_sym_POUND_LBRACK, - anon_sym_is, - anon_sym_BANGis, - anon_sym_in, - anon_sym_BANGin, - sym_identifier, - anon_sym_AT_LBRACK, - [39011] = 5, - ACTIONS(497), 1, - anon_sym_SLASH_SLASH, - ACTIONS(499), 1, - anon_sym_SLASH_STAR, - ACTIONS(1843), 1, - anon_sym_LBRACK, - STATE(2137), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(1845), 48, - anon_sym_LF, - anon_sym_CR, - anon_sym_CR_LF, - anon_sym_SEMI, - anon_sym_DOT, - anon_sym_as, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym___global, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_LT, - anon_sym_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_pub, - anon_sym_mut, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_LBRACK2, - anon_sym_CARET, + sym_identifier, + ACTIONS(4858), 8, + anon_sym_STAR, + anon_sym_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_else, - anon_sym_is, - anon_sym_BANGis, - anon_sym_in, - anon_sym_BANGin, - sym_identifier, - anon_sym_AT_LBRACK, - [39075] = 5, - ACTIONS(497), 1, + [39011] = 5, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, - ACTIONS(499), 1, + ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(1915), 1, - anon_sym_LBRACK, STATE(2138), 2, sym_line_comment, sym_block_comment, - ACTIONS(1917), 48, - anon_sym_LF, - anon_sym_CR, - anon_sym_CR_LF, - anon_sym_SEMI, - anon_sym_DOT, - anon_sym_as, - anon_sym_COMMA, + ACTIONS(4882), 23, + anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_LPAREN, - anon_sym___global, - anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_LT, - anon_sym_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_pub, - anon_sym_mut, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, anon_sym_QMARK, anon_sym_BANG, + anon_sym_json_DOTdecode, anon_sym_LBRACK2, + anon_sym_TILDE, anon_sym_CARET, anon_sym_AMP, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_or, - anon_sym_QMARK_DOT, - anon_sym_POUND_LBRACK, + 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(4880), 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_is, - anon_sym_BANGis, - anon_sym_in, - anon_sym_BANGin, + 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, - [39139] = 5, + anon_sym_shared, + anon_sym_chan, + anon_sym_thread, + anon_sym_atomic, + [39075] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, @@ -224153,7 +224230,7 @@ static const uint16_t ts_small_parse_table[] = { STATE(2139), 2, sym_line_comment, sym_block_comment, - ACTIONS(4884), 23, + ACTIONS(4886), 23, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_LPAREN, @@ -224177,7 +224254,7 @@ static const uint16_t ts_small_parse_table[] = { sym___c_single_quote, sym___r_double_quote, sym___r_single_quote, - ACTIONS(4882), 26, + ACTIONS(4884), 26, anon_sym_DOT, anon_sym_fn, anon_sym_struct, @@ -224204,67 +224281,66 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_chan, anon_sym_thread, anon_sym_atomic, - [39203] = 6, - ACTIONS(497), 1, + [39139] = 5, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, - ACTIONS(499), 1, + ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(1903), 1, - anon_sym_LBRACK, - STATE(2221), 1, - sym_type_parameters, STATE(2140), 2, sym_line_comment, sym_block_comment, - ACTIONS(1905), 47, - anon_sym_LF, - anon_sym_CR, - anon_sym_CR_LF, - anon_sym_SEMI, - anon_sym_DOT, - anon_sym_as, - anon_sym_COMMA, + ACTIONS(4890), 23, + anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_LPAREN, - anon_sym___global, - anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_LT, - anon_sym_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_pub, - anon_sym_mut, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, anon_sym_QMARK, anon_sym_BANG, + anon_sym_json_DOTdecode, anon_sym_LBRACK2, + anon_sym_TILDE, anon_sym_CARET, anon_sym_AMP, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_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(4888), 26, + anon_sym_DOT, + anon_sym_fn, + anon_sym_struct, + anon_sym_mut, + anon_sym_go, + anon_sym_spawn, + sym_none, + sym_true, + sym_false, + sym_nil, + anon_sym_if, + anon_sym_else, + anon_sym_DOLLARif, + anon_sym_match, + anon_sym_select, + anon_sym_lock, + anon_sym_rlock, + anon_sym_unsafe, + anon_sym_sql, + sym_int_literal, + sym_pseudo_compile_time_identifier, sym_identifier, - anon_sym_AT_LBRACK, - [39269] = 5, + anon_sym_shared, + anon_sym_chan, + anon_sym_thread, + anon_sym_atomic, + [39203] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, @@ -224272,7 +224348,7 @@ static const uint16_t ts_small_parse_table[] = { STATE(2141), 2, sym_line_comment, sym_block_comment, - ACTIONS(1915), 23, + ACTIONS(4894), 23, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_LPAREN, @@ -224296,7 +224372,7 @@ static const uint16_t ts_small_parse_table[] = { sym___c_single_quote, sym___r_double_quote, sym___r_single_quote, - ACTIONS(1917), 26, + ACTIONS(4892), 26, anon_sym_DOT, anon_sym_fn, anon_sym_struct, @@ -224323,15 +224399,75 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_chan, anon_sym_thread, anon_sym_atomic, + [39267] = 6, + ACTIONS(497), 1, + anon_sym_SLASH_SLASH, + ACTIONS(499), 1, + anon_sym_SLASH_STAR, + ACTIONS(1879), 1, + anon_sym_LBRACK, + STATE(2222), 1, + sym_type_parameters, + STATE(2142), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(1881), 47, + anon_sym_LF, + anon_sym_CR, + anon_sym_CR_LF, + anon_sym_SEMI, + anon_sym_DOT, + anon_sym_as, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym___global, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_LT, + anon_sym_GT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_DOT_DOT_DOT, + anon_sym_pub, + anon_sym_mut, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_QMARK, + anon_sym_BANG, + anon_sym_LBRACK2, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_GT_GT_GT, + anon_sym_AMP_CARET, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_or, + anon_sym_QMARK_DOT, + anon_sym_POUND_LBRACK, + anon_sym_is, + anon_sym_BANGis, + anon_sym_in, + anon_sym_BANGin, + sym_identifier, + anon_sym_AT_LBRACK, [39333] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - STATE(2142), 2, + STATE(2143), 2, sym_line_comment, sym_block_comment, - ACTIONS(4888), 23, + ACTIONS(4898), 23, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_LPAREN, @@ -224355,7 +224491,7 @@ static const uint16_t ts_small_parse_table[] = { sym___c_single_quote, sym___r_double_quote, sym___r_single_quote, - ACTIONS(4886), 26, + ACTIONS(4896), 26, anon_sym_DOT, anon_sym_fn, anon_sym_struct, @@ -224387,10 +224523,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - STATE(2143), 2, + STATE(2144), 2, sym_line_comment, sym_block_comment, - ACTIONS(4892), 23, + ACTIONS(1807), 23, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_LPAREN, @@ -224414,7 +224550,7 @@ static const uint16_t ts_small_parse_table[] = { sym___c_single_quote, sym___r_double_quote, sym___r_single_quote, - ACTIONS(4890), 26, + ACTIONS(1809), 26, anon_sym_DOT, anon_sym_fn, anon_sym_struct, @@ -224446,10 +224582,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - STATE(2144), 2, + STATE(2145), 2, sym_line_comment, sym_block_comment, - ACTIONS(4896), 23, + ACTIONS(1811), 23, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_LPAREN, @@ -224473,7 +224609,7 @@ static const uint16_t ts_small_parse_table[] = { sym___c_single_quote, sym___r_double_quote, sym___r_single_quote, - ACTIONS(4894), 26, + ACTIONS(1813), 26, anon_sym_DOT, anon_sym_fn, anon_sym_struct, @@ -224500,75 +224636,143 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_chan, anon_sym_thread, anon_sym_atomic, - [39525] = 5, + [39525] = 15, ACTIONS(497), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, anon_sym_SLASH_STAR, - ACTIONS(2649), 1, + ACTIONS(4828), 1, + anon_sym_LPAREN, + ACTIONS(4830), 1, anon_sym_LBRACK, - STATE(2145), 2, + ACTIONS(4832), 1, + anon_sym_QMARK, + ACTIONS(4834), 1, + anon_sym_BANG, + STATE(2174), 1, + sym_argument_list, + STATE(2176), 1, + sym_or_block, + STATE(4133), 1, + sym_type_parameters, + ACTIONS(4826), 2, + anon_sym_DOT, + anon_sym_QMARK_DOT, + ACTIONS(4836), 2, + anon_sym_LBRACK2, + anon_sym_POUND_LBRACK, + STATE(2146), 2, sym_line_comment, sym_block_comment, - ACTIONS(2651), 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, + ACTIONS(4856), 4, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, + anon_sym_CARET, + ACTIONS(4858), 8, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, + anon_sym_AMP, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_GT_GT_GT, + anon_sym_AMP_CARET, + ACTIONS(1765), 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_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, + [39608] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + STATE(2147), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(2868), 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_AMP, anon_sym_LT_LT, - anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_or, anon_sym_QMARK_DOT, anon_sym_POUND_LBRACK, - anon_sym_is, anon_sym_BANGis, - anon_sym_in, anon_sym_BANGin, + anon_sym_map_LBRACK, + ACTIONS(2870), 24, + anon_sym_DOT, + anon_sym_as, + anon_sym_PIPE, + anon_sym_fn, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + anon_sym_struct, + anon_sym_QMARK, + anon_sym_BANG, + anon_sym_LBRACK2, + anon_sym_AMP, + anon_sym_GT_GT, + anon_sym_or, + anon_sym_is, + anon_sym_in, sym_identifier, - anon_sym_AT_LBRACK, - [39588] = 5, + anon_sym_shared, + anon_sym_chan, + anon_sym_thread, + anon_sym_atomic, + anon_sym_DOT_DOT, + [39671] = 5, ACTIONS(497), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, anon_sym_SLASH_STAR, - ACTIONS(2834), 1, + ACTIONS(3056), 1, anon_sym_LBRACK, - STATE(2146), 2, + STATE(2148), 2, sym_line_comment, sym_block_comment, - ACTIONS(2836), 47, + ACTIONS(3058), 47, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -224616,17 +224820,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGin, sym_identifier, anon_sym_AT_LBRACK, - [39651] = 5, + [39734] = 5, ACTIONS(497), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, anon_sym_SLASH_STAR, - ACTIONS(2475), 1, + ACTIONS(3042), 1, anon_sym_LBRACK, - STATE(2147), 2, + STATE(2149), 2, sym_line_comment, sym_block_comment, - ACTIONS(2477), 47, + ACTIONS(3044), 47, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -224674,17 +224878,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGin, sym_identifier, anon_sym_AT_LBRACK, - [39714] = 5, + [39797] = 5, ACTIONS(497), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, anon_sym_SLASH_STAR, - ACTIONS(2167), 1, + ACTIONS(3052), 1, anon_sym_LBRACK, - STATE(2148), 2, + STATE(2150), 2, sym_line_comment, sym_block_comment, - ACTIONS(2169), 47, + ACTIONS(3054), 47, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -224732,17 +224936,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGin, sym_identifier, anon_sym_AT_LBRACK, - [39777] = 5, + [39860] = 5, ACTIONS(497), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, anon_sym_SLASH_STAR, - ACTIONS(2181), 1, + ACTIONS(3048), 1, anon_sym_LBRACK, - STATE(2149), 2, + STATE(2151), 2, sym_line_comment, sym_block_comment, - ACTIONS(2183), 47, + ACTIONS(3050), 47, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -224790,17 +224994,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGin, sym_identifier, anon_sym_AT_LBRACK, - [39840] = 5, + [39923] = 5, ACTIONS(497), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, anon_sym_SLASH_STAR, - ACTIONS(2211), 1, + ACTIONS(2267), 1, anon_sym_LBRACK, - STATE(2150), 2, + STATE(2152), 2, sym_line_comment, sym_block_comment, - ACTIONS(2213), 47, + ACTIONS(2269), 47, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -224848,17 +225052,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGin, sym_identifier, anon_sym_AT_LBRACK, - [39903] = 5, + [39986] = 5, ACTIONS(497), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, anon_sym_SLASH_STAR, - ACTIONS(2685), 1, + ACTIONS(2856), 1, anon_sym_LBRACK, - STATE(2151), 2, + STATE(2153), 2, sym_line_comment, sym_block_comment, - ACTIONS(2687), 47, + ACTIONS(2858), 47, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -224906,17 +225110,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGin, sym_identifier, anon_sym_AT_LBRACK, - [39966] = 5, + [40049] = 5, ACTIONS(497), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, anon_sym_SLASH_STAR, - ACTIONS(2796), 1, + ACTIONS(2852), 1, anon_sym_LBRACK, - STATE(2152), 2, + STATE(2154), 2, sym_line_comment, sym_block_comment, - ACTIONS(2798), 47, + ACTIONS(2854), 47, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -224964,17 +225168,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGin, sym_identifier, anon_sym_AT_LBRACK, - [40029] = 5, + [40112] = 5, ACTIONS(497), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, anon_sym_SLASH_STAR, - ACTIONS(3052), 1, + ACTIONS(2694), 1, anon_sym_LBRACK, - STATE(2153), 2, + STATE(2155), 2, sym_line_comment, sym_block_comment, - ACTIONS(3054), 47, + ACTIONS(2696), 47, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -225022,22 +225226,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGin, sym_identifier, anon_sym_AT_LBRACK, - [40092] = 5, + [40175] = 6, ACTIONS(497), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, anon_sym_SLASH_STAR, - ACTIONS(1849), 1, + ACTIONS(1891), 1, + anon_sym_DOT, + ACTIONS(2473), 1, anon_sym_LBRACK, - STATE(2154), 2, + STATE(2156), 2, sym_line_comment, sym_block_comment, - ACTIONS(1851), 47, + ACTIONS(2475), 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, @@ -225080,17 +225285,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGin, sym_identifier, anon_sym_AT_LBRACK, - [40155] = 5, + [40240] = 5, ACTIONS(497), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, anon_sym_SLASH_STAR, - ACTIONS(3048), 1, + ACTIONS(2469), 1, anon_sym_LBRACK, - STATE(2155), 2, + STATE(2157), 2, sym_line_comment, sym_block_comment, - ACTIONS(3050), 47, + ACTIONS(2471), 47, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -225138,17 +225343,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGin, sym_identifier, anon_sym_AT_LBRACK, - [40218] = 5, + [40303] = 5, ACTIONS(497), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, anon_sym_SLASH_STAR, - ACTIONS(2271), 1, + ACTIONS(2141), 1, anon_sym_LBRACK, - STATE(2156), 2, + STATE(2158), 2, sym_line_comment, sym_block_comment, - ACTIONS(2273), 47, + ACTIONS(2143), 47, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -225196,709 +225401,308 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGin, sym_identifier, anon_sym_AT_LBRACK, - [40281] = 5, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_STAR, - STATE(2157), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(2910), 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(2912), 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, - [40344] = 14, + [40366] = 6, ACTIONS(497), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, anon_sym_SLASH_STAR, - ACTIONS(4820), 1, - anon_sym_LPAREN, - ACTIONS(4822), 1, + ACTIONS(2511), 1, anon_sym_LBRACK, - ACTIONS(4824), 1, - anon_sym_QMARK, - ACTIONS(4826), 1, - anon_sym_BANG, - STATE(2236), 1, - sym_or_block, - STATE(2238), 1, - sym_argument_list, - STATE(4307), 1, - sym_type_parameters, - ACTIONS(4818), 2, + ACTIONS(2515), 1, anon_sym_DOT, - anon_sym_QMARK_DOT, - ACTIONS(4828), 2, - anon_sym_LBRACK2, - anon_sym_POUND_LBRACK, - STATE(2158), 2, + STATE(2159), 2, sym_line_comment, sym_block_comment, - ACTIONS(4858), 8, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_AMP, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - ACTIONS(1785), 29, + ACTIONS(2513), 46, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, + anon_sym_SEMI, anon_sym_as, + anon_sym_COMMA, anon_sym_RBRACE, + anon_sym_LPAREN, anon_sym___global, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, anon_sym_LT, anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, + anon_sym_DOT_DOT_DOT, anon_sym_pub, anon_sym_mut, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, + anon_sym_QMARK, + anon_sym_BANG, + anon_sym_LBRACK2, anon_sym_CARET, + anon_sym_AMP, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_GT_GT_GT, + anon_sym_AMP_CARET, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_or, + anon_sym_QMARK_DOT, + anon_sym_POUND_LBRACK, anon_sym_is, anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, sym_identifier, anon_sym_AT_LBRACK, - [40425] = 15, + [40431] = 5, ACTIONS(497), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, anon_sym_SLASH_STAR, - ACTIONS(4820), 1, - anon_sym_LPAREN, - ACTIONS(4822), 1, + ACTIONS(2520), 1, anon_sym_LBRACK, - ACTIONS(4824), 1, - anon_sym_QMARK, - ACTIONS(4826), 1, - anon_sym_BANG, - STATE(2236), 1, - sym_or_block, - STATE(2238), 1, - sym_argument_list, - STATE(4307), 1, - sym_type_parameters, - ACTIONS(4818), 2, - anon_sym_DOT, - anon_sym_QMARK_DOT, - ACTIONS(4828), 2, - anon_sym_LBRACK2, - anon_sym_POUND_LBRACK, - STATE(2159), 2, + STATE(2160), 2, sym_line_comment, sym_block_comment, - ACTIONS(4856), 4, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_CARET, - ACTIONS(4858), 8, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_AMP, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - ACTIONS(1785), 25, + ACTIONS(2522), 47, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, + anon_sym_SEMI, + anon_sym_DOT, anon_sym_as, + anon_sym_COMMA, anon_sym_RBRACE, + anon_sym_LPAREN, anon_sym___global, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, anon_sym_LT, anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, + anon_sym_DOT_DOT_DOT, anon_sym_pub, anon_sym_mut, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_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, - [40508] = 5, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_STAR, - STATE(2160), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(2550), 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(4898), 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, - [40571] = 5, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_STAR, - STATE(2161), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(2223), 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, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, + anon_sym_or, anon_sym_QMARK_DOT, anon_sym_POUND_LBRACK, - anon_sym_BANGis, - anon_sym_BANGin, - anon_sym_map_LBRACK, - ACTIONS(2225), 24, - anon_sym_DOT, - anon_sym_as, - anon_sym_PIPE, - anon_sym_fn, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - anon_sym_struct, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_LBRACK2, - anon_sym_AMP, - anon_sym_GT_GT, - anon_sym_or, anon_sym_is, + anon_sym_BANGis, anon_sym_in, + anon_sym_BANGin, sym_identifier, - anon_sym_shared, - anon_sym_chan, - anon_sym_thread, - anon_sym_atomic, - anon_sym_DOT_DOT, - [40634] = 5, - ACTIONS(3), 1, + anon_sym_AT_LBRACK, + [40494] = 5, + ACTIONS(497), 1, anon_sym_SLASH_SLASH, - ACTIONS(5), 1, + ACTIONS(499), 1, anon_sym_SLASH_STAR, - STATE(2162), 2, + ACTIONS(2511), 1, + anon_sym_LBRACK, + STATE(2161), 2, sym_line_comment, sym_block_comment, - ACTIONS(2215), 24, - anon_sym_LBRACE, + ACTIONS(2513), 47, + anon_sym_LF, + anon_sym_CR, + anon_sym_CR_LF, + anon_sym_SEMI, + anon_sym_DOT, + anon_sym_as, anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_LPAREN, + anon_sym___global, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, anon_sym_STAR, + anon_sym_SLASH, anon_sym_PERCENT, + anon_sym_LT, + anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_DOT_DOT_DOT, - anon_sym_LBRACK, + anon_sym_pub, + anon_sym_mut, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, + anon_sym_QMARK, + anon_sym_BANG, + anon_sym_LBRACK2, anon_sym_CARET, + anon_sym_AMP, anon_sym_LT_LT, + anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, + anon_sym_or, anon_sym_QMARK_DOT, anon_sym_POUND_LBRACK, - anon_sym_BANGis, - anon_sym_BANGin, - anon_sym_map_LBRACK, - ACTIONS(2217), 24, - anon_sym_DOT, - anon_sym_as, - anon_sym_PIPE, - anon_sym_fn, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - anon_sym_struct, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_LBRACK2, - anon_sym_AMP, - anon_sym_GT_GT, - anon_sym_or, anon_sym_is, + anon_sym_BANGis, anon_sym_in, + anon_sym_BANGin, sym_identifier, - anon_sym_shared, - anon_sym_chan, - anon_sym_thread, - anon_sym_atomic, - anon_sym_DOT_DOT, - [40697] = 17, + anon_sym_AT_LBRACK, + [40557] = 5, ACTIONS(497), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, anon_sym_SLASH_STAR, - ACTIONS(4820), 1, - anon_sym_LPAREN, - ACTIONS(4822), 1, + ACTIONS(2530), 1, anon_sym_LBRACK, - ACTIONS(4824), 1, - anon_sym_QMARK, - ACTIONS(4826), 1, - anon_sym_BANG, - STATE(2236), 1, - sym_or_block, - STATE(2238), 1, - sym_argument_list, - STATE(4307), 1, - sym_type_parameters, - ACTIONS(4818), 2, - anon_sym_DOT, - anon_sym_QMARK_DOT, - ACTIONS(4828), 2, - anon_sym_LBRACK2, - anon_sym_POUND_LBRACK, - ACTIONS(4876), 2, - anon_sym_in, - anon_sym_BANGin, - STATE(2163), 2, + STATE(2162), 2, sym_line_comment, sym_block_comment, - ACTIONS(4856), 4, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_CARET, - ACTIONS(4860), 6, - anon_sym_LT, - anon_sym_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(4858), 8, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_AMP, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - ACTIONS(1785), 17, + ACTIONS(2532), 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___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, - [40784] = 18, - ACTIONS(497), 1, - anon_sym_SLASH_SLASH, - ACTIONS(499), 1, - anon_sym_SLASH_STAR, - ACTIONS(4820), 1, anon_sym_LPAREN, - ACTIONS(4822), 1, - anon_sym_LBRACK, - ACTIONS(4824), 1, - anon_sym_QMARK, - ACTIONS(4826), 1, - anon_sym_BANG, - ACTIONS(4868), 1, - anon_sym_AMP_AMP, - STATE(2236), 1, - sym_or_block, - STATE(2238), 1, - sym_argument_list, - STATE(4307), 1, - sym_type_parameters, - ACTIONS(4818), 2, - anon_sym_DOT, - anon_sym_QMARK_DOT, - ACTIONS(4828), 2, - anon_sym_LBRACK2, - anon_sym_POUND_LBRACK, - ACTIONS(4876), 2, - anon_sym_in, - anon_sym_BANGin, - STATE(2164), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(4856), 4, + anon_sym___global, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - anon_sym_CARET, - ACTIONS(4860), 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(4858), 8, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_AMP, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - ACTIONS(1785), 16, - anon_sym_LF, - anon_sym_CR, - anon_sym_CR_LF, - anon_sym_as, - anon_sym_RBRACE, - anon_sym___global, + anon_sym_DOT_DOT_DOT, anon_sym_pub, anon_sym_mut, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_PIPE_PIPE, - anon_sym_or, - anon_sym_is, - anon_sym_BANGis, - sym_identifier, - anon_sym_AT_LBRACK, - [40873] = 15, - ACTIONS(497), 1, - anon_sym_SLASH_SLASH, - ACTIONS(499), 1, - anon_sym_SLASH_STAR, - ACTIONS(4820), 1, - anon_sym_LPAREN, - ACTIONS(4822), 1, - anon_sym_LBRACK, - ACTIONS(4824), 1, anon_sym_QMARK, - ACTIONS(4826), 1, anon_sym_BANG, - STATE(2236), 1, - sym_or_block, - STATE(2238), 1, - sym_argument_list, - STATE(4307), 1, - sym_type_parameters, - ACTIONS(4818), 2, - anon_sym_DOT, - anon_sym_QMARK_DOT, - ACTIONS(4828), 2, anon_sym_LBRACK2, - anon_sym_POUND_LBRACK, - STATE(2165), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(4856), 4, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, anon_sym_CARET, - ACTIONS(4858), 8, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, anon_sym_AMP, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(1769), 25, - anon_sym_LF, - anon_sym_CR, - anon_sym_CR_LF, - anon_sym_as, - anon_sym_RBRACE, - anon_sym___global, - anon_sym_LT, - anon_sym_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_pub, - anon_sym_mut, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_or, + anon_sym_QMARK_DOT, + anon_sym_POUND_LBRACK, anon_sym_is, anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, sym_identifier, anon_sym_AT_LBRACK, - [40956] = 5, - ACTIONS(3), 1, + [40620] = 5, + ACTIONS(497), 1, anon_sym_SLASH_SLASH, - ACTIONS(5), 1, + ACTIONS(499), 1, anon_sym_SLASH_STAR, - STATE(2166), 2, + ACTIONS(2503), 1, + anon_sym_LBRACK, + STATE(2163), 2, sym_line_comment, sym_block_comment, - ACTIONS(2175), 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(2177), 24, + ACTIONS(2505), 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_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, - [41019] = 5, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_STAR, - STATE(2167), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(2151), 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_pub, + anon_sym_mut, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, + anon_sym_QMARK, + anon_sym_BANG, + anon_sym_LBRACK2, anon_sym_CARET, + anon_sym_AMP, anon_sym_LT_LT, + anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, + anon_sym_or, anon_sym_QMARK_DOT, anon_sym_POUND_LBRACK, - anon_sym_BANGis, - anon_sym_BANGin, - anon_sym_map_LBRACK, - ACTIONS(2153), 24, - anon_sym_DOT, - anon_sym_as, - anon_sym_PIPE, - anon_sym_fn, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - anon_sym_struct, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_LBRACK2, - anon_sym_AMP, - anon_sym_GT_GT, - anon_sym_or, anon_sym_is, + anon_sym_BANGis, anon_sym_in, + anon_sym_BANGin, sym_identifier, - anon_sym_shared, - anon_sym_chan, - anon_sym_thread, - anon_sym_atomic, - anon_sym_DOT_DOT, - [41082] = 5, + anon_sym_AT_LBRACK, + [40683] = 5, ACTIONS(497), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, anon_sym_SLASH_STAR, - ACTIONS(2287), 1, + ACTIONS(2804), 1, anon_sym_LBRACK, - STATE(2168), 2, + STATE(2164), 2, sym_line_comment, sym_block_comment, - ACTIONS(2289), 47, + ACTIONS(2806), 47, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -225946,17 +225750,76 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGin, sym_identifier, anon_sym_AT_LBRACK, - [41145] = 5, + [40746] = 6, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(4904), 1, + anon_sym_volatile, + STATE(2165), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(4902), 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(4900), 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, + [40811] = 5, ACTIONS(497), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, anon_sym_SLASH_STAR, - ACTIONS(2279), 1, + ACTIONS(2878), 1, anon_sym_LBRACK, - STATE(2169), 2, + STATE(2166), 2, sym_line_comment, sym_block_comment, - ACTIONS(2281), 47, + ACTIONS(2880), 47, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -226004,17 +225867,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGin, sym_identifier, anon_sym_AT_LBRACK, - [41208] = 5, + [40874] = 5, ACTIONS(497), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, anon_sym_SLASH_STAR, - ACTIONS(2231), 1, + ACTIONS(2189), 1, anon_sym_LBRACK, - STATE(2170), 2, + STATE(2167), 2, sym_line_comment, sym_block_comment, - ACTIONS(2233), 47, + ACTIONS(2191), 47, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -226062,17 +225925,94 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGin, sym_identifier, anon_sym_AT_LBRACK, - [41271] = 5, + [40937] = 24, ACTIONS(497), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, anon_sym_SLASH_STAR, - ACTIONS(2227), 1, + ACTIONS(4828), 1, + anon_sym_LPAREN, + ACTIONS(4830), 1, anon_sym_LBRACK, - STATE(2171), 2, + ACTIONS(4832), 1, + anon_sym_QMARK, + ACTIONS(4834), 1, + anon_sym_BANG, + ACTIONS(4854), 1, + anon_sym_as, + ACTIONS(4862), 1, + anon_sym_PLUS_PLUS, + ACTIONS(4864), 1, + anon_sym_DASH_DASH, + ACTIONS(4868), 1, + anon_sym_AMP_AMP, + ACTIONS(4870), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4872), 1, + anon_sym_or, + STATE(2174), 1, + sym_argument_list, + STATE(2176), 1, + sym_or_block, + STATE(4133), 1, + sym_type_parameters, + ACTIONS(4826), 2, + anon_sym_DOT, + anon_sym_QMARK_DOT, + ACTIONS(4836), 2, + anon_sym_LBRACK2, + anon_sym_POUND_LBRACK, + ACTIONS(4874), 2, + anon_sym_is, + anon_sym_BANGis, + ACTIONS(4876), 2, + anon_sym_in, + anon_sym_BANGin, + STATE(2168), 2, sym_line_comment, sym_block_comment, - ACTIONS(2229), 47, + ACTIONS(4856), 4, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_CARET, + ACTIONS(4860), 6, + anon_sym_LT, + anon_sym_GT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(4858), 8, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_AMP, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_GT_GT_GT, + anon_sym_AMP_CARET, + ACTIONS(1795), 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, + [41038] = 5, + ACTIONS(497), 1, + anon_sym_SLASH_SLASH, + ACTIONS(499), 1, + anon_sym_SLASH_STAR, + ACTIONS(2457), 1, + anon_sym_LBRACK, + STATE(2169), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(2459), 47, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -226120,17 +226060,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGin, sym_identifier, anon_sym_AT_LBRACK, - [41334] = 5, + [41101] = 5, ACTIONS(497), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, anon_sym_SLASH_STAR, - ACTIONS(2906), 1, + ACTIONS(2453), 1, anon_sym_LBRACK, - STATE(2172), 2, + STATE(2170), 2, sym_line_comment, sym_block_comment, - ACTIONS(2908), 47, + ACTIONS(2455), 47, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -226178,17 +226118,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGin, sym_identifier, anon_sym_AT_LBRACK, - [41397] = 5, + [41164] = 5, ACTIONS(497), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, anon_sym_SLASH_STAR, - ACTIONS(2902), 1, + ACTIONS(2447), 1, anon_sym_LBRACK, - STATE(2173), 2, + STATE(2171), 2, sym_line_comment, sym_block_comment, - ACTIONS(2904), 47, + ACTIONS(2449), 47, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -226236,17 +226176,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGin, sym_identifier, anon_sym_AT_LBRACK, - [41460] = 5, + [41227] = 5, ACTIONS(497), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, anon_sym_SLASH_STAR, - ACTIONS(2788), 1, + ACTIONS(2441), 1, anon_sym_LBRACK, - STATE(2174), 2, + STATE(2172), 2, sym_line_comment, sym_block_comment, - ACTIONS(2790), 47, + ACTIONS(2443), 47, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -226294,17 +226234,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGin, sym_identifier, anon_sym_AT_LBRACK, - [41523] = 5, + [41290] = 5, ACTIONS(497), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, anon_sym_SLASH_STAR, - ACTIONS(2675), 1, + ACTIONS(2904), 1, anon_sym_LBRACK, - STATE(2175), 2, + STATE(2173), 2, sym_line_comment, sym_block_comment, - ACTIONS(2677), 47, + ACTIONS(2906), 47, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -226352,76 +226292,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGin, sym_identifier, anon_sym_AT_LBRACK, - [41586] = 6, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_STAR, - ACTIONS(4904), 1, - anon_sym_volatile, - STATE(2176), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(4902), 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(4900), 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, - [41651] = 5, + [41353] = 5, ACTIONS(497), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, anon_sym_SLASH_STAR, - ACTIONS(2657), 1, + ACTIONS(2305), 1, anon_sym_LBRACK, - STATE(2177), 2, + STATE(2174), 2, sym_line_comment, sym_block_comment, - ACTIONS(2659), 47, + ACTIONS(2307), 47, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -226469,17 +226350,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGin, sym_identifier, anon_sym_AT_LBRACK, - [41714] = 5, + [41416] = 5, ACTIONS(497), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, anon_sym_SLASH_STAR, - ACTIONS(2784), 1, + ACTIONS(2900), 1, anon_sym_LBRACK, - STATE(2178), 2, + STATE(2175), 2, sym_line_comment, sym_block_comment, - ACTIONS(2786), 47, + ACTIONS(2902), 47, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -226527,17 +226408,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGin, sym_identifier, anon_sym_AT_LBRACK, - [41777] = 5, + [41479] = 5, ACTIONS(497), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, anon_sym_SLASH_STAR, - ACTIONS(1903), 1, + ACTIONS(2291), 1, anon_sym_LBRACK, - STATE(2179), 2, + STATE(2176), 2, sym_line_comment, sym_block_comment, - ACTIONS(1905), 47, + ACTIONS(2293), 47, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -226585,75 +226466,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGin, sym_identifier, anon_sym_AT_LBRACK, - [41840] = 5, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_STAR, - STATE(2180), 2, - sym_line_comment, - sym_block_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), 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, - [41903] = 5, + [41542] = 5, ACTIONS(497), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, anon_sym_SLASH_STAR, - ACTIONS(2265), 1, + ACTIONS(2465), 1, anon_sym_LBRACK, - STATE(2181), 2, + STATE(2177), 2, sym_line_comment, sym_block_comment, - ACTIONS(2267), 47, + ACTIONS(2467), 47, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -226701,17 +226524,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGin, sym_identifier, anon_sym_AT_LBRACK, - [41966] = 5, + [41605] = 5, ACTIONS(497), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, anon_sym_SLASH_STAR, - ACTIONS(2237), 1, + ACTIONS(2726), 1, anon_sym_LBRACK, - STATE(2182), 2, + STATE(2178), 2, sym_line_comment, sym_block_comment, - ACTIONS(2239), 47, + ACTIONS(2728), 47, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -226759,17 +226582,75 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGin, sym_identifier, anon_sym_AT_LBRACK, - [42029] = 5, + [41668] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + STATE(2179), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(2567), 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(4906), 25, + anon_sym_DOT, + anon_sym_fn, + anon_sym_struct, + anon_sym_mut, + anon_sym_go, + anon_sym_spawn, + sym_none, + sym_true, + sym_false, + sym_nil, + anon_sym_if, + anon_sym_DOLLARif, + anon_sym_match, + anon_sym_select, + anon_sym_lock, + anon_sym_rlock, + anon_sym_unsafe, + anon_sym_sql, + sym_int_literal, + sym_pseudo_compile_time_identifier, + sym_identifier, + anon_sym_shared, + anon_sym_chan, + anon_sym_thread, + anon_sym_atomic, + [41731] = 5, ACTIONS(497), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, anon_sym_SLASH_STAR, - ACTIONS(2245), 1, + ACTIONS(1887), 1, anon_sym_LBRACK, - STATE(2183), 2, + STATE(2180), 2, sym_line_comment, sym_block_comment, - ACTIONS(2247), 47, + ACTIONS(1889), 47, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -226817,99 +226698,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGin, sym_identifier, anon_sym_AT_LBRACK, - [42092] = 29, + [41794] = 5, ACTIONS(497), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, anon_sym_SLASH_STAR, - ACTIONS(1851), 1, - anon_sym_DOT, - ACTIONS(2505), 1, + ACTIONS(2461), 1, anon_sym_LBRACK, - ACTIONS(3420), 1, - sym_identifier, - ACTIONS(3424), 1, - anon_sym_fn, - ACTIONS(3426), 1, - anon_sym_STAR, - ACTIONS(3428), 1, - anon_sym_struct, - ACTIONS(3430), 1, - anon_sym_QMARK, - ACTIONS(3432), 1, - anon_sym_BANG, - ACTIONS(3434), 1, - anon_sym_LBRACK2, - ACTIONS(3436), 1, - anon_sym_AMP, - ACTIONS(3438), 1, - anon_sym_shared, - ACTIONS(3440), 1, - anon_sym_map_LBRACK, - ACTIONS(3442), 1, - anon_sym_chan, - ACTIONS(3444), 1, - anon_sym_thread, - ACTIONS(3446), 1, - anon_sym_atomic, - ACTIONS(4910), 1, - anon_sym_LPAREN, - ACTIONS(4912), 1, - anon_sym_LT2, - STATE(3335), 1, - sym_plain_type, - STATE(3340), 1, - sym_signature, - STATE(3727), 1, - sym_generic_parameters, - STATE(4341), 1, - sym_reference_expression, - STATE(2184), 2, - sym_line_comment, - sym_block_comment, - STATE(2418), 2, - sym_parameter_list, - sym_type_parameter_list, - STATE(3286), 2, - sym_type_reference_expression, - sym_qualified_type, - STATE(3339), 4, - sym__plain_type_without_special, - sym_multi_return_type, - sym_result_type, - sym_option_type, - ACTIONS(2507), 7, - anon_sym_LF, - anon_sym_CR, - anon_sym_CR_LF, - anon_sym_RBRACE, - anon_sym___global, - anon_sym_pub, - anon_sym_mut, - STATE(3349), 12, - sym_anon_struct_type, - sym_fixed_array_type, - sym_array_type, - sym_pointer_type, - sym_wrong_pointer_type, - sym_map_type, - sym_channel_type, - sym_shared_type, - sym_thread_type, - sym_atomic_type, - sym_generic_type, - sym_function_type, - [42203] = 5, - ACTIONS(497), 1, - anon_sym_SLASH_SLASH, - ACTIONS(499), 1, - anon_sym_SLASH_STAR, - ACTIONS(2283), 1, - anon_sym_LBRACK, - STATE(2185), 2, + STATE(2181), 2, sym_line_comment, sym_block_comment, - ACTIONS(2285), 47, + ACTIONS(2463), 47, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -226957,17 +226756,75 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGin, sym_identifier, anon_sym_AT_LBRACK, - [42266] = 5, + [41857] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + STATE(2182), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(2702), 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(2704), 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, + [41920] = 5, ACTIONS(497), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, anon_sym_SLASH_STAR, - ACTIONS(2808), 1, + ACTIONS(2507), 1, anon_sym_LBRACK, - STATE(2186), 2, + STATE(2183), 2, sym_line_comment, sym_block_comment, - ACTIONS(2810), 47, + ACTIONS(2509), 47, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -227015,17 +226872,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGin, sym_identifier, anon_sym_AT_LBRACK, - [42329] = 5, + [41983] = 5, ACTIONS(497), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, anon_sym_SLASH_STAR, - ACTIONS(2303), 1, + ACTIONS(1879), 1, anon_sym_LBRACK, - STATE(2187), 2, + STATE(2184), 2, sym_line_comment, sym_block_comment, - ACTIONS(2305), 47, + ACTIONS(1881), 47, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -227073,14 +226930,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGin, sym_identifier, anon_sym_AT_LBRACK, - [42392] = 5, + [42046] = 5, ACTIONS(497), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, anon_sym_SLASH_STAR, ACTIONS(2313), 1, anon_sym_LBRACK, - STATE(2188), 2, + STATE(2185), 2, sym_line_comment, sym_block_comment, ACTIONS(2315), 47, @@ -227131,17 +226988,75 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGin, sym_identifier, anon_sym_AT_LBRACK, - [42455] = 5, + [42109] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + STATE(2186), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(2000), 23, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_QMARK, + anon_sym_BANG, + anon_sym_json_DOTdecode, + anon_sym_LBRACK2, + anon_sym_TILDE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_LT_DASH, + sym_float_literal, + sym_rune_literal, + anon_sym_map_LBRACK, + sym___double_quote, + sym___single_quote, + sym___c_double_quote, + sym___c_single_quote, + sym___r_double_quote, + sym___r_single_quote, + ACTIONS(4908), 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, + [42172] = 5, ACTIONS(497), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, anon_sym_SLASH_STAR, - ACTIONS(2481), 1, + ACTIONS(2123), 1, anon_sym_LBRACK, - STATE(2189), 2, + STATE(2187), 2, sym_line_comment, sym_block_comment, - ACTIONS(2483), 47, + ACTIONS(2125), 47, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -227189,17 +227104,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGin, sym_identifier, anon_sym_AT_LBRACK, - [42518] = 5, + [42235] = 5, ACTIONS(497), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, anon_sym_SLASH_STAR, - ACTIONS(2671), 1, + ACTIONS(1989), 1, anon_sym_LBRACK, - STATE(2190), 2, + STATE(2188), 2, sym_line_comment, sym_block_comment, - ACTIONS(2673), 47, + ACTIONS(1987), 47, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -227247,17 +227162,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGin, sym_identifier, anon_sym_AT_LBRACK, - [42581] = 5, + [42298] = 5, ACTIONS(497), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, anon_sym_SLASH_STAR, - ACTIONS(2814), 1, + ACTIONS(2536), 1, anon_sym_LBRACK, - STATE(2191), 2, + STATE(2189), 2, sym_line_comment, sym_block_comment, - ACTIONS(2816), 47, + ACTIONS(2538), 47, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -227305,17 +227220,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGin, sym_identifier, anon_sym_AT_LBRACK, - [42644] = 5, + [42361] = 5, ACTIONS(497), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, anon_sym_SLASH_STAR, - ACTIONS(2838), 1, + ACTIONS(2147), 1, anon_sym_LBRACK, - STATE(2192), 2, + STATE(2190), 2, sym_line_comment, sym_block_comment, - ACTIONS(2840), 47, + ACTIONS(2149), 47, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -227363,17 +227278,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGin, sym_identifier, anon_sym_AT_LBRACK, - [42707] = 5, + [42424] = 5, ACTIONS(497), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, anon_sym_SLASH_STAR, - ACTIONS(2844), 1, + ACTIONS(2734), 1, anon_sym_LBRACK, - STATE(2193), 2, + STATE(2191), 2, sym_line_comment, sym_block_comment, - ACTIONS(2846), 47, + ACTIONS(2736), 47, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -227421,17 +227336,84 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGin, sym_identifier, anon_sym_AT_LBRACK, - [42770] = 5, + [42487] = 14, ACTIONS(497), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, anon_sym_SLASH_STAR, - ACTIONS(2830), 1, + ACTIONS(4828), 1, + anon_sym_LPAREN, + ACTIONS(4830), 1, anon_sym_LBRACK, - STATE(2194), 2, + ACTIONS(4832), 1, + anon_sym_QMARK, + ACTIONS(4834), 1, + anon_sym_BANG, + STATE(2174), 1, + sym_argument_list, + STATE(2176), 1, + sym_or_block, + STATE(4133), 1, + sym_type_parameters, + ACTIONS(4826), 2, + anon_sym_DOT, + anon_sym_QMARK_DOT, + ACTIONS(4836), 2, + anon_sym_LBRACK2, + anon_sym_POUND_LBRACK, + STATE(2192), 2, sym_line_comment, sym_block_comment, - ACTIONS(2832), 47, + ACTIONS(4858), 8, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_AMP, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_GT_GT_GT, + anon_sym_AMP_CARET, + ACTIONS(1765), 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, + [42568] = 5, + ACTIONS(497), 1, + anon_sym_SLASH_SLASH, + ACTIONS(499), 1, + anon_sym_SLASH_STAR, + ACTIONS(2770), 1, + anon_sym_LBRACK, + STATE(2193), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(2772), 47, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -227479,17 +227461,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGin, sym_identifier, anon_sym_AT_LBRACK, - [42833] = 5, + [42631] = 5, ACTIONS(497), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, anon_sym_SLASH_STAR, - ACTIONS(2848), 1, + ACTIONS(2666), 1, anon_sym_LBRACK, - STATE(2195), 2, + STATE(2194), 2, sym_line_comment, sym_block_comment, - ACTIONS(2850), 47, + ACTIONS(2668), 47, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -227537,75 +227519,87 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGin, sym_identifier, anon_sym_AT_LBRACK, - [42896] = 5, + [42694] = 17, ACTIONS(497), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, anon_sym_SLASH_STAR, - ACTIONS(2866), 1, + ACTIONS(4828), 1, + anon_sym_LPAREN, + ACTIONS(4830), 1, anon_sym_LBRACK, - STATE(2196), 2, + ACTIONS(4832), 1, + anon_sym_QMARK, + ACTIONS(4834), 1, + anon_sym_BANG, + STATE(2174), 1, + sym_argument_list, + STATE(2176), 1, + sym_or_block, + STATE(4133), 1, + sym_type_parameters, + ACTIONS(4826), 2, + anon_sym_DOT, + anon_sym_QMARK_DOT, + ACTIONS(4836), 2, + anon_sym_LBRACK2, + anon_sym_POUND_LBRACK, + ACTIONS(4876), 2, + anon_sym_in, + anon_sym_BANGin, + STATE(2195), 2, sym_line_comment, sym_block_comment, - ACTIONS(2868), 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, + ACTIONS(4856), 4, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, + anon_sym_CARET, + ACTIONS(4860), 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(4858), 8, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, anon_sym_AMP, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, + ACTIONS(1765), 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, - [42959] = 5, + [42781] = 5, ACTIONS(497), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, anon_sym_SLASH_STAR, - ACTIONS(3044), 1, + ACTIONS(2776), 1, anon_sym_LBRACK, - STATE(2197), 2, + STATE(2196), 2, sym_line_comment, sym_block_comment, - ACTIONS(3046), 47, + ACTIONS(2778), 47, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -227653,17 +227647,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGin, sym_identifier, anon_sym_AT_LBRACK, - [43022] = 5, + [42844] = 5, ACTIONS(497), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, anon_sym_SLASH_STAR, - ACTIONS(2858), 1, + ACTIONS(2113), 1, anon_sym_LBRACK, - STATE(2198), 2, + STATE(2197), 2, sym_line_comment, sym_block_comment, - ACTIONS(2860), 47, + ACTIONS(2115), 47, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -227711,75 +227705,146 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGin, sym_identifier, anon_sym_AT_LBRACK, - [43085] = 5, - ACTIONS(497), 1, + [42907] = 5, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, - ACTIONS(499), 1, + ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(2854), 1, - anon_sym_LBRACK, - STATE(2199), 2, + STATE(2198), 2, sym_line_comment, sym_block_comment, - ACTIONS(2856), 47, - anon_sym_LF, - anon_sym_CR, - anon_sym_CR_LF, - anon_sym_SEMI, - anon_sym_DOT, - anon_sym_as, + ACTIONS(2810), 24, + anon_sym_LBRACE, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_LPAREN, - anon_sym___global, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, anon_sym_STAR, - anon_sym_SLASH, anon_sym_PERCENT, - anon_sym_LT, - anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_DOT_DOT_DOT, - anon_sym_pub, - anon_sym_mut, + anon_sym_LBRACK, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_AMP_CARET, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_QMARK_DOT, + anon_sym_POUND_LBRACK, + anon_sym_BANGis, + anon_sym_BANGin, + anon_sym_map_LBRACK, + ACTIONS(2812), 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, + [42970] = 18, + ACTIONS(497), 1, + anon_sym_SLASH_SLASH, + ACTIONS(499), 1, + anon_sym_SLASH_STAR, + ACTIONS(4828), 1, + anon_sym_LPAREN, + ACTIONS(4830), 1, + anon_sym_LBRACK, + ACTIONS(4832), 1, anon_sym_QMARK, + ACTIONS(4834), 1, anon_sym_BANG, + ACTIONS(4868), 1, + anon_sym_AMP_AMP, + STATE(2174), 1, + sym_argument_list, + STATE(2176), 1, + sym_or_block, + STATE(4133), 1, + sym_type_parameters, + ACTIONS(4826), 2, + anon_sym_DOT, + anon_sym_QMARK_DOT, + ACTIONS(4836), 2, anon_sym_LBRACK2, + anon_sym_POUND_LBRACK, + ACTIONS(4876), 2, + anon_sym_in, + anon_sym_BANGin, + STATE(2199), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(4856), 4, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, anon_sym_CARET, + ACTIONS(4860), 6, + anon_sym_LT, + anon_sym_GT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(4858), 8, + anon_sym_STAR, + anon_sym_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(1765), 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, - [43148] = 5, + [43059] = 5, ACTIONS(497), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, anon_sym_SLASH_STAR, - ACTIONS(2291), 1, + ACTIONS(2844), 1, anon_sym_LBRACK, STATE(2200), 2, sym_line_comment, sym_block_comment, - ACTIONS(2293), 47, + ACTIONS(2846), 47, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -227827,17 +227892,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGin, sym_identifier, anon_sym_AT_LBRACK, - [43211] = 5, + [43122] = 5, ACTIONS(497), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, anon_sym_SLASH_STAR, - ACTIONS(2119), 1, + ACTIONS(2908), 1, anon_sym_LBRACK, STATE(2201), 2, sym_line_comment, sym_block_comment, - ACTIONS(2121), 47, + ACTIONS(2910), 47, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -227885,17 +227950,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGin, sym_identifier, anon_sym_AT_LBRACK, - [43274] = 5, + [43185] = 5, ACTIONS(497), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, anon_sym_SLASH_STAR, - ACTIONS(2870), 1, + ACTIONS(2231), 1, anon_sym_LBRACK, STATE(2202), 2, sym_line_comment, sym_block_comment, - ACTIONS(2872), 47, + ACTIONS(2233), 47, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -227943,17 +228008,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGin, sym_identifier, anon_sym_AT_LBRACK, - [43337] = 5, + [43248] = 5, ACTIONS(497), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, anon_sym_SLASH_STAR, - ACTIONS(2898), 1, + ACTIONS(2884), 1, anon_sym_LBRACK, STATE(2203), 2, sym_line_comment, sym_block_comment, - ACTIONS(2900), 47, + ACTIONS(2886), 47, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -228001,17 +228066,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGin, sym_identifier, anon_sym_AT_LBRACK, - [43400] = 5, + [43311] = 5, ACTIONS(497), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, anon_sym_SLASH_STAR, - ACTIONS(2918), 1, + ACTIONS(2201), 1, anon_sym_LBRACK, STATE(2204), 2, sym_line_comment, sym_block_comment, - ACTIONS(2920), 47, + ACTIONS(2203), 47, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -228059,17 +228124,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGin, sym_identifier, anon_sym_AT_LBRACK, - [43463] = 5, + [43374] = 5, ACTIONS(497), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, anon_sym_SLASH_STAR, - ACTIONS(2115), 1, + ACTIONS(2678), 1, anon_sym_LBRACK, STATE(2205), 2, sym_line_comment, sym_block_comment, - ACTIONS(2117), 47, + ACTIONS(2680), 47, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -228117,17 +228182,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGin, sym_identifier, anon_sym_AT_LBRACK, - [43526] = 5, + [43437] = 5, ACTIONS(497), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, anon_sym_SLASH_STAR, - ACTIONS(3060), 1, + ACTIONS(2682), 1, anon_sym_LBRACK, STATE(2206), 2, sym_line_comment, sym_block_comment, - ACTIONS(3062), 47, + ACTIONS(2684), 47, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -228175,94 +228240,75 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGin, sym_identifier, anon_sym_AT_LBRACK, - [43589] = 24, + [43500] = 5, ACTIONS(497), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, anon_sym_SLASH_STAR, - ACTIONS(4820), 1, - anon_sym_LPAREN, - ACTIONS(4822), 1, + ACTIONS(2686), 1, anon_sym_LBRACK, - ACTIONS(4824), 1, - anon_sym_QMARK, - ACTIONS(4826), 1, - anon_sym_BANG, - ACTIONS(4854), 1, - anon_sym_as, - ACTIONS(4862), 1, - anon_sym_PLUS_PLUS, - ACTIONS(4864), 1, - anon_sym_DASH_DASH, - ACTIONS(4868), 1, - anon_sym_AMP_AMP, - ACTIONS(4870), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4872), 1, - anon_sym_or, - STATE(2236), 1, - sym_or_block, - STATE(2238), 1, - sym_argument_list, - STATE(4307), 1, - sym_type_parameters, - ACTIONS(4818), 2, - anon_sym_DOT, - anon_sym_QMARK_DOT, - ACTIONS(4828), 2, - anon_sym_LBRACK2, - anon_sym_POUND_LBRACK, - ACTIONS(4874), 2, - anon_sym_is, - anon_sym_BANGis, - ACTIONS(4876), 2, - anon_sym_in, - anon_sym_BANGin, STATE(2207), 2, sym_line_comment, sym_block_comment, - ACTIONS(4856), 4, + ACTIONS(2688), 47, + anon_sym_LF, + anon_sym_CR, + anon_sym_CR_LF, + anon_sym_SEMI, + anon_sym_DOT, + anon_sym_as, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym___global, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - anon_sym_CARET, - ACTIONS(4860), 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(4858), 8, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, + anon_sym_DOT_DOT_DOT, + anon_sym_pub, + anon_sym_mut, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_QMARK, + anon_sym_BANG, + anon_sym_LBRACK2, + anon_sym_CARET, anon_sym_AMP, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(1773), 9, - anon_sym_LF, - anon_sym_CR, - anon_sym_CR_LF, - anon_sym_RBRACE, - anon_sym___global, - anon_sym_pub, - anon_sym_mut, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_or, + anon_sym_QMARK_DOT, + anon_sym_POUND_LBRACK, + anon_sym_is, + anon_sym_BANGis, + anon_sym_in, + anon_sym_BANGin, sym_identifier, anon_sym_AT_LBRACK, - [43690] = 5, + [43563] = 5, ACTIONS(497), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, anon_sym_SLASH_STAR, - ACTIONS(2894), 1, + ACTIONS(2690), 1, anon_sym_LBRACK, STATE(2208), 2, sym_line_comment, sym_block_comment, - ACTIONS(2896), 47, + ACTIONS(2692), 47, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -228310,17 +228356,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGin, sym_identifier, anon_sym_AT_LBRACK, - [43753] = 5, + [43626] = 6, ACTIONS(497), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, anon_sym_SLASH_STAR, - ACTIONS(2886), 1, + ACTIONS(2540), 1, anon_sym_LBRACK, + ACTIONS(4910), 1, + anon_sym_BANG, STATE(2209), 2, sym_line_comment, sym_block_comment, - ACTIONS(2888), 47, + ACTIONS(2542), 46, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -228349,7 +228397,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, @@ -228368,94 +228415,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGin, sym_identifier, anon_sym_AT_LBRACK, - [43816] = 24, + [43691] = 5, ACTIONS(497), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, anon_sym_SLASH_STAR, - ACTIONS(4820), 1, - anon_sym_LPAREN, - ACTIONS(4822), 1, + ACTIONS(2766), 1, anon_sym_LBRACK, - ACTIONS(4824), 1, - anon_sym_QMARK, - ACTIONS(4826), 1, - anon_sym_BANG, - ACTIONS(4854), 1, - anon_sym_as, - ACTIONS(4862), 1, - anon_sym_PLUS_PLUS, - ACTIONS(4864), 1, - anon_sym_DASH_DASH, - ACTIONS(4868), 1, - anon_sym_AMP_AMP, - ACTIONS(4870), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4872), 1, - anon_sym_or, - STATE(2236), 1, - sym_or_block, - STATE(2238), 1, - sym_argument_list, - STATE(4307), 1, - sym_type_parameters, - ACTIONS(4818), 2, - anon_sym_DOT, - anon_sym_QMARK_DOT, - ACTIONS(4828), 2, - anon_sym_LBRACK2, - anon_sym_POUND_LBRACK, - ACTIONS(4874), 2, - anon_sym_is, - anon_sym_BANGis, - ACTIONS(4876), 2, - anon_sym_in, - anon_sym_BANGin, STATE(2210), 2, sym_line_comment, sym_block_comment, - ACTIONS(4856), 4, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_CARET, - ACTIONS(4860), 6, - anon_sym_LT, - anon_sym_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(4858), 8, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_AMP, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - ACTIONS(1781), 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, - [43917] = 5, - ACTIONS(497), 1, - anon_sym_SLASH_SLASH, - ACTIONS(499), 1, - anon_sym_SLASH_STAR, - ACTIONS(2882), 1, - anon_sym_LBRACK, - STATE(2211), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(2884), 47, + ACTIONS(2768), 47, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -228503,75 +228473,143 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGin, sym_identifier, anon_sym_AT_LBRACK, - [43980] = 5, + [43754] = 15, ACTIONS(497), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, anon_sym_SLASH_STAR, - ACTIONS(2826), 1, + ACTIONS(4828), 1, + anon_sym_LPAREN, + ACTIONS(4830), 1, anon_sym_LBRACK, - STATE(2212), 2, + ACTIONS(4832), 1, + anon_sym_QMARK, + ACTIONS(4834), 1, + anon_sym_BANG, + STATE(2174), 1, + sym_argument_list, + STATE(2176), 1, + sym_or_block, + STATE(4133), 1, + sym_type_parameters, + ACTIONS(4826), 2, + anon_sym_DOT, + anon_sym_QMARK_DOT, + ACTIONS(4836), 2, + anon_sym_LBRACK2, + anon_sym_POUND_LBRACK, + STATE(2211), 2, sym_line_comment, sym_block_comment, - ACTIONS(2828), 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, + ACTIONS(4856), 4, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, + anon_sym_CARET, + ACTIONS(4858), 8, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, + anon_sym_AMP, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_GT_GT_GT, + anon_sym_AMP_CARET, + ACTIONS(1781), 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, - [44043] = 5, + [43837] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + STATE(2212), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(4914), 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(4912), 25, + anon_sym_DOT, + anon_sym_fn, + anon_sym_struct, + anon_sym_mut, + anon_sym_go, + anon_sym_spawn, + sym_none, + sym_true, + sym_false, + sym_nil, + anon_sym_if, + anon_sym_DOLLARif, + anon_sym_match, + anon_sym_select, + anon_sym_lock, + anon_sym_rlock, + anon_sym_unsafe, + anon_sym_sql, + sym_int_literal, + sym_pseudo_compile_time_identifier, + sym_identifier, + anon_sym_shared, + anon_sym_chan, + anon_sym_thread, + anon_sym_atomic, + [43900] = 5, ACTIONS(497), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, anon_sym_SLASH_STAR, - ACTIONS(2822), 1, + ACTIONS(2730), 1, anon_sym_LBRACK, STATE(2213), 2, sym_line_comment, sym_block_comment, - ACTIONS(2824), 47, + ACTIONS(2732), 47, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -228619,17 +228657,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGin, sym_identifier, anon_sym_AT_LBRACK, - [44106] = 5, + [43963] = 5, ACTIONS(497), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, anon_sym_SLASH_STAR, - ACTIONS(2818), 1, + ACTIONS(2117), 1, anon_sym_LBRACK, STATE(2214), 2, sym_line_comment, sym_block_comment, - ACTIONS(2820), 47, + ACTIONS(2119), 47, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -228677,17 +228715,75 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGin, sym_identifier, anon_sym_AT_LBRACK, - [44169] = 5, + [44026] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + STATE(2215), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(2916), 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(2918), 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, + [44089] = 5, ACTIONS(497), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, anon_sym_SLASH_STAR, - ACTIONS(2804), 1, + ACTIONS(2786), 1, anon_sym_LBRACK, - STATE(2215), 2, + STATE(2216), 2, sym_line_comment, sym_block_comment, - ACTIONS(2806), 47, + ACTIONS(2788), 47, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -228735,17 +228831,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGin, sym_identifier, anon_sym_AT_LBRACK, - [44232] = 5, + [44152] = 5, ACTIONS(497), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, anon_sym_SLASH_STAR, - ACTIONS(2800), 1, + ACTIONS(2796), 1, anon_sym_LBRACK, - STATE(2216), 2, + STATE(2217), 2, sym_line_comment, sym_block_comment, - ACTIONS(2802), 47, + ACTIONS(2798), 47, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -228793,17 +228889,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGin, sym_identifier, anon_sym_AT_LBRACK, - [44295] = 5, + [44215] = 5, ACTIONS(497), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, anon_sym_SLASH_STAR, - ACTIONS(2792), 1, + ACTIONS(2800), 1, anon_sym_LBRACK, - STATE(2217), 2, + STATE(2218), 2, sym_line_comment, sym_block_comment, - ACTIONS(2794), 47, + ACTIONS(2802), 47, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -228851,17 +228947,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGin, sym_identifier, anon_sym_AT_LBRACK, - [44358] = 5, + [44278] = 5, ACTIONS(497), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, anon_sym_SLASH_STAR, - ACTIONS(2733), 1, + ACTIONS(3060), 1, anon_sym_LBRACK, - STATE(2218), 2, + STATE(2219), 2, sym_line_comment, sym_block_comment, - ACTIONS(2735), 47, + ACTIONS(3062), 47, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -228909,17 +229005,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGin, sym_identifier, anon_sym_AT_LBRACK, - [44421] = 5, + [44341] = 5, ACTIONS(497), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, anon_sym_SLASH_STAR, - ACTIONS(2729), 1, + ACTIONS(2822), 1, anon_sym_LBRACK, - STATE(2219), 2, + STATE(2220), 2, sym_line_comment, sym_block_comment, - ACTIONS(2731), 47, + ACTIONS(2824), 47, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -228967,19 +229063,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGin, sym_identifier, anon_sym_AT_LBRACK, - [44484] = 6, + [44404] = 5, ACTIONS(497), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, anon_sym_SLASH_STAR, - ACTIONS(2523), 1, + ACTIONS(2826), 1, anon_sym_LBRACK, - ACTIONS(4914), 1, - anon_sym_BANG, - STATE(2220), 2, + STATE(2221), 2, sym_line_comment, sym_block_comment, - ACTIONS(2525), 46, + ACTIONS(2828), 47, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -229008,6 +229102,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, @@ -229026,17 +229121,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGin, sym_identifier, anon_sym_AT_LBRACK, - [44549] = 5, + [44467] = 5, ACTIONS(497), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, anon_sym_SLASH_STAR, - ACTIONS(2509), 1, + ACTIONS(2838), 1, anon_sym_LBRACK, - STATE(2221), 2, + STATE(2222), 2, sym_line_comment, sym_block_comment, - ACTIONS(2511), 47, + ACTIONS(2840), 47, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -229084,17 +229179,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGin, sym_identifier, anon_sym_AT_LBRACK, - [44612] = 5, + [44530] = 5, ACTIONS(497), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, anon_sym_SLASH_STAR, - ACTIONS(2241), 1, + ACTIONS(2834), 1, anon_sym_LBRACK, - STATE(2222), 2, + STATE(2223), 2, sym_line_comment, sym_block_comment, - ACTIONS(2243), 47, + ACTIONS(2836), 47, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -229142,17 +229237,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGin, sym_identifier, anon_sym_AT_LBRACK, - [44675] = 6, + [44593] = 6, ACTIONS(497), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, anon_sym_SLASH_STAR, - ACTIONS(2256), 1, + ACTIONS(2222), 1, anon_sym_LBRACK, - STATE(2223), 2, + STATE(2224), 2, sym_line_comment, sym_block_comment, - ACTIONS(2251), 12, + ACTIONS(2217), 12, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -229165,7 +229260,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mut, sym_identifier, anon_sym_AT_LBRACK, - ACTIONS(2253), 35, + ACTIONS(2219), 35, anon_sym_DOT, anon_sym_as, anon_sym_LPAREN, @@ -229201,17 +229296,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [44740] = 5, + [44658] = 5, ACTIONS(497), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, anon_sym_SLASH_STAR, - ACTIONS(2505), 1, + ACTIONS(2888), 1, anon_sym_LBRACK, - STATE(2224), 2, + STATE(2225), 2, sym_line_comment, sym_block_comment, - ACTIONS(2507), 47, + ACTIONS(2890), 47, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -229259,17 +229354,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGin, sym_identifier, anon_sym_AT_LBRACK, - [44803] = 5, + [44721] = 5, ACTIONS(497), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, anon_sym_SLASH_STAR, - ACTIONS(2171), 1, + ACTIONS(2892), 1, anon_sym_LBRACK, - STATE(2225), 2, + STATE(2226), 2, sym_line_comment, sym_block_comment, - ACTIONS(2173), 47, + ACTIONS(2894), 47, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -229317,17 +229412,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGin, sym_identifier, anon_sym_AT_LBRACK, - [44866] = 5, + [44784] = 5, ACTIONS(497), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, anon_sym_SLASH_STAR, - ACTIONS(2776), 1, + ACTIONS(2896), 1, anon_sym_LBRACK, - STATE(2226), 2, + STATE(2227), 2, sym_line_comment, sym_block_comment, - ACTIONS(2778), 47, + ACTIONS(2898), 47, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -229375,17 +229470,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGin, sym_identifier, anon_sym_AT_LBRACK, - [44929] = 5, + [44847] = 5, ACTIONS(497), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, anon_sym_SLASH_STAR, - ACTIONS(1953), 1, + ACTIONS(3066), 1, anon_sym_LBRACK, - STATE(2227), 2, + STATE(2228), 2, sym_line_comment, sym_block_comment, - ACTIONS(1951), 47, + ACTIONS(3068), 47, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -229433,17 +229528,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGin, sym_identifier, anon_sym_AT_LBRACK, - [44992] = 5, + [44910] = 5, ACTIONS(497), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, anon_sym_SLASH_STAR, - ACTIONS(2914), 1, + ACTIONS(2698), 1, anon_sym_LBRACK, - STATE(2228), 2, + STATE(2229), 2, sym_line_comment, sym_block_comment, - ACTIONS(2916), 47, + ACTIONS(2700), 47, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -229491,17 +229586,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGin, sym_identifier, anon_sym_AT_LBRACK, - [45055] = 5, + [44973] = 5, ACTIONS(497), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, anon_sym_SLASH_STAR, - ACTIONS(2157), 1, + ACTIONS(2227), 1, anon_sym_LBRACK, - STATE(2229), 2, + STATE(2230), 2, sym_line_comment, sym_block_comment, - ACTIONS(2159), 47, + ACTIONS(2229), 47, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -229549,17 +229644,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGin, sym_identifier, anon_sym_AT_LBRACK, - [45118] = 5, + [45036] = 5, ACTIONS(497), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, anon_sym_SLASH_STAR, - ACTIONS(2307), 1, + ACTIONS(2708), 1, anon_sym_LBRACK, - STATE(2230), 2, + STATE(2231), 2, sym_line_comment, sym_block_comment, - ACTIONS(2309), 47, + ACTIONS(2710), 47, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -229607,17 +229702,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGin, sym_identifier, anon_sym_AT_LBRACK, - [45181] = 5, + [45099] = 5, ACTIONS(497), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, anon_sym_SLASH_STAR, - ACTIONS(2770), 1, + ACTIONS(2712), 1, anon_sym_LBRACK, - STATE(2231), 2, + STATE(2232), 2, sym_line_comment, sym_block_comment, - ACTIONS(2772), 47, + ACTIONS(2714), 47, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -229665,17 +229760,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGin, sym_identifier, anon_sym_AT_LBRACK, - [45244] = 5, + [45162] = 5, ACTIONS(497), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, anon_sym_SLASH_STAR, - ACTIONS(2747), 1, + ACTIONS(2135), 1, anon_sym_LBRACK, - STATE(2232), 2, + STATE(2233), 2, sym_line_comment, sym_block_comment, - ACTIONS(2749), 47, + ACTIONS(2137), 47, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -229723,17 +229818,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGin, sym_identifier, anon_sym_AT_LBRACK, - [45307] = 5, + [45225] = 5, ACTIONS(497), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, anon_sym_SLASH_STAR, - ACTIONS(2743), 1, + ACTIONS(2722), 1, anon_sym_LBRACK, - STATE(2233), 2, + STATE(2234), 2, sym_line_comment, sym_block_comment, - ACTIONS(2745), 47, + ACTIONS(2724), 47, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -229781,17 +229876,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGin, sym_identifier, anon_sym_AT_LBRACK, - [45370] = 5, + [45288] = 5, ACTIONS(497), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, anon_sym_SLASH_STAR, - ACTIONS(2679), 1, + ACTIONS(2742), 1, anon_sym_LBRACK, - STATE(2234), 2, + STATE(2235), 2, sym_line_comment, sym_block_comment, - ACTIONS(2681), 47, + ACTIONS(2744), 47, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -229839,17 +229934,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGin, sym_identifier, anon_sym_AT_LBRACK, - [45433] = 5, + [45351] = 5, ACTIONS(497), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, anon_sym_SLASH_STAR, - ACTIONS(2665), 1, + ACTIONS(2197), 1, anon_sym_LBRACK, - STATE(2235), 2, + STATE(2236), 2, sym_line_comment, sym_block_comment, - ACTIONS(2667), 47, + ACTIONS(2199), 47, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -229897,17 +229992,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGin, sym_identifier, anon_sym_AT_LBRACK, - [45496] = 5, + [45414] = 5, ACTIONS(497), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, anon_sym_SLASH_STAR, - ACTIONS(2513), 1, + ACTIONS(2748), 1, anon_sym_LBRACK, - STATE(2236), 2, + STATE(2237), 2, sym_line_comment, sym_block_comment, - ACTIONS(2515), 47, + ACTIONS(2750), 47, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -229955,17 +230050,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGin, sym_identifier, anon_sym_AT_LBRACK, - [45559] = 5, + [45477] = 5, ACTIONS(497), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, anon_sym_SLASH_STAR, - ACTIONS(2653), 1, + ACTIONS(2754), 1, anon_sym_LBRACK, - STATE(2237), 2, + STATE(2238), 2, sym_line_comment, sym_block_comment, - ACTIONS(2655), 47, + ACTIONS(2756), 47, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -230013,17 +230108,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGin, sym_identifier, anon_sym_AT_LBRACK, - [45622] = 5, + [45540] = 5, ACTIONS(497), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, anon_sym_SLASH_STAR, - ACTIONS(2517), 1, + ACTIONS(2860), 1, anon_sym_LBRACK, - STATE(2238), 2, + STATE(2239), 2, sym_line_comment, sym_block_comment, - ACTIONS(2519), 47, + ACTIONS(2862), 47, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -230071,17 +230166,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGin, sym_identifier, anon_sym_AT_LBRACK, - [45685] = 5, + [45603] = 5, ACTIONS(497), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, anon_sym_SLASH_STAR, - ACTIONS(2645), 1, + ACTIONS(2872), 1, anon_sym_LBRACK, - STATE(2239), 2, + STATE(2240), 2, sym_line_comment, sym_block_comment, - ACTIONS(2647), 47, + ACTIONS(2874), 47, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -230129,75 +230224,75 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGin, sym_identifier, anon_sym_AT_LBRACK, - [45748] = 5, - ACTIONS(497), 1, + [45666] = 5, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, - ACTIONS(499), 1, + ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(2737), 1, - anon_sym_LBRACK, - STATE(2240), 2, + STATE(2241), 2, sym_line_comment, sym_block_comment, - ACTIONS(2739), 47, - anon_sym_LF, - anon_sym_CR, - anon_sym_CR_LF, - anon_sym_SEMI, - anon_sym_DOT, - anon_sym_as, + ACTIONS(2912), 24, + anon_sym_LBRACE, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_LPAREN, - anon_sym___global, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, anon_sym_STAR, - anon_sym_SLASH, anon_sym_PERCENT, - anon_sym_LT, - anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_DOT_DOT_DOT, - anon_sym_pub, - anon_sym_mut, + anon_sym_LBRACK, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_LBRACK2, anon_sym_CARET, - anon_sym_AMP, anon_sym_LT_LT, - anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_or, anon_sym_QMARK_DOT, anon_sym_POUND_LBRACK, - anon_sym_is, anon_sym_BANGis, - anon_sym_in, anon_sym_BANGin, + anon_sym_map_LBRACK, + ACTIONS(2914), 24, + anon_sym_DOT, + anon_sym_as, + anon_sym_PIPE, + anon_sym_fn, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + anon_sym_struct, + anon_sym_QMARK, + anon_sym_BANG, + anon_sym_LBRACK2, + anon_sym_AMP, + anon_sym_GT_GT, + anon_sym_or, + anon_sym_is, + anon_sym_in, sym_identifier, - anon_sym_AT_LBRACK, - [45811] = 5, + anon_sym_shared, + anon_sym_chan, + anon_sym_thread, + anon_sym_atomic, + anon_sym_DOT_DOT, + [45729] = 5, ACTIONS(497), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, anon_sym_SLASH_STAR, - ACTIONS(2751), 1, + ACTIONS(2670), 1, anon_sym_LBRACK, - STATE(2241), 2, + STATE(2242), 2, sym_line_comment, sym_block_comment, - ACTIONS(2753), 47, + ACTIONS(2672), 47, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -230245,17 +230340,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGin, sym_identifier, anon_sym_AT_LBRACK, - [45874] = 5, + [45792] = 5, ACTIONS(497), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, anon_sym_SLASH_STAR, - ACTIONS(2755), 1, + ACTIONS(2922), 1, anon_sym_LBRACK, - STATE(2242), 2, + STATE(2243), 2, sym_line_comment, sym_block_comment, - ACTIONS(2757), 47, + ACTIONS(2924), 47, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -230303,17 +230398,94 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGin, sym_identifier, anon_sym_AT_LBRACK, - [45937] = 5, + [45855] = 24, ACTIONS(497), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, anon_sym_SLASH_STAR, - ACTIONS(2780), 1, + ACTIONS(4828), 1, + anon_sym_LPAREN, + ACTIONS(4830), 1, anon_sym_LBRACK, - STATE(2243), 2, + ACTIONS(4832), 1, + anon_sym_QMARK, + ACTIONS(4834), 1, + anon_sym_BANG, + ACTIONS(4854), 1, + anon_sym_as, + ACTIONS(4862), 1, + anon_sym_PLUS_PLUS, + ACTIONS(4864), 1, + anon_sym_DASH_DASH, + ACTIONS(4868), 1, + anon_sym_AMP_AMP, + ACTIONS(4870), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4872), 1, + anon_sym_or, + STATE(2174), 1, + sym_argument_list, + STATE(2176), 1, + sym_or_block, + STATE(4133), 1, + sym_type_parameters, + ACTIONS(4826), 2, + anon_sym_DOT, + anon_sym_QMARK_DOT, + ACTIONS(4836), 2, + anon_sym_LBRACK2, + anon_sym_POUND_LBRACK, + ACTIONS(4874), 2, + anon_sym_is, + anon_sym_BANGis, + ACTIONS(4876), 2, + anon_sym_in, + anon_sym_BANGin, + STATE(2244), 2, sym_line_comment, sym_block_comment, - ACTIONS(2782), 47, + ACTIONS(4856), 4, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_CARET, + ACTIONS(4860), 6, + anon_sym_LT, + anon_sym_GT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(4858), 8, + anon_sym_STAR, + anon_sym_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(1773), 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, + [45956] = 5, + ACTIONS(497), 1, + anon_sym_SLASH_SLASH, + ACTIONS(499), 1, + anon_sym_SLASH_STAR, + ACTIONS(2848), 1, + anon_sym_LBRACK, + STATE(2245), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(2850), 47, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -230361,17 +230533,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGin, sym_identifier, anon_sym_AT_LBRACK, - [46000] = 5, + [46019] = 5, ACTIONS(497), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, anon_sym_SLASH_STAR, - ACTIONS(2876), 1, + ACTIONS(2830), 1, anon_sym_LBRACK, - STATE(2244), 2, + STATE(2246), 2, sym_line_comment, sym_block_comment, - ACTIONS(2878), 47, + ACTIONS(2832), 47, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -230419,17 +230591,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGin, sym_identifier, anon_sym_AT_LBRACK, - [46063] = 5, + [46082] = 5, ACTIONS(497), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, anon_sym_SLASH_STAR, - ACTIONS(2890), 1, + ACTIONS(2792), 1, anon_sym_LBRACK, - STATE(2245), 2, + STATE(2247), 2, sym_line_comment, sym_block_comment, - ACTIONS(2892), 47, + ACTIONS(2794), 47, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -230477,17 +230649,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGin, sym_identifier, anon_sym_AT_LBRACK, - [46126] = 5, + [46145] = 5, ACTIONS(497), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, anon_sym_SLASH_STAR, - ACTIONS(3040), 1, + ACTIONS(2738), 1, anon_sym_LBRACK, - STATE(2246), 2, + STATE(2248), 2, sym_line_comment, sym_block_comment, - ACTIONS(3042), 47, + ACTIONS(2740), 47, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -230535,17 +230707,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGin, sym_identifier, anon_sym_AT_LBRACK, - [46189] = 5, + [46208] = 5, ACTIONS(497), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, anon_sym_SLASH_STAR, - ACTIONS(2759), 1, + ACTIONS(2780), 1, anon_sym_LBRACK, - STATE(2247), 2, + STATE(2249), 2, sym_line_comment, sym_block_comment, - ACTIONS(2761), 47, + ACTIONS(2782), 47, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -230593,17 +230765,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGin, sym_identifier, anon_sym_AT_LBRACK, - [46252] = 5, + [46271] = 5, ACTIONS(497), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, anon_sym_SLASH_STAR, - ACTIONS(2766), 1, + ACTIONS(2716), 1, anon_sym_LBRACK, - STATE(2248), 2, + STATE(2250), 2, sym_line_comment, sym_block_comment, - ACTIONS(2768), 47, + ACTIONS(2718), 47, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -230651,17 +230823,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGin, sym_identifier, anon_sym_AT_LBRACK, - [46315] = 5, + [46334] = 5, ACTIONS(497), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, anon_sym_SLASH_STAR, - ACTIONS(2485), 1, + ACTIONS(2499), 1, anon_sym_LBRACK, - STATE(2249), 2, + STATE(2251), 2, sym_line_comment, sym_block_comment, - ACTIONS(2487), 47, + ACTIONS(2501), 47, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -230709,17 +230881,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGin, sym_identifier, anon_sym_AT_LBRACK, - [46378] = 5, + [46397] = 5, ACTIONS(497), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, anon_sym_SLASH_STAR, - ACTIONS(2471), 1, + ACTIONS(2309), 1, anon_sym_LBRACK, - STATE(2250), 2, + STATE(2252), 2, sym_line_comment, sym_block_comment, - ACTIONS(2473), 47, + ACTIONS(2311), 47, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -230767,17 +230939,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGin, sym_identifier, anon_sym_AT_LBRACK, - [46441] = 5, + [46460] = 5, ACTIONS(497), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, anon_sym_SLASH_STAR, - ACTIONS(2351), 1, + ACTIONS(2301), 1, anon_sym_LBRACK, - STATE(2251), 2, + STATE(2253), 2, sym_line_comment, sym_block_comment, - ACTIONS(2353), 47, + ACTIONS(2303), 47, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -230825,76 +230997,99 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGin, sym_identifier, anon_sym_AT_LBRACK, - [46504] = 6, + [46523] = 29, ACTIONS(497), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, anon_sym_SLASH_STAR, - ACTIONS(2759), 1, - anon_sym_LBRACK, - ACTIONS(2763), 1, + ACTIONS(1889), 1, anon_sym_DOT, - STATE(2252), 2, + ACTIONS(2473), 1, + anon_sym_LBRACK, + ACTIONS(3426), 1, + sym_identifier, + ACTIONS(3430), 1, + anon_sym_fn, + ACTIONS(3432), 1, + anon_sym_STAR, + ACTIONS(3434), 1, + anon_sym_struct, + ACTIONS(3436), 1, + anon_sym_QMARK, + ACTIONS(3438), 1, + anon_sym_BANG, + ACTIONS(3440), 1, + anon_sym_LBRACK2, + ACTIONS(3442), 1, + anon_sym_AMP, + ACTIONS(3444), 1, + anon_sym_shared, + ACTIONS(3446), 1, + anon_sym_map_LBRACK, + ACTIONS(3448), 1, + anon_sym_chan, + ACTIONS(3450), 1, + anon_sym_thread, + ACTIONS(3452), 1, + anon_sym_atomic, + ACTIONS(4916), 1, + anon_sym_LPAREN, + ACTIONS(4918), 1, + anon_sym_LT2, + STATE(3337), 1, + sym_plain_type, + STATE(3343), 1, + sym_signature, + STATE(3674), 1, + sym_generic_parameters, + STATE(4351), 1, + sym_reference_expression, + STATE(2254), 2, sym_line_comment, sym_block_comment, - ACTIONS(2761), 46, + STATE(2429), 2, + sym_parameter_list, + sym_type_parameter_list, + STATE(3305), 2, + sym_type_reference_expression, + sym_qualified_type, + STATE(3362), 4, + sym__plain_type_without_special, + sym_multi_return_type, + sym_result_type, + sym_option_type, + ACTIONS(2475), 7, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, - anon_sym_SEMI, - anon_sym_as, - anon_sym_COMMA, anon_sym_RBRACE, - anon_sym_LPAREN, anon_sym___global, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_LT, - anon_sym_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, anon_sym_pub, anon_sym_mut, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_LBRACK2, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_or, - anon_sym_QMARK_DOT, - anon_sym_POUND_LBRACK, - anon_sym_is, - anon_sym_BANGis, - anon_sym_in, - anon_sym_BANGin, - sym_identifier, - anon_sym_AT_LBRACK, - [46569] = 5, + STATE(3340), 12, + sym_anon_struct_type, + sym_fixed_array_type, + sym_array_type, + sym_pointer_type, + sym_wrong_pointer_type, + sym_map_type, + sym_channel_type, + sym_shared_type, + sym_thread_type, + sym_atomic_type, + sym_generic_type, + sym_function_type, + [46634] = 5, ACTIONS(497), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, anon_sym_SLASH_STAR, - ACTIONS(2163), 1, + ACTIONS(2295), 1, anon_sym_LBRACK, - STATE(2253), 2, + STATE(2255), 2, sym_line_comment, sym_block_comment, - ACTIONS(2165), 47, + ACTIONS(2297), 47, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -230942,23 +231137,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGin, sym_identifier, anon_sym_AT_LBRACK, - [46632] = 6, + [46697] = 5, ACTIONS(497), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, anon_sym_SLASH_STAR, - ACTIONS(1853), 1, - anon_sym_DOT, - ACTIONS(2505), 1, + ACTIONS(2209), 1, anon_sym_LBRACK, - STATE(2254), 2, + STATE(2256), 2, sym_line_comment, sym_block_comment, - ACTIONS(2507), 46, + ACTIONS(2211), 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, @@ -231001,17 +231195,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGin, sym_identifier, anon_sym_AT_LBRACK, - [46697] = 5, + [46760] = 5, ACTIONS(497), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, anon_sym_SLASH_STAR, - ACTIONS(2689), 1, + ACTIONS(2473), 1, anon_sym_LBRACK, - STATE(2255), 2, + STATE(2257), 2, sym_line_comment, sym_block_comment, - ACTIONS(2691), 47, + ACTIONS(2475), 47, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -231059,17 +231253,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGin, sym_identifier, anon_sym_AT_LBRACK, - [46760] = 5, + [46823] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - STATE(2256), 2, + STATE(2258), 2, sym_line_comment, sym_block_comment, - ACTIONS(1988), 23, + ACTIONS(4922), 22, anon_sym_LBRACE, - anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_PLUS, anon_sym_DASH, @@ -231091,7 +231284,7 @@ static const uint16_t ts_small_parse_table[] = { sym___c_single_quote, sym___r_double_quote, sym___r_single_quote, - ACTIONS(4916), 25, + ACTIONS(4920), 25, anon_sym_DOT, anon_sym_fn, anon_sym_struct, @@ -231117,74 +231310,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_chan, anon_sym_thread, anon_sym_atomic, - [46823] = 24, + [46885] = 15, ACTIONS(497), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, anon_sym_SLASH_STAR, - ACTIONS(4820), 1, + ACTIONS(4828), 1, anon_sym_LPAREN, - ACTIONS(4822), 1, + ACTIONS(4830), 1, anon_sym_LBRACK, - ACTIONS(4824), 1, + ACTIONS(4832), 1, anon_sym_QMARK, - ACTIONS(4826), 1, + ACTIONS(4834), 1, anon_sym_BANG, - ACTIONS(4854), 1, - anon_sym_as, - ACTIONS(4862), 1, - anon_sym_PLUS_PLUS, - ACTIONS(4864), 1, - anon_sym_DASH_DASH, - ACTIONS(4872), 1, - anon_sym_or, - ACTIONS(4924), 1, - anon_sym_AMP_AMP, - ACTIONS(4926), 1, - anon_sym_PIPE_PIPE, - STATE(2236), 1, - sym_or_block, - STATE(2238), 1, + STATE(2174), 1, sym_argument_list, - STATE(4307), 1, + STATE(2176), 1, + sym_or_block, + STATE(4133), 1, sym_type_parameters, - ACTIONS(4818), 2, + ACTIONS(4826), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - ACTIONS(4828), 2, + ACTIONS(4836), 2, anon_sym_LBRACK2, anon_sym_POUND_LBRACK, - ACTIONS(4874), 2, - anon_sym_is, - anon_sym_BANGis, - ACTIONS(4928), 2, - anon_sym_in, - anon_sym_BANGin, - STATE(2257), 2, + STATE(2259), 2, sym_line_comment, sym_block_comment, - ACTIONS(4918), 4, + ACTIONS(4924), 4, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_CARET, - ACTIONS(4922), 6, - anon_sym_LT, - anon_sym_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(3720), 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(4920), 8, + ACTIONS(4926), 8, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, @@ -231193,18 +231352,43 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - [46923] = 24, + ACTIONS(1781), 24, + anon_sym_LF, + anon_sym_CR, + anon_sym_CR_LF, + anon_sym_SEMI, + anon_sym_as, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LT, + anon_sym_GT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_DOT_DOT_DOT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_or, + anon_sym_is, + anon_sym_BANGis, + anon_sym_in, + anon_sym_BANGin, + sym_identifier, + [46967] = 24, ACTIONS(497), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, anon_sym_SLASH_STAR, - ACTIONS(4820), 1, + ACTIONS(4828), 1, anon_sym_LPAREN, - ACTIONS(4822), 1, + ACTIONS(4830), 1, anon_sym_LBRACK, - ACTIONS(4824), 1, + ACTIONS(4832), 1, anon_sym_QMARK, - ACTIONS(4826), 1, + ACTIONS(4834), 1, anon_sym_BANG, ACTIONS(4854), 1, anon_sym_as, @@ -231214,44 +231398,44 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, ACTIONS(4872), 1, anon_sym_or, - ACTIONS(4924), 1, + ACTIONS(4930), 1, anon_sym_AMP_AMP, - ACTIONS(4926), 1, + ACTIONS(4932), 1, anon_sym_PIPE_PIPE, - STATE(2236), 1, - sym_or_block, - STATE(2238), 1, + STATE(2174), 1, sym_argument_list, - STATE(4307), 1, + STATE(2176), 1, + sym_or_block, + STATE(4133), 1, sym_type_parameters, - ACTIONS(4818), 2, + ACTIONS(4826), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - ACTIONS(4828), 2, + ACTIONS(4836), 2, anon_sym_LBRACK2, anon_sym_POUND_LBRACK, ACTIONS(4874), 2, anon_sym_is, anon_sym_BANGis, - ACTIONS(4928), 2, + ACTIONS(4934), 2, anon_sym_in, anon_sym_BANGin, - STATE(2258), 2, + STATE(2260), 2, sym_line_comment, sym_block_comment, - ACTIONS(4918), 4, + ACTIONS(4924), 4, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_CARET, - ACTIONS(4922), 6, + 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(1781), 8, + ACTIONS(3730), 8, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -231260,7 +231444,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACE, anon_sym_DOT_DOT_DOT, sym_identifier, - ACTIONS(4920), 8, + ACTIONS(4926), 8, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, @@ -231269,91 +231453,83 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - [47023] = 24, - ACTIONS(497), 1, + [47067] = 16, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, - ACTIONS(499), 1, + ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(4820), 1, + ACTIONS(4936), 1, + anon_sym_DOT, + ACTIONS(4938), 1, anon_sym_LPAREN, - ACTIONS(4822), 1, + ACTIONS(4940), 1, anon_sym_LBRACK, - ACTIONS(4824), 1, + ACTIONS(4942), 1, anon_sym_QMARK, - ACTIONS(4826), 1, + ACTIONS(4944), 1, anon_sym_BANG, - ACTIONS(4854), 1, - anon_sym_as, - ACTIONS(4862), 1, - anon_sym_PLUS_PLUS, - ACTIONS(4864), 1, - anon_sym_DASH_DASH, - ACTIONS(4872), 1, - anon_sym_or, - ACTIONS(4924), 1, - anon_sym_AMP_AMP, - ACTIONS(4926), 1, - anon_sym_PIPE_PIPE, - STATE(2236), 1, - sym_or_block, - STATE(2238), 1, - sym_argument_list, - STATE(4307), 1, - sym_type_parameters, - ACTIONS(4818), 2, - anon_sym_DOT, - anon_sym_QMARK_DOT, - ACTIONS(4828), 2, + ACTIONS(4946), 1, anon_sym_LBRACK2, + ACTIONS(4948), 1, + anon_sym_QMARK_DOT, + ACTIONS(4950), 1, anon_sym_POUND_LBRACK, - ACTIONS(4874), 2, - anon_sym_is, - anon_sym_BANGis, - ACTIONS(4928), 2, - anon_sym_in, - anon_sym_BANGin, - STATE(2259), 2, + STATE(2298), 1, + sym_argument_list, + STATE(2299), 1, + sym_or_block, + STATE(4251), 1, + sym_type_parameters, + STATE(2261), 2, sym_line_comment, sym_block_comment, - ACTIONS(4918), 4, + ACTIONS(1785), 9, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - anon_sym_CARET, - ACTIONS(4922), 6, + anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(1773), 8, - anon_sym_LF, - anon_sym_CR, - anon_sym_CR_LF, + anon_sym_COLON, + anon_sym_AMP, + anon_sym_GT_GT, + ACTIONS(1783), 27, anon_sym_SEMI, + anon_sym_as, + anon_sym_LBRACE, anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_DOT_DOT_DOT, - sym_identifier, - ACTIONS(4920), 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, - [47123] = 5, + 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, + [47151] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - STATE(2260), 2, + STATE(2262), 2, sym_line_comment, sym_block_comment, - ACTIONS(1917), 13, + ACTIONS(1809), 13, anon_sym_DOT, anon_sym_PIPE, anon_sym_PLUS, @@ -231367,7 +231543,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(1915), 34, + ACTIONS(1807), 34, anon_sym_SEMI, anon_sym_as, anon_sym_LBRACE, @@ -231402,20 +231578,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGin, anon_sym_COLON_EQ, anon_sym_DOT_DOT, - [47185] = 6, + [47213] = 6, ACTIONS(497), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, anon_sym_SLASH_STAR, - ACTIONS(2661), 1, + ACTIONS(1807), 1, anon_sym_LBRACK, - ACTIONS(1951), 2, + ACTIONS(1987), 2, anon_sym_LBRACE, anon_sym_COMMA, - STATE(2261), 2, + STATE(2263), 2, sym_line_comment, sym_block_comment, - ACTIONS(2663), 44, + ACTIONS(1809), 44, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -231460,15 +231636,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGin, sym_identifier, anon_sym_AT_LBRACK, - [47249] = 5, + [47277] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - STATE(2262), 2, + STATE(2264), 2, sym_line_comment, sym_block_comment, - ACTIONS(1845), 13, + ACTIONS(1813), 13, anon_sym_DOT, anon_sym_PIPE, anon_sym_PLUS, @@ -231482,7 +231658,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(1843), 34, + ACTIONS(1811), 34, anon_sym_SEMI, anon_sym_as, anon_sym_LBRACE, @@ -231517,34 +231693,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGin, anon_sym_COLON_EQ, anon_sym_DOT_DOT, - [47311] = 16, + [47339] = 16, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(4930), 1, + ACTIONS(4936), 1, anon_sym_DOT, - ACTIONS(4932), 1, + ACTIONS(4938), 1, anon_sym_LPAREN, - ACTIONS(4934), 1, + ACTIONS(4940), 1, anon_sym_LBRACK, - ACTIONS(4936), 1, + ACTIONS(4942), 1, anon_sym_QMARK, - ACTIONS(4938), 1, + ACTIONS(4944), 1, anon_sym_BANG, - ACTIONS(4940), 1, + ACTIONS(4946), 1, anon_sym_LBRACK2, - ACTIONS(4942), 1, + ACTIONS(4948), 1, anon_sym_QMARK_DOT, - ACTIONS(4944), 1, + ACTIONS(4950), 1, anon_sym_POUND_LBRACK, - STATE(2396), 1, - sym_or_block, - STATE(2397), 1, + STATE(2298), 1, sym_argument_list, - STATE(4127), 1, + STATE(2299), 1, + sym_or_block, + STATE(4251), 1, sym_type_parameters, - STATE(2263), 2, + STATE(2265), 2, sym_line_comment, sym_block_comment, ACTIONS(1765), 9, @@ -231585,247 +231761,131 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGin, anon_sym_COLON_EQ, anon_sym_DOT_DOT, - [47395] = 16, - ACTIONS(3), 1, + [47423] = 14, + ACTIONS(497), 1, anon_sym_SLASH_SLASH, - ACTIONS(5), 1, + ACTIONS(499), 1, anon_sym_SLASH_STAR, - ACTIONS(4930), 1, - anon_sym_DOT, - ACTIONS(4932), 1, + ACTIONS(4828), 1, anon_sym_LPAREN, - ACTIONS(4934), 1, + ACTIONS(4830), 1, anon_sym_LBRACK, - ACTIONS(4936), 1, + ACTIONS(4832), 1, anon_sym_QMARK, - ACTIONS(4938), 1, + ACTIONS(4834), 1, anon_sym_BANG, - ACTIONS(4940), 1, - anon_sym_LBRACK2, - ACTIONS(4942), 1, - anon_sym_QMARK_DOT, - ACTIONS(4944), 1, - anon_sym_POUND_LBRACK, - STATE(2396), 1, - sym_or_block, - STATE(2397), 1, + STATE(2174), 1, sym_argument_list, - STATE(4127), 1, + STATE(2176), 1, + sym_or_block, + STATE(4133), 1, sym_type_parameters, - STATE(2264), 2, + ACTIONS(4826), 2, + anon_sym_DOT, + anon_sym_QMARK_DOT, + ACTIONS(4836), 2, + anon_sym_LBRACK2, + anon_sym_POUND_LBRACK, + STATE(2266), 2, sym_line_comment, sym_block_comment, - ACTIONS(1777), 9, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - anon_sym_COLON, - anon_sym_AMP, - anon_sym_GT_GT, - ACTIONS(1775), 27, - anon_sym_SEMI, - anon_sym_as, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_RPAREN, + ACTIONS(4926), 8, anon_sym_STAR, + anon_sym_SLASH, anon_sym_PERCENT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_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_is, - anon_sym_BANGis, - anon_sym_in, - anon_sym_BANGin, - anon_sym_COLON_EQ, - anon_sym_DOT_DOT, - [47479] = 5, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_STAR, - STATE(2265), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(4948), 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(4946), 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, - [47541] = 6, - ACTIONS(497), 1, - anon_sym_SLASH_SLASH, - ACTIONS(499), 1, - anon_sym_SLASH_STAR, - ACTIONS(1915), 1, - anon_sym_LBRACK, - ACTIONS(1951), 2, - anon_sym_LBRACE, - anon_sym_COMMA, - STATE(2266), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(1917), 44, + ACTIONS(1765), 28, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, - anon_sym_DOT, + anon_sym_SEMI, anon_sym_as, + anon_sym_COMMA, anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym___global, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, anon_sym_LT, anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - anon_sym_pub, - anon_sym_mut, + anon_sym_DOT_DOT_DOT, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_LBRACK2, anon_sym_CARET, - anon_sym_AMP, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_or, - anon_sym_QMARK_DOT, - anon_sym_POUND_LBRACK, anon_sym_is, anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, sym_identifier, - anon_sym_AT_LBRACK, - [47605] = 14, - ACTIONS(497), 1, + [47503] = 16, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, - ACTIONS(499), 1, + ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(4820), 1, + ACTIONS(4936), 1, + anon_sym_DOT, + ACTIONS(4938), 1, anon_sym_LPAREN, - ACTIONS(4822), 1, + ACTIONS(4940), 1, anon_sym_LBRACK, - ACTIONS(4824), 1, + ACTIONS(4942), 1, anon_sym_QMARK, - ACTIONS(4826), 1, + ACTIONS(4944), 1, anon_sym_BANG, - STATE(2236), 1, - sym_or_block, - STATE(2238), 1, - sym_argument_list, - STATE(4307), 1, - sym_type_parameters, - ACTIONS(4818), 2, - anon_sym_DOT, - anon_sym_QMARK_DOT, - ACTIONS(4828), 2, + ACTIONS(4946), 1, anon_sym_LBRACK2, + ACTIONS(4948), 1, + anon_sym_QMARK_DOT, + ACTIONS(4950), 1, anon_sym_POUND_LBRACK, + STATE(2298), 1, + sym_argument_list, + STATE(2299), 1, + sym_or_block, + STATE(4251), 1, + sym_type_parameters, STATE(2267), 2, sym_line_comment, sym_block_comment, - ACTIONS(4920), 8, - anon_sym_STAR, + ACTIONS(1769), 9, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, anon_sym_SLASH, - anon_sym_PERCENT, + anon_sym_LT, + anon_sym_GT, + anon_sym_COLON, anon_sym_AMP, - anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - ACTIONS(1785), 28, - anon_sym_LF, - anon_sym_CR, - anon_sym_CR_LF, + ACTIONS(1767), 27, anon_sym_SEMI, anon_sym_as, + anon_sym_LBRACE, anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT, - anon_sym_GT, + anon_sym_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_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, @@ -231833,41 +231893,42 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - sym_identifier, - [47685] = 15, + anon_sym_COLON_EQ, + anon_sym_DOT_DOT, + [47587] = 15, ACTIONS(497), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, anon_sym_SLASH_STAR, - ACTIONS(4820), 1, + ACTIONS(4828), 1, anon_sym_LPAREN, - ACTIONS(4822), 1, + ACTIONS(4830), 1, anon_sym_LBRACK, - ACTIONS(4824), 1, + ACTIONS(4832), 1, anon_sym_QMARK, - ACTIONS(4826), 1, + ACTIONS(4834), 1, anon_sym_BANG, - STATE(2236), 1, - sym_or_block, - STATE(2238), 1, + STATE(2174), 1, sym_argument_list, - STATE(4307), 1, + STATE(2176), 1, + sym_or_block, + STATE(4133), 1, sym_type_parameters, - ACTIONS(4818), 2, + ACTIONS(4826), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - ACTIONS(4828), 2, + ACTIONS(4836), 2, anon_sym_LBRACK2, anon_sym_POUND_LBRACK, STATE(2268), 2, sym_line_comment, sym_block_comment, - ACTIONS(4918), 4, + ACTIONS(4924), 4, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_CARET, - ACTIONS(4920), 8, + ACTIONS(4926), 8, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, @@ -231876,7 +231937,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(1785), 24, + ACTIONS(1765), 24, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -231901,178 +231962,108 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_in, anon_sym_BANGin, sym_identifier, - [47767] = 17, + [47669] = 6, ACTIONS(497), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, anon_sym_SLASH_STAR, - ACTIONS(4820), 1, - anon_sym_LPAREN, - ACTIONS(4822), 1, + ACTIONS(2674), 1, anon_sym_LBRACK, - ACTIONS(4824), 1, - anon_sym_QMARK, - ACTIONS(4826), 1, - anon_sym_BANG, - STATE(2236), 1, - sym_or_block, - STATE(2238), 1, - sym_argument_list, - STATE(4307), 1, - sym_type_parameters, - ACTIONS(4818), 2, - anon_sym_DOT, - anon_sym_QMARK_DOT, - ACTIONS(4828), 2, - anon_sym_LBRACK2, - anon_sym_POUND_LBRACK, - ACTIONS(4928), 2, - anon_sym_in, - anon_sym_BANGin, + ACTIONS(1987), 2, + anon_sym_LBRACE, + anon_sym_COMMA, STATE(2269), 2, sym_line_comment, sym_block_comment, - ACTIONS(4918), 4, + ACTIONS(2676), 44, + anon_sym_LF, + anon_sym_CR, + anon_sym_CR_LF, + anon_sym_DOT, + anon_sym_as, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym___global, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - anon_sym_CARET, - ACTIONS(4922), 6, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, anon_sym_LT, anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(4920), 8, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, + 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(1785), 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, - [47853] = 5, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_STAR, - STATE(2270), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(4902), 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(4900), 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, - [47915] = 18, + anon_sym_AT_LBRACK, + [47733] = 17, ACTIONS(497), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, anon_sym_SLASH_STAR, - ACTIONS(4820), 1, + ACTIONS(4828), 1, anon_sym_LPAREN, - ACTIONS(4822), 1, + ACTIONS(4830), 1, anon_sym_LBRACK, - ACTIONS(4824), 1, + ACTIONS(4832), 1, anon_sym_QMARK, - ACTIONS(4826), 1, + ACTIONS(4834), 1, anon_sym_BANG, - ACTIONS(4924), 1, - anon_sym_AMP_AMP, - STATE(2236), 1, - sym_or_block, - STATE(2238), 1, + STATE(2174), 1, sym_argument_list, - STATE(4307), 1, + STATE(2176), 1, + sym_or_block, + STATE(4133), 1, sym_type_parameters, - ACTIONS(4818), 2, + ACTIONS(4826), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - ACTIONS(4828), 2, + ACTIONS(4836), 2, anon_sym_LBRACK2, anon_sym_POUND_LBRACK, - ACTIONS(4928), 2, + ACTIONS(4934), 2, anon_sym_in, anon_sym_BANGin, - STATE(2271), 2, + STATE(2270), 2, sym_line_comment, sym_block_comment, - ACTIONS(4918), 4, + ACTIONS(4924), 4, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_CARET, - ACTIONS(4922), 6, + 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, + ACTIONS(4926), 8, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, @@ -232081,7 +232072,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(1785), 15, + ACTIONS(1765), 16, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -232092,45 +232083,58 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, + anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_or, anon_sym_is, anon_sym_BANGis, sym_identifier, - [48003] = 15, + [47819] = 18, ACTIONS(497), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, anon_sym_SLASH_STAR, - ACTIONS(4820), 1, + ACTIONS(4828), 1, anon_sym_LPAREN, - ACTIONS(4822), 1, + ACTIONS(4830), 1, anon_sym_LBRACK, - ACTIONS(4824), 1, + ACTIONS(4832), 1, anon_sym_QMARK, - ACTIONS(4826), 1, + ACTIONS(4834), 1, anon_sym_BANG, - STATE(2236), 1, - sym_or_block, - STATE(2238), 1, + ACTIONS(4930), 1, + anon_sym_AMP_AMP, + STATE(2174), 1, sym_argument_list, - STATE(4307), 1, + STATE(2176), 1, + sym_or_block, + STATE(4133), 1, sym_type_parameters, - ACTIONS(4818), 2, + ACTIONS(4826), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - ACTIONS(4828), 2, + ACTIONS(4836), 2, anon_sym_LBRACK2, anon_sym_POUND_LBRACK, - STATE(2272), 2, + ACTIONS(4934), 2, + anon_sym_in, + anon_sym_BANGin, + STATE(2271), 2, sym_line_comment, sym_block_comment, - ACTIONS(4918), 4, + ACTIONS(4924), 4, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_CARET, - ACTIONS(4920), 8, + 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, @@ -232139,7 +232143,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(1769), 24, + ACTIONS(1765), 15, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -232147,35 +232151,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_as, anon_sym_COMMA, anon_sym_RBRACE, - anon_sym_LT, - anon_sym_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, anon_sym_DOT_DOT_DOT, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_or, anon_sym_is, anon_sym_BANGis, - anon_sym_in, - anon_sym_BANGin, sym_identifier, - [48085] = 24, + [47907] = 24, ACTIONS(497), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, anon_sym_SLASH_STAR, - ACTIONS(4820), 1, + ACTIONS(4828), 1, anon_sym_LPAREN, - ACTIONS(4822), 1, + ACTIONS(4830), 1, anon_sym_LBRACK, - ACTIONS(4824), 1, + ACTIONS(4832), 1, anon_sym_QMARK, - ACTIONS(4826), 1, + ACTIONS(4834), 1, anon_sym_BANG, ACTIONS(4854), 1, anon_sym_as, @@ -232185,44 +232180,44 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, ACTIONS(4872), 1, anon_sym_or, - ACTIONS(4924), 1, + ACTIONS(4930), 1, anon_sym_AMP_AMP, - ACTIONS(4926), 1, + ACTIONS(4932), 1, anon_sym_PIPE_PIPE, - STATE(2236), 1, - sym_or_block, - STATE(2238), 1, + STATE(2174), 1, sym_argument_list, - STATE(4307), 1, + STATE(2176), 1, + sym_or_block, + STATE(4133), 1, sym_type_parameters, - ACTIONS(4818), 2, + ACTIONS(4826), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - ACTIONS(4828), 2, + ACTIONS(4836), 2, anon_sym_LBRACK2, anon_sym_POUND_LBRACK, ACTIONS(4874), 2, anon_sym_is, anon_sym_BANGis, - ACTIONS(4928), 2, + ACTIONS(4934), 2, anon_sym_in, anon_sym_BANGin, - STATE(2273), 2, + STATE(2272), 2, sym_line_comment, sym_block_comment, - ACTIONS(4918), 4, + ACTIONS(4924), 4, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_CARET, - ACTIONS(4922), 6, + 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(3724), 8, + ACTIONS(3694), 8, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -232231,7 +232226,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACE, anon_sym_DOT_DOT_DOT, sym_identifier, - ACTIONS(4920), 8, + ACTIONS(4926), 8, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, @@ -232240,336 +232235,131 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - [48185] = 16, + [48007] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(4930), 1, - anon_sym_DOT, - ACTIONS(4932), 1, - anon_sym_LPAREN, - ACTIONS(4934), 1, - anon_sym_LBRACK, - ACTIONS(4936), 1, - anon_sym_QMARK, - ACTIONS(4938), 1, - anon_sym_BANG, - ACTIONS(4940), 1, - anon_sym_LBRACK2, - ACTIONS(4942), 1, - anon_sym_QMARK_DOT, - ACTIONS(4944), 1, - anon_sym_POUND_LBRACK, - STATE(2396), 1, - sym_or_block, - STATE(2397), 1, - sym_argument_list, - STATE(4127), 1, - sym_type_parameters, - STATE(2274), 2, + STATE(2273), 2, sym_line_comment, sym_block_comment, - ACTIONS(1785), 9, - anon_sym_PIPE, + ACTIONS(4902), 22, + anon_sym_LBRACE, + anon_sym_LPAREN, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - anon_sym_COLON, - anon_sym_AMP, - anon_sym_GT_GT, - ACTIONS(1783), 27, - anon_sym_SEMI, - anon_sym_as, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_RPAREN, anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_RBRACK, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, + anon_sym_QMARK, + anon_sym_BANG, + anon_sym_json_DOTdecode, + anon_sym_LBRACK2, + anon_sym_TILDE, anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_or, - anon_sym_is, - anon_sym_BANGis, - anon_sym_in, - anon_sym_BANGin, - anon_sym_COLON_EQ, - anon_sym_DOT_DOT, - [48269] = 27, + 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(4900), 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, + [48069] = 24, ACTIONS(497), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, anon_sym_SLASH_STAR, - ACTIONS(4820), 1, + ACTIONS(4828), 1, anon_sym_LPAREN, - ACTIONS(4822), 1, + ACTIONS(4830), 1, anon_sym_LBRACK, - ACTIONS(4824), 1, + ACTIONS(4832), 1, anon_sym_QMARK, - ACTIONS(4826), 1, + ACTIONS(4834), 1, anon_sym_BANG, - ACTIONS(4828), 1, - anon_sym_POUND_LBRACK, ACTIONS(4854), 1, anon_sym_as, ACTIONS(4862), 1, anon_sym_PLUS_PLUS, ACTIONS(4864), 1, anon_sym_DASH_DASH, - ACTIONS(4866), 1, - anon_sym_LBRACK2, - ACTIONS(4868), 1, - anon_sym_AMP_AMP, - ACTIONS(4870), 1, - anon_sym_PIPE_PIPE, ACTIONS(4872), 1, anon_sym_or, - ACTIONS(4878), 1, - anon_sym_AT_LBRACK, - STATE(2236), 1, - sym_or_block, - STATE(2238), 1, + ACTIONS(4930), 1, + anon_sym_AMP_AMP, + ACTIONS(4932), 1, + anon_sym_PIPE_PIPE, + STATE(2174), 1, sym_argument_list, - STATE(3571), 1, - sym_attribute, - STATE(4307), 1, + STATE(2176), 1, + sym_or_block, + STATE(4133), 1, sym_type_parameters, - ACTIONS(4818), 2, + ACTIONS(4826), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - ACTIONS(4874), 2, - anon_sym_is, - anon_sym_BANGis, - ACTIONS(4876), 2, - anon_sym_in, - anon_sym_BANGin, - STATE(2275), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(4856), 4, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_CARET, - ACTIONS(4950), 5, - anon_sym_LF, - anon_sym_CR, - anon_sym_CR_LF, - anon_sym_RBRACE, - sym_identifier, - ACTIONS(4860), 6, - anon_sym_LT, - anon_sym_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(4858), 8, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_AMP, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - [48374] = 7, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_STAR, - ACTIONS(4952), 1, - anon_sym_else, - STATE(2349), 1, - sym_else_branch, - STATE(2276), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(1799), 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(4836), 2, anon_sym_LBRACK2, - anon_sym_AMP, - anon_sym_GT_GT, - ACTIONS(1797), 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, + ACTIONS(4874), 2, anon_sym_is, anon_sym_BANGis, + ACTIONS(4934), 2, anon_sym_in, anon_sym_BANGin, - anon_sym_COLON_EQ, - anon_sym_DOT_DOT, - [48439] = 7, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_STAR, - ACTIONS(4952), 1, - anon_sym_else, - STATE(2351), 1, - sym_else_branch, - STATE(2277), 2, + STATE(2274), 2, sym_line_comment, sym_block_comment, - ACTIONS(1805), 13, - anon_sym_DOT, + ACTIONS(4924), 4, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, + anon_sym_CARET, + ACTIONS(4928), 6, anon_sym_LT, anon_sym_GT, - anon_sym_COLON, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_LBRACK2, - anon_sym_AMP, - anon_sym_GT_GT, - ACTIONS(1803), 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, - [48504] = 26, - ACTIONS(497), 1, - anon_sym_SLASH_SLASH, - ACTIONS(499), 1, - anon_sym_SLASH_STAR, - ACTIONS(4956), 1, - anon_sym_as, - ACTIONS(4958), 1, - anon_sym_COMMA, - ACTIONS(4960), 1, - anon_sym_LPAREN, - ACTIONS(4968), 1, - anon_sym_LBRACK, - ACTIONS(4970), 1, - anon_sym_PLUS_PLUS, - ACTIONS(4972), 1, - anon_sym_DASH_DASH, - ACTIONS(4974), 1, - anon_sym_QMARK, - ACTIONS(4976), 1, - anon_sym_BANG, - ACTIONS(4980), 1, - anon_sym_AMP_AMP, - ACTIONS(4982), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4984), 1, - anon_sym_or, - STATE(2506), 1, - sym_or_block, - STATE(2508), 1, - sym_argument_list, - STATE(3514), 1, - aux_sym_strictly_expression_list_repeat1, - STATE(4294), 1, - sym_type_parameters, - ACTIONS(4954), 2, - anon_sym_DOT, - anon_sym_QMARK_DOT, - ACTIONS(4978), 2, - anon_sym_LBRACK2, - anon_sym_POUND_LBRACK, - ACTIONS(4986), 2, - anon_sym_is, - anon_sym_BANGis, - ACTIONS(4988), 2, - anon_sym_in, - anon_sym_BANGin, - STATE(2278), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(1661), 4, + ACTIONS(1773), 8, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, + anon_sym_SEMI, + anon_sym_COMMA, anon_sym_RBRACE, - ACTIONS(4962), 4, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_CARET, - ACTIONS(4966), 6, - anon_sym_LT, - anon_sym_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(4964), 8, + anon_sym_DOT_DOT_DOT, + sym_identifier, + ACTIONS(4926), 8, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, @@ -232578,199 +232368,173 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - [48606] = 13, + [48169] = 24, ACTIONS(497), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, anon_sym_SLASH_STAR, - ACTIONS(4960), 1, + ACTIONS(4828), 1, anon_sym_LPAREN, - ACTIONS(4968), 1, + ACTIONS(4830), 1, anon_sym_LBRACK, - ACTIONS(4974), 1, + ACTIONS(4832), 1, anon_sym_QMARK, - ACTIONS(4976), 1, + ACTIONS(4834), 1, anon_sym_BANG, - STATE(2506), 1, - sym_or_block, - STATE(2508), 1, - sym_argument_list, - STATE(4294), 1, - sym_type_parameters, - ACTIONS(4954), 2, - anon_sym_DOT, - anon_sym_QMARK_DOT, - ACTIONS(4978), 2, - anon_sym_LBRACK2, - anon_sym_POUND_LBRACK, - STATE(2279), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(1765), 34, - anon_sym_LF, - anon_sym_CR, - anon_sym_CR_LF, - anon_sym_SEMI, + ACTIONS(4854), 1, 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_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, + ACTIONS(4862), 1, anon_sym_PLUS_PLUS, + ACTIONS(4864), 1, 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(4872), 1, + anon_sym_or, + ACTIONS(4930), 1, anon_sym_AMP_AMP, + ACTIONS(4932), 1, anon_sym_PIPE_PIPE, - anon_sym_or, + STATE(2174), 1, + sym_argument_list, + STATE(2176), 1, + sym_or_block, + STATE(4133), 1, + sym_type_parameters, + ACTIONS(4826), 2, + anon_sym_DOT, + anon_sym_QMARK_DOT, + ACTIONS(4836), 2, + anon_sym_LBRACK2, + anon_sym_POUND_LBRACK, + ACTIONS(4874), 2, anon_sym_is, anon_sym_BANGis, + ACTIONS(4934), 2, anon_sym_in, anon_sym_BANGin, - [48682] = 6, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_STAR, - ACTIONS(4990), 1, - anon_sym_DOLLARelse, - STATE(2280), 2, + STATE(2275), 2, sym_line_comment, sym_block_comment, - ACTIONS(1921), 13, - anon_sym_DOT, + ACTIONS(4924), 4, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, + anon_sym_CARET, + ACTIONS(4928), 6, anon_sym_LT, anon_sym_GT, - anon_sym_COLON, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_LBRACK2, - anon_sym_AMP, - anon_sym_GT_GT, - ACTIONS(1919), 31, - anon_sym_SEMI, - anon_sym_as, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_STAR, - anon_sym_PERCENT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_CARET, + ACTIONS(1795), 8, + anon_sym_LF, + anon_sym_CR, + anon_sym_CR_LF, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_DOT_DOT_DOT, + sym_identifier, + ACTIONS(4926), 8, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_AMP, anon_sym_LT_LT, + anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_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, - [48744] = 13, + [48269] = 27, ACTIONS(497), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, anon_sym_SLASH_STAR, - ACTIONS(4960), 1, + ACTIONS(4828), 1, anon_sym_LPAREN, - ACTIONS(4968), 1, + ACTIONS(4830), 1, anon_sym_LBRACK, - ACTIONS(4974), 1, + ACTIONS(4832), 1, anon_sym_QMARK, - ACTIONS(4976), 1, + ACTIONS(4834), 1, anon_sym_BANG, - STATE(2506), 1, - sym_or_block, - STATE(2508), 1, + ACTIONS(4836), 1, + anon_sym_POUND_LBRACK, + ACTIONS(4854), 1, + anon_sym_as, + ACTIONS(4862), 1, + anon_sym_PLUS_PLUS, + ACTIONS(4864), 1, + anon_sym_DASH_DASH, + ACTIONS(4866), 1, + anon_sym_LBRACK2, + ACTIONS(4868), 1, + anon_sym_AMP_AMP, + ACTIONS(4870), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4872), 1, + anon_sym_or, + ACTIONS(4878), 1, + anon_sym_AT_LBRACK, + STATE(2174), 1, sym_argument_list, - STATE(4294), 1, + STATE(2176), 1, + sym_or_block, + STATE(3549), 1, + sym_attribute, + STATE(4133), 1, sym_type_parameters, - ACTIONS(4954), 2, + ACTIONS(4826), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - ACTIONS(4978), 2, - anon_sym_LBRACK2, - anon_sym_POUND_LBRACK, - STATE(2281), 2, + ACTIONS(4874), 2, + anon_sym_is, + anon_sym_BANGis, + ACTIONS(4876), 2, + anon_sym_in, + anon_sym_BANGin, + STATE(2276), 2, sym_line_comment, sym_block_comment, - ACTIONS(1785), 34, + ACTIONS(4856), 4, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_CARET, + ACTIONS(4952), 5, 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, + sym_identifier, + ACTIONS(4860), 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(4858), 8, + anon_sym_STAR, + anon_sym_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, - [48820] = 6, + [48374] = 7, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(4992), 1, - anon_sym_DOLLARelse, - STATE(2282), 2, + ACTIONS(4954), 1, + anon_sym_else, + STATE(2385), 1, + sym_else_branch, + STATE(2277), 2, sym_line_comment, sym_block_comment, - ACTIONS(1899), 13, + ACTIONS(1799), 13, anon_sym_DOT, anon_sym_PIPE, anon_sym_PLUS, @@ -232784,7 +232548,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(1897), 31, + ACTIONS(1797), 31, anon_sym_SEMI, anon_sym_as, anon_sym_LBRACE, @@ -232816,17 +232580,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGin, anon_sym_COLON_EQ, anon_sym_DOT_DOT, - [48882] = 6, + [48439] = 7, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - STATE(2322), 1, - sym_type_parameters, - STATE(2283), 2, + ACTIONS(4954), 1, + anon_sym_else, + STATE(2386), 1, + sym_else_branch, + STATE(2278), 2, sym_line_comment, sym_block_comment, - ACTIONS(1905), 13, + ACTIONS(1805), 13, anon_sym_DOT, anon_sym_PIPE, anon_sym_PLUS, @@ -232840,7 +232606,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(1903), 31, + ACTIONS(1803), 31, anon_sym_SEMI, anon_sym_as, anon_sym_LBRACE, @@ -232872,50 +232638,49 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGin, anon_sym_COLON_EQ, anon_sym_DOT_DOT, - [48944] = 6, - ACTIONS(497), 1, + [48504] = 6, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, - ACTIONS(499), 1, + ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(1951), 1, - anon_sym_LBRACE, - ACTIONS(2661), 1, - anon_sym_LBRACK, - STATE(2284), 2, + ACTIONS(4956), 1, + anon_sym_DOLLARelse, + STATE(2279), 2, sym_line_comment, sym_block_comment, - ACTIONS(2663), 43, - anon_sym_LF, - anon_sym_CR, - anon_sym_CR_LF, - anon_sym_SEMI, + ACTIONS(1913), 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(1911), 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, @@ -232927,20 +232692,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - sym_identifier, - [49006] = 6, + anon_sym_COLON_EQ, + anon_sym_DOT_DOT, + [48566] = 6, ACTIONS(497), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, anon_sym_SLASH_STAR, - ACTIONS(1915), 1, + ACTIONS(1807), 1, anon_sym_LBRACK, - ACTIONS(1951), 1, + ACTIONS(1987), 1, anon_sym_LBRACE, - STATE(2285), 2, + STATE(2280), 2, sym_line_comment, sym_block_comment, - ACTIONS(1917), 43, + ACTIONS(1809), 43, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -232984,35 +232750,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_in, anon_sym_BANGin, sym_identifier, - [49068] = 13, + [48628] = 13, ACTIONS(497), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, anon_sym_SLASH_STAR, ACTIONS(4960), 1, anon_sym_LPAREN, - ACTIONS(4968), 1, + ACTIONS(4962), 1, anon_sym_LBRACK, - ACTIONS(4974), 1, + ACTIONS(4964), 1, anon_sym_QMARK, - ACTIONS(4976), 1, + ACTIONS(4966), 1, anon_sym_BANG, - STATE(2506), 1, + STATE(2569), 1, sym_or_block, - STATE(2508), 1, + STATE(2570), 1, sym_argument_list, - STATE(4294), 1, + STATE(4070), 1, sym_type_parameters, - ACTIONS(4954), 2, + ACTIONS(4958), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - ACTIONS(4978), 2, + ACTIONS(4968), 2, anon_sym_LBRACK2, anon_sym_POUND_LBRACK, - STATE(2286), 2, + STATE(2281), 2, sym_line_comment, sym_block_comment, - ACTIONS(1777), 34, + ACTIONS(1765), 34, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -233047,52 +232813,74 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [49144] = 18, + [48704] = 26, ACTIONS(497), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, anon_sym_SLASH_STAR, ACTIONS(4960), 1, anon_sym_LPAREN, - ACTIONS(4968), 1, + ACTIONS(4962), 1, anon_sym_LBRACK, - ACTIONS(4974), 1, + ACTIONS(4964), 1, anon_sym_QMARK, - ACTIONS(4976), 1, + ACTIONS(4966), 1, anon_sym_BANG, + ACTIONS(4970), 1, + anon_sym_as, + ACTIONS(4972), 1, + anon_sym_COMMA, ACTIONS(4980), 1, + anon_sym_PLUS_PLUS, + ACTIONS(4982), 1, + anon_sym_DASH_DASH, + ACTIONS(4984), 1, anon_sym_AMP_AMP, - STATE(2506), 1, + ACTIONS(4986), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4988), 1, + anon_sym_or, + STATE(2569), 1, sym_or_block, - STATE(2508), 1, + STATE(2570), 1, sym_argument_list, - STATE(4294), 1, + STATE(3437), 1, + aux_sym_strictly_expression_list_repeat1, + STATE(4070), 1, sym_type_parameters, - ACTIONS(4954), 2, + ACTIONS(4958), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - ACTIONS(4978), 2, + ACTIONS(4968), 2, anon_sym_LBRACK2, anon_sym_POUND_LBRACK, - ACTIONS(4988), 2, + ACTIONS(4990), 2, + anon_sym_is, + anon_sym_BANGis, + ACTIONS(4992), 2, anon_sym_in, anon_sym_BANGin, - STATE(2287), 2, + STATE(2282), 2, sym_line_comment, sym_block_comment, - ACTIONS(4962), 4, + ACTIONS(1757), 4, + anon_sym_LF, + anon_sym_CR, + anon_sym_CR_LF, + anon_sym_RBRACE, + ACTIONS(4974), 4, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_CARET, - ACTIONS(4966), 6, + ACTIONS(4978), 6, anon_sym_LT, anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(4964), 8, + ACTIONS(4976), 8, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, @@ -233101,28 +232889,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(1785), 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, - [49229] = 5, + [48806] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - STATE(2288), 2, + STATE(2366), 1, + sym_type_parameters, + STATE(2283), 2, sym_line_comment, sym_block_comment, - ACTIONS(2285), 13, + ACTIONS(1881), 13, anon_sym_DOT, anon_sym_PIPE, anon_sym_PLUS, @@ -233136,7 +232913,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(2283), 31, + ACTIONS(1879), 31, anon_sym_SEMI, anon_sym_as, anon_sym_LBRACE, @@ -233168,15 +232945,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGin, anon_sym_COLON_EQ, anon_sym_DOT_DOT, - [49288] = 5, + [48868] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - STATE(2289), 2, + ACTIONS(4994), 1, + anon_sym_DOLLARelse, + STATE(2284), 2, sym_line_comment, sym_block_comment, - ACTIONS(2872), 13, + ACTIONS(1843), 13, anon_sym_DOT, anon_sym_PIPE, anon_sym_PLUS, @@ -233190,7 +232969,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(2870), 31, + ACTIONS(1841), 31, anon_sym_SEMI, anon_sym_as, anon_sym_LBRACE, @@ -233222,177 +233001,278 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGin, anon_sym_COLON_EQ, anon_sym_DOT_DOT, - [49347] = 32, - ACTIONS(3), 1, + [48930] = 13, + ACTIONS(497), 1, anon_sym_SLASH_SLASH, - ACTIONS(5), 1, + ACTIONS(499), 1, anon_sym_SLASH_STAR, - ACTIONS(3478), 1, - anon_sym_COLON_EQ, - ACTIONS(4705), 1, - anon_sym_LBRACE, - ACTIONS(4932), 1, + ACTIONS(4960), 1, anon_sym_LPAREN, - ACTIONS(4934), 1, + ACTIONS(4962), 1, anon_sym_LBRACK, - ACTIONS(4936), 1, + ACTIONS(4964), 1, anon_sym_QMARK, - ACTIONS(4938), 1, + ACTIONS(4966), 1, anon_sym_BANG, - ACTIONS(4940), 1, + STATE(2569), 1, + sym_or_block, + STATE(2570), 1, + sym_argument_list, + STATE(4070), 1, + sym_type_parameters, + ACTIONS(4958), 2, + anon_sym_DOT, + anon_sym_QMARK_DOT, + ACTIONS(4968), 2, anon_sym_LBRACK2, - ACTIONS(4944), 1, anon_sym_POUND_LBRACK, - ACTIONS(4994), 1, + STATE(2285), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(1785), 34, + anon_sym_LF, + anon_sym_CR, + anon_sym_CR_LF, + anon_sym_SEMI, anon_sym_as, - ACTIONS(4996), 1, anon_sym_COMMA, - ACTIONS(5008), 1, + anon_sym_RBRACE, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_LT, + anon_sym_GT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, anon_sym_PLUS_PLUS, - ACTIONS(5010), 1, anon_sym_DASH_DASH, - ACTIONS(5012), 1, anon_sym_CARET, - ACTIONS(5014), 1, + anon_sym_AMP, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_GT_GT_GT, + anon_sym_AMP_CARET, anon_sym_AMP_AMP, - ACTIONS(5016), 1, anon_sym_PIPE_PIPE, - ACTIONS(5018), 1, anon_sym_or, - STATE(1624), 1, - sym_block, - STATE(2396), 1, + anon_sym_is, + anon_sym_BANGis, + anon_sym_in, + anon_sym_BANGin, + [49006] = 13, + ACTIONS(497), 1, + anon_sym_SLASH_SLASH, + ACTIONS(499), 1, + anon_sym_SLASH_STAR, + ACTIONS(4960), 1, + anon_sym_LPAREN, + ACTIONS(4962), 1, + anon_sym_LBRACK, + ACTIONS(4964), 1, + anon_sym_QMARK, + ACTIONS(4966), 1, + anon_sym_BANG, + STATE(2569), 1, sym_or_block, - STATE(2397), 1, + STATE(2570), 1, sym_argument_list, - STATE(3919), 1, - aux_sym_strictly_expression_list_repeat1, - STATE(4127), 1, + STATE(4070), 1, sym_type_parameters, - ACTIONS(4942), 2, + ACTIONS(4958), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - ACTIONS(5004), 2, + ACTIONS(4968), 2, + anon_sym_LBRACK2, + anon_sym_POUND_LBRACK, + STATE(2286), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(1769), 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, - ACTIONS(5020), 2, + anon_sym_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, - ACTIONS(5022), 2, anon_sym_in, anon_sym_BANGin, - STATE(2290), 2, + [49082] = 6, + ACTIONS(497), 1, + anon_sym_SLASH_SLASH, + ACTIONS(499), 1, + anon_sym_SLASH_STAR, + ACTIONS(1987), 1, + anon_sym_LBRACE, + ACTIONS(2674), 1, + anon_sym_LBRACK, + STATE(2287), 2, sym_line_comment, sym_block_comment, - ACTIONS(4998), 3, + ACTIONS(2676), 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, - ACTIONS(5002), 3, + anon_sym_STAR, anon_sym_SLASH, - anon_sym_AMP, - anon_sym_GT_GT, - ACTIONS(5006), 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(5000), 5, - anon_sym_STAR, - anon_sym_PERCENT, + 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, - [49460] = 32, + anon_sym_AMP_AMP, + anon_sym_PIPE_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, + [49144] = 32, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(3478), 1, + ACTIONS(3484), 1, anon_sym_COLON_EQ, - ACTIONS(4932), 1, + ACTIONS(4938), 1, anon_sym_LPAREN, - ACTIONS(4934), 1, + ACTIONS(4940), 1, anon_sym_LBRACK, - ACTIONS(4936), 1, + ACTIONS(4942), 1, anon_sym_QMARK, - ACTIONS(4938), 1, + ACTIONS(4944), 1, anon_sym_BANG, - ACTIONS(4940), 1, + ACTIONS(4946), 1, anon_sym_LBRACK2, - ACTIONS(4944), 1, + ACTIONS(4950), 1, anon_sym_POUND_LBRACK, - ACTIONS(4994), 1, - anon_sym_as, ACTIONS(4996), 1, + anon_sym_as, + ACTIONS(4998), 1, + anon_sym_LBRACE, + ACTIONS(5000), 1, anon_sym_COMMA, - ACTIONS(5008), 1, + ACTIONS(5012), 1, anon_sym_PLUS_PLUS, - ACTIONS(5010), 1, + ACTIONS(5014), 1, anon_sym_DASH_DASH, - ACTIONS(5012), 1, + ACTIONS(5016), 1, anon_sym_CARET, - ACTIONS(5014), 1, + ACTIONS(5018), 1, anon_sym_AMP_AMP, - ACTIONS(5016), 1, + ACTIONS(5020), 1, anon_sym_PIPE_PIPE, - ACTIONS(5018), 1, + ACTIONS(5022), 1, anon_sym_or, - ACTIONS(5024), 1, - anon_sym_LBRACE, - STATE(1827), 1, - sym_block, - STATE(2396), 1, - sym_or_block, - STATE(2397), 1, + STATE(2298), 1, sym_argument_list, - STATE(3919), 1, + STATE(2299), 1, + sym_or_block, + STATE(2574), 1, + sym_block, + STATE(3809), 1, aux_sym_strictly_expression_list_repeat1, - STATE(4127), 1, + STATE(4251), 1, sym_type_parameters, - ACTIONS(4942), 2, + ACTIONS(4948), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - ACTIONS(5004), 2, + ACTIONS(5008), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(5020), 2, + ACTIONS(5024), 2, anon_sym_is, anon_sym_BANGis, - ACTIONS(5022), 2, + ACTIONS(5026), 2, anon_sym_in, anon_sym_BANGin, - STATE(2291), 2, + STATE(2288), 2, sym_line_comment, sym_block_comment, - ACTIONS(4998), 3, + ACTIONS(5002), 3, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5002), 3, + ACTIONS(5006), 3, anon_sym_SLASH, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(5006), 4, + ACTIONS(5010), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(5000), 5, + ACTIONS(5004), 5, anon_sym_STAR, anon_sym_PERCENT, anon_sym_LT_LT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - [49573] = 5, + [49257] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - STATE(2292), 2, + STATE(2289), 2, sym_line_comment, sym_block_comment, - ACTIONS(3050), 13, + ACTIONS(1987), 13, anon_sym_DOT, anon_sym_PIPE, anon_sym_PLUS, @@ -233406,7 +233286,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(3048), 31, + ACTIONS(1989), 31, anon_sym_SEMI, anon_sym_as, anon_sym_LBRACE, @@ -233438,15 +233318,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGin, anon_sym_COLON_EQ, anon_sym_DOT_DOT, - [49632] = 5, + [49316] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - STATE(2293), 2, + STATE(2290), 2, sym_line_comment, sym_block_comment, - ACTIONS(2798), 13, + ACTIONS(3062), 13, anon_sym_DOT, anon_sym_PIPE, anon_sym_PLUS, @@ -233460,7 +233340,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(2796), 31, + ACTIONS(3060), 31, anon_sym_SEMI, anon_sym_as, anon_sym_LBRACE, @@ -233492,15 +233372,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGin, anon_sym_COLON_EQ, anon_sym_DOT_DOT, - [49691] = 5, + [49375] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - STATE(2294), 2, + STATE(2291), 2, sym_line_comment, sym_block_comment, - ACTIONS(2920), 13, + ACTIONS(2455), 13, anon_sym_DOT, anon_sym_PIPE, anon_sym_PLUS, @@ -233514,7 +233394,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(2918), 31, + ACTIONS(2453), 31, anon_sym_SEMI, anon_sym_as, anon_sym_LBRACE, @@ -233546,136 +233426,96 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGin, anon_sym_COLON_EQ, anon_sym_DOT_DOT, - [49750] = 18, - ACTIONS(497), 1, + [49434] = 32, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, - ACTIONS(499), 1, + ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(4960), 1, + ACTIONS(3484), 1, + anon_sym_COLON_EQ, + ACTIONS(4938), 1, anon_sym_LPAREN, - ACTIONS(4968), 1, + ACTIONS(4940), 1, anon_sym_LBRACK, - ACTIONS(4974), 1, + ACTIONS(4942), 1, anon_sym_QMARK, - ACTIONS(4976), 1, + ACTIONS(4944), 1, anon_sym_BANG, - ACTIONS(5032), 1, - anon_sym_AMP_AMP, - STATE(2506), 1, - sym_or_block, - STATE(2508), 1, - sym_argument_list, - STATE(4294), 1, - sym_type_parameters, - ACTIONS(4954), 2, - anon_sym_DOT, - anon_sym_QMARK_DOT, - ACTIONS(4978), 2, + ACTIONS(4946), 1, anon_sym_LBRACK2, + ACTIONS(4950), 1, anon_sym_POUND_LBRACK, - ACTIONS(5034), 2, - anon_sym_in, - anon_sym_BANGin, - STATE(2295), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(5026), 4, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_CARET, - ACTIONS(5030), 6, - anon_sym_LT, - anon_sym_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(5028), 8, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_AMP, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - ACTIONS(1785), 12, - anon_sym_LF, - anon_sym_CR, - anon_sym_CR_LF, - anon_sym_SEMI, + ACTIONS(4996), 1, anon_sym_as, - anon_sym_RBRACE, + ACTIONS(5000), 1, + anon_sym_COMMA, + ACTIONS(5012), 1, anon_sym_PLUS_PLUS, + ACTIONS(5014), 1, anon_sym_DASH_DASH, + ACTIONS(5016), 1, + anon_sym_CARET, + ACTIONS(5018), 1, + anon_sym_AMP_AMP, + ACTIONS(5020), 1, anon_sym_PIPE_PIPE, + ACTIONS(5022), 1, anon_sym_or, + ACTIONS(5028), 1, + anon_sym_LBRACE, + STATE(1119), 1, + sym_block, + STATE(2298), 1, + sym_argument_list, + STATE(2299), 1, + sym_or_block, + STATE(3809), 1, + aux_sym_strictly_expression_list_repeat1, + STATE(4251), 1, + sym_type_parameters, + ACTIONS(4948), 2, + anon_sym_DOT, + anon_sym_QMARK_DOT, + ACTIONS(5008), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(5024), 2, anon_sym_is, anon_sym_BANGis, - [49835] = 5, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_STAR, - STATE(2296), 2, + ACTIONS(5026), 2, + anon_sym_in, + anon_sym_BANGin, + STATE(2292), 2, sym_line_comment, sym_block_comment, - ACTIONS(2820), 13, - anon_sym_DOT, + ACTIONS(5002), 3, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, + ACTIONS(5006), 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(2818), 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(5010), 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(5004), 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, - [49894] = 5, + [49547] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - STATE(2297), 2, + STATE(2293), 2, sym_line_comment, sym_block_comment, - ACTIONS(2824), 13, + ACTIONS(2443), 13, anon_sym_DOT, anon_sym_PIPE, anon_sym_PLUS, @@ -233689,7 +233529,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(2822), 31, + ACTIONS(2441), 31, anon_sym_SEMI, anon_sym_as, anon_sym_LBRACE, @@ -233721,15 +233561,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGin, anon_sym_COLON_EQ, anon_sym_DOT_DOT, - [49953] = 5, + [49606] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - STATE(2298), 2, + STATE(2294), 2, sym_line_comment, sym_block_comment, - ACTIONS(2309), 13, + ACTIONS(2772), 13, anon_sym_DOT, anon_sym_PIPE, anon_sym_PLUS, @@ -233743,7 +233583,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(2307), 31, + ACTIONS(2770), 31, anon_sym_SEMI, anon_sym_as, anon_sym_LBRACE, @@ -233775,15 +233615,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGin, anon_sym_COLON_EQ, anon_sym_DOT_DOT, - [50012] = 5, + [49665] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - STATE(2299), 2, + ACTIONS(5030), 1, + anon_sym_BANG, + STATE(2295), 2, sym_line_comment, sym_block_comment, - ACTIONS(2878), 13, + ACTIONS(2542), 12, anon_sym_DOT, anon_sym_PIPE, anon_sym_PLUS, @@ -233793,11 +233635,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(2876), 31, + ACTIONS(2540), 31, anon_sym_SEMI, anon_sym_as, anon_sym_LBRACE, @@ -233829,15 +233670,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGin, anon_sym_COLON_EQ, anon_sym_DOT_DOT, - [50071] = 5, + [49726] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - STATE(2300), 2, + STATE(2296), 2, sym_line_comment, sym_block_comment, - ACTIONS(2778), 13, + ACTIONS(2475), 13, anon_sym_DOT, anon_sym_PIPE, anon_sym_PLUS, @@ -233851,7 +233692,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(2776), 31, + ACTIONS(2473), 31, anon_sym_SEMI, anon_sym_as, anon_sym_LBRACE, @@ -233883,96 +233724,96 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGin, anon_sym_COLON_EQ, anon_sym_DOT_DOT, - [50130] = 32, + [49785] = 32, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(3478), 1, + ACTIONS(3484), 1, anon_sym_COLON_EQ, - ACTIONS(4932), 1, + ACTIONS(4938), 1, anon_sym_LPAREN, - ACTIONS(4934), 1, + ACTIONS(4940), 1, anon_sym_LBRACK, - ACTIONS(4936), 1, + ACTIONS(4942), 1, anon_sym_QMARK, - ACTIONS(4938), 1, + ACTIONS(4944), 1, anon_sym_BANG, - ACTIONS(4940), 1, + ACTIONS(4946), 1, anon_sym_LBRACK2, - ACTIONS(4944), 1, + ACTIONS(4950), 1, anon_sym_POUND_LBRACK, - ACTIONS(4994), 1, - anon_sym_as, ACTIONS(4996), 1, + anon_sym_as, + ACTIONS(5000), 1, anon_sym_COMMA, - ACTIONS(5008), 1, + ACTIONS(5012), 1, anon_sym_PLUS_PLUS, - ACTIONS(5010), 1, + ACTIONS(5014), 1, anon_sym_DASH_DASH, - ACTIONS(5012), 1, + ACTIONS(5016), 1, anon_sym_CARET, - ACTIONS(5014), 1, + ACTIONS(5018), 1, anon_sym_AMP_AMP, - ACTIONS(5016), 1, + ACTIONS(5020), 1, anon_sym_PIPE_PIPE, - ACTIONS(5018), 1, + ACTIONS(5022), 1, anon_sym_or, - ACTIONS(5036), 1, + ACTIONS(5032), 1, anon_sym_LBRACE, - STATE(229), 1, + STATE(1855), 1, sym_block, - STATE(2396), 1, - sym_or_block, - STATE(2397), 1, + STATE(2298), 1, sym_argument_list, - STATE(3919), 1, + STATE(2299), 1, + sym_or_block, + STATE(3809), 1, aux_sym_strictly_expression_list_repeat1, - STATE(4127), 1, + STATE(4251), 1, sym_type_parameters, - ACTIONS(4942), 2, + ACTIONS(4948), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - ACTIONS(5004), 2, + ACTIONS(5008), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(5020), 2, + ACTIONS(5024), 2, anon_sym_is, anon_sym_BANGis, - ACTIONS(5022), 2, + ACTIONS(5026), 2, anon_sym_in, anon_sym_BANGin, - STATE(2301), 2, + STATE(2297), 2, sym_line_comment, sym_block_comment, - ACTIONS(4998), 3, + ACTIONS(5002), 3, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5002), 3, + ACTIONS(5006), 3, anon_sym_SLASH, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(5006), 4, + ACTIONS(5010), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(5000), 5, + ACTIONS(5004), 5, anon_sym_STAR, anon_sym_PERCENT, anon_sym_LT_LT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - [50243] = 5, + [49898] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - STATE(2302), 2, + STATE(2298), 2, sym_line_comment, sym_block_comment, - ACTIONS(2786), 13, + ACTIONS(2307), 13, anon_sym_DOT, anon_sym_PIPE, anon_sym_PLUS, @@ -233986,7 +233827,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(2784), 31, + ACTIONS(2305), 31, anon_sym_SEMI, anon_sym_as, anon_sym_LBRACE, @@ -234018,15 +233859,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGin, anon_sym_COLON_EQ, anon_sym_DOT_DOT, - [50302] = 5, + [49957] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - STATE(2303), 2, + STATE(2299), 2, sym_line_comment, sym_block_comment, - ACTIONS(1905), 13, + ACTIONS(2293), 13, anon_sym_DOT, anon_sym_PIPE, anon_sym_PLUS, @@ -234040,7 +233881,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(1903), 31, + ACTIONS(2291), 31, anon_sym_SEMI, anon_sym_as, anon_sym_LBRACE, @@ -234072,15 +233913,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGin, anon_sym_COLON_EQ, anon_sym_DOT_DOT, - [50361] = 5, + [50016] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - STATE(2304), 2, + STATE(2300), 2, sym_line_comment, sym_block_comment, - ACTIONS(2816), 13, + ACTIONS(2125), 13, anon_sym_DOT, anon_sym_PIPE, anon_sym_PLUS, @@ -234094,7 +233935,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(2814), 31, + ACTIONS(2123), 31, anon_sym_SEMI, anon_sym_as, anon_sym_LBRACE, @@ -234126,15 +233967,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGin, anon_sym_COLON_EQ, anon_sym_DOT_DOT, - [50420] = 5, + [50075] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - STATE(2305), 2, + STATE(2301), 2, sym_line_comment, sym_block_comment, - ACTIONS(2731), 13, + ACTIONS(2149), 13, anon_sym_DOT, anon_sym_PIPE, anon_sym_PLUS, @@ -234148,7 +233989,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(2729), 31, + ACTIONS(2147), 31, anon_sym_SEMI, anon_sym_as, anon_sym_LBRACE, @@ -234180,15 +234021,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGin, anon_sym_COLON_EQ, anon_sym_DOT_DOT, - [50479] = 5, + [50134] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - STATE(2306), 2, + STATE(2302), 2, sym_line_comment, sym_block_comment, - ACTIONS(2735), 13, + ACTIONS(2115), 13, anon_sym_DOT, anon_sym_PIPE, anon_sym_PLUS, @@ -234202,7 +234043,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(2733), 31, + ACTIONS(2113), 31, anon_sym_SEMI, anon_sym_as, anon_sym_LBRACE, @@ -234234,69 +234075,160 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGin, anon_sym_COLON_EQ, anon_sym_DOT_DOT, - [50538] = 5, + [50193] = 32, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - STATE(2307), 2, + ACTIONS(3484), 1, + anon_sym_COLON_EQ, + ACTIONS(4938), 1, + anon_sym_LPAREN, + ACTIONS(4940), 1, + anon_sym_LBRACK, + ACTIONS(4942), 1, + anon_sym_QMARK, + ACTIONS(4944), 1, + anon_sym_BANG, + ACTIONS(4946), 1, + anon_sym_LBRACK2, + ACTIONS(4950), 1, + anon_sym_POUND_LBRACK, + ACTIONS(4996), 1, + anon_sym_as, + ACTIONS(5000), 1, + anon_sym_COMMA, + ACTIONS(5012), 1, + anon_sym_PLUS_PLUS, + ACTIONS(5014), 1, + anon_sym_DASH_DASH, + ACTIONS(5016), 1, + anon_sym_CARET, + ACTIONS(5018), 1, + anon_sym_AMP_AMP, + ACTIONS(5020), 1, + anon_sym_PIPE_PIPE, + ACTIONS(5022), 1, + anon_sym_or, + ACTIONS(5034), 1, + anon_sym_LBRACE, + STATE(979), 1, + sym_block, + STATE(2298), 1, + sym_argument_list, + STATE(2299), 1, + sym_or_block, + STATE(3809), 1, + aux_sym_strictly_expression_list_repeat1, + STATE(4251), 1, + sym_type_parameters, + ACTIONS(4948), 2, + anon_sym_DOT, + anon_sym_QMARK_DOT, + ACTIONS(5008), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(5024), 2, + anon_sym_is, + anon_sym_BANGis, + ACTIONS(5026), 2, + anon_sym_in, + anon_sym_BANGin, + STATE(2303), 2, sym_line_comment, sym_block_comment, - ACTIONS(2761), 13, - anon_sym_DOT, + ACTIONS(5002), 3, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, + ACTIONS(5006), 3, anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - anon_sym_COLON, + anon_sym_AMP, + anon_sym_GT_GT, + ACTIONS(5010), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(5004), 5, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_AMP_CARET, + [50306] = 15, + ACTIONS(497), 1, + anon_sym_SLASH_SLASH, + ACTIONS(499), 1, + anon_sym_SLASH_STAR, + ACTIONS(4960), 1, + anon_sym_LPAREN, + ACTIONS(4962), 1, + anon_sym_LBRACK, + ACTIONS(4964), 1, anon_sym_QMARK, + ACTIONS(4966), 1, anon_sym_BANG, + STATE(2569), 1, + sym_or_block, + STATE(2570), 1, + sym_argument_list, + STATE(4070), 1, + sym_type_parameters, + ACTIONS(4958), 2, + anon_sym_DOT, + anon_sym_QMARK_DOT, + ACTIONS(4968), 2, anon_sym_LBRACK2, + anon_sym_POUND_LBRACK, + STATE(2304), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(5036), 4, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_CARET, + ACTIONS(5038), 8, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, anon_sym_AMP, + anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2759), 31, + anon_sym_GT_GT_GT, + anon_sym_AMP_CARET, + ACTIONS(1781), 21, + 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_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, - [50597] = 5, + [50385] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - STATE(2308), 2, + STATE(2305), 2, sym_line_comment, sym_block_comment, - ACTIONS(3054), 13, + ACTIONS(2768), 13, anon_sym_DOT, anon_sym_PIPE, anon_sym_PLUS, @@ -234310,7 +234242,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(3052), 31, + ACTIONS(2766), 31, anon_sym_SEMI, anon_sym_as, anon_sym_LBRACE, @@ -234342,144 +234274,438 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGin, anon_sym_COLON_EQ, anon_sym_DOT_DOT, - [50656] = 5, + [50444] = 32, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - STATE(2309), 2, + ACTIONS(3484), 1, + anon_sym_COLON_EQ, + ACTIONS(4938), 1, + anon_sym_LPAREN, + ACTIONS(4940), 1, + anon_sym_LBRACK, + ACTIONS(4942), 1, + anon_sym_QMARK, + ACTIONS(4944), 1, + anon_sym_BANG, + ACTIONS(4946), 1, + anon_sym_LBRACK2, + ACTIONS(4950), 1, + anon_sym_POUND_LBRACK, + ACTIONS(4996), 1, + anon_sym_as, + ACTIONS(5000), 1, + anon_sym_COMMA, + ACTIONS(5012), 1, + anon_sym_PLUS_PLUS, + ACTIONS(5014), 1, + anon_sym_DASH_DASH, + ACTIONS(5016), 1, + anon_sym_CARET, + ACTIONS(5018), 1, + anon_sym_AMP_AMP, + ACTIONS(5020), 1, + anon_sym_PIPE_PIPE, + ACTIONS(5022), 1, + anon_sym_or, + ACTIONS(5040), 1, + anon_sym_LBRACE, + STATE(2298), 1, + sym_argument_list, + STATE(2299), 1, + sym_or_block, + STATE(2758), 1, + sym_block, + STATE(3809), 1, + aux_sym_strictly_expression_list_repeat1, + STATE(4251), 1, + sym_type_parameters, + ACTIONS(4948), 2, + anon_sym_DOT, + anon_sym_QMARK_DOT, + ACTIONS(5008), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(5024), 2, + anon_sym_is, + anon_sym_BANGis, + ACTIONS(5026), 2, + anon_sym_in, + anon_sym_BANGin, + STATE(2306), 2, sym_line_comment, sym_block_comment, - ACTIONS(2856), 13, - anon_sym_DOT, + ACTIONS(5002), 3, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, + ACTIONS(5006), 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(2854), 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(5010), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, + ACTIONS(5004), 5, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_AMP_CARET, + [50557] = 32, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(3484), 1, + anon_sym_COLON_EQ, + ACTIONS(4938), 1, + anon_sym_LPAREN, + ACTIONS(4940), 1, anon_sym_LBRACK, - anon_sym_RBRACK, + ACTIONS(4942), 1, + anon_sym_QMARK, + ACTIONS(4944), 1, + anon_sym_BANG, + ACTIONS(4946), 1, + anon_sym_LBRACK2, + ACTIONS(4950), 1, + anon_sym_POUND_LBRACK, + ACTIONS(4996), 1, + anon_sym_as, + ACTIONS(5000), 1, + anon_sym_COMMA, + ACTIONS(5012), 1, anon_sym_PLUS_PLUS, + ACTIONS(5014), 1, anon_sym_DASH_DASH, + ACTIONS(5016), 1, anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, + ACTIONS(5018), 1, anon_sym_AMP_AMP, + ACTIONS(5020), 1, anon_sym_PIPE_PIPE, + ACTIONS(5022), 1, anon_sym_or, + ACTIONS(5042), 1, + anon_sym_LBRACE, + STATE(1261), 1, + sym_block, + STATE(2298), 1, + sym_argument_list, + STATE(2299), 1, + sym_or_block, + STATE(3809), 1, + aux_sym_strictly_expression_list_repeat1, + STATE(4251), 1, + sym_type_parameters, + ACTIONS(4948), 2, + anon_sym_DOT, anon_sym_QMARK_DOT, - anon_sym_POUND_LBRACK, + ACTIONS(5008), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(5024), 2, anon_sym_is, anon_sym_BANGis, + ACTIONS(5026), 2, anon_sym_in, anon_sym_BANGin, - anon_sym_COLON_EQ, - anon_sym_DOT_DOT, - [50715] = 24, + STATE(2307), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(5002), 3, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(5006), 3, + anon_sym_SLASH, + anon_sym_AMP, + anon_sym_GT_GT, + ACTIONS(5010), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(5004), 5, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_AMP_CARET, + [50670] = 18, ACTIONS(497), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, anon_sym_SLASH_STAR, - ACTIONS(4956), 1, - anon_sym_as, ACTIONS(4960), 1, anon_sym_LPAREN, - ACTIONS(4968), 1, + ACTIONS(4962), 1, anon_sym_LBRACK, - ACTIONS(4970), 1, - anon_sym_PLUS_PLUS, - ACTIONS(4972), 1, - anon_sym_DASH_DASH, - ACTIONS(4974), 1, + ACTIONS(4964), 1, anon_sym_QMARK, - ACTIONS(4976), 1, + ACTIONS(4966), 1, anon_sym_BANG, - ACTIONS(4980), 1, + ACTIONS(5046), 1, anon_sym_AMP_AMP, - ACTIONS(4982), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4984), 1, - anon_sym_or, - STATE(2506), 1, + STATE(2569), 1, sym_or_block, - STATE(2508), 1, + STATE(2570), 1, sym_argument_list, - STATE(4294), 1, + STATE(4070), 1, sym_type_parameters, - ACTIONS(4954), 2, + ACTIONS(4958), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - ACTIONS(4978), 2, + ACTIONS(4968), 2, anon_sym_LBRACK2, anon_sym_POUND_LBRACK, - ACTIONS(4986), 2, + ACTIONS(5048), 2, + anon_sym_in, + anon_sym_BANGin, + STATE(2308), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(5036), 4, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_CARET, + ACTIONS(5044), 6, + anon_sym_LT, + anon_sym_GT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(5038), 8, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_AMP, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_GT_GT_GT, + anon_sym_AMP_CARET, + ACTIONS(1765), 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, - ACTIONS(4988), 2, + [50755] = 17, + ACTIONS(497), 1, + anon_sym_SLASH_SLASH, + ACTIONS(499), 1, + anon_sym_SLASH_STAR, + ACTIONS(4960), 1, + anon_sym_LPAREN, + ACTIONS(4962), 1, + anon_sym_LBRACK, + ACTIONS(4964), 1, + anon_sym_QMARK, + ACTIONS(4966), 1, + anon_sym_BANG, + STATE(2569), 1, + sym_or_block, + STATE(2570), 1, + sym_argument_list, + STATE(4070), 1, + sym_type_parameters, + ACTIONS(4958), 2, + anon_sym_DOT, + anon_sym_QMARK_DOT, + ACTIONS(4968), 2, + anon_sym_LBRACK2, + anon_sym_POUND_LBRACK, + ACTIONS(5048), 2, anon_sym_in, anon_sym_BANGin, + STATE(2309), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(5036), 4, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_CARET, + ACTIONS(5044), 6, + anon_sym_LT, + anon_sym_GT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(5038), 8, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_AMP, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_GT_GT_GT, + anon_sym_AMP_CARET, + ACTIONS(1765), 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, + [50838] = 15, + ACTIONS(497), 1, + anon_sym_SLASH_SLASH, + ACTIONS(499), 1, + anon_sym_SLASH_STAR, + ACTIONS(4960), 1, + anon_sym_LPAREN, + ACTIONS(4962), 1, + anon_sym_LBRACK, + ACTIONS(4964), 1, + anon_sym_QMARK, + ACTIONS(4966), 1, + anon_sym_BANG, + STATE(2569), 1, + sym_or_block, + STATE(2570), 1, + sym_argument_list, + STATE(4070), 1, + sym_type_parameters, + ACTIONS(4958), 2, + anon_sym_DOT, + anon_sym_QMARK_DOT, + ACTIONS(4968), 2, + anon_sym_LBRACK2, + anon_sym_POUND_LBRACK, STATE(2310), 2, sym_line_comment, sym_block_comment, - ACTIONS(4962), 4, + ACTIONS(5036), 4, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_CARET, - ACTIONS(1761), 5, + ACTIONS(5038), 8, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_AMP, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_GT_GT_GT, + anon_sym_AMP_CARET, + ACTIONS(1765), 21, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, - anon_sym_COMMA, + anon_sym_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, + [50917] = 14, + ACTIONS(497), 1, + anon_sym_SLASH_SLASH, + ACTIONS(499), 1, + anon_sym_SLASH_STAR, + ACTIONS(4960), 1, + anon_sym_LPAREN, + ACTIONS(4962), 1, + anon_sym_LBRACK, + ACTIONS(4964), 1, + anon_sym_QMARK, + ACTIONS(4966), 1, + anon_sym_BANG, + STATE(2569), 1, + sym_or_block, + STATE(2570), 1, + sym_argument_list, + STATE(4070), 1, + sym_type_parameters, + ACTIONS(4958), 2, + anon_sym_DOT, + anon_sym_QMARK_DOT, + ACTIONS(4968), 2, + anon_sym_LBRACK2, + anon_sym_POUND_LBRACK, + STATE(2311), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(5038), 8, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_AMP, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_GT_GT_GT, + anon_sym_AMP_CARET, + ACTIONS(1765), 25, + anon_sym_LF, + anon_sym_CR, + anon_sym_CR_LF, + anon_sym_SEMI, + anon_sym_as, anon_sym_RBRACE, - ACTIONS(4966), 6, + 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, - ACTIONS(4964), 8, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_AMP, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - [50812] = 6, + 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, + [50994] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(2763), 1, - anon_sym_DOT, - STATE(2311), 2, + STATE(2312), 2, sym_line_comment, sym_block_comment, - ACTIONS(2761), 12, + ACTIONS(2459), 13, + anon_sym_DOT, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, @@ -234492,7 +234718,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(2759), 31, + ACTIONS(2457), 31, anon_sym_SEMI, anon_sym_as, anon_sym_LBRACE, @@ -234524,15 +234750,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGin, anon_sym_COLON_EQ, anon_sym_DOT_DOT, - [50873] = 5, + [51053] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - STATE(2312), 2, + STATE(2313), 2, sym_line_comment, sym_block_comment, - ACTIONS(2691), 13, + ACTIONS(2538), 13, anon_sym_DOT, anon_sym_PIPE, anon_sym_PLUS, @@ -234546,7 +234772,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(2689), 31, + ACTIONS(2536), 31, anon_sym_SEMI, anon_sym_as, anon_sym_LBRACE, @@ -234578,69 +234804,169 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGin, anon_sym_COLON_EQ, anon_sym_DOT_DOT, - [50932] = 5, + [51112] = 32, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - STATE(2313), 2, + ACTIONS(3484), 1, + anon_sym_COLON_EQ, + ACTIONS(4703), 1, + anon_sym_LBRACE, + ACTIONS(4938), 1, + anon_sym_LPAREN, + ACTIONS(4940), 1, + anon_sym_LBRACK, + ACTIONS(4942), 1, + anon_sym_QMARK, + ACTIONS(4944), 1, + anon_sym_BANG, + ACTIONS(4946), 1, + anon_sym_LBRACK2, + ACTIONS(4950), 1, + anon_sym_POUND_LBRACK, + ACTIONS(4996), 1, + anon_sym_as, + ACTIONS(5000), 1, + anon_sym_COMMA, + ACTIONS(5012), 1, + anon_sym_PLUS_PLUS, + ACTIONS(5014), 1, + anon_sym_DASH_DASH, + ACTIONS(5016), 1, + anon_sym_CARET, + ACTIONS(5018), 1, + anon_sym_AMP_AMP, + ACTIONS(5020), 1, + anon_sym_PIPE_PIPE, + ACTIONS(5022), 1, + anon_sym_or, + STATE(1624), 1, + sym_block, + STATE(2298), 1, + sym_argument_list, + STATE(2299), 1, + sym_or_block, + STATE(3809), 1, + aux_sym_strictly_expression_list_repeat1, + STATE(4251), 1, + sym_type_parameters, + ACTIONS(4948), 2, + anon_sym_DOT, + anon_sym_QMARK_DOT, + ACTIONS(5008), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(5024), 2, + anon_sym_is, + anon_sym_BANGis, + ACTIONS(5026), 2, + anon_sym_in, + anon_sym_BANGin, + STATE(2314), 2, sym_line_comment, sym_block_comment, - ACTIONS(2836), 13, - anon_sym_DOT, + ACTIONS(5002), 3, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, + ACTIONS(5006), 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(2834), 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(5010), 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(5004), 5, + anon_sym_STAR, + anon_sym_PERCENT, anon_sym_LT_LT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, + [51225] = 24, + ACTIONS(497), 1, + anon_sym_SLASH_SLASH, + ACTIONS(499), 1, + anon_sym_SLASH_STAR, + ACTIONS(4960), 1, + anon_sym_LPAREN, + ACTIONS(4962), 1, + anon_sym_LBRACK, + ACTIONS(4964), 1, + anon_sym_QMARK, + ACTIONS(4966), 1, + anon_sym_BANG, + ACTIONS(4970), 1, + anon_sym_as, + ACTIONS(4980), 1, + anon_sym_PLUS_PLUS, + ACTIONS(4982), 1, + anon_sym_DASH_DASH, + ACTIONS(4984), 1, anon_sym_AMP_AMP, + ACTIONS(4986), 1, anon_sym_PIPE_PIPE, + ACTIONS(4988), 1, anon_sym_or, + STATE(2569), 1, + sym_or_block, + STATE(2570), 1, + sym_argument_list, + STATE(4070), 1, + sym_type_parameters, + ACTIONS(4958), 2, + anon_sym_DOT, anon_sym_QMARK_DOT, + ACTIONS(4968), 2, + anon_sym_LBRACK2, anon_sym_POUND_LBRACK, + ACTIONS(4990), 2, anon_sym_is, anon_sym_BANGis, + ACTIONS(4992), 2, anon_sym_in, anon_sym_BANGin, - anon_sym_COLON_EQ, - anon_sym_DOT_DOT, - [50991] = 5, + STATE(2315), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(4974), 4, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_CARET, + ACTIONS(1773), 5, + anon_sym_LF, + anon_sym_CR, + anon_sym_CR_LF, + anon_sym_COMMA, + anon_sym_RBRACE, + ACTIONS(4978), 6, + anon_sym_LT, + anon_sym_GT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(4976), 8, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_AMP, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_GT_GT_GT, + anon_sym_AMP_CARET, + [51322] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - STATE(2314), 2, + STATE(2316), 2, sym_line_comment, sym_block_comment, - ACTIONS(2794), 13, + ACTIONS(2778), 13, anon_sym_DOT, anon_sym_PIPE, anon_sym_PLUS, @@ -234654,7 +234980,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(2792), 31, + ACTIONS(2776), 31, anon_sym_SEMI, anon_sym_as, anon_sym_LBRACE, @@ -234686,15 +235012,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGin, anon_sym_COLON_EQ, anon_sym_DOT_DOT, - [51050] = 5, + [51381] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - STATE(2315), 2, + STATE(2317), 2, sym_line_comment, sym_block_comment, - ACTIONS(2802), 13, + ACTIONS(2732), 13, anon_sym_DOT, anon_sym_PIPE, anon_sym_PLUS, @@ -234708,7 +235034,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(2800), 31, + ACTIONS(2730), 31, anon_sym_SEMI, anon_sym_as, anon_sym_LBRACE, @@ -234740,15 +235066,88 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGin, anon_sym_COLON_EQ, anon_sym_DOT_DOT, - [51109] = 5, + [51440] = 24, + ACTIONS(497), 1, + anon_sym_SLASH_SLASH, + ACTIONS(499), 1, + anon_sym_SLASH_STAR, + ACTIONS(4960), 1, + anon_sym_LPAREN, + ACTIONS(4962), 1, + anon_sym_LBRACK, + ACTIONS(4964), 1, + anon_sym_QMARK, + ACTIONS(4966), 1, + anon_sym_BANG, + ACTIONS(4970), 1, + anon_sym_as, + ACTIONS(4980), 1, + anon_sym_PLUS_PLUS, + ACTIONS(4982), 1, + anon_sym_DASH_DASH, + ACTIONS(4984), 1, + anon_sym_AMP_AMP, + ACTIONS(4986), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4988), 1, + anon_sym_or, + STATE(2569), 1, + sym_or_block, + STATE(2570), 1, + sym_argument_list, + STATE(4070), 1, + sym_type_parameters, + ACTIONS(4958), 2, + anon_sym_DOT, + anon_sym_QMARK_DOT, + ACTIONS(4968), 2, + anon_sym_LBRACK2, + anon_sym_POUND_LBRACK, + ACTIONS(4990), 2, + anon_sym_is, + anon_sym_BANGis, + ACTIONS(4992), 2, + anon_sym_in, + anon_sym_BANGin, + STATE(2318), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(4974), 4, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_CARET, + ACTIONS(1795), 5, + anon_sym_LF, + anon_sym_CR, + anon_sym_CR_LF, + anon_sym_COMMA, + anon_sym_RBRACE, + ACTIONS(4978), 6, + anon_sym_LT, + anon_sym_GT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(4976), 8, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_AMP, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_GT_GT_GT, + anon_sym_AMP_CARET, + [51537] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - STATE(2316), 2, + STATE(2319), 2, sym_line_comment, sym_block_comment, - ACTIONS(2892), 13, + ACTIONS(2119), 13, anon_sym_DOT, anon_sym_PIPE, anon_sym_PLUS, @@ -234762,7 +235161,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(2890), 31, + ACTIONS(2117), 31, anon_sym_SEMI, anon_sym_as, anon_sym_LBRACE, @@ -234794,15 +235193,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGin, anon_sym_COLON_EQ, anon_sym_DOT_DOT, - [51168] = 5, + [51596] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - STATE(2317), 2, + STATE(2320), 2, sym_line_comment, sym_block_comment, - ACTIONS(2810), 13, + ACTIONS(2756), 13, anon_sym_DOT, anon_sym_PIPE, anon_sym_PLUS, @@ -234816,7 +235215,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(2808), 31, + ACTIONS(2754), 31, anon_sym_SEMI, anon_sym_as, anon_sym_LBRACE, @@ -234848,15 +235247,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGin, anon_sym_COLON_EQ, anon_sym_DOT_DOT, - [51227] = 5, + [51655] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - STATE(2318), 2, + STATE(2321), 2, sym_line_comment, sym_block_comment, - ACTIONS(3046), 13, + ACTIONS(3058), 13, anon_sym_DOT, anon_sym_PIPE, anon_sym_PLUS, @@ -234870,7 +235269,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(3044), 31, + ACTIONS(3056), 31, anon_sym_SEMI, anon_sym_as, anon_sym_LBRACE, @@ -234902,88 +235301,96 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGin, anon_sym_COLON_EQ, anon_sym_DOT_DOT, - [51286] = 24, - ACTIONS(497), 1, + [51714] = 32, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, - ACTIONS(499), 1, + ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(4956), 1, - anon_sym_as, - ACTIONS(4960), 1, + ACTIONS(3484), 1, + anon_sym_COLON_EQ, + ACTIONS(4938), 1, anon_sym_LPAREN, - ACTIONS(4968), 1, + ACTIONS(4940), 1, anon_sym_LBRACK, - ACTIONS(4970), 1, - anon_sym_PLUS_PLUS, - ACTIONS(4972), 1, - anon_sym_DASH_DASH, - ACTIONS(4974), 1, + ACTIONS(4942), 1, anon_sym_QMARK, - ACTIONS(4976), 1, + ACTIONS(4944), 1, anon_sym_BANG, - ACTIONS(4984), 1, - anon_sym_or, - ACTIONS(5032), 1, + ACTIONS(4946), 1, + anon_sym_LBRACK2, + ACTIONS(4950), 1, + anon_sym_POUND_LBRACK, + ACTIONS(4996), 1, + anon_sym_as, + ACTIONS(5000), 1, + anon_sym_COMMA, + ACTIONS(5012), 1, + anon_sym_PLUS_PLUS, + ACTIONS(5014), 1, + anon_sym_DASH_DASH, + ACTIONS(5016), 1, + anon_sym_CARET, + ACTIONS(5018), 1, anon_sym_AMP_AMP, - ACTIONS(5038), 1, + ACTIONS(5020), 1, anon_sym_PIPE_PIPE, - STATE(2506), 1, - sym_or_block, - STATE(2508), 1, + ACTIONS(5022), 1, + anon_sym_or, + ACTIONS(5050), 1, + anon_sym_LBRACE, + STATE(2298), 1, sym_argument_list, - STATE(4294), 1, + STATE(2299), 1, + sym_or_block, + STATE(2357), 1, + sym_block, + STATE(3809), 1, + aux_sym_strictly_expression_list_repeat1, + STATE(4251), 1, sym_type_parameters, - ACTIONS(4954), 2, + ACTIONS(4948), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - ACTIONS(4978), 2, - anon_sym_LBRACK2, - anon_sym_POUND_LBRACK, - ACTIONS(4986), 2, + ACTIONS(5008), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(5024), 2, anon_sym_is, anon_sym_BANGis, - ACTIONS(5034), 2, + ACTIONS(5026), 2, anon_sym_in, anon_sym_BANGin, - STATE(2319), 2, + STATE(2322), 2, sym_line_comment, sym_block_comment, - ACTIONS(5026), 4, + ACTIONS(5002), 3, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - anon_sym_CARET, - ACTIONS(1781), 5, - anon_sym_LF, - anon_sym_CR, - anon_sym_CR_LF, - anon_sym_SEMI, - anon_sym_RBRACE, - ACTIONS(5030), 6, - anon_sym_LT, - anon_sym_GT, + ACTIONS(5006), 3, + anon_sym_SLASH, + anon_sym_AMP, + anon_sym_GT_GT, + ACTIONS(5010), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(5028), 8, + ACTIONS(5004), 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, - [51383] = 5, + [51827] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - STATE(2320), 2, + STATE(2323), 2, sym_line_comment, sym_block_comment, - ACTIONS(2828), 13, + ACTIONS(2672), 13, anon_sym_DOT, anon_sym_PIPE, anon_sym_PLUS, @@ -234997,7 +235404,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(2826), 31, + ACTIONS(2670), 31, anon_sym_SEMI, anon_sym_as, anon_sym_LBRACE, @@ -235029,15 +235436,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGin, anon_sym_COLON_EQ, anon_sym_DOT_DOT, - [51442] = 5, + [51886] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - STATE(2321), 2, + STATE(2324), 2, sym_line_comment, sym_block_comment, - ACTIONS(2806), 13, + ACTIONS(2736), 13, anon_sym_DOT, anon_sym_PIPE, anon_sym_PLUS, @@ -235051,7 +235458,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(2804), 31, + ACTIONS(2734), 31, anon_sym_SEMI, anon_sym_as, anon_sym_LBRACE, @@ -235083,15 +235490,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGin, anon_sym_COLON_EQ, anon_sym_DOT_DOT, - [51501] = 5, + [51945] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - STATE(2322), 2, + STATE(2325), 2, sym_line_comment, sym_block_comment, - ACTIONS(2511), 13, + ACTIONS(2668), 13, anon_sym_DOT, anon_sym_PIPE, anon_sym_PLUS, @@ -235105,7 +235512,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(2509), 31, + ACTIONS(2666), 31, anon_sym_SEMI, anon_sym_as, anon_sym_LBRACE, @@ -235137,240 +235544,96 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGin, anon_sym_COLON_EQ, anon_sym_DOT_DOT, - [51560] = 14, - ACTIONS(497), 1, - anon_sym_SLASH_SLASH, - ACTIONS(499), 1, - anon_sym_SLASH_STAR, - ACTIONS(4960), 1, - anon_sym_LPAREN, - ACTIONS(4968), 1, - anon_sym_LBRACK, - ACTIONS(4974), 1, - anon_sym_QMARK, - ACTIONS(4976), 1, - anon_sym_BANG, - STATE(2506), 1, - sym_or_block, - STATE(2508), 1, - sym_argument_list, - STATE(4294), 1, - sym_type_parameters, - ACTIONS(4954), 2, - anon_sym_DOT, - anon_sym_QMARK_DOT, - ACTIONS(4978), 2, - anon_sym_LBRACK2, - anon_sym_POUND_LBRACK, - STATE(2323), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(5028), 8, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_AMP, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - ACTIONS(1785), 25, - anon_sym_LF, - anon_sym_CR, - anon_sym_CR_LF, - anon_sym_SEMI, - anon_sym_as, - anon_sym_RBRACE, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT, - anon_sym_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_CARET, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_or, - anon_sym_is, - anon_sym_BANGis, - anon_sym_in, - anon_sym_BANGin, - [51637] = 32, + [52004] = 32, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(3478), 1, + ACTIONS(3484), 1, anon_sym_COLON_EQ, - ACTIONS(4932), 1, + ACTIONS(4938), 1, anon_sym_LPAREN, - ACTIONS(4934), 1, + ACTIONS(4940), 1, anon_sym_LBRACK, - ACTIONS(4936), 1, + ACTIONS(4942), 1, anon_sym_QMARK, - ACTIONS(4938), 1, + ACTIONS(4944), 1, anon_sym_BANG, - ACTIONS(4940), 1, + ACTIONS(4946), 1, anon_sym_LBRACK2, - ACTIONS(4944), 1, + ACTIONS(4950), 1, anon_sym_POUND_LBRACK, - ACTIONS(4994), 1, - anon_sym_as, ACTIONS(4996), 1, + anon_sym_as, + ACTIONS(5000), 1, anon_sym_COMMA, - ACTIONS(5008), 1, + ACTIONS(5012), 1, anon_sym_PLUS_PLUS, - ACTIONS(5010), 1, + ACTIONS(5014), 1, anon_sym_DASH_DASH, - ACTIONS(5012), 1, + ACTIONS(5016), 1, anon_sym_CARET, - ACTIONS(5014), 1, + ACTIONS(5018), 1, anon_sym_AMP_AMP, - ACTIONS(5016), 1, + ACTIONS(5020), 1, anon_sym_PIPE_PIPE, - ACTIONS(5018), 1, + ACTIONS(5022), 1, anon_sym_or, - ACTIONS(5040), 1, + ACTIONS(5052), 1, anon_sym_LBRACE, - STATE(1800), 1, + STATE(229), 1, sym_block, - STATE(2396), 1, - sym_or_block, - STATE(2397), 1, + STATE(2298), 1, sym_argument_list, - STATE(3919), 1, - aux_sym_strictly_expression_list_repeat1, - STATE(4127), 1, - sym_type_parameters, - ACTIONS(4942), 2, - anon_sym_DOT, - anon_sym_QMARK_DOT, - ACTIONS(5004), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(5020), 2, - anon_sym_is, - anon_sym_BANGis, - ACTIONS(5022), 2, - anon_sym_in, - anon_sym_BANGin, - STATE(2324), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(4998), 3, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(5002), 3, - anon_sym_SLASH, - anon_sym_AMP, - anon_sym_GT_GT, - ACTIONS(5006), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(5000), 5, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - [51750] = 32, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_STAR, - ACTIONS(3478), 1, - anon_sym_COLON_EQ, - ACTIONS(4932), 1, - anon_sym_LPAREN, - ACTIONS(4934), 1, - anon_sym_LBRACK, - ACTIONS(4936), 1, - anon_sym_QMARK, - ACTIONS(4938), 1, - anon_sym_BANG, - ACTIONS(4940), 1, - anon_sym_LBRACK2, - ACTIONS(4944), 1, - anon_sym_POUND_LBRACK, - ACTIONS(4994), 1, - anon_sym_as, - ACTIONS(4996), 1, - anon_sym_COMMA, - ACTIONS(5008), 1, - anon_sym_PLUS_PLUS, - ACTIONS(5010), 1, - anon_sym_DASH_DASH, - ACTIONS(5012), 1, - anon_sym_CARET, - ACTIONS(5014), 1, - anon_sym_AMP_AMP, - ACTIONS(5016), 1, - anon_sym_PIPE_PIPE, - ACTIONS(5018), 1, - anon_sym_or, - ACTIONS(5042), 1, - anon_sym_LBRACE, - STATE(2396), 1, + STATE(2299), 1, sym_or_block, - STATE(2397), 1, - sym_argument_list, - STATE(2776), 1, - sym_block, - STATE(3919), 1, + STATE(3809), 1, aux_sym_strictly_expression_list_repeat1, - STATE(4127), 1, + STATE(4251), 1, sym_type_parameters, - ACTIONS(4942), 2, + ACTIONS(4948), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - ACTIONS(5004), 2, + ACTIONS(5008), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(5020), 2, + ACTIONS(5024), 2, anon_sym_is, anon_sym_BANGis, - ACTIONS(5022), 2, + ACTIONS(5026), 2, anon_sym_in, anon_sym_BANGin, - STATE(2325), 2, + STATE(2326), 2, sym_line_comment, sym_block_comment, - ACTIONS(4998), 3, + ACTIONS(5002), 3, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5002), 3, + ACTIONS(5006), 3, anon_sym_SLASH, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(5006), 4, + ACTIONS(5010), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(5000), 5, + ACTIONS(5004), 5, anon_sym_STAR, anon_sym_PERCENT, anon_sym_LT_LT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - [51863] = 5, + [52117] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - STATE(2326), 2, + STATE(2327), 2, sym_line_comment, sym_block_comment, - ACTIONS(2473), 13, + ACTIONS(2750), 13, anon_sym_DOT, anon_sym_PIPE, anon_sym_PLUS, @@ -235384,7 +235647,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(2471), 31, + ACTIONS(2748), 31, anon_sym_SEMI, anon_sym_as, anon_sym_LBRACE, @@ -235416,15 +235679,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGin, anon_sym_COLON_EQ, anon_sym_DOT_DOT, - [51922] = 5, + [52176] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - STATE(2327), 2, + STATE(2328), 2, sym_line_comment, sym_block_comment, - ACTIONS(3042), 13, + ACTIONS(2740), 13, anon_sym_DOT, anon_sym_PIPE, anon_sym_PLUS, @@ -235438,7 +235701,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(3040), 31, + ACTIONS(2738), 31, anon_sym_SEMI, anon_sym_as, anon_sym_LBRACE, @@ -235470,17 +235733,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGin, anon_sym_COLON_EQ, anon_sym_DOT_DOT, - [51981] = 6, + [52235] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(1853), 1, - anon_sym_DOT, - STATE(2328), 2, + STATE(2329), 2, sym_line_comment, sym_block_comment, - ACTIONS(2507), 12, + ACTIONS(2886), 13, + anon_sym_DOT, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, @@ -235493,7 +235755,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(2505), 31, + ACTIONS(2884), 31, anon_sym_SEMI, anon_sym_as, anon_sym_LBRACE, @@ -235525,15 +235787,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGin, anon_sym_COLON_EQ, anon_sym_DOT_DOT, - [52042] = 5, + [52294] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - STATE(2329), 2, + STATE(2330), 2, sym_line_comment, sym_block_comment, - ACTIONS(2487), 13, + ACTIONS(2906), 13, anon_sym_DOT, anon_sym_PIPE, anon_sym_PLUS, @@ -235547,7 +235809,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(2485), 31, + ACTIONS(2904), 31, anon_sym_SEMI, anon_sym_as, anon_sym_LBRACE, @@ -235579,15 +235841,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGin, anon_sym_COLON_EQ, anon_sym_DOT_DOT, - [52101] = 5, + [52353] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - STATE(2330), 2, + STATE(2331), 2, sym_line_comment, sym_block_comment, - ACTIONS(2916), 13, + ACTIONS(2910), 13, anon_sym_DOT, anon_sym_PIPE, anon_sym_PLUS, @@ -235601,7 +235863,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(2914), 31, + ACTIONS(2908), 31, anon_sym_SEMI, anon_sym_as, anon_sym_LBRACE, @@ -235633,80 +235895,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGin, anon_sym_COLON_EQ, anon_sym_DOT_DOT, - [52160] = 24, - ACTIONS(497), 1, - anon_sym_SLASH_SLASH, - ACTIONS(499), 1, - anon_sym_SLASH_STAR, - ACTIONS(4956), 1, - anon_sym_as, - ACTIONS(4960), 1, - anon_sym_LPAREN, - ACTIONS(4968), 1, - anon_sym_LBRACK, - ACTIONS(4970), 1, - anon_sym_PLUS_PLUS, - ACTIONS(4972), 1, - anon_sym_DASH_DASH, - ACTIONS(4974), 1, - anon_sym_QMARK, - ACTIONS(4976), 1, - anon_sym_BANG, - ACTIONS(4980), 1, - anon_sym_AMP_AMP, - ACTIONS(4982), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4984), 1, - anon_sym_or, - STATE(2506), 1, - sym_or_block, - STATE(2508), 1, - sym_argument_list, - STATE(4294), 1, - sym_type_parameters, - ACTIONS(4954), 2, - anon_sym_DOT, - anon_sym_QMARK_DOT, - ACTIONS(4978), 2, - anon_sym_LBRACK2, - anon_sym_POUND_LBRACK, - ACTIONS(4986), 2, - anon_sym_is, - anon_sym_BANGis, - ACTIONS(4988), 2, - anon_sym_in, - anon_sym_BANGin, - STATE(2331), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(4962), 4, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_CARET, - ACTIONS(1781), 5, - anon_sym_LF, - anon_sym_CR, - anon_sym_CR_LF, - anon_sym_COMMA, - anon_sym_RBRACE, - ACTIONS(4966), 6, - anon_sym_LT, - anon_sym_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(4964), 8, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_AMP, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - [52257] = 5, + [52412] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, @@ -235714,7 +235903,7 @@ static const uint16_t ts_small_parse_table[] = { STATE(2332), 2, sym_line_comment, sym_block_comment, - ACTIONS(2165), 13, + ACTIONS(2680), 13, anon_sym_DOT, anon_sym_PIPE, anon_sym_PLUS, @@ -235728,7 +235917,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(2163), 31, + ACTIONS(2678), 31, anon_sym_SEMI, anon_sym_as, anon_sym_LBRACE, @@ -235760,7 +235949,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGin, anon_sym_COLON_EQ, anon_sym_DOT_DOT, - [52316] = 5, + [52471] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, @@ -235768,7 +235957,7 @@ static const uint16_t ts_small_parse_table[] = { STATE(2333), 2, sym_line_comment, sym_block_comment, - ACTIONS(1851), 13, + ACTIONS(3050), 13, anon_sym_DOT, anon_sym_PIPE, anon_sym_PLUS, @@ -235782,7 +235971,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(1849), 31, + ACTIONS(3048), 31, anon_sym_SEMI, anon_sym_as, anon_sym_LBRACE, @@ -235814,72 +236003,72 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGin, anon_sym_COLON_EQ, anon_sym_DOT_DOT, - [52375] = 25, + [52530] = 25, ACTIONS(497), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, anon_sym_SLASH_STAR, - ACTIONS(4956), 1, - anon_sym_as, ACTIONS(4960), 1, anon_sym_LPAREN, - ACTIONS(4968), 1, + ACTIONS(4962), 1, anon_sym_LBRACK, - ACTIONS(4970), 1, - anon_sym_PLUS_PLUS, - ACTIONS(4972), 1, - anon_sym_DASH_DASH, - ACTIONS(4974), 1, + ACTIONS(4964), 1, anon_sym_QMARK, - ACTIONS(4976), 1, + ACTIONS(4966), 1, anon_sym_BANG, + ACTIONS(4970), 1, + anon_sym_as, ACTIONS(4980), 1, - anon_sym_AMP_AMP, + anon_sym_PLUS_PLUS, ACTIONS(4982), 1, - anon_sym_PIPE_PIPE, + anon_sym_DASH_DASH, ACTIONS(4984), 1, + anon_sym_AMP_AMP, + ACTIONS(4986), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4988), 1, anon_sym_or, - ACTIONS(5044), 1, + ACTIONS(5054), 1, anon_sym_COMMA, - STATE(2506), 1, + STATE(2569), 1, sym_or_block, - STATE(2508), 1, + STATE(2570), 1, sym_argument_list, - STATE(4294), 1, + STATE(4070), 1, sym_type_parameters, - ACTIONS(4954), 2, + ACTIONS(4958), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - ACTIONS(4978), 2, + ACTIONS(4968), 2, anon_sym_LBRACK2, anon_sym_POUND_LBRACK, - ACTIONS(4986), 2, + ACTIONS(4990), 2, anon_sym_is, anon_sym_BANGis, - ACTIONS(4988), 2, + ACTIONS(4992), 2, anon_sym_in, anon_sym_BANGin, STATE(2334), 2, sym_line_comment, sym_block_comment, - ACTIONS(3520), 4, + ACTIONS(3528), 4, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, anon_sym_RBRACE, - ACTIONS(4962), 4, + ACTIONS(4974), 4, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_CARET, - ACTIONS(4966), 6, + ACTIONS(4978), 6, anon_sym_LT, anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(4964), 8, + ACTIONS(4976), 8, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, @@ -235888,88 +236077,61 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - [52474] = 32, + [52629] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(3478), 1, - anon_sym_COLON_EQ, - ACTIONS(4932), 1, - anon_sym_LPAREN, - ACTIONS(4934), 1, - anon_sym_LBRACK, - ACTIONS(4936), 1, - anon_sym_QMARK, - ACTIONS(4938), 1, - anon_sym_BANG, - ACTIONS(4940), 1, - anon_sym_LBRACK2, - ACTIONS(4944), 1, - anon_sym_POUND_LBRACK, - ACTIONS(4994), 1, - anon_sym_as, - ACTIONS(4996), 1, - anon_sym_COMMA, - ACTIONS(5008), 1, - anon_sym_PLUS_PLUS, - ACTIONS(5010), 1, - anon_sym_DASH_DASH, - ACTIONS(5012), 1, - anon_sym_CARET, - ACTIONS(5014), 1, - anon_sym_AMP_AMP, - ACTIONS(5016), 1, - anon_sym_PIPE_PIPE, - ACTIONS(5018), 1, - anon_sym_or, - ACTIONS(5046), 1, - anon_sym_LBRACE, - STATE(970), 1, - sym_block, - STATE(2396), 1, - sym_or_block, - STATE(2397), 1, - sym_argument_list, - STATE(3919), 1, - aux_sym_strictly_expression_list_repeat1, - STATE(4127), 1, - sym_type_parameters, - ACTIONS(4942), 2, - anon_sym_DOT, - anon_sym_QMARK_DOT, - ACTIONS(5004), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(5020), 2, - anon_sym_is, - anon_sym_BANGis, - ACTIONS(5022), 2, - anon_sym_in, - anon_sym_BANGin, STATE(2335), 2, sym_line_comment, sym_block_comment, - ACTIONS(4998), 3, + ACTIONS(2788), 13, + anon_sym_DOT, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5002), 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(5006), 4, + ACTIONS(2786), 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(5000), 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, - [52587] = 5, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_or, + anon_sym_QMARK_DOT, + anon_sym_POUND_LBRACK, + anon_sym_is, + anon_sym_BANGis, + anon_sym_in, + anon_sym_BANGin, + anon_sym_COLON_EQ, + anon_sym_DOT_DOT, + [52688] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, @@ -235977,7 +236139,7 @@ static const uint16_t ts_small_parse_table[] = { STATE(2336), 2, sym_line_comment, sym_block_comment, - ACTIONS(2273), 13, + ACTIONS(2684), 13, anon_sym_DOT, anon_sym_PIPE, anon_sym_PLUS, @@ -235991,7 +236153,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(2271), 31, + ACTIONS(2682), 31, anon_sym_SEMI, anon_sym_as, anon_sym_LBRACE, @@ -236023,17 +236185,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGin, anon_sym_COLON_EQ, anon_sym_DOT_DOT, - [52646] = 6, + [52747] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(5048), 1, - anon_sym_BANG, STATE(2337), 2, sym_line_comment, sym_block_comment, - ACTIONS(2525), 12, + ACTIONS(2798), 13, anon_sym_DOT, anon_sym_PIPE, anon_sym_PLUS, @@ -236043,10 +236203,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_COLON, anon_sym_QMARK, + anon_sym_BANG, anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(2523), 31, + ACTIONS(2796), 31, anon_sym_SEMI, anon_sym_as, anon_sym_LBRACE, @@ -236078,144 +236239,115 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGin, anon_sym_COLON_EQ, anon_sym_DOT_DOT, - [52707] = 15, - ACTIONS(497), 1, + [52806] = 5, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, - ACTIONS(499), 1, + ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(4960), 1, - anon_sym_LPAREN, - ACTIONS(4968), 1, - anon_sym_LBRACK, - ACTIONS(4974), 1, - anon_sym_QMARK, - ACTIONS(4976), 1, - anon_sym_BANG, - STATE(2506), 1, - sym_or_block, - STATE(2508), 1, - sym_argument_list, - STATE(4294), 1, - sym_type_parameters, - ACTIONS(4954), 2, - anon_sym_DOT, - anon_sym_QMARK_DOT, - ACTIONS(4978), 2, - anon_sym_LBRACK2, - anon_sym_POUND_LBRACK, STATE(2338), 2, sym_line_comment, sym_block_comment, - ACTIONS(4962), 4, + ACTIONS(2802), 13, + anon_sym_DOT, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - anon_sym_CARET, - ACTIONS(4964), 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(1769), 21, - anon_sym_LF, - anon_sym_CR, - anon_sym_CR_LF, + ACTIONS(2800), 31, + anon_sym_SEMI, anon_sym_as, + anon_sym_LBRACE, anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LT, - anon_sym_GT, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_STAR, + anon_sym_PERCENT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_or, - anon_sym_is, - anon_sym_BANGis, - anon_sym_in, - anon_sym_BANGin, - [52786] = 24, - ACTIONS(497), 1, - anon_sym_SLASH_SLASH, - ACTIONS(499), 1, - anon_sym_SLASH_STAR, - ACTIONS(4956), 1, - anon_sym_as, - ACTIONS(4960), 1, - anon_sym_LPAREN, - ACTIONS(4968), 1, anon_sym_LBRACK, - ACTIONS(4970), 1, + anon_sym_RBRACK, anon_sym_PLUS_PLUS, - ACTIONS(4972), 1, anon_sym_DASH_DASH, - ACTIONS(4974), 1, - anon_sym_QMARK, - ACTIONS(4976), 1, - anon_sym_BANG, - ACTIONS(4980), 1, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_AMP_CARET, anon_sym_AMP_AMP, - ACTIONS(4982), 1, anon_sym_PIPE_PIPE, - ACTIONS(4984), 1, anon_sym_or, - STATE(2506), 1, - sym_or_block, - STATE(2508), 1, - sym_argument_list, - STATE(4294), 1, - sym_type_parameters, - ACTIONS(4954), 2, - anon_sym_DOT, anon_sym_QMARK_DOT, - ACTIONS(4978), 2, - anon_sym_LBRACK2, anon_sym_POUND_LBRACK, - ACTIONS(4986), 2, anon_sym_is, anon_sym_BANGis, - ACTIONS(4988), 2, anon_sym_in, anon_sym_BANGin, + anon_sym_COLON_EQ, + anon_sym_DOT_DOT, + [52865] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, STATE(2339), 2, sym_line_comment, sym_block_comment, - ACTIONS(4962), 4, + ACTIONS(2824), 13, + anon_sym_DOT, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - anon_sym_CARET, - ACTIONS(1773), 5, - anon_sym_LF, - anon_sym_CR, - anon_sym_CR_LF, - anon_sym_COMMA, - anon_sym_RBRACE, - ACTIONS(4966), 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(2822), 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(4964), 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, - [52883] = 5, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_or, + anon_sym_QMARK_DOT, + anon_sym_POUND_LBRACK, + anon_sym_is, + anon_sym_BANGis, + anon_sym_in, + anon_sym_BANGin, + anon_sym_COLON_EQ, + anon_sym_DOT_DOT, + [52924] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, @@ -236223,7 +236355,7 @@ static const uint16_t ts_small_parse_table[] = { STATE(2340), 2, sym_line_comment, sym_block_comment, - ACTIONS(2169), 13, + ACTIONS(2828), 13, anon_sym_DOT, anon_sym_PIPE, anon_sym_PLUS, @@ -236237,7 +236369,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(2167), 31, + ACTIONS(2826), 31, anon_sym_SEMI, anon_sym_as, anon_sym_LBRACE, @@ -236269,16 +236401,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGin, anon_sym_COLON_EQ, anon_sym_DOT_DOT, - [52942] = 5, + [52983] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, + ACTIONS(1891), 1, + anon_sym_DOT, STATE(2341), 2, sym_line_comment, sym_block_comment, - ACTIONS(2832), 13, - anon_sym_DOT, + ACTIONS(2475), 12, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, @@ -236291,7 +236424,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(2830), 31, + ACTIONS(2473), 31, anon_sym_SEMI, anon_sym_as, anon_sym_LBRACE, @@ -236323,7 +236456,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGin, anon_sym_COLON_EQ, anon_sym_DOT_DOT, - [53001] = 5, + [53044] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, @@ -236331,7 +236464,7 @@ static const uint16_t ts_small_parse_table[] = { STATE(2342), 2, sym_line_comment, sym_block_comment, - ACTIONS(2507), 13, + ACTIONS(2688), 13, anon_sym_DOT, anon_sym_PIPE, anon_sym_PLUS, @@ -236345,7 +236478,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(2505), 31, + ACTIONS(2686), 31, anon_sym_SEMI, anon_sym_as, anon_sym_LBRACE, @@ -236377,308 +236510,223 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGin, anon_sym_COLON_EQ, anon_sym_DOT_DOT, - [53060] = 32, - ACTIONS(3), 1, + [53103] = 5, + ACTIONS(497), 1, anon_sym_SLASH_SLASH, - ACTIONS(5), 1, + ACTIONS(499), 1, anon_sym_SLASH_STAR, - ACTIONS(3478), 1, - anon_sym_COLON_EQ, - ACTIONS(4932), 1, - anon_sym_LPAREN, - ACTIONS(4934), 1, + ACTIONS(1807), 1, anon_sym_LBRACK, - ACTIONS(4936), 1, - anon_sym_QMARK, - ACTIONS(4938), 1, - anon_sym_BANG, - ACTIONS(4940), 1, - anon_sym_LBRACK2, - ACTIONS(4944), 1, - anon_sym_POUND_LBRACK, - ACTIONS(4994), 1, - anon_sym_as, - ACTIONS(4996), 1, - anon_sym_COMMA, - ACTIONS(5008), 1, - anon_sym_PLUS_PLUS, - ACTIONS(5010), 1, - anon_sym_DASH_DASH, - ACTIONS(5012), 1, - anon_sym_CARET, - ACTIONS(5014), 1, - anon_sym_AMP_AMP, - ACTIONS(5016), 1, - anon_sym_PIPE_PIPE, - ACTIONS(5018), 1, - anon_sym_or, - ACTIONS(5050), 1, - anon_sym_LBRACE, - STATE(2396), 1, - sym_or_block, - STATE(2397), 1, - sym_argument_list, - STATE(2573), 1, - sym_block, - STATE(3919), 1, - aux_sym_strictly_expression_list_repeat1, - STATE(4127), 1, - sym_type_parameters, - ACTIONS(4942), 2, - anon_sym_DOT, - anon_sym_QMARK_DOT, - ACTIONS(5004), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(5020), 2, - anon_sym_is, - anon_sym_BANGis, - ACTIONS(5022), 2, - anon_sym_in, - anon_sym_BANGin, STATE(2343), 2, sym_line_comment, sym_block_comment, - ACTIONS(4998), 3, + ACTIONS(1809), 43, + anon_sym_LF, + anon_sym_CR, + anon_sym_CR_LF, + anon_sym_SEMI, + anon_sym_DOT, + anon_sym_as, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5002), 3, + anon_sym_STAR, anon_sym_SLASH, - anon_sym_AMP, - anon_sym_GT_GT, - ACTIONS(5006), 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(5000), 5, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - [53173] = 24, - ACTIONS(497), 1, - anon_sym_SLASH_SLASH, - ACTIONS(499), 1, - anon_sym_SLASH_STAR, - ACTIONS(4956), 1, - anon_sym_as, - ACTIONS(4960), 1, - anon_sym_LPAREN, - ACTIONS(4968), 1, - anon_sym_LBRACK, - ACTIONS(4970), 1, anon_sym_PLUS_PLUS, - ACTIONS(4972), 1, anon_sym_DASH_DASH, - ACTIONS(4974), 1, anon_sym_QMARK, - ACTIONS(4976), 1, anon_sym_BANG, - ACTIONS(4984), 1, - anon_sym_or, - ACTIONS(5032), 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, - ACTIONS(5038), 1, anon_sym_PIPE_PIPE, - STATE(2506), 1, - sym_or_block, - STATE(2508), 1, - sym_argument_list, - STATE(4294), 1, - sym_type_parameters, - ACTIONS(4954), 2, - anon_sym_DOT, + anon_sym_or, anon_sym_QMARK_DOT, - ACTIONS(4978), 2, - anon_sym_LBRACK2, anon_sym_POUND_LBRACK, - ACTIONS(4986), 2, + anon_sym_else, + anon_sym_DOLLARelse, anon_sym_is, anon_sym_BANGis, - ACTIONS(5034), 2, anon_sym_in, anon_sym_BANGin, + [53162] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, STATE(2344), 2, sym_line_comment, sym_block_comment, - ACTIONS(5026), 4, + ACTIONS(2692), 13, + anon_sym_DOT, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - anon_sym_CARET, - ACTIONS(1773), 5, - anon_sym_LF, - anon_sym_CR, - anon_sym_CR_LF, - anon_sym_SEMI, - anon_sym_RBRACE, - ACTIONS(5030), 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(5028), 8, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_AMP, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - [53270] = 32, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_STAR, - ACTIONS(3478), 1, - anon_sym_COLON_EQ, - ACTIONS(4932), 1, - anon_sym_LPAREN, - ACTIONS(4934), 1, - anon_sym_LBRACK, - ACTIONS(4936), 1, + anon_sym_COLON, anon_sym_QMARK, - ACTIONS(4938), 1, anon_sym_BANG, - ACTIONS(4940), 1, anon_sym_LBRACK2, - ACTIONS(4944), 1, - anon_sym_POUND_LBRACK, - ACTIONS(4994), 1, + anon_sym_AMP, + anon_sym_GT_GT, + ACTIONS(2690), 31, + anon_sym_SEMI, anon_sym_as, - ACTIONS(4996), 1, + anon_sym_LBRACE, anon_sym_COMMA, - ACTIONS(5008), 1, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_PLUS_PLUS, - ACTIONS(5010), 1, anon_sym_DASH_DASH, - ACTIONS(5012), 1, anon_sym_CARET, - ACTIONS(5014), 1, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_AMP_CARET, anon_sym_AMP_AMP, - ACTIONS(5016), 1, anon_sym_PIPE_PIPE, - ACTIONS(5018), 1, anon_sym_or, - ACTIONS(5052), 1, - anon_sym_LBRACE, - STATE(1746), 1, - sym_block, - STATE(2396), 1, - sym_or_block, - STATE(2397), 1, - sym_argument_list, - STATE(3919), 1, - aux_sym_strictly_expression_list_repeat1, - STATE(4127), 1, - sym_type_parameters, - ACTIONS(4942), 2, - anon_sym_DOT, anon_sym_QMARK_DOT, - ACTIONS(5004), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(5020), 2, + anon_sym_POUND_LBRACK, anon_sym_is, anon_sym_BANGis, - ACTIONS(5022), 2, anon_sym_in, anon_sym_BANGin, + anon_sym_COLON_EQ, + anon_sym_DOT_DOT, + [53221] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, STATE(2345), 2, sym_line_comment, sym_block_comment, - ACTIONS(4998), 3, + ACTIONS(2744), 13, + anon_sym_DOT, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5002), 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(5006), 4, + ACTIONS(2742), 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(5000), 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, - [53383] = 17, - ACTIONS(497), 1, - anon_sym_SLASH_SLASH, - ACTIONS(499), 1, - anon_sym_SLASH_STAR, - ACTIONS(4960), 1, - anon_sym_LPAREN, - ACTIONS(4968), 1, - anon_sym_LBRACK, - ACTIONS(4974), 1, - anon_sym_QMARK, - ACTIONS(4976), 1, - anon_sym_BANG, - STATE(2506), 1, - sym_or_block, - STATE(2508), 1, - sym_argument_list, - STATE(4294), 1, - sym_type_parameters, - ACTIONS(4954), 2, - anon_sym_DOT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_or, anon_sym_QMARK_DOT, - ACTIONS(4978), 2, - anon_sym_LBRACK2, anon_sym_POUND_LBRACK, - ACTIONS(4988), 2, + anon_sym_is, + anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, + anon_sym_COLON_EQ, + anon_sym_DOT_DOT, + [53280] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, STATE(2346), 2, sym_line_comment, sym_block_comment, - ACTIONS(4962), 4, + ACTIONS(2836), 13, + anon_sym_DOT, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - anon_sym_CARET, - ACTIONS(4966), 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(2834), 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(4964), 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(1785), 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, - [53466] = 5, + anon_sym_in, + anon_sym_BANGin, + anon_sym_COLON_EQ, + anon_sym_DOT_DOT, + [53339] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, @@ -236686,7 +236734,7 @@ static const uint16_t ts_small_parse_table[] = { STATE(2347), 2, sym_line_comment, sym_block_comment, - ACTIONS(1951), 13, + ACTIONS(2532), 13, anon_sym_DOT, anon_sym_PIPE, anon_sym_PLUS, @@ -236700,7 +236748,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(1953), 31, + ACTIONS(2530), 31, anon_sym_SEMI, anon_sym_as, anon_sym_LBRACE, @@ -236732,7 +236780,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGin, anon_sym_COLON_EQ, anon_sym_DOT_DOT, - [53525] = 5, + [53398] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, @@ -236740,7 +236788,7 @@ static const uint16_t ts_small_parse_table[] = { STATE(2348), 2, sym_line_comment, sym_block_comment, - ACTIONS(2213), 13, + ACTIONS(2728), 13, anon_sym_DOT, anon_sym_PIPE, anon_sym_PLUS, @@ -236754,7 +236802,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(2211), 31, + ACTIONS(2726), 31, anon_sym_SEMI, anon_sym_as, anon_sym_LBRACE, @@ -236786,7 +236834,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGin, anon_sym_COLON_EQ, anon_sym_DOT_DOT, - [53584] = 5, + [53457] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, @@ -236794,7 +236842,7 @@ static const uint16_t ts_small_parse_table[] = { STATE(2349), 2, sym_line_comment, sym_block_comment, - ACTIONS(2850), 13, + ACTIONS(2724), 13, anon_sym_DOT, anon_sym_PIPE, anon_sym_PLUS, @@ -236808,7 +236856,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(2848), 31, + ACTIONS(2722), 31, anon_sym_SEMI, anon_sym_as, anon_sym_LBRACE, @@ -236840,7 +236888,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGin, anon_sym_COLON_EQ, anon_sym_DOT_DOT, - [53643] = 5, + [53516] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, @@ -236848,7 +236896,7 @@ static const uint16_t ts_small_parse_table[] = { STATE(2350), 2, sym_line_comment, sym_block_comment, - ACTIONS(2868), 13, + ACTIONS(2269), 13, anon_sym_DOT, anon_sym_PIPE, anon_sym_PLUS, @@ -236862,7 +236910,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(2866), 31, + ACTIONS(2267), 31, anon_sym_SEMI, anon_sym_as, anon_sym_LBRACE, @@ -236894,7 +236942,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGin, anon_sym_COLON_EQ, anon_sym_DOT_DOT, - [53702] = 5, + [53575] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, @@ -236902,7 +236950,7 @@ static const uint16_t ts_small_parse_table[] = { STATE(2351), 2, sym_line_comment, sym_block_comment, - ACTIONS(2846), 13, + ACTIONS(2191), 13, anon_sym_DOT, anon_sym_PIPE, anon_sym_PLUS, @@ -236916,7 +236964,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(2844), 31, + ACTIONS(2189), 31, anon_sym_SEMI, anon_sym_as, anon_sym_LBRACE, @@ -236948,71 +236996,88 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGin, anon_sym_COLON_EQ, anon_sym_DOT_DOT, - [53761] = 15, - ACTIONS(497), 1, + [53634] = 32, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, - ACTIONS(499), 1, + ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(4960), 1, + ACTIONS(3484), 1, + anon_sym_COLON_EQ, + ACTIONS(4938), 1, anon_sym_LPAREN, - ACTIONS(4968), 1, + ACTIONS(4940), 1, anon_sym_LBRACK, - ACTIONS(4974), 1, + ACTIONS(4942), 1, anon_sym_QMARK, - ACTIONS(4976), 1, + ACTIONS(4944), 1, anon_sym_BANG, - STATE(2506), 1, - sym_or_block, - STATE(2508), 1, + ACTIONS(4946), 1, + anon_sym_LBRACK2, + ACTIONS(4950), 1, + anon_sym_POUND_LBRACK, + ACTIONS(4996), 1, + anon_sym_as, + ACTIONS(5000), 1, + anon_sym_COMMA, + ACTIONS(5012), 1, + anon_sym_PLUS_PLUS, + ACTIONS(5014), 1, + anon_sym_DASH_DASH, + ACTIONS(5016), 1, + anon_sym_CARET, + ACTIONS(5018), 1, + anon_sym_AMP_AMP, + ACTIONS(5020), 1, + anon_sym_PIPE_PIPE, + ACTIONS(5022), 1, + anon_sym_or, + ACTIONS(5056), 1, + anon_sym_LBRACE, + STATE(2125), 1, + sym_block, + STATE(2298), 1, sym_argument_list, - STATE(4294), 1, + STATE(2299), 1, + sym_or_block, + STATE(3809), 1, + aux_sym_strictly_expression_list_repeat1, + STATE(4251), 1, sym_type_parameters, - ACTIONS(4954), 2, + ACTIONS(4948), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - ACTIONS(4978), 2, - anon_sym_LBRACK2, - anon_sym_POUND_LBRACK, + ACTIONS(5008), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(5024), 2, + anon_sym_is, + anon_sym_BANGis, + ACTIONS(5026), 2, + anon_sym_in, + anon_sym_BANGin, STATE(2352), 2, sym_line_comment, sym_block_comment, - ACTIONS(4962), 4, + ACTIONS(5002), 3, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - anon_sym_CARET, - ACTIONS(4964), 8, - anon_sym_STAR, + ACTIONS(5006), 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(1785), 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(5010), 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, - [53840] = 5, + ACTIONS(5004), 5, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_AMP_CARET, + [53747] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, @@ -237020,7 +237085,7 @@ static const uint16_t ts_small_parse_table[] = { STATE(2353), 2, sym_line_comment, sym_block_comment, - ACTIONS(2900), 13, + ACTIONS(1889), 13, anon_sym_DOT, anon_sym_PIPE, anon_sym_PLUS, @@ -237034,7 +237099,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(2898), 31, + ACTIONS(1887), 31, anon_sym_SEMI, anon_sym_as, anon_sym_LBRACE, @@ -237066,80 +237131,88 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGin, anon_sym_COLON_EQ, anon_sym_DOT_DOT, - [53899] = 24, - ACTIONS(497), 1, + [53806] = 32, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, - ACTIONS(499), 1, + ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(4956), 1, - anon_sym_as, - ACTIONS(4960), 1, + ACTIONS(3484), 1, + anon_sym_COLON_EQ, + ACTIONS(4938), 1, anon_sym_LPAREN, - ACTIONS(4968), 1, + ACTIONS(4940), 1, anon_sym_LBRACK, - ACTIONS(4970), 1, - anon_sym_PLUS_PLUS, - ACTIONS(4972), 1, - anon_sym_DASH_DASH, - ACTIONS(4974), 1, + ACTIONS(4942), 1, anon_sym_QMARK, - ACTIONS(4976), 1, + ACTIONS(4944), 1, anon_sym_BANG, - ACTIONS(4980), 1, + ACTIONS(4946), 1, + anon_sym_LBRACK2, + ACTIONS(4950), 1, + anon_sym_POUND_LBRACK, + ACTIONS(4996), 1, + anon_sym_as, + ACTIONS(5000), 1, + anon_sym_COMMA, + ACTIONS(5012), 1, + anon_sym_PLUS_PLUS, + ACTIONS(5014), 1, + anon_sym_DASH_DASH, + ACTIONS(5016), 1, + anon_sym_CARET, + ACTIONS(5018), 1, anon_sym_AMP_AMP, - ACTIONS(4982), 1, + ACTIONS(5020), 1, anon_sym_PIPE_PIPE, - ACTIONS(4984), 1, + ACTIONS(5022), 1, anon_sym_or, - STATE(2506), 1, - sym_or_block, - STATE(2508), 1, + ACTIONS(5058), 1, + anon_sym_LBRACE, + STATE(1832), 1, + sym_block, + STATE(2298), 1, sym_argument_list, - STATE(4294), 1, + STATE(2299), 1, + sym_or_block, + STATE(3809), 1, + aux_sym_strictly_expression_list_repeat1, + STATE(4251), 1, sym_type_parameters, - ACTIONS(4954), 2, + ACTIONS(4948), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - ACTIONS(4978), 2, - anon_sym_LBRACK2, - anon_sym_POUND_LBRACK, - ACTIONS(4988), 2, - anon_sym_in, - anon_sym_BANGin, - ACTIONS(5054), 2, + ACTIONS(5008), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(5024), 2, anon_sym_is, anon_sym_BANGis, + ACTIONS(5026), 2, + anon_sym_in, + anon_sym_BANGin, STATE(2354), 2, sym_line_comment, sym_block_comment, - ACTIONS(4962), 4, + ACTIONS(5002), 3, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - anon_sym_CARET, - ACTIONS(1789), 5, - anon_sym_LF, - anon_sym_CR, - anon_sym_CR_LF, - anon_sym_COMMA, - anon_sym_RBRACE, - ACTIONS(4966), 6, - anon_sym_LT, - anon_sym_GT, + ACTIONS(5006), 3, + anon_sym_SLASH, + anon_sym_AMP, + anon_sym_GT_GT, + ACTIONS(5010), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(4964), 8, + ACTIONS(5004), 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, - [53996] = 5, + [53919] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, @@ -237147,7 +237220,7 @@ static const uint16_t ts_small_parse_table[] = { STATE(2355), 2, sym_line_comment, sym_block_comment, - ACTIONS(2840), 13, + ACTIONS(2890), 13, anon_sym_DOT, anon_sym_PIPE, anon_sym_PLUS, @@ -237161,7 +237234,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(2838), 31, + ACTIONS(2888), 31, anon_sym_SEMI, anon_sym_as, anon_sym_LBRACE, @@ -237193,7 +237266,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGin, anon_sym_COLON_EQ, anon_sym_DOT_DOT, - [54055] = 5, + [53978] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, @@ -237201,7 +237274,7 @@ static const uint16_t ts_small_parse_table[] = { STATE(2356), 2, sym_line_comment, sym_block_comment, - ACTIONS(2681), 13, + ACTIONS(2137), 13, anon_sym_DOT, anon_sym_PIPE, anon_sym_PLUS, @@ -237215,7 +237288,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(2679), 31, + ACTIONS(2135), 31, anon_sym_SEMI, anon_sym_as, anon_sym_LBRACE, @@ -237247,47 +237320,51 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGin, anon_sym_COLON_EQ, anon_sym_DOT_DOT, - [54114] = 5, - ACTIONS(3), 1, + [54037] = 7, + ACTIONS(497), 1, anon_sym_SLASH_SLASH, - ACTIONS(5), 1, + ACTIONS(499), 1, anon_sym_SLASH_STAR, + ACTIONS(1797), 1, + anon_sym_LBRACK, + ACTIONS(5060), 1, + anon_sym_else, + STATE(2507), 1, + sym_else_branch, STATE(2357), 2, sym_line_comment, sym_block_comment, - ACTIONS(2673), 13, + ACTIONS(1799), 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(2671), 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, @@ -237299,49 +237376,51 @@ 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, - [54173] = 5, - ACTIONS(3), 1, + [54100] = 7, + ACTIONS(497), 1, anon_sym_SLASH_SLASH, - ACTIONS(5), 1, + ACTIONS(499), 1, anon_sym_SLASH_STAR, + ACTIONS(1803), 1, + anon_sym_LBRACK, + ACTIONS(5060), 1, + anon_sym_else, + STATE(2506), 1, + sym_else_branch, STATE(2358), 2, sym_line_comment, sym_block_comment, - ACTIONS(2483), 13, + ACTIONS(1805), 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(2481), 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, @@ -237353,63 +237432,80 @@ 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, - [54232] = 5, - ACTIONS(3), 1, + [54163] = 24, + ACTIONS(497), 1, anon_sym_SLASH_SLASH, - ACTIONS(5), 1, + ACTIONS(499), 1, anon_sym_SLASH_STAR, + ACTIONS(4960), 1, + anon_sym_LPAREN, + ACTIONS(4962), 1, + anon_sym_LBRACK, + ACTIONS(4964), 1, + anon_sym_QMARK, + ACTIONS(4966), 1, + anon_sym_BANG, + ACTIONS(4970), 1, + anon_sym_as, + ACTIONS(4980), 1, + anon_sym_PLUS_PLUS, + ACTIONS(4982), 1, + anon_sym_DASH_DASH, + ACTIONS(4984), 1, + anon_sym_AMP_AMP, + ACTIONS(4986), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4988), 1, + anon_sym_or, + STATE(2569), 1, + sym_or_block, + STATE(2570), 1, + sym_argument_list, + STATE(4070), 1, + sym_type_parameters, + ACTIONS(4958), 2, + anon_sym_DOT, + anon_sym_QMARK_DOT, + ACTIONS(4968), 2, + anon_sym_LBRACK2, + anon_sym_POUND_LBRACK, + ACTIONS(4990), 2, + anon_sym_is, + anon_sym_BANGis, + ACTIONS(4992), 2, + anon_sym_in, + anon_sym_BANGin, STATE(2359), 2, sym_line_comment, sym_block_comment, - ACTIONS(2745), 13, - anon_sym_DOT, + ACTIONS(4974), 4, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, + anon_sym_CARET, + ACTIONS(1649), 5, + anon_sym_LF, + anon_sym_CR, + anon_sym_CR_LF, + anon_sym_COMMA, + anon_sym_RBRACE, + ACTIONS(4978), 6, anon_sym_LT, anon_sym_GT, - anon_sym_COLON, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_LBRACK2, - anon_sym_AMP, - anon_sym_GT_GT, - ACTIONS(2743), 31, - anon_sym_SEMI, - anon_sym_as, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_STAR, - anon_sym_PERCENT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_CARET, + ACTIONS(4976), 8, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_AMP, anon_sym_LT_LT, + anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_or, - anon_sym_QMARK_DOT, - anon_sym_POUND_LBRACK, - anon_sym_is, - anon_sym_BANGis, - anon_sym_in, - anon_sym_BANGin, - anon_sym_COLON_EQ, - anon_sym_DOT_DOT, - [54291] = 5, + [54260] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, @@ -237417,7 +237513,7 @@ static const uint16_t ts_small_parse_table[] = { STATE(2360), 2, sym_line_comment, sym_block_comment, - ACTIONS(2183), 13, + ACTIONS(2509), 13, anon_sym_DOT, anon_sym_PIPE, anon_sym_PLUS, @@ -237431,7 +237527,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(2181), 31, + ACTIONS(2507), 31, anon_sym_SEMI, anon_sym_as, anon_sym_LBRACE, @@ -237463,7 +237559,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGin, anon_sym_COLON_EQ, anon_sym_DOT_DOT, - [54350] = 5, + [54319] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, @@ -237471,7 +237567,7 @@ static const uint16_t ts_small_parse_table[] = { STATE(2361), 2, sym_line_comment, sym_block_comment, - ACTIONS(2687), 13, + ACTIONS(2894), 13, anon_sym_DOT, anon_sym_PIPE, anon_sym_PLUS, @@ -237485,7 +237581,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(2685), 31, + ACTIONS(2892), 31, anon_sym_SEMI, anon_sym_as, anon_sym_LBRACE, @@ -237517,7 +237613,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGin, anon_sym_COLON_EQ, anon_sym_DOT_DOT, - [54409] = 5, + [54378] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, @@ -237525,7 +237621,7 @@ static const uint16_t ts_small_parse_table[] = { STATE(2362), 2, sym_line_comment, sym_block_comment, - ACTIONS(2884), 13, + ACTIONS(1881), 13, anon_sym_DOT, anon_sym_PIPE, anon_sym_PLUS, @@ -237539,7 +237635,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(2882), 31, + ACTIONS(1879), 31, anon_sym_SEMI, anon_sym_as, anon_sym_LBRACE, @@ -237571,204 +237667,96 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGin, anon_sym_COLON_EQ, anon_sym_DOT_DOT, - [54468] = 5, + [54437] = 32, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - STATE(2363), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(2888), 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(2886), 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, - [54527] = 5, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_STAR, - STATE(2364), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(2243), 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(2241), 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, + ACTIONS(3484), 1, anon_sym_COLON_EQ, - anon_sym_DOT_DOT, - [54586] = 32, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_STAR, - ACTIONS(3478), 1, - anon_sym_COLON_EQ, - ACTIONS(4932), 1, + ACTIONS(4938), 1, anon_sym_LPAREN, - ACTIONS(4934), 1, + ACTIONS(4940), 1, anon_sym_LBRACK, - ACTIONS(4936), 1, + ACTIONS(4942), 1, anon_sym_QMARK, - ACTIONS(4938), 1, + ACTIONS(4944), 1, anon_sym_BANG, - ACTIONS(4940), 1, + ACTIONS(4946), 1, anon_sym_LBRACK2, - ACTIONS(4944), 1, + ACTIONS(4950), 1, anon_sym_POUND_LBRACK, - ACTIONS(4994), 1, - anon_sym_as, ACTIONS(4996), 1, + anon_sym_as, + ACTIONS(5000), 1, anon_sym_COMMA, - ACTIONS(5008), 1, + ACTIONS(5012), 1, anon_sym_PLUS_PLUS, - ACTIONS(5010), 1, + ACTIONS(5014), 1, anon_sym_DASH_DASH, - ACTIONS(5012), 1, + ACTIONS(5016), 1, anon_sym_CARET, - ACTIONS(5014), 1, + ACTIONS(5018), 1, anon_sym_AMP_AMP, - ACTIONS(5016), 1, + ACTIONS(5020), 1, anon_sym_PIPE_PIPE, - ACTIONS(5018), 1, + ACTIONS(5022), 1, anon_sym_or, - ACTIONS(5056), 1, + ACTIONS(5062), 1, anon_sym_LBRACE, - STATE(2124), 1, + STATE(1671), 1, sym_block, - STATE(2396), 1, - sym_or_block, - STATE(2397), 1, + STATE(2298), 1, sym_argument_list, - STATE(3919), 1, + STATE(2299), 1, + sym_or_block, + STATE(3809), 1, aux_sym_strictly_expression_list_repeat1, - STATE(4127), 1, + STATE(4251), 1, sym_type_parameters, - ACTIONS(4942), 2, + ACTIONS(4948), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - ACTIONS(5004), 2, + ACTIONS(5008), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(5020), 2, + ACTIONS(5024), 2, anon_sym_is, anon_sym_BANGis, - ACTIONS(5022), 2, + ACTIONS(5026), 2, anon_sym_in, anon_sym_BANGin, - STATE(2365), 2, + STATE(2363), 2, sym_line_comment, sym_block_comment, - ACTIONS(4998), 3, + ACTIONS(5002), 3, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5002), 3, + ACTIONS(5006), 3, anon_sym_SLASH, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(5006), 4, + ACTIONS(5010), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(5000), 5, + ACTIONS(5004), 5, anon_sym_STAR, anon_sym_PERCENT, anon_sym_LT_LT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - [54699] = 5, + [54550] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - STATE(2366), 2, + STATE(2364), 2, sym_line_comment, sym_block_comment, - ACTIONS(2173), 13, + ACTIONS(2449), 13, anon_sym_DOT, anon_sym_PIPE, anon_sym_PLUS, @@ -237782,7 +237770,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(2171), 31, + ACTIONS(2447), 31, anon_sym_SEMI, anon_sym_as, anon_sym_LBRACE, @@ -237814,15 +237802,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGin, anon_sym_COLON_EQ, anon_sym_DOT_DOT, - [54758] = 5, + [54609] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - STATE(2367), 2, + STATE(2365), 2, sym_line_comment, sym_block_comment, - ACTIONS(2159), 13, + ACTIONS(2718), 13, anon_sym_DOT, anon_sym_PIPE, anon_sym_PLUS, @@ -237836,7 +237824,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(2157), 31, + ACTIONS(2716), 31, anon_sym_SEMI, anon_sym_as, anon_sym_LBRACE, @@ -237868,15 +237856,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGin, anon_sym_COLON_EQ, anon_sym_DOT_DOT, - [54817] = 5, + [54668] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - STATE(2368), 2, + STATE(2366), 2, sym_line_comment, sym_block_comment, - ACTIONS(2117), 13, + ACTIONS(2840), 13, anon_sym_DOT, anon_sym_PIPE, anon_sym_PLUS, @@ -237890,7 +237878,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(2115), 31, + ACTIONS(2838), 31, anon_sym_SEMI, anon_sym_as, anon_sym_LBRACE, @@ -237922,15 +237910,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGin, anon_sym_COLON_EQ, anon_sym_DOT_DOT, - [54876] = 5, + [54727] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - STATE(2369), 2, + STATE(2367), 2, sym_line_comment, sym_block_comment, - ACTIONS(2896), 13, + ACTIONS(2898), 13, anon_sym_DOT, anon_sym_PIPE, anon_sym_PLUS, @@ -237944,7 +237932,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(2894), 31, + ACTIONS(2896), 31, anon_sym_SEMI, anon_sym_as, anon_sym_LBRACE, @@ -237976,35 +237964,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGin, anon_sym_COLON_EQ, anon_sym_DOT_DOT, - [54935] = 14, + [54786] = 14, ACTIONS(497), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, anon_sym_SLASH_STAR, ACTIONS(4960), 1, anon_sym_LPAREN, - ACTIONS(4968), 1, + ACTIONS(4962), 1, anon_sym_LBRACK, - ACTIONS(4974), 1, + ACTIONS(4964), 1, anon_sym_QMARK, - ACTIONS(4976), 1, + ACTIONS(4966), 1, anon_sym_BANG, - STATE(2506), 1, + STATE(2569), 1, sym_or_block, - STATE(2508), 1, + STATE(2570), 1, sym_argument_list, - STATE(4294), 1, + STATE(4070), 1, sym_type_parameters, - ACTIONS(4954), 2, + ACTIONS(4958), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - ACTIONS(4978), 2, + ACTIONS(4968), 2, anon_sym_LBRACK2, anon_sym_POUND_LBRACK, - STATE(2370), 2, + STATE(2368), 2, sym_line_comment, sym_block_comment, - ACTIONS(4964), 8, + ACTIONS(4976), 8, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, @@ -238013,7 +238001,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(1785), 25, + ACTIONS(1765), 25, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -238039,17 +238027,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [55012] = 5, + [54863] = 5, ACTIONS(497), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, anon_sym_SLASH_STAR, - ACTIONS(1843), 1, + ACTIONS(1811), 1, anon_sym_LBRACK, - STATE(2371), 2, + STATE(2369), 2, sym_line_comment, sym_block_comment, - ACTIONS(1845), 43, + ACTIONS(1813), 43, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -238093,7 +238081,115 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [55071] = 5, + [54922] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + STATE(2370), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(2902), 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(2900), 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, + [54981] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + STATE(2371), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3068), 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(3066), 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, + [55040] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, @@ -238101,7 +238197,61 @@ static const uint16_t ts_small_parse_table[] = { STATE(2372), 2, sym_line_comment, sym_block_comment, - ACTIONS(2749), 13, + ACTIONS(2229), 13, + anon_sym_DOT, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + anon_sym_COLON, + anon_sym_QMARK, + anon_sym_BANG, + anon_sym_LBRACK2, + anon_sym_AMP, + anon_sym_GT_GT, + ACTIONS(2227), 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, + [55099] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + STATE(2373), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(2199), 13, anon_sym_DOT, anon_sym_PIPE, anon_sym_PLUS, @@ -238115,7 +238265,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(2747), 31, + ACTIONS(2197), 31, anon_sym_SEMI, anon_sym_as, anon_sym_LBRACE, @@ -238147,96 +238297,88 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGin, anon_sym_COLON_EQ, anon_sym_DOT_DOT, - [55130] = 32, - ACTIONS(3), 1, + [55158] = 24, + ACTIONS(497), 1, anon_sym_SLASH_SLASH, - ACTIONS(5), 1, + ACTIONS(499), 1, anon_sym_SLASH_STAR, - ACTIONS(3478), 1, - anon_sym_COLON_EQ, - ACTIONS(4932), 1, + ACTIONS(4960), 1, anon_sym_LPAREN, - ACTIONS(4934), 1, + ACTIONS(4962), 1, anon_sym_LBRACK, - ACTIONS(4936), 1, + ACTIONS(4964), 1, anon_sym_QMARK, - ACTIONS(4938), 1, + ACTIONS(4966), 1, anon_sym_BANG, - ACTIONS(4940), 1, - anon_sym_LBRACK2, - ACTIONS(4944), 1, - anon_sym_POUND_LBRACK, - ACTIONS(4994), 1, + ACTIONS(4970), 1, anon_sym_as, - ACTIONS(4996), 1, - anon_sym_COMMA, - ACTIONS(5008), 1, + ACTIONS(4980), 1, anon_sym_PLUS_PLUS, - ACTIONS(5010), 1, + ACTIONS(4982), 1, anon_sym_DASH_DASH, - ACTIONS(5012), 1, - anon_sym_CARET, - ACTIONS(5014), 1, + ACTIONS(4984), 1, anon_sym_AMP_AMP, - ACTIONS(5016), 1, + ACTIONS(4986), 1, anon_sym_PIPE_PIPE, - ACTIONS(5018), 1, + ACTIONS(4988), 1, anon_sym_or, - ACTIONS(5058), 1, - anon_sym_LBRACE, - STATE(2276), 1, - sym_block, - STATE(2396), 1, + STATE(2569), 1, sym_or_block, - STATE(2397), 1, + STATE(2570), 1, sym_argument_list, - STATE(3919), 1, - aux_sym_strictly_expression_list_repeat1, - STATE(4127), 1, + STATE(4070), 1, sym_type_parameters, - ACTIONS(4942), 2, + ACTIONS(4958), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - ACTIONS(5004), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(5020), 2, - anon_sym_is, - anon_sym_BANGis, - ACTIONS(5022), 2, + ACTIONS(4968), 2, + anon_sym_LBRACK2, + anon_sym_POUND_LBRACK, + ACTIONS(4992), 2, anon_sym_in, anon_sym_BANGin, - STATE(2373), 2, + ACTIONS(5064), 2, + anon_sym_is, + anon_sym_BANGis, + STATE(2374), 2, sym_line_comment, sym_block_comment, - ACTIONS(4998), 3, + ACTIONS(4974), 4, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5002), 3, - anon_sym_SLASH, - anon_sym_AMP, - anon_sym_GT_GT, - ACTIONS(5006), 4, + anon_sym_CARET, + ACTIONS(1789), 5, + anon_sym_LF, + anon_sym_CR, + anon_sym_CR_LF, + anon_sym_COMMA, + anon_sym_RBRACE, + ACTIONS(4978), 6, + anon_sym_LT, + anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(5000), 5, + ACTIONS(4976), 8, anon_sym_STAR, + anon_sym_SLASH, anon_sym_PERCENT, + anon_sym_AMP, anon_sym_LT_LT, + anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - [55243] = 5, + [55255] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - STATE(2374), 2, + STATE(2375), 2, sym_line_comment, sym_block_comment, - ACTIONS(2477), 13, + ACTIONS(2862), 13, anon_sym_DOT, anon_sym_PIPE, anon_sym_PLUS, @@ -238250,7 +238392,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(2475), 31, + ACTIONS(2860), 31, anon_sym_SEMI, anon_sym_as, anon_sym_LBRACE, @@ -238282,71 +238424,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGin, anon_sym_COLON_EQ, anon_sym_DOT_DOT, - [55302] = 15, - ACTIONS(497), 1, - anon_sym_SLASH_SLASH, - ACTIONS(499), 1, - anon_sym_SLASH_STAR, - ACTIONS(4960), 1, - anon_sym_LPAREN, - ACTIONS(4968), 1, - anon_sym_LBRACK, - ACTIONS(4974), 1, - anon_sym_QMARK, - ACTIONS(4976), 1, - anon_sym_BANG, - STATE(2506), 1, - sym_or_block, - STATE(2508), 1, - sym_argument_list, - STATE(4294), 1, - sym_type_parameters, - ACTIONS(4954), 2, - anon_sym_DOT, - anon_sym_QMARK_DOT, - ACTIONS(4978), 2, - anon_sym_LBRACK2, - anon_sym_POUND_LBRACK, - STATE(2375), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(5026), 4, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_CARET, - ACTIONS(5028), 8, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_AMP, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - ACTIONS(1785), 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, - [55381] = 5, + [55314] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, @@ -238354,7 +238432,7 @@ static const uint16_t ts_small_parse_table[] = { STATE(2376), 2, sym_line_comment, sym_block_comment, - ACTIONS(2289), 13, + ACTIONS(2143), 13, anon_sym_DOT, anon_sym_PIPE, anon_sym_PLUS, @@ -238368,7 +238446,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(2287), 31, + ACTIONS(2141), 31, anon_sym_SEMI, anon_sym_as, anon_sym_LBRACE, @@ -238400,16 +238478,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGin, anon_sym_COLON_EQ, anon_sym_DOT_DOT, - [55440] = 5, + [55373] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, + ACTIONS(2515), 1, + anon_sym_DOT, STATE(2377), 2, sym_line_comment, sym_block_comment, - ACTIONS(2281), 13, - anon_sym_DOT, + ACTIONS(2513), 12, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, @@ -238422,7 +238501,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(2279), 31, + ACTIONS(2511), 31, anon_sym_SEMI, anon_sym_as, anon_sym_LBRACE, @@ -238454,7 +238533,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGin, anon_sym_COLON_EQ, anon_sym_DOT_DOT, - [55499] = 5, + [55434] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, @@ -238462,7 +238541,7 @@ static const uint16_t ts_small_parse_table[] = { STATE(2378), 2, sym_line_comment, sym_block_comment, - ACTIONS(2233), 13, + ACTIONS(2522), 13, anon_sym_DOT, anon_sym_PIPE, anon_sym_PLUS, @@ -238476,7 +238555,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(2231), 31, + ACTIONS(2520), 31, anon_sym_SEMI, anon_sym_as, anon_sym_LBRACE, @@ -238508,7 +238587,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGin, anon_sym_COLON_EQ, anon_sym_DOT_DOT, - [55558] = 5, + [55493] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, @@ -238516,7 +238595,7 @@ static const uint16_t ts_small_parse_table[] = { STATE(2379), 2, sym_line_comment, sym_block_comment, - ACTIONS(2229), 13, + ACTIONS(2513), 13, anon_sym_DOT, anon_sym_PIPE, anon_sym_PLUS, @@ -238530,7 +238609,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(2227), 31, + ACTIONS(2511), 31, anon_sym_SEMI, anon_sym_as, anon_sym_LBRACE, @@ -238562,61 +238641,71 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGin, anon_sym_COLON_EQ, anon_sym_DOT_DOT, - [55617] = 5, - ACTIONS(3), 1, + [55552] = 15, + ACTIONS(497), 1, anon_sym_SLASH_SLASH, - ACTIONS(5), 1, + ACTIONS(499), 1, anon_sym_SLASH_STAR, + ACTIONS(4960), 1, + anon_sym_LPAREN, + ACTIONS(4962), 1, + anon_sym_LBRACK, + ACTIONS(4964), 1, + anon_sym_QMARK, + ACTIONS(4966), 1, + anon_sym_BANG, + STATE(2569), 1, + sym_or_block, + STATE(2570), 1, + sym_argument_list, + STATE(4070), 1, + sym_type_parameters, + ACTIONS(4958), 2, + anon_sym_DOT, + anon_sym_QMARK_DOT, + ACTIONS(4968), 2, + anon_sym_LBRACK2, + anon_sym_POUND_LBRACK, STATE(2380), 2, sym_line_comment, sym_block_comment, - ACTIONS(2768), 13, - anon_sym_DOT, + ACTIONS(4974), 4, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, + anon_sym_CARET, + ACTIONS(4976), 8, + anon_sym_STAR, anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - anon_sym_COLON, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_LBRACK2, + anon_sym_PERCENT, anon_sym_AMP, + anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2766), 31, - anon_sym_SEMI, + anon_sym_GT_GT_GT, + anon_sym_AMP_CARET, + ACTIONS(1765), 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, - [55676] = 5, + [55631] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, @@ -238624,7 +238713,7 @@ static const uint16_t ts_small_parse_table[] = { STATE(2381), 2, sym_line_comment, sym_block_comment, - ACTIONS(2908), 13, + ACTIONS(2874), 13, anon_sym_DOT, anon_sym_PIPE, anon_sym_PLUS, @@ -238638,7 +238727,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(2906), 31, + ACTIONS(2872), 31, anon_sym_SEMI, anon_sym_as, anon_sym_LBRACE, @@ -238670,7 +238759,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGin, anon_sym_COLON_EQ, anon_sym_DOT_DOT, - [55735] = 5, + [55690] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, @@ -238678,7 +238767,7 @@ static const uint16_t ts_small_parse_table[] = { STATE(2382), 2, sym_line_comment, sym_block_comment, - ACTIONS(2904), 13, + ACTIONS(2924), 13, anon_sym_DOT, anon_sym_PIPE, anon_sym_PLUS, @@ -238692,7 +238781,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(2902), 31, + ACTIONS(2922), 31, anon_sym_SEMI, anon_sym_as, anon_sym_LBRACE, @@ -238724,47 +238813,47 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGin, anon_sym_COLON_EQ, anon_sym_DOT_DOT, - [55794] = 5, - ACTIONS(497), 1, + [55749] = 5, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, - ACTIONS(499), 1, + ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(1915), 1, - anon_sym_LBRACK, STATE(2383), 2, sym_line_comment, sym_block_comment, - ACTIONS(1917), 43, - anon_sym_LF, - anon_sym_CR, - anon_sym_CR_LF, - anon_sym_SEMI, + ACTIONS(2850), 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(2848), 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, @@ -238772,158 +238861,140 @@ 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, - [55853] = 32, - ACTIONS(3), 1, + anon_sym_COLON_EQ, + anon_sym_DOT_DOT, + [55808] = 24, + ACTIONS(497), 1, anon_sym_SLASH_SLASH, - ACTIONS(5), 1, + ACTIONS(499), 1, anon_sym_SLASH_STAR, - ACTIONS(3478), 1, - anon_sym_COLON_EQ, - ACTIONS(4932), 1, + ACTIONS(4960), 1, anon_sym_LPAREN, - ACTIONS(4934), 1, + ACTIONS(4962), 1, anon_sym_LBRACK, - ACTIONS(4936), 1, + ACTIONS(4964), 1, anon_sym_QMARK, - ACTIONS(4938), 1, + ACTIONS(4966), 1, anon_sym_BANG, - ACTIONS(4940), 1, - anon_sym_LBRACK2, - ACTIONS(4944), 1, - anon_sym_POUND_LBRACK, - ACTIONS(4994), 1, + ACTIONS(4970), 1, anon_sym_as, - ACTIONS(4996), 1, - anon_sym_COMMA, - ACTIONS(5008), 1, + ACTIONS(4980), 1, anon_sym_PLUS_PLUS, - ACTIONS(5010), 1, + ACTIONS(4982), 1, anon_sym_DASH_DASH, - ACTIONS(5012), 1, - anon_sym_CARET, - ACTIONS(5014), 1, + ACTIONS(4988), 1, + anon_sym_or, + ACTIONS(5046), 1, anon_sym_AMP_AMP, - ACTIONS(5016), 1, + ACTIONS(5066), 1, anon_sym_PIPE_PIPE, - ACTIONS(5018), 1, - anon_sym_or, - ACTIONS(5060), 1, - anon_sym_LBRACE, - STATE(2396), 1, + STATE(2569), 1, sym_or_block, - STATE(2397), 1, + STATE(2570), 1, sym_argument_list, - STATE(2410), 1, - sym_block, - STATE(3919), 1, - aux_sym_strictly_expression_list_repeat1, - STATE(4127), 1, + STATE(4070), 1, sym_type_parameters, - ACTIONS(4942), 2, + ACTIONS(4958), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - ACTIONS(5004), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(5020), 2, + ACTIONS(4968), 2, + anon_sym_LBRACK2, + anon_sym_POUND_LBRACK, + ACTIONS(4990), 2, anon_sym_is, anon_sym_BANGis, - ACTIONS(5022), 2, + ACTIONS(5048), 2, anon_sym_in, anon_sym_BANGin, STATE(2384), 2, sym_line_comment, sym_block_comment, - ACTIONS(4998), 3, + ACTIONS(5036), 4, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5002), 3, - anon_sym_SLASH, - anon_sym_AMP, - anon_sym_GT_GT, - ACTIONS(5006), 4, + anon_sym_CARET, + ACTIONS(1773), 5, + anon_sym_LF, + anon_sym_CR, + anon_sym_CR_LF, + anon_sym_SEMI, + anon_sym_RBRACE, + ACTIONS(5044), 6, + anon_sym_LT, + anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(5000), 5, + ACTIONS(5038), 8, anon_sym_STAR, + anon_sym_SLASH, anon_sym_PERCENT, + anon_sym_AMP, anon_sym_LT_LT, + anon_sym_GT_GT, anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - [55966] = 15, - ACTIONS(497), 1, - anon_sym_SLASH_SLASH, - ACTIONS(499), 1, - anon_sym_SLASH_STAR, - ACTIONS(4960), 1, - anon_sym_LPAREN, - ACTIONS(4968), 1, - anon_sym_LBRACK, - ACTIONS(4974), 1, - anon_sym_QMARK, - ACTIONS(4976), 1, - anon_sym_BANG, - STATE(2506), 1, - sym_or_block, - STATE(2508), 1, - sym_argument_list, - STATE(4294), 1, - sym_type_parameters, - ACTIONS(4954), 2, - anon_sym_DOT, - anon_sym_QMARK_DOT, - ACTIONS(4978), 2, - anon_sym_LBRACK2, - anon_sym_POUND_LBRACK, + anon_sym_AMP_CARET, + [55905] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, STATE(2385), 2, sym_line_comment, sym_block_comment, - ACTIONS(5026), 4, + ACTIONS(2832), 13, + anon_sym_DOT, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - anon_sym_CARET, - ACTIONS(5028), 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(1769), 21, - anon_sym_LF, - anon_sym_CR, - anon_sym_CR_LF, + ACTIONS(2830), 31, anon_sym_SEMI, anon_sym_as, - anon_sym_RBRACE, - anon_sym_LT, - anon_sym_GT, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_STAR, + anon_sym_PERCENT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, + anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_AMP_CARET, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_or, + anon_sym_QMARK_DOT, + anon_sym_POUND_LBRACK, anon_sym_is, anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [56045] = 5, + anon_sym_COLON_EQ, + anon_sym_DOT_DOT, + [55964] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, @@ -238931,7 +239002,7 @@ static const uint16_t ts_small_parse_table[] = { STATE(2386), 2, sym_line_comment, sym_block_comment, - ACTIONS(2647), 13, + ACTIONS(2794), 13, anon_sym_DOT, anon_sym_PIPE, anon_sym_PLUS, @@ -238945,7 +239016,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(2645), 31, + ACTIONS(2792), 31, anon_sym_SEMI, anon_sym_as, anon_sym_LBRACE, @@ -238977,7 +239048,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGin, anon_sym_COLON_EQ, anon_sym_DOT_DOT, - [56104] = 5, + [56023] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, @@ -238985,7 +239056,7 @@ static const uint16_t ts_small_parse_table[] = { STATE(2387), 2, sym_line_comment, sym_block_comment, - ACTIONS(2353), 13, + ACTIONS(2782), 13, anon_sym_DOT, anon_sym_PIPE, anon_sym_PLUS, @@ -238999,7 +239070,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(2351), 31, + ACTIONS(2780), 31, anon_sym_SEMI, anon_sym_as, anon_sym_LBRACE, @@ -239031,7 +239102,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGin, anon_sym_COLON_EQ, anon_sym_DOT_DOT, - [56163] = 5, + [56082] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, @@ -239039,7 +239110,7 @@ static const uint16_t ts_small_parse_table[] = { STATE(2388), 2, sym_line_comment, sym_block_comment, - ACTIONS(2790), 13, + ACTIONS(2501), 13, anon_sym_DOT, anon_sym_PIPE, anon_sym_PLUS, @@ -239053,7 +239124,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(2788), 31, + ACTIONS(2499), 31, anon_sym_SEMI, anon_sym_as, anon_sym_LBRACE, @@ -239085,7 +239156,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGin, anon_sym_COLON_EQ, anon_sym_DOT_DOT, - [56222] = 5, + [56141] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, @@ -239093,7 +239164,7 @@ static const uint16_t ts_small_parse_table[] = { STATE(2389), 2, sym_line_comment, sym_block_comment, - ACTIONS(2655), 13, + ACTIONS(2471), 13, anon_sym_DOT, anon_sym_PIPE, anon_sym_PLUS, @@ -239107,7 +239178,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(2653), 31, + ACTIONS(2469), 31, anon_sym_SEMI, anon_sym_as, anon_sym_LBRACE, @@ -239139,15 +239210,88 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGin, anon_sym_COLON_EQ, anon_sym_DOT_DOT, - [56281] = 5, + [56200] = 24, + ACTIONS(497), 1, + anon_sym_SLASH_SLASH, + ACTIONS(499), 1, + anon_sym_SLASH_STAR, + ACTIONS(4960), 1, + anon_sym_LPAREN, + ACTIONS(4962), 1, + anon_sym_LBRACK, + ACTIONS(4964), 1, + anon_sym_QMARK, + ACTIONS(4966), 1, + anon_sym_BANG, + ACTIONS(4970), 1, + anon_sym_as, + ACTIONS(4980), 1, + anon_sym_PLUS_PLUS, + ACTIONS(4982), 1, + anon_sym_DASH_DASH, + ACTIONS(4988), 1, + anon_sym_or, + ACTIONS(5046), 1, + anon_sym_AMP_AMP, + ACTIONS(5066), 1, + anon_sym_PIPE_PIPE, + STATE(2569), 1, + sym_or_block, + STATE(2570), 1, + sym_argument_list, + STATE(4070), 1, + sym_type_parameters, + ACTIONS(4958), 2, + anon_sym_DOT, + anon_sym_QMARK_DOT, + ACTIONS(4968), 2, + anon_sym_LBRACK2, + anon_sym_POUND_LBRACK, + ACTIONS(4990), 2, + anon_sym_is, + anon_sym_BANGis, + ACTIONS(5048), 2, + anon_sym_in, + anon_sym_BANGin, + STATE(2390), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(5036), 4, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_CARET, + ACTIONS(1795), 5, + anon_sym_LF, + anon_sym_CR, + anon_sym_CR_LF, + anon_sym_SEMI, + anon_sym_RBRACE, + ACTIONS(5044), 6, + anon_sym_LT, + anon_sym_GT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(5038), 8, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_AMP, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_GT_GT_GT, + anon_sym_AMP_CARET, + [56297] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - STATE(2390), 2, + STATE(2391), 2, sym_line_comment, sym_block_comment, - ACTIONS(2677), 13, + ACTIONS(2311), 13, anon_sym_DOT, anon_sym_PIPE, anon_sym_PLUS, @@ -239161,7 +239305,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(2675), 31, + ACTIONS(2309), 31, anon_sym_SEMI, anon_sym_as, anon_sym_LBRACE, @@ -239193,15 +239337,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGin, anon_sym_COLON_EQ, anon_sym_DOT_DOT, - [56340] = 5, + [56356] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - STATE(2391), 2, + STATE(2392), 2, sym_line_comment, sym_block_comment, - ACTIONS(2667), 13, + ACTIONS(2806), 13, anon_sym_DOT, anon_sym_PIPE, anon_sym_PLUS, @@ -239215,7 +239359,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(2665), 31, + ACTIONS(2804), 31, anon_sym_SEMI, anon_sym_as, anon_sym_LBRACE, @@ -239247,50 +239391,50 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGin, anon_sym_COLON_EQ, anon_sym_DOT_DOT, - [56399] = 17, + [56415] = 17, ACTIONS(497), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, anon_sym_SLASH_STAR, ACTIONS(4960), 1, anon_sym_LPAREN, - ACTIONS(4968), 1, + ACTIONS(4962), 1, anon_sym_LBRACK, - ACTIONS(4974), 1, + ACTIONS(4964), 1, anon_sym_QMARK, - ACTIONS(4976), 1, + ACTIONS(4966), 1, anon_sym_BANG, - STATE(2506), 1, + STATE(2569), 1, sym_or_block, - STATE(2508), 1, + STATE(2570), 1, sym_argument_list, - STATE(4294), 1, + STATE(4070), 1, sym_type_parameters, - ACTIONS(4954), 2, + ACTIONS(4958), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - ACTIONS(4978), 2, + ACTIONS(4968), 2, anon_sym_LBRACK2, anon_sym_POUND_LBRACK, - ACTIONS(5034), 2, + ACTIONS(4992), 2, anon_sym_in, anon_sym_BANGin, - STATE(2392), 2, + STATE(2393), 2, sym_line_comment, sym_block_comment, - ACTIONS(5026), 4, + ACTIONS(4974), 4, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_CARET, - ACTIONS(5030), 6, + ACTIONS(4978), 6, anon_sym_LT, anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(5028), 8, + ACTIONS(4976), 8, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, @@ -239299,12 +239443,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(1785), 13, + ACTIONS(1765), 13, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, - anon_sym_SEMI, anon_sym_as, + anon_sym_COMMA, anon_sym_RBRACE, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, @@ -239313,15 +239457,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_or, anon_sym_is, anon_sym_BANGis, - [56482] = 5, + [56498] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - STATE(2393), 2, + STATE(2394), 2, sym_line_comment, sym_block_comment, - ACTIONS(3062), 13, + ACTIONS(2303), 13, anon_sym_DOT, anon_sym_PIPE, anon_sym_PLUS, @@ -239335,7 +239479,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(3060), 31, + ACTIONS(2301), 31, anon_sym_SEMI, anon_sym_as, anon_sym_LBRACE, @@ -239367,15 +239511,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGin, anon_sym_COLON_EQ, anon_sym_DOT_DOT, - [56541] = 5, + [56557] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - STATE(2394), 2, + STATE(2395), 2, sym_line_comment, sym_block_comment, - ACTIONS(2121), 13, + ACTIONS(2700), 13, anon_sym_DOT, anon_sym_PIPE, anon_sym_PLUS, @@ -239389,7 +239533,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(2119), 31, + ACTIONS(2698), 31, anon_sym_SEMI, anon_sym_as, anon_sym_LBRACE, @@ -239421,15 +239565,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGin, anon_sym_COLON_EQ, anon_sym_DOT_DOT, - [56600] = 5, + [56616] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - STATE(2395), 2, + STATE(2396), 2, sym_line_comment, sym_block_comment, - ACTIONS(2293), 13, + ACTIONS(2297), 13, anon_sym_DOT, anon_sym_PIPE, anon_sym_PLUS, @@ -239443,7 +239587,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(2291), 31, + ACTIONS(2295), 31, anon_sym_SEMI, anon_sym_as, anon_sym_LBRACE, @@ -239475,15 +239619,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGin, anon_sym_COLON_EQ, anon_sym_DOT_DOT, - [56659] = 5, + [56675] = 7, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - STATE(2396), 2, + ACTIONS(2217), 1, + anon_sym_COLON, + STATE(2397), 2, sym_line_comment, sym_block_comment, - ACTIONS(2515), 13, + ACTIONS(2215), 5, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_RPAREN, + anon_sym_RBRACK, + anon_sym_DOT_DOT, + ACTIONS(2219), 12, anon_sym_DOT, anon_sym_PIPE, anon_sym_PLUS, @@ -239491,19 +239643,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(2513), 31, - anon_sym_SEMI, + ACTIONS(2222), 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, @@ -239511,7 +239659,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, @@ -239528,16 +239675,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_in, anon_sym_BANGin, anon_sym_COLON_EQ, - anon_sym_DOT_DOT, - [56718] = 5, + [56738] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - STATE(2397), 2, + STATE(2398), 2, sym_line_comment, sym_block_comment, - ACTIONS(2519), 13, + ACTIONS(2211), 13, anon_sym_DOT, anon_sym_PIPE, anon_sym_PLUS, @@ -239551,7 +239697,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(2517), 31, + ACTIONS(2209), 31, anon_sym_SEMI, anon_sym_as, anon_sym_LBRACE, @@ -239583,15 +239729,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGin, anon_sym_COLON_EQ, anon_sym_DOT_DOT, - [56777] = 5, + [56797] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - STATE(2398), 2, + STATE(2399), 2, sym_line_comment, sym_block_comment, - ACTIONS(2659), 13, + ACTIONS(2203), 13, anon_sym_DOT, anon_sym_PIPE, anon_sym_PLUS, @@ -239605,7 +239751,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(2657), 31, + ACTIONS(2201), 31, anon_sym_SEMI, anon_sym_as, anon_sym_LBRACE, @@ -239637,88 +239783,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGin, anon_sym_COLON_EQ, anon_sym_DOT_DOT, - [56836] = 32, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_STAR, - ACTIONS(3478), 1, - anon_sym_COLON_EQ, - ACTIONS(4932), 1, - anon_sym_LPAREN, - ACTIONS(4934), 1, - anon_sym_LBRACK, - ACTIONS(4936), 1, - anon_sym_QMARK, - ACTIONS(4938), 1, - anon_sym_BANG, - ACTIONS(4940), 1, - anon_sym_LBRACK2, - ACTIONS(4944), 1, - anon_sym_POUND_LBRACK, - ACTIONS(4994), 1, - anon_sym_as, - ACTIONS(4996), 1, - anon_sym_COMMA, - ACTIONS(5008), 1, - anon_sym_PLUS_PLUS, - ACTIONS(5010), 1, - anon_sym_DASH_DASH, - ACTIONS(5012), 1, - anon_sym_CARET, - ACTIONS(5014), 1, - anon_sym_AMP_AMP, - ACTIONS(5016), 1, - anon_sym_PIPE_PIPE, - ACTIONS(5018), 1, - anon_sym_or, - ACTIONS(5062), 1, - anon_sym_LBRACE, - STATE(1123), 1, - sym_block, - STATE(2396), 1, - sym_or_block, - STATE(2397), 1, - sym_argument_list, - STATE(3919), 1, - aux_sym_strictly_expression_list_repeat1, - STATE(4127), 1, - sym_type_parameters, - ACTIONS(4942), 2, - anon_sym_DOT, - anon_sym_QMARK_DOT, - ACTIONS(5004), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(5020), 2, - anon_sym_is, - anon_sym_BANGis, - ACTIONS(5022), 2, - anon_sym_in, - anon_sym_BANGin, - STATE(2399), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(4998), 3, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(5002), 3, - anon_sym_SLASH, - anon_sym_AMP, - anon_sym_GT_GT, - ACTIONS(5006), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(5000), 5, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - [56949] = 5, + [56856] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, @@ -239726,7 +239791,7 @@ static const uint16_t ts_small_parse_table[] = { STATE(2400), 2, sym_line_comment, sym_block_comment, - ACTIONS(2651), 13, + ACTIONS(2315), 13, anon_sym_DOT, anon_sym_PIPE, anon_sym_PLUS, @@ -239740,7 +239805,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(2649), 31, + ACTIONS(2313), 31, anon_sym_SEMI, anon_sym_as, anon_sym_LBRACE, @@ -239772,7 +239837,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGin, anon_sym_COLON_EQ, anon_sym_DOT_DOT, - [57008] = 5, + [56915] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, @@ -239780,7 +239845,7 @@ static const uint16_t ts_small_parse_table[] = { STATE(2401), 2, sym_line_comment, sym_block_comment, - ACTIONS(2267), 13, + ACTIONS(2880), 13, anon_sym_DOT, anon_sym_PIPE, anon_sym_PLUS, @@ -239794,7 +239859,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(2265), 31, + ACTIONS(2878), 31, anon_sym_SEMI, anon_sym_as, anon_sym_LBRACE, @@ -239826,7 +239891,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGin, anon_sym_COLON_EQ, anon_sym_DOT_DOT, - [57067] = 5, + [56974] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, @@ -239834,7 +239899,7 @@ static const uint16_t ts_small_parse_table[] = { STATE(2402), 2, sym_line_comment, sym_block_comment, - ACTIONS(2239), 13, + ACTIONS(2463), 13, anon_sym_DOT, anon_sym_PIPE, anon_sym_PLUS, @@ -239848,7 +239913,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(2237), 31, + ACTIONS(2461), 31, anon_sym_SEMI, anon_sym_as, anon_sym_LBRACE, @@ -239880,7 +239945,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGin, anon_sym_COLON_EQ, anon_sym_DOT_DOT, - [57126] = 5, + [57033] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, @@ -239888,7 +239953,7 @@ static const uint16_t ts_small_parse_table[] = { STATE(2403), 2, sym_line_comment, sym_block_comment, - ACTIONS(2757), 13, + ACTIONS(2467), 13, anon_sym_DOT, anon_sym_PIPE, anon_sym_PLUS, @@ -239902,7 +239967,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(2755), 31, + ACTIONS(2465), 31, anon_sym_SEMI, anon_sym_as, anon_sym_LBRACE, @@ -239934,7 +239999,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGin, anon_sym_COLON_EQ, anon_sym_DOT_DOT, - [57185] = 5, + [57092] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, @@ -239942,7 +240007,7 @@ static const uint16_t ts_small_parse_table[] = { STATE(2404), 2, sym_line_comment, sym_block_comment, - ACTIONS(2739), 13, + ACTIONS(2505), 13, anon_sym_DOT, anon_sym_PIPE, anon_sym_PLUS, @@ -239956,7 +240021,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(2737), 31, + ACTIONS(2503), 31, anon_sym_SEMI, anon_sym_as, anon_sym_LBRACE, @@ -239988,7 +240053,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGin, anon_sym_COLON_EQ, anon_sym_DOT_DOT, - [57244] = 5, + [57151] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, @@ -239996,7 +240061,7 @@ static const uint16_t ts_small_parse_table[] = { STATE(2405), 2, sym_line_comment, sym_block_comment, - ACTIONS(2247), 13, + ACTIONS(2696), 13, anon_sym_DOT, anon_sym_PIPE, anon_sym_PLUS, @@ -240010,7 +240075,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(2245), 31, + ACTIONS(2694), 31, anon_sym_SEMI, anon_sym_as, anon_sym_LBRACE, @@ -240042,7 +240107,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGin, anon_sym_COLON_EQ, anon_sym_DOT_DOT, - [57303] = 5, + [57210] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, @@ -240050,7 +240115,7 @@ static const uint16_t ts_small_parse_table[] = { STATE(2406), 2, sym_line_comment, sym_block_comment, - ACTIONS(2860), 13, + ACTIONS(2854), 13, anon_sym_DOT, anon_sym_PIPE, anon_sym_PLUS, @@ -240064,7 +240129,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(2858), 31, + ACTIONS(2852), 31, anon_sym_SEMI, anon_sym_as, anon_sym_LBRACE, @@ -240096,23 +240161,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGin, anon_sym_COLON_EQ, anon_sym_DOT_DOT, - [57362] = 7, + [57269] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(2251), 1, - anon_sym_COLON, STATE(2407), 2, sym_line_comment, sym_block_comment, - ACTIONS(2249), 5, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_RPAREN, - anon_sym_RBRACK, - anon_sym_DOT_DOT, - ACTIONS(2253), 12, + ACTIONS(2858), 13, anon_sym_DOT, anon_sym_PIPE, anon_sym_PLUS, @@ -240120,15 +240177,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(2256), 26, + ACTIONS(2856), 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, @@ -240136,6 +240197,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, @@ -240152,15 +240214,97 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_in, anon_sym_BANGin, anon_sym_COLON_EQ, - [57425] = 5, + anon_sym_DOT_DOT, + [57328] = 32, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, + ACTIONS(3484), 1, + anon_sym_COLON_EQ, + ACTIONS(4938), 1, + anon_sym_LPAREN, + ACTIONS(4940), 1, + anon_sym_LBRACK, + ACTIONS(4942), 1, + anon_sym_QMARK, + ACTIONS(4944), 1, + anon_sym_BANG, + ACTIONS(4946), 1, + anon_sym_LBRACK2, + ACTIONS(4950), 1, + anon_sym_POUND_LBRACK, + ACTIONS(4996), 1, + anon_sym_as, + ACTIONS(5000), 1, + anon_sym_COMMA, + ACTIONS(5012), 1, + anon_sym_PLUS_PLUS, + ACTIONS(5014), 1, + anon_sym_DASH_DASH, + ACTIONS(5016), 1, + anon_sym_CARET, + ACTIONS(5018), 1, + anon_sym_AMP_AMP, + ACTIONS(5020), 1, + anon_sym_PIPE_PIPE, + ACTIONS(5022), 1, + anon_sym_or, + ACTIONS(5068), 1, + anon_sym_LBRACE, + STATE(2277), 1, + sym_block, + STATE(2298), 1, + sym_argument_list, + STATE(2299), 1, + sym_or_block, + STATE(3809), 1, + aux_sym_strictly_expression_list_repeat1, + STATE(4251), 1, + sym_type_parameters, + ACTIONS(4948), 2, + anon_sym_DOT, + anon_sym_QMARK_DOT, + ACTIONS(5008), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(5024), 2, + anon_sym_is, + anon_sym_BANGis, + ACTIONS(5026), 2, + anon_sym_in, + anon_sym_BANGin, STATE(2408), 2, sym_line_comment, sym_block_comment, - ACTIONS(2782), 13, + ACTIONS(5002), 3, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(5006), 3, + anon_sym_SLASH, + anon_sym_AMP, + anon_sym_GT_GT, + ACTIONS(5010), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(5004), 5, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_AMP_CARET, + [57441] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + STATE(2409), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3054), 13, anon_sym_DOT, anon_sym_PIPE, anon_sym_PLUS, @@ -240174,7 +240318,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(2780), 31, + ACTIONS(3052), 31, anon_sym_SEMI, anon_sym_as, anon_sym_LBRACE, @@ -240206,107 +240350,47 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGin, anon_sym_COLON_EQ, anon_sym_DOT_DOT, - [57484] = 7, - ACTIONS(497), 1, + [57500] = 5, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, - ACTIONS(499), 1, + ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(1803), 1, - anon_sym_LBRACK, - ACTIONS(5064), 1, - anon_sym_else, - STATE(2571), 1, - sym_else_branch, - STATE(2409), 2, + STATE(2410), 2, sym_line_comment, sym_block_comment, - ACTIONS(1805), 41, - anon_sym_LF, - anon_sym_CR, - anon_sym_CR_LF, - anon_sym_SEMI, + ACTIONS(3044), 13, anon_sym_DOT, - anon_sym_as, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - anon_sym_STAR, anon_sym_SLASH, - anon_sym_PERCENT, anon_sym_LT, anon_sym_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, + anon_sym_COLON, anon_sym_QMARK, anon_sym_BANG, anon_sym_LBRACK2, - anon_sym_CARET, anon_sym_AMP, - anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_or, - anon_sym_QMARK_DOT, - anon_sym_POUND_LBRACK, - anon_sym_is, - anon_sym_BANGis, - anon_sym_in, - anon_sym_BANGin, - [57547] = 7, - ACTIONS(497), 1, - anon_sym_SLASH_SLASH, - ACTIONS(499), 1, - anon_sym_SLASH_STAR, - ACTIONS(1797), 1, - anon_sym_LBRACK, - ACTIONS(5064), 1, - anon_sym_else, - STATE(2569), 1, - sym_else_branch, - STATE(2410), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(1799), 41, - anon_sym_LF, - anon_sym_CR, - anon_sym_CR_LF, + ACTIONS(3042), 31, anon_sym_SEMI, - anon_sym_DOT, anon_sym_as, + anon_sym_LBRACE, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_LPAREN, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, + anon_sym_RPAREN, anon_sym_STAR, - anon_sym_SLASH, anon_sym_PERCENT, - anon_sym_LT, - anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, + anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_LBRACK2, anon_sym_CARET, - anon_sym_AMP, anon_sym_LT_LT, - anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, anon_sym_AMP_AMP, @@ -240318,7 +240402,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [57610] = 5, + anon_sym_COLON_EQ, + anon_sym_DOT_DOT, + [57559] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, @@ -240326,7 +240412,7 @@ static const uint16_t ts_small_parse_table[] = { STATE(2411), 2, sym_line_comment, sym_block_comment, - ACTIONS(2305), 13, + ACTIONS(2846), 13, anon_sym_DOT, anon_sym_PIPE, anon_sym_PLUS, @@ -240340,7 +240426,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(2303), 31, + ACTIONS(2844), 31, anon_sym_SEMI, anon_sym_as, anon_sym_LBRACE, @@ -240372,7 +240458,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGin, anon_sym_COLON_EQ, anon_sym_DOT_DOT, - [57669] = 5, + [57618] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, @@ -240380,7 +240466,7 @@ static const uint16_t ts_small_parse_table[] = { STATE(2412), 2, sym_line_comment, sym_block_comment, - ACTIONS(2315), 13, + ACTIONS(2233), 13, anon_sym_DOT, anon_sym_PIPE, anon_sym_PLUS, @@ -240394,7 +240480,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(2313), 31, + ACTIONS(2231), 31, anon_sym_SEMI, anon_sym_as, anon_sym_LBRACE, @@ -240426,142 +240512,138 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGin, anon_sym_COLON_EQ, anon_sym_DOT_DOT, - [57728] = 32, - ACTIONS(3), 1, + [57677] = 18, + ACTIONS(497), 1, anon_sym_SLASH_SLASH, - ACTIONS(5), 1, + ACTIONS(499), 1, anon_sym_SLASH_STAR, - ACTIONS(3478), 1, - anon_sym_COLON_EQ, - ACTIONS(4932), 1, + ACTIONS(4960), 1, anon_sym_LPAREN, - ACTIONS(4934), 1, + ACTIONS(4962), 1, anon_sym_LBRACK, - ACTIONS(4936), 1, + ACTIONS(4964), 1, anon_sym_QMARK, - ACTIONS(4938), 1, + ACTIONS(4966), 1, anon_sym_BANG, - ACTIONS(4940), 1, - anon_sym_LBRACK2, - ACTIONS(4944), 1, - anon_sym_POUND_LBRACK, - ACTIONS(4994), 1, - anon_sym_as, - ACTIONS(4996), 1, - anon_sym_COMMA, - ACTIONS(5008), 1, - anon_sym_PLUS_PLUS, - ACTIONS(5010), 1, - anon_sym_DASH_DASH, - ACTIONS(5012), 1, - anon_sym_CARET, - ACTIONS(5014), 1, + ACTIONS(4984), 1, anon_sym_AMP_AMP, - ACTIONS(5016), 1, - anon_sym_PIPE_PIPE, - ACTIONS(5018), 1, - anon_sym_or, - ACTIONS(5066), 1, - anon_sym_LBRACE, - STATE(1260), 1, - sym_block, - STATE(2396), 1, + STATE(2569), 1, sym_or_block, - STATE(2397), 1, + STATE(2570), 1, sym_argument_list, - STATE(3919), 1, - aux_sym_strictly_expression_list_repeat1, - STATE(4127), 1, + STATE(4070), 1, sym_type_parameters, - ACTIONS(4942), 2, + ACTIONS(4958), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - ACTIONS(5004), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(5020), 2, - anon_sym_is, - anon_sym_BANGis, - ACTIONS(5022), 2, + ACTIONS(4968), 2, + anon_sym_LBRACK2, + anon_sym_POUND_LBRACK, + ACTIONS(4992), 2, anon_sym_in, anon_sym_BANGin, STATE(2413), 2, sym_line_comment, sym_block_comment, - ACTIONS(4998), 3, + ACTIONS(4974), 4, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5002), 3, - anon_sym_SLASH, - anon_sym_AMP, - anon_sym_GT_GT, - ACTIONS(5006), 4, + anon_sym_CARET, + ACTIONS(4978), 6, + anon_sym_LT, + anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(5000), 5, + ACTIONS(4976), 8, anon_sym_STAR, + anon_sym_SLASH, anon_sym_PERCENT, + anon_sym_AMP, anon_sym_LT_LT, + anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - [57841] = 5, - ACTIONS(3), 1, + ACTIONS(1765), 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, + [57762] = 15, + ACTIONS(497), 1, anon_sym_SLASH_SLASH, - ACTIONS(5), 1, + ACTIONS(499), 1, anon_sym_SLASH_STAR, + ACTIONS(4960), 1, + anon_sym_LPAREN, + ACTIONS(4962), 1, + anon_sym_LBRACK, + ACTIONS(4964), 1, + anon_sym_QMARK, + ACTIONS(4966), 1, + anon_sym_BANG, + STATE(2569), 1, + sym_or_block, + STATE(2570), 1, + sym_argument_list, + STATE(4070), 1, + sym_type_parameters, + ACTIONS(4958), 2, + anon_sym_DOT, + anon_sym_QMARK_DOT, + ACTIONS(4968), 2, + anon_sym_LBRACK2, + anon_sym_POUND_LBRACK, STATE(2414), 2, sym_line_comment, sym_block_comment, - ACTIONS(2772), 13, - anon_sym_DOT, + ACTIONS(4974), 4, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, + anon_sym_CARET, + ACTIONS(4976), 8, + anon_sym_STAR, anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - anon_sym_COLON, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_LBRACK2, + anon_sym_PERCENT, anon_sym_AMP, + anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2770), 31, - anon_sym_SEMI, + anon_sym_GT_GT_GT, + anon_sym_AMP_CARET, + ACTIONS(1781), 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, - [57900] = 5, + [57841] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, @@ -240569,7 +240651,7 @@ static const uint16_t ts_small_parse_table[] = { STATE(2415), 2, sym_line_comment, sym_block_comment, - ACTIONS(2753), 13, + ACTIONS(2714), 13, anon_sym_DOT, anon_sym_PIPE, anon_sym_PLUS, @@ -240583,7 +240665,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(2751), 31, + ACTIONS(2712), 31, anon_sym_SEMI, anon_sym_as, anon_sym_LBRACE, @@ -240615,57 +240697,43 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGin, anon_sym_COLON_EQ, anon_sym_DOT_DOT, - [57959] = 16, + [57900] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(5068), 1, - anon_sym_DOT, - ACTIONS(5070), 1, - anon_sym_LPAREN, - ACTIONS(5072), 1, - anon_sym_LBRACK, - ACTIONS(5074), 1, - anon_sym_QMARK, - ACTIONS(5076), 1, - anon_sym_BANG, - ACTIONS(5078), 1, - anon_sym_LBRACK2, - ACTIONS(5080), 1, - anon_sym_QMARK_DOT, - ACTIONS(5082), 1, - anon_sym_POUND_LBRACK, - STATE(2736), 1, - sym_or_block, - STATE(2742), 1, - sym_argument_list, - STATE(4112), 1, - sym_type_parameters, STATE(2416), 2, sym_line_comment, sym_block_comment, - ACTIONS(1777), 9, + ACTIONS(2710), 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, - anon_sym_DOT_DOT, - ACTIONS(1775), 23, + ACTIONS(2708), 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_CARET, @@ -240675,273 +240743,64 @@ 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, - [58039] = 23, - ACTIONS(497), 1, - anon_sym_SLASH_SLASH, - ACTIONS(499), 1, - anon_sym_SLASH_STAR, - ACTIONS(3420), 1, - sym_identifier, - ACTIONS(3422), 1, - anon_sym_LPAREN, - ACTIONS(3424), 1, - anon_sym_fn, - ACTIONS(3426), 1, - anon_sym_STAR, - ACTIONS(3428), 1, - anon_sym_struct, - ACTIONS(3430), 1, - anon_sym_QMARK, - ACTIONS(3432), 1, - anon_sym_BANG, - ACTIONS(3434), 1, - anon_sym_LBRACK2, - ACTIONS(3436), 1, - anon_sym_AMP, - ACTIONS(3438), 1, - anon_sym_shared, - ACTIONS(3440), 1, - anon_sym_map_LBRACK, - ACTIONS(3442), 1, - anon_sym_chan, - ACTIONS(3444), 1, - anon_sym_thread, - ACTIONS(3446), 1, - anon_sym_atomic, - STATE(3356), 1, - sym_plain_type, - STATE(4341), 1, - sym_reference_expression, - STATE(2417), 2, - sym_line_comment, - sym_block_comment, - STATE(3286), 2, - sym_type_reference_expression, - sym_qualified_type, - STATE(3339), 4, - sym__plain_type_without_special, - sym_multi_return_type, - sym_result_type, - sym_option_type, - ACTIONS(567), 9, - anon_sym_LF, - anon_sym_CR, - anon_sym_CR_LF, - anon_sym_RBRACE, - anon_sym_EQ, - anon_sym___global, - anon_sym_pub, - anon_sym_mut, - anon_sym_AT_LBRACK, - STATE(3349), 12, - sym_anon_struct_type, - sym_fixed_array_type, - sym_array_type, - sym_pointer_type, - sym_wrong_pointer_type, - sym_map_type, - sym_channel_type, - sym_shared_type, - sym_thread_type, - sym_atomic_type, - sym_generic_type, - sym_function_type, - [58133] = 23, - ACTIONS(497), 1, - anon_sym_SLASH_SLASH, - ACTIONS(499), 1, - anon_sym_SLASH_STAR, - ACTIONS(3420), 1, - sym_identifier, - ACTIONS(3422), 1, - anon_sym_LPAREN, - ACTIONS(3424), 1, - anon_sym_fn, - ACTIONS(3426), 1, - anon_sym_STAR, - ACTIONS(3428), 1, - anon_sym_struct, - ACTIONS(3430), 1, - anon_sym_QMARK, - ACTIONS(3432), 1, - anon_sym_BANG, - ACTIONS(3434), 1, - anon_sym_LBRACK2, - ACTIONS(3436), 1, - anon_sym_AMP, - ACTIONS(3438), 1, - anon_sym_shared, - ACTIONS(3440), 1, - anon_sym_map_LBRACK, - ACTIONS(3442), 1, - anon_sym_chan, - ACTIONS(3444), 1, - anon_sym_thread, - ACTIONS(3446), 1, - anon_sym_atomic, - STATE(3353), 1, - sym_plain_type, - STATE(4341), 1, - sym_reference_expression, - STATE(2418), 2, - sym_line_comment, - sym_block_comment, - STATE(3286), 2, - sym_type_reference_expression, - sym_qualified_type, - STATE(3339), 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, - anon_sym_EQ, - anon_sym___global, - anon_sym_pub, - anon_sym_mut, - anon_sym_AT_LBRACK, - STATE(3349), 12, - sym_anon_struct_type, - sym_fixed_array_type, - sym_array_type, - sym_pointer_type, - sym_wrong_pointer_type, - sym_map_type, - sym_channel_type, - sym_shared_type, - sym_thread_type, - sym_atomic_type, - sym_generic_type, - sym_function_type, - [58227] = 23, - ACTIONS(497), 1, - anon_sym_SLASH_SLASH, - ACTIONS(499), 1, - anon_sym_SLASH_STAR, - ACTIONS(3420), 1, - sym_identifier, - ACTIONS(3422), 1, - anon_sym_LPAREN, - ACTIONS(3424), 1, - anon_sym_fn, - ACTIONS(3426), 1, - anon_sym_STAR, - ACTIONS(3428), 1, - anon_sym_struct, - ACTIONS(3430), 1, - anon_sym_QMARK, - ACTIONS(3432), 1, - anon_sym_BANG, - ACTIONS(3434), 1, - anon_sym_LBRACK2, - ACTIONS(3436), 1, - anon_sym_AMP, - ACTIONS(3438), 1, - anon_sym_shared, - ACTIONS(3440), 1, - anon_sym_map_LBRACK, - ACTIONS(3442), 1, - anon_sym_chan, - ACTIONS(3444), 1, - anon_sym_thread, - ACTIONS(3446), 1, - anon_sym_atomic, - STATE(3342), 1, - sym_plain_type, - STATE(4341), 1, - sym_reference_expression, - STATE(2419), 2, - sym_line_comment, - sym_block_comment, - STATE(3286), 2, - sym_type_reference_expression, - sym_qualified_type, - STATE(3339), 4, - sym__plain_type_without_special, - sym_multi_return_type, - sym_result_type, - sym_option_type, - ACTIONS(627), 9, - anon_sym_LF, - anon_sym_CR, - anon_sym_CR_LF, - anon_sym_RBRACE, - anon_sym_EQ, - anon_sym___global, - anon_sym_pub, - anon_sym_mut, - anon_sym_AT_LBRACK, - STATE(3349), 12, - sym_anon_struct_type, - sym_fixed_array_type, - sym_array_type, - sym_pointer_type, - sym_wrong_pointer_type, - sym_map_type, - sym_channel_type, - sym_shared_type, - sym_thread_type, - sym_atomic_type, - sym_generic_type, - sym_function_type, - [58321] = 20, + anon_sym_COLON_EQ, + anon_sym_DOT_DOT, + [57959] = 20, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(4930), 1, + ACTIONS(4936), 1, anon_sym_DOT, - ACTIONS(4932), 1, + ACTIONS(4938), 1, anon_sym_LPAREN, - ACTIONS(4934), 1, + ACTIONS(4940), 1, anon_sym_LBRACK, - ACTIONS(4936), 1, + ACTIONS(4942), 1, anon_sym_QMARK, - ACTIONS(4938), 1, + ACTIONS(4944), 1, anon_sym_BANG, - ACTIONS(4940), 1, + ACTIONS(4946), 1, anon_sym_LBRACK2, - ACTIONS(4942), 1, + ACTIONS(4948), 1, anon_sym_QMARK_DOT, - ACTIONS(4944), 1, + ACTIONS(4950), 1, anon_sym_POUND_LBRACK, - ACTIONS(5090), 1, + ACTIONS(5076), 1, anon_sym_CARET, - STATE(2396), 1, - sym_or_block, - STATE(2397), 1, + STATE(2298), 1, sym_argument_list, - STATE(4127), 1, + STATE(2299), 1, + sym_or_block, + STATE(4251), 1, sym_type_parameters, - ACTIONS(1769), 2, + ACTIONS(1781), 2, anon_sym_LT, anon_sym_GT, - STATE(2420), 2, + STATE(2417), 2, sym_line_comment, sym_block_comment, - ACTIONS(5084), 3, + ACTIONS(5070), 3, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5088), 3, + ACTIONS(5074), 3, anon_sym_SLASH, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(5086), 5, + ACTIONS(5072), 5, anon_sym_STAR, anon_sym_PERCENT, anon_sym_LT_LT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(1767), 18, + ACTIONS(1779), 18, anon_sym_SEMI, anon_sym_as, anon_sym_EQ_EQ, @@ -240960,120 +240819,66 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_in, anon_sym_BANGin, anon_sym_DOT_DOT, - [58409] = 6, - ACTIONS(497), 1, - anon_sym_SLASH_SLASH, - ACTIONS(499), 1, - anon_sym_SLASH_STAR, - ACTIONS(1919), 1, - anon_sym_LBRACK, - ACTIONS(5092), 1, - anon_sym_DOLLARelse, - STATE(2421), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(1921), 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, - [58469] = 23, + [58047] = 23, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(4930), 1, + ACTIONS(4936), 1, anon_sym_DOT, - ACTIONS(4932), 1, + ACTIONS(4938), 1, anon_sym_LPAREN, - ACTIONS(4934), 1, + ACTIONS(4940), 1, anon_sym_LBRACK, - ACTIONS(4936), 1, + ACTIONS(4942), 1, anon_sym_QMARK, - ACTIONS(4938), 1, + ACTIONS(4944), 1, anon_sym_BANG, - ACTIONS(4940), 1, + ACTIONS(4946), 1, anon_sym_LBRACK2, - ACTIONS(4942), 1, + ACTIONS(4948), 1, anon_sym_QMARK_DOT, - ACTIONS(4944), 1, + ACTIONS(4950), 1, anon_sym_POUND_LBRACK, - ACTIONS(5090), 1, + ACTIONS(5076), 1, anon_sym_CARET, - ACTIONS(5098), 1, + ACTIONS(5082), 1, anon_sym_AMP_AMP, - STATE(2396), 1, - sym_or_block, - STATE(2397), 1, + STATE(2298), 1, sym_argument_list, - STATE(4127), 1, + STATE(2299), 1, + sym_or_block, + STATE(4251), 1, sym_type_parameters, - ACTIONS(5094), 2, + ACTIONS(5078), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(5100), 2, + ACTIONS(5084), 2, anon_sym_in, anon_sym_BANGin, - STATE(2422), 2, + STATE(2418), 2, sym_line_comment, sym_block_comment, - ACTIONS(5084), 3, + ACTIONS(5070), 3, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5088), 3, + ACTIONS(5074), 3, anon_sym_SLASH, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(5096), 4, + ACTIONS(5080), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(5086), 5, + ACTIONS(5072), 5, anon_sym_STAR, anon_sym_PERCENT, anon_sym_LT_LT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(1783), 11, + ACTIONS(1763), 11, anon_sym_SEMI, anon_sym_as, anon_sym_RBRACK, @@ -241085,64 +240890,64 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_is, anon_sym_BANGis, anon_sym_DOT_DOT, - [58563] = 22, + [58141] = 22, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(4930), 1, + ACTIONS(4936), 1, anon_sym_DOT, - ACTIONS(4932), 1, + ACTIONS(4938), 1, anon_sym_LPAREN, - ACTIONS(4934), 1, + ACTIONS(4940), 1, anon_sym_LBRACK, - ACTIONS(4936), 1, + ACTIONS(4942), 1, anon_sym_QMARK, - ACTIONS(4938), 1, + ACTIONS(4944), 1, anon_sym_BANG, - ACTIONS(4940), 1, + ACTIONS(4946), 1, anon_sym_LBRACK2, - ACTIONS(4942), 1, + ACTIONS(4948), 1, anon_sym_QMARK_DOT, - ACTIONS(4944), 1, + ACTIONS(4950), 1, anon_sym_POUND_LBRACK, - ACTIONS(5090), 1, + ACTIONS(5076), 1, anon_sym_CARET, - STATE(2396), 1, - sym_or_block, - STATE(2397), 1, + STATE(2298), 1, sym_argument_list, - STATE(4127), 1, + STATE(2299), 1, + sym_or_block, + STATE(4251), 1, sym_type_parameters, - ACTIONS(5094), 2, + ACTIONS(5078), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(5100), 2, + ACTIONS(5084), 2, anon_sym_in, anon_sym_BANGin, - STATE(2423), 2, + STATE(2419), 2, sym_line_comment, sym_block_comment, - ACTIONS(5084), 3, + ACTIONS(5070), 3, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5088), 3, + ACTIONS(5074), 3, anon_sym_SLASH, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(5096), 4, + ACTIONS(5080), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(5086), 5, + ACTIONS(5072), 5, anon_sym_STAR, anon_sym_PERCENT, anon_sym_LT_LT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(1783), 12, + ACTIONS(1763), 12, anon_sym_SEMI, anon_sym_as, anon_sym_RBRACK, @@ -241155,230 +240960,214 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_is, anon_sym_BANGis, anon_sym_DOT_DOT, - [58655] = 6, - ACTIONS(497), 1, + [58233] = 20, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, - ACTIONS(499), 1, + ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(1856), 1, + ACTIONS(4936), 1, + anon_sym_DOT, + ACTIONS(4938), 1, + anon_sym_LPAREN, + ACTIONS(4940), 1, anon_sym_LBRACK, - ACTIONS(2507), 1, - anon_sym_LBRACE, - STATE(2424), 2, + ACTIONS(4942), 1, + anon_sym_QMARK, + ACTIONS(4944), 1, + anon_sym_BANG, + ACTIONS(4946), 1, + anon_sym_LBRACK2, + ACTIONS(4948), 1, + anon_sym_QMARK_DOT, + ACTIONS(4950), 1, + anon_sym_POUND_LBRACK, + ACTIONS(5076), 1, + anon_sym_CARET, + STATE(2298), 1, + sym_argument_list, + STATE(2299), 1, + sym_or_block, + STATE(4251), 1, + sym_type_parameters, + ACTIONS(1765), 2, + anon_sym_LT, + anon_sym_GT, + STATE(2420), 2, sym_line_comment, sym_block_comment, - ACTIONS(1851), 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(5070), 3, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - anon_sym_STAR, + ACTIONS(5074), 3, anon_sym_SLASH, + anon_sym_AMP, + anon_sym_GT_GT, + ACTIONS(5072), 5, + anon_sym_STAR, anon_sym_PERCENT, - anon_sym_LT, - anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_AMP_CARET, + ACTIONS(1763), 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, - [58715] = 25, - ACTIONS(497), 1, - anon_sym_SLASH_SLASH, - ACTIONS(499), 1, - anon_sym_SLASH_STAR, - ACTIONS(1851), 1, - anon_sym_DOT, - ACTIONS(2505), 1, - anon_sym_LBRACK, - ACTIONS(3420), 1, - sym_identifier, - ACTIONS(3422), 1, - anon_sym_LPAREN, - ACTIONS(3424), 1, - anon_sym_fn, - ACTIONS(3426), 1, - anon_sym_STAR, - ACTIONS(3428), 1, - anon_sym_struct, - ACTIONS(3430), 1, - anon_sym_QMARK, - ACTIONS(3432), 1, - anon_sym_BANG, - ACTIONS(3434), 1, - anon_sym_LBRACK2, - ACTIONS(3436), 1, - anon_sym_AMP, - ACTIONS(3438), 1, - anon_sym_shared, - ACTIONS(3440), 1, - anon_sym_map_LBRACK, - ACTIONS(3442), 1, - anon_sym_chan, - ACTIONS(3444), 1, - anon_sym_thread, - ACTIONS(3446), 1, - anon_sym_atomic, - STATE(3335), 1, - sym_plain_type, - STATE(4341), 1, - sym_reference_expression, - STATE(2425), 2, - sym_line_comment, - sym_block_comment, - STATE(3286), 2, - sym_type_reference_expression, - sym_qualified_type, - STATE(3339), 4, - sym__plain_type_without_special, - sym_multi_return_type, - sym_result_type, - sym_option_type, - ACTIONS(2507), 7, - anon_sym_LF, - anon_sym_CR, - anon_sym_CR_LF, - anon_sym_RBRACE, - anon_sym___global, - anon_sym_pub, - anon_sym_mut, - STATE(3349), 12, - sym_anon_struct_type, - sym_fixed_array_type, - sym_array_type, - sym_pointer_type, - sym_wrong_pointer_type, - sym_map_type, - sym_channel_type, - sym_shared_type, - sym_thread_type, - sym_atomic_type, - sym_generic_type, - sym_function_type, - [58813] = 29, + anon_sym_DOT_DOT, + [58321] = 18, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(4930), 1, + ACTIONS(4936), 1, anon_sym_DOT, - ACTIONS(4932), 1, + ACTIONS(4938), 1, anon_sym_LPAREN, - ACTIONS(4934), 1, + ACTIONS(4940), 1, anon_sym_LBRACK, - ACTIONS(4936), 1, + ACTIONS(4942), 1, anon_sym_QMARK, - ACTIONS(4938), 1, + ACTIONS(4944), 1, anon_sym_BANG, - ACTIONS(4940), 1, + ACTIONS(4946), 1, anon_sym_LBRACK2, - ACTIONS(4942), 1, + ACTIONS(4948), 1, anon_sym_QMARK_DOT, - ACTIONS(4944), 1, + ACTIONS(4950), 1, anon_sym_POUND_LBRACK, - ACTIONS(4994), 1, + STATE(2298), 1, + sym_argument_list, + STATE(2299), 1, + sym_or_block, + STATE(4251), 1, + sym_type_parameters, + STATE(2421), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(5074), 3, + anon_sym_SLASH, + anon_sym_AMP, + anon_sym_GT_GT, + ACTIONS(1765), 5, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(5072), 5, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_AMP_CARET, + ACTIONS(1763), 19, + anon_sym_SEMI, anon_sym_as, - ACTIONS(5008), 1, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_RBRACK, + anon_sym_COLON, anon_sym_PLUS_PLUS, - ACTIONS(5010), 1, anon_sym_DASH_DASH, - ACTIONS(5018), 1, - anon_sym_or, - ACTIONS(5090), 1, anon_sym_CARET, - ACTIONS(5098), 1, anon_sym_AMP_AMP, - ACTIONS(5102), 1, anon_sym_PIPE_PIPE, - STATE(2396), 1, - sym_or_block, - STATE(2397), 1, - sym_argument_list, - STATE(4127), 1, - sym_type_parameters, - ACTIONS(5020), 2, + anon_sym_or, anon_sym_is, anon_sym_BANGis, - ACTIONS(5094), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(5100), 2, anon_sym_in, anon_sym_BANGin, - STATE(2426), 2, + anon_sym_DOT_DOT, + [58405] = 6, + ACTIONS(497), 1, + anon_sym_SLASH_SLASH, + ACTIONS(499), 1, + anon_sym_SLASH_STAR, + ACTIONS(1807), 1, + anon_sym_LBRACK, + ACTIONS(1987), 2, + anon_sym_LBRACE, + anon_sym_COMMA, + STATE(2422), 2, sym_line_comment, sym_block_comment, - ACTIONS(5084), 3, + ACTIONS(1809), 40, + anon_sym_LF, + anon_sym_CR, + anon_sym_CR_LF, + anon_sym_SEMI, + anon_sym_DOT, + anon_sym_as, + anon_sym_RBRACE, + anon_sym_LPAREN, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5088), 3, + anon_sym_STAR, anon_sym_SLASH, - anon_sym_AMP, - anon_sym_GT_GT, - ACTIONS(1771), 4, - anon_sym_SEMI, - anon_sym_RBRACK, - anon_sym_COLON, - anon_sym_DOT_DOT, - ACTIONS(5096), 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(5086), 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, - [58919] = 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, + [58465] = 6, ACTIONS(497), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, anon_sym_SLASH_STAR, - ACTIONS(1915), 1, + ACTIONS(1911), 1, anon_sym_LBRACK, - ACTIONS(1951), 2, - anon_sym_LBRACE, - anon_sym_COMMA, - STATE(2427), 2, + ACTIONS(5086), 1, + anon_sym_DOLLARelse, + STATE(2423), 2, sym_line_comment, sym_block_comment, - ACTIONS(1917), 40, + ACTIONS(1913), 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, @@ -241413,117 +241202,121 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [58979] = 20, - ACTIONS(3), 1, + [58525] = 24, + ACTIONS(497), 1, anon_sym_SLASH_SLASH, - ACTIONS(5), 1, + ACTIONS(499), 1, anon_sym_SLASH_STAR, - ACTIONS(4930), 1, - anon_sym_DOT, - ACTIONS(4932), 1, + ACTIONS(4960), 1, anon_sym_LPAREN, - ACTIONS(4934), 1, + ACTIONS(4962), 1, anon_sym_LBRACK, - ACTIONS(4936), 1, + ACTIONS(4964), 1, anon_sym_QMARK, - ACTIONS(4938), 1, + ACTIONS(4966), 1, anon_sym_BANG, - ACTIONS(4940), 1, - anon_sym_LBRACK2, - ACTIONS(4942), 1, - anon_sym_QMARK_DOT, - ACTIONS(4944), 1, - anon_sym_POUND_LBRACK, - ACTIONS(5090), 1, - anon_sym_CARET, - STATE(2396), 1, + ACTIONS(4970), 1, + anon_sym_as, + ACTIONS(4980), 1, + anon_sym_PLUS_PLUS, + ACTIONS(4982), 1, + anon_sym_DASH_DASH, + ACTIONS(4988), 1, + anon_sym_or, + ACTIONS(5046), 1, + anon_sym_AMP_AMP, + ACTIONS(5066), 1, + anon_sym_PIPE_PIPE, + STATE(2569), 1, sym_or_block, - STATE(2397), 1, + STATE(2570), 1, sym_argument_list, - STATE(4127), 1, + STATE(4070), 1, sym_type_parameters, - ACTIONS(1785), 2, - anon_sym_LT, - anon_sym_GT, - STATE(2428), 2, + ACTIONS(4958), 2, + anon_sym_DOT, + anon_sym_QMARK_DOT, + ACTIONS(4968), 2, + anon_sym_LBRACK2, + anon_sym_POUND_LBRACK, + ACTIONS(4990), 2, + anon_sym_is, + anon_sym_BANGis, + ACTIONS(5048), 2, + anon_sym_in, + anon_sym_BANGin, + STATE(2424), 2, sym_line_comment, sym_block_comment, - ACTIONS(5084), 3, + ACTIONS(3556), 4, + anon_sym_LF, + anon_sym_CR, + anon_sym_CR_LF, + anon_sym_RBRACE, + ACTIONS(5036), 4, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5088), 3, - anon_sym_SLASH, - anon_sym_AMP, - anon_sym_GT_GT, - ACTIONS(5086), 5, + anon_sym_CARET, + ACTIONS(5044), 6, + anon_sym_LT, + anon_sym_GT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(5038), 8, anon_sym_STAR, + anon_sym_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(1783), 18, - anon_sym_SEMI, - anon_sym_as, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_RBRACK, - anon_sym_COLON, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_or, - anon_sym_is, - anon_sym_BANGis, - anon_sym_in, - anon_sym_BANGin, - anon_sym_DOT_DOT, - [59067] = 7, - ACTIONS(3), 1, + [58621] = 6, + ACTIONS(497), 1, anon_sym_SLASH_SLASH, - ACTIONS(5), 1, + ACTIONS(499), 1, anon_sym_SLASH_STAR, - ACTIONS(1856), 2, - anon_sym_RPAREN, + ACTIONS(1894), 1, anon_sym_LBRACK, - ACTIONS(2505), 2, + ACTIONS(2475), 1, anon_sym_LBRACE, - anon_sym_COMMA, - STATE(2429), 2, + STATE(2425), 2, sym_line_comment, sym_block_comment, - ACTIONS(1851), 12, + ACTIONS(1889), 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_QMARK, - anon_sym_BANG, - anon_sym_LBRACK2, - anon_sym_AMP, - anon_sym_GT_GT, - ACTIONS(1849), 27, - anon_sym_SEMI, - anon_sym_as, - anon_sym_LPAREN, - anon_sym_STAR, - anon_sym_PERCENT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - anon_sym_RBRACK, - anon_sym_COLON, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, + anon_sym_QMARK, + anon_sym_BANG, + anon_sym_LBRACK2, anon_sym_CARET, + anon_sym_AMP, anon_sym_LT_LT, + anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, anon_sym_AMP_AMP, @@ -241535,19 +241328,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - anon_sym_DOT_DOT, - [59129] = 6, + [58681] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(1953), 2, + ACTIONS(1989), 2, anon_sym_LBRACE, anon_sym_COMMA, - STATE(2430), 2, + STATE(2426), 2, sym_line_comment, sym_block_comment, - ACTIONS(1917), 12, + ACTIONS(1809), 12, anon_sym_DOT, anon_sym_PIPE, anon_sym_PLUS, @@ -241560,7 +241352,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(1915), 29, + ACTIONS(1807), 29, anon_sym_SEMI, anon_sym_as, anon_sym_LPAREN, @@ -241590,85 +241382,232 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_in, anon_sym_BANGin, anon_sym_DOT_DOT, - [59189] = 18, - ACTIONS(3), 1, + [58741] = 23, + ACTIONS(497), 1, anon_sym_SLASH_SLASH, - ACTIONS(5), 1, + ACTIONS(499), 1, anon_sym_SLASH_STAR, - ACTIONS(4930), 1, - anon_sym_DOT, - ACTIONS(4932), 1, + ACTIONS(3426), 1, + sym_identifier, + ACTIONS(3428), 1, anon_sym_LPAREN, - ACTIONS(4934), 1, - anon_sym_LBRACK, - ACTIONS(4936), 1, + ACTIONS(3430), 1, + anon_sym_fn, + ACTIONS(3432), 1, + anon_sym_STAR, + ACTIONS(3434), 1, + anon_sym_struct, + ACTIONS(3436), 1, anon_sym_QMARK, - ACTIONS(4938), 1, + ACTIONS(3438), 1, anon_sym_BANG, - ACTIONS(4940), 1, + ACTIONS(3440), 1, anon_sym_LBRACK2, - ACTIONS(4942), 1, - anon_sym_QMARK_DOT, - ACTIONS(4944), 1, - anon_sym_POUND_LBRACK, - STATE(2396), 1, - sym_or_block, - STATE(2397), 1, - sym_argument_list, - STATE(4127), 1, - sym_type_parameters, - STATE(2431), 2, + ACTIONS(3442), 1, + anon_sym_AMP, + ACTIONS(3444), 1, + anon_sym_shared, + ACTIONS(3446), 1, + anon_sym_map_LBRACK, + ACTIONS(3448), 1, + anon_sym_chan, + ACTIONS(3450), 1, + anon_sym_thread, + ACTIONS(3452), 1, + anon_sym_atomic, + STATE(3358), 1, + sym_plain_type, + STATE(4351), 1, + sym_reference_expression, + STATE(2427), 2, sym_line_comment, sym_block_comment, - ACTIONS(5088), 3, - anon_sym_SLASH, + STATE(3305), 2, + sym_type_reference_expression, + sym_qualified_type, + STATE(3362), 4, + sym__plain_type_without_special, + sym_multi_return_type, + sym_result_type, + sym_option_type, + ACTIONS(623), 9, + anon_sym_LF, + anon_sym_CR, + anon_sym_CR_LF, + anon_sym_RBRACE, + anon_sym_EQ, + anon_sym___global, + anon_sym_pub, + anon_sym_mut, + anon_sym_AT_LBRACK, + STATE(3340), 12, + sym_anon_struct_type, + sym_fixed_array_type, + sym_array_type, + sym_pointer_type, + sym_wrong_pointer_type, + sym_map_type, + sym_channel_type, + sym_shared_type, + sym_thread_type, + sym_atomic_type, + sym_generic_type, + sym_function_type, + [58835] = 23, + ACTIONS(497), 1, + anon_sym_SLASH_SLASH, + ACTIONS(499), 1, + anon_sym_SLASH_STAR, + ACTIONS(3426), 1, + sym_identifier, + ACTIONS(3428), 1, + anon_sym_LPAREN, + ACTIONS(3430), 1, + anon_sym_fn, + ACTIONS(3432), 1, + anon_sym_STAR, + ACTIONS(3434), 1, + anon_sym_struct, + ACTIONS(3436), 1, + anon_sym_QMARK, + ACTIONS(3438), 1, + anon_sym_BANG, + ACTIONS(3440), 1, + anon_sym_LBRACK2, + ACTIONS(3442), 1, anon_sym_AMP, - anon_sym_GT_GT, - ACTIONS(1785), 5, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(5086), 5, + ACTIONS(3444), 1, + anon_sym_shared, + ACTIONS(3446), 1, + anon_sym_map_LBRACK, + ACTIONS(3448), 1, + anon_sym_chan, + ACTIONS(3450), 1, + anon_sym_thread, + ACTIONS(3452), 1, + anon_sym_atomic, + STATE(3341), 1, + sym_plain_type, + STATE(4351), 1, + sym_reference_expression, + STATE(2428), 2, + sym_line_comment, + sym_block_comment, + STATE(3305), 2, + sym_type_reference_expression, + sym_qualified_type, + STATE(3362), 4, + sym__plain_type_without_special, + sym_multi_return_type, + sym_result_type, + sym_option_type, + ACTIONS(589), 9, + anon_sym_LF, + anon_sym_CR, + anon_sym_CR_LF, + anon_sym_RBRACE, + anon_sym_EQ, + anon_sym___global, + anon_sym_pub, + anon_sym_mut, + anon_sym_AT_LBRACK, + STATE(3340), 12, + sym_anon_struct_type, + sym_fixed_array_type, + sym_array_type, + sym_pointer_type, + sym_wrong_pointer_type, + sym_map_type, + sym_channel_type, + sym_shared_type, + sym_thread_type, + sym_atomic_type, + sym_generic_type, + sym_function_type, + [58929] = 23, + ACTIONS(497), 1, + anon_sym_SLASH_SLASH, + ACTIONS(499), 1, + anon_sym_SLASH_STAR, + ACTIONS(3426), 1, + sym_identifier, + ACTIONS(3428), 1, + anon_sym_LPAREN, + ACTIONS(3430), 1, + anon_sym_fn, + ACTIONS(3432), 1, anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - ACTIONS(1783), 19, - anon_sym_SEMI, - anon_sym_as, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_RBRACK, - anon_sym_COLON, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_CARET, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_or, - anon_sym_is, - anon_sym_BANGis, - anon_sym_in, - anon_sym_BANGin, - anon_sym_DOT_DOT, - [59273] = 6, + ACTIONS(3434), 1, + anon_sym_struct, + ACTIONS(3436), 1, + anon_sym_QMARK, + ACTIONS(3438), 1, + anon_sym_BANG, + ACTIONS(3440), 1, + anon_sym_LBRACK2, + ACTIONS(3442), 1, + anon_sym_AMP, + ACTIONS(3444), 1, + anon_sym_shared, + ACTIONS(3446), 1, + anon_sym_map_LBRACK, + ACTIONS(3448), 1, + anon_sym_chan, + ACTIONS(3450), 1, + anon_sym_thread, + ACTIONS(3452), 1, + anon_sym_atomic, + STATE(3353), 1, + sym_plain_type, + STATE(4351), 1, + sym_reference_expression, + STATE(2429), 2, + sym_line_comment, + sym_block_comment, + STATE(3305), 2, + sym_type_reference_expression, + sym_qualified_type, + STATE(3362), 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, + anon_sym_EQ, + anon_sym___global, + anon_sym_pub, + anon_sym_mut, + anon_sym_AT_LBRACK, + STATE(3340), 12, + sym_anon_struct_type, + sym_fixed_array_type, + sym_array_type, + sym_pointer_type, + sym_wrong_pointer_type, + sym_map_type, + sym_channel_type, + sym_shared_type, + sym_thread_type, + sym_atomic_type, + sym_generic_type, + sym_function_type, + [59023] = 6, ACTIONS(497), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, anon_sym_SLASH_STAR, - ACTIONS(1903), 1, + ACTIONS(1841), 1, anon_sym_LBRACK, - STATE(2535), 1, - sym_type_parameters, - STATE(2432), 2, + ACTIONS(5088), 1, + anon_sym_DOLLARelse, + STATE(2430), 2, sym_line_comment, sym_block_comment, - ACTIONS(1905), 41, + ACTIONS(1843), 41, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -241710,37 +241649,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [59333] = 16, + [59083] = 16, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(5068), 1, + ACTIONS(5090), 1, anon_sym_DOT, - ACTIONS(5070), 1, + ACTIONS(5092), 1, anon_sym_LPAREN, - ACTIONS(5072), 1, + ACTIONS(5094), 1, anon_sym_LBRACK, - ACTIONS(5074), 1, + ACTIONS(5096), 1, anon_sym_QMARK, - ACTIONS(5076), 1, + ACTIONS(5098), 1, anon_sym_BANG, - ACTIONS(5078), 1, + ACTIONS(5100), 1, anon_sym_LBRACK2, - ACTIONS(5080), 1, + ACTIONS(5102), 1, anon_sym_QMARK_DOT, - ACTIONS(5082), 1, + ACTIONS(5104), 1, anon_sym_POUND_LBRACK, - STATE(2736), 1, + STATE(2698), 1, sym_or_block, - STATE(2742), 1, + STATE(2702), 1, sym_argument_list, - STATE(4112), 1, + STATE(4053), 1, sym_type_parameters, - STATE(2433), 2, + STATE(2431), 2, sym_line_comment, sym_block_comment, - ACTIONS(1785), 9, + ACTIONS(1765), 9, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, @@ -241750,7 +241689,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_GT_GT, anon_sym_DOT_DOT, - ACTIONS(1783), 23, + ACTIONS(1763), 23, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -241774,57 +241713,57 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [59413] = 20, + [59163] = 20, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(5068), 1, + ACTIONS(5090), 1, anon_sym_DOT, - ACTIONS(5070), 1, + ACTIONS(5092), 1, anon_sym_LPAREN, - ACTIONS(5072), 1, + ACTIONS(5094), 1, anon_sym_LBRACK, - ACTIONS(5074), 1, + ACTIONS(5096), 1, anon_sym_QMARK, - ACTIONS(5076), 1, + ACTIONS(5098), 1, anon_sym_BANG, - ACTIONS(5078), 1, + ACTIONS(5100), 1, anon_sym_LBRACK2, - ACTIONS(5080), 1, + ACTIONS(5102), 1, anon_sym_QMARK_DOT, - ACTIONS(5082), 1, + ACTIONS(5104), 1, anon_sym_POUND_LBRACK, - ACTIONS(5110), 1, + ACTIONS(5112), 1, anon_sym_CARET, - STATE(2736), 1, + STATE(2698), 1, sym_or_block, - STATE(2742), 1, + STATE(2702), 1, sym_argument_list, - STATE(4112), 1, + STATE(4053), 1, sym_type_parameters, - STATE(2434), 2, + STATE(2432), 2, sym_line_comment, sym_block_comment, - ACTIONS(1769), 3, + ACTIONS(1781), 3, anon_sym_LT, anon_sym_GT, anon_sym_DOT_DOT, - ACTIONS(5104), 3, + ACTIONS(5106), 3, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5108), 3, + ACTIONS(5110), 3, anon_sym_SLASH, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(5106), 5, + ACTIONS(5108), 5, anon_sym_STAR, anon_sym_PERCENT, anon_sym_LT_LT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(1767), 17, + ACTIONS(1779), 17, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -241842,303 +241781,215 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [59501] = 24, - ACTIONS(497), 1, - anon_sym_SLASH_SLASH, - ACTIONS(499), 1, - anon_sym_SLASH_STAR, - ACTIONS(4956), 1, - anon_sym_as, - ACTIONS(4960), 1, - anon_sym_LPAREN, - ACTIONS(4968), 1, - anon_sym_LBRACK, - ACTIONS(4970), 1, - anon_sym_PLUS_PLUS, - ACTIONS(4972), 1, - anon_sym_DASH_DASH, - ACTIONS(4974), 1, - anon_sym_QMARK, - ACTIONS(4976), 1, - anon_sym_BANG, - ACTIONS(4984), 1, - anon_sym_or, - ACTIONS(5032), 1, - anon_sym_AMP_AMP, - ACTIONS(5038), 1, - anon_sym_PIPE_PIPE, - STATE(2506), 1, - sym_or_block, - STATE(2508), 1, - sym_argument_list, - STATE(4294), 1, - sym_type_parameters, - ACTIONS(4954), 2, - anon_sym_DOT, - anon_sym_QMARK_DOT, - ACTIONS(4978), 2, - anon_sym_LBRACK2, - anon_sym_POUND_LBRACK, - ACTIONS(4986), 2, - anon_sym_is, - anon_sym_BANGis, - ACTIONS(5034), 2, - anon_sym_in, - anon_sym_BANGin, - STATE(2435), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(3546), 4, - anon_sym_LF, - anon_sym_CR, - anon_sym_CR_LF, - anon_sym_RBRACE, - ACTIONS(5026), 4, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_CARET, - ACTIONS(5030), 6, - anon_sym_LT, - anon_sym_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(5028), 8, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_AMP, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - [59597] = 24, + [59251] = 16, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(1785), 1, - anon_sym_DOT_DOT, - ACTIONS(5068), 1, + ACTIONS(5090), 1, anon_sym_DOT, - ACTIONS(5070), 1, + ACTIONS(5092), 1, anon_sym_LPAREN, - ACTIONS(5072), 1, + ACTIONS(5094), 1, anon_sym_LBRACK, - ACTIONS(5074), 1, + ACTIONS(5096), 1, anon_sym_QMARK, - ACTIONS(5076), 1, + ACTIONS(5098), 1, anon_sym_BANG, - ACTIONS(5078), 1, + ACTIONS(5100), 1, anon_sym_LBRACK2, - ACTIONS(5080), 1, + ACTIONS(5102), 1, anon_sym_QMARK_DOT, - ACTIONS(5082), 1, + ACTIONS(5104), 1, anon_sym_POUND_LBRACK, - ACTIONS(5110), 1, - anon_sym_CARET, - ACTIONS(5116), 1, - anon_sym_AMP_AMP, - STATE(2736), 1, + STATE(2698), 1, sym_or_block, - STATE(2742), 1, + STATE(2702), 1, sym_argument_list, - STATE(4112), 1, + STATE(4053), 1, sym_type_parameters, - ACTIONS(5112), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(5118), 2, - anon_sym_in, - anon_sym_BANGin, - STATE(2436), 2, + STATE(2433), 2, sym_line_comment, sym_block_comment, - ACTIONS(5104), 3, + ACTIONS(1769), 9, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5108), 3, anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(5114), 4, + anon_sym_DOT_DOT, + ACTIONS(1767), 23, + anon_sym_as, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_STAR, + anon_sym_PERCENT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(5106), 5, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - ACTIONS(1783), 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_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, - [59693] = 23, + anon_sym_in, + anon_sym_BANGin, + [59331] = 29, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(1785), 1, - anon_sym_DOT_DOT, - ACTIONS(5068), 1, + ACTIONS(4936), 1, anon_sym_DOT, - ACTIONS(5070), 1, + ACTIONS(4938), 1, anon_sym_LPAREN, - ACTIONS(5072), 1, + ACTIONS(4940), 1, anon_sym_LBRACK, - ACTIONS(5074), 1, + ACTIONS(4942), 1, anon_sym_QMARK, - ACTIONS(5076), 1, + ACTIONS(4944), 1, anon_sym_BANG, - ACTIONS(5078), 1, + ACTIONS(4946), 1, anon_sym_LBRACK2, - ACTIONS(5080), 1, + ACTIONS(4948), 1, anon_sym_QMARK_DOT, - ACTIONS(5082), 1, + ACTIONS(4950), 1, anon_sym_POUND_LBRACK, - ACTIONS(5110), 1, + ACTIONS(4996), 1, + anon_sym_as, + ACTIONS(5012), 1, + anon_sym_PLUS_PLUS, + ACTIONS(5014), 1, + anon_sym_DASH_DASH, + ACTIONS(5022), 1, + anon_sym_or, + ACTIONS(5076), 1, anon_sym_CARET, - STATE(2736), 1, - sym_or_block, - STATE(2742), 1, + ACTIONS(5082), 1, + anon_sym_AMP_AMP, + ACTIONS(5114), 1, + anon_sym_PIPE_PIPE, + STATE(2298), 1, sym_argument_list, - STATE(4112), 1, + STATE(2299), 1, + sym_or_block, + STATE(4251), 1, sym_type_parameters, - ACTIONS(5112), 2, + ACTIONS(5024), 2, + anon_sym_is, + anon_sym_BANGis, + ACTIONS(5078), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(5118), 2, + ACTIONS(5084), 2, anon_sym_in, anon_sym_BANGin, - STATE(2437), 2, + STATE(2434), 2, sym_line_comment, sym_block_comment, - ACTIONS(5104), 3, + ACTIONS(5070), 3, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5108), 3, + ACTIONS(5074), 3, anon_sym_SLASH, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(5114), 4, + ACTIONS(1793), 4, + anon_sym_SEMI, + anon_sym_RBRACK, + anon_sym_COLON, + anon_sym_DOT_DOT, + ACTIONS(5080), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(5106), 5, + ACTIONS(5072), 5, anon_sym_STAR, anon_sym_PERCENT, anon_sym_LT_LT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(1783), 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, - [59787] = 20, + [59437] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(5068), 1, - anon_sym_DOT, - ACTIONS(5070), 1, - anon_sym_LPAREN, - ACTIONS(5072), 1, + ACTIONS(1894), 2, + anon_sym_LBRACE, anon_sym_LBRACK, - ACTIONS(5074), 1, - anon_sym_QMARK, - ACTIONS(5076), 1, - anon_sym_BANG, - ACTIONS(5078), 1, - anon_sym_LBRACK2, - ACTIONS(5080), 1, - anon_sym_QMARK_DOT, - ACTIONS(5082), 1, - anon_sym_POUND_LBRACK, - ACTIONS(5110), 1, - anon_sym_CARET, - STATE(2736), 1, - sym_or_block, - STATE(2742), 1, - sym_argument_list, - STATE(4112), 1, - sym_type_parameters, - STATE(2438), 2, + STATE(2435), 2, sym_line_comment, sym_block_comment, - ACTIONS(1785), 3, - anon_sym_LT, - anon_sym_GT, - anon_sym_DOT_DOT, - ACTIONS(5104), 3, + ACTIONS(1889), 13, + anon_sym_DOT, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5108), 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(5106), 5, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - ACTIONS(1783), 17, + anon_sym_DOT_DOT, + ACTIONS(1887), 28, + anon_sym_SEMI, anon_sym_as, - anon_sym_LBRACE, anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_PERCENT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_DOT_DOT_DOT, + anon_sym_RBRACK, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_AMP_CARET, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_or, + anon_sym_QMARK_DOT, + anon_sym_POUND_LBRACK, anon_sym_is, anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [59875] = 6, + anon_sym_COLON_EQ, + [59497] = 6, ACTIONS(497), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, anon_sym_SLASH_STAR, - ACTIONS(2661), 1, + ACTIONS(2674), 1, anon_sym_LBRACK, - ACTIONS(1951), 2, + ACTIONS(1987), 2, anon_sym_LBRACE, anon_sym_COMMA, - STATE(2439), 2, + STATE(2436), 2, sym_line_comment, sym_block_comment, - ACTIONS(2663), 40, + ACTIONS(2676), 40, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -242179,840 +242030,625 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [59935] = 18, + [59557] = 29, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(5068), 1, + ACTIONS(4936), 1, anon_sym_DOT, - ACTIONS(5070), 1, + ACTIONS(4938), 1, anon_sym_LPAREN, - ACTIONS(5072), 1, + ACTIONS(4940), 1, anon_sym_LBRACK, - ACTIONS(5074), 1, + ACTIONS(4942), 1, anon_sym_QMARK, - ACTIONS(5076), 1, + ACTIONS(4944), 1, anon_sym_BANG, - ACTIONS(5078), 1, + ACTIONS(4946), 1, anon_sym_LBRACK2, - ACTIONS(5080), 1, + ACTIONS(4948), 1, anon_sym_QMARK_DOT, - ACTIONS(5082), 1, + ACTIONS(4950), 1, anon_sym_POUND_LBRACK, - STATE(2736), 1, - sym_or_block, - STATE(2742), 1, - sym_argument_list, - STATE(4112), 1, - sym_type_parameters, - STATE(2440), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(5108), 3, - anon_sym_SLASH, - anon_sym_AMP, - anon_sym_GT_GT, - ACTIONS(5106), 5, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - ACTIONS(1785), 6, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT, - anon_sym_GT, - anon_sym_DOT_DOT, - ACTIONS(1783), 18, + ACTIONS(4996), 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(5012), 1, anon_sym_PLUS_PLUS, + ACTIONS(5014), 1, anon_sym_DASH_DASH, + ACTIONS(5022), 1, + anon_sym_or, + ACTIONS(5076), 1, anon_sym_CARET, + ACTIONS(5082), 1, anon_sym_AMP_AMP, + ACTIONS(5114), 1, anon_sym_PIPE_PIPE, - anon_sym_or, + STATE(2298), 1, + sym_argument_list, + STATE(2299), 1, + sym_or_block, + STATE(4251), 1, + sym_type_parameters, + ACTIONS(5024), 2, anon_sym_is, anon_sym_BANGis, + ACTIONS(5078), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(5084), 2, anon_sym_in, anon_sym_BANGin, - [60019] = 6, - ACTIONS(497), 1, - anon_sym_SLASH_SLASH, - ACTIONS(499), 1, - anon_sym_SLASH_STAR, - ACTIONS(1897), 1, - anon_sym_LBRACK, - ACTIONS(5120), 1, - anon_sym_DOLLARelse, - STATE(2441), 2, + STATE(2437), 2, sym_line_comment, sym_block_comment, - ACTIONS(1899), 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(5070), 3, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - anon_sym_STAR, + ACTIONS(5074), 3, anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_LT, - anon_sym_GT, + anon_sym_AMP, + anon_sym_GT_GT, + ACTIONS(1771), 4, + anon_sym_SEMI, + anon_sym_RBRACK, + anon_sym_COLON, + anon_sym_DOT_DOT, + ACTIONS(5080), 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(5072), 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, - [60079] = 24, + [59663] = 25, ACTIONS(497), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, anon_sym_SLASH_STAR, - ACTIONS(4956), 1, - anon_sym_as, - ACTIONS(4960), 1, - anon_sym_LPAREN, - ACTIONS(4968), 1, + ACTIONS(1889), 1, + anon_sym_DOT, + ACTIONS(2473), 1, anon_sym_LBRACK, - ACTIONS(4970), 1, - anon_sym_PLUS_PLUS, - ACTIONS(4972), 1, - anon_sym_DASH_DASH, - ACTIONS(4974), 1, + ACTIONS(3426), 1, + sym_identifier, + ACTIONS(3428), 1, + anon_sym_LPAREN, + ACTIONS(3430), 1, + anon_sym_fn, + ACTIONS(3432), 1, + anon_sym_STAR, + ACTIONS(3434), 1, + anon_sym_struct, + ACTIONS(3436), 1, anon_sym_QMARK, - ACTIONS(4976), 1, + ACTIONS(3438), 1, anon_sym_BANG, - ACTIONS(4984), 1, - anon_sym_or, - ACTIONS(5032), 1, - anon_sym_AMP_AMP, - ACTIONS(5038), 1, - anon_sym_PIPE_PIPE, - STATE(2506), 1, - sym_or_block, - STATE(2508), 1, - sym_argument_list, - STATE(4294), 1, - sym_type_parameters, - ACTIONS(4954), 2, - anon_sym_DOT, - anon_sym_QMARK_DOT, - ACTIONS(4978), 2, + ACTIONS(3440), 1, anon_sym_LBRACK2, - anon_sym_POUND_LBRACK, - ACTIONS(4986), 2, - anon_sym_is, - anon_sym_BANGis, - ACTIONS(5034), 2, - anon_sym_in, - anon_sym_BANGin, - STATE(2442), 2, + ACTIONS(3442), 1, + anon_sym_AMP, + ACTIONS(3444), 1, + anon_sym_shared, + ACTIONS(3446), 1, + anon_sym_map_LBRACK, + ACTIONS(3448), 1, + anon_sym_chan, + ACTIONS(3450), 1, + anon_sym_thread, + ACTIONS(3452), 1, + anon_sym_atomic, + STATE(3337), 1, + sym_plain_type, + STATE(4351), 1, + sym_reference_expression, + STATE(2438), 2, sym_line_comment, sym_block_comment, - ACTIONS(3554), 4, + STATE(3305), 2, + sym_type_reference_expression, + sym_qualified_type, + STATE(3362), 4, + sym__plain_type_without_special, + sym_multi_return_type, + sym_result_type, + sym_option_type, + ACTIONS(2475), 7, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, - anon_sym_SEMI, - ACTIONS(5026), 4, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_CARET, - ACTIONS(5030), 6, - anon_sym_LT, - anon_sym_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(5028), 8, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_AMP, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - [60175] = 24, - ACTIONS(497), 1, + anon_sym_RBRACE, + anon_sym___global, + anon_sym_pub, + anon_sym_mut, + STATE(3340), 12, + sym_anon_struct_type, + sym_fixed_array_type, + sym_array_type, + sym_pointer_type, + sym_wrong_pointer_type, + sym_map_type, + sym_channel_type, + sym_shared_type, + sym_thread_type, + sym_atomic_type, + sym_generic_type, + sym_function_type, + [59761] = 24, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, - ACTIONS(499), 1, + ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(4956), 1, - anon_sym_as, - ACTIONS(4960), 1, + ACTIONS(1765), 1, + anon_sym_DOT_DOT, + ACTIONS(5090), 1, + anon_sym_DOT, + ACTIONS(5092), 1, anon_sym_LPAREN, - ACTIONS(4968), 1, + ACTIONS(5094), 1, anon_sym_LBRACK, - ACTIONS(4970), 1, - anon_sym_PLUS_PLUS, - ACTIONS(4972), 1, - anon_sym_DASH_DASH, - ACTIONS(4974), 1, + ACTIONS(5096), 1, anon_sym_QMARK, - ACTIONS(4976), 1, + ACTIONS(5098), 1, anon_sym_BANG, - ACTIONS(4984), 1, - anon_sym_or, - ACTIONS(5032), 1, + ACTIONS(5100), 1, + anon_sym_LBRACK2, + ACTIONS(5102), 1, + anon_sym_QMARK_DOT, + ACTIONS(5104), 1, + anon_sym_POUND_LBRACK, + ACTIONS(5112), 1, + anon_sym_CARET, + ACTIONS(5120), 1, anon_sym_AMP_AMP, - ACTIONS(5038), 1, - anon_sym_PIPE_PIPE, - STATE(2506), 1, + STATE(2698), 1, sym_or_block, - STATE(2508), 1, + STATE(2702), 1, sym_argument_list, - STATE(4294), 1, + STATE(4053), 1, sym_type_parameters, - ACTIONS(4954), 2, - anon_sym_DOT, - anon_sym_QMARK_DOT, - ACTIONS(4978), 2, - anon_sym_LBRACK2, - anon_sym_POUND_LBRACK, - ACTIONS(4986), 2, - anon_sym_is, - anon_sym_BANGis, - ACTIONS(5034), 2, + ACTIONS(5116), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(5122), 2, anon_sym_in, anon_sym_BANGin, - STATE(2443), 2, + STATE(2439), 2, sym_line_comment, sym_block_comment, - ACTIONS(3550), 4, - anon_sym_LF, - anon_sym_CR, - anon_sym_CR_LF, - anon_sym_SEMI, - ACTIONS(5026), 4, + ACTIONS(5106), 3, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - anon_sym_CARET, - ACTIONS(5030), 6, - anon_sym_LT, - anon_sym_GT, + ACTIONS(5110), 3, + anon_sym_SLASH, + anon_sym_AMP, + anon_sym_GT_GT, + ACTIONS(5118), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(5028), 8, + ACTIONS(5108), 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, - [60271] = 6, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_STAR, - ACTIONS(1856), 2, - anon_sym_LBRACE, - anon_sym_LBRACK, - STATE(2444), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(1851), 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(1849), 28, - anon_sym_SEMI, + ACTIONS(1763), 10, anon_sym_as, + anon_sym_LBRACE, anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, anon_sym_DOT_DOT_DOT, - anon_sym_RBRACK, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_or, - anon_sym_QMARK_DOT, - anon_sym_POUND_LBRACK, anon_sym_is, anon_sym_BANGis, - anon_sym_in, - anon_sym_BANGin, - anon_sym_COLON_EQ, - [60331] = 16, + [59857] = 23, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(5068), 1, + ACTIONS(1765), 1, + anon_sym_DOT_DOT, + ACTIONS(5090), 1, anon_sym_DOT, - ACTIONS(5070), 1, + ACTIONS(5092), 1, anon_sym_LPAREN, - ACTIONS(5072), 1, + ACTIONS(5094), 1, anon_sym_LBRACK, - ACTIONS(5074), 1, + ACTIONS(5096), 1, anon_sym_QMARK, - ACTIONS(5076), 1, + ACTIONS(5098), 1, anon_sym_BANG, - ACTIONS(5078), 1, + ACTIONS(5100), 1, anon_sym_LBRACK2, - ACTIONS(5080), 1, + ACTIONS(5102), 1, anon_sym_QMARK_DOT, - ACTIONS(5082), 1, + ACTIONS(5104), 1, anon_sym_POUND_LBRACK, - STATE(2736), 1, + ACTIONS(5112), 1, + anon_sym_CARET, + STATE(2698), 1, sym_or_block, - STATE(2742), 1, + STATE(2702), 1, sym_argument_list, - STATE(4112), 1, + STATE(4053), 1, sym_type_parameters, - STATE(2445), 2, + ACTIONS(5116), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(5122), 2, + anon_sym_in, + anon_sym_BANGin, + STATE(2440), 2, sym_line_comment, sym_block_comment, - ACTIONS(1765), 9, + ACTIONS(5106), 3, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, + ACTIONS(5110), 3, anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, anon_sym_AMP, anon_sym_GT_GT, - anon_sym_DOT_DOT, - ACTIONS(1763), 23, - anon_sym_as, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_STAR, - anon_sym_PERCENT, + ACTIONS(5118), 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(5108), 5, + anon_sym_STAR, + anon_sym_PERCENT, anon_sym_LT_LT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, + ACTIONS(1763), 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, - anon_sym_in, - anon_sym_BANGin, - [60411] = 24, - ACTIONS(497), 1, + [59951] = 20, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, - ACTIONS(499), 1, + ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(4956), 1, - anon_sym_as, - ACTIONS(4960), 1, + ACTIONS(5090), 1, + anon_sym_DOT, + ACTIONS(5092), 1, anon_sym_LPAREN, - ACTIONS(4968), 1, + ACTIONS(5094), 1, anon_sym_LBRACK, - ACTIONS(4970), 1, - anon_sym_PLUS_PLUS, - ACTIONS(4972), 1, - anon_sym_DASH_DASH, - ACTIONS(4974), 1, + ACTIONS(5096), 1, anon_sym_QMARK, - ACTIONS(4976), 1, + ACTIONS(5098), 1, anon_sym_BANG, - ACTIONS(4984), 1, - anon_sym_or, - ACTIONS(5032), 1, - anon_sym_AMP_AMP, - ACTIONS(5038), 1, - anon_sym_PIPE_PIPE, - STATE(2506), 1, + ACTIONS(5100), 1, + anon_sym_LBRACK2, + ACTIONS(5102), 1, + anon_sym_QMARK_DOT, + ACTIONS(5104), 1, + anon_sym_POUND_LBRACK, + ACTIONS(5112), 1, + anon_sym_CARET, + STATE(2698), 1, sym_or_block, - STATE(2508), 1, + STATE(2702), 1, sym_argument_list, - STATE(4294), 1, + STATE(4053), 1, sym_type_parameters, - ACTIONS(4954), 2, - anon_sym_DOT, - anon_sym_QMARK_DOT, - ACTIONS(4978), 2, - anon_sym_LBRACK2, - anon_sym_POUND_LBRACK, - ACTIONS(4986), 2, - anon_sym_is, - anon_sym_BANGis, - ACTIONS(5034), 2, - anon_sym_in, - anon_sym_BANGin, - STATE(2446), 2, + STATE(2441), 2, sym_line_comment, sym_block_comment, - ACTIONS(3538), 4, - anon_sym_LF, - anon_sym_CR, - anon_sym_CR_LF, - anon_sym_RBRACE, - ACTIONS(5026), 4, + ACTIONS(1765), 3, + anon_sym_LT, + anon_sym_GT, + anon_sym_DOT_DOT, + ACTIONS(5106), 3, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - anon_sym_CARET, - ACTIONS(5030), 6, - anon_sym_LT, - anon_sym_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(5028), 8, - anon_sym_STAR, + ACTIONS(5110), 3, anon_sym_SLASH, - anon_sym_PERCENT, anon_sym_AMP, - anon_sym_LT_LT, anon_sym_GT_GT, + ACTIONS(5108), 5, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_LT_LT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - [60507] = 29, + ACTIONS(1763), 17, + anon_sym_as, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_DOT_DOT_DOT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_or, + anon_sym_is, + anon_sym_BANGis, + anon_sym_in, + anon_sym_BANGin, + [60039] = 18, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(4930), 1, + ACTIONS(5090), 1, anon_sym_DOT, - ACTIONS(4932), 1, + ACTIONS(5092), 1, anon_sym_LPAREN, - ACTIONS(4934), 1, + ACTIONS(5094), 1, anon_sym_LBRACK, - ACTIONS(4936), 1, + ACTIONS(5096), 1, anon_sym_QMARK, - ACTIONS(4938), 1, + ACTIONS(5098), 1, anon_sym_BANG, - ACTIONS(4940), 1, + ACTIONS(5100), 1, anon_sym_LBRACK2, - ACTIONS(4942), 1, + ACTIONS(5102), 1, anon_sym_QMARK_DOT, - ACTIONS(4944), 1, + ACTIONS(5104), 1, anon_sym_POUND_LBRACK, - ACTIONS(4994), 1, - anon_sym_as, - ACTIONS(5008), 1, - anon_sym_PLUS_PLUS, - ACTIONS(5010), 1, - anon_sym_DASH_DASH, - ACTIONS(5018), 1, - anon_sym_or, - ACTIONS(5090), 1, - anon_sym_CARET, - ACTIONS(5098), 1, - anon_sym_AMP_AMP, - ACTIONS(5102), 1, - anon_sym_PIPE_PIPE, - STATE(2396), 1, + STATE(2698), 1, sym_or_block, - STATE(2397), 1, + STATE(2702), 1, sym_argument_list, - STATE(4127), 1, + STATE(4053), 1, sym_type_parameters, - ACTIONS(5020), 2, - anon_sym_is, - anon_sym_BANGis, - ACTIONS(5094), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(5100), 2, - anon_sym_in, - anon_sym_BANGin, - STATE(2447), 2, + STATE(2442), 2, sym_line_comment, sym_block_comment, - ACTIONS(5084), 3, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(5088), 3, + ACTIONS(5110), 3, anon_sym_SLASH, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(1779), 4, - anon_sym_SEMI, - anon_sym_RBRACK, - anon_sym_COLON, - anon_sym_DOT_DOT, - ACTIONS(5096), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(5086), 5, + ACTIONS(5108), 5, anon_sym_STAR, anon_sym_PERCENT, anon_sym_LT_LT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - [60613] = 6, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_STAR, - ACTIONS(1953), 2, - anon_sym_LBRACE, - anon_sym_COMMA, - STATE(2448), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(2663), 12, - anon_sym_DOT, + ACTIONS(1765), 6, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_LBRACK2, - anon_sym_AMP, - anon_sym_GT_GT, - ACTIONS(2661), 29, - anon_sym_SEMI, + anon_sym_DOT_DOT, + ACTIONS(1763), 18, anon_sym_as, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_STAR, - anon_sym_PERCENT, + 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, - [60673] = 30, - ACTIONS(3), 1, + [60123] = 24, + ACTIONS(497), 1, anon_sym_SLASH_SLASH, - ACTIONS(5), 1, + ACTIONS(499), 1, anon_sym_SLASH_STAR, - ACTIONS(1781), 1, - anon_sym_DOT_DOT, - ACTIONS(5068), 1, - anon_sym_DOT, - ACTIONS(5070), 1, + ACTIONS(4960), 1, anon_sym_LPAREN, - ACTIONS(5072), 1, + ACTIONS(4962), 1, anon_sym_LBRACK, - ACTIONS(5074), 1, + ACTIONS(4964), 1, anon_sym_QMARK, - ACTIONS(5076), 1, + ACTIONS(4966), 1, anon_sym_BANG, - ACTIONS(5078), 1, - anon_sym_LBRACK2, - ACTIONS(5080), 1, - anon_sym_QMARK_DOT, - ACTIONS(5082), 1, - anon_sym_POUND_LBRACK, - ACTIONS(5110), 1, - anon_sym_CARET, - ACTIONS(5116), 1, - anon_sym_AMP_AMP, - ACTIONS(5122), 1, + ACTIONS(4970), 1, anon_sym_as, - ACTIONS(5124), 1, + ACTIONS(4980), 1, anon_sym_PLUS_PLUS, - ACTIONS(5126), 1, + ACTIONS(4982), 1, anon_sym_DASH_DASH, - ACTIONS(5128), 1, - anon_sym_PIPE_PIPE, - ACTIONS(5130), 1, + ACTIONS(4988), 1, anon_sym_or, - STATE(2736), 1, + ACTIONS(5046), 1, + anon_sym_AMP_AMP, + ACTIONS(5066), 1, + anon_sym_PIPE_PIPE, + STATE(2569), 1, sym_or_block, - STATE(2742), 1, + STATE(2570), 1, sym_argument_list, - STATE(4112), 1, + STATE(4070), 1, sym_type_parameters, - ACTIONS(5112), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(5118), 2, - anon_sym_in, - anon_sym_BANGin, - ACTIONS(5132), 2, + ACTIONS(4958), 2, + anon_sym_DOT, + anon_sym_QMARK_DOT, + ACTIONS(4968), 2, + anon_sym_LBRACK2, + anon_sym_POUND_LBRACK, + ACTIONS(4990), 2, anon_sym_is, anon_sym_BANGis, - STATE(2449), 2, + ACTIONS(5048), 2, + anon_sym_in, + anon_sym_BANGin, + STATE(2443), 2, sym_line_comment, sym_block_comment, - ACTIONS(1779), 3, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_DOT_DOT_DOT, - ACTIONS(5104), 3, + ACTIONS(3560), 4, + anon_sym_LF, + anon_sym_CR, + anon_sym_CR_LF, + anon_sym_RBRACE, + ACTIONS(5036), 4, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5108), 3, - anon_sym_SLASH, - anon_sym_AMP, - anon_sym_GT_GT, - ACTIONS(5114), 4, + anon_sym_CARET, + ACTIONS(5044), 6, + anon_sym_LT, + anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(5106), 5, + ACTIONS(5038), 8, anon_sym_STAR, + anon_sym_SLASH, anon_sym_PERCENT, + anon_sym_AMP, anon_sym_LT_LT, + anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - [60781] = 30, + [60219] = 30, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(1773), 1, anon_sym_DOT_DOT, - ACTIONS(5068), 1, + ACTIONS(5090), 1, anon_sym_DOT, - ACTIONS(5070), 1, + ACTIONS(5092), 1, anon_sym_LPAREN, - ACTIONS(5072), 1, + ACTIONS(5094), 1, anon_sym_LBRACK, - ACTIONS(5074), 1, + ACTIONS(5096), 1, anon_sym_QMARK, - ACTIONS(5076), 1, + ACTIONS(5098), 1, anon_sym_BANG, - ACTIONS(5078), 1, + ACTIONS(5100), 1, anon_sym_LBRACK2, - ACTIONS(5080), 1, + ACTIONS(5102), 1, anon_sym_QMARK_DOT, - ACTIONS(5082), 1, + ACTIONS(5104), 1, anon_sym_POUND_LBRACK, - ACTIONS(5110), 1, + ACTIONS(5112), 1, anon_sym_CARET, - ACTIONS(5116), 1, + ACTIONS(5120), 1, anon_sym_AMP_AMP, - ACTIONS(5122), 1, - anon_sym_as, ACTIONS(5124), 1, - anon_sym_PLUS_PLUS, + anon_sym_as, ACTIONS(5126), 1, - anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, ACTIONS(5128), 1, - anon_sym_PIPE_PIPE, + anon_sym_DASH_DASH, ACTIONS(5130), 1, + anon_sym_PIPE_PIPE, + ACTIONS(5132), 1, anon_sym_or, - STATE(2736), 1, + STATE(2698), 1, sym_or_block, - STATE(2742), 1, + STATE(2702), 1, sym_argument_list, - STATE(4112), 1, + STATE(4053), 1, sym_type_parameters, - ACTIONS(5112), 2, + ACTIONS(5116), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(5118), 2, + ACTIONS(5122), 2, anon_sym_in, anon_sym_BANGin, - ACTIONS(5132), 2, + ACTIONS(5134), 2, anon_sym_is, anon_sym_BANGis, - STATE(2450), 2, + STATE(2444), 2, sym_line_comment, sym_block_comment, ACTIONS(1771), 3, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_DOT_DOT_DOT, - ACTIONS(5104), 3, + ACTIONS(5106), 3, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5108), 3, + ACTIONS(5110), 3, anon_sym_SLASH, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(5114), 4, + ACTIONS(5118), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(5106), 5, + ACTIONS(5108), 5, anon_sym_STAR, anon_sym_PERCENT, anon_sym_LT_LT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - [60889] = 5, - ACTIONS(497), 1, + [60327] = 6, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, - ACTIONS(499), 1, + ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(2814), 1, - anon_sym_LBRACK, - STATE(2451), 2, + ACTIONS(1989), 2, + anon_sym_LBRACE, + anon_sym_COMMA, + STATE(2445), 2, sym_line_comment, sym_block_comment, - ACTIONS(2816), 41, - anon_sym_LF, - anon_sym_CR, - anon_sym_CR_LF, - anon_sym_SEMI, + ACTIONS(2676), 12, anon_sym_DOT, - anon_sym_as, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - anon_sym_STAR, anon_sym_SLASH, - anon_sym_PERCENT, anon_sym_LT, anon_sym_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, anon_sym_QMARK, anon_sym_BANG, anon_sym_LBRACK2, - anon_sym_CARET, anon_sym_AMP, - anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_or, - anon_sym_QMARK_DOT, - anon_sym_POUND_LBRACK, - anon_sym_is, - anon_sym_BANGis, - anon_sym_in, - anon_sym_BANGin, - [60946] = 5, - ACTIONS(497), 1, - anon_sym_SLASH_SLASH, - ACTIONS(499), 1, - anon_sym_SLASH_STAR, - ACTIONS(2485), 1, - anon_sym_LBRACK, - STATE(2452), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(2487), 41, - anon_sym_LF, - anon_sym_CR, - anon_sym_CR_LF, + ACTIONS(2674), 29, 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_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_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, @@ -243024,17 +242660,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [61003] = 5, + anon_sym_DOT_DOT, + [60387] = 6, ACTIONS(497), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, anon_sym_SLASH_STAR, - ACTIONS(2481), 1, + ACTIONS(1879), 1, anon_sym_LBRACK, - STATE(2453), 2, + STATE(2568), 1, + sym_type_parameters, + STATE(2446), 2, sym_line_comment, sym_block_comment, - ACTIONS(2483), 41, + ACTIONS(1881), 41, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -243076,47 +242715,49 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [61060] = 5, - ACTIONS(497), 1, + [60447] = 7, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, - ACTIONS(499), 1, + ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(3048), 1, + ACTIONS(1894), 2, + anon_sym_RPAREN, anon_sym_LBRACK, - STATE(2454), 2, + ACTIONS(2473), 2, + anon_sym_LBRACE, + anon_sym_COMMA, + STATE(2447), 2, sym_line_comment, sym_block_comment, - ACTIONS(3050), 41, - anon_sym_LF, - anon_sym_CR, - anon_sym_CR_LF, - anon_sym_SEMI, + ACTIONS(1889), 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(1887), 27, + anon_sym_SEMI, + anon_sym_as, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_PERCENT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, + anon_sym_RBRACK, + anon_sym_COLON, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_LBRACK2, anon_sym_CARET, - anon_sym_AMP, anon_sym_LT_LT, - anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, anon_sym_AMP_AMP, @@ -243128,250 +242769,304 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [61117] = 30, + anon_sym_DOT_DOT, + [60509] = 30, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(3478), 1, - anon_sym_LBRACE, - ACTIONS(4932), 1, + ACTIONS(1795), 1, + anon_sym_DOT_DOT, + ACTIONS(5090), 1, + anon_sym_DOT, + ACTIONS(5092), 1, anon_sym_LPAREN, - ACTIONS(4934), 1, + ACTIONS(5094), 1, anon_sym_LBRACK, - ACTIONS(4936), 1, + ACTIONS(5096), 1, anon_sym_QMARK, - ACTIONS(4938), 1, + ACTIONS(5098), 1, anon_sym_BANG, - ACTIONS(4940), 1, + ACTIONS(5100), 1, anon_sym_LBRACK2, - ACTIONS(4944), 1, + ACTIONS(5102), 1, + anon_sym_QMARK_DOT, + ACTIONS(5104), 1, anon_sym_POUND_LBRACK, - ACTIONS(4994), 1, + ACTIONS(5112), 1, + anon_sym_CARET, + ACTIONS(5120), 1, + anon_sym_AMP_AMP, + ACTIONS(5124), 1, anon_sym_as, - ACTIONS(5008), 1, + ACTIONS(5126), 1, anon_sym_PLUS_PLUS, - ACTIONS(5010), 1, + ACTIONS(5128), 1, anon_sym_DASH_DASH, - ACTIONS(5012), 1, - anon_sym_CARET, - ACTIONS(5014), 1, - anon_sym_AMP_AMP, - ACTIONS(5016), 1, + ACTIONS(5130), 1, anon_sym_PIPE_PIPE, - ACTIONS(5018), 1, + ACTIONS(5132), 1, anon_sym_or, - ACTIONS(5134), 1, - anon_sym_COMMA, - STATE(2396), 1, + STATE(2698), 1, sym_or_block, - STATE(2397), 1, + STATE(2702), 1, sym_argument_list, - STATE(3891), 1, - aux_sym_strictly_expression_list_repeat1, - STATE(4127), 1, + STATE(4053), 1, sym_type_parameters, - ACTIONS(4942), 2, - anon_sym_DOT, - anon_sym_QMARK_DOT, - ACTIONS(5004), 2, + ACTIONS(5116), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(5020), 2, - anon_sym_is, - anon_sym_BANGis, - ACTIONS(5022), 2, + ACTIONS(5122), 2, anon_sym_in, anon_sym_BANGin, - STATE(2455), 2, + ACTIONS(5134), 2, + anon_sym_is, + anon_sym_BANGis, + STATE(2448), 2, sym_line_comment, sym_block_comment, - ACTIONS(4998), 3, + ACTIONS(1793), 3, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_DOT_DOT_DOT, + ACTIONS(5106), 3, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5002), 3, + ACTIONS(5110), 3, anon_sym_SLASH, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(5006), 4, + ACTIONS(5118), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(5000), 5, + ACTIONS(5108), 5, anon_sym_STAR, anon_sym_PERCENT, anon_sym_LT_LT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - [61224] = 5, + [60617] = 24, ACTIONS(497), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, anon_sym_SLASH_STAR, - ACTIONS(1953), 1, + ACTIONS(4960), 1, + anon_sym_LPAREN, + ACTIONS(4962), 1, anon_sym_LBRACK, - STATE(2456), 2, + ACTIONS(4964), 1, + anon_sym_QMARK, + ACTIONS(4966), 1, + anon_sym_BANG, + ACTIONS(4970), 1, + anon_sym_as, + ACTIONS(4980), 1, + anon_sym_PLUS_PLUS, + ACTIONS(4982), 1, + anon_sym_DASH_DASH, + ACTIONS(4988), 1, + anon_sym_or, + ACTIONS(5046), 1, + anon_sym_AMP_AMP, + ACTIONS(5066), 1, + anon_sym_PIPE_PIPE, + STATE(2569), 1, + sym_or_block, + STATE(2570), 1, + sym_argument_list, + STATE(4070), 1, + sym_type_parameters, + ACTIONS(4958), 2, + anon_sym_DOT, + anon_sym_QMARK_DOT, + ACTIONS(4968), 2, + anon_sym_LBRACK2, + anon_sym_POUND_LBRACK, + ACTIONS(4990), 2, + anon_sym_is, + anon_sym_BANGis, + ACTIONS(5048), 2, + anon_sym_in, + anon_sym_BANGin, + STATE(2449), 2, sym_line_comment, sym_block_comment, - ACTIONS(1951), 41, + ACTIONS(3548), 4, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, anon_sym_SEMI, - anon_sym_DOT, - anon_sym_as, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, + ACTIONS(5036), 4, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, + anon_sym_CARET, + ACTIONS(5044), 6, anon_sym_LT, anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_LBRACK2, - anon_sym_CARET, + ACTIONS(5038), 8, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, anon_sym_AMP, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, + [60713] = 24, + ACTIONS(497), 1, + anon_sym_SLASH_SLASH, + ACTIONS(499), 1, + anon_sym_SLASH_STAR, + ACTIONS(4960), 1, + anon_sym_LPAREN, + ACTIONS(4962), 1, + anon_sym_LBRACK, + ACTIONS(4964), 1, + anon_sym_QMARK, + ACTIONS(4966), 1, + anon_sym_BANG, + ACTIONS(4970), 1, + anon_sym_as, + ACTIONS(4980), 1, + anon_sym_PLUS_PLUS, + ACTIONS(4982), 1, + anon_sym_DASH_DASH, + ACTIONS(4988), 1, + anon_sym_or, + ACTIONS(5046), 1, anon_sym_AMP_AMP, + ACTIONS(5066), 1, anon_sym_PIPE_PIPE, - anon_sym_or, + STATE(2569), 1, + sym_or_block, + STATE(2570), 1, + sym_argument_list, + STATE(4070), 1, + sym_type_parameters, + ACTIONS(4958), 2, + anon_sym_DOT, anon_sym_QMARK_DOT, + ACTIONS(4968), 2, + anon_sym_LBRACK2, anon_sym_POUND_LBRACK, + ACTIONS(4990), 2, anon_sym_is, anon_sym_BANGis, + ACTIONS(5048), 2, anon_sym_in, anon_sym_BANGin, - [61281] = 5, - ACTIONS(497), 1, - anon_sym_SLASH_SLASH, - ACTIONS(499), 1, - anon_sym_SLASH_STAR, - ACTIONS(2171), 1, - anon_sym_LBRACK, - STATE(2457), 2, + STATE(2450), 2, sym_line_comment, sym_block_comment, - ACTIONS(2173), 41, + ACTIONS(3552), 4, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, anon_sym_SEMI, - anon_sym_DOT, - anon_sym_as, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, + ACTIONS(5036), 4, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, + anon_sym_CARET, + ACTIONS(5044), 6, anon_sym_LT, anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_LBRACK2, - anon_sym_CARET, + ACTIONS(5038), 8, + anon_sym_STAR, + anon_sym_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, - [61338] = 5, - ACTIONS(497), 1, + [60809] = 16, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, - ACTIONS(499), 1, + ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(2157), 1, + ACTIONS(5090), 1, + anon_sym_DOT, + ACTIONS(5092), 1, + anon_sym_LPAREN, + ACTIONS(5094), 1, anon_sym_LBRACK, - STATE(2458), 2, + ACTIONS(5096), 1, + anon_sym_QMARK, + ACTIONS(5098), 1, + anon_sym_BANG, + ACTIONS(5100), 1, + anon_sym_LBRACK2, + ACTIONS(5102), 1, + anon_sym_QMARK_DOT, + ACTIONS(5104), 1, + anon_sym_POUND_LBRACK, + STATE(2698), 1, + sym_or_block, + STATE(2702), 1, + sym_argument_list, + STATE(4053), 1, + sym_type_parameters, + STATE(2451), 2, sym_line_comment, sym_block_comment, - ACTIONS(2159), 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(1785), 9, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - anon_sym_STAR, anon_sym_SLASH, - anon_sym_PERCENT, anon_sym_LT, anon_sym_GT, + anon_sym_AMP, + anon_sym_GT_GT, + anon_sym_DOT_DOT, + ACTIONS(1783), 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, - [61395] = 5, + [60889] = 5, ACTIONS(497), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, anon_sym_SLASH_STAR, - ACTIONS(2914), 1, + ACTIONS(2117), 1, anon_sym_LBRACK, - STATE(2459), 2, + STATE(2452), 2, sym_line_comment, sym_block_comment, - ACTIONS(2916), 41, + ACTIONS(2119), 41, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -243413,47 +243108,45 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [61452] = 5, - ACTIONS(497), 1, + [60946] = 5, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, - ACTIONS(499), 1, + ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(2471), 1, - anon_sym_LBRACK, - STATE(2460), 2, + STATE(2453), 2, sym_line_comment, sym_block_comment, - ACTIONS(2473), 41, - anon_sym_LF, - anon_sym_CR, - anon_sym_CR_LF, - anon_sym_SEMI, + ACTIONS(1813), 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(1811), 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, @@ -243461,90 +243154,98 @@ 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, - [61509] = 22, + [61003] = 28, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(4932), 1, + ACTIONS(4938), 1, anon_sym_LPAREN, - ACTIONS(4934), 1, + ACTIONS(4940), 1, anon_sym_LBRACK, - ACTIONS(4936), 1, + ACTIONS(4942), 1, anon_sym_QMARK, - ACTIONS(4938), 1, + ACTIONS(4944), 1, anon_sym_BANG, - ACTIONS(4940), 1, + ACTIONS(4946), 1, anon_sym_LBRACK2, - ACTIONS(4944), 1, + ACTIONS(4950), 1, anon_sym_POUND_LBRACK, - ACTIONS(5146), 1, + ACTIONS(4996), 1, + anon_sym_as, + ACTIONS(5012), 1, + anon_sym_PLUS_PLUS, + ACTIONS(5014), 1, + anon_sym_DASH_DASH, + ACTIONS(5016), 1, anon_sym_CARET, - ACTIONS(5148), 1, + ACTIONS(5018), 1, anon_sym_AMP_AMP, - STATE(2396), 1, - sym_or_block, - STATE(2397), 1, + ACTIONS(5020), 1, + anon_sym_PIPE_PIPE, + ACTIONS(5022), 1, + anon_sym_or, + STATE(2298), 1, sym_argument_list, - STATE(4127), 1, + STATE(2299), 1, + sym_or_block, + STATE(4251), 1, sym_type_parameters, - ACTIONS(4942), 2, + ACTIONS(4948), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - ACTIONS(5142), 2, + ACTIONS(5008), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(5150), 2, + ACTIONS(5024), 2, + anon_sym_is, + anon_sym_BANGis, + ACTIONS(5026), 2, anon_sym_in, anon_sym_BANGin, - STATE(2461), 2, + STATE(2454), 2, sym_line_comment, sym_block_comment, - ACTIONS(5136), 3, + ACTIONS(1771), 3, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_COLON_EQ, + ACTIONS(5002), 3, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5140), 3, + ACTIONS(5006), 3, anon_sym_SLASH, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(5144), 4, + ACTIONS(5010), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(5138), 5, + ACTIONS(5004), 5, anon_sym_STAR, anon_sym_PERCENT, anon_sym_LT_LT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(1783), 10, - anon_sym_SEMI, - anon_sym_as, - anon_sym_COMMA, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PIPE_PIPE, - anon_sym_or, - anon_sym_is, - anon_sym_BANGis, - anon_sym_COLON_EQ, - [61600] = 5, + [61106] = 5, ACTIONS(497), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, anon_sym_SLASH_STAR, - ACTIONS(2241), 1, + ACTIONS(1887), 1, anon_sym_LBRACK, - STATE(2462), 2, + STATE(2455), 2, sym_line_comment, sym_block_comment, - ACTIONS(2243), 41, + ACTIONS(1889), 41, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -243586,25 +243287,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [61657] = 5, + [61163] = 6, ACTIONS(497), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, anon_sym_SLASH_STAR, - ACTIONS(2770), 1, + ACTIONS(2222), 1, anon_sym_LBRACK, - STATE(2463), 2, + STATE(2456), 2, sym_line_comment, sym_block_comment, - ACTIONS(2772), 41, + ACTIONS(2217), 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(2219), 35, + anon_sym_DOT, + anon_sym_as, anon_sym_LPAREN, anon_sym_PIPE, anon_sym_PLUS, @@ -243638,21 +243340,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [61714] = 5, + [61222] = 6, ACTIONS(497), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, anon_sym_SLASH_STAR, - ACTIONS(2747), 1, + ACTIONS(1987), 1, + anon_sym_LBRACE, + ACTIONS(2674), 1, anon_sym_LBRACK, - STATE(2464), 2, + STATE(2457), 2, sym_line_comment, sym_block_comment, - ACTIONS(2749), 41, + ACTIONS(2676), 40, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, - anon_sym_SEMI, anon_sym_DOT, anon_sym_as, anon_sym_COMMA, @@ -243690,223 +243393,198 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [61771] = 6, - ACTIONS(497), 1, + [61281] = 30, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, - ACTIONS(499), 1, + ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(2256), 1, - anon_sym_LBRACK, - STATE(2465), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(2251), 6, - anon_sym_LF, - anon_sym_CR, - anon_sym_CR_LF, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_RBRACE, - ACTIONS(2253), 35, + ACTIONS(1795), 1, + anon_sym_DOT_DOT, + ACTIONS(5090), 1, anon_sym_DOT, - anon_sym_as, + ACTIONS(5092), 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(5094), 1, + anon_sym_LBRACK, + ACTIONS(5096), 1, anon_sym_QMARK, + ACTIONS(5098), 1, anon_sym_BANG, + ACTIONS(5100), 1, anon_sym_LBRACK2, + ACTIONS(5102), 1, + anon_sym_QMARK_DOT, + ACTIONS(5104), 1, + anon_sym_POUND_LBRACK, + ACTIONS(5124), 1, + anon_sym_as, + ACTIONS(5126), 1, + anon_sym_PLUS_PLUS, + ACTIONS(5128), 1, + anon_sym_DASH_DASH, + ACTIONS(5132), 1, + anon_sym_or, + ACTIONS(5146), 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(5148), 1, anon_sym_AMP_AMP, + ACTIONS(5150), 1, anon_sym_PIPE_PIPE, - anon_sym_or, - anon_sym_QMARK_DOT, - anon_sym_POUND_LBRACK, + STATE(2698), 1, + sym_or_block, + STATE(2702), 1, + sym_argument_list, + STATE(4053), 1, + sym_type_parameters, + ACTIONS(1793), 2, + anon_sym_LBRACE, + anon_sym_DOT_DOT_DOT, + ACTIONS(5134), 2, anon_sym_is, anon_sym_BANGis, + ACTIONS(5142), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(5152), 2, anon_sym_in, anon_sym_BANGin, - [61830] = 5, - ACTIONS(497), 1, - anon_sym_SLASH_SLASH, - ACTIONS(499), 1, - anon_sym_SLASH_STAR, - ACTIONS(2475), 1, - anon_sym_LBRACK, - STATE(2466), 2, + STATE(2458), 2, sym_line_comment, sym_block_comment, - ACTIONS(2477), 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(5136), 3, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - anon_sym_STAR, + ACTIONS(5140), 3, anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_LT, - anon_sym_GT, + anon_sym_AMP, + anon_sym_GT_GT, + ACTIONS(5144), 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(5138), 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, - [61887] = 30, + [61388] = 30, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(1773), 1, - anon_sym_DOT_DOT, - ACTIONS(5068), 1, - anon_sym_DOT, - ACTIONS(5070), 1, + ACTIONS(3484), 1, + anon_sym_SEMI, + ACTIONS(4938), 1, anon_sym_LPAREN, - ACTIONS(5072), 1, + ACTIONS(4940), 1, anon_sym_LBRACK, - ACTIONS(5074), 1, + ACTIONS(4942), 1, anon_sym_QMARK, - ACTIONS(5076), 1, + ACTIONS(4944), 1, anon_sym_BANG, - ACTIONS(5078), 1, + ACTIONS(4946), 1, anon_sym_LBRACK2, - ACTIONS(5080), 1, - anon_sym_QMARK_DOT, - ACTIONS(5082), 1, + ACTIONS(4950), 1, anon_sym_POUND_LBRACK, - ACTIONS(5122), 1, + ACTIONS(4996), 1, anon_sym_as, - ACTIONS(5124), 1, + ACTIONS(5012), 1, anon_sym_PLUS_PLUS, - ACTIONS(5126), 1, + ACTIONS(5014), 1, anon_sym_DASH_DASH, - ACTIONS(5130), 1, + ACTIONS(5022), 1, anon_sym_or, - ACTIONS(5162), 1, + ACTIONS(5154), 1, + anon_sym_COMMA, + ACTIONS(5166), 1, anon_sym_CARET, - ACTIONS(5164), 1, + ACTIONS(5168), 1, anon_sym_AMP_AMP, - ACTIONS(5166), 1, + ACTIONS(5170), 1, anon_sym_PIPE_PIPE, - STATE(2736), 1, - sym_or_block, - STATE(2742), 1, + STATE(2298), 1, sym_argument_list, - STATE(4112), 1, + STATE(2299), 1, + sym_or_block, + STATE(3948), 1, + aux_sym_strictly_expression_list_repeat1, + STATE(4251), 1, sym_type_parameters, - ACTIONS(1771), 2, - anon_sym_LBRACE, - anon_sym_DOT_DOT_DOT, - ACTIONS(5132), 2, + ACTIONS(4948), 2, + anon_sym_DOT, + anon_sym_QMARK_DOT, + ACTIONS(5024), 2, anon_sym_is, anon_sym_BANGis, - ACTIONS(5158), 2, + ACTIONS(5162), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(5168), 2, + ACTIONS(5172), 2, anon_sym_in, anon_sym_BANGin, - STATE(2467), 2, + STATE(2459), 2, sym_line_comment, sym_block_comment, - ACTIONS(5152), 3, + ACTIONS(5156), 3, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5156), 3, + ACTIONS(5160), 3, anon_sym_SLASH, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(5160), 4, + ACTIONS(5164), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(5154), 5, + ACTIONS(5158), 5, anon_sym_STAR, anon_sym_PERCENT, anon_sym_LT_LT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - [61994] = 21, + [61495] = 23, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(4932), 1, + ACTIONS(1765), 1, + anon_sym_DOT_DOT, + ACTIONS(5090), 1, + anon_sym_DOT, + ACTIONS(5092), 1, anon_sym_LPAREN, - ACTIONS(4934), 1, + ACTIONS(5094), 1, anon_sym_LBRACK, - ACTIONS(4936), 1, + ACTIONS(5096), 1, anon_sym_QMARK, - ACTIONS(4938), 1, + ACTIONS(5098), 1, anon_sym_BANG, - ACTIONS(4940), 1, + ACTIONS(5100), 1, anon_sym_LBRACK2, - ACTIONS(4944), 1, + ACTIONS(5102), 1, + anon_sym_QMARK_DOT, + ACTIONS(5104), 1, anon_sym_POUND_LBRACK, ACTIONS(5146), 1, anon_sym_CARET, - STATE(2396), 1, + STATE(2698), 1, sym_or_block, - STATE(2397), 1, + STATE(2702), 1, sym_argument_list, - STATE(4127), 1, + STATE(4053), 1, sym_type_parameters, - ACTIONS(4942), 2, - anon_sym_DOT, - anon_sym_QMARK_DOT, ACTIONS(5142), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(5150), 2, + ACTIONS(5152), 2, anon_sym_in, anon_sym_BANGin, - STATE(2468), 2, + STATE(2460), 2, sym_line_comment, sym_block_comment, ACTIONS(5136), 3, @@ -243928,10 +243606,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(1783), 11, - anon_sym_SEMI, + ACTIONS(1763), 10, anon_sym_as, - anon_sym_COMMA, + anon_sym_LBRACE, + anon_sym_DOT_DOT_DOT, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_AMP_AMP, @@ -243939,18 +243617,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_or, anon_sym_is, anon_sym_BANGis, - anon_sym_COLON_EQ, - [62083] = 5, + [61588] = 5, ACTIONS(497), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, anon_sym_SLASH_STAR, - ACTIONS(3052), 1, + ACTIONS(2295), 1, anon_sym_LBRACK, - STATE(2469), 2, + STATE(2461), 2, sym_line_comment, sym_block_comment, - ACTIONS(3054), 41, + ACTIONS(2297), 41, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -243992,17 +243669,149 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [62140] = 5, + [61645] = 20, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(5090), 1, + anon_sym_DOT, + ACTIONS(5092), 1, + anon_sym_LPAREN, + ACTIONS(5094), 1, + anon_sym_LBRACK, + ACTIONS(5096), 1, + anon_sym_QMARK, + ACTIONS(5098), 1, + anon_sym_BANG, + ACTIONS(5100), 1, + anon_sym_LBRACK2, + ACTIONS(5102), 1, + anon_sym_QMARK_DOT, + ACTIONS(5104), 1, + anon_sym_POUND_LBRACK, + ACTIONS(5146), 1, + anon_sym_CARET, + STATE(2698), 1, + sym_or_block, + STATE(2702), 1, + sym_argument_list, + STATE(4053), 1, + sym_type_parameters, + STATE(2462), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(1765), 3, + anon_sym_LT, + anon_sym_GT, + anon_sym_DOT_DOT, + ACTIONS(5136), 3, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(5140), 3, + anon_sym_SLASH, + anon_sym_AMP, + anon_sym_GT_GT, + ACTIONS(5138), 5, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_AMP_CARET, + ACTIONS(1763), 16, + anon_sym_as, + anon_sym_LBRACE, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_DOT_DOT_DOT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_or, + anon_sym_is, + anon_sym_BANGis, + anon_sym_in, + anon_sym_BANGin, + [61732] = 18, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(5090), 1, + anon_sym_DOT, + ACTIONS(5092), 1, + anon_sym_LPAREN, + ACTIONS(5094), 1, + anon_sym_LBRACK, + ACTIONS(5096), 1, + anon_sym_QMARK, + ACTIONS(5098), 1, + anon_sym_BANG, + ACTIONS(5100), 1, + anon_sym_LBRACK2, + ACTIONS(5102), 1, + anon_sym_QMARK_DOT, + ACTIONS(5104), 1, + anon_sym_POUND_LBRACK, + STATE(2698), 1, + sym_or_block, + STATE(2702), 1, + sym_argument_list, + STATE(4053), 1, + sym_type_parameters, + STATE(2463), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(5140), 3, + anon_sym_SLASH, + anon_sym_AMP, + anon_sym_GT_GT, + ACTIONS(5138), 5, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_AMP_CARET, + ACTIONS(1765), 6, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT, + anon_sym_GT, + anon_sym_DOT_DOT, + ACTIONS(1763), 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, + [61815] = 5, ACTIONS(497), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, anon_sym_SLASH_STAR, - ACTIONS(2743), 1, + ACTIONS(2878), 1, anon_sym_LBRACK, - STATE(2470), 2, + STATE(2464), 2, sym_line_comment, sym_block_comment, - ACTIONS(2745), 41, + ACTIONS(2880), 41, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -244044,17 +243853,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [62197] = 5, + [61872] = 5, ACTIONS(497), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, anon_sym_SLASH_STAR, - ACTIONS(2679), 1, + ACTIONS(2804), 1, anon_sym_LBRACK, - STATE(2471), 2, + STATE(2465), 2, sym_line_comment, sym_block_comment, - ACTIONS(2681), 41, + ACTIONS(2806), 41, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -244096,185 +243905,110 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [62254] = 18, - ACTIONS(3), 1, + [61929] = 6, + ACTIONS(497), 1, anon_sym_SLASH_SLASH, - ACTIONS(5), 1, + ACTIONS(499), 1, anon_sym_SLASH_STAR, - ACTIONS(5068), 1, - anon_sym_DOT, - ACTIONS(5070), 1, - anon_sym_LPAREN, - ACTIONS(5072), 1, + ACTIONS(1807), 1, anon_sym_LBRACK, - ACTIONS(5074), 1, - anon_sym_QMARK, - ACTIONS(5076), 1, - anon_sym_BANG, - ACTIONS(5078), 1, - anon_sym_LBRACK2, - ACTIONS(5080), 1, - anon_sym_QMARK_DOT, - ACTIONS(5082), 1, - anon_sym_POUND_LBRACK, - STATE(2736), 1, - sym_or_block, - STATE(2742), 1, - sym_argument_list, - STATE(4112), 1, - sym_type_parameters, - STATE(2472), 2, + ACTIONS(1987), 1, + anon_sym_LBRACE, + STATE(2466), 2, sym_line_comment, sym_block_comment, - ACTIONS(5156), 3, - anon_sym_SLASH, - anon_sym_AMP, - anon_sym_GT_GT, - ACTIONS(5154), 5, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - ACTIONS(1785), 6, + ACTIONS(1809), 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_DOT_DOT, - ACTIONS(1783), 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, - [62337] = 19, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_STAR, - ACTIONS(4932), 1, - anon_sym_LPAREN, - ACTIONS(4934), 1, - anon_sym_LBRACK, - ACTIONS(4936), 1, anon_sym_QMARK, - ACTIONS(4938), 1, anon_sym_BANG, - ACTIONS(4940), 1, anon_sym_LBRACK2, - ACTIONS(4944), 1, - anon_sym_POUND_LBRACK, - ACTIONS(5146), 1, anon_sym_CARET, - STATE(2396), 1, - sym_or_block, - STATE(2397), 1, - sym_argument_list, - STATE(4127), 1, - sym_type_parameters, - ACTIONS(1785), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(4942), 2, - anon_sym_DOT, - anon_sym_QMARK_DOT, - STATE(2473), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(5136), 3, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(5140), 3, - anon_sym_SLASH, anon_sym_AMP, - anon_sym_GT_GT, - ACTIONS(5138), 5, - anon_sym_STAR, - anon_sym_PERCENT, anon_sym_LT_LT, + anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(1783), 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_QMARK_DOT, + anon_sym_POUND_LBRACK, anon_sym_is, anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - anon_sym_COLON_EQ, - [62422] = 17, + [61988] = 19, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(4932), 1, + ACTIONS(4938), 1, anon_sym_LPAREN, - ACTIONS(4934), 1, + ACTIONS(4940), 1, anon_sym_LBRACK, - ACTIONS(4936), 1, + ACTIONS(4942), 1, anon_sym_QMARK, - ACTIONS(4938), 1, + ACTIONS(4944), 1, anon_sym_BANG, - ACTIONS(4940), 1, + ACTIONS(4946), 1, anon_sym_LBRACK2, - ACTIONS(4944), 1, + ACTIONS(4950), 1, anon_sym_POUND_LBRACK, - STATE(2396), 1, - sym_or_block, - STATE(2397), 1, + ACTIONS(5016), 1, + anon_sym_CARET, + STATE(2298), 1, sym_argument_list, - STATE(4127), 1, + STATE(2299), 1, + sym_or_block, + STATE(4251), 1, sym_type_parameters, - ACTIONS(4942), 2, + ACTIONS(1781), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(4948), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - STATE(2474), 2, + STATE(2467), 2, sym_line_comment, sym_block_comment, - ACTIONS(5140), 3, - anon_sym_SLASH, - anon_sym_AMP, - anon_sym_GT_GT, - ACTIONS(1785), 5, + ACTIONS(5002), 3, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(5138), 5, + ACTIONS(5006), 3, + anon_sym_SLASH, + anon_sym_AMP, + anon_sym_GT_GT, + ACTIONS(5004), 5, anon_sym_STAR, anon_sym_PERCENT, anon_sym_LT_LT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(1783), 18, - anon_sym_SEMI, + ACTIONS(1779), 17, anon_sym_as, + anon_sym_LBRACE, anon_sym_COMMA, anon_sym_EQ_EQ, anon_sym_BANG_EQ, @@ -244282,7 +244016,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_CARET, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_or, @@ -244291,17 +244024,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_in, anon_sym_BANGin, anon_sym_COLON_EQ, - [62503] = 5, + [62073] = 5, ACTIONS(497), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, anon_sym_SLASH_STAR, - ACTIONS(2665), 1, + ACTIONS(2530), 1, anon_sym_LBRACK, - STATE(2475), 2, + STATE(2468), 2, sym_line_comment, sym_block_comment, - ACTIONS(2667), 41, + ACTIONS(2532), 41, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -244343,17 +244076,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [62560] = 5, + [62130] = 5, ACTIONS(497), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, anon_sym_SLASH_STAR, - ACTIONS(2211), 1, + ACTIONS(2511), 1, anon_sym_LBRACK, - STATE(2476), 2, + STATE(2469), 2, sym_line_comment, sym_block_comment, - ACTIONS(2213), 41, + ACTIONS(2513), 41, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -244395,17 +244128,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [62617] = 5, + [62187] = 5, ACTIONS(497), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, anon_sym_SLASH_STAR, - ACTIONS(2287), 1, + ACTIONS(2520), 1, anon_sym_LBRACK, - STATE(2477), 2, + STATE(2470), 2, sym_line_comment, sym_block_comment, - ACTIONS(2289), 41, + ACTIONS(2522), 41, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -244447,83 +244180,69 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [62674] = 19, - ACTIONS(3), 1, + [62244] = 5, + ACTIONS(497), 1, anon_sym_SLASH_SLASH, - ACTIONS(5), 1, + ACTIONS(499), 1, anon_sym_SLASH_STAR, - ACTIONS(4932), 1, - anon_sym_LPAREN, - ACTIONS(4934), 1, + ACTIONS(2507), 1, anon_sym_LBRACK, - ACTIONS(4936), 1, - anon_sym_QMARK, - ACTIONS(4938), 1, - anon_sym_BANG, - ACTIONS(4940), 1, - anon_sym_LBRACK2, - ACTIONS(4944), 1, - anon_sym_POUND_LBRACK, - ACTIONS(5146), 1, - anon_sym_CARET, - STATE(2396), 1, - sym_or_block, - STATE(2397), 1, - sym_argument_list, - STATE(4127), 1, - sym_type_parameters, - ACTIONS(1769), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(4942), 2, - anon_sym_DOT, - anon_sym_QMARK_DOT, - STATE(2478), 2, + STATE(2471), 2, sym_line_comment, sym_block_comment, - ACTIONS(5136), 3, + 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, - ACTIONS(5140), 3, - anon_sym_SLASH, - anon_sym_AMP, - anon_sym_GT_GT, - ACTIONS(5138), 5, anon_sym_STAR, + anon_sym_SLASH, anon_sym_PERCENT, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - ACTIONS(1767), 17, - anon_sym_SEMI, - anon_sym_as, - anon_sym_COMMA, + anon_sym_LT, + anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, + anon_sym_QMARK, + anon_sym_BANG, + anon_sym_LBRACK2, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_GT_GT_GT, + anon_sym_AMP_CARET, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_or, + anon_sym_QMARK_DOT, + anon_sym_POUND_LBRACK, anon_sym_is, anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - anon_sym_COLON_EQ, - [62759] = 5, + [62301] = 5, ACTIONS(497), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, anon_sym_SLASH_STAR, - ACTIONS(2759), 1, + ACTIONS(1879), 1, anon_sym_LBRACK, - STATE(2479), 2, + STATE(2472), 2, sym_line_comment, sym_block_comment, - ACTIONS(2761), 41, + ACTIONS(1881), 41, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -244565,92 +244284,121 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [62816] = 28, - ACTIONS(3), 1, + [62358] = 5, + ACTIONS(497), 1, anon_sym_SLASH_SLASH, - ACTIONS(5), 1, + ACTIONS(499), 1, anon_sym_SLASH_STAR, - ACTIONS(4932), 1, - anon_sym_LPAREN, - ACTIONS(4934), 1, + ACTIONS(2141), 1, anon_sym_LBRACK, - ACTIONS(4936), 1, - anon_sym_QMARK, - ACTIONS(4938), 1, - anon_sym_BANG, - ACTIONS(4940), 1, - anon_sym_LBRACK2, - ACTIONS(4944), 1, - anon_sym_POUND_LBRACK, - ACTIONS(4994), 1, + STATE(2473), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(2143), 41, + anon_sym_LF, + anon_sym_CR, + anon_sym_CR_LF, + anon_sym_SEMI, + anon_sym_DOT, anon_sym_as, - ACTIONS(5008), 1, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_LT, + anon_sym_GT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, anon_sym_PLUS_PLUS, - ACTIONS(5010), 1, anon_sym_DASH_DASH, - ACTIONS(5018), 1, - anon_sym_or, - ACTIONS(5146), 1, + anon_sym_QMARK, + anon_sym_BANG, + anon_sym_LBRACK2, anon_sym_CARET, - ACTIONS(5148), 1, + anon_sym_AMP, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_GT_GT_GT, + anon_sym_AMP_CARET, anon_sym_AMP_AMP, - ACTIONS(5170), 1, anon_sym_PIPE_PIPE, - STATE(2396), 1, - sym_or_block, - STATE(2397), 1, - sym_argument_list, - STATE(4127), 1, - sym_type_parameters, - ACTIONS(4942), 2, - anon_sym_DOT, + anon_sym_or, anon_sym_QMARK_DOT, - ACTIONS(5020), 2, + anon_sym_POUND_LBRACK, anon_sym_is, anon_sym_BANGis, - ACTIONS(5142), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(5150), 2, anon_sym_in, anon_sym_BANGin, - STATE(2480), 2, + [62415] = 5, + ACTIONS(497), 1, + anon_sym_SLASH_SLASH, + ACTIONS(499), 1, + anon_sym_SLASH_STAR, + ACTIONS(2231), 1, + anon_sym_LBRACK, + STATE(2474), 2, sym_line_comment, sym_block_comment, - ACTIONS(3524), 3, + ACTIONS(2233), 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(5136), 3, + anon_sym_RBRACE, + anon_sym_LPAREN, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5140), 3, + anon_sym_STAR, anon_sym_SLASH, - anon_sym_AMP, - anon_sym_GT_GT, - ACTIONS(5144), 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(5138), 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, - [62919] = 5, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_or, + anon_sym_QMARK_DOT, + anon_sym_POUND_LBRACK, + anon_sym_is, + anon_sym_BANGis, + anon_sym_in, + anon_sym_BANGin, + [62472] = 5, ACTIONS(497), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, anon_sym_SLASH_STAR, - ACTIONS(2279), 1, + ACTIONS(2844), 1, anon_sym_LBRACK, - STATE(2481), 2, + STATE(2475), 2, sym_line_comment, sym_block_comment, - ACTIONS(2281), 41, + ACTIONS(2846), 41, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -244692,17 +244440,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [62976] = 5, + [62529] = 5, ACTIONS(497), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, anon_sym_SLASH_STAR, - ACTIONS(2231), 1, + ACTIONS(3042), 1, anon_sym_LBRACK, - STATE(2482), 2, + STATE(2476), 2, sym_line_comment, sym_block_comment, - ACTIONS(2233), 41, + ACTIONS(3044), 41, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -244744,17 +244492,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [63033] = 5, + [62586] = 5, ACTIONS(497), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, anon_sym_SLASH_STAR, - ACTIONS(2653), 1, + ACTIONS(3052), 1, anon_sym_LBRACK, - STATE(2483), 2, + STATE(2477), 2, sym_line_comment, sym_block_comment, - ACTIONS(2655), 41, + ACTIONS(3054), 41, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -244796,17 +244544,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [63090] = 5, + [62643] = 5, ACTIONS(497), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, anon_sym_SLASH_STAR, - ACTIONS(2645), 1, + ACTIONS(2726), 1, anon_sym_LBRACK, - STATE(2484), 2, + STATE(2478), 2, sym_line_comment, sym_block_comment, - ACTIONS(2647), 41, + ACTIONS(2728), 41, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -244848,17 +244596,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [63147] = 5, + [62700] = 5, ACTIONS(497), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, anon_sym_SLASH_STAR, - ACTIONS(2227), 1, + ACTIONS(2856), 1, anon_sym_LBRACK, - STATE(2485), 2, + STATE(2479), 2, sym_line_comment, sym_block_comment, - ACTIONS(2229), 41, + ACTIONS(2858), 41, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -244900,19 +244648,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [63204] = 6, + [62757] = 5, ACTIONS(497), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, anon_sym_SLASH_STAR, - ACTIONS(2523), 1, + ACTIONS(2852), 1, anon_sym_LBRACK, - ACTIONS(5172), 1, - anon_sym_BANG, - STATE(2486), 2, + STATE(2480), 2, sym_line_comment, sym_block_comment, - ACTIONS(2525), 40, + ACTIONS(2854), 41, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -244937,6 +244683,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, @@ -244953,17 +244700,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [63263] = 5, + [62814] = 5, ACTIONS(497), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, anon_sym_SLASH_STAR, - ACTIONS(2796), 1, + ACTIONS(2694), 1, anon_sym_LBRACK, - STATE(2487), 2, + STATE(2481), 2, sym_line_comment, sym_block_comment, - ACTIONS(2798), 41, + ACTIONS(2696), 41, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -245005,84 +244752,69 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [63320] = 20, - ACTIONS(3), 1, + [62871] = 5, + ACTIONS(497), 1, anon_sym_SLASH_SLASH, - ACTIONS(5), 1, + ACTIONS(499), 1, anon_sym_SLASH_STAR, - ACTIONS(5068), 1, - anon_sym_DOT, - ACTIONS(5070), 1, - anon_sym_LPAREN, - ACTIONS(5072), 1, + ACTIONS(2503), 1, anon_sym_LBRACK, - ACTIONS(5074), 1, - anon_sym_QMARK, - ACTIONS(5076), 1, - anon_sym_BANG, - ACTIONS(5078), 1, - anon_sym_LBRACK2, - ACTIONS(5080), 1, - anon_sym_QMARK_DOT, - ACTIONS(5082), 1, - anon_sym_POUND_LBRACK, - ACTIONS(5162), 1, - anon_sym_CARET, - STATE(2736), 1, - sym_or_block, - STATE(2742), 1, - sym_argument_list, - STATE(4112), 1, - sym_type_parameters, - STATE(2488), 2, + STATE(2482), 2, sym_line_comment, sym_block_comment, - ACTIONS(1785), 3, - anon_sym_LT, - anon_sym_GT, - anon_sym_DOT_DOT, - ACTIONS(5152), 3, + 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, - ACTIONS(5156), 3, - anon_sym_SLASH, - anon_sym_AMP, - anon_sym_GT_GT, - ACTIONS(5154), 5, anon_sym_STAR, + anon_sym_SLASH, anon_sym_PERCENT, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - ACTIONS(1783), 16, - anon_sym_as, - anon_sym_LBRACE, + anon_sym_LT, + anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, + anon_sym_QMARK, + anon_sym_BANG, + anon_sym_LBRACK2, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_GT_GT_GT, + anon_sym_AMP_CARET, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_or, + anon_sym_QMARK_DOT, + anon_sym_POUND_LBRACK, anon_sym_is, anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [63407] = 5, + [62928] = 5, ACTIONS(497), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, anon_sym_SLASH_STAR, - ACTIONS(2776), 1, + ACTIONS(2536), 1, anon_sym_LBRACK, - STATE(2489), 2, + STATE(2483), 2, sym_line_comment, sym_block_comment, - ACTIONS(2778), 41, + ACTIONS(2538), 41, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -245124,17 +244856,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [63464] = 5, + [62985] = 5, ACTIONS(497), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, anon_sym_SLASH_STAR, - ACTIONS(2906), 1, + ACTIONS(2465), 1, anon_sym_LBRACK, - STATE(2490), 2, + STATE(2484), 2, sym_line_comment, sym_block_comment, - ACTIONS(2908), 41, + ACTIONS(2467), 41, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -245176,17 +244908,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [63521] = 5, + [63042] = 5, ACTIONS(497), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, anon_sym_SLASH_STAR, - ACTIONS(2766), 1, + ACTIONS(2461), 1, anon_sym_LBRACK, - STATE(2491), 2, + STATE(2485), 2, sym_line_comment, sym_block_comment, - ACTIONS(2768), 41, + ACTIONS(2463), 41, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -245228,17 +244960,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [63578] = 5, + [63099] = 5, ACTIONS(497), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, anon_sym_SLASH_STAR, - ACTIONS(2784), 1, + ACTIONS(2313), 1, anon_sym_LBRACK, - STATE(2492), 2, + STATE(2486), 2, sym_line_comment, sym_block_comment, - ACTIONS(2786), 41, + ACTIONS(2315), 41, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -245280,22 +245012,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [63635] = 5, + [63156] = 6, ACTIONS(497), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, anon_sym_SLASH_STAR, - ACTIONS(1903), 1, + ACTIONS(2511), 1, anon_sym_LBRACK, - STATE(2493), 2, + ACTIONS(2515), 1, + anon_sym_DOT, + STATE(2487), 2, sym_line_comment, sym_block_comment, - ACTIONS(1905), 41, + ACTIONS(2513), 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, @@ -245332,99 +245065,96 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [63692] = 30, + [63215] = 28, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(1781), 1, - anon_sym_DOT_DOT, - ACTIONS(5068), 1, - anon_sym_DOT, - ACTIONS(5070), 1, + ACTIONS(4938), 1, anon_sym_LPAREN, - ACTIONS(5072), 1, + ACTIONS(4940), 1, anon_sym_LBRACK, - ACTIONS(5074), 1, + ACTIONS(4942), 1, anon_sym_QMARK, - ACTIONS(5076), 1, + ACTIONS(4944), 1, anon_sym_BANG, - ACTIONS(5078), 1, + ACTIONS(4946), 1, anon_sym_LBRACK2, - ACTIONS(5080), 1, - anon_sym_QMARK_DOT, - ACTIONS(5082), 1, + ACTIONS(4950), 1, anon_sym_POUND_LBRACK, - ACTIONS(5122), 1, + ACTIONS(4996), 1, anon_sym_as, - ACTIONS(5124), 1, + ACTIONS(5012), 1, anon_sym_PLUS_PLUS, - ACTIONS(5126), 1, + ACTIONS(5014), 1, anon_sym_DASH_DASH, - ACTIONS(5130), 1, + ACTIONS(5022), 1, anon_sym_or, - ACTIONS(5162), 1, + ACTIONS(5166), 1, anon_sym_CARET, - ACTIONS(5164), 1, + ACTIONS(5168), 1, anon_sym_AMP_AMP, - ACTIONS(5166), 1, + ACTIONS(5170), 1, anon_sym_PIPE_PIPE, - STATE(2736), 1, - sym_or_block, - STATE(2742), 1, + STATE(2298), 1, sym_argument_list, - STATE(4112), 1, + STATE(2299), 1, + sym_or_block, + STATE(4251), 1, sym_type_parameters, - ACTIONS(1779), 2, - anon_sym_LBRACE, - anon_sym_DOT_DOT_DOT, - ACTIONS(5132), 2, + ACTIONS(4948), 2, + anon_sym_DOT, + anon_sym_QMARK_DOT, + ACTIONS(5024), 2, anon_sym_is, anon_sym_BANGis, - ACTIONS(5158), 2, + ACTIONS(5162), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(5168), 2, + ACTIONS(5172), 2, anon_sym_in, anon_sym_BANGin, - STATE(2494), 2, + STATE(2488), 2, sym_line_comment, sym_block_comment, - ACTIONS(5152), 3, + ACTIONS(3522), 3, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_COLON_EQ, + ACTIONS(5156), 3, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5156), 3, + ACTIONS(5160), 3, anon_sym_SLASH, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(5160), 4, + ACTIONS(5164), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(5154), 5, + ACTIONS(5158), 5, anon_sym_STAR, anon_sym_PERCENT, anon_sym_LT_LT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - [63799] = 6, + [63318] = 5, ACTIONS(497), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, anon_sym_SLASH_STAR, - ACTIONS(1915), 1, + ACTIONS(3060), 1, anon_sym_LBRACK, - ACTIONS(1951), 1, - anon_sym_LBRACE, - STATE(2495), 2, + STATE(2489), 2, sym_line_comment, sym_block_comment, - ACTIONS(1917), 40, + ACTIONS(3062), 41, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, + anon_sym_SEMI, anon_sym_DOT, anon_sym_as, anon_sym_COMMA, @@ -245462,17 +245192,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [63858] = 5, + [63375] = 5, ACTIONS(497), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, anon_sym_SLASH_STAR, - ACTIONS(2902), 1, + ACTIONS(2201), 1, anon_sym_LBRACK, - STATE(2496), 2, + STATE(2490), 2, sym_line_comment, sym_block_comment, - ACTIONS(2904), 41, + ACTIONS(2203), 41, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -245514,17 +245244,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [63915] = 5, + [63432] = 5, ACTIONS(497), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, anon_sym_SLASH_STAR, - ACTIONS(2689), 1, + ACTIONS(2209), 1, anon_sym_LBRACK, - STATE(2497), 2, + STATE(2491), 2, sym_line_comment, sym_block_comment, - ACTIONS(2691), 41, + ACTIONS(2211), 41, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -245566,17 +245296,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [63972] = 5, + [63489] = 5, ACTIONS(497), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, anon_sym_SLASH_STAR, - ACTIONS(2788), 1, + ACTIONS(2123), 1, anon_sym_LBRACK, - STATE(2498), 2, + STATE(2492), 2, sym_line_comment, sym_block_comment, - ACTIONS(2790), 41, + ACTIONS(2125), 41, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -245618,17 +245348,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [64029] = 5, + [63546] = 5, ACTIONS(497), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, anon_sym_SLASH_STAR, - ACTIONS(2808), 1, + ACTIONS(2766), 1, anon_sym_LBRACK, - STATE(2499), 2, + STATE(2493), 2, sym_line_comment, sym_block_comment, - ACTIONS(2810), 41, + ACTIONS(2768), 41, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -245670,17 +245400,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [64086] = 5, + [63603] = 5, ACTIONS(497), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, anon_sym_SLASH_STAR, - ACTIONS(2675), 1, + ACTIONS(2301), 1, anon_sym_LBRACK, - STATE(2500), 2, + STATE(2494), 2, sym_line_comment, sym_block_comment, - ACTIONS(2677), 41, + ACTIONS(2303), 41, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -245722,212 +245452,348 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [64143] = 28, + [63660] = 19, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(4932), 1, + ACTIONS(4938), 1, anon_sym_LPAREN, - ACTIONS(4934), 1, + ACTIONS(4940), 1, anon_sym_LBRACK, - ACTIONS(4936), 1, + ACTIONS(4942), 1, anon_sym_QMARK, - ACTIONS(4938), 1, + ACTIONS(4944), 1, anon_sym_BANG, - ACTIONS(4940), 1, + ACTIONS(4946), 1, anon_sym_LBRACK2, - ACTIONS(4944), 1, + ACTIONS(4950), 1, anon_sym_POUND_LBRACK, - ACTIONS(4994), 1, - anon_sym_as, - ACTIONS(5008), 1, - anon_sym_PLUS_PLUS, - ACTIONS(5010), 1, - anon_sym_DASH_DASH, - ACTIONS(5012), 1, + ACTIONS(5166), 1, anon_sym_CARET, - ACTIONS(5014), 1, - anon_sym_AMP_AMP, - ACTIONS(5016), 1, - anon_sym_PIPE_PIPE, - ACTIONS(5018), 1, - anon_sym_or, - STATE(2396), 1, - sym_or_block, - STATE(2397), 1, + STATE(2298), 1, sym_argument_list, - STATE(4127), 1, + STATE(2299), 1, + sym_or_block, + STATE(4251), 1, sym_type_parameters, - ACTIONS(4942), 2, - anon_sym_DOT, - anon_sym_QMARK_DOT, - ACTIONS(5004), 2, + ACTIONS(1781), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(5020), 2, - anon_sym_is, - anon_sym_BANGis, - ACTIONS(5022), 2, - anon_sym_in, - anon_sym_BANGin, - STATE(2501), 2, + ACTIONS(4948), 2, + anon_sym_DOT, + anon_sym_QMARK_DOT, + STATE(2495), 2, sym_line_comment, sym_block_comment, - ACTIONS(1771), 3, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_COLON_EQ, - ACTIONS(4998), 3, + ACTIONS(5156), 3, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5002), 3, + ACTIONS(5160), 3, anon_sym_SLASH, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(5006), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(5000), 5, + ACTIONS(5158), 5, anon_sym_STAR, anon_sym_PERCENT, anon_sym_LT_LT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - [64246] = 28, + ACTIONS(1779), 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, + [63745] = 17, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(4932), 1, + ACTIONS(4938), 1, anon_sym_LPAREN, - ACTIONS(4934), 1, + ACTIONS(4940), 1, anon_sym_LBRACK, - ACTIONS(4936), 1, + ACTIONS(4942), 1, anon_sym_QMARK, - ACTIONS(4938), 1, + ACTIONS(4944), 1, anon_sym_BANG, - ACTIONS(4940), 1, + ACTIONS(4946), 1, anon_sym_LBRACK2, - ACTIONS(4944), 1, + ACTIONS(4950), 1, anon_sym_POUND_LBRACK, - ACTIONS(4994), 1, + STATE(2298), 1, + sym_argument_list, + STATE(2299), 1, + sym_or_block, + STATE(4251), 1, + sym_type_parameters, + ACTIONS(4948), 2, + anon_sym_DOT, + anon_sym_QMARK_DOT, + STATE(2496), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(5160), 3, + anon_sym_SLASH, + anon_sym_AMP, + anon_sym_GT_GT, + ACTIONS(1765), 5, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(5158), 5, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_AMP_CARET, + ACTIONS(1763), 18, + anon_sym_SEMI, anon_sym_as, - ACTIONS(5008), 1, + anon_sym_COMMA, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, anon_sym_PLUS_PLUS, - ACTIONS(5010), 1, anon_sym_DASH_DASH, - ACTIONS(5012), 1, anon_sym_CARET, - ACTIONS(5014), 1, anon_sym_AMP_AMP, - ACTIONS(5016), 1, anon_sym_PIPE_PIPE, - ACTIONS(5018), 1, anon_sym_or, - STATE(2396), 1, - sym_or_block, - STATE(2397), 1, - sym_argument_list, - STATE(4127), 1, - sym_type_parameters, - ACTIONS(4942), 2, + anon_sym_is, + anon_sym_BANGis, + anon_sym_in, + anon_sym_BANGin, + anon_sym_COLON_EQ, + [63826] = 5, + ACTIONS(497), 1, + anon_sym_SLASH_SLASH, + ACTIONS(499), 1, + anon_sym_SLASH_STAR, + ACTIONS(2309), 1, + anon_sym_LBRACK, + STATE(2497), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(2311), 41, + anon_sym_LF, + anon_sym_CR, + anon_sym_CR_LF, + anon_sym_SEMI, anon_sym_DOT, - anon_sym_QMARK_DOT, - ACTIONS(5004), 2, + 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, - ACTIONS(5020), 2, + anon_sym_EQ_EQ, + anon_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, - ACTIONS(5022), 2, anon_sym_in, anon_sym_BANGin, - STATE(2502), 2, + [63883] = 5, + ACTIONS(497), 1, + anon_sym_SLASH_SLASH, + ACTIONS(499), 1, + anon_sym_SLASH_STAR, + ACTIONS(3056), 1, + anon_sym_LBRACK, + STATE(2498), 2, sym_line_comment, sym_block_comment, - ACTIONS(1779), 3, - anon_sym_LBRACE, + ACTIONS(3058), 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(4998), 3, + anon_sym_RBRACE, + anon_sym_LPAREN, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5002), 3, + anon_sym_STAR, anon_sym_SLASH, - anon_sym_AMP, - anon_sym_GT_GT, - ACTIONS(5006), 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(5000), 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, - [64349] = 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, + [63940] = 19, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(4932), 1, + ACTIONS(4938), 1, anon_sym_LPAREN, - ACTIONS(4934), 1, + ACTIONS(4940), 1, anon_sym_LBRACK, - ACTIONS(4936), 1, + ACTIONS(4942), 1, anon_sym_QMARK, - ACTIONS(4938), 1, + ACTIONS(4944), 1, anon_sym_BANG, - ACTIONS(4940), 1, + ACTIONS(4946), 1, anon_sym_LBRACK2, - ACTIONS(4944), 1, + ACTIONS(4950), 1, anon_sym_POUND_LBRACK, - ACTIONS(4994), 1, + ACTIONS(5166), 1, + anon_sym_CARET, + STATE(2298), 1, + sym_argument_list, + STATE(2299), 1, + sym_or_block, + STATE(4251), 1, + sym_type_parameters, + ACTIONS(1765), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(4948), 2, + anon_sym_DOT, + anon_sym_QMARK_DOT, + STATE(2499), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(5156), 3, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(5160), 3, + anon_sym_SLASH, + anon_sym_AMP, + anon_sym_GT_GT, + ACTIONS(5158), 5, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_AMP_CARET, + ACTIONS(1763), 17, + anon_sym_SEMI, anon_sym_as, - ACTIONS(5008), 1, + anon_sym_COMMA, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, anon_sym_PLUS_PLUS, - ACTIONS(5010), 1, anon_sym_DASH_DASH, - ACTIONS(5018), 1, + 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, + [64025] = 24, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(1765), 1, + anon_sym_DOT_DOT, + ACTIONS(5090), 1, + anon_sym_DOT, + ACTIONS(5092), 1, + anon_sym_LPAREN, + ACTIONS(5094), 1, + anon_sym_LBRACK, + ACTIONS(5096), 1, + anon_sym_QMARK, + ACTIONS(5098), 1, + anon_sym_BANG, + ACTIONS(5100), 1, + anon_sym_LBRACK2, + ACTIONS(5102), 1, + anon_sym_QMARK_DOT, + ACTIONS(5104), 1, + anon_sym_POUND_LBRACK, ACTIONS(5146), 1, anon_sym_CARET, ACTIONS(5148), 1, anon_sym_AMP_AMP, - ACTIONS(5170), 1, - anon_sym_PIPE_PIPE, - STATE(2396), 1, + STATE(2698), 1, sym_or_block, - STATE(2397), 1, + STATE(2702), 1, sym_argument_list, - STATE(4127), 1, + STATE(4053), 1, sym_type_parameters, - ACTIONS(4942), 2, - anon_sym_DOT, - anon_sym_QMARK_DOT, - ACTIONS(5020), 2, - anon_sym_is, - anon_sym_BANGis, ACTIONS(5142), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(5150), 2, + ACTIONS(5152), 2, anon_sym_in, anon_sym_BANGin, - STATE(2503), 2, + STATE(2500), 2, sym_line_comment, sym_block_comment, - ACTIONS(1779), 3, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_COLON_EQ, ACTIONS(5136), 3, anon_sym_PIPE, anon_sym_PLUS, @@ -245947,17 +245813,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - [64452] = 5, + ACTIONS(1763), 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, + [64120] = 5, ACTIONS(497), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, anon_sym_SLASH_STAR, - ACTIONS(2729), 1, + ACTIONS(2499), 1, anon_sym_LBRACK, - STATE(2504), 2, + STATE(2501), 2, sym_line_comment, sym_block_comment, - ACTIONS(2731), 41, + ACTIONS(2501), 41, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -245999,17 +245875,85 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [64509] = 5, + [64177] = 21, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(4938), 1, + anon_sym_LPAREN, + ACTIONS(4940), 1, + anon_sym_LBRACK, + ACTIONS(4942), 1, + anon_sym_QMARK, + ACTIONS(4944), 1, + anon_sym_BANG, + ACTIONS(4946), 1, + anon_sym_LBRACK2, + ACTIONS(4950), 1, + anon_sym_POUND_LBRACK, + ACTIONS(5166), 1, + anon_sym_CARET, + STATE(2298), 1, + sym_argument_list, + STATE(2299), 1, + sym_or_block, + STATE(4251), 1, + sym_type_parameters, + ACTIONS(4948), 2, + anon_sym_DOT, + anon_sym_QMARK_DOT, + ACTIONS(5162), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(5172), 2, + anon_sym_in, + anon_sym_BANGin, + STATE(2502), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(5156), 3, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(5160), 3, + anon_sym_SLASH, + anon_sym_AMP, + anon_sym_GT_GT, + ACTIONS(5164), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(5158), 5, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_AMP_CARET, + ACTIONS(1763), 11, + anon_sym_SEMI, + anon_sym_as, + anon_sym_COMMA, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_or, + anon_sym_is, + anon_sym_BANGis, + anon_sym_COLON_EQ, + [64266] = 5, ACTIONS(497), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, anon_sym_SLASH_STAR, - ACTIONS(2733), 1, + ACTIONS(2716), 1, anon_sym_LBRACK, - STATE(2505), 2, + STATE(2503), 2, sym_line_comment, sym_block_comment, - ACTIONS(2735), 41, + ACTIONS(2718), 41, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -246051,17 +245995,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [64566] = 5, + [64323] = 5, ACTIONS(497), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, anon_sym_SLASH_STAR, - ACTIONS(2513), 1, + ACTIONS(2780), 1, anon_sym_LBRACK, - STATE(2506), 2, + STATE(2504), 2, sym_line_comment, sym_block_comment, - ACTIONS(2515), 41, + ACTIONS(2782), 41, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -246103,17 +246047,86 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [64623] = 5, + [64380] = 22, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(4938), 1, + anon_sym_LPAREN, + ACTIONS(4940), 1, + anon_sym_LBRACK, + ACTIONS(4942), 1, + anon_sym_QMARK, + ACTIONS(4944), 1, + anon_sym_BANG, + ACTIONS(4946), 1, + anon_sym_LBRACK2, + ACTIONS(4950), 1, + anon_sym_POUND_LBRACK, + ACTIONS(5166), 1, + anon_sym_CARET, + ACTIONS(5168), 1, + anon_sym_AMP_AMP, + STATE(2298), 1, + sym_argument_list, + STATE(2299), 1, + sym_or_block, + STATE(4251), 1, + sym_type_parameters, + ACTIONS(4948), 2, + anon_sym_DOT, + anon_sym_QMARK_DOT, + ACTIONS(5162), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(5172), 2, + anon_sym_in, + anon_sym_BANGin, + STATE(2505), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(5156), 3, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(5160), 3, + anon_sym_SLASH, + anon_sym_AMP, + anon_sym_GT_GT, + ACTIONS(5164), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(5158), 5, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_AMP_CARET, + ACTIONS(1763), 10, + anon_sym_SEMI, + anon_sym_as, + anon_sym_COMMA, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PIPE_PIPE, + anon_sym_or, + anon_sym_is, + anon_sym_BANGis, + anon_sym_COLON_EQ, + [64471] = 5, ACTIONS(497), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, anon_sym_SLASH_STAR, - ACTIONS(2657), 1, + ACTIONS(2792), 1, anon_sym_LBRACK, - STATE(2507), 2, + STATE(2506), 2, sym_line_comment, sym_block_comment, - ACTIONS(2659), 41, + ACTIONS(2794), 41, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -246155,17 +246168,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [64680] = 5, + [64528] = 5, ACTIONS(497), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, anon_sym_SLASH_STAR, - ACTIONS(2517), 1, + ACTIONS(2830), 1, anon_sym_LBRACK, - STATE(2508), 2, + STATE(2507), 2, sym_line_comment, sym_block_comment, - ACTIONS(2519), 41, + ACTIONS(2832), 41, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -246207,17 +246220,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [64737] = 5, + [64585] = 5, ACTIONS(497), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, anon_sym_SLASH_STAR, - ACTIONS(2792), 1, + ACTIONS(2848), 1, anon_sym_LBRACK, - STATE(2509), 2, + STATE(2508), 2, sym_line_comment, sym_block_comment, - ACTIONS(2794), 41, + ACTIONS(2850), 41, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -246259,92 +246272,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [64794] = 28, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_STAR, - ACTIONS(4932), 1, - anon_sym_LPAREN, - ACTIONS(4934), 1, - anon_sym_LBRACK, - ACTIONS(4936), 1, - anon_sym_QMARK, - ACTIONS(4938), 1, - anon_sym_BANG, - ACTIONS(4940), 1, - anon_sym_LBRACK2, - ACTIONS(4944), 1, - anon_sym_POUND_LBRACK, - ACTIONS(4994), 1, - anon_sym_as, - ACTIONS(5008), 1, - anon_sym_PLUS_PLUS, - ACTIONS(5010), 1, - anon_sym_DASH_DASH, - ACTIONS(5018), 1, - anon_sym_or, - ACTIONS(5146), 1, - anon_sym_CARET, - ACTIONS(5148), 1, - anon_sym_AMP_AMP, - ACTIONS(5170), 1, - anon_sym_PIPE_PIPE, - STATE(2396), 1, - sym_or_block, - STATE(2397), 1, - sym_argument_list, - STATE(4127), 1, - sym_type_parameters, - ACTIONS(4942), 2, - anon_sym_DOT, - anon_sym_QMARK_DOT, - ACTIONS(5020), 2, - anon_sym_is, - anon_sym_BANGis, - ACTIONS(5142), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(5150), 2, - anon_sym_in, - anon_sym_BANGin, - STATE(2510), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(1771), 3, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_COLON_EQ, - ACTIONS(5136), 3, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(5140), 3, - anon_sym_SLASH, - anon_sym_AMP, - anon_sym_GT_GT, - ACTIONS(5144), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(5138), 5, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - [64897] = 5, + [64642] = 5, ACTIONS(497), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, anon_sym_SLASH_STAR, - ACTIONS(2800), 1, + ACTIONS(2904), 1, anon_sym_LBRACK, - STATE(2511), 2, + STATE(2509), 2, sym_line_comment, sym_block_comment, - ACTIONS(2802), 41, + ACTIONS(2906), 41, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -246386,164 +246324,69 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [64954] = 30, - ACTIONS(3), 1, + [64699] = 5, + ACTIONS(497), 1, anon_sym_SLASH_SLASH, - ACTIONS(5), 1, + ACTIONS(499), 1, anon_sym_SLASH_STAR, - ACTIONS(3478), 1, - anon_sym_SEMI, - ACTIONS(4932), 1, - anon_sym_LPAREN, - ACTIONS(4934), 1, + ACTIONS(2922), 1, anon_sym_LBRACK, - ACTIONS(4936), 1, - anon_sym_QMARK, - ACTIONS(4938), 1, - anon_sym_BANG, - ACTIONS(4940), 1, - anon_sym_LBRACK2, - ACTIONS(4944), 1, - anon_sym_POUND_LBRACK, - ACTIONS(4994), 1, - anon_sym_as, - ACTIONS(5008), 1, - anon_sym_PLUS_PLUS, - ACTIONS(5010), 1, - anon_sym_DASH_DASH, - ACTIONS(5018), 1, - anon_sym_or, - ACTIONS(5146), 1, - anon_sym_CARET, - ACTIONS(5148), 1, - anon_sym_AMP_AMP, - ACTIONS(5170), 1, - anon_sym_PIPE_PIPE, - ACTIONS(5174), 1, - anon_sym_COMMA, - STATE(2396), 1, - sym_or_block, - STATE(2397), 1, - sym_argument_list, - STATE(3778), 1, - aux_sym_strictly_expression_list_repeat1, - STATE(4127), 1, - sym_type_parameters, - ACTIONS(4942), 2, - anon_sym_DOT, - anon_sym_QMARK_DOT, - ACTIONS(5020), 2, - anon_sym_is, - anon_sym_BANGis, - ACTIONS(5142), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(5150), 2, - anon_sym_in, - anon_sym_BANGin, - STATE(2512), 2, + STATE(2510), 2, sym_line_comment, sym_block_comment, - ACTIONS(5136), 3, + ACTIONS(2924), 41, + anon_sym_LF, + anon_sym_CR, + anon_sym_CR_LF, + anon_sym_SEMI, + anon_sym_DOT, + anon_sym_as, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5140), 3, + anon_sym_STAR, anon_sym_SLASH, - anon_sym_AMP, - anon_sym_GT_GT, - ACTIONS(5144), 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(5138), 5, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - [65061] = 23, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_STAR, - ACTIONS(1785), 1, - anon_sym_DOT_DOT, - ACTIONS(5068), 1, - anon_sym_DOT, - ACTIONS(5070), 1, - anon_sym_LPAREN, - ACTIONS(5072), 1, - anon_sym_LBRACK, - ACTIONS(5074), 1, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, anon_sym_QMARK, - ACTIONS(5076), 1, anon_sym_BANG, - ACTIONS(5078), 1, anon_sym_LBRACK2, - ACTIONS(5080), 1, - anon_sym_QMARK_DOT, - ACTIONS(5082), 1, - anon_sym_POUND_LBRACK, - ACTIONS(5162), 1, anon_sym_CARET, - STATE(2736), 1, - sym_or_block, - STATE(2742), 1, - sym_argument_list, - STATE(4112), 1, - sym_type_parameters, - ACTIONS(5158), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(5168), 2, - anon_sym_in, - anon_sym_BANGin, - STATE(2513), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(5152), 3, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(5156), 3, - anon_sym_SLASH, anon_sym_AMP, - anon_sym_GT_GT, - ACTIONS(5160), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(5154), 5, - anon_sym_STAR, - anon_sym_PERCENT, anon_sym_LT_LT, + anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(1783), 10, - anon_sym_as, - anon_sym_LBRACE, - anon_sym_DOT_DOT_DOT, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_or, + anon_sym_QMARK_DOT, + anon_sym_POUND_LBRACK, anon_sym_is, anon_sym_BANGis, - [65154] = 5, + anon_sym_in, + anon_sym_BANGin, + [64756] = 5, ACTIONS(497), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, anon_sym_SLASH_STAR, - ACTIONS(2804), 1, + ACTIONS(2900), 1, anon_sym_LBRACK, - STATE(2514), 2, + STATE(2511), 2, sym_line_comment, sym_block_comment, - ACTIONS(2806), 41, + ACTIONS(2902), 41, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -246585,17 +246428,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [65211] = 5, + [64813] = 5, ACTIONS(497), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, anon_sym_SLASH_STAR, - ACTIONS(2818), 1, + ACTIONS(2872), 1, anon_sym_LBRACK, - STATE(2515), 2, + STATE(2512), 2, sym_line_comment, sym_block_comment, - ACTIONS(2820), 41, + ACTIONS(2874), 41, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -246637,17 +246480,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [65268] = 5, + [64870] = 5, ACTIONS(497), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, anon_sym_SLASH_STAR, - ACTIONS(2822), 1, + ACTIONS(2860), 1, anon_sym_LBRACK, - STATE(2516), 2, + STATE(2513), 2, sym_line_comment, sym_block_comment, - ACTIONS(2824), 41, + ACTIONS(2862), 41, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -246689,17 +246532,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [65325] = 5, + [64927] = 5, ACTIONS(497), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, anon_sym_SLASH_STAR, - ACTIONS(2834), 1, + ACTIONS(2197), 1, anon_sym_LBRACK, - STATE(2517), 2, + STATE(2514), 2, sym_line_comment, sym_block_comment, - ACTIONS(2836), 41, + ACTIONS(2199), 41, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -246741,83 +246584,69 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [65382] = 19, - ACTIONS(3), 1, + [64984] = 5, + ACTIONS(497), 1, anon_sym_SLASH_SLASH, - ACTIONS(5), 1, + ACTIONS(499), 1, anon_sym_SLASH_STAR, - ACTIONS(4932), 1, - anon_sym_LPAREN, - ACTIONS(4934), 1, + ACTIONS(2227), 1, anon_sym_LBRACK, - ACTIONS(4936), 1, - anon_sym_QMARK, - ACTIONS(4938), 1, - anon_sym_BANG, - ACTIONS(4940), 1, - anon_sym_LBRACK2, - ACTIONS(4944), 1, - anon_sym_POUND_LBRACK, - ACTIONS(5012), 1, - anon_sym_CARET, - STATE(2396), 1, - sym_or_block, - STATE(2397), 1, - sym_argument_list, - STATE(4127), 1, - sym_type_parameters, - ACTIONS(1769), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(4942), 2, - anon_sym_DOT, - anon_sym_QMARK_DOT, - STATE(2518), 2, + STATE(2515), 2, sym_line_comment, sym_block_comment, - ACTIONS(4998), 3, + ACTIONS(2229), 41, + anon_sym_LF, + anon_sym_CR, + anon_sym_CR_LF, + anon_sym_SEMI, + anon_sym_DOT, + anon_sym_as, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5002), 3, - anon_sym_SLASH, - anon_sym_AMP, - anon_sym_GT_GT, - ACTIONS(5000), 5, anon_sym_STAR, + anon_sym_SLASH, anon_sym_PERCENT, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - ACTIONS(1767), 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, - [65467] = 5, + [65041] = 5, ACTIONS(497), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, anon_sym_SLASH_STAR, - ACTIONS(1849), 1, + ACTIONS(2666), 1, anon_sym_LBRACK, - STATE(2519), 2, + STATE(2516), 2, sym_line_comment, sym_block_comment, - ACTIONS(1851), 41, + ACTIONS(2668), 41, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -246859,17 +246688,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [65524] = 5, + [65098] = 5, ACTIONS(497), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, anon_sym_SLASH_STAR, - ACTIONS(2649), 1, + ACTIONS(2776), 1, anon_sym_LBRACK, - STATE(2520), 2, + STATE(2517), 2, sym_line_comment, sym_block_comment, - ACTIONS(2651), 41, + ACTIONS(2778), 41, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -246911,17 +246740,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [65581] = 5, + [65155] = 5, ACTIONS(497), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, anon_sym_SLASH_STAR, - ACTIONS(2351), 1, + ACTIONS(3066), 1, anon_sym_LBRACK, - STATE(2521), 2, + STATE(2518), 2, sym_line_comment, sym_block_comment, - ACTIONS(2353), 41, + ACTIONS(3068), 41, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -246963,86 +246792,69 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [65638] = 22, - ACTIONS(3), 1, + [65212] = 5, + ACTIONS(497), 1, anon_sym_SLASH_SLASH, - ACTIONS(5), 1, + ACTIONS(499), 1, anon_sym_SLASH_STAR, - ACTIONS(4932), 1, - anon_sym_LPAREN, - ACTIONS(4934), 1, + ACTIONS(2770), 1, anon_sym_LBRACK, - ACTIONS(4936), 1, - anon_sym_QMARK, - ACTIONS(4938), 1, - anon_sym_BANG, - ACTIONS(4940), 1, - anon_sym_LBRACK2, - ACTIONS(4944), 1, - anon_sym_POUND_LBRACK, - ACTIONS(5012), 1, - anon_sym_CARET, - ACTIONS(5014), 1, - anon_sym_AMP_AMP, - STATE(2396), 1, - sym_or_block, - STATE(2397), 1, - sym_argument_list, - STATE(4127), 1, - sym_type_parameters, - ACTIONS(4942), 2, - anon_sym_DOT, - anon_sym_QMARK_DOT, - ACTIONS(5004), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(5022), 2, - anon_sym_in, - anon_sym_BANGin, - STATE(2522), 2, + STATE(2519), 2, sym_line_comment, sym_block_comment, - ACTIONS(4998), 3, + ACTIONS(2772), 41, + anon_sym_LF, + anon_sym_CR, + anon_sym_CR_LF, + anon_sym_SEMI, + anon_sym_DOT, + anon_sym_as, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5002), 3, + anon_sym_STAR, anon_sym_SLASH, - anon_sym_AMP, - anon_sym_GT_GT, - ACTIONS(5006), 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(5000), 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(1783), 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, - [65729] = 5, + anon_sym_in, + anon_sym_BANGin, + [65269] = 5, ACTIONS(497), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, anon_sym_SLASH_STAR, - ACTIONS(2737), 1, + ACTIONS(2473), 1, anon_sym_LBRACK, - STATE(2523), 2, + STATE(2520), 2, sym_line_comment, sym_block_comment, - ACTIONS(2739), 41, + ACTIONS(2475), 41, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -247084,17 +246896,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [65786] = 5, + [65326] = 5, ACTIONS(497), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, anon_sym_SLASH_STAR, - ACTIONS(2751), 1, + ACTIONS(2896), 1, anon_sym_LBRACK, - STATE(2524), 2, + STATE(2521), 2, sym_line_comment, sym_block_comment, - ACTIONS(2753), 41, + ACTIONS(2898), 41, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -247136,215 +246948,144 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [65843] = 21, + [65383] = 28, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(4932), 1, + ACTIONS(4938), 1, anon_sym_LPAREN, - ACTIONS(4934), 1, + ACTIONS(4940), 1, anon_sym_LBRACK, - ACTIONS(4936), 1, + ACTIONS(4942), 1, anon_sym_QMARK, - ACTIONS(4938), 1, + ACTIONS(4944), 1, anon_sym_BANG, - ACTIONS(4940), 1, + ACTIONS(4946), 1, anon_sym_LBRACK2, - ACTIONS(4944), 1, + ACTIONS(4950), 1, anon_sym_POUND_LBRACK, + ACTIONS(4996), 1, + anon_sym_as, ACTIONS(5012), 1, + anon_sym_PLUS_PLUS, + ACTIONS(5014), 1, + anon_sym_DASH_DASH, + ACTIONS(5022), 1, + anon_sym_or, + ACTIONS(5166), 1, anon_sym_CARET, - STATE(2396), 1, - sym_or_block, - STATE(2397), 1, + ACTIONS(5168), 1, + anon_sym_AMP_AMP, + ACTIONS(5170), 1, + anon_sym_PIPE_PIPE, + STATE(2298), 1, sym_argument_list, - STATE(4127), 1, + STATE(2299), 1, + sym_or_block, + STATE(4251), 1, sym_type_parameters, - ACTIONS(4942), 2, + ACTIONS(4948), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - ACTIONS(5004), 2, + ACTIONS(5024), 2, + anon_sym_is, + anon_sym_BANGis, + ACTIONS(5162), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(5022), 2, + ACTIONS(5172), 2, anon_sym_in, anon_sym_BANGin, - STATE(2525), 2, + STATE(2522), 2, sym_line_comment, sym_block_comment, - ACTIONS(4998), 3, + ACTIONS(1793), 3, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_COLON_EQ, + ACTIONS(5156), 3, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5002), 3, + ACTIONS(5160), 3, anon_sym_SLASH, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(5006), 4, + ACTIONS(5164), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(5000), 5, + ACTIONS(5158), 5, anon_sym_STAR, anon_sym_PERCENT, anon_sym_LT_LT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(1783), 11, - anon_sym_as, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_or, - anon_sym_is, - anon_sym_BANGis, - anon_sym_COLON_EQ, - [65932] = 19, - ACTIONS(3), 1, + [65486] = 5, + ACTIONS(497), 1, anon_sym_SLASH_SLASH, - ACTIONS(5), 1, + ACTIONS(499), 1, anon_sym_SLASH_STAR, - ACTIONS(4932), 1, - anon_sym_LPAREN, - ACTIONS(4934), 1, + ACTIONS(2892), 1, anon_sym_LBRACK, - ACTIONS(4936), 1, - anon_sym_QMARK, - ACTIONS(4938), 1, - anon_sym_BANG, - ACTIONS(4940), 1, - anon_sym_LBRACK2, - ACTIONS(4944), 1, - anon_sym_POUND_LBRACK, - ACTIONS(5012), 1, - anon_sym_CARET, - STATE(2396), 1, - sym_or_block, - STATE(2397), 1, - sym_argument_list, - STATE(4127), 1, - sym_type_parameters, - ACTIONS(1785), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(4942), 2, - anon_sym_DOT, - anon_sym_QMARK_DOT, - STATE(2526), 2, + STATE(2523), 2, sym_line_comment, sym_block_comment, - ACTIONS(4998), 3, + ACTIONS(2894), 41, + anon_sym_LF, + anon_sym_CR, + anon_sym_CR_LF, + anon_sym_SEMI, + anon_sym_DOT, + anon_sym_as, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5002), 3, - anon_sym_SLASH, - anon_sym_AMP, - anon_sym_GT_GT, - ACTIONS(5000), 5, anon_sym_STAR, + anon_sym_SLASH, anon_sym_PERCENT, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - ACTIONS(1783), 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_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, - [66017] = 17, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_STAR, - ACTIONS(4932), 1, - anon_sym_LPAREN, - ACTIONS(4934), 1, - anon_sym_LBRACK, - ACTIONS(4936), 1, anon_sym_QMARK, - ACTIONS(4938), 1, anon_sym_BANG, - ACTIONS(4940), 1, anon_sym_LBRACK2, - ACTIONS(4944), 1, - anon_sym_POUND_LBRACK, - STATE(2396), 1, - sym_or_block, - STATE(2397), 1, - sym_argument_list, - STATE(4127), 1, - sym_type_parameters, - ACTIONS(4942), 2, - anon_sym_DOT, - anon_sym_QMARK_DOT, - STATE(2527), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(5002), 3, - anon_sym_SLASH, + anon_sym_CARET, anon_sym_AMP, - anon_sym_GT_GT, - ACTIONS(1785), 5, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(5000), 5, - anon_sym_STAR, - anon_sym_PERCENT, anon_sym_LT_LT, + anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(1783), 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_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_CARET, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_or, + anon_sym_QMARK_DOT, + anon_sym_POUND_LBRACK, anon_sym_is, anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - anon_sym_COLON_EQ, - [66098] = 5, + [65543] = 5, ACTIONS(497), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, anon_sym_SLASH_STAR, - ACTIONS(2780), 1, + ACTIONS(2888), 1, anon_sym_LBRACK, - STATE(2528), 2, + STATE(2524), 2, sym_line_comment, sym_block_comment, - ACTIONS(2782), 41, + ACTIONS(2890), 41, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -247386,17 +247127,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [66155] = 5, + [65600] = 5, ACTIONS(497), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, anon_sym_SLASH_STAR, - ACTIONS(2876), 1, + ACTIONS(2267), 1, anon_sym_LBRACK, - STATE(2529), 2, + STATE(2525), 2, sym_line_comment, sym_block_comment, - ACTIONS(2878), 41, + ACTIONS(2269), 41, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -247438,17 +247179,95 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [66212] = 5, + [65657] = 31, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(5090), 1, + anon_sym_DOT, + ACTIONS(5092), 1, + anon_sym_LPAREN, + ACTIONS(5094), 1, + anon_sym_LBRACK, + ACTIONS(5096), 1, + anon_sym_QMARK, + ACTIONS(5098), 1, + anon_sym_BANG, + ACTIONS(5100), 1, + anon_sym_LBRACK2, + ACTIONS(5102), 1, + anon_sym_QMARK_DOT, + ACTIONS(5104), 1, + anon_sym_POUND_LBRACK, + ACTIONS(5124), 1, + anon_sym_as, + ACTIONS(5126), 1, + anon_sym_PLUS_PLUS, + ACTIONS(5128), 1, + anon_sym_DASH_DASH, + ACTIONS(5132), 1, + anon_sym_or, + ACTIONS(5146), 1, + anon_sym_CARET, + ACTIONS(5148), 1, + anon_sym_AMP_AMP, + ACTIONS(5150), 1, + anon_sym_PIPE_PIPE, + ACTIONS(5174), 1, + anon_sym_LBRACE, + ACTIONS(5176), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(5178), 1, + anon_sym_DOT_DOT, + STATE(2698), 1, + sym_or_block, + STATE(2702), 1, + sym_argument_list, + STATE(4053), 1, + sym_type_parameters, + ACTIONS(5134), 2, + anon_sym_is, + anon_sym_BANGis, + ACTIONS(5142), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(5152), 2, + anon_sym_in, + anon_sym_BANGin, + STATE(2526), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(5136), 3, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(5140), 3, + anon_sym_SLASH, + anon_sym_AMP, + anon_sym_GT_GT, + ACTIONS(5144), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(5138), 5, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_AMP_CARET, + [65766] = 5, ACTIONS(497), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, anon_sym_SLASH_STAR, - ACTIONS(2890), 1, + ACTIONS(2469), 1, anon_sym_LBRACK, - STATE(2530), 2, + STATE(2527), 2, sym_line_comment, sym_block_comment, - ACTIONS(2892), 41, + ACTIONS(2471), 41, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -247490,45 +247309,47 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [66269] = 5, - ACTIONS(3), 1, + [65823] = 5, + ACTIONS(497), 1, anon_sym_SLASH_SLASH, - ACTIONS(5), 1, + ACTIONS(499), 1, anon_sym_SLASH_STAR, - STATE(2531), 2, + ACTIONS(3048), 1, + anon_sym_LBRACK, + STATE(2528), 2, sym_line_comment, sym_block_comment, - ACTIONS(1845), 13, + ACTIONS(3050), 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_QMARK, - anon_sym_BANG, - anon_sym_LBRACK2, - anon_sym_AMP, - anon_sym_GT_GT, - anon_sym_DOT_DOT, - ACTIONS(1843), 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, @@ -247536,28 +247357,25 @@ 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, - [66326] = 6, + [65880] = 5, ACTIONS(497), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, anon_sym_SLASH_STAR, - ACTIONS(1951), 1, - anon_sym_LBRACE, - ACTIONS(2661), 1, + ACTIONS(2834), 1, anon_sym_LBRACK, - STATE(2532), 2, + STATE(2529), 2, sym_line_comment, sym_block_comment, - ACTIONS(2663), 40, + ACTIONS(2836), 41, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, + anon_sym_SEMI, anon_sym_DOT, anon_sym_as, anon_sym_COMMA, @@ -247595,17 +247413,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [66385] = 5, + [65937] = 5, ACTIONS(497), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, anon_sym_SLASH_STAR, - ACTIONS(2755), 1, + ACTIONS(2826), 1, anon_sym_LBRACK, - STATE(2533), 2, + STATE(2530), 2, sym_line_comment, sym_block_comment, - ACTIONS(2757), 41, + ACTIONS(2828), 41, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -247647,88 +247465,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [66442] = 24, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_STAR, - ACTIONS(1785), 1, - anon_sym_DOT_DOT, - ACTIONS(5068), 1, - anon_sym_DOT, - ACTIONS(5070), 1, - anon_sym_LPAREN, - ACTIONS(5072), 1, - anon_sym_LBRACK, - ACTIONS(5074), 1, - anon_sym_QMARK, - ACTIONS(5076), 1, - anon_sym_BANG, - ACTIONS(5078), 1, - anon_sym_LBRACK2, - ACTIONS(5080), 1, - anon_sym_QMARK_DOT, - ACTIONS(5082), 1, - anon_sym_POUND_LBRACK, - ACTIONS(5162), 1, - anon_sym_CARET, - ACTIONS(5164), 1, - anon_sym_AMP_AMP, - STATE(2736), 1, - sym_or_block, - STATE(2742), 1, - sym_argument_list, - STATE(4112), 1, - sym_type_parameters, - ACTIONS(5158), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(5168), 2, - anon_sym_in, - anon_sym_BANGin, - STATE(2534), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(5152), 3, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(5156), 3, - anon_sym_SLASH, - anon_sym_AMP, - anon_sym_GT_GT, - ACTIONS(5160), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(5154), 5, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - ACTIONS(1783), 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, - [66537] = 5, + [65994] = 5, ACTIONS(497), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, anon_sym_SLASH_STAR, - ACTIONS(2509), 1, + ACTIONS(2822), 1, anon_sym_LBRACK, - STATE(2535), 2, + STATE(2531), 2, sym_line_comment, sym_block_comment, - ACTIONS(2511), 41, + ACTIONS(2824), 41, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -247770,17 +247517,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [66594] = 5, + [66051] = 5, ACTIONS(497), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, anon_sym_SLASH_STAR, - ACTIONS(2882), 1, + ACTIONS(2800), 1, anon_sym_LBRACK, - STATE(2536), 2, + STATE(2532), 2, sym_line_comment, sym_block_comment, - ACTIONS(2884), 41, + ACTIONS(2802), 41, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -247822,17 +247569,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [66651] = 5, + [66108] = 5, ACTIONS(497), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, anon_sym_SLASH_STAR, - ACTIONS(2265), 1, + ACTIONS(2796), 1, anon_sym_LBRACK, - STATE(2537), 2, + STATE(2533), 2, sym_line_comment, sym_block_comment, - ACTIONS(2267), 41, + ACTIONS(2798), 41, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -247874,17 +247621,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [66708] = 5, + [66165] = 5, ACTIONS(497), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, anon_sym_SLASH_STAR, - ACTIONS(2886), 1, + ACTIONS(2786), 1, anon_sym_LBRACK, - STATE(2538), 2, + STATE(2534), 2, sym_line_comment, sym_block_comment, - ACTIONS(2888), 41, + ACTIONS(2788), 41, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -247926,17 +247673,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [66765] = 5, + [66222] = 5, ACTIONS(497), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, anon_sym_SLASH_STAR, - ACTIONS(2685), 1, + ACTIONS(2908), 1, anon_sym_LBRACK, - STATE(2539), 2, + STATE(2535), 2, sym_line_comment, sym_block_comment, - ACTIONS(2687), 41, + ACTIONS(2910), 41, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -247978,84 +247725,92 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [66822] = 20, + [66279] = 28, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(5068), 1, - anon_sym_DOT, - ACTIONS(5070), 1, + ACTIONS(4938), 1, anon_sym_LPAREN, - ACTIONS(5072), 1, + ACTIONS(4940), 1, anon_sym_LBRACK, - ACTIONS(5074), 1, + ACTIONS(4942), 1, anon_sym_QMARK, - ACTIONS(5076), 1, + ACTIONS(4944), 1, anon_sym_BANG, - ACTIONS(5078), 1, + ACTIONS(4946), 1, anon_sym_LBRACK2, - ACTIONS(5080), 1, - anon_sym_QMARK_DOT, - ACTIONS(5082), 1, + ACTIONS(4950), 1, anon_sym_POUND_LBRACK, - ACTIONS(5162), 1, + ACTIONS(4996), 1, + anon_sym_as, + ACTIONS(5012), 1, + anon_sym_PLUS_PLUS, + ACTIONS(5014), 1, + anon_sym_DASH_DASH, + ACTIONS(5016), 1, anon_sym_CARET, - STATE(2736), 1, - sym_or_block, - STATE(2742), 1, + ACTIONS(5018), 1, + anon_sym_AMP_AMP, + ACTIONS(5020), 1, + anon_sym_PIPE_PIPE, + ACTIONS(5022), 1, + anon_sym_or, + STATE(2298), 1, sym_argument_list, - STATE(4112), 1, + STATE(2299), 1, + sym_or_block, + STATE(4251), 1, sym_type_parameters, - STATE(2540), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(1769), 3, + ACTIONS(4948), 2, + anon_sym_DOT, + anon_sym_QMARK_DOT, + ACTIONS(5008), 2, anon_sym_LT, anon_sym_GT, - anon_sym_DOT_DOT, - ACTIONS(5152), 3, + ACTIONS(5024), 2, + anon_sym_is, + anon_sym_BANGis, + ACTIONS(5026), 2, + anon_sym_in, + anon_sym_BANGin, + STATE(2536), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(1793), 3, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_COLON_EQ, + ACTIONS(5002), 3, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5156), 3, + ACTIONS(5006), 3, anon_sym_SLASH, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(5154), 5, + ACTIONS(5010), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(5004), 5, anon_sym_STAR, anon_sym_PERCENT, anon_sym_LT_LT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(1767), 16, - anon_sym_as, - anon_sym_LBRACE, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_or, - anon_sym_is, - anon_sym_BANGis, - anon_sym_in, - anon_sym_BANGin, - [66909] = 5, + [66382] = 5, ACTIONS(497), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, anon_sym_SLASH_STAR, - ACTIONS(2237), 1, + ACTIONS(2884), 1, anon_sym_LBRACK, - STATE(2541), 2, + STATE(2537), 2, sym_line_comment, sym_block_comment, - ACTIONS(2239), 41, + ACTIONS(2886), 41, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -248097,23 +247852,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [66966] = 6, + [66439] = 5, ACTIONS(497), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, anon_sym_SLASH_STAR, - ACTIONS(2759), 1, + ACTIONS(2730), 1, anon_sym_LBRACK, - ACTIONS(2763), 1, - anon_sym_DOT, - STATE(2542), 2, + STATE(2538), 2, sym_line_comment, sym_block_comment, - ACTIONS(2761), 40, + ACTIONS(2732), 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, @@ -248150,17 +247904,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [67025] = 5, + [66496] = 5, ACTIONS(497), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, anon_sym_SLASH_STAR, - ACTIONS(3040), 1, + ACTIONS(2678), 1, anon_sym_LBRACK, - STATE(2543), 2, + STATE(2539), 2, sym_line_comment, sym_block_comment, - ACTIONS(3042), 41, + ACTIONS(2680), 41, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -248202,15 +247956,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [67082] = 5, + [66553] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - STATE(2544), 2, + STATE(2540), 2, sym_line_comment, sym_block_comment, - ACTIONS(1917), 13, + ACTIONS(1809), 13, anon_sym_DOT, anon_sym_PIPE, anon_sym_PLUS, @@ -248224,7 +247978,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_GT_GT, anon_sym_DOT_DOT, - ACTIONS(1915), 29, + ACTIONS(1807), 29, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -248254,147 +248008,222 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [67139] = 31, + [66610] = 22, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(5068), 1, - anon_sym_DOT, - ACTIONS(5070), 1, + ACTIONS(4938), 1, anon_sym_LPAREN, - ACTIONS(5072), 1, + ACTIONS(4940), 1, anon_sym_LBRACK, - ACTIONS(5074), 1, + ACTIONS(4942), 1, anon_sym_QMARK, - ACTIONS(5076), 1, + ACTIONS(4944), 1, anon_sym_BANG, - ACTIONS(5078), 1, + ACTIONS(4946), 1, anon_sym_LBRACK2, - ACTIONS(5080), 1, - anon_sym_QMARK_DOT, - ACTIONS(5082), 1, + ACTIONS(4950), 1, anon_sym_POUND_LBRACK, - ACTIONS(5122), 1, - anon_sym_as, - ACTIONS(5124), 1, - anon_sym_PLUS_PLUS, - ACTIONS(5126), 1, - anon_sym_DASH_DASH, - ACTIONS(5130), 1, - anon_sym_or, - ACTIONS(5162), 1, + ACTIONS(5016), 1, anon_sym_CARET, - ACTIONS(5164), 1, + ACTIONS(5018), 1, anon_sym_AMP_AMP, - ACTIONS(5166), 1, - anon_sym_PIPE_PIPE, - ACTIONS(5176), 1, - anon_sym_LBRACE, - ACTIONS(5178), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(5180), 1, - anon_sym_DOT_DOT, - STATE(2736), 1, - sym_or_block, - STATE(2742), 1, + STATE(2298), 1, sym_argument_list, - STATE(4112), 1, + STATE(2299), 1, + sym_or_block, + STATE(4251), 1, sym_type_parameters, - ACTIONS(5132), 2, - anon_sym_is, - anon_sym_BANGis, - ACTIONS(5158), 2, + ACTIONS(4948), 2, + anon_sym_DOT, + anon_sym_QMARK_DOT, + ACTIONS(5008), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(5168), 2, + ACTIONS(5026), 2, anon_sym_in, anon_sym_BANGin, - STATE(2545), 2, + STATE(2541), 2, sym_line_comment, sym_block_comment, - ACTIONS(5152), 3, + ACTIONS(5002), 3, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5156), 3, + ACTIONS(5006), 3, anon_sym_SLASH, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(5160), 4, + ACTIONS(5010), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(5154), 5, + ACTIONS(5004), 5, anon_sym_STAR, anon_sym_PERCENT, anon_sym_LT_LT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - [67248] = 5, - ACTIONS(497), 1, + ACTIONS(1763), 10, + anon_sym_as, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PIPE_PIPE, + anon_sym_or, + anon_sym_is, + anon_sym_BANGis, + anon_sym_COLON_EQ, + [66701] = 21, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, - ACTIONS(499), 1, + ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(2245), 1, + ACTIONS(4938), 1, + anon_sym_LPAREN, + ACTIONS(4940), 1, anon_sym_LBRACK, - STATE(2546), 2, + ACTIONS(4942), 1, + anon_sym_QMARK, + ACTIONS(4944), 1, + anon_sym_BANG, + ACTIONS(4946), 1, + anon_sym_LBRACK2, + ACTIONS(4950), 1, + anon_sym_POUND_LBRACK, + ACTIONS(5016), 1, + anon_sym_CARET, + STATE(2298), 1, + sym_argument_list, + STATE(2299), 1, + sym_or_block, + STATE(4251), 1, + sym_type_parameters, + ACTIONS(4948), 2, + anon_sym_DOT, + anon_sym_QMARK_DOT, + ACTIONS(5008), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(5026), 2, + anon_sym_in, + anon_sym_BANGin, + STATE(2542), 2, sym_line_comment, sym_block_comment, - ACTIONS(2247), 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(5002), 3, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - anon_sym_STAR, + ACTIONS(5006), 3, anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_LT, - anon_sym_GT, + anon_sym_AMP, + anon_sym_GT_GT, + ACTIONS(5010), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, + ACTIONS(5004), 5, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_AMP_CARET, + ACTIONS(1763), 11, + anon_sym_as, + anon_sym_LBRACE, + anon_sym_COMMA, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_or, + anon_sym_is, + anon_sym_BANGis, + anon_sym_COLON_EQ, + [66790] = 19, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(4938), 1, + anon_sym_LPAREN, + ACTIONS(4940), 1, + anon_sym_LBRACK, + ACTIONS(4942), 1, anon_sym_QMARK, + ACTIONS(4944), 1, anon_sym_BANG, + ACTIONS(4946), 1, anon_sym_LBRACK2, + ACTIONS(4950), 1, + anon_sym_POUND_LBRACK, + ACTIONS(5016), 1, anon_sym_CARET, + STATE(2298), 1, + sym_argument_list, + STATE(2299), 1, + sym_or_block, + STATE(4251), 1, + sym_type_parameters, + ACTIONS(1765), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(4948), 2, + anon_sym_DOT, + anon_sym_QMARK_DOT, + STATE(2543), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(5002), 3, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(5006), 3, + anon_sym_SLASH, anon_sym_AMP, - anon_sym_LT_LT, anon_sym_GT_GT, + ACTIONS(5004), 5, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_LT_LT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, + ACTIONS(1763), 17, + anon_sym_as, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_or, - anon_sym_QMARK_DOT, - anon_sym_POUND_LBRACK, anon_sym_is, anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [67305] = 5, + anon_sym_COLON_EQ, + [66875] = 6, ACTIONS(497), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, anon_sym_SLASH_STAR, - ACTIONS(2283), 1, + ACTIONS(2540), 1, anon_sym_LBRACK, - STATE(2547), 2, + ACTIONS(5180), 1, + anon_sym_BANG, + STATE(2544), 2, sym_line_comment, sym_block_comment, - ACTIONS(2285), 41, + ACTIONS(2542), 40, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -248419,7 +248248,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, @@ -248436,17 +248264,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [67362] = 5, + [66934] = 5, ACTIONS(497), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, anon_sym_SLASH_STAR, - ACTIONS(2894), 1, + ACTIONS(2682), 1, anon_sym_LBRACK, - STATE(2548), 2, + STATE(2545), 2, sym_line_comment, sym_block_comment, - ACTIONS(2896), 41, + ACTIONS(2684), 41, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -248488,17 +248316,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [67419] = 5, + [66991] = 5, ACTIONS(497), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, anon_sym_SLASH_STAR, - ACTIONS(2115), 1, + ACTIONS(2754), 1, anon_sym_LBRACK, - STATE(2549), 2, + STATE(2546), 2, sym_line_comment, sym_block_comment, - ACTIONS(2117), 41, + ACTIONS(2756), 41, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -248540,99 +248368,113 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [67476] = 5, - ACTIONS(497), 1, + [67048] = 17, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, - ACTIONS(499), 1, + ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(2505), 1, + ACTIONS(4938), 1, + anon_sym_LPAREN, + ACTIONS(4940), 1, anon_sym_LBRACK, - STATE(2550), 2, + ACTIONS(4942), 1, + anon_sym_QMARK, + ACTIONS(4944), 1, + anon_sym_BANG, + ACTIONS(4946), 1, + anon_sym_LBRACK2, + ACTIONS(4950), 1, + anon_sym_POUND_LBRACK, + STATE(2298), 1, + sym_argument_list, + STATE(2299), 1, + sym_or_block, + STATE(4251), 1, + sym_type_parameters, + ACTIONS(4948), 2, + anon_sym_DOT, + anon_sym_QMARK_DOT, + STATE(2547), 2, sym_line_comment, sym_block_comment, - ACTIONS(2507), 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(5006), 3, + anon_sym_SLASH, + anon_sym_AMP, + anon_sym_GT_GT, + ACTIONS(1765), 5, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, anon_sym_LT, anon_sym_GT, + ACTIONS(5004), 5, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_AMP_CARET, + ACTIONS(1763), 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_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_LBRACK2, anon_sym_CARET, - anon_sym_AMP, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_or, - anon_sym_QMARK_DOT, - anon_sym_POUND_LBRACK, anon_sym_is, anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [67533] = 5, - ACTIONS(497), 1, + anon_sym_COLON_EQ, + [67129] = 7, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, - ACTIONS(499), 1, + ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(2830), 1, - anon_sym_LBRACK, - STATE(2551), 2, + ACTIONS(2217), 1, + anon_sym_DOT_DOT, + STATE(2548), 2, sym_line_comment, sym_block_comment, - ACTIONS(2832), 41, - anon_sym_LF, - anon_sym_CR, - anon_sym_CR_LF, + ACTIONS(2215), 5, anon_sym_SEMI, - anon_sym_DOT, - anon_sym_as, + anon_sym_LBRACE, anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, + anon_sym_DOT_DOT_DOT, + anon_sym_COLON_EQ, + ACTIONS(2219), 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(2222), 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, @@ -248644,17 +248486,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [67590] = 5, + [67190] = 5, ACTIONS(497), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, anon_sym_SLASH_STAR, - ACTIONS(3060), 1, + ACTIONS(2686), 1, anon_sym_LBRACK, - STATE(2552), 2, + STATE(2549), 2, sym_line_comment, sym_block_comment, - ACTIONS(3062), 41, + ACTIONS(2688), 41, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -248696,17 +248538,92 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [67647] = 5, + [67247] = 28, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(4938), 1, + anon_sym_LPAREN, + ACTIONS(4940), 1, + anon_sym_LBRACK, + ACTIONS(4942), 1, + anon_sym_QMARK, + ACTIONS(4944), 1, + anon_sym_BANG, + ACTIONS(4946), 1, + anon_sym_LBRACK2, + ACTIONS(4950), 1, + anon_sym_POUND_LBRACK, + ACTIONS(4996), 1, + anon_sym_as, + ACTIONS(5012), 1, + anon_sym_PLUS_PLUS, + ACTIONS(5014), 1, + anon_sym_DASH_DASH, + ACTIONS(5022), 1, + anon_sym_or, + ACTIONS(5166), 1, + anon_sym_CARET, + ACTIONS(5168), 1, + anon_sym_AMP_AMP, + ACTIONS(5170), 1, + anon_sym_PIPE_PIPE, + STATE(2298), 1, + sym_argument_list, + STATE(2299), 1, + sym_or_block, + STATE(4251), 1, + sym_type_parameters, + ACTIONS(4948), 2, + anon_sym_DOT, + anon_sym_QMARK_DOT, + ACTIONS(5024), 2, + anon_sym_is, + anon_sym_BANGis, + ACTIONS(5162), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(5172), 2, + anon_sym_in, + anon_sym_BANGin, + STATE(2550), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(1771), 3, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_COLON_EQ, + ACTIONS(5156), 3, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(5160), 3, + anon_sym_SLASH, + anon_sym_AMP, + anon_sym_GT_GT, + ACTIONS(5164), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(5158), 5, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_AMP_CARET, + [67350] = 5, ACTIONS(497), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, anon_sym_SLASH_STAR, - ACTIONS(2271), 1, + ACTIONS(2748), 1, anon_sym_LBRACK, - STATE(2553), 2, + STATE(2551), 2, sym_line_comment, sym_block_comment, - ACTIONS(2273), 41, + ACTIONS(2750), 41, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -248748,17 +248665,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [67704] = 5, + [67407] = 5, ACTIONS(497), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, anon_sym_SLASH_STAR, - ACTIONS(2119), 1, + ACTIONS(2742), 1, anon_sym_LBRACK, - STATE(2554), 2, + STATE(2552), 2, sym_line_comment, sym_block_comment, - ACTIONS(2121), 41, + ACTIONS(2744), 41, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -248800,17 +248717,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [67761] = 5, + [67464] = 5, ACTIONS(497), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, anon_sym_SLASH_STAR, - ACTIONS(2918), 1, + ACTIONS(2722), 1, anon_sym_LBRACK, - STATE(2555), 2, + STATE(2553), 2, sym_line_comment, sym_block_comment, - ACTIONS(2920), 41, + ACTIONS(2724), 41, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -248852,17 +248769,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [67818] = 5, + [67521] = 5, ACTIONS(497), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, anon_sym_SLASH_STAR, - ACTIONS(2291), 1, + ACTIONS(2135), 1, anon_sym_LBRACK, - STATE(2556), 2, + STATE(2554), 2, sym_line_comment, sym_block_comment, - ACTIONS(2293), 41, + ACTIONS(2137), 41, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -248904,17 +248821,94 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [67875] = 5, + [67578] = 30, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(1773), 1, + anon_sym_DOT_DOT, + ACTIONS(5090), 1, + anon_sym_DOT, + ACTIONS(5092), 1, + anon_sym_LPAREN, + ACTIONS(5094), 1, + anon_sym_LBRACK, + ACTIONS(5096), 1, + anon_sym_QMARK, + ACTIONS(5098), 1, + anon_sym_BANG, + ACTIONS(5100), 1, + anon_sym_LBRACK2, + ACTIONS(5102), 1, + anon_sym_QMARK_DOT, + ACTIONS(5104), 1, + anon_sym_POUND_LBRACK, + ACTIONS(5124), 1, + anon_sym_as, + ACTIONS(5126), 1, + anon_sym_PLUS_PLUS, + ACTIONS(5128), 1, + anon_sym_DASH_DASH, + ACTIONS(5132), 1, + anon_sym_or, + ACTIONS(5146), 1, + anon_sym_CARET, + ACTIONS(5148), 1, + anon_sym_AMP_AMP, + ACTIONS(5150), 1, + anon_sym_PIPE_PIPE, + STATE(2698), 1, + sym_or_block, + STATE(2702), 1, + sym_argument_list, + STATE(4053), 1, + sym_type_parameters, + ACTIONS(1771), 2, + anon_sym_LBRACE, + anon_sym_DOT_DOT_DOT, + ACTIONS(5134), 2, + anon_sym_is, + anon_sym_BANGis, + ACTIONS(5142), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(5152), 2, + anon_sym_in, + anon_sym_BANGin, + STATE(2555), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(5136), 3, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(5140), 3, + anon_sym_SLASH, + anon_sym_AMP, + anon_sym_GT_GT, + ACTIONS(5144), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(5138), 5, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_AMP_CARET, + [67685] = 5, ACTIONS(497), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, anon_sym_SLASH_STAR, - ACTIONS(2854), 1, + ACTIONS(2712), 1, anon_sym_LBRACK, - STATE(2557), 2, + STATE(2556), 2, sym_line_comment, sym_block_comment, - ACTIONS(2856), 41, + ACTIONS(2714), 41, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -248956,22 +248950,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [67932] = 5, + [67742] = 6, ACTIONS(497), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, anon_sym_SLASH_STAR, - ACTIONS(2826), 1, + ACTIONS(1891), 1, + anon_sym_DOT, + ACTIONS(2473), 1, anon_sym_LBRACK, - STATE(2558), 2, + STATE(2557), 2, sym_line_comment, sym_block_comment, - ACTIONS(2828), 41, + ACTIONS(2475), 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, @@ -249008,49 +249003,124 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [67989] = 7, + [67801] = 30, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(2251), 1, - anon_sym_DOT_DOT, + ACTIONS(3484), 1, + anon_sym_LBRACE, + ACTIONS(4938), 1, + anon_sym_LPAREN, + ACTIONS(4940), 1, + anon_sym_LBRACK, + ACTIONS(4942), 1, + anon_sym_QMARK, + ACTIONS(4944), 1, + anon_sym_BANG, + ACTIONS(4946), 1, + anon_sym_LBRACK2, + ACTIONS(4950), 1, + anon_sym_POUND_LBRACK, + ACTIONS(4996), 1, + anon_sym_as, + ACTIONS(5012), 1, + anon_sym_PLUS_PLUS, + ACTIONS(5014), 1, + anon_sym_DASH_DASH, + ACTIONS(5016), 1, + anon_sym_CARET, + ACTIONS(5018), 1, + anon_sym_AMP_AMP, + ACTIONS(5020), 1, + anon_sym_PIPE_PIPE, + ACTIONS(5022), 1, + anon_sym_or, + ACTIONS(5182), 1, + anon_sym_COMMA, + STATE(2298), 1, + sym_argument_list, + STATE(2299), 1, + sym_or_block, + STATE(3764), 1, + aux_sym_strictly_expression_list_repeat1, + STATE(4251), 1, + sym_type_parameters, + ACTIONS(4948), 2, + anon_sym_DOT, + anon_sym_QMARK_DOT, + ACTIONS(5008), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(5024), 2, + anon_sym_is, + anon_sym_BANGis, + ACTIONS(5026), 2, + anon_sym_in, + anon_sym_BANGin, + STATE(2558), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(5002), 3, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(5006), 3, + anon_sym_SLASH, + anon_sym_AMP, + anon_sym_GT_GT, + ACTIONS(5010), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(5004), 5, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_AMP_CARET, + [67908] = 5, + ACTIONS(497), 1, + anon_sym_SLASH_SLASH, + ACTIONS(499), 1, + anon_sym_SLASH_STAR, + ACTIONS(2708), 1, + anon_sym_LBRACK, STATE(2559), 2, sym_line_comment, sym_block_comment, - ACTIONS(2249), 5, + ACTIONS(2710), 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(2253), 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(2256), 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, @@ -249062,17 +249132,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [68050] = 5, + [67965] = 5, ACTIONS(497), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, anon_sym_SLASH_STAR, - ACTIONS(2858), 1, + ACTIONS(2113), 1, anon_sym_LBRACK, STATE(2560), 2, sym_line_comment, sym_block_comment, - ACTIONS(2860), 41, + ACTIONS(2115), 41, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -249114,17 +249184,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [68107] = 5, + [68022] = 5, ACTIONS(497), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, anon_sym_SLASH_STAR, - ACTIONS(2898), 1, + ACTIONS(2698), 1, anon_sym_LBRACK, STATE(2561), 2, sym_line_comment, sym_block_comment, - ACTIONS(2900), 41, + ACTIONS(2700), 41, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -249166,17 +249236,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [68164] = 5, + [68079] = 5, ACTIONS(497), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, anon_sym_SLASH_STAR, - ACTIONS(2307), 1, + ACTIONS(2147), 1, anon_sym_LBRACK, STATE(2562), 2, sym_line_comment, sym_block_comment, - ACTIONS(2309), 41, + ACTIONS(2149), 41, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -249218,17 +249288,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [68221] = 5, + [68136] = 5, ACTIONS(497), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, anon_sym_SLASH_STAR, - ACTIONS(3044), 1, + ACTIONS(1989), 1, anon_sym_LBRACK, STATE(2563), 2, sym_line_comment, sym_block_comment, - ACTIONS(3046), 41, + ACTIONS(1987), 41, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -249270,17 +249340,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [68278] = 5, + [68193] = 5, ACTIONS(497), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, anon_sym_SLASH_STAR, - ACTIONS(2870), 1, + ACTIONS(2690), 1, anon_sym_LBRACK, STATE(2564), 2, sym_line_comment, sym_block_comment, - ACTIONS(2872), 41, + ACTIONS(2692), 41, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -249322,17 +249392,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [68335] = 5, + [68250] = 5, ACTIONS(497), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, anon_sym_SLASH_STAR, - ACTIONS(2303), 1, + ACTIONS(2738), 1, anon_sym_LBRACK, STATE(2565), 2, sym_line_comment, sym_block_comment, - ACTIONS(2305), 41, + ACTIONS(2740), 41, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -249374,17 +249444,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [68392] = 5, + [68307] = 5, ACTIONS(497), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, anon_sym_SLASH_STAR, - ACTIONS(2181), 1, + ACTIONS(2734), 1, anon_sym_LBRACK, STATE(2566), 2, sym_line_comment, sym_block_comment, - ACTIONS(2183), 41, + ACTIONS(2736), 41, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -249426,17 +249496,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [68449] = 5, + [68364] = 5, ACTIONS(497), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, anon_sym_SLASH_STAR, - ACTIONS(2866), 1, + ACTIONS(2189), 1, anon_sym_LBRACK, STATE(2567), 2, sym_line_comment, sym_block_comment, - ACTIONS(2868), 41, + ACTIONS(2191), 41, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -249478,17 +249548,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [68506] = 5, + [68421] = 5, ACTIONS(497), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, anon_sym_SLASH_STAR, - ACTIONS(2313), 1, + ACTIONS(2838), 1, anon_sym_LBRACK, STATE(2568), 2, sym_line_comment, sym_block_comment, - ACTIONS(2315), 41, + ACTIONS(2840), 41, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -249530,17 +249600,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [68563] = 5, + [68478] = 5, ACTIONS(497), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, anon_sym_SLASH_STAR, - ACTIONS(2848), 1, + ACTIONS(2291), 1, anon_sym_LBRACK, STATE(2569), 2, sym_line_comment, sym_block_comment, - ACTIONS(2850), 41, + ACTIONS(2293), 41, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -249582,23 +249652,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [68620] = 6, + [68535] = 5, ACTIONS(497), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, anon_sym_SLASH_STAR, - ACTIONS(1853), 1, - anon_sym_DOT, - ACTIONS(2505), 1, + ACTIONS(2305), 1, anon_sym_LBRACK, STATE(2570), 2, sym_line_comment, sym_block_comment, - ACTIONS(2507), 40, + ACTIONS(2307), 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, @@ -249635,69 +249704,84 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [68679] = 5, - ACTIONS(497), 1, + [68592] = 20, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, - ACTIONS(499), 1, + ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(2844), 1, + ACTIONS(5090), 1, + anon_sym_DOT, + ACTIONS(5092), 1, + anon_sym_LPAREN, + ACTIONS(5094), 1, anon_sym_LBRACK, + ACTIONS(5096), 1, + anon_sym_QMARK, + ACTIONS(5098), 1, + anon_sym_BANG, + ACTIONS(5100), 1, + anon_sym_LBRACK2, + ACTIONS(5102), 1, + anon_sym_QMARK_DOT, + ACTIONS(5104), 1, + anon_sym_POUND_LBRACK, + ACTIONS(5146), 1, + anon_sym_CARET, + STATE(2698), 1, + sym_or_block, + STATE(2702), 1, + sym_argument_list, + STATE(4053), 1, + sym_type_parameters, STATE(2571), 2, sym_line_comment, sym_block_comment, - ACTIONS(2846), 41, - anon_sym_LF, - anon_sym_CR, - anon_sym_CR_LF, - anon_sym_SEMI, - anon_sym_DOT, - anon_sym_as, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, + ACTIONS(1781), 3, + anon_sym_LT, + anon_sym_GT, + anon_sym_DOT_DOT, + ACTIONS(5136), 3, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - anon_sym_STAR, + ACTIONS(5140), 3, anon_sym_SLASH, + anon_sym_AMP, + anon_sym_GT_GT, + ACTIONS(5138), 5, + anon_sym_STAR, anon_sym_PERCENT, - anon_sym_LT, - anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_AMP_CARET, + ACTIONS(1779), 16, + anon_sym_as, + anon_sym_LBRACE, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, + anon_sym_DOT_DOT_DOT, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_LBRACK2, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_or, - anon_sym_QMARK_DOT, - anon_sym_POUND_LBRACK, anon_sym_is, anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [68736] = 5, + [68679] = 5, ACTIONS(497), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, anon_sym_SLASH_STAR, - ACTIONS(2167), 1, + ACTIONS(2441), 1, anon_sym_LBRACK, STATE(2572), 2, sym_line_comment, sym_block_comment, - ACTIONS(2169), 41, + ACTIONS(2443), 41, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -249739,19 +249823,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [68793] = 7, + [68736] = 7, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(5182), 1, + ACTIONS(5184), 1, anon_sym_else, - STATE(2667), 1, + STATE(2671), 1, sym_else_branch, STATE(2573), 2, sym_line_comment, sym_block_comment, - ACTIONS(1799), 13, + ACTIONS(1805), 13, anon_sym_DOT, anon_sym_PIPE, anon_sym_PLUS, @@ -249765,7 +249849,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_GT_GT, anon_sym_DOT_DOT, - ACTIONS(1797), 27, + ACTIONS(1803), 27, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -249793,47 +249877,49 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [68854] = 5, - ACTIONS(497), 1, + [68797] = 7, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, - ACTIONS(499), 1, + ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(2163), 1, - anon_sym_LBRACK, + ACTIONS(5184), 1, + anon_sym_else, + STATE(2670), 1, + sym_else_branch, STATE(2574), 2, sym_line_comment, sym_block_comment, - ACTIONS(2165), 41, - anon_sym_LF, - anon_sym_CR, - anon_sym_CR_LF, - anon_sym_SEMI, + ACTIONS(1799), 13, anon_sym_DOT, - anon_sym_as, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - anon_sym_STAR, anon_sym_SLASH, - anon_sym_PERCENT, anon_sym_LT, anon_sym_GT, + anon_sym_QMARK, + anon_sym_BANG, + anon_sym_LBRACK2, + anon_sym_AMP, + anon_sym_GT_GT, + anon_sym_DOT_DOT, + ACTIONS(1797), 27, + anon_sym_as, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_PERCENT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, + anon_sym_DOT_DOT_DOT, + anon_sym_LBRACK, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_LBRACK2, anon_sym_CARET, - anon_sym_AMP, anon_sym_LT_LT, - anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, anon_sym_AMP_AMP, @@ -249845,17 +249931,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [68911] = 5, + [68858] = 5, ACTIONS(497), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, anon_sym_SLASH_STAR, - ACTIONS(2838), 1, + ACTIONS(2447), 1, anon_sym_LBRACK, STATE(2575), 2, sym_line_comment, sym_block_comment, - ACTIONS(2840), 41, + ACTIONS(2449), 41, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -249897,17 +249983,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [68968] = 5, + [68915] = 5, ACTIONS(497), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, anon_sym_SLASH_STAR, - ACTIONS(2671), 1, + ACTIONS(2453), 1, anon_sym_LBRACK, STATE(2576), 2, sym_line_comment, sym_block_comment, - ACTIONS(2673), 41, + ACTIONS(2455), 41, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -249949,157 +250035,47 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [69025] = 7, - ACTIONS(3), 1, + [68972] = 5, + ACTIONS(497), 1, anon_sym_SLASH_SLASH, - ACTIONS(5), 1, + ACTIONS(499), 1, anon_sym_SLASH_STAR, - ACTIONS(5182), 1, - anon_sym_else, - STATE(2668), 1, - sym_else_branch, + ACTIONS(2670), 1, + anon_sym_LBRACK, STATE(2577), 2, sym_line_comment, sym_block_comment, - ACTIONS(1805), 13, + ACTIONS(2672), 41, + anon_sym_LF, + anon_sym_CR, + anon_sym_CR_LF, + anon_sym_SEMI, 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(1803), 27, anon_sym_as, - anon_sym_LBRACE, anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_LPAREN, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_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, - [69086] = 8, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_STAR, - ACTIONS(4805), 1, - anon_sym_DOT, - ACTIONS(5186), 1, - anon_sym_QMARK, - ACTIONS(5184), 2, - anon_sym_SEMI, - anon_sym_RBRACK, - STATE(2578), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(2761), 10, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, + anon_sym_STAR, anon_sym_SLASH, + anon_sym_PERCENT, anon_sym_LT, anon_sym_GT, - anon_sym_BANG, - anon_sym_LBRACK2, - anon_sym_AMP, - anon_sym_GT_GT, - 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_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, - [69148] = 8, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_STAR, - ACTIONS(5188), 1, - anon_sym_LBRACE, - ACTIONS(5190), 1, - anon_sym_COMMA, - STATE(3798), 1, - aux_sym_match_expression_list_repeat1, - STATE(2579), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(2778), 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(2776), 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_AMP, anon_sym_LT_LT, + anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, anon_sym_AMP_AMP, @@ -250111,47 +250087,47 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [69210] = 6, - ACTIONS(3), 1, + [69029] = 5, + ACTIONS(497), 1, anon_sym_SLASH_SLASH, - ACTIONS(5), 1, + ACTIONS(499), 1, anon_sym_SLASH_STAR, - ACTIONS(5192), 1, - anon_sym_DOLLARelse, - STATE(2580), 2, + ACTIONS(2457), 1, + anon_sym_LBRACK, + STATE(2578), 2, sym_line_comment, sym_block_comment, - ACTIONS(1921), 13, + ACTIONS(2459), 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_QMARK, - anon_sym_BANG, - anon_sym_LBRACK2, - anon_sym_AMP, - anon_sym_GT_GT, - anon_sym_DOT_DOT, - ACTIONS(1919), 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, @@ -250163,696 +250139,650 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [69268] = 29, + [69086] = 29, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(4932), 1, + ACTIONS(4938), 1, anon_sym_LPAREN, - ACTIONS(4934), 1, + ACTIONS(4940), 1, anon_sym_LBRACK, - ACTIONS(4938), 1, + ACTIONS(4944), 1, anon_sym_BANG, - ACTIONS(4940), 1, + ACTIONS(4946), 1, anon_sym_LBRACK2, - ACTIONS(4944), 1, + ACTIONS(4950), 1, anon_sym_POUND_LBRACK, - ACTIONS(4994), 1, + ACTIONS(4996), 1, anon_sym_as, - ACTIONS(5008), 1, + ACTIONS(5012), 1, anon_sym_PLUS_PLUS, - ACTIONS(5010), 1, + ACTIONS(5014), 1, anon_sym_DASH_DASH, - ACTIONS(5018), 1, + ACTIONS(5022), 1, anon_sym_or, - ACTIONS(5194), 1, + ACTIONS(5186), 1, anon_sym_LBRACE, - ACTIONS(5206), 1, + ACTIONS(5198), 1, anon_sym_QMARK, - ACTIONS(5208), 1, + ACTIONS(5200), 1, anon_sym_CARET, - ACTIONS(5210), 1, + ACTIONS(5202), 1, anon_sym_AMP_AMP, - ACTIONS(5212), 1, + ACTIONS(5204), 1, anon_sym_PIPE_PIPE, - STATE(1130), 1, + STATE(2132), 1, sym_block, - STATE(2396), 1, - sym_or_block, - STATE(2397), 1, + STATE(2298), 1, sym_argument_list, - STATE(4127), 1, + STATE(2299), 1, + sym_or_block, + STATE(4251), 1, sym_type_parameters, - ACTIONS(4942), 2, + ACTIONS(4948), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - ACTIONS(5020), 2, + ACTIONS(5024), 2, anon_sym_is, anon_sym_BANGis, - ACTIONS(5202), 2, + ACTIONS(5194), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(5214), 2, + ACTIONS(5206), 2, anon_sym_in, anon_sym_BANGin, - STATE(2581), 2, + STATE(2579), 2, sym_line_comment, sym_block_comment, - ACTIONS(5196), 3, + ACTIONS(5188), 3, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5200), 3, + ACTIONS(5192), 3, anon_sym_SLASH, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(5204), 4, + ACTIONS(5196), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(5198), 5, + ACTIONS(5190), 5, anon_sym_STAR, anon_sym_PERCENT, anon_sym_LT_LT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - [69372] = 29, + [69190] = 29, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(4932), 1, + ACTIONS(4938), 1, anon_sym_LPAREN, - ACTIONS(4934), 1, + ACTIONS(4940), 1, anon_sym_LBRACK, - ACTIONS(4938), 1, + ACTIONS(4944), 1, anon_sym_BANG, - ACTIONS(4940), 1, + ACTIONS(4946), 1, anon_sym_LBRACK2, - ACTIONS(4944), 1, + ACTIONS(4950), 1, anon_sym_POUND_LBRACK, - ACTIONS(4994), 1, + ACTIONS(4996), 1, anon_sym_as, - ACTIONS(5008), 1, + ACTIONS(5012), 1, anon_sym_PLUS_PLUS, - ACTIONS(5010), 1, + ACTIONS(5014), 1, anon_sym_DASH_DASH, - ACTIONS(5018), 1, + ACTIONS(5022), 1, anon_sym_or, - ACTIONS(5040), 1, - anon_sym_LBRACE, - ACTIONS(5208), 1, + ACTIONS(5200), 1, anon_sym_CARET, - ACTIONS(5210), 1, + ACTIONS(5202), 1, anon_sym_AMP_AMP, - ACTIONS(5212), 1, + ACTIONS(5204), 1, anon_sym_PIPE_PIPE, - ACTIONS(5216), 1, + ACTIONS(5208), 1, + anon_sym_LBRACE, + ACTIONS(5210), 1, anon_sym_QMARK, - STATE(1906), 1, + STATE(981), 1, sym_block, - STATE(2396), 1, - sym_or_block, - STATE(2397), 1, + STATE(2298), 1, sym_argument_list, - STATE(4127), 1, + STATE(2299), 1, + sym_or_block, + STATE(4251), 1, sym_type_parameters, - ACTIONS(4942), 2, + ACTIONS(4948), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - ACTIONS(5020), 2, + ACTIONS(5024), 2, anon_sym_is, anon_sym_BANGis, - ACTIONS(5202), 2, + ACTIONS(5194), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(5214), 2, + ACTIONS(5206), 2, anon_sym_in, anon_sym_BANGin, - STATE(2582), 2, + STATE(2580), 2, sym_line_comment, sym_block_comment, - ACTIONS(5196), 3, + ACTIONS(5188), 3, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5200), 3, + ACTIONS(5192), 3, anon_sym_SLASH, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(5204), 4, + ACTIONS(5196), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(5198), 5, + ACTIONS(5190), 5, anon_sym_STAR, anon_sym_PERCENT, anon_sym_LT_LT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - [69476] = 29, + [69294] = 29, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(4932), 1, + ACTIONS(4938), 1, anon_sym_LPAREN, - ACTIONS(4934), 1, + ACTIONS(4940), 1, anon_sym_LBRACK, - ACTIONS(4938), 1, + ACTIONS(4944), 1, anon_sym_BANG, - ACTIONS(4940), 1, + ACTIONS(4946), 1, anon_sym_LBRACK2, - ACTIONS(4944), 1, + ACTIONS(4950), 1, anon_sym_POUND_LBRACK, - ACTIONS(4994), 1, + ACTIONS(4996), 1, anon_sym_as, - ACTIONS(5008), 1, + ACTIONS(5012), 1, anon_sym_PLUS_PLUS, - ACTIONS(5010), 1, + ACTIONS(5014), 1, anon_sym_DASH_DASH, - ACTIONS(5018), 1, + ACTIONS(5022), 1, anon_sym_or, - ACTIONS(5208), 1, + ACTIONS(5200), 1, anon_sym_CARET, - ACTIONS(5210), 1, + ACTIONS(5202), 1, anon_sym_AMP_AMP, - ACTIONS(5212), 1, + ACTIONS(5204), 1, anon_sym_PIPE_PIPE, - ACTIONS(5218), 1, + ACTIONS(5212), 1, anon_sym_LBRACE, - ACTIONS(5220), 1, + ACTIONS(5214), 1, anon_sym_QMARK, - STATE(983), 1, + STATE(235), 1, sym_block, - STATE(2396), 1, - sym_or_block, - STATE(2397), 1, + STATE(2298), 1, sym_argument_list, - STATE(4127), 1, + STATE(2299), 1, + sym_or_block, + STATE(4251), 1, sym_type_parameters, - ACTIONS(4942), 2, + ACTIONS(4948), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - ACTIONS(5020), 2, + ACTIONS(5024), 2, anon_sym_is, anon_sym_BANGis, - ACTIONS(5202), 2, + ACTIONS(5194), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(5214), 2, + ACTIONS(5206), 2, anon_sym_in, anon_sym_BANGin, - STATE(2583), 2, + STATE(2581), 2, sym_line_comment, sym_block_comment, - ACTIONS(5196), 3, + ACTIONS(5188), 3, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5200), 3, + ACTIONS(5192), 3, anon_sym_SLASH, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(5204), 4, + ACTIONS(5196), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(5198), 5, + ACTIONS(5190), 5, anon_sym_STAR, anon_sym_PERCENT, anon_sym_LT_LT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - [69580] = 30, + [69398] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(4930), 1, - anon_sym_DOT, - ACTIONS(4932), 1, - anon_sym_LPAREN, - ACTIONS(4934), 1, - anon_sym_LBRACK, - ACTIONS(4936), 1, - anon_sym_QMARK, - ACTIONS(4938), 1, - anon_sym_BANG, - ACTIONS(4940), 1, - anon_sym_LBRACK2, - ACTIONS(4942), 1, - anon_sym_QMARK_DOT, - ACTIONS(4944), 1, - anon_sym_POUND_LBRACK, - ACTIONS(4994), 1, - anon_sym_as, - ACTIONS(5008), 1, - anon_sym_PLUS_PLUS, - ACTIONS(5010), 1, - anon_sym_DASH_DASH, - ACTIONS(5018), 1, - anon_sym_or, - ACTIONS(5090), 1, - anon_sym_CARET, - ACTIONS(5098), 1, - anon_sym_AMP_AMP, - ACTIONS(5102), 1, - anon_sym_PIPE_PIPE, - ACTIONS(5222), 1, - anon_sym_RBRACK, - ACTIONS(5224), 1, - anon_sym_DOT_DOT, - STATE(2396), 1, - sym_or_block, - STATE(2397), 1, - sym_argument_list, - STATE(4127), 1, - sym_type_parameters, - ACTIONS(5020), 2, - anon_sym_is, - anon_sym_BANGis, - ACTIONS(5094), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(5100), 2, - anon_sym_in, - anon_sym_BANGin, - STATE(2584), 2, + ACTIONS(5216), 1, + anon_sym_DOLLARelse, + STATE(2582), 2, sym_line_comment, sym_block_comment, - ACTIONS(5084), 3, + ACTIONS(1843), 13, + anon_sym_DOT, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5088), 3, anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + anon_sym_QMARK, + anon_sym_BANG, + anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(5096), 4, + anon_sym_DOT_DOT, + ACTIONS(1841), 27, + anon_sym_as, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_PERCENT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(5086), 5, - anon_sym_STAR, - anon_sym_PERCENT, + anon_sym_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, - [69686] = 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, + [69456] = 30, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(4930), 1, + ACTIONS(4936), 1, anon_sym_DOT, - ACTIONS(4932), 1, + ACTIONS(4938), 1, anon_sym_LPAREN, - ACTIONS(4934), 1, + ACTIONS(4940), 1, anon_sym_LBRACK, - ACTIONS(4936), 1, + ACTIONS(4942), 1, anon_sym_QMARK, - ACTIONS(4938), 1, + ACTIONS(4944), 1, anon_sym_BANG, - ACTIONS(4940), 1, + ACTIONS(4946), 1, anon_sym_LBRACK2, - ACTIONS(4942), 1, + ACTIONS(4948), 1, anon_sym_QMARK_DOT, - ACTIONS(4944), 1, + ACTIONS(4950), 1, anon_sym_POUND_LBRACK, - ACTIONS(4994), 1, + ACTIONS(4996), 1, anon_sym_as, - ACTIONS(5008), 1, + ACTIONS(5012), 1, anon_sym_PLUS_PLUS, - ACTIONS(5010), 1, + ACTIONS(5014), 1, anon_sym_DASH_DASH, - ACTIONS(5018), 1, + ACTIONS(5022), 1, anon_sym_or, - ACTIONS(5090), 1, + ACTIONS(5076), 1, anon_sym_CARET, - ACTIONS(5098), 1, + ACTIONS(5082), 1, anon_sym_AMP_AMP, - ACTIONS(5102), 1, + ACTIONS(5114), 1, anon_sym_PIPE_PIPE, - ACTIONS(5224), 1, - anon_sym_DOT_DOT, - ACTIONS(5226), 1, + ACTIONS(5218), 1, anon_sym_RBRACK, - STATE(2396), 1, - sym_or_block, - STATE(2397), 1, + ACTIONS(5220), 1, + anon_sym_DOT_DOT, + STATE(2298), 1, sym_argument_list, - STATE(4127), 1, + STATE(2299), 1, + sym_or_block, + STATE(4251), 1, sym_type_parameters, - ACTIONS(5020), 2, + ACTIONS(5024), 2, anon_sym_is, anon_sym_BANGis, - ACTIONS(5094), 2, + ACTIONS(5078), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(5100), 2, + ACTIONS(5084), 2, anon_sym_in, anon_sym_BANGin, - STATE(2585), 2, + STATE(2583), 2, sym_line_comment, sym_block_comment, - ACTIONS(5084), 3, + ACTIONS(5070), 3, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5088), 3, + ACTIONS(5074), 3, anon_sym_SLASH, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(5096), 4, + ACTIONS(5080), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(5086), 5, + ACTIONS(5072), 5, anon_sym_STAR, anon_sym_PERCENT, anon_sym_LT_LT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - [69792] = 30, + [69562] = 8, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(4930), 1, - anon_sym_DOT, - ACTIONS(4932), 1, - anon_sym_LPAREN, - ACTIONS(4934), 1, - anon_sym_LBRACK, - ACTIONS(4936), 1, - anon_sym_QMARK, - ACTIONS(4938), 1, - anon_sym_BANG, - ACTIONS(4940), 1, - anon_sym_LBRACK2, - ACTIONS(4942), 1, - anon_sym_QMARK_DOT, - ACTIONS(4944), 1, - anon_sym_POUND_LBRACK, - ACTIONS(4994), 1, - anon_sym_as, - ACTIONS(5008), 1, - anon_sym_PLUS_PLUS, - ACTIONS(5010), 1, - anon_sym_DASH_DASH, - ACTIONS(5018), 1, - anon_sym_or, - ACTIONS(5090), 1, - anon_sym_CARET, - ACTIONS(5098), 1, - anon_sym_AMP_AMP, - ACTIONS(5102), 1, - anon_sym_PIPE_PIPE, + ACTIONS(5222), 1, + anon_sym_LBRACE, ACTIONS(5224), 1, - anon_sym_DOT_DOT, - ACTIONS(5228), 1, - anon_sym_RBRACK, - STATE(2396), 1, - sym_or_block, - STATE(2397), 1, - sym_argument_list, - STATE(4127), 1, - sym_type_parameters, - ACTIONS(5020), 2, - anon_sym_is, - anon_sym_BANGis, - ACTIONS(5094), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(5100), 2, - anon_sym_in, - anon_sym_BANGin, - STATE(2586), 2, + anon_sym_COMMA, + STATE(3756), 1, + aux_sym_match_expression_list_repeat1, + STATE(2584), 2, sym_line_comment, sym_block_comment, - ACTIONS(5084), 3, + ACTIONS(2532), 13, + anon_sym_DOT, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5088), 3, anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + anon_sym_QMARK, + anon_sym_BANG, + anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(5096), 4, + anon_sym_DOT_DOT, + ACTIONS(2530), 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(5086), 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, - [69898] = 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, + [69624] = 30, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(4930), 1, + ACTIONS(5090), 1, anon_sym_DOT, - ACTIONS(4932), 1, + ACTIONS(5092), 1, anon_sym_LPAREN, - ACTIONS(4934), 1, + ACTIONS(5094), 1, anon_sym_LBRACK, - ACTIONS(4936), 1, + ACTIONS(5096), 1, anon_sym_QMARK, - ACTIONS(4938), 1, + ACTIONS(5098), 1, anon_sym_BANG, - ACTIONS(4940), 1, + ACTIONS(5100), 1, anon_sym_LBRACK2, - ACTIONS(4942), 1, + ACTIONS(5102), 1, anon_sym_QMARK_DOT, - ACTIONS(4944), 1, + ACTIONS(5104), 1, anon_sym_POUND_LBRACK, - ACTIONS(4994), 1, + ACTIONS(5112), 1, + anon_sym_CARET, + ACTIONS(5120), 1, + anon_sym_AMP_AMP, + ACTIONS(5124), 1, anon_sym_as, - ACTIONS(5008), 1, + ACTIONS(5126), 1, anon_sym_PLUS_PLUS, - ACTIONS(5010), 1, + ACTIONS(5128), 1, anon_sym_DASH_DASH, - ACTIONS(5018), 1, - anon_sym_or, - ACTIONS(5090), 1, - anon_sym_CARET, - ACTIONS(5098), 1, - anon_sym_AMP_AMP, - ACTIONS(5102), 1, + ACTIONS(5130), 1, anon_sym_PIPE_PIPE, - ACTIONS(5224), 1, + ACTIONS(5132), 1, + anon_sym_or, + ACTIONS(5226), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(5228), 1, anon_sym_DOT_DOT, - ACTIONS(5230), 1, - anon_sym_RBRACK, - STATE(2396), 1, + STATE(2698), 1, sym_or_block, - STATE(2397), 1, + STATE(2702), 1, sym_argument_list, - STATE(4127), 1, + STATE(4053), 1, sym_type_parameters, - ACTIONS(5020), 2, - anon_sym_is, - anon_sym_BANGis, - ACTIONS(5094), 2, + ACTIONS(5116), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(5100), 2, + ACTIONS(5122), 2, anon_sym_in, anon_sym_BANGin, - STATE(2587), 2, + ACTIONS(5134), 2, + anon_sym_is, + anon_sym_BANGis, + STATE(2585), 2, sym_line_comment, sym_block_comment, - ACTIONS(5084), 3, + ACTIONS(5106), 3, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5088), 3, + ACTIONS(5110), 3, anon_sym_SLASH, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(5096), 4, + ACTIONS(5118), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(5086), 5, + ACTIONS(5108), 5, anon_sym_STAR, anon_sym_PERCENT, anon_sym_LT_LT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - [70004] = 29, + [69730] = 29, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(4713), 1, - anon_sym_LPAREN, ACTIONS(4719), 1, - anon_sym_LBRACK, + anon_sym_LPAREN, ACTIONS(4721), 1, - anon_sym_QMARK, + anon_sym_LBRACK, ACTIONS(4723), 1, - anon_sym_BANG, + anon_sym_QMARK, ACTIONS(4725), 1, - anon_sym_LBRACK2, + anon_sym_BANG, ACTIONS(4727), 1, + anon_sym_LBRACK2, + ACTIONS(4729), 1, anon_sym_POUND_LBRACK, - ACTIONS(4749), 1, + ACTIONS(4731), 1, anon_sym_as, - ACTIONS(4755), 1, + ACTIONS(4741), 1, anon_sym_PLUS_PLUS, - ACTIONS(4757), 1, + ACTIONS(4743), 1, anon_sym_DASH_DASH, - ACTIONS(4759), 1, + ACTIONS(4745), 1, anon_sym_AMP_AMP, - ACTIONS(4761), 1, + ACTIONS(4747), 1, anon_sym_PIPE_PIPE, - ACTIONS(4763), 1, + ACTIONS(4749), 1, anon_sym_or, - ACTIONS(5234), 1, + ACTIONS(5232), 1, anon_sym_COLON, - ACTIONS(5236), 1, + ACTIONS(5234), 1, anon_sym_CARET, - ACTIONS(5238), 1, + ACTIONS(5236), 1, anon_sym_LT_DASH, - STATE(2077), 1, + STATE(2080), 1, sym_argument_list, - STATE(2078), 1, + STATE(2081), 1, sym_or_block, - STATE(4022), 1, + STATE(4267), 1, sym_type_parameters, - ACTIONS(4711), 2, + ACTIONS(4717), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - ACTIONS(4751), 2, + ACTIONS(4737), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(4765), 2, + ACTIONS(4751), 2, anon_sym_is, anon_sym_BANGis, - ACTIONS(4767), 2, + ACTIONS(4753), 2, anon_sym_in, anon_sym_BANGin, - STATE(2588), 2, + STATE(2586), 2, sym_line_comment, sym_block_comment, - ACTIONS(4715), 3, + ACTIONS(4733), 3, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4717), 3, + ACTIONS(4735), 3, anon_sym_SLASH, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(4753), 4, + ACTIONS(4739), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(5232), 5, + ACTIONS(5230), 5, anon_sym_STAR, anon_sym_PERCENT, anon_sym_LT_LT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - [70108] = 29, + [69834] = 29, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(4932), 1, + ACTIONS(4938), 1, anon_sym_LPAREN, - ACTIONS(4934), 1, + ACTIONS(4940), 1, anon_sym_LBRACK, - ACTIONS(4938), 1, + ACTIONS(4944), 1, anon_sym_BANG, - ACTIONS(4940), 1, + ACTIONS(4946), 1, anon_sym_LBRACK2, - ACTIONS(4944), 1, + ACTIONS(4950), 1, anon_sym_POUND_LBRACK, - ACTIONS(4994), 1, + ACTIONS(4996), 1, anon_sym_as, - ACTIONS(5008), 1, + ACTIONS(5012), 1, anon_sym_PLUS_PLUS, - ACTIONS(5010), 1, + ACTIONS(5014), 1, anon_sym_DASH_DASH, - ACTIONS(5018), 1, + ACTIONS(5022), 1, anon_sym_or, - ACTIONS(5058), 1, + ACTIONS(5062), 1, anon_sym_LBRACE, - ACTIONS(5208), 1, + ACTIONS(5200), 1, anon_sym_CARET, - ACTIONS(5210), 1, + ACTIONS(5202), 1, anon_sym_AMP_AMP, - ACTIONS(5212), 1, + ACTIONS(5204), 1, anon_sym_PIPE_PIPE, - ACTIONS(5240), 1, + ACTIONS(5238), 1, anon_sym_QMARK, - STATE(2280), 1, + STATE(1756), 1, sym_block, - STATE(2396), 1, - sym_or_block, - STATE(2397), 1, + STATE(2298), 1, sym_argument_list, - STATE(4127), 1, + STATE(2299), 1, + sym_or_block, + STATE(4251), 1, sym_type_parameters, - ACTIONS(4942), 2, + ACTIONS(4948), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - ACTIONS(5020), 2, + ACTIONS(5024), 2, anon_sym_is, anon_sym_BANGis, - ACTIONS(5202), 2, + ACTIONS(5194), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(5214), 2, + ACTIONS(5206), 2, anon_sym_in, anon_sym_BANGin, - STATE(2589), 2, + STATE(2587), 2, sym_line_comment, sym_block_comment, - ACTIONS(5196), 3, + ACTIONS(5188), 3, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5200), 3, + ACTIONS(5192), 3, anon_sym_SLASH, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(5204), 4, + ACTIONS(5196), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(5198), 5, + ACTIONS(5190), 5, anon_sym_STAR, anon_sym_PERCENT, anon_sym_LT_LT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - [70212] = 6, + [69938] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(5242), 1, + ACTIONS(5240), 1, anon_sym_DOLLARelse, - STATE(2590), 2, + STATE(2588), 2, sym_line_comment, sym_block_comment, - ACTIONS(1899), 13, + ACTIONS(1913), 13, anon_sym_DOT, anon_sym_PIPE, anon_sym_PLUS, @@ -250866,7 +250796,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_GT_GT, anon_sym_DOT_DOT, - ACTIONS(1897), 27, + ACTIONS(1911), 27, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -250894,820 +250824,818 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [70270] = 30, + [69996] = 28, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(4930), 1, - anon_sym_DOT, - ACTIONS(4932), 1, + ACTIONS(4938), 1, anon_sym_LPAREN, - ACTIONS(4934), 1, + ACTIONS(4940), 1, anon_sym_LBRACK, - ACTIONS(4936), 1, + ACTIONS(4942), 1, anon_sym_QMARK, - ACTIONS(4938), 1, + ACTIONS(4944), 1, anon_sym_BANG, - ACTIONS(4940), 1, + ACTIONS(4946), 1, anon_sym_LBRACK2, - ACTIONS(4942), 1, - anon_sym_QMARK_DOT, - ACTIONS(4944), 1, + ACTIONS(4950), 1, anon_sym_POUND_LBRACK, - ACTIONS(4994), 1, + ACTIONS(4996), 1, anon_sym_as, - ACTIONS(5008), 1, + ACTIONS(5012), 1, anon_sym_PLUS_PLUS, - ACTIONS(5010), 1, + ACTIONS(5014), 1, anon_sym_DASH_DASH, - ACTIONS(5018), 1, - anon_sym_or, - ACTIONS(5090), 1, + ACTIONS(5016), 1, anon_sym_CARET, - ACTIONS(5098), 1, + ACTIONS(5018), 1, anon_sym_AMP_AMP, - ACTIONS(5102), 1, + ACTIONS(5020), 1, anon_sym_PIPE_PIPE, - ACTIONS(5224), 1, - anon_sym_DOT_DOT, - ACTIONS(5244), 1, - anon_sym_RBRACK, - STATE(2396), 1, - sym_or_block, - STATE(2397), 1, + ACTIONS(5022), 1, + anon_sym_or, + STATE(2298), 1, sym_argument_list, - STATE(4127), 1, + STATE(2299), 1, + sym_or_block, + STATE(4251), 1, sym_type_parameters, - ACTIONS(5020), 2, - anon_sym_is, - anon_sym_BANGis, - ACTIONS(5094), 2, + ACTIONS(1787), 2, + anon_sym_LBRACE, + anon_sym_COMMA, + ACTIONS(4948), 2, + anon_sym_DOT, + anon_sym_QMARK_DOT, + ACTIONS(5008), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(5100), 2, + ACTIONS(5026), 2, anon_sym_in, anon_sym_BANGin, - STATE(2591), 2, + ACTIONS(5242), 2, + anon_sym_is, + anon_sym_BANGis, + STATE(2589), 2, sym_line_comment, sym_block_comment, - ACTIONS(5084), 3, + ACTIONS(5002), 3, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5088), 3, + ACTIONS(5006), 3, anon_sym_SLASH, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(5096), 4, + ACTIONS(5010), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(5086), 5, + ACTIONS(5004), 5, anon_sym_STAR, anon_sym_PERCENT, anon_sym_LT_LT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - [70376] = 28, + [70098] = 29, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(4932), 1, + ACTIONS(4938), 1, anon_sym_LPAREN, - ACTIONS(4934), 1, + ACTIONS(4940), 1, anon_sym_LBRACK, - ACTIONS(4936), 1, - anon_sym_QMARK, - ACTIONS(4938), 1, + ACTIONS(4944), 1, anon_sym_BANG, - ACTIONS(4940), 1, + ACTIONS(4946), 1, anon_sym_LBRACK2, - ACTIONS(4944), 1, + ACTIONS(4950), 1, anon_sym_POUND_LBRACK, - ACTIONS(4994), 1, + ACTIONS(4996), 1, anon_sym_as, - ACTIONS(5008), 1, + ACTIONS(5012), 1, anon_sym_PLUS_PLUS, - ACTIONS(5010), 1, + ACTIONS(5014), 1, anon_sym_DASH_DASH, - ACTIONS(5018), 1, + ACTIONS(5022), 1, anon_sym_or, - ACTIONS(5146), 1, + ACTIONS(5068), 1, + anon_sym_LBRACE, + ACTIONS(5200), 1, anon_sym_CARET, - ACTIONS(5148), 1, + ACTIONS(5202), 1, anon_sym_AMP_AMP, - ACTIONS(5170), 1, + ACTIONS(5204), 1, anon_sym_PIPE_PIPE, - STATE(2396), 1, - sym_or_block, - STATE(2397), 1, + ACTIONS(5244), 1, + anon_sym_QMARK, + STATE(2284), 1, + sym_block, + STATE(2298), 1, sym_argument_list, - STATE(4127), 1, + STATE(2299), 1, + sym_or_block, + STATE(4251), 1, sym_type_parameters, - ACTIONS(1787), 2, - anon_sym_SEMI, - anon_sym_COMMA, - ACTIONS(4942), 2, + ACTIONS(4948), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - ACTIONS(5142), 2, + ACTIONS(5024), 2, + anon_sym_is, + anon_sym_BANGis, + ACTIONS(5194), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(5150), 2, + ACTIONS(5206), 2, anon_sym_in, anon_sym_BANGin, - ACTIONS(5246), 2, - anon_sym_is, - anon_sym_BANGis, - STATE(2592), 2, + STATE(2590), 2, sym_line_comment, sym_block_comment, - ACTIONS(5136), 3, + ACTIONS(5188), 3, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5140), 3, + ACTIONS(5192), 3, anon_sym_SLASH, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(5144), 4, + ACTIONS(5196), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(5138), 5, + ACTIONS(5190), 5, anon_sym_STAR, anon_sym_PERCENT, anon_sym_LT_LT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - [70478] = 29, + [70202] = 28, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(4705), 1, - anon_sym_LBRACE, - ACTIONS(4932), 1, + ACTIONS(4938), 1, anon_sym_LPAREN, - ACTIONS(4934), 1, + ACTIONS(4940), 1, anon_sym_LBRACK, - ACTIONS(4938), 1, + ACTIONS(4942), 1, + anon_sym_QMARK, + ACTIONS(4944), 1, anon_sym_BANG, - ACTIONS(4940), 1, + ACTIONS(4946), 1, anon_sym_LBRACK2, - ACTIONS(4944), 1, + ACTIONS(4950), 1, anon_sym_POUND_LBRACK, - ACTIONS(4994), 1, + ACTIONS(4996), 1, anon_sym_as, - ACTIONS(5008), 1, + ACTIONS(5012), 1, anon_sym_PLUS_PLUS, - ACTIONS(5010), 1, + ACTIONS(5014), 1, anon_sym_DASH_DASH, - ACTIONS(5018), 1, + ACTIONS(5022), 1, anon_sym_or, - ACTIONS(5208), 1, + ACTIONS(5166), 1, anon_sym_CARET, - ACTIONS(5210), 1, + ACTIONS(5168), 1, anon_sym_AMP_AMP, - ACTIONS(5212), 1, + ACTIONS(5170), 1, anon_sym_PIPE_PIPE, - ACTIONS(5248), 1, - anon_sym_QMARK, - STATE(1630), 1, - sym_block, - STATE(2396), 1, - sym_or_block, - STATE(2397), 1, + STATE(2298), 1, sym_argument_list, - STATE(4127), 1, + STATE(2299), 1, + sym_or_block, + STATE(4251), 1, sym_type_parameters, - ACTIONS(4942), 2, + ACTIONS(1787), 2, + anon_sym_SEMI, + anon_sym_COMMA, + ACTIONS(4948), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - ACTIONS(5020), 2, - anon_sym_is, - anon_sym_BANGis, - ACTIONS(5202), 2, + ACTIONS(5162), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(5214), 2, + ACTIONS(5172), 2, anon_sym_in, anon_sym_BANGin, - STATE(2593), 2, + ACTIONS(5242), 2, + anon_sym_is, + anon_sym_BANGis, + STATE(2591), 2, sym_line_comment, sym_block_comment, - ACTIONS(5196), 3, + ACTIONS(5156), 3, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5200), 3, + ACTIONS(5160), 3, anon_sym_SLASH, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(5204), 4, + ACTIONS(5164), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(5198), 5, + ACTIONS(5158), 5, anon_sym_STAR, anon_sym_PERCENT, anon_sym_LT_LT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - [70582] = 29, + [70304] = 28, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(4932), 1, + ACTIONS(4938), 1, anon_sym_LPAREN, - ACTIONS(4934), 1, + ACTIONS(4940), 1, anon_sym_LBRACK, - ACTIONS(4938), 1, + ACTIONS(4942), 1, + anon_sym_QMARK, + ACTIONS(4944), 1, anon_sym_BANG, - ACTIONS(4940), 1, + ACTIONS(4946), 1, anon_sym_LBRACK2, - ACTIONS(4944), 1, + ACTIONS(4950), 1, anon_sym_POUND_LBRACK, - ACTIONS(4994), 1, + ACTIONS(4996), 1, anon_sym_as, - ACTIONS(5008), 1, + ACTIONS(5012), 1, anon_sym_PLUS_PLUS, - ACTIONS(5010), 1, + ACTIONS(5014), 1, anon_sym_DASH_DASH, - ACTIONS(5018), 1, + ACTIONS(5022), 1, anon_sym_or, - ACTIONS(5052), 1, - anon_sym_LBRACE, - ACTIONS(5208), 1, + ACTIONS(5166), 1, anon_sym_CARET, - ACTIONS(5210), 1, + ACTIONS(5168), 1, anon_sym_AMP_AMP, - ACTIONS(5212), 1, + ACTIONS(5170), 1, anon_sym_PIPE_PIPE, - ACTIONS(5250), 1, - anon_sym_QMARK, - STATE(1759), 1, - sym_block, - STATE(2396), 1, - sym_or_block, - STATE(2397), 1, + STATE(2298), 1, sym_argument_list, - STATE(4127), 1, + STATE(2299), 1, + sym_or_block, + STATE(4251), 1, sym_type_parameters, - ACTIONS(4942), 2, + ACTIONS(1787), 2, + anon_sym_COMMA, + anon_sym_COLON_EQ, + ACTIONS(4948), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - ACTIONS(5020), 2, - anon_sym_is, - anon_sym_BANGis, - ACTIONS(5202), 2, + ACTIONS(5162), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(5214), 2, + ACTIONS(5172), 2, anon_sym_in, anon_sym_BANGin, - STATE(2594), 2, + ACTIONS(5246), 2, + anon_sym_is, + anon_sym_BANGis, + STATE(2592), 2, sym_line_comment, sym_block_comment, - ACTIONS(5196), 3, + ACTIONS(5156), 3, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5200), 3, + ACTIONS(5160), 3, anon_sym_SLASH, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(5204), 4, + ACTIONS(5164), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(5198), 5, + ACTIONS(5158), 5, anon_sym_STAR, anon_sym_PERCENT, anon_sym_LT_LT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - [70686] = 30, + [70406] = 29, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(4930), 1, - anon_sym_DOT, - ACTIONS(4932), 1, + ACTIONS(4703), 1, + anon_sym_LBRACE, + ACTIONS(4938), 1, anon_sym_LPAREN, - ACTIONS(4934), 1, + ACTIONS(4940), 1, anon_sym_LBRACK, - ACTIONS(4936), 1, - anon_sym_QMARK, - ACTIONS(4938), 1, + ACTIONS(4944), 1, anon_sym_BANG, - ACTIONS(4940), 1, + ACTIONS(4946), 1, anon_sym_LBRACK2, - ACTIONS(4942), 1, - anon_sym_QMARK_DOT, - ACTIONS(4944), 1, + ACTIONS(4950), 1, anon_sym_POUND_LBRACK, - ACTIONS(4994), 1, + ACTIONS(4996), 1, anon_sym_as, - ACTIONS(5008), 1, + ACTIONS(5012), 1, anon_sym_PLUS_PLUS, - ACTIONS(5010), 1, + ACTIONS(5014), 1, anon_sym_DASH_DASH, - ACTIONS(5018), 1, + ACTIONS(5022), 1, anon_sym_or, - ACTIONS(5090), 1, + ACTIONS(5200), 1, anon_sym_CARET, - ACTIONS(5098), 1, + ACTIONS(5202), 1, anon_sym_AMP_AMP, - ACTIONS(5102), 1, + ACTIONS(5204), 1, anon_sym_PIPE_PIPE, - ACTIONS(5224), 1, - anon_sym_DOT_DOT, - ACTIONS(5252), 1, - anon_sym_RBRACK, - STATE(2396), 1, - sym_or_block, - STATE(2397), 1, + ACTIONS(5248), 1, + anon_sym_QMARK, + STATE(1648), 1, + sym_block, + STATE(2298), 1, sym_argument_list, - STATE(4127), 1, + STATE(2299), 1, + sym_or_block, + STATE(4251), 1, sym_type_parameters, - ACTIONS(5020), 2, + ACTIONS(4948), 2, + anon_sym_DOT, + anon_sym_QMARK_DOT, + ACTIONS(5024), 2, anon_sym_is, anon_sym_BANGis, - ACTIONS(5094), 2, + ACTIONS(5194), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(5100), 2, + ACTIONS(5206), 2, anon_sym_in, anon_sym_BANGin, - STATE(2595), 2, + STATE(2593), 2, sym_line_comment, sym_block_comment, - ACTIONS(5084), 3, + ACTIONS(5188), 3, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5088), 3, + ACTIONS(5192), 3, anon_sym_SLASH, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(5096), 4, + ACTIONS(5196), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(5086), 5, + ACTIONS(5190), 5, anon_sym_STAR, anon_sym_PERCENT, anon_sym_LT_LT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - [70792] = 29, + [70510] = 30, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(4932), 1, + ACTIONS(4936), 1, + anon_sym_DOT, + ACTIONS(4938), 1, anon_sym_LPAREN, - ACTIONS(4934), 1, + ACTIONS(4940), 1, anon_sym_LBRACK, - ACTIONS(4938), 1, + ACTIONS(4942), 1, + anon_sym_QMARK, + ACTIONS(4944), 1, anon_sym_BANG, - ACTIONS(4940), 1, + ACTIONS(4946), 1, anon_sym_LBRACK2, - ACTIONS(4944), 1, + ACTIONS(4948), 1, + anon_sym_QMARK_DOT, + ACTIONS(4950), 1, anon_sym_POUND_LBRACK, - ACTIONS(4994), 1, + ACTIONS(4996), 1, anon_sym_as, - ACTIONS(5008), 1, + ACTIONS(5012), 1, anon_sym_PLUS_PLUS, - ACTIONS(5010), 1, + ACTIONS(5014), 1, anon_sym_DASH_DASH, - ACTIONS(5018), 1, + ACTIONS(5022), 1, anon_sym_or, - ACTIONS(5208), 1, + ACTIONS(5076), 1, anon_sym_CARET, - ACTIONS(5210), 1, + ACTIONS(5082), 1, anon_sym_AMP_AMP, - ACTIONS(5212), 1, + ACTIONS(5114), 1, anon_sym_PIPE_PIPE, - ACTIONS(5254), 1, - anon_sym_LBRACE, - ACTIONS(5256), 1, - anon_sym_QMARK, - STATE(1269), 1, - sym_block, - STATE(2396), 1, - sym_or_block, - STATE(2397), 1, + ACTIONS(5220), 1, + anon_sym_DOT_DOT, + ACTIONS(5250), 1, + anon_sym_RBRACK, + STATE(2298), 1, sym_argument_list, - STATE(4127), 1, + STATE(2299), 1, + sym_or_block, + STATE(4251), 1, sym_type_parameters, - ACTIONS(4942), 2, - anon_sym_DOT, - anon_sym_QMARK_DOT, - ACTIONS(5020), 2, + ACTIONS(5024), 2, anon_sym_is, anon_sym_BANGis, - ACTIONS(5202), 2, + ACTIONS(5078), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(5214), 2, + ACTIONS(5084), 2, anon_sym_in, anon_sym_BANGin, - STATE(2596), 2, + STATE(2594), 2, sym_line_comment, sym_block_comment, - ACTIONS(5196), 3, + ACTIONS(5070), 3, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5200), 3, + ACTIONS(5074), 3, anon_sym_SLASH, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(5204), 4, + ACTIONS(5080), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(5198), 5, + ACTIONS(5072), 5, anon_sym_STAR, anon_sym_PERCENT, anon_sym_LT_LT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - [70896] = 28, + [70616] = 29, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(4932), 1, + ACTIONS(4938), 1, anon_sym_LPAREN, - ACTIONS(4934), 1, + ACTIONS(4940), 1, anon_sym_LBRACK, - ACTIONS(4936), 1, - anon_sym_QMARK, - ACTIONS(4938), 1, + ACTIONS(4944), 1, anon_sym_BANG, - ACTIONS(4940), 1, + ACTIONS(4946), 1, anon_sym_LBRACK2, - ACTIONS(4944), 1, + ACTIONS(4950), 1, anon_sym_POUND_LBRACK, - ACTIONS(4994), 1, + ACTIONS(4996), 1, anon_sym_as, - ACTIONS(5008), 1, + ACTIONS(5012), 1, anon_sym_PLUS_PLUS, - ACTIONS(5010), 1, + ACTIONS(5014), 1, anon_sym_DASH_DASH, - ACTIONS(5012), 1, + ACTIONS(5022), 1, + anon_sym_or, + ACTIONS(5040), 1, + anon_sym_LBRACE, + ACTIONS(5200), 1, anon_sym_CARET, - ACTIONS(5014), 1, + ACTIONS(5202), 1, anon_sym_AMP_AMP, - ACTIONS(5016), 1, + ACTIONS(5204), 1, anon_sym_PIPE_PIPE, - ACTIONS(5018), 1, - anon_sym_or, - STATE(2396), 1, - sym_or_block, - STATE(2397), 1, + ACTIONS(5252), 1, + anon_sym_QMARK, + STATE(2298), 1, sym_argument_list, - STATE(4127), 1, + STATE(2299), 1, + sym_or_block, + STATE(2806), 1, + sym_block, + STATE(4251), 1, sym_type_parameters, - ACTIONS(3524), 2, - anon_sym_LBRACE, - anon_sym_COMMA, - ACTIONS(4942), 2, + ACTIONS(4948), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - ACTIONS(5004), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(5020), 2, + ACTIONS(5024), 2, anon_sym_is, anon_sym_BANGis, - ACTIONS(5022), 2, + ACTIONS(5194), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(5206), 2, anon_sym_in, anon_sym_BANGin, - STATE(2597), 2, + STATE(2595), 2, sym_line_comment, sym_block_comment, - ACTIONS(4998), 3, + ACTIONS(5188), 3, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5002), 3, + ACTIONS(5192), 3, anon_sym_SLASH, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(5006), 4, + ACTIONS(5196), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(5000), 5, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - [70998] = 5, - ACTIONS(497), 1, - anon_sym_SLASH_SLASH, - ACTIONS(499), 1, - anon_sym_SLASH_STAR, - ACTIONS(2256), 1, - anon_sym_LBRACK, - STATE(2598), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(2253), 40, - anon_sym_LF, - anon_sym_CR, - anon_sym_CR_LF, - anon_sym_DOT, - anon_sym_as, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, + ACTIONS(5190), 5, anon_sym_STAR, - anon_sym_SLASH, anon_sym_PERCENT, - anon_sym_LT, - anon_sym_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_LBRACK2, - anon_sym_CARET, - anon_sym_AMP, anon_sym_LT_LT, - anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_or, - anon_sym_QMARK_DOT, - anon_sym_POUND_LBRACK, - anon_sym_is, - anon_sym_BANGis, - anon_sym_in, - anon_sym_BANGin, - [71054] = 30, + [70720] = 30, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(4930), 1, + ACTIONS(4936), 1, anon_sym_DOT, - ACTIONS(4932), 1, + ACTIONS(4938), 1, anon_sym_LPAREN, - ACTIONS(4934), 1, + ACTIONS(4940), 1, anon_sym_LBRACK, - ACTIONS(4936), 1, + ACTIONS(4942), 1, anon_sym_QMARK, - ACTIONS(4938), 1, + ACTIONS(4944), 1, anon_sym_BANG, - ACTIONS(4940), 1, + ACTIONS(4946), 1, anon_sym_LBRACK2, - ACTIONS(4942), 1, + ACTIONS(4948), 1, anon_sym_QMARK_DOT, - ACTIONS(4944), 1, + ACTIONS(4950), 1, anon_sym_POUND_LBRACK, - ACTIONS(4994), 1, + ACTIONS(4996), 1, anon_sym_as, - ACTIONS(5008), 1, + ACTIONS(5012), 1, anon_sym_PLUS_PLUS, - ACTIONS(5010), 1, + ACTIONS(5014), 1, anon_sym_DASH_DASH, - ACTIONS(5018), 1, + ACTIONS(5022), 1, anon_sym_or, - ACTIONS(5090), 1, + ACTIONS(5076), 1, anon_sym_CARET, - ACTIONS(5098), 1, + ACTIONS(5082), 1, anon_sym_AMP_AMP, - ACTIONS(5102), 1, + ACTIONS(5114), 1, anon_sym_PIPE_PIPE, - ACTIONS(5224), 1, + ACTIONS(5220), 1, anon_sym_DOT_DOT, - ACTIONS(5258), 1, + ACTIONS(5254), 1, anon_sym_RBRACK, - STATE(2396), 1, - sym_or_block, - STATE(2397), 1, + STATE(2298), 1, sym_argument_list, - STATE(4127), 1, + STATE(2299), 1, + sym_or_block, + STATE(4251), 1, sym_type_parameters, - ACTIONS(5020), 2, + ACTIONS(5024), 2, anon_sym_is, anon_sym_BANGis, - ACTIONS(5094), 2, + ACTIONS(5078), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(5100), 2, + ACTIONS(5084), 2, anon_sym_in, anon_sym_BANGin, - STATE(2599), 2, + STATE(2596), 2, sym_line_comment, sym_block_comment, - ACTIONS(5084), 3, + ACTIONS(5070), 3, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5088), 3, + ACTIONS(5074), 3, anon_sym_SLASH, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(5096), 4, + ACTIONS(5080), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(5086), 5, + ACTIONS(5072), 5, anon_sym_STAR, anon_sym_PERCENT, anon_sym_LT_LT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - [71160] = 30, + [70826] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(4930), 1, + STATE(2717), 1, + sym_type_parameters, + STATE(2597), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(1881), 13, anon_sym_DOT, - ACTIONS(4932), 1, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + anon_sym_QMARK, + anon_sym_BANG, + anon_sym_LBRACK2, + anon_sym_AMP, + anon_sym_GT_GT, + anon_sym_DOT_DOT, + ACTIONS(1879), 27, + anon_sym_as, + anon_sym_LBRACE, + anon_sym_COMMA, anon_sym_LPAREN, - ACTIONS(4934), 1, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_DOT_DOT_DOT, anon_sym_LBRACK, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_AMP_CARET, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_or, + anon_sym_QMARK_DOT, + anon_sym_POUND_LBRACK, + anon_sym_is, + anon_sym_BANGis, + anon_sym_in, + anon_sym_BANGin, + [70884] = 30, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, ACTIONS(4936), 1, - anon_sym_QMARK, + anon_sym_DOT, ACTIONS(4938), 1, - anon_sym_BANG, + anon_sym_LPAREN, ACTIONS(4940), 1, - anon_sym_LBRACK2, + anon_sym_LBRACK, ACTIONS(4942), 1, - anon_sym_QMARK_DOT, + anon_sym_QMARK, ACTIONS(4944), 1, + anon_sym_BANG, + ACTIONS(4946), 1, + anon_sym_LBRACK2, + ACTIONS(4948), 1, + anon_sym_QMARK_DOT, + ACTIONS(4950), 1, anon_sym_POUND_LBRACK, - ACTIONS(4994), 1, + ACTIONS(4996), 1, anon_sym_as, - ACTIONS(5008), 1, + ACTIONS(5012), 1, anon_sym_PLUS_PLUS, - ACTIONS(5010), 1, + ACTIONS(5014), 1, anon_sym_DASH_DASH, - ACTIONS(5018), 1, + ACTIONS(5022), 1, anon_sym_or, - ACTIONS(5090), 1, + ACTIONS(5076), 1, anon_sym_CARET, - ACTIONS(5098), 1, + ACTIONS(5082), 1, anon_sym_AMP_AMP, - ACTIONS(5102), 1, + ACTIONS(5114), 1, anon_sym_PIPE_PIPE, - ACTIONS(5224), 1, + ACTIONS(5220), 1, anon_sym_DOT_DOT, - ACTIONS(5260), 1, + ACTIONS(5256), 1, anon_sym_RBRACK, - STATE(2396), 1, - sym_or_block, - STATE(2397), 1, + STATE(2298), 1, sym_argument_list, - STATE(4127), 1, + STATE(2299), 1, + sym_or_block, + STATE(4251), 1, sym_type_parameters, - ACTIONS(5020), 2, + ACTIONS(5024), 2, anon_sym_is, anon_sym_BANGis, - ACTIONS(5094), 2, + ACTIONS(5078), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(5100), 2, + ACTIONS(5084), 2, anon_sym_in, anon_sym_BANGin, - STATE(2600), 2, + STATE(2598), 2, sym_line_comment, sym_block_comment, - ACTIONS(5084), 3, + ACTIONS(5070), 3, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5088), 3, + ACTIONS(5074), 3, anon_sym_SLASH, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(5096), 4, + ACTIONS(5080), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(5086), 5, + ACTIONS(5072), 5, anon_sym_STAR, anon_sym_PERCENT, anon_sym_LT_LT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - [71266] = 29, + [70990] = 30, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(4932), 1, + ACTIONS(4936), 1, + anon_sym_DOT, + ACTIONS(4938), 1, anon_sym_LPAREN, - ACTIONS(4934), 1, + ACTIONS(4940), 1, anon_sym_LBRACK, - ACTIONS(4938), 1, + ACTIONS(4942), 1, + anon_sym_QMARK, + ACTIONS(4944), 1, anon_sym_BANG, - ACTIONS(4940), 1, + ACTIONS(4946), 1, anon_sym_LBRACK2, - ACTIONS(4944), 1, + ACTIONS(4948), 1, + anon_sym_QMARK_DOT, + ACTIONS(4950), 1, anon_sym_POUND_LBRACK, - ACTIONS(4994), 1, + ACTIONS(4996), 1, anon_sym_as, - ACTIONS(5008), 1, + ACTIONS(5012), 1, anon_sym_PLUS_PLUS, - ACTIONS(5010), 1, + ACTIONS(5014), 1, anon_sym_DASH_DASH, - ACTIONS(5018), 1, + ACTIONS(5022), 1, anon_sym_or, - ACTIONS(5050), 1, - anon_sym_LBRACE, - ACTIONS(5208), 1, + ACTIONS(5076), 1, anon_sym_CARET, - ACTIONS(5210), 1, + ACTIONS(5082), 1, anon_sym_AMP_AMP, - ACTIONS(5212), 1, + ACTIONS(5114), 1, anon_sym_PIPE_PIPE, - ACTIONS(5262), 1, - anon_sym_QMARK, - STATE(2396), 1, - sym_or_block, - STATE(2397), 1, + ACTIONS(5220), 1, + anon_sym_DOT_DOT, + ACTIONS(5258), 1, + anon_sym_RBRACK, + STATE(2298), 1, sym_argument_list, - STATE(2580), 1, - sym_block, - STATE(4127), 1, + STATE(2299), 1, + sym_or_block, + STATE(4251), 1, sym_type_parameters, - ACTIONS(4942), 2, - anon_sym_DOT, - anon_sym_QMARK_DOT, - ACTIONS(5020), 2, + ACTIONS(5024), 2, anon_sym_is, anon_sym_BANGis, - ACTIONS(5202), 2, + ACTIONS(5078), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(5214), 2, + ACTIONS(5084), 2, anon_sym_in, anon_sym_BANGin, - STATE(2601), 2, + STATE(2599), 2, sym_line_comment, sym_block_comment, - ACTIONS(5196), 3, + ACTIONS(5070), 3, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5200), 3, + ACTIONS(5074), 3, anon_sym_SLASH, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(5204), 4, + ACTIONS(5080), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(5198), 5, + ACTIONS(5072), 5, anon_sym_STAR, anon_sym_PERCENT, anon_sym_LT_LT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - [71370] = 6, + [71096] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - STATE(2714), 1, - sym_type_parameters, - STATE(2602), 2, + STATE(2600), 2, sym_line_comment, sym_block_comment, - ACTIONS(1905), 13, + ACTIONS(1809), 13, anon_sym_DOT, anon_sym_PIPE, anon_sym_PLUS, @@ -251721,7 +251649,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_GT_GT, anon_sym_DOT_DOT, - ACTIONS(1903), 27, + ACTIONS(1807), 28, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -251749,45 +251677,47 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [71428] = 5, - ACTIONS(3), 1, + anon_sym_COLON_EQ, + [71152] = 5, + ACTIONS(497), 1, anon_sym_SLASH_SLASH, - ACTIONS(5), 1, + ACTIONS(499), 1, anon_sym_SLASH_STAR, - STATE(2603), 2, + ACTIONS(2222), 1, + anon_sym_LBRACK, + STATE(2601), 2, sym_line_comment, sym_block_comment, - ACTIONS(2663), 13, + ACTIONS(2219), 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(2661), 28, - anon_sym_as, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_STAR, - anon_sym_PERCENT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_LBRACK, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, + anon_sym_QMARK, + anon_sym_BANG, + anon_sym_LBRACK2, anon_sym_CARET, + anon_sym_AMP, anon_sym_LT_LT, + anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, anon_sym_AMP_AMP, @@ -251799,796 +251729,903 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - anon_sym_COLON_EQ, - [71484] = 29, + [71208] = 30, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(4932), 1, + ACTIONS(4936), 1, + anon_sym_DOT, + ACTIONS(4938), 1, anon_sym_LPAREN, - ACTIONS(4934), 1, + ACTIONS(4940), 1, anon_sym_LBRACK, - ACTIONS(4938), 1, + ACTIONS(4942), 1, + anon_sym_QMARK, + ACTIONS(4944), 1, anon_sym_BANG, - ACTIONS(4940), 1, + ACTIONS(4946), 1, anon_sym_LBRACK2, - ACTIONS(4944), 1, + ACTIONS(4948), 1, + anon_sym_QMARK_DOT, + ACTIONS(4950), 1, anon_sym_POUND_LBRACK, - ACTIONS(4994), 1, + ACTIONS(4996), 1, anon_sym_as, - ACTIONS(5008), 1, + ACTIONS(5012), 1, anon_sym_PLUS_PLUS, - ACTIONS(5010), 1, + ACTIONS(5014), 1, anon_sym_DASH_DASH, - ACTIONS(5018), 1, + ACTIONS(5022), 1, anon_sym_or, - ACTIONS(5042), 1, - anon_sym_LBRACE, - ACTIONS(5208), 1, + ACTIONS(5076), 1, anon_sym_CARET, - ACTIONS(5210), 1, + ACTIONS(5082), 1, anon_sym_AMP_AMP, - ACTIONS(5212), 1, + ACTIONS(5114), 1, anon_sym_PIPE_PIPE, - ACTIONS(5264), 1, - anon_sym_QMARK, - STATE(2396), 1, - sym_or_block, - STATE(2397), 1, + ACTIONS(5220), 1, + anon_sym_DOT_DOT, + ACTIONS(5260), 1, + anon_sym_RBRACK, + STATE(2298), 1, sym_argument_list, - STATE(2805), 1, - sym_block, - STATE(4127), 1, + STATE(2299), 1, + sym_or_block, + STATE(4251), 1, sym_type_parameters, - ACTIONS(4942), 2, - anon_sym_DOT, - anon_sym_QMARK_DOT, - ACTIONS(5020), 2, + ACTIONS(5024), 2, anon_sym_is, anon_sym_BANGis, - ACTIONS(5202), 2, + ACTIONS(5078), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(5214), 2, + ACTIONS(5084), 2, anon_sym_in, anon_sym_BANGin, - STATE(2604), 2, + STATE(2602), 2, sym_line_comment, sym_block_comment, - ACTIONS(5196), 3, + ACTIONS(5070), 3, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5200), 3, + ACTIONS(5074), 3, anon_sym_SLASH, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(5204), 4, + ACTIONS(5080), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(5198), 5, + ACTIONS(5072), 5, anon_sym_STAR, anon_sym_PERCENT, anon_sym_LT_LT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - [71588] = 28, + [71314] = 29, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(4932), 1, + ACTIONS(4938), 1, anon_sym_LPAREN, - ACTIONS(4934), 1, + ACTIONS(4940), 1, anon_sym_LBRACK, - ACTIONS(4936), 1, - anon_sym_QMARK, - ACTIONS(4938), 1, + ACTIONS(4944), 1, anon_sym_BANG, - ACTIONS(4940), 1, + ACTIONS(4946), 1, anon_sym_LBRACK2, - ACTIONS(4944), 1, + ACTIONS(4950), 1, anon_sym_POUND_LBRACK, - ACTIONS(4994), 1, + ACTIONS(4996), 1, anon_sym_as, - ACTIONS(5008), 1, + ACTIONS(4998), 1, + anon_sym_LBRACE, + ACTIONS(5012), 1, anon_sym_PLUS_PLUS, - ACTIONS(5010), 1, + ACTIONS(5014), 1, anon_sym_DASH_DASH, - ACTIONS(5018), 1, + ACTIONS(5022), 1, anon_sym_or, - ACTIONS(5146), 1, + ACTIONS(5200), 1, anon_sym_CARET, - ACTIONS(5148), 1, + ACTIONS(5202), 1, anon_sym_AMP_AMP, - ACTIONS(5170), 1, + ACTIONS(5204), 1, anon_sym_PIPE_PIPE, - STATE(2396), 1, - sym_or_block, - STATE(2397), 1, + ACTIONS(5262), 1, + anon_sym_QMARK, + STATE(2298), 1, sym_argument_list, - STATE(4127), 1, + STATE(2299), 1, + sym_or_block, + STATE(2582), 1, + sym_block, + STATE(4251), 1, sym_type_parameters, - ACTIONS(1787), 2, - anon_sym_COMMA, - anon_sym_COLON_EQ, - ACTIONS(4942), 2, + ACTIONS(4948), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - ACTIONS(5142), 2, + ACTIONS(5024), 2, + anon_sym_is, + anon_sym_BANGis, + ACTIONS(5194), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(5150), 2, + ACTIONS(5206), 2, anon_sym_in, anon_sym_BANGin, - ACTIONS(5266), 2, - anon_sym_is, - anon_sym_BANGis, - STATE(2605), 2, + STATE(2603), 2, sym_line_comment, sym_block_comment, - ACTIONS(5136), 3, + ACTIONS(5188), 3, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5140), 3, + ACTIONS(5192), 3, anon_sym_SLASH, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(5144), 4, + ACTIONS(5196), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(5138), 5, + ACTIONS(5190), 5, anon_sym_STAR, anon_sym_PERCENT, anon_sym_LT_LT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - [71690] = 29, + [71418] = 30, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(4932), 1, + ACTIONS(4936), 1, + anon_sym_DOT, + ACTIONS(4938), 1, anon_sym_LPAREN, - ACTIONS(4934), 1, + ACTIONS(4940), 1, anon_sym_LBRACK, - ACTIONS(4938), 1, + ACTIONS(4942), 1, + anon_sym_QMARK, + ACTIONS(4944), 1, anon_sym_BANG, - ACTIONS(4940), 1, + ACTIONS(4946), 1, anon_sym_LBRACK2, - ACTIONS(4944), 1, + ACTIONS(4948), 1, + anon_sym_QMARK_DOT, + ACTIONS(4950), 1, anon_sym_POUND_LBRACK, - ACTIONS(4994), 1, + ACTIONS(4996), 1, anon_sym_as, - ACTIONS(5008), 1, + ACTIONS(5012), 1, anon_sym_PLUS_PLUS, - ACTIONS(5010), 1, + ACTIONS(5014), 1, anon_sym_DASH_DASH, - ACTIONS(5018), 1, + ACTIONS(5022), 1, anon_sym_or, - ACTIONS(5060), 1, - anon_sym_LBRACE, - ACTIONS(5208), 1, + ACTIONS(5076), 1, anon_sym_CARET, - ACTIONS(5210), 1, + ACTIONS(5082), 1, anon_sym_AMP_AMP, - ACTIONS(5212), 1, + ACTIONS(5114), 1, anon_sym_PIPE_PIPE, - ACTIONS(5268), 1, - anon_sym_QMARK, - STATE(2396), 1, - sym_or_block, - STATE(2397), 1, + ACTIONS(5220), 1, + anon_sym_DOT_DOT, + ACTIONS(5264), 1, + anon_sym_RBRACK, + STATE(2298), 1, sym_argument_list, - STATE(2421), 1, - sym_block, - STATE(4127), 1, + STATE(2299), 1, + sym_or_block, + STATE(4251), 1, sym_type_parameters, - ACTIONS(4942), 2, - anon_sym_DOT, - anon_sym_QMARK_DOT, - ACTIONS(5020), 2, + ACTIONS(5024), 2, anon_sym_is, anon_sym_BANGis, - ACTIONS(5202), 2, + ACTIONS(5078), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(5214), 2, + ACTIONS(5084), 2, anon_sym_in, anon_sym_BANGin, - STATE(2606), 2, + STATE(2604), 2, sym_line_comment, sym_block_comment, - ACTIONS(5196), 3, + ACTIONS(5070), 3, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5200), 3, + ACTIONS(5074), 3, anon_sym_SLASH, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(5204), 4, + ACTIONS(5080), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(5198), 5, + ACTIONS(5072), 5, anon_sym_STAR, anon_sym_PERCENT, anon_sym_LT_LT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - [71794] = 29, + [71524] = 30, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(4932), 1, + ACTIONS(4936), 1, + anon_sym_DOT, + ACTIONS(4938), 1, anon_sym_LPAREN, - ACTIONS(4934), 1, + ACTIONS(4940), 1, anon_sym_LBRACK, - ACTIONS(4938), 1, + ACTIONS(4942), 1, + anon_sym_QMARK, + ACTIONS(4944), 1, anon_sym_BANG, - ACTIONS(4940), 1, + ACTIONS(4946), 1, anon_sym_LBRACK2, - ACTIONS(4944), 1, + ACTIONS(4948), 1, + anon_sym_QMARK_DOT, + ACTIONS(4950), 1, anon_sym_POUND_LBRACK, - ACTIONS(4994), 1, + ACTIONS(4996), 1, anon_sym_as, - ACTIONS(5008), 1, + ACTIONS(5012), 1, anon_sym_PLUS_PLUS, - ACTIONS(5010), 1, + ACTIONS(5014), 1, anon_sym_DASH_DASH, - ACTIONS(5018), 1, + ACTIONS(5022), 1, anon_sym_or, - ACTIONS(5208), 1, + ACTIONS(5076), 1, anon_sym_CARET, - ACTIONS(5210), 1, + ACTIONS(5082), 1, anon_sym_AMP_AMP, - ACTIONS(5212), 1, + ACTIONS(5114), 1, anon_sym_PIPE_PIPE, - ACTIONS(5270), 1, - anon_sym_LBRACE, - ACTIONS(5272), 1, - anon_sym_QMARK, - STATE(261), 1, - sym_block, - STATE(2396), 1, - sym_or_block, - STATE(2397), 1, + ACTIONS(5220), 1, + anon_sym_DOT_DOT, + ACTIONS(5266), 1, + anon_sym_RBRACK, + STATE(2298), 1, sym_argument_list, - STATE(4127), 1, + STATE(2299), 1, + sym_or_block, + STATE(4251), 1, sym_type_parameters, - ACTIONS(4942), 2, - anon_sym_DOT, - anon_sym_QMARK_DOT, - ACTIONS(5020), 2, + ACTIONS(5024), 2, anon_sym_is, anon_sym_BANGis, - ACTIONS(5202), 2, + ACTIONS(5078), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(5214), 2, + ACTIONS(5084), 2, anon_sym_in, anon_sym_BANGin, - STATE(2607), 2, + STATE(2605), 2, sym_line_comment, sym_block_comment, - ACTIONS(5196), 3, + ACTIONS(5070), 3, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5200), 3, + ACTIONS(5074), 3, anon_sym_SLASH, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(5204), 4, + ACTIONS(5080), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(5198), 5, + ACTIONS(5072), 5, anon_sym_STAR, anon_sym_PERCENT, anon_sym_LT_LT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - [71898] = 30, + [71630] = 7, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(4930), 1, - anon_sym_DOT, - ACTIONS(4932), 1, - anon_sym_LPAREN, - ACTIONS(4934), 1, + ACTIONS(1894), 1, anon_sym_LBRACK, - ACTIONS(4936), 1, + ACTIONS(2473), 1, + anon_sym_LBRACE, + STATE(2606), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(1889), 11, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, anon_sym_QMARK, - ACTIONS(4938), 1, anon_sym_BANG, - ACTIONS(4940), 1, anon_sym_LBRACK2, - ACTIONS(4942), 1, + anon_sym_AMP, + anon_sym_GT_GT, + ACTIONS(1887), 28, + anon_sym_SEMI, + anon_sym_DOT, + anon_sym_as, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_AMP_CARET, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_or, anon_sym_QMARK_DOT, + anon_sym_POUND_LBRACK, + anon_sym_is, + anon_sym_BANGis, + anon_sym_in, + anon_sym_BANGin, + anon_sym_COLON_EQ, + [71690] = 29, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(4938), 1, + anon_sym_LPAREN, + ACTIONS(4940), 1, + anon_sym_LBRACK, ACTIONS(4944), 1, + anon_sym_BANG, + ACTIONS(4946), 1, + anon_sym_LBRACK2, + ACTIONS(4950), 1, anon_sym_POUND_LBRACK, - ACTIONS(4994), 1, + ACTIONS(4996), 1, anon_sym_as, - ACTIONS(5008), 1, + ACTIONS(5012), 1, anon_sym_PLUS_PLUS, - ACTIONS(5010), 1, + ACTIONS(5014), 1, anon_sym_DASH_DASH, - ACTIONS(5018), 1, + ACTIONS(5022), 1, anon_sym_or, - ACTIONS(5090), 1, + ACTIONS(5058), 1, + anon_sym_LBRACE, + ACTIONS(5200), 1, anon_sym_CARET, - ACTIONS(5098), 1, + ACTIONS(5202), 1, anon_sym_AMP_AMP, - ACTIONS(5102), 1, + ACTIONS(5204), 1, anon_sym_PIPE_PIPE, - ACTIONS(5224), 1, - anon_sym_DOT_DOT, - ACTIONS(5274), 1, - anon_sym_RBRACK, - STATE(2396), 1, - sym_or_block, - STATE(2397), 1, + ACTIONS(5268), 1, + anon_sym_QMARK, + STATE(1910), 1, + sym_block, + STATE(2298), 1, sym_argument_list, - STATE(4127), 1, + STATE(2299), 1, + sym_or_block, + STATE(4251), 1, sym_type_parameters, - ACTIONS(5020), 2, + ACTIONS(4948), 2, + anon_sym_DOT, + anon_sym_QMARK_DOT, + ACTIONS(5024), 2, anon_sym_is, anon_sym_BANGis, - ACTIONS(5094), 2, + ACTIONS(5194), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(5100), 2, + ACTIONS(5206), 2, anon_sym_in, anon_sym_BANGin, - STATE(2608), 2, + STATE(2607), 2, sym_line_comment, sym_block_comment, - ACTIONS(5084), 3, + ACTIONS(5188), 3, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5088), 3, + ACTIONS(5192), 3, anon_sym_SLASH, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(5096), 4, + ACTIONS(5196), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(5086), 5, + ACTIONS(5190), 5, anon_sym_STAR, anon_sym_PERCENT, anon_sym_LT_LT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - [72004] = 30, + [71794] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(4930), 1, + STATE(2608), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(2676), 13, anon_sym_DOT, - ACTIONS(4932), 1, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + anon_sym_QMARK, + anon_sym_BANG, + anon_sym_LBRACK2, + anon_sym_AMP, + anon_sym_GT_GT, + anon_sym_DOT_DOT, + ACTIONS(2674), 28, + anon_sym_as, + anon_sym_LBRACE, + anon_sym_COMMA, anon_sym_LPAREN, - ACTIONS(4934), 1, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_DOT_DOT_DOT, anon_sym_LBRACK, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_AMP_CARET, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_or, + anon_sym_QMARK_DOT, + anon_sym_POUND_LBRACK, + anon_sym_is, + anon_sym_BANGis, + anon_sym_in, + anon_sym_BANGin, + anon_sym_COLON_EQ, + [71850] = 30, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, ACTIONS(4936), 1, - anon_sym_QMARK, + anon_sym_DOT, ACTIONS(4938), 1, - anon_sym_BANG, + anon_sym_LPAREN, ACTIONS(4940), 1, - anon_sym_LBRACK2, + anon_sym_LBRACK, ACTIONS(4942), 1, - anon_sym_QMARK_DOT, + anon_sym_QMARK, ACTIONS(4944), 1, + anon_sym_BANG, + ACTIONS(4946), 1, + anon_sym_LBRACK2, + ACTIONS(4948), 1, + anon_sym_QMARK_DOT, + ACTIONS(4950), 1, anon_sym_POUND_LBRACK, - ACTIONS(4994), 1, + ACTIONS(4996), 1, anon_sym_as, - ACTIONS(5008), 1, + ACTIONS(5012), 1, anon_sym_PLUS_PLUS, - ACTIONS(5010), 1, + ACTIONS(5014), 1, anon_sym_DASH_DASH, - ACTIONS(5018), 1, + ACTIONS(5022), 1, anon_sym_or, - ACTIONS(5090), 1, + ACTIONS(5076), 1, anon_sym_CARET, - ACTIONS(5098), 1, + ACTIONS(5082), 1, anon_sym_AMP_AMP, - ACTIONS(5102), 1, + ACTIONS(5114), 1, anon_sym_PIPE_PIPE, - ACTIONS(5224), 1, + ACTIONS(5220), 1, anon_sym_DOT_DOT, - ACTIONS(5276), 1, + ACTIONS(5270), 1, anon_sym_RBRACK, - STATE(2396), 1, - sym_or_block, - STATE(2397), 1, + STATE(2298), 1, sym_argument_list, - STATE(4127), 1, + STATE(2299), 1, + sym_or_block, + STATE(4251), 1, sym_type_parameters, - ACTIONS(5020), 2, + ACTIONS(5024), 2, anon_sym_is, anon_sym_BANGis, - ACTIONS(5094), 2, + ACTIONS(5078), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(5100), 2, + ACTIONS(5084), 2, anon_sym_in, anon_sym_BANGin, STATE(2609), 2, sym_line_comment, sym_block_comment, - ACTIONS(5084), 3, + ACTIONS(5070), 3, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5088), 3, + ACTIONS(5074), 3, anon_sym_SLASH, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(5096), 4, + ACTIONS(5080), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(5086), 5, + ACTIONS(5072), 5, anon_sym_STAR, anon_sym_PERCENT, anon_sym_LT_LT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - [72110] = 30, + [71956] = 30, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(4930), 1, + ACTIONS(4936), 1, anon_sym_DOT, - ACTIONS(4932), 1, + ACTIONS(4938), 1, anon_sym_LPAREN, - ACTIONS(4934), 1, + ACTIONS(4940), 1, anon_sym_LBRACK, - ACTIONS(4936), 1, + ACTIONS(4942), 1, anon_sym_QMARK, - ACTIONS(4938), 1, + ACTIONS(4944), 1, anon_sym_BANG, - ACTIONS(4940), 1, + ACTIONS(4946), 1, anon_sym_LBRACK2, - ACTIONS(4942), 1, + ACTIONS(4948), 1, anon_sym_QMARK_DOT, - ACTIONS(4944), 1, + ACTIONS(4950), 1, anon_sym_POUND_LBRACK, - ACTIONS(4994), 1, + ACTIONS(4996), 1, anon_sym_as, - ACTIONS(5008), 1, + ACTIONS(5012), 1, anon_sym_PLUS_PLUS, - ACTIONS(5010), 1, + ACTIONS(5014), 1, anon_sym_DASH_DASH, - ACTIONS(5018), 1, + ACTIONS(5022), 1, anon_sym_or, - ACTIONS(5090), 1, + ACTIONS(5076), 1, anon_sym_CARET, - ACTIONS(5098), 1, + ACTIONS(5082), 1, anon_sym_AMP_AMP, - ACTIONS(5102), 1, + ACTIONS(5114), 1, anon_sym_PIPE_PIPE, - ACTIONS(5224), 1, + ACTIONS(5220), 1, anon_sym_DOT_DOT, - ACTIONS(5278), 1, + ACTIONS(5272), 1, anon_sym_RBRACK, - STATE(2396), 1, - sym_or_block, - STATE(2397), 1, + STATE(2298), 1, sym_argument_list, - STATE(4127), 1, + STATE(2299), 1, + sym_or_block, + STATE(4251), 1, sym_type_parameters, - ACTIONS(5020), 2, + ACTIONS(5024), 2, anon_sym_is, anon_sym_BANGis, - ACTIONS(5094), 2, + ACTIONS(5078), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(5100), 2, + ACTIONS(5084), 2, anon_sym_in, anon_sym_BANGin, STATE(2610), 2, sym_line_comment, sym_block_comment, - ACTIONS(5084), 3, + ACTIONS(5070), 3, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5088), 3, + ACTIONS(5074), 3, anon_sym_SLASH, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(5096), 4, + ACTIONS(5080), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(5086), 5, + ACTIONS(5072), 5, anon_sym_STAR, anon_sym_PERCENT, anon_sym_LT_LT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - [72216] = 30, + [72062] = 29, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(5068), 1, - anon_sym_DOT, - ACTIONS(5070), 1, + ACTIONS(4938), 1, anon_sym_LPAREN, - ACTIONS(5072), 1, + ACTIONS(4940), 1, anon_sym_LBRACK, - ACTIONS(5074), 1, - anon_sym_QMARK, - ACTIONS(5076), 1, + ACTIONS(4944), 1, anon_sym_BANG, - ACTIONS(5078), 1, + ACTIONS(4946), 1, anon_sym_LBRACK2, - ACTIONS(5080), 1, - anon_sym_QMARK_DOT, - ACTIONS(5082), 1, + ACTIONS(4950), 1, anon_sym_POUND_LBRACK, - ACTIONS(5110), 1, - anon_sym_CARET, - ACTIONS(5116), 1, - anon_sym_AMP_AMP, - ACTIONS(5122), 1, + ACTIONS(4996), 1, anon_sym_as, - ACTIONS(5124), 1, + ACTIONS(5012), 1, anon_sym_PLUS_PLUS, - ACTIONS(5126), 1, + ACTIONS(5014), 1, anon_sym_DASH_DASH, - ACTIONS(5128), 1, - anon_sym_PIPE_PIPE, - ACTIONS(5130), 1, + ACTIONS(5022), 1, anon_sym_or, - ACTIONS(5280), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(5282), 1, - anon_sym_DOT_DOT, - STATE(2736), 1, - sym_or_block, - STATE(2742), 1, + ACTIONS(5032), 1, + anon_sym_LBRACE, + ACTIONS(5200), 1, + anon_sym_CARET, + ACTIONS(5202), 1, + anon_sym_AMP_AMP, + ACTIONS(5204), 1, + anon_sym_PIPE_PIPE, + ACTIONS(5274), 1, + anon_sym_QMARK, + STATE(1905), 1, + sym_block, + STATE(2298), 1, sym_argument_list, - STATE(4112), 1, + STATE(2299), 1, + sym_or_block, + STATE(4251), 1, sym_type_parameters, - ACTIONS(5112), 2, + ACTIONS(4948), 2, + anon_sym_DOT, + anon_sym_QMARK_DOT, + ACTIONS(5024), 2, + anon_sym_is, + anon_sym_BANGis, + ACTIONS(5194), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(5118), 2, + ACTIONS(5206), 2, anon_sym_in, anon_sym_BANGin, - ACTIONS(5132), 2, - anon_sym_is, - anon_sym_BANGis, STATE(2611), 2, sym_line_comment, sym_block_comment, - ACTIONS(5104), 3, + ACTIONS(5188), 3, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5108), 3, + ACTIONS(5192), 3, anon_sym_SLASH, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(5114), 4, + ACTIONS(5196), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(5106), 5, + ACTIONS(5190), 5, anon_sym_STAR, anon_sym_PERCENT, anon_sym_LT_LT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - [72322] = 29, + [72166] = 29, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(4932), 1, + ACTIONS(4938), 1, anon_sym_LPAREN, - ACTIONS(4934), 1, + ACTIONS(4940), 1, anon_sym_LBRACK, - ACTIONS(4938), 1, + ACTIONS(4944), 1, anon_sym_BANG, - ACTIONS(4940), 1, + ACTIONS(4946), 1, anon_sym_LBRACK2, - ACTIONS(4944), 1, + ACTIONS(4950), 1, anon_sym_POUND_LBRACK, - ACTIONS(4994), 1, + ACTIONS(4996), 1, anon_sym_as, - ACTIONS(5008), 1, + ACTIONS(5012), 1, anon_sym_PLUS_PLUS, - ACTIONS(5010), 1, + ACTIONS(5014), 1, anon_sym_DASH_DASH, - ACTIONS(5018), 1, + ACTIONS(5022), 1, anon_sym_or, - ACTIONS(5208), 1, + ACTIONS(5200), 1, anon_sym_CARET, - ACTIONS(5210), 1, + ACTIONS(5202), 1, anon_sym_AMP_AMP, - ACTIONS(5212), 1, + ACTIONS(5204), 1, anon_sym_PIPE_PIPE, - ACTIONS(5284), 1, + ACTIONS(5276), 1, anon_sym_LBRACE, - ACTIONS(5286), 1, + ACTIONS(5278), 1, anon_sym_QMARK, - STATE(2134), 1, + STATE(1269), 1, sym_block, - STATE(2396), 1, - sym_or_block, - STATE(2397), 1, + STATE(2298), 1, sym_argument_list, - STATE(4127), 1, + STATE(2299), 1, + sym_or_block, + STATE(4251), 1, sym_type_parameters, - ACTIONS(4942), 2, + ACTIONS(4948), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - ACTIONS(5020), 2, + ACTIONS(5024), 2, anon_sym_is, anon_sym_BANGis, - ACTIONS(5202), 2, + ACTIONS(5194), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(5214), 2, + ACTIONS(5206), 2, anon_sym_in, anon_sym_BANGin, STATE(2612), 2, sym_line_comment, sym_block_comment, - ACTIONS(5196), 3, + ACTIONS(5188), 3, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5200), 3, + ACTIONS(5192), 3, anon_sym_SLASH, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(5204), 4, + ACTIONS(5196), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(5198), 5, + ACTIONS(5190), 5, anon_sym_STAR, anon_sym_PERCENT, anon_sym_LT_LT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - [72426] = 28, + [72270] = 29, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(4932), 1, + ACTIONS(4938), 1, anon_sym_LPAREN, - ACTIONS(4934), 1, + ACTIONS(4940), 1, anon_sym_LBRACK, - ACTIONS(4936), 1, - anon_sym_QMARK, - ACTIONS(4938), 1, + ACTIONS(4944), 1, anon_sym_BANG, - ACTIONS(4940), 1, + ACTIONS(4946), 1, anon_sym_LBRACK2, - ACTIONS(4944), 1, + ACTIONS(4950), 1, anon_sym_POUND_LBRACK, - ACTIONS(4994), 1, + ACTIONS(4996), 1, anon_sym_as, - ACTIONS(5008), 1, + ACTIONS(5012), 1, anon_sym_PLUS_PLUS, - ACTIONS(5010), 1, + ACTIONS(5014), 1, anon_sym_DASH_DASH, - ACTIONS(5012), 1, + ACTIONS(5022), 1, + anon_sym_or, + ACTIONS(5200), 1, anon_sym_CARET, - ACTIONS(5014), 1, + ACTIONS(5202), 1, anon_sym_AMP_AMP, - ACTIONS(5016), 1, + ACTIONS(5204), 1, anon_sym_PIPE_PIPE, - ACTIONS(5018), 1, - anon_sym_or, - STATE(2396), 1, - sym_or_block, - STATE(2397), 1, + ACTIONS(5280), 1, + anon_sym_LBRACE, + ACTIONS(5282), 1, + anon_sym_QMARK, + STATE(1129), 1, + sym_block, + STATE(2298), 1, sym_argument_list, - STATE(4127), 1, + STATE(2299), 1, + sym_or_block, + STATE(4251), 1, sym_type_parameters, - ACTIONS(1787), 2, - anon_sym_LBRACE, - anon_sym_COMMA, - ACTIONS(4942), 2, + ACTIONS(4948), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - ACTIONS(5004), 2, + ACTIONS(5024), 2, + anon_sym_is, + anon_sym_BANGis, + ACTIONS(5194), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(5022), 2, + ACTIONS(5206), 2, anon_sym_in, anon_sym_BANGin, - ACTIONS(5246), 2, - anon_sym_is, - anon_sym_BANGis, STATE(2613), 2, sym_line_comment, sym_block_comment, - ACTIONS(4998), 3, + ACTIONS(5188), 3, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5002), 3, + ACTIONS(5192), 3, anon_sym_SLASH, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(5006), 4, + ACTIONS(5196), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(5000), 5, + ACTIONS(5190), 5, anon_sym_STAR, anon_sym_PERCENT, anon_sym_LT_LT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - [72528] = 7, + [72374] = 8, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(1856), 1, - anon_sym_LBRACK, - ACTIONS(2505), 1, - anon_sym_LBRACE, + ACTIONS(4813), 1, + anon_sym_DOT, + ACTIONS(5286), 1, + anon_sym_QMARK, + ACTIONS(5284), 2, + anon_sym_SEMI, + anon_sym_RBRACK, STATE(2614), 2, sym_line_comment, sym_block_comment, - ACTIONS(1851), 11, + ACTIONS(2513), 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(1849), 28, - anon_sym_SEMI, - anon_sym_DOT, + ACTIONS(2511), 27, 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_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_CARET, @@ -252605,291 +252642,390 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_in, anon_sym_BANGin, anon_sym_COLON_EQ, - [72588] = 28, + [72436] = 30, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(4932), 1, + ACTIONS(4936), 1, + anon_sym_DOT, + ACTIONS(4938), 1, anon_sym_LPAREN, - ACTIONS(4934), 1, + ACTIONS(4940), 1, anon_sym_LBRACK, - ACTIONS(4936), 1, + ACTIONS(4942), 1, anon_sym_QMARK, - ACTIONS(4938), 1, + ACTIONS(4944), 1, anon_sym_BANG, - ACTIONS(4940), 1, + ACTIONS(4946), 1, anon_sym_LBRACK2, - ACTIONS(4944), 1, + ACTIONS(4948), 1, + anon_sym_QMARK_DOT, + ACTIONS(4950), 1, anon_sym_POUND_LBRACK, - ACTIONS(4994), 1, + ACTIONS(4996), 1, anon_sym_as, - ACTIONS(5008), 1, + ACTIONS(5012), 1, anon_sym_PLUS_PLUS, - ACTIONS(5010), 1, + ACTIONS(5014), 1, anon_sym_DASH_DASH, - ACTIONS(5012), 1, + ACTIONS(5022), 1, + anon_sym_or, + ACTIONS(5076), 1, anon_sym_CARET, - ACTIONS(5014), 1, + ACTIONS(5082), 1, anon_sym_AMP_AMP, - ACTIONS(5016), 1, + ACTIONS(5114), 1, anon_sym_PIPE_PIPE, - ACTIONS(5018), 1, - anon_sym_or, - STATE(2396), 1, - sym_or_block, - STATE(2397), 1, + ACTIONS(5220), 1, + anon_sym_DOT_DOT, + ACTIONS(5288), 1, + anon_sym_RBRACK, + STATE(2298), 1, sym_argument_list, - STATE(4127), 1, + STATE(2299), 1, + sym_or_block, + STATE(4251), 1, sym_type_parameters, - ACTIONS(4942), 2, - anon_sym_DOT, - anon_sym_QMARK_DOT, - ACTIONS(5004), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(5020), 2, + ACTIONS(5024), 2, anon_sym_is, anon_sym_BANGis, - ACTIONS(5022), 2, + ACTIONS(5078), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(5084), 2, anon_sym_in, anon_sym_BANGin, - ACTIONS(5288), 2, - anon_sym_LBRACE, - anon_sym_COMMA, STATE(2615), 2, sym_line_comment, sym_block_comment, - ACTIONS(4998), 3, + ACTIONS(5070), 3, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5002), 3, + ACTIONS(5074), 3, anon_sym_SLASH, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(5006), 4, + ACTIONS(5080), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(5000), 5, + ACTIONS(5072), 5, anon_sym_STAR, anon_sym_PERCENT, anon_sym_LT_LT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - [72690] = 29, + [72542] = 29, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(4932), 1, + ACTIONS(4938), 1, anon_sym_LPAREN, - ACTIONS(4934), 1, + ACTIONS(4940), 1, anon_sym_LBRACK, - ACTIONS(4938), 1, + ACTIONS(4944), 1, anon_sym_BANG, - ACTIONS(4940), 1, + ACTIONS(4946), 1, anon_sym_LBRACK2, - ACTIONS(4944), 1, + ACTIONS(4950), 1, anon_sym_POUND_LBRACK, - ACTIONS(4994), 1, + ACTIONS(4996), 1, anon_sym_as, - ACTIONS(5008), 1, + ACTIONS(5012), 1, anon_sym_PLUS_PLUS, - ACTIONS(5010), 1, + ACTIONS(5014), 1, anon_sym_DASH_DASH, - ACTIONS(5018), 1, + ACTIONS(5022), 1, anon_sym_or, - ACTIONS(5024), 1, + ACTIONS(5050), 1, anon_sym_LBRACE, - ACTIONS(5208), 1, + ACTIONS(5200), 1, anon_sym_CARET, - ACTIONS(5210), 1, + ACTIONS(5202), 1, anon_sym_AMP_AMP, - ACTIONS(5212), 1, + ACTIONS(5204), 1, anon_sym_PIPE_PIPE, ACTIONS(5290), 1, anon_sym_QMARK, - STATE(1905), 1, - sym_block, - STATE(2396), 1, - sym_or_block, - STATE(2397), 1, + STATE(2298), 1, sym_argument_list, - STATE(4127), 1, + STATE(2299), 1, + sym_or_block, + STATE(2430), 1, + sym_block, + STATE(4251), 1, sym_type_parameters, - ACTIONS(4942), 2, + ACTIONS(4948), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - ACTIONS(5020), 2, + ACTIONS(5024), 2, anon_sym_is, anon_sym_BANGis, - ACTIONS(5202), 2, + ACTIONS(5194), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(5214), 2, + ACTIONS(5206), 2, anon_sym_in, anon_sym_BANGin, STATE(2616), 2, sym_line_comment, sym_block_comment, - ACTIONS(5196), 3, + ACTIONS(5188), 3, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5200), 3, + ACTIONS(5192), 3, anon_sym_SLASH, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(5204), 4, + ACTIONS(5196), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(5198), 5, + ACTIONS(5190), 5, anon_sym_STAR, anon_sym_PERCENT, anon_sym_LT_LT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - [72794] = 30, + [72646] = 30, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(4930), 1, + ACTIONS(4936), 1, anon_sym_DOT, - ACTIONS(4932), 1, + ACTIONS(4938), 1, anon_sym_LPAREN, - ACTIONS(4934), 1, + ACTIONS(4940), 1, anon_sym_LBRACK, - ACTIONS(4936), 1, + ACTIONS(4942), 1, anon_sym_QMARK, - ACTIONS(4938), 1, + ACTIONS(4944), 1, anon_sym_BANG, - ACTIONS(4940), 1, + ACTIONS(4946), 1, anon_sym_LBRACK2, - ACTIONS(4942), 1, + ACTIONS(4948), 1, anon_sym_QMARK_DOT, - ACTIONS(4944), 1, + ACTIONS(4950), 1, anon_sym_POUND_LBRACK, - ACTIONS(4994), 1, + ACTIONS(4996), 1, anon_sym_as, - ACTIONS(5008), 1, + ACTIONS(5012), 1, anon_sym_PLUS_PLUS, - ACTIONS(5010), 1, + ACTIONS(5014), 1, anon_sym_DASH_DASH, - ACTIONS(5018), 1, + ACTIONS(5022), 1, anon_sym_or, - ACTIONS(5090), 1, + ACTIONS(5076), 1, anon_sym_CARET, - ACTIONS(5098), 1, + ACTIONS(5082), 1, anon_sym_AMP_AMP, - ACTIONS(5102), 1, + ACTIONS(5114), 1, anon_sym_PIPE_PIPE, - ACTIONS(5224), 1, + ACTIONS(5220), 1, anon_sym_DOT_DOT, ACTIONS(5292), 1, anon_sym_RBRACK, - STATE(2396), 1, - sym_or_block, - STATE(2397), 1, + STATE(2298), 1, sym_argument_list, - STATE(4127), 1, + STATE(2299), 1, + sym_or_block, + STATE(4251), 1, sym_type_parameters, - ACTIONS(5020), 2, + ACTIONS(5024), 2, anon_sym_is, anon_sym_BANGis, - ACTIONS(5094), 2, + ACTIONS(5078), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(5100), 2, + ACTIONS(5084), 2, anon_sym_in, anon_sym_BANGin, STATE(2617), 2, sym_line_comment, sym_block_comment, - ACTIONS(5084), 3, + ACTIONS(5070), 3, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5088), 3, + ACTIONS(5074), 3, anon_sym_SLASH, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(5096), 4, + ACTIONS(5080), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(5086), 5, + ACTIONS(5072), 5, anon_sym_STAR, anon_sym_PERCENT, anon_sym_LT_LT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - [72900] = 5, + [72752] = 28, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, + ACTIONS(4938), 1, + anon_sym_LPAREN, + ACTIONS(4940), 1, + anon_sym_LBRACK, + ACTIONS(4942), 1, + anon_sym_QMARK, + ACTIONS(4944), 1, + anon_sym_BANG, + ACTIONS(4946), 1, + anon_sym_LBRACK2, + ACTIONS(4950), 1, + anon_sym_POUND_LBRACK, + ACTIONS(4996), 1, + anon_sym_as, + ACTIONS(5012), 1, + anon_sym_PLUS_PLUS, + ACTIONS(5014), 1, + anon_sym_DASH_DASH, + ACTIONS(5016), 1, + anon_sym_CARET, + ACTIONS(5018), 1, + anon_sym_AMP_AMP, + ACTIONS(5020), 1, + anon_sym_PIPE_PIPE, + ACTIONS(5022), 1, + anon_sym_or, + STATE(2298), 1, + sym_argument_list, + STATE(2299), 1, + sym_or_block, + STATE(4251), 1, + sym_type_parameters, + ACTIONS(4948), 2, + anon_sym_DOT, + anon_sym_QMARK_DOT, + ACTIONS(5008), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(5024), 2, + anon_sym_is, + anon_sym_BANGis, + ACTIONS(5026), 2, + anon_sym_in, + anon_sym_BANGin, + ACTIONS(5294), 2, + anon_sym_LBRACE, + anon_sym_COMMA, STATE(2618), 2, sym_line_comment, sym_block_comment, - ACTIONS(1917), 13, - anon_sym_DOT, + ACTIONS(5002), 3, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, + ACTIONS(5006), 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(1915), 28, - anon_sym_as, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_STAR, - anon_sym_PERCENT, + ACTIONS(5010), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, + ACTIONS(5004), 5, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_AMP_CARET, + [72854] = 28, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(4938), 1, + anon_sym_LPAREN, + ACTIONS(4940), 1, anon_sym_LBRACK, + ACTIONS(4942), 1, + anon_sym_QMARK, + ACTIONS(4944), 1, + anon_sym_BANG, + ACTIONS(4946), 1, + anon_sym_LBRACK2, + ACTIONS(4950), 1, + anon_sym_POUND_LBRACK, + ACTIONS(4996), 1, + anon_sym_as, + ACTIONS(5012), 1, anon_sym_PLUS_PLUS, + ACTIONS(5014), 1, anon_sym_DASH_DASH, + ACTIONS(5016), 1, anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, + ACTIONS(5018), 1, anon_sym_AMP_AMP, + ACTIONS(5020), 1, anon_sym_PIPE_PIPE, + ACTIONS(5022), 1, anon_sym_or, + STATE(2298), 1, + sym_argument_list, + STATE(2299), 1, + sym_or_block, + STATE(4251), 1, + sym_type_parameters, + ACTIONS(3522), 2, + anon_sym_LBRACE, + anon_sym_COMMA, + ACTIONS(4948), 2, + anon_sym_DOT, anon_sym_QMARK_DOT, - anon_sym_POUND_LBRACK, + ACTIONS(5008), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(5024), 2, anon_sym_is, anon_sym_BANGis, + ACTIONS(5026), 2, anon_sym_in, anon_sym_BANGin, - anon_sym_COLON_EQ, + STATE(2619), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(5002), 3, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(5006), 3, + anon_sym_SLASH, + anon_sym_AMP, + anon_sym_GT_GT, + ACTIONS(5010), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(5004), 5, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_AMP_CARET, [72956] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - STATE(2619), 2, + STATE(2620), 2, sym_line_comment, sym_block_comment, - ACTIONS(2768), 13, + ACTIONS(2788), 13, anon_sym_DOT, anon_sym_PIPE, anon_sym_PLUS, @@ -252903,7 +253039,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_GT_GT, anon_sym_DOT_DOT, - ACTIONS(2766), 27, + ACTIONS(2786), 27, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -252931,127 +253067,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [73011] = 28, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_STAR, - ACTIONS(47), 1, - anon_sym_QMARK, - ACTIONS(85), 1, - anon_sym_map_LBRACK, - ACTIONS(87), 1, - anon_sym_chan, - ACTIONS(89), 1, - anon_sym_thread, - ACTIONS(91), 1, - anon_sym_atomic, - ACTIONS(603), 1, - anon_sym_fn, - ACTIONS(607), 1, - anon_sym_struct, - ACTIONS(3586), 1, - anon_sym_LPAREN, - ACTIONS(3588), 1, - anon_sym_STAR, - ACTIONS(5294), 1, - sym_identifier, - ACTIONS(5296), 1, - anon_sym_RPAREN, - ACTIONS(5298), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(5300), 1, - anon_sym_mut, - ACTIONS(5302), 1, - anon_sym_BANG, - ACTIONS(5304), 1, - anon_sym_LBRACK2, - ACTIONS(5306), 1, - anon_sym_AMP, - ACTIONS(5308), 1, - anon_sym_shared, - STATE(2984), 1, - sym_mutability_modifiers, - STATE(3772), 1, - sym_parameter_declaration, - STATE(3773), 1, - sym_type_parameter_declaration, - STATE(4265), 1, - sym_plain_type, - STATE(4495), 1, - sym_reference_expression, - STATE(2620), 2, - sym_line_comment, - sym_block_comment, - STATE(3541), 2, - sym_type_reference_expression, - sym_qualified_type, - STATE(2302), 4, - sym__plain_type_without_special, - sym_multi_return_type, - sym_result_type, - sym_option_type, - STATE(2303), 12, - sym_anon_struct_type, - sym_fixed_array_type, - sym_array_type, - sym_pointer_type, - sym_wrong_pointer_type, - sym_map_type, - sym_channel_type, - sym_shared_type, - sym_thread_type, - sym_atomic_type, - sym_generic_type, - sym_function_type, - [73112] = 17, + [73011] = 7, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(4932), 1, - anon_sym_LPAREN, - ACTIONS(4934), 1, + ACTIONS(1894), 2, anon_sym_LBRACK, - ACTIONS(4936), 1, - anon_sym_QMARK, - ACTIONS(4938), 1, - anon_sym_BANG, - ACTIONS(4940), 1, - anon_sym_LBRACK2, - ACTIONS(4944), 1, - anon_sym_POUND_LBRACK, - STATE(2396), 1, - sym_or_block, - STATE(2397), 1, - sym_argument_list, - STATE(4127), 1, - sym_type_parameters, - ACTIONS(4942), 2, - anon_sym_DOT, - anon_sym_QMARK_DOT, + anon_sym_RBRACK, + ACTIONS(2473), 2, + anon_sym_LBRACE, + anon_sym_COMMA, STATE(2621), 2, sym_line_comment, sym_block_comment, - ACTIONS(5312), 3, - anon_sym_SLASH, - anon_sym_AMP, - anon_sym_GT_GT, - ACTIONS(1785), 5, + ACTIONS(1889), 12, + anon_sym_DOT, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, + anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(5310), 5, + anon_sym_QMARK, + anon_sym_BANG, + anon_sym_LBRACK2, + anon_sym_AMP, + anon_sym_GT_GT, + ACTIONS(1887), 24, + anon_sym_as, + anon_sym_LPAREN, anon_sym_STAR, anon_sym_PERCENT, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - ACTIONS(1783), 16, - anon_sym_as, - anon_sym_RPAREN, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, @@ -253059,241 +253106,277 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_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, - [73191] = 28, + anon_sym_DOT_DOT, + [73070] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(4932), 1, - anon_sym_LPAREN, - ACTIONS(4934), 1, - anon_sym_LBRACK, - ACTIONS(4936), 1, + ACTIONS(1989), 1, + anon_sym_COMMA, + STATE(2622), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(2676), 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(4938), 1, anon_sym_BANG, - ACTIONS(4940), 1, anon_sym_LBRACK2, - ACTIONS(4944), 1, - anon_sym_POUND_LBRACK, - ACTIONS(4994), 1, + anon_sym_AMP, + anon_sym_GT_GT, + anon_sym_DOT_DOT, + ACTIONS(2674), 26, anon_sym_as, - ACTIONS(5008), 1, + anon_sym_LBRACE, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_DOT_DOT_DOT, + anon_sym_LBRACK, anon_sym_PLUS_PLUS, - ACTIONS(5010), 1, anon_sym_DASH_DASH, - ACTIONS(5018), 1, - anon_sym_or, - ACTIONS(5314), 1, - anon_sym_RPAREN, - ACTIONS(5322), 1, anon_sym_CARET, - ACTIONS(5324), 1, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_AMP_CARET, anon_sym_AMP_AMP, - ACTIONS(5326), 1, anon_sym_PIPE_PIPE, - STATE(2396), 1, - sym_or_block, - STATE(2397), 1, - sym_argument_list, - STATE(4127), 1, - sym_type_parameters, - ACTIONS(4942), 2, - anon_sym_DOT, + anon_sym_or, anon_sym_QMARK_DOT, - ACTIONS(5020), 2, + anon_sym_POUND_LBRACK, anon_sym_is, anon_sym_BANGis, - ACTIONS(5318), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(5328), 2, anon_sym_in, anon_sym_BANGin, - STATE(2622), 2, + [73127] = 7, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(2515), 1, + anon_sym_DOT, + STATE(2623), 2, sym_line_comment, sym_block_comment, - ACTIONS(5312), 3, + ACTIONS(3909), 3, + anon_sym_SEMI, + anon_sym_RBRACK, + anon_sym_COLON, + ACTIONS(2513), 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(5316), 3, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(5320), 4, + ACTIONS(2511), 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(5310), 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, - [73292] = 28, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_or, + anon_sym_QMARK_DOT, + anon_sym_POUND_LBRACK, + anon_sym_is, + anon_sym_BANGis, + anon_sym_in, + anon_sym_BANGin, + anon_sym_DOT_DOT, + [73186] = 28, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(4932), 1, + ACTIONS(4938), 1, anon_sym_LPAREN, - ACTIONS(4934), 1, + ACTIONS(4940), 1, anon_sym_LBRACK, - ACTIONS(4936), 1, + ACTIONS(4942), 1, anon_sym_QMARK, - ACTIONS(4938), 1, + ACTIONS(4944), 1, anon_sym_BANG, - ACTIONS(4940), 1, + ACTIONS(4946), 1, anon_sym_LBRACK2, - ACTIONS(4944), 1, + ACTIONS(4950), 1, anon_sym_POUND_LBRACK, - ACTIONS(4994), 1, + ACTIONS(4996), 1, anon_sym_as, - ACTIONS(5008), 1, + ACTIONS(5012), 1, anon_sym_PLUS_PLUS, - ACTIONS(5010), 1, + ACTIONS(5014), 1, anon_sym_DASH_DASH, - ACTIONS(5018), 1, + ACTIONS(5022), 1, anon_sym_or, - ACTIONS(5208), 1, + ACTIONS(5200), 1, anon_sym_CARET, - ACTIONS(5210), 1, + ACTIONS(5202), 1, anon_sym_AMP_AMP, - ACTIONS(5212), 1, + ACTIONS(5204), 1, anon_sym_PIPE_PIPE, - ACTIONS(5288), 1, + ACTIONS(5296), 1, anon_sym_LBRACE, - STATE(2396), 1, - sym_or_block, - STATE(2397), 1, + STATE(2298), 1, sym_argument_list, - STATE(4127), 1, + STATE(2299), 1, + sym_or_block, + STATE(4251), 1, sym_type_parameters, - ACTIONS(4942), 2, + ACTIONS(4948), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - ACTIONS(5020), 2, + ACTIONS(5024), 2, anon_sym_is, anon_sym_BANGis, - ACTIONS(5202), 2, + ACTIONS(5194), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(5214), 2, + ACTIONS(5206), 2, anon_sym_in, anon_sym_BANGin, - STATE(2623), 2, + STATE(2624), 2, sym_line_comment, sym_block_comment, - ACTIONS(5196), 3, + ACTIONS(5188), 3, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5200), 3, + ACTIONS(5192), 3, anon_sym_SLASH, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(5204), 4, + ACTIONS(5196), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(5198), 5, + ACTIONS(5190), 5, anon_sym_STAR, anon_sym_PERCENT, anon_sym_LT_LT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - [73393] = 28, + [73287] = 28, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(4932), 1, + ACTIONS(4938), 1, anon_sym_LPAREN, - ACTIONS(4934), 1, + ACTIONS(4940), 1, anon_sym_LBRACK, - ACTIONS(4936), 1, + ACTIONS(4942), 1, anon_sym_QMARK, - ACTIONS(4938), 1, + ACTIONS(4944), 1, anon_sym_BANG, - ACTIONS(4940), 1, + ACTIONS(4946), 1, anon_sym_LBRACK2, - ACTIONS(4944), 1, + ACTIONS(4950), 1, anon_sym_POUND_LBRACK, - ACTIONS(4994), 1, + ACTIONS(4996), 1, anon_sym_as, - ACTIONS(5008), 1, + ACTIONS(5012), 1, anon_sym_PLUS_PLUS, - ACTIONS(5010), 1, + ACTIONS(5014), 1, anon_sym_DASH_DASH, - ACTIONS(5018), 1, + ACTIONS(5022), 1, anon_sym_or, - ACTIONS(5322), 1, + ACTIONS(5200), 1, anon_sym_CARET, - ACTIONS(5324), 1, + ACTIONS(5202), 1, anon_sym_AMP_AMP, - ACTIONS(5326), 1, + ACTIONS(5204), 1, anon_sym_PIPE_PIPE, - ACTIONS(5330), 1, - anon_sym_RPAREN, - STATE(2396), 1, - sym_or_block, - STATE(2397), 1, + ACTIONS(5298), 1, + anon_sym_LBRACE, + STATE(2298), 1, sym_argument_list, - STATE(4127), 1, + STATE(2299), 1, + sym_or_block, + STATE(4251), 1, sym_type_parameters, - ACTIONS(4942), 2, + ACTIONS(4948), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - ACTIONS(5020), 2, + ACTIONS(5024), 2, anon_sym_is, anon_sym_BANGis, - ACTIONS(5318), 2, + ACTIONS(5194), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(5328), 2, + ACTIONS(5206), 2, anon_sym_in, anon_sym_BANGin, - STATE(2624), 2, + STATE(2625), 2, sym_line_comment, sym_block_comment, - ACTIONS(5312), 3, - anon_sym_SLASH, - anon_sym_AMP, - anon_sym_GT_GT, - ACTIONS(5316), 3, + ACTIONS(5188), 3, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5320), 4, + ACTIONS(5192), 3, + anon_sym_SLASH, + anon_sym_AMP, + anon_sym_GT_GT, + ACTIONS(5196), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(5310), 5, + ACTIONS(5190), 5, anon_sym_STAR, anon_sym_PERCENT, anon_sym_LT_LT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - [73494] = 5, + [73388] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - STATE(2625), 2, + STATE(2626), 2, sym_line_comment, sym_block_comment, - ACTIONS(2778), 13, + ACTIONS(3050), 13, anon_sym_DOT, anon_sym_PIPE, anon_sym_PLUS, @@ -253307,7 +253390,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_GT_GT, anon_sym_DOT_DOT, - ACTIONS(2776), 27, + ACTIONS(3048), 27, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -253335,153 +253418,107 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [73549] = 28, + [73443] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(47), 1, - anon_sym_QMARK, - ACTIONS(85), 1, - anon_sym_map_LBRACK, - ACTIONS(87), 1, - anon_sym_chan, - ACTIONS(89), 1, - anon_sym_thread, - ACTIONS(91), 1, - anon_sym_atomic, - ACTIONS(603), 1, - anon_sym_fn, - ACTIONS(607), 1, - anon_sym_struct, - ACTIONS(3586), 1, - anon_sym_LPAREN, - ACTIONS(3588), 1, - anon_sym_STAR, - ACTIONS(5294), 1, - sym_identifier, - ACTIONS(5298), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(5300), 1, - anon_sym_mut, - ACTIONS(5302), 1, - anon_sym_BANG, - ACTIONS(5304), 1, - anon_sym_LBRACK2, - ACTIONS(5306), 1, - anon_sym_AMP, - ACTIONS(5308), 1, - anon_sym_shared, - ACTIONS(5332), 1, - anon_sym_RPAREN, - STATE(2984), 1, - sym_mutability_modifiers, - STATE(3802), 1, - sym_type_parameter_declaration, - STATE(3803), 1, - sym_parameter_declaration, - STATE(4265), 1, - sym_plain_type, - STATE(4495), 1, - sym_reference_expression, - STATE(2626), 2, + STATE(2627), 2, sym_line_comment, sym_block_comment, - STATE(3541), 2, - sym_type_reference_expression, - sym_qualified_type, - STATE(2302), 4, - sym__plain_type_without_special, - sym_multi_return_type, - sym_result_type, - sym_option_type, - STATE(2303), 12, - sym_anon_struct_type, - sym_fixed_array_type, - sym_array_type, - sym_pointer_type, - sym_wrong_pointer_type, - sym_map_type, - sym_channel_type, - sym_shared_type, - sym_thread_type, - sym_atomic_type, - sym_generic_type, - sym_function_type, - [73650] = 28, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_STAR, - ACTIONS(4932), 1, - anon_sym_LPAREN, - ACTIONS(4934), 1, - anon_sym_LBRACK, - ACTIONS(4936), 1, + ACTIONS(2910), 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(4938), 1, anon_sym_BANG, - ACTIONS(4940), 1, anon_sym_LBRACK2, - ACTIONS(4944), 1, - anon_sym_POUND_LBRACK, - ACTIONS(4994), 1, + anon_sym_AMP, + anon_sym_GT_GT, + anon_sym_DOT_DOT, + ACTIONS(2908), 27, anon_sym_as, - ACTIONS(5008), 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(5010), 1, anon_sym_DASH_DASH, - ACTIONS(5018), 1, - anon_sym_or, - ACTIONS(5090), 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(5102), 1, anon_sym_PIPE_PIPE, - ACTIONS(5334), 1, - anon_sym_RBRACK, - STATE(2396), 1, - sym_or_block, - STATE(2397), 1, - sym_argument_list, - STATE(4127), 1, - sym_type_parameters, - ACTIONS(4942), 2, - anon_sym_DOT, + anon_sym_or, anon_sym_QMARK_DOT, - ACTIONS(5020), 2, + anon_sym_POUND_LBRACK, anon_sym_is, anon_sym_BANGis, - ACTIONS(5094), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(5100), 2, anon_sym_in, anon_sym_BANGin, - STATE(2627), 2, + [73498] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + STATE(2628), 2, sym_line_comment, sym_block_comment, - ACTIONS(5084), 3, + ACTIONS(2886), 13, + anon_sym_DOT, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5088), 3, anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + anon_sym_QMARK, + anon_sym_BANG, + anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(5096), 4, + anon_sym_DOT_DOT, + ACTIONS(2884), 27, + anon_sym_as, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_PERCENT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(5086), 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, - [73751] = 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, + [73553] = 28, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, @@ -253496,52 +253533,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_thread, ACTIONS(91), 1, anon_sym_atomic, - ACTIONS(603), 1, + ACTIONS(571), 1, anon_sym_fn, - ACTIONS(607), 1, + ACTIONS(575), 1, anon_sym_struct, - ACTIONS(3586), 1, + ACTIONS(3564), 1, anon_sym_LPAREN, - ACTIONS(3588), 1, + ACTIONS(3566), 1, anon_sym_STAR, - ACTIONS(5294), 1, + ACTIONS(5300), 1, sym_identifier, - ACTIONS(5298), 1, + ACTIONS(5302), 1, + anon_sym_RPAREN, + ACTIONS(5304), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(5300), 1, + ACTIONS(5306), 1, anon_sym_mut, - ACTIONS(5302), 1, + ACTIONS(5308), 1, anon_sym_BANG, - ACTIONS(5304), 1, + ACTIONS(5310), 1, anon_sym_LBRACK2, - ACTIONS(5306), 1, + ACTIONS(5312), 1, anon_sym_AMP, - ACTIONS(5308), 1, + ACTIONS(5314), 1, anon_sym_shared, - ACTIONS(5336), 1, - anon_sym_RPAREN, - STATE(2984), 1, + STATE(2993), 1, sym_mutability_modifiers, - STATE(3808), 1, + STATE(3760), 1, sym_parameter_declaration, - STATE(3809), 1, + STATE(3768), 1, sym_type_parameter_declaration, - STATE(4265), 1, + STATE(4254), 1, sym_plain_type, - STATE(4495), 1, + STATE(4498), 1, sym_reference_expression, - STATE(2628), 2, + STATE(2629), 2, sym_line_comment, sym_block_comment, - STATE(3541), 2, + STATE(3460), 2, sym_type_reference_expression, sym_qualified_type, - STATE(2302), 4, + STATE(2360), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(2303), 12, + STATE(2362), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -253554,299 +253591,194 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [73852] = 28, + [73654] = 19, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(4932), 1, + ACTIONS(4938), 1, anon_sym_LPAREN, - ACTIONS(4934), 1, + ACTIONS(4940), 1, anon_sym_LBRACK, - ACTIONS(4936), 1, + ACTIONS(4942), 1, anon_sym_QMARK, - ACTIONS(4938), 1, + ACTIONS(4944), 1, anon_sym_BANG, - ACTIONS(4940), 1, + ACTIONS(4946), 1, anon_sym_LBRACK2, - ACTIONS(4944), 1, + ACTIONS(4950), 1, anon_sym_POUND_LBRACK, - ACTIONS(4994), 1, - anon_sym_as, - ACTIONS(5008), 1, - anon_sym_PLUS_PLUS, - ACTIONS(5010), 1, - anon_sym_DASH_DASH, - ACTIONS(5018), 1, - anon_sym_or, - ACTIONS(5208), 1, + ACTIONS(5200), 1, anon_sym_CARET, - ACTIONS(5210), 1, - anon_sym_AMP_AMP, - ACTIONS(5212), 1, - anon_sym_PIPE_PIPE, - ACTIONS(5338), 1, - anon_sym_LBRACE, - STATE(2396), 1, - sym_or_block, - STATE(2397), 1, + STATE(2298), 1, sym_argument_list, - STATE(4127), 1, + STATE(2299), 1, + sym_or_block, + STATE(4251), 1, sym_type_parameters, - ACTIONS(4942), 2, - anon_sym_DOT, - anon_sym_QMARK_DOT, - ACTIONS(5020), 2, - anon_sym_is, - anon_sym_BANGis, - ACTIONS(5202), 2, + ACTIONS(1781), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(5214), 2, - anon_sym_in, - anon_sym_BANGin, - STATE(2629), 2, + ACTIONS(4948), 2, + anon_sym_DOT, + anon_sym_QMARK_DOT, + STATE(2630), 2, sym_line_comment, sym_block_comment, - ACTIONS(5196), 3, + ACTIONS(5188), 3, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5200), 3, + ACTIONS(5192), 3, anon_sym_SLASH, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(5204), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(5198), 5, + ACTIONS(5190), 5, anon_sym_STAR, anon_sym_PERCENT, anon_sym_LT_LT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - [73953] = 28, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_STAR, - ACTIONS(4932), 1, - anon_sym_LPAREN, - ACTIONS(4934), 1, - anon_sym_LBRACK, - ACTIONS(4936), 1, - anon_sym_QMARK, - ACTIONS(4938), 1, - anon_sym_BANG, - ACTIONS(4940), 1, - anon_sym_LBRACK2, - ACTIONS(4944), 1, - anon_sym_POUND_LBRACK, - ACTIONS(4994), 1, + ACTIONS(1779), 15, anon_sym_as, - ACTIONS(5008), 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(5010), 1, anon_sym_DASH_DASH, - ACTIONS(5018), 1, - anon_sym_or, - ACTIONS(5322), 1, - anon_sym_CARET, - ACTIONS(5324), 1, anon_sym_AMP_AMP, - ACTIONS(5326), 1, anon_sym_PIPE_PIPE, - ACTIONS(5340), 1, - anon_sym_RPAREN, - STATE(2396), 1, - sym_or_block, - STATE(2397), 1, - sym_argument_list, - STATE(4127), 1, - sym_type_parameters, - ACTIONS(4942), 2, - anon_sym_DOT, - anon_sym_QMARK_DOT, - ACTIONS(5020), 2, + anon_sym_or, anon_sym_is, anon_sym_BANGis, - ACTIONS(5318), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(5328), 2, anon_sym_in, anon_sym_BANGin, - STATE(2630), 2, + [73737] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + STATE(2631), 2, sym_line_comment, sym_block_comment, - ACTIONS(5312), 3, - anon_sym_SLASH, - anon_sym_AMP, - anon_sym_GT_GT, - ACTIONS(5316), 3, + ACTIONS(2191), 13, + anon_sym_DOT, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5320), 4, + 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(2189), 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(5310), 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, - [74054] = 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, + [73792] = 28, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(4932), 1, + ACTIONS(4938), 1, anon_sym_LPAREN, - ACTIONS(4934), 1, + ACTIONS(4940), 1, anon_sym_LBRACK, - ACTIONS(4936), 1, + ACTIONS(4942), 1, anon_sym_QMARK, - ACTIONS(4938), 1, + ACTIONS(4944), 1, anon_sym_BANG, - ACTIONS(4940), 1, + ACTIONS(4946), 1, anon_sym_LBRACK2, - ACTIONS(4944), 1, + ACTIONS(4950), 1, anon_sym_POUND_LBRACK, - ACTIONS(4994), 1, + ACTIONS(4996), 1, anon_sym_as, - ACTIONS(5008), 1, + ACTIONS(5012), 1, anon_sym_PLUS_PLUS, - ACTIONS(5010), 1, + ACTIONS(5014), 1, anon_sym_DASH_DASH, - ACTIONS(5018), 1, + ACTIONS(5022), 1, anon_sym_or, - ACTIONS(5322), 1, + ACTIONS(5076), 1, anon_sym_CARET, - ACTIONS(5324), 1, + ACTIONS(5082), 1, anon_sym_AMP_AMP, - ACTIONS(5326), 1, + ACTIONS(5114), 1, anon_sym_PIPE_PIPE, - ACTIONS(5342), 1, - anon_sym_RPAREN, - STATE(2396), 1, - sym_or_block, - STATE(2397), 1, + ACTIONS(5232), 1, + anon_sym_COLON, + STATE(2298), 1, sym_argument_list, - STATE(4127), 1, + STATE(2299), 1, + sym_or_block, + STATE(4251), 1, sym_type_parameters, - ACTIONS(4942), 2, + ACTIONS(4948), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - ACTIONS(5020), 2, + ACTIONS(5024), 2, anon_sym_is, anon_sym_BANGis, - ACTIONS(5318), 2, + ACTIONS(5078), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(5328), 2, + ACTIONS(5084), 2, anon_sym_in, anon_sym_BANGin, - STATE(2631), 2, + STATE(2632), 2, sym_line_comment, sym_block_comment, - ACTIONS(5312), 3, - anon_sym_SLASH, - anon_sym_AMP, - anon_sym_GT_GT, - ACTIONS(5316), 3, + ACTIONS(5070), 3, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5320), 4, + ACTIONS(5074), 3, + anon_sym_SLASH, + anon_sym_AMP, + anon_sym_GT_GT, + ACTIONS(5080), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(5310), 5, + ACTIONS(5072), 5, anon_sym_STAR, anon_sym_PERCENT, anon_sym_LT_LT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - [74155] = 28, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_STAR, - ACTIONS(47), 1, - anon_sym_QMARK, - ACTIONS(85), 1, - anon_sym_map_LBRACK, - ACTIONS(87), 1, - anon_sym_chan, - ACTIONS(89), 1, - anon_sym_thread, - ACTIONS(91), 1, - anon_sym_atomic, - ACTIONS(603), 1, - anon_sym_fn, - ACTIONS(607), 1, - anon_sym_struct, - ACTIONS(3586), 1, - anon_sym_LPAREN, - ACTIONS(3588), 1, - anon_sym_STAR, - ACTIONS(5294), 1, - sym_identifier, - ACTIONS(5298), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(5300), 1, - anon_sym_mut, - ACTIONS(5302), 1, - anon_sym_BANG, - ACTIONS(5304), 1, - anon_sym_LBRACK2, - ACTIONS(5306), 1, - anon_sym_AMP, - ACTIONS(5308), 1, - anon_sym_shared, - ACTIONS(5336), 1, - anon_sym_RPAREN, - STATE(2984), 1, - sym_mutability_modifiers, - STATE(3801), 1, - sym_plain_type, - STATE(3808), 1, - sym_parameter_declaration, - STATE(3809), 1, - sym_type_parameter_declaration, - STATE(4495), 1, - sym_reference_expression, - STATE(2632), 2, - sym_line_comment, - sym_block_comment, - STATE(3541), 2, - sym_type_reference_expression, - sym_qualified_type, - STATE(2302), 4, - sym__plain_type_without_special, - sym_multi_return_type, - sym_result_type, - sym_option_type, - STATE(2303), 12, - sym_anon_struct_type, - sym_fixed_array_type, - sym_array_type, - sym_pointer_type, - sym_wrong_pointer_type, - sym_map_type, - sym_channel_type, - sym_shared_type, - sym_thread_type, - sym_atomic_type, - sym_generic_type, - sym_function_type, - [74256] = 5, + [73893] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, @@ -253854,7 +253786,7 @@ static const uint16_t ts_small_parse_table[] = { STATE(2633), 2, sym_line_comment, sym_block_comment, - ACTIONS(2353), 13, + ACTIONS(2125), 13, anon_sym_DOT, anon_sym_PIPE, anon_sym_PLUS, @@ -253868,7 +253800,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_GT_GT, anon_sym_DOT_DOT, - ACTIONS(2351), 27, + ACTIONS(2123), 27, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -253896,7 +253828,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [74311] = 5, + [73948] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, @@ -253904,7 +253836,7 @@ static const uint16_t ts_small_parse_table[] = { STATE(2634), 2, sym_line_comment, sym_block_comment, - ACTIONS(2473), 13, + ACTIONS(1987), 13, anon_sym_DOT, anon_sym_PIPE, anon_sym_PLUS, @@ -253918,7 +253850,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_GT_GT, anon_sym_DOT_DOT, - ACTIONS(2471), 27, + ACTIONS(1989), 27, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -253946,7 +253878,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [74366] = 5, + [74003] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, @@ -253954,7 +253886,7 @@ static const uint16_t ts_small_parse_table[] = { STATE(2635), 2, sym_line_comment, sym_block_comment, - ACTIONS(2487), 13, + ACTIONS(2311), 13, anon_sym_DOT, anon_sym_PIPE, anon_sym_PLUS, @@ -253968,7 +253900,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_GT_GT, anon_sym_DOT_DOT, - ACTIONS(2485), 27, + ACTIONS(2309), 27, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -253996,80 +253928,80 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [74421] = 28, + [74058] = 28, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(4932), 1, + ACTIONS(4938), 1, anon_sym_LPAREN, - ACTIONS(4934), 1, + ACTIONS(4940), 1, anon_sym_LBRACK, - ACTIONS(4936), 1, + ACTIONS(4942), 1, anon_sym_QMARK, - ACTIONS(4938), 1, + ACTIONS(4944), 1, anon_sym_BANG, - ACTIONS(4940), 1, + ACTIONS(4946), 1, anon_sym_LBRACK2, - ACTIONS(4944), 1, + ACTIONS(4950), 1, anon_sym_POUND_LBRACK, - ACTIONS(4994), 1, + ACTIONS(4996), 1, anon_sym_as, - ACTIONS(5008), 1, + ACTIONS(5012), 1, anon_sym_PLUS_PLUS, - ACTIONS(5010), 1, + ACTIONS(5014), 1, anon_sym_DASH_DASH, - ACTIONS(5018), 1, + ACTIONS(5022), 1, anon_sym_or, - ACTIONS(5322), 1, + ACTIONS(5316), 1, + anon_sym_RPAREN, + ACTIONS(5328), 1, anon_sym_CARET, - ACTIONS(5324), 1, + ACTIONS(5330), 1, anon_sym_AMP_AMP, - ACTIONS(5326), 1, + ACTIONS(5332), 1, anon_sym_PIPE_PIPE, - ACTIONS(5344), 1, - anon_sym_RPAREN, - STATE(2396), 1, - sym_or_block, - STATE(2397), 1, + STATE(2298), 1, sym_argument_list, - STATE(4127), 1, + STATE(2299), 1, + sym_or_block, + STATE(4251), 1, sym_type_parameters, - ACTIONS(4942), 2, + ACTIONS(4948), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - ACTIONS(5020), 2, + ACTIONS(5024), 2, anon_sym_is, anon_sym_BANGis, - ACTIONS(5318), 2, + ACTIONS(5324), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(5328), 2, + ACTIONS(5334), 2, anon_sym_in, anon_sym_BANGin, STATE(2636), 2, sym_line_comment, sym_block_comment, - ACTIONS(5312), 3, - anon_sym_SLASH, - anon_sym_AMP, - anon_sym_GT_GT, - ACTIONS(5316), 3, + ACTIONS(5318), 3, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5320), 4, + ACTIONS(5322), 3, + anon_sym_SLASH, + anon_sym_AMP, + anon_sym_GT_GT, + ACTIONS(5326), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(5310), 5, + ACTIONS(5320), 5, anon_sym_STAR, anon_sym_PERCENT, anon_sym_LT_LT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - [74522] = 5, + [74159] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, @@ -254077,7 +254009,7 @@ static const uint16_t ts_small_parse_table[] = { STATE(2637), 2, sym_line_comment, sym_block_comment, - ACTIONS(2309), 13, + ACTIONS(2522), 13, anon_sym_DOT, anon_sym_PIPE, anon_sym_PLUS, @@ -254091,7 +254023,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_GT_GT, anon_sym_DOT_DOT, - ACTIONS(2307), 27, + ACTIONS(2520), 27, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -254119,88 +254051,346 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [74577] = 28, + [74214] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(4932), 1, + STATE(2638), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(2532), 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(2530), 27, + anon_sym_as, + anon_sym_LBRACE, + anon_sym_COMMA, anon_sym_LPAREN, - ACTIONS(4934), 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(4936), 1, - anon_sym_QMARK, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_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, + [74269] = 28, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, ACTIONS(4938), 1, - anon_sym_BANG, + anon_sym_LPAREN, ACTIONS(4940), 1, - anon_sym_LBRACK2, + anon_sym_LBRACK, + ACTIONS(4942), 1, + anon_sym_QMARK, ACTIONS(4944), 1, + anon_sym_BANG, + ACTIONS(4946), 1, + anon_sym_LBRACK2, + ACTIONS(4950), 1, anon_sym_POUND_LBRACK, - ACTIONS(4994), 1, + ACTIONS(4996), 1, anon_sym_as, - ACTIONS(5008), 1, + ACTIONS(5012), 1, anon_sym_PLUS_PLUS, - ACTIONS(5010), 1, + ACTIONS(5014), 1, anon_sym_DASH_DASH, - ACTIONS(5018), 1, + ACTIONS(5022), 1, anon_sym_or, - ACTIONS(5322), 1, + ACTIONS(5200), 1, anon_sym_CARET, - ACTIONS(5324), 1, + ACTIONS(5202), 1, anon_sym_AMP_AMP, - ACTIONS(5326), 1, + ACTIONS(5204), 1, anon_sym_PIPE_PIPE, - ACTIONS(5346), 1, - anon_sym_RPAREN, - STATE(2396), 1, + ACTIONS(5294), 1, + anon_sym_LBRACE, + STATE(2298), 1, + sym_argument_list, + STATE(2299), 1, sym_or_block, - STATE(2397), 1, + STATE(4251), 1, + sym_type_parameters, + ACTIONS(4948), 2, + anon_sym_DOT, + anon_sym_QMARK_DOT, + ACTIONS(5024), 2, + anon_sym_is, + anon_sym_BANGis, + ACTIONS(5194), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(5206), 2, + anon_sym_in, + anon_sym_BANGin, + STATE(2639), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(5188), 3, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(5192), 3, + anon_sym_SLASH, + anon_sym_AMP, + anon_sym_GT_GT, + ACTIONS(5196), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(5190), 5, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_AMP_CARET, + [74370] = 28, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(4938), 1, + anon_sym_LPAREN, + ACTIONS(4940), 1, + anon_sym_LBRACK, + ACTIONS(4942), 1, + anon_sym_QMARK, + ACTIONS(4944), 1, + anon_sym_BANG, + ACTIONS(4946), 1, + anon_sym_LBRACK2, + ACTIONS(4950), 1, + anon_sym_POUND_LBRACK, + ACTIONS(4996), 1, + anon_sym_as, + ACTIONS(5012), 1, + anon_sym_PLUS_PLUS, + ACTIONS(5014), 1, + anon_sym_DASH_DASH, + ACTIONS(5022), 1, + anon_sym_or, + ACTIONS(5200), 1, + anon_sym_CARET, + ACTIONS(5202), 1, + anon_sym_AMP_AMP, + ACTIONS(5204), 1, + anon_sym_PIPE_PIPE, + ACTIONS(5336), 1, + anon_sym_LBRACE, + STATE(2298), 1, sym_argument_list, - STATE(4127), 1, + STATE(2299), 1, + sym_or_block, + STATE(4251), 1, sym_type_parameters, - ACTIONS(4942), 2, + ACTIONS(4948), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - ACTIONS(5020), 2, + ACTIONS(5024), 2, anon_sym_is, anon_sym_BANGis, - ACTIONS(5318), 2, + ACTIONS(5194), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(5328), 2, + ACTIONS(5206), 2, anon_sym_in, anon_sym_BANGin, - STATE(2638), 2, + STATE(2640), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(5188), 3, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(5192), 3, + anon_sym_SLASH, + anon_sym_AMP, + anon_sym_GT_GT, + ACTIONS(5196), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(5190), 5, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_AMP_CARET, + [74471] = 17, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(4938), 1, + anon_sym_LPAREN, + ACTIONS(4940), 1, + anon_sym_LBRACK, + ACTIONS(4942), 1, + anon_sym_QMARK, + ACTIONS(4944), 1, + anon_sym_BANG, + ACTIONS(4946), 1, + anon_sym_LBRACK2, + ACTIONS(4950), 1, + anon_sym_POUND_LBRACK, + STATE(2298), 1, + sym_argument_list, + STATE(2299), 1, + sym_or_block, + STATE(4251), 1, + sym_type_parameters, + ACTIONS(4948), 2, + anon_sym_DOT, + anon_sym_QMARK_DOT, + STATE(2641), 2, sym_line_comment, sym_block_comment, - ACTIONS(5312), 3, + ACTIONS(5322), 3, anon_sym_SLASH, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(5316), 3, + ACTIONS(1765), 5, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(5320), 5, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_AMP_CARET, + ACTIONS(1763), 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, + [74550] = 28, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(4938), 1, + anon_sym_LPAREN, + ACTIONS(4940), 1, + anon_sym_LBRACK, + ACTIONS(4942), 1, + anon_sym_QMARK, + ACTIONS(4944), 1, + anon_sym_BANG, + ACTIONS(4946), 1, + anon_sym_LBRACK2, + ACTIONS(4950), 1, + anon_sym_POUND_LBRACK, + ACTIONS(4996), 1, + anon_sym_as, + ACTIONS(5012), 1, + anon_sym_PLUS_PLUS, + ACTIONS(5014), 1, + anon_sym_DASH_DASH, + ACTIONS(5022), 1, + anon_sym_or, + ACTIONS(5328), 1, + anon_sym_CARET, + ACTIONS(5330), 1, + anon_sym_AMP_AMP, + ACTIONS(5332), 1, + anon_sym_PIPE_PIPE, + ACTIONS(5338), 1, + anon_sym_RPAREN, + STATE(2298), 1, + sym_argument_list, + STATE(2299), 1, + sym_or_block, + STATE(4251), 1, + sym_type_parameters, + ACTIONS(4948), 2, + anon_sym_DOT, + anon_sym_QMARK_DOT, + ACTIONS(5024), 2, + anon_sym_is, + anon_sym_BANGis, + ACTIONS(5324), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(5334), 2, + anon_sym_in, + anon_sym_BANGin, + STATE(2642), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(5318), 3, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5320), 4, + ACTIONS(5322), 3, + anon_sym_SLASH, + anon_sym_AMP, + anon_sym_GT_GT, + ACTIONS(5326), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(5310), 5, + ACTIONS(5320), 5, anon_sym_STAR, anon_sym_PERCENT, anon_sym_LT_LT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - [74678] = 5, + [74651] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - STATE(2639), 2, + STATE(2643), 2, sym_line_comment, sym_block_comment, - ACTIONS(2159), 13, + ACTIONS(2233), 13, anon_sym_DOT, anon_sym_PIPE, anon_sym_PLUS, @@ -254214,7 +254404,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_GT_GT, anon_sym_DOT_DOT, - ACTIONS(2157), 27, + ACTIONS(2231), 27, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -254242,15 +254432,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [74733] = 5, + [74706] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - STATE(2640), 2, + STATE(2644), 2, sym_line_comment, sym_block_comment, - ACTIONS(1951), 13, + ACTIONS(3054), 13, anon_sym_DOT, anon_sym_PIPE, anon_sym_PLUS, @@ -254264,7 +254454,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_GT_GT, anon_sym_DOT_DOT, - ACTIONS(1953), 27, + ACTIONS(3052), 27, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -254292,227 +254482,138 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [74788] = 28, + [74761] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(47), 1, + STATE(2645), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(2315), 13, + anon_sym_DOT, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, anon_sym_QMARK, - ACTIONS(85), 1, - anon_sym_map_LBRACK, - ACTIONS(87), 1, - anon_sym_chan, - ACTIONS(89), 1, - anon_sym_thread, - ACTIONS(91), 1, - anon_sym_atomic, - ACTIONS(603), 1, - anon_sym_fn, - ACTIONS(607), 1, - anon_sym_struct, - ACTIONS(3586), 1, - anon_sym_LPAREN, - ACTIONS(3588), 1, - anon_sym_STAR, - ACTIONS(5294), 1, - sym_identifier, - ACTIONS(5298), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(5300), 1, - anon_sym_mut, - ACTIONS(5302), 1, anon_sym_BANG, - ACTIONS(5304), 1, anon_sym_LBRACK2, - ACTIONS(5306), 1, anon_sym_AMP, - ACTIONS(5308), 1, - anon_sym_shared, - ACTIONS(5348), 1, - anon_sym_RPAREN, - STATE(2984), 1, - sym_mutability_modifiers, - STATE(3864), 1, - sym_parameter_declaration, - STATE(3865), 1, - sym_type_parameter_declaration, - STATE(4265), 1, - sym_plain_type, - STATE(4495), 1, - sym_reference_expression, - STATE(2641), 2, - sym_line_comment, - sym_block_comment, - STATE(3541), 2, - sym_type_reference_expression, - sym_qualified_type, - STATE(2302), 4, - sym__plain_type_without_special, - sym_multi_return_type, - sym_result_type, - sym_option_type, - STATE(2303), 12, - sym_anon_struct_type, - sym_fixed_array_type, - sym_array_type, - sym_pointer_type, - sym_wrong_pointer_type, - sym_map_type, - sym_channel_type, - sym_shared_type, - sym_thread_type, - sym_atomic_type, - sym_generic_type, - sym_function_type, - [74889] = 21, + anon_sym_GT_GT, + anon_sym_DOT_DOT, + ACTIONS(2313), 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, + [74816] = 28, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(4932), 1, + ACTIONS(4938), 1, anon_sym_LPAREN, - ACTIONS(4934), 1, + ACTIONS(4940), 1, anon_sym_LBRACK, - ACTIONS(4936), 1, + ACTIONS(4942), 1, anon_sym_QMARK, - ACTIONS(4938), 1, + ACTIONS(4944), 1, anon_sym_BANG, - ACTIONS(4940), 1, + ACTIONS(4946), 1, anon_sym_LBRACK2, - ACTIONS(4944), 1, + ACTIONS(4950), 1, anon_sym_POUND_LBRACK, - ACTIONS(5322), 1, + ACTIONS(4996), 1, + anon_sym_as, + ACTIONS(5012), 1, + anon_sym_PLUS_PLUS, + ACTIONS(5014), 1, + anon_sym_DASH_DASH, + ACTIONS(5022), 1, + anon_sym_or, + ACTIONS(5328), 1, anon_sym_CARET, - STATE(2396), 1, - sym_or_block, - STATE(2397), 1, + ACTIONS(5330), 1, + anon_sym_AMP_AMP, + ACTIONS(5332), 1, + anon_sym_PIPE_PIPE, + ACTIONS(5340), 1, + anon_sym_RPAREN, + STATE(2298), 1, sym_argument_list, - STATE(4127), 1, + STATE(2299), 1, + sym_or_block, + STATE(4251), 1, sym_type_parameters, - ACTIONS(4942), 2, + ACTIONS(4948), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - ACTIONS(5318), 2, + ACTIONS(5024), 2, + anon_sym_is, + anon_sym_BANGis, + ACTIONS(5324), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(5328), 2, + ACTIONS(5334), 2, anon_sym_in, anon_sym_BANGin, - STATE(2642), 2, + STATE(2646), 2, sym_line_comment, sym_block_comment, - ACTIONS(5312), 3, - anon_sym_SLASH, - anon_sym_AMP, - anon_sym_GT_GT, - ACTIONS(5316), 3, + ACTIONS(5318), 3, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5320), 4, + ACTIONS(5322), 3, + anon_sym_SLASH, + anon_sym_AMP, + anon_sym_GT_GT, + ACTIONS(5326), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(5310), 5, + ACTIONS(5320), 5, anon_sym_STAR, anon_sym_PERCENT, anon_sym_LT_LT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(1783), 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, - [74976] = 28, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_STAR, - ACTIONS(47), 1, - anon_sym_QMARK, - ACTIONS(85), 1, - anon_sym_map_LBRACK, - ACTIONS(87), 1, - anon_sym_chan, - ACTIONS(89), 1, - anon_sym_thread, - ACTIONS(91), 1, - anon_sym_atomic, - ACTIONS(603), 1, - anon_sym_fn, - ACTIONS(607), 1, - anon_sym_struct, - ACTIONS(3586), 1, - anon_sym_LPAREN, - ACTIONS(3588), 1, - anon_sym_STAR, - ACTIONS(5294), 1, - sym_identifier, - ACTIONS(5298), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(5300), 1, - anon_sym_mut, - ACTIONS(5302), 1, - anon_sym_BANG, - ACTIONS(5304), 1, - anon_sym_LBRACK2, - ACTIONS(5306), 1, - anon_sym_AMP, - ACTIONS(5308), 1, - anon_sym_shared, - ACTIONS(5350), 1, - anon_sym_RPAREN, - STATE(2984), 1, - sym_mutability_modifiers, - STATE(3846), 1, - sym_parameter_declaration, - STATE(3851), 1, - sym_type_parameter_declaration, - STATE(4265), 1, - sym_plain_type, - STATE(4495), 1, - sym_reference_expression, - STATE(2643), 2, - sym_line_comment, - sym_block_comment, - STATE(3541), 2, - sym_type_reference_expression, - sym_qualified_type, - STATE(2302), 4, - sym__plain_type_without_special, - sym_multi_return_type, - sym_result_type, - sym_option_type, - STATE(2303), 12, - sym_anon_struct_type, - sym_fixed_array_type, - sym_array_type, - sym_pointer_type, - sym_wrong_pointer_type, - sym_map_type, - sym_channel_type, - sym_shared_type, - sym_thread_type, - sym_atomic_type, - sym_generic_type, - sym_function_type, - [75077] = 5, + [74917] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - STATE(2644), 2, + STATE(2647), 2, sym_line_comment, sym_block_comment, - ACTIONS(2229), 13, + ACTIONS(2297), 13, anon_sym_DOT, anon_sym_PIPE, anon_sym_PLUS, @@ -254526,7 +254627,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_GT_GT, anon_sym_DOT_DOT, - ACTIONS(2227), 27, + ACTIONS(2295), 27, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -254554,15 +254655,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [75132] = 5, + [74972] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - STATE(2645), 2, + STATE(2648), 2, sym_line_comment, sym_block_comment, - ACTIONS(2267), 13, + ACTIONS(2303), 13, anon_sym_DOT, anon_sym_PIPE, anon_sym_PLUS, @@ -254576,7 +254677,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_GT_GT, anon_sym_DOT_DOT, - ACTIONS(2265), 27, + ACTIONS(2301), 27, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -254604,82 +254705,68 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [75187] = 19, + [75027] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(4932), 1, - anon_sym_LPAREN, - ACTIONS(4934), 1, - anon_sym_LBRACK, - ACTIONS(4936), 1, - anon_sym_QMARK, - ACTIONS(4938), 1, - anon_sym_BANG, - ACTIONS(4940), 1, - anon_sym_LBRACK2, - ACTIONS(4944), 1, - anon_sym_POUND_LBRACK, - ACTIONS(5322), 1, - anon_sym_CARET, - STATE(2396), 1, - sym_or_block, - STATE(2397), 1, - sym_argument_list, - STATE(4127), 1, - sym_type_parameters, - ACTIONS(1785), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(4942), 2, - anon_sym_DOT, - anon_sym_QMARK_DOT, - STATE(2646), 2, + STATE(2649), 2, sym_line_comment, sym_block_comment, - ACTIONS(5312), 3, - anon_sym_SLASH, - anon_sym_AMP, - anon_sym_GT_GT, - ACTIONS(5316), 3, + ACTIONS(2143), 13, + anon_sym_DOT, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5310), 5, + 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(2141), 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(1783), 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, - [75270] = 6, + [75082] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(1953), 2, + ACTIONS(1989), 2, anon_sym_LBRACE, anon_sym_COMMA, - STATE(2647), 2, + STATE(2650), 2, sym_line_comment, sym_block_comment, - ACTIONS(2663), 11, + ACTIONS(2676), 11, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, @@ -254691,7 +254778,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(2661), 27, + ACTIONS(2674), 27, anon_sym_DOT, anon_sym_as, anon_sym_LPAREN, @@ -254719,115 +254806,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [75327] = 5, + [75139] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - STATE(2648), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(2731), 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(2729), 27, - anon_sym_as, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_LBRACK, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_or, - anon_sym_QMARK_DOT, - anon_sym_POUND_LBRACK, - anon_sym_is, - anon_sym_BANGis, - anon_sym_in, - anon_sym_BANGin, - [75382] = 5, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_STAR, - STATE(2649), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(2285), 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(2283), 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, - [75437] = 5, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_STAR, - STATE(2650), 2, + STATE(2651), 2, sym_line_comment, sym_block_comment, - ACTIONS(2735), 13, + ACTIONS(2732), 13, anon_sym_DOT, anon_sym_PIPE, anon_sym_PLUS, @@ -254841,7 +254828,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_GT_GT, anon_sym_DOT_DOT, - ACTIONS(2733), 27, + ACTIONS(2730), 27, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -254869,80 +254856,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [75492] = 28, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_STAR, - ACTIONS(4932), 1, - anon_sym_LPAREN, - ACTIONS(4934), 1, - anon_sym_LBRACK, - ACTIONS(4936), 1, - anon_sym_QMARK, - ACTIONS(4938), 1, - anon_sym_BANG, - ACTIONS(4940), 1, - anon_sym_LBRACK2, - ACTIONS(4944), 1, - anon_sym_POUND_LBRACK, - ACTIONS(4994), 1, - anon_sym_as, - ACTIONS(5008), 1, - anon_sym_PLUS_PLUS, - ACTIONS(5010), 1, - anon_sym_DASH_DASH, - ACTIONS(5018), 1, - anon_sym_or, - ACTIONS(5322), 1, - anon_sym_CARET, - ACTIONS(5324), 1, - anon_sym_AMP_AMP, - ACTIONS(5326), 1, - anon_sym_PIPE_PIPE, - ACTIONS(5352), 1, - anon_sym_RPAREN, - STATE(2396), 1, - sym_or_block, - STATE(2397), 1, - sym_argument_list, - STATE(4127), 1, - sym_type_parameters, - ACTIONS(4942), 2, - anon_sym_DOT, - anon_sym_QMARK_DOT, - ACTIONS(5020), 2, - anon_sym_is, - anon_sym_BANGis, - ACTIONS(5318), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(5328), 2, - anon_sym_in, - anon_sym_BANGin, - STATE(2651), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(5312), 3, - anon_sym_SLASH, - anon_sym_AMP, - anon_sym_GT_GT, - ACTIONS(5316), 3, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(5320), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(5310), 5, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - [75593] = 5, + [75194] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, @@ -254950,7 +254864,7 @@ static const uint16_t ts_small_parse_table[] = { STATE(2652), 2, sym_line_comment, sym_block_comment, - ACTIONS(2305), 13, + ACTIONS(2850), 13, anon_sym_DOT, anon_sym_PIPE, anon_sym_PLUS, @@ -254964,7 +254878,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_GT_GT, anon_sym_DOT_DOT, - ACTIONS(2303), 27, + ACTIONS(2848), 27, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -254992,7 +254906,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [75648] = 5, + [75249] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, @@ -255000,7 +254914,7 @@ static const uint16_t ts_small_parse_table[] = { STATE(2653), 2, sym_line_comment, sym_block_comment, - ACTIONS(2315), 13, + ACTIONS(2119), 13, anon_sym_DOT, anon_sym_PIPE, anon_sym_PLUS, @@ -255014,7 +254928,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_GT_GT, anon_sym_DOT_DOT, - ACTIONS(2313), 27, + ACTIONS(2117), 27, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -255042,80 +254956,80 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [75703] = 28, + [75304] = 28, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(3544), 1, - anon_sym_LBRACE, - ACTIONS(4932), 1, + ACTIONS(4938), 1, anon_sym_LPAREN, - ACTIONS(4934), 1, + ACTIONS(4940), 1, anon_sym_LBRACK, - ACTIONS(4936), 1, + ACTIONS(4942), 1, anon_sym_QMARK, - ACTIONS(4938), 1, + ACTIONS(4944), 1, anon_sym_BANG, - ACTIONS(4940), 1, + ACTIONS(4946), 1, anon_sym_LBRACK2, - ACTIONS(4944), 1, + ACTIONS(4950), 1, anon_sym_POUND_LBRACK, - ACTIONS(4994), 1, + ACTIONS(4996), 1, anon_sym_as, - ACTIONS(5008), 1, + ACTIONS(5012), 1, anon_sym_PLUS_PLUS, - ACTIONS(5010), 1, + ACTIONS(5014), 1, anon_sym_DASH_DASH, - ACTIONS(5018), 1, + ACTIONS(5022), 1, anon_sym_or, - ACTIONS(5208), 1, + ACTIONS(5200), 1, anon_sym_CARET, - ACTIONS(5210), 1, + ACTIONS(5202), 1, anon_sym_AMP_AMP, - ACTIONS(5212), 1, + ACTIONS(5204), 1, anon_sym_PIPE_PIPE, - STATE(2396), 1, - sym_or_block, - STATE(2397), 1, + ACTIONS(5342), 1, + anon_sym_LBRACE, + STATE(2298), 1, sym_argument_list, - STATE(4127), 1, + STATE(2299), 1, + sym_or_block, + STATE(4251), 1, sym_type_parameters, - ACTIONS(4942), 2, + ACTIONS(4948), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - ACTIONS(5020), 2, + ACTIONS(5024), 2, anon_sym_is, anon_sym_BANGis, - ACTIONS(5202), 2, + ACTIONS(5194), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(5214), 2, + ACTIONS(5206), 2, anon_sym_in, anon_sym_BANGin, STATE(2654), 2, sym_line_comment, sym_block_comment, - ACTIONS(5196), 3, + ACTIONS(5188), 3, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5200), 3, + ACTIONS(5192), 3, anon_sym_SLASH, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(5204), 4, + ACTIONS(5196), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(5198), 5, + ACTIONS(5190), 5, anon_sym_STAR, anon_sym_PERCENT, anon_sym_LT_LT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - [75804] = 5, + [75405] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, @@ -255123,7 +255037,7 @@ static const uint16_t ts_small_parse_table[] = { STATE(2655), 2, sym_line_comment, sym_block_comment, - ACTIONS(2868), 13, + ACTIONS(2924), 13, anon_sym_DOT, anon_sym_PIPE, anon_sym_PLUS, @@ -255137,7 +255051,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_GT_GT, anon_sym_DOT_DOT, - ACTIONS(2866), 27, + ACTIONS(2922), 27, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -255165,7 +255079,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [75859] = 5, + [75460] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, @@ -255173,7 +255087,7 @@ static const uint16_t ts_small_parse_table[] = { STATE(2656), 2, sym_line_comment, sym_block_comment, - ACTIONS(3046), 13, + ACTIONS(2199), 13, anon_sym_DOT, anon_sym_PIPE, anon_sym_PLUS, @@ -255187,7 +255101,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_GT_GT, anon_sym_DOT_DOT, - ACTIONS(3044), 27, + ACTIONS(2197), 27, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -255215,7 +255129,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [75914] = 5, + [75515] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, @@ -255223,7 +255137,7 @@ static const uint16_t ts_small_parse_table[] = { STATE(2657), 2, sym_line_comment, sym_block_comment, - ACTIONS(2293), 13, + ACTIONS(2229), 13, anon_sym_DOT, anon_sym_PIPE, anon_sym_PLUS, @@ -255237,7 +255151,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_GT_GT, anon_sym_DOT_DOT, - ACTIONS(2291), 27, + ACTIONS(2227), 27, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -255265,7 +255179,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [75969] = 5, + [75570] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, @@ -255273,7 +255187,7 @@ static const uint16_t ts_small_parse_table[] = { STATE(2658), 2, sym_line_comment, sym_block_comment, - ACTIONS(2121), 13, + ACTIONS(2898), 13, anon_sym_DOT, anon_sym_PIPE, anon_sym_PLUS, @@ -255287,7 +255201,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_GT_GT, anon_sym_DOT_DOT, - ACTIONS(2119), 27, + ACTIONS(2896), 27, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -255315,7 +255229,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [76024] = 5, + [75625] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, @@ -255323,7 +255237,7 @@ static const uint16_t ts_small_parse_table[] = { STATE(2659), 2, sym_line_comment, sym_block_comment, - ACTIONS(3062), 13, + ACTIONS(2894), 13, anon_sym_DOT, anon_sym_PIPE, anon_sym_PLUS, @@ -255337,7 +255251,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_GT_GT, anon_sym_DOT_DOT, - ACTIONS(3060), 27, + ACTIONS(2892), 27, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -255365,7 +255279,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [76079] = 5, + [75680] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, @@ -255373,7 +255287,7 @@ static const uint16_t ts_small_parse_table[] = { STATE(2660), 2, sym_line_comment, sym_block_comment, - ACTIONS(3054), 13, + ACTIONS(2890), 13, anon_sym_DOT, anon_sym_PIPE, anon_sym_PLUS, @@ -255387,7 +255301,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_GT_GT, anon_sym_DOT_DOT, - ACTIONS(3052), 27, + ACTIONS(2888), 27, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -255415,82 +255329,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [76134] = 22, + [75735] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(4932), 1, - anon_sym_LPAREN, - ACTIONS(4934), 1, - anon_sym_LBRACK, - ACTIONS(4936), 1, - anon_sym_QMARK, - ACTIONS(4938), 1, - anon_sym_BANG, - ACTIONS(4940), 1, - anon_sym_LBRACK2, - ACTIONS(4944), 1, - anon_sym_POUND_LBRACK, - ACTIONS(5322), 1, - anon_sym_CARET, - ACTIONS(5324), 1, - anon_sym_AMP_AMP, - STATE(2396), 1, - sym_or_block, - STATE(2397), 1, - sym_argument_list, - STATE(4127), 1, - sym_type_parameters, - ACTIONS(4942), 2, - anon_sym_DOT, - anon_sym_QMARK_DOT, - ACTIONS(5318), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(5328), 2, - anon_sym_in, - anon_sym_BANGin, STATE(2661), 2, sym_line_comment, sym_block_comment, - ACTIONS(5312), 3, - anon_sym_SLASH, - anon_sym_AMP, - anon_sym_GT_GT, - ACTIONS(5316), 3, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(5320), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(5310), 5, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - ACTIONS(1783), 8, - anon_sym_as, - anon_sym_RPAREN, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PIPE_PIPE, - anon_sym_or, - anon_sym_is, - anon_sym_BANGis, - [76223] = 5, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_STAR, - STATE(2662), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(2896), 13, + ACTIONS(2836), 13, anon_sym_DOT, anon_sym_PIPE, anon_sym_PLUS, @@ -255504,7 +255351,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_GT_GT, anon_sym_DOT_DOT, - ACTIONS(2894), 27, + ACTIONS(2834), 27, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -255532,15 +255379,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [76278] = 5, + [75790] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - STATE(2663), 2, + STATE(2662), 2, sym_line_comment, sym_block_comment, - ACTIONS(2856), 13, + ACTIONS(3068), 13, anon_sym_DOT, anon_sym_PIPE, anon_sym_PLUS, @@ -255554,7 +255401,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_GT_GT, anon_sym_DOT_DOT, - ACTIONS(2854), 27, + ACTIONS(3066), 27, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -255582,15 +255429,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [76333] = 5, + [75845] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - STATE(2664), 2, + STATE(2663), 2, sym_line_comment, sym_block_comment, - ACTIONS(2860), 13, + ACTIONS(2828), 13, anon_sym_DOT, anon_sym_PIPE, anon_sym_PLUS, @@ -255604,7 +255451,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_GT_GT, anon_sym_DOT_DOT, - ACTIONS(2858), 27, + ACTIONS(2826), 27, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -255632,15 +255479,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [76388] = 5, + [75900] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - STATE(2665), 2, + STATE(2664), 2, sym_line_comment, sym_block_comment, - ACTIONS(2888), 13, + ACTIONS(2824), 13, anon_sym_DOT, anon_sym_PIPE, anon_sym_PLUS, @@ -255654,7 +255501,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_GT_GT, anon_sym_DOT_DOT, - ACTIONS(2886), 27, + ACTIONS(2822), 27, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -255682,15 +255529,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [76443] = 5, + [75955] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - STATE(2666), 2, + ACTIONS(1989), 1, + anon_sym_COMMA, + STATE(2665), 2, sym_line_comment, sym_block_comment, - ACTIONS(2884), 13, + ACTIONS(1809), 13, anon_sym_DOT, anon_sym_PIPE, anon_sym_PLUS, @@ -255704,10 +255553,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_GT_GT, anon_sym_DOT_DOT, - ACTIONS(2882), 27, + ACTIONS(1807), 26, anon_sym_as, anon_sym_LBRACE, - anon_sym_COMMA, anon_sym_LPAREN, anon_sym_STAR, anon_sym_PERCENT, @@ -255732,15 +255580,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [76498] = 5, + [76012] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - STATE(2667), 2, + STATE(2666), 2, sym_line_comment, sym_block_comment, - ACTIONS(2850), 13, + ACTIONS(2862), 13, anon_sym_DOT, anon_sym_PIPE, anon_sym_PLUS, @@ -255754,7 +255602,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_GT_GT, anon_sym_DOT_DOT, - ACTIONS(2848), 27, + ACTIONS(2860), 27, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -255782,15 +255630,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [76553] = 5, + [76067] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - STATE(2668), 2, + STATE(2667), 2, sym_line_comment, sym_block_comment, - ACTIONS(2846), 13, + ACTIONS(2874), 13, anon_sym_DOT, anon_sym_PIPE, anon_sym_PLUS, @@ -255804,7 +255652,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_GT_GT, anon_sym_DOT_DOT, - ACTIONS(2844), 27, + ACTIONS(2872), 27, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -255832,15 +255680,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [76608] = 5, + [76122] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - STATE(2669), 2, + STATE(2668), 2, sym_line_comment, sym_block_comment, - ACTIONS(2836), 13, + ACTIONS(2802), 13, anon_sym_DOT, anon_sym_PIPE, anon_sym_PLUS, @@ -255854,7 +255702,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_GT_GT, anon_sym_DOT_DOT, - ACTIONS(2834), 27, + ACTIONS(2800), 27, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -255882,15 +255730,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [76663] = 5, + [76177] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - STATE(2670), 2, + STATE(2669), 2, sym_line_comment, sym_block_comment, - ACTIONS(2840), 13, + ACTIONS(2798), 13, anon_sym_DOT, anon_sym_PIPE, anon_sym_PLUS, @@ -255904,7 +255752,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_GT_GT, anon_sym_DOT_DOT, - ACTIONS(2838), 27, + ACTIONS(2796), 27, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -255932,15 +255780,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [76718] = 5, + [76232] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - STATE(2671), 2, + STATE(2670), 2, sym_line_comment, sym_block_comment, - ACTIONS(2673), 13, + ACTIONS(2832), 13, anon_sym_DOT, anon_sym_PIPE, anon_sym_PLUS, @@ -255954,7 +255802,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_GT_GT, anon_sym_DOT_DOT, - ACTIONS(2671), 27, + ACTIONS(2830), 27, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -255982,15 +255830,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [76773] = 5, + [76287] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - STATE(2672), 2, + STATE(2671), 2, sym_line_comment, sym_block_comment, - ACTIONS(2483), 13, + ACTIONS(2794), 13, anon_sym_DOT, anon_sym_PIPE, anon_sym_PLUS, @@ -256004,7 +255852,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_GT_GT, anon_sym_DOT_DOT, - ACTIONS(2481), 27, + ACTIONS(2792), 27, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -256032,7 +255880,80 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [76828] = 5, + [76342] = 28, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(47), 1, + anon_sym_QMARK, + ACTIONS(85), 1, + anon_sym_map_LBRACK, + ACTIONS(87), 1, + anon_sym_chan, + ACTIONS(89), 1, + anon_sym_thread, + ACTIONS(91), 1, + anon_sym_atomic, + ACTIONS(571), 1, + anon_sym_fn, + ACTIONS(575), 1, + anon_sym_struct, + ACTIONS(3564), 1, + anon_sym_LPAREN, + ACTIONS(3566), 1, + anon_sym_STAR, + ACTIONS(5300), 1, + sym_identifier, + ACTIONS(5304), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(5306), 1, + anon_sym_mut, + ACTIONS(5308), 1, + anon_sym_BANG, + ACTIONS(5310), 1, + anon_sym_LBRACK2, + ACTIONS(5312), 1, + anon_sym_AMP, + ACTIONS(5314), 1, + anon_sym_shared, + ACTIONS(5344), 1, + anon_sym_RPAREN, + STATE(2993), 1, + sym_mutability_modifiers, + STATE(3916), 1, + sym_type_parameter_declaration, + STATE(3917), 1, + sym_parameter_declaration, + STATE(4254), 1, + sym_plain_type, + STATE(4498), 1, + sym_reference_expression, + STATE(2672), 2, + sym_line_comment, + sym_block_comment, + STATE(3460), 2, + sym_type_reference_expression, + sym_qualified_type, + STATE(2360), 4, + sym__plain_type_without_special, + sym_multi_return_type, + sym_result_type, + sym_option_type, + STATE(2362), 12, + sym_anon_struct_type, + sym_fixed_array_type, + sym_array_type, + sym_pointer_type, + sym_wrong_pointer_type, + sym_map_type, + sym_channel_type, + sym_shared_type, + sym_thread_type, + sym_atomic_type, + sym_generic_type, + sym_function_type, + [76443] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, @@ -256040,7 +255961,7 @@ static const uint16_t ts_small_parse_table[] = { STATE(2673), 2, sym_line_comment, sym_block_comment, - ACTIONS(2824), 13, + ACTIONS(2782), 13, anon_sym_DOT, anon_sym_PIPE, anon_sym_PLUS, @@ -256054,7 +255975,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_GT_GT, anon_sym_DOT_DOT, - ACTIONS(2822), 27, + ACTIONS(2780), 27, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -256082,7 +256003,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [76883] = 5, + [76498] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, @@ -256090,7 +256011,7 @@ static const uint16_t ts_small_parse_table[] = { STATE(2674), 2, sym_line_comment, sym_block_comment, - ACTIONS(2820), 13, + ACTIONS(2718), 13, anon_sym_DOT, anon_sym_PIPE, anon_sym_PLUS, @@ -256104,7 +256025,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_GT_GT, anon_sym_DOT_DOT, - ACTIONS(2818), 27, + ACTIONS(2716), 27, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -256132,7 +256053,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [76938] = 5, + [76553] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, @@ -256140,7 +256061,7 @@ static const uint16_t ts_small_parse_table[] = { STATE(2675), 2, sym_line_comment, sym_block_comment, - ACTIONS(2806), 13, + ACTIONS(2501), 13, anon_sym_DOT, anon_sym_PIPE, anon_sym_PLUS, @@ -256154,7 +256075,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_GT_GT, anon_sym_DOT_DOT, - ACTIONS(2804), 27, + ACTIONS(2499), 27, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -256182,80 +256103,80 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [76993] = 28, + [76608] = 28, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(4932), 1, + ACTIONS(4938), 1, anon_sym_LPAREN, - ACTIONS(4934), 1, + ACTIONS(4940), 1, anon_sym_LBRACK, - ACTIONS(4936), 1, + ACTIONS(4942), 1, anon_sym_QMARK, - ACTIONS(4938), 1, + ACTIONS(4944), 1, anon_sym_BANG, - ACTIONS(4940), 1, + ACTIONS(4946), 1, anon_sym_LBRACK2, - ACTIONS(4944), 1, + ACTIONS(4950), 1, anon_sym_POUND_LBRACK, - ACTIONS(4994), 1, + ACTIONS(4996), 1, anon_sym_as, - ACTIONS(5008), 1, + ACTIONS(5012), 1, anon_sym_PLUS_PLUS, - ACTIONS(5010), 1, + ACTIONS(5014), 1, anon_sym_DASH_DASH, - ACTIONS(5018), 1, + ACTIONS(5022), 1, anon_sym_or, - ACTIONS(5208), 1, + ACTIONS(5200), 1, anon_sym_CARET, - ACTIONS(5210), 1, + ACTIONS(5202), 1, anon_sym_AMP_AMP, - ACTIONS(5212), 1, + ACTIONS(5204), 1, anon_sym_PIPE_PIPE, - ACTIONS(5354), 1, + ACTIONS(5346), 1, anon_sym_LBRACE, - STATE(2396), 1, - sym_or_block, - STATE(2397), 1, + STATE(2298), 1, sym_argument_list, - STATE(4127), 1, + STATE(2299), 1, + sym_or_block, + STATE(4251), 1, sym_type_parameters, - ACTIONS(4942), 2, + ACTIONS(4948), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - ACTIONS(5020), 2, + ACTIONS(5024), 2, anon_sym_is, anon_sym_BANGis, - ACTIONS(5202), 2, + ACTIONS(5194), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(5214), 2, + ACTIONS(5206), 2, anon_sym_in, anon_sym_BANGin, STATE(2676), 2, sym_line_comment, sym_block_comment, - ACTIONS(5196), 3, + ACTIONS(5188), 3, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5200), 3, + ACTIONS(5192), 3, anon_sym_SLASH, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(5204), 4, + ACTIONS(5196), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(5198), 5, + ACTIONS(5190), 5, anon_sym_STAR, anon_sym_PERCENT, anon_sym_LT_LT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - [77094] = 5, + [76709] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, @@ -256263,8 +256184,59 @@ static const uint16_t ts_small_parse_table[] = { STATE(2677), 2, sym_line_comment, sym_block_comment, - ACTIONS(2247), 13, + ACTIONS(1809), 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(1807), 29, anon_sym_DOT, + anon_sym_as, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LBRACK, + anon_sym_COLON, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_CARET, + anon_sym_LT_DASH, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_AMP_CARET, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_or, + anon_sym_QMARK_DOT, + anon_sym_POUND_LBRACK, + anon_sym_else, + anon_sym_DOLLARelse, + anon_sym_is, + anon_sym_BANGis, + anon_sym_in, + anon_sym_BANGin, + [76764] = 6, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(1989), 1, + anon_sym_LBRACE, + STATE(2678), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(2676), 11, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, @@ -256276,8 +256248,59 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, + ACTIONS(2674), 28, + anon_sym_SEMI, + anon_sym_DOT, + anon_sym_as, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_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, + [76821] = 6, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(5348), 1, + anon_sym_BANG, + STATE(2679), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(2542), 12, + anon_sym_DOT, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + anon_sym_QMARK, + anon_sym_LBRACK2, + anon_sym_AMP, + anon_sym_GT_GT, anon_sym_DOT_DOT, - ACTIONS(2245), 27, + ACTIONS(2540), 27, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -256305,15 +256328,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [77149] = 5, + [76878] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - STATE(2678), 2, + STATE(2680), 2, sym_line_comment, sym_block_comment, - ACTIONS(2239), 13, + ACTIONS(2211), 13, anon_sym_DOT, anon_sym_PIPE, anon_sym_PLUS, @@ -256327,7 +256350,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_GT_GT, anon_sym_DOT_DOT, - ACTIONS(2237), 27, + ACTIONS(2209), 27, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -256355,15 +256378,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [77204] = 5, + [76933] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - STATE(2679), 2, + STATE(2681), 2, sym_line_comment, sym_block_comment, - ACTIONS(2802), 13, + ACTIONS(2203), 13, anon_sym_DOT, anon_sym_PIPE, anon_sym_PLUS, @@ -256377,7 +256400,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_GT_GT, anon_sym_DOT_DOT, - ACTIONS(2800), 27, + ACTIONS(2201), 27, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -256405,88 +256428,211 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [77259] = 28, + [76988] = 28, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(4932), 1, + ACTIONS(47), 1, + anon_sym_QMARK, + ACTIONS(85), 1, + anon_sym_map_LBRACK, + ACTIONS(87), 1, + anon_sym_chan, + ACTIONS(89), 1, + anon_sym_thread, + ACTIONS(91), 1, + anon_sym_atomic, + ACTIONS(571), 1, + anon_sym_fn, + ACTIONS(575), 1, + anon_sym_struct, + ACTIONS(3564), 1, anon_sym_LPAREN, - ACTIONS(4934), 1, + ACTIONS(3566), 1, + anon_sym_STAR, + ACTIONS(5300), 1, + sym_identifier, + ACTIONS(5304), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(5306), 1, + anon_sym_mut, + ACTIONS(5308), 1, + anon_sym_BANG, + ACTIONS(5310), 1, + anon_sym_LBRACK2, + ACTIONS(5312), 1, + anon_sym_AMP, + ACTIONS(5314), 1, + anon_sym_shared, + ACTIONS(5350), 1, + anon_sym_RPAREN, + STATE(2993), 1, + sym_mutability_modifiers, + STATE(3782), 1, + sym_parameter_declaration, + STATE(3783), 1, + sym_type_parameter_declaration, + STATE(4254), 1, + sym_plain_type, + STATE(4498), 1, + sym_reference_expression, + STATE(2682), 2, + sym_line_comment, + sym_block_comment, + STATE(3460), 2, + sym_type_reference_expression, + sym_qualified_type, + STATE(2360), 4, + sym__plain_type_without_special, + sym_multi_return_type, + sym_result_type, + sym_option_type, + STATE(2362), 12, + sym_anon_struct_type, + sym_fixed_array_type, + sym_array_type, + sym_pointer_type, + sym_wrong_pointer_type, + sym_map_type, + sym_channel_type, + sym_shared_type, + sym_thread_type, + sym_atomic_type, + sym_generic_type, + sym_function_type, + [77089] = 28, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(4938), 1, + anon_sym_LPAREN, + ACTIONS(4940), 1, anon_sym_LBRACK, - ACTIONS(4936), 1, + ACTIONS(4942), 1, anon_sym_QMARK, - ACTIONS(4938), 1, + ACTIONS(4944), 1, anon_sym_BANG, - ACTIONS(4940), 1, + ACTIONS(4946), 1, anon_sym_LBRACK2, - ACTIONS(4944), 1, + ACTIONS(4950), 1, anon_sym_POUND_LBRACK, - ACTIONS(4994), 1, + ACTIONS(4996), 1, anon_sym_as, - ACTIONS(5008), 1, + ACTIONS(5012), 1, anon_sym_PLUS_PLUS, - ACTIONS(5010), 1, + ACTIONS(5014), 1, anon_sym_DASH_DASH, - ACTIONS(5018), 1, + ACTIONS(5022), 1, anon_sym_or, - ACTIONS(5322), 1, + ACTIONS(5328), 1, anon_sym_CARET, - ACTIONS(5324), 1, + ACTIONS(5330), 1, anon_sym_AMP_AMP, - ACTIONS(5326), 1, + ACTIONS(5332), 1, anon_sym_PIPE_PIPE, - ACTIONS(5356), 1, + ACTIONS(5352), 1, anon_sym_RPAREN, - STATE(2396), 1, - sym_or_block, - STATE(2397), 1, + STATE(2298), 1, sym_argument_list, - STATE(4127), 1, + STATE(2299), 1, + sym_or_block, + STATE(4251), 1, sym_type_parameters, - ACTIONS(4942), 2, + ACTIONS(4948), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - ACTIONS(5020), 2, + ACTIONS(5024), 2, anon_sym_is, anon_sym_BANGis, - ACTIONS(5318), 2, + ACTIONS(5324), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(5328), 2, + ACTIONS(5334), 2, anon_sym_in, anon_sym_BANGin, - STATE(2680), 2, + STATE(2683), 2, sym_line_comment, sym_block_comment, - ACTIONS(5312), 3, + ACTIONS(5318), 3, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(5322), 3, anon_sym_SLASH, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(5316), 3, + ACTIONS(5326), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(5320), 5, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_AMP_CARET, + [77190] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + STATE(2684), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(2115), 13, + anon_sym_DOT, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5320), 4, + 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(2113), 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(5310), 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, - [77360] = 5, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_or, + anon_sym_QMARK_DOT, + anon_sym_POUND_LBRACK, + anon_sym_is, + anon_sym_BANGis, + anon_sym_in, + anon_sym_BANGin, + [77245] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - STATE(2681), 2, + STATE(2685), 2, sym_line_comment, sym_block_comment, - ACTIONS(2794), 13, + ACTIONS(2463), 13, anon_sym_DOT, anon_sym_PIPE, anon_sym_PLUS, @@ -256500,7 +256646,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_GT_GT, anon_sym_DOT_DOT, - ACTIONS(2792), 27, + ACTIONS(2461), 27, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -256528,15 +256674,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [77415] = 5, + [77300] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - STATE(2682), 2, + STATE(2686), 2, sym_line_comment, sym_block_comment, - ACTIONS(2651), 13, + ACTIONS(2467), 13, anon_sym_DOT, anon_sym_PIPE, anon_sym_PLUS, @@ -256550,7 +256696,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_GT_GT, anon_sym_DOT_DOT, - ACTIONS(2649), 27, + ACTIONS(2465), 27, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -256578,15 +256724,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [77470] = 5, + [77355] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - STATE(2683), 2, + STATE(2687), 2, sym_line_comment, sym_block_comment, - ACTIONS(2659), 13, + ACTIONS(2505), 13, anon_sym_DOT, anon_sym_PIPE, anon_sym_PLUS, @@ -256600,7 +256746,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_GT_GT, anon_sym_DOT_DOT, - ACTIONS(2657), 27, + ACTIONS(2503), 27, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -256628,15 +256774,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [77525] = 5, + [77410] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - STATE(2684), 2, + STATE(2688), 2, sym_line_comment, sym_block_comment, - ACTIONS(2677), 13, + ACTIONS(2696), 13, anon_sym_DOT, anon_sym_PIPE, anon_sym_PLUS, @@ -256650,7 +256796,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_GT_GT, anon_sym_DOT_DOT, - ACTIONS(2675), 27, + ACTIONS(2694), 27, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -256678,15 +256824,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [77580] = 5, + [77465] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - STATE(2685), 2, + STATE(2689), 2, sym_line_comment, sym_block_comment, - ACTIONS(2790), 13, + ACTIONS(2854), 13, anon_sym_DOT, anon_sym_PIPE, anon_sym_PLUS, @@ -256700,7 +256846,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_GT_GT, anon_sym_DOT_DOT, - ACTIONS(2788), 27, + ACTIONS(2852), 27, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -256728,15 +256874,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [77635] = 5, + [77520] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - STATE(2686), 2, + STATE(2690), 2, sym_line_comment, sym_block_comment, - ACTIONS(2904), 13, + ACTIONS(2858), 13, anon_sym_DOT, anon_sym_PIPE, anon_sym_PLUS, @@ -256750,7 +256896,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_GT_GT, anon_sym_DOT_DOT, - ACTIONS(2902), 27, + ACTIONS(2856), 27, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -256778,15 +256924,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [77690] = 5, + [77575] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - STATE(2687), 2, + STATE(2691), 2, sym_line_comment, sym_block_comment, - ACTIONS(2908), 13, + ACTIONS(2149), 13, anon_sym_DOT, anon_sym_PIPE, anon_sym_PLUS, @@ -256800,7 +256946,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_GT_GT, anon_sym_DOT_DOT, - ACTIONS(2906), 27, + ACTIONS(2147), 27, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -256828,88 +256974,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [77745] = 28, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_STAR, - ACTIONS(47), 1, - anon_sym_QMARK, - ACTIONS(85), 1, - anon_sym_map_LBRACK, - ACTIONS(87), 1, - anon_sym_chan, - ACTIONS(89), 1, - anon_sym_thread, - ACTIONS(91), 1, - anon_sym_atomic, - ACTIONS(603), 1, - anon_sym_fn, - ACTIONS(607), 1, - anon_sym_struct, - ACTIONS(3586), 1, - anon_sym_LPAREN, - ACTIONS(3588), 1, - anon_sym_STAR, - ACTIONS(5294), 1, - sym_identifier, - ACTIONS(5298), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(5300), 1, - anon_sym_mut, - ACTIONS(5302), 1, - anon_sym_BANG, - ACTIONS(5304), 1, - anon_sym_LBRACK2, - ACTIONS(5306), 1, - anon_sym_AMP, - ACTIONS(5308), 1, - anon_sym_shared, - ACTIONS(5358), 1, - anon_sym_RPAREN, - STATE(2984), 1, - sym_mutability_modifiers, - STATE(3909), 1, - sym_parameter_declaration, - STATE(3910), 1, - sym_type_parameter_declaration, - STATE(4265), 1, - sym_plain_type, - STATE(4495), 1, - sym_reference_expression, - STATE(2688), 2, - sym_line_comment, - sym_block_comment, - STATE(3541), 2, - sym_type_reference_expression, - sym_qualified_type, - STATE(2302), 4, - sym__plain_type_without_special, - sym_multi_return_type, - sym_result_type, - sym_option_type, - STATE(2303), 12, - sym_anon_struct_type, - sym_fixed_array_type, - sym_array_type, - sym_pointer_type, - sym_wrong_pointer_type, - sym_map_type, - sym_channel_type, - sym_shared_type, - sym_thread_type, - sym_atomic_type, - sym_generic_type, - sym_function_type, - [77846] = 5, + [77630] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - STATE(2689), 2, + STATE(2692), 2, sym_line_comment, sym_block_comment, - ACTIONS(2233), 13, + ACTIONS(3044), 13, anon_sym_DOT, anon_sym_PIPE, anon_sym_PLUS, @@ -256923,7 +256996,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_GT_GT, anon_sym_DOT_DOT, - ACTIONS(2231), 27, + ACTIONS(3042), 27, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -256951,15 +257024,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [77901] = 5, + [77685] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - STATE(2690), 2, + STATE(2693), 2, sym_line_comment, sym_block_comment, - ACTIONS(2281), 13, + ACTIONS(2846), 13, anon_sym_DOT, anon_sym_PIPE, anon_sym_PLUS, @@ -256973,7 +257046,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_GT_GT, anon_sym_DOT_DOT, - ACTIONS(2279), 27, + ACTIONS(2844), 27, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -257001,307 +257074,277 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [77956] = 28, + [77740] = 19, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(4932), 1, + ACTIONS(4938), 1, anon_sym_LPAREN, - ACTIONS(4934), 1, + ACTIONS(4940), 1, anon_sym_LBRACK, - ACTIONS(4936), 1, + ACTIONS(4942), 1, anon_sym_QMARK, - ACTIONS(4938), 1, + ACTIONS(4944), 1, anon_sym_BANG, - ACTIONS(4940), 1, + ACTIONS(4946), 1, anon_sym_LBRACK2, - ACTIONS(4944), 1, + ACTIONS(4950), 1, anon_sym_POUND_LBRACK, - ACTIONS(4994), 1, - anon_sym_as, - ACTIONS(5008), 1, - anon_sym_PLUS_PLUS, - ACTIONS(5010), 1, - anon_sym_DASH_DASH, - ACTIONS(5018), 1, - anon_sym_or, - ACTIONS(5322), 1, + ACTIONS(5328), 1, anon_sym_CARET, - ACTIONS(5324), 1, - anon_sym_AMP_AMP, - ACTIONS(5326), 1, - anon_sym_PIPE_PIPE, - ACTIONS(5360), 1, - anon_sym_RPAREN, - STATE(2396), 1, - sym_or_block, - STATE(2397), 1, + STATE(2298), 1, sym_argument_list, - STATE(4127), 1, + STATE(2299), 1, + sym_or_block, + STATE(4251), 1, sym_type_parameters, - ACTIONS(4942), 2, - anon_sym_DOT, - anon_sym_QMARK_DOT, - ACTIONS(5020), 2, - anon_sym_is, - anon_sym_BANGis, - ACTIONS(5318), 2, + ACTIONS(1781), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(5328), 2, - anon_sym_in, - anon_sym_BANGin, - STATE(2691), 2, + ACTIONS(4948), 2, + anon_sym_DOT, + anon_sym_QMARK_DOT, + STATE(2694), 2, sym_line_comment, sym_block_comment, - ACTIONS(5312), 3, - anon_sym_SLASH, - anon_sym_AMP, - anon_sym_GT_GT, - ACTIONS(5316), 3, + ACTIONS(5318), 3, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5320), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(5310), 5, + ACTIONS(5322), 3, + anon_sym_SLASH, + anon_sym_AMP, + anon_sym_GT_GT, + ACTIONS(5320), 5, anon_sym_STAR, anon_sym_PERCENT, anon_sym_LT_LT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - [78057] = 28, + ACTIONS(1779), 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, + [77823] = 28, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(4932), 1, + ACTIONS(1787), 1, + anon_sym_LBRACE, + ACTIONS(4938), 1, anon_sym_LPAREN, - ACTIONS(4934), 1, + ACTIONS(4940), 1, anon_sym_LBRACK, - ACTIONS(4936), 1, + ACTIONS(4942), 1, anon_sym_QMARK, - ACTIONS(4938), 1, + ACTIONS(4944), 1, anon_sym_BANG, - ACTIONS(4940), 1, + ACTIONS(4946), 1, anon_sym_LBRACK2, - ACTIONS(4944), 1, + ACTIONS(4950), 1, anon_sym_POUND_LBRACK, - ACTIONS(4994), 1, + ACTIONS(4996), 1, anon_sym_as, - ACTIONS(5008), 1, + ACTIONS(5012), 1, anon_sym_PLUS_PLUS, - ACTIONS(5010), 1, + ACTIONS(5014), 1, anon_sym_DASH_DASH, - ACTIONS(5018), 1, + ACTIONS(5022), 1, anon_sym_or, - ACTIONS(5208), 1, + ACTIONS(5200), 1, anon_sym_CARET, - ACTIONS(5210), 1, + ACTIONS(5202), 1, anon_sym_AMP_AMP, - ACTIONS(5212), 1, + ACTIONS(5204), 1, anon_sym_PIPE_PIPE, - ACTIONS(5362), 1, - anon_sym_LBRACE, - STATE(2396), 1, - sym_or_block, - STATE(2397), 1, + STATE(2298), 1, sym_argument_list, - STATE(4127), 1, + STATE(2299), 1, + sym_or_block, + STATE(4251), 1, sym_type_parameters, - ACTIONS(4942), 2, + ACTIONS(4948), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - ACTIONS(5020), 2, - anon_sym_is, - anon_sym_BANGis, - ACTIONS(5202), 2, + ACTIONS(5194), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(5214), 2, + ACTIONS(5206), 2, anon_sym_in, anon_sym_BANGin, - STATE(2692), 2, + ACTIONS(5242), 2, + anon_sym_is, + anon_sym_BANGis, + STATE(2695), 2, sym_line_comment, sym_block_comment, - ACTIONS(5196), 3, + ACTIONS(5188), 3, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5200), 3, + ACTIONS(5192), 3, anon_sym_SLASH, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(5204), 4, + ACTIONS(5196), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(5198), 5, + ACTIONS(5190), 5, anon_sym_STAR, anon_sym_PERCENT, anon_sym_LT_LT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - [78158] = 28, + [77924] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(4932), 1, - anon_sym_LPAREN, - ACTIONS(4934), 1, - anon_sym_LBRACK, - ACTIONS(4936), 1, + ACTIONS(5354), 2, + anon_sym_LBRACE, + anon_sym_COMMA, + STATE(2696), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(2532), 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(4938), 1, anon_sym_BANG, - ACTIONS(4940), 1, anon_sym_LBRACK2, - ACTIONS(4944), 1, - anon_sym_POUND_LBRACK, - ACTIONS(4994), 1, + anon_sym_AMP, + anon_sym_GT_GT, + anon_sym_DOT_DOT, + ACTIONS(2530), 25, anon_sym_as, - ACTIONS(5008), 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, - ACTIONS(5010), 1, anon_sym_DASH_DASH, - ACTIONS(5018), 1, - anon_sym_or, - ACTIONS(5322), 1, anon_sym_CARET, - ACTIONS(5324), 1, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_AMP_CARET, anon_sym_AMP_AMP, - ACTIONS(5326), 1, anon_sym_PIPE_PIPE, - ACTIONS(5364), 1, - anon_sym_RPAREN, - STATE(2396), 1, - sym_or_block, - STATE(2397), 1, - sym_argument_list, - STATE(4127), 1, - sym_type_parameters, - ACTIONS(4942), 2, - anon_sym_DOT, + anon_sym_or, anon_sym_QMARK_DOT, - ACTIONS(5020), 2, + anon_sym_POUND_LBRACK, anon_sym_is, anon_sym_BANGis, - ACTIONS(5318), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(5328), 2, anon_sym_in, anon_sym_BANGin, - STATE(2693), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(5312), 3, - anon_sym_SLASH, - anon_sym_AMP, - anon_sym_GT_GT, - ACTIONS(5316), 3, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(5320), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(5310), 5, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - [78259] = 28, + [77981] = 28, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(4932), 1, + ACTIONS(4938), 1, anon_sym_LPAREN, - ACTIONS(4934), 1, + ACTIONS(4940), 1, anon_sym_LBRACK, - ACTIONS(4936), 1, + ACTIONS(4942), 1, anon_sym_QMARK, - ACTIONS(4938), 1, + ACTIONS(4944), 1, anon_sym_BANG, - ACTIONS(4940), 1, + ACTIONS(4946), 1, anon_sym_LBRACK2, - ACTIONS(4944), 1, + ACTIONS(4950), 1, anon_sym_POUND_LBRACK, - ACTIONS(4994), 1, + ACTIONS(4996), 1, anon_sym_as, - ACTIONS(5008), 1, + ACTIONS(5012), 1, anon_sym_PLUS_PLUS, - ACTIONS(5010), 1, + ACTIONS(5014), 1, anon_sym_DASH_DASH, - ACTIONS(5018), 1, + ACTIONS(5022), 1, anon_sym_or, - ACTIONS(5322), 1, + ACTIONS(5328), 1, anon_sym_CARET, - ACTIONS(5324), 1, + ACTIONS(5330), 1, anon_sym_AMP_AMP, - ACTIONS(5326), 1, + ACTIONS(5332), 1, anon_sym_PIPE_PIPE, - ACTIONS(5366), 1, + ACTIONS(5356), 1, anon_sym_RPAREN, - STATE(2396), 1, - sym_or_block, - STATE(2397), 1, + STATE(2298), 1, sym_argument_list, - STATE(4127), 1, + STATE(2299), 1, + sym_or_block, + STATE(4251), 1, sym_type_parameters, - ACTIONS(4942), 2, + ACTIONS(4948), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - ACTIONS(5020), 2, + ACTIONS(5024), 2, anon_sym_is, anon_sym_BANGis, - ACTIONS(5318), 2, + ACTIONS(5324), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(5328), 2, + ACTIONS(5334), 2, anon_sym_in, anon_sym_BANGin, - STATE(2694), 2, + STATE(2697), 2, sym_line_comment, sym_block_comment, - ACTIONS(5312), 3, - anon_sym_SLASH, - anon_sym_AMP, - anon_sym_GT_GT, - ACTIONS(5316), 3, + ACTIONS(5318), 3, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5320), 4, + ACTIONS(5322), 3, + anon_sym_SLASH, + anon_sym_AMP, + anon_sym_GT_GT, + ACTIONS(5326), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(5310), 5, + ACTIONS(5320), 5, anon_sym_STAR, anon_sym_PERCENT, anon_sym_LT_LT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - [78360] = 5, + [78082] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - STATE(2695), 2, + STATE(2698), 2, sym_line_comment, sym_block_comment, - ACTIONS(1917), 11, + ACTIONS(2293), 13, + anon_sym_DOT, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, @@ -257313,9 +257356,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(1915), 29, - anon_sym_DOT, + anon_sym_DOT_DOT, + ACTIONS(2291), 27, anon_sym_as, + anon_sym_LBRACE, + anon_sym_COMMA, anon_sym_LPAREN, anon_sym_STAR, anon_sym_PERCENT, @@ -257323,12 +257368,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, @@ -257337,21 +257381,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_or, anon_sym_QMARK_DOT, anon_sym_POUND_LBRACK, - anon_sym_else, - anon_sym_DOLLARelse, anon_sym_is, anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [78415] = 5, + [78137] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - STATE(2696), 2, + STATE(2699), 2, sym_line_comment, sym_block_comment, - ACTIONS(2786), 13, + ACTIONS(2509), 13, anon_sym_DOT, anon_sym_PIPE, anon_sym_PLUS, @@ -257365,7 +257407,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_GT_GT, anon_sym_DOT_DOT, - ACTIONS(2784), 27, + ACTIONS(2507), 27, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -257393,15 +257435,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [78470] = 5, + [78192] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - STATE(2697), 2, + STATE(2700), 2, sym_line_comment, sym_block_comment, - ACTIONS(1905), 13, + ACTIONS(1881), 13, anon_sym_DOT, anon_sym_PIPE, anon_sym_PLUS, @@ -257415,7 +257457,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_GT_GT, anon_sym_DOT_DOT, - ACTIONS(1903), 27, + ACTIONS(1879), 27, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -257443,15 +257485,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [78525] = 5, + [78247] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - STATE(2698), 2, + STATE(2701), 2, sym_line_comment, sym_block_comment, - ACTIONS(1851), 13, + ACTIONS(1889), 13, anon_sym_DOT, anon_sym_PIPE, anon_sym_PLUS, @@ -257465,7 +257507,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_GT_GT, anon_sym_DOT_DOT, - ACTIONS(1849), 27, + ACTIONS(1887), 27, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -257493,17 +257535,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [78580] = 6, + [78302] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(1953), 1, - anon_sym_LBRACE, - STATE(2699), 2, + STATE(2702), 2, sym_line_comment, sym_block_comment, - ACTIONS(2663), 11, + ACTIONS(2307), 13, + anon_sym_DOT, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, @@ -257515,10 +257556,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(2661), 28, - anon_sym_SEMI, - anon_sym_DOT, + anon_sym_DOT_DOT, + ACTIONS(2305), 27, anon_sym_as, + anon_sym_LBRACE, anon_sym_COMMA, anon_sym_LPAREN, anon_sym_STAR, @@ -257527,6 +257568,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, @@ -257543,62 +257585,132 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - anon_sym_COLON_EQ, - [78637] = 19, + [78357] = 22, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(4932), 1, + ACTIONS(4938), 1, anon_sym_LPAREN, - ACTIONS(4934), 1, + ACTIONS(4940), 1, anon_sym_LBRACK, - ACTIONS(4936), 1, + ACTIONS(4942), 1, anon_sym_QMARK, - ACTIONS(4938), 1, + ACTIONS(4944), 1, anon_sym_BANG, - ACTIONS(4940), 1, + ACTIONS(4946), 1, anon_sym_LBRACK2, - ACTIONS(4944), 1, + ACTIONS(4950), 1, anon_sym_POUND_LBRACK, - ACTIONS(5322), 1, + ACTIONS(5200), 1, anon_sym_CARET, - STATE(2396), 1, - sym_or_block, - STATE(2397), 1, + ACTIONS(5202), 1, + anon_sym_AMP_AMP, + STATE(2298), 1, sym_argument_list, - STATE(4127), 1, + STATE(2299), 1, + sym_or_block, + STATE(4251), 1, sym_type_parameters, - ACTIONS(1769), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(4942), 2, + ACTIONS(4948), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - STATE(2700), 2, + ACTIONS(5194), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(5206), 2, + anon_sym_in, + anon_sym_BANGin, + STATE(2703), 2, sym_line_comment, sym_block_comment, - ACTIONS(5312), 3, - anon_sym_SLASH, - anon_sym_AMP, - anon_sym_GT_GT, - ACTIONS(5316), 3, + ACTIONS(5188), 3, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5310), 5, + ACTIONS(5192), 3, + anon_sym_SLASH, + anon_sym_AMP, + anon_sym_GT_GT, + ACTIONS(5196), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(5190), 5, anon_sym_STAR, anon_sym_PERCENT, anon_sym_LT_LT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(1767), 15, + ACTIONS(1763), 8, anon_sym_as, - anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PIPE_PIPE, + anon_sym_or, + anon_sym_is, + anon_sym_BANGis, + [78446] = 21, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(4938), 1, + anon_sym_LPAREN, + ACTIONS(4940), 1, + anon_sym_LBRACK, + ACTIONS(4942), 1, + anon_sym_QMARK, + ACTIONS(4944), 1, + anon_sym_BANG, + ACTIONS(4946), 1, + anon_sym_LBRACK2, + ACTIONS(4950), 1, + anon_sym_POUND_LBRACK, + ACTIONS(5200), 1, + anon_sym_CARET, + STATE(2298), 1, + sym_argument_list, + STATE(2299), 1, + sym_or_block, + STATE(4251), 1, + sym_type_parameters, + ACTIONS(4948), 2, + anon_sym_DOT, + anon_sym_QMARK_DOT, + ACTIONS(5194), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(5206), 2, + anon_sym_in, + anon_sym_BANGin, + STATE(2704), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(5188), 3, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(5192), 3, + anon_sym_SLASH, + anon_sym_AMP, + anon_sym_GT_GT, + ACTIONS(5196), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, + ACTIONS(5190), 5, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_AMP_CARET, + ACTIONS(1763), 9, + anon_sym_as, + anon_sym_LBRACE, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_AMP_AMP, @@ -257606,19 +257718,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_or, anon_sym_is, anon_sym_BANGis, - anon_sym_in, - anon_sym_BANGin, - [78720] = 6, + [78533] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(5368), 1, - anon_sym_BANG, - STATE(2701), 2, + STATE(2705), 2, sym_line_comment, sym_block_comment, - ACTIONS(2525), 12, + ACTIONS(2538), 13, anon_sym_DOT, anon_sym_PIPE, anon_sym_PLUS, @@ -257627,11 +257735,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(2523), 27, + ACTIONS(2536), 27, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -257659,357 +257768,292 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [78777] = 5, + [78588] = 28, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - STATE(2702), 2, + ACTIONS(47), 1, + anon_sym_QMARK, + ACTIONS(85), 1, + anon_sym_map_LBRACK, + ACTIONS(87), 1, + anon_sym_chan, + ACTIONS(89), 1, + anon_sym_thread, + ACTIONS(91), 1, + anon_sym_atomic, + ACTIONS(571), 1, + anon_sym_fn, + ACTIONS(575), 1, + anon_sym_struct, + ACTIONS(3564), 1, + anon_sym_LPAREN, + ACTIONS(3566), 1, + anon_sym_STAR, + ACTIONS(5300), 1, + sym_identifier, + ACTIONS(5304), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(5306), 1, + anon_sym_mut, + ACTIONS(5308), 1, + anon_sym_BANG, + ACTIONS(5310), 1, + anon_sym_LBRACK2, + ACTIONS(5312), 1, + anon_sym_AMP, + ACTIONS(5314), 1, + anon_sym_shared, + ACTIONS(5358), 1, + anon_sym_RPAREN, + STATE(2993), 1, + sym_mutability_modifiers, + STATE(3814), 1, + sym_parameter_declaration, + STATE(3819), 1, + sym_type_parameter_declaration, + STATE(4254), 1, + sym_plain_type, + STATE(4498), 1, + sym_reference_expression, + STATE(2706), 2, sym_line_comment, sym_block_comment, - ACTIONS(2810), 13, + STATE(3460), 2, + sym_type_reference_expression, + sym_qualified_type, + STATE(2360), 4, + sym__plain_type_without_special, + sym_multi_return_type, + sym_result_type, + sym_option_type, + STATE(2362), 12, + sym_anon_struct_type, + sym_fixed_array_type, + sym_array_type, + sym_pointer_type, + sym_wrong_pointer_type, + sym_map_type, + sym_channel_type, + sym_shared_type, + sym_thread_type, + sym_atomic_type, + sym_generic_type, + sym_function_type, + [78689] = 19, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(4938), 1, + anon_sym_LPAREN, + ACTIONS(4940), 1, + anon_sym_LBRACK, + ACTIONS(4942), 1, + anon_sym_QMARK, + ACTIONS(4944), 1, + anon_sym_BANG, + ACTIONS(4946), 1, + anon_sym_LBRACK2, + ACTIONS(4950), 1, + anon_sym_POUND_LBRACK, + ACTIONS(5200), 1, + anon_sym_CARET, + STATE(2298), 1, + sym_argument_list, + STATE(2299), 1, + sym_or_block, + STATE(4251), 1, + sym_type_parameters, + ACTIONS(1765), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(4948), 2, anon_sym_DOT, + anon_sym_QMARK_DOT, + STATE(2707), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(5188), 3, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, + ACTIONS(5192), 3, anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - anon_sym_DOT_DOT, - ACTIONS(2808), 27, - anon_sym_as, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_LPAREN, + ACTIONS(5190), 5, anon_sym_STAR, anon_sym_PERCENT, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_AMP_CARET, + ACTIONS(1763), 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, - [78832] = 28, + [78772] = 28, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(4932), 1, + ACTIONS(4938), 1, anon_sym_LPAREN, - ACTIONS(4934), 1, + ACTIONS(4940), 1, anon_sym_LBRACK, - ACTIONS(4936), 1, + ACTIONS(4942), 1, anon_sym_QMARK, - ACTIONS(4938), 1, + ACTIONS(4944), 1, anon_sym_BANG, - ACTIONS(4940), 1, + ACTIONS(4946), 1, anon_sym_LBRACK2, - ACTIONS(4944), 1, + ACTIONS(4950), 1, anon_sym_POUND_LBRACK, - ACTIONS(4994), 1, + ACTIONS(4996), 1, anon_sym_as, - ACTIONS(5008), 1, + ACTIONS(5012), 1, anon_sym_PLUS_PLUS, - ACTIONS(5010), 1, + ACTIONS(5014), 1, anon_sym_DASH_DASH, - ACTIONS(5018), 1, + ACTIONS(5022), 1, anon_sym_or, - ACTIONS(5322), 1, + ACTIONS(5328), 1, anon_sym_CARET, - ACTIONS(5324), 1, + ACTIONS(5330), 1, anon_sym_AMP_AMP, - ACTIONS(5326), 1, + ACTIONS(5332), 1, anon_sym_PIPE_PIPE, - ACTIONS(5370), 1, + ACTIONS(5360), 1, anon_sym_RPAREN, - STATE(2396), 1, - sym_or_block, - STATE(2397), 1, + STATE(2298), 1, sym_argument_list, - STATE(4127), 1, + STATE(2299), 1, + sym_or_block, + STATE(4251), 1, sym_type_parameters, - ACTIONS(4942), 2, + ACTIONS(4948), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - ACTIONS(5020), 2, + ACTIONS(5024), 2, anon_sym_is, anon_sym_BANGis, - ACTIONS(5318), 2, + ACTIONS(5324), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(5328), 2, + ACTIONS(5334), 2, anon_sym_in, anon_sym_BANGin, - STATE(2703), 2, + STATE(2708), 2, sym_line_comment, sym_block_comment, - ACTIONS(5312), 3, - anon_sym_SLASH, - anon_sym_AMP, - anon_sym_GT_GT, - ACTIONS(5316), 3, + ACTIONS(5318), 3, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5320), 4, + ACTIONS(5322), 3, + anon_sym_SLASH, + anon_sym_AMP, + anon_sym_GT_GT, + ACTIONS(5326), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(5310), 5, + ACTIONS(5320), 5, anon_sym_STAR, anon_sym_PERCENT, anon_sym_LT_LT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - [78933] = 28, + [78873] = 22, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(4932), 1, + ACTIONS(4938), 1, anon_sym_LPAREN, - ACTIONS(4934), 1, + ACTIONS(4940), 1, anon_sym_LBRACK, - ACTIONS(4936), 1, + ACTIONS(4942), 1, anon_sym_QMARK, - ACTIONS(4938), 1, + ACTIONS(4944), 1, anon_sym_BANG, - ACTIONS(4940), 1, + ACTIONS(4946), 1, anon_sym_LBRACK2, - ACTIONS(4944), 1, + ACTIONS(4950), 1, anon_sym_POUND_LBRACK, - ACTIONS(4994), 1, - anon_sym_as, - ACTIONS(5008), 1, - anon_sym_PLUS_PLUS, - ACTIONS(5010), 1, - anon_sym_DASH_DASH, - ACTIONS(5018), 1, - anon_sym_or, - ACTIONS(5208), 1, + ACTIONS(5328), 1, anon_sym_CARET, - ACTIONS(5210), 1, + ACTIONS(5330), 1, anon_sym_AMP_AMP, - ACTIONS(5212), 1, - anon_sym_PIPE_PIPE, - ACTIONS(5372), 1, - anon_sym_LBRACE, - STATE(2396), 1, - sym_or_block, - STATE(2397), 1, + STATE(2298), 1, sym_argument_list, - STATE(4127), 1, + STATE(2299), 1, + sym_or_block, + STATE(4251), 1, sym_type_parameters, - ACTIONS(4942), 2, + ACTIONS(4948), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - ACTIONS(5020), 2, - anon_sym_is, - anon_sym_BANGis, - ACTIONS(5202), 2, + ACTIONS(5324), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(5214), 2, + ACTIONS(5334), 2, anon_sym_in, anon_sym_BANGin, - STATE(2704), 2, + STATE(2709), 2, sym_line_comment, sym_block_comment, - ACTIONS(5196), 3, + ACTIONS(5318), 3, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5200), 3, + ACTIONS(5322), 3, anon_sym_SLASH, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(5204), 4, + ACTIONS(5326), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(5198), 5, + ACTIONS(5320), 5, anon_sym_STAR, anon_sym_PERCENT, anon_sym_LT_LT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - [79034] = 28, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_STAR, - ACTIONS(47), 1, - anon_sym_QMARK, - ACTIONS(85), 1, - anon_sym_map_LBRACK, - ACTIONS(87), 1, - anon_sym_chan, - ACTIONS(89), 1, - anon_sym_thread, - ACTIONS(91), 1, - anon_sym_atomic, - ACTIONS(603), 1, - anon_sym_fn, - ACTIONS(607), 1, - anon_sym_struct, - ACTIONS(3586), 1, - anon_sym_LPAREN, - ACTIONS(3588), 1, - anon_sym_STAR, - ACTIONS(5294), 1, - sym_identifier, - ACTIONS(5298), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(5300), 1, - anon_sym_mut, - ACTIONS(5302), 1, - anon_sym_BANG, - ACTIONS(5304), 1, - anon_sym_LBRACK2, - ACTIONS(5306), 1, - anon_sym_AMP, - ACTIONS(5308), 1, - anon_sym_shared, - ACTIONS(5374), 1, - anon_sym_RPAREN, - STATE(2984), 1, - sym_mutability_modifiers, - STATE(3883), 1, - sym_parameter_declaration, - STATE(3887), 1, - sym_type_parameter_declaration, - STATE(4265), 1, - sym_plain_type, - STATE(4495), 1, - sym_reference_expression, - STATE(2705), 2, - sym_line_comment, - sym_block_comment, - STATE(3541), 2, - sym_type_reference_expression, - sym_qualified_type, - STATE(2302), 4, - sym__plain_type_without_special, - sym_multi_return_type, - sym_result_type, - sym_option_type, - STATE(2303), 12, - sym_anon_struct_type, - sym_fixed_array_type, - sym_array_type, - sym_pointer_type, - sym_wrong_pointer_type, - sym_map_type, - sym_channel_type, - sym_shared_type, - sym_thread_type, - sym_atomic_type, - sym_generic_type, - sym_function_type, - [79135] = 28, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_STAR, - ACTIONS(47), 1, - anon_sym_QMARK, - ACTIONS(85), 1, - anon_sym_map_LBRACK, - ACTIONS(87), 1, - anon_sym_chan, - ACTIONS(89), 1, - anon_sym_thread, - ACTIONS(91), 1, - anon_sym_atomic, - ACTIONS(603), 1, - anon_sym_fn, - ACTIONS(607), 1, - anon_sym_struct, - ACTIONS(3586), 1, - anon_sym_LPAREN, - ACTIONS(3588), 1, - anon_sym_STAR, - ACTIONS(5294), 1, - sym_identifier, - ACTIONS(5298), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(5300), 1, - anon_sym_mut, - ACTIONS(5302), 1, - anon_sym_BANG, - ACTIONS(5304), 1, - anon_sym_LBRACK2, - ACTIONS(5306), 1, - anon_sym_AMP, - ACTIONS(5308), 1, - anon_sym_shared, - ACTIONS(5376), 1, + ACTIONS(1763), 8, + anon_sym_as, anon_sym_RPAREN, - STATE(2984), 1, - sym_mutability_modifiers, - STATE(3990), 1, - sym_type_parameter_declaration, - STATE(3993), 1, - sym_parameter_declaration, - STATE(4265), 1, - sym_plain_type, - STATE(4495), 1, - sym_reference_expression, - STATE(2706), 2, - sym_line_comment, - sym_block_comment, - STATE(3541), 2, - sym_type_reference_expression, - sym_qualified_type, - STATE(2302), 4, - sym__plain_type_without_special, - sym_multi_return_type, - sym_result_type, - sym_option_type, - STATE(2303), 12, - sym_anon_struct_type, - sym_fixed_array_type, - sym_array_type, - sym_pointer_type, - sym_wrong_pointer_type, - sym_map_type, - sym_channel_type, - sym_shared_type, - sym_thread_type, - sym_atomic_type, - sym_generic_type, - sym_function_type, - [79236] = 5, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PIPE_PIPE, + anon_sym_or, + anon_sym_is, + anon_sym_BANGis, + [78962] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - STATE(2707), 2, + STATE(2710), 2, sym_line_comment, sym_block_comment, - ACTIONS(2816), 13, + ACTIONS(2668), 13, anon_sym_DOT, anon_sym_PIPE, anon_sym_PLUS, @@ -258023,7 +258067,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_GT_GT, anon_sym_DOT_DOT, - ACTIONS(2814), 27, + ACTIONS(2666), 27, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -258051,139 +258095,154 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [79291] = 28, + [79017] = 21, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(4932), 1, + ACTIONS(4938), 1, anon_sym_LPAREN, - ACTIONS(4934), 1, + ACTIONS(4940), 1, anon_sym_LBRACK, - ACTIONS(4936), 1, + ACTIONS(4942), 1, anon_sym_QMARK, - ACTIONS(4938), 1, + ACTIONS(4944), 1, anon_sym_BANG, - ACTIONS(4940), 1, + ACTIONS(4946), 1, anon_sym_LBRACK2, - ACTIONS(4944), 1, + ACTIONS(4950), 1, anon_sym_POUND_LBRACK, - ACTIONS(4994), 1, - anon_sym_as, - ACTIONS(5008), 1, - anon_sym_PLUS_PLUS, - ACTIONS(5010), 1, - anon_sym_DASH_DASH, - ACTIONS(5018), 1, - anon_sym_or, - ACTIONS(5208), 1, + ACTIONS(5328), 1, anon_sym_CARET, - ACTIONS(5210), 1, - anon_sym_AMP_AMP, - ACTIONS(5212), 1, - anon_sym_PIPE_PIPE, - ACTIONS(5378), 1, - anon_sym_LBRACE, - STATE(2396), 1, - sym_or_block, - STATE(2397), 1, + STATE(2298), 1, sym_argument_list, - STATE(4127), 1, + STATE(2299), 1, + sym_or_block, + STATE(4251), 1, sym_type_parameters, - ACTIONS(4942), 2, + ACTIONS(4948), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - ACTIONS(5020), 2, - anon_sym_is, - anon_sym_BANGis, - ACTIONS(5202), 2, + ACTIONS(5324), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(5214), 2, + ACTIONS(5334), 2, anon_sym_in, anon_sym_BANGin, - STATE(2708), 2, + STATE(2711), 2, sym_line_comment, sym_block_comment, - ACTIONS(5196), 3, + ACTIONS(5318), 3, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5200), 3, + ACTIONS(5322), 3, anon_sym_SLASH, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(5204), 4, + ACTIONS(5326), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(5198), 5, + ACTIONS(5320), 5, anon_sym_STAR, anon_sym_PERCENT, anon_sym_LT_LT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - [79392] = 6, + ACTIONS(1763), 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, + [79104] = 28, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(1953), 1, - anon_sym_COMMA, - STATE(2709), 2, + ACTIONS(3558), 1, + anon_sym_LBRACE, + ACTIONS(4938), 1, + anon_sym_LPAREN, + ACTIONS(4940), 1, + anon_sym_LBRACK, + ACTIONS(4942), 1, + anon_sym_QMARK, + ACTIONS(4944), 1, + anon_sym_BANG, + ACTIONS(4946), 1, + anon_sym_LBRACK2, + ACTIONS(4950), 1, + anon_sym_POUND_LBRACK, + ACTIONS(4996), 1, + anon_sym_as, + ACTIONS(5012), 1, + anon_sym_PLUS_PLUS, + ACTIONS(5014), 1, + anon_sym_DASH_DASH, + ACTIONS(5022), 1, + anon_sym_or, + ACTIONS(5200), 1, + anon_sym_CARET, + ACTIONS(5202), 1, + anon_sym_AMP_AMP, + ACTIONS(5204), 1, + anon_sym_PIPE_PIPE, + STATE(2298), 1, + sym_argument_list, + STATE(2299), 1, + sym_or_block, + STATE(4251), 1, + sym_type_parameters, + ACTIONS(4948), 2, + anon_sym_DOT, + anon_sym_QMARK_DOT, + ACTIONS(5024), 2, + anon_sym_is, + anon_sym_BANGis, + ACTIONS(5194), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(5206), 2, + anon_sym_in, + anon_sym_BANGin, + STATE(2712), 2, sym_line_comment, sym_block_comment, - ACTIONS(1917), 13, - anon_sym_DOT, + ACTIONS(5188), 3, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, + ACTIONS(5192), 3, anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - anon_sym_DOT_DOT, - ACTIONS(1915), 26, - anon_sym_as, - anon_sym_LBRACE, - anon_sym_LPAREN, - 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_LBRACK, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_CARET, + ACTIONS(5190), 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, - [79449] = 5, + [79205] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - STATE(2710), 2, + STATE(2713), 2, sym_line_comment, sym_block_comment, - ACTIONS(2872), 13, + ACTIONS(2680), 13, anon_sym_DOT, anon_sym_PIPE, anon_sym_PLUS, @@ -258197,7 +258256,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_GT_GT, anon_sym_DOT_DOT, - ACTIONS(2870), 27, + ACTIONS(2678), 27, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -258225,15 +258284,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [79504] = 5, + [79260] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - STATE(2711), 2, + STATE(2714), 2, sym_line_comment, sym_block_comment, - ACTIONS(2900), 13, + ACTIONS(2684), 13, anon_sym_DOT, anon_sym_PIPE, anon_sym_PLUS, @@ -258247,7 +258306,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_GT_GT, anon_sym_DOT_DOT, - ACTIONS(2898), 27, + ACTIONS(2682), 27, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -258275,15 +258334,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [79559] = 5, + [79315] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - STATE(2712), 2, + STATE(2715), 2, sym_line_comment, sym_block_comment, - ACTIONS(2920), 13, + ACTIONS(2688), 13, anon_sym_DOT, anon_sym_PIPE, anon_sym_PLUS, @@ -258297,7 +258356,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_GT_GT, anon_sym_DOT_DOT, - ACTIONS(2918), 27, + ACTIONS(2686), 27, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -258325,15 +258384,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [79614] = 5, + [79370] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - STATE(2713), 2, + STATE(2716), 2, sym_line_comment, sym_block_comment, - ACTIONS(2117), 13, + ACTIONS(2692), 13, anon_sym_DOT, anon_sym_PIPE, anon_sym_PLUS, @@ -258347,7 +258406,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_GT_GT, anon_sym_DOT_DOT, - ACTIONS(2115), 27, + ACTIONS(2690), 27, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -258375,15 +258434,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [79669] = 5, + [79425] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - STATE(2714), 2, + STATE(2717), 2, sym_line_comment, sym_block_comment, - ACTIONS(2511), 13, + ACTIONS(2840), 13, anon_sym_DOT, anon_sym_PIPE, anon_sym_PLUS, @@ -258397,7 +258456,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_GT_GT, anon_sym_DOT_DOT, - ACTIONS(2509), 27, + ACTIONS(2838), 27, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -258425,161 +258484,129 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [79724] = 28, + [79480] = 19, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(4932), 1, + ACTIONS(4938), 1, anon_sym_LPAREN, - ACTIONS(4934), 1, + ACTIONS(4940), 1, anon_sym_LBRACK, - ACTIONS(4936), 1, + ACTIONS(4942), 1, anon_sym_QMARK, - ACTIONS(4938), 1, + ACTIONS(4944), 1, anon_sym_BANG, - ACTIONS(4940), 1, + ACTIONS(4946), 1, anon_sym_LBRACK2, - ACTIONS(4944), 1, + ACTIONS(4950), 1, anon_sym_POUND_LBRACK, - ACTIONS(4994), 1, - anon_sym_as, - ACTIONS(5008), 1, - anon_sym_PLUS_PLUS, - ACTIONS(5010), 1, - anon_sym_DASH_DASH, - ACTIONS(5018), 1, - anon_sym_or, - ACTIONS(5090), 1, + ACTIONS(5328), 1, anon_sym_CARET, - ACTIONS(5098), 1, - anon_sym_AMP_AMP, - ACTIONS(5102), 1, - anon_sym_PIPE_PIPE, - ACTIONS(5380), 1, - anon_sym_RBRACK, - STATE(2396), 1, - sym_or_block, - STATE(2397), 1, + STATE(2298), 1, sym_argument_list, - STATE(4127), 1, + STATE(2299), 1, + sym_or_block, + STATE(4251), 1, sym_type_parameters, - ACTIONS(4942), 2, - anon_sym_DOT, - anon_sym_QMARK_DOT, - ACTIONS(5020), 2, - anon_sym_is, - anon_sym_BANGis, - ACTIONS(5094), 2, + ACTIONS(1765), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(5100), 2, - anon_sym_in, - anon_sym_BANGin, - STATE(2715), 2, + ACTIONS(4948), 2, + anon_sym_DOT, + anon_sym_QMARK_DOT, + STATE(2718), 2, sym_line_comment, sym_block_comment, - ACTIONS(5084), 3, + ACTIONS(5318), 3, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5088), 3, + ACTIONS(5322), 3, anon_sym_SLASH, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(5096), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(5086), 5, + ACTIONS(5320), 5, anon_sym_STAR, anon_sym_PERCENT, anon_sym_LT_LT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - [79825] = 28, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_STAR, - ACTIONS(4932), 1, - anon_sym_LPAREN, - ACTIONS(4934), 1, - anon_sym_LBRACK, - ACTIONS(4936), 1, - anon_sym_QMARK, - ACTIONS(4938), 1, - anon_sym_BANG, - ACTIONS(4940), 1, - anon_sym_LBRACK2, - ACTIONS(4944), 1, - anon_sym_POUND_LBRACK, - ACTIONS(4994), 1, + ACTIONS(1763), 15, anon_sym_as, - ACTIONS(5008), 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(5010), 1, anon_sym_DASH_DASH, - ACTIONS(5018), 1, - anon_sym_or, - ACTIONS(5090), 1, - anon_sym_CARET, - ACTIONS(5098), 1, anon_sym_AMP_AMP, - ACTIONS(5102), 1, anon_sym_PIPE_PIPE, - ACTIONS(5234), 1, - anon_sym_COLON, - STATE(2396), 1, - sym_or_block, - STATE(2397), 1, - sym_argument_list, - STATE(4127), 1, - sym_type_parameters, - ACTIONS(4942), 2, - anon_sym_DOT, - anon_sym_QMARK_DOT, - ACTIONS(5020), 2, + anon_sym_or, anon_sym_is, anon_sym_BANGis, - ACTIONS(5094), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(5100), 2, anon_sym_in, anon_sym_BANGin, - STATE(2716), 2, + [79563] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + STATE(2719), 2, sym_line_comment, sym_block_comment, - ACTIONS(5084), 3, + ACTIONS(2443), 13, + anon_sym_DOT, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5088), 3, anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + anon_sym_QMARK, + anon_sym_BANG, + anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(5096), 4, + anon_sym_DOT_DOT, + ACTIONS(2441), 27, + anon_sym_as, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_PERCENT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(5086), 5, - anon_sym_STAR, - anon_sym_PERCENT, + anon_sym_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, - [79926] = 5, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_or, + anon_sym_QMARK_DOT, + anon_sym_POUND_LBRACK, + anon_sym_is, + anon_sym_BANGis, + anon_sym_in, + anon_sym_BANGin, + [79618] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - STATE(2717), 2, + STATE(2720), 2, sym_line_comment, sym_block_comment, - ACTIONS(2916), 13, + ACTIONS(2700), 13, anon_sym_DOT, anon_sym_PIPE, anon_sym_PLUS, @@ -258593,7 +258620,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_GT_GT, anon_sym_DOT_DOT, - ACTIONS(2914), 27, + ACTIONS(2698), 27, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -258621,88 +258648,65 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [79981] = 28, + [79673] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(4932), 1, - anon_sym_LPAREN, - ACTIONS(4934), 1, - anon_sym_LBRACK, - ACTIONS(4936), 1, + STATE(2721), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(2449), 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(4938), 1, anon_sym_BANG, - ACTIONS(4940), 1, anon_sym_LBRACK2, - ACTIONS(4944), 1, - anon_sym_POUND_LBRACK, - ACTIONS(4994), 1, + anon_sym_AMP, + anon_sym_GT_GT, + anon_sym_DOT_DOT, + ACTIONS(2447), 27, anon_sym_as, - ACTIONS(5008), 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(5010), 1, anon_sym_DASH_DASH, - ACTIONS(5018), 1, - anon_sym_or, - ACTIONS(5322), 1, anon_sym_CARET, - ACTIONS(5324), 1, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_AMP_CARET, anon_sym_AMP_AMP, - ACTIONS(5326), 1, anon_sym_PIPE_PIPE, - ACTIONS(5382), 1, - anon_sym_RPAREN, - STATE(2396), 1, - sym_or_block, - STATE(2397), 1, - sym_argument_list, - STATE(4127), 1, - sym_type_parameters, - ACTIONS(4942), 2, - anon_sym_DOT, + anon_sym_or, anon_sym_QMARK_DOT, - ACTIONS(5020), 2, + anon_sym_POUND_LBRACK, anon_sym_is, anon_sym_BANGis, - ACTIONS(5318), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(5328), 2, anon_sym_in, anon_sym_BANGin, - STATE(2718), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(5312), 3, - anon_sym_SLASH, - anon_sym_AMP, - anon_sym_GT_GT, - ACTIONS(5316), 3, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(5320), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(5310), 5, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - [80082] = 5, + [79728] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - STATE(2719), 2, + STATE(2722), 2, sym_line_comment, sym_block_comment, - ACTIONS(2772), 13, + ACTIONS(2710), 13, anon_sym_DOT, anon_sym_PIPE, anon_sym_PLUS, @@ -258716,7 +258720,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_GT_GT, anon_sym_DOT_DOT, - ACTIONS(2770), 27, + ACTIONS(2708), 27, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -258744,15 +258748,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [80137] = 5, + [79783] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - STATE(2720), 2, + STATE(2723), 2, sym_line_comment, sym_block_comment, - ACTIONS(2749), 13, + ACTIONS(2714), 13, anon_sym_DOT, anon_sym_PIPE, anon_sym_PLUS, @@ -258766,7 +258770,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_GT_GT, anon_sym_DOT_DOT, - ACTIONS(2747), 27, + ACTIONS(2712), 27, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -258794,15 +258798,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [80192] = 5, + [79838] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - STATE(2721), 2, + STATE(2724), 2, sym_line_comment, sym_block_comment, - ACTIONS(2745), 13, + ACTIONS(2137), 13, anon_sym_DOT, anon_sym_PIPE, anon_sym_PLUS, @@ -258816,7 +258820,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_GT_GT, anon_sym_DOT_DOT, - ACTIONS(2743), 27, + ACTIONS(2135), 27, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -258844,15 +258848,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [80247] = 5, + [79893] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - STATE(2722), 2, + STATE(2725), 2, sym_line_comment, sym_block_comment, - ACTIONS(2681), 13, + ACTIONS(2724), 13, anon_sym_DOT, anon_sym_PIPE, anon_sym_PLUS, @@ -258866,7 +258870,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_GT_GT, anon_sym_DOT_DOT, - ACTIONS(2679), 27, + ACTIONS(2722), 27, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -258894,15 +258898,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [80302] = 5, + [79948] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - STATE(2723), 2, + STATE(2726), 2, sym_line_comment, sym_block_comment, - ACTIONS(2667), 13, + ACTIONS(2744), 13, anon_sym_DOT, anon_sym_PIPE, anon_sym_PLUS, @@ -258916,7 +258920,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_GT_GT, anon_sym_DOT_DOT, - ACTIONS(2665), 27, + ACTIONS(2742), 27, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -258944,88 +258948,88 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [80357] = 28, + [80003] = 28, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(4932), 1, - anon_sym_LPAREN, - ACTIONS(4934), 1, - anon_sym_LBRACK, - ACTIONS(4936), 1, + ACTIONS(47), 1, anon_sym_QMARK, - ACTIONS(4938), 1, + ACTIONS(85), 1, + anon_sym_map_LBRACK, + ACTIONS(87), 1, + anon_sym_chan, + ACTIONS(89), 1, + anon_sym_thread, + ACTIONS(91), 1, + anon_sym_atomic, + ACTIONS(571), 1, + anon_sym_fn, + ACTIONS(575), 1, + anon_sym_struct, + ACTIONS(3564), 1, + anon_sym_LPAREN, + ACTIONS(3566), 1, + anon_sym_STAR, + ACTIONS(5300), 1, + sym_identifier, + ACTIONS(5304), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(5306), 1, + anon_sym_mut, + ACTIONS(5308), 1, anon_sym_BANG, - ACTIONS(4940), 1, + ACTIONS(5310), 1, anon_sym_LBRACK2, - ACTIONS(4944), 1, - anon_sym_POUND_LBRACK, - ACTIONS(4994), 1, - anon_sym_as, - ACTIONS(5008), 1, - anon_sym_PLUS_PLUS, - ACTIONS(5010), 1, - anon_sym_DASH_DASH, - ACTIONS(5018), 1, - anon_sym_or, - ACTIONS(5208), 1, - anon_sym_CARET, - ACTIONS(5210), 1, - anon_sym_AMP_AMP, - ACTIONS(5212), 1, - anon_sym_PIPE_PIPE, - ACTIONS(5384), 1, - anon_sym_LBRACE, - STATE(2396), 1, - sym_or_block, - STATE(2397), 1, - sym_argument_list, - STATE(4127), 1, - sym_type_parameters, - ACTIONS(4942), 2, - anon_sym_DOT, - anon_sym_QMARK_DOT, - ACTIONS(5020), 2, - anon_sym_is, - anon_sym_BANGis, - ACTIONS(5202), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(5214), 2, - anon_sym_in, - anon_sym_BANGin, - STATE(2724), 2, + ACTIONS(5312), 1, + anon_sym_AMP, + ACTIONS(5314), 1, + anon_sym_shared, + ACTIONS(5362), 1, + anon_sym_RPAREN, + STATE(2993), 1, + sym_mutability_modifiers, + STATE(3932), 1, + sym_parameter_declaration, + STATE(3939), 1, + sym_type_parameter_declaration, + STATE(4254), 1, + sym_plain_type, + STATE(4498), 1, + sym_reference_expression, + STATE(2727), 2, sym_line_comment, sym_block_comment, - ACTIONS(5196), 3, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(5200), 3, - anon_sym_SLASH, - anon_sym_AMP, - anon_sym_GT_GT, - ACTIONS(5204), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(5198), 5, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - [80458] = 5, + STATE(3460), 2, + sym_type_reference_expression, + sym_qualified_type, + STATE(2360), 4, + sym__plain_type_without_special, + sym_multi_return_type, + sym_result_type, + sym_option_type, + STATE(2362), 12, + sym_anon_struct_type, + sym_fixed_array_type, + sym_array_type, + sym_pointer_type, + sym_wrong_pointer_type, + sym_map_type, + sym_channel_type, + sym_shared_type, + sym_thread_type, + sym_atomic_type, + sym_generic_type, + sym_function_type, + [80104] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - STATE(2725), 2, + STATE(2728), 2, sym_line_comment, sym_block_comment, - ACTIONS(2655), 13, + ACTIONS(2750), 13, anon_sym_DOT, anon_sym_PIPE, anon_sym_PLUS, @@ -259039,7 +259043,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_GT_GT, anon_sym_DOT_DOT, - ACTIONS(2653), 27, + ACTIONS(2748), 27, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -259067,15 +259071,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [80513] = 5, + [80159] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - STATE(2726), 2, + STATE(2729), 2, sym_line_comment, sym_block_comment, - ACTIONS(2243), 13, + ACTIONS(2455), 13, anon_sym_DOT, anon_sym_PIPE, anon_sym_PLUS, @@ -259089,7 +259093,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_GT_GT, anon_sym_DOT_DOT, - ACTIONS(2241), 27, + ACTIONS(2453), 27, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -259117,15 +259121,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [80568] = 5, + [80214] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - STATE(2727), 2, + STATE(2730), 2, sym_line_comment, sym_block_comment, - ACTIONS(2647), 13, + ACTIONS(2756), 13, anon_sym_DOT, anon_sym_PIPE, anon_sym_PLUS, @@ -259139,7 +259143,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_GT_GT, anon_sym_DOT_DOT, - ACTIONS(2645), 27, + ACTIONS(2754), 27, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -259167,284 +259171,296 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [80623] = 28, + [80269] = 28, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(4932), 1, + ACTIONS(4938), 1, anon_sym_LPAREN, - ACTIONS(4934), 1, + ACTIONS(4940), 1, anon_sym_LBRACK, - ACTIONS(4936), 1, + ACTIONS(4942), 1, anon_sym_QMARK, - ACTIONS(4938), 1, + ACTIONS(4944), 1, anon_sym_BANG, - ACTIONS(4940), 1, + ACTIONS(4946), 1, anon_sym_LBRACK2, - ACTIONS(4944), 1, + ACTIONS(4950), 1, anon_sym_POUND_LBRACK, - ACTIONS(4994), 1, + ACTIONS(4996), 1, anon_sym_as, - ACTIONS(5008), 1, + ACTIONS(5012), 1, anon_sym_PLUS_PLUS, - ACTIONS(5010), 1, + ACTIONS(5014), 1, anon_sym_DASH_DASH, - ACTIONS(5018), 1, + ACTIONS(5022), 1, anon_sym_or, - ACTIONS(5090), 1, + ACTIONS(5200), 1, anon_sym_CARET, - ACTIONS(5098), 1, + ACTIONS(5202), 1, anon_sym_AMP_AMP, - ACTIONS(5102), 1, + ACTIONS(5204), 1, anon_sym_PIPE_PIPE, - ACTIONS(5386), 1, - anon_sym_SEMI, - STATE(2396), 1, - sym_or_block, - STATE(2397), 1, + ACTIONS(5364), 1, + anon_sym_LBRACE, + STATE(2298), 1, sym_argument_list, - STATE(4127), 1, + STATE(2299), 1, + sym_or_block, + STATE(4251), 1, sym_type_parameters, - ACTIONS(4942), 2, + ACTIONS(4948), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - ACTIONS(5020), 2, + ACTIONS(5024), 2, anon_sym_is, anon_sym_BANGis, - ACTIONS(5094), 2, + ACTIONS(5194), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(5100), 2, + ACTIONS(5206), 2, anon_sym_in, anon_sym_BANGin, - STATE(2728), 2, + STATE(2731), 2, sym_line_comment, sym_block_comment, - ACTIONS(5084), 3, + ACTIONS(5188), 3, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5088), 3, + ACTIONS(5192), 3, anon_sym_SLASH, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(5096), 4, + ACTIONS(5196), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(5086), 5, + ACTIONS(5190), 5, anon_sym_STAR, anon_sym_PERCENT, anon_sym_LT_LT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - [80724] = 28, + [80370] = 17, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(4932), 1, + ACTIONS(4938), 1, anon_sym_LPAREN, - ACTIONS(4934), 1, + ACTIONS(4940), 1, anon_sym_LBRACK, - ACTIONS(4936), 1, + ACTIONS(4942), 1, anon_sym_QMARK, - ACTIONS(4938), 1, + ACTIONS(4944), 1, anon_sym_BANG, - ACTIONS(4940), 1, + ACTIONS(4946), 1, anon_sym_LBRACK2, - ACTIONS(4944), 1, + ACTIONS(4950), 1, anon_sym_POUND_LBRACK, - ACTIONS(4994), 1, - anon_sym_as, - ACTIONS(5008), 1, - anon_sym_PLUS_PLUS, - ACTIONS(5010), 1, - anon_sym_DASH_DASH, - ACTIONS(5018), 1, - anon_sym_or, - ACTIONS(5322), 1, - anon_sym_CARET, - ACTIONS(5324), 1, - anon_sym_AMP_AMP, - ACTIONS(5326), 1, - anon_sym_PIPE_PIPE, - ACTIONS(5388), 1, - anon_sym_RPAREN, - STATE(2396), 1, - sym_or_block, - STATE(2397), 1, + STATE(2298), 1, sym_argument_list, - STATE(4127), 1, + STATE(2299), 1, + sym_or_block, + STATE(4251), 1, sym_type_parameters, - ACTIONS(4942), 2, + ACTIONS(4948), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - ACTIONS(5020), 2, - anon_sym_is, - anon_sym_BANGis, - ACTIONS(5318), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(5328), 2, - anon_sym_in, - anon_sym_BANGin, - STATE(2729), 2, + STATE(2732), 2, sym_line_comment, sym_block_comment, - ACTIONS(5312), 3, + ACTIONS(5192), 3, anon_sym_SLASH, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(5316), 3, + ACTIONS(1765), 5, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5320), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(5310), 5, + anon_sym_LT, + anon_sym_GT, + ACTIONS(5190), 5, anon_sym_STAR, anon_sym_PERCENT, anon_sym_LT_LT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - [80825] = 5, + ACTIONS(1763), 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, + [80449] = 28, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - STATE(2730), 2, + ACTIONS(4938), 1, + anon_sym_LPAREN, + ACTIONS(4940), 1, + anon_sym_LBRACK, + ACTIONS(4942), 1, + anon_sym_QMARK, + ACTIONS(4944), 1, + anon_sym_BANG, + ACTIONS(4946), 1, + anon_sym_LBRACK2, + ACTIONS(4950), 1, + anon_sym_POUND_LBRACK, + ACTIONS(4996), 1, + anon_sym_as, + ACTIONS(5012), 1, + anon_sym_PLUS_PLUS, + ACTIONS(5014), 1, + anon_sym_DASH_DASH, + ACTIONS(5022), 1, + anon_sym_or, + ACTIONS(5200), 1, + anon_sym_CARET, + ACTIONS(5202), 1, + anon_sym_AMP_AMP, + ACTIONS(5204), 1, + anon_sym_PIPE_PIPE, + ACTIONS(5366), 1, + anon_sym_LBRACE, + STATE(2298), 1, + sym_argument_list, + STATE(2299), 1, + sym_or_block, + STATE(4251), 1, + sym_type_parameters, + ACTIONS(4948), 2, + anon_sym_DOT, + anon_sym_QMARK_DOT, + ACTIONS(5024), 2, + anon_sym_is, + anon_sym_BANGis, + ACTIONS(5194), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(5206), 2, + anon_sym_in, + anon_sym_BANGin, + STATE(2733), 2, sym_line_comment, sym_block_comment, - ACTIONS(2173), 13, - anon_sym_DOT, + ACTIONS(5188), 3, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, + ACTIONS(5192), 3, anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - anon_sym_DOT_DOT, - ACTIONS(2171), 27, - anon_sym_as, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_LPAREN, - 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_LBRACK, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_CARET, + ACTIONS(5190), 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, - [80880] = 28, + [80550] = 28, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(4713), 1, + ACTIONS(4938), 1, anon_sym_LPAREN, - ACTIONS(4719), 1, + ACTIONS(4940), 1, anon_sym_LBRACK, - ACTIONS(4721), 1, + ACTIONS(4942), 1, anon_sym_QMARK, - ACTIONS(4723), 1, + ACTIONS(4944), 1, anon_sym_BANG, - ACTIONS(4725), 1, + ACTIONS(4946), 1, anon_sym_LBRACK2, - ACTIONS(4727), 1, + ACTIONS(4950), 1, anon_sym_POUND_LBRACK, - ACTIONS(4749), 1, + ACTIONS(4996), 1, anon_sym_as, - ACTIONS(4755), 1, + ACTIONS(5012), 1, anon_sym_PLUS_PLUS, - ACTIONS(4757), 1, + ACTIONS(5014), 1, anon_sym_DASH_DASH, - ACTIONS(4759), 1, - anon_sym_AMP_AMP, - ACTIONS(4761), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4763), 1, + ACTIONS(5022), 1, anon_sym_or, - ACTIONS(5236), 1, + ACTIONS(5328), 1, anon_sym_CARET, - ACTIONS(5238), 1, - anon_sym_LT_DASH, - STATE(2077), 1, + ACTIONS(5330), 1, + anon_sym_AMP_AMP, + ACTIONS(5332), 1, + anon_sym_PIPE_PIPE, + ACTIONS(5368), 1, + anon_sym_RPAREN, + STATE(2298), 1, sym_argument_list, - STATE(2078), 1, + STATE(2299), 1, sym_or_block, - STATE(4022), 1, + STATE(4251), 1, sym_type_parameters, - ACTIONS(4711), 2, + ACTIONS(4948), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - ACTIONS(4751), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(4765), 2, + ACTIONS(5024), 2, anon_sym_is, anon_sym_BANGis, - ACTIONS(4767), 2, + ACTIONS(5324), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(5334), 2, anon_sym_in, anon_sym_BANGin, - STATE(2731), 2, + STATE(2734), 2, sym_line_comment, sym_block_comment, - ACTIONS(4715), 3, + ACTIONS(5318), 3, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4717), 3, + ACTIONS(5322), 3, anon_sym_SLASH, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(4753), 4, + ACTIONS(5326), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(5232), 5, + ACTIONS(5320), 5, anon_sym_STAR, anon_sym_PERCENT, anon_sym_LT_LT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - [80981] = 5, + [80651] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - STATE(2732), 2, + STATE(2735), 2, sym_line_comment, sym_block_comment, - ACTIONS(2507), 13, + ACTIONS(2475), 13, anon_sym_DOT, anon_sym_PIPE, anon_sym_PLUS, @@ -259458,7 +259474,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_GT_GT, anon_sym_DOT_DOT, - ACTIONS(2505), 27, + ACTIONS(2473), 27, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -259486,15 +259502,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [81036] = 5, + [80706] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - STATE(2733), 2, + STATE(2736), 2, sym_line_comment, sym_block_comment, - ACTIONS(2832), 13, + ACTIONS(2772), 13, anon_sym_DOT, anon_sym_PIPE, anon_sym_PLUS, @@ -259508,7 +259524,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_GT_GT, anon_sym_DOT_DOT, - ACTIONS(2830), 27, + ACTIONS(2770), 27, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -259536,15 +259552,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [81091] = 5, + [80761] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - STATE(2734), 2, + STATE(2737), 2, sym_line_comment, sym_block_comment, - ACTIONS(2273), 13, + ACTIONS(2778), 13, anon_sym_DOT, anon_sym_PIPE, anon_sym_PLUS, @@ -259558,7 +259574,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_GT_GT, anon_sym_DOT_DOT, - ACTIONS(2271), 27, + ACTIONS(2776), 27, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -259586,88 +259602,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [81146] = 28, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_STAR, - ACTIONS(47), 1, - anon_sym_QMARK, - ACTIONS(85), 1, - anon_sym_map_LBRACK, - ACTIONS(87), 1, - anon_sym_chan, - ACTIONS(89), 1, - anon_sym_thread, - ACTIONS(91), 1, - anon_sym_atomic, - ACTIONS(603), 1, - anon_sym_fn, - ACTIONS(607), 1, - anon_sym_struct, - ACTIONS(3586), 1, - anon_sym_LPAREN, - ACTIONS(3588), 1, - anon_sym_STAR, - ACTIONS(5294), 1, - sym_identifier, - ACTIONS(5298), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(5300), 1, - anon_sym_mut, - ACTIONS(5302), 1, - anon_sym_BANG, - ACTIONS(5304), 1, - anon_sym_LBRACK2, - ACTIONS(5306), 1, - anon_sym_AMP, - ACTIONS(5308), 1, - anon_sym_shared, - ACTIONS(5390), 1, - anon_sym_RPAREN, - STATE(2984), 1, - sym_mutability_modifiers, - STATE(3811), 1, - sym_parameter_declaration, - STATE(3816), 1, - sym_type_parameter_declaration, - STATE(4265), 1, - sym_plain_type, - STATE(4495), 1, - sym_reference_expression, - STATE(2735), 2, - sym_line_comment, - sym_block_comment, - STATE(3541), 2, - sym_type_reference_expression, - sym_qualified_type, - STATE(2302), 4, - sym__plain_type_without_special, - sym_multi_return_type, - sym_result_type, - sym_option_type, - STATE(2303), 12, - sym_anon_struct_type, - sym_fixed_array_type, - sym_array_type, - sym_pointer_type, - sym_wrong_pointer_type, - sym_map_type, - sym_channel_type, - sym_shared_type, - sym_thread_type, - sym_atomic_type, - sym_generic_type, - sym_function_type, - [81247] = 5, + [80816] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - STATE(2736), 2, + STATE(2738), 2, sym_line_comment, sym_block_comment, - ACTIONS(2515), 13, + ACTIONS(2459), 13, anon_sym_DOT, anon_sym_PIPE, anon_sym_PLUS, @@ -259681,7 +259624,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_GT_GT, anon_sym_DOT_DOT, - ACTIONS(2513), 27, + ACTIONS(2457), 27, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -259709,65 +259652,88 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [81302] = 5, + [80871] = 28, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - STATE(2737), 2, + ACTIONS(4938), 1, + anon_sym_LPAREN, + ACTIONS(4940), 1, + anon_sym_LBRACK, + ACTIONS(4942), 1, + anon_sym_QMARK, + ACTIONS(4944), 1, + anon_sym_BANG, + ACTIONS(4946), 1, + anon_sym_LBRACK2, + ACTIONS(4950), 1, + anon_sym_POUND_LBRACK, + ACTIONS(4996), 1, + anon_sym_as, + ACTIONS(5012), 1, + anon_sym_PLUS_PLUS, + ACTIONS(5014), 1, + anon_sym_DASH_DASH, + ACTIONS(5022), 1, + anon_sym_or, + ACTIONS(5328), 1, + anon_sym_CARET, + ACTIONS(5330), 1, + anon_sym_AMP_AMP, + ACTIONS(5332), 1, + anon_sym_PIPE_PIPE, + ACTIONS(5370), 1, + anon_sym_RPAREN, + STATE(2298), 1, + sym_argument_list, + STATE(2299), 1, + sym_or_block, + STATE(4251), 1, + sym_type_parameters, + ACTIONS(4948), 2, + anon_sym_DOT, + anon_sym_QMARK_DOT, + ACTIONS(5024), 2, + anon_sym_is, + anon_sym_BANGis, + ACTIONS(5324), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(5334), 2, + anon_sym_in, + anon_sym_BANGin, + STATE(2739), 2, sym_line_comment, sym_block_comment, - ACTIONS(2213), 13, - anon_sym_DOT, + ACTIONS(5318), 3, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, + ACTIONS(5322), 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(2211), 27, - anon_sym_as, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_STAR, - anon_sym_PERCENT, + ACTIONS(5326), 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(5320), 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, - [81357] = 5, + [80972] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - STATE(2738), 2, + STATE(2740), 2, sym_line_comment, sym_block_comment, - ACTIONS(2183), 13, + ACTIONS(2902), 13, anon_sym_DOT, anon_sym_PIPE, anon_sym_PLUS, @@ -259781,7 +259747,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_GT_GT, anon_sym_DOT_DOT, - ACTIONS(2181), 27, + ACTIONS(2900), 27, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -259809,15 +259775,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [81412] = 5, + [81027] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - STATE(2739), 2, + STATE(2741), 2, sym_line_comment, sym_block_comment, - ACTIONS(2477), 13, + ACTIONS(2906), 13, anon_sym_DOT, anon_sym_PIPE, anon_sym_PLUS, @@ -259831,7 +259797,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_GT_GT, anon_sym_DOT_DOT, - ACTIONS(2475), 27, + ACTIONS(2904), 27, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -259859,15 +259825,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [81467] = 5, + [81082] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - STATE(2740), 2, + STATE(2742), 2, sym_line_comment, sym_block_comment, - ACTIONS(2169), 13, + ACTIONS(2471), 13, anon_sym_DOT, anon_sym_PIPE, anon_sym_PLUS, @@ -259881,7 +259847,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_GT_GT, anon_sym_DOT_DOT, - ACTIONS(2167), 27, + ACTIONS(2469), 27, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -259909,15 +259875,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [81522] = 5, + [81137] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - STATE(2741), 2, + STATE(2743), 2, sym_line_comment, sym_block_comment, - ACTIONS(2828), 13, + ACTIONS(3058), 13, anon_sym_DOT, anon_sym_PIPE, anon_sym_PLUS, @@ -259931,7 +259897,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_GT_GT, anon_sym_DOT_DOT, - ACTIONS(2826), 27, + ACTIONS(3056), 27, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -259959,15 +259925,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [81577] = 5, + [81192] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - STATE(2742), 2, + STATE(2744), 2, sym_line_comment, sym_block_comment, - ACTIONS(2519), 13, + ACTIONS(2768), 13, anon_sym_DOT, anon_sym_PIPE, anon_sym_PLUS, @@ -259981,7 +259947,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_GT_GT, anon_sym_DOT_DOT, - ACTIONS(2517), 27, + ACTIONS(2766), 27, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -260009,15 +259975,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [81632] = 5, + [81247] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - STATE(2743), 2, + STATE(2745), 2, sym_line_comment, sym_block_comment, - ACTIONS(2687), 13, + ACTIONS(2672), 13, anon_sym_DOT, anon_sym_PIPE, anon_sym_PLUS, @@ -260031,7 +259997,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_GT_GT, anon_sym_DOT_DOT, - ACTIONS(2685), 27, + ACTIONS(2670), 27, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -260059,15 +260025,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [81687] = 5, + [81302] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - STATE(2744), 2, + STATE(2746), 2, sym_line_comment, sym_block_comment, - ACTIONS(2739), 13, + ACTIONS(3062), 13, anon_sym_DOT, anon_sym_PIPE, anon_sym_PLUS, @@ -260081,7 +260047,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_GT_GT, anon_sym_DOT_DOT, - ACTIONS(2737), 27, + ACTIONS(3060), 27, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -260109,15 +260075,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [81742] = 5, + [81357] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - STATE(2745), 2, + STATE(2747), 2, sym_line_comment, sym_block_comment, - ACTIONS(2753), 13, + ACTIONS(2736), 13, anon_sym_DOT, anon_sym_PIPE, anon_sym_PLUS, @@ -260131,7 +260097,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_GT_GT, anon_sym_DOT_DOT, - ACTIONS(2751), 27, + ACTIONS(2734), 27, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -260159,15 +260125,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [81797] = 5, + [81412] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - STATE(2746), 2, + STATE(2748), 2, sym_line_comment, sym_block_comment, - ACTIONS(2798), 13, + ACTIONS(2740), 13, anon_sym_DOT, anon_sym_PIPE, anon_sym_PLUS, @@ -260181,7 +260147,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_GT_GT, anon_sym_DOT_DOT, - ACTIONS(2796), 27, + ACTIONS(2738), 27, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -260209,15 +260175,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [81852] = 5, + [81467] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - STATE(2747), 2, + STATE(2749), 2, sym_line_comment, sym_block_comment, - ACTIONS(2757), 13, + ACTIONS(2728), 13, anon_sym_DOT, anon_sym_PIPE, anon_sym_PLUS, @@ -260231,7 +260197,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_GT_GT, anon_sym_DOT_DOT, - ACTIONS(2755), 27, + ACTIONS(2726), 27, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -260259,67 +260225,90 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [81907] = 6, + [81522] = 28, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(1953), 1, - anon_sym_LBRACE, - STATE(2748), 2, + ACTIONS(4938), 1, + anon_sym_LPAREN, + ACTIONS(4940), 1, + anon_sym_LBRACK, + ACTIONS(4942), 1, + anon_sym_QMARK, + ACTIONS(4944), 1, + anon_sym_BANG, + ACTIONS(4946), 1, + anon_sym_LBRACK2, + ACTIONS(4950), 1, + anon_sym_POUND_LBRACK, + ACTIONS(4996), 1, + anon_sym_as, + ACTIONS(5012), 1, + anon_sym_PLUS_PLUS, + ACTIONS(5014), 1, + anon_sym_DASH_DASH, + ACTIONS(5022), 1, + anon_sym_or, + ACTIONS(5328), 1, + anon_sym_CARET, + ACTIONS(5330), 1, + anon_sym_AMP_AMP, + ACTIONS(5332), 1, + anon_sym_PIPE_PIPE, + ACTIONS(5372), 1, + anon_sym_RPAREN, + STATE(2298), 1, + sym_argument_list, + STATE(2299), 1, + sym_or_block, + STATE(4251), 1, + sym_type_parameters, + ACTIONS(4948), 2, + anon_sym_DOT, + anon_sym_QMARK_DOT, + ACTIONS(5024), 2, + anon_sym_is, + anon_sym_BANGis, + ACTIONS(5324), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(5334), 2, + anon_sym_in, + anon_sym_BANGin, + STATE(2750), 2, sym_line_comment, sym_block_comment, - ACTIONS(1917), 11, + ACTIONS(5318), 3, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, + ACTIONS(5322), 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(1915), 28, - anon_sym_SEMI, - anon_sym_DOT, - anon_sym_as, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_STAR, - anon_sym_PERCENT, + ACTIONS(5326), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - anon_sym_LBRACK, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_CARET, + ACTIONS(5320), 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, - [81964] = 5, + [81623] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - STATE(2749), 2, + ACTIONS(1989), 1, + anon_sym_LBRACE, + STATE(2751), 2, sym_line_comment, sym_block_comment, - ACTIONS(2782), 13, - anon_sym_DOT, + ACTIONS(1809), 11, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, @@ -260331,10 +260320,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - anon_sym_DOT_DOT, - ACTIONS(2780), 27, + ACTIONS(1807), 28, + anon_sym_SEMI, + anon_sym_DOT, anon_sym_as, - anon_sym_LBRACE, anon_sym_COMMA, anon_sym_LPAREN, anon_sym_STAR, @@ -260343,7 +260332,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, @@ -260360,235 +260348,435 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [82019] = 28, + anon_sym_COLON_EQ, + [81680] = 28, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(4932), 1, + ACTIONS(4938), 1, anon_sym_LPAREN, - ACTIONS(4934), 1, + ACTIONS(4940), 1, anon_sym_LBRACK, - ACTIONS(4936), 1, + ACTIONS(4942), 1, anon_sym_QMARK, - ACTIONS(4938), 1, + ACTIONS(4944), 1, anon_sym_BANG, - ACTIONS(4940), 1, + ACTIONS(4946), 1, anon_sym_LBRACK2, - ACTIONS(4944), 1, + ACTIONS(4950), 1, anon_sym_POUND_LBRACK, - ACTIONS(4994), 1, + ACTIONS(4996), 1, anon_sym_as, - ACTIONS(5008), 1, + ACTIONS(5012), 1, anon_sym_PLUS_PLUS, - ACTIONS(5010), 1, + ACTIONS(5014), 1, anon_sym_DASH_DASH, - ACTIONS(5018), 1, + ACTIONS(5022), 1, anon_sym_or, - ACTIONS(5208), 1, + ACTIONS(5076), 1, anon_sym_CARET, - ACTIONS(5210), 1, + ACTIONS(5082), 1, anon_sym_AMP_AMP, - ACTIONS(5212), 1, + ACTIONS(5114), 1, anon_sym_PIPE_PIPE, - ACTIONS(5392), 1, - anon_sym_LBRACE, - STATE(2396), 1, - sym_or_block, - STATE(2397), 1, + ACTIONS(5374), 1, + anon_sym_SEMI, + STATE(2298), 1, sym_argument_list, - STATE(4127), 1, + STATE(2299), 1, + sym_or_block, + STATE(4251), 1, sym_type_parameters, - ACTIONS(4942), 2, + ACTIONS(4948), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - ACTIONS(5020), 2, + ACTIONS(5024), 2, anon_sym_is, anon_sym_BANGis, - ACTIONS(5202), 2, + ACTIONS(5078), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(5214), 2, + ACTIONS(5084), 2, anon_sym_in, anon_sym_BANGin, - STATE(2750), 2, + STATE(2752), 2, sym_line_comment, sym_block_comment, - ACTIONS(5196), 3, + ACTIONS(5070), 3, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5200), 3, + ACTIONS(5074), 3, anon_sym_SLASH, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(5204), 4, + ACTIONS(5080), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(5198), 5, + ACTIONS(5072), 5, anon_sym_STAR, anon_sym_PERCENT, anon_sym_LT_LT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - [82120] = 28, + [81781] = 28, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(4932), 1, + ACTIONS(47), 1, + anon_sym_QMARK, + ACTIONS(85), 1, + anon_sym_map_LBRACK, + ACTIONS(87), 1, + anon_sym_chan, + ACTIONS(89), 1, + anon_sym_thread, + ACTIONS(91), 1, + anon_sym_atomic, + ACTIONS(571), 1, + anon_sym_fn, + ACTIONS(575), 1, + anon_sym_struct, + ACTIONS(3564), 1, + anon_sym_LPAREN, + ACTIONS(3566), 1, + anon_sym_STAR, + ACTIONS(5300), 1, + sym_identifier, + ACTIONS(5304), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(5306), 1, + anon_sym_mut, + ACTIONS(5308), 1, + anon_sym_BANG, + ACTIONS(5310), 1, + anon_sym_LBRACK2, + ACTIONS(5312), 1, + anon_sym_AMP, + ACTIONS(5314), 1, + anon_sym_shared, + ACTIONS(5376), 1, + anon_sym_RPAREN, + STATE(2993), 1, + sym_mutability_modifiers, + STATE(3923), 1, + sym_parameter_declaration, + STATE(3924), 1, + sym_type_parameter_declaration, + STATE(4254), 1, + sym_plain_type, + STATE(4498), 1, + sym_reference_expression, + STATE(2753), 2, + sym_line_comment, + sym_block_comment, + STATE(3460), 2, + sym_type_reference_expression, + sym_qualified_type, + STATE(2360), 4, + sym__plain_type_without_special, + sym_multi_return_type, + sym_result_type, + sym_option_type, + STATE(2362), 12, + sym_anon_struct_type, + sym_fixed_array_type, + sym_array_type, + sym_pointer_type, + sym_wrong_pointer_type, + sym_map_type, + sym_channel_type, + sym_shared_type, + sym_thread_type, + sym_atomic_type, + sym_generic_type, + sym_function_type, + [81882] = 28, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(4938), 1, anon_sym_LPAREN, - ACTIONS(4934), 1, + ACTIONS(4940), 1, anon_sym_LBRACK, - ACTIONS(4936), 1, + ACTIONS(4942), 1, anon_sym_QMARK, - ACTIONS(4938), 1, + ACTIONS(4944), 1, anon_sym_BANG, - ACTIONS(4940), 1, + ACTIONS(4946), 1, anon_sym_LBRACK2, - ACTIONS(4944), 1, + ACTIONS(4950), 1, anon_sym_POUND_LBRACK, - ACTIONS(4994), 1, + ACTIONS(4996), 1, anon_sym_as, - ACTIONS(5008), 1, + ACTIONS(5012), 1, anon_sym_PLUS_PLUS, - ACTIONS(5010), 1, + ACTIONS(5014), 1, anon_sym_DASH_DASH, - ACTIONS(5018), 1, + ACTIONS(5022), 1, anon_sym_or, - ACTIONS(5208), 1, + ACTIONS(5200), 1, anon_sym_CARET, - ACTIONS(5210), 1, + ACTIONS(5202), 1, anon_sym_AMP_AMP, - ACTIONS(5212), 1, + ACTIONS(5204), 1, anon_sym_PIPE_PIPE, - ACTIONS(5394), 1, + ACTIONS(5378), 1, anon_sym_LBRACE, - STATE(2396), 1, - sym_or_block, - STATE(2397), 1, + STATE(2298), 1, sym_argument_list, - STATE(4127), 1, + STATE(2299), 1, + sym_or_block, + STATE(4251), 1, sym_type_parameters, - ACTIONS(4942), 2, + ACTIONS(4948), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - ACTIONS(5020), 2, + ACTIONS(5024), 2, anon_sym_is, anon_sym_BANGis, - ACTIONS(5202), 2, + ACTIONS(5194), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(5214), 2, + ACTIONS(5206), 2, anon_sym_in, anon_sym_BANGin, - STATE(2751), 2, + STATE(2754), 2, sym_line_comment, sym_block_comment, - ACTIONS(5196), 3, + ACTIONS(5188), 3, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5200), 3, + ACTIONS(5192), 3, anon_sym_SLASH, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(5204), 4, + ACTIONS(5196), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(5198), 5, + ACTIONS(5190), 5, anon_sym_STAR, anon_sym_PERCENT, anon_sym_LT_LT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - [82221] = 28, + [81983] = 28, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(4932), 1, + ACTIONS(47), 1, + anon_sym_QMARK, + ACTIONS(85), 1, + anon_sym_map_LBRACK, + ACTIONS(87), 1, + anon_sym_chan, + ACTIONS(89), 1, + anon_sym_thread, + ACTIONS(91), 1, + anon_sym_atomic, + ACTIONS(571), 1, + anon_sym_fn, + ACTIONS(575), 1, + anon_sym_struct, + ACTIONS(3564), 1, anon_sym_LPAREN, - ACTIONS(4934), 1, - anon_sym_LBRACK, - ACTIONS(4936), 1, + ACTIONS(3566), 1, + anon_sym_STAR, + ACTIONS(5300), 1, + sym_identifier, + ACTIONS(5304), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(5306), 1, + anon_sym_mut, + ACTIONS(5308), 1, + anon_sym_BANG, + ACTIONS(5310), 1, + anon_sym_LBRACK2, + ACTIONS(5312), 1, + anon_sym_AMP, + ACTIONS(5314), 1, + anon_sym_shared, + ACTIONS(5380), 1, + anon_sym_RPAREN, + STATE(2993), 1, + sym_mutability_modifiers, + STATE(3910), 1, + sym_type_parameter_declaration, + STATE(3914), 1, + sym_parameter_declaration, + STATE(4254), 1, + sym_plain_type, + STATE(4498), 1, + sym_reference_expression, + STATE(2755), 2, + sym_line_comment, + sym_block_comment, + STATE(3460), 2, + sym_type_reference_expression, + sym_qualified_type, + STATE(2360), 4, + sym__plain_type_without_special, + sym_multi_return_type, + sym_result_type, + sym_option_type, + STATE(2362), 12, + sym_anon_struct_type, + sym_fixed_array_type, + sym_array_type, + sym_pointer_type, + sym_wrong_pointer_type, + sym_map_type, + sym_channel_type, + sym_shared_type, + sym_thread_type, + sym_atomic_type, + sym_generic_type, + sym_function_type, + [82084] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + STATE(2756), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(2269), 13, + anon_sym_DOT, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, anon_sym_QMARK, - ACTIONS(4938), 1, anon_sym_BANG, - ACTIONS(4940), 1, anon_sym_LBRACK2, + anon_sym_AMP, + anon_sym_GT_GT, + anon_sym_DOT_DOT, + ACTIONS(2267), 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, + [82139] = 28, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(4938), 1, + anon_sym_LPAREN, + ACTIONS(4940), 1, + anon_sym_LBRACK, + ACTIONS(4942), 1, + anon_sym_QMARK, ACTIONS(4944), 1, + anon_sym_BANG, + ACTIONS(4946), 1, + anon_sym_LBRACK2, + ACTIONS(4950), 1, anon_sym_POUND_LBRACK, - ACTIONS(4994), 1, + ACTIONS(4996), 1, anon_sym_as, - ACTIONS(5008), 1, + ACTIONS(5012), 1, anon_sym_PLUS_PLUS, - ACTIONS(5010), 1, + ACTIONS(5014), 1, anon_sym_DASH_DASH, - ACTIONS(5018), 1, + ACTIONS(5022), 1, anon_sym_or, - ACTIONS(5322), 1, + ACTIONS(5200), 1, anon_sym_CARET, - ACTIONS(5324), 1, + ACTIONS(5202), 1, anon_sym_AMP_AMP, - ACTIONS(5326), 1, + ACTIONS(5204), 1, anon_sym_PIPE_PIPE, - ACTIONS(5396), 1, - anon_sym_RPAREN, - STATE(2396), 1, - sym_or_block, - STATE(2397), 1, + ACTIONS(5382), 1, + anon_sym_LBRACE, + STATE(2298), 1, sym_argument_list, - STATE(4127), 1, + STATE(2299), 1, + sym_or_block, + STATE(4251), 1, sym_type_parameters, - ACTIONS(4942), 2, + ACTIONS(4948), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - ACTIONS(5020), 2, + ACTIONS(5024), 2, anon_sym_is, anon_sym_BANGis, - ACTIONS(5318), 2, + ACTIONS(5194), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(5328), 2, + ACTIONS(5206), 2, anon_sym_in, anon_sym_BANGin, - STATE(2752), 2, + STATE(2757), 2, sym_line_comment, sym_block_comment, - ACTIONS(5312), 3, - anon_sym_SLASH, - anon_sym_AMP, - anon_sym_GT_GT, - ACTIONS(5316), 3, + ACTIONS(5188), 3, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5320), 4, + ACTIONS(5192), 3, + anon_sym_SLASH, + anon_sym_AMP, + anon_sym_GT_GT, + ACTIONS(5196), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(5310), 5, + ACTIONS(5190), 5, anon_sym_STAR, anon_sym_PERCENT, anon_sym_LT_LT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - [82322] = 5, + [82240] = 7, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - STATE(2753), 2, + ACTIONS(5384), 1, + anon_sym_else, + STATE(2878), 1, + sym_else_branch, + STATE(2758), 2, sym_line_comment, sym_block_comment, - ACTIONS(2878), 13, - anon_sym_DOT, + ACTIONS(1799), 11, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, @@ -260600,11 +260788,133 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - anon_sym_DOT_DOT, - ACTIONS(2876), 27, + ACTIONS(1797), 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, + [82299] = 28, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(47), 1, + anon_sym_QMARK, + ACTIONS(85), 1, + anon_sym_map_LBRACK, + ACTIONS(87), 1, + anon_sym_chan, + ACTIONS(89), 1, + anon_sym_thread, + ACTIONS(91), 1, + anon_sym_atomic, + ACTIONS(571), 1, + anon_sym_fn, + ACTIONS(575), 1, + anon_sym_struct, + ACTIONS(3564), 1, + anon_sym_LPAREN, + ACTIONS(3566), 1, + anon_sym_STAR, + ACTIONS(5300), 1, + sym_identifier, + ACTIONS(5304), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(5306), 1, + anon_sym_mut, + ACTIONS(5308), 1, + anon_sym_BANG, + ACTIONS(5310), 1, + anon_sym_LBRACK2, + ACTIONS(5312), 1, + anon_sym_AMP, + ACTIONS(5314), 1, + anon_sym_shared, + ACTIONS(5386), 1, + anon_sym_RPAREN, + STATE(2993), 1, + sym_mutability_modifiers, + STATE(3971), 1, + sym_type_parameter_declaration, + STATE(3972), 1, + sym_parameter_declaration, + STATE(4254), 1, + sym_plain_type, + STATE(4498), 1, + sym_reference_expression, + STATE(2759), 2, + sym_line_comment, + sym_block_comment, + STATE(3460), 2, + sym_type_reference_expression, + sym_qualified_type, + STATE(2360), 4, + sym__plain_type_without_special, + sym_multi_return_type, + sym_result_type, + sym_option_type, + STATE(2362), 12, + sym_anon_struct_type, + sym_fixed_array_type, + sym_array_type, + sym_pointer_type, + sym_wrong_pointer_type, + sym_map_type, + sym_channel_type, + sym_shared_type, + sym_thread_type, + sym_atomic_type, + sym_generic_type, + sym_function_type, + [82400] = 6, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(1989), 2, anon_sym_LBRACE, anon_sym_COMMA, + STATE(2760), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(1809), 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(1807), 27, + anon_sym_DOT, + anon_sym_as, anon_sym_LPAREN, anon_sym_STAR, anon_sym_PERCENT, @@ -260612,11 +260922,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, @@ -260629,16 +260940,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [82377] = 5, + [82457] = 7, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - STATE(2754), 2, + ACTIONS(5384), 1, + anon_sym_else, + STATE(2876), 1, + sym_else_branch, + STATE(2761), 2, sym_line_comment, sym_block_comment, - ACTIONS(2892), 13, - anon_sym_DOT, + ACTIONS(1805), 11, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, @@ -260650,11 +260964,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - anon_sym_DOT_DOT, - ACTIONS(2890), 27, + ACTIONS(1803), 27, + anon_sym_DOT, anon_sym_as, - anon_sym_LBRACE, - anon_sym_COMMA, anon_sym_LPAREN, anon_sym_STAR, anon_sym_PERCENT, @@ -260662,11 +260974,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, @@ -260679,15 +260992,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [82432] = 5, + [82516] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - STATE(2755), 2, + STATE(2762), 2, sym_line_comment, sym_block_comment, - ACTIONS(3042), 13, + ACTIONS(2880), 13, anon_sym_DOT, anon_sym_PIPE, anon_sym_PLUS, @@ -260701,7 +261014,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_GT_GT, anon_sym_DOT_DOT, - ACTIONS(3040), 27, + ACTIONS(2878), 27, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -260729,91 +261042,90 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [82487] = 28, + [82571] = 28, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(4932), 1, + ACTIONS(4938), 1, anon_sym_LPAREN, - ACTIONS(4934), 1, + ACTIONS(4940), 1, anon_sym_LBRACK, - ACTIONS(4936), 1, + ACTIONS(4942), 1, anon_sym_QMARK, - ACTIONS(4938), 1, + ACTIONS(4944), 1, anon_sym_BANG, - ACTIONS(4940), 1, + ACTIONS(4946), 1, anon_sym_LBRACK2, - ACTIONS(4944), 1, + ACTIONS(4950), 1, anon_sym_POUND_LBRACK, - ACTIONS(4994), 1, + ACTIONS(4996), 1, anon_sym_as, - ACTIONS(5008), 1, + ACTIONS(5012), 1, anon_sym_PLUS_PLUS, - ACTIONS(5010), 1, + ACTIONS(5014), 1, anon_sym_DASH_DASH, - ACTIONS(5018), 1, + ACTIONS(5022), 1, anon_sym_or, - ACTIONS(5208), 1, + ACTIONS(5328), 1, anon_sym_CARET, - ACTIONS(5210), 1, + ACTIONS(5330), 1, anon_sym_AMP_AMP, - ACTIONS(5212), 1, + ACTIONS(5332), 1, anon_sym_PIPE_PIPE, - ACTIONS(5398), 1, - anon_sym_LBRACE, - STATE(2396), 1, - sym_or_block, - STATE(2397), 1, + ACTIONS(5388), 1, + anon_sym_RPAREN, + STATE(2298), 1, sym_argument_list, - STATE(4127), 1, + STATE(2299), 1, + sym_or_block, + STATE(4251), 1, sym_type_parameters, - ACTIONS(4942), 2, + ACTIONS(4948), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - ACTIONS(5020), 2, + ACTIONS(5024), 2, anon_sym_is, anon_sym_BANGis, - ACTIONS(5202), 2, + ACTIONS(5324), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(5214), 2, + ACTIONS(5334), 2, anon_sym_in, anon_sym_BANGin, - STATE(2756), 2, + STATE(2763), 2, sym_line_comment, sym_block_comment, - ACTIONS(5196), 3, + ACTIONS(5318), 3, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5200), 3, + ACTIONS(5322), 3, anon_sym_SLASH, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(5204), 4, + ACTIONS(5326), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(5198), 5, + ACTIONS(5320), 5, anon_sym_STAR, anon_sym_PERCENT, anon_sym_LT_LT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - [82588] = 6, + [82672] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(1953), 2, - anon_sym_LBRACE, - anon_sym_COMMA, - STATE(2757), 2, + ACTIONS(2515), 1, + anon_sym_DOT, + STATE(2764), 2, sym_line_comment, sym_block_comment, - ACTIONS(1917), 11, + ACTIONS(2513), 12, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, @@ -260825,9 +261137,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(1915), 27, - anon_sym_DOT, + anon_sym_DOT_DOT, + ACTIONS(2511), 27, anon_sym_as, + anon_sym_LBRACE, + anon_sym_COMMA, anon_sym_LPAREN, anon_sym_STAR, anon_sym_PERCENT, @@ -260835,12 +261149,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, @@ -260853,88 +261166,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [82645] = 28, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_STAR, - ACTIONS(4932), 1, - anon_sym_LPAREN, - ACTIONS(4934), 1, - anon_sym_LBRACK, - ACTIONS(4936), 1, - anon_sym_QMARK, - ACTIONS(4938), 1, - anon_sym_BANG, - ACTIONS(4940), 1, - anon_sym_LBRACK2, - ACTIONS(4944), 1, - anon_sym_POUND_LBRACK, - ACTIONS(4994), 1, - anon_sym_as, - ACTIONS(5008), 1, - anon_sym_PLUS_PLUS, - ACTIONS(5010), 1, - anon_sym_DASH_DASH, - ACTIONS(5018), 1, - anon_sym_or, - ACTIONS(5322), 1, - anon_sym_CARET, - ACTIONS(5324), 1, - anon_sym_AMP_AMP, - ACTIONS(5326), 1, - anon_sym_PIPE_PIPE, - ACTIONS(5400), 1, - anon_sym_RPAREN, - STATE(2396), 1, - sym_or_block, - STATE(2397), 1, - sym_argument_list, - STATE(4127), 1, - sym_type_parameters, - ACTIONS(4942), 2, - anon_sym_DOT, - anon_sym_QMARK_DOT, - ACTIONS(5020), 2, - anon_sym_is, - anon_sym_BANGis, - ACTIONS(5318), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(5328), 2, - anon_sym_in, - anon_sym_BANGin, - STATE(2758), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(5312), 3, - anon_sym_SLASH, - anon_sym_AMP, - anon_sym_GT_GT, - ACTIONS(5316), 3, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(5320), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(5310), 5, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - [82746] = 5, + [82729] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - STATE(2759), 2, + STATE(2765), 2, sym_line_comment, sym_block_comment, - ACTIONS(2165), 13, + ACTIONS(2513), 13, anon_sym_DOT, anon_sym_PIPE, anon_sym_PLUS, @@ -260948,7 +261188,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_GT_GT, anon_sym_DOT_DOT, - ACTIONS(2163), 27, + ACTIONS(2511), 27, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -260976,286 +261216,381 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [82801] = 28, + [82784] = 28, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(1771), 1, - anon_sym_LBRACE, - ACTIONS(4932), 1, + ACTIONS(4938), 1, anon_sym_LPAREN, - ACTIONS(4934), 1, + ACTIONS(4940), 1, anon_sym_LBRACK, - ACTIONS(4936), 1, + ACTIONS(4942), 1, anon_sym_QMARK, - ACTIONS(4938), 1, + ACTIONS(4944), 1, anon_sym_BANG, - ACTIONS(4940), 1, + ACTIONS(4946), 1, anon_sym_LBRACK2, - ACTIONS(4944), 1, + ACTIONS(4950), 1, anon_sym_POUND_LBRACK, - ACTIONS(4994), 1, + ACTIONS(4996), 1, anon_sym_as, - ACTIONS(5008), 1, + ACTIONS(5012), 1, anon_sym_PLUS_PLUS, - ACTIONS(5010), 1, + ACTIONS(5014), 1, anon_sym_DASH_DASH, - ACTIONS(5018), 1, + ACTIONS(5022), 1, anon_sym_or, - ACTIONS(5208), 1, + ACTIONS(5076), 1, anon_sym_CARET, - ACTIONS(5210), 1, + ACTIONS(5082), 1, anon_sym_AMP_AMP, - ACTIONS(5212), 1, + ACTIONS(5114), 1, anon_sym_PIPE_PIPE, - STATE(2396), 1, - sym_or_block, - STATE(2397), 1, + ACTIONS(5390), 1, + anon_sym_RBRACK, + STATE(2298), 1, sym_argument_list, - STATE(4127), 1, + STATE(2299), 1, + sym_or_block, + STATE(4251), 1, sym_type_parameters, - ACTIONS(4942), 2, + ACTIONS(4948), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - ACTIONS(5020), 2, + ACTIONS(5024), 2, anon_sym_is, anon_sym_BANGis, - ACTIONS(5202), 2, + ACTIONS(5078), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(5214), 2, + ACTIONS(5084), 2, anon_sym_in, anon_sym_BANGin, - STATE(2760), 2, + STATE(2766), 2, sym_line_comment, sym_block_comment, - ACTIONS(5196), 3, + ACTIONS(5070), 3, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5200), 3, + ACTIONS(5074), 3, anon_sym_SLASH, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(5204), 4, + ACTIONS(5080), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(5198), 5, + ACTIONS(5072), 5, anon_sym_STAR, anon_sym_PERCENT, anon_sym_LT_LT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - [82902] = 28, + [82885] = 28, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(1779), 1, - anon_sym_LBRACE, - ACTIONS(4932), 1, + ACTIONS(4938), 1, anon_sym_LPAREN, - ACTIONS(4934), 1, + ACTIONS(4940), 1, anon_sym_LBRACK, - ACTIONS(4936), 1, + ACTIONS(4942), 1, anon_sym_QMARK, - ACTIONS(4938), 1, + ACTIONS(4944), 1, anon_sym_BANG, - ACTIONS(4940), 1, + ACTIONS(4946), 1, anon_sym_LBRACK2, - ACTIONS(4944), 1, + ACTIONS(4950), 1, anon_sym_POUND_LBRACK, - ACTIONS(4994), 1, + ACTIONS(4996), 1, anon_sym_as, - ACTIONS(5008), 1, + ACTIONS(5012), 1, anon_sym_PLUS_PLUS, - ACTIONS(5010), 1, + ACTIONS(5014), 1, anon_sym_DASH_DASH, - ACTIONS(5018), 1, + ACTIONS(5022), 1, anon_sym_or, - ACTIONS(5208), 1, + ACTIONS(5076), 1, anon_sym_CARET, - ACTIONS(5210), 1, + ACTIONS(5082), 1, anon_sym_AMP_AMP, - ACTIONS(5212), 1, + ACTIONS(5114), 1, anon_sym_PIPE_PIPE, - STATE(2396), 1, - sym_or_block, - STATE(2397), 1, + ACTIONS(5392), 1, + anon_sym_SEMI, + STATE(2298), 1, sym_argument_list, - STATE(4127), 1, + STATE(2299), 1, + sym_or_block, + STATE(4251), 1, sym_type_parameters, - ACTIONS(4942), 2, + ACTIONS(4948), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - ACTIONS(5020), 2, + ACTIONS(5024), 2, anon_sym_is, anon_sym_BANGis, - ACTIONS(5202), 2, + ACTIONS(5078), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(5214), 2, + ACTIONS(5084), 2, anon_sym_in, anon_sym_BANGin, - STATE(2761), 2, + STATE(2767), 2, sym_line_comment, sym_block_comment, - ACTIONS(5196), 3, + ACTIONS(5070), 3, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5200), 3, + ACTIONS(5074), 3, anon_sym_SLASH, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(5204), 4, + ACTIONS(5080), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(5198), 5, + ACTIONS(5072), 5, anon_sym_STAR, anon_sym_PERCENT, anon_sym_LT_LT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - [83003] = 28, + [82986] = 28, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(4932), 1, + ACTIONS(4938), 1, anon_sym_LPAREN, - ACTIONS(4934), 1, + ACTIONS(4940), 1, anon_sym_LBRACK, - ACTIONS(4936), 1, + ACTIONS(4942), 1, anon_sym_QMARK, - ACTIONS(4938), 1, + ACTIONS(4944), 1, anon_sym_BANG, - ACTIONS(4940), 1, + ACTIONS(4946), 1, anon_sym_LBRACK2, - ACTIONS(4944), 1, + ACTIONS(4950), 1, anon_sym_POUND_LBRACK, - ACTIONS(4994), 1, + ACTIONS(4996), 1, anon_sym_as, - ACTIONS(5008), 1, + ACTIONS(5012), 1, anon_sym_PLUS_PLUS, - ACTIONS(5010), 1, + ACTIONS(5014), 1, anon_sym_DASH_DASH, - ACTIONS(5018), 1, + ACTIONS(5022), 1, anon_sym_or, - ACTIONS(5208), 1, + ACTIONS(5328), 1, anon_sym_CARET, - ACTIONS(5210), 1, + ACTIONS(5330), 1, anon_sym_AMP_AMP, - ACTIONS(5212), 1, + ACTIONS(5332), 1, anon_sym_PIPE_PIPE, - ACTIONS(5402), 1, - anon_sym_LBRACE, - STATE(2396), 1, - sym_or_block, - STATE(2397), 1, + ACTIONS(5394), 1, + anon_sym_RPAREN, + STATE(2298), 1, sym_argument_list, - STATE(4127), 1, + STATE(2299), 1, + sym_or_block, + STATE(4251), 1, sym_type_parameters, - ACTIONS(4942), 2, + ACTIONS(4948), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - ACTIONS(5020), 2, + ACTIONS(5024), 2, anon_sym_is, anon_sym_BANGis, - ACTIONS(5202), 2, + ACTIONS(5324), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(5214), 2, + ACTIONS(5334), 2, anon_sym_in, anon_sym_BANGin, - STATE(2762), 2, + STATE(2768), 2, sym_line_comment, sym_block_comment, - ACTIONS(5196), 3, + ACTIONS(5318), 3, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5200), 3, + ACTIONS(5322), 3, anon_sym_SLASH, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(5204), 4, + ACTIONS(5326), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(5198), 5, + ACTIONS(5320), 5, anon_sym_STAR, anon_sym_PERCENT, anon_sym_LT_LT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - [83104] = 5, + [83087] = 28, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - STATE(2763), 2, + ACTIONS(4938), 1, + anon_sym_LPAREN, + ACTIONS(4940), 1, + anon_sym_LBRACK, + ACTIONS(4942), 1, + anon_sym_QMARK, + ACTIONS(4944), 1, + anon_sym_BANG, + ACTIONS(4946), 1, + anon_sym_LBRACK2, + ACTIONS(4950), 1, + anon_sym_POUND_LBRACK, + ACTIONS(4996), 1, + anon_sym_as, + ACTIONS(5012), 1, + anon_sym_PLUS_PLUS, + ACTIONS(5014), 1, + anon_sym_DASH_DASH, + ACTIONS(5022), 1, + anon_sym_or, + ACTIONS(5200), 1, + anon_sym_CARET, + ACTIONS(5202), 1, + anon_sym_AMP_AMP, + ACTIONS(5204), 1, + anon_sym_PIPE_PIPE, + ACTIONS(5396), 1, + anon_sym_LBRACE, + STATE(2298), 1, + sym_argument_list, + STATE(2299), 1, + sym_or_block, + STATE(4251), 1, + sym_type_parameters, + ACTIONS(4948), 2, + anon_sym_DOT, + anon_sym_QMARK_DOT, + ACTIONS(5024), 2, + anon_sym_is, + anon_sym_BANGis, + ACTIONS(5194), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(5206), 2, + anon_sym_in, + anon_sym_BANGin, + STATE(2769), 2, sym_line_comment, sym_block_comment, - ACTIONS(2691), 13, - anon_sym_DOT, + ACTIONS(5188), 3, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, + ACTIONS(5192), 3, anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - anon_sym_DOT_DOT, - ACTIONS(2689), 27, - anon_sym_as, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_LPAREN, - 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, + ACTIONS(5190), 5, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_AMP_CARET, + [83188] = 28, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(4938), 1, + anon_sym_LPAREN, + ACTIONS(4940), 1, anon_sym_LBRACK, + ACTIONS(4942), 1, + anon_sym_QMARK, + ACTIONS(4944), 1, + anon_sym_BANG, + ACTIONS(4946), 1, + anon_sym_LBRACK2, + ACTIONS(4950), 1, + anon_sym_POUND_LBRACK, + ACTIONS(4996), 1, + anon_sym_as, + ACTIONS(5012), 1, anon_sym_PLUS_PLUS, + ACTIONS(5014), 1, anon_sym_DASH_DASH, + ACTIONS(5022), 1, + anon_sym_or, + ACTIONS(5328), 1, anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, + ACTIONS(5330), 1, anon_sym_AMP_AMP, + ACTIONS(5332), 1, anon_sym_PIPE_PIPE, - anon_sym_or, + ACTIONS(5398), 1, + anon_sym_RPAREN, + STATE(2298), 1, + sym_argument_list, + STATE(2299), 1, + sym_or_block, + STATE(4251), 1, + sym_type_parameters, + ACTIONS(4948), 2, + anon_sym_DOT, anon_sym_QMARK_DOT, - anon_sym_POUND_LBRACK, + ACTIONS(5024), 2, anon_sym_is, anon_sym_BANGis, + ACTIONS(5324), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(5334), 2, anon_sym_in, anon_sym_BANGin, - [83159] = 6, + STATE(2770), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(5318), 3, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(5322), 3, + anon_sym_SLASH, + anon_sym_AMP, + anon_sym_GT_GT, + ACTIONS(5326), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(5320), 5, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_AMP_CARET, + [83289] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(2763), 1, - anon_sym_DOT, - STATE(2764), 2, + STATE(2771), 2, sym_line_comment, sym_block_comment, - ACTIONS(2761), 12, + ACTIONS(2806), 13, + anon_sym_DOT, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, @@ -261268,7 +261603,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_GT_GT, anon_sym_DOT_DOT, - ACTIONS(2759), 27, + ACTIONS(2804), 27, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -261296,430 +261631,528 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [83216] = 5, + [83344] = 28, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - STATE(2765), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(2761), 13, - anon_sym_DOT, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, + ACTIONS(47), 1, anon_sym_QMARK, + ACTIONS(85), 1, + anon_sym_map_LBRACK, + ACTIONS(87), 1, + anon_sym_chan, + ACTIONS(89), 1, + anon_sym_thread, + ACTIONS(91), 1, + anon_sym_atomic, + ACTIONS(571), 1, + anon_sym_fn, + ACTIONS(575), 1, + anon_sym_struct, + ACTIONS(3564), 1, + anon_sym_LPAREN, + ACTIONS(3566), 1, + anon_sym_STAR, + ACTIONS(5300), 1, + sym_identifier, + ACTIONS(5304), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(5306), 1, + anon_sym_mut, + ACTIONS(5308), 1, anon_sym_BANG, + ACTIONS(5310), 1, anon_sym_LBRACK2, + ACTIONS(5312), 1, anon_sym_AMP, - anon_sym_GT_GT, - anon_sym_DOT_DOT, - ACTIONS(2759), 27, - anon_sym_as, - anon_sym_LBRACE, - anon_sym_COMMA, + ACTIONS(5314), 1, + anon_sym_shared, + ACTIONS(5400), 1, + anon_sym_RPAREN, + STATE(2993), 1, + sym_mutability_modifiers, + STATE(3874), 1, + sym_type_parameter_declaration, + STATE(3875), 1, + sym_parameter_declaration, + STATE(4254), 1, + sym_plain_type, + STATE(4498), 1, + sym_reference_expression, + STATE(2772), 2, + sym_line_comment, + sym_block_comment, + STATE(3460), 2, + sym_type_reference_expression, + sym_qualified_type, + STATE(2360), 4, + sym__plain_type_without_special, + sym_multi_return_type, + sym_result_type, + sym_option_type, + STATE(2362), 12, + sym_anon_struct_type, + sym_fixed_array_type, + sym_array_type, + sym_pointer_type, + sym_wrong_pointer_type, + sym_map_type, + sym_channel_type, + sym_shared_type, + sym_thread_type, + sym_atomic_type, + sym_generic_type, + sym_function_type, + [83445] = 28, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(47), 1, + anon_sym_QMARK, + ACTIONS(85), 1, + anon_sym_map_LBRACK, + ACTIONS(87), 1, + anon_sym_chan, + ACTIONS(89), 1, + anon_sym_thread, + ACTIONS(91), 1, + anon_sym_atomic, + ACTIONS(571), 1, + anon_sym_fn, + ACTIONS(575), 1, + anon_sym_struct, + ACTIONS(3564), 1, anon_sym_LPAREN, + ACTIONS(3566), 1, anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, + ACTIONS(5300), 1, + sym_identifier, + ACTIONS(5304), 1, anon_sym_DOT_DOT_DOT, + ACTIONS(5306), 1, + anon_sym_mut, + ACTIONS(5308), 1, + anon_sym_BANG, + ACTIONS(5310), 1, + anon_sym_LBRACK2, + ACTIONS(5312), 1, + anon_sym_AMP, + ACTIONS(5314), 1, + anon_sym_shared, + ACTIONS(5402), 1, + anon_sym_RPAREN, + STATE(2993), 1, + sym_mutability_modifiers, + STATE(3870), 1, + sym_type_parameter_declaration, + STATE(3963), 1, + sym_parameter_declaration, + STATE(4254), 1, + sym_plain_type, + STATE(4498), 1, + sym_reference_expression, + STATE(2773), 2, + sym_line_comment, + sym_block_comment, + STATE(3460), 2, + sym_type_reference_expression, + sym_qualified_type, + STATE(2360), 4, + sym__plain_type_without_special, + sym_multi_return_type, + sym_result_type, + sym_option_type, + STATE(2362), 12, + sym_anon_struct_type, + sym_fixed_array_type, + sym_array_type, + sym_pointer_type, + sym_wrong_pointer_type, + sym_map_type, + sym_channel_type, + sym_shared_type, + sym_thread_type, + sym_atomic_type, + sym_generic_type, + sym_function_type, + [83546] = 28, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(4938), 1, + anon_sym_LPAREN, + ACTIONS(4940), 1, anon_sym_LBRACK, + ACTIONS(4942), 1, + anon_sym_QMARK, + ACTIONS(4944), 1, + anon_sym_BANG, + ACTIONS(4946), 1, + anon_sym_LBRACK2, + ACTIONS(4950), 1, + anon_sym_POUND_LBRACK, + ACTIONS(4996), 1, + anon_sym_as, + ACTIONS(5012), 1, anon_sym_PLUS_PLUS, + ACTIONS(5014), 1, anon_sym_DASH_DASH, + ACTIONS(5022), 1, + anon_sym_or, + ACTIONS(5328), 1, anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, + ACTIONS(5330), 1, anon_sym_AMP_AMP, + ACTIONS(5332), 1, anon_sym_PIPE_PIPE, - anon_sym_or, + ACTIONS(5404), 1, + anon_sym_RPAREN, + STATE(2298), 1, + sym_argument_list, + STATE(2299), 1, + sym_or_block, + STATE(4251), 1, + sym_type_parameters, + ACTIONS(4948), 2, + anon_sym_DOT, anon_sym_QMARK_DOT, - anon_sym_POUND_LBRACK, + ACTIONS(5024), 2, anon_sym_is, anon_sym_BANGis, + ACTIONS(5324), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(5334), 2, anon_sym_in, anon_sym_BANGin, - [83271] = 5, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_STAR, - STATE(2766), 2, + STATE(2774), 2, sym_line_comment, sym_block_comment, - ACTIONS(1845), 11, + ACTIONS(5318), 3, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, + ACTIONS(5322), 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(1843), 29, - anon_sym_DOT, - anon_sym_as, - anon_sym_LPAREN, - anon_sym_STAR, - anon_sym_PERCENT, + ACTIONS(5326), 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, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(5320), 5, + anon_sym_STAR, + anon_sym_PERCENT, anon_sym_LT_LT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_or, - anon_sym_QMARK_DOT, - anon_sym_POUND_LBRACK, - anon_sym_else, - anon_sym_DOLLARelse, - anon_sym_is, - anon_sym_BANGis, - anon_sym_in, - anon_sym_BANGin, - [83326] = 28, + [83647] = 28, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(4932), 1, + ACTIONS(4938), 1, anon_sym_LPAREN, - ACTIONS(4934), 1, + ACTIONS(4940), 1, anon_sym_LBRACK, - ACTIONS(4936), 1, + ACTIONS(4942), 1, anon_sym_QMARK, - ACTIONS(4938), 1, + ACTIONS(4944), 1, anon_sym_BANG, - ACTIONS(4940), 1, + ACTIONS(4946), 1, anon_sym_LBRACK2, - ACTIONS(4944), 1, + ACTIONS(4950), 1, anon_sym_POUND_LBRACK, - ACTIONS(4994), 1, + ACTIONS(4996), 1, anon_sym_as, - ACTIONS(5008), 1, + ACTIONS(5012), 1, anon_sym_PLUS_PLUS, - ACTIONS(5010), 1, + ACTIONS(5014), 1, anon_sym_DASH_DASH, - ACTIONS(5018), 1, + ACTIONS(5022), 1, anon_sym_or, - ACTIONS(5322), 1, + ACTIONS(5200), 1, anon_sym_CARET, - ACTIONS(5324), 1, + ACTIONS(5202), 1, anon_sym_AMP_AMP, - ACTIONS(5326), 1, + ACTIONS(5204), 1, anon_sym_PIPE_PIPE, - ACTIONS(5404), 1, - anon_sym_RPAREN, - STATE(2396), 1, - sym_or_block, - STATE(2397), 1, + ACTIONS(5406), 1, + anon_sym_LBRACE, + STATE(2298), 1, sym_argument_list, - STATE(4127), 1, + STATE(2299), 1, + sym_or_block, + STATE(4251), 1, sym_type_parameters, - ACTIONS(4942), 2, + ACTIONS(4948), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - ACTIONS(5020), 2, + ACTIONS(5024), 2, anon_sym_is, anon_sym_BANGis, - ACTIONS(5318), 2, + ACTIONS(5194), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(5328), 2, + ACTIONS(5206), 2, anon_sym_in, anon_sym_BANGin, - STATE(2767), 2, + STATE(2775), 2, sym_line_comment, sym_block_comment, - ACTIONS(5312), 3, - anon_sym_SLASH, - anon_sym_AMP, - anon_sym_GT_GT, - ACTIONS(5316), 3, + ACTIONS(5188), 3, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5320), 4, + ACTIONS(5192), 3, + anon_sym_SLASH, + anon_sym_AMP, + anon_sym_GT_GT, + ACTIONS(5196), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(5310), 5, + ACTIONS(5190), 5, anon_sym_STAR, anon_sym_PERCENT, anon_sym_LT_LT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - [83427] = 6, + [83748] = 28, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(1953), 1, - anon_sym_COMMA, - STATE(2768), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(2663), 13, - anon_sym_DOT, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, + ACTIONS(4938), 1, + anon_sym_LPAREN, + ACTIONS(4940), 1, + anon_sym_LBRACK, + ACTIONS(4942), 1, anon_sym_QMARK, + ACTIONS(4944), 1, anon_sym_BANG, + ACTIONS(4946), 1, anon_sym_LBRACK2, - anon_sym_AMP, - anon_sym_GT_GT, - anon_sym_DOT_DOT, - ACTIONS(2661), 26, + ACTIONS(4950), 1, + anon_sym_POUND_LBRACK, + ACTIONS(4996), 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(5012), 1, anon_sym_PLUS_PLUS, + ACTIONS(5014), 1, anon_sym_DASH_DASH, + ACTIONS(5022), 1, + anon_sym_or, + ACTIONS(5328), 1, anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, + ACTIONS(5330), 1, anon_sym_AMP_AMP, + ACTIONS(5332), 1, anon_sym_PIPE_PIPE, - anon_sym_or, + ACTIONS(5408), 1, + anon_sym_RPAREN, + STATE(2298), 1, + sym_argument_list, + STATE(2299), 1, + sym_or_block, + STATE(4251), 1, + sym_type_parameters, + ACTIONS(4948), 2, + anon_sym_DOT, anon_sym_QMARK_DOT, - anon_sym_POUND_LBRACK, + ACTIONS(5024), 2, anon_sym_is, anon_sym_BANGis, + ACTIONS(5324), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(5334), 2, anon_sym_in, anon_sym_BANGin, - [83484] = 5, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_STAR, - STATE(2769), 2, + STATE(2776), 2, sym_line_comment, sym_block_comment, - ACTIONS(3050), 13, - anon_sym_DOT, + ACTIONS(5318), 3, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, + ACTIONS(5322), 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(3048), 27, - anon_sym_as, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_STAR, - anon_sym_PERCENT, + ACTIONS(5326), 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(5320), 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, - [83539] = 19, + [83849] = 28, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(4932), 1, + ACTIONS(4938), 1, anon_sym_LPAREN, - ACTIONS(4934), 1, + ACTIONS(4940), 1, anon_sym_LBRACK, - ACTIONS(4936), 1, + ACTIONS(4942), 1, anon_sym_QMARK, - ACTIONS(4938), 1, + ACTIONS(4944), 1, anon_sym_BANG, - ACTIONS(4940), 1, + ACTIONS(4946), 1, anon_sym_LBRACK2, - ACTIONS(4944), 1, + ACTIONS(4950), 1, anon_sym_POUND_LBRACK, - ACTIONS(5208), 1, + ACTIONS(4996), 1, + anon_sym_as, + ACTIONS(5012), 1, + anon_sym_PLUS_PLUS, + ACTIONS(5014), 1, + anon_sym_DASH_DASH, + ACTIONS(5022), 1, + anon_sym_or, + ACTIONS(5200), 1, anon_sym_CARET, - STATE(2396), 1, - sym_or_block, - STATE(2397), 1, + ACTIONS(5202), 1, + anon_sym_AMP_AMP, + ACTIONS(5204), 1, + anon_sym_PIPE_PIPE, + ACTIONS(5410), 1, + anon_sym_LBRACE, + STATE(2298), 1, sym_argument_list, - STATE(4127), 1, + STATE(2299), 1, + sym_or_block, + STATE(4251), 1, sym_type_parameters, - ACTIONS(1769), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(4942), 2, + ACTIONS(4948), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - STATE(2770), 2, + ACTIONS(5024), 2, + anon_sym_is, + anon_sym_BANGis, + ACTIONS(5194), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(5206), 2, + anon_sym_in, + anon_sym_BANGin, + STATE(2777), 2, sym_line_comment, sym_block_comment, - ACTIONS(5196), 3, + ACTIONS(5188), 3, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5200), 3, + ACTIONS(5192), 3, anon_sym_SLASH, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(5198), 5, + ACTIONS(5196), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(5190), 5, anon_sym_STAR, anon_sym_PERCENT, anon_sym_LT_LT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(1767), 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, - [83622] = 28, + [83950] = 28, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(4932), 1, + ACTIONS(4938), 1, anon_sym_LPAREN, - ACTIONS(4934), 1, + ACTIONS(4940), 1, anon_sym_LBRACK, - ACTIONS(4936), 1, + ACTIONS(4942), 1, anon_sym_QMARK, - ACTIONS(4938), 1, + ACTIONS(4944), 1, anon_sym_BANG, - ACTIONS(4940), 1, + ACTIONS(4946), 1, anon_sym_LBRACK2, - ACTIONS(4944), 1, + ACTIONS(4950), 1, anon_sym_POUND_LBRACK, - ACTIONS(4994), 1, + ACTIONS(4996), 1, anon_sym_as, - ACTIONS(5008), 1, + ACTIONS(5012), 1, anon_sym_PLUS_PLUS, - ACTIONS(5010), 1, + ACTIONS(5014), 1, anon_sym_DASH_DASH, - ACTIONS(5018), 1, + ACTIONS(5022), 1, anon_sym_or, - ACTIONS(5322), 1, + ACTIONS(5200), 1, anon_sym_CARET, - ACTIONS(5324), 1, + ACTIONS(5202), 1, anon_sym_AMP_AMP, - ACTIONS(5326), 1, + ACTIONS(5204), 1, anon_sym_PIPE_PIPE, - ACTIONS(5406), 1, - anon_sym_RPAREN, - STATE(2396), 1, - sym_or_block, - STATE(2397), 1, + ACTIONS(5412), 1, + anon_sym_LBRACE, + STATE(2298), 1, sym_argument_list, - STATE(4127), 1, + STATE(2299), 1, + sym_or_block, + STATE(4251), 1, sym_type_parameters, - ACTIONS(4942), 2, + ACTIONS(4948), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - ACTIONS(5020), 2, + ACTIONS(5024), 2, anon_sym_is, anon_sym_BANGis, - ACTIONS(5318), 2, + ACTIONS(5194), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(5328), 2, + ACTIONS(5206), 2, anon_sym_in, anon_sym_BANGin, - STATE(2771), 2, + STATE(2778), 2, sym_line_comment, sym_block_comment, - ACTIONS(5312), 3, - anon_sym_SLASH, - anon_sym_AMP, - anon_sym_GT_GT, - ACTIONS(5316), 3, + ACTIONS(5188), 3, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5320), 4, + ACTIONS(5192), 3, + anon_sym_SLASH, + anon_sym_AMP, + anon_sym_GT_GT, + ACTIONS(5196), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(5310), 5, + ACTIONS(5190), 5, anon_sym_STAR, anon_sym_PERCENT, anon_sym_LT_LT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - [83723] = 6, + [84051] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(5408), 2, - anon_sym_LBRACE, - anon_sym_COMMA, - STATE(2772), 2, + ACTIONS(1891), 1, + anon_sym_DOT, + STATE(2779), 2, sym_line_comment, sym_block_comment, - ACTIONS(2778), 13, - anon_sym_DOT, + ACTIONS(2475), 12, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, @@ -261732,8 +262165,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_GT_GT, anon_sym_DOT_DOT, - ACTIONS(2776), 25, + ACTIONS(2473), 27, anon_sym_as, + anon_sym_LBRACE, + anon_sym_COMMA, anon_sym_LPAREN, anon_sym_STAR, anon_sym_PERCENT, @@ -261758,7 +262193,80 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [83780] = 28, + [84108] = 28, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(4719), 1, + anon_sym_LPAREN, + ACTIONS(4721), 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_POUND_LBRACK, + ACTIONS(4731), 1, + anon_sym_as, + ACTIONS(4741), 1, + anon_sym_PLUS_PLUS, + ACTIONS(4743), 1, + anon_sym_DASH_DASH, + ACTIONS(4745), 1, + anon_sym_AMP_AMP, + ACTIONS(4747), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4749), 1, + anon_sym_or, + ACTIONS(5234), 1, + anon_sym_CARET, + ACTIONS(5236), 1, + anon_sym_LT_DASH, + STATE(2080), 1, + sym_argument_list, + STATE(2081), 1, + sym_or_block, + STATE(4267), 1, + sym_type_parameters, + ACTIONS(4717), 2, + anon_sym_DOT, + anon_sym_QMARK_DOT, + ACTIONS(4737), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(4751), 2, + anon_sym_is, + anon_sym_BANGis, + ACTIONS(4753), 2, + anon_sym_in, + anon_sym_BANGin, + STATE(2780), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(4733), 3, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4735), 3, + anon_sym_SLASH, + anon_sym_AMP, + anon_sym_GT_GT, + ACTIONS(4739), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(5230), 5, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_AMP_CARET, + [84209] = 28, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, @@ -261773,52 +262281,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_thread, ACTIONS(91), 1, anon_sym_atomic, - ACTIONS(603), 1, + ACTIONS(571), 1, anon_sym_fn, - ACTIONS(607), 1, + ACTIONS(575), 1, anon_sym_struct, - ACTIONS(3586), 1, + ACTIONS(3564), 1, anon_sym_LPAREN, - ACTIONS(3588), 1, + ACTIONS(3566), 1, anon_sym_STAR, - ACTIONS(5294), 1, + ACTIONS(5300), 1, sym_identifier, - ACTIONS(5298), 1, + ACTIONS(5304), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(5300), 1, + ACTIONS(5306), 1, anon_sym_mut, - ACTIONS(5302), 1, + ACTIONS(5308), 1, anon_sym_BANG, - ACTIONS(5304), 1, + ACTIONS(5310), 1, anon_sym_LBRACK2, - ACTIONS(5306), 1, + ACTIONS(5312), 1, anon_sym_AMP, - ACTIONS(5308), 1, + ACTIONS(5314), 1, anon_sym_shared, - ACTIONS(5410), 1, + ACTIONS(5414), 1, anon_sym_RPAREN, - STATE(2984), 1, + STATE(2993), 1, sym_mutability_modifiers, - STATE(3861), 1, + STATE(3766), 1, sym_parameter_declaration, - STATE(3862), 1, + STATE(3767), 1, sym_type_parameter_declaration, - STATE(4265), 1, + STATE(4254), 1, sym_plain_type, - STATE(4495), 1, + STATE(4498), 1, sym_reference_expression, - STATE(2773), 2, + STATE(2781), 2, sym_line_comment, sym_block_comment, - STATE(3541), 2, + STATE(3460), 2, sym_type_reference_expression, sym_qualified_type, - STATE(2302), 4, + STATE(2360), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(2303), 12, + STATE(2362), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -261831,622 +262339,518 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [83881] = 28, + [84310] = 28, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(4932), 1, - anon_sym_LPAREN, - ACTIONS(4934), 1, - anon_sym_LBRACK, - ACTIONS(4936), 1, + ACTIONS(47), 1, anon_sym_QMARK, - ACTIONS(4938), 1, + ACTIONS(85), 1, + anon_sym_map_LBRACK, + ACTIONS(87), 1, + anon_sym_chan, + ACTIONS(89), 1, + anon_sym_thread, + ACTIONS(91), 1, + anon_sym_atomic, + ACTIONS(571), 1, + anon_sym_fn, + ACTIONS(575), 1, + anon_sym_struct, + ACTIONS(3564), 1, + anon_sym_LPAREN, + ACTIONS(3566), 1, + anon_sym_STAR, + ACTIONS(5302), 1, + anon_sym_RPAREN, + ACTIONS(5304), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(5306), 1, + anon_sym_mut, + ACTIONS(5308), 1, anon_sym_BANG, - ACTIONS(4940), 1, + ACTIONS(5310), 1, anon_sym_LBRACK2, - ACTIONS(4944), 1, - anon_sym_POUND_LBRACK, - ACTIONS(4994), 1, - anon_sym_as, - ACTIONS(5008), 1, - anon_sym_PLUS_PLUS, - ACTIONS(5010), 1, - anon_sym_DASH_DASH, - ACTIONS(5018), 1, - anon_sym_or, - ACTIONS(5208), 1, - anon_sym_CARET, - ACTIONS(5210), 1, - anon_sym_AMP_AMP, - ACTIONS(5212), 1, - anon_sym_PIPE_PIPE, - ACTIONS(5412), 1, - anon_sym_LBRACE, - STATE(2396), 1, - sym_or_block, - STATE(2397), 1, - sym_argument_list, - STATE(4127), 1, - sym_type_parameters, - ACTIONS(4942), 2, - anon_sym_DOT, - anon_sym_QMARK_DOT, - ACTIONS(5020), 2, - anon_sym_is, - anon_sym_BANGis, - ACTIONS(5202), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(5214), 2, - anon_sym_in, - anon_sym_BANGin, - STATE(2774), 2, + ACTIONS(5312), 1, + anon_sym_AMP, + ACTIONS(5314), 1, + anon_sym_shared, + ACTIONS(5416), 1, + sym_identifier, + STATE(2963), 1, + sym_mutability_modifiers, + STATE(3760), 1, + sym_parameter_declaration, + STATE(3768), 1, + sym_type_parameter_declaration, + STATE(4254), 1, + sym_plain_type, + STATE(4498), 1, + sym_reference_expression, + STATE(2782), 2, sym_line_comment, sym_block_comment, - ACTIONS(5196), 3, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(5200), 3, - anon_sym_SLASH, - anon_sym_AMP, - anon_sym_GT_GT, - ACTIONS(5204), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(5198), 5, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - [83982] = 28, + STATE(3460), 2, + sym_type_reference_expression, + sym_qualified_type, + STATE(2360), 4, + sym__plain_type_without_special, + sym_multi_return_type, + sym_result_type, + sym_option_type, + STATE(2362), 12, + sym_anon_struct_type, + sym_fixed_array_type, + sym_array_type, + sym_pointer_type, + sym_wrong_pointer_type, + sym_map_type, + sym_channel_type, + sym_shared_type, + sym_thread_type, + sym_atomic_type, + sym_generic_type, + sym_function_type, + [84411] = 28, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(4932), 1, + ACTIONS(4938), 1, anon_sym_LPAREN, - ACTIONS(4934), 1, + ACTIONS(4940), 1, anon_sym_LBRACK, - ACTIONS(4936), 1, + ACTIONS(4942), 1, anon_sym_QMARK, - ACTIONS(4938), 1, + ACTIONS(4944), 1, anon_sym_BANG, - ACTIONS(4940), 1, + ACTIONS(4946), 1, anon_sym_LBRACK2, - ACTIONS(4944), 1, + ACTIONS(4950), 1, anon_sym_POUND_LBRACK, - ACTIONS(4994), 1, + ACTIONS(4996), 1, anon_sym_as, - ACTIONS(5008), 1, + ACTIONS(5012), 1, anon_sym_PLUS_PLUS, - ACTIONS(5010), 1, + ACTIONS(5014), 1, anon_sym_DASH_DASH, - ACTIONS(5018), 1, + ACTIONS(5022), 1, anon_sym_or, - ACTIONS(5208), 1, + ACTIONS(5328), 1, anon_sym_CARET, - ACTIONS(5210), 1, + ACTIONS(5330), 1, anon_sym_AMP_AMP, - ACTIONS(5212), 1, + ACTIONS(5332), 1, anon_sym_PIPE_PIPE, - ACTIONS(5414), 1, - anon_sym_LBRACE, - STATE(2396), 1, - sym_or_block, - STATE(2397), 1, + ACTIONS(5418), 1, + anon_sym_RPAREN, + STATE(2298), 1, sym_argument_list, - STATE(4127), 1, + STATE(2299), 1, + sym_or_block, + STATE(4251), 1, sym_type_parameters, - ACTIONS(4942), 2, + ACTIONS(4948), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - ACTIONS(5020), 2, + ACTIONS(5024), 2, anon_sym_is, anon_sym_BANGis, - ACTIONS(5202), 2, + ACTIONS(5324), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(5214), 2, + ACTIONS(5334), 2, anon_sym_in, anon_sym_BANGin, - STATE(2775), 2, + STATE(2783), 2, sym_line_comment, sym_block_comment, - ACTIONS(5196), 3, + ACTIONS(5318), 3, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5200), 3, + ACTIONS(5322), 3, anon_sym_SLASH, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(5204), 4, + ACTIONS(5326), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(5198), 5, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - [84083] = 7, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_STAR, - ACTIONS(5416), 1, - anon_sym_else, - STATE(2847), 1, - sym_else_branch, - STATE(2776), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(1799), 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(1797), 27, - anon_sym_DOT, - anon_sym_as, - anon_sym_LPAREN, + ACTIONS(5320), 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, - [84142] = 28, + [84512] = 28, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(4932), 1, + ACTIONS(4938), 1, anon_sym_LPAREN, - ACTIONS(4934), 1, + ACTIONS(4940), 1, anon_sym_LBRACK, - ACTIONS(4936), 1, + ACTIONS(4942), 1, anon_sym_QMARK, - ACTIONS(4938), 1, + ACTIONS(4944), 1, anon_sym_BANG, - ACTIONS(4940), 1, + ACTIONS(4946), 1, anon_sym_LBRACK2, - ACTIONS(4944), 1, + ACTIONS(4950), 1, anon_sym_POUND_LBRACK, - ACTIONS(4994), 1, + ACTIONS(4996), 1, anon_sym_as, - ACTIONS(5008), 1, + ACTIONS(5012), 1, anon_sym_PLUS_PLUS, - ACTIONS(5010), 1, + ACTIONS(5014), 1, anon_sym_DASH_DASH, - ACTIONS(5018), 1, + ACTIONS(5022), 1, anon_sym_or, - ACTIONS(5322), 1, + ACTIONS(5328), 1, anon_sym_CARET, - ACTIONS(5324), 1, + ACTIONS(5330), 1, anon_sym_AMP_AMP, - ACTIONS(5326), 1, + ACTIONS(5332), 1, anon_sym_PIPE_PIPE, - ACTIONS(5418), 1, + ACTIONS(5420), 1, anon_sym_RPAREN, - STATE(2396), 1, - sym_or_block, - STATE(2397), 1, + STATE(2298), 1, sym_argument_list, - STATE(4127), 1, + STATE(2299), 1, + sym_or_block, + STATE(4251), 1, sym_type_parameters, - ACTIONS(4942), 2, + ACTIONS(4948), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - ACTIONS(5020), 2, + ACTIONS(5024), 2, anon_sym_is, anon_sym_BANGis, - ACTIONS(5318), 2, + ACTIONS(5324), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(5328), 2, + ACTIONS(5334), 2, anon_sym_in, anon_sym_BANGin, - STATE(2777), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(5312), 3, - anon_sym_SLASH, - anon_sym_AMP, - anon_sym_GT_GT, - ACTIONS(5316), 3, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(5320), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(5310), 5, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - [84243] = 7, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_STAR, - ACTIONS(5416), 1, - anon_sym_else, - STATE(2871), 1, - sym_else_branch, - STATE(2778), 2, + STATE(2784), 2, sym_line_comment, sym_block_comment, - ACTIONS(1805), 11, + ACTIONS(5318), 3, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, + ACTIONS(5322), 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(1803), 27, - anon_sym_DOT, - anon_sym_as, - anon_sym_LPAREN, - anon_sym_STAR, - anon_sym_PERCENT, + ACTIONS(5326), 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(5320), 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, - [84302] = 28, + [84613] = 28, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(4932), 1, + ACTIONS(4938), 1, anon_sym_LPAREN, - ACTIONS(4934), 1, + ACTIONS(4940), 1, anon_sym_LBRACK, - ACTIONS(4936), 1, + ACTIONS(4942), 1, anon_sym_QMARK, - ACTIONS(4938), 1, + ACTIONS(4944), 1, anon_sym_BANG, - ACTIONS(4940), 1, + ACTIONS(4946), 1, anon_sym_LBRACK2, - ACTIONS(4944), 1, + ACTIONS(4950), 1, anon_sym_POUND_LBRACK, - ACTIONS(4994), 1, + ACTIONS(4996), 1, anon_sym_as, - ACTIONS(5008), 1, + ACTIONS(5012), 1, anon_sym_PLUS_PLUS, - ACTIONS(5010), 1, + ACTIONS(5014), 1, anon_sym_DASH_DASH, - ACTIONS(5018), 1, + ACTIONS(5022), 1, anon_sym_or, - ACTIONS(5322), 1, + ACTIONS(5328), 1, anon_sym_CARET, - ACTIONS(5324), 1, + ACTIONS(5330), 1, anon_sym_AMP_AMP, - ACTIONS(5326), 1, + ACTIONS(5332), 1, anon_sym_PIPE_PIPE, - ACTIONS(5420), 1, + ACTIONS(5422), 1, anon_sym_RPAREN, - STATE(2396), 1, - sym_or_block, - STATE(2397), 1, + STATE(2298), 1, sym_argument_list, - STATE(4127), 1, + STATE(2299), 1, + sym_or_block, + STATE(4251), 1, sym_type_parameters, - ACTIONS(4942), 2, + ACTIONS(4948), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - ACTIONS(5020), 2, + ACTIONS(5024), 2, anon_sym_is, anon_sym_BANGis, - ACTIONS(5318), 2, + ACTIONS(5324), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(5328), 2, + ACTIONS(5334), 2, anon_sym_in, anon_sym_BANGin, - STATE(2779), 2, + STATE(2785), 2, sym_line_comment, sym_block_comment, - ACTIONS(5312), 3, - anon_sym_SLASH, - anon_sym_AMP, - anon_sym_GT_GT, - ACTIONS(5316), 3, + ACTIONS(5318), 3, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5320), 4, + ACTIONS(5322), 3, + anon_sym_SLASH, + anon_sym_AMP, + anon_sym_GT_GT, + ACTIONS(5326), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(5310), 5, + ACTIONS(5320), 5, anon_sym_STAR, anon_sym_PERCENT, anon_sym_LT_LT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - [84403] = 28, + [84714] = 28, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(1787), 1, + ACTIONS(1771), 1, anon_sym_LBRACE, - ACTIONS(4932), 1, + ACTIONS(4938), 1, anon_sym_LPAREN, - ACTIONS(4934), 1, + ACTIONS(4940), 1, anon_sym_LBRACK, - ACTIONS(4936), 1, + ACTIONS(4942), 1, anon_sym_QMARK, - ACTIONS(4938), 1, + ACTIONS(4944), 1, anon_sym_BANG, - ACTIONS(4940), 1, + ACTIONS(4946), 1, anon_sym_LBRACK2, - ACTIONS(4944), 1, + ACTIONS(4950), 1, anon_sym_POUND_LBRACK, - ACTIONS(4994), 1, + ACTIONS(4996), 1, anon_sym_as, - ACTIONS(5008), 1, + ACTIONS(5012), 1, anon_sym_PLUS_PLUS, - ACTIONS(5010), 1, + ACTIONS(5014), 1, anon_sym_DASH_DASH, - ACTIONS(5018), 1, + ACTIONS(5022), 1, anon_sym_or, - ACTIONS(5208), 1, + ACTIONS(5200), 1, anon_sym_CARET, - ACTIONS(5210), 1, + ACTIONS(5202), 1, anon_sym_AMP_AMP, - ACTIONS(5212), 1, + ACTIONS(5204), 1, anon_sym_PIPE_PIPE, - STATE(2396), 1, - sym_or_block, - STATE(2397), 1, + STATE(2298), 1, sym_argument_list, - STATE(4127), 1, + STATE(2299), 1, + sym_or_block, + STATE(4251), 1, sym_type_parameters, - ACTIONS(4942), 2, + ACTIONS(4948), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - ACTIONS(5202), 2, + ACTIONS(5024), 2, + anon_sym_is, + anon_sym_BANGis, + ACTIONS(5194), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(5214), 2, + ACTIONS(5206), 2, anon_sym_in, anon_sym_BANGin, - ACTIONS(5246), 2, - anon_sym_is, - anon_sym_BANGis, - STATE(2780), 2, + STATE(2786), 2, sym_line_comment, sym_block_comment, - ACTIONS(5196), 3, + ACTIONS(5188), 3, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5200), 3, + ACTIONS(5192), 3, anon_sym_SLASH, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(5204), 4, + ACTIONS(5196), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(5198), 5, + ACTIONS(5190), 5, anon_sym_STAR, anon_sym_PERCENT, anon_sym_LT_LT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - [84504] = 28, + [84815] = 28, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(4932), 1, + ACTIONS(4938), 1, anon_sym_LPAREN, - ACTIONS(4934), 1, + ACTIONS(4940), 1, anon_sym_LBRACK, - ACTIONS(4936), 1, + ACTIONS(4942), 1, anon_sym_QMARK, - ACTIONS(4938), 1, + ACTIONS(4944), 1, anon_sym_BANG, - ACTIONS(4940), 1, + ACTIONS(4946), 1, anon_sym_LBRACK2, - ACTIONS(4944), 1, + ACTIONS(4950), 1, anon_sym_POUND_LBRACK, - ACTIONS(4994), 1, + ACTIONS(4996), 1, anon_sym_as, - ACTIONS(5008), 1, + ACTIONS(5012), 1, anon_sym_PLUS_PLUS, - ACTIONS(5010), 1, + ACTIONS(5014), 1, anon_sym_DASH_DASH, - ACTIONS(5018), 1, + ACTIONS(5022), 1, anon_sym_or, - ACTIONS(5322), 1, + ACTIONS(5076), 1, anon_sym_CARET, - ACTIONS(5324), 1, + ACTIONS(5082), 1, anon_sym_AMP_AMP, - ACTIONS(5326), 1, + ACTIONS(5114), 1, anon_sym_PIPE_PIPE, - ACTIONS(5422), 1, - anon_sym_RPAREN, - STATE(2396), 1, - sym_or_block, - STATE(2397), 1, + ACTIONS(5424), 1, + anon_sym_RBRACK, + STATE(2298), 1, sym_argument_list, - STATE(4127), 1, + STATE(2299), 1, + sym_or_block, + STATE(4251), 1, sym_type_parameters, - ACTIONS(4942), 2, + ACTIONS(4948), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - ACTIONS(5020), 2, + ACTIONS(5024), 2, anon_sym_is, anon_sym_BANGis, - ACTIONS(5318), 2, + ACTIONS(5078), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(5328), 2, + ACTIONS(5084), 2, anon_sym_in, anon_sym_BANGin, - STATE(2781), 2, + STATE(2787), 2, sym_line_comment, sym_block_comment, - ACTIONS(5312), 3, - anon_sym_SLASH, - anon_sym_AMP, - anon_sym_GT_GT, - ACTIONS(5316), 3, + ACTIONS(5070), 3, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5320), 4, + ACTIONS(5074), 3, + anon_sym_SLASH, + anon_sym_AMP, + anon_sym_GT_GT, + ACTIONS(5080), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(5310), 5, + ACTIONS(5072), 5, anon_sym_STAR, anon_sym_PERCENT, anon_sym_LT_LT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - [84605] = 28, + [84916] = 28, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(4932), 1, + ACTIONS(1793), 1, + anon_sym_LBRACE, + ACTIONS(4938), 1, anon_sym_LPAREN, - ACTIONS(4934), 1, + ACTIONS(4940), 1, anon_sym_LBRACK, - ACTIONS(4936), 1, + ACTIONS(4942), 1, anon_sym_QMARK, - ACTIONS(4938), 1, + ACTIONS(4944), 1, anon_sym_BANG, - ACTIONS(4940), 1, + ACTIONS(4946), 1, anon_sym_LBRACK2, - ACTIONS(4944), 1, + ACTIONS(4950), 1, anon_sym_POUND_LBRACK, - ACTIONS(4994), 1, + ACTIONS(4996), 1, anon_sym_as, - ACTIONS(5008), 1, + ACTIONS(5012), 1, anon_sym_PLUS_PLUS, - ACTIONS(5010), 1, + ACTIONS(5014), 1, anon_sym_DASH_DASH, - ACTIONS(5018), 1, + ACTIONS(5022), 1, anon_sym_or, - ACTIONS(5322), 1, + ACTIONS(5200), 1, anon_sym_CARET, - ACTIONS(5324), 1, + ACTIONS(5202), 1, anon_sym_AMP_AMP, - ACTIONS(5326), 1, + ACTIONS(5204), 1, anon_sym_PIPE_PIPE, - ACTIONS(5424), 1, - anon_sym_RPAREN, - STATE(2396), 1, - sym_or_block, - STATE(2397), 1, + STATE(2298), 1, sym_argument_list, - STATE(4127), 1, + STATE(2299), 1, + sym_or_block, + STATE(4251), 1, sym_type_parameters, - ACTIONS(4942), 2, + ACTIONS(4948), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - ACTIONS(5020), 2, + ACTIONS(5024), 2, anon_sym_is, anon_sym_BANGis, - ACTIONS(5318), 2, + ACTIONS(5194), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(5328), 2, + ACTIONS(5206), 2, anon_sym_in, anon_sym_BANGin, - STATE(2782), 2, + STATE(2788), 2, sym_line_comment, sym_block_comment, - ACTIONS(5312), 3, - anon_sym_SLASH, - anon_sym_AMP, - anon_sym_GT_GT, - ACTIONS(5316), 3, + ACTIONS(5188), 3, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5320), 4, + ACTIONS(5192), 3, + anon_sym_SLASH, + anon_sym_AMP, + anon_sym_GT_GT, + ACTIONS(5196), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(5310), 5, + ACTIONS(5190), 5, anon_sym_STAR, anon_sym_PERCENT, anon_sym_LT_LT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - [84706] = 28, + [85017] = 28, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, @@ -262461,52 +262865,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_thread, ACTIONS(91), 1, anon_sym_atomic, - ACTIONS(603), 1, + ACTIONS(571), 1, anon_sym_fn, - ACTIONS(607), 1, + ACTIONS(575), 1, anon_sym_struct, - ACTIONS(3586), 1, + ACTIONS(3564), 1, anon_sym_LPAREN, - ACTIONS(3588), 1, + ACTIONS(3566), 1, anon_sym_STAR, - ACTIONS(5294), 1, + ACTIONS(5300), 1, sym_identifier, - ACTIONS(5298), 1, + ACTIONS(5304), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(5300), 1, + ACTIONS(5306), 1, anon_sym_mut, - ACTIONS(5302), 1, + ACTIONS(5308), 1, anon_sym_BANG, - ACTIONS(5304), 1, + ACTIONS(5310), 1, anon_sym_LBRACK2, - ACTIONS(5306), 1, + ACTIONS(5312), 1, anon_sym_AMP, - ACTIONS(5308), 1, + ACTIONS(5314), 1, anon_sym_shared, ACTIONS(5426), 1, anon_sym_RPAREN, - STATE(2984), 1, + STATE(2993), 1, sym_mutability_modifiers, - STATE(3958), 1, + STATE(3961), 1, sym_parameter_declaration, - STATE(3959), 1, + STATE(3962), 1, sym_type_parameter_declaration, - STATE(4265), 1, + STATE(4254), 1, sym_plain_type, - STATE(4495), 1, + STATE(4498), 1, sym_reference_expression, - STATE(2783), 2, + STATE(2789), 2, sym_line_comment, sym_block_comment, - STATE(3541), 2, + STATE(3460), 2, sym_type_reference_expression, sym_qualified_type, - STATE(2302), 4, + STATE(2360), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(2303), 12, + STATE(2362), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -262519,459 +262923,632 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [84807] = 22, + [85118] = 28, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(4932), 1, + ACTIONS(4938), 1, anon_sym_LPAREN, - ACTIONS(4934), 1, + ACTIONS(4940), 1, anon_sym_LBRACK, - ACTIONS(4936), 1, + ACTIONS(4942), 1, anon_sym_QMARK, - ACTIONS(4938), 1, + ACTIONS(4944), 1, anon_sym_BANG, - ACTIONS(4940), 1, + ACTIONS(4946), 1, anon_sym_LBRACK2, - ACTIONS(4944), 1, + ACTIONS(4950), 1, anon_sym_POUND_LBRACK, - ACTIONS(5208), 1, + ACTIONS(4996), 1, + anon_sym_as, + ACTIONS(5012), 1, + anon_sym_PLUS_PLUS, + ACTIONS(5014), 1, + anon_sym_DASH_DASH, + ACTIONS(5022), 1, + anon_sym_or, + ACTIONS(5328), 1, anon_sym_CARET, - ACTIONS(5210), 1, + ACTIONS(5330), 1, anon_sym_AMP_AMP, - STATE(2396), 1, - sym_or_block, - STATE(2397), 1, + ACTIONS(5332), 1, + anon_sym_PIPE_PIPE, + ACTIONS(5428), 1, + anon_sym_RPAREN, + STATE(2298), 1, sym_argument_list, - STATE(4127), 1, + STATE(2299), 1, + sym_or_block, + STATE(4251), 1, sym_type_parameters, - ACTIONS(4942), 2, + ACTIONS(4948), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - ACTIONS(5202), 2, + ACTIONS(5024), 2, + anon_sym_is, + anon_sym_BANGis, + ACTIONS(5324), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(5214), 2, + ACTIONS(5334), 2, anon_sym_in, anon_sym_BANGin, - STATE(2784), 2, + STATE(2790), 2, sym_line_comment, sym_block_comment, - ACTIONS(5196), 3, + ACTIONS(5318), 3, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5200), 3, + ACTIONS(5322), 3, anon_sym_SLASH, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(5204), 4, + ACTIONS(5326), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(5198), 5, + ACTIONS(5320), 5, anon_sym_STAR, anon_sym_PERCENT, anon_sym_LT_LT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(1783), 8, + [85219] = 6, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + STATE(2791), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(1894), 3, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_LBRACK, + ACTIONS(1889), 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(1887), 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_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, + [85276] = 6, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(1989), 2, anon_sym_LBRACE, + anon_sym_COMMA, + STATE(2792), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(2676), 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(2674), 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, - [84896] = 28, + anon_sym_in, + anon_sym_BANGin, + [85333] = 28, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(4932), 1, + ACTIONS(4938), 1, anon_sym_LPAREN, - ACTIONS(4934), 1, + ACTIONS(4940), 1, anon_sym_LBRACK, - ACTIONS(4936), 1, + ACTIONS(4942), 1, anon_sym_QMARK, - ACTIONS(4938), 1, + ACTIONS(4944), 1, anon_sym_BANG, - ACTIONS(4940), 1, + ACTIONS(4946), 1, anon_sym_LBRACK2, - ACTIONS(4944), 1, + ACTIONS(4950), 1, anon_sym_POUND_LBRACK, - ACTIONS(4994), 1, + ACTIONS(4996), 1, anon_sym_as, - ACTIONS(5008), 1, + ACTIONS(5012), 1, anon_sym_PLUS_PLUS, - ACTIONS(5010), 1, + ACTIONS(5014), 1, anon_sym_DASH_DASH, - ACTIONS(5018), 1, + ACTIONS(5022), 1, anon_sym_or, - ACTIONS(5322), 1, + ACTIONS(5328), 1, anon_sym_CARET, - ACTIONS(5324), 1, + ACTIONS(5330), 1, anon_sym_AMP_AMP, - ACTIONS(5326), 1, + ACTIONS(5332), 1, anon_sym_PIPE_PIPE, - ACTIONS(5428), 1, + ACTIONS(5430), 1, anon_sym_RPAREN, - STATE(2396), 1, - sym_or_block, - STATE(2397), 1, + STATE(2298), 1, sym_argument_list, - STATE(4127), 1, + STATE(2299), 1, + sym_or_block, + STATE(4251), 1, sym_type_parameters, - ACTIONS(4942), 2, + ACTIONS(4948), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - ACTIONS(5020), 2, + ACTIONS(5024), 2, anon_sym_is, anon_sym_BANGis, - ACTIONS(5318), 2, + ACTIONS(5324), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(5328), 2, + ACTIONS(5334), 2, anon_sym_in, anon_sym_BANGin, - STATE(2785), 2, + STATE(2793), 2, sym_line_comment, sym_block_comment, - ACTIONS(5312), 3, - anon_sym_SLASH, - anon_sym_AMP, - anon_sym_GT_GT, - ACTIONS(5316), 3, + ACTIONS(5318), 3, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5320), 4, + ACTIONS(5322), 3, + anon_sym_SLASH, + anon_sym_AMP, + anon_sym_GT_GT, + ACTIONS(5326), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(5310), 5, + ACTIONS(5320), 5, anon_sym_STAR, anon_sym_PERCENT, anon_sym_LT_LT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - [84997] = 5, + [85434] = 28, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - STATE(2786), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(2289), 13, - anon_sym_DOT, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, + ACTIONS(47), 1, anon_sym_QMARK, + ACTIONS(85), 1, + anon_sym_map_LBRACK, + ACTIONS(87), 1, + anon_sym_chan, + ACTIONS(89), 1, + anon_sym_thread, + ACTIONS(91), 1, + anon_sym_atomic, + ACTIONS(571), 1, + anon_sym_fn, + ACTIONS(575), 1, + anon_sym_struct, + ACTIONS(3564), 1, + anon_sym_LPAREN, + ACTIONS(3566), 1, + anon_sym_STAR, + ACTIONS(5300), 1, + sym_identifier, + ACTIONS(5304), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(5306), 1, + anon_sym_mut, + ACTIONS(5308), 1, anon_sym_BANG, + ACTIONS(5310), 1, anon_sym_LBRACK2, + ACTIONS(5312), 1, anon_sym_AMP, - anon_sym_GT_GT, - anon_sym_DOT_DOT, - ACTIONS(2287), 27, - anon_sym_as, - anon_sym_LBRACE, - anon_sym_COMMA, + ACTIONS(5314), 1, + anon_sym_shared, + ACTIONS(5432), 1, + anon_sym_RPAREN, + STATE(2993), 1, + sym_mutability_modifiers, + STATE(3864), 1, + sym_parameter_declaration, + STATE(3865), 1, + sym_type_parameter_declaration, + STATE(4254), 1, + sym_plain_type, + STATE(4498), 1, + sym_reference_expression, + STATE(2794), 2, + sym_line_comment, + sym_block_comment, + STATE(3460), 2, + sym_type_reference_expression, + sym_qualified_type, + STATE(2360), 4, + sym__plain_type_without_special, + sym_multi_return_type, + sym_result_type, + sym_option_type, + STATE(2362), 12, + sym_anon_struct_type, + sym_fixed_array_type, + sym_array_type, + sym_pointer_type, + sym_wrong_pointer_type, + sym_map_type, + sym_channel_type, + sym_shared_type, + sym_thread_type, + sym_atomic_type, + sym_generic_type, + sym_function_type, + [85535] = 28, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(4938), 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(4940), 1, anon_sym_LBRACK, + ACTIONS(4942), 1, + anon_sym_QMARK, + ACTIONS(4944), 1, + anon_sym_BANG, + ACTIONS(4946), 1, + anon_sym_LBRACK2, + ACTIONS(4950), 1, + anon_sym_POUND_LBRACK, + ACTIONS(4996), 1, + anon_sym_as, + ACTIONS(5012), 1, anon_sym_PLUS_PLUS, + ACTIONS(5014), 1, anon_sym_DASH_DASH, + ACTIONS(5022), 1, + anon_sym_or, + ACTIONS(5328), 1, anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, + ACTIONS(5330), 1, anon_sym_AMP_AMP, + ACTIONS(5332), 1, anon_sym_PIPE_PIPE, - anon_sym_or, + ACTIONS(5434), 1, + anon_sym_RPAREN, + STATE(2298), 1, + sym_argument_list, + STATE(2299), 1, + sym_or_block, + STATE(4251), 1, + sym_type_parameters, + ACTIONS(4948), 2, + anon_sym_DOT, anon_sym_QMARK_DOT, - anon_sym_POUND_LBRACK, + ACTIONS(5024), 2, anon_sym_is, anon_sym_BANGis, + ACTIONS(5324), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(5334), 2, anon_sym_in, anon_sym_BANGin, - [85052] = 28, + STATE(2795), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(5318), 3, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(5322), 3, + anon_sym_SLASH, + anon_sym_AMP, + anon_sym_GT_GT, + ACTIONS(5326), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(5320), 5, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_AMP_CARET, + [85636] = 28, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(4932), 1, + ACTIONS(1771), 1, + anon_sym_RPAREN, + ACTIONS(4938), 1, anon_sym_LPAREN, - ACTIONS(4934), 1, + ACTIONS(4940), 1, anon_sym_LBRACK, - ACTIONS(4936), 1, + ACTIONS(4942), 1, anon_sym_QMARK, - ACTIONS(4938), 1, + ACTIONS(4944), 1, anon_sym_BANG, - ACTIONS(4940), 1, + ACTIONS(4946), 1, anon_sym_LBRACK2, - ACTIONS(4944), 1, + ACTIONS(4950), 1, anon_sym_POUND_LBRACK, - ACTIONS(4994), 1, + ACTIONS(4996), 1, anon_sym_as, - ACTIONS(5008), 1, + ACTIONS(5012), 1, anon_sym_PLUS_PLUS, - ACTIONS(5010), 1, + ACTIONS(5014), 1, anon_sym_DASH_DASH, - ACTIONS(5018), 1, + ACTIONS(5022), 1, anon_sym_or, - ACTIONS(5322), 1, + ACTIONS(5328), 1, anon_sym_CARET, - ACTIONS(5324), 1, + ACTIONS(5330), 1, anon_sym_AMP_AMP, - ACTIONS(5326), 1, + ACTIONS(5332), 1, anon_sym_PIPE_PIPE, - ACTIONS(5430), 1, - anon_sym_RPAREN, - STATE(2396), 1, - sym_or_block, - STATE(2397), 1, + STATE(2298), 1, sym_argument_list, - STATE(4127), 1, + STATE(2299), 1, + sym_or_block, + STATE(4251), 1, sym_type_parameters, - ACTIONS(4942), 2, + ACTIONS(4948), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - ACTIONS(5020), 2, + ACTIONS(5024), 2, anon_sym_is, anon_sym_BANGis, - ACTIONS(5318), 2, + ACTIONS(5324), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(5328), 2, + ACTIONS(5334), 2, anon_sym_in, anon_sym_BANGin, - STATE(2787), 2, + STATE(2796), 2, sym_line_comment, sym_block_comment, - ACTIONS(5312), 3, - anon_sym_SLASH, - anon_sym_AMP, - anon_sym_GT_GT, - ACTIONS(5316), 3, + ACTIONS(5318), 3, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5320), 4, + ACTIONS(5322), 3, + anon_sym_SLASH, + anon_sym_AMP, + anon_sym_GT_GT, + ACTIONS(5326), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(5310), 5, + ACTIONS(5320), 5, anon_sym_STAR, anon_sym_PERCENT, anon_sym_LT_LT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - [85153] = 6, + [85737] = 28, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - STATE(2788), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(1856), 3, - anon_sym_LBRACE, - anon_sym_COMMA, + ACTIONS(1793), 1, + anon_sym_RPAREN, + ACTIONS(4938), 1, + anon_sym_LPAREN, + ACTIONS(4940), 1, anon_sym_LBRACK, - ACTIONS(1851), 13, - anon_sym_DOT, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, + ACTIONS(4942), 1, anon_sym_QMARK, + ACTIONS(4944), 1, anon_sym_BANG, + ACTIONS(4946), 1, anon_sym_LBRACK2, - anon_sym_AMP, - anon_sym_GT_GT, - anon_sym_DOT_DOT, - ACTIONS(1849), 24, + ACTIONS(4950), 1, + anon_sym_POUND_LBRACK, + ACTIONS(4996), 1, anon_sym_as, - anon_sym_LPAREN, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, + ACTIONS(5012), 1, anon_sym_PLUS_PLUS, + ACTIONS(5014), 1, anon_sym_DASH_DASH, + ACTIONS(5022), 1, + anon_sym_or, + ACTIONS(5328), 1, anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, + ACTIONS(5330), 1, anon_sym_AMP_AMP, + ACTIONS(5332), 1, anon_sym_PIPE_PIPE, - anon_sym_or, + STATE(2298), 1, + sym_argument_list, + STATE(2299), 1, + sym_or_block, + STATE(4251), 1, + sym_type_parameters, + ACTIONS(4948), 2, + anon_sym_DOT, anon_sym_QMARK_DOT, - anon_sym_POUND_LBRACK, + ACTIONS(5024), 2, anon_sym_is, anon_sym_BANGis, + ACTIONS(5324), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(5334), 2, anon_sym_in, anon_sym_BANGin, - [85210] = 6, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_STAR, - ACTIONS(1953), 2, - anon_sym_LBRACE, - anon_sym_COMMA, - STATE(2789), 2, + STATE(2797), 2, sym_line_comment, sym_block_comment, - ACTIONS(2663), 13, - anon_sym_DOT, + ACTIONS(5318), 3, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, + ACTIONS(5322), 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(2661), 25, - anon_sym_as, - anon_sym_LPAREN, - anon_sym_STAR, - anon_sym_PERCENT, + ACTIONS(5326), 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(5320), 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, - [85267] = 28, + [85838] = 28, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(4932), 1, + ACTIONS(4938), 1, anon_sym_LPAREN, - ACTIONS(4934), 1, + ACTIONS(4940), 1, anon_sym_LBRACK, - ACTIONS(4936), 1, + ACTIONS(4942), 1, anon_sym_QMARK, - ACTIONS(4938), 1, + ACTIONS(4944), 1, anon_sym_BANG, - ACTIONS(4940), 1, + ACTIONS(4946), 1, anon_sym_LBRACK2, - ACTIONS(4944), 1, + ACTIONS(4950), 1, anon_sym_POUND_LBRACK, - ACTIONS(4994), 1, + ACTIONS(4996), 1, anon_sym_as, - ACTIONS(5008), 1, + ACTIONS(5012), 1, anon_sym_PLUS_PLUS, - ACTIONS(5010), 1, + ACTIONS(5014), 1, anon_sym_DASH_DASH, - ACTIONS(5018), 1, + ACTIONS(5022), 1, anon_sym_or, - ACTIONS(5208), 1, + ACTIONS(5328), 1, anon_sym_CARET, - ACTIONS(5210), 1, + ACTIONS(5330), 1, anon_sym_AMP_AMP, - ACTIONS(5212), 1, + ACTIONS(5332), 1, anon_sym_PIPE_PIPE, - ACTIONS(5432), 1, - anon_sym_LBRACE, - STATE(2396), 1, - sym_or_block, - STATE(2397), 1, + ACTIONS(5436), 1, + anon_sym_RPAREN, + STATE(2298), 1, sym_argument_list, - STATE(4127), 1, + STATE(2299), 1, + sym_or_block, + STATE(4251), 1, sym_type_parameters, - ACTIONS(4942), 2, + ACTIONS(4948), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - ACTIONS(5020), 2, + ACTIONS(5024), 2, anon_sym_is, anon_sym_BANGis, - ACTIONS(5202), 2, + ACTIONS(5324), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(5214), 2, + ACTIONS(5334), 2, anon_sym_in, anon_sym_BANGin, - STATE(2790), 2, + STATE(2798), 2, sym_line_comment, sym_block_comment, - ACTIONS(5196), 3, + ACTIONS(5318), 3, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5200), 3, + ACTIONS(5322), 3, anon_sym_SLASH, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(5204), 4, + ACTIONS(5326), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(5198), 5, + ACTIONS(5320), 5, anon_sym_STAR, anon_sym_PERCENT, anon_sym_LT_LT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - [85368] = 7, + [85939] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(2763), 1, - anon_sym_DOT, - STATE(2791), 2, + ACTIONS(1989), 2, + anon_sym_LBRACE, + anon_sym_COMMA, + STATE(2799), 2, sym_line_comment, sym_block_comment, - ACTIONS(3903), 3, - anon_sym_SEMI, - anon_sym_RBRACK, - anon_sym_COLON, - ACTIONS(2761), 11, + ACTIONS(1809), 13, + anon_sym_DOT, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, @@ -262983,7 +263560,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(2759), 25, + anon_sym_DOT_DOT, + ACTIONS(1807), 25, anon_sym_as, anon_sym_LPAREN, anon_sym_STAR, @@ -262992,6 +263570,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, @@ -263008,147 +263587,80 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - anon_sym_DOT_DOT, - [85427] = 21, + [85996] = 28, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(4932), 1, - anon_sym_LPAREN, - ACTIONS(4934), 1, - anon_sym_LBRACK, - ACTIONS(4936), 1, - anon_sym_QMARK, ACTIONS(4938), 1, - anon_sym_BANG, - ACTIONS(4940), 1, - anon_sym_LBRACK2, - ACTIONS(4944), 1, - anon_sym_POUND_LBRACK, - ACTIONS(5208), 1, - anon_sym_CARET, - STATE(2396), 1, - sym_or_block, - STATE(2397), 1, - sym_argument_list, - STATE(4127), 1, - sym_type_parameters, - ACTIONS(4942), 2, - anon_sym_DOT, - anon_sym_QMARK_DOT, - ACTIONS(5202), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(5214), 2, - anon_sym_in, - anon_sym_BANGin, - STATE(2792), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(5196), 3, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(5200), 3, - anon_sym_SLASH, - anon_sym_AMP, - anon_sym_GT_GT, - ACTIONS(5204), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(5198), 5, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - ACTIONS(1783), 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, - [85514] = 28, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_STAR, - ACTIONS(4932), 1, anon_sym_LPAREN, - ACTIONS(4934), 1, + ACTIONS(4940), 1, anon_sym_LBRACK, - ACTIONS(4936), 1, + ACTIONS(4942), 1, anon_sym_QMARK, - ACTIONS(4938), 1, + ACTIONS(4944), 1, anon_sym_BANG, - ACTIONS(4940), 1, + ACTIONS(4946), 1, anon_sym_LBRACK2, - ACTIONS(4944), 1, + ACTIONS(4950), 1, anon_sym_POUND_LBRACK, - ACTIONS(4994), 1, + ACTIONS(4996), 1, anon_sym_as, - ACTIONS(5008), 1, + ACTIONS(5012), 1, anon_sym_PLUS_PLUS, - ACTIONS(5010), 1, + ACTIONS(5014), 1, anon_sym_DASH_DASH, - ACTIONS(5018), 1, + ACTIONS(5022), 1, anon_sym_or, - ACTIONS(5090), 1, + ACTIONS(5328), 1, anon_sym_CARET, - ACTIONS(5098), 1, + ACTIONS(5330), 1, anon_sym_AMP_AMP, - ACTIONS(5102), 1, + ACTIONS(5332), 1, anon_sym_PIPE_PIPE, - ACTIONS(5434), 1, - anon_sym_SEMI, - STATE(2396), 1, - sym_or_block, - STATE(2397), 1, + ACTIONS(5438), 1, + anon_sym_RPAREN, + STATE(2298), 1, sym_argument_list, - STATE(4127), 1, + STATE(2299), 1, + sym_or_block, + STATE(4251), 1, sym_type_parameters, - ACTIONS(4942), 2, + ACTIONS(4948), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - ACTIONS(5020), 2, + ACTIONS(5024), 2, anon_sym_is, anon_sym_BANGis, - ACTIONS(5094), 2, + ACTIONS(5324), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(5100), 2, + ACTIONS(5334), 2, anon_sym_in, anon_sym_BANGin, - STATE(2793), 2, + STATE(2800), 2, sym_line_comment, sym_block_comment, - ACTIONS(5084), 3, + ACTIONS(5318), 3, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5088), 3, + ACTIONS(5322), 3, anon_sym_SLASH, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(5096), 4, + ACTIONS(5326), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(5086), 5, + ACTIONS(5320), 5, anon_sym_STAR, anon_sym_PERCENT, anon_sym_LT_LT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - [85615] = 28, + [86097] = 28, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, @@ -263163,52 +263675,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_thread, ACTIONS(91), 1, anon_sym_atomic, - ACTIONS(603), 1, + ACTIONS(571), 1, anon_sym_fn, - ACTIONS(607), 1, + ACTIONS(575), 1, anon_sym_struct, - ACTIONS(3586), 1, + ACTIONS(3564), 1, anon_sym_LPAREN, - ACTIONS(3588), 1, + ACTIONS(3566), 1, anon_sym_STAR, - ACTIONS(5294), 1, + ACTIONS(5300), 1, sym_identifier, - ACTIONS(5298), 1, + ACTIONS(5304), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(5300), 1, + ACTIONS(5306), 1, anon_sym_mut, - ACTIONS(5302), 1, + ACTIONS(5308), 1, anon_sym_BANG, - ACTIONS(5304), 1, + ACTIONS(5310), 1, anon_sym_LBRACK2, - ACTIONS(5306), 1, + ACTIONS(5312), 1, anon_sym_AMP, - ACTIONS(5308), 1, + ACTIONS(5314), 1, anon_sym_shared, - ACTIONS(5436), 1, + ACTIONS(5440), 1, anon_sym_RPAREN, - STATE(2984), 1, + STATE(2993), 1, sym_mutability_modifiers, - STATE(3984), 1, + STATE(3800), 1, sym_type_parameter_declaration, - STATE(3986), 1, + STATE(3803), 1, sym_parameter_declaration, - STATE(4265), 1, + STATE(4254), 1, sym_plain_type, - STATE(4495), 1, + STATE(4498), 1, sym_reference_expression, - STATE(2794), 2, + STATE(2801), 2, sym_line_comment, sym_block_comment, - STATE(3541), 2, + STATE(3460), 2, sym_type_reference_expression, sym_qualified_type, - STATE(2302), 4, + STATE(2360), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(2303), 12, + STATE(2362), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -263221,83 +263733,88 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [85716] = 19, + [86198] = 28, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(4932), 1, + ACTIONS(4938), 1, anon_sym_LPAREN, - ACTIONS(4934), 1, + ACTIONS(4940), 1, anon_sym_LBRACK, - ACTIONS(4936), 1, + ACTIONS(4942), 1, anon_sym_QMARK, - ACTIONS(4938), 1, + ACTIONS(4944), 1, anon_sym_BANG, - ACTIONS(4940), 1, + ACTIONS(4946), 1, anon_sym_LBRACK2, - ACTIONS(4944), 1, + ACTIONS(4950), 1, anon_sym_POUND_LBRACK, - ACTIONS(5208), 1, + ACTIONS(4996), 1, + anon_sym_as, + ACTIONS(5012), 1, + anon_sym_PLUS_PLUS, + ACTIONS(5014), 1, + anon_sym_DASH_DASH, + ACTIONS(5022), 1, + anon_sym_or, + ACTIONS(5328), 1, anon_sym_CARET, - STATE(2396), 1, - sym_or_block, - STATE(2397), 1, + ACTIONS(5330), 1, + anon_sym_AMP_AMP, + ACTIONS(5332), 1, + anon_sym_PIPE_PIPE, + ACTIONS(5442), 1, + anon_sym_RPAREN, + STATE(2298), 1, sym_argument_list, - STATE(4127), 1, + STATE(2299), 1, + sym_or_block, + STATE(4251), 1, sym_type_parameters, - ACTIONS(1785), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(4942), 2, + ACTIONS(4948), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - STATE(2795), 2, + ACTIONS(5024), 2, + anon_sym_is, + anon_sym_BANGis, + ACTIONS(5324), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(5334), 2, + anon_sym_in, + anon_sym_BANGin, + STATE(2802), 2, sym_line_comment, sym_block_comment, - ACTIONS(5196), 3, + ACTIONS(5318), 3, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5200), 3, + ACTIONS(5322), 3, anon_sym_SLASH, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(5198), 5, + ACTIONS(5326), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(5320), 5, anon_sym_STAR, anon_sym_PERCENT, anon_sym_LT_LT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(1783), 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, - [85799] = 6, + [86299] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(1953), 2, - anon_sym_LBRACE, - anon_sym_COMMA, - STATE(2796), 2, + STATE(2803), 2, sym_line_comment, sym_block_comment, - ACTIONS(1917), 13, - anon_sym_DOT, + ACTIONS(1813), 11, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, @@ -263309,8 +263826,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - anon_sym_DOT_DOT, - ACTIONS(1915), 25, + ACTIONS(1811), 29, + anon_sym_DOT, anon_sym_as, anon_sym_LPAREN, anon_sym_STAR, @@ -263319,11 +263836,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, @@ -263332,11 +263850,13 @@ 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, - [85856] = 28, + [86354] = 28, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, @@ -263351,125 +263871,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_thread, ACTIONS(91), 1, anon_sym_atomic, - ACTIONS(603), 1, + ACTIONS(571), 1, anon_sym_fn, - ACTIONS(607), 1, + ACTIONS(575), 1, anon_sym_struct, - ACTIONS(3586), 1, + ACTIONS(3564), 1, anon_sym_LPAREN, - ACTIONS(3588), 1, + ACTIONS(3566), 1, anon_sym_STAR, - ACTIONS(5298), 1, - anon_sym_DOT_DOT_DOT, ACTIONS(5300), 1, - anon_sym_mut, - ACTIONS(5302), 1, - anon_sym_BANG, - ACTIONS(5304), 1, - anon_sym_LBRACK2, - ACTIONS(5306), 1, - anon_sym_AMP, - ACTIONS(5308), 1, - anon_sym_shared, - ACTIONS(5374), 1, - anon_sym_RPAREN, - ACTIONS(5438), 1, - sym_identifier, - STATE(2963), 1, - sym_mutability_modifiers, - STATE(3883), 1, - sym_parameter_declaration, - STATE(3887), 1, - sym_type_parameter_declaration, - STATE(4265), 1, - sym_plain_type, - STATE(4495), 1, - sym_reference_expression, - STATE(2797), 2, - sym_line_comment, - sym_block_comment, - STATE(3541), 2, - sym_type_reference_expression, - sym_qualified_type, - STATE(2302), 4, - sym__plain_type_without_special, - sym_multi_return_type, - sym_result_type, - sym_option_type, - STATE(2303), 12, - sym_anon_struct_type, - sym_fixed_array_type, - sym_array_type, - sym_pointer_type, - sym_wrong_pointer_type, - sym_map_type, - sym_channel_type, - sym_shared_type, - sym_thread_type, - sym_atomic_type, - sym_generic_type, - sym_function_type, - [85957] = 28, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_STAR, - ACTIONS(47), 1, - anon_sym_QMARK, - ACTIONS(85), 1, - anon_sym_map_LBRACK, - ACTIONS(87), 1, - anon_sym_chan, - ACTIONS(89), 1, - anon_sym_thread, - ACTIONS(91), 1, - anon_sym_atomic, - ACTIONS(603), 1, - anon_sym_fn, - ACTIONS(607), 1, - anon_sym_struct, - ACTIONS(3586), 1, - anon_sym_LPAREN, - ACTIONS(3588), 1, - anon_sym_STAR, - ACTIONS(5294), 1, sym_identifier, - ACTIONS(5298), 1, + ACTIONS(5304), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(5300), 1, + ACTIONS(5306), 1, anon_sym_mut, - ACTIONS(5302), 1, + ACTIONS(5308), 1, anon_sym_BANG, - ACTIONS(5304), 1, + ACTIONS(5310), 1, anon_sym_LBRACK2, - ACTIONS(5306), 1, + ACTIONS(5312), 1, anon_sym_AMP, - ACTIONS(5308), 1, + ACTIONS(5314), 1, anon_sym_shared, - ACTIONS(5440), 1, + ACTIONS(5358), 1, anon_sym_RPAREN, - STATE(2984), 1, + STATE(2993), 1, sym_mutability_modifiers, - STATE(3953), 1, + STATE(3810), 1, + sym_plain_type, + STATE(3814), 1, sym_parameter_declaration, - STATE(3960), 1, + STATE(3819), 1, sym_type_parameter_declaration, - STATE(4265), 1, - sym_plain_type, - STATE(4495), 1, + STATE(4498), 1, sym_reference_expression, - STATE(2798), 2, + STATE(2804), 2, sym_line_comment, sym_block_comment, - STATE(3541), 2, + STATE(3460), 2, sym_type_reference_expression, sym_qualified_type, - STATE(2302), 4, + STATE(2360), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(2303), 12, + STATE(2362), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -263482,350 +263929,568 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [86058] = 28, + [86455] = 28, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(1771), 1, - anon_sym_RPAREN, - ACTIONS(4932), 1, + ACTIONS(4938), 1, anon_sym_LPAREN, - ACTIONS(4934), 1, + ACTIONS(4940), 1, anon_sym_LBRACK, - ACTIONS(4936), 1, + ACTIONS(4942), 1, anon_sym_QMARK, - ACTIONS(4938), 1, + ACTIONS(4944), 1, anon_sym_BANG, - ACTIONS(4940), 1, + ACTIONS(4946), 1, anon_sym_LBRACK2, - ACTIONS(4944), 1, + ACTIONS(4950), 1, anon_sym_POUND_LBRACK, - ACTIONS(4994), 1, + ACTIONS(4996), 1, anon_sym_as, - ACTIONS(5008), 1, + ACTIONS(5012), 1, anon_sym_PLUS_PLUS, - ACTIONS(5010), 1, + ACTIONS(5014), 1, anon_sym_DASH_DASH, - ACTIONS(5018), 1, + ACTIONS(5022), 1, anon_sym_or, - ACTIONS(5322), 1, + ACTIONS(5328), 1, anon_sym_CARET, - ACTIONS(5324), 1, + ACTIONS(5330), 1, anon_sym_AMP_AMP, - ACTIONS(5326), 1, + ACTIONS(5332), 1, anon_sym_PIPE_PIPE, - STATE(2396), 1, - sym_or_block, - STATE(2397), 1, + ACTIONS(5444), 1, + anon_sym_RPAREN, + STATE(2298), 1, sym_argument_list, - STATE(4127), 1, + STATE(2299), 1, + sym_or_block, + STATE(4251), 1, sym_type_parameters, - ACTIONS(4942), 2, + ACTIONS(4948), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - ACTIONS(5020), 2, + ACTIONS(5024), 2, anon_sym_is, anon_sym_BANGis, - ACTIONS(5318), 2, + ACTIONS(5324), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(5328), 2, + ACTIONS(5334), 2, anon_sym_in, anon_sym_BANGin, - STATE(2799), 2, + STATE(2805), 2, sym_line_comment, sym_block_comment, - ACTIONS(5312), 3, - anon_sym_SLASH, - anon_sym_AMP, - anon_sym_GT_GT, - ACTIONS(5316), 3, + ACTIONS(5318), 3, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5320), 4, + ACTIONS(5322), 3, + anon_sym_SLASH, + anon_sym_AMP, + anon_sym_GT_GT, + ACTIONS(5326), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(5310), 5, + ACTIONS(5320), 5, anon_sym_STAR, anon_sym_PERCENT, anon_sym_LT_LT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - [86159] = 28, + [86556] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(47), 1, + ACTIONS(5446), 1, + anon_sym_DOLLARelse, + STATE(2806), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(1843), 11, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, anon_sym_QMARK, - ACTIONS(85), 1, - anon_sym_map_LBRACK, - ACTIONS(87), 1, - anon_sym_chan, - ACTIONS(89), 1, - anon_sym_thread, - ACTIONS(91), 1, - anon_sym_atomic, - ACTIONS(603), 1, - anon_sym_fn, - ACTIONS(607), 1, - anon_sym_struct, - ACTIONS(3586), 1, - anon_sym_LPAREN, - ACTIONS(3588), 1, - anon_sym_STAR, - ACTIONS(5294), 1, - sym_identifier, - ACTIONS(5298), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(5300), 1, - anon_sym_mut, - ACTIONS(5302), 1, anon_sym_BANG, - ACTIONS(5304), 1, anon_sym_LBRACK2, - ACTIONS(5306), 1, anon_sym_AMP, - ACTIONS(5308), 1, - anon_sym_shared, - ACTIONS(5442), 1, - anon_sym_RPAREN, - STATE(2984), 1, - sym_mutability_modifiers, - STATE(3965), 1, - sym_type_parameter_declaration, - STATE(3966), 1, - sym_parameter_declaration, - STATE(4265), 1, - sym_plain_type, - STATE(4495), 1, - sym_reference_expression, - STATE(2800), 2, - sym_line_comment, - sym_block_comment, - STATE(3541), 2, - sym_type_reference_expression, - sym_qualified_type, - STATE(2302), 4, - sym__plain_type_without_special, - sym_multi_return_type, - sym_result_type, - sym_option_type, - STATE(2303), 12, - sym_anon_struct_type, - sym_fixed_array_type, - sym_array_type, - sym_pointer_type, - sym_wrong_pointer_type, - sym_map_type, - sym_channel_type, - sym_shared_type, - sym_thread_type, - sym_atomic_type, - sym_generic_type, - sym_function_type, - [86260] = 28, + anon_sym_GT_GT, + ACTIONS(1841), 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, + [86612] = 27, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(1779), 1, - anon_sym_RPAREN, - ACTIONS(4932), 1, + ACTIONS(4938), 1, anon_sym_LPAREN, - ACTIONS(4934), 1, + ACTIONS(4940), 1, anon_sym_LBRACK, - ACTIONS(4936), 1, + ACTIONS(4942), 1, anon_sym_QMARK, - ACTIONS(4938), 1, + ACTIONS(4944), 1, anon_sym_BANG, - ACTIONS(4940), 1, + ACTIONS(4946), 1, anon_sym_LBRACK2, - ACTIONS(4944), 1, + ACTIONS(4950), 1, anon_sym_POUND_LBRACK, - ACTIONS(4994), 1, + ACTIONS(4996), 1, anon_sym_as, - ACTIONS(5008), 1, + ACTIONS(5012), 1, anon_sym_PLUS_PLUS, - ACTIONS(5010), 1, + ACTIONS(5014), 1, anon_sym_DASH_DASH, - ACTIONS(5018), 1, + ACTIONS(5022), 1, anon_sym_or, - ACTIONS(5322), 1, + ACTIONS(5076), 1, anon_sym_CARET, - ACTIONS(5324), 1, + ACTIONS(5082), 1, anon_sym_AMP_AMP, - ACTIONS(5326), 1, + ACTIONS(5114), 1, anon_sym_PIPE_PIPE, - STATE(2396), 1, - sym_or_block, - STATE(2397), 1, + STATE(2298), 1, sym_argument_list, - STATE(4127), 1, + STATE(2299), 1, + sym_or_block, + STATE(4251), 1, sym_type_parameters, - ACTIONS(4942), 2, + ACTIONS(4948), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - ACTIONS(5020), 2, - anon_sym_is, - anon_sym_BANGis, - ACTIONS(5318), 2, + ACTIONS(5078), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(5328), 2, + ACTIONS(5084), 2, anon_sym_in, anon_sym_BANGin, - STATE(2801), 2, + ACTIONS(5448), 2, + anon_sym_is, + anon_sym_BANGis, + STATE(2807), 2, sym_line_comment, sym_block_comment, - ACTIONS(5312), 3, - anon_sym_SLASH, - anon_sym_AMP, - anon_sym_GT_GT, - ACTIONS(5316), 3, + ACTIONS(5070), 3, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5320), 4, + ACTIONS(5074), 3, + anon_sym_SLASH, + anon_sym_AMP, + anon_sym_GT_GT, + ACTIONS(5080), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(5310), 5, + ACTIONS(5072), 5, anon_sym_STAR, anon_sym_PERCENT, anon_sym_LT_LT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - [86361] = 17, + [86710] = 27, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(4932), 1, + ACTIONS(4938), 1, anon_sym_LPAREN, - ACTIONS(4934), 1, + ACTIONS(4940), 1, anon_sym_LBRACK, - ACTIONS(4936), 1, + ACTIONS(4942), 1, anon_sym_QMARK, - ACTIONS(4938), 1, + ACTIONS(4944), 1, anon_sym_BANG, - ACTIONS(4940), 1, + ACTIONS(4946), 1, anon_sym_LBRACK2, - ACTIONS(4944), 1, + ACTIONS(4950), 1, anon_sym_POUND_LBRACK, - STATE(2396), 1, - sym_or_block, - STATE(2397), 1, + ACTIONS(4996), 1, + anon_sym_as, + ACTIONS(5012), 1, + anon_sym_PLUS_PLUS, + ACTIONS(5014), 1, + anon_sym_DASH_DASH, + ACTIONS(5022), 1, + anon_sym_or, + ACTIONS(5076), 1, + anon_sym_CARET, + ACTIONS(5082), 1, + anon_sym_AMP_AMP, + ACTIONS(5114), 1, + anon_sym_PIPE_PIPE, + STATE(2298), 1, sym_argument_list, - STATE(4127), 1, + STATE(2299), 1, + sym_or_block, + STATE(4251), 1, sym_type_parameters, - ACTIONS(4942), 2, + ACTIONS(4948), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - STATE(2802), 2, + ACTIONS(5078), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(5084), 2, + anon_sym_in, + anon_sym_BANGin, + ACTIONS(5450), 2, + anon_sym_is, + anon_sym_BANGis, + STATE(2808), 2, sym_line_comment, sym_block_comment, - ACTIONS(5200), 3, - anon_sym_SLASH, - anon_sym_AMP, - anon_sym_GT_GT, - ACTIONS(1785), 5, + ACTIONS(5070), 3, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(5198), 5, + ACTIONS(5074), 3, + anon_sym_SLASH, + anon_sym_AMP, + anon_sym_GT_GT, + ACTIONS(5080), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(5072), 5, anon_sym_STAR, anon_sym_PERCENT, anon_sym_LT_LT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(1783), 16, + [86808] = 27, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(4938), 1, + anon_sym_LPAREN, + ACTIONS(4940), 1, + anon_sym_LBRACK, + ACTIONS(4942), 1, + anon_sym_QMARK, + ACTIONS(4944), 1, + anon_sym_BANG, + ACTIONS(4946), 1, + anon_sym_LBRACK2, + ACTIONS(4950), 1, + anon_sym_POUND_LBRACK, + ACTIONS(4996), 1, anon_sym_as, - anon_sym_LBRACE, + ACTIONS(5012), 1, + anon_sym_PLUS_PLUS, + ACTIONS(5014), 1, + anon_sym_DASH_DASH, + ACTIONS(5022), 1, + anon_sym_or, + ACTIONS(5076), 1, + anon_sym_CARET, + ACTIONS(5082), 1, + anon_sym_AMP_AMP, + ACTIONS(5114), 1, + anon_sym_PIPE_PIPE, + STATE(2298), 1, + sym_argument_list, + STATE(2299), 1, + sym_or_block, + STATE(4251), 1, + sym_type_parameters, + ACTIONS(4948), 2, + anon_sym_DOT, + anon_sym_QMARK_DOT, + ACTIONS(5078), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(5084), 2, + anon_sym_in, + anon_sym_BANGin, + ACTIONS(5452), 2, + anon_sym_is, + anon_sym_BANGis, + STATE(2809), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(5070), 3, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(5074), 3, + anon_sym_SLASH, + anon_sym_AMP, + anon_sym_GT_GT, + ACTIONS(5080), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, + ACTIONS(5072), 5, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_AMP_CARET, + [86906] = 27, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(4938), 1, + anon_sym_LPAREN, + ACTIONS(4940), 1, + anon_sym_LBRACK, + ACTIONS(4942), 1, + anon_sym_QMARK, + ACTIONS(4944), 1, + anon_sym_BANG, + ACTIONS(4946), 1, + anon_sym_LBRACK2, + ACTIONS(4950), 1, + anon_sym_POUND_LBRACK, + ACTIONS(4996), 1, + anon_sym_as, + ACTIONS(5012), 1, anon_sym_PLUS_PLUS, + ACTIONS(5014), 1, anon_sym_DASH_DASH, + ACTIONS(5022), 1, + anon_sym_or, + ACTIONS(5076), 1, anon_sym_CARET, + ACTIONS(5082), 1, anon_sym_AMP_AMP, + ACTIONS(5114), 1, anon_sym_PIPE_PIPE, - anon_sym_or, - anon_sym_is, - anon_sym_BANGis, + STATE(2298), 1, + sym_argument_list, + STATE(2299), 1, + sym_or_block, + STATE(4251), 1, + sym_type_parameters, + ACTIONS(4948), 2, + anon_sym_DOT, + anon_sym_QMARK_DOT, + ACTIONS(5078), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(5084), 2, anon_sym_in, anon_sym_BANGin, - [86440] = 7, + ACTIONS(5246), 2, + anon_sym_is, + anon_sym_BANGis, + STATE(2810), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(5070), 3, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(5074), 3, + anon_sym_SLASH, + anon_sym_AMP, + anon_sym_GT_GT, + ACTIONS(5080), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(5072), 5, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_AMP_CARET, + [87004] = 27, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(1856), 2, + ACTIONS(4938), 1, + anon_sym_LPAREN, + ACTIONS(4940), 1, anon_sym_LBRACK, - anon_sym_RBRACK, - ACTIONS(2505), 2, - anon_sym_LBRACE, - anon_sym_COMMA, - STATE(2803), 2, + ACTIONS(4942), 1, + anon_sym_QMARK, + ACTIONS(4944), 1, + anon_sym_BANG, + ACTIONS(4946), 1, + anon_sym_LBRACK2, + ACTIONS(4950), 1, + anon_sym_POUND_LBRACK, + ACTIONS(4996), 1, + anon_sym_as, + ACTIONS(5012), 1, + anon_sym_PLUS_PLUS, + ACTIONS(5014), 1, + anon_sym_DASH_DASH, + ACTIONS(5022), 1, + anon_sym_or, + ACTIONS(5076), 1, + anon_sym_CARET, + ACTIONS(5082), 1, + anon_sym_AMP_AMP, + ACTIONS(5114), 1, + anon_sym_PIPE_PIPE, + STATE(2298), 1, + sym_argument_list, + STATE(2299), 1, + sym_or_block, + STATE(4251), 1, + sym_type_parameters, + ACTIONS(4948), 2, + anon_sym_DOT, + anon_sym_QMARK_DOT, + ACTIONS(5078), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(5084), 2, + anon_sym_in, + anon_sym_BANGin, + ACTIONS(5454), 2, + anon_sym_is, + anon_sym_BANGis, + STATE(2811), 2, sym_line_comment, sym_block_comment, - ACTIONS(1851), 12, - anon_sym_DOT, + ACTIONS(5070), 3, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, + ACTIONS(5074), 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(1849), 24, - anon_sym_as, - anon_sym_LPAREN, - anon_sym_STAR, - anon_sym_PERCENT, + ACTIONS(5080), 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(5072), 5, + anon_sym_STAR, + anon_sym_PERCENT, anon_sym_LT_LT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, + [87102] = 27, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(4661), 1, + anon_sym_as, + ACTIONS(4667), 1, + anon_sym_LPAREN, + ACTIONS(4677), 1, + anon_sym_LBRACK, + ACTIONS(4679), 1, + anon_sym_PLUS_PLUS, + ACTIONS(4681), 1, + anon_sym_DASH_DASH, + ACTIONS(4683), 1, + anon_sym_QMARK, + ACTIONS(4685), 1, + anon_sym_BANG, + ACTIONS(4687), 1, + anon_sym_LBRACK2, + ACTIONS(4689), 1, anon_sym_AMP_AMP, + ACTIONS(4691), 1, anon_sym_PIPE_PIPE, + ACTIONS(4693), 1, anon_sym_or, - anon_sym_QMARK_DOT, + ACTIONS(4695), 1, anon_sym_POUND_LBRACK, + ACTIONS(5458), 1, + anon_sym_CARET, + STATE(1972), 1, + sym_or_block, + STATE(1977), 1, + sym_argument_list, + STATE(4147), 1, + sym_type_parameters, + ACTIONS(4659), 2, + anon_sym_DOT, + anon_sym_QMARK_DOT, + ACTIONS(4673), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(4697), 2, anon_sym_is, anon_sym_BANGis, + ACTIONS(4699), 2, anon_sym_in, anon_sym_BANGin, - anon_sym_DOT_DOT, - [86499] = 6, + STATE(2812), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(4669), 3, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4671), 3, + anon_sym_SLASH, + anon_sym_AMP, + anon_sym_GT_GT, + ACTIONS(4675), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(5456), 5, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_AMP_CARET, + [87200] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(1853), 1, - anon_sym_DOT, - STATE(2804), 2, + ACTIONS(3913), 2, + anon_sym_SEMI, + anon_sym_RBRACK, + STATE(2813), 2, sym_line_comment, sym_block_comment, - ACTIONS(2507), 12, + ACTIONS(2806), 12, + anon_sym_DOT, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, @@ -263837,11 +264502,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - anon_sym_DOT_DOT, - ACTIONS(2505), 27, + ACTIONS(2804), 25, anon_sym_as, - anon_sym_LBRACE, - anon_sym_COMMA, anon_sym_LPAREN, anon_sym_STAR, anon_sym_PERCENT, @@ -263849,7 +264511,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, @@ -263866,17 +264527,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [86556] = 6, + anon_sym_DOT_DOT, + [87256] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(5444), 1, - anon_sym_DOLLARelse, - STATE(2805), 2, + STATE(2814), 2, sym_line_comment, sym_block_comment, - ACTIONS(1921), 11, + ACTIONS(2219), 11, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, @@ -263888,9 +264548,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(1919), 27, + ACTIONS(2222), 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, @@ -263899,11 +264562,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, @@ -263916,149 +264577,59 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [86612] = 27, + [87310] = 8, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(4932), 1, - anon_sym_LPAREN, - ACTIONS(4934), 1, + ACTIONS(1894), 1, anon_sym_LBRACK, - ACTIONS(4936), 1, - anon_sym_QMARK, - ACTIONS(4938), 1, - anon_sym_BANG, - ACTIONS(4940), 1, - anon_sym_LBRACK2, - ACTIONS(4944), 1, - anon_sym_POUND_LBRACK, - ACTIONS(4994), 1, - anon_sym_as, - ACTIONS(5008), 1, - anon_sym_PLUS_PLUS, - ACTIONS(5010), 1, - anon_sym_DASH_DASH, - ACTIONS(5012), 1, - anon_sym_CARET, - ACTIONS(5014), 1, - anon_sym_AMP_AMP, - ACTIONS(5016), 1, - anon_sym_PIPE_PIPE, - ACTIONS(5018), 1, - anon_sym_or, - STATE(2396), 1, - sym_or_block, - STATE(2397), 1, - sym_argument_list, - STATE(4127), 1, - sym_type_parameters, - ACTIONS(4942), 2, - anon_sym_DOT, - anon_sym_QMARK_DOT, - ACTIONS(5004), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(5020), 2, - anon_sym_is, - anon_sym_BANGis, - ACTIONS(5022), 2, - anon_sym_in, - anon_sym_BANGin, - STATE(2806), 2, + ACTIONS(2473), 1, + anon_sym_LBRACE, + ACTIONS(5460), 2, + anon_sym_COMMA, + anon_sym_COLON_EQ, + STATE(2815), 2, sym_line_comment, sym_block_comment, - ACTIONS(4998), 3, + ACTIONS(1889), 11, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5002), 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(5006), 4, + ACTIONS(1887), 24, + anon_sym_DOT, + anon_sym_as, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_PERCENT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(5000), 5, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - [86710] = 27, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_STAR, - ACTIONS(4932), 1, - anon_sym_LPAREN, - ACTIONS(4934), 1, - anon_sym_LBRACK, - ACTIONS(4936), 1, - anon_sym_QMARK, - ACTIONS(4938), 1, - anon_sym_BANG, - ACTIONS(4940), 1, - anon_sym_LBRACK2, - ACTIONS(4944), 1, - anon_sym_POUND_LBRACK, - ACTIONS(4994), 1, - anon_sym_as, - ACTIONS(5008), 1, anon_sym_PLUS_PLUS, - ACTIONS(5010), 1, anon_sym_DASH_DASH, - ACTIONS(5018), 1, - anon_sym_or, - ACTIONS(5090), 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(5102), 1, anon_sym_PIPE_PIPE, - STATE(2396), 1, - sym_or_block, - STATE(2397), 1, - sym_argument_list, - STATE(4127), 1, - sym_type_parameters, - ACTIONS(4942), 2, - anon_sym_DOT, + anon_sym_or, anon_sym_QMARK_DOT, - ACTIONS(5094), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(5100), 2, - anon_sym_in, - anon_sym_BANGin, - ACTIONS(5446), 2, + anon_sym_POUND_LBRACK, anon_sym_is, anon_sym_BANGis, - STATE(2807), 2, - sym_line_comment, - sym_block_comment, - 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(5096), 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, - [86808] = 25, + anon_sym_in, + anon_sym_BANGin, + [87370] = 26, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, @@ -264073,48 +264644,49 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_thread, ACTIONS(91), 1, anon_sym_atomic, - ACTIONS(597), 1, + ACTIONS(565), 1, sym_identifier, - ACTIONS(603), 1, + ACTIONS(571), 1, anon_sym_fn, - ACTIONS(607), 1, + ACTIONS(575), 1, anon_sym_struct, - ACTIONS(611), 1, + ACTIONS(579), 1, anon_sym_LBRACK2, - ACTIONS(615), 1, + ACTIONS(583), 1, anon_sym_shared, - ACTIONS(1851), 1, + ACTIONS(1889), 1, anon_sym_DOT, - ACTIONS(3586), 1, + ACTIONS(3564), 1, anon_sym_LPAREN, - ACTIONS(3588), 1, + ACTIONS(3566), 1, anon_sym_STAR, - ACTIONS(5302), 1, + ACTIONS(5308), 1, anon_sym_BANG, - ACTIONS(5306), 1, + ACTIONS(5312), 1, anon_sym_AMP, - ACTIONS(5448), 1, + ACTIONS(5462), 1, anon_sym_DOT_DOT_DOT, - STATE(4300), 1, + STATE(4033), 1, sym_plain_type, - STATE(4495), 1, + STATE(4037), 1, + sym__plain_type_without_special, + STATE(4498), 1, sym_reference_expression, - STATE(2808), 2, + STATE(2816), 2, sym_line_comment, sym_block_comment, - STATE(3541), 2, + STATE(3460), 2, sym_type_reference_expression, sym_qualified_type, - ACTIONS(2505), 3, + ACTIONS(2473), 3, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LBRACK, - STATE(2302), 4, - sym__plain_type_without_special, + STATE(2360), 3, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(2303), 12, + STATE(2362), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -264127,301 +264699,370 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [86902] = 27, + [87466] = 27, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(4661), 1, - anon_sym_as, - ACTIONS(4667), 1, + ACTIONS(4938), 1, anon_sym_LPAREN, - ACTIONS(4677), 1, + ACTIONS(4940), 1, anon_sym_LBRACK, - ACTIONS(4679), 1, - anon_sym_PLUS_PLUS, - ACTIONS(4681), 1, - anon_sym_DASH_DASH, - ACTIONS(4683), 1, - anon_sym_QMARK, - ACTIONS(4685), 1, - anon_sym_BANG, - ACTIONS(4687), 1, - anon_sym_LBRACK2, - ACTIONS(4689), 1, - anon_sym_AMP_AMP, - ACTIONS(4691), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4693), 1, - anon_sym_or, - ACTIONS(4695), 1, + ACTIONS(4942), 1, + anon_sym_QMARK, + ACTIONS(4944), 1, + anon_sym_BANG, + ACTIONS(4946), 1, + anon_sym_LBRACK2, + ACTIONS(4950), 1, anon_sym_POUND_LBRACK, - ACTIONS(5452), 1, + ACTIONS(4996), 1, + anon_sym_as, + ACTIONS(5012), 1, + anon_sym_PLUS_PLUS, + ACTIONS(5014), 1, + anon_sym_DASH_DASH, + ACTIONS(5022), 1, + anon_sym_or, + ACTIONS(5076), 1, anon_sym_CARET, - STATE(2067), 1, + ACTIONS(5082), 1, + anon_sym_AMP_AMP, + ACTIONS(5114), 1, + anon_sym_PIPE_PIPE, + STATE(2298), 1, sym_argument_list, - STATE(2068), 1, + STATE(2299), 1, sym_or_block, - STATE(4090), 1, + STATE(4251), 1, sym_type_parameters, - ACTIONS(4659), 2, + ACTIONS(4948), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - ACTIONS(4673), 2, + ACTIONS(5078), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(4697), 2, - anon_sym_is, - anon_sym_BANGis, - ACTIONS(4699), 2, + ACTIONS(5084), 2, anon_sym_in, anon_sym_BANGin, - STATE(2809), 2, + ACTIONS(5464), 2, + anon_sym_is, + anon_sym_BANGis, + STATE(2817), 2, sym_line_comment, sym_block_comment, - ACTIONS(4669), 3, + ACTIONS(5070), 3, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4671), 3, + ACTIONS(5074), 3, anon_sym_SLASH, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(4675), 4, + ACTIONS(5080), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(5450), 5, + ACTIONS(5072), 5, anon_sym_STAR, anon_sym_PERCENT, anon_sym_LT_LT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - [87000] = 27, + [87564] = 27, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(4932), 1, + ACTIONS(4938), 1, anon_sym_LPAREN, - ACTIONS(4934), 1, + ACTIONS(4940), 1, anon_sym_LBRACK, - ACTIONS(4936), 1, + ACTIONS(4942), 1, anon_sym_QMARK, - ACTIONS(4938), 1, + ACTIONS(4944), 1, anon_sym_BANG, - ACTIONS(4940), 1, + ACTIONS(4946), 1, anon_sym_LBRACK2, - ACTIONS(4944), 1, + ACTIONS(4950), 1, anon_sym_POUND_LBRACK, - ACTIONS(4994), 1, + ACTIONS(4996), 1, anon_sym_as, - ACTIONS(5008), 1, + ACTIONS(5012), 1, anon_sym_PLUS_PLUS, - ACTIONS(5010), 1, + ACTIONS(5014), 1, anon_sym_DASH_DASH, - ACTIONS(5018), 1, + ACTIONS(5022), 1, anon_sym_or, - ACTIONS(5090), 1, + ACTIONS(5076), 1, anon_sym_CARET, - ACTIONS(5098), 1, + ACTIONS(5082), 1, anon_sym_AMP_AMP, - ACTIONS(5102), 1, + ACTIONS(5114), 1, anon_sym_PIPE_PIPE, - STATE(2396), 1, - sym_or_block, - STATE(2397), 1, + STATE(2298), 1, sym_argument_list, - STATE(4127), 1, + STATE(2299), 1, + sym_or_block, + STATE(4251), 1, sym_type_parameters, - ACTIONS(4942), 2, + ACTIONS(4948), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - ACTIONS(5094), 2, + ACTIONS(5078), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(5100), 2, + ACTIONS(5084), 2, anon_sym_in, anon_sym_BANGin, - ACTIONS(5454), 2, + ACTIONS(5466), 2, anon_sym_is, anon_sym_BANGis, - STATE(2810), 2, + STATE(2818), 2, sym_line_comment, sym_block_comment, - ACTIONS(5084), 3, + ACTIONS(5070), 3, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5088), 3, + ACTIONS(5074), 3, anon_sym_SLASH, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(5096), 4, + ACTIONS(5080), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(5086), 5, + ACTIONS(5072), 5, anon_sym_STAR, anon_sym_PERCENT, anon_sym_LT_LT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - [87098] = 27, + [87662] = 27, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(4932), 1, + ACTIONS(4938), 1, anon_sym_LPAREN, - ACTIONS(4934), 1, + ACTIONS(4940), 1, anon_sym_LBRACK, - ACTIONS(4936), 1, + ACTIONS(4942), 1, anon_sym_QMARK, - ACTIONS(4938), 1, + ACTIONS(4944), 1, anon_sym_BANG, - ACTIONS(4940), 1, + ACTIONS(4946), 1, anon_sym_LBRACK2, - ACTIONS(4944), 1, + ACTIONS(4950), 1, anon_sym_POUND_LBRACK, - ACTIONS(4994), 1, + ACTIONS(4996), 1, anon_sym_as, - ACTIONS(5008), 1, + ACTIONS(5012), 1, anon_sym_PLUS_PLUS, - ACTIONS(5010), 1, + ACTIONS(5014), 1, anon_sym_DASH_DASH, - ACTIONS(5018), 1, + ACTIONS(5022), 1, anon_sym_or, - ACTIONS(5090), 1, + ACTIONS(5076), 1, anon_sym_CARET, - ACTIONS(5098), 1, + ACTIONS(5082), 1, anon_sym_AMP_AMP, - ACTIONS(5102), 1, + ACTIONS(5114), 1, anon_sym_PIPE_PIPE, - STATE(2396), 1, - sym_or_block, - STATE(2397), 1, + STATE(2298), 1, sym_argument_list, - STATE(4127), 1, + STATE(2299), 1, + sym_or_block, + STATE(4251), 1, sym_type_parameters, - ACTIONS(4942), 2, + ACTIONS(4948), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - ACTIONS(5094), 2, + ACTIONS(5078), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(5100), 2, + ACTIONS(5084), 2, anon_sym_in, anon_sym_BANGin, - ACTIONS(5456), 2, + ACTIONS(5468), 2, anon_sym_is, anon_sym_BANGis, - STATE(2811), 2, + STATE(2819), 2, sym_line_comment, sym_block_comment, - ACTIONS(5084), 3, + ACTIONS(5070), 3, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5088), 3, + ACTIONS(5074), 3, anon_sym_SLASH, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(5096), 4, + ACTIONS(5080), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(5086), 5, + ACTIONS(5072), 5, anon_sym_STAR, anon_sym_PERCENT, anon_sym_LT_LT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - [87196] = 27, + [87760] = 27, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(4932), 1, + ACTIONS(4938), 1, anon_sym_LPAREN, - ACTIONS(4934), 1, + ACTIONS(4940), 1, anon_sym_LBRACK, - ACTIONS(4936), 1, + ACTIONS(4942), 1, anon_sym_QMARK, - ACTIONS(4938), 1, + ACTIONS(4944), 1, anon_sym_BANG, - ACTIONS(4940), 1, + ACTIONS(4946), 1, anon_sym_LBRACK2, - ACTIONS(4944), 1, + ACTIONS(4950), 1, anon_sym_POUND_LBRACK, - ACTIONS(4994), 1, + ACTIONS(4996), 1, anon_sym_as, - ACTIONS(5008), 1, + ACTIONS(5012), 1, anon_sym_PLUS_PLUS, - ACTIONS(5010), 1, + ACTIONS(5014), 1, anon_sym_DASH_DASH, - ACTIONS(5018), 1, + ACTIONS(5022), 1, anon_sym_or, - ACTIONS(5090), 1, + ACTIONS(5076), 1, anon_sym_CARET, - ACTIONS(5098), 1, + ACTIONS(5082), 1, anon_sym_AMP_AMP, - ACTIONS(5102), 1, + ACTIONS(5114), 1, anon_sym_PIPE_PIPE, - STATE(2396), 1, - sym_or_block, - STATE(2397), 1, + STATE(2298), 1, sym_argument_list, - STATE(4127), 1, + STATE(2299), 1, + sym_or_block, + STATE(4251), 1, sym_type_parameters, - ACTIONS(4942), 2, + ACTIONS(4948), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - ACTIONS(5094), 2, + ACTIONS(5078), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(5100), 2, + ACTIONS(5084), 2, anon_sym_in, anon_sym_BANGin, - ACTIONS(5458), 2, + ACTIONS(5470), 2, anon_sym_is, anon_sym_BANGis, - STATE(2812), 2, + STATE(2820), 2, sym_line_comment, sym_block_comment, - ACTIONS(5084), 3, + ACTIONS(5070), 3, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5088), 3, + ACTIONS(5074), 3, anon_sym_SLASH, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(5096), 4, + ACTIONS(5080), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(5086), 5, + ACTIONS(5072), 5, anon_sym_STAR, anon_sym_PERCENT, anon_sym_LT_LT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - [87294] = 6, + [87858] = 25, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(47), 1, + anon_sym_QMARK, + ACTIONS(85), 1, + anon_sym_map_LBRACK, + ACTIONS(87), 1, + anon_sym_chan, + ACTIONS(89), 1, + anon_sym_thread, + ACTIONS(91), 1, + anon_sym_atomic, + ACTIONS(565), 1, + sym_identifier, + ACTIONS(571), 1, + anon_sym_fn, + ACTIONS(575), 1, + anon_sym_struct, + ACTIONS(579), 1, + anon_sym_LBRACK2, + ACTIONS(583), 1, + anon_sym_shared, + ACTIONS(1889), 1, + anon_sym_DOT, + ACTIONS(3564), 1, + anon_sym_LPAREN, + ACTIONS(3566), 1, + anon_sym_STAR, + ACTIONS(5308), 1, + anon_sym_BANG, + ACTIONS(5312), 1, + anon_sym_AMP, + ACTIONS(5472), 1, + anon_sym_DOT_DOT_DOT, + STATE(4020), 1, + sym_plain_type, + STATE(4498), 1, + sym_reference_expression, + STATE(2821), 2, + sym_line_comment, + sym_block_comment, + STATE(3460), 2, + sym_type_reference_expression, + sym_qualified_type, + ACTIONS(2473), 3, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LBRACK, + STATE(2360), 4, + sym__plain_type_without_special, + sym_multi_return_type, + sym_result_type, + sym_option_type, + STATE(2362), 12, + sym_anon_struct_type, + sym_fixed_array_type, + sym_array_type, + sym_pointer_type, + sym_wrong_pointer_type, + sym_map_type, + sym_channel_type, + sym_shared_type, + sym_thread_type, + sym_atomic_type, + sym_generic_type, + sym_function_type, + [87952] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(5460), 1, + ACTIONS(5474), 1, anon_sym_DOLLARelse, - STATE(2813), 2, + STATE(2822), 2, sym_line_comment, sym_block_comment, - ACTIONS(1899), 11, + ACTIONS(1913), 11, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, @@ -264433,7 +265074,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(1897), 27, + ACTIONS(1911), 27, anon_sym_DOT, anon_sym_as, anon_sym_LPAREN, @@ -264461,149 +265102,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [87350] = 27, + [88008] = 27, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(4932), 1, - anon_sym_LPAREN, - ACTIONS(4934), 1, - anon_sym_LBRACK, - ACTIONS(4936), 1, - anon_sym_QMARK, ACTIONS(4938), 1, - anon_sym_BANG, - ACTIONS(4940), 1, - anon_sym_LBRACK2, - ACTIONS(4944), 1, - anon_sym_POUND_LBRACK, - ACTIONS(4994), 1, - anon_sym_as, - ACTIONS(5008), 1, - anon_sym_PLUS_PLUS, - ACTIONS(5010), 1, - anon_sym_DASH_DASH, - ACTIONS(5018), 1, - anon_sym_or, - ACTIONS(5322), 1, - anon_sym_CARET, - ACTIONS(5324), 1, - anon_sym_AMP_AMP, - ACTIONS(5326), 1, - anon_sym_PIPE_PIPE, - STATE(2396), 1, - sym_or_block, - STATE(2397), 1, - sym_argument_list, - STATE(4127), 1, - sym_type_parameters, - ACTIONS(4942), 2, - anon_sym_DOT, - anon_sym_QMARK_DOT, - ACTIONS(5020), 2, - anon_sym_is, - anon_sym_BANGis, - ACTIONS(5318), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(5328), 2, - anon_sym_in, - anon_sym_BANGin, - STATE(2814), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(5312), 3, - anon_sym_SLASH, - anon_sym_AMP, - anon_sym_GT_GT, - ACTIONS(5316), 3, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(5320), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(5310), 5, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - [87448] = 27, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_STAR, - ACTIONS(4932), 1, anon_sym_LPAREN, - ACTIONS(4934), 1, + ACTIONS(4940), 1, anon_sym_LBRACK, - ACTIONS(4936), 1, + ACTIONS(4942), 1, anon_sym_QMARK, - ACTIONS(4938), 1, + ACTIONS(4944), 1, anon_sym_BANG, - ACTIONS(4940), 1, + ACTIONS(4946), 1, anon_sym_LBRACK2, - ACTIONS(4944), 1, + ACTIONS(4950), 1, anon_sym_POUND_LBRACK, - ACTIONS(4994), 1, + ACTIONS(4996), 1, anon_sym_as, - ACTIONS(5008), 1, + ACTIONS(5012), 1, anon_sym_PLUS_PLUS, - ACTIONS(5010), 1, + ACTIONS(5014), 1, anon_sym_DASH_DASH, - ACTIONS(5018), 1, + ACTIONS(5022), 1, anon_sym_or, - ACTIONS(5090), 1, + ACTIONS(5076), 1, anon_sym_CARET, - ACTIONS(5098), 1, + ACTIONS(5082), 1, anon_sym_AMP_AMP, - ACTIONS(5102), 1, + ACTIONS(5114), 1, anon_sym_PIPE_PIPE, - STATE(2396), 1, - sym_or_block, - STATE(2397), 1, + STATE(2298), 1, sym_argument_list, - STATE(4127), 1, + STATE(2299), 1, + sym_or_block, + STATE(4251), 1, sym_type_parameters, - ACTIONS(4942), 2, + ACTIONS(4948), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - ACTIONS(5094), 2, + ACTIONS(5078), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(5100), 2, + ACTIONS(5084), 2, anon_sym_in, anon_sym_BANGin, - ACTIONS(5462), 2, + ACTIONS(5476), 2, anon_sym_is, anon_sym_BANGis, - STATE(2815), 2, + STATE(2823), 2, sym_line_comment, sym_block_comment, - ACTIONS(5084), 3, + ACTIONS(5070), 3, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5088), 3, + ACTIONS(5074), 3, anon_sym_SLASH, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(5096), 4, + ACTIONS(5080), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(5086), 5, + ACTIONS(5072), 5, anon_sym_STAR, anon_sym_PERCENT, anon_sym_LT_LT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - [87546] = 26, + [88106] = 25, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, @@ -264618,49 +265188,48 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_thread, ACTIONS(91), 1, anon_sym_atomic, - ACTIONS(597), 1, + ACTIONS(565), 1, sym_identifier, - ACTIONS(603), 1, + ACTIONS(571), 1, anon_sym_fn, - ACTIONS(607), 1, + ACTIONS(575), 1, anon_sym_struct, - ACTIONS(611), 1, + ACTIONS(579), 1, anon_sym_LBRACK2, - ACTIONS(615), 1, + ACTIONS(583), 1, anon_sym_shared, - ACTIONS(1851), 1, + ACTIONS(1889), 1, anon_sym_DOT, - ACTIONS(3586), 1, + ACTIONS(3564), 1, anon_sym_LPAREN, - ACTIONS(3588), 1, + ACTIONS(3566), 1, anon_sym_STAR, - ACTIONS(5302), 1, + ACTIONS(5308), 1, anon_sym_BANG, - ACTIONS(5306), 1, + ACTIONS(5312), 1, anon_sym_AMP, - ACTIONS(5448), 1, + ACTIONS(5462), 1, anon_sym_DOT_DOT_DOT, - STATE(4282), 1, - sym__plain_type_without_special, - STATE(4300), 1, + STATE(4033), 1, sym_plain_type, - STATE(4495), 1, + STATE(4498), 1, sym_reference_expression, - STATE(2816), 2, + STATE(2824), 2, sym_line_comment, sym_block_comment, - STATE(3541), 2, + STATE(3460), 2, sym_type_reference_expression, sym_qualified_type, - ACTIONS(2505), 3, + ACTIONS(2473), 3, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LBRACK, - STATE(2302), 3, + STATE(2360), 4, + sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(2303), 12, + STATE(2362), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -264673,92 +265242,21 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [87642] = 27, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_STAR, - ACTIONS(4932), 1, - anon_sym_LPAREN, - ACTIONS(4934), 1, - anon_sym_LBRACK, - ACTIONS(4936), 1, - anon_sym_QMARK, - ACTIONS(4938), 1, - anon_sym_BANG, - ACTIONS(4940), 1, - anon_sym_LBRACK2, - ACTIONS(4944), 1, - anon_sym_POUND_LBRACK, - ACTIONS(4994), 1, - anon_sym_as, - ACTIONS(5008), 1, - anon_sym_PLUS_PLUS, - ACTIONS(5010), 1, - anon_sym_DASH_DASH, - ACTIONS(5018), 1, - anon_sym_or, - ACTIONS(5090), 1, - anon_sym_CARET, - ACTIONS(5098), 1, - anon_sym_AMP_AMP, - ACTIONS(5102), 1, - anon_sym_PIPE_PIPE, - STATE(2396), 1, - sym_or_block, - STATE(2397), 1, - sym_argument_list, - STATE(4127), 1, - sym_type_parameters, - ACTIONS(4942), 2, - anon_sym_DOT, - anon_sym_QMARK_DOT, - ACTIONS(5094), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(5100), 2, - anon_sym_in, - anon_sym_BANGin, - ACTIONS(5266), 2, - anon_sym_is, - anon_sym_BANGis, - STATE(2817), 2, - sym_line_comment, - sym_block_comment, - 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(5096), 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, - [87740] = 8, + [88200] = 8, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(4789), 1, + ACTIONS(4793), 1, anon_sym_LBRACE, - ACTIONS(5464), 1, + ACTIONS(5478), 1, anon_sym_COMMA, - STATE(3876), 1, + STATE(3938), 1, aux_sym_expression_without_blocks_list_repeat1, - STATE(2818), 2, + STATE(2825), 2, sym_line_comment, sym_block_comment, - ACTIONS(2778), 11, + ACTIONS(2532), 11, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, @@ -264770,7 +265268,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(2776), 25, + ACTIONS(2530), 25, anon_sym_DOT, anon_sym_as, anon_sym_LPAREN, @@ -264796,390 +265294,362 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [87800] = 27, + [88260] = 27, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(4932), 1, + ACTIONS(4938), 1, anon_sym_LPAREN, - ACTIONS(4934), 1, + ACTIONS(4940), 1, anon_sym_LBRACK, - ACTIONS(4936), 1, + ACTIONS(4942), 1, anon_sym_QMARK, - ACTIONS(4938), 1, + ACTIONS(4944), 1, anon_sym_BANG, - ACTIONS(4940), 1, + ACTIONS(4946), 1, anon_sym_LBRACK2, - ACTIONS(4944), 1, + ACTIONS(4950), 1, anon_sym_POUND_LBRACK, - ACTIONS(4994), 1, + ACTIONS(4996), 1, anon_sym_as, - ACTIONS(5008), 1, + ACTIONS(5012), 1, anon_sym_PLUS_PLUS, - ACTIONS(5010), 1, + ACTIONS(5014), 1, anon_sym_DASH_DASH, - ACTIONS(5018), 1, - anon_sym_or, - ACTIONS(5090), 1, + ACTIONS(5016), 1, anon_sym_CARET, - ACTIONS(5098), 1, + ACTIONS(5018), 1, anon_sym_AMP_AMP, - ACTIONS(5102), 1, + ACTIONS(5020), 1, anon_sym_PIPE_PIPE, - STATE(2396), 1, - sym_or_block, - STATE(2397), 1, + ACTIONS(5022), 1, + anon_sym_or, + STATE(2298), 1, sym_argument_list, - STATE(4127), 1, + STATE(2299), 1, + sym_or_block, + STATE(4251), 1, sym_type_parameters, - ACTIONS(4942), 2, + ACTIONS(4948), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - ACTIONS(5094), 2, + ACTIONS(5008), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(5100), 2, - anon_sym_in, - anon_sym_BANGin, - ACTIONS(5466), 2, + ACTIONS(5024), 2, anon_sym_is, anon_sym_BANGis, - STATE(2819), 2, + ACTIONS(5026), 2, + anon_sym_in, + anon_sym_BANGin, + STATE(2826), 2, sym_line_comment, sym_block_comment, - ACTIONS(5084), 3, + ACTIONS(5002), 3, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5088), 3, + ACTIONS(5006), 3, anon_sym_SLASH, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(5096), 4, + ACTIONS(5010), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(5086), 5, + ACTIONS(5004), 5, anon_sym_STAR, anon_sym_PERCENT, anon_sym_LT_LT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - [87898] = 8, + [88358] = 27, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(1856), 1, + ACTIONS(4938), 1, + anon_sym_LPAREN, + ACTIONS(4940), 1, anon_sym_LBRACK, - ACTIONS(2505), 1, - anon_sym_LBRACE, - ACTIONS(5468), 2, - anon_sym_COMMA, - anon_sym_COLON_EQ, - STATE(2820), 2, + ACTIONS(4942), 1, + anon_sym_QMARK, + ACTIONS(4944), 1, + anon_sym_BANG, + ACTIONS(4946), 1, + anon_sym_LBRACK2, + ACTIONS(4950), 1, + anon_sym_POUND_LBRACK, + ACTIONS(4996), 1, + anon_sym_as, + ACTIONS(5012), 1, + anon_sym_PLUS_PLUS, + ACTIONS(5014), 1, + anon_sym_DASH_DASH, + ACTIONS(5022), 1, + anon_sym_or, + ACTIONS(5076), 1, + anon_sym_CARET, + ACTIONS(5082), 1, + anon_sym_AMP_AMP, + ACTIONS(5114), 1, + anon_sym_PIPE_PIPE, + STATE(2298), 1, + sym_argument_list, + STATE(2299), 1, + sym_or_block, + STATE(4251), 1, + sym_type_parameters, + ACTIONS(4948), 2, + anon_sym_DOT, + anon_sym_QMARK_DOT, + ACTIONS(5078), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(5084), 2, + anon_sym_in, + anon_sym_BANGin, + ACTIONS(5480), 2, + anon_sym_is, + anon_sym_BANGis, + STATE(2827), 2, sym_line_comment, sym_block_comment, - ACTIONS(1851), 11, + ACTIONS(5070), 3, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, + ACTIONS(5074), 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(1849), 24, - anon_sym_DOT, - anon_sym_as, - anon_sym_LPAREN, - anon_sym_STAR, - anon_sym_PERCENT, + ACTIONS(5080), 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(5072), 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, - [87958] = 27, + [88456] = 27, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(4932), 1, + ACTIONS(4938), 1, anon_sym_LPAREN, - ACTIONS(4934), 1, + ACTIONS(4940), 1, anon_sym_LBRACK, - ACTIONS(4936), 1, + ACTIONS(4942), 1, anon_sym_QMARK, - ACTIONS(4938), 1, + ACTIONS(4944), 1, anon_sym_BANG, - ACTIONS(4940), 1, + ACTIONS(4946), 1, anon_sym_LBRACK2, - ACTIONS(4944), 1, + ACTIONS(4950), 1, anon_sym_POUND_LBRACK, - ACTIONS(4994), 1, + ACTIONS(4996), 1, anon_sym_as, - ACTIONS(5008), 1, + ACTIONS(5012), 1, anon_sym_PLUS_PLUS, - ACTIONS(5010), 1, + ACTIONS(5014), 1, anon_sym_DASH_DASH, - ACTIONS(5018), 1, + ACTIONS(5022), 1, anon_sym_or, - ACTIONS(5090), 1, + ACTIONS(5076), 1, anon_sym_CARET, - ACTIONS(5098), 1, + ACTIONS(5082), 1, anon_sym_AMP_AMP, - ACTIONS(5102), 1, + ACTIONS(5114), 1, anon_sym_PIPE_PIPE, - STATE(2396), 1, - sym_or_block, - STATE(2397), 1, + STATE(2298), 1, sym_argument_list, - STATE(4127), 1, + STATE(2299), 1, + sym_or_block, + STATE(4251), 1, sym_type_parameters, - ACTIONS(4942), 2, + ACTIONS(4948), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - ACTIONS(5094), 2, + ACTIONS(5078), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(5100), 2, + ACTIONS(5084), 2, anon_sym_in, anon_sym_BANGin, - ACTIONS(5470), 2, + ACTIONS(5482), 2, anon_sym_is, anon_sym_BANGis, - STATE(2821), 2, + STATE(2828), 2, sym_line_comment, sym_block_comment, - ACTIONS(5084), 3, + ACTIONS(5070), 3, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5088), 3, + ACTIONS(5074), 3, anon_sym_SLASH, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(5096), 4, + ACTIONS(5080), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(5086), 5, + ACTIONS(5072), 5, anon_sym_STAR, anon_sym_PERCENT, anon_sym_LT_LT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - [88056] = 5, + [88554] = 27, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - STATE(2822), 2, + ACTIONS(4938), 1, + anon_sym_LPAREN, + ACTIONS(4940), 1, + anon_sym_LBRACK, + ACTIONS(4942), 1, + anon_sym_QMARK, + ACTIONS(4944), 1, + anon_sym_BANG, + ACTIONS(4946), 1, + anon_sym_LBRACK2, + ACTIONS(4950), 1, + anon_sym_POUND_LBRACK, + ACTIONS(4996), 1, + anon_sym_as, + ACTIONS(5012), 1, + anon_sym_PLUS_PLUS, + ACTIONS(5014), 1, + anon_sym_DASH_DASH, + ACTIONS(5022), 1, + anon_sym_or, + ACTIONS(5328), 1, + anon_sym_CARET, + ACTIONS(5330), 1, + anon_sym_AMP_AMP, + ACTIONS(5332), 1, + anon_sym_PIPE_PIPE, + STATE(2298), 1, + sym_argument_list, + STATE(2299), 1, + sym_or_block, + STATE(4251), 1, + sym_type_parameters, + ACTIONS(4948), 2, + anon_sym_DOT, + anon_sym_QMARK_DOT, + ACTIONS(5024), 2, + anon_sym_is, + anon_sym_BANGis, + ACTIONS(5324), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(5334), 2, + anon_sym_in, + anon_sym_BANGin, + STATE(2829), 2, sym_line_comment, sym_block_comment, - ACTIONS(2253), 11, + ACTIONS(5318), 3, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, + ACTIONS(5322), 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(2256), 28, - anon_sym_SEMI, - anon_sym_DOT, - anon_sym_as, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_STAR, - anon_sym_PERCENT, + ACTIONS(5326), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - anon_sym_LBRACK, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_CARET, + ACTIONS(5320), 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, - [88110] = 27, + [88652] = 27, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(4932), 1, + ACTIONS(4938), 1, anon_sym_LPAREN, - ACTIONS(4934), 1, + ACTIONS(4940), 1, anon_sym_LBRACK, - ACTIONS(4936), 1, + ACTIONS(4942), 1, anon_sym_QMARK, - ACTIONS(4938), 1, + ACTIONS(4944), 1, anon_sym_BANG, - ACTIONS(4940), 1, + ACTIONS(4946), 1, anon_sym_LBRACK2, - ACTIONS(4944), 1, + ACTIONS(4950), 1, anon_sym_POUND_LBRACK, - ACTIONS(4994), 1, + ACTIONS(4996), 1, anon_sym_as, - ACTIONS(5008), 1, + ACTIONS(5012), 1, anon_sym_PLUS_PLUS, - ACTIONS(5010), 1, + ACTIONS(5014), 1, anon_sym_DASH_DASH, - ACTIONS(5018), 1, + ACTIONS(5022), 1, anon_sym_or, - ACTIONS(5090), 1, + ACTIONS(5076), 1, anon_sym_CARET, - ACTIONS(5098), 1, + ACTIONS(5082), 1, anon_sym_AMP_AMP, - ACTIONS(5102), 1, + ACTIONS(5114), 1, anon_sym_PIPE_PIPE, - STATE(2396), 1, - sym_or_block, - STATE(2397), 1, + STATE(2298), 1, sym_argument_list, - STATE(4127), 1, + STATE(2299), 1, + sym_or_block, + STATE(4251), 1, sym_type_parameters, - ACTIONS(4942), 2, + ACTIONS(4948), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - ACTIONS(5094), 2, + ACTIONS(5024), 2, + anon_sym_is, + anon_sym_BANGis, + ACTIONS(5078), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(5100), 2, + ACTIONS(5084), 2, anon_sym_in, anon_sym_BANGin, - ACTIONS(5472), 2, - anon_sym_is, - anon_sym_BANGis, - STATE(2823), 2, + STATE(2830), 2, sym_line_comment, sym_block_comment, - ACTIONS(5084), 3, + ACTIONS(5070), 3, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5088), 3, + ACTIONS(5074), 3, anon_sym_SLASH, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(5096), 4, + ACTIONS(5080), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(5086), 5, + ACTIONS(5072), 5, anon_sym_STAR, anon_sym_PERCENT, anon_sym_LT_LT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - [88208] = 25, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_STAR, - ACTIONS(47), 1, - anon_sym_QMARK, - ACTIONS(85), 1, - anon_sym_map_LBRACK, - ACTIONS(87), 1, - anon_sym_chan, - ACTIONS(89), 1, - anon_sym_thread, - ACTIONS(91), 1, - anon_sym_atomic, - ACTIONS(597), 1, - sym_identifier, - ACTIONS(603), 1, - anon_sym_fn, - ACTIONS(607), 1, - anon_sym_struct, - ACTIONS(611), 1, - anon_sym_LBRACK2, - ACTIONS(615), 1, - anon_sym_shared, - ACTIONS(1851), 1, - anon_sym_DOT, - ACTIONS(3586), 1, - anon_sym_LPAREN, - ACTIONS(3588), 1, - anon_sym_STAR, - ACTIONS(5302), 1, - anon_sym_BANG, - ACTIONS(5306), 1, - anon_sym_AMP, - ACTIONS(5474), 1, - anon_sym_DOT_DOT_DOT, - STATE(4011), 1, - sym_plain_type, - STATE(4495), 1, - sym_reference_expression, - STATE(2824), 2, - sym_line_comment, - sym_block_comment, - STATE(3541), 2, - sym_type_reference_expression, - sym_qualified_type, - ACTIONS(2505), 3, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LBRACK, - STATE(2302), 4, - sym__plain_type_without_special, - sym_multi_return_type, - sym_result_type, - sym_option_type, - STATE(2303), 12, - sym_anon_struct_type, - sym_fixed_array_type, - sym_array_type, - sym_pointer_type, - sym_wrong_pointer_type, - sym_map_type, - sym_channel_type, - sym_shared_type, - sym_thread_type, - sym_atomic_type, - sym_generic_type, - sym_function_type, - [88302] = 26, + [88750] = 26, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, @@ -265194,49 +265664,49 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_thread, ACTIONS(91), 1, anon_sym_atomic, - ACTIONS(597), 1, + ACTIONS(565), 1, sym_identifier, - ACTIONS(603), 1, + ACTIONS(571), 1, anon_sym_fn, - ACTIONS(607), 1, + ACTIONS(575), 1, anon_sym_struct, - ACTIONS(611), 1, + ACTIONS(579), 1, anon_sym_LBRACK2, - ACTIONS(615), 1, + ACTIONS(583), 1, anon_sym_shared, - ACTIONS(1851), 1, + ACTIONS(1889), 1, anon_sym_DOT, - ACTIONS(3586), 1, + ACTIONS(3564), 1, anon_sym_LPAREN, - ACTIONS(3588), 1, + ACTIONS(3566), 1, anon_sym_STAR, - ACTIONS(5302), 1, + ACTIONS(5308), 1, anon_sym_BANG, - ACTIONS(5306), 1, + ACTIONS(5312), 1, anon_sym_AMP, - ACTIONS(5474), 1, + ACTIONS(5472), 1, anon_sym_DOT_DOT_DOT, - STATE(4009), 1, + STATE(4017), 1, sym__plain_type_without_special, - STATE(4011), 1, + STATE(4020), 1, sym_plain_type, - STATE(4495), 1, + STATE(4498), 1, sym_reference_expression, - STATE(2825), 2, + STATE(2831), 2, sym_line_comment, sym_block_comment, - STATE(3541), 2, + STATE(3460), 2, sym_type_reference_expression, sym_qualified_type, - ACTIONS(2505), 3, + ACTIONS(2473), 3, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LBRACK, - STATE(2302), 3, + STATE(2360), 3, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(2303), 12, + STATE(2362), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -265249,303 +265719,136 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [88398] = 27, + [88846] = 27, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(4932), 1, + ACTIONS(4938), 1, anon_sym_LPAREN, - ACTIONS(4934), 1, + ACTIONS(4940), 1, anon_sym_LBRACK, - ACTIONS(4936), 1, + ACTIONS(4942), 1, anon_sym_QMARK, - ACTIONS(4938), 1, + ACTIONS(4944), 1, anon_sym_BANG, - ACTIONS(4940), 1, + ACTIONS(4946), 1, anon_sym_LBRACK2, - ACTIONS(4944), 1, + ACTIONS(4950), 1, anon_sym_POUND_LBRACK, - ACTIONS(4994), 1, + ACTIONS(4996), 1, anon_sym_as, - ACTIONS(5008), 1, + ACTIONS(5012), 1, anon_sym_PLUS_PLUS, - ACTIONS(5010), 1, + ACTIONS(5014), 1, anon_sym_DASH_DASH, - ACTIONS(5018), 1, + ACTIONS(5022), 1, anon_sym_or, - ACTIONS(5090), 1, + ACTIONS(5076), 1, anon_sym_CARET, - ACTIONS(5098), 1, + ACTIONS(5082), 1, anon_sym_AMP_AMP, - ACTIONS(5102), 1, + ACTIONS(5114), 1, anon_sym_PIPE_PIPE, - STATE(2396), 1, - sym_or_block, - STATE(2397), 1, + STATE(2298), 1, sym_argument_list, - STATE(4127), 1, + STATE(2299), 1, + sym_or_block, + STATE(4251), 1, sym_type_parameters, - ACTIONS(4942), 2, + ACTIONS(4948), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - ACTIONS(5094), 2, + ACTIONS(5078), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(5100), 2, + ACTIONS(5084), 2, anon_sym_in, anon_sym_BANGin, - ACTIONS(5476), 2, + ACTIONS(5484), 2, anon_sym_is, anon_sym_BANGis, - STATE(2826), 2, + STATE(2832), 2, sym_line_comment, sym_block_comment, - ACTIONS(5084), 3, + ACTIONS(5070), 3, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5088), 3, + ACTIONS(5074), 3, anon_sym_SLASH, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(5096), 4, + ACTIONS(5080), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(5086), 5, + ACTIONS(5072), 5, anon_sym_STAR, anon_sym_PERCENT, anon_sym_LT_LT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - [88496] = 27, + [88944] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(4932), 1, - anon_sym_LPAREN, - ACTIONS(4934), 1, - anon_sym_LBRACK, - ACTIONS(4936), 1, - anon_sym_QMARK, - ACTIONS(4938), 1, - anon_sym_BANG, - ACTIONS(4940), 1, - anon_sym_LBRACK2, - ACTIONS(4944), 1, - anon_sym_POUND_LBRACK, - ACTIONS(4994), 1, - anon_sym_as, - ACTIONS(5008), 1, - anon_sym_PLUS_PLUS, - ACTIONS(5010), 1, - anon_sym_DASH_DASH, - ACTIONS(5018), 1, - anon_sym_or, - ACTIONS(5090), 1, - anon_sym_CARET, - ACTIONS(5098), 1, - anon_sym_AMP_AMP, - ACTIONS(5102), 1, - anon_sym_PIPE_PIPE, - STATE(2396), 1, - sym_or_block, - STATE(2397), 1, - sym_argument_list, - STATE(4127), 1, - sym_type_parameters, - ACTIONS(4942), 2, - anon_sym_DOT, - anon_sym_QMARK_DOT, - ACTIONS(5094), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(5100), 2, - anon_sym_in, - anon_sym_BANGin, - ACTIONS(5478), 2, - anon_sym_is, - anon_sym_BANGis, - STATE(2827), 2, + STATE(2833), 2, sym_line_comment, sym_block_comment, - ACTIONS(5084), 3, + ACTIONS(2846), 11, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5088), 3, anon_sym_SLASH, - anon_sym_AMP, - anon_sym_GT_GT, - ACTIONS(5096), 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, - [88594] = 27, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_STAR, - ACTIONS(4932), 1, - anon_sym_LPAREN, - ACTIONS(4934), 1, - anon_sym_LBRACK, - ACTIONS(4936), 1, + anon_sym_LT, + anon_sym_GT, anon_sym_QMARK, - ACTIONS(4938), 1, anon_sym_BANG, - ACTIONS(4940), 1, anon_sym_LBRACK2, - ACTIONS(4944), 1, - anon_sym_POUND_LBRACK, - ACTIONS(4994), 1, - anon_sym_as, - ACTIONS(5008), 1, - anon_sym_PLUS_PLUS, - ACTIONS(5010), 1, - anon_sym_DASH_DASH, - ACTIONS(5018), 1, - anon_sym_or, - ACTIONS(5090), 1, - anon_sym_CARET, - ACTIONS(5098), 1, - anon_sym_AMP_AMP, - ACTIONS(5102), 1, - anon_sym_PIPE_PIPE, - STATE(2396), 1, - sym_or_block, - STATE(2397), 1, - sym_argument_list, - STATE(4127), 1, - sym_type_parameters, - ACTIONS(4942), 2, - anon_sym_DOT, - anon_sym_QMARK_DOT, - ACTIONS(5094), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(5100), 2, - anon_sym_in, - anon_sym_BANGin, - ACTIONS(5480), 2, - anon_sym_is, - anon_sym_BANGis, - STATE(2828), 2, - sym_line_comment, - sym_block_comment, - 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(5096), 4, + ACTIONS(2844), 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(5086), 5, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - [88692] = 27, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_STAR, - ACTIONS(4932), 1, - anon_sym_LPAREN, - ACTIONS(4934), 1, anon_sym_LBRACK, - ACTIONS(4936), 1, - anon_sym_QMARK, - ACTIONS(4938), 1, - anon_sym_BANG, - ACTIONS(4940), 1, - anon_sym_LBRACK2, - ACTIONS(4944), 1, - anon_sym_POUND_LBRACK, - ACTIONS(4994), 1, - anon_sym_as, - ACTIONS(5008), 1, + anon_sym_COLON, anon_sym_PLUS_PLUS, - ACTIONS(5010), 1, anon_sym_DASH_DASH, - ACTIONS(5018), 1, - anon_sym_or, - ACTIONS(5090), 1, anon_sym_CARET, - ACTIONS(5098), 1, + anon_sym_LT_DASH, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_AMP_CARET, anon_sym_AMP_AMP, - ACTIONS(5102), 1, anon_sym_PIPE_PIPE, - STATE(2396), 1, - sym_or_block, - STATE(2397), 1, - sym_argument_list, - STATE(4127), 1, - sym_type_parameters, - ACTIONS(4942), 2, - anon_sym_DOT, + anon_sym_or, anon_sym_QMARK_DOT, - ACTIONS(5094), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(5100), 2, - anon_sym_in, - anon_sym_BANGin, - ACTIONS(5482), 2, + anon_sym_POUND_LBRACK, anon_sym_is, anon_sym_BANGis, - STATE(2829), 2, - sym_line_comment, - sym_block_comment, - 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(5096), 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, - [88790] = 6, + anon_sym_in, + anon_sym_BANGin, + [88997] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(3910), 2, - anon_sym_SEMI, - anon_sym_RBRACK, - STATE(2830), 2, + STATE(1911), 1, + sym_block, + STATE(2834), 2, sym_line_comment, sym_block_comment, - ACTIONS(3050), 12, - anon_sym_DOT, + ACTIONS(2449), 11, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, @@ -265557,8 +265860,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(3048), 25, + ACTIONS(2447), 26, + anon_sym_DOT, anon_sym_as, + anon_sym_LBRACE, anon_sym_LPAREN, anon_sym_STAR, anon_sym_PERCENT, @@ -265582,89 +265887,129 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - anon_sym_DOT_DOT, - [88846] = 27, - ACTIONS(3), 1, + [89052] = 23, + ACTIONS(497), 1, anon_sym_SLASH_SLASH, - ACTIONS(5), 1, + ACTIONS(499), 1, anon_sym_SLASH_STAR, - ACTIONS(4932), 1, + ACTIONS(3426), 1, + sym_identifier, + ACTIONS(3632), 1, anon_sym_LPAREN, - ACTIONS(4934), 1, - anon_sym_LBRACK, - ACTIONS(4936), 1, + ACTIONS(3638), 1, + anon_sym_struct, + ACTIONS(5486), 1, + anon_sym_fn, + ACTIONS(5488), 1, + anon_sym_STAR, + ACTIONS(5490), 1, anon_sym_QMARK, - ACTIONS(4938), 1, + ACTIONS(5492), 1, anon_sym_BANG, - ACTIONS(4940), 1, + ACTIONS(5494), 1, anon_sym_LBRACK2, - ACTIONS(4944), 1, - anon_sym_POUND_LBRACK, - ACTIONS(4994), 1, - anon_sym_as, - ACTIONS(5008), 1, - anon_sym_PLUS_PLUS, - ACTIONS(5010), 1, - anon_sym_DASH_DASH, - ACTIONS(5018), 1, - anon_sym_or, - ACTIONS(5090), 1, - anon_sym_CARET, - ACTIONS(5098), 1, - anon_sym_AMP_AMP, - ACTIONS(5102), 1, - anon_sym_PIPE_PIPE, - STATE(2396), 1, - sym_or_block, - STATE(2397), 1, - sym_argument_list, - STATE(4127), 1, - sym_type_parameters, - ACTIONS(4942), 2, - anon_sym_DOT, - anon_sym_QMARK_DOT, - ACTIONS(5020), 2, - anon_sym_is, - anon_sym_BANGis, - ACTIONS(5094), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(5100), 2, - anon_sym_in, - anon_sym_BANGin, - STATE(2831), 2, + ACTIONS(5496), 1, + anon_sym_AMP, + ACTIONS(5498), 1, + anon_sym_shared, + ACTIONS(5500), 1, + anon_sym_map_LBRACK, + ACTIONS(5502), 1, + anon_sym_chan, + ACTIONS(5504), 1, + anon_sym_thread, + ACTIONS(5506), 1, + anon_sym_atomic, + STATE(1634), 1, + sym_plain_type, + STATE(4351), 1, + sym_reference_expression, + STATE(2835), 2, + sym_line_comment, + sym_block_comment, + STATE(3305), 2, + sym_type_reference_expression, + sym_qualified_type, + ACTIONS(589), 4, + anon_sym_LF, + anon_sym_CR, + anon_sym_CR_LF, + anon_sym_SEMI, + STATE(1647), 4, + sym__plain_type_without_special, + sym_multi_return_type, + sym_result_type, + sym_option_type, + STATE(1667), 12, + sym_anon_struct_type, + sym_fixed_array_type, + sym_array_type, + sym_pointer_type, + sym_wrong_pointer_type, + sym_map_type, + sym_channel_type, + sym_shared_type, + sym_thread_type, + sym_atomic_type, + sym_generic_type, + sym_function_type, + [89141] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + STATE(2836), 2, sym_line_comment, sym_block_comment, - ACTIONS(5084), 3, + ACTIONS(2886), 11, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5088), 3, anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + anon_sym_QMARK, + anon_sym_BANG, + anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(5096), 4, + ACTIONS(2884), 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(5086), 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, - [88944] = 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, + [89194] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - STATE(2590), 1, - sym_block, - STATE(2832), 2, + STATE(2837), 2, sym_line_comment, sym_block_comment, - ACTIONS(2753), 11, + ACTIONS(2191), 11, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, @@ -265676,10 +266021,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(2751), 26, + ACTIONS(2189), 27, anon_sym_DOT, anon_sym_as, - anon_sym_LBRACE, anon_sym_LPAREN, anon_sym_STAR, anon_sym_PERCENT, @@ -265688,9 +266032,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, @@ -265703,15 +266049,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [88999] = 5, + [89247] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - STATE(2833), 2, + STATE(1136), 1, + sym_block, + STATE(2838), 2, sym_line_comment, sym_block_comment, - ACTIONS(2239), 11, + ACTIONS(2449), 11, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, @@ -265723,9 +266071,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(2237), 27, + ACTIONS(2447), 26, anon_sym_DOT, anon_sym_as, + anon_sym_LBRACE, anon_sym_LPAREN, anon_sym_STAR, anon_sym_PERCENT, @@ -265734,11 +266083,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, @@ -265751,15 +266098,81 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [89052] = 5, + [89302] = 23, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - STATE(2834), 2, + ACTIONS(47), 1, + anon_sym_QMARK, + ACTIONS(85), 1, + anon_sym_map_LBRACK, + ACTIONS(87), 1, + anon_sym_chan, + ACTIONS(89), 1, + anon_sym_thread, + ACTIONS(91), 1, + anon_sym_atomic, + ACTIONS(565), 1, + sym_identifier, + ACTIONS(571), 1, + anon_sym_fn, + ACTIONS(575), 1, + anon_sym_struct, + ACTIONS(583), 1, + anon_sym_shared, + ACTIONS(3564), 1, + anon_sym_LPAREN, + ACTIONS(3566), 1, + anon_sym_STAR, + ACTIONS(5308), 1, + anon_sym_BANG, + ACTIONS(5310), 1, + anon_sym_LBRACK2, + ACTIONS(5312), 1, + anon_sym_AMP, + STATE(2325), 1, + sym_plain_type, + STATE(4498), 1, + sym_reference_expression, + STATE(2839), 2, + sym_line_comment, + sym_block_comment, + STATE(3460), 2, + sym_type_reference_expression, + sym_qualified_type, + ACTIONS(585), 4, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_RBRACK, + STATE(2360), 4, + sym__plain_type_without_special, + sym_multi_return_type, + sym_result_type, + sym_option_type, + STATE(2362), 12, + sym_anon_struct_type, + sym_fixed_array_type, + sym_array_type, + sym_pointer_type, + sym_wrong_pointer_type, + sym_map_type, + sym_channel_type, + sym_shared_type, + sym_thread_type, + sym_atomic_type, + sym_generic_type, + sym_function_type, + [89391] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + STATE(2840), 2, sym_line_comment, sym_block_comment, - ACTIONS(2731), 11, + ACTIONS(2125), 11, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, @@ -265771,7 +266184,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(2729), 27, + ACTIONS(2123), 27, anon_sym_DOT, anon_sym_as, anon_sym_LPAREN, @@ -265799,15 +266212,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [89105] = 5, + [89444] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - STATE(2835), 2, + STATE(2841), 2, sym_line_comment, sym_block_comment, - ACTIONS(2790), 11, + ACTIONS(1987), 11, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, @@ -265819,7 +266232,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(2788), 27, + ACTIONS(1989), 27, anon_sym_DOT, anon_sym_as, anon_sym_LPAREN, @@ -265847,15 +266260,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [89158] = 5, + [89497] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - STATE(2836), 2, + STATE(2131), 1, + sym_block, + STATE(2842), 2, sym_line_comment, sym_block_comment, - ACTIONS(2904), 11, + ACTIONS(2449), 11, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, @@ -265867,9 +266282,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(2902), 27, + ACTIONS(2447), 26, anon_sym_DOT, anon_sym_as, + anon_sym_LBRACE, anon_sym_LPAREN, anon_sym_STAR, anon_sym_PERCENT, @@ -265878,11 +266294,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, @@ -265895,15 +266309,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [89211] = 5, + [89552] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - STATE(2837), 2, + STATE(2843), 2, sym_line_comment, sym_block_comment, - ACTIONS(2908), 11, + ACTIONS(2119), 11, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, @@ -265915,7 +266329,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(2906), 27, + ACTIONS(2117), 27, anon_sym_DOT, anon_sym_as, anon_sym_LPAREN, @@ -265943,15 +266357,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [89264] = 5, + [89605] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - STATE(2838), 2, + STATE(257), 1, + sym_block, + STATE(2844), 2, sym_line_comment, sym_block_comment, - ACTIONS(2233), 11, + ACTIONS(2449), 11, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, @@ -265963,9 +266379,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(2231), 27, + ACTIONS(2447), 26, anon_sym_DOT, anon_sym_as, + anon_sym_LBRACE, anon_sym_LPAREN, anon_sym_STAR, anon_sym_PERCENT, @@ -265974,11 +266391,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, @@ -265991,15 +266406,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [89317] = 5, + [89660] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - STATE(2839), 2, + STATE(2845), 2, sym_line_comment, sym_block_comment, - ACTIONS(2281), 11, + ACTIONS(2862), 11, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, @@ -266011,7 +266426,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(2279), 27, + ACTIONS(2860), 27, anon_sym_DOT, anon_sym_as, anon_sym_LPAREN, @@ -266039,15 +266454,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [89370] = 5, + [89713] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - STATE(2840), 2, + STATE(2846), 2, sym_line_comment, sym_block_comment, - ACTIONS(2247), 11, + ACTIONS(3044), 11, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, @@ -266059,7 +266474,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(2245), 27, + ACTIONS(3042), 27, anon_sym_DOT, anon_sym_as, anon_sym_LPAREN, @@ -266087,133 +266502,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [89423] = 26, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_STAR, - ACTIONS(47), 1, - anon_sym_QMARK, - ACTIONS(85), 1, - anon_sym_map_LBRACK, - ACTIONS(87), 1, - anon_sym_chan, - ACTIONS(89), 1, - anon_sym_thread, - ACTIONS(91), 1, - anon_sym_atomic, - ACTIONS(597), 1, - sym_identifier, - ACTIONS(603), 1, - anon_sym_fn, - ACTIONS(607), 1, - anon_sym_struct, - ACTIONS(3586), 1, - anon_sym_LPAREN, - ACTIONS(3588), 1, - anon_sym_STAR, - ACTIONS(5298), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(5300), 1, - anon_sym_mut, - ACTIONS(5302), 1, - anon_sym_BANG, - ACTIONS(5304), 1, - anon_sym_LBRACK2, - ACTIONS(5306), 1, - anon_sym_AMP, - ACTIONS(5308), 1, - anon_sym_shared, - STATE(2989), 1, - sym_mutability_modifiers, - STATE(4134), 1, - sym_type_parameter_declaration, - STATE(4265), 1, - sym_plain_type, - STATE(4495), 1, - sym_reference_expression, - STATE(2841), 2, - sym_line_comment, - sym_block_comment, - STATE(3541), 2, - sym_type_reference_expression, - sym_qualified_type, - STATE(2302), 4, - sym__plain_type_without_special, - sym_multi_return_type, - sym_result_type, - sym_option_type, - STATE(2303), 12, - sym_anon_struct_type, - sym_fixed_array_type, - sym_array_type, - sym_pointer_type, - sym_wrong_pointer_type, - sym_map_type, - sym_channel_type, - sym_shared_type, - sym_thread_type, - sym_atomic_type, - sym_generic_type, - sym_function_type, - [89518] = 6, + [89766] = 8, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - STATE(2136), 1, - sym_block, - STATE(2842), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(2753), 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(2751), 26, - anon_sym_DOT, - anon_sym_as, - anon_sym_LBRACE, - anon_sym_LPAREN, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, + ACTIONS(1894), 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, + ACTIONS(2473), 1, + anon_sym_LBRACE, + ACTIONS(5508), 2, + anon_sym_COMMA, anon_sym_in, - anon_sym_BANGin, - [89573] = 5, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_STAR, - STATE(2843), 2, + STATE(2847), 2, sym_line_comment, sym_block_comment, - ACTIONS(1951), 11, + ACTIONS(1889), 11, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, @@ -266225,7 +266529,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(1953), 27, + ACTIONS(1887), 23, anon_sym_DOT, anon_sym_as, anon_sym_LPAREN, @@ -266235,12 +266539,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, @@ -266251,17 +266552,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_LBRACK, anon_sym_is, anon_sym_BANGis, - anon_sym_in, anon_sym_BANGin, - [89626] = 5, + [89825] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - STATE(2844), 2, + STATE(1901), 1, + sym_block, + STATE(2848), 2, sym_line_comment, sym_block_comment, - ACTIONS(2159), 11, + ACTIONS(2449), 11, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, @@ -266273,9 +266575,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(2157), 27, + ACTIONS(2447), 26, anon_sym_DOT, anon_sym_as, + anon_sym_LBRACE, anon_sym_LPAREN, anon_sym_STAR, anon_sym_PERCENT, @@ -266284,11 +266587,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, @@ -266301,15 +266602,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [89679] = 5, + [89880] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - STATE(2845), 2, + STATE(2849), 2, sym_line_comment, sym_block_comment, - ACTIONS(2309), 11, + ACTIONS(2858), 11, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, @@ -266321,7 +266622,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(2307), 27, + ACTIONS(2856), 27, anon_sym_DOT, anon_sym_as, anon_sym_LPAREN, @@ -266349,111 +266650,81 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [89732] = 5, + [89933] = 23, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - STATE(2846), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(2487), 11, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, + ACTIONS(47), 1, anon_sym_QMARK, - anon_sym_BANG, - anon_sym_LBRACK2, - anon_sym_AMP, - anon_sym_GT_GT, - ACTIONS(2485), 27, - anon_sym_DOT, - anon_sym_as, + ACTIONS(85), 1, + anon_sym_map_LBRACK, + ACTIONS(87), 1, + anon_sym_chan, + ACTIONS(89), 1, + anon_sym_thread, + ACTIONS(91), 1, + anon_sym_atomic, + ACTIONS(565), 1, + sym_identifier, + ACTIONS(571), 1, + anon_sym_fn, + ACTIONS(575), 1, + anon_sym_struct, + ACTIONS(583), 1, + anon_sym_shared, + ACTIONS(3564), 1, anon_sym_LPAREN, + ACTIONS(3566), 1, anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_LBRACK, - anon_sym_COLON, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_CARET, - anon_sym_LT_DASH, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_or, - anon_sym_QMARK_DOT, - anon_sym_POUND_LBRACK, - anon_sym_is, - anon_sym_BANGis, - anon_sym_in, - anon_sym_BANGin, - [89785] = 5, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_STAR, - STATE(2847), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(2850), 11, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - anon_sym_QMARK, + ACTIONS(5308), 1, anon_sym_BANG, + ACTIONS(5310), 1, anon_sym_LBRACK2, + ACTIONS(5312), 1, anon_sym_AMP, - anon_sym_GT_GT, - ACTIONS(2848), 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, - [89838] = 5, + STATE(2416), 1, + sym_plain_type, + STATE(4498), 1, + sym_reference_expression, + STATE(2850), 2, + sym_line_comment, + sym_block_comment, + STATE(3460), 2, + sym_type_reference_expression, + sym_qualified_type, + ACTIONS(617), 4, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_RBRACK, + STATE(2360), 4, + sym__plain_type_without_special, + sym_multi_return_type, + sym_result_type, + sym_option_type, + STATE(2362), 12, + sym_anon_struct_type, + sym_fixed_array_type, + sym_array_type, + sym_pointer_type, + sym_wrong_pointer_type, + sym_map_type, + sym_channel_type, + sym_shared_type, + sym_thread_type, + sym_atomic_type, + sym_generic_type, + sym_function_type, + [90022] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - STATE(2848), 2, + STATE(2851), 2, sym_line_comment, sym_block_comment, - ACTIONS(2473), 11, + ACTIONS(2854), 11, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, @@ -266465,7 +266736,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(2471), 27, + ACTIONS(2852), 27, anon_sym_DOT, anon_sym_as, anon_sym_LPAREN, @@ -266493,15 +266764,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [89891] = 5, + [90075] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - STATE(2849), 2, + STATE(2852), 2, sym_line_comment, sym_block_comment, - ACTIONS(2477), 11, + ACTIONS(2696), 11, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, @@ -266513,7 +266784,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(2475), 27, + ACTIONS(2694), 27, anon_sym_DOT, anon_sym_as, anon_sym_LPAREN, @@ -266541,81 +266812,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [89944] = 23, - ACTIONS(497), 1, - anon_sym_SLASH_SLASH, - ACTIONS(499), 1, - anon_sym_SLASH_STAR, - ACTIONS(3420), 1, - sym_identifier, - ACTIONS(3628), 1, - anon_sym_LPAREN, - ACTIONS(3634), 1, - anon_sym_struct, - ACTIONS(5484), 1, - anon_sym_fn, - ACTIONS(5486), 1, - anon_sym_STAR, - ACTIONS(5488), 1, - anon_sym_QMARK, - ACTIONS(5490), 1, - anon_sym_BANG, - ACTIONS(5492), 1, - anon_sym_LBRACK2, - ACTIONS(5494), 1, - anon_sym_AMP, - ACTIONS(5496), 1, - anon_sym_shared, - ACTIONS(5498), 1, - anon_sym_map_LBRACK, - ACTIONS(5500), 1, - anon_sym_chan, - ACTIONS(5502), 1, - anon_sym_thread, - ACTIONS(5504), 1, - anon_sym_atomic, - STATE(1663), 1, - sym_plain_type, - STATE(4341), 1, - sym_reference_expression, - STATE(2850), 2, - sym_line_comment, - sym_block_comment, - STATE(3286), 2, - sym_type_reference_expression, - sym_qualified_type, - ACTIONS(567), 4, - anon_sym_LF, - anon_sym_CR, - anon_sym_CR_LF, - anon_sym_SEMI, - STATE(1635), 4, - sym__plain_type_without_special, - sym_multi_return_type, - sym_result_type, - sym_option_type, - STATE(1629), 12, - sym_anon_struct_type, - sym_fixed_array_type, - sym_array_type, - sym_pointer_type, - sym_wrong_pointer_type, - sym_map_type, - sym_channel_type, - sym_shared_type, - sym_thread_type, - sym_atomic_type, - sym_generic_type, - sym_function_type, - [90033] = 5, + [90128] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - STATE(2851), 2, + STATE(2853), 2, sym_line_comment, sym_block_comment, - ACTIONS(2353), 11, + ACTIONS(2505), 11, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, @@ -266627,7 +266832,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(2351), 27, + ACTIONS(2503), 27, anon_sym_DOT, anon_sym_as, anon_sym_LPAREN, @@ -266655,15 +266860,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [90086] = 5, + [90181] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - STATE(2852), 2, + STATE(2854), 2, sym_line_comment, sym_block_comment, - ACTIONS(2659), 11, + ACTIONS(2467), 11, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, @@ -266675,7 +266880,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(2657), 27, + ACTIONS(2465), 27, anon_sym_DOT, anon_sym_as, anon_sym_LPAREN, @@ -266703,81 +266908,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [90139] = 23, - ACTIONS(497), 1, - anon_sym_SLASH_SLASH, - ACTIONS(499), 1, - anon_sym_SLASH_STAR, - ACTIONS(3420), 1, - sym_identifier, - ACTIONS(3628), 1, - anon_sym_LPAREN, - ACTIONS(3634), 1, - anon_sym_struct, - ACTIONS(5484), 1, - anon_sym_fn, - ACTIONS(5486), 1, - anon_sym_STAR, - ACTIONS(5488), 1, - anon_sym_QMARK, - ACTIONS(5490), 1, - anon_sym_BANG, - ACTIONS(5492), 1, - anon_sym_LBRACK2, - ACTIONS(5494), 1, - anon_sym_AMP, - ACTIONS(5496), 1, - anon_sym_shared, - ACTIONS(5498), 1, - anon_sym_map_LBRACK, - ACTIONS(5500), 1, - anon_sym_chan, - ACTIONS(5502), 1, - anon_sym_thread, - ACTIONS(5504), 1, - anon_sym_atomic, - STATE(1640), 1, - sym_plain_type, - STATE(4341), 1, - sym_reference_expression, - STATE(2853), 2, - sym_line_comment, - sym_block_comment, - STATE(3286), 2, - sym_type_reference_expression, - sym_qualified_type, - ACTIONS(619), 4, - anon_sym_LF, - anon_sym_CR, - anon_sym_CR_LF, - anon_sym_SEMI, - STATE(1635), 4, - sym__plain_type_without_special, - sym_multi_return_type, - sym_result_type, - sym_option_type, - STATE(1629), 12, - sym_anon_struct_type, - sym_fixed_array_type, - sym_array_type, - sym_pointer_type, - sym_wrong_pointer_type, - sym_map_type, - sym_channel_type, - sym_shared_type, - sym_thread_type, - sym_atomic_type, - sym_generic_type, - sym_function_type, - [90228] = 5, + [90234] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - STATE(2854), 2, + STATE(2855), 2, sym_line_comment, sym_block_comment, - ACTIONS(2651), 11, + ACTIONS(2463), 11, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, @@ -266789,7 +266928,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(2649), 27, + ACTIONS(2461), 27, anon_sym_DOT, anon_sym_as, anon_sym_LPAREN, @@ -266817,17 +266956,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [90281] = 6, + [90287] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - STATE(1760), 1, - sym_block, - STATE(2855), 2, + STATE(2856), 2, sym_line_comment, sym_block_comment, - ACTIONS(2753), 11, + ACTIONS(3050), 11, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, @@ -266839,10 +266976,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(2751), 26, + ACTIONS(3048), 27, anon_sym_DOT, anon_sym_as, - anon_sym_LBRACE, anon_sym_LPAREN, anon_sym_STAR, anon_sym_PERCENT, @@ -266851,9 +266987,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, @@ -266866,15 +267004,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [90336] = 5, + [90340] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - STATE(2856), 2, + STATE(2857), 2, sym_line_comment, sym_block_comment, - ACTIONS(2735), 11, + ACTIONS(2203), 11, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, @@ -266886,7 +267024,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(2733), 27, + ACTIONS(2201), 27, anon_sym_DOT, anon_sym_as, anon_sym_LPAREN, @@ -266914,15 +267052,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [90389] = 5, + [90393] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - STATE(2857), 2, + STATE(2858), 2, sym_line_comment, sym_block_comment, - ACTIONS(2677), 11, + ACTIONS(2910), 11, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, @@ -266934,7 +267072,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(2675), 27, + ACTIONS(2908), 27, anon_sym_DOT, anon_sym_as, anon_sym_LPAREN, @@ -266962,17 +267100,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [90442] = 6, + [90446] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - STATE(250), 1, - sym_block, - STATE(2858), 2, + STATE(2859), 2, sym_line_comment, sym_block_comment, - ACTIONS(2753), 11, + ACTIONS(2471), 11, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, @@ -266984,10 +267120,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(2751), 26, + ACTIONS(2469), 27, anon_sym_DOT, anon_sym_as, - anon_sym_LBRACE, anon_sym_LPAREN, anon_sym_STAR, anon_sym_PERCENT, @@ -266996,9 +267131,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, @@ -267011,7 +267148,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [90497] = 23, + [90499] = 23, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, @@ -267026,45 +267163,45 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_thread, ACTIONS(91), 1, anon_sym_atomic, - ACTIONS(597), 1, + ACTIONS(565), 1, sym_identifier, - ACTIONS(603), 1, + ACTIONS(571), 1, anon_sym_fn, - ACTIONS(607), 1, + ACTIONS(575), 1, anon_sym_struct, - ACTIONS(615), 1, + ACTIONS(583), 1, anon_sym_shared, - ACTIONS(3586), 1, + ACTIONS(3564), 1, anon_sym_LPAREN, - ACTIONS(3588), 1, + ACTIONS(3566), 1, anon_sym_STAR, - ACTIONS(5302), 1, + ACTIONS(5308), 1, anon_sym_BANG, - ACTIONS(5304), 1, + ACTIONS(5310), 1, anon_sym_LBRACK2, - ACTIONS(5306), 1, + ACTIONS(5312), 1, anon_sym_AMP, - STATE(2391), 1, + STATE(2345), 1, sym_plain_type, - STATE(4495), 1, + STATE(4498), 1, sym_reference_expression, - STATE(2859), 2, + STATE(2860), 2, sym_line_comment, sym_block_comment, - STATE(3541), 2, + STATE(3460), 2, sym_type_reference_expression, sym_qualified_type, - ACTIONS(563), 4, + ACTIONS(621), 4, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_RBRACK, - STATE(2302), 4, + STATE(2360), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(2303), 12, + STATE(2362), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -267077,18 +267214,84 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [90586] = 6, + [90588] = 26, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(4830), 2, - anon_sym_LBRACE, - anon_sym_COMMA, - STATE(2860), 2, + ACTIONS(47), 1, + anon_sym_QMARK, + ACTIONS(85), 1, + anon_sym_map_LBRACK, + ACTIONS(87), 1, + anon_sym_chan, + ACTIONS(89), 1, + anon_sym_thread, + ACTIONS(91), 1, + anon_sym_atomic, + ACTIONS(565), 1, + sym_identifier, + ACTIONS(571), 1, + anon_sym_fn, + ACTIONS(575), 1, + anon_sym_struct, + ACTIONS(3564), 1, + anon_sym_LPAREN, + ACTIONS(3566), 1, + anon_sym_STAR, + ACTIONS(5304), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(5306), 1, + anon_sym_mut, + ACTIONS(5308), 1, + anon_sym_BANG, + ACTIONS(5310), 1, + anon_sym_LBRACK2, + ACTIONS(5312), 1, + anon_sym_AMP, + ACTIONS(5314), 1, + anon_sym_shared, + STATE(2979), 1, + sym_mutability_modifiers, + STATE(4030), 1, + sym_type_parameter_declaration, + STATE(4254), 1, + sym_plain_type, + STATE(4498), 1, + sym_reference_expression, + STATE(2861), 2, sym_line_comment, sym_block_comment, - ACTIONS(2778), 11, + STATE(3460), 2, + sym_type_reference_expression, + sym_qualified_type, + STATE(2360), 4, + sym__plain_type_without_special, + sym_multi_return_type, + sym_result_type, + sym_option_type, + STATE(2362), 12, + sym_anon_struct_type, + sym_fixed_array_type, + sym_array_type, + sym_pointer_type, + sym_wrong_pointer_type, + sym_map_type, + sym_channel_type, + sym_shared_type, + sym_thread_type, + sym_atomic_type, + sym_generic_type, + sym_function_type, + [90683] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + STATE(2862), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(2211), 11, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, @@ -267100,7 +267303,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(2776), 25, + ACTIONS(2209), 27, anon_sym_DOT, anon_sym_as, anon_sym_LPAREN, @@ -267111,9 +267314,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, @@ -267126,15 +267331,63 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [90641] = 5, + [90736] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - STATE(2861), 2, + STATE(2863), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(2501), 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(2499), 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, + [90789] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + STATE(2864), 2, sym_line_comment, sym_block_comment, - ACTIONS(2483), 11, + ACTIONS(2718), 11, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, @@ -267146,7 +267399,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(2481), 27, + ACTIONS(2716), 27, anon_sym_DOT, anon_sym_as, anon_sym_LPAREN, @@ -267174,15 +267427,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [90694] = 5, + [90842] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - STATE(2862), 2, + STATE(1263), 1, + sym_block, + STATE(2865), 2, sym_line_comment, sym_block_comment, - ACTIONS(2673), 11, + ACTIONS(2449), 11, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, @@ -267194,9 +267449,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(2671), 27, + ACTIONS(2447), 26, anon_sym_DOT, anon_sym_as, + anon_sym_LBRACE, anon_sym_LPAREN, anon_sym_STAR, anon_sym_PERCENT, @@ -267205,11 +267461,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, @@ -267222,81 +267476,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [90747] = 23, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_STAR, - ACTIONS(47), 1, - anon_sym_QMARK, - ACTIONS(85), 1, - anon_sym_map_LBRACK, - ACTIONS(87), 1, - anon_sym_chan, - ACTIONS(89), 1, - anon_sym_thread, - ACTIONS(91), 1, - anon_sym_atomic, - ACTIONS(597), 1, - sym_identifier, - ACTIONS(603), 1, - anon_sym_fn, - ACTIONS(607), 1, - anon_sym_struct, - ACTIONS(615), 1, - anon_sym_shared, - ACTIONS(3586), 1, - anon_sym_LPAREN, - ACTIONS(3588), 1, - anon_sym_STAR, - ACTIONS(5302), 1, - anon_sym_BANG, - ACTIONS(5304), 1, - anon_sym_LBRACK2, - ACTIONS(5306), 1, - anon_sym_AMP, - STATE(2304), 1, - sym_plain_type, - STATE(4495), 1, - sym_reference_expression, - STATE(2863), 2, - sym_line_comment, - sym_block_comment, - STATE(3541), 2, - sym_type_reference_expression, - sym_qualified_type, - ACTIONS(625), 4, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_RBRACK, - STATE(2302), 4, - sym__plain_type_without_special, - sym_multi_return_type, - sym_result_type, - sym_option_type, - STATE(2303), 12, - sym_anon_struct_type, - sym_fixed_array_type, - sym_array_type, - sym_pointer_type, - sym_wrong_pointer_type, - sym_map_type, - sym_channel_type, - sym_shared_type, - sym_thread_type, - sym_atomic_type, - sym_generic_type, - sym_function_type, - [90836] = 5, + [90897] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - STATE(2864), 2, + STATE(2866), 2, sym_line_comment, sym_block_comment, - ACTIONS(2840), 11, + ACTIONS(2782), 11, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, @@ -267308,7 +267496,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(2838), 27, + ACTIONS(2780), 27, anon_sym_DOT, anon_sym_as, anon_sym_LPAREN, @@ -267336,15 +267524,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [90889] = 5, + [90950] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - STATE(2865), 2, + STATE(2279), 1, + sym_block, + STATE(2867), 2, sym_line_comment, sym_block_comment, - ACTIONS(3062), 11, + ACTIONS(2449), 11, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, @@ -267356,9 +267546,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(3060), 27, + ACTIONS(2447), 26, anon_sym_DOT, anon_sym_as, + anon_sym_LBRACE, anon_sym_LPAREN, anon_sym_STAR, anon_sym_PERCENT, @@ -267367,11 +267558,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, @@ -267384,17 +267573,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [90942] = 6, + [91005] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - STATE(1287), 1, + STATE(1778), 1, sym_block, - STATE(2866), 2, + STATE(2868), 2, sym_line_comment, sym_block_comment, - ACTIONS(2753), 11, + ACTIONS(2449), 11, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, @@ -267406,7 +267595,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(2751), 26, + ACTIONS(2447), 26, anon_sym_DOT, anon_sym_as, anon_sym_LBRACE, @@ -267433,17 +267622,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [90997] = 6, + [91060] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - STATE(2813), 1, + STATE(989), 1, sym_block, - STATE(2867), 2, + STATE(2869), 2, sym_line_comment, sym_block_comment, - ACTIONS(2753), 11, + ACTIONS(2449), 11, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, @@ -267455,7 +267644,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(2751), 26, + ACTIONS(2447), 26, anon_sym_DOT, anon_sym_as, anon_sym_LBRACE, @@ -267482,15 +267671,147 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [91052] = 5, + [91115] = 23, + ACTIONS(497), 1, + anon_sym_SLASH_SLASH, + ACTIONS(499), 1, + anon_sym_SLASH_STAR, + ACTIONS(3426), 1, + sym_identifier, + ACTIONS(3632), 1, + anon_sym_LPAREN, + ACTIONS(3638), 1, + anon_sym_struct, + ACTIONS(5486), 1, + anon_sym_fn, + ACTIONS(5488), 1, + anon_sym_STAR, + ACTIONS(5490), 1, + anon_sym_QMARK, + ACTIONS(5492), 1, + anon_sym_BANG, + ACTIONS(5494), 1, + anon_sym_LBRACK2, + ACTIONS(5496), 1, + anon_sym_AMP, + ACTIONS(5498), 1, + anon_sym_shared, + ACTIONS(5500), 1, + anon_sym_map_LBRACK, + ACTIONS(5502), 1, + anon_sym_chan, + ACTIONS(5504), 1, + anon_sym_thread, + ACTIONS(5506), 1, + anon_sym_atomic, + STATE(1640), 1, + sym_plain_type, + STATE(4351), 1, + sym_reference_expression, + STATE(2870), 2, + sym_line_comment, + sym_block_comment, + STATE(3305), 2, + sym_type_reference_expression, + sym_qualified_type, + ACTIONS(619), 4, + anon_sym_LF, + anon_sym_CR, + anon_sym_CR_LF, + anon_sym_SEMI, + STATE(1647), 4, + sym__plain_type_without_special, + sym_multi_return_type, + sym_result_type, + sym_option_type, + STATE(1667), 12, + sym_anon_struct_type, + sym_fixed_array_type, + sym_array_type, + sym_pointer_type, + sym_wrong_pointer_type, + sym_map_type, + sym_channel_type, + sym_shared_type, + sym_thread_type, + sym_atomic_type, + sym_generic_type, + sym_function_type, + [91204] = 23, + ACTIONS(497), 1, + anon_sym_SLASH_SLASH, + ACTIONS(499), 1, + anon_sym_SLASH_STAR, + ACTIONS(3426), 1, + sym_identifier, + ACTIONS(3632), 1, + anon_sym_LPAREN, + ACTIONS(3638), 1, + anon_sym_struct, + ACTIONS(5486), 1, + anon_sym_fn, + ACTIONS(5488), 1, + anon_sym_STAR, + ACTIONS(5490), 1, + anon_sym_QMARK, + ACTIONS(5492), 1, + anon_sym_BANG, + ACTIONS(5494), 1, + anon_sym_LBRACK2, + ACTIONS(5496), 1, + anon_sym_AMP, + ACTIONS(5498), 1, + anon_sym_shared, + ACTIONS(5500), 1, + anon_sym_map_LBRACK, + ACTIONS(5502), 1, + anon_sym_chan, + ACTIONS(5504), 1, + anon_sym_thread, + ACTIONS(5506), 1, + anon_sym_atomic, + STATE(1633), 1, + sym_plain_type, + STATE(4351), 1, + sym_reference_expression, + STATE(2871), 2, + sym_line_comment, + sym_block_comment, + STATE(3305), 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(1647), 4, + sym__plain_type_without_special, + sym_multi_return_type, + sym_result_type, + sym_option_type, + STATE(1667), 12, + sym_anon_struct_type, + sym_fixed_array_type, + sym_array_type, + sym_pointer_type, + sym_wrong_pointer_type, + sym_map_type, + sym_channel_type, + sym_shared_type, + sym_thread_type, + sym_atomic_type, + sym_generic_type, + sym_function_type, + [91293] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - STATE(2868), 2, + STATE(2872), 2, sym_line_comment, sym_block_comment, - ACTIONS(2768), 11, + ACTIONS(2732), 11, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, @@ -267502,7 +267823,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(2766), 27, + ACTIONS(2730), 27, anon_sym_DOT, anon_sym_as, anon_sym_LPAREN, @@ -267530,15 +267851,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [91105] = 5, + [91346] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - STATE(2869), 2, + STATE(1644), 1, + sym_block, + STATE(2873), 2, sym_line_comment, sym_block_comment, - ACTIONS(2856), 11, + ACTIONS(2449), 11, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, @@ -267550,9 +267873,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(2854), 27, + ACTIONS(2447), 26, anon_sym_DOT, anon_sym_as, + anon_sym_LBRACE, anon_sym_LPAREN, anon_sym_STAR, anon_sym_PERCENT, @@ -267561,11 +267885,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, @@ -267578,15 +267900,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [91158] = 5, + [91401] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - STATE(2870), 2, + STATE(2874), 2, sym_line_comment, sym_block_comment, - ACTIONS(2778), 11, + ACTIONS(3068), 11, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, @@ -267598,7 +267920,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(2776), 27, + ACTIONS(3066), 27, anon_sym_DOT, anon_sym_as, anon_sym_LPAREN, @@ -267626,15 +267948,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [91211] = 5, + [91454] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - STATE(2871), 2, + STATE(2588), 1, + sym_block, + STATE(2875), 2, sym_line_comment, sym_block_comment, - ACTIONS(2846), 11, + ACTIONS(2449), 11, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, @@ -267646,9 +267970,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(2844), 27, + ACTIONS(2447), 26, anon_sym_DOT, anon_sym_as, + anon_sym_LBRACE, anon_sym_LPAREN, anon_sym_STAR, anon_sym_PERCENT, @@ -267657,11 +267982,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, @@ -267674,17 +267997,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [91264] = 6, + [91509] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - STATE(1132), 1, - sym_block, - STATE(2872), 2, + STATE(2876), 2, sym_line_comment, sym_block_comment, - ACTIONS(2753), 11, + ACTIONS(2794), 11, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, @@ -267696,10 +268017,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(2751), 26, + ACTIONS(2792), 27, anon_sym_DOT, anon_sym_as, - anon_sym_LBRACE, anon_sym_LPAREN, anon_sym_STAR, anon_sym_PERCENT, @@ -267708,9 +268028,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, @@ -267723,17 +268045,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [91319] = 6, + [91562] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - STATE(1909), 1, - sym_block, - STATE(2873), 2, + STATE(2877), 2, sym_line_comment, sym_block_comment, - ACTIONS(2753), 11, + ACTIONS(2522), 11, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, @@ -267745,10 +268065,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(2751), 26, + ACTIONS(2520), 27, anon_sym_DOT, anon_sym_as, - anon_sym_LBRACE, anon_sym_LPAREN, anon_sym_STAR, anon_sym_PERCENT, @@ -267757,9 +268076,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, @@ -267772,17 +268093,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [91374] = 6, + [91615] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - STATE(1631), 1, - sym_block, - STATE(2874), 2, + STATE(2878), 2, sym_line_comment, sym_block_comment, - ACTIONS(2753), 11, + ACTIONS(2832), 11, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, @@ -267794,10 +268113,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(2751), 26, + ACTIONS(2830), 27, anon_sym_DOT, anon_sym_as, - anon_sym_LBRACE, anon_sym_LPAREN, anon_sym_STAR, anon_sym_PERCENT, @@ -267806,9 +268124,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, @@ -267821,83 +268141,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [91429] = 23, + [91668] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(47), 1, - anon_sym_QMARK, - ACTIONS(85), 1, - anon_sym_map_LBRACK, - ACTIONS(87), 1, - anon_sym_chan, - ACTIONS(89), 1, - anon_sym_thread, - ACTIONS(91), 1, - anon_sym_atomic, - ACTIONS(597), 1, - sym_identifier, - ACTIONS(603), 1, - anon_sym_fn, - ACTIONS(607), 1, - anon_sym_struct, - ACTIONS(615), 1, - anon_sym_shared, - ACTIONS(3586), 1, - anon_sym_LPAREN, - ACTIONS(3588), 1, - anon_sym_STAR, - ACTIONS(5302), 1, - anon_sym_BANG, - ACTIONS(5304), 1, - anon_sym_LBRACK2, - ACTIONS(5306), 1, - anon_sym_AMP, - STATE(2414), 1, - sym_plain_type, - STATE(4495), 1, - sym_reference_expression, - STATE(2875), 2, - sym_line_comment, - sym_block_comment, - STATE(3541), 2, - sym_type_reference_expression, - sym_qualified_type, - ACTIONS(617), 4, + ACTIONS(4838), 2, anon_sym_LBRACE, anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_RBRACK, - STATE(2302), 4, - sym__plain_type_without_special, - sym_multi_return_type, - sym_result_type, - sym_option_type, - STATE(2303), 12, - sym_anon_struct_type, - sym_fixed_array_type, - sym_array_type, - sym_pointer_type, - sym_wrong_pointer_type, - sym_map_type, - sym_channel_type, - sym_shared_type, - sym_thread_type, - sym_atomic_type, - sym_generic_type, - sym_function_type, - [91518] = 6, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_STAR, - STATE(2282), 1, - sym_block, - STATE(2876), 2, + STATE(2879), 2, sym_line_comment, sym_block_comment, - ACTIONS(2753), 11, + ACTIONS(2532), 11, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, @@ -267909,10 +268164,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(2751), 26, + ACTIONS(2530), 25, anon_sym_DOT, anon_sym_as, - anon_sym_LBRACE, anon_sym_LPAREN, anon_sym_STAR, anon_sym_PERCENT, @@ -267936,17 +268190,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [91573] = 6, + [91723] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - STATE(2441), 1, + STATE(2822), 1, sym_block, - STATE(2877), 2, + STATE(2880), 2, sym_line_comment, sym_block_comment, - ACTIONS(2753), 11, + ACTIONS(2449), 11, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, @@ -267958,7 +268212,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(2751), 26, + ACTIONS(2447), 26, anon_sym_DOT, anon_sym_as, anon_sym_LBRACE, @@ -267985,15 +268239,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [91628] = 5, + [91778] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - STATE(2878), 2, + STATE(2881), 2, sym_line_comment, sym_block_comment, - ACTIONS(2860), 11, + ACTIONS(2874), 11, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, @@ -268005,7 +268259,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(2858), 27, + ACTIONS(2872), 27, anon_sym_DOT, anon_sym_as, anon_sym_LPAREN, @@ -268033,17 +268287,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [91681] = 6, + [91831] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - STATE(1900), 1, - sym_block, - STATE(2879), 2, + STATE(2882), 2, sym_line_comment, sym_block_comment, - ACTIONS(2753), 11, + ACTIONS(2532), 11, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, @@ -268055,10 +268307,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(2751), 26, + ACTIONS(2530), 27, anon_sym_DOT, anon_sym_as, - anon_sym_LBRACE, anon_sym_LPAREN, anon_sym_STAR, anon_sym_PERCENT, @@ -268067,9 +268318,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, @@ -268082,17 +268335,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [91736] = 6, + [91884] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - STATE(985), 1, + STATE(2423), 1, sym_block, - STATE(2880), 2, + STATE(2883), 2, sym_line_comment, sym_block_comment, - ACTIONS(2753), 11, + ACTIONS(2449), 11, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, @@ -268104,7 +268357,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(2751), 26, + ACTIONS(2447), 26, anon_sym_DOT, anon_sym_as, anon_sym_LBRACE, @@ -268131,182 +268384,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [91791] = 23, - ACTIONS(497), 1, - anon_sym_SLASH_SLASH, - ACTIONS(499), 1, - anon_sym_SLASH_STAR, - ACTIONS(3420), 1, - sym_identifier, - ACTIONS(3628), 1, - anon_sym_LPAREN, - ACTIONS(3634), 1, - anon_sym_struct, - ACTIONS(5484), 1, - anon_sym_fn, - ACTIONS(5486), 1, - anon_sym_STAR, - ACTIONS(5488), 1, - anon_sym_QMARK, - ACTIONS(5490), 1, - anon_sym_BANG, - ACTIONS(5492), 1, - anon_sym_LBRACK2, - ACTIONS(5494), 1, - anon_sym_AMP, - ACTIONS(5496), 1, - anon_sym_shared, - ACTIONS(5498), 1, - anon_sym_map_LBRACK, - ACTIONS(5500), 1, - anon_sym_chan, - ACTIONS(5502), 1, - anon_sym_thread, - ACTIONS(5504), 1, - anon_sym_atomic, - STATE(1644), 1, - sym_plain_type, - STATE(4341), 1, - sym_reference_expression, - STATE(2881), 2, - sym_line_comment, - sym_block_comment, - STATE(3286), 2, - sym_type_reference_expression, - sym_qualified_type, - ACTIONS(627), 4, - anon_sym_LF, - anon_sym_CR, - anon_sym_CR_LF, - anon_sym_SEMI, - STATE(1635), 4, - sym__plain_type_without_special, - sym_multi_return_type, - sym_result_type, - sym_option_type, - STATE(1629), 12, - sym_anon_struct_type, - sym_fixed_array_type, - sym_array_type, - sym_pointer_type, - sym_wrong_pointer_type, - sym_map_type, - sym_channel_type, - sym_shared_type, - sym_thread_type, - sym_atomic_type, - sym_generic_type, - sym_function_type, - [91880] = 6, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_STAR, - ACTIONS(5506), 1, - anon_sym_RBRACK, - STATE(2882), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(3054), 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(3052), 25, - anon_sym_DOT, - anon_sym_as, - anon_sym_LPAREN, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_LBRACK, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_or, - anon_sym_QMARK_DOT, - anon_sym_POUND_LBRACK, - anon_sym_is, - anon_sym_BANGis, - anon_sym_in, - anon_sym_BANGin, - [91934] = 7, + [91939] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(4805), 1, - anon_sym_DOT, - ACTIONS(5508), 1, - anon_sym_RPAREN, - STATE(2883), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(2761), 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(2759), 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, - [91990] = 7, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_STAR, - ACTIONS(4805), 1, - anon_sym_DOT, ACTIONS(5510), 1, - anon_sym_RPAREN, + anon_sym_RBRACK, STATE(2884), 2, sym_line_comment, sym_block_comment, - ACTIONS(2761), 11, + ACTIONS(2880), 11, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, @@ -268318,7 +268406,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(2759), 24, + ACTIONS(2878), 25, + anon_sym_DOT, anon_sym_as, anon_sym_LPAREN, anon_sym_STAR, @@ -268343,17 +268432,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [92046] = 6, + [91993] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(5510), 1, - anon_sym_RPAREN, + ACTIONS(5512), 1, + anon_sym_RBRACK, STATE(2885), 2, sym_line_comment, sym_block_comment, - ACTIONS(2761), 11, + ACTIONS(2513), 11, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, @@ -268365,7 +268454,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(2759), 25, + ACTIONS(2511), 25, anon_sym_DOT, anon_sym_as, anon_sym_LPAREN, @@ -268391,17 +268480,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [92100] = 6, + [92047] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(5512), 1, - anon_sym_RPAREN, + ACTIONS(5514), 1, + anon_sym_RBRACK, STATE(2886), 2, sym_line_comment, sym_block_comment, - ACTIONS(2778), 11, + ACTIONS(2880), 11, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, @@ -268413,7 +268502,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(2776), 25, + ACTIONS(2878), 25, anon_sym_DOT, anon_sym_as, anon_sym_LPAREN, @@ -268439,19 +268528,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [92154] = 7, + [92101] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(4805), 1, - anon_sym_DOT, - ACTIONS(5514), 1, + ACTIONS(5516), 1, anon_sym_RBRACK, STATE(2887), 2, sym_line_comment, sym_block_comment, - ACTIONS(2761), 11, + ACTIONS(2880), 11, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, @@ -268463,7 +268550,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(2759), 24, + ACTIONS(2878), 25, + anon_sym_DOT, anon_sym_as, anon_sym_LPAREN, anon_sym_STAR, @@ -268488,19 +268576,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [92210] = 7, + [92155] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(4805), 1, - anon_sym_DOT, ACTIONS(5516), 1, - anon_sym_RPAREN, + anon_sym_RBRACK, STATE(2888), 2, sym_line_comment, sym_block_comment, - ACTIONS(2761), 11, + ACTIONS(2513), 11, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, @@ -268512,7 +268598,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(2759), 24, + ACTIONS(2511), 25, + anon_sym_DOT, anon_sym_as, anon_sym_LPAREN, anon_sym_STAR, @@ -268537,17 +268624,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [92266] = 6, + [92209] = 7, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(5516), 1, + ACTIONS(4813), 1, + anon_sym_DOT, + ACTIONS(5518), 1, anon_sym_RPAREN, STATE(2889), 2, sym_line_comment, sym_block_comment, - ACTIONS(2761), 11, + ACTIONS(2513), 11, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, @@ -268559,8 +268648,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(2759), 25, - anon_sym_DOT, + ACTIONS(2511), 24, anon_sym_as, anon_sym_LPAREN, anon_sym_STAR, @@ -268585,17 +268673,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [92320] = 6, + [92265] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(5518), 1, + ACTIONS(5520), 1, anon_sym_RBRACK, STATE(2890), 2, sym_line_comment, sym_block_comment, - ACTIONS(3054), 11, + ACTIONS(2880), 11, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, @@ -268607,7 +268695,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(3052), 25, + ACTIONS(2878), 25, anon_sym_DOT, anon_sym_as, anon_sym_LPAREN, @@ -268633,17 +268721,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [92374] = 6, + [92319] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(5518), 1, + ACTIONS(5522), 1, anon_sym_RBRACK, STATE(2891), 2, sym_line_comment, sym_block_comment, - ACTIONS(2761), 11, + ACTIONS(2880), 11, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, @@ -268655,7 +268743,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(2759), 25, + ACTIONS(2878), 25, anon_sym_DOT, anon_sym_as, anon_sym_LPAREN, @@ -268681,17 +268769,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [92428] = 6, + [92373] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(5514), 1, + ACTIONS(5522), 1, anon_sym_RBRACK, STATE(2892), 2, sym_line_comment, sym_block_comment, - ACTIONS(2761), 11, + ACTIONS(2513), 11, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, @@ -268703,7 +268791,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(2759), 25, + ACTIONS(2511), 25, anon_sym_DOT, anon_sym_as, anon_sym_LPAREN, @@ -268729,19 +268817,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [92482] = 7, + [92427] = 7, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(4805), 1, + ACTIONS(4813), 1, anon_sym_DOT, - ACTIONS(5520), 1, + ACTIONS(5524), 1, anon_sym_RBRACK, STATE(2893), 2, sym_line_comment, sym_block_comment, - ACTIONS(2761), 11, + ACTIONS(2513), 11, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, @@ -268753,7 +268841,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(2759), 24, + ACTIONS(2511), 24, anon_sym_as, anon_sym_LPAREN, anon_sym_STAR, @@ -268778,19 +268866,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [92538] = 7, + [92483] = 7, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(4805), 1, + ACTIONS(4813), 1, anon_sym_DOT, - ACTIONS(5518), 1, - anon_sym_RBRACK, + ACTIONS(5526), 1, + anon_sym_RPAREN, STATE(2894), 2, sym_line_comment, sym_block_comment, - ACTIONS(2761), 11, + ACTIONS(2513), 11, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, @@ -268802,7 +268890,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(2759), 24, + ACTIONS(2511), 24, anon_sym_as, anon_sym_LPAREN, anon_sym_STAR, @@ -268827,17 +268915,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [92594] = 6, + [92539] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(5514), 1, + ACTIONS(5528), 1, anon_sym_RBRACK, STATE(2895), 2, sym_line_comment, sym_block_comment, - ACTIONS(3054), 11, + ACTIONS(2880), 11, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, @@ -268849,7 +268937,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(3052), 25, + ACTIONS(2878), 25, anon_sym_DOT, anon_sym_as, anon_sym_LPAREN, @@ -268875,17 +268963,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [92648] = 6, + [92593] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(5522), 1, - anon_sym_RBRACK, + ACTIONS(5526), 1, + anon_sym_RPAREN, STATE(2896), 2, sym_line_comment, sym_block_comment, - ACTIONS(3054), 11, + ACTIONS(2513), 11, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, @@ -268897,7 +268985,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(3052), 25, + ACTIONS(2511), 25, anon_sym_DOT, anon_sym_as, anon_sym_LPAREN, @@ -268923,19 +269011,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [92702] = 7, + [92647] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(4805), 1, - anon_sym_DOT, ACTIONS(5524), 1, anon_sym_RBRACK, STATE(2897), 2, sym_line_comment, sym_block_comment, - ACTIONS(2761), 11, + ACTIONS(2513), 11, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, @@ -268947,7 +269033,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(2759), 24, + ACTIONS(2511), 25, + anon_sym_DOT, anon_sym_as, anon_sym_LPAREN, anon_sym_STAR, @@ -268972,17 +269059,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [92758] = 6, + [92701] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(5522), 1, + ACTIONS(5510), 1, anon_sym_RBRACK, STATE(2898), 2, sym_line_comment, sym_block_comment, - ACTIONS(2761), 11, + ACTIONS(2513), 11, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, @@ -268994,7 +269081,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(2759), 25, + ACTIONS(2511), 25, anon_sym_DOT, anon_sym_as, anon_sym_LPAREN, @@ -269020,19 +269107,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [92812] = 7, + [92755] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(4805), 1, - anon_sym_DOT, - ACTIONS(5526), 1, - anon_sym_RPAREN, + ACTIONS(5530), 1, + anon_sym_RBRACK, STATE(2899), 2, sym_line_comment, sym_block_comment, - ACTIONS(2761), 11, + ACTIONS(2513), 11, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, @@ -269044,7 +269129,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(2759), 24, + ACTIONS(2511), 25, + anon_sym_DOT, anon_sym_as, anon_sym_LPAREN, anon_sym_STAR, @@ -269069,7 +269155,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [92868] = 6, + [92809] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, @@ -269079,7 +269165,7 @@ static const uint16_t ts_small_parse_table[] = { STATE(2900), 2, sym_line_comment, sym_block_comment, - ACTIONS(2761), 11, + ACTIONS(2880), 11, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, @@ -269091,7 +269177,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(2759), 25, + ACTIONS(2878), 25, anon_sym_DOT, anon_sym_as, anon_sym_LPAREN, @@ -269117,17 +269203,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [92922] = 6, + [92863] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(5526), 1, - anon_sym_RPAREN, + ACTIONS(5530), 1, + anon_sym_RBRACK, STATE(2901), 2, sym_line_comment, sym_block_comment, - ACTIONS(2761), 11, + ACTIONS(2880), 11, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, @@ -269139,7 +269225,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(2759), 25, + ACTIONS(2878), 25, anon_sym_DOT, anon_sym_as, anon_sym_LPAREN, @@ -269165,19 +269251,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [92976] = 7, + [92917] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(4805), 1, - anon_sym_DOT, - ACTIONS(5522), 1, - anon_sym_RBRACK, + ACTIONS(5532), 1, + anon_sym_RPAREN, STATE(2902), 2, sym_line_comment, sym_block_comment, - ACTIONS(2761), 11, + ACTIONS(2532), 11, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, @@ -269189,7 +269273,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(2759), 24, + ACTIONS(2530), 25, + anon_sym_DOT, anon_sym_as, anon_sym_LPAREN, anon_sym_STAR, @@ -269214,17 +269299,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [93032] = 6, + [92971] = 7, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(5524), 1, + ACTIONS(4813), 1, + anon_sym_DOT, + ACTIONS(5510), 1, anon_sym_RBRACK, STATE(2903), 2, sym_line_comment, sym_block_comment, - ACTIONS(3054), 11, + ACTIONS(2513), 11, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, @@ -269236,8 +269323,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(3052), 25, - anon_sym_DOT, + ACTIONS(2511), 24, anon_sym_as, anon_sym_LPAREN, anon_sym_STAR, @@ -269262,17 +269348,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [93086] = 6, + [93027] = 7, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(5528), 1, + ACTIONS(4813), 1, + anon_sym_DOT, + ACTIONS(5522), 1, anon_sym_RBRACK, STATE(2904), 2, sym_line_comment, sym_block_comment, - ACTIONS(2761), 11, + ACTIONS(2513), 11, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, @@ -269284,8 +269372,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(2759), 25, - anon_sym_DOT, + ACTIONS(2511), 24, anon_sym_as, anon_sym_LPAREN, anon_sym_STAR, @@ -269310,19 +269397,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [93140] = 7, + [93083] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(4805), 1, - anon_sym_DOT, - ACTIONS(5530), 1, - anon_sym_RBRACK, + ACTIONS(5518), 1, + anon_sym_RPAREN, STATE(2905), 2, sym_line_comment, sym_block_comment, - ACTIONS(2761), 11, + ACTIONS(2513), 11, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, @@ -269334,7 +269419,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(2759), 24, + ACTIONS(2511), 25, + anon_sym_DOT, anon_sym_as, anon_sym_LPAREN, anon_sym_STAR, @@ -269359,17 +269445,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [93196] = 6, + [93137] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(5532), 1, - anon_sym_RPAREN, + ACTIONS(5520), 1, + anon_sym_RBRACK, STATE(2906), 2, sym_line_comment, sym_block_comment, - ACTIONS(2778), 11, + ACTIONS(2513), 11, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, @@ -269381,7 +269467,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(2776), 25, + ACTIONS(2511), 25, anon_sym_DOT, anon_sym_as, anon_sym_LPAREN, @@ -269407,19 +269493,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [93250] = 7, + [93191] = 7, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(4805), 1, + ACTIONS(4813), 1, anon_sym_DOT, ACTIONS(5534), 1, - anon_sym_RPAREN, + anon_sym_RBRACK, STATE(2907), 2, sym_line_comment, sym_block_comment, - ACTIONS(2761), 11, + ACTIONS(2513), 11, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, @@ -269431,7 +269517,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(2759), 24, + ACTIONS(2511), 24, anon_sym_as, anon_sym_LPAREN, anon_sym_STAR, @@ -269456,17 +269542,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [93306] = 6, + [93247] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(5534), 1, + ACTIONS(5536), 1, anon_sym_RPAREN, STATE(2908), 2, sym_line_comment, sym_block_comment, - ACTIONS(2761), 11, + ACTIONS(2513), 11, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, @@ -269478,7 +269564,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(2759), 25, + ACTIONS(2511), 25, anon_sym_DOT, anon_sym_as, anon_sym_LPAREN, @@ -269504,19 +269590,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [93360] = 7, + [93301] = 7, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(4805), 1, + ACTIONS(4813), 1, anon_sym_DOT, - ACTIONS(5536), 1, - anon_sym_RBRACK, + ACTIONS(5538), 1, + anon_sym_RPAREN, STATE(2909), 2, sym_line_comment, sym_block_comment, - ACTIONS(2761), 11, + ACTIONS(2513), 11, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, @@ -269528,7 +269614,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(2759), 24, + ACTIONS(2511), 24, anon_sym_as, anon_sym_LPAREN, anon_sym_STAR, @@ -269553,17 +269639,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [93416] = 6, + [93357] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(5536), 1, - anon_sym_RBRACK, + ACTIONS(5540), 1, + anon_sym_RPAREN, STATE(2910), 2, sym_line_comment, sym_block_comment, - ACTIONS(2761), 11, + ACTIONS(2513), 11, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, @@ -269575,7 +269661,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(2759), 25, + ACTIONS(2511), 25, anon_sym_DOT, anon_sym_as, anon_sym_LPAREN, @@ -269601,17 +269687,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [93470] = 6, + [93411] = 7, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(5538), 1, + ACTIONS(4813), 1, + anon_sym_DOT, + ACTIONS(5540), 1, anon_sym_RPAREN, STATE(2911), 2, sym_line_comment, sym_block_comment, - ACTIONS(2761), 11, + ACTIONS(2513), 11, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, @@ -269623,8 +269711,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(2759), 25, - anon_sym_DOT, + ACTIONS(2511), 24, anon_sym_as, anon_sym_LPAREN, anon_sym_STAR, @@ -269649,17 +269736,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [93524] = 6, + [93467] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(5536), 1, - anon_sym_RBRACK, + ACTIONS(5542), 1, + anon_sym_RPAREN, STATE(2912), 2, sym_line_comment, sym_block_comment, - ACTIONS(3054), 11, + ACTIONS(2532), 11, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, @@ -269671,7 +269758,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(3052), 25, + ACTIONS(2530), 25, anon_sym_DOT, anon_sym_as, anon_sym_LPAREN, @@ -269697,19 +269784,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [93578] = 7, + [93521] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(4805), 1, - anon_sym_DOT, - ACTIONS(5538), 1, + ACTIONS(5544), 1, anon_sym_RPAREN, STATE(2913), 2, sym_line_comment, sym_block_comment, - ACTIONS(2761), 11, + ACTIONS(2513), 11, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, @@ -269721,7 +269806,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(2759), 24, + ACTIONS(2511), 25, + anon_sym_DOT, anon_sym_as, anon_sym_LPAREN, anon_sym_STAR, @@ -269746,17 +269832,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [93634] = 6, + [93575] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(5540), 1, + ACTIONS(5546), 1, anon_sym_RPAREN, STATE(2914), 2, sym_line_comment, sym_block_comment, - ACTIONS(2761), 11, + ACTIONS(2513), 11, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, @@ -269768,7 +269854,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(2759), 25, + ACTIONS(2511), 25, anon_sym_DOT, anon_sym_as, anon_sym_LPAREN, @@ -269794,17 +269880,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [93688] = 6, + [93629] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(5542), 1, - anon_sym_RBRACK, + ACTIONS(5538), 1, + anon_sym_RPAREN, STATE(2915), 2, sym_line_comment, sym_block_comment, - ACTIONS(2761), 11, + ACTIONS(2513), 11, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, @@ -269816,7 +269902,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(2759), 25, + ACTIONS(2511), 25, anon_sym_DOT, anon_sym_as, anon_sym_LPAREN, @@ -269842,19 +269928,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [93742] = 7, + [93683] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(4805), 1, - anon_sym_DOT, - ACTIONS(5544), 1, - anon_sym_RPAREN, + ACTIONS(5548), 1, + anon_sym_RBRACK, STATE(2916), 2, sym_line_comment, sym_block_comment, - ACTIONS(2761), 11, + ACTIONS(2880), 11, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, @@ -269866,7 +269950,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(2759), 24, + ACTIONS(2878), 25, + anon_sym_DOT, anon_sym_as, anon_sym_LPAREN, anon_sym_STAR, @@ -269891,17 +269976,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [93798] = 6, + [93737] = 7, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(5544), 1, + ACTIONS(4813), 1, + anon_sym_DOT, + ACTIONS(5546), 1, anon_sym_RPAREN, STATE(2917), 2, sym_line_comment, sym_block_comment, - ACTIONS(2761), 11, + ACTIONS(2513), 11, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, @@ -269913,8 +270000,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(2759), 25, - anon_sym_DOT, + ACTIONS(2511), 24, anon_sym_as, anon_sym_LPAREN, anon_sym_STAR, @@ -269939,19 +270025,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [93852] = 7, + [93793] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(4805), 1, - anon_sym_DOT, - ACTIONS(5506), 1, - anon_sym_RBRACK, + ACTIONS(5550), 1, + anon_sym_RPAREN, STATE(2918), 2, sym_line_comment, sym_block_comment, - ACTIONS(2761), 11, + ACTIONS(2513), 11, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, @@ -269963,7 +270047,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(2759), 24, + ACTIONS(2511), 25, + anon_sym_DOT, anon_sym_as, anon_sym_LPAREN, anon_sym_STAR, @@ -269988,19 +270073,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [93908] = 7, + [93847] = 7, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(4805), 1, + ACTIONS(4813), 1, anon_sym_DOT, - ACTIONS(5540), 1, + ACTIONS(5544), 1, anon_sym_RPAREN, STATE(2919), 2, sym_line_comment, sym_block_comment, - ACTIONS(2761), 11, + ACTIONS(2513), 11, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, @@ -270012,7 +270097,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(2759), 24, + ACTIONS(2511), 24, anon_sym_as, anon_sym_LPAREN, anon_sym_STAR, @@ -270037,17 +270122,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [93964] = 6, + [93903] = 7, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(5546), 1, + ACTIONS(4813), 1, + anon_sym_DOT, + ACTIONS(5512), 1, anon_sym_RBRACK, STATE(2920), 2, sym_line_comment, sym_block_comment, - ACTIONS(3054), 11, + ACTIONS(2513), 11, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, @@ -270059,8 +270146,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(3052), 25, - anon_sym_DOT, + ACTIONS(2511), 24, anon_sym_as, anon_sym_LPAREN, anon_sym_STAR, @@ -270085,17 +270171,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [94018] = 6, + [93959] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(5548), 1, - anon_sym_RBRACK, + ACTIONS(5552), 1, + anon_sym_RPAREN, STATE(2921), 2, sym_line_comment, sym_block_comment, - ACTIONS(3054), 11, + ACTIONS(2532), 11, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, @@ -270107,7 +270193,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(3052), 25, + ACTIONS(2530), 25, anon_sym_DOT, anon_sym_as, anon_sym_LPAREN, @@ -270133,17 +270219,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [94072] = 6, + [94013] = 7, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(5546), 1, + ACTIONS(4813), 1, + anon_sym_DOT, + ACTIONS(5554), 1, anon_sym_RBRACK, STATE(2922), 2, sym_line_comment, sym_block_comment, - ACTIONS(2761), 11, + ACTIONS(2513), 11, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, @@ -270155,8 +270243,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(2759), 25, - anon_sym_DOT, + ACTIONS(2511), 24, anon_sym_as, anon_sym_LPAREN, anon_sym_STAR, @@ -270181,17 +270268,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [94126] = 6, + [94069] = 7, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(5508), 1, - anon_sym_RPAREN, + ACTIONS(4813), 1, + anon_sym_DOT, + ACTIONS(5530), 1, + anon_sym_RBRACK, STATE(2923), 2, sym_line_comment, sym_block_comment, - ACTIONS(2761), 11, + ACTIONS(2513), 11, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, @@ -270203,8 +270292,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(2759), 25, - anon_sym_DOT, + ACTIONS(2511), 24, anon_sym_as, anon_sym_LPAREN, anon_sym_STAR, @@ -270229,17 +270317,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [94180] = 6, + [94125] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(5548), 1, + ACTIONS(5554), 1, anon_sym_RBRACK, STATE(2924), 2, sym_line_comment, sym_block_comment, - ACTIONS(2761), 11, + ACTIONS(2513), 11, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, @@ -270251,7 +270339,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(2759), 25, + ACTIONS(2511), 25, anon_sym_DOT, anon_sym_as, anon_sym_LPAREN, @@ -270277,19 +270365,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [94234] = 7, + [94179] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(4805), 1, - anon_sym_DOT, - ACTIONS(5548), 1, - anon_sym_RBRACK, + ACTIONS(5556), 1, + anon_sym_LBRACE, STATE(2925), 2, sym_line_comment, sym_block_comment, - ACTIONS(2761), 11, + ACTIONS(2513), 11, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, @@ -270301,7 +270387,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(2759), 24, + ACTIONS(2511), 25, + anon_sym_DOT, anon_sym_as, anon_sym_LPAREN, anon_sym_STAR, @@ -270326,19 +270413,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [94290] = 7, + [94233] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(4805), 1, - anon_sym_DOT, - ACTIONS(5550), 1, + ACTIONS(5512), 1, anon_sym_RBRACK, STATE(2926), 2, sym_line_comment, sym_block_comment, - ACTIONS(2761), 11, + ACTIONS(2880), 11, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, @@ -270350,7 +270435,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(2759), 24, + ACTIONS(2878), 25, + anon_sym_DOT, anon_sym_as, anon_sym_LPAREN, anon_sym_STAR, @@ -270375,17 +270461,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [94346] = 6, + [94287] = 7, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(5530), 1, + ACTIONS(4813), 1, + anon_sym_DOT, + ACTIONS(5558), 1, anon_sym_RBRACK, STATE(2927), 2, sym_line_comment, sym_block_comment, - ACTIONS(3054), 11, + ACTIONS(2513), 11, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, @@ -270397,8 +270485,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(3052), 25, - anon_sym_DOT, + ACTIONS(2511), 24, anon_sym_as, anon_sym_LPAREN, anon_sym_STAR, @@ -270423,17 +270510,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [94400] = 6, + [94343] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(5550), 1, + ACTIONS(5554), 1, anon_sym_RBRACK, STATE(2928), 2, sym_line_comment, sym_block_comment, - ACTIONS(2761), 11, + ACTIONS(2880), 11, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, @@ -270445,7 +270532,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(2759), 25, + ACTIONS(2878), 25, anon_sym_DOT, anon_sym_as, anon_sym_LPAREN, @@ -270471,19 +270558,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [94454] = 7, + [94397] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(4805), 1, - anon_sym_DOT, - ACTIONS(5552), 1, - anon_sym_RPAREN, + ACTIONS(5514), 1, + anon_sym_RBRACK, STATE(2929), 2, sym_line_comment, sym_block_comment, - ACTIONS(2761), 11, + ACTIONS(2513), 11, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, @@ -270495,7 +270580,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(2759), 24, + ACTIONS(2511), 25, + anon_sym_DOT, anon_sym_as, anon_sym_LPAREN, anon_sym_STAR, @@ -270520,19 +270606,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [94510] = 7, + [94451] = 7, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(4805), 1, + ACTIONS(4813), 1, anon_sym_DOT, - ACTIONS(5554), 1, + ACTIONS(5560), 1, anon_sym_RPAREN, STATE(2930), 2, sym_line_comment, sym_block_comment, - ACTIONS(2761), 11, + ACTIONS(2513), 11, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, @@ -270544,7 +270630,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(2759), 24, + ACTIONS(2511), 24, anon_sym_as, anon_sym_LPAREN, anon_sym_STAR, @@ -270569,17 +270655,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [94566] = 6, + [94507] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(5554), 1, - anon_sym_RPAREN, + ACTIONS(5548), 1, + anon_sym_RBRACK, STATE(2931), 2, sym_line_comment, sym_block_comment, - ACTIONS(2761), 11, + ACTIONS(2513), 11, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, @@ -270591,7 +270677,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(2759), 25, + ACTIONS(2511), 25, anon_sym_DOT, anon_sym_as, anon_sym_LPAREN, @@ -270617,17 +270703,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [94620] = 6, + [94561] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(5556), 1, - anon_sym_RPAREN, + ACTIONS(5534), 1, + anon_sym_RBRACK, STATE(2932), 2, sym_line_comment, sym_block_comment, - ACTIONS(2778), 11, + ACTIONS(2513), 11, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, @@ -270639,7 +270725,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(2776), 25, + ACTIONS(2511), 25, anon_sym_DOT, anon_sym_as, anon_sym_LPAREN, @@ -270665,17 +270751,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [94674] = 6, + [94615] = 7, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(5552), 1, + ACTIONS(4813), 1, + anon_sym_DOT, + ACTIONS(5562), 1, anon_sym_RPAREN, STATE(2933), 2, sym_line_comment, sym_block_comment, - ACTIONS(2761), 11, + ACTIONS(2513), 11, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, @@ -270687,8 +270775,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(2759), 25, - anon_sym_DOT, + ACTIONS(2511), 24, anon_sym_as, anon_sym_LPAREN, anon_sym_STAR, @@ -270713,17 +270800,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [94728] = 6, + [94671] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(5558), 1, - anon_sym_RBRACK, + ACTIONS(5562), 1, + anon_sym_RPAREN, STATE(2934), 2, sym_line_comment, sym_block_comment, - ACTIONS(3054), 11, + ACTIONS(2513), 11, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, @@ -270735,7 +270822,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(3052), 25, + ACTIONS(2511), 25, anon_sym_DOT, anon_sym_as, anon_sym_LPAREN, @@ -270761,19 +270848,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [94782] = 7, + [94725] = 7, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(4805), 1, + ACTIONS(4813), 1, anon_sym_DOT, - ACTIONS(5560), 1, - anon_sym_RBRACK, + ACTIONS(5550), 1, + anon_sym_RPAREN, STATE(2935), 2, sym_line_comment, sym_block_comment, - ACTIONS(2761), 11, + ACTIONS(2513), 11, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, @@ -270785,7 +270872,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(2759), 24, + ACTIONS(2511), 24, anon_sym_as, anon_sym_LPAREN, anon_sym_STAR, @@ -270810,7 +270897,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [94838] = 6, + [94781] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, @@ -270820,7 +270907,7 @@ static const uint16_t ts_small_parse_table[] = { STATE(2936), 2, sym_line_comment, sym_block_comment, - ACTIONS(2761), 11, + ACTIONS(2513), 11, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, @@ -270832,7 +270919,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(2759), 25, + ACTIONS(2511), 25, anon_sym_DOT, anon_sym_as, anon_sym_LPAREN, @@ -270858,17 +270945,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [94892] = 6, + [94835] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(5528), 1, + ACTIONS(5534), 1, anon_sym_RBRACK, STATE(2937), 2, sym_line_comment, sym_block_comment, - ACTIONS(3054), 11, + ACTIONS(2880), 11, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, @@ -270880,7 +270967,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(3052), 25, + ACTIONS(2878), 25, anon_sym_DOT, anon_sym_as, anon_sym_LPAREN, @@ -270906,17 +270993,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [94946] = 6, + [94889] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(5520), 1, + ACTIONS(5564), 1, anon_sym_RBRACK, STATE(2938), 2, sym_line_comment, sym_block_comment, - ACTIONS(2761), 11, + ACTIONS(2880), 11, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, @@ -270928,7 +271015,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(2759), 25, + ACTIONS(2878), 25, anon_sym_DOT, anon_sym_as, anon_sym_LPAREN, @@ -270954,17 +271041,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [95000] = 6, + [94943] = 7, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(5530), 1, + ACTIONS(4813), 1, + anon_sym_DOT, + ACTIONS(5528), 1, anon_sym_RBRACK, STATE(2939), 2, sym_line_comment, sym_block_comment, - ACTIONS(2761), 11, + ACTIONS(2513), 11, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, @@ -270976,8 +271065,56 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(2759), 25, + ACTIONS(2511), 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, + [94999] = 7, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(4813), 1, anon_sym_DOT, + ACTIONS(5536), 1, + anon_sym_RPAREN, + STATE(2940), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(2513), 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(2511), 24, anon_sym_as, anon_sym_LPAREN, anon_sym_STAR, @@ -271002,17 +271139,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [95054] = 6, + [95055] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(5542), 1, + ACTIONS(5566), 1, anon_sym_RBRACK, - STATE(2940), 2, + STATE(2941), 2, sym_line_comment, sym_block_comment, - ACTIONS(3054), 11, + ACTIONS(2880), 11, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, @@ -271024,7 +271161,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(3052), 25, + ACTIONS(2878), 25, anon_sym_DOT, anon_sym_as, anon_sym_LPAREN, @@ -271050,19 +271187,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [95108] = 7, + [95109] = 7, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(4805), 1, + ACTIONS(4813), 1, anon_sym_DOT, - ACTIONS(5542), 1, + ACTIONS(5514), 1, anon_sym_RBRACK, - STATE(2941), 2, + STATE(2942), 2, sym_line_comment, sym_block_comment, - ACTIONS(2761), 11, + ACTIONS(2513), 11, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, @@ -271074,7 +271211,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(2759), 24, + ACTIONS(2511), 24, anon_sym_as, anon_sym_LPAREN, anon_sym_STAR, @@ -271099,17 +271236,66 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [95164] = 6, + [95165] = 7, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(5520), 1, + ACTIONS(4813), 1, + anon_sym_DOT, + ACTIONS(5568), 1, anon_sym_RBRACK, - STATE(2942), 2, + STATE(2943), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(2513), 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(2511), 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, + [95221] = 6, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(5558), 1, + anon_sym_RBRACK, + STATE(2944), 2, sym_line_comment, sym_block_comment, - ACTIONS(3054), 11, + ACTIONS(2880), 11, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, @@ -271121,7 +271307,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(3052), 25, + ACTIONS(2878), 25, anon_sym_DOT, anon_sym_as, anon_sym_LPAREN, @@ -271147,17 +271333,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [95218] = 6, + [95275] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(5506), 1, + ACTIONS(5568), 1, anon_sym_RBRACK, - STATE(2943), 2, + STATE(2945), 2, sym_line_comment, sym_block_comment, - ACTIONS(2761), 11, + ACTIONS(2513), 11, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, @@ -271169,7 +271355,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(2759), 25, + ACTIONS(2511), 25, anon_sym_DOT, anon_sym_as, anon_sym_LPAREN, @@ -271195,17 +271381,65 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [95272] = 6, + [95329] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(5560), 1, + ACTIONS(5568), 1, anon_sym_RBRACK, - STATE(2944), 2, + STATE(2946), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(2880), 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(2878), 25, + anon_sym_DOT, + anon_sym_as, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LBRACK, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_AMP_CARET, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_or, + anon_sym_QMARK_DOT, + anon_sym_POUND_LBRACK, + anon_sym_is, + anon_sym_BANGis, + anon_sym_in, + anon_sym_BANGin, + [95383] = 6, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(5566), 1, + anon_sym_RBRACK, + STATE(2947), 2, sym_line_comment, sym_block_comment, - ACTIONS(2761), 11, + ACTIONS(2513), 11, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, @@ -271217,7 +271451,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(2759), 25, + ACTIONS(2511), 25, anon_sym_DOT, anon_sym_as, anon_sym_LPAREN, @@ -271243,17 +271477,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [95326] = 6, + [95437] = 7, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(5562), 1, + ACTIONS(4813), 1, + anon_sym_DOT, + ACTIONS(5548), 1, anon_sym_RBRACK, - STATE(2945), 2, + STATE(2948), 2, sym_line_comment, sym_block_comment, - ACTIONS(3054), 11, + ACTIONS(2513), 11, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, @@ -271265,8 +271501,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(3052), 25, - anon_sym_DOT, + ACTIONS(2511), 24, anon_sym_as, anon_sym_LPAREN, anon_sym_STAR, @@ -271291,17 +271526,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [95380] = 6, + [95493] = 7, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(5560), 1, + ACTIONS(4813), 1, + anon_sym_DOT, + ACTIONS(5566), 1, anon_sym_RBRACK, - STATE(2946), 2, + STATE(2949), 2, sym_line_comment, sym_block_comment, - ACTIONS(3054), 11, + ACTIONS(2513), 11, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, @@ -271313,8 +271550,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(3052), 25, - anon_sym_DOT, + ACTIONS(2511), 24, anon_sym_as, anon_sym_LPAREN, anon_sym_STAR, @@ -271339,17 +271575,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [95434] = 6, + [95549] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(5562), 1, + ACTIONS(5528), 1, anon_sym_RBRACK, - STATE(2947), 2, + STATE(2950), 2, sym_line_comment, sym_block_comment, - ACTIONS(2761), 11, + ACTIONS(2513), 11, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, @@ -271361,7 +271597,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(2759), 25, + ACTIONS(2511), 25, anon_sym_DOT, anon_sym_as, anon_sym_LPAREN, @@ -271387,17 +271623,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [95488] = 6, + [95603] = 7, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(5550), 1, + ACTIONS(4813), 1, + anon_sym_DOT, + ACTIONS(5520), 1, anon_sym_RBRACK, - STATE(2948), 2, + STATE(2951), 2, sym_line_comment, sym_block_comment, - ACTIONS(3054), 11, + ACTIONS(2513), 11, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, @@ -271409,8 +271647,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(3052), 25, - anon_sym_DOT, + ACTIONS(2511), 24, anon_sym_as, anon_sym_LPAREN, anon_sym_STAR, @@ -271435,19 +271672,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [95542] = 7, + [95659] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(4805), 1, - anon_sym_DOT, - ACTIONS(5564), 1, + ACTIONS(5560), 1, anon_sym_RPAREN, - STATE(2949), 2, + STATE(2952), 2, sym_line_comment, sym_block_comment, - ACTIONS(2761), 11, + ACTIONS(2513), 11, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, @@ -271459,7 +271694,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(2759), 24, + ACTIONS(2511), 25, + anon_sym_DOT, anon_sym_as, anon_sym_LPAREN, anon_sym_STAR, @@ -271484,17 +271720,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [95598] = 6, + [95713] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(5564), 1, + ACTIONS(5570), 1, anon_sym_RPAREN, - STATE(2950), 2, + STATE(2953), 2, sym_line_comment, sym_block_comment, - ACTIONS(2761), 11, + ACTIONS(2513), 11, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, @@ -271506,7 +271742,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(2759), 25, + ACTIONS(2511), 25, anon_sym_DOT, anon_sym_as, anon_sym_LPAREN, @@ -271532,19 +271768,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [95652] = 7, + [95767] = 7, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(4805), 1, + ACTIONS(4813), 1, anon_sym_DOT, - ACTIONS(5528), 1, - anon_sym_RBRACK, - STATE(2951), 2, + ACTIONS(5570), 1, + anon_sym_RPAREN, + STATE(2954), 2, sym_line_comment, sym_block_comment, - ACTIONS(2761), 11, + ACTIONS(2513), 11, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, @@ -271556,7 +271792,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(2759), 24, + ACTIONS(2511), 24, anon_sym_as, anon_sym_LPAREN, anon_sym_STAR, @@ -271581,17 +271817,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [95708] = 6, + [95823] = 7, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(5566), 1, - anon_sym_RPAREN, - STATE(2952), 2, + ACTIONS(4813), 1, + anon_sym_DOT, + ACTIONS(5516), 1, + anon_sym_RBRACK, + STATE(2955), 2, sym_line_comment, sym_block_comment, - ACTIONS(2761), 11, + ACTIONS(2513), 11, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, @@ -271603,8 +271841,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(2759), 25, - anon_sym_DOT, + ACTIONS(2511), 24, anon_sym_as, anon_sym_LPAREN, anon_sym_STAR, @@ -271629,19 +271866,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [95762] = 7, + [95879] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(4805), 1, - anon_sym_DOT, - ACTIONS(5558), 1, - anon_sym_RBRACK, - STATE(2953), 2, + ACTIONS(5572), 1, + anon_sym_RPAREN, + STATE(2956), 2, sym_line_comment, sym_block_comment, - ACTIONS(2761), 11, + ACTIONS(2513), 11, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, @@ -271653,7 +271888,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(2759), 24, + ACTIONS(2511), 25, + anon_sym_DOT, anon_sym_as, anon_sym_LPAREN, anon_sym_STAR, @@ -271678,19 +271914,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [95818] = 7, + [95933] = 7, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(4805), 1, + ACTIONS(4813), 1, anon_sym_DOT, - ACTIONS(5546), 1, - anon_sym_RBRACK, - STATE(2954), 2, + ACTIONS(5572), 1, + anon_sym_RPAREN, + STATE(2957), 2, sym_line_comment, sym_block_comment, - ACTIONS(2761), 11, + ACTIONS(2513), 11, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, @@ -271702,7 +271938,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(2759), 24, + ACTIONS(2511), 24, anon_sym_as, anon_sym_LPAREN, anon_sym_STAR, @@ -271727,19 +271963,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [95874] = 7, + [95989] = 7, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(4805), 1, + ACTIONS(4813), 1, anon_sym_DOT, - ACTIONS(5562), 1, + ACTIONS(5564), 1, anon_sym_RBRACK, - STATE(2955), 2, + STATE(2958), 2, sym_line_comment, sym_block_comment, - ACTIONS(2761), 11, + ACTIONS(2513), 11, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, @@ -271751,7 +271987,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(2759), 24, + ACTIONS(2511), 24, anon_sym_as, anon_sym_LPAREN, anon_sym_STAR, @@ -271776,19 +272012,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [95930] = 7, + [96045] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(4805), 1, - anon_sym_DOT, - ACTIONS(5566), 1, - anon_sym_RPAREN, - STATE(2956), 2, + ACTIONS(5564), 1, + anon_sym_RBRACK, + STATE(2959), 2, sym_line_comment, sym_block_comment, - ACTIONS(2761), 11, + ACTIONS(2513), 11, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, @@ -271800,7 +272034,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(2759), 24, + ACTIONS(2511), 25, + anon_sym_DOT, anon_sym_as, anon_sym_LPAREN, anon_sym_STAR, @@ -271825,59 +272060,59 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [95986] = 24, + [96099] = 24, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(3596), 1, + ACTIONS(3602), 1, sym_identifier, - ACTIONS(3600), 1, + ACTIONS(3606), 1, anon_sym_fn, - ACTIONS(3604), 1, + ACTIONS(3610), 1, anon_sym_struct, - ACTIONS(3614), 1, + ACTIONS(3620), 1, anon_sym_shared, - ACTIONS(3618), 1, + ACTIONS(3624), 1, anon_sym_chan, - ACTIONS(3620), 1, + ACTIONS(3626), 1, anon_sym_thread, - ACTIONS(3622), 1, + ACTIONS(3628), 1, anon_sym_atomic, - ACTIONS(5568), 1, + ACTIONS(5574), 1, anon_sym_LPAREN, - ACTIONS(5570), 1, + ACTIONS(5576), 1, anon_sym_EQ, - ACTIONS(5572), 1, + ACTIONS(5578), 1, anon_sym_STAR, - ACTIONS(5574), 1, + ACTIONS(5580), 1, anon_sym_QMARK, - ACTIONS(5576), 1, + ACTIONS(5582), 1, anon_sym_BANG, - ACTIONS(5578), 1, + ACTIONS(5584), 1, anon_sym_LBRACK2, - ACTIONS(5580), 1, + ACTIONS(5586), 1, anon_sym_AMP, - ACTIONS(5582), 1, + ACTIONS(5588), 1, anon_sym_map_LBRACK, - STATE(1498), 1, - sym__global_var_value, - STATE(1501), 1, + STATE(1508), 1, sym_plain_type, - STATE(4459), 1, + STATE(1509), 1, + sym__global_var_value, + STATE(4496), 1, sym_reference_expression, - STATE(1402), 2, + STATE(1401), 2, sym_type_reference_expression, sym_qualified_type, - STATE(2957), 2, + STATE(2960), 2, sym_line_comment, sym_block_comment, - STATE(1418), 4, + STATE(1444), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(1419), 12, + STATE(1445), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -271890,248 +272125,59 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [96075] = 24, + [96188] = 24, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(3420), 1, + ACTIONS(3426), 1, sym_identifier, - ACTIONS(3634), 1, + ACTIONS(3638), 1, anon_sym_struct, - ACTIONS(5484), 1, + ACTIONS(5486), 1, anon_sym_fn, - ACTIONS(5496), 1, + ACTIONS(5498), 1, anon_sym_shared, - ACTIONS(5500), 1, - anon_sym_chan, ACTIONS(5502), 1, - anon_sym_thread, + anon_sym_chan, ACTIONS(5504), 1, + anon_sym_thread, + ACTIONS(5506), 1, anon_sym_atomic, - ACTIONS(5584), 1, - anon_sym_LPAREN, - ACTIONS(5586), 1, - anon_sym_EQ, - ACTIONS(5588), 1, - anon_sym_STAR, ACTIONS(5590), 1, - anon_sym_QMARK, + anon_sym_LPAREN, ACTIONS(5592), 1, - anon_sym_BANG, + anon_sym_EQ, ACTIONS(5594), 1, - anon_sym_LBRACK2, - ACTIONS(5596), 1, - anon_sym_AMP, - ACTIONS(5598), 1, - anon_sym_map_LBRACK, - STATE(3623), 1, - sym_plain_type, - STATE(3723), 1, - sym__global_var_value, - STATE(4341), 1, - sym_reference_expression, - STATE(2958), 2, - sym_line_comment, - sym_block_comment, - STATE(3286), 2, - sym_type_reference_expression, - sym_qualified_type, - STATE(1635), 4, - sym__plain_type_without_special, - sym_multi_return_type, - sym_result_type, - sym_option_type, - STATE(1629), 12, - sym_anon_struct_type, - sym_fixed_array_type, - sym_array_type, - sym_pointer_type, - sym_wrong_pointer_type, - sym_map_type, - sym_channel_type, - sym_shared_type, - sym_thread_type, - sym_atomic_type, - sym_generic_type, - sym_function_type, - [96164] = 23, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_STAR, - ACTIONS(47), 1, - anon_sym_QMARK, - ACTIONS(85), 1, - anon_sym_map_LBRACK, - ACTIONS(87), 1, - anon_sym_chan, - ACTIONS(89), 1, - anon_sym_thread, - ACTIONS(91), 1, - anon_sym_atomic, - ACTIONS(597), 1, - sym_identifier, - ACTIONS(603), 1, - anon_sym_fn, - ACTIONS(607), 1, - anon_sym_struct, - ACTIONS(615), 1, - anon_sym_shared, - ACTIONS(3586), 1, - anon_sym_LPAREN, - ACTIONS(3588), 1, anon_sym_STAR, - ACTIONS(5302), 1, - anon_sym_BANG, - ACTIONS(5304), 1, - anon_sym_LBRACK2, - ACTIONS(5306), 1, - anon_sym_AMP, - ACTIONS(5474), 1, - anon_sym_DOT_DOT_DOT, - STATE(4011), 1, - sym_plain_type, - STATE(4495), 1, - sym_reference_expression, - STATE(2959), 2, - sym_line_comment, - sym_block_comment, - STATE(3541), 2, - sym_type_reference_expression, - sym_qualified_type, - STATE(2302), 4, - sym__plain_type_without_special, - sym_multi_return_type, - sym_result_type, - sym_option_type, - STATE(2303), 12, - sym_anon_struct_type, - sym_fixed_array_type, - sym_array_type, - sym_pointer_type, - sym_wrong_pointer_type, - sym_map_type, - sym_channel_type, - sym_shared_type, - sym_thread_type, - sym_atomic_type, - sym_generic_type, - sym_function_type, - [96250] = 23, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_STAR, - ACTIONS(47), 1, + ACTIONS(5596), 1, anon_sym_QMARK, - ACTIONS(85), 1, - anon_sym_map_LBRACK, - ACTIONS(87), 1, - anon_sym_chan, - ACTIONS(89), 1, - anon_sym_thread, - ACTIONS(91), 1, - anon_sym_atomic, - ACTIONS(597), 1, - sym_identifier, - ACTIONS(603), 1, - anon_sym_fn, - ACTIONS(607), 1, - anon_sym_struct, - ACTIONS(615), 1, - anon_sym_shared, - ACTIONS(3586), 1, - anon_sym_LPAREN, - ACTIONS(3588), 1, - anon_sym_STAR, - ACTIONS(5302), 1, + ACTIONS(5598), 1, anon_sym_BANG, - ACTIONS(5304), 1, - anon_sym_LBRACK2, - ACTIONS(5306), 1, - anon_sym_AMP, ACTIONS(5600), 1, - anon_sym_RPAREN, - STATE(3976), 1, - sym_plain_type, - STATE(4495), 1, - sym_reference_expression, - STATE(2960), 2, - sym_line_comment, - sym_block_comment, - STATE(3541), 2, - sym_type_reference_expression, - sym_qualified_type, - STATE(2302), 4, - sym__plain_type_without_special, - sym_multi_return_type, - sym_result_type, - sym_option_type, - STATE(2303), 12, - sym_anon_struct_type, - sym_fixed_array_type, - sym_array_type, - sym_pointer_type, - sym_wrong_pointer_type, - sym_map_type, - sym_channel_type, - sym_shared_type, - sym_thread_type, - sym_atomic_type, - sym_generic_type, - sym_function_type, - [96336] = 23, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_STAR, - ACTIONS(47), 1, - anon_sym_QMARK, - ACTIONS(85), 1, - anon_sym_map_LBRACK, - ACTIONS(87), 1, - anon_sym_chan, - ACTIONS(89), 1, - anon_sym_thread, - ACTIONS(91), 1, - anon_sym_atomic, - ACTIONS(597), 1, - sym_identifier, - ACTIONS(603), 1, - anon_sym_fn, - ACTIONS(607), 1, - anon_sym_struct, - ACTIONS(615), 1, - anon_sym_shared, - ACTIONS(3586), 1, - anon_sym_LPAREN, - ACTIONS(3588), 1, - anon_sym_STAR, - ACTIONS(5302), 1, - anon_sym_BANG, - ACTIONS(5304), 1, anon_sym_LBRACK2, - ACTIONS(5306), 1, - anon_sym_AMP, ACTIONS(5602), 1, - anon_sym_RPAREN, - STATE(3976), 1, + anon_sym_AMP, + ACTIONS(5604), 1, + anon_sym_map_LBRACK, + STATE(3681), 1, sym_plain_type, - STATE(4495), 1, + STATE(3684), 1, + sym__global_var_value, + STATE(4351), 1, sym_reference_expression, STATE(2961), 2, sym_line_comment, sym_block_comment, - STATE(3541), 2, + STATE(3305), 2, sym_type_reference_expression, sym_qualified_type, - STATE(2302), 4, + STATE(1647), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(2303), 12, + STATE(1667), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -272144,7 +272190,7 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [96422] = 23, + [96277] = 23, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, @@ -272159,42 +272205,42 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_thread, ACTIONS(91), 1, anon_sym_atomic, - ACTIONS(597), 1, + ACTIONS(565), 1, sym_identifier, - ACTIONS(603), 1, + ACTIONS(571), 1, anon_sym_fn, - ACTIONS(607), 1, + ACTIONS(575), 1, anon_sym_struct, - ACTIONS(615), 1, + ACTIONS(583), 1, anon_sym_shared, - ACTIONS(3586), 1, + ACTIONS(3564), 1, anon_sym_LPAREN, - ACTIONS(3588), 1, + ACTIONS(3566), 1, anon_sym_STAR, - ACTIONS(5302), 1, + ACTIONS(5308), 1, anon_sym_BANG, - ACTIONS(5304), 1, + ACTIONS(5310), 1, anon_sym_LBRACK2, - ACTIONS(5306), 1, + ACTIONS(5312), 1, anon_sym_AMP, - ACTIONS(5604), 1, + ACTIONS(5606), 1, anon_sym_RPAREN, - STATE(3976), 1, + STATE(3991), 1, sym_plain_type, - STATE(4495), 1, + STATE(4498), 1, sym_reference_expression, STATE(2962), 2, sym_line_comment, sym_block_comment, - STATE(3541), 2, + STATE(3460), 2, sym_type_reference_expression, sym_qualified_type, - STATE(2302), 4, + STATE(2360), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(2303), 12, + STATE(2362), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -272207,7 +272253,7 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [96508] = 23, + [96363] = 23, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, @@ -272222,42 +272268,42 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_thread, ACTIONS(91), 1, anon_sym_atomic, - ACTIONS(603), 1, + ACTIONS(571), 1, anon_sym_fn, - ACTIONS(607), 1, + ACTIONS(575), 1, anon_sym_struct, - ACTIONS(615), 1, + ACTIONS(583), 1, anon_sym_shared, - ACTIONS(3586), 1, + ACTIONS(3564), 1, anon_sym_LPAREN, - ACTIONS(3588), 1, + ACTIONS(3566), 1, anon_sym_STAR, - ACTIONS(5302), 1, + ACTIONS(5308), 1, anon_sym_BANG, - ACTIONS(5304), 1, + ACTIONS(5310), 1, anon_sym_LBRACK2, - ACTIONS(5306), 1, + ACTIONS(5312), 1, anon_sym_AMP, - ACTIONS(5606), 1, - sym_identifier, ACTIONS(5608), 1, + sym_identifier, + ACTIONS(5610), 1, anon_sym_DOT_DOT_DOT, - STATE(4003), 1, + STATE(4081), 1, sym_plain_type, - STATE(4495), 1, + STATE(4498), 1, sym_reference_expression, STATE(2963), 2, sym_line_comment, sym_block_comment, - STATE(3541), 2, + STATE(3460), 2, sym_type_reference_expression, sym_qualified_type, - STATE(2302), 4, + STATE(2360), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(2303), 12, + STATE(2362), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -272270,7 +272316,7 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [96594] = 23, + [96449] = 23, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, @@ -272285,105 +272331,42 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_thread, ACTIONS(91), 1, anon_sym_atomic, - ACTIONS(597), 1, + ACTIONS(565), 1, sym_identifier, - ACTIONS(603), 1, + ACTIONS(571), 1, anon_sym_fn, - ACTIONS(607), 1, + ACTIONS(575), 1, anon_sym_struct, - ACTIONS(615), 1, + ACTIONS(583), 1, anon_sym_shared, - ACTIONS(3586), 1, + ACTIONS(3564), 1, anon_sym_LPAREN, - ACTIONS(3588), 1, + ACTIONS(3566), 1, anon_sym_STAR, - ACTIONS(5302), 1, + ACTIONS(5308), 1, anon_sym_BANG, - ACTIONS(5304), 1, + ACTIONS(5310), 1, anon_sym_LBRACK2, - ACTIONS(5306), 1, + ACTIONS(5312), 1, anon_sym_AMP, - ACTIONS(5610), 1, + ACTIONS(5612), 1, anon_sym_RPAREN, - STATE(3976), 1, + STATE(3991), 1, sym_plain_type, - STATE(4495), 1, + STATE(4498), 1, sym_reference_expression, STATE(2964), 2, sym_line_comment, sym_block_comment, - STATE(3541), 2, - sym_type_reference_expression, - sym_qualified_type, - STATE(2302), 4, - sym__plain_type_without_special, - sym_multi_return_type, - sym_result_type, - sym_option_type, - STATE(2303), 12, - sym_anon_struct_type, - sym_fixed_array_type, - sym_array_type, - sym_pointer_type, - sym_wrong_pointer_type, - sym_map_type, - sym_channel_type, - sym_shared_type, - sym_thread_type, - sym_atomic_type, - sym_generic_type, - sym_function_type, - [96680] = 23, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_STAR, - ACTIONS(47), 1, - anon_sym_QMARK, - ACTIONS(85), 1, - anon_sym_map_LBRACK, - ACTIONS(87), 1, - anon_sym_chan, - ACTIONS(89), 1, - anon_sym_thread, - ACTIONS(91), 1, - anon_sym_atomic, - ACTIONS(597), 1, - sym_identifier, - ACTIONS(603), 1, - anon_sym_fn, - ACTIONS(607), 1, - anon_sym_struct, - ACTIONS(615), 1, - anon_sym_shared, - ACTIONS(3586), 1, - anon_sym_LPAREN, - ACTIONS(3588), 1, - anon_sym_STAR, - ACTIONS(5302), 1, - anon_sym_BANG, - ACTIONS(5304), 1, - anon_sym_LBRACK2, - ACTIONS(5306), 1, - anon_sym_AMP, - ACTIONS(5448), 1, - anon_sym_DOT_DOT_DOT, - STATE(4300), 1, - sym_plain_type, - STATE(4495), 1, - sym_reference_expression, - STATE(2965), 2, - sym_line_comment, - sym_block_comment, - STATE(3541), 2, + STATE(3460), 2, sym_type_reference_expression, sym_qualified_type, - STATE(2302), 4, + STATE(2360), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(2303), 12, + STATE(2362), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -272396,7 +272379,7 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [96766] = 23, + [96535] = 23, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, @@ -272411,42 +272394,92 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_thread, ACTIONS(91), 1, anon_sym_atomic, - ACTIONS(597), 1, + ACTIONS(565), 1, sym_identifier, - ACTIONS(603), 1, + ACTIONS(571), 1, anon_sym_fn, - ACTIONS(607), 1, + ACTIONS(575), 1, anon_sym_struct, - ACTIONS(615), 1, + ACTIONS(583), 1, anon_sym_shared, - ACTIONS(3586), 1, + ACTIONS(3564), 1, anon_sym_LPAREN, - ACTIONS(3588), 1, + ACTIONS(3566), 1, anon_sym_STAR, - ACTIONS(5302), 1, + ACTIONS(5308), 1, anon_sym_BANG, - ACTIONS(5304), 1, + ACTIONS(5310), 1, anon_sym_LBRACK2, - ACTIONS(5306), 1, + ACTIONS(5312), 1, anon_sym_AMP, - ACTIONS(5612), 1, + ACTIONS(5614), 1, anon_sym_RPAREN, - STATE(3976), 1, + STATE(3991), 1, + sym_plain_type, + STATE(4498), 1, + sym_reference_expression, + STATE(2965), 2, + sym_line_comment, + sym_block_comment, + STATE(3460), 2, + sym_type_reference_expression, + sym_qualified_type, + STATE(2360), 4, + sym__plain_type_without_special, + sym_multi_return_type, + sym_result_type, + sym_option_type, + STATE(2362), 12, + sym_anon_struct_type, + sym_fixed_array_type, + sym_array_type, + sym_pointer_type, + sym_wrong_pointer_type, + sym_map_type, + sym_channel_type, + sym_shared_type, + sym_thread_type, + sym_atomic_type, + sym_generic_type, + sym_function_type, + [96621] = 10, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + STATE(2332), 1, sym_plain_type, - STATE(4495), 1, + STATE(4498), 1, sym_reference_expression, STATE(2966), 2, sym_line_comment, sym_block_comment, - STATE(3541), 2, + STATE(3460), 2, sym_type_reference_expression, sym_qualified_type, - STATE(2302), 4, + STATE(2360), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(2303), 12, + ACTIONS(4557), 7, + anon_sym_fn, + anon_sym_struct, + sym_identifier, + anon_sym_shared, + anon_sym_chan, + anon_sym_thread, + anon_sym_atomic, + ACTIONS(4559), 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(2362), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -272459,7 +272492,7 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [96852] = 23, + [96681] = 23, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, @@ -272474,42 +272507,42 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_thread, ACTIONS(91), 1, anon_sym_atomic, - ACTIONS(597), 1, + ACTIONS(565), 1, sym_identifier, - ACTIONS(603), 1, + ACTIONS(571), 1, anon_sym_fn, - ACTIONS(607), 1, + ACTIONS(575), 1, anon_sym_struct, - ACTIONS(615), 1, + ACTIONS(583), 1, anon_sym_shared, - ACTIONS(3586), 1, + ACTIONS(3564), 1, anon_sym_LPAREN, - ACTIONS(3588), 1, + ACTIONS(3566), 1, anon_sym_STAR, - ACTIONS(5302), 1, + ACTIONS(5308), 1, anon_sym_BANG, - ACTIONS(5304), 1, + ACTIONS(5310), 1, anon_sym_LBRACK2, - ACTIONS(5306), 1, + ACTIONS(5312), 1, anon_sym_AMP, - ACTIONS(5614), 1, + ACTIONS(5616), 1, anon_sym_RPAREN, - STATE(3976), 1, + STATE(3991), 1, sym_plain_type, - STATE(4495), 1, + STATE(4498), 1, sym_reference_expression, STATE(2967), 2, sym_line_comment, sym_block_comment, - STATE(3541), 2, + STATE(3460), 2, sym_type_reference_expression, sym_qualified_type, - STATE(2302), 4, + STATE(2360), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(2303), 12, + STATE(2362), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -272522,7 +272555,7 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [96938] = 23, + [96767] = 23, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, @@ -272537,42 +272570,42 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_thread, ACTIONS(91), 1, anon_sym_atomic, - ACTIONS(597), 1, + ACTIONS(565), 1, sym_identifier, - ACTIONS(603), 1, + ACTIONS(571), 1, anon_sym_fn, - ACTIONS(607), 1, + ACTIONS(575), 1, anon_sym_struct, - ACTIONS(615), 1, + ACTIONS(583), 1, anon_sym_shared, - ACTIONS(3586), 1, + ACTIONS(3564), 1, anon_sym_LPAREN, - ACTIONS(3588), 1, + ACTIONS(3566), 1, anon_sym_STAR, - ACTIONS(5302), 1, + ACTIONS(5308), 1, anon_sym_BANG, - ACTIONS(5304), 1, + ACTIONS(5310), 1, anon_sym_LBRACK2, - ACTIONS(5306), 1, + ACTIONS(5312), 1, anon_sym_AMP, - ACTIONS(5616), 1, + ACTIONS(5618), 1, anon_sym_RPAREN, - STATE(3976), 1, + STATE(3991), 1, sym_plain_type, - STATE(4495), 1, + STATE(4498), 1, sym_reference_expression, STATE(2968), 2, sym_line_comment, sym_block_comment, - STATE(3541), 2, + STATE(3460), 2, sym_type_reference_expression, sym_qualified_type, - STATE(2302), 4, + STATE(2360), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(2303), 12, + STATE(2362), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -272585,57 +272618,57 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [97024] = 23, + [96853] = 23, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(3596), 1, + ACTIONS(47), 1, + anon_sym_QMARK, + ACTIONS(85), 1, + anon_sym_map_LBRACK, + ACTIONS(87), 1, + anon_sym_chan, + ACTIONS(89), 1, + anon_sym_thread, + ACTIONS(91), 1, + anon_sym_atomic, + ACTIONS(565), 1, sym_identifier, - ACTIONS(3600), 1, + ACTIONS(571), 1, anon_sym_fn, - ACTIONS(3604), 1, + ACTIONS(575), 1, anon_sym_struct, - ACTIONS(3614), 1, + ACTIONS(583), 1, anon_sym_shared, - ACTIONS(3618), 1, - anon_sym_chan, - ACTIONS(3620), 1, - anon_sym_thread, - ACTIONS(3622), 1, - anon_sym_atomic, - ACTIONS(5568), 1, + ACTIONS(3564), 1, anon_sym_LPAREN, - ACTIONS(5572), 1, + ACTIONS(3566), 1, anon_sym_STAR, - ACTIONS(5574), 1, - anon_sym_QMARK, - ACTIONS(5576), 1, + ACTIONS(5308), 1, anon_sym_BANG, - ACTIONS(5578), 1, + ACTIONS(5310), 1, anon_sym_LBRACK2, - ACTIONS(5580), 1, + ACTIONS(5312), 1, anon_sym_AMP, - ACTIONS(5582), 1, - anon_sym_map_LBRACK, - STATE(1412), 1, + ACTIONS(5620), 1, + anon_sym_RPAREN, + STATE(3991), 1, sym_plain_type, - STATE(1519), 1, - sym__type_union_list, - STATE(4459), 1, + STATE(4498), 1, sym_reference_expression, - STATE(1402), 2, - sym_type_reference_expression, - sym_qualified_type, STATE(2969), 2, sym_line_comment, sym_block_comment, - STATE(1418), 4, + STATE(3460), 2, + sym_type_reference_expression, + sym_qualified_type, + STATE(2360), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(1419), 12, + STATE(2362), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -272648,7 +272681,7 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [97110] = 23, + [96939] = 23, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, @@ -272663,42 +272696,42 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_thread, ACTIONS(91), 1, anon_sym_atomic, - ACTIONS(597), 1, + ACTIONS(565), 1, sym_identifier, - ACTIONS(603), 1, + ACTIONS(571), 1, anon_sym_fn, - ACTIONS(607), 1, + ACTIONS(575), 1, anon_sym_struct, - ACTIONS(615), 1, + ACTIONS(583), 1, anon_sym_shared, - ACTIONS(3586), 1, + ACTIONS(3564), 1, anon_sym_LPAREN, - ACTIONS(3588), 1, + ACTIONS(3566), 1, anon_sym_STAR, - ACTIONS(5302), 1, + ACTIONS(5308), 1, anon_sym_BANG, - ACTIONS(5304), 1, + ACTIONS(5310), 1, anon_sym_LBRACK2, - ACTIONS(5306), 1, + ACTIONS(5312), 1, anon_sym_AMP, - ACTIONS(5618), 1, + ACTIONS(5622), 1, anon_sym_RPAREN, - STATE(3976), 1, + STATE(3991), 1, sym_plain_type, - STATE(4495), 1, + STATE(4498), 1, sym_reference_expression, STATE(2970), 2, sym_line_comment, sym_block_comment, - STATE(3541), 2, + STATE(3460), 2, sym_type_reference_expression, sym_qualified_type, - STATE(2302), 4, + STATE(2360), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(2303), 12, + STATE(2362), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -272711,7 +272744,7 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [97196] = 23, + [97025] = 23, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, @@ -272726,42 +272759,42 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_thread, ACTIONS(91), 1, anon_sym_atomic, - ACTIONS(597), 1, + ACTIONS(565), 1, sym_identifier, - ACTIONS(603), 1, + ACTIONS(571), 1, anon_sym_fn, - ACTIONS(607), 1, + ACTIONS(575), 1, anon_sym_struct, - ACTIONS(615), 1, + ACTIONS(583), 1, anon_sym_shared, - ACTIONS(3586), 1, + ACTIONS(3564), 1, anon_sym_LPAREN, - ACTIONS(3588), 1, + ACTIONS(3566), 1, anon_sym_STAR, - ACTIONS(5302), 1, + ACTIONS(5308), 1, anon_sym_BANG, - ACTIONS(5304), 1, + ACTIONS(5310), 1, anon_sym_LBRACK2, - ACTIONS(5306), 1, + ACTIONS(5312), 1, anon_sym_AMP, - ACTIONS(5620), 1, + ACTIONS(5624), 1, anon_sym_RPAREN, - STATE(3976), 1, + STATE(3991), 1, sym_plain_type, - STATE(4495), 1, + STATE(4498), 1, sym_reference_expression, STATE(2971), 2, sym_line_comment, sym_block_comment, - STATE(3541), 2, + STATE(3460), 2, sym_type_reference_expression, sym_qualified_type, - STATE(2302), 4, + STATE(2360), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(2303), 12, + STATE(2362), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -272774,57 +272807,57 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [97282] = 23, + [97111] = 23, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(3596), 1, + ACTIONS(47), 1, + anon_sym_QMARK, + ACTIONS(85), 1, + anon_sym_map_LBRACK, + ACTIONS(87), 1, + anon_sym_chan, + ACTIONS(89), 1, + anon_sym_thread, + ACTIONS(91), 1, + anon_sym_atomic, + ACTIONS(565), 1, sym_identifier, - ACTIONS(3600), 1, + ACTIONS(571), 1, anon_sym_fn, - ACTIONS(3604), 1, + ACTIONS(575), 1, anon_sym_struct, - ACTIONS(3614), 1, + ACTIONS(583), 1, anon_sym_shared, - ACTIONS(3618), 1, - anon_sym_chan, - ACTIONS(3620), 1, - anon_sym_thread, - ACTIONS(3622), 1, - anon_sym_atomic, - ACTIONS(5568), 1, + ACTIONS(3564), 1, anon_sym_LPAREN, - ACTIONS(5572), 1, + ACTIONS(3566), 1, anon_sym_STAR, - ACTIONS(5574), 1, - anon_sym_QMARK, - ACTIONS(5576), 1, + ACTIONS(5308), 1, anon_sym_BANG, - ACTIONS(5578), 1, + ACTIONS(5310), 1, anon_sym_LBRACK2, - ACTIONS(5580), 1, + ACTIONS(5312), 1, anon_sym_AMP, - ACTIONS(5582), 1, - anon_sym_map_LBRACK, - STATE(1412), 1, + ACTIONS(5626), 1, + anon_sym_RPAREN, + STATE(3991), 1, sym_plain_type, - STATE(1556), 1, - sym__type_union_list, - STATE(4459), 1, + STATE(4498), 1, sym_reference_expression, - STATE(1402), 2, - sym_type_reference_expression, - sym_qualified_type, STATE(2972), 2, sym_line_comment, sym_block_comment, - STATE(1418), 4, + STATE(3460), 2, + sym_type_reference_expression, + sym_qualified_type, + STATE(2360), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(1419), 12, + STATE(2362), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -272837,7 +272870,7 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [97368] = 23, + [97197] = 23, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, @@ -272852,42 +272885,42 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_thread, ACTIONS(91), 1, anon_sym_atomic, - ACTIONS(597), 1, + ACTIONS(565), 1, sym_identifier, - ACTIONS(603), 1, + ACTIONS(571), 1, anon_sym_fn, - ACTIONS(607), 1, + ACTIONS(575), 1, anon_sym_struct, - ACTIONS(615), 1, + ACTIONS(583), 1, anon_sym_shared, - ACTIONS(3586), 1, + ACTIONS(3564), 1, anon_sym_LPAREN, - ACTIONS(3588), 1, + ACTIONS(3566), 1, anon_sym_STAR, - ACTIONS(5302), 1, + ACTIONS(5308), 1, anon_sym_BANG, - ACTIONS(5304), 1, + ACTIONS(5310), 1, anon_sym_LBRACK2, - ACTIONS(5306), 1, + ACTIONS(5312), 1, anon_sym_AMP, - ACTIONS(5622), 1, + ACTIONS(5628), 1, anon_sym_RPAREN, - STATE(3976), 1, + STATE(3991), 1, sym_plain_type, - STATE(4495), 1, + STATE(4498), 1, sym_reference_expression, STATE(2973), 2, sym_line_comment, sym_block_comment, - STATE(3541), 2, + STATE(3460), 2, sym_type_reference_expression, sym_qualified_type, - STATE(2302), 4, + STATE(2360), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(2303), 12, + STATE(2362), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -272900,7 +272933,7 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [97454] = 23, + [97283] = 23, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, @@ -272915,42 +272948,42 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_thread, ACTIONS(91), 1, anon_sym_atomic, - ACTIONS(597), 1, + ACTIONS(565), 1, sym_identifier, - ACTIONS(603), 1, + ACTIONS(571), 1, anon_sym_fn, - ACTIONS(607), 1, + ACTIONS(575), 1, anon_sym_struct, - ACTIONS(615), 1, + ACTIONS(583), 1, anon_sym_shared, - ACTIONS(3586), 1, + ACTIONS(3564), 1, anon_sym_LPAREN, - ACTIONS(3588), 1, + ACTIONS(3566), 1, anon_sym_STAR, - ACTIONS(5302), 1, + ACTIONS(5308), 1, anon_sym_BANG, - ACTIONS(5304), 1, + ACTIONS(5310), 1, anon_sym_LBRACK2, - ACTIONS(5306), 1, + ACTIONS(5312), 1, anon_sym_AMP, - ACTIONS(5624), 1, + ACTIONS(5630), 1, anon_sym_RPAREN, - STATE(3976), 1, + STATE(3991), 1, sym_plain_type, - STATE(4495), 1, + STATE(4498), 1, sym_reference_expression, STATE(2974), 2, sym_line_comment, sym_block_comment, - STATE(3541), 2, + STATE(3460), 2, sym_type_reference_expression, sym_qualified_type, - STATE(2302), 4, + STATE(2360), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(2303), 12, + STATE(2362), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -272963,7 +272996,7 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [97540] = 23, + [97369] = 23, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, @@ -272978,42 +273011,42 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_thread, ACTIONS(91), 1, anon_sym_atomic, - ACTIONS(597), 1, + ACTIONS(565), 1, sym_identifier, - ACTIONS(603), 1, + ACTIONS(571), 1, anon_sym_fn, - ACTIONS(607), 1, + ACTIONS(575), 1, anon_sym_struct, - ACTIONS(615), 1, + ACTIONS(583), 1, anon_sym_shared, - ACTIONS(3586), 1, + ACTIONS(3564), 1, anon_sym_LPAREN, - ACTIONS(3588), 1, + ACTIONS(3566), 1, anon_sym_STAR, - ACTIONS(5302), 1, + ACTIONS(5308), 1, anon_sym_BANG, - ACTIONS(5304), 1, + ACTIONS(5310), 1, anon_sym_LBRACK2, - ACTIONS(5306), 1, + ACTIONS(5312), 1, anon_sym_AMP, - ACTIONS(5626), 1, + ACTIONS(5632), 1, anon_sym_RPAREN, - STATE(3976), 1, + STATE(3991), 1, sym_plain_type, - STATE(4495), 1, + STATE(4498), 1, sym_reference_expression, STATE(2975), 2, sym_line_comment, sym_block_comment, - STATE(3541), 2, + STATE(3460), 2, sym_type_reference_expression, sym_qualified_type, - STATE(2302), 4, + STATE(2360), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(2303), 12, + STATE(2362), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -273026,7 +273059,7 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [97626] = 23, + [97455] = 23, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, @@ -273041,42 +273074,42 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_thread, ACTIONS(91), 1, anon_sym_atomic, - ACTIONS(597), 1, + ACTIONS(565), 1, sym_identifier, - ACTIONS(603), 1, + ACTIONS(571), 1, anon_sym_fn, - ACTIONS(607), 1, + ACTIONS(575), 1, anon_sym_struct, - ACTIONS(615), 1, + ACTIONS(583), 1, anon_sym_shared, - ACTIONS(3586), 1, + ACTIONS(3564), 1, anon_sym_LPAREN, - ACTIONS(3588), 1, + ACTIONS(3566), 1, anon_sym_STAR, - ACTIONS(5302), 1, + ACTIONS(5308), 1, anon_sym_BANG, - ACTIONS(5304), 1, + ACTIONS(5310), 1, anon_sym_LBRACK2, - ACTIONS(5306), 1, + ACTIONS(5312), 1, anon_sym_AMP, - ACTIONS(5628), 1, + ACTIONS(5634), 1, anon_sym_RPAREN, - STATE(3976), 1, + STATE(3991), 1, sym_plain_type, - STATE(4495), 1, + STATE(4498), 1, sym_reference_expression, STATE(2976), 2, sym_line_comment, sym_block_comment, - STATE(3541), 2, + STATE(3460), 2, sym_type_reference_expression, sym_qualified_type, - STATE(2302), 4, + STATE(2360), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(2303), 12, + STATE(2362), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -273089,57 +273122,57 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [97712] = 23, + [97541] = 23, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(47), 1, - anon_sym_QMARK, - ACTIONS(85), 1, - anon_sym_map_LBRACK, - ACTIONS(87), 1, - anon_sym_chan, - ACTIONS(89), 1, - anon_sym_thread, - ACTIONS(91), 1, - anon_sym_atomic, - ACTIONS(597), 1, + ACTIONS(3602), 1, sym_identifier, - ACTIONS(603), 1, + ACTIONS(3606), 1, anon_sym_fn, - ACTIONS(607), 1, + ACTIONS(3610), 1, anon_sym_struct, - ACTIONS(615), 1, + ACTIONS(3620), 1, anon_sym_shared, - ACTIONS(3586), 1, + ACTIONS(3624), 1, + anon_sym_chan, + ACTIONS(3626), 1, + anon_sym_thread, + ACTIONS(3628), 1, + anon_sym_atomic, + ACTIONS(5574), 1, anon_sym_LPAREN, - ACTIONS(3588), 1, + ACTIONS(5578), 1, anon_sym_STAR, - ACTIONS(5302), 1, + ACTIONS(5580), 1, + anon_sym_QMARK, + ACTIONS(5582), 1, anon_sym_BANG, - ACTIONS(5304), 1, + ACTIONS(5584), 1, anon_sym_LBRACK2, - ACTIONS(5306), 1, + ACTIONS(5586), 1, anon_sym_AMP, - ACTIONS(5630), 1, - anon_sym_RPAREN, - STATE(3976), 1, + ACTIONS(5588), 1, + anon_sym_map_LBRACK, + STATE(1406), 1, sym_plain_type, - STATE(4495), 1, + STATE(1483), 1, + sym__type_union_list, + STATE(4496), 1, sym_reference_expression, + STATE(1401), 2, + sym_type_reference_expression, + sym_qualified_type, STATE(2977), 2, sym_line_comment, sym_block_comment, - STATE(3541), 2, - sym_type_reference_expression, - sym_qualified_type, - STATE(2302), 4, + STATE(1444), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(2303), 12, + STATE(1445), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -273152,7 +273185,7 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [97798] = 23, + [97627] = 23, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, @@ -273167,42 +273200,42 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_thread, ACTIONS(91), 1, anon_sym_atomic, - ACTIONS(597), 1, + ACTIONS(565), 1, sym_identifier, - ACTIONS(603), 1, + ACTIONS(571), 1, anon_sym_fn, - ACTIONS(607), 1, + ACTIONS(575), 1, anon_sym_struct, - ACTIONS(615), 1, + ACTIONS(583), 1, anon_sym_shared, - ACTIONS(3586), 1, + ACTIONS(3564), 1, anon_sym_LPAREN, - ACTIONS(3588), 1, + ACTIONS(3566), 1, anon_sym_STAR, - ACTIONS(5302), 1, + ACTIONS(5308), 1, anon_sym_BANG, - ACTIONS(5304), 1, + ACTIONS(5310), 1, anon_sym_LBRACK2, - ACTIONS(5306), 1, + ACTIONS(5312), 1, anon_sym_AMP, - ACTIONS(5632), 1, - anon_sym_RPAREN, - STATE(3976), 1, + ACTIONS(5472), 1, + anon_sym_DOT_DOT_DOT, + STATE(4020), 1, sym_plain_type, - STATE(4495), 1, + STATE(4498), 1, sym_reference_expression, STATE(2978), 2, sym_line_comment, sym_block_comment, - STATE(3541), 2, + STATE(3460), 2, sym_type_reference_expression, sym_qualified_type, - STATE(2302), 4, + STATE(2360), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(2303), 12, + STATE(2362), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -273215,7 +273248,7 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [97884] = 23, + [97713] = 23, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, @@ -273230,42 +273263,42 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_thread, ACTIONS(91), 1, anon_sym_atomic, - ACTIONS(597), 1, + ACTIONS(565), 1, sym_identifier, - ACTIONS(603), 1, + ACTIONS(571), 1, anon_sym_fn, - ACTIONS(607), 1, + ACTIONS(575), 1, anon_sym_struct, - ACTIONS(615), 1, + ACTIONS(583), 1, anon_sym_shared, - ACTIONS(3586), 1, + ACTIONS(3564), 1, anon_sym_LPAREN, - ACTIONS(3588), 1, + ACTIONS(3566), 1, anon_sym_STAR, - ACTIONS(5302), 1, + ACTIONS(5308), 1, anon_sym_BANG, - ACTIONS(5304), 1, + ACTIONS(5310), 1, anon_sym_LBRACK2, - ACTIONS(5306), 1, + ACTIONS(5312), 1, anon_sym_AMP, - ACTIONS(5634), 1, - anon_sym_RPAREN, - STATE(3976), 1, + ACTIONS(5610), 1, + anon_sym_DOT_DOT_DOT, + STATE(4081), 1, sym_plain_type, - STATE(4495), 1, + STATE(4498), 1, sym_reference_expression, STATE(2979), 2, sym_line_comment, sym_block_comment, - STATE(3541), 2, + STATE(3460), 2, sym_type_reference_expression, sym_qualified_type, - STATE(2302), 4, + STATE(2360), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(2303), 12, + STATE(2362), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -273278,57 +273311,57 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [97970] = 23, + [97799] = 23, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(3596), 1, + ACTIONS(47), 1, + anon_sym_QMARK, + ACTIONS(85), 1, + anon_sym_map_LBRACK, + ACTIONS(87), 1, + anon_sym_chan, + ACTIONS(89), 1, + anon_sym_thread, + ACTIONS(91), 1, + anon_sym_atomic, + ACTIONS(565), 1, sym_identifier, - ACTIONS(3600), 1, + ACTIONS(571), 1, anon_sym_fn, - ACTIONS(3604), 1, + ACTIONS(575), 1, anon_sym_struct, - ACTIONS(3614), 1, + ACTIONS(583), 1, anon_sym_shared, - ACTIONS(3618), 1, - anon_sym_chan, - ACTIONS(3620), 1, - anon_sym_thread, - ACTIONS(3622), 1, - anon_sym_atomic, - ACTIONS(5568), 1, + ACTIONS(3564), 1, anon_sym_LPAREN, - ACTIONS(5572), 1, + ACTIONS(3566), 1, anon_sym_STAR, - ACTIONS(5574), 1, - anon_sym_QMARK, - ACTIONS(5576), 1, + ACTIONS(5308), 1, anon_sym_BANG, - ACTIONS(5578), 1, + ACTIONS(5310), 1, anon_sym_LBRACK2, - ACTIONS(5580), 1, + ACTIONS(5312), 1, anon_sym_AMP, - ACTIONS(5582), 1, - anon_sym_map_LBRACK, - STATE(1412), 1, + ACTIONS(5636), 1, + anon_sym_RPAREN, + STATE(3991), 1, sym_plain_type, - STATE(1541), 1, - sym__type_union_list, - STATE(4459), 1, + STATE(4498), 1, sym_reference_expression, - STATE(1402), 2, - sym_type_reference_expression, - sym_qualified_type, STATE(2980), 2, sym_line_comment, sym_block_comment, - STATE(1418), 4, + STATE(3460), 2, + sym_type_reference_expression, + sym_qualified_type, + STATE(2360), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(1419), 12, + STATE(2362), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -273341,7 +273374,7 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [98056] = 23, + [97885] = 23, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, @@ -273356,42 +273389,42 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_thread, ACTIONS(91), 1, anon_sym_atomic, - ACTIONS(597), 1, + ACTIONS(565), 1, sym_identifier, - ACTIONS(603), 1, + ACTIONS(571), 1, anon_sym_fn, - ACTIONS(607), 1, + ACTIONS(575), 1, anon_sym_struct, - ACTIONS(615), 1, + ACTIONS(583), 1, anon_sym_shared, - ACTIONS(3586), 1, + ACTIONS(3564), 1, anon_sym_LPAREN, - ACTIONS(3588), 1, + ACTIONS(3566), 1, anon_sym_STAR, - ACTIONS(5302), 1, + ACTIONS(5308), 1, anon_sym_BANG, - ACTIONS(5304), 1, + ACTIONS(5310), 1, anon_sym_LBRACK2, - ACTIONS(5306), 1, + ACTIONS(5312), 1, anon_sym_AMP, - ACTIONS(5636), 1, + ACTIONS(5638), 1, anon_sym_RPAREN, - STATE(3976), 1, + STATE(3991), 1, sym_plain_type, - STATE(4495), 1, + STATE(4498), 1, sym_reference_expression, STATE(2981), 2, sym_line_comment, sym_block_comment, - STATE(3541), 2, + STATE(3460), 2, sym_type_reference_expression, sym_qualified_type, - STATE(2302), 4, + STATE(2360), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(2303), 12, + STATE(2362), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -273404,7 +273437,7 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [98142] = 23, + [97971] = 23, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, @@ -273419,42 +273452,42 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_thread, ACTIONS(91), 1, anon_sym_atomic, - ACTIONS(597), 1, + ACTIONS(565), 1, sym_identifier, - ACTIONS(603), 1, + ACTIONS(571), 1, anon_sym_fn, - ACTIONS(607), 1, + ACTIONS(575), 1, anon_sym_struct, - ACTIONS(615), 1, + ACTIONS(583), 1, anon_sym_shared, - ACTIONS(3586), 1, + ACTIONS(3564), 1, anon_sym_LPAREN, - ACTIONS(3588), 1, + ACTIONS(3566), 1, anon_sym_STAR, - ACTIONS(5302), 1, + ACTIONS(5308), 1, anon_sym_BANG, - ACTIONS(5304), 1, + ACTIONS(5310), 1, anon_sym_LBRACK2, - ACTIONS(5306), 1, + ACTIONS(5312), 1, anon_sym_AMP, - ACTIONS(5638), 1, + ACTIONS(5640), 1, anon_sym_RPAREN, - STATE(3976), 1, + STATE(3991), 1, sym_plain_type, - STATE(4495), 1, + STATE(4498), 1, sym_reference_expression, STATE(2982), 2, sym_line_comment, sym_block_comment, - STATE(3541), 2, + STATE(3460), 2, sym_type_reference_expression, sym_qualified_type, - STATE(2302), 4, + STATE(2360), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(2303), 12, + STATE(2362), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -273467,7 +273500,7 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [98228] = 23, + [98057] = 23, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, @@ -273482,42 +273515,42 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_thread, ACTIONS(91), 1, anon_sym_atomic, - ACTIONS(597), 1, + ACTIONS(565), 1, sym_identifier, - ACTIONS(603), 1, + ACTIONS(571), 1, anon_sym_fn, - ACTIONS(607), 1, + ACTIONS(575), 1, anon_sym_struct, - ACTIONS(615), 1, + ACTIONS(583), 1, anon_sym_shared, - ACTIONS(3586), 1, + ACTIONS(3564), 1, anon_sym_LPAREN, - ACTIONS(3588), 1, + ACTIONS(3566), 1, anon_sym_STAR, - ACTIONS(5302), 1, + ACTIONS(5308), 1, anon_sym_BANG, - ACTIONS(5304), 1, + ACTIONS(5310), 1, anon_sym_LBRACK2, - ACTIONS(5306), 1, + ACTIONS(5312), 1, anon_sym_AMP, - ACTIONS(5640), 1, + ACTIONS(5642), 1, anon_sym_RPAREN, - STATE(3976), 1, + STATE(3991), 1, sym_plain_type, - STATE(4495), 1, + STATE(4498), 1, sym_reference_expression, STATE(2983), 2, sym_line_comment, sym_block_comment, - STATE(3541), 2, + STATE(3460), 2, sym_type_reference_expression, sym_qualified_type, - STATE(2302), 4, + STATE(2360), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(2303), 12, + STATE(2362), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -273530,7 +273563,7 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [98314] = 23, + [98143] = 23, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, @@ -273545,42 +273578,42 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_thread, ACTIONS(91), 1, anon_sym_atomic, - ACTIONS(603), 1, + ACTIONS(565), 1, + sym_identifier, + ACTIONS(571), 1, anon_sym_fn, - ACTIONS(607), 1, + ACTIONS(575), 1, anon_sym_struct, - ACTIONS(615), 1, + ACTIONS(583), 1, anon_sym_shared, - ACTIONS(3586), 1, + ACTIONS(3564), 1, anon_sym_LPAREN, - ACTIONS(3588), 1, + ACTIONS(3566), 1, anon_sym_STAR, - ACTIONS(5302), 1, + ACTIONS(5308), 1, anon_sym_BANG, - ACTIONS(5304), 1, + ACTIONS(5310), 1, anon_sym_LBRACK2, - ACTIONS(5306), 1, + ACTIONS(5312), 1, anon_sym_AMP, - ACTIONS(5608), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(5642), 1, - sym_identifier, - STATE(4003), 1, + ACTIONS(5644), 1, + anon_sym_RPAREN, + STATE(3991), 1, sym_plain_type, - STATE(4495), 1, + STATE(4498), 1, sym_reference_expression, STATE(2984), 2, sym_line_comment, sym_block_comment, - STATE(3541), 2, + STATE(3460), 2, sym_type_reference_expression, sym_qualified_type, - STATE(2302), 4, + STATE(2360), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(2303), 12, + STATE(2362), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -273593,7 +273626,7 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [98400] = 23, + [98229] = 23, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, @@ -273608,42 +273641,42 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_thread, ACTIONS(91), 1, anon_sym_atomic, - ACTIONS(597), 1, + ACTIONS(565), 1, sym_identifier, - ACTIONS(603), 1, + ACTIONS(571), 1, anon_sym_fn, - ACTIONS(607), 1, + ACTIONS(575), 1, anon_sym_struct, - ACTIONS(615), 1, + ACTIONS(583), 1, anon_sym_shared, - ACTIONS(3586), 1, + ACTIONS(3564), 1, anon_sym_LPAREN, - ACTIONS(3588), 1, + ACTIONS(3566), 1, anon_sym_STAR, - ACTIONS(5302), 1, + ACTIONS(5308), 1, anon_sym_BANG, - ACTIONS(5304), 1, + ACTIONS(5310), 1, anon_sym_LBRACK2, - ACTIONS(5306), 1, + ACTIONS(5312), 1, anon_sym_AMP, - ACTIONS(5644), 1, + ACTIONS(5646), 1, anon_sym_RPAREN, - STATE(3976), 1, + STATE(3991), 1, sym_plain_type, - STATE(4495), 1, + STATE(4498), 1, sym_reference_expression, STATE(2985), 2, sym_line_comment, sym_block_comment, - STATE(3541), 2, + STATE(3460), 2, sym_type_reference_expression, sym_qualified_type, - STATE(2302), 4, + STATE(2360), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(2303), 12, + STATE(2362), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -273656,57 +273689,57 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [98486] = 23, + [98315] = 23, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(47), 1, - anon_sym_QMARK, - ACTIONS(85), 1, - anon_sym_map_LBRACK, - ACTIONS(87), 1, - anon_sym_chan, - ACTIONS(89), 1, - anon_sym_thread, - ACTIONS(91), 1, - anon_sym_atomic, - ACTIONS(597), 1, + ACTIONS(3602), 1, sym_identifier, - ACTIONS(603), 1, + ACTIONS(3606), 1, anon_sym_fn, - ACTIONS(607), 1, + ACTIONS(3610), 1, anon_sym_struct, - ACTIONS(615), 1, + ACTIONS(3620), 1, anon_sym_shared, - ACTIONS(3586), 1, + ACTIONS(3624), 1, + anon_sym_chan, + ACTIONS(3626), 1, + anon_sym_thread, + ACTIONS(3628), 1, + anon_sym_atomic, + ACTIONS(5574), 1, anon_sym_LPAREN, - ACTIONS(3588), 1, + ACTIONS(5578), 1, anon_sym_STAR, - ACTIONS(5302), 1, + ACTIONS(5580), 1, + anon_sym_QMARK, + ACTIONS(5582), 1, anon_sym_BANG, - ACTIONS(5304), 1, + ACTIONS(5584), 1, anon_sym_LBRACK2, - ACTIONS(5306), 1, + ACTIONS(5586), 1, anon_sym_AMP, - ACTIONS(5646), 1, - anon_sym_RPAREN, - STATE(3976), 1, + ACTIONS(5588), 1, + anon_sym_map_LBRACK, + STATE(1406), 1, sym_plain_type, - STATE(4495), 1, + STATE(1560), 1, + sym__type_union_list, + STATE(4496), 1, sym_reference_expression, + STATE(1401), 2, + sym_type_reference_expression, + sym_qualified_type, STATE(2986), 2, sym_line_comment, sym_block_comment, - STATE(3541), 2, - sym_type_reference_expression, - sym_qualified_type, - STATE(2302), 4, + STATE(1444), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(2303), 12, + STATE(1445), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -273719,7 +273752,7 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [98572] = 23, + [98401] = 23, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, @@ -273734,42 +273767,42 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_thread, ACTIONS(91), 1, anon_sym_atomic, - ACTIONS(597), 1, + ACTIONS(565), 1, sym_identifier, - ACTIONS(603), 1, + ACTIONS(571), 1, anon_sym_fn, - ACTIONS(607), 1, + ACTIONS(575), 1, anon_sym_struct, - ACTIONS(615), 1, + ACTIONS(583), 1, anon_sym_shared, - ACTIONS(3586), 1, + ACTIONS(3564), 1, anon_sym_LPAREN, - ACTIONS(3588), 1, + ACTIONS(3566), 1, anon_sym_STAR, - ACTIONS(5302), 1, + ACTIONS(5308), 1, anon_sym_BANG, - ACTIONS(5304), 1, + ACTIONS(5310), 1, anon_sym_LBRACK2, - ACTIONS(5306), 1, + ACTIONS(5312), 1, anon_sym_AMP, ACTIONS(5648), 1, anon_sym_RPAREN, - STATE(3976), 1, + STATE(3991), 1, sym_plain_type, - STATE(4495), 1, + STATE(4498), 1, sym_reference_expression, STATE(2987), 2, sym_line_comment, sym_block_comment, - STATE(3541), 2, + STATE(3460), 2, sym_type_reference_expression, sym_qualified_type, - STATE(2302), 4, + STATE(2360), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(2303), 12, + STATE(2362), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -273782,7 +273815,7 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [98658] = 23, + [98487] = 23, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, @@ -273797,42 +273830,42 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_thread, ACTIONS(91), 1, anon_sym_atomic, - ACTIONS(597), 1, + ACTIONS(565), 1, sym_identifier, - ACTIONS(603), 1, + ACTIONS(571), 1, anon_sym_fn, - ACTIONS(607), 1, + ACTIONS(575), 1, anon_sym_struct, - ACTIONS(615), 1, + ACTIONS(583), 1, anon_sym_shared, - ACTIONS(3586), 1, + ACTIONS(3564), 1, anon_sym_LPAREN, - ACTIONS(3588), 1, + ACTIONS(3566), 1, anon_sym_STAR, - ACTIONS(5302), 1, + ACTIONS(5308), 1, anon_sym_BANG, - ACTIONS(5304), 1, + ACTIONS(5310), 1, anon_sym_LBRACK2, - ACTIONS(5306), 1, + ACTIONS(5312), 1, anon_sym_AMP, ACTIONS(5650), 1, anon_sym_RPAREN, - STATE(3976), 1, + STATE(3991), 1, sym_plain_type, - STATE(4495), 1, + STATE(4498), 1, sym_reference_expression, STATE(2988), 2, sym_line_comment, sym_block_comment, - STATE(3541), 2, + STATE(3460), 2, sym_type_reference_expression, sym_qualified_type, - STATE(2302), 4, + STATE(2360), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(2303), 12, + STATE(2362), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -273845,7 +273878,7 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [98744] = 23, + [98573] = 23, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, @@ -273860,42 +273893,42 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_thread, ACTIONS(91), 1, anon_sym_atomic, - ACTIONS(597), 1, + ACTIONS(565), 1, sym_identifier, - ACTIONS(603), 1, + ACTIONS(571), 1, anon_sym_fn, - ACTIONS(607), 1, + ACTIONS(575), 1, anon_sym_struct, - ACTIONS(615), 1, + ACTIONS(583), 1, anon_sym_shared, - ACTIONS(3586), 1, + ACTIONS(3564), 1, anon_sym_LPAREN, - ACTIONS(3588), 1, + ACTIONS(3566), 1, anon_sym_STAR, - ACTIONS(5302), 1, + ACTIONS(5308), 1, anon_sym_BANG, - ACTIONS(5304), 1, + ACTIONS(5310), 1, anon_sym_LBRACK2, - ACTIONS(5306), 1, + ACTIONS(5312), 1, anon_sym_AMP, - ACTIONS(5608), 1, - anon_sym_DOT_DOT_DOT, - STATE(4003), 1, + ACTIONS(5652), 1, + anon_sym_RPAREN, + STATE(3991), 1, sym_plain_type, - STATE(4495), 1, + STATE(4498), 1, sym_reference_expression, STATE(2989), 2, sym_line_comment, sym_block_comment, - STATE(3541), 2, + STATE(3460), 2, sym_type_reference_expression, sym_qualified_type, - STATE(2302), 4, + STATE(2360), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(2303), 12, + STATE(2362), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -273908,7 +273941,7 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [98830] = 23, + [98659] = 23, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, @@ -273923,42 +273956,42 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_thread, ACTIONS(91), 1, anon_sym_atomic, - ACTIONS(597), 1, + ACTIONS(565), 1, sym_identifier, - ACTIONS(603), 1, + ACTIONS(571), 1, anon_sym_fn, - ACTIONS(607), 1, + ACTIONS(575), 1, anon_sym_struct, - ACTIONS(615), 1, + ACTIONS(583), 1, anon_sym_shared, - ACTIONS(3586), 1, + ACTIONS(3564), 1, anon_sym_LPAREN, - ACTIONS(3588), 1, + ACTIONS(3566), 1, anon_sym_STAR, - ACTIONS(5302), 1, + ACTIONS(5308), 1, anon_sym_BANG, - ACTIONS(5304), 1, + ACTIONS(5310), 1, anon_sym_LBRACK2, - ACTIONS(5306), 1, + ACTIONS(5312), 1, anon_sym_AMP, - ACTIONS(5652), 1, + ACTIONS(5654), 1, anon_sym_RPAREN, - STATE(3976), 1, + STATE(3991), 1, sym_plain_type, - STATE(4495), 1, + STATE(4498), 1, sym_reference_expression, STATE(2990), 2, sym_line_comment, sym_block_comment, - STATE(3541), 2, + STATE(3460), 2, sym_type_reference_expression, sym_qualified_type, - STATE(2302), 4, + STATE(2360), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(2303), 12, + STATE(2362), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -273971,57 +274004,57 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [98916] = 23, + [98745] = 23, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(3596), 1, + ACTIONS(3602), 1, sym_identifier, - ACTIONS(3600), 1, + ACTIONS(3606), 1, anon_sym_fn, - ACTIONS(3604), 1, + ACTIONS(3610), 1, anon_sym_struct, - ACTIONS(3614), 1, + ACTIONS(3620), 1, anon_sym_shared, - ACTIONS(3618), 1, + ACTIONS(3624), 1, anon_sym_chan, - ACTIONS(3620), 1, + ACTIONS(3626), 1, anon_sym_thread, - ACTIONS(3622), 1, + ACTIONS(3628), 1, anon_sym_atomic, - ACTIONS(5568), 1, + ACTIONS(5574), 1, anon_sym_LPAREN, - ACTIONS(5572), 1, + ACTIONS(5578), 1, anon_sym_STAR, - ACTIONS(5574), 1, + ACTIONS(5580), 1, anon_sym_QMARK, - ACTIONS(5576), 1, + ACTIONS(5582), 1, anon_sym_BANG, - ACTIONS(5578), 1, + ACTIONS(5584), 1, anon_sym_LBRACK2, - ACTIONS(5580), 1, + ACTIONS(5586), 1, anon_sym_AMP, - ACTIONS(5582), 1, + ACTIONS(5588), 1, anon_sym_map_LBRACK, - STATE(1412), 1, + STATE(1406), 1, sym_plain_type, - STATE(1549), 1, + STATE(1533), 1, sym__type_union_list, - STATE(4459), 1, + STATE(4496), 1, sym_reference_expression, - STATE(1402), 2, + STATE(1401), 2, sym_type_reference_expression, sym_qualified_type, STATE(2991), 2, sym_line_comment, sym_block_comment, - STATE(1418), 4, + STATE(1444), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(1419), 12, + STATE(1445), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -274034,7 +274067,7 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [99002] = 23, + [98831] = 23, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, @@ -274049,42 +274082,42 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_thread, ACTIONS(91), 1, anon_sym_atomic, - ACTIONS(597), 1, + ACTIONS(565), 1, sym_identifier, - ACTIONS(603), 1, + ACTIONS(571), 1, anon_sym_fn, - ACTIONS(607), 1, + ACTIONS(575), 1, anon_sym_struct, - ACTIONS(615), 1, + ACTIONS(583), 1, anon_sym_shared, - ACTIONS(3586), 1, + ACTIONS(3564), 1, anon_sym_LPAREN, - ACTIONS(3588), 1, + ACTIONS(3566), 1, anon_sym_STAR, - ACTIONS(5302), 1, + ACTIONS(5308), 1, anon_sym_BANG, - ACTIONS(5304), 1, + ACTIONS(5310), 1, anon_sym_LBRACK2, - ACTIONS(5306), 1, + ACTIONS(5312), 1, anon_sym_AMP, - ACTIONS(5654), 1, - anon_sym_RPAREN, - STATE(3976), 1, + ACTIONS(5462), 1, + anon_sym_DOT_DOT_DOT, + STATE(4033), 1, sym_plain_type, - STATE(4495), 1, + STATE(4498), 1, sym_reference_expression, STATE(2992), 2, sym_line_comment, sym_block_comment, - STATE(3541), 2, + STATE(3460), 2, sym_type_reference_expression, sym_qualified_type, - STATE(2302), 4, + STATE(2360), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(2303), 12, + STATE(2362), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -274097,7 +274130,7 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [99088] = 23, + [98917] = 23, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, @@ -274112,42 +274145,42 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_thread, ACTIONS(91), 1, anon_sym_atomic, - ACTIONS(597), 1, - sym_identifier, - ACTIONS(603), 1, + ACTIONS(571), 1, anon_sym_fn, - ACTIONS(607), 1, + ACTIONS(575), 1, anon_sym_struct, - ACTIONS(615), 1, + ACTIONS(583), 1, anon_sym_shared, - ACTIONS(3586), 1, + ACTIONS(3564), 1, anon_sym_LPAREN, - ACTIONS(3588), 1, + ACTIONS(3566), 1, anon_sym_STAR, - ACTIONS(5302), 1, + ACTIONS(5308), 1, anon_sym_BANG, - ACTIONS(5304), 1, + ACTIONS(5310), 1, anon_sym_LBRACK2, - ACTIONS(5306), 1, + ACTIONS(5312), 1, anon_sym_AMP, + ACTIONS(5610), 1, + anon_sym_DOT_DOT_DOT, ACTIONS(5656), 1, - anon_sym_RPAREN, - STATE(3976), 1, + sym_identifier, + STATE(4081), 1, sym_plain_type, - STATE(4495), 1, + STATE(4498), 1, sym_reference_expression, STATE(2993), 2, sym_line_comment, sym_block_comment, - STATE(3541), 2, + STATE(3460), 2, sym_type_reference_expression, sym_qualified_type, - STATE(2302), 4, + STATE(2360), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(2303), 12, + STATE(2362), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -274160,7 +274193,7 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [99174] = 23, + [99003] = 23, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, @@ -274175,42 +274208,42 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_thread, ACTIONS(91), 1, anon_sym_atomic, - ACTIONS(597), 1, + ACTIONS(565), 1, sym_identifier, - ACTIONS(603), 1, + ACTIONS(571), 1, anon_sym_fn, - ACTIONS(607), 1, + ACTIONS(575), 1, anon_sym_struct, - ACTIONS(615), 1, + ACTIONS(583), 1, anon_sym_shared, - ACTIONS(3586), 1, + ACTIONS(3564), 1, anon_sym_LPAREN, - ACTIONS(3588), 1, + ACTIONS(3566), 1, anon_sym_STAR, - ACTIONS(5302), 1, + ACTIONS(5308), 1, anon_sym_BANG, - ACTIONS(5304), 1, + ACTIONS(5310), 1, anon_sym_LBRACK2, - ACTIONS(5306), 1, + ACTIONS(5312), 1, anon_sym_AMP, ACTIONS(5658), 1, anon_sym_RPAREN, - STATE(3976), 1, + STATE(3991), 1, sym_plain_type, - STATE(4495), 1, + STATE(4498), 1, sym_reference_expression, STATE(2994), 2, sym_line_comment, sym_block_comment, - STATE(3541), 2, + STATE(3460), 2, sym_type_reference_expression, sym_qualified_type, - STATE(2302), 4, + STATE(2360), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(2303), 12, + STATE(2362), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -274223,44 +274256,57 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [99260] = 10, + [99089] = 23, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - STATE(2289), 1, + ACTIONS(47), 1, + anon_sym_QMARK, + ACTIONS(85), 1, + anon_sym_map_LBRACK, + ACTIONS(87), 1, + anon_sym_chan, + ACTIONS(89), 1, + anon_sym_thread, + ACTIONS(91), 1, + anon_sym_atomic, + ACTIONS(565), 1, + sym_identifier, + ACTIONS(571), 1, + anon_sym_fn, + ACTIONS(575), 1, + anon_sym_struct, + ACTIONS(583), 1, + anon_sym_shared, + ACTIONS(3564), 1, + anon_sym_LPAREN, + ACTIONS(3566), 1, + anon_sym_STAR, + ACTIONS(5308), 1, + anon_sym_BANG, + ACTIONS(5310), 1, + anon_sym_LBRACK2, + ACTIONS(5312), 1, + anon_sym_AMP, + ACTIONS(5660), 1, + anon_sym_RPAREN, + STATE(3991), 1, sym_plain_type, - STATE(4495), 1, + STATE(4498), 1, sym_reference_expression, STATE(2995), 2, sym_line_comment, sym_block_comment, - STATE(3541), 2, + STATE(3460), 2, sym_type_reference_expression, sym_qualified_type, - STATE(2302), 4, + STATE(2360), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - ACTIONS(4551), 7, - anon_sym_fn, - anon_sym_struct, - sym_identifier, - anon_sym_shared, - anon_sym_chan, - anon_sym_thread, - anon_sym_atomic, - ACTIONS(4553), 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(2303), 12, + STATE(2362), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -274273,7 +274319,7 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [99320] = 23, + [99175] = 23, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, @@ -274288,42 +274334,42 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_thread, ACTIONS(91), 1, anon_sym_atomic, - ACTIONS(597), 1, + ACTIONS(565), 1, sym_identifier, - ACTIONS(603), 1, + ACTIONS(571), 1, anon_sym_fn, - ACTIONS(607), 1, + ACTIONS(575), 1, anon_sym_struct, - ACTIONS(615), 1, + ACTIONS(583), 1, anon_sym_shared, - ACTIONS(3586), 1, + ACTIONS(3564), 1, anon_sym_LPAREN, - ACTIONS(3588), 1, + ACTIONS(3566), 1, anon_sym_STAR, - ACTIONS(5302), 1, + ACTIONS(5308), 1, anon_sym_BANG, - ACTIONS(5304), 1, + ACTIONS(5310), 1, anon_sym_LBRACK2, - ACTIONS(5306), 1, + ACTIONS(5312), 1, anon_sym_AMP, - ACTIONS(5660), 1, + ACTIONS(5662), 1, anon_sym_RPAREN, - STATE(3976), 1, + STATE(3991), 1, sym_plain_type, - STATE(4495), 1, + STATE(4498), 1, sym_reference_expression, STATE(2996), 2, sym_line_comment, sym_block_comment, - STATE(3541), 2, + STATE(3460), 2, sym_type_reference_expression, sym_qualified_type, - STATE(2302), 4, + STATE(2360), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(2303), 12, + STATE(2362), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -274336,7 +274382,7 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [99406] = 22, + [99261] = 23, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, @@ -274351,40 +274397,42 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_thread, ACTIONS(91), 1, anon_sym_atomic, - ACTIONS(597), 1, + ACTIONS(565), 1, sym_identifier, - ACTIONS(603), 1, + ACTIONS(571), 1, anon_sym_fn, - ACTIONS(607), 1, + ACTIONS(575), 1, anon_sym_struct, - ACTIONS(615), 1, + ACTIONS(583), 1, anon_sym_shared, - ACTIONS(3586), 1, + ACTIONS(3564), 1, anon_sym_LPAREN, - ACTIONS(3588), 1, + ACTIONS(3566), 1, anon_sym_STAR, - ACTIONS(5302), 1, + ACTIONS(5308), 1, anon_sym_BANG, - ACTIONS(5304), 1, + ACTIONS(5310), 1, anon_sym_LBRACK2, - ACTIONS(5306), 1, + ACTIONS(5312), 1, anon_sym_AMP, - STATE(4248), 1, + ACTIONS(5664), 1, + anon_sym_RPAREN, + STATE(3991), 1, sym_plain_type, - STATE(4495), 1, + STATE(4498), 1, sym_reference_expression, STATE(2997), 2, sym_line_comment, sym_block_comment, - STATE(3541), 2, + STATE(3460), 2, sym_type_reference_expression, sym_qualified_type, - STATE(2302), 4, + STATE(2360), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(2303), 12, + STATE(2362), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -274397,55 +274445,57 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [99489] = 22, + [99347] = 23, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(3783), 1, + ACTIONS(3602), 1, sym_identifier, - ACTIONS(3785), 1, - anon_sym_LPAREN, - ACTIONS(3787), 1, + ACTIONS(3606), 1, anon_sym_fn, - ACTIONS(3791), 1, + ACTIONS(3610), 1, anon_sym_struct, - ACTIONS(3801), 1, + ACTIONS(3620), 1, anon_sym_shared, - ACTIONS(3803), 1, - anon_sym_map_LBRACK, - ACTIONS(3805), 1, + ACTIONS(3624), 1, anon_sym_chan, - ACTIONS(3807), 1, + ACTIONS(3626), 1, anon_sym_thread, - ACTIONS(3809), 1, + ACTIONS(3628), 1, anon_sym_atomic, - ACTIONS(5662), 1, + ACTIONS(5574), 1, + anon_sym_LPAREN, + ACTIONS(5578), 1, anon_sym_STAR, - ACTIONS(5664), 1, + ACTIONS(5580), 1, anon_sym_QMARK, - ACTIONS(5666), 1, + ACTIONS(5582), 1, anon_sym_BANG, - ACTIONS(5668), 1, + ACTIONS(5584), 1, anon_sym_LBRACK2, - ACTIONS(5670), 1, + ACTIONS(5586), 1, anon_sym_AMP, - STATE(1923), 1, + ACTIONS(5588), 1, + anon_sym_map_LBRACK, + STATE(1406), 1, sym_plain_type, - STATE(4430), 1, + STATE(1516), 1, + sym__type_union_list, + STATE(4496), 1, sym_reference_expression, - STATE(1908), 2, + STATE(1401), 2, sym_type_reference_expression, sym_qualified_type, STATE(2998), 2, sym_line_comment, sym_block_comment, - STATE(1930), 4, + STATE(1444), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(1929), 12, + STATE(1445), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -274458,55 +274508,57 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [99572] = 22, + [99433] = 23, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(4014), 1, + ACTIONS(47), 1, + anon_sym_QMARK, + ACTIONS(85), 1, + anon_sym_map_LBRACK, + ACTIONS(87), 1, + anon_sym_chan, + ACTIONS(89), 1, + anon_sym_thread, + ACTIONS(91), 1, + anon_sym_atomic, + ACTIONS(565), 1, sym_identifier, - ACTIONS(4018), 1, + ACTIONS(571), 1, anon_sym_fn, - ACTIONS(4022), 1, + ACTIONS(575), 1, anon_sym_struct, - ACTIONS(4032), 1, + ACTIONS(583), 1, anon_sym_shared, - ACTIONS(4036), 1, - anon_sym_chan, - ACTIONS(4038), 1, - anon_sym_thread, - ACTIONS(4040), 1, - anon_sym_atomic, - ACTIONS(5672), 1, + ACTIONS(3564), 1, anon_sym_LPAREN, - ACTIONS(5674), 1, + ACTIONS(3566), 1, anon_sym_STAR, - ACTIONS(5676), 1, - anon_sym_QMARK, - ACTIONS(5678), 1, + ACTIONS(5308), 1, anon_sym_BANG, - ACTIONS(5680), 1, + ACTIONS(5310), 1, anon_sym_LBRACK2, - ACTIONS(5682), 1, + ACTIONS(5312), 1, anon_sym_AMP, - ACTIONS(5684), 1, - anon_sym_map_LBRACK, - STATE(2555), 1, + ACTIONS(5666), 1, + anon_sym_RPAREN, + STATE(3991), 1, sym_plain_type, - STATE(4388), 1, + STATE(4498), 1, sym_reference_expression, - STATE(2432), 2, - sym_type_reference_expression, - sym_qualified_type, STATE(2999), 2, sym_line_comment, sym_block_comment, - STATE(2492), 4, + STATE(3460), 2, + sym_type_reference_expression, + sym_qualified_type, + STATE(2360), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(2493), 12, + STATE(2362), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -274519,55 +274571,55 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [99655] = 22, + [99519] = 22, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(1191), 1, + ACTIONS(587), 1, sym_identifier, - ACTIONS(1195), 1, + ACTIONS(593), 1, anon_sym_fn, - ACTIONS(1199), 1, + ACTIONS(597), 1, anon_sym_struct, - ACTIONS(1209), 1, + ACTIONS(607), 1, anon_sym_shared, - ACTIONS(1213), 1, + ACTIONS(611), 1, anon_sym_chan, - ACTIONS(1215), 1, + ACTIONS(613), 1, anon_sym_thread, - ACTIONS(1217), 1, + ACTIONS(615), 1, anon_sym_atomic, - ACTIONS(5686), 1, + ACTIONS(5668), 1, anon_sym_LPAREN, - ACTIONS(5688), 1, + ACTIONS(5670), 1, anon_sym_STAR, - ACTIONS(5690), 1, + ACTIONS(5672), 1, anon_sym_QMARK, - ACTIONS(5692), 1, + ACTIONS(5674), 1, anon_sym_BANG, - ACTIONS(5694), 1, + ACTIONS(5676), 1, anon_sym_LBRACK2, - ACTIONS(5696), 1, + ACTIONS(5678), 1, anon_sym_AMP, - ACTIONS(5698), 1, + ACTIONS(5680), 1, anon_sym_map_LBRACK, - STATE(1003), 1, + STATE(488), 1, sym_plain_type, - STATE(4365), 1, + STATE(4403), 1, sym_reference_expression, - STATE(990), 2, + STATE(244), 2, sym_type_reference_expression, sym_qualified_type, STATE(3000), 2, sym_line_comment, sym_block_comment, - STATE(1020), 4, + STATE(387), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(1019), 12, + STATE(388), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -274580,7 +274632,7 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [99738] = 22, + [99602] = 22, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, @@ -274595,40 +274647,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_thread, ACTIONS(91), 1, anon_sym_atomic, - ACTIONS(597), 1, + ACTIONS(565), 1, sym_identifier, - ACTIONS(603), 1, + ACTIONS(571), 1, anon_sym_fn, - ACTIONS(607), 1, + ACTIONS(575), 1, anon_sym_struct, - ACTIONS(615), 1, + ACTIONS(583), 1, anon_sym_shared, - ACTIONS(3586), 1, + ACTIONS(3564), 1, anon_sym_LPAREN, - ACTIONS(3588), 1, + ACTIONS(3566), 1, anon_sym_STAR, - ACTIONS(5302), 1, + ACTIONS(5308), 1, anon_sym_BANG, - ACTIONS(5304), 1, + ACTIONS(5310), 1, anon_sym_LBRACK2, - ACTIONS(5306), 1, + ACTIONS(5312), 1, anon_sym_AMP, - STATE(3921), 1, - sym_plain_type, - STATE(4495), 1, + STATE(4498), 1, sym_reference_expression, + STATE(4621), 1, + sym_plain_type, STATE(3001), 2, sym_line_comment, sym_block_comment, - STATE(3541), 2, + STATE(3460), 2, sym_type_reference_expression, sym_qualified_type, - STATE(2302), 4, + STATE(2360), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(2303), 12, + STATE(2362), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -274641,55 +274693,55 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [99821] = 22, + [99685] = 22, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(47), 1, - anon_sym_QMARK, - ACTIONS(85), 1, - anon_sym_map_LBRACK, - ACTIONS(87), 1, - anon_sym_chan, - ACTIONS(89), 1, - anon_sym_thread, - ACTIONS(91), 1, - anon_sym_atomic, - ACTIONS(597), 1, + ACTIONS(3698), 1, sym_identifier, - ACTIONS(603), 1, + ACTIONS(3702), 1, anon_sym_fn, - ACTIONS(607), 1, + ACTIONS(3706), 1, anon_sym_struct, - ACTIONS(615), 1, + ACTIONS(3716), 1, anon_sym_shared, - ACTIONS(3586), 1, + ACTIONS(3720), 1, + anon_sym_chan, + ACTIONS(3722), 1, + anon_sym_thread, + ACTIONS(3724), 1, + anon_sym_atomic, + ACTIONS(5682), 1, anon_sym_LPAREN, - ACTIONS(3588), 1, + ACTIONS(5684), 1, anon_sym_STAR, - ACTIONS(5302), 1, + ACTIONS(5686), 1, + anon_sym_QMARK, + ACTIONS(5688), 1, anon_sym_BANG, - ACTIONS(5304), 1, + ACTIONS(5690), 1, anon_sym_LBRACK2, - ACTIONS(5306), 1, + ACTIONS(5692), 1, anon_sym_AMP, - STATE(2386), 1, + ACTIONS(5694), 1, + anon_sym_map_LBRACK, + STATE(1827), 1, sym_plain_type, - STATE(4495), 1, + STATE(4454), 1, sym_reference_expression, + STATE(1751), 2, + sym_type_reference_expression, + sym_qualified_type, STATE(3002), 2, sym_line_comment, sym_block_comment, - STATE(3541), 2, - sym_type_reference_expression, - sym_qualified_type, - STATE(2302), 4, + STATE(1842), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(2303), 12, + STATE(1841), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -274702,55 +274754,55 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [99904] = 22, + [99768] = 22, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(3596), 1, + ACTIONS(4114), 1, sym_identifier, - ACTIONS(3600), 1, + ACTIONS(4118), 1, anon_sym_fn, - ACTIONS(3604), 1, + ACTIONS(4122), 1, anon_sym_struct, - ACTIONS(3614), 1, + ACTIONS(4132), 1, anon_sym_shared, - ACTIONS(3618), 1, + ACTIONS(4136), 1, anon_sym_chan, - ACTIONS(3620), 1, + ACTIONS(4138), 1, anon_sym_thread, - ACTIONS(3622), 1, + ACTIONS(4140), 1, anon_sym_atomic, - ACTIONS(5568), 1, + ACTIONS(5696), 1, anon_sym_LPAREN, - ACTIONS(5572), 1, + ACTIONS(5698), 1, anon_sym_STAR, - ACTIONS(5574), 1, + ACTIONS(5700), 1, anon_sym_QMARK, - ACTIONS(5576), 1, + ACTIONS(5702), 1, anon_sym_BANG, - ACTIONS(5578), 1, + ACTIONS(5704), 1, anon_sym_LBRACK2, - ACTIONS(5580), 1, + ACTIONS(5706), 1, anon_sym_AMP, - ACTIONS(5582), 1, + ACTIONS(5708), 1, anon_sym_map_LBRACK, - STATE(1432), 1, + STATE(2523), 1, sym_plain_type, - STATE(4459), 1, + STATE(4391), 1, sym_reference_expression, - STATE(1402), 2, + STATE(2446), 2, sym_type_reference_expression, sym_qualified_type, STATE(3003), 2, sym_line_comment, sym_block_comment, - STATE(1418), 4, + STATE(2471), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(1419), 12, + STATE(2472), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -274763,55 +274815,55 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [99987] = 22, + [99851] = 22, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, + ACTIONS(47), 1, + anon_sym_QMARK, + ACTIONS(85), 1, + anon_sym_map_LBRACK, + ACTIONS(87), 1, + anon_sym_chan, + ACTIONS(89), 1, + anon_sym_thread, + ACTIONS(91), 1, + anon_sym_atomic, ACTIONS(565), 1, sym_identifier, ACTIONS(571), 1, anon_sym_fn, ACTIONS(575), 1, anon_sym_struct, - ACTIONS(585), 1, + ACTIONS(583), 1, anon_sym_shared, - ACTIONS(589), 1, - anon_sym_chan, - ACTIONS(591), 1, - anon_sym_thread, - ACTIONS(593), 1, - anon_sym_atomic, - ACTIONS(5700), 1, + ACTIONS(3564), 1, anon_sym_LPAREN, - ACTIONS(5702), 1, + ACTIONS(3566), 1, anon_sym_STAR, - ACTIONS(5704), 1, - anon_sym_QMARK, - ACTIONS(5706), 1, + ACTIONS(5308), 1, anon_sym_BANG, - ACTIONS(5708), 1, + ACTIONS(5310), 1, anon_sym_LBRACK2, - ACTIONS(5710), 1, + ACTIONS(5312), 1, anon_sym_AMP, - ACTIONS(5712), 1, - anon_sym_map_LBRACK, - STATE(489), 1, + STATE(4161), 1, sym_plain_type, - STATE(4403), 1, + STATE(4498), 1, sym_reference_expression, - STATE(252), 2, - sym_type_reference_expression, - sym_qualified_type, STATE(3004), 2, sym_line_comment, sym_block_comment, - STATE(445), 4, + STATE(3460), 2, + sym_type_reference_expression, + sym_qualified_type, + STATE(2360), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(448), 12, + STATE(2362), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -274824,55 +274876,55 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [100070] = 22, + [99934] = 22, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(565), 1, + ACTIONS(3426), 1, sym_identifier, - ACTIONS(571), 1, - anon_sym_fn, - ACTIONS(575), 1, + ACTIONS(3638), 1, anon_sym_struct, - ACTIONS(585), 1, + ACTIONS(5486), 1, + anon_sym_fn, + ACTIONS(5498), 1, anon_sym_shared, - ACTIONS(589), 1, + ACTIONS(5502), 1, anon_sym_chan, - ACTIONS(591), 1, + ACTIONS(5504), 1, anon_sym_thread, - ACTIONS(593), 1, + ACTIONS(5506), 1, anon_sym_atomic, - ACTIONS(5700), 1, + ACTIONS(5590), 1, anon_sym_LPAREN, - ACTIONS(5702), 1, + ACTIONS(5594), 1, anon_sym_STAR, - ACTIONS(5704), 1, + ACTIONS(5596), 1, anon_sym_QMARK, - ACTIONS(5706), 1, + ACTIONS(5598), 1, anon_sym_BANG, - ACTIONS(5708), 1, + ACTIONS(5600), 1, anon_sym_LBRACK2, - ACTIONS(5710), 1, + ACTIONS(5602), 1, anon_sym_AMP, - ACTIONS(5712), 1, + ACTIONS(5604), 1, anon_sym_map_LBRACK, - STATE(310), 1, + STATE(1643), 1, sym_plain_type, - STATE(4403), 1, + STATE(4351), 1, sym_reference_expression, - STATE(252), 2, - sym_type_reference_expression, - sym_qualified_type, STATE(3005), 2, sym_line_comment, sym_block_comment, - STATE(445), 4, + STATE(3305), 2, + sym_type_reference_expression, + sym_qualified_type, + STATE(1647), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(448), 12, + STATE(1667), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -274885,55 +274937,55 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [100153] = 22, + [100017] = 22, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(47), 1, - anon_sym_QMARK, - ACTIONS(85), 1, - anon_sym_map_LBRACK, - ACTIONS(87), 1, - anon_sym_chan, - ACTIONS(89), 1, - anon_sym_thread, - ACTIONS(91), 1, - anon_sym_atomic, - ACTIONS(597), 1, + ACTIONS(3698), 1, sym_identifier, - ACTIONS(603), 1, + ACTIONS(3702), 1, anon_sym_fn, - ACTIONS(607), 1, + ACTIONS(3706), 1, anon_sym_struct, - ACTIONS(615), 1, + ACTIONS(3716), 1, anon_sym_shared, - ACTIONS(3586), 1, + ACTIONS(3720), 1, + anon_sym_chan, + ACTIONS(3722), 1, + anon_sym_thread, + ACTIONS(3724), 1, + anon_sym_atomic, + ACTIONS(5682), 1, anon_sym_LPAREN, - ACTIONS(3588), 1, + ACTIONS(5684), 1, anon_sym_STAR, - ACTIONS(5302), 1, + ACTIONS(5686), 1, + anon_sym_QMARK, + ACTIONS(5688), 1, anon_sym_BANG, - ACTIONS(5304), 1, + ACTIONS(5690), 1, anon_sym_LBRACK2, - ACTIONS(5306), 1, + ACTIONS(5692), 1, anon_sym_AMP, - STATE(4495), 1, - sym_reference_expression, - STATE(4552), 1, + ACTIONS(5694), 1, + anon_sym_map_LBRACK, + STATE(1824), 1, sym_plain_type, + STATE(4454), 1, + sym_reference_expression, + STATE(1751), 2, + sym_type_reference_expression, + sym_qualified_type, STATE(3006), 2, sym_line_comment, sym_block_comment, - STATE(3541), 2, - sym_type_reference_expression, - sym_qualified_type, - STATE(2302), 4, + STATE(1842), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(2303), 12, + STATE(1841), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -274946,55 +274998,55 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [100236] = 22, + [100100] = 22, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(47), 1, - anon_sym_QMARK, - ACTIONS(85), 1, - anon_sym_map_LBRACK, - ACTIONS(87), 1, - anon_sym_chan, - ACTIONS(89), 1, - anon_sym_thread, - ACTIONS(91), 1, - anon_sym_atomic, - ACTIONS(597), 1, + ACTIONS(3602), 1, sym_identifier, - ACTIONS(603), 1, + ACTIONS(3606), 1, anon_sym_fn, - ACTIONS(607), 1, + ACTIONS(3610), 1, anon_sym_struct, - ACTIONS(615), 1, + ACTIONS(3620), 1, anon_sym_shared, - ACTIONS(3586), 1, + ACTIONS(3624), 1, + anon_sym_chan, + ACTIONS(3626), 1, + anon_sym_thread, + ACTIONS(3628), 1, + anon_sym_atomic, + ACTIONS(5574), 1, anon_sym_LPAREN, - ACTIONS(3588), 1, + ACTIONS(5578), 1, anon_sym_STAR, - ACTIONS(5302), 1, + ACTIONS(5580), 1, + anon_sym_QMARK, + ACTIONS(5582), 1, anon_sym_BANG, - ACTIONS(5304), 1, + ACTIONS(5584), 1, anon_sym_LBRACK2, - ACTIONS(5306), 1, + ACTIONS(5586), 1, anon_sym_AMP, - STATE(3945), 1, + ACTIONS(5588), 1, + anon_sym_map_LBRACK, + STATE(1431), 1, sym_plain_type, - STATE(4495), 1, + STATE(4496), 1, sym_reference_expression, + STATE(1401), 2, + sym_type_reference_expression, + sym_qualified_type, STATE(3007), 2, sym_line_comment, sym_block_comment, - STATE(3541), 2, - sym_type_reference_expression, - sym_qualified_type, - STATE(2302), 4, + STATE(1444), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(2303), 12, + STATE(1445), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -275007,55 +275059,55 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [100319] = 22, + [100183] = 22, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(47), 1, - anon_sym_QMARK, - ACTIONS(85), 1, - anon_sym_map_LBRACK, - ACTIONS(87), 1, - anon_sym_chan, - ACTIONS(89), 1, - anon_sym_thread, - ACTIONS(91), 1, - anon_sym_atomic, - ACTIONS(597), 1, + ACTIONS(3698), 1, sym_identifier, - ACTIONS(603), 1, + ACTIONS(3702), 1, anon_sym_fn, - ACTIONS(607), 1, + ACTIONS(3706), 1, anon_sym_struct, - ACTIONS(615), 1, + ACTIONS(3716), 1, anon_sym_shared, - ACTIONS(3586), 1, + ACTIONS(3720), 1, + anon_sym_chan, + ACTIONS(3722), 1, + anon_sym_thread, + ACTIONS(3724), 1, + anon_sym_atomic, + ACTIONS(5682), 1, anon_sym_LPAREN, - ACTIONS(3588), 1, + ACTIONS(5684), 1, anon_sym_STAR, - ACTIONS(5302), 1, + ACTIONS(5686), 1, + anon_sym_QMARK, + ACTIONS(5688), 1, anon_sym_BANG, - ACTIONS(5304), 1, + ACTIONS(5690), 1, anon_sym_LBRACK2, - ACTIONS(5306), 1, + ACTIONS(5692), 1, anon_sym_AMP, - STATE(4495), 1, - sym_reference_expression, - STATE(4523), 1, + ACTIONS(5694), 1, + anon_sym_map_LBRACK, + STATE(1825), 1, sym_plain_type, + STATE(4454), 1, + sym_reference_expression, + STATE(1751), 2, + sym_type_reference_expression, + sym_qualified_type, STATE(3008), 2, sym_line_comment, sym_block_comment, - STATE(3541), 2, - sym_type_reference_expression, - sym_qualified_type, - STATE(2302), 4, + STATE(1842), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(2303), 12, + STATE(1841), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -275068,7 +275120,7 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [100402] = 22, + [100266] = 22, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, @@ -275083,40 +275135,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_thread, ACTIONS(91), 1, anon_sym_atomic, - ACTIONS(597), 1, + ACTIONS(565), 1, sym_identifier, - ACTIONS(603), 1, + ACTIONS(571), 1, anon_sym_fn, - ACTIONS(607), 1, + ACTIONS(575), 1, anon_sym_struct, - ACTIONS(615), 1, + ACTIONS(583), 1, anon_sym_shared, - ACTIONS(3586), 1, + ACTIONS(3564), 1, anon_sym_LPAREN, - ACTIONS(3588), 1, + ACTIONS(3566), 1, anon_sym_STAR, - ACTIONS(5302), 1, + ACTIONS(5308), 1, anon_sym_BANG, - ACTIONS(5304), 1, + ACTIONS(5310), 1, anon_sym_LBRACK2, - ACTIONS(5306), 1, + ACTIONS(5312), 1, anon_sym_AMP, - STATE(4420), 1, + STATE(4460), 1, sym_plain_type, - STATE(4495), 1, + STATE(4498), 1, sym_reference_expression, STATE(3009), 2, sym_line_comment, sym_block_comment, - STATE(3541), 2, + STATE(3460), 2, sym_type_reference_expression, sym_qualified_type, - STATE(2302), 4, + STATE(2360), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(2303), 12, + STATE(2362), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -275129,116 +275181,55 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [100485] = 22, + [100349] = 22, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(47), 1, - anon_sym_QMARK, - ACTIONS(85), 1, - anon_sym_map_LBRACK, - ACTIONS(87), 1, - anon_sym_chan, - ACTIONS(89), 1, - anon_sym_thread, - ACTIONS(91), 1, - anon_sym_atomic, - ACTIONS(597), 1, + ACTIONS(3918), 1, sym_identifier, - ACTIONS(603), 1, + ACTIONS(3922), 1, anon_sym_fn, - ACTIONS(607), 1, + ACTIONS(3926), 1, anon_sym_struct, - ACTIONS(615), 1, + ACTIONS(3936), 1, anon_sym_shared, - ACTIONS(3586), 1, - anon_sym_LPAREN, - ACTIONS(3588), 1, - anon_sym_STAR, - ACTIONS(5302), 1, - anon_sym_BANG, - ACTIONS(5304), 1, - anon_sym_LBRACK2, - ACTIONS(5306), 1, - anon_sym_AMP, - STATE(4495), 1, - sym_reference_expression, - STATE(4511), 1, - sym_plain_type, - STATE(3010), 2, - sym_line_comment, - sym_block_comment, - STATE(3541), 2, - sym_type_reference_expression, - sym_qualified_type, - STATE(2302), 4, - sym__plain_type_without_special, - sym_multi_return_type, - sym_result_type, - sym_option_type, - STATE(2303), 12, - sym_anon_struct_type, - sym_fixed_array_type, - sym_array_type, - sym_pointer_type, - sym_wrong_pointer_type, - sym_map_type, - sym_channel_type, - sym_shared_type, - sym_thread_type, - sym_atomic_type, - sym_generic_type, - sym_function_type, - [100568] = 22, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_STAR, - ACTIONS(47), 1, - anon_sym_QMARK, - ACTIONS(85), 1, - anon_sym_map_LBRACK, - ACTIONS(87), 1, + ACTIONS(3940), 1, anon_sym_chan, - ACTIONS(89), 1, + ACTIONS(3942), 1, anon_sym_thread, - ACTIONS(91), 1, + ACTIONS(3944), 1, anon_sym_atomic, - ACTIONS(597), 1, - sym_identifier, - ACTIONS(603), 1, - anon_sym_fn, - ACTIONS(607), 1, - anon_sym_struct, - ACTIONS(615), 1, - anon_sym_shared, - ACTIONS(3586), 1, + ACTIONS(5710), 1, anon_sym_LPAREN, - ACTIONS(3588), 1, + ACTIONS(5712), 1, anon_sym_STAR, - ACTIONS(5302), 1, + ACTIONS(5714), 1, + anon_sym_QMARK, + ACTIONS(5716), 1, anon_sym_BANG, - ACTIONS(5304), 1, + ACTIONS(5718), 1, anon_sym_LBRACK2, - ACTIONS(5306), 1, + ACTIONS(5720), 1, anon_sym_AMP, - STATE(2360), 1, + ACTIONS(5722), 1, + anon_sym_map_LBRACK, + STATE(2173), 1, sym_plain_type, - STATE(4495), 1, + STATE(4471), 1, sym_reference_expression, - STATE(3011), 2, - sym_line_comment, - sym_block_comment, - STATE(3541), 2, + STATE(2142), 2, sym_type_reference_expression, sym_qualified_type, - STATE(2302), 4, + STATE(3010), 2, + sym_line_comment, + sym_block_comment, + STATE(2183), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(2303), 12, + STATE(2184), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -275251,55 +275242,55 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [100651] = 22, + [100432] = 22, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(3596), 1, + ACTIONS(575), 1, + anon_sym_struct, + ACTIONS(3564), 1, + anon_sym_LPAREN, + ACTIONS(3953), 1, sym_identifier, - ACTIONS(3600), 1, + ACTIONS(3955), 1, anon_sym_fn, - ACTIONS(3604), 1, - anon_sym_struct, - ACTIONS(3614), 1, + ACTIONS(3957), 1, + anon_sym_STAR, + ACTIONS(3967), 1, anon_sym_shared, - ACTIONS(3618), 1, + ACTIONS(3969), 1, + anon_sym_map_LBRACK, + ACTIONS(3971), 1, anon_sym_chan, - ACTIONS(3620), 1, + ACTIONS(3973), 1, anon_sym_thread, - ACTIONS(3622), 1, + ACTIONS(3975), 1, anon_sym_atomic, - ACTIONS(5568), 1, - anon_sym_LPAREN, - ACTIONS(5572), 1, - anon_sym_STAR, - ACTIONS(5574), 1, + ACTIONS(5724), 1, anon_sym_QMARK, - ACTIONS(5576), 1, + ACTIONS(5726), 1, anon_sym_BANG, - ACTIONS(5578), 1, + ACTIONS(5728), 1, anon_sym_LBRACK2, - ACTIONS(5580), 1, + ACTIONS(5730), 1, anon_sym_AMP, - ACTIONS(5582), 1, - anon_sym_map_LBRACK, - STATE(1431), 1, + STATE(2814), 1, sym_plain_type, - STATE(4459), 1, + STATE(4498), 1, sym_reference_expression, - STATE(1402), 2, + STATE(2283), 2, sym_type_reference_expression, sym_qualified_type, - STATE(3012), 2, + STATE(3011), 2, sym_line_comment, sym_block_comment, - STATE(1418), 4, + STATE(2360), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(1419), 12, + STATE(2362), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -275312,55 +275303,55 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [100734] = 22, + [100515] = 22, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, + ACTIONS(47), 1, + anon_sym_QMARK, + ACTIONS(85), 1, + anon_sym_map_LBRACK, + ACTIONS(87), 1, + anon_sym_chan, + ACTIONS(89), 1, + anon_sym_thread, + ACTIONS(91), 1, + anon_sym_atomic, ACTIONS(565), 1, sym_identifier, ACTIONS(571), 1, anon_sym_fn, ACTIONS(575), 1, anon_sym_struct, - ACTIONS(585), 1, + ACTIONS(583), 1, anon_sym_shared, - ACTIONS(589), 1, - anon_sym_chan, - ACTIONS(591), 1, - anon_sym_thread, - ACTIONS(593), 1, - anon_sym_atomic, - ACTIONS(5700), 1, + ACTIONS(3564), 1, anon_sym_LPAREN, - ACTIONS(5702), 1, + ACTIONS(3566), 1, anon_sym_STAR, - ACTIONS(5704), 1, - anon_sym_QMARK, - ACTIONS(5706), 1, + ACTIONS(5308), 1, anon_sym_BANG, - ACTIONS(5708), 1, + ACTIONS(5310), 1, anon_sym_LBRACK2, - ACTIONS(5710), 1, + ACTIONS(5312), 1, anon_sym_AMP, - ACTIONS(5712), 1, - anon_sym_map_LBRACK, - STATE(481), 1, + STATE(3940), 1, sym_plain_type, - STATE(4403), 1, + STATE(4498), 1, sym_reference_expression, - STATE(252), 2, - sym_type_reference_expression, - sym_qualified_type, - STATE(3013), 2, + STATE(3012), 2, sym_line_comment, sym_block_comment, - STATE(445), 4, + STATE(3460), 2, + sym_type_reference_expression, + sym_qualified_type, + STATE(2360), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(448), 12, + STATE(2362), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -275373,55 +275364,55 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [100817] = 22, + [100598] = 22, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(3420), 1, + ACTIONS(4114), 1, sym_identifier, - ACTIONS(3634), 1, - anon_sym_struct, - ACTIONS(5484), 1, + ACTIONS(4118), 1, anon_sym_fn, - ACTIONS(5496), 1, + ACTIONS(4122), 1, + anon_sym_struct, + ACTIONS(4132), 1, anon_sym_shared, - ACTIONS(5500), 1, + ACTIONS(4136), 1, anon_sym_chan, - ACTIONS(5502), 1, + ACTIONS(4138), 1, anon_sym_thread, - ACTIONS(5504), 1, + ACTIONS(4140), 1, anon_sym_atomic, - ACTIONS(5584), 1, + ACTIONS(5696), 1, anon_sym_LPAREN, - ACTIONS(5588), 1, + ACTIONS(5698), 1, anon_sym_STAR, - ACTIONS(5590), 1, + ACTIONS(5700), 1, anon_sym_QMARK, - ACTIONS(5592), 1, + ACTIONS(5702), 1, anon_sym_BANG, - ACTIONS(5594), 1, + ACTIONS(5704), 1, anon_sym_LBRACK2, - ACTIONS(5596), 1, + ACTIONS(5706), 1, anon_sym_AMP, - ACTIONS(5598), 1, + ACTIONS(5708), 1, anon_sym_map_LBRACK, - STATE(1660), 1, + STATE(2530), 1, sym_plain_type, - STATE(4341), 1, + STATE(4391), 1, sym_reference_expression, - STATE(3014), 2, - sym_line_comment, - sym_block_comment, - STATE(3286), 2, + STATE(2446), 2, sym_type_reference_expression, sym_qualified_type, - STATE(1635), 4, + STATE(3013), 2, + sym_line_comment, + sym_block_comment, + STATE(2471), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(1629), 12, + STATE(2472), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -275434,55 +275425,55 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [100900] = 22, + [100681] = 22, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(3596), 1, + ACTIONS(3698), 1, sym_identifier, - ACTIONS(3600), 1, + ACTIONS(3702), 1, anon_sym_fn, - ACTIONS(3604), 1, + ACTIONS(3706), 1, anon_sym_struct, - ACTIONS(3614), 1, + ACTIONS(3716), 1, anon_sym_shared, - ACTIONS(3618), 1, + ACTIONS(3720), 1, anon_sym_chan, - ACTIONS(3620), 1, + ACTIONS(3722), 1, anon_sym_thread, - ACTIONS(3622), 1, + ACTIONS(3724), 1, anon_sym_atomic, - ACTIONS(5568), 1, + ACTIONS(5682), 1, anon_sym_LPAREN, - ACTIONS(5572), 1, + ACTIONS(5684), 1, anon_sym_STAR, - ACTIONS(5574), 1, + ACTIONS(5686), 1, anon_sym_QMARK, - ACTIONS(5576), 1, + ACTIONS(5688), 1, anon_sym_BANG, - ACTIONS(5578), 1, + ACTIONS(5690), 1, anon_sym_LBRACK2, - ACTIONS(5580), 1, + ACTIONS(5692), 1, anon_sym_AMP, - ACTIONS(5582), 1, + ACTIONS(5694), 1, anon_sym_map_LBRACK, - STATE(1430), 1, + STATE(1826), 1, sym_plain_type, - STATE(4459), 1, + STATE(4454), 1, sym_reference_expression, - STATE(1402), 2, + STATE(1751), 2, sym_type_reference_expression, sym_qualified_type, - STATE(3015), 2, + STATE(3014), 2, sym_line_comment, sym_block_comment, - STATE(1418), 4, + STATE(1842), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(1419), 12, + STATE(1841), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -275495,55 +275486,55 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [100983] = 22, + [100764] = 22, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(3690), 1, + ACTIONS(3698), 1, sym_identifier, - ACTIONS(3694), 1, + ACTIONS(3702), 1, anon_sym_fn, - ACTIONS(3698), 1, + ACTIONS(3706), 1, anon_sym_struct, - ACTIONS(3708), 1, + ACTIONS(3716), 1, anon_sym_shared, - ACTIONS(3712), 1, + ACTIONS(3720), 1, anon_sym_chan, - ACTIONS(3714), 1, + ACTIONS(3722), 1, anon_sym_thread, - ACTIONS(3716), 1, + ACTIONS(3724), 1, anon_sym_atomic, - ACTIONS(5714), 1, + ACTIONS(5682), 1, anon_sym_LPAREN, - ACTIONS(5716), 1, + ACTIONS(5684), 1, anon_sym_STAR, - ACTIONS(5718), 1, + ACTIONS(5686), 1, anon_sym_QMARK, - ACTIONS(5720), 1, + ACTIONS(5688), 1, anon_sym_BANG, - ACTIONS(5722), 1, + ACTIONS(5690), 1, anon_sym_LBRACK2, - ACTIONS(5724), 1, + ACTIONS(5692), 1, anon_sym_AMP, - ACTIONS(5726), 1, + ACTIONS(5694), 1, anon_sym_map_LBRACK, - STATE(1801), 1, + STATE(1806), 1, sym_plain_type, - STATE(4451), 1, + STATE(4454), 1, sym_reference_expression, - STATE(1754), 2, + STATE(1751), 2, sym_type_reference_expression, sym_qualified_type, - STATE(3016), 2, + STATE(3015), 2, sym_line_comment, sym_block_comment, - STATE(1844), 4, + STATE(1842), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(1791), 12, + STATE(1841), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -275556,55 +275547,55 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [101066] = 22, + [100847] = 22, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(4014), 1, + ACTIONS(3698), 1, sym_identifier, - ACTIONS(4018), 1, + ACTIONS(3702), 1, anon_sym_fn, - ACTIONS(4022), 1, + ACTIONS(3706), 1, anon_sym_struct, - ACTIONS(4032), 1, + ACTIONS(3716), 1, anon_sym_shared, - ACTIONS(4036), 1, + ACTIONS(3720), 1, anon_sym_chan, - ACTIONS(4038), 1, + ACTIONS(3722), 1, anon_sym_thread, - ACTIONS(4040), 1, + ACTIONS(3724), 1, anon_sym_atomic, - ACTIONS(5672), 1, + ACTIONS(5682), 1, anon_sym_LPAREN, - ACTIONS(5674), 1, + ACTIONS(5684), 1, anon_sym_STAR, - ACTIONS(5676), 1, + ACTIONS(5686), 1, anon_sym_QMARK, - ACTIONS(5678), 1, + ACTIONS(5688), 1, anon_sym_BANG, - ACTIONS(5680), 1, + ACTIONS(5690), 1, anon_sym_LBRACK2, - ACTIONS(5682), 1, + ACTIONS(5692), 1, anon_sym_AMP, - ACTIONS(5684), 1, + ACTIONS(5694), 1, anon_sym_map_LBRACK, - STATE(2549), 1, + STATE(1789), 1, sym_plain_type, - STATE(4388), 1, + STATE(4454), 1, sym_reference_expression, - STATE(2432), 2, + STATE(1751), 2, sym_type_reference_expression, sym_qualified_type, - STATE(3017), 2, + STATE(3016), 2, sym_line_comment, sym_block_comment, - STATE(2492), 4, + STATE(1842), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(2493), 12, + STATE(1841), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -275617,55 +275608,55 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [101149] = 22, + [100930] = 22, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(3690), 1, + ACTIONS(3918), 1, sym_identifier, - ACTIONS(3694), 1, + ACTIONS(3922), 1, anon_sym_fn, - ACTIONS(3698), 1, + ACTIONS(3926), 1, anon_sym_struct, - ACTIONS(3708), 1, + ACTIONS(3936), 1, anon_sym_shared, - ACTIONS(3712), 1, + ACTIONS(3940), 1, anon_sym_chan, - ACTIONS(3714), 1, + ACTIONS(3942), 1, anon_sym_thread, - ACTIONS(3716), 1, + ACTIONS(3944), 1, anon_sym_atomic, - ACTIONS(5714), 1, + ACTIONS(5710), 1, anon_sym_LPAREN, - ACTIONS(5716), 1, + ACTIONS(5712), 1, anon_sym_STAR, - ACTIONS(5718), 1, + ACTIONS(5714), 1, anon_sym_QMARK, - ACTIONS(5720), 1, + ACTIONS(5716), 1, anon_sym_BANG, - ACTIONS(5722), 1, + ACTIONS(5718), 1, anon_sym_LBRACK2, - ACTIONS(5724), 1, + ACTIONS(5720), 1, anon_sym_AMP, - ACTIONS(5726), 1, + ACTIONS(5722), 1, anon_sym_map_LBRACK, - STATE(1805), 1, + STATE(2148), 1, sym_plain_type, - STATE(4451), 1, + STATE(4471), 1, sym_reference_expression, - STATE(1754), 2, + STATE(2142), 2, sym_type_reference_expression, sym_qualified_type, - STATE(3018), 2, + STATE(3017), 2, sym_line_comment, sym_block_comment, - STATE(1844), 4, + STATE(2183), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(1791), 12, + STATE(2184), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -275678,55 +275669,55 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [101232] = 22, + [101013] = 22, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(1191), 1, + ACTIONS(3698), 1, sym_identifier, - ACTIONS(1195), 1, + ACTIONS(3702), 1, anon_sym_fn, - ACTIONS(1199), 1, + ACTIONS(3706), 1, anon_sym_struct, - ACTIONS(1209), 1, + ACTIONS(3716), 1, anon_sym_shared, - ACTIONS(1213), 1, + ACTIONS(3720), 1, anon_sym_chan, - ACTIONS(1215), 1, + ACTIONS(3722), 1, anon_sym_thread, - ACTIONS(1217), 1, + ACTIONS(3724), 1, anon_sym_atomic, - ACTIONS(5686), 1, + ACTIONS(5682), 1, anon_sym_LPAREN, - ACTIONS(5688), 1, + ACTIONS(5684), 1, anon_sym_STAR, - ACTIONS(5690), 1, + ACTIONS(5686), 1, anon_sym_QMARK, - ACTIONS(5692), 1, + ACTIONS(5688), 1, anon_sym_BANG, - ACTIONS(5694), 1, + ACTIONS(5690), 1, anon_sym_LBRACK2, - ACTIONS(5696), 1, + ACTIONS(5692), 1, anon_sym_AMP, - ACTIONS(5698), 1, + ACTIONS(5694), 1, anon_sym_map_LBRACK, - STATE(1088), 1, + STATE(1788), 1, sym_plain_type, - STATE(4365), 1, + STATE(4454), 1, sym_reference_expression, - STATE(990), 2, + STATE(1751), 2, sym_type_reference_expression, sym_qualified_type, - STATE(3019), 2, + STATE(3018), 2, sym_line_comment, sym_block_comment, - STATE(1020), 4, + STATE(1842), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(1019), 12, + STATE(1841), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -275739,7 +275730,7 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [101315] = 22, + [101096] = 22, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, @@ -275754,40 +275745,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_thread, ACTIONS(91), 1, anon_sym_atomic, - ACTIONS(597), 1, + ACTIONS(565), 1, sym_identifier, - ACTIONS(603), 1, + ACTIONS(571), 1, anon_sym_fn, - ACTIONS(607), 1, + ACTIONS(575), 1, anon_sym_struct, - ACTIONS(615), 1, + ACTIONS(583), 1, anon_sym_shared, - ACTIONS(3586), 1, + ACTIONS(3564), 1, anon_sym_LPAREN, - ACTIONS(3588), 1, + ACTIONS(3566), 1, anon_sym_STAR, - ACTIONS(5302), 1, + ACTIONS(5308), 1, anon_sym_BANG, - ACTIONS(5304), 1, + ACTIONS(5310), 1, anon_sym_LBRACK2, - ACTIONS(5306), 1, + ACTIONS(5312), 1, anon_sym_AMP, - STATE(3867), 1, - sym_plain_type, - STATE(4495), 1, + STATE(4498), 1, sym_reference_expression, - STATE(3020), 2, + STATE(4503), 1, + sym_plain_type, + STATE(3019), 2, sym_line_comment, sym_block_comment, - STATE(3541), 2, + STATE(3460), 2, sym_type_reference_expression, sym_qualified_type, - STATE(2302), 4, + STATE(2360), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(2303), 12, + STATE(2362), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -275800,55 +275791,55 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [101398] = 22, + [101179] = 22, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(3556), 1, + ACTIONS(3758), 1, sym_identifier, - ACTIONS(3558), 1, + ACTIONS(3760), 1, anon_sym_LPAREN, - ACTIONS(3560), 1, + ACTIONS(3762), 1, anon_sym_fn, - ACTIONS(3562), 1, - anon_sym_STAR, - ACTIONS(3564), 1, + ACTIONS(3766), 1, anon_sym_struct, - ACTIONS(3574), 1, + ACTIONS(3776), 1, anon_sym_shared, - ACTIONS(3576), 1, + ACTIONS(3778), 1, anon_sym_map_LBRACK, - ACTIONS(3578), 1, + ACTIONS(3780), 1, anon_sym_chan, - ACTIONS(3580), 1, + ACTIONS(3782), 1, anon_sym_thread, - ACTIONS(3582), 1, + ACTIONS(3784), 1, anon_sym_atomic, - ACTIONS(5728), 1, + ACTIONS(5732), 1, + anon_sym_STAR, + ACTIONS(5734), 1, anon_sym_QMARK, - ACTIONS(5730), 1, + ACTIONS(5736), 1, anon_sym_BANG, - ACTIONS(5732), 1, + ACTIONS(5738), 1, anon_sym_LBRACK2, - ACTIONS(5734), 1, + ACTIONS(5740), 1, anon_sym_AMP, - STATE(1346), 1, + STATE(2059), 1, sym_plain_type, - STATE(4355), 1, + STATE(4433), 1, sym_reference_expression, - STATE(1278), 2, + STATE(1899), 2, sym_type_reference_expression, sym_qualified_type, - STATE(3021), 2, + STATE(3020), 2, sym_line_comment, sym_block_comment, - STATE(1357), 4, + STATE(2006), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(1360), 12, + STATE(2005), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -275861,55 +275852,116 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [101481] = 22, + [101262] = 22, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(47), 1, - anon_sym_QMARK, - ACTIONS(85), 1, + ACTIONS(3758), 1, + sym_identifier, + ACTIONS(3760), 1, + anon_sym_LPAREN, + ACTIONS(3762), 1, + anon_sym_fn, + ACTIONS(3766), 1, + anon_sym_struct, + ACTIONS(3776), 1, + anon_sym_shared, + ACTIONS(3778), 1, anon_sym_map_LBRACK, - ACTIONS(87), 1, + ACTIONS(3780), 1, anon_sym_chan, - ACTIONS(89), 1, + ACTIONS(3782), 1, anon_sym_thread, - ACTIONS(91), 1, + ACTIONS(3784), 1, anon_sym_atomic, - ACTIONS(597), 1, + ACTIONS(5732), 1, + anon_sym_STAR, + ACTIONS(5734), 1, + anon_sym_QMARK, + ACTIONS(5736), 1, + anon_sym_BANG, + ACTIONS(5738), 1, + anon_sym_LBRACK2, + ACTIONS(5740), 1, + anon_sym_AMP, + STATE(2071), 1, + sym_plain_type, + STATE(4433), 1, + sym_reference_expression, + STATE(1899), 2, + sym_type_reference_expression, + sym_qualified_type, + STATE(3021), 2, + sym_line_comment, + sym_block_comment, + STATE(2006), 4, + sym__plain_type_without_special, + sym_multi_return_type, + sym_result_type, + sym_option_type, + STATE(2005), 12, + sym_anon_struct_type, + sym_fixed_array_type, + sym_array_type, + sym_pointer_type, + sym_wrong_pointer_type, + sym_map_type, + sym_channel_type, + sym_shared_type, + sym_thread_type, + sym_atomic_type, + sym_generic_type, + sym_function_type, + [101345] = 22, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(3918), 1, sym_identifier, - ACTIONS(603), 1, + ACTIONS(3922), 1, anon_sym_fn, - ACTIONS(607), 1, + ACTIONS(3926), 1, anon_sym_struct, - ACTIONS(615), 1, + ACTIONS(3936), 1, anon_sym_shared, - ACTIONS(3586), 1, + ACTIONS(3940), 1, + anon_sym_chan, + ACTIONS(3942), 1, + anon_sym_thread, + ACTIONS(3944), 1, + anon_sym_atomic, + ACTIONS(5710), 1, anon_sym_LPAREN, - ACTIONS(3588), 1, + ACTIONS(5712), 1, anon_sym_STAR, - ACTIONS(5302), 1, + ACTIONS(5714), 1, + anon_sym_QMARK, + ACTIONS(5716), 1, anon_sym_BANG, - ACTIONS(5304), 1, + ACTIONS(5718), 1, anon_sym_LBRACK2, - ACTIONS(5306), 1, + ACTIONS(5720), 1, anon_sym_AMP, - STATE(3805), 1, + ACTIONS(5722), 1, + anon_sym_map_LBRACK, + STATE(2238), 1, sym_plain_type, - STATE(4495), 1, + STATE(4471), 1, sym_reference_expression, + STATE(2142), 2, + sym_type_reference_expression, + sym_qualified_type, STATE(3022), 2, sym_line_comment, sym_block_comment, - STATE(3541), 2, - sym_type_reference_expression, - sym_qualified_type, - STATE(2302), 4, + STATE(2183), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(2303), 12, + STATE(2184), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -275922,55 +275974,55 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [101564] = 22, + [101428] = 22, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(47), 1, - anon_sym_QMARK, - ACTIONS(85), 1, - anon_sym_map_LBRACK, - ACTIONS(87), 1, - anon_sym_chan, - ACTIONS(89), 1, - anon_sym_thread, - ACTIONS(91), 1, - anon_sym_atomic, - ACTIONS(597), 1, + ACTIONS(1195), 1, sym_identifier, - ACTIONS(603), 1, + ACTIONS(1199), 1, anon_sym_fn, - ACTIONS(607), 1, + ACTIONS(1203), 1, anon_sym_struct, - ACTIONS(615), 1, + ACTIONS(1213), 1, anon_sym_shared, - ACTIONS(3586), 1, + ACTIONS(1217), 1, + anon_sym_chan, + ACTIONS(1219), 1, + anon_sym_thread, + ACTIONS(1221), 1, + anon_sym_atomic, + ACTIONS(5742), 1, anon_sym_LPAREN, - ACTIONS(3588), 1, + ACTIONS(5744), 1, anon_sym_STAR, - ACTIONS(5302), 1, + ACTIONS(5746), 1, + anon_sym_QMARK, + ACTIONS(5748), 1, anon_sym_BANG, - ACTIONS(5304), 1, + ACTIONS(5750), 1, anon_sym_LBRACK2, - ACTIONS(5306), 1, + ACTIONS(5752), 1, anon_sym_AMP, - STATE(3759), 1, + ACTIONS(5754), 1, + anon_sym_map_LBRACK, + STATE(1072), 1, sym_plain_type, - STATE(4495), 1, + STATE(4349), 1, sym_reference_expression, + STATE(985), 2, + sym_type_reference_expression, + sym_qualified_type, STATE(3023), 2, sym_line_comment, sym_block_comment, - STATE(3541), 2, - sym_type_reference_expression, - sym_qualified_type, - STATE(2302), 4, + STATE(1066), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(2303), 12, + STATE(1030), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -275983,55 +276035,55 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [101647] = 22, + [101511] = 22, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(3596), 1, + ACTIONS(3918), 1, sym_identifier, - ACTIONS(3600), 1, + ACTIONS(3922), 1, anon_sym_fn, - ACTIONS(3604), 1, + ACTIONS(3926), 1, anon_sym_struct, - ACTIONS(3614), 1, + ACTIONS(3936), 1, anon_sym_shared, - ACTIONS(3618), 1, + ACTIONS(3940), 1, anon_sym_chan, - ACTIONS(3620), 1, + ACTIONS(3942), 1, anon_sym_thread, - ACTIONS(3622), 1, + ACTIONS(3944), 1, anon_sym_atomic, - ACTIONS(5568), 1, + ACTIONS(5710), 1, anon_sym_LPAREN, - ACTIONS(5572), 1, + ACTIONS(5712), 1, anon_sym_STAR, - ACTIONS(5574), 1, + ACTIONS(5714), 1, anon_sym_QMARK, - ACTIONS(5576), 1, + ACTIONS(5716), 1, anon_sym_BANG, - ACTIONS(5578), 1, + ACTIONS(5718), 1, anon_sym_LBRACK2, - ACTIONS(5580), 1, + ACTIONS(5720), 1, anon_sym_AMP, - ACTIONS(5582), 1, + ACTIONS(5722), 1, anon_sym_map_LBRACK, - STATE(1454), 1, + STATE(2205), 1, sym_plain_type, - STATE(4459), 1, + STATE(4471), 1, sym_reference_expression, - STATE(1402), 2, + STATE(2142), 2, sym_type_reference_expression, sym_qualified_type, STATE(3024), 2, sym_line_comment, sym_block_comment, - STATE(1418), 4, + STATE(2183), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(1419), 12, + STATE(2184), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -276044,7 +276096,7 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [101730] = 22, + [101594] = 22, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, @@ -276059,40 +276111,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_thread, ACTIONS(91), 1, anon_sym_atomic, - ACTIONS(597), 1, + ACTIONS(565), 1, sym_identifier, - ACTIONS(603), 1, + ACTIONS(571), 1, anon_sym_fn, - ACTIONS(607), 1, + ACTIONS(575), 1, anon_sym_struct, - ACTIONS(615), 1, + ACTIONS(583), 1, anon_sym_shared, - ACTIONS(3586), 1, + ACTIONS(3564), 1, anon_sym_LPAREN, - ACTIONS(3588), 1, + ACTIONS(3566), 1, anon_sym_STAR, - ACTIONS(5302), 1, + ACTIONS(5308), 1, anon_sym_BANG, - ACTIONS(5304), 1, + ACTIONS(5310), 1, anon_sym_LBRACK2, - ACTIONS(5306), 1, + ACTIONS(5312), 1, anon_sym_AMP, - STATE(2289), 1, + STATE(3805), 1, sym_plain_type, - STATE(4495), 1, + STATE(4498), 1, sym_reference_expression, STATE(3025), 2, sym_line_comment, sym_block_comment, - STATE(3541), 2, + STATE(3460), 2, sym_type_reference_expression, sym_qualified_type, - STATE(2302), 4, + STATE(2360), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(2303), 12, + STATE(2362), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -276105,55 +276157,55 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [101813] = 22, + [101677] = 22, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(1191), 1, + ACTIONS(3918), 1, sym_identifier, - ACTIONS(1195), 1, + ACTIONS(3922), 1, anon_sym_fn, - ACTIONS(1199), 1, + ACTIONS(3926), 1, anon_sym_struct, - ACTIONS(1209), 1, + ACTIONS(3936), 1, anon_sym_shared, - ACTIONS(1213), 1, + ACTIONS(3940), 1, anon_sym_chan, - ACTIONS(1215), 1, + ACTIONS(3942), 1, anon_sym_thread, - ACTIONS(1217), 1, + ACTIONS(3944), 1, anon_sym_atomic, - ACTIONS(5686), 1, + ACTIONS(5710), 1, anon_sym_LPAREN, - ACTIONS(5688), 1, + ACTIONS(5712), 1, anon_sym_STAR, - ACTIONS(5690), 1, + ACTIONS(5714), 1, anon_sym_QMARK, - ACTIONS(5692), 1, + ACTIONS(5716), 1, anon_sym_BANG, - ACTIONS(5694), 1, + ACTIONS(5718), 1, anon_sym_LBRACK2, - ACTIONS(5696), 1, + ACTIONS(5720), 1, anon_sym_AMP, - ACTIONS(5698), 1, + ACTIONS(5722), 1, anon_sym_map_LBRACK, - STATE(1065), 1, + STATE(2237), 1, sym_plain_type, - STATE(4365), 1, + STATE(4471), 1, sym_reference_expression, - STATE(990), 2, + STATE(2142), 2, sym_type_reference_expression, sym_qualified_type, STATE(3026), 2, sym_line_comment, sym_block_comment, - STATE(1020), 4, + STATE(2183), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(1019), 12, + STATE(2184), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -276166,55 +276218,55 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [101896] = 22, + [101760] = 22, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(1191), 1, + ACTIONS(3758), 1, sym_identifier, - ACTIONS(1195), 1, + ACTIONS(3760), 1, + anon_sym_LPAREN, + ACTIONS(3762), 1, anon_sym_fn, - ACTIONS(1199), 1, + ACTIONS(3766), 1, anon_sym_struct, - ACTIONS(1209), 1, + ACTIONS(3776), 1, anon_sym_shared, - ACTIONS(1213), 1, + ACTIONS(3778), 1, + anon_sym_map_LBRACK, + ACTIONS(3780), 1, anon_sym_chan, - ACTIONS(1215), 1, + ACTIONS(3782), 1, anon_sym_thread, - ACTIONS(1217), 1, + ACTIONS(3784), 1, anon_sym_atomic, - ACTIONS(5686), 1, - anon_sym_LPAREN, - ACTIONS(5688), 1, + ACTIONS(5732), 1, anon_sym_STAR, - ACTIONS(5690), 1, + ACTIONS(5734), 1, anon_sym_QMARK, - ACTIONS(5692), 1, + ACTIONS(5736), 1, anon_sym_BANG, - ACTIONS(5694), 1, + ACTIONS(5738), 1, anon_sym_LBRACK2, - ACTIONS(5696), 1, + ACTIONS(5740), 1, anon_sym_AMP, - ACTIONS(5698), 1, - anon_sym_map_LBRACK, - STATE(991), 1, + STATE(2087), 1, sym_plain_type, - STATE(4365), 1, + STATE(4433), 1, sym_reference_expression, - STATE(990), 2, + STATE(1899), 2, sym_type_reference_expression, sym_qualified_type, STATE(3027), 2, sym_line_comment, sym_block_comment, - STATE(1020), 4, + STATE(2006), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(1019), 12, + STATE(2005), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -276227,55 +276279,55 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [101979] = 22, + [101843] = 22, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(47), 1, - anon_sym_QMARK, - ACTIONS(85), 1, - anon_sym_map_LBRACK, - ACTIONS(87), 1, - anon_sym_chan, - ACTIONS(89), 1, - anon_sym_thread, - ACTIONS(91), 1, - anon_sym_atomic, - ACTIONS(597), 1, + ACTIONS(3918), 1, sym_identifier, - ACTIONS(603), 1, + ACTIONS(3922), 1, anon_sym_fn, - ACTIONS(607), 1, + ACTIONS(3926), 1, anon_sym_struct, - ACTIONS(615), 1, + ACTIONS(3936), 1, anon_sym_shared, - ACTIONS(3586), 1, + ACTIONS(3940), 1, + anon_sym_chan, + ACTIONS(3942), 1, + anon_sym_thread, + ACTIONS(3944), 1, + anon_sym_atomic, + ACTIONS(5710), 1, anon_sym_LPAREN, - ACTIONS(3588), 1, + ACTIONS(5712), 1, anon_sym_STAR, - ACTIONS(5302), 1, + ACTIONS(5714), 1, + anon_sym_QMARK, + ACTIONS(5716), 1, anon_sym_BANG, - ACTIONS(5304), 1, + ACTIONS(5718), 1, anon_sym_LBRACK2, - ACTIONS(5306), 1, + ACTIONS(5720), 1, anon_sym_AMP, - STATE(4445), 1, + ACTIONS(5722), 1, + anon_sym_map_LBRACK, + STATE(2234), 1, sym_plain_type, - STATE(4495), 1, + STATE(4471), 1, sym_reference_expression, + STATE(2142), 2, + sym_type_reference_expression, + sym_qualified_type, STATE(3028), 2, sym_line_comment, sym_block_comment, - STATE(3541), 2, - sym_type_reference_expression, - sym_qualified_type, - STATE(2302), 4, + STATE(2183), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(2303), 12, + STATE(2184), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -276288,55 +276340,55 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [102062] = 22, + [101926] = 22, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(607), 1, - anon_sym_struct, - ACTIONS(3586), 1, - anon_sym_LPAREN, - ACTIONS(3945), 1, + ACTIONS(3918), 1, sym_identifier, - ACTIONS(3947), 1, + ACTIONS(3922), 1, anon_sym_fn, - ACTIONS(3949), 1, - anon_sym_STAR, - ACTIONS(3959), 1, + ACTIONS(3926), 1, + anon_sym_struct, + ACTIONS(3936), 1, anon_sym_shared, - ACTIONS(3961), 1, - anon_sym_map_LBRACK, - ACTIONS(3963), 1, + ACTIONS(3940), 1, anon_sym_chan, - ACTIONS(3965), 1, + ACTIONS(3942), 1, anon_sym_thread, - ACTIONS(3967), 1, + ACTIONS(3944), 1, anon_sym_atomic, - ACTIONS(5736), 1, + ACTIONS(5710), 1, + anon_sym_LPAREN, + ACTIONS(5712), 1, + anon_sym_STAR, + ACTIONS(5714), 1, anon_sym_QMARK, - ACTIONS(5738), 1, + ACTIONS(5716), 1, anon_sym_BANG, - ACTIONS(5740), 1, + ACTIONS(5718), 1, anon_sym_LBRACK2, - ACTIONS(5742), 1, + ACTIONS(5720), 1, anon_sym_AMP, - STATE(2360), 1, + ACTIONS(5722), 1, + anon_sym_map_LBRACK, + STATE(2208), 1, sym_plain_type, - STATE(4495), 1, + STATE(4471), 1, sym_reference_expression, - STATE(2283), 2, + STATE(2142), 2, sym_type_reference_expression, sym_qualified_type, STATE(3029), 2, sym_line_comment, sym_block_comment, - STATE(2302), 4, + STATE(2183), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(2303), 12, + STATE(2184), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -276349,55 +276401,55 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [102145] = 22, + [102009] = 22, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(47), 1, - anon_sym_QMARK, - ACTIONS(85), 1, - anon_sym_map_LBRACK, - ACTIONS(87), 1, - anon_sym_chan, - ACTIONS(89), 1, - anon_sym_thread, - ACTIONS(91), 1, - anon_sym_atomic, - ACTIONS(597), 1, + ACTIONS(3918), 1, sym_identifier, - ACTIONS(603), 1, + ACTIONS(3922), 1, anon_sym_fn, - ACTIONS(607), 1, + ACTIONS(3926), 1, anon_sym_struct, - ACTIONS(615), 1, + ACTIONS(3936), 1, anon_sym_shared, - ACTIONS(3586), 1, + ACTIONS(3940), 1, + anon_sym_chan, + ACTIONS(3942), 1, + anon_sym_thread, + ACTIONS(3944), 1, + anon_sym_atomic, + ACTIONS(5710), 1, anon_sym_LPAREN, - ACTIONS(3588), 1, + ACTIONS(5712), 1, anon_sym_STAR, - ACTIONS(5302), 1, + ACTIONS(5714), 1, + anon_sym_QMARK, + ACTIONS(5716), 1, anon_sym_BANG, - ACTIONS(5304), 1, + ACTIONS(5718), 1, anon_sym_LBRACK2, - ACTIONS(5306), 1, + ACTIONS(5720), 1, anon_sym_AMP, - STATE(2389), 1, + ACTIONS(5722), 1, + anon_sym_map_LBRACK, + STATE(2207), 1, sym_plain_type, - STATE(4495), 1, + STATE(4471), 1, sym_reference_expression, + STATE(2142), 2, + sym_type_reference_expression, + sym_qualified_type, STATE(3030), 2, sym_line_comment, sym_block_comment, - STATE(3541), 2, - sym_type_reference_expression, - sym_qualified_type, - STATE(2302), 4, + STATE(2183), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(2303), 12, + STATE(2184), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -276410,55 +276462,55 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [102228] = 22, + [102092] = 22, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(607), 1, - anon_sym_struct, - ACTIONS(3586), 1, - anon_sym_LPAREN, - ACTIONS(3945), 1, + ACTIONS(4523), 1, sym_identifier, - ACTIONS(3947), 1, + ACTIONS(4525), 1, + anon_sym_LPAREN, + ACTIONS(4527), 1, anon_sym_fn, - ACTIONS(3949), 1, + ACTIONS(4529), 1, anon_sym_STAR, - ACTIONS(3959), 1, + ACTIONS(4531), 1, + anon_sym_struct, + ACTIONS(4541), 1, anon_sym_shared, - ACTIONS(3961), 1, + ACTIONS(4543), 1, anon_sym_map_LBRACK, - ACTIONS(3963), 1, + ACTIONS(4545), 1, anon_sym_chan, - ACTIONS(3965), 1, + ACTIONS(4547), 1, anon_sym_thread, - ACTIONS(3967), 1, + ACTIONS(4549), 1, anon_sym_atomic, - ACTIONS(5736), 1, + ACTIONS(5756), 1, anon_sym_QMARK, - ACTIONS(5738), 1, + ACTIONS(5758), 1, anon_sym_BANG, - ACTIONS(5740), 1, + ACTIONS(5760), 1, anon_sym_LBRACK2, - ACTIONS(5742), 1, + ACTIONS(5762), 1, anon_sym_AMP, - STATE(2289), 1, + STATE(2714), 1, sym_plain_type, - STATE(4495), 1, + STATE(4479), 1, sym_reference_expression, - STATE(2283), 2, + STATE(2597), 2, sym_type_reference_expression, sym_qualified_type, STATE(3031), 2, sym_line_comment, sym_block_comment, - STATE(2302), 4, + STATE(2699), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(2303), 12, + STATE(2700), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -276471,55 +276523,55 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [102311] = 22, + [102175] = 22, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(47), 1, - anon_sym_QMARK, - ACTIONS(85), 1, - anon_sym_map_LBRACK, - ACTIONS(87), 1, - anon_sym_chan, - ACTIONS(89), 1, - anon_sym_thread, - ACTIONS(91), 1, - anon_sym_atomic, - ACTIONS(597), 1, + ACTIONS(4523), 1, sym_identifier, - ACTIONS(603), 1, + ACTIONS(4525), 1, + anon_sym_LPAREN, + ACTIONS(4527), 1, anon_sym_fn, - ACTIONS(607), 1, + ACTIONS(4529), 1, + anon_sym_STAR, + ACTIONS(4531), 1, anon_sym_struct, - ACTIONS(615), 1, + ACTIONS(4541), 1, anon_sym_shared, - ACTIONS(3586), 1, - anon_sym_LPAREN, - ACTIONS(3588), 1, - anon_sym_STAR, - ACTIONS(5302), 1, + ACTIONS(4543), 1, + anon_sym_map_LBRACK, + ACTIONS(4545), 1, + anon_sym_chan, + ACTIONS(4547), 1, + anon_sym_thread, + ACTIONS(4549), 1, + anon_sym_atomic, + ACTIONS(5756), 1, + anon_sym_QMARK, + ACTIONS(5758), 1, anon_sym_BANG, - ACTIONS(5304), 1, + ACTIONS(5760), 1, anon_sym_LBRACK2, - ACTIONS(5306), 1, + ACTIONS(5762), 1, anon_sym_AMP, - STATE(2356), 1, + STATE(2715), 1, sym_plain_type, - STATE(4495), 1, + STATE(4479), 1, sym_reference_expression, + STATE(2597), 2, + sym_type_reference_expression, + sym_qualified_type, STATE(3032), 2, sym_line_comment, sym_block_comment, - STATE(3541), 2, - sym_type_reference_expression, - sym_qualified_type, - STATE(2302), 4, + STATE(2699), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(2303), 12, + STATE(2700), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -276532,55 +276584,55 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [102394] = 22, + [102258] = 22, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(607), 1, - anon_sym_struct, - ACTIONS(3586), 1, - anon_sym_LPAREN, - ACTIONS(3945), 1, + ACTIONS(4523), 1, sym_identifier, - ACTIONS(3947), 1, + ACTIONS(4525), 1, + anon_sym_LPAREN, + ACTIONS(4527), 1, anon_sym_fn, - ACTIONS(3949), 1, + ACTIONS(4529), 1, anon_sym_STAR, - ACTIONS(3959), 1, + ACTIONS(4531), 1, + anon_sym_struct, + ACTIONS(4541), 1, anon_sym_shared, - ACTIONS(3961), 1, + ACTIONS(4543), 1, anon_sym_map_LBRACK, - ACTIONS(3963), 1, + ACTIONS(4545), 1, anon_sym_chan, - ACTIONS(3965), 1, + ACTIONS(4547), 1, anon_sym_thread, - ACTIONS(3967), 1, + ACTIONS(4549), 1, anon_sym_atomic, - ACTIONS(5736), 1, + ACTIONS(5756), 1, anon_sym_QMARK, - ACTIONS(5738), 1, + ACTIONS(5758), 1, anon_sym_BANG, - ACTIONS(5740), 1, + ACTIONS(5760), 1, anon_sym_LBRACK2, - ACTIONS(5742), 1, + ACTIONS(5762), 1, anon_sym_AMP, - STATE(2389), 1, + STATE(2716), 1, sym_plain_type, - STATE(4495), 1, + STATE(4479), 1, sym_reference_expression, - STATE(2283), 2, + STATE(2597), 2, sym_type_reference_expression, sym_qualified_type, STATE(3033), 2, sym_line_comment, sym_block_comment, - STATE(2302), 4, + STATE(2699), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(2303), 12, + STATE(2700), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -276593,55 +276645,55 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [102477] = 22, + [102341] = 22, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(47), 1, - anon_sym_QMARK, - ACTIONS(85), 1, - anon_sym_map_LBRACK, - ACTIONS(87), 1, - anon_sym_chan, - ACTIONS(89), 1, - anon_sym_thread, - ACTIONS(91), 1, - anon_sym_atomic, - ACTIONS(597), 1, + ACTIONS(4523), 1, sym_identifier, - ACTIONS(603), 1, + ACTIONS(4525), 1, + anon_sym_LPAREN, + ACTIONS(4527), 1, anon_sym_fn, - ACTIONS(607), 1, + ACTIONS(4529), 1, + anon_sym_STAR, + ACTIONS(4531), 1, anon_sym_struct, - ACTIONS(615), 1, + ACTIONS(4541), 1, anon_sym_shared, - ACTIONS(3586), 1, - anon_sym_LPAREN, - ACTIONS(3588), 1, - anon_sym_STAR, - ACTIONS(5302), 1, + ACTIONS(4543), 1, + anon_sym_map_LBRACK, + ACTIONS(4545), 1, + anon_sym_chan, + ACTIONS(4547), 1, + anon_sym_thread, + ACTIONS(4549), 1, + anon_sym_atomic, + ACTIONS(5756), 1, + anon_sym_QMARK, + ACTIONS(5758), 1, anon_sym_BANG, - ACTIONS(5304), 1, + ACTIONS(5760), 1, anon_sym_LBRACK2, - ACTIONS(5306), 1, + ACTIONS(5762), 1, anon_sym_AMP, - STATE(3944), 1, + STATE(2725), 1, sym_plain_type, - STATE(4495), 1, + STATE(4479), 1, sym_reference_expression, + STATE(2597), 2, + sym_type_reference_expression, + sym_qualified_type, STATE(3034), 2, sym_line_comment, sym_block_comment, - STATE(3541), 2, - sym_type_reference_expression, - sym_qualified_type, - STATE(2302), 4, + STATE(2699), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(2303), 12, + STATE(2700), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -276654,55 +276706,55 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [102560] = 22, + [102424] = 22, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(3690), 1, + ACTIONS(4523), 1, sym_identifier, - ACTIONS(3694), 1, + ACTIONS(4525), 1, + anon_sym_LPAREN, + ACTIONS(4527), 1, anon_sym_fn, - ACTIONS(3698), 1, + ACTIONS(4529), 1, + anon_sym_STAR, + ACTIONS(4531), 1, anon_sym_struct, - ACTIONS(3708), 1, + ACTIONS(4541), 1, anon_sym_shared, - ACTIONS(3712), 1, + ACTIONS(4543), 1, + anon_sym_map_LBRACK, + ACTIONS(4545), 1, anon_sym_chan, - ACTIONS(3714), 1, + ACTIONS(4547), 1, anon_sym_thread, - ACTIONS(3716), 1, + ACTIONS(4549), 1, anon_sym_atomic, - ACTIONS(5714), 1, - anon_sym_LPAREN, - ACTIONS(5716), 1, - anon_sym_STAR, - ACTIONS(5718), 1, + ACTIONS(5756), 1, anon_sym_QMARK, - ACTIONS(5720), 1, + ACTIONS(5758), 1, anon_sym_BANG, - ACTIONS(5722), 1, + ACTIONS(5760), 1, anon_sym_LBRACK2, - ACTIONS(5724), 1, + ACTIONS(5762), 1, anon_sym_AMP, - ACTIONS(5726), 1, - anon_sym_map_LBRACK, - STATE(1851), 1, + STATE(2728), 1, sym_plain_type, - STATE(4451), 1, + STATE(4479), 1, sym_reference_expression, - STATE(1754), 2, + STATE(2597), 2, sym_type_reference_expression, sym_qualified_type, STATE(3035), 2, sym_line_comment, sym_block_comment, - STATE(1844), 4, + STATE(2699), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(1791), 12, + STATE(2700), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -276715,55 +276767,55 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [102643] = 22, + [102507] = 22, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(3755), 1, - sym_identifier, - ACTIONS(3757), 1, - anon_sym_LPAREN, - ACTIONS(3759), 1, - anon_sym_fn, - ACTIONS(3763), 1, - anon_sym_struct, - ACTIONS(3773), 1, - anon_sym_shared, - ACTIONS(3775), 1, + ACTIONS(47), 1, + anon_sym_QMARK, + ACTIONS(85), 1, anon_sym_map_LBRACK, - ACTIONS(3777), 1, + ACTIONS(87), 1, anon_sym_chan, - ACTIONS(3779), 1, + ACTIONS(89), 1, anon_sym_thread, - ACTIONS(3781), 1, + ACTIONS(91), 1, anon_sym_atomic, - ACTIONS(5744), 1, + ACTIONS(565), 1, + sym_identifier, + ACTIONS(571), 1, + anon_sym_fn, + ACTIONS(575), 1, + anon_sym_struct, + ACTIONS(583), 1, + anon_sym_shared, + ACTIONS(3564), 1, + anon_sym_LPAREN, + ACTIONS(3566), 1, anon_sym_STAR, - ACTIONS(5746), 1, - anon_sym_QMARK, - ACTIONS(5748), 1, + ACTIONS(5308), 1, anon_sym_BANG, - ACTIONS(5750), 1, + ACTIONS(5310), 1, anon_sym_LBRACK2, - ACTIONS(5752), 1, + ACTIONS(5312), 1, anon_sym_AMP, - STATE(2089), 1, - sym_plain_type, - STATE(4376), 1, + STATE(4498), 1, sym_reference_expression, - STATE(1910), 2, - sym_type_reference_expression, - sym_qualified_type, + STATE(4521), 1, + sym_plain_type, STATE(3036), 2, sym_line_comment, sym_block_comment, - STATE(2003), 4, + STATE(3460), 2, + sym_type_reference_expression, + sym_qualified_type, + STATE(2360), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(2002), 12, + STATE(2362), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -276776,55 +276828,55 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [102726] = 22, + [102590] = 22, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(3755), 1, + ACTIONS(3918), 1, sym_identifier, - ACTIONS(3757), 1, - anon_sym_LPAREN, - ACTIONS(3759), 1, + ACTIONS(3922), 1, anon_sym_fn, - ACTIONS(3763), 1, + ACTIONS(3926), 1, anon_sym_struct, - ACTIONS(3773), 1, + ACTIONS(3936), 1, anon_sym_shared, - ACTIONS(3775), 1, - anon_sym_map_LBRACK, - ACTIONS(3777), 1, + ACTIONS(3940), 1, anon_sym_chan, - ACTIONS(3779), 1, + ACTIONS(3942), 1, anon_sym_thread, - ACTIONS(3781), 1, + ACTIONS(3944), 1, anon_sym_atomic, - ACTIONS(5744), 1, + ACTIONS(5710), 1, + anon_sym_LPAREN, + ACTIONS(5712), 1, anon_sym_STAR, - ACTIONS(5746), 1, + ACTIONS(5714), 1, anon_sym_QMARK, - ACTIONS(5748), 1, + ACTIONS(5716), 1, anon_sym_BANG, - ACTIONS(5750), 1, + ACTIONS(5718), 1, anon_sym_LBRACK2, - ACTIONS(5752), 1, + ACTIONS(5720), 1, anon_sym_AMP, - STATE(2019), 1, + ACTIONS(5722), 1, + anon_sym_map_LBRACK, + STATE(2206), 1, sym_plain_type, - STATE(4376), 1, + STATE(4471), 1, sym_reference_expression, - STATE(1910), 2, + STATE(2142), 2, sym_type_reference_expression, sym_qualified_type, STATE(3037), 2, sym_line_comment, sym_block_comment, - STATE(2003), 4, + STATE(2183), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(2002), 12, + STATE(2184), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -276837,55 +276889,55 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [102809] = 22, + [102673] = 22, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(47), 1, - anon_sym_QMARK, - ACTIONS(85), 1, - anon_sym_map_LBRACK, - ACTIONS(87), 1, - anon_sym_chan, - ACTIONS(89), 1, - anon_sym_thread, - ACTIONS(91), 1, - anon_sym_atomic, - ACTIONS(597), 1, + ACTIONS(4523), 1, sym_identifier, - ACTIONS(603), 1, + ACTIONS(4525), 1, + anon_sym_LPAREN, + ACTIONS(4527), 1, anon_sym_fn, - ACTIONS(607), 1, + ACTIONS(4529), 1, + anon_sym_STAR, + ACTIONS(4531), 1, anon_sym_struct, - ACTIONS(615), 1, + ACTIONS(4541), 1, anon_sym_shared, - ACTIONS(3586), 1, - anon_sym_LPAREN, - ACTIONS(3588), 1, - anon_sym_STAR, - ACTIONS(5302), 1, + ACTIONS(4543), 1, + anon_sym_map_LBRACK, + ACTIONS(4545), 1, + anon_sym_chan, + ACTIONS(4547), 1, + anon_sym_thread, + ACTIONS(4549), 1, + anon_sym_atomic, + ACTIONS(5756), 1, + anon_sym_QMARK, + ACTIONS(5758), 1, anon_sym_BANG, - ACTIONS(5304), 1, + ACTIONS(5760), 1, anon_sym_LBRACK2, - ACTIONS(5306), 1, + ACTIONS(5762), 1, anon_sym_AMP, - STATE(2340), 1, + STATE(2713), 1, sym_plain_type, - STATE(4495), 1, + STATE(4479), 1, sym_reference_expression, + STATE(2597), 2, + sym_type_reference_expression, + sym_qualified_type, STATE(3038), 2, sym_line_comment, sym_block_comment, - STATE(3541), 2, - sym_type_reference_expression, - sym_qualified_type, - STATE(2302), 4, + STATE(2699), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(2303), 12, + STATE(2700), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -276898,55 +276950,55 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [102892] = 22, + [102756] = 22, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(4519), 1, + ACTIONS(3789), 1, sym_identifier, - ACTIONS(4521), 1, + ACTIONS(3791), 1, anon_sym_LPAREN, - ACTIONS(4523), 1, + ACTIONS(3793), 1, anon_sym_fn, - ACTIONS(4525), 1, - anon_sym_STAR, - ACTIONS(4527), 1, + ACTIONS(3797), 1, anon_sym_struct, - ACTIONS(4537), 1, + ACTIONS(3807), 1, anon_sym_shared, - ACTIONS(4539), 1, + ACTIONS(3809), 1, anon_sym_map_LBRACK, - ACTIONS(4541), 1, + ACTIONS(3811), 1, anon_sym_chan, - ACTIONS(4543), 1, + ACTIONS(3813), 1, anon_sym_thread, - ACTIONS(4545), 1, + ACTIONS(3815), 1, anon_sym_atomic, - ACTIONS(5754), 1, + ACTIONS(5764), 1, + anon_sym_STAR, + ACTIONS(5766), 1, anon_sym_QMARK, - ACTIONS(5756), 1, + ACTIONS(5768), 1, anon_sym_BANG, - ACTIONS(5758), 1, + ACTIONS(5770), 1, anon_sym_LBRACK2, - ACTIONS(5760), 1, + ACTIONS(5772), 1, anon_sym_AMP, - STATE(2559), 1, + STATE(1929), 1, sym_plain_type, - STATE(4476), 1, + STATE(4370), 1, sym_reference_expression, - STATE(2602), 2, + STATE(1909), 2, sym_type_reference_expression, sym_qualified_type, STATE(3039), 2, sym_line_comment, sym_block_comment, - STATE(2696), 4, + STATE(1945), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(2697), 12, + STATE(1949), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -276959,55 +277011,55 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [102975] = 22, + [102839] = 22, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(3917), 1, + ACTIONS(47), 1, + anon_sym_QMARK, + ACTIONS(85), 1, + anon_sym_map_LBRACK, + ACTIONS(87), 1, + anon_sym_chan, + ACTIONS(89), 1, + anon_sym_thread, + ACTIONS(91), 1, + anon_sym_atomic, + ACTIONS(565), 1, sym_identifier, - ACTIONS(3921), 1, + ACTIONS(571), 1, anon_sym_fn, - ACTIONS(3925), 1, + ACTIONS(575), 1, anon_sym_struct, - ACTIONS(3935), 1, + ACTIONS(583), 1, anon_sym_shared, - ACTIONS(3939), 1, - anon_sym_chan, - ACTIONS(3941), 1, - anon_sym_thread, - ACTIONS(3943), 1, - anon_sym_atomic, - ACTIONS(5762), 1, + ACTIONS(3564), 1, anon_sym_LPAREN, - ACTIONS(5764), 1, + ACTIONS(3566), 1, anon_sym_STAR, - ACTIONS(5766), 1, - anon_sym_QMARK, - ACTIONS(5768), 1, + ACTIONS(5308), 1, anon_sym_BANG, - ACTIONS(5770), 1, + ACTIONS(5310), 1, anon_sym_LBRACK2, - ACTIONS(5772), 1, + ACTIONS(5312), 1, anon_sym_AMP, - ACTIONS(5774), 1, - anon_sym_map_LBRACK, - STATE(2223), 1, + STATE(4029), 1, sym_plain_type, - STATE(4468), 1, + STATE(4498), 1, sym_reference_expression, - STATE(2140), 2, - sym_type_reference_expression, - sym_qualified_type, STATE(3040), 2, sym_line_comment, sym_block_comment, - STATE(2178), 4, + STATE(3460), 2, + sym_type_reference_expression, + sym_qualified_type, + STATE(2360), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(2179), 12, + STATE(2362), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -277020,55 +277072,55 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [103058] = 22, + [102922] = 22, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(607), 1, - anon_sym_struct, - ACTIONS(3586), 1, - anon_sym_LPAREN, - ACTIONS(3945), 1, + ACTIONS(3630), 1, sym_identifier, - ACTIONS(3947), 1, + ACTIONS(3634), 1, anon_sym_fn, - ACTIONS(3949), 1, - anon_sym_STAR, - ACTIONS(3959), 1, + ACTIONS(3638), 1, + anon_sym_struct, + ACTIONS(3648), 1, anon_sym_shared, - ACTIONS(3961), 1, - anon_sym_map_LBRACK, - ACTIONS(3963), 1, + ACTIONS(3652), 1, anon_sym_chan, - ACTIONS(3965), 1, + ACTIONS(3654), 1, anon_sym_thread, - ACTIONS(3967), 1, + ACTIONS(3656), 1, anon_sym_atomic, - ACTIONS(5736), 1, + ACTIONS(5590), 1, + anon_sym_LPAREN, + ACTIONS(5774), 1, + anon_sym_STAR, + ACTIONS(5776), 1, anon_sym_QMARK, - ACTIONS(5738), 1, + ACTIONS(5778), 1, anon_sym_BANG, - ACTIONS(5740), 1, + ACTIONS(5780), 1, anon_sym_LBRACK2, - ACTIONS(5742), 1, + ACTIONS(5782), 1, anon_sym_AMP, - STATE(2356), 1, + ACTIONS(5784), 1, + anon_sym_map_LBRACK, + STATE(1668), 1, sym_plain_type, - STATE(4495), 1, + STATE(4378), 1, sym_reference_expression, - STATE(2283), 2, + STATE(1631), 2, sym_type_reference_expression, sym_qualified_type, STATE(3041), 2, sym_line_comment, sym_block_comment, - STATE(2302), 4, + STATE(1647), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(2303), 12, + STATE(1667), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -277081,55 +277133,55 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [103141] = 22, + [103005] = 22, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(3690), 1, + ACTIONS(3789), 1, sym_identifier, - ACTIONS(3694), 1, + ACTIONS(3791), 1, + anon_sym_LPAREN, + ACTIONS(3793), 1, anon_sym_fn, - ACTIONS(3698), 1, + ACTIONS(3797), 1, anon_sym_struct, - ACTIONS(3708), 1, + ACTIONS(3807), 1, anon_sym_shared, - ACTIONS(3712), 1, + ACTIONS(3809), 1, + anon_sym_map_LBRACK, + ACTIONS(3811), 1, anon_sym_chan, - ACTIONS(3714), 1, + ACTIONS(3813), 1, anon_sym_thread, - ACTIONS(3716), 1, + ACTIONS(3815), 1, anon_sym_atomic, - ACTIONS(5714), 1, - anon_sym_LPAREN, - ACTIONS(5716), 1, + ACTIONS(5764), 1, anon_sym_STAR, - ACTIONS(5718), 1, + ACTIONS(5766), 1, anon_sym_QMARK, - ACTIONS(5720), 1, + ACTIONS(5768), 1, anon_sym_BANG, - ACTIONS(5722), 1, + ACTIONS(5770), 1, anon_sym_LBRACK2, - ACTIONS(5724), 1, + ACTIONS(5772), 1, anon_sym_AMP, - ACTIONS(5726), 1, - anon_sym_map_LBRACK, - STATE(1789), 1, + STATE(1987), 1, sym_plain_type, - STATE(4451), 1, + STATE(4370), 1, sym_reference_expression, - STATE(1754), 2, + STATE(1909), 2, sym_type_reference_expression, sym_qualified_type, STATE(3042), 2, sym_line_comment, sym_block_comment, - STATE(1844), 4, + STATE(1945), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(1791), 12, + STATE(1949), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -277142,55 +277194,55 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [103224] = 22, + [103088] = 22, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(607), 1, - anon_sym_struct, - ACTIONS(3586), 1, - anon_sym_LPAREN, - ACTIONS(3945), 1, + ACTIONS(3789), 1, sym_identifier, - ACTIONS(3947), 1, + ACTIONS(3791), 1, + anon_sym_LPAREN, + ACTIONS(3793), 1, anon_sym_fn, - ACTIONS(3949), 1, - anon_sym_STAR, - ACTIONS(3959), 1, + ACTIONS(3797), 1, + anon_sym_struct, + ACTIONS(3807), 1, anon_sym_shared, - ACTIONS(3961), 1, + ACTIONS(3809), 1, anon_sym_map_LBRACK, - ACTIONS(3963), 1, + ACTIONS(3811), 1, anon_sym_chan, - ACTIONS(3965), 1, + ACTIONS(3813), 1, anon_sym_thread, - ACTIONS(3967), 1, + ACTIONS(3815), 1, anon_sym_atomic, - ACTIONS(5736), 1, + ACTIONS(5764), 1, + anon_sym_STAR, + ACTIONS(5766), 1, anon_sym_QMARK, - ACTIONS(5738), 1, + ACTIONS(5768), 1, anon_sym_BANG, - ACTIONS(5740), 1, + ACTIONS(5770), 1, anon_sym_LBRACK2, - ACTIONS(5742), 1, + ACTIONS(5772), 1, anon_sym_AMP, - STATE(2297), 1, + STATE(1989), 1, sym_plain_type, - STATE(4495), 1, + STATE(4370), 1, sym_reference_expression, - STATE(2283), 2, + STATE(1909), 2, sym_type_reference_expression, sym_qualified_type, STATE(3043), 2, sym_line_comment, sym_block_comment, - STATE(2302), 4, + STATE(1945), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(2303), 12, + STATE(1949), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -277203,55 +277255,55 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [103307] = 22, + [103171] = 22, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(3448), 1, + ACTIONS(3630), 1, sym_identifier, - ACTIONS(3452), 1, + ACTIONS(3634), 1, anon_sym_fn, - ACTIONS(3456), 1, + ACTIONS(3638), 1, anon_sym_struct, - ACTIONS(3466), 1, + ACTIONS(3648), 1, anon_sym_shared, - ACTIONS(3470), 1, + ACTIONS(3652), 1, anon_sym_chan, - ACTIONS(3472), 1, + ACTIONS(3654), 1, anon_sym_thread, - ACTIONS(3474), 1, + ACTIONS(3656), 1, anon_sym_atomic, - ACTIONS(5776), 1, + ACTIONS(5590), 1, anon_sym_LPAREN, - ACTIONS(5778), 1, + ACTIONS(5774), 1, anon_sym_STAR, - ACTIONS(5780), 1, + ACTIONS(5776), 1, anon_sym_QMARK, - ACTIONS(5782), 1, + ACTIONS(5778), 1, anon_sym_BANG, - ACTIONS(5784), 1, + ACTIONS(5780), 1, anon_sym_LBRACK2, - ACTIONS(5786), 1, + ACTIONS(5782), 1, anon_sym_AMP, - ACTIONS(5788), 1, + ACTIONS(5784), 1, anon_sym_map_LBRACK, - STATE(1254), 1, + STATE(1665), 1, sym_plain_type, - STATE(4409), 1, + STATE(4378), 1, sym_reference_expression, - STATE(1135), 2, + STATE(1631), 2, sym_type_reference_expression, sym_qualified_type, STATE(3044), 2, sym_line_comment, sym_block_comment, - STATE(1211), 4, + STATE(1647), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(1220), 12, + STATE(1667), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -277264,55 +277316,55 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [103390] = 22, + [103254] = 22, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(3917), 1, + ACTIONS(47), 1, + anon_sym_QMARK, + ACTIONS(85), 1, + anon_sym_map_LBRACK, + ACTIONS(87), 1, + anon_sym_chan, + ACTIONS(89), 1, + anon_sym_thread, + ACTIONS(91), 1, + anon_sym_atomic, + ACTIONS(565), 1, sym_identifier, - ACTIONS(3921), 1, + ACTIONS(571), 1, anon_sym_fn, - ACTIONS(3925), 1, + ACTIONS(575), 1, anon_sym_struct, - ACTIONS(3935), 1, + ACTIONS(583), 1, anon_sym_shared, - ACTIONS(3939), 1, - anon_sym_chan, - ACTIONS(3941), 1, - anon_sym_thread, - ACTIONS(3943), 1, - anon_sym_atomic, - ACTIONS(5762), 1, + ACTIONS(3564), 1, anon_sym_LPAREN, - ACTIONS(5764), 1, + ACTIONS(3566), 1, anon_sym_STAR, - ACTIONS(5766), 1, - anon_sym_QMARK, - ACTIONS(5768), 1, + ACTIONS(5308), 1, anon_sym_BANG, - ACTIONS(5770), 1, + ACTIONS(5310), 1, anon_sym_LBRACK2, - ACTIONS(5772), 1, + ACTIONS(5312), 1, anon_sym_AMP, - ACTIONS(5774), 1, - anon_sym_map_LBRACK, - STATE(2148), 1, + STATE(3787), 1, sym_plain_type, - STATE(4468), 1, + STATE(4498), 1, sym_reference_expression, - STATE(2140), 2, - sym_type_reference_expression, - sym_qualified_type, STATE(3045), 2, sym_line_comment, sym_block_comment, - STATE(2178), 4, + STATE(3460), 2, + sym_type_reference_expression, + sym_qualified_type, + STATE(2360), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(2179), 12, + STATE(2362), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -277325,55 +277377,55 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [103473] = 22, + [103337] = 22, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(565), 1, - sym_identifier, - ACTIONS(571), 1, - anon_sym_fn, ACTIONS(575), 1, anon_sym_struct, - ACTIONS(585), 1, + ACTIONS(3564), 1, + anon_sym_LPAREN, + ACTIONS(3953), 1, + sym_identifier, + ACTIONS(3955), 1, + anon_sym_fn, + ACTIONS(3957), 1, + anon_sym_STAR, + ACTIONS(3967), 1, anon_sym_shared, - ACTIONS(589), 1, + ACTIONS(3969), 1, + anon_sym_map_LBRACK, + ACTIONS(3971), 1, anon_sym_chan, - ACTIONS(591), 1, + ACTIONS(3973), 1, anon_sym_thread, - ACTIONS(593), 1, + ACTIONS(3975), 1, anon_sym_atomic, - ACTIONS(5700), 1, - anon_sym_LPAREN, - ACTIONS(5702), 1, - anon_sym_STAR, - ACTIONS(5704), 1, + ACTIONS(5724), 1, anon_sym_QMARK, - ACTIONS(5706), 1, + ACTIONS(5726), 1, anon_sym_BANG, - ACTIONS(5708), 1, + ACTIONS(5728), 1, anon_sym_LBRACK2, - ACTIONS(5710), 1, + ACTIONS(5730), 1, anon_sym_AMP, - ACTIONS(5712), 1, - anon_sym_map_LBRACK, - STATE(497), 1, + STATE(2340), 1, sym_plain_type, - STATE(4403), 1, + STATE(4498), 1, sym_reference_expression, - STATE(252), 2, + STATE(2283), 2, sym_type_reference_expression, sym_qualified_type, STATE(3046), 2, sym_line_comment, sym_block_comment, - STATE(445), 4, + STATE(2360), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(448), 12, + STATE(2362), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -277386,55 +277438,55 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [103556] = 22, + [103420] = 22, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(607), 1, - anon_sym_struct, - ACTIONS(3586), 1, - anon_sym_LPAREN, - ACTIONS(3945), 1, + ACTIONS(3789), 1, sym_identifier, - ACTIONS(3947), 1, + ACTIONS(3791), 1, + anon_sym_LPAREN, + ACTIONS(3793), 1, anon_sym_fn, - ACTIONS(3949), 1, - anon_sym_STAR, - ACTIONS(3959), 1, + ACTIONS(3797), 1, + anon_sym_struct, + ACTIONS(3807), 1, anon_sym_shared, - ACTIONS(3961), 1, + ACTIONS(3809), 1, anon_sym_map_LBRACK, - ACTIONS(3963), 1, + ACTIONS(3811), 1, anon_sym_chan, - ACTIONS(3965), 1, + ACTIONS(3813), 1, anon_sym_thread, - ACTIONS(3967), 1, + ACTIONS(3815), 1, anon_sym_atomic, - ACTIONS(5736), 1, + ACTIONS(5764), 1, + anon_sym_STAR, + ACTIONS(5766), 1, anon_sym_QMARK, - ACTIONS(5738), 1, + ACTIONS(5768), 1, anon_sym_BANG, - ACTIONS(5740), 1, + ACTIONS(5770), 1, anon_sym_LBRACK2, - ACTIONS(5742), 1, + ACTIONS(5772), 1, anon_sym_AMP, - STATE(2363), 1, + STATE(1993), 1, sym_plain_type, - STATE(4495), 1, + STATE(4370), 1, sym_reference_expression, - STATE(2283), 2, + STATE(1909), 2, sym_type_reference_expression, sym_qualified_type, STATE(3047), 2, sym_line_comment, sym_block_comment, - STATE(2302), 4, + STATE(1945), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(2303), 12, + STATE(1949), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -277447,55 +277499,55 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [103639] = 22, + [103503] = 22, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(607), 1, - anon_sym_struct, - ACTIONS(3586), 1, - anon_sym_LPAREN, - ACTIONS(3945), 1, - sym_identifier, - ACTIONS(3947), 1, - anon_sym_fn, - ACTIONS(3949), 1, - anon_sym_STAR, - ACTIONS(3959), 1, - anon_sym_shared, - ACTIONS(3961), 1, + ACTIONS(47), 1, + anon_sym_QMARK, + ACTIONS(85), 1, anon_sym_map_LBRACK, - ACTIONS(3963), 1, + ACTIONS(87), 1, anon_sym_chan, - ACTIONS(3965), 1, + ACTIONS(89), 1, anon_sym_thread, - ACTIONS(3967), 1, + ACTIONS(91), 1, anon_sym_atomic, - ACTIONS(5736), 1, - anon_sym_QMARK, - ACTIONS(5738), 1, + ACTIONS(565), 1, + sym_identifier, + ACTIONS(571), 1, + anon_sym_fn, + ACTIONS(575), 1, + anon_sym_struct, + ACTIONS(583), 1, + anon_sym_shared, + ACTIONS(3564), 1, + anon_sym_LPAREN, + ACTIONS(3566), 1, + anon_sym_STAR, + ACTIONS(5308), 1, anon_sym_BANG, - ACTIONS(5740), 1, + ACTIONS(5310), 1, anon_sym_LBRACK2, - ACTIONS(5742), 1, + ACTIONS(5312), 1, anon_sym_AMP, - STATE(2340), 1, + STATE(3881), 1, sym_plain_type, - STATE(4495), 1, + STATE(4498), 1, sym_reference_expression, - STATE(2283), 2, - sym_type_reference_expression, - sym_qualified_type, STATE(3048), 2, sym_line_comment, sym_block_comment, - STATE(2302), 4, + STATE(3460), 2, + sym_type_reference_expression, + sym_qualified_type, + STATE(2360), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(2303), 12, + STATE(2362), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -277508,55 +277560,55 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [103722] = 22, + [103586] = 22, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(3448), 1, + ACTIONS(4523), 1, sym_identifier, - ACTIONS(3452), 1, + ACTIONS(4525), 1, + anon_sym_LPAREN, + ACTIONS(4527), 1, anon_sym_fn, - ACTIONS(3456), 1, + ACTIONS(4529), 1, + anon_sym_STAR, + ACTIONS(4531), 1, anon_sym_struct, - ACTIONS(3466), 1, + ACTIONS(4541), 1, anon_sym_shared, - ACTIONS(3470), 1, + ACTIONS(4543), 1, + anon_sym_map_LBRACK, + ACTIONS(4545), 1, anon_sym_chan, - ACTIONS(3472), 1, + ACTIONS(4547), 1, anon_sym_thread, - ACTIONS(3474), 1, + ACTIONS(4549), 1, anon_sym_atomic, - ACTIONS(5776), 1, - anon_sym_LPAREN, - ACTIONS(5778), 1, - anon_sym_STAR, - ACTIONS(5780), 1, + ACTIONS(5756), 1, anon_sym_QMARK, - ACTIONS(5782), 1, + ACTIONS(5758), 1, anon_sym_BANG, - ACTIONS(5784), 1, + ACTIONS(5760), 1, anon_sym_LBRACK2, - ACTIONS(5786), 1, + ACTIONS(5762), 1, anon_sym_AMP, - ACTIONS(5788), 1, - anon_sym_map_LBRACK, - STATE(1154), 1, + STATE(2730), 1, sym_plain_type, - STATE(4409), 1, + STATE(4479), 1, sym_reference_expression, - STATE(1135), 2, + STATE(2597), 2, sym_type_reference_expression, sym_qualified_type, STATE(3049), 2, sym_line_comment, sym_block_comment, - STATE(1211), 4, + STATE(2699), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(1220), 12, + STATE(2700), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -277569,55 +277621,55 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [103805] = 22, + [103669] = 22, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(3448), 1, + ACTIONS(575), 1, + anon_sym_struct, + ACTIONS(3564), 1, + anon_sym_LPAREN, + ACTIONS(3953), 1, sym_identifier, - ACTIONS(3452), 1, + ACTIONS(3955), 1, anon_sym_fn, - ACTIONS(3456), 1, - anon_sym_struct, - ACTIONS(3466), 1, + ACTIONS(3957), 1, + anon_sym_STAR, + ACTIONS(3967), 1, anon_sym_shared, - ACTIONS(3470), 1, + ACTIONS(3969), 1, + anon_sym_map_LBRACK, + ACTIONS(3971), 1, anon_sym_chan, - ACTIONS(3472), 1, + ACTIONS(3973), 1, anon_sym_thread, - ACTIONS(3474), 1, + ACTIONS(3975), 1, anon_sym_atomic, - ACTIONS(5776), 1, - anon_sym_LPAREN, - ACTIONS(5778), 1, - anon_sym_STAR, - ACTIONS(5780), 1, + ACTIONS(5724), 1, anon_sym_QMARK, - ACTIONS(5782), 1, + ACTIONS(5726), 1, anon_sym_BANG, - ACTIONS(5784), 1, + ACTIONS(5728), 1, anon_sym_LBRACK2, - ACTIONS(5786), 1, + ACTIONS(5730), 1, anon_sym_AMP, - ACTIONS(5788), 1, - anon_sym_map_LBRACK, - STATE(1145), 1, + STATE(2361), 1, sym_plain_type, - STATE(4409), 1, + STATE(4498), 1, sym_reference_expression, - STATE(1135), 2, + STATE(2283), 2, sym_type_reference_expression, sym_qualified_type, STATE(3050), 2, sym_line_comment, sym_block_comment, - STATE(1211), 4, + STATE(2360), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(1220), 12, + STATE(2362), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -277630,55 +277682,55 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [103888] = 22, + [103752] = 22, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(3783), 1, + ACTIONS(3789), 1, sym_identifier, - ACTIONS(3785), 1, + ACTIONS(3791), 1, anon_sym_LPAREN, - ACTIONS(3787), 1, + ACTIONS(3793), 1, anon_sym_fn, - ACTIONS(3791), 1, + ACTIONS(3797), 1, anon_sym_struct, - ACTIONS(3801), 1, + ACTIONS(3807), 1, anon_sym_shared, - ACTIONS(3803), 1, + ACTIONS(3809), 1, anon_sym_map_LBRACK, - ACTIONS(3805), 1, + ACTIONS(3811), 1, anon_sym_chan, - ACTIONS(3807), 1, + ACTIONS(3813), 1, anon_sym_thread, - ACTIONS(3809), 1, + ACTIONS(3815), 1, anon_sym_atomic, - ACTIONS(5662), 1, + ACTIONS(5764), 1, anon_sym_STAR, - ACTIONS(5664), 1, + ACTIONS(5766), 1, anon_sym_QMARK, - ACTIONS(5666), 1, + ACTIONS(5768), 1, anon_sym_BANG, - ACTIONS(5668), 1, + ACTIONS(5770), 1, anon_sym_LBRACK2, - ACTIONS(5670), 1, + ACTIONS(5772), 1, anon_sym_AMP, - STATE(1988), 1, + STATE(1926), 1, sym_plain_type, - STATE(4430), 1, + STATE(4370), 1, sym_reference_expression, - STATE(1908), 2, + STATE(1909), 2, sym_type_reference_expression, sym_qualified_type, STATE(3051), 2, sym_line_comment, sym_block_comment, - STATE(1930), 4, + STATE(1945), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(1929), 12, + STATE(1949), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -277691,55 +277743,55 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [103971] = 22, + [103835] = 22, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, + ACTIONS(47), 1, + anon_sym_QMARK, + ACTIONS(85), 1, + anon_sym_map_LBRACK, + ACTIONS(87), 1, + anon_sym_chan, + ACTIONS(89), 1, + anon_sym_thread, + ACTIONS(91), 1, + anon_sym_atomic, ACTIONS(565), 1, sym_identifier, ACTIONS(571), 1, anon_sym_fn, ACTIONS(575), 1, anon_sym_struct, - ACTIONS(585), 1, + ACTIONS(583), 1, anon_sym_shared, - ACTIONS(589), 1, - anon_sym_chan, - ACTIONS(591), 1, - anon_sym_thread, - ACTIONS(593), 1, - anon_sym_atomic, - ACTIONS(5700), 1, + ACTIONS(3564), 1, anon_sym_LPAREN, - ACTIONS(5702), 1, + ACTIONS(3566), 1, anon_sym_STAR, - ACTIONS(5704), 1, - anon_sym_QMARK, - ACTIONS(5706), 1, + ACTIONS(5308), 1, anon_sym_BANG, - ACTIONS(5708), 1, + ACTIONS(5310), 1, anon_sym_LBRACK2, - ACTIONS(5710), 1, + ACTIONS(5312), 1, anon_sym_AMP, - ACTIONS(5712), 1, - anon_sym_map_LBRACK, - STATE(353), 1, + STATE(4381), 1, sym_plain_type, - STATE(4403), 1, + STATE(4498), 1, sym_reference_expression, - STATE(252), 2, - sym_type_reference_expression, - sym_qualified_type, STATE(3052), 2, sym_line_comment, sym_block_comment, - STATE(445), 4, + STATE(3460), 2, + sym_type_reference_expression, + sym_qualified_type, + STATE(2360), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(448), 12, + STATE(2362), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -277752,55 +277804,55 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [104054] = 22, + [103918] = 22, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(3448), 1, + ACTIONS(3454), 1, sym_identifier, - ACTIONS(3452), 1, + ACTIONS(3458), 1, anon_sym_fn, - ACTIONS(3456), 1, + ACTIONS(3462), 1, anon_sym_struct, - ACTIONS(3466), 1, + ACTIONS(3472), 1, anon_sym_shared, - ACTIONS(3470), 1, + ACTIONS(3476), 1, anon_sym_chan, - ACTIONS(3472), 1, + ACTIONS(3478), 1, anon_sym_thread, - ACTIONS(3474), 1, + ACTIONS(3480), 1, anon_sym_atomic, - ACTIONS(5776), 1, + ACTIONS(5786), 1, anon_sym_LPAREN, - ACTIONS(5778), 1, + ACTIONS(5788), 1, anon_sym_STAR, - ACTIONS(5780), 1, + ACTIONS(5790), 1, anon_sym_QMARK, - ACTIONS(5782), 1, + ACTIONS(5792), 1, anon_sym_BANG, - ACTIONS(5784), 1, + ACTIONS(5794), 1, anon_sym_LBRACK2, - ACTIONS(5786), 1, + ACTIONS(5796), 1, anon_sym_AMP, - ACTIONS(5788), 1, + ACTIONS(5798), 1, anon_sym_map_LBRACK, - STATE(1142), 1, + STATE(1160), 1, sym_plain_type, - STATE(4409), 1, + STATE(4412), 1, sym_reference_expression, - STATE(1135), 2, + STATE(1132), 2, sym_type_reference_expression, sym_qualified_type, STATE(3053), 2, sym_line_comment, sym_block_comment, - STATE(1211), 4, + STATE(1214), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(1220), 12, + STATE(1225), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -277813,55 +277865,55 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [104137] = 22, + [104001] = 22, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(3917), 1, + ACTIONS(3630), 1, sym_identifier, - ACTIONS(3921), 1, + ACTIONS(3634), 1, anon_sym_fn, - ACTIONS(3925), 1, + ACTIONS(3638), 1, anon_sym_struct, - ACTIONS(3935), 1, + ACTIONS(3648), 1, anon_sym_shared, - ACTIONS(3939), 1, + ACTIONS(3652), 1, anon_sym_chan, - ACTIONS(3941), 1, + ACTIONS(3654), 1, anon_sym_thread, - ACTIONS(3943), 1, + ACTIONS(3656), 1, anon_sym_atomic, - ACTIONS(5762), 1, + ACTIONS(5590), 1, anon_sym_LPAREN, - ACTIONS(5764), 1, + ACTIONS(5774), 1, anon_sym_STAR, - ACTIONS(5766), 1, + ACTIONS(5776), 1, anon_sym_QMARK, - ACTIONS(5768), 1, + ACTIONS(5778), 1, anon_sym_BANG, - ACTIONS(5770), 1, + ACTIONS(5780), 1, anon_sym_LBRACK2, - ACTIONS(5772), 1, + ACTIONS(5782), 1, anon_sym_AMP, - ACTIONS(5774), 1, + ACTIONS(5784), 1, anon_sym_map_LBRACK, - STATE(2149), 1, + STATE(1664), 1, sym_plain_type, - STATE(4468), 1, + STATE(4378), 1, sym_reference_expression, - STATE(2140), 2, + STATE(1631), 2, sym_type_reference_expression, sym_qualified_type, STATE(3054), 2, sym_line_comment, sym_block_comment, - STATE(2178), 4, + STATE(1647), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(2179), 12, + STATE(1667), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -277874,55 +277926,55 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [104220] = 22, + [104084] = 22, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(607), 1, - anon_sym_struct, - ACTIONS(3586), 1, - anon_sym_LPAREN, - ACTIONS(3945), 1, + ACTIONS(3630), 1, sym_identifier, - ACTIONS(3947), 1, + ACTIONS(3634), 1, anon_sym_fn, - ACTIONS(3949), 1, - anon_sym_STAR, - ACTIONS(3959), 1, + ACTIONS(3638), 1, + anon_sym_struct, + ACTIONS(3648), 1, anon_sym_shared, - ACTIONS(3961), 1, - anon_sym_map_LBRACK, - ACTIONS(3963), 1, + ACTIONS(3652), 1, anon_sym_chan, - ACTIONS(3965), 1, + ACTIONS(3654), 1, anon_sym_thread, - ACTIONS(3967), 1, + ACTIONS(3656), 1, anon_sym_atomic, - ACTIONS(5736), 1, + ACTIONS(5590), 1, + anon_sym_LPAREN, + ACTIONS(5774), 1, + anon_sym_STAR, + ACTIONS(5776), 1, anon_sym_QMARK, - ACTIONS(5738), 1, + ACTIONS(5778), 1, anon_sym_BANG, - ACTIONS(5740), 1, + ACTIONS(5780), 1, anon_sym_LBRACK2, - ACTIONS(5742), 1, + ACTIONS(5782), 1, anon_sym_AMP, - STATE(2559), 1, + ACTIONS(5784), 1, + anon_sym_map_LBRACK, + STATE(1652), 1, sym_plain_type, - STATE(4495), 1, + STATE(4378), 1, sym_reference_expression, - STATE(2283), 2, + STATE(1631), 2, sym_type_reference_expression, sym_qualified_type, STATE(3055), 2, sym_line_comment, sym_block_comment, - STATE(2302), 4, + STATE(1647), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(2303), 12, + STATE(1667), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -277935,55 +277987,55 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [104303] = 22, + [104167] = 22, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(565), 1, + ACTIONS(3426), 1, sym_identifier, - ACTIONS(571), 1, + ACTIONS(3430), 1, anon_sym_fn, - ACTIONS(575), 1, + ACTIONS(3434), 1, anon_sym_struct, - ACTIONS(585), 1, + ACTIONS(3444), 1, anon_sym_shared, - ACTIONS(589), 1, + ACTIONS(3448), 1, anon_sym_chan, - ACTIONS(591), 1, + ACTIONS(3450), 1, anon_sym_thread, - ACTIONS(593), 1, + ACTIONS(3452), 1, anon_sym_atomic, - ACTIONS(5700), 1, + ACTIONS(5800), 1, anon_sym_LPAREN, - ACTIONS(5702), 1, + ACTIONS(5802), 1, anon_sym_STAR, - ACTIONS(5704), 1, + ACTIONS(5804), 1, anon_sym_QMARK, - ACTIONS(5706), 1, + ACTIONS(5806), 1, anon_sym_BANG, - ACTIONS(5708), 1, + ACTIONS(5808), 1, anon_sym_LBRACK2, - ACTIONS(5710), 1, + ACTIONS(5810), 1, anon_sym_AMP, - ACTIONS(5712), 1, + ACTIONS(5812), 1, anon_sym_map_LBRACK, - STATE(416), 1, + STATE(3361), 1, sym_plain_type, - STATE(4403), 1, + STATE(4351), 1, sym_reference_expression, - STATE(252), 2, - sym_type_reference_expression, - sym_qualified_type, STATE(3056), 2, sym_line_comment, sym_block_comment, - STATE(445), 4, + STATE(3305), 2, + sym_type_reference_expression, + sym_qualified_type, + STATE(3362), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(448), 12, + STATE(3340), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -277996,55 +278048,55 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [104386] = 22, + [104250] = 22, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(3690), 1, + ACTIONS(3426), 1, sym_identifier, - ACTIONS(3694), 1, + ACTIONS(3430), 1, anon_sym_fn, - ACTIONS(3698), 1, + ACTIONS(3434), 1, anon_sym_struct, - ACTIONS(3708), 1, + ACTIONS(3444), 1, anon_sym_shared, - ACTIONS(3712), 1, + ACTIONS(3448), 1, anon_sym_chan, - ACTIONS(3714), 1, + ACTIONS(3450), 1, anon_sym_thread, - ACTIONS(3716), 1, + ACTIONS(3452), 1, anon_sym_atomic, - ACTIONS(5714), 1, + ACTIONS(5800), 1, anon_sym_LPAREN, - ACTIONS(5716), 1, + ACTIONS(5802), 1, anon_sym_STAR, - ACTIONS(5718), 1, + ACTIONS(5804), 1, anon_sym_QMARK, - ACTIONS(5720), 1, + ACTIONS(5806), 1, anon_sym_BANG, - ACTIONS(5722), 1, + ACTIONS(5808), 1, anon_sym_LBRACK2, - ACTIONS(5724), 1, + ACTIONS(5810), 1, anon_sym_AMP, - ACTIONS(5726), 1, + ACTIONS(5812), 1, anon_sym_map_LBRACK, - STATE(1819), 1, + STATE(3342), 1, sym_plain_type, - STATE(4451), 1, + STATE(4351), 1, sym_reference_expression, - STATE(1754), 2, - sym_type_reference_expression, - sym_qualified_type, STATE(3057), 2, sym_line_comment, sym_block_comment, - STATE(1844), 4, + STATE(3305), 2, + sym_type_reference_expression, + sym_qualified_type, + STATE(3362), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(1791), 12, + STATE(3340), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -278057,55 +278109,55 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [104469] = 22, + [104333] = 22, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(3917), 1, + ACTIONS(3630), 1, sym_identifier, - ACTIONS(3921), 1, + ACTIONS(3634), 1, anon_sym_fn, - ACTIONS(3925), 1, + ACTIONS(3638), 1, anon_sym_struct, - ACTIONS(3935), 1, + ACTIONS(3648), 1, anon_sym_shared, - ACTIONS(3939), 1, + ACTIONS(3652), 1, anon_sym_chan, - ACTIONS(3941), 1, + ACTIONS(3654), 1, anon_sym_thread, - ACTIONS(3943), 1, + ACTIONS(3656), 1, anon_sym_atomic, - ACTIONS(5762), 1, + ACTIONS(5590), 1, anon_sym_LPAREN, - ACTIONS(5764), 1, + ACTIONS(5774), 1, anon_sym_STAR, - ACTIONS(5766), 1, + ACTIONS(5776), 1, anon_sym_QMARK, - ACTIONS(5768), 1, + ACTIONS(5778), 1, anon_sym_BANG, - ACTIONS(5770), 1, + ACTIONS(5780), 1, anon_sym_LBRACK2, - ACTIONS(5772), 1, + ACTIONS(5782), 1, anon_sym_AMP, - ACTIONS(5774), 1, + ACTIONS(5784), 1, anon_sym_map_LBRACK, - STATE(2239), 1, + STATE(1635), 1, sym_plain_type, - STATE(4468), 1, + STATE(4378), 1, sym_reference_expression, - STATE(2140), 2, + STATE(1631), 2, sym_type_reference_expression, sym_qualified_type, STATE(3058), 2, sym_line_comment, sym_block_comment, - STATE(2178), 4, + STATE(1647), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(2179), 12, + STATE(1667), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -278118,55 +278170,55 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [104552] = 22, + [104416] = 22, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(3448), 1, + ACTIONS(3454), 1, sym_identifier, - ACTIONS(3452), 1, + ACTIONS(3458), 1, anon_sym_fn, - ACTIONS(3456), 1, + ACTIONS(3462), 1, anon_sym_struct, - ACTIONS(3466), 1, + ACTIONS(3472), 1, anon_sym_shared, - ACTIONS(3470), 1, + ACTIONS(3476), 1, anon_sym_chan, - ACTIONS(3472), 1, + ACTIONS(3478), 1, anon_sym_thread, - ACTIONS(3474), 1, + ACTIONS(3480), 1, anon_sym_atomic, - ACTIONS(5776), 1, + ACTIONS(5786), 1, anon_sym_LPAREN, - ACTIONS(5778), 1, + ACTIONS(5788), 1, anon_sym_STAR, - ACTIONS(5780), 1, + ACTIONS(5790), 1, anon_sym_QMARK, - ACTIONS(5782), 1, + ACTIONS(5792), 1, anon_sym_BANG, - ACTIONS(5784), 1, + ACTIONS(5794), 1, anon_sym_LBRACK2, - ACTIONS(5786), 1, + ACTIONS(5796), 1, anon_sym_AMP, - ACTIONS(5788), 1, + ACTIONS(5798), 1, anon_sym_map_LBRACK, - STATE(1224), 1, + STATE(1169), 1, sym_plain_type, - STATE(4409), 1, + STATE(4412), 1, sym_reference_expression, - STATE(1135), 2, + STATE(1132), 2, sym_type_reference_expression, sym_qualified_type, STATE(3059), 2, sym_line_comment, sym_block_comment, - STATE(1211), 4, + STATE(1214), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(1220), 12, + STATE(1225), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -278179,55 +278231,55 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [104635] = 22, + [104499] = 22, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(3917), 1, + ACTIONS(4523), 1, sym_identifier, - ACTIONS(3921), 1, + ACTIONS(4525), 1, + anon_sym_LPAREN, + ACTIONS(4527), 1, anon_sym_fn, - ACTIONS(3925), 1, + ACTIONS(4529), 1, + anon_sym_STAR, + ACTIONS(4531), 1, anon_sym_struct, - ACTIONS(3935), 1, + ACTIONS(4541), 1, anon_sym_shared, - ACTIONS(3939), 1, + ACTIONS(4543), 1, + anon_sym_map_LBRACK, + ACTIONS(4545), 1, anon_sym_chan, - ACTIONS(3941), 1, + ACTIONS(4547), 1, anon_sym_thread, - ACTIONS(3943), 1, + ACTIONS(4549), 1, anon_sym_atomic, - ACTIONS(5762), 1, - anon_sym_LPAREN, - ACTIONS(5764), 1, - anon_sym_STAR, - ACTIONS(5766), 1, + ACTIONS(5756), 1, anon_sym_QMARK, - ACTIONS(5768), 1, + ACTIONS(5758), 1, anon_sym_BANG, - ACTIONS(5770), 1, + ACTIONS(5760), 1, anon_sym_LBRACK2, - ACTIONS(5772), 1, + ACTIONS(5762), 1, anon_sym_AMP, - ACTIONS(5774), 1, - anon_sym_map_LBRACK, - STATE(2202), 1, + STATE(2741), 1, sym_plain_type, - STATE(4468), 1, + STATE(4479), 1, sym_reference_expression, - STATE(2140), 2, + STATE(2597), 2, sym_type_reference_expression, sym_qualified_type, STATE(3060), 2, sym_line_comment, sym_block_comment, - STATE(2178), 4, + STATE(2699), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(2179), 12, + STATE(2700), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -278240,55 +278292,55 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [104718] = 22, + [104582] = 22, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(565), 1, + ACTIONS(3602), 1, sym_identifier, - ACTIONS(571), 1, + ACTIONS(3606), 1, anon_sym_fn, - ACTIONS(575), 1, + ACTIONS(3610), 1, anon_sym_struct, - ACTIONS(585), 1, + ACTIONS(3620), 1, anon_sym_shared, - ACTIONS(589), 1, + ACTIONS(3624), 1, anon_sym_chan, - ACTIONS(591), 1, + ACTIONS(3626), 1, anon_sym_thread, - ACTIONS(593), 1, + ACTIONS(3628), 1, anon_sym_atomic, - ACTIONS(5700), 1, + ACTIONS(5574), 1, anon_sym_LPAREN, - ACTIONS(5702), 1, + ACTIONS(5578), 1, anon_sym_STAR, - ACTIONS(5704), 1, + ACTIONS(5580), 1, anon_sym_QMARK, - ACTIONS(5706), 1, + ACTIONS(5582), 1, anon_sym_BANG, - ACTIONS(5708), 1, + ACTIONS(5584), 1, anon_sym_LBRACK2, - ACTIONS(5710), 1, + ACTIONS(5586), 1, anon_sym_AMP, - ACTIONS(5712), 1, + ACTIONS(5588), 1, anon_sym_map_LBRACK, - STATE(408), 1, + STATE(1447), 1, sym_plain_type, - STATE(4403), 1, + STATE(4496), 1, sym_reference_expression, - STATE(252), 2, + STATE(1401), 2, sym_type_reference_expression, sym_qualified_type, STATE(3061), 2, sym_line_comment, sym_block_comment, - STATE(445), 4, + STATE(1444), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(448), 12, + STATE(1445), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -278301,55 +278353,55 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [104801] = 22, + [104665] = 22, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(47), 1, - anon_sym_QMARK, - ACTIONS(85), 1, - anon_sym_map_LBRACK, - ACTIONS(87), 1, - anon_sym_chan, - ACTIONS(89), 1, - anon_sym_thread, - ACTIONS(91), 1, - anon_sym_atomic, - ACTIONS(597), 1, + ACTIONS(4523), 1, sym_identifier, - ACTIONS(603), 1, + ACTIONS(4525), 1, + anon_sym_LPAREN, + ACTIONS(4527), 1, anon_sym_fn, - ACTIONS(607), 1, + ACTIONS(4529), 1, + anon_sym_STAR, + ACTIONS(4531), 1, anon_sym_struct, - ACTIONS(615), 1, + ACTIONS(4541), 1, anon_sym_shared, - ACTIONS(3586), 1, - anon_sym_LPAREN, - ACTIONS(3588), 1, - anon_sym_STAR, - ACTIONS(5302), 1, + ACTIONS(4543), 1, + anon_sym_map_LBRACK, + ACTIONS(4545), 1, + anon_sym_chan, + ACTIONS(4547), 1, + anon_sym_thread, + ACTIONS(4549), 1, + anon_sym_atomic, + ACTIONS(5756), 1, + anon_sym_QMARK, + ACTIONS(5758), 1, anon_sym_BANG, - ACTIONS(5304), 1, + ACTIONS(5760), 1, anon_sym_LBRACK2, - ACTIONS(5306), 1, + ACTIONS(5762), 1, anon_sym_AMP, - STATE(3950), 1, + STATE(2743), 1, sym_plain_type, - STATE(4495), 1, + STATE(4479), 1, sym_reference_expression, + STATE(2597), 2, + sym_type_reference_expression, + sym_qualified_type, STATE(3062), 2, sym_line_comment, sym_block_comment, - STATE(3541), 2, - sym_type_reference_expression, - sym_qualified_type, - STATE(2302), 4, + STATE(2699), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(2303), 12, + STATE(2700), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -278362,55 +278414,55 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [104884] = 22, + [104748] = 22, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(565), 1, + ACTIONS(3570), 1, sym_identifier, - ACTIONS(571), 1, + ACTIONS(3572), 1, + anon_sym_LPAREN, + ACTIONS(3574), 1, anon_sym_fn, - ACTIONS(575), 1, + ACTIONS(3576), 1, + anon_sym_STAR, + ACTIONS(3578), 1, anon_sym_struct, - ACTIONS(585), 1, + ACTIONS(3588), 1, anon_sym_shared, - ACTIONS(589), 1, + ACTIONS(3590), 1, + anon_sym_map_LBRACK, + ACTIONS(3592), 1, anon_sym_chan, - ACTIONS(591), 1, + ACTIONS(3594), 1, anon_sym_thread, - ACTIONS(593), 1, + ACTIONS(3596), 1, anon_sym_atomic, - ACTIONS(5700), 1, - anon_sym_LPAREN, - ACTIONS(5702), 1, - anon_sym_STAR, - ACTIONS(5704), 1, + ACTIONS(5814), 1, anon_sym_QMARK, - ACTIONS(5706), 1, + ACTIONS(5816), 1, anon_sym_BANG, - ACTIONS(5708), 1, + ACTIONS(5818), 1, anon_sym_LBRACK2, - ACTIONS(5710), 1, + ACTIONS(5820), 1, anon_sym_AMP, - ACTIONS(5712), 1, - anon_sym_map_LBRACK, - STATE(475), 1, + STATE(1311), 1, sym_plain_type, - STATE(4403), 1, + STATE(4328), 1, sym_reference_expression, - STATE(252), 2, + STATE(1288), 2, sym_type_reference_expression, sym_qualified_type, STATE(3063), 2, sym_line_comment, sym_block_comment, - STATE(445), 4, + STATE(1293), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(448), 12, + STATE(1303), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -278423,55 +278475,55 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [104967] = 22, + [104831] = 22, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(607), 1, - anon_sym_struct, - ACTIONS(3586), 1, - anon_sym_LPAREN, - ACTIONS(3945), 1, + ACTIONS(3570), 1, sym_identifier, - ACTIONS(3947), 1, + ACTIONS(3572), 1, + anon_sym_LPAREN, + ACTIONS(3574), 1, anon_sym_fn, - ACTIONS(3949), 1, + ACTIONS(3576), 1, anon_sym_STAR, - ACTIONS(3959), 1, + ACTIONS(3578), 1, + anon_sym_struct, + ACTIONS(3588), 1, anon_sym_shared, - ACTIONS(3961), 1, + ACTIONS(3590), 1, anon_sym_map_LBRACK, - ACTIONS(3963), 1, + ACTIONS(3592), 1, anon_sym_chan, - ACTIONS(3965), 1, + ACTIONS(3594), 1, anon_sym_thread, - ACTIONS(3967), 1, + ACTIONS(3596), 1, anon_sym_atomic, - ACTIONS(5736), 1, + ACTIONS(5814), 1, anon_sym_QMARK, - ACTIONS(5738), 1, + ACTIONS(5816), 1, anon_sym_BANG, - ACTIONS(5740), 1, + ACTIONS(5818), 1, anon_sym_LBRACK2, - ACTIONS(5742), 1, + ACTIONS(5820), 1, anon_sym_AMP, - STATE(2368), 1, + STATE(1312), 1, sym_plain_type, - STATE(4495), 1, + STATE(4328), 1, sym_reference_expression, - STATE(2283), 2, + STATE(1288), 2, sym_type_reference_expression, sym_qualified_type, STATE(3064), 2, sym_line_comment, sym_block_comment, - STATE(2302), 4, + STATE(1293), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(2303), 12, + STATE(1303), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -278484,55 +278536,55 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [105050] = 22, + [104914] = 22, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(3917), 1, + ACTIONS(1195), 1, sym_identifier, - ACTIONS(3921), 1, + ACTIONS(1199), 1, anon_sym_fn, - ACTIONS(3925), 1, + ACTIONS(1203), 1, anon_sym_struct, - ACTIONS(3935), 1, + ACTIONS(1213), 1, anon_sym_shared, - ACTIONS(3939), 1, + ACTIONS(1217), 1, anon_sym_chan, - ACTIONS(3941), 1, + ACTIONS(1219), 1, anon_sym_thread, - ACTIONS(3943), 1, + ACTIONS(1221), 1, anon_sym_atomic, - ACTIONS(5762), 1, + ACTIONS(5742), 1, anon_sym_LPAREN, - ACTIONS(5764), 1, + ACTIONS(5744), 1, anon_sym_STAR, - ACTIONS(5766), 1, + ACTIONS(5746), 1, anon_sym_QMARK, - ACTIONS(5768), 1, + ACTIONS(5748), 1, anon_sym_BANG, - ACTIONS(5770), 1, + ACTIONS(5750), 1, anon_sym_LBRACK2, - ACTIONS(5772), 1, + ACTIONS(5752), 1, anon_sym_AMP, - ACTIONS(5774), 1, + ACTIONS(5754), 1, anon_sym_map_LBRACK, - STATE(2237), 1, + STATE(1077), 1, sym_plain_type, - STATE(4468), 1, + STATE(4349), 1, sym_reference_expression, - STATE(2140), 2, + STATE(985), 2, sym_type_reference_expression, sym_qualified_type, STATE(3065), 2, sym_line_comment, sym_block_comment, - STATE(2178), 4, + STATE(1066), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(2179), 12, + STATE(1030), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -278545,55 +278597,55 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [105133] = 22, + [104997] = 22, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(607), 1, - anon_sym_struct, - ACTIONS(3586), 1, - anon_sym_LPAREN, - ACTIONS(3945), 1, + ACTIONS(3570), 1, sym_identifier, - ACTIONS(3947), 1, + ACTIONS(3572), 1, + anon_sym_LPAREN, + ACTIONS(3574), 1, anon_sym_fn, - ACTIONS(3949), 1, + ACTIONS(3576), 1, anon_sym_STAR, - ACTIONS(3959), 1, + ACTIONS(3578), 1, + anon_sym_struct, + ACTIONS(3588), 1, anon_sym_shared, - ACTIONS(3961), 1, + ACTIONS(3590), 1, anon_sym_map_LBRACK, - ACTIONS(3963), 1, + ACTIONS(3592), 1, anon_sym_chan, - ACTIONS(3965), 1, + ACTIONS(3594), 1, anon_sym_thread, - ACTIONS(3967), 1, + ACTIONS(3596), 1, anon_sym_atomic, - ACTIONS(5736), 1, + ACTIONS(5814), 1, anon_sym_QMARK, - ACTIONS(5738), 1, + ACTIONS(5816), 1, anon_sym_BANG, - ACTIONS(5740), 1, + ACTIONS(5818), 1, anon_sym_LBRACK2, - ACTIONS(5742), 1, + ACTIONS(5820), 1, anon_sym_AMP, - STATE(2294), 1, + STATE(1313), 1, sym_plain_type, - STATE(4495), 1, + STATE(4328), 1, sym_reference_expression, - STATE(2283), 2, + STATE(1288), 2, sym_type_reference_expression, sym_qualified_type, STATE(3066), 2, sym_line_comment, sym_block_comment, - STATE(2302), 4, + STATE(1293), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(2303), 12, + STATE(1303), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -278606,55 +278658,55 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [105216] = 22, + [105080] = 22, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(607), 1, - anon_sym_struct, - ACTIONS(3586), 1, - anon_sym_LPAREN, - ACTIONS(3945), 1, + ACTIONS(3426), 1, sym_identifier, - ACTIONS(3947), 1, + ACTIONS(3430), 1, anon_sym_fn, - ACTIONS(3949), 1, - anon_sym_STAR, - ACTIONS(3959), 1, + ACTIONS(3434), 1, + anon_sym_struct, + ACTIONS(3444), 1, anon_sym_shared, - ACTIONS(3961), 1, - anon_sym_map_LBRACK, - ACTIONS(3963), 1, + ACTIONS(3448), 1, anon_sym_chan, - ACTIONS(3965), 1, + ACTIONS(3450), 1, anon_sym_thread, - ACTIONS(3967), 1, + ACTIONS(3452), 1, anon_sym_atomic, - ACTIONS(5736), 1, + ACTIONS(5800), 1, + anon_sym_LPAREN, + ACTIONS(5802), 1, + anon_sym_STAR, + ACTIONS(5804), 1, anon_sym_QMARK, - ACTIONS(5738), 1, + ACTIONS(5806), 1, anon_sym_BANG, - ACTIONS(5740), 1, + ACTIONS(5808), 1, anon_sym_LBRACK2, - ACTIONS(5742), 1, + ACTIONS(5810), 1, anon_sym_AMP, - STATE(2353), 1, + ACTIONS(5812), 1, + anon_sym_map_LBRACK, + STATE(3360), 1, sym_plain_type, - STATE(4495), 1, + STATE(4351), 1, sym_reference_expression, - STATE(2283), 2, - sym_type_reference_expression, - sym_qualified_type, STATE(3067), 2, sym_line_comment, sym_block_comment, - STATE(2302), 4, + STATE(3305), 2, + sym_type_reference_expression, + sym_qualified_type, + STATE(3362), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(2303), 12, + STATE(3340), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -278667,55 +278719,55 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [105299] = 22, + [105163] = 22, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(3596), 1, + ACTIONS(3698), 1, sym_identifier, - ACTIONS(3600), 1, + ACTIONS(3702), 1, anon_sym_fn, - ACTIONS(3604), 1, + ACTIONS(3706), 1, anon_sym_struct, - ACTIONS(3614), 1, + ACTIONS(3716), 1, anon_sym_shared, - ACTIONS(3618), 1, + ACTIONS(3720), 1, anon_sym_chan, - ACTIONS(3620), 1, + ACTIONS(3722), 1, anon_sym_thread, - ACTIONS(3622), 1, + ACTIONS(3724), 1, anon_sym_atomic, - ACTIONS(5568), 1, + ACTIONS(5682), 1, anon_sym_LPAREN, - ACTIONS(5572), 1, + ACTIONS(5684), 1, anon_sym_STAR, - ACTIONS(5574), 1, + ACTIONS(5686), 1, anon_sym_QMARK, - ACTIONS(5576), 1, + ACTIONS(5688), 1, anon_sym_BANG, - ACTIONS(5578), 1, + ACTIONS(5690), 1, anon_sym_LBRACK2, - ACTIONS(5580), 1, + ACTIONS(5692), 1, anon_sym_AMP, - ACTIONS(5582), 1, + ACTIONS(5694), 1, anon_sym_map_LBRACK, - STATE(1456), 1, + STATE(1809), 1, sym_plain_type, - STATE(4459), 1, + STATE(4454), 1, sym_reference_expression, - STATE(1402), 2, + STATE(1751), 2, sym_type_reference_expression, sym_qualified_type, STATE(3068), 2, sym_line_comment, sym_block_comment, - STATE(1418), 4, + STATE(1842), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(1419), 12, + STATE(1841), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -278728,55 +278780,55 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [105382] = 22, + [105246] = 22, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(4014), 1, + ACTIONS(3758), 1, sym_identifier, - ACTIONS(4018), 1, + ACTIONS(3760), 1, + anon_sym_LPAREN, + ACTIONS(3762), 1, anon_sym_fn, - ACTIONS(4022), 1, + ACTIONS(3766), 1, anon_sym_struct, - ACTIONS(4032), 1, + ACTIONS(3776), 1, anon_sym_shared, - ACTIONS(4036), 1, + ACTIONS(3778), 1, + anon_sym_map_LBRACK, + ACTIONS(3780), 1, anon_sym_chan, - ACTIONS(4038), 1, + ACTIONS(3782), 1, anon_sym_thread, - ACTIONS(4040), 1, + ACTIONS(3784), 1, anon_sym_atomic, - ACTIONS(5672), 1, - anon_sym_LPAREN, - ACTIONS(5674), 1, + ACTIONS(5732), 1, anon_sym_STAR, - ACTIONS(5676), 1, + ACTIONS(5734), 1, anon_sym_QMARK, - ACTIONS(5678), 1, + ACTIONS(5736), 1, anon_sym_BANG, - ACTIONS(5680), 1, + ACTIONS(5738), 1, anon_sym_LBRACK2, - ACTIONS(5682), 1, + ACTIONS(5740), 1, anon_sym_AMP, - ACTIONS(5684), 1, - anon_sym_map_LBRACK, - STATE(2598), 1, + STATE(2026), 1, sym_plain_type, - STATE(4388), 1, + STATE(4433), 1, sym_reference_expression, - STATE(2432), 2, + STATE(1899), 2, sym_type_reference_expression, sym_qualified_type, STATE(3069), 2, sym_line_comment, sym_block_comment, - STATE(2492), 4, + STATE(2006), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(2493), 12, + STATE(2005), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -278789,27 +278841,29 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [105465] = 22, + [105329] = 22, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(3917), 1, + ACTIONS(3789), 1, sym_identifier, - ACTIONS(3921), 1, + ACTIONS(3791), 1, + anon_sym_LPAREN, + ACTIONS(3793), 1, anon_sym_fn, - ACTIONS(3925), 1, + ACTIONS(3797), 1, anon_sym_struct, - ACTIONS(3935), 1, + ACTIONS(3807), 1, anon_sym_shared, - ACTIONS(3939), 1, + ACTIONS(3809), 1, + anon_sym_map_LBRACK, + ACTIONS(3811), 1, anon_sym_chan, - ACTIONS(3941), 1, + ACTIONS(3813), 1, anon_sym_thread, - ACTIONS(3943), 1, + ACTIONS(3815), 1, anon_sym_atomic, - ACTIONS(5762), 1, - anon_sym_LPAREN, ACTIONS(5764), 1, anon_sym_STAR, ACTIONS(5766), 1, @@ -278820,24 +278874,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, ACTIONS(5772), 1, anon_sym_AMP, - ACTIONS(5774), 1, - anon_sym_map_LBRACK, - STATE(2234), 1, + STATE(2043), 1, sym_plain_type, - STATE(4468), 1, + STATE(4370), 1, sym_reference_expression, - STATE(2140), 2, + STATE(1909), 2, sym_type_reference_expression, sym_qualified_type, STATE(3070), 2, sym_line_comment, sym_block_comment, - STATE(2178), 4, + STATE(1945), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(2179), 12, + STATE(1949), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -278850,55 +278902,55 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [105548] = 22, + [105412] = 22, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(3448), 1, + ACTIONS(3630), 1, sym_identifier, - ACTIONS(3452), 1, + ACTIONS(3634), 1, anon_sym_fn, - ACTIONS(3456), 1, + ACTIONS(3638), 1, anon_sym_struct, - ACTIONS(3466), 1, + ACTIONS(3648), 1, anon_sym_shared, - ACTIONS(3470), 1, + ACTIONS(3652), 1, anon_sym_chan, - ACTIONS(3472), 1, + ACTIONS(3654), 1, anon_sym_thread, - ACTIONS(3474), 1, + ACTIONS(3656), 1, anon_sym_atomic, - ACTIONS(5776), 1, + ACTIONS(5590), 1, anon_sym_LPAREN, - ACTIONS(5778), 1, + ACTIONS(5774), 1, anon_sym_STAR, - ACTIONS(5780), 1, + ACTIONS(5776), 1, anon_sym_QMARK, - ACTIONS(5782), 1, + ACTIONS(5778), 1, anon_sym_BANG, - ACTIONS(5784), 1, + ACTIONS(5780), 1, anon_sym_LBRACK2, - ACTIONS(5786), 1, + ACTIONS(5782), 1, anon_sym_AMP, - ACTIONS(5788), 1, + ACTIONS(5784), 1, anon_sym_map_LBRACK, - STATE(1229), 1, + STATE(1627), 1, sym_plain_type, - STATE(4409), 1, + STATE(4378), 1, sym_reference_expression, - STATE(1135), 2, + STATE(1631), 2, sym_type_reference_expression, sym_qualified_type, STATE(3071), 2, sym_line_comment, sym_block_comment, - STATE(1211), 4, + STATE(1647), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(1220), 12, + STATE(1667), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -278911,55 +278963,55 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [105631] = 22, + [105495] = 22, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(3596), 1, + ACTIONS(47), 1, + anon_sym_QMARK, + ACTIONS(85), 1, + anon_sym_map_LBRACK, + ACTIONS(87), 1, + anon_sym_chan, + ACTIONS(89), 1, + anon_sym_thread, + ACTIONS(91), 1, + anon_sym_atomic, + ACTIONS(565), 1, sym_identifier, - ACTIONS(3600), 1, + ACTIONS(571), 1, anon_sym_fn, - ACTIONS(3604), 1, + ACTIONS(575), 1, anon_sym_struct, - ACTIONS(3614), 1, + ACTIONS(583), 1, anon_sym_shared, - ACTIONS(3618), 1, - anon_sym_chan, - ACTIONS(3620), 1, - anon_sym_thread, - ACTIONS(3622), 1, - anon_sym_atomic, - ACTIONS(5568), 1, + ACTIONS(3564), 1, anon_sym_LPAREN, - ACTIONS(5572), 1, + ACTIONS(3566), 1, anon_sym_STAR, - ACTIONS(5574), 1, - anon_sym_QMARK, - ACTIONS(5576), 1, + ACTIONS(5308), 1, anon_sym_BANG, - ACTIONS(5578), 1, + ACTIONS(5310), 1, anon_sym_LBRACK2, - ACTIONS(5580), 1, + ACTIONS(5312), 1, anon_sym_AMP, - ACTIONS(5582), 1, - anon_sym_map_LBRACK, - STATE(1429), 1, - sym_plain_type, - STATE(4459), 1, + STATE(4498), 1, sym_reference_expression, - STATE(1402), 2, - sym_type_reference_expression, - sym_qualified_type, + STATE(4499), 1, + sym_plain_type, STATE(3072), 2, sym_line_comment, sym_block_comment, - STATE(1418), 4, + STATE(3460), 2, + sym_type_reference_expression, + sym_qualified_type, + STATE(2360), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(1419), 12, + STATE(2362), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -278972,55 +279024,55 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [105714] = 22, + [105578] = 22, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(3626), 1, + ACTIONS(3602), 1, sym_identifier, - ACTIONS(3630), 1, + ACTIONS(3606), 1, anon_sym_fn, - ACTIONS(3634), 1, + ACTIONS(3610), 1, anon_sym_struct, - ACTIONS(3644), 1, + ACTIONS(3620), 1, anon_sym_shared, - ACTIONS(3648), 1, + ACTIONS(3624), 1, anon_sym_chan, - ACTIONS(3650), 1, + ACTIONS(3626), 1, anon_sym_thread, - ACTIONS(3652), 1, + ACTIONS(3628), 1, anon_sym_atomic, - ACTIONS(5584), 1, + ACTIONS(5574), 1, anon_sym_LPAREN, - ACTIONS(5790), 1, + ACTIONS(5578), 1, anon_sym_STAR, - ACTIONS(5792), 1, + ACTIONS(5580), 1, anon_sym_QMARK, - ACTIONS(5794), 1, + ACTIONS(5582), 1, anon_sym_BANG, - ACTIONS(5796), 1, + ACTIONS(5584), 1, anon_sym_LBRACK2, - ACTIONS(5798), 1, + ACTIONS(5586), 1, anon_sym_AMP, - ACTIONS(5800), 1, + ACTIONS(5588), 1, anon_sym_map_LBRACK, - STATE(1662), 1, + STATE(1465), 1, sym_plain_type, - STATE(4323), 1, + STATE(4496), 1, sym_reference_expression, - STATE(1636), 2, + STATE(1401), 2, sym_type_reference_expression, sym_qualified_type, STATE(3073), 2, sym_line_comment, sym_block_comment, - STATE(1635), 4, + STATE(1444), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(1629), 12, + STATE(1445), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -279033,55 +279085,55 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [105797] = 22, + [105661] = 22, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(3917), 1, + ACTIONS(3602), 1, sym_identifier, - ACTIONS(3921), 1, + ACTIONS(3606), 1, anon_sym_fn, - ACTIONS(3925), 1, + ACTIONS(3610), 1, anon_sym_struct, - ACTIONS(3935), 1, + ACTIONS(3620), 1, anon_sym_shared, - ACTIONS(3939), 1, + ACTIONS(3624), 1, anon_sym_chan, - ACTIONS(3941), 1, + ACTIONS(3626), 1, anon_sym_thread, - ACTIONS(3943), 1, + ACTIONS(3628), 1, anon_sym_atomic, - ACTIONS(5762), 1, + ACTIONS(5574), 1, anon_sym_LPAREN, - ACTIONS(5764), 1, + ACTIONS(5578), 1, anon_sym_STAR, - ACTIONS(5766), 1, + ACTIONS(5580), 1, anon_sym_QMARK, - ACTIONS(5768), 1, + ACTIONS(5582), 1, anon_sym_BANG, - ACTIONS(5770), 1, + ACTIONS(5584), 1, anon_sym_LBRACK2, - ACTIONS(5772), 1, + ACTIONS(5586), 1, anon_sym_AMP, - ACTIONS(5774), 1, + ACTIONS(5588), 1, anon_sym_map_LBRACK, - STATE(2205), 1, + STATE(1461), 1, sym_plain_type, - STATE(4468), 1, + STATE(4496), 1, sym_reference_expression, - STATE(2140), 2, + STATE(1401), 2, sym_type_reference_expression, sym_qualified_type, STATE(3074), 2, sym_line_comment, sym_block_comment, - STATE(2178), 4, + STATE(1444), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(2179), 12, + STATE(1445), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -279094,55 +279146,55 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [105880] = 22, + [105744] = 22, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(3448), 1, + ACTIONS(3602), 1, sym_identifier, - ACTIONS(3452), 1, + ACTIONS(3606), 1, anon_sym_fn, - ACTIONS(3456), 1, + ACTIONS(3610), 1, anon_sym_struct, - ACTIONS(3466), 1, + ACTIONS(3620), 1, anon_sym_shared, - ACTIONS(3470), 1, + ACTIONS(3624), 1, anon_sym_chan, - ACTIONS(3472), 1, + ACTIONS(3626), 1, anon_sym_thread, - ACTIONS(3474), 1, + ACTIONS(3628), 1, anon_sym_atomic, - ACTIONS(5776), 1, + ACTIONS(5574), 1, anon_sym_LPAREN, - ACTIONS(5778), 1, + ACTIONS(5578), 1, anon_sym_STAR, - ACTIONS(5780), 1, + ACTIONS(5580), 1, anon_sym_QMARK, - ACTIONS(5782), 1, + ACTIONS(5582), 1, anon_sym_BANG, - ACTIONS(5784), 1, + ACTIONS(5584), 1, anon_sym_LBRACK2, - ACTIONS(5786), 1, + ACTIONS(5586), 1, anon_sym_AMP, - ACTIONS(5788), 1, + ACTIONS(5588), 1, anon_sym_map_LBRACK, - STATE(1235), 1, + STATE(1453), 1, sym_plain_type, - STATE(4409), 1, + STATE(4496), 1, sym_reference_expression, - STATE(1135), 2, + STATE(1401), 2, sym_type_reference_expression, sym_qualified_type, STATE(3075), 2, sym_line_comment, sym_block_comment, - STATE(1211), 4, + STATE(1444), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(1220), 12, + STATE(1445), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -279155,55 +279207,55 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [105963] = 22, + [105827] = 22, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(3448), 1, + ACTIONS(1195), 1, sym_identifier, - ACTIONS(3452), 1, + ACTIONS(1199), 1, anon_sym_fn, - ACTIONS(3456), 1, + ACTIONS(1203), 1, anon_sym_struct, - ACTIONS(3466), 1, + ACTIONS(1213), 1, anon_sym_shared, - ACTIONS(3470), 1, + ACTIONS(1217), 1, anon_sym_chan, - ACTIONS(3472), 1, + ACTIONS(1219), 1, anon_sym_thread, - ACTIONS(3474), 1, + ACTIONS(1221), 1, anon_sym_atomic, - ACTIONS(5776), 1, + ACTIONS(5742), 1, anon_sym_LPAREN, - ACTIONS(5778), 1, + ACTIONS(5744), 1, anon_sym_STAR, - ACTIONS(5780), 1, + ACTIONS(5746), 1, anon_sym_QMARK, - ACTIONS(5782), 1, + ACTIONS(5748), 1, anon_sym_BANG, - ACTIONS(5784), 1, + ACTIONS(5750), 1, anon_sym_LBRACK2, - ACTIONS(5786), 1, + ACTIONS(5752), 1, anon_sym_AMP, - ACTIONS(5788), 1, + ACTIONS(5754), 1, anon_sym_map_LBRACK, - STATE(1152), 1, + STATE(1047), 1, sym_plain_type, - STATE(4409), 1, + STATE(4349), 1, sym_reference_expression, - STATE(1135), 2, + STATE(985), 2, sym_type_reference_expression, sym_qualified_type, STATE(3076), 2, sym_line_comment, sym_block_comment, - STATE(1211), 4, + STATE(1066), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(1220), 12, + STATE(1030), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -279216,55 +279268,55 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [106046] = 22, + [105910] = 22, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(3755), 1, + ACTIONS(3630), 1, sym_identifier, - ACTIONS(3757), 1, - anon_sym_LPAREN, - ACTIONS(3759), 1, + ACTIONS(3634), 1, anon_sym_fn, - ACTIONS(3763), 1, + ACTIONS(3638), 1, anon_sym_struct, - ACTIONS(3773), 1, + ACTIONS(3648), 1, anon_sym_shared, - ACTIONS(3775), 1, - anon_sym_map_LBRACK, - ACTIONS(3777), 1, + ACTIONS(3652), 1, anon_sym_chan, - ACTIONS(3779), 1, + ACTIONS(3654), 1, anon_sym_thread, - ACTIONS(3781), 1, + ACTIONS(3656), 1, anon_sym_atomic, - ACTIONS(5744), 1, + ACTIONS(5590), 1, + anon_sym_LPAREN, + ACTIONS(5774), 1, anon_sym_STAR, - ACTIONS(5746), 1, + ACTIONS(5776), 1, anon_sym_QMARK, - ACTIONS(5748), 1, + ACTIONS(5778), 1, anon_sym_BANG, - ACTIONS(5750), 1, + ACTIONS(5780), 1, anon_sym_LBRACK2, - ACTIONS(5752), 1, + ACTIONS(5782), 1, anon_sym_AMP, - STATE(2100), 1, + ACTIONS(5784), 1, + anon_sym_map_LBRACK, + STATE(1637), 1, sym_plain_type, - STATE(4376), 1, + STATE(4378), 1, sym_reference_expression, - STATE(1910), 2, + STATE(1631), 2, sym_type_reference_expression, sym_qualified_type, STATE(3077), 2, sym_line_comment, sym_block_comment, - STATE(2003), 4, + STATE(1647), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(2002), 12, + STATE(1667), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -279277,55 +279329,55 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [106129] = 22, + [105993] = 22, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(607), 1, - anon_sym_struct, - ACTIONS(3586), 1, - anon_sym_LPAREN, - ACTIONS(3945), 1, + ACTIONS(3630), 1, sym_identifier, - ACTIONS(3947), 1, + ACTIONS(3634), 1, anon_sym_fn, - ACTIONS(3949), 1, - anon_sym_STAR, - ACTIONS(3959), 1, + ACTIONS(3638), 1, + anon_sym_struct, + ACTIONS(3648), 1, anon_sym_shared, - ACTIONS(3961), 1, - anon_sym_map_LBRACK, - ACTIONS(3963), 1, + ACTIONS(3652), 1, anon_sym_chan, - ACTIONS(3965), 1, + ACTIONS(3654), 1, anon_sym_thread, - ACTIONS(3967), 1, + ACTIONS(3656), 1, anon_sym_atomic, - ACTIONS(5736), 1, + ACTIONS(5590), 1, + anon_sym_LPAREN, + ACTIONS(5774), 1, + anon_sym_STAR, + ACTIONS(5776), 1, anon_sym_QMARK, - ACTIONS(5738), 1, + ACTIONS(5778), 1, anon_sym_BANG, - ACTIONS(5740), 1, + ACTIONS(5780), 1, anon_sym_LBRACK2, - ACTIONS(5742), 1, + ACTIONS(5782), 1, anon_sym_AMP, - STATE(2407), 1, + ACTIONS(5784), 1, + anon_sym_map_LBRACK, + STATE(1666), 1, sym_plain_type, - STATE(4495), 1, + STATE(4378), 1, sym_reference_expression, - STATE(2283), 2, + STATE(1631), 2, sym_type_reference_expression, sym_qualified_type, STATE(3078), 2, sym_line_comment, sym_block_comment, - STATE(2302), 4, + STATE(1647), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(2303), 12, + STATE(1667), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -279338,55 +279390,55 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [106212] = 22, + [106076] = 22, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(47), 1, - anon_sym_QMARK, - ACTIONS(85), 1, - anon_sym_map_LBRACK, - ACTIONS(87), 1, - anon_sym_chan, - ACTIONS(89), 1, - anon_sym_thread, - ACTIONS(91), 1, - anon_sym_atomic, - ACTIONS(597), 1, + ACTIONS(3630), 1, sym_identifier, - ACTIONS(603), 1, + ACTIONS(3634), 1, anon_sym_fn, - ACTIONS(607), 1, + ACTIONS(3638), 1, anon_sym_struct, - ACTIONS(615), 1, + ACTIONS(3648), 1, anon_sym_shared, - ACTIONS(3586), 1, + ACTIONS(3652), 1, + anon_sym_chan, + ACTIONS(3654), 1, + anon_sym_thread, + ACTIONS(3656), 1, + anon_sym_atomic, + ACTIONS(5590), 1, anon_sym_LPAREN, - ACTIONS(3588), 1, + ACTIONS(5774), 1, anon_sym_STAR, - ACTIONS(5302), 1, + ACTIONS(5776), 1, + anon_sym_QMARK, + ACTIONS(5778), 1, anon_sym_BANG, - ACTIONS(5304), 1, + ACTIONS(5780), 1, anon_sym_LBRACK2, - ACTIONS(5306), 1, + ACTIONS(5782), 1, anon_sym_AMP, - STATE(3889), 1, + ACTIONS(5784), 1, + anon_sym_map_LBRACK, + STATE(1643), 1, sym_plain_type, - STATE(4495), 1, + STATE(4378), 1, sym_reference_expression, + STATE(1631), 2, + sym_type_reference_expression, + sym_qualified_type, STATE(3079), 2, sym_line_comment, sym_block_comment, - STATE(3541), 2, - sym_type_reference_expression, - sym_qualified_type, - STATE(2302), 4, + STATE(1647), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(2303), 12, + STATE(1667), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -279399,55 +279451,55 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [106295] = 22, + [106159] = 22, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(3917), 1, + ACTIONS(575), 1, + anon_sym_struct, + ACTIONS(3564), 1, + anon_sym_LPAREN, + ACTIONS(3953), 1, sym_identifier, - ACTIONS(3921), 1, + ACTIONS(3955), 1, anon_sym_fn, - ACTIONS(3925), 1, - anon_sym_struct, - ACTIONS(3935), 1, + ACTIONS(3957), 1, + anon_sym_STAR, + ACTIONS(3967), 1, anon_sym_shared, - ACTIONS(3939), 1, + ACTIONS(3969), 1, + anon_sym_map_LBRACK, + ACTIONS(3971), 1, anon_sym_chan, - ACTIONS(3941), 1, + ACTIONS(3973), 1, anon_sym_thread, - ACTIONS(3943), 1, + ACTIONS(3975), 1, anon_sym_atomic, - ACTIONS(5762), 1, - anon_sym_LPAREN, - ACTIONS(5764), 1, - anon_sym_STAR, - ACTIONS(5766), 1, + ACTIONS(5724), 1, anon_sym_QMARK, - ACTIONS(5768), 1, + ACTIONS(5726), 1, anon_sym_BANG, - ACTIONS(5770), 1, + ACTIONS(5728), 1, anon_sym_LBRACK2, - ACTIONS(5772), 1, + ACTIONS(5730), 1, anon_sym_AMP, - ACTIONS(5774), 1, - anon_sym_map_LBRACK, - STATE(2204), 1, + STATE(2336), 1, sym_plain_type, - STATE(4468), 1, + STATE(4498), 1, sym_reference_expression, - STATE(2140), 2, + STATE(2283), 2, sym_type_reference_expression, sym_qualified_type, STATE(3080), 2, sym_line_comment, sym_block_comment, - STATE(2178), 4, + STATE(2360), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(2179), 12, + STATE(2362), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -279460,55 +279512,55 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [106378] = 22, + [106242] = 22, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(3917), 1, + ACTIONS(575), 1, + anon_sym_struct, + ACTIONS(3564), 1, + anon_sym_LPAREN, + ACTIONS(3953), 1, sym_identifier, - ACTIONS(3921), 1, + ACTIONS(3955), 1, anon_sym_fn, - ACTIONS(3925), 1, - anon_sym_struct, - ACTIONS(3935), 1, + ACTIONS(3957), 1, + anon_sym_STAR, + ACTIONS(3967), 1, anon_sym_shared, - ACTIONS(3939), 1, + ACTIONS(3969), 1, + anon_sym_map_LBRACK, + ACTIONS(3971), 1, anon_sym_chan, - ACTIONS(3941), 1, + ACTIONS(3973), 1, anon_sym_thread, - ACTIONS(3943), 1, + ACTIONS(3975), 1, anon_sym_atomic, - ACTIONS(5762), 1, - anon_sym_LPAREN, - ACTIONS(5764), 1, - anon_sym_STAR, - ACTIONS(5766), 1, + ACTIONS(5724), 1, anon_sym_QMARK, - ACTIONS(5768), 1, + ACTIONS(5726), 1, anon_sym_BANG, - ACTIONS(5770), 1, + ACTIONS(5728), 1, anon_sym_LBRACK2, - ACTIONS(5772), 1, + ACTIONS(5730), 1, anon_sym_AMP, - ACTIONS(5774), 1, - anon_sym_map_LBRACK, - STATE(2203), 1, + STATE(2397), 1, sym_plain_type, - STATE(4468), 1, + STATE(4498), 1, sym_reference_expression, - STATE(2140), 2, + STATE(2283), 2, sym_type_reference_expression, sym_qualified_type, STATE(3081), 2, sym_line_comment, sym_block_comment, - STATE(2178), 4, + STATE(2360), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(2179), 12, + STATE(2362), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -279521,55 +279573,55 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [106461] = 22, + [106325] = 22, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(3690), 1, + ACTIONS(47), 1, + anon_sym_QMARK, + ACTIONS(85), 1, + anon_sym_map_LBRACK, + ACTIONS(87), 1, + anon_sym_chan, + ACTIONS(89), 1, + anon_sym_thread, + ACTIONS(91), 1, + anon_sym_atomic, + ACTIONS(565), 1, sym_identifier, - ACTIONS(3694), 1, + ACTIONS(571), 1, anon_sym_fn, - ACTIONS(3698), 1, + ACTIONS(575), 1, anon_sym_struct, - ACTIONS(3708), 1, + ACTIONS(583), 1, anon_sym_shared, - ACTIONS(3712), 1, - anon_sym_chan, - ACTIONS(3714), 1, - anon_sym_thread, - ACTIONS(3716), 1, - anon_sym_atomic, - ACTIONS(5714), 1, + ACTIONS(3564), 1, anon_sym_LPAREN, - ACTIONS(5716), 1, + ACTIONS(3566), 1, anon_sym_STAR, - ACTIONS(5718), 1, - anon_sym_QMARK, - ACTIONS(5720), 1, + ACTIONS(5308), 1, anon_sym_BANG, - ACTIONS(5722), 1, + ACTIONS(5310), 1, anon_sym_LBRACK2, - ACTIONS(5724), 1, + ACTIONS(5312), 1, anon_sym_AMP, - ACTIONS(5726), 1, - anon_sym_map_LBRACK, - STATE(1824), 1, + STATE(3979), 1, sym_plain_type, - STATE(4451), 1, + STATE(4498), 1, sym_reference_expression, - STATE(1754), 2, - sym_type_reference_expression, - sym_qualified_type, STATE(3082), 2, sym_line_comment, sym_block_comment, - STATE(1844), 4, + STATE(3460), 2, + sym_type_reference_expression, + sym_qualified_type, + STATE(2360), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(1791), 12, + STATE(2362), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -279582,55 +279634,55 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [106544] = 22, + [106408] = 22, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(1191), 1, - sym_identifier, ACTIONS(1195), 1, - anon_sym_fn, + sym_identifier, ACTIONS(1199), 1, + anon_sym_fn, + ACTIONS(1203), 1, anon_sym_struct, - ACTIONS(1209), 1, - anon_sym_shared, ACTIONS(1213), 1, + anon_sym_shared, + ACTIONS(1217), 1, anon_sym_chan, - ACTIONS(1215), 1, + ACTIONS(1219), 1, anon_sym_thread, - ACTIONS(1217), 1, + ACTIONS(1221), 1, anon_sym_atomic, - ACTIONS(5686), 1, + ACTIONS(5742), 1, anon_sym_LPAREN, - ACTIONS(5688), 1, + ACTIONS(5744), 1, anon_sym_STAR, - ACTIONS(5690), 1, + ACTIONS(5746), 1, anon_sym_QMARK, - ACTIONS(5692), 1, + ACTIONS(5748), 1, anon_sym_BANG, - ACTIONS(5694), 1, + ACTIONS(5750), 1, anon_sym_LBRACK2, - ACTIONS(5696), 1, + ACTIONS(5752), 1, anon_sym_AMP, - ACTIONS(5698), 1, + ACTIONS(5754), 1, anon_sym_map_LBRACK, - STATE(1070), 1, + STATE(1040), 1, sym_plain_type, - STATE(4365), 1, + STATE(4349), 1, sym_reference_expression, - STATE(990), 2, + STATE(985), 2, sym_type_reference_expression, sym_qualified_type, STATE(3083), 2, sym_line_comment, sym_block_comment, - STATE(1020), 4, + STATE(1066), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(1019), 12, + STATE(1030), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -279643,55 +279695,55 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [106627] = 22, + [106491] = 22, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(47), 1, - anon_sym_QMARK, - ACTIONS(85), 1, - anon_sym_map_LBRACK, - ACTIONS(87), 1, - anon_sym_chan, - ACTIONS(89), 1, - anon_sym_thread, - ACTIONS(91), 1, - anon_sym_atomic, - ACTIONS(597), 1, + ACTIONS(3758), 1, sym_identifier, - ACTIONS(603), 1, + ACTIONS(3760), 1, + anon_sym_LPAREN, + ACTIONS(3762), 1, anon_sym_fn, - ACTIONS(607), 1, + ACTIONS(3766), 1, anon_sym_struct, - ACTIONS(615), 1, + ACTIONS(3776), 1, anon_sym_shared, - ACTIONS(3586), 1, - anon_sym_LPAREN, - ACTIONS(3588), 1, + ACTIONS(3778), 1, + anon_sym_map_LBRACK, + ACTIONS(3780), 1, + anon_sym_chan, + ACTIONS(3782), 1, + anon_sym_thread, + ACTIONS(3784), 1, + anon_sym_atomic, + ACTIONS(5732), 1, anon_sym_STAR, - ACTIONS(5302), 1, + ACTIONS(5734), 1, + anon_sym_QMARK, + ACTIONS(5736), 1, anon_sym_BANG, - ACTIONS(5304), 1, + ACTIONS(5738), 1, anon_sym_LBRACK2, - ACTIONS(5306), 1, + ACTIONS(5740), 1, anon_sym_AMP, - STATE(4313), 1, + STATE(2021), 1, sym_plain_type, - STATE(4495), 1, + STATE(4433), 1, sym_reference_expression, + STATE(1899), 2, + sym_type_reference_expression, + sym_qualified_type, STATE(3084), 2, sym_line_comment, sym_block_comment, - STATE(3541), 2, - sym_type_reference_expression, - sym_qualified_type, - STATE(2302), 4, + STATE(2006), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(2303), 12, + STATE(2005), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -279704,55 +279756,55 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [106710] = 22, + [106574] = 22, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(3626), 1, + ACTIONS(3602), 1, sym_identifier, - ACTIONS(3630), 1, + ACTIONS(3606), 1, anon_sym_fn, - ACTIONS(3634), 1, + ACTIONS(3610), 1, anon_sym_struct, - ACTIONS(3644), 1, + ACTIONS(3620), 1, anon_sym_shared, - ACTIONS(3648), 1, + ACTIONS(3624), 1, anon_sym_chan, - ACTIONS(3650), 1, + ACTIONS(3626), 1, anon_sym_thread, - ACTIONS(3652), 1, + ACTIONS(3628), 1, anon_sym_atomic, - ACTIONS(5584), 1, + ACTIONS(5574), 1, anon_sym_LPAREN, - ACTIONS(5790), 1, + ACTIONS(5578), 1, anon_sym_STAR, - ACTIONS(5792), 1, + ACTIONS(5580), 1, anon_sym_QMARK, - ACTIONS(5794), 1, + ACTIONS(5582), 1, anon_sym_BANG, - ACTIONS(5796), 1, + ACTIONS(5584), 1, anon_sym_LBRACK2, - ACTIONS(5798), 1, + ACTIONS(5586), 1, anon_sym_AMP, - ACTIONS(5800), 1, + ACTIONS(5588), 1, anon_sym_map_LBRACK, - STATE(1645), 1, + STATE(1452), 1, sym_plain_type, - STATE(4323), 1, + STATE(4496), 1, sym_reference_expression, - STATE(1636), 2, + STATE(1401), 2, sym_type_reference_expression, sym_qualified_type, STATE(3085), 2, sym_line_comment, sym_block_comment, - STATE(1635), 4, + STATE(1444), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(1629), 12, + STATE(1445), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -279765,55 +279817,55 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [106793] = 22, + [106657] = 22, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(47), 1, - anon_sym_QMARK, - ACTIONS(85), 1, - anon_sym_map_LBRACK, - ACTIONS(87), 1, - anon_sym_chan, - ACTIONS(89), 1, - anon_sym_thread, - ACTIONS(91), 1, - anon_sym_atomic, - ACTIONS(597), 1, + ACTIONS(3426), 1, sym_identifier, - ACTIONS(603), 1, + ACTIONS(3430), 1, anon_sym_fn, - ACTIONS(607), 1, + ACTIONS(3434), 1, anon_sym_struct, - ACTIONS(615), 1, + ACTIONS(3444), 1, anon_sym_shared, - ACTIONS(3586), 1, + ACTIONS(3448), 1, + anon_sym_chan, + ACTIONS(3450), 1, + anon_sym_thread, + ACTIONS(3452), 1, + anon_sym_atomic, + ACTIONS(5800), 1, anon_sym_LPAREN, - ACTIONS(3588), 1, + ACTIONS(5802), 1, anon_sym_STAR, - ACTIONS(5302), 1, + ACTIONS(5804), 1, + anon_sym_QMARK, + ACTIONS(5806), 1, anon_sym_BANG, - ACTIONS(5304), 1, + ACTIONS(5808), 1, anon_sym_LBRACK2, - ACTIONS(5306), 1, + ACTIONS(5810), 1, anon_sym_AMP, - STATE(4364), 1, + ACTIONS(5812), 1, + anon_sym_map_LBRACK, + STATE(3339), 1, sym_plain_type, - STATE(4495), 1, + STATE(4351), 1, sym_reference_expression, STATE(3086), 2, sym_line_comment, sym_block_comment, - STATE(3541), 2, + STATE(3305), 2, sym_type_reference_expression, sym_qualified_type, - STATE(2302), 4, + STATE(3362), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(2303), 12, + STATE(3340), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -279826,55 +279878,55 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [106876] = 22, + [106740] = 22, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(565), 1, - sym_identifier, - ACTIONS(571), 1, - anon_sym_fn, ACTIONS(575), 1, anon_sym_struct, - ACTIONS(585), 1, + ACTIONS(3564), 1, + anon_sym_LPAREN, + ACTIONS(3953), 1, + sym_identifier, + ACTIONS(3955), 1, + anon_sym_fn, + ACTIONS(3957), 1, + anon_sym_STAR, + ACTIONS(3967), 1, anon_sym_shared, - ACTIONS(589), 1, + ACTIONS(3969), 1, + anon_sym_map_LBRACK, + ACTIONS(3971), 1, anon_sym_chan, - ACTIONS(591), 1, + ACTIONS(3973), 1, anon_sym_thread, - ACTIONS(593), 1, + ACTIONS(3975), 1, anon_sym_atomic, - ACTIONS(5700), 1, - anon_sym_LPAREN, - ACTIONS(5702), 1, - anon_sym_STAR, - ACTIONS(5704), 1, + ACTIONS(5724), 1, anon_sym_QMARK, - ACTIONS(5706), 1, + ACTIONS(5726), 1, anon_sym_BANG, - ACTIONS(5708), 1, + ACTIONS(5728), 1, anon_sym_LBRACK2, - ACTIONS(5710), 1, + ACTIONS(5730), 1, anon_sym_AMP, - ACTIONS(5712), 1, - anon_sym_map_LBRACK, - STATE(484), 1, + STATE(2342), 1, sym_plain_type, - STATE(4403), 1, + STATE(4498), 1, sym_reference_expression, - STATE(252), 2, + STATE(2283), 2, sym_type_reference_expression, sym_qualified_type, STATE(3087), 2, sym_line_comment, sym_block_comment, - STATE(445), 4, + STATE(2360), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(448), 12, + STATE(2362), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -279887,55 +279939,55 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [106959] = 22, + [106823] = 22, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(1191), 1, - sym_identifier, ACTIONS(1195), 1, - anon_sym_fn, + sym_identifier, ACTIONS(1199), 1, + anon_sym_fn, + ACTIONS(1203), 1, anon_sym_struct, - ACTIONS(1209), 1, - anon_sym_shared, ACTIONS(1213), 1, + anon_sym_shared, + ACTIONS(1217), 1, anon_sym_chan, - ACTIONS(1215), 1, + ACTIONS(1219), 1, anon_sym_thread, - ACTIONS(1217), 1, + ACTIONS(1221), 1, anon_sym_atomic, - ACTIONS(5686), 1, + ACTIONS(5742), 1, anon_sym_LPAREN, - ACTIONS(5688), 1, + ACTIONS(5744), 1, anon_sym_STAR, - ACTIONS(5690), 1, + ACTIONS(5746), 1, anon_sym_QMARK, - ACTIONS(5692), 1, + ACTIONS(5748), 1, anon_sym_BANG, - ACTIONS(5694), 1, + ACTIONS(5750), 1, anon_sym_LBRACK2, - ACTIONS(5696), 1, + ACTIONS(5752), 1, anon_sym_AMP, - ACTIONS(5698), 1, + ACTIONS(5754), 1, anon_sym_map_LBRACK, - STATE(1080), 1, + STATE(1000), 1, sym_plain_type, - STATE(4365), 1, + STATE(4349), 1, sym_reference_expression, - STATE(990), 2, + STATE(985), 2, sym_type_reference_expression, sym_qualified_type, STATE(3088), 2, sym_line_comment, sym_block_comment, - STATE(1020), 4, + STATE(1066), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(1019), 12, + STATE(1030), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -279948,55 +280000,55 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [107042] = 22, + [106906] = 22, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(4014), 1, + ACTIONS(47), 1, + anon_sym_QMARK, + ACTIONS(85), 1, + anon_sym_map_LBRACK, + ACTIONS(87), 1, + anon_sym_chan, + ACTIONS(89), 1, + anon_sym_thread, + ACTIONS(91), 1, + anon_sym_atomic, + ACTIONS(565), 1, sym_identifier, - ACTIONS(4018), 1, + ACTIONS(571), 1, anon_sym_fn, - ACTIONS(4022), 1, + ACTIONS(575), 1, anon_sym_struct, - ACTIONS(4032), 1, + ACTIONS(583), 1, anon_sym_shared, - ACTIONS(4036), 1, - anon_sym_chan, - ACTIONS(4038), 1, - anon_sym_thread, - ACTIONS(4040), 1, - anon_sym_atomic, - ACTIONS(5672), 1, + ACTIONS(3564), 1, anon_sym_LPAREN, - ACTIONS(5674), 1, + ACTIONS(3566), 1, anon_sym_STAR, - ACTIONS(5676), 1, - anon_sym_QMARK, - ACTIONS(5678), 1, + ACTIONS(5308), 1, anon_sym_BANG, - ACTIONS(5680), 1, + ACTIONS(5310), 1, anon_sym_LBRACK2, - ACTIONS(5682), 1, + ACTIONS(5312), 1, anon_sym_AMP, - ACTIONS(5684), 1, - anon_sym_map_LBRACK, - STATE(2471), 1, + STATE(3991), 1, sym_plain_type, - STATE(4388), 1, + STATE(4498), 1, sym_reference_expression, - STATE(2432), 2, - sym_type_reference_expression, - sym_qualified_type, STATE(3089), 2, sym_line_comment, sym_block_comment, - STATE(2492), 4, + STATE(3460), 2, + sym_type_reference_expression, + sym_qualified_type, + STATE(2360), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(2493), 12, + STATE(2362), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -280009,55 +280061,55 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [107125] = 22, + [106989] = 22, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(4014), 1, + ACTIONS(3426), 1, sym_identifier, - ACTIONS(4018), 1, + ACTIONS(3430), 1, anon_sym_fn, - ACTIONS(4022), 1, + ACTIONS(3434), 1, anon_sym_struct, - ACTIONS(4032), 1, + ACTIONS(3444), 1, anon_sym_shared, - ACTIONS(4036), 1, + ACTIONS(3448), 1, anon_sym_chan, - ACTIONS(4038), 1, + ACTIONS(3450), 1, anon_sym_thread, - ACTIONS(4040), 1, + ACTIONS(3452), 1, anon_sym_atomic, - ACTIONS(5672), 1, + ACTIONS(5800), 1, anon_sym_LPAREN, - ACTIONS(5674), 1, + ACTIONS(5802), 1, anon_sym_STAR, - ACTIONS(5676), 1, + ACTIONS(5804), 1, anon_sym_QMARK, - ACTIONS(5678), 1, + ACTIONS(5806), 1, anon_sym_BANG, - ACTIONS(5680), 1, + ACTIONS(5808), 1, anon_sym_LBRACK2, - ACTIONS(5682), 1, + ACTIONS(5810), 1, anon_sym_AMP, - ACTIONS(5684), 1, + ACTIONS(5812), 1, anon_sym_map_LBRACK, - STATE(2465), 1, + STATE(3359), 1, sym_plain_type, - STATE(4388), 1, + STATE(4351), 1, sym_reference_expression, - STATE(2432), 2, - sym_type_reference_expression, - sym_qualified_type, STATE(3090), 2, sym_line_comment, sym_block_comment, - STATE(2492), 4, + STATE(3305), 2, + sym_type_reference_expression, + sym_qualified_type, + STATE(3362), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(2493), 12, + STATE(3340), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -280070,55 +280122,55 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [107208] = 22, + [107072] = 22, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(3690), 1, + ACTIONS(3758), 1, sym_identifier, - ACTIONS(3694), 1, + ACTIONS(3760), 1, + anon_sym_LPAREN, + ACTIONS(3762), 1, anon_sym_fn, - ACTIONS(3698), 1, + ACTIONS(3766), 1, anon_sym_struct, - ACTIONS(3708), 1, + ACTIONS(3776), 1, anon_sym_shared, - ACTIONS(3712), 1, + ACTIONS(3778), 1, + anon_sym_map_LBRACK, + ACTIONS(3780), 1, anon_sym_chan, - ACTIONS(3714), 1, + ACTIONS(3782), 1, anon_sym_thread, - ACTIONS(3716), 1, + ACTIONS(3784), 1, anon_sym_atomic, - ACTIONS(5714), 1, - anon_sym_LPAREN, - ACTIONS(5716), 1, + ACTIONS(5732), 1, anon_sym_STAR, - ACTIONS(5718), 1, + ACTIONS(5734), 1, anon_sym_QMARK, - ACTIONS(5720), 1, + ACTIONS(5736), 1, anon_sym_BANG, - ACTIONS(5722), 1, + ACTIONS(5738), 1, anon_sym_LBRACK2, - ACTIONS(5724), 1, + ACTIONS(5740), 1, anon_sym_AMP, - ACTIONS(5726), 1, - anon_sym_map_LBRACK, - STATE(1797), 1, + STATE(1963), 1, sym_plain_type, - STATE(4451), 1, + STATE(4433), 1, sym_reference_expression, - STATE(1754), 2, + STATE(1899), 2, sym_type_reference_expression, sym_qualified_type, STATE(3091), 2, sym_line_comment, sym_block_comment, - STATE(1844), 4, + STATE(2006), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(1791), 12, + STATE(2005), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -280131,55 +280183,55 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [107291] = 22, + [107155] = 22, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(4014), 1, + ACTIONS(3570), 1, sym_identifier, - ACTIONS(4018), 1, + ACTIONS(3572), 1, + anon_sym_LPAREN, + ACTIONS(3574), 1, anon_sym_fn, - ACTIONS(4022), 1, + ACTIONS(3576), 1, + anon_sym_STAR, + ACTIONS(3578), 1, anon_sym_struct, - ACTIONS(4032), 1, + ACTIONS(3588), 1, anon_sym_shared, - ACTIONS(4036), 1, + ACTIONS(3590), 1, + anon_sym_map_LBRACK, + ACTIONS(3592), 1, anon_sym_chan, - ACTIONS(4038), 1, + ACTIONS(3594), 1, anon_sym_thread, - ACTIONS(4040), 1, + ACTIONS(3596), 1, anon_sym_atomic, - ACTIONS(5672), 1, - anon_sym_LPAREN, - ACTIONS(5674), 1, - anon_sym_STAR, - ACTIONS(5676), 1, + ACTIONS(5814), 1, anon_sym_QMARK, - ACTIONS(5678), 1, + ACTIONS(5816), 1, anon_sym_BANG, - ACTIONS(5680), 1, + ACTIONS(5818), 1, anon_sym_LBRACK2, - ACTIONS(5682), 1, + ACTIONS(5820), 1, anon_sym_AMP, - ACTIONS(5684), 1, - anon_sym_map_LBRACK, - STATE(2483), 1, + STATE(1352), 1, sym_plain_type, - STATE(4388), 1, + STATE(4328), 1, sym_reference_expression, - STATE(2432), 2, + STATE(1288), 2, sym_type_reference_expression, sym_qualified_type, STATE(3092), 2, sym_line_comment, sym_block_comment, - STATE(2492), 4, + STATE(1293), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(2493), 12, + STATE(1303), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -280192,55 +280244,55 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [107374] = 22, + [107238] = 22, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(3626), 1, + ACTIONS(3789), 1, sym_identifier, - ACTIONS(3630), 1, + ACTIONS(3791), 1, + anon_sym_LPAREN, + ACTIONS(3793), 1, anon_sym_fn, - ACTIONS(3634), 1, + ACTIONS(3797), 1, anon_sym_struct, - ACTIONS(3644), 1, + ACTIONS(3807), 1, anon_sym_shared, - ACTIONS(3648), 1, + ACTIONS(3809), 1, + anon_sym_map_LBRACK, + ACTIONS(3811), 1, anon_sym_chan, - ACTIONS(3650), 1, + ACTIONS(3813), 1, anon_sym_thread, - ACTIONS(3652), 1, + ACTIONS(3815), 1, anon_sym_atomic, - ACTIONS(5584), 1, - anon_sym_LPAREN, - ACTIONS(5790), 1, + ACTIONS(5764), 1, anon_sym_STAR, - ACTIONS(5792), 1, + ACTIONS(5766), 1, anon_sym_QMARK, - ACTIONS(5794), 1, + ACTIONS(5768), 1, anon_sym_BANG, - ACTIONS(5796), 1, + ACTIONS(5770), 1, anon_sym_LBRACK2, - ACTIONS(5798), 1, + ACTIONS(5772), 1, anon_sym_AMP, - ACTIONS(5800), 1, - anon_sym_map_LBRACK, - STATE(1651), 1, + STATE(2050), 1, sym_plain_type, - STATE(4323), 1, + STATE(4370), 1, sym_reference_expression, - STATE(1636), 2, + STATE(1909), 2, sym_type_reference_expression, sym_qualified_type, STATE(3093), 2, sym_line_comment, sym_block_comment, - STATE(1635), 4, + STATE(1945), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(1629), 12, + STATE(1949), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -280253,55 +280305,55 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [107457] = 22, + [107321] = 22, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(1191), 1, + ACTIONS(575), 1, + anon_sym_struct, + ACTIONS(3564), 1, + anon_sym_LPAREN, + ACTIONS(3953), 1, sym_identifier, - ACTIONS(1195), 1, + ACTIONS(3955), 1, anon_sym_fn, - ACTIONS(1199), 1, - anon_sym_struct, - ACTIONS(1209), 1, + ACTIONS(3957), 1, + anon_sym_STAR, + ACTIONS(3967), 1, anon_sym_shared, - ACTIONS(1213), 1, + ACTIONS(3969), 1, + anon_sym_map_LBRACK, + ACTIONS(3971), 1, anon_sym_chan, - ACTIONS(1215), 1, + ACTIONS(3973), 1, anon_sym_thread, - ACTIONS(1217), 1, + ACTIONS(3975), 1, anon_sym_atomic, - ACTIONS(5686), 1, - anon_sym_LPAREN, - ACTIONS(5688), 1, - anon_sym_STAR, - ACTIONS(5690), 1, + ACTIONS(5724), 1, anon_sym_QMARK, - ACTIONS(5692), 1, + ACTIONS(5726), 1, anon_sym_BANG, - ACTIONS(5694), 1, + ACTIONS(5728), 1, anon_sym_LBRACK2, - ACTIONS(5696), 1, + ACTIONS(5730), 1, anon_sym_AMP, - ACTIONS(5698), 1, - anon_sym_map_LBRACK, - STATE(1005), 1, + STATE(2349), 1, sym_plain_type, - STATE(4365), 1, + STATE(4498), 1, sym_reference_expression, - STATE(990), 2, + STATE(2283), 2, sym_type_reference_expression, sym_qualified_type, STATE(3094), 2, sym_line_comment, sym_block_comment, - STATE(1020), 4, + STATE(2360), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(1019), 12, + STATE(2362), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -280314,55 +280366,55 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [107540] = 22, + [107404] = 22, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(4014), 1, + ACTIONS(3426), 1, sym_identifier, - ACTIONS(4018), 1, + ACTIONS(3430), 1, anon_sym_fn, - ACTIONS(4022), 1, + ACTIONS(3434), 1, anon_sym_struct, - ACTIONS(4032), 1, + ACTIONS(3444), 1, anon_sym_shared, - ACTIONS(4036), 1, + ACTIONS(3448), 1, anon_sym_chan, - ACTIONS(4038), 1, + ACTIONS(3450), 1, anon_sym_thread, - ACTIONS(4040), 1, + ACTIONS(3452), 1, anon_sym_atomic, - ACTIONS(5672), 1, + ACTIONS(5800), 1, anon_sym_LPAREN, - ACTIONS(5674), 1, + ACTIONS(5802), 1, anon_sym_STAR, - ACTIONS(5676), 1, + ACTIONS(5804), 1, anon_sym_QMARK, - ACTIONS(5678), 1, + ACTIONS(5806), 1, anon_sym_BANG, - ACTIONS(5680), 1, + ACTIONS(5808), 1, anon_sym_LBRACK2, - ACTIONS(5682), 1, + ACTIONS(5810), 1, anon_sym_AMP, - ACTIONS(5684), 1, + ACTIONS(5812), 1, anon_sym_map_LBRACK, - STATE(2564), 1, + STATE(3354), 1, sym_plain_type, - STATE(4388), 1, + STATE(4351), 1, sym_reference_expression, - STATE(2432), 2, - sym_type_reference_expression, - sym_qualified_type, STATE(3095), 2, sym_line_comment, sym_block_comment, - STATE(2492), 4, + STATE(3305), 2, + sym_type_reference_expression, + sym_qualified_type, + STATE(3362), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(2493), 12, + STATE(3340), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -280375,55 +280427,55 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [107623] = 22, + [107487] = 22, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(3420), 1, + ACTIONS(3789), 1, sym_identifier, - ACTIONS(3424), 1, + ACTIONS(3791), 1, + anon_sym_LPAREN, + ACTIONS(3793), 1, anon_sym_fn, - ACTIONS(3428), 1, + ACTIONS(3797), 1, anon_sym_struct, - ACTIONS(3438), 1, + ACTIONS(3807), 1, anon_sym_shared, - ACTIONS(3442), 1, + ACTIONS(3809), 1, + anon_sym_map_LBRACK, + ACTIONS(3811), 1, anon_sym_chan, - ACTIONS(3444), 1, + ACTIONS(3813), 1, anon_sym_thread, - ACTIONS(3446), 1, + ACTIONS(3815), 1, anon_sym_atomic, - ACTIONS(5802), 1, - anon_sym_LPAREN, - ACTIONS(5804), 1, + ACTIONS(5764), 1, anon_sym_STAR, - ACTIONS(5806), 1, + ACTIONS(5766), 1, anon_sym_QMARK, - ACTIONS(5808), 1, + ACTIONS(5768), 1, anon_sym_BANG, - ACTIONS(5810), 1, + ACTIONS(5770), 1, anon_sym_LBRACK2, - ACTIONS(5812), 1, + ACTIONS(5772), 1, anon_sym_AMP, - ACTIONS(5814), 1, - anon_sym_map_LBRACK, - STATE(3338), 1, + STATE(1986), 1, sym_plain_type, - STATE(4341), 1, + STATE(4370), 1, sym_reference_expression, + STATE(1909), 2, + sym_type_reference_expression, + sym_qualified_type, STATE(3096), 2, sym_line_comment, sym_block_comment, - STATE(3286), 2, - sym_type_reference_expression, - sym_qualified_type, - STATE(3339), 4, + STATE(1945), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(3349), 12, + STATE(1949), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -280436,55 +280488,55 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [107706] = 22, + [107570] = 22, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(3420), 1, + ACTIONS(575), 1, + anon_sym_struct, + ACTIONS(3564), 1, + anon_sym_LPAREN, + ACTIONS(3953), 1, sym_identifier, - ACTIONS(3424), 1, + ACTIONS(3955), 1, anon_sym_fn, - ACTIONS(3428), 1, - anon_sym_struct, - ACTIONS(3438), 1, + ACTIONS(3957), 1, + anon_sym_STAR, + ACTIONS(3967), 1, anon_sym_shared, - ACTIONS(3442), 1, + ACTIONS(3969), 1, + anon_sym_map_LBRACK, + ACTIONS(3971), 1, anon_sym_chan, - ACTIONS(3444), 1, + ACTIONS(3973), 1, anon_sym_thread, - ACTIONS(3446), 1, + ACTIONS(3975), 1, anon_sym_atomic, - ACTIONS(5802), 1, - anon_sym_LPAREN, - ACTIONS(5804), 1, - anon_sym_STAR, - ACTIONS(5806), 1, + ACTIONS(5724), 1, anon_sym_QMARK, - ACTIONS(5808), 1, + ACTIONS(5726), 1, anon_sym_BANG, - ACTIONS(5810), 1, + ACTIONS(5728), 1, anon_sym_LBRACK2, - ACTIONS(5812), 1, + ACTIONS(5730), 1, anon_sym_AMP, - ACTIONS(5814), 1, - anon_sym_map_LBRACK, - STATE(3360), 1, + STATE(2327), 1, sym_plain_type, - STATE(4341), 1, + STATE(4498), 1, sym_reference_expression, + STATE(2283), 2, + sym_type_reference_expression, + sym_qualified_type, STATE(3097), 2, sym_line_comment, sym_block_comment, - STATE(3286), 2, - sym_type_reference_expression, - sym_qualified_type, - STATE(3339), 4, + STATE(2360), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(3349), 12, + STATE(2362), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -280497,55 +280549,55 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [107789] = 22, + [107653] = 22, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(3420), 1, + ACTIONS(3426), 1, sym_identifier, - ACTIONS(3424), 1, + ACTIONS(3430), 1, anon_sym_fn, - ACTIONS(3428), 1, + ACTIONS(3434), 1, anon_sym_struct, - ACTIONS(3438), 1, + ACTIONS(3444), 1, anon_sym_shared, - ACTIONS(3442), 1, + ACTIONS(3448), 1, anon_sym_chan, - ACTIONS(3444), 1, + ACTIONS(3450), 1, anon_sym_thread, - ACTIONS(3446), 1, + ACTIONS(3452), 1, anon_sym_atomic, - ACTIONS(5802), 1, + ACTIONS(5800), 1, anon_sym_LPAREN, - ACTIONS(5804), 1, + ACTIONS(5802), 1, anon_sym_STAR, - ACTIONS(5806), 1, + ACTIONS(5804), 1, anon_sym_QMARK, - ACTIONS(5808), 1, + ACTIONS(5806), 1, anon_sym_BANG, - ACTIONS(5810), 1, + ACTIONS(5808), 1, anon_sym_LBRACK2, - ACTIONS(5812), 1, + ACTIONS(5810), 1, anon_sym_AMP, - ACTIONS(5814), 1, + ACTIONS(5812), 1, anon_sym_map_LBRACK, - STATE(3358), 1, + STATE(3350), 1, sym_plain_type, - STATE(4341), 1, + STATE(4351), 1, sym_reference_expression, STATE(3098), 2, sym_line_comment, sym_block_comment, - STATE(3286), 2, + STATE(3305), 2, sym_type_reference_expression, sym_qualified_type, - STATE(3339), 4, + STATE(3362), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(3349), 12, + STATE(3340), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -280558,55 +280610,55 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [107872] = 22, + [107736] = 22, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(4519), 1, + ACTIONS(3426), 1, sym_identifier, - ACTIONS(4521), 1, - anon_sym_LPAREN, - ACTIONS(4523), 1, + ACTIONS(3430), 1, anon_sym_fn, - ACTIONS(4525), 1, - anon_sym_STAR, - ACTIONS(4527), 1, + ACTIONS(3434), 1, anon_sym_struct, - ACTIONS(4537), 1, + ACTIONS(3444), 1, anon_sym_shared, - ACTIONS(4539), 1, - anon_sym_map_LBRACK, - ACTIONS(4541), 1, + ACTIONS(3448), 1, anon_sym_chan, - ACTIONS(4543), 1, + ACTIONS(3450), 1, anon_sym_thread, - ACTIONS(4545), 1, + ACTIONS(3452), 1, anon_sym_atomic, - ACTIONS(5754), 1, + ACTIONS(5800), 1, + anon_sym_LPAREN, + ACTIONS(5802), 1, + anon_sym_STAR, + ACTIONS(5804), 1, anon_sym_QMARK, - ACTIONS(5756), 1, + ACTIONS(5806), 1, anon_sym_BANG, - ACTIONS(5758), 1, + ACTIONS(5808), 1, anon_sym_LBRACK2, - ACTIONS(5760), 1, + ACTIONS(5810), 1, anon_sym_AMP, - STATE(2665), 1, + ACTIONS(5812), 1, + anon_sym_map_LBRACK, + STATE(3349), 1, sym_plain_type, - STATE(4476), 1, + STATE(4351), 1, sym_reference_expression, - STATE(2602), 2, - sym_type_reference_expression, - sym_qualified_type, STATE(3099), 2, sym_line_comment, sym_block_comment, - STATE(2696), 4, + STATE(3305), 2, + sym_type_reference_expression, + sym_qualified_type, + STATE(3362), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(2697), 12, + STATE(3340), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -280619,55 +280671,55 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [107955] = 22, + [107819] = 22, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(4519), 1, - sym_identifier, - ACTIONS(4521), 1, - anon_sym_LPAREN, - ACTIONS(4523), 1, - anon_sym_fn, - ACTIONS(4525), 1, - anon_sym_STAR, - ACTIONS(4527), 1, - anon_sym_struct, - ACTIONS(4537), 1, - anon_sym_shared, - ACTIONS(4539), 1, + ACTIONS(47), 1, + anon_sym_QMARK, + ACTIONS(85), 1, anon_sym_map_LBRACK, - ACTIONS(4541), 1, + ACTIONS(87), 1, anon_sym_chan, - ACTIONS(4543), 1, + ACTIONS(89), 1, anon_sym_thread, - ACTIONS(4545), 1, + ACTIONS(91), 1, anon_sym_atomic, - ACTIONS(5754), 1, - anon_sym_QMARK, - ACTIONS(5756), 1, + ACTIONS(565), 1, + sym_identifier, + ACTIONS(571), 1, + anon_sym_fn, + ACTIONS(575), 1, + anon_sym_struct, + ACTIONS(583), 1, + anon_sym_shared, + ACTIONS(3564), 1, + anon_sym_LPAREN, + ACTIONS(3566), 1, + anon_sym_STAR, + ACTIONS(5308), 1, anon_sym_BANG, - ACTIONS(5758), 1, + ACTIONS(5310), 1, anon_sym_LBRACK2, - ACTIONS(5760), 1, + ACTIONS(5312), 1, anon_sym_AMP, - STATE(2673), 1, + STATE(3989), 1, sym_plain_type, - STATE(4476), 1, + STATE(4498), 1, sym_reference_expression, - STATE(2602), 2, - sym_type_reference_expression, - sym_qualified_type, STATE(3100), 2, sym_line_comment, sym_block_comment, - STATE(2696), 4, + STATE(3460), 2, + sym_type_reference_expression, + sym_qualified_type, + STATE(2360), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(2697), 12, + STATE(2362), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -280680,55 +280732,55 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [108038] = 22, + [107902] = 22, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(3755), 1, - sym_identifier, - ACTIONS(3757), 1, + ACTIONS(575), 1, + anon_sym_struct, + ACTIONS(3564), 1, anon_sym_LPAREN, - ACTIONS(3759), 1, + ACTIONS(3953), 1, + sym_identifier, + ACTIONS(3955), 1, anon_sym_fn, - ACTIONS(3763), 1, - anon_sym_struct, - ACTIONS(3773), 1, + ACTIONS(3957), 1, + anon_sym_STAR, + ACTIONS(3967), 1, anon_sym_shared, - ACTIONS(3775), 1, + ACTIONS(3969), 1, anon_sym_map_LBRACK, - ACTIONS(3777), 1, + ACTIONS(3971), 1, anon_sym_chan, - ACTIONS(3779), 1, + ACTIONS(3973), 1, anon_sym_thread, - ACTIONS(3781), 1, + ACTIONS(3975), 1, anon_sym_atomic, - ACTIONS(5744), 1, - anon_sym_STAR, - ACTIONS(5746), 1, + ACTIONS(5724), 1, anon_sym_QMARK, - ACTIONS(5748), 1, + ACTIONS(5726), 1, anon_sym_BANG, - ACTIONS(5750), 1, + ACTIONS(5728), 1, anon_sym_LBRACK2, - ACTIONS(5752), 1, + ACTIONS(5730), 1, anon_sym_AMP, - STATE(1948), 1, + STATE(2332), 1, sym_plain_type, - STATE(4376), 1, + STATE(4498), 1, sym_reference_expression, - STATE(1910), 2, + STATE(2283), 2, sym_type_reference_expression, sym_qualified_type, STATE(3101), 2, sym_line_comment, sym_block_comment, - STATE(2003), 4, + STATE(2360), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(2002), 12, + STATE(2362), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -280741,55 +280793,55 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [108121] = 22, + [107985] = 22, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(3420), 1, + ACTIONS(3758), 1, sym_identifier, - ACTIONS(3634), 1, - anon_sym_struct, - ACTIONS(5484), 1, + ACTIONS(3760), 1, + anon_sym_LPAREN, + ACTIONS(3762), 1, anon_sym_fn, - ACTIONS(5496), 1, + ACTIONS(3766), 1, + anon_sym_struct, + ACTIONS(3776), 1, anon_sym_shared, - ACTIONS(5500), 1, + ACTIONS(3778), 1, + anon_sym_map_LBRACK, + ACTIONS(3780), 1, anon_sym_chan, - ACTIONS(5502), 1, + ACTIONS(3782), 1, anon_sym_thread, - ACTIONS(5504), 1, + ACTIONS(3784), 1, anon_sym_atomic, - ACTIONS(5584), 1, - anon_sym_LPAREN, - ACTIONS(5588), 1, + ACTIONS(5732), 1, anon_sym_STAR, - ACTIONS(5590), 1, + ACTIONS(5734), 1, anon_sym_QMARK, - ACTIONS(5592), 1, + ACTIONS(5736), 1, anon_sym_BANG, - ACTIONS(5594), 1, + ACTIONS(5738), 1, anon_sym_LBRACK2, - ACTIONS(5596), 1, + ACTIONS(5740), 1, anon_sym_AMP, - ACTIONS(5598), 1, - anon_sym_map_LBRACK, - STATE(1645), 1, + STATE(1978), 1, sym_plain_type, - STATE(4341), 1, + STATE(4433), 1, sym_reference_expression, + STATE(1899), 2, + sym_type_reference_expression, + sym_qualified_type, STATE(3102), 2, sym_line_comment, sym_block_comment, - STATE(3286), 2, - sym_type_reference_expression, - sym_qualified_type, - STATE(1635), 4, + STATE(2006), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(1629), 12, + STATE(2005), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -280802,55 +280854,55 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [108204] = 22, + [108068] = 22, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(1191), 1, + ACTIONS(47), 1, + anon_sym_QMARK, + ACTIONS(85), 1, + anon_sym_map_LBRACK, + ACTIONS(87), 1, + anon_sym_chan, + ACTIONS(89), 1, + anon_sym_thread, + ACTIONS(91), 1, + anon_sym_atomic, + ACTIONS(565), 1, sym_identifier, - ACTIONS(1195), 1, + ACTIONS(571), 1, anon_sym_fn, - ACTIONS(1199), 1, + ACTIONS(575), 1, anon_sym_struct, - ACTIONS(1209), 1, + ACTIONS(583), 1, anon_sym_shared, - ACTIONS(1213), 1, - anon_sym_chan, - ACTIONS(1215), 1, - anon_sym_thread, - ACTIONS(1217), 1, - anon_sym_atomic, - ACTIONS(5686), 1, + ACTIONS(3564), 1, anon_sym_LPAREN, - ACTIONS(5688), 1, + ACTIONS(3566), 1, anon_sym_STAR, - ACTIONS(5690), 1, - anon_sym_QMARK, - ACTIONS(5692), 1, + ACTIONS(5308), 1, anon_sym_BANG, - ACTIONS(5694), 1, + ACTIONS(5310), 1, anon_sym_LBRACK2, - ACTIONS(5696), 1, + ACTIONS(5312), 1, anon_sym_AMP, - ACTIONS(5698), 1, - anon_sym_map_LBRACK, - STATE(1016), 1, + STATE(2320), 1, sym_plain_type, - STATE(4365), 1, + STATE(4498), 1, sym_reference_expression, - STATE(990), 2, - sym_type_reference_expression, - sym_qualified_type, STATE(3103), 2, sym_line_comment, sym_block_comment, - STATE(1020), 4, + STATE(3460), 2, + sym_type_reference_expression, + sym_qualified_type, + STATE(2360), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(1019), 12, + STATE(2362), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -280863,55 +280915,55 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [108287] = 22, + [108151] = 22, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(47), 1, - anon_sym_QMARK, - ACTIONS(85), 1, - anon_sym_map_LBRACK, - ACTIONS(87), 1, - anon_sym_chan, - ACTIONS(89), 1, - anon_sym_thread, - ACTIONS(91), 1, - anon_sym_atomic, - ACTIONS(597), 1, + ACTIONS(3426), 1, sym_identifier, - ACTIONS(603), 1, + ACTIONS(3430), 1, anon_sym_fn, - ACTIONS(607), 1, + ACTIONS(3434), 1, anon_sym_struct, - ACTIONS(615), 1, + ACTIONS(3444), 1, anon_sym_shared, - ACTIONS(3586), 1, + ACTIONS(3448), 1, + anon_sym_chan, + ACTIONS(3450), 1, + anon_sym_thread, + ACTIONS(3452), 1, + anon_sym_atomic, + ACTIONS(5800), 1, anon_sym_LPAREN, - ACTIONS(3588), 1, + ACTIONS(5802), 1, anon_sym_STAR, - ACTIONS(5302), 1, + ACTIONS(5804), 1, + anon_sym_QMARK, + ACTIONS(5806), 1, anon_sym_BANG, - ACTIONS(5304), 1, + ACTIONS(5808), 1, anon_sym_LBRACK2, - ACTIONS(5306), 1, + ACTIONS(5810), 1, anon_sym_AMP, - STATE(3831), 1, + ACTIONS(5812), 1, + anon_sym_map_LBRACK, + STATE(3348), 1, sym_plain_type, - STATE(4495), 1, + STATE(4351), 1, sym_reference_expression, STATE(3104), 2, sym_line_comment, sym_block_comment, - STATE(3541), 2, + STATE(3305), 2, sym_type_reference_expression, sym_qualified_type, - STATE(2302), 4, + STATE(3362), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(2303), 12, + STATE(3340), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -280924,55 +280976,55 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [108370] = 22, + [108234] = 22, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(47), 1, - anon_sym_QMARK, - ACTIONS(85), 1, - anon_sym_map_LBRACK, - ACTIONS(87), 1, - anon_sym_chan, - ACTIONS(89), 1, - anon_sym_thread, - ACTIONS(91), 1, - anon_sym_atomic, - ACTIONS(597), 1, + ACTIONS(3758), 1, sym_identifier, - ACTIONS(603), 1, + ACTIONS(3760), 1, + anon_sym_LPAREN, + ACTIONS(3762), 1, anon_sym_fn, - ACTIONS(607), 1, + ACTIONS(3766), 1, anon_sym_struct, - ACTIONS(615), 1, + ACTIONS(3776), 1, anon_sym_shared, - ACTIONS(3586), 1, - anon_sym_LPAREN, - ACTIONS(3588), 1, + ACTIONS(3778), 1, + anon_sym_map_LBRACK, + ACTIONS(3780), 1, + anon_sym_chan, + ACTIONS(3782), 1, + anon_sym_thread, + ACTIONS(3784), 1, + anon_sym_atomic, + ACTIONS(5732), 1, anon_sym_STAR, - ACTIONS(5302), 1, + ACTIONS(5734), 1, + anon_sym_QMARK, + ACTIONS(5736), 1, anon_sym_BANG, - ACTIONS(5304), 1, + ACTIONS(5738), 1, anon_sym_LBRACK2, - ACTIONS(5306), 1, + ACTIONS(5740), 1, anon_sym_AMP, - STATE(4398), 1, + STATE(1916), 1, sym_plain_type, - STATE(4495), 1, + STATE(4433), 1, sym_reference_expression, + STATE(1899), 2, + sym_type_reference_expression, + sym_qualified_type, STATE(3105), 2, sym_line_comment, sym_block_comment, - STATE(3541), 2, - sym_type_reference_expression, - sym_qualified_type, - STATE(2302), 4, + STATE(2006), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(2303), 12, + STATE(2005), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -280985,7 +281037,7 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [108453] = 22, + [108317] = 22, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, @@ -281000,40 +281052,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_thread, ACTIONS(91), 1, anon_sym_atomic, - ACTIONS(597), 1, + ACTIONS(565), 1, sym_identifier, - ACTIONS(603), 1, + ACTIONS(571), 1, anon_sym_fn, - ACTIONS(607), 1, + ACTIONS(575), 1, anon_sym_struct, - ACTIONS(615), 1, + ACTIONS(583), 1, anon_sym_shared, - ACTIONS(3586), 1, + ACTIONS(3564), 1, anon_sym_LPAREN, - ACTIONS(3588), 1, + ACTIONS(3566), 1, anon_sym_STAR, - ACTIONS(5302), 1, + ACTIONS(5308), 1, anon_sym_BANG, - ACTIONS(5304), 1, + ACTIONS(5310), 1, anon_sym_LBRACK2, - ACTIONS(5306), 1, + ACTIONS(5312), 1, anon_sym_AMP, - STATE(4495), 1, - sym_reference_expression, - STATE(4626), 1, + STATE(3808), 1, sym_plain_type, + STATE(4498), 1, + sym_reference_expression, STATE(3106), 2, sym_line_comment, sym_block_comment, - STATE(3541), 2, + STATE(3460), 2, sym_type_reference_expression, sym_qualified_type, - STATE(2302), 4, + STATE(2360), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(2303), 12, + STATE(2362), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -281046,55 +281098,55 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [108536] = 22, + [108400] = 22, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(3626), 1, + ACTIONS(3570), 1, sym_identifier, - ACTIONS(3630), 1, + ACTIONS(3572), 1, + anon_sym_LPAREN, + ACTIONS(3574), 1, anon_sym_fn, - ACTIONS(3634), 1, + ACTIONS(3576), 1, + anon_sym_STAR, + ACTIONS(3578), 1, anon_sym_struct, - ACTIONS(3644), 1, + ACTIONS(3588), 1, anon_sym_shared, - ACTIONS(3648), 1, + ACTIONS(3590), 1, + anon_sym_map_LBRACK, + ACTIONS(3592), 1, anon_sym_chan, - ACTIONS(3650), 1, + ACTIONS(3594), 1, anon_sym_thread, - ACTIONS(3652), 1, + ACTIONS(3596), 1, anon_sym_atomic, - ACTIONS(5584), 1, - anon_sym_LPAREN, - ACTIONS(5790), 1, - anon_sym_STAR, - ACTIONS(5792), 1, + ACTIONS(5814), 1, anon_sym_QMARK, - ACTIONS(5794), 1, + ACTIONS(5816), 1, anon_sym_BANG, - ACTIONS(5796), 1, + ACTIONS(5818), 1, anon_sym_LBRACK2, - ACTIONS(5798), 1, + ACTIONS(5820), 1, anon_sym_AMP, - ACTIONS(5800), 1, - anon_sym_map_LBRACK, - STATE(1637), 1, + STATE(1363), 1, sym_plain_type, - STATE(4323), 1, + STATE(4328), 1, sym_reference_expression, - STATE(1636), 2, + STATE(1288), 2, sym_type_reference_expression, sym_qualified_type, STATE(3107), 2, sym_line_comment, sym_block_comment, - STATE(1635), 4, + STATE(1293), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(1629), 12, + STATE(1303), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -281107,55 +281159,55 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [108619] = 22, + [108483] = 22, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(3626), 1, + ACTIONS(47), 1, + anon_sym_QMARK, + ACTIONS(85), 1, + anon_sym_map_LBRACK, + ACTIONS(87), 1, + anon_sym_chan, + ACTIONS(89), 1, + anon_sym_thread, + ACTIONS(91), 1, + anon_sym_atomic, + ACTIONS(565), 1, sym_identifier, - ACTIONS(3630), 1, + ACTIONS(571), 1, anon_sym_fn, - ACTIONS(3634), 1, + ACTIONS(575), 1, anon_sym_struct, - ACTIONS(3644), 1, + ACTIONS(583), 1, anon_sym_shared, - ACTIONS(3648), 1, - anon_sym_chan, - ACTIONS(3650), 1, - anon_sym_thread, - ACTIONS(3652), 1, - anon_sym_atomic, - ACTIONS(5584), 1, + ACTIONS(3564), 1, anon_sym_LPAREN, - ACTIONS(5790), 1, + ACTIONS(3566), 1, anon_sym_STAR, - ACTIONS(5792), 1, - anon_sym_QMARK, - ACTIONS(5794), 1, + ACTIONS(5308), 1, anon_sym_BANG, - ACTIONS(5796), 1, + ACTIONS(5310), 1, anon_sym_LBRACK2, - ACTIONS(5798), 1, + ACTIONS(5312), 1, anon_sym_AMP, - ACTIONS(5800), 1, - anon_sym_map_LBRACK, - STATE(1652), 1, + STATE(4321), 1, sym_plain_type, - STATE(4323), 1, + STATE(4498), 1, sym_reference_expression, - STATE(1636), 2, - sym_type_reference_expression, - sym_qualified_type, STATE(3108), 2, sym_line_comment, sym_block_comment, - STATE(1635), 4, + STATE(3460), 2, + sym_type_reference_expression, + sym_qualified_type, + STATE(2360), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(1629), 12, + STATE(2362), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -281168,55 +281220,55 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [108702] = 22, + [108566] = 22, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(3420), 1, + ACTIONS(3570), 1, sym_identifier, - ACTIONS(3634), 1, - anon_sym_struct, - ACTIONS(5484), 1, + ACTIONS(3572), 1, + anon_sym_LPAREN, + ACTIONS(3574), 1, anon_sym_fn, - ACTIONS(5496), 1, + ACTIONS(3576), 1, + anon_sym_STAR, + ACTIONS(3578), 1, + anon_sym_struct, + ACTIONS(3588), 1, anon_sym_shared, - ACTIONS(5500), 1, + ACTIONS(3590), 1, + anon_sym_map_LBRACK, + ACTIONS(3592), 1, anon_sym_chan, - ACTIONS(5502), 1, + ACTIONS(3594), 1, anon_sym_thread, - ACTIONS(5504), 1, + ACTIONS(3596), 1, anon_sym_atomic, - ACTIONS(5584), 1, - anon_sym_LPAREN, - ACTIONS(5588), 1, - anon_sym_STAR, - ACTIONS(5590), 1, + ACTIONS(5814), 1, anon_sym_QMARK, - ACTIONS(5592), 1, + ACTIONS(5816), 1, anon_sym_BANG, - ACTIONS(5594), 1, + ACTIONS(5818), 1, anon_sym_LBRACK2, - ACTIONS(5596), 1, + ACTIONS(5820), 1, anon_sym_AMP, - ACTIONS(5598), 1, - anon_sym_map_LBRACK, - STATE(1662), 1, + STATE(1310), 1, sym_plain_type, - STATE(4341), 1, + STATE(4328), 1, sym_reference_expression, + STATE(1288), 2, + sym_type_reference_expression, + sym_qualified_type, STATE(3109), 2, sym_line_comment, sym_block_comment, - STATE(3286), 2, - sym_type_reference_expression, - sym_qualified_type, - STATE(1635), 4, + STATE(1293), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(1629), 12, + STATE(1303), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -281229,55 +281281,55 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [108785] = 22, + [108649] = 22, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(607), 1, - anon_sym_struct, - ACTIONS(3586), 1, - anon_sym_LPAREN, - ACTIONS(3945), 1, - sym_identifier, - ACTIONS(3947), 1, - anon_sym_fn, - ACTIONS(3949), 1, - anon_sym_STAR, - ACTIONS(3959), 1, - anon_sym_shared, - ACTIONS(3961), 1, + ACTIONS(47), 1, + anon_sym_QMARK, + ACTIONS(85), 1, anon_sym_map_LBRACK, - ACTIONS(3963), 1, + ACTIONS(87), 1, anon_sym_chan, - ACTIONS(3965), 1, + ACTIONS(89), 1, anon_sym_thread, - ACTIONS(3967), 1, + ACTIONS(91), 1, anon_sym_atomic, - ACTIONS(5736), 1, - anon_sym_QMARK, - ACTIONS(5738), 1, + ACTIONS(565), 1, + sym_identifier, + ACTIONS(571), 1, + anon_sym_fn, + ACTIONS(575), 1, + anon_sym_struct, + ACTIONS(583), 1, + anon_sym_shared, + ACTIONS(3564), 1, + anon_sym_LPAREN, + ACTIONS(3566), 1, + anon_sym_STAR, + ACTIONS(5308), 1, anon_sym_BANG, - ACTIONS(5740), 1, + ACTIONS(5310), 1, anon_sym_LBRACK2, - ACTIONS(5742), 1, + ACTIONS(5312), 1, anon_sym_AMP, - STATE(2822), 1, + STATE(3879), 1, sym_plain_type, - STATE(4495), 1, + STATE(4498), 1, sym_reference_expression, - STATE(2283), 2, - sym_type_reference_expression, - sym_qualified_type, STATE(3110), 2, sym_line_comment, sym_block_comment, - STATE(2302), 4, + STATE(3460), 2, + sym_type_reference_expression, + sym_qualified_type, + STATE(2360), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(2303), 12, + STATE(2362), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -281290,55 +281342,55 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [108868] = 22, + [108732] = 22, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(3626), 1, + ACTIONS(3602), 1, sym_identifier, - ACTIONS(3630), 1, + ACTIONS(3606), 1, anon_sym_fn, - ACTIONS(3634), 1, + ACTIONS(3610), 1, anon_sym_struct, - ACTIONS(3644), 1, + ACTIONS(3620), 1, anon_sym_shared, - ACTIONS(3648), 1, + ACTIONS(3624), 1, anon_sym_chan, - ACTIONS(3650), 1, + ACTIONS(3626), 1, anon_sym_thread, - ACTIONS(3652), 1, + ACTIONS(3628), 1, anon_sym_atomic, - ACTIONS(5584), 1, + ACTIONS(5574), 1, anon_sym_LPAREN, - ACTIONS(5790), 1, + ACTIONS(5578), 1, anon_sym_STAR, - ACTIONS(5792), 1, + ACTIONS(5580), 1, anon_sym_QMARK, - ACTIONS(5794), 1, + ACTIONS(5582), 1, anon_sym_BANG, - ACTIONS(5796), 1, + ACTIONS(5584), 1, anon_sym_LBRACK2, - ACTIONS(5798), 1, + ACTIONS(5586), 1, anon_sym_AMP, - ACTIONS(5800), 1, + ACTIONS(5588), 1, anon_sym_map_LBRACK, - STATE(1632), 1, + STATE(1470), 1, sym_plain_type, - STATE(4323), 1, + STATE(4496), 1, sym_reference_expression, - STATE(1636), 2, + STATE(1401), 2, sym_type_reference_expression, sym_qualified_type, STATE(3111), 2, sym_line_comment, sym_block_comment, - STATE(1635), 4, + STATE(1444), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(1629), 12, + STATE(1445), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -281351,55 +281403,55 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [108951] = 22, + [108815] = 22, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(3420), 1, + ACTIONS(3758), 1, sym_identifier, - ACTIONS(3424), 1, + ACTIONS(3760), 1, + anon_sym_LPAREN, + ACTIONS(3762), 1, anon_sym_fn, - ACTIONS(3428), 1, + ACTIONS(3766), 1, anon_sym_struct, - ACTIONS(3438), 1, + ACTIONS(3776), 1, anon_sym_shared, - ACTIONS(3442), 1, + ACTIONS(3778), 1, + anon_sym_map_LBRACK, + ACTIONS(3780), 1, anon_sym_chan, - ACTIONS(3444), 1, + ACTIONS(3782), 1, anon_sym_thread, - ACTIONS(3446), 1, + ACTIONS(3784), 1, anon_sym_atomic, - ACTIONS(5802), 1, - anon_sym_LPAREN, - ACTIONS(5804), 1, + ACTIONS(5732), 1, anon_sym_STAR, - ACTIONS(5806), 1, + ACTIONS(5734), 1, anon_sym_QMARK, - ACTIONS(5808), 1, + ACTIONS(5736), 1, anon_sym_BANG, - ACTIONS(5810), 1, + ACTIONS(5738), 1, anon_sym_LBRACK2, - ACTIONS(5812), 1, + ACTIONS(5740), 1, anon_sym_AMP, - ACTIONS(5814), 1, - anon_sym_map_LBRACK, - STATE(3348), 1, + STATE(2115), 1, sym_plain_type, - STATE(4341), 1, + STATE(4433), 1, sym_reference_expression, + STATE(1899), 2, + sym_type_reference_expression, + sym_qualified_type, STATE(3112), 2, sym_line_comment, sym_block_comment, - STATE(3286), 2, - sym_type_reference_expression, - sym_qualified_type, - STATE(3339), 4, + STATE(2006), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(3349), 12, + STATE(2005), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -281412,55 +281464,55 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [109034] = 22, + [108898] = 22, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(3626), 1, + ACTIONS(3758), 1, sym_identifier, - ACTIONS(3630), 1, + ACTIONS(3760), 1, + anon_sym_LPAREN, + ACTIONS(3762), 1, anon_sym_fn, - ACTIONS(3634), 1, + ACTIONS(3766), 1, anon_sym_struct, - ACTIONS(3644), 1, + ACTIONS(3776), 1, anon_sym_shared, - ACTIONS(3648), 1, + ACTIONS(3778), 1, + anon_sym_map_LBRACK, + ACTIONS(3780), 1, anon_sym_chan, - ACTIONS(3650), 1, + ACTIONS(3782), 1, anon_sym_thread, - ACTIONS(3652), 1, + ACTIONS(3784), 1, anon_sym_atomic, - ACTIONS(5584), 1, - anon_sym_LPAREN, - ACTIONS(5790), 1, + ACTIONS(5732), 1, anon_sym_STAR, - ACTIONS(5792), 1, + ACTIONS(5734), 1, anon_sym_QMARK, - ACTIONS(5794), 1, + ACTIONS(5736), 1, anon_sym_BANG, - ACTIONS(5796), 1, + ACTIONS(5738), 1, anon_sym_LBRACK2, - ACTIONS(5798), 1, + ACTIONS(5740), 1, anon_sym_AMP, - ACTIONS(5800), 1, - anon_sym_map_LBRACK, - STATE(1726), 1, + STATE(1935), 1, sym_plain_type, - STATE(4323), 1, + STATE(4433), 1, sym_reference_expression, - STATE(1636), 2, + STATE(1899), 2, sym_type_reference_expression, sym_qualified_type, STATE(3113), 2, sym_line_comment, sym_block_comment, - STATE(1635), 4, + STATE(2006), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(1629), 12, + STATE(2005), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -281473,55 +281525,55 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [109117] = 22, + [108981] = 22, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(3420), 1, + ACTIONS(3454), 1, sym_identifier, - ACTIONS(3424), 1, + ACTIONS(3458), 1, anon_sym_fn, - ACTIONS(3428), 1, + ACTIONS(3462), 1, anon_sym_struct, - ACTIONS(3438), 1, + ACTIONS(3472), 1, anon_sym_shared, - ACTIONS(3442), 1, + ACTIONS(3476), 1, anon_sym_chan, - ACTIONS(3444), 1, + ACTIONS(3478), 1, anon_sym_thread, - ACTIONS(3446), 1, + ACTIONS(3480), 1, anon_sym_atomic, - ACTIONS(5802), 1, + ACTIONS(5786), 1, anon_sym_LPAREN, - ACTIONS(5804), 1, + ACTIONS(5788), 1, anon_sym_STAR, - ACTIONS(5806), 1, + ACTIONS(5790), 1, anon_sym_QMARK, - ACTIONS(5808), 1, + ACTIONS(5792), 1, anon_sym_BANG, - ACTIONS(5810), 1, + ACTIONS(5794), 1, anon_sym_LBRACK2, - ACTIONS(5812), 1, + ACTIONS(5796), 1, anon_sym_AMP, - ACTIONS(5814), 1, + ACTIONS(5798), 1, anon_sym_map_LBRACK, - STATE(3357), 1, + STATE(1167), 1, sym_plain_type, - STATE(4341), 1, + STATE(4412), 1, sym_reference_expression, + STATE(1132), 2, + sym_type_reference_expression, + sym_qualified_type, STATE(3114), 2, sym_line_comment, sym_block_comment, - STATE(3286), 2, - sym_type_reference_expression, - sym_qualified_type, - STATE(3339), 4, + STATE(1214), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(3349), 12, + STATE(1225), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -281534,55 +281586,55 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [109200] = 22, + [109064] = 22, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(3626), 1, + ACTIONS(47), 1, + anon_sym_QMARK, + ACTIONS(85), 1, + anon_sym_map_LBRACK, + ACTIONS(87), 1, + anon_sym_chan, + ACTIONS(89), 1, + anon_sym_thread, + ACTIONS(91), 1, + anon_sym_atomic, + ACTIONS(565), 1, sym_identifier, - ACTIONS(3630), 1, + ACTIONS(571), 1, anon_sym_fn, - ACTIONS(3634), 1, + ACTIONS(575), 1, anon_sym_struct, - ACTIONS(3644), 1, + ACTIONS(583), 1, anon_sym_shared, - ACTIONS(3648), 1, - anon_sym_chan, - ACTIONS(3650), 1, - anon_sym_thread, - ACTIONS(3652), 1, - anon_sym_atomic, - ACTIONS(5584), 1, + ACTIONS(3564), 1, anon_sym_LPAREN, - ACTIONS(5790), 1, + ACTIONS(3566), 1, anon_sym_STAR, - ACTIONS(5792), 1, - anon_sym_QMARK, - ACTIONS(5794), 1, + ACTIONS(5308), 1, anon_sym_BANG, - ACTIONS(5796), 1, + ACTIONS(5310), 1, anon_sym_LBRACK2, - ACTIONS(5798), 1, + ACTIONS(5312), 1, anon_sym_AMP, - ACTIONS(5800), 1, - anon_sym_map_LBRACK, - STATE(1649), 1, - sym_plain_type, - STATE(4323), 1, + STATE(4498), 1, sym_reference_expression, - STATE(1636), 2, - sym_type_reference_expression, - sym_qualified_type, + STATE(4505), 1, + sym_plain_type, STATE(3115), 2, sym_line_comment, sym_block_comment, - STATE(1635), 4, + STATE(3460), 2, + sym_type_reference_expression, + sym_qualified_type, + STATE(2360), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(1629), 12, + STATE(2362), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -281595,55 +281647,55 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [109283] = 22, + [109147] = 22, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(3755), 1, + ACTIONS(3454), 1, sym_identifier, - ACTIONS(3757), 1, - anon_sym_LPAREN, - ACTIONS(3759), 1, + ACTIONS(3458), 1, anon_sym_fn, - ACTIONS(3763), 1, + ACTIONS(3462), 1, anon_sym_struct, - ACTIONS(3773), 1, + ACTIONS(3472), 1, anon_sym_shared, - ACTIONS(3775), 1, - anon_sym_map_LBRACK, - ACTIONS(3777), 1, + ACTIONS(3476), 1, anon_sym_chan, - ACTIONS(3779), 1, + ACTIONS(3478), 1, anon_sym_thread, - ACTIONS(3781), 1, + ACTIONS(3480), 1, anon_sym_atomic, - ACTIONS(5744), 1, + ACTIONS(5786), 1, + anon_sym_LPAREN, + ACTIONS(5788), 1, anon_sym_STAR, - ACTIONS(5746), 1, + ACTIONS(5790), 1, anon_sym_QMARK, - ACTIONS(5748), 1, + ACTIONS(5792), 1, anon_sym_BANG, - ACTIONS(5750), 1, + ACTIONS(5794), 1, anon_sym_LBRACK2, - ACTIONS(5752), 1, + ACTIONS(5796), 1, anon_sym_AMP, - STATE(1954), 1, + ACTIONS(5798), 1, + anon_sym_map_LBRACK, + STATE(1213), 1, sym_plain_type, - STATE(4376), 1, + STATE(4412), 1, sym_reference_expression, - STATE(1910), 2, + STATE(1132), 2, sym_type_reference_expression, sym_qualified_type, STATE(3116), 2, sym_line_comment, sym_block_comment, - STATE(2003), 4, + STATE(1214), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(2002), 12, + STATE(1225), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -281656,55 +281708,55 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [109366] = 22, + [109230] = 22, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(3626), 1, + ACTIONS(587), 1, sym_identifier, - ACTIONS(3630), 1, + ACTIONS(593), 1, anon_sym_fn, - ACTIONS(3634), 1, + ACTIONS(597), 1, anon_sym_struct, - ACTIONS(3644), 1, + ACTIONS(607), 1, anon_sym_shared, - ACTIONS(3648), 1, + ACTIONS(611), 1, anon_sym_chan, - ACTIONS(3650), 1, + ACTIONS(613), 1, anon_sym_thread, - ACTIONS(3652), 1, + ACTIONS(615), 1, anon_sym_atomic, - ACTIONS(5584), 1, + ACTIONS(5668), 1, anon_sym_LPAREN, - ACTIONS(5790), 1, + ACTIONS(5670), 1, anon_sym_STAR, - ACTIONS(5792), 1, + ACTIONS(5672), 1, anon_sym_QMARK, - ACTIONS(5794), 1, + ACTIONS(5674), 1, anon_sym_BANG, - ACTIONS(5796), 1, + ACTIONS(5676), 1, anon_sym_LBRACK2, - ACTIONS(5798), 1, + ACTIONS(5678), 1, anon_sym_AMP, - ACTIONS(5800), 1, + ACTIONS(5680), 1, anon_sym_map_LBRACK, - STATE(1657), 1, + STATE(414), 1, sym_plain_type, - STATE(4323), 1, + STATE(4403), 1, sym_reference_expression, - STATE(1636), 2, + STATE(244), 2, sym_type_reference_expression, sym_qualified_type, STATE(3117), 2, sym_line_comment, sym_block_comment, - STATE(1635), 4, + STATE(387), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(1629), 12, + STATE(388), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -281717,55 +281769,55 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [109449] = 22, + [109313] = 22, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(3420), 1, + ACTIONS(47), 1, + anon_sym_QMARK, + ACTIONS(85), 1, + anon_sym_map_LBRACK, + ACTIONS(87), 1, + anon_sym_chan, + ACTIONS(89), 1, + anon_sym_thread, + ACTIONS(91), 1, + anon_sym_atomic, + ACTIONS(565), 1, sym_identifier, - ACTIONS(3424), 1, + ACTIONS(571), 1, anon_sym_fn, - ACTIONS(3428), 1, + ACTIONS(575), 1, anon_sym_struct, - ACTIONS(3438), 1, + ACTIONS(583), 1, anon_sym_shared, - ACTIONS(3442), 1, - anon_sym_chan, - ACTIONS(3444), 1, - anon_sym_thread, - ACTIONS(3446), 1, - anon_sym_atomic, - ACTIONS(5802), 1, + ACTIONS(3564), 1, anon_sym_LPAREN, - ACTIONS(5804), 1, + ACTIONS(3566), 1, anon_sym_STAR, - ACTIONS(5806), 1, - anon_sym_QMARK, - ACTIONS(5808), 1, + ACTIONS(5308), 1, anon_sym_BANG, - ACTIONS(5810), 1, + ACTIONS(5310), 1, anon_sym_LBRACK2, - ACTIONS(5812), 1, + ACTIONS(5312), 1, anon_sym_AMP, - ACTIONS(5814), 1, - anon_sym_map_LBRACK, - STATE(3355), 1, + STATE(2330), 1, sym_plain_type, - STATE(4341), 1, + STATE(4498), 1, sym_reference_expression, STATE(3118), 2, sym_line_comment, sym_block_comment, - STATE(3286), 2, + STATE(3460), 2, sym_type_reference_expression, sym_qualified_type, - STATE(3339), 4, + STATE(2360), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(3349), 12, + STATE(2362), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -281778,55 +281830,55 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [109532] = 22, + [109396] = 22, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(3626), 1, + ACTIONS(3454), 1, sym_identifier, - ACTIONS(3630), 1, + ACTIONS(3458), 1, anon_sym_fn, - ACTIONS(3634), 1, + ACTIONS(3462), 1, anon_sym_struct, - ACTIONS(3644), 1, + ACTIONS(3472), 1, anon_sym_shared, - ACTIONS(3648), 1, + ACTIONS(3476), 1, anon_sym_chan, - ACTIONS(3650), 1, + ACTIONS(3478), 1, anon_sym_thread, - ACTIONS(3652), 1, + ACTIONS(3480), 1, anon_sym_atomic, - ACTIONS(5584), 1, + ACTIONS(5786), 1, anon_sym_LPAREN, - ACTIONS(5790), 1, + ACTIONS(5788), 1, anon_sym_STAR, - ACTIONS(5792), 1, + ACTIONS(5790), 1, anon_sym_QMARK, - ACTIONS(5794), 1, + ACTIONS(5792), 1, anon_sym_BANG, - ACTIONS(5796), 1, + ACTIONS(5794), 1, anon_sym_LBRACK2, - ACTIONS(5798), 1, + ACTIONS(5796), 1, anon_sym_AMP, - ACTIONS(5800), 1, + ACTIONS(5798), 1, anon_sym_map_LBRACK, - STATE(1660), 1, + STATE(1190), 1, sym_plain_type, - STATE(4323), 1, + STATE(4412), 1, sym_reference_expression, - STATE(1636), 2, + STATE(1132), 2, sym_type_reference_expression, sym_qualified_type, STATE(3119), 2, sym_line_comment, sym_block_comment, - STATE(1635), 4, + STATE(1214), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(1629), 12, + STATE(1225), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -281839,55 +281891,55 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [109615] = 22, + [109479] = 22, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(3917), 1, + ACTIONS(3426), 1, sym_identifier, - ACTIONS(3921), 1, - anon_sym_fn, - ACTIONS(3925), 1, + ACTIONS(3638), 1, anon_sym_struct, - ACTIONS(3935), 1, + ACTIONS(5486), 1, + anon_sym_fn, + ACTIONS(5498), 1, anon_sym_shared, - ACTIONS(3939), 1, + ACTIONS(5502), 1, anon_sym_chan, - ACTIONS(3941), 1, + ACTIONS(5504), 1, anon_sym_thread, - ACTIONS(3943), 1, + ACTIONS(5506), 1, anon_sym_atomic, - ACTIONS(5762), 1, + ACTIONS(5590), 1, anon_sym_LPAREN, - ACTIONS(5764), 1, + ACTIONS(5594), 1, anon_sym_STAR, - ACTIONS(5766), 1, + ACTIONS(5596), 1, anon_sym_QMARK, - ACTIONS(5768), 1, + ACTIONS(5598), 1, anon_sym_BANG, - ACTIONS(5770), 1, + ACTIONS(5600), 1, anon_sym_LBRACK2, - ACTIONS(5772), 1, + ACTIONS(5602), 1, anon_sym_AMP, - ACTIONS(5774), 1, + ACTIONS(5604), 1, anon_sym_map_LBRACK, - STATE(2209), 1, + STATE(1666), 1, sym_plain_type, - STATE(4468), 1, + STATE(4351), 1, sym_reference_expression, - STATE(2140), 2, - sym_type_reference_expression, - sym_qualified_type, STATE(3120), 2, sym_line_comment, sym_block_comment, - STATE(2178), 4, + STATE(3305), 2, + sym_type_reference_expression, + sym_qualified_type, + STATE(1647), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(2179), 12, + STATE(1667), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -281900,55 +281952,55 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [109698] = 22, + [109562] = 22, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(565), 1, + ACTIONS(3789), 1, sym_identifier, - ACTIONS(571), 1, + ACTIONS(3791), 1, + anon_sym_LPAREN, + ACTIONS(3793), 1, anon_sym_fn, - ACTIONS(575), 1, + ACTIONS(3797), 1, anon_sym_struct, - ACTIONS(585), 1, + ACTIONS(3807), 1, anon_sym_shared, - ACTIONS(589), 1, + ACTIONS(3809), 1, + anon_sym_map_LBRACK, + ACTIONS(3811), 1, anon_sym_chan, - ACTIONS(591), 1, + ACTIONS(3813), 1, anon_sym_thread, - ACTIONS(593), 1, + ACTIONS(3815), 1, anon_sym_atomic, - ACTIONS(5700), 1, - anon_sym_LPAREN, - ACTIONS(5702), 1, + ACTIONS(5764), 1, anon_sym_STAR, - ACTIONS(5704), 1, + ACTIONS(5766), 1, anon_sym_QMARK, - ACTIONS(5706), 1, + ACTIONS(5768), 1, anon_sym_BANG, - ACTIONS(5708), 1, + ACTIONS(5770), 1, anon_sym_LBRACK2, - ACTIONS(5710), 1, + ACTIONS(5772), 1, anon_sym_AMP, - ACTIONS(5712), 1, - anon_sym_map_LBRACK, - STATE(458), 1, + STATE(2010), 1, sym_plain_type, - STATE(4403), 1, + STATE(4370), 1, sym_reference_expression, - STATE(252), 2, + STATE(1909), 2, sym_type_reference_expression, sym_qualified_type, STATE(3121), 2, sym_line_comment, sym_block_comment, - STATE(445), 4, + STATE(1945), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(448), 12, + STATE(1949), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -281961,55 +282013,55 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [109781] = 22, + [109645] = 22, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(47), 1, - anon_sym_QMARK, - ACTIONS(85), 1, - anon_sym_map_LBRACK, - ACTIONS(87), 1, - anon_sym_chan, - ACTIONS(89), 1, - anon_sym_thread, - ACTIONS(91), 1, - anon_sym_atomic, - ACTIONS(597), 1, + ACTIONS(587), 1, sym_identifier, - ACTIONS(603), 1, + ACTIONS(593), 1, anon_sym_fn, - ACTIONS(607), 1, + ACTIONS(597), 1, anon_sym_struct, - ACTIONS(615), 1, + ACTIONS(607), 1, anon_sym_shared, - ACTIONS(3586), 1, + ACTIONS(611), 1, + anon_sym_chan, + ACTIONS(613), 1, + anon_sym_thread, + ACTIONS(615), 1, + anon_sym_atomic, + ACTIONS(5668), 1, anon_sym_LPAREN, - ACTIONS(3588), 1, + ACTIONS(5670), 1, anon_sym_STAR, - ACTIONS(5302), 1, + ACTIONS(5672), 1, + anon_sym_QMARK, + ACTIONS(5674), 1, anon_sym_BANG, - ACTIONS(5304), 1, + ACTIONS(5676), 1, anon_sym_LBRACK2, - ACTIONS(5306), 1, + ACTIONS(5678), 1, anon_sym_AMP, - STATE(4495), 1, - sym_reference_expression, - STATE(4575), 1, + ACTIONS(5680), 1, + anon_sym_map_LBRACK, + STATE(415), 1, sym_plain_type, + STATE(4403), 1, + sym_reference_expression, + STATE(244), 2, + sym_type_reference_expression, + sym_qualified_type, STATE(3122), 2, sym_line_comment, sym_block_comment, - STATE(3541), 2, - sym_type_reference_expression, - sym_qualified_type, - STATE(2302), 4, + STATE(387), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(2303), 12, + STATE(388), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -282022,55 +282074,55 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [109864] = 22, + [109728] = 22, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(3917), 1, + ACTIONS(3698), 1, sym_identifier, - ACTIONS(3921), 1, + ACTIONS(3702), 1, anon_sym_fn, - ACTIONS(3925), 1, + ACTIONS(3706), 1, anon_sym_struct, - ACTIONS(3935), 1, + ACTIONS(3716), 1, anon_sym_shared, - ACTIONS(3939), 1, + ACTIONS(3720), 1, anon_sym_chan, - ACTIONS(3941), 1, + ACTIONS(3722), 1, anon_sym_thread, - ACTIONS(3943), 1, + ACTIONS(3724), 1, anon_sym_atomic, - ACTIONS(5762), 1, + ACTIONS(5682), 1, anon_sym_LPAREN, - ACTIONS(5764), 1, + ACTIONS(5684), 1, anon_sym_STAR, - ACTIONS(5766), 1, + ACTIONS(5686), 1, anon_sym_QMARK, - ACTIONS(5768), 1, + ACTIONS(5688), 1, anon_sym_BANG, - ACTIONS(5770), 1, + ACTIONS(5690), 1, anon_sym_LBRACK2, - ACTIONS(5772), 1, + ACTIONS(5692), 1, anon_sym_AMP, - ACTIONS(5774), 1, + ACTIONS(5694), 1, anon_sym_map_LBRACK, - STATE(2213), 1, + STATE(1836), 1, sym_plain_type, - STATE(4468), 1, + STATE(4454), 1, sym_reference_expression, - STATE(2140), 2, + STATE(1751), 2, sym_type_reference_expression, sym_qualified_type, STATE(3123), 2, sym_line_comment, sym_block_comment, - STATE(2178), 4, + STATE(1842), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(2179), 12, + STATE(1841), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -282083,55 +282135,55 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [109947] = 22, + [109811] = 22, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(3755), 1, + ACTIONS(587), 1, sym_identifier, - ACTIONS(3757), 1, - anon_sym_LPAREN, - ACTIONS(3759), 1, + ACTIONS(593), 1, anon_sym_fn, - ACTIONS(3763), 1, + ACTIONS(597), 1, anon_sym_struct, - ACTIONS(3773), 1, + ACTIONS(607), 1, anon_sym_shared, - ACTIONS(3775), 1, - anon_sym_map_LBRACK, - ACTIONS(3777), 1, + ACTIONS(611), 1, anon_sym_chan, - ACTIONS(3779), 1, + ACTIONS(613), 1, anon_sym_thread, - ACTIONS(3781), 1, + ACTIONS(615), 1, anon_sym_atomic, - ACTIONS(5744), 1, + ACTIONS(5668), 1, + anon_sym_LPAREN, + ACTIONS(5670), 1, anon_sym_STAR, - ACTIONS(5746), 1, + ACTIONS(5672), 1, anon_sym_QMARK, - ACTIONS(5748), 1, + ACTIONS(5674), 1, anon_sym_BANG, - ACTIONS(5750), 1, + ACTIONS(5676), 1, anon_sym_LBRACK2, - ACTIONS(5752), 1, + ACTIONS(5678), 1, anon_sym_AMP, - STATE(1976), 1, + ACTIONS(5680), 1, + anon_sym_map_LBRACK, + STATE(416), 1, sym_plain_type, - STATE(4376), 1, + STATE(4403), 1, sym_reference_expression, - STATE(1910), 2, + STATE(244), 2, sym_type_reference_expression, sym_qualified_type, STATE(3124), 2, sym_line_comment, sym_block_comment, - STATE(2003), 4, + STATE(387), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(2002), 12, + STATE(388), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -282144,55 +282196,55 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [110030] = 22, + [109894] = 22, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(3556), 1, + ACTIONS(3789), 1, sym_identifier, - ACTIONS(3558), 1, + ACTIONS(3791), 1, anon_sym_LPAREN, - ACTIONS(3560), 1, + ACTIONS(3793), 1, anon_sym_fn, - ACTIONS(3562), 1, - anon_sym_STAR, - ACTIONS(3564), 1, + ACTIONS(3797), 1, anon_sym_struct, - ACTIONS(3574), 1, + ACTIONS(3807), 1, anon_sym_shared, - ACTIONS(3576), 1, + ACTIONS(3809), 1, anon_sym_map_LBRACK, - ACTIONS(3578), 1, + ACTIONS(3811), 1, anon_sym_chan, - ACTIONS(3580), 1, + ACTIONS(3813), 1, anon_sym_thread, - ACTIONS(3582), 1, + ACTIONS(3815), 1, anon_sym_atomic, - ACTIONS(5728), 1, + ACTIONS(5764), 1, + anon_sym_STAR, + ACTIONS(5766), 1, anon_sym_QMARK, - ACTIONS(5730), 1, + ACTIONS(5768), 1, anon_sym_BANG, - ACTIONS(5732), 1, + ACTIONS(5770), 1, anon_sym_LBRACK2, - ACTIONS(5734), 1, + ACTIONS(5772), 1, anon_sym_AMP, - STATE(1373), 1, + STATE(2052), 1, sym_plain_type, - STATE(4355), 1, + STATE(4370), 1, sym_reference_expression, - STATE(1278), 2, + STATE(1909), 2, sym_type_reference_expression, sym_qualified_type, STATE(3125), 2, sym_line_comment, sym_block_comment, - STATE(1357), 4, + STATE(1945), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(1360), 12, + STATE(1949), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -282205,55 +282257,55 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [110113] = 22, + [109977] = 22, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(3448), 1, + ACTIONS(3454), 1, sym_identifier, - ACTIONS(3452), 1, + ACTIONS(3458), 1, anon_sym_fn, - ACTIONS(3456), 1, + ACTIONS(3462), 1, anon_sym_struct, - ACTIONS(3466), 1, + ACTIONS(3472), 1, anon_sym_shared, - ACTIONS(3470), 1, + ACTIONS(3476), 1, anon_sym_chan, - ACTIONS(3472), 1, + ACTIONS(3478), 1, anon_sym_thread, - ACTIONS(3474), 1, + ACTIONS(3480), 1, anon_sym_atomic, - ACTIONS(5776), 1, + ACTIONS(5786), 1, anon_sym_LPAREN, - ACTIONS(5778), 1, + ACTIONS(5788), 1, anon_sym_STAR, - ACTIONS(5780), 1, + ACTIONS(5790), 1, anon_sym_QMARK, - ACTIONS(5782), 1, + ACTIONS(5792), 1, anon_sym_BANG, - ACTIONS(5784), 1, + ACTIONS(5794), 1, anon_sym_LBRACK2, - ACTIONS(5786), 1, + ACTIONS(5796), 1, anon_sym_AMP, - ACTIONS(5788), 1, + ACTIONS(5798), 1, anon_sym_map_LBRACK, - STATE(1244), 1, + STATE(1223), 1, sym_plain_type, - STATE(4409), 1, + STATE(4412), 1, sym_reference_expression, - STATE(1135), 2, + STATE(1132), 2, sym_type_reference_expression, sym_qualified_type, STATE(3126), 2, sym_line_comment, sym_block_comment, - STATE(1211), 4, + STATE(1214), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(1220), 12, + STATE(1225), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -282266,55 +282318,55 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [110196] = 22, + [110060] = 22, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(3448), 1, + ACTIONS(3789), 1, sym_identifier, - ACTIONS(3452), 1, + ACTIONS(3791), 1, + anon_sym_LPAREN, + ACTIONS(3793), 1, anon_sym_fn, - ACTIONS(3456), 1, + ACTIONS(3797), 1, anon_sym_struct, - ACTIONS(3466), 1, + ACTIONS(3807), 1, anon_sym_shared, - ACTIONS(3470), 1, + ACTIONS(3809), 1, + anon_sym_map_LBRACK, + ACTIONS(3811), 1, anon_sym_chan, - ACTIONS(3472), 1, + ACTIONS(3813), 1, anon_sym_thread, - ACTIONS(3474), 1, + ACTIONS(3815), 1, anon_sym_atomic, - ACTIONS(5776), 1, - anon_sym_LPAREN, - ACTIONS(5778), 1, + ACTIONS(5764), 1, anon_sym_STAR, - ACTIONS(5780), 1, + ACTIONS(5766), 1, anon_sym_QMARK, - ACTIONS(5782), 1, + ACTIONS(5768), 1, anon_sym_BANG, - ACTIONS(5784), 1, + ACTIONS(5770), 1, anon_sym_LBRACK2, - ACTIONS(5786), 1, + ACTIONS(5772), 1, anon_sym_AMP, - ACTIONS(5788), 1, - anon_sym_map_LBRACK, - STATE(1158), 1, + STATE(2018), 1, sym_plain_type, - STATE(4409), 1, + STATE(4370), 1, sym_reference_expression, - STATE(1135), 2, + STATE(1909), 2, sym_type_reference_expression, sym_qualified_type, STATE(3127), 2, sym_line_comment, sym_block_comment, - STATE(1211), 4, + STATE(1945), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(1220), 12, + STATE(1949), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -282327,55 +282379,55 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [110279] = 22, + [110143] = 22, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(3448), 1, + ACTIONS(3602), 1, sym_identifier, - ACTIONS(3452), 1, + ACTIONS(3606), 1, anon_sym_fn, - ACTIONS(3456), 1, + ACTIONS(3610), 1, anon_sym_struct, - ACTIONS(3466), 1, + ACTIONS(3620), 1, anon_sym_shared, - ACTIONS(3470), 1, + ACTIONS(3624), 1, anon_sym_chan, - ACTIONS(3472), 1, + ACTIONS(3626), 1, anon_sym_thread, - ACTIONS(3474), 1, + ACTIONS(3628), 1, anon_sym_atomic, - ACTIONS(5776), 1, + ACTIONS(5574), 1, anon_sym_LPAREN, - ACTIONS(5778), 1, + ACTIONS(5578), 1, anon_sym_STAR, - ACTIONS(5780), 1, + ACTIONS(5580), 1, anon_sym_QMARK, - ACTIONS(5782), 1, + ACTIONS(5582), 1, anon_sym_BANG, - ACTIONS(5784), 1, + ACTIONS(5584), 1, anon_sym_LBRACK2, - ACTIONS(5786), 1, + ACTIONS(5586), 1, anon_sym_AMP, - ACTIONS(5788), 1, + ACTIONS(5588), 1, anon_sym_map_LBRACK, - STATE(1252), 1, + STATE(1439), 1, sym_plain_type, - STATE(4409), 1, + STATE(4496), 1, sym_reference_expression, - STATE(1135), 2, + STATE(1401), 2, sym_type_reference_expression, sym_qualified_type, STATE(3128), 2, sym_line_comment, sym_block_comment, - STATE(1211), 4, + STATE(1444), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(1220), 12, + STATE(1445), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -282388,7 +282440,7 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [110362] = 22, + [110226] = 22, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, @@ -282403,40 +282455,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_thread, ACTIONS(91), 1, anon_sym_atomic, - ACTIONS(597), 1, + ACTIONS(565), 1, sym_identifier, - ACTIONS(603), 1, + ACTIONS(571), 1, anon_sym_fn, - ACTIONS(607), 1, + ACTIONS(575), 1, anon_sym_struct, - ACTIONS(615), 1, + ACTIONS(583), 1, anon_sym_shared, - ACTIONS(3586), 1, + ACTIONS(3564), 1, anon_sym_LPAREN, - ACTIONS(3588), 1, + ACTIONS(3566), 1, anon_sym_STAR, - ACTIONS(5302), 1, + ACTIONS(5308), 1, anon_sym_BANG, - ACTIONS(5304), 1, + ACTIONS(5310), 1, anon_sym_LBRACK2, - ACTIONS(5306), 1, + ACTIONS(5312), 1, anon_sym_AMP, - STATE(4495), 1, - sym_reference_expression, - STATE(4538), 1, + STATE(2344), 1, sym_plain_type, + STATE(4498), 1, + sym_reference_expression, STATE(3129), 2, sym_line_comment, sym_block_comment, - STATE(3541), 2, + STATE(3460), 2, sym_type_reference_expression, sym_qualified_type, - STATE(2302), 4, + STATE(2360), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(2303), 12, + STATE(2362), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -282449,55 +282501,55 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [110445] = 22, + [110309] = 22, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(47), 1, - anon_sym_QMARK, - ACTIONS(85), 1, - anon_sym_map_LBRACK, - ACTIONS(87), 1, - anon_sym_chan, - ACTIONS(89), 1, - anon_sym_thread, - ACTIONS(91), 1, - anon_sym_atomic, - ACTIONS(597), 1, + ACTIONS(587), 1, sym_identifier, - ACTIONS(603), 1, + ACTIONS(593), 1, anon_sym_fn, - ACTIONS(607), 1, + ACTIONS(597), 1, anon_sym_struct, - ACTIONS(615), 1, + ACTIONS(607), 1, anon_sym_shared, - ACTIONS(3586), 1, + ACTIONS(611), 1, + anon_sym_chan, + ACTIONS(613), 1, + anon_sym_thread, + ACTIONS(615), 1, + anon_sym_atomic, + ACTIONS(5668), 1, anon_sym_LPAREN, - ACTIONS(3588), 1, + ACTIONS(5670), 1, anon_sym_STAR, - ACTIONS(5302), 1, + ACTIONS(5672), 1, + anon_sym_QMARK, + ACTIONS(5674), 1, anon_sym_BANG, - ACTIONS(5304), 1, + ACTIONS(5676), 1, anon_sym_LBRACK2, - ACTIONS(5306), 1, + ACTIONS(5678), 1, anon_sym_AMP, - STATE(3797), 1, + ACTIONS(5680), 1, + anon_sym_map_LBRACK, + STATE(425), 1, sym_plain_type, - STATE(4495), 1, + STATE(4403), 1, sym_reference_expression, + STATE(244), 2, + sym_type_reference_expression, + sym_qualified_type, STATE(3130), 2, sym_line_comment, sym_block_comment, - STATE(3541), 2, - sym_type_reference_expression, - sym_qualified_type, - STATE(2302), 4, + STATE(387), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(2303), 12, + STATE(388), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -282510,55 +282562,55 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [110528] = 22, + [110392] = 22, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(47), 1, - anon_sym_QMARK, - ACTIONS(85), 1, - anon_sym_map_LBRACK, - ACTIONS(87), 1, - anon_sym_chan, - ACTIONS(89), 1, - anon_sym_thread, - ACTIONS(91), 1, - anon_sym_atomic, - ACTIONS(597), 1, + ACTIONS(587), 1, sym_identifier, - ACTIONS(603), 1, + ACTIONS(593), 1, anon_sym_fn, - ACTIONS(607), 1, + ACTIONS(597), 1, anon_sym_struct, - ACTIONS(615), 1, + ACTIONS(607), 1, anon_sym_shared, - ACTIONS(3586), 1, + ACTIONS(611), 1, + anon_sym_chan, + ACTIONS(613), 1, + anon_sym_thread, + ACTIONS(615), 1, + anon_sym_atomic, + ACTIONS(5668), 1, anon_sym_LPAREN, - ACTIONS(3588), 1, + ACTIONS(5670), 1, anon_sym_STAR, - ACTIONS(5302), 1, + ACTIONS(5672), 1, + anon_sym_QMARK, + ACTIONS(5674), 1, anon_sym_BANG, - ACTIONS(5304), 1, + ACTIONS(5676), 1, anon_sym_LBRACK2, - ACTIONS(5306), 1, + ACTIONS(5678), 1, anon_sym_AMP, - STATE(3777), 1, + ACTIONS(5680), 1, + anon_sym_map_LBRACK, + STATE(484), 1, sym_plain_type, - STATE(4495), 1, + STATE(4403), 1, sym_reference_expression, + STATE(244), 2, + sym_type_reference_expression, + sym_qualified_type, STATE(3131), 2, sym_line_comment, sym_block_comment, - STATE(3541), 2, - sym_type_reference_expression, - sym_qualified_type, - STATE(2302), 4, + STATE(387), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(2303), 12, + STATE(388), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -282571,55 +282623,55 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [110611] = 22, + [110475] = 22, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(3783), 1, + ACTIONS(4523), 1, sym_identifier, - ACTIONS(3785), 1, + ACTIONS(4525), 1, anon_sym_LPAREN, - ACTIONS(3787), 1, + ACTIONS(4527), 1, anon_sym_fn, - ACTIONS(3791), 1, + ACTIONS(4529), 1, + anon_sym_STAR, + ACTIONS(4531), 1, anon_sym_struct, - ACTIONS(3801), 1, + ACTIONS(4541), 1, anon_sym_shared, - ACTIONS(3803), 1, + ACTIONS(4543), 1, anon_sym_map_LBRACK, - ACTIONS(3805), 1, + ACTIONS(4545), 1, anon_sym_chan, - ACTIONS(3807), 1, + ACTIONS(4547), 1, anon_sym_thread, - ACTIONS(3809), 1, + ACTIONS(4549), 1, anon_sym_atomic, - ACTIONS(5662), 1, - anon_sym_STAR, - ACTIONS(5664), 1, + ACTIONS(5756), 1, anon_sym_QMARK, - ACTIONS(5666), 1, + ACTIONS(5758), 1, anon_sym_BANG, - ACTIONS(5668), 1, + ACTIONS(5760), 1, anon_sym_LBRACK2, - ACTIONS(5670), 1, + ACTIONS(5762), 1, anon_sym_AMP, - STATE(1915), 1, + STATE(2548), 1, sym_plain_type, - STATE(4430), 1, + STATE(4479), 1, sym_reference_expression, - STATE(1908), 2, + STATE(2597), 2, sym_type_reference_expression, sym_qualified_type, STATE(3132), 2, sym_line_comment, sym_block_comment, - STATE(1930), 4, + STATE(2699), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(1929), 12, + STATE(2700), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -282632,55 +282684,55 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [110694] = 22, + [110558] = 22, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(3783), 1, - sym_identifier, - ACTIONS(3785), 1, - anon_sym_LPAREN, - ACTIONS(3787), 1, - anon_sym_fn, - ACTIONS(3791), 1, - anon_sym_struct, - ACTIONS(3801), 1, - anon_sym_shared, - ACTIONS(3803), 1, + ACTIONS(47), 1, + anon_sym_QMARK, + ACTIONS(85), 1, anon_sym_map_LBRACK, - ACTIONS(3805), 1, + ACTIONS(87), 1, anon_sym_chan, - ACTIONS(3807), 1, + ACTIONS(89), 1, anon_sym_thread, - ACTIONS(3809), 1, + ACTIONS(91), 1, anon_sym_atomic, - ACTIONS(5662), 1, + ACTIONS(565), 1, + sym_identifier, + ACTIONS(571), 1, + anon_sym_fn, + ACTIONS(575), 1, + anon_sym_struct, + ACTIONS(583), 1, + anon_sym_shared, + ACTIONS(3564), 1, + anon_sym_LPAREN, + ACTIONS(3566), 1, anon_sym_STAR, - ACTIONS(5664), 1, - anon_sym_QMARK, - ACTIONS(5666), 1, + ACTIONS(5308), 1, anon_sym_BANG, - ACTIONS(5668), 1, + ACTIONS(5310), 1, anon_sym_LBRACK2, - ACTIONS(5670), 1, + ACTIONS(5312), 1, anon_sym_AMP, - STATE(1913), 1, + STATE(3996), 1, sym_plain_type, - STATE(4430), 1, + STATE(4498), 1, sym_reference_expression, - STATE(1908), 2, - sym_type_reference_expression, - sym_qualified_type, STATE(3133), 2, sym_line_comment, sym_block_comment, - STATE(1930), 4, + STATE(3460), 2, + sym_type_reference_expression, + sym_qualified_type, + STATE(2360), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(1929), 12, + STATE(2362), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -282693,55 +282745,55 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [110777] = 22, + [110641] = 22, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(3420), 1, + ACTIONS(587), 1, sym_identifier, - ACTIONS(3634), 1, - anon_sym_struct, - ACTIONS(5484), 1, + ACTIONS(593), 1, anon_sym_fn, - ACTIONS(5496), 1, + ACTIONS(597), 1, + anon_sym_struct, + ACTIONS(607), 1, anon_sym_shared, - ACTIONS(5500), 1, + ACTIONS(611), 1, anon_sym_chan, - ACTIONS(5502), 1, + ACTIONS(613), 1, anon_sym_thread, - ACTIONS(5504), 1, + ACTIONS(615), 1, anon_sym_atomic, - ACTIONS(5584), 1, + ACTIONS(5668), 1, anon_sym_LPAREN, - ACTIONS(5588), 1, + ACTIONS(5670), 1, anon_sym_STAR, - ACTIONS(5590), 1, + ACTIONS(5672), 1, anon_sym_QMARK, - ACTIONS(5592), 1, + ACTIONS(5674), 1, anon_sym_BANG, - ACTIONS(5594), 1, + ACTIONS(5676), 1, anon_sym_LBRACK2, - ACTIONS(5596), 1, + ACTIONS(5678), 1, anon_sym_AMP, - ACTIONS(5598), 1, + ACTIONS(5680), 1, anon_sym_map_LBRACK, - STATE(1651), 1, + STATE(433), 1, sym_plain_type, - STATE(4341), 1, + STATE(4403), 1, sym_reference_expression, + STATE(244), 2, + sym_type_reference_expression, + sym_qualified_type, STATE(3134), 2, sym_line_comment, sym_block_comment, - STATE(3286), 2, - sym_type_reference_expression, - sym_qualified_type, - STATE(1635), 4, + STATE(387), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(1629), 12, + STATE(388), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -282754,55 +282806,55 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [110860] = 22, + [110724] = 22, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(565), 1, + ACTIONS(587), 1, sym_identifier, - ACTIONS(571), 1, + ACTIONS(593), 1, anon_sym_fn, - ACTIONS(575), 1, + ACTIONS(597), 1, anon_sym_struct, - ACTIONS(585), 1, + ACTIONS(607), 1, anon_sym_shared, - ACTIONS(589), 1, + ACTIONS(611), 1, anon_sym_chan, - ACTIONS(591), 1, + ACTIONS(613), 1, anon_sym_thread, - ACTIONS(593), 1, + ACTIONS(615), 1, anon_sym_atomic, - ACTIONS(5700), 1, + ACTIONS(5668), 1, anon_sym_LPAREN, - ACTIONS(5702), 1, + ACTIONS(5670), 1, anon_sym_STAR, - ACTIONS(5704), 1, + ACTIONS(5672), 1, anon_sym_QMARK, - ACTIONS(5706), 1, + ACTIONS(5674), 1, anon_sym_BANG, - ACTIONS(5708), 1, + ACTIONS(5676), 1, anon_sym_LBRACK2, - ACTIONS(5710), 1, + ACTIONS(5678), 1, anon_sym_AMP, - ACTIONS(5712), 1, + ACTIONS(5680), 1, anon_sym_map_LBRACK, - STATE(329), 1, + STATE(413), 1, sym_plain_type, STATE(4403), 1, sym_reference_expression, - STATE(252), 2, + STATE(244), 2, sym_type_reference_expression, sym_qualified_type, STATE(3135), 2, sym_line_comment, sym_block_comment, - STATE(445), 4, + STATE(387), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(448), 12, + STATE(388), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -282815,55 +282867,55 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [110943] = 22, + [110807] = 22, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(3420), 1, + ACTIONS(3918), 1, sym_identifier, - ACTIONS(3424), 1, + ACTIONS(3922), 1, anon_sym_fn, - ACTIONS(3428), 1, + ACTIONS(3926), 1, anon_sym_struct, - ACTIONS(3438), 1, + ACTIONS(3936), 1, anon_sym_shared, - ACTIONS(3442), 1, + ACTIONS(3940), 1, anon_sym_chan, - ACTIONS(3444), 1, + ACTIONS(3942), 1, anon_sym_thread, - ACTIONS(3446), 1, + ACTIONS(3944), 1, anon_sym_atomic, - ACTIONS(5802), 1, + ACTIONS(5710), 1, anon_sym_LPAREN, - ACTIONS(5804), 1, + ACTIONS(5712), 1, anon_sym_STAR, - ACTIONS(5806), 1, + ACTIONS(5714), 1, anon_sym_QMARK, - ACTIONS(5808), 1, + ACTIONS(5716), 1, anon_sym_BANG, - ACTIONS(5810), 1, + ACTIONS(5718), 1, anon_sym_LBRACK2, - ACTIONS(5812), 1, + ACTIONS(5720), 1, anon_sym_AMP, - ACTIONS(5814), 1, + ACTIONS(5722), 1, anon_sym_map_LBRACK, - STATE(3351), 1, + STATE(2224), 1, sym_plain_type, - STATE(4341), 1, + STATE(4471), 1, sym_reference_expression, + STATE(2142), 2, + sym_type_reference_expression, + sym_qualified_type, STATE(3136), 2, sym_line_comment, sym_block_comment, - STATE(3286), 2, - sym_type_reference_expression, - sym_qualified_type, - STATE(3339), 4, + STATE(2183), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(3349), 12, + STATE(2184), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -282876,55 +282928,55 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [111026] = 22, + [110890] = 22, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(3783), 1, + ACTIONS(3698), 1, sym_identifier, - ACTIONS(3785), 1, - anon_sym_LPAREN, - ACTIONS(3787), 1, + ACTIONS(3702), 1, anon_sym_fn, - ACTIONS(3791), 1, + ACTIONS(3706), 1, anon_sym_struct, - ACTIONS(3801), 1, + ACTIONS(3716), 1, anon_sym_shared, - ACTIONS(3803), 1, - anon_sym_map_LBRACK, - ACTIONS(3805), 1, + ACTIONS(3720), 1, anon_sym_chan, - ACTIONS(3807), 1, + ACTIONS(3722), 1, anon_sym_thread, - ACTIONS(3809), 1, + ACTIONS(3724), 1, anon_sym_atomic, - ACTIONS(5662), 1, + ACTIONS(5682), 1, + anon_sym_LPAREN, + ACTIONS(5684), 1, anon_sym_STAR, - ACTIONS(5664), 1, + ACTIONS(5686), 1, anon_sym_QMARK, - ACTIONS(5666), 1, + ACTIONS(5688), 1, anon_sym_BANG, - ACTIONS(5668), 1, + ACTIONS(5690), 1, anon_sym_LBRACK2, - ACTIONS(5670), 1, + ACTIONS(5692), 1, anon_sym_AMP, - STATE(2008), 1, + ACTIONS(5694), 1, + anon_sym_map_LBRACK, + STATE(1796), 1, sym_plain_type, - STATE(4430), 1, + STATE(4454), 1, sym_reference_expression, - STATE(1908), 2, + STATE(1751), 2, sym_type_reference_expression, sym_qualified_type, STATE(3137), 2, sym_line_comment, sym_block_comment, - STATE(1930), 4, + STATE(1842), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(1929), 12, + STATE(1841), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -282937,55 +282989,55 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [111109] = 22, + [110973] = 22, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(3556), 1, + ACTIONS(3570), 1, sym_identifier, - ACTIONS(3558), 1, + ACTIONS(3572), 1, anon_sym_LPAREN, - ACTIONS(3560), 1, + ACTIONS(3574), 1, anon_sym_fn, - ACTIONS(3562), 1, + ACTIONS(3576), 1, anon_sym_STAR, - ACTIONS(3564), 1, + ACTIONS(3578), 1, anon_sym_struct, - ACTIONS(3574), 1, + ACTIONS(3588), 1, anon_sym_shared, - ACTIONS(3576), 1, + ACTIONS(3590), 1, anon_sym_map_LBRACK, - ACTIONS(3578), 1, + ACTIONS(3592), 1, anon_sym_chan, - ACTIONS(3580), 1, + ACTIONS(3594), 1, anon_sym_thread, - ACTIONS(3582), 1, + ACTIONS(3596), 1, anon_sym_atomic, - ACTIONS(5728), 1, + ACTIONS(5814), 1, anon_sym_QMARK, - ACTIONS(5730), 1, + ACTIONS(5816), 1, anon_sym_BANG, - ACTIONS(5732), 1, + ACTIONS(5818), 1, anon_sym_LBRACK2, - ACTIONS(5734), 1, + ACTIONS(5820), 1, anon_sym_AMP, - STATE(1363), 1, + STATE(1364), 1, sym_plain_type, - STATE(4355), 1, + STATE(4328), 1, sym_reference_expression, - STATE(1278), 2, + STATE(1288), 2, sym_type_reference_expression, sym_qualified_type, STATE(3138), 2, sym_line_comment, sym_block_comment, - STATE(1357), 4, + STATE(1293), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(1360), 12, + STATE(1303), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -282998,55 +283050,55 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [111192] = 22, + [111056] = 22, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(3783), 1, - sym_identifier, - ACTIONS(3785), 1, - anon_sym_LPAREN, - ACTIONS(3787), 1, - anon_sym_fn, - ACTIONS(3791), 1, - anon_sym_struct, - ACTIONS(3801), 1, - anon_sym_shared, - ACTIONS(3803), 1, + ACTIONS(47), 1, + anon_sym_QMARK, + ACTIONS(85), 1, anon_sym_map_LBRACK, - ACTIONS(3805), 1, + ACTIONS(87), 1, anon_sym_chan, - ACTIONS(3807), 1, + ACTIONS(89), 1, anon_sym_thread, - ACTIONS(3809), 1, + ACTIONS(91), 1, anon_sym_atomic, - ACTIONS(5662), 1, + ACTIONS(565), 1, + sym_identifier, + ACTIONS(571), 1, + anon_sym_fn, + ACTIONS(575), 1, + anon_sym_struct, + ACTIONS(583), 1, + anon_sym_shared, + ACTIONS(3564), 1, + anon_sym_LPAREN, + ACTIONS(3566), 1, anon_sym_STAR, - ACTIONS(5664), 1, - anon_sym_QMARK, - ACTIONS(5666), 1, + ACTIONS(5308), 1, anon_sym_BANG, - ACTIONS(5668), 1, + ACTIONS(5310), 1, anon_sym_LBRACK2, - ACTIONS(5670), 1, + ACTIONS(5312), 1, anon_sym_AMP, - STATE(1927), 1, + STATE(2321), 1, sym_plain_type, - STATE(4430), 1, + STATE(4498), 1, sym_reference_expression, - STATE(1908), 2, - sym_type_reference_expression, - sym_qualified_type, STATE(3139), 2, sym_line_comment, sym_block_comment, - STATE(1930), 4, + STATE(3460), 2, + sym_type_reference_expression, + sym_qualified_type, + STATE(2360), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(1929), 12, + STATE(2362), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -283059,55 +283111,55 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [111275] = 22, + [111139] = 22, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(1191), 1, + ACTIONS(3426), 1, sym_identifier, - ACTIONS(1195), 1, - anon_sym_fn, - ACTIONS(1199), 1, + ACTIONS(3638), 1, anon_sym_struct, - ACTIONS(1209), 1, + ACTIONS(5486), 1, + anon_sym_fn, + ACTIONS(5498), 1, anon_sym_shared, - ACTIONS(1213), 1, + ACTIONS(5502), 1, anon_sym_chan, - ACTIONS(1215), 1, + ACTIONS(5504), 1, anon_sym_thread, - ACTIONS(1217), 1, + ACTIONS(5506), 1, anon_sym_atomic, - ACTIONS(5686), 1, + ACTIONS(5590), 1, anon_sym_LPAREN, - ACTIONS(5688), 1, + ACTIONS(5594), 1, anon_sym_STAR, - ACTIONS(5690), 1, + ACTIONS(5596), 1, anon_sym_QMARK, - ACTIONS(5692), 1, + ACTIONS(5598), 1, anon_sym_BANG, - ACTIONS(5694), 1, + ACTIONS(5600), 1, anon_sym_LBRACK2, - ACTIONS(5696), 1, + ACTIONS(5602), 1, anon_sym_AMP, - ACTIONS(5698), 1, + ACTIONS(5604), 1, anon_sym_map_LBRACK, - STATE(1044), 1, + STATE(1635), 1, sym_plain_type, - STATE(4365), 1, + STATE(4351), 1, sym_reference_expression, - STATE(990), 2, - sym_type_reference_expression, - sym_qualified_type, STATE(3140), 2, sym_line_comment, sym_block_comment, - STATE(1020), 4, + STATE(3305), 2, + sym_type_reference_expression, + sym_qualified_type, + STATE(1647), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(1019), 12, + STATE(1667), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -283120,55 +283172,55 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [111358] = 22, + [111222] = 22, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(3420), 1, + ACTIONS(3454), 1, sym_identifier, - ACTIONS(3424), 1, + ACTIONS(3458), 1, anon_sym_fn, - ACTIONS(3428), 1, + ACTIONS(3462), 1, anon_sym_struct, - ACTIONS(3438), 1, + ACTIONS(3472), 1, anon_sym_shared, - ACTIONS(3442), 1, + ACTIONS(3476), 1, anon_sym_chan, - ACTIONS(3444), 1, + ACTIONS(3478), 1, anon_sym_thread, - ACTIONS(3446), 1, + ACTIONS(3480), 1, anon_sym_atomic, - ACTIONS(5802), 1, + ACTIONS(5786), 1, anon_sym_LPAREN, - ACTIONS(5804), 1, + ACTIONS(5788), 1, anon_sym_STAR, - ACTIONS(5806), 1, + ACTIONS(5790), 1, anon_sym_QMARK, - ACTIONS(5808), 1, + ACTIONS(5792), 1, anon_sym_BANG, - ACTIONS(5810), 1, + ACTIONS(5794), 1, anon_sym_LBRACK2, - ACTIONS(5812), 1, + ACTIONS(5796), 1, anon_sym_AMP, - ACTIONS(5814), 1, + ACTIONS(5798), 1, anon_sym_map_LBRACK, - STATE(3350), 1, + STATE(1255), 1, sym_plain_type, - STATE(4341), 1, + STATE(4412), 1, sym_reference_expression, + STATE(1132), 2, + sym_type_reference_expression, + sym_qualified_type, STATE(3141), 2, sym_line_comment, sym_block_comment, - STATE(3286), 2, - sym_type_reference_expression, - sym_qualified_type, - STATE(3339), 4, + STATE(1214), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(3349), 12, + STATE(1225), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -283181,55 +283233,116 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [111441] = 22, + [111305] = 22, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(3420), 1, + ACTIONS(47), 1, + anon_sym_QMARK, + ACTIONS(85), 1, + anon_sym_map_LBRACK, + ACTIONS(87), 1, + anon_sym_chan, + ACTIONS(89), 1, + anon_sym_thread, + ACTIONS(91), 1, + anon_sym_atomic, + ACTIONS(565), 1, sym_identifier, - ACTIONS(3424), 1, + ACTIONS(571), 1, anon_sym_fn, - ACTIONS(3428), 1, + ACTIONS(575), 1, anon_sym_struct, - ACTIONS(3438), 1, + ACTIONS(583), 1, anon_sym_shared, - ACTIONS(3442), 1, + ACTIONS(3564), 1, + anon_sym_LPAREN, + ACTIONS(3566), 1, + anon_sym_STAR, + ACTIONS(5308), 1, + anon_sym_BANG, + ACTIONS(5310), 1, + anon_sym_LBRACK2, + ACTIONS(5312), 1, + anon_sym_AMP, + STATE(2342), 1, + sym_plain_type, + STATE(4498), 1, + sym_reference_expression, + STATE(3142), 2, + sym_line_comment, + sym_block_comment, + STATE(3460), 2, + sym_type_reference_expression, + sym_qualified_type, + STATE(2360), 4, + sym__plain_type_without_special, + sym_multi_return_type, + sym_result_type, + sym_option_type, + STATE(2362), 12, + sym_anon_struct_type, + sym_fixed_array_type, + sym_array_type, + sym_pointer_type, + sym_wrong_pointer_type, + sym_map_type, + sym_channel_type, + sym_shared_type, + sym_thread_type, + sym_atomic_type, + sym_generic_type, + sym_function_type, + [111388] = 22, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(47), 1, + anon_sym_QMARK, + ACTIONS(85), 1, + anon_sym_map_LBRACK, + ACTIONS(87), 1, anon_sym_chan, - ACTIONS(3444), 1, + ACTIONS(89), 1, anon_sym_thread, - ACTIONS(3446), 1, + ACTIONS(91), 1, anon_sym_atomic, - ACTIONS(5802), 1, + ACTIONS(565), 1, + sym_identifier, + ACTIONS(571), 1, + anon_sym_fn, + ACTIONS(575), 1, + anon_sym_struct, + ACTIONS(583), 1, + anon_sym_shared, + ACTIONS(3564), 1, anon_sym_LPAREN, - ACTIONS(5804), 1, + ACTIONS(3566), 1, anon_sym_STAR, - ACTIONS(5806), 1, - anon_sym_QMARK, - ACTIONS(5808), 1, + ACTIONS(5308), 1, anon_sym_BANG, - ACTIONS(5810), 1, + ACTIONS(5310), 1, anon_sym_LBRACK2, - ACTIONS(5812), 1, + ACTIONS(5312), 1, anon_sym_AMP, - ACTIONS(5814), 1, - anon_sym_map_LBRACK, - STATE(3337), 1, + STATE(3959), 1, sym_plain_type, - STATE(4341), 1, + STATE(4498), 1, sym_reference_expression, - STATE(3142), 2, + STATE(3143), 2, sym_line_comment, sym_block_comment, - STATE(3286), 2, + STATE(3460), 2, sym_type_reference_expression, sym_qualified_type, - STATE(3339), 4, + STATE(2360), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(3349), 12, + STATE(2362), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -283242,55 +283355,55 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [111524] = 22, + [111471] = 22, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(3783), 1, + ACTIONS(587), 1, sym_identifier, - ACTIONS(3785), 1, - anon_sym_LPAREN, - ACTIONS(3787), 1, + ACTIONS(593), 1, anon_sym_fn, - ACTIONS(3791), 1, + ACTIONS(597), 1, anon_sym_struct, - ACTIONS(3801), 1, + ACTIONS(607), 1, anon_sym_shared, - ACTIONS(3803), 1, - anon_sym_map_LBRACK, - ACTIONS(3805), 1, + ACTIONS(611), 1, anon_sym_chan, - ACTIONS(3807), 1, + ACTIONS(613), 1, anon_sym_thread, - ACTIONS(3809), 1, + ACTIONS(615), 1, anon_sym_atomic, - ACTIONS(5662), 1, + ACTIONS(5668), 1, + anon_sym_LPAREN, + ACTIONS(5670), 1, anon_sym_STAR, - ACTIONS(5664), 1, + ACTIONS(5672), 1, anon_sym_QMARK, - ACTIONS(5666), 1, + ACTIONS(5674), 1, anon_sym_BANG, - ACTIONS(5668), 1, + ACTIONS(5676), 1, anon_sym_LBRACK2, - ACTIONS(5670), 1, + ACTIONS(5678), 1, anon_sym_AMP, - STATE(1916), 1, + ACTIONS(5680), 1, + anon_sym_map_LBRACK, + STATE(461), 1, sym_plain_type, - STATE(4430), 1, + STATE(4403), 1, sym_reference_expression, - STATE(1908), 2, + STATE(244), 2, sym_type_reference_expression, sym_qualified_type, - STATE(3143), 2, + STATE(3144), 2, sym_line_comment, sym_block_comment, - STATE(1930), 4, + STATE(387), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(1929), 12, + STATE(388), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -283303,55 +283416,55 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [111607] = 22, + [111554] = 22, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(1191), 1, + ACTIONS(587), 1, sym_identifier, - ACTIONS(1195), 1, + ACTIONS(593), 1, anon_sym_fn, - ACTIONS(1199), 1, + ACTIONS(597), 1, anon_sym_struct, - ACTIONS(1209), 1, + ACTIONS(607), 1, anon_sym_shared, - ACTIONS(1213), 1, + ACTIONS(611), 1, anon_sym_chan, - ACTIONS(1215), 1, + ACTIONS(613), 1, anon_sym_thread, - ACTIONS(1217), 1, + ACTIONS(615), 1, anon_sym_atomic, - ACTIONS(5686), 1, + ACTIONS(5668), 1, anon_sym_LPAREN, - ACTIONS(5688), 1, + ACTIONS(5670), 1, anon_sym_STAR, - ACTIONS(5690), 1, + ACTIONS(5672), 1, anon_sym_QMARK, - ACTIONS(5692), 1, + ACTIONS(5674), 1, anon_sym_BANG, - ACTIONS(5694), 1, + ACTIONS(5676), 1, anon_sym_LBRACK2, - ACTIONS(5696), 1, + ACTIONS(5678), 1, anon_sym_AMP, - ACTIONS(5698), 1, + ACTIONS(5680), 1, anon_sym_map_LBRACK, - STATE(1091), 1, + STATE(378), 1, sym_plain_type, - STATE(4365), 1, + STATE(4403), 1, sym_reference_expression, - STATE(990), 2, + STATE(244), 2, sym_type_reference_expression, sym_qualified_type, - STATE(3144), 2, + STATE(3145), 2, sym_line_comment, sym_block_comment, - STATE(1020), 4, + STATE(387), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(1019), 12, + STATE(388), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -283364,55 +283477,55 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [111690] = 22, + [111637] = 22, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(3755), 1, + ACTIONS(3758), 1, sym_identifier, - ACTIONS(3757), 1, + ACTIONS(3760), 1, anon_sym_LPAREN, - ACTIONS(3759), 1, + ACTIONS(3762), 1, anon_sym_fn, - ACTIONS(3763), 1, + ACTIONS(3766), 1, anon_sym_struct, - ACTIONS(3773), 1, + ACTIONS(3776), 1, anon_sym_shared, - ACTIONS(3775), 1, + ACTIONS(3778), 1, anon_sym_map_LBRACK, - ACTIONS(3777), 1, + ACTIONS(3780), 1, anon_sym_chan, - ACTIONS(3779), 1, + ACTIONS(3782), 1, anon_sym_thread, - ACTIONS(3781), 1, + ACTIONS(3784), 1, anon_sym_atomic, - ACTIONS(5744), 1, + ACTIONS(5732), 1, anon_sym_STAR, - ACTIONS(5746), 1, + ACTIONS(5734), 1, anon_sym_QMARK, - ACTIONS(5748), 1, + ACTIONS(5736), 1, anon_sym_BANG, - ACTIONS(5750), 1, + ACTIONS(5738), 1, anon_sym_LBRACK2, - ACTIONS(5752), 1, + ACTIONS(5740), 1, anon_sym_AMP, - STATE(2042), 1, + STATE(2009), 1, sym_plain_type, - STATE(4376), 1, + STATE(4433), 1, sym_reference_expression, - STATE(1910), 2, + STATE(1899), 2, sym_type_reference_expression, sym_qualified_type, - STATE(3145), 2, + STATE(3146), 2, sym_line_comment, sym_block_comment, - STATE(2003), 4, + STATE(2006), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(2002), 12, + STATE(2005), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -283425,55 +283538,116 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [111773] = 22, + [111720] = 22, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(47), 1, - anon_sym_QMARK, - ACTIONS(85), 1, + ACTIONS(3570), 1, + sym_identifier, + ACTIONS(3572), 1, + anon_sym_LPAREN, + ACTIONS(3574), 1, + anon_sym_fn, + ACTIONS(3576), 1, + anon_sym_STAR, + ACTIONS(3578), 1, + anon_sym_struct, + ACTIONS(3588), 1, + anon_sym_shared, + ACTIONS(3590), 1, anon_sym_map_LBRACK, - ACTIONS(87), 1, + ACTIONS(3592), 1, anon_sym_chan, - ACTIONS(89), 1, + ACTIONS(3594), 1, anon_sym_thread, - ACTIONS(91), 1, + ACTIONS(3596), 1, anon_sym_atomic, - ACTIONS(597), 1, + ACTIONS(5814), 1, + anon_sym_QMARK, + ACTIONS(5816), 1, + anon_sym_BANG, + ACTIONS(5818), 1, + anon_sym_LBRACK2, + ACTIONS(5820), 1, + anon_sym_AMP, + STATE(1331), 1, + sym_plain_type, + STATE(4328), 1, + sym_reference_expression, + STATE(1288), 2, + sym_type_reference_expression, + sym_qualified_type, + STATE(3147), 2, + sym_line_comment, + sym_block_comment, + STATE(1293), 4, + sym__plain_type_without_special, + sym_multi_return_type, + sym_result_type, + sym_option_type, + STATE(1303), 12, + sym_anon_struct_type, + sym_fixed_array_type, + sym_array_type, + sym_pointer_type, + sym_wrong_pointer_type, + sym_map_type, + sym_channel_type, + sym_shared_type, + sym_thread_type, + sym_atomic_type, + sym_generic_type, + sym_function_type, + [111803] = 22, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(3454), 1, sym_identifier, - ACTIONS(603), 1, + ACTIONS(3458), 1, anon_sym_fn, - ACTIONS(607), 1, + ACTIONS(3462), 1, anon_sym_struct, - ACTIONS(615), 1, + ACTIONS(3472), 1, anon_sym_shared, - ACTIONS(3586), 1, + ACTIONS(3476), 1, + anon_sym_chan, + ACTIONS(3478), 1, + anon_sym_thread, + ACTIONS(3480), 1, + anon_sym_atomic, + ACTIONS(5786), 1, anon_sym_LPAREN, - ACTIONS(3588), 1, + ACTIONS(5788), 1, anon_sym_STAR, - ACTIONS(5302), 1, + ACTIONS(5790), 1, + anon_sym_QMARK, + ACTIONS(5792), 1, anon_sym_BANG, - ACTIONS(5304), 1, + ACTIONS(5794), 1, anon_sym_LBRACK2, - ACTIONS(5306), 1, + ACTIONS(5796), 1, anon_sym_AMP, - STATE(4483), 1, + ACTIONS(5798), 1, + anon_sym_map_LBRACK, + STATE(1161), 1, sym_plain_type, - STATE(4495), 1, + STATE(4412), 1, sym_reference_expression, - STATE(3146), 2, - sym_line_comment, - sym_block_comment, - STATE(3541), 2, + STATE(1132), 2, sym_type_reference_expression, sym_qualified_type, - STATE(2302), 4, + STATE(3148), 2, + sym_line_comment, + sym_block_comment, + STATE(1214), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(2303), 12, + STATE(1225), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -283486,55 +283660,55 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [111856] = 22, + [111886] = 22, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(4014), 1, + ACTIONS(575), 1, + anon_sym_struct, + ACTIONS(3564), 1, + anon_sym_LPAREN, + ACTIONS(3953), 1, sym_identifier, - ACTIONS(4018), 1, + ACTIONS(3955), 1, anon_sym_fn, - ACTIONS(4022), 1, - anon_sym_struct, - ACTIONS(4032), 1, + ACTIONS(3957), 1, + anon_sym_STAR, + ACTIONS(3967), 1, anon_sym_shared, - ACTIONS(4036), 1, + ACTIONS(3969), 1, + anon_sym_map_LBRACK, + ACTIONS(3971), 1, anon_sym_chan, - ACTIONS(4038), 1, + ACTIONS(3973), 1, anon_sym_thread, - ACTIONS(4040), 1, + ACTIONS(3975), 1, anon_sym_atomic, - ACTIONS(5672), 1, - anon_sym_LPAREN, - ACTIONS(5674), 1, - anon_sym_STAR, - ACTIONS(5676), 1, + ACTIONS(5724), 1, anon_sym_QMARK, - ACTIONS(5678), 1, + ACTIONS(5726), 1, anon_sym_BANG, - ACTIONS(5680), 1, + ACTIONS(5728), 1, anon_sym_LBRACK2, - ACTIONS(5682), 1, + ACTIONS(5730), 1, anon_sym_AMP, - ACTIONS(5684), 1, - anon_sym_map_LBRACK, - STATE(2484), 1, + STATE(2320), 1, sym_plain_type, - STATE(4388), 1, + STATE(4498), 1, sym_reference_expression, - STATE(2432), 2, + STATE(2283), 2, sym_type_reference_expression, sym_qualified_type, - STATE(3147), 2, + STATE(3149), 2, sym_line_comment, sym_block_comment, - STATE(2492), 4, + STATE(2360), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(2493), 12, + STATE(2362), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -283547,55 +283721,55 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [111939] = 22, + [111969] = 22, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(4014), 1, + ACTIONS(3454), 1, sym_identifier, - ACTIONS(4018), 1, + ACTIONS(3458), 1, anon_sym_fn, - ACTIONS(4022), 1, + ACTIONS(3462), 1, anon_sym_struct, - ACTIONS(4032), 1, + ACTIONS(3472), 1, anon_sym_shared, - ACTIONS(4036), 1, + ACTIONS(3476), 1, anon_sym_chan, - ACTIONS(4038), 1, + ACTIONS(3478), 1, anon_sym_thread, - ACTIONS(4040), 1, + ACTIONS(3480), 1, anon_sym_atomic, - ACTIONS(5672), 1, + ACTIONS(5786), 1, anon_sym_LPAREN, - ACTIONS(5674), 1, + ACTIONS(5788), 1, anon_sym_STAR, - ACTIONS(5676), 1, + ACTIONS(5790), 1, anon_sym_QMARK, - ACTIONS(5678), 1, + ACTIONS(5792), 1, anon_sym_BANG, - ACTIONS(5680), 1, + ACTIONS(5794), 1, anon_sym_LBRACK2, - ACTIONS(5682), 1, + ACTIONS(5796), 1, anon_sym_AMP, - ACTIONS(5684), 1, + ACTIONS(5798), 1, anon_sym_map_LBRACK, - STATE(2566), 1, + STATE(1219), 1, sym_plain_type, - STATE(4388), 1, + STATE(4412), 1, sym_reference_expression, - STATE(2432), 2, + STATE(1132), 2, sym_type_reference_expression, sym_qualified_type, - STATE(3148), 2, + STATE(3150), 2, sym_line_comment, sym_block_comment, - STATE(2492), 4, + STATE(1214), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(2493), 12, + STATE(1225), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -283608,55 +283782,55 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [112022] = 22, + [112052] = 22, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(3420), 1, + ACTIONS(3426), 1, sym_identifier, - ACTIONS(3634), 1, + ACTIONS(3638), 1, anon_sym_struct, - ACTIONS(5484), 1, + ACTIONS(5486), 1, anon_sym_fn, - ACTIONS(5496), 1, + ACTIONS(5498), 1, anon_sym_shared, - ACTIONS(5500), 1, - anon_sym_chan, ACTIONS(5502), 1, - anon_sym_thread, + anon_sym_chan, ACTIONS(5504), 1, + anon_sym_thread, + ACTIONS(5506), 1, anon_sym_atomic, - ACTIONS(5584), 1, + ACTIONS(5590), 1, anon_sym_LPAREN, - ACTIONS(5588), 1, + ACTIONS(5594), 1, anon_sym_STAR, - ACTIONS(5590), 1, + ACTIONS(5596), 1, anon_sym_QMARK, - ACTIONS(5592), 1, + ACTIONS(5598), 1, anon_sym_BANG, - ACTIONS(5594), 1, + ACTIONS(5600), 1, anon_sym_LBRACK2, - ACTIONS(5596), 1, + ACTIONS(5602), 1, anon_sym_AMP, - ACTIONS(5598), 1, + ACTIONS(5604), 1, anon_sym_map_LBRACK, - STATE(1637), 1, + STATE(1652), 1, sym_plain_type, - STATE(4341), 1, + STATE(4351), 1, sym_reference_expression, - STATE(3149), 2, + STATE(3151), 2, sym_line_comment, sym_block_comment, - STATE(3286), 2, + STATE(3305), 2, sym_type_reference_expression, sym_qualified_type, - STATE(1635), 4, + STATE(1647), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(1629), 12, + STATE(1667), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -283669,55 +283843,55 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [112105] = 22, + [112135] = 22, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(3690), 1, + ACTIONS(3570), 1, sym_identifier, - ACTIONS(3694), 1, + ACTIONS(3572), 1, + anon_sym_LPAREN, + ACTIONS(3574), 1, anon_sym_fn, - ACTIONS(3698), 1, + ACTIONS(3576), 1, + anon_sym_STAR, + ACTIONS(3578), 1, anon_sym_struct, - ACTIONS(3708), 1, + ACTIONS(3588), 1, anon_sym_shared, - ACTIONS(3712), 1, + ACTIONS(3590), 1, + anon_sym_map_LBRACK, + ACTIONS(3592), 1, anon_sym_chan, - ACTIONS(3714), 1, + ACTIONS(3594), 1, anon_sym_thread, - ACTIONS(3716), 1, + ACTIONS(3596), 1, anon_sym_atomic, - ACTIONS(5714), 1, - anon_sym_LPAREN, - ACTIONS(5716), 1, - anon_sym_STAR, - ACTIONS(5718), 1, + ACTIONS(5814), 1, anon_sym_QMARK, - ACTIONS(5720), 1, + ACTIONS(5816), 1, anon_sym_BANG, - ACTIONS(5722), 1, + ACTIONS(5818), 1, anon_sym_LBRACK2, - ACTIONS(5724), 1, + ACTIONS(5820), 1, anon_sym_AMP, - ACTIONS(5726), 1, - anon_sym_map_LBRACK, - STATE(1796), 1, + STATE(1317), 1, sym_plain_type, - STATE(4451), 1, + STATE(4328), 1, sym_reference_expression, - STATE(1754), 2, + STATE(1288), 2, sym_type_reference_expression, sym_qualified_type, - STATE(3150), 2, + STATE(3152), 2, sym_line_comment, sym_block_comment, - STATE(1844), 4, + STATE(1293), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(1791), 12, + STATE(1303), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -283730,55 +283904,55 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [112188] = 22, + [112218] = 22, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(3556), 1, - sym_identifier, - ACTIONS(3558), 1, + ACTIONS(575), 1, + anon_sym_struct, + ACTIONS(3564), 1, anon_sym_LPAREN, - ACTIONS(3560), 1, + ACTIONS(3953), 1, + sym_identifier, + ACTIONS(3955), 1, anon_sym_fn, - ACTIONS(3562), 1, + ACTIONS(3957), 1, anon_sym_STAR, - ACTIONS(3564), 1, - anon_sym_struct, - ACTIONS(3574), 1, + ACTIONS(3967), 1, anon_sym_shared, - ACTIONS(3576), 1, + ACTIONS(3969), 1, anon_sym_map_LBRACK, - ACTIONS(3578), 1, + ACTIONS(3971), 1, anon_sym_chan, - ACTIONS(3580), 1, + ACTIONS(3973), 1, anon_sym_thread, - ACTIONS(3582), 1, + ACTIONS(3975), 1, anon_sym_atomic, - ACTIONS(5728), 1, + ACTIONS(5724), 1, anon_sym_QMARK, - ACTIONS(5730), 1, + ACTIONS(5726), 1, anon_sym_BANG, - ACTIONS(5732), 1, + ACTIONS(5728), 1, anon_sym_LBRACK2, - ACTIONS(5734), 1, + ACTIONS(5730), 1, anon_sym_AMP, - STATE(1350), 1, + STATE(2548), 1, sym_plain_type, - STATE(4355), 1, + STATE(4498), 1, sym_reference_expression, - STATE(1278), 2, + STATE(2283), 2, sym_type_reference_expression, sym_qualified_type, - STATE(3151), 2, + STATE(3153), 2, sym_line_comment, sym_block_comment, - STATE(1357), 4, + STATE(2360), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(1360), 12, + STATE(2362), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -283791,55 +283965,55 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [112271] = 22, + [112301] = 22, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(3556), 1, + ACTIONS(3570), 1, sym_identifier, - ACTIONS(3558), 1, + ACTIONS(3572), 1, anon_sym_LPAREN, - ACTIONS(3560), 1, + ACTIONS(3574), 1, anon_sym_fn, - ACTIONS(3562), 1, + ACTIONS(3576), 1, anon_sym_STAR, - ACTIONS(3564), 1, + ACTIONS(3578), 1, anon_sym_struct, - ACTIONS(3574), 1, + ACTIONS(3588), 1, anon_sym_shared, - ACTIONS(3576), 1, + ACTIONS(3590), 1, anon_sym_map_LBRACK, - ACTIONS(3578), 1, + ACTIONS(3592), 1, anon_sym_chan, - ACTIONS(3580), 1, + ACTIONS(3594), 1, anon_sym_thread, - ACTIONS(3582), 1, + ACTIONS(3596), 1, anon_sym_atomic, - ACTIONS(5728), 1, + ACTIONS(5814), 1, anon_sym_QMARK, - ACTIONS(5730), 1, + ACTIONS(5816), 1, anon_sym_BANG, - ACTIONS(5732), 1, + ACTIONS(5818), 1, anon_sym_LBRACK2, - ACTIONS(5734), 1, + ACTIONS(5820), 1, anon_sym_AMP, - STATE(1302), 1, + STATE(1350), 1, sym_plain_type, - STATE(4355), 1, + STATE(4328), 1, sym_reference_expression, - STATE(1278), 2, + STATE(1288), 2, sym_type_reference_expression, sym_qualified_type, - STATE(3152), 2, + STATE(3154), 2, sym_line_comment, sym_block_comment, - STATE(1357), 4, + STATE(1293), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(1360), 12, + STATE(1303), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -283852,55 +284026,55 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [112354] = 22, + [112384] = 22, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(3690), 1, + ACTIONS(3570), 1, sym_identifier, - ACTIONS(3694), 1, + ACTIONS(3572), 1, + anon_sym_LPAREN, + ACTIONS(3574), 1, anon_sym_fn, - ACTIONS(3698), 1, + ACTIONS(3576), 1, + anon_sym_STAR, + ACTIONS(3578), 1, anon_sym_struct, - ACTIONS(3708), 1, + ACTIONS(3588), 1, anon_sym_shared, - ACTIONS(3712), 1, + ACTIONS(3590), 1, + anon_sym_map_LBRACK, + ACTIONS(3592), 1, anon_sym_chan, - ACTIONS(3714), 1, + ACTIONS(3594), 1, anon_sym_thread, - ACTIONS(3716), 1, + ACTIONS(3596), 1, anon_sym_atomic, - ACTIONS(5714), 1, - anon_sym_LPAREN, - ACTIONS(5716), 1, - anon_sym_STAR, - ACTIONS(5718), 1, + ACTIONS(5814), 1, anon_sym_QMARK, - ACTIONS(5720), 1, + ACTIONS(5816), 1, anon_sym_BANG, - ACTIONS(5722), 1, + ACTIONS(5818), 1, anon_sym_LBRACK2, - ACTIONS(5724), 1, + ACTIONS(5820), 1, anon_sym_AMP, - ACTIONS(5726), 1, - anon_sym_map_LBRACK, - STATE(1788), 1, + STATE(1330), 1, sym_plain_type, - STATE(4451), 1, + STATE(4328), 1, sym_reference_expression, - STATE(1754), 2, + STATE(1288), 2, sym_type_reference_expression, sym_qualified_type, - STATE(3153), 2, + STATE(3155), 2, sym_line_comment, sym_block_comment, - STATE(1844), 4, + STATE(1293), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(1791), 12, + STATE(1303), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -283913,55 +284087,55 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [112437] = 22, + [112467] = 22, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(3556), 1, + ACTIONS(587), 1, sym_identifier, - ACTIONS(3558), 1, - anon_sym_LPAREN, - ACTIONS(3560), 1, + ACTIONS(593), 1, anon_sym_fn, - ACTIONS(3562), 1, - anon_sym_STAR, - ACTIONS(3564), 1, + ACTIONS(597), 1, anon_sym_struct, - ACTIONS(3574), 1, + ACTIONS(607), 1, anon_sym_shared, - ACTIONS(3576), 1, - anon_sym_map_LBRACK, - ACTIONS(3578), 1, + ACTIONS(611), 1, anon_sym_chan, - ACTIONS(3580), 1, + ACTIONS(613), 1, anon_sym_thread, - ACTIONS(3582), 1, + ACTIONS(615), 1, anon_sym_atomic, - ACTIONS(5728), 1, + ACTIONS(5668), 1, + anon_sym_LPAREN, + ACTIONS(5670), 1, + anon_sym_STAR, + ACTIONS(5672), 1, anon_sym_QMARK, - ACTIONS(5730), 1, + ACTIONS(5674), 1, anon_sym_BANG, - ACTIONS(5732), 1, + ACTIONS(5676), 1, anon_sym_LBRACK2, - ACTIONS(5734), 1, + ACTIONS(5678), 1, anon_sym_AMP, - STATE(1341), 1, + ACTIONS(5680), 1, + anon_sym_map_LBRACK, + STATE(342), 1, sym_plain_type, - STATE(4355), 1, + STATE(4403), 1, sym_reference_expression, - STATE(1278), 2, + STATE(244), 2, sym_type_reference_expression, sym_qualified_type, - STATE(3154), 2, + STATE(3156), 2, sym_line_comment, sym_block_comment, - STATE(1357), 4, + STATE(387), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(1360), 12, + STATE(388), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -283974,55 +284148,55 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [112520] = 22, + [112550] = 22, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(3556), 1, + ACTIONS(3570), 1, sym_identifier, - ACTIONS(3558), 1, + ACTIONS(3572), 1, anon_sym_LPAREN, - ACTIONS(3560), 1, + ACTIONS(3574), 1, anon_sym_fn, - ACTIONS(3562), 1, + ACTIONS(3576), 1, anon_sym_STAR, - ACTIONS(3564), 1, + ACTIONS(3578), 1, anon_sym_struct, - ACTIONS(3574), 1, + ACTIONS(3588), 1, anon_sym_shared, - ACTIONS(3576), 1, + ACTIONS(3590), 1, anon_sym_map_LBRACK, - ACTIONS(3578), 1, + ACTIONS(3592), 1, anon_sym_chan, - ACTIONS(3580), 1, + ACTIONS(3594), 1, anon_sym_thread, - ACTIONS(3582), 1, + ACTIONS(3596), 1, anon_sym_atomic, - ACTIONS(5728), 1, + ACTIONS(5814), 1, anon_sym_QMARK, - ACTIONS(5730), 1, + ACTIONS(5816), 1, anon_sym_BANG, - ACTIONS(5732), 1, + ACTIONS(5818), 1, anon_sym_LBRACK2, - ACTIONS(5734), 1, + ACTIONS(5820), 1, anon_sym_AMP, - STATE(1324), 1, + STATE(1335), 1, sym_plain_type, - STATE(4355), 1, + STATE(4328), 1, sym_reference_expression, - STATE(1278), 2, + STATE(1288), 2, sym_type_reference_expression, sym_qualified_type, - STATE(3155), 2, + STATE(3157), 2, sym_line_comment, sym_block_comment, - STATE(1357), 4, + STATE(1293), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(1360), 12, + STATE(1303), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -284035,55 +284209,55 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [112603] = 22, + [112633] = 22, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(47), 1, - anon_sym_QMARK, - ACTIONS(85), 1, - anon_sym_map_LBRACK, - ACTIONS(87), 1, - anon_sym_chan, - ACTIONS(89), 1, - anon_sym_thread, - ACTIONS(91), 1, - anon_sym_atomic, - ACTIONS(597), 1, + ACTIONS(3698), 1, sym_identifier, - ACTIONS(603), 1, + ACTIONS(3702), 1, anon_sym_fn, - ACTIONS(607), 1, + ACTIONS(3706), 1, anon_sym_struct, - ACTIONS(615), 1, + ACTIONS(3716), 1, anon_sym_shared, - ACTIONS(3586), 1, + ACTIONS(3720), 1, + anon_sym_chan, + ACTIONS(3722), 1, + anon_sym_thread, + ACTIONS(3724), 1, + anon_sym_atomic, + ACTIONS(5682), 1, anon_sym_LPAREN, - ACTIONS(3588), 1, + ACTIONS(5684), 1, anon_sym_STAR, - ACTIONS(5302), 1, + ACTIONS(5686), 1, + anon_sym_QMARK, + ACTIONS(5688), 1, anon_sym_BANG, - ACTIONS(5304), 1, + ACTIONS(5690), 1, anon_sym_LBRACK2, - ACTIONS(5306), 1, + ACTIONS(5692), 1, anon_sym_AMP, - STATE(2368), 1, + ACTIONS(5694), 1, + anon_sym_map_LBRACK, + STATE(1873), 1, sym_plain_type, - STATE(4495), 1, + STATE(4454), 1, sym_reference_expression, - STATE(3156), 2, - sym_line_comment, - sym_block_comment, - STATE(3541), 2, + STATE(1751), 2, sym_type_reference_expression, sym_qualified_type, - STATE(2302), 4, + STATE(3158), 2, + sym_line_comment, + sym_block_comment, + STATE(1842), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(2303), 12, + STATE(1841), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -284096,55 +284270,55 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [112686] = 22, + [112716] = 22, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(3420), 1, + ACTIONS(3454), 1, sym_identifier, - ACTIONS(3634), 1, - anon_sym_struct, - ACTIONS(5484), 1, + ACTIONS(3458), 1, anon_sym_fn, - ACTIONS(5496), 1, + ACTIONS(3462), 1, + anon_sym_struct, + ACTIONS(3472), 1, anon_sym_shared, - ACTIONS(5500), 1, + ACTIONS(3476), 1, anon_sym_chan, - ACTIONS(5502), 1, + ACTIONS(3478), 1, anon_sym_thread, - ACTIONS(5504), 1, + ACTIONS(3480), 1, anon_sym_atomic, - ACTIONS(5584), 1, + ACTIONS(5786), 1, anon_sym_LPAREN, - ACTIONS(5588), 1, + ACTIONS(5788), 1, anon_sym_STAR, - ACTIONS(5590), 1, + ACTIONS(5790), 1, anon_sym_QMARK, - ACTIONS(5592), 1, + ACTIONS(5792), 1, anon_sym_BANG, - ACTIONS(5594), 1, + ACTIONS(5794), 1, anon_sym_LBRACK2, - ACTIONS(5596), 1, + ACTIONS(5796), 1, anon_sym_AMP, - ACTIONS(5598), 1, + ACTIONS(5798), 1, anon_sym_map_LBRACK, - STATE(1652), 1, + STATE(1230), 1, sym_plain_type, - STATE(4341), 1, + STATE(4412), 1, sym_reference_expression, - STATE(3157), 2, - sym_line_comment, - sym_block_comment, - STATE(3286), 2, + STATE(1132), 2, sym_type_reference_expression, sym_qualified_type, - STATE(1635), 4, + STATE(3159), 2, + sym_line_comment, + sym_block_comment, + STATE(1214), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(1629), 12, + STATE(1225), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -284157,55 +284331,55 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [112769] = 22, + [112799] = 22, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(3556), 1, + ACTIONS(3426), 1, sym_identifier, - ACTIONS(3558), 1, - anon_sym_LPAREN, - ACTIONS(3560), 1, - anon_sym_fn, - ACTIONS(3562), 1, - anon_sym_STAR, - ACTIONS(3564), 1, + ACTIONS(3638), 1, anon_sym_struct, - ACTIONS(3574), 1, + ACTIONS(5486), 1, + anon_sym_fn, + ACTIONS(5498), 1, anon_sym_shared, - ACTIONS(3576), 1, - anon_sym_map_LBRACK, - ACTIONS(3578), 1, + ACTIONS(5502), 1, anon_sym_chan, - ACTIONS(3580), 1, + ACTIONS(5504), 1, anon_sym_thread, - ACTIONS(3582), 1, + ACTIONS(5506), 1, anon_sym_atomic, - ACTIONS(5728), 1, + ACTIONS(5590), 1, + anon_sym_LPAREN, + ACTIONS(5594), 1, + anon_sym_STAR, + ACTIONS(5596), 1, anon_sym_QMARK, - ACTIONS(5730), 1, + ACTIONS(5598), 1, anon_sym_BANG, - ACTIONS(5732), 1, + ACTIONS(5600), 1, anon_sym_LBRACK2, - ACTIONS(5734), 1, + ACTIONS(5602), 1, anon_sym_AMP, - STATE(1296), 1, + ACTIONS(5604), 1, + anon_sym_map_LBRACK, + STATE(1637), 1, sym_plain_type, - STATE(4355), 1, + STATE(4351), 1, sym_reference_expression, - STATE(1278), 2, - sym_type_reference_expression, - sym_qualified_type, - STATE(3158), 2, + STATE(3160), 2, sym_line_comment, sym_block_comment, - STATE(1357), 4, + STATE(3305), 2, + sym_type_reference_expression, + sym_qualified_type, + STATE(1647), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(1360), 12, + STATE(1667), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -284218,55 +284392,55 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [112852] = 22, + [112882] = 22, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(3556), 1, - sym_identifier, - ACTIONS(3558), 1, + ACTIONS(575), 1, + anon_sym_struct, + ACTIONS(3564), 1, anon_sym_LPAREN, - ACTIONS(3560), 1, + ACTIONS(3953), 1, + sym_identifier, + ACTIONS(3955), 1, anon_sym_fn, - ACTIONS(3562), 1, + ACTIONS(3957), 1, anon_sym_STAR, - ACTIONS(3564), 1, - anon_sym_struct, - ACTIONS(3574), 1, + ACTIONS(3967), 1, anon_sym_shared, - ACTIONS(3576), 1, + ACTIONS(3969), 1, anon_sym_map_LBRACK, - ACTIONS(3578), 1, + ACTIONS(3971), 1, anon_sym_chan, - ACTIONS(3580), 1, + ACTIONS(3973), 1, anon_sym_thread, - ACTIONS(3582), 1, + ACTIONS(3975), 1, anon_sym_atomic, - ACTIONS(5728), 1, + ACTIONS(5724), 1, anon_sym_QMARK, - ACTIONS(5730), 1, + ACTIONS(5726), 1, anon_sym_BANG, - ACTIONS(5732), 1, + ACTIONS(5728), 1, anon_sym_LBRACK2, - ACTIONS(5734), 1, + ACTIONS(5730), 1, anon_sym_AMP, - STATE(1377), 1, + STATE(2321), 1, sym_plain_type, - STATE(4355), 1, + STATE(4498), 1, sym_reference_expression, - STATE(1278), 2, + STATE(2283), 2, sym_type_reference_expression, sym_qualified_type, - STATE(3159), 2, + STATE(3161), 2, sym_line_comment, sym_block_comment, - STATE(1357), 4, + STATE(2360), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(1360), 12, + STATE(2362), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -284279,55 +284453,55 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [112935] = 22, + [112965] = 22, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(3690), 1, + ACTIONS(3698), 1, sym_identifier, - ACTIONS(3694), 1, + ACTIONS(3702), 1, anon_sym_fn, - ACTIONS(3698), 1, + ACTIONS(3706), 1, anon_sym_struct, - ACTIONS(3708), 1, + ACTIONS(3716), 1, anon_sym_shared, - ACTIONS(3712), 1, + ACTIONS(3720), 1, anon_sym_chan, - ACTIONS(3714), 1, + ACTIONS(3722), 1, anon_sym_thread, - ACTIONS(3716), 1, + ACTIONS(3724), 1, anon_sym_atomic, - ACTIONS(5714), 1, + ACTIONS(5682), 1, anon_sym_LPAREN, - ACTIONS(5716), 1, + ACTIONS(5684), 1, anon_sym_STAR, - ACTIONS(5718), 1, + ACTIONS(5686), 1, anon_sym_QMARK, - ACTIONS(5720), 1, + ACTIONS(5688), 1, anon_sym_BANG, - ACTIONS(5722), 1, + ACTIONS(5690), 1, anon_sym_LBRACK2, - ACTIONS(5724), 1, + ACTIONS(5692), 1, anon_sym_AMP, - ACTIONS(5726), 1, + ACTIONS(5694), 1, anon_sym_map_LBRACK, - STATE(1798), 1, + STATE(1879), 1, sym_plain_type, - STATE(4451), 1, + STATE(4454), 1, sym_reference_expression, - STATE(1754), 2, + STATE(1751), 2, sym_type_reference_expression, sym_qualified_type, - STATE(3160), 2, + STATE(3162), 2, sym_line_comment, sym_block_comment, - STATE(1844), 4, + STATE(1842), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(1791), 12, + STATE(1841), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -284340,7 +284514,7 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [113018] = 22, + [113048] = 22, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, @@ -284355,40 +284529,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_thread, ACTIONS(91), 1, anon_sym_atomic, - ACTIONS(597), 1, + ACTIONS(565), 1, sym_identifier, - ACTIONS(603), 1, + ACTIONS(571), 1, anon_sym_fn, - ACTIONS(607), 1, + ACTIONS(575), 1, anon_sym_struct, - ACTIONS(615), 1, + ACTIONS(583), 1, anon_sym_shared, - ACTIONS(3586), 1, + ACTIONS(3564), 1, anon_sym_LPAREN, - ACTIONS(3588), 1, + ACTIONS(3566), 1, anon_sym_STAR, - ACTIONS(5302), 1, + ACTIONS(5308), 1, anon_sym_BANG, - ACTIONS(5304), 1, + ACTIONS(5310), 1, anon_sym_LBRACK2, - ACTIONS(5306), 1, + ACTIONS(5312), 1, anon_sym_AMP, - STATE(3988), 1, + STATE(4368), 1, sym_plain_type, - STATE(4495), 1, + STATE(4498), 1, sym_reference_expression, - STATE(3161), 2, + STATE(3163), 2, sym_line_comment, sym_block_comment, - STATE(3541), 2, + STATE(3460), 2, sym_type_reference_expression, sym_qualified_type, - STATE(2302), 4, + STATE(2360), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(2303), 12, + STATE(2362), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -284401,55 +284575,55 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [113101] = 22, + [113131] = 22, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(3626), 1, + ACTIONS(3454), 1, sym_identifier, - ACTIONS(3630), 1, + ACTIONS(3458), 1, anon_sym_fn, - ACTIONS(3634), 1, + ACTIONS(3462), 1, anon_sym_struct, - ACTIONS(3644), 1, + ACTIONS(3472), 1, anon_sym_shared, - ACTIONS(3648), 1, + ACTIONS(3476), 1, anon_sym_chan, - ACTIONS(3650), 1, + ACTIONS(3478), 1, anon_sym_thread, - ACTIONS(3652), 1, + ACTIONS(3480), 1, anon_sym_atomic, - ACTIONS(5584), 1, + ACTIONS(5786), 1, anon_sym_LPAREN, - ACTIONS(5790), 1, + ACTIONS(5788), 1, anon_sym_STAR, - ACTIONS(5792), 1, + ACTIONS(5790), 1, anon_sym_QMARK, - ACTIONS(5794), 1, + ACTIONS(5792), 1, anon_sym_BANG, - ACTIONS(5796), 1, + ACTIONS(5794), 1, anon_sym_LBRACK2, - ACTIONS(5798), 1, + ACTIONS(5796), 1, anon_sym_AMP, - ACTIONS(5800), 1, + ACTIONS(5798), 1, anon_sym_map_LBRACK, - STATE(1669), 1, + STATE(1179), 1, sym_plain_type, - STATE(4323), 1, + STATE(4412), 1, sym_reference_expression, - STATE(1636), 2, + STATE(1132), 2, sym_type_reference_expression, sym_qualified_type, - STATE(3162), 2, + STATE(3164), 2, sym_line_comment, sym_block_comment, - STATE(1635), 4, + STATE(1214), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(1629), 12, + STATE(1225), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -284462,55 +284636,55 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [113184] = 22, + [113214] = 22, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(47), 1, - anon_sym_QMARK, - ACTIONS(85), 1, - anon_sym_map_LBRACK, - ACTIONS(87), 1, - anon_sym_chan, - ACTIONS(89), 1, - anon_sym_thread, - ACTIONS(91), 1, - anon_sym_atomic, - ACTIONS(597), 1, + ACTIONS(3426), 1, sym_identifier, - ACTIONS(603), 1, - anon_sym_fn, - ACTIONS(607), 1, + ACTIONS(3638), 1, anon_sym_struct, - ACTIONS(615), 1, + ACTIONS(5486), 1, + anon_sym_fn, + ACTIONS(5498), 1, anon_sym_shared, - ACTIONS(3586), 1, + ACTIONS(5502), 1, + anon_sym_chan, + ACTIONS(5504), 1, + anon_sym_thread, + ACTIONS(5506), 1, + anon_sym_atomic, + ACTIONS(5590), 1, anon_sym_LPAREN, - ACTIONS(3588), 1, + ACTIONS(5594), 1, anon_sym_STAR, - ACTIONS(5302), 1, + ACTIONS(5596), 1, + anon_sym_QMARK, + ACTIONS(5598), 1, anon_sym_BANG, - ACTIONS(5304), 1, + ACTIONS(5600), 1, anon_sym_LBRACK2, - ACTIONS(5306), 1, + ACTIONS(5602), 1, anon_sym_AMP, - STATE(3929), 1, + ACTIONS(5604), 1, + anon_sym_map_LBRACK, + STATE(1627), 1, sym_plain_type, - STATE(4495), 1, + STATE(4351), 1, sym_reference_expression, - STATE(3163), 2, + STATE(3165), 2, sym_line_comment, sym_block_comment, - STATE(3541), 2, + STATE(3305), 2, sym_type_reference_expression, sym_qualified_type, - STATE(2302), 4, + STATE(1647), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(2303), 12, + STATE(1667), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -284523,55 +284697,55 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [113267] = 22, + [113297] = 22, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(4519), 1, - sym_identifier, - ACTIONS(4521), 1, - anon_sym_LPAREN, - ACTIONS(4523), 1, - anon_sym_fn, - ACTIONS(4525), 1, - anon_sym_STAR, - ACTIONS(4527), 1, - anon_sym_struct, - ACTIONS(4537), 1, - anon_sym_shared, - ACTIONS(4539), 1, + ACTIONS(47), 1, + anon_sym_QMARK, + ACTIONS(85), 1, anon_sym_map_LBRACK, - ACTIONS(4541), 1, + ACTIONS(87), 1, anon_sym_chan, - ACTIONS(4543), 1, + ACTIONS(89), 1, anon_sym_thread, - ACTIONS(4545), 1, + ACTIONS(91), 1, anon_sym_atomic, - ACTIONS(5754), 1, - anon_sym_QMARK, - ACTIONS(5756), 1, + ACTIONS(565), 1, + sym_identifier, + ACTIONS(571), 1, + anon_sym_fn, + ACTIONS(575), 1, + anon_sym_struct, + ACTIONS(583), 1, + anon_sym_shared, + ACTIONS(3564), 1, + anon_sym_LPAREN, + ACTIONS(3566), 1, + anon_sym_STAR, + ACTIONS(5308), 1, anon_sym_BANG, - ACTIONS(5758), 1, + ACTIONS(5310), 1, anon_sym_LBRACK2, - ACTIONS(5760), 1, + ACTIONS(5312), 1, anon_sym_AMP, - STATE(2740), 1, + STATE(2336), 1, sym_plain_type, - STATE(4476), 1, + STATE(4498), 1, sym_reference_expression, - STATE(2602), 2, - sym_type_reference_expression, - sym_qualified_type, - STATE(3164), 2, + STATE(3166), 2, sym_line_comment, sym_block_comment, - STATE(2696), 4, + STATE(3460), 2, + sym_type_reference_expression, + sym_qualified_type, + STATE(2360), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(2697), 12, + STATE(2362), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -284584,7 +284758,7 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [113350] = 22, + [113380] = 22, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, @@ -284599,40 +284773,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_thread, ACTIONS(91), 1, anon_sym_atomic, - ACTIONS(597), 1, + ACTIONS(565), 1, sym_identifier, - ACTIONS(603), 1, + ACTIONS(571), 1, anon_sym_fn, - ACTIONS(607), 1, + ACTIONS(575), 1, anon_sym_struct, - ACTIONS(615), 1, + ACTIONS(583), 1, anon_sym_shared, - ACTIONS(3586), 1, + ACTIONS(3564), 1, anon_sym_LPAREN, - ACTIONS(3588), 1, + ACTIONS(3566), 1, anon_sym_STAR, - ACTIONS(5302), 1, + ACTIONS(5308), 1, anon_sym_BANG, - ACTIONS(5304), 1, + ACTIONS(5310), 1, anon_sym_LBRACK2, - ACTIONS(5306), 1, + ACTIONS(5312), 1, anon_sym_AMP, - STATE(3758), 1, + STATE(3969), 1, sym_plain_type, - STATE(4495), 1, + STATE(4498), 1, sym_reference_expression, - STATE(3165), 2, + STATE(3167), 2, sym_line_comment, sym_block_comment, - STATE(3541), 2, + STATE(3460), 2, sym_type_reference_expression, sym_qualified_type, - STATE(2302), 4, + STATE(2360), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(2303), 12, + STATE(2362), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -284645,55 +284819,55 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [113433] = 22, + [113463] = 22, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(3755), 1, + ACTIONS(3758), 1, sym_identifier, - ACTIONS(3757), 1, + ACTIONS(3760), 1, anon_sym_LPAREN, - ACTIONS(3759), 1, + ACTIONS(3762), 1, anon_sym_fn, - ACTIONS(3763), 1, + ACTIONS(3766), 1, anon_sym_struct, - ACTIONS(3773), 1, + ACTIONS(3776), 1, anon_sym_shared, - ACTIONS(3775), 1, + ACTIONS(3778), 1, anon_sym_map_LBRACK, - ACTIONS(3777), 1, + ACTIONS(3780), 1, anon_sym_chan, - ACTIONS(3779), 1, + ACTIONS(3782), 1, anon_sym_thread, - ACTIONS(3781), 1, + ACTIONS(3784), 1, anon_sym_atomic, - ACTIONS(5744), 1, + ACTIONS(5732), 1, anon_sym_STAR, - ACTIONS(5746), 1, + ACTIONS(5734), 1, anon_sym_QMARK, - ACTIONS(5748), 1, + ACTIONS(5736), 1, anon_sym_BANG, - ACTIONS(5750), 1, + ACTIONS(5738), 1, anon_sym_LBRACK2, - ACTIONS(5752), 1, + ACTIONS(5740), 1, anon_sym_AMP, - STATE(1992), 1, + STATE(1914), 1, sym_plain_type, - STATE(4376), 1, + STATE(4433), 1, sym_reference_expression, - STATE(1910), 2, + STATE(1899), 2, sym_type_reference_expression, sym_qualified_type, - STATE(3166), 2, + STATE(3168), 2, sym_line_comment, sym_block_comment, - STATE(2003), 4, + STATE(2006), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(2002), 12, + STATE(2005), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -284706,29 +284880,27 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [113516] = 22, + [113546] = 22, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(3755), 1, + ACTIONS(1195), 1, sym_identifier, - ACTIONS(3757), 1, - anon_sym_LPAREN, - ACTIONS(3759), 1, + ACTIONS(1199), 1, anon_sym_fn, - ACTIONS(3763), 1, + ACTIONS(1203), 1, anon_sym_struct, - ACTIONS(3773), 1, + ACTIONS(1213), 1, anon_sym_shared, - ACTIONS(3775), 1, - anon_sym_map_LBRACK, - ACTIONS(3777), 1, + ACTIONS(1217), 1, anon_sym_chan, - ACTIONS(3779), 1, + ACTIONS(1219), 1, anon_sym_thread, - ACTIONS(3781), 1, + ACTIONS(1221), 1, anon_sym_atomic, + ACTIONS(5742), 1, + anon_sym_LPAREN, ACTIONS(5744), 1, anon_sym_STAR, ACTIONS(5746), 1, @@ -284739,83 +284911,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, ACTIONS(5752), 1, anon_sym_AMP, - STATE(1977), 1, - sym_plain_type, - STATE(4376), 1, - sym_reference_expression, - STATE(1910), 2, - sym_type_reference_expression, - sym_qualified_type, - STATE(3167), 2, - sym_line_comment, - sym_block_comment, - STATE(2003), 4, - sym__plain_type_without_special, - sym_multi_return_type, - sym_result_type, - sym_option_type, - STATE(2002), 12, - sym_anon_struct_type, - sym_fixed_array_type, - sym_array_type, - sym_pointer_type, - sym_wrong_pointer_type, - sym_map_type, - sym_channel_type, - sym_shared_type, - sym_thread_type, - sym_atomic_type, - sym_generic_type, - sym_function_type, - [113599] = 22, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_STAR, - ACTIONS(3556), 1, - sym_identifier, - ACTIONS(3558), 1, - anon_sym_LPAREN, - ACTIONS(3560), 1, - anon_sym_fn, - ACTIONS(3562), 1, - anon_sym_STAR, - ACTIONS(3564), 1, - anon_sym_struct, - ACTIONS(3574), 1, - anon_sym_shared, - ACTIONS(3576), 1, + ACTIONS(5754), 1, anon_sym_map_LBRACK, - ACTIONS(3578), 1, - anon_sym_chan, - ACTIONS(3580), 1, - anon_sym_thread, - ACTIONS(3582), 1, - anon_sym_atomic, - ACTIONS(5728), 1, - anon_sym_QMARK, - ACTIONS(5730), 1, - anon_sym_BANG, - ACTIONS(5732), 1, - anon_sym_LBRACK2, - ACTIONS(5734), 1, - anon_sym_AMP, - STATE(1322), 1, + STATE(1015), 1, sym_plain_type, - STATE(4355), 1, + STATE(4349), 1, sym_reference_expression, - STATE(1278), 2, + STATE(985), 2, sym_type_reference_expression, sym_qualified_type, - STATE(3168), 2, + STATE(3169), 2, sym_line_comment, sym_block_comment, - STATE(1357), 4, + STATE(1066), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(1360), 12, + STATE(1030), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -284828,55 +284941,55 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [113682] = 22, + [113629] = 22, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(3420), 1, + ACTIONS(1195), 1, sym_identifier, - ACTIONS(3634), 1, - anon_sym_struct, - ACTIONS(5484), 1, + ACTIONS(1199), 1, anon_sym_fn, - ACTIONS(5496), 1, + ACTIONS(1203), 1, + anon_sym_struct, + ACTIONS(1213), 1, anon_sym_shared, - ACTIONS(5500), 1, + ACTIONS(1217), 1, anon_sym_chan, - ACTIONS(5502), 1, + ACTIONS(1219), 1, anon_sym_thread, - ACTIONS(5504), 1, + ACTIONS(1221), 1, anon_sym_atomic, - ACTIONS(5584), 1, + ACTIONS(5742), 1, anon_sym_LPAREN, - ACTIONS(5588), 1, + ACTIONS(5744), 1, anon_sym_STAR, - ACTIONS(5590), 1, + ACTIONS(5746), 1, anon_sym_QMARK, - ACTIONS(5592), 1, + ACTIONS(5748), 1, anon_sym_BANG, - ACTIONS(5594), 1, + ACTIONS(5750), 1, anon_sym_LBRACK2, - ACTIONS(5596), 1, + ACTIONS(5752), 1, anon_sym_AMP, - ACTIONS(5598), 1, + ACTIONS(5754), 1, anon_sym_map_LBRACK, - STATE(1632), 1, + STATE(1020), 1, sym_plain_type, - STATE(4341), 1, + STATE(4349), 1, sym_reference_expression, - STATE(3169), 2, - sym_line_comment, - sym_block_comment, - STATE(3286), 2, + STATE(985), 2, sym_type_reference_expression, sym_qualified_type, - STATE(1635), 4, + STATE(3170), 2, + sym_line_comment, + sym_block_comment, + STATE(1066), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(1629), 12, + STATE(1030), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -284889,7 +285002,7 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [113765] = 22, + [113712] = 22, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, @@ -284904,40 +285017,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_thread, ACTIONS(91), 1, anon_sym_atomic, - ACTIONS(597), 1, + ACTIONS(565), 1, sym_identifier, - ACTIONS(603), 1, + ACTIONS(571), 1, anon_sym_fn, - ACTIONS(607), 1, + ACTIONS(575), 1, anon_sym_struct, - ACTIONS(615), 1, + ACTIONS(583), 1, anon_sym_shared, - ACTIONS(3586), 1, + ACTIONS(3564), 1, anon_sym_LPAREN, - ACTIONS(3588), 1, + ACTIONS(3566), 1, anon_sym_STAR, - ACTIONS(5302), 1, + ACTIONS(5308), 1, anon_sym_BANG, - ACTIONS(5304), 1, + ACTIONS(5310), 1, anon_sym_LBRACK2, - ACTIONS(5306), 1, + ACTIONS(5312), 1, anon_sym_AMP, - STATE(4492), 1, + STATE(4380), 1, sym_plain_type, - STATE(4495), 1, + STATE(4498), 1, sym_reference_expression, - STATE(3170), 2, + STATE(3171), 2, sym_line_comment, sym_block_comment, - STATE(3541), 2, + STATE(3460), 2, sym_type_reference_expression, sym_qualified_type, - STATE(2302), 4, + STATE(2360), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(2303), 12, + STATE(2362), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -284950,55 +285063,55 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [113848] = 22, + [113795] = 22, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(4519), 1, + ACTIONS(3789), 1, sym_identifier, - ACTIONS(4521), 1, + ACTIONS(3791), 1, anon_sym_LPAREN, - ACTIONS(4523), 1, + ACTIONS(3793), 1, anon_sym_fn, - ACTIONS(4525), 1, - anon_sym_STAR, - ACTIONS(4527), 1, + ACTIONS(3797), 1, anon_sym_struct, - ACTIONS(4537), 1, + ACTIONS(3807), 1, anon_sym_shared, - ACTIONS(4539), 1, + ACTIONS(3809), 1, anon_sym_map_LBRACK, - ACTIONS(4541), 1, + ACTIONS(3811), 1, anon_sym_chan, - ACTIONS(4543), 1, + ACTIONS(3813), 1, anon_sym_thread, - ACTIONS(4545), 1, + ACTIONS(3815), 1, anon_sym_atomic, - ACTIONS(5754), 1, + ACTIONS(5764), 1, + anon_sym_STAR, + ACTIONS(5766), 1, anon_sym_QMARK, - ACTIONS(5756), 1, + ACTIONS(5768), 1, anon_sym_BANG, - ACTIONS(5758), 1, + ACTIONS(5770), 1, anon_sym_LBRACK2, - ACTIONS(5760), 1, + ACTIONS(5772), 1, anon_sym_AMP, - STATE(2738), 1, + STATE(2095), 1, sym_plain_type, - STATE(4476), 1, + STATE(4370), 1, sym_reference_expression, - STATE(2602), 2, + STATE(1909), 2, sym_type_reference_expression, sym_qualified_type, - STATE(3171), 2, + STATE(3172), 2, sym_line_comment, sym_block_comment, - STATE(2696), 4, + STATE(1945), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(2697), 12, + STATE(1949), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -285011,55 +285124,55 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [113931] = 22, + [113878] = 22, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(4519), 1, + ACTIONS(3454), 1, sym_identifier, - ACTIONS(4521), 1, - anon_sym_LPAREN, - ACTIONS(4523), 1, + ACTIONS(3458), 1, anon_sym_fn, - ACTIONS(4525), 1, - anon_sym_STAR, - ACTIONS(4527), 1, + ACTIONS(3462), 1, anon_sym_struct, - ACTIONS(4537), 1, + ACTIONS(3472), 1, anon_sym_shared, - ACTIONS(4539), 1, - anon_sym_map_LBRACK, - ACTIONS(4541), 1, + ACTIONS(3476), 1, anon_sym_chan, - ACTIONS(4543), 1, + ACTIONS(3478), 1, anon_sym_thread, - ACTIONS(4545), 1, + ACTIONS(3480), 1, anon_sym_atomic, - ACTIONS(5754), 1, + ACTIONS(5786), 1, + anon_sym_LPAREN, + ACTIONS(5788), 1, + anon_sym_STAR, + ACTIONS(5790), 1, anon_sym_QMARK, - ACTIONS(5756), 1, + ACTIONS(5792), 1, anon_sym_BANG, - ACTIONS(5758), 1, + ACTIONS(5794), 1, anon_sym_LBRACK2, - ACTIONS(5760), 1, + ACTIONS(5796), 1, anon_sym_AMP, - STATE(2727), 1, + ACTIONS(5798), 1, + anon_sym_map_LBRACK, + STATE(1177), 1, sym_plain_type, - STATE(4476), 1, + STATE(4412), 1, sym_reference_expression, - STATE(2602), 2, + STATE(1132), 2, sym_type_reference_expression, sym_qualified_type, - STATE(3172), 2, + STATE(3173), 2, sym_line_comment, sym_block_comment, - STATE(2696), 4, + STATE(1214), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(2697), 12, + STATE(1225), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -285072,55 +285185,55 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [114014] = 22, + [113961] = 22, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(47), 1, - anon_sym_QMARK, - ACTIONS(85), 1, - anon_sym_map_LBRACK, - ACTIONS(87), 1, - anon_sym_chan, - ACTIONS(89), 1, - anon_sym_thread, - ACTIONS(91), 1, - anon_sym_atomic, - ACTIONS(597), 1, + ACTIONS(3698), 1, sym_identifier, - ACTIONS(603), 1, + ACTIONS(3702), 1, anon_sym_fn, - ACTIONS(607), 1, + ACTIONS(3706), 1, anon_sym_struct, - ACTIONS(615), 1, + ACTIONS(3716), 1, anon_sym_shared, - ACTIONS(3586), 1, + ACTIONS(3720), 1, + anon_sym_chan, + ACTIONS(3722), 1, + anon_sym_thread, + ACTIONS(3724), 1, + anon_sym_atomic, + ACTIONS(5682), 1, anon_sym_LPAREN, - ACTIONS(3588), 1, + ACTIONS(5684), 1, anon_sym_STAR, - ACTIONS(5302), 1, + ACTIONS(5686), 1, + anon_sym_QMARK, + ACTIONS(5688), 1, anon_sym_BANG, - ACTIONS(5304), 1, + ACTIONS(5690), 1, anon_sym_LBRACK2, - ACTIONS(5306), 1, + ACTIONS(5692), 1, anon_sym_AMP, - STATE(2294), 1, + ACTIONS(5694), 1, + anon_sym_map_LBRACK, + STATE(1812), 1, sym_plain_type, - STATE(4495), 1, + STATE(4454), 1, sym_reference_expression, - STATE(3173), 2, - sym_line_comment, - sym_block_comment, - STATE(3541), 2, + STATE(1751), 2, sym_type_reference_expression, sym_qualified_type, - STATE(2302), 4, + STATE(3174), 2, + sym_line_comment, + sym_block_comment, + STATE(1842), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(2303), 12, + STATE(1841), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -285133,55 +285246,55 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [114097] = 22, + [114044] = 22, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(3783), 1, + ACTIONS(4114), 1, sym_identifier, - ACTIONS(3785), 1, - anon_sym_LPAREN, - ACTIONS(3787), 1, + ACTIONS(4118), 1, anon_sym_fn, - ACTIONS(3791), 1, + ACTIONS(4122), 1, anon_sym_struct, - ACTIONS(3801), 1, + ACTIONS(4132), 1, anon_sym_shared, - ACTIONS(3803), 1, - anon_sym_map_LBRACK, - ACTIONS(3805), 1, + ACTIONS(4136), 1, anon_sym_chan, - ACTIONS(3807), 1, + ACTIONS(4138), 1, anon_sym_thread, - ACTIONS(3809), 1, + ACTIONS(4140), 1, anon_sym_atomic, - ACTIONS(5662), 1, + ACTIONS(5696), 1, + anon_sym_LPAREN, + ACTIONS(5698), 1, anon_sym_STAR, - ACTIONS(5664), 1, + ACTIONS(5700), 1, anon_sym_QMARK, - ACTIONS(5666), 1, + ACTIONS(5702), 1, anon_sym_BANG, - ACTIONS(5668), 1, + ACTIONS(5704), 1, anon_sym_LBRACK2, - ACTIONS(5670), 1, + ACTIONS(5706), 1, anon_sym_AMP, - STATE(1935), 1, + ACTIONS(5708), 1, + anon_sym_map_LBRACK, + STATE(2601), 1, sym_plain_type, - STATE(4430), 1, + STATE(4391), 1, sym_reference_expression, - STATE(1908), 2, + STATE(2446), 2, sym_type_reference_expression, sym_qualified_type, - STATE(3174), 2, + STATE(3175), 2, sym_line_comment, sym_block_comment, - STATE(1930), 4, + STATE(2471), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(1929), 12, + STATE(2472), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -285194,55 +285307,55 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [114180] = 22, + [114127] = 22, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(3755), 1, + ACTIONS(4114), 1, sym_identifier, - ACTIONS(3757), 1, - anon_sym_LPAREN, - ACTIONS(3759), 1, + ACTIONS(4118), 1, anon_sym_fn, - ACTIONS(3763), 1, + ACTIONS(4122), 1, anon_sym_struct, - ACTIONS(3773), 1, + ACTIONS(4132), 1, anon_sym_shared, - ACTIONS(3775), 1, - anon_sym_map_LBRACK, - ACTIONS(3777), 1, + ACTIONS(4136), 1, anon_sym_chan, - ACTIONS(3779), 1, + ACTIONS(4138), 1, anon_sym_thread, - ACTIONS(3781), 1, + ACTIONS(4140), 1, anon_sym_atomic, - ACTIONS(5744), 1, + ACTIONS(5696), 1, + anon_sym_LPAREN, + ACTIONS(5698), 1, anon_sym_STAR, - ACTIONS(5746), 1, + ACTIONS(5700), 1, anon_sym_QMARK, - ACTIONS(5748), 1, + ACTIONS(5702), 1, anon_sym_BANG, - ACTIONS(5750), 1, + ACTIONS(5704), 1, anon_sym_LBRACK2, - ACTIONS(5752), 1, + ACTIONS(5706), 1, anon_sym_AMP, - STATE(2007), 1, + ACTIONS(5708), 1, + anon_sym_map_LBRACK, + STATE(2498), 1, sym_plain_type, - STATE(4376), 1, + STATE(4391), 1, sym_reference_expression, - STATE(1910), 2, + STATE(2446), 2, sym_type_reference_expression, sym_qualified_type, - STATE(3175), 2, + STATE(3176), 2, sym_line_comment, sym_block_comment, - STATE(2003), 4, + STATE(2471), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(2002), 12, + STATE(2472), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -285255,55 +285368,55 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [114263] = 22, + [114210] = 22, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(3755), 1, + ACTIONS(3630), 1, sym_identifier, - ACTIONS(3757), 1, - anon_sym_LPAREN, - ACTIONS(3759), 1, + ACTIONS(3634), 1, anon_sym_fn, - ACTIONS(3763), 1, + ACTIONS(3638), 1, anon_sym_struct, - ACTIONS(3773), 1, + ACTIONS(3648), 1, anon_sym_shared, - ACTIONS(3775), 1, - anon_sym_map_LBRACK, - ACTIONS(3777), 1, + ACTIONS(3652), 1, anon_sym_chan, - ACTIONS(3779), 1, + ACTIONS(3654), 1, anon_sym_thread, - ACTIONS(3781), 1, + ACTIONS(3656), 1, anon_sym_atomic, - ACTIONS(5744), 1, + ACTIONS(5590), 1, + anon_sym_LPAREN, + ACTIONS(5774), 1, anon_sym_STAR, - ACTIONS(5746), 1, + ACTIONS(5776), 1, anon_sym_QMARK, - ACTIONS(5748), 1, + ACTIONS(5778), 1, anon_sym_BANG, - ACTIONS(5750), 1, + ACTIONS(5780), 1, anon_sym_LBRACK2, - ACTIONS(5752), 1, + ACTIONS(5782), 1, anon_sym_AMP, - STATE(1979), 1, + ACTIONS(5784), 1, + anon_sym_map_LBRACK, + STATE(1673), 1, sym_plain_type, - STATE(4376), 1, + STATE(4378), 1, sym_reference_expression, - STATE(1910), 2, + STATE(1631), 2, sym_type_reference_expression, sym_qualified_type, - STATE(3176), 2, + STATE(3177), 2, sym_line_comment, sym_block_comment, - STATE(2003), 4, + STATE(1647), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(2002), 12, + STATE(1667), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -285316,55 +285429,55 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [114346] = 22, + [114293] = 22, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(47), 1, - anon_sym_QMARK, - ACTIONS(85), 1, - anon_sym_map_LBRACK, - ACTIONS(87), 1, - anon_sym_chan, - ACTIONS(89), 1, - anon_sym_thread, - ACTIONS(91), 1, - anon_sym_atomic, - ACTIONS(597), 1, + ACTIONS(4114), 1, sym_identifier, - ACTIONS(603), 1, + ACTIONS(4118), 1, anon_sym_fn, - ACTIONS(607), 1, + ACTIONS(4122), 1, anon_sym_struct, - ACTIONS(615), 1, + ACTIONS(4132), 1, anon_sym_shared, - ACTIONS(3586), 1, + ACTIONS(4136), 1, + anon_sym_chan, + ACTIONS(4138), 1, + anon_sym_thread, + ACTIONS(4140), 1, + anon_sym_atomic, + ACTIONS(5696), 1, anon_sym_LPAREN, - ACTIONS(3588), 1, + ACTIONS(5698), 1, anon_sym_STAR, - ACTIONS(5302), 1, + ACTIONS(5700), 1, + anon_sym_QMARK, + ACTIONS(5702), 1, anon_sym_BANG, - ACTIONS(5304), 1, + ACTIONS(5704), 1, anon_sym_LBRACK2, - ACTIONS(5306), 1, + ACTIONS(5706), 1, anon_sym_AMP, - STATE(2353), 1, + ACTIONS(5708), 1, + anon_sym_map_LBRACK, + STATE(2509), 1, sym_plain_type, - STATE(4495), 1, + STATE(4391), 1, sym_reference_expression, - STATE(3177), 2, - sym_line_comment, - sym_block_comment, - STATE(3541), 2, + STATE(2446), 2, sym_type_reference_expression, sym_qualified_type, - STATE(2302), 4, + STATE(3178), 2, + sym_line_comment, + sym_block_comment, + STATE(2471), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(2303), 12, + STATE(2472), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -285377,55 +285490,55 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [114429] = 22, + [114376] = 22, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(3783), 1, + ACTIONS(4114), 1, sym_identifier, - ACTIONS(3785), 1, - anon_sym_LPAREN, - ACTIONS(3787), 1, + ACTIONS(4118), 1, anon_sym_fn, - ACTIONS(3791), 1, + ACTIONS(4122), 1, anon_sym_struct, - ACTIONS(3801), 1, + ACTIONS(4132), 1, anon_sym_shared, - ACTIONS(3803), 1, - anon_sym_map_LBRACK, - ACTIONS(3805), 1, + ACTIONS(4136), 1, anon_sym_chan, - ACTIONS(3807), 1, + ACTIONS(4138), 1, anon_sym_thread, - ACTIONS(3809), 1, + ACTIONS(4140), 1, anon_sym_atomic, - ACTIONS(5662), 1, + ACTIONS(5696), 1, + anon_sym_LPAREN, + ACTIONS(5698), 1, anon_sym_STAR, - ACTIONS(5664), 1, + ACTIONS(5700), 1, anon_sym_QMARK, - ACTIONS(5666), 1, + ACTIONS(5702), 1, anon_sym_BANG, - ACTIONS(5668), 1, + ACTIONS(5704), 1, anon_sym_LBRACK2, - ACTIONS(5670), 1, + ACTIONS(5706), 1, anon_sym_AMP, - STATE(1967), 1, + ACTIONS(5708), 1, + anon_sym_map_LBRACK, + STATE(2546), 1, sym_plain_type, - STATE(4430), 1, + STATE(4391), 1, sym_reference_expression, - STATE(1908), 2, + STATE(2446), 2, sym_type_reference_expression, sym_qualified_type, - STATE(3178), 2, + STATE(3179), 2, sym_line_comment, sym_block_comment, - STATE(1930), 4, + STATE(2471), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(1929), 12, + STATE(2472), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -285438,55 +285551,55 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [114512] = 22, + [114459] = 22, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(47), 1, - anon_sym_QMARK, - ACTIONS(85), 1, - anon_sym_map_LBRACK, - ACTIONS(87), 1, - anon_sym_chan, - ACTIONS(89), 1, - anon_sym_thread, - ACTIONS(91), 1, - anon_sym_atomic, - ACTIONS(597), 1, + ACTIONS(3789), 1, sym_identifier, - ACTIONS(603), 1, + ACTIONS(3791), 1, + anon_sym_LPAREN, + ACTIONS(3793), 1, anon_sym_fn, - ACTIONS(607), 1, + ACTIONS(3797), 1, anon_sym_struct, - ACTIONS(615), 1, + ACTIONS(3807), 1, anon_sym_shared, - ACTIONS(3586), 1, - anon_sym_LPAREN, - ACTIONS(3588), 1, + ACTIONS(3809), 1, + anon_sym_map_LBRACK, + ACTIONS(3811), 1, + anon_sym_chan, + ACTIONS(3813), 1, + anon_sym_thread, + ACTIONS(3815), 1, + anon_sym_atomic, + ACTIONS(5764), 1, anon_sym_STAR, - ACTIONS(5302), 1, + ACTIONS(5766), 1, + anon_sym_QMARK, + ACTIONS(5768), 1, anon_sym_BANG, - ACTIONS(5304), 1, + ACTIONS(5770), 1, anon_sym_LBRACK2, - ACTIONS(5306), 1, + ACTIONS(5772), 1, anon_sym_AMP, - STATE(3976), 1, + STATE(2032), 1, sym_plain_type, - STATE(4495), 1, + STATE(4370), 1, sym_reference_expression, - STATE(3179), 2, - sym_line_comment, - sym_block_comment, - STATE(3541), 2, + STATE(1909), 2, sym_type_reference_expression, sym_qualified_type, - STATE(2302), 4, + STATE(3180), 2, + sym_line_comment, + sym_block_comment, + STATE(1945), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(2303), 12, + STATE(1949), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -285499,55 +285612,55 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [114595] = 22, + [114542] = 22, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(1191), 1, + ACTIONS(47), 1, + anon_sym_QMARK, + ACTIONS(85), 1, + anon_sym_map_LBRACK, + ACTIONS(87), 1, + anon_sym_chan, + ACTIONS(89), 1, + anon_sym_thread, + ACTIONS(91), 1, + anon_sym_atomic, + ACTIONS(565), 1, sym_identifier, - ACTIONS(1195), 1, + ACTIONS(571), 1, anon_sym_fn, - ACTIONS(1199), 1, + ACTIONS(575), 1, anon_sym_struct, - ACTIONS(1209), 1, + ACTIONS(583), 1, anon_sym_shared, - ACTIONS(1213), 1, - anon_sym_chan, - ACTIONS(1215), 1, - anon_sym_thread, - ACTIONS(1217), 1, - anon_sym_atomic, - ACTIONS(5686), 1, + ACTIONS(3564), 1, anon_sym_LPAREN, - ACTIONS(5688), 1, + ACTIONS(3566), 1, anon_sym_STAR, - ACTIONS(5690), 1, - anon_sym_QMARK, - ACTIONS(5692), 1, + ACTIONS(5308), 1, anon_sym_BANG, - ACTIONS(5694), 1, + ACTIONS(5310), 1, anon_sym_LBRACK2, - ACTIONS(5696), 1, + ACTIONS(5312), 1, anon_sym_AMP, - ACTIONS(5698), 1, - anon_sym_map_LBRACK, - STATE(1004), 1, - sym_plain_type, - STATE(4365), 1, + STATE(4498), 1, sym_reference_expression, - STATE(990), 2, - sym_type_reference_expression, - sym_qualified_type, - STATE(3180), 2, + STATE(4510), 1, + sym_plain_type, + STATE(3181), 2, sym_line_comment, sym_block_comment, - STATE(1020), 4, + STATE(3460), 2, + sym_type_reference_expression, + sym_qualified_type, + STATE(2360), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(1019), 12, + STATE(2362), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -285560,7 +285673,7 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [114678] = 22, + [114625] = 22, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, @@ -285575,40 +285688,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_thread, ACTIONS(91), 1, anon_sym_atomic, - ACTIONS(597), 1, + ACTIONS(565), 1, sym_identifier, - ACTIONS(603), 1, + ACTIONS(571), 1, anon_sym_fn, - ACTIONS(607), 1, + ACTIONS(575), 1, anon_sym_struct, - ACTIONS(615), 1, + ACTIONS(583), 1, anon_sym_shared, - ACTIONS(3586), 1, + ACTIONS(3564), 1, anon_sym_LPAREN, - ACTIONS(3588), 1, + ACTIONS(3566), 1, anon_sym_STAR, - ACTIONS(5302), 1, + ACTIONS(5308), 1, anon_sym_BANG, - ACTIONS(5304), 1, + ACTIONS(5310), 1, anon_sym_LBRACK2, - ACTIONS(5306), 1, + ACTIONS(5312), 1, anon_sym_AMP, - STATE(4016), 1, + STATE(4453), 1, sym_plain_type, - STATE(4495), 1, + STATE(4498), 1, sym_reference_expression, - STATE(3181), 2, + STATE(3182), 2, sym_line_comment, sym_block_comment, - STATE(3541), 2, + STATE(3460), 2, sym_type_reference_expression, sym_qualified_type, - STATE(2302), 4, + STATE(2360), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(2303), 12, + STATE(2362), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -285621,55 +285734,55 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [114761] = 22, + [114708] = 22, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(607), 1, + ACTIONS(575), 1, anon_sym_struct, - ACTIONS(3586), 1, + ACTIONS(3564), 1, anon_sym_LPAREN, - ACTIONS(3945), 1, + ACTIONS(3953), 1, sym_identifier, - ACTIONS(3947), 1, + ACTIONS(3955), 1, anon_sym_fn, - ACTIONS(3949), 1, + ACTIONS(3957), 1, anon_sym_STAR, - ACTIONS(3959), 1, + ACTIONS(3967), 1, anon_sym_shared, - ACTIONS(3961), 1, + ACTIONS(3969), 1, anon_sym_map_LBRACK, - ACTIONS(3963), 1, + ACTIONS(3971), 1, anon_sym_chan, - ACTIONS(3965), 1, + ACTIONS(3973), 1, anon_sym_thread, - ACTIONS(3967), 1, + ACTIONS(3975), 1, anon_sym_atomic, - ACTIONS(5736), 1, + ACTIONS(5724), 1, anon_sym_QMARK, - ACTIONS(5738), 1, + ACTIONS(5726), 1, anon_sym_BANG, - ACTIONS(5740), 1, + ACTIONS(5728), 1, anon_sym_LBRACK2, - ACTIONS(5742), 1, + ACTIONS(5730), 1, anon_sym_AMP, - STATE(2386), 1, + STATE(2330), 1, sym_plain_type, - STATE(4495), 1, + STATE(4498), 1, sym_reference_expression, STATE(2283), 2, sym_type_reference_expression, sym_qualified_type, - STATE(3182), 2, + STATE(3183), 2, sym_line_comment, sym_block_comment, - STATE(2302), 4, + STATE(2360), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(2303), 12, + STATE(2362), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -285682,55 +285795,55 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [114844] = 22, + [114791] = 22, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(3556), 1, - sym_identifier, - ACTIONS(3558), 1, + ACTIONS(575), 1, + anon_sym_struct, + ACTIONS(3564), 1, anon_sym_LPAREN, - ACTIONS(3560), 1, + ACTIONS(3953), 1, + sym_identifier, + ACTIONS(3955), 1, anon_sym_fn, - ACTIONS(3562), 1, + ACTIONS(3957), 1, anon_sym_STAR, - ACTIONS(3564), 1, - anon_sym_struct, - ACTIONS(3574), 1, + ACTIONS(3967), 1, anon_sym_shared, - ACTIONS(3576), 1, + ACTIONS(3969), 1, anon_sym_map_LBRACK, - ACTIONS(3578), 1, + ACTIONS(3971), 1, anon_sym_chan, - ACTIONS(3580), 1, + ACTIONS(3973), 1, anon_sym_thread, - ACTIONS(3582), 1, + ACTIONS(3975), 1, anon_sym_atomic, - ACTIONS(5728), 1, + ACTIONS(5724), 1, anon_sym_QMARK, - ACTIONS(5730), 1, + ACTIONS(5726), 1, anon_sym_BANG, - ACTIONS(5732), 1, + ACTIONS(5728), 1, anon_sym_LBRACK2, - ACTIONS(5734), 1, + ACTIONS(5730), 1, anon_sym_AMP, - STATE(1295), 1, + STATE(2344), 1, sym_plain_type, - STATE(4355), 1, + STATE(4498), 1, sym_reference_expression, - STATE(1278), 2, + STATE(2283), 2, sym_type_reference_expression, sym_qualified_type, - STATE(3183), 2, + STATE(3184), 2, sym_line_comment, sym_block_comment, - STATE(1357), 4, + STATE(2360), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(1360), 12, + STATE(2362), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -285743,55 +285856,55 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [114927] = 22, + [114874] = 22, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(3596), 1, + ACTIONS(3602), 1, sym_identifier, - ACTIONS(3600), 1, + ACTIONS(3606), 1, anon_sym_fn, - ACTIONS(3604), 1, + ACTIONS(3610), 1, anon_sym_struct, - ACTIONS(3614), 1, + ACTIONS(3620), 1, anon_sym_shared, - ACTIONS(3618), 1, + ACTIONS(3624), 1, anon_sym_chan, - ACTIONS(3620), 1, + ACTIONS(3626), 1, anon_sym_thread, - ACTIONS(3622), 1, + ACTIONS(3628), 1, anon_sym_atomic, - ACTIONS(5568), 1, + ACTIONS(5574), 1, anon_sym_LPAREN, - ACTIONS(5572), 1, + ACTIONS(5578), 1, anon_sym_STAR, - ACTIONS(5574), 1, + ACTIONS(5580), 1, anon_sym_QMARK, - ACTIONS(5576), 1, + ACTIONS(5582), 1, anon_sym_BANG, - ACTIONS(5578), 1, + ACTIONS(5584), 1, anon_sym_LBRACK2, - ACTIONS(5580), 1, + ACTIONS(5586), 1, anon_sym_AMP, - ACTIONS(5582), 1, + ACTIONS(5588), 1, anon_sym_map_LBRACK, - STATE(1457), 1, + STATE(1473), 1, sym_plain_type, - STATE(4459), 1, + STATE(4496), 1, sym_reference_expression, - STATE(1402), 2, + STATE(1401), 2, sym_type_reference_expression, sym_qualified_type, - STATE(3184), 2, + STATE(3185), 2, sym_line_comment, sym_block_comment, - STATE(1418), 4, + STATE(1444), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(1419), 12, + STATE(1445), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -285804,55 +285917,55 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [115010] = 22, + [114957] = 22, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(565), 1, + ACTIONS(1195), 1, sym_identifier, - ACTIONS(571), 1, + ACTIONS(1199), 1, anon_sym_fn, - ACTIONS(575), 1, + ACTIONS(1203), 1, anon_sym_struct, - ACTIONS(585), 1, + ACTIONS(1213), 1, anon_sym_shared, - ACTIONS(589), 1, + ACTIONS(1217), 1, anon_sym_chan, - ACTIONS(591), 1, + ACTIONS(1219), 1, anon_sym_thread, - ACTIONS(593), 1, + ACTIONS(1221), 1, anon_sym_atomic, - ACTIONS(5700), 1, + ACTIONS(5742), 1, anon_sym_LPAREN, - ACTIONS(5702), 1, + ACTIONS(5744), 1, anon_sym_STAR, - ACTIONS(5704), 1, + ACTIONS(5746), 1, anon_sym_QMARK, - ACTIONS(5706), 1, + ACTIONS(5748), 1, anon_sym_BANG, - ACTIONS(5708), 1, + ACTIONS(5750), 1, anon_sym_LBRACK2, - ACTIONS(5710), 1, + ACTIONS(5752), 1, anon_sym_AMP, - ACTIONS(5712), 1, + ACTIONS(5754), 1, anon_sym_map_LBRACK, - STATE(455), 1, + STATE(1052), 1, sym_plain_type, - STATE(4403), 1, + STATE(4349), 1, sym_reference_expression, - STATE(252), 2, + STATE(985), 2, sym_type_reference_expression, sym_qualified_type, - STATE(3185), 2, + STATE(3186), 2, sym_line_comment, sym_block_comment, - STATE(445), 4, + STATE(1066), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(448), 12, + STATE(1030), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -285865,7 +285978,7 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [115093] = 22, + [115040] = 22, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, @@ -285880,40 +285993,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_thread, ACTIONS(91), 1, anon_sym_atomic, - ACTIONS(597), 1, + ACTIONS(565), 1, sym_identifier, - ACTIONS(603), 1, + ACTIONS(571), 1, anon_sym_fn, - ACTIONS(607), 1, + ACTIONS(575), 1, anon_sym_struct, - ACTIONS(615), 1, + ACTIONS(583), 1, anon_sym_shared, - ACTIONS(3586), 1, + ACTIONS(3564), 1, anon_sym_LPAREN, - ACTIONS(3588), 1, + ACTIONS(3566), 1, anon_sym_STAR, - ACTIONS(5302), 1, + ACTIONS(5308), 1, anon_sym_BANG, - ACTIONS(5304), 1, + ACTIONS(5310), 1, anon_sym_LBRACK2, - ACTIONS(5306), 1, + ACTIONS(5312), 1, anon_sym_AMP, - STATE(4495), 1, - sym_reference_expression, - STATE(4553), 1, + STATE(3759), 1, sym_plain_type, - STATE(3186), 2, + STATE(4498), 1, + sym_reference_expression, + STATE(3187), 2, sym_line_comment, sym_block_comment, - STATE(3541), 2, + STATE(3460), 2, sym_type_reference_expression, sym_qualified_type, - STATE(2302), 4, + STATE(2360), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(2303), 12, + STATE(2362), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -285926,116 +286039,55 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [115176] = 22, + [115123] = 22, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(3783), 1, + ACTIONS(587), 1, sym_identifier, - ACTIONS(3785), 1, - anon_sym_LPAREN, - ACTIONS(3787), 1, + ACTIONS(593), 1, anon_sym_fn, - ACTIONS(3791), 1, + ACTIONS(597), 1, anon_sym_struct, - ACTIONS(3801), 1, + ACTIONS(607), 1, anon_sym_shared, - ACTIONS(3803), 1, - anon_sym_map_LBRACK, - ACTIONS(3805), 1, + ACTIONS(611), 1, anon_sym_chan, - ACTIONS(3807), 1, + ACTIONS(613), 1, anon_sym_thread, - ACTIONS(3809), 1, + ACTIONS(615), 1, anon_sym_atomic, - ACTIONS(5662), 1, - anon_sym_STAR, - ACTIONS(5664), 1, - anon_sym_QMARK, - ACTIONS(5666), 1, - anon_sym_BANG, ACTIONS(5668), 1, - anon_sym_LBRACK2, - ACTIONS(5670), 1, - anon_sym_AMP, - STATE(2038), 1, - sym_plain_type, - STATE(4430), 1, - sym_reference_expression, - STATE(1908), 2, - sym_type_reference_expression, - sym_qualified_type, - STATE(3187), 2, - sym_line_comment, - sym_block_comment, - STATE(1930), 4, - sym__plain_type_without_special, - sym_multi_return_type, - sym_result_type, - sym_option_type, - STATE(1929), 12, - sym_anon_struct_type, - sym_fixed_array_type, - sym_array_type, - sym_pointer_type, - sym_wrong_pointer_type, - sym_map_type, - sym_channel_type, - sym_shared_type, - sym_thread_type, - sym_atomic_type, - sym_generic_type, - sym_function_type, - [115259] = 22, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_STAR, - ACTIONS(4014), 1, - sym_identifier, - ACTIONS(4018), 1, - anon_sym_fn, - ACTIONS(4022), 1, - anon_sym_struct, - ACTIONS(4032), 1, - anon_sym_shared, - ACTIONS(4036), 1, - anon_sym_chan, - ACTIONS(4038), 1, - anon_sym_thread, - ACTIONS(4040), 1, - anon_sym_atomic, - ACTIONS(5672), 1, anon_sym_LPAREN, - ACTIONS(5674), 1, + ACTIONS(5670), 1, anon_sym_STAR, - ACTIONS(5676), 1, + ACTIONS(5672), 1, anon_sym_QMARK, - ACTIONS(5678), 1, + ACTIONS(5674), 1, anon_sym_BANG, - ACTIONS(5680), 1, + ACTIONS(5676), 1, anon_sym_LBRACK2, - ACTIONS(5682), 1, + ACTIONS(5678), 1, anon_sym_AMP, - ACTIONS(5684), 1, + ACTIONS(5680), 1, anon_sym_map_LBRACK, - STATE(2516), 1, + STATE(430), 1, sym_plain_type, - STATE(4388), 1, + STATE(4403), 1, sym_reference_expression, - STATE(2432), 2, + STATE(244), 2, sym_type_reference_expression, sym_qualified_type, STATE(3188), 2, sym_line_comment, sym_block_comment, - STATE(2492), 4, + STATE(387), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(2493), 12, + STATE(388), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -286048,55 +286100,55 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [115342] = 22, + [115206] = 22, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(3783), 1, + ACTIONS(3602), 1, sym_identifier, - ACTIONS(3785), 1, - anon_sym_LPAREN, - ACTIONS(3787), 1, + ACTIONS(3606), 1, anon_sym_fn, - ACTIONS(3791), 1, + ACTIONS(3610), 1, anon_sym_struct, - ACTIONS(3801), 1, + ACTIONS(3620), 1, anon_sym_shared, - ACTIONS(3803), 1, - anon_sym_map_LBRACK, - ACTIONS(3805), 1, + ACTIONS(3624), 1, anon_sym_chan, - ACTIONS(3807), 1, + ACTIONS(3626), 1, anon_sym_thread, - ACTIONS(3809), 1, + ACTIONS(3628), 1, anon_sym_atomic, - ACTIONS(5662), 1, + ACTIONS(5574), 1, + anon_sym_LPAREN, + ACTIONS(5578), 1, anon_sym_STAR, - ACTIONS(5664), 1, + ACTIONS(5580), 1, anon_sym_QMARK, - ACTIONS(5666), 1, + ACTIONS(5582), 1, anon_sym_BANG, - ACTIONS(5668), 1, + ACTIONS(5584), 1, anon_sym_LBRACK2, - ACTIONS(5670), 1, + ACTIONS(5586), 1, anon_sym_AMP, - STATE(2112), 1, + ACTIONS(5588), 1, + anon_sym_map_LBRACK, + STATE(1471), 1, sym_plain_type, - STATE(4430), 1, + STATE(4496), 1, sym_reference_expression, - STATE(1908), 2, + STATE(1401), 2, sym_type_reference_expression, sym_qualified_type, STATE(3189), 2, sym_line_comment, sym_block_comment, - STATE(1930), 4, + STATE(1444), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(1929), 12, + STATE(1445), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -286109,55 +286161,55 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [115425] = 22, + [115289] = 22, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(3596), 1, + ACTIONS(3602), 1, sym_identifier, - ACTIONS(3600), 1, + ACTIONS(3606), 1, anon_sym_fn, - ACTIONS(3604), 1, + ACTIONS(3610), 1, anon_sym_struct, - ACTIONS(3614), 1, + ACTIONS(3620), 1, anon_sym_shared, - ACTIONS(3618), 1, + ACTIONS(3624), 1, anon_sym_chan, - ACTIONS(3620), 1, + ACTIONS(3626), 1, anon_sym_thread, - ACTIONS(3622), 1, + ACTIONS(3628), 1, anon_sym_atomic, - ACTIONS(5568), 1, + ACTIONS(5574), 1, anon_sym_LPAREN, - ACTIONS(5572), 1, + ACTIONS(5578), 1, anon_sym_STAR, - ACTIONS(5574), 1, + ACTIONS(5580), 1, anon_sym_QMARK, - ACTIONS(5576), 1, + ACTIONS(5582), 1, anon_sym_BANG, - ACTIONS(5578), 1, + ACTIONS(5584), 1, anon_sym_LBRACK2, - ACTIONS(5580), 1, + ACTIONS(5586), 1, anon_sym_AMP, - ACTIONS(5582), 1, + ACTIONS(5588), 1, anon_sym_map_LBRACK, - STATE(1471), 1, + STATE(1466), 1, sym_plain_type, - STATE(4459), 1, + STATE(4496), 1, sym_reference_expression, - STATE(1402), 2, + STATE(1401), 2, sym_type_reference_expression, sym_qualified_type, STATE(3190), 2, sym_line_comment, sym_block_comment, - STATE(1418), 4, + STATE(1444), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(1419), 12, + STATE(1445), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -286170,55 +286222,55 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [115508] = 22, + [115372] = 22, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(4519), 1, + ACTIONS(1195), 1, sym_identifier, - ACTIONS(4521), 1, - anon_sym_LPAREN, - ACTIONS(4523), 1, + ACTIONS(1199), 1, anon_sym_fn, - ACTIONS(4525), 1, - anon_sym_STAR, - ACTIONS(4527), 1, + ACTIONS(1203), 1, anon_sym_struct, - ACTIONS(4537), 1, - anon_sym_shared, - ACTIONS(4539), 1, - anon_sym_map_LBRACK, - ACTIONS(4541), 1, + ACTIONS(1213), 1, + anon_sym_shared, + ACTIONS(1217), 1, anon_sym_chan, - ACTIONS(4543), 1, + ACTIONS(1219), 1, anon_sym_thread, - ACTIONS(4545), 1, + ACTIONS(1221), 1, anon_sym_atomic, - ACTIONS(5754), 1, + ACTIONS(5742), 1, + anon_sym_LPAREN, + ACTIONS(5744), 1, + anon_sym_STAR, + ACTIONS(5746), 1, anon_sym_QMARK, - ACTIONS(5756), 1, + ACTIONS(5748), 1, anon_sym_BANG, - ACTIONS(5758), 1, + ACTIONS(5750), 1, anon_sym_LBRACK2, - ACTIONS(5760), 1, + ACTIONS(5752), 1, anon_sym_AMP, - STATE(2710), 1, + ACTIONS(5754), 1, + anon_sym_map_LBRACK, + STATE(1055), 1, sym_plain_type, - STATE(4476), 1, + STATE(4349), 1, sym_reference_expression, - STATE(2602), 2, + STATE(985), 2, sym_type_reference_expression, sym_qualified_type, STATE(3191), 2, sym_line_comment, sym_block_comment, - STATE(2696), 4, + STATE(1066), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(2697), 12, + STATE(1030), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -286231,55 +286283,55 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [115591] = 22, + [115455] = 22, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(4519), 1, + ACTIONS(3426), 1, sym_identifier, - ACTIONS(4521), 1, - anon_sym_LPAREN, - ACTIONS(4523), 1, - anon_sym_fn, - ACTIONS(4525), 1, - anon_sym_STAR, - ACTIONS(4527), 1, + ACTIONS(3638), 1, anon_sym_struct, - ACTIONS(4537), 1, + ACTIONS(5486), 1, + anon_sym_fn, + ACTIONS(5498), 1, anon_sym_shared, - ACTIONS(4539), 1, - anon_sym_map_LBRACK, - ACTIONS(4541), 1, + ACTIONS(5502), 1, anon_sym_chan, - ACTIONS(4543), 1, + ACTIONS(5504), 1, anon_sym_thread, - ACTIONS(4545), 1, + ACTIONS(5506), 1, anon_sym_atomic, - ACTIONS(5754), 1, + ACTIONS(5590), 1, + anon_sym_LPAREN, + ACTIONS(5594), 1, + anon_sym_STAR, + ACTIONS(5596), 1, anon_sym_QMARK, - ACTIONS(5756), 1, + ACTIONS(5598), 1, anon_sym_BANG, - ACTIONS(5758), 1, + ACTIONS(5600), 1, anon_sym_LBRACK2, - ACTIONS(5760), 1, + ACTIONS(5602), 1, anon_sym_AMP, - STATE(2725), 1, + ACTIONS(5604), 1, + anon_sym_map_LBRACK, + STATE(1664), 1, sym_plain_type, - STATE(4476), 1, + STATE(4351), 1, sym_reference_expression, - STATE(2602), 2, - sym_type_reference_expression, - sym_qualified_type, STATE(3192), 2, sym_line_comment, sym_block_comment, - STATE(2696), 4, + STATE(3305), 2, + sym_type_reference_expression, + sym_qualified_type, + STATE(1647), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(2697), 12, + STATE(1667), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -286292,55 +286344,55 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [115674] = 22, + [115538] = 22, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(47), 1, - anon_sym_QMARK, - ACTIONS(85), 1, - anon_sym_map_LBRACK, - ACTIONS(87), 1, - anon_sym_chan, - ACTIONS(89), 1, - anon_sym_thread, - ACTIONS(91), 1, - anon_sym_atomic, - ACTIONS(597), 1, + ACTIONS(1195), 1, sym_identifier, - ACTIONS(603), 1, + ACTIONS(1199), 1, anon_sym_fn, - ACTIONS(607), 1, + ACTIONS(1203), 1, anon_sym_struct, - ACTIONS(615), 1, + ACTIONS(1213), 1, anon_sym_shared, - ACTIONS(3586), 1, + ACTIONS(1217), 1, + anon_sym_chan, + ACTIONS(1219), 1, + anon_sym_thread, + ACTIONS(1221), 1, + anon_sym_atomic, + ACTIONS(5742), 1, anon_sym_LPAREN, - ACTIONS(3588), 1, + ACTIONS(5744), 1, anon_sym_STAR, - ACTIONS(5302), 1, + ACTIONS(5746), 1, + anon_sym_QMARK, + ACTIONS(5748), 1, anon_sym_BANG, - ACTIONS(5304), 1, + ACTIONS(5750), 1, anon_sym_LBRACK2, - ACTIONS(5306), 1, + ACTIONS(5752), 1, anon_sym_AMP, - STATE(3775), 1, + ACTIONS(5754), 1, + anon_sym_map_LBRACK, + STATE(1063), 1, sym_plain_type, - STATE(4495), 1, + STATE(4349), 1, sym_reference_expression, + STATE(985), 2, + sym_type_reference_expression, + sym_qualified_type, STATE(3193), 2, sym_line_comment, sym_block_comment, - STATE(3541), 2, - sym_type_reference_expression, - sym_qualified_type, - STATE(2302), 4, + STATE(1066), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(2303), 12, + STATE(1030), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -286353,55 +286405,55 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [115757] = 22, + [115621] = 22, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(47), 1, - anon_sym_QMARK, - ACTIONS(85), 1, - anon_sym_map_LBRACK, - ACTIONS(87), 1, - anon_sym_chan, - ACTIONS(89), 1, - anon_sym_thread, - ACTIONS(91), 1, - anon_sym_atomic, - ACTIONS(597), 1, + ACTIONS(3789), 1, sym_identifier, - ACTIONS(603), 1, + ACTIONS(3791), 1, + anon_sym_LPAREN, + ACTIONS(3793), 1, anon_sym_fn, - ACTIONS(607), 1, + ACTIONS(3797), 1, anon_sym_struct, - ACTIONS(615), 1, + ACTIONS(3807), 1, anon_sym_shared, - ACTIONS(3586), 1, - anon_sym_LPAREN, - ACTIONS(3588), 1, + ACTIONS(3809), 1, + anon_sym_map_LBRACK, + ACTIONS(3811), 1, + anon_sym_chan, + ACTIONS(3813), 1, + anon_sym_thread, + ACTIONS(3815), 1, + anon_sym_atomic, + ACTIONS(5764), 1, anon_sym_STAR, - ACTIONS(5302), 1, + ACTIONS(5766), 1, + anon_sym_QMARK, + ACTIONS(5768), 1, anon_sym_BANG, - ACTIONS(5304), 1, + ACTIONS(5770), 1, anon_sym_LBRACK2, - ACTIONS(5306), 1, + ACTIONS(5772), 1, anon_sym_AMP, - STATE(3951), 1, + STATE(1995), 1, sym_plain_type, - STATE(4495), 1, + STATE(4370), 1, sym_reference_expression, + STATE(1909), 2, + sym_type_reference_expression, + sym_qualified_type, STATE(3194), 2, sym_line_comment, sym_block_comment, - STATE(3541), 2, - sym_type_reference_expression, - sym_qualified_type, - STATE(2302), 4, + STATE(1945), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(2303), 12, + STATE(1949), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -286414,55 +286466,55 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [115840] = 22, + [115704] = 22, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(4014), 1, + ACTIONS(587), 1, sym_identifier, - ACTIONS(4018), 1, + ACTIONS(593), 1, anon_sym_fn, - ACTIONS(4022), 1, + ACTIONS(597), 1, anon_sym_struct, - ACTIONS(4032), 1, + ACTIONS(607), 1, anon_sym_shared, - ACTIONS(4036), 1, + ACTIONS(611), 1, anon_sym_chan, - ACTIONS(4038), 1, + ACTIONS(613), 1, anon_sym_thread, - ACTIONS(4040), 1, + ACTIONS(615), 1, anon_sym_atomic, - ACTIONS(5672), 1, + ACTIONS(5668), 1, anon_sym_LPAREN, - ACTIONS(5674), 1, + ACTIONS(5670), 1, anon_sym_STAR, - ACTIONS(5676), 1, + ACTIONS(5672), 1, anon_sym_QMARK, - ACTIONS(5678), 1, + ACTIONS(5674), 1, anon_sym_BANG, - ACTIONS(5680), 1, + ACTIONS(5676), 1, anon_sym_LBRACK2, - ACTIONS(5682), 1, + ACTIONS(5678), 1, anon_sym_AMP, - ACTIONS(5684), 1, + ACTIONS(5680), 1, anon_sym_map_LBRACK, - STATE(2538), 1, + STATE(500), 1, sym_plain_type, - STATE(4388), 1, + STATE(4403), 1, sym_reference_expression, - STATE(2432), 2, + STATE(244), 2, sym_type_reference_expression, sym_qualified_type, STATE(3195), 2, sym_line_comment, sym_block_comment, - STATE(2492), 4, + STATE(387), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(2493), 12, + STATE(388), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -286475,7 +286527,7 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [115923] = 22, + [115787] = 22, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, @@ -286490,40 +286542,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_thread, ACTIONS(91), 1, anon_sym_atomic, - ACTIONS(597), 1, + ACTIONS(565), 1, sym_identifier, - ACTIONS(603), 1, + ACTIONS(571), 1, anon_sym_fn, - ACTIONS(607), 1, + ACTIONS(575), 1, anon_sym_struct, - ACTIONS(615), 1, + ACTIONS(583), 1, anon_sym_shared, - ACTIONS(3586), 1, + ACTIONS(3564), 1, anon_sym_LPAREN, - ACTIONS(3588), 1, + ACTIONS(3566), 1, anon_sym_STAR, - ACTIONS(5302), 1, + ACTIONS(5308), 1, anon_sym_BANG, - ACTIONS(5304), 1, + ACTIONS(5310), 1, anon_sym_LBRACK2, - ACTIONS(5306), 1, + ACTIONS(5312), 1, anon_sym_AMP, - STATE(4450), 1, - sym_plain_type, - STATE(4495), 1, + STATE(4498), 1, sym_reference_expression, + STATE(4581), 1, + sym_plain_type, STATE(3196), 2, sym_line_comment, sym_block_comment, - STATE(3541), 2, + STATE(3460), 2, sym_type_reference_expression, sym_qualified_type, - STATE(2302), 4, + STATE(2360), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(2303), 12, + STATE(2362), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -286536,55 +286588,55 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [116006] = 22, + [115870] = 22, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(3596), 1, + ACTIONS(4114), 1, sym_identifier, - ACTIONS(3600), 1, + ACTIONS(4118), 1, anon_sym_fn, - ACTIONS(3604), 1, + ACTIONS(4122), 1, anon_sym_struct, - ACTIONS(3614), 1, + ACTIONS(4132), 1, anon_sym_shared, - ACTIONS(3618), 1, + ACTIONS(4136), 1, anon_sym_chan, - ACTIONS(3620), 1, + ACTIONS(4138), 1, anon_sym_thread, - ACTIONS(3622), 1, + ACTIONS(4140), 1, anon_sym_atomic, - ACTIONS(5568), 1, + ACTIONS(5696), 1, anon_sym_LPAREN, - ACTIONS(5572), 1, + ACTIONS(5698), 1, anon_sym_STAR, - ACTIONS(5574), 1, + ACTIONS(5700), 1, anon_sym_QMARK, - ACTIONS(5576), 1, + ACTIONS(5702), 1, anon_sym_BANG, - ACTIONS(5578), 1, + ACTIONS(5704), 1, anon_sym_LBRACK2, - ACTIONS(5580), 1, + ACTIONS(5706), 1, anon_sym_AMP, - ACTIONS(5582), 1, + ACTIONS(5708), 1, anon_sym_map_LBRACK, - STATE(1437), 1, + STATE(2456), 1, sym_plain_type, - STATE(4459), 1, + STATE(4391), 1, sym_reference_expression, - STATE(1402), 2, + STATE(2446), 2, sym_type_reference_expression, sym_qualified_type, STATE(3197), 2, sym_line_comment, sym_block_comment, - STATE(1418), 4, + STATE(2471), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(1419), 12, + STATE(2472), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -286597,55 +286649,55 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [116089] = 22, + [115953] = 22, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(4014), 1, + ACTIONS(47), 1, + anon_sym_QMARK, + ACTIONS(85), 1, + anon_sym_map_LBRACK, + ACTIONS(87), 1, + anon_sym_chan, + ACTIONS(89), 1, + anon_sym_thread, + ACTIONS(91), 1, + anon_sym_atomic, + ACTIONS(565), 1, sym_identifier, - ACTIONS(4018), 1, + ACTIONS(571), 1, anon_sym_fn, - ACTIONS(4022), 1, + ACTIONS(575), 1, anon_sym_struct, - ACTIONS(4032), 1, + ACTIONS(583), 1, anon_sym_shared, - ACTIONS(4036), 1, - anon_sym_chan, - ACTIONS(4038), 1, - anon_sym_thread, - ACTIONS(4040), 1, - anon_sym_atomic, - ACTIONS(5672), 1, + ACTIONS(3564), 1, anon_sym_LPAREN, - ACTIONS(5674), 1, + ACTIONS(3566), 1, anon_sym_STAR, - ACTIONS(5676), 1, - anon_sym_QMARK, - ACTIONS(5678), 1, + ACTIONS(5308), 1, anon_sym_BANG, - ACTIONS(5680), 1, + ACTIONS(5310), 1, anon_sym_LBRACK2, - ACTIONS(5682), 1, + ACTIONS(5312), 1, anon_sym_AMP, - ACTIONS(5684), 1, - anon_sym_map_LBRACK, - STATE(2572), 1, + STATE(3812), 1, sym_plain_type, - STATE(4388), 1, + STATE(4498), 1, sym_reference_expression, - STATE(2432), 2, - sym_type_reference_expression, - sym_qualified_type, STATE(3198), 2, sym_line_comment, sym_block_comment, - STATE(2492), 4, + STATE(3460), 2, + sym_type_reference_expression, + sym_qualified_type, + STATE(2360), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(2493), 12, + STATE(2362), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -286658,55 +286710,55 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [116172] = 22, + [116036] = 22, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(4519), 1, - sym_identifier, - ACTIONS(4521), 1, - anon_sym_LPAREN, - ACTIONS(4523), 1, - anon_sym_fn, - ACTIONS(4525), 1, - anon_sym_STAR, - ACTIONS(4527), 1, - anon_sym_struct, - ACTIONS(4537), 1, - anon_sym_shared, - ACTIONS(4539), 1, + ACTIONS(47), 1, + anon_sym_QMARK, + ACTIONS(85), 1, anon_sym_map_LBRACK, - ACTIONS(4541), 1, + ACTIONS(87), 1, anon_sym_chan, - ACTIONS(4543), 1, + ACTIONS(89), 1, anon_sym_thread, - ACTIONS(4545), 1, + ACTIONS(91), 1, anon_sym_atomic, - ACTIONS(5754), 1, - anon_sym_QMARK, - ACTIONS(5756), 1, + ACTIONS(565), 1, + sym_identifier, + ACTIONS(571), 1, + anon_sym_fn, + ACTIONS(575), 1, + anon_sym_struct, + ACTIONS(583), 1, + anon_sym_shared, + ACTIONS(3564), 1, + anon_sym_LPAREN, + ACTIONS(3566), 1, + anon_sym_STAR, + ACTIONS(5308), 1, anon_sym_BANG, - ACTIONS(5758), 1, + ACTIONS(5310), 1, anon_sym_LBRACK2, - ACTIONS(5760), 1, + ACTIONS(5312), 1, anon_sym_AMP, - STATE(2722), 1, + STATE(4061), 1, sym_plain_type, - STATE(4476), 1, + STATE(4498), 1, sym_reference_expression, - STATE(2602), 2, - sym_type_reference_expression, - sym_qualified_type, STATE(3199), 2, sym_line_comment, sym_block_comment, - STATE(2696), 4, + STATE(3460), 2, + sym_type_reference_expression, + sym_qualified_type, + STATE(2360), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(2697), 12, + STATE(2362), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -286719,55 +286771,55 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [116255] = 22, + [116119] = 22, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(4519), 1, + ACTIONS(3426), 1, sym_identifier, - ACTIONS(4521), 1, - anon_sym_LPAREN, - ACTIONS(4523), 1, - anon_sym_fn, - ACTIONS(4525), 1, - anon_sym_STAR, - ACTIONS(4527), 1, + ACTIONS(3638), 1, anon_sym_struct, - ACTIONS(4537), 1, + ACTIONS(5486), 1, + anon_sym_fn, + ACTIONS(5498), 1, anon_sym_shared, - ACTIONS(4539), 1, - anon_sym_map_LBRACK, - ACTIONS(4541), 1, + ACTIONS(5502), 1, anon_sym_chan, - ACTIONS(4543), 1, + ACTIONS(5504), 1, anon_sym_thread, - ACTIONS(4545), 1, + ACTIONS(5506), 1, anon_sym_atomic, - ACTIONS(5754), 1, + ACTIONS(5590), 1, + anon_sym_LPAREN, + ACTIONS(5594), 1, + anon_sym_STAR, + ACTIONS(5596), 1, anon_sym_QMARK, - ACTIONS(5756), 1, + ACTIONS(5598), 1, anon_sym_BANG, - ACTIONS(5758), 1, + ACTIONS(5600), 1, anon_sym_LBRACK2, - ACTIONS(5760), 1, + ACTIONS(5602), 1, anon_sym_AMP, - STATE(2713), 1, + ACTIONS(5604), 1, + anon_sym_map_LBRACK, + STATE(1665), 1, sym_plain_type, - STATE(4476), 1, + STATE(4351), 1, sym_reference_expression, - STATE(2602), 2, - sym_type_reference_expression, - sym_qualified_type, STATE(3200), 2, sym_line_comment, sym_block_comment, - STATE(2696), 4, + STATE(3305), 2, + sym_type_reference_expression, + sym_qualified_type, + STATE(1647), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(2697), 12, + STATE(1667), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -286780,55 +286832,55 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [116338] = 22, + [116202] = 22, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(47), 1, - anon_sym_QMARK, - ACTIONS(85), 1, - anon_sym_map_LBRACK, - ACTIONS(87), 1, - anon_sym_chan, - ACTIONS(89), 1, - anon_sym_thread, - ACTIONS(91), 1, - anon_sym_atomic, - ACTIONS(597), 1, + ACTIONS(3454), 1, sym_identifier, - ACTIONS(603), 1, + ACTIONS(3458), 1, anon_sym_fn, - ACTIONS(607), 1, + ACTIONS(3462), 1, anon_sym_struct, - ACTIONS(615), 1, + ACTIONS(3472), 1, anon_sym_shared, - ACTIONS(3586), 1, + ACTIONS(3476), 1, + anon_sym_chan, + ACTIONS(3478), 1, + anon_sym_thread, + ACTIONS(3480), 1, + anon_sym_atomic, + ACTIONS(5786), 1, anon_sym_LPAREN, - ACTIONS(3588), 1, + ACTIONS(5788), 1, anon_sym_STAR, - ACTIONS(5302), 1, + ACTIONS(5790), 1, + anon_sym_QMARK, + ACTIONS(5792), 1, anon_sym_BANG, - ACTIONS(5304), 1, + ACTIONS(5794), 1, anon_sym_LBRACK2, - ACTIONS(5306), 1, + ACTIONS(5796), 1, anon_sym_AMP, - STATE(4382), 1, + ACTIONS(5798), 1, + anon_sym_map_LBRACK, + STATE(1192), 1, sym_plain_type, - STATE(4495), 1, + STATE(4412), 1, sym_reference_expression, + STATE(1132), 2, + sym_type_reference_expression, + sym_qualified_type, STATE(3201), 2, sym_line_comment, sym_block_comment, - STATE(3541), 2, - sym_type_reference_expression, - sym_qualified_type, - STATE(2302), 4, + STATE(1214), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(2303), 12, + STATE(1225), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -286841,7 +286893,7 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [116421] = 22, + [116285] = 22, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, @@ -286856,40 +286908,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_thread, ACTIONS(91), 1, anon_sym_atomic, - ACTIONS(597), 1, + ACTIONS(565), 1, sym_identifier, - ACTIONS(603), 1, + ACTIONS(571), 1, anon_sym_fn, - ACTIONS(607), 1, + ACTIONS(575), 1, anon_sym_struct, - ACTIONS(615), 1, + ACTIONS(583), 1, anon_sym_shared, - ACTIONS(3586), 1, + ACTIONS(3564), 1, anon_sym_LPAREN, - ACTIONS(3588), 1, + ACTIONS(3566), 1, anon_sym_STAR, - ACTIONS(5302), 1, + ACTIONS(5308), 1, anon_sym_BANG, - ACTIONS(5304), 1, + ACTIONS(5310), 1, anon_sym_LBRACK2, - ACTIONS(5306), 1, + ACTIONS(5312), 1, anon_sym_AMP, - STATE(4137), 1, - sym_plain_type, - STATE(4495), 1, + STATE(4498), 1, sym_reference_expression, + STATE(4580), 1, + sym_plain_type, STATE(3202), 2, sym_line_comment, sym_block_comment, - STATE(3541), 2, + STATE(3460), 2, sym_type_reference_expression, sym_qualified_type, - STATE(2302), 4, + STATE(2360), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(2303), 12, + STATE(2362), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -286902,55 +286954,55 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [116504] = 22, + [116368] = 22, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(3420), 1, + ACTIONS(3426), 1, sym_identifier, - ACTIONS(3634), 1, + ACTIONS(3638), 1, anon_sym_struct, - ACTIONS(5484), 1, + ACTIONS(5486), 1, anon_sym_fn, - ACTIONS(5496), 1, + ACTIONS(5498), 1, anon_sym_shared, - ACTIONS(5500), 1, - anon_sym_chan, ACTIONS(5502), 1, - anon_sym_thread, + anon_sym_chan, ACTIONS(5504), 1, + anon_sym_thread, + ACTIONS(5506), 1, anon_sym_atomic, - ACTIONS(5584), 1, + ACTIONS(5590), 1, anon_sym_LPAREN, - ACTIONS(5588), 1, + ACTIONS(5594), 1, anon_sym_STAR, - ACTIONS(5590), 1, + ACTIONS(5596), 1, anon_sym_QMARK, - ACTIONS(5592), 1, + ACTIONS(5598), 1, anon_sym_BANG, - ACTIONS(5594), 1, + ACTIONS(5600), 1, anon_sym_LBRACK2, - ACTIONS(5596), 1, + ACTIONS(5602), 1, anon_sym_AMP, - ACTIONS(5598), 1, + ACTIONS(5604), 1, anon_sym_map_LBRACK, - STATE(1649), 1, + STATE(1668), 1, sym_plain_type, - STATE(4341), 1, + STATE(4351), 1, sym_reference_expression, STATE(3203), 2, sym_line_comment, sym_block_comment, - STATE(3286), 2, + STATE(3305), 2, sym_type_reference_expression, sym_qualified_type, - STATE(1635), 4, + STATE(1647), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(1629), 12, + STATE(1667), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -286963,55 +287015,55 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [116587] = 22, + [116451] = 22, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(1191), 1, + ACTIONS(4114), 1, sym_identifier, - ACTIONS(1195), 1, + ACTIONS(4118), 1, anon_sym_fn, - ACTIONS(1199), 1, + ACTIONS(4122), 1, anon_sym_struct, - ACTIONS(1209), 1, + ACTIONS(4132), 1, anon_sym_shared, - ACTIONS(1213), 1, + ACTIONS(4136), 1, anon_sym_chan, - ACTIONS(1215), 1, + ACTIONS(4138), 1, anon_sym_thread, - ACTIONS(1217), 1, + ACTIONS(4140), 1, anon_sym_atomic, - ACTIONS(5686), 1, + ACTIONS(5696), 1, anon_sym_LPAREN, - ACTIONS(5688), 1, + ACTIONS(5698), 1, anon_sym_STAR, - ACTIONS(5690), 1, + ACTIONS(5700), 1, anon_sym_QMARK, - ACTIONS(5692), 1, + ACTIONS(5702), 1, anon_sym_BANG, - ACTIONS(5694), 1, + ACTIONS(5704), 1, anon_sym_LBRACK2, - ACTIONS(5696), 1, + ACTIONS(5706), 1, anon_sym_AMP, - ACTIONS(5698), 1, + ACTIONS(5708), 1, anon_sym_map_LBRACK, - STATE(1054), 1, + STATE(2539), 1, sym_plain_type, - STATE(4365), 1, + STATE(4391), 1, sym_reference_expression, - STATE(990), 2, + STATE(2446), 2, sym_type_reference_expression, sym_qualified_type, STATE(3204), 2, sym_line_comment, sym_block_comment, - STATE(1020), 4, + STATE(2471), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(1019), 12, + STATE(2472), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -287024,55 +287076,55 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [116670] = 22, + [116534] = 22, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(3755), 1, + ACTIONS(3630), 1, sym_identifier, - ACTIONS(3757), 1, - anon_sym_LPAREN, - ACTIONS(3759), 1, + ACTIONS(3634), 1, anon_sym_fn, - ACTIONS(3763), 1, + ACTIONS(3638), 1, anon_sym_struct, - ACTIONS(3773), 1, + ACTIONS(3648), 1, anon_sym_shared, - ACTIONS(3775), 1, - anon_sym_map_LBRACK, - ACTIONS(3777), 1, + ACTIONS(3652), 1, anon_sym_chan, - ACTIONS(3779), 1, + ACTIONS(3654), 1, anon_sym_thread, - ACTIONS(3781), 1, + ACTIONS(3656), 1, anon_sym_atomic, - ACTIONS(5744), 1, + ACTIONS(5590), 1, + anon_sym_LPAREN, + ACTIONS(5774), 1, anon_sym_STAR, - ACTIONS(5746), 1, + ACTIONS(5776), 1, anon_sym_QMARK, - ACTIONS(5748), 1, + ACTIONS(5778), 1, anon_sym_BANG, - ACTIONS(5750), 1, + ACTIONS(5780), 1, anon_sym_LBRACK2, - ACTIONS(5752), 1, + ACTIONS(5782), 1, anon_sym_AMP, - STATE(1989), 1, + ACTIONS(5784), 1, + anon_sym_map_LBRACK, + STATE(1678), 1, sym_plain_type, - STATE(4376), 1, + STATE(4378), 1, sym_reference_expression, - STATE(1910), 2, + STATE(1631), 2, sym_type_reference_expression, sym_qualified_type, STATE(3205), 2, sym_line_comment, sym_block_comment, - STATE(2003), 4, + STATE(1647), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(2002), 12, + STATE(1667), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -287085,55 +287137,55 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [116753] = 22, + [116617] = 22, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(4519), 1, + ACTIONS(3630), 1, sym_identifier, - ACTIONS(4521), 1, - anon_sym_LPAREN, - ACTIONS(4523), 1, + ACTIONS(3634), 1, anon_sym_fn, - ACTIONS(4525), 1, - anon_sym_STAR, - ACTIONS(4527), 1, + ACTIONS(3638), 1, anon_sym_struct, - ACTIONS(4537), 1, + ACTIONS(3648), 1, anon_sym_shared, - ACTIONS(4539), 1, - anon_sym_map_LBRACK, - ACTIONS(4541), 1, + ACTIONS(3652), 1, anon_sym_chan, - ACTIONS(4543), 1, + ACTIONS(3654), 1, anon_sym_thread, - ACTIONS(4545), 1, + ACTIONS(3656), 1, anon_sym_atomic, - ACTIONS(5754), 1, + ACTIONS(5590), 1, + anon_sym_LPAREN, + ACTIONS(5774), 1, + anon_sym_STAR, + ACTIONS(5776), 1, anon_sym_QMARK, - ACTIONS(5756), 1, + ACTIONS(5778), 1, anon_sym_BANG, - ACTIONS(5758), 1, + ACTIONS(5780), 1, anon_sym_LBRACK2, - ACTIONS(5760), 1, + ACTIONS(5782), 1, anon_sym_AMP, - STATE(2712), 1, + ACTIONS(5784), 1, + anon_sym_map_LBRACK, + STATE(1742), 1, sym_plain_type, - STATE(4476), 1, + STATE(4378), 1, sym_reference_expression, - STATE(2602), 2, + STATE(1631), 2, sym_type_reference_expression, sym_qualified_type, STATE(3206), 2, sym_line_comment, sym_block_comment, - STATE(2696), 4, + STATE(1647), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(2697), 12, + STATE(1667), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -287146,55 +287198,55 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [116836] = 22, + [116700] = 22, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(3626), 1, + ACTIONS(47), 1, + anon_sym_QMARK, + ACTIONS(85), 1, + anon_sym_map_LBRACK, + ACTIONS(87), 1, + anon_sym_chan, + ACTIONS(89), 1, + anon_sym_thread, + ACTIONS(91), 1, + anon_sym_atomic, + ACTIONS(565), 1, sym_identifier, - ACTIONS(3630), 1, + ACTIONS(571), 1, anon_sym_fn, - ACTIONS(3634), 1, + ACTIONS(575), 1, anon_sym_struct, - ACTIONS(3644), 1, + ACTIONS(583), 1, anon_sym_shared, - ACTIONS(3648), 1, - anon_sym_chan, - ACTIONS(3650), 1, - anon_sym_thread, - ACTIONS(3652), 1, - anon_sym_atomic, - ACTIONS(5584), 1, + ACTIONS(3564), 1, anon_sym_LPAREN, - ACTIONS(5790), 1, + ACTIONS(3566), 1, anon_sym_STAR, - ACTIONS(5792), 1, - anon_sym_QMARK, - ACTIONS(5794), 1, + ACTIONS(5308), 1, anon_sym_BANG, - ACTIONS(5796), 1, + ACTIONS(5310), 1, anon_sym_LBRACK2, - ACTIONS(5798), 1, + ACTIONS(5312), 1, anon_sym_AMP, - ACTIONS(5800), 1, - anon_sym_map_LBRACK, - STATE(1740), 1, - sym_plain_type, - STATE(4323), 1, + STATE(4498), 1, sym_reference_expression, - STATE(1636), 2, - sym_type_reference_expression, - sym_qualified_type, + STATE(4573), 1, + sym_plain_type, STATE(3207), 2, sym_line_comment, sym_block_comment, - STATE(1635), 4, + STATE(3460), 2, + sym_type_reference_expression, + sym_qualified_type, + STATE(2360), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(1629), 12, + STATE(2362), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -287207,55 +287259,55 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [116919] = 22, + [116783] = 22, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(4519), 1, - sym_identifier, - ACTIONS(4521), 1, - anon_sym_LPAREN, - ACTIONS(4523), 1, - anon_sym_fn, - ACTIONS(4525), 1, - anon_sym_STAR, - ACTIONS(4527), 1, - anon_sym_struct, - ACTIONS(4537), 1, - anon_sym_shared, - ACTIONS(4539), 1, + ACTIONS(47), 1, + anon_sym_QMARK, + ACTIONS(85), 1, anon_sym_map_LBRACK, - ACTIONS(4541), 1, + ACTIONS(87), 1, anon_sym_chan, - ACTIONS(4543), 1, + ACTIONS(89), 1, anon_sym_thread, - ACTIONS(4545), 1, + ACTIONS(91), 1, anon_sym_atomic, - ACTIONS(5754), 1, - anon_sym_QMARK, - ACTIONS(5756), 1, + ACTIONS(565), 1, + sym_identifier, + ACTIONS(571), 1, + anon_sym_fn, + ACTIONS(575), 1, + anon_sym_struct, + ACTIONS(583), 1, + anon_sym_shared, + ACTIONS(3564), 1, + anon_sym_LPAREN, + ACTIONS(3566), 1, + anon_sym_STAR, + ACTIONS(5308), 1, anon_sym_BANG, - ACTIONS(5758), 1, + ACTIONS(5310), 1, anon_sym_LBRACK2, - ACTIONS(5760), 1, + ACTIONS(5312), 1, anon_sym_AMP, - STATE(2711), 1, - sym_plain_type, - STATE(4476), 1, + STATE(4498), 1, sym_reference_expression, - STATE(2602), 2, - sym_type_reference_expression, - sym_qualified_type, + STATE(4537), 1, + sym_plain_type, STATE(3208), 2, sym_line_comment, sym_block_comment, - STATE(2696), 4, + STATE(3460), 2, + sym_type_reference_expression, + sym_qualified_type, + STATE(2360), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(2697), 12, + STATE(2362), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -287268,55 +287320,55 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [117002] = 22, + [116866] = 22, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(3448), 1, + ACTIONS(4523), 1, sym_identifier, - ACTIONS(3452), 1, + ACTIONS(4525), 1, + anon_sym_LPAREN, + ACTIONS(4527), 1, anon_sym_fn, - ACTIONS(3456), 1, + ACTIONS(4529), 1, + anon_sym_STAR, + ACTIONS(4531), 1, anon_sym_struct, - ACTIONS(3466), 1, + ACTIONS(4541), 1, anon_sym_shared, - ACTIONS(3470), 1, + ACTIONS(4543), 1, + anon_sym_map_LBRACK, + ACTIONS(4545), 1, anon_sym_chan, - ACTIONS(3472), 1, + ACTIONS(4547), 1, anon_sym_thread, - ACTIONS(3474), 1, + ACTIONS(4549), 1, anon_sym_atomic, - ACTIONS(5776), 1, - anon_sym_LPAREN, - ACTIONS(5778), 1, - anon_sym_STAR, - ACTIONS(5780), 1, + ACTIONS(5756), 1, anon_sym_QMARK, - ACTIONS(5782), 1, + ACTIONS(5758), 1, anon_sym_BANG, - ACTIONS(5784), 1, + ACTIONS(5760), 1, anon_sym_LBRACK2, - ACTIONS(5786), 1, + ACTIONS(5762), 1, anon_sym_AMP, - ACTIONS(5788), 1, - anon_sym_map_LBRACK, - STATE(1238), 1, + STATE(2659), 1, sym_plain_type, - STATE(4409), 1, + STATE(4479), 1, sym_reference_expression, - STATE(1135), 2, + STATE(2597), 2, sym_type_reference_expression, sym_qualified_type, STATE(3209), 2, sym_line_comment, sym_block_comment, - STATE(1211), 4, + STATE(2699), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(1220), 12, + STATE(2700), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -287329,55 +287381,55 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [117085] = 22, + [116949] = 22, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(3448), 1, + ACTIONS(3918), 1, sym_identifier, - ACTIONS(3452), 1, + ACTIONS(3922), 1, anon_sym_fn, - ACTIONS(3456), 1, + ACTIONS(3926), 1, anon_sym_struct, - ACTIONS(3466), 1, + ACTIONS(3936), 1, anon_sym_shared, - ACTIONS(3470), 1, + ACTIONS(3940), 1, anon_sym_chan, - ACTIONS(3472), 1, + ACTIONS(3942), 1, anon_sym_thread, - ACTIONS(3474), 1, + ACTIONS(3944), 1, anon_sym_atomic, - ACTIONS(5776), 1, + ACTIONS(5710), 1, anon_sym_LPAREN, - ACTIONS(5778), 1, + ACTIONS(5712), 1, anon_sym_STAR, - ACTIONS(5780), 1, + ACTIONS(5714), 1, anon_sym_QMARK, - ACTIONS(5782), 1, + ACTIONS(5716), 1, anon_sym_BANG, - ACTIONS(5784), 1, + ACTIONS(5718), 1, anon_sym_LBRACK2, - ACTIONS(5786), 1, + ACTIONS(5720), 1, anon_sym_AMP, - ACTIONS(5788), 1, + ACTIONS(5722), 1, anon_sym_map_LBRACK, - STATE(1247), 1, + STATE(2221), 1, sym_plain_type, - STATE(4409), 1, + STATE(4471), 1, sym_reference_expression, - STATE(1135), 2, + STATE(2142), 2, sym_type_reference_expression, sym_qualified_type, STATE(3210), 2, sym_line_comment, sym_block_comment, - STATE(1211), 4, + STATE(2183), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(1220), 12, + STATE(2184), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -287390,55 +287442,55 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [117168] = 22, + [117032] = 22, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(3755), 1, - sym_identifier, - ACTIONS(3757), 1, - anon_sym_LPAREN, - ACTIONS(3759), 1, - anon_sym_fn, - ACTIONS(3763), 1, - anon_sym_struct, - ACTIONS(3773), 1, - anon_sym_shared, - ACTIONS(3775), 1, + ACTIONS(47), 1, + anon_sym_QMARK, + ACTIONS(85), 1, anon_sym_map_LBRACK, - ACTIONS(3777), 1, + ACTIONS(87), 1, anon_sym_chan, - ACTIONS(3779), 1, + ACTIONS(89), 1, anon_sym_thread, - ACTIONS(3781), 1, + ACTIONS(91), 1, anon_sym_atomic, - ACTIONS(5744), 1, + ACTIONS(565), 1, + sym_identifier, + ACTIONS(571), 1, + anon_sym_fn, + ACTIONS(575), 1, + anon_sym_struct, + ACTIONS(583), 1, + anon_sym_shared, + ACTIONS(3564), 1, + anon_sym_LPAREN, + ACTIONS(3566), 1, anon_sym_STAR, - ACTIONS(5746), 1, - anon_sym_QMARK, - ACTIONS(5748), 1, + ACTIONS(5308), 1, anon_sym_BANG, - ACTIONS(5750), 1, + ACTIONS(5310), 1, anon_sym_LBRACK2, - ACTIONS(5752), 1, + ACTIONS(5312), 1, anon_sym_AMP, - STATE(1990), 1, - sym_plain_type, - STATE(4376), 1, + STATE(4498), 1, sym_reference_expression, - STATE(1910), 2, - sym_type_reference_expression, - sym_qualified_type, + STATE(4525), 1, + sym_plain_type, STATE(3211), 2, sym_line_comment, sym_block_comment, - STATE(2003), 4, + STATE(3460), 2, + sym_type_reference_expression, + sym_qualified_type, + STATE(2360), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(2002), 12, + STATE(2362), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -287451,29 +287503,27 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [117251] = 22, + [117115] = 22, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(3755), 1, + ACTIONS(1195), 1, sym_identifier, - ACTIONS(3757), 1, - anon_sym_LPAREN, - ACTIONS(3759), 1, + ACTIONS(1199), 1, anon_sym_fn, - ACTIONS(3763), 1, + ACTIONS(1203), 1, anon_sym_struct, - ACTIONS(3773), 1, + ACTIONS(1213), 1, anon_sym_shared, - ACTIONS(3775), 1, - anon_sym_map_LBRACK, - ACTIONS(3777), 1, + ACTIONS(1217), 1, anon_sym_chan, - ACTIONS(3779), 1, + ACTIONS(1219), 1, anon_sym_thread, - ACTIONS(3781), 1, + ACTIONS(1221), 1, anon_sym_atomic, + ACTIONS(5742), 1, + anon_sym_LPAREN, ACTIONS(5744), 1, anon_sym_STAR, ACTIONS(5746), 1, @@ -287484,22 +287534,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, ACTIONS(5752), 1, anon_sym_AMP, - STATE(1991), 1, + ACTIONS(5754), 1, + anon_sym_map_LBRACK, + STATE(998), 1, sym_plain_type, - STATE(4376), 1, + STATE(4349), 1, sym_reference_expression, - STATE(1910), 2, + STATE(985), 2, sym_type_reference_expression, sym_qualified_type, STATE(3212), 2, sym_line_comment, sym_block_comment, - STATE(2003), 4, + STATE(1066), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(2002), 12, + STATE(1030), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -287512,55 +287564,55 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [117334] = 22, + [117198] = 22, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(47), 1, - anon_sym_QMARK, - ACTIONS(85), 1, - anon_sym_map_LBRACK, - ACTIONS(87), 1, - anon_sym_chan, - ACTIONS(89), 1, - anon_sym_thread, - ACTIONS(91), 1, - anon_sym_atomic, - ACTIONS(597), 1, + ACTIONS(3918), 1, sym_identifier, - ACTIONS(603), 1, + ACTIONS(3922), 1, anon_sym_fn, - ACTIONS(607), 1, + ACTIONS(3926), 1, anon_sym_struct, - ACTIONS(615), 1, + ACTIONS(3936), 1, anon_sym_shared, - ACTIONS(3586), 1, + ACTIONS(3940), 1, + anon_sym_chan, + ACTIONS(3942), 1, + anon_sym_thread, + ACTIONS(3944), 1, + anon_sym_atomic, + ACTIONS(5710), 1, anon_sym_LPAREN, - ACTIONS(3588), 1, + ACTIONS(5712), 1, anon_sym_STAR, - ACTIONS(5302), 1, + ACTIONS(5714), 1, + anon_sym_QMARK, + ACTIONS(5716), 1, anon_sym_BANG, - ACTIONS(5304), 1, + ACTIONS(5718), 1, anon_sym_LBRACK2, - ACTIONS(5306), 1, + ACTIONS(5720), 1, anon_sym_AMP, - STATE(3901), 1, + ACTIONS(5722), 1, + anon_sym_map_LBRACK, + STATE(2226), 1, sym_plain_type, - STATE(4495), 1, + STATE(4471), 1, sym_reference_expression, + STATE(2142), 2, + sym_type_reference_expression, + sym_qualified_type, STATE(3213), 2, sym_line_comment, sym_block_comment, - STATE(3541), 2, - sym_type_reference_expression, - sym_qualified_type, - STATE(2302), 4, + STATE(2183), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(2303), 12, + STATE(2184), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -287573,55 +287625,55 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [117417] = 22, + [117281] = 22, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(3783), 1, + ACTIONS(4523), 1, sym_identifier, - ACTIONS(3785), 1, + ACTIONS(4525), 1, anon_sym_LPAREN, - ACTIONS(3787), 1, + ACTIONS(4527), 1, anon_sym_fn, - ACTIONS(3791), 1, + ACTIONS(4529), 1, + anon_sym_STAR, + ACTIONS(4531), 1, anon_sym_struct, - ACTIONS(3801), 1, + ACTIONS(4541), 1, anon_sym_shared, - ACTIONS(3803), 1, + ACTIONS(4543), 1, anon_sym_map_LBRACK, - ACTIONS(3805), 1, + ACTIONS(4545), 1, anon_sym_chan, - ACTIONS(3807), 1, + ACTIONS(4547), 1, anon_sym_thread, - ACTIONS(3809), 1, + ACTIONS(4549), 1, anon_sym_atomic, - ACTIONS(5662), 1, - anon_sym_STAR, - ACTIONS(5664), 1, + ACTIONS(5756), 1, anon_sym_QMARK, - ACTIONS(5666), 1, + ACTIONS(5758), 1, anon_sym_BANG, - ACTIONS(5668), 1, + ACTIONS(5760), 1, anon_sym_LBRACK2, - ACTIONS(5670), 1, + ACTIONS(5762), 1, anon_sym_AMP, - STATE(1969), 1, + STATE(2663), 1, sym_plain_type, - STATE(4430), 1, + STATE(4479), 1, sym_reference_expression, - STATE(1908), 2, + STATE(2597), 2, sym_type_reference_expression, sym_qualified_type, STATE(3214), 2, sym_line_comment, sym_block_comment, - STATE(1930), 4, + STATE(2699), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(1929), 12, + STATE(2700), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -287634,55 +287686,55 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [117500] = 22, + [117364] = 22, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, + ACTIONS(47), 1, + anon_sym_QMARK, + ACTIONS(85), 1, + anon_sym_map_LBRACK, + ACTIONS(87), 1, + anon_sym_chan, + ACTIONS(89), 1, + anon_sym_thread, + ACTIONS(91), 1, + anon_sym_atomic, ACTIONS(565), 1, sym_identifier, ACTIONS(571), 1, anon_sym_fn, ACTIONS(575), 1, anon_sym_struct, - ACTIONS(585), 1, + ACTIONS(583), 1, anon_sym_shared, - ACTIONS(589), 1, - anon_sym_chan, - ACTIONS(591), 1, - anon_sym_thread, - ACTIONS(593), 1, - anon_sym_atomic, - ACTIONS(5700), 1, + ACTIONS(3564), 1, anon_sym_LPAREN, - ACTIONS(5702), 1, + ACTIONS(3566), 1, anon_sym_STAR, - ACTIONS(5704), 1, - anon_sym_QMARK, - ACTIONS(5706), 1, + ACTIONS(5308), 1, anon_sym_BANG, - ACTIONS(5708), 1, + ACTIONS(5310), 1, anon_sym_LBRACK2, - ACTIONS(5710), 1, + ACTIONS(5312), 1, anon_sym_AMP, - ACTIONS(5712), 1, - anon_sym_map_LBRACK, - STATE(405), 1, + STATE(2332), 1, sym_plain_type, - STATE(4403), 1, + STATE(4498), 1, sym_reference_expression, - STATE(252), 2, - sym_type_reference_expression, - sym_qualified_type, STATE(3215), 2, sym_line_comment, sym_block_comment, - STATE(445), 4, + STATE(3460), 2, + sym_type_reference_expression, + sym_qualified_type, + STATE(2360), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(448), 12, + STATE(2362), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -287695,55 +287747,55 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [117583] = 22, + [117447] = 22, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(3556), 1, + ACTIONS(4114), 1, sym_identifier, - ACTIONS(3558), 1, - anon_sym_LPAREN, - ACTIONS(3560), 1, + ACTIONS(4118), 1, anon_sym_fn, - ACTIONS(3562), 1, - anon_sym_STAR, - ACTIONS(3564), 1, + ACTIONS(4122), 1, anon_sym_struct, - ACTIONS(3574), 1, + ACTIONS(4132), 1, anon_sym_shared, - ACTIONS(3576), 1, - anon_sym_map_LBRACK, - ACTIONS(3578), 1, + ACTIONS(4136), 1, anon_sym_chan, - ACTIONS(3580), 1, + ACTIONS(4138), 1, anon_sym_thread, - ACTIONS(3582), 1, + ACTIONS(4140), 1, anon_sym_atomic, - ACTIONS(5728), 1, + ACTIONS(5696), 1, + anon_sym_LPAREN, + ACTIONS(5698), 1, + anon_sym_STAR, + ACTIONS(5700), 1, anon_sym_QMARK, - ACTIONS(5730), 1, + ACTIONS(5702), 1, anon_sym_BANG, - ACTIONS(5732), 1, + ACTIONS(5704), 1, anon_sym_LBRACK2, - ACTIONS(5734), 1, + ACTIONS(5706), 1, anon_sym_AMP, - STATE(1364), 1, + ACTIONS(5708), 1, + anon_sym_map_LBRACK, + STATE(2551), 1, sym_plain_type, - STATE(4355), 1, + STATE(4391), 1, sym_reference_expression, - STATE(1278), 2, + STATE(2446), 2, sym_type_reference_expression, sym_qualified_type, STATE(3216), 2, sym_line_comment, sym_block_comment, - STATE(1357), 4, + STATE(2471), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(1360), 12, + STATE(2472), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -287756,55 +287808,55 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [117666] = 22, + [117530] = 22, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(3596), 1, + ACTIONS(47), 1, + anon_sym_QMARK, + ACTIONS(85), 1, + anon_sym_map_LBRACK, + ACTIONS(87), 1, + anon_sym_chan, + ACTIONS(89), 1, + anon_sym_thread, + ACTIONS(91), 1, + anon_sym_atomic, + ACTIONS(565), 1, sym_identifier, - ACTIONS(3600), 1, + ACTIONS(571), 1, anon_sym_fn, - ACTIONS(3604), 1, + ACTIONS(575), 1, anon_sym_struct, - ACTIONS(3614), 1, + ACTIONS(583), 1, anon_sym_shared, - ACTIONS(3618), 1, - anon_sym_chan, - ACTIONS(3620), 1, - anon_sym_thread, - ACTIONS(3622), 1, - anon_sym_atomic, - ACTIONS(5568), 1, + ACTIONS(3564), 1, anon_sym_LPAREN, - ACTIONS(5572), 1, + ACTIONS(3566), 1, anon_sym_STAR, - ACTIONS(5574), 1, - anon_sym_QMARK, - ACTIONS(5576), 1, + ACTIONS(5308), 1, anon_sym_BANG, - ACTIONS(5578), 1, + ACTIONS(5310), 1, anon_sym_LBRACK2, - ACTIONS(5580), 1, + ACTIONS(5312), 1, anon_sym_AMP, - ACTIONS(5582), 1, - anon_sym_map_LBRACK, - STATE(1444), 1, + STATE(2327), 1, sym_plain_type, - STATE(4459), 1, + STATE(4498), 1, sym_reference_expression, - STATE(1402), 2, - sym_type_reference_expression, - sym_qualified_type, STATE(3217), 2, sym_line_comment, sym_block_comment, - STATE(1418), 4, + STATE(3460), 2, + sym_type_reference_expression, + sym_qualified_type, + STATE(2360), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(1419), 12, + STATE(2362), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -287817,7 +287869,7 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [117749] = 22, + [117613] = 22, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, @@ -287832,40 +287884,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_thread, ACTIONS(91), 1, anon_sym_atomic, - ACTIONS(597), 1, + ACTIONS(565), 1, sym_identifier, - ACTIONS(603), 1, + ACTIONS(571), 1, anon_sym_fn, - ACTIONS(607), 1, + ACTIONS(575), 1, anon_sym_struct, - ACTIONS(615), 1, + ACTIONS(583), 1, anon_sym_shared, - ACTIONS(3586), 1, + ACTIONS(3564), 1, anon_sym_LPAREN, - ACTIONS(3588), 1, + ACTIONS(3566), 1, anon_sym_STAR, - ACTIONS(5302), 1, + ACTIONS(5308), 1, anon_sym_BANG, - ACTIONS(5304), 1, + ACTIONS(5310), 1, anon_sym_LBRACK2, - ACTIONS(5306), 1, + ACTIONS(5312), 1, anon_sym_AMP, - STATE(4426), 1, + STATE(2349), 1, sym_plain_type, - STATE(4495), 1, + STATE(4498), 1, sym_reference_expression, STATE(3218), 2, sym_line_comment, sym_block_comment, - STATE(3541), 2, + STATE(3460), 2, sym_type_reference_expression, sym_qualified_type, - STATE(2302), 4, + STATE(2360), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(2303), 12, + STATE(2362), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -287878,55 +287930,55 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [117832] = 22, + [117696] = 22, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(3690), 1, + ACTIONS(47), 1, + anon_sym_QMARK, + ACTIONS(85), 1, + anon_sym_map_LBRACK, + ACTIONS(87), 1, + anon_sym_chan, + ACTIONS(89), 1, + anon_sym_thread, + ACTIONS(91), 1, + anon_sym_atomic, + ACTIONS(565), 1, sym_identifier, - ACTIONS(3694), 1, + ACTIONS(571), 1, anon_sym_fn, - ACTIONS(3698), 1, + ACTIONS(575), 1, anon_sym_struct, - ACTIONS(3708), 1, + ACTIONS(583), 1, anon_sym_shared, - ACTIONS(3712), 1, - anon_sym_chan, - ACTIONS(3714), 1, - anon_sym_thread, - ACTIONS(3716), 1, - anon_sym_atomic, - ACTIONS(5714), 1, + ACTIONS(3564), 1, anon_sym_LPAREN, - ACTIONS(5716), 1, + ACTIONS(3566), 1, anon_sym_STAR, - ACTIONS(5718), 1, - anon_sym_QMARK, - ACTIONS(5720), 1, + ACTIONS(5308), 1, anon_sym_BANG, - ACTIONS(5722), 1, + ACTIONS(5310), 1, anon_sym_LBRACK2, - ACTIONS(5724), 1, + ACTIONS(5312), 1, anon_sym_AMP, - ACTIONS(5726), 1, - anon_sym_map_LBRACK, - STATE(1779), 1, + STATE(3857), 1, sym_plain_type, - STATE(4451), 1, + STATE(4498), 1, sym_reference_expression, - STATE(1754), 2, - sym_type_reference_expression, - sym_qualified_type, STATE(3219), 2, sym_line_comment, sym_block_comment, - STATE(1844), 4, + STATE(3460), 2, + sym_type_reference_expression, + sym_qualified_type, + STATE(2360), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(1791), 12, + STATE(2362), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -287939,55 +287991,55 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [117915] = 22, + [117779] = 22, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(3626), 1, + ACTIONS(4114), 1, sym_identifier, - ACTIONS(3630), 1, + ACTIONS(4118), 1, anon_sym_fn, - ACTIONS(3634), 1, + ACTIONS(4122), 1, anon_sym_struct, - ACTIONS(3644), 1, + ACTIONS(4132), 1, anon_sym_shared, - ACTIONS(3648), 1, + ACTIONS(4136), 1, anon_sym_chan, - ACTIONS(3650), 1, + ACTIONS(4138), 1, anon_sym_thread, - ACTIONS(3652), 1, + ACTIONS(4140), 1, anon_sym_atomic, - ACTIONS(5584), 1, + ACTIONS(5696), 1, anon_sym_LPAREN, - ACTIONS(5790), 1, + ACTIONS(5698), 1, anon_sym_STAR, - ACTIONS(5792), 1, + ACTIONS(5700), 1, anon_sym_QMARK, - ACTIONS(5794), 1, + ACTIONS(5702), 1, anon_sym_BANG, - ACTIONS(5796), 1, + ACTIONS(5704), 1, anon_sym_LBRACK2, - ACTIONS(5798), 1, + ACTIONS(5706), 1, anon_sym_AMP, - ACTIONS(5800), 1, + ACTIONS(5708), 1, anon_sym_map_LBRACK, - STATE(1708), 1, + STATE(2553), 1, sym_plain_type, - STATE(4323), 1, + STATE(4391), 1, sym_reference_expression, - STATE(1636), 2, + STATE(2446), 2, sym_type_reference_expression, sym_qualified_type, STATE(3220), 2, sym_line_comment, sym_block_comment, - STATE(1635), 4, + STATE(2471), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(1629), 12, + STATE(2472), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -288000,55 +288052,55 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [117998] = 22, + [117862] = 22, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(3690), 1, + ACTIONS(47), 1, + anon_sym_QMARK, + ACTIONS(85), 1, + anon_sym_map_LBRACK, + ACTIONS(87), 1, + anon_sym_chan, + ACTIONS(89), 1, + anon_sym_thread, + ACTIONS(91), 1, + anon_sym_atomic, + ACTIONS(565), 1, sym_identifier, - ACTIONS(3694), 1, + ACTIONS(571), 1, anon_sym_fn, - ACTIONS(3698), 1, + ACTIONS(575), 1, anon_sym_struct, - ACTIONS(3708), 1, + ACTIONS(583), 1, anon_sym_shared, - ACTIONS(3712), 1, - anon_sym_chan, - ACTIONS(3714), 1, - anon_sym_thread, - ACTIONS(3716), 1, - anon_sym_atomic, - ACTIONS(5714), 1, + ACTIONS(3564), 1, anon_sym_LPAREN, - ACTIONS(5716), 1, + ACTIONS(3566), 1, anon_sym_STAR, - ACTIONS(5718), 1, - anon_sym_QMARK, - ACTIONS(5720), 1, + ACTIONS(5308), 1, anon_sym_BANG, - ACTIONS(5722), 1, + ACTIONS(5310), 1, anon_sym_LBRACK2, - ACTIONS(5724), 1, + ACTIONS(5312), 1, anon_sym_AMP, - ACTIONS(5726), 1, - anon_sym_map_LBRACK, - STATE(1859), 1, + STATE(3978), 1, sym_plain_type, - STATE(4451), 1, + STATE(4498), 1, sym_reference_expression, - STATE(1754), 2, - sym_type_reference_expression, - sym_qualified_type, STATE(3221), 2, sym_line_comment, sym_block_comment, - STATE(1844), 4, + STATE(3460), 2, + sym_type_reference_expression, + sym_qualified_type, + STATE(2360), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(1791), 12, + STATE(2362), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -288061,55 +288113,116 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [118081] = 22, + [117945] = 22, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, + ACTIONS(47), 1, + anon_sym_QMARK, + ACTIONS(85), 1, + anon_sym_map_LBRACK, + ACTIONS(87), 1, + anon_sym_chan, + ACTIONS(89), 1, + anon_sym_thread, + ACTIONS(91), 1, + anon_sym_atomic, ACTIONS(565), 1, sym_identifier, ACTIONS(571), 1, anon_sym_fn, ACTIONS(575), 1, anon_sym_struct, - ACTIONS(585), 1, + ACTIONS(583), 1, + anon_sym_shared, + ACTIONS(3564), 1, + anon_sym_LPAREN, + ACTIONS(3566), 1, + anon_sym_STAR, + ACTIONS(5308), 1, + anon_sym_BANG, + ACTIONS(5310), 1, + anon_sym_LBRACK2, + ACTIONS(5312), 1, + anon_sym_AMP, + STATE(3796), 1, + sym_plain_type, + STATE(4498), 1, + sym_reference_expression, + STATE(3222), 2, + sym_line_comment, + sym_block_comment, + STATE(3460), 2, + sym_type_reference_expression, + sym_qualified_type, + STATE(2360), 4, + sym__plain_type_without_special, + sym_multi_return_type, + sym_result_type, + sym_option_type, + STATE(2362), 12, + sym_anon_struct_type, + sym_fixed_array_type, + sym_array_type, + sym_pointer_type, + sym_wrong_pointer_type, + sym_map_type, + sym_channel_type, + sym_shared_type, + sym_thread_type, + sym_atomic_type, + sym_generic_type, + sym_function_type, + [118028] = 22, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(587), 1, + sym_identifier, + ACTIONS(593), 1, + anon_sym_fn, + ACTIONS(597), 1, + anon_sym_struct, + ACTIONS(607), 1, anon_sym_shared, - ACTIONS(589), 1, + ACTIONS(611), 1, anon_sym_chan, - ACTIONS(591), 1, + ACTIONS(613), 1, anon_sym_thread, - ACTIONS(593), 1, + ACTIONS(615), 1, anon_sym_atomic, - ACTIONS(5700), 1, + ACTIONS(5668), 1, anon_sym_LPAREN, - ACTIONS(5702), 1, + ACTIONS(5670), 1, anon_sym_STAR, - ACTIONS(5704), 1, + ACTIONS(5672), 1, anon_sym_QMARK, - ACTIONS(5706), 1, + ACTIONS(5674), 1, anon_sym_BANG, - ACTIONS(5708), 1, + ACTIONS(5676), 1, anon_sym_LBRACK2, - ACTIONS(5710), 1, + ACTIONS(5678), 1, anon_sym_AMP, - ACTIONS(5712), 1, + ACTIONS(5680), 1, anon_sym_map_LBRACK, - STATE(335), 1, + STATE(435), 1, sym_plain_type, STATE(4403), 1, sym_reference_expression, - STATE(252), 2, + STATE(244), 2, sym_type_reference_expression, sym_qualified_type, - STATE(3222), 2, + STATE(3223), 2, sym_line_comment, sym_block_comment, - STATE(445), 4, + STATE(387), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(448), 12, + STATE(388), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -288122,7 +288235,7 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [118164] = 22, + [118111] = 22, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, @@ -288137,40 +288250,101 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_thread, ACTIONS(91), 1, anon_sym_atomic, - ACTIONS(597), 1, + ACTIONS(565), 1, sym_identifier, - ACTIONS(603), 1, + ACTIONS(571), 1, anon_sym_fn, - ACTIONS(607), 1, + ACTIONS(575), 1, anon_sym_struct, - ACTIONS(615), 1, + ACTIONS(583), 1, anon_sym_shared, - ACTIONS(3586), 1, + ACTIONS(3564), 1, anon_sym_LPAREN, - ACTIONS(3588), 1, + ACTIONS(3566), 1, anon_sym_STAR, - ACTIONS(5302), 1, + ACTIONS(5308), 1, anon_sym_BANG, - ACTIONS(5304), 1, + ACTIONS(5310), 1, anon_sym_LBRACK2, - ACTIONS(5306), 1, + ACTIONS(5312), 1, anon_sym_AMP, - STATE(4495), 1, - sym_reference_expression, - STATE(4638), 1, + STATE(4023), 1, sym_plain_type, - STATE(3223), 2, + STATE(4498), 1, + sym_reference_expression, + STATE(3224), 2, sym_line_comment, sym_block_comment, - STATE(3541), 2, + STATE(3460), 2, + sym_type_reference_expression, + sym_qualified_type, + STATE(2360), 4, + sym__plain_type_without_special, + sym_multi_return_type, + sym_result_type, + sym_option_type, + STATE(2362), 12, + sym_anon_struct_type, + sym_fixed_array_type, + sym_array_type, + sym_pointer_type, + sym_wrong_pointer_type, + sym_map_type, + sym_channel_type, + sym_shared_type, + sym_thread_type, + sym_atomic_type, + sym_generic_type, + sym_function_type, + [118194] = 22, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(4114), 1, + sym_identifier, + ACTIONS(4118), 1, + anon_sym_fn, + ACTIONS(4122), 1, + anon_sym_struct, + ACTIONS(4132), 1, + anon_sym_shared, + ACTIONS(4136), 1, + anon_sym_chan, + ACTIONS(4138), 1, + anon_sym_thread, + ACTIONS(4140), 1, + anon_sym_atomic, + ACTIONS(5696), 1, + anon_sym_LPAREN, + ACTIONS(5698), 1, + anon_sym_STAR, + ACTIONS(5700), 1, + anon_sym_QMARK, + ACTIONS(5702), 1, + anon_sym_BANG, + ACTIONS(5704), 1, + anon_sym_LBRACK2, + ACTIONS(5706), 1, + anon_sym_AMP, + ACTIONS(5708), 1, + anon_sym_map_LBRACK, + STATE(2564), 1, + sym_plain_type, + STATE(4391), 1, + sym_reference_expression, + STATE(2446), 2, sym_type_reference_expression, sym_qualified_type, - STATE(2302), 4, + STATE(3225), 2, + sym_line_comment, + sym_block_comment, + STATE(2471), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(2303), 12, + STATE(2472), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -288183,55 +288357,55 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [118247] = 22, + [118277] = 22, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(1191), 1, - sym_identifier, ACTIONS(1195), 1, - anon_sym_fn, + sym_identifier, ACTIONS(1199), 1, + anon_sym_fn, + ACTIONS(1203), 1, anon_sym_struct, - ACTIONS(1209), 1, - anon_sym_shared, ACTIONS(1213), 1, + anon_sym_shared, + ACTIONS(1217), 1, anon_sym_chan, - ACTIONS(1215), 1, + ACTIONS(1219), 1, anon_sym_thread, - ACTIONS(1217), 1, + ACTIONS(1221), 1, anon_sym_atomic, - ACTIONS(5686), 1, + ACTIONS(5742), 1, anon_sym_LPAREN, - ACTIONS(5688), 1, + ACTIONS(5744), 1, anon_sym_STAR, - ACTIONS(5690), 1, + ACTIONS(5746), 1, anon_sym_QMARK, - ACTIONS(5692), 1, + ACTIONS(5748), 1, anon_sym_BANG, - ACTIONS(5694), 1, + ACTIONS(5750), 1, anon_sym_LBRACK2, - ACTIONS(5696), 1, + ACTIONS(5752), 1, anon_sym_AMP, - ACTIONS(5698), 1, + ACTIONS(5754), 1, anon_sym_map_LBRACK, - STATE(1077), 1, + STATE(1018), 1, sym_plain_type, - STATE(4365), 1, + STATE(4349), 1, sym_reference_expression, - STATE(990), 2, + STATE(985), 2, sym_type_reference_expression, sym_qualified_type, - STATE(3224), 2, + STATE(3226), 2, sym_line_comment, sym_block_comment, - STATE(1020), 4, + STATE(1066), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(1019), 12, + STATE(1030), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -288244,55 +288418,55 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [118330] = 22, + [118360] = 22, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(3420), 1, - sym_identifier, - ACTIONS(3634), 1, - anon_sym_struct, - ACTIONS(5484), 1, - anon_sym_fn, - ACTIONS(5496), 1, - anon_sym_shared, - ACTIONS(5500), 1, + ACTIONS(47), 1, + anon_sym_QMARK, + ACTIONS(85), 1, + anon_sym_map_LBRACK, + ACTIONS(87), 1, anon_sym_chan, - ACTIONS(5502), 1, + ACTIONS(89), 1, anon_sym_thread, - ACTIONS(5504), 1, + ACTIONS(91), 1, anon_sym_atomic, - ACTIONS(5584), 1, + ACTIONS(565), 1, + sym_identifier, + ACTIONS(571), 1, + anon_sym_fn, + ACTIONS(575), 1, + anon_sym_struct, + ACTIONS(583), 1, + anon_sym_shared, + ACTIONS(3564), 1, anon_sym_LPAREN, - ACTIONS(5588), 1, + ACTIONS(3566), 1, anon_sym_STAR, - ACTIONS(5590), 1, - anon_sym_QMARK, - ACTIONS(5592), 1, + ACTIONS(5308), 1, anon_sym_BANG, - ACTIONS(5594), 1, + ACTIONS(5310), 1, anon_sym_LBRACK2, - ACTIONS(5596), 1, + ACTIONS(5312), 1, anon_sym_AMP, - ACTIONS(5598), 1, - anon_sym_map_LBRACK, - STATE(1657), 1, + STATE(3793), 1, sym_plain_type, - STATE(4341), 1, + STATE(4498), 1, sym_reference_expression, - STATE(3225), 2, + STATE(3227), 2, sym_line_comment, sym_block_comment, - STATE(3286), 2, + STATE(3460), 2, sym_type_reference_expression, sym_qualified_type, - STATE(1635), 4, + STATE(2360), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(1629), 12, + STATE(2362), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -288305,55 +288479,55 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [118413] = 22, + [118443] = 22, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(4014), 1, + ACTIONS(4114), 1, sym_identifier, - ACTIONS(4018), 1, + ACTIONS(4118), 1, anon_sym_fn, - ACTIONS(4022), 1, + ACTIONS(4122), 1, anon_sym_struct, - ACTIONS(4032), 1, + ACTIONS(4132), 1, anon_sym_shared, - ACTIONS(4036), 1, + ACTIONS(4136), 1, anon_sym_chan, - ACTIONS(4038), 1, + ACTIONS(4138), 1, anon_sym_thread, - ACTIONS(4040), 1, + ACTIONS(4140), 1, anon_sym_atomic, - ACTIONS(5672), 1, + ACTIONS(5696), 1, anon_sym_LPAREN, - ACTIONS(5674), 1, + ACTIONS(5698), 1, anon_sym_STAR, - ACTIONS(5676), 1, + ACTIONS(5700), 1, anon_sym_QMARK, - ACTIONS(5678), 1, + ACTIONS(5702), 1, anon_sym_BANG, - ACTIONS(5680), 1, + ACTIONS(5704), 1, anon_sym_LBRACK2, - ACTIONS(5682), 1, + ACTIONS(5706), 1, anon_sym_AMP, - ACTIONS(5684), 1, + ACTIONS(5708), 1, anon_sym_map_LBRACK, - STATE(2561), 1, + STATE(2545), 1, sym_plain_type, - STATE(4388), 1, + STATE(4391), 1, sym_reference_expression, - STATE(2432), 2, + STATE(2446), 2, sym_type_reference_expression, sym_qualified_type, - STATE(3226), 2, + STATE(3228), 2, sym_line_comment, sym_block_comment, - STATE(2492), 4, + STATE(2471), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(2493), 12, + STATE(2472), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -288366,55 +288540,55 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [118496] = 22, + [118526] = 22, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(3596), 1, + ACTIONS(4114), 1, sym_identifier, - ACTIONS(3600), 1, + ACTIONS(4118), 1, anon_sym_fn, - ACTIONS(3604), 1, + ACTIONS(4122), 1, anon_sym_struct, - ACTIONS(3614), 1, + ACTIONS(4132), 1, anon_sym_shared, - ACTIONS(3618), 1, + ACTIONS(4136), 1, anon_sym_chan, - ACTIONS(3620), 1, + ACTIONS(4138), 1, anon_sym_thread, - ACTIONS(3622), 1, + ACTIONS(4140), 1, anon_sym_atomic, - ACTIONS(5568), 1, + ACTIONS(5696), 1, anon_sym_LPAREN, - ACTIONS(5572), 1, + ACTIONS(5698), 1, anon_sym_STAR, - ACTIONS(5574), 1, + ACTIONS(5700), 1, anon_sym_QMARK, - ACTIONS(5576), 1, + ACTIONS(5702), 1, anon_sym_BANG, - ACTIONS(5578), 1, + ACTIONS(5704), 1, anon_sym_LBRACK2, - ACTIONS(5580), 1, + ACTIONS(5706), 1, anon_sym_AMP, - ACTIONS(5582), 1, + ACTIONS(5708), 1, anon_sym_map_LBRACK, - STATE(1466), 1, + STATE(2549), 1, sym_plain_type, - STATE(4459), 1, + STATE(4391), 1, sym_reference_expression, - STATE(1402), 2, + STATE(2446), 2, sym_type_reference_expression, sym_qualified_type, - STATE(3227), 2, + STATE(3229), 2, sym_line_comment, sym_block_comment, - STATE(1418), 4, + STATE(2471), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(1419), 12, + STATE(2472), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -288427,55 +288601,55 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [118579] = 22, + [118609] = 22, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(3690), 1, + ACTIONS(3630), 1, sym_identifier, - ACTIONS(3694), 1, + ACTIONS(3634), 1, anon_sym_fn, - ACTIONS(3698), 1, + ACTIONS(3638), 1, anon_sym_struct, - ACTIONS(3708), 1, + ACTIONS(3648), 1, anon_sym_shared, - ACTIONS(3712), 1, + ACTIONS(3652), 1, anon_sym_chan, - ACTIONS(3714), 1, + ACTIONS(3654), 1, anon_sym_thread, - ACTIONS(3716), 1, + ACTIONS(3656), 1, anon_sym_atomic, - ACTIONS(5714), 1, + ACTIONS(5590), 1, anon_sym_LPAREN, - ACTIONS(5716), 1, + ACTIONS(5774), 1, anon_sym_STAR, - ACTIONS(5718), 1, + ACTIONS(5776), 1, anon_sym_QMARK, - ACTIONS(5720), 1, + ACTIONS(5778), 1, anon_sym_BANG, - ACTIONS(5722), 1, + ACTIONS(5780), 1, anon_sym_LBRACK2, - ACTIONS(5724), 1, + ACTIONS(5782), 1, anon_sym_AMP, - ACTIONS(5726), 1, + ACTIONS(5784), 1, anon_sym_map_LBRACK, - STATE(1865), 1, + STATE(1691), 1, sym_plain_type, - STATE(4451), 1, + STATE(4378), 1, sym_reference_expression, - STATE(1754), 2, + STATE(1631), 2, sym_type_reference_expression, sym_qualified_type, - STATE(3228), 2, + STATE(3230), 2, sym_line_comment, sym_block_comment, - STATE(1844), 4, + STATE(1647), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(1791), 12, + STATE(1667), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -288488,44 +288662,55 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [118662] = 18, + [118692] = 22, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(85), 1, - anon_sym_map_LBRACK, - ACTIONS(87), 1, - anon_sym_chan, - ACTIONS(89), 1, - anon_sym_thread, - ACTIONS(91), 1, - anon_sym_atomic, - ACTIONS(597), 1, + ACTIONS(1195), 1, sym_identifier, - ACTIONS(603), 1, + ACTIONS(1199), 1, anon_sym_fn, - ACTIONS(607), 1, + ACTIONS(1203), 1, anon_sym_struct, - ACTIONS(615), 1, + ACTIONS(1213), 1, anon_sym_shared, - ACTIONS(3588), 1, + ACTIONS(1217), 1, + anon_sym_chan, + ACTIONS(1219), 1, + anon_sym_thread, + ACTIONS(1221), 1, + anon_sym_atomic, + ACTIONS(5742), 1, + anon_sym_LPAREN, + ACTIONS(5744), 1, anon_sym_STAR, - ACTIONS(5304), 1, + ACTIONS(5746), 1, + anon_sym_QMARK, + ACTIONS(5748), 1, + anon_sym_BANG, + ACTIONS(5750), 1, anon_sym_LBRACK2, - ACTIONS(5306), 1, + ACTIONS(5752), 1, anon_sym_AMP, - STATE(4125), 1, - sym__plain_type_without_special, - STATE(4495), 1, + ACTIONS(5754), 1, + anon_sym_map_LBRACK, + STATE(1065), 1, + sym_plain_type, + STATE(4349), 1, sym_reference_expression, - STATE(3229), 2, - sym_line_comment, - sym_block_comment, - STATE(3541), 2, + STATE(985), 2, sym_type_reference_expression, sym_qualified_type, - STATE(2303), 12, + STATE(3231), 2, + sym_line_comment, + sym_block_comment, + STATE(1066), 4, + sym__plain_type_without_special, + sym_multi_return_type, + sym_result_type, + sym_option_type, + STATE(1030), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -288538,7 +288723,7 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [118730] = 18, + [118775] = 18, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, @@ -288551,31 +288736,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_thread, ACTIONS(91), 1, anon_sym_atomic, - ACTIONS(597), 1, + ACTIONS(565), 1, sym_identifier, - ACTIONS(603), 1, + ACTIONS(571), 1, anon_sym_fn, - ACTIONS(607), 1, + ACTIONS(575), 1, anon_sym_struct, - ACTIONS(615), 1, + ACTIONS(583), 1, anon_sym_shared, - ACTIONS(3588), 1, + ACTIONS(3566), 1, anon_sym_STAR, - ACTIONS(5304), 1, + ACTIONS(5310), 1, anon_sym_LBRACK2, - ACTIONS(5306), 1, + ACTIONS(5312), 1, anon_sym_AMP, - STATE(4051), 1, + STATE(4085), 1, sym__plain_type_without_special, - STATE(4495), 1, + STATE(4498), 1, sym_reference_expression, - STATE(3230), 2, + STATE(3232), 2, sym_line_comment, sym_block_comment, - STATE(3541), 2, + STATE(3460), 2, sym_type_reference_expression, sym_qualified_type, - STATE(2303), 12, + STATE(2362), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -288588,7 +288773,7 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [118798] = 18, + [118843] = 18, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, @@ -288601,31 +288786,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_thread, ACTIONS(91), 1, anon_sym_atomic, - ACTIONS(597), 1, + ACTIONS(565), 1, sym_identifier, - ACTIONS(603), 1, + ACTIONS(571), 1, anon_sym_fn, - ACTIONS(607), 1, + ACTIONS(575), 1, anon_sym_struct, - ACTIONS(615), 1, + ACTIONS(583), 1, anon_sym_shared, - ACTIONS(3588), 1, + ACTIONS(3566), 1, anon_sym_STAR, - ACTIONS(5304), 1, + ACTIONS(5310), 1, anon_sym_LBRACK2, - ACTIONS(5306), 1, + ACTIONS(5312), 1, anon_sym_AMP, - STATE(3997), 1, + STATE(4049), 1, sym__plain_type_without_special, - STATE(4495), 1, + STATE(4498), 1, sym_reference_expression, - STATE(3231), 2, + STATE(3233), 2, sym_line_comment, sym_block_comment, - STATE(3541), 2, + STATE(3460), 2, sym_type_reference_expression, sym_qualified_type, - STATE(2303), 12, + STATE(2362), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -288638,7 +288823,7 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [118866] = 18, + [118911] = 18, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, @@ -288651,31 +288836,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_thread, ACTIONS(91), 1, anon_sym_atomic, - ACTIONS(597), 1, + ACTIONS(565), 1, sym_identifier, - ACTIONS(603), 1, + ACTIONS(571), 1, anon_sym_fn, - ACTIONS(607), 1, + ACTIONS(575), 1, anon_sym_struct, - ACTIONS(615), 1, + ACTIONS(583), 1, anon_sym_shared, - ACTIONS(3588), 1, + ACTIONS(3566), 1, anon_sym_STAR, - ACTIONS(5304), 1, + ACTIONS(5310), 1, anon_sym_LBRACK2, - ACTIONS(5306), 1, + ACTIONS(5312), 1, anon_sym_AMP, - STATE(4045), 1, + STATE(4039), 1, sym__plain_type_without_special, - STATE(4495), 1, + STATE(4498), 1, sym_reference_expression, - STATE(3232), 2, + STATE(3234), 2, sym_line_comment, sym_block_comment, - STATE(3541), 2, + STATE(3460), 2, sym_type_reference_expression, sym_qualified_type, - STATE(2303), 12, + STATE(2362), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -288688,7 +288873,7 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [118934] = 18, + [118979] = 18, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, @@ -288701,31 +288886,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_thread, ACTIONS(91), 1, anon_sym_atomic, - ACTIONS(597), 1, + ACTIONS(565), 1, sym_identifier, - ACTIONS(603), 1, + ACTIONS(571), 1, anon_sym_fn, - ACTIONS(607), 1, + ACTIONS(575), 1, anon_sym_struct, - ACTIONS(615), 1, + ACTIONS(583), 1, anon_sym_shared, - ACTIONS(3588), 1, + ACTIONS(3566), 1, anon_sym_STAR, - ACTIONS(5304), 1, + ACTIONS(5310), 1, anon_sym_LBRACK2, - ACTIONS(5306), 1, + ACTIONS(5312), 1, anon_sym_AMP, - STATE(4302), 1, + STATE(4248), 1, sym__plain_type_without_special, - STATE(4495), 1, + STATE(4498), 1, sym_reference_expression, - STATE(3233), 2, + STATE(3235), 2, sym_line_comment, sym_block_comment, - STATE(3541), 2, + STATE(3460), 2, sym_type_reference_expression, sym_qualified_type, - STATE(2303), 12, + STATE(2362), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -288738,7 +288923,7 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [119002] = 18, + [119047] = 18, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, @@ -288751,31 +288936,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_thread, ACTIONS(91), 1, anon_sym_atomic, - ACTIONS(597), 1, + ACTIONS(565), 1, sym_identifier, - ACTIONS(603), 1, + ACTIONS(571), 1, anon_sym_fn, - ACTIONS(607), 1, + ACTIONS(575), 1, anon_sym_struct, - ACTIONS(615), 1, + ACTIONS(583), 1, anon_sym_shared, - ACTIONS(3588), 1, + ACTIONS(3566), 1, anon_sym_STAR, - ACTIONS(5304), 1, + ACTIONS(5310), 1, anon_sym_LBRACK2, - ACTIONS(5306), 1, + ACTIONS(5312), 1, anon_sym_AMP, - STATE(4397), 1, + STATE(4115), 1, sym__plain_type_without_special, - STATE(4495), 1, + STATE(4498), 1, sym_reference_expression, - STATE(3234), 2, + STATE(3236), 2, sym_line_comment, sym_block_comment, - STATE(3541), 2, + STATE(3460), 2, sym_type_reference_expression, sym_qualified_type, - STATE(2303), 12, + STATE(2362), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -288788,7 +288973,7 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [119070] = 18, + [119115] = 18, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, @@ -288801,31 +288986,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_thread, ACTIONS(91), 1, anon_sym_atomic, - ACTIONS(597), 1, + ACTIONS(565), 1, sym_identifier, - ACTIONS(603), 1, + ACTIONS(571), 1, anon_sym_fn, - ACTIONS(607), 1, + ACTIONS(575), 1, anon_sym_struct, - ACTIONS(615), 1, + ACTIONS(583), 1, anon_sym_shared, - ACTIONS(3588), 1, + ACTIONS(3566), 1, anon_sym_STAR, - ACTIONS(5304), 1, + ACTIONS(5310), 1, anon_sym_LBRACK2, - ACTIONS(5306), 1, + ACTIONS(5312), 1, anon_sym_AMP, - STATE(4251), 1, + STATE(4226), 1, sym__plain_type_without_special, - STATE(4495), 1, + STATE(4498), 1, sym_reference_expression, - STATE(3235), 2, + STATE(3237), 2, sym_line_comment, sym_block_comment, - STATE(3541), 2, + STATE(3460), 2, sym_type_reference_expression, sym_qualified_type, - STATE(2303), 12, + STATE(2362), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -288838,7 +289023,7 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [119138] = 18, + [119183] = 18, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, @@ -288851,31 +289036,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_thread, ACTIONS(91), 1, anon_sym_atomic, - ACTIONS(597), 1, + ACTIONS(565), 1, sym_identifier, - ACTIONS(603), 1, + ACTIONS(571), 1, anon_sym_fn, - ACTIONS(607), 1, + ACTIONS(575), 1, anon_sym_struct, - ACTIONS(615), 1, + ACTIONS(583), 1, anon_sym_shared, - ACTIONS(3588), 1, + ACTIONS(3566), 1, anon_sym_STAR, - ACTIONS(5304), 1, + ACTIONS(5310), 1, anon_sym_LBRACK2, - ACTIONS(5306), 1, + ACTIONS(5312), 1, anon_sym_AMP, - STATE(4080), 1, + STATE(4092), 1, sym__plain_type_without_special, - STATE(4495), 1, + STATE(4498), 1, sym_reference_expression, - STATE(3236), 2, + STATE(3238), 2, sym_line_comment, sym_block_comment, - STATE(3541), 2, + STATE(3460), 2, sym_type_reference_expression, sym_qualified_type, - STATE(2303), 12, + STATE(2362), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -288888,60 +289073,113 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [119206] = 21, + [119251] = 21, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(1478), 1, - sym___double_quote, ACTIONS(1480), 1, - sym___single_quote, + sym___double_quote, ACTIONS(1482), 1, - sym___c_double_quote, + sym___single_quote, ACTIONS(1484), 1, - sym___c_single_quote, + sym___c_double_quote, ACTIONS(1486), 1, + sym___c_single_quote, + ACTIONS(1488), 1, sym___r_double_quote, + ACTIONS(1490), 1, + sym___r_single_quote, + ACTIONS(5822), 1, + sym_identifier, + ACTIONS(5824), 1, + anon_sym_if, + ACTIONS(5826), 1, + anon_sym_unsafe, + STATE(3861), 1, + sym_attribute_expression, + STATE(3862), 1, + sym_value_attribute, + STATE(3982), 1, + sym_reference_expression, + STATE(4240), 1, + sym_literal, + ACTIONS(1474), 2, + sym_float_literal, + sym_rune_literal, + STATE(3239), 2, + sym_line_comment, + sym_block_comment, + STATE(4192), 2, + sym_if_attribute, + sym__plain_attribute, + STATE(4193), 2, + sym_literal_attribute, + sym_key_value_attribute, + STATE(2401), 3, + sym_c_string_literal, + sym_raw_string_literal, + sym_interpreted_string_literal, + ACTIONS(1458), 5, + sym_none, + sym_true, + sym_false, + sym_nil, + sym_int_literal, + [119325] = 21, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(1480), 1, + sym___double_quote, + ACTIONS(1482), 1, + sym___single_quote, + ACTIONS(1484), 1, + sym___c_double_quote, + ACTIONS(1486), 1, + sym___c_single_quote, ACTIONS(1488), 1, + sym___r_double_quote, + ACTIONS(1490), 1, sym___r_single_quote, - ACTIONS(5816), 1, + ACTIONS(5822), 1, sym_identifier, - ACTIONS(5818), 1, + ACTIONS(5824), 1, anon_sym_if, - ACTIONS(5820), 1, + ACTIONS(5826), 1, anon_sym_unsafe, - STATE(3822), 1, + STATE(3862), 1, sym_value_attribute, - STATE(3834), 1, + STATE(3982), 1, sym_reference_expression, - STATE(4226), 1, + STATE(4196), 1, sym_attribute_expression, - STATE(4227), 1, + STATE(4240), 1, sym_literal, - ACTIONS(1472), 2, + ACTIONS(1474), 2, sym_float_literal, sym_rune_literal, - STATE(3237), 2, + STATE(3240), 2, sym_line_comment, sym_block_comment, - STATE(4152), 2, + STATE(4192), 2, sym_if_attribute, sym__plain_attribute, - STATE(4153), 2, + STATE(4193), 2, sym_literal_attribute, sym_key_value_attribute, - STATE(2308), 3, + STATE(2401), 3, sym_c_string_literal, sym_raw_string_literal, sym_interpreted_string_literal, - ACTIONS(1456), 5, + ACTIONS(1458), 5, sym_none, sym_true, sym_false, sym_nil, sym_int_literal, - [119280] = 18, + [119399] = 18, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, @@ -288954,31 +289192,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_thread, ACTIONS(91), 1, anon_sym_atomic, - ACTIONS(597), 1, + ACTIONS(565), 1, sym_identifier, - ACTIONS(603), 1, + ACTIONS(571), 1, anon_sym_fn, - ACTIONS(607), 1, + ACTIONS(575), 1, anon_sym_struct, - ACTIONS(615), 1, + ACTIONS(583), 1, anon_sym_shared, - ACTIONS(3588), 1, + ACTIONS(3566), 1, anon_sym_STAR, - ACTIONS(5304), 1, + ACTIONS(5310), 1, anon_sym_LBRACK2, - ACTIONS(5306), 1, + ACTIONS(5312), 1, anon_sym_AMP, - STATE(4495), 1, - sym_reference_expression, - STATE(4505), 1, + STATE(4245), 1, sym__plain_type_without_special, - STATE(3238), 2, + STATE(4498), 1, + sym_reference_expression, + STATE(3241), 2, sym_line_comment, sym_block_comment, - STATE(3541), 2, + STATE(3460), 2, sym_type_reference_expression, sym_qualified_type, - STATE(2303), 12, + STATE(2362), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -288991,7 +289229,7 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [119348] = 18, + [119467] = 18, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, @@ -289004,31 +289242,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_thread, ACTIONS(91), 1, anon_sym_atomic, - ACTIONS(597), 1, + ACTIONS(565), 1, sym_identifier, - ACTIONS(603), 1, + ACTIONS(571), 1, anon_sym_fn, - ACTIONS(607), 1, + ACTIONS(575), 1, anon_sym_struct, - ACTIONS(615), 1, + ACTIONS(583), 1, anon_sym_shared, - ACTIONS(3588), 1, + ACTIONS(3566), 1, anon_sym_STAR, - ACTIONS(5304), 1, + ACTIONS(5310), 1, anon_sym_LBRACK2, - ACTIONS(5306), 1, + ACTIONS(5312), 1, anon_sym_AMP, - STATE(4311), 1, - sym__plain_type_without_special, - STATE(4495), 1, + STATE(4498), 1, sym_reference_expression, - STATE(3239), 2, + STATE(4586), 1, + sym__plain_type_without_special, + STATE(3242), 2, sym_line_comment, sym_block_comment, - STATE(3541), 2, + STATE(3460), 2, sym_type_reference_expression, sym_qualified_type, - STATE(2303), 12, + STATE(2362), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -289041,7 +289279,7 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [119416] = 18, + [119535] = 18, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, @@ -289054,31 +289292,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_thread, ACTIONS(91), 1, anon_sym_atomic, - ACTIONS(597), 1, + ACTIONS(565), 1, sym_identifier, - ACTIONS(603), 1, + ACTIONS(571), 1, anon_sym_fn, - ACTIONS(607), 1, + ACTIONS(575), 1, anon_sym_struct, - ACTIONS(615), 1, + ACTIONS(583), 1, anon_sym_shared, - ACTIONS(3588), 1, + ACTIONS(3566), 1, anon_sym_STAR, - ACTIONS(5304), 1, + ACTIONS(5310), 1, anon_sym_LBRACK2, - ACTIONS(5306), 1, + ACTIONS(5312), 1, anon_sym_AMP, - STATE(4187), 1, + STATE(4177), 1, sym__plain_type_without_special, - STATE(4495), 1, + STATE(4498), 1, sym_reference_expression, - STATE(3240), 2, + STATE(3243), 2, sym_line_comment, sym_block_comment, - STATE(3541), 2, + STATE(3460), 2, sym_type_reference_expression, sym_qualified_type, - STATE(2303), 12, + STATE(2362), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -289091,60 +289329,57 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [119484] = 21, + [119603] = 18, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(1478), 1, - sym___double_quote, - ACTIONS(1480), 1, - sym___single_quote, - ACTIONS(1482), 1, - sym___c_double_quote, - ACTIONS(1484), 1, - sym___c_single_quote, - ACTIONS(1486), 1, - sym___r_double_quote, - ACTIONS(1488), 1, - sym___r_single_quote, - ACTIONS(5816), 1, + ACTIONS(85), 1, + anon_sym_map_LBRACK, + ACTIONS(87), 1, + anon_sym_chan, + ACTIONS(89), 1, + anon_sym_thread, + ACTIONS(91), 1, + anon_sym_atomic, + ACTIONS(565), 1, sym_identifier, - ACTIONS(5818), 1, - anon_sym_if, - ACTIONS(5820), 1, - anon_sym_unsafe, - STATE(3819), 1, - sym_attribute_expression, - STATE(3822), 1, - sym_value_attribute, - STATE(3834), 1, + ACTIONS(571), 1, + anon_sym_fn, + ACTIONS(575), 1, + anon_sym_struct, + ACTIONS(583), 1, + anon_sym_shared, + ACTIONS(3566), 1, + anon_sym_STAR, + ACTIONS(5310), 1, + anon_sym_LBRACK2, + ACTIONS(5312), 1, + anon_sym_AMP, + STATE(4309), 1, + sym__plain_type_without_special, + STATE(4498), 1, sym_reference_expression, - STATE(4227), 1, - sym_literal, - ACTIONS(1472), 2, - sym_float_literal, - sym_rune_literal, - STATE(3241), 2, + STATE(3244), 2, sym_line_comment, sym_block_comment, - STATE(4152), 2, - sym_if_attribute, - sym__plain_attribute, - STATE(4153), 2, - sym_literal_attribute, - sym_key_value_attribute, - STATE(2308), 3, - sym_c_string_literal, - sym_raw_string_literal, - sym_interpreted_string_literal, - ACTIONS(1456), 5, - sym_none, - sym_true, - sym_false, - sym_nil, - sym_int_literal, - [119558] = 18, + STATE(3460), 2, + sym_type_reference_expression, + sym_qualified_type, + STATE(2362), 12, + sym_anon_struct_type, + sym_fixed_array_type, + sym_array_type, + sym_pointer_type, + sym_wrong_pointer_type, + sym_map_type, + sym_channel_type, + sym_shared_type, + sym_thread_type, + sym_atomic_type, + sym_generic_type, + sym_function_type, + [119671] = 18, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, @@ -289157,31 +289392,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_thread, ACTIONS(91), 1, anon_sym_atomic, - ACTIONS(597), 1, + ACTIONS(565), 1, sym_identifier, - ACTIONS(603), 1, + ACTIONS(571), 1, anon_sym_fn, - ACTIONS(607), 1, + ACTIONS(575), 1, anon_sym_struct, - ACTIONS(615), 1, + ACTIONS(583), 1, anon_sym_shared, - ACTIONS(3588), 1, + ACTIONS(3566), 1, anon_sym_STAR, - ACTIONS(5304), 1, + ACTIONS(5310), 1, anon_sym_LBRACK2, - ACTIONS(5306), 1, + ACTIONS(5312), 1, anon_sym_AMP, - STATE(4064), 1, + STATE(4222), 1, sym__plain_type_without_special, - STATE(4495), 1, + STATE(4498), 1, sym_reference_expression, - STATE(3242), 2, + STATE(3245), 2, sym_line_comment, sym_block_comment, - STATE(3541), 2, + STATE(3460), 2, sym_type_reference_expression, sym_qualified_type, - STATE(2303), 12, + STATE(2362), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -289194,7 +289429,7 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [119626] = 18, + [119739] = 18, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, @@ -289207,31 +289442,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_thread, ACTIONS(91), 1, anon_sym_atomic, - ACTIONS(597), 1, + ACTIONS(565), 1, sym_identifier, - ACTIONS(603), 1, + ACTIONS(571), 1, anon_sym_fn, - ACTIONS(607), 1, + ACTIONS(575), 1, anon_sym_struct, - ACTIONS(615), 1, + ACTIONS(583), 1, anon_sym_shared, - ACTIONS(3588), 1, + ACTIONS(3566), 1, anon_sym_STAR, - ACTIONS(5304), 1, + ACTIONS(5310), 1, anon_sym_LBRACK2, - ACTIONS(5306), 1, + ACTIONS(5312), 1, anon_sym_AMP, - STATE(4315), 1, + STATE(4369), 1, sym__plain_type_without_special, - STATE(4495), 1, + STATE(4498), 1, sym_reference_expression, - STATE(3243), 2, + STATE(3246), 2, sym_line_comment, sym_block_comment, - STATE(3541), 2, + STATE(3460), 2, sym_type_reference_expression, sym_qualified_type, - STATE(2303), 12, + STATE(2362), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -289244,7 +289479,7 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [119694] = 18, + [119807] = 18, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, @@ -289257,31 +289492,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_thread, ACTIONS(91), 1, anon_sym_atomic, - ACTIONS(597), 1, + ACTIONS(565), 1, sym_identifier, - ACTIONS(603), 1, + ACTIONS(571), 1, anon_sym_fn, - ACTIONS(607), 1, + ACTIONS(575), 1, anon_sym_struct, - ACTIONS(615), 1, + ACTIONS(583), 1, anon_sym_shared, - ACTIONS(3588), 1, + ACTIONS(3566), 1, anon_sym_STAR, - ACTIONS(5304), 1, + ACTIONS(5310), 1, anon_sym_LBRACK2, - ACTIONS(5306), 1, + ACTIONS(5312), 1, anon_sym_AMP, - STATE(4055), 1, + STATE(4214), 1, sym__plain_type_without_special, - STATE(4495), 1, + STATE(4498), 1, sym_reference_expression, - STATE(3244), 2, + STATE(3247), 2, sym_line_comment, sym_block_comment, - STATE(3541), 2, + STATE(3460), 2, sym_type_reference_expression, sym_qualified_type, - STATE(2303), 12, + STATE(2362), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -289294,48 +289529,48 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [119762] = 19, + [119875] = 19, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(4912), 1, + ACTIONS(4918), 1, anon_sym_LBRACK, - ACTIONS(5822), 1, + ACTIONS(5828), 1, sym_identifier, - ACTIONS(5824), 1, - anon_sym_LPAREN, ACTIONS(5830), 1, + anon_sym_LPAREN, + ACTIONS(5836), 1, anon_sym_LT2, - ACTIONS(5832), 1, + ACTIONS(5838), 1, anon_sym_LBRACK2, - STATE(3287), 1, + STATE(3294), 1, sym_receiver, - STATE(3402), 1, + STATE(3403), 1, sym__function_name, - STATE(3431), 1, + STATE(3430), 1, sym_capture_list, - STATE(3699), 1, + STATE(3630), 1, sym_generic_parameters, - STATE(3807), 1, + STATE(3789), 1, sym_overridable_operator, - STATE(4107), 1, + STATE(4124), 1, sym_signature, - STATE(4512), 1, + STATE(4515), 1, sym_reference_expression, - STATE(4520), 1, + STATE(4523), 1, sym_static_receiver, - STATE(2875), 2, + STATE(2850), 2, sym_parameter_list, sym_type_parameter_list, - STATE(3245), 2, + STATE(3248), 2, sym_line_comment, sym_block_comment, - ACTIONS(5828), 3, + ACTIONS(5834), 3, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(5826), 8, + ACTIONS(5832), 8, anon_sym_PLUS, anon_sym_DASH, anon_sym_STAR, @@ -289344,15 +289579,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - [119831] = 4, + [119944] = 4, ACTIONS(497), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, anon_sym_SLASH_STAR, - STATE(3246), 2, + STATE(3249), 2, sym_line_comment, sym_block_comment, - ACTIONS(2225), 24, + ACTIONS(2870), 24, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -289377,15 +289612,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_thread, anon_sym_atomic, anon_sym_AT_LBRACK, - [119868] = 4, + [119981] = 4, ACTIONS(497), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, anon_sym_SLASH_STAR, - STATE(3247), 2, + STATE(3250), 2, sym_line_comment, sym_block_comment, - ACTIONS(2153), 24, + ACTIONS(2918), 24, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -289410,15 +289645,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_thread, anon_sym_atomic, anon_sym_AT_LBRACK, - [119905] = 4, + [120018] = 4, ACTIONS(497), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, anon_sym_SLASH_STAR, - STATE(3248), 2, + STATE(3251), 2, sym_line_comment, sym_block_comment, - ACTIONS(2177), 24, + ACTIONS(2812), 24, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -289443,15 +289678,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_thread, anon_sym_atomic, anon_sym_AT_LBRACK, - [119942] = 4, + [120055] = 4, ACTIONS(497), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, anon_sym_SLASH_STAR, - STATE(3249), 2, + STATE(3252), 2, sym_line_comment, sym_block_comment, - ACTIONS(2912), 24, + ACTIONS(2914), 24, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -289476,15 +289711,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_thread, anon_sym_atomic, anon_sym_AT_LBRACK, - [119979] = 4, + [120092] = 4, ACTIONS(497), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, anon_sym_SLASH_STAR, - STATE(3250), 2, + STATE(3253), 2, sym_line_comment, sym_block_comment, - ACTIONS(2217), 24, + ACTIONS(2704), 24, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -289509,22 +289744,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_thread, anon_sym_atomic, anon_sym_AT_LBRACK, - [120016] = 6, + [120129] = 6, ACTIONS(497), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, anon_sym_SLASH_STAR, - STATE(3455), 1, + STATE(3468), 1, aux_sym_strictly_expression_list_repeat1, - STATE(3251), 2, + STATE(3254), 2, sym_line_comment, sym_block_comment, - ACTIONS(1759), 4, + ACTIONS(1643), 4, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, anon_sym_RBRACE, - ACTIONS(1761), 15, + ACTIONS(1649), 15, anon_sym_COMMA, anon_sym_EQ, anon_sym_STAR_EQ, @@ -289540,15 +289775,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [120053] = 5, + [120166] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - STATE(3252), 2, + STATE(3255), 2, sym_line_comment, sym_block_comment, - ACTIONS(2177), 7, + ACTIONS(2812), 7, anon_sym_fn, anon_sym_struct, sym_identifier, @@ -289556,7 +289791,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_chan, anon_sym_thread, anon_sym_atomic, - ACTIONS(2175), 11, + ACTIONS(2810), 11, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_LPAREN, @@ -289568,52 +289803,43 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, anon_sym_AMP, anon_sym_map_LBRACK, - [120086] = 14, + [120199] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(1478), 1, - sym___double_quote, - ACTIONS(1480), 1, - sym___single_quote, - ACTIONS(1482), 1, - sym___c_double_quote, - ACTIONS(1484), 1, - sym___c_single_quote, - ACTIONS(1486), 1, - sym___r_double_quote, - ACTIONS(1488), 1, - sym___r_single_quote, - ACTIONS(5834), 1, - sym_identifier, - STATE(4173), 1, - sym_literal, - ACTIONS(1472), 2, - sym_float_literal, - sym_rune_literal, - STATE(3253), 2, + STATE(3256), 2, sym_line_comment, sym_block_comment, - STATE(2308), 3, - sym_c_string_literal, - sym_raw_string_literal, - sym_interpreted_string_literal, - ACTIONS(1456), 5, - sym_none, - sym_true, - sym_false, - sym_nil, - sym_int_literal, - [120137] = 5, + ACTIONS(2914), 7, + anon_sym_fn, + anon_sym_struct, + sym_identifier, + anon_sym_shared, + anon_sym_chan, + anon_sym_thread, + anon_sym_atomic, + ACTIONS(2912), 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, + [120232] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - STATE(3254), 2, + STATE(3257), 2, sym_line_comment, sym_block_comment, - ACTIONS(2153), 7, + ACTIONS(2704), 7, anon_sym_fn, anon_sym_struct, sym_identifier, @@ -289621,7 +289847,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_chan, anon_sym_thread, anon_sym_atomic, - ACTIONS(2151), 11, + ACTIONS(2702), 11, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_LPAREN, @@ -289633,33 +289859,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, anon_sym_AMP, anon_sym_map_LBRACK, - [120170] = 12, + [120265] = 12, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(5822), 1, + ACTIONS(5828), 1, sym_identifier, - ACTIONS(5836), 1, + ACTIONS(5840), 1, anon_sym_LPAREN, - STATE(3323), 1, + STATE(3301), 1, sym_receiver, - STATE(3403), 1, + STATE(3410), 1, sym__function_name, - STATE(3807), 1, + STATE(3789), 1, sym_overridable_operator, - STATE(4512), 1, + STATE(4515), 1, sym_reference_expression, - STATE(4514), 1, + STATE(4553), 1, sym_static_receiver, - STATE(3255), 2, + STATE(3258), 2, sym_line_comment, sym_block_comment, - ACTIONS(5828), 3, + ACTIONS(5834), 3, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(5826), 8, + ACTIONS(5832), 8, anon_sym_PLUS, anon_sym_DASH, anon_sym_STAR, @@ -289668,43 +289894,50 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - [120217] = 5, + [120312] = 12, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - STATE(3256), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(2912), 7, - anon_sym_fn, - anon_sym_struct, + ACTIONS(5828), 1, sym_identifier, - anon_sym_shared, - anon_sym_chan, - anon_sym_thread, - anon_sym_atomic, - ACTIONS(2910), 11, - anon_sym_LBRACE, - anon_sym_COMMA, + ACTIONS(5840), 1, anon_sym_LPAREN, - anon_sym_RPAREN, + STATE(3307), 1, + sym_receiver, + STATE(3433), 1, + sym__function_name, + STATE(3789), 1, + sym_overridable_operator, + STATE(4515), 1, + sym_reference_expression, + STATE(4534), 1, + sym_static_receiver, + STATE(3259), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(5834), 3, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(5832), 8, + anon_sym_PLUS, + anon_sym_DASH, anon_sym_STAR, - anon_sym_RBRACK, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_LBRACK2, - anon_sym_AMP, - anon_sym_map_LBRACK, - [120250] = 5, + anon_sym_PERCENT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + [120359] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - STATE(3257), 2, + STATE(3260), 2, sym_line_comment, sym_block_comment, - ACTIONS(2217), 7, + ACTIONS(2870), 7, anon_sym_fn, anon_sym_struct, sym_identifier, @@ -289712,7 +289945,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_chan, anon_sym_thread, anon_sym_atomic, - ACTIONS(2215), 11, + ACTIONS(2868), 11, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_LPAREN, @@ -289724,15 +289957,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, anon_sym_AMP, anon_sym_map_LBRACK, - [120283] = 5, + [120392] = 14, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - STATE(3258), 2, + ACTIONS(1480), 1, + sym___double_quote, + ACTIONS(1482), 1, + sym___single_quote, + ACTIONS(1484), 1, + sym___c_double_quote, + ACTIONS(1486), 1, + sym___c_single_quote, + ACTIONS(1488), 1, + sym___r_double_quote, + ACTIONS(1490), 1, + sym___r_single_quote, + ACTIONS(5842), 1, + sym_identifier, + STATE(4239), 1, + sym_literal, + ACTIONS(1474), 2, + sym_float_literal, + sym_rune_literal, + STATE(3261), 2, + sym_line_comment, + sym_block_comment, + STATE(2401), 3, + sym_c_string_literal, + sym_raw_string_literal, + sym_interpreted_string_literal, + ACTIONS(1458), 5, + sym_none, + sym_true, + sym_false, + sym_nil, + sym_int_literal, + [120443] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + STATE(3262), 2, sym_line_comment, sym_block_comment, - ACTIONS(2225), 7, + ACTIONS(2918), 7, anon_sym_fn, anon_sym_struct, sym_identifier, @@ -289740,7 +290010,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_chan, anon_sym_thread, anon_sym_atomic, - ACTIONS(2223), 11, + ACTIONS(2916), 11, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_LPAREN, @@ -289752,68 +290022,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, anon_sym_AMP, anon_sym_map_LBRACK, - [120316] = 12, + [120476] = 12, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(5822), 1, + ACTIONS(5828), 1, sym_identifier, - ACTIONS(5836), 1, + ACTIONS(5840), 1, anon_sym_LPAREN, - STATE(3306), 1, + STATE(3293), 1, sym_receiver, - STATE(3405), 1, + STATE(3407), 1, sym__function_name, - STATE(3807), 1, + STATE(3789), 1, sym_overridable_operator, - STATE(4512), 1, + STATE(4515), 1, sym_reference_expression, - STATE(4524), 1, - sym_static_receiver, - STATE(3259), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(5828), 3, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(5826), 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, - [120363] = 12, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_STAR, - ACTIONS(5822), 1, - sym_identifier, - ACTIONS(5836), 1, - anon_sym_LPAREN, - STATE(3303), 1, - sym_receiver, - STATE(3422), 1, - sym__function_name, - STATE(3807), 1, - sym_overridable_operator, - STATE(4452), 1, + STATE(4577), 1, sym_static_receiver, - STATE(4512), 1, - sym_reference_expression, - STATE(3260), 2, + STATE(3263), 2, sym_line_comment, sym_block_comment, - ACTIONS(5828), 3, + ACTIONS(5834), 3, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(5826), 8, + ACTIONS(5832), 8, anon_sym_PLUS, anon_sym_DASH, anon_sym_STAR, @@ -289822,47 +290057,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - [120410] = 6, + [120523] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(1757), 1, + ACTIONS(1641), 1, anon_sym_LBRACE, - STATE(3893), 1, - aux_sym_strictly_expression_list_repeat1, - STATE(3261), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(3524), 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, - [120444] = 6, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_STAR, - ACTIONS(1757), 1, - anon_sym_SEMI, - STATE(3792), 1, + STATE(3891), 1, aux_sym_strictly_expression_list_repeat1, - STATE(3262), 2, + STATE(3264), 2, sym_line_comment, sym_block_comment, - ACTIONS(3524), 15, + ACTIONS(3522), 15, anon_sym_COMMA, anon_sym_EQ, anon_sym_STAR_EQ, @@ -289878,15 +290085,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [120478] = 4, + [120557] = 4, ACTIONS(497), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, anon_sym_SLASH_STAR, - STATE(3263), 2, + STATE(3265), 2, sym_line_comment, sym_block_comment, - ACTIONS(5838), 17, + ACTIONS(5844), 17, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -289904,19 +290111,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, sym_identifier, anon_sym_AT_LBRACK, - [120508] = 7, + [120587] = 7, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(5840), 1, + ACTIONS(5846), 1, anon_sym_static, - ACTIONS(5842), 1, + ACTIONS(5848), 1, anon_sym_volatile, - STATE(3264), 2, + STATE(3266), 2, sym_line_comment, sym_block_comment, - ACTIONS(4551), 7, + ACTIONS(4557), 7, anon_sym_fn, anon_sym_struct, sym_identifier, @@ -289924,7 +290131,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_chan, anon_sym_thread, anon_sym_atomic, - ACTIONS(4553), 8, + ACTIONS(4559), 8, anon_sym_LPAREN, anon_sym_STAR, anon_sym_DOT_DOT_DOT, @@ -289933,15 +290140,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, anon_sym_AMP, anon_sym_map_LBRACK, - [120544] = 4, + [120623] = 4, ACTIONS(497), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, anon_sym_SLASH_STAR, - STATE(3265), 2, + STATE(3267), 2, sym_line_comment, sym_block_comment, - ACTIONS(5844), 17, + ACTIONS(5850), 17, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -289959,17 +290166,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, sym_identifier, anon_sym_AT_LBRACK, - [120574] = 4, + [120653] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - STATE(3266), 2, + ACTIONS(1641), 1, + anon_sym_SEMI, + STATE(3905), 1, + aux_sym_strictly_expression_list_repeat1, + STATE(3268), 2, sym_line_comment, sym_block_comment, - ACTIONS(3524), 17, - anon_sym_SEMI, - anon_sym_LBRACE, + ACTIONS(3522), 15, anon_sym_COMMA, anon_sym_EQ, anon_sym_STAR_EQ, @@ -289985,19 +290194,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [120604] = 6, + [120687] = 4, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(4743), 1, - anon_sym_COMMA, - STATE(3270), 1, - aux_sym_strictly_expression_list_repeat1, - STATE(3267), 2, + STATE(3269), 2, sym_line_comment, sym_block_comment, - ACTIONS(3478), 14, + ACTIONS(3522), 17, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_COMMA, anon_sym_EQ, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -290012,46 +290220,46 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [120637] = 6, + [120717] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(5846), 1, - anon_sym_volatile, - STATE(3268), 2, + ACTIONS(5852), 1, + anon_sym_COMMA, + STATE(3272), 1, + aux_sym_strictly_expression_list_repeat1, + STATE(3270), 2, sym_line_comment, sym_block_comment, - ACTIONS(4900), 7, - anon_sym_fn, - anon_sym_struct, - sym_identifier, - anon_sym_shared, - anon_sym_chan, - anon_sym_thread, - anon_sym_atomic, - ACTIONS(4902), 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, - [120670] = 5, + ACTIONS(3999), 14, + anon_sym_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_AMP_CARET_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_PIPE_EQ, + anon_sym_CARET_EQ, + anon_sym_COLON_EQ, + [120750] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(5848), 1, + ACTIONS(5854), 1, anon_sym_COMMA, - STATE(3269), 3, + STATE(3270), 1, + aux_sym_strictly_expression_list_repeat1, + STATE(3271), 2, sym_line_comment, sym_block_comment, - aux_sym_expression_without_blocks_list_repeat1, - ACTIONS(4830), 14, - anon_sym_LBRACE, + ACTIONS(3484), 14, anon_sym_EQ, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -290065,19 +290273,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_EQ, anon_sym_PIPE_EQ, anon_sym_CARET_EQ, - [120701] = 6, + anon_sym_COLON_EQ, + [120783] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(5851), 1, + ACTIONS(5856), 1, anon_sym_COMMA, - STATE(3272), 1, - aux_sym_strictly_expression_list_repeat1, - STATE(3270), 2, + STATE(3272), 3, sym_line_comment, sym_block_comment, - ACTIONS(3971), 14, + aux_sym_strictly_expression_list_repeat1, + ACTIONS(3522), 14, anon_sym_EQ, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -290092,19 +290300,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [120734] = 6, + [120814] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(4791), 1, + ACTIONS(5859), 1, anon_sym_COMMA, - STATE(3269), 1, - aux_sym_expression_without_blocks_list_repeat1, - STATE(3271), 2, + STATE(3273), 3, sym_line_comment, sym_block_comment, - ACTIONS(5853), 14, + aux_sym_expression_without_blocks_list_repeat1, + ACTIONS(4838), 14, anon_sym_LBRACE, anon_sym_EQ, anon_sym_STAR_EQ, @@ -290119,18 +290326,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_EQ, anon_sym_PIPE_EQ, anon_sym_CARET_EQ, - [120767] = 5, + [120845] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(5855), 1, + ACTIONS(4795), 1, anon_sym_COMMA, - STATE(3272), 3, + STATE(3273), 1, + aux_sym_expression_without_blocks_list_repeat1, + STATE(3274), 2, sym_line_comment, sym_block_comment, - aux_sym_strictly_expression_list_repeat1, - ACTIONS(3524), 14, + ACTIONS(5862), 14, + anon_sym_LBRACE, anon_sym_EQ, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -290144,8 +290353,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, - [120798] = 6, + [120878] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, @@ -290154,10 +290362,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, STATE(3270), 1, aux_sym_strictly_expression_list_repeat1, - STATE(3273), 2, + STATE(3275), 2, sym_line_comment, sym_block_comment, - ACTIONS(3478), 14, + ACTIONS(3484), 14, anon_sym_EQ, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -290172,19 +290380,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [120831] = 6, + [120911] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(5858), 1, + ACTIONS(4757), 1, anon_sym_COMMA, STATE(3270), 1, aux_sym_strictly_expression_list_repeat1, - STATE(3274), 2, + STATE(3276), 2, sym_line_comment, sym_block_comment, - ACTIONS(3478), 14, + ACTIONS(3484), 14, anon_sym_EQ, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -290199,19 +290407,46 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [120864] = 6, + [120944] = 6, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(5864), 1, + anon_sym_volatile, + STATE(3277), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(4900), 7, + anon_sym_fn, + anon_sym_struct, + sym_identifier, + anon_sym_shared, + anon_sym_chan, + anon_sym_thread, + anon_sym_atomic, + ACTIONS(4902), 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, + [120977] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(5860), 1, + ACTIONS(5866), 1, anon_sym_COMMA, STATE(3270), 1, aux_sym_strictly_expression_list_repeat1, - STATE(3275), 2, + STATE(3278), 2, sym_line_comment, sym_block_comment, - ACTIONS(3478), 14, + ACTIONS(3484), 14, anon_sym_EQ, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -290226,49 +290461,75 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [120897] = 14, + [121010] = 6, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(5868), 1, + anon_sym_LBRACE, + STATE(4393), 1, + sym__select_arm_assignment_statement, + STATE(3279), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(5870), 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, + [121042] = 14, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(651), 1, anon_sym_pub, - ACTIONS(5862), 1, + ACTIONS(5872), 1, sym_identifier, - ACTIONS(5864), 1, + ACTIONS(5874), 1, anon_sym_RBRACE, - STATE(3281), 1, + STATE(3282), 1, aux_sym__interface_body_repeat1, - STATE(3385), 1, - sym_generic_type, STATE(3391), 1, sym__struct_field_definition, - STATE(3396), 1, + STATE(3392), 1, sym_embedded_definition, - STATE(4341), 1, + STATE(3401), 1, + sym_generic_type, + STATE(4351), 1, sym_reference_expression, ACTIONS(639), 2, anon_sym___global, anon_sym_mut, - STATE(3276), 2, + STATE(3280), 2, sym_line_comment, sym_block_comment, - STATE(3362), 2, + STATE(3365), 2, sym_type_reference_expression, sym_qualified_type, - STATE(3383), 3, + STATE(3389), 3, sym_struct_field_scope, sym_struct_field_declaration, sym_interface_method_definition, - [120945] = 5, + [121090] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - STATE(3277), 2, + STATE(3281), 2, sym_line_comment, sym_block_comment, - ACTIONS(4946), 7, + ACTIONS(4920), 7, anon_sym_fn, anon_sym_struct, sym_identifier, @@ -290276,7 +290537,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_chan, anon_sym_thread, anon_sym_atomic, - ACTIONS(4948), 8, + ACTIONS(4922), 8, anon_sym_LPAREN, anon_sym_STAR, anon_sym_DOT_DOT_DOT, @@ -290285,12 +290546,45 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, anon_sym_AMP, anon_sym_map_LBRACK, - [120975] = 5, + [121120] = 13, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - STATE(3278), 2, + ACTIONS(5876), 1, + sym_identifier, + ACTIONS(5879), 1, + anon_sym_RBRACE, + ACTIONS(5884), 1, + anon_sym_pub, + STATE(3391), 1, + sym__struct_field_definition, + STATE(3392), 1, + sym_embedded_definition, + STATE(3401), 1, + sym_generic_type, + STATE(4351), 1, + sym_reference_expression, + ACTIONS(5881), 2, + anon_sym___global, + anon_sym_mut, + STATE(3365), 2, + sym_type_reference_expression, + sym_qualified_type, + STATE(3282), 3, + sym_line_comment, + sym_block_comment, + aux_sym__interface_body_repeat1, + STATE(3389), 3, + sym_struct_field_scope, + sym_struct_field_declaration, + sym_interface_method_definition, + [121166] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + STATE(3283), 2, sym_line_comment, sym_block_comment, ACTIONS(4900), 7, @@ -290310,216 +290604,323 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, anon_sym_AMP, anon_sym_map_LBRACK, - [121005] = 6, + [121196] = 14, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(5866), 1, - anon_sym_LBRACE, - STATE(4535), 1, - sym__select_arm_assignment_statement, - STATE(3279), 2, + ACTIONS(651), 1, + anon_sym_pub, + ACTIONS(5872), 1, + sym_identifier, + ACTIONS(5887), 1, + anon_sym_RBRACE, + STATE(3280), 1, + aux_sym__interface_body_repeat1, + STATE(3391), 1, + sym__struct_field_definition, + STATE(3392), 1, + sym_embedded_definition, + STATE(3401), 1, + sym_generic_type, + STATE(4351), 1, + sym_reference_expression, + ACTIONS(639), 2, + anon_sym___global, + anon_sym_mut, + STATE(3284), 2, + sym_line_comment, + sym_block_comment, + STATE(3365), 2, + sym_type_reference_expression, + sym_qualified_type, + STATE(3389), 3, + sym_struct_field_scope, + sym_struct_field_declaration, + sym_interface_method_definition, + [121244] = 14, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(651), 1, + anon_sym_pub, + ACTIONS(5889), 1, + sym_identifier, + ACTIONS(5891), 1, + anon_sym_RBRACE, + STATE(3296), 1, + aux_sym__struct_body_repeat1, + STATE(3391), 1, + sym__struct_field_definition, + STATE(3392), 1, + sym_embedded_definition, + STATE(3401), 1, + sym_generic_type, + STATE(4351), 1, + sym_reference_expression, + ACTIONS(639), 2, + anon_sym___global, + anon_sym_mut, + STATE(3285), 2, + sym_line_comment, + sym_block_comment, + STATE(3365), 2, + sym_type_reference_expression, + sym_qualified_type, + STATE(3390), 2, + sym_struct_field_scope, + sym_struct_field_declaration, + [121291] = 14, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(651), 1, + anon_sym_pub, + ACTIONS(5889), 1, + sym_identifier, + ACTIONS(5893), 1, + anon_sym_RBRACE, + STATE(3313), 1, + aux_sym__struct_body_repeat1, + STATE(3391), 1, + sym__struct_field_definition, + STATE(3392), 1, + sym_embedded_definition, + STATE(3401), 1, + sym_generic_type, + STATE(4351), 1, + sym_reference_expression, + ACTIONS(639), 2, + anon_sym___global, + anon_sym_mut, + STATE(3286), 2, + sym_line_comment, + sym_block_comment, + STATE(3365), 2, + sym_type_reference_expression, + sym_qualified_type, + STATE(3390), 2, + sym_struct_field_scope, + sym_struct_field_declaration, + [121338] = 14, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(651), 1, + anon_sym_pub, + ACTIONS(5889), 1, + sym_identifier, + ACTIONS(5895), 1, + anon_sym_RBRACE, + STATE(3300), 1, + aux_sym__struct_body_repeat1, + STATE(3391), 1, + sym__struct_field_definition, + STATE(3392), 1, + sym_embedded_definition, + STATE(3401), 1, + sym_generic_type, + STATE(4351), 1, + sym_reference_expression, + ACTIONS(639), 2, + anon_sym___global, + anon_sym_mut, + STATE(3287), 2, sym_line_comment, sym_block_comment, - ACTIONS(5868), 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, - [121037] = 14, + STATE(3365), 2, + sym_type_reference_expression, + sym_qualified_type, + STATE(3390), 2, + sym_struct_field_scope, + sym_struct_field_declaration, + [121385] = 14, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(651), 1, anon_sym_pub, - ACTIONS(5862), 1, + ACTIONS(5889), 1, sym_identifier, - ACTIONS(5870), 1, + ACTIONS(5897), 1, anon_sym_RBRACE, - STATE(3276), 1, - aux_sym__interface_body_repeat1, - STATE(3385), 1, - sym_generic_type, + STATE(3317), 1, + aux_sym__struct_body_repeat1, STATE(3391), 1, sym__struct_field_definition, - STATE(3396), 1, + STATE(3392), 1, sym_embedded_definition, - STATE(4341), 1, + STATE(3401), 1, + sym_generic_type, + STATE(4351), 1, sym_reference_expression, ACTIONS(639), 2, anon_sym___global, anon_sym_mut, - STATE(3280), 2, + STATE(3288), 2, sym_line_comment, sym_block_comment, - STATE(3362), 2, + STATE(3365), 2, sym_type_reference_expression, sym_qualified_type, - STATE(3383), 3, + STATE(3390), 2, sym_struct_field_scope, sym_struct_field_declaration, - sym_interface_method_definition, - [121085] = 13, + [121432] = 14, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(5872), 1, + ACTIONS(651), 1, + anon_sym_pub, + ACTIONS(5889), 1, sym_identifier, - ACTIONS(5875), 1, + ACTIONS(5899), 1, anon_sym_RBRACE, - ACTIONS(5880), 1, - anon_sym_pub, - STATE(3385), 1, - sym_generic_type, + STATE(3291), 1, + aux_sym__struct_body_repeat1, STATE(3391), 1, sym__struct_field_definition, - STATE(3396), 1, + STATE(3392), 1, sym_embedded_definition, - STATE(4341), 1, + STATE(3401), 1, + sym_generic_type, + STATE(4351), 1, sym_reference_expression, - ACTIONS(5877), 2, + ACTIONS(639), 2, anon_sym___global, anon_sym_mut, - STATE(3362), 2, - sym_type_reference_expression, - sym_qualified_type, - STATE(3281), 3, + STATE(3289), 2, sym_line_comment, sym_block_comment, - aux_sym__interface_body_repeat1, - STATE(3383), 3, + STATE(3365), 2, + sym_type_reference_expression, + sym_qualified_type, + STATE(3390), 2, sym_struct_field_scope, sym_struct_field_declaration, - sym_interface_method_definition, - [121131] = 14, + [121479] = 14, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(651), 1, anon_sym_pub, - ACTIONS(5883), 1, + ACTIONS(5889), 1, sym_identifier, - ACTIONS(5885), 1, + ACTIONS(5901), 1, anon_sym_RBRACE, - STATE(3309), 1, + STATE(3310), 1, aux_sym__struct_body_repeat1, - STATE(3385), 1, - sym_generic_type, STATE(3391), 1, sym__struct_field_definition, - STATE(3396), 1, + STATE(3392), 1, sym_embedded_definition, - STATE(4341), 1, + STATE(3401), 1, + sym_generic_type, + STATE(4351), 1, sym_reference_expression, ACTIONS(639), 2, anon_sym___global, anon_sym_mut, - STATE(3282), 2, + STATE(3290), 2, sym_line_comment, sym_block_comment, - STATE(3362), 2, + STATE(3365), 2, sym_type_reference_expression, sym_qualified_type, - STATE(3389), 2, + STATE(3390), 2, sym_struct_field_scope, sym_struct_field_declaration, - [121178] = 14, + [121526] = 14, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(651), 1, anon_sym_pub, - ACTIONS(5883), 1, + ACTIONS(5889), 1, sym_identifier, - ACTIONS(5887), 1, + ACTIONS(5903), 1, anon_sym_RBRACE, - STATE(3300), 1, + STATE(3310), 1, aux_sym__struct_body_repeat1, - STATE(3385), 1, - sym_generic_type, STATE(3391), 1, sym__struct_field_definition, - STATE(3396), 1, + STATE(3392), 1, sym_embedded_definition, - STATE(4341), 1, + STATE(3401), 1, + sym_generic_type, + STATE(4351), 1, sym_reference_expression, ACTIONS(639), 2, anon_sym___global, anon_sym_mut, - STATE(3283), 2, + STATE(3291), 2, sym_line_comment, sym_block_comment, - STATE(3362), 2, + STATE(3365), 2, sym_type_reference_expression, sym_qualified_type, - STATE(3389), 2, + STATE(3390), 2, sym_struct_field_scope, sym_struct_field_declaration, - [121225] = 13, + [121573] = 14, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, + ACTIONS(651), 1, + anon_sym_pub, ACTIONS(5889), 1, sym_identifier, - ACTIONS(5892), 1, + ACTIONS(5905), 1, anon_sym_RBRACE, - ACTIONS(5897), 1, - anon_sym_pub, - STATE(3385), 1, - sym_generic_type, + STATE(3297), 1, + aux_sym__struct_body_repeat1, STATE(3391), 1, sym__struct_field_definition, - STATE(3396), 1, + STATE(3392), 1, sym_embedded_definition, - STATE(4341), 1, + STATE(3401), 1, + sym_generic_type, + STATE(4351), 1, sym_reference_expression, - ACTIONS(5894), 2, + ACTIONS(639), 2, anon_sym___global, anon_sym_mut, - STATE(3362), 2, + STATE(3292), 2, + sym_line_comment, + sym_block_comment, + STATE(3365), 2, sym_type_reference_expression, sym_qualified_type, - STATE(3389), 2, + STATE(3390), 2, sym_struct_field_scope, sym_struct_field_declaration, - STATE(3284), 3, - sym_line_comment, - sym_block_comment, - aux_sym__struct_body_repeat1, - [121270] = 8, + [121620] = 8, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(5900), 1, + ACTIONS(5907), 1, sym_identifier, - STATE(3420), 1, + STATE(3432), 1, sym__function_name, - STATE(3807), 1, + STATE(3789), 1, sym_overridable_operator, - STATE(3285), 2, + STATE(3293), 2, sym_line_comment, sym_block_comment, - ACTIONS(5828), 3, + ACTIONS(5834), 3, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(5826), 8, + ACTIONS(5832), 8, anon_sym_PLUS, anon_sym_DASH, anon_sym_STAR, @@ -290528,50 +290929,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - [121305] = 6, - ACTIONS(497), 1, - anon_sym_SLASH_SLASH, - ACTIONS(499), 1, - anon_sym_SLASH_STAR, - ACTIONS(5902), 1, - anon_sym_LBRACK, - STATE(3331), 1, - sym_type_parameters, - STATE(3286), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(1905), 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, - [121336] = 8, + [121655] = 8, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(5900), 1, + ACTIONS(5907), 1, sym_identifier, STATE(3414), 1, sym__function_name, - STATE(3807), 1, + STATE(3789), 1, sym_overridable_operator, - STATE(3287), 2, + STATE(3294), 2, sym_line_comment, sym_block_comment, - ACTIONS(5828), 3, + ACTIONS(5834), 3, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(5826), 8, + ACTIONS(5832), 8, anon_sym_PLUS, anon_sym_DASH, anon_sym_STAR, @@ -290580,173 +290956,124 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - [121371] = 5, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_STAR, - ACTIONS(5906), 1, - anon_sym_COLON_EQ, - STATE(3288), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(5904), 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, - [121400] = 14, + [121690] = 14, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(651), 1, anon_sym_pub, - ACTIONS(5883), 1, + ACTIONS(5889), 1, sym_identifier, - ACTIONS(5908), 1, + ACTIONS(5909), 1, anon_sym_RBRACE, - STATE(3284), 1, + STATE(3322), 1, aux_sym__struct_body_repeat1, - STATE(3385), 1, - sym_generic_type, STATE(3391), 1, sym__struct_field_definition, - STATE(3396), 1, + STATE(3392), 1, sym_embedded_definition, - STATE(4341), 1, + STATE(3401), 1, + sym_generic_type, + STATE(4351), 1, sym_reference_expression, ACTIONS(639), 2, anon_sym___global, anon_sym_mut, - STATE(3289), 2, + STATE(3295), 2, sym_line_comment, sym_block_comment, - STATE(3362), 2, + STATE(3365), 2, sym_type_reference_expression, sym_qualified_type, - STATE(3389), 2, + STATE(3390), 2, sym_struct_field_scope, sym_struct_field_declaration, - [121447] = 14, + [121737] = 14, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(651), 1, anon_sym_pub, - ACTIONS(5883), 1, + ACTIONS(5889), 1, sym_identifier, - ACTIONS(5910), 1, + ACTIONS(5911), 1, anon_sym_RBRACE, - STATE(3284), 1, + STATE(3310), 1, aux_sym__struct_body_repeat1, - STATE(3385), 1, - sym_generic_type, STATE(3391), 1, sym__struct_field_definition, - STATE(3396), 1, + STATE(3392), 1, sym_embedded_definition, - STATE(4341), 1, + STATE(3401), 1, + sym_generic_type, + STATE(4351), 1, sym_reference_expression, ACTIONS(639), 2, anon_sym___global, anon_sym_mut, - STATE(3290), 2, + STATE(3296), 2, sym_line_comment, sym_block_comment, - STATE(3362), 2, + STATE(3365), 2, sym_type_reference_expression, sym_qualified_type, - STATE(3389), 2, + STATE(3390), 2, sym_struct_field_scope, sym_struct_field_declaration, - [121494] = 6, - ACTIONS(497), 1, - anon_sym_SLASH_SLASH, - ACTIONS(499), 1, - anon_sym_SLASH_STAR, - ACTIONS(1851), 1, - anon_sym_DOT, - ACTIONS(2505), 1, - anon_sym_LBRACK, - STATE(3291), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(2507), 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, - [121525] = 14, + [121784] = 14, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(635), 1, - anon_sym_RBRACE, ACTIONS(651), 1, anon_sym_pub, - ACTIONS(5883), 1, + ACTIONS(5889), 1, sym_identifier, - STATE(3313), 1, + ACTIONS(5913), 1, + anon_sym_RBRACE, + STATE(3310), 1, aux_sym__struct_body_repeat1, - STATE(3385), 1, - sym_generic_type, STATE(3391), 1, sym__struct_field_definition, - STATE(3396), 1, + STATE(3392), 1, sym_embedded_definition, - STATE(4341), 1, + STATE(3401), 1, + sym_generic_type, + STATE(4351), 1, sym_reference_expression, ACTIONS(639), 2, anon_sym___global, anon_sym_mut, - STATE(3292), 2, + STATE(3297), 2, sym_line_comment, sym_block_comment, - STATE(3362), 2, + STATE(3365), 2, sym_type_reference_expression, sym_qualified_type, - STATE(3389), 2, + STATE(3390), 2, sym_struct_field_scope, sym_struct_field_declaration, - [121572] = 8, + [121831] = 8, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(5900), 1, + ACTIONS(5907), 1, sym_identifier, - STATE(3418), 1, + STATE(3420), 1, sym__function_name, - STATE(3807), 1, + STATE(3789), 1, sym_overridable_operator, - STATE(3293), 2, + STATE(3298), 2, sym_line_comment, sym_block_comment, - ACTIONS(5828), 3, + ACTIONS(5834), 3, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(5826), 8, + ACTIONS(5832), 8, anon_sym_PLUS, anon_sym_DASH, anon_sym_STAR, @@ -290755,272 +291082,234 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - [121607] = 14, + [121866] = 14, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(651), 1, anon_sym_pub, - ACTIONS(5883), 1, + ACTIONS(5889), 1, sym_identifier, - ACTIONS(5912), 1, + ACTIONS(5915), 1, anon_sym_RBRACE, - STATE(3326), 1, + STATE(3302), 1, aux_sym__struct_body_repeat1, - STATE(3385), 1, - sym_generic_type, STATE(3391), 1, sym__struct_field_definition, - STATE(3396), 1, + STATE(3392), 1, sym_embedded_definition, - STATE(4341), 1, + STATE(3401), 1, + sym_generic_type, + STATE(4351), 1, sym_reference_expression, ACTIONS(639), 2, anon_sym___global, anon_sym_mut, - STATE(3294), 2, + STATE(3299), 2, sym_line_comment, sym_block_comment, - STATE(3362), 2, + STATE(3365), 2, sym_type_reference_expression, sym_qualified_type, - STATE(3389), 2, + STATE(3390), 2, sym_struct_field_scope, sym_struct_field_declaration, - [121654] = 14, + [121913] = 14, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(651), 1, anon_sym_pub, - ACTIONS(5883), 1, + ACTIONS(5889), 1, sym_identifier, - ACTIONS(5914), 1, + ACTIONS(5917), 1, anon_sym_RBRACE, - STATE(3284), 1, + STATE(3310), 1, aux_sym__struct_body_repeat1, - STATE(3385), 1, - sym_generic_type, STATE(3391), 1, sym__struct_field_definition, - STATE(3396), 1, + STATE(3392), 1, sym_embedded_definition, - STATE(4341), 1, + STATE(3401), 1, + sym_generic_type, + STATE(4351), 1, sym_reference_expression, ACTIONS(639), 2, anon_sym___global, anon_sym_mut, - STATE(3295), 2, + STATE(3300), 2, sym_line_comment, sym_block_comment, - STATE(3362), 2, + STATE(3365), 2, sym_type_reference_expression, sym_qualified_type, - STATE(3389), 2, + STATE(3390), 2, sym_struct_field_scope, sym_struct_field_declaration, - [121701] = 14, + [121960] = 8, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(651), 1, - anon_sym_pub, - ACTIONS(5883), 1, + ACTIONS(5907), 1, sym_identifier, - ACTIONS(5916), 1, - anon_sym_RBRACE, - STATE(3301), 1, - aux_sym__struct_body_repeat1, - STATE(3385), 1, - sym_generic_type, - STATE(3391), 1, - sym__struct_field_definition, - STATE(3396), 1, - sym_embedded_definition, - STATE(4341), 1, - sym_reference_expression, - ACTIONS(639), 2, - anon_sym___global, - anon_sym_mut, - STATE(3296), 2, + STATE(3427), 1, + sym__function_name, + STATE(3789), 1, + sym_overridable_operator, + STATE(3301), 2, sym_line_comment, sym_block_comment, - STATE(3362), 2, - sym_type_reference_expression, - sym_qualified_type, - STATE(3389), 2, - sym_struct_field_scope, - sym_struct_field_declaration, - [121748] = 14, + ACTIONS(5834), 3, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(5832), 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, + [121995] = 14, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(651), 1, anon_sym_pub, - ACTIONS(5883), 1, + ACTIONS(5889), 1, sym_identifier, - ACTIONS(5918), 1, + ACTIONS(5919), 1, anon_sym_RBRACE, - STATE(3312), 1, + STATE(3310), 1, aux_sym__struct_body_repeat1, - STATE(3385), 1, - sym_generic_type, STATE(3391), 1, sym__struct_field_definition, - STATE(3396), 1, + STATE(3392), 1, sym_embedded_definition, - STATE(4341), 1, + STATE(3401), 1, + sym_generic_type, + STATE(4351), 1, sym_reference_expression, ACTIONS(639), 2, anon_sym___global, anon_sym_mut, - STATE(3297), 2, + STATE(3302), 2, sym_line_comment, sym_block_comment, - STATE(3362), 2, + STATE(3365), 2, sym_type_reference_expression, sym_qualified_type, - STATE(3389), 2, + STATE(3390), 2, sym_struct_field_scope, sym_struct_field_declaration, - [121795] = 14, + [122042] = 14, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(651), 1, anon_sym_pub, - ACTIONS(5883), 1, + ACTIONS(5889), 1, sym_identifier, - ACTIONS(5920), 1, + ACTIONS(5921), 1, anon_sym_RBRACE, - STATE(3314), 1, + STATE(3310), 1, aux_sym__struct_body_repeat1, - STATE(3385), 1, - sym_generic_type, STATE(3391), 1, sym__struct_field_definition, - STATE(3396), 1, + STATE(3392), 1, sym_embedded_definition, - STATE(4341), 1, + STATE(3401), 1, + sym_generic_type, + STATE(4351), 1, sym_reference_expression, ACTIONS(639), 2, anon_sym___global, anon_sym_mut, - STATE(3298), 2, + STATE(3303), 2, sym_line_comment, sym_block_comment, - STATE(3362), 2, + STATE(3365), 2, sym_type_reference_expression, sym_qualified_type, - STATE(3389), 2, + STATE(3390), 2, sym_struct_field_scope, sym_struct_field_declaration, - [121842] = 5, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_STAR, - ACTIONS(5924), 1, - anon_sym_COLON_EQ, - STATE(3299), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(5922), 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, - [121871] = 14, + [122089] = 14, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(651), 1, anon_sym_pub, - ACTIONS(5883), 1, + ACTIONS(5889), 1, sym_identifier, - ACTIONS(5926), 1, + ACTIONS(5923), 1, anon_sym_RBRACE, - STATE(3284), 1, + STATE(3303), 1, aux_sym__struct_body_repeat1, - STATE(3385), 1, - sym_generic_type, STATE(3391), 1, sym__struct_field_definition, - STATE(3396), 1, + STATE(3392), 1, sym_embedded_definition, - STATE(4341), 1, + STATE(3401), 1, + sym_generic_type, + STATE(4351), 1, sym_reference_expression, ACTIONS(639), 2, anon_sym___global, anon_sym_mut, - STATE(3300), 2, + STATE(3304), 2, sym_line_comment, sym_block_comment, - STATE(3362), 2, + STATE(3365), 2, sym_type_reference_expression, sym_qualified_type, - STATE(3389), 2, + STATE(3390), 2, sym_struct_field_scope, sym_struct_field_declaration, - [121918] = 14, - ACTIONS(3), 1, + [122136] = 6, + ACTIONS(497), 1, anon_sym_SLASH_SLASH, - ACTIONS(5), 1, + ACTIONS(499), 1, anon_sym_SLASH_STAR, - ACTIONS(651), 1, - anon_sym_pub, - ACTIONS(5883), 1, - sym_identifier, - ACTIONS(5928), 1, + ACTIONS(5925), 1, + anon_sym_LBRACK, + STATE(3334), 1, + sym_type_parameters, + STATE(3305), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(1881), 12, + anon_sym_LF, + anon_sym_CR, + anon_sym_CR_LF, + anon_sym_SEMI, anon_sym_RBRACE, - STATE(3284), 1, - aux_sym__struct_body_repeat1, - STATE(3385), 1, - sym_generic_type, - STATE(3391), 1, - sym__struct_field_definition, - STATE(3396), 1, - sym_embedded_definition, - STATE(4341), 1, - sym_reference_expression, - ACTIONS(639), 2, + anon_sym_EQ, anon_sym___global, + anon_sym_pub, anon_sym_mut, - STATE(3301), 2, - sym_line_comment, - sym_block_comment, - STATE(3362), 2, - sym_type_reference_expression, - sym_qualified_type, - STATE(3389), 2, - sym_struct_field_scope, - sym_struct_field_declaration, - [121965] = 5, + anon_sym_LBRACK2, + sym_identifier, + anon_sym_AT_LBRACK, + [122167] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(5932), 1, + ACTIONS(5929), 1, anon_sym_COLON_EQ, - STATE(3302), 2, + STATE(3306), 2, sym_line_comment, sym_block_comment, - ACTIONS(5930), 13, + ACTIONS(5927), 13, anon_sym_EQ, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -291034,25 +291323,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_EQ, anon_sym_PIPE_EQ, anon_sym_CARET_EQ, - [121994] = 8, + [122196] = 8, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(5900), 1, + ACTIONS(5907), 1, sym_identifier, - STATE(3401), 1, + STATE(3402), 1, sym__function_name, - STATE(3807), 1, + STATE(3789), 1, sym_overridable_operator, - STATE(3303), 2, + STATE(3307), 2, sym_line_comment, sym_block_comment, - ACTIONS(5828), 3, + ACTIONS(5834), 3, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(5826), 8, + ACTIONS(5832), 8, anon_sym_PLUS, anon_sym_DASH, anon_sym_STAR, @@ -291061,25 +291350,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - [122029] = 8, + [122231] = 8, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(5900), 1, + ACTIONS(5907), 1, sym_identifier, - STATE(3404), 1, + STATE(3406), 1, sym__function_name, - STATE(3807), 1, + STATE(3789), 1, sym_overridable_operator, - STATE(3304), 2, + STATE(3308), 2, sym_line_comment, sym_block_comment, - ACTIONS(5828), 3, + ACTIONS(5834), 3, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(5826), 8, + ACTIONS(5832), 8, anon_sym_PLUS, anon_sym_DASH, anon_sym_STAR, @@ -291088,58 +291377,114 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - [122064] = 14, + [122266] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(5933), 1, + anon_sym_COLON_EQ, + STATE(3309), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(5931), 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, + [122295] = 13, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, + ACTIONS(5935), 1, + sym_identifier, + ACTIONS(5938), 1, + anon_sym_RBRACE, + ACTIONS(5943), 1, + anon_sym_pub, + STATE(3391), 1, + sym__struct_field_definition, + STATE(3392), 1, + sym_embedded_definition, + STATE(3401), 1, + sym_generic_type, + STATE(4351), 1, + sym_reference_expression, + ACTIONS(5940), 2, + anon_sym___global, + anon_sym_mut, + STATE(3365), 2, + sym_type_reference_expression, + sym_qualified_type, + STATE(3390), 2, + sym_struct_field_scope, + sym_struct_field_declaration, + STATE(3310), 3, + sym_line_comment, + sym_block_comment, + aux_sym__struct_body_repeat1, + [122340] = 14, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(635), 1, + anon_sym_RBRACE, ACTIONS(651), 1, anon_sym_pub, - ACTIONS(5883), 1, + ACTIONS(5889), 1, sym_identifier, - ACTIONS(5934), 1, - anon_sym_RBRACE, - STATE(3321), 1, + STATE(3324), 1, aux_sym__struct_body_repeat1, - STATE(3385), 1, - sym_generic_type, STATE(3391), 1, sym__struct_field_definition, - STATE(3396), 1, + STATE(3392), 1, sym_embedded_definition, - STATE(4341), 1, + STATE(3401), 1, + sym_generic_type, + STATE(4351), 1, sym_reference_expression, ACTIONS(639), 2, anon_sym___global, anon_sym_mut, - STATE(3305), 2, + STATE(3311), 2, sym_line_comment, sym_block_comment, - STATE(3362), 2, + STATE(3365), 2, sym_type_reference_expression, sym_qualified_type, - STATE(3389), 2, + STATE(3390), 2, sym_struct_field_scope, sym_struct_field_declaration, - [122111] = 8, + [122387] = 8, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(5900), 1, + ACTIONS(5907), 1, sym_identifier, - STATE(3424), 1, + STATE(3409), 1, sym__function_name, - STATE(3807), 1, + STATE(3789), 1, sym_overridable_operator, - STATE(3306), 2, + STATE(3312), 2, sym_line_comment, sym_block_comment, - ACTIONS(5828), 3, + ACTIONS(5834), 3, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(5826), 8, + ACTIONS(5832), 8, anon_sym_PLUS, anon_sym_DASH, anon_sym_STAR, @@ -291148,341 +291493,324 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - [122146] = 14, + [122422] = 14, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(651), 1, anon_sym_pub, - ACTIONS(5883), 1, + ACTIONS(5889), 1, sym_identifier, - ACTIONS(5936), 1, + ACTIONS(5946), 1, anon_sym_RBRACE, - STATE(3284), 1, + STATE(3310), 1, aux_sym__struct_body_repeat1, - STATE(3385), 1, - sym_generic_type, STATE(3391), 1, sym__struct_field_definition, - STATE(3396), 1, + STATE(3392), 1, sym_embedded_definition, - STATE(4341), 1, + STATE(3401), 1, + sym_generic_type, + STATE(4351), 1, sym_reference_expression, ACTIONS(639), 2, anon_sym___global, anon_sym_mut, - STATE(3307), 2, + STATE(3313), 2, sym_line_comment, sym_block_comment, - STATE(3362), 2, + STATE(3365), 2, sym_type_reference_expression, sym_qualified_type, - STATE(3389), 2, + STATE(3390), 2, sym_struct_field_scope, sym_struct_field_declaration, - [122193] = 14, + [122469] = 14, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(651), 1, anon_sym_pub, - ACTIONS(5883), 1, + ACTIONS(5889), 1, sym_identifier, - ACTIONS(5938), 1, + ACTIONS(5948), 1, anon_sym_RBRACE, - STATE(3284), 1, + STATE(3318), 1, aux_sym__struct_body_repeat1, - STATE(3385), 1, - sym_generic_type, STATE(3391), 1, sym__struct_field_definition, - STATE(3396), 1, + STATE(3392), 1, sym_embedded_definition, - STATE(4341), 1, + STATE(3401), 1, + sym_generic_type, + STATE(4351), 1, sym_reference_expression, ACTIONS(639), 2, anon_sym___global, anon_sym_mut, - STATE(3308), 2, + STATE(3314), 2, sym_line_comment, sym_block_comment, - STATE(3362), 2, + STATE(3365), 2, sym_type_reference_expression, sym_qualified_type, - STATE(3389), 2, + STATE(3390), 2, sym_struct_field_scope, sym_struct_field_declaration, - [122240] = 14, + [122516] = 8, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(651), 1, - anon_sym_pub, - ACTIONS(5883), 1, + ACTIONS(5907), 1, sym_identifier, - ACTIONS(5940), 1, - anon_sym_RBRACE, - STATE(3284), 1, - aux_sym__struct_body_repeat1, - STATE(3385), 1, - sym_generic_type, - STATE(3391), 1, - sym__struct_field_definition, - STATE(3396), 1, - sym_embedded_definition, - STATE(4341), 1, - sym_reference_expression, - ACTIONS(639), 2, - anon_sym___global, - anon_sym_mut, - STATE(3309), 2, + STATE(3404), 1, + sym__function_name, + STATE(3789), 1, + sym_overridable_operator, + STATE(3315), 2, sym_line_comment, sym_block_comment, - STATE(3362), 2, - sym_type_reference_expression, - sym_qualified_type, - STATE(3389), 2, - sym_struct_field_scope, - sym_struct_field_declaration, - [122287] = 14, + ACTIONS(5834), 3, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(5832), 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, + [122551] = 14, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(651), 1, anon_sym_pub, - ACTIONS(5883), 1, + ACTIONS(5889), 1, sym_identifier, - ACTIONS(5942), 1, + ACTIONS(5950), 1, anon_sym_RBRACE, - STATE(3289), 1, + STATE(3310), 1, aux_sym__struct_body_repeat1, - STATE(3385), 1, - sym_generic_type, STATE(3391), 1, sym__struct_field_definition, - STATE(3396), 1, + STATE(3392), 1, sym_embedded_definition, - STATE(4341), 1, + STATE(3401), 1, + sym_generic_type, + STATE(4351), 1, sym_reference_expression, ACTIONS(639), 2, anon_sym___global, anon_sym_mut, - STATE(3310), 2, + STATE(3316), 2, sym_line_comment, sym_block_comment, - STATE(3362), 2, + STATE(3365), 2, sym_type_reference_expression, sym_qualified_type, - STATE(3389), 2, + STATE(3390), 2, sym_struct_field_scope, sym_struct_field_declaration, - [122334] = 14, + [122598] = 14, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(651), 1, anon_sym_pub, - ACTIONS(5883), 1, + ACTIONS(5889), 1, sym_identifier, - ACTIONS(5944), 1, + ACTIONS(5952), 1, anon_sym_RBRACE, - STATE(3295), 1, + STATE(3310), 1, aux_sym__struct_body_repeat1, - STATE(3385), 1, - sym_generic_type, STATE(3391), 1, sym__struct_field_definition, - STATE(3396), 1, + STATE(3392), 1, sym_embedded_definition, - STATE(4341), 1, + STATE(3401), 1, + sym_generic_type, + STATE(4351), 1, sym_reference_expression, ACTIONS(639), 2, anon_sym___global, anon_sym_mut, - STATE(3311), 2, + STATE(3317), 2, sym_line_comment, sym_block_comment, - STATE(3362), 2, + STATE(3365), 2, sym_type_reference_expression, sym_qualified_type, - STATE(3389), 2, + STATE(3390), 2, sym_struct_field_scope, sym_struct_field_declaration, - [122381] = 14, + [122645] = 14, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(651), 1, anon_sym_pub, - ACTIONS(5883), 1, + ACTIONS(5889), 1, sym_identifier, - ACTIONS(5946), 1, + ACTIONS(5954), 1, anon_sym_RBRACE, - STATE(3284), 1, + STATE(3310), 1, aux_sym__struct_body_repeat1, - STATE(3385), 1, - sym_generic_type, STATE(3391), 1, sym__struct_field_definition, - STATE(3396), 1, + STATE(3392), 1, sym_embedded_definition, - STATE(4341), 1, + STATE(3401), 1, + sym_generic_type, + STATE(4351), 1, sym_reference_expression, ACTIONS(639), 2, anon_sym___global, anon_sym_mut, - STATE(3312), 2, + STATE(3318), 2, sym_line_comment, sym_block_comment, - STATE(3362), 2, + STATE(3365), 2, sym_type_reference_expression, sym_qualified_type, - STATE(3389), 2, + STATE(3390), 2, sym_struct_field_scope, sym_struct_field_declaration, - [122428] = 14, + [122692] = 5, + ACTIONS(497), 1, + anon_sym_SLASH_SLASH, + ACTIONS(499), 1, + anon_sym_SLASH_STAR, + STATE(3319), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(5956), 3, + anon_sym_LF, + anon_sym_CR, + anon_sym_CR_LF, + ACTIONS(5958), 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, + [122721] = 14, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(651), 1, anon_sym_pub, - ACTIONS(5883), 1, + ACTIONS(5889), 1, sym_identifier, - ACTIONS(5948), 1, + ACTIONS(5960), 1, anon_sym_RBRACE, - STATE(3284), 1, + STATE(3290), 1, aux_sym__struct_body_repeat1, - STATE(3385), 1, - sym_generic_type, STATE(3391), 1, sym__struct_field_definition, - STATE(3396), 1, + STATE(3392), 1, sym_embedded_definition, - STATE(4341), 1, + STATE(3401), 1, + sym_generic_type, + STATE(4351), 1, sym_reference_expression, ACTIONS(639), 2, anon_sym___global, anon_sym_mut, - STATE(3313), 2, + STATE(3320), 2, sym_line_comment, sym_block_comment, - STATE(3362), 2, + STATE(3365), 2, sym_type_reference_expression, sym_qualified_type, - STATE(3389), 2, + STATE(3390), 2, sym_struct_field_scope, sym_struct_field_declaration, - [122475] = 14, - ACTIONS(3), 1, + [122768] = 6, + ACTIONS(497), 1, anon_sym_SLASH_SLASH, - ACTIONS(5), 1, + ACTIONS(499), 1, anon_sym_SLASH_STAR, - ACTIONS(651), 1, - anon_sym_pub, - ACTIONS(5883), 1, - sym_identifier, - ACTIONS(5950), 1, + ACTIONS(1889), 1, + anon_sym_DOT, + ACTIONS(2473), 1, + anon_sym_LBRACK, + STATE(3321), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(2475), 12, + anon_sym_LF, + anon_sym_CR, + anon_sym_CR_LF, + anon_sym_SEMI, anon_sym_RBRACE, - STATE(3284), 1, - aux_sym__struct_body_repeat1, - STATE(3385), 1, - sym_generic_type, - STATE(3391), 1, - sym__struct_field_definition, - STATE(3396), 1, - sym_embedded_definition, - STATE(4341), 1, - sym_reference_expression, - ACTIONS(639), 2, + anon_sym_EQ, anon_sym___global, + anon_sym_pub, anon_sym_mut, - STATE(3314), 2, - sym_line_comment, - sym_block_comment, - STATE(3362), 2, - sym_type_reference_expression, - sym_qualified_type, - STATE(3389), 2, - sym_struct_field_scope, - sym_struct_field_declaration, - [122522] = 14, + anon_sym_LBRACK2, + sym_identifier, + anon_sym_AT_LBRACK, + [122799] = 14, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(651), 1, anon_sym_pub, - ACTIONS(5883), 1, + ACTIONS(5889), 1, sym_identifier, - ACTIONS(5952), 1, + ACTIONS(5962), 1, anon_sym_RBRACE, - STATE(3325), 1, + STATE(3310), 1, aux_sym__struct_body_repeat1, - STATE(3385), 1, - sym_generic_type, STATE(3391), 1, sym__struct_field_definition, - STATE(3396), 1, + STATE(3392), 1, sym_embedded_definition, - STATE(4341), 1, + STATE(3401), 1, + sym_generic_type, + STATE(4351), 1, sym_reference_expression, ACTIONS(639), 2, anon_sym___global, anon_sym_mut, - STATE(3315), 2, + STATE(3322), 2, sym_line_comment, sym_block_comment, - STATE(3362), 2, + STATE(3365), 2, sym_type_reference_expression, sym_qualified_type, - STATE(3389), 2, + STATE(3390), 2, sym_struct_field_scope, sym_struct_field_declaration, - [122569] = 8, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_STAR, - ACTIONS(5900), 1, - sym_identifier, - STATE(3417), 1, - sym__function_name, - STATE(3807), 1, - sym_overridable_operator, - STATE(3316), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(5828), 3, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(5826), 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, - [122604] = 5, + [122846] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(5956), 1, + ACTIONS(5966), 1, anon_sym_COLON_EQ, - STATE(3317), 2, + STATE(3323), 2, sym_line_comment, sym_block_comment, - ACTIONS(5954), 13, + ACTIONS(5964), 13, anon_sym_EQ, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -291496,74 +291824,50 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_EQ, anon_sym_PIPE_EQ, anon_sym_CARET_EQ, - [122633] = 14, + [122875] = 14, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(651), 1, anon_sym_pub, - ACTIONS(5883), 1, + ACTIONS(5889), 1, sym_identifier, - ACTIONS(5958), 1, + ACTIONS(5968), 1, anon_sym_RBRACE, - STATE(3308), 1, + STATE(3310), 1, aux_sym__struct_body_repeat1, - STATE(3385), 1, - sym_generic_type, STATE(3391), 1, sym__struct_field_definition, - STATE(3396), 1, + STATE(3392), 1, sym_embedded_definition, - STATE(4341), 1, + STATE(3401), 1, + sym_generic_type, + STATE(4351), 1, sym_reference_expression, ACTIONS(639), 2, anon_sym___global, anon_sym_mut, - STATE(3318), 2, + STATE(3324), 2, sym_line_comment, sym_block_comment, - STATE(3362), 2, + STATE(3365), 2, sym_type_reference_expression, sym_qualified_type, - STATE(3389), 2, + STATE(3390), 2, sym_struct_field_scope, sym_struct_field_declaration, - [122680] = 5, - ACTIONS(497), 1, - anon_sym_SLASH_SLASH, - ACTIONS(499), 1, - anon_sym_SLASH_STAR, - ACTIONS(2505), 1, - anon_sym_LBRACK, - STATE(3319), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(2507), 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, - [122709] = 5, + [122922] = 5, ACTIONS(497), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, anon_sym_SLASH_STAR, - ACTIONS(2830), 1, + ACTIONS(2473), 1, anon_sym_LBRACK, - STATE(3320), 2, + STATE(3325), 2, sym_line_comment, sym_block_comment, - ACTIONS(2832), 13, + ACTIONS(2475), 13, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -291577,262 +291881,169 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, sym_identifier, anon_sym_AT_LBRACK, - [122738] = 14, + [122951] = 14, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(651), 1, anon_sym_pub, - ACTIONS(5883), 1, + ACTIONS(5889), 1, sym_identifier, - ACTIONS(5960), 1, + ACTIONS(5970), 1, anon_sym_RBRACE, - STATE(3284), 1, + STATE(3328), 1, aux_sym__struct_body_repeat1, - STATE(3385), 1, - sym_generic_type, STATE(3391), 1, sym__struct_field_definition, - STATE(3396), 1, + STATE(3392), 1, sym_embedded_definition, - STATE(4341), 1, - sym_reference_expression, - ACTIONS(639), 2, - anon_sym___global, - anon_sym_mut, - STATE(3321), 2, - sym_line_comment, - sym_block_comment, - STATE(3362), 2, - sym_type_reference_expression, - sym_qualified_type, - STATE(3389), 2, - sym_struct_field_scope, - sym_struct_field_declaration, - [122785] = 14, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_STAR, - ACTIONS(651), 1, - anon_sym_pub, - ACTIONS(5883), 1, - sym_identifier, - ACTIONS(5962), 1, - anon_sym_RBRACE, - STATE(3290), 1, - aux_sym__struct_body_repeat1, - STATE(3385), 1, + STATE(3401), 1, sym_generic_type, - STATE(3391), 1, - sym__struct_field_definition, - STATE(3396), 1, - sym_embedded_definition, - STATE(4341), 1, + STATE(4351), 1, sym_reference_expression, ACTIONS(639), 2, anon_sym___global, anon_sym_mut, - STATE(3322), 2, + STATE(3326), 2, sym_line_comment, sym_block_comment, - STATE(3362), 2, + STATE(3365), 2, sym_type_reference_expression, sym_qualified_type, - STATE(3389), 2, + STATE(3390), 2, sym_struct_field_scope, sym_struct_field_declaration, - [122832] = 8, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_STAR, - ACTIONS(5900), 1, - sym_identifier, - STATE(3429), 1, - sym__function_name, - STATE(3807), 1, - sym_overridable_operator, - STATE(3323), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(5828), 3, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(5826), 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, - [122867] = 5, + [122998] = 5, ACTIONS(497), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, anon_sym_SLASH_STAR, - STATE(3324), 2, + ACTIONS(2770), 1, + anon_sym_LBRACK, + STATE(3327), 2, sym_line_comment, sym_block_comment, - ACTIONS(5964), 3, + ACTIONS(2772), 13, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, - ACTIONS(5966), 11, - anon_sym_module, - anon_sym_const, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_EQ, anon_sym___global, - anon_sym_fn, - anon_sym_struct, - anon_sym_union, anon_sym_pub, - anon_sym_enum, - anon_sym_interface, + anon_sym_mut, anon_sym_LBRACK2, + sym_identifier, anon_sym_AT_LBRACK, - [122896] = 14, + [123027] = 14, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(651), 1, anon_sym_pub, - ACTIONS(5883), 1, + ACTIONS(5889), 1, sym_identifier, - ACTIONS(5968), 1, + ACTIONS(5972), 1, anon_sym_RBRACE, - STATE(3284), 1, + STATE(3310), 1, aux_sym__struct_body_repeat1, - STATE(3385), 1, - sym_generic_type, STATE(3391), 1, sym__struct_field_definition, - STATE(3396), 1, + STATE(3392), 1, sym_embedded_definition, - STATE(4341), 1, - sym_reference_expression, - ACTIONS(639), 2, - anon_sym___global, - anon_sym_mut, - STATE(3325), 2, - sym_line_comment, - sym_block_comment, - STATE(3362), 2, - sym_type_reference_expression, - sym_qualified_type, - STATE(3389), 2, - sym_struct_field_scope, - sym_struct_field_declaration, - [122943] = 14, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_STAR, - ACTIONS(651), 1, - anon_sym_pub, - ACTIONS(5883), 1, - sym_identifier, - ACTIONS(5970), 1, - anon_sym_RBRACE, - STATE(3284), 1, - aux_sym__struct_body_repeat1, - STATE(3385), 1, + STATE(3401), 1, sym_generic_type, - STATE(3391), 1, - sym__struct_field_definition, - STATE(3396), 1, - sym_embedded_definition, - STATE(4341), 1, + STATE(4351), 1, sym_reference_expression, ACTIONS(639), 2, anon_sym___global, anon_sym_mut, - STATE(3326), 2, + STATE(3328), 2, sym_line_comment, sym_block_comment, - STATE(3362), 2, + STATE(3365), 2, sym_type_reference_expression, sym_qualified_type, - STATE(3389), 2, + STATE(3390), 2, sym_struct_field_scope, sym_struct_field_declaration, - [122990] = 14, + [123074] = 14, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(651), 1, anon_sym_pub, - ACTIONS(5883), 1, + ACTIONS(5889), 1, sym_identifier, - ACTIONS(5972), 1, + ACTIONS(5974), 1, anon_sym_RBRACE, - STATE(3307), 1, + STATE(3316), 1, aux_sym__struct_body_repeat1, - STATE(3385), 1, - sym_generic_type, STATE(3391), 1, sym__struct_field_definition, - STATE(3396), 1, + STATE(3392), 1, sym_embedded_definition, - STATE(4341), 1, + STATE(3401), 1, + sym_generic_type, + STATE(4351), 1, sym_reference_expression, ACTIONS(639), 2, anon_sym___global, anon_sym_mut, - STATE(3327), 2, + STATE(3329), 2, sym_line_comment, sym_block_comment, - STATE(3362), 2, + STATE(3365), 2, sym_type_reference_expression, sym_qualified_type, - STATE(3389), 2, + STATE(3390), 2, sym_struct_field_scope, sym_struct_field_declaration, - [123037] = 6, + [123121] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - STATE(3324), 1, - sym_attribute, - ACTIONS(5976), 2, - anon_sym_LBRACK2, - anon_sym_AT_LBRACK, - STATE(3328), 3, + ACTIONS(5978), 1, + anon_sym_COLON_EQ, + STATE(3330), 2, sym_line_comment, sym_block_comment, - aux_sym_attributes_repeat1, - ACTIONS(5974), 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, - [123067] = 7, + ACTIONS(5976), 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, + [123150] = 7, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - STATE(3324), 1, + STATE(3319), 1, sym_attribute, - STATE(3328), 1, + STATE(3335), 1, aux_sym_attributes_repeat1, ACTIONS(113), 2, anon_sym_LBRACK2, anon_sym_AT_LBRACK, - STATE(3329), 2, + STATE(3331), 2, sym_line_comment, sym_block_comment, - ACTIONS(5979), 9, + ACTIONS(5980), 9, anon_sym_module, anon_sym_const, anon_sym___global, @@ -291842,15 +292053,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_pub, anon_sym_enum, anon_sym_interface, - [123099] = 4, + [123182] = 4, ACTIONS(497), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, anon_sym_SLASH_STAR, - STATE(3330), 2, + STATE(3332), 2, sym_line_comment, sym_block_comment, - ACTIONS(2828), 13, + ACTIONS(2768), 13, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -291864,15 +292075,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, sym_identifier, anon_sym_AT_LBRACK, - [123125] = 4, + [123208] = 4, ACTIONS(497), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, anon_sym_SLASH_STAR, - STATE(3331), 2, + STATE(3333), 2, sym_line_comment, sym_block_comment, - ACTIONS(2511), 13, + ACTIONS(2728), 13, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -291886,15 +292097,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, sym_identifier, anon_sym_AT_LBRACK, - [123151] = 4, + [123234] = 4, ACTIONS(497), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, anon_sym_SLASH_STAR, - STATE(3332), 2, + STATE(3334), 2, sym_line_comment, sym_block_comment, - ACTIONS(2798), 13, + ACTIONS(2840), 13, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -291908,41 +292119,43 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, sym_identifier, anon_sym_AT_LBRACK, - [123177] = 5, + [123260] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - STATE(3333), 2, + STATE(3319), 1, + sym_attribute, + ACTIONS(5984), 2, + anon_sym_LBRACK2, + anon_sym_AT_LBRACK, + STATE(3335), 3, sym_line_comment, sym_block_comment, - ACTIONS(5983), 3, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(5981), 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, - [123204] = 5, + aux_sym_attributes_repeat1, + ACTIONS(5982), 9, + anon_sym_module, + anon_sym_const, + anon_sym___global, + anon_sym_fn, + anon_sym_struct, + anon_sym_union, + anon_sym_pub, + anon_sym_enum, + anon_sym_interface, + [123290] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - STATE(3334), 2, + STATE(3336), 2, sym_line_comment, sym_block_comment, - ACTIONS(5987), 3, + ACTIONS(5989), 3, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(5985), 9, + ACTIONS(5987), 9, anon_sym_PLUS, anon_sym_DASH, anon_sym_STAR, @@ -291952,22 +292165,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT_EQ, sym_identifier, - [123231] = 7, + [123317] = 7, ACTIONS(497), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, anon_sym_SLASH_STAR, - ACTIONS(5991), 1, + ACTIONS(5993), 1, anon_sym_EQ, - STATE(3382), 1, + STATE(3399), 1, sym_attribute, ACTIONS(4878), 2, anon_sym_LBRACK2, anon_sym_AT_LBRACK, - STATE(3335), 2, + STATE(3337), 2, sym_line_comment, sym_block_comment, - ACTIONS(5989), 8, + ACTIONS(5991), 8, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -291976,15 +292189,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_pub, anon_sym_mut, sym_identifier, - [123262] = 4, + [123348] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + STATE(3338), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(5997), 3, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(5995), 9, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + sym_identifier, + [123375] = 4, ACTIONS(497), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, anon_sym_SLASH_STAR, - STATE(3336), 2, + STATE(3339), 2, sym_line_comment, sym_block_comment, - ACTIONS(2745), 11, + ACTIONS(2680), 11, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -291996,15 +292231,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, sym_identifier, anon_sym_AT_LBRACK, - [123286] = 4, + [123399] = 4, ACTIONS(497), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, anon_sym_SLASH_STAR, - STATE(3337), 2, + STATE(3340), 2, sym_line_comment, sym_block_comment, - ACTIONS(2900), 11, + ACTIONS(1881), 11, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -292016,15 +292251,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, sym_identifier, anon_sym_AT_LBRACK, - [123310] = 4, + [123423] = 4, ACTIONS(497), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, anon_sym_SLASH_STAR, - STATE(3338), 2, + STATE(3341), 2, sym_line_comment, sym_block_comment, - ACTIONS(2169), 11, + ACTIONS(2668), 11, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -292036,15 +292271,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, sym_identifier, anon_sym_AT_LBRACK, - [123334] = 4, + [123447] = 4, ACTIONS(497), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, anon_sym_SLASH_STAR, - STATE(3339), 2, + STATE(3342), 2, sym_line_comment, sym_block_comment, - ACTIONS(2786), 11, + ACTIONS(2906), 11, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -292056,20 +292291,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, sym_identifier, anon_sym_AT_LBRACK, - [123358] = 6, + [123471] = 6, ACTIONS(497), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, anon_sym_SLASH_STAR, - STATE(3390), 1, + STATE(3386), 1, sym_attribute, ACTIONS(4878), 2, anon_sym_LBRACK2, anon_sym_AT_LBRACK, - STATE(3340), 2, + STATE(3343), 2, sym_line_comment, sym_block_comment, - ACTIONS(5993), 8, + ACTIONS(5999), 8, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -292078,15 +292313,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_pub, anon_sym_mut, sym_identifier, - [123386] = 4, + [123499] = 4, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + STATE(3344), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(5982), 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, + [123523] = 4, ACTIONS(497), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, anon_sym_SLASH_STAR, - STATE(3341), 2, + STATE(3345), 2, sym_line_comment, sym_block_comment, - ACTIONS(2687), 11, + ACTIONS(3062), 11, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -292098,35 +292353,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, sym_identifier, anon_sym_AT_LBRACK, - [123410] = 4, + [123547] = 7, ACTIONS(497), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, anon_sym_SLASH_STAR, - STATE(3342), 2, + ACTIONS(1881), 1, + anon_sym_LBRACE, + ACTIONS(5925), 1, + anon_sym_LBRACK, + STATE(3334), 1, + sym_type_parameters, + STATE(3346), 2, sym_line_comment, sym_block_comment, - ACTIONS(2816), 11, + ACTIONS(6001), 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, - [123434] = 4, + [123577] = 4, ACTIONS(497), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, anon_sym_SLASH_STAR, - STATE(3343), 2, + STATE(3347), 2, sym_line_comment, sym_block_comment, - ACTIONS(2810), 11, + ACTIONS(2538), 11, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -292138,15 +292396,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, sym_identifier, anon_sym_AT_LBRACK, - [123458] = 4, + [123601] = 4, ACTIONS(497), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, anon_sym_SLASH_STAR, - STATE(3344), 2, + STATE(3348), 2, sym_line_comment, sym_block_comment, - ACTIONS(2273), 11, + ACTIONS(2684), 11, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -292158,80 +292416,55 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, sym_identifier, anon_sym_AT_LBRACK, - [123482] = 6, + [123625] = 4, ACTIONS(497), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, anon_sym_SLASH_STAR, - STATE(3397), 1, - sym_attribute, - ACTIONS(4878), 2, - anon_sym_LBRACK2, - anon_sym_AT_LBRACK, - STATE(3345), 2, + STATE(3349), 2, sym_line_comment, sym_block_comment, - ACTIONS(5995), 8, + ACTIONS(2688), 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, - [123510] = 7, + anon_sym_AT_LBRACK, + [123649] = 4, ACTIONS(497), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, anon_sym_SLASH_STAR, - ACTIONS(1905), 1, - anon_sym_LBRACE, - ACTIONS(5902), 1, - anon_sym_LBRACK, - STATE(3331), 1, - sym_type_parameters, - STATE(3346), 2, + STATE(3350), 2, sym_line_comment, sym_block_comment, - ACTIONS(5997), 8, + ACTIONS(2692), 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, - sym_identifier, - [123540] = 4, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_STAR, - STATE(3347), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(5974), 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, + sym_identifier, anon_sym_AT_LBRACK, - [123564] = 4, + [123673] = 4, ACTIONS(497), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, anon_sym_SLASH_STAR, - STATE(3348), 2, + STATE(3351), 2, sym_line_comment, sym_block_comment, - ACTIONS(2872), 11, + ACTIONS(2700), 11, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -292243,15 +292476,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, sym_identifier, anon_sym_AT_LBRACK, - [123588] = 4, + [123697] = 4, ACTIONS(497), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, anon_sym_SLASH_STAR, - STATE(3349), 2, + STATE(3352), 2, sym_line_comment, sym_block_comment, - ACTIONS(1905), 11, + ACTIONS(2902), 11, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -292263,15 +292496,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, sym_identifier, anon_sym_AT_LBRACK, - [123612] = 4, + [123721] = 4, ACTIONS(497), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, anon_sym_SLASH_STAR, - STATE(3350), 2, + STATE(3353), 2, sym_line_comment, sym_block_comment, - ACTIONS(2920), 11, + ACTIONS(2710), 11, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -292283,15 +292516,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, sym_identifier, anon_sym_AT_LBRACK, - [123636] = 4, + [123745] = 4, ACTIONS(497), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, anon_sym_SLASH_STAR, - STATE(3351), 2, + STATE(3354), 2, sym_line_comment, sym_block_comment, - ACTIONS(2117), 11, + ACTIONS(2724), 11, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -292303,15 +292536,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, sym_identifier, anon_sym_AT_LBRACK, - [123660] = 4, + [123769] = 4, ACTIONS(497), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, anon_sym_SLASH_STAR, - STATE(3352), 2, + STATE(3355), 2, sym_line_comment, sym_block_comment, - ACTIONS(2916), 11, + ACTIONS(2137), 11, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -292323,35 +292556,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, sym_identifier, anon_sym_AT_LBRACK, - [123684] = 4, + [123793] = 6, ACTIONS(497), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, anon_sym_SLASH_STAR, - STATE(3353), 2, + STATE(3394), 1, + sym_attribute, + ACTIONS(4878), 2, + anon_sym_LBRACK2, + anon_sym_AT_LBRACK, + STATE(3356), 2, sym_line_comment, sym_block_comment, - ACTIONS(2772), 11, + ACTIONS(6003), 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, - [123708] = 4, + [123821] = 4, ACTIONS(497), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, anon_sym_SLASH_STAR, - STATE(3354), 2, + STATE(3357), 2, sym_line_comment, sym_block_comment, - ACTIONS(2749), 11, + ACTIONS(2778), 11, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -292363,15 +292598,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, sym_identifier, anon_sym_AT_LBRACK, - [123732] = 4, + [123845] = 4, ACTIONS(497), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, anon_sym_SLASH_STAR, - STATE(3355), 2, + STATE(3358), 2, sym_line_comment, sym_block_comment, - ACTIONS(2681), 11, + ACTIONS(2744), 11, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -292383,15 +292618,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, sym_identifier, anon_sym_AT_LBRACK, - [123756] = 4, + [123869] = 4, ACTIONS(497), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, anon_sym_SLASH_STAR, - STATE(3356), 2, + STATE(3359), 2, sym_line_comment, sym_block_comment, - ACTIONS(2667), 11, + ACTIONS(2750), 11, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -292403,15 +292638,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, sym_identifier, anon_sym_AT_LBRACK, - [123780] = 4, + [123893] = 4, ACTIONS(497), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, anon_sym_SLASH_STAR, - STATE(3357), 2, + STATE(3360), 2, sym_line_comment, sym_block_comment, - ACTIONS(2655), 11, + ACTIONS(2756), 11, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -292423,15 +292658,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, sym_identifier, anon_sym_AT_LBRACK, - [123804] = 4, + [123917] = 4, ACTIONS(497), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, anon_sym_SLASH_STAR, - STATE(3358), 2, + STATE(3361), 2, sym_line_comment, sym_block_comment, - ACTIONS(2647), 11, + ACTIONS(3058), 11, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -292443,15 +292678,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, sym_identifier, anon_sym_AT_LBRACK, - [123828] = 4, + [123941] = 4, ACTIONS(497), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, anon_sym_SLASH_STAR, - STATE(3359), 2, + STATE(3362), 2, sym_line_comment, sym_block_comment, - ACTIONS(2213), 11, + ACTIONS(2509), 11, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -292463,15 +292698,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, sym_identifier, anon_sym_AT_LBRACK, - [123852] = 4, + [123965] = 4, ACTIONS(497), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, anon_sym_SLASH_STAR, - STATE(3360), 2, + STATE(3363), 2, sym_line_comment, sym_block_comment, - ACTIONS(2183), 11, + ACTIONS(2714), 11, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -292483,21 +292718,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, sym_identifier, anon_sym_AT_LBRACK, - [123876] = 7, + [123989] = 7, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(5999), 1, + ACTIONS(6005), 1, sym_identifier, - ACTIONS(6003), 1, + ACTIONS(6009), 1, anon_sym_LPAREN, - STATE(1479), 1, + STATE(1565), 1, sym_global_var_definition, - STATE(3361), 2, + STATE(3364), 2, sym_line_comment, sym_block_comment, - ACTIONS(6001), 7, + ACTIONS(6007), 7, anon_sym_const, anon_sym_type, anon_sym_fn, @@ -292505,19 +292740,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_union, anon_sym_enum, anon_sym_interface, - [123905] = 6, + [124018] = 6, ACTIONS(497), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, anon_sym_SLASH_STAR, - ACTIONS(5902), 1, + ACTIONS(5925), 1, anon_sym_LBRACK, - STATE(3331), 1, + STATE(3334), 1, sym_type_parameters, - STATE(3362), 2, + STATE(3365), 2, sym_line_comment, sym_block_comment, - ACTIONS(5997), 8, + ACTIONS(6001), 8, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -292526,505 +292761,446 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_pub, anon_sym_mut, sym_identifier, - [123932] = 12, + [124045] = 12, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(6005), 1, + ACTIONS(6011), 1, anon_sym_module, - ACTIONS(6007), 1, + ACTIONS(6013), 1, anon_sym_const, - ACTIONS(6009), 1, + ACTIONS(6015), 1, anon_sym___global, - ACTIONS(6011), 1, + ACTIONS(6017), 1, anon_sym_fn, - ACTIONS(6015), 1, + ACTIONS(6021), 1, anon_sym_pub, - ACTIONS(6017), 1, + ACTIONS(6023), 1, anon_sym_enum, - ACTIONS(6019), 1, + ACTIONS(6025), 1, anon_sym_interface, - STATE(3457), 1, + STATE(3547), 1, sym_visibility_modifiers, - ACTIONS(6013), 2, + ACTIONS(6019), 2, anon_sym_struct, anon_sym_union, - STATE(3363), 2, + STATE(3366), 2, sym_line_comment, sym_block_comment, - [123971] = 10, + [124084] = 10, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(5832), 1, + ACTIONS(5838), 1, anon_sym_LBRACK2, - ACTIONS(6021), 1, + ACTIONS(6027), 1, anon_sym_LPAREN, - STATE(3431), 1, + STATE(3415), 1, sym_capture_list, - STATE(3699), 1, - sym_generic_parameters, - STATE(4107), 1, + STATE(3556), 1, sym_signature, - ACTIONS(4912), 2, + STATE(3754), 1, + sym_generic_parameters, + ACTIONS(4918), 2, anon_sym_LBRACK, anon_sym_LT2, - STATE(2875), 2, + STATE(2850), 2, sym_parameter_list, sym_type_parameter_list, - STATE(3364), 2, + STATE(3367), 2, sym_line_comment, sym_block_comment, - [124005] = 10, - ACTIONS(3), 1, + [124118] = 4, + ACTIONS(497), 1, anon_sym_SLASH_SLASH, - ACTIONS(5), 1, + ACTIONS(499), 1, anon_sym_SLASH_STAR, - ACTIONS(5832), 1, - anon_sym_LBRACK2, - ACTIONS(6021), 1, - anon_sym_LPAREN, - STATE(3407), 1, - sym_capture_list, - STATE(3675), 1, - sym_generic_parameters, - STATE(4057), 1, - sym_signature, - ACTIONS(4912), 2, - anon_sym_LBRACK, - anon_sym_LT2, - STATE(2875), 2, - sym_parameter_list, - sym_type_parameter_list, - STATE(3365), 2, + STATE(3368), 2, sym_line_comment, sym_block_comment, - [124039] = 10, + ACTIONS(1889), 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, + [124140] = 10, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(5832), 1, + ACTIONS(5838), 1, anon_sym_LBRACK2, - ACTIONS(6021), 1, + ACTIONS(6027), 1, anon_sym_LPAREN, - STATE(3423), 1, + STATE(3416), 1, sym_capture_list, - STATE(3559), 1, - sym_signature, - STATE(3620), 1, + STATE(3743), 1, sym_generic_parameters, - ACTIONS(4912), 2, + STATE(4156), 1, + sym_signature, + ACTIONS(4918), 2, anon_sym_LBRACK, anon_sym_LT2, - STATE(2875), 2, + STATE(2850), 2, sym_parameter_list, sym_type_parameter_list, - STATE(3366), 2, + STATE(3369), 2, sym_line_comment, sym_block_comment, - [124073] = 6, + [124174] = 6, ACTIONS(497), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, anon_sym_SLASH_STAR, - ACTIONS(3746), 1, + ACTIONS(3754), 1, anon_sym_COLON, - STATE(3367), 2, + STATE(3370), 2, sym_line_comment, sym_block_comment, - ACTIONS(3744), 3, + ACTIONS(3752), 3, anon_sym_RBRACE, anon_sym_DOT_DOT_DOT, sym_identifier, - ACTIONS(6023), 5, + ACTIONS(6029), 5, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, anon_sym_SEMI, anon_sym_COMMA, - [124099] = 11, + [124200] = 5, + ACTIONS(497), 1, + anon_sym_SLASH_SLASH, + ACTIONS(499), 1, + anon_sym_SLASH_STAR, + ACTIONS(1881), 1, + anon_sym_LBRACE, + STATE(3371), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(6001), 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, + [124224] = 7, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(6007), 1, + ACTIONS(6005), 1, + sym_identifier, + ACTIONS(6031), 1, + anon_sym_LPAREN, + STATE(1484), 1, + sym_global_var_definition, + STATE(3372), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(6007), 6, anon_sym_const, - ACTIONS(6009), 1, - anon_sym___global, - ACTIONS(6011), 1, anon_sym_fn, - ACTIONS(6015), 1, - anon_sym_pub, - ACTIONS(6017), 1, - anon_sym_enum, - ACTIONS(6019), 1, - anon_sym_interface, - STATE(3457), 1, - sym_visibility_modifiers, - ACTIONS(6013), 2, anon_sym_struct, anon_sym_union, - STATE(3368), 2, - sym_line_comment, - sym_block_comment, - [124135] = 10, + anon_sym_enum, + anon_sym_interface, + [124252] = 10, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(5832), 1, + ACTIONS(5838), 1, anon_sym_LBRACK2, - ACTIONS(6021), 1, + ACTIONS(6027), 1, anon_sym_LPAREN, STATE(3430), 1, sym_capture_list, - STATE(3697), 1, + STATE(3630), 1, sym_generic_parameters, - STATE(4072), 1, + STATE(4124), 1, sym_signature, - ACTIONS(4912), 2, + ACTIONS(4918), 2, anon_sym_LBRACK, anon_sym_LT2, - STATE(2875), 2, + STATE(2850), 2, sym_parameter_list, sym_type_parameter_list, - STATE(3369), 2, + STATE(3373), 2, sym_line_comment, sym_block_comment, - [124169] = 10, + [124286] = 11, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(5832), 1, - anon_sym_LBRACK2, + ACTIONS(6013), 1, + anon_sym_const, + ACTIONS(6015), 1, + anon_sym___global, + ACTIONS(6017), 1, + anon_sym_fn, ACTIONS(6021), 1, - anon_sym_LPAREN, - STATE(3427), 1, - sym_capture_list, - STATE(3688), 1, - sym_generic_parameters, - STATE(4229), 1, - sym_signature, - ACTIONS(4912), 2, - anon_sym_LBRACK, - anon_sym_LT2, - STATE(2875), 2, - sym_parameter_list, - sym_type_parameter_list, - STATE(3370), 2, + anon_sym_pub, + ACTIONS(6023), 1, + anon_sym_enum, + ACTIONS(6025), 1, + anon_sym_interface, + STATE(3547), 1, + sym_visibility_modifiers, + ACTIONS(6019), 2, + anon_sym_struct, + anon_sym_union, + STATE(3374), 2, sym_line_comment, sym_block_comment, - [124203] = 4, + [124322] = 7, ACTIONS(497), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, anon_sym_SLASH_STAR, - STATE(3371), 2, + ACTIONS(6035), 1, + anon_sym_EQ, + STATE(3578), 1, + sym_attribute, + ACTIONS(4878), 2, + anon_sym_LBRACK2, + anon_sym_AT_LBRACK, + STATE(3375), 2, sym_line_comment, sym_block_comment, - ACTIONS(1851), 9, + ACTIONS(6033), 5, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, - anon_sym_SEMI, - anon_sym_COMMA, anon_sym_RBRACE, - anon_sym_DOT_DOT_DOT, - anon_sym_COLON, sym_identifier, - [124225] = 10, + [124350] = 10, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(5832), 1, + ACTIONS(5838), 1, anon_sym_LBRACK2, - ACTIONS(6021), 1, + ACTIONS(6027), 1, anon_sym_LPAREN, - STATE(3410), 1, + STATE(3426), 1, sym_capture_list, - STATE(3710), 1, + STATE(3582), 1, sym_generic_parameters, - STATE(4139), 1, + STATE(3928), 1, sym_signature, - ACTIONS(4912), 2, + ACTIONS(4918), 2, anon_sym_LBRACK, anon_sym_LT2, - STATE(2875), 2, + STATE(2850), 2, sym_parameter_list, sym_type_parameter_list, - STATE(3372), 2, - sym_line_comment, - sym_block_comment, - [124259] = 7, - ACTIONS(497), 1, - anon_sym_SLASH_SLASH, - ACTIONS(499), 1, - anon_sym_SLASH_STAR, - ACTIONS(6027), 1, - anon_sym_EQ, - STATE(3575), 1, - sym_attribute, - ACTIONS(4878), 2, - anon_sym_LBRACK2, - anon_sym_AT_LBRACK, - STATE(3373), 2, + STATE(3376), 2, sym_line_comment, sym_block_comment, - ACTIONS(6025), 5, - anon_sym_LF, - anon_sym_CR, - anon_sym_CR_LF, - anon_sym_RBRACE, - sym_identifier, - [124287] = 10, + [124384] = 10, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(5832), 1, + ACTIONS(5838), 1, anon_sym_LBRACK2, - ACTIONS(6021), 1, + ACTIONS(6027), 1, anon_sym_LPAREN, - STATE(3399), 1, + STATE(3423), 1, sym_capture_list, - STATE(3637), 1, + STATE(3633), 1, sym_generic_parameters, - STATE(4247), 1, + STATE(4270), 1, sym_signature, - ACTIONS(4912), 2, + ACTIONS(4918), 2, anon_sym_LBRACK, anon_sym_LT2, - STATE(2875), 2, + STATE(2850), 2, sym_parameter_list, sym_type_parameter_list, - STATE(3374), 2, + STATE(3377), 2, sym_line_comment, sym_block_comment, - [124321] = 10, + [124418] = 10, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(5832), 1, + ACTIONS(5838), 1, anon_sym_LBRACK2, - ACTIONS(6021), 1, + ACTIONS(6027), 1, anon_sym_LPAREN, - STATE(3411), 1, + STATE(3412), 1, sym_capture_list, - STATE(3684), 1, + STATE(3580), 1, sym_generic_parameters, - STATE(4271), 1, + STATE(4111), 1, sym_signature, - ACTIONS(4912), 2, + ACTIONS(4918), 2, anon_sym_LBRACK, anon_sym_LT2, - STATE(2875), 2, + STATE(2850), 2, sym_parameter_list, sym_type_parameter_list, - STATE(3375), 2, + STATE(3378), 2, sym_line_comment, sym_block_comment, - [124355] = 7, + [124452] = 10, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(5999), 1, - sym_identifier, - ACTIONS(6029), 1, + ACTIONS(5838), 1, + anon_sym_LBRACK2, + ACTIONS(6027), 1, anon_sym_LPAREN, - STATE(1514), 1, - sym_global_var_definition, - STATE(3376), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(6001), 6, - anon_sym_const, - anon_sym_fn, - anon_sym_struct, - anon_sym_union, - anon_sym_enum, - anon_sym_interface, - [124383] = 5, - ACTIONS(497), 1, - anon_sym_SLASH_SLASH, - ACTIONS(499), 1, - anon_sym_SLASH_STAR, - ACTIONS(1905), 1, - anon_sym_LBRACE, - STATE(3377), 2, + STATE(3424), 1, + sym_capture_list, + STATE(3605), 1, + sym_generic_parameters, + STATE(4295), 1, + sym_signature, + ACTIONS(4918), 2, + anon_sym_LBRACK, + anon_sym_LT2, + STATE(2850), 2, + sym_parameter_list, + sym_type_parameter_list, + STATE(3379), 2, sym_line_comment, sym_block_comment, - ACTIONS(5997), 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, - [124407] = 10, + [124486] = 10, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(5832), 1, + ACTIONS(5838), 1, anon_sym_LBRACK2, - ACTIONS(6021), 1, + ACTIONS(6027), 1, anon_sym_LPAREN, - STATE(3406), 1, + STATE(3425), 1, sym_capture_list, - STATE(3717), 1, + STATE(3589), 1, sym_generic_parameters, - STATE(4179), 1, + STATE(4169), 1, sym_signature, - ACTIONS(4912), 2, + ACTIONS(4918), 2, anon_sym_LBRACK, anon_sym_LT2, - STATE(2875), 2, + STATE(2850), 2, sym_parameter_list, sym_type_parameter_list, - STATE(3378), 2, + STATE(3380), 2, sym_line_comment, sym_block_comment, - [124441] = 10, + [124520] = 10, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(5832), 1, + ACTIONS(5838), 1, anon_sym_LBRACK2, - ACTIONS(6021), 1, + ACTIONS(6027), 1, anon_sym_LPAREN, - STATE(3425), 1, + STATE(3417), 1, sym_capture_list, - STATE(3581), 1, + STATE(3714), 1, sym_generic_parameters, - STATE(4160), 1, + STATE(4110), 1, sym_signature, - ACTIONS(4912), 2, + ACTIONS(4918), 2, anon_sym_LBRACK, anon_sym_LT2, - STATE(2875), 2, + STATE(2850), 2, sym_parameter_list, sym_type_parameter_list, - STATE(3379), 2, + STATE(3381), 2, sym_line_comment, sym_block_comment, - [124475] = 10, + [124554] = 10, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(5832), 1, + ACTIONS(5838), 1, anon_sym_LBRACK2, - ACTIONS(6021), 1, + ACTIONS(6027), 1, anon_sym_LPAREN, - STATE(3415), 1, + STATE(3418), 1, sym_capture_list, - STATE(3722), 1, + STATE(3685), 1, sym_generic_parameters, - STATE(3925), 1, + STATE(4252), 1, sym_signature, - ACTIONS(4912), 2, + ACTIONS(4918), 2, anon_sym_LBRACK, anon_sym_LT2, - STATE(2875), 2, + STATE(2850), 2, sym_parameter_list, sym_type_parameter_list, - STATE(3380), 2, + STATE(3382), 2, sym_line_comment, sym_block_comment, - [124509] = 10, + [124588] = 10, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(5832), 1, + ACTIONS(5838), 1, anon_sym_LBRACK2, - ACTIONS(6021), 1, + ACTIONS(6027), 1, anon_sym_LPAREN, STATE(3421), 1, sym_capture_list, - STATE(3657), 1, + STATE(3651), 1, sym_generic_parameters, - STATE(4289), 1, + STATE(4141), 1, sym_signature, - ACTIONS(4912), 2, + ACTIONS(4918), 2, anon_sym_LBRACK, anon_sym_LT2, - STATE(2875), 2, + STATE(2850), 2, sym_parameter_list, sym_type_parameter_list, - STATE(3381), 2, - sym_line_comment, - sym_block_comment, - [124543] = 4, - ACTIONS(497), 1, - anon_sym_SLASH_SLASH, - ACTIONS(499), 1, - anon_sym_SLASH_STAR, - STATE(3382), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(6031), 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, - [124564] = 5, - ACTIONS(497), 1, - anon_sym_SLASH_SLASH, - ACTIONS(499), 1, - anon_sym_SLASH_STAR, STATE(3383), 2, sym_line_comment, sym_block_comment, - ACTIONS(6035), 3, - anon_sym_LF, - anon_sym_CR, - anon_sym_CR_LF, - ACTIONS(6033), 5, - anon_sym_RBRACE, - anon_sym___global, - anon_sym_pub, - anon_sym_mut, - sym_identifier, - [124587] = 11, + [124622] = 10, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(5816), 1, - sym_identifier, - ACTIONS(6037), 1, - anon_sym_COMMA, - ACTIONS(6039), 1, - anon_sym_RBRACK, - ACTIONS(6041), 1, - anon_sym_mut, - ACTIONS(6043), 1, - anon_sym_shared, - STATE(3897), 1, - sym_capture, - STATE(4242), 1, - sym_mutability_modifiers, - STATE(4243), 1, - sym_reference_expression, + ACTIONS(5838), 1, + anon_sym_LBRACK2, + ACTIONS(6027), 1, + anon_sym_LPAREN, + STATE(3419), 1, + sym_capture_list, + STATE(3673), 1, + sym_generic_parameters, + STATE(4054), 1, + sym_signature, + ACTIONS(4918), 2, + anon_sym_LBRACK, + anon_sym_LT2, + STATE(2850), 2, + sym_parameter_list, + sym_type_parameter_list, STATE(3384), 2, sym_line_comment, sym_block_comment, - [124622] = 4, + [124656] = 4, ACTIONS(497), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, @@ -293032,7 +293208,7 @@ static const uint16_t ts_small_parse_table[] = { STATE(3385), 2, sym_line_comment, sym_block_comment, - ACTIONS(5997), 8, + ACTIONS(6037), 8, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -293041,7 +293217,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_pub, anon_sym_mut, sym_identifier, - [124643] = 4, + [124677] = 4, ACTIONS(497), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, @@ -293049,7 +293225,7 @@ static const uint16_t ts_small_parse_table[] = { STATE(3386), 2, sym_line_comment, sym_block_comment, - ACTIONS(6045), 8, + ACTIONS(6039), 8, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -293058,43 +293234,44 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_pub, anon_sym_mut, sym_identifier, - [124664] = 6, + [124698] = 5, ACTIONS(497), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, anon_sym_SLASH_STAR, - ACTIONS(6049), 1, - anon_sym_DOT, - STATE(3395), 1, - aux_sym_import_path_repeat1, STATE(3387), 2, sym_line_comment, sym_block_comment, - ACTIONS(6047), 6, + ACTIONS(3752), 3, + anon_sym_RBRACE, + anon_sym_DOT_DOT_DOT, + sym_identifier, + ACTIONS(6029), 5, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, anon_sym_SEMI, - anon_sym_as, - anon_sym_LBRACE, - [124689] = 4, + anon_sym_COMMA, + [124721] = 6, ACTIONS(497), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, anon_sym_SLASH_STAR, + ACTIONS(6043), 1, + anon_sym_DOT, + STATE(3395), 1, + aux_sym_import_path_repeat1, STATE(3388), 2, sym_line_comment, sym_block_comment, - ACTIONS(6051), 8, + ACTIONS(6041), 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, - [124710] = 5, + anon_sym_SEMI, + anon_sym_as, + anon_sym_LBRACE, + [124746] = 5, ACTIONS(497), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, @@ -293102,17 +293279,17 @@ static const uint16_t ts_small_parse_table[] = { STATE(3389), 2, sym_line_comment, sym_block_comment, - ACTIONS(6055), 3, + ACTIONS(6047), 3, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, - ACTIONS(6053), 5, + ACTIONS(6045), 5, anon_sym_RBRACE, anon_sym___global, anon_sym_pub, anon_sym_mut, sym_identifier, - [124733] = 4, + [124769] = 5, ACTIONS(497), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, @@ -293120,16 +293297,17 @@ static const uint16_t ts_small_parse_table[] = { STATE(3390), 2, sym_line_comment, sym_block_comment, - ACTIONS(6057), 8, + ACTIONS(6051), 3, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, + ACTIONS(6049), 5, anon_sym_RBRACE, anon_sym___global, anon_sym_pub, anon_sym_mut, sym_identifier, - [124754] = 4, + [124792] = 4, ACTIONS(497), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, @@ -293137,7 +293315,7 @@ static const uint16_t ts_small_parse_table[] = { STATE(3391), 2, sym_line_comment, sym_block_comment, - ACTIONS(6059), 8, + ACTIONS(6053), 8, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -293146,47 +293324,45 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_pub, anon_sym_mut, sym_identifier, - [124775] = 6, + [124813] = 4, ACTIONS(497), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, anon_sym_SLASH_STAR, - ACTIONS(6049), 1, - anon_sym_DOT, - STATE(3387), 1, - aux_sym_import_path_repeat1, STATE(3392), 2, sym_line_comment, sym_block_comment, - ACTIONS(6061), 6, + ACTIONS(6055), 8, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, - anon_sym_SEMI, - anon_sym_as, - anon_sym_LBRACE, - [124800] = 8, + anon_sym_RBRACE, + anon_sym___global, + anon_sym_pub, + anon_sym_mut, + sym_identifier, + [124834] = 8, ACTIONS(497), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, anon_sym_SLASH_STAR, - ACTIONS(6065), 1, + ACTIONS(6059), 1, anon_sym_as, - ACTIONS(6067), 1, + ACTIONS(6061), 1, anon_sym_LBRACE, - STATE(3470), 1, + STATE(3543), 1, sym_import_alias, - STATE(3671), 1, + STATE(3697), 1, sym_selective_import_list, STATE(3393), 2, sym_line_comment, sym_block_comment, - ACTIONS(6063), 4, + ACTIONS(6057), 4, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, anon_sym_SEMI, - [124829] = 4, + [124863] = 4, ACTIONS(497), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, @@ -293194,7 +293370,7 @@ static const uint16_t ts_small_parse_table[] = { STATE(3394), 2, sym_line_comment, sym_block_comment, - ACTIONS(6069), 8, + ACTIONS(6063), 8, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -293203,25 +293379,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_pub, anon_sym_mut, sym_identifier, - [124850] = 5, + [124884] = 5, ACTIONS(497), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, anon_sym_SLASH_STAR, - ACTIONS(6073), 1, + ACTIONS(6067), 1, anon_sym_DOT, STATE(3395), 3, sym_line_comment, sym_block_comment, aux_sym_import_path_repeat1, - ACTIONS(6071), 6, + ACTIONS(6065), 6, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, anon_sym_SEMI, anon_sym_as, anon_sym_LBRACE, - [124873] = 4, + [124907] = 4, ACTIONS(497), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, @@ -293229,7 +293405,7 @@ static const uint16_t ts_small_parse_table[] = { STATE(3396), 2, sym_line_comment, sym_block_comment, - ACTIONS(6076), 8, + ACTIONS(6070), 8, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -293238,3081 +293414,3092 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_pub, anon_sym_mut, sym_identifier, - [124894] = 4, - ACTIONS(497), 1, + [124928] = 11, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, - ACTIONS(499), 1, + ACTIONS(5), 1, anon_sym_SLASH_STAR, + ACTIONS(5822), 1, + sym_identifier, + ACTIONS(6072), 1, + anon_sym_COMMA, + ACTIONS(6074), 1, + anon_sym_RBRACK, + ACTIONS(6076), 1, + anon_sym_mut, + ACTIONS(6078), 1, + anon_sym_shared, + STATE(3776), 1, + sym_capture, + STATE(4241), 1, + sym_mutability_modifiers, + STATE(4242), 1, + sym_reference_expression, STATE(3397), 2, sym_line_comment, sym_block_comment, - ACTIONS(6078), 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, - [124915] = 5, + [124963] = 6, ACTIONS(497), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, anon_sym_SLASH_STAR, + ACTIONS(6043), 1, + anon_sym_DOT, + STATE(3388), 1, + aux_sym_import_path_repeat1, STATE(3398), 2, sym_line_comment, sym_block_comment, - ACTIONS(3744), 3, - anon_sym_RBRACE, - anon_sym_DOT_DOT_DOT, - sym_identifier, - ACTIONS(6023), 5, + ACTIONS(6080), 6, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, anon_sym_SEMI, - anon_sym_COMMA, - [124938] = 8, - ACTIONS(3), 1, + anon_sym_as, + anon_sym_LBRACE, + [124988] = 4, + ACTIONS(497), 1, anon_sym_SLASH_SLASH, - ACTIONS(5), 1, + ACTIONS(499), 1, anon_sym_SLASH_STAR, - ACTIONS(6021), 1, - anon_sym_LPAREN, - STATE(3645), 1, - sym_generic_parameters, - STATE(4154), 1, - sym_signature, - ACTIONS(4912), 2, - anon_sym_LBRACK, - anon_sym_LT2, - STATE(2875), 2, - sym_parameter_list, - sym_type_parameter_list, STATE(3399), 2, sym_line_comment, sym_block_comment, - [124966] = 9, - ACTIONS(3), 1, + ACTIONS(6082), 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, + [125009] = 4, + ACTIONS(497), 1, anon_sym_SLASH_SLASH, - ACTIONS(5), 1, + ACTIONS(499), 1, anon_sym_SLASH_STAR, - ACTIONS(647), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(6080), 1, - sym_identifier, - ACTIONS(6082), 1, - anon_sym_RBRACE, - STATE(3367), 1, - sym_reference_expression, - STATE(3428), 1, - aux_sym_element_list_repeat1, - STATE(3398), 2, - sym_keyed_element, - sym_spread_expression, STATE(3400), 2, sym_line_comment, sym_block_comment, - [124996] = 8, - ACTIONS(3), 1, + ACTIONS(6084), 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, + [125030] = 4, + ACTIONS(497), 1, anon_sym_SLASH_SLASH, - ACTIONS(5), 1, + ACTIONS(499), 1, anon_sym_SLASH_STAR, - ACTIONS(6084), 1, - anon_sym_LPAREN, - STATE(1416), 1, - sym_signature, - STATE(3653), 1, - sym_generic_parameters, - ACTIONS(4912), 2, - anon_sym_LBRACK, - anon_sym_LT2, - STATE(1098), 2, - sym_parameter_list, - sym_type_parameter_list, STATE(3401), 2, sym_line_comment, sym_block_comment, - [125024] = 8, + ACTIONS(6001), 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, + [125051] = 8, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(6084), 1, + ACTIONS(6086), 1, anon_sym_LPAREN, - STATE(1475), 1, + STATE(1438), 1, sym_signature, - STATE(3619), 1, + STATE(3710), 1, sym_generic_parameters, - ACTIONS(4912), 2, + ACTIONS(4918), 2, anon_sym_LBRACK, anon_sym_LT2, - STATE(1098), 2, + STATE(1099), 2, sym_parameter_list, sym_type_parameter_list, STATE(3402), 2, sym_line_comment, sym_block_comment, - [125052] = 8, + [125079] = 8, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(6084), 1, + ACTIONS(6086), 1, anon_sym_LPAREN, - STATE(1461), 1, + STATE(1426), 1, sym_signature, - STATE(3629), 1, + STATE(3581), 1, sym_generic_parameters, - ACTIONS(4912), 2, + ACTIONS(4918), 2, anon_sym_LBRACK, anon_sym_LT2, - STATE(1098), 2, + STATE(1099), 2, sym_parameter_list, sym_type_parameter_list, STATE(3403), 2, sym_line_comment, sym_block_comment, - [125080] = 8, + [125107] = 8, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(6084), 1, + ACTIONS(6086), 1, anon_sym_LPAREN, - STATE(1463), 1, + STATE(1433), 1, sym_signature, - STATE(3625), 1, + STATE(3737), 1, sym_generic_parameters, - ACTIONS(4912), 2, + ACTIONS(4918), 2, anon_sym_LBRACK, anon_sym_LT2, - STATE(1098), 2, + STATE(1099), 2, sym_parameter_list, sym_type_parameter_list, STATE(3404), 2, sym_line_comment, sym_block_comment, - [125108] = 8, - ACTIONS(3), 1, + [125135] = 4, + ACTIONS(497), 1, anon_sym_SLASH_SLASH, - ACTIONS(5), 1, + ACTIONS(499), 1, anon_sym_SLASH_STAR, - ACTIONS(6084), 1, - anon_sym_LPAREN, - STATE(1465), 1, - sym_signature, - STATE(3610), 1, - sym_generic_parameters, - ACTIONS(4912), 2, - anon_sym_LBRACK, - anon_sym_LT2, - STATE(1098), 2, - sym_parameter_list, - sym_type_parameter_list, STATE(3405), 2, sym_line_comment, sym_block_comment, - [125136] = 8, + ACTIONS(6065), 7, + anon_sym_LF, + anon_sym_CR, + anon_sym_CR_LF, + anon_sym_SEMI, + anon_sym_DOT, + anon_sym_as, + anon_sym_LBRACE, + [125155] = 8, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(6021), 1, + ACTIONS(6086), 1, anon_sym_LPAREN, - STATE(3720), 1, - sym_generic_parameters, - STATE(4283), 1, + STATE(1435), 1, sym_signature, - ACTIONS(4912), 2, + STATE(3712), 1, + sym_generic_parameters, + ACTIONS(4918), 2, anon_sym_LBRACK, anon_sym_LT2, - STATE(2875), 2, + STATE(1099), 2, sym_parameter_list, sym_type_parameter_list, STATE(3406), 2, sym_line_comment, sym_block_comment, - [125164] = 8, + [125183] = 8, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(6021), 1, + ACTIONS(6086), 1, anon_sym_LPAREN, - STATE(3681), 1, - sym_generic_parameters, - STATE(4118), 1, + STATE(1422), 1, sym_signature, - ACTIONS(4912), 2, + STATE(3724), 1, + sym_generic_parameters, + ACTIONS(4918), 2, anon_sym_LBRACK, anon_sym_LT2, - STATE(2875), 2, + STATE(1099), 2, sym_parameter_list, sym_type_parameter_list, STATE(3407), 2, sym_line_comment, sym_block_comment, - [125192] = 9, + [125211] = 10, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(6086), 1, - anon_sym_const, + ACTIONS(5822), 1, + sym_identifier, + ACTIONS(6076), 1, + anon_sym_mut, + ACTIONS(6078), 1, + anon_sym_shared, ACTIONS(6088), 1, - anon_sym_type, - ACTIONS(6090), 1, - anon_sym_fn, - ACTIONS(6094), 1, - anon_sym_enum, - ACTIONS(6096), 1, - anon_sym_interface, - ACTIONS(6092), 2, - anon_sym_struct, - anon_sym_union, + anon_sym_RBRACK, + STATE(4089), 1, + sym_capture, + STATE(4241), 1, + sym_mutability_modifiers, + STATE(4242), 1, + sym_reference_expression, STATE(3408), 2, sym_line_comment, sym_block_comment, - [125222] = 4, - ACTIONS(497), 1, + [125243] = 8, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, - ACTIONS(499), 1, + ACTIONS(5), 1, anon_sym_SLASH_STAR, + ACTIONS(6086), 1, + anon_sym_LPAREN, + STATE(1424), 1, + sym_signature, + STATE(3585), 1, + sym_generic_parameters, + ACTIONS(4918), 2, + anon_sym_LBRACK, + anon_sym_LT2, + STATE(1099), 2, + sym_parameter_list, + sym_type_parameter_list, STATE(3409), 2, sym_line_comment, sym_block_comment, - ACTIONS(6071), 7, - anon_sym_LF, - anon_sym_CR, - anon_sym_CR_LF, - anon_sym_SEMI, - anon_sym_DOT, - anon_sym_as, - anon_sym_LBRACE, - [125242] = 8, + [125271] = 8, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(6021), 1, + ACTIONS(6086), 1, anon_sym_LPAREN, - STATE(3714), 1, - sym_generic_parameters, - STATE(4037), 1, + STATE(1421), 1, sym_signature, - ACTIONS(4912), 2, + STATE(3615), 1, + sym_generic_parameters, + ACTIONS(4918), 2, anon_sym_LBRACK, anon_sym_LT2, - STATE(2875), 2, + STATE(1099), 2, sym_parameter_list, sym_type_parameter_list, STATE(3410), 2, sym_line_comment, sym_block_comment, - [125270] = 8, + [125299] = 8, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(6021), 1, + ACTIONS(6090), 1, + sym_identifier, + ACTIONS(6093), 1, + anon_sym_RBRACE, + ACTIONS(6095), 1, + anon_sym_DOT_DOT_DOT, + STATE(3370), 1, + sym_reference_expression, + STATE(3387), 2, + sym_keyed_element, + sym_spread_expression, + STATE(3411), 3, + sym_line_comment, + sym_block_comment, + aux_sym_element_list_repeat1, + [125327] = 8, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(6027), 1, anon_sym_LPAREN, - STATE(3686), 1, + STATE(3719), 1, sym_generic_parameters, - STATE(4276), 1, + STATE(4223), 1, sym_signature, - ACTIONS(4912), 2, + ACTIONS(4918), 2, anon_sym_LBRACK, anon_sym_LT2, - STATE(2875), 2, + STATE(2850), 2, sym_parameter_list, sym_type_parameter_list, - STATE(3411), 2, - sym_line_comment, - sym_block_comment, - [125298] = 6, - ACTIONS(497), 1, - anon_sym_SLASH_SLASH, - ACTIONS(499), 1, - anon_sym_SLASH_STAR, - ACTIONS(6098), 1, - sym_identifier, - STATE(3554), 1, - sym_reference_expression, STATE(3412), 2, sym_line_comment, sym_block_comment, - ACTIONS(6100), 5, - anon_sym_LF, - anon_sym_CR, - anon_sym_CR_LF, - anon_sym_COMMA, - anon_sym_RBRACE, - [125322] = 10, + [125355] = 9, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(5816), 1, + ACTIONS(647), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(6098), 1, sym_identifier, - ACTIONS(6041), 1, - anon_sym_mut, - ACTIONS(6043), 1, - anon_sym_shared, - ACTIONS(6102), 1, - anon_sym_RBRACK, - STATE(4242), 1, - sym_mutability_modifiers, - STATE(4243), 1, + ACTIONS(6100), 1, + anon_sym_RBRACE, + STATE(3370), 1, sym_reference_expression, - STATE(4256), 1, - sym_capture, + STATE(3411), 1, + aux_sym_element_list_repeat1, + STATE(3387), 2, + sym_keyed_element, + sym_spread_expression, STATE(3413), 2, sym_line_comment, sym_block_comment, - [125354] = 8, + [125385] = 8, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(6084), 1, + ACTIONS(6086), 1, anon_sym_LPAREN, - STATE(1473), 1, + STATE(1420), 1, sym_signature, - STATE(3683), 1, + STATE(3646), 1, sym_generic_parameters, - ACTIONS(4912), 2, + ACTIONS(4918), 2, anon_sym_LBRACK, anon_sym_LT2, - STATE(1098), 2, + STATE(1099), 2, sym_parameter_list, sym_type_parameter_list, STATE(3414), 2, sym_line_comment, sym_block_comment, - [125382] = 8, + [125413] = 8, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(6021), 1, + ACTIONS(6027), 1, anon_sym_LPAREN, - STATE(3724), 1, + STATE(3752), 1, sym_generic_parameters, - STATE(4093), 1, + STATE(4227), 1, sym_signature, - ACTIONS(4912), 2, + ACTIONS(4918), 2, anon_sym_LBRACK, anon_sym_LT2, - STATE(2875), 2, + STATE(2850), 2, sym_parameter_list, sym_type_parameter_list, STATE(3415), 2, sym_line_comment, sym_block_comment, - [125410] = 4, - ACTIONS(497), 1, + [125441] = 8, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, - ACTIONS(499), 1, + ACTIONS(5), 1, anon_sym_SLASH_STAR, + ACTIONS(6027), 1, + anon_sym_LPAREN, + STATE(3734), 1, + sym_generic_parameters, + STATE(4067), 1, + sym_signature, + ACTIONS(4918), 2, + anon_sym_LBRACK, + anon_sym_LT2, + STATE(2850), 2, + sym_parameter_list, + sym_type_parameter_list, STATE(3416), 2, sym_line_comment, sym_block_comment, - ACTIONS(6104), 7, - anon_sym_LF, - anon_sym_CR, - anon_sym_CR_LF, - anon_sym_SEMI, - anon_sym_DOT, - anon_sym_as, - anon_sym_LBRACE, - [125430] = 8, + [125469] = 8, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(6084), 1, + ACTIONS(6027), 1, anon_sym_LPAREN, - STATE(1441), 1, - sym_signature, - STATE(3668), 1, + STATE(3698), 1, sym_generic_parameters, - ACTIONS(4912), 2, + STATE(4220), 1, + sym_signature, + ACTIONS(4918), 2, anon_sym_LBRACK, anon_sym_LT2, - STATE(1098), 2, + STATE(2850), 2, sym_parameter_list, sym_type_parameter_list, STATE(3417), 2, sym_line_comment, sym_block_comment, - [125458] = 8, + [125497] = 8, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(6084), 1, + ACTIONS(6027), 1, anon_sym_LPAREN, - STATE(1434), 1, - sym_signature, - STATE(3660), 1, + STATE(3679), 1, sym_generic_parameters, - ACTIONS(4912), 2, + STATE(4102), 1, + sym_signature, + ACTIONS(4918), 2, anon_sym_LBRACK, anon_sym_LT2, - STATE(1098), 2, + STATE(2850), 2, sym_parameter_list, sym_type_parameter_list, STATE(3418), 2, sym_line_comment, sym_block_comment, - [125486] = 4, + [125525] = 8, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, + ACTIONS(6027), 1, + anon_sym_LPAREN, + STATE(3670), 1, + sym_generic_parameters, + STATE(4080), 1, + sym_signature, + ACTIONS(4918), 2, + anon_sym_LBRACK, + anon_sym_LT2, + STATE(2850), 2, + sym_parameter_list, + sym_type_parameter_list, STATE(3419), 2, sym_line_comment, sym_block_comment, - ACTIONS(6106), 7, - anon_sym_const, - anon_sym_type, - anon_sym_fn, - anon_sym_struct, - anon_sym_union, - anon_sym_enum, - anon_sym_interface, - [125506] = 8, + [125553] = 8, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(6084), 1, + ACTIONS(6086), 1, anon_sym_LPAREN, - STATE(1443), 1, + STATE(1442), 1, sym_signature, STATE(3676), 1, sym_generic_parameters, - ACTIONS(4912), 2, + ACTIONS(4918), 2, anon_sym_LBRACK, anon_sym_LT2, - STATE(1098), 2, + STATE(1099), 2, sym_parameter_list, sym_type_parameter_list, STATE(3420), 2, sym_line_comment, sym_block_comment, - [125534] = 8, + [125581] = 8, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(6021), 1, + ACTIONS(6027), 1, anon_sym_LPAREN, - STATE(3661), 1, + STATE(3641), 1, sym_generic_parameters, - STATE(4077), 1, + STATE(4208), 1, sym_signature, - ACTIONS(4912), 2, + ACTIONS(4918), 2, anon_sym_LBRACK, anon_sym_LT2, - STATE(2875), 2, + STATE(2850), 2, sym_parameter_list, sym_type_parameter_list, STATE(3421), 2, sym_line_comment, sym_block_comment, - [125562] = 8, + [125609] = 10, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(6084), 1, - anon_sym_LPAREN, - STATE(1446), 1, - sym_signature, - STATE(3608), 1, - sym_generic_parameters, - ACTIONS(4912), 2, - anon_sym_LBRACK, - anon_sym_LT2, - STATE(1098), 2, - sym_parameter_list, - sym_type_parameter_list, + ACTIONS(5822), 1, + sym_identifier, + ACTIONS(6076), 1, + anon_sym_mut, + ACTIONS(6078), 1, + anon_sym_shared, + ACTIONS(6102), 1, + anon_sym_RBRACK, + STATE(4089), 1, + sym_capture, + STATE(4241), 1, + sym_mutability_modifiers, + STATE(4242), 1, + sym_reference_expression, STATE(3422), 2, sym_line_comment, sym_block_comment, - [125590] = 8, + [125641] = 8, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(6021), 1, + ACTIONS(6027), 1, anon_sym_LPAREN, - STATE(3627), 1, + STATE(3618), 1, sym_generic_parameters, - STATE(4085), 1, + STATE(4305), 1, sym_signature, - ACTIONS(4912), 2, + ACTIONS(4918), 2, anon_sym_LBRACK, anon_sym_LT2, - STATE(2875), 2, + STATE(2850), 2, sym_parameter_list, sym_type_parameter_list, STATE(3423), 2, sym_line_comment, sym_block_comment, - [125618] = 8, + [125669] = 8, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(6084), 1, + ACTIONS(6027), 1, anon_sym_LPAREN, - STATE(1450), 1, - sym_signature, - STATE(3652), 1, + STATE(3598), 1, sym_generic_parameters, - ACTIONS(4912), 2, + STATE(4262), 1, + sym_signature, + ACTIONS(4918), 2, anon_sym_LBRACK, anon_sym_LT2, - STATE(1098), 2, + STATE(2850), 2, sym_parameter_list, sym_type_parameter_list, STATE(3424), 2, sym_line_comment, sym_block_comment, - [125646] = 8, + [125697] = 8, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(6021), 1, + ACTIONS(6027), 1, anon_sym_LPAREN, - STATE(3583), 1, + STATE(3584), 1, sym_generic_parameters, - STATE(4275), 1, + STATE(4125), 1, sym_signature, - ACTIONS(4912), 2, + ACTIONS(4918), 2, anon_sym_LBRACK, anon_sym_LT2, - STATE(2875), 2, + STATE(2850), 2, sym_parameter_list, sym_type_parameter_list, STATE(3425), 2, sym_line_comment, sym_block_comment, - [125674] = 10, + [125725] = 8, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(5816), 1, - sym_identifier, - ACTIONS(6041), 1, - anon_sym_mut, - ACTIONS(6043), 1, - anon_sym_shared, - ACTIONS(6108), 1, - anon_sym_RBRACK, - STATE(4242), 1, - sym_mutability_modifiers, - STATE(4243), 1, - sym_reference_expression, - STATE(4256), 1, - sym_capture, + ACTIONS(6027), 1, + anon_sym_LPAREN, + STATE(3624), 1, + sym_generic_parameters, + STATE(4046), 1, + sym_signature, + ACTIONS(4918), 2, + anon_sym_LBRACK, + anon_sym_LT2, + STATE(2850), 2, + sym_parameter_list, + sym_type_parameter_list, STATE(3426), 2, sym_line_comment, sym_block_comment, - [125706] = 8, + [125753] = 8, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(6021), 1, + ACTIONS(6086), 1, anon_sym_LPAREN, - STATE(3690), 1, - sym_generic_parameters, - STATE(4195), 1, + STATE(1428), 1, sym_signature, - ACTIONS(4912), 2, + STATE(3600), 1, + sym_generic_parameters, + ACTIONS(4918), 2, anon_sym_LBRACK, anon_sym_LT2, - STATE(2875), 2, + STATE(1099), 2, sym_parameter_list, sym_type_parameter_list, STATE(3427), 2, sym_line_comment, sym_block_comment, - [125734] = 8, - ACTIONS(3), 1, + [125781] = 6, + ACTIONS(497), 1, anon_sym_SLASH_SLASH, - ACTIONS(5), 1, + ACTIONS(499), 1, anon_sym_SLASH_STAR, - ACTIONS(6110), 1, + ACTIONS(6104), 1, sym_identifier, - ACTIONS(6113), 1, - anon_sym_RBRACE, - ACTIONS(6115), 1, - anon_sym_DOT_DOT_DOT, - STATE(3367), 1, + STATE(3567), 1, sym_reference_expression, - STATE(3398), 2, - sym_keyed_element, - sym_spread_expression, - STATE(3428), 3, + STATE(3428), 2, sym_line_comment, sym_block_comment, - aux_sym_element_list_repeat1, - [125762] = 8, + ACTIONS(6106), 5, + anon_sym_LF, + anon_sym_CR, + anon_sym_CR_LF, + anon_sym_COMMA, + anon_sym_RBRACE, + [125805] = 4, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(6084), 1, - anon_sym_LPAREN, - STATE(1458), 1, - sym_signature, - STATE(3677), 1, - sym_generic_parameters, - ACTIONS(4912), 2, - anon_sym_LBRACK, - anon_sym_LT2, - STATE(1098), 2, - sym_parameter_list, - sym_type_parameter_list, STATE(3429), 2, sym_line_comment, sym_block_comment, - [125790] = 8, + ACTIONS(6108), 7, + anon_sym_const, + anon_sym_type, + anon_sym_fn, + anon_sym_struct, + anon_sym_union, + anon_sym_enum, + anon_sym_interface, + [125825] = 8, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(6021), 1, + ACTIONS(6027), 1, anon_sym_LPAREN, - STATE(3703), 1, + STATE(3740), 1, sym_generic_parameters, - STATE(4268), 1, + STATE(4235), 1, sym_signature, - ACTIONS(4912), 2, + ACTIONS(4918), 2, anon_sym_LBRACK, anon_sym_LT2, - STATE(2875), 2, + STATE(2850), 2, sym_parameter_list, sym_type_parameter_list, STATE(3430), 2, sym_line_comment, sym_block_comment, - [125818] = 8, + [125853] = 9, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(6021), 1, + ACTIONS(6110), 1, + anon_sym_const, + ACTIONS(6112), 1, + anon_sym_type, + ACTIONS(6114), 1, + anon_sym_fn, + ACTIONS(6118), 1, + anon_sym_enum, + ACTIONS(6120), 1, + anon_sym_interface, + ACTIONS(6116), 2, + anon_sym_struct, + anon_sym_union, + STATE(3431), 2, + sym_line_comment, + sym_block_comment, + [125883] = 8, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(6086), 1, anon_sym_LPAREN, - STATE(3616), 1, - sym_generic_parameters, - STATE(4236), 1, + STATE(1429), 1, sym_signature, - ACTIONS(4912), 2, + STATE(3609), 1, + sym_generic_parameters, + ACTIONS(4918), 2, anon_sym_LBRACK, anon_sym_LT2, - STATE(2875), 2, + STATE(1099), 2, sym_parameter_list, sym_type_parameter_list, - STATE(3431), 2, - sym_line_comment, - sym_block_comment, - [125846] = 9, - ACTIONS(497), 1, - anon_sym_SLASH_SLASH, - ACTIONS(499), 1, - anon_sym_SLASH_STAR, - ACTIONS(6118), 1, - sym_escape_sequence, - ACTIONS(6120), 1, - aux_sym_c_string_literal_token1, - ACTIONS(6122), 1, - sym___dolcbr, - ACTIONS(6124), 1, - sym___single_quote, - STATE(3479), 1, - aux_sym_c_string_literal_repeat1, - STATE(3707), 1, - sym_string_interpolation, STATE(3432), 2, sym_line_comment, sym_block_comment, - [125875] = 9, - ACTIONS(497), 1, + [125911] = 8, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, - ACTIONS(499), 1, + ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(6118), 1, - sym_escape_sequence, - ACTIONS(6120), 1, - aux_sym_c_string_literal_token1, - ACTIONS(6122), 1, - sym___dolcbr, - ACTIONS(6126), 1, - sym___single_quote, - STATE(3481), 1, - aux_sym_c_string_literal_repeat1, - STATE(3707), 1, - sym_string_interpolation, + ACTIONS(6086), 1, + anon_sym_LPAREN, + STATE(1430), 1, + sym_signature, + STATE(3652), 1, + sym_generic_parameters, + ACTIONS(4918), 2, + anon_sym_LBRACK, + anon_sym_LT2, + STATE(1099), 2, + sym_parameter_list, + sym_type_parameter_list, STATE(3433), 2, sym_line_comment, sym_block_comment, - [125904] = 9, + [125939] = 4, ACTIONS(497), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, anon_sym_SLASH_STAR, - ACTIONS(6118), 1, - sym_escape_sequence, - ACTIONS(6120), 1, - aux_sym_c_string_literal_token1, - ACTIONS(6122), 1, - sym___dolcbr, - ACTIONS(6128), 1, - sym___single_quote, - STATE(3442), 1, - aux_sym_c_string_literal_repeat1, - STATE(3707), 1, - sym_string_interpolation, STATE(3434), 2, sym_line_comment, sym_block_comment, - [125933] = 9, + ACTIONS(6122), 7, + anon_sym_LF, + anon_sym_CR, + anon_sym_CR_LF, + anon_sym_SEMI, + anon_sym_DOT, + anon_sym_as, + anon_sym_LBRACE, + [125959] = 9, ACTIONS(497), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, anon_sym_SLASH_STAR, - ACTIONS(6130), 1, + ACTIONS(6124), 1, sym_escape_sequence, - ACTIONS(6132), 1, + ACTIONS(6126), 1, aux_sym_c_string_literal_token2, - ACTIONS(6134), 1, + ACTIONS(6128), 1, sym___dolcbr, - ACTIONS(6136), 1, + ACTIONS(6130), 1, sym___double_quote, - STATE(3449), 1, + STATE(3482), 1, aux_sym_c_string_literal_repeat2, - STATE(3713), 1, + STATE(3601), 1, sym_string_interpolation, STATE(3435), 2, sym_line_comment, sym_block_comment, - [125962] = 9, + [125988] = 9, ACTIONS(497), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, anon_sym_SLASH_STAR, - ACTIONS(6118), 1, + ACTIONS(6124), 1, sym_escape_sequence, - ACTIONS(6120), 1, - aux_sym_c_string_literal_token1, - ACTIONS(6122), 1, + ACTIONS(6126), 1, + aux_sym_c_string_literal_token2, + ACTIONS(6128), 1, sym___dolcbr, - ACTIONS(6136), 1, - sym___single_quote, - STATE(3442), 1, - aux_sym_c_string_literal_repeat1, - STATE(3707), 1, + ACTIONS(6132), 1, + sym___double_quote, + STATE(3487), 1, + aux_sym_c_string_literal_repeat2, + STATE(3601), 1, sym_string_interpolation, STATE(3436), 2, sym_line_comment, sym_block_comment, - [125991] = 9, + [126017] = 6, ACTIONS(497), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, anon_sym_SLASH_STAR, - ACTIONS(6130), 1, - sym_escape_sequence, - ACTIONS(6132), 1, - aux_sym_c_string_literal_token2, - ACTIONS(6134), 1, - sym___dolcbr, - ACTIONS(6138), 1, - sym___double_quote, - STATE(3458), 1, - aux_sym_c_string_literal_repeat2, - STATE(3713), 1, - sym_string_interpolation, + ACTIONS(4972), 1, + anon_sym_COMMA, + STATE(3483), 1, + aux_sym_strictly_expression_list_repeat1, STATE(3437), 2, sym_line_comment, sym_block_comment, - [126020] = 9, + ACTIONS(4001), 4, + anon_sym_LF, + anon_sym_CR, + anon_sym_CR_LF, + anon_sym_RBRACE, + [126040] = 6, ACTIONS(497), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, anon_sym_SLASH_STAR, - ACTIONS(6118), 1, - sym_escape_sequence, - ACTIONS(6120), 1, - aux_sym_c_string_literal_token1, - ACTIONS(6122), 1, - sym___dolcbr, - ACTIONS(6138), 1, - sym___single_quote, - STATE(3459), 1, - aux_sym_c_string_literal_repeat1, - STATE(3707), 1, - sym_string_interpolation, + ACTIONS(4972), 1, + anon_sym_COMMA, + STATE(3437), 1, + aux_sym_strictly_expression_list_repeat1, STATE(3438), 2, sym_line_comment, sym_block_comment, - [126049] = 9, + ACTIONS(1757), 4, + anon_sym_LF, + anon_sym_CR, + anon_sym_CR_LF, + anon_sym_RBRACE, + [126063] = 9, ACTIONS(497), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, anon_sym_SLASH_STAR, - ACTIONS(6130), 1, + ACTIONS(6124), 1, sym_escape_sequence, - ACTIONS(6132), 1, + ACTIONS(6126), 1, aux_sym_c_string_literal_token2, - ACTIONS(6134), 1, + ACTIONS(6128), 1, sym___dolcbr, - ACTIONS(6140), 1, + ACTIONS(6134), 1, sym___double_quote, - STATE(3460), 1, + STATE(3462), 1, aux_sym_c_string_literal_repeat2, - STATE(3713), 1, + STATE(3601), 1, sym_string_interpolation, STATE(3439), 2, sym_line_comment, sym_block_comment, - [126078] = 9, + [126092] = 9, ACTIONS(497), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, anon_sym_SLASH_STAR, - ACTIONS(6118), 1, + ACTIONS(6134), 1, + sym___single_quote, + ACTIONS(6136), 1, sym_escape_sequence, - ACTIONS(6120), 1, + ACTIONS(6138), 1, aux_sym_c_string_literal_token1, - ACTIONS(6122), 1, - sym___dolcbr, ACTIONS(6140), 1, - sym___single_quote, + sym___dolcbr, STATE(3463), 1, aux_sym_c_string_literal_repeat1, - STATE(3707), 1, + STATE(3611), 1, sym_string_interpolation, STATE(3440), 2, sym_line_comment, sym_block_comment, - [126107] = 9, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_STAR, - ACTIONS(6142), 1, - anon_sym_DOT, - ACTIONS(6144), 1, - anon_sym_RBRACE, - ACTIONS(6146), 1, - sym_int_literal, - ACTIONS(6148), 1, - aux_sym_format_specifier_token1, - ACTIONS(6150), 1, - aux_sym_format_specifier_token2, - ACTIONS(6152), 1, - anon_sym_0, - STATE(3441), 2, - sym_line_comment, - sym_block_comment, - [126136] = 8, + [126121] = 9, ACTIONS(497), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, anon_sym_SLASH_STAR, - ACTIONS(6154), 1, + ACTIONS(6124), 1, sym_escape_sequence, - ACTIONS(6157), 1, - aux_sym_c_string_literal_token1, - ACTIONS(6160), 1, + ACTIONS(6126), 1, + aux_sym_c_string_literal_token2, + ACTIONS(6128), 1, sym___dolcbr, - ACTIONS(6163), 1, - sym___single_quote, - STATE(3707), 1, + ACTIONS(6142), 1, + sym___double_quote, + STATE(3464), 1, + aux_sym_c_string_literal_repeat2, + STATE(3601), 1, sym_string_interpolation, - STATE(3442), 3, + STATE(3441), 2, sym_line_comment, sym_block_comment, - aux_sym_c_string_literal_repeat1, - [126163] = 9, + [126150] = 9, ACTIONS(497), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, anon_sym_SLASH_STAR, - ACTIONS(6130), 1, + ACTIONS(6136), 1, sym_escape_sequence, - ACTIONS(6132), 1, - aux_sym_c_string_literal_token2, - ACTIONS(6134), 1, + ACTIONS(6138), 1, + aux_sym_c_string_literal_token1, + ACTIONS(6140), 1, sym___dolcbr, - ACTIONS(6165), 1, - sym___double_quote, - STATE(3452), 1, - aux_sym_c_string_literal_repeat2, - STATE(3713), 1, + ACTIONS(6142), 1, + sym___single_quote, + STATE(3465), 1, + aux_sym_c_string_literal_repeat1, + STATE(3611), 1, sym_string_interpolation, - STATE(3443), 2, + STATE(3442), 2, sym_line_comment, sym_block_comment, - [126192] = 9, + [126179] = 9, ACTIONS(497), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, anon_sym_SLASH_STAR, - ACTIONS(6118), 1, + ACTIONS(6136), 1, sym_escape_sequence, - ACTIONS(6120), 1, + ACTIONS(6138), 1, aux_sym_c_string_literal_token1, - ACTIONS(6122), 1, + ACTIONS(6140), 1, sym___dolcbr, - ACTIONS(6167), 1, + ACTIONS(6144), 1, sym___single_quote, - STATE(3451), 1, + STATE(3481), 1, aux_sym_c_string_literal_repeat1, - STATE(3707), 1, + STATE(3611), 1, sym_string_interpolation, - STATE(3444), 2, + STATE(3443), 2, sym_line_comment, sym_block_comment, - [126221] = 9, + [126208] = 9, ACTIONS(497), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, anon_sym_SLASH_STAR, - ACTIONS(6130), 1, + ACTIONS(6124), 1, sym_escape_sequence, - ACTIONS(6132), 1, + ACTIONS(6126), 1, aux_sym_c_string_literal_token2, - ACTIONS(6134), 1, + ACTIONS(6128), 1, sym___dolcbr, - ACTIONS(6167), 1, + ACTIONS(6146), 1, sym___double_quote, - STATE(3450), 1, + STATE(3482), 1, aux_sym_c_string_literal_repeat2, - STATE(3713), 1, + STATE(3601), 1, sym_string_interpolation, + STATE(3444), 2, + sym_line_comment, + sym_block_comment, + [126237] = 6, + ACTIONS(497), 1, + anon_sym_SLASH_SLASH, + ACTIONS(499), 1, + anon_sym_SLASH_STAR, + ACTIONS(6150), 1, + anon_sym_RBRACE, + STATE(3485), 1, + aux_sym_selective_import_list_repeat1, STATE(3445), 2, sym_line_comment, sym_block_comment, - [126250] = 9, + ACTIONS(6148), 4, + anon_sym_LF, + anon_sym_CR, + anon_sym_CR_LF, + anon_sym_COMMA, + [126260] = 9, ACTIONS(497), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, anon_sym_SLASH_STAR, - ACTIONS(6128), 1, - sym___double_quote, - ACTIONS(6130), 1, + ACTIONS(6124), 1, sym_escape_sequence, - ACTIONS(6132), 1, + ACTIONS(6126), 1, aux_sym_c_string_literal_token2, - ACTIONS(6134), 1, + ACTIONS(6128), 1, sym___dolcbr, - STATE(3449), 1, + ACTIONS(6152), 1, + sym___double_quote, + STATE(3482), 1, aux_sym_c_string_literal_repeat2, - STATE(3713), 1, + STATE(3601), 1, sym_string_interpolation, STATE(3446), 2, sym_line_comment, sym_block_comment, - [126279] = 9, + [126289] = 9, ACTIONS(497), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, anon_sym_SLASH_STAR, - ACTIONS(6118), 1, + ACTIONS(6136), 1, sym_escape_sequence, - ACTIONS(6120), 1, + ACTIONS(6138), 1, aux_sym_c_string_literal_token1, - ACTIONS(6122), 1, + ACTIONS(6140), 1, sym___dolcbr, - ACTIONS(6169), 1, + ACTIONS(6152), 1, sym___single_quote, - STATE(3487), 1, + STATE(3481), 1, aux_sym_c_string_literal_repeat1, - STATE(3707), 1, + STATE(3611), 1, sym_string_interpolation, STATE(3447), 2, sym_line_comment, sym_block_comment, - [126308] = 9, + [126318] = 9, ACTIONS(497), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, anon_sym_SLASH_STAR, - ACTIONS(6118), 1, + ACTIONS(6136), 1, sym_escape_sequence, - ACTIONS(6120), 1, + ACTIONS(6138), 1, aux_sym_c_string_literal_token1, - ACTIONS(6122), 1, + ACTIONS(6140), 1, sym___dolcbr, - ACTIONS(6171), 1, + ACTIONS(6146), 1, sym___single_quote, - STATE(3442), 1, + STATE(3481), 1, aux_sym_c_string_literal_repeat1, - STATE(3707), 1, + STATE(3611), 1, sym_string_interpolation, STATE(3448), 2, sym_line_comment, sym_block_comment, - [126337] = 8, + [126347] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(1887), 1, + anon_sym_DOT, + STATE(3449), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(2473), 5, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LBRACK, + anon_sym_RBRACK, + [126368] = 9, ACTIONS(497), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, anon_sym_SLASH_STAR, - ACTIONS(6173), 1, + ACTIONS(6136), 1, sym_escape_sequence, - ACTIONS(6176), 1, - aux_sym_c_string_literal_token2, - ACTIONS(6179), 1, + ACTIONS(6138), 1, + aux_sym_c_string_literal_token1, + ACTIONS(6140), 1, sym___dolcbr, - ACTIONS(6182), 1, - sym___double_quote, - STATE(3713), 1, + ACTIONS(6154), 1, + sym___single_quote, + STATE(3481), 1, + aux_sym_c_string_literal_repeat1, + STATE(3611), 1, sym_string_interpolation, - STATE(3449), 3, + STATE(3450), 2, sym_line_comment, sym_block_comment, - aux_sym_c_string_literal_repeat2, - [126364] = 9, + [126397] = 9, ACTIONS(497), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, anon_sym_SLASH_STAR, - ACTIONS(6130), 1, + ACTIONS(6124), 1, sym_escape_sequence, - ACTIONS(6132), 1, + ACTIONS(6126), 1, aux_sym_c_string_literal_token2, - ACTIONS(6134), 1, + ACTIONS(6128), 1, sym___dolcbr, - ACTIONS(6184), 1, + ACTIONS(6154), 1, sym___double_quote, - STATE(3449), 1, + STATE(3482), 1, aux_sym_c_string_literal_repeat2, - STATE(3713), 1, + STATE(3601), 1, sym_string_interpolation, - STATE(3450), 2, + STATE(3451), 2, sym_line_comment, sym_block_comment, - [126393] = 9, + [126426] = 9, ACTIONS(497), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, anon_sym_SLASH_STAR, - ACTIONS(6118), 1, + ACTIONS(6136), 1, sym_escape_sequence, - ACTIONS(6120), 1, + ACTIONS(6138), 1, aux_sym_c_string_literal_token1, - ACTIONS(6122), 1, + ACTIONS(6140), 1, sym___dolcbr, - ACTIONS(6184), 1, + ACTIONS(6156), 1, sym___single_quote, - STATE(3442), 1, + STATE(3481), 1, aux_sym_c_string_literal_repeat1, - STATE(3707), 1, + STATE(3611), 1, sym_string_interpolation, - STATE(3451), 2, + STATE(3452), 2, sym_line_comment, sym_block_comment, - [126422] = 9, + [126455] = 9, ACTIONS(497), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, anon_sym_SLASH_STAR, - ACTIONS(6130), 1, + ACTIONS(6124), 1, sym_escape_sequence, - ACTIONS(6132), 1, + ACTIONS(6126), 1, aux_sym_c_string_literal_token2, - ACTIONS(6134), 1, + ACTIONS(6128), 1, sym___dolcbr, - ACTIONS(6186), 1, + ACTIONS(6158), 1, sym___double_quote, - STATE(3449), 1, + STATE(3508), 1, aux_sym_c_string_literal_repeat2, - STATE(3713), 1, + STATE(3601), 1, sym_string_interpolation, - STATE(3452), 2, + STATE(3453), 2, sym_line_comment, sym_block_comment, - [126451] = 9, + [126484] = 9, ACTIONS(497), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, anon_sym_SLASH_STAR, - ACTIONS(6118), 1, + ACTIONS(6124), 1, sym_escape_sequence, - ACTIONS(6120), 1, - aux_sym_c_string_literal_token1, - ACTIONS(6122), 1, + ACTIONS(6126), 1, + aux_sym_c_string_literal_token2, + ACTIONS(6128), 1, sym___dolcbr, - ACTIONS(6186), 1, - sym___single_quote, - STATE(3442), 1, - aux_sym_c_string_literal_repeat1, - STATE(3707), 1, + ACTIONS(6156), 1, + sym___double_quote, + STATE(3482), 1, + aux_sym_c_string_literal_repeat2, + STATE(3601), 1, sym_string_interpolation, - STATE(3453), 2, + STATE(3454), 2, sym_line_comment, sym_block_comment, - [126480] = 9, + [126513] = 9, ACTIONS(497), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, anon_sym_SLASH_STAR, - ACTIONS(6130), 1, + ACTIONS(6136), 1, sym_escape_sequence, - ACTIONS(6132), 1, - aux_sym_c_string_literal_token2, - ACTIONS(6134), 1, + ACTIONS(6138), 1, + aux_sym_c_string_literal_token1, + ACTIONS(6140), 1, sym___dolcbr, - ACTIONS(6188), 1, - sym___double_quote, - STATE(3534), 1, - aux_sym_c_string_literal_repeat2, - STATE(3713), 1, + ACTIONS(6158), 1, + sym___single_quote, + STATE(3443), 1, + aux_sym_c_string_literal_repeat1, + STATE(3611), 1, sym_string_interpolation, - STATE(3454), 2, + STATE(3455), 2, sym_line_comment, sym_block_comment, - [126509] = 6, + [126542] = 9, ACTIONS(497), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, anon_sym_SLASH_STAR, - ACTIONS(4958), 1, - anon_sym_COMMA, - STATE(3526), 1, - aux_sym_strictly_expression_list_repeat1, - STATE(3455), 2, + ACTIONS(6124), 1, + sym_escape_sequence, + ACTIONS(6126), 1, + aux_sym_c_string_literal_token2, + ACTIONS(6128), 1, + sym___dolcbr, + ACTIONS(6160), 1, + sym___double_quote, + STATE(3444), 1, + aux_sym_c_string_literal_repeat2, + STATE(3601), 1, + sym_string_interpolation, + STATE(3456), 2, sym_line_comment, sym_block_comment, - ACTIONS(3999), 4, - anon_sym_LF, - anon_sym_CR, - anon_sym_CR_LF, - anon_sym_RBRACE, - [126532] = 9, + [126571] = 9, ACTIONS(497), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, anon_sym_SLASH_STAR, - ACTIONS(6118), 1, + ACTIONS(6136), 1, sym_escape_sequence, - ACTIONS(6120), 1, + ACTIONS(6138), 1, aux_sym_c_string_literal_token1, - ACTIONS(6122), 1, + ACTIONS(6140), 1, sym___dolcbr, - ACTIONS(6188), 1, + ACTIONS(6160), 1, sym___single_quote, STATE(3448), 1, aux_sym_c_string_literal_repeat1, - STATE(3707), 1, + STATE(3611), 1, sym_string_interpolation, - STATE(3456), 2, - sym_line_comment, - sym_block_comment, - [126561] = 8, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_STAR, - ACTIONS(6190), 1, - anon_sym_const, - ACTIONS(6192), 1, - anon_sym_fn, - ACTIONS(6196), 1, - anon_sym_enum, - ACTIONS(6198), 1, - anon_sym_interface, - ACTIONS(6194), 2, - anon_sym_struct, - anon_sym_union, STATE(3457), 2, sym_line_comment, sym_block_comment, - [126588] = 9, + [126600] = 9, ACTIONS(497), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, anon_sym_SLASH_STAR, - ACTIONS(6130), 1, + ACTIONS(6124), 1, sym_escape_sequence, - ACTIONS(6132), 1, + ACTIONS(6126), 1, aux_sym_c_string_literal_token2, - ACTIONS(6134), 1, + ACTIONS(6128), 1, sym___dolcbr, - ACTIONS(6200), 1, + ACTIONS(6162), 1, sym___double_quote, - STATE(3449), 1, + STATE(3504), 1, aux_sym_c_string_literal_repeat2, - STATE(3713), 1, + STATE(3601), 1, sym_string_interpolation, STATE(3458), 2, sym_line_comment, sym_block_comment, - [126617] = 9, + [126629] = 9, ACTIONS(497), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, anon_sym_SLASH_STAR, - ACTIONS(6118), 1, + ACTIONS(6124), 1, sym_escape_sequence, - ACTIONS(6120), 1, - aux_sym_c_string_literal_token1, - ACTIONS(6122), 1, + ACTIONS(6126), 1, + aux_sym_c_string_literal_token2, + ACTIONS(6128), 1, sym___dolcbr, - ACTIONS(6200), 1, - sym___single_quote, - STATE(3442), 1, - aux_sym_c_string_literal_repeat1, - STATE(3707), 1, + ACTIONS(6164), 1, + sym___double_quote, + STATE(3490), 1, + aux_sym_c_string_literal_repeat2, + STATE(3601), 1, sym_string_interpolation, STATE(3459), 2, sym_line_comment, sym_block_comment, - [126646] = 9, - ACTIONS(497), 1, + [126658] = 6, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, - ACTIONS(499), 1, + ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(6130), 1, - sym_escape_sequence, - ACTIONS(6132), 1, - aux_sym_c_string_literal_token2, - ACTIONS(6134), 1, - sym___dolcbr, - ACTIONS(6202), 1, - sym___double_quote, - STATE(3449), 1, - aux_sym_c_string_literal_repeat2, - STATE(3713), 1, - sym_string_interpolation, + ACTIONS(6166), 1, + anon_sym_LBRACK, + STATE(2366), 1, + sym_type_parameters, STATE(3460), 2, sym_line_comment, sym_block_comment, - [126675] = 9, + ACTIONS(1879), 4, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_RBRACK, + [126681] = 9, ACTIONS(497), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, anon_sym_SLASH_STAR, - ACTIONS(6118), 1, + ACTIONS(6136), 1, sym_escape_sequence, - ACTIONS(6120), 1, + ACTIONS(6138), 1, aux_sym_c_string_literal_token1, - ACTIONS(6122), 1, + ACTIONS(6140), 1, sym___dolcbr, - ACTIONS(6204), 1, + ACTIONS(6164), 1, sym___single_quote, - STATE(3442), 1, + STATE(3493), 1, aux_sym_c_string_literal_repeat1, - STATE(3707), 1, + STATE(3611), 1, sym_string_interpolation, STATE(3461), 2, sym_line_comment, sym_block_comment, - [126704] = 9, + [126710] = 9, ACTIONS(497), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, anon_sym_SLASH_STAR, - ACTIONS(6130), 1, + ACTIONS(6124), 1, sym_escape_sequence, - ACTIONS(6132), 1, + ACTIONS(6126), 1, aux_sym_c_string_literal_token2, - ACTIONS(6134), 1, + ACTIONS(6128), 1, sym___dolcbr, - ACTIONS(6204), 1, + ACTIONS(6168), 1, sym___double_quote, - STATE(3449), 1, + STATE(3482), 1, aux_sym_c_string_literal_repeat2, - STATE(3713), 1, + STATE(3601), 1, sym_string_interpolation, STATE(3462), 2, sym_line_comment, sym_block_comment, - [126733] = 9, + [126739] = 9, ACTIONS(497), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, anon_sym_SLASH_STAR, - ACTIONS(6118), 1, + ACTIONS(6136), 1, sym_escape_sequence, - ACTIONS(6120), 1, + ACTIONS(6138), 1, aux_sym_c_string_literal_token1, - ACTIONS(6122), 1, + ACTIONS(6140), 1, sym___dolcbr, - ACTIONS(6202), 1, + ACTIONS(6168), 1, sym___single_quote, - STATE(3442), 1, + STATE(3481), 1, aux_sym_c_string_literal_repeat1, - STATE(3707), 1, + STATE(3611), 1, sym_string_interpolation, STATE(3463), 2, sym_line_comment, sym_block_comment, - [126762] = 9, + [126768] = 9, ACTIONS(497), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, anon_sym_SLASH_STAR, - ACTIONS(6130), 1, + ACTIONS(6124), 1, sym_escape_sequence, - ACTIONS(6132), 1, + ACTIONS(6126), 1, aux_sym_c_string_literal_token2, - ACTIONS(6134), 1, + ACTIONS(6128), 1, sym___dolcbr, - ACTIONS(6206), 1, + ACTIONS(6170), 1, sym___double_quote, - STATE(3449), 1, + STATE(3482), 1, aux_sym_c_string_literal_repeat2, - STATE(3713), 1, + STATE(3601), 1, sym_string_interpolation, STATE(3464), 2, sym_line_comment, sym_block_comment, - [126791] = 9, + [126797] = 9, ACTIONS(497), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, anon_sym_SLASH_STAR, - ACTIONS(6118), 1, + ACTIONS(6136), 1, sym_escape_sequence, - ACTIONS(6120), 1, + ACTIONS(6138), 1, aux_sym_c_string_literal_token1, - ACTIONS(6122), 1, + ACTIONS(6140), 1, sym___dolcbr, - ACTIONS(6208), 1, + ACTIONS(6170), 1, sym___single_quote, - STATE(3442), 1, + STATE(3481), 1, aux_sym_c_string_literal_repeat1, - STATE(3707), 1, + STATE(3611), 1, sym_string_interpolation, STATE(3465), 2, sym_line_comment, sym_block_comment, - [126820] = 9, + [126826] = 9, ACTIONS(497), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, anon_sym_SLASH_STAR, - ACTIONS(6130), 1, + ACTIONS(6124), 1, sym_escape_sequence, - ACTIONS(6132), 1, + ACTIONS(6126), 1, aux_sym_c_string_literal_token2, - ACTIONS(6134), 1, + ACTIONS(6128), 1, sym___dolcbr, - ACTIONS(6208), 1, + ACTIONS(6172), 1, sym___double_quote, - STATE(3449), 1, + STATE(3497), 1, aux_sym_c_string_literal_repeat2, - STATE(3713), 1, + STATE(3601), 1, sym_string_interpolation, STATE(3466), 2, sym_line_comment, sym_block_comment, - [126849] = 9, + [126855] = 9, ACTIONS(497), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, anon_sym_SLASH_STAR, - ACTIONS(6118), 1, + ACTIONS(6136), 1, sym_escape_sequence, - ACTIONS(6120), 1, + ACTIONS(6138), 1, aux_sym_c_string_literal_token1, - ACTIONS(6122), 1, + ACTIONS(6140), 1, sym___dolcbr, - ACTIONS(6210), 1, + ACTIONS(6172), 1, sym___single_quote, - STATE(3442), 1, + STATE(3502), 1, aux_sym_c_string_literal_repeat1, - STATE(3707), 1, + STATE(3611), 1, sym_string_interpolation, STATE(3467), 2, sym_line_comment, sym_block_comment, - [126878] = 9, + [126884] = 6, ACTIONS(497), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, anon_sym_SLASH_STAR, - ACTIONS(6130), 1, - sym_escape_sequence, - ACTIONS(6132), 1, - aux_sym_c_string_literal_token2, - ACTIONS(6134), 1, - sym___dolcbr, - ACTIONS(6212), 1, - sym___double_quote, - STATE(3501), 1, - aux_sym_c_string_literal_repeat2, - STATE(3713), 1, - sym_string_interpolation, + ACTIONS(4972), 1, + anon_sym_COMMA, + STATE(3483), 1, + aux_sym_strictly_expression_list_repeat1, STATE(3468), 2, sym_line_comment, sym_block_comment, + ACTIONS(4012), 4, + anon_sym_LF, + anon_sym_CR, + anon_sym_CR_LF, + anon_sym_RBRACE, [126907] = 9, ACTIONS(497), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, anon_sym_SLASH_STAR, - ACTIONS(6118), 1, + ACTIONS(6136), 1, sym_escape_sequence, - ACTIONS(6120), 1, + ACTIONS(6138), 1, aux_sym_c_string_literal_token1, - ACTIONS(6122), 1, + ACTIONS(6140), 1, sym___dolcbr, - ACTIONS(6212), 1, + ACTIONS(6174), 1, sym___single_quote, - STATE(3497), 1, + STATE(3450), 1, aux_sym_c_string_literal_repeat1, - STATE(3707), 1, + STATE(3611), 1, sym_string_interpolation, STATE(3469), 2, sym_line_comment, sym_block_comment, - [126936] = 6, - ACTIONS(497), 1, - anon_sym_SLASH_SLASH, - ACTIONS(499), 1, - anon_sym_SLASH_STAR, - ACTIONS(6067), 1, - anon_sym_LBRACE, - STATE(3632), 1, - sym_selective_import_list, - STATE(3470), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(6214), 4, - anon_sym_LF, - anon_sym_CR, - anon_sym_CR_LF, - anon_sym_SEMI, - [126959] = 9, + [126936] = 9, ACTIONS(497), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, anon_sym_SLASH_STAR, - ACTIONS(6118), 1, + ACTIONS(6136), 1, sym_escape_sequence, - ACTIONS(6120), 1, + ACTIONS(6138), 1, aux_sym_c_string_literal_token1, - ACTIONS(6122), 1, + ACTIONS(6140), 1, sym___dolcbr, - ACTIONS(6216), 1, + ACTIONS(6162), 1, sym___single_quote, - STATE(3442), 1, + STATE(3509), 1, aux_sym_c_string_literal_repeat1, - STATE(3707), 1, + STATE(3611), 1, sym_string_interpolation, - STATE(3471), 2, + STATE(3470), 2, sym_line_comment, sym_block_comment, - [126988] = 9, + [126965] = 9, ACTIONS(497), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, anon_sym_SLASH_STAR, - ACTIONS(6130), 1, + ACTIONS(6124), 1, sym_escape_sequence, - ACTIONS(6132), 1, + ACTIONS(6126), 1, aux_sym_c_string_literal_token2, - ACTIONS(6134), 1, + ACTIONS(6128), 1, sym___dolcbr, - ACTIONS(6218), 1, + ACTIONS(6174), 1, sym___double_quote, - STATE(3495), 1, + STATE(3451), 1, aux_sym_c_string_literal_repeat2, - STATE(3713), 1, + STATE(3601), 1, sym_string_interpolation, - STATE(3472), 2, + STATE(3471), 2, sym_line_comment, sym_block_comment, - [127017] = 9, + [126994] = 9, ACTIONS(497), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, anon_sym_SLASH_STAR, - ACTIONS(6118), 1, + ACTIONS(6136), 1, sym_escape_sequence, - ACTIONS(6120), 1, + ACTIONS(6138), 1, aux_sym_c_string_literal_token1, - ACTIONS(6122), 1, + ACTIONS(6140), 1, sym___dolcbr, - ACTIONS(6206), 1, + ACTIONS(6176), 1, sym___single_quote, - STATE(3442), 1, + STATE(3452), 1, aux_sym_c_string_literal_repeat1, - STATE(3707), 1, + STATE(3611), 1, sym_string_interpolation, - STATE(3473), 2, + STATE(3472), 2, sym_line_comment, sym_block_comment, - [127046] = 9, + [127023] = 9, ACTIONS(497), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, anon_sym_SLASH_STAR, - ACTIONS(6118), 1, + ACTIONS(6124), 1, sym_escape_sequence, - ACTIONS(6120), 1, - aux_sym_c_string_literal_token1, - ACTIONS(6122), 1, + ACTIONS(6126), 1, + aux_sym_c_string_literal_token2, + ACTIONS(6128), 1, sym___dolcbr, - ACTIONS(6218), 1, - sym___single_quote, - STATE(3488), 1, - aux_sym_c_string_literal_repeat1, - STATE(3707), 1, + ACTIONS(6176), 1, + sym___double_quote, + STATE(3454), 1, + aux_sym_c_string_literal_repeat2, + STATE(3601), 1, sym_string_interpolation, - STATE(3474), 2, + STATE(3473), 2, sym_line_comment, sym_block_comment, - [127075] = 9, + [127052] = 9, ACTIONS(497), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, anon_sym_SLASH_STAR, - ACTIONS(6130), 1, + ACTIONS(6124), 1, sym_escape_sequence, - ACTIONS(6132), 1, + ACTIONS(6126), 1, aux_sym_c_string_literal_token2, - ACTIONS(6134), 1, + ACTIONS(6128), 1, sym___dolcbr, - ACTIONS(6220), 1, + ACTIONS(6178), 1, sym___double_quote, - STATE(3449), 1, + STATE(3514), 1, aux_sym_c_string_literal_repeat2, - STATE(3713), 1, + STATE(3601), 1, sym_string_interpolation, - STATE(3475), 2, + STATE(3474), 2, sym_line_comment, sym_block_comment, - [127104] = 9, + [127081] = 9, ACTIONS(497), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, anon_sym_SLASH_STAR, - ACTIONS(6130), 1, + ACTIONS(6136), 1, sym_escape_sequence, - ACTIONS(6132), 1, - aux_sym_c_string_literal_token2, - ACTIONS(6134), 1, + ACTIONS(6138), 1, + aux_sym_c_string_literal_token1, + ACTIONS(6140), 1, sym___dolcbr, - ACTIONS(6210), 1, - sym___double_quote, - STATE(3449), 1, - aux_sym_c_string_literal_repeat2, - STATE(3713), 1, + ACTIONS(6178), 1, + sym___single_quote, + STATE(3516), 1, + aux_sym_c_string_literal_repeat1, + STATE(3611), 1, sym_string_interpolation, - STATE(3476), 2, + STATE(3475), 2, sym_line_comment, sym_block_comment, - [127133] = 9, + [127110] = 9, ACTIONS(497), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, anon_sym_SLASH_STAR, - ACTIONS(6130), 1, + ACTIONS(6136), 1, sym_escape_sequence, - ACTIONS(6132), 1, - aux_sym_c_string_literal_token2, - ACTIONS(6134), 1, + ACTIONS(6138), 1, + aux_sym_c_string_literal_token1, + ACTIONS(6140), 1, sym___dolcbr, - ACTIONS(6216), 1, - sym___double_quote, - STATE(3449), 1, - aux_sym_c_string_literal_repeat2, - STATE(3713), 1, + ACTIONS(6180), 1, + sym___single_quote, + STATE(3481), 1, + aux_sym_c_string_literal_repeat1, + STATE(3611), 1, sym_string_interpolation, + STATE(3476), 2, + sym_line_comment, + sym_block_comment, + [127139] = 9, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(6182), 1, + anon_sym_DOT, + ACTIONS(6184), 1, + anon_sym_RBRACE, + ACTIONS(6186), 1, + sym_int_literal, + ACTIONS(6188), 1, + aux_sym_format_specifier_token1, + ACTIONS(6190), 1, + aux_sym_format_specifier_token2, + ACTIONS(6192), 1, + anon_sym_0, STATE(3477), 2, sym_line_comment, sym_block_comment, - [127162] = 9, + [127168] = 9, ACTIONS(497), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, anon_sym_SLASH_STAR, - ACTIONS(6118), 1, + ACTIONS(6124), 1, sym_escape_sequence, - ACTIONS(6120), 1, - aux_sym_c_string_literal_token1, - ACTIONS(6122), 1, + ACTIONS(6126), 1, + aux_sym_c_string_literal_token2, + ACTIONS(6128), 1, sym___dolcbr, - ACTIONS(6222), 1, - sym___single_quote, - STATE(3442), 1, - aux_sym_c_string_literal_repeat1, - STATE(3707), 1, + ACTIONS(6180), 1, + sym___double_quote, + STATE(3482), 1, + aux_sym_c_string_literal_repeat2, + STATE(3601), 1, sym_string_interpolation, STATE(3478), 2, sym_line_comment, sym_block_comment, - [127191] = 9, + [127197] = 9, ACTIONS(497), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, anon_sym_SLASH_STAR, - ACTIONS(6118), 1, + ACTIONS(6136), 1, sym_escape_sequence, - ACTIONS(6120), 1, + ACTIONS(6138), 1, aux_sym_c_string_literal_token1, - ACTIONS(6122), 1, + ACTIONS(6140), 1, sym___dolcbr, - ACTIONS(6220), 1, + ACTIONS(6194), 1, sym___single_quote, - STATE(3442), 1, + STATE(3481), 1, aux_sym_c_string_literal_repeat1, - STATE(3707), 1, + STATE(3611), 1, sym_string_interpolation, STATE(3479), 2, sym_line_comment, sym_block_comment, - [127220] = 9, + [127226] = 9, ACTIONS(497), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, anon_sym_SLASH_STAR, - ACTIONS(6130), 1, + ACTIONS(6124), 1, sym_escape_sequence, - ACTIONS(6132), 1, + ACTIONS(6126), 1, aux_sym_c_string_literal_token2, - ACTIONS(6134), 1, + ACTIONS(6128), 1, sym___dolcbr, - ACTIONS(6222), 1, + ACTIONS(6194), 1, sym___double_quote, - STATE(3449), 1, + STATE(3482), 1, aux_sym_c_string_literal_repeat2, - STATE(3713), 1, + STATE(3601), 1, sym_string_interpolation, STATE(3480), 2, sym_line_comment, sym_block_comment, - [127249] = 9, + [127255] = 8, ACTIONS(497), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, anon_sym_SLASH_STAR, - ACTIONS(6118), 1, + ACTIONS(6196), 1, sym_escape_sequence, - ACTIONS(6120), 1, + ACTIONS(6199), 1, aux_sym_c_string_literal_token1, - ACTIONS(6122), 1, + ACTIONS(6202), 1, sym___dolcbr, - ACTIONS(6224), 1, + ACTIONS(6205), 1, sym___single_quote, - STATE(3442), 1, - aux_sym_c_string_literal_repeat1, - STATE(3707), 1, + STATE(3611), 1, sym_string_interpolation, - STATE(3481), 2, + STATE(3481), 3, sym_line_comment, sym_block_comment, - [127278] = 9, + aux_sym_c_string_literal_repeat1, + [127282] = 8, ACTIONS(497), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, anon_sym_SLASH_STAR, - ACTIONS(6130), 1, + ACTIONS(6207), 1, sym_escape_sequence, - ACTIONS(6132), 1, + ACTIONS(6210), 1, aux_sym_c_string_literal_token2, - ACTIONS(6134), 1, + ACTIONS(6213), 1, sym___dolcbr, - ACTIONS(6224), 1, + ACTIONS(6216), 1, sym___double_quote, - STATE(3449), 1, - aux_sym_c_string_literal_repeat2, - STATE(3713), 1, + STATE(3601), 1, sym_string_interpolation, - STATE(3482), 2, + STATE(3482), 3, sym_line_comment, sym_block_comment, - [127307] = 9, + aux_sym_c_string_literal_repeat2, + [127309] = 5, ACTIONS(497), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, anon_sym_SLASH_STAR, - ACTIONS(6118), 1, - sym_escape_sequence, - ACTIONS(6120), 1, - aux_sym_c_string_literal_token1, - ACTIONS(6122), 1, - sym___dolcbr, - ACTIONS(6226), 1, - sym___single_quote, - STATE(3442), 1, - aux_sym_c_string_literal_repeat1, - STATE(3707), 1, - sym_string_interpolation, - STATE(3483), 2, + ACTIONS(6218), 1, + anon_sym_COMMA, + STATE(3483), 3, sym_line_comment, sym_block_comment, - [127336] = 9, + aux_sym_strictly_expression_list_repeat1, + ACTIONS(1649), 4, + anon_sym_LF, + anon_sym_CR, + anon_sym_CR_LF, + anon_sym_RBRACE, + [127330] = 9, ACTIONS(497), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, anon_sym_SLASH_STAR, ACTIONS(6130), 1, + sym___single_quote, + ACTIONS(6136), 1, sym_escape_sequence, - ACTIONS(6132), 1, - aux_sym_c_string_literal_token2, - ACTIONS(6134), 1, + ACTIONS(6138), 1, + aux_sym_c_string_literal_token1, + ACTIONS(6140), 1, sym___dolcbr, - ACTIONS(6226), 1, - sym___double_quote, - STATE(3449), 1, - aux_sym_c_string_literal_repeat2, - STATE(3713), 1, + STATE(3481), 1, + aux_sym_c_string_literal_repeat1, + STATE(3611), 1, sym_string_interpolation, STATE(3484), 2, sym_line_comment, sym_block_comment, - [127365] = 9, + [127359] = 6, ACTIONS(497), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, anon_sym_SLASH_STAR, - ACTIONS(6118), 1, + ACTIONS(6221), 1, + anon_sym_RBRACE, + STATE(3489), 1, + aux_sym_selective_import_list_repeat1, + STATE(3485), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(6148), 4, + anon_sym_LF, + anon_sym_CR, + anon_sym_CR_LF, + anon_sym_COMMA, + [127382] = 9, + ACTIONS(497), 1, + anon_sym_SLASH_SLASH, + ACTIONS(499), 1, + anon_sym_SLASH_STAR, + ACTIONS(6136), 1, sym_escape_sequence, - ACTIONS(6120), 1, + ACTIONS(6138), 1, aux_sym_c_string_literal_token1, - ACTIONS(6122), 1, + ACTIONS(6140), 1, sym___dolcbr, - ACTIONS(6228), 1, + ACTIONS(6223), 1, sym___single_quote, - STATE(3442), 1, + STATE(3481), 1, aux_sym_c_string_literal_repeat1, - STATE(3707), 1, + STATE(3611), 1, sym_string_interpolation, - STATE(3485), 2, + STATE(3486), 2, sym_line_comment, sym_block_comment, - [127394] = 9, + [127411] = 9, ACTIONS(497), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, anon_sym_SLASH_STAR, - ACTIONS(6130), 1, + ACTIONS(6124), 1, sym_escape_sequence, - ACTIONS(6132), 1, + ACTIONS(6126), 1, aux_sym_c_string_literal_token2, - ACTIONS(6134), 1, + ACTIONS(6128), 1, sym___dolcbr, - ACTIONS(6228), 1, + ACTIONS(6223), 1, sym___double_quote, - STATE(3449), 1, + STATE(3482), 1, aux_sym_c_string_literal_repeat2, - STATE(3713), 1, + STATE(3601), 1, sym_string_interpolation, - STATE(3486), 2, + STATE(3487), 2, sym_line_comment, sym_block_comment, - [127423] = 9, + [127440] = 9, ACTIONS(497), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, anon_sym_SLASH_STAR, - ACTIONS(6118), 1, + ACTIONS(6124), 1, sym_escape_sequence, - ACTIONS(6120), 1, - aux_sym_c_string_literal_token1, - ACTIONS(6122), 1, + ACTIONS(6126), 1, + aux_sym_c_string_literal_token2, + ACTIONS(6128), 1, sym___dolcbr, - ACTIONS(6230), 1, - sym___single_quote, - STATE(3442), 1, - aux_sym_c_string_literal_repeat1, - STATE(3707), 1, + ACTIONS(6225), 1, + sym___double_quote, + STATE(3482), 1, + aux_sym_c_string_literal_repeat2, + STATE(3601), 1, sym_string_interpolation, - STATE(3487), 2, + STATE(3488), 2, sym_line_comment, sym_block_comment, - [127452] = 9, + [127469] = 5, ACTIONS(497), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, anon_sym_SLASH_STAR, - ACTIONS(6118), 1, + ACTIONS(6230), 1, + anon_sym_RBRACE, + STATE(3489), 3, + sym_line_comment, + sym_block_comment, + aux_sym_selective_import_list_repeat1, + ACTIONS(6227), 4, + anon_sym_LF, + anon_sym_CR, + anon_sym_CR_LF, + anon_sym_COMMA, + [127490] = 9, + ACTIONS(497), 1, + anon_sym_SLASH_SLASH, + ACTIONS(499), 1, + anon_sym_SLASH_STAR, + ACTIONS(6124), 1, sym_escape_sequence, - ACTIONS(6120), 1, - aux_sym_c_string_literal_token1, - ACTIONS(6122), 1, + ACTIONS(6126), 1, + aux_sym_c_string_literal_token2, + ACTIONS(6128), 1, sym___dolcbr, ACTIONS(6232), 1, - sym___single_quote, - STATE(3442), 1, - aux_sym_c_string_literal_repeat1, - STATE(3707), 1, + sym___double_quote, + STATE(3482), 1, + aux_sym_c_string_literal_repeat2, + STATE(3601), 1, sym_string_interpolation, - STATE(3488), 2, + STATE(3490), 2, sym_line_comment, sym_block_comment, - [127481] = 9, + [127519] = 9, ACTIONS(497), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, anon_sym_SLASH_STAR, - ACTIONS(6118), 1, + ACTIONS(6136), 1, sym_escape_sequence, - ACTIONS(6120), 1, + ACTIONS(6138), 1, aux_sym_c_string_literal_token1, - ACTIONS(6122), 1, + ACTIONS(6140), 1, sym___dolcbr, ACTIONS(6234), 1, sym___single_quote, - STATE(3461), 1, + STATE(3476), 1, aux_sym_c_string_literal_repeat1, - STATE(3707), 1, + STATE(3611), 1, sym_string_interpolation, - STATE(3489), 2, + STATE(3491), 2, sym_line_comment, sym_block_comment, - [127510] = 9, + [127548] = 9, ACTIONS(497), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, anon_sym_SLASH_STAR, - ACTIONS(6130), 1, + ACTIONS(6136), 1, sym_escape_sequence, - ACTIONS(6132), 1, - aux_sym_c_string_literal_token2, - ACTIONS(6134), 1, + ACTIONS(6138), 1, + aux_sym_c_string_literal_token1, + ACTIONS(6140), 1, sym___dolcbr, - ACTIONS(6234), 1, - sym___double_quote, - STATE(3462), 1, - aux_sym_c_string_literal_repeat2, - STATE(3713), 1, + ACTIONS(6225), 1, + sym___single_quote, + STATE(3481), 1, + aux_sym_c_string_literal_repeat1, + STATE(3611), 1, sym_string_interpolation, - STATE(3490), 2, + STATE(3492), 2, sym_line_comment, sym_block_comment, - [127539] = 9, + [127577] = 9, ACTIONS(497), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, anon_sym_SLASH_STAR, - ACTIONS(6118), 1, + ACTIONS(6136), 1, sym_escape_sequence, - ACTIONS(6120), 1, + ACTIONS(6138), 1, aux_sym_c_string_literal_token1, - ACTIONS(6122), 1, + ACTIONS(6140), 1, sym___dolcbr, - ACTIONS(6236), 1, + ACTIONS(6232), 1, sym___single_quote, - STATE(3465), 1, + STATE(3481), 1, aux_sym_c_string_literal_repeat1, - STATE(3707), 1, + STATE(3611), 1, sym_string_interpolation, - STATE(3491), 2, + STATE(3493), 2, sym_line_comment, sym_block_comment, - [127568] = 9, + [127606] = 9, ACTIONS(497), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, anon_sym_SLASH_STAR, - ACTIONS(6130), 1, + ACTIONS(6124), 1, sym_escape_sequence, - ACTIONS(6132), 1, + ACTIONS(6126), 1, aux_sym_c_string_literal_token2, - ACTIONS(6134), 1, + ACTIONS(6128), 1, sym___dolcbr, ACTIONS(6236), 1, sym___double_quote, - STATE(3466), 1, + STATE(3545), 1, aux_sym_c_string_literal_repeat2, - STATE(3713), 1, + STATE(3601), 1, sym_string_interpolation, - STATE(3492), 2, + STATE(3494), 2, sym_line_comment, sym_block_comment, - [127597] = 9, + [127635] = 9, ACTIONS(497), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, anon_sym_SLASH_STAR, - ACTIONS(6118), 1, + ACTIONS(6136), 1, sym_escape_sequence, - ACTIONS(6120), 1, + ACTIONS(6138), 1, aux_sym_c_string_literal_token1, - ACTIONS(6122), 1, + ACTIONS(6140), 1, sym___dolcbr, - ACTIONS(6238), 1, + ACTIONS(6236), 1, sym___single_quote, - STATE(3467), 1, + STATE(3546), 1, aux_sym_c_string_literal_repeat1, - STATE(3707), 1, + STATE(3611), 1, sym_string_interpolation, - STATE(3493), 2, + STATE(3495), 2, sym_line_comment, sym_block_comment, - [127626] = 6, + [127664] = 9, ACTIONS(497), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, anon_sym_SLASH_STAR, - ACTIONS(6242), 1, - anon_sym_RBRACE, - STATE(3531), 1, - aux_sym_selective_import_list_repeat1, - STATE(3494), 2, + ACTIONS(6124), 1, + sym_escape_sequence, + ACTIONS(6126), 1, + aux_sym_c_string_literal_token2, + ACTIONS(6128), 1, + sym___dolcbr, + ACTIONS(6234), 1, + sym___double_quote, + STATE(3478), 1, + aux_sym_c_string_literal_repeat2, + STATE(3601), 1, + sym_string_interpolation, + STATE(3496), 2, sym_line_comment, sym_block_comment, - ACTIONS(6240), 4, - anon_sym_LF, - anon_sym_CR, - anon_sym_CR_LF, - anon_sym_COMMA, - [127649] = 9, + [127693] = 9, ACTIONS(497), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, anon_sym_SLASH_STAR, - ACTIONS(6130), 1, + ACTIONS(6124), 1, sym_escape_sequence, - ACTIONS(6132), 1, + ACTIONS(6126), 1, aux_sym_c_string_literal_token2, - ACTIONS(6134), 1, + ACTIONS(6128), 1, sym___dolcbr, - ACTIONS(6232), 1, + ACTIONS(6238), 1, sym___double_quote, - STATE(3449), 1, + STATE(3482), 1, aux_sym_c_string_literal_repeat2, - STATE(3713), 1, + STATE(3601), 1, sym_string_interpolation, - STATE(3495), 2, + STATE(3497), 2, sym_line_comment, sym_block_comment, - [127678] = 9, + [127722] = 9, ACTIONS(497), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, anon_sym_SLASH_STAR, - ACTIONS(6130), 1, + ACTIONS(6124), 1, sym_escape_sequence, - ACTIONS(6132), 1, + ACTIONS(6126), 1, aux_sym_c_string_literal_token2, - ACTIONS(6134), 1, + ACTIONS(6128), 1, sym___dolcbr, - ACTIONS(6238), 1, + ACTIONS(6240), 1, sym___double_quote, - STATE(3476), 1, + STATE(3540), 1, aux_sym_c_string_literal_repeat2, - STATE(3713), 1, + STATE(3601), 1, sym_string_interpolation, - STATE(3496), 2, + STATE(3498), 2, sym_line_comment, sym_block_comment, - [127707] = 9, + [127751] = 9, ACTIONS(497), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, anon_sym_SLASH_STAR, - ACTIONS(6118), 1, + ACTIONS(6136), 1, sym_escape_sequence, - ACTIONS(6120), 1, + ACTIONS(6138), 1, aux_sym_c_string_literal_token1, - ACTIONS(6122), 1, + ACTIONS(6140), 1, sym___dolcbr, - ACTIONS(6244), 1, + ACTIONS(6242), 1, sym___single_quote, - STATE(3442), 1, + STATE(3479), 1, aux_sym_c_string_literal_repeat1, - STATE(3707), 1, + STATE(3611), 1, sym_string_interpolation, - STATE(3497), 2, - sym_line_comment, - sym_block_comment, - [127736] = 5, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_STAR, - ACTIONS(1849), 1, - anon_sym_DOT, - STATE(3498), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(2505), 5, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LBRACK, - anon_sym_RBRACK, - [127757] = 5, - ACTIONS(497), 1, - anon_sym_SLASH_SLASH, - ACTIONS(499), 1, - anon_sym_SLASH_STAR, - ACTIONS(6249), 1, - anon_sym_RBRACE, - STATE(3499), 3, + STATE(3499), 2, sym_line_comment, sym_block_comment, - aux_sym_selective_import_list_repeat1, - ACTIONS(6246), 4, - anon_sym_LF, - anon_sym_CR, - anon_sym_CR_LF, - anon_sym_COMMA, - [127778] = 9, + [127780] = 9, ACTIONS(497), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, anon_sym_SLASH_STAR, - ACTIONS(6118), 1, + ACTIONS(6124), 1, sym_escape_sequence, - ACTIONS(6120), 1, - aux_sym_c_string_literal_token1, - ACTIONS(6122), 1, + ACTIONS(6126), 1, + aux_sym_c_string_literal_token2, + ACTIONS(6128), 1, sym___dolcbr, - ACTIONS(6251), 1, - sym___single_quote, - STATE(3478), 1, - aux_sym_c_string_literal_repeat1, - STATE(3707), 1, + ACTIONS(6242), 1, + sym___double_quote, + STATE(3480), 1, + aux_sym_c_string_literal_repeat2, + STATE(3601), 1, sym_string_interpolation, STATE(3500), 2, sym_line_comment, sym_block_comment, - [127807] = 9, + [127809] = 9, ACTIONS(497), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, anon_sym_SLASH_STAR, - ACTIONS(6130), 1, + ACTIONS(6136), 1, sym_escape_sequence, - ACTIONS(6132), 1, - aux_sym_c_string_literal_token2, - ACTIONS(6134), 1, + ACTIONS(6138), 1, + aux_sym_c_string_literal_token1, + ACTIONS(6140), 1, sym___dolcbr, - ACTIONS(6244), 1, - sym___double_quote, - STATE(3449), 1, - aux_sym_c_string_literal_repeat2, - STATE(3713), 1, + ACTIONS(6240), 1, + sym___single_quote, + STATE(3521), 1, + aux_sym_c_string_literal_repeat1, + STATE(3611), 1, sym_string_interpolation, STATE(3501), 2, sym_line_comment, sym_block_comment, - [127836] = 9, + [127838] = 9, ACTIONS(497), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, anon_sym_SLASH_STAR, - ACTIONS(6118), 1, + ACTIONS(6136), 1, sym_escape_sequence, - ACTIONS(6120), 1, + ACTIONS(6138), 1, aux_sym_c_string_literal_token1, - ACTIONS(6122), 1, + ACTIONS(6140), 1, sym___dolcbr, - ACTIONS(6253), 1, + ACTIONS(6238), 1, sym___single_quote, - STATE(3471), 1, + STATE(3481), 1, aux_sym_c_string_literal_repeat1, - STATE(3707), 1, + STATE(3611), 1, sym_string_interpolation, STATE(3502), 2, sym_line_comment, sym_block_comment, - [127865] = 9, + [127867] = 9, ACTIONS(497), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, anon_sym_SLASH_STAR, - ACTIONS(6130), 1, + ACTIONS(6136), 1, sym_escape_sequence, - ACTIONS(6132), 1, - aux_sym_c_string_literal_token2, - ACTIONS(6134), 1, + ACTIONS(6138), 1, + aux_sym_c_string_literal_token1, + ACTIONS(6140), 1, sym___dolcbr, - ACTIONS(6253), 1, - sym___double_quote, - STATE(3477), 1, - aux_sym_c_string_literal_repeat2, - STATE(3713), 1, + ACTIONS(6244), 1, + sym___single_quote, + STATE(3492), 1, + aux_sym_c_string_literal_repeat1, + STATE(3611), 1, sym_string_interpolation, STATE(3503), 2, sym_line_comment, sym_block_comment, - [127894] = 9, + [127896] = 9, ACTIONS(497), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, anon_sym_SLASH_STAR, ACTIONS(6124), 1, - sym___double_quote, - ACTIONS(6130), 1, sym_escape_sequence, - ACTIONS(6132), 1, + ACTIONS(6126), 1, aux_sym_c_string_literal_token2, - ACTIONS(6134), 1, + ACTIONS(6128), 1, sym___dolcbr, - STATE(3475), 1, + ACTIONS(6246), 1, + sym___double_quote, + STATE(3482), 1, aux_sym_c_string_literal_repeat2, - STATE(3713), 1, + STATE(3601), 1, sym_string_interpolation, STATE(3504), 2, sym_line_comment, sym_block_comment, - [127923] = 9, + [127925] = 9, ACTIONS(497), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, anon_sym_SLASH_STAR, - ACTIONS(6118), 1, + ACTIONS(6136), 1, sym_escape_sequence, - ACTIONS(6120), 1, + ACTIONS(6138), 1, aux_sym_c_string_literal_token1, - ACTIONS(6122), 1, + ACTIONS(6140), 1, sym___dolcbr, - ACTIONS(6165), 1, + ACTIONS(6248), 1, sym___single_quote, - STATE(3453), 1, + STATE(3484), 1, aux_sym_c_string_literal_repeat1, - STATE(3707), 1, + STATE(3611), 1, sym_string_interpolation, STATE(3505), 2, sym_line_comment, sym_block_comment, - [127952] = 9, + [127954] = 9, ACTIONS(497), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, anon_sym_SLASH_STAR, - ACTIONS(6126), 1, - sym___double_quote, - ACTIONS(6130), 1, + ACTIONS(6124), 1, sym_escape_sequence, - ACTIONS(6132), 1, + ACTIONS(6126), 1, aux_sym_c_string_literal_token2, - ACTIONS(6134), 1, + ACTIONS(6128), 1, sym___dolcbr, - STATE(3482), 1, + ACTIONS(6248), 1, + sym___double_quote, + STATE(3435), 1, aux_sym_c_string_literal_repeat2, - STATE(3713), 1, + STATE(3601), 1, sym_string_interpolation, STATE(3506), 2, sym_line_comment, sym_block_comment, - [127981] = 9, + [127983] = 9, ACTIONS(497), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, anon_sym_SLASH_STAR, - ACTIONS(6118), 1, + ACTIONS(6132), 1, + sym___single_quote, + ACTIONS(6136), 1, sym_escape_sequence, - ACTIONS(6120), 1, + ACTIONS(6138), 1, aux_sym_c_string_literal_token1, - ACTIONS(6122), 1, + ACTIONS(6140), 1, sym___dolcbr, - ACTIONS(6255), 1, - sym___single_quote, - STATE(3483), 1, + STATE(3486), 1, aux_sym_c_string_literal_repeat1, - STATE(3707), 1, + STATE(3611), 1, sym_string_interpolation, STATE(3507), 2, sym_line_comment, sym_block_comment, - [128010] = 9, + [128012] = 9, ACTIONS(497), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, anon_sym_SLASH_STAR, - ACTIONS(6130), 1, + ACTIONS(6124), 1, sym_escape_sequence, - ACTIONS(6132), 1, + ACTIONS(6126), 1, aux_sym_c_string_literal_token2, - ACTIONS(6134), 1, + ACTIONS(6128), 1, sym___dolcbr, - ACTIONS(6255), 1, + ACTIONS(6144), 1, sym___double_quote, - STATE(3484), 1, + STATE(3482), 1, aux_sym_c_string_literal_repeat2, - STATE(3713), 1, + STATE(3601), 1, sym_string_interpolation, STATE(3508), 2, sym_line_comment, sym_block_comment, - [128039] = 9, + [128041] = 9, ACTIONS(497), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, anon_sym_SLASH_STAR, - ACTIONS(6118), 1, + ACTIONS(6136), 1, sym_escape_sequence, - ACTIONS(6120), 1, + ACTIONS(6138), 1, aux_sym_c_string_literal_token1, - ACTIONS(6122), 1, + ACTIONS(6140), 1, sym___dolcbr, - ACTIONS(6257), 1, + ACTIONS(6246), 1, sym___single_quote, - STATE(3473), 1, + STATE(3481), 1, aux_sym_c_string_literal_repeat1, - STATE(3707), 1, + STATE(3611), 1, sym_string_interpolation, STATE(3509), 2, sym_line_comment, sym_block_comment, - [128068] = 6, + [128070] = 9, ACTIONS(497), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, anon_sym_SLASH_STAR, - ACTIONS(4958), 1, - anon_sym_COMMA, - STATE(3514), 1, - aux_sym_strictly_expression_list_repeat1, + ACTIONS(6136), 1, + sym_escape_sequence, + ACTIONS(6138), 1, + aux_sym_c_string_literal_token1, + ACTIONS(6140), 1, + sym___dolcbr, + ACTIONS(6250), 1, + sym___single_quote, + STATE(3481), 1, + aux_sym_c_string_literal_repeat1, + STATE(3611), 1, + sym_string_interpolation, STATE(3510), 2, sym_line_comment, sym_block_comment, - ACTIONS(1661), 4, - anon_sym_LF, - anon_sym_CR, - anon_sym_CR_LF, - anon_sym_RBRACE, - [128091] = 9, + [128099] = 6, ACTIONS(497), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, anon_sym_SLASH_STAR, - ACTIONS(6118), 1, - sym_escape_sequence, - ACTIONS(6120), 1, - aux_sym_c_string_literal_token1, - ACTIONS(6122), 1, - sym___dolcbr, - ACTIONS(6259), 1, - sym___single_quote, - STATE(3485), 1, - aux_sym_c_string_literal_repeat1, - STATE(3707), 1, - sym_string_interpolation, + ACTIONS(6252), 1, + sym_identifier, + STATE(3653), 1, + sym_label_reference, STATE(3511), 2, sym_line_comment, sym_block_comment, - [128120] = 9, + ACTIONS(4150), 4, + anon_sym_LF, + anon_sym_CR, + anon_sym_CR_LF, + anon_sym_RBRACE, + [128122] = 9, ACTIONS(497), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, anon_sym_SLASH_STAR, - ACTIONS(6130), 1, + ACTIONS(6124), 1, sym_escape_sequence, - ACTIONS(6132), 1, + ACTIONS(6126), 1, aux_sym_c_string_literal_token2, - ACTIONS(6134), 1, + ACTIONS(6128), 1, sym___dolcbr, - ACTIONS(6257), 1, + ACTIONS(6250), 1, sym___double_quote, - STATE(3464), 1, + STATE(3482), 1, aux_sym_c_string_literal_repeat2, - STATE(3713), 1, + STATE(3601), 1, sym_string_interpolation, STATE(3512), 2, sym_line_comment, sym_block_comment, - [128149] = 9, + [128151] = 9, ACTIONS(497), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, anon_sym_SLASH_STAR, - ACTIONS(6130), 1, + ACTIONS(6136), 1, sym_escape_sequence, - ACTIONS(6132), 1, - aux_sym_c_string_literal_token2, - ACTIONS(6134), 1, + ACTIONS(6138), 1, + aux_sym_c_string_literal_token1, + ACTIONS(6140), 1, sym___dolcbr, - ACTIONS(6251), 1, - sym___double_quote, - STATE(3480), 1, - aux_sym_c_string_literal_repeat2, - STATE(3713), 1, + ACTIONS(6254), 1, + sym___single_quote, + STATE(3481), 1, + aux_sym_c_string_literal_repeat1, + STATE(3611), 1, sym_string_interpolation, STATE(3513), 2, sym_line_comment, sym_block_comment, - [128178] = 6, + [128180] = 9, ACTIONS(497), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, anon_sym_SLASH_STAR, - ACTIONS(4958), 1, - anon_sym_COMMA, - STATE(3526), 1, - aux_sym_strictly_expression_list_repeat1, + ACTIONS(6124), 1, + sym_escape_sequence, + ACTIONS(6126), 1, + aux_sym_c_string_literal_token2, + ACTIONS(6128), 1, + sym___dolcbr, + ACTIONS(6256), 1, + sym___double_quote, + STATE(3482), 1, + aux_sym_c_string_literal_repeat2, + STATE(3601), 1, + sym_string_interpolation, STATE(3514), 2, sym_line_comment, sym_block_comment, - ACTIONS(3973), 4, - anon_sym_LF, - anon_sym_CR, - anon_sym_CR_LF, - anon_sym_RBRACE, - [128201] = 9, + [128209] = 9, ACTIONS(497), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, anon_sym_SLASH_STAR, - ACTIONS(6130), 1, + ACTIONS(6136), 1, sym_escape_sequence, - ACTIONS(6132), 1, - aux_sym_c_string_literal_token2, - ACTIONS(6134), 1, + ACTIONS(6138), 1, + aux_sym_c_string_literal_token1, + ACTIONS(6140), 1, sym___dolcbr, - ACTIONS(6259), 1, - sym___double_quote, - STATE(3486), 1, - aux_sym_c_string_literal_repeat2, - STATE(3713), 1, + ACTIONS(6258), 1, + sym___single_quote, + STATE(3481), 1, + aux_sym_c_string_literal_repeat1, + STATE(3611), 1, sym_string_interpolation, STATE(3515), 2, sym_line_comment, sym_block_comment, - [128230] = 9, + [128238] = 9, ACTIONS(497), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, anon_sym_SLASH_STAR, - ACTIONS(6130), 1, + ACTIONS(6136), 1, sym_escape_sequence, - ACTIONS(6132), 1, - aux_sym_c_string_literal_token2, - ACTIONS(6134), 1, + ACTIONS(6138), 1, + aux_sym_c_string_literal_token1, + ACTIONS(6140), 1, sym___dolcbr, - ACTIONS(6261), 1, - sym___double_quote, - STATE(3446), 1, - aux_sym_c_string_literal_repeat2, - STATE(3713), 1, + ACTIONS(6256), 1, + sym___single_quote, + STATE(3481), 1, + aux_sym_c_string_literal_repeat1, + STATE(3611), 1, sym_string_interpolation, STATE(3516), 2, sym_line_comment, sym_block_comment, - [128259] = 6, + [128267] = 9, ACTIONS(497), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, anon_sym_SLASH_STAR, - ACTIONS(6263), 1, - sym_identifier, - STATE(3585), 1, - sym_label_reference, + ACTIONS(6124), 1, + sym_escape_sequence, + ACTIONS(6126), 1, + aux_sym_c_string_literal_token2, + ACTIONS(6128), 1, + sym___dolcbr, + ACTIONS(6258), 1, + sym___double_quote, + STATE(3482), 1, + aux_sym_c_string_literal_repeat2, + STATE(3601), 1, + sym_string_interpolation, STATE(3517), 2, sym_line_comment, sym_block_comment, - ACTIONS(4046), 4, - anon_sym_LF, - anon_sym_CR, - anon_sym_CR_LF, - anon_sym_RBRACE, - [128282] = 9, + [128296] = 9, ACTIONS(497), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, anon_sym_SLASH_STAR, - ACTIONS(6118), 1, + ACTIONS(6136), 1, sym_escape_sequence, - ACTIONS(6120), 1, + ACTIONS(6138), 1, aux_sym_c_string_literal_token1, - ACTIONS(6122), 1, + ACTIONS(6140), 1, sym___dolcbr, - ACTIONS(6265), 1, + ACTIONS(6260), 1, sym___single_quote, - STATE(3442), 1, + STATE(3481), 1, aux_sym_c_string_literal_repeat1, - STATE(3707), 1, + STATE(3611), 1, sym_string_interpolation, STATE(3518), 2, sym_line_comment, sym_block_comment, - [128311] = 9, + [128325] = 9, ACTIONS(497), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, anon_sym_SLASH_STAR, - ACTIONS(6130), 1, + ACTIONS(6124), 1, sym_escape_sequence, - ACTIONS(6132), 1, + ACTIONS(6126), 1, aux_sym_c_string_literal_token2, - ACTIONS(6134), 1, + ACTIONS(6128), 1, sym___dolcbr, - ACTIONS(6265), 1, + ACTIONS(6260), 1, sym___double_quote, - STATE(3449), 1, + STATE(3482), 1, aux_sym_c_string_literal_repeat2, - STATE(3713), 1, + STATE(3601), 1, sym_string_interpolation, STATE(3519), 2, sym_line_comment, sym_block_comment, - [128340] = 9, + [128354] = 9, ACTIONS(497), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, anon_sym_SLASH_STAR, - ACTIONS(6130), 1, + ACTIONS(6124), 1, sym_escape_sequence, - ACTIONS(6132), 1, + ACTIONS(6126), 1, aux_sym_c_string_literal_token2, - ACTIONS(6134), 1, + ACTIONS(6128), 1, sym___dolcbr, - ACTIONS(6267), 1, + ACTIONS(6254), 1, sym___double_quote, - STATE(3544), 1, + STATE(3482), 1, aux_sym_c_string_literal_repeat2, - STATE(3713), 1, + STATE(3601), 1, sym_string_interpolation, STATE(3520), 2, sym_line_comment, sym_block_comment, - [128369] = 9, + [128383] = 9, ACTIONS(497), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, anon_sym_SLASH_STAR, - ACTIONS(6118), 1, + ACTIONS(6136), 1, sym_escape_sequence, - ACTIONS(6120), 1, + ACTIONS(6138), 1, aux_sym_c_string_literal_token1, - ACTIONS(6122), 1, + ACTIONS(6140), 1, sym___dolcbr, - ACTIONS(6267), 1, + ACTIONS(6262), 1, sym___single_quote, - STATE(3533), 1, + STATE(3481), 1, aux_sym_c_string_literal_repeat1, - STATE(3707), 1, + STATE(3611), 1, sym_string_interpolation, STATE(3521), 2, sym_line_comment, sym_block_comment, - [128398] = 9, + [128412] = 9, ACTIONS(497), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, anon_sym_SLASH_STAR, - ACTIONS(6130), 1, + ACTIONS(6124), 1, sym_escape_sequence, - ACTIONS(6132), 1, + ACTIONS(6126), 1, aux_sym_c_string_literal_token2, - ACTIONS(6134), 1, + ACTIONS(6128), 1, sym___dolcbr, - ACTIONS(6269), 1, + ACTIONS(6244), 1, sym___double_quote, - STATE(3532), 1, + STATE(3488), 1, aux_sym_c_string_literal_repeat2, - STATE(3713), 1, + STATE(3601), 1, sym_string_interpolation, STATE(3522), 2, sym_line_comment, sym_block_comment, - [128427] = 9, + [128441] = 9, ACTIONS(497), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, anon_sym_SLASH_STAR, - ACTIONS(6118), 1, + ACTIONS(6136), 1, sym_escape_sequence, - ACTIONS(6120), 1, + ACTIONS(6138), 1, aux_sym_c_string_literal_token1, - ACTIONS(6122), 1, + ACTIONS(6140), 1, sym___dolcbr, - ACTIONS(6269), 1, + ACTIONS(6264), 1, sym___single_quote, - STATE(3530), 1, + STATE(3447), 1, aux_sym_c_string_literal_repeat1, - STATE(3707), 1, + STATE(3611), 1, sym_string_interpolation, STATE(3523), 2, sym_line_comment, sym_block_comment, - [128456] = 9, + [128470] = 6, ACTIONS(497), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, anon_sym_SLASH_STAR, - ACTIONS(6118), 1, + ACTIONS(6252), 1, + sym_identifier, + STATE(3626), 1, + sym_label_reference, + STATE(3524), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(4146), 4, + anon_sym_LF, + anon_sym_CR, + anon_sym_CR_LF, + anon_sym_RBRACE, + [128493] = 9, + ACTIONS(497), 1, + anon_sym_SLASH_SLASH, + ACTIONS(499), 1, + anon_sym_SLASH_STAR, + ACTIONS(6124), 1, sym_escape_sequence, - ACTIONS(6120), 1, + ACTIONS(6126), 1, + aux_sym_c_string_literal_token2, + ACTIONS(6128), 1, + sym___dolcbr, + ACTIONS(6266), 1, + sym___double_quote, + STATE(3535), 1, + aux_sym_c_string_literal_repeat2, + STATE(3601), 1, + sym_string_interpolation, + STATE(3525), 2, + sym_line_comment, + sym_block_comment, + [128522] = 9, + ACTIONS(497), 1, + anon_sym_SLASH_SLASH, + ACTIONS(499), 1, + anon_sym_SLASH_STAR, + ACTIONS(6136), 1, + sym_escape_sequence, + ACTIONS(6138), 1, aux_sym_c_string_literal_token1, - ACTIONS(6122), 1, + ACTIONS(6140), 1, sym___dolcbr, - ACTIONS(6271), 1, + ACTIONS(6266), 1, sym___single_quote, - STATE(3442), 1, + STATE(3531), 1, aux_sym_c_string_literal_repeat1, - STATE(3707), 1, + STATE(3611), 1, sym_string_interpolation, - STATE(3524), 2, + STATE(3526), 2, sym_line_comment, sym_block_comment, - [128485] = 9, + [128551] = 9, ACTIONS(497), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, anon_sym_SLASH_STAR, - ACTIONS(6130), 1, + ACTIONS(6124), 1, sym_escape_sequence, - ACTIONS(6132), 1, + ACTIONS(6126), 1, aux_sym_c_string_literal_token2, - ACTIONS(6134), 1, + ACTIONS(6128), 1, sym___dolcbr, - ACTIONS(6271), 1, + ACTIONS(6268), 1, sym___double_quote, - STATE(3449), 1, + STATE(3530), 1, aux_sym_c_string_literal_repeat2, - STATE(3713), 1, + STATE(3601), 1, sym_string_interpolation, - STATE(3525), 2, + STATE(3527), 2, sym_line_comment, sym_block_comment, - [128514] = 5, + [128580] = 9, ACTIONS(497), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, anon_sym_SLASH_STAR, - ACTIONS(6273), 1, - anon_sym_COMMA, - STATE(3526), 3, + ACTIONS(6136), 1, + sym_escape_sequence, + ACTIONS(6138), 1, + aux_sym_c_string_literal_token1, + ACTIONS(6140), 1, + sym___dolcbr, + ACTIONS(6268), 1, + sym___single_quote, + STATE(3529), 1, + aux_sym_c_string_literal_repeat1, + STATE(3611), 1, + sym_string_interpolation, + STATE(3528), 2, sym_line_comment, sym_block_comment, - aux_sym_strictly_expression_list_repeat1, - ACTIONS(1761), 4, - anon_sym_LF, - anon_sym_CR, - anon_sym_CR_LF, - anon_sym_RBRACE, - [128535] = 6, + [128609] = 9, ACTIONS(497), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, anon_sym_SLASH_STAR, - ACTIONS(6263), 1, - sym_identifier, - STATE(3580), 1, - sym_label_reference, - STATE(3527), 2, + ACTIONS(6136), 1, + sym_escape_sequence, + ACTIONS(6138), 1, + aux_sym_c_string_literal_token1, + ACTIONS(6140), 1, + sym___dolcbr, + ACTIONS(6270), 1, + sym___single_quote, + STATE(3481), 1, + aux_sym_c_string_literal_repeat1, + STATE(3611), 1, + sym_string_interpolation, + STATE(3529), 2, sym_line_comment, sym_block_comment, - ACTIONS(4050), 4, - anon_sym_LF, - anon_sym_CR, - anon_sym_CR_LF, - anon_sym_RBRACE, - [128558] = 9, + [128638] = 9, ACTIONS(497), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, anon_sym_SLASH_STAR, - ACTIONS(6130), 1, + ACTIONS(6124), 1, sym_escape_sequence, - ACTIONS(6132), 1, + ACTIONS(6126), 1, aux_sym_c_string_literal_token2, - ACTIONS(6134), 1, + ACTIONS(6128), 1, sym___dolcbr, - ACTIONS(6169), 1, + ACTIONS(6270), 1, sym___double_quote, - STATE(3536), 1, + STATE(3482), 1, aux_sym_c_string_literal_repeat2, - STATE(3713), 1, + STATE(3601), 1, sym_string_interpolation, - STATE(3528), 2, + STATE(3530), 2, sym_line_comment, sym_block_comment, - [128587] = 9, + [128667] = 9, ACTIONS(497), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, anon_sym_SLASH_STAR, - ACTIONS(6118), 1, + ACTIONS(6136), 1, sym_escape_sequence, - ACTIONS(6120), 1, + ACTIONS(6138), 1, aux_sym_c_string_literal_token1, - ACTIONS(6122), 1, + ACTIONS(6140), 1, sym___dolcbr, - ACTIONS(6261), 1, + ACTIONS(6272), 1, sym___single_quote, - STATE(3434), 1, + STATE(3481), 1, aux_sym_c_string_literal_repeat1, - STATE(3707), 1, + STATE(3611), 1, sym_string_interpolation, - STATE(3529), 2, + STATE(3531), 2, sym_line_comment, sym_block_comment, - [128616] = 9, + [128696] = 9, ACTIONS(497), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, anon_sym_SLASH_STAR, - ACTIONS(6118), 1, + ACTIONS(6136), 1, sym_escape_sequence, - ACTIONS(6120), 1, + ACTIONS(6138), 1, aux_sym_c_string_literal_token1, - ACTIONS(6122), 1, + ACTIONS(6140), 1, sym___dolcbr, - ACTIONS(6276), 1, + ACTIONS(6274), 1, sym___single_quote, - STATE(3442), 1, + STATE(3515), 1, aux_sym_c_string_literal_repeat1, - STATE(3707), 1, + STATE(3611), 1, sym_string_interpolation, - STATE(3530), 2, - sym_line_comment, - sym_block_comment, - [128645] = 6, - ACTIONS(497), 1, - anon_sym_SLASH_SLASH, - ACTIONS(499), 1, - anon_sym_SLASH_STAR, - ACTIONS(6278), 1, - anon_sym_RBRACE, - STATE(3499), 1, - aux_sym_selective_import_list_repeat1, - STATE(3531), 2, + STATE(3532), 2, sym_line_comment, sym_block_comment, - ACTIONS(6240), 4, - anon_sym_LF, - anon_sym_CR, - anon_sym_CR_LF, - anon_sym_COMMA, - [128668] = 9, + [128725] = 9, ACTIONS(497), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, anon_sym_SLASH_STAR, - ACTIONS(6130), 1, + ACTIONS(6124), 1, sym_escape_sequence, - ACTIONS(6132), 1, + ACTIONS(6126), 1, aux_sym_c_string_literal_token2, - ACTIONS(6134), 1, + ACTIONS(6128), 1, sym___dolcbr, - ACTIONS(6276), 1, + ACTIONS(6274), 1, sym___double_quote, - STATE(3449), 1, + STATE(3517), 1, aux_sym_c_string_literal_repeat2, - STATE(3713), 1, + STATE(3601), 1, sym_string_interpolation, - STATE(3532), 2, + STATE(3533), 2, sym_line_comment, sym_block_comment, - [128697] = 9, + [128754] = 9, ACTIONS(497), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, anon_sym_SLASH_STAR, - ACTIONS(6118), 1, + ACTIONS(6136), 1, sym_escape_sequence, - ACTIONS(6120), 1, + ACTIONS(6138), 1, aux_sym_c_string_literal_token1, - ACTIONS(6122), 1, + ACTIONS(6140), 1, sym___dolcbr, - ACTIONS(6280), 1, + ACTIONS(6276), 1, sym___single_quote, - STATE(3442), 1, + STATE(3518), 1, aux_sym_c_string_literal_repeat1, - STATE(3707), 1, + STATE(3611), 1, sym_string_interpolation, - STATE(3533), 2, + STATE(3534), 2, sym_line_comment, sym_block_comment, - [128726] = 9, + [128783] = 9, ACTIONS(497), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, anon_sym_SLASH_STAR, - ACTIONS(6130), 1, + ACTIONS(6124), 1, sym_escape_sequence, - ACTIONS(6132), 1, + ACTIONS(6126), 1, aux_sym_c_string_literal_token2, - ACTIONS(6134), 1, + ACTIONS(6128), 1, sym___dolcbr, - ACTIONS(6171), 1, + ACTIONS(6272), 1, sym___double_quote, - STATE(3449), 1, + STATE(3482), 1, aux_sym_c_string_literal_repeat2, - STATE(3713), 1, + STATE(3601), 1, sym_string_interpolation, - STATE(3534), 2, - sym_line_comment, - sym_block_comment, - [128755] = 9, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_STAR, - ACTIONS(5816), 1, - sym_identifier, - ACTIONS(6041), 1, - anon_sym_mut, - ACTIONS(6043), 1, - anon_sym_shared, - STATE(4242), 1, - sym_mutability_modifiers, - STATE(4243), 1, - sym_reference_expression, - STATE(4256), 1, - sym_capture, STATE(3535), 2, sym_line_comment, sym_block_comment, - [128784] = 9, + [128812] = 9, ACTIONS(497), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, anon_sym_SLASH_STAR, - ACTIONS(6130), 1, + ACTIONS(6124), 1, sym_escape_sequence, - ACTIONS(6132), 1, + ACTIONS(6126), 1, aux_sym_c_string_literal_token2, - ACTIONS(6134), 1, + ACTIONS(6128), 1, sym___dolcbr, - ACTIONS(6230), 1, + ACTIONS(6276), 1, sym___double_quote, - STATE(3449), 1, + STATE(3519), 1, aux_sym_c_string_literal_repeat2, - STATE(3713), 1, + STATE(3601), 1, sym_string_interpolation, STATE(3536), 2, sym_line_comment, sym_block_comment, - [128813] = 9, + [128841] = 9, ACTIONS(497), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, anon_sym_SLASH_STAR, - ACTIONS(6118), 1, + ACTIONS(6124), 1, sym_escape_sequence, - ACTIONS(6120), 1, - aux_sym_c_string_literal_token1, - ACTIONS(6122), 1, + ACTIONS(6126), 1, + aux_sym_c_string_literal_token2, + ACTIONS(6128), 1, sym___dolcbr, - ACTIONS(6282), 1, - sym___single_quote, - STATE(3518), 1, - aux_sym_c_string_literal_repeat1, - STATE(3707), 1, + ACTIONS(6278), 1, + sym___double_quote, + STATE(3520), 1, + aux_sym_c_string_literal_repeat2, + STATE(3601), 1, sym_string_interpolation, STATE(3537), 2, sym_line_comment, sym_block_comment, - [128842] = 9, + [128870] = 9, ACTIONS(497), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, anon_sym_SLASH_STAR, - ACTIONS(6130), 1, + ACTIONS(6124), 1, sym_escape_sequence, - ACTIONS(6132), 1, + ACTIONS(6126), 1, aux_sym_c_string_literal_token2, - ACTIONS(6134), 1, + ACTIONS(6128), 1, sym___dolcbr, - ACTIONS(6282), 1, + ACTIONS(6264), 1, sym___double_quote, - STATE(3519), 1, + STATE(3446), 1, aux_sym_c_string_literal_repeat2, - STATE(3713), 1, + STATE(3601), 1, sym_string_interpolation, STATE(3538), 2, sym_line_comment, sym_block_comment, - [128871] = 9, - ACTIONS(497), 1, + [128899] = 9, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, - ACTIONS(499), 1, + ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(6118), 1, - sym_escape_sequence, - ACTIONS(6120), 1, - aux_sym_c_string_literal_token1, - ACTIONS(6122), 1, - sym___dolcbr, - ACTIONS(6284), 1, - sym___single_quote, - STATE(3524), 1, - aux_sym_c_string_literal_repeat1, - STATE(3707), 1, - sym_string_interpolation, + ACTIONS(5822), 1, + sym_identifier, + ACTIONS(6076), 1, + anon_sym_mut, + ACTIONS(6078), 1, + anon_sym_shared, + STATE(4089), 1, + sym_capture, + STATE(4241), 1, + sym_mutability_modifiers, + STATE(4242), 1, + sym_reference_expression, STATE(3539), 2, sym_line_comment, sym_block_comment, - [128900] = 9, + [128928] = 9, ACTIONS(497), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, anon_sym_SLASH_STAR, - ACTIONS(6130), 1, + ACTIONS(6124), 1, sym_escape_sequence, - ACTIONS(6132), 1, + ACTIONS(6126), 1, aux_sym_c_string_literal_token2, - ACTIONS(6134), 1, + ACTIONS(6128), 1, sym___dolcbr, - ACTIONS(6284), 1, + ACTIONS(6262), 1, sym___double_quote, - STATE(3525), 1, + STATE(3482), 1, aux_sym_c_string_literal_repeat2, - STATE(3713), 1, + STATE(3601), 1, sym_string_interpolation, STATE(3540), 2, sym_line_comment, sym_block_comment, - [128929] = 6, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_STAR, - ACTIONS(6286), 1, - anon_sym_LBRACK, - STATE(2322), 1, - sym_type_parameters, - STATE(3541), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(1903), 4, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_RBRACK, - [128952] = 9, + [128957] = 9, ACTIONS(497), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, anon_sym_SLASH_STAR, - ACTIONS(6118), 1, + ACTIONS(6136), 1, sym_escape_sequence, - ACTIONS(6120), 1, + ACTIONS(6138), 1, aux_sym_c_string_literal_token1, - ACTIONS(6122), 1, + ACTIONS(6140), 1, sym___dolcbr, - ACTIONS(6288), 1, + ACTIONS(6280), 1, sym___single_quote, - STATE(3436), 1, + STATE(3510), 1, aux_sym_c_string_literal_repeat1, - STATE(3707), 1, + STATE(3611), 1, sym_string_interpolation, - STATE(3542), 2, + STATE(3541), 2, sym_line_comment, sym_block_comment, - [128981] = 9, + [128986] = 9, ACTIONS(497), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, anon_sym_SLASH_STAR, - ACTIONS(6130), 1, + ACTIONS(6124), 1, sym_escape_sequence, - ACTIONS(6132), 1, + ACTIONS(6126), 1, aux_sym_c_string_literal_token2, - ACTIONS(6134), 1, + ACTIONS(6128), 1, sym___dolcbr, - ACTIONS(6288), 1, + ACTIONS(6280), 1, sym___double_quote, - STATE(3435), 1, + STATE(3512), 1, aux_sym_c_string_literal_repeat2, - STATE(3713), 1, + STATE(3601), 1, sym_string_interpolation, + STATE(3542), 2, + sym_line_comment, + sym_block_comment, + [129015] = 6, + ACTIONS(497), 1, + anon_sym_SLASH_SLASH, + ACTIONS(499), 1, + anon_sym_SLASH_STAR, + ACTIONS(6061), 1, + anon_sym_LBRACE, + STATE(3599), 1, + sym_selective_import_list, STATE(3543), 2, sym_line_comment, sym_block_comment, - [129010] = 9, + ACTIONS(6282), 4, + anon_sym_LF, + anon_sym_CR, + anon_sym_CR_LF, + anon_sym_SEMI, + [129038] = 9, ACTIONS(497), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, anon_sym_SLASH_STAR, - ACTIONS(6130), 1, + ACTIONS(6136), 1, sym_escape_sequence, - ACTIONS(6132), 1, - aux_sym_c_string_literal_token2, - ACTIONS(6134), 1, + ACTIONS(6138), 1, + aux_sym_c_string_literal_token1, + ACTIONS(6140), 1, sym___dolcbr, - ACTIONS(6280), 1, - sym___double_quote, - STATE(3449), 1, - aux_sym_c_string_literal_repeat2, - STATE(3713), 1, + ACTIONS(6278), 1, + sym___single_quote, + STATE(3513), 1, + aux_sym_c_string_literal_repeat1, + STATE(3611), 1, sym_string_interpolation, STATE(3544), 2, sym_line_comment, sym_block_comment, - [129039] = 7, - ACTIONS(3), 1, + [129067] = 9, + ACTIONS(497), 1, anon_sym_SLASH_SLASH, - ACTIONS(5), 1, + ACTIONS(499), 1, anon_sym_SLASH_STAR, - ACTIONS(6290), 1, - anon_sym_LBRACE, - STATE(1559), 1, - sym__interface_body, - STATE(4206), 1, - sym_generic_parameters, - ACTIONS(4912), 2, - anon_sym_LBRACK, - anon_sym_LT2, + ACTIONS(6124), 1, + sym_escape_sequence, + ACTIONS(6126), 1, + aux_sym_c_string_literal_token2, + ACTIONS(6128), 1, + sym___dolcbr, + ACTIONS(6284), 1, + sym___double_quote, + STATE(3482), 1, + aux_sym_c_string_literal_repeat2, + STATE(3601), 1, + sym_string_interpolation, STATE(3545), 2, sym_line_comment, sym_block_comment, - [129063] = 4, + [129096] = 9, ACTIONS(497), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, anon_sym_SLASH_STAR, + ACTIONS(6136), 1, + sym_escape_sequence, + ACTIONS(6138), 1, + aux_sym_c_string_literal_token1, + ACTIONS(6140), 1, + sym___dolcbr, + ACTIONS(6284), 1, + sym___single_quote, + STATE(3481), 1, + aux_sym_c_string_literal_repeat1, + STATE(3611), 1, + sym_string_interpolation, STATE(3546), 2, sym_line_comment, sym_block_comment, - ACTIONS(1761), 5, - anon_sym_LF, - anon_sym_CR, - anon_sym_CR_LF, - anon_sym_COMMA, - anon_sym_RBRACE, - [129081] = 7, + [129125] = 8, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, + ACTIONS(6286), 1, + anon_sym_const, + ACTIONS(6288), 1, + anon_sym_fn, ACTIONS(6292), 1, - anon_sym_LBRACE, - STATE(1529), 1, - sym__struct_body, - STATE(4100), 1, - sym_generic_parameters, - ACTIONS(4912), 2, - anon_sym_LBRACK, - anon_sym_LT2, + anon_sym_enum, + ACTIONS(6294), 1, + anon_sym_interface, + ACTIONS(6290), 2, + anon_sym_struct, + anon_sym_union, STATE(3547), 2, sym_line_comment, sym_block_comment, - [129105] = 4, + [129152] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, + ACTIONS(5042), 1, + anon_sym_LBRACE, + STATE(1342), 1, + sym_block, STATE(3548), 2, sym_line_comment, sym_block_comment, - ACTIONS(1849), 5, + ACTIONS(6296), 3, anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_PIPE, anon_sym_RBRACK, - anon_sym_QMARK, - [129123] = 6, + anon_sym_COLON, + [129174] = 4, ACTIONS(497), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, anon_sym_SLASH_STAR, - ACTIONS(6296), 1, - anon_sym_RBRACE, - STATE(3573), 1, - aux_sym__statement_list_repeat1, STATE(3549), 2, sym_line_comment, sym_block_comment, - ACTIONS(6294), 3, + ACTIONS(6298), 5, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, - [129145] = 7, + anon_sym_RBRACE, + sym_identifier, + [129192] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(6292), 1, - anon_sym_LBRACE, - STATE(1565), 1, - sym__struct_body, - STATE(4220), 1, - sym_generic_parameters, - ACTIONS(4912), 2, - anon_sym_LBRACK, - anon_sym_LT2, + ACTIONS(5879), 1, + anon_sym_RBRACE, STATE(3550), 2, sym_line_comment, sym_block_comment, - [129169] = 7, + ACTIONS(6300), 4, + anon_sym___global, + anon_sym_pub, + anon_sym_mut, + sym_identifier, + [129212] = 8, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(6290), 1, - anon_sym_LBRACE, - STATE(1531), 1, - sym__interface_body, - STATE(4105), 1, - sym_generic_parameters, - ACTIONS(4912), 2, - anon_sym_LBRACK, - anon_sym_LT2, + ACTIONS(6076), 1, + anon_sym_mut, + ACTIONS(6078), 1, + anon_sym_shared, + ACTIONS(6302), 1, + sym_identifier, + STATE(4207), 1, + sym_mutable_identifier, + STATE(4405), 1, + sym_mutability_modifiers, STATE(3551), 2, sym_line_comment, sym_block_comment, - [129193] = 8, + [129238] = 7, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(6298), 1, + ACTIONS(6304), 1, anon_sym_LBRACE, - ACTIONS(6300), 1, - anon_sym_COMMA, - ACTIONS(6302), 1, - anon_sym_RPAREN, - STATE(2298), 1, - sym_type_initializer_body, - STATE(3873), 1, - aux_sym_type_parameters_repeat1, + STATE(1499), 1, + sym__interface_body, + STATE(4203), 1, + sym_generic_parameters, + ACTIONS(4918), 2, + anon_sym_LBRACK, + anon_sym_LT2, STATE(3552), 2, sym_line_comment, sym_block_comment, - [129219] = 8, + [129262] = 7, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(6041), 1, - anon_sym_mut, - ACTIONS(6043), 1, - anon_sym_shared, - ACTIONS(6304), 1, - sym_identifier, - STATE(4063), 1, - sym_mutable_identifier, - STATE(4563), 1, - sym_mutability_modifiers, + ACTIONS(6306), 1, + anon_sym_LBRACE, + STATE(1501), 1, + sym__struct_body, + STATE(4218), 1, + sym_generic_parameters, + ACTIONS(4918), 2, + anon_sym_LBRACK, + anon_sym_LT2, STATE(3553), 2, sym_line_comment, sym_block_comment, - [129245] = 4, - ACTIONS(497), 1, + [129286] = 6, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, - ACTIONS(499), 1, + ACTIONS(5), 1, anon_sym_SLASH_STAR, + ACTIONS(5068), 1, + anon_sym_LBRACE, + STATE(2331), 1, + sym_block, STATE(3554), 2, sym_line_comment, sym_block_comment, - ACTIONS(6249), 5, - anon_sym_LF, - anon_sym_CR, - anon_sym_CR_LF, - anon_sym_COMMA, - anon_sym_RBRACE, - [129263] = 5, + ACTIONS(6296), 3, + anon_sym_SEMI, + anon_sym_RBRACK, + anon_sym_COLON, + [129308] = 6, ACTIONS(497), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, anon_sym_SLASH_STAR, - ACTIONS(6306), 2, + ACTIONS(6310), 1, anon_sym_RBRACE, - sym_identifier, + STATE(3577), 1, + aux_sym__statement_list_repeat1, STATE(3555), 2, sym_line_comment, sym_block_comment, @@ -296320,359 +296507,361 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, - [129283] = 7, + [129330] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(6292), 1, + ACTIONS(5068), 1, anon_sym_LBRACE, - STATE(1535), 1, - sym__struct_body, - STATE(4110), 1, - sym_generic_parameters, - ACTIONS(4912), 2, - anon_sym_LBRACK, - anon_sym_LT2, + STATE(2302), 1, + sym_block, STATE(3556), 2, sym_line_comment, sym_block_comment, - [129307] = 8, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_STAR, - ACTIONS(6298), 1, - anon_sym_LBRACE, - ACTIONS(6310), 1, + ACTIONS(2135), 3, anon_sym_COMMA, - ACTIONS(6312), 1, + anon_sym_RPAREN, anon_sym_RBRACK, - STATE(2298), 1, - sym_type_initializer_body, - STATE(3985), 1, - aux_sym_type_parameters_repeat1, - STATE(3557), 2, - sym_line_comment, - sym_block_comment, - [129333] = 5, + [129352] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(5875), 1, - anon_sym_RBRACE, - STATE(3558), 2, + STATE(2351), 1, + sym_type_initializer_body, + STATE(3557), 2, sym_line_comment, sym_block_comment, - ACTIONS(6314), 4, - anon_sym___global, - anon_sym_pub, - anon_sym_mut, - sym_identifier, - [129353] = 6, + ACTIONS(2722), 4, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_RBRACK, + [129372] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(5058), 1, + ACTIONS(6312), 1, anon_sym_LBRACE, - STATE(2364), 1, - sym_block, - STATE(3559), 2, + STATE(2351), 1, + sym_type_initializer_body, + STATE(3558), 2, sym_line_comment, sym_block_comment, - ACTIONS(2743), 3, + ACTIONS(2742), 3, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_RBRACK, - [129375] = 5, + [129394] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - STATE(2298), 1, + STATE(2351), 1, sym_type_initializer_body, - STATE(3560), 2, + STATE(3559), 2, sym_line_comment, sym_block_comment, - ACTIONS(2679), 4, + ACTIONS(2748), 4, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_RBRACK, - [129395] = 8, - ACTIONS(3), 1, + [129414] = 4, + ACTIONS(497), 1, anon_sym_SLASH_SLASH, - ACTIONS(5), 1, + ACTIONS(499), 1, anon_sym_SLASH_STAR, - ACTIONS(6316), 1, - sym_identifier, - ACTIONS(6318), 1, - anon_sym_mut, - STATE(3829), 1, - sym_var_definition, - STATE(4188), 1, - sym_range_clause, - STATE(4440), 1, - sym_var_definition_list, - STATE(3561), 2, + STATE(3560), 2, sym_line_comment, sym_block_comment, - [129421] = 7, + ACTIONS(1649), 5, + anon_sym_LF, + anon_sym_CR, + anon_sym_CR_LF, + anon_sym_COMMA, + anon_sym_RBRACE, + [129432] = 7, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(6290), 1, + ACTIONS(6306), 1, anon_sym_LBRACE, - STATE(1537), 1, - sym__interface_body, - STATE(4172), 1, + STATE(1546), 1, + sym__struct_body, + STATE(4107), 1, sym_generic_parameters, - ACTIONS(4912), 2, + ACTIONS(4918), 2, anon_sym_LBRACK, anon_sym_LT2, - STATE(3562), 2, + STATE(3561), 2, sym_line_comment, sym_block_comment, - [129445] = 7, + [129456] = 7, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(6292), 1, + ACTIONS(6304), 1, anon_sym_LBRACE, - STATE(1502), 1, - sym__struct_body, - STATE(4219), 1, + STATE(1548), 1, + sym__interface_body, + STATE(4138), 1, sym_generic_parameters, - ACTIONS(4912), 2, + ACTIONS(4918), 2, anon_sym_LBRACK, anon_sym_LT2, - STATE(3563), 2, + STATE(3562), 2, sym_line_comment, sym_block_comment, - [129469] = 4, + [129480] = 5, ACTIONS(497), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, anon_sym_SLASH_STAR, - STATE(3564), 2, + ACTIONS(6314), 2, + anon_sym_RBRACE, + sym_identifier, + STATE(3563), 2, sym_line_comment, sym_block_comment, - ACTIONS(6320), 5, + ACTIONS(6316), 3, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, - anon_sym_SEMI, - anon_sym_LBRACE, - [129487] = 6, + [129500] = 8, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(6298), 1, + ACTIONS(6312), 1, anon_sym_LBRACE, - STATE(2298), 1, + ACTIONS(6318), 1, + anon_sym_COMMA, + ACTIONS(6320), 1, + anon_sym_RPAREN, + STATE(2351), 1, sym_type_initializer_body, - STATE(3565), 2, + STATE(3780), 1, + aux_sym_type_parameters_repeat1, + STATE(3564), 2, sym_line_comment, sym_block_comment, - ACTIONS(2665), 3, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_RBRACK, - [129509] = 5, + [129526] = 8, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - STATE(2298), 1, - sym_type_initializer_body, + ACTIONS(6322), 1, + sym_identifier, + ACTIONS(6324), 1, + anon_sym_mut, + STATE(3997), 1, + sym_var_definition, + STATE(4164), 1, + sym_range_clause, + STATE(4443), 1, + sym_var_definition_list, + STATE(3565), 2, + sym_line_comment, + sym_block_comment, + [129552] = 6, + ACTIONS(497), 1, + anon_sym_SLASH_SLASH, + ACTIONS(499), 1, + anon_sym_SLASH_STAR, + ACTIONS(6328), 1, + anon_sym_RBRACE, + STATE(3555), 1, + aux_sym__statement_list_repeat1, STATE(3566), 2, sym_line_comment, sym_block_comment, - ACTIONS(2653), 4, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_RBRACK, - [129529] = 7, - ACTIONS(3), 1, + ACTIONS(6326), 3, + anon_sym_LF, + anon_sym_CR, + anon_sym_CR_LF, + [129574] = 4, + ACTIONS(497), 1, anon_sym_SLASH_SLASH, - ACTIONS(5), 1, + ACTIONS(499), 1, anon_sym_SLASH_STAR, - ACTIONS(6290), 1, - anon_sym_LBRACE, - STATE(1504), 1, - sym__interface_body, - STATE(4213), 1, - sym_generic_parameters, - ACTIONS(4912), 2, - anon_sym_LBRACK, - anon_sym_LT2, STATE(3567), 2, sym_line_comment, sym_block_comment, - [129553] = 6, + ACTIONS(6230), 5, + anon_sym_LF, + anon_sym_CR, + anon_sym_CR_LF, + anon_sym_COMMA, + anon_sym_RBRACE, + [129592] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(5066), 1, - anon_sym_LBRACE, - STATE(1339), 1, - sym_block, + ACTIONS(5938), 1, + anon_sym_RBRACE, STATE(3568), 2, sym_line_comment, sym_block_comment, - ACTIONS(6322), 3, - anon_sym_SEMI, - anon_sym_RBRACK, - anon_sym_COLON, - [129575] = 5, - ACTIONS(497), 1, + ACTIONS(6330), 4, + anon_sym___global, + anon_sym_pub, + anon_sym_mut, + sym_identifier, + [129612] = 8, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, - ACTIONS(499), 1, + ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(6327), 1, - anon_sym_RBRACE, - ACTIONS(6324), 3, - anon_sym_LF, - anon_sym_CR, - anon_sym_CR_LF, - STATE(3569), 3, + ACTIONS(6312), 1, + anon_sym_LBRACE, + ACTIONS(6332), 1, + anon_sym_COMMA, + ACTIONS(6334), 1, + anon_sym_RBRACK, + STATE(2351), 1, + sym_type_initializer_body, + STATE(3967), 1, + aux_sym_type_parameters_repeat1, + STATE(3569), 2, sym_line_comment, sym_block_comment, - aux_sym__statement_list_repeat1, - [129595] = 8, + [129638] = 7, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(6316), 1, - sym_identifier, - ACTIONS(6318), 1, - anon_sym_mut, - STATE(3829), 1, - sym_var_definition, - STATE(4182), 1, - sym_range_clause, - STATE(4440), 1, - sym_var_definition_list, + ACTIONS(6306), 1, + anon_sym_LBRACE, + STATE(1503), 1, + sym__struct_body, + STATE(4197), 1, + sym_generic_parameters, + ACTIONS(4918), 2, + anon_sym_LBRACK, + anon_sym_LT2, STATE(3570), 2, sym_line_comment, sym_block_comment, - [129621] = 4, - ACTIONS(497), 1, + [129662] = 7, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, - ACTIONS(499), 1, + ACTIONS(5), 1, anon_sym_SLASH_STAR, + ACTIONS(6304), 1, + anon_sym_LBRACE, + STATE(1505), 1, + sym__interface_body, + STATE(4184), 1, + sym_generic_parameters, + ACTIONS(4918), 2, + anon_sym_LBRACK, + anon_sym_LT2, STATE(3571), 2, sym_line_comment, sym_block_comment, - ACTIONS(6329), 5, - anon_sym_LF, - anon_sym_CR, - anon_sym_CR_LF, - anon_sym_RBRACE, - sym_identifier, - [129639] = 6, + [129686] = 4, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(5058), 1, - anon_sym_LBRACE, - STATE(2326), 1, - sym_block, STATE(3572), 2, sym_line_comment, sym_block_comment, - ACTIONS(6322), 3, + ACTIONS(1887), 5, anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_PIPE, anon_sym_RBRACK, - anon_sym_COLON, - [129661] = 6, - ACTIONS(497), 1, + anon_sym_QMARK, + [129704] = 7, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, - ACTIONS(499), 1, + ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(6333), 1, - anon_sym_RBRACE, - STATE(3569), 1, - aux_sym__statement_list_repeat1, + ACTIONS(6304), 1, + anon_sym_LBRACE, + STATE(1512), 1, + sym__interface_body, + STATE(4113), 1, + sym_generic_parameters, + ACTIONS(4918), 2, + anon_sym_LBRACK, + anon_sym_LT2, STATE(3573), 2, sym_line_comment, sym_block_comment, - ACTIONS(6331), 3, - anon_sym_LF, - anon_sym_CR, - anon_sym_CR_LF, - [129683] = 8, + [129728] = 8, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(6322), 1, + sym_identifier, + ACTIONS(6324), 1, + anon_sym_mut, + STATE(3997), 1, + sym_var_definition, + STATE(4229), 1, + sym_range_clause, + STATE(4443), 1, + sym_var_definition_list, + STATE(3574), 2, + sym_line_comment, + sym_block_comment, + [129754] = 8, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(6041), 1, + ACTIONS(6076), 1, anon_sym_mut, - ACTIONS(6043), 1, + ACTIONS(6078), 1, anon_sym_shared, - ACTIONS(6335), 1, + ACTIONS(6336), 1, sym_identifier, - STATE(4250), 1, + STATE(4048), 1, sym_parameter_declaration, - STATE(4402), 1, + STATE(4593), 1, sym_mutability_modifiers, - STATE(3574), 2, + STATE(3575), 2, sym_line_comment, sym_block_comment, - [129709] = 4, + [129780] = 4, ACTIONS(497), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, anon_sym_SLASH_STAR, - STATE(3575), 2, + STATE(3576), 2, sym_line_comment, sym_block_comment, - ACTIONS(6337), 5, + ACTIONS(6338), 5, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, - anon_sym_RBRACE, - sym_identifier, - [129727] = 5, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_STAR, - ACTIONS(5892), 1, - anon_sym_RBRACE, - STATE(3576), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(6339), 4, - anon_sym___global, - anon_sym_pub, - anon_sym_mut, - sym_identifier, - [129747] = 6, - ACTIONS(3), 1, + anon_sym_SEMI, + anon_sym_LBRACE, + [129798] = 5, + ACTIONS(497), 1, anon_sym_SLASH_SLASH, - ACTIONS(5), 1, + ACTIONS(499), 1, anon_sym_SLASH_STAR, - ACTIONS(6341), 1, - sym_identifier, ACTIONS(6343), 1, - anon_sym_DOLLAR, - STATE(1743), 2, - sym_reference_expression, - sym_compile_time_selector_expression, - STATE(3577), 2, + anon_sym_RBRACE, + ACTIONS(6340), 3, + anon_sym_LF, + anon_sym_CR, + anon_sym_CR_LF, + STATE(3577), 3, sym_line_comment, sym_block_comment, - [129768] = 4, + aux_sym__statement_list_repeat1, + [129818] = 4, ACTIONS(497), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, @@ -296680,1135 +296869,1138 @@ static const uint16_t ts_small_parse_table[] = { STATE(3578), 2, sym_line_comment, sym_block_comment, - ACTIONS(4168), 4, + ACTIONS(6345), 5, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, anon_sym_RBRACE, - [129785] = 7, + sym_identifier, + [129836] = 7, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(6345), 1, - sym_identifier, - ACTIONS(6347), 1, - anon_sym_RPAREN, - STATE(3648), 1, - aux_sym_const_declaration_repeat1, - STATE(3655), 1, - sym_const_definition, + ACTIONS(6306), 1, + anon_sym_LBRACE, + STATE(1510), 1, + sym__struct_body, + STATE(4122), 1, + sym_generic_parameters, + ACTIONS(4918), 2, + anon_sym_LBRACK, + anon_sym_LT2, STATE(3579), 2, sym_line_comment, sym_block_comment, - [129808] = 4, - ACTIONS(497), 1, + [129860] = 6, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, - ACTIONS(499), 1, + ACTIONS(5), 1, anon_sym_SLASH_STAR, + ACTIONS(6027), 1, + anon_sym_LPAREN, + STATE(4221), 1, + sym_signature, + STATE(2850), 2, + sym_parameter_list, + sym_type_parameter_list, STATE(3580), 2, sym_line_comment, sym_block_comment, - ACTIONS(4182), 4, - anon_sym_LF, - anon_sym_CR, - anon_sym_CR_LF, - anon_sym_RBRACE, - [129825] = 6, + [129881] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(6021), 1, + ACTIONS(6086), 1, anon_sym_LPAREN, - STATE(4279), 1, + STATE(1419), 1, sym_signature, - STATE(2875), 2, + STATE(1099), 2, sym_parameter_list, sym_type_parameter_list, STATE(3581), 2, sym_line_comment, sym_block_comment, - [129846] = 4, - ACTIONS(497), 1, + [129902] = 6, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, - ACTIONS(499), 1, + ACTIONS(5), 1, anon_sym_SLASH_STAR, + ACTIONS(6027), 1, + anon_sym_LPAREN, + STATE(4050), 1, + sym_signature, + STATE(2850), 2, + sym_parameter_list, + sym_type_parameter_list, STATE(3582), 2, sym_line_comment, sym_block_comment, - ACTIONS(4213), 4, - anon_sym_LF, - anon_sym_CR, - anon_sym_CR_LF, - anon_sym_RBRACE, - [129863] = 6, + [129923] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(6021), 1, - anon_sym_LPAREN, - STATE(4293), 1, - sym_signature, - STATE(2875), 2, - sym_parameter_list, - sym_type_parameter_list, - STATE(3583), 2, + ACTIONS(6347), 1, + sym_identifier, + ACTIONS(6350), 1, + anon_sym_RPAREN, + STATE(3729), 1, + sym_const_definition, + STATE(3583), 3, sym_line_comment, sym_block_comment, - [129884] = 4, - ACTIONS(497), 1, + aux_sym_const_declaration_repeat1, + [129944] = 6, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, - ACTIONS(499), 1, + ACTIONS(5), 1, anon_sym_SLASH_STAR, + ACTIONS(6027), 1, + anon_sym_LPAREN, + STATE(4098), 1, + sym_signature, + STATE(2850), 2, + sym_parameter_list, + sym_type_parameter_list, STATE(3584), 2, sym_line_comment, sym_block_comment, - ACTIONS(1651), 4, - anon_sym_LF, - anon_sym_CR, - anon_sym_CR_LF, - anon_sym_RBRACE, - [129901] = 4, - ACTIONS(497), 1, + [129965] = 6, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, - ACTIONS(499), 1, + ACTIONS(5), 1, anon_sym_SLASH_STAR, + ACTIONS(6086), 1, + anon_sym_LPAREN, + STATE(1432), 1, + sym_signature, + STATE(1099), 2, + sym_parameter_list, + sym_type_parameter_list, STATE(3585), 2, sym_line_comment, sym_block_comment, - ACTIONS(4178), 4, - anon_sym_LF, - anon_sym_CR, - anon_sym_CR_LF, - anon_sym_RBRACE, - [129918] = 7, + [129986] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(6349), 1, - anon_sym_as, - ACTIONS(6351), 1, + ACTIONS(4998), 1, anon_sym_LBRACE, - STATE(1560), 1, - sym__enum_body, - STATE(4209), 1, - sym_enum_backed_type, + ACTIONS(6352), 1, + anon_sym_DOLLARif, + STATE(2692), 2, + sym_compile_time_if_expression, + sym_block, STATE(3586), 2, sym_line_comment, sym_block_comment, - [129941] = 7, + [130007] = 7, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(6353), 1, - sym_identifier, - ACTIONS(6355), 1, - anon_sym_RBRACE, - STATE(3555), 1, - sym_enum_field_definition, - STATE(3712), 1, - aux_sym__enum_body_repeat1, + ACTIONS(5042), 1, + anon_sym_LBRACE, + ACTIONS(6354), 1, + anon_sym_if, + STATE(1323), 1, + sym_block, + STATE(1324), 1, + sym_if_expression, STATE(3587), 2, sym_line_comment, sym_block_comment, - [129964] = 6, + [130030] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(6357), 1, - anon_sym_LPAREN, - STATE(433), 1, - sym_signature, - STATE(69), 2, - sym_parameter_list, - sym_type_parameter_list, + ACTIONS(5042), 1, + anon_sym_LBRACE, + ACTIONS(6356), 1, + anon_sym_DOLLARif, + STATE(1322), 2, + sym_compile_time_if_expression, + sym_block, STATE(3588), 2, sym_line_comment, sym_block_comment, - [129985] = 6, + [130051] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(6359), 1, - sym_identifier, - ACTIONS(6361), 1, - anon_sym_DOLLAR, - STATE(2087), 2, - sym_reference_expression, - sym_compile_time_selector_expression, + ACTIONS(6027), 1, + anon_sym_LPAREN, + STATE(4126), 1, + sym_signature, + STATE(2850), 2, + sym_parameter_list, + sym_type_parameter_list, STATE(3589), 2, sym_line_comment, sym_block_comment, - [130006] = 5, - ACTIONS(497), 1, + [130072] = 6, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, - ACTIONS(499), 1, + ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(6365), 1, - aux_sym_c_string_literal_token2, + ACTIONS(4998), 1, + anon_sym_LBRACE, + ACTIONS(6352), 1, + anon_sym_DOLLARif, + STATE(2687), 2, + sym_compile_time_if_expression, + sym_block, STATE(3590), 2, sym_line_comment, sym_block_comment, - ACTIONS(6363), 3, - sym_escape_sequence, - sym___dolcbr, - sym___double_quote, - [130025] = 5, - ACTIONS(497), 1, + [130093] = 7, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, - ACTIONS(499), 1, + ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(6369), 1, - aux_sym_c_string_literal_token2, + ACTIONS(4998), 1, + anon_sym_LBRACE, + ACTIONS(6358), 1, + anon_sym_if, + STATE(2685), 1, + sym_if_expression, + STATE(2686), 1, + sym_block, STATE(3591), 2, sym_line_comment, sym_block_comment, - ACTIONS(6367), 3, - sym_escape_sequence, - sym___dolcbr, - sym___double_quote, - [130044] = 4, + [130116] = 6, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(6360), 1, + sym_identifier, + ACTIONS(6363), 1, + anon_sym_RBRACE, + STATE(3563), 1, + sym_enum_field_definition, + STATE(3592), 3, + sym_line_comment, + sym_block_comment, + aux_sym__enum_body_repeat1, + [130137] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(6365), 1, + anon_sym_COMMA, + ACTIONS(6368), 2, + anon_sym_RPAREN, + anon_sym_RBRACK, + STATE(3593), 3, + sym_line_comment, + sym_block_comment, + aux_sym_type_parameters_repeat1, + [130156] = 4, ACTIONS(497), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, anon_sym_SLASH_STAR, - STATE(3592), 2, + STATE(3594), 2, sym_line_comment, sym_block_comment, - ACTIONS(4164), 4, + ACTIONS(6343), 4, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, anon_sym_RBRACE, - [130061] = 7, + [130173] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(5062), 1, + ACTIONS(6370), 1, + anon_sym_LPAREN, + STATE(2016), 1, + sym_signature, + STATE(1196), 2, + sym_parameter_list, + sym_type_parameter_list, + STATE(3595), 2, + sym_line_comment, + sym_block_comment, + [130194] = 7, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(5028), 1, anon_sym_LBRACE, - ACTIONS(6371), 1, + ACTIONS(6372), 1, anon_sym_if, - STATE(1194), 1, + STATE(1231), 1, sym_if_expression, - STATE(1198), 1, + STATE(1232), 1, sym_block, - STATE(3593), 2, + STATE(3596), 2, sym_line_comment, sym_block_comment, - [130084] = 6, + [130217] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(5062), 1, + ACTIONS(5028), 1, anon_sym_LBRACE, - ACTIONS(6373), 1, + ACTIONS(6374), 1, anon_sym_DOLLARif, - STATE(1204), 2, + STATE(1234), 2, sym_compile_time_if_expression, sym_block, - STATE(3594), 2, + STATE(3597), 2, sym_line_comment, sym_block_comment, - [130105] = 4, - ACTIONS(497), 1, + [130238] = 6, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, - ACTIONS(499), 1, + ACTIONS(5), 1, anon_sym_SLASH_STAR, - STATE(3595), 2, + ACTIONS(6027), 1, + anon_sym_LPAREN, + STATE(4206), 1, + sym_signature, + STATE(2850), 2, + sym_parameter_list, + sym_type_parameter_list, + STATE(3598), 2, sym_line_comment, sym_block_comment, - ACTIONS(6375), 4, - anon_sym_LF, - anon_sym_CR, - anon_sym_CR_LF, - anon_sym_SEMI, - [130122] = 4, + [130259] = 4, ACTIONS(497), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, anon_sym_SLASH_STAR, - STATE(3596), 2, + STATE(3599), 2, sym_line_comment, sym_block_comment, - ACTIONS(4515), 4, + ACTIONS(6376), 4, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, - anon_sym_RBRACE, - [130139] = 7, + anon_sym_SEMI, + [130276] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(6345), 1, - sym_identifier, - ACTIONS(6377), 1, - anon_sym_RPAREN, - STATE(3655), 1, - sym_const_definition, - STATE(3656), 1, - aux_sym_const_declaration_repeat1, - STATE(3597), 2, + ACTIONS(6086), 1, + anon_sym_LPAREN, + STATE(1434), 1, + sym_signature, + STATE(1099), 2, + sym_parameter_list, + sym_type_parameter_list, + STATE(3600), 2, sym_line_comment, sym_block_comment, - [130162] = 6, - ACTIONS(3), 1, + [130297] = 5, + ACTIONS(497), 1, anon_sym_SLASH_SLASH, - ACTIONS(5), 1, + ACTIONS(499), 1, anon_sym_SLASH_STAR, - ACTIONS(6379), 1, - anon_sym_EQ, - STATE(4562), 1, - sym_generic_parameters, - ACTIONS(4912), 2, - anon_sym_LBRACK, - anon_sym_LT2, - STATE(3598), 2, + ACTIONS(6380), 1, + aux_sym_c_string_literal_token2, + STATE(3601), 2, sym_line_comment, sym_block_comment, - [130183] = 7, + ACTIONS(6378), 3, + sym_escape_sequence, + sym___dolcbr, + sym___double_quote, + [130316] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(6041), 1, - anon_sym_mut, - ACTIONS(6043), 1, - anon_sym_shared, - ACTIONS(6381), 1, - sym_identifier, - STATE(4557), 1, - sym_mutability_modifiers, - STATE(3599), 2, + ACTIONS(5042), 1, + anon_sym_LBRACE, + ACTIONS(6356), 1, + anon_sym_DOLLARif, + STATE(1366), 2, + sym_compile_time_if_expression, + sym_block, + STATE(3602), 2, sym_line_comment, sym_block_comment, - [130206] = 6, + [130337] = 7, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(6383), 1, + ACTIONS(6382), 1, sym_identifier, - ACTIONS(6385), 1, - anon_sym_DOLLAR, - STATE(2111), 2, - sym_reference_expression, - sym_compile_time_selector_expression, - STATE(3600), 2, + STATE(3393), 1, + sym_import_path, + STATE(3398), 1, + sym_import_name, + STATE(3677), 1, + sym_import_spec, + STATE(3603), 2, sym_line_comment, sym_block_comment, - [130227] = 6, + [130360] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(5062), 1, + ACTIONS(5028), 1, anon_sym_LBRACE, - ACTIONS(6373), 1, + ACTIONS(6374), 1, anon_sym_DOLLARif, - STATE(1138), 2, + STATE(1243), 2, sym_compile_time_if_expression, sym_block, - STATE(3601), 2, + STATE(3604), 2, sym_line_comment, sym_block_comment, - [130248] = 6, + [130381] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(6387), 1, + ACTIONS(6027), 1, anon_sym_LPAREN, - STATE(2721), 1, + STATE(4263), 1, sym_signature, - STATE(1576), 2, + STATE(2850), 2, sym_parameter_list, sym_type_parameter_list, - STATE(3602), 2, - sym_line_comment, - sym_block_comment, - [130269] = 6, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_STAR, - ACTIONS(5066), 1, - anon_sym_LBRACE, - ACTIONS(6389), 1, - anon_sym_DOLLARif, - STATE(1372), 2, - sym_compile_time_if_expression, - sym_block, - STATE(3603), 2, - sym_line_comment, - sym_block_comment, - [130290] = 4, - ACTIONS(497), 1, - anon_sym_SLASH_SLASH, - ACTIONS(499), 1, - anon_sym_SLASH_STAR, - STATE(3604), 2, + STATE(3605), 2, sym_line_comment, sym_block_comment, - ACTIONS(6391), 4, - anon_sym_LF, - anon_sym_CR, - anon_sym_CR_LF, - anon_sym_SEMI, - [130307] = 6, + [130402] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(6393), 1, + ACTIONS(6384), 1, sym_identifier, - ACTIONS(6395), 1, - anon_sym_DOLLAR, - STATE(1787), 2, - sym_reference_expression, - sym_compile_time_selector_expression, - STATE(3605), 2, + STATE(3872), 1, + sym_generic_parameter, + ACTIONS(6386), 2, + anon_sym_GT, + anon_sym_RBRACK, + STATE(3606), 2, sym_line_comment, sym_block_comment, - [130328] = 6, + [130423] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(6397), 1, + ACTIONS(6388), 1, anon_sym_LPAREN, - STATE(1303), 1, + STATE(1639), 1, sym_signature, - STATE(989), 2, + STATE(2870), 2, sym_parameter_list, sym_type_parameter_list, - STATE(3606), 2, + STATE(3607), 2, sym_line_comment, sym_block_comment, - [130349] = 7, + [130444] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(6349), 1, - anon_sym_as, - ACTIONS(6351), 1, - anon_sym_LBRACE, - STATE(1530), 1, - sym__enum_body, - STATE(4102), 1, - sym_enum_backed_type, - STATE(3607), 2, + ACTIONS(6390), 1, + sym_identifier, + ACTIONS(6392), 1, + anon_sym_DOLLAR, + STATE(1871), 2, + sym_reference_expression, + sym_compile_time_selector_expression, + STATE(3608), 2, sym_line_comment, sym_block_comment, - [130372] = 6, + [130465] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(6084), 1, + ACTIONS(6086), 1, anon_sym_LPAREN, - STATE(1438), 1, + STATE(1436), 1, sym_signature, - STATE(1098), 2, + STATE(1099), 2, sym_parameter_list, sym_type_parameter_list, - STATE(3608), 2, - sym_line_comment, - sym_block_comment, - [130393] = 4, - ACTIONS(497), 1, - anon_sym_SLASH_SLASH, - ACTIONS(499), 1, - anon_sym_SLASH_STAR, STATE(3609), 2, sym_line_comment, sym_block_comment, - ACTIONS(4186), 4, - anon_sym_LF, - anon_sym_CR, - anon_sym_CR_LF, - anon_sym_RBRACE, - [130410] = 6, + [130486] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(6084), 1, - anon_sym_LPAREN, - STATE(1451), 1, - sym_signature, - STATE(1098), 2, - sym_parameter_list, - sym_type_parameter_list, + ACTIONS(6394), 1, + sym_identifier, + ACTIONS(6396), 1, + anon_sym_DOLLAR, + STATE(1925), 2, + sym_reference_expression, + sym_compile_time_selector_expression, STATE(3610), 2, sym_line_comment, sym_block_comment, - [130431] = 4, + [130507] = 5, ACTIONS(497), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, anon_sym_SLASH_STAR, + ACTIONS(6400), 1, + aux_sym_c_string_literal_token1, STATE(3611), 2, sym_line_comment, sym_block_comment, - ACTIONS(4190), 4, - anon_sym_LF, - anon_sym_CR, - anon_sym_CR_LF, - anon_sym_RBRACE, - [130448] = 7, + ACTIONS(6398), 3, + sym_escape_sequence, + sym___dolcbr, + sym___single_quote, + [130526] = 7, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(6399), 1, + ACTIONS(6402), 1, sym_identifier, - ACTIONS(6401), 1, + ACTIONS(6404), 1, anon_sym_RPAREN, - STATE(3640), 1, - sym_global_var_definition, - STATE(3658), 1, - aux_sym_global_var_declaration_repeat1, + STATE(3583), 1, + aux_sym_const_declaration_repeat1, + STATE(3729), 1, + sym_const_definition, STATE(3612), 2, sym_line_comment, sym_block_comment, - [130471] = 7, + [130549] = 7, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(6345), 1, + ACTIONS(6402), 1, sym_identifier, - ACTIONS(6347), 1, + ACTIONS(6406), 1, anon_sym_RPAREN, - STATE(3642), 1, + STATE(3583), 1, aux_sym_const_declaration_repeat1, - STATE(3655), 1, + STATE(3729), 1, sym_const_definition, STATE(3613), 2, sym_line_comment, sym_block_comment, - [130494] = 7, + [130572] = 7, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(6345), 1, - sym_identifier, - ACTIONS(6403), 1, - anon_sym_RPAREN, - STATE(3613), 1, - aux_sym_const_declaration_repeat1, - STATE(3655), 1, - sym_const_definition, + ACTIONS(5058), 1, + anon_sym_LBRACE, + ACTIONS(6408), 1, + anon_sym_if, + STATE(2056), 1, + sym_block, + STATE(2057), 1, + sym_if_expression, STATE(3614), 2, sym_line_comment, sym_block_comment, - [130517] = 7, + [130595] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(6399), 1, - sym_identifier, - ACTIONS(6405), 1, - anon_sym_RPAREN, - STATE(3612), 1, - aux_sym_global_var_declaration_repeat1, - STATE(3640), 1, - sym_global_var_definition, + ACTIONS(6086), 1, + anon_sym_LPAREN, + STATE(1427), 1, + sym_signature, + STATE(1099), 2, + sym_parameter_list, + sym_type_parameter_list, STATE(3615), 2, sym_line_comment, sym_block_comment, - [130540] = 6, + [130616] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(6021), 1, + ACTIONS(5058), 1, + anon_sym_LBRACE, + ACTIONS(6410), 1, + anon_sym_DOLLARif, + STATE(2051), 2, + sym_compile_time_if_expression, + sym_block, + STATE(3616), 2, + sym_line_comment, + sym_block_comment, + [130637] = 4, + ACTIONS(497), 1, + anon_sym_SLASH_SLASH, + ACTIONS(499), 1, + anon_sym_SLASH_STAR, + STATE(3617), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(4353), 4, + anon_sym_LF, + anon_sym_CR, + anon_sym_CR_LF, + anon_sym_RBRACE, + [130654] = 6, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(6027), 1, anon_sym_LPAREN, - STATE(4151), 1, + STATE(4317), 1, sym_signature, - STATE(2875), 2, + STATE(2850), 2, sym_parameter_list, sym_type_parameter_list, - STATE(3616), 2, + STATE(3618), 2, + sym_line_comment, + sym_block_comment, + [130675] = 6, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(5058), 1, + anon_sym_LBRACE, + ACTIONS(6410), 1, + anon_sym_DOLLARif, + STATE(2025), 2, + sym_compile_time_if_expression, + sym_block, + STATE(3619), 2, + sym_line_comment, + sym_block_comment, + [130696] = 5, + ACTIONS(497), 1, + anon_sym_SLASH_SLASH, + ACTIONS(499), 1, + anon_sym_SLASH_STAR, + ACTIONS(6414), 1, + aux_sym_c_string_literal_token2, + STATE(3620), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(6412), 3, + sym_escape_sequence, + sym___dolcbr, + sym___double_quote, + [130715] = 5, + ACTIONS(497), 1, + anon_sym_SLASH_SLASH, + ACTIONS(499), 1, + anon_sym_SLASH_STAR, + ACTIONS(6418), 1, + aux_sym_c_string_literal_token1, + STATE(3621), 2, sym_line_comment, sym_block_comment, - [130561] = 6, + ACTIONS(6416), 3, + sym_escape_sequence, + sym___dolcbr, + sym___single_quote, + [130734] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(6407), 1, + ACTIONS(6388), 1, anon_sym_LPAREN, - STATE(2233), 1, + STATE(3355), 1, sym_signature, - STATE(1399), 2, + STATE(2429), 2, sym_parameter_list, sym_type_parameter_list, - STATE(3617), 2, + STATE(3622), 2, sym_line_comment, sym_block_comment, - [130582] = 4, + [130755] = 4, ACTIONS(497), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, anon_sym_SLASH_STAR, - STATE(3618), 2, + STATE(3623), 2, sym_line_comment, sym_block_comment, - ACTIONS(4194), 4, + ACTIONS(4349), 4, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, anon_sym_RBRACE, - [130599] = 6, + [130772] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(6084), 1, - anon_sym_LPAREN, - STATE(1472), 1, - sym_signature, - STATE(1098), 2, - sym_parameter_list, - sym_type_parameter_list, - STATE(3619), 2, - sym_line_comment, - sym_block_comment, - [130620] = 6, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_STAR, - ACTIONS(6021), 1, + ACTIONS(6027), 1, anon_sym_LPAREN, - STATE(4092), 1, + STATE(4002), 1, sym_signature, - STATE(2875), 2, + STATE(2850), 2, sym_parameter_list, sym_type_parameter_list, - STATE(3620), 2, + STATE(3624), 2, sym_line_comment, sym_block_comment, - [130641] = 4, + [130793] = 4, ACTIONS(497), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, anon_sym_SLASH_STAR, - STATE(3621), 2, + STATE(3625), 2, sym_line_comment, sym_block_comment, - ACTIONS(4202), 4, + ACTIONS(4345), 4, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, anon_sym_RBRACE, - [130658] = 6, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_STAR, - ACTIONS(6409), 1, - anon_sym_COMMA, - STATE(3670), 1, - aux_sym_generic_parameters_repeat1, - ACTIONS(6411), 2, - anon_sym_GT, - anon_sym_RBRACK, - STATE(3622), 2, - sym_line_comment, - sym_block_comment, - [130679] = 4, + [130810] = 4, ACTIONS(497), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, anon_sym_SLASH_STAR, - STATE(3623), 2, + STATE(3626), 2, sym_line_comment, sym_block_comment, - ACTIONS(4239), 4, + ACTIONS(4341), 4, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, - anon_sym_SEMI, - [130696] = 7, + anon_sym_RBRACE, + [130827] = 7, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(6349), 1, + ACTIONS(6420), 1, anon_sym_as, - ACTIONS(6351), 1, + ACTIONS(6422), 1, anon_sym_LBRACE, - STATE(1536), 1, + STATE(1511), 1, sym__enum_body, - STATE(4121), 1, + STATE(4118), 1, sym_enum_backed_type, - STATE(3624), 2, + STATE(3627), 2, sym_line_comment, sym_block_comment, - [130719] = 6, + [130850] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(6084), 1, + ACTIONS(6424), 1, anon_sym_LPAREN, - STATE(1427), 1, + STATE(1813), 1, sym_signature, - STATE(1098), 2, + STATE(1122), 2, sym_parameter_list, sym_type_parameter_list, - STATE(3625), 2, + STATE(3628), 2, sym_line_comment, sym_block_comment, - [130740] = 6, + [130871] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(5060), 1, + ACTIONS(4703), 1, anon_sym_LBRACE, - ACTIONS(6413), 1, + ACTIONS(6426), 1, anon_sym_DOLLARif, - STATE(2482), 2, + STATE(1699), 2, sym_compile_time_if_expression, sym_block, - STATE(3626), 2, - sym_line_comment, - sym_block_comment, - [130761] = 6, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_STAR, - ACTIONS(6021), 1, - anon_sym_LPAREN, - STATE(4005), 1, - sym_signature, - STATE(2875), 2, - sym_parameter_list, - sym_type_parameter_list, - STATE(3627), 2, - sym_line_comment, - sym_block_comment, - [130782] = 5, - ACTIONS(497), 1, - anon_sym_SLASH_SLASH, - ACTIONS(499), 1, - anon_sym_SLASH_STAR, - ACTIONS(6369), 1, - aux_sym_c_string_literal_token1, - STATE(3628), 2, + STATE(3629), 2, sym_line_comment, sym_block_comment, - ACTIONS(6367), 3, - sym_escape_sequence, - sym___dolcbr, - sym___single_quote, - [130801] = 6, + [130892] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(6084), 1, + ACTIONS(6027), 1, anon_sym_LPAREN, - STATE(1460), 1, + STATE(4236), 1, sym_signature, - STATE(1098), 2, + STATE(2850), 2, sym_parameter_list, sym_type_parameter_list, - STATE(3629), 2, + STATE(3630), 2, sym_line_comment, sym_block_comment, - [130822] = 6, + [130913] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(6415), 1, + ACTIONS(6428), 1, sym_identifier, - ACTIONS(6417), 1, + ACTIONS(6430), 1, anon_sym_DOLLAR, - STATE(1355), 2, + STATE(1158), 2, sym_reference_expression, sym_compile_time_selector_expression, - STATE(3630), 2, + STATE(3631), 2, sym_line_comment, sym_block_comment, - [130843] = 6, + [130934] = 7, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(4705), 1, - anon_sym_LBRACE, - ACTIONS(6419), 1, - anon_sym_DOLLARif, - STATE(1683), 2, - sym_compile_time_if_expression, - sym_block, - STATE(3631), 2, - sym_line_comment, - sym_block_comment, - [130864] = 4, - ACTIONS(497), 1, - anon_sym_SLASH_SLASH, - ACTIONS(499), 1, - anon_sym_SLASH_STAR, + ACTIONS(6432), 1, + sym_identifier, + ACTIONS(6434), 1, + anon_sym_RPAREN, + STATE(3713), 1, + aux_sym_global_var_declaration_repeat1, + STATE(3744), 1, + sym_global_var_definition, STATE(3632), 2, sym_line_comment, sym_block_comment, - ACTIONS(6421), 4, - anon_sym_LF, - anon_sym_CR, - anon_sym_CR_LF, - anon_sym_SEMI, - [130881] = 6, + [130957] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(6423), 1, + ACTIONS(6027), 1, anon_sym_LPAREN, - STATE(1818), 1, + STATE(4304), 1, sym_signature, - STATE(1119), 2, + STATE(2850), 2, sym_parameter_list, sym_type_parameter_list, STATE(3633), 2, sym_line_comment, sym_block_comment, - [130902] = 6, + [130978] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(5060), 1, - anon_sym_LBRACE, - ACTIONS(6413), 1, - anon_sym_DOLLARif, - STATE(2500), 2, - sym_compile_time_if_expression, - sym_block, + ACTIONS(6436), 1, + sym_identifier, + ACTIONS(6438), 1, + anon_sym_DOLLAR, + STATE(2339), 2, + sym_reference_expression, + sym_compile_time_selector_expression, STATE(3634), 2, sym_line_comment, sym_block_comment, - [130923] = 6, + [130999] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(6425), 1, - anon_sym_LPAREN, - STATE(1078), 1, - sym_signature, - STATE(187), 2, - sym_parameter_list, - sym_type_parameter_list, + ACTIONS(6440), 1, + sym_identifier, + ACTIONS(6442), 1, + anon_sym_DOLLAR, + STATE(460), 2, + sym_reference_expression, + sym_compile_time_selector_expression, STATE(3635), 2, sym_line_comment, sym_block_comment, - [130944] = 7, + [131020] = 7, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(5060), 1, - anon_sym_LBRACE, - ACTIONS(6427), 1, - anon_sym_if, - STATE(2507), 1, - sym_block, - STATE(2520), 1, - sym_if_expression, + ACTIONS(6402), 1, + sym_identifier, + ACTIONS(6444), 1, + anon_sym_RPAREN, + STATE(3699), 1, + aux_sym_const_declaration_repeat1, + STATE(3729), 1, + sym_const_definition, STATE(3636), 2, sym_line_comment, sym_block_comment, - [130967] = 6, + [131043] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(6021), 1, + ACTIONS(6446), 1, anon_sym_LPAREN, - STATE(4145), 1, + STATE(1172), 1, sym_signature, - STATE(2875), 2, + STATE(948), 2, sym_parameter_list, sym_type_parameter_list, STATE(3637), 2, sym_line_comment, sym_block_comment, - [130988] = 7, + [131064] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(6399), 1, - sym_identifier, - ACTIONS(6429), 1, - anon_sym_RPAREN, - STATE(3640), 1, - sym_global_var_definition, - STATE(3658), 1, - aux_sym_global_var_declaration_repeat1, + ACTIONS(6448), 1, + anon_sym_LPAREN, + STATE(999), 1, + sym_signature, + STATE(181), 2, + sym_parameter_list, + sym_type_parameter_list, STATE(3638), 2, sym_line_comment, sym_block_comment, - [131011] = 4, + [131085] = 5, ACTIONS(497), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, anon_sym_SLASH_STAR, + ACTIONS(6414), 1, + aux_sym_c_string_literal_token1, STATE(3639), 2, sym_line_comment, sym_block_comment, - ACTIONS(6327), 4, - anon_sym_LF, - anon_sym_CR, - anon_sym_CR_LF, - anon_sym_RBRACE, - [131028] = 4, - ACTIONS(497), 1, - anon_sym_SLASH_SLASH, - ACTIONS(499), 1, - anon_sym_SLASH_STAR, - STATE(3640), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(6431), 4, - anon_sym_LF, - anon_sym_CR, - anon_sym_CR_LF, - anon_sym_SEMI, - [131045] = 6, + ACTIONS(6412), 3, + sym_escape_sequence, + sym___dolcbr, + sym___single_quote, + [131104] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(5066), 1, + ACTIONS(4703), 1, anon_sym_LBRACE, - ACTIONS(6389), 1, + ACTIONS(6426), 1, anon_sym_DOLLARif, - STATE(1379), 2, + STATE(1717), 2, sym_compile_time_if_expression, sym_block, - STATE(3641), 2, + STATE(3640), 2, sym_line_comment, sym_block_comment, - [131066] = 6, + [131125] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(6433), 1, - sym_identifier, - ACTIONS(6436), 1, - anon_sym_RPAREN, - STATE(3655), 1, - sym_const_definition, - STATE(3642), 3, + ACTIONS(6027), 1, + anon_sym_LPAREN, + STATE(4232), 1, + sym_signature, + STATE(2850), 2, + sym_parameter_list, + sym_type_parameter_list, + STATE(3641), 2, sym_line_comment, sym_block_comment, - aux_sym_const_declaration_repeat1, - [131087] = 7, + [131146] = 4, + ACTIONS(497), 1, + anon_sym_SLASH_SLASH, + ACTIONS(499), 1, + anon_sym_SLASH_STAR, + STATE(3642), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(4186), 4, + anon_sym_LF, + anon_sym_CR, + anon_sym_CR_LF, + anon_sym_RBRACE, + [131163] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(5066), 1, - anon_sym_LBRACE, - ACTIONS(6438), 1, - anon_sym_if, - STATE(1380), 1, - sym_block, - STATE(1381), 1, - sym_if_expression, + ACTIONS(6384), 1, + sym_identifier, + STATE(3872), 1, + sym_generic_parameter, + ACTIONS(6450), 2, + anon_sym_GT, + anon_sym_RBRACK, STATE(3643), 2, sym_line_comment, sym_block_comment, - [131110] = 6, + [131184] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(5040), 1, - anon_sym_LBRACE, - ACTIONS(6440), 1, - anon_sym_DOLLARif, - STATE(1934), 2, - sym_compile_time_if_expression, - sym_block, + ACTIONS(6452), 1, + anon_sym_COMMA, + STATE(3661), 1, + aux_sym_generic_parameters_repeat1, + ACTIONS(6450), 2, + anon_sym_GT, + anon_sym_RBRACK, STATE(3644), 2, sym_line_comment, sym_block_comment, - [131131] = 6, + [131205] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(6021), 1, - anon_sym_LPAREN, - STATE(4054), 1, - sym_signature, - STATE(2875), 2, - sym_parameter_list, - sym_type_parameter_list, + ACTIONS(6454), 1, + sym_identifier, + ACTIONS(6456), 1, + anon_sym_DOLLAR, + STATE(1353), 2, + sym_reference_expression, + sym_compile_time_selector_expression, STATE(3645), 2, sym_line_comment, sym_block_comment, - [131152] = 6, + [131226] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(5040), 1, - anon_sym_LBRACE, - ACTIONS(6440), 1, - anon_sym_DOLLARif, - STATE(1940), 2, - sym_compile_time_if_expression, - sym_block, + ACTIONS(6086), 1, + anon_sym_LPAREN, + STATE(1425), 1, + sym_signature, + STATE(1099), 2, + sym_parameter_list, + sym_type_parameter_list, STATE(3646), 2, sym_line_comment, sym_block_comment, - [131173] = 7, - ACTIONS(3), 1, + [131247] = 5, + ACTIONS(497), 1, anon_sym_SLASH_SLASH, - ACTIONS(5), 1, + ACTIONS(499), 1, anon_sym_SLASH_STAR, - ACTIONS(5040), 1, - anon_sym_LBRACE, - ACTIONS(6442), 1, - anon_sym_if, - STATE(1941), 1, - sym_block, - STATE(1942), 1, - sym_if_expression, + ACTIONS(6418), 1, + aux_sym_c_string_literal_token2, STATE(3647), 2, sym_line_comment, sym_block_comment, - [131196] = 7, - ACTIONS(3), 1, + ACTIONS(6416), 3, + sym_escape_sequence, + sym___dolcbr, + sym___double_quote, + [131266] = 4, + ACTIONS(497), 1, anon_sym_SLASH_SLASH, - ACTIONS(5), 1, + ACTIONS(499), 1, anon_sym_SLASH_STAR, - ACTIONS(6345), 1, - sym_identifier, - ACTIONS(6444), 1, - anon_sym_RPAREN, - STATE(3642), 1, - aux_sym_const_declaration_repeat1, - STATE(3655), 1, - sym_const_definition, STATE(3648), 2, sym_line_comment, sym_block_comment, - [131219] = 6, - ACTIONS(3), 1, + ACTIONS(4357), 4, + anon_sym_LF, + anon_sym_CR, + anon_sym_CR_LF, + anon_sym_RBRACE, + [131283] = 4, + ACTIONS(497), 1, anon_sym_SLASH_SLASH, - ACTIONS(5), 1, + ACTIONS(499), 1, anon_sym_SLASH_STAR, - ACTIONS(4705), 1, - anon_sym_LBRACE, - ACTIONS(6419), 1, - anon_sym_DOLLARif, - STATE(1700), 2, - sym_compile_time_if_expression, - sym_block, STATE(3649), 2, sym_line_comment, sym_block_comment, - [131240] = 7, + ACTIONS(1753), 4, + anon_sym_LF, + anon_sym_CR, + anon_sym_CR_LF, + anon_sym_RBRACE, + [131300] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(4705), 1, + ACTIONS(5032), 1, anon_sym_LBRACE, - ACTIONS(6446), 1, - anon_sym_if, - STATE(1701), 1, + ACTIONS(6458), 1, + anon_sym_DOLLARif, + STATE(1998), 2, + sym_compile_time_if_expression, sym_block, - STATE(1703), 1, - sym_if_expression, STATE(3650), 2, sym_line_comment, sym_block_comment, - [131263] = 7, + [131321] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(6345), 1, - sym_identifier, - ACTIONS(6377), 1, - anon_sym_RPAREN, - STATE(3642), 1, - aux_sym_const_declaration_repeat1, - STATE(3655), 1, - sym_const_definition, + ACTIONS(6027), 1, + anon_sym_LPAREN, + STATE(4204), 1, + sym_signature, + STATE(2850), 2, + sym_parameter_list, + sym_type_parameter_list, STATE(3651), 2, sym_line_comment, sym_block_comment, - [131286] = 6, + [131342] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(6084), 1, + ACTIONS(6086), 1, anon_sym_LPAREN, - STATE(1440), 1, + STATE(1437), 1, sym_signature, - STATE(1098), 2, + STATE(1099), 2, sym_parameter_list, sym_type_parameter_list, STATE(3652), 2, sym_line_comment, sym_block_comment, - [131307] = 6, - ACTIONS(3), 1, + [131363] = 4, + ACTIONS(497), 1, anon_sym_SLASH_SLASH, - ACTIONS(5), 1, + ACTIONS(499), 1, anon_sym_SLASH_STAR, - ACTIONS(6084), 1, - anon_sym_LPAREN, - STATE(1433), 1, - sym_signature, - STATE(1098), 2, - sym_parameter_list, - sym_type_parameter_list, STATE(3653), 2, sym_line_comment, sym_block_comment, - [131328] = 5, + ACTIONS(4337), 4, + anon_sym_LF, + anon_sym_CR, + anon_sym_CR_LF, + anon_sym_RBRACE, + [131380] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(6448), 1, - anon_sym_COMMA, - ACTIONS(6451), 2, - anon_sym_RPAREN, - anon_sym_RBRACK, - STATE(3654), 3, + ACTIONS(5056), 1, + anon_sym_LBRACE, + ACTIONS(6460), 1, + anon_sym_DOLLARif, + STATE(2149), 2, + sym_compile_time_if_expression, + sym_block, + STATE(3654), 2, sym_line_comment, sym_block_comment, - aux_sym_type_parameters_repeat1, - [131347] = 4, + [131401] = 4, ACTIONS(497), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, @@ -297816,240 +298008,239 @@ static const uint16_t ts_small_parse_table[] = { STATE(3655), 2, sym_line_comment, sym_block_comment, - ACTIONS(6453), 4, + ACTIONS(4190), 4, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, - anon_sym_SEMI, - [131364] = 7, + anon_sym_RBRACE, + [131418] = 7, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(6345), 1, - sym_identifier, - ACTIONS(6455), 1, - anon_sym_RPAREN, - STATE(3642), 1, - aux_sym_const_declaration_repeat1, - STATE(3655), 1, - sym_const_definition, + ACTIONS(6420), 1, + anon_sym_as, + ACTIONS(6422), 1, + anon_sym_LBRACE, + STATE(1504), 1, + sym__enum_body, + STATE(4186), 1, + sym_enum_backed_type, STATE(3656), 2, sym_line_comment, sym_block_comment, - [131387] = 6, + [131441] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(6021), 1, - anon_sym_LPAREN, - STATE(4079), 1, - sym_signature, - STATE(2875), 2, - sym_parameter_list, - sym_type_parameter_list, + ACTIONS(5056), 1, + anon_sym_LBRACE, + ACTIONS(6460), 1, + anon_sym_DOLLARif, + STATE(2163), 2, + sym_compile_time_if_expression, + sym_block, STATE(3657), 2, sym_line_comment, sym_block_comment, - [131408] = 6, + [131462] = 7, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(6457), 1, - sym_identifier, - ACTIONS(6460), 1, - anon_sym_RPAREN, - STATE(3640), 1, - sym_global_var_definition, - STATE(3658), 3, + ACTIONS(5056), 1, + anon_sym_LBRACE, + ACTIONS(6462), 1, + anon_sym_if, + STATE(2177), 1, + sym_block, + STATE(2181), 1, + sym_if_expression, + STATE(3658), 2, sym_line_comment, sym_block_comment, - aux_sym_global_var_declaration_repeat1, - [131429] = 6, + [131485] = 7, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(6462), 1, - anon_sym_LPAREN, - STATE(1932), 1, - sym_signature, - STATE(1216), 2, - sym_parameter_list, - sym_type_parameter_list, + ACTIONS(6464), 1, + anon_sym_DOT, + ACTIONS(6466), 1, + anon_sym_RBRACE, + ACTIONS(6468), 1, + sym_int_literal, + ACTIONS(6470), 1, + aux_sym_format_specifier_token1, STATE(3659), 2, sym_line_comment, sym_block_comment, - [131450] = 6, + [131508] = 7, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(6084), 1, - anon_sym_LPAREN, - STATE(1428), 1, - sym_signature, - STATE(1098), 2, - sym_parameter_list, - sym_type_parameter_list, + ACTIONS(4703), 1, + anon_sym_LBRACE, + ACTIONS(6472), 1, + anon_sym_if, + STATE(1686), 1, + sym_if_expression, + STATE(1695), 1, + sym_block, STATE(3660), 2, sym_line_comment, sym_block_comment, - [131471] = 6, + [131531] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(6021), 1, - anon_sym_LPAREN, - STATE(4017), 1, - sym_signature, - STATE(2875), 2, - sym_parameter_list, - sym_type_parameter_list, - STATE(3661), 2, + ACTIONS(6474), 1, + anon_sym_COMMA, + ACTIONS(6477), 2, + anon_sym_GT, + anon_sym_RBRACK, + STATE(3661), 3, sym_line_comment, sym_block_comment, - [131492] = 7, + aux_sym_generic_parameters_repeat1, + [131550] = 7, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(5058), 1, - anon_sym_LBRACE, - ACTIONS(6464), 1, - anon_sym_if, - STATE(2398), 1, - sym_block, - STATE(2400), 1, - sym_if_expression, + ACTIONS(6076), 1, + anon_sym_mut, + ACTIONS(6078), 1, + anon_sym_shared, + ACTIONS(6479), 1, + sym_identifier, + STATE(4452), 1, + sym_mutability_modifiers, STATE(3662), 2, sym_line_comment, sym_block_comment, - [131515] = 6, + [131573] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(5058), 1, - anon_sym_LBRACE, - ACTIONS(6466), 1, - anon_sym_DOLLARif, - STATE(2390), 2, - sym_compile_time_if_expression, - sym_block, + ACTIONS(6481), 1, + anon_sym_LPAREN, + STATE(2233), 1, + sym_signature, + STATE(1398), 2, + sym_parameter_list, + sym_type_parameter_list, STATE(3663), 2, sym_line_comment, sym_block_comment, - [131536] = 6, + [131594] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(5050), 1, - anon_sym_LBRACE, - ACTIONS(6468), 1, - anon_sym_DOLLARif, - STATE(2689), 2, - sym_compile_time_if_expression, - sym_block, + ACTIONS(6483), 1, + anon_sym_EQ, + STATE(4413), 1, + sym_generic_parameters, + ACTIONS(4918), 2, + anon_sym_LBRACK, + anon_sym_LT2, STATE(3664), 2, sym_line_comment, sym_block_comment, - [131557] = 6, + [131615] = 7, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(6470), 1, + ACTIONS(6402), 1, sym_identifier, - STATE(3845), 1, - sym_generic_parameter, - ACTIONS(6472), 2, - anon_sym_GT, - anon_sym_RBRACK, + ACTIONS(6485), 1, + anon_sym_RPAREN, + STATE(3612), 1, + aux_sym_const_declaration_repeat1, + STATE(3729), 1, + sym_const_definition, STATE(3665), 2, sym_line_comment, sym_block_comment, - [131578] = 6, - ACTIONS(3), 1, + [131638] = 6, + ACTIONS(497), 1, anon_sym_SLASH_SLASH, - ACTIONS(5), 1, + ACTIONS(499), 1, anon_sym_SLASH_STAR, - ACTIONS(5050), 1, - anon_sym_LBRACE, - ACTIONS(6468), 1, - anon_sym_DOLLARif, - STATE(2684), 2, - sym_compile_time_if_expression, - sym_block, + ACTIONS(6489), 1, + anon_sym_STAR_SLASH, + STATE(3690), 1, + aux_sym_block_comment_repeat1, + ACTIONS(6487), 2, + aux_sym_block_comment_token1, + aux_sym_block_comment_token2, STATE(3666), 2, sym_line_comment, sym_block_comment, - [131599] = 7, - ACTIONS(3), 1, + [131659] = 5, + ACTIONS(497), 1, anon_sym_SLASH_SLASH, - ACTIONS(5), 1, + ACTIONS(499), 1, anon_sym_SLASH_STAR, - ACTIONS(5050), 1, - anon_sym_LBRACE, - ACTIONS(6474), 1, - anon_sym_if, - STATE(2682), 1, - sym_if_expression, - STATE(2683), 1, - sym_block, + ACTIONS(6493), 1, + aux_sym_c_string_literal_token1, STATE(3667), 2, sym_line_comment, sym_block_comment, - [131622] = 6, - ACTIONS(3), 1, + ACTIONS(6491), 3, + sym_escape_sequence, + sym___dolcbr, + sym___single_quote, + [131678] = 4, + ACTIONS(497), 1, anon_sym_SLASH_SLASH, - ACTIONS(5), 1, + ACTIONS(499), 1, anon_sym_SLASH_STAR, - ACTIONS(6084), 1, - anon_sym_LPAREN, - STATE(1435), 1, - sym_signature, - STATE(1098), 2, - sym_parameter_list, - sym_type_parameter_list, STATE(3668), 2, sym_line_comment, sym_block_comment, - [131643] = 6, + ACTIONS(4220), 4, + anon_sym_LF, + anon_sym_CR, + anon_sym_CR_LF, + anon_sym_RBRACE, + [131695] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(5058), 1, - anon_sym_LBRACE, - ACTIONS(6466), 1, - anon_sym_DOLLARif, - STATE(2378), 2, - sym_compile_time_if_expression, - sym_block, + ACTIONS(6495), 1, + anon_sym_LPAREN, + STATE(2356), 1, + sym_signature, + STATE(1403), 2, + sym_parameter_list, + sym_type_parameter_list, STATE(3669), 2, sym_line_comment, sym_block_comment, - [131664] = 6, + [131716] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(6476), 1, - anon_sym_COMMA, - STATE(3698), 1, - aux_sym_generic_parameters_repeat1, - ACTIONS(6472), 2, - anon_sym_GT, - anon_sym_RBRACK, + ACTIONS(6027), 1, + anon_sym_LPAREN, + STATE(4104), 1, + sym_signature, + STATE(2850), 2, + sym_parameter_list, + sym_type_parameter_list, STATE(3670), 2, sym_line_comment, sym_block_comment, - [131685] = 4, + [131737] = 4, ACTIONS(497), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, @@ -298057,259 +298248,254 @@ static const uint16_t ts_small_parse_table[] = { STATE(3671), 2, sym_line_comment, sym_block_comment, - ACTIONS(6214), 4, + ACTIONS(4214), 4, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, - anon_sym_SEMI, - [131702] = 5, - ACTIONS(497), 1, - anon_sym_SLASH_SLASH, - ACTIONS(499), 1, - anon_sym_SLASH_STAR, - ACTIONS(6481), 1, - anon_sym_STAR_SLASH, - ACTIONS(6478), 2, - aux_sym_block_comment_token1, - aux_sym_block_comment_token2, - STATE(3672), 3, - sym_line_comment, - sym_block_comment, - aux_sym_block_comment_repeat1, - [131721] = 4, + anon_sym_RBRACE, + [131754] = 4, ACTIONS(497), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, anon_sym_SLASH_STAR, - STATE(3673), 2, + STATE(3672), 2, sym_line_comment, sym_block_comment, - ACTIONS(4311), 4, + ACTIONS(4230), 4, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, anon_sym_RBRACE, - [131738] = 6, + [131771] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(6483), 1, - sym_identifier, - ACTIONS(6485), 1, - anon_sym_DOLLAR, - STATE(1081), 2, - sym_reference_expression, - sym_compile_time_selector_expression, - STATE(3674), 2, + ACTIONS(6027), 1, + anon_sym_LPAREN, + STATE(4077), 1, + sym_signature, + STATE(2850), 2, + sym_parameter_list, + sym_type_parameter_list, + STATE(3673), 2, sym_line_comment, sym_block_comment, - [131759] = 6, + [131792] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(6021), 1, + ACTIONS(6388), 1, anon_sym_LPAREN, - STATE(4116), 1, + STATE(3356), 1, sym_signature, - STATE(2875), 2, + STATE(2429), 2, sym_parameter_list, sym_type_parameter_list, - STATE(3675), 2, + STATE(3674), 2, sym_line_comment, sym_block_comment, - [131780] = 6, + [131813] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(6084), 1, + ACTIONS(6497), 1, anon_sym_LPAREN, - STATE(1436), 1, + STATE(2724), 1, sym_signature, - STATE(1098), 2, + STATE(1575), 2, sym_parameter_list, sym_type_parameter_list, - STATE(3676), 2, + STATE(3675), 2, sym_line_comment, sym_block_comment, - [131801] = 6, + [131834] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(6084), 1, + ACTIONS(6086), 1, anon_sym_LPAREN, - STATE(1442), 1, + STATE(1469), 1, sym_signature, - STATE(1098), 2, + STATE(1099), 2, sym_parameter_list, sym_type_parameter_list, - STATE(3677), 2, + STATE(3676), 2, sym_line_comment, sym_block_comment, - [131822] = 4, + [131855] = 4, ACTIONS(497), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, anon_sym_SLASH_STAR, - STATE(3678), 2, + STATE(3677), 2, sym_line_comment, sym_block_comment, - ACTIONS(4259), 4, + ACTIONS(6499), 4, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, - anon_sym_RBRACE, - [131839] = 4, - ACTIONS(497), 1, + anon_sym_SEMI, + [131872] = 6, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, - ACTIONS(499), 1, + ACTIONS(5), 1, anon_sym_SLASH_STAR, - STATE(3679), 2, + ACTIONS(5052), 1, + anon_sym_LBRACE, + ACTIONS(6501), 1, + anon_sym_DOLLARif, + STATE(495), 2, + sym_compile_time_if_expression, + sym_block, + STATE(3678), 2, sym_line_comment, sym_block_comment, - ACTIONS(4263), 4, - anon_sym_LF, - anon_sym_CR, - anon_sym_CR_LF, - anon_sym_RBRACE, - [131856] = 6, + [131893] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(6487), 1, + ACTIONS(6027), 1, anon_sym_LPAREN, - STATE(2359), 1, + STATE(4003), 1, sym_signature, - STATE(1403), 2, + STATE(2850), 2, sym_parameter_list, sym_type_parameter_list, + STATE(3679), 2, + sym_line_comment, + sym_block_comment, + [131914] = 5, + ACTIONS(497), 1, + anon_sym_SLASH_SLASH, + ACTIONS(499), 1, + anon_sym_SLASH_STAR, + ACTIONS(6493), 1, + aux_sym_c_string_literal_token2, STATE(3680), 2, sym_line_comment, sym_block_comment, - [131877] = 6, - ACTIONS(3), 1, + ACTIONS(6491), 3, + sym_escape_sequence, + sym___dolcbr, + sym___double_quote, + [131933] = 4, + ACTIONS(497), 1, anon_sym_SLASH_SLASH, - ACTIONS(5), 1, + ACTIONS(499), 1, anon_sym_SLASH_STAR, - ACTIONS(6021), 1, - anon_sym_LPAREN, - STATE(4183), 1, - sym_signature, - STATE(2875), 2, - sym_parameter_list, - sym_type_parameter_list, STATE(3681), 2, sym_line_comment, sym_block_comment, - [131898] = 5, + ACTIONS(4270), 4, + anon_sym_LF, + anon_sym_CR, + anon_sym_CR_LF, + anon_sym_SEMI, + [131950] = 5, ACTIONS(497), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, anon_sym_SLASH_STAR, - ACTIONS(6365), 1, - aux_sym_c_string_literal_token1, + ACTIONS(6505), 1, + aux_sym_c_string_literal_token2, STATE(3682), 2, sym_line_comment, sym_block_comment, - ACTIONS(6363), 3, + ACTIONS(6503), 3, sym_escape_sequence, sym___dolcbr, - sym___single_quote, - [131917] = 6, + sym___double_quote, + [131969] = 7, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(6084), 1, - anon_sym_LPAREN, - STATE(1462), 1, - sym_signature, - STATE(1098), 2, - sym_parameter_list, - sym_type_parameter_list, + ACTIONS(5068), 1, + anon_sym_LBRACE, + ACTIONS(6507), 1, + anon_sym_if, + STATE(2402), 1, + sym_if_expression, + STATE(2403), 1, + sym_block, STATE(3683), 2, sym_line_comment, sym_block_comment, - [131938] = 6, - ACTIONS(3), 1, + [131992] = 4, + ACTIONS(497), 1, anon_sym_SLASH_SLASH, - ACTIONS(5), 1, + ACTIONS(499), 1, anon_sym_SLASH_STAR, - ACTIONS(6021), 1, - anon_sym_LPAREN, - STATE(4278), 1, - sym_signature, - STATE(2875), 2, - sym_parameter_list, - sym_type_parameter_list, STATE(3684), 2, sym_line_comment, sym_block_comment, - [131959] = 6, + ACTIONS(4274), 4, + anon_sym_LF, + anon_sym_CR, + anon_sym_CR_LF, + anon_sym_SEMI, + [132009] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(6489), 1, + ACTIONS(6027), 1, anon_sym_LPAREN, - STATE(1228), 1, + STATE(4082), 1, sym_signature, - STATE(947), 2, + STATE(2850), 2, sym_parameter_list, sym_type_parameter_list, STATE(3685), 2, sym_line_comment, sym_block_comment, - [131980] = 6, + [132030] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(6021), 1, - anon_sym_LPAREN, - STATE(4277), 1, - sym_signature, - STATE(2875), 2, - sym_parameter_list, - sym_type_parameter_list, - STATE(3686), 2, + ACTIONS(6509), 1, + sym_identifier, + ACTIONS(6512), 1, + anon_sym_RPAREN, + STATE(3744), 1, + sym_global_var_definition, + STATE(3686), 3, sym_line_comment, sym_block_comment, - [132001] = 6, - ACTIONS(3), 1, + aux_sym_global_var_declaration_repeat1, + [132051] = 4, + ACTIONS(497), 1, anon_sym_SLASH_SLASH, - ACTIONS(5), 1, + ACTIONS(499), 1, anon_sym_SLASH_STAR, - ACTIONS(5036), 1, - anon_sym_LBRACE, - ACTIONS(6491), 1, - anon_sym_DOLLARif, - STATE(348), 2, - sym_compile_time_if_expression, - sym_block, STATE(3687), 2, sym_line_comment, sym_block_comment, - [132022] = 6, - ACTIONS(3), 1, + ACTIONS(6514), 4, + anon_sym_LF, + anon_sym_CR, + anon_sym_CR_LF, + anon_sym_SEMI, + [132068] = 4, + ACTIONS(497), 1, anon_sym_SLASH_SLASH, - ACTIONS(5), 1, + ACTIONS(499), 1, anon_sym_SLASH_STAR, - ACTIONS(6021), 1, - anon_sym_LPAREN, - STATE(4196), 1, - sym_signature, - STATE(2875), 2, - sym_parameter_list, - sym_type_parameter_list, STATE(3688), 2, sym_line_comment, sym_block_comment, - [132043] = 4, + ACTIONS(4309), 4, + anon_sym_LF, + anon_sym_CR, + anon_sym_CR_LF, + anon_sym_RBRACE, + [132085] = 4, ACTIONS(497), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, @@ -298317,820 +298503,823 @@ static const uint16_t ts_small_parse_table[] = { STATE(3689), 2, sym_line_comment, sym_block_comment, - ACTIONS(4267), 4, + ACTIONS(6516), 4, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, - anon_sym_RBRACE, - [132060] = 6, + anon_sym_SEMI, + [132102] = 5, + ACTIONS(497), 1, + anon_sym_SLASH_SLASH, + ACTIONS(499), 1, + anon_sym_SLASH_STAR, + ACTIONS(6521), 1, + anon_sym_STAR_SLASH, + ACTIONS(6518), 2, + aux_sym_block_comment_token1, + aux_sym_block_comment_token2, + STATE(3690), 3, + sym_line_comment, + sym_block_comment, + aux_sym_block_comment_repeat1, + [132121] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(6021), 1, + ACTIONS(6523), 1, + sym_identifier, + ACTIONS(6525), 1, + anon_sym_DOLLAR, + STATE(2531), 2, + sym_reference_expression, + sym_compile_time_selector_expression, + STATE(3691), 2, + sym_line_comment, + sym_block_comment, + [132142] = 6, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(6527), 1, anon_sym_LPAREN, - STATE(4141), 1, + STATE(1639), 1, sym_signature, - STATE(2875), 2, + STATE(1104), 2, sym_parameter_list, sym_type_parameter_list, - STATE(3690), 2, + STATE(3692), 2, sym_line_comment, sym_block_comment, - [132081] = 6, + [132163] = 7, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(6470), 1, + ACTIONS(6402), 1, sym_identifier, - STATE(3845), 1, - sym_generic_parameter, - ACTIONS(6493), 2, - anon_sym_GT, - anon_sym_RBRACK, - STATE(3691), 2, + ACTIONS(6529), 1, + anon_sym_RPAREN, + STATE(3729), 1, + sym_const_definition, + STATE(3730), 1, + aux_sym_const_declaration_repeat1, + STATE(3693), 2, + sym_line_comment, + sym_block_comment, + [132186] = 4, + ACTIONS(497), 1, + anon_sym_SLASH_SLASH, + ACTIONS(499), 1, + anon_sym_SLASH_STAR, + STATE(3694), 2, sym_line_comment, sym_block_comment, - [132102] = 7, + ACTIONS(4333), 4, + anon_sym_LF, + anon_sym_CR, + anon_sym_CR_LF, + anon_sym_RBRACE, + [132203] = 7, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(5042), 1, + ACTIONS(5040), 1, anon_sym_LBRACE, - ACTIONS(6495), 1, + ACTIONS(6531), 1, anon_sym_if, - STATE(2852), 1, - sym_block, STATE(2854), 1, + sym_block, + STATE(2855), 1, sym_if_expression, - STATE(3692), 2, + STATE(3695), 2, sym_line_comment, sym_block_comment, - [132125] = 6, + [132226] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(5042), 1, + ACTIONS(5040), 1, anon_sym_LBRACE, - ACTIONS(6497), 1, + ACTIONS(6533), 1, anon_sym_DOLLARif, - STATE(2857), 2, + STATE(2853), 2, sym_compile_time_if_expression, sym_block, - STATE(3693), 2, + STATE(3696), 2, sym_line_comment, sym_block_comment, - [132146] = 4, + [132247] = 4, ACTIONS(497), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, anon_sym_SLASH_STAR, - STATE(3694), 2, + STATE(3697), 2, sym_line_comment, sym_block_comment, - ACTIONS(4275), 4, + ACTIONS(6282), 4, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, - anon_sym_RBRACE, - [132163] = 6, + anon_sym_SEMI, + [132264] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(6499), 1, + ACTIONS(6027), 1, anon_sym_LPAREN, - STATE(3336), 1, + STATE(4291), 1, sym_signature, - STATE(2418), 2, + STATE(2850), 2, sym_parameter_list, sym_type_parameter_list, - STATE(3695), 2, + STATE(3698), 2, sym_line_comment, sym_block_comment, - [132184] = 6, + [132285] = 7, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(6501), 1, + ACTIONS(6402), 1, sym_identifier, - ACTIONS(6503), 1, - anon_sym_DOLLAR, - STATE(457), 2, - sym_reference_expression, - sym_compile_time_selector_expression, - STATE(3696), 2, - sym_line_comment, - sym_block_comment, - [132205] = 6, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_STAR, - ACTIONS(6021), 1, - anon_sym_LPAREN, - STATE(4031), 1, - sym_signature, - STATE(2875), 2, - sym_parameter_list, - sym_type_parameter_list, - STATE(3697), 2, + ACTIONS(6535), 1, + anon_sym_RPAREN, + STATE(3583), 1, + aux_sym_const_declaration_repeat1, + STATE(3729), 1, + sym_const_definition, + STATE(3699), 2, sym_line_comment, sym_block_comment, - [132226] = 5, + [132308] = 7, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(6505), 1, - anon_sym_COMMA, - ACTIONS(6508), 2, - anon_sym_GT, - anon_sym_RBRACK, - STATE(3698), 3, + ACTIONS(5052), 1, + anon_sym_LBRACE, + ACTIONS(6537), 1, + anon_sym_if, + STATE(380), 1, + sym_if_expression, + STATE(381), 1, + sym_block, + STATE(3700), 2, sym_line_comment, sym_block_comment, - aux_sym_generic_parameters_repeat1, - [132245] = 6, + [132331] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(6021), 1, + ACTIONS(6481), 1, anon_sym_LPAREN, - STATE(4237), 1, + STATE(2554), 1, sym_signature, - STATE(2875), 2, + STATE(1455), 2, sym_parameter_list, sym_type_parameter_list, - STATE(3699), 2, + STATE(3701), 2, + sym_line_comment, + sym_block_comment, + [132352] = 4, + ACTIONS(497), 1, + anon_sym_SLASH_SLASH, + ACTIONS(499), 1, + anon_sym_SLASH_STAR, + STATE(3702), 2, sym_line_comment, sym_block_comment, - [132266] = 6, + ACTIONS(4329), 4, + anon_sym_LF, + anon_sym_CR, + anon_sym_CR_LF, + anon_sym_RBRACE, + [132369] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(5042), 1, + ACTIONS(5040), 1, anon_sym_LBRACE, - ACTIONS(6497), 1, + ACTIONS(6533), 1, anon_sym_DOLLARif, - STATE(2838), 2, + STATE(2846), 2, sym_compile_time_if_expression, sym_block, - STATE(3700), 2, + STATE(3703), 2, sym_line_comment, sym_block_comment, - [132287] = 6, + [132390] = 7, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(5056), 1, + ACTIONS(5050), 1, anon_sym_LBRACE, - ACTIONS(6510), 1, - anon_sym_DOLLARif, - STATE(2170), 2, - sym_compile_time_if_expression, + ACTIONS(6539), 1, + anon_sym_if, + STATE(2484), 1, sym_block, - STATE(3701), 2, + STATE(2485), 1, + sym_if_expression, + STATE(3704), 2, sym_line_comment, sym_block_comment, - [132308] = 6, + [132413] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(5056), 1, + ACTIONS(5034), 1, anon_sym_LBRACE, - ACTIONS(6510), 1, + ACTIONS(6541), 1, anon_sym_DOLLARif, - STATE(2175), 2, + STATE(1082), 2, sym_compile_time_if_expression, sym_block, - STATE(3702), 2, + STATE(3705), 2, sym_line_comment, sym_block_comment, - [132329] = 6, + [132434] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(6021), 1, - anon_sym_LPAREN, - STATE(4193), 1, - sym_signature, - STATE(2875), 2, - sym_parameter_list, - sym_type_parameter_list, - STATE(3703), 2, + ACTIONS(5050), 1, + anon_sym_LBRACE, + ACTIONS(6543), 1, + anon_sym_DOLLARif, + STATE(2482), 2, + sym_compile_time_if_expression, + sym_block, + STATE(3706), 2, sym_line_comment, sym_block_comment, - [132350] = 6, + [132455] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(6512), 1, + ACTIONS(6545), 1, sym_identifier, - ACTIONS(6514), 1, + ACTIONS(6547), 1, anon_sym_DOLLAR, - STATE(2214), 2, + STATE(2220), 2, sym_reference_expression, sym_compile_time_selector_expression, - STATE(3704), 2, + STATE(3707), 2, sym_line_comment, sym_block_comment, - [132371] = 7, + [132476] = 7, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(5056), 1, - anon_sym_LBRACE, - ACTIONS(6516), 1, - anon_sym_if, - STATE(2145), 1, - sym_if_expression, - STATE(2177), 1, - sym_block, - STATE(3705), 2, + ACTIONS(6432), 1, + sym_identifier, + ACTIONS(6549), 1, + anon_sym_RPAREN, + STATE(3744), 1, + sym_global_var_definition, + STATE(3746), 1, + aux_sym_global_var_declaration_repeat1, + STATE(3708), 2, sym_line_comment, sym_block_comment, - [132394] = 5, - ACTIONS(497), 1, + [132499] = 6, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, - ACTIONS(499), 1, + ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(6520), 1, - aux_sym_c_string_literal_token2, - STATE(3706), 2, + ACTIONS(5050), 1, + anon_sym_LBRACE, + ACTIONS(6543), 1, + anon_sym_DOLLARif, + STATE(2476), 2, + sym_compile_time_if_expression, + sym_block, + STATE(3709), 2, sym_line_comment, sym_block_comment, - ACTIONS(6518), 3, - sym_escape_sequence, - sym___dolcbr, - sym___double_quote, - [132413] = 5, - ACTIONS(497), 1, + [132520] = 6, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, - ACTIONS(499), 1, + ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(6524), 1, - aux_sym_c_string_literal_token1, - STATE(3707), 2, + ACTIONS(6086), 1, + anon_sym_LPAREN, + STATE(1443), 1, + sym_signature, + STATE(1099), 2, + sym_parameter_list, + sym_type_parameter_list, + STATE(3710), 2, sym_line_comment, sym_block_comment, - ACTIONS(6522), 3, - sym_escape_sequence, - sym___dolcbr, - sym___single_quote, - [132432] = 5, + [132541] = 5, ACTIONS(497), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, anon_sym_SLASH_STAR, - ACTIONS(6520), 1, + ACTIONS(6505), 1, aux_sym_c_string_literal_token1, - STATE(3708), 2, + STATE(3711), 2, sym_line_comment, sym_block_comment, - ACTIONS(6518), 3, + ACTIONS(6503), 3, sym_escape_sequence, sym___dolcbr, sym___single_quote, - [132451] = 6, - ACTIONS(497), 1, - anon_sym_SLASH_SLASH, - ACTIONS(499), 1, - anon_sym_SLASH_STAR, - ACTIONS(6528), 1, - anon_sym_STAR_SLASH, - STATE(3745), 1, - aux_sym_block_comment_repeat1, - ACTIONS(6526), 2, - aux_sym_block_comment_token1, - aux_sym_block_comment_token2, - STATE(3709), 2, - sym_line_comment, - sym_block_comment, - [132472] = 6, + [132560] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(6021), 1, + ACTIONS(6086), 1, anon_sym_LPAREN, - STATE(4030), 1, + STATE(1441), 1, sym_signature, - STATE(2875), 2, + STATE(1099), 2, sym_parameter_list, sym_type_parameter_list, - STATE(3710), 2, - sym_line_comment, - sym_block_comment, - [132493] = 6, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_STAR, - ACTIONS(6530), 1, - sym_identifier, - ACTIONS(6533), 1, - anon_sym_RBRACE, - STATE(3555), 1, - sym_enum_field_definition, - STATE(3711), 3, + STATE(3712), 2, sym_line_comment, sym_block_comment, - aux_sym__enum_body_repeat1, - [132514] = 7, + [132581] = 7, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(6353), 1, + ACTIONS(6432), 1, sym_identifier, - ACTIONS(6535), 1, - anon_sym_RBRACE, - STATE(3555), 1, - sym_enum_field_definition, - STATE(3711), 1, - aux_sym__enum_body_repeat1, - STATE(3712), 2, - sym_line_comment, - sym_block_comment, - [132537] = 5, - ACTIONS(497), 1, - anon_sym_SLASH_SLASH, - ACTIONS(499), 1, - anon_sym_SLASH_STAR, - ACTIONS(6539), 1, - aux_sym_c_string_literal_token2, + ACTIONS(6551), 1, + anon_sym_RPAREN, + STATE(3686), 1, + aux_sym_global_var_declaration_repeat1, + STATE(3744), 1, + sym_global_var_definition, STATE(3713), 2, sym_line_comment, sym_block_comment, - ACTIONS(6537), 3, - sym_escape_sequence, - sym___dolcbr, - sym___double_quote, - [132556] = 6, + [132604] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(6021), 1, + ACTIONS(6027), 1, anon_sym_LPAREN, - STATE(4053), 1, + STATE(4140), 1, sym_signature, - STATE(2875), 2, + STATE(2850), 2, sym_parameter_list, sym_type_parameter_list, STATE(3714), 2, sym_line_comment, sym_block_comment, - [132577] = 6, + [132625] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(6541), 1, - sym_identifier, - ACTIONS(6543), 1, - anon_sym_DOLLAR, - STATE(1232), 2, - sym_reference_expression, - sym_compile_time_selector_expression, + ACTIONS(6027), 1, + anon_sym_LPAREN, + STATE(2356), 1, + sym_signature, + STATE(2850), 2, + sym_parameter_list, + sym_type_parameter_list, STATE(3715), 2, sym_line_comment, sym_block_comment, - [132598] = 6, + [132646] = 7, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(5024), 1, - anon_sym_LBRACE, - ACTIONS(6545), 1, - anon_sym_DOLLARif, - STATE(2092), 2, - sym_compile_time_if_expression, - sym_block, + ACTIONS(6553), 1, + sym_identifier, + ACTIONS(6555), 1, + anon_sym_RBRACE, + STATE(3563), 1, + sym_enum_field_definition, + STATE(3592), 1, + aux_sym__enum_body_repeat1, STATE(3716), 2, sym_line_comment, sym_block_comment, - [132619] = 6, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_STAR, - ACTIONS(6021), 1, - anon_sym_LPAREN, - STATE(4304), 1, - sym_signature, - STATE(2875), 2, - sym_parameter_list, - sym_type_parameter_list, - STATE(3717), 2, - sym_line_comment, - sym_block_comment, - [132640] = 6, + [132669] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, - anon_sym_SLASH_STAR, - ACTIONS(5024), 1, - anon_sym_LBRACE, - ACTIONS(6545), 1, - anon_sym_DOLLARif, - STATE(2081), 2, - sym_compile_time_if_expression, - sym_block, - STATE(3718), 2, + anon_sym_SLASH_STAR, + ACTIONS(6557), 1, + sym_identifier, + ACTIONS(6559), 1, + anon_sym_DOLLAR, + STATE(996), 2, + sym_reference_expression, + sym_compile_time_selector_expression, + STATE(3717), 2, sym_line_comment, sym_block_comment, - [132661] = 7, + [132690] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(5024), 1, - anon_sym_LBRACE, - ACTIONS(6547), 1, - anon_sym_if, - STATE(2054), 1, - sym_if_expression, - STATE(2057), 1, - sym_block, - STATE(3719), 2, + ACTIONS(6561), 1, + anon_sym_LPAREN, + STATE(1351), 1, + sym_signature, + STATE(991), 2, + sym_parameter_list, + sym_type_parameter_list, + STATE(3718), 2, sym_line_comment, sym_block_comment, - [132684] = 6, + [132711] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(6021), 1, + ACTIONS(6027), 1, anon_sym_LPAREN, - STATE(4267), 1, + STATE(4247), 1, sym_signature, - STATE(2875), 2, + STATE(2850), 2, sym_parameter_list, sym_type_parameter_list, - STATE(3720), 2, + STATE(3719), 2, sym_line_comment, sym_block_comment, - [132705] = 5, - ACTIONS(497), 1, + [132732] = 6, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, - ACTIONS(499), 1, + ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(6551), 1, - aux_sym_c_string_literal_token1, - STATE(3721), 2, + ACTIONS(6563), 1, + sym_identifier, + ACTIONS(6565), 1, + anon_sym_DOLLAR, + STATE(2664), 2, + sym_reference_expression, + sym_compile_time_selector_expression, + STATE(3720), 2, sym_line_comment, sym_block_comment, - ACTIONS(6549), 3, - sym_escape_sequence, - sym___dolcbr, - sym___single_quote, - [132724] = 6, + [132753] = 7, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(6021), 1, - anon_sym_LPAREN, - STATE(4095), 1, - sym_signature, - STATE(2875), 2, - sym_parameter_list, - sym_type_parameter_list, - STATE(3722), 2, + ACTIONS(6420), 1, + anon_sym_as, + ACTIONS(6422), 1, + anon_sym_LBRACE, + STATE(1500), 1, + sym__enum_body, + STATE(4205), 1, + sym_enum_backed_type, + STATE(3721), 2, sym_line_comment, sym_block_comment, - [132745] = 4, + [132776] = 4, ACTIONS(497), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, anon_sym_SLASH_STAR, - STATE(3723), 2, + STATE(3722), 2, sym_line_comment, sym_block_comment, - ACTIONS(4227), 4, + ACTIONS(4325), 4, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, - anon_sym_SEMI, - [132762] = 6, + anon_sym_RBRACE, + [132793] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(6021), 1, + ACTIONS(5062), 1, + anon_sym_LBRACE, + ACTIONS(6567), 1, + anon_sym_DOLLARif, + STATE(1782), 2, + sym_compile_time_if_expression, + sym_block, + STATE(3723), 2, + sym_line_comment, + sym_block_comment, + [132814] = 6, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(6086), 1, anon_sym_LPAREN, - STATE(4034), 1, + STATE(1417), 1, sym_signature, - STATE(2875), 2, + STATE(1099), 2, sym_parameter_list, sym_type_parameter_list, STATE(3724), 2, sym_line_comment, sym_block_comment, - [132783] = 6, + [132835] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(6553), 1, - anon_sym_LPAREN, - STATE(1626), 1, - sym_signature, - STATE(1104), 2, - sym_parameter_list, - sym_type_parameter_list, + ACTIONS(5068), 1, + anon_sym_LBRACE, + ACTIONS(6569), 1, + anon_sym_DOLLARif, + STATE(2410), 2, + sym_compile_time_if_expression, + sym_block, STATE(3725), 2, sym_line_comment, sym_block_comment, - [132804] = 6, + [132856] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(6407), 1, - anon_sym_LPAREN, - STATE(2470), 1, - sym_signature, - STATE(1422), 2, - sym_parameter_list, - sym_type_parameter_list, + ACTIONS(5068), 1, + anon_sym_LBRACE, + ACTIONS(6569), 1, + anon_sym_DOLLARif, + STATE(2404), 2, + sym_compile_time_if_expression, + sym_block, STATE(3726), 2, sym_line_comment, sym_block_comment, - [132825] = 6, + [132877] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(6499), 1, - anon_sym_LPAREN, - STATE(3345), 1, - sym_signature, - STATE(2418), 2, - sym_parameter_list, - sym_type_parameter_list, + ACTIONS(6571), 1, + sym_identifier, + ACTIONS(6573), 1, + anon_sym_DOLLAR, + STATE(2114), 2, + sym_reference_expression, + sym_compile_time_selector_expression, STATE(3727), 2, sym_line_comment, sym_block_comment, - [132846] = 6, + [132898] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(6084), 1, - anon_sym_LPAREN, - STATE(1453), 1, - sym_signature, - STATE(1098), 2, - sym_parameter_list, - sym_type_parameter_list, + ACTIONS(5062), 1, + anon_sym_LBRACE, + ACTIONS(6567), 1, + anon_sym_DOLLARif, + STATE(1807), 2, + sym_compile_time_if_expression, + sym_block, STATE(3728), 2, sym_line_comment, sym_block_comment, - [132867] = 6, - ACTIONS(3), 1, + [132919] = 4, + ACTIONS(497), 1, anon_sym_SLASH_SLASH, - ACTIONS(5), 1, + ACTIONS(499), 1, anon_sym_SLASH_STAR, - ACTIONS(6021), 1, - anon_sym_LPAREN, - STATE(2359), 1, - sym_signature, - STATE(2875), 2, - sym_parameter_list, - sym_type_parameter_list, STATE(3729), 2, sym_line_comment, sym_block_comment, - [132888] = 7, + ACTIONS(6575), 4, + anon_sym_LF, + anon_sym_CR, + anon_sym_CR_LF, + anon_sym_SEMI, + [132936] = 7, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(6349), 1, - anon_sym_as, - ACTIONS(6351), 1, - anon_sym_LBRACE, - STATE(1503), 1, - sym__enum_body, - STATE(4215), 1, - sym_enum_backed_type, + ACTIONS(6402), 1, + sym_identifier, + ACTIONS(6485), 1, + anon_sym_RPAREN, + STATE(3583), 1, + aux_sym_const_declaration_repeat1, + STATE(3729), 1, + sym_const_definition, STATE(3730), 2, sym_line_comment, sym_block_comment, - [132911] = 5, + [132959] = 7, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(1849), 1, - anon_sym_DOT, + ACTIONS(5062), 1, + anon_sym_LBRACE, + ACTIONS(6577), 1, + anon_sym_if, + STATE(1808), 1, + sym_block, + STATE(1810), 1, + sym_if_expression, STATE(3731), 2, sym_line_comment, sym_block_comment, - ACTIONS(6555), 3, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_LT2, - [132930] = 7, + [132982] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(5036), 1, + ACTIONS(5034), 1, anon_sym_LBRACE, - ACTIONS(6557), 1, - anon_sym_if, - STATE(407), 1, - sym_if_expression, - STATE(409), 1, + ACTIONS(6541), 1, + anon_sym_DOLLARif, + STATE(1044), 2, + sym_compile_time_if_expression, sym_block, STATE(3732), 2, sym_line_comment, sym_block_comment, - [132953] = 6, + [133003] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(6559), 1, + ACTIONS(6579), 1, anon_sym_LPAREN, - STATE(1980), 1, + STATE(315), 1, sym_signature, - STATE(1222), 2, + STATE(69), 2, sym_parameter_list, sym_type_parameter_list, STATE(3733), 2, sym_line_comment, sym_block_comment, - [132974] = 6, + [133024] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(5036), 1, - anon_sym_LBRACE, - ACTIONS(6491), 1, - anon_sym_DOLLARif, - STATE(415), 2, - sym_compile_time_if_expression, - sym_block, + ACTIONS(6027), 1, + anon_sym_LPAREN, + STATE(4007), 1, + sym_signature, + STATE(2850), 2, + sym_parameter_list, + sym_type_parameter_list, STATE(3734), 2, sym_line_comment, sym_block_comment, - [132995] = 6, + [133045] = 7, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(6561), 1, - sym_identifier, - ACTIONS(6563), 1, - anon_sym_DOLLAR, - STATE(2296), 2, - sym_reference_expression, - sym_compile_time_selector_expression, + ACTIONS(5034), 1, + anon_sym_LBRACE, + ACTIONS(6581), 1, + anon_sym_if, + STATE(1032), 1, + sym_if_expression, + STATE(1039), 1, + sym_block, STATE(3735), 2, sym_line_comment, sym_block_comment, - [133016] = 6, + [133068] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(6565), 1, - sym_identifier, - ACTIONS(6567), 1, - anon_sym_DOLLAR, - STATE(2674), 2, - sym_reference_expression, - sym_compile_time_selector_expression, + ACTIONS(6583), 1, + anon_sym_LPAREN, + STATE(2040), 1, + sym_signature, + STATE(1248), 2, + sym_parameter_list, + sym_type_parameter_list, STATE(3736), 2, sym_line_comment, sym_block_comment, - [133037] = 6, + [133089] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(5052), 1, - anon_sym_LBRACE, - ACTIONS(6569), 1, - anon_sym_DOLLARif, - STATE(1888), 2, - sym_compile_time_if_expression, - sym_block, + ACTIONS(6086), 1, + anon_sym_LPAREN, + STATE(1440), 1, + sym_signature, + STATE(1099), 2, + sym_parameter_list, + sym_type_parameter_list, STATE(3737), 2, sym_line_comment, sym_block_comment, - [133058] = 6, + [133110] = 7, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(6571), 1, - anon_sym_EQ, - STATE(4384), 1, - sym_generic_parameters, - ACTIONS(4912), 2, - anon_sym_LBRACK, - anon_sym_LT2, + ACTIONS(6553), 1, + sym_identifier, + ACTIONS(6585), 1, + anon_sym_RBRACE, + STATE(3563), 1, + sym_enum_field_definition, + STATE(3716), 1, + aux_sym__enum_body_repeat1, STATE(3738), 2, sym_line_comment, sym_block_comment, - [133079] = 6, - ACTIONS(3), 1, + [133133] = 6, + ACTIONS(497), 1, anon_sym_SLASH_SLASH, - ACTIONS(5), 1, + ACTIONS(499), 1, anon_sym_SLASH_STAR, - ACTIONS(5052), 1, - anon_sym_LBRACE, - ACTIONS(6569), 1, - anon_sym_DOLLARif, - STATE(1876), 2, - sym_compile_time_if_expression, - sym_block, + ACTIONS(6587), 1, + anon_sym_STAR_SLASH, + STATE(3666), 1, + aux_sym_block_comment_repeat1, + ACTIONS(6487), 2, + aux_sym_block_comment_token1, + aux_sym_block_comment_token2, STATE(3739), 2, sym_line_comment, sym_block_comment, - [133100] = 7, + [133154] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(6399), 1, - sym_identifier, - ACTIONS(6573), 1, - anon_sym_RPAREN, - STATE(3638), 1, - aux_sym_global_var_declaration_repeat1, - STATE(3640), 1, - sym_global_var_definition, + ACTIONS(6027), 1, + anon_sym_LPAREN, + STATE(4091), 1, + sym_signature, + STATE(2850), 2, + sym_parameter_list, + sym_type_parameter_list, STATE(3740), 2, sym_line_comment, sym_block_comment, - [133123] = 7, + [133175] = 7, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(6345), 1, - sym_identifier, - ACTIONS(6575), 1, - anon_sym_RPAREN, - STATE(3651), 1, - aux_sym_const_declaration_repeat1, - STATE(3655), 1, - sym_const_definition, + ACTIONS(5032), 1, + anon_sym_LBRACE, + ACTIONS(6589), 1, + anon_sym_if, + STATE(1981), 1, + sym_if_expression, + STATE(1985), 1, + sym_block, STATE(3741), 2, sym_line_comment, sym_block_comment, - [133146] = 6, + [133198] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(6499), 1, - anon_sym_LPAREN, - STATE(1626), 1, - sym_signature, - STATE(2853), 2, - sym_parameter_list, - sym_type_parameter_list, + ACTIONS(1887), 1, + anon_sym_DOT, STATE(3742), 2, sym_line_comment, sym_block_comment, - [133167] = 7, + ACTIONS(6591), 3, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_LT2, + [133217] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(5052), 1, - anon_sym_LBRACE, - ACTIONS(6577), 1, - anon_sym_if, - STATE(1872), 1, - sym_if_expression, - STATE(1875), 1, - sym_block, + ACTIONS(6027), 1, + anon_sym_LPAREN, + STATE(4071), 1, + sym_signature, + STATE(2850), 2, + sym_parameter_list, + sym_type_parameter_list, STATE(3743), 2, sym_line_comment, sym_block_comment, - [133190] = 4, + [133238] = 4, ACTIONS(497), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, @@ -299138,1401 +299327,1407 @@ static const uint16_t ts_small_parse_table[] = { STATE(3744), 2, sym_line_comment, sym_block_comment, - ACTIONS(6579), 4, + ACTIONS(6593), 4, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, anon_sym_SEMI, - [133207] = 6, - ACTIONS(497), 1, + [133255] = 6, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, - ACTIONS(499), 1, + ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(6581), 1, - anon_sym_STAR_SLASH, - STATE(3672), 1, - aux_sym_block_comment_repeat1, - ACTIONS(6526), 2, - aux_sym_block_comment_token1, - aux_sym_block_comment_token2, + ACTIONS(5052), 1, + anon_sym_LBRACE, + ACTIONS(6501), 1, + anon_sym_DOLLARif, + STATE(386), 2, + sym_compile_time_if_expression, + sym_block, STATE(3745), 2, sym_line_comment, sym_block_comment, - [133228] = 7, + [133276] = 7, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(6583), 1, - anon_sym_DOT, - ACTIONS(6585), 1, - anon_sym_RBRACE, - ACTIONS(6587), 1, - sym_int_literal, - ACTIONS(6589), 1, - aux_sym_format_specifier_token1, + ACTIONS(6432), 1, + sym_identifier, + ACTIONS(6595), 1, + anon_sym_RPAREN, + STATE(3686), 1, + aux_sym_global_var_declaration_repeat1, + STATE(3744), 1, + sym_global_var_definition, STATE(3746), 2, sym_line_comment, sym_block_comment, - [133251] = 6, + [133299] = 7, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(6591), 1, + ACTIONS(6402), 1, sym_identifier, - ACTIONS(6593), 1, - anon_sym_DOLLAR, - STATE(2515), 2, - sym_reference_expression, - sym_compile_time_selector_expression, + ACTIONS(6535), 1, + anon_sym_RPAREN, + STATE(3613), 1, + aux_sym_const_declaration_repeat1, + STATE(3729), 1, + sym_const_definition, STATE(3747), 2, sym_line_comment, sym_block_comment, - [133272] = 6, + [133322] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(5046), 1, - anon_sym_LBRACE, - ACTIONS(6595), 1, - anon_sym_DOLLARif, - STATE(1026), 2, - sym_compile_time_if_expression, - sym_block, + ACTIONS(6086), 1, + anon_sym_LPAREN, + STATE(1474), 1, + sym_signature, + STATE(1099), 2, + sym_parameter_list, + sym_type_parameter_list, STATE(3748), 2, sym_line_comment, sym_block_comment, - [133293] = 5, - ACTIONS(497), 1, + [133343] = 6, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, - ACTIONS(499), 1, + ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(6551), 1, - aux_sym_c_string_literal_token2, + ACTIONS(6597), 1, + sym_identifier, + ACTIONS(6599), 1, + anon_sym_DOLLAR, + STATE(1737), 2, + sym_reference_expression, + sym_compile_time_selector_expression, STATE(3749), 2, sym_line_comment, sym_block_comment, - ACTIONS(6549), 3, - sym_escape_sequence, - sym___dolcbr, - sym___double_quote, - [133312] = 6, + [133364] = 7, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(5046), 1, + ACTIONS(6420), 1, + anon_sym_as, + ACTIONS(6422), 1, anon_sym_LBRACE, - ACTIONS(6595), 1, - anon_sym_DOLLARif, - STATE(1033), 2, - sym_compile_time_if_expression, - sym_block, + STATE(1547), 1, + sym__enum_body, + STATE(4132), 1, + sym_enum_backed_type, STATE(3750), 2, sym_line_comment, sym_block_comment, - [133333] = 7, + [133387] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(5046), 1, - anon_sym_LBRACE, - ACTIONS(6597), 1, - anon_sym_if, - STATE(1034), 1, - sym_block, - STATE(1036), 1, - sym_if_expression, + ACTIONS(6601), 1, + anon_sym_EQ, + STATE(4383), 1, + sym_generic_parameters, + ACTIONS(4918), 2, + anon_sym_LBRACK, + anon_sym_LT2, STATE(3751), 2, sym_line_comment, sym_block_comment, - [133356] = 7, + [133408] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(6599), 1, - sym_identifier, - STATE(3392), 1, - sym_import_name, - STATE(3393), 1, - sym_import_path, - STATE(3744), 1, - sym_import_spec, + ACTIONS(6027), 1, + anon_sym_LPAREN, + STATE(4202), 1, + sym_signature, + STATE(2850), 2, + sym_parameter_list, + sym_type_parameter_list, STATE(3752), 2, sym_line_comment, sym_block_comment, - [133379] = 6, - ACTIONS(497), 1, + [133429] = 6, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, - ACTIONS(499), 1, + ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(6601), 1, - aux_sym_raw_string_literal_token2, - ACTIONS(6603), 1, - sym___double_quote, - STATE(3973), 1, - aux_sym_raw_string_literal_repeat2, + ACTIONS(5032), 1, + anon_sym_LBRACE, + ACTIONS(6458), 1, + anon_sym_DOLLARif, + STATE(1988), 2, + sym_compile_time_if_expression, + sym_block, STATE(3753), 2, sym_line_comment, sym_block_comment, - [133399] = 6, + [133450] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(6605), 1, - anon_sym_COMMA, - ACTIONS(6607), 1, - anon_sym_RPAREN, - STATE(3892), 1, - aux_sym_parameter_list_repeat1, + ACTIONS(6027), 1, + anon_sym_LPAREN, + STATE(4228), 1, + sym_signature, + STATE(2850), 2, + sym_parameter_list, + sym_type_parameter_list, STATE(3754), 2, sym_line_comment, sym_block_comment, - [133419] = 6, + [133471] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(5604), 1, - anon_sym_RPAREN, - ACTIONS(6609), 1, + ACTIONS(6603), 1, anon_sym_COMMA, - STATE(3654), 1, - aux_sym_type_parameters_repeat1, + STATE(3644), 1, + aux_sym_generic_parameters_repeat1, + ACTIONS(6605), 2, + anon_sym_GT, + anon_sym_RBRACK, STATE(3755), 2, sym_line_comment, sym_block_comment, - [133439] = 6, + [133492] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(6310), 1, + ACTIONS(5224), 1, anon_sym_COMMA, - ACTIONS(6611), 1, - anon_sym_RBRACK, - STATE(3767), 1, - aux_sym_type_parameters_repeat1, + ACTIONS(6607), 1, + anon_sym_LBRACE, + STATE(3786), 1, + aux_sym_match_expression_list_repeat1, STATE(3756), 2, sym_line_comment, sym_block_comment, - [133459] = 4, - ACTIONS(3), 1, + [133512] = 6, + ACTIONS(497), 1, anon_sym_SLASH_SLASH, - ACTIONS(5), 1, + ACTIONS(499), 1, anon_sym_SLASH_STAR, + ACTIONS(6609), 1, + aux_sym_raw_string_literal_token2, + ACTIONS(6611), 1, + sym___double_quote, + STATE(3867), 1, + aux_sym_raw_string_literal_repeat2, STATE(3757), 2, sym_line_comment, sym_block_comment, - ACTIONS(6613), 3, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_LT2, - [133475] = 6, + [133532] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(6615), 1, + ACTIONS(6613), 1, anon_sym_COMMA, - ACTIONS(6617), 1, + ACTIONS(6615), 1, anon_sym_RPAREN, - STATE(3863), 1, - aux_sym_type_parameters_repeat1, + STATE(3965), 1, + aux_sym_parameter_list_repeat1, STATE(3758), 2, sym_line_comment, sym_block_comment, - [133495] = 6, + [133552] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(6619), 1, + ACTIONS(6617), 1, anon_sym_COMMA, - ACTIONS(6621), 1, + ACTIONS(6619), 1, anon_sym_RPAREN, - STATE(3836), 1, + STATE(3973), 1, aux_sym_type_parameters_repeat1, STATE(3759), 2, sym_line_comment, sym_block_comment, - [133515] = 6, + [133572] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(6605), 1, + ACTIONS(6613), 1, anon_sym_COMMA, - ACTIONS(6623), 1, + ACTIONS(6621), 1, anon_sym_RPAREN, - STATE(3892), 1, + STATE(3942), 1, aux_sym_parameter_list_repeat1, STATE(3760), 2, sym_line_comment, sym_block_comment, - [133535] = 6, + [133592] = 4, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(6625), 1, - anon_sym_COMMA, - ACTIONS(6627), 1, - anon_sym_RPAREN, - STATE(3868), 1, - aux_sym_type_parameter_list_repeat1, STATE(3761), 2, sym_line_comment, sym_block_comment, - [133555] = 6, + ACTIONS(6623), 3, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_LT2, + [133608] = 6, ACTIONS(497), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, anon_sym_SLASH_STAR, - ACTIONS(6601), 1, + ACTIONS(6609), 1, aux_sym_raw_string_literal_token2, - ACTIONS(6629), 1, + ACTIONS(6625), 1, sym___double_quote, - STATE(3941), 1, + STATE(3867), 1, aux_sym_raw_string_literal_repeat2, STATE(3762), 2, sym_line_comment, sym_block_comment, - [133575] = 6, + [133628] = 6, ACTIONS(497), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, anon_sym_SLASH_STAR, - ACTIONS(6629), 1, + ACTIONS(6625), 1, sym___single_quote, - ACTIONS(6631), 1, + ACTIONS(6627), 1, aux_sym_raw_string_literal_token1, - STATE(3942), 1, + STATE(3868), 1, aux_sym_raw_string_literal_repeat1, STATE(3763), 2, sym_line_comment, sym_block_comment, - [133595] = 6, + [133648] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(3478), 1, - anon_sym_SEMI, - ACTIONS(5174), 1, + ACTIONS(3999), 1, + anon_sym_LBRACE, + ACTIONS(5182), 1, anon_sym_COMMA, - STATE(3778), 1, + STATE(3802), 1, aux_sym_strictly_expression_list_repeat1, STATE(3764), 2, sym_line_comment, sym_block_comment, - [133615] = 6, + [133668] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(6633), 1, - sym_identifier, - ACTIONS(6635), 1, - anon_sym_LPAREN, - STATE(1570), 1, - sym_const_definition, + ACTIONS(5626), 1, + anon_sym_RPAREN, + ACTIONS(6629), 1, + anon_sym_COMMA, + STATE(3593), 1, + aux_sym_type_parameters_repeat1, STATE(3765), 2, sym_line_comment, sym_block_comment, - [133635] = 6, + [133688] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(6637), 1, - sym_identifier, - ACTIONS(6639), 1, - anon_sym_LBRACE, - STATE(2317), 1, - sym__struct_body, + ACTIONS(6613), 1, + anon_sym_COMMA, + ACTIONS(6631), 1, + anon_sym_RPAREN, + STATE(3790), 1, + aux_sym_parameter_list_repeat1, STATE(3766), 2, sym_line_comment, sym_block_comment, - [133655] = 6, + [133708] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(6310), 1, + ACTIONS(6633), 1, anon_sym_COMMA, - ACTIONS(6641), 1, - anon_sym_RBRACK, - STATE(3654), 1, - aux_sym_type_parameters_repeat1, + ACTIONS(6635), 1, + anon_sym_RPAREN, + STATE(3791), 1, + aux_sym_type_parameter_list_repeat1, STATE(3767), 2, sym_line_comment, sym_block_comment, - [133675] = 6, + [133728] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(4775), 1, + ACTIONS(6633), 1, anon_sym_COMMA, - ACTIONS(6643), 1, - anon_sym_COLON_EQ, - STATE(3791), 1, - aux_sym_identifier_list_repeat1, + ACTIONS(6637), 1, + anon_sym_RPAREN, + STATE(3933), 1, + aux_sym_type_parameter_list_repeat1, STATE(3768), 2, sym_line_comment, sym_block_comment, - [133695] = 6, - ACTIONS(497), 1, + [133748] = 6, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, - ACTIONS(499), 1, + ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(6631), 1, - aux_sym_raw_string_literal_token1, - ACTIONS(6645), 1, - sym___single_quote, - STATE(3942), 1, - aux_sym_raw_string_literal_repeat1, + ACTIONS(6639), 1, + anon_sym_DOT, + ACTIONS(6641), 1, + anon_sym_RBRACE, + ACTIONS(6643), 1, + aux_sym_format_specifier_token1, STATE(3769), 2, sym_line_comment, sym_block_comment, - [133715] = 6, - ACTIONS(497), 1, + [133768] = 6, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, - ACTIONS(499), 1, + ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(6601), 1, - aux_sym_raw_string_literal_token2, + ACTIONS(5614), 1, + anon_sym_RPAREN, ACTIONS(6645), 1, - sym___double_quote, - STATE(3941), 1, - aux_sym_raw_string_literal_repeat2, + anon_sym_COMMA, + STATE(3593), 1, + aux_sym_type_parameters_repeat1, STATE(3770), 2, sym_line_comment, sym_block_comment, - [133735] = 6, - ACTIONS(3), 1, + [133788] = 6, + ACTIONS(497), 1, anon_sym_SLASH_SLASH, - ACTIONS(5), 1, + ACTIONS(499), 1, anon_sym_SLASH_STAR, - ACTIONS(5602), 1, - anon_sym_RPAREN, + ACTIONS(6609), 1, + aux_sym_raw_string_literal_token2, ACTIONS(6647), 1, - anon_sym_COMMA, - STATE(3654), 1, - aux_sym_type_parameters_repeat1, + sym___double_quote, + STATE(3867), 1, + aux_sym_raw_string_literal_repeat2, STATE(3771), 2, sym_line_comment, sym_block_comment, - [133755] = 6, + [133808] = 4, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(6605), 1, - anon_sym_COMMA, - ACTIONS(6649), 1, - anon_sym_RPAREN, - STATE(3789), 1, - aux_sym_parameter_list_repeat1, STATE(3772), 2, sym_line_comment, sym_block_comment, - [133775] = 6, + ACTIONS(6649), 3, + anon_sym_COMMA, + anon_sym_GT, + anon_sym_RBRACK, + [133824] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(6625), 1, - anon_sym_COMMA, ACTIONS(6651), 1, - anon_sym_RPAREN, - STATE(3790), 1, - aux_sym_type_parameter_list_repeat1, - STATE(3773), 2, + anon_sym_COMMA, + ACTIONS(6654), 1, + anon_sym_COLON_EQ, + STATE(3773), 3, sym_line_comment, sym_block_comment, - [133795] = 6, - ACTIONS(3), 1, + aux_sym_identifier_list_repeat1, + [133842] = 6, + ACTIONS(497), 1, anon_sym_SLASH_SLASH, - ACTIONS(5), 1, + ACTIONS(499), 1, anon_sym_SLASH_STAR, - ACTIONS(6653), 1, - sym_identifier, - ACTIONS(6655), 1, - anon_sym_LBRACE, - STATE(392), 1, - sym__content_block, + ACTIONS(6627), 1, + aux_sym_raw_string_literal_token1, + ACTIONS(6647), 1, + sym___single_quote, + STATE(3868), 1, + aux_sym_raw_string_literal_repeat1, STATE(3774), 2, sym_line_comment, sym_block_comment, - [133815] = 6, + [133862] = 4, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(6657), 1, - anon_sym_COMMA, - ACTIONS(6659), 1, - anon_sym_RPAREN, - STATE(3804), 1, - aux_sym_type_parameters_repeat1, STATE(3775), 2, sym_line_comment, sym_block_comment, - [133835] = 6, + ACTIONS(6656), 3, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_LT2, + [133878] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(6661), 1, + ACTIONS(6658), 1, anon_sym_COMMA, - ACTIONS(6663), 1, - anon_sym_PIPE, - STATE(3936), 1, - aux_sym_short_lambda_repeat1, + ACTIONS(6660), 1, + anon_sym_RBRACK, + STATE(3907), 1, + aux_sym_capture_list_repeat1, STATE(3776), 2, sym_line_comment, sym_block_comment, - [133855] = 6, + [133898] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(6665), 1, + ACTIONS(6662), 1, anon_sym_COMMA, - ACTIONS(6667), 1, - anon_sym_RPAREN, - STATE(3860), 1, - aux_sym_type_parameters_repeat1, - STATE(3777), 2, + ACTIONS(6665), 1, + anon_sym_PIPE, + STATE(3777), 3, sym_line_comment, sym_block_comment, - [133875] = 6, + aux_sym_short_lambda_repeat1, + [133916] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(3971), 1, + ACTIONS(3484), 1, anon_sym_SEMI, - ACTIONS(5174), 1, + ACTIONS(5154), 1, anon_sym_COMMA, - STATE(3794), 1, + STATE(3948), 1, aux_sym_strictly_expression_list_repeat1, STATE(3778), 2, sym_line_comment, sym_block_comment, - [133895] = 6, + [133936] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(6583), 1, - anon_sym_DOT, - ACTIONS(6585), 1, - anon_sym_RBRACE, - ACTIONS(6589), 1, - aux_sym_format_specifier_token1, - STATE(3779), 2, + ACTIONS(6667), 1, + anon_sym_SEMI, + ACTIONS(6670), 1, + anon_sym_RBRACK, + STATE(3779), 3, sym_line_comment, sym_block_comment, - [133915] = 6, - ACTIONS(497), 1, + aux_sym_attribute_repeat1, + [133954] = 6, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, - ACTIONS(499), 1, + ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(6601), 1, - aux_sym_raw_string_literal_token2, - ACTIONS(6669), 1, - sym___double_quote, - STATE(3841), 1, - aux_sym_raw_string_literal_repeat2, + ACTIONS(5644), 1, + anon_sym_RPAREN, + ACTIONS(6672), 1, + anon_sym_COMMA, + STATE(3593), 1, + aux_sym_type_parameters_repeat1, STATE(3780), 2, sym_line_comment, sym_block_comment, - [133935] = 6, + [133974] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(5190), 1, + ACTIONS(5620), 1, + anon_sym_RPAREN, + ACTIONS(6674), 1, anon_sym_COMMA, - ACTIONS(6671), 1, - anon_sym_LBRACE, - STATE(3793), 1, - aux_sym_match_expression_list_repeat1, + STATE(3593), 1, + aux_sym_type_parameters_repeat1, STATE(3781), 2, sym_line_comment, sym_block_comment, - [133955] = 6, - ACTIONS(497), 1, + [133994] = 6, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, - ACTIONS(499), 1, + ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(6631), 1, - aux_sym_raw_string_literal_token1, - ACTIONS(6669), 1, - sym___single_quote, - STATE(3844), 1, - aux_sym_raw_string_literal_repeat1, + ACTIONS(6613), 1, + anon_sym_COMMA, + ACTIONS(6676), 1, + anon_sym_RPAREN, + STATE(3788), 1, + aux_sym_parameter_list_repeat1, STATE(3782), 2, sym_line_comment, sym_block_comment, - [133975] = 6, + [134014] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(6673), 1, - sym_identifier, - ACTIONS(6675), 1, - anon_sym_LBRACE, - STATE(2051), 1, - sym__content_block, + ACTIONS(6633), 1, + anon_sym_COMMA, + ACTIONS(6678), 1, + anon_sym_RPAREN, + STATE(3792), 1, + aux_sym_type_parameter_list_repeat1, STATE(3783), 2, sym_line_comment, sym_block_comment, - [133995] = 5, + [134034] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - STATE(2637), 1, - sym_type_initializer_body, - ACTIONS(6677), 2, - anon_sym_LBRACE, + ACTIONS(6633), 1, anon_sym_COMMA, + ACTIONS(6680), 1, + anon_sym_RPAREN, + STATE(3807), 1, + aux_sym_type_parameter_list_repeat1, STATE(3784), 2, sym_line_comment, sym_block_comment, - [134013] = 6, - ACTIONS(497), 1, + [134054] = 6, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, - ACTIONS(499), 1, + ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(6601), 1, - aux_sym_raw_string_literal_token2, - ACTIONS(6679), 1, - sym___double_quote, + ACTIONS(6332), 1, + anon_sym_COMMA, + ACTIONS(6682), 1, + anon_sym_RBRACK, STATE(3799), 1, - aux_sym_raw_string_literal_repeat2, + aux_sym_type_parameters_repeat1, STATE(3785), 2, sym_line_comment, sym_block_comment, - [134033] = 6, + [134074] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(6310), 1, + ACTIONS(5354), 1, + anon_sym_LBRACE, + ACTIONS(6684), 1, anon_sym_COMMA, - ACTIONS(6681), 1, - anon_sym_RBRACK, - STATE(3796), 1, - aux_sym_type_parameters_repeat1, - STATE(3786), 2, + STATE(3786), 3, sym_line_comment, sym_block_comment, - [134053] = 6, - ACTIONS(497), 1, + aux_sym_match_expression_list_repeat1, + [134092] = 6, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, - ACTIONS(499), 1, + ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(6631), 1, - aux_sym_raw_string_literal_token1, - ACTIONS(6679), 1, - sym___single_quote, - STATE(3800), 1, - aux_sym_raw_string_literal_repeat1, + ACTIONS(6332), 1, + anon_sym_COMMA, + ACTIONS(6687), 1, + anon_sym_RBRACK, + STATE(3797), 1, + aux_sym_type_parameters_repeat1, STATE(3787), 2, sym_line_comment, sym_block_comment, - [134073] = 4, - ACTIONS(497), 1, + [134112] = 6, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, - ACTIONS(499), 1, + ACTIONS(5), 1, anon_sym_SLASH_STAR, + ACTIONS(6613), 1, + anon_sym_COMMA, + ACTIONS(6689), 1, + anon_sym_RPAREN, + STATE(3965), 1, + aux_sym_parameter_list_repeat1, STATE(3788), 2, sym_line_comment, sym_block_comment, - ACTIONS(6683), 3, - aux_sym_block_comment_token1, - aux_sym_block_comment_token2, - anon_sym_STAR_SLASH, - [134089] = 6, + [134132] = 4, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(6605), 1, - anon_sym_COMMA, - ACTIONS(6685), 1, - anon_sym_RPAREN, - STATE(3892), 1, - aux_sym_parameter_list_repeat1, STATE(3789), 2, sym_line_comment, sym_block_comment, - [134109] = 6, + ACTIONS(6591), 3, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_LT2, + [134148] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(6625), 1, + ACTIONS(6613), 1, anon_sym_COMMA, - ACTIONS(6687), 1, + ACTIONS(6691), 1, anon_sym_RPAREN, - STATE(3868), 1, - aux_sym_type_parameter_list_repeat1, + STATE(3965), 1, + aux_sym_parameter_list_repeat1, STATE(3790), 2, sym_line_comment, sym_block_comment, - [134129] = 5, + [134168] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(6689), 1, + ACTIONS(6633), 1, anon_sym_COMMA, - ACTIONS(6692), 1, - anon_sym_COLON_EQ, - STATE(3791), 3, + ACTIONS(6693), 1, + anon_sym_RPAREN, + STATE(3807), 1, + aux_sym_type_parameter_list_repeat1, + STATE(3791), 2, sym_line_comment, sym_block_comment, - aux_sym_identifier_list_repeat1, - [134147] = 6, + [134188] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(3997), 1, - anon_sym_SEMI, - ACTIONS(5174), 1, + ACTIONS(6633), 1, anon_sym_COMMA, - STATE(3794), 1, - aux_sym_strictly_expression_list_repeat1, + ACTIONS(6695), 1, + anon_sym_RPAREN, + STATE(3807), 1, + aux_sym_type_parameter_list_repeat1, STATE(3792), 2, sym_line_comment, sym_block_comment, - [134167] = 6, + [134208] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(5190), 1, + ACTIONS(6697), 1, anon_sym_COMMA, - ACTIONS(6694), 1, - anon_sym_LBRACE, - STATE(3858), 1, - aux_sym_match_expression_list_repeat1, + ACTIONS(6699), 1, + anon_sym_RPAREN, + STATE(3955), 1, + aux_sym_type_parameters_repeat1, STATE(3793), 2, sym_line_comment, sym_block_comment, - [134187] = 5, - ACTIONS(3), 1, + [134228] = 6, + ACTIONS(497), 1, anon_sym_SLASH_SLASH, - ACTIONS(5), 1, + ACTIONS(499), 1, anon_sym_SLASH_STAR, - ACTIONS(3524), 1, - anon_sym_SEMI, - ACTIONS(6696), 1, - anon_sym_COMMA, - STATE(3794), 3, + ACTIONS(6609), 1, + aux_sym_raw_string_literal_token2, + ACTIONS(6701), 1, + sym___double_quote, + STATE(3884), 1, + aux_sym_raw_string_literal_repeat2, + STATE(3794), 2, sym_line_comment, sym_block_comment, - aux_sym_strictly_expression_list_repeat1, - [134205] = 6, - ACTIONS(3), 1, + [134248] = 6, + ACTIONS(497), 1, anon_sym_SLASH_SLASH, - ACTIONS(5), 1, + ACTIONS(499), 1, anon_sym_SLASH_STAR, - ACTIONS(5188), 1, - anon_sym_LBRACE, - ACTIONS(5190), 1, - anon_sym_COMMA, - STATE(3798), 1, - aux_sym_match_expression_list_repeat1, + ACTIONS(6627), 1, + aux_sym_raw_string_literal_token1, + ACTIONS(6701), 1, + sym___single_quote, + STATE(3886), 1, + aux_sym_raw_string_literal_repeat1, STATE(3795), 2, sym_line_comment, sym_block_comment, - [134225] = 6, + [134268] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(6310), 1, + ACTIONS(6703), 1, anon_sym_COMMA, - ACTIONS(6699), 1, - anon_sym_RBRACK, - STATE(3654), 1, + ACTIONS(6705), 1, + anon_sym_RPAREN, + STATE(3960), 1, aux_sym_type_parameters_repeat1, STATE(3796), 2, sym_line_comment, sym_block_comment, - [134245] = 6, + [134288] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(6701), 1, + ACTIONS(6332), 1, anon_sym_COMMA, - ACTIONS(6703), 1, - anon_sym_RPAREN, - STATE(3755), 1, + ACTIONS(6707), 1, + anon_sym_RBRACK, + STATE(3593), 1, aux_sym_type_parameters_repeat1, STATE(3797), 2, sym_line_comment, sym_block_comment, - [134265] = 6, - ACTIONS(3), 1, + [134308] = 6, + ACTIONS(497), 1, anon_sym_SLASH_SLASH, - ACTIONS(5), 1, + ACTIONS(499), 1, anon_sym_SLASH_STAR, - ACTIONS(5190), 1, - anon_sym_COMMA, - ACTIONS(6705), 1, - anon_sym_LBRACE, - STATE(3858), 1, - aux_sym_match_expression_list_repeat1, + ACTIONS(6627), 1, + aux_sym_raw_string_literal_token1, + ACTIONS(6709), 1, + sym___single_quote, + STATE(3774), 1, + aux_sym_raw_string_literal_repeat1, STATE(3798), 2, sym_line_comment, sym_block_comment, - [134285] = 6, - ACTIONS(497), 1, + [134328] = 6, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, - ACTIONS(499), 1, + ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(6601), 1, - aux_sym_raw_string_literal_token2, - ACTIONS(6707), 1, - sym___double_quote, - STATE(3941), 1, - aux_sym_raw_string_literal_repeat2, + ACTIONS(6332), 1, + anon_sym_COMMA, + ACTIONS(6711), 1, + anon_sym_RBRACK, + STATE(3593), 1, + aux_sym_type_parameters_repeat1, STATE(3799), 2, sym_line_comment, sym_block_comment, - [134305] = 6, - ACTIONS(497), 1, + [134348] = 6, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, - ACTIONS(499), 1, + ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(6631), 1, - aux_sym_raw_string_literal_token1, - ACTIONS(6707), 1, - sym___single_quote, - STATE(3942), 1, - aux_sym_raw_string_literal_repeat1, + ACTIONS(6633), 1, + anon_sym_COMMA, + ACTIONS(6713), 1, + anon_sym_RPAREN, + STATE(3784), 1, + aux_sym_type_parameter_list_repeat1, STATE(3800), 2, sym_line_comment, sym_block_comment, - [134325] = 5, - ACTIONS(3), 1, + [134368] = 6, + ACTIONS(497), 1, anon_sym_SLASH_SLASH, - ACTIONS(5), 1, + ACTIONS(499), 1, anon_sym_SLASH_STAR, - STATE(3804), 1, - aux_sym_type_parameters_repeat1, - ACTIONS(6709), 2, - anon_sym_COMMA, - anon_sym_RPAREN, + ACTIONS(6609), 1, + aux_sym_raw_string_literal_token2, + ACTIONS(6709), 1, + sym___double_quote, + STATE(3771), 1, + aux_sym_raw_string_literal_repeat2, STATE(3801), 2, sym_line_comment, sym_block_comment, - [134343] = 6, + [134388] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(6625), 1, + ACTIONS(3522), 1, + anon_sym_LBRACE, + ACTIONS(6715), 1, anon_sym_COMMA, - ACTIONS(6711), 1, - anon_sym_RPAREN, - STATE(3761), 1, - aux_sym_type_parameter_list_repeat1, - STATE(3802), 2, + STATE(3802), 3, sym_line_comment, sym_block_comment, - [134363] = 6, + aux_sym_strictly_expression_list_repeat1, + [134406] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(6605), 1, + ACTIONS(6613), 1, anon_sym_COMMA, - ACTIONS(6713), 1, + ACTIONS(6718), 1, anon_sym_RPAREN, - STATE(3760), 1, + STATE(3758), 1, aux_sym_parameter_list_repeat1, STATE(3803), 2, sym_line_comment, sym_block_comment, - [134383] = 6, + [134426] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(5658), 1, + ACTIONS(5616), 1, anon_sym_RPAREN, - ACTIONS(6715), 1, + ACTIONS(6720), 1, anon_sym_COMMA, - STATE(3654), 1, + STATE(3593), 1, aux_sym_type_parameters_repeat1, STATE(3804), 2, sym_line_comment, sym_block_comment, - [134403] = 6, + [134446] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(6717), 1, + ACTIONS(6722), 1, anon_sym_COMMA, - ACTIONS(6719), 1, + ACTIONS(6724), 1, anon_sym_RPAREN, - STATE(3952), 1, + STATE(3781), 1, aux_sym_type_parameters_repeat1, STATE(3805), 2, sym_line_comment, sym_block_comment, - [134423] = 4, + [134466] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, + ACTIONS(6726), 1, + sym_identifier, + ACTIONS(6728), 1, + anon_sym_LBRACE, + STATE(1823), 1, + sym__content_block, STATE(3806), 2, sym_line_comment, sym_block_comment, - ACTIONS(6721), 3, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_LT2, - [134439] = 4, + [134486] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - STATE(3807), 2, + ACTIONS(6730), 1, + anon_sym_COMMA, + ACTIONS(6733), 1, + anon_sym_RPAREN, + STATE(3807), 3, sym_line_comment, sym_block_comment, - ACTIONS(6555), 3, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_LT2, - [134455] = 6, + aux_sym_type_parameter_list_repeat1, + [134504] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(6605), 1, + ACTIONS(6735), 1, anon_sym_COMMA, - ACTIONS(6723), 1, + ACTIONS(6737), 1, anon_sym_RPAREN, - STATE(3827), 1, - aux_sym_parameter_list_repeat1, + STATE(3876), 1, + aux_sym_type_parameters_repeat1, STATE(3808), 2, sym_line_comment, sym_block_comment, - [134475] = 6, + [134524] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(6625), 1, + ACTIONS(3999), 1, + anon_sym_COLON_EQ, + ACTIONS(5000), 1, anon_sym_COMMA, - ACTIONS(6725), 1, - anon_sym_RPAREN, - STATE(3828), 1, - aux_sym_type_parameter_list_repeat1, + STATE(3993), 1, + aux_sym_strictly_expression_list_repeat1, STATE(3809), 2, sym_line_comment, sym_block_comment, - [134495] = 6, + [134544] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(6727), 1, - sym_identifier, - ACTIONS(6729), 1, - anon_sym_LBRACE, - STATE(1719), 1, - sym__content_block, + STATE(3804), 1, + aux_sym_type_parameters_repeat1, + ACTIONS(6739), 2, + anon_sym_COMMA, + anon_sym_RPAREN, STATE(3810), 2, sym_line_comment, sym_block_comment, - [134515] = 6, + [134562] = 4, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(6605), 1, - anon_sym_COMMA, - ACTIONS(6731), 1, - anon_sym_RPAREN, - STATE(3981), 1, - aux_sym_parameter_list_repeat1, STATE(3811), 2, sym_line_comment, sym_block_comment, - [134535] = 6, - ACTIONS(497), 1, + ACTIONS(6741), 3, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_LT2, + [134578] = 6, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, - ACTIONS(499), 1, + ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(6601), 1, - aux_sym_raw_string_literal_token2, - ACTIONS(6733), 1, - sym___double_quote, - STATE(3814), 1, - aux_sym_raw_string_literal_repeat2, + ACTIONS(6743), 1, + anon_sym_COMMA, + ACTIONS(6745), 1, + anon_sym_RPAREN, + STATE(3863), 1, + aux_sym_type_parameters_repeat1, STATE(3812), 2, sym_line_comment, sym_block_comment, - [134555] = 6, - ACTIONS(497), 1, - anon_sym_SLASH_SLASH, - ACTIONS(499), 1, - anon_sym_SLASH_STAR, - ACTIONS(6631), 1, - aux_sym_raw_string_literal_token1, - ACTIONS(6735), 1, - sym___single_quote, - STATE(3942), 1, - aux_sym_raw_string_literal_repeat1, - STATE(3813), 2, - sym_line_comment, - sym_block_comment, - [134575] = 6, - ACTIONS(497), 1, - anon_sym_SLASH_SLASH, - ACTIONS(499), 1, - anon_sym_SLASH_STAR, - ACTIONS(6601), 1, - aux_sym_raw_string_literal_token2, - ACTIONS(6735), 1, - sym___double_quote, - STATE(3941), 1, - aux_sym_raw_string_literal_repeat2, - STATE(3814), 2, - sym_line_comment, - sym_block_comment, - [134595] = 6, + [134598] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(6737), 1, - sym_identifier, - ACTIONS(6739), 1, + ACTIONS(3484), 1, anon_sym_LBRACE, - STATE(2249), 1, - sym__content_block, - STATE(3815), 2, + ACTIONS(5182), 1, + anon_sym_COMMA, + STATE(3764), 1, + aux_sym_strictly_expression_list_repeat1, + STATE(3813), 2, sym_line_comment, sym_block_comment, - [134615] = 6, + [134618] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(6625), 1, + ACTIONS(6613), 1, anon_sym_COMMA, - ACTIONS(6741), 1, + ACTIONS(6747), 1, anon_sym_RPAREN, - STATE(3980), 1, - aux_sym_type_parameter_list_repeat1, - STATE(3816), 2, - sym_line_comment, - sym_block_comment, - [134635] = 6, - ACTIONS(497), 1, - anon_sym_SLASH_SLASH, - ACTIONS(499), 1, - anon_sym_SLASH_STAR, - ACTIONS(6601), 1, - aux_sym_raw_string_literal_token2, - ACTIONS(6743), 1, - sym___double_quote, - STATE(3833), 1, - aux_sym_raw_string_literal_repeat2, - STATE(3817), 2, - sym_line_comment, - sym_block_comment, - [134655] = 6, - ACTIONS(497), 1, - anon_sym_SLASH_SLASH, - ACTIONS(499), 1, - anon_sym_SLASH_STAR, - ACTIONS(6631), 1, - aux_sym_raw_string_literal_token1, - ACTIONS(6743), 1, - sym___single_quote, - STATE(3835), 1, - aux_sym_raw_string_literal_repeat1, - STATE(3818), 2, + STATE(3826), 1, + aux_sym_parameter_list_repeat1, + STATE(3814), 2, sym_line_comment, sym_block_comment, - [134675] = 6, + [134638] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(6745), 1, - anon_sym_SEMI, - ACTIONS(6747), 1, - anon_sym_RBRACK, - STATE(3923), 1, - aux_sym_attribute_repeat1, - STATE(3819), 2, - sym_line_comment, - sym_block_comment, - [134695] = 6, - ACTIONS(497), 1, - anon_sym_SLASH_SLASH, - ACTIONS(499), 1, - anon_sym_SLASH_STAR, - ACTIONS(6601), 1, - aux_sym_raw_string_literal_token2, - ACTIONS(6749), 1, - sym___double_quote, - STATE(3849), 1, - aux_sym_raw_string_literal_repeat2, - STATE(3820), 2, - sym_line_comment, - sym_block_comment, - [134715] = 6, - ACTIONS(497), 1, - anon_sym_SLASH_SLASH, - ACTIONS(499), 1, - anon_sym_SLASH_STAR, - ACTIONS(6631), 1, - aux_sym_raw_string_literal_token1, + ACTIONS(6633), 1, + anon_sym_COMMA, ACTIONS(6749), 1, - sym___single_quote, - STATE(3850), 1, - aux_sym_raw_string_literal_repeat1, - STATE(3821), 2, + anon_sym_RPAREN, + STATE(3807), 1, + aux_sym_type_parameter_list_repeat1, + STATE(3815), 2, sym_line_comment, sym_block_comment, - [134735] = 5, + [134658] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(6753), 1, - anon_sym_COLON, - ACTIONS(6751), 2, - anon_sym_SEMI, - anon_sym_RBRACK, - STATE(3822), 2, + ACTIONS(5224), 1, + anon_sym_COMMA, + ACTIONS(6751), 1, + anon_sym_LBRACE, + STATE(3822), 1, + aux_sym_match_expression_list_repeat1, + STATE(3816), 2, sym_line_comment, sym_block_comment, - [134753] = 6, + [134678] = 4, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(3478), 1, - anon_sym_COLON_EQ, - ACTIONS(4996), 1, - anon_sym_COMMA, - STATE(3919), 1, - aux_sym_strictly_expression_list_repeat1, - STATE(3823), 2, + STATE(3817), 2, sym_line_comment, sym_block_comment, - [134773] = 6, + ACTIONS(6753), 3, + anon_sym_LBRACE, + anon_sym_LPAREN, + anon_sym_EQ, + [134694] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(6310), 1, - anon_sym_COMMA, ACTIONS(6755), 1, - anon_sym_RBRACK, - STATE(3830), 1, - aux_sym_type_parameters_repeat1, - STATE(3824), 2, + sym_identifier, + ACTIONS(6757), 1, + anon_sym_LBRACE, + STATE(2203), 1, + sym__content_block, + STATE(3818), 2, sym_line_comment, sym_block_comment, - [134793] = 6, + [134714] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(4551), 1, - sym_identifier, - ACTIONS(6757), 1, - anon_sym_static, + ACTIONS(6633), 1, + anon_sym_COMMA, ACTIONS(6759), 1, - anon_sym_volatile, - STATE(3825), 2, + anon_sym_RPAREN, + STATE(3815), 1, + aux_sym_type_parameter_list_repeat1, + STATE(3819), 2, sym_line_comment, sym_block_comment, - [134813] = 5, + [134734] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, + ACTIONS(4783), 1, + anon_sym_COMMA, ACTIONS(6761), 1, - anon_sym_SEMI, - ACTIONS(6764), 1, - anon_sym_RBRACK, - STATE(3826), 3, + anon_sym_COLON_EQ, + STATE(3773), 1, + aux_sym_identifier_list_repeat1, + STATE(3820), 2, sym_line_comment, sym_block_comment, - aux_sym_attribute_repeat1, - [134831] = 6, + [134754] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(6605), 1, - anon_sym_COMMA, - ACTIONS(6766), 1, - anon_sym_RPAREN, - STATE(3892), 1, - aux_sym_parameter_list_repeat1, - STATE(3827), 2, + ACTIONS(6763), 1, + sym_identifier, + ACTIONS(6765), 1, + anon_sym_LPAREN, + STATE(1485), 1, + sym_const_definition, + STATE(3821), 2, sym_line_comment, sym_block_comment, - [134851] = 6, + [134774] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(6625), 1, + ACTIONS(5224), 1, anon_sym_COMMA, - ACTIONS(6768), 1, - anon_sym_RPAREN, - STATE(3868), 1, - aux_sym_type_parameter_list_repeat1, - STATE(3828), 2, + ACTIONS(6767), 1, + anon_sym_LBRACE, + STATE(3786), 1, + aux_sym_match_expression_list_repeat1, + STATE(3822), 2, sym_line_comment, sym_block_comment, - [134871] = 6, - ACTIONS(3), 1, + [134794] = 6, + ACTIONS(497), 1, anon_sym_SLASH_SLASH, - ACTIONS(5), 1, + ACTIONS(499), 1, anon_sym_SLASH_STAR, - ACTIONS(6770), 1, - anon_sym_COMMA, - ACTIONS(6772), 1, - anon_sym_in, - STATE(3935), 1, - aux_sym_var_definition_list_repeat1, - STATE(3829), 2, + ACTIONS(6609), 1, + aux_sym_raw_string_literal_token2, + ACTIONS(6769), 1, + sym___double_quote, + STATE(3852), 1, + aux_sym_raw_string_literal_repeat2, + STATE(3823), 2, + sym_line_comment, + sym_block_comment, + [134814] = 6, + ACTIONS(497), 1, + anon_sym_SLASH_SLASH, + ACTIONS(499), 1, + anon_sym_SLASH_STAR, + ACTIONS(6627), 1, + aux_sym_raw_string_literal_token1, + ACTIONS(6769), 1, + sym___single_quote, + STATE(3853), 1, + aux_sym_raw_string_literal_repeat1, + STATE(3824), 2, sym_line_comment, sym_block_comment, - [134891] = 6, + [134834] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(6310), 1, + ACTIONS(6332), 1, anon_sym_COMMA, - ACTIONS(6774), 1, + ACTIONS(6771), 1, anon_sym_RBRACK, - STATE(3654), 1, + STATE(3593), 1, aux_sym_type_parameters_repeat1, - STATE(3830), 2, + STATE(3825), 2, sym_line_comment, sym_block_comment, - [134911] = 6, + [134854] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(6776), 1, + ACTIONS(6613), 1, anon_sym_COMMA, - ACTIONS(6778), 1, + ACTIONS(6773), 1, anon_sym_RPAREN, - STATE(3957), 1, - aux_sym_type_parameters_repeat1, - STATE(3831), 2, + STATE(3965), 1, + aux_sym_parameter_list_repeat1, + STATE(3826), 2, sym_line_comment, sym_block_comment, - [134931] = 4, + [134874] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - STATE(3832), 2, + ACTIONS(6775), 1, + sym_identifier, + ACTIONS(6777), 1, + anon_sym_LBRACE, + STATE(1343), 1, + sym__content_block, + STATE(3827), 2, sym_line_comment, sym_block_comment, - ACTIONS(6322), 3, - anon_sym_SEMI, - anon_sym_RBRACK, - anon_sym_COLON, - [134947] = 6, + [134894] = 6, ACTIONS(497), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, anon_sym_SLASH_STAR, - ACTIONS(6601), 1, + ACTIONS(6627), 1, + aux_sym_raw_string_literal_token1, + ACTIONS(6779), 1, + sym___single_quote, + STATE(3868), 1, + aux_sym_raw_string_literal_repeat1, + STATE(3828), 2, + sym_line_comment, + sym_block_comment, + [134914] = 6, + ACTIONS(497), 1, + anon_sym_SLASH_SLASH, + ACTIONS(499), 1, + anon_sym_SLASH_STAR, + ACTIONS(6609), 1, aux_sym_raw_string_literal_token2, - ACTIONS(6780), 1, + ACTIONS(6779), 1, sym___double_quote, - STATE(3941), 1, + STATE(3867), 1, aux_sym_raw_string_literal_repeat2, - STATE(3833), 2, + STATE(3829), 2, sym_line_comment, sym_block_comment, - [134967] = 4, - ACTIONS(3), 1, + [134934] = 6, + ACTIONS(497), 1, anon_sym_SLASH_SLASH, - ACTIONS(5), 1, + ACTIONS(499), 1, anon_sym_SLASH_STAR, - STATE(3834), 2, + ACTIONS(6627), 1, + aux_sym_raw_string_literal_token1, + ACTIONS(6781), 1, + sym___single_quote, + STATE(3900), 1, + aux_sym_raw_string_literal_repeat1, + STATE(3830), 2, sym_line_comment, sym_block_comment, - ACTIONS(3903), 3, - anon_sym_SEMI, - anon_sym_RBRACK, - anon_sym_COLON, - [134983] = 6, + [134954] = 6, ACTIONS(497), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, anon_sym_SLASH_STAR, - ACTIONS(6631), 1, + ACTIONS(6609), 1, + aux_sym_raw_string_literal_token2, + ACTIONS(6781), 1, + sym___double_quote, + STATE(3892), 1, + aux_sym_raw_string_literal_repeat2, + STATE(3831), 2, + sym_line_comment, + sym_block_comment, + [134974] = 6, + ACTIONS(497), 1, + anon_sym_SLASH_SLASH, + ACTIONS(499), 1, + anon_sym_SLASH_STAR, + ACTIONS(6627), 1, aux_sym_raw_string_literal_token1, - ACTIONS(6780), 1, + ACTIONS(6783), 1, sym___single_quote, - STATE(3942), 1, + STATE(3763), 1, aux_sym_raw_string_literal_repeat1, - STATE(3835), 2, + STATE(3832), 2, sym_line_comment, sym_block_comment, - [135003] = 6, + [134994] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(5656), 1, - anon_sym_RPAREN, - ACTIONS(6782), 1, + ACTIONS(6332), 1, anon_sym_COMMA, - STATE(3654), 1, + ACTIONS(6785), 1, + anon_sym_RBRACK, + STATE(3593), 1, aux_sym_type_parameters_repeat1, - STATE(3836), 2, + STATE(3833), 2, + sym_line_comment, + sym_block_comment, + [135014] = 6, + ACTIONS(497), 1, + anon_sym_SLASH_SLASH, + ACTIONS(499), 1, + anon_sym_SLASH_STAR, + ACTIONS(6609), 1, + aux_sym_raw_string_literal_token2, + ACTIONS(6783), 1, + sym___double_quote, + STATE(3762), 1, + aux_sym_raw_string_literal_repeat2, + STATE(3834), 2, sym_line_comment, sym_block_comment, - [135023] = 5, + [135034] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(6784), 1, + ACTIONS(6633), 1, anon_sym_COMMA, ACTIONS(6787), 1, - anon_sym_RBRACK, - STATE(3837), 3, + anon_sym_RPAREN, + STATE(3807), 1, + aux_sym_type_parameter_list_repeat1, + STATE(3835), 2, sym_line_comment, sym_block_comment, - aux_sym_capture_list_repeat1, - [135041] = 6, + [135054] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, + ACTIONS(6613), 1, + anon_sym_COMMA, ACTIONS(6789), 1, - sym_identifier, + anon_sym_RPAREN, + STATE(3965), 1, + aux_sym_parameter_list_repeat1, + STATE(3836), 2, + sym_line_comment, + sym_block_comment, + [135074] = 6, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(6332), 1, + anon_sym_COMMA, ACTIONS(6791), 1, - anon_sym_LBRACE, - STATE(2452), 1, - sym__content_block, + anon_sym_RBRACK, + STATE(3593), 1, + aux_sym_type_parameters_repeat1, + STATE(3837), 2, + sym_line_comment, + sym_block_comment, + [135094] = 6, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(6332), 1, + anon_sym_COMMA, + ACTIONS(6793), 1, + anon_sym_RBRACK, + STATE(3825), 1, + aux_sym_type_parameters_repeat1, STATE(3838), 2, sym_line_comment, sym_block_comment, - [135061] = 6, + [135114] = 6, ACTIONS(497), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, anon_sym_SLASH_STAR, - ACTIONS(6601), 1, + ACTIONS(6609), 1, aux_sym_raw_string_literal_token2, - ACTIONS(6793), 1, + ACTIONS(6795), 1, sym___double_quote, - STATE(3855), 1, + STATE(3757), 1, aux_sym_raw_string_literal_repeat2, STATE(3839), 2, sym_line_comment, sym_block_comment, - [135081] = 6, + [135134] = 6, ACTIONS(497), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, anon_sym_SLASH_STAR, - ACTIONS(6631), 1, + ACTIONS(6627), 1, aux_sym_raw_string_literal_token1, - ACTIONS(6793), 1, + ACTIONS(6795), 1, sym___single_quote, - STATE(3856), 1, + STATE(3878), 1, aux_sym_raw_string_literal_repeat1, STATE(3840), 2, sym_line_comment, sym_block_comment, - [135101] = 6, - ACTIONS(497), 1, + [135154] = 6, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, - ACTIONS(499), 1, + ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(6601), 1, - aux_sym_raw_string_literal_token2, - ACTIONS(6795), 1, - sym___double_quote, - STATE(3941), 1, - aux_sym_raw_string_literal_repeat2, + ACTIONS(6797), 1, + anon_sym_SEMI, + ACTIONS(6799), 1, + anon_sym_RBRACK, + STATE(3779), 1, + aux_sym_attribute_repeat1, STATE(3841), 2, sym_line_comment, sym_block_comment, - [135121] = 4, + [135174] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, + ACTIONS(6801), 1, + sym_identifier, + ACTIONS(6803), 1, + anon_sym_LBRACE, + STATE(1692), 1, + sym__content_block, STATE(3842), 2, sym_line_comment, sym_block_comment, - ACTIONS(6797), 3, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_LT2, - [135137] = 6, + [135194] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(5616), 1, - anon_sym_RPAREN, - ACTIONS(6799), 1, + ACTIONS(6633), 1, anon_sym_COMMA, - STATE(3654), 1, - aux_sym_type_parameters_repeat1, + ACTIONS(6805), 1, + anon_sym_RPAREN, + STATE(3807), 1, + aux_sym_type_parameter_list_repeat1, STATE(3843), 2, sym_line_comment, sym_block_comment, - [135157] = 6, - ACTIONS(497), 1, + [135214] = 6, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, - ACTIONS(499), 1, + ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(6631), 1, - aux_sym_raw_string_literal_token1, - ACTIONS(6795), 1, - sym___single_quote, - STATE(3942), 1, - aux_sym_raw_string_literal_repeat1, + ACTIONS(6613), 1, + anon_sym_COMMA, + ACTIONS(6807), 1, + anon_sym_RPAREN, + STATE(3965), 1, + aux_sym_parameter_list_repeat1, STATE(3844), 2, sym_line_comment, sym_block_comment, - [135177] = 4, + [135234] = 4, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, @@ -300540,5933 +300735,5943 @@ static const uint16_t ts_small_parse_table[] = { STATE(3845), 2, sym_line_comment, sym_block_comment, - ACTIONS(6508), 3, - anon_sym_COMMA, - anon_sym_GT, - anon_sym_RBRACK, - [135193] = 6, + ACTIONS(6093), 3, + anon_sym_RBRACE, + anon_sym_DOT_DOT_DOT, + sym_identifier, + [135250] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(6605), 1, + ACTIONS(6809), 1, anon_sym_COMMA, - ACTIONS(6801), 1, - anon_sym_RPAREN, - STATE(3869), 1, - aux_sym_parameter_list_repeat1, - STATE(3846), 2, + ACTIONS(6812), 1, + anon_sym_RBRACK, + STATE(3846), 3, sym_line_comment, sym_block_comment, - [135213] = 6, - ACTIONS(497), 1, + aux_sym_capture_list_repeat1, + [135268] = 6, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, - ACTIONS(499), 1, + ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(6631), 1, - aux_sym_raw_string_literal_token1, - ACTIONS(6803), 1, - sym___single_quote, - STATE(3763), 1, - aux_sym_raw_string_literal_repeat1, + ACTIONS(4783), 1, + anon_sym_COMMA, + ACTIONS(4785), 1, + anon_sym_COLON_EQ, + STATE(3820), 1, + aux_sym_identifier_list_repeat1, STATE(3847), 2, sym_line_comment, sym_block_comment, - [135233] = 6, - ACTIONS(497), 1, + [135288] = 5, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, - ACTIONS(499), 1, + ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(6601), 1, - aux_sym_raw_string_literal_token2, - ACTIONS(6803), 1, - sym___double_quote, - STATE(3762), 1, - aux_sym_raw_string_literal_repeat2, + STATE(2631), 1, + sym_type_initializer_body, + ACTIONS(6814), 2, + anon_sym_LBRACE, + anon_sym_COMMA, STATE(3848), 2, sym_line_comment, sym_block_comment, - [135253] = 6, - ACTIONS(497), 1, + [135306] = 5, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, - ACTIONS(499), 1, + ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(6601), 1, - aux_sym_raw_string_literal_token2, - ACTIONS(6805), 1, - sym___double_quote, - STATE(3941), 1, - aux_sym_raw_string_literal_repeat2, - STATE(3849), 2, + ACTIONS(3522), 1, + anon_sym_SEMI, + ACTIONS(6816), 1, + anon_sym_COMMA, + STATE(3849), 3, sym_line_comment, sym_block_comment, - [135273] = 6, - ACTIONS(497), 1, + aux_sym_strictly_expression_list_repeat1, + [135324] = 6, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, - ACTIONS(499), 1, + ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(6631), 1, - aux_sym_raw_string_literal_token1, - ACTIONS(6805), 1, - sym___single_quote, - STATE(3942), 1, - aux_sym_raw_string_literal_repeat1, + ACTIONS(6332), 1, + anon_sym_COMMA, + ACTIONS(6819), 1, + anon_sym_RBRACK, + STATE(3837), 1, + aux_sym_type_parameters_repeat1, STATE(3850), 2, sym_line_comment, sym_block_comment, - [135293] = 6, + [135344] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(6625), 1, + ACTIONS(5222), 1, + anon_sym_LBRACE, + ACTIONS(5224), 1, anon_sym_COMMA, - ACTIONS(6807), 1, - anon_sym_RPAREN, - STATE(3871), 1, - aux_sym_type_parameter_list_repeat1, + STATE(3756), 1, + aux_sym_match_expression_list_repeat1, STATE(3851), 2, sym_line_comment, sym_block_comment, - [135313] = 4, - ACTIONS(3), 1, + [135364] = 6, + ACTIONS(497), 1, anon_sym_SLASH_SLASH, - ACTIONS(5), 1, + ACTIONS(499), 1, anon_sym_SLASH_STAR, + ACTIONS(6609), 1, + aux_sym_raw_string_literal_token2, + ACTIONS(6821), 1, + sym___double_quote, + STATE(3867), 1, + aux_sym_raw_string_literal_repeat2, STATE(3852), 2, sym_line_comment, sym_block_comment, - ACTIONS(6809), 3, - anon_sym_LBRACE, - anon_sym_LPAREN, - anon_sym_EQ, - [135329] = 6, - ACTIONS(3), 1, + [135384] = 6, + ACTIONS(497), 1, anon_sym_SLASH_SLASH, - ACTIONS(5), 1, + ACTIONS(499), 1, anon_sym_SLASH_STAR, - ACTIONS(6633), 1, - sym_identifier, - ACTIONS(6811), 1, - anon_sym_LPAREN, - STATE(1478), 1, - sym_const_definition, + ACTIONS(6627), 1, + aux_sym_raw_string_literal_token1, + ACTIONS(6821), 1, + sym___single_quote, + STATE(3868), 1, + aux_sym_raw_string_literal_repeat1, STATE(3853), 2, sym_line_comment, sym_block_comment, - [135349] = 6, + [135404] = 4, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(6633), 1, - sym_identifier, - ACTIONS(6813), 1, - anon_sym_LPAREN, - STATE(1513), 1, - sym_const_definition, STATE(3854), 2, sym_line_comment, sym_block_comment, - [135369] = 6, - ACTIONS(497), 1, + ACTIONS(6823), 3, + anon_sym_LBRACE, + anon_sym_LPAREN, + anon_sym_EQ, + [135420] = 6, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, - ACTIONS(499), 1, + ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(6601), 1, - aux_sym_raw_string_literal_token2, - ACTIONS(6815), 1, - sym___double_quote, - STATE(3941), 1, - aux_sym_raw_string_literal_repeat2, + ACTIONS(6322), 1, + sym_identifier, + ACTIONS(6324), 1, + anon_sym_mut, + STATE(4288), 1, + sym_var_definition, STATE(3855), 2, sym_line_comment, sym_block_comment, - [135389] = 6, - ACTIONS(497), 1, + [135440] = 6, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, - ACTIONS(499), 1, + ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(6631), 1, - aux_sym_raw_string_literal_token1, - ACTIONS(6815), 1, - sym___single_quote, - STATE(3942), 1, - aux_sym_raw_string_literal_repeat1, + ACTIONS(6825), 1, + anon_sym_COMMA, + ACTIONS(6827), 1, + anon_sym_in, + STATE(3904), 1, + aux_sym_var_definition_list_repeat1, STATE(3856), 2, sym_line_comment, sym_block_comment, - [135409] = 6, + [135460] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(6817), 1, - sym_identifier, - ACTIONS(6819), 1, - anon_sym_LBRACE, - STATE(1831), 1, - sym__content_block, + ACTIONS(6318), 1, + anon_sym_COMMA, + ACTIONS(6320), 1, + anon_sym_RPAREN, + STATE(3780), 1, + aux_sym_type_parameters_repeat1, STATE(3857), 2, sym_line_comment, sym_block_comment, - [135429] = 5, + [135480] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(5408), 1, - anon_sym_LBRACE, - ACTIONS(6821), 1, - anon_sym_COMMA, - STATE(3858), 3, + ACTIONS(6829), 1, + anon_sym_QMARK, + ACTIONS(5284), 2, + anon_sym_SEMI, + anon_sym_RBRACK, + STATE(3858), 2, sym_line_comment, sym_block_comment, - aux_sym_match_expression_list_repeat1, - [135447] = 6, - ACTIONS(497), 1, + [135498] = 6, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, - ACTIONS(499), 1, + ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(6631), 1, - aux_sym_raw_string_literal_token1, - ACTIONS(6824), 1, - sym___single_quote, - STATE(3769), 1, - aux_sym_raw_string_literal_repeat1, + ACTIONS(6763), 1, + sym_identifier, + ACTIONS(6831), 1, + anon_sym_LPAREN, + STATE(1479), 1, + sym_const_definition, STATE(3859), 2, sym_line_comment, sym_block_comment, - [135467] = 6, + [135518] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(5634), 1, - anon_sym_RPAREN, - ACTIONS(6826), 1, - anon_sym_COMMA, - STATE(3654), 1, - aux_sym_type_parameters_repeat1, + ACTIONS(6833), 1, + sym_identifier, + ACTIONS(6835), 1, + anon_sym_LBRACE, + STATE(2329), 1, + sym__content_block, STATE(3860), 2, sym_line_comment, sym_block_comment, - [135487] = 6, + [135538] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(6605), 1, - anon_sym_COMMA, - ACTIONS(6828), 1, - anon_sym_RPAREN, - STATE(3885), 1, - aux_sym_parameter_list_repeat1, + ACTIONS(6797), 1, + anon_sym_SEMI, + ACTIONS(6837), 1, + anon_sym_RBRACK, + STATE(3841), 1, + aux_sym_attribute_repeat1, STATE(3861), 2, sym_line_comment, sym_block_comment, - [135507] = 6, + [135558] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(6625), 1, - anon_sym_COMMA, - ACTIONS(6830), 1, - anon_sym_RPAREN, - STATE(3886), 1, - aux_sym_type_parameter_list_repeat1, + ACTIONS(6841), 1, + anon_sym_COLON, + ACTIONS(6839), 2, + anon_sym_SEMI, + anon_sym_RBRACK, STATE(3862), 2, sym_line_comment, sym_block_comment, - [135527] = 6, + [135576] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(5652), 1, + ACTIONS(5606), 1, anon_sym_RPAREN, - ACTIONS(6832), 1, + ACTIONS(6843), 1, anon_sym_COMMA, - STATE(3654), 1, + STATE(3593), 1, aux_sym_type_parameters_repeat1, STATE(3863), 2, sym_line_comment, sym_block_comment, - [135547] = 6, + [135596] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(6605), 1, + ACTIONS(6613), 1, anon_sym_COMMA, - ACTIONS(6834), 1, + ACTIONS(6845), 1, anon_sym_RPAREN, - STATE(3875), 1, + STATE(3888), 1, aux_sym_parameter_list_repeat1, STATE(3864), 2, sym_line_comment, sym_block_comment, - [135567] = 6, + [135616] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(6625), 1, + ACTIONS(6633), 1, anon_sym_COMMA, - ACTIONS(6836), 1, + ACTIONS(6847), 1, anon_sym_RPAREN, - STATE(3878), 1, + STATE(3889), 1, aux_sym_type_parameter_list_repeat1, STATE(3865), 2, sym_line_comment, sym_block_comment, - [135587] = 5, + [135636] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(3524), 1, - anon_sym_COLON_EQ, - ACTIONS(6838), 1, - anon_sym_COMMA, - STATE(3866), 3, + ACTIONS(6849), 1, + sym_identifier, + ACTIONS(6851), 1, + anon_sym_LBRACE, + STATE(481), 1, + sym__content_block, + STATE(3866), 2, sym_line_comment, sym_block_comment, - aux_sym_strictly_expression_list_repeat1, - [135605] = 6, - ACTIONS(3), 1, + [135656] = 5, + ACTIONS(497), 1, anon_sym_SLASH_SLASH, - ACTIONS(5), 1, + ACTIONS(499), 1, anon_sym_SLASH_STAR, - ACTIONS(6310), 1, - anon_sym_COMMA, - ACTIONS(6841), 1, - anon_sym_RBRACK, - STATE(3879), 1, - aux_sym_type_parameters_repeat1, - STATE(3867), 2, + ACTIONS(6853), 1, + aux_sym_raw_string_literal_token2, + ACTIONS(6856), 1, + sym___double_quote, + STATE(3867), 3, sym_line_comment, sym_block_comment, - [135625] = 5, - ACTIONS(3), 1, + aux_sym_raw_string_literal_repeat2, + [135674] = 5, + ACTIONS(497), 1, anon_sym_SLASH_SLASH, - ACTIONS(5), 1, + ACTIONS(499), 1, anon_sym_SLASH_STAR, - ACTIONS(6843), 1, - anon_sym_COMMA, - ACTIONS(6846), 1, - anon_sym_RPAREN, + ACTIONS(6858), 1, + aux_sym_raw_string_literal_token1, + ACTIONS(6861), 1, + sym___single_quote, STATE(3868), 3, sym_line_comment, sym_block_comment, - aux_sym_type_parameter_list_repeat1, - [135643] = 6, + aux_sym_raw_string_literal_repeat1, + [135692] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(6605), 1, - anon_sym_COMMA, - ACTIONS(6848), 1, - anon_sym_RPAREN, - STATE(3892), 1, - aux_sym_parameter_list_repeat1, + ACTIONS(6863), 1, + sym_identifier, + ACTIONS(6865), 1, + anon_sym_PIPE, + STATE(3954), 1, + sym_reference_expression, STATE(3869), 2, sym_line_comment, sym_block_comment, - [135663] = 6, - ACTIONS(497), 1, + [135712] = 6, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, - ACTIONS(499), 1, + ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(6601), 1, - aux_sym_raw_string_literal_token2, - ACTIONS(6824), 1, - sym___double_quote, - STATE(3770), 1, - aux_sym_raw_string_literal_repeat2, + ACTIONS(6633), 1, + anon_sym_COMMA, + ACTIONS(6867), 1, + anon_sym_RPAREN, + STATE(3970), 1, + aux_sym_type_parameter_list_repeat1, STATE(3870), 2, sym_line_comment, sym_block_comment, - [135683] = 6, + [135732] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(6625), 1, + ACTIONS(3484), 1, + anon_sym_COLON_EQ, + ACTIONS(5000), 1, anon_sym_COMMA, - ACTIONS(6850), 1, - anon_sym_RPAREN, - STATE(3868), 1, - aux_sym_type_parameter_list_repeat1, + STATE(3809), 1, + aux_sym_strictly_expression_list_repeat1, STATE(3871), 2, sym_line_comment, sym_block_comment, - [135703] = 6, + [135752] = 4, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(6310), 1, - anon_sym_COMMA, - ACTIONS(6852), 1, - anon_sym_RBRACK, - STATE(3888), 1, - aux_sym_type_parameters_repeat1, STATE(3872), 2, sym_line_comment, sym_block_comment, - [135723] = 6, + ACTIONS(6477), 3, + anon_sym_COMMA, + anon_sym_GT, + anon_sym_RBRACK, + [135768] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(5622), 1, - anon_sym_RPAREN, - ACTIONS(6854), 1, + ACTIONS(6332), 1, anon_sym_COMMA, - STATE(3654), 1, + ACTIONS(6869), 1, + anon_sym_RBRACK, + STATE(3593), 1, aux_sym_type_parameters_repeat1, STATE(3873), 2, sym_line_comment, sym_block_comment, - [135743] = 6, - ACTIONS(497), 1, + [135788] = 6, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, - ACTIONS(499), 1, + ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(6631), 1, - aux_sym_raw_string_literal_token1, - ACTIONS(6733), 1, - sym___single_quote, - STATE(3813), 1, - aux_sym_raw_string_literal_repeat1, + ACTIONS(6633), 1, + anon_sym_COMMA, + ACTIONS(6871), 1, + anon_sym_RPAREN, + STATE(3843), 1, + aux_sym_type_parameter_list_repeat1, STATE(3874), 2, sym_line_comment, sym_block_comment, - [135763] = 6, + [135808] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(6605), 1, + ACTIONS(6613), 1, anon_sym_COMMA, - ACTIONS(6856), 1, + ACTIONS(6873), 1, anon_sym_RPAREN, - STATE(3892), 1, + STATE(3844), 1, aux_sym_parameter_list_repeat1, STATE(3875), 2, sym_line_comment, sym_block_comment, - [135783] = 6, + [135828] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(5464), 1, + ACTIONS(5664), 1, + anon_sym_RPAREN, + ACTIONS(6875), 1, anon_sym_COMMA, - ACTIONS(5853), 1, - anon_sym_LBRACE, - STATE(3882), 1, - aux_sym_expression_without_blocks_list_repeat1, + STATE(3593), 1, + aux_sym_type_parameters_repeat1, STATE(3876), 2, sym_line_comment, sym_block_comment, - [135803] = 5, + [135848] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(6858), 1, + ACTIONS(6332), 1, anon_sym_COMMA, - ACTIONS(6861), 1, - anon_sym_in, - STATE(3877), 3, + ACTIONS(6877), 1, + anon_sym_RBRACK, + STATE(3833), 1, + aux_sym_type_parameters_repeat1, + STATE(3877), 2, sym_line_comment, sym_block_comment, - aux_sym_var_definition_list_repeat1, - [135821] = 6, - ACTIONS(3), 1, + [135868] = 6, + ACTIONS(497), 1, anon_sym_SLASH_SLASH, - ACTIONS(5), 1, + ACTIONS(499), 1, anon_sym_SLASH_STAR, - ACTIONS(6625), 1, - anon_sym_COMMA, - ACTIONS(6863), 1, - anon_sym_RPAREN, + ACTIONS(6611), 1, + sym___single_quote, + ACTIONS(6627), 1, + aux_sym_raw_string_literal_token1, STATE(3868), 1, - aux_sym_type_parameter_list_repeat1, + aux_sym_raw_string_literal_repeat1, STATE(3878), 2, sym_line_comment, sym_block_comment, - [135841] = 6, + [135888] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(6310), 1, + ACTIONS(6332), 1, anon_sym_COMMA, - ACTIONS(6865), 1, + ACTIONS(6334), 1, anon_sym_RBRACK, - STATE(3654), 1, + STATE(3967), 1, aux_sym_type_parameters_repeat1, STATE(3879), 2, sym_line_comment, sym_block_comment, - [135861] = 6, + [135908] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(6310), 1, - anon_sym_COMMA, - ACTIONS(6867), 1, - anon_sym_RBRACK, - STATE(3894), 1, - aux_sym_type_parameters_repeat1, + ACTIONS(6464), 1, + anon_sym_DOT, + ACTIONS(6466), 1, + anon_sym_RBRACE, + ACTIONS(6470), 1, + aux_sym_format_specifier_token1, STATE(3880), 2, sym_line_comment, sym_block_comment, - [135881] = 6, + [135928] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(6605), 1, + ACTIONS(6879), 1, anon_sym_COMMA, - ACTIONS(6869), 1, + ACTIONS(6881), 1, anon_sym_RPAREN, - STATE(3892), 1, - aux_sym_parameter_list_repeat1, + STATE(3968), 1, + aux_sym_type_parameters_repeat1, STATE(3881), 2, sym_line_comment, sym_block_comment, - [135901] = 5, + [135948] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(4830), 1, + ACTIONS(6883), 1, + sym_identifier, + ACTIONS(6885), 1, anon_sym_LBRACE, - ACTIONS(6871), 1, - anon_sym_COMMA, - STATE(3882), 3, + STATE(2041), 1, + sym__content_block, + STATE(3882), 2, sym_line_comment, sym_block_comment, - aux_sym_expression_without_blocks_list_repeat1, - [135919] = 6, + [135968] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(6605), 1, + ACTIONS(6332), 1, anon_sym_COMMA, - ACTIONS(6874), 1, - anon_sym_RPAREN, - STATE(3754), 1, - aux_sym_parameter_list_repeat1, + ACTIONS(6887), 1, + anon_sym_RBRACK, + STATE(3897), 1, + aux_sym_type_parameters_repeat1, STATE(3883), 2, sym_line_comment, sym_block_comment, - [135939] = 6, - ACTIONS(3), 1, + [135988] = 6, + ACTIONS(497), 1, anon_sym_SLASH_SLASH, - ACTIONS(5), 1, + ACTIONS(499), 1, anon_sym_SLASH_STAR, - ACTIONS(6876), 1, - sym_identifier, - ACTIONS(6878), 1, - anon_sym_LBRACE, - STATE(1340), 1, - sym__content_block, + ACTIONS(6609), 1, + aux_sym_raw_string_literal_token2, + ACTIONS(6889), 1, + sym___double_quote, + STATE(3867), 1, + aux_sym_raw_string_literal_repeat2, STATE(3884), 2, sym_line_comment, sym_block_comment, - [135959] = 6, + [136008] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(6605), 1, - anon_sym_COMMA, - ACTIONS(6880), 1, - anon_sym_RPAREN, - STATE(3892), 1, - aux_sym_parameter_list_repeat1, + ACTIONS(6763), 1, + sym_identifier, + ACTIONS(6891), 1, + anon_sym_LPAREN, + STATE(1514), 1, + sym_const_definition, STATE(3885), 2, sym_line_comment, sym_block_comment, - [135979] = 6, - ACTIONS(3), 1, + [136028] = 6, + ACTIONS(497), 1, anon_sym_SLASH_SLASH, - ACTIONS(5), 1, + ACTIONS(499), 1, anon_sym_SLASH_STAR, - ACTIONS(6625), 1, - anon_sym_COMMA, - ACTIONS(6882), 1, - anon_sym_RPAREN, + ACTIONS(6627), 1, + aux_sym_raw_string_literal_token1, + ACTIONS(6889), 1, + sym___single_quote, STATE(3868), 1, - aux_sym_type_parameter_list_repeat1, + aux_sym_raw_string_literal_repeat1, STATE(3886), 2, sym_line_comment, sym_block_comment, - [135999] = 6, - ACTIONS(3), 1, + [136048] = 6, + ACTIONS(497), 1, anon_sym_SLASH_SLASH, - ACTIONS(5), 1, + ACTIONS(499), 1, anon_sym_SLASH_STAR, - ACTIONS(6625), 1, - anon_sym_COMMA, - ACTIONS(6884), 1, - anon_sym_RPAREN, - STATE(3994), 1, - aux_sym_type_parameter_list_repeat1, + ACTIONS(6627), 1, + aux_sym_raw_string_literal_token1, + ACTIONS(6893), 1, + sym___single_quote, + STATE(3868), 1, + aux_sym_raw_string_literal_repeat1, STATE(3887), 2, sym_line_comment, sym_block_comment, - [136019] = 6, + [136068] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(6310), 1, + ACTIONS(6613), 1, anon_sym_COMMA, - ACTIONS(6886), 1, - anon_sym_RBRACK, - STATE(3654), 1, - aux_sym_type_parameters_repeat1, + ACTIONS(6895), 1, + anon_sym_RPAREN, + STATE(3965), 1, + aux_sym_parameter_list_repeat1, STATE(3888), 2, sym_line_comment, sym_block_comment, - [136039] = 6, + [136088] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(6888), 1, + ACTIONS(6633), 1, anon_sym_COMMA, - ACTIONS(6890), 1, + ACTIONS(6897), 1, anon_sym_RPAREN, - STATE(3987), 1, - aux_sym_type_parameters_repeat1, + STATE(3807), 1, + aux_sym_type_parameter_list_repeat1, STATE(3889), 2, sym_line_comment, sym_block_comment, - [136059] = 4, - ACTIONS(3), 1, + [136108] = 4, + ACTIONS(497), 1, anon_sym_SLASH_SLASH, - ACTIONS(5), 1, + ACTIONS(499), 1, anon_sym_SLASH_STAR, STATE(3890), 2, sym_line_comment, sym_block_comment, - ACTIONS(6892), 3, - anon_sym_COMMA, - anon_sym_GT, - anon_sym_RBRACK, - [136075] = 6, + ACTIONS(6899), 3, + aux_sym_block_comment_token1, + aux_sym_block_comment_token2, + anon_sym_STAR_SLASH, + [136124] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(3971), 1, + ACTIONS(4010), 1, anon_sym_LBRACE, - ACTIONS(5134), 1, + ACTIONS(5182), 1, anon_sym_COMMA, - STATE(3914), 1, + STATE(3802), 1, aux_sym_strictly_expression_list_repeat1, STATE(3891), 2, sym_line_comment, sym_block_comment, - [136095] = 5, - ACTIONS(3), 1, + [136144] = 6, + ACTIONS(497), 1, anon_sym_SLASH_SLASH, - ACTIONS(5), 1, + ACTIONS(499), 1, anon_sym_SLASH_STAR, - ACTIONS(6894), 1, - anon_sym_COMMA, - ACTIONS(6897), 1, - anon_sym_RPAREN, - STATE(3892), 3, + ACTIONS(6609), 1, + aux_sym_raw_string_literal_token2, + ACTIONS(6901), 1, + sym___double_quote, + STATE(3867), 1, + aux_sym_raw_string_literal_repeat2, + STATE(3892), 2, sym_line_comment, sym_block_comment, - aux_sym_parameter_list_repeat1, - [136113] = 6, - ACTIONS(3), 1, + [136164] = 6, + ACTIONS(497), 1, anon_sym_SLASH_SLASH, - ACTIONS(5), 1, + ACTIONS(499), 1, anon_sym_SLASH_STAR, - ACTIONS(3997), 1, - anon_sym_LBRACE, - ACTIONS(5134), 1, - anon_sym_COMMA, - STATE(3914), 1, - aux_sym_strictly_expression_list_repeat1, + ACTIONS(6627), 1, + aux_sym_raw_string_literal_token1, + ACTIONS(6903), 1, + sym___single_quote, + STATE(3868), 1, + aux_sym_raw_string_literal_repeat1, STATE(3893), 2, sym_line_comment, sym_block_comment, - [136133] = 6, - ACTIONS(3), 1, + [136184] = 6, + ACTIONS(497), 1, anon_sym_SLASH_SLASH, - ACTIONS(5), 1, + ACTIONS(499), 1, anon_sym_SLASH_STAR, - ACTIONS(6310), 1, - anon_sym_COMMA, - ACTIONS(6899), 1, - anon_sym_RBRACK, - STATE(3654), 1, - aux_sym_type_parameters_repeat1, + ACTIONS(6609), 1, + aux_sym_raw_string_literal_token2, + ACTIONS(6903), 1, + sym___double_quote, + STATE(3867), 1, + aux_sym_raw_string_literal_repeat2, STATE(3894), 2, sym_line_comment, sym_block_comment, - [136153] = 4, + [136204] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, + ACTIONS(6332), 1, + anon_sym_COMMA, + ACTIONS(6905), 1, + anon_sym_RBRACK, + STATE(3593), 1, + aux_sym_type_parameters_repeat1, STATE(3895), 2, sym_line_comment, sym_block_comment, - ACTIONS(6901), 3, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_LT2, - [136169] = 6, + [136224] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(6903), 1, - sym_identifier, - ACTIONS(6905), 1, - anon_sym_LBRACE, - STATE(1007), 1, - sym__content_block, + ACTIONS(6633), 1, + anon_sym_COMMA, + ACTIONS(6907), 1, + anon_sym_RPAREN, + STATE(3807), 1, + aux_sym_type_parameter_list_repeat1, STATE(3896), 2, sym_line_comment, sym_block_comment, - [136189] = 6, + [136244] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(6907), 1, + ACTIONS(6332), 1, anon_sym_COMMA, ACTIONS(6909), 1, anon_sym_RBRACK, - STATE(3954), 1, - aux_sym_capture_list_repeat1, + STATE(3593), 1, + aux_sym_type_parameters_repeat1, STATE(3897), 2, sym_line_comment, sym_block_comment, - [136209] = 6, + [136264] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, + ACTIONS(6613), 1, + anon_sym_COMMA, ACTIONS(6911), 1, - sym_identifier, - ACTIONS(6913), 1, - anon_sym_LBRACE, - STATE(1137), 1, - sym__content_block, + anon_sym_RPAREN, + STATE(3965), 1, + aux_sym_parameter_list_repeat1, STATE(3898), 2, sym_line_comment, sym_block_comment, - [136229] = 6, + [136284] = 6, ACTIONS(497), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, anon_sym_SLASH_STAR, - ACTIONS(6601), 1, + ACTIONS(6609), 1, aux_sym_raw_string_literal_token2, - ACTIONS(6915), 1, + ACTIONS(6893), 1, sym___double_quote, - STATE(3902), 1, + STATE(3867), 1, aux_sym_raw_string_literal_repeat2, STATE(3899), 2, sym_line_comment, sym_block_comment, - [136249] = 6, + [136304] = 6, ACTIONS(497), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, anon_sym_SLASH_STAR, - ACTIONS(6631), 1, + ACTIONS(6627), 1, aux_sym_raw_string_literal_token1, - ACTIONS(6915), 1, + ACTIONS(6901), 1, sym___single_quote, - STATE(3905), 1, + STATE(3868), 1, aux_sym_raw_string_literal_repeat1, STATE(3900), 2, sym_line_comment, sym_block_comment, - [136269] = 6, + [136324] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(6917), 1, - anon_sym_COMMA, - ACTIONS(6919), 1, - anon_sym_RPAREN, - STATE(3906), 1, - aux_sym_type_parameters_repeat1, + ACTIONS(6913), 1, + sym_identifier, + ACTIONS(6915), 1, + anon_sym_LBRACE, + STATE(2313), 1, + sym__struct_body, STATE(3901), 2, sym_line_comment, sym_block_comment, - [136289] = 6, + [136344] = 6, ACTIONS(497), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, anon_sym_SLASH_STAR, - ACTIONS(6601), 1, - aux_sym_raw_string_literal_token2, - ACTIONS(6921), 1, - sym___double_quote, - STATE(3941), 1, - aux_sym_raw_string_literal_repeat2, + ACTIONS(6627), 1, + aux_sym_raw_string_literal_token1, + ACTIONS(6917), 1, + sym___single_quote, + STATE(3828), 1, + aux_sym_raw_string_literal_repeat1, STATE(3902), 2, sym_line_comment, sym_block_comment, - [136309] = 6, + [136364] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(6310), 1, + ACTIONS(6332), 1, anon_sym_COMMA, - ACTIONS(6923), 1, + ACTIONS(6919), 1, anon_sym_RBRACK, - STATE(3654), 1, + STATE(3895), 1, aux_sym_type_parameters_repeat1, STATE(3903), 2, sym_line_comment, sym_block_comment, - [136329] = 6, + [136384] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(6661), 1, + ACTIONS(6921), 1, anon_sym_COMMA, - ACTIONS(6925), 1, - anon_sym_PIPE, - STATE(3776), 1, - aux_sym_short_lambda_repeat1, - STATE(3904), 2, + ACTIONS(6924), 1, + anon_sym_in, + STATE(3904), 3, sym_line_comment, sym_block_comment, - [136349] = 6, - ACTIONS(497), 1, + aux_sym_var_definition_list_repeat1, + [136402] = 6, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, - ACTIONS(499), 1, + ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(6631), 1, - aux_sym_raw_string_literal_token1, - ACTIONS(6921), 1, - sym___single_quote, - STATE(3942), 1, - aux_sym_raw_string_literal_repeat1, + ACTIONS(4010), 1, + anon_sym_SEMI, + ACTIONS(5154), 1, + anon_sym_COMMA, + STATE(3849), 1, + aux_sym_strictly_expression_list_repeat1, STATE(3905), 2, sym_line_comment, sym_block_comment, - [136369] = 6, + [136422] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(5628), 1, + ACTIONS(5638), 1, anon_sym_RPAREN, - ACTIONS(6927), 1, + ACTIONS(6926), 1, anon_sym_COMMA, - STATE(3654), 1, + STATE(3593), 1, aux_sym_type_parameters_repeat1, STATE(3906), 2, sym_line_comment, sym_block_comment, - [136389] = 6, + [136442] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(6929), 1, - sym_identifier, - ACTIONS(6931), 1, - anon_sym_LBRACE, - STATE(2329), 1, - sym__content_block, + ACTIONS(6088), 1, + anon_sym_RBRACK, + ACTIONS(6928), 1, + anon_sym_COMMA, + STATE(3846), 1, + aux_sym_capture_list_repeat1, STATE(3907), 2, sym_line_comment, sym_block_comment, - [136409] = 4, + [136462] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, + ACTIONS(6332), 1, + anon_sym_COMMA, + ACTIONS(6930), 1, + anon_sym_RBRACK, + STATE(3873), 1, + aux_sym_type_parameters_repeat1, STATE(3908), 2, sym_line_comment, sym_block_comment, - ACTIONS(6113), 3, - anon_sym_RBRACE, - anon_sym_DOT_DOT_DOT, - sym_identifier, - [136425] = 6, + [136482] = 4, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(6605), 1, - anon_sym_COMMA, - ACTIONS(6933), 1, - anon_sym_RPAREN, - STATE(3930), 1, - aux_sym_parameter_list_repeat1, STATE(3909), 2, sym_line_comment, sym_block_comment, - [136445] = 6, + ACTIONS(6932), 3, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_LT2, + [136498] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(6625), 1, + ACTIONS(6633), 1, anon_sym_COMMA, - ACTIONS(6935), 1, + ACTIONS(6934), 1, anon_sym_RPAREN, - STATE(3940), 1, + STATE(3896), 1, aux_sym_type_parameter_list_repeat1, STATE(3910), 2, sym_line_comment, sym_block_comment, - [136465] = 6, - ACTIONS(497), 1, + [136518] = 6, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, - ACTIONS(499), 1, + ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(6601), 1, - aux_sym_raw_string_literal_token2, - ACTIONS(6937), 1, - sym___double_quote, - STATE(3934), 1, - aux_sym_raw_string_literal_repeat2, + ACTIONS(6936), 1, + sym_identifier, + ACTIONS(6938), 1, + anon_sym_LBRACE, + STATE(1157), 1, + sym__content_block, STATE(3911), 2, sym_line_comment, sym_block_comment, - [136485] = 6, + [136538] = 4, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(6939), 1, - sym_identifier, - ACTIONS(6941), 1, - anon_sym_LBRACE, - STATE(2635), 1, - sym__content_block, STATE(3912), 2, sym_line_comment, sym_block_comment, - [136505] = 6, + ACTIONS(6940), 3, + anon_sym_LBRACE, + anon_sym_LPAREN, + anon_sym_EQ, + [136554] = 6, ACTIONS(497), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, anon_sym_SLASH_STAR, - ACTIONS(6631), 1, - aux_sym_raw_string_literal_token1, - ACTIONS(6937), 1, - sym___single_quote, - STATE(3938), 1, - aux_sym_raw_string_literal_repeat1, + ACTIONS(6609), 1, + aux_sym_raw_string_literal_token2, + ACTIONS(6942), 1, + sym___double_quote, + STATE(3899), 1, + aux_sym_raw_string_literal_repeat2, STATE(3913), 2, sym_line_comment, sym_block_comment, - [136525] = 5, + [136574] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(3524), 1, - anon_sym_LBRACE, - ACTIONS(6943), 1, + ACTIONS(6613), 1, anon_sym_COMMA, - STATE(3914), 3, + ACTIONS(6944), 1, + anon_sym_RPAREN, + STATE(3898), 1, + aux_sym_parameter_list_repeat1, + STATE(3914), 2, sym_line_comment, sym_block_comment, - aux_sym_strictly_expression_list_repeat1, - [136543] = 6, + [136594] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(6625), 1, - anon_sym_COMMA, ACTIONS(6946), 1, + sym_identifier, + ACTIONS(6948), 1, + anon_sym_LBRACE, + STATE(2628), 1, + sym__content_block, + STATE(3915), 2, + sym_line_comment, + sym_block_comment, + [136614] = 6, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(6633), 1, + anon_sym_COMMA, + ACTIONS(6950), 1, anon_sym_RPAREN, - STATE(3868), 1, + STATE(3835), 1, aux_sym_type_parameter_list_repeat1, - STATE(3915), 2, + STATE(3916), 2, sym_line_comment, sym_block_comment, - [136563] = 6, + [136634] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(6605), 1, + ACTIONS(6613), 1, anon_sym_COMMA, - ACTIONS(6948), 1, + ACTIONS(6952), 1, anon_sym_RPAREN, - STATE(3892), 1, + STATE(3836), 1, aux_sym_parameter_list_repeat1, - STATE(3916), 2, + STATE(3917), 2, + sym_line_comment, + sym_block_comment, + [136654] = 6, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(5652), 1, + anon_sym_RPAREN, + ACTIONS(6954), 1, + anon_sym_COMMA, + STATE(3593), 1, + aux_sym_type_parameters_repeat1, + STATE(3918), 2, + sym_line_comment, + sym_block_comment, + [136674] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(4838), 1, + anon_sym_LBRACE, + ACTIONS(6956), 1, + anon_sym_COMMA, + STATE(3919), 3, sym_line_comment, sym_block_comment, - [136583] = 6, + aux_sym_expression_without_blocks_list_repeat1, + [136692] = 6, ACTIONS(497), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, anon_sym_SLASH_STAR, - ACTIONS(6601), 1, + ACTIONS(6609), 1, aux_sym_raw_string_literal_token2, - ACTIONS(6950), 1, + ACTIONS(6959), 1, sym___double_quote, - STATE(3946), 1, + STATE(3949), 1, aux_sym_raw_string_literal_repeat2, - STATE(3917), 2, + STATE(3920), 2, sym_line_comment, sym_block_comment, - [136603] = 6, + [136712] = 6, ACTIONS(497), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, anon_sym_SLASH_STAR, - ACTIONS(6631), 1, + ACTIONS(6627), 1, aux_sym_raw_string_literal_token1, - ACTIONS(6950), 1, + ACTIONS(6959), 1, sym___single_quote, - STATE(3947), 1, + STATE(3950), 1, aux_sym_raw_string_literal_repeat1, - STATE(3918), 2, + STATE(3921), 2, sym_line_comment, sym_block_comment, - [136623] = 6, + [136732] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(3971), 1, - anon_sym_COLON_EQ, - ACTIONS(4996), 1, + ACTIONS(5640), 1, + anon_sym_RPAREN, + ACTIONS(6961), 1, anon_sym_COMMA, - STATE(3866), 1, - aux_sym_strictly_expression_list_repeat1, - STATE(3919), 2, + STATE(3593), 1, + aux_sym_type_parameters_repeat1, + STATE(3922), 2, sym_line_comment, sym_block_comment, - [136643] = 4, + [136752] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - STATE(3920), 2, + ACTIONS(6613), 1, + anon_sym_COMMA, + ACTIONS(6963), 1, + anon_sym_RPAREN, + STATE(3990), 1, + aux_sym_parameter_list_repeat1, + STATE(3923), 2, sym_line_comment, sym_block_comment, - ACTIONS(6952), 3, - anon_sym_LBRACE, - anon_sym_LPAREN, - anon_sym_EQ, - [136659] = 6, + [136772] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(6954), 1, + ACTIONS(6633), 1, anon_sym_COMMA, - ACTIONS(6956), 1, + ACTIONS(6965), 1, anon_sym_RPAREN, - STATE(3843), 1, - aux_sym_type_parameters_repeat1, - STATE(3921), 2, + STATE(3999), 1, + aux_sym_type_parameter_list_repeat1, + STATE(3924), 2, sym_line_comment, sym_block_comment, - [136679] = 6, - ACTIONS(3), 1, + [136792] = 6, + ACTIONS(497), 1, anon_sym_SLASH_SLASH, - ACTIONS(5), 1, + ACTIONS(499), 1, anon_sym_SLASH_STAR, - ACTIONS(3478), 1, - anon_sym_LBRACE, - ACTIONS(5134), 1, - anon_sym_COMMA, - STATE(3891), 1, - aux_sym_strictly_expression_list_repeat1, - STATE(3922), 2, + ACTIONS(6609), 1, + aux_sym_raw_string_literal_token2, + ACTIONS(6917), 1, + sym___double_quote, + STATE(3829), 1, + aux_sym_raw_string_literal_repeat2, + STATE(3925), 2, sym_line_comment, sym_block_comment, - [136699] = 6, - ACTIONS(3), 1, + [136812] = 6, + ACTIONS(497), 1, anon_sym_SLASH_SLASH, - ACTIONS(5), 1, + ACTIONS(499), 1, anon_sym_SLASH_STAR, - ACTIONS(6745), 1, - anon_sym_SEMI, - ACTIONS(6958), 1, - anon_sym_RBRACK, - STATE(3826), 1, - aux_sym_attribute_repeat1, - STATE(3923), 2, + ACTIONS(6627), 1, + aux_sym_raw_string_literal_token1, + ACTIONS(6942), 1, + sym___single_quote, + STATE(3887), 1, + aux_sym_raw_string_literal_repeat1, + STATE(3926), 2, sym_line_comment, sym_block_comment, - [136719] = 6, - ACTIONS(3), 1, + [136832] = 6, + ACTIONS(497), 1, anon_sym_SLASH_SLASH, - ACTIONS(5), 1, + ACTIONS(499), 1, anon_sym_SLASH_STAR, - ACTIONS(6310), 1, - anon_sym_COMMA, - ACTIONS(6960), 1, - anon_sym_RBRACK, - STATE(3948), 1, - aux_sym_type_parameters_repeat1, - STATE(3924), 2, + ACTIONS(6627), 1, + aux_sym_raw_string_literal_token1, + ACTIONS(6967), 1, + sym___single_quote, + STATE(3868), 1, + aux_sym_raw_string_literal_repeat1, + STATE(3927), 2, sym_line_comment, sym_block_comment, - [136739] = 6, + [136852] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(2743), 1, + ACTIONS(2135), 1, anon_sym_COMMA, - ACTIONS(5050), 1, + ACTIONS(4998), 1, anon_sym_LBRACE, - STATE(2726), 1, + STATE(2684), 1, sym_block, - STATE(3925), 2, + STATE(3928), 2, sym_line_comment, sym_block_comment, - [136759] = 5, + [136872] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - STATE(2637), 1, + STATE(2631), 1, sym_type_initializer_body, - ACTIONS(2679), 2, + ACTIONS(2722), 2, anon_sym_LBRACE, anon_sym_COMMA, - STATE(3926), 2, + STATE(3929), 2, sym_line_comment, sym_block_comment, - [136777] = 6, - ACTIONS(3), 1, + [136890] = 6, + ACTIONS(497), 1, anon_sym_SLASH_SLASH, - ACTIONS(5), 1, + ACTIONS(499), 1, anon_sym_SLASH_STAR, - ACTIONS(6962), 1, - anon_sym_DOT, - ACTIONS(6964), 1, - anon_sym_RBRACE, - ACTIONS(6966), 1, - aux_sym_format_specifier_token1, - STATE(3927), 2, + ACTIONS(6609), 1, + aux_sym_raw_string_literal_token2, + ACTIONS(6967), 1, + sym___double_quote, + STATE(3867), 1, + aux_sym_raw_string_literal_repeat2, + STATE(3930), 2, sym_line_comment, sym_block_comment, - [136797] = 6, - ACTIONS(3), 1, + [136910] = 6, + ACTIONS(497), 1, anon_sym_SLASH_SLASH, - ACTIONS(5), 1, + ACTIONS(499), 1, anon_sym_SLASH_STAR, - ACTIONS(4775), 1, - anon_sym_COMMA, - ACTIONS(4777), 1, - anon_sym_COLON_EQ, - STATE(3768), 1, - aux_sym_identifier_list_repeat1, - STATE(3928), 2, + ACTIONS(6627), 1, + aux_sym_raw_string_literal_token1, + ACTIONS(6969), 1, + sym___single_quote, + STATE(3868), 1, + aux_sym_raw_string_literal_repeat1, + STATE(3931), 2, sym_line_comment, sym_block_comment, - [136817] = 6, + [136930] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(6968), 1, + ACTIONS(6613), 1, anon_sym_COMMA, - ACTIONS(6970), 1, + ACTIONS(6971), 1, anon_sym_RPAREN, - STATE(3771), 1, - aux_sym_type_parameters_repeat1, - STATE(3929), 2, + STATE(3988), 1, + aux_sym_parameter_list_repeat1, + STATE(3932), 2, sym_line_comment, sym_block_comment, - [136837] = 6, + [136950] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(6605), 1, + ACTIONS(6633), 1, anon_sym_COMMA, - ACTIONS(6972), 1, + ACTIONS(6973), 1, anon_sym_RPAREN, - STATE(3892), 1, - aux_sym_parameter_list_repeat1, - STATE(3930), 2, + STATE(3807), 1, + aux_sym_type_parameter_list_repeat1, + STATE(3933), 2, sym_line_comment, sym_block_comment, - [136857] = 6, + [136970] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(2665), 1, + ACTIONS(2742), 1, anon_sym_COMMA, - ACTIONS(6974), 1, + ACTIONS(6975), 1, anon_sym_LBRACE, - STATE(2637), 1, + STATE(2631), 1, sym_type_initializer_body, - STATE(3931), 2, + STATE(3934), 2, sym_line_comment, sym_block_comment, - [136877] = 6, + [136990] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(6316), 1, - sym_identifier, - ACTIONS(6318), 1, - anon_sym_mut, - STATE(4292), 1, - sym_var_definition, - STATE(3932), 2, + ACTIONS(6332), 1, + anon_sym_COMMA, + ACTIONS(6977), 1, + anon_sym_RBRACK, + STATE(3593), 1, + aux_sym_type_parameters_repeat1, + STATE(3935), 2, sym_line_comment, sym_block_comment, - [136897] = 5, + [137010] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - STATE(2637), 1, + STATE(2631), 1, sym_type_initializer_body, - ACTIONS(2653), 2, + ACTIONS(2748), 2, anon_sym_LBRACE, anon_sym_COMMA, - STATE(3933), 2, + STATE(3936), 2, sym_line_comment, sym_block_comment, - [136915] = 6, - ACTIONS(497), 1, + [137028] = 6, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, - ACTIONS(499), 1, + ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(6601), 1, - aux_sym_raw_string_literal_token2, - ACTIONS(6976), 1, - sym___double_quote, - STATE(3941), 1, - aux_sym_raw_string_literal_repeat2, - STATE(3934), 2, + ACTIONS(6979), 1, + sym_identifier, + ACTIONS(6981), 1, + anon_sym_LBRACE, + STATE(1093), 1, + sym__content_block, + STATE(3937), 2, sym_line_comment, sym_block_comment, - [136935] = 6, + [137048] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(6770), 1, + ACTIONS(5478), 1, anon_sym_COMMA, - ACTIONS(6978), 1, - anon_sym_in, - STATE(3877), 1, - aux_sym_var_definition_list_repeat1, - STATE(3935), 2, + ACTIONS(5862), 1, + anon_sym_LBRACE, + STATE(3919), 1, + aux_sym_expression_without_blocks_list_repeat1, + STATE(3938), 2, sym_line_comment, sym_block_comment, - [136955] = 5, + [137068] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(6980), 1, + ACTIONS(6633), 1, anon_sym_COMMA, ACTIONS(6983), 1, - anon_sym_PIPE, - STATE(3936), 3, + anon_sym_RPAREN, + STATE(3987), 1, + aux_sym_type_parameter_list_repeat1, + STATE(3939), 2, sym_line_comment, sym_block_comment, - aux_sym_short_lambda_repeat1, - [136973] = 6, + [137088] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(6310), 1, - anon_sym_COMMA, ACTIONS(6985), 1, - anon_sym_RBRACK, - STATE(3903), 1, + anon_sym_COMMA, + ACTIONS(6987), 1, + anon_sym_RPAREN, + STATE(3918), 1, aux_sym_type_parameters_repeat1, - STATE(3937), 2, + STATE(3940), 2, sym_line_comment, sym_block_comment, - [136993] = 6, + [137108] = 6, ACTIONS(497), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, anon_sym_SLASH_STAR, - ACTIONS(6631), 1, + ACTIONS(6627), 1, aux_sym_raw_string_literal_token1, - ACTIONS(6976), 1, + ACTIONS(6989), 1, sym___single_quote, - STATE(3942), 1, + STATE(3893), 1, aux_sym_raw_string_literal_repeat1, - STATE(3938), 2, - sym_line_comment, - sym_block_comment, - [137013] = 5, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_STAR, - ACTIONS(6987), 1, - anon_sym_QMARK, - ACTIONS(5184), 2, - anon_sym_SEMI, - anon_sym_RBRACK, - STATE(3939), 2, + STATE(3941), 2, sym_line_comment, sym_block_comment, - [137031] = 6, + [137128] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(6625), 1, + ACTIONS(6613), 1, anon_sym_COMMA, - ACTIONS(6989), 1, - anon_sym_RPAREN, - STATE(3868), 1, - aux_sym_type_parameter_list_repeat1, - STATE(3940), 2, - sym_line_comment, - sym_block_comment, - [137051] = 5, - ACTIONS(497), 1, - anon_sym_SLASH_SLASH, - ACTIONS(499), 1, - anon_sym_SLASH_STAR, ACTIONS(6991), 1, - aux_sym_raw_string_literal_token2, - ACTIONS(6994), 1, - sym___double_quote, - STATE(3941), 3, + anon_sym_RPAREN, + STATE(3965), 1, + aux_sym_parameter_list_repeat1, + STATE(3942), 2, sym_line_comment, sym_block_comment, - aux_sym_raw_string_literal_repeat2, - [137069] = 5, + [137148] = 6, ACTIONS(497), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, anon_sym_SLASH_STAR, - ACTIONS(6996), 1, + ACTIONS(6627), 1, aux_sym_raw_string_literal_token1, - ACTIONS(6999), 1, + ACTIONS(6993), 1, sym___single_quote, - STATE(3942), 3, - sym_line_comment, - sym_block_comment, + STATE(3931), 1, aux_sym_raw_string_literal_repeat1, - [137087] = 6, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_STAR, - ACTIONS(7001), 1, - sym_identifier, - ACTIONS(7003), 1, - anon_sym_PIPE, - STATE(3904), 1, - sym_reference_expression, STATE(3943), 2, sym_line_comment, sym_block_comment, - [137107] = 6, + [137168] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(6300), 1, - anon_sym_COMMA, - ACTIONS(6302), 1, - anon_sym_RPAREN, - STATE(3873), 1, - aux_sym_type_parameters_repeat1, + ACTIONS(6763), 1, + sym_identifier, + ACTIONS(6995), 1, + anon_sym_LPAREN, + STATE(1506), 1, + sym_const_definition, STATE(3944), 2, sym_line_comment, sym_block_comment, - [137127] = 6, - ACTIONS(3), 1, + [137188] = 6, + ACTIONS(497), 1, anon_sym_SLASH_SLASH, - ACTIONS(5), 1, + ACTIONS(499), 1, anon_sym_SLASH_STAR, - ACTIONS(6310), 1, - anon_sym_COMMA, - ACTIONS(6312), 1, - anon_sym_RBRACK, - STATE(3985), 1, - aux_sym_type_parameters_repeat1, + ACTIONS(6609), 1, + aux_sym_raw_string_literal_token2, + ACTIONS(6993), 1, + sym___double_quote, + STATE(3951), 1, + aux_sym_raw_string_literal_repeat2, STATE(3945), 2, sym_line_comment, sym_block_comment, - [137147] = 6, + [137208] = 6, ACTIONS(497), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, anon_sym_SLASH_STAR, - ACTIONS(6601), 1, + ACTIONS(6609), 1, aux_sym_raw_string_literal_token2, - ACTIONS(7005), 1, + ACTIONS(6989), 1, sym___double_quote, - STATE(3941), 1, + STATE(3894), 1, aux_sym_raw_string_literal_repeat2, STATE(3946), 2, sym_line_comment, sym_block_comment, - [137167] = 6, - ACTIONS(497), 1, + [137228] = 6, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, - ACTIONS(499), 1, + ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(6631), 1, - aux_sym_raw_string_literal_token1, - ACTIONS(7005), 1, - sym___single_quote, - STATE(3942), 1, - aux_sym_raw_string_literal_repeat1, + ACTIONS(6997), 1, + sym_identifier, + ACTIONS(6999), 1, + anon_sym_LBRACE, + STATE(2836), 1, + sym__content_block, STATE(3947), 2, sym_line_comment, sym_block_comment, - [137187] = 6, + [137248] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(6310), 1, + ACTIONS(3999), 1, + anon_sym_SEMI, + ACTIONS(5154), 1, anon_sym_COMMA, - ACTIONS(7007), 1, - anon_sym_RBRACK, - STATE(3654), 1, - aux_sym_type_parameters_repeat1, + STATE(3849), 1, + aux_sym_strictly_expression_list_repeat1, STATE(3948), 2, sym_line_comment, sym_block_comment, - [137207] = 6, - ACTIONS(3), 1, + [137268] = 6, + ACTIONS(497), 1, anon_sym_SLASH_SLASH, - ACTIONS(5), 1, + ACTIONS(499), 1, anon_sym_SLASH_STAR, - ACTIONS(6310), 1, - anon_sym_COMMA, - ACTIONS(7009), 1, - anon_sym_RBRACK, - STATE(3654), 1, - aux_sym_type_parameters_repeat1, + ACTIONS(6609), 1, + aux_sym_raw_string_literal_token2, + ACTIONS(7001), 1, + sym___double_quote, + STATE(3867), 1, + aux_sym_raw_string_literal_repeat2, STATE(3949), 2, sym_line_comment, sym_block_comment, - [137227] = 6, - ACTIONS(3), 1, + [137288] = 6, + ACTIONS(497), 1, anon_sym_SLASH_SLASH, - ACTIONS(5), 1, + ACTIONS(499), 1, anon_sym_SLASH_STAR, - ACTIONS(7011), 1, - anon_sym_COMMA, - ACTIONS(7013), 1, - anon_sym_RPAREN, - STATE(3967), 1, - aux_sym_type_parameters_repeat1, + ACTIONS(6627), 1, + aux_sym_raw_string_literal_token1, + ACTIONS(7001), 1, + sym___single_quote, + STATE(3868), 1, + aux_sym_raw_string_literal_repeat1, STATE(3950), 2, sym_line_comment, sym_block_comment, - [137247] = 6, - ACTIONS(3), 1, + [137308] = 6, + ACTIONS(497), 1, anon_sym_SLASH_SLASH, - ACTIONS(5), 1, + ACTIONS(499), 1, anon_sym_SLASH_STAR, - ACTIONS(7015), 1, - anon_sym_COMMA, - ACTIONS(7017), 1, - anon_sym_RPAREN, - STATE(3989), 1, - aux_sym_type_parameters_repeat1, + ACTIONS(6609), 1, + aux_sym_raw_string_literal_token2, + ACTIONS(6969), 1, + sym___double_quote, + STATE(3867), 1, + aux_sym_raw_string_literal_repeat2, STATE(3951), 2, sym_line_comment, sym_block_comment, - [137267] = 6, + [137328] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(5648), 1, - anon_sym_RPAREN, - ACTIONS(7019), 1, + ACTIONS(7003), 1, anon_sym_COMMA, - STATE(3654), 1, - aux_sym_type_parameters_repeat1, + ACTIONS(7005), 1, + anon_sym_PIPE, + STATE(3777), 1, + aux_sym_short_lambda_repeat1, STATE(3952), 2, sym_line_comment, sym_block_comment, - [137287] = 6, + [137348] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(6605), 1, + ACTIONS(6332), 1, anon_sym_COMMA, - ACTIONS(7021), 1, - anon_sym_RPAREN, - STATE(3881), 1, - aux_sym_parameter_list_repeat1, + ACTIONS(7007), 1, + anon_sym_RBRACK, + STATE(3593), 1, + aux_sym_type_parameters_repeat1, STATE(3953), 2, sym_line_comment, sym_block_comment, - [137307] = 6, + [137368] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(6102), 1, - anon_sym_RBRACK, - ACTIONS(7023), 1, + ACTIONS(7003), 1, anon_sym_COMMA, - STATE(3837), 1, - aux_sym_capture_list_repeat1, + ACTIONS(7009), 1, + anon_sym_PIPE, + STATE(3952), 1, + aux_sym_short_lambda_repeat1, STATE(3954), 2, sym_line_comment, sym_block_comment, - [137327] = 6, + [137388] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(7025), 1, - sym_identifier, - ACTIONS(7027), 1, - anon_sym_LBRACE, - STATE(2846), 1, - sym__content_block, + ACTIONS(5622), 1, + anon_sym_RPAREN, + ACTIONS(7011), 1, + anon_sym_COMMA, + STATE(3593), 1, + aux_sym_type_parameters_repeat1, STATE(3955), 2, sym_line_comment, sym_block_comment, - [137347] = 6, - ACTIONS(497), 1, + [137408] = 6, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, - ACTIONS(499), 1, + ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(6603), 1, - sym___single_quote, - ACTIONS(6631), 1, - aux_sym_raw_string_literal_token1, - STATE(3979), 1, - aux_sym_raw_string_literal_repeat1, + ACTIONS(6633), 1, + anon_sym_COMMA, + ACTIONS(7013), 1, + anon_sym_RPAREN, + STATE(3807), 1, + aux_sym_type_parameter_list_repeat1, STATE(3956), 2, sym_line_comment, sym_block_comment, - [137367] = 6, + [137428] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(5612), 1, - anon_sym_RPAREN, - ACTIONS(7029), 1, - anon_sym_COMMA, - STATE(3654), 1, - aux_sym_type_parameters_repeat1, + ACTIONS(4557), 1, + sym_identifier, + ACTIONS(7015), 1, + anon_sym_static, + ACTIONS(7017), 1, + anon_sym_volatile, STATE(3957), 2, sym_line_comment, sym_block_comment, - [137387] = 6, + [137448] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(6605), 1, + ACTIONS(6613), 1, anon_sym_COMMA, - ACTIONS(7031), 1, + ACTIONS(7019), 1, anon_sym_RPAREN, - STATE(3982), 1, + STATE(3965), 1, aux_sym_parameter_list_repeat1, STATE(3958), 2, sym_line_comment, sym_block_comment, - [137407] = 6, + [137468] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(6625), 1, + ACTIONS(7021), 1, anon_sym_COMMA, - ACTIONS(7033), 1, + ACTIONS(7023), 1, anon_sym_RPAREN, - STATE(3983), 1, - aux_sym_type_parameter_list_repeat1, + STATE(3765), 1, + aux_sym_type_parameters_repeat1, STATE(3959), 2, sym_line_comment, sym_block_comment, - [137427] = 6, + [137488] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(6625), 1, - anon_sym_COMMA, - ACTIONS(7035), 1, + ACTIONS(5648), 1, anon_sym_RPAREN, - STATE(3992), 1, - aux_sym_type_parameter_list_repeat1, + ACTIONS(7025), 1, + anon_sym_COMMA, + STATE(3593), 1, + aux_sym_type_parameters_repeat1, STATE(3960), 2, sym_line_comment, sym_block_comment, - [137447] = 6, + [137508] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(6310), 1, + ACTIONS(6613), 1, anon_sym_COMMA, - ACTIONS(7037), 1, - anon_sym_RBRACK, - STATE(3654), 1, - aux_sym_type_parameters_repeat1, + ACTIONS(7027), 1, + anon_sym_RPAREN, + STATE(3985), 1, + aux_sym_parameter_list_repeat1, STATE(3961), 2, sym_line_comment, sym_block_comment, - [137467] = 6, + [137528] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(6625), 1, + ACTIONS(6633), 1, anon_sym_COMMA, - ACTIONS(7039), 1, + ACTIONS(7029), 1, anon_sym_RPAREN, - STATE(3868), 1, + STATE(3986), 1, aux_sym_type_parameter_list_repeat1, STATE(3962), 2, sym_line_comment, sym_block_comment, - [137487] = 6, + [137548] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(6605), 1, + ACTIONS(6613), 1, anon_sym_COMMA, - ACTIONS(7041), 1, + ACTIONS(7031), 1, anon_sym_RPAREN, - STATE(3892), 1, + STATE(3976), 1, aux_sym_parameter_list_repeat1, STATE(3963), 2, sym_line_comment, sym_block_comment, - [137507] = 6, + [137568] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(6310), 1, + ACTIONS(6332), 1, anon_sym_COMMA, - ACTIONS(7043), 1, + ACTIONS(7033), 1, anon_sym_RBRACK, - STATE(3961), 1, + STATE(3953), 1, aux_sym_type_parameters_repeat1, STATE(3964), 2, sym_line_comment, sym_block_comment, - [137527] = 6, + [137588] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(6625), 1, + ACTIONS(7035), 1, anon_sym_COMMA, - ACTIONS(7045), 1, + ACTIONS(7038), 1, anon_sym_RPAREN, - STATE(3962), 1, - aux_sym_type_parameter_list_repeat1, - STATE(3965), 2, + STATE(3965), 3, sym_line_comment, sym_block_comment, - [137547] = 6, - ACTIONS(3), 1, + aux_sym_parameter_list_repeat1, + [137606] = 6, + ACTIONS(497), 1, anon_sym_SLASH_SLASH, - ACTIONS(5), 1, + ACTIONS(499), 1, anon_sym_SLASH_STAR, - ACTIONS(6605), 1, - anon_sym_COMMA, - ACTIONS(7047), 1, - anon_sym_RPAREN, - STATE(3963), 1, - aux_sym_parameter_list_repeat1, + ACTIONS(6627), 1, + aux_sym_raw_string_literal_token1, + ACTIONS(7040), 1, + sym___single_quote, + STATE(3927), 1, + aux_sym_raw_string_literal_repeat1, STATE(3966), 2, sym_line_comment, sym_block_comment, - [137567] = 6, + [137626] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(5644), 1, - anon_sym_RPAREN, - ACTIONS(7049), 1, + ACTIONS(6332), 1, anon_sym_COMMA, - STATE(3654), 1, + ACTIONS(7042), 1, + anon_sym_RBRACK, + STATE(3593), 1, aux_sym_type_parameters_repeat1, STATE(3967), 2, sym_line_comment, sym_block_comment, - [137587] = 6, + [137646] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(6310), 1, + ACTIONS(5630), 1, + anon_sym_RPAREN, + ACTIONS(7044), 1, anon_sym_COMMA, - ACTIONS(7051), 1, - anon_sym_RBRACK, - STATE(3949), 1, + STATE(3593), 1, aux_sym_type_parameters_repeat1, STATE(3968), 2, sym_line_comment, sym_block_comment, - [137607] = 6, + [137666] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(6310), 1, + ACTIONS(7046), 1, anon_sym_COMMA, - ACTIONS(7053), 1, - anon_sym_RBRACK, - STATE(3654), 1, + ACTIONS(7048), 1, + anon_sym_RPAREN, + STATE(3922), 1, aux_sym_type_parameters_repeat1, STATE(3969), 2, sym_line_comment, sym_block_comment, - [137627] = 4, + [137686] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, + ACTIONS(6633), 1, + anon_sym_COMMA, + ACTIONS(7050), 1, + anon_sym_RPAREN, + STATE(3807), 1, + aux_sym_type_parameter_list_repeat1, STATE(3970), 2, sym_line_comment, sym_block_comment, - ACTIONS(7055), 3, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_LT2, - [137643] = 6, + [137706] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(6625), 1, + ACTIONS(6633), 1, anon_sym_COMMA, - ACTIONS(7057), 1, + ACTIONS(7052), 1, anon_sym_RPAREN, - STATE(3868), 1, + STATE(3956), 1, aux_sym_type_parameter_list_repeat1, STATE(3971), 2, sym_line_comment, sym_block_comment, - [137663] = 6, + [137726] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(6605), 1, + ACTIONS(6613), 1, anon_sym_COMMA, - ACTIONS(7059), 1, + ACTIONS(7054), 1, anon_sym_RPAREN, - STATE(3892), 1, + STATE(3958), 1, aux_sym_parameter_list_repeat1, STATE(3972), 2, sym_line_comment, sym_block_comment, - [137683] = 6, - ACTIONS(497), 1, + [137746] = 6, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, - ACTIONS(499), 1, + ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(6601), 1, - aux_sym_raw_string_literal_token2, - ACTIONS(7061), 1, - sym___double_quote, - STATE(3941), 1, - aux_sym_raw_string_literal_repeat2, + ACTIONS(5650), 1, + anon_sym_RPAREN, + ACTIONS(7056), 1, + anon_sym_COMMA, + STATE(3593), 1, + aux_sym_type_parameters_repeat1, STATE(3973), 2, sym_line_comment, sym_block_comment, - [137703] = 4, + [137766] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, + ACTIONS(6332), 1, + anon_sym_COMMA, + ACTIONS(7058), 1, + anon_sym_RBRACK, + STATE(3593), 1, + aux_sym_type_parameters_repeat1, STATE(3974), 2, sym_line_comment, sym_block_comment, - ACTIONS(7063), 3, - anon_sym_LBRACE, - anon_sym_LPAREN, - anon_sym_EQ, - [137719] = 6, + [137786] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(6310), 1, + ACTIONS(6332), 1, anon_sym_COMMA, - ACTIONS(7065), 1, + ACTIONS(7060), 1, anon_sym_RBRACK, - STATE(3969), 1, + STATE(3593), 1, aux_sym_type_parameters_repeat1, STATE(3975), 2, sym_line_comment, sym_block_comment, - [137739] = 4, + [137806] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, + ACTIONS(6613), 1, + anon_sym_COMMA, + ACTIONS(7062), 1, + anon_sym_RPAREN, + STATE(3965), 1, + aux_sym_parameter_list_repeat1, STATE(3976), 2, sym_line_comment, sym_block_comment, - ACTIONS(6451), 3, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_RBRACK, - [137755] = 6, + [137826] = 4, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(6310), 1, - anon_sym_COMMA, - ACTIONS(7067), 1, - anon_sym_RBRACK, - STATE(3991), 1, - aux_sym_type_parameters_repeat1, STATE(3977), 2, sym_line_comment, sym_block_comment, - [137775] = 6, + ACTIONS(7064), 3, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_LT2, + [137842] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(6310), 1, + ACTIONS(7066), 1, anon_sym_COMMA, - ACTIONS(7069), 1, - anon_sym_RBRACK, - STATE(3654), 1, + ACTIONS(7068), 1, + anon_sym_RPAREN, + STATE(3804), 1, aux_sym_type_parameters_repeat1, STATE(3978), 2, sym_line_comment, sym_block_comment, - [137795] = 6, - ACTIONS(497), 1, + [137862] = 6, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, - ACTIONS(499), 1, + ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(6631), 1, - aux_sym_raw_string_literal_token1, - ACTIONS(7061), 1, - sym___single_quote, - STATE(3942), 1, - aux_sym_raw_string_literal_repeat1, + ACTIONS(7070), 1, + anon_sym_COMMA, + ACTIONS(7072), 1, + anon_sym_RPAREN, + STATE(3770), 1, + aux_sym_type_parameters_repeat1, STATE(3979), 2, sym_line_comment, sym_block_comment, - [137815] = 6, + [137882] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(6625), 1, + ACTIONS(6332), 1, anon_sym_COMMA, - ACTIONS(7071), 1, - anon_sym_RPAREN, - STATE(3868), 1, - aux_sym_type_parameter_list_repeat1, + ACTIONS(7074), 1, + anon_sym_RBRACK, + STATE(3994), 1, + aux_sym_type_parameters_repeat1, STATE(3980), 2, sym_line_comment, sym_block_comment, - [137835] = 6, + [137902] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(6605), 1, + ACTIONS(6332), 1, anon_sym_COMMA, - ACTIONS(7073), 1, - anon_sym_RPAREN, - STATE(3892), 1, - aux_sym_parameter_list_repeat1, + ACTIONS(7076), 1, + anon_sym_RBRACK, + STATE(3974), 1, + aux_sym_type_parameters_repeat1, STATE(3981), 2, sym_line_comment, sym_block_comment, - [137855] = 6, + [137922] = 4, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(6605), 1, - anon_sym_COMMA, - ACTIONS(7075), 1, - anon_sym_RPAREN, - STATE(3892), 1, - aux_sym_parameter_list_repeat1, STATE(3982), 2, sym_line_comment, sym_block_comment, - [137875] = 6, + ACTIONS(3909), 3, + anon_sym_SEMI, + anon_sym_RBRACK, + anon_sym_COLON, + [137938] = 4, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(6625), 1, - anon_sym_COMMA, - ACTIONS(7077), 1, - anon_sym_RPAREN, - STATE(3868), 1, - aux_sym_type_parameter_list_repeat1, STATE(3983), 2, sym_line_comment, sym_block_comment, - [137895] = 6, - ACTIONS(3), 1, + ACTIONS(6296), 3, + anon_sym_SEMI, + anon_sym_RBRACK, + anon_sym_COLON, + [137954] = 6, + ACTIONS(497), 1, anon_sym_SLASH_SLASH, - ACTIONS(5), 1, + ACTIONS(499), 1, anon_sym_SLASH_STAR, - ACTIONS(6625), 1, - anon_sym_COMMA, - ACTIONS(7079), 1, - anon_sym_RPAREN, - STATE(3971), 1, - aux_sym_type_parameter_list_repeat1, + ACTIONS(6609), 1, + aux_sym_raw_string_literal_token2, + ACTIONS(7040), 1, + sym___double_quote, + STATE(3930), 1, + aux_sym_raw_string_literal_repeat2, STATE(3984), 2, sym_line_comment, sym_block_comment, - [137915] = 6, + [137974] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(6310), 1, + ACTIONS(6613), 1, anon_sym_COMMA, - ACTIONS(7081), 1, - anon_sym_RBRACK, - STATE(3654), 1, - aux_sym_type_parameters_repeat1, + ACTIONS(7078), 1, + anon_sym_RPAREN, + STATE(3965), 1, + aux_sym_parameter_list_repeat1, STATE(3985), 2, sym_line_comment, sym_block_comment, - [137935] = 6, + [137994] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(6605), 1, + ACTIONS(6633), 1, anon_sym_COMMA, - ACTIONS(7083), 1, + ACTIONS(7080), 1, anon_sym_RPAREN, - STATE(3972), 1, - aux_sym_parameter_list_repeat1, + STATE(3807), 1, + aux_sym_type_parameter_list_repeat1, STATE(3986), 2, sym_line_comment, sym_block_comment, - [137955] = 6, + [138014] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(5636), 1, - anon_sym_RPAREN, - ACTIONS(7085), 1, + ACTIONS(6633), 1, anon_sym_COMMA, - STATE(3654), 1, - aux_sym_type_parameters_repeat1, + ACTIONS(7082), 1, + anon_sym_RPAREN, + STATE(3807), 1, + aux_sym_type_parameter_list_repeat1, STATE(3987), 2, sym_line_comment, sym_block_comment, - [137975] = 6, + [138034] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(6310), 1, + ACTIONS(6613), 1, anon_sym_COMMA, - ACTIONS(7087), 1, - anon_sym_RBRACK, - STATE(3978), 1, - aux_sym_type_parameters_repeat1, + ACTIONS(7084), 1, + anon_sym_RPAREN, + STATE(3965), 1, + aux_sym_parameter_list_repeat1, STATE(3988), 2, sym_line_comment, sym_block_comment, - [137995] = 6, + [138054] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(5614), 1, - anon_sym_RPAREN, - ACTIONS(7089), 1, + ACTIONS(6332), 1, anon_sym_COMMA, - STATE(3654), 1, + ACTIONS(7086), 1, + anon_sym_RBRACK, + STATE(3935), 1, aux_sym_type_parameters_repeat1, STATE(3989), 2, sym_line_comment, sym_block_comment, - [138015] = 6, + [138074] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(6625), 1, + ACTIONS(6613), 1, anon_sym_COMMA, - ACTIONS(7091), 1, + ACTIONS(7088), 1, anon_sym_RPAREN, - STATE(3915), 1, - aux_sym_type_parameter_list_repeat1, + STATE(3965), 1, + aux_sym_parameter_list_repeat1, STATE(3990), 2, sym_line_comment, sym_block_comment, - [138035] = 6, + [138094] = 4, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(6310), 1, - anon_sym_COMMA, - ACTIONS(7093), 1, - anon_sym_RBRACK, - STATE(3654), 1, - aux_sym_type_parameters_repeat1, STATE(3991), 2, sym_line_comment, sym_block_comment, - [138055] = 6, + ACTIONS(6368), 3, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_RBRACK, + [138110] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(6625), 1, - anon_sym_COMMA, - ACTIONS(7095), 1, - anon_sym_RPAREN, - STATE(3868), 1, - aux_sym_type_parameter_list_repeat1, + ACTIONS(7090), 1, + sym_identifier, + ACTIONS(7092), 1, + anon_sym_LBRACE, + STATE(2537), 1, + sym__content_block, STATE(3992), 2, sym_line_comment, sym_block_comment, - [138075] = 6, + [138130] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(6605), 1, + ACTIONS(3522), 1, + anon_sym_COLON_EQ, + ACTIONS(7094), 1, anon_sym_COMMA, - ACTIONS(7097), 1, - anon_sym_RPAREN, - STATE(3916), 1, - aux_sym_parameter_list_repeat1, - STATE(3993), 2, + STATE(3993), 3, sym_line_comment, sym_block_comment, - [138095] = 6, + aux_sym_strictly_expression_list_repeat1, + [138148] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(6625), 1, + ACTIONS(6332), 1, anon_sym_COMMA, - ACTIONS(7099), 1, - anon_sym_RPAREN, - STATE(3868), 1, - aux_sym_type_parameter_list_repeat1, + ACTIONS(7097), 1, + anon_sym_RBRACK, + STATE(3593), 1, + aux_sym_type_parameters_repeat1, STATE(3994), 2, sym_line_comment, sym_block_comment, - [138115] = 6, + [138168] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(7101), 1, - sym_identifier, - ACTIONS(7103), 1, - anon_sym_LBRACE, - STATE(1993), 1, - sym__content_block, + ACTIONS(6332), 1, + anon_sym_COMMA, + ACTIONS(7099), 1, + anon_sym_RBRACK, + STATE(3975), 1, + aux_sym_type_parameters_repeat1, STATE(3995), 2, sym_line_comment, sym_block_comment, - [138135] = 6, + [138188] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(6633), 1, - sym_identifier, - ACTIONS(7105), 1, - anon_sym_LPAREN, - STATE(1532), 1, - sym_const_definition, + ACTIONS(7101), 1, + anon_sym_COMMA, + ACTIONS(7103), 1, + anon_sym_RPAREN, + STATE(3906), 1, + aux_sym_type_parameters_repeat1, STATE(3996), 2, sym_line_comment, sym_block_comment, - [138155] = 5, + [138208] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(7107), 1, + ACTIONS(6825), 1, anon_sym_COMMA, - ACTIONS(7109), 1, - anon_sym_RPAREN, + ACTIONS(7105), 1, + anon_sym_in, + STATE(3856), 1, + aux_sym_var_definition_list_repeat1, STATE(3997), 2, sym_line_comment, sym_block_comment, - [138172] = 5, + [138228] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(6341), 1, + ACTIONS(7107), 1, sym_identifier, - STATE(3494), 1, - sym_reference_expression, + ACTIONS(7109), 1, + anon_sym_LBRACE, + STATE(1984), 1, + sym__content_block, STATE(3998), 2, sym_line_comment, sym_block_comment, - [138189] = 5, + [138248] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(5052), 1, - anon_sym_LBRACE, - STATE(1792), 1, - sym_block, + ACTIONS(6633), 1, + anon_sym_COMMA, + ACTIONS(7111), 1, + anon_sym_RPAREN, + STATE(3807), 1, + aux_sym_type_parameter_list_repeat1, STATE(3999), 2, sym_line_comment, sym_block_comment, - [138206] = 5, + [138268] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(7111), 1, + ACTIONS(7113), 1, sym_identifier, - STATE(460), 1, + STATE(2193), 1, sym_type_reference_expression, STATE(4000), 2, sym_line_comment, sym_block_comment, - [138223] = 5, + [138285] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(6819), 1, + ACTIONS(6938), 1, anon_sym_LBRACE, - STATE(1783), 1, + STATE(1145), 1, sym__content_block, STATE(4001), 2, sym_line_comment, sym_block_comment, - [138240] = 5, + [138302] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(5046), 1, + ACTIONS(4998), 1, anon_sym_LBRACE, - STATE(1072), 1, + STATE(2645), 1, sym_block, STATE(4002), 2, sym_line_comment, sym_block_comment, - [138257] = 4, + [138319] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(7113), 2, - anon_sym_COMMA, - anon_sym_RPAREN, + ACTIONS(5032), 1, + anon_sym_LBRACE, + STATE(1980), 1, + sym_block, STATE(4003), 2, sym_line_comment, sym_block_comment, - [138272] = 5, + [138336] = 4, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(5066), 1, + ACTIONS(4184), 2, + anon_sym_SEMI, anon_sym_LBRACE, - STATE(1342), 1, - sym_block, STATE(4004), 2, sym_line_comment, sym_block_comment, - [138289] = 5, + [138351] = 4, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(5058), 1, + ACTIONS(4188), 2, + anon_sym_SEMI, anon_sym_LBRACE, - STATE(2401), 1, - sym_block, STATE(4005), 2, sym_line_comment, sym_block_comment, - [138306] = 5, + [138366] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(5052), 1, - anon_sym_LBRACE, - STATE(1795), 1, - sym_block, + ACTIONS(6440), 1, + sym_identifier, + STATE(317), 1, + sym_reference_expression, STATE(4006), 2, sym_line_comment, sym_block_comment, - [138323] = 5, + [138383] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(5040), 1, + ACTIONS(5042), 1, anon_sym_LBRACE, - STATE(1994), 1, + STATE(1326), 1, sym_block, STATE(4007), 2, sym_line_comment, sym_block_comment, - [138340] = 5, + [138400] = 4, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(6974), 1, - anon_sym_LBRACE, - STATE(2637), 1, - sym_type_initializer_body, + ACTIONS(6512), 2, + anon_sym_RPAREN, + sym_identifier, STATE(4008), 2, sym_line_comment, sym_block_comment, - [138357] = 5, + [138415] = 4, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(2784), 1, - anon_sym_COMMA, - ACTIONS(7115), 1, + ACTIONS(6350), 2, anon_sym_RPAREN, + sym_identifier, STATE(4009), 2, sym_line_comment, sym_block_comment, - [138374] = 5, + [138430] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(6501), 1, - sym_identifier, - STATE(421), 1, - sym_reference_expression, + ACTIONS(5058), 1, + anon_sym_LBRACE, + STATE(1983), 1, + sym_block, STATE(4010), 2, sym_line_comment, sym_block_comment, - [138391] = 4, + [138447] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(7117), 2, - anon_sym_COMMA, - anon_sym_RPAREN, + ACTIONS(6975), 1, + anon_sym_LBRACE, + STATE(2631), 1, + sym_type_initializer_body, STATE(4011), 2, sym_line_comment, sym_block_comment, - [138406] = 5, + [138464] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(7119), 1, + ACTIONS(7115), 1, anon_sym_LBRACE, - STATE(2317), 1, + STATE(2313), 1, sym__struct_body, STATE(4012), 2, sym_line_comment, sym_block_comment, - [138423] = 5, + [138481] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(7121), 1, - anon_sym_LPAREN, - STATE(1799), 1, - sym_argument_list, + ACTIONS(6523), 1, + sym_identifier, + STATE(2473), 1, + sym_reference_expression, STATE(4013), 2, sym_line_comment, sym_block_comment, - [138440] = 5, + [138498] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(7123), 1, - sym_identifier, - STATE(2551), 1, - sym_type_reference_expression, + ACTIONS(7117), 1, + anon_sym_LBRACE, + STATE(2031), 1, + sym_type_initializer_body, STATE(4014), 2, sym_line_comment, sym_block_comment, - [138457] = 5, + [138515] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(7125), 1, + ACTIONS(5042), 1, anon_sym_LBRACE, - STATE(2186), 1, - sym__struct_body, + STATE(1262), 1, + sym_block, STATE(4015), 2, sym_line_comment, sym_block_comment, - [138474] = 4, + [138532] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(7127), 2, - anon_sym_COMMA, - anon_sym_RPAREN, + ACTIONS(7119), 1, + anon_sym_LBRACE, + STATE(2313), 1, + sym__struct_body, STATE(4016), 2, sym_line_comment, sym_block_comment, - [138489] = 5, + [138549] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(5046), 1, - anon_sym_LBRACE, - STATE(1037), 1, - sym_block, + ACTIONS(2507), 1, + anon_sym_COMMA, + ACTIONS(7121), 1, + anon_sym_RPAREN, STATE(4017), 2, sym_line_comment, sym_block_comment, - [138506] = 5, + [138566] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(5040), 1, + ACTIONS(7123), 1, anon_sym_LBRACE, - STATE(1807), 1, - sym_block, + STATE(2189), 1, + sym__struct_body, STATE(4018), 2, sym_line_comment, sym_block_comment, - [138523] = 5, + [138583] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(7129), 1, + ACTIONS(7125), 1, anon_sym_LBRACE, - STATE(2317), 1, + STATE(2313), 1, sym__struct_body, STATE(4019), 2, sym_line_comment, sym_block_comment, - [138540] = 5, + [138600] = 4, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(7131), 1, - anon_sym_LBRACE, - STATE(2317), 1, - sym__struct_body, + ACTIONS(7127), 2, + anon_sym_COMMA, + anon_sym_RPAREN, STATE(4020), 2, sym_line_comment, sym_block_comment, - [138557] = 5, + [138615] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(5040), 1, + ACTIONS(5058), 1, anon_sym_LBRACE, - STATE(1974), 1, + STATE(1831), 1, sym_block, STATE(4021), 2, sym_line_comment, sym_block_comment, - [138574] = 5, + [138632] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(4713), 1, - anon_sym_LPAREN, - STATE(2036), 1, - sym_argument_list, + ACTIONS(7129), 1, + anon_sym_LBRACE, + STATE(2313), 1, + sym__struct_body, STATE(4022), 2, sym_line_comment, sym_block_comment, - [138591] = 5, + [138649] = 4, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(7103), 1, - anon_sym_LBRACE, - STATE(1972), 1, - sym__content_block, + ACTIONS(7131), 2, + anon_sym_COMMA, + anon_sym_RPAREN, STATE(4023), 2, sym_line_comment, sym_block_comment, - [138608] = 5, + [138664] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(7133), 1, - sym_identifier, - STATE(1202), 1, - sym_type_reference_expression, + ACTIONS(5058), 1, + anon_sym_LBRACE, + STATE(2063), 1, + sym_block, STATE(4024), 2, sym_line_comment, sym_block_comment, - [138625] = 5, + [138681] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(7135), 1, - sym_identifier, - STATE(2194), 1, - sym_type_reference_expression, + ACTIONS(7133), 1, + anon_sym_LPAREN, + STATE(2525), 1, + sym_special_argument_list, STATE(4025), 2, sym_line_comment, sym_block_comment, - [138642] = 4, + [138698] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(6460), 2, - anon_sym_RPAREN, - sym_identifier, + ACTIONS(7109), 1, + anon_sym_LBRACE, + STATE(2066), 1, + sym__content_block, STATE(4026), 2, sym_line_comment, sym_block_comment, - [138657] = 5, + [138715] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(7137), 1, + ACTIONS(7135), 1, anon_sym_LBRACE, - STATE(2317), 1, + STATE(2313), 1, sym__struct_body, STATE(4027), 2, sym_line_comment, sym_block_comment, - [138674] = 5, + [138732] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(7139), 1, + ACTIONS(7137), 1, anon_sym_LBRACE, - STATE(2317), 1, + STATE(2313), 1, sym__struct_body, STATE(4028), 2, sym_line_comment, sym_block_comment, - [138691] = 5, + [138749] = 4, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(7141), 1, - anon_sym_LBRACE, - STATE(2317), 1, - sym__struct_body, + ACTIONS(7139), 2, + anon_sym_COMMA, + anon_sym_RPAREN, STATE(4029), 2, sym_line_comment, sym_block_comment, - [138708] = 5, + [138764] = 4, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(5052), 1, - anon_sym_LBRACE, - STATE(1809), 1, - sym_block, + ACTIONS(6733), 2, + anon_sym_COMMA, + anon_sym_RPAREN, STATE(4030), 2, sym_line_comment, sym_block_comment, - [138725] = 5, + [138779] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(5040), 1, - anon_sym_LBRACE, - STATE(2016), 1, - sym_block, + ACTIONS(7141), 1, + anon_sym_LPAREN, + STATE(350), 1, + sym_special_argument_list, STATE(4031), 2, sym_line_comment, sym_block_comment, - [138742] = 5, + [138796] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7143), 1, - anon_sym_LPAREN, - STATE(328), 1, - sym_special_argument_list, + anon_sym_LBRACE, + STATE(2313), 1, + sym__struct_body, STATE(4032), 2, sym_line_comment, sym_block_comment, - [138759] = 5, + [138813] = 4, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(7145), 1, - anon_sym_LBRACE, - STATE(2317), 1, - sym__struct_body, + ACTIONS(7145), 2, + anon_sym_COMMA, + anon_sym_RPAREN, STATE(4033), 2, sym_line_comment, sym_block_comment, - [138776] = 5, + [138828] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(5050), 1, + ACTIONS(5052), 1, anon_sym_LBRACE, - STATE(2645), 1, + STATE(489), 1, sym_block, STATE(4034), 2, sym_line_comment, sym_block_comment, - [138793] = 5, + [138845] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(5040), 1, + ACTIONS(5050), 1, anon_sym_LBRACE, - STATE(2040), 1, + STATE(2535), 1, sym_block, STATE(4035), 2, sym_line_comment, sym_block_comment, - [138810] = 5, + [138862] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(5036), 1, + ACTIONS(7147), 1, anon_sym_LBRACE, - STATE(386), 1, - sym_block, + STATE(2313), 1, + sym__struct_body, STATE(4036), 2, sym_line_comment, sym_block_comment, - [138827] = 5, + [138879] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(5052), 1, - anon_sym_LBRACE, - STATE(1810), 1, - sym_block, + ACTIONS(2507), 1, + anon_sym_COMMA, + ACTIONS(7149), 1, + anon_sym_RPAREN, STATE(4037), 2, sym_line_comment, sym_block_comment, - [138844] = 5, + [138896] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(7147), 1, + ACTIONS(7151), 1, anon_sym_LBRACE, - STATE(2317), 1, - sym__struct_body, + STATE(2567), 1, + sym_type_initializer_body, STATE(4038), 2, sym_line_comment, sym_block_comment, - [138861] = 5, + [138913] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(7149), 1, - anon_sym_LBRACE, - STATE(2317), 1, - sym__struct_body, + ACTIONS(7153), 1, + anon_sym_COMMA, + ACTIONS(7155), 1, + anon_sym_RPAREN, STATE(4039), 2, sym_line_comment, sym_block_comment, - [138878] = 5, + [138930] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(7001), 1, - sym_identifier, - STATE(4149), 1, - sym_reference_expression, + ACTIONS(7157), 1, + anon_sym_LBRACE, + STATE(2313), 1, + sym__struct_body, STATE(4040), 2, sym_line_comment, sym_block_comment, - [138895] = 5, + [138947] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(7151), 1, - anon_sym_LBRACE, - STATE(2317), 1, - sym__struct_body, + ACTIONS(4900), 1, + sym_identifier, + ACTIONS(7159), 1, + anon_sym_volatile, STATE(4041), 2, sym_line_comment, sym_block_comment, - [138912] = 5, + [138964] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(4663), 1, + ACTIONS(7161), 1, anon_sym_LBRACE, - STATE(1573), 1, - sym_block, + STATE(2313), 1, + sym__struct_body, STATE(4042), 2, sym_line_comment, sym_block_comment, - [138929] = 5, + [138981] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(7153), 1, - sym_identifier, - STATE(1482), 1, - sym_label_reference, + ACTIONS(4663), 1, + anon_sym_LBRACE, + STATE(1531), 1, + sym_block, STATE(4043), 2, sym_line_comment, sym_block_comment, - [138946] = 5, + [138998] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(6639), 1, - anon_sym_LBRACE, - STATE(2317), 1, - sym__struct_body, + ACTIONS(7163), 1, + sym_identifier, + STATE(1528), 1, + sym_label_reference, STATE(4044), 2, sym_line_comment, sym_block_comment, - [138963] = 5, + [139015] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(7155), 1, - anon_sym_COMMA, - ACTIONS(7157), 1, - anon_sym_RPAREN, + ACTIONS(6915), 1, + anon_sym_LBRACE, + STATE(2313), 1, + sym__struct_body, STATE(4045), 2, sym_line_comment, sym_block_comment, - [138980] = 5, + [139032] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(6359), 1, - sym_identifier, - STATE(2047), 1, - sym_reference_expression, + ACTIONS(4998), 1, + anon_sym_LBRACE, + STATE(2656), 1, + sym_block, STATE(4046), 2, sym_line_comment, sym_block_comment, - [138997] = 5, + [139049] = 4, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(7159), 1, - anon_sym_LPAREN, - STATE(2048), 1, - sym_special_argument_list, + ACTIONS(1751), 2, + anon_sym_SEMI, + anon_sym_LBRACE, STATE(4047), 2, sym_line_comment, sym_block_comment, - [139014] = 5, + [139064] = 4, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(5066), 1, - anon_sym_LBRACE, - STATE(1339), 1, - sym_block, + ACTIONS(7038), 2, + anon_sym_COMMA, + anon_sym_RPAREN, STATE(4048), 2, sym_line_comment, sym_block_comment, - [139031] = 5, + [139079] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(7161), 1, - anon_sym_LBRACE, - STATE(372), 1, - sym_type_initializer_body, + ACTIONS(7165), 1, + anon_sym_COMMA, + ACTIONS(7167), 1, + anon_sym_RPAREN, STATE(4049), 2, sym_line_comment, sym_block_comment, - [139048] = 5, + [139096] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(7027), 1, + ACTIONS(4998), 1, anon_sym_LBRACE, - STATE(2856), 1, - sym__content_block, + STATE(2657), 1, + sym_block, STATE(4050), 2, sym_line_comment, sym_block_comment, - [139065] = 5, + [139113] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(7163), 1, - anon_sym_COMMA, - ACTIONS(7165), 1, - anon_sym_RPAREN, + ACTIONS(6557), 1, + sym_identifier, + STATE(1012), 1, + sym_reference_expression, STATE(4051), 2, sym_line_comment, sym_block_comment, - [139082] = 5, + [139130] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(7167), 1, - anon_sym_LBRACE, - STATE(2069), 1, - sym_type_initializer_body, + ACTIONS(7169), 1, + sym_identifier, + STATE(1795), 1, + sym_type_reference_expression, STATE(4052), 2, sym_line_comment, sym_block_comment, - [139099] = 5, + [139147] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(5052), 1, - anon_sym_LBRACE, - STATE(1871), 1, - sym_block, + ACTIONS(5092), 1, + anon_sym_LPAREN, + STATE(2658), 1, + sym_argument_list, STATE(4053), 2, sym_line_comment, sym_block_comment, - [139116] = 5, + [139164] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(5066), 1, + ACTIONS(5050), 1, anon_sym_LBRACE, - STATE(1383), 1, + STATE(2560), 1, sym_block, STATE(4054), 2, sym_line_comment, sym_block_comment, - [139133] = 5, + [139181] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(7169), 1, - anon_sym_COMMA, - ACTIONS(7171), 1, - anon_sym_RPAREN, + ACTIONS(2722), 1, + anon_sym_LBRACE, + STATE(2567), 1, + sym_type_initializer_body, STATE(4055), 2, sym_line_comment, sym_block_comment, - [139150] = 5, + [139198] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(5042), 1, + ACTIONS(7171), 1, anon_sym_LBRACE, - STATE(2834), 1, - sym_block, + STATE(1043), 1, + sym__struct_body, STATE(4056), 2, sym_line_comment, sym_block_comment, - [139167] = 5, + [139215] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(5024), 1, + ACTIONS(7151), 1, anon_sym_LBRACE, - STATE(2075), 1, - sym_block, + STATE(2567), 1, + sym_type_initializer_body, STATE(4057), 2, sym_line_comment, sym_block_comment, - [139184] = 5, + [139232] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(2679), 1, + ACTIONS(2748), 1, anon_sym_LBRACE, - STATE(2069), 1, + STATE(2567), 1, sym_type_initializer_body, STATE(4058), 2, sym_line_comment, sym_block_comment, - [139201] = 4, + [139249] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(6436), 2, - anon_sym_RPAREN, - sym_identifier, + ACTIONS(4998), 1, + anon_sym_LBRACE, + STATE(2660), 1, + sym_block, STATE(4059), 2, sym_line_comment, sym_block_comment, - [139216] = 5, + [139266] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(5042), 1, + ACTIONS(5050), 1, anon_sym_LBRACE, - STATE(2778), 1, + STATE(2358), 1, sym_block, STATE(4060), 2, sym_line_comment, sym_block_comment, - [139233] = 5, + [139283] = 4, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(7173), 1, - anon_sym_LBRACE, - STATE(1353), 1, - sym__struct_body, + ACTIONS(7173), 2, + anon_sym_COMMA, + anon_sym_RPAREN, STATE(4061), 2, sym_line_comment, sym_block_comment, - [139250] = 5, + [139298] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(2653), 1, + ACTIONS(5050), 1, anon_sym_LBRACE, - STATE(1986), 1, - sym_type_initializer_body, + STATE(2538), 1, + sym_block, STATE(4062), 2, sym_line_comment, sym_block_comment, - [139267] = 4, + [139315] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(6692), 2, - anon_sym_COMMA, - anon_sym_COLON_EQ, + ACTIONS(6863), 1, + sym_identifier, + STATE(4264), 1, + sym_reference_expression, STATE(4063), 2, sym_line_comment, sym_block_comment, - [139282] = 5, + [139332] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(7175), 1, - anon_sym_COMMA, - ACTIONS(7177), 1, - anon_sym_RPAREN, + ACTIONS(7092), 1, + anon_sym_LBRACE, + STATE(2452), 1, + sym__content_block, STATE(4064), 2, sym_line_comment, sym_block_comment, - [139299] = 5, + [139349] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(7179), 1, + ACTIONS(6948), 1, anon_sym_LBRACE, - STATE(1986), 1, - sym_type_initializer_body, + STATE(2653), 1, + sym__content_block, STATE(4065), 2, sym_line_comment, sym_block_comment, - [139316] = 5, + [139366] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(7167), 1, + ACTIONS(5050), 1, anon_sym_LBRACE, - STATE(2069), 1, - sym_type_initializer_body, + STATE(2524), 1, + sym_block, STATE(4066), 2, sym_line_comment, sym_block_comment, - [139333] = 5, + [139383] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(7181), 1, + ACTIONS(5042), 1, anon_sym_LBRACE, - STATE(2317), 1, - sym__struct_body, + STATE(1297), 1, + sym_block, STATE(4067), 2, sym_line_comment, sym_block_comment, - [139350] = 5, + [139400] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(7183), 1, + ACTIONS(4998), 1, anon_sym_LBRACE, - STATE(2499), 1, - sym__struct_body, + STATE(2651), 1, + sym_block, STATE(4068), 2, sym_line_comment, sym_block_comment, - [139367] = 5, + [139417] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(1861), 1, - anon_sym_RBRACE, - STATE(3749), 1, - sym___rcbr, + ACTIONS(7175), 1, + anon_sym_LBRACE, + STATE(328), 1, + sym_type_initializer_body, STATE(4069), 2, sym_line_comment, sym_block_comment, - [139384] = 5, + [139434] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(7185), 1, - anon_sym_LBRACE, - STATE(2702), 1, - sym__struct_body, + ACTIONS(7177), 1, + anon_sym_LPAREN, + STATE(2521), 1, + sym_argument_list, STATE(4070), 2, sym_line_comment, sym_block_comment, - [139401] = 5, + [139451] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(2679), 1, + ACTIONS(5042), 1, anon_sym_LBRACE, - STATE(1986), 1, - sym_type_initializer_body, + STATE(1299), 1, + sym_block, STATE(4071), 2, sym_line_comment, sym_block_comment, - [139418] = 5, + [139468] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(5040), 1, - anon_sym_LBRACE, - STATE(2088), 1, - sym_block, + ACTIONS(1899), 1, + anon_sym_RBRACE, + STATE(3621), 1, + sym___rcbr, STATE(4072), 2, sym_line_comment, sym_block_comment, - [139435] = 5, + [139485] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(3817), 1, - anon_sym_LPAREN, - STATE(1337), 1, - sym_argument_list, + ACTIONS(7179), 1, + anon_sym_LBRACE, + STATE(2705), 1, + sym__struct_body, STATE(4073), 2, sym_line_comment, sym_block_comment, - [139452] = 5, + [139502] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(2653), 1, + ACTIONS(5032), 1, anon_sym_LBRACE, - STATE(2069), 1, - sym_type_initializer_body, + STATE(2007), 1, + sym_block, STATE(4074), 2, sym_line_comment, sym_block_comment, - [139469] = 5, + [139519] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(7187), 1, - sym_identifier, - STATE(2733), 1, - sym_type_reference_expression, + ACTIONS(4998), 1, + anon_sym_LBRACE, + STATE(2573), 1, + sym_block, STATE(4075), 2, sym_line_comment, sym_block_comment, - [139486] = 5, + [139536] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(5024), 1, - anon_sym_LBRACE, - STATE(1829), 1, - sym_block, + ACTIONS(7181), 1, + sym_identifier, + STATE(1033), 1, + sym_type_reference_expression, STATE(4076), 2, sym_line_comment, sym_block_comment, - [139503] = 5, + [139553] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(5046), 1, + ACTIONS(5050), 1, anon_sym_LBRACE, - STATE(992), 1, + STATE(2515), 1, sym_block, STATE(4077), 2, sym_line_comment, sym_block_comment, - [139520] = 4, + [139570] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(4273), 2, - anon_sym_SEMI, - anon_sym_LBRACE, + ACTIONS(7183), 1, + sym_identifier, + STATE(2736), 1, + sym_type_reference_expression, STATE(4078), 2, sym_line_comment, sym_block_comment, - [139535] = 5, + [139587] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(5046), 1, + ACTIONS(7185), 1, anon_sym_LBRACE, - STATE(1066), 1, - sym_block, + STATE(1838), 1, + sym__struct_body, STATE(4079), 2, sym_line_comment, sym_block_comment, - [139552] = 5, + [139604] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(7189), 1, - anon_sym_COMMA, - ACTIONS(7191), 1, - anon_sym_RPAREN, + ACTIONS(5050), 1, + anon_sym_LBRACE, + STATE(2514), 1, + sym_block, STATE(4080), 2, sym_line_comment, sym_block_comment, - [139569] = 5, + [139621] = 4, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(5024), 1, - anon_sym_LBRACE, - STATE(2080), 1, - sym_block, + ACTIONS(7187), 2, + anon_sym_COMMA, + anon_sym_RPAREN, STATE(4081), 2, sym_line_comment, sym_block_comment, - [139586] = 4, + [139636] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(4265), 2, - anon_sym_SEMI, + ACTIONS(5032), 1, anon_sym_LBRACE, + STATE(1941), 1, + sym_block, STATE(4082), 2, sym_line_comment, sym_block_comment, - [139601] = 5, + [139653] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(6675), 1, + ACTIONS(4998), 1, anon_sym_LBRACE, - STATE(2082), 1, - sym__content_block, + STATE(2627), 1, + sym_block, STATE(4083), 2, sym_line_comment, sym_block_comment, - [139618] = 5, + [139670] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(6878), 1, - anon_sym_LBRACE, - STATE(1366), 1, - sym__content_block, + ACTIONS(7189), 1, + anon_sym_LPAREN, + STATE(2756), 1, + sym_special_argument_list, STATE(4084), 2, sym_line_comment, sym_block_comment, - [139635] = 5, + [139687] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(5058), 1, - anon_sym_LBRACE, - STATE(2395), 1, - sym_block, + ACTIONS(7191), 1, + anon_sym_COMMA, + ACTIONS(7193), 1, + anon_sym_RPAREN, STATE(4085), 2, sym_line_comment, sym_block_comment, - [139652] = 5, + [139704] = 4, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(6512), 1, - sym_identifier, - STATE(2255), 1, - sym_reference_expression, + ACTIONS(7195), 2, + anon_sym_COMMA, + anon_sym_RBRACK, STATE(4086), 2, sym_line_comment, sym_block_comment, - [139669] = 5, + [139719] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(7193), 1, - anon_sym_LBRACE, - STATE(2143), 1, - sym_block, + ACTIONS(6563), 1, + sym_identifier, + STATE(2649), 1, + sym_reference_expression, STATE(4087), 2, sym_line_comment, sym_block_comment, - [139686] = 5, + [139736] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(5024), 1, - anon_sym_LBRACE, - STATE(2098), 1, - sym_block, + ACTIONS(7197), 1, + sym_identifier, + STATE(443), 1, + sym_type_reference_expression, STATE(4088), 2, sym_line_comment, sym_block_comment, - [139703] = 5, + [139753] = 4, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(5066), 1, - anon_sym_LBRACE, - STATE(1386), 1, - sym_block, + ACTIONS(6812), 2, + anon_sym_COMMA, + anon_sym_RBRACK, STATE(4089), 2, sym_line_comment, sym_block_comment, - [139720] = 5, + [139768] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(4667), 1, - anon_sym_LPAREN, - STATE(2101), 1, - sym_argument_list, + ACTIONS(7199), 1, + anon_sym_LBRACE, + STATE(1056), 1, + sym_type_initializer_body, STATE(4090), 2, sym_line_comment, sym_block_comment, - [139737] = 5, + [139785] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(7195), 1, - sym_identifier, - STATE(1309), 1, - sym_type_reference_expression, + ACTIONS(5052), 1, + anon_sym_LBRACE, + STATE(364), 1, + sym_block, STATE(4091), 2, sym_line_comment, sym_block_comment, - [139754] = 5, + [139802] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(5058), 1, - anon_sym_LBRACE, - STATE(2394), 1, - sym_block, + ACTIONS(7201), 1, + anon_sym_COMMA, + ACTIONS(7203), 1, + anon_sym_RPAREN, STATE(4092), 2, sym_line_comment, sym_block_comment, - [139771] = 5, + [139819] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(5050), 1, - anon_sym_LBRACE, - STATE(2657), 1, - sym_block, + ACTIONS(3823), 1, + anon_sym_LPAREN, + STATE(1321), 1, + sym_argument_list, STATE(4093), 2, sym_line_comment, sym_block_comment, - [139788] = 5, + [139836] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(7197), 1, - anon_sym_LBRACE, - STATE(2845), 1, - sym_type_initializer_body, + ACTIONS(6597), 1, + sym_identifier, + STATE(1740), 1, + sym_reference_expression, STATE(4094), 2, sym_line_comment, sym_block_comment, - [139805] = 5, + [139853] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(5050), 1, + ACTIONS(7205), 1, anon_sym_LBRACE, - STATE(2658), 1, - sym_block, + STATE(2313), 1, + sym__struct_body, STATE(4095), 2, sym_line_comment, sym_block_comment, - [139822] = 5, + [139870] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(6341), 1, - sym_identifier, - STATE(1680), 1, - sym_reference_expression, + ACTIONS(7207), 1, + anon_sym_LPAREN, + STATE(1710), 1, + sym_special_argument_list, STATE(4096), 2, sym_line_comment, sym_block_comment, - [139839] = 5, + [139887] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(7199), 1, - sym_identifier, - STATE(1742), 1, - sym_type_reference_expression, + ACTIONS(5042), 1, + anon_sym_LBRACE, + STATE(1337), 1, + sym_block, STATE(4097), 2, sym_line_comment, sym_block_comment, - [139856] = 5, + [139904] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(5052), 1, + ACTIONS(5056), 1, anon_sym_LBRACE, - STATE(1734), 1, + STATE(2185), 1, sym_block, STATE(4098), 2, sym_line_comment, sym_block_comment, - [139873] = 5, + [139921] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(5042), 1, + ACTIONS(4703), 1, anon_sym_LBRACE, - STATE(2848), 1, + STATE(1705), 1, sym_block, STATE(4099), 2, sym_line_comment, sym_block_comment, - [139890] = 5, + [139938] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(6292), 1, + ACTIONS(4703), 1, anon_sym_LBRACE, - STATE(1561), 1, - sym__struct_body, + STATE(3617), 1, + sym_block, STATE(4100), 2, sym_line_comment, sym_block_comment, - [139907] = 5, + [139955] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(6470), 1, + ACTIONS(7209), 1, sym_identifier, - STATE(3622), 1, - sym_generic_parameter, + STATE(3625), 1, + sym_label_reference, STATE(4101), 2, sym_line_comment, sym_block_comment, - [139924] = 5, + [139972] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(6351), 1, + ACTIONS(5032), 1, anon_sym_LBRACE, - STATE(1563), 1, - sym__enum_body, + STATE(1946), 1, + sym_block, STATE(4102), 2, sym_line_comment, sym_block_comment, - [139941] = 5, + [139989] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(7201), 1, + ACTIONS(7211), 1, anon_sym_LPAREN, - STATE(1068), 1, - sym_argument_list, + STATE(1049), 1, + sym_special_argument_list, STATE(4103), 2, sym_line_comment, sym_block_comment, - [139958] = 5, + [140006] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(5066), 1, + ACTIONS(5050), 1, anon_sym_LBRACE, - STATE(1261), 1, + STATE(2486), 1, sym_block, STATE(4104), 2, sym_line_comment, sym_block_comment, - [139975] = 5, + [140023] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(6290), 1, - anon_sym_LBRACE, - STATE(1564), 1, - sym__interface_body, + ACTIONS(1849), 1, + anon_sym_RBRACE, + STATE(3647), 1, + sym___rcbr, STATE(4105), 2, sym_line_comment, sym_block_comment, - [139992] = 5, + [140040] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(7193), 1, + ACTIONS(2748), 1, anon_sym_LBRACE, - STATE(2142), 1, - sym_block, + STATE(1969), 1, + sym_type_initializer_body, STATE(4106), 2, sym_line_comment, sym_block_comment, - [140009] = 5, + [140057] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(5036), 1, + ACTIONS(6306), 1, anon_sym_LBRACE, - STATE(351), 1, - sym_block, + STATE(1570), 1, + sym__struct_body, STATE(4107), 2, sym_line_comment, sym_block_comment, - [140026] = 5, + [140074] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(7203), 1, + ACTIONS(6428), 1, sym_identifier, - STATE(1852), 1, - sym_type_reference_expression, + STATE(1193), 1, + sym_reference_expression, STATE(4108), 2, sym_line_comment, sym_block_comment, - [140043] = 5, + [140091] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(7205), 1, + ACTIONS(7213), 1, anon_sym_LPAREN, - STATE(2052), 1, + STATE(1143), 1, sym_special_argument_list, STATE(4109), 2, sym_line_comment, sym_block_comment, - [140060] = 5, + [140108] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(6292), 1, + ACTIONS(5034), 1, anon_sym_LBRACE, - STATE(1568), 1, - sym__struct_body, + STATE(1045), 1, + sym_block, STATE(4110), 2, sym_line_comment, sym_block_comment, - [140077] = 5, + [140125] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(6383), 1, - sym_identifier, - STATE(2039), 1, - sym_reference_expression, + ACTIONS(4703), 1, + anon_sym_LBRACE, + STATE(1697), 1, + sym_block, STATE(4111), 2, sym_line_comment, sym_block_comment, - [140094] = 5, + [140142] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(5070), 1, - anon_sym_LPAREN, - STATE(2662), 1, - sym_argument_list, + ACTIONS(2722), 1, + anon_sym_LBRACE, + STATE(1722), 1, + sym_type_initializer_body, STATE(4112), 2, sym_line_comment, sym_block_comment, - [140111] = 5, + [140159] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(7207), 1, - anon_sym_LPAREN, - STATE(1702), 1, - sym_special_argument_list, + ACTIONS(6304), 1, + anon_sym_LBRACE, + STATE(1545), 1, + sym__interface_body, STATE(4113), 2, sym_line_comment, sym_block_comment, - [140128] = 5, + [140176] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(5050), 1, + ACTIONS(2722), 1, anon_sym_LBRACE, - STATE(2666), 1, - sym_block, + STATE(1056), 1, + sym_type_initializer_body, STATE(4114), 2, sym_line_comment, sym_block_comment, - [140145] = 5, + [140193] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(7209), 1, - anon_sym_LPAREN, - STATE(2253), 1, - sym_special_argument_list, + ACTIONS(7215), 1, + anon_sym_COMMA, + ACTIONS(7217), 1, + anon_sym_RPAREN, STATE(4115), 2, sym_line_comment, sym_block_comment, - [140162] = 5, + [140210] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(5024), 1, + ACTIONS(6306), 1, anon_sym_LBRACE, - STATE(2104), 1, - sym_block, + STATE(1468), 1, + sym__struct_body, STATE(4116), 2, sym_line_comment, sym_block_comment, - [140179] = 5, + [140227] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(2679), 1, + ACTIONS(7219), 1, anon_sym_LBRACE, - STATE(372), 1, - sym_type_initializer_body, + STATE(3347), 1, + sym__struct_body, STATE(4117), 2, sym_line_comment, sym_block_comment, - [140196] = 5, + [140244] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(5024), 1, + ACTIONS(6422), 1, anon_sym_LBRACE, - STATE(2031), 1, - sym_block, + STATE(1544), 1, + sym__enum_body, STATE(4118), 2, sym_line_comment, sym_block_comment, - [140213] = 5, + [140261] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(4705), 1, + ACTIONS(7199), 1, anon_sym_LBRACE, - STATE(1717), 1, - sym_block, + STATE(1056), 1, + sym_type_initializer_body, STATE(4119), 2, sym_line_comment, sym_block_comment, - [140230] = 4, + [140278] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(7211), 2, - anon_sym_COMMA, - anon_sym_RBRACK, + ACTIONS(6384), 1, + sym_identifier, + STATE(3755), 1, + sym_generic_parameter, STATE(4120), 2, sym_line_comment, sym_block_comment, - [140245] = 5, + [140295] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(6351), 1, + ACTIONS(7221), 1, anon_sym_LBRACE, - STATE(1567), 1, - sym__enum_body, + STATE(1722), 1, + sym_type_initializer_body, STATE(4121), 2, sym_line_comment, sym_block_comment, - [140262] = 5, + [140312] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(6415), 1, - sym_identifier, - STATE(1320), 1, - sym_reference_expression, + ACTIONS(6306), 1, + anon_sym_LBRACE, + STATE(1543), 1, + sym__struct_body, STATE(4122), 2, sym_line_comment, sym_block_comment, - [140279] = 5, + [140329] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(7213), 1, - anon_sym_RBRACE, - ACTIONS(7215), 1, - aux_sym_format_specifier_token1, + ACTIONS(7223), 1, + anon_sym_LBRACE, + STATE(1176), 1, + sym_type_initializer_body, STATE(4123), 2, sym_line_comment, sym_block_comment, - [140296] = 5, + [140346] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(7217), 1, + ACTIONS(5052), 1, anon_sym_LBRACE, - STATE(1186), 1, - sym__struct_body, + STATE(309), 1, + sym_block, STATE(4124), 2, sym_line_comment, sym_block_comment, - [140313] = 5, + [140363] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(7219), 1, - anon_sym_COMMA, - ACTIONS(7221), 1, - anon_sym_RPAREN, + ACTIONS(5056), 1, + anon_sym_LBRACE, + STATE(2236), 1, + sym_block, STATE(4125), 2, sym_line_comment, sym_block_comment, - [140330] = 5, + [140380] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(7223), 1, - sym_identifier, - STATE(3320), 1, - sym_type_reference_expression, + ACTIONS(5056), 1, + anon_sym_LBRACE, + STATE(2230), 1, + sym_block, STATE(4126), 2, sym_line_comment, sym_block_comment, - [140347] = 5, + [140397] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(4932), 1, - anon_sym_LPAREN, - STATE(2369), 1, - sym_argument_list, + ACTIONS(2748), 1, + anon_sym_LBRACE, + STATE(1722), 1, + sym_type_initializer_body, STATE(4127), 2, sym_line_comment, sym_block_comment, - [140364] = 5, + [140414] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(4705), 1, + ACTIONS(5028), 1, anon_sym_LBRACE, - STATE(3596), 1, + STATE(1156), 1, sym_block, STATE(4128), 2, sym_line_comment, sym_block_comment, - [140381] = 5, + [140431] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(2653), 1, + ACTIONS(2748), 1, anon_sym_LBRACE, - STATE(1362), 1, + STATE(1056), 1, sym_type_initializer_body, STATE(4129), 2, sym_line_comment, sym_block_comment, - [140398] = 5, + [140448] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(7225), 1, - sym_identifier, - STATE(3578), 1, - sym_label_reference, + ACTIONS(6777), 1, + anon_sym_LBRACE, + STATE(1376), 1, + sym__content_block, STATE(4130), 2, sym_line_comment, sym_block_comment, - [140415] = 5, + [140465] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(7227), 1, - anon_sym_LBRACE, - STATE(2317), 1, - sym__struct_body, + ACTIONS(7225), 1, + sym_identifier, + STATE(2078), 1, + sym_type_reference_expression, STATE(4131), 2, sym_line_comment, sym_block_comment, - [140432] = 5, + [140482] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(5056), 1, + ACTIONS(6422), 1, anon_sym_LBRACE, - STATE(2250), 1, - sym_block, + STATE(1569), 1, + sym__enum_body, STATE(4132), 2, sym_line_comment, sym_block_comment, - [140449] = 5, + [140499] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(2679), 1, - anon_sym_LBRACE, - STATE(1846), 1, - sym_type_initializer_body, + ACTIONS(7227), 1, + anon_sym_LPAREN, + STATE(2227), 1, + sym_argument_list, STATE(4133), 2, sym_line_comment, sym_block_comment, - [140466] = 4, + [140516] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(6846), 2, - anon_sym_COMMA, - anon_sym_RPAREN, + ACTIONS(5042), 1, + anon_sym_LBRACE, + STATE(1378), 1, + sym_block, STATE(4134), 2, sym_line_comment, sym_block_comment, - [140481] = 5, + [140533] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(5058), 1, + ACTIONS(2722), 1, anon_sym_LBRACE, - STATE(2362), 1, - sym_block, + STATE(328), 1, + sym_type_initializer_body, STATE(4135), 2, sym_line_comment, sym_block_comment, - [140498] = 5, + [140550] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(6393), 1, - sym_identifier, - STATE(1881), 1, - sym_reference_expression, + ACTIONS(5034), 1, + anon_sym_LBRACE, + STATE(967), 1, + sym_block, STATE(4136), 2, sym_line_comment, sym_block_comment, - [140515] = 4, + [140567] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(7229), 2, - anon_sym_COMMA, - anon_sym_RPAREN, + ACTIONS(5056), 1, + anon_sym_LBRACE, + STATE(2225), 1, + sym_block, STATE(4137), 2, sym_line_comment, sym_block_comment, - [140530] = 5, + [140584] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(2653), 1, + ACTIONS(6304), 1, anon_sym_LBRACE, - STATE(1210), 1, - sym_type_initializer_body, + STATE(1568), 1, + sym__interface_body, STATE(4138), 2, sym_line_comment, sym_block_comment, - [140547] = 5, + [140601] = 4, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(5052), 1, - anon_sym_LBRACE, - STATE(1813), 1, - sym_block, + ACTIONS(5508), 2, + anon_sym_COMMA, + anon_sym_in, STATE(4139), 2, sym_line_comment, sym_block_comment, - [140564] = 5, + [140616] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(7161), 1, + ACTIONS(5034), 1, anon_sym_LBRACE, - STATE(372), 1, - sym_type_initializer_body, + STATE(1083), 1, + sym_block, STATE(4140), 2, sym_line_comment, sym_block_comment, - [140581] = 5, + [140633] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(5062), 1, + ACTIONS(5028), 1, anon_sym_LBRACE, - STATE(1187), 1, + STATE(1151), 1, sym_block, STATE(4141), 2, sym_line_comment, sym_block_comment, - [140598] = 5, + [140650] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(7231), 1, + ACTIONS(2748), 1, anon_sym_LBRACE, - STATE(2317), 1, - sym__struct_body, + STATE(1365), 1, + sym_type_initializer_body, STATE(4142), 2, sym_line_comment, sym_block_comment, - [140615] = 5, + [140667] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(7233), 1, + ACTIONS(4703), 1, anon_sym_LBRACE, - STATE(453), 1, - sym__struct_body, + STATE(1625), 1, + sym_block, STATE(4143), 2, sym_line_comment, sym_block_comment, - [140632] = 5, + [140684] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(6941), 1, + ACTIONS(4703), 1, anon_sym_LBRACE, - STATE(2650), 1, - sym__content_block, + STATE(1704), 1, + sym_block, STATE(4144), 2, sym_line_comment, sym_block_comment, - [140649] = 5, + [140701] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(5066), 1, + ACTIONS(5034), 1, anon_sym_LBRACE, - STATE(1301), 1, + STATE(1004), 1, sym_block, STATE(4145), 2, sym_line_comment, sym_block_comment, - [140666] = 5, + [140718] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(7235), 1, + ACTIONS(2722), 1, anon_sym_LBRACE, - STATE(2230), 1, + STATE(1176), 1, sym_type_initializer_body, STATE(4146), 2, sym_line_comment, sym_block_comment, - [140683] = 5, + [140735] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(5050), 1, - anon_sym_LBRACE, - STATE(2648), 1, - sym_block, + ACTIONS(4667), 1, + anon_sym_LPAREN, + STATE(1932), 1, + sym_argument_list, STATE(4147), 2, sym_line_comment, sym_block_comment, - [140700] = 5, + [140752] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(5050), 1, + ACTIONS(7229), 1, anon_sym_LBRACE, - STATE(2577), 1, - sym_block, + STATE(1971), 1, + sym__struct_body, STATE(4148), 2, sym_line_comment, sym_block_comment, - [140717] = 4, + [140769] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(6983), 2, - anon_sym_COMMA, - anon_sym_PIPE, + ACTIONS(6803), 1, + anon_sym_LBRACE, + STATE(1706), 1, + sym__content_block, STATE(4149), 2, sym_line_comment, sym_block_comment, - [140732] = 4, + [140786] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(7237), 2, - anon_sym_COMMA, - anon_sym_in, + ACTIONS(7231), 1, + anon_sym_LBRACE, + STATE(2143), 1, + sym_block, STATE(4150), 2, sym_line_comment, sym_block_comment, - [140747] = 5, + [140803] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(5036), 1, + ACTIONS(7233), 1, anon_sym_LBRACE, - STATE(358), 1, - sym_block, + STATE(1365), 1, + sym_type_initializer_body, STATE(4151), 2, sym_line_comment, sym_block_comment, - [140764] = 4, + [140820] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(7239), 2, - anon_sym_SEMI, - anon_sym_RBRACK, + ACTIONS(6757), 1, + anon_sym_LBRACE, + STATE(2214), 1, + sym__content_block, STATE(4152), 2, sym_line_comment, sym_block_comment, - [140779] = 4, + [140837] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(6751), 2, - anon_sym_SEMI, - anon_sym_RBRACK, + ACTIONS(7235), 1, + anon_sym_LBRACE, + STATE(1662), 1, + sym__struct_body, STATE(4153), 2, sym_line_comment, sym_block_comment, - [140794] = 5, + [140854] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(5066), 1, + ACTIONS(5056), 1, anon_sym_LBRACE, - STATE(1300), 1, + STATE(2213), 1, sym_block, STATE(4154), 2, sym_line_comment, sym_block_comment, - [140811] = 5, + [140871] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(2653), 1, + ACTIONS(2722), 1, anon_sym_LBRACE, - STATE(372), 1, + STATE(1365), 1, sym_type_initializer_body, STATE(4155), 2, sym_line_comment, sym_block_comment, - [140828] = 4, + [140888] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(1649), 2, - anon_sym_SEMI, + ACTIONS(5042), 1, anon_sym_LBRACE, + STATE(1373), 1, + sym_block, STATE(4156), 2, sym_line_comment, sym_block_comment, - [140843] = 5, + [140905] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(7241), 1, + ACTIONS(7223), 1, anon_sym_LBRACE, - STATE(1690), 1, + STATE(1176), 1, sym_type_initializer_body, STATE(4157), 2, sym_line_comment, sym_block_comment, - [140860] = 5, + [140922] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(7243), 1, + ACTIONS(5068), 1, anon_sym_LBRACE, - STATE(1793), 1, - sym__struct_body, + STATE(4361), 1, + sym_block, STATE(4158), 2, sym_line_comment, sym_block_comment, - [140877] = 5, + [140939] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(5036), 1, + ACTIONS(7237), 1, anon_sym_LBRACE, - STATE(230), 1, - sym_block, + STATE(2313), 1, + sym__struct_body, STATE(4159), 2, sym_line_comment, sym_block_comment, - [140894] = 5, + [140956] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(4705), 1, + ACTIONS(6312), 1, anon_sym_LBRACE, - STATE(1730), 1, - sym_block, + STATE(2351), 1, + sym_type_initializer_body, STATE(4160), 2, sym_line_comment, sym_block_comment, - [140911] = 5, + [140973] = 4, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(7193), 1, - anon_sym_LBRACE, - STATE(2144), 1, - sym_block, + ACTIONS(7239), 2, + anon_sym_COMMA, + anon_sym_RPAREN, STATE(4161), 2, sym_line_comment, sym_block_comment, - [140928] = 5, + [140988] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(6931), 1, + ACTIONS(6981), 1, anon_sym_LBRACE, - STATE(2306), 1, + STATE(994), 1, sym__content_block, STATE(4162), 2, sym_line_comment, sym_block_comment, - [140945] = 5, + [141005] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(5058), 1, + ACTIONS(5056), 1, anon_sym_LBRACE, - STATE(2305), 1, + STATE(2126), 1, sym_block, STATE(4163), 2, sym_line_comment, sym_block_comment, - [140962] = 5, + [141022] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(5058), 1, + ACTIONS(4703), 1, anon_sym_LBRACE, - STATE(4586), 1, + STATE(3672), 1, sym_block, STATE(4164), 2, sym_line_comment, sym_block_comment, - [140979] = 5, + [141039] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(2679), 1, + ACTIONS(2748), 1, anon_sym_LBRACE, - STATE(1690), 1, + STATE(2167), 1, sym_type_initializer_body, STATE(4165), 2, sym_line_comment, sym_block_comment, - [140996] = 5, + [141056] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(5058), 1, + ACTIONS(7241), 1, anon_sym_LBRACE, - STATE(2277), 1, - sym_block, + STATE(2167), 1, + sym_type_initializer_body, STATE(4166), 2, sym_line_comment, sym_block_comment, - [141013] = 5, + [141073] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(6292), 1, + ACTIONS(7243), 1, anon_sym_LBRACE, - STATE(1421), 1, + STATE(1979), 1, sym__struct_body, STATE(4167), 2, sym_line_comment, sym_block_comment, - [141030] = 5, + [141090] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(7241), 1, + ACTIONS(2722), 1, anon_sym_LBRACE, - STATE(1690), 1, + STATE(2167), 1, sym_type_initializer_body, STATE(4168), 2, sym_line_comment, sym_block_comment, - [141047] = 5, + [141107] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(2653), 1, + ACTIONS(5056), 1, anon_sym_LBRACE, - STATE(1690), 1, - sym_type_initializer_body, + STATE(2197), 1, + sym_block, STATE(4169), 2, sym_line_comment, sym_block_comment, - [141064] = 5, + [141124] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(6483), 1, - sym_identifier, - STATE(995), 1, - sym_reference_expression, + ACTIONS(2748), 1, + anon_sym_LBRACE, + STATE(1176), 1, + sym_type_initializer_body, STATE(4170), 2, sym_line_comment, sym_block_comment, - [141081] = 5, + [141141] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(5036), 1, + ACTIONS(4703), 1, anon_sym_LBRACE, - STATE(426), 1, + STATE(3668), 1, sym_block, STATE(4171), 2, sym_line_comment, sym_block_comment, - [141098] = 5, + [141158] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(6290), 1, + ACTIONS(5034), 1, anon_sym_LBRACE, - STATE(1566), 1, - sym__interface_body, + STATE(1094), 1, + sym_block, STATE(4172), 2, sym_line_comment, sym_block_comment, - [141115] = 4, + [141175] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(7245), 2, - anon_sym_SEMI, - anon_sym_RBRACK, + ACTIONS(7241), 1, + anon_sym_LBRACE, + STATE(2167), 1, + sym_type_initializer_body, STATE(4173), 2, sym_line_comment, sym_block_comment, - [141130] = 5, + [141192] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(4705), 1, + ACTIONS(6803), 1, anon_sym_LBRACE, - STATE(1625), 1, - sym_block, + STATE(3671), 1, + sym__content_block, STATE(4174), 2, sym_line_comment, sym_block_comment, - [141147] = 5, + [141209] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(6655), 1, + ACTIONS(5056), 1, anon_sym_LBRACE, - STATE(429), 1, - sym__content_block, + STATE(2201), 1, + sym_block, STATE(4175), 2, sym_line_comment, sym_block_comment, - [141164] = 5, + [141226] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(7247), 1, - anon_sym_RBRACE, - ACTIONS(7249), 1, - aux_sym_format_specifier_token1, + ACTIONS(5032), 1, + anon_sym_LBRACE, + STATE(1928), 1, + sym_block, STATE(4176), 2, sym_line_comment, sym_block_comment, - [141181] = 5, + [141243] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(4705), 1, - anon_sym_LBRACE, - STATE(1741), 1, - sym_block, + ACTIONS(7245), 1, + anon_sym_COMMA, + ACTIONS(7247), 1, + anon_sym_RPAREN, STATE(4177), 2, sym_line_comment, sym_block_comment, - [141198] = 5, + [141260] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(7251), 1, + ACTIONS(5028), 1, anon_sym_LBRACE, - STATE(1362), 1, - sym_type_initializer_body, + STATE(1127), 1, + sym_block, STATE(4178), 2, sym_line_comment, sym_block_comment, - [141215] = 5, + [141277] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(5056), 1, - anon_sym_LBRACE, - STATE(2222), 1, - sym_block, + ACTIONS(6384), 1, + sym_identifier, + STATE(3872), 1, + sym_generic_parameter, STATE(4179), 2, sym_line_comment, sym_block_comment, - [141232] = 5, + [141294] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(2679), 1, - anon_sym_LBRACE, - STATE(2230), 1, - sym_type_initializer_body, + ACTIONS(7249), 1, + anon_sym_LPAREN, + STATE(1336), 1, + sym_special_argument_list, STATE(4180), 2, sym_line_comment, sym_block_comment, - [141249] = 5, + [141311] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(6729), 1, + ACTIONS(7175), 1, anon_sym_LBRACE, - STATE(1747), 1, - sym__content_block, + STATE(328), 1, + sym_type_initializer_body, STATE(4181), 2, sym_line_comment, sym_block_comment, - [141266] = 5, + [141328] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(4705), 1, - anon_sym_LBRACE, - STATE(3673), 1, - sym_block, + ACTIONS(7251), 1, + anon_sym_LPAREN, + STATE(2152), 1, + sym_special_argument_list, STATE(4182), 2, sym_line_comment, sym_block_comment, - [141283] = 5, + [141345] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(5024), 1, + ACTIONS(7253), 1, anon_sym_LBRACE, - STATE(2053), 1, - sym_block, + STATE(2313), 1, + sym__struct_body, STATE(4183), 2, sym_line_comment, sym_block_comment, - [141300] = 4, + [141362] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(4812), 2, - anon_sym_COMMA, - anon_sym_in, + ACTIONS(6304), 1, + anon_sym_LBRACE, + STATE(1539), 1, + sym__interface_body, STATE(4184), 2, sym_line_comment, sym_block_comment, - [141315] = 5, + [141379] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(4705), 1, + ACTIONS(5028), 1, anon_sym_LBRACE, - STATE(3678), 1, + STATE(1144), 1, sym_block, STATE(4185), 2, sym_line_comment, sym_block_comment, - [141332] = 5, + [141396] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(7253), 1, + ACTIONS(6422), 1, anon_sym_LBRACE, - STATE(1639), 1, - sym__struct_body, + STATE(1538), 1, + sym__enum_body, STATE(4186), 2, sym_line_comment, sym_block_comment, - [141349] = 5, + [141413] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(7255), 1, - anon_sym_COMMA, - ACTIONS(7257), 1, - anon_sym_RPAREN, + ACTIONS(5034), 1, + anon_sym_LBRACE, + STATE(1054), 1, + sym_block, STATE(4187), 2, sym_line_comment, sym_block_comment, - [141366] = 5, + [141430] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(4663), 1, - anon_sym_LBRACE, - STATE(1520), 1, - sym_block, + ACTIONS(6454), 1, + sym_identifier, + STATE(1325), 1, + sym_reference_expression, STATE(4188), 2, sym_line_comment, sym_block_comment, - [141383] = 5, + [141447] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(6729), 1, - anon_sym_LBRACE, - STATE(3679), 1, - sym__content_block, + ACTIONS(7255), 1, + anon_sym_LPAREN, + STATE(1061), 1, + sym_argument_list, STATE(4189), 2, sym_line_comment, sym_block_comment, - [141400] = 5, + [141464] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(6905), 1, - anon_sym_LBRACE, - STATE(1085), 1, - sym__content_block, + ACTIONS(7257), 1, + sym_identifier, + STATE(1672), 1, + sym_type_reference_expression, STATE(4190), 2, sym_line_comment, sym_block_comment, - [141417] = 5, + [141481] = 4, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(7179), 1, - anon_sym_LBRACE, - STATE(1986), 1, - sym_type_initializer_body, + ACTIONS(7259), 2, + anon_sym_SEMI, + anon_sym_RBRACK, STATE(4191), 2, sym_line_comment, sym_block_comment, - [141434] = 5, + [141496] = 4, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(7251), 1, - anon_sym_LBRACE, - STATE(1362), 1, - sym_type_initializer_body, + ACTIONS(7261), 2, + anon_sym_SEMI, + anon_sym_RBRACK, STATE(4192), 2, sym_line_comment, sym_block_comment, - [141451] = 5, + [141511] = 4, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(5040), 1, - anon_sym_LBRACE, - STATE(1997), 1, - sym_block, + ACTIONS(6839), 2, + anon_sym_SEMI, + anon_sym_RBRACK, STATE(4193), 2, sym_line_comment, sym_block_comment, - [141468] = 5, + [141526] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(7259), 1, - anon_sym_LBRACE, - STATE(1926), 1, - sym__struct_body, + ACTIONS(6545), 1, + sym_identifier, + STATE(2158), 1, + sym_reference_expression, STATE(4194), 2, sym_line_comment, sym_block_comment, - [141485] = 5, + [141543] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(5062), 1, + ACTIONS(2748), 1, anon_sym_LBRACE, - STATE(1171), 1, - sym_block, + STATE(328), 1, + sym_type_initializer_body, STATE(4195), 2, sym_line_comment, sym_block_comment, - [141502] = 5, + [141560] = 4, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(5062), 1, - anon_sym_LBRACE, - STATE(1179), 1, - sym_block, + ACTIONS(6670), 2, + anon_sym_SEMI, + anon_sym_RBRACK, STATE(4196), 2, sym_line_comment, sym_block_comment, - [141519] = 5, + [141575] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(5050), 1, + ACTIONS(6306), 1, anon_sym_LBRACE, - STATE(2634), 1, - sym_block, + STATE(1537), 1, + sym__struct_body, STATE(4197), 2, sym_line_comment, sym_block_comment, - [141536] = 5, + [141592] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(4663), 1, + ACTIONS(5028), 1, anon_sym_LBRACE, - STATE(1507), 1, + STATE(1165), 1, sym_block, STATE(4198), 2, sym_line_comment, sym_block_comment, - [141553] = 5, + [141609] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(2653), 1, - anon_sym_LBRACE, - STATE(1846), 1, - sym_type_initializer_body, + ACTIONS(7263), 1, + anon_sym_LPAREN, + STATE(1170), 1, + sym_argument_list, STATE(4199), 2, sym_line_comment, sym_block_comment, - [141570] = 5, + [141626] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(7261), 1, - anon_sym_LPAREN, - STATE(1333), 1, - sym_special_argument_list, + ACTIONS(5052), 1, + anon_sym_LBRACE, + STATE(230), 1, + sym_block, STATE(4200), 2, sym_line_comment, sym_block_comment, - [141587] = 5, + [141643] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(5058), 1, - anon_sym_LBRACE, - STATE(2326), 1, - sym_block, + ACTIONS(7265), 1, + sym_identifier, + STATE(2097), 1, + sym_type_reference_expression, STATE(4201), 2, sym_line_comment, sym_block_comment, - [141604] = 5, + [141660] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(7263), 1, - anon_sym_LPAREN, - STATE(2759), 1, - sym_special_argument_list, + ACTIONS(5068), 1, + anon_sym_LBRACE, + STATE(2400), 1, + sym_block, STATE(4202), 2, sym_line_comment, sym_block_comment, - [141621] = 5, + [141677] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(7265), 1, - sym_identifier, - STATE(1964), 1, - sym_type_reference_expression, + ACTIONS(6304), 1, + anon_sym_LBRACE, + STATE(1492), 1, + sym__interface_body, STATE(4203), 2, sym_line_comment, sym_block_comment, - [141638] = 5, + [141694] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(7267), 1, - anon_sym_LPAREN, - STATE(2332), 1, - sym_special_argument_list, + ACTIONS(5028), 1, + anon_sym_LBRACE, + STATE(1183), 1, + sym_block, STATE(4204), 2, sym_line_comment, sym_block_comment, - [141655] = 5, + [141711] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(7269), 1, - anon_sym_LPAREN, - STATE(1221), 1, - sym_argument_list, + ACTIONS(6422), 1, + anon_sym_LBRACE, + STATE(1490), 1, + sym__enum_body, STATE(4205), 2, sym_line_comment, sym_block_comment, - [141672] = 5, + [141728] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(6290), 1, + ACTIONS(5062), 1, anon_sym_LBRACE, - STATE(1539), 1, - sym__interface_body, + STATE(1819), 1, + sym_block, STATE(4206), 2, sym_line_comment, sym_block_comment, - [141689] = 5, + [141745] = 4, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(6561), 1, - sym_identifier, - STATE(2312), 1, - sym_reference_expression, + ACTIONS(6654), 2, + anon_sym_COMMA, + anon_sym_COLON_EQ, STATE(4207), 2, sym_line_comment, sym_block_comment, - [141706] = 5, + [141760] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(5062), 1, + ACTIONS(5028), 1, anon_sym_LBRACE, - STATE(1242), 1, + STATE(1184), 1, sym_block, STATE(4208), 2, sym_line_comment, sym_block_comment, - [141723] = 5, + [141777] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(6351), 1, + ACTIONS(4703), 1, anon_sym_LBRACE, - STATE(1540), 1, - sym__enum_body, + STATE(1750), 1, + sym_block, STATE(4209), 2, sym_line_comment, sym_block_comment, - [141740] = 5, + [141794] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(6964), 1, - anon_sym_RBRACE, - ACTIONS(6966), 1, - aux_sym_format_specifier_token1, + ACTIONS(7267), 1, + anon_sym_LPAREN, + STATE(1680), 1, + sym_argument_list, STATE(4210), 2, sym_line_comment, sym_block_comment, - [141757] = 5, + [141811] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(7271), 1, - anon_sym_LBRACE, - STATE(1508), 1, - sym__content_block, + ACTIONS(7269), 1, + sym_identifier, + STATE(1415), 1, + sym_type_reference_expression, STATE(4211), 2, sym_line_comment, sym_block_comment, - [141774] = 5, + [141828] = 4, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(7001), 1, - sym_identifier, - STATE(3939), 1, - sym_reference_expression, + ACTIONS(5354), 2, + anon_sym_LBRACE, + anon_sym_COMMA, STATE(4212), 2, sym_line_comment, sym_block_comment, - [141791] = 5, + [141843] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(6290), 1, + ACTIONS(5052), 1, anon_sym_LBRACE, - STATE(1525), 1, - sym__interface_body, + STATE(427), 1, + sym_block, STATE(4213), 2, sym_line_comment, sym_block_comment, - [141808] = 5, + [141860] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(6470), 1, - sym_identifier, - STATE(3845), 1, - sym_generic_parameter, + ACTIONS(7271), 1, + anon_sym_COMMA, + ACTIONS(7273), 1, + anon_sym_RPAREN, STATE(4214), 2, sym_line_comment, sym_block_comment, - [141825] = 5, + [141877] = 4, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(6351), 1, + ACTIONS(7275), 2, anon_sym_LBRACE, - STATE(1523), 1, - sym__enum_body, + anon_sym_COMMA, STATE(4215), 2, sym_line_comment, sym_block_comment, - [141842] = 5, + [141892] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(6591), 1, - sym_identifier, - STATE(2497), 1, - sym_reference_expression, + ACTIONS(6851), 1, + anon_sym_LBRACE, + STATE(310), 1, + sym__content_block, STATE(4216), 2, sym_line_comment, sym_block_comment, - [141859] = 5, + [141909] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(6913), 1, + ACTIONS(6885), 1, anon_sym_LBRACE, - STATE(1209), 1, + STATE(1921), 1, sym__content_block, STATE(4217), 2, sym_line_comment, sym_block_comment, - [141876] = 5, + [141926] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(5062), 1, + ACTIONS(6306), 1, anon_sym_LBRACE, - STATE(1191), 1, - sym_block, + STATE(1488), 1, + sym__struct_body, STATE(4218), 2, sym_line_comment, sym_block_comment, - [141893] = 5, + [141943] = 4, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(6292), 1, - anon_sym_LBRACE, - STATE(1521), 1, - sym__struct_body, + ACTIONS(5460), 2, + anon_sym_COMMA, + anon_sym_COLON_EQ, STATE(4219), 2, sym_line_comment, sym_block_comment, - [141910] = 5, + [141958] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(6292), 1, + ACTIONS(5034), 1, anon_sym_LBRACE, - STATE(1542), 1, - sym__struct_body, + STATE(995), 1, + sym_block, STATE(4220), 2, sym_line_comment, sym_block_comment, - [141927] = 5, + [141975] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(5062), 1, + ACTIONS(4703), 1, anon_sym_LBRACE, - STATE(1124), 1, + STATE(1743), 1, sym_block, STATE(4221), 2, sym_line_comment, sym_block_comment, - [141944] = 5, + [141992] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(7273), 1, - anon_sym_LPAREN, - STATE(999), 1, - sym_special_argument_list, + ACTIONS(7277), 1, + anon_sym_COMMA, + ACTIONS(7279), 1, + anon_sym_RPAREN, STATE(4222), 2, sym_line_comment, sym_block_comment, - [141961] = 5, + [142009] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(7235), 1, + ACTIONS(4703), 1, anon_sym_LBRACE, - STATE(2230), 1, - sym_type_initializer_body, + STATE(1698), 1, + sym_block, STATE(4223), 2, sym_line_comment, sym_block_comment, - [141978] = 5, + [142026] = 4, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(7275), 1, - anon_sym_LBRACE, - STATE(1210), 1, - sym_type_initializer_body, + ACTIONS(4824), 2, + anon_sym_COMMA, + anon_sym_in, STATE(4224), 2, sym_line_comment, sym_block_comment, - [141995] = 5, + [142041] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(7277), 1, + ACTIONS(5032), 1, anon_sym_LBRACE, - STATE(1998), 1, - sym__struct_body, + STATE(1920), 1, + sym_block, STATE(4225), 2, sym_line_comment, sym_block_comment, - [142012] = 4, + [142058] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(6764), 2, - anon_sym_SEMI, - anon_sym_RBRACK, + ACTIONS(7281), 1, + anon_sym_COMMA, + ACTIONS(7283), 1, + anon_sym_RPAREN, STATE(4226), 2, sym_line_comment, sym_block_comment, - [142027] = 4, + [142075] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(3910), 2, - anon_sym_SEMI, - anon_sym_RBRACK, + ACTIONS(5068), 1, + anon_sym_LBRACE, + STATE(2373), 1, + sym_block, STATE(4227), 2, sym_line_comment, sym_block_comment, - [142042] = 5, + [142092] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(2679), 1, + ACTIONS(5068), 1, anon_sym_LBRACE, - STATE(1210), 1, - sym_type_initializer_body, + STATE(2372), 1, + sym_block, STATE(4228), 2, sym_line_comment, sym_block_comment, - [142059] = 5, + [142109] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(5062), 1, + ACTIONS(4663), 1, anon_sym_LBRACE, - STATE(1225), 1, + STATE(1498), 1, sym_block, STATE(4229), 2, sym_line_comment, sym_block_comment, - [142076] = 5, + [142126] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(2653), 1, + ACTIONS(5032), 1, anon_sym_LBRACE, - STATE(2230), 1, - sym_type_initializer_body, + STATE(1863), 1, + sym_block, STATE(4230), 2, sym_line_comment, sym_block_comment, - [142093] = 5, + [142143] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(5046), 1, - anon_sym_LBRACE, - STATE(1089), 1, - sym_block, + ACTIONS(4844), 1, + anon_sym_COLON, + ACTIONS(7285), 1, + anon_sym_mut, STATE(4231), 2, sym_line_comment, sym_block_comment, - [142110] = 5, + [142160] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(4836), 1, - anon_sym_COLON, - ACTIONS(7279), 1, - anon_sym_mut, + ACTIONS(5028), 1, + anon_sym_LBRACE, + STATE(1228), 1, + sym_block, STATE(4232), 2, sym_line_comment, sym_block_comment, - [142127] = 4, + [142177] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(6533), 2, - anon_sym_RBRACE, - sym_identifier, + ACTIONS(4663), 1, + anon_sym_LBRACE, + STATE(1495), 1, + sym_block, STATE(4233), 2, sym_line_comment, sym_block_comment, - [142142] = 5, + [142194] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(7275), 1, + ACTIONS(7287), 1, anon_sym_LBRACE, - STATE(1210), 1, - sym_type_initializer_body, + STATE(1493), 1, + sym__content_block, STATE(4234), 2, sym_line_comment, sym_block_comment, - [142159] = 5, + [142211] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(5024), 1, + ACTIONS(5052), 1, anon_sym_LBRACE, - STATE(2050), 1, + STATE(334), 1, sym_block, STATE(4235), 2, sym_line_comment, sym_block_comment, - [142176] = 5, + [142228] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(5036), 1, + ACTIONS(5052), 1, anon_sym_LBRACE, - STATE(366), 1, + STATE(344), 1, sym_block, STATE(4236), 2, sym_line_comment, sym_block_comment, - [142193] = 5, + [142245] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(5036), 1, - anon_sym_LBRACE, - STATE(311), 1, - sym_block, + ACTIONS(6641), 1, + anon_sym_RBRACE, + ACTIONS(6643), 1, + aux_sym_format_specifier_token1, STATE(4237), 2, sym_line_comment, sym_block_comment, - [142210] = 5, + [142262] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(2679), 1, - anon_sym_LBRACE, - STATE(1362), 1, - sym_type_initializer_body, + ACTIONS(6863), 1, + sym_identifier, + STATE(3858), 1, + sym_reference_expression, STATE(4238), 2, sym_line_comment, sym_block_comment, - [142227] = 5, + [142279] = 4, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(6565), 1, - sym_identifier, - STATE(2763), 1, - sym_reference_expression, + ACTIONS(7289), 2, + anon_sym_SEMI, + anon_sym_RBRACK, STATE(4239), 2, sym_line_comment, sym_block_comment, - [142244] = 5, + [142294] = 4, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(7281), 1, - anon_sym_LPAREN, - STATE(2574), 1, - sym_special_argument_list, + ACTIONS(3913), 2, + anon_sym_SEMI, + anon_sym_RBRACK, STATE(4240), 2, sym_line_comment, sym_block_comment, - [142261] = 5, + [142309] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(5062), 1, - anon_sym_LBRACE, - STATE(1190), 1, - sym_block, + ACTIONS(6436), 1, + sym_identifier, + STATE(4086), 1, + sym_reference_expression, STATE(4241), 2, sym_line_comment, sym_block_comment, - [142278] = 5, + [142326] = 4, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(6561), 1, - sym_identifier, - STATE(4120), 1, - sym_reference_expression, + ACTIONS(7291), 2, + anon_sym_COMMA, + anon_sym_RBRACK, STATE(4242), 2, sym_line_comment, sym_block_comment, - [142295] = 4, + [142341] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(7283), 2, - anon_sym_COMMA, - anon_sym_RBRACK, + ACTIONS(7293), 1, + anon_sym_LBRACE, + STATE(1969), 1, + sym_type_initializer_body, STATE(4243), 2, sym_line_comment, sym_block_comment, - [142310] = 4, + [142358] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(5468), 2, - anon_sym_COMMA, - anon_sym_COLON_EQ, + ACTIONS(7295), 1, + anon_sym_LBRACE, + STATE(1307), 1, + sym__struct_body, STATE(4244), 2, sym_line_comment, sym_block_comment, - [142325] = 5, + [142375] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(5056), 1, - anon_sym_LBRACE, - STATE(2123), 1, - sym_block, + ACTIONS(7297), 1, + anon_sym_COMMA, + ACTIONS(7299), 1, + anon_sym_RPAREN, STATE(4245), 2, sym_line_comment, sym_block_comment, - [142342] = 5, + [142392] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(5060), 1, - anon_sym_LBRACE, - STATE(2460), 1, - sym_block, + ACTIONS(6571), 1, + sym_identifier, + STATE(2042), 1, + sym_reference_expression, STATE(4246), 2, sym_line_comment, sym_block_comment, - [142359] = 5, + [142409] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(5066), 1, + ACTIONS(4703), 1, anon_sym_LBRACE, - STATE(1370), 1, + STATE(1685), 1, sym_block, STATE(4247), 2, sym_line_comment, sym_block_comment, - [142376] = 4, + [142426] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(7285), 2, + ACTIONS(7301), 1, anon_sym_COMMA, + ACTIONS(7303), 1, anon_sym_RPAREN, STATE(4248), 2, sym_line_comment, sym_block_comment, - [142391] = 5, + [142443] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(7287), 1, - anon_sym_LPAREN, - STATE(1196), 1, - sym_special_argument_list, + ACTIONS(2722), 1, + anon_sym_LBRACE, + STATE(1969), 1, + sym_type_initializer_body, STATE(4249), 2, sym_line_comment, sym_block_comment, - [142408] = 4, + [142460] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(6897), 2, - anon_sym_COMMA, - anon_sym_RPAREN, + ACTIONS(7305), 1, + sym_identifier, + STATE(3327), 1, + sym_type_reference_expression, STATE(4250), 2, sym_line_comment, sym_block_comment, - [142423] = 5, + [142477] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(7289), 1, - anon_sym_COMMA, - ACTIONS(7291), 1, - anon_sym_RPAREN, + ACTIONS(4938), 1, + anon_sym_LPAREN, + STATE(2367), 1, + sym_argument_list, STATE(4251), 2, sym_line_comment, sym_block_comment, - [142440] = 4, + [142494] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(5408), 2, + ACTIONS(5032), 1, anon_sym_LBRACE, - anon_sym_COMMA, + STATE(1936), 1, + sym_block, STATE(4252), 2, sym_line_comment, sym_block_comment, - [142455] = 5, + [142511] = 4, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(5046), 1, - anon_sym_LBRACE, - STATE(1002), 1, - sym_block, + ACTIONS(6363), 2, + anon_sym_RBRACE, + sym_identifier, STATE(4253), 2, sym_line_comment, sym_block_comment, - [142472] = 5, + [142526] = 4, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(5056), 1, - anon_sym_LBRACE, - STATE(2219), 1, - sym_block, + ACTIONS(6739), 2, + anon_sym_COMMA, + anon_sym_RPAREN, STATE(4254), 2, sym_line_comment, sym_block_comment, - [142489] = 5, + [142541] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(7293), 1, - anon_sym_LBRACE, - STATE(2562), 1, - sym_type_initializer_body, + ACTIONS(7307), 1, + anon_sym_LPAREN, + STATE(2055), 1, + sym_special_argument_list, STATE(4255), 2, sym_line_comment, sym_block_comment, - [142506] = 4, + [142558] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(6787), 2, - anon_sym_COMMA, - anon_sym_RBRACK, + ACTIONS(5068), 1, + anon_sym_LBRACE, + STATE(2355), 1, + sym_block, STATE(4256), 2, sym_line_comment, sym_block_comment, - [142521] = 5, + [142575] = 5, ACTIONS(497), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, anon_sym_SLASH_STAR, - ACTIONS(7295), 1, + ACTIONS(7309), 1, aux_sym_raw_string_literal_token2, - ACTIONS(7297), 1, + ACTIONS(7311), 1, sym___double_quote, STATE(4257), 2, sym_line_comment, sym_block_comment, - [142538] = 5, + [142592] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(5036), 1, + ACTIONS(5040), 1, anon_sym_LBRACE, - STATE(480), 1, + STATE(2858), 1, sym_block, STATE(4258), 2, sym_line_comment, sym_block_comment, - [142555] = 5, + [142609] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(4900), 1, - sym_identifier, - ACTIONS(7299), 1, - anon_sym_volatile, + ACTIONS(7221), 1, + anon_sym_LBRACE, + STATE(1722), 1, + sym_type_initializer_body, STATE(4259), 2, sym_line_comment, sym_block_comment, - [142572] = 5, + [142626] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(7301), 1, - anon_sym_LBRACE, - STATE(1846), 1, - sym_type_initializer_body, + ACTIONS(7313), 1, + sym_identifier, + STATE(1382), 1, + sym_type_reference_expression, STATE(4260), 2, sym_line_comment, sym_block_comment, - [142589] = 5, + [142643] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(6541), 1, - sym_identifier, - STATE(1165), 1, - sym_reference_expression, + ACTIONS(5052), 1, + anon_sym_LBRACE, + STATE(483), 1, + sym_block, STATE(4261), 2, sym_line_comment, sym_block_comment, - [142606] = 5, - ACTIONS(497), 1, + [142660] = 5, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, - ACTIONS(499), 1, + ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(7303), 1, - aux_sym_raw_string_literal_token1, - ACTIONS(7305), 1, - sym___single_quote, + ACTIONS(5062), 1, + anon_sym_LBRACE, + STATE(1887), 1, + sym_block, STATE(4262), 2, sym_line_comment, sym_block_comment, - [142623] = 5, + [142677] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(7307), 1, - anon_sym_LPAREN, - STATE(1736), 1, - sym_argument_list, + ACTIONS(5062), 1, + anon_sym_LBRACE, + STATE(1885), 1, + sym_block, STATE(4263), 2, sym_line_comment, sym_block_comment, - [142640] = 5, + [142694] = 4, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(7309), 1, - sym_identifier, - STATE(1413), 1, - sym_type_reference_expression, + ACTIONS(6665), 2, + anon_sym_COMMA, + anon_sym_PIPE, STATE(4264), 2, sym_line_comment, sym_block_comment, - [142657] = 4, - ACTIONS(3), 1, + [142709] = 5, + ACTIONS(497), 1, anon_sym_SLASH_SLASH, - ACTIONS(5), 1, + ACTIONS(499), 1, anon_sym_SLASH_STAR, - ACTIONS(6709), 2, - anon_sym_COMMA, - anon_sym_RPAREN, + ACTIONS(7315), 1, + aux_sym_raw_string_literal_token1, + ACTIONS(7317), 1, + sym___single_quote, STATE(4265), 2, sym_line_comment, sym_block_comment, - [142672] = 5, + [142726] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(6739), 1, + ACTIONS(7293), 1, anon_sym_LBRACE, - STATE(2218), 1, - sym__content_block, + STATE(1969), 1, + sym_type_initializer_body, STATE(4266), 2, sym_line_comment, sym_block_comment, - [142689] = 5, + [142743] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(5056), 1, - anon_sym_LBRACE, - STATE(2181), 1, - sym_block, + ACTIONS(4719), 1, + anon_sym_LPAREN, + STATE(1931), 1, + sym_argument_list, STATE(4267), 2, sym_line_comment, sym_block_comment, - [142706] = 5, + [142760] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(5040), 1, - anon_sym_LBRACE, - STATE(2015), 1, - sym_block, + ACTIONS(7319), 1, + sym_identifier, + STATE(1178), 1, + sym_type_reference_expression, STATE(4268), 2, sym_line_comment, sym_block_comment, - [142723] = 4, + [142777] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(7311), 2, - anon_sym_SEMI, - anon_sym_RBRACK, + ACTIONS(7321), 1, + anon_sym_LPAREN, + STATE(1880), 1, + sym_argument_list, STATE(4269), 2, sym_line_comment, sym_block_comment, - [142738] = 5, + [142794] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(5046), 1, + ACTIONS(5058), 1, anon_sym_LBRACE, - STATE(969), 1, + STATE(2091), 1, sym_block, STATE(4270), 2, sym_line_comment, sym_block_comment, - [142755] = 5, + [142811] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(5060), 1, + ACTIONS(5062), 1, anon_sym_LBRACE, - STATE(2462), 1, + STATE(1878), 1, sym_block, STATE(4271), 2, sym_line_comment, sym_block_comment, - [142772] = 5, + [142828] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(2679), 1, + ACTIONS(2722), 1, anon_sym_LBRACE, - STATE(2562), 1, + STATE(2031), 1, sym_type_initializer_body, STATE(4272), 2, sym_line_comment, sym_block_comment, - [142789] = 5, + [142845] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(1913), 1, - anon_sym_RBRACE, - STATE(3721), 1, - sym___rcbr, + ACTIONS(7323), 1, + anon_sym_LBRACE, + STATE(2483), 1, + sym__struct_body, STATE(4273), 2, sym_line_comment, sym_block_comment, - [142806] = 5, + [142862] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(6599), 1, - sym_identifier, - STATE(3564), 1, - sym_import_name, + ACTIONS(7117), 1, + anon_sym_LBRACE, + STATE(2031), 1, + sym_type_initializer_body, STATE(4274), 2, sym_line_comment, sym_block_comment, - [142823] = 5, + [142879] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(4705), 1, - anon_sym_LBRACE, - STATE(1671), 1, - sym_block, + ACTIONS(7325), 1, + anon_sym_LPAREN, + STATE(486), 1, + sym_argument_list, STATE(4275), 2, sym_line_comment, sym_block_comment, - [142840] = 5, + [142896] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(5060), 1, + ACTIONS(6728), 1, anon_sym_LBRACE, - STATE(2556), 1, - sym_block, + STATE(1866), 1, + sym__content_block, STATE(4276), 2, sym_line_comment, sym_block_comment, - [142857] = 5, + [142913] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(5060), 1, + ACTIONS(6835), 1, anon_sym_LBRACE, - STATE(2537), 1, - sym_block, + STATE(2319), 1, + sym__content_block, STATE(4277), 2, sym_line_comment, sym_block_comment, - [142874] = 5, + [142930] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(5060), 1, + ACTIONS(5068), 1, anon_sym_LBRACE, - STATE(2554), 1, + STATE(2317), 1, sym_block, STATE(4278), 2, sym_line_comment, sym_block_comment, - [142891] = 5, + [142947] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(4705), 1, + ACTIONS(5062), 1, anon_sym_LBRACE, - STATE(1732), 1, + STATE(1865), 1, sym_block, STATE(4279), 2, sym_line_comment, sym_block_comment, - [142908] = 5, + [142964] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(7313), 1, - anon_sym_LPAREN, - STATE(483), 1, - sym_argument_list, + ACTIONS(7231), 1, + anon_sym_LBRACE, + STATE(2138), 1, + sym_block, STATE(4280), 2, sym_line_comment, sym_block_comment, - [142925] = 5, + [142981] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(6791), 1, + ACTIONS(2748), 1, anon_sym_LBRACE, - STATE(2505), 1, - sym__content_block, + STATE(2031), 1, + sym_type_initializer_body, STATE(4281), 2, sym_line_comment, sym_block_comment, - [142942] = 5, + [142998] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(2784), 1, - anon_sym_COMMA, - ACTIONS(7315), 1, - anon_sym_RPAREN, + ACTIONS(5062), 1, + anon_sym_LBRACE, + STATE(1724), 1, + sym_block, STATE(4282), 2, sym_line_comment, sym_block_comment, - [142959] = 5, + [143015] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(5056), 1, + ACTIONS(5040), 1, anon_sym_LBRACE, - STATE(2200), 1, + STATE(2761), 1, sym_block, STATE(4283), 2, sym_line_comment, sym_block_comment, - [142976] = 5, + [143032] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(7293), 1, + ACTIONS(5068), 1, anon_sym_LBRACE, - STATE(2562), 1, - sym_type_initializer_body, + STATE(2278), 1, + sym_block, STATE(4284), 2, sym_line_comment, sym_block_comment, - [142993] = 5, + [143049] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(7317), 1, + ACTIONS(2748), 1, anon_sym_LBRACE, - STATE(1012), 1, - sym__struct_body, + STATE(1852), 1, + sym_type_initializer_body, STATE(4285), 2, sym_line_comment, sym_block_comment, - [143010] = 5, + [143066] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(5060), 1, - anon_sym_LBRACE, - STATE(2504), 1, - sym_block, + ACTIONS(7327), 1, + sym_identifier, + STATE(2294), 1, + sym_type_reference_expression, STATE(4286), 2, sym_line_comment, sym_block_comment, - [143027] = 5, + [143083] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(7319), 1, - sym_identifier, - STATE(2341), 1, - sym_type_reference_expression, + ACTIONS(5040), 1, + anon_sym_LBRACE, + STATE(2872), 1, + sym_block, STATE(4287), 2, sym_line_comment, sym_block_comment, - [143044] = 5, + [143100] = 4, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(7321), 1, - anon_sym_LPAREN, - STATE(1850), 1, - sym_special_argument_list, + ACTIONS(6924), 2, + anon_sym_COMMA, + anon_sym_in, STATE(4288), 2, sym_line_comment, sym_block_comment, - [143061] = 5, + [143115] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(5046), 1, + ACTIONS(6999), 1, anon_sym_LBRACE, - STATE(1096), 1, - sym_block, + STATE(2843), 1, + sym__content_block, STATE(4289), 2, sym_line_comment, sym_block_comment, - [143078] = 5, + [143132] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(2679), 1, + ACTIONS(7329), 1, anon_sym_LBRACE, - STATE(1075), 1, + STATE(1852), 1, sym_type_initializer_body, STATE(4290), 2, sym_line_comment, sym_block_comment, - [143095] = 5, + [143149] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(7323), 1, - sym_identifier, - STATE(1050), 1, - sym_type_reference_expression, + ACTIONS(5034), 1, + anon_sym_LBRACE, + STATE(1031), 1, + sym_block, STATE(4291), 2, sym_line_comment, sym_block_comment, - [143112] = 4, + [143166] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(6861), 2, - anon_sym_COMMA, - anon_sym_in, + ACTIONS(7331), 1, + anon_sym_LBRACE, + STATE(403), 1, + sym__struct_body, STATE(4292), 2, sym_line_comment, sym_block_comment, - [143127] = 5, + [143183] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(4705), 1, + ACTIONS(7333), 1, anon_sym_LBRACE, - STATE(1704), 1, - sym_block, + STATE(1164), 1, + sym__struct_body, STATE(4293), 2, sym_line_comment, sym_block_comment, - [143144] = 5, + [143200] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(7325), 1, - anon_sym_LPAREN, - STATE(2548), 1, - sym_argument_list, + ACTIONS(2722), 1, + anon_sym_LBRACE, + STATE(1852), 1, + sym_type_initializer_body, STATE(4294), 2, sym_line_comment, sym_block_comment, - [143161] = 5, + [143217] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(5060), 1, + ACTIONS(5062), 1, anon_sym_LBRACE, - STATE(2536), 1, + STATE(1861), 1, sym_block, STATE(4295), 2, sym_line_comment, sym_block_comment, - [143178] = 5, + [143234] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(7327), 1, + ACTIONS(5058), 1, anon_sym_LBRACE, - STATE(1075), 1, - sym_type_initializer_body, + STATE(1976), 1, + sym_block, STATE(4296), 2, sym_line_comment, sym_block_comment, - [143195] = 5, + [143251] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(6298), 1, + ACTIONS(7335), 1, anon_sym_LBRACE, - STATE(2298), 1, + STATE(2837), 1, sym_type_initializer_body, STATE(4297), 2, sym_line_comment, sym_block_comment, - [143212] = 4, + [143268] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(7329), 2, - anon_sym_LBRACE, - anon_sym_COMMA, + ACTIONS(7337), 1, + sym_identifier, + STATE(2519), 1, + sym_type_reference_expression, STATE(4298), 2, sym_line_comment, sym_block_comment, - [143227] = 5, + [143285] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(2653), 1, + ACTIONS(7231), 1, anon_sym_LBRACE, - STATE(1075), 1, - sym_type_initializer_body, + STATE(2139), 1, + sym_block, STATE(4299), 2, sym_line_comment, sym_block_comment, - [143244] = 4, + [143302] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(7331), 2, - anon_sym_COMMA, - anon_sym_RPAREN, + ACTIONS(7329), 1, + anon_sym_LBRACE, + STATE(1852), 1, + sym_type_initializer_body, STATE(4300), 2, sym_line_comment, sym_block_comment, - [143259] = 5, + [143319] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(7333), 1, + ACTIONS(5062), 1, anon_sym_LBRACE, - STATE(3343), 1, - sym__struct_body, + STATE(1822), 1, + sym_block, STATE(4301), 2, sym_line_comment, sym_block_comment, - [143276] = 5, + [143336] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(7335), 1, - anon_sym_COMMA, - ACTIONS(7337), 1, - anon_sym_RPAREN, + ACTIONS(5042), 1, + anon_sym_LBRACE, + STATE(1342), 1, + sym_block, STATE(4302), 2, sym_line_comment, sym_block_comment, - [143293] = 5, + [143353] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(5056), 1, - anon_sym_LBRACE, - STATE(2211), 1, - sym_block, + ACTIONS(7339), 1, + anon_sym_LPAREN, + STATE(1817), 1, + sym_special_argument_list, STATE(4303), 2, sym_line_comment, sym_block_comment, - [143310] = 5, + [143370] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(5056), 1, + ACTIONS(5058), 1, anon_sym_LBRACE, - STATE(2201), 1, + STATE(2084), 1, sym_block, STATE(4304), 2, sym_line_comment, sym_block_comment, - [143327] = 5, + [143387] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(7339), 1, - sym_identifier, - STATE(1959), 1, - sym_type_reference_expression, + ACTIONS(5058), 1, + anon_sym_LBRACE, + STATE(1912), 1, + sym_block, STATE(4305), 2, sym_line_comment, sym_block_comment, - [143344] = 5, + [143404] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(5060), 1, - anon_sym_LBRACE, - STATE(2409), 1, - sym_block, + ACTIONS(7341), 1, + anon_sym_RBRACE, + ACTIONS(7343), 1, + aux_sym_format_specifier_token1, STATE(4306), 2, sym_line_comment, sym_block_comment, - [143361] = 5, + [143421] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(7341), 1, - anon_sym_LPAREN, - STATE(2208), 1, - sym_argument_list, + ACTIONS(7233), 1, + anon_sym_LBRACE, + STATE(1365), 1, + sym_type_initializer_body, STATE(4307), 2, sym_line_comment, sym_block_comment, - [143378] = 5, + [143438] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(7327), 1, - anon_sym_LBRACE, - STATE(1075), 1, - sym_type_initializer_body, + ACTIONS(6436), 1, + sym_identifier, + STATE(2376), 1, + sym_reference_expression, STATE(4308), 2, sym_line_comment, sym_block_comment, - [143395] = 5, + [143455] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(5052), 1, - anon_sym_LBRACE, - STATE(1790), 1, - sym_block, + ACTIONS(7345), 1, + anon_sym_COMMA, + ACTIONS(7347), 1, + anon_sym_RPAREN, STATE(4309), 2, sym_line_comment, sym_block_comment, - [143412] = 5, + [143472] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(4705), 1, - anon_sym_LBRACE, - STATE(1737), 1, - sym_block, + ACTIONS(7349), 1, + anon_sym_LPAREN, + STATE(2083), 1, + sym_special_argument_list, STATE(4310), 2, sym_line_comment, sym_block_comment, - [143429] = 5, + [143489] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(7343), 1, - anon_sym_COMMA, - ACTIONS(7345), 1, - anon_sym_RPAREN, + ACTIONS(7351), 1, + anon_sym_RBRACE, + ACTIONS(7353), 1, + aux_sym_format_specifier_token1, STATE(4311), 2, sym_line_comment, sym_block_comment, - [143446] = 5, + [143506] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(2653), 1, - anon_sym_LBRACE, - STATE(2562), 1, - sym_type_initializer_body, + ACTIONS(6390), 1, + sym_identifier, + STATE(1803), 1, + sym_reference_expression, STATE(4312), 2, sym_line_comment, sym_block_comment, - [143463] = 4, + [143523] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(7347), 2, - anon_sym_COMMA, - anon_sym_RPAREN, + ACTIONS(6382), 1, + sym_identifier, + STATE(3405), 1, + sym_import_name, STATE(4313), 2, sym_line_comment, sym_block_comment, - [143478] = 5, + [143540] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(6599), 1, - sym_identifier, - STATE(3409), 1, - sym_import_name, + ACTIONS(7355), 1, + anon_sym_LPAREN, + STATE(2350), 1, + sym_special_argument_list, STATE(4314), 2, sym_line_comment, sym_block_comment, - [143495] = 5, + [143557] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(7349), 1, - anon_sym_COMMA, - ACTIONS(7351), 1, - anon_sym_RPAREN, + ACTIONS(5068), 1, + anon_sym_LBRACE, + STATE(2331), 1, + sym_block, STATE(4315), 2, sym_line_comment, sym_block_comment, - [143512] = 5, + [143574] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(7301), 1, - anon_sym_LBRACE, - STATE(1846), 1, - sym_type_initializer_body, + ACTIONS(6394), 1, + sym_identifier, + STATE(1992), 1, + sym_reference_expression, STATE(4316), 2, sym_line_comment, sym_block_comment, - [143529] = 4, + [143591] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(937), 1, - anon_sym_RBRACE, + ACTIONS(5058), 1, + anon_sym_LBRACE, + STATE(2105), 1, + sym_block, STATE(4317), 2, sym_line_comment, sym_block_comment, - [143543] = 4, + [143608] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(7353), 1, - anon_sym_RBRACE, + ACTIONS(6382), 1, + sym_identifier, + STATE(3576), 1, + sym_import_name, STATE(4318), 2, sym_line_comment, sym_block_comment, - [143557] = 4, + [143625] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(7355), 1, - anon_sym_RBRACE, + ACTIONS(6597), 1, + sym_identifier, + STATE(3445), 1, + sym_reference_expression, STATE(4319), 2, sym_line_comment, sym_block_comment, - [143571] = 4, + [143642] = 4, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, @@ -306476,7 +306681,7 @@ static const uint16_t ts_small_parse_table[] = { STATE(4320), 2, sym_line_comment, sym_block_comment, - [143585] = 4, + [143656] = 4, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, @@ -306486,27 +306691,27 @@ static const uint16_t ts_small_parse_table[] = { STATE(4321), 2, sym_line_comment, sym_block_comment, - [143599] = 4, + [143670] = 4, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(899), 1, - anon_sym_RBRACE, + ACTIONS(1639), 1, + anon_sym_RPAREN, STATE(4322), 2, sym_line_comment, sym_block_comment, - [143613] = 4, + [143684] = 4, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7361), 1, - anon_sym_DOT, + anon_sym_RBRACE, STATE(4323), 2, sym_line_comment, sym_block_comment, - [143627] = 4, + [143698] = 4, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, @@ -306516,57 +306721,57 @@ static const uint16_t ts_small_parse_table[] = { STATE(4324), 2, sym_line_comment, sym_block_comment, - [143641] = 4, + [143712] = 4, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7365), 1, - anon_sym_LBRACE, + anon_sym_RBRACK, STATE(4325), 2, sym_line_comment, sym_block_comment, - [143655] = 4, + [143726] = 4, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(5394), 1, - anon_sym_LBRACE, + ACTIONS(911), 1, + anon_sym_RBRACE, STATE(4326), 2, sym_line_comment, sym_block_comment, - [143669] = 4, + [143740] = 4, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(7367), 1, - anon_sym_LBRACE, + ACTIONS(1637), 1, + anon_sym_RPAREN, STATE(4327), 2, sym_line_comment, sym_block_comment, - [143683] = 4, - ACTIONS(497), 1, + [143754] = 4, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, - ACTIONS(499), 1, + ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(7369), 1, - aux_sym__content_block_token1, + ACTIONS(7367), 1, + anon_sym_DOT, STATE(4328), 2, sym_line_comment, sym_block_comment, - [143697] = 4, + [143768] = 4, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(1635), 1, - anon_sym_RPAREN, + ACTIONS(7369), 1, + anon_sym_RBRACE, STATE(4329), 2, sym_line_comment, sym_block_comment, - [143711] = 4, + [143782] = 4, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, @@ -306576,367 +306781,367 @@ static const uint16_t ts_small_parse_table[] = { STATE(4330), 2, sym_line_comment, sym_block_comment, - [143725] = 4, + [143796] = 4, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(7373), 1, - anon_sym_RBRACE, + ACTIONS(5296), 1, + anon_sym_LBRACE, STATE(4331), 2, sym_line_comment, sym_block_comment, - [143739] = 4, + [143810] = 4, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(7375), 1, - anon_sym_RBRACE, + ACTIONS(7373), 1, + anon_sym_LBRACE, STATE(4332), 2, sym_line_comment, sym_block_comment, - [143753] = 4, - ACTIONS(3), 1, + [143824] = 4, + ACTIONS(497), 1, anon_sym_SLASH_SLASH, - ACTIONS(5), 1, + ACTIONS(499), 1, anon_sym_SLASH_STAR, - ACTIONS(7377), 1, - anon_sym_RBRACE, + ACTIONS(7375), 1, + aux_sym__content_block_token1, STATE(4333), 2, sym_line_comment, sym_block_comment, - [143767] = 4, + [143838] = 4, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(897), 1, + ACTIONS(7351), 1, anon_sym_RBRACE, STATE(4334), 2, sym_line_comment, sym_block_comment, - [143781] = 4, + [143852] = 4, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(7379), 1, - anon_sym_RBRACK, + ACTIONS(7377), 1, + anon_sym_RBRACE, STATE(4335), 2, sym_line_comment, sym_block_comment, - [143795] = 4, + [143866] = 4, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(7381), 1, - anon_sym_LBRACE, + ACTIONS(7379), 1, + anon_sym_RBRACE, STATE(4336), 2, sym_line_comment, sym_block_comment, - [143809] = 4, + [143880] = 4, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(7383), 1, + ACTIONS(893), 1, anon_sym_RBRACE, STATE(4337), 2, sym_line_comment, sym_block_comment, - [143823] = 4, + [143894] = 4, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(1625), 1, - anon_sym_RPAREN, + ACTIONS(7381), 1, + sym_identifier, STATE(4338), 2, sym_line_comment, sym_block_comment, - [143837] = 4, + [143908] = 4, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(7385), 1, - anon_sym_RBRACE, + ACTIONS(7383), 1, + sym_identifier, STATE(4339), 2, sym_line_comment, sym_block_comment, - [143851] = 4, + [143922] = 4, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(7387), 1, - anon_sym_RBRACE, + ACTIONS(7385), 1, + sym_identifier, STATE(4340), 2, sym_line_comment, sym_block_comment, - [143865] = 4, - ACTIONS(3), 1, + [143936] = 4, + ACTIONS(497), 1, anon_sym_SLASH_SLASH, - ACTIONS(5), 1, + ACTIONS(499), 1, anon_sym_SLASH_STAR, - ACTIONS(7389), 1, - anon_sym_DOT, + ACTIONS(7387), 1, + aux_sym__content_block_token1, STATE(4341), 2, sym_line_comment, sym_block_comment, - [143879] = 4, + [143950] = 4, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(7391), 1, - anon_sym_RBRACE, + ACTIONS(7389), 1, + sym_int_literal, STATE(4342), 2, sym_line_comment, sym_block_comment, - [143893] = 4, + [143964] = 4, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(7393), 1, + ACTIONS(909), 1, anon_sym_RBRACE, STATE(4343), 2, sym_line_comment, sym_block_comment, - [143907] = 4, + [143978] = 4, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(5378), 1, + ACTIONS(7391), 1, anon_sym_LBRACE, STATE(4344), 2, sym_line_comment, sym_block_comment, - [143921] = 4, + [143992] = 4, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(7395), 1, - anon_sym_LBRACE, + ACTIONS(7341), 1, + anon_sym_RBRACE, STATE(4345), 2, sym_line_comment, sym_block_comment, - [143935] = 4, - ACTIONS(497), 1, + [144006] = 4, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, - ACTIONS(499), 1, + ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(7397), 1, - aux_sym__content_block_token1, + ACTIONS(5298), 1, + anon_sym_LBRACE, STATE(4346), 2, sym_line_comment, sym_block_comment, - [143949] = 4, + [144020] = 4, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(7399), 1, - anon_sym_RBRACK, + ACTIONS(7393), 1, + anon_sym_RBRACE, STATE(4347), 2, sym_line_comment, sym_block_comment, - [143963] = 4, + [144034] = 4, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(877), 1, - anon_sym_RBRACE, + ACTIONS(7395), 1, + sym_identifier, STATE(4348), 2, sym_line_comment, sym_block_comment, - [143977] = 4, + [144048] = 4, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(1621), 1, - anon_sym_RPAREN, + ACTIONS(7397), 1, + anon_sym_DOT, STATE(4349), 2, sym_line_comment, sym_block_comment, - [143991] = 4, + [144062] = 4, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(7401), 1, + ACTIONS(907), 1, anon_sym_RBRACE, STATE(4350), 2, sym_line_comment, sym_block_comment, - [144005] = 4, + [144076] = 4, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(7403), 1, - anon_sym_RBRACE, + ACTIONS(7399), 1, + anon_sym_DOT, STATE(4351), 2, sym_line_comment, sym_block_comment, - [144019] = 4, + [144090] = 4, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(7405), 1, - anon_sym_RBRACE, + ACTIONS(5336), 1, + anon_sym_LBRACE, STATE(4352), 2, sym_line_comment, sym_block_comment, - [144033] = 4, + [144104] = 4, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(7407), 1, - anon_sym_RBRACE, + ACTIONS(7401), 1, + anon_sym_LBRACE, STATE(4353), 2, sym_line_comment, sym_block_comment, - [144047] = 4, - ACTIONS(3), 1, + [144118] = 4, + ACTIONS(497), 1, anon_sym_SLASH_SLASH, - ACTIONS(5), 1, + ACTIONS(499), 1, anon_sym_SLASH_STAR, - ACTIONS(7409), 1, - anon_sym_RBRACE, + ACTIONS(7403), 1, + aux_sym__content_block_token1, STATE(4354), 2, sym_line_comment, sym_block_comment, - [144061] = 4, + [144132] = 4, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(7411), 1, - anon_sym_DOT, + ACTIONS(7405), 1, + anon_sym_RBRACE, STATE(4355), 2, sym_line_comment, sym_block_comment, - [144075] = 4, + [144146] = 4, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(7413), 1, - anon_sym_RBRACE, + ACTIONS(7407), 1, + sym_identifier, STATE(4356), 2, sym_line_comment, sym_block_comment, - [144089] = 4, + [144160] = 4, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(5362), 1, - anon_sym_LBRACE, + ACTIONS(7409), 1, + anon_sym_RBRACE, STATE(4357), 2, sym_line_comment, sym_block_comment, - [144103] = 4, + [144174] = 4, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(7415), 1, - anon_sym_LBRACE, + ACTIONS(7411), 1, + anon_sym_RBRACE, STATE(4358), 2, sym_line_comment, sym_block_comment, - [144117] = 4, - ACTIONS(497), 1, + [144188] = 4, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, - ACTIONS(499), 1, + ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(7417), 1, - aux_sym__content_block_token1, + ACTIONS(7413), 1, + sym_identifier, STATE(4359), 2, sym_line_comment, sym_block_comment, - [144131] = 4, + [144202] = 4, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(7419), 1, + ACTIONS(7415), 1, sym_identifier, STATE(4360), 2, sym_line_comment, sym_block_comment, - [144145] = 4, + [144216] = 4, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(7421), 1, - sym_identifier, + ACTIONS(7417), 1, + anon_sym_RBRACE, STATE(4361), 2, sym_line_comment, sym_block_comment, - [144159] = 4, + [144230] = 4, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(7423), 1, + ACTIONS(7419), 1, sym_identifier, STATE(4362), 2, sym_line_comment, sym_block_comment, - [144173] = 4, + [144244] = 4, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(903), 1, + ACTIONS(7421), 1, anon_sym_RBRACE, STATE(4363), 2, sym_line_comment, sym_block_comment, - [144187] = 4, + [144258] = 4, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(7425), 1, - anon_sym_RBRACK, + ACTIONS(7423), 1, + anon_sym_RBRACE, STATE(4364), 2, sym_line_comment, sym_block_comment, - [144201] = 4, + [144272] = 4, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(7427), 1, - anon_sym_DOT, + ACTIONS(7425), 1, + anon_sym_RBRACE, STATE(4365), 2, sym_line_comment, sym_block_comment, - [144215] = 4, + [144286] = 4, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(5354), 1, - anon_sym_LBRACE, + ACTIONS(7427), 1, + anon_sym_RBRACE, STATE(4366), 2, sym_line_comment, sym_block_comment, - [144229] = 4, + [144300] = 4, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, @@ -306946,357 +307151,357 @@ static const uint16_t ts_small_parse_table[] = { STATE(4367), 2, sym_line_comment, sym_block_comment, - [144243] = 4, - ACTIONS(497), 1, + [144314] = 4, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, - ACTIONS(499), 1, + ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7431), 1, - aux_sym__content_block_token1, + anon_sym_RBRACK, STATE(4368), 2, sym_line_comment, sym_block_comment, - [144257] = 4, + [144328] = 4, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(7433), 1, - sym_identifier, + ACTIONS(7121), 1, + anon_sym_RPAREN, STATE(4369), 2, sym_line_comment, sym_block_comment, - [144271] = 4, + [144342] = 4, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(7435), 1, - sym_identifier, + ACTIONS(7433), 1, + anon_sym_DOT, STATE(4370), 2, sym_line_comment, sym_block_comment, - [144285] = 4, - ACTIONS(3), 1, + [144356] = 4, + ACTIONS(497), 1, anon_sym_SLASH_SLASH, - ACTIONS(5), 1, + ACTIONS(499), 1, anon_sym_SLASH_STAR, - ACTIONS(7437), 1, - sym_identifier, + ACTIONS(7435), 1, + aux_sym__content_block_token1, STATE(4371), 2, sym_line_comment, sym_block_comment, - [144299] = 4, + [144370] = 4, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(7439), 1, - sym_identifier, + ACTIONS(7437), 1, + anon_sym_LBRACE, STATE(4372), 2, sym_line_comment, sym_block_comment, - [144313] = 4, + [144384] = 4, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(7441), 1, - sym_identifier, + ACTIONS(5366), 1, + anon_sym_LBRACE, STATE(4373), 2, sym_line_comment, sym_block_comment, - [144327] = 4, + [144398] = 4, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(7443), 1, - anon_sym_RBRACE, + ACTIONS(7439), 1, + anon_sym_LBRACE, STATE(4374), 2, sym_line_comment, sym_block_comment, - [144341] = 4, - ACTIONS(3), 1, + [144412] = 4, + ACTIONS(497), 1, anon_sym_SLASH_SLASH, - ACTIONS(5), 1, + ACTIONS(499), 1, anon_sym_SLASH_STAR, - ACTIONS(7445), 1, - anon_sym_RBRACE, + ACTIONS(7441), 1, + aux_sym__content_block_token1, STATE(4375), 2, sym_line_comment, sym_block_comment, - [144355] = 4, + [144426] = 4, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(7447), 1, - anon_sym_DOT, + ACTIONS(5342), 1, + anon_sym_LBRACE, STATE(4376), 2, sym_line_comment, sym_block_comment, - [144369] = 4, + [144440] = 4, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(5338), 1, - anon_sym_LBRACE, + ACTIONS(7443), 1, + anon_sym_RBRACE, STATE(4377), 2, sym_line_comment, sym_block_comment, - [144383] = 4, + [144454] = 4, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(7449), 1, - anon_sym_LBRACE, + ACTIONS(7445), 1, + anon_sym_DOT, STATE(4378), 2, sym_line_comment, sym_block_comment, - [144397] = 4, - ACTIONS(497), 1, + [144468] = 4, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, - ACTIONS(499), 1, + ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(7451), 1, - aux_sym__content_block_token1, + ACTIONS(7447), 1, + anon_sym_RBRACE, STATE(4379), 2, sym_line_comment, sym_block_comment, - [144411] = 4, + [144482] = 4, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(7453), 1, - anon_sym_RBRACE, + ACTIONS(7449), 1, + anon_sym_RBRACK, STATE(4380), 2, sym_line_comment, sym_block_comment, - [144425] = 4, + [144496] = 4, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(7455), 1, - anon_sym_RBRACE, + ACTIONS(7451), 1, + anon_sym_RBRACK, STATE(4381), 2, sym_line_comment, sym_block_comment, - [144439] = 4, + [144510] = 4, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(7457), 1, - anon_sym_RBRACK, + ACTIONS(7453), 1, + anon_sym_LBRACE, STATE(4382), 2, sym_line_comment, sym_block_comment, - [144453] = 4, + [144524] = 4, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(7459), 1, - anon_sym_RBRACE, + ACTIONS(7455), 1, + anon_sym_EQ, STATE(4383), 2, sym_line_comment, sym_block_comment, - [144467] = 4, + [144538] = 4, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(7461), 1, - anon_sym_EQ, + ACTIONS(7457), 1, + anon_sym_RBRACE, STATE(4384), 2, sym_line_comment, sym_block_comment, - [144481] = 4, + [144552] = 4, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(925), 1, + ACTIONS(881), 1, anon_sym_RBRACE, STATE(4385), 2, sym_line_comment, sym_block_comment, - [144495] = 4, + [144566] = 4, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(7463), 1, + ACTIONS(7459), 1, anon_sym_RBRACE, STATE(4386), 2, sym_line_comment, sym_block_comment, - [144509] = 4, + [144580] = 4, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(7465), 1, - anon_sym_RBRACE, + ACTIONS(7461), 1, + anon_sym_RBRACK, STATE(4387), 2, sym_line_comment, sym_block_comment, - [144523] = 4, + [144594] = 4, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(7467), 1, - anon_sym_DOT, + ACTIONS(1631), 1, + anon_sym_RPAREN, STATE(4388), 2, sym_line_comment, sym_block_comment, - [144537] = 4, + [144608] = 4, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(913), 1, + ACTIONS(7463), 1, anon_sym_RBRACE, STATE(4389), 2, sym_line_comment, sym_block_comment, - [144551] = 4, + [144622] = 4, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(7469), 1, + ACTIONS(7465), 1, anon_sym_RBRACE, STATE(4390), 2, sym_line_comment, sym_block_comment, - [144565] = 4, + [144636] = 4, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(5372), 1, - anon_sym_LBRACE, + ACTIONS(7467), 1, + anon_sym_DOT, STATE(4391), 2, sym_line_comment, sym_block_comment, - [144579] = 4, + [144650] = 4, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(7471), 1, - anon_sym_LBRACE, + ACTIONS(7469), 1, + anon_sym_RBRACE, STATE(4392), 2, sym_line_comment, sym_block_comment, - [144593] = 4, - ACTIONS(497), 1, + [144664] = 4, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, - ACTIONS(499), 1, + ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(7473), 1, - aux_sym__content_block_token1, + ACTIONS(7471), 1, + anon_sym_LBRACE, STATE(4393), 2, sym_line_comment, sym_block_comment, - [144607] = 4, + [144678] = 4, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(5402), 1, + ACTIONS(5378), 1, anon_sym_LBRACE, STATE(4394), 2, sym_line_comment, sym_block_comment, - [144621] = 4, + [144692] = 4, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(7475), 1, - anon_sym_RBRACE, + ACTIONS(7473), 1, + anon_sym_LBRACE, STATE(4395), 2, sym_line_comment, sym_block_comment, - [144635] = 4, - ACTIONS(3), 1, + [144706] = 4, + ACTIONS(497), 1, anon_sym_SLASH_SLASH, - ACTIONS(5), 1, + ACTIONS(499), 1, anon_sym_SLASH_STAR, - ACTIONS(951), 1, - anon_sym_RBRACE, + ACTIONS(7475), 1, + aux_sym__content_block_token1, STATE(4396), 2, sym_line_comment, sym_block_comment, - [144649] = 4, + [144720] = 4, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(7115), 1, - anon_sym_RPAREN, + ACTIONS(7477), 1, + anon_sym_RBRACE, STATE(4397), 2, sym_line_comment, sym_block_comment, - [144663] = 4, - ACTIONS(3), 1, + [144734] = 4, + ACTIONS(497), 1, anon_sym_SLASH_SLASH, - ACTIONS(5), 1, + ACTIONS(499), 1, anon_sym_SLASH_STAR, - ACTIONS(7477), 1, - anon_sym_LBRACE, + ACTIONS(7479), 1, + aux_sym__content_block_token1, STATE(4398), 2, sym_line_comment, sym_block_comment, - [144677] = 4, - ACTIONS(497), 1, + [144748] = 4, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, - ACTIONS(499), 1, + ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(7479), 1, - aux_sym__content_block_token1, + ACTIONS(7481), 1, + anon_sym_LBRACE, STATE(4399), 2, sym_line_comment, sym_block_comment, - [144691] = 4, + [144762] = 4, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(7481), 1, + ACTIONS(5346), 1, anon_sym_LBRACE, STATE(4400), 2, sym_line_comment, sym_block_comment, - [144705] = 4, + [144776] = 4, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7483), 1, - anon_sym_RBRACK, + anon_sym_RBRACE, STATE(4401), 2, sym_line_comment, sym_block_comment, - [144719] = 4, + [144790] = 4, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7485), 1, - sym_identifier, + anon_sym_RBRACE, STATE(4402), 2, sym_line_comment, sym_block_comment, - [144733] = 4, + [144804] = 4, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, @@ -307306,7 +307511,7 @@ static const uint16_t ts_small_parse_table[] = { STATE(4403), 2, sym_line_comment, sym_block_comment, - [144747] = 4, + [144818] = 4, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, @@ -307316,9211 +307521,9245 @@ static const uint16_t ts_small_parse_table[] = { STATE(4404), 2, sym_line_comment, sym_block_comment, - [144761] = 4, + [144832] = 4, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7491), 1, - anon_sym_PIPE, + sym_identifier, STATE(4405), 2, sym_line_comment, sym_block_comment, - [144775] = 4, + [144846] = 4, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(4553), 1, - sym_identifier, + ACTIONS(6641), 1, + anon_sym_RBRACE, STATE(4406), 2, sym_line_comment, sym_block_comment, - [144789] = 4, + [144860] = 4, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(7493), 1, - anon_sym_LBRACE, + ACTIONS(917), 1, + anon_sym_RBRACE, STATE(4407), 2, sym_line_comment, sym_block_comment, - [144803] = 4, + [144874] = 4, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(7495), 1, - anon_sym_RBRACE, + ACTIONS(6660), 1, + anon_sym_RBRACK, STATE(4408), 2, sym_line_comment, sym_block_comment, - [144817] = 4, + [144888] = 4, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(7497), 1, - anon_sym_DOT, + ACTIONS(4559), 1, + sym_identifier, STATE(4409), 2, sym_line_comment, sym_block_comment, - [144831] = 4, + [144902] = 4, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(4836), 1, - anon_sym_COLON, + ACTIONS(7493), 1, + anon_sym_RBRACE, STATE(4410), 2, sym_line_comment, sym_block_comment, - [144845] = 4, + [144916] = 4, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(7499), 1, + ACTIONS(921), 1, anon_sym_RBRACE, STATE(4411), 2, sym_line_comment, sym_block_comment, - [144859] = 4, + [144930] = 4, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(5384), 1, - anon_sym_LBRACE, + ACTIONS(7495), 1, + anon_sym_DOT, STATE(4412), 2, sym_line_comment, sym_block_comment, - [144873] = 4, + [144944] = 4, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(7501), 1, - anon_sym_LBRACE, + ACTIONS(7497), 1, + anon_sym_EQ, STATE(4413), 2, sym_line_comment, sym_block_comment, - [144887] = 4, - ACTIONS(497), 1, + [144958] = 4, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, - ACTIONS(499), 1, + ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(7503), 1, - aux_sym__content_block_token1, + ACTIONS(7499), 1, + anon_sym_RBRACE, STATE(4414), 2, sym_line_comment, sym_block_comment, - [144901] = 4, + [144972] = 4, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(7505), 1, - anon_sym_RBRACE, + ACTIONS(5382), 1, + anon_sym_LBRACE, STATE(4415), 2, sym_line_comment, sym_block_comment, - [144915] = 4, + [144986] = 4, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(7507), 1, - anon_sym_RBRACE, + ACTIONS(7501), 1, + anon_sym_LBRACE, STATE(4416), 2, sym_line_comment, sym_block_comment, - [144929] = 4, - ACTIONS(3), 1, + [145000] = 4, + ACTIONS(497), 1, anon_sym_SLASH_SLASH, - ACTIONS(5), 1, + ACTIONS(499), 1, anon_sym_SLASH_STAR, - ACTIONS(7509), 1, - anon_sym_RBRACE, + ACTIONS(7503), 1, + aux_sym__content_block_token1, STATE(4417), 2, sym_line_comment, sym_block_comment, - [144943] = 4, + [145014] = 4, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(7511), 1, - anon_sym_RBRACE, + ACTIONS(7505), 1, + sym_int_literal, STATE(4418), 2, sym_line_comment, sym_block_comment, - [144957] = 4, + [145028] = 4, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(7513), 1, + ACTIONS(889), 1, anon_sym_RBRACE, STATE(4419), 2, sym_line_comment, sym_block_comment, - [144971] = 4, + [145042] = 4, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(7515), 1, - anon_sym_RBRACK, + ACTIONS(7507), 1, + anon_sym_RBRACE, STATE(4420), 2, sym_line_comment, sym_block_comment, - [144985] = 4, + [145056] = 4, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(6909), 1, - anon_sym_RBRACK, + ACTIONS(7509), 1, + anon_sym_RBRACE, STATE(4421), 2, sym_line_comment, sym_block_comment, - [144999] = 4, + [145070] = 4, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(895), 1, + ACTIONS(7511), 1, anon_sym_RBRACE, STATE(4422), 2, sym_line_comment, sym_block_comment, - [145013] = 4, + [145084] = 4, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(7517), 1, - anon_sym_SEMI, + ACTIONS(7513), 1, + anon_sym_RBRACE, STATE(4423), 2, sym_line_comment, sym_block_comment, - [145027] = 4, + [145098] = 4, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(7519), 1, - anon_sym_RBRACE, + ACTIONS(1498), 1, + anon_sym_RPAREN, STATE(4424), 2, sym_line_comment, sym_block_comment, - [145041] = 4, + [145112] = 4, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(7521), 1, + ACTIONS(7515), 1, anon_sym_RBRACE, STATE(4425), 2, sym_line_comment, sym_block_comment, - [145055] = 4, + [145126] = 4, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(7523), 1, - anon_sym_RBRACK, + ACTIONS(7517), 1, + anon_sym_SEMI, STATE(4426), 2, sym_line_comment, sym_block_comment, - [145069] = 4, + [145140] = 4, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(7525), 1, - anon_sym_RBRACE, + ACTIONS(4844), 1, + anon_sym_COLON, STATE(4427), 2, sym_line_comment, sym_block_comment, - [145083] = 4, + [145154] = 4, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(887), 1, + ACTIONS(7519), 1, anon_sym_RBRACE, STATE(4428), 2, sym_line_comment, sym_block_comment, - [145097] = 4, + [145168] = 4, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(885), 1, - anon_sym_RBRACE, + ACTIONS(7521), 1, + anon_sym_RBRACK, STATE(4429), 2, sym_line_comment, sym_block_comment, - [145111] = 4, + [145182] = 4, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(7527), 1, - anon_sym_DOT, + ACTIONS(7523), 1, + anon_sym_RBRACE, STATE(4430), 2, sym_line_comment, sym_block_comment, - [145125] = 4, + [145196] = 4, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(7529), 1, + ACTIONS(7525), 1, anon_sym_RBRACE, STATE(4431), 2, sym_line_comment, sym_block_comment, - [145139] = 4, + [145210] = 4, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(7531), 1, - anon_sym_RBRACE, + ACTIONS(1623), 1, + anon_sym_RPAREN, STATE(4432), 2, sym_line_comment, sym_block_comment, - [145153] = 4, + [145224] = 4, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(5392), 1, - anon_sym_LBRACE, + ACTIONS(7527), 1, + anon_sym_DOT, STATE(4433), 2, sym_line_comment, sym_block_comment, - [145167] = 4, + [145238] = 4, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(7533), 1, - anon_sym_LBRACE, + ACTIONS(7529), 1, + anon_sym_RBRACE, STATE(4434), 2, sym_line_comment, sym_block_comment, - [145181] = 4, - ACTIONS(497), 1, + [145252] = 4, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, - ACTIONS(499), 1, + ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(7535), 1, - aux_sym__content_block_token1, + ACTIONS(897), 1, + anon_sym_RBRACE, STATE(4435), 2, sym_line_comment, sym_block_comment, - [145195] = 4, + [145266] = 4, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(7537), 1, - anon_sym_RBRACE, + ACTIONS(5396), 1, + anon_sym_LBRACE, STATE(4436), 2, sym_line_comment, sym_block_comment, - [145209] = 4, + [145280] = 4, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(7539), 1, - anon_sym_RBRACE, + ACTIONS(7531), 1, + anon_sym_LBRACE, STATE(4437), 2, sym_line_comment, sym_block_comment, - [145223] = 4, - ACTIONS(3), 1, + [145294] = 4, + ACTIONS(497), 1, anon_sym_SLASH_SLASH, - ACTIONS(5), 1, + ACTIONS(499), 1, anon_sym_SLASH_STAR, - ACTIONS(7541), 1, - anon_sym_RBRACE, + ACTIONS(7533), 1, + aux_sym__content_block_token1, STATE(4438), 2, sym_line_comment, sym_block_comment, - [145237] = 4, + [145308] = 4, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(7543), 1, - anon_sym_RBRACE, + ACTIONS(7535), 1, + anon_sym_RBRACK, STATE(4439), 2, sym_line_comment, sym_block_comment, - [145251] = 4, + [145322] = 4, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(7545), 1, - anon_sym_in, + ACTIONS(7537), 1, + anon_sym_RBRACK, STATE(4440), 2, sym_line_comment, sym_block_comment, - [145265] = 4, + [145336] = 4, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(945), 1, + ACTIONS(7539), 1, anon_sym_RBRACE, STATE(4441), 2, sym_line_comment, sym_block_comment, - [145279] = 4, + [145350] = 4, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(7547), 1, - sym_identifier, + ACTIONS(7541), 1, + anon_sym_RBRACE, STATE(4442), 2, sym_line_comment, sym_block_comment, - [145293] = 4, + [145364] = 4, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(7549), 1, - anon_sym_COLON, + ACTIONS(7543), 1, + anon_sym_in, STATE(4443), 2, sym_line_comment, sym_block_comment, - [145307] = 4, - ACTIONS(497), 1, + [145378] = 4, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, - ACTIONS(499), 1, + ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(7551), 1, - aux_sym__content_block_token1, + ACTIONS(7545), 1, + anon_sym_RBRACE, STATE(4444), 2, sym_line_comment, sym_block_comment, - [145321] = 4, + [145392] = 4, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(7553), 1, - anon_sym_RBRACK, + ACTIONS(7547), 1, + sym_identifier, STATE(4445), 2, sym_line_comment, sym_block_comment, - [145335] = 4, + [145406] = 4, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(7555), 1, - anon_sym_LBRACE, + ACTIONS(7549), 1, + anon_sym_RBRACE, STATE(4446), 2, sym_line_comment, sym_block_comment, - [145349] = 4, + [145420] = 4, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(7557), 1, + ACTIONS(7551), 1, anon_sym_RBRACE, STATE(4447), 2, sym_line_comment, sym_block_comment, - [145363] = 4, + [145434] = 4, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(5432), 1, - anon_sym_LBRACE, + ACTIONS(7553), 1, + anon_sym_RBRACE, STATE(4448), 2, sym_line_comment, sym_block_comment, - [145377] = 4, + [145448] = 4, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(7559), 1, - anon_sym_RBRACE, + ACTIONS(7555), 1, + anon_sym_LBRACE, STATE(4449), 2, sym_line_comment, sym_block_comment, - [145391] = 4, + [145462] = 4, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(7561), 1, - anon_sym_RBRACK, + ACTIONS(1502), 1, + anon_sym_RPAREN, STATE(4450), 2, sym_line_comment, sym_block_comment, - [145405] = 4, + [145476] = 4, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(7563), 1, - anon_sym_DOT, + ACTIONS(7557), 1, + anon_sym_RBRACE, STATE(4451), 2, sym_line_comment, sym_block_comment, - [145419] = 4, + [145490] = 4, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(7565), 1, - anon_sym_DOT, + ACTIONS(7559), 1, + sym_identifier, STATE(4452), 2, sym_line_comment, sym_block_comment, - [145433] = 4, + [145504] = 4, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(7567), 1, - sym_int_literal, + ACTIONS(7561), 1, + anon_sym_RBRACK, STATE(4453), 2, sym_line_comment, sym_block_comment, - [145447] = 4, + [145518] = 4, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(5398), 1, - anon_sym_LBRACE, + ACTIONS(7563), 1, + anon_sym_DOT, STATE(4454), 2, sym_line_comment, sym_block_comment, - [145461] = 4, + [145532] = 4, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(7569), 1, - anon_sym_LBRACE, + ACTIONS(929), 1, + anon_sym_RBRACE, STATE(4455), 2, sym_line_comment, sym_block_comment, - [145475] = 4, - ACTIONS(497), 1, + [145546] = 4, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, - ACTIONS(499), 1, + ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(7571), 1, - aux_sym__content_block_token1, + ACTIONS(887), 1, + anon_sym_RBRACE, STATE(4456), 2, sym_line_comment, sym_block_comment, - [145489] = 4, + [145560] = 4, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(7573), 1, - anon_sym_RBRACE, + ACTIONS(5406), 1, + anon_sym_LBRACE, STATE(4457), 2, sym_line_comment, sym_block_comment, - [145503] = 4, + [145574] = 4, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(7575), 1, - anon_sym_RBRACE, + ACTIONS(7565), 1, + anon_sym_LBRACE, STATE(4458), 2, sym_line_comment, sym_block_comment, - [145517] = 4, - ACTIONS(3), 1, + [145588] = 4, + ACTIONS(497), 1, anon_sym_SLASH_SLASH, - ACTIONS(5), 1, + ACTIONS(499), 1, anon_sym_SLASH_STAR, - ACTIONS(7577), 1, - anon_sym_DOT, + ACTIONS(7567), 1, + aux_sym__content_block_token1, STATE(4459), 2, sym_line_comment, sym_block_comment, - [145531] = 4, + [145602] = 4, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(7579), 1, - anon_sym_RBRACE, + ACTIONS(7569), 1, + anon_sym_RBRACK, STATE(4460), 2, sym_line_comment, sym_block_comment, - [145545] = 4, - ACTIONS(497), 1, + [145616] = 4, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, - ACTIONS(499), 1, + ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(7581), 1, - aux_sym__content_block_token1, + ACTIONS(7571), 1, + anon_sym_RBRACE, STATE(4461), 2, sym_line_comment, sym_block_comment, - [145559] = 4, + [145630] = 4, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(1631), 1, - anon_sym_RPAREN, + ACTIONS(7573), 1, + anon_sym_RBRACE, STATE(4462), 2, sym_line_comment, sym_block_comment, - [145573] = 4, + [145644] = 4, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(7583), 1, - anon_sym_LBRACE, + ACTIONS(7575), 1, + anon_sym_RBRACE, STATE(4463), 2, sym_line_comment, sym_block_comment, - [145587] = 4, - ACTIONS(3), 1, + [145658] = 4, + ACTIONS(497), 1, anon_sym_SLASH_SLASH, - ACTIONS(5), 1, + ACTIONS(499), 1, anon_sym_SLASH_STAR, - ACTIONS(7585), 1, - anon_sym_EQ, + ACTIONS(7577), 1, + aux_sym__content_block_token1, STATE(4464), 2, sym_line_comment, sym_block_comment, - [145601] = 4, + [145672] = 4, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(5412), 1, - anon_sym_LBRACE, + ACTIONS(1500), 1, + anon_sym_RPAREN, STATE(4465), 2, sym_line_comment, sym_block_comment, - [145615] = 4, + [145686] = 4, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(7587), 1, - anon_sym_RBRACK, + ACTIONS(7579), 1, + anon_sym_LBRACE, STATE(4466), 2, sym_line_comment, sym_block_comment, - [145629] = 4, + [145700] = 4, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(7589), 1, - anon_sym_RBRACK, + ACTIONS(7581), 1, + anon_sym_RBRACE, STATE(4467), 2, sym_line_comment, sym_block_comment, - [145643] = 4, + [145714] = 4, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(7591), 1, - anon_sym_DOT, + ACTIONS(5410), 1, + anon_sym_LBRACE, STATE(4468), 2, sym_line_comment, sym_block_comment, - [145657] = 4, + [145728] = 4, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(7593), 1, - sym_identifier, + ACTIONS(7583), 1, + anon_sym_RBRACK, STATE(4469), 2, sym_line_comment, sym_block_comment, - [145671] = 4, + [145742] = 4, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(5414), 1, - anon_sym_LBRACE, + ACTIONS(7585), 1, + anon_sym_RBRACE, STATE(4470), 2, sym_line_comment, sym_block_comment, - [145685] = 4, + [145756] = 4, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(7595), 1, - anon_sym_LBRACE, + ACTIONS(7587), 1, + anon_sym_DOT, STATE(4471), 2, sym_line_comment, sym_block_comment, - [145699] = 4, - ACTIONS(497), 1, + [145770] = 4, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, - ACTIONS(499), 1, + ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(7597), 1, - aux_sym__content_block_token1, + ACTIONS(7589), 1, + anon_sym_RBRACE, STATE(4472), 2, sym_line_comment, sym_block_comment, - [145713] = 4, + [145784] = 4, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(1627), 1, - anon_sym_RPAREN, + ACTIONS(5412), 1, + anon_sym_LBRACE, STATE(4473), 2, sym_line_comment, sym_block_comment, - [145727] = 4, + [145798] = 4, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(7599), 1, - anon_sym_RBRACE, + ACTIONS(7591), 1, + anon_sym_LBRACE, STATE(4474), 2, sym_line_comment, sym_block_comment, - [145741] = 4, - ACTIONS(3), 1, + [145812] = 4, + ACTIONS(497), 1, anon_sym_SLASH_SLASH, - ACTIONS(5), 1, + ACTIONS(499), 1, anon_sym_SLASH_STAR, - ACTIONS(7247), 1, - anon_sym_RBRACE, + ACTIONS(7593), 1, + aux_sym__content_block_token1, STATE(4475), 2, sym_line_comment, sym_block_comment, - [145755] = 4, + [145826] = 4, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(7601), 1, - anon_sym_DOT, + ACTIONS(7595), 1, + anon_sym_RBRACE, STATE(4476), 2, sym_line_comment, sym_block_comment, - [145769] = 4, - ACTIONS(497), 1, + [145840] = 4, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, - ACTIONS(499), 1, + ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(7603), 1, - aux_sym__content_block_token1, + ACTIONS(7597), 1, + anon_sym_RBRACE, STATE(4477), 2, sym_line_comment, sym_block_comment, - [145783] = 4, + [145854] = 4, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(5866), 1, - anon_sym_LBRACE, + ACTIONS(7599), 1, + anon_sym_RBRACE, STATE(4478), 2, sym_line_comment, sym_block_comment, - [145797] = 4, + [145868] = 4, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(7605), 1, - anon_sym_RBRACE, + ACTIONS(7601), 1, + anon_sym_DOT, STATE(4479), 2, sym_line_comment, sym_block_comment, - [145811] = 4, - ACTIONS(3), 1, + [145882] = 4, + ACTIONS(497), 1, anon_sym_SLASH_SLASH, - ACTIONS(5), 1, + ACTIONS(499), 1, anon_sym_SLASH_STAR, - ACTIONS(5932), 1, - anon_sym_COLON_EQ, + ACTIONS(7603), 1, + aux_sym__content_block_token1, STATE(4480), 2, sym_line_comment, sym_block_comment, - [145825] = 4, + [145896] = 4, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(935), 1, + ACTIONS(925), 1, anon_sym_RBRACE, STATE(4481), 2, sym_line_comment, sym_block_comment, - [145839] = 4, + [145910] = 4, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(7607), 1, + ACTIONS(7605), 1, anon_sym_RBRACE, STATE(4482), 2, sym_line_comment, sym_block_comment, - [145853] = 4, + [145924] = 4, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(7609), 1, - anon_sym_RBRACK, + ACTIONS(5929), 1, + anon_sym_COLON_EQ, STATE(4483), 2, sym_line_comment, sym_block_comment, - [145867] = 4, + [145938] = 4, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(7611), 1, - anon_sym_COLON_EQ, + ACTIONS(7607), 1, + anon_sym_RBRACE, STATE(4484), 2, sym_line_comment, sym_block_comment, - [145881] = 4, + [145952] = 4, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(909), 1, + ACTIONS(7609), 1, anon_sym_RBRACE, STATE(4485), 2, sym_line_comment, sym_block_comment, - [145895] = 4, + [145966] = 4, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(7613), 1, + ACTIONS(7611), 1, anon_sym_RBRACE, STATE(4486), 2, sym_line_comment, sym_block_comment, - [145909] = 4, + [145980] = 4, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(7615), 1, + ACTIONS(7613), 1, anon_sym_RBRACE, STATE(4487), 2, sym_line_comment, sym_block_comment, - [145923] = 4, + [145994] = 4, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(7617), 1, + ACTIONS(7615), 1, anon_sym_RBRACE, STATE(4488), 2, sym_line_comment, sym_block_comment, - [145937] = 4, + [146008] = 4, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(7619), 1, - anon_sym_RBRACE, + ACTIONS(7617), 1, + anon_sym_LBRACE, STATE(4489), 2, sym_line_comment, sym_block_comment, - [145951] = 4, + [146022] = 4, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(7621), 1, - anon_sym_RBRACK, + ACTIONS(7619), 1, + anon_sym_RBRACE, STATE(4490), 2, sym_line_comment, sym_block_comment, - [145965] = 4, - ACTIONS(3), 1, + [146036] = 4, + ACTIONS(497), 1, anon_sym_SLASH_SLASH, - ACTIONS(5), 1, + ACTIONS(499), 1, anon_sym_SLASH_STAR, - ACTIONS(7623), 1, - anon_sym_RBRACE, + ACTIONS(7621), 1, + aux_sym__content_block_token1, STATE(4491), 2, sym_line_comment, sym_block_comment, - [145979] = 4, + [146050] = 4, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(7625), 1, - anon_sym_RBRACK, + ACTIONS(7623), 1, + anon_sym_LBRACE, STATE(4492), 2, sym_line_comment, sym_block_comment, - [145993] = 4, + [146064] = 4, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(7627), 1, - anon_sym_RBRACE, + ACTIONS(7625), 1, + sym_int_literal, STATE(4493), 2, sym_line_comment, sym_block_comment, - [146007] = 4, + [146078] = 4, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(7629), 1, - anon_sym_LPAREN, + ACTIONS(5364), 1, + anon_sym_LBRACE, STATE(4494), 2, sym_line_comment, sym_block_comment, - [146021] = 4, + [146092] = 4, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(7631), 1, - anon_sym_DOT, + ACTIONS(7627), 1, + anon_sym_LBRACE, STATE(4495), 2, sym_line_comment, sym_block_comment, - [146035] = 4, + [146106] = 4, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(7633), 1, - anon_sym_RBRACE, + ACTIONS(7629), 1, + anon_sym_DOT, STATE(4496), 2, sym_line_comment, sym_block_comment, - [146049] = 4, + [146120] = 4, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(7635), 1, + ACTIONS(7631), 1, anon_sym_LPAREN, STATE(4497), 2, sym_line_comment, sym_block_comment, - [146063] = 4, + [146134] = 4, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(947), 1, - anon_sym_RBRACE, + ACTIONS(7633), 1, + anon_sym_DOT, STATE(4498), 2, sym_line_comment, sym_block_comment, - [146077] = 4, + [146148] = 4, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(7637), 1, - anon_sym_RBRACE, + ACTIONS(7635), 1, + anon_sym_LBRACE, STATE(4499), 2, sym_line_comment, sym_block_comment, - [146091] = 4, - ACTIONS(497), 1, + [146162] = 4, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, - ACTIONS(499), 1, + ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(7639), 1, - aux_sym_hash_statement_token1, + ACTIONS(7637), 1, + anon_sym_EQ, STATE(4500), 2, sym_line_comment, sym_block_comment, - [146105] = 4, + [146176] = 4, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(7641), 1, - anon_sym_RBRACE, + ACTIONS(7639), 1, + sym_identifier, STATE(4501), 2, sym_line_comment, sym_block_comment, - [146119] = 4, + [146190] = 4, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(1639), 1, - anon_sym_RPAREN, + ACTIONS(7641), 1, + anon_sym_RBRACE, STATE(4502), 2, sym_line_comment, sym_block_comment, - [146133] = 4, + [146204] = 4, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7643), 1, - anon_sym_RBRACE, + anon_sym_RBRACK, STATE(4503), 2, sym_line_comment, sym_block_comment, - [146147] = 4, + [146218] = 4, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(941), 1, + ACTIONS(7645), 1, anon_sym_RBRACE, STATE(4504), 2, sym_line_comment, sym_block_comment, - [146161] = 4, + [146232] = 4, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(7315), 1, - anon_sym_RPAREN, + ACTIONS(7647), 1, + anon_sym_RBRACK, STATE(4505), 2, sym_line_comment, sym_block_comment, - [146175] = 4, + [146246] = 4, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(7645), 1, + ACTIONS(7649), 1, anon_sym_RBRACE, STATE(4506), 2, sym_line_comment, sym_block_comment, - [146189] = 4, + [146260] = 4, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(7647), 1, - sym_int_literal, + ACTIONS(5868), 1, + anon_sym_LBRACE, STATE(4507), 2, sym_line_comment, sym_block_comment, - [146203] = 4, + [146274] = 4, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(7649), 1, + ACTIONS(7651), 1, anon_sym_RBRACE, STATE(4508), 2, sym_line_comment, sym_block_comment, - [146217] = 4, + [146288] = 4, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(7651), 1, + ACTIONS(877), 1, anon_sym_RBRACE, STATE(4509), 2, sym_line_comment, sym_block_comment, - [146231] = 4, + [146302] = 4, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(7213), 1, - anon_sym_RBRACE, + ACTIONS(7653), 1, + anon_sym_RBRACK, STATE(4510), 2, sym_line_comment, sym_block_comment, - [146245] = 4, + [146316] = 4, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(7653), 1, - anon_sym_RBRACK, + ACTIONS(7655), 1, + anon_sym_COLON_EQ, STATE(4511), 2, sym_line_comment, sym_block_comment, - [146259] = 4, + [146330] = 4, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(7655), 1, - anon_sym_DOT, + ACTIONS(7657), 1, + anon_sym_RBRACE, STATE(4512), 2, sym_line_comment, sym_block_comment, - [146273] = 4, + [146344] = 4, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(7657), 1, + ACTIONS(7659), 1, anon_sym_RBRACE, STATE(4513), 2, sym_line_comment, sym_block_comment, - [146287] = 4, + [146358] = 4, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(7659), 1, - anon_sym_DOT, + ACTIONS(7661), 1, + anon_sym_RBRACE, STATE(4514), 2, sym_line_comment, sym_block_comment, - [146301] = 4, + [146372] = 4, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(7661), 1, - anon_sym_RBRACE, + ACTIONS(7663), 1, + anon_sym_DOT, STATE(4515), 2, sym_line_comment, sym_block_comment, - [146315] = 4, + [146386] = 4, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(7663), 1, - anon_sym_RBRACE, + ACTIONS(7665), 1, + anon_sym_LBRACE, STATE(4516), 2, sym_line_comment, sym_block_comment, - [146329] = 4, + [146400] = 4, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(7665), 1, + ACTIONS(7667), 1, anon_sym_RBRACE, STATE(4517), 2, sym_line_comment, sym_block_comment, - [146343] = 4, + [146414] = 4, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(7667), 1, + ACTIONS(7669), 1, anon_sym_RBRACE, STATE(4518), 2, sym_line_comment, sym_block_comment, - [146357] = 4, - ACTIONS(497), 1, + [146428] = 4, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, - ACTIONS(499), 1, + ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(7669), 1, - aux_sym_shebang_token1, + ACTIONS(7671), 1, + anon_sym_RBRACE, STATE(4519), 2, sym_line_comment, sym_block_comment, - [146371] = 4, + [146442] = 4, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(7671), 1, - anon_sym_DOT, + ACTIONS(7673), 1, + anon_sym_RBRACE, STATE(4520), 2, sym_line_comment, sym_block_comment, - [146385] = 4, + [146456] = 4, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(7673), 1, + ACTIONS(7675), 1, anon_sym_RBRACK, STATE(4521), 2, sym_line_comment, sym_block_comment, - [146399] = 4, - ACTIONS(3), 1, + [146470] = 4, + ACTIONS(497), 1, anon_sym_SLASH_SLASH, - ACTIONS(5), 1, + ACTIONS(499), 1, anon_sym_SLASH_STAR, - ACTIONS(927), 1, - anon_sym_RBRACE, + ACTIONS(7677), 1, + aux_sym_shebang_token1, STATE(4522), 2, sym_line_comment, sym_block_comment, - [146413] = 4, + [146484] = 4, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(7675), 1, - anon_sym_RBRACK, + ACTIONS(7679), 1, + anon_sym_DOT, STATE(4523), 2, sym_line_comment, sym_block_comment, - [146427] = 4, + [146498] = 4, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(7677), 1, - anon_sym_DOT, + ACTIONS(7681), 1, + anon_sym_RBRACE, STATE(4524), 2, sym_line_comment, sym_block_comment, - [146441] = 4, + [146512] = 4, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(7679), 1, - anon_sym_RBRACE, + ACTIONS(7683), 1, + anon_sym_RBRACK, STATE(4525), 2, sym_line_comment, sym_block_comment, - [146455] = 4, + [146526] = 4, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(4902), 1, - sym_identifier, + ACTIONS(7685), 1, + anon_sym_LPAREN, STATE(4526), 2, sym_line_comment, sym_block_comment, - [146469] = 4, + [146540] = 4, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(1633), 1, + ACTIONS(1625), 1, anon_sym_RPAREN, STATE(4527), 2, sym_line_comment, sym_block_comment, - [146483] = 4, + [146554] = 4, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(1498), 1, - anon_sym_RPAREN, + ACTIONS(7687), 1, + anon_sym_RBRACE, STATE(4528), 2, sym_line_comment, sym_block_comment, - [146497] = 4, + [146568] = 4, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(7681), 1, + ACTIONS(905), 1, anon_sym_RBRACE, STATE(4529), 2, sym_line_comment, sym_block_comment, - [146511] = 4, + [146582] = 4, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(7683), 1, - sym_identifier, + ACTIONS(7689), 1, + anon_sym_COLON, STATE(4530), 2, sym_line_comment, sym_block_comment, - [146525] = 4, + [146596] = 4, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(7685), 1, - sym_identifier, + ACTIONS(7691), 1, + anon_sym_RBRACK, STATE(4531), 2, sym_line_comment, sym_block_comment, - [146539] = 4, + [146610] = 4, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(7687), 1, - sym_identifier, + ACTIONS(7693), 1, + anon_sym_RBRACE, STATE(4532), 2, sym_line_comment, sym_block_comment, - [146553] = 4, + [146624] = 4, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(7689), 1, + ACTIONS(7695), 1, anon_sym_RBRACE, STATE(4533), 2, sym_line_comment, sym_block_comment, - [146567] = 4, + [146638] = 4, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(7691), 1, - anon_sym_RBRACE, + ACTIONS(7697), 1, + anon_sym_DOT, STATE(4534), 2, sym_line_comment, sym_block_comment, - [146581] = 4, + [146652] = 4, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(7693), 1, - anon_sym_LBRACE, + ACTIONS(1635), 1, + anon_sym_RPAREN, STATE(4535), 2, sym_line_comment, sym_block_comment, - [146595] = 4, + [146666] = 4, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(4948), 1, - sym_identifier, + ACTIONS(7699), 1, + anon_sym_RBRACE, STATE(4536), 2, sym_line_comment, sym_block_comment, - [146609] = 4, + [146680] = 4, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(911), 1, - anon_sym_RBRACE, + ACTIONS(7701), 1, + anon_sym_RBRACK, STATE(4537), 2, sym_line_comment, sym_block_comment, - [146623] = 4, + [146694] = 4, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(7695), 1, - anon_sym_RBRACK, + ACTIONS(6466), 1, + anon_sym_RBRACE, STATE(4538), 2, sym_line_comment, sym_block_comment, - [146637] = 4, + [146708] = 4, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(7697), 1, + ACTIONS(891), 1, anon_sym_RBRACE, STATE(4539), 2, sym_line_comment, sym_block_comment, - [146651] = 4, + [146722] = 4, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(7699), 1, + ACTIONS(7703), 1, anon_sym_RBRACE, STATE(4540), 2, sym_line_comment, sym_block_comment, - [146665] = 4, + [146736] = 4, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(7701), 1, - anon_sym_RBRACK, + ACTIONS(7705), 1, + anon_sym_RBRACE, STATE(4541), 2, sym_line_comment, sym_block_comment, - [146679] = 4, + [146750] = 4, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(7703), 1, - anon_sym_EQ, + ACTIONS(7707), 1, + anon_sym_RBRACK, STATE(4542), 2, sym_line_comment, sym_block_comment, - [146693] = 4, + [146764] = 4, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(7705), 1, + ACTIONS(7709), 1, anon_sym_RBRACE, STATE(4543), 2, sym_line_comment, sym_block_comment, - [146707] = 4, - ACTIONS(3), 1, + [146778] = 4, + ACTIONS(497), 1, anon_sym_SLASH_SLASH, - ACTIONS(5), 1, + ACTIONS(499), 1, anon_sym_SLASH_STAR, - ACTIONS(7707), 1, - anon_sym_RBRACE, + ACTIONS(7711), 1, + aux_sym_hash_statement_token1, STATE(4544), 2, sym_line_comment, sym_block_comment, - [146721] = 4, + [146792] = 4, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(7709), 1, - anon_sym_RBRACE, + ACTIONS(7713), 1, + anon_sym_EQ, STATE(4545), 2, sym_line_comment, sym_block_comment, - [146735] = 4, + [146806] = 4, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(7711), 1, + ACTIONS(7715), 1, anon_sym_RBRACE, STATE(4546), 2, sym_line_comment, sym_block_comment, - [146749] = 4, + [146820] = 4, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(7713), 1, + ACTIONS(7717), 1, anon_sym_RBRACE, STATE(4547), 2, sym_line_comment, sym_block_comment, - [146763] = 4, + [146834] = 4, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(891), 1, + ACTIONS(7719), 1, anon_sym_RBRACE, STATE(4548), 2, sym_line_comment, sym_block_comment, - [146777] = 4, + [146848] = 4, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(7715), 1, + ACTIONS(7721), 1, anon_sym_RBRACE, STATE(4549), 2, sym_line_comment, sym_block_comment, - [146791] = 4, + [146862] = 4, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(7717), 1, + ACTIONS(7723), 1, anon_sym_RBRACE, STATE(4550), 2, sym_line_comment, sym_block_comment, - [146805] = 4, + [146876] = 4, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(7719), 1, + ACTIONS(7725), 1, anon_sym_RBRACE, STATE(4551), 2, sym_line_comment, sym_block_comment, - [146819] = 4, + [146890] = 4, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(7721), 1, - anon_sym_RBRACK, + ACTIONS(7727), 1, + anon_sym_RBRACE, STATE(4552), 2, sym_line_comment, sym_block_comment, - [146833] = 4, + [146904] = 4, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(7723), 1, - anon_sym_RBRACK, + ACTIONS(7729), 1, + anon_sym_DOT, STATE(4553), 2, sym_line_comment, sym_block_comment, - [146847] = 4, + [146918] = 4, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(7725), 1, + ACTIONS(7731), 1, anon_sym_RBRACE, STATE(4554), 2, sym_line_comment, sym_block_comment, - [146861] = 4, + [146932] = 4, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(889), 1, - anon_sym_RBRACE, + ACTIONS(7733), 1, + anon_sym_RBRACK, STATE(4555), 2, sym_line_comment, sym_block_comment, - [146875] = 4, + [146946] = 4, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(7727), 1, + ACTIONS(7735), 1, anon_sym_RBRACE, STATE(4556), 2, sym_line_comment, sym_block_comment, - [146889] = 4, + [146960] = 4, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(7729), 1, - sym_identifier, + ACTIONS(7737), 1, + anon_sym_RBRACE, STATE(4557), 2, sym_line_comment, sym_block_comment, - [146903] = 4, + [146974] = 4, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(7731), 1, - anon_sym_RBRACE, + ACTIONS(1633), 1, + anon_sym_RPAREN, STATE(4558), 2, sym_line_comment, sym_block_comment, - [146917] = 4, + [146988] = 4, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(7733), 1, + ACTIONS(7739), 1, anon_sym_RBRACE, STATE(4559), 2, sym_line_comment, sym_block_comment, - [146931] = 4, + [147002] = 4, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(7735), 1, + ACTIONS(951), 1, anon_sym_RBRACE, STATE(4560), 2, sym_line_comment, sym_block_comment, - [146945] = 4, + [147016] = 4, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(481), 1, + ACTIONS(7741), 1, anon_sym_RBRACE, STATE(4561), 2, sym_line_comment, sym_block_comment, - [146959] = 4, + [147030] = 4, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(7737), 1, - anon_sym_EQ, + ACTIONS(901), 1, + anon_sym_RBRACE, STATE(4562), 2, sym_line_comment, sym_block_comment, - [146973] = 4, + [147044] = 4, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(7739), 1, - sym_identifier, + ACTIONS(7743), 1, + anon_sym_RBRACE, STATE(4563), 2, sym_line_comment, sym_block_comment, - [146987] = 4, + [147058] = 4, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(7741), 1, + ACTIONS(7745), 1, anon_sym_RBRACE, STATE(4564), 2, sym_line_comment, sym_block_comment, - [147001] = 4, + [147072] = 4, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(7743), 1, + ACTIONS(7747), 1, anon_sym_RBRACE, STATE(4565), 2, sym_line_comment, sym_block_comment, - [147015] = 4, + [147086] = 4, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(7745), 1, + ACTIONS(883), 1, anon_sym_RBRACE, STATE(4566), 2, sym_line_comment, sym_block_comment, - [147029] = 4, + [147100] = 4, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(7747), 1, - anon_sym_RBRACE, + ACTIONS(7749), 1, + anon_sym_LBRACE, STATE(4567), 2, sym_line_comment, sym_block_comment, - [147043] = 4, + [147114] = 4, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(7749), 1, + ACTIONS(7751), 1, anon_sym_RBRACE, STATE(4568), 2, sym_line_comment, sym_block_comment, - [147057] = 4, + [147128] = 4, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(929), 1, - anon_sym_RBRACE, + ACTIONS(7753), 1, + anon_sym_RBRACK, STATE(4569), 2, sym_line_comment, sym_block_comment, - [147071] = 4, + [147142] = 4, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(7751), 1, + ACTIONS(7755), 1, anon_sym_RBRACE, STATE(4570), 2, sym_line_comment, sym_block_comment, - [147085] = 4, + [147156] = 4, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(7753), 1, + ACTIONS(7757), 1, anon_sym_RBRACE, STATE(4571), 2, sym_line_comment, sym_block_comment, - [147099] = 4, + [147170] = 4, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(7755), 1, + ACTIONS(7759), 1, anon_sym_RBRACE, STATE(4572), 2, sym_line_comment, sym_block_comment, - [147113] = 4, + [147184] = 4, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(7757), 1, + ACTIONS(7761), 1, anon_sym_RBRACK, STATE(4573), 2, sym_line_comment, sym_block_comment, - [147127] = 4, + [147198] = 4, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(7759), 1, + ACTIONS(7763), 1, anon_sym_RBRACE, STATE(4574), 2, sym_line_comment, sym_block_comment, - [147141] = 4, + [147212] = 4, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(7761), 1, - anon_sym_RBRACK, + ACTIONS(7765), 1, + anon_sym_RBRACE, STATE(4575), 2, sym_line_comment, sym_block_comment, - [147155] = 4, + [147226] = 4, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(7763), 1, - anon_sym_LBRACE, + ACTIONS(7767), 1, + anon_sym_RBRACE, STATE(4576), 2, sym_line_comment, sym_block_comment, - [147169] = 4, + [147240] = 4, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(7765), 1, - anon_sym_LBRACE, + ACTIONS(7769), 1, + anon_sym_DOT, STATE(4577), 2, sym_line_comment, sym_block_comment, - [147183] = 4, + [147254] = 4, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(7767), 1, + ACTIONS(7771), 1, anon_sym_RBRACE, STATE(4578), 2, sym_line_comment, sym_block_comment, - [147197] = 4, + [147268] = 4, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(7769), 1, - ts_builtin_sym_end, + ACTIONS(7773), 1, + anon_sym_PIPE, STATE(4579), 2, sym_line_comment, sym_block_comment, - [147211] = 4, + [147282] = 4, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(1637), 1, - anon_sym_RPAREN, + ACTIONS(7775), 1, + anon_sym_RBRACK, STATE(4580), 2, sym_line_comment, sym_block_comment, - [147225] = 4, + [147296] = 4, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(7771), 1, - anon_sym_RBRACE, + ACTIONS(7777), 1, + anon_sym_RBRACK, STATE(4581), 2, sym_line_comment, sym_block_comment, - [147239] = 4, + [147310] = 4, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(7773), 1, - anon_sym_RBRACE, + ACTIONS(7779), 1, + ts_builtin_sym_end, STATE(4582), 2, sym_line_comment, sym_block_comment, - [147253] = 4, + [147324] = 4, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(7775), 1, - anon_sym_LBRACE, + ACTIONS(7781), 1, + anon_sym_RBRACE, STATE(4583), 2, sym_line_comment, sym_block_comment, - [147267] = 4, + [147338] = 4, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(7777), 1, - anon_sym_LBRACE, + ACTIONS(7783), 1, + sym_identifier, STATE(4584), 2, sym_line_comment, sym_block_comment, - [147281] = 4, + [147352] = 4, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(7779), 1, - sym_int_literal, + ACTIONS(939), 1, + anon_sym_RBRACE, STATE(4585), 2, sym_line_comment, sym_block_comment, - [147295] = 4, + [147366] = 4, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(7781), 1, - anon_sym_RBRACE, + ACTIONS(7149), 1, + anon_sym_RPAREN, STATE(4586), 2, sym_line_comment, sym_block_comment, - [147309] = 4, + [147380] = 4, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(879), 1, - anon_sym_RBRACE, + ACTIONS(7785), 1, + sym_identifier, STATE(4587), 2, sym_line_comment, sym_block_comment, - [147323] = 4, + [147394] = 4, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(6585), 1, + ACTIONS(927), 1, anon_sym_RBRACE, STATE(4588), 2, sym_line_comment, sym_block_comment, - [147337] = 4, + [147408] = 4, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(1500), 1, - anon_sym_RPAREN, + ACTIONS(7787), 1, + anon_sym_RBRACE, STATE(4589), 2, sym_line_comment, sym_block_comment, - [147351] = 4, + [147422] = 4, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(921), 1, + ACTIONS(7789), 1, anon_sym_RBRACE, STATE(4590), 2, sym_line_comment, sym_block_comment, - [147365] = 4, + [147436] = 4, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(7783), 1, - sym_identifier, + ACTIONS(7791), 1, + anon_sym_RBRACE, STATE(4591), 2, sym_line_comment, sym_block_comment, - [147379] = 4, - ACTIONS(497), 1, + [147450] = 4, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, - ACTIONS(499), 1, + ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(7785), 1, - aux_sym_hash_statement_token1, + ACTIONS(7793), 1, + anon_sym_RBRACE, STATE(4592), 2, sym_line_comment, sym_block_comment, - [147393] = 4, + [147464] = 4, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(7787), 1, - anon_sym_RBRACE, + ACTIONS(7795), 1, + sym_identifier, STATE(4593), 2, sym_line_comment, sym_block_comment, - [147407] = 4, + [147478] = 4, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(7789), 1, - anon_sym_RBRACE, + ACTIONS(7797), 1, + sym_identifier, STATE(4594), 2, sym_line_comment, sym_block_comment, - [147421] = 4, - ACTIONS(3), 1, + [147492] = 4, + ACTIONS(497), 1, anon_sym_SLASH_SLASH, - ACTIONS(5), 1, + ACTIONS(499), 1, anon_sym_SLASH_STAR, - ACTIONS(7791), 1, - anon_sym_LPAREN, + ACTIONS(7799), 1, + aux_sym_hash_statement_token1, STATE(4595), 2, sym_line_comment, sym_block_comment, - [147435] = 4, + [147506] = 4, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(7793), 1, + ACTIONS(7801), 1, anon_sym_RBRACE, STATE(4596), 2, sym_line_comment, sym_block_comment, - [147449] = 4, + [147520] = 4, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(7795), 1, + ACTIONS(7803), 1, anon_sym_RBRACE, STATE(4597), 2, sym_line_comment, sym_block_comment, - [147463] = 4, + [147534] = 4, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(7797), 1, - anon_sym_RBRACK, + ACTIONS(7805), 1, + anon_sym_LPAREN, STATE(4598), 2, sym_line_comment, sym_block_comment, - [147477] = 4, + [147548] = 4, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(7799), 1, + ACTIONS(7807), 1, anon_sym_RBRACE, STATE(4599), 2, sym_line_comment, sym_block_comment, - [147491] = 4, + [147562] = 4, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(7801), 1, - anon_sym_LPAREN, + ACTIONS(7809), 1, + sym_identifier, STATE(4600), 2, sym_line_comment, sym_block_comment, - [147505] = 4, + [147576] = 4, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(7803), 1, + ACTIONS(7811), 1, anon_sym_RBRACE, STATE(4601), 2, sym_line_comment, sym_block_comment, - [147519] = 4, + [147590] = 4, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(7805), 1, + ACTIONS(937), 1, anon_sym_RBRACE, STATE(4602), 2, sym_line_comment, sym_block_comment, - [147533] = 4, + [147604] = 4, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(7807), 1, - anon_sym_RBRACE, + ACTIONS(7813), 1, + anon_sym_LPAREN, STATE(4603), 2, sym_line_comment, sym_block_comment, - [147547] = 4, + [147618] = 4, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(7809), 1, - anon_sym_LPAREN, + ACTIONS(4902), 1, + sym_identifier, STATE(4604), 2, sym_line_comment, sym_block_comment, - [147561] = 4, + [147632] = 4, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(919), 1, + ACTIONS(7815), 1, anon_sym_RBRACE, STATE(4605), 2, sym_line_comment, sym_block_comment, - [147575] = 4, + [147646] = 4, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(7811), 1, + ACTIONS(945), 1, anon_sym_RBRACE, STATE(4606), 2, sym_line_comment, sym_block_comment, - [147589] = 4, + [147660] = 4, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(893), 1, - anon_sym_RBRACE, + ACTIONS(7817), 1, + anon_sym_LPAREN, STATE(4607), 2, sym_line_comment, sym_block_comment, - [147603] = 4, + [147674] = 4, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(7813), 1, - anon_sym_LPAREN, + ACTIONS(4922), 1, + sym_identifier, STATE(4608), 2, sym_line_comment, sym_block_comment, - [147617] = 4, + [147688] = 4, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(7815), 1, + ACTIONS(7819), 1, anon_sym_RBRACE, STATE(4609), 2, sym_line_comment, sym_block_comment, - [147631] = 4, + [147702] = 4, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(7817), 1, + ACTIONS(7821), 1, anon_sym_RBRACE, STATE(4610), 2, sym_line_comment, sym_block_comment, - [147645] = 4, + [147716] = 4, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(7819), 1, - anon_sym_RBRACE, + ACTIONS(7823), 1, + anon_sym_LPAREN, STATE(4611), 2, sym_line_comment, sym_block_comment, - [147659] = 4, + [147730] = 4, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(7821), 1, - anon_sym_LPAREN, + ACTIONS(949), 1, + anon_sym_RBRACE, STATE(4612), 2, sym_line_comment, sym_block_comment, - [147673] = 4, + [147744] = 4, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(7823), 1, + ACTIONS(7825), 1, anon_sym_RBRACE, STATE(4613), 2, sym_line_comment, sym_block_comment, - [147687] = 4, + [147758] = 4, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(7825), 1, - anon_sym_RBRACE, + ACTIONS(1629), 1, + anon_sym_RPAREN, STATE(4614), 2, sym_line_comment, sym_block_comment, - [147701] = 4, + [147772] = 4, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7827), 1, - sym_identifier, + anon_sym_LPAREN, STATE(4615), 2, sym_line_comment, sym_block_comment, - [147715] = 4, + [147786] = 4, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7829), 1, - anon_sym_LPAREN, + anon_sym_RBRACE, STATE(4616), 2, sym_line_comment, sym_block_comment, - [147729] = 4, + [147800] = 4, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(7831), 1, - sym_identifier, + ACTIONS(931), 1, + anon_sym_RBRACE, STATE(4617), 2, sym_line_comment, sym_block_comment, - [147743] = 4, + [147814] = 4, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(7833), 1, - anon_sym_RBRACE, + ACTIONS(7831), 1, + sym_identifier, STATE(4618), 2, sym_line_comment, sym_block_comment, - [147757] = 4, + [147828] = 4, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(949), 1, - anon_sym_RBRACE, + ACTIONS(7833), 1, + anon_sym_LPAREN, STATE(4619), 2, sym_line_comment, sym_block_comment, - [147771] = 4, + [147842] = 4, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7835), 1, - anon_sym_LPAREN, + sym_identifier, STATE(4620), 2, sym_line_comment, sym_block_comment, - [147785] = 4, + [147856] = 4, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7837), 1, - anon_sym_RBRACE, + anon_sym_RBRACK, STATE(4621), 2, sym_line_comment, sym_block_comment, - [147799] = 4, + [147870] = 4, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(1623), 1, - anon_sym_RPAREN, + ACTIONS(7839), 1, + anon_sym_RBRACK, STATE(4622), 2, sym_line_comment, sym_block_comment, - [147813] = 4, + [147884] = 4, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(6637), 1, - sym_identifier, + ACTIONS(7841), 1, + anon_sym_LPAREN, STATE(4623), 2, sym_line_comment, sym_block_comment, - [147827] = 4, + [147898] = 4, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(7839), 1, - anon_sym_LPAREN, + ACTIONS(1627), 1, + anon_sym_RPAREN, STATE(4624), 2, sym_line_comment, sym_block_comment, - [147841] = 4, + [147912] = 4, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(6964), 1, + ACTIONS(7843), 1, anon_sym_RBRACE, STATE(4625), 2, sym_line_comment, sym_block_comment, - [147855] = 4, + [147926] = 4, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(7841), 1, - anon_sym_RBRACK, + ACTIONS(6913), 1, + sym_identifier, STATE(4626), 2, sym_line_comment, sym_block_comment, - [147869] = 4, + [147940] = 4, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(7843), 1, - anon_sym_RBRACE, + ACTIONS(7845), 1, + anon_sym_LPAREN, STATE(4627), 2, sym_line_comment, sym_block_comment, - [147883] = 4, + [147954] = 4, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(7845), 1, - anon_sym_LPAREN, + ACTIONS(7847), 1, + anon_sym_RBRACK, STATE(4628), 2, sym_line_comment, sym_block_comment, - [147897] = 4, + [147968] = 4, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(7847), 1, - sym_identifier, + ACTIONS(7849), 1, + anon_sym_RBRACE, STATE(4629), 2, sym_line_comment, sym_block_comment, - [147911] = 4, + [147982] = 4, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(7849), 1, - anon_sym_RBRACK, + ACTIONS(7851), 1, + anon_sym_RBRACE, STATE(4630), 2, sym_line_comment, sym_block_comment, - [147925] = 4, + [147996] = 4, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(1629), 1, - anon_sym_RPAREN, + ACTIONS(7853), 1, + anon_sym_LPAREN, STATE(4631), 2, sym_line_comment, sym_block_comment, - [147939] = 4, + [148010] = 4, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(7851), 1, - anon_sym_LPAREN, + ACTIONS(7855), 1, + sym_identifier, STATE(4632), 2, sym_line_comment, sym_block_comment, - [147953] = 4, + [148024] = 4, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(7853), 1, + ACTIONS(7857), 1, anon_sym_RBRACE, STATE(4633), 2, sym_line_comment, sym_block_comment, - [147967] = 4, + [148038] = 4, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(7855), 1, + ACTIONS(7859), 1, anon_sym_RBRACE, STATE(4634), 2, sym_line_comment, sym_block_comment, - [147981] = 4, + [148052] = 4, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(7857), 1, - anon_sym_RBRACE, + ACTIONS(7861), 1, + anon_sym_LPAREN, STATE(4635), 2, sym_line_comment, sym_block_comment, - [147995] = 4, + [148066] = 4, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(7859), 1, + ACTIONS(7863), 1, anon_sym_RBRACE, STATE(4636), 2, sym_line_comment, sym_block_comment, - [148009] = 4, + [148080] = 4, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(7861), 1, + ACTIONS(479), 1, anon_sym_RBRACE, STATE(4637), 2, sym_line_comment, sym_block_comment, - [148023] = 4, + [148094] = 4, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(7863), 1, - anon_sym_RBRACK, + ACTIONS(7865), 1, + anon_sym_RBRACE, STATE(4638), 2, sym_line_comment, sym_block_comment, - [148037] = 4, + [148108] = 4, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(7865), 1, - sym_identifier, + ACTIONS(913), 1, + anon_sym_RBRACE, STATE(4639), 2, sym_line_comment, sym_block_comment, - [148051] = 4, - ACTIONS(497), 1, + [148122] = 4, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, - ACTIONS(499), 1, + ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(7867), 1, - aux_sym_shebang_token1, + ACTIONS(943), 1, + anon_sym_RBRACE, STATE(4640), 2, sym_line_comment, sym_block_comment, - [148065] = 4, + [148136] = 4, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(7869), 1, + ACTIONS(7867), 1, anon_sym_RBRACE, STATE(4641), 2, sym_line_comment, sym_block_comment, - [148079] = 4, + [148150] = 4, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(7871), 1, - anon_sym_RBRACE, + ACTIONS(7869), 1, + sym_identifier, STATE(4642), 2, sym_line_comment, sym_block_comment, - [148093] = 4, + [148164] = 4, + ACTIONS(497), 1, + anon_sym_SLASH_SLASH, + ACTIONS(499), 1, + anon_sym_SLASH_STAR, + ACTIONS(7871), 1, + aux_sym_shebang_token1, + STATE(4643), 2, + sym_line_comment, + sym_block_comment, + [148178] = 4, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7873), 1, anon_sym_RBRACE, - STATE(4643), 2, + STATE(4644), 2, sym_line_comment, sym_block_comment, - [148107] = 4, + [148192] = 4, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7875), 1, anon_sym_RBRACE, - STATE(4644), 2, + STATE(4645), 2, sym_line_comment, sym_block_comment, - [148121] = 1, + [148206] = 4, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, ACTIONS(7877), 1, - ts_builtin_sym_end, - [148125] = 1, + anon_sym_RBRACE, + STATE(4646), 2, + sym_line_comment, + sym_block_comment, + [148220] = 4, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, ACTIONS(7879), 1, - ts_builtin_sym_end, - [148129] = 1, + anon_sym_RBRACE, + STATE(4647), 2, + sym_line_comment, + sym_block_comment, + [148234] = 1, ACTIONS(7881), 1, ts_builtin_sym_end, + [148238] = 1, + ACTIONS(7883), 1, + ts_builtin_sym_end, + [148242] = 1, + ACTIONS(7885), 1, + ts_builtin_sym_end, }; static const uint32_t ts_small_parse_table_map[] = { - [SMALL_STATE(1609)] = 0, - [SMALL_STATE(1610)] = 123, - [SMALL_STATE(1611)] = 216, - [SMALL_STATE(1612)] = 307, - [SMALL_STATE(1613)] = 402, - [SMALL_STATE(1614)] = 495, - [SMALL_STATE(1615)] = 594, - [SMALL_STATE(1616)] = 695, - [SMALL_STATE(1617)] = 786, - [SMALL_STATE(1618)] = 881, - [SMALL_STATE(1619)] = 994, - [SMALL_STATE(1620)] = 1107, - [SMALL_STATE(1621)] = 1198, - [SMALL_STATE(1622)] = 1272, - [SMALL_STATE(1623)] = 1388, - [SMALL_STATE(1624)] = 1462, - [SMALL_STATE(1625)] = 1540, - [SMALL_STATE(1626)] = 1618, - [SMALL_STATE(1627)] = 1691, - [SMALL_STATE(1628)] = 1788, - [SMALL_STATE(1629)] = 1861, - [SMALL_STATE(1630)] = 1934, - [SMALL_STATE(1631)] = 2009, - [SMALL_STATE(1632)] = 2084, - [SMALL_STATE(1633)] = 2157, - [SMALL_STATE(1634)] = 2230, - [SMALL_STATE(1635)] = 2305, - [SMALL_STATE(1636)] = 2378, - [SMALL_STATE(1637)] = 2453, - [SMALL_STATE(1638)] = 2526, - [SMALL_STATE(1639)] = 2619, - [SMALL_STATE(1640)] = 2692, - [SMALL_STATE(1641)] = 2765, - [SMALL_STATE(1642)] = 2856, - [SMALL_STATE(1643)] = 2929, - [SMALL_STATE(1644)] = 3040, - [SMALL_STATE(1645)] = 3113, - [SMALL_STATE(1646)] = 3186, - [SMALL_STATE(1647)] = 3259, - [SMALL_STATE(1648)] = 3334, - [SMALL_STATE(1649)] = 3461, - [SMALL_STATE(1650)] = 3534, - [SMALL_STATE(1651)] = 3609, - [SMALL_STATE(1652)] = 3682, - [SMALL_STATE(1653)] = 3755, - [SMALL_STATE(1654)] = 3828, - [SMALL_STATE(1655)] = 3905, - [SMALL_STATE(1656)] = 4004, - [SMALL_STATE(1657)] = 4131, - [SMALL_STATE(1658)] = 4204, - [SMALL_STATE(1659)] = 4293, - [SMALL_STATE(1660)] = 4382, - [SMALL_STATE(1661)] = 4455, - [SMALL_STATE(1662)] = 4548, - [SMALL_STATE(1663)] = 4621, - [SMALL_STATE(1664)] = 4694, - [SMALL_STATE(1665)] = 4805, - [SMALL_STATE(1666)] = 4916, - [SMALL_STATE(1667)] = 5005, - [SMALL_STATE(1668)] = 5078, - [SMALL_STATE(1669)] = 5153, - [SMALL_STATE(1670)] = 5225, - [SMALL_STATE(1671)] = 5297, - [SMALL_STATE(1672)] = 5369, - [SMALL_STATE(1673)] = 5441, - [SMALL_STATE(1674)] = 5515, - [SMALL_STATE(1675)] = 5589, - [SMALL_STATE(1676)] = 5661, - [SMALL_STATE(1677)] = 5733, - [SMALL_STATE(1678)] = 5805, - [SMALL_STATE(1679)] = 5877, - [SMALL_STATE(1680)] = 5949, - [SMALL_STATE(1681)] = 6021, - [SMALL_STATE(1682)] = 6095, - [SMALL_STATE(1683)] = 6167, - [SMALL_STATE(1684)] = 6239, - [SMALL_STATE(1685)] = 6311, - [SMALL_STATE(1686)] = 6383, - [SMALL_STATE(1687)] = 6455, - [SMALL_STATE(1688)] = 6527, - [SMALL_STATE(1689)] = 6599, - [SMALL_STATE(1690)] = 6671, - [SMALL_STATE(1691)] = 6743, - [SMALL_STATE(1692)] = 6815, - [SMALL_STATE(1693)] = 6887, - [SMALL_STATE(1694)] = 6959, - [SMALL_STATE(1695)] = 7031, - [SMALL_STATE(1696)] = 7103, - [SMALL_STATE(1697)] = 7175, - [SMALL_STATE(1698)] = 7249, - [SMALL_STATE(1699)] = 7321, - [SMALL_STATE(1700)] = 7393, - [SMALL_STATE(1701)] = 7465, - [SMALL_STATE(1702)] = 7537, - [SMALL_STATE(1703)] = 7609, - [SMALL_STATE(1704)] = 7681, - [SMALL_STATE(1705)] = 7753, - [SMALL_STATE(1706)] = 7825, - [SMALL_STATE(1707)] = 7897, - [SMALL_STATE(1708)] = 7969, - [SMALL_STATE(1709)] = 8043, - [SMALL_STATE(1710)] = 8115, - [SMALL_STATE(1711)] = 8187, - [SMALL_STATE(1712)] = 8259, - [SMALL_STATE(1713)] = 8331, - [SMALL_STATE(1714)] = 8403, - [SMALL_STATE(1715)] = 8475, - [SMALL_STATE(1716)] = 8547, - [SMALL_STATE(1717)] = 8619, - [SMALL_STATE(1718)] = 8691, - [SMALL_STATE(1719)] = 8763, - [SMALL_STATE(1720)] = 8835, - [SMALL_STATE(1721)] = 8907, - [SMALL_STATE(1722)] = 8979, - [SMALL_STATE(1723)] = 9051, - [SMALL_STATE(1724)] = 9123, - [SMALL_STATE(1725)] = 9195, - [SMALL_STATE(1726)] = 9267, - [SMALL_STATE(1727)] = 9341, - [SMALL_STATE(1728)] = 9413, - [SMALL_STATE(1729)] = 9485, - [SMALL_STATE(1730)] = 9557, - [SMALL_STATE(1731)] = 9629, - [SMALL_STATE(1732)] = 9701, - [SMALL_STATE(1733)] = 9773, - [SMALL_STATE(1734)] = 9845, - [SMALL_STATE(1735)] = 9921, - [SMALL_STATE(1736)] = 9993, - [SMALL_STATE(1737)] = 10065, - [SMALL_STATE(1738)] = 10137, - [SMALL_STATE(1739)] = 10209, - [SMALL_STATE(1740)] = 10283, - [SMALL_STATE(1741)] = 10355, - [SMALL_STATE(1742)] = 10427, - [SMALL_STATE(1743)] = 10499, - [SMALL_STATE(1744)] = 10571, - [SMALL_STATE(1745)] = 10643, - [SMALL_STATE(1746)] = 10715, - [SMALL_STATE(1747)] = 10791, - [SMALL_STATE(1748)] = 10863, - [SMALL_STATE(1749)] = 10935, - [SMALL_STATE(1750)] = 11007, - [SMALL_STATE(1751)] = 11122, - [SMALL_STATE(1752)] = 11237, - [SMALL_STATE(1753)] = 11310, - [SMALL_STATE(1754)] = 11401, - [SMALL_STATE(1755)] = 11474, - [SMALL_STATE(1756)] = 11569, - [SMALL_STATE(1757)] = 11688, - [SMALL_STATE(1758)] = 11809, - [SMALL_STATE(1759)] = 11900, - [SMALL_STATE(1760)] = 11973, - [SMALL_STATE(1761)] = 12046, - [SMALL_STATE(1762)] = 12161, - [SMALL_STATE(1763)] = 12276, - [SMALL_STATE(1764)] = 12367, - [SMALL_STATE(1765)] = 12458, - [SMALL_STATE(1766)] = 12577, - [SMALL_STATE(1767)] = 12668, - [SMALL_STATE(1768)] = 12763, - [SMALL_STATE(1769)] = 12836, - [SMALL_STATE(1770)] = 12939, - [SMALL_STATE(1771)] = 13040, - [SMALL_STATE(1772)] = 13143, - [SMALL_STATE(1773)] = 13244, - [SMALL_STATE(1774)] = 13339, - [SMALL_STATE(1775)] = 13430, - [SMALL_STATE(1776)] = 13523, - [SMALL_STATE(1777)] = 13596, - [SMALL_STATE(1778)] = 13691, - [SMALL_STATE(1779)] = 13784, - [SMALL_STATE(1780)] = 13854, - [SMALL_STATE(1781)] = 13954, - [SMALL_STATE(1782)] = 14024, - [SMALL_STATE(1783)] = 14096, - [SMALL_STATE(1784)] = 14166, - [SMALL_STATE(1785)] = 14236, - [SMALL_STATE(1786)] = 14306, - [SMALL_STATE(1787)] = 14376, - [SMALL_STATE(1788)] = 14446, - [SMALL_STATE(1789)] = 14516, - [SMALL_STATE(1790)] = 14586, - [SMALL_STATE(1791)] = 14656, - [SMALL_STATE(1792)] = 14726, - [SMALL_STATE(1793)] = 14796, - [SMALL_STATE(1794)] = 14866, - [SMALL_STATE(1795)] = 14936, - [SMALL_STATE(1796)] = 15006, - [SMALL_STATE(1797)] = 15076, - [SMALL_STATE(1798)] = 15146, - [SMALL_STATE(1799)] = 15216, - [SMALL_STATE(1800)] = 15286, - [SMALL_STATE(1801)] = 15360, - [SMALL_STATE(1802)] = 15430, - [SMALL_STATE(1803)] = 15500, - [SMALL_STATE(1804)] = 15570, - [SMALL_STATE(1805)] = 15640, - [SMALL_STATE(1806)] = 15710, - [SMALL_STATE(1807)] = 15782, - [SMALL_STATE(1808)] = 15856, - [SMALL_STATE(1809)] = 15926, - [SMALL_STATE(1810)] = 15996, - [SMALL_STATE(1811)] = 16066, - [SMALL_STATE(1812)] = 16158, - [SMALL_STATE(1813)] = 16228, - [SMALL_STATE(1814)] = 16298, - [SMALL_STATE(1815)] = 16368, - [SMALL_STATE(1816)] = 16438, - [SMALL_STATE(1817)] = 16508, - [SMALL_STATE(1818)] = 16578, - [SMALL_STATE(1819)] = 16648, - [SMALL_STATE(1820)] = 16718, - [SMALL_STATE(1821)] = 16788, - [SMALL_STATE(1822)] = 16858, - [SMALL_STATE(1823)] = 16928, - [SMALL_STATE(1824)] = 16998, - [SMALL_STATE(1825)] = 17068, - [SMALL_STATE(1826)] = 17138, - [SMALL_STATE(1827)] = 17208, - [SMALL_STATE(1828)] = 17282, - [SMALL_STATE(1829)] = 17352, - [SMALL_STATE(1830)] = 17426, - [SMALL_STATE(1831)] = 17496, - [SMALL_STATE(1832)] = 17566, - [SMALL_STATE(1833)] = 17636, - [SMALL_STATE(1834)] = 17706, - [SMALL_STATE(1835)] = 17776, - [SMALL_STATE(1836)] = 17846, - [SMALL_STATE(1837)] = 17916, - [SMALL_STATE(1838)] = 17986, - [SMALL_STATE(1839)] = 18056, - [SMALL_STATE(1840)] = 18126, - [SMALL_STATE(1841)] = 18196, - [SMALL_STATE(1842)] = 18266, - [SMALL_STATE(1843)] = 18360, - [SMALL_STATE(1844)] = 18430, - [SMALL_STATE(1845)] = 18500, - [SMALL_STATE(1846)] = 18570, - [SMALL_STATE(1847)] = 18640, - [SMALL_STATE(1848)] = 18710, - [SMALL_STATE(1849)] = 18780, - [SMALL_STATE(1850)] = 18850, - [SMALL_STATE(1851)] = 18920, - [SMALL_STATE(1852)] = 18992, - [SMALL_STATE(1853)] = 19062, - [SMALL_STATE(1854)] = 19132, - [SMALL_STATE(1855)] = 19202, - [SMALL_STATE(1856)] = 19274, - [SMALL_STATE(1857)] = 19352, - [SMALL_STATE(1858)] = 19422, - [SMALL_STATE(1859)] = 19492, - [SMALL_STATE(1860)] = 19562, - [SMALL_STATE(1861)] = 19676, - [SMALL_STATE(1862)] = 19778, - [SMALL_STATE(1863)] = 19848, - [SMALL_STATE(1864)] = 19962, - [SMALL_STATE(1865)] = 20032, - [SMALL_STATE(1866)] = 20102, - [SMALL_STATE(1867)] = 20172, - [SMALL_STATE(1868)] = 20242, - [SMALL_STATE(1869)] = 20312, - [SMALL_STATE(1870)] = 20382, - [SMALL_STATE(1871)] = 20452, - [SMALL_STATE(1872)] = 20522, - [SMALL_STATE(1873)] = 20592, - [SMALL_STATE(1874)] = 20706, - [SMALL_STATE(1875)] = 20800, - [SMALL_STATE(1876)] = 20870, - [SMALL_STATE(1877)] = 20940, - [SMALL_STATE(1878)] = 21054, - [SMALL_STATE(1879)] = 21124, - [SMALL_STATE(1880)] = 21194, - [SMALL_STATE(1881)] = 21264, - [SMALL_STATE(1882)] = 21334, - [SMALL_STATE(1883)] = 21404, - [SMALL_STATE(1884)] = 21474, - [SMALL_STATE(1885)] = 21544, - [SMALL_STATE(1886)] = 21614, - [SMALL_STATE(1887)] = 21684, - [SMALL_STATE(1888)] = 21754, - [SMALL_STATE(1889)] = 21824, - [SMALL_STATE(1890)] = 21894, - [SMALL_STATE(1891)] = 21964, - [SMALL_STATE(1892)] = 22034, - [SMALL_STATE(1893)] = 22104, - [SMALL_STATE(1894)] = 22174, - [SMALL_STATE(1895)] = 22244, - [SMALL_STATE(1896)] = 22314, - [SMALL_STATE(1897)] = 22384, - [SMALL_STATE(1898)] = 22454, - [SMALL_STATE(1899)] = 22567, - [SMALL_STATE(1900)] = 22680, - [SMALL_STATE(1901)] = 22751, - [SMALL_STATE(1902)] = 22864, - [SMALL_STATE(1903)] = 22941, - [SMALL_STATE(1904)] = 23010, - [SMALL_STATE(1905)] = 23077, - [SMALL_STATE(1906)] = 23148, - [SMALL_STATE(1907)] = 23219, - [SMALL_STATE(1908)] = 23332, - [SMALL_STATE(1909)] = 23403, - [SMALL_STATE(1910)] = 23474, - [SMALL_STATE(1911)] = 23545, - [SMALL_STATE(1912)] = 23613, - [SMALL_STATE(1913)] = 23683, - [SMALL_STATE(1914)] = 23751, - [SMALL_STATE(1915)] = 23821, - [SMALL_STATE(1916)] = 23889, - [SMALL_STATE(1917)] = 23957, - [SMALL_STATE(1918)] = 24025, - [SMALL_STATE(1919)] = 24093, - [SMALL_STATE(1920)] = 24161, - [SMALL_STATE(1921)] = 24229, - [SMALL_STATE(1922)] = 24297, - [SMALL_STATE(1923)] = 24365, - [SMALL_STATE(1924)] = 24433, - [SMALL_STATE(1925)] = 24501, - [SMALL_STATE(1926)] = 24569, - [SMALL_STATE(1927)] = 24637, - [SMALL_STATE(1928)] = 24705, - [SMALL_STATE(1929)] = 24773, - [SMALL_STATE(1930)] = 24841, - [SMALL_STATE(1931)] = 24909, - [SMALL_STATE(1932)] = 24977, - [SMALL_STATE(1933)] = 25045, - [SMALL_STATE(1934)] = 25113, - [SMALL_STATE(1935)] = 25181, - [SMALL_STATE(1936)] = 25249, - [SMALL_STATE(1937)] = 25317, - [SMALL_STATE(1938)] = 25385, - [SMALL_STATE(1939)] = 25453, - [SMALL_STATE(1940)] = 25521, - [SMALL_STATE(1941)] = 25589, - [SMALL_STATE(1942)] = 25657, - [SMALL_STATE(1943)] = 25725, - [SMALL_STATE(1944)] = 25793, - [SMALL_STATE(1945)] = 25861, - [SMALL_STATE(1946)] = 25929, - [SMALL_STATE(1947)] = 25997, - [SMALL_STATE(1948)] = 26065, - [SMALL_STATE(1949)] = 26133, - [SMALL_STATE(1950)] = 26201, - [SMALL_STATE(1951)] = 26269, - [SMALL_STATE(1952)] = 26337, - [SMALL_STATE(1953)] = 26405, - [SMALL_STATE(1954)] = 26473, - [SMALL_STATE(1955)] = 26541, - [SMALL_STATE(1956)] = 26609, - [SMALL_STATE(1957)] = 26677, - [SMALL_STATE(1958)] = 26745, - [SMALL_STATE(1959)] = 26813, - [SMALL_STATE(1960)] = 26881, - [SMALL_STATE(1961)] = 26949, - [SMALL_STATE(1962)] = 27017, - [SMALL_STATE(1963)] = 27085, - [SMALL_STATE(1964)] = 27153, - [SMALL_STATE(1965)] = 27221, - [SMALL_STATE(1966)] = 27289, - [SMALL_STATE(1967)] = 27357, - [SMALL_STATE(1968)] = 27425, - [SMALL_STATE(1969)] = 27493, - [SMALL_STATE(1970)] = 27561, - [SMALL_STATE(1971)] = 27629, - [SMALL_STATE(1972)] = 27697, - [SMALL_STATE(1973)] = 27765, - [SMALL_STATE(1974)] = 27833, - [SMALL_STATE(1975)] = 27901, - [SMALL_STATE(1976)] = 27969, - [SMALL_STATE(1977)] = 28037, - [SMALL_STATE(1978)] = 28105, - [SMALL_STATE(1979)] = 28173, - [SMALL_STATE(1980)] = 28241, - [SMALL_STATE(1981)] = 28309, - [SMALL_STATE(1982)] = 28377, - [SMALL_STATE(1983)] = 28445, - [SMALL_STATE(1984)] = 28513, - [SMALL_STATE(1985)] = 28581, - [SMALL_STATE(1986)] = 28649, - [SMALL_STATE(1987)] = 28717, - [SMALL_STATE(1988)] = 28785, - [SMALL_STATE(1989)] = 28857, - [SMALL_STATE(1990)] = 28925, - [SMALL_STATE(1991)] = 28993, - [SMALL_STATE(1992)] = 29061, - [SMALL_STATE(1993)] = 29129, - [SMALL_STATE(1994)] = 29197, - [SMALL_STATE(1995)] = 29265, - [SMALL_STATE(1996)] = 29333, - [SMALL_STATE(1997)] = 29401, - [SMALL_STATE(1998)] = 29469, - [SMALL_STATE(1999)] = 29537, - [SMALL_STATE(2000)] = 29607, - [SMALL_STATE(2001)] = 29677, - [SMALL_STATE(2002)] = 29745, - [SMALL_STATE(2003)] = 29813, - [SMALL_STATE(2004)] = 29881, - [SMALL_STATE(2005)] = 29949, - [SMALL_STATE(2006)] = 30017, - [SMALL_STATE(2007)] = 30085, - [SMALL_STATE(2008)] = 30155, - [SMALL_STATE(2009)] = 30223, - [SMALL_STATE(2010)] = 30291, - [SMALL_STATE(2011)] = 30359, - [SMALL_STATE(2012)] = 30427, - [SMALL_STATE(2013)] = 30495, - [SMALL_STATE(2014)] = 30563, - [SMALL_STATE(2015)] = 30631, - [SMALL_STATE(2016)] = 30699, - [SMALL_STATE(2017)] = 30767, - [SMALL_STATE(2018)] = 30835, - [SMALL_STATE(2019)] = 30903, - [SMALL_STATE(2020)] = 30971, - [SMALL_STATE(2021)] = 31039, - [SMALL_STATE(2022)] = 31107, - [SMALL_STATE(2023)] = 31177, - [SMALL_STATE(2024)] = 31247, - [SMALL_STATE(2025)] = 31315, - [SMALL_STATE(2026)] = 31385, - [SMALL_STATE(2027)] = 31453, - [SMALL_STATE(2028)] = 31521, - [SMALL_STATE(2029)] = 31589, - [SMALL_STATE(2030)] = 31657, - [SMALL_STATE(2031)] = 31725, - [SMALL_STATE(2032)] = 31793, - [SMALL_STATE(2033)] = 31861, - [SMALL_STATE(2034)] = 31929, - [SMALL_STATE(2035)] = 32001, - [SMALL_STATE(2036)] = 32069, - [SMALL_STATE(2037)] = 32137, - [SMALL_STATE(2038)] = 32205, - [SMALL_STATE(2039)] = 32273, - [SMALL_STATE(2040)] = 32341, - [SMALL_STATE(2041)] = 32409, - [SMALL_STATE(2042)] = 32477, - [SMALL_STATE(2043)] = 32549, - [SMALL_STATE(2044)] = 32617, - [SMALL_STATE(2045)] = 32685, - [SMALL_STATE(2046)] = 32753, - [SMALL_STATE(2047)] = 32821, - [SMALL_STATE(2048)] = 32889, - [SMALL_STATE(2049)] = 32957, - [SMALL_STATE(2050)] = 33025, - [SMALL_STATE(2051)] = 33093, - [SMALL_STATE(2052)] = 33161, - [SMALL_STATE(2053)] = 33229, - [SMALL_STATE(2054)] = 33297, - [SMALL_STATE(2055)] = 33365, - [SMALL_STATE(2056)] = 33433, - [SMALL_STATE(2057)] = 33501, - [SMALL_STATE(2058)] = 33569, - [SMALL_STATE(2059)] = 33637, - [SMALL_STATE(2060)] = 33705, - [SMALL_STATE(2061)] = 33773, - [SMALL_STATE(2062)] = 33841, - [SMALL_STATE(2063)] = 33913, - [SMALL_STATE(2064)] = 33981, - [SMALL_STATE(2065)] = 34049, - [SMALL_STATE(2066)] = 34117, - [SMALL_STATE(2067)] = 34185, - [SMALL_STATE(2068)] = 34253, - [SMALL_STATE(2069)] = 34321, - [SMALL_STATE(2070)] = 34389, - [SMALL_STATE(2071)] = 34457, - [SMALL_STATE(2072)] = 34525, - [SMALL_STATE(2073)] = 34593, - [SMALL_STATE(2074)] = 34661, - [SMALL_STATE(2075)] = 34729, - [SMALL_STATE(2076)] = 34797, - [SMALL_STATE(2077)] = 34865, - [SMALL_STATE(2078)] = 34933, - [SMALL_STATE(2079)] = 35001, - [SMALL_STATE(2080)] = 35071, - [SMALL_STATE(2081)] = 35139, - [SMALL_STATE(2082)] = 35207, - [SMALL_STATE(2083)] = 35275, - [SMALL_STATE(2084)] = 35343, - [SMALL_STATE(2085)] = 35411, - [SMALL_STATE(2086)] = 35479, - [SMALL_STATE(2087)] = 35547, - [SMALL_STATE(2088)] = 35615, - [SMALL_STATE(2089)] = 35683, - [SMALL_STATE(2090)] = 35751, - [SMALL_STATE(2091)] = 35819, - [SMALL_STATE(2092)] = 35887, - [SMALL_STATE(2093)] = 35955, - [SMALL_STATE(2094)] = 36023, - [SMALL_STATE(2095)] = 36091, - [SMALL_STATE(2096)] = 36159, - [SMALL_STATE(2097)] = 36227, - [SMALL_STATE(2098)] = 36295, - [SMALL_STATE(2099)] = 36363, - [SMALL_STATE(2100)] = 36433, - [SMALL_STATE(2101)] = 36501, - [SMALL_STATE(2102)] = 36569, - [SMALL_STATE(2103)] = 36637, - [SMALL_STATE(2104)] = 36707, - [SMALL_STATE(2105)] = 36775, - [SMALL_STATE(2106)] = 36843, - [SMALL_STATE(2107)] = 36911, - [SMALL_STATE(2108)] = 36979, - [SMALL_STATE(2109)] = 37047, - [SMALL_STATE(2110)] = 37115, - [SMALL_STATE(2111)] = 37183, - [SMALL_STATE(2112)] = 37251, - [SMALL_STATE(2113)] = 37319, - [SMALL_STATE(2114)] = 37387, - [SMALL_STATE(2115)] = 37454, - [SMALL_STATE(2116)] = 37521, - [SMALL_STATE(2117)] = 37588, - [SMALL_STATE(2118)] = 37655, - [SMALL_STATE(2119)] = 37722, - [SMALL_STATE(2120)] = 37804, - [SMALL_STATE(2121)] = 37874, - [SMALL_STATE(2122)] = 37956, - [SMALL_STATE(2123)] = 38038, - [SMALL_STATE(2124)] = 38107, - [SMALL_STATE(2125)] = 38176, - [SMALL_STATE(2126)] = 38247, - [SMALL_STATE(2127)] = 38315, - [SMALL_STATE(2128)] = 38385, - [SMALL_STATE(2129)] = 38449, - [SMALL_STATE(2130)] = 38513, - [SMALL_STATE(2131)] = 38579, - [SMALL_STATE(2132)] = 38643, - [SMALL_STATE(2133)] = 38707, - [SMALL_STATE(2134)] = 38771, - [SMALL_STATE(2135)] = 38837, - [SMALL_STATE(2136)] = 38945, - [SMALL_STATE(2137)] = 39011, - [SMALL_STATE(2138)] = 39075, - [SMALL_STATE(2139)] = 39139, - [SMALL_STATE(2140)] = 39203, - [SMALL_STATE(2141)] = 39269, - [SMALL_STATE(2142)] = 39333, - [SMALL_STATE(2143)] = 39397, - [SMALL_STATE(2144)] = 39461, - [SMALL_STATE(2145)] = 39525, - [SMALL_STATE(2146)] = 39588, - [SMALL_STATE(2147)] = 39651, - [SMALL_STATE(2148)] = 39714, - [SMALL_STATE(2149)] = 39777, - [SMALL_STATE(2150)] = 39840, - [SMALL_STATE(2151)] = 39903, - [SMALL_STATE(2152)] = 39966, - [SMALL_STATE(2153)] = 40029, - [SMALL_STATE(2154)] = 40092, - [SMALL_STATE(2155)] = 40155, - [SMALL_STATE(2156)] = 40218, - [SMALL_STATE(2157)] = 40281, - [SMALL_STATE(2158)] = 40344, - [SMALL_STATE(2159)] = 40425, - [SMALL_STATE(2160)] = 40508, - [SMALL_STATE(2161)] = 40571, - [SMALL_STATE(2162)] = 40634, - [SMALL_STATE(2163)] = 40697, - [SMALL_STATE(2164)] = 40784, - [SMALL_STATE(2165)] = 40873, - [SMALL_STATE(2166)] = 40956, - [SMALL_STATE(2167)] = 41019, - [SMALL_STATE(2168)] = 41082, - [SMALL_STATE(2169)] = 41145, - [SMALL_STATE(2170)] = 41208, - [SMALL_STATE(2171)] = 41271, - [SMALL_STATE(2172)] = 41334, - [SMALL_STATE(2173)] = 41397, - [SMALL_STATE(2174)] = 41460, - [SMALL_STATE(2175)] = 41523, - [SMALL_STATE(2176)] = 41586, - [SMALL_STATE(2177)] = 41651, - [SMALL_STATE(2178)] = 41714, - [SMALL_STATE(2179)] = 41777, - [SMALL_STATE(2180)] = 41840, - [SMALL_STATE(2181)] = 41903, - [SMALL_STATE(2182)] = 41966, - [SMALL_STATE(2183)] = 42029, - [SMALL_STATE(2184)] = 42092, - [SMALL_STATE(2185)] = 42203, - [SMALL_STATE(2186)] = 42266, - [SMALL_STATE(2187)] = 42329, - [SMALL_STATE(2188)] = 42392, - [SMALL_STATE(2189)] = 42455, - [SMALL_STATE(2190)] = 42518, - [SMALL_STATE(2191)] = 42581, - [SMALL_STATE(2192)] = 42644, - [SMALL_STATE(2193)] = 42707, - [SMALL_STATE(2194)] = 42770, - [SMALL_STATE(2195)] = 42833, - [SMALL_STATE(2196)] = 42896, - [SMALL_STATE(2197)] = 42959, - [SMALL_STATE(2198)] = 43022, - [SMALL_STATE(2199)] = 43085, - [SMALL_STATE(2200)] = 43148, - [SMALL_STATE(2201)] = 43211, - [SMALL_STATE(2202)] = 43274, - [SMALL_STATE(2203)] = 43337, - [SMALL_STATE(2204)] = 43400, - [SMALL_STATE(2205)] = 43463, - [SMALL_STATE(2206)] = 43526, - [SMALL_STATE(2207)] = 43589, - [SMALL_STATE(2208)] = 43690, - [SMALL_STATE(2209)] = 43753, - [SMALL_STATE(2210)] = 43816, - [SMALL_STATE(2211)] = 43917, - [SMALL_STATE(2212)] = 43980, - [SMALL_STATE(2213)] = 44043, - [SMALL_STATE(2214)] = 44106, - [SMALL_STATE(2215)] = 44169, - [SMALL_STATE(2216)] = 44232, - [SMALL_STATE(2217)] = 44295, - [SMALL_STATE(2218)] = 44358, - [SMALL_STATE(2219)] = 44421, - [SMALL_STATE(2220)] = 44484, - [SMALL_STATE(2221)] = 44549, - [SMALL_STATE(2222)] = 44612, - [SMALL_STATE(2223)] = 44675, - [SMALL_STATE(2224)] = 44740, - [SMALL_STATE(2225)] = 44803, - [SMALL_STATE(2226)] = 44866, - [SMALL_STATE(2227)] = 44929, - [SMALL_STATE(2228)] = 44992, - [SMALL_STATE(2229)] = 45055, - [SMALL_STATE(2230)] = 45118, - [SMALL_STATE(2231)] = 45181, - [SMALL_STATE(2232)] = 45244, - [SMALL_STATE(2233)] = 45307, - [SMALL_STATE(2234)] = 45370, - [SMALL_STATE(2235)] = 45433, - [SMALL_STATE(2236)] = 45496, - [SMALL_STATE(2237)] = 45559, - [SMALL_STATE(2238)] = 45622, - [SMALL_STATE(2239)] = 45685, - [SMALL_STATE(2240)] = 45748, - [SMALL_STATE(2241)] = 45811, - [SMALL_STATE(2242)] = 45874, - [SMALL_STATE(2243)] = 45937, - [SMALL_STATE(2244)] = 46000, - [SMALL_STATE(2245)] = 46063, - [SMALL_STATE(2246)] = 46126, - [SMALL_STATE(2247)] = 46189, - [SMALL_STATE(2248)] = 46252, - [SMALL_STATE(2249)] = 46315, - [SMALL_STATE(2250)] = 46378, - [SMALL_STATE(2251)] = 46441, - [SMALL_STATE(2252)] = 46504, - [SMALL_STATE(2253)] = 46569, - [SMALL_STATE(2254)] = 46632, - [SMALL_STATE(2255)] = 46697, - [SMALL_STATE(2256)] = 46760, - [SMALL_STATE(2257)] = 46823, - [SMALL_STATE(2258)] = 46923, - [SMALL_STATE(2259)] = 47023, - [SMALL_STATE(2260)] = 47123, - [SMALL_STATE(2261)] = 47185, - [SMALL_STATE(2262)] = 47249, - [SMALL_STATE(2263)] = 47311, - [SMALL_STATE(2264)] = 47395, - [SMALL_STATE(2265)] = 47479, - [SMALL_STATE(2266)] = 47541, - [SMALL_STATE(2267)] = 47605, - [SMALL_STATE(2268)] = 47685, - [SMALL_STATE(2269)] = 47767, - [SMALL_STATE(2270)] = 47853, - [SMALL_STATE(2271)] = 47915, - [SMALL_STATE(2272)] = 48003, - [SMALL_STATE(2273)] = 48085, - [SMALL_STATE(2274)] = 48185, - [SMALL_STATE(2275)] = 48269, - [SMALL_STATE(2276)] = 48374, - [SMALL_STATE(2277)] = 48439, - [SMALL_STATE(2278)] = 48504, - [SMALL_STATE(2279)] = 48606, - [SMALL_STATE(2280)] = 48682, - [SMALL_STATE(2281)] = 48744, - [SMALL_STATE(2282)] = 48820, - [SMALL_STATE(2283)] = 48882, - [SMALL_STATE(2284)] = 48944, - [SMALL_STATE(2285)] = 49006, - [SMALL_STATE(2286)] = 49068, - [SMALL_STATE(2287)] = 49144, - [SMALL_STATE(2288)] = 49229, - [SMALL_STATE(2289)] = 49288, - [SMALL_STATE(2290)] = 49347, - [SMALL_STATE(2291)] = 49460, - [SMALL_STATE(2292)] = 49573, - [SMALL_STATE(2293)] = 49632, - [SMALL_STATE(2294)] = 49691, - [SMALL_STATE(2295)] = 49750, - [SMALL_STATE(2296)] = 49835, - [SMALL_STATE(2297)] = 49894, - [SMALL_STATE(2298)] = 49953, - [SMALL_STATE(2299)] = 50012, - [SMALL_STATE(2300)] = 50071, - [SMALL_STATE(2301)] = 50130, - [SMALL_STATE(2302)] = 50243, - [SMALL_STATE(2303)] = 50302, - [SMALL_STATE(2304)] = 50361, - [SMALL_STATE(2305)] = 50420, - [SMALL_STATE(2306)] = 50479, - [SMALL_STATE(2307)] = 50538, - [SMALL_STATE(2308)] = 50597, - [SMALL_STATE(2309)] = 50656, - [SMALL_STATE(2310)] = 50715, - [SMALL_STATE(2311)] = 50812, - [SMALL_STATE(2312)] = 50873, - [SMALL_STATE(2313)] = 50932, - [SMALL_STATE(2314)] = 50991, - [SMALL_STATE(2315)] = 51050, - [SMALL_STATE(2316)] = 51109, - [SMALL_STATE(2317)] = 51168, - [SMALL_STATE(2318)] = 51227, - [SMALL_STATE(2319)] = 51286, - [SMALL_STATE(2320)] = 51383, - [SMALL_STATE(2321)] = 51442, - [SMALL_STATE(2322)] = 51501, - [SMALL_STATE(2323)] = 51560, - [SMALL_STATE(2324)] = 51637, - [SMALL_STATE(2325)] = 51750, - [SMALL_STATE(2326)] = 51863, - [SMALL_STATE(2327)] = 51922, - [SMALL_STATE(2328)] = 51981, - [SMALL_STATE(2329)] = 52042, - [SMALL_STATE(2330)] = 52101, - [SMALL_STATE(2331)] = 52160, - [SMALL_STATE(2332)] = 52257, - [SMALL_STATE(2333)] = 52316, - [SMALL_STATE(2334)] = 52375, - [SMALL_STATE(2335)] = 52474, - [SMALL_STATE(2336)] = 52587, - [SMALL_STATE(2337)] = 52646, - [SMALL_STATE(2338)] = 52707, - [SMALL_STATE(2339)] = 52786, - [SMALL_STATE(2340)] = 52883, - [SMALL_STATE(2341)] = 52942, - [SMALL_STATE(2342)] = 53001, - [SMALL_STATE(2343)] = 53060, - [SMALL_STATE(2344)] = 53173, - [SMALL_STATE(2345)] = 53270, - [SMALL_STATE(2346)] = 53383, - [SMALL_STATE(2347)] = 53466, - [SMALL_STATE(2348)] = 53525, - [SMALL_STATE(2349)] = 53584, - [SMALL_STATE(2350)] = 53643, - [SMALL_STATE(2351)] = 53702, - [SMALL_STATE(2352)] = 53761, - [SMALL_STATE(2353)] = 53840, - [SMALL_STATE(2354)] = 53899, - [SMALL_STATE(2355)] = 53996, - [SMALL_STATE(2356)] = 54055, - [SMALL_STATE(2357)] = 54114, - [SMALL_STATE(2358)] = 54173, - [SMALL_STATE(2359)] = 54232, - [SMALL_STATE(2360)] = 54291, - [SMALL_STATE(2361)] = 54350, - [SMALL_STATE(2362)] = 54409, - [SMALL_STATE(2363)] = 54468, - [SMALL_STATE(2364)] = 54527, - [SMALL_STATE(2365)] = 54586, - [SMALL_STATE(2366)] = 54699, - [SMALL_STATE(2367)] = 54758, - [SMALL_STATE(2368)] = 54817, - [SMALL_STATE(2369)] = 54876, - [SMALL_STATE(2370)] = 54935, - [SMALL_STATE(2371)] = 55012, - [SMALL_STATE(2372)] = 55071, - [SMALL_STATE(2373)] = 55130, - [SMALL_STATE(2374)] = 55243, - [SMALL_STATE(2375)] = 55302, - [SMALL_STATE(2376)] = 55381, - [SMALL_STATE(2377)] = 55440, - [SMALL_STATE(2378)] = 55499, - [SMALL_STATE(2379)] = 55558, - [SMALL_STATE(2380)] = 55617, - [SMALL_STATE(2381)] = 55676, - [SMALL_STATE(2382)] = 55735, - [SMALL_STATE(2383)] = 55794, - [SMALL_STATE(2384)] = 55853, - [SMALL_STATE(2385)] = 55966, - [SMALL_STATE(2386)] = 56045, - [SMALL_STATE(2387)] = 56104, - [SMALL_STATE(2388)] = 56163, - [SMALL_STATE(2389)] = 56222, - [SMALL_STATE(2390)] = 56281, - [SMALL_STATE(2391)] = 56340, - [SMALL_STATE(2392)] = 56399, - [SMALL_STATE(2393)] = 56482, - [SMALL_STATE(2394)] = 56541, - [SMALL_STATE(2395)] = 56600, - [SMALL_STATE(2396)] = 56659, - [SMALL_STATE(2397)] = 56718, - [SMALL_STATE(2398)] = 56777, - [SMALL_STATE(2399)] = 56836, - [SMALL_STATE(2400)] = 56949, - [SMALL_STATE(2401)] = 57008, - [SMALL_STATE(2402)] = 57067, - [SMALL_STATE(2403)] = 57126, - [SMALL_STATE(2404)] = 57185, - [SMALL_STATE(2405)] = 57244, - [SMALL_STATE(2406)] = 57303, - [SMALL_STATE(2407)] = 57362, - [SMALL_STATE(2408)] = 57425, - [SMALL_STATE(2409)] = 57484, - [SMALL_STATE(2410)] = 57547, - [SMALL_STATE(2411)] = 57610, - [SMALL_STATE(2412)] = 57669, - [SMALL_STATE(2413)] = 57728, - [SMALL_STATE(2414)] = 57841, - [SMALL_STATE(2415)] = 57900, - [SMALL_STATE(2416)] = 57959, - [SMALL_STATE(2417)] = 58039, - [SMALL_STATE(2418)] = 58133, - [SMALL_STATE(2419)] = 58227, - [SMALL_STATE(2420)] = 58321, - [SMALL_STATE(2421)] = 58409, - [SMALL_STATE(2422)] = 58469, - [SMALL_STATE(2423)] = 58563, - [SMALL_STATE(2424)] = 58655, - [SMALL_STATE(2425)] = 58715, - [SMALL_STATE(2426)] = 58813, - [SMALL_STATE(2427)] = 58919, - [SMALL_STATE(2428)] = 58979, - [SMALL_STATE(2429)] = 59067, - [SMALL_STATE(2430)] = 59129, - [SMALL_STATE(2431)] = 59189, - [SMALL_STATE(2432)] = 59273, - [SMALL_STATE(2433)] = 59333, - [SMALL_STATE(2434)] = 59413, - [SMALL_STATE(2435)] = 59501, - [SMALL_STATE(2436)] = 59597, - [SMALL_STATE(2437)] = 59693, - [SMALL_STATE(2438)] = 59787, - [SMALL_STATE(2439)] = 59875, - [SMALL_STATE(2440)] = 59935, - [SMALL_STATE(2441)] = 60019, - [SMALL_STATE(2442)] = 60079, - [SMALL_STATE(2443)] = 60175, - [SMALL_STATE(2444)] = 60271, - [SMALL_STATE(2445)] = 60331, - [SMALL_STATE(2446)] = 60411, - [SMALL_STATE(2447)] = 60507, - [SMALL_STATE(2448)] = 60613, - [SMALL_STATE(2449)] = 60673, - [SMALL_STATE(2450)] = 60781, - [SMALL_STATE(2451)] = 60889, - [SMALL_STATE(2452)] = 60946, - [SMALL_STATE(2453)] = 61003, - [SMALL_STATE(2454)] = 61060, - [SMALL_STATE(2455)] = 61117, - [SMALL_STATE(2456)] = 61224, - [SMALL_STATE(2457)] = 61281, - [SMALL_STATE(2458)] = 61338, - [SMALL_STATE(2459)] = 61395, - [SMALL_STATE(2460)] = 61452, - [SMALL_STATE(2461)] = 61509, - [SMALL_STATE(2462)] = 61600, - [SMALL_STATE(2463)] = 61657, - [SMALL_STATE(2464)] = 61714, - [SMALL_STATE(2465)] = 61771, - [SMALL_STATE(2466)] = 61830, - [SMALL_STATE(2467)] = 61887, - [SMALL_STATE(2468)] = 61994, - [SMALL_STATE(2469)] = 62083, - [SMALL_STATE(2470)] = 62140, - [SMALL_STATE(2471)] = 62197, - [SMALL_STATE(2472)] = 62254, - [SMALL_STATE(2473)] = 62337, - [SMALL_STATE(2474)] = 62422, - [SMALL_STATE(2475)] = 62503, - [SMALL_STATE(2476)] = 62560, - [SMALL_STATE(2477)] = 62617, - [SMALL_STATE(2478)] = 62674, - [SMALL_STATE(2479)] = 62759, - [SMALL_STATE(2480)] = 62816, - [SMALL_STATE(2481)] = 62919, - [SMALL_STATE(2482)] = 62976, - [SMALL_STATE(2483)] = 63033, - [SMALL_STATE(2484)] = 63090, - [SMALL_STATE(2485)] = 63147, - [SMALL_STATE(2486)] = 63204, - [SMALL_STATE(2487)] = 63263, - [SMALL_STATE(2488)] = 63320, - [SMALL_STATE(2489)] = 63407, - [SMALL_STATE(2490)] = 63464, - [SMALL_STATE(2491)] = 63521, - [SMALL_STATE(2492)] = 63578, - [SMALL_STATE(2493)] = 63635, - [SMALL_STATE(2494)] = 63692, - [SMALL_STATE(2495)] = 63799, - [SMALL_STATE(2496)] = 63858, - [SMALL_STATE(2497)] = 63915, - [SMALL_STATE(2498)] = 63972, - [SMALL_STATE(2499)] = 64029, - [SMALL_STATE(2500)] = 64086, - [SMALL_STATE(2501)] = 64143, - [SMALL_STATE(2502)] = 64246, - [SMALL_STATE(2503)] = 64349, - [SMALL_STATE(2504)] = 64452, - [SMALL_STATE(2505)] = 64509, - [SMALL_STATE(2506)] = 64566, - [SMALL_STATE(2507)] = 64623, - [SMALL_STATE(2508)] = 64680, - [SMALL_STATE(2509)] = 64737, - [SMALL_STATE(2510)] = 64794, - [SMALL_STATE(2511)] = 64897, - [SMALL_STATE(2512)] = 64954, - [SMALL_STATE(2513)] = 65061, - [SMALL_STATE(2514)] = 65154, - [SMALL_STATE(2515)] = 65211, - [SMALL_STATE(2516)] = 65268, - [SMALL_STATE(2517)] = 65325, - [SMALL_STATE(2518)] = 65382, - [SMALL_STATE(2519)] = 65467, - [SMALL_STATE(2520)] = 65524, - [SMALL_STATE(2521)] = 65581, - [SMALL_STATE(2522)] = 65638, - [SMALL_STATE(2523)] = 65729, - [SMALL_STATE(2524)] = 65786, - [SMALL_STATE(2525)] = 65843, - [SMALL_STATE(2526)] = 65932, - [SMALL_STATE(2527)] = 66017, - [SMALL_STATE(2528)] = 66098, - [SMALL_STATE(2529)] = 66155, - [SMALL_STATE(2530)] = 66212, - [SMALL_STATE(2531)] = 66269, - [SMALL_STATE(2532)] = 66326, - [SMALL_STATE(2533)] = 66385, - [SMALL_STATE(2534)] = 66442, - [SMALL_STATE(2535)] = 66537, - [SMALL_STATE(2536)] = 66594, - [SMALL_STATE(2537)] = 66651, - [SMALL_STATE(2538)] = 66708, - [SMALL_STATE(2539)] = 66765, - [SMALL_STATE(2540)] = 66822, - [SMALL_STATE(2541)] = 66909, - [SMALL_STATE(2542)] = 66966, - [SMALL_STATE(2543)] = 67025, - [SMALL_STATE(2544)] = 67082, - [SMALL_STATE(2545)] = 67139, - [SMALL_STATE(2546)] = 67248, - [SMALL_STATE(2547)] = 67305, - [SMALL_STATE(2548)] = 67362, - [SMALL_STATE(2549)] = 67419, - [SMALL_STATE(2550)] = 67476, - [SMALL_STATE(2551)] = 67533, - [SMALL_STATE(2552)] = 67590, - [SMALL_STATE(2553)] = 67647, - [SMALL_STATE(2554)] = 67704, - [SMALL_STATE(2555)] = 67761, - [SMALL_STATE(2556)] = 67818, - [SMALL_STATE(2557)] = 67875, - [SMALL_STATE(2558)] = 67932, - [SMALL_STATE(2559)] = 67989, - [SMALL_STATE(2560)] = 68050, - [SMALL_STATE(2561)] = 68107, - [SMALL_STATE(2562)] = 68164, - [SMALL_STATE(2563)] = 68221, - [SMALL_STATE(2564)] = 68278, - [SMALL_STATE(2565)] = 68335, - [SMALL_STATE(2566)] = 68392, - [SMALL_STATE(2567)] = 68449, - [SMALL_STATE(2568)] = 68506, - [SMALL_STATE(2569)] = 68563, - [SMALL_STATE(2570)] = 68620, - [SMALL_STATE(2571)] = 68679, - [SMALL_STATE(2572)] = 68736, - [SMALL_STATE(2573)] = 68793, - [SMALL_STATE(2574)] = 68854, - [SMALL_STATE(2575)] = 68911, - [SMALL_STATE(2576)] = 68968, - [SMALL_STATE(2577)] = 69025, - [SMALL_STATE(2578)] = 69086, - [SMALL_STATE(2579)] = 69148, - [SMALL_STATE(2580)] = 69210, - [SMALL_STATE(2581)] = 69268, - [SMALL_STATE(2582)] = 69372, - [SMALL_STATE(2583)] = 69476, - [SMALL_STATE(2584)] = 69580, - [SMALL_STATE(2585)] = 69686, - [SMALL_STATE(2586)] = 69792, - [SMALL_STATE(2587)] = 69898, - [SMALL_STATE(2588)] = 70004, - [SMALL_STATE(2589)] = 70108, - [SMALL_STATE(2590)] = 70212, - [SMALL_STATE(2591)] = 70270, - [SMALL_STATE(2592)] = 70376, - [SMALL_STATE(2593)] = 70478, - [SMALL_STATE(2594)] = 70582, - [SMALL_STATE(2595)] = 70686, - [SMALL_STATE(2596)] = 70792, - [SMALL_STATE(2597)] = 70896, - [SMALL_STATE(2598)] = 70998, - [SMALL_STATE(2599)] = 71054, - [SMALL_STATE(2600)] = 71160, - [SMALL_STATE(2601)] = 71266, - [SMALL_STATE(2602)] = 71370, - [SMALL_STATE(2603)] = 71428, - [SMALL_STATE(2604)] = 71484, - [SMALL_STATE(2605)] = 71588, - [SMALL_STATE(2606)] = 71690, - [SMALL_STATE(2607)] = 71794, - [SMALL_STATE(2608)] = 71898, - [SMALL_STATE(2609)] = 72004, - [SMALL_STATE(2610)] = 72110, - [SMALL_STATE(2611)] = 72216, - [SMALL_STATE(2612)] = 72322, - [SMALL_STATE(2613)] = 72426, - [SMALL_STATE(2614)] = 72528, - [SMALL_STATE(2615)] = 72588, - [SMALL_STATE(2616)] = 72690, - [SMALL_STATE(2617)] = 72794, - [SMALL_STATE(2618)] = 72900, - [SMALL_STATE(2619)] = 72956, - [SMALL_STATE(2620)] = 73011, - [SMALL_STATE(2621)] = 73112, - [SMALL_STATE(2622)] = 73191, - [SMALL_STATE(2623)] = 73292, - [SMALL_STATE(2624)] = 73393, - [SMALL_STATE(2625)] = 73494, - [SMALL_STATE(2626)] = 73549, - [SMALL_STATE(2627)] = 73650, - [SMALL_STATE(2628)] = 73751, - [SMALL_STATE(2629)] = 73852, - [SMALL_STATE(2630)] = 73953, - [SMALL_STATE(2631)] = 74054, - [SMALL_STATE(2632)] = 74155, - [SMALL_STATE(2633)] = 74256, - [SMALL_STATE(2634)] = 74311, - [SMALL_STATE(2635)] = 74366, - [SMALL_STATE(2636)] = 74421, - [SMALL_STATE(2637)] = 74522, - [SMALL_STATE(2638)] = 74577, - [SMALL_STATE(2639)] = 74678, - [SMALL_STATE(2640)] = 74733, - [SMALL_STATE(2641)] = 74788, - [SMALL_STATE(2642)] = 74889, - [SMALL_STATE(2643)] = 74976, - [SMALL_STATE(2644)] = 75077, - [SMALL_STATE(2645)] = 75132, - [SMALL_STATE(2646)] = 75187, - [SMALL_STATE(2647)] = 75270, - [SMALL_STATE(2648)] = 75327, - [SMALL_STATE(2649)] = 75382, - [SMALL_STATE(2650)] = 75437, - [SMALL_STATE(2651)] = 75492, - [SMALL_STATE(2652)] = 75593, - [SMALL_STATE(2653)] = 75648, - [SMALL_STATE(2654)] = 75703, - [SMALL_STATE(2655)] = 75804, - [SMALL_STATE(2656)] = 75859, - [SMALL_STATE(2657)] = 75914, - [SMALL_STATE(2658)] = 75969, - [SMALL_STATE(2659)] = 76024, - [SMALL_STATE(2660)] = 76079, - [SMALL_STATE(2661)] = 76134, - [SMALL_STATE(2662)] = 76223, - [SMALL_STATE(2663)] = 76278, - [SMALL_STATE(2664)] = 76333, - [SMALL_STATE(2665)] = 76388, - [SMALL_STATE(2666)] = 76443, - [SMALL_STATE(2667)] = 76498, - [SMALL_STATE(2668)] = 76553, - [SMALL_STATE(2669)] = 76608, - [SMALL_STATE(2670)] = 76663, - [SMALL_STATE(2671)] = 76718, - [SMALL_STATE(2672)] = 76773, - [SMALL_STATE(2673)] = 76828, - [SMALL_STATE(2674)] = 76883, - [SMALL_STATE(2675)] = 76938, - [SMALL_STATE(2676)] = 76993, - [SMALL_STATE(2677)] = 77094, - [SMALL_STATE(2678)] = 77149, - [SMALL_STATE(2679)] = 77204, - [SMALL_STATE(2680)] = 77259, - [SMALL_STATE(2681)] = 77360, - [SMALL_STATE(2682)] = 77415, - [SMALL_STATE(2683)] = 77470, - [SMALL_STATE(2684)] = 77525, - [SMALL_STATE(2685)] = 77580, - [SMALL_STATE(2686)] = 77635, - [SMALL_STATE(2687)] = 77690, - [SMALL_STATE(2688)] = 77745, - [SMALL_STATE(2689)] = 77846, - [SMALL_STATE(2690)] = 77901, - [SMALL_STATE(2691)] = 77956, - [SMALL_STATE(2692)] = 78057, - [SMALL_STATE(2693)] = 78158, - [SMALL_STATE(2694)] = 78259, - [SMALL_STATE(2695)] = 78360, - [SMALL_STATE(2696)] = 78415, - [SMALL_STATE(2697)] = 78470, - [SMALL_STATE(2698)] = 78525, - [SMALL_STATE(2699)] = 78580, - [SMALL_STATE(2700)] = 78637, - [SMALL_STATE(2701)] = 78720, - [SMALL_STATE(2702)] = 78777, - [SMALL_STATE(2703)] = 78832, - [SMALL_STATE(2704)] = 78933, - [SMALL_STATE(2705)] = 79034, - [SMALL_STATE(2706)] = 79135, - [SMALL_STATE(2707)] = 79236, - [SMALL_STATE(2708)] = 79291, - [SMALL_STATE(2709)] = 79392, - [SMALL_STATE(2710)] = 79449, - [SMALL_STATE(2711)] = 79504, - [SMALL_STATE(2712)] = 79559, - [SMALL_STATE(2713)] = 79614, - [SMALL_STATE(2714)] = 79669, - [SMALL_STATE(2715)] = 79724, - [SMALL_STATE(2716)] = 79825, - [SMALL_STATE(2717)] = 79926, - [SMALL_STATE(2718)] = 79981, - [SMALL_STATE(2719)] = 80082, - [SMALL_STATE(2720)] = 80137, - [SMALL_STATE(2721)] = 80192, - [SMALL_STATE(2722)] = 80247, - [SMALL_STATE(2723)] = 80302, - [SMALL_STATE(2724)] = 80357, - [SMALL_STATE(2725)] = 80458, - [SMALL_STATE(2726)] = 80513, - [SMALL_STATE(2727)] = 80568, - [SMALL_STATE(2728)] = 80623, - [SMALL_STATE(2729)] = 80724, - [SMALL_STATE(2730)] = 80825, - [SMALL_STATE(2731)] = 80880, - [SMALL_STATE(2732)] = 80981, - [SMALL_STATE(2733)] = 81036, - [SMALL_STATE(2734)] = 81091, - [SMALL_STATE(2735)] = 81146, - [SMALL_STATE(2736)] = 81247, - [SMALL_STATE(2737)] = 81302, - [SMALL_STATE(2738)] = 81357, - [SMALL_STATE(2739)] = 81412, - [SMALL_STATE(2740)] = 81467, - [SMALL_STATE(2741)] = 81522, - [SMALL_STATE(2742)] = 81577, - [SMALL_STATE(2743)] = 81632, - [SMALL_STATE(2744)] = 81687, - [SMALL_STATE(2745)] = 81742, - [SMALL_STATE(2746)] = 81797, - [SMALL_STATE(2747)] = 81852, - [SMALL_STATE(2748)] = 81907, - [SMALL_STATE(2749)] = 81964, - [SMALL_STATE(2750)] = 82019, - [SMALL_STATE(2751)] = 82120, - [SMALL_STATE(2752)] = 82221, - [SMALL_STATE(2753)] = 82322, - [SMALL_STATE(2754)] = 82377, - [SMALL_STATE(2755)] = 82432, - [SMALL_STATE(2756)] = 82487, - [SMALL_STATE(2757)] = 82588, - [SMALL_STATE(2758)] = 82645, - [SMALL_STATE(2759)] = 82746, - [SMALL_STATE(2760)] = 82801, - [SMALL_STATE(2761)] = 82902, - [SMALL_STATE(2762)] = 83003, - [SMALL_STATE(2763)] = 83104, - [SMALL_STATE(2764)] = 83159, - [SMALL_STATE(2765)] = 83216, - [SMALL_STATE(2766)] = 83271, - [SMALL_STATE(2767)] = 83326, - [SMALL_STATE(2768)] = 83427, - [SMALL_STATE(2769)] = 83484, - [SMALL_STATE(2770)] = 83539, - [SMALL_STATE(2771)] = 83622, - [SMALL_STATE(2772)] = 83723, - [SMALL_STATE(2773)] = 83780, - [SMALL_STATE(2774)] = 83881, - [SMALL_STATE(2775)] = 83982, - [SMALL_STATE(2776)] = 84083, - [SMALL_STATE(2777)] = 84142, - [SMALL_STATE(2778)] = 84243, - [SMALL_STATE(2779)] = 84302, - [SMALL_STATE(2780)] = 84403, - [SMALL_STATE(2781)] = 84504, - [SMALL_STATE(2782)] = 84605, - [SMALL_STATE(2783)] = 84706, - [SMALL_STATE(2784)] = 84807, - [SMALL_STATE(2785)] = 84896, - [SMALL_STATE(2786)] = 84997, - [SMALL_STATE(2787)] = 85052, - [SMALL_STATE(2788)] = 85153, - [SMALL_STATE(2789)] = 85210, - [SMALL_STATE(2790)] = 85267, - [SMALL_STATE(2791)] = 85368, - [SMALL_STATE(2792)] = 85427, - [SMALL_STATE(2793)] = 85514, - [SMALL_STATE(2794)] = 85615, - [SMALL_STATE(2795)] = 85716, - [SMALL_STATE(2796)] = 85799, - [SMALL_STATE(2797)] = 85856, - [SMALL_STATE(2798)] = 85957, - [SMALL_STATE(2799)] = 86058, - [SMALL_STATE(2800)] = 86159, - [SMALL_STATE(2801)] = 86260, - [SMALL_STATE(2802)] = 86361, - [SMALL_STATE(2803)] = 86440, - [SMALL_STATE(2804)] = 86499, - [SMALL_STATE(2805)] = 86556, - [SMALL_STATE(2806)] = 86612, - [SMALL_STATE(2807)] = 86710, - [SMALL_STATE(2808)] = 86808, - [SMALL_STATE(2809)] = 86902, - [SMALL_STATE(2810)] = 87000, - [SMALL_STATE(2811)] = 87098, - [SMALL_STATE(2812)] = 87196, - [SMALL_STATE(2813)] = 87294, - [SMALL_STATE(2814)] = 87350, - [SMALL_STATE(2815)] = 87448, - [SMALL_STATE(2816)] = 87546, - [SMALL_STATE(2817)] = 87642, - [SMALL_STATE(2818)] = 87740, - [SMALL_STATE(2819)] = 87800, - [SMALL_STATE(2820)] = 87898, - [SMALL_STATE(2821)] = 87958, - [SMALL_STATE(2822)] = 88056, - [SMALL_STATE(2823)] = 88110, - [SMALL_STATE(2824)] = 88208, - [SMALL_STATE(2825)] = 88302, - [SMALL_STATE(2826)] = 88398, - [SMALL_STATE(2827)] = 88496, - [SMALL_STATE(2828)] = 88594, - [SMALL_STATE(2829)] = 88692, - [SMALL_STATE(2830)] = 88790, - [SMALL_STATE(2831)] = 88846, - [SMALL_STATE(2832)] = 88944, - [SMALL_STATE(2833)] = 88999, - [SMALL_STATE(2834)] = 89052, - [SMALL_STATE(2835)] = 89105, - [SMALL_STATE(2836)] = 89158, - [SMALL_STATE(2837)] = 89211, - [SMALL_STATE(2838)] = 89264, - [SMALL_STATE(2839)] = 89317, - [SMALL_STATE(2840)] = 89370, - [SMALL_STATE(2841)] = 89423, - [SMALL_STATE(2842)] = 89518, - [SMALL_STATE(2843)] = 89573, - [SMALL_STATE(2844)] = 89626, - [SMALL_STATE(2845)] = 89679, - [SMALL_STATE(2846)] = 89732, - [SMALL_STATE(2847)] = 89785, - [SMALL_STATE(2848)] = 89838, - [SMALL_STATE(2849)] = 89891, - [SMALL_STATE(2850)] = 89944, - [SMALL_STATE(2851)] = 90033, - [SMALL_STATE(2852)] = 90086, - [SMALL_STATE(2853)] = 90139, - [SMALL_STATE(2854)] = 90228, - [SMALL_STATE(2855)] = 90281, - [SMALL_STATE(2856)] = 90336, - [SMALL_STATE(2857)] = 90389, - [SMALL_STATE(2858)] = 90442, - [SMALL_STATE(2859)] = 90497, - [SMALL_STATE(2860)] = 90586, - [SMALL_STATE(2861)] = 90641, - [SMALL_STATE(2862)] = 90694, - [SMALL_STATE(2863)] = 90747, - [SMALL_STATE(2864)] = 90836, - [SMALL_STATE(2865)] = 90889, - [SMALL_STATE(2866)] = 90942, - [SMALL_STATE(2867)] = 90997, - [SMALL_STATE(2868)] = 91052, - [SMALL_STATE(2869)] = 91105, - [SMALL_STATE(2870)] = 91158, - [SMALL_STATE(2871)] = 91211, - [SMALL_STATE(2872)] = 91264, - [SMALL_STATE(2873)] = 91319, - [SMALL_STATE(2874)] = 91374, - [SMALL_STATE(2875)] = 91429, - [SMALL_STATE(2876)] = 91518, - [SMALL_STATE(2877)] = 91573, - [SMALL_STATE(2878)] = 91628, - [SMALL_STATE(2879)] = 91681, - [SMALL_STATE(2880)] = 91736, - [SMALL_STATE(2881)] = 91791, - [SMALL_STATE(2882)] = 91880, - [SMALL_STATE(2883)] = 91934, - [SMALL_STATE(2884)] = 91990, - [SMALL_STATE(2885)] = 92046, - [SMALL_STATE(2886)] = 92100, - [SMALL_STATE(2887)] = 92154, - [SMALL_STATE(2888)] = 92210, - [SMALL_STATE(2889)] = 92266, - [SMALL_STATE(2890)] = 92320, - [SMALL_STATE(2891)] = 92374, - [SMALL_STATE(2892)] = 92428, - [SMALL_STATE(2893)] = 92482, - [SMALL_STATE(2894)] = 92538, - [SMALL_STATE(2895)] = 92594, - [SMALL_STATE(2896)] = 92648, - [SMALL_STATE(2897)] = 92702, - [SMALL_STATE(2898)] = 92758, - [SMALL_STATE(2899)] = 92812, - [SMALL_STATE(2900)] = 92868, - [SMALL_STATE(2901)] = 92922, - [SMALL_STATE(2902)] = 92976, - [SMALL_STATE(2903)] = 93032, - [SMALL_STATE(2904)] = 93086, - [SMALL_STATE(2905)] = 93140, - [SMALL_STATE(2906)] = 93196, - [SMALL_STATE(2907)] = 93250, - [SMALL_STATE(2908)] = 93306, - [SMALL_STATE(2909)] = 93360, - [SMALL_STATE(2910)] = 93416, - [SMALL_STATE(2911)] = 93470, - [SMALL_STATE(2912)] = 93524, - [SMALL_STATE(2913)] = 93578, - [SMALL_STATE(2914)] = 93634, - [SMALL_STATE(2915)] = 93688, - [SMALL_STATE(2916)] = 93742, - [SMALL_STATE(2917)] = 93798, - [SMALL_STATE(2918)] = 93852, - [SMALL_STATE(2919)] = 93908, - [SMALL_STATE(2920)] = 93964, - [SMALL_STATE(2921)] = 94018, - [SMALL_STATE(2922)] = 94072, - [SMALL_STATE(2923)] = 94126, - [SMALL_STATE(2924)] = 94180, - [SMALL_STATE(2925)] = 94234, - [SMALL_STATE(2926)] = 94290, - [SMALL_STATE(2927)] = 94346, - [SMALL_STATE(2928)] = 94400, - [SMALL_STATE(2929)] = 94454, - [SMALL_STATE(2930)] = 94510, - [SMALL_STATE(2931)] = 94566, - [SMALL_STATE(2932)] = 94620, - [SMALL_STATE(2933)] = 94674, - [SMALL_STATE(2934)] = 94728, - [SMALL_STATE(2935)] = 94782, - [SMALL_STATE(2936)] = 94838, - [SMALL_STATE(2937)] = 94892, - [SMALL_STATE(2938)] = 94946, - [SMALL_STATE(2939)] = 95000, - [SMALL_STATE(2940)] = 95054, - [SMALL_STATE(2941)] = 95108, - [SMALL_STATE(2942)] = 95164, - [SMALL_STATE(2943)] = 95218, - [SMALL_STATE(2944)] = 95272, - [SMALL_STATE(2945)] = 95326, - [SMALL_STATE(2946)] = 95380, - [SMALL_STATE(2947)] = 95434, - [SMALL_STATE(2948)] = 95488, - [SMALL_STATE(2949)] = 95542, - [SMALL_STATE(2950)] = 95598, - [SMALL_STATE(2951)] = 95652, - [SMALL_STATE(2952)] = 95708, - [SMALL_STATE(2953)] = 95762, - [SMALL_STATE(2954)] = 95818, - [SMALL_STATE(2955)] = 95874, - [SMALL_STATE(2956)] = 95930, - [SMALL_STATE(2957)] = 95986, - [SMALL_STATE(2958)] = 96075, - [SMALL_STATE(2959)] = 96164, - [SMALL_STATE(2960)] = 96250, - [SMALL_STATE(2961)] = 96336, - [SMALL_STATE(2962)] = 96422, - [SMALL_STATE(2963)] = 96508, - [SMALL_STATE(2964)] = 96594, - [SMALL_STATE(2965)] = 96680, - [SMALL_STATE(2966)] = 96766, - [SMALL_STATE(2967)] = 96852, - [SMALL_STATE(2968)] = 96938, - [SMALL_STATE(2969)] = 97024, - [SMALL_STATE(2970)] = 97110, - [SMALL_STATE(2971)] = 97196, - [SMALL_STATE(2972)] = 97282, - [SMALL_STATE(2973)] = 97368, - [SMALL_STATE(2974)] = 97454, - [SMALL_STATE(2975)] = 97540, - [SMALL_STATE(2976)] = 97626, - [SMALL_STATE(2977)] = 97712, - [SMALL_STATE(2978)] = 97798, - [SMALL_STATE(2979)] = 97884, - [SMALL_STATE(2980)] = 97970, - [SMALL_STATE(2981)] = 98056, - [SMALL_STATE(2982)] = 98142, - [SMALL_STATE(2983)] = 98228, - [SMALL_STATE(2984)] = 98314, - [SMALL_STATE(2985)] = 98400, - [SMALL_STATE(2986)] = 98486, - [SMALL_STATE(2987)] = 98572, - [SMALL_STATE(2988)] = 98658, - [SMALL_STATE(2989)] = 98744, - [SMALL_STATE(2990)] = 98830, - [SMALL_STATE(2991)] = 98916, - [SMALL_STATE(2992)] = 99002, - [SMALL_STATE(2993)] = 99088, - [SMALL_STATE(2994)] = 99174, - [SMALL_STATE(2995)] = 99260, - [SMALL_STATE(2996)] = 99320, - [SMALL_STATE(2997)] = 99406, - [SMALL_STATE(2998)] = 99489, - [SMALL_STATE(2999)] = 99572, - [SMALL_STATE(3000)] = 99655, - [SMALL_STATE(3001)] = 99738, - [SMALL_STATE(3002)] = 99821, - [SMALL_STATE(3003)] = 99904, - [SMALL_STATE(3004)] = 99987, - [SMALL_STATE(3005)] = 100070, - [SMALL_STATE(3006)] = 100153, - [SMALL_STATE(3007)] = 100236, - [SMALL_STATE(3008)] = 100319, - [SMALL_STATE(3009)] = 100402, - [SMALL_STATE(3010)] = 100485, - [SMALL_STATE(3011)] = 100568, - [SMALL_STATE(3012)] = 100651, - [SMALL_STATE(3013)] = 100734, - [SMALL_STATE(3014)] = 100817, - [SMALL_STATE(3015)] = 100900, - [SMALL_STATE(3016)] = 100983, - [SMALL_STATE(3017)] = 101066, - [SMALL_STATE(3018)] = 101149, - [SMALL_STATE(3019)] = 101232, - [SMALL_STATE(3020)] = 101315, - [SMALL_STATE(3021)] = 101398, - [SMALL_STATE(3022)] = 101481, - [SMALL_STATE(3023)] = 101564, - [SMALL_STATE(3024)] = 101647, - [SMALL_STATE(3025)] = 101730, - [SMALL_STATE(3026)] = 101813, - [SMALL_STATE(3027)] = 101896, - [SMALL_STATE(3028)] = 101979, - [SMALL_STATE(3029)] = 102062, - [SMALL_STATE(3030)] = 102145, - [SMALL_STATE(3031)] = 102228, - [SMALL_STATE(3032)] = 102311, - [SMALL_STATE(3033)] = 102394, - [SMALL_STATE(3034)] = 102477, - [SMALL_STATE(3035)] = 102560, - [SMALL_STATE(3036)] = 102643, - [SMALL_STATE(3037)] = 102726, - [SMALL_STATE(3038)] = 102809, - [SMALL_STATE(3039)] = 102892, - [SMALL_STATE(3040)] = 102975, - [SMALL_STATE(3041)] = 103058, - [SMALL_STATE(3042)] = 103141, - [SMALL_STATE(3043)] = 103224, - [SMALL_STATE(3044)] = 103307, - [SMALL_STATE(3045)] = 103390, - [SMALL_STATE(3046)] = 103473, - [SMALL_STATE(3047)] = 103556, - [SMALL_STATE(3048)] = 103639, - [SMALL_STATE(3049)] = 103722, - [SMALL_STATE(3050)] = 103805, - [SMALL_STATE(3051)] = 103888, - [SMALL_STATE(3052)] = 103971, - [SMALL_STATE(3053)] = 104054, - [SMALL_STATE(3054)] = 104137, - [SMALL_STATE(3055)] = 104220, - [SMALL_STATE(3056)] = 104303, - [SMALL_STATE(3057)] = 104386, - [SMALL_STATE(3058)] = 104469, - [SMALL_STATE(3059)] = 104552, - [SMALL_STATE(3060)] = 104635, - [SMALL_STATE(3061)] = 104718, - [SMALL_STATE(3062)] = 104801, - [SMALL_STATE(3063)] = 104884, - [SMALL_STATE(3064)] = 104967, - [SMALL_STATE(3065)] = 105050, - [SMALL_STATE(3066)] = 105133, - [SMALL_STATE(3067)] = 105216, - [SMALL_STATE(3068)] = 105299, - [SMALL_STATE(3069)] = 105382, - [SMALL_STATE(3070)] = 105465, - [SMALL_STATE(3071)] = 105548, - [SMALL_STATE(3072)] = 105631, - [SMALL_STATE(3073)] = 105714, - [SMALL_STATE(3074)] = 105797, - [SMALL_STATE(3075)] = 105880, - [SMALL_STATE(3076)] = 105963, - [SMALL_STATE(3077)] = 106046, - [SMALL_STATE(3078)] = 106129, - [SMALL_STATE(3079)] = 106212, - [SMALL_STATE(3080)] = 106295, - [SMALL_STATE(3081)] = 106378, - [SMALL_STATE(3082)] = 106461, - [SMALL_STATE(3083)] = 106544, - [SMALL_STATE(3084)] = 106627, - [SMALL_STATE(3085)] = 106710, - [SMALL_STATE(3086)] = 106793, - [SMALL_STATE(3087)] = 106876, - [SMALL_STATE(3088)] = 106959, - [SMALL_STATE(3089)] = 107042, - [SMALL_STATE(3090)] = 107125, - [SMALL_STATE(3091)] = 107208, - [SMALL_STATE(3092)] = 107291, - [SMALL_STATE(3093)] = 107374, - [SMALL_STATE(3094)] = 107457, - [SMALL_STATE(3095)] = 107540, - [SMALL_STATE(3096)] = 107623, - [SMALL_STATE(3097)] = 107706, - [SMALL_STATE(3098)] = 107789, - [SMALL_STATE(3099)] = 107872, - [SMALL_STATE(3100)] = 107955, - [SMALL_STATE(3101)] = 108038, - [SMALL_STATE(3102)] = 108121, - [SMALL_STATE(3103)] = 108204, - [SMALL_STATE(3104)] = 108287, - [SMALL_STATE(3105)] = 108370, - [SMALL_STATE(3106)] = 108453, - [SMALL_STATE(3107)] = 108536, - [SMALL_STATE(3108)] = 108619, - [SMALL_STATE(3109)] = 108702, - [SMALL_STATE(3110)] = 108785, - [SMALL_STATE(3111)] = 108868, - [SMALL_STATE(3112)] = 108951, - [SMALL_STATE(3113)] = 109034, - [SMALL_STATE(3114)] = 109117, - [SMALL_STATE(3115)] = 109200, - [SMALL_STATE(3116)] = 109283, - [SMALL_STATE(3117)] = 109366, - [SMALL_STATE(3118)] = 109449, - [SMALL_STATE(3119)] = 109532, - [SMALL_STATE(3120)] = 109615, - [SMALL_STATE(3121)] = 109698, - [SMALL_STATE(3122)] = 109781, - [SMALL_STATE(3123)] = 109864, - [SMALL_STATE(3124)] = 109947, - [SMALL_STATE(3125)] = 110030, - [SMALL_STATE(3126)] = 110113, - [SMALL_STATE(3127)] = 110196, - [SMALL_STATE(3128)] = 110279, - [SMALL_STATE(3129)] = 110362, - [SMALL_STATE(3130)] = 110445, - [SMALL_STATE(3131)] = 110528, - [SMALL_STATE(3132)] = 110611, - [SMALL_STATE(3133)] = 110694, - [SMALL_STATE(3134)] = 110777, - [SMALL_STATE(3135)] = 110860, - [SMALL_STATE(3136)] = 110943, - [SMALL_STATE(3137)] = 111026, - [SMALL_STATE(3138)] = 111109, - [SMALL_STATE(3139)] = 111192, - [SMALL_STATE(3140)] = 111275, - [SMALL_STATE(3141)] = 111358, - [SMALL_STATE(3142)] = 111441, - [SMALL_STATE(3143)] = 111524, - [SMALL_STATE(3144)] = 111607, - [SMALL_STATE(3145)] = 111690, - [SMALL_STATE(3146)] = 111773, - [SMALL_STATE(3147)] = 111856, - [SMALL_STATE(3148)] = 111939, - [SMALL_STATE(3149)] = 112022, - [SMALL_STATE(3150)] = 112105, - [SMALL_STATE(3151)] = 112188, - [SMALL_STATE(3152)] = 112271, - [SMALL_STATE(3153)] = 112354, - [SMALL_STATE(3154)] = 112437, - [SMALL_STATE(3155)] = 112520, - [SMALL_STATE(3156)] = 112603, - [SMALL_STATE(3157)] = 112686, - [SMALL_STATE(3158)] = 112769, - [SMALL_STATE(3159)] = 112852, - [SMALL_STATE(3160)] = 112935, - [SMALL_STATE(3161)] = 113018, - [SMALL_STATE(3162)] = 113101, - [SMALL_STATE(3163)] = 113184, - [SMALL_STATE(3164)] = 113267, - [SMALL_STATE(3165)] = 113350, - [SMALL_STATE(3166)] = 113433, - [SMALL_STATE(3167)] = 113516, - [SMALL_STATE(3168)] = 113599, - [SMALL_STATE(3169)] = 113682, - [SMALL_STATE(3170)] = 113765, - [SMALL_STATE(3171)] = 113848, - [SMALL_STATE(3172)] = 113931, - [SMALL_STATE(3173)] = 114014, - [SMALL_STATE(3174)] = 114097, - [SMALL_STATE(3175)] = 114180, - [SMALL_STATE(3176)] = 114263, - [SMALL_STATE(3177)] = 114346, - [SMALL_STATE(3178)] = 114429, - [SMALL_STATE(3179)] = 114512, - [SMALL_STATE(3180)] = 114595, - [SMALL_STATE(3181)] = 114678, - [SMALL_STATE(3182)] = 114761, - [SMALL_STATE(3183)] = 114844, - [SMALL_STATE(3184)] = 114927, - [SMALL_STATE(3185)] = 115010, - [SMALL_STATE(3186)] = 115093, - [SMALL_STATE(3187)] = 115176, - [SMALL_STATE(3188)] = 115259, - [SMALL_STATE(3189)] = 115342, - [SMALL_STATE(3190)] = 115425, - [SMALL_STATE(3191)] = 115508, - [SMALL_STATE(3192)] = 115591, - [SMALL_STATE(3193)] = 115674, - [SMALL_STATE(3194)] = 115757, - [SMALL_STATE(3195)] = 115840, - [SMALL_STATE(3196)] = 115923, - [SMALL_STATE(3197)] = 116006, - [SMALL_STATE(3198)] = 116089, - [SMALL_STATE(3199)] = 116172, - [SMALL_STATE(3200)] = 116255, - [SMALL_STATE(3201)] = 116338, - [SMALL_STATE(3202)] = 116421, - [SMALL_STATE(3203)] = 116504, - [SMALL_STATE(3204)] = 116587, - [SMALL_STATE(3205)] = 116670, - [SMALL_STATE(3206)] = 116753, - [SMALL_STATE(3207)] = 116836, - [SMALL_STATE(3208)] = 116919, - [SMALL_STATE(3209)] = 117002, - [SMALL_STATE(3210)] = 117085, - [SMALL_STATE(3211)] = 117168, - [SMALL_STATE(3212)] = 117251, - [SMALL_STATE(3213)] = 117334, - [SMALL_STATE(3214)] = 117417, - [SMALL_STATE(3215)] = 117500, - [SMALL_STATE(3216)] = 117583, - [SMALL_STATE(3217)] = 117666, - [SMALL_STATE(3218)] = 117749, - [SMALL_STATE(3219)] = 117832, - [SMALL_STATE(3220)] = 117915, - [SMALL_STATE(3221)] = 117998, - [SMALL_STATE(3222)] = 118081, - [SMALL_STATE(3223)] = 118164, - [SMALL_STATE(3224)] = 118247, - [SMALL_STATE(3225)] = 118330, - [SMALL_STATE(3226)] = 118413, - [SMALL_STATE(3227)] = 118496, - [SMALL_STATE(3228)] = 118579, - [SMALL_STATE(3229)] = 118662, - [SMALL_STATE(3230)] = 118730, - [SMALL_STATE(3231)] = 118798, - [SMALL_STATE(3232)] = 118866, - [SMALL_STATE(3233)] = 118934, - [SMALL_STATE(3234)] = 119002, - [SMALL_STATE(3235)] = 119070, - [SMALL_STATE(3236)] = 119138, - [SMALL_STATE(3237)] = 119206, - [SMALL_STATE(3238)] = 119280, - [SMALL_STATE(3239)] = 119348, - [SMALL_STATE(3240)] = 119416, - [SMALL_STATE(3241)] = 119484, - [SMALL_STATE(3242)] = 119558, - [SMALL_STATE(3243)] = 119626, - [SMALL_STATE(3244)] = 119694, - [SMALL_STATE(3245)] = 119762, - [SMALL_STATE(3246)] = 119831, - [SMALL_STATE(3247)] = 119868, - [SMALL_STATE(3248)] = 119905, - [SMALL_STATE(3249)] = 119942, - [SMALL_STATE(3250)] = 119979, - [SMALL_STATE(3251)] = 120016, - [SMALL_STATE(3252)] = 120053, - [SMALL_STATE(3253)] = 120086, - [SMALL_STATE(3254)] = 120137, - [SMALL_STATE(3255)] = 120170, - [SMALL_STATE(3256)] = 120217, - [SMALL_STATE(3257)] = 120250, - [SMALL_STATE(3258)] = 120283, - [SMALL_STATE(3259)] = 120316, - [SMALL_STATE(3260)] = 120363, - [SMALL_STATE(3261)] = 120410, - [SMALL_STATE(3262)] = 120444, - [SMALL_STATE(3263)] = 120478, - [SMALL_STATE(3264)] = 120508, - [SMALL_STATE(3265)] = 120544, - [SMALL_STATE(3266)] = 120574, - [SMALL_STATE(3267)] = 120604, - [SMALL_STATE(3268)] = 120637, - [SMALL_STATE(3269)] = 120670, - [SMALL_STATE(3270)] = 120701, - [SMALL_STATE(3271)] = 120734, - [SMALL_STATE(3272)] = 120767, - [SMALL_STATE(3273)] = 120798, - [SMALL_STATE(3274)] = 120831, - [SMALL_STATE(3275)] = 120864, - [SMALL_STATE(3276)] = 120897, - [SMALL_STATE(3277)] = 120945, - [SMALL_STATE(3278)] = 120975, - [SMALL_STATE(3279)] = 121005, - [SMALL_STATE(3280)] = 121037, - [SMALL_STATE(3281)] = 121085, - [SMALL_STATE(3282)] = 121131, - [SMALL_STATE(3283)] = 121178, - [SMALL_STATE(3284)] = 121225, - [SMALL_STATE(3285)] = 121270, - [SMALL_STATE(3286)] = 121305, - [SMALL_STATE(3287)] = 121336, - [SMALL_STATE(3288)] = 121371, - [SMALL_STATE(3289)] = 121400, - [SMALL_STATE(3290)] = 121447, - [SMALL_STATE(3291)] = 121494, - [SMALL_STATE(3292)] = 121525, - [SMALL_STATE(3293)] = 121572, - [SMALL_STATE(3294)] = 121607, - [SMALL_STATE(3295)] = 121654, - [SMALL_STATE(3296)] = 121701, - [SMALL_STATE(3297)] = 121748, - [SMALL_STATE(3298)] = 121795, - [SMALL_STATE(3299)] = 121842, - [SMALL_STATE(3300)] = 121871, - [SMALL_STATE(3301)] = 121918, - [SMALL_STATE(3302)] = 121965, - [SMALL_STATE(3303)] = 121994, - [SMALL_STATE(3304)] = 122029, - [SMALL_STATE(3305)] = 122064, - [SMALL_STATE(3306)] = 122111, - [SMALL_STATE(3307)] = 122146, - [SMALL_STATE(3308)] = 122193, - [SMALL_STATE(3309)] = 122240, - [SMALL_STATE(3310)] = 122287, - [SMALL_STATE(3311)] = 122334, - [SMALL_STATE(3312)] = 122381, - [SMALL_STATE(3313)] = 122428, - [SMALL_STATE(3314)] = 122475, - [SMALL_STATE(3315)] = 122522, - [SMALL_STATE(3316)] = 122569, - [SMALL_STATE(3317)] = 122604, - [SMALL_STATE(3318)] = 122633, - [SMALL_STATE(3319)] = 122680, - [SMALL_STATE(3320)] = 122709, - [SMALL_STATE(3321)] = 122738, - [SMALL_STATE(3322)] = 122785, - [SMALL_STATE(3323)] = 122832, - [SMALL_STATE(3324)] = 122867, - [SMALL_STATE(3325)] = 122896, - [SMALL_STATE(3326)] = 122943, - [SMALL_STATE(3327)] = 122990, - [SMALL_STATE(3328)] = 123037, - [SMALL_STATE(3329)] = 123067, - [SMALL_STATE(3330)] = 123099, - [SMALL_STATE(3331)] = 123125, - [SMALL_STATE(3332)] = 123151, - [SMALL_STATE(3333)] = 123177, - [SMALL_STATE(3334)] = 123204, - [SMALL_STATE(3335)] = 123231, - [SMALL_STATE(3336)] = 123262, - [SMALL_STATE(3337)] = 123286, - [SMALL_STATE(3338)] = 123310, - [SMALL_STATE(3339)] = 123334, - [SMALL_STATE(3340)] = 123358, - [SMALL_STATE(3341)] = 123386, - [SMALL_STATE(3342)] = 123410, - [SMALL_STATE(3343)] = 123434, - [SMALL_STATE(3344)] = 123458, - [SMALL_STATE(3345)] = 123482, - [SMALL_STATE(3346)] = 123510, - [SMALL_STATE(3347)] = 123540, - [SMALL_STATE(3348)] = 123564, - [SMALL_STATE(3349)] = 123588, - [SMALL_STATE(3350)] = 123612, - [SMALL_STATE(3351)] = 123636, - [SMALL_STATE(3352)] = 123660, - [SMALL_STATE(3353)] = 123684, - [SMALL_STATE(3354)] = 123708, - [SMALL_STATE(3355)] = 123732, - [SMALL_STATE(3356)] = 123756, - [SMALL_STATE(3357)] = 123780, - [SMALL_STATE(3358)] = 123804, - [SMALL_STATE(3359)] = 123828, - [SMALL_STATE(3360)] = 123852, - [SMALL_STATE(3361)] = 123876, - [SMALL_STATE(3362)] = 123905, - [SMALL_STATE(3363)] = 123932, - [SMALL_STATE(3364)] = 123971, - [SMALL_STATE(3365)] = 124005, - [SMALL_STATE(3366)] = 124039, - [SMALL_STATE(3367)] = 124073, - [SMALL_STATE(3368)] = 124099, - [SMALL_STATE(3369)] = 124135, - [SMALL_STATE(3370)] = 124169, - [SMALL_STATE(3371)] = 124203, - [SMALL_STATE(3372)] = 124225, - [SMALL_STATE(3373)] = 124259, - [SMALL_STATE(3374)] = 124287, - [SMALL_STATE(3375)] = 124321, - [SMALL_STATE(3376)] = 124355, - [SMALL_STATE(3377)] = 124383, - [SMALL_STATE(3378)] = 124407, - [SMALL_STATE(3379)] = 124441, - [SMALL_STATE(3380)] = 124475, - [SMALL_STATE(3381)] = 124509, - [SMALL_STATE(3382)] = 124543, - [SMALL_STATE(3383)] = 124564, - [SMALL_STATE(3384)] = 124587, - [SMALL_STATE(3385)] = 124622, - [SMALL_STATE(3386)] = 124643, - [SMALL_STATE(3387)] = 124664, - [SMALL_STATE(3388)] = 124689, - [SMALL_STATE(3389)] = 124710, - [SMALL_STATE(3390)] = 124733, - [SMALL_STATE(3391)] = 124754, - [SMALL_STATE(3392)] = 124775, - [SMALL_STATE(3393)] = 124800, - [SMALL_STATE(3394)] = 124829, - [SMALL_STATE(3395)] = 124850, - [SMALL_STATE(3396)] = 124873, - [SMALL_STATE(3397)] = 124894, - [SMALL_STATE(3398)] = 124915, - [SMALL_STATE(3399)] = 124938, - [SMALL_STATE(3400)] = 124966, - [SMALL_STATE(3401)] = 124996, - [SMALL_STATE(3402)] = 125024, - [SMALL_STATE(3403)] = 125052, - [SMALL_STATE(3404)] = 125080, - [SMALL_STATE(3405)] = 125108, - [SMALL_STATE(3406)] = 125136, - [SMALL_STATE(3407)] = 125164, - [SMALL_STATE(3408)] = 125192, - [SMALL_STATE(3409)] = 125222, - [SMALL_STATE(3410)] = 125242, - [SMALL_STATE(3411)] = 125270, - [SMALL_STATE(3412)] = 125298, - [SMALL_STATE(3413)] = 125322, - [SMALL_STATE(3414)] = 125354, - [SMALL_STATE(3415)] = 125382, - [SMALL_STATE(3416)] = 125410, - [SMALL_STATE(3417)] = 125430, - [SMALL_STATE(3418)] = 125458, - [SMALL_STATE(3419)] = 125486, - [SMALL_STATE(3420)] = 125506, - [SMALL_STATE(3421)] = 125534, - [SMALL_STATE(3422)] = 125562, - [SMALL_STATE(3423)] = 125590, - [SMALL_STATE(3424)] = 125618, - [SMALL_STATE(3425)] = 125646, - [SMALL_STATE(3426)] = 125674, - [SMALL_STATE(3427)] = 125706, - [SMALL_STATE(3428)] = 125734, - [SMALL_STATE(3429)] = 125762, - [SMALL_STATE(3430)] = 125790, - [SMALL_STATE(3431)] = 125818, - [SMALL_STATE(3432)] = 125846, - [SMALL_STATE(3433)] = 125875, - [SMALL_STATE(3434)] = 125904, - [SMALL_STATE(3435)] = 125933, - [SMALL_STATE(3436)] = 125962, - [SMALL_STATE(3437)] = 125991, - [SMALL_STATE(3438)] = 126020, - [SMALL_STATE(3439)] = 126049, - [SMALL_STATE(3440)] = 126078, - [SMALL_STATE(3441)] = 126107, - [SMALL_STATE(3442)] = 126136, - [SMALL_STATE(3443)] = 126163, - [SMALL_STATE(3444)] = 126192, - [SMALL_STATE(3445)] = 126221, - [SMALL_STATE(3446)] = 126250, - [SMALL_STATE(3447)] = 126279, - [SMALL_STATE(3448)] = 126308, - [SMALL_STATE(3449)] = 126337, - [SMALL_STATE(3450)] = 126364, - [SMALL_STATE(3451)] = 126393, - [SMALL_STATE(3452)] = 126422, - [SMALL_STATE(3453)] = 126451, - [SMALL_STATE(3454)] = 126480, - [SMALL_STATE(3455)] = 126509, - [SMALL_STATE(3456)] = 126532, - [SMALL_STATE(3457)] = 126561, - [SMALL_STATE(3458)] = 126588, - [SMALL_STATE(3459)] = 126617, - [SMALL_STATE(3460)] = 126646, - [SMALL_STATE(3461)] = 126675, - [SMALL_STATE(3462)] = 126704, - [SMALL_STATE(3463)] = 126733, - [SMALL_STATE(3464)] = 126762, - [SMALL_STATE(3465)] = 126791, - [SMALL_STATE(3466)] = 126820, - [SMALL_STATE(3467)] = 126849, - [SMALL_STATE(3468)] = 126878, + [SMALL_STATE(1610)] = 0, + [SMALL_STATE(1611)] = 113, + [SMALL_STATE(1612)] = 212, + [SMALL_STATE(1613)] = 335, + [SMALL_STATE(1614)] = 448, + [SMALL_STATE(1615)] = 541, + [SMALL_STATE(1616)] = 632, + [SMALL_STATE(1617)] = 723, + [SMALL_STATE(1618)] = 824, + [SMALL_STATE(1619)] = 919, + [SMALL_STATE(1620)] = 1014, + [SMALL_STATE(1621)] = 1105, + [SMALL_STATE(1622)] = 1198, + [SMALL_STATE(1623)] = 1272, + [SMALL_STATE(1624)] = 1346, + [SMALL_STATE(1625)] = 1424, + [SMALL_STATE(1626)] = 1502, + [SMALL_STATE(1627)] = 1618, + [SMALL_STATE(1628)] = 1691, + [SMALL_STATE(1629)] = 1788, + [SMALL_STATE(1630)] = 1863, + [SMALL_STATE(1631)] = 1990, + [SMALL_STATE(1632)] = 2065, + [SMALL_STATE(1633)] = 2176, + [SMALL_STATE(1634)] = 2249, + [SMALL_STATE(1635)] = 2322, + [SMALL_STATE(1636)] = 2395, + [SMALL_STATE(1637)] = 2522, + [SMALL_STATE(1638)] = 2595, + [SMALL_STATE(1639)] = 2668, + [SMALL_STATE(1640)] = 2741, + [SMALL_STATE(1641)] = 2814, + [SMALL_STATE(1642)] = 2887, + [SMALL_STATE(1643)] = 2960, + [SMALL_STATE(1644)] = 3033, + [SMALL_STATE(1645)] = 3108, + [SMALL_STATE(1646)] = 3201, + [SMALL_STATE(1647)] = 3300, + [SMALL_STATE(1648)] = 3373, + [SMALL_STATE(1649)] = 3448, + [SMALL_STATE(1650)] = 3541, + [SMALL_STATE(1651)] = 3632, + [SMALL_STATE(1652)] = 3709, + [SMALL_STATE(1653)] = 3782, + [SMALL_STATE(1654)] = 3857, + [SMALL_STATE(1655)] = 3946, + [SMALL_STATE(1656)] = 4019, + [SMALL_STATE(1657)] = 4108, + [SMALL_STATE(1658)] = 4219, + [SMALL_STATE(1659)] = 4330, + [SMALL_STATE(1660)] = 4419, + [SMALL_STATE(1661)] = 4494, + [SMALL_STATE(1662)] = 4569, + [SMALL_STATE(1663)] = 4642, + [SMALL_STATE(1664)] = 4715, + [SMALL_STATE(1665)] = 4788, + [SMALL_STATE(1666)] = 4861, + [SMALL_STATE(1667)] = 4934, + [SMALL_STATE(1668)] = 5007, + [SMALL_STATE(1669)] = 5080, + [SMALL_STATE(1670)] = 5153, + [SMALL_STATE(1671)] = 5225, + [SMALL_STATE(1672)] = 5301, + [SMALL_STATE(1673)] = 5373, + [SMALL_STATE(1674)] = 5447, + [SMALL_STATE(1675)] = 5521, + [SMALL_STATE(1676)] = 5593, + [SMALL_STATE(1677)] = 5665, + [SMALL_STATE(1678)] = 5737, + [SMALL_STATE(1679)] = 5809, + [SMALL_STATE(1680)] = 5881, + [SMALL_STATE(1681)] = 5953, + [SMALL_STATE(1682)] = 6025, + [SMALL_STATE(1683)] = 6097, + [SMALL_STATE(1684)] = 6169, + [SMALL_STATE(1685)] = 6241, + [SMALL_STATE(1686)] = 6313, + [SMALL_STATE(1687)] = 6385, + [SMALL_STATE(1688)] = 6457, + [SMALL_STATE(1689)] = 6529, + [SMALL_STATE(1690)] = 6601, + [SMALL_STATE(1691)] = 6673, + [SMALL_STATE(1692)] = 6747, + [SMALL_STATE(1693)] = 6819, + [SMALL_STATE(1694)] = 6891, + [SMALL_STATE(1695)] = 6965, + [SMALL_STATE(1696)] = 7037, + [SMALL_STATE(1697)] = 7109, + [SMALL_STATE(1698)] = 7181, + [SMALL_STATE(1699)] = 7253, + [SMALL_STATE(1700)] = 7325, + [SMALL_STATE(1701)] = 7397, + [SMALL_STATE(1702)] = 7469, + [SMALL_STATE(1703)] = 7541, + [SMALL_STATE(1704)] = 7613, + [SMALL_STATE(1705)] = 7685, + [SMALL_STATE(1706)] = 7757, + [SMALL_STATE(1707)] = 7829, + [SMALL_STATE(1708)] = 7903, + [SMALL_STATE(1709)] = 7975, + [SMALL_STATE(1710)] = 8047, + [SMALL_STATE(1711)] = 8119, + [SMALL_STATE(1712)] = 8191, + [SMALL_STATE(1713)] = 8263, + [SMALL_STATE(1714)] = 8335, + [SMALL_STATE(1715)] = 8407, + [SMALL_STATE(1716)] = 8479, + [SMALL_STATE(1717)] = 8551, + [SMALL_STATE(1718)] = 8623, + [SMALL_STATE(1719)] = 8695, + [SMALL_STATE(1720)] = 8767, + [SMALL_STATE(1721)] = 8839, + [SMALL_STATE(1722)] = 8911, + [SMALL_STATE(1723)] = 8983, + [SMALL_STATE(1724)] = 9057, + [SMALL_STATE(1725)] = 9133, + [SMALL_STATE(1726)] = 9205, + [SMALL_STATE(1727)] = 9277, + [SMALL_STATE(1728)] = 9349, + [SMALL_STATE(1729)] = 9421, + [SMALL_STATE(1730)] = 9493, + [SMALL_STATE(1731)] = 9565, + [SMALL_STATE(1732)] = 9637, + [SMALL_STATE(1733)] = 9709, + [SMALL_STATE(1734)] = 9781, + [SMALL_STATE(1735)] = 9853, + [SMALL_STATE(1736)] = 9925, + [SMALL_STATE(1737)] = 9997, + [SMALL_STATE(1738)] = 10069, + [SMALL_STATE(1739)] = 10141, + [SMALL_STATE(1740)] = 10213, + [SMALL_STATE(1741)] = 10285, + [SMALL_STATE(1742)] = 10357, + [SMALL_STATE(1743)] = 10429, + [SMALL_STATE(1744)] = 10501, + [SMALL_STATE(1745)] = 10573, + [SMALL_STATE(1746)] = 10647, + [SMALL_STATE(1747)] = 10719, + [SMALL_STATE(1748)] = 10791, + [SMALL_STATE(1749)] = 10863, + [SMALL_STATE(1750)] = 10935, + [SMALL_STATE(1751)] = 11007, + [SMALL_STATE(1752)] = 11080, + [SMALL_STATE(1753)] = 11171, + [SMALL_STATE(1754)] = 11286, + [SMALL_STATE(1755)] = 11401, + [SMALL_STATE(1756)] = 11492, + [SMALL_STATE(1757)] = 11565, + [SMALL_STATE(1758)] = 11638, + [SMALL_STATE(1759)] = 11731, + [SMALL_STATE(1760)] = 11826, + [SMALL_STATE(1761)] = 11927, + [SMALL_STATE(1762)] = 12030, + [SMALL_STATE(1763)] = 12151, + [SMALL_STATE(1764)] = 12246, + [SMALL_STATE(1765)] = 12337, + [SMALL_STATE(1766)] = 12456, + [SMALL_STATE(1767)] = 12575, + [SMALL_STATE(1768)] = 12690, + [SMALL_STATE(1769)] = 12781, + [SMALL_STATE(1770)] = 12896, + [SMALL_STATE(1771)] = 12991, + [SMALL_STATE(1772)] = 13094, + [SMALL_STATE(1773)] = 13195, + [SMALL_STATE(1774)] = 13290, + [SMALL_STATE(1775)] = 13381, + [SMALL_STATE(1776)] = 13474, + [SMALL_STATE(1777)] = 13547, + [SMALL_STATE(1778)] = 13638, + [SMALL_STATE(1779)] = 13711, + [SMALL_STATE(1780)] = 13784, + [SMALL_STATE(1781)] = 13854, + [SMALL_STATE(1782)] = 13924, + [SMALL_STATE(1783)] = 13994, + [SMALL_STATE(1784)] = 14064, + [SMALL_STATE(1785)] = 14134, + [SMALL_STATE(1786)] = 14204, + [SMALL_STATE(1787)] = 14274, + [SMALL_STATE(1788)] = 14344, + [SMALL_STATE(1789)] = 14414, + [SMALL_STATE(1790)] = 14484, + [SMALL_STATE(1791)] = 14554, + [SMALL_STATE(1792)] = 14624, + [SMALL_STATE(1793)] = 14694, + [SMALL_STATE(1794)] = 14766, + [SMALL_STATE(1795)] = 14836, + [SMALL_STATE(1796)] = 14906, + [SMALL_STATE(1797)] = 14976, + [SMALL_STATE(1798)] = 15046, + [SMALL_STATE(1799)] = 15116, + [SMALL_STATE(1800)] = 15186, + [SMALL_STATE(1801)] = 15256, + [SMALL_STATE(1802)] = 15326, + [SMALL_STATE(1803)] = 15396, + [SMALL_STATE(1804)] = 15466, + [SMALL_STATE(1805)] = 15536, + [SMALL_STATE(1806)] = 15606, + [SMALL_STATE(1807)] = 15676, + [SMALL_STATE(1808)] = 15746, + [SMALL_STATE(1809)] = 15816, + [SMALL_STATE(1810)] = 15886, + [SMALL_STATE(1811)] = 15956, + [SMALL_STATE(1812)] = 16026, + [SMALL_STATE(1813)] = 16096, + [SMALL_STATE(1814)] = 16166, + [SMALL_STATE(1815)] = 16236, + [SMALL_STATE(1816)] = 16306, + [SMALL_STATE(1817)] = 16376, + [SMALL_STATE(1818)] = 16446, + [SMALL_STATE(1819)] = 16516, + [SMALL_STATE(1820)] = 16586, + [SMALL_STATE(1821)] = 16656, + [SMALL_STATE(1822)] = 16726, + [SMALL_STATE(1823)] = 16796, + [SMALL_STATE(1824)] = 16866, + [SMALL_STATE(1825)] = 16936, + [SMALL_STATE(1826)] = 17006, + [SMALL_STATE(1827)] = 17076, + [SMALL_STATE(1828)] = 17146, + [SMALL_STATE(1829)] = 17216, + [SMALL_STATE(1830)] = 17286, + [SMALL_STATE(1831)] = 17356, + [SMALL_STATE(1832)] = 17430, + [SMALL_STATE(1833)] = 17504, + [SMALL_STATE(1834)] = 17574, + [SMALL_STATE(1835)] = 17644, + [SMALL_STATE(1836)] = 17714, + [SMALL_STATE(1837)] = 17786, + [SMALL_STATE(1838)] = 17856, + [SMALL_STATE(1839)] = 17926, + [SMALL_STATE(1840)] = 17996, + [SMALL_STATE(1841)] = 18066, + [SMALL_STATE(1842)] = 18136, + [SMALL_STATE(1843)] = 18206, + [SMALL_STATE(1844)] = 18276, + [SMALL_STATE(1845)] = 18348, + [SMALL_STATE(1846)] = 18418, + [SMALL_STATE(1847)] = 18488, + [SMALL_STATE(1848)] = 18580, + [SMALL_STATE(1849)] = 18674, + [SMALL_STATE(1850)] = 18744, + [SMALL_STATE(1851)] = 18844, + [SMALL_STATE(1852)] = 18946, + [SMALL_STATE(1853)] = 19016, + [SMALL_STATE(1854)] = 19110, + [SMALL_STATE(1855)] = 19180, + [SMALL_STATE(1856)] = 19254, + [SMALL_STATE(1857)] = 19324, + [SMALL_STATE(1858)] = 19438, + [SMALL_STATE(1859)] = 19508, + [SMALL_STATE(1860)] = 19578, + [SMALL_STATE(1861)] = 19648, + [SMALL_STATE(1862)] = 19718, + [SMALL_STATE(1863)] = 19790, + [SMALL_STATE(1864)] = 19864, + [SMALL_STATE(1865)] = 19978, + [SMALL_STATE(1866)] = 20048, + [SMALL_STATE(1867)] = 20118, + [SMALL_STATE(1868)] = 20188, + [SMALL_STATE(1869)] = 20258, + [SMALL_STATE(1870)] = 20328, + [SMALL_STATE(1871)] = 20398, + [SMALL_STATE(1872)] = 20468, + [SMALL_STATE(1873)] = 20546, + [SMALL_STATE(1874)] = 20616, + [SMALL_STATE(1875)] = 20686, + [SMALL_STATE(1876)] = 20800, + [SMALL_STATE(1877)] = 20870, + [SMALL_STATE(1878)] = 20984, + [SMALL_STATE(1879)] = 21054, + [SMALL_STATE(1880)] = 21124, + [SMALL_STATE(1881)] = 21194, + [SMALL_STATE(1882)] = 21264, + [SMALL_STATE(1883)] = 21334, + [SMALL_STATE(1884)] = 21404, + [SMALL_STATE(1885)] = 21474, + [SMALL_STATE(1886)] = 21544, + [SMALL_STATE(1887)] = 21614, + [SMALL_STATE(1888)] = 21684, + [SMALL_STATE(1889)] = 21754, + [SMALL_STATE(1890)] = 21824, + [SMALL_STATE(1891)] = 21894, + [SMALL_STATE(1892)] = 21964, + [SMALL_STATE(1893)] = 22034, + [SMALL_STATE(1894)] = 22104, + [SMALL_STATE(1895)] = 22174, + [SMALL_STATE(1896)] = 22244, + [SMALL_STATE(1897)] = 22314, + [SMALL_STATE(1898)] = 22384, + [SMALL_STATE(1899)] = 22454, + [SMALL_STATE(1900)] = 22525, + [SMALL_STATE(1901)] = 22638, + [SMALL_STATE(1902)] = 22709, + [SMALL_STATE(1903)] = 22822, + [SMALL_STATE(1904)] = 22899, + [SMALL_STATE(1905)] = 22966, + [SMALL_STATE(1906)] = 23037, + [SMALL_STATE(1907)] = 23150, + [SMALL_STATE(1908)] = 23219, + [SMALL_STATE(1909)] = 23332, + [SMALL_STATE(1910)] = 23403, + [SMALL_STATE(1911)] = 23474, + [SMALL_STATE(1912)] = 23545, + [SMALL_STATE(1913)] = 23613, + [SMALL_STATE(1914)] = 23685, + [SMALL_STATE(1915)] = 23753, + [SMALL_STATE(1916)] = 23821, + [SMALL_STATE(1917)] = 23889, + [SMALL_STATE(1918)] = 23959, + [SMALL_STATE(1919)] = 24027, + [SMALL_STATE(1920)] = 24095, + [SMALL_STATE(1921)] = 24163, + [SMALL_STATE(1922)] = 24231, + [SMALL_STATE(1923)] = 24299, + [SMALL_STATE(1924)] = 24367, + [SMALL_STATE(1925)] = 24435, + [SMALL_STATE(1926)] = 24503, + [SMALL_STATE(1927)] = 24571, + [SMALL_STATE(1928)] = 24639, + [SMALL_STATE(1929)] = 24707, + [SMALL_STATE(1930)] = 24775, + [SMALL_STATE(1931)] = 24843, + [SMALL_STATE(1932)] = 24911, + [SMALL_STATE(1933)] = 24979, + [SMALL_STATE(1934)] = 25047, + [SMALL_STATE(1935)] = 25115, + [SMALL_STATE(1936)] = 25183, + [SMALL_STATE(1937)] = 25251, + [SMALL_STATE(1938)] = 25319, + [SMALL_STATE(1939)] = 25387, + [SMALL_STATE(1940)] = 25455, + [SMALL_STATE(1941)] = 25523, + [SMALL_STATE(1942)] = 25591, + [SMALL_STATE(1943)] = 25659, + [SMALL_STATE(1944)] = 25727, + [SMALL_STATE(1945)] = 25797, + [SMALL_STATE(1946)] = 25865, + [SMALL_STATE(1947)] = 25933, + [SMALL_STATE(1948)] = 26001, + [SMALL_STATE(1949)] = 26069, + [SMALL_STATE(1950)] = 26137, + [SMALL_STATE(1951)] = 26205, + [SMALL_STATE(1952)] = 26273, + [SMALL_STATE(1953)] = 26341, + [SMALL_STATE(1954)] = 26409, + [SMALL_STATE(1955)] = 26477, + [SMALL_STATE(1956)] = 26545, + [SMALL_STATE(1957)] = 26615, + [SMALL_STATE(1958)] = 26683, + [SMALL_STATE(1959)] = 26751, + [SMALL_STATE(1960)] = 26819, + [SMALL_STATE(1961)] = 26887, + [SMALL_STATE(1962)] = 26955, + [SMALL_STATE(1963)] = 27023, + [SMALL_STATE(1964)] = 27091, + [SMALL_STATE(1965)] = 27159, + [SMALL_STATE(1966)] = 27227, + [SMALL_STATE(1967)] = 27297, + [SMALL_STATE(1968)] = 27365, + [SMALL_STATE(1969)] = 27435, + [SMALL_STATE(1970)] = 27503, + [SMALL_STATE(1971)] = 27571, + [SMALL_STATE(1972)] = 27639, + [SMALL_STATE(1973)] = 27707, + [SMALL_STATE(1974)] = 27775, + [SMALL_STATE(1975)] = 27843, + [SMALL_STATE(1976)] = 27911, + [SMALL_STATE(1977)] = 27979, + [SMALL_STATE(1978)] = 28047, + [SMALL_STATE(1979)] = 28115, + [SMALL_STATE(1980)] = 28183, + [SMALL_STATE(1981)] = 28251, + [SMALL_STATE(1982)] = 28319, + [SMALL_STATE(1983)] = 28387, + [SMALL_STATE(1984)] = 28455, + [SMALL_STATE(1985)] = 28523, + [SMALL_STATE(1986)] = 28591, + [SMALL_STATE(1987)] = 28659, + [SMALL_STATE(1988)] = 28727, + [SMALL_STATE(1989)] = 28795, + [SMALL_STATE(1990)] = 28863, + [SMALL_STATE(1991)] = 28931, + [SMALL_STATE(1992)] = 28999, + [SMALL_STATE(1993)] = 29067, + [SMALL_STATE(1994)] = 29135, + [SMALL_STATE(1995)] = 29203, + [SMALL_STATE(1996)] = 29271, + [SMALL_STATE(1997)] = 29339, + [SMALL_STATE(1998)] = 29407, + [SMALL_STATE(1999)] = 29475, + [SMALL_STATE(2000)] = 29543, + [SMALL_STATE(2001)] = 29611, + [SMALL_STATE(2002)] = 29679, + [SMALL_STATE(2003)] = 29747, + [SMALL_STATE(2004)] = 29815, + [SMALL_STATE(2005)] = 29883, + [SMALL_STATE(2006)] = 29951, + [SMALL_STATE(2007)] = 30019, + [SMALL_STATE(2008)] = 30087, + [SMALL_STATE(2009)] = 30155, + [SMALL_STATE(2010)] = 30227, + [SMALL_STATE(2011)] = 30297, + [SMALL_STATE(2012)] = 30365, + [SMALL_STATE(2013)] = 30433, + [SMALL_STATE(2014)] = 30501, + [SMALL_STATE(2015)] = 30569, + [SMALL_STATE(2016)] = 30637, + [SMALL_STATE(2017)] = 30705, + [SMALL_STATE(2018)] = 30773, + [SMALL_STATE(2019)] = 30841, + [SMALL_STATE(2020)] = 30911, + [SMALL_STATE(2021)] = 30979, + [SMALL_STATE(2022)] = 31047, + [SMALL_STATE(2023)] = 31115, + [SMALL_STATE(2024)] = 31183, + [SMALL_STATE(2025)] = 31251, + [SMALL_STATE(2026)] = 31319, + [SMALL_STATE(2027)] = 31387, + [SMALL_STATE(2028)] = 31455, + [SMALL_STATE(2029)] = 31523, + [SMALL_STATE(2030)] = 31591, + [SMALL_STATE(2031)] = 31659, + [SMALL_STATE(2032)] = 31727, + [SMALL_STATE(2033)] = 31795, + [SMALL_STATE(2034)] = 31863, + [SMALL_STATE(2035)] = 31931, + [SMALL_STATE(2036)] = 31999, + [SMALL_STATE(2037)] = 32067, + [SMALL_STATE(2038)] = 32135, + [SMALL_STATE(2039)] = 32203, + [SMALL_STATE(2040)] = 32271, + [SMALL_STATE(2041)] = 32339, + [SMALL_STATE(2042)] = 32407, + [SMALL_STATE(2043)] = 32475, + [SMALL_STATE(2044)] = 32543, + [SMALL_STATE(2045)] = 32611, + [SMALL_STATE(2046)] = 32679, + [SMALL_STATE(2047)] = 32747, + [SMALL_STATE(2048)] = 32815, + [SMALL_STATE(2049)] = 32883, + [SMALL_STATE(2050)] = 32951, + [SMALL_STATE(2051)] = 33019, + [SMALL_STATE(2052)] = 33087, + [SMALL_STATE(2053)] = 33155, + [SMALL_STATE(2054)] = 33223, + [SMALL_STATE(2055)] = 33291, + [SMALL_STATE(2056)] = 33359, + [SMALL_STATE(2057)] = 33427, + [SMALL_STATE(2058)] = 33495, + [SMALL_STATE(2059)] = 33563, + [SMALL_STATE(2060)] = 33631, + [SMALL_STATE(2061)] = 33699, + [SMALL_STATE(2062)] = 33767, + [SMALL_STATE(2063)] = 33837, + [SMALL_STATE(2064)] = 33905, + [SMALL_STATE(2065)] = 33973, + [SMALL_STATE(2066)] = 34041, + [SMALL_STATE(2067)] = 34109, + [SMALL_STATE(2068)] = 34177, + [SMALL_STATE(2069)] = 34245, + [SMALL_STATE(2070)] = 34313, + [SMALL_STATE(2071)] = 34381, + [SMALL_STATE(2072)] = 34449, + [SMALL_STATE(2073)] = 34517, + [SMALL_STATE(2074)] = 34585, + [SMALL_STATE(2075)] = 34653, + [SMALL_STATE(2076)] = 34721, + [SMALL_STATE(2077)] = 34789, + [SMALL_STATE(2078)] = 34857, + [SMALL_STATE(2079)] = 34925, + [SMALL_STATE(2080)] = 34993, + [SMALL_STATE(2081)] = 35061, + [SMALL_STATE(2082)] = 35129, + [SMALL_STATE(2083)] = 35197, + [SMALL_STATE(2084)] = 35265, + [SMALL_STATE(2085)] = 35333, + [SMALL_STATE(2086)] = 35401, + [SMALL_STATE(2087)] = 35469, + [SMALL_STATE(2088)] = 35537, + [SMALL_STATE(2089)] = 35605, + [SMALL_STATE(2090)] = 35673, + [SMALL_STATE(2091)] = 35741, + [SMALL_STATE(2092)] = 35809, + [SMALL_STATE(2093)] = 35877, + [SMALL_STATE(2094)] = 35945, + [SMALL_STATE(2095)] = 36013, + [SMALL_STATE(2096)] = 36085, + [SMALL_STATE(2097)] = 36153, + [SMALL_STATE(2098)] = 36221, + [SMALL_STATE(2099)] = 36289, + [SMALL_STATE(2100)] = 36359, + [SMALL_STATE(2101)] = 36427, + [SMALL_STATE(2102)] = 36495, + [SMALL_STATE(2103)] = 36565, + [SMALL_STATE(2104)] = 36637, + [SMALL_STATE(2105)] = 36705, + [SMALL_STATE(2106)] = 36773, + [SMALL_STATE(2107)] = 36843, + [SMALL_STATE(2108)] = 36911, + [SMALL_STATE(2109)] = 36981, + [SMALL_STATE(2110)] = 37049, + [SMALL_STATE(2111)] = 37117, + [SMALL_STATE(2112)] = 37185, + [SMALL_STATE(2113)] = 37253, + [SMALL_STATE(2114)] = 37321, + [SMALL_STATE(2115)] = 37389, + [SMALL_STATE(2116)] = 37457, + [SMALL_STATE(2117)] = 37524, + [SMALL_STATE(2118)] = 37591, + [SMALL_STATE(2119)] = 37658, + [SMALL_STATE(2120)] = 37725, + [SMALL_STATE(2121)] = 37792, + [SMALL_STATE(2122)] = 37874, + [SMALL_STATE(2123)] = 37956, + [SMALL_STATE(2124)] = 38026, + [SMALL_STATE(2125)] = 38108, + [SMALL_STATE(2126)] = 38177, + [SMALL_STATE(2127)] = 38246, + [SMALL_STATE(2128)] = 38317, + [SMALL_STATE(2129)] = 38383, + [SMALL_STATE(2130)] = 38447, + [SMALL_STATE(2131)] = 38511, + [SMALL_STATE(2132)] = 38577, + [SMALL_STATE(2133)] = 38643, + [SMALL_STATE(2134)] = 38707, + [SMALL_STATE(2135)] = 38771, + [SMALL_STATE(2136)] = 38835, + [SMALL_STATE(2137)] = 38903, + [SMALL_STATE(2138)] = 39011, + [SMALL_STATE(2139)] = 39075, + [SMALL_STATE(2140)] = 39139, + [SMALL_STATE(2141)] = 39203, + [SMALL_STATE(2142)] = 39267, + [SMALL_STATE(2143)] = 39333, + [SMALL_STATE(2144)] = 39397, + [SMALL_STATE(2145)] = 39461, + [SMALL_STATE(2146)] = 39525, + [SMALL_STATE(2147)] = 39608, + [SMALL_STATE(2148)] = 39671, + [SMALL_STATE(2149)] = 39734, + [SMALL_STATE(2150)] = 39797, + [SMALL_STATE(2151)] = 39860, + [SMALL_STATE(2152)] = 39923, + [SMALL_STATE(2153)] = 39986, + [SMALL_STATE(2154)] = 40049, + [SMALL_STATE(2155)] = 40112, + [SMALL_STATE(2156)] = 40175, + [SMALL_STATE(2157)] = 40240, + [SMALL_STATE(2158)] = 40303, + [SMALL_STATE(2159)] = 40366, + [SMALL_STATE(2160)] = 40431, + [SMALL_STATE(2161)] = 40494, + [SMALL_STATE(2162)] = 40557, + [SMALL_STATE(2163)] = 40620, + [SMALL_STATE(2164)] = 40683, + [SMALL_STATE(2165)] = 40746, + [SMALL_STATE(2166)] = 40811, + [SMALL_STATE(2167)] = 40874, + [SMALL_STATE(2168)] = 40937, + [SMALL_STATE(2169)] = 41038, + [SMALL_STATE(2170)] = 41101, + [SMALL_STATE(2171)] = 41164, + [SMALL_STATE(2172)] = 41227, + [SMALL_STATE(2173)] = 41290, + [SMALL_STATE(2174)] = 41353, + [SMALL_STATE(2175)] = 41416, + [SMALL_STATE(2176)] = 41479, + [SMALL_STATE(2177)] = 41542, + [SMALL_STATE(2178)] = 41605, + [SMALL_STATE(2179)] = 41668, + [SMALL_STATE(2180)] = 41731, + [SMALL_STATE(2181)] = 41794, + [SMALL_STATE(2182)] = 41857, + [SMALL_STATE(2183)] = 41920, + [SMALL_STATE(2184)] = 41983, + [SMALL_STATE(2185)] = 42046, + [SMALL_STATE(2186)] = 42109, + [SMALL_STATE(2187)] = 42172, + [SMALL_STATE(2188)] = 42235, + [SMALL_STATE(2189)] = 42298, + [SMALL_STATE(2190)] = 42361, + [SMALL_STATE(2191)] = 42424, + [SMALL_STATE(2192)] = 42487, + [SMALL_STATE(2193)] = 42568, + [SMALL_STATE(2194)] = 42631, + [SMALL_STATE(2195)] = 42694, + [SMALL_STATE(2196)] = 42781, + [SMALL_STATE(2197)] = 42844, + [SMALL_STATE(2198)] = 42907, + [SMALL_STATE(2199)] = 42970, + [SMALL_STATE(2200)] = 43059, + [SMALL_STATE(2201)] = 43122, + [SMALL_STATE(2202)] = 43185, + [SMALL_STATE(2203)] = 43248, + [SMALL_STATE(2204)] = 43311, + [SMALL_STATE(2205)] = 43374, + [SMALL_STATE(2206)] = 43437, + [SMALL_STATE(2207)] = 43500, + [SMALL_STATE(2208)] = 43563, + [SMALL_STATE(2209)] = 43626, + [SMALL_STATE(2210)] = 43691, + [SMALL_STATE(2211)] = 43754, + [SMALL_STATE(2212)] = 43837, + [SMALL_STATE(2213)] = 43900, + [SMALL_STATE(2214)] = 43963, + [SMALL_STATE(2215)] = 44026, + [SMALL_STATE(2216)] = 44089, + [SMALL_STATE(2217)] = 44152, + [SMALL_STATE(2218)] = 44215, + [SMALL_STATE(2219)] = 44278, + [SMALL_STATE(2220)] = 44341, + [SMALL_STATE(2221)] = 44404, + [SMALL_STATE(2222)] = 44467, + [SMALL_STATE(2223)] = 44530, + [SMALL_STATE(2224)] = 44593, + [SMALL_STATE(2225)] = 44658, + [SMALL_STATE(2226)] = 44721, + [SMALL_STATE(2227)] = 44784, + [SMALL_STATE(2228)] = 44847, + [SMALL_STATE(2229)] = 44910, + [SMALL_STATE(2230)] = 44973, + [SMALL_STATE(2231)] = 45036, + [SMALL_STATE(2232)] = 45099, + [SMALL_STATE(2233)] = 45162, + [SMALL_STATE(2234)] = 45225, + [SMALL_STATE(2235)] = 45288, + [SMALL_STATE(2236)] = 45351, + [SMALL_STATE(2237)] = 45414, + [SMALL_STATE(2238)] = 45477, + [SMALL_STATE(2239)] = 45540, + [SMALL_STATE(2240)] = 45603, + [SMALL_STATE(2241)] = 45666, + [SMALL_STATE(2242)] = 45729, + [SMALL_STATE(2243)] = 45792, + [SMALL_STATE(2244)] = 45855, + [SMALL_STATE(2245)] = 45956, + [SMALL_STATE(2246)] = 46019, + [SMALL_STATE(2247)] = 46082, + [SMALL_STATE(2248)] = 46145, + [SMALL_STATE(2249)] = 46208, + [SMALL_STATE(2250)] = 46271, + [SMALL_STATE(2251)] = 46334, + [SMALL_STATE(2252)] = 46397, + [SMALL_STATE(2253)] = 46460, + [SMALL_STATE(2254)] = 46523, + [SMALL_STATE(2255)] = 46634, + [SMALL_STATE(2256)] = 46697, + [SMALL_STATE(2257)] = 46760, + [SMALL_STATE(2258)] = 46823, + [SMALL_STATE(2259)] = 46885, + [SMALL_STATE(2260)] = 46967, + [SMALL_STATE(2261)] = 47067, + [SMALL_STATE(2262)] = 47151, + [SMALL_STATE(2263)] = 47213, + [SMALL_STATE(2264)] = 47277, + [SMALL_STATE(2265)] = 47339, + [SMALL_STATE(2266)] = 47423, + [SMALL_STATE(2267)] = 47503, + [SMALL_STATE(2268)] = 47587, + [SMALL_STATE(2269)] = 47669, + [SMALL_STATE(2270)] = 47733, + [SMALL_STATE(2271)] = 47819, + [SMALL_STATE(2272)] = 47907, + [SMALL_STATE(2273)] = 48007, + [SMALL_STATE(2274)] = 48069, + [SMALL_STATE(2275)] = 48169, + [SMALL_STATE(2276)] = 48269, + [SMALL_STATE(2277)] = 48374, + [SMALL_STATE(2278)] = 48439, + [SMALL_STATE(2279)] = 48504, + [SMALL_STATE(2280)] = 48566, + [SMALL_STATE(2281)] = 48628, + [SMALL_STATE(2282)] = 48704, + [SMALL_STATE(2283)] = 48806, + [SMALL_STATE(2284)] = 48868, + [SMALL_STATE(2285)] = 48930, + [SMALL_STATE(2286)] = 49006, + [SMALL_STATE(2287)] = 49082, + [SMALL_STATE(2288)] = 49144, + [SMALL_STATE(2289)] = 49257, + [SMALL_STATE(2290)] = 49316, + [SMALL_STATE(2291)] = 49375, + [SMALL_STATE(2292)] = 49434, + [SMALL_STATE(2293)] = 49547, + [SMALL_STATE(2294)] = 49606, + [SMALL_STATE(2295)] = 49665, + [SMALL_STATE(2296)] = 49726, + [SMALL_STATE(2297)] = 49785, + [SMALL_STATE(2298)] = 49898, + [SMALL_STATE(2299)] = 49957, + [SMALL_STATE(2300)] = 50016, + [SMALL_STATE(2301)] = 50075, + [SMALL_STATE(2302)] = 50134, + [SMALL_STATE(2303)] = 50193, + [SMALL_STATE(2304)] = 50306, + [SMALL_STATE(2305)] = 50385, + [SMALL_STATE(2306)] = 50444, + [SMALL_STATE(2307)] = 50557, + [SMALL_STATE(2308)] = 50670, + [SMALL_STATE(2309)] = 50755, + [SMALL_STATE(2310)] = 50838, + [SMALL_STATE(2311)] = 50917, + [SMALL_STATE(2312)] = 50994, + [SMALL_STATE(2313)] = 51053, + [SMALL_STATE(2314)] = 51112, + [SMALL_STATE(2315)] = 51225, + [SMALL_STATE(2316)] = 51322, + [SMALL_STATE(2317)] = 51381, + [SMALL_STATE(2318)] = 51440, + [SMALL_STATE(2319)] = 51537, + [SMALL_STATE(2320)] = 51596, + [SMALL_STATE(2321)] = 51655, + [SMALL_STATE(2322)] = 51714, + [SMALL_STATE(2323)] = 51827, + [SMALL_STATE(2324)] = 51886, + [SMALL_STATE(2325)] = 51945, + [SMALL_STATE(2326)] = 52004, + [SMALL_STATE(2327)] = 52117, + [SMALL_STATE(2328)] = 52176, + [SMALL_STATE(2329)] = 52235, + [SMALL_STATE(2330)] = 52294, + [SMALL_STATE(2331)] = 52353, + [SMALL_STATE(2332)] = 52412, + [SMALL_STATE(2333)] = 52471, + [SMALL_STATE(2334)] = 52530, + [SMALL_STATE(2335)] = 52629, + [SMALL_STATE(2336)] = 52688, + [SMALL_STATE(2337)] = 52747, + [SMALL_STATE(2338)] = 52806, + [SMALL_STATE(2339)] = 52865, + [SMALL_STATE(2340)] = 52924, + [SMALL_STATE(2341)] = 52983, + [SMALL_STATE(2342)] = 53044, + [SMALL_STATE(2343)] = 53103, + [SMALL_STATE(2344)] = 53162, + [SMALL_STATE(2345)] = 53221, + [SMALL_STATE(2346)] = 53280, + [SMALL_STATE(2347)] = 53339, + [SMALL_STATE(2348)] = 53398, + [SMALL_STATE(2349)] = 53457, + [SMALL_STATE(2350)] = 53516, + [SMALL_STATE(2351)] = 53575, + [SMALL_STATE(2352)] = 53634, + [SMALL_STATE(2353)] = 53747, + [SMALL_STATE(2354)] = 53806, + [SMALL_STATE(2355)] = 53919, + [SMALL_STATE(2356)] = 53978, + [SMALL_STATE(2357)] = 54037, + [SMALL_STATE(2358)] = 54100, + [SMALL_STATE(2359)] = 54163, + [SMALL_STATE(2360)] = 54260, + [SMALL_STATE(2361)] = 54319, + [SMALL_STATE(2362)] = 54378, + [SMALL_STATE(2363)] = 54437, + [SMALL_STATE(2364)] = 54550, + [SMALL_STATE(2365)] = 54609, + [SMALL_STATE(2366)] = 54668, + [SMALL_STATE(2367)] = 54727, + [SMALL_STATE(2368)] = 54786, + [SMALL_STATE(2369)] = 54863, + [SMALL_STATE(2370)] = 54922, + [SMALL_STATE(2371)] = 54981, + [SMALL_STATE(2372)] = 55040, + [SMALL_STATE(2373)] = 55099, + [SMALL_STATE(2374)] = 55158, + [SMALL_STATE(2375)] = 55255, + [SMALL_STATE(2376)] = 55314, + [SMALL_STATE(2377)] = 55373, + [SMALL_STATE(2378)] = 55434, + [SMALL_STATE(2379)] = 55493, + [SMALL_STATE(2380)] = 55552, + [SMALL_STATE(2381)] = 55631, + [SMALL_STATE(2382)] = 55690, + [SMALL_STATE(2383)] = 55749, + [SMALL_STATE(2384)] = 55808, + [SMALL_STATE(2385)] = 55905, + [SMALL_STATE(2386)] = 55964, + [SMALL_STATE(2387)] = 56023, + [SMALL_STATE(2388)] = 56082, + [SMALL_STATE(2389)] = 56141, + [SMALL_STATE(2390)] = 56200, + [SMALL_STATE(2391)] = 56297, + [SMALL_STATE(2392)] = 56356, + [SMALL_STATE(2393)] = 56415, + [SMALL_STATE(2394)] = 56498, + [SMALL_STATE(2395)] = 56557, + [SMALL_STATE(2396)] = 56616, + [SMALL_STATE(2397)] = 56675, + [SMALL_STATE(2398)] = 56738, + [SMALL_STATE(2399)] = 56797, + [SMALL_STATE(2400)] = 56856, + [SMALL_STATE(2401)] = 56915, + [SMALL_STATE(2402)] = 56974, + [SMALL_STATE(2403)] = 57033, + [SMALL_STATE(2404)] = 57092, + [SMALL_STATE(2405)] = 57151, + [SMALL_STATE(2406)] = 57210, + [SMALL_STATE(2407)] = 57269, + [SMALL_STATE(2408)] = 57328, + [SMALL_STATE(2409)] = 57441, + [SMALL_STATE(2410)] = 57500, + [SMALL_STATE(2411)] = 57559, + [SMALL_STATE(2412)] = 57618, + [SMALL_STATE(2413)] = 57677, + [SMALL_STATE(2414)] = 57762, + [SMALL_STATE(2415)] = 57841, + [SMALL_STATE(2416)] = 57900, + [SMALL_STATE(2417)] = 57959, + [SMALL_STATE(2418)] = 58047, + [SMALL_STATE(2419)] = 58141, + [SMALL_STATE(2420)] = 58233, + [SMALL_STATE(2421)] = 58321, + [SMALL_STATE(2422)] = 58405, + [SMALL_STATE(2423)] = 58465, + [SMALL_STATE(2424)] = 58525, + [SMALL_STATE(2425)] = 58621, + [SMALL_STATE(2426)] = 58681, + [SMALL_STATE(2427)] = 58741, + [SMALL_STATE(2428)] = 58835, + [SMALL_STATE(2429)] = 58929, + [SMALL_STATE(2430)] = 59023, + [SMALL_STATE(2431)] = 59083, + [SMALL_STATE(2432)] = 59163, + [SMALL_STATE(2433)] = 59251, + [SMALL_STATE(2434)] = 59331, + [SMALL_STATE(2435)] = 59437, + [SMALL_STATE(2436)] = 59497, + [SMALL_STATE(2437)] = 59557, + [SMALL_STATE(2438)] = 59663, + [SMALL_STATE(2439)] = 59761, + [SMALL_STATE(2440)] = 59857, + [SMALL_STATE(2441)] = 59951, + [SMALL_STATE(2442)] = 60039, + [SMALL_STATE(2443)] = 60123, + [SMALL_STATE(2444)] = 60219, + [SMALL_STATE(2445)] = 60327, + [SMALL_STATE(2446)] = 60387, + [SMALL_STATE(2447)] = 60447, + [SMALL_STATE(2448)] = 60509, + [SMALL_STATE(2449)] = 60617, + [SMALL_STATE(2450)] = 60713, + [SMALL_STATE(2451)] = 60809, + [SMALL_STATE(2452)] = 60889, + [SMALL_STATE(2453)] = 60946, + [SMALL_STATE(2454)] = 61003, + [SMALL_STATE(2455)] = 61106, + [SMALL_STATE(2456)] = 61163, + [SMALL_STATE(2457)] = 61222, + [SMALL_STATE(2458)] = 61281, + [SMALL_STATE(2459)] = 61388, + [SMALL_STATE(2460)] = 61495, + [SMALL_STATE(2461)] = 61588, + [SMALL_STATE(2462)] = 61645, + [SMALL_STATE(2463)] = 61732, + [SMALL_STATE(2464)] = 61815, + [SMALL_STATE(2465)] = 61872, + [SMALL_STATE(2466)] = 61929, + [SMALL_STATE(2467)] = 61988, + [SMALL_STATE(2468)] = 62073, + [SMALL_STATE(2469)] = 62130, + [SMALL_STATE(2470)] = 62187, + [SMALL_STATE(2471)] = 62244, + [SMALL_STATE(2472)] = 62301, + [SMALL_STATE(2473)] = 62358, + [SMALL_STATE(2474)] = 62415, + [SMALL_STATE(2475)] = 62472, + [SMALL_STATE(2476)] = 62529, + [SMALL_STATE(2477)] = 62586, + [SMALL_STATE(2478)] = 62643, + [SMALL_STATE(2479)] = 62700, + [SMALL_STATE(2480)] = 62757, + [SMALL_STATE(2481)] = 62814, + [SMALL_STATE(2482)] = 62871, + [SMALL_STATE(2483)] = 62928, + [SMALL_STATE(2484)] = 62985, + [SMALL_STATE(2485)] = 63042, + [SMALL_STATE(2486)] = 63099, + [SMALL_STATE(2487)] = 63156, + [SMALL_STATE(2488)] = 63215, + [SMALL_STATE(2489)] = 63318, + [SMALL_STATE(2490)] = 63375, + [SMALL_STATE(2491)] = 63432, + [SMALL_STATE(2492)] = 63489, + [SMALL_STATE(2493)] = 63546, + [SMALL_STATE(2494)] = 63603, + [SMALL_STATE(2495)] = 63660, + [SMALL_STATE(2496)] = 63745, + [SMALL_STATE(2497)] = 63826, + [SMALL_STATE(2498)] = 63883, + [SMALL_STATE(2499)] = 63940, + [SMALL_STATE(2500)] = 64025, + [SMALL_STATE(2501)] = 64120, + [SMALL_STATE(2502)] = 64177, + [SMALL_STATE(2503)] = 64266, + [SMALL_STATE(2504)] = 64323, + [SMALL_STATE(2505)] = 64380, + [SMALL_STATE(2506)] = 64471, + [SMALL_STATE(2507)] = 64528, + [SMALL_STATE(2508)] = 64585, + [SMALL_STATE(2509)] = 64642, + [SMALL_STATE(2510)] = 64699, + [SMALL_STATE(2511)] = 64756, + [SMALL_STATE(2512)] = 64813, + [SMALL_STATE(2513)] = 64870, + [SMALL_STATE(2514)] = 64927, + [SMALL_STATE(2515)] = 64984, + [SMALL_STATE(2516)] = 65041, + [SMALL_STATE(2517)] = 65098, + [SMALL_STATE(2518)] = 65155, + [SMALL_STATE(2519)] = 65212, + [SMALL_STATE(2520)] = 65269, + [SMALL_STATE(2521)] = 65326, + [SMALL_STATE(2522)] = 65383, + [SMALL_STATE(2523)] = 65486, + [SMALL_STATE(2524)] = 65543, + [SMALL_STATE(2525)] = 65600, + [SMALL_STATE(2526)] = 65657, + [SMALL_STATE(2527)] = 65766, + [SMALL_STATE(2528)] = 65823, + [SMALL_STATE(2529)] = 65880, + [SMALL_STATE(2530)] = 65937, + [SMALL_STATE(2531)] = 65994, + [SMALL_STATE(2532)] = 66051, + [SMALL_STATE(2533)] = 66108, + [SMALL_STATE(2534)] = 66165, + [SMALL_STATE(2535)] = 66222, + [SMALL_STATE(2536)] = 66279, + [SMALL_STATE(2537)] = 66382, + [SMALL_STATE(2538)] = 66439, + [SMALL_STATE(2539)] = 66496, + [SMALL_STATE(2540)] = 66553, + [SMALL_STATE(2541)] = 66610, + [SMALL_STATE(2542)] = 66701, + [SMALL_STATE(2543)] = 66790, + [SMALL_STATE(2544)] = 66875, + [SMALL_STATE(2545)] = 66934, + [SMALL_STATE(2546)] = 66991, + [SMALL_STATE(2547)] = 67048, + [SMALL_STATE(2548)] = 67129, + [SMALL_STATE(2549)] = 67190, + [SMALL_STATE(2550)] = 67247, + [SMALL_STATE(2551)] = 67350, + [SMALL_STATE(2552)] = 67407, + [SMALL_STATE(2553)] = 67464, + [SMALL_STATE(2554)] = 67521, + [SMALL_STATE(2555)] = 67578, + [SMALL_STATE(2556)] = 67685, + [SMALL_STATE(2557)] = 67742, + [SMALL_STATE(2558)] = 67801, + [SMALL_STATE(2559)] = 67908, + [SMALL_STATE(2560)] = 67965, + [SMALL_STATE(2561)] = 68022, + [SMALL_STATE(2562)] = 68079, + [SMALL_STATE(2563)] = 68136, + [SMALL_STATE(2564)] = 68193, + [SMALL_STATE(2565)] = 68250, + [SMALL_STATE(2566)] = 68307, + [SMALL_STATE(2567)] = 68364, + [SMALL_STATE(2568)] = 68421, + [SMALL_STATE(2569)] = 68478, + [SMALL_STATE(2570)] = 68535, + [SMALL_STATE(2571)] = 68592, + [SMALL_STATE(2572)] = 68679, + [SMALL_STATE(2573)] = 68736, + [SMALL_STATE(2574)] = 68797, + [SMALL_STATE(2575)] = 68858, + [SMALL_STATE(2576)] = 68915, + [SMALL_STATE(2577)] = 68972, + [SMALL_STATE(2578)] = 69029, + [SMALL_STATE(2579)] = 69086, + [SMALL_STATE(2580)] = 69190, + [SMALL_STATE(2581)] = 69294, + [SMALL_STATE(2582)] = 69398, + [SMALL_STATE(2583)] = 69456, + [SMALL_STATE(2584)] = 69562, + [SMALL_STATE(2585)] = 69624, + [SMALL_STATE(2586)] = 69730, + [SMALL_STATE(2587)] = 69834, + [SMALL_STATE(2588)] = 69938, + [SMALL_STATE(2589)] = 69996, + [SMALL_STATE(2590)] = 70098, + [SMALL_STATE(2591)] = 70202, + [SMALL_STATE(2592)] = 70304, + [SMALL_STATE(2593)] = 70406, + [SMALL_STATE(2594)] = 70510, + [SMALL_STATE(2595)] = 70616, + [SMALL_STATE(2596)] = 70720, + [SMALL_STATE(2597)] = 70826, + [SMALL_STATE(2598)] = 70884, + [SMALL_STATE(2599)] = 70990, + [SMALL_STATE(2600)] = 71096, + [SMALL_STATE(2601)] = 71152, + [SMALL_STATE(2602)] = 71208, + [SMALL_STATE(2603)] = 71314, + [SMALL_STATE(2604)] = 71418, + [SMALL_STATE(2605)] = 71524, + [SMALL_STATE(2606)] = 71630, + [SMALL_STATE(2607)] = 71690, + [SMALL_STATE(2608)] = 71794, + [SMALL_STATE(2609)] = 71850, + [SMALL_STATE(2610)] = 71956, + [SMALL_STATE(2611)] = 72062, + [SMALL_STATE(2612)] = 72166, + [SMALL_STATE(2613)] = 72270, + [SMALL_STATE(2614)] = 72374, + [SMALL_STATE(2615)] = 72436, + [SMALL_STATE(2616)] = 72542, + [SMALL_STATE(2617)] = 72646, + [SMALL_STATE(2618)] = 72752, + [SMALL_STATE(2619)] = 72854, + [SMALL_STATE(2620)] = 72956, + [SMALL_STATE(2621)] = 73011, + [SMALL_STATE(2622)] = 73070, + [SMALL_STATE(2623)] = 73127, + [SMALL_STATE(2624)] = 73186, + [SMALL_STATE(2625)] = 73287, + [SMALL_STATE(2626)] = 73388, + [SMALL_STATE(2627)] = 73443, + [SMALL_STATE(2628)] = 73498, + [SMALL_STATE(2629)] = 73553, + [SMALL_STATE(2630)] = 73654, + [SMALL_STATE(2631)] = 73737, + [SMALL_STATE(2632)] = 73792, + [SMALL_STATE(2633)] = 73893, + [SMALL_STATE(2634)] = 73948, + [SMALL_STATE(2635)] = 74003, + [SMALL_STATE(2636)] = 74058, + [SMALL_STATE(2637)] = 74159, + [SMALL_STATE(2638)] = 74214, + [SMALL_STATE(2639)] = 74269, + [SMALL_STATE(2640)] = 74370, + [SMALL_STATE(2641)] = 74471, + [SMALL_STATE(2642)] = 74550, + [SMALL_STATE(2643)] = 74651, + [SMALL_STATE(2644)] = 74706, + [SMALL_STATE(2645)] = 74761, + [SMALL_STATE(2646)] = 74816, + [SMALL_STATE(2647)] = 74917, + [SMALL_STATE(2648)] = 74972, + [SMALL_STATE(2649)] = 75027, + [SMALL_STATE(2650)] = 75082, + [SMALL_STATE(2651)] = 75139, + [SMALL_STATE(2652)] = 75194, + [SMALL_STATE(2653)] = 75249, + [SMALL_STATE(2654)] = 75304, + [SMALL_STATE(2655)] = 75405, + [SMALL_STATE(2656)] = 75460, + [SMALL_STATE(2657)] = 75515, + [SMALL_STATE(2658)] = 75570, + [SMALL_STATE(2659)] = 75625, + [SMALL_STATE(2660)] = 75680, + [SMALL_STATE(2661)] = 75735, + [SMALL_STATE(2662)] = 75790, + [SMALL_STATE(2663)] = 75845, + [SMALL_STATE(2664)] = 75900, + [SMALL_STATE(2665)] = 75955, + [SMALL_STATE(2666)] = 76012, + [SMALL_STATE(2667)] = 76067, + [SMALL_STATE(2668)] = 76122, + [SMALL_STATE(2669)] = 76177, + [SMALL_STATE(2670)] = 76232, + [SMALL_STATE(2671)] = 76287, + [SMALL_STATE(2672)] = 76342, + [SMALL_STATE(2673)] = 76443, + [SMALL_STATE(2674)] = 76498, + [SMALL_STATE(2675)] = 76553, + [SMALL_STATE(2676)] = 76608, + [SMALL_STATE(2677)] = 76709, + [SMALL_STATE(2678)] = 76764, + [SMALL_STATE(2679)] = 76821, + [SMALL_STATE(2680)] = 76878, + [SMALL_STATE(2681)] = 76933, + [SMALL_STATE(2682)] = 76988, + [SMALL_STATE(2683)] = 77089, + [SMALL_STATE(2684)] = 77190, + [SMALL_STATE(2685)] = 77245, + [SMALL_STATE(2686)] = 77300, + [SMALL_STATE(2687)] = 77355, + [SMALL_STATE(2688)] = 77410, + [SMALL_STATE(2689)] = 77465, + [SMALL_STATE(2690)] = 77520, + [SMALL_STATE(2691)] = 77575, + [SMALL_STATE(2692)] = 77630, + [SMALL_STATE(2693)] = 77685, + [SMALL_STATE(2694)] = 77740, + [SMALL_STATE(2695)] = 77823, + [SMALL_STATE(2696)] = 77924, + [SMALL_STATE(2697)] = 77981, + [SMALL_STATE(2698)] = 78082, + [SMALL_STATE(2699)] = 78137, + [SMALL_STATE(2700)] = 78192, + [SMALL_STATE(2701)] = 78247, + [SMALL_STATE(2702)] = 78302, + [SMALL_STATE(2703)] = 78357, + [SMALL_STATE(2704)] = 78446, + [SMALL_STATE(2705)] = 78533, + [SMALL_STATE(2706)] = 78588, + [SMALL_STATE(2707)] = 78689, + [SMALL_STATE(2708)] = 78772, + [SMALL_STATE(2709)] = 78873, + [SMALL_STATE(2710)] = 78962, + [SMALL_STATE(2711)] = 79017, + [SMALL_STATE(2712)] = 79104, + [SMALL_STATE(2713)] = 79205, + [SMALL_STATE(2714)] = 79260, + [SMALL_STATE(2715)] = 79315, + [SMALL_STATE(2716)] = 79370, + [SMALL_STATE(2717)] = 79425, + [SMALL_STATE(2718)] = 79480, + [SMALL_STATE(2719)] = 79563, + [SMALL_STATE(2720)] = 79618, + [SMALL_STATE(2721)] = 79673, + [SMALL_STATE(2722)] = 79728, + [SMALL_STATE(2723)] = 79783, + [SMALL_STATE(2724)] = 79838, + [SMALL_STATE(2725)] = 79893, + [SMALL_STATE(2726)] = 79948, + [SMALL_STATE(2727)] = 80003, + [SMALL_STATE(2728)] = 80104, + [SMALL_STATE(2729)] = 80159, + [SMALL_STATE(2730)] = 80214, + [SMALL_STATE(2731)] = 80269, + [SMALL_STATE(2732)] = 80370, + [SMALL_STATE(2733)] = 80449, + [SMALL_STATE(2734)] = 80550, + [SMALL_STATE(2735)] = 80651, + [SMALL_STATE(2736)] = 80706, + [SMALL_STATE(2737)] = 80761, + [SMALL_STATE(2738)] = 80816, + [SMALL_STATE(2739)] = 80871, + [SMALL_STATE(2740)] = 80972, + [SMALL_STATE(2741)] = 81027, + [SMALL_STATE(2742)] = 81082, + [SMALL_STATE(2743)] = 81137, + [SMALL_STATE(2744)] = 81192, + [SMALL_STATE(2745)] = 81247, + [SMALL_STATE(2746)] = 81302, + [SMALL_STATE(2747)] = 81357, + [SMALL_STATE(2748)] = 81412, + [SMALL_STATE(2749)] = 81467, + [SMALL_STATE(2750)] = 81522, + [SMALL_STATE(2751)] = 81623, + [SMALL_STATE(2752)] = 81680, + [SMALL_STATE(2753)] = 81781, + [SMALL_STATE(2754)] = 81882, + [SMALL_STATE(2755)] = 81983, + [SMALL_STATE(2756)] = 82084, + [SMALL_STATE(2757)] = 82139, + [SMALL_STATE(2758)] = 82240, + [SMALL_STATE(2759)] = 82299, + [SMALL_STATE(2760)] = 82400, + [SMALL_STATE(2761)] = 82457, + [SMALL_STATE(2762)] = 82516, + [SMALL_STATE(2763)] = 82571, + [SMALL_STATE(2764)] = 82672, + [SMALL_STATE(2765)] = 82729, + [SMALL_STATE(2766)] = 82784, + [SMALL_STATE(2767)] = 82885, + [SMALL_STATE(2768)] = 82986, + [SMALL_STATE(2769)] = 83087, + [SMALL_STATE(2770)] = 83188, + [SMALL_STATE(2771)] = 83289, + [SMALL_STATE(2772)] = 83344, + [SMALL_STATE(2773)] = 83445, + [SMALL_STATE(2774)] = 83546, + [SMALL_STATE(2775)] = 83647, + [SMALL_STATE(2776)] = 83748, + [SMALL_STATE(2777)] = 83849, + [SMALL_STATE(2778)] = 83950, + [SMALL_STATE(2779)] = 84051, + [SMALL_STATE(2780)] = 84108, + [SMALL_STATE(2781)] = 84209, + [SMALL_STATE(2782)] = 84310, + [SMALL_STATE(2783)] = 84411, + [SMALL_STATE(2784)] = 84512, + [SMALL_STATE(2785)] = 84613, + [SMALL_STATE(2786)] = 84714, + [SMALL_STATE(2787)] = 84815, + [SMALL_STATE(2788)] = 84916, + [SMALL_STATE(2789)] = 85017, + [SMALL_STATE(2790)] = 85118, + [SMALL_STATE(2791)] = 85219, + [SMALL_STATE(2792)] = 85276, + [SMALL_STATE(2793)] = 85333, + [SMALL_STATE(2794)] = 85434, + [SMALL_STATE(2795)] = 85535, + [SMALL_STATE(2796)] = 85636, + [SMALL_STATE(2797)] = 85737, + [SMALL_STATE(2798)] = 85838, + [SMALL_STATE(2799)] = 85939, + [SMALL_STATE(2800)] = 85996, + [SMALL_STATE(2801)] = 86097, + [SMALL_STATE(2802)] = 86198, + [SMALL_STATE(2803)] = 86299, + [SMALL_STATE(2804)] = 86354, + [SMALL_STATE(2805)] = 86455, + [SMALL_STATE(2806)] = 86556, + [SMALL_STATE(2807)] = 86612, + [SMALL_STATE(2808)] = 86710, + [SMALL_STATE(2809)] = 86808, + [SMALL_STATE(2810)] = 86906, + [SMALL_STATE(2811)] = 87004, + [SMALL_STATE(2812)] = 87102, + [SMALL_STATE(2813)] = 87200, + [SMALL_STATE(2814)] = 87256, + [SMALL_STATE(2815)] = 87310, + [SMALL_STATE(2816)] = 87370, + [SMALL_STATE(2817)] = 87466, + [SMALL_STATE(2818)] = 87564, + [SMALL_STATE(2819)] = 87662, + [SMALL_STATE(2820)] = 87760, + [SMALL_STATE(2821)] = 87858, + [SMALL_STATE(2822)] = 87952, + [SMALL_STATE(2823)] = 88008, + [SMALL_STATE(2824)] = 88106, + [SMALL_STATE(2825)] = 88200, + [SMALL_STATE(2826)] = 88260, + [SMALL_STATE(2827)] = 88358, + [SMALL_STATE(2828)] = 88456, + [SMALL_STATE(2829)] = 88554, + [SMALL_STATE(2830)] = 88652, + [SMALL_STATE(2831)] = 88750, + [SMALL_STATE(2832)] = 88846, + [SMALL_STATE(2833)] = 88944, + [SMALL_STATE(2834)] = 88997, + [SMALL_STATE(2835)] = 89052, + [SMALL_STATE(2836)] = 89141, + [SMALL_STATE(2837)] = 89194, + [SMALL_STATE(2838)] = 89247, + [SMALL_STATE(2839)] = 89302, + [SMALL_STATE(2840)] = 89391, + [SMALL_STATE(2841)] = 89444, + [SMALL_STATE(2842)] = 89497, + [SMALL_STATE(2843)] = 89552, + [SMALL_STATE(2844)] = 89605, + [SMALL_STATE(2845)] = 89660, + [SMALL_STATE(2846)] = 89713, + [SMALL_STATE(2847)] = 89766, + [SMALL_STATE(2848)] = 89825, + [SMALL_STATE(2849)] = 89880, + [SMALL_STATE(2850)] = 89933, + [SMALL_STATE(2851)] = 90022, + [SMALL_STATE(2852)] = 90075, + [SMALL_STATE(2853)] = 90128, + [SMALL_STATE(2854)] = 90181, + [SMALL_STATE(2855)] = 90234, + [SMALL_STATE(2856)] = 90287, + [SMALL_STATE(2857)] = 90340, + [SMALL_STATE(2858)] = 90393, + [SMALL_STATE(2859)] = 90446, + [SMALL_STATE(2860)] = 90499, + [SMALL_STATE(2861)] = 90588, + [SMALL_STATE(2862)] = 90683, + [SMALL_STATE(2863)] = 90736, + [SMALL_STATE(2864)] = 90789, + [SMALL_STATE(2865)] = 90842, + [SMALL_STATE(2866)] = 90897, + [SMALL_STATE(2867)] = 90950, + [SMALL_STATE(2868)] = 91005, + [SMALL_STATE(2869)] = 91060, + [SMALL_STATE(2870)] = 91115, + [SMALL_STATE(2871)] = 91204, + [SMALL_STATE(2872)] = 91293, + [SMALL_STATE(2873)] = 91346, + [SMALL_STATE(2874)] = 91401, + [SMALL_STATE(2875)] = 91454, + [SMALL_STATE(2876)] = 91509, + [SMALL_STATE(2877)] = 91562, + [SMALL_STATE(2878)] = 91615, + [SMALL_STATE(2879)] = 91668, + [SMALL_STATE(2880)] = 91723, + [SMALL_STATE(2881)] = 91778, + [SMALL_STATE(2882)] = 91831, + [SMALL_STATE(2883)] = 91884, + [SMALL_STATE(2884)] = 91939, + [SMALL_STATE(2885)] = 91993, + [SMALL_STATE(2886)] = 92047, + [SMALL_STATE(2887)] = 92101, + [SMALL_STATE(2888)] = 92155, + [SMALL_STATE(2889)] = 92209, + [SMALL_STATE(2890)] = 92265, + [SMALL_STATE(2891)] = 92319, + [SMALL_STATE(2892)] = 92373, + [SMALL_STATE(2893)] = 92427, + [SMALL_STATE(2894)] = 92483, + [SMALL_STATE(2895)] = 92539, + [SMALL_STATE(2896)] = 92593, + [SMALL_STATE(2897)] = 92647, + [SMALL_STATE(2898)] = 92701, + [SMALL_STATE(2899)] = 92755, + [SMALL_STATE(2900)] = 92809, + [SMALL_STATE(2901)] = 92863, + [SMALL_STATE(2902)] = 92917, + [SMALL_STATE(2903)] = 92971, + [SMALL_STATE(2904)] = 93027, + [SMALL_STATE(2905)] = 93083, + [SMALL_STATE(2906)] = 93137, + [SMALL_STATE(2907)] = 93191, + [SMALL_STATE(2908)] = 93247, + [SMALL_STATE(2909)] = 93301, + [SMALL_STATE(2910)] = 93357, + [SMALL_STATE(2911)] = 93411, + [SMALL_STATE(2912)] = 93467, + [SMALL_STATE(2913)] = 93521, + [SMALL_STATE(2914)] = 93575, + [SMALL_STATE(2915)] = 93629, + [SMALL_STATE(2916)] = 93683, + [SMALL_STATE(2917)] = 93737, + [SMALL_STATE(2918)] = 93793, + [SMALL_STATE(2919)] = 93847, + [SMALL_STATE(2920)] = 93903, + [SMALL_STATE(2921)] = 93959, + [SMALL_STATE(2922)] = 94013, + [SMALL_STATE(2923)] = 94069, + [SMALL_STATE(2924)] = 94125, + [SMALL_STATE(2925)] = 94179, + [SMALL_STATE(2926)] = 94233, + [SMALL_STATE(2927)] = 94287, + [SMALL_STATE(2928)] = 94343, + [SMALL_STATE(2929)] = 94397, + [SMALL_STATE(2930)] = 94451, + [SMALL_STATE(2931)] = 94507, + [SMALL_STATE(2932)] = 94561, + [SMALL_STATE(2933)] = 94615, + [SMALL_STATE(2934)] = 94671, + [SMALL_STATE(2935)] = 94725, + [SMALL_STATE(2936)] = 94781, + [SMALL_STATE(2937)] = 94835, + [SMALL_STATE(2938)] = 94889, + [SMALL_STATE(2939)] = 94943, + [SMALL_STATE(2940)] = 94999, + [SMALL_STATE(2941)] = 95055, + [SMALL_STATE(2942)] = 95109, + [SMALL_STATE(2943)] = 95165, + [SMALL_STATE(2944)] = 95221, + [SMALL_STATE(2945)] = 95275, + [SMALL_STATE(2946)] = 95329, + [SMALL_STATE(2947)] = 95383, + [SMALL_STATE(2948)] = 95437, + [SMALL_STATE(2949)] = 95493, + [SMALL_STATE(2950)] = 95549, + [SMALL_STATE(2951)] = 95603, + [SMALL_STATE(2952)] = 95659, + [SMALL_STATE(2953)] = 95713, + [SMALL_STATE(2954)] = 95767, + [SMALL_STATE(2955)] = 95823, + [SMALL_STATE(2956)] = 95879, + [SMALL_STATE(2957)] = 95933, + [SMALL_STATE(2958)] = 95989, + [SMALL_STATE(2959)] = 96045, + [SMALL_STATE(2960)] = 96099, + [SMALL_STATE(2961)] = 96188, + [SMALL_STATE(2962)] = 96277, + [SMALL_STATE(2963)] = 96363, + [SMALL_STATE(2964)] = 96449, + [SMALL_STATE(2965)] = 96535, + [SMALL_STATE(2966)] = 96621, + [SMALL_STATE(2967)] = 96681, + [SMALL_STATE(2968)] = 96767, + [SMALL_STATE(2969)] = 96853, + [SMALL_STATE(2970)] = 96939, + [SMALL_STATE(2971)] = 97025, + [SMALL_STATE(2972)] = 97111, + [SMALL_STATE(2973)] = 97197, + [SMALL_STATE(2974)] = 97283, + [SMALL_STATE(2975)] = 97369, + [SMALL_STATE(2976)] = 97455, + [SMALL_STATE(2977)] = 97541, + [SMALL_STATE(2978)] = 97627, + [SMALL_STATE(2979)] = 97713, + [SMALL_STATE(2980)] = 97799, + [SMALL_STATE(2981)] = 97885, + [SMALL_STATE(2982)] = 97971, + [SMALL_STATE(2983)] = 98057, + [SMALL_STATE(2984)] = 98143, + [SMALL_STATE(2985)] = 98229, + [SMALL_STATE(2986)] = 98315, + [SMALL_STATE(2987)] = 98401, + [SMALL_STATE(2988)] = 98487, + [SMALL_STATE(2989)] = 98573, + [SMALL_STATE(2990)] = 98659, + [SMALL_STATE(2991)] = 98745, + [SMALL_STATE(2992)] = 98831, + [SMALL_STATE(2993)] = 98917, + [SMALL_STATE(2994)] = 99003, + [SMALL_STATE(2995)] = 99089, + [SMALL_STATE(2996)] = 99175, + [SMALL_STATE(2997)] = 99261, + [SMALL_STATE(2998)] = 99347, + [SMALL_STATE(2999)] = 99433, + [SMALL_STATE(3000)] = 99519, + [SMALL_STATE(3001)] = 99602, + [SMALL_STATE(3002)] = 99685, + [SMALL_STATE(3003)] = 99768, + [SMALL_STATE(3004)] = 99851, + [SMALL_STATE(3005)] = 99934, + [SMALL_STATE(3006)] = 100017, + [SMALL_STATE(3007)] = 100100, + [SMALL_STATE(3008)] = 100183, + [SMALL_STATE(3009)] = 100266, + [SMALL_STATE(3010)] = 100349, + [SMALL_STATE(3011)] = 100432, + [SMALL_STATE(3012)] = 100515, + [SMALL_STATE(3013)] = 100598, + [SMALL_STATE(3014)] = 100681, + [SMALL_STATE(3015)] = 100764, + [SMALL_STATE(3016)] = 100847, + [SMALL_STATE(3017)] = 100930, + [SMALL_STATE(3018)] = 101013, + [SMALL_STATE(3019)] = 101096, + [SMALL_STATE(3020)] = 101179, + [SMALL_STATE(3021)] = 101262, + [SMALL_STATE(3022)] = 101345, + [SMALL_STATE(3023)] = 101428, + [SMALL_STATE(3024)] = 101511, + [SMALL_STATE(3025)] = 101594, + [SMALL_STATE(3026)] = 101677, + [SMALL_STATE(3027)] = 101760, + [SMALL_STATE(3028)] = 101843, + [SMALL_STATE(3029)] = 101926, + [SMALL_STATE(3030)] = 102009, + [SMALL_STATE(3031)] = 102092, + [SMALL_STATE(3032)] = 102175, + [SMALL_STATE(3033)] = 102258, + [SMALL_STATE(3034)] = 102341, + [SMALL_STATE(3035)] = 102424, + [SMALL_STATE(3036)] = 102507, + [SMALL_STATE(3037)] = 102590, + [SMALL_STATE(3038)] = 102673, + [SMALL_STATE(3039)] = 102756, + [SMALL_STATE(3040)] = 102839, + [SMALL_STATE(3041)] = 102922, + [SMALL_STATE(3042)] = 103005, + [SMALL_STATE(3043)] = 103088, + [SMALL_STATE(3044)] = 103171, + [SMALL_STATE(3045)] = 103254, + [SMALL_STATE(3046)] = 103337, + [SMALL_STATE(3047)] = 103420, + [SMALL_STATE(3048)] = 103503, + [SMALL_STATE(3049)] = 103586, + [SMALL_STATE(3050)] = 103669, + [SMALL_STATE(3051)] = 103752, + [SMALL_STATE(3052)] = 103835, + [SMALL_STATE(3053)] = 103918, + [SMALL_STATE(3054)] = 104001, + [SMALL_STATE(3055)] = 104084, + [SMALL_STATE(3056)] = 104167, + [SMALL_STATE(3057)] = 104250, + [SMALL_STATE(3058)] = 104333, + [SMALL_STATE(3059)] = 104416, + [SMALL_STATE(3060)] = 104499, + [SMALL_STATE(3061)] = 104582, + [SMALL_STATE(3062)] = 104665, + [SMALL_STATE(3063)] = 104748, + [SMALL_STATE(3064)] = 104831, + [SMALL_STATE(3065)] = 104914, + [SMALL_STATE(3066)] = 104997, + [SMALL_STATE(3067)] = 105080, + [SMALL_STATE(3068)] = 105163, + [SMALL_STATE(3069)] = 105246, + [SMALL_STATE(3070)] = 105329, + [SMALL_STATE(3071)] = 105412, + [SMALL_STATE(3072)] = 105495, + [SMALL_STATE(3073)] = 105578, + [SMALL_STATE(3074)] = 105661, + [SMALL_STATE(3075)] = 105744, + [SMALL_STATE(3076)] = 105827, + [SMALL_STATE(3077)] = 105910, + [SMALL_STATE(3078)] = 105993, + [SMALL_STATE(3079)] = 106076, + [SMALL_STATE(3080)] = 106159, + [SMALL_STATE(3081)] = 106242, + [SMALL_STATE(3082)] = 106325, + [SMALL_STATE(3083)] = 106408, + [SMALL_STATE(3084)] = 106491, + [SMALL_STATE(3085)] = 106574, + [SMALL_STATE(3086)] = 106657, + [SMALL_STATE(3087)] = 106740, + [SMALL_STATE(3088)] = 106823, + [SMALL_STATE(3089)] = 106906, + [SMALL_STATE(3090)] = 106989, + [SMALL_STATE(3091)] = 107072, + [SMALL_STATE(3092)] = 107155, + [SMALL_STATE(3093)] = 107238, + [SMALL_STATE(3094)] = 107321, + [SMALL_STATE(3095)] = 107404, + [SMALL_STATE(3096)] = 107487, + [SMALL_STATE(3097)] = 107570, + [SMALL_STATE(3098)] = 107653, + [SMALL_STATE(3099)] = 107736, + [SMALL_STATE(3100)] = 107819, + [SMALL_STATE(3101)] = 107902, + [SMALL_STATE(3102)] = 107985, + [SMALL_STATE(3103)] = 108068, + [SMALL_STATE(3104)] = 108151, + [SMALL_STATE(3105)] = 108234, + [SMALL_STATE(3106)] = 108317, + [SMALL_STATE(3107)] = 108400, + [SMALL_STATE(3108)] = 108483, + [SMALL_STATE(3109)] = 108566, + [SMALL_STATE(3110)] = 108649, + [SMALL_STATE(3111)] = 108732, + [SMALL_STATE(3112)] = 108815, + [SMALL_STATE(3113)] = 108898, + [SMALL_STATE(3114)] = 108981, + [SMALL_STATE(3115)] = 109064, + [SMALL_STATE(3116)] = 109147, + [SMALL_STATE(3117)] = 109230, + [SMALL_STATE(3118)] = 109313, + [SMALL_STATE(3119)] = 109396, + [SMALL_STATE(3120)] = 109479, + [SMALL_STATE(3121)] = 109562, + [SMALL_STATE(3122)] = 109645, + [SMALL_STATE(3123)] = 109728, + [SMALL_STATE(3124)] = 109811, + [SMALL_STATE(3125)] = 109894, + [SMALL_STATE(3126)] = 109977, + [SMALL_STATE(3127)] = 110060, + [SMALL_STATE(3128)] = 110143, + [SMALL_STATE(3129)] = 110226, + [SMALL_STATE(3130)] = 110309, + [SMALL_STATE(3131)] = 110392, + [SMALL_STATE(3132)] = 110475, + [SMALL_STATE(3133)] = 110558, + [SMALL_STATE(3134)] = 110641, + [SMALL_STATE(3135)] = 110724, + [SMALL_STATE(3136)] = 110807, + [SMALL_STATE(3137)] = 110890, + [SMALL_STATE(3138)] = 110973, + [SMALL_STATE(3139)] = 111056, + [SMALL_STATE(3140)] = 111139, + [SMALL_STATE(3141)] = 111222, + [SMALL_STATE(3142)] = 111305, + [SMALL_STATE(3143)] = 111388, + [SMALL_STATE(3144)] = 111471, + [SMALL_STATE(3145)] = 111554, + [SMALL_STATE(3146)] = 111637, + [SMALL_STATE(3147)] = 111720, + [SMALL_STATE(3148)] = 111803, + [SMALL_STATE(3149)] = 111886, + [SMALL_STATE(3150)] = 111969, + [SMALL_STATE(3151)] = 112052, + [SMALL_STATE(3152)] = 112135, + [SMALL_STATE(3153)] = 112218, + [SMALL_STATE(3154)] = 112301, + [SMALL_STATE(3155)] = 112384, + [SMALL_STATE(3156)] = 112467, + [SMALL_STATE(3157)] = 112550, + [SMALL_STATE(3158)] = 112633, + [SMALL_STATE(3159)] = 112716, + [SMALL_STATE(3160)] = 112799, + [SMALL_STATE(3161)] = 112882, + [SMALL_STATE(3162)] = 112965, + [SMALL_STATE(3163)] = 113048, + [SMALL_STATE(3164)] = 113131, + [SMALL_STATE(3165)] = 113214, + [SMALL_STATE(3166)] = 113297, + [SMALL_STATE(3167)] = 113380, + [SMALL_STATE(3168)] = 113463, + [SMALL_STATE(3169)] = 113546, + [SMALL_STATE(3170)] = 113629, + [SMALL_STATE(3171)] = 113712, + [SMALL_STATE(3172)] = 113795, + [SMALL_STATE(3173)] = 113878, + [SMALL_STATE(3174)] = 113961, + [SMALL_STATE(3175)] = 114044, + [SMALL_STATE(3176)] = 114127, + [SMALL_STATE(3177)] = 114210, + [SMALL_STATE(3178)] = 114293, + [SMALL_STATE(3179)] = 114376, + [SMALL_STATE(3180)] = 114459, + [SMALL_STATE(3181)] = 114542, + [SMALL_STATE(3182)] = 114625, + [SMALL_STATE(3183)] = 114708, + [SMALL_STATE(3184)] = 114791, + [SMALL_STATE(3185)] = 114874, + [SMALL_STATE(3186)] = 114957, + [SMALL_STATE(3187)] = 115040, + [SMALL_STATE(3188)] = 115123, + [SMALL_STATE(3189)] = 115206, + [SMALL_STATE(3190)] = 115289, + [SMALL_STATE(3191)] = 115372, + [SMALL_STATE(3192)] = 115455, + [SMALL_STATE(3193)] = 115538, + [SMALL_STATE(3194)] = 115621, + [SMALL_STATE(3195)] = 115704, + [SMALL_STATE(3196)] = 115787, + [SMALL_STATE(3197)] = 115870, + [SMALL_STATE(3198)] = 115953, + [SMALL_STATE(3199)] = 116036, + [SMALL_STATE(3200)] = 116119, + [SMALL_STATE(3201)] = 116202, + [SMALL_STATE(3202)] = 116285, + [SMALL_STATE(3203)] = 116368, + [SMALL_STATE(3204)] = 116451, + [SMALL_STATE(3205)] = 116534, + [SMALL_STATE(3206)] = 116617, + [SMALL_STATE(3207)] = 116700, + [SMALL_STATE(3208)] = 116783, + [SMALL_STATE(3209)] = 116866, + [SMALL_STATE(3210)] = 116949, + [SMALL_STATE(3211)] = 117032, + [SMALL_STATE(3212)] = 117115, + [SMALL_STATE(3213)] = 117198, + [SMALL_STATE(3214)] = 117281, + [SMALL_STATE(3215)] = 117364, + [SMALL_STATE(3216)] = 117447, + [SMALL_STATE(3217)] = 117530, + [SMALL_STATE(3218)] = 117613, + [SMALL_STATE(3219)] = 117696, + [SMALL_STATE(3220)] = 117779, + [SMALL_STATE(3221)] = 117862, + [SMALL_STATE(3222)] = 117945, + [SMALL_STATE(3223)] = 118028, + [SMALL_STATE(3224)] = 118111, + [SMALL_STATE(3225)] = 118194, + [SMALL_STATE(3226)] = 118277, + [SMALL_STATE(3227)] = 118360, + [SMALL_STATE(3228)] = 118443, + [SMALL_STATE(3229)] = 118526, + [SMALL_STATE(3230)] = 118609, + [SMALL_STATE(3231)] = 118692, + [SMALL_STATE(3232)] = 118775, + [SMALL_STATE(3233)] = 118843, + [SMALL_STATE(3234)] = 118911, + [SMALL_STATE(3235)] = 118979, + [SMALL_STATE(3236)] = 119047, + [SMALL_STATE(3237)] = 119115, + [SMALL_STATE(3238)] = 119183, + [SMALL_STATE(3239)] = 119251, + [SMALL_STATE(3240)] = 119325, + [SMALL_STATE(3241)] = 119399, + [SMALL_STATE(3242)] = 119467, + [SMALL_STATE(3243)] = 119535, + [SMALL_STATE(3244)] = 119603, + [SMALL_STATE(3245)] = 119671, + [SMALL_STATE(3246)] = 119739, + [SMALL_STATE(3247)] = 119807, + [SMALL_STATE(3248)] = 119875, + [SMALL_STATE(3249)] = 119944, + [SMALL_STATE(3250)] = 119981, + [SMALL_STATE(3251)] = 120018, + [SMALL_STATE(3252)] = 120055, + [SMALL_STATE(3253)] = 120092, + [SMALL_STATE(3254)] = 120129, + [SMALL_STATE(3255)] = 120166, + [SMALL_STATE(3256)] = 120199, + [SMALL_STATE(3257)] = 120232, + [SMALL_STATE(3258)] = 120265, + [SMALL_STATE(3259)] = 120312, + [SMALL_STATE(3260)] = 120359, + [SMALL_STATE(3261)] = 120392, + [SMALL_STATE(3262)] = 120443, + [SMALL_STATE(3263)] = 120476, + [SMALL_STATE(3264)] = 120523, + [SMALL_STATE(3265)] = 120557, + [SMALL_STATE(3266)] = 120587, + [SMALL_STATE(3267)] = 120623, + [SMALL_STATE(3268)] = 120653, + [SMALL_STATE(3269)] = 120687, + [SMALL_STATE(3270)] = 120717, + [SMALL_STATE(3271)] = 120750, + [SMALL_STATE(3272)] = 120783, + [SMALL_STATE(3273)] = 120814, + [SMALL_STATE(3274)] = 120845, + [SMALL_STATE(3275)] = 120878, + [SMALL_STATE(3276)] = 120911, + [SMALL_STATE(3277)] = 120944, + [SMALL_STATE(3278)] = 120977, + [SMALL_STATE(3279)] = 121010, + [SMALL_STATE(3280)] = 121042, + [SMALL_STATE(3281)] = 121090, + [SMALL_STATE(3282)] = 121120, + [SMALL_STATE(3283)] = 121166, + [SMALL_STATE(3284)] = 121196, + [SMALL_STATE(3285)] = 121244, + [SMALL_STATE(3286)] = 121291, + [SMALL_STATE(3287)] = 121338, + [SMALL_STATE(3288)] = 121385, + [SMALL_STATE(3289)] = 121432, + [SMALL_STATE(3290)] = 121479, + [SMALL_STATE(3291)] = 121526, + [SMALL_STATE(3292)] = 121573, + [SMALL_STATE(3293)] = 121620, + [SMALL_STATE(3294)] = 121655, + [SMALL_STATE(3295)] = 121690, + [SMALL_STATE(3296)] = 121737, + [SMALL_STATE(3297)] = 121784, + [SMALL_STATE(3298)] = 121831, + [SMALL_STATE(3299)] = 121866, + [SMALL_STATE(3300)] = 121913, + [SMALL_STATE(3301)] = 121960, + [SMALL_STATE(3302)] = 121995, + [SMALL_STATE(3303)] = 122042, + [SMALL_STATE(3304)] = 122089, + [SMALL_STATE(3305)] = 122136, + [SMALL_STATE(3306)] = 122167, + [SMALL_STATE(3307)] = 122196, + [SMALL_STATE(3308)] = 122231, + [SMALL_STATE(3309)] = 122266, + [SMALL_STATE(3310)] = 122295, + [SMALL_STATE(3311)] = 122340, + [SMALL_STATE(3312)] = 122387, + [SMALL_STATE(3313)] = 122422, + [SMALL_STATE(3314)] = 122469, + [SMALL_STATE(3315)] = 122516, + [SMALL_STATE(3316)] = 122551, + [SMALL_STATE(3317)] = 122598, + [SMALL_STATE(3318)] = 122645, + [SMALL_STATE(3319)] = 122692, + [SMALL_STATE(3320)] = 122721, + [SMALL_STATE(3321)] = 122768, + [SMALL_STATE(3322)] = 122799, + [SMALL_STATE(3323)] = 122846, + [SMALL_STATE(3324)] = 122875, + [SMALL_STATE(3325)] = 122922, + [SMALL_STATE(3326)] = 122951, + [SMALL_STATE(3327)] = 122998, + [SMALL_STATE(3328)] = 123027, + [SMALL_STATE(3329)] = 123074, + [SMALL_STATE(3330)] = 123121, + [SMALL_STATE(3331)] = 123150, + [SMALL_STATE(3332)] = 123182, + [SMALL_STATE(3333)] = 123208, + [SMALL_STATE(3334)] = 123234, + [SMALL_STATE(3335)] = 123260, + [SMALL_STATE(3336)] = 123290, + [SMALL_STATE(3337)] = 123317, + [SMALL_STATE(3338)] = 123348, + [SMALL_STATE(3339)] = 123375, + [SMALL_STATE(3340)] = 123399, + [SMALL_STATE(3341)] = 123423, + [SMALL_STATE(3342)] = 123447, + [SMALL_STATE(3343)] = 123471, + [SMALL_STATE(3344)] = 123499, + [SMALL_STATE(3345)] = 123523, + [SMALL_STATE(3346)] = 123547, + [SMALL_STATE(3347)] = 123577, + [SMALL_STATE(3348)] = 123601, + [SMALL_STATE(3349)] = 123625, + [SMALL_STATE(3350)] = 123649, + [SMALL_STATE(3351)] = 123673, + [SMALL_STATE(3352)] = 123697, + [SMALL_STATE(3353)] = 123721, + [SMALL_STATE(3354)] = 123745, + [SMALL_STATE(3355)] = 123769, + [SMALL_STATE(3356)] = 123793, + [SMALL_STATE(3357)] = 123821, + [SMALL_STATE(3358)] = 123845, + [SMALL_STATE(3359)] = 123869, + [SMALL_STATE(3360)] = 123893, + [SMALL_STATE(3361)] = 123917, + [SMALL_STATE(3362)] = 123941, + [SMALL_STATE(3363)] = 123965, + [SMALL_STATE(3364)] = 123989, + [SMALL_STATE(3365)] = 124018, + [SMALL_STATE(3366)] = 124045, + [SMALL_STATE(3367)] = 124084, + [SMALL_STATE(3368)] = 124118, + [SMALL_STATE(3369)] = 124140, + [SMALL_STATE(3370)] = 124174, + [SMALL_STATE(3371)] = 124200, + [SMALL_STATE(3372)] = 124224, + [SMALL_STATE(3373)] = 124252, + [SMALL_STATE(3374)] = 124286, + [SMALL_STATE(3375)] = 124322, + [SMALL_STATE(3376)] = 124350, + [SMALL_STATE(3377)] = 124384, + [SMALL_STATE(3378)] = 124418, + [SMALL_STATE(3379)] = 124452, + [SMALL_STATE(3380)] = 124486, + [SMALL_STATE(3381)] = 124520, + [SMALL_STATE(3382)] = 124554, + [SMALL_STATE(3383)] = 124588, + [SMALL_STATE(3384)] = 124622, + [SMALL_STATE(3385)] = 124656, + [SMALL_STATE(3386)] = 124677, + [SMALL_STATE(3387)] = 124698, + [SMALL_STATE(3388)] = 124721, + [SMALL_STATE(3389)] = 124746, + [SMALL_STATE(3390)] = 124769, + [SMALL_STATE(3391)] = 124792, + [SMALL_STATE(3392)] = 124813, + [SMALL_STATE(3393)] = 124834, + [SMALL_STATE(3394)] = 124863, + [SMALL_STATE(3395)] = 124884, + [SMALL_STATE(3396)] = 124907, + [SMALL_STATE(3397)] = 124928, + [SMALL_STATE(3398)] = 124963, + [SMALL_STATE(3399)] = 124988, + [SMALL_STATE(3400)] = 125009, + [SMALL_STATE(3401)] = 125030, + [SMALL_STATE(3402)] = 125051, + [SMALL_STATE(3403)] = 125079, + [SMALL_STATE(3404)] = 125107, + [SMALL_STATE(3405)] = 125135, + [SMALL_STATE(3406)] = 125155, + [SMALL_STATE(3407)] = 125183, + [SMALL_STATE(3408)] = 125211, + [SMALL_STATE(3409)] = 125243, + [SMALL_STATE(3410)] = 125271, + [SMALL_STATE(3411)] = 125299, + [SMALL_STATE(3412)] = 125327, + [SMALL_STATE(3413)] = 125355, + [SMALL_STATE(3414)] = 125385, + [SMALL_STATE(3415)] = 125413, + [SMALL_STATE(3416)] = 125441, + [SMALL_STATE(3417)] = 125469, + [SMALL_STATE(3418)] = 125497, + [SMALL_STATE(3419)] = 125525, + [SMALL_STATE(3420)] = 125553, + [SMALL_STATE(3421)] = 125581, + [SMALL_STATE(3422)] = 125609, + [SMALL_STATE(3423)] = 125641, + [SMALL_STATE(3424)] = 125669, + [SMALL_STATE(3425)] = 125697, + [SMALL_STATE(3426)] = 125725, + [SMALL_STATE(3427)] = 125753, + [SMALL_STATE(3428)] = 125781, + [SMALL_STATE(3429)] = 125805, + [SMALL_STATE(3430)] = 125825, + [SMALL_STATE(3431)] = 125853, + [SMALL_STATE(3432)] = 125883, + [SMALL_STATE(3433)] = 125911, + [SMALL_STATE(3434)] = 125939, + [SMALL_STATE(3435)] = 125959, + [SMALL_STATE(3436)] = 125988, + [SMALL_STATE(3437)] = 126017, + [SMALL_STATE(3438)] = 126040, + [SMALL_STATE(3439)] = 126063, + [SMALL_STATE(3440)] = 126092, + [SMALL_STATE(3441)] = 126121, + [SMALL_STATE(3442)] = 126150, + [SMALL_STATE(3443)] = 126179, + [SMALL_STATE(3444)] = 126208, + [SMALL_STATE(3445)] = 126237, + [SMALL_STATE(3446)] = 126260, + [SMALL_STATE(3447)] = 126289, + [SMALL_STATE(3448)] = 126318, + [SMALL_STATE(3449)] = 126347, + [SMALL_STATE(3450)] = 126368, + [SMALL_STATE(3451)] = 126397, + [SMALL_STATE(3452)] = 126426, + [SMALL_STATE(3453)] = 126455, + [SMALL_STATE(3454)] = 126484, + [SMALL_STATE(3455)] = 126513, + [SMALL_STATE(3456)] = 126542, + [SMALL_STATE(3457)] = 126571, + [SMALL_STATE(3458)] = 126600, + [SMALL_STATE(3459)] = 126629, + [SMALL_STATE(3460)] = 126658, + [SMALL_STATE(3461)] = 126681, + [SMALL_STATE(3462)] = 126710, + [SMALL_STATE(3463)] = 126739, + [SMALL_STATE(3464)] = 126768, + [SMALL_STATE(3465)] = 126797, + [SMALL_STATE(3466)] = 126826, + [SMALL_STATE(3467)] = 126855, + [SMALL_STATE(3468)] = 126884, [SMALL_STATE(3469)] = 126907, [SMALL_STATE(3470)] = 126936, - [SMALL_STATE(3471)] = 126959, - [SMALL_STATE(3472)] = 126988, - [SMALL_STATE(3473)] = 127017, - [SMALL_STATE(3474)] = 127046, - [SMALL_STATE(3475)] = 127075, - [SMALL_STATE(3476)] = 127104, - [SMALL_STATE(3477)] = 127133, - [SMALL_STATE(3478)] = 127162, - [SMALL_STATE(3479)] = 127191, - [SMALL_STATE(3480)] = 127220, - [SMALL_STATE(3481)] = 127249, - [SMALL_STATE(3482)] = 127278, - [SMALL_STATE(3483)] = 127307, - [SMALL_STATE(3484)] = 127336, - [SMALL_STATE(3485)] = 127365, - [SMALL_STATE(3486)] = 127394, - [SMALL_STATE(3487)] = 127423, - [SMALL_STATE(3488)] = 127452, - [SMALL_STATE(3489)] = 127481, - [SMALL_STATE(3490)] = 127510, - [SMALL_STATE(3491)] = 127539, - [SMALL_STATE(3492)] = 127568, - [SMALL_STATE(3493)] = 127597, - [SMALL_STATE(3494)] = 127626, - [SMALL_STATE(3495)] = 127649, - [SMALL_STATE(3496)] = 127678, - [SMALL_STATE(3497)] = 127707, - [SMALL_STATE(3498)] = 127736, - [SMALL_STATE(3499)] = 127757, - [SMALL_STATE(3500)] = 127778, - [SMALL_STATE(3501)] = 127807, - [SMALL_STATE(3502)] = 127836, - [SMALL_STATE(3503)] = 127865, - [SMALL_STATE(3504)] = 127894, - [SMALL_STATE(3505)] = 127923, - [SMALL_STATE(3506)] = 127952, - [SMALL_STATE(3507)] = 127981, - [SMALL_STATE(3508)] = 128010, - [SMALL_STATE(3509)] = 128039, - [SMALL_STATE(3510)] = 128068, - [SMALL_STATE(3511)] = 128091, - [SMALL_STATE(3512)] = 128120, - [SMALL_STATE(3513)] = 128149, - [SMALL_STATE(3514)] = 128178, - [SMALL_STATE(3515)] = 128201, - [SMALL_STATE(3516)] = 128230, - [SMALL_STATE(3517)] = 128259, - [SMALL_STATE(3518)] = 128282, - [SMALL_STATE(3519)] = 128311, - [SMALL_STATE(3520)] = 128340, - [SMALL_STATE(3521)] = 128369, - [SMALL_STATE(3522)] = 128398, - [SMALL_STATE(3523)] = 128427, - [SMALL_STATE(3524)] = 128456, - [SMALL_STATE(3525)] = 128485, - [SMALL_STATE(3526)] = 128514, - [SMALL_STATE(3527)] = 128535, - [SMALL_STATE(3528)] = 128558, - [SMALL_STATE(3529)] = 128587, - [SMALL_STATE(3530)] = 128616, - [SMALL_STATE(3531)] = 128645, - [SMALL_STATE(3532)] = 128668, - [SMALL_STATE(3533)] = 128697, - [SMALL_STATE(3534)] = 128726, - [SMALL_STATE(3535)] = 128755, - [SMALL_STATE(3536)] = 128784, - [SMALL_STATE(3537)] = 128813, - [SMALL_STATE(3538)] = 128842, - [SMALL_STATE(3539)] = 128871, - [SMALL_STATE(3540)] = 128900, - [SMALL_STATE(3541)] = 128929, - [SMALL_STATE(3542)] = 128952, - [SMALL_STATE(3543)] = 128981, - [SMALL_STATE(3544)] = 129010, - [SMALL_STATE(3545)] = 129039, - [SMALL_STATE(3546)] = 129063, - [SMALL_STATE(3547)] = 129081, - [SMALL_STATE(3548)] = 129105, - [SMALL_STATE(3549)] = 129123, - [SMALL_STATE(3550)] = 129145, - [SMALL_STATE(3551)] = 129169, - [SMALL_STATE(3552)] = 129193, - [SMALL_STATE(3553)] = 129219, - [SMALL_STATE(3554)] = 129245, - [SMALL_STATE(3555)] = 129263, - [SMALL_STATE(3556)] = 129283, - [SMALL_STATE(3557)] = 129307, - [SMALL_STATE(3558)] = 129333, - [SMALL_STATE(3559)] = 129353, - [SMALL_STATE(3560)] = 129375, - [SMALL_STATE(3561)] = 129395, - [SMALL_STATE(3562)] = 129421, - [SMALL_STATE(3563)] = 129445, - [SMALL_STATE(3564)] = 129469, - [SMALL_STATE(3565)] = 129487, - [SMALL_STATE(3566)] = 129509, - [SMALL_STATE(3567)] = 129529, - [SMALL_STATE(3568)] = 129553, - [SMALL_STATE(3569)] = 129575, - [SMALL_STATE(3570)] = 129595, - [SMALL_STATE(3571)] = 129621, - [SMALL_STATE(3572)] = 129639, - [SMALL_STATE(3573)] = 129661, - [SMALL_STATE(3574)] = 129683, - [SMALL_STATE(3575)] = 129709, - [SMALL_STATE(3576)] = 129727, - [SMALL_STATE(3577)] = 129747, - [SMALL_STATE(3578)] = 129768, - [SMALL_STATE(3579)] = 129785, - [SMALL_STATE(3580)] = 129808, - [SMALL_STATE(3581)] = 129825, - [SMALL_STATE(3582)] = 129846, - [SMALL_STATE(3583)] = 129863, - [SMALL_STATE(3584)] = 129884, - [SMALL_STATE(3585)] = 129901, - [SMALL_STATE(3586)] = 129918, - [SMALL_STATE(3587)] = 129941, - [SMALL_STATE(3588)] = 129964, - [SMALL_STATE(3589)] = 129985, - [SMALL_STATE(3590)] = 130006, - [SMALL_STATE(3591)] = 130025, - [SMALL_STATE(3592)] = 130044, - [SMALL_STATE(3593)] = 130061, - [SMALL_STATE(3594)] = 130084, - [SMALL_STATE(3595)] = 130105, - [SMALL_STATE(3596)] = 130122, - [SMALL_STATE(3597)] = 130139, - [SMALL_STATE(3598)] = 130162, - [SMALL_STATE(3599)] = 130183, - [SMALL_STATE(3600)] = 130206, - [SMALL_STATE(3601)] = 130227, - [SMALL_STATE(3602)] = 130248, - [SMALL_STATE(3603)] = 130269, - [SMALL_STATE(3604)] = 130290, - [SMALL_STATE(3605)] = 130307, - [SMALL_STATE(3606)] = 130328, - [SMALL_STATE(3607)] = 130349, - [SMALL_STATE(3608)] = 130372, - [SMALL_STATE(3609)] = 130393, - [SMALL_STATE(3610)] = 130410, - [SMALL_STATE(3611)] = 130431, - [SMALL_STATE(3612)] = 130448, - [SMALL_STATE(3613)] = 130471, - [SMALL_STATE(3614)] = 130494, - [SMALL_STATE(3615)] = 130517, - [SMALL_STATE(3616)] = 130540, - [SMALL_STATE(3617)] = 130561, - [SMALL_STATE(3618)] = 130582, - [SMALL_STATE(3619)] = 130599, - [SMALL_STATE(3620)] = 130620, - [SMALL_STATE(3621)] = 130641, - [SMALL_STATE(3622)] = 130658, - [SMALL_STATE(3623)] = 130679, - [SMALL_STATE(3624)] = 130696, - [SMALL_STATE(3625)] = 130719, - [SMALL_STATE(3626)] = 130740, - [SMALL_STATE(3627)] = 130761, - [SMALL_STATE(3628)] = 130782, - [SMALL_STATE(3629)] = 130801, - [SMALL_STATE(3630)] = 130822, - [SMALL_STATE(3631)] = 130843, - [SMALL_STATE(3632)] = 130864, - [SMALL_STATE(3633)] = 130881, - [SMALL_STATE(3634)] = 130902, - [SMALL_STATE(3635)] = 130923, - [SMALL_STATE(3636)] = 130944, - [SMALL_STATE(3637)] = 130967, - [SMALL_STATE(3638)] = 130988, - [SMALL_STATE(3639)] = 131011, - [SMALL_STATE(3640)] = 131028, - [SMALL_STATE(3641)] = 131045, - [SMALL_STATE(3642)] = 131066, - [SMALL_STATE(3643)] = 131087, - [SMALL_STATE(3644)] = 131110, - [SMALL_STATE(3645)] = 131131, - [SMALL_STATE(3646)] = 131152, - [SMALL_STATE(3647)] = 131173, - [SMALL_STATE(3648)] = 131196, - [SMALL_STATE(3649)] = 131219, - [SMALL_STATE(3650)] = 131240, - [SMALL_STATE(3651)] = 131263, - [SMALL_STATE(3652)] = 131286, - [SMALL_STATE(3653)] = 131307, - [SMALL_STATE(3654)] = 131328, - [SMALL_STATE(3655)] = 131347, - [SMALL_STATE(3656)] = 131364, - [SMALL_STATE(3657)] = 131387, - [SMALL_STATE(3658)] = 131408, - [SMALL_STATE(3659)] = 131429, - [SMALL_STATE(3660)] = 131450, - [SMALL_STATE(3661)] = 131471, - [SMALL_STATE(3662)] = 131492, - [SMALL_STATE(3663)] = 131515, - [SMALL_STATE(3664)] = 131536, - [SMALL_STATE(3665)] = 131557, - [SMALL_STATE(3666)] = 131578, - [SMALL_STATE(3667)] = 131599, - [SMALL_STATE(3668)] = 131622, - [SMALL_STATE(3669)] = 131643, - [SMALL_STATE(3670)] = 131664, - [SMALL_STATE(3671)] = 131685, - [SMALL_STATE(3672)] = 131702, - [SMALL_STATE(3673)] = 131721, - [SMALL_STATE(3674)] = 131738, - [SMALL_STATE(3675)] = 131759, - [SMALL_STATE(3676)] = 131780, - [SMALL_STATE(3677)] = 131801, - [SMALL_STATE(3678)] = 131822, - [SMALL_STATE(3679)] = 131839, - [SMALL_STATE(3680)] = 131856, - [SMALL_STATE(3681)] = 131877, - [SMALL_STATE(3682)] = 131898, - [SMALL_STATE(3683)] = 131917, - [SMALL_STATE(3684)] = 131938, - [SMALL_STATE(3685)] = 131959, - [SMALL_STATE(3686)] = 131980, - [SMALL_STATE(3687)] = 132001, - [SMALL_STATE(3688)] = 132022, - [SMALL_STATE(3689)] = 132043, - [SMALL_STATE(3690)] = 132060, - [SMALL_STATE(3691)] = 132081, - [SMALL_STATE(3692)] = 132102, - [SMALL_STATE(3693)] = 132125, - [SMALL_STATE(3694)] = 132146, - [SMALL_STATE(3695)] = 132163, - [SMALL_STATE(3696)] = 132184, - [SMALL_STATE(3697)] = 132205, - [SMALL_STATE(3698)] = 132226, - [SMALL_STATE(3699)] = 132245, - [SMALL_STATE(3700)] = 132266, - [SMALL_STATE(3701)] = 132287, - [SMALL_STATE(3702)] = 132308, - [SMALL_STATE(3703)] = 132329, - [SMALL_STATE(3704)] = 132350, - [SMALL_STATE(3705)] = 132371, - [SMALL_STATE(3706)] = 132394, - [SMALL_STATE(3707)] = 132413, - [SMALL_STATE(3708)] = 132432, - [SMALL_STATE(3709)] = 132451, - [SMALL_STATE(3710)] = 132472, - [SMALL_STATE(3711)] = 132493, - [SMALL_STATE(3712)] = 132514, - [SMALL_STATE(3713)] = 132537, - [SMALL_STATE(3714)] = 132556, - [SMALL_STATE(3715)] = 132577, - [SMALL_STATE(3716)] = 132598, - [SMALL_STATE(3717)] = 132619, - [SMALL_STATE(3718)] = 132640, - [SMALL_STATE(3719)] = 132661, - [SMALL_STATE(3720)] = 132684, - [SMALL_STATE(3721)] = 132705, - [SMALL_STATE(3722)] = 132724, - [SMALL_STATE(3723)] = 132745, - [SMALL_STATE(3724)] = 132762, - [SMALL_STATE(3725)] = 132783, - [SMALL_STATE(3726)] = 132804, - [SMALL_STATE(3727)] = 132825, - [SMALL_STATE(3728)] = 132846, - [SMALL_STATE(3729)] = 132867, - [SMALL_STATE(3730)] = 132888, - [SMALL_STATE(3731)] = 132911, - [SMALL_STATE(3732)] = 132930, - [SMALL_STATE(3733)] = 132953, - [SMALL_STATE(3734)] = 132974, - [SMALL_STATE(3735)] = 132995, - [SMALL_STATE(3736)] = 133016, - [SMALL_STATE(3737)] = 133037, - [SMALL_STATE(3738)] = 133058, - [SMALL_STATE(3739)] = 133079, - [SMALL_STATE(3740)] = 133100, - [SMALL_STATE(3741)] = 133123, - [SMALL_STATE(3742)] = 133146, - [SMALL_STATE(3743)] = 133167, - [SMALL_STATE(3744)] = 133190, - [SMALL_STATE(3745)] = 133207, - [SMALL_STATE(3746)] = 133228, - [SMALL_STATE(3747)] = 133251, - [SMALL_STATE(3748)] = 133272, - [SMALL_STATE(3749)] = 133293, - [SMALL_STATE(3750)] = 133312, - [SMALL_STATE(3751)] = 133333, - [SMALL_STATE(3752)] = 133356, - [SMALL_STATE(3753)] = 133379, - [SMALL_STATE(3754)] = 133399, - [SMALL_STATE(3755)] = 133419, - [SMALL_STATE(3756)] = 133439, - [SMALL_STATE(3757)] = 133459, - [SMALL_STATE(3758)] = 133475, - [SMALL_STATE(3759)] = 133495, - [SMALL_STATE(3760)] = 133515, - [SMALL_STATE(3761)] = 133535, - [SMALL_STATE(3762)] = 133555, - [SMALL_STATE(3763)] = 133575, - [SMALL_STATE(3764)] = 133595, - [SMALL_STATE(3765)] = 133615, - [SMALL_STATE(3766)] = 133635, - [SMALL_STATE(3767)] = 133655, - [SMALL_STATE(3768)] = 133675, - [SMALL_STATE(3769)] = 133695, - [SMALL_STATE(3770)] = 133715, - [SMALL_STATE(3771)] = 133735, - [SMALL_STATE(3772)] = 133755, - [SMALL_STATE(3773)] = 133775, - [SMALL_STATE(3774)] = 133795, - [SMALL_STATE(3775)] = 133815, - [SMALL_STATE(3776)] = 133835, - [SMALL_STATE(3777)] = 133855, - [SMALL_STATE(3778)] = 133875, - [SMALL_STATE(3779)] = 133895, - [SMALL_STATE(3780)] = 133915, - [SMALL_STATE(3781)] = 133935, - [SMALL_STATE(3782)] = 133955, - [SMALL_STATE(3783)] = 133975, - [SMALL_STATE(3784)] = 133995, - [SMALL_STATE(3785)] = 134013, - [SMALL_STATE(3786)] = 134033, - [SMALL_STATE(3787)] = 134053, - [SMALL_STATE(3788)] = 134073, - [SMALL_STATE(3789)] = 134089, - [SMALL_STATE(3790)] = 134109, - [SMALL_STATE(3791)] = 134129, - [SMALL_STATE(3792)] = 134147, - [SMALL_STATE(3793)] = 134167, - [SMALL_STATE(3794)] = 134187, - [SMALL_STATE(3795)] = 134205, - [SMALL_STATE(3796)] = 134225, - [SMALL_STATE(3797)] = 134245, - [SMALL_STATE(3798)] = 134265, - [SMALL_STATE(3799)] = 134285, - [SMALL_STATE(3800)] = 134305, - [SMALL_STATE(3801)] = 134325, - [SMALL_STATE(3802)] = 134343, - [SMALL_STATE(3803)] = 134363, - [SMALL_STATE(3804)] = 134383, - [SMALL_STATE(3805)] = 134403, - [SMALL_STATE(3806)] = 134423, - [SMALL_STATE(3807)] = 134439, - [SMALL_STATE(3808)] = 134455, - [SMALL_STATE(3809)] = 134475, - [SMALL_STATE(3810)] = 134495, - [SMALL_STATE(3811)] = 134515, - [SMALL_STATE(3812)] = 134535, - [SMALL_STATE(3813)] = 134555, - [SMALL_STATE(3814)] = 134575, - [SMALL_STATE(3815)] = 134595, - [SMALL_STATE(3816)] = 134615, - [SMALL_STATE(3817)] = 134635, - [SMALL_STATE(3818)] = 134655, - [SMALL_STATE(3819)] = 134675, - [SMALL_STATE(3820)] = 134695, - [SMALL_STATE(3821)] = 134715, - [SMALL_STATE(3822)] = 134735, - [SMALL_STATE(3823)] = 134753, - [SMALL_STATE(3824)] = 134773, - [SMALL_STATE(3825)] = 134793, - [SMALL_STATE(3826)] = 134813, - [SMALL_STATE(3827)] = 134831, - [SMALL_STATE(3828)] = 134851, - [SMALL_STATE(3829)] = 134871, - [SMALL_STATE(3830)] = 134891, - [SMALL_STATE(3831)] = 134911, - [SMALL_STATE(3832)] = 134931, - [SMALL_STATE(3833)] = 134947, - [SMALL_STATE(3834)] = 134967, - [SMALL_STATE(3835)] = 134983, - [SMALL_STATE(3836)] = 135003, - [SMALL_STATE(3837)] = 135023, - [SMALL_STATE(3838)] = 135041, - [SMALL_STATE(3839)] = 135061, - [SMALL_STATE(3840)] = 135081, - [SMALL_STATE(3841)] = 135101, - [SMALL_STATE(3842)] = 135121, - [SMALL_STATE(3843)] = 135137, - [SMALL_STATE(3844)] = 135157, - [SMALL_STATE(3845)] = 135177, - [SMALL_STATE(3846)] = 135193, - [SMALL_STATE(3847)] = 135213, - [SMALL_STATE(3848)] = 135233, - [SMALL_STATE(3849)] = 135253, - [SMALL_STATE(3850)] = 135273, - [SMALL_STATE(3851)] = 135293, - [SMALL_STATE(3852)] = 135313, - [SMALL_STATE(3853)] = 135329, - [SMALL_STATE(3854)] = 135349, - [SMALL_STATE(3855)] = 135369, - [SMALL_STATE(3856)] = 135389, - [SMALL_STATE(3857)] = 135409, - [SMALL_STATE(3858)] = 135429, - [SMALL_STATE(3859)] = 135447, - [SMALL_STATE(3860)] = 135467, - [SMALL_STATE(3861)] = 135487, - [SMALL_STATE(3862)] = 135507, - [SMALL_STATE(3863)] = 135527, - [SMALL_STATE(3864)] = 135547, - [SMALL_STATE(3865)] = 135567, - [SMALL_STATE(3866)] = 135587, - [SMALL_STATE(3867)] = 135605, - [SMALL_STATE(3868)] = 135625, - [SMALL_STATE(3869)] = 135643, - [SMALL_STATE(3870)] = 135663, - [SMALL_STATE(3871)] = 135683, - [SMALL_STATE(3872)] = 135703, - [SMALL_STATE(3873)] = 135723, - [SMALL_STATE(3874)] = 135743, - [SMALL_STATE(3875)] = 135763, - [SMALL_STATE(3876)] = 135783, - [SMALL_STATE(3877)] = 135803, - [SMALL_STATE(3878)] = 135821, - [SMALL_STATE(3879)] = 135841, - [SMALL_STATE(3880)] = 135861, - [SMALL_STATE(3881)] = 135881, - [SMALL_STATE(3882)] = 135901, - [SMALL_STATE(3883)] = 135919, - [SMALL_STATE(3884)] = 135939, - [SMALL_STATE(3885)] = 135959, - [SMALL_STATE(3886)] = 135979, - [SMALL_STATE(3887)] = 135999, - [SMALL_STATE(3888)] = 136019, - [SMALL_STATE(3889)] = 136039, - [SMALL_STATE(3890)] = 136059, - [SMALL_STATE(3891)] = 136075, - [SMALL_STATE(3892)] = 136095, - [SMALL_STATE(3893)] = 136113, - [SMALL_STATE(3894)] = 136133, - [SMALL_STATE(3895)] = 136153, - [SMALL_STATE(3896)] = 136169, - [SMALL_STATE(3897)] = 136189, - [SMALL_STATE(3898)] = 136209, - [SMALL_STATE(3899)] = 136229, - [SMALL_STATE(3900)] = 136249, - [SMALL_STATE(3901)] = 136269, - [SMALL_STATE(3902)] = 136289, - [SMALL_STATE(3903)] = 136309, - [SMALL_STATE(3904)] = 136329, - [SMALL_STATE(3905)] = 136349, - [SMALL_STATE(3906)] = 136369, - [SMALL_STATE(3907)] = 136389, - [SMALL_STATE(3908)] = 136409, - [SMALL_STATE(3909)] = 136425, - [SMALL_STATE(3910)] = 136445, - [SMALL_STATE(3911)] = 136465, - [SMALL_STATE(3912)] = 136485, - [SMALL_STATE(3913)] = 136505, - [SMALL_STATE(3914)] = 136525, - [SMALL_STATE(3915)] = 136543, - [SMALL_STATE(3916)] = 136563, - [SMALL_STATE(3917)] = 136583, - [SMALL_STATE(3918)] = 136603, - [SMALL_STATE(3919)] = 136623, - [SMALL_STATE(3920)] = 136643, - [SMALL_STATE(3921)] = 136659, - [SMALL_STATE(3922)] = 136679, - [SMALL_STATE(3923)] = 136699, - [SMALL_STATE(3924)] = 136719, - [SMALL_STATE(3925)] = 136739, - [SMALL_STATE(3926)] = 136759, - [SMALL_STATE(3927)] = 136777, - [SMALL_STATE(3928)] = 136797, - [SMALL_STATE(3929)] = 136817, - [SMALL_STATE(3930)] = 136837, - [SMALL_STATE(3931)] = 136857, - [SMALL_STATE(3932)] = 136877, - [SMALL_STATE(3933)] = 136897, - [SMALL_STATE(3934)] = 136915, - [SMALL_STATE(3935)] = 136935, - [SMALL_STATE(3936)] = 136955, - [SMALL_STATE(3937)] = 136973, - [SMALL_STATE(3938)] = 136993, - [SMALL_STATE(3939)] = 137013, - [SMALL_STATE(3940)] = 137031, - [SMALL_STATE(3941)] = 137051, - [SMALL_STATE(3942)] = 137069, - [SMALL_STATE(3943)] = 137087, - [SMALL_STATE(3944)] = 137107, - [SMALL_STATE(3945)] = 137127, - [SMALL_STATE(3946)] = 137147, - [SMALL_STATE(3947)] = 137167, - [SMALL_STATE(3948)] = 137187, - [SMALL_STATE(3949)] = 137207, - [SMALL_STATE(3950)] = 137227, - [SMALL_STATE(3951)] = 137247, - [SMALL_STATE(3952)] = 137267, - [SMALL_STATE(3953)] = 137287, - [SMALL_STATE(3954)] = 137307, - [SMALL_STATE(3955)] = 137327, - [SMALL_STATE(3956)] = 137347, - [SMALL_STATE(3957)] = 137367, - [SMALL_STATE(3958)] = 137387, - [SMALL_STATE(3959)] = 137407, - [SMALL_STATE(3960)] = 137427, - [SMALL_STATE(3961)] = 137447, - [SMALL_STATE(3962)] = 137467, - [SMALL_STATE(3963)] = 137487, - [SMALL_STATE(3964)] = 137507, - [SMALL_STATE(3965)] = 137527, - [SMALL_STATE(3966)] = 137547, - [SMALL_STATE(3967)] = 137567, - [SMALL_STATE(3968)] = 137587, - [SMALL_STATE(3969)] = 137607, - [SMALL_STATE(3970)] = 137627, - [SMALL_STATE(3971)] = 137643, - [SMALL_STATE(3972)] = 137663, - [SMALL_STATE(3973)] = 137683, - [SMALL_STATE(3974)] = 137703, - [SMALL_STATE(3975)] = 137719, - [SMALL_STATE(3976)] = 137739, - [SMALL_STATE(3977)] = 137755, - [SMALL_STATE(3978)] = 137775, - [SMALL_STATE(3979)] = 137795, - [SMALL_STATE(3980)] = 137815, - [SMALL_STATE(3981)] = 137835, - [SMALL_STATE(3982)] = 137855, - [SMALL_STATE(3983)] = 137875, - [SMALL_STATE(3984)] = 137895, - [SMALL_STATE(3985)] = 137915, - [SMALL_STATE(3986)] = 137935, - [SMALL_STATE(3987)] = 137955, - [SMALL_STATE(3988)] = 137975, - [SMALL_STATE(3989)] = 137995, - [SMALL_STATE(3990)] = 138015, - [SMALL_STATE(3991)] = 138035, - [SMALL_STATE(3992)] = 138055, - [SMALL_STATE(3993)] = 138075, - [SMALL_STATE(3994)] = 138095, - [SMALL_STATE(3995)] = 138115, - [SMALL_STATE(3996)] = 138135, - [SMALL_STATE(3997)] = 138155, - [SMALL_STATE(3998)] = 138172, - [SMALL_STATE(3999)] = 138189, - [SMALL_STATE(4000)] = 138206, - [SMALL_STATE(4001)] = 138223, - [SMALL_STATE(4002)] = 138240, - [SMALL_STATE(4003)] = 138257, - [SMALL_STATE(4004)] = 138272, - [SMALL_STATE(4005)] = 138289, - [SMALL_STATE(4006)] = 138306, - [SMALL_STATE(4007)] = 138323, - [SMALL_STATE(4008)] = 138340, - [SMALL_STATE(4009)] = 138357, - [SMALL_STATE(4010)] = 138374, - [SMALL_STATE(4011)] = 138391, - [SMALL_STATE(4012)] = 138406, - [SMALL_STATE(4013)] = 138423, - [SMALL_STATE(4014)] = 138440, - [SMALL_STATE(4015)] = 138457, - [SMALL_STATE(4016)] = 138474, - [SMALL_STATE(4017)] = 138489, - [SMALL_STATE(4018)] = 138506, - [SMALL_STATE(4019)] = 138523, - [SMALL_STATE(4020)] = 138540, - [SMALL_STATE(4021)] = 138557, - [SMALL_STATE(4022)] = 138574, - [SMALL_STATE(4023)] = 138591, - [SMALL_STATE(4024)] = 138608, - [SMALL_STATE(4025)] = 138625, - [SMALL_STATE(4026)] = 138642, - [SMALL_STATE(4027)] = 138657, - [SMALL_STATE(4028)] = 138674, - [SMALL_STATE(4029)] = 138691, - [SMALL_STATE(4030)] = 138708, - [SMALL_STATE(4031)] = 138725, - [SMALL_STATE(4032)] = 138742, - [SMALL_STATE(4033)] = 138759, - [SMALL_STATE(4034)] = 138776, - [SMALL_STATE(4035)] = 138793, - [SMALL_STATE(4036)] = 138810, - [SMALL_STATE(4037)] = 138827, - [SMALL_STATE(4038)] = 138844, - [SMALL_STATE(4039)] = 138861, - [SMALL_STATE(4040)] = 138878, - [SMALL_STATE(4041)] = 138895, - [SMALL_STATE(4042)] = 138912, - [SMALL_STATE(4043)] = 138929, - [SMALL_STATE(4044)] = 138946, - [SMALL_STATE(4045)] = 138963, - [SMALL_STATE(4046)] = 138980, - [SMALL_STATE(4047)] = 138997, - [SMALL_STATE(4048)] = 139014, - [SMALL_STATE(4049)] = 139031, - [SMALL_STATE(4050)] = 139048, - [SMALL_STATE(4051)] = 139065, - [SMALL_STATE(4052)] = 139082, - [SMALL_STATE(4053)] = 139099, - [SMALL_STATE(4054)] = 139116, - [SMALL_STATE(4055)] = 139133, - [SMALL_STATE(4056)] = 139150, - [SMALL_STATE(4057)] = 139167, - [SMALL_STATE(4058)] = 139184, - [SMALL_STATE(4059)] = 139201, - [SMALL_STATE(4060)] = 139216, - [SMALL_STATE(4061)] = 139233, - [SMALL_STATE(4062)] = 139250, - [SMALL_STATE(4063)] = 139267, - [SMALL_STATE(4064)] = 139282, - [SMALL_STATE(4065)] = 139299, - [SMALL_STATE(4066)] = 139316, - [SMALL_STATE(4067)] = 139333, - [SMALL_STATE(4068)] = 139350, - [SMALL_STATE(4069)] = 139367, - [SMALL_STATE(4070)] = 139384, - [SMALL_STATE(4071)] = 139401, - [SMALL_STATE(4072)] = 139418, - [SMALL_STATE(4073)] = 139435, - [SMALL_STATE(4074)] = 139452, - [SMALL_STATE(4075)] = 139469, - [SMALL_STATE(4076)] = 139486, - [SMALL_STATE(4077)] = 139503, - [SMALL_STATE(4078)] = 139520, - [SMALL_STATE(4079)] = 139535, - [SMALL_STATE(4080)] = 139552, - [SMALL_STATE(4081)] = 139569, - [SMALL_STATE(4082)] = 139586, - [SMALL_STATE(4083)] = 139601, - [SMALL_STATE(4084)] = 139618, - [SMALL_STATE(4085)] = 139635, - [SMALL_STATE(4086)] = 139652, - [SMALL_STATE(4087)] = 139669, - [SMALL_STATE(4088)] = 139686, - [SMALL_STATE(4089)] = 139703, - [SMALL_STATE(4090)] = 139720, - [SMALL_STATE(4091)] = 139737, - [SMALL_STATE(4092)] = 139754, - [SMALL_STATE(4093)] = 139771, - [SMALL_STATE(4094)] = 139788, - [SMALL_STATE(4095)] = 139805, - [SMALL_STATE(4096)] = 139822, - [SMALL_STATE(4097)] = 139839, - [SMALL_STATE(4098)] = 139856, - [SMALL_STATE(4099)] = 139873, - [SMALL_STATE(4100)] = 139890, - [SMALL_STATE(4101)] = 139907, - [SMALL_STATE(4102)] = 139924, - [SMALL_STATE(4103)] = 139941, - [SMALL_STATE(4104)] = 139958, - [SMALL_STATE(4105)] = 139975, - [SMALL_STATE(4106)] = 139992, - [SMALL_STATE(4107)] = 140009, - [SMALL_STATE(4108)] = 140026, - [SMALL_STATE(4109)] = 140043, - [SMALL_STATE(4110)] = 140060, - [SMALL_STATE(4111)] = 140077, - [SMALL_STATE(4112)] = 140094, - [SMALL_STATE(4113)] = 140111, - [SMALL_STATE(4114)] = 140128, - [SMALL_STATE(4115)] = 140145, - [SMALL_STATE(4116)] = 140162, - [SMALL_STATE(4117)] = 140179, - [SMALL_STATE(4118)] = 140196, - [SMALL_STATE(4119)] = 140213, - [SMALL_STATE(4120)] = 140230, - [SMALL_STATE(4121)] = 140245, - [SMALL_STATE(4122)] = 140262, - [SMALL_STATE(4123)] = 140279, - [SMALL_STATE(4124)] = 140296, - [SMALL_STATE(4125)] = 140313, - [SMALL_STATE(4126)] = 140330, - [SMALL_STATE(4127)] = 140347, - [SMALL_STATE(4128)] = 140364, - [SMALL_STATE(4129)] = 140381, - [SMALL_STATE(4130)] = 140398, - [SMALL_STATE(4131)] = 140415, - [SMALL_STATE(4132)] = 140432, - [SMALL_STATE(4133)] = 140449, - [SMALL_STATE(4134)] = 140466, - [SMALL_STATE(4135)] = 140481, - [SMALL_STATE(4136)] = 140498, - [SMALL_STATE(4137)] = 140515, - [SMALL_STATE(4138)] = 140530, - [SMALL_STATE(4139)] = 140547, - [SMALL_STATE(4140)] = 140564, - [SMALL_STATE(4141)] = 140581, - [SMALL_STATE(4142)] = 140598, - [SMALL_STATE(4143)] = 140615, - [SMALL_STATE(4144)] = 140632, - [SMALL_STATE(4145)] = 140649, - [SMALL_STATE(4146)] = 140666, - [SMALL_STATE(4147)] = 140683, - [SMALL_STATE(4148)] = 140700, - [SMALL_STATE(4149)] = 140717, - [SMALL_STATE(4150)] = 140732, - [SMALL_STATE(4151)] = 140747, - [SMALL_STATE(4152)] = 140764, - [SMALL_STATE(4153)] = 140779, - [SMALL_STATE(4154)] = 140794, - [SMALL_STATE(4155)] = 140811, - [SMALL_STATE(4156)] = 140828, - [SMALL_STATE(4157)] = 140843, - [SMALL_STATE(4158)] = 140860, - [SMALL_STATE(4159)] = 140877, - [SMALL_STATE(4160)] = 140894, - [SMALL_STATE(4161)] = 140911, - [SMALL_STATE(4162)] = 140928, - [SMALL_STATE(4163)] = 140945, - [SMALL_STATE(4164)] = 140962, - [SMALL_STATE(4165)] = 140979, - [SMALL_STATE(4166)] = 140996, - [SMALL_STATE(4167)] = 141013, - [SMALL_STATE(4168)] = 141030, - [SMALL_STATE(4169)] = 141047, - [SMALL_STATE(4170)] = 141064, - [SMALL_STATE(4171)] = 141081, - [SMALL_STATE(4172)] = 141098, - [SMALL_STATE(4173)] = 141115, - [SMALL_STATE(4174)] = 141130, - [SMALL_STATE(4175)] = 141147, - [SMALL_STATE(4176)] = 141164, - [SMALL_STATE(4177)] = 141181, - [SMALL_STATE(4178)] = 141198, - [SMALL_STATE(4179)] = 141215, - [SMALL_STATE(4180)] = 141232, - [SMALL_STATE(4181)] = 141249, - [SMALL_STATE(4182)] = 141266, - [SMALL_STATE(4183)] = 141283, - [SMALL_STATE(4184)] = 141300, - [SMALL_STATE(4185)] = 141315, - [SMALL_STATE(4186)] = 141332, - [SMALL_STATE(4187)] = 141349, - [SMALL_STATE(4188)] = 141366, - [SMALL_STATE(4189)] = 141383, - [SMALL_STATE(4190)] = 141400, - [SMALL_STATE(4191)] = 141417, - [SMALL_STATE(4192)] = 141434, - [SMALL_STATE(4193)] = 141451, - [SMALL_STATE(4194)] = 141468, - [SMALL_STATE(4195)] = 141485, - [SMALL_STATE(4196)] = 141502, - [SMALL_STATE(4197)] = 141519, - [SMALL_STATE(4198)] = 141536, - [SMALL_STATE(4199)] = 141553, - [SMALL_STATE(4200)] = 141570, - [SMALL_STATE(4201)] = 141587, - [SMALL_STATE(4202)] = 141604, - [SMALL_STATE(4203)] = 141621, - [SMALL_STATE(4204)] = 141638, - [SMALL_STATE(4205)] = 141655, - [SMALL_STATE(4206)] = 141672, - [SMALL_STATE(4207)] = 141689, - [SMALL_STATE(4208)] = 141706, - [SMALL_STATE(4209)] = 141723, - [SMALL_STATE(4210)] = 141740, - [SMALL_STATE(4211)] = 141757, - [SMALL_STATE(4212)] = 141774, - [SMALL_STATE(4213)] = 141791, - [SMALL_STATE(4214)] = 141808, - [SMALL_STATE(4215)] = 141825, - [SMALL_STATE(4216)] = 141842, - [SMALL_STATE(4217)] = 141859, - [SMALL_STATE(4218)] = 141876, - [SMALL_STATE(4219)] = 141893, - [SMALL_STATE(4220)] = 141910, - [SMALL_STATE(4221)] = 141927, - [SMALL_STATE(4222)] = 141944, - [SMALL_STATE(4223)] = 141961, - [SMALL_STATE(4224)] = 141978, - [SMALL_STATE(4225)] = 141995, - [SMALL_STATE(4226)] = 142012, - [SMALL_STATE(4227)] = 142027, - [SMALL_STATE(4228)] = 142042, - [SMALL_STATE(4229)] = 142059, - [SMALL_STATE(4230)] = 142076, - [SMALL_STATE(4231)] = 142093, - [SMALL_STATE(4232)] = 142110, - [SMALL_STATE(4233)] = 142127, - [SMALL_STATE(4234)] = 142142, - [SMALL_STATE(4235)] = 142159, - [SMALL_STATE(4236)] = 142176, - [SMALL_STATE(4237)] = 142193, - [SMALL_STATE(4238)] = 142210, - [SMALL_STATE(4239)] = 142227, - [SMALL_STATE(4240)] = 142244, - [SMALL_STATE(4241)] = 142261, - [SMALL_STATE(4242)] = 142278, - [SMALL_STATE(4243)] = 142295, - [SMALL_STATE(4244)] = 142310, - [SMALL_STATE(4245)] = 142325, - [SMALL_STATE(4246)] = 142342, - [SMALL_STATE(4247)] = 142359, - [SMALL_STATE(4248)] = 142376, - [SMALL_STATE(4249)] = 142391, - [SMALL_STATE(4250)] = 142408, - [SMALL_STATE(4251)] = 142423, - [SMALL_STATE(4252)] = 142440, - [SMALL_STATE(4253)] = 142455, - [SMALL_STATE(4254)] = 142472, - [SMALL_STATE(4255)] = 142489, - [SMALL_STATE(4256)] = 142506, - [SMALL_STATE(4257)] = 142521, - [SMALL_STATE(4258)] = 142538, - [SMALL_STATE(4259)] = 142555, - [SMALL_STATE(4260)] = 142572, - [SMALL_STATE(4261)] = 142589, - [SMALL_STATE(4262)] = 142606, - [SMALL_STATE(4263)] = 142623, - [SMALL_STATE(4264)] = 142640, - [SMALL_STATE(4265)] = 142657, - [SMALL_STATE(4266)] = 142672, - [SMALL_STATE(4267)] = 142689, - [SMALL_STATE(4268)] = 142706, - [SMALL_STATE(4269)] = 142723, - [SMALL_STATE(4270)] = 142738, - [SMALL_STATE(4271)] = 142755, - [SMALL_STATE(4272)] = 142772, - [SMALL_STATE(4273)] = 142789, - [SMALL_STATE(4274)] = 142806, - [SMALL_STATE(4275)] = 142823, - [SMALL_STATE(4276)] = 142840, - [SMALL_STATE(4277)] = 142857, - [SMALL_STATE(4278)] = 142874, - [SMALL_STATE(4279)] = 142891, - [SMALL_STATE(4280)] = 142908, - [SMALL_STATE(4281)] = 142925, - [SMALL_STATE(4282)] = 142942, - [SMALL_STATE(4283)] = 142959, - [SMALL_STATE(4284)] = 142976, - [SMALL_STATE(4285)] = 142993, - [SMALL_STATE(4286)] = 143010, - [SMALL_STATE(4287)] = 143027, - [SMALL_STATE(4288)] = 143044, - [SMALL_STATE(4289)] = 143061, - [SMALL_STATE(4290)] = 143078, - [SMALL_STATE(4291)] = 143095, - [SMALL_STATE(4292)] = 143112, - [SMALL_STATE(4293)] = 143127, - [SMALL_STATE(4294)] = 143144, - [SMALL_STATE(4295)] = 143161, - [SMALL_STATE(4296)] = 143178, - [SMALL_STATE(4297)] = 143195, - [SMALL_STATE(4298)] = 143212, - [SMALL_STATE(4299)] = 143227, - [SMALL_STATE(4300)] = 143244, - [SMALL_STATE(4301)] = 143259, - [SMALL_STATE(4302)] = 143276, - [SMALL_STATE(4303)] = 143293, - [SMALL_STATE(4304)] = 143310, - [SMALL_STATE(4305)] = 143327, - [SMALL_STATE(4306)] = 143344, - [SMALL_STATE(4307)] = 143361, - [SMALL_STATE(4308)] = 143378, - [SMALL_STATE(4309)] = 143395, - [SMALL_STATE(4310)] = 143412, - [SMALL_STATE(4311)] = 143429, - [SMALL_STATE(4312)] = 143446, - [SMALL_STATE(4313)] = 143463, - [SMALL_STATE(4314)] = 143478, - [SMALL_STATE(4315)] = 143495, - [SMALL_STATE(4316)] = 143512, - [SMALL_STATE(4317)] = 143529, - [SMALL_STATE(4318)] = 143543, - [SMALL_STATE(4319)] = 143557, - [SMALL_STATE(4320)] = 143571, - [SMALL_STATE(4321)] = 143585, - [SMALL_STATE(4322)] = 143599, - [SMALL_STATE(4323)] = 143613, - [SMALL_STATE(4324)] = 143627, - [SMALL_STATE(4325)] = 143641, - [SMALL_STATE(4326)] = 143655, - [SMALL_STATE(4327)] = 143669, - [SMALL_STATE(4328)] = 143683, - [SMALL_STATE(4329)] = 143697, - [SMALL_STATE(4330)] = 143711, - [SMALL_STATE(4331)] = 143725, - [SMALL_STATE(4332)] = 143739, - [SMALL_STATE(4333)] = 143753, - [SMALL_STATE(4334)] = 143767, - [SMALL_STATE(4335)] = 143781, - [SMALL_STATE(4336)] = 143795, - [SMALL_STATE(4337)] = 143809, - [SMALL_STATE(4338)] = 143823, - [SMALL_STATE(4339)] = 143837, - [SMALL_STATE(4340)] = 143851, - [SMALL_STATE(4341)] = 143865, - [SMALL_STATE(4342)] = 143879, - [SMALL_STATE(4343)] = 143893, - [SMALL_STATE(4344)] = 143907, - [SMALL_STATE(4345)] = 143921, - [SMALL_STATE(4346)] = 143935, - [SMALL_STATE(4347)] = 143949, - [SMALL_STATE(4348)] = 143963, - [SMALL_STATE(4349)] = 143977, - [SMALL_STATE(4350)] = 143991, - [SMALL_STATE(4351)] = 144005, - [SMALL_STATE(4352)] = 144019, - [SMALL_STATE(4353)] = 144033, - [SMALL_STATE(4354)] = 144047, - [SMALL_STATE(4355)] = 144061, - [SMALL_STATE(4356)] = 144075, - [SMALL_STATE(4357)] = 144089, - [SMALL_STATE(4358)] = 144103, - [SMALL_STATE(4359)] = 144117, - [SMALL_STATE(4360)] = 144131, - [SMALL_STATE(4361)] = 144145, - [SMALL_STATE(4362)] = 144159, - [SMALL_STATE(4363)] = 144173, - [SMALL_STATE(4364)] = 144187, - [SMALL_STATE(4365)] = 144201, - [SMALL_STATE(4366)] = 144215, - [SMALL_STATE(4367)] = 144229, - [SMALL_STATE(4368)] = 144243, - [SMALL_STATE(4369)] = 144257, - [SMALL_STATE(4370)] = 144271, - [SMALL_STATE(4371)] = 144285, - [SMALL_STATE(4372)] = 144299, - [SMALL_STATE(4373)] = 144313, - [SMALL_STATE(4374)] = 144327, - [SMALL_STATE(4375)] = 144341, - [SMALL_STATE(4376)] = 144355, - [SMALL_STATE(4377)] = 144369, - [SMALL_STATE(4378)] = 144383, - [SMALL_STATE(4379)] = 144397, - [SMALL_STATE(4380)] = 144411, - [SMALL_STATE(4381)] = 144425, - [SMALL_STATE(4382)] = 144439, - [SMALL_STATE(4383)] = 144453, - [SMALL_STATE(4384)] = 144467, - [SMALL_STATE(4385)] = 144481, - [SMALL_STATE(4386)] = 144495, - [SMALL_STATE(4387)] = 144509, - [SMALL_STATE(4388)] = 144523, - [SMALL_STATE(4389)] = 144537, - [SMALL_STATE(4390)] = 144551, - [SMALL_STATE(4391)] = 144565, - [SMALL_STATE(4392)] = 144579, - [SMALL_STATE(4393)] = 144593, - [SMALL_STATE(4394)] = 144607, - [SMALL_STATE(4395)] = 144621, - [SMALL_STATE(4396)] = 144635, - [SMALL_STATE(4397)] = 144649, - [SMALL_STATE(4398)] = 144663, - [SMALL_STATE(4399)] = 144677, - [SMALL_STATE(4400)] = 144691, - [SMALL_STATE(4401)] = 144705, - [SMALL_STATE(4402)] = 144719, - [SMALL_STATE(4403)] = 144733, - [SMALL_STATE(4404)] = 144747, - [SMALL_STATE(4405)] = 144761, - [SMALL_STATE(4406)] = 144775, - [SMALL_STATE(4407)] = 144789, - [SMALL_STATE(4408)] = 144803, - [SMALL_STATE(4409)] = 144817, - [SMALL_STATE(4410)] = 144831, - [SMALL_STATE(4411)] = 144845, - [SMALL_STATE(4412)] = 144859, - [SMALL_STATE(4413)] = 144873, - [SMALL_STATE(4414)] = 144887, - [SMALL_STATE(4415)] = 144901, - [SMALL_STATE(4416)] = 144915, - [SMALL_STATE(4417)] = 144929, - [SMALL_STATE(4418)] = 144943, - [SMALL_STATE(4419)] = 144957, - [SMALL_STATE(4420)] = 144971, - [SMALL_STATE(4421)] = 144985, - [SMALL_STATE(4422)] = 144999, - [SMALL_STATE(4423)] = 145013, - [SMALL_STATE(4424)] = 145027, - [SMALL_STATE(4425)] = 145041, - [SMALL_STATE(4426)] = 145055, - [SMALL_STATE(4427)] = 145069, - [SMALL_STATE(4428)] = 145083, - [SMALL_STATE(4429)] = 145097, - [SMALL_STATE(4430)] = 145111, - [SMALL_STATE(4431)] = 145125, - [SMALL_STATE(4432)] = 145139, - [SMALL_STATE(4433)] = 145153, - [SMALL_STATE(4434)] = 145167, - [SMALL_STATE(4435)] = 145181, - [SMALL_STATE(4436)] = 145195, - [SMALL_STATE(4437)] = 145209, - [SMALL_STATE(4438)] = 145223, - [SMALL_STATE(4439)] = 145237, - [SMALL_STATE(4440)] = 145251, - [SMALL_STATE(4441)] = 145265, - [SMALL_STATE(4442)] = 145279, - [SMALL_STATE(4443)] = 145293, - [SMALL_STATE(4444)] = 145307, - [SMALL_STATE(4445)] = 145321, - [SMALL_STATE(4446)] = 145335, - [SMALL_STATE(4447)] = 145349, - [SMALL_STATE(4448)] = 145363, - [SMALL_STATE(4449)] = 145377, - [SMALL_STATE(4450)] = 145391, - [SMALL_STATE(4451)] = 145405, - [SMALL_STATE(4452)] = 145419, - [SMALL_STATE(4453)] = 145433, - [SMALL_STATE(4454)] = 145447, - [SMALL_STATE(4455)] = 145461, - [SMALL_STATE(4456)] = 145475, - [SMALL_STATE(4457)] = 145489, - [SMALL_STATE(4458)] = 145503, - [SMALL_STATE(4459)] = 145517, - [SMALL_STATE(4460)] = 145531, - [SMALL_STATE(4461)] = 145545, - [SMALL_STATE(4462)] = 145559, - [SMALL_STATE(4463)] = 145573, - [SMALL_STATE(4464)] = 145587, - [SMALL_STATE(4465)] = 145601, - [SMALL_STATE(4466)] = 145615, - [SMALL_STATE(4467)] = 145629, - [SMALL_STATE(4468)] = 145643, - [SMALL_STATE(4469)] = 145657, - [SMALL_STATE(4470)] = 145671, - [SMALL_STATE(4471)] = 145685, - [SMALL_STATE(4472)] = 145699, - [SMALL_STATE(4473)] = 145713, - [SMALL_STATE(4474)] = 145727, - [SMALL_STATE(4475)] = 145741, - [SMALL_STATE(4476)] = 145755, - [SMALL_STATE(4477)] = 145769, - [SMALL_STATE(4478)] = 145783, - [SMALL_STATE(4479)] = 145797, - [SMALL_STATE(4480)] = 145811, - [SMALL_STATE(4481)] = 145825, - [SMALL_STATE(4482)] = 145839, - [SMALL_STATE(4483)] = 145853, - [SMALL_STATE(4484)] = 145867, - [SMALL_STATE(4485)] = 145881, - [SMALL_STATE(4486)] = 145895, - [SMALL_STATE(4487)] = 145909, - [SMALL_STATE(4488)] = 145923, - [SMALL_STATE(4489)] = 145937, - [SMALL_STATE(4490)] = 145951, - [SMALL_STATE(4491)] = 145965, - [SMALL_STATE(4492)] = 145979, - [SMALL_STATE(4493)] = 145993, - [SMALL_STATE(4494)] = 146007, - [SMALL_STATE(4495)] = 146021, - [SMALL_STATE(4496)] = 146035, - [SMALL_STATE(4497)] = 146049, - [SMALL_STATE(4498)] = 146063, - [SMALL_STATE(4499)] = 146077, - [SMALL_STATE(4500)] = 146091, - [SMALL_STATE(4501)] = 146105, - [SMALL_STATE(4502)] = 146119, - [SMALL_STATE(4503)] = 146133, - [SMALL_STATE(4504)] = 146147, - [SMALL_STATE(4505)] = 146161, - [SMALL_STATE(4506)] = 146175, - [SMALL_STATE(4507)] = 146189, - [SMALL_STATE(4508)] = 146203, - [SMALL_STATE(4509)] = 146217, - [SMALL_STATE(4510)] = 146231, - [SMALL_STATE(4511)] = 146245, - [SMALL_STATE(4512)] = 146259, - [SMALL_STATE(4513)] = 146273, - [SMALL_STATE(4514)] = 146287, - [SMALL_STATE(4515)] = 146301, - [SMALL_STATE(4516)] = 146315, - [SMALL_STATE(4517)] = 146329, - [SMALL_STATE(4518)] = 146343, - [SMALL_STATE(4519)] = 146357, - [SMALL_STATE(4520)] = 146371, - [SMALL_STATE(4521)] = 146385, - [SMALL_STATE(4522)] = 146399, - [SMALL_STATE(4523)] = 146413, - [SMALL_STATE(4524)] = 146427, - [SMALL_STATE(4525)] = 146441, - [SMALL_STATE(4526)] = 146455, - [SMALL_STATE(4527)] = 146469, - [SMALL_STATE(4528)] = 146483, - [SMALL_STATE(4529)] = 146497, - [SMALL_STATE(4530)] = 146511, - [SMALL_STATE(4531)] = 146525, - [SMALL_STATE(4532)] = 146539, - [SMALL_STATE(4533)] = 146553, - [SMALL_STATE(4534)] = 146567, - [SMALL_STATE(4535)] = 146581, - [SMALL_STATE(4536)] = 146595, - [SMALL_STATE(4537)] = 146609, - [SMALL_STATE(4538)] = 146623, - [SMALL_STATE(4539)] = 146637, - [SMALL_STATE(4540)] = 146651, - [SMALL_STATE(4541)] = 146665, - [SMALL_STATE(4542)] = 146679, - [SMALL_STATE(4543)] = 146693, - [SMALL_STATE(4544)] = 146707, - [SMALL_STATE(4545)] = 146721, - [SMALL_STATE(4546)] = 146735, - [SMALL_STATE(4547)] = 146749, - [SMALL_STATE(4548)] = 146763, - [SMALL_STATE(4549)] = 146777, - [SMALL_STATE(4550)] = 146791, - [SMALL_STATE(4551)] = 146805, - [SMALL_STATE(4552)] = 146819, - [SMALL_STATE(4553)] = 146833, - [SMALL_STATE(4554)] = 146847, - [SMALL_STATE(4555)] = 146861, - [SMALL_STATE(4556)] = 146875, - [SMALL_STATE(4557)] = 146889, - [SMALL_STATE(4558)] = 146903, - [SMALL_STATE(4559)] = 146917, - [SMALL_STATE(4560)] = 146931, - [SMALL_STATE(4561)] = 146945, - [SMALL_STATE(4562)] = 146959, - [SMALL_STATE(4563)] = 146973, - [SMALL_STATE(4564)] = 146987, - [SMALL_STATE(4565)] = 147001, - [SMALL_STATE(4566)] = 147015, - [SMALL_STATE(4567)] = 147029, - [SMALL_STATE(4568)] = 147043, - [SMALL_STATE(4569)] = 147057, - [SMALL_STATE(4570)] = 147071, - [SMALL_STATE(4571)] = 147085, - [SMALL_STATE(4572)] = 147099, - [SMALL_STATE(4573)] = 147113, - [SMALL_STATE(4574)] = 147127, - [SMALL_STATE(4575)] = 147141, - [SMALL_STATE(4576)] = 147155, - [SMALL_STATE(4577)] = 147169, - [SMALL_STATE(4578)] = 147183, - [SMALL_STATE(4579)] = 147197, - [SMALL_STATE(4580)] = 147211, - [SMALL_STATE(4581)] = 147225, - [SMALL_STATE(4582)] = 147239, - [SMALL_STATE(4583)] = 147253, - [SMALL_STATE(4584)] = 147267, - [SMALL_STATE(4585)] = 147281, - [SMALL_STATE(4586)] = 147295, - [SMALL_STATE(4587)] = 147309, - [SMALL_STATE(4588)] = 147323, - [SMALL_STATE(4589)] = 147337, - [SMALL_STATE(4590)] = 147351, - [SMALL_STATE(4591)] = 147365, - [SMALL_STATE(4592)] = 147379, - [SMALL_STATE(4593)] = 147393, - [SMALL_STATE(4594)] = 147407, - [SMALL_STATE(4595)] = 147421, - [SMALL_STATE(4596)] = 147435, - [SMALL_STATE(4597)] = 147449, - [SMALL_STATE(4598)] = 147463, - [SMALL_STATE(4599)] = 147477, - [SMALL_STATE(4600)] = 147491, - [SMALL_STATE(4601)] = 147505, - [SMALL_STATE(4602)] = 147519, - [SMALL_STATE(4603)] = 147533, - [SMALL_STATE(4604)] = 147547, - [SMALL_STATE(4605)] = 147561, - [SMALL_STATE(4606)] = 147575, - [SMALL_STATE(4607)] = 147589, - [SMALL_STATE(4608)] = 147603, - [SMALL_STATE(4609)] = 147617, - [SMALL_STATE(4610)] = 147631, - [SMALL_STATE(4611)] = 147645, - [SMALL_STATE(4612)] = 147659, - [SMALL_STATE(4613)] = 147673, - [SMALL_STATE(4614)] = 147687, - [SMALL_STATE(4615)] = 147701, - [SMALL_STATE(4616)] = 147715, - [SMALL_STATE(4617)] = 147729, - [SMALL_STATE(4618)] = 147743, - [SMALL_STATE(4619)] = 147757, - [SMALL_STATE(4620)] = 147771, - [SMALL_STATE(4621)] = 147785, - [SMALL_STATE(4622)] = 147799, - [SMALL_STATE(4623)] = 147813, - [SMALL_STATE(4624)] = 147827, - [SMALL_STATE(4625)] = 147841, - [SMALL_STATE(4626)] = 147855, - [SMALL_STATE(4627)] = 147869, - [SMALL_STATE(4628)] = 147883, - [SMALL_STATE(4629)] = 147897, - [SMALL_STATE(4630)] = 147911, - [SMALL_STATE(4631)] = 147925, - [SMALL_STATE(4632)] = 147939, - [SMALL_STATE(4633)] = 147953, - [SMALL_STATE(4634)] = 147967, - [SMALL_STATE(4635)] = 147981, - [SMALL_STATE(4636)] = 147995, - [SMALL_STATE(4637)] = 148009, - [SMALL_STATE(4638)] = 148023, - [SMALL_STATE(4639)] = 148037, - [SMALL_STATE(4640)] = 148051, - [SMALL_STATE(4641)] = 148065, - [SMALL_STATE(4642)] = 148079, - [SMALL_STATE(4643)] = 148093, - [SMALL_STATE(4644)] = 148107, - [SMALL_STATE(4645)] = 148121, - [SMALL_STATE(4646)] = 148125, - [SMALL_STATE(4647)] = 148129, + [SMALL_STATE(3471)] = 126965, + [SMALL_STATE(3472)] = 126994, + [SMALL_STATE(3473)] = 127023, + [SMALL_STATE(3474)] = 127052, + [SMALL_STATE(3475)] = 127081, + [SMALL_STATE(3476)] = 127110, + [SMALL_STATE(3477)] = 127139, + [SMALL_STATE(3478)] = 127168, + [SMALL_STATE(3479)] = 127197, + [SMALL_STATE(3480)] = 127226, + [SMALL_STATE(3481)] = 127255, + [SMALL_STATE(3482)] = 127282, + [SMALL_STATE(3483)] = 127309, + [SMALL_STATE(3484)] = 127330, + [SMALL_STATE(3485)] = 127359, + [SMALL_STATE(3486)] = 127382, + [SMALL_STATE(3487)] = 127411, + [SMALL_STATE(3488)] = 127440, + [SMALL_STATE(3489)] = 127469, + [SMALL_STATE(3490)] = 127490, + [SMALL_STATE(3491)] = 127519, + [SMALL_STATE(3492)] = 127548, + [SMALL_STATE(3493)] = 127577, + [SMALL_STATE(3494)] = 127606, + [SMALL_STATE(3495)] = 127635, + [SMALL_STATE(3496)] = 127664, + [SMALL_STATE(3497)] = 127693, + [SMALL_STATE(3498)] = 127722, + [SMALL_STATE(3499)] = 127751, + [SMALL_STATE(3500)] = 127780, + [SMALL_STATE(3501)] = 127809, + [SMALL_STATE(3502)] = 127838, + [SMALL_STATE(3503)] = 127867, + [SMALL_STATE(3504)] = 127896, + [SMALL_STATE(3505)] = 127925, + [SMALL_STATE(3506)] = 127954, + [SMALL_STATE(3507)] = 127983, + [SMALL_STATE(3508)] = 128012, + [SMALL_STATE(3509)] = 128041, + [SMALL_STATE(3510)] = 128070, + [SMALL_STATE(3511)] = 128099, + [SMALL_STATE(3512)] = 128122, + [SMALL_STATE(3513)] = 128151, + [SMALL_STATE(3514)] = 128180, + [SMALL_STATE(3515)] = 128209, + [SMALL_STATE(3516)] = 128238, + [SMALL_STATE(3517)] = 128267, + [SMALL_STATE(3518)] = 128296, + [SMALL_STATE(3519)] = 128325, + [SMALL_STATE(3520)] = 128354, + [SMALL_STATE(3521)] = 128383, + [SMALL_STATE(3522)] = 128412, + [SMALL_STATE(3523)] = 128441, + [SMALL_STATE(3524)] = 128470, + [SMALL_STATE(3525)] = 128493, + [SMALL_STATE(3526)] = 128522, + [SMALL_STATE(3527)] = 128551, + [SMALL_STATE(3528)] = 128580, + [SMALL_STATE(3529)] = 128609, + [SMALL_STATE(3530)] = 128638, + [SMALL_STATE(3531)] = 128667, + [SMALL_STATE(3532)] = 128696, + [SMALL_STATE(3533)] = 128725, + [SMALL_STATE(3534)] = 128754, + [SMALL_STATE(3535)] = 128783, + [SMALL_STATE(3536)] = 128812, + [SMALL_STATE(3537)] = 128841, + [SMALL_STATE(3538)] = 128870, + [SMALL_STATE(3539)] = 128899, + [SMALL_STATE(3540)] = 128928, + [SMALL_STATE(3541)] = 128957, + [SMALL_STATE(3542)] = 128986, + [SMALL_STATE(3543)] = 129015, + [SMALL_STATE(3544)] = 129038, + [SMALL_STATE(3545)] = 129067, + [SMALL_STATE(3546)] = 129096, + [SMALL_STATE(3547)] = 129125, + [SMALL_STATE(3548)] = 129152, + [SMALL_STATE(3549)] = 129174, + [SMALL_STATE(3550)] = 129192, + [SMALL_STATE(3551)] = 129212, + [SMALL_STATE(3552)] = 129238, + [SMALL_STATE(3553)] = 129262, + [SMALL_STATE(3554)] = 129286, + [SMALL_STATE(3555)] = 129308, + [SMALL_STATE(3556)] = 129330, + [SMALL_STATE(3557)] = 129352, + [SMALL_STATE(3558)] = 129372, + [SMALL_STATE(3559)] = 129394, + [SMALL_STATE(3560)] = 129414, + [SMALL_STATE(3561)] = 129432, + [SMALL_STATE(3562)] = 129456, + [SMALL_STATE(3563)] = 129480, + [SMALL_STATE(3564)] = 129500, + [SMALL_STATE(3565)] = 129526, + [SMALL_STATE(3566)] = 129552, + [SMALL_STATE(3567)] = 129574, + [SMALL_STATE(3568)] = 129592, + [SMALL_STATE(3569)] = 129612, + [SMALL_STATE(3570)] = 129638, + [SMALL_STATE(3571)] = 129662, + [SMALL_STATE(3572)] = 129686, + [SMALL_STATE(3573)] = 129704, + [SMALL_STATE(3574)] = 129728, + [SMALL_STATE(3575)] = 129754, + [SMALL_STATE(3576)] = 129780, + [SMALL_STATE(3577)] = 129798, + [SMALL_STATE(3578)] = 129818, + [SMALL_STATE(3579)] = 129836, + [SMALL_STATE(3580)] = 129860, + [SMALL_STATE(3581)] = 129881, + [SMALL_STATE(3582)] = 129902, + [SMALL_STATE(3583)] = 129923, + [SMALL_STATE(3584)] = 129944, + [SMALL_STATE(3585)] = 129965, + [SMALL_STATE(3586)] = 129986, + [SMALL_STATE(3587)] = 130007, + [SMALL_STATE(3588)] = 130030, + [SMALL_STATE(3589)] = 130051, + [SMALL_STATE(3590)] = 130072, + [SMALL_STATE(3591)] = 130093, + [SMALL_STATE(3592)] = 130116, + [SMALL_STATE(3593)] = 130137, + [SMALL_STATE(3594)] = 130156, + [SMALL_STATE(3595)] = 130173, + [SMALL_STATE(3596)] = 130194, + [SMALL_STATE(3597)] = 130217, + [SMALL_STATE(3598)] = 130238, + [SMALL_STATE(3599)] = 130259, + [SMALL_STATE(3600)] = 130276, + [SMALL_STATE(3601)] = 130297, + [SMALL_STATE(3602)] = 130316, + [SMALL_STATE(3603)] = 130337, + [SMALL_STATE(3604)] = 130360, + [SMALL_STATE(3605)] = 130381, + [SMALL_STATE(3606)] = 130402, + [SMALL_STATE(3607)] = 130423, + [SMALL_STATE(3608)] = 130444, + [SMALL_STATE(3609)] = 130465, + [SMALL_STATE(3610)] = 130486, + [SMALL_STATE(3611)] = 130507, + [SMALL_STATE(3612)] = 130526, + [SMALL_STATE(3613)] = 130549, + [SMALL_STATE(3614)] = 130572, + [SMALL_STATE(3615)] = 130595, + [SMALL_STATE(3616)] = 130616, + [SMALL_STATE(3617)] = 130637, + [SMALL_STATE(3618)] = 130654, + [SMALL_STATE(3619)] = 130675, + [SMALL_STATE(3620)] = 130696, + [SMALL_STATE(3621)] = 130715, + [SMALL_STATE(3622)] = 130734, + [SMALL_STATE(3623)] = 130755, + [SMALL_STATE(3624)] = 130772, + [SMALL_STATE(3625)] = 130793, + [SMALL_STATE(3626)] = 130810, + [SMALL_STATE(3627)] = 130827, + [SMALL_STATE(3628)] = 130850, + [SMALL_STATE(3629)] = 130871, + [SMALL_STATE(3630)] = 130892, + [SMALL_STATE(3631)] = 130913, + [SMALL_STATE(3632)] = 130934, + [SMALL_STATE(3633)] = 130957, + [SMALL_STATE(3634)] = 130978, + [SMALL_STATE(3635)] = 130999, + [SMALL_STATE(3636)] = 131020, + [SMALL_STATE(3637)] = 131043, + [SMALL_STATE(3638)] = 131064, + [SMALL_STATE(3639)] = 131085, + [SMALL_STATE(3640)] = 131104, + [SMALL_STATE(3641)] = 131125, + [SMALL_STATE(3642)] = 131146, + [SMALL_STATE(3643)] = 131163, + [SMALL_STATE(3644)] = 131184, + [SMALL_STATE(3645)] = 131205, + [SMALL_STATE(3646)] = 131226, + [SMALL_STATE(3647)] = 131247, + [SMALL_STATE(3648)] = 131266, + [SMALL_STATE(3649)] = 131283, + [SMALL_STATE(3650)] = 131300, + [SMALL_STATE(3651)] = 131321, + [SMALL_STATE(3652)] = 131342, + [SMALL_STATE(3653)] = 131363, + [SMALL_STATE(3654)] = 131380, + [SMALL_STATE(3655)] = 131401, + [SMALL_STATE(3656)] = 131418, + [SMALL_STATE(3657)] = 131441, + [SMALL_STATE(3658)] = 131462, + [SMALL_STATE(3659)] = 131485, + [SMALL_STATE(3660)] = 131508, + [SMALL_STATE(3661)] = 131531, + [SMALL_STATE(3662)] = 131550, + [SMALL_STATE(3663)] = 131573, + [SMALL_STATE(3664)] = 131594, + [SMALL_STATE(3665)] = 131615, + [SMALL_STATE(3666)] = 131638, + [SMALL_STATE(3667)] = 131659, + [SMALL_STATE(3668)] = 131678, + [SMALL_STATE(3669)] = 131695, + [SMALL_STATE(3670)] = 131716, + [SMALL_STATE(3671)] = 131737, + [SMALL_STATE(3672)] = 131754, + [SMALL_STATE(3673)] = 131771, + [SMALL_STATE(3674)] = 131792, + [SMALL_STATE(3675)] = 131813, + [SMALL_STATE(3676)] = 131834, + [SMALL_STATE(3677)] = 131855, + [SMALL_STATE(3678)] = 131872, + [SMALL_STATE(3679)] = 131893, + [SMALL_STATE(3680)] = 131914, + [SMALL_STATE(3681)] = 131933, + [SMALL_STATE(3682)] = 131950, + [SMALL_STATE(3683)] = 131969, + [SMALL_STATE(3684)] = 131992, + [SMALL_STATE(3685)] = 132009, + [SMALL_STATE(3686)] = 132030, + [SMALL_STATE(3687)] = 132051, + [SMALL_STATE(3688)] = 132068, + [SMALL_STATE(3689)] = 132085, + [SMALL_STATE(3690)] = 132102, + [SMALL_STATE(3691)] = 132121, + [SMALL_STATE(3692)] = 132142, + [SMALL_STATE(3693)] = 132163, + [SMALL_STATE(3694)] = 132186, + [SMALL_STATE(3695)] = 132203, + [SMALL_STATE(3696)] = 132226, + [SMALL_STATE(3697)] = 132247, + [SMALL_STATE(3698)] = 132264, + [SMALL_STATE(3699)] = 132285, + [SMALL_STATE(3700)] = 132308, + [SMALL_STATE(3701)] = 132331, + [SMALL_STATE(3702)] = 132352, + [SMALL_STATE(3703)] = 132369, + [SMALL_STATE(3704)] = 132390, + [SMALL_STATE(3705)] = 132413, + [SMALL_STATE(3706)] = 132434, + [SMALL_STATE(3707)] = 132455, + [SMALL_STATE(3708)] = 132476, + [SMALL_STATE(3709)] = 132499, + [SMALL_STATE(3710)] = 132520, + [SMALL_STATE(3711)] = 132541, + [SMALL_STATE(3712)] = 132560, + [SMALL_STATE(3713)] = 132581, + [SMALL_STATE(3714)] = 132604, + [SMALL_STATE(3715)] = 132625, + [SMALL_STATE(3716)] = 132646, + [SMALL_STATE(3717)] = 132669, + [SMALL_STATE(3718)] = 132690, + [SMALL_STATE(3719)] = 132711, + [SMALL_STATE(3720)] = 132732, + [SMALL_STATE(3721)] = 132753, + [SMALL_STATE(3722)] = 132776, + [SMALL_STATE(3723)] = 132793, + [SMALL_STATE(3724)] = 132814, + [SMALL_STATE(3725)] = 132835, + [SMALL_STATE(3726)] = 132856, + [SMALL_STATE(3727)] = 132877, + [SMALL_STATE(3728)] = 132898, + [SMALL_STATE(3729)] = 132919, + [SMALL_STATE(3730)] = 132936, + [SMALL_STATE(3731)] = 132959, + [SMALL_STATE(3732)] = 132982, + [SMALL_STATE(3733)] = 133003, + [SMALL_STATE(3734)] = 133024, + [SMALL_STATE(3735)] = 133045, + [SMALL_STATE(3736)] = 133068, + [SMALL_STATE(3737)] = 133089, + [SMALL_STATE(3738)] = 133110, + [SMALL_STATE(3739)] = 133133, + [SMALL_STATE(3740)] = 133154, + [SMALL_STATE(3741)] = 133175, + [SMALL_STATE(3742)] = 133198, + [SMALL_STATE(3743)] = 133217, + [SMALL_STATE(3744)] = 133238, + [SMALL_STATE(3745)] = 133255, + [SMALL_STATE(3746)] = 133276, + [SMALL_STATE(3747)] = 133299, + [SMALL_STATE(3748)] = 133322, + [SMALL_STATE(3749)] = 133343, + [SMALL_STATE(3750)] = 133364, + [SMALL_STATE(3751)] = 133387, + [SMALL_STATE(3752)] = 133408, + [SMALL_STATE(3753)] = 133429, + [SMALL_STATE(3754)] = 133450, + [SMALL_STATE(3755)] = 133471, + [SMALL_STATE(3756)] = 133492, + [SMALL_STATE(3757)] = 133512, + [SMALL_STATE(3758)] = 133532, + [SMALL_STATE(3759)] = 133552, + [SMALL_STATE(3760)] = 133572, + [SMALL_STATE(3761)] = 133592, + [SMALL_STATE(3762)] = 133608, + [SMALL_STATE(3763)] = 133628, + [SMALL_STATE(3764)] = 133648, + [SMALL_STATE(3765)] = 133668, + [SMALL_STATE(3766)] = 133688, + [SMALL_STATE(3767)] = 133708, + [SMALL_STATE(3768)] = 133728, + [SMALL_STATE(3769)] = 133748, + [SMALL_STATE(3770)] = 133768, + [SMALL_STATE(3771)] = 133788, + [SMALL_STATE(3772)] = 133808, + [SMALL_STATE(3773)] = 133824, + [SMALL_STATE(3774)] = 133842, + [SMALL_STATE(3775)] = 133862, + [SMALL_STATE(3776)] = 133878, + [SMALL_STATE(3777)] = 133898, + [SMALL_STATE(3778)] = 133916, + [SMALL_STATE(3779)] = 133936, + [SMALL_STATE(3780)] = 133954, + [SMALL_STATE(3781)] = 133974, + [SMALL_STATE(3782)] = 133994, + [SMALL_STATE(3783)] = 134014, + [SMALL_STATE(3784)] = 134034, + [SMALL_STATE(3785)] = 134054, + [SMALL_STATE(3786)] = 134074, + [SMALL_STATE(3787)] = 134092, + [SMALL_STATE(3788)] = 134112, + [SMALL_STATE(3789)] = 134132, + [SMALL_STATE(3790)] = 134148, + [SMALL_STATE(3791)] = 134168, + [SMALL_STATE(3792)] = 134188, + [SMALL_STATE(3793)] = 134208, + [SMALL_STATE(3794)] = 134228, + [SMALL_STATE(3795)] = 134248, + [SMALL_STATE(3796)] = 134268, + [SMALL_STATE(3797)] = 134288, + [SMALL_STATE(3798)] = 134308, + [SMALL_STATE(3799)] = 134328, + [SMALL_STATE(3800)] = 134348, + [SMALL_STATE(3801)] = 134368, + [SMALL_STATE(3802)] = 134388, + [SMALL_STATE(3803)] = 134406, + [SMALL_STATE(3804)] = 134426, + [SMALL_STATE(3805)] = 134446, + [SMALL_STATE(3806)] = 134466, + [SMALL_STATE(3807)] = 134486, + [SMALL_STATE(3808)] = 134504, + [SMALL_STATE(3809)] = 134524, + [SMALL_STATE(3810)] = 134544, + [SMALL_STATE(3811)] = 134562, + [SMALL_STATE(3812)] = 134578, + [SMALL_STATE(3813)] = 134598, + [SMALL_STATE(3814)] = 134618, + [SMALL_STATE(3815)] = 134638, + [SMALL_STATE(3816)] = 134658, + [SMALL_STATE(3817)] = 134678, + [SMALL_STATE(3818)] = 134694, + [SMALL_STATE(3819)] = 134714, + [SMALL_STATE(3820)] = 134734, + [SMALL_STATE(3821)] = 134754, + [SMALL_STATE(3822)] = 134774, + [SMALL_STATE(3823)] = 134794, + [SMALL_STATE(3824)] = 134814, + [SMALL_STATE(3825)] = 134834, + [SMALL_STATE(3826)] = 134854, + [SMALL_STATE(3827)] = 134874, + [SMALL_STATE(3828)] = 134894, + [SMALL_STATE(3829)] = 134914, + [SMALL_STATE(3830)] = 134934, + [SMALL_STATE(3831)] = 134954, + [SMALL_STATE(3832)] = 134974, + [SMALL_STATE(3833)] = 134994, + [SMALL_STATE(3834)] = 135014, + [SMALL_STATE(3835)] = 135034, + [SMALL_STATE(3836)] = 135054, + [SMALL_STATE(3837)] = 135074, + [SMALL_STATE(3838)] = 135094, + [SMALL_STATE(3839)] = 135114, + [SMALL_STATE(3840)] = 135134, + [SMALL_STATE(3841)] = 135154, + [SMALL_STATE(3842)] = 135174, + [SMALL_STATE(3843)] = 135194, + [SMALL_STATE(3844)] = 135214, + [SMALL_STATE(3845)] = 135234, + [SMALL_STATE(3846)] = 135250, + [SMALL_STATE(3847)] = 135268, + [SMALL_STATE(3848)] = 135288, + [SMALL_STATE(3849)] = 135306, + [SMALL_STATE(3850)] = 135324, + [SMALL_STATE(3851)] = 135344, + [SMALL_STATE(3852)] = 135364, + [SMALL_STATE(3853)] = 135384, + [SMALL_STATE(3854)] = 135404, + [SMALL_STATE(3855)] = 135420, + [SMALL_STATE(3856)] = 135440, + [SMALL_STATE(3857)] = 135460, + [SMALL_STATE(3858)] = 135480, + [SMALL_STATE(3859)] = 135498, + [SMALL_STATE(3860)] = 135518, + [SMALL_STATE(3861)] = 135538, + [SMALL_STATE(3862)] = 135558, + [SMALL_STATE(3863)] = 135576, + [SMALL_STATE(3864)] = 135596, + [SMALL_STATE(3865)] = 135616, + [SMALL_STATE(3866)] = 135636, + [SMALL_STATE(3867)] = 135656, + [SMALL_STATE(3868)] = 135674, + [SMALL_STATE(3869)] = 135692, + [SMALL_STATE(3870)] = 135712, + [SMALL_STATE(3871)] = 135732, + [SMALL_STATE(3872)] = 135752, + [SMALL_STATE(3873)] = 135768, + [SMALL_STATE(3874)] = 135788, + [SMALL_STATE(3875)] = 135808, + [SMALL_STATE(3876)] = 135828, + [SMALL_STATE(3877)] = 135848, + [SMALL_STATE(3878)] = 135868, + [SMALL_STATE(3879)] = 135888, + [SMALL_STATE(3880)] = 135908, + [SMALL_STATE(3881)] = 135928, + [SMALL_STATE(3882)] = 135948, + [SMALL_STATE(3883)] = 135968, + [SMALL_STATE(3884)] = 135988, + [SMALL_STATE(3885)] = 136008, + [SMALL_STATE(3886)] = 136028, + [SMALL_STATE(3887)] = 136048, + [SMALL_STATE(3888)] = 136068, + [SMALL_STATE(3889)] = 136088, + [SMALL_STATE(3890)] = 136108, + [SMALL_STATE(3891)] = 136124, + [SMALL_STATE(3892)] = 136144, + [SMALL_STATE(3893)] = 136164, + [SMALL_STATE(3894)] = 136184, + [SMALL_STATE(3895)] = 136204, + [SMALL_STATE(3896)] = 136224, + [SMALL_STATE(3897)] = 136244, + [SMALL_STATE(3898)] = 136264, + [SMALL_STATE(3899)] = 136284, + [SMALL_STATE(3900)] = 136304, + [SMALL_STATE(3901)] = 136324, + [SMALL_STATE(3902)] = 136344, + [SMALL_STATE(3903)] = 136364, + [SMALL_STATE(3904)] = 136384, + [SMALL_STATE(3905)] = 136402, + [SMALL_STATE(3906)] = 136422, + [SMALL_STATE(3907)] = 136442, + [SMALL_STATE(3908)] = 136462, + [SMALL_STATE(3909)] = 136482, + [SMALL_STATE(3910)] = 136498, + [SMALL_STATE(3911)] = 136518, + [SMALL_STATE(3912)] = 136538, + [SMALL_STATE(3913)] = 136554, + [SMALL_STATE(3914)] = 136574, + [SMALL_STATE(3915)] = 136594, + [SMALL_STATE(3916)] = 136614, + [SMALL_STATE(3917)] = 136634, + [SMALL_STATE(3918)] = 136654, + [SMALL_STATE(3919)] = 136674, + [SMALL_STATE(3920)] = 136692, + [SMALL_STATE(3921)] = 136712, + [SMALL_STATE(3922)] = 136732, + [SMALL_STATE(3923)] = 136752, + [SMALL_STATE(3924)] = 136772, + [SMALL_STATE(3925)] = 136792, + [SMALL_STATE(3926)] = 136812, + [SMALL_STATE(3927)] = 136832, + [SMALL_STATE(3928)] = 136852, + [SMALL_STATE(3929)] = 136872, + [SMALL_STATE(3930)] = 136890, + [SMALL_STATE(3931)] = 136910, + [SMALL_STATE(3932)] = 136930, + [SMALL_STATE(3933)] = 136950, + [SMALL_STATE(3934)] = 136970, + [SMALL_STATE(3935)] = 136990, + [SMALL_STATE(3936)] = 137010, + [SMALL_STATE(3937)] = 137028, + [SMALL_STATE(3938)] = 137048, + [SMALL_STATE(3939)] = 137068, + [SMALL_STATE(3940)] = 137088, + [SMALL_STATE(3941)] = 137108, + [SMALL_STATE(3942)] = 137128, + [SMALL_STATE(3943)] = 137148, + [SMALL_STATE(3944)] = 137168, + [SMALL_STATE(3945)] = 137188, + [SMALL_STATE(3946)] = 137208, + [SMALL_STATE(3947)] = 137228, + [SMALL_STATE(3948)] = 137248, + [SMALL_STATE(3949)] = 137268, + [SMALL_STATE(3950)] = 137288, + [SMALL_STATE(3951)] = 137308, + [SMALL_STATE(3952)] = 137328, + [SMALL_STATE(3953)] = 137348, + [SMALL_STATE(3954)] = 137368, + [SMALL_STATE(3955)] = 137388, + [SMALL_STATE(3956)] = 137408, + [SMALL_STATE(3957)] = 137428, + [SMALL_STATE(3958)] = 137448, + [SMALL_STATE(3959)] = 137468, + [SMALL_STATE(3960)] = 137488, + [SMALL_STATE(3961)] = 137508, + [SMALL_STATE(3962)] = 137528, + [SMALL_STATE(3963)] = 137548, + [SMALL_STATE(3964)] = 137568, + [SMALL_STATE(3965)] = 137588, + [SMALL_STATE(3966)] = 137606, + [SMALL_STATE(3967)] = 137626, + [SMALL_STATE(3968)] = 137646, + [SMALL_STATE(3969)] = 137666, + [SMALL_STATE(3970)] = 137686, + [SMALL_STATE(3971)] = 137706, + [SMALL_STATE(3972)] = 137726, + [SMALL_STATE(3973)] = 137746, + [SMALL_STATE(3974)] = 137766, + [SMALL_STATE(3975)] = 137786, + [SMALL_STATE(3976)] = 137806, + [SMALL_STATE(3977)] = 137826, + [SMALL_STATE(3978)] = 137842, + [SMALL_STATE(3979)] = 137862, + [SMALL_STATE(3980)] = 137882, + [SMALL_STATE(3981)] = 137902, + [SMALL_STATE(3982)] = 137922, + [SMALL_STATE(3983)] = 137938, + [SMALL_STATE(3984)] = 137954, + [SMALL_STATE(3985)] = 137974, + [SMALL_STATE(3986)] = 137994, + [SMALL_STATE(3987)] = 138014, + [SMALL_STATE(3988)] = 138034, + [SMALL_STATE(3989)] = 138054, + [SMALL_STATE(3990)] = 138074, + [SMALL_STATE(3991)] = 138094, + [SMALL_STATE(3992)] = 138110, + [SMALL_STATE(3993)] = 138130, + [SMALL_STATE(3994)] = 138148, + [SMALL_STATE(3995)] = 138168, + [SMALL_STATE(3996)] = 138188, + [SMALL_STATE(3997)] = 138208, + [SMALL_STATE(3998)] = 138228, + [SMALL_STATE(3999)] = 138248, + [SMALL_STATE(4000)] = 138268, + [SMALL_STATE(4001)] = 138285, + [SMALL_STATE(4002)] = 138302, + [SMALL_STATE(4003)] = 138319, + [SMALL_STATE(4004)] = 138336, + [SMALL_STATE(4005)] = 138351, + [SMALL_STATE(4006)] = 138366, + [SMALL_STATE(4007)] = 138383, + [SMALL_STATE(4008)] = 138400, + [SMALL_STATE(4009)] = 138415, + [SMALL_STATE(4010)] = 138430, + [SMALL_STATE(4011)] = 138447, + [SMALL_STATE(4012)] = 138464, + [SMALL_STATE(4013)] = 138481, + [SMALL_STATE(4014)] = 138498, + [SMALL_STATE(4015)] = 138515, + [SMALL_STATE(4016)] = 138532, + [SMALL_STATE(4017)] = 138549, + [SMALL_STATE(4018)] = 138566, + [SMALL_STATE(4019)] = 138583, + [SMALL_STATE(4020)] = 138600, + [SMALL_STATE(4021)] = 138615, + [SMALL_STATE(4022)] = 138632, + [SMALL_STATE(4023)] = 138649, + [SMALL_STATE(4024)] = 138664, + [SMALL_STATE(4025)] = 138681, + [SMALL_STATE(4026)] = 138698, + [SMALL_STATE(4027)] = 138715, + [SMALL_STATE(4028)] = 138732, + [SMALL_STATE(4029)] = 138749, + [SMALL_STATE(4030)] = 138764, + [SMALL_STATE(4031)] = 138779, + [SMALL_STATE(4032)] = 138796, + [SMALL_STATE(4033)] = 138813, + [SMALL_STATE(4034)] = 138828, + [SMALL_STATE(4035)] = 138845, + [SMALL_STATE(4036)] = 138862, + [SMALL_STATE(4037)] = 138879, + [SMALL_STATE(4038)] = 138896, + [SMALL_STATE(4039)] = 138913, + [SMALL_STATE(4040)] = 138930, + [SMALL_STATE(4041)] = 138947, + [SMALL_STATE(4042)] = 138964, + [SMALL_STATE(4043)] = 138981, + [SMALL_STATE(4044)] = 138998, + [SMALL_STATE(4045)] = 139015, + [SMALL_STATE(4046)] = 139032, + [SMALL_STATE(4047)] = 139049, + [SMALL_STATE(4048)] = 139064, + [SMALL_STATE(4049)] = 139079, + [SMALL_STATE(4050)] = 139096, + [SMALL_STATE(4051)] = 139113, + [SMALL_STATE(4052)] = 139130, + [SMALL_STATE(4053)] = 139147, + [SMALL_STATE(4054)] = 139164, + [SMALL_STATE(4055)] = 139181, + [SMALL_STATE(4056)] = 139198, + [SMALL_STATE(4057)] = 139215, + [SMALL_STATE(4058)] = 139232, + [SMALL_STATE(4059)] = 139249, + [SMALL_STATE(4060)] = 139266, + [SMALL_STATE(4061)] = 139283, + [SMALL_STATE(4062)] = 139298, + [SMALL_STATE(4063)] = 139315, + [SMALL_STATE(4064)] = 139332, + [SMALL_STATE(4065)] = 139349, + [SMALL_STATE(4066)] = 139366, + [SMALL_STATE(4067)] = 139383, + [SMALL_STATE(4068)] = 139400, + [SMALL_STATE(4069)] = 139417, + [SMALL_STATE(4070)] = 139434, + [SMALL_STATE(4071)] = 139451, + [SMALL_STATE(4072)] = 139468, + [SMALL_STATE(4073)] = 139485, + [SMALL_STATE(4074)] = 139502, + [SMALL_STATE(4075)] = 139519, + [SMALL_STATE(4076)] = 139536, + [SMALL_STATE(4077)] = 139553, + [SMALL_STATE(4078)] = 139570, + [SMALL_STATE(4079)] = 139587, + [SMALL_STATE(4080)] = 139604, + [SMALL_STATE(4081)] = 139621, + [SMALL_STATE(4082)] = 139636, + [SMALL_STATE(4083)] = 139653, + [SMALL_STATE(4084)] = 139670, + [SMALL_STATE(4085)] = 139687, + [SMALL_STATE(4086)] = 139704, + [SMALL_STATE(4087)] = 139719, + [SMALL_STATE(4088)] = 139736, + [SMALL_STATE(4089)] = 139753, + [SMALL_STATE(4090)] = 139768, + [SMALL_STATE(4091)] = 139785, + [SMALL_STATE(4092)] = 139802, + [SMALL_STATE(4093)] = 139819, + [SMALL_STATE(4094)] = 139836, + [SMALL_STATE(4095)] = 139853, + [SMALL_STATE(4096)] = 139870, + [SMALL_STATE(4097)] = 139887, + [SMALL_STATE(4098)] = 139904, + [SMALL_STATE(4099)] = 139921, + [SMALL_STATE(4100)] = 139938, + [SMALL_STATE(4101)] = 139955, + [SMALL_STATE(4102)] = 139972, + [SMALL_STATE(4103)] = 139989, + [SMALL_STATE(4104)] = 140006, + [SMALL_STATE(4105)] = 140023, + [SMALL_STATE(4106)] = 140040, + [SMALL_STATE(4107)] = 140057, + [SMALL_STATE(4108)] = 140074, + [SMALL_STATE(4109)] = 140091, + [SMALL_STATE(4110)] = 140108, + [SMALL_STATE(4111)] = 140125, + [SMALL_STATE(4112)] = 140142, + [SMALL_STATE(4113)] = 140159, + [SMALL_STATE(4114)] = 140176, + [SMALL_STATE(4115)] = 140193, + [SMALL_STATE(4116)] = 140210, + [SMALL_STATE(4117)] = 140227, + [SMALL_STATE(4118)] = 140244, + [SMALL_STATE(4119)] = 140261, + [SMALL_STATE(4120)] = 140278, + [SMALL_STATE(4121)] = 140295, + [SMALL_STATE(4122)] = 140312, + [SMALL_STATE(4123)] = 140329, + [SMALL_STATE(4124)] = 140346, + [SMALL_STATE(4125)] = 140363, + [SMALL_STATE(4126)] = 140380, + [SMALL_STATE(4127)] = 140397, + [SMALL_STATE(4128)] = 140414, + [SMALL_STATE(4129)] = 140431, + [SMALL_STATE(4130)] = 140448, + [SMALL_STATE(4131)] = 140465, + [SMALL_STATE(4132)] = 140482, + [SMALL_STATE(4133)] = 140499, + [SMALL_STATE(4134)] = 140516, + [SMALL_STATE(4135)] = 140533, + [SMALL_STATE(4136)] = 140550, + [SMALL_STATE(4137)] = 140567, + [SMALL_STATE(4138)] = 140584, + [SMALL_STATE(4139)] = 140601, + [SMALL_STATE(4140)] = 140616, + [SMALL_STATE(4141)] = 140633, + [SMALL_STATE(4142)] = 140650, + [SMALL_STATE(4143)] = 140667, + [SMALL_STATE(4144)] = 140684, + [SMALL_STATE(4145)] = 140701, + [SMALL_STATE(4146)] = 140718, + [SMALL_STATE(4147)] = 140735, + [SMALL_STATE(4148)] = 140752, + [SMALL_STATE(4149)] = 140769, + [SMALL_STATE(4150)] = 140786, + [SMALL_STATE(4151)] = 140803, + [SMALL_STATE(4152)] = 140820, + [SMALL_STATE(4153)] = 140837, + [SMALL_STATE(4154)] = 140854, + [SMALL_STATE(4155)] = 140871, + [SMALL_STATE(4156)] = 140888, + [SMALL_STATE(4157)] = 140905, + [SMALL_STATE(4158)] = 140922, + [SMALL_STATE(4159)] = 140939, + [SMALL_STATE(4160)] = 140956, + [SMALL_STATE(4161)] = 140973, + [SMALL_STATE(4162)] = 140988, + [SMALL_STATE(4163)] = 141005, + [SMALL_STATE(4164)] = 141022, + [SMALL_STATE(4165)] = 141039, + [SMALL_STATE(4166)] = 141056, + [SMALL_STATE(4167)] = 141073, + [SMALL_STATE(4168)] = 141090, + [SMALL_STATE(4169)] = 141107, + [SMALL_STATE(4170)] = 141124, + [SMALL_STATE(4171)] = 141141, + [SMALL_STATE(4172)] = 141158, + [SMALL_STATE(4173)] = 141175, + [SMALL_STATE(4174)] = 141192, + [SMALL_STATE(4175)] = 141209, + [SMALL_STATE(4176)] = 141226, + [SMALL_STATE(4177)] = 141243, + [SMALL_STATE(4178)] = 141260, + [SMALL_STATE(4179)] = 141277, + [SMALL_STATE(4180)] = 141294, + [SMALL_STATE(4181)] = 141311, + [SMALL_STATE(4182)] = 141328, + [SMALL_STATE(4183)] = 141345, + [SMALL_STATE(4184)] = 141362, + [SMALL_STATE(4185)] = 141379, + [SMALL_STATE(4186)] = 141396, + [SMALL_STATE(4187)] = 141413, + [SMALL_STATE(4188)] = 141430, + [SMALL_STATE(4189)] = 141447, + [SMALL_STATE(4190)] = 141464, + [SMALL_STATE(4191)] = 141481, + [SMALL_STATE(4192)] = 141496, + [SMALL_STATE(4193)] = 141511, + [SMALL_STATE(4194)] = 141526, + [SMALL_STATE(4195)] = 141543, + [SMALL_STATE(4196)] = 141560, + [SMALL_STATE(4197)] = 141575, + [SMALL_STATE(4198)] = 141592, + [SMALL_STATE(4199)] = 141609, + [SMALL_STATE(4200)] = 141626, + [SMALL_STATE(4201)] = 141643, + [SMALL_STATE(4202)] = 141660, + [SMALL_STATE(4203)] = 141677, + [SMALL_STATE(4204)] = 141694, + [SMALL_STATE(4205)] = 141711, + [SMALL_STATE(4206)] = 141728, + [SMALL_STATE(4207)] = 141745, + [SMALL_STATE(4208)] = 141760, + [SMALL_STATE(4209)] = 141777, + [SMALL_STATE(4210)] = 141794, + [SMALL_STATE(4211)] = 141811, + [SMALL_STATE(4212)] = 141828, + [SMALL_STATE(4213)] = 141843, + [SMALL_STATE(4214)] = 141860, + [SMALL_STATE(4215)] = 141877, + [SMALL_STATE(4216)] = 141892, + [SMALL_STATE(4217)] = 141909, + [SMALL_STATE(4218)] = 141926, + [SMALL_STATE(4219)] = 141943, + [SMALL_STATE(4220)] = 141958, + [SMALL_STATE(4221)] = 141975, + [SMALL_STATE(4222)] = 141992, + [SMALL_STATE(4223)] = 142009, + [SMALL_STATE(4224)] = 142026, + [SMALL_STATE(4225)] = 142041, + [SMALL_STATE(4226)] = 142058, + [SMALL_STATE(4227)] = 142075, + [SMALL_STATE(4228)] = 142092, + [SMALL_STATE(4229)] = 142109, + [SMALL_STATE(4230)] = 142126, + [SMALL_STATE(4231)] = 142143, + [SMALL_STATE(4232)] = 142160, + [SMALL_STATE(4233)] = 142177, + [SMALL_STATE(4234)] = 142194, + [SMALL_STATE(4235)] = 142211, + [SMALL_STATE(4236)] = 142228, + [SMALL_STATE(4237)] = 142245, + [SMALL_STATE(4238)] = 142262, + [SMALL_STATE(4239)] = 142279, + [SMALL_STATE(4240)] = 142294, + [SMALL_STATE(4241)] = 142309, + [SMALL_STATE(4242)] = 142326, + [SMALL_STATE(4243)] = 142341, + [SMALL_STATE(4244)] = 142358, + [SMALL_STATE(4245)] = 142375, + [SMALL_STATE(4246)] = 142392, + [SMALL_STATE(4247)] = 142409, + [SMALL_STATE(4248)] = 142426, + [SMALL_STATE(4249)] = 142443, + [SMALL_STATE(4250)] = 142460, + [SMALL_STATE(4251)] = 142477, + [SMALL_STATE(4252)] = 142494, + [SMALL_STATE(4253)] = 142511, + [SMALL_STATE(4254)] = 142526, + [SMALL_STATE(4255)] = 142541, + [SMALL_STATE(4256)] = 142558, + [SMALL_STATE(4257)] = 142575, + [SMALL_STATE(4258)] = 142592, + [SMALL_STATE(4259)] = 142609, + [SMALL_STATE(4260)] = 142626, + [SMALL_STATE(4261)] = 142643, + [SMALL_STATE(4262)] = 142660, + [SMALL_STATE(4263)] = 142677, + [SMALL_STATE(4264)] = 142694, + [SMALL_STATE(4265)] = 142709, + [SMALL_STATE(4266)] = 142726, + [SMALL_STATE(4267)] = 142743, + [SMALL_STATE(4268)] = 142760, + [SMALL_STATE(4269)] = 142777, + [SMALL_STATE(4270)] = 142794, + [SMALL_STATE(4271)] = 142811, + [SMALL_STATE(4272)] = 142828, + [SMALL_STATE(4273)] = 142845, + [SMALL_STATE(4274)] = 142862, + [SMALL_STATE(4275)] = 142879, + [SMALL_STATE(4276)] = 142896, + [SMALL_STATE(4277)] = 142913, + [SMALL_STATE(4278)] = 142930, + [SMALL_STATE(4279)] = 142947, + [SMALL_STATE(4280)] = 142964, + [SMALL_STATE(4281)] = 142981, + [SMALL_STATE(4282)] = 142998, + [SMALL_STATE(4283)] = 143015, + [SMALL_STATE(4284)] = 143032, + [SMALL_STATE(4285)] = 143049, + [SMALL_STATE(4286)] = 143066, + [SMALL_STATE(4287)] = 143083, + [SMALL_STATE(4288)] = 143100, + [SMALL_STATE(4289)] = 143115, + [SMALL_STATE(4290)] = 143132, + [SMALL_STATE(4291)] = 143149, + [SMALL_STATE(4292)] = 143166, + [SMALL_STATE(4293)] = 143183, + [SMALL_STATE(4294)] = 143200, + [SMALL_STATE(4295)] = 143217, + [SMALL_STATE(4296)] = 143234, + [SMALL_STATE(4297)] = 143251, + [SMALL_STATE(4298)] = 143268, + [SMALL_STATE(4299)] = 143285, + [SMALL_STATE(4300)] = 143302, + [SMALL_STATE(4301)] = 143319, + [SMALL_STATE(4302)] = 143336, + [SMALL_STATE(4303)] = 143353, + [SMALL_STATE(4304)] = 143370, + [SMALL_STATE(4305)] = 143387, + [SMALL_STATE(4306)] = 143404, + [SMALL_STATE(4307)] = 143421, + [SMALL_STATE(4308)] = 143438, + [SMALL_STATE(4309)] = 143455, + [SMALL_STATE(4310)] = 143472, + [SMALL_STATE(4311)] = 143489, + [SMALL_STATE(4312)] = 143506, + [SMALL_STATE(4313)] = 143523, + [SMALL_STATE(4314)] = 143540, + [SMALL_STATE(4315)] = 143557, + [SMALL_STATE(4316)] = 143574, + [SMALL_STATE(4317)] = 143591, + [SMALL_STATE(4318)] = 143608, + [SMALL_STATE(4319)] = 143625, + [SMALL_STATE(4320)] = 143642, + [SMALL_STATE(4321)] = 143656, + [SMALL_STATE(4322)] = 143670, + [SMALL_STATE(4323)] = 143684, + [SMALL_STATE(4324)] = 143698, + [SMALL_STATE(4325)] = 143712, + [SMALL_STATE(4326)] = 143726, + [SMALL_STATE(4327)] = 143740, + [SMALL_STATE(4328)] = 143754, + [SMALL_STATE(4329)] = 143768, + [SMALL_STATE(4330)] = 143782, + [SMALL_STATE(4331)] = 143796, + [SMALL_STATE(4332)] = 143810, + [SMALL_STATE(4333)] = 143824, + [SMALL_STATE(4334)] = 143838, + [SMALL_STATE(4335)] = 143852, + [SMALL_STATE(4336)] = 143866, + [SMALL_STATE(4337)] = 143880, + [SMALL_STATE(4338)] = 143894, + [SMALL_STATE(4339)] = 143908, + [SMALL_STATE(4340)] = 143922, + [SMALL_STATE(4341)] = 143936, + [SMALL_STATE(4342)] = 143950, + [SMALL_STATE(4343)] = 143964, + [SMALL_STATE(4344)] = 143978, + [SMALL_STATE(4345)] = 143992, + [SMALL_STATE(4346)] = 144006, + [SMALL_STATE(4347)] = 144020, + [SMALL_STATE(4348)] = 144034, + [SMALL_STATE(4349)] = 144048, + [SMALL_STATE(4350)] = 144062, + [SMALL_STATE(4351)] = 144076, + [SMALL_STATE(4352)] = 144090, + [SMALL_STATE(4353)] = 144104, + [SMALL_STATE(4354)] = 144118, + [SMALL_STATE(4355)] = 144132, + [SMALL_STATE(4356)] = 144146, + [SMALL_STATE(4357)] = 144160, + [SMALL_STATE(4358)] = 144174, + [SMALL_STATE(4359)] = 144188, + [SMALL_STATE(4360)] = 144202, + [SMALL_STATE(4361)] = 144216, + [SMALL_STATE(4362)] = 144230, + [SMALL_STATE(4363)] = 144244, + [SMALL_STATE(4364)] = 144258, + [SMALL_STATE(4365)] = 144272, + [SMALL_STATE(4366)] = 144286, + [SMALL_STATE(4367)] = 144300, + [SMALL_STATE(4368)] = 144314, + [SMALL_STATE(4369)] = 144328, + [SMALL_STATE(4370)] = 144342, + [SMALL_STATE(4371)] = 144356, + [SMALL_STATE(4372)] = 144370, + [SMALL_STATE(4373)] = 144384, + [SMALL_STATE(4374)] = 144398, + [SMALL_STATE(4375)] = 144412, + [SMALL_STATE(4376)] = 144426, + [SMALL_STATE(4377)] = 144440, + [SMALL_STATE(4378)] = 144454, + [SMALL_STATE(4379)] = 144468, + [SMALL_STATE(4380)] = 144482, + [SMALL_STATE(4381)] = 144496, + [SMALL_STATE(4382)] = 144510, + [SMALL_STATE(4383)] = 144524, + [SMALL_STATE(4384)] = 144538, + [SMALL_STATE(4385)] = 144552, + [SMALL_STATE(4386)] = 144566, + [SMALL_STATE(4387)] = 144580, + [SMALL_STATE(4388)] = 144594, + [SMALL_STATE(4389)] = 144608, + [SMALL_STATE(4390)] = 144622, + [SMALL_STATE(4391)] = 144636, + [SMALL_STATE(4392)] = 144650, + [SMALL_STATE(4393)] = 144664, + [SMALL_STATE(4394)] = 144678, + [SMALL_STATE(4395)] = 144692, + [SMALL_STATE(4396)] = 144706, + [SMALL_STATE(4397)] = 144720, + [SMALL_STATE(4398)] = 144734, + [SMALL_STATE(4399)] = 144748, + [SMALL_STATE(4400)] = 144762, + [SMALL_STATE(4401)] = 144776, + [SMALL_STATE(4402)] = 144790, + [SMALL_STATE(4403)] = 144804, + [SMALL_STATE(4404)] = 144818, + [SMALL_STATE(4405)] = 144832, + [SMALL_STATE(4406)] = 144846, + [SMALL_STATE(4407)] = 144860, + [SMALL_STATE(4408)] = 144874, + [SMALL_STATE(4409)] = 144888, + [SMALL_STATE(4410)] = 144902, + [SMALL_STATE(4411)] = 144916, + [SMALL_STATE(4412)] = 144930, + [SMALL_STATE(4413)] = 144944, + [SMALL_STATE(4414)] = 144958, + [SMALL_STATE(4415)] = 144972, + [SMALL_STATE(4416)] = 144986, + [SMALL_STATE(4417)] = 145000, + [SMALL_STATE(4418)] = 145014, + [SMALL_STATE(4419)] = 145028, + [SMALL_STATE(4420)] = 145042, + [SMALL_STATE(4421)] = 145056, + [SMALL_STATE(4422)] = 145070, + [SMALL_STATE(4423)] = 145084, + [SMALL_STATE(4424)] = 145098, + [SMALL_STATE(4425)] = 145112, + [SMALL_STATE(4426)] = 145126, + [SMALL_STATE(4427)] = 145140, + [SMALL_STATE(4428)] = 145154, + [SMALL_STATE(4429)] = 145168, + [SMALL_STATE(4430)] = 145182, + [SMALL_STATE(4431)] = 145196, + [SMALL_STATE(4432)] = 145210, + [SMALL_STATE(4433)] = 145224, + [SMALL_STATE(4434)] = 145238, + [SMALL_STATE(4435)] = 145252, + [SMALL_STATE(4436)] = 145266, + [SMALL_STATE(4437)] = 145280, + [SMALL_STATE(4438)] = 145294, + [SMALL_STATE(4439)] = 145308, + [SMALL_STATE(4440)] = 145322, + [SMALL_STATE(4441)] = 145336, + [SMALL_STATE(4442)] = 145350, + [SMALL_STATE(4443)] = 145364, + [SMALL_STATE(4444)] = 145378, + [SMALL_STATE(4445)] = 145392, + [SMALL_STATE(4446)] = 145406, + [SMALL_STATE(4447)] = 145420, + [SMALL_STATE(4448)] = 145434, + [SMALL_STATE(4449)] = 145448, + [SMALL_STATE(4450)] = 145462, + [SMALL_STATE(4451)] = 145476, + [SMALL_STATE(4452)] = 145490, + [SMALL_STATE(4453)] = 145504, + [SMALL_STATE(4454)] = 145518, + [SMALL_STATE(4455)] = 145532, + [SMALL_STATE(4456)] = 145546, + [SMALL_STATE(4457)] = 145560, + [SMALL_STATE(4458)] = 145574, + [SMALL_STATE(4459)] = 145588, + [SMALL_STATE(4460)] = 145602, + [SMALL_STATE(4461)] = 145616, + [SMALL_STATE(4462)] = 145630, + [SMALL_STATE(4463)] = 145644, + [SMALL_STATE(4464)] = 145658, + [SMALL_STATE(4465)] = 145672, + [SMALL_STATE(4466)] = 145686, + [SMALL_STATE(4467)] = 145700, + [SMALL_STATE(4468)] = 145714, + [SMALL_STATE(4469)] = 145728, + [SMALL_STATE(4470)] = 145742, + [SMALL_STATE(4471)] = 145756, + [SMALL_STATE(4472)] = 145770, + [SMALL_STATE(4473)] = 145784, + [SMALL_STATE(4474)] = 145798, + [SMALL_STATE(4475)] = 145812, + [SMALL_STATE(4476)] = 145826, + [SMALL_STATE(4477)] = 145840, + [SMALL_STATE(4478)] = 145854, + [SMALL_STATE(4479)] = 145868, + [SMALL_STATE(4480)] = 145882, + [SMALL_STATE(4481)] = 145896, + [SMALL_STATE(4482)] = 145910, + [SMALL_STATE(4483)] = 145924, + [SMALL_STATE(4484)] = 145938, + [SMALL_STATE(4485)] = 145952, + [SMALL_STATE(4486)] = 145966, + [SMALL_STATE(4487)] = 145980, + [SMALL_STATE(4488)] = 145994, + [SMALL_STATE(4489)] = 146008, + [SMALL_STATE(4490)] = 146022, + [SMALL_STATE(4491)] = 146036, + [SMALL_STATE(4492)] = 146050, + [SMALL_STATE(4493)] = 146064, + [SMALL_STATE(4494)] = 146078, + [SMALL_STATE(4495)] = 146092, + [SMALL_STATE(4496)] = 146106, + [SMALL_STATE(4497)] = 146120, + [SMALL_STATE(4498)] = 146134, + [SMALL_STATE(4499)] = 146148, + [SMALL_STATE(4500)] = 146162, + [SMALL_STATE(4501)] = 146176, + [SMALL_STATE(4502)] = 146190, + [SMALL_STATE(4503)] = 146204, + [SMALL_STATE(4504)] = 146218, + [SMALL_STATE(4505)] = 146232, + [SMALL_STATE(4506)] = 146246, + [SMALL_STATE(4507)] = 146260, + [SMALL_STATE(4508)] = 146274, + [SMALL_STATE(4509)] = 146288, + [SMALL_STATE(4510)] = 146302, + [SMALL_STATE(4511)] = 146316, + [SMALL_STATE(4512)] = 146330, + [SMALL_STATE(4513)] = 146344, + [SMALL_STATE(4514)] = 146358, + [SMALL_STATE(4515)] = 146372, + [SMALL_STATE(4516)] = 146386, + [SMALL_STATE(4517)] = 146400, + [SMALL_STATE(4518)] = 146414, + [SMALL_STATE(4519)] = 146428, + [SMALL_STATE(4520)] = 146442, + [SMALL_STATE(4521)] = 146456, + [SMALL_STATE(4522)] = 146470, + [SMALL_STATE(4523)] = 146484, + [SMALL_STATE(4524)] = 146498, + [SMALL_STATE(4525)] = 146512, + [SMALL_STATE(4526)] = 146526, + [SMALL_STATE(4527)] = 146540, + [SMALL_STATE(4528)] = 146554, + [SMALL_STATE(4529)] = 146568, + [SMALL_STATE(4530)] = 146582, + [SMALL_STATE(4531)] = 146596, + [SMALL_STATE(4532)] = 146610, + [SMALL_STATE(4533)] = 146624, + [SMALL_STATE(4534)] = 146638, + [SMALL_STATE(4535)] = 146652, + [SMALL_STATE(4536)] = 146666, + [SMALL_STATE(4537)] = 146680, + [SMALL_STATE(4538)] = 146694, + [SMALL_STATE(4539)] = 146708, + [SMALL_STATE(4540)] = 146722, + [SMALL_STATE(4541)] = 146736, + [SMALL_STATE(4542)] = 146750, + [SMALL_STATE(4543)] = 146764, + [SMALL_STATE(4544)] = 146778, + [SMALL_STATE(4545)] = 146792, + [SMALL_STATE(4546)] = 146806, + [SMALL_STATE(4547)] = 146820, + [SMALL_STATE(4548)] = 146834, + [SMALL_STATE(4549)] = 146848, + [SMALL_STATE(4550)] = 146862, + [SMALL_STATE(4551)] = 146876, + [SMALL_STATE(4552)] = 146890, + [SMALL_STATE(4553)] = 146904, + [SMALL_STATE(4554)] = 146918, + [SMALL_STATE(4555)] = 146932, + [SMALL_STATE(4556)] = 146946, + [SMALL_STATE(4557)] = 146960, + [SMALL_STATE(4558)] = 146974, + [SMALL_STATE(4559)] = 146988, + [SMALL_STATE(4560)] = 147002, + [SMALL_STATE(4561)] = 147016, + [SMALL_STATE(4562)] = 147030, + [SMALL_STATE(4563)] = 147044, + [SMALL_STATE(4564)] = 147058, + [SMALL_STATE(4565)] = 147072, + [SMALL_STATE(4566)] = 147086, + [SMALL_STATE(4567)] = 147100, + [SMALL_STATE(4568)] = 147114, + [SMALL_STATE(4569)] = 147128, + [SMALL_STATE(4570)] = 147142, + [SMALL_STATE(4571)] = 147156, + [SMALL_STATE(4572)] = 147170, + [SMALL_STATE(4573)] = 147184, + [SMALL_STATE(4574)] = 147198, + [SMALL_STATE(4575)] = 147212, + [SMALL_STATE(4576)] = 147226, + [SMALL_STATE(4577)] = 147240, + [SMALL_STATE(4578)] = 147254, + [SMALL_STATE(4579)] = 147268, + [SMALL_STATE(4580)] = 147282, + [SMALL_STATE(4581)] = 147296, + [SMALL_STATE(4582)] = 147310, + [SMALL_STATE(4583)] = 147324, + [SMALL_STATE(4584)] = 147338, + [SMALL_STATE(4585)] = 147352, + [SMALL_STATE(4586)] = 147366, + [SMALL_STATE(4587)] = 147380, + [SMALL_STATE(4588)] = 147394, + [SMALL_STATE(4589)] = 147408, + [SMALL_STATE(4590)] = 147422, + [SMALL_STATE(4591)] = 147436, + [SMALL_STATE(4592)] = 147450, + [SMALL_STATE(4593)] = 147464, + [SMALL_STATE(4594)] = 147478, + [SMALL_STATE(4595)] = 147492, + [SMALL_STATE(4596)] = 147506, + [SMALL_STATE(4597)] = 147520, + [SMALL_STATE(4598)] = 147534, + [SMALL_STATE(4599)] = 147548, + [SMALL_STATE(4600)] = 147562, + [SMALL_STATE(4601)] = 147576, + [SMALL_STATE(4602)] = 147590, + [SMALL_STATE(4603)] = 147604, + [SMALL_STATE(4604)] = 147618, + [SMALL_STATE(4605)] = 147632, + [SMALL_STATE(4606)] = 147646, + [SMALL_STATE(4607)] = 147660, + [SMALL_STATE(4608)] = 147674, + [SMALL_STATE(4609)] = 147688, + [SMALL_STATE(4610)] = 147702, + [SMALL_STATE(4611)] = 147716, + [SMALL_STATE(4612)] = 147730, + [SMALL_STATE(4613)] = 147744, + [SMALL_STATE(4614)] = 147758, + [SMALL_STATE(4615)] = 147772, + [SMALL_STATE(4616)] = 147786, + [SMALL_STATE(4617)] = 147800, + [SMALL_STATE(4618)] = 147814, + [SMALL_STATE(4619)] = 147828, + [SMALL_STATE(4620)] = 147842, + [SMALL_STATE(4621)] = 147856, + [SMALL_STATE(4622)] = 147870, + [SMALL_STATE(4623)] = 147884, + [SMALL_STATE(4624)] = 147898, + [SMALL_STATE(4625)] = 147912, + [SMALL_STATE(4626)] = 147926, + [SMALL_STATE(4627)] = 147940, + [SMALL_STATE(4628)] = 147954, + [SMALL_STATE(4629)] = 147968, + [SMALL_STATE(4630)] = 147982, + [SMALL_STATE(4631)] = 147996, + [SMALL_STATE(4632)] = 148010, + [SMALL_STATE(4633)] = 148024, + [SMALL_STATE(4634)] = 148038, + [SMALL_STATE(4635)] = 148052, + [SMALL_STATE(4636)] = 148066, + [SMALL_STATE(4637)] = 148080, + [SMALL_STATE(4638)] = 148094, + [SMALL_STATE(4639)] = 148108, + [SMALL_STATE(4640)] = 148122, + [SMALL_STATE(4641)] = 148136, + [SMALL_STATE(4642)] = 148150, + [SMALL_STATE(4643)] = 148164, + [SMALL_STATE(4644)] = 148178, + [SMALL_STATE(4645)] = 148192, + [SMALL_STATE(4646)] = 148206, + [SMALL_STATE(4647)] = 148220, + [SMALL_STATE(4648)] = 148234, + [SMALL_STATE(4649)] = 148238, + [SMALL_STATE(4650)] = 148242, }; static const TSParseActionEntry ts_parse_actions[] = { [0] = {.entry = {.count = 0, .reusable = false}}, [1] = {.entry = {.count = 1, .reusable = false}}, RECOVER(), - [3] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4519), - [5] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3709), + [3] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4522), + [5] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3739), [7] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_source_file, 0), - [9] = {.entry = {.count = 1, .reusable = false}}, SHIFT(240), - [11] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4640), - [13] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4639), - [15] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3752), - [17] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4010), - [19] = {.entry = {.count = 1, .reusable = true}}, SHIFT(36), - [21] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3765), - [23] = {.entry = {.count = 1, .reusable = true}}, SHIFT(565), - [25] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3361), - [27] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4629), - [29] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3245), - [31] = {.entry = {.count = 1, .reusable = true}}, SHIFT(568), - [33] = {.entry = {.count = 1, .reusable = true}}, SHIFT(598), - [35] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3766), - [37] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4623), - [39] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3419), - [41] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2126), - [43] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4617), - [45] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4615), - [47] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2863), - [49] = {.entry = {.count = 1, .reusable = true}}, SHIFT(649), - [51] = {.entry = {.count = 1, .reusable = false}}, SHIFT(654), - [53] = {.entry = {.count = 1, .reusable = false}}, SHIFT(656), - [55] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4032), - [57] = {.entry = {.count = 1, .reusable = true}}, SHIFT(186), - [59] = {.entry = {.count = 1, .reusable = true}}, SHIFT(660), - [61] = {.entry = {.count = 1, .reusable = true}}, SHIFT(661), - [63] = {.entry = {.count = 1, .reusable = false}}, SHIFT(496), - [65] = {.entry = {.count = 1, .reusable = false}}, SHIFT(236), - [67] = {.entry = {.count = 1, .reusable = false}}, SHIFT(662), - [69] = {.entry = {.count = 1, .reusable = false}}, SHIFT(526), - [71] = {.entry = {.count = 1, .reusable = false}}, SHIFT(499), - [73] = {.entry = {.count = 1, .reusable = false}}, SHIFT(239), - [75] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4036), - [77] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3774), - [79] = {.entry = {.count = 1, .reusable = true}}, SHIFT(496), - [81] = {.entry = {.count = 1, .reusable = false}}, SHIFT(495), - [83] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1580), - [85] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3196), - [87] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3177), - [89] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3173), - [91] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3156), - [93] = {.entry = {.count = 1, .reusable = false}}, SHIFT(697), - [95] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4042), - [97] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4043), - [99] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1423), - [101] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1424), + [9] = {.entry = {.count = 1, .reusable = false}}, SHIFT(248), + [11] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4643), + [13] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4642), + [15] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3603), + [17] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4006), + [19] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14), + [21] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3859), + [23] = {.entry = {.count = 1, .reusable = true}}, SHIFT(844), + [25] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3364), + [27] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4632), + [29] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3248), + [31] = {.entry = {.count = 1, .reusable = true}}, SHIFT(624), + [33] = {.entry = {.count = 1, .reusable = true}}, SHIFT(584), + [35] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3901), + [37] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4626), + [39] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3429), + [41] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2136), + [43] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4620), + [45] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4618), + [47] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2839), + [49] = {.entry = {.count = 1, .reusable = true}}, SHIFT(585), + [51] = {.entry = {.count = 1, .reusable = false}}, SHIFT(587), + [53] = {.entry = {.count = 1, .reusable = false}}, SHIFT(588), + [55] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4031), + [57] = {.entry = {.count = 1, .reusable = true}}, SHIFT(189), + [59] = {.entry = {.count = 1, .reusable = true}}, SHIFT(802), + [61] = {.entry = {.count = 1, .reusable = true}}, SHIFT(594), + [63] = {.entry = {.count = 1, .reusable = false}}, SHIFT(479), + [65] = {.entry = {.count = 1, .reusable = false}}, SHIFT(273), + [67] = {.entry = {.count = 1, .reusable = false}}, SHIFT(596), + [69] = {.entry = {.count = 1, .reusable = false}}, SHIFT(513), + [71] = {.entry = {.count = 1, .reusable = false}}, SHIFT(459), + [73] = {.entry = {.count = 1, .reusable = false}}, SHIFT(264), + [75] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4034), + [77] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3866), + [79] = {.entry = {.count = 1, .reusable = true}}, SHIFT(479), + [81] = {.entry = {.count = 1, .reusable = false}}, SHIFT(455), + [83] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1581), + [85] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3182), + [87] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3166), + [89] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3142), + [91] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3129), + [93] = {.entry = {.count = 1, .reusable = false}}, SHIFT(627), + [95] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4043), + [97] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4044), + [99] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1456), + [101] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1457), [103] = {.entry = {.count = 1, .reusable = false}}, SHIFT(66), - [105] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3561), - [107] = {.entry = {.count = 1, .reusable = false}}, SHIFT(108), - [109] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4592), - [111] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4591), - [113] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3241), - [115] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3516), - [117] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3529), - [119] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3543), - [121] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3542), - [123] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3780), - [125] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3782), + [105] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3574), + [107] = {.entry = {.count = 1, .reusable = false}}, SHIFT(85), + [109] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4595), + [111] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4594), + [113] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3239), + [115] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3453), + [117] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3455), + [119] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3456), + [121] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3457), + [123] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3945), + [125] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3943), [127] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_source_file, 1), - [129] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4592), + [129] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4595), [131] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_source_file, 2), - [133] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), - [135] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(240), - [138] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(4010), - [141] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(36), - [144] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(3765), - [147] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(565), - [150] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(3361), - [153] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(4629), - [156] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(3245), - [159] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(568), - [162] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(598), - [165] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(3766), - [168] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(4623), - [171] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(3419), - [174] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(2126), - [177] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(4617), - [180] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(4615), - [183] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(2863), - [186] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(649), - [189] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(654), - [192] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(656), - [195] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(4032), - [198] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(186), - [201] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(660), - [204] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(661), - [207] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(496), - [210] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(236), - [213] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(662), - [216] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(526), - [219] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(499), - [222] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(239), - [225] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(4036), - [228] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(3774), - [231] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(496), - [234] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(495), - [237] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(1580), - [240] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(3196), - [243] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(3177), - [246] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(3173), - [249] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(3156), - [252] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(697), - [255] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(4042), - [258] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(4043), - [261] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(1423), - [264] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(1424), - [267] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(66), - [270] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(3561), - [273] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(108), - [276] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(4592), - [279] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(4591), - [282] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(3241), - [285] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(3516), - [288] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(3529), - [291] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(3543), - [294] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(3542), - [297] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(3780), - [300] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(3782), - [303] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_source_file, 4), - [305] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_source_file, 3), - [307] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1650), - [309] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4096), - [311] = {.entry = {.count = 1, .reusable = true}}, SHIFT(17), - [313] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1213), - [315] = {.entry = {.count = 1, .reusable = true}}, SHIFT(637), - [317] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3379), - [319] = {.entry = {.count = 1, .reusable = true}}, SHIFT(710), - [321] = {.entry = {.count = 1, .reusable = true}}, SHIFT(714), - [323] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4067), - [325] = {.entry = {.count = 1, .reusable = true}}, SHIFT(719), - [327] = {.entry = {.count = 1, .reusable = false}}, SHIFT(727), - [329] = {.entry = {.count = 1, .reusable = false}}, SHIFT(737), - [331] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4113), - [333] = {.entry = {.count = 1, .reusable = true}}, SHIFT(417), - [335] = {.entry = {.count = 1, .reusable = true}}, SHIFT(741), - [337] = {.entry = {.count = 1, .reusable = true}}, SHIFT(755), - [339] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1705), - [341] = {.entry = {.count = 1, .reusable = false}}, SHIFT(260), - [343] = {.entry = {.count = 1, .reusable = false}}, SHIFT(639), - [345] = {.entry = {.count = 1, .reusable = false}}, SHIFT(546), - [347] = {.entry = {.count = 1, .reusable = false}}, SHIFT(402), - [349] = {.entry = {.count = 1, .reusable = false}}, SHIFT(253), - [351] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4119), - [353] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3810), - [355] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1705), - [357] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1698), - [359] = {.entry = {.count = 1, .reusable = false}}, SHIFT(756), - [361] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4128), - [363] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4130), - [365] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3517), - [367] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3527), - [369] = {.entry = {.count = 1, .reusable = false}}, SHIFT(214), - [371] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3570), - [373] = {.entry = {.count = 1, .reusable = false}}, SHIFT(109), - [375] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4500), - [377] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4469), - [379] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3492), - [381] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3491), - [383] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3490), - [385] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3489), - [387] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3817), - [389] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3818), - [391] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2709), - [393] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1752), - [395] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2021), - [397] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1681), - [399] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2618), - [401] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2266), - [403] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1076), - [405] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2796), - [407] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2427), - [409] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2495), - [411] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2748), - [413] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2000), - [415] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1396), - [417] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1647), - [419] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1911), - [421] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2757), - [423] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1697), - [425] = {.entry = {.count = 1, .reusable = true}}, SHIFT(996), - [427] = {.entry = {.count = 1, .reusable = true}}, SHIFT(452), - [429] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2285), - [431] = {.entry = {.count = 1, .reusable = true}}, SHIFT(279), - [433] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2430), - [435] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1391), - [437] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1654), - [439] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2141), - [441] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2260), - [443] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1781), - [445] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1131), - [447] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2138), - [449] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1562), - [451] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2695), - [453] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1623), - [455] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1672), - [457] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2383), - [459] = {.entry = {.count = 1, .reusable = true}}, SHIFT(987), - [461] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1289), - [463] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1291), - [465] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2544), - [467] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1839), - [469] = {.entry = {.count = 1, .reusable = true}}, SHIFT(275), - [471] = {.entry = {.count = 1, .reusable = true}}, SHIFT(986), - [473] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1127), - [475] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2128), - [477] = {.entry = {.count = 1, .reusable = true}}, SHIFT(257), - [479] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__statement_list, 2), - [481] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__statement_list, 3), + [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(248), + [140] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(4006), + [143] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(14), + [146] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(3859), + [149] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(844), + [152] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(3364), + [155] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(4632), + [158] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(3248), + [161] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(624), + [164] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(584), + [167] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(3901), + [170] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(4626), + [173] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(3429), + [176] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(2136), + [179] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(4620), + [182] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(4618), + [185] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(2839), + [188] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(585), + [191] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(587), + [194] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(588), + [197] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(4031), + [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(802), + [206] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(594), + [209] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(479), + [212] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(273), + [215] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(596), + [218] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(513), + [221] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(459), + [224] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(264), + [227] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(4034), + [230] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(3866), + [233] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(479), + [236] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(455), + [239] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(1581), + [242] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(3182), + [245] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(3166), + [248] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(3142), + [251] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(3129), + [254] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(627), + [257] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(4043), + [260] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(4044), + [263] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(1456), + [266] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(1457), + [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(3574), + [275] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(85), + [278] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(4595), + [281] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(4594), + [284] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(3239), + [287] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(3453), + [290] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(3455), + [293] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(3456), + [296] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(3457), + [299] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(3945), + [302] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(3943), + [305] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_source_file, 4), + [307] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1653), + [309] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4094), + [311] = {.entry = {.count = 1, .reusable = true}}, SHIFT(32), + [313] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2665), + [315] = {.entry = {.count = 1, .reusable = true}}, SHIFT(642), + [317] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3378), + [319] = {.entry = {.count = 1, .reusable = true}}, SHIFT(862), + [321] = {.entry = {.count = 1, .reusable = true}}, SHIFT(864), + [323] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4095), + [325] = {.entry = {.count = 1, .reusable = true}}, SHIFT(869), + [327] = {.entry = {.count = 1, .reusable = false}}, SHIFT(870), + [329] = {.entry = {.count = 1, .reusable = false}}, SHIFT(871), + [331] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4096), + [333] = {.entry = {.count = 1, .reusable = true}}, SHIFT(319), + [335] = {.entry = {.count = 1, .reusable = true}}, SHIFT(872), + [337] = {.entry = {.count = 1, .reusable = true}}, SHIFT(873), + [339] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1733), + [341] = {.entry = {.count = 1, .reusable = false}}, SHIFT(239), + [343] = {.entry = {.count = 1, .reusable = false}}, SHIFT(643), + [345] = {.entry = {.count = 1, .reusable = false}}, SHIFT(545), + [347] = {.entry = {.count = 1, .reusable = false}}, SHIFT(394), + [349] = {.entry = {.count = 1, .reusable = false}}, SHIFT(266), + [351] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4099), + [353] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3842), + [355] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1733), + [357] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1738), + [359] = {.entry = {.count = 1, .reusable = false}}, SHIFT(889), + [361] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4100), + [363] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4101), + [365] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3524), + [367] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3511), + [369] = {.entry = {.count = 1, .reusable = false}}, SHIFT(215), + [371] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3565), + [373] = {.entry = {.count = 1, .reusable = false}}, SHIFT(98), + [375] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4544), + [377] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4501), + [379] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3494), + [381] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3495), + [383] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3498), + [385] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3501), + [387] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3831), + [389] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3830), + [391] = {.entry = {.count = 1, .reusable = true}}, SHIFT(300), + [393] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2426), + [395] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2263), + [397] = {.entry = {.count = 1, .reusable = true}}, SHIFT(400), + [399] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2600), + [401] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1694), + [403] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1241), + [405] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2061), + [407] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1396), + [409] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2799), + [411] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2751), + [413] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1660), + [415] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2280), + [417] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2760), + [419] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2094), + [421] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1966), + [423] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1723), + [425] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2422), + [427] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1067), + [429] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2466), + [431] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1757), + [433] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1388), + [435] = {.entry = {.count = 1, .reusable = true}}, SHIFT(992), + [437] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1651), + [439] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1700), + [441] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1870), + [443] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1275), + [445] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2540), + [447] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2129), + [449] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2262), + [451] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1622), + [453] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1131), + [455] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1134), + [457] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2677), + [459] = {.entry = {.count = 1, .reusable = true}}, SHIFT(231), + [461] = {.entry = {.count = 1, .reusable = true}}, SHIFT(232), + [463] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2144), + [465] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1276), + [467] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1527), + [469] = {.entry = {.count = 1, .reusable = true}}, SHIFT(988), + [471] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1884), + [473] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2134), + [475] = {.entry = {.count = 1, .reusable = true}}, SHIFT(984), + [477] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2343), + [479] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__statement_list, 3), + [481] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__statement_list, 2), [483] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_empty_labeled_statement, 1), - [485] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3364), - [487] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4044), - [489] = {.entry = {.count = 1, .reusable = true}}, SHIFT(385), + [485] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3373), + [487] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4045), + [489] = {.entry = {.count = 1, .reusable = true}}, SHIFT(392), [491] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_return_statement, 1), - [493] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1013), + [493] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1041), [495] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_return_statement, 1), - [497] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4519), - [499] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3709), - [501] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4170), - [503] = {.entry = {.count = 1, .reusable = false}}, SHIFT(304), - [505] = {.entry = {.count = 1, .reusable = false}}, SHIFT(736), + [497] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4522), + [499] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3739), + [501] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4051), + [503] = {.entry = {.count = 1, .reusable = false}}, SHIFT(307), + [505] = {.entry = {.count = 1, .reusable = false}}, SHIFT(726), [507] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3381), - [509] = {.entry = {.count = 1, .reusable = false}}, SHIFT(800), - [511] = {.entry = {.count = 1, .reusable = false}}, SHIFT(799), - [513] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4039), - [515] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2863), - [517] = {.entry = {.count = 1, .reusable = false}}, SHIFT(797), - [519] = {.entry = {.count = 1, .reusable = false}}, SHIFT(796), - [521] = {.entry = {.count = 1, .reusable = false}}, SHIFT(795), - [523] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4222), - [525] = {.entry = {.count = 1, .reusable = false}}, SHIFT(479), - [527] = {.entry = {.count = 1, .reusable = false}}, SHIFT(792), - [529] = {.entry = {.count = 1, .reusable = false}}, SHIFT(791), - [531] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1006), - [533] = {.entry = {.count = 1, .reusable = false}}, SHIFT(308), - [535] = {.entry = {.count = 1, .reusable = false}}, SHIFT(738), - [537] = {.entry = {.count = 1, .reusable = false}}, SHIFT(506), - [539] = {.entry = {.count = 1, .reusable = false}}, SHIFT(362), - [541] = {.entry = {.count = 1, .reusable = false}}, SHIFT(231), - [543] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4253), - [545] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3896), - [547] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1014), - [549] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3196), - [551] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3512), - [553] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3509), - [555] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3504), - [557] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3432), - [559] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3812), - [561] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3874), - [563] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_result_type, 1), - [565] = {.entry = {.count = 1, .reusable = false}}, SHIFT(396), - [567] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_result_type, 1), - [569] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3022), - [571] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3588), - [573] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3056), - [575] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4143), + [509] = {.entry = {.count = 1, .reusable = false}}, SHIFT(781), + [511] = {.entry = {.count = 1, .reusable = false}}, SHIFT(779), + [513] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4040), + [515] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2839), + [517] = {.entry = {.count = 1, .reusable = false}}, SHIFT(776), + [519] = {.entry = {.count = 1, .reusable = false}}, SHIFT(775), + [521] = {.entry = {.count = 1, .reusable = false}}, SHIFT(773), + [523] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4103), + [525] = {.entry = {.count = 1, .reusable = false}}, SHIFT(369), + [527] = {.entry = {.count = 1, .reusable = false}}, SHIFT(772), + [529] = {.entry = {.count = 1, .reusable = false}}, SHIFT(771), + [531] = {.entry = {.count = 1, .reusable = false}}, SHIFT(993), + [533] = {.entry = {.count = 1, .reusable = false}}, SHIFT(237), + [535] = {.entry = {.count = 1, .reusable = false}}, SHIFT(728), + [537] = {.entry = {.count = 1, .reusable = false}}, SHIFT(523), + [539] = {.entry = {.count = 1, .reusable = false}}, SHIFT(341), + [541] = {.entry = {.count = 1, .reusable = false}}, SHIFT(274), + [543] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4172), + [545] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3937), + [547] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1078), + [549] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3182), + [551] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3459), + [553] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3461), + [555] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3466), + [557] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3467), + [559] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3925), + [561] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3902), + [563] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_creation, 2), + [565] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3449), + [567] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_creation, 2), + [569] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3219), + [571] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3715), + [573] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3218), + [575] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4159), [577] = {.entry = {.count = 1, .reusable = false}}, SHIFT(71), - [579] = {.entry = {.count = 1, .reusable = false}}, SHIFT(67), - [581] = {.entry = {.count = 1, .reusable = false}}, SHIFT(527), - [583] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3061), - [585] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3063), - [587] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3146), - [589] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3087), - [591] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3004), - [593] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3005), - [595] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_creation, 2), - [597] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3498), - [599] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_creation, 2), - [601] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3034), - [603] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3729), - [605] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3032), - [607] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4131), - [609] = {.entry = {.count = 1, .reusable = false}}, SHIFT(70), - [611] = {.entry = {.count = 1, .reusable = false}}, SHIFT(542), - [613] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3030), - [615] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3025), + [579] = {.entry = {.count = 1, .reusable = false}}, SHIFT(550), + [581] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3217), + [583] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3215), + [585] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_option_type, 1), + [587] = {.entry = {.count = 1, .reusable = false}}, SHIFT(383), + [589] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_option_type, 1), + [591] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3025), + [593] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3733), + [595] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3130), + [597] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4292), + [599] = {.entry = {.count = 1, .reusable = false}}, SHIFT(68), + [601] = {.entry = {.count = 1, .reusable = false}}, SHIFT(70), + [603] = {.entry = {.count = 1, .reusable = false}}, SHIFT(528), + [605] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3134), + [607] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3135), + [609] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3052), + [611] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3117), + [613] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3122), + [615] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3124), [617] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_signature, 1, .production_id = 2), [619] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_signature, 1, .production_id = 2), - [621] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_fixed_array_creation, 3), - [623] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_fixed_array_creation, 3), - [625] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_option_type, 1), - [627] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_option_type, 1), - [629] = {.entry = {.count = 1, .reusable = false}}, SHIFT(946), - [631] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4261), - [633] = {.entry = {.count = 1, .reusable = true}}, SHIFT(301), - [635] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2372), - [637] = {.entry = {.count = 1, .reusable = true}}, SHIFT(773), - [639] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4410), - [641] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3370), - [643] = {.entry = {.count = 1, .reusable = true}}, SHIFT(623), - [645] = {.entry = {.count = 1, .reusable = true}}, SHIFT(586), - [647] = {.entry = {.count = 1, .reusable = true}}, SHIFT(686), - [649] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4029), - [651] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4232), - [653] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2125), - [655] = {.entry = {.count = 1, .reusable = true}}, SHIFT(585), - [657] = {.entry = {.count = 1, .reusable = false}}, SHIFT(620), - [659] = {.entry = {.count = 1, .reusable = false}}, SHIFT(618), - [661] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4249), - [663] = {.entry = {.count = 1, .reusable = true}}, SHIFT(390), - [665] = {.entry = {.count = 1, .reusable = true}}, SHIFT(579), - [667] = {.entry = {.count = 1, .reusable = true}}, SHIFT(613), - [669] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1147), - [671] = {.entry = {.count = 1, .reusable = false}}, SHIFT(237), - [673] = {.entry = {.count = 1, .reusable = false}}, SHIFT(774), - [675] = {.entry = {.count = 1, .reusable = false}}, SHIFT(503), - [677] = {.entry = {.count = 1, .reusable = false}}, SHIFT(467), - [679] = {.entry = {.count = 1, .reusable = false}}, SHIFT(305), - [681] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4241), - [683] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3898), - [685] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1147), - [687] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1146), - [689] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3520), - [691] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3521), - [693] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3522), - [695] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3523), - [697] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3899), - [699] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3900), - [701] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1856), - [703] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4111), - [705] = {.entry = {.count = 1, .reusable = true}}, SHIFT(284), - [707] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2532), - [709] = {.entry = {.count = 1, .reusable = true}}, SHIFT(786), - [711] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3369), - [713] = {.entry = {.count = 1, .reusable = true}}, SHIFT(556), - [715] = {.entry = {.count = 1, .reusable = true}}, SHIFT(570), - [717] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4028), - [719] = {.entry = {.count = 1, .reusable = true}}, SHIFT(566), - [721] = {.entry = {.count = 1, .reusable = false}}, SHIFT(553), - [723] = {.entry = {.count = 1, .reusable = false}}, SHIFT(552), - [725] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4109), - [727] = {.entry = {.count = 1, .reusable = true}}, SHIFT(454), - [729] = {.entry = {.count = 1, .reusable = true}}, SHIFT(574), - [731] = {.entry = {.count = 1, .reusable = true}}, SHIFT(572), - [733] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2026), - [735] = {.entry = {.count = 1, .reusable = false}}, SHIFT(248), - [737] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4164), - [739] = {.entry = {.count = 1, .reusable = false}}, SHIFT(788), - [741] = {.entry = {.count = 1, .reusable = false}}, SHIFT(534), - [743] = {.entry = {.count = 1, .reusable = false}}, SHIFT(368), - [745] = {.entry = {.count = 1, .reusable = false}}, SHIFT(290), - [747] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4099), - [749] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3955), - [751] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2026), - [753] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2027), - [755] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3508), - [757] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3507), - [759] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3506), - [761] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3433), - [763] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3753), - [765] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3956), - [767] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2603), - [769] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1390), - [771] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1395), - [773] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2017), - [775] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1175), - [777] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1634), - [779] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2768), - [781] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2103), - [783] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1048), - [785] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1776), - [787] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2439), - [789] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2789), - [791] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2448), - [793] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2284), - [795] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2647), - [797] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1071), - [799] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2261), - [801] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2699), - [803] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1961), - [805] = {.entry = {.count = 1, .reusable = true}}, SHIFT(411), - [807] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2034), - [809] = {.entry = {.count = 1, .reusable = true}}, SHIFT(516), - [811] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4046), - [813] = {.entry = {.count = 1, .reusable = true}}, SHIFT(39), - [815] = {.entry = {.count = 1, .reusable = true}}, SHIFT(745), - [817] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3365), - [819] = {.entry = {.count = 1, .reusable = true}}, SHIFT(764), - [821] = {.entry = {.count = 1, .reusable = true}}, SHIFT(763), - [823] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4038), - [825] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2127), - [827] = {.entry = {.count = 1, .reusable = true}}, SHIFT(761), - [829] = {.entry = {.count = 1, .reusable = false}}, SHIFT(760), - [831] = {.entry = {.count = 1, .reusable = false}}, SHIFT(758), - [833] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4047), - [835] = {.entry = {.count = 1, .reusable = true}}, SHIFT(356), - [837] = {.entry = {.count = 1, .reusable = true}}, SHIFT(753), - [839] = {.entry = {.count = 1, .reusable = true}}, SHIFT(751), - [841] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2041), - [843] = {.entry = {.count = 1, .reusable = false}}, SHIFT(299), - [845] = {.entry = {.count = 1, .reusable = false}}, SHIFT(747), - [847] = {.entry = {.count = 1, .reusable = false}}, SHIFT(525), - [849] = {.entry = {.count = 1, .reusable = false}}, SHIFT(393), - [851] = {.entry = {.count = 1, .reusable = false}}, SHIFT(269), - [853] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4235), - [855] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3783), - [857] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2041), - [859] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2043), - [861] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3540), - [863] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3539), - [865] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3538), - [867] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3537), - [869] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3785), - [871] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3787), - [873] = {.entry = {.count = 1, .reusable = true}}, SHIFT(32), - [875] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1714), - [877] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2576), - [879] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1833), - [881] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1834), - [883] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2672), - [885] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2095), - [887] = {.entry = {.count = 1, .reusable = true}}, SHIFT(486), - [889] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1885), - [891] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2671), - [893] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1950), - [895] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2837), - [897] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2190), - [899] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1694), - [901] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2861), - [903] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1715), - [905] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2189), - [907] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1344), - [909] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1343), - [911] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2862), - [913] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1375), - [915] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1949), - [917] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2453), - [919] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1047), - [921] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2357), - [923] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2358), - [925] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2490), - [927] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2381), - [929] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1937), - [931] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1045), - [933] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2010), - [935] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2687), - [937] = {.entry = {.count = 1, .reusable = true}}, SHIFT(414), - [939] = {.entry = {.count = 1, .reusable = true}}, SHIFT(391), - [941] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1240), - [943] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1139), - [945] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1143), - [947] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1920), - [949] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1029), - [951] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2172), - [953] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_select_expression_repeat1, 2), SHIFT_REPEAT(1856), - [956] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_select_expression_repeat1, 2), SHIFT_REPEAT(4111), - [959] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_select_expression_repeat1, 2), SHIFT_REPEAT(284), + [621] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_result_type, 1), + [623] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_result_type, 1), + [625] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_fixed_array_creation, 3), + [627] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_fixed_array_creation, 3), + [629] = {.entry = {.count = 1, .reusable = false}}, SHIFT(947), + [631] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4108), + [633] = {.entry = {.count = 1, .reusable = true}}, SHIFT(288), + [635] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2415), + [637] = {.entry = {.count = 1, .reusable = true}}, SHIFT(754), + [639] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4427), + [641] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3383), + [643] = {.entry = {.count = 1, .reusable = true}}, SHIFT(604), + [645] = {.entry = {.count = 1, .reusable = true}}, SHIFT(567), + [647] = {.entry = {.count = 1, .reusable = true}}, SHIFT(677), + [649] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4028), + [651] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4231), + [653] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2127), + [655] = {.entry = {.count = 1, .reusable = true}}, SHIFT(566), + [657] = {.entry = {.count = 1, .reusable = false}}, SHIFT(599), + [659] = {.entry = {.count = 1, .reusable = false}}, SHIFT(598), + [661] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4109), + [663] = {.entry = {.count = 1, .reusable = true}}, SHIFT(436), + [665] = {.entry = {.count = 1, .reusable = true}}, SHIFT(563), + [667] = {.entry = {.count = 1, .reusable = true}}, SHIFT(595), + [669] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1201), + [671] = {.entry = {.count = 1, .reusable = false}}, SHIFT(272), + [673] = {.entry = {.count = 1, .reusable = false}}, SHIFT(756), + [675] = {.entry = {.count = 1, .reusable = false}}, SHIFT(511), + [677] = {.entry = {.count = 1, .reusable = false}}, SHIFT(451), + [679] = {.entry = {.count = 1, .reusable = false}}, SHIFT(291), + [681] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4128), + [683] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3911), + [685] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1201), + [687] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1209), + [689] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3525), + [691] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3526), + [693] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3527), + [695] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3528), + [697] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3794), + [699] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3795), + [701] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2103), + [703] = {.entry = {.count = 1, .reusable = true}}, SHIFT(505), + [705] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4316), + [707] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15), + [709] = {.entry = {.count = 1, .reusable = true}}, SHIFT(735), + [711] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3382), + [713] = {.entry = {.count = 1, .reusable = true}}, SHIFT(745), + [715] = {.entry = {.count = 1, .reusable = true}}, SHIFT(744), + [717] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4036), + [719] = {.entry = {.count = 1, .reusable = false}}, SHIFT(458), + [721] = {.entry = {.count = 1, .reusable = true}}, SHIFT(743), + [723] = {.entry = {.count = 1, .reusable = false}}, SHIFT(742), + [725] = {.entry = {.count = 1, .reusable = false}}, SHIFT(741), + [727] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4310), + [729] = {.entry = {.count = 1, .reusable = true}}, SHIFT(325), + [731] = {.entry = {.count = 1, .reusable = true}}, SHIFT(740), + [733] = {.entry = {.count = 1, .reusable = true}}, SHIFT(739), + [735] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1942), + [737] = {.entry = {.count = 1, .reusable = false}}, SHIFT(301), + [739] = {.entry = {.count = 1, .reusable = false}}, SHIFT(738), + [741] = {.entry = {.count = 1, .reusable = false}}, SHIFT(518), + [743] = {.entry = {.count = 1, .reusable = false}}, SHIFT(353), + [745] = {.entry = {.count = 1, .reusable = false}}, SHIFT(251), + [747] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4074), + [749] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3882), + [751] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1942), + [753] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1943), + [755] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3538), + [757] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3523), + [759] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3522), + [761] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3503), + [763] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3913), + [765] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3926), + [767] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1872), + [769] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4246), + [771] = {.entry = {.count = 1, .reusable = true}}, SHIFT(255), + [773] = {.entry = {.count = 1, .reusable = true}}, SHIFT(412), + [775] = {.entry = {.count = 1, .reusable = true}}, SHIFT(783), + [777] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3377), + [779] = {.entry = {.count = 1, .reusable = true}}, SHIFT(559), + [781] = {.entry = {.count = 1, .reusable = true}}, SHIFT(560), + [783] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4027), + [785] = {.entry = {.count = 1, .reusable = true}}, SHIFT(578), + [787] = {.entry = {.count = 1, .reusable = false}}, SHIFT(556), + [789] = {.entry = {.count = 1, .reusable = false}}, SHIFT(554), + [791] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4255), + [793] = {.entry = {.count = 1, .reusable = true}}, SHIFT(368), + [795] = {.entry = {.count = 1, .reusable = true}}, SHIFT(582), + [797] = {.entry = {.count = 1, .reusable = true}}, SHIFT(579), + [799] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2029), + [801] = {.entry = {.count = 1, .reusable = false}}, SHIFT(245), + [803] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4158), + [805] = {.entry = {.count = 1, .reusable = false}}, SHIFT(785), + [807] = {.entry = {.count = 1, .reusable = false}}, SHIFT(515), + [809] = {.entry = {.count = 1, .reusable = false}}, SHIFT(466), + [811] = {.entry = {.count = 1, .reusable = false}}, SHIFT(261), + [813] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4258), + [815] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3947), + [817] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2029), + [819] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2030), + [821] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3458), + [823] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3470), + [825] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3474), + [827] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3475), + [829] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3946), + [831] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3941), + [833] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2445), + [835] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1964), + [837] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2792), + [839] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1629), + [841] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2287), + [843] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2436), + [845] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2457), + [847] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1779), + [849] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1051), + [851] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2650), + [853] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2678), + [855] = {.entry = {.count = 1, .reusable = true}}, SHIFT(20), + [857] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2608), + [859] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1057), + [861] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2014), + [863] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1389), + [865] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1150), + [867] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2622), + [869] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2106), + [871] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2269), + [873] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1400), + [875] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2863), + [877] = {.entry = {.count = 1, .reusable = true}}, SHIFT(423), + [879] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1961), + [881] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1715), + [883] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1960), + [885] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1206), + [887] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1205), + [889] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1238), + [891] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2479), + [893] = {.entry = {.count = 1, .reusable = true}}, SHIFT(472), + [895] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2501), + [897] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1734), + [899] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1730), + [901] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2503), + [903] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2251), + [905] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2250), + [907] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1070), + [909] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2864), + [911] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2849), + [913] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1994), + [915] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1013), + [917] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1011), + [919] = {.entry = {.count = 1, .reusable = true}}, SHIFT(385), + [921] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1892), + [923] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1874), + [925] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1802), + [927] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2044), + [929] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2365), + [931] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1346), + [933] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2388), + [935] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2089), + [937] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2079), + [939] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2407), + [941] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1374), + [943] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2690), + [945] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1375), + [947] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2675), + [949] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2674), + [951] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2153), + [953] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_select_expression_repeat1, 2), SHIFT_REPEAT(1872), + [956] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_select_expression_repeat1, 2), SHIFT_REPEAT(4246), + [959] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_select_expression_repeat1, 2), SHIFT_REPEAT(255), [962] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_select_expression_repeat1, 2), - [964] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_select_expression_repeat1, 2), SHIFT_REPEAT(786), - [967] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_select_expression_repeat1, 2), SHIFT_REPEAT(3369), - [970] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_select_expression_repeat1, 2), SHIFT_REPEAT(556), - [973] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_select_expression_repeat1, 2), SHIFT_REPEAT(570), - [976] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_select_expression_repeat1, 2), SHIFT_REPEAT(4028), - [979] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_select_expression_repeat1, 2), SHIFT_REPEAT(2126), - [982] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_select_expression_repeat1, 2), SHIFT_REPEAT(2863), - [985] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_select_expression_repeat1, 2), SHIFT_REPEAT(566), - [988] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_select_expression_repeat1, 2), SHIFT_REPEAT(553), - [991] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_select_expression_repeat1, 2), SHIFT_REPEAT(552), - [994] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_select_expression_repeat1, 2), SHIFT_REPEAT(4109), - [997] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_select_expression_repeat1, 2), SHIFT_REPEAT(454), - [1000] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_select_expression_repeat1, 2), SHIFT_REPEAT(574), - [1003] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_select_expression_repeat1, 2), SHIFT_REPEAT(572), - [1006] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_select_expression_repeat1, 2), SHIFT_REPEAT(2026), - [1009] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_select_expression_repeat1, 2), SHIFT_REPEAT(248), + [964] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_select_expression_repeat1, 2), SHIFT_REPEAT(783), + [967] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_select_expression_repeat1, 2), SHIFT_REPEAT(3377), + [970] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_select_expression_repeat1, 2), SHIFT_REPEAT(559), + [973] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_select_expression_repeat1, 2), SHIFT_REPEAT(560), + [976] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_select_expression_repeat1, 2), SHIFT_REPEAT(4027), + [979] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_select_expression_repeat1, 2), SHIFT_REPEAT(2136), + [982] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_select_expression_repeat1, 2), SHIFT_REPEAT(2839), + [985] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_select_expression_repeat1, 2), SHIFT_REPEAT(578), + [988] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_select_expression_repeat1, 2), SHIFT_REPEAT(556), + [991] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_select_expression_repeat1, 2), SHIFT_REPEAT(554), + [994] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_select_expression_repeat1, 2), SHIFT_REPEAT(4255), + [997] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_select_expression_repeat1, 2), SHIFT_REPEAT(368), + [1000] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_select_expression_repeat1, 2), SHIFT_REPEAT(582), + [1003] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_select_expression_repeat1, 2), SHIFT_REPEAT(579), + [1006] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_select_expression_repeat1, 2), SHIFT_REPEAT(2029), + [1009] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_select_expression_repeat1, 2), SHIFT_REPEAT(245), [1012] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_select_expression_repeat1, 2), - [1014] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_select_expression_repeat1, 2), SHIFT_REPEAT(788), - [1017] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_select_expression_repeat1, 2), SHIFT_REPEAT(534), - [1020] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_select_expression_repeat1, 2), SHIFT_REPEAT(368), - [1023] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_select_expression_repeat1, 2), SHIFT_REPEAT(290), - [1026] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_select_expression_repeat1, 2), SHIFT_REPEAT(4099), - [1029] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_select_expression_repeat1, 2), SHIFT_REPEAT(3955), - [1032] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_select_expression_repeat1, 2), SHIFT_REPEAT(2026), - [1035] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_select_expression_repeat1, 2), SHIFT_REPEAT(2027), - [1038] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_select_expression_repeat1, 2), SHIFT_REPEAT(1580), - [1041] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_select_expression_repeat1, 2), SHIFT_REPEAT(3196), - [1044] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_select_expression_repeat1, 2), SHIFT_REPEAT(3177), - [1047] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_select_expression_repeat1, 2), SHIFT_REPEAT(3173), - [1050] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_select_expression_repeat1, 2), SHIFT_REPEAT(3156), - [1053] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_select_expression_repeat1, 2), SHIFT_REPEAT(3508), - [1056] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_select_expression_repeat1, 2), SHIFT_REPEAT(3507), - [1059] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_select_expression_repeat1, 2), SHIFT_REPEAT(3506), - [1062] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_select_expression_repeat1, 2), SHIFT_REPEAT(3433), - [1065] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_select_expression_repeat1, 2), SHIFT_REPEAT(3753), - [1068] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_select_expression_repeat1, 2), SHIFT_REPEAT(3956), - [1071] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1134), - [1073] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2113), - [1075] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3943), - [1077] = {.entry = {.count = 1, .reusable = true}}, SHIFT(829), - [1079] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2788), - [1081] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4239), - [1083] = {.entry = {.count = 1, .reusable = true}}, SHIFT(233), - [1085] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2192), - [1087] = {.entry = {.count = 1, .reusable = true}}, SHIFT(827), - [1089] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3380), - [1091] = {.entry = {.count = 1, .reusable = true}}, SHIFT(595), - [1093] = {.entry = {.count = 1, .reusable = true}}, SHIFT(612), - [1095] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4019), - [1097] = {.entry = {.count = 1, .reusable = true}}, SHIFT(514), - [1099] = {.entry = {.count = 1, .reusable = false}}, SHIFT(604), - [1101] = {.entry = {.count = 1, .reusable = false}}, SHIFT(605), - [1103] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4202), - [1105] = {.entry = {.count = 1, .reusable = true}}, SHIFT(472), - [1107] = {.entry = {.count = 1, .reusable = true}}, SHIFT(624), - [1109] = {.entry = {.count = 1, .reusable = true}}, SHIFT(607), - [1111] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2660), - [1113] = {.entry = {.count = 1, .reusable = false}}, SHIFT(292), - [1115] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4106), - [1117] = {.entry = {.count = 1, .reusable = false}}, SHIFT(835), - [1119] = {.entry = {.count = 1, .reusable = false}}, SHIFT(540), - [1121] = {.entry = {.count = 1, .reusable = false}}, SHIFT(320), - [1123] = {.entry = {.count = 1, .reusable = false}}, SHIFT(235), - [1125] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4197), - [1127] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3912), - [1129] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2660), - [1131] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2769), - [1133] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3437), - [1135] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3438), - [1137] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3439), - [1139] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3440), - [1141] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3917), - [1143] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3918), - [1145] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1251), - [1147] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1144), - [1149] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1349), - [1151] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2669), - [1153] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2670), - [1155] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2146), - [1157] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1049), - [1159] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1079), - [1161] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1832), - [1163] = {.entry = {.count = 1, .reusable = true}}, SHIFT(461), - [1165] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1857), - [1167] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2094), - [1169] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2355), - [1171] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1738), - [1173] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2864), - [1175] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1335), - [1177] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1919), - [1179] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1718), - [1181] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2313), - [1183] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2575), - [1185] = {.entry = {.count = 1, .reusable = true}}, SHIFT(462), - [1187] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2517), - [1189] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1951), - [1191] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1086), - [1193] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3165), - [1195] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3635), - [1197] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3019), - [1199] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4285), - [1201] = {.entry = {.count = 1, .reusable = false}}, SHIFT(175), - [1203] = {.entry = {.count = 1, .reusable = false}}, SHIFT(196), - [1205] = {.entry = {.count = 1, .reusable = false}}, SHIFT(539), - [1207] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3026), - [1209] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3027), - [1211] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3122), - [1213] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3094), - [1215] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3180), - [1217] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3000), - [1219] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1067), - [1221] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_match_arms_repeat1, 2), SHIFT_REPEAT(2788), - [1224] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_match_arms_repeat1, 2), SHIFT_REPEAT(4239), - [1227] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_arms_repeat1, 2), SHIFT_REPEAT(233), - [1230] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_match_arms_repeat1, 2), - [1232] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_arms_repeat1, 2), SHIFT_REPEAT(827), - [1235] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_match_arms_repeat1, 2), SHIFT_REPEAT(3380), - [1238] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_arms_repeat1, 2), SHIFT_REPEAT(595), - [1241] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_arms_repeat1, 2), SHIFT_REPEAT(612), - [1244] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_match_arms_repeat1, 2), SHIFT_REPEAT(4019), - [1247] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_match_arms_repeat1, 2), SHIFT_REPEAT(2126), - [1250] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_arms_repeat1, 2), SHIFT_REPEAT(2863), - [1253] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_arms_repeat1, 2), SHIFT_REPEAT(514), - [1256] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_match_arms_repeat1, 2), SHIFT_REPEAT(604), - [1259] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_match_arms_repeat1, 2), SHIFT_REPEAT(605), - [1262] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_arms_repeat1, 2), SHIFT_REPEAT(4202), - [1265] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_arms_repeat1, 2), SHIFT_REPEAT(472), - [1268] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_arms_repeat1, 2), SHIFT_REPEAT(624), - [1271] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_arms_repeat1, 2), SHIFT_REPEAT(607), - [1274] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_match_arms_repeat1, 2), SHIFT_REPEAT(2660), - [1277] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_match_arms_repeat1, 2), SHIFT_REPEAT(292), - [1280] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_match_arms_repeat1, 2), SHIFT_REPEAT(4106), - [1283] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_match_arms_repeat1, 2), SHIFT_REPEAT(835), - [1286] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_match_arms_repeat1, 2), SHIFT_REPEAT(540), - [1289] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_match_arms_repeat1, 2), SHIFT_REPEAT(320), - [1292] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_match_arms_repeat1, 2), SHIFT_REPEAT(235), - [1295] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_match_arms_repeat1, 2), SHIFT_REPEAT(4197), - [1298] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_match_arms_repeat1, 2), SHIFT_REPEAT(3912), - [1301] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_arms_repeat1, 2), SHIFT_REPEAT(2660), - [1304] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_match_arms_repeat1, 2), SHIFT_REPEAT(2769), - [1307] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_match_arms_repeat1, 2), SHIFT_REPEAT(1580), - [1310] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_arms_repeat1, 2), SHIFT_REPEAT(3196), - [1313] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_match_arms_repeat1, 2), SHIFT_REPEAT(3177), - [1316] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_match_arms_repeat1, 2), SHIFT_REPEAT(3173), - [1319] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_match_arms_repeat1, 2), SHIFT_REPEAT(3156), - [1322] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_arms_repeat1, 2), SHIFT_REPEAT(3437), - [1325] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_arms_repeat1, 2), SHIFT_REPEAT(3438), - [1328] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_arms_repeat1, 2), SHIFT_REPEAT(3439), - [1331] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_arms_repeat1, 2), SHIFT_REPEAT(3440), - [1334] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_arms_repeat1, 2), SHIFT_REPEAT(3917), - [1337] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_arms_repeat1, 2), SHIFT_REPEAT(3918), - [1340] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1963), - [1342] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1193), - [1344] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2659), - [1346] = {.entry = {.count = 1, .reusable = true}}, SHIFT(500), - [1348] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2206), - [1350] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_arms, 1), - [1352] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2865), - [1354] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1279), - [1356] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4122), - [1358] = {.entry = {.count = 1, .reusable = true}}, SHIFT(232), - [1360] = {.entry = {.count = 1, .reusable = true}}, SHIFT(717), - [1362] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3374), - [1364] = {.entry = {.count = 1, .reusable = true}}, SHIFT(882), - [1366] = {.entry = {.count = 1, .reusable = true}}, SHIFT(880), - [1368] = {.entry = {.count = 1, .reusable = true}}, SHIFT(68), - [1370] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4041), - [1372] = {.entry = {.count = 1, .reusable = true}}, SHIFT(879), - [1374] = {.entry = {.count = 1, .reusable = false}}, SHIFT(878), - [1376] = {.entry = {.count = 1, .reusable = false}}, SHIFT(877), - [1378] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4200), - [1380] = {.entry = {.count = 1, .reusable = true}}, SHIFT(349), - [1382] = {.entry = {.count = 1, .reusable = true}}, SHIFT(876), - [1384] = {.entry = {.count = 1, .reusable = true}}, SHIFT(874), - [1386] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1286), - [1388] = {.entry = {.count = 1, .reusable = false}}, SHIFT(297), - [1390] = {.entry = {.count = 1, .reusable = false}}, SHIFT(718), - [1392] = {.entry = {.count = 1, .reusable = false}}, SHIFT(512), - [1394] = {.entry = {.count = 1, .reusable = false}}, SHIFT(336), - [1396] = {.entry = {.count = 1, .reusable = false}}, SHIFT(283), - [1398] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3568), - [1400] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3884), - [1402] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1387), - [1404] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1286), - [1406] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1308), - [1408] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3528), - [1410] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3447), - [1412] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3454), - [1414] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3456), - [1416] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3870), - [1418] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3859), - [1420] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1803), - [1422] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2552), - [1424] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1733), - [1426] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2429), - [1428] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4207), - [1430] = {.entry = {.count = 1, .reusable = true}}, SHIFT(245), - [1432] = {.entry = {.count = 1, .reusable = true}}, SHIFT(712), - [1434] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3366), - [1436] = {.entry = {.count = 1, .reusable = true}}, SHIFT(659), - [1438] = {.entry = {.count = 1, .reusable = true}}, SHIFT(658), - [1440] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4142), - [1442] = {.entry = {.count = 1, .reusable = true}}, SHIFT(655), - [1444] = {.entry = {.count = 1, .reusable = false}}, SHIFT(653), - [1446] = {.entry = {.count = 1, .reusable = false}}, SHIFT(652), - [1448] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4204), - [1450] = {.entry = {.count = 1, .reusable = true}}, SHIFT(441), - [1452] = {.entry = {.count = 1, .reusable = true}}, SHIFT(651), - [1454] = {.entry = {.count = 1, .reusable = true}}, SHIFT(650), - [1456] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2308), - [1458] = {.entry = {.count = 1, .reusable = false}}, SHIFT(265), - [1460] = {.entry = {.count = 1, .reusable = false}}, SHIFT(713), - [1462] = {.entry = {.count = 1, .reusable = false}}, SHIFT(504), - [1464] = {.entry = {.count = 1, .reusable = false}}, SHIFT(345), - [1466] = {.entry = {.count = 1, .reusable = false}}, SHIFT(273), - [1468] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3572), - [1470] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3907), - [1472] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2308), - [1474] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2292), - [1476] = {.entry = {.count = 1, .reusable = true}}, SHIFT(509), - [1478] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3515), - [1480] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3511), - [1482] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3503), - [1484] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3502), - [1486] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3911), - [1488] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3913), - [1490] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2102), - [1492] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2393), - [1494] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1331), - [1496] = {.entry = {.count = 1, .reusable = false}}, SHIFT(181), - [1498] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1042), - [1500] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2653), - [1502] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_argument_list_repeat1, 2), SHIFT_REPEAT(1134), - [1505] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_argument_list_repeat1, 2), SHIFT_REPEAT(4261), - [1508] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_argument_list_repeat1, 2), SHIFT_REPEAT(301), - [1511] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_argument_list_repeat1, 2), SHIFT_REPEAT(773), - [1514] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_argument_list_repeat1, 2), - [1516] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_argument_list_repeat1, 2), SHIFT_REPEAT(3370), - [1519] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_argument_list_repeat1, 2), SHIFT_REPEAT(623), - [1522] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_argument_list_repeat1, 2), SHIFT_REPEAT(586), - [1525] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_argument_list_repeat1, 2), SHIFT_REPEAT(829), - [1528] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_argument_list_repeat1, 2), SHIFT_REPEAT(4029), - [1531] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_argument_list_repeat1, 2), SHIFT_REPEAT(2126), - [1534] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_argument_list_repeat1, 2), SHIFT_REPEAT(2863), - [1537] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_argument_list_repeat1, 2), SHIFT_REPEAT(585), - [1540] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_argument_list_repeat1, 2), SHIFT_REPEAT(620), - [1543] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_argument_list_repeat1, 2), SHIFT_REPEAT(618), - [1546] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_argument_list_repeat1, 2), SHIFT_REPEAT(4249), - [1549] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_argument_list_repeat1, 2), SHIFT_REPEAT(390), - [1552] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_argument_list_repeat1, 2), SHIFT_REPEAT(579), - [1555] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_argument_list_repeat1, 2), SHIFT_REPEAT(613), - [1558] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_argument_list_repeat1, 2), SHIFT_REPEAT(1147), - [1561] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_argument_list_repeat1, 2), SHIFT_REPEAT(237), - [1564] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_argument_list_repeat1, 2), SHIFT_REPEAT(774), - [1567] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_argument_list_repeat1, 2), SHIFT_REPEAT(503), - [1570] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_argument_list_repeat1, 2), SHIFT_REPEAT(467), - [1573] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_argument_list_repeat1, 2), SHIFT_REPEAT(305), - [1576] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_argument_list_repeat1, 2), SHIFT_REPEAT(4241), - [1579] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_argument_list_repeat1, 2), SHIFT_REPEAT(3898), - [1582] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_argument_list_repeat1, 2), SHIFT_REPEAT(1147), - [1585] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_argument_list_repeat1, 2), SHIFT_REPEAT(1146), - [1588] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_argument_list_repeat1, 2), SHIFT_REPEAT(1580), - [1591] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_argument_list_repeat1, 2), SHIFT_REPEAT(3196), - [1594] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_argument_list_repeat1, 2), SHIFT_REPEAT(3177), - [1597] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_argument_list_repeat1, 2), SHIFT_REPEAT(3173), - [1600] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_argument_list_repeat1, 2), SHIFT_REPEAT(3156), - [1603] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_argument_list_repeat1, 2), SHIFT_REPEAT(3520), - [1606] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_argument_list_repeat1, 2), SHIFT_REPEAT(3521), - [1609] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_argument_list_repeat1, 2), SHIFT_REPEAT(3522), - [1612] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_argument_list_repeat1, 2), SHIFT_REPEAT(3523), - [1615] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_argument_list_repeat1, 2), SHIFT_REPEAT(3899), - [1618] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_argument_list_repeat1, 2), SHIFT_REPEAT(3900), - [1621] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1711), - [1623] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2412), - [1625] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2568), - [1627] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2018), - [1629] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2028), - [1631] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1170), - [1633] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1347), - [1635] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2188), - [1637] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1835), - [1639] = {.entry = {.count = 1, .reusable = true}}, SHIFT(376), - [1641] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1999), - [1643] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_clause, 4, .production_id = 93), - [1645] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_clause, 2), - [1647] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_clause, 3, .production_id = 56), - [1649] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_simple_statement, 1), - [1651] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_simple_statement, 1), - [1653] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3696), - [1655] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3121), - [1657] = {.entry = {.count = 1, .reusable = false}}, SHIFT(511), - [1659] = {.entry = {.count = 1, .reusable = false}}, SHIFT(161), - [1661] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expression_list, 1), - [1663] = {.entry = {.count = 1, .reusable = false}}, SHIFT(785), - [1665] = {.entry = {.count = 1, .reusable = false}}, SHIFT(784), - [1667] = {.entry = {.count = 1, .reusable = false}}, SHIFT(783), - [1669] = {.entry = {.count = 1, .reusable = true}}, SHIFT(444), - [1671] = {.entry = {.count = 1, .reusable = false}}, SHIFT(443), - [1673] = {.entry = {.count = 1, .reusable = false}}, SHIFT(436), - [1675] = {.entry = {.count = 1, .reusable = false}}, SHIFT(435), - [1677] = {.entry = {.count = 1, .reusable = false}}, SHIFT(431), - [1679] = {.entry = {.count = 1, .reusable = false}}, SHIFT(428), - [1681] = {.entry = {.count = 1, .reusable = false}}, SHIFT(782), - [1683] = {.entry = {.count = 1, .reusable = false}}, SHIFT(780), - [1685] = {.entry = {.count = 1, .reusable = false}}, SHIFT(657), - [1687] = {.entry = {.count = 1, .reusable = false}}, SHIFT(778), - [1689] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4258), - [1691] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3013), - [1693] = {.entry = {.count = 1, .reusable = false}}, SHIFT(775), - [1695] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2424), - [1697] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4216), - [1699] = {.entry = {.count = 1, .reusable = false}}, SHIFT(296), - [1701] = {.entry = {.count = 1, .reusable = false}}, SHIFT(766), - [1703] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3375), - [1705] = {.entry = {.count = 1, .reusable = false}}, SHIFT(703), - [1707] = {.entry = {.count = 1, .reusable = false}}, SHIFT(701), - [1709] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4033), - [1711] = {.entry = {.count = 1, .reusable = false}}, SHIFT(700), - [1713] = {.entry = {.count = 1, .reusable = false}}, SHIFT(698), - [1715] = {.entry = {.count = 1, .reusable = false}}, SHIFT(692), - [1717] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4240), - [1719] = {.entry = {.count = 1, .reusable = false}}, SHIFT(357), - [1721] = {.entry = {.count = 1, .reusable = false}}, SHIFT(690), - [1723] = {.entry = {.count = 1, .reusable = false}}, SHIFT(688), - [1725] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2469), - [1727] = {.entry = {.count = 1, .reusable = false}}, SHIFT(286), - [1729] = {.entry = {.count = 1, .reusable = false}}, SHIFT(767), - [1731] = {.entry = {.count = 1, .reusable = false}}, SHIFT(510), - [1733] = {.entry = {.count = 1, .reusable = false}}, SHIFT(498), - [1735] = {.entry = {.count = 1, .reusable = false}}, SHIFT(288), - [1737] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4246), - [1739] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3838), - [1741] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2454), - [1743] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3445), - [1745] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3444), - [1747] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3443), - [1749] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3505), - [1751] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3839), - [1753] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3840), - [1755] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_clause, 3, .production_id = 62), - [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}}, REDUCE(sym_unary_expression, 2, .production_id = 3), - [1765] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_unary_expression, 2, .production_id = 3), - [1767] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_in_expression, 3, .production_id = 31), - [1769] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_in_expression, 3, .production_id = 31), - [1771] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_spawn_expression, 2), - [1773] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_spawn_expression, 2), - [1775] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_receive_expression, 2, .production_id = 3), - [1777] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_receive_expression, 2, .production_id = 3), - [1779] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_go_expression, 2), - [1781] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_go_expression, 2), - [1783] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_binary_expression, 3, .production_id = 28), - [1785] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_binary_expression, 3, .production_id = 28), + [1014] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_select_expression_repeat1, 2), SHIFT_REPEAT(785), + [1017] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_select_expression_repeat1, 2), SHIFT_REPEAT(515), + [1020] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_select_expression_repeat1, 2), SHIFT_REPEAT(466), + [1023] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_select_expression_repeat1, 2), SHIFT_REPEAT(261), + [1026] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_select_expression_repeat1, 2), SHIFT_REPEAT(4258), + [1029] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_select_expression_repeat1, 2), SHIFT_REPEAT(3947), + [1032] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_select_expression_repeat1, 2), SHIFT_REPEAT(2029), + [1035] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_select_expression_repeat1, 2), SHIFT_REPEAT(2030), + [1038] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_select_expression_repeat1, 2), SHIFT_REPEAT(1581), + [1041] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_select_expression_repeat1, 2), SHIFT_REPEAT(3182), + [1044] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_select_expression_repeat1, 2), SHIFT_REPEAT(3166), + [1047] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_select_expression_repeat1, 2), SHIFT_REPEAT(3142), + [1050] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_select_expression_repeat1, 2), SHIFT_REPEAT(3129), + [1053] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_select_expression_repeat1, 2), SHIFT_REPEAT(3458), + [1056] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_select_expression_repeat1, 2), SHIFT_REPEAT(3470), + [1059] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_select_expression_repeat1, 2), SHIFT_REPEAT(3474), + [1062] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_select_expression_repeat1, 2), SHIFT_REPEAT(3475), + [1065] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_select_expression_repeat1, 2), SHIFT_REPEAT(3946), + [1068] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_select_expression_repeat1, 2), SHIFT_REPEAT(3941), + [1071] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2791), + [1073] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4087), + [1075] = {.entry = {.count = 1, .reusable = true}}, SHIFT(298), + [1077] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1959), + [1079] = {.entry = {.count = 1, .reusable = true}}, SHIFT(817), + [1081] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3376), + [1083] = {.entry = {.count = 1, .reusable = true}}, SHIFT(609), + [1085] = {.entry = {.count = 1, .reusable = true}}, SHIFT(626), + [1087] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4016), + [1089] = {.entry = {.count = 1, .reusable = true}}, SHIFT(524), + [1091] = {.entry = {.count = 1, .reusable = false}}, SHIFT(613), + [1093] = {.entry = {.count = 1, .reusable = false}}, SHIFT(615), + [1095] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4084), + [1097] = {.entry = {.count = 1, .reusable = true}}, SHIFT(492), + [1099] = {.entry = {.count = 1, .reusable = true}}, SHIFT(628), + [1101] = {.entry = {.count = 1, .reusable = true}}, SHIFT(617), + [1103] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2762), + [1105] = {.entry = {.count = 1, .reusable = false}}, SHIFT(275), + [1107] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4280), + [1109] = {.entry = {.count = 1, .reusable = false}}, SHIFT(818), + [1111] = {.entry = {.count = 1, .reusable = false}}, SHIFT(531), + [1113] = {.entry = {.count = 1, .reusable = false}}, SHIFT(420), + [1115] = {.entry = {.count = 1, .reusable = false}}, SHIFT(304), + [1117] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4083), + [1119] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3915), + [1121] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2762), + [1123] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2771), + [1125] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3473), + [1127] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3472), + [1129] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3471), + [1131] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3469), + [1133] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3920), + [1135] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3921), + [1137] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2070), + [1139] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1133), + [1141] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1748), + [1143] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3869), + [1145] = {.entry = {.count = 1, .reusable = true}}, SHIFT(920), + [1147] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1062), + [1149] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2504), + [1151] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2107), + [1153] = {.entry = {.count = 1, .reusable = true}}, SHIFT(447), + [1155] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1876), + [1157] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1349), + [1159] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1897), + [1161] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1927), + [1163] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2387), + [1165] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1010), + [1167] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2529), + [1169] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2249), + [1171] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1736), + [1173] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1204), + [1175] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2866), + [1177] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2661), + [1179] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1377), + [1181] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1162), + [1183] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2673), + [1185] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2223), + [1187] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2346), + [1189] = {.entry = {.count = 1, .reusable = true}}, SHIFT(464), + [1191] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2098), + [1193] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2874), + [1195] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1037), + [1197] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3012), + [1199] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3638), + [1201] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3212), + [1203] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4056), + [1205] = {.entry = {.count = 1, .reusable = false}}, SHIFT(177), + [1207] = {.entry = {.count = 1, .reusable = false}}, SHIFT(194), + [1209] = {.entry = {.count = 1, .reusable = false}}, SHIFT(541), + [1211] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3226), + [1213] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3231), + [1215] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3163), + [1217] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3169), + [1219] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3170), + [1221] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3186), + [1223] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2371), + [1225] = {.entry = {.count = 1, .reusable = true}}, SHIFT(503), + [1227] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2228), + [1229] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1881), + [1231] = {.entry = {.count = 1, .reusable = false}}, SHIFT(190), + [1233] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2662), + [1235] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1180), + [1237] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1306), + [1239] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_match_arms_repeat1, 2), SHIFT_REPEAT(2791), + [1242] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_match_arms_repeat1, 2), SHIFT_REPEAT(4087), + [1245] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_arms_repeat1, 2), SHIFT_REPEAT(298), + [1248] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_match_arms_repeat1, 2), + [1250] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_arms_repeat1, 2), SHIFT_REPEAT(817), + [1253] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_match_arms_repeat1, 2), SHIFT_REPEAT(3376), + [1256] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_arms_repeat1, 2), SHIFT_REPEAT(609), + [1259] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_arms_repeat1, 2), SHIFT_REPEAT(626), + [1262] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_match_arms_repeat1, 2), SHIFT_REPEAT(4016), + [1265] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_match_arms_repeat1, 2), SHIFT_REPEAT(2136), + [1268] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_arms_repeat1, 2), SHIFT_REPEAT(2839), + [1271] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_arms_repeat1, 2), SHIFT_REPEAT(524), + [1274] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_match_arms_repeat1, 2), SHIFT_REPEAT(613), + [1277] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_match_arms_repeat1, 2), SHIFT_REPEAT(615), + [1280] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_arms_repeat1, 2), SHIFT_REPEAT(4084), + [1283] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_arms_repeat1, 2), SHIFT_REPEAT(492), + [1286] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_arms_repeat1, 2), SHIFT_REPEAT(628), + [1289] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_arms_repeat1, 2), SHIFT_REPEAT(617), + [1292] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_match_arms_repeat1, 2), SHIFT_REPEAT(2762), + [1295] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_match_arms_repeat1, 2), SHIFT_REPEAT(275), + [1298] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_match_arms_repeat1, 2), SHIFT_REPEAT(4280), + [1301] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_match_arms_repeat1, 2), SHIFT_REPEAT(818), + [1304] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_match_arms_repeat1, 2), SHIFT_REPEAT(531), + [1307] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_match_arms_repeat1, 2), SHIFT_REPEAT(420), + [1310] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_match_arms_repeat1, 2), SHIFT_REPEAT(304), + [1313] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_match_arms_repeat1, 2), SHIFT_REPEAT(4083), + [1316] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_match_arms_repeat1, 2), SHIFT_REPEAT(3915), + [1319] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_arms_repeat1, 2), SHIFT_REPEAT(2762), + [1322] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_match_arms_repeat1, 2), SHIFT_REPEAT(2771), + [1325] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_match_arms_repeat1, 2), SHIFT_REPEAT(1581), + [1328] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_arms_repeat1, 2), SHIFT_REPEAT(3182), + [1331] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_match_arms_repeat1, 2), SHIFT_REPEAT(3166), + [1334] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_match_arms_repeat1, 2), SHIFT_REPEAT(3142), + [1337] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_match_arms_repeat1, 2), SHIFT_REPEAT(3129), + [1340] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_arms_repeat1, 2), SHIFT_REPEAT(3473), + [1343] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_arms_repeat1, 2), SHIFT_REPEAT(3472), + [1346] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_arms_repeat1, 2), SHIFT_REPEAT(3471), + [1349] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_arms_repeat1, 2), SHIFT_REPEAT(3469), + [1352] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_arms_repeat1, 2), SHIFT_REPEAT(3920), + [1355] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_arms_repeat1, 2), SHIFT_REPEAT(3921), + [1358] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_arms, 1), + [1360] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1292), + [1362] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4188), + [1364] = {.entry = {.count = 1, .reusable = true}}, SHIFT(241), + [1366] = {.entry = {.count = 1, .reusable = true}}, SHIFT(704), + [1368] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3369), + [1370] = {.entry = {.count = 1, .reusable = true}}, SHIFT(866), + [1372] = {.entry = {.count = 1, .reusable = true}}, SHIFT(865), + [1374] = {.entry = {.count = 1, .reusable = true}}, SHIFT(67), + [1376] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4042), + [1378] = {.entry = {.count = 1, .reusable = true}}, SHIFT(861), + [1380] = {.entry = {.count = 1, .reusable = false}}, SHIFT(860), + [1382] = {.entry = {.count = 1, .reusable = false}}, SHIFT(859), + [1384] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4180), + [1386] = {.entry = {.count = 1, .reusable = true}}, SHIFT(352), + [1388] = {.entry = {.count = 1, .reusable = true}}, SHIFT(858), + [1390] = {.entry = {.count = 1, .reusable = true}}, SHIFT(857), + [1392] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1291), + [1394] = {.entry = {.count = 1, .reusable = false}}, SHIFT(302), + [1396] = {.entry = {.count = 1, .reusable = false}}, SHIFT(720), + [1398] = {.entry = {.count = 1, .reusable = false}}, SHIFT(529), + [1400] = {.entry = {.count = 1, .reusable = false}}, SHIFT(324), + [1402] = {.entry = {.count = 1, .reusable = false}}, SHIFT(281), + [1404] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3548), + [1406] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3827), + [1408] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1392), + [1410] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1291), + [1412] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1314), + [1414] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3500), + [1416] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3499), + [1418] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3496), + [1420] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3491), + [1422] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3839), + [1424] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3840), + [1426] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1702), + [1428] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2447), + [1430] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4308), + [1432] = {.entry = {.count = 1, .reusable = true}}, SHIFT(283), + [1434] = {.entry = {.count = 1, .reusable = true}}, SHIFT(698), + [1436] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3367), + [1438] = {.entry = {.count = 1, .reusable = true}}, SHIFT(637), + [1440] = {.entry = {.count = 1, .reusable = true}}, SHIFT(635), + [1442] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4183), + [1444] = {.entry = {.count = 1, .reusable = true}}, SHIFT(634), + [1446] = {.entry = {.count = 1, .reusable = false}}, SHIFT(633), + [1448] = {.entry = {.count = 1, .reusable = false}}, SHIFT(631), + [1450] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4314), + [1452] = {.entry = {.count = 1, .reusable = true}}, SHIFT(355), + [1454] = {.entry = {.count = 1, .reusable = true}}, SHIFT(630), + [1456] = {.entry = {.count = 1, .reusable = true}}, SHIFT(629), + [1458] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2401), + [1460] = {.entry = {.count = 1, .reusable = false}}, SHIFT(240), + [1462] = {.entry = {.count = 1, .reusable = false}}, SHIFT(699), + [1464] = {.entry = {.count = 1, .reusable = false}}, SHIFT(532), + [1466] = {.entry = {.count = 1, .reusable = false}}, SHIFT(339), + [1468] = {.entry = {.count = 1, .reusable = false}}, SHIFT(269), + [1470] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3554), + [1472] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3860), + [1474] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2401), + [1476] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2392), + [1478] = {.entry = {.count = 1, .reusable = true}}, SHIFT(509), + [1480] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3537), + [1482] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3544), + [1484] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3542), + [1486] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3541), + [1488] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3834), + [1490] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3832), + [1492] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1048), + [1494] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1938), + [1496] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2518), + [1498] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1843), + [1500] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2391), + [1502] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1215), + [1504] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_argument_list_repeat1, 2), SHIFT_REPEAT(1133), + [1507] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_argument_list_repeat1, 2), SHIFT_REPEAT(4108), + [1510] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_argument_list_repeat1, 2), SHIFT_REPEAT(288), + [1513] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_argument_list_repeat1, 2), SHIFT_REPEAT(754), + [1516] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_argument_list_repeat1, 2), + [1518] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_argument_list_repeat1, 2), SHIFT_REPEAT(3383), + [1521] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_argument_list_repeat1, 2), SHIFT_REPEAT(604), + [1524] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_argument_list_repeat1, 2), SHIFT_REPEAT(567), + [1527] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_argument_list_repeat1, 2), SHIFT_REPEAT(920), + [1530] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_argument_list_repeat1, 2), SHIFT_REPEAT(4028), + [1533] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_argument_list_repeat1, 2), SHIFT_REPEAT(2136), + [1536] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_argument_list_repeat1, 2), SHIFT_REPEAT(2839), + [1539] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_argument_list_repeat1, 2), SHIFT_REPEAT(566), + [1542] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_argument_list_repeat1, 2), SHIFT_REPEAT(599), + [1545] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_argument_list_repeat1, 2), SHIFT_REPEAT(598), + [1548] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_argument_list_repeat1, 2), SHIFT_REPEAT(4109), + [1551] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_argument_list_repeat1, 2), SHIFT_REPEAT(436), + [1554] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_argument_list_repeat1, 2), SHIFT_REPEAT(563), + [1557] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_argument_list_repeat1, 2), SHIFT_REPEAT(595), + [1560] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_argument_list_repeat1, 2), SHIFT_REPEAT(1201), + [1563] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_argument_list_repeat1, 2), SHIFT_REPEAT(272), + [1566] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_argument_list_repeat1, 2), SHIFT_REPEAT(756), + [1569] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_argument_list_repeat1, 2), SHIFT_REPEAT(511), + [1572] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_argument_list_repeat1, 2), SHIFT_REPEAT(451), + [1575] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_argument_list_repeat1, 2), SHIFT_REPEAT(291), + [1578] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_argument_list_repeat1, 2), SHIFT_REPEAT(4128), + [1581] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_argument_list_repeat1, 2), SHIFT_REPEAT(3911), + [1584] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_argument_list_repeat1, 2), SHIFT_REPEAT(1201), + [1587] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_argument_list_repeat1, 2), SHIFT_REPEAT(1209), + [1590] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_argument_list_repeat1, 2), SHIFT_REPEAT(1581), + [1593] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_argument_list_repeat1, 2), SHIFT_REPEAT(3182), + [1596] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_argument_list_repeat1, 2), SHIFT_REPEAT(3166), + [1599] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_argument_list_repeat1, 2), SHIFT_REPEAT(3142), + [1602] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_argument_list_repeat1, 2), SHIFT_REPEAT(3129), + [1605] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_argument_list_repeat1, 2), SHIFT_REPEAT(3525), + [1608] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_argument_list_repeat1, 2), SHIFT_REPEAT(3526), + [1611] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_argument_list_repeat1, 2), SHIFT_REPEAT(3527), + [1614] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_argument_list_repeat1, 2), SHIFT_REPEAT(3528), + [1617] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_argument_list_repeat1, 2), SHIFT_REPEAT(3794), + [1620] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_argument_list_repeat1, 2), SHIFT_REPEAT(3795), + [1623] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1703), + [1625] = {.entry = {.count = 1, .reusable = true}}, SHIFT(361), + [1627] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1371), + [1629] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2635), + [1631] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1016), + [1633] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2497), + [1635] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2252), + [1637] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1934), + [1639] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1965), + [1641] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_strictly_expression_list, 3), + [1643] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_strictly_expression_list, 3), + [1645] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3635), + [1647] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3144), + [1649] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_strictly_expression_list_repeat1, 2), + [1651] = {.entry = {.count = 1, .reusable = false}}, SHIFT(174), + [1653] = {.entry = {.count = 1, .reusable = false}}, SHIFT(780), + [1655] = {.entry = {.count = 1, .reusable = false}}, SHIFT(778), + [1657] = {.entry = {.count = 1, .reusable = false}}, SHIFT(777), + [1659] = {.entry = {.count = 1, .reusable = true}}, SHIFT(379), + [1661] = {.entry = {.count = 1, .reusable = false}}, SHIFT(377), + [1663] = {.entry = {.count = 1, .reusable = false}}, SHIFT(376), + [1665] = {.entry = {.count = 1, .reusable = false}}, SHIFT(374), + [1667] = {.entry = {.count = 1, .reusable = false}}, SHIFT(371), + [1669] = {.entry = {.count = 1, .reusable = false}}, SHIFT(370), + [1671] = {.entry = {.count = 1, .reusable = false}}, SHIFT(766), + [1673] = {.entry = {.count = 1, .reusable = false}}, SHIFT(764), + [1675] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4261), + [1677] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3131), + [1679] = {.entry = {.count = 1, .reusable = false}}, SHIFT(760), + [1681] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1968), + [1683] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_clause, 3, .production_id = 63), + [1685] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_clause, 3, .production_id = 57), + [1687] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_clause, 4, .production_id = 94), + [1689] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_clause, 2), + [1691] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2425), + [1693] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4013), + [1695] = {.entry = {.count = 1, .reusable = false}}, SHIFT(297), + [1697] = {.entry = {.count = 1, .reusable = false}}, SHIFT(749), + [1699] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3384), + [1701] = {.entry = {.count = 1, .reusable = false}}, SHIFT(680), + [1703] = {.entry = {.count = 1, .reusable = false}}, SHIFT(679), + [1705] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4032), + [1707] = {.entry = {.count = 1, .reusable = false}}, SHIFT(678), + [1709] = {.entry = {.count = 1, .reusable = false}}, SHIFT(675), + [1711] = {.entry = {.count = 1, .reusable = false}}, SHIFT(673), + [1713] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4025), + [1715] = {.entry = {.count = 1, .reusable = false}}, SHIFT(367), + [1717] = {.entry = {.count = 1, .reusable = false}}, SHIFT(671), + [1719] = {.entry = {.count = 1, .reusable = false}}, SHIFT(665), + [1721] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2464), + [1723] = {.entry = {.count = 1, .reusable = false}}, SHIFT(286), + [1725] = {.entry = {.count = 1, .reusable = false}}, SHIFT(750), + [1727] = {.entry = {.count = 1, .reusable = false}}, SHIFT(506), + [1729] = {.entry = {.count = 1, .reusable = false}}, SHIFT(432), + [1731] = {.entry = {.count = 1, .reusable = false}}, SHIFT(294), + [1733] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4035), + [1735] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3992), + [1737] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2465), + [1739] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3439), + [1741] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3440), + [1743] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3441), + [1745] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3442), + [1747] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3984), + [1749] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3966), + [1751] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_simple_statement, 1), + [1753] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_simple_statement, 1), + [1755] = {.entry = {.count = 1, .reusable = false}}, SHIFT(540), + [1757] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expression_list, 1), + [1759] = {.entry = {.count = 1, .reusable = false}}, SHIFT(767), + [1761] = {.entry = {.count = 1, .reusable = false}}, SHIFT(647), + [1763] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_binary_expression, 3, .production_id = 29), + [1765] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_binary_expression, 3, .production_id = 29), + [1767] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_unary_expression, 2, .production_id = 3), + [1769] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_unary_expression, 2, .production_id = 3), + [1771] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_go_expression, 2), + [1773] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_go_expression, 2), + [1775] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_append_statement, 3, .production_id = 32), + [1777] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_append_statement, 3, .production_id = 32), + [1779] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_in_expression, 3, .production_id = 32), + [1781] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_in_expression, 3, .production_id = 32), + [1783] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_receive_expression, 2, .production_id = 3), + [1785] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_receive_expression, 2, .production_id = 3), [1787] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_mutable_expression, 2), [1789] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_mutable_expression, 2), - [1791] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3046), - [1793] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_append_statement, 3, .production_id = 31), - [1795] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_append_statement, 3, .production_id = 31), + [1791] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3145), + [1793] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_spawn_expression, 2), + [1795] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_spawn_expression, 2), [1797] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_expression, 3, .production_id = 21), [1799] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_expression, 3, .production_id = 21), - [1801] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3732), + [1801] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3700), [1803] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_expression, 3, .production_id = 22), [1805] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_expression, 3, .production_id = 22), - [1807] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2444), - [1809] = {.entry = {.count = 1, .reusable = true}}, SHIFT(33), - [1811] = {.entry = {.count = 1, .reusable = true}}, SHIFT(846), - [1813] = {.entry = {.count = 1, .reusable = true}}, SHIFT(844), - [1815] = {.entry = {.count = 1, .reusable = true}}, SHIFT(842), - [1817] = {.entry = {.count = 1, .reusable = false}}, SHIFT(840), - [1819] = {.entry = {.count = 1, .reusable = false}}, SHIFT(839), - [1821] = {.entry = {.count = 1, .reusable = true}}, SHIFT(316), - [1823] = {.entry = {.count = 1, .reusable = true}}, SHIFT(838), - [1825] = {.entry = {.count = 1, .reusable = true}}, SHIFT(836), - [1827] = {.entry = {.count = 1, .reusable = false}}, SHIFT(263), - [1829] = {.entry = {.count = 1, .reusable = false}}, SHIFT(325), - [1831] = {.entry = {.count = 1, .reusable = false}}, SHIFT(276), - [1833] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4201), - [1835] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1385), - [1837] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2640), - [1839] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2639), - [1841] = {.entry = {.count = 1, .reusable = true}}, SHIFT(21), - [1843] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_block, 3), - [1845] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_block, 3), - [1847] = {.entry = {.count = 1, .reusable = true}}, SHIFT(34), - [1849] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_reference_expression, 1), - [1851] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_reference_expression, 1), - [1853] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_reference_expression, 1), REDUCE(sym_type_reference_expression, 1), - [1856] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_reference_expression, 1), REDUCE(sym_type_reference_expression, 1), - [1859] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1653), - [1861] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3590), + [1807] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_block, 2), + [1809] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_block, 2), + [1811] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_block, 3), + [1813] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_block, 3), + [1815] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2435), + [1817] = {.entry = {.count = 1, .reusable = true}}, SHIFT(814), + [1819] = {.entry = {.count = 1, .reusable = true}}, SHIFT(813), + [1821] = {.entry = {.count = 1, .reusable = true}}, SHIFT(812), + [1823] = {.entry = {.count = 1, .reusable = false}}, SHIFT(810), + [1825] = {.entry = {.count = 1, .reusable = false}}, SHIFT(809), + [1827] = {.entry = {.count = 1, .reusable = true}}, SHIFT(478), + [1829] = {.entry = {.count = 1, .reusable = true}}, SHIFT(808), + [1831] = {.entry = {.count = 1, .reusable = true}}, SHIFT(807), + [1833] = {.entry = {.count = 1, .reusable = false}}, SHIFT(282), + [1835] = {.entry = {.count = 1, .reusable = false}}, SHIFT(316), + [1837] = {.entry = {.count = 1, .reusable = false}}, SHIFT(252), + [1839] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4315), + [1841] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_compile_time_if_expression, 3, .production_id = 21), + [1843] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_compile_time_if_expression, 3, .production_id = 21), + [1845] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3745), + [1847] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1368), + [1849] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3682), + [1851] = {.entry = {.count = 1, .reusable = true}}, SHIFT(899), + [1853] = {.entry = {.count = 1, .reusable = true}}, SHIFT(894), + [1855] = {.entry = {.count = 1, .reusable = true}}, SHIFT(891), + [1857] = {.entry = {.count = 1, .reusable = false}}, SHIFT(897), + [1859] = {.entry = {.count = 1, .reusable = false}}, SHIFT(854), + [1861] = {.entry = {.count = 1, .reusable = true}}, SHIFT(842), [1863] = {.entry = {.count = 1, .reusable = true}}, SHIFT(823), - [1865] = {.entry = {.count = 1, .reusable = true}}, SHIFT(818), - [1867] = {.entry = {.count = 1, .reusable = true}}, SHIFT(816), - [1869] = {.entry = {.count = 1, .reusable = false}}, SHIFT(813), - [1871] = {.entry = {.count = 1, .reusable = false}}, SHIFT(812), - [1873] = {.entry = {.count = 1, .reusable = true}}, SHIFT(811), - [1875] = {.entry = {.count = 1, .reusable = true}}, SHIFT(810), - [1877] = {.entry = {.count = 1, .reusable = false}}, SHIFT(298), - [1879] = {.entry = {.count = 1, .reusable = false}}, SHIFT(367), - [1881] = {.entry = {.count = 1, .reusable = false}}, SHIFT(277), - [1883] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4048), - [1885] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2227), - [1887] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2229), - [1889] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2347), - [1891] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2074), - [1893] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1695), - [1895] = {.entry = {.count = 1, .reusable = true}}, SHIFT(35), - [1897] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_compile_time_if_expression, 4, .production_id = 55), - [1899] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_compile_time_if_expression, 4, .production_id = 55), - [1901] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3687), - [1903] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__plain_type_without_special, 1), - [1905] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__plain_type_without_special, 1), - [1907] = {.entry = {.count = 1, .reusable = true}}, SHIFT(28), - [1909] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1713), - [1911] = {.entry = {.count = 1, .reusable = true}}, SHIFT(418), - [1913] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3682), - [1915] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_block, 2), - [1917] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_block, 2), - [1919] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_compile_time_if_expression, 3, .production_id = 21), - [1921] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_compile_time_if_expression, 3, .production_id = 21), - [1923] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3734), - [1925] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1985), - [1927] = {.entry = {.count = 1, .reusable = true}}, SHIFT(326), - [1929] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1837), - [1931] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1841), - [1933] = {.entry = {.count = 1, .reusable = true}}, SHIFT(16), - [1935] = {.entry = {.count = 1, .reusable = true}}, SHIFT(30), - [1937] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1984), - [1939] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15), - [1941] = {.entry = {.count = 1, .reusable = true}}, SHIFT(37), - [1943] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2367), - [1945] = {.entry = {.count = 1, .reusable = true}}, SHIFT(18), - [1947] = {.entry = {.count = 1, .reusable = true}}, SHIFT(38), - [1949] = {.entry = {.count = 1, .reusable = true}}, SHIFT(20), - [1951] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_map_init_expression, 2), - [1953] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_map_init_expression, 2), - [1955] = {.entry = {.count = 1, .reusable = true}}, SHIFT(25), - [1957] = {.entry = {.count = 1, .reusable = true}}, SHIFT(22), - [1959] = {.entry = {.count = 1, .reusable = true}}, SHIFT(26), - [1961] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2843), - [1963] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2844), - [1965] = {.entry = {.count = 1, .reusable = true}}, SHIFT(19), - [1967] = {.entry = {.count = 1, .reusable = true}}, SHIFT(23), - [1969] = {.entry = {.count = 1, .reusable = true}}, SHIFT(29), - [1971] = {.entry = {.count = 1, .reusable = true}}, SHIFT(31), - [1973] = {.entry = {.count = 1, .reusable = true}}, SHIFT(27), - [1975] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2458), - [1977] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1214), - [1979] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_map_init_expression_repeat1, 2), SHIFT_REPEAT(2429), - [1982] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_map_init_expression_repeat1, 2), SHIFT_REPEAT(4207), - [1985] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_map_init_expression_repeat1, 2), SHIFT_REPEAT(245), - [1988] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_map_init_expression_repeat1, 2), - [1990] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_map_init_expression_repeat1, 2), SHIFT_REPEAT(712), - [1993] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_map_init_expression_repeat1, 2), SHIFT_REPEAT(3366), - [1996] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_map_init_expression_repeat1, 2), SHIFT_REPEAT(659), - [1999] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_map_init_expression_repeat1, 2), SHIFT_REPEAT(658), - [2002] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_map_init_expression_repeat1, 2), SHIFT_REPEAT(4142), - [2005] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_map_init_expression_repeat1, 2), SHIFT_REPEAT(2126), - [2008] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_map_init_expression_repeat1, 2), SHIFT_REPEAT(2863), - [2011] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_map_init_expression_repeat1, 2), SHIFT_REPEAT(655), - [2014] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_map_init_expression_repeat1, 2), SHIFT_REPEAT(653), - [2017] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_map_init_expression_repeat1, 2), SHIFT_REPEAT(652), - [2020] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_map_init_expression_repeat1, 2), SHIFT_REPEAT(4204), - [2023] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_map_init_expression_repeat1, 2), SHIFT_REPEAT(441), - [2026] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_map_init_expression_repeat1, 2), SHIFT_REPEAT(651), - [2029] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_map_init_expression_repeat1, 2), SHIFT_REPEAT(650), - [2032] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_map_init_expression_repeat1, 2), SHIFT_REPEAT(2308), - [2035] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_map_init_expression_repeat1, 2), SHIFT_REPEAT(263), - [2038] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_map_init_expression_repeat1, 2), SHIFT_REPEAT(713), - [2041] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_map_init_expression_repeat1, 2), SHIFT_REPEAT(504), - [2044] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_map_init_expression_repeat1, 2), SHIFT_REPEAT(345), - [2047] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_map_init_expression_repeat1, 2), SHIFT_REPEAT(273), - [2050] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_map_init_expression_repeat1, 2), SHIFT_REPEAT(4201), - [2053] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_map_init_expression_repeat1, 2), SHIFT_REPEAT(3907), - [2056] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_map_init_expression_repeat1, 2), SHIFT_REPEAT(2308), - [2059] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_map_init_expression_repeat1, 2), SHIFT_REPEAT(2292), - [2062] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_map_init_expression_repeat1, 2), SHIFT_REPEAT(1580), - [2065] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_map_init_expression_repeat1, 2), SHIFT_REPEAT(3196), - [2068] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_map_init_expression_repeat1, 2), SHIFT_REPEAT(3177), - [2071] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_map_init_expression_repeat1, 2), SHIFT_REPEAT(3173), - [2074] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_map_init_expression_repeat1, 2), SHIFT_REPEAT(3156), - [2077] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_map_init_expression_repeat1, 2), SHIFT_REPEAT(3515), - [2080] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_map_init_expression_repeat1, 2), SHIFT_REPEAT(3511), - [2083] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_map_init_expression_repeat1, 2), SHIFT_REPEAT(3503), - [2086] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_map_init_expression_repeat1, 2), SHIFT_REPEAT(3502), - [2089] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_map_init_expression_repeat1, 2), SHIFT_REPEAT(3911), - [2092] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_map_init_expression_repeat1, 2), SHIFT_REPEAT(3913), - [2095] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2456), - [2097] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2030), - [2099] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1217), - [2101] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14), - [2103] = {.entry = {.count = 1, .reusable = true}}, SHIFT(24), - [2105] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1030), - [2107] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13), - [2109] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1087), - [2111] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1365), - [2113] = {.entry = {.count = 1, .reusable = true}}, SHIFT(100), - [2115] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_atomic_type, 2), - [2117] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_atomic_type, 2), - [2119] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_literal, 4, .production_id = 47), - [2121] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_literal, 4, .production_id = 47), - [2123] = {.entry = {.count = 1, .reusable = true}}, SHIFT(97), - [2125] = {.entry = {.count = 1, .reusable = true}}, SHIFT(101), - [2127] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2701), - [2129] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2486), - [2131] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1581), - [2133] = {.entry = {.count = 1, .reusable = true}}, SHIFT(403), - [2135] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2803), - [2137] = {.entry = {.count = 1, .reusable = true}}, SHIFT(573), - [2139] = {.entry = {.count = 1, .reusable = true}}, SHIFT(464), - [2141] = {.entry = {.count = 1, .reusable = true}}, SHIFT(588), - [2143] = {.entry = {.count = 1, .reusable = true}}, SHIFT(98), - [2145] = {.entry = {.count = 1, .reusable = true}}, SHIFT(90), - [2147] = {.entry = {.count = 1, .reusable = true}}, SHIFT(93), - [2149] = {.entry = {.count = 1, .reusable = true}}, SHIFT(86), - [2151] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameter_list, 4), - [2153] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_parameter_list, 4), - [2155] = {.entry = {.count = 1, .reusable = true}}, SHIFT(88), - [2157] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_map_init_expression, 3), - [2159] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_map_init_expression, 3), - [2161] = {.entry = {.count = 1, .reusable = true}}, SHIFT(104), - [2163] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_call_expression, 2, .production_id = 4), - [2165] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_call_expression, 2, .production_id = 4), - [2167] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_map_type, 4, .production_id = 59), - [2169] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_map_type, 4, .production_id = 59), - [2171] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parenthesized_expression, 3, .production_id = 11), - [2173] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parenthesized_expression, 3, .production_id = 11), - [2175] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter_list, 4), - [2177] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parameter_list, 4), - [2179] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1256), - [2181] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_fixed_array_type, 4, .production_id = 53), - [2183] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_fixed_array_type, 4, .production_id = 53), - [2185] = {.entry = {.count = 1, .reusable = true}}, SHIFT(89), - [2187] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1250), - [2189] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2614), - [2191] = {.entry = {.count = 1, .reusable = true}}, SHIFT(587), - [2193] = {.entry = {.count = 1, .reusable = true}}, SHIFT(555), - [2195] = {.entry = {.count = 1, .reusable = true}}, SHIFT(554), - [2197] = {.entry = {.count = 1, .reusable = false}}, SHIFT(584), - [2199] = {.entry = {.count = 1, .reusable = false}}, SHIFT(582), - [2201] = {.entry = {.count = 1, .reusable = true}}, SHIFT(476), - [2203] = {.entry = {.count = 1, .reusable = true}}, SHIFT(821), - [2205] = {.entry = {.count = 1, .reusable = true}}, SHIFT(578), - [2207] = {.entry = {.count = 1, .reusable = false}}, SHIFT(354), - [2209] = {.entry = {.count = 1, .reusable = false}}, SHIFT(303), - [2211] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__struct_body, 3), - [2213] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__struct_body, 3), - [2215] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameter_list, 3), - [2217] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_parameter_list, 3), - [2219] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1382), - [2221] = {.entry = {.count = 1, .reusable = true}}, SHIFT(99), - [2223] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter_list, 3), - [2225] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parameter_list, 3), - [2227] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_special_argument_list, 5, .production_id = 52), - [2229] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_special_argument_list, 5, .production_id = 52), - [2231] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_compile_time_if_expression, 6, .production_id = 115), - [2233] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_compile_time_if_expression, 6, .production_id = 115), - [2235] = {.entry = {.count = 1, .reusable = true}}, SHIFT(984), - [2237] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_initializer_body, 3, .production_id = 71), - [2239] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_initializer_body, 3, .production_id = 71), - [2241] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_literal, 3, .production_id = 15), - [2243] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_literal, 3, .production_id = 15), - [2245] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_initializer_body, 3, .production_id = 70), - [2247] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_initializer_body, 3, .production_id = 70), - [2249] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_is_expression, 4, .dynamic_precedence = 2, .production_id = 69), - [2251] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_is_expression, 4, .dynamic_precedence = 2, .production_id = 69), - [2253] = {.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), - [2256] = {.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), - [2259] = {.entry = {.count = 1, .reusable = true}}, SHIFT(105), - [2261] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1197), - [2263] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1439), - [2265] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_literal, 5, .production_id = 83), - [2267] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_literal, 5, .production_id = 83), - [2269] = {.entry = {.count = 1, .reusable = true}}, SHIFT(95), - [2271] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_multi_return_type, 4), - [2273] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_multi_return_type, 4), - [2275] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2099), - [2277] = {.entry = {.count = 1, .reusable = true}}, SHIFT(103), - [2279] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_select_expression, 6, .production_id = 58), - [2281] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_select_expression, 6, .production_id = 58), - [2283] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_slice_expression, 4, .production_id = 66), - [2285] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_slice_expression, 4, .production_id = 66), - [2287] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_compile_time_selector_expression, 4), - [2289] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_compile_time_selector_expression, 4), - [2291] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_literal, 4, .production_id = 48), - [2293] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_literal, 4, .production_id = 48), - [2295] = {.entry = {.count = 1, .reusable = true}}, SHIFT(87), - [2297] = {.entry = {.count = 1, .reusable = true}}, SHIFT(102), - [2299] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1095), - [2301] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1120), - [2303] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_index_expression, 4, .dynamic_precedence = -1, .production_id = 64), - [2305] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_index_expression, 4, .dynamic_precedence = -1, .production_id = 64), - [2307] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_initializer, 2, .production_id = 10), - [2309] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_initializer, 2, .production_id = 10), - [2311] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_short_element_list, 1), - [2313] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_argument_list, 3), - [2315] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_argument_list, 3), - [2317] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2337), - [2319] = {.entry = {.count = 1, .reusable = true}}, SHIFT(304), - [2321] = {.entry = {.count = 1, .reusable = true}}, SHIFT(736), - [2323] = {.entry = {.count = 1, .reusable = true}}, SHIFT(800), - [2325] = {.entry = {.count = 1, .reusable = true}}, SHIFT(799), - [2327] = {.entry = {.count = 1, .reusable = true}}, SHIFT(797), - [2329] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4222), - [2331] = {.entry = {.count = 1, .reusable = true}}, SHIFT(479), - [2333] = {.entry = {.count = 1, .reusable = true}}, SHIFT(792), - [2335] = {.entry = {.count = 1, .reusable = true}}, SHIFT(791), - [2337] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1006), - [2339] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3512), - [2341] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3509), - [2343] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3504), - [2345] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3432), - [2347] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3812), - [2349] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3874), - [2351] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_lock_expression, 2, .production_id = 7), - [2353] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_lock_expression, 2, .production_id = 7), - [2355] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_string_interpolation_repeat1, 2), SHIFT_REPEAT(1279), - [2358] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_string_interpolation_repeat1, 2), SHIFT_REPEAT(4122), - [2361] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_string_interpolation_repeat1, 2), SHIFT_REPEAT(232), - [2364] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_string_interpolation_repeat1, 2), - [2366] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_string_interpolation_repeat1, 2), SHIFT_REPEAT(717), - [2369] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_string_interpolation_repeat1, 2), SHIFT_REPEAT(3374), - [2372] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_string_interpolation_repeat1, 2), SHIFT_REPEAT(823), - [2375] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_string_interpolation_repeat1, 2), SHIFT_REPEAT(818), - [2378] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_string_interpolation_repeat1, 2), SHIFT_REPEAT(4041), - [2381] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_string_interpolation_repeat1, 2), SHIFT_REPEAT(2126), - [2384] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_string_interpolation_repeat1, 2), SHIFT_REPEAT(2863), - [2387] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_string_interpolation_repeat1, 2), SHIFT_REPEAT(816), - [2390] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_string_interpolation_repeat1, 2), SHIFT_REPEAT(813), - [2393] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_string_interpolation_repeat1, 2), SHIFT_REPEAT(812), - [2396] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_string_interpolation_repeat1, 2), SHIFT_REPEAT(4200), - [2399] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_string_interpolation_repeat1, 2), SHIFT_REPEAT(349), - [2402] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_string_interpolation_repeat1, 2), SHIFT_REPEAT(811), - [2405] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_string_interpolation_repeat1, 2), SHIFT_REPEAT(810), - [2408] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_string_interpolation_repeat1, 2), SHIFT_REPEAT(1286), - [2411] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_string_interpolation_repeat1, 2), SHIFT_REPEAT(298), - [2414] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_string_interpolation_repeat1, 2), SHIFT_REPEAT(718), - [2417] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_string_interpolation_repeat1, 2), SHIFT_REPEAT(512), - [2420] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_string_interpolation_repeat1, 2), SHIFT_REPEAT(367), - [2423] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_string_interpolation_repeat1, 2), SHIFT_REPEAT(277), - [2426] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_string_interpolation_repeat1, 2), SHIFT_REPEAT(4048), - [2429] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_string_interpolation_repeat1, 2), SHIFT_REPEAT(3884), - [2432] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_string_interpolation_repeat1, 2), SHIFT_REPEAT(1286), - [2435] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_string_interpolation_repeat1, 2), SHIFT_REPEAT(1308), - [2438] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_string_interpolation_repeat1, 2), SHIFT_REPEAT(1580), - [2441] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_string_interpolation_repeat1, 2), SHIFT_REPEAT(3196), - [2444] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_string_interpolation_repeat1, 2), SHIFT_REPEAT(3177), - [2447] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_string_interpolation_repeat1, 2), SHIFT_REPEAT(3173), - [2450] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_string_interpolation_repeat1, 2), SHIFT_REPEAT(3156), - [2453] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_string_interpolation_repeat1, 2), SHIFT_REPEAT(3528), - [2456] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_string_interpolation_repeat1, 2), SHIFT_REPEAT(3447), - [2459] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_string_interpolation_repeat1, 2), SHIFT_REPEAT(3454), - [2462] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_string_interpolation_repeat1, 2), SHIFT_REPEAT(3456), - [2465] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_string_interpolation_repeat1, 2), SHIFT_REPEAT(3870), - [2468] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_string_interpolation_repeat1, 2), SHIFT_REPEAT(3859), - [2471] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_unsafe_expression, 2), - [2473] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_unsafe_expression, 2), - [2475] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__content_block, 3), - [2477] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__content_block, 3), - [2479] = {.entry = {.count = 1, .reusable = true}}, SHIFT(951), - [2481] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_select_expression, 4, .production_id = 58), - [2483] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_select_expression, 4, .production_id = 58), - [2485] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_sql_expression, 2), - [2487] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_sql_expression, 2), - [2489] = {.entry = {.count = 1, .reusable = true}}, SHIFT(106), - [2491] = {.entry = {.count = 1, .reusable = true}}, SHIFT(927), - [2493] = {.entry = {.count = 1, .reusable = true}}, SHIFT(932), - [2495] = {.entry = {.count = 1, .reusable = true}}, SHIFT(394), - [2497] = {.entry = {.count = 1, .reusable = false}}, SHIFT(937), - [2499] = {.entry = {.count = 1, .reusable = false}}, SHIFT(940), - [2501] = {.entry = {.count = 1, .reusable = true}}, SHIFT(941), - [2503] = {.entry = {.count = 1, .reusable = true}}, SHIFT(942), - [2505] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_reference_expression, 1), - [2507] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_reference_expression, 1), - [2509] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generic_type, 2), - [2511] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_generic_type, 2), - [2513] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_or_block_expression, 2), - [2515] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_or_block_expression, 2), - [2517] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_call_expression, 2, .production_id = 9), - [2519] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_call_expression, 2, .production_id = 9), - [2521] = {.entry = {.count = 1, .reusable = true}}, SHIFT(92), - [2523] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_creation, 3), - [2525] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_creation, 3), - [2527] = {.entry = {.count = 1, .reusable = false}}, SHIFT(473), - [2529] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__array_repeat1, 2), SHIFT_REPEAT(1279), - [2532] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__array_repeat1, 2), SHIFT_REPEAT(4122), - [2535] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__array_repeat1, 2), SHIFT_REPEAT(232), - [2538] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__array_repeat1, 2), SHIFT_REPEAT(717), - [2541] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__array_repeat1, 2), SHIFT_REPEAT(3374), - [2544] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__array_repeat1, 2), SHIFT_REPEAT(882), - [2547] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__array_repeat1, 2), SHIFT_REPEAT(880), - [2550] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__array_repeat1, 2), - [2552] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__array_repeat1, 2), SHIFT_REPEAT(4041), - [2555] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__array_repeat1, 2), SHIFT_REPEAT(2126), - [2558] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__array_repeat1, 2), SHIFT_REPEAT(2863), - [2561] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__array_repeat1, 2), SHIFT_REPEAT(879), - [2564] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__array_repeat1, 2), SHIFT_REPEAT(878), - [2567] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__array_repeat1, 2), SHIFT_REPEAT(877), - [2570] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__array_repeat1, 2), SHIFT_REPEAT(4200), - [2573] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__array_repeat1, 2), SHIFT_REPEAT(349), - [2576] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__array_repeat1, 2), SHIFT_REPEAT(876), - [2579] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__array_repeat1, 2), SHIFT_REPEAT(874), - [2582] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__array_repeat1, 2), SHIFT_REPEAT(1286), - [2585] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__array_repeat1, 2), SHIFT_REPEAT(298), - [2588] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__array_repeat1, 2), SHIFT_REPEAT(718), - [2591] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__array_repeat1, 2), SHIFT_REPEAT(512), - [2594] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__array_repeat1, 2), SHIFT_REPEAT(336), - [2597] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__array_repeat1, 2), SHIFT_REPEAT(283), - [2600] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__array_repeat1, 2), SHIFT_REPEAT(4048), - [2603] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__array_repeat1, 2), SHIFT_REPEAT(3884), - [2606] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__array_repeat1, 2), SHIFT_REPEAT(1286), - [2609] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__array_repeat1, 2), SHIFT_REPEAT(1308), - [2612] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__array_repeat1, 2), SHIFT_REPEAT(1580), - [2615] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__array_repeat1, 2), SHIFT_REPEAT(3196), - [2618] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__array_repeat1, 2), SHIFT_REPEAT(3177), - [2621] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__array_repeat1, 2), SHIFT_REPEAT(3173), - [2624] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__array_repeat1, 2), SHIFT_REPEAT(3156), - [2627] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__array_repeat1, 2), SHIFT_REPEAT(3528), - [2630] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__array_repeat1, 2), SHIFT_REPEAT(3447), - [2633] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__array_repeat1, 2), SHIFT_REPEAT(3454), - [2636] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__array_repeat1, 2), SHIFT_REPEAT(3456), - [2639] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__array_repeat1, 2), SHIFT_REPEAT(3870), - [2642] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__array_repeat1, 2), SHIFT_REPEAT(3859), - [2645] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_type, 3, .dynamic_precedence = 2, .production_id = 20), - [2647] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_type, 3, .dynamic_precedence = 2, .production_id = 20), - [2649] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_else_branch, 2, .production_id = 88), - [2651] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_else_branch, 2, .production_id = 88), - [2653] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pointer_type, 2), - [2655] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_pointer_type, 2), - [2657] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_else_branch, 2, .production_id = 32), - [2659] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_else_branch, 2, .production_id = 32), - [2661] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_select_expression, 3), - [2663] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_select_expression, 3), - [2665] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_result_type, 2), - [2667] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_result_type, 2), - [2669] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1806), - [2671] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_select_expression, 4), - [2673] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_select_expression, 4), - [2675] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_compile_time_if_expression, 5, .production_id = 89), - [2677] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_compile_time_if_expression, 5, .production_id = 89), - [2679] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_wrong_pointer_type, 2), - [2681] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_wrong_pointer_type, 2), - [2683] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1102), - [2685] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_multi_return_type, 5), - [2687] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_multi_return_type, 5), - [2689] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_fetch, 2, .dynamic_precedence = -1), - [2691] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_fetch, 2, .dynamic_precedence = -1), - [2693] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1392), - [2695] = {.entry = {.count = 1, .reusable = true}}, SHIFT(96), - [2697] = {.entry = {.count = 1, .reusable = true}}, SHIFT(296), - [2699] = {.entry = {.count = 1, .reusable = true}}, SHIFT(766), - [2701] = {.entry = {.count = 1, .reusable = true}}, SHIFT(703), - [2703] = {.entry = {.count = 1, .reusable = true}}, SHIFT(701), - [2705] = {.entry = {.count = 1, .reusable = true}}, SHIFT(700), - [2707] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4240), - [2709] = {.entry = {.count = 1, .reusable = true}}, SHIFT(357), - [2711] = {.entry = {.count = 1, .reusable = true}}, SHIFT(690), - [2713] = {.entry = {.count = 1, .reusable = true}}, SHIFT(688), - [2715] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2469), - [2717] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3445), - [2719] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3444), - [2721] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3443), - [2723] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3505), - [2725] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3839), - [2727] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3840), - [2729] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_lock_expression, 3, .production_id = 23), - [2731] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_lock_expression, 3, .production_id = 23), - [2733] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_sql_expression, 3), - [2735] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_sql_expression, 3), - [2737] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_result_propagation_expression, 2), - [2739] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_result_propagation_expression, 2), - [2741] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1739), - [2743] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_type, 2, .production_id = 1), - [2745] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_type, 2, .production_id = 1), - [2747] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__struct_body, 2), - [2749] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__struct_body, 2), - [2751] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_option_propagation_expression, 2), - [2753] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_option_propagation_expression, 2), - [2755] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_dec_expression, 2), - [2757] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_dec_expression, 2), - [2759] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expression_without_blocks, 1), - [2761] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__expression_without_blocks, 1), - [2763] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__expression_without_blocks, 1), SHIFT(4287), - [2766] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expression_with_blocks, 1), - [2768] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__expression_with_blocks, 1), - [2770] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_signature, 2, .production_id = 16), - [2772] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_signature, 2, .production_id = 16), - [2774] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1496), - [2776] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expression, 1), - [2778] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__expression, 1), - [2780] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_inc_expression, 2), - [2782] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_inc_expression, 2), - [2784] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_plain_type, 1), - [2786] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_plain_type, 1), - [2788] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_expression, 5, .production_id = 56), - [2790] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_match_expression, 5, .production_id = 56), - [2792] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_interpreted_string_literal, 3), - [2794] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_interpreted_string_literal, 3), - [2796] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameters, 4, .dynamic_precedence = 2), - [2798] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_parameters, 4, .dynamic_precedence = 2), - [2800] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_c_string_literal, 3), - [2802] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_c_string_literal, 3), - [2804] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_raw_string_literal, 3), - [2806] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_raw_string_literal, 3), - [2808] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_anon_struct_type, 2), - [2810] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_anon_struct_type, 2), - [2812] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1203), - [2814] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_option_type, 2), - [2816] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_option_type, 2), - [2818] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_selector_expression, 3, .dynamic_precedence = -1, .production_id = 27), - [2820] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_selector_expression, 3, .dynamic_precedence = -1, .production_id = 27), - [2822] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_as_type_cast_expression, 3), - [2824] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_as_type_cast_expression, 3), - [2826] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameters, 3, .dynamic_precedence = 2), - [2828] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_parameters, 3, .dynamic_precedence = 2), - [2830] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_qualified_type, 3, .production_id = 34), - [2832] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_qualified_type, 3, .production_id = 34), + [1865] = {.entry = {.count = 1, .reusable = false}}, SHIFT(295), + [1867] = {.entry = {.count = 1, .reusable = false}}, SHIFT(456), + [1869] = {.entry = {.count = 1, .reusable = false}}, SHIFT(253), + [1871] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4302), + [1873] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1295), + [1875] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2300), + [1877] = {.entry = {.count = 1, .reusable = true}}, SHIFT(36), + [1879] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__plain_type_without_special, 1), + [1881] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__plain_type_without_special, 1), + [1883] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1858), + [1885] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1780), + [1887] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_reference_expression, 1), + [1889] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_reference_expression, 1), + [1891] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_reference_expression, 1), REDUCE(sym_type_reference_expression, 1), + [1894] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_reference_expression, 1), REDUCE(sym_type_reference_expression, 1), + [1897] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1663), + [1899] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3711), + [1901] = {.entry = {.count = 1, .reusable = true}}, SHIFT(30), + [1903] = {.entry = {.count = 1, .reusable = true}}, SHIFT(38), + [1905] = {.entry = {.count = 1, .reusable = true}}, SHIFT(37), + [1907] = {.entry = {.count = 1, .reusable = true}}, SHIFT(39), + [1909] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2841), + [1911] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_compile_time_if_expression, 4, .production_id = 56), + [1913] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_compile_time_if_expression, 4, .production_id = 56), + [1915] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3678), + [1917] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2840), + [1919] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1951), + [1921] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1708), + [1923] = {.entry = {.count = 1, .reusable = true}}, SHIFT(29), + [1925] = {.entry = {.count = 1, .reusable = true}}, SHIFT(31), + [1927] = {.entry = {.count = 1, .reusable = true}}, SHIFT(33), + [1929] = {.entry = {.count = 1, .reusable = true}}, SHIFT(18), + [1931] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1933), + [1933] = {.entry = {.count = 1, .reusable = true}}, SHIFT(27), + [1935] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1053), + [1937] = {.entry = {.count = 1, .reusable = true}}, SHIFT(17), + [1939] = {.entry = {.count = 1, .reusable = true}}, SHIFT(16), + [1941] = {.entry = {.count = 1, .reusable = true}}, SHIFT(22), + [1943] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1688), + [1945] = {.entry = {.count = 1, .reusable = true}}, SHIFT(34), + [1947] = {.entry = {.count = 1, .reusable = true}}, SHIFT(28), + [1949] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2187), + [1951] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2188), + [1953] = {.entry = {.count = 1, .reusable = true}}, SHIFT(362), + [1955] = {.entry = {.count = 1, .reusable = true}}, SHIFT(24), + [1957] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2289), + [1959] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13), + [1961] = {.entry = {.count = 1, .reusable = true}}, SHIFT(19), + [1963] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2034), + [1965] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1174), + [1967] = {.entry = {.count = 1, .reusable = true}}, SHIFT(312), + [1969] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1175), + [1971] = {.entry = {.count = 1, .reusable = true}}, SHIFT(21), + [1973] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2033), + [1975] = {.entry = {.count = 1, .reusable = true}}, SHIFT(23), + [1977] = {.entry = {.count = 1, .reusable = true}}, SHIFT(35), + [1979] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2492), + [1981] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2563), + [1983] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2634), + [1985] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2633), + [1987] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_map_init_expression, 2), + [1989] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_map_init_expression, 2), + [1991] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_map_init_expression_repeat1, 2), SHIFT_REPEAT(2447), + [1994] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_map_init_expression_repeat1, 2), SHIFT_REPEAT(4308), + [1997] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_map_init_expression_repeat1, 2), SHIFT_REPEAT(283), + [2000] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_map_init_expression_repeat1, 2), + [2002] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_map_init_expression_repeat1, 2), SHIFT_REPEAT(698), + [2005] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_map_init_expression_repeat1, 2), SHIFT_REPEAT(3367), + [2008] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_map_init_expression_repeat1, 2), SHIFT_REPEAT(637), + [2011] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_map_init_expression_repeat1, 2), SHIFT_REPEAT(635), + [2014] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_map_init_expression_repeat1, 2), SHIFT_REPEAT(4183), + [2017] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_map_init_expression_repeat1, 2), SHIFT_REPEAT(2136), + [2020] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_map_init_expression_repeat1, 2), SHIFT_REPEAT(2839), + [2023] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_map_init_expression_repeat1, 2), SHIFT_REPEAT(634), + [2026] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_map_init_expression_repeat1, 2), SHIFT_REPEAT(633), + [2029] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_map_init_expression_repeat1, 2), SHIFT_REPEAT(631), + [2032] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_map_init_expression_repeat1, 2), SHIFT_REPEAT(4314), + [2035] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_map_init_expression_repeat1, 2), SHIFT_REPEAT(355), + [2038] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_map_init_expression_repeat1, 2), SHIFT_REPEAT(630), + [2041] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_map_init_expression_repeat1, 2), SHIFT_REPEAT(629), + [2044] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_map_init_expression_repeat1, 2), SHIFT_REPEAT(2401), + [2047] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_map_init_expression_repeat1, 2), SHIFT_REPEAT(282), + [2050] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_map_init_expression_repeat1, 2), SHIFT_REPEAT(699), + [2053] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_map_init_expression_repeat1, 2), SHIFT_REPEAT(532), + [2056] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_map_init_expression_repeat1, 2), SHIFT_REPEAT(339), + [2059] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_map_init_expression_repeat1, 2), SHIFT_REPEAT(269), + [2062] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_map_init_expression_repeat1, 2), SHIFT_REPEAT(4315), + [2065] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_map_init_expression_repeat1, 2), SHIFT_REPEAT(3860), + [2068] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_map_init_expression_repeat1, 2), SHIFT_REPEAT(2401), + [2071] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_map_init_expression_repeat1, 2), SHIFT_REPEAT(2392), + [2074] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_map_init_expression_repeat1, 2), SHIFT_REPEAT(1581), + [2077] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_map_init_expression_repeat1, 2), SHIFT_REPEAT(3182), + [2080] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_map_init_expression_repeat1, 2), SHIFT_REPEAT(3166), + [2083] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_map_init_expression_repeat1, 2), SHIFT_REPEAT(3142), + [2086] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_map_init_expression_repeat1, 2), SHIFT_REPEAT(3129), + [2089] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_map_init_expression_repeat1, 2), SHIFT_REPEAT(3537), + [2092] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_map_init_expression_repeat1, 2), SHIFT_REPEAT(3544), + [2095] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_map_init_expression_repeat1, 2), SHIFT_REPEAT(3542), + [2098] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_map_init_expression_repeat1, 2), SHIFT_REPEAT(3541), + [2101] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_map_init_expression_repeat1, 2), SHIFT_REPEAT(3834), + [2104] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_map_init_expression_repeat1, 2), SHIFT_REPEAT(3832), + [2107] = {.entry = {.count = 1, .reusable = true}}, SHIFT(25), + [2109] = {.entry = {.count = 1, .reusable = true}}, SHIFT(26), + [2111] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1096), + [2113] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_literal, 3, .production_id = 15), + [2115] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_literal, 3, .production_id = 15), + [2117] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_sql_expression, 3), + [2119] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_sql_expression, 3), + [2121] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2544), + [2123] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_map_init_expression, 3), + [2125] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_map_init_expression, 3), + [2127] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2621), + [2129] = {.entry = {.count = 1, .reusable = true}}, SHIFT(591), + [2131] = {.entry = {.count = 1, .reusable = true}}, SHIFT(497), + [2133] = {.entry = {.count = 1, .reusable = true}}, SHIFT(607), + [2135] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_type, 2, .production_id = 1), + [2137] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_type, 2, .production_id = 1), + [2139] = {.entry = {.count = 1, .reusable = true}}, SHIFT(99), + [2141] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_fetch, 2, .dynamic_precedence = -1), + [2143] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_fetch, 2, .dynamic_precedence = -1), + [2145] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1106), + [2147] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parenthesized_expression, 3, .production_id = 11), + [2149] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parenthesized_expression, 3, .production_id = 11), + [2151] = {.entry = {.count = 1, .reusable = true}}, SHIFT(297), + [2153] = {.entry = {.count = 1, .reusable = true}}, SHIFT(749), + [2155] = {.entry = {.count = 1, .reusable = true}}, SHIFT(680), + [2157] = {.entry = {.count = 1, .reusable = true}}, SHIFT(679), + [2159] = {.entry = {.count = 1, .reusable = true}}, SHIFT(678), + [2161] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4025), + [2163] = {.entry = {.count = 1, .reusable = true}}, SHIFT(367), + [2165] = {.entry = {.count = 1, .reusable = true}}, SHIFT(671), + [2167] = {.entry = {.count = 1, .reusable = true}}, SHIFT(665), + [2169] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2464), + [2171] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3439), + [2173] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3440), + [2175] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3441), + [2177] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3442), + [2179] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3984), + [2181] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3966), + [2183] = {.entry = {.count = 1, .reusable = true}}, SHIFT(109), + [2185] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1188), + [2187] = {.entry = {.count = 1, .reusable = true}}, SHIFT(106), + [2189] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_initializer, 2, .production_id = 10), + [2191] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_initializer, 2, .production_id = 10), + [2193] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1257), + [2195] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1385), + [2197] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_literal, 4, .production_id = 49), + [2199] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_literal, 4, .production_id = 49), + [2201] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_initializer_body, 3, .production_id = 72), + [2203] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_initializer_body, 3, .production_id = 72), + [2205] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1674), + [2207] = {.entry = {.count = 1, .reusable = true}}, SHIFT(87), + [2209] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_initializer_body, 3, .production_id = 71), + [2211] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_initializer_body, 3, .production_id = 71), + [2213] = {.entry = {.count = 1, .reusable = true}}, SHIFT(95), + [2215] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_is_expression, 4, .dynamic_precedence = 2, .production_id = 70), + [2217] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_is_expression, 4, .dynamic_precedence = 2, .production_id = 70), + [2219] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_is_expression, 3, .dynamic_precedence = 2, .production_id = 32), REDUCE(sym_is_expression, 4, .dynamic_precedence = 2, .production_id = 70), + [2222] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_is_expression, 3, .dynamic_precedence = 2, .production_id = 32), REDUCE(sym_is_expression, 4, .dynamic_precedence = 2, .production_id = 70), + [2225] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1142), + [2227] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_literal, 4, .production_id = 48), + [2229] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_literal, 4, .production_id = 48), + [2231] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_compile_time_selector_expression, 4), + [2233] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_compile_time_selector_expression, 4), + [2235] = {.entry = {.count = 1, .reusable = true}}, SHIFT(307), + [2237] = {.entry = {.count = 1, .reusable = true}}, SHIFT(726), + [2239] = {.entry = {.count = 1, .reusable = true}}, SHIFT(781), + [2241] = {.entry = {.count = 1, .reusable = true}}, SHIFT(779), + [2243] = {.entry = {.count = 1, .reusable = true}}, SHIFT(776), + [2245] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4103), + [2247] = {.entry = {.count = 1, .reusable = true}}, SHIFT(369), + [2249] = {.entry = {.count = 1, .reusable = true}}, SHIFT(772), + [2251] = {.entry = {.count = 1, .reusable = true}}, SHIFT(771), + [2253] = {.entry = {.count = 1, .reusable = true}}, SHIFT(993), + [2255] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3459), + [2257] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3461), + [2259] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3466), + [2261] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3467), + [2263] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3925), + [2265] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3902), + [2267] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_call_expression, 2, .production_id = 4), + [2269] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_call_expression, 2, .production_id = 4), + [2271] = {.entry = {.count = 1, .reusable = true}}, SHIFT(927), + [2273] = {.entry = {.count = 1, .reusable = true}}, SHIFT(919), + [2275] = {.entry = {.count = 1, .reusable = true}}, SHIFT(351), + [2277] = {.entry = {.count = 1, .reusable = false}}, SHIFT(917), + [2279] = {.entry = {.count = 1, .reusable = false}}, SHIFT(916), + [2281] = {.entry = {.count = 1, .reusable = true}}, SHIFT(915), + [2283] = {.entry = {.count = 1, .reusable = true}}, SHIFT(914), + [2285] = {.entry = {.count = 1, .reusable = true}}, SHIFT(983), + [2287] = {.entry = {.count = 1, .reusable = true}}, SHIFT(88), + [2289] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1494), + [2291] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_or_block_expression, 2), + [2293] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_or_block_expression, 2), + [2295] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_slice_expression, 4, .production_id = 67), + [2297] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_slice_expression, 4, .production_id = 67), + [2299] = {.entry = {.count = 1, .reusable = true}}, SHIFT(108), + [2301] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_index_expression, 4, .dynamic_precedence = -1, .production_id = 65), + [2303] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_index_expression, 4, .dynamic_precedence = -1, .production_id = 65), + [2305] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_call_expression, 2, .production_id = 9), + [2307] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_call_expression, 2, .production_id = 9), + [2309] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_argument_list, 3), + [2311] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_argument_list, 3), + [2313] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_literal, 5, .production_id = 84), + [2315] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_literal, 5, .production_id = 84), + [2317] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_string_interpolation_repeat1, 2), SHIFT_REPEAT(1292), + [2320] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_string_interpolation_repeat1, 2), SHIFT_REPEAT(4188), + [2323] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_string_interpolation_repeat1, 2), SHIFT_REPEAT(241), + [2326] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_string_interpolation_repeat1, 2), + [2328] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_string_interpolation_repeat1, 2), SHIFT_REPEAT(704), + [2331] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_string_interpolation_repeat1, 2), SHIFT_REPEAT(3369), + [2334] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_string_interpolation_repeat1, 2), SHIFT_REPEAT(899), + [2337] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_string_interpolation_repeat1, 2), SHIFT_REPEAT(894), + [2340] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_string_interpolation_repeat1, 2), SHIFT_REPEAT(4042), + [2343] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_string_interpolation_repeat1, 2), SHIFT_REPEAT(2136), + [2346] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_string_interpolation_repeat1, 2), SHIFT_REPEAT(2839), + [2349] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_string_interpolation_repeat1, 2), SHIFT_REPEAT(891), + [2352] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_string_interpolation_repeat1, 2), SHIFT_REPEAT(897), + [2355] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_string_interpolation_repeat1, 2), SHIFT_REPEAT(854), + [2358] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_string_interpolation_repeat1, 2), SHIFT_REPEAT(4180), + [2361] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_string_interpolation_repeat1, 2), SHIFT_REPEAT(352), + [2364] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_string_interpolation_repeat1, 2), SHIFT_REPEAT(842), + [2367] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_string_interpolation_repeat1, 2), SHIFT_REPEAT(823), + [2370] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_string_interpolation_repeat1, 2), SHIFT_REPEAT(1291), + [2373] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_string_interpolation_repeat1, 2), SHIFT_REPEAT(295), + [2376] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_string_interpolation_repeat1, 2), SHIFT_REPEAT(720), + [2379] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_string_interpolation_repeat1, 2), SHIFT_REPEAT(529), + [2382] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_string_interpolation_repeat1, 2), SHIFT_REPEAT(456), + [2385] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_string_interpolation_repeat1, 2), SHIFT_REPEAT(253), + [2388] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_string_interpolation_repeat1, 2), SHIFT_REPEAT(4302), + [2391] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_string_interpolation_repeat1, 2), SHIFT_REPEAT(3827), + [2394] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_string_interpolation_repeat1, 2), SHIFT_REPEAT(1291), + [2397] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_string_interpolation_repeat1, 2), SHIFT_REPEAT(1314), + [2400] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_string_interpolation_repeat1, 2), SHIFT_REPEAT(1581), + [2403] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_string_interpolation_repeat1, 2), SHIFT_REPEAT(3182), + [2406] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_string_interpolation_repeat1, 2), SHIFT_REPEAT(3166), + [2409] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_string_interpolation_repeat1, 2), SHIFT_REPEAT(3142), + [2412] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_string_interpolation_repeat1, 2), SHIFT_REPEAT(3129), + [2415] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_string_interpolation_repeat1, 2), SHIFT_REPEAT(3500), + [2418] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_string_interpolation_repeat1, 2), SHIFT_REPEAT(3499), + [2421] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_string_interpolation_repeat1, 2), SHIFT_REPEAT(3496), + [2424] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_string_interpolation_repeat1, 2), SHIFT_REPEAT(3491), + [2427] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_string_interpolation_repeat1, 2), SHIFT_REPEAT(3839), + [2430] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_string_interpolation_repeat1, 2), SHIFT_REPEAT(3840), + [2433] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1917), + [2435] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1423), + [2437] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1250), + [2439] = {.entry = {.count = 1, .reusable = true}}, SHIFT(183), + [2441] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_result_propagation_expression, 2), + [2443] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_result_propagation_expression, 2), + [2445] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2102), + [2447] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_option_propagation_expression, 2), + [2449] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_option_propagation_expression, 2), + [2451] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_short_element_list, 1), + [2453] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_dec_expression, 2), + [2455] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_dec_expression, 2), + [2457] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_inc_expression, 2), + [2459] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_inc_expression, 2), + [2461] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_else_branch, 2, .production_id = 89), + [2463] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_else_branch, 2, .production_id = 89), + [2465] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_else_branch, 2, .production_id = 33), + [2467] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_else_branch, 2, .production_id = 33), + [2469] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__content_block, 3), + [2471] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__content_block, 3), + [2473] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_reference_expression, 1), + [2475] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_reference_expression, 1), + [2477] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2606), + [2479] = {.entry = {.count = 1, .reusable = true}}, SHIFT(568), + [2481] = {.entry = {.count = 1, .reusable = true}}, SHIFT(558), + [2483] = {.entry = {.count = 1, .reusable = true}}, SHIFT(557), + [2485] = {.entry = {.count = 1, .reusable = false}}, SHIFT(565), + [2487] = {.entry = {.count = 1, .reusable = false}}, SHIFT(564), + [2489] = {.entry = {.count = 1, .reusable = true}}, SHIFT(496), + [2491] = {.entry = {.count = 1, .reusable = true}}, SHIFT(832), + [2493] = {.entry = {.count = 1, .reusable = true}}, SHIFT(562), + [2495] = {.entry = {.count = 1, .reusable = false}}, SHIFT(480), + [2497] = {.entry = {.count = 1, .reusable = false}}, SHIFT(305), + [2499] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_select_expression, 4, .production_id = 59), + [2501] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_select_expression, 4, .production_id = 59), + [2503] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_compile_time_if_expression, 5, .production_id = 90), + [2505] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_compile_time_if_expression, 5, .production_id = 90), + [2507] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_plain_type, 1), + [2509] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_plain_type, 1), + [2511] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expression_without_blocks, 1), + [2513] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__expression_without_blocks, 1), + [2515] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__expression_without_blocks, 1), SHIFT(4286), + [2518] = {.entry = {.count = 1, .reusable = true}}, SHIFT(90), + [2520] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expression_with_blocks, 1), + [2522] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__expression_with_blocks, 1), + [2524] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2679), + [2526] = {.entry = {.count = 1, .reusable = true}}, SHIFT(105), + [2528] = {.entry = {.count = 1, .reusable = true}}, SHIFT(104), + [2530] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expression, 1), + [2532] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__expression, 1), + [2534] = {.entry = {.count = 1, .reusable = true}}, SHIFT(107), + [2536] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_anon_struct_type, 2), + [2538] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_anon_struct_type, 2), + [2540] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_creation, 3), + [2542] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_creation, 3), + [2544] = {.entry = {.count = 1, .reusable = false}}, SHIFT(469), + [2546] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__array_repeat1, 2), SHIFT_REPEAT(1292), + [2549] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__array_repeat1, 2), SHIFT_REPEAT(4188), + [2552] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__array_repeat1, 2), SHIFT_REPEAT(241), + [2555] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__array_repeat1, 2), SHIFT_REPEAT(704), + [2558] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__array_repeat1, 2), SHIFT_REPEAT(3369), + [2561] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__array_repeat1, 2), SHIFT_REPEAT(866), + [2564] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__array_repeat1, 2), SHIFT_REPEAT(865), + [2567] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__array_repeat1, 2), + [2569] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__array_repeat1, 2), SHIFT_REPEAT(4042), + [2572] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__array_repeat1, 2), SHIFT_REPEAT(2136), + [2575] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__array_repeat1, 2), SHIFT_REPEAT(2839), + [2578] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__array_repeat1, 2), SHIFT_REPEAT(861), + [2581] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__array_repeat1, 2), SHIFT_REPEAT(860), + [2584] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__array_repeat1, 2), SHIFT_REPEAT(859), + [2587] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__array_repeat1, 2), SHIFT_REPEAT(4180), + [2590] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__array_repeat1, 2), SHIFT_REPEAT(352), + [2593] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__array_repeat1, 2), SHIFT_REPEAT(858), + [2596] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__array_repeat1, 2), SHIFT_REPEAT(857), + [2599] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__array_repeat1, 2), SHIFT_REPEAT(1291), + [2602] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__array_repeat1, 2), SHIFT_REPEAT(295), + [2605] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__array_repeat1, 2), SHIFT_REPEAT(720), + [2608] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__array_repeat1, 2), SHIFT_REPEAT(529), + [2611] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__array_repeat1, 2), SHIFT_REPEAT(324), + [2614] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__array_repeat1, 2), SHIFT_REPEAT(281), + [2617] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__array_repeat1, 2), SHIFT_REPEAT(4302), + [2620] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__array_repeat1, 2), SHIFT_REPEAT(3827), + [2623] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__array_repeat1, 2), SHIFT_REPEAT(1291), + [2626] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__array_repeat1, 2), SHIFT_REPEAT(1314), + [2629] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__array_repeat1, 2), SHIFT_REPEAT(1581), + [2632] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__array_repeat1, 2), SHIFT_REPEAT(3182), + [2635] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__array_repeat1, 2), SHIFT_REPEAT(3166), + [2638] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__array_repeat1, 2), SHIFT_REPEAT(3142), + [2641] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__array_repeat1, 2), SHIFT_REPEAT(3129), + [2644] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__array_repeat1, 2), SHIFT_REPEAT(3500), + [2647] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__array_repeat1, 2), SHIFT_REPEAT(3499), + [2650] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__array_repeat1, 2), SHIFT_REPEAT(3496), + [2653] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__array_repeat1, 2), SHIFT_REPEAT(3491), + [2656] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__array_repeat1, 2), SHIFT_REPEAT(3839), + [2659] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__array_repeat1, 2), SHIFT_REPEAT(3840), + [2662] = {.entry = {.count = 1, .reusable = true}}, SHIFT(101), + [2664] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2295), + [2666] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_option_type, 2), + [2668] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_option_type, 2), + [2670] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_raw_string_literal, 2), + [2672] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_raw_string_literal, 2), + [2674] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_select_expression, 3), + [2676] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_select_expression, 3), + [2678] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_shared_type, 2), + [2680] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_shared_type, 2), + [2682] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_channel_type, 2), + [2684] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_channel_type, 2), + [2686] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_thread_type, 2), + [2688] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_thread_type, 2), + [2690] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_atomic_type, 2), + [2692] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_atomic_type, 2), + [2694] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_expression, 5, .production_id = 57), + [2696] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_match_expression, 5, .production_id = 57), + [2698] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_multi_return_type, 3), + [2700] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_multi_return_type, 3), + [2702] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter_list, 2), + [2704] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parameter_list, 2), + [2706] = {.entry = {.count = 1, .reusable = true}}, SHIFT(89), + [2708] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_signature, 2, .production_id = 16), + [2710] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_signature, 2, .production_id = 16), + [2712] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__struct_body, 2), + [2714] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__struct_body, 2), + [2716] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_select_expression, 4), + [2718] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_select_expression, 4), + [2720] = {.entry = {.count = 1, .reusable = true}}, SHIFT(404), + [2722] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_wrong_pointer_type, 2), + [2724] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_wrong_pointer_type, 2), + [2726] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameters, 4, .dynamic_precedence = 2), + [2728] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_parameters, 4, .dynamic_precedence = 2), + [2730] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_lock_expression, 3, .production_id = 23), + [2732] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_lock_expression, 3, .production_id = 23), + [2734] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_c_string_literal, 2), + [2736] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_c_string_literal, 2), + [2738] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_interpreted_string_literal, 2), + [2740] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_interpreted_string_literal, 2), + [2742] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_result_type, 2), + [2744] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_result_type, 2), + [2746] = {.entry = {.count = 1, .reusable = true}}, SHIFT(93), + [2748] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pointer_type, 2), + [2750] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_pointer_type, 2), + [2752] = {.entry = {.count = 1, .reusable = true}}, SHIFT(91), + [2754] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_type, 3, .dynamic_precedence = 2, .production_id = 20), + [2756] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_type, 3, .dynamic_precedence = 2, .production_id = 20), + [2758] = {.entry = {.count = 1, .reusable = true}}, SHIFT(950), + [2760] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1121), + [2762] = {.entry = {.count = 1, .reusable = true}}, SHIFT(92), + [2764] = {.entry = {.count = 1, .reusable = true}}, SHIFT(94), + [2766] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameters, 3, .dynamic_precedence = 2), + [2768] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_parameters, 3, .dynamic_precedence = 2), + [2770] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_qualified_type, 3, .production_id = 35), + [2772] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_qualified_type, 3, .production_id = 35), + [2774] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1862), + [2776] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_multi_return_type, 4), + [2778] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_multi_return_type, 4), + [2780] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_expression, 4, .production_id = 57), + [2782] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_match_expression, 4, .production_id = 57), + [2784] = {.entry = {.count = 1, .reusable = true}}, SHIFT(100), + [2786] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_interpreted_string_literal, 3), + [2788] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_interpreted_string_literal, 3), + [2790] = {.entry = {.count = 1, .reusable = true}}, SHIFT(103), + [2792] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_expression, 4, .production_id = 22), + [2794] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_expression, 4, .production_id = 22), + [2796] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_c_string_literal, 3), + [2798] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_c_string_literal, 3), + [2800] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_raw_string_literal, 3), + [2802] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_raw_string_literal, 3), + [2804] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__max_group, 1), + [2806] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__max_group, 1), + [2808] = {.entry = {.count = 1, .reusable = true}}, SHIFT(102), + [2810] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter_list, 3), + [2812] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parameter_list, 3), + [2814] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2847), + [2816] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2165), + [2818] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2273), + [2820] = {.entry = {.count = 1, .reusable = true}}, SHIFT(86), + [2822] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_selector_expression, 3, .dynamic_precedence = -1, .production_id = 28), + [2824] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_selector_expression, 3, .dynamic_precedence = -1, .production_id = 28), + [2826] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_as_type_cast_expression, 3), + [2828] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_as_type_cast_expression, 3), + [2830] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_expression, 4, .production_id = 21), + [2832] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_expression, 4, .production_id = 21), [2834] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_argument_list, 2), [2836] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_argument_list, 2), - [2838] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_expression, 4, .production_id = 56), - [2840] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_match_expression, 4, .production_id = 56), - [2842] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2079), - [2844] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_expression, 4, .production_id = 22), - [2846] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_expression, 4, .production_id = 22), - [2848] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_expression, 4, .production_id = 21), - [2850] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_expression, 4, .production_id = 21), - [2852] = {.entry = {.count = 1, .reusable = true}}, SHIFT(91), - [2854] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_anon_struct_value_expression, 4, .production_id = 49), - [2856] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_anon_struct_value_expression, 4, .production_id = 49), - [2858] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_anon_struct_value_expression, 4, .production_id = 50), - [2860] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_anon_struct_value_expression, 4, .production_id = 50), - [2862] = {.entry = {.count = 1, .reusable = true}}, SHIFT(94), - [2864] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1574), - [2866] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_fixed_array_creation, 4), - [2868] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_fixed_array_creation, 4), - [2870] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_shared_type, 2), - [2872] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_shared_type, 2), - [2874] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1585), - [2876] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_raw_string_literal, 2), - [2878] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_raw_string_literal, 2), - [2880] = {.entry = {.count = 1, .reusable = true}}, SHIFT(195), - [2882] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_or_block, 2, .production_id = 32), - [2884] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_or_block, 2, .production_id = 32), - [2886] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_is_expression, 3, .dynamic_precedence = 2, .production_id = 31), - [2888] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_is_expression, 3, .dynamic_precedence = 2, .production_id = 31), - [2890] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_c_string_literal, 2), - [2892] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_c_string_literal, 2), - [2894] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_call_expression, 3, .production_id = 33), - [2896] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_call_expression, 3, .production_id = 33), - [2898] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_channel_type, 2), - [2900] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_channel_type, 2), - [2902] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_select_expression, 5), - [2904] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_select_expression, 5), - [2906] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_select_expression, 5, .production_id = 58), - [2908] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_select_expression, 5, .production_id = 58), - [2910] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter_list, 2), - [2912] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parameter_list, 2), - [2914] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_multi_return_type, 3), - [2916] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_multi_return_type, 3), - [2918] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_thread_type, 2), - [2920] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_thread_type, 2), - [2922] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_short_element_list_repeat1, 2), SHIFT_REPEAT(1134), - [2925] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_short_element_list_repeat1, 2), SHIFT_REPEAT(4261), - [2928] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_short_element_list_repeat1, 2), SHIFT_REPEAT(301), - [2931] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_short_element_list_repeat1, 2), - [2933] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_short_element_list_repeat1, 2), SHIFT_REPEAT(773), - [2936] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_short_element_list_repeat1, 2), SHIFT_REPEAT(3370), - [2939] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_short_element_list_repeat1, 2), SHIFT_REPEAT(623), - [2942] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_short_element_list_repeat1, 2), SHIFT_REPEAT(586), - [2945] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_short_element_list_repeat1, 2), SHIFT_REPEAT(4029), - [2948] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_short_element_list_repeat1, 2), SHIFT_REPEAT(2126), - [2951] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_short_element_list_repeat1, 2), SHIFT_REPEAT(2863), - [2954] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_short_element_list_repeat1, 2), SHIFT_REPEAT(585), - [2957] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_short_element_list_repeat1, 2), SHIFT_REPEAT(620), - [2960] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_short_element_list_repeat1, 2), SHIFT_REPEAT(618), - [2963] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_short_element_list_repeat1, 2), SHIFT_REPEAT(4249), - [2966] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_short_element_list_repeat1, 2), SHIFT_REPEAT(390), - [2969] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_short_element_list_repeat1, 2), SHIFT_REPEAT(579), - [2972] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_short_element_list_repeat1, 2), SHIFT_REPEAT(613), - [2975] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_short_element_list_repeat1, 2), SHIFT_REPEAT(1147), - [2978] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_short_element_list_repeat1, 2), SHIFT_REPEAT(237), - [2981] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_short_element_list_repeat1, 2), SHIFT_REPEAT(774), - [2984] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_short_element_list_repeat1, 2), SHIFT_REPEAT(503), - [2987] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_short_element_list_repeat1, 2), SHIFT_REPEAT(467), - [2990] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_short_element_list_repeat1, 2), SHIFT_REPEAT(305), - [2993] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_short_element_list_repeat1, 2), SHIFT_REPEAT(4241), - [2996] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_short_element_list_repeat1, 2), SHIFT_REPEAT(3898), - [2999] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_short_element_list_repeat1, 2), SHIFT_REPEAT(1147), - [3002] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_short_element_list_repeat1, 2), SHIFT_REPEAT(1146), - [3005] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_short_element_list_repeat1, 2), SHIFT_REPEAT(1580), - [3008] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_short_element_list_repeat1, 2), SHIFT_REPEAT(3196), - [3011] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_short_element_list_repeat1, 2), SHIFT_REPEAT(3177), - [3014] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_short_element_list_repeat1, 2), SHIFT_REPEAT(3173), - [3017] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_short_element_list_repeat1, 2), SHIFT_REPEAT(3156), - [3020] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_short_element_list_repeat1, 2), SHIFT_REPEAT(3520), - [3023] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_short_element_list_repeat1, 2), SHIFT_REPEAT(3521), - [3026] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_short_element_list_repeat1, 2), SHIFT_REPEAT(3522), - [3029] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_short_element_list_repeat1, 2), SHIFT_REPEAT(3523), - [3032] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_short_element_list_repeat1, 2), SHIFT_REPEAT(3899), - [3035] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_short_element_list_repeat1, 2), SHIFT_REPEAT(3900), - [3038] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2220), - [3040] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_interpreted_string_literal, 2), - [3042] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_interpreted_string_literal, 2), - [3044] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_special_argument_list, 3, .production_id = 52), - [3046] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_special_argument_list, 3, .production_id = 52), - [3048] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__max_group, 1), - [3050] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__max_group, 1), - [3052] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_literal, 1), - [3054] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_literal, 1), - [3056] = {.entry = {.count = 1, .reusable = true}}, SHIFT(85), - [3058] = {.entry = {.count = 1, .reusable = true}}, SHIFT(107), - [3060] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_initializer_body, 2), - [3062] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_initializer_body, 2), - [3064] = {.entry = {.count = 1, .reusable = true}}, SHIFT(805), - [3066] = {.entry = {.count = 1, .reusable = true}}, SHIFT(803), - [3068] = {.entry = {.count = 1, .reusable = true}}, SHIFT(787), - [3070] = {.entry = {.count = 1, .reusable = false}}, SHIFT(771), - [3072] = {.entry = {.count = 1, .reusable = false}}, SHIFT(769), - [3074] = {.entry = {.count = 1, .reusable = true}}, SHIFT(754), - [3076] = {.entry = {.count = 1, .reusable = true}}, SHIFT(752), - [3078] = {.entry = {.count = 1, .reusable = false}}, SHIFT(313), - [3080] = {.entry = {.count = 1, .reusable = false}}, SHIFT(302), - [3082] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3172), - [3084] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2942), - [3086] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3147), - [3088] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2920), - [3090] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3058), - [3092] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2903), - [3094] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_range, 1, .production_id = 29), - [3096] = {.entry = {.count = 1, .reusable = false}}, SHIFT(410), - [3098] = {.entry = {.count = 1, .reusable = true}}, SHIFT(255), - [3100] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3134), - [3102] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2927), - [3104] = {.entry = {.count = 1, .reusable = false}}, SHIFT(323), - [3106] = {.entry = {.count = 1, .reusable = false}}, SHIFT(291), - [3108] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3182), - [3110] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2945), - [3112] = {.entry = {.count = 1, .reusable = true}}, SHIFT(211), - [3114] = {.entry = {.count = 1, .reusable = true}}, SHIFT(215), - [3116] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3184), - [3118] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2882), - [3120] = {.entry = {.count = 1, .reusable = true}}, SHIFT(742), - [3122] = {.entry = {.count = 1, .reusable = true}}, SHIFT(626), - [3124] = {.entry = {.count = 1, .reusable = true}}, SHIFT(627), - [3126] = {.entry = {.count = 1, .reusable = false}}, SHIFT(739), - [3128] = {.entry = {.count = 1, .reusable = false}}, SHIFT(728), - [3130] = {.entry = {.count = 1, .reusable = true}}, SHIFT(628), - [3132] = {.entry = {.count = 1, .reusable = true}}, SHIFT(853), - [3134] = {.entry = {.count = 1, .reusable = false}}, SHIFT(322), - [3136] = {.entry = {.count = 1, .reusable = false}}, SHIFT(289), - [3138] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3219), - [3140] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2921), - [3142] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2062), - [3144] = {.entry = {.count = 1, .reusable = true}}, SHIFT(300), - [3146] = {.entry = {.count = 1, .reusable = true}}, SHIFT(733), - [3148] = {.entry = {.count = 1, .reusable = true}}, SHIFT(732), - [3150] = {.entry = {.count = 1, .reusable = true}}, SHIFT(731), - [3152] = {.entry = {.count = 1, .reusable = false}}, SHIFT(730), - [3154] = {.entry = {.count = 1, .reusable = false}}, SHIFT(729), - [3156] = {.entry = {.count = 1, .reusable = true}}, SHIFT(333), - [3158] = {.entry = {.count = 1, .reusable = true}}, SHIFT(726), - [3160] = {.entry = {.count = 1, .reusable = true}}, SHIFT(725), - [3162] = {.entry = {.count = 1, .reusable = false}}, SHIFT(470), - [3164] = {.entry = {.count = 1, .reusable = false}}, SHIFT(281), - [3166] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3126), - [3168] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2946), - [3170] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1768), - [3172] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4136), - [3174] = {.entry = {.count = 1, .reusable = true}}, SHIFT(266), - [3176] = {.entry = {.count = 1, .reusable = true}}, SHIFT(794), - [3178] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3372), - [3180] = {.entry = {.count = 1, .reusable = true}}, SHIFT(557), - [3182] = {.entry = {.count = 1, .reusable = true}}, SHIFT(600), - [3184] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4027), - [3186] = {.entry = {.count = 1, .reusable = true}}, SHIFT(601), - [3188] = {.entry = {.count = 1, .reusable = false}}, SHIFT(558), - [3190] = {.entry = {.count = 1, .reusable = false}}, SHIFT(571), - [3192] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4288), - [3194] = {.entry = {.count = 1, .reusable = true}}, SHIFT(370), - [3196] = {.entry = {.count = 1, .reusable = true}}, SHIFT(606), - [3198] = {.entry = {.count = 1, .reusable = true}}, SHIFT(575), - [3200] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1882), - [3202] = {.entry = {.count = 1, .reusable = false}}, SHIFT(244), - [3204] = {.entry = {.count = 1, .reusable = false}}, SHIFT(798), - [3206] = {.entry = {.count = 1, .reusable = false}}, SHIFT(529), - [3208] = {.entry = {.count = 1, .reusable = false}}, SHIFT(424), - [3210] = {.entry = {.count = 1, .reusable = false}}, SHIFT(272), - [3212] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4309), - [3214] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3857), - [3216] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1882), - [3218] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1889), - [3220] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3468), - [3222] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3469), - [3224] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3472), - [3226] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3474), - [3228] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3848), - [3230] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3847), - [3232] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3215), - [3234] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2948), - [3236] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3124), - [3238] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2934), - [3240] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3174), - [3242] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2896), - [3244] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_range, 2, .production_id = 65), - [3246] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3103), - [3248] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2937), - [3250] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3093), - [3252] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2895), - [3254] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3002), - [3256] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2940), - [3258] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3183), - [3260] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2890), - [3262] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3098), - [3264] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2912), - [3266] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2022), - [3268] = {.entry = {.count = 1, .reusable = true}}, SHIFT(270), - [3270] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4012), - [3272] = {.entry = {.count = 1, .reusable = false}}, SHIFT(280), - [3274] = {.entry = {.count = 1, .reusable = false}}, SHIFT(852), - [3276] = {.entry = {.count = 1, .reusable = false}}, SHIFT(543), - [3278] = {.entry = {.count = 1, .reusable = false}}, SHIFT(321), - [3280] = {.entry = {.count = 1, .reusable = false}}, SHIFT(268), - [3282] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4007), - [3284] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3995), - [3286] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2130), - [3288] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4086), - [3290] = {.entry = {.count = 1, .reusable = true}}, SHIFT(242), - [3292] = {.entry = {.count = 1, .reusable = true}}, SHIFT(804), - [3294] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3378), - [3296] = {.entry = {.count = 1, .reusable = true}}, SHIFT(576), - [3298] = {.entry = {.count = 1, .reusable = true}}, SHIFT(608), - [3300] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4020), - [3302] = {.entry = {.count = 1, .reusable = true}}, SHIFT(609), - [3304] = {.entry = {.count = 1, .reusable = false}}, SHIFT(580), - [3306] = {.entry = {.count = 1, .reusable = false}}, SHIFT(581), - [3308] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4115), - [3310] = {.entry = {.count = 1, .reusable = true}}, SHIFT(423), - [3312] = {.entry = {.count = 1, .reusable = true}}, SHIFT(610), - [3314] = {.entry = {.count = 1, .reusable = true}}, SHIFT(589), - [3316] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2153), - [3318] = {.entry = {.count = 1, .reusable = false}}, SHIFT(271), - [3320] = {.entry = {.count = 1, .reusable = false}}, SHIFT(806), - [3322] = {.entry = {.count = 1, .reusable = false}}, SHIFT(538), - [3324] = {.entry = {.count = 1, .reusable = false}}, SHIFT(309), - [3326] = {.entry = {.count = 1, .reusable = false}}, SHIFT(249), - [3328] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4132), - [3330] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3815), - [3332] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2153), - [3334] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2155), - [3336] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3513), - [3338] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3500), - [3340] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3496), - [3342] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3493), - [3344] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3820), - [3346] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3821), - [3348] = {.entry = {.count = 1, .reusable = true}}, SHIFT(708), - [3350] = {.entry = {.count = 1, .reusable = true}}, SHIFT(707), - [3352] = {.entry = {.count = 1, .reusable = true}}, SHIFT(706), - [3354] = {.entry = {.count = 1, .reusable = true}}, SHIFT(622), - [3356] = {.entry = {.count = 1, .reusable = true}}, SHIFT(621), - [3358] = {.entry = {.count = 1, .reusable = true}}, SHIFT(614), - [3360] = {.entry = {.count = 1, .reusable = true}}, SHIFT(668), - [3362] = {.entry = {.count = 1, .reusable = true}}, SHIFT(670), - [3364] = {.entry = {.count = 1, .reusable = true}}, SHIFT(671), - [3366] = {.entry = {.count = 1, .reusable = false}}, SHIFT(672), - [3368] = {.entry = {.count = 1, .reusable = false}}, SHIFT(673), - [3370] = {.entry = {.count = 1, .reusable = true}}, SHIFT(674), - [3372] = {.entry = {.count = 1, .reusable = true}}, SHIFT(675), - [3374] = {.entry = {.count = 1, .reusable = false}}, SHIFT(359), - [3376] = {.entry = {.count = 1, .reusable = false}}, SHIFT(278), - [3378] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2820), - [3380] = {.entry = {.count = 1, .reusable = true}}, SHIFT(677), - [3382] = {.entry = {.count = 1, .reusable = true}}, SHIFT(679), - [3384] = {.entry = {.count = 1, .reusable = true}}, SHIFT(680), - [3386] = {.entry = {.count = 1, .reusable = false}}, SHIFT(681), - [3388] = {.entry = {.count = 1, .reusable = false}}, SHIFT(683), - [3390] = {.entry = {.count = 1, .reusable = true}}, SHIFT(684), - [3392] = {.entry = {.count = 1, .reusable = true}}, SHIFT(687), - [3394] = {.entry = {.count = 1, .reusable = false}}, SHIFT(312), - [3396] = {.entry = {.count = 1, .reusable = false}}, SHIFT(282), - [3398] = {.entry = {.count = 1, .reusable = true}}, SHIFT(694), - [3400] = {.entry = {.count = 1, .reusable = true}}, SHIFT(705), - [3402] = {.entry = {.count = 1, .reusable = true}}, SHIFT(709), - [3404] = {.entry = {.count = 1, .reusable = false}}, SHIFT(695), - [3406] = {.entry = {.count = 1, .reusable = false}}, SHIFT(696), - [3408] = {.entry = {.count = 1, .reusable = true}}, SHIFT(711), - [3410] = {.entry = {.count = 1, .reusable = true}}, SHIFT(704), - [3412] = {.entry = {.count = 1, .reusable = false}}, SHIFT(327), - [3414] = {.entry = {.count = 1, .reusable = false}}, SHIFT(287), - [3416] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1668), - [3418] = {.entry = {.count = 1, .reusable = true}}, SHIFT(247), - [3420] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3291), - [3422] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3193), - [3424] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3695), - [3426] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3118), - [3428] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4301), - [3430] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2419), - [3432] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2417), - [3434] = {.entry = {.count = 1, .reusable = false}}, SHIFT(548), - [3436] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3114), - [3438] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3112), - [3440] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3086), - [3442] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3142), - [3444] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3141), - [3446] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3136), - [3448] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1173), - [3450] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3163), - [3452] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3685), - [3454] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3071), - [3456] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4124), - [3458] = {.entry = {.count = 1, .reusable = false}}, SHIFT(948), - [3460] = {.entry = {.count = 1, .reusable = false}}, SHIFT(949), - [3462] = {.entry = {.count = 1, .reusable = false}}, SHIFT(523), - [3464] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3075), - [3466] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3076), - [3468] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3170), - [3470] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3049), - [3472] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3050), - [3474] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3053), - [3476] = {.entry = {.count = 1, .reusable = false}}, SHIFT(950), - [3478] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expression_list, 1), - [3480] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3674), - [3482] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3088), - [3484] = {.entry = {.count = 1, .reusable = false}}, SHIFT(549), - [3486] = {.entry = {.count = 1, .reusable = false}}, SHIFT(159), - [3488] = {.entry = {.count = 1, .reusable = false}}, SHIFT(814), - [3490] = {.entry = {.count = 1, .reusable = false}}, SHIFT(815), - [3492] = {.entry = {.count = 1, .reusable = false}}, SHIFT(819), - [3494] = {.entry = {.count = 1, .reusable = true}}, SHIFT(319), - [3496] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1021), - [3498] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1022), - [3500] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1023), - [3502] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1035), - [3504] = {.entry = {.count = 1, .reusable = false}}, SHIFT(318), - [3506] = {.entry = {.count = 1, .reusable = false}}, SHIFT(820), - [3508] = {.entry = {.count = 1, .reusable = false}}, SHIFT(551), - [3510] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4002), - [3512] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3083), - [3514] = {.entry = {.count = 1, .reusable = false}}, SHIFT(822), - [3516] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3204), - [3518] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_assert_statement, 2), - [3520] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_assert_statement, 2), - [3522] = {.entry = {.count = 1, .reusable = false}}, SHIFT(634), - [3524] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_strictly_expression_list_repeat1, 2), - [3526] = {.entry = {.count = 1, .reusable = false}}, SHIFT(883), - [3528] = {.entry = {.count = 1, .reusable = false}}, SHIFT(887), - [3530] = {.entry = {.count = 1, .reusable = false}}, SHIFT(889), - [3532] = {.entry = {.count = 1, .reusable = false}}, SHIFT(894), - [3534] = {.entry = {.count = 1, .reusable = false}}, SHIFT(903), - [3536] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_assert_statement, 4), - [3538] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_assert_statement, 4), - [3540] = {.entry = {.count = 1, .reusable = false}}, SHIFT(899), - [3542] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3751), - [3544] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_send_statement, 3, .production_id = 30), - [3546] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_send_statement, 3, .production_id = 30), - [3548] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__global_var_value, 2, .production_id = 39), - [3550] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__global_var_value, 2, .production_id = 39), - [3552] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_const_definition, 3, .production_id = 38), - [3554] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_const_definition, 3, .production_id = 38), - [3556] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1348), - [3558] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3023), - [3560] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3606), - [3562] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3152), - [3564] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4061), - [3566] = {.entry = {.count = 1, .reusable = false}}, SHIFT(981), + [2838] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generic_type, 2), + [2840] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_generic_type, 2), + [2842] = {.entry = {.count = 1, .reusable = true}}, SHIFT(96), + [2844] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_select_expression, 6, .production_id = 59), + [2846] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_select_expression, 6, .production_id = 59), + [2848] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_fixed_array_creation, 4), + [2850] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_fixed_array_creation, 4), + [2852] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_select_expression, 5), + [2854] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_select_expression, 5), + [2856] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_select_expression, 5, .production_id = 59), + [2858] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_select_expression, 5, .production_id = 59), + [2860] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_anon_struct_value_expression, 4, .production_id = 50), + [2862] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_anon_struct_value_expression, 4, .production_id = 50), + [2864] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1009), + [2866] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1395), + [2868] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameter_list, 3), + [2870] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_parameter_list, 3), + [2872] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_anon_struct_value_expression, 4, .production_id = 51), + [2874] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_anon_struct_value_expression, 4, .production_id = 51), + [2876] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1587), + [2878] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_literal, 1), + [2880] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_literal, 1), + [2882] = {.entry = {.count = 1, .reusable = true}}, SHIFT(97), + [2884] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_sql_expression, 2), + [2886] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_sql_expression, 2), + [2888] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_or_block, 2, .production_id = 33), + [2890] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_or_block, 2, .production_id = 33), + [2892] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_is_expression, 3, .dynamic_precedence = 2, .production_id = 32), + [2894] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_is_expression, 3, .dynamic_precedence = 2, .production_id = 32), + [2896] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_call_expression, 3, .production_id = 34), + [2898] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_call_expression, 3, .production_id = 34), + [2900] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__struct_body, 3), + [2902] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__struct_body, 3), + [2904] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_fixed_array_type, 4, .production_id = 54), + [2906] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_fixed_array_type, 4, .production_id = 54), + [2908] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_unsafe_expression, 2), + [2910] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_unsafe_expression, 2), + [2912] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameter_list, 4), + [2914] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_parameter_list, 4), + [2916] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter_list, 4), + [2918] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parameter_list, 4), + [2920] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1579), + [2922] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_special_argument_list, 3, .production_id = 53), + [2924] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_special_argument_list, 3, .production_id = 53), + [2926] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_short_element_list_repeat1, 2), SHIFT_REPEAT(1133), + [2929] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_short_element_list_repeat1, 2), SHIFT_REPEAT(4108), + [2932] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_short_element_list_repeat1, 2), SHIFT_REPEAT(288), + [2935] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_short_element_list_repeat1, 2), + [2937] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_short_element_list_repeat1, 2), SHIFT_REPEAT(754), + [2940] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_short_element_list_repeat1, 2), SHIFT_REPEAT(3383), + [2943] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_short_element_list_repeat1, 2), SHIFT_REPEAT(604), + [2946] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_short_element_list_repeat1, 2), SHIFT_REPEAT(567), + [2949] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_short_element_list_repeat1, 2), SHIFT_REPEAT(4028), + [2952] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_short_element_list_repeat1, 2), SHIFT_REPEAT(2136), + [2955] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_short_element_list_repeat1, 2), SHIFT_REPEAT(2839), + [2958] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_short_element_list_repeat1, 2), SHIFT_REPEAT(566), + [2961] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_short_element_list_repeat1, 2), SHIFT_REPEAT(599), + [2964] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_short_element_list_repeat1, 2), SHIFT_REPEAT(598), + [2967] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_short_element_list_repeat1, 2), SHIFT_REPEAT(4109), + [2970] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_short_element_list_repeat1, 2), SHIFT_REPEAT(436), + [2973] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_short_element_list_repeat1, 2), SHIFT_REPEAT(563), + [2976] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_short_element_list_repeat1, 2), SHIFT_REPEAT(595), + [2979] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_short_element_list_repeat1, 2), SHIFT_REPEAT(1201), + [2982] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_short_element_list_repeat1, 2), SHIFT_REPEAT(272), + [2985] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_short_element_list_repeat1, 2), SHIFT_REPEAT(756), + [2988] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_short_element_list_repeat1, 2), SHIFT_REPEAT(511), + [2991] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_short_element_list_repeat1, 2), SHIFT_REPEAT(451), + [2994] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_short_element_list_repeat1, 2), SHIFT_REPEAT(291), + [2997] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_short_element_list_repeat1, 2), SHIFT_REPEAT(4128), + [3000] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_short_element_list_repeat1, 2), SHIFT_REPEAT(3911), + [3003] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_short_element_list_repeat1, 2), SHIFT_REPEAT(1201), + [3006] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_short_element_list_repeat1, 2), SHIFT_REPEAT(1209), + [3009] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_short_element_list_repeat1, 2), SHIFT_REPEAT(1581), + [3012] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_short_element_list_repeat1, 2), SHIFT_REPEAT(3182), + [3015] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_short_element_list_repeat1, 2), SHIFT_REPEAT(3166), + [3018] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_short_element_list_repeat1, 2), SHIFT_REPEAT(3142), + [3021] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_short_element_list_repeat1, 2), SHIFT_REPEAT(3129), + [3024] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_short_element_list_repeat1, 2), SHIFT_REPEAT(3525), + [3027] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_short_element_list_repeat1, 2), SHIFT_REPEAT(3526), + [3030] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_short_element_list_repeat1, 2), SHIFT_REPEAT(3527), + [3033] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_short_element_list_repeat1, 2), SHIFT_REPEAT(3528), + [3036] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_short_element_list_repeat1, 2), SHIFT_REPEAT(3794), + [3039] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_short_element_list_repeat1, 2), SHIFT_REPEAT(3795), + [3042] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_compile_time_if_expression, 6, .production_id = 116), + [3044] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_compile_time_if_expression, 6, .production_id = 116), + [3046] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1585), + [3048] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_lock_expression, 2, .production_id = 7), + [3050] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_lock_expression, 2, .production_id = 7), + [3052] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_special_argument_list, 5, .production_id = 53), + [3054] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_special_argument_list, 5, .production_id = 53), + [3056] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_map_type, 4, .production_id = 60), + [3058] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_map_type, 4, .production_id = 60), + [3060] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_multi_return_type, 5), + [3062] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_multi_return_type, 5), + [3064] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2209), + [3066] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_initializer_body, 2), + [3068] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_initializer_body, 2), + [3070] = {.entry = {.count = 1, .reusable = true}}, SHIFT(732), + [3072] = {.entry = {.count = 1, .reusable = true}}, SHIFT(638), + [3074] = {.entry = {.count = 1, .reusable = true}}, SHIFT(580), + [3076] = {.entry = {.count = 1, .reusable = false}}, SHIFT(730), + [3078] = {.entry = {.count = 1, .reusable = false}}, SHIFT(727), + [3080] = {.entry = {.count = 1, .reusable = true}}, SHIFT(640), + [3082] = {.entry = {.count = 1, .reusable = true}}, SHIFT(669), + [3084] = {.entry = {.count = 1, .reusable = false}}, SHIFT(398), + [3086] = {.entry = {.count = 1, .reusable = false}}, SHIFT(270), + [3088] = {.entry = {.count = 1, .reusable = true}}, SHIFT(214), + [3090] = {.entry = {.count = 1, .reusable = true}}, SHIFT(803), + [3092] = {.entry = {.count = 1, .reusable = true}}, SHIFT(863), + [3094] = {.entry = {.count = 1, .reusable = true}}, SHIFT(801), + [3096] = {.entry = {.count = 1, .reusable = false}}, SHIFT(799), + [3098] = {.entry = {.count = 1, .reusable = false}}, SHIFT(796), + [3100] = {.entry = {.count = 1, .reusable = true}}, SHIFT(768), + [3102] = {.entry = {.count = 1, .reusable = true}}, SHIFT(755), + [3104] = {.entry = {.count = 1, .reusable = false}}, SHIFT(326), + [3106] = {.entry = {.count = 1, .reusable = false}}, SHIFT(284), + [3108] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3015), + [3110] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2946), + [3112] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3149), + [3114] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2887), + [3116] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_range, 1, .production_id = 30), + [3118] = {.entry = {.count = 1, .reusable = true}}, SHIFT(265), + [3120] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3049), + [3122] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2926), + [3124] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3067), + [3126] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2928), + [3128] = {.entry = {.count = 1, .reusable = true}}, SHIFT(211), + [3130] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3125), + [3132] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2941), + [3134] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3027), + [3136] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2891), + [3138] = {.entry = {.count = 1, .reusable = false}}, SHIFT(397), + [3140] = {.entry = {.count = 1, .reusable = false}}, SHIFT(285), + [3142] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3022), + [3144] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2900), + [3146] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3179), + [3148] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2937), + [3150] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3223), + [3152] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2938), + [3154] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3077), + [3156] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2944), + [3158] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1913), + [3160] = {.entry = {.count = 1, .reusable = true}}, SHIFT(718), + [3162] = {.entry = {.count = 1, .reusable = true}}, SHIFT(717), + [3164] = {.entry = {.count = 1, .reusable = true}}, SHIFT(716), + [3166] = {.entry = {.count = 1, .reusable = false}}, SHIFT(715), + [3168] = {.entry = {.count = 1, .reusable = false}}, SHIFT(714), + [3170] = {.entry = {.count = 1, .reusable = true}}, SHIFT(329), + [3172] = {.entry = {.count = 1, .reusable = true}}, SHIFT(712), + [3174] = {.entry = {.count = 1, .reusable = true}}, SHIFT(710), + [3176] = {.entry = {.count = 1, .reusable = false}}, SHIFT(402), + [3178] = {.entry = {.count = 1, .reusable = false}}, SHIFT(262), + [3180] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3126), + [3182] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2886), + [3184] = {.entry = {.count = 1, .reusable = false}}, SHIFT(332), + [3186] = {.entry = {.count = 1, .reusable = true}}, SHIFT(280), + [3188] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3088), + [3190] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2895), + [3192] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3160), + [3194] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2884), + [3196] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_range, 2, .production_id = 66), + [3198] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1776), + [3200] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4312), + [3202] = {.entry = {.count = 1, .reusable = true}}, SHIFT(247), + [3204] = {.entry = {.count = 1, .reusable = true}}, SHIFT(788), + [3206] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3379), + [3208] = {.entry = {.count = 1, .reusable = true}}, SHIFT(576), + [3210] = {.entry = {.count = 1, .reusable = true}}, SHIFT(611), + [3212] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4022), + [3214] = {.entry = {.count = 1, .reusable = true}}, SHIFT(612), + [3216] = {.entry = {.count = 1, .reusable = false}}, SHIFT(577), + [3218] = {.entry = {.count = 1, .reusable = false}}, SHIFT(581), + [3220] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4303), + [3222] = {.entry = {.count = 1, .reusable = true}}, SHIFT(437), + [3224] = {.entry = {.count = 1, .reusable = true}}, SHIFT(616), + [3226] = {.entry = {.count = 1, .reusable = true}}, SHIFT(583), + [3228] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1792), + [3230] = {.entry = {.count = 1, .reusable = false}}, SHIFT(234), + [3232] = {.entry = {.count = 1, .reusable = false}}, SHIFT(789), + [3234] = {.entry = {.count = 1, .reusable = false}}, SHIFT(517), + [3236] = {.entry = {.count = 1, .reusable = false}}, SHIFT(441), + [3238] = {.entry = {.count = 1, .reusable = false}}, SHIFT(243), + [3240] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4301), + [3242] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3806), + [3244] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1792), + [3246] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1797), + [3248] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3536), + [3250] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3534), + [3252] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3533), + [3254] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3532), + [3256] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3801), + [3258] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3798), + [3260] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3111), + [3262] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2916), + [3264] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3138), + [3266] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2890), + [3268] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3103), + [3270] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2901), + [3272] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2062), + [3274] = {.entry = {.count = 1, .reusable = true}}, SHIFT(287), + [3276] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4012), + [3278] = {.entry = {.count = 1, .reusable = false}}, SHIFT(278), + [3280] = {.entry = {.count = 1, .reusable = false}}, SHIFT(830), + [3282] = {.entry = {.count = 1, .reusable = false}}, SHIFT(537), + [3284] = {.entry = {.count = 1, .reusable = false}}, SHIFT(406), + [3286] = {.entry = {.count = 1, .reusable = false}}, SHIFT(293), + [3288] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4010), + [3290] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3998), + [3292] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2128), + [3294] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4194), + [3296] = {.entry = {.count = 1, .reusable = true}}, SHIFT(279), + [3298] = {.entry = {.count = 1, .reusable = true}}, SHIFT(793), + [3300] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3380), + [3302] = {.entry = {.count = 1, .reusable = true}}, SHIFT(590), + [3304] = {.entry = {.count = 1, .reusable = true}}, SHIFT(620), + [3306] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4019), + [3308] = {.entry = {.count = 1, .reusable = true}}, SHIFT(621), + [3310] = {.entry = {.count = 1, .reusable = false}}, SHIFT(592), + [3312] = {.entry = {.count = 1, .reusable = false}}, SHIFT(593), + [3314] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4182), + [3316] = {.entry = {.count = 1, .reusable = true}}, SHIFT(475), + [3318] = {.entry = {.count = 1, .reusable = true}}, SHIFT(622), + [3320] = {.entry = {.count = 1, .reusable = true}}, SHIFT(608), + [3322] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2166), + [3324] = {.entry = {.count = 1, .reusable = false}}, SHIFT(249), + [3326] = {.entry = {.count = 1, .reusable = false}}, SHIFT(795), + [3328] = {.entry = {.count = 1, .reusable = false}}, SHIFT(535), + [3330] = {.entry = {.count = 1, .reusable = false}}, SHIFT(434), + [3332] = {.entry = {.count = 1, .reusable = false}}, SHIFT(276), + [3334] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4175), + [3336] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3818), + [3338] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2166), + [3340] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2164), + [3342] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3436), + [3344] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3507), + [3346] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3506), + [3348] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3505), + [3350] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3823), + [3352] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3824), + [3354] = {.entry = {.count = 1, .reusable = true}}, SHIFT(603), + [3356] = {.entry = {.count = 1, .reusable = true}}, SHIFT(602), + [3358] = {.entry = {.count = 1, .reusable = true}}, SHIFT(597), + [3360] = {.entry = {.count = 1, .reusable = true}}, SHIFT(666), + [3362] = {.entry = {.count = 1, .reusable = true}}, SHIFT(664), + [3364] = {.entry = {.count = 1, .reusable = true}}, SHIFT(660), + [3366] = {.entry = {.count = 1, .reusable = true}}, SHIFT(657), + [3368] = {.entry = {.count = 1, .reusable = true}}, SHIFT(658), + [3370] = {.entry = {.count = 1, .reusable = true}}, SHIFT(659), + [3372] = {.entry = {.count = 1, .reusable = false}}, SHIFT(661), + [3374] = {.entry = {.count = 1, .reusable = false}}, SHIFT(662), + [3376] = {.entry = {.count = 1, .reusable = true}}, SHIFT(663), + [3378] = {.entry = {.count = 1, .reusable = true}}, SHIFT(667), + [3380] = {.entry = {.count = 1, .reusable = false}}, SHIFT(449), + [3382] = {.entry = {.count = 1, .reusable = false}}, SHIFT(254), + [3384] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2815), + [3386] = {.entry = {.count = 1, .reusable = true}}, SHIFT(674), + [3388] = {.entry = {.count = 1, .reusable = true}}, SHIFT(676), + [3390] = {.entry = {.count = 1, .reusable = true}}, SHIFT(681), + [3392] = {.entry = {.count = 1, .reusable = false}}, SHIFT(682), + [3394] = {.entry = {.count = 1, .reusable = false}}, SHIFT(683), + [3396] = {.entry = {.count = 1, .reusable = true}}, SHIFT(684), + [3398] = {.entry = {.count = 1, .reusable = true}}, SHIFT(685), + [3400] = {.entry = {.count = 1, .reusable = false}}, SHIFT(439), + [3402] = {.entry = {.count = 1, .reusable = false}}, SHIFT(263), + [3404] = {.entry = {.count = 1, .reusable = true}}, SHIFT(686), + [3406] = {.entry = {.count = 1, .reusable = true}}, SHIFT(693), + [3408] = {.entry = {.count = 1, .reusable = true}}, SHIFT(695), + [3410] = {.entry = {.count = 1, .reusable = false}}, SHIFT(689), + [3412] = {.entry = {.count = 1, .reusable = false}}, SHIFT(690), + [3414] = {.entry = {.count = 1, .reusable = true}}, SHIFT(697), + [3416] = {.entry = {.count = 1, .reusable = true}}, SHIFT(691), + [3418] = {.entry = {.count = 1, .reusable = false}}, SHIFT(358), + [3420] = {.entry = {.count = 1, .reusable = false}}, SHIFT(268), + [3422] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1661), + [3424] = {.entry = {.count = 1, .reusable = true}}, SHIFT(260), + [3426] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3321), + [3428] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3221), + [3430] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3622), + [3432] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3095), + [3434] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4117), + [3436] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2428), + [3438] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2427), + [3440] = {.entry = {.count = 1, .reusable = false}}, SHIFT(516), + [3442] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3090), + [3444] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3086), + [3446] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3202), + [3448] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3104), + [3450] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3099), + [3452] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3098), + [3454] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1139), + [3456] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3143), + [3458] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3637), + [3460] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3164), + [3462] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4293), + [3464] = {.entry = {.count = 1, .reusable = false}}, SHIFT(952), + [3466] = {.entry = {.count = 1, .reusable = false}}, SHIFT(951), + [3468] = {.entry = {.count = 1, .reusable = false}}, SHIFT(539), + [3470] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3150), + [3472] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3148), + [3474] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3196), + [3476] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3114), + [3478] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3173), + [3480] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3201), + [3482] = {.entry = {.count = 1, .reusable = false}}, SHIFT(949), + [3484] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expression_list, 1), + [3486] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3717), + [3488] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3193), + [3490] = {.entry = {.count = 1, .reusable = false}}, SHIFT(510), + [3492] = {.entry = {.count = 1, .reusable = false}}, SHIFT(153), + [3494] = {.entry = {.count = 1, .reusable = false}}, SHIFT(836), + [3496] = {.entry = {.count = 1, .reusable = false}}, SHIFT(837), + [3498] = {.entry = {.count = 1, .reusable = false}}, SHIFT(838), + [3500] = {.entry = {.count = 1, .reusable = true}}, SHIFT(314), + [3502] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1076), + [3504] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1075), + [3506] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1074), + [3508] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1073), + [3510] = {.entry = {.count = 1, .reusable = false}}, SHIFT(313), + [3512] = {.entry = {.count = 1, .reusable = false}}, SHIFT(839), + [3514] = {.entry = {.count = 1, .reusable = false}}, SHIFT(840), + [3516] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4187), + [3518] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3191), + [3520] = {.entry = {.count = 1, .reusable = false}}, SHIFT(841), + [3522] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_strictly_expression_list_repeat1, 2), + [3524] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3065), + [3526] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_assert_statement, 2), + [3528] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_assert_statement, 2), + [3530] = {.entry = {.count = 1, .reusable = false}}, SHIFT(632), + [3532] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3735), + [3534] = {.entry = {.count = 1, .reusable = false}}, SHIFT(874), + [3536] = {.entry = {.count = 1, .reusable = false}}, SHIFT(875), + [3538] = {.entry = {.count = 1, .reusable = false}}, SHIFT(876), + [3540] = {.entry = {.count = 1, .reusable = false}}, SHIFT(877), + [3542] = {.entry = {.count = 1, .reusable = false}}, SHIFT(879), + [3544] = {.entry = {.count = 1, .reusable = false}}, SHIFT(878), + [3546] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__global_var_value, 2, .production_id = 40), + [3548] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__global_var_value, 2, .production_id = 40), + [3550] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_const_definition, 3, .production_id = 39), + [3552] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_const_definition, 3, .production_id = 39), + [3554] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_assert_statement, 4), + [3556] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_assert_statement, 4), + [3558] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_send_statement, 3, .production_id = 31), + [3560] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_send_statement, 3, .production_id = 31), + [3562] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3732), + [3564] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3219), + [3566] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3218), [3568] = {.entry = {.count = 1, .reusable = false}}, SHIFT(982), - [3570] = {.entry = {.count = 1, .reusable = false}}, SHIFT(545), - [3572] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3158), - [3574] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3159), - [3576] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3009), - [3578] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3125), - [3580] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3216), - [3582] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3138), - [3584] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3750), - [3586] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3034), - [3588] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3032), - [3590] = {.entry = {.count = 1, .reusable = false}}, SHIFT(980), - [3592] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3748), - [3594] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1053), - [3596] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1414), - [3598] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3001), - [3600] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3728), - [3602] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3024), - [3604] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4167), - [3606] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1097), - [3608] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1099), - [3610] = {.entry = {.count = 1, .reusable = false}}, SHIFT(518), - [3612] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3068), - [3614] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3072), - [3616] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3028), - [3618] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3015), - [3620] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3012), - [3622] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3003), - [3624] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1100), - [3626] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1673), - [3628] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3130), - [3630] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3725), - [3632] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3111), - [3634] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4186), - [3636] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1103), - [3638] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1105), - [3640] = {.entry = {.count = 1, .reusable = false}}, SHIFT(541), - [3642] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3108), - [3644] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3107), - [3646] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3186), - [3648] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3119), - [3650] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3117), - [3652] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3115), - [3654] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3715), - [3656] = {.entry = {.count = 1, .reusable = false}}, SHIFT(152), - [3658] = {.entry = {.count = 1, .reusable = true}}, SHIFT(395), - [3660] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1161), - [3662] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1162), - [3664] = {.entry = {.count = 1, .reusable = false}}, SHIFT(406), - [3666] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3210), - [3668] = {.entry = {.count = 1, .reusable = false}}, SHIFT(902), - [3670] = {.entry = {.count = 1, .reusable = false}}, SHIFT(904), - [3672] = {.entry = {.count = 1, .reusable = false}}, SHIFT(906), - [3674] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1159), - [3676] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1160), - [3678] = {.entry = {.count = 1, .reusable = false}}, SHIFT(907), - [3680] = {.entry = {.count = 1, .reusable = false}}, SHIFT(908), - [3682] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4208), - [3684] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3209), - [3686] = {.entry = {.count = 1, .reusable = false}}, SHIFT(917), - [3688] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_argument, 1), - [3690] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1855), - [3692] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3104), - [3694] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3633), - [3696] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3057), - [3698] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4158), - [3700] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1122), - [3702] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1118), - [3704] = {.entry = {.count = 1, .reusable = false}}, SHIFT(520), - [3706] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3082), - [3708] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3091), - [3710] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3006), - [3712] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3160), - [3714] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3016), - [3716] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3018), - [3718] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1111), - [3720] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_spread_expression, 2), - [3722] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3593), - [3724] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_keyed_element, 3, .production_id = 85), - [3726] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3044), - [3728] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_map_keyed_element, 3, .production_id = 37), - [3730] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3594), - [3732] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3601), + [3570] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1386), + [3572] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3082), + [3574] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3718), + [3576] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3092), + [3578] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4244), + [3580] = {.entry = {.count = 1, .reusable = false}}, SHIFT(987), + [3582] = {.entry = {.count = 1, .reusable = false}}, SHIFT(990), + [3584] = {.entry = {.count = 1, .reusable = false}}, SHIFT(547), + [3586] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3107), + [3588] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3109), + [3590] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3108), + [3592] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3063), + [3594] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3064), + [3596] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3066), + [3598] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3705), + [3600] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1006), + [3602] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1412), + [3604] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3227), + [3606] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3748), + [3608] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3185), + [3610] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4116), + [3612] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1100), + [3614] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1098), + [3616] = {.entry = {.count = 1, .reusable = false}}, SHIFT(546), + [3618] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3189), + [3620] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3190), + [3622] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3115), + [3624] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3073), + [3626] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3074), + [3628] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3075), + [3630] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1707), + [3632] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3133), + [3634] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3692), + [3636] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3055), + [3638] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4153), + [3640] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1103), + [3642] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1105), + [3644] = {.entry = {.count = 1, .reusable = false}}, SHIFT(530), + [3646] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3058), + [3648] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3071), + [3650] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3036), + [3652] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3041), + [3654] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3044), + [3656] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3054), + [3658] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1101), + [3660] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3631), + [3662] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3053), + [3664] = {.entry = {.count = 1, .reusable = false}}, SHIFT(170), + [3666] = {.entry = {.count = 1, .reusable = false}}, SHIFT(605), + [3668] = {.entry = {.count = 1, .reusable = false}}, SHIFT(610), + [3670] = {.entry = {.count = 1, .reusable = false}}, SHIFT(614), + [3672] = {.entry = {.count = 1, .reusable = true}}, SHIFT(354), + [3674] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1253), + [3676] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1251), + [3678] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1245), + [3680] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1242), + [3682] = {.entry = {.count = 1, .reusable = false}}, SHIFT(363), + [3684] = {.entry = {.count = 1, .reusable = false}}, SHIFT(551), + [3686] = {.entry = {.count = 1, .reusable = false}}, SHIFT(619), + [3688] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4198), + [3690] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3059), + [3692] = {.entry = {.count = 1, .reusable = false}}, SHIFT(623), + [3694] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_spread_expression, 2), + [3696] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3596), + [3698] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1793), + [3700] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3222), + [3702] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3628), + [3704] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3174), + [3706] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4079), + [3708] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1123), + [3710] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1120), + [3712] = {.entry = {.count = 1, .reusable = false}}, SHIFT(507), + [3714] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3068), + [3716] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3002), + [3718] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3207), + [3720] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3014), + [3722] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3008), + [3724] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3006), + [3726] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1110), + [3728] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3141), + [3730] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_keyed_element, 3, .production_id = 86), + [3732] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_argument, 1), [3734] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_short_element_list_repeat1, 1, .production_id = 18), - [3736] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2180), - [3738] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__expression_without_blocks, 1), REDUCE(aux_sym_element_list_repeat1, 1), - [3741] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__expression_without_blocks, 1), SHIFT(3908), - [3744] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_element_list_repeat1, 1), - [3746] = {.entry = {.count = 1, .reusable = false}}, SHIFT(583), - [3748] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1157), - [3750] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__expression_without_blocks, 1), SHIFT(4126), - [3753] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1249), - [3755] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2023), - [3757] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3213), - [3759] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3733), - [3761] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3176), - [3763] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4225), - [3765] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1223), - [3767] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1205), - [3769] = {.entry = {.count = 1, .reusable = false}}, SHIFT(532), - [3771] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3167), - [3773] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3166), - [3775] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3223), - [3777] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3212), - [3779] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3211), - [3781] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3205), - [3783] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2025), - [3785] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3131), - [3787] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3659), - [3789] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3139), - [3791] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4194), - [3793] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1206), - [3795] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1219), - [3797] = {.entry = {.count = 1, .reusable = false}}, SHIFT(533), - [3799] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2998), - [3801] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3143), - [3803] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3106), - [3805] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3132), - [3807] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3133), - [3809] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3137), - [3811] = {.entry = {.count = 1, .reusable = false}}, SHIFT(847), - [3813] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1155), - [3815] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3630), - [3817] = {.entry = {.count = 1, .reusable = true}}, SHIFT(154), - [3819] = {.entry = {.count = 1, .reusable = true}}, SHIFT(334), - [3821] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1293), - [3823] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1354), - [3825] = {.entry = {.count = 1, .reusable = false}}, SHIFT(332), - [3827] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3630), - [3829] = {.entry = {.count = 1, .reusable = true}}, SHIFT(332), - [3831] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1239), - [3833] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_string_interpolation_repeat1, 1, .production_id = 26), - [3835] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3151), - [3837] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_string_interpolation_repeat1, 1, .production_id = 26), - [3839] = {.entry = {.count = 1, .reusable = false}}, SHIFT(864), - [3841] = {.entry = {.count = 1, .reusable = true}}, SHIFT(865), - [3843] = {.entry = {.count = 1, .reusable = false}}, SHIFT(865), - [3845] = {.entry = {.count = 1, .reusable = false}}, SHIFT(866), - [3847] = {.entry = {.count = 1, .reusable = true}}, SHIFT(866), - [3849] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3441), - [3851] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1351), - [3853] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1352), - [3855] = {.entry = {.count = 1, .reusable = true}}, SHIFT(864), - [3857] = {.entry = {.count = 1, .reusable = true}}, SHIFT(867), - [3859] = {.entry = {.count = 1, .reusable = true}}, SHIFT(868), - [3861] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4004), - [3863] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3154), - [3865] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3154), - [3867] = {.entry = {.count = 1, .reusable = false}}, SHIFT(869), - [3869] = {.entry = {.count = 1, .reusable = true}}, SHIFT(869), - [3871] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3643), - [3873] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__array_repeat1, 1), - [3875] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__array_repeat1, 1), - [3877] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2160), - [3879] = {.entry = {.count = 1, .reusable = false}}, SHIFT(596), - [3881] = {.entry = {.count = 1, .reusable = true}}, SHIFT(597), - [3883] = {.entry = {.count = 1, .reusable = false}}, SHIFT(597), - [3885] = {.entry = {.count = 1, .reusable = false}}, SHIFT(616), - [3887] = {.entry = {.count = 1, .reusable = true}}, SHIFT(616), - [3889] = {.entry = {.count = 1, .reusable = true}}, SHIFT(596), - [3891] = {.entry = {.count = 1, .reusable = true}}, SHIFT(625), - [3893] = {.entry = {.count = 1, .reusable = true}}, SHIFT(629), - [3895] = {.entry = {.count = 1, .reusable = false}}, SHIFT(630), - [3897] = {.entry = {.count = 1, .reusable = true}}, SHIFT(630), - [3899] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3641), - [3901] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3603), - [3903] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_value_attribute, 1, .production_id = 6), - [3905] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1321), - [3907] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_literal, 1), SHIFT(3011), - [3910] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_literal_attribute, 1), - [3912] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1389), - [3914] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__expression_without_blocks, 1), SHIFT(3011), - [3917] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2254), - [3919] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3079), - [3921] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3617), - [3923] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3070), - [3925] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4015), - [3927] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1398), - [3929] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1397), - [3931] = {.entry = {.count = 1, .reusable = false}}, SHIFT(508), - [3933] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3065), - [3935] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3060), - [3937] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3008), - [3939] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3081), - [3941] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3080), - [3943] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3074), - [3945] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2328), - [3947] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3680), - [3949] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3041), - [3951] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1401), - [3953] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1400), - [3955] = {.entry = {.count = 1, .reusable = false}}, SHIFT(515), - [3957] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3033), - [3959] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3031), - [3961] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3218), - [3963] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3067), - [3965] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3066), - [3967] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3064), - [3969] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3020), - [3971] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expression_list, 2), - [3973] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expression_list, 2), - [3975] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_strictly_expression_list_repeat1, 2), SHIFT_REPEAT(549), - [3978] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__type_union_list_repeat1, 2), - [3980] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__type_union_list_repeat1, 2), - [3982] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__type_union_list_repeat1, 2), SHIFT_REPEAT(4405), - [3985] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__type_union_list_repeat1, 2), SHIFT_REPEAT(3217), - [3988] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_union_list, 2), - [3990] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_union_list, 2), - [3992] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__type_union_list, 2), SHIFT(4405), - [3995] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3217), - [3997] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_strictly_expression_list, 4), - [3999] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_strictly_expression_list, 4), - [4001] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_union_list, 1), - [4003] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_union_list, 1), - [4005] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__type_union_list, 1), SHIFT(4405), - [4008] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declaration, 6, .production_id = 129), - [4010] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_declaration, 6, .production_id = 129), - [4012] = {.entry = {.count = 1, .reusable = false}}, SHIFT(45), - [4014] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2570), - [4016] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3194), - [4018] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3726), - [4020] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3089), - [4022] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4068), - [4024] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1426), - [4026] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1420), - [4028] = {.entry = {.count = 1, .reusable = false}}, SHIFT(507), - [4030] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3092), - [4032] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3095), - [4034] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3201), - [4036] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3226), - [4038] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2999), - [4040] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3017), - [4042] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_break_statement, 1), - [4044] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1481), - [4046] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_break_statement, 1), - [4048] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_continue_statement, 1), - [4050] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_continue_statement, 1), - [4052] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_static_method_declaration, 6, .production_id = 110), - [4054] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_static_method_declaration, 6, .production_id = 110), - [4056] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_static_method_declaration, 8, .production_id = 148), - [4058] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_static_method_declaration, 8, .production_id = 148), - [4060] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declaration, 7, .production_id = 144), - [4062] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_declaration, 7, .production_id = 144), - [4064] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_static_method_declaration, 7, .production_id = 141), - [4066] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_static_method_declaration, 7, .production_id = 141), - [4068] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_static_method_declaration, 7, .production_id = 139), - [4070] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_static_method_declaration, 7, .production_id = 139), - [4072] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_static_method_declaration, 7, .production_id = 136), - [4074] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_static_method_declaration, 7, .production_id = 136), - [4076] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__type_union_list_repeat1, 3), - [4078] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__type_union_list_repeat1, 3), - [4080] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declaration, 6, .production_id = 128), - [4082] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_declaration, 6, .production_id = 128), - [4084] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1407), - [4086] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declaration, 6, .production_id = 126), - [4088] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_declaration, 6, .production_id = 126), - [4090] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_static_method_declaration, 6, .production_id = 123), - [4092] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_static_method_declaration, 6, .production_id = 123), - [4094] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declaration, 6, .production_id = 122), - [4096] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_declaration, 6, .production_id = 122), - [4098] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_static_method_declaration, 6, .production_id = 119), - [4100] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_static_method_declaration, 6, .production_id = 119), - [4102] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declaration, 5, .production_id = 105), - [4104] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_declaration, 5, .production_id = 105), - [4106] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declaration, 5, .production_id = 103), - [4108] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_declaration, 5, .production_id = 103), - [4110] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declaration, 5, .production_id = 102), - [4112] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_declaration, 5, .production_id = 102), - [4114] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declaration, 5, .production_id = 99), - [4116] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_declaration, 5, .production_id = 99), - [4118] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declaration, 5, .production_id = 98), - [4120] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_declaration, 5, .production_id = 98), - [4122] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declaration, 4, .production_id = 67), - [4124] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_declaration, 4, .production_id = 67), - [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_static_method_declaration, 5, .production_id = 79), - [4132] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_static_method_declaration, 5, .production_id = 79), - [4134] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declaration, 4, .production_id = 72), - [4136] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_declaration, 4, .production_id = 72), - [4138] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declaration, 4, .production_id = 45), - [4140] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_declaration, 4, .production_id = 45), - [4142] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declaration, 4, .production_id = 46), - [4144] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_declaration, 4, .production_id = 46), - [4146] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declaration, 3, .production_id = 14), - [4148] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_declaration, 3, .production_id = 14), - [4150] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_const_declaration, 3), - [4152] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_const_declaration, 3), - [4154] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_global_var_declaration, 2), - [4156] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_global_var_declaration, 2), - [4158] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_static_method_declaration, 9, .production_id = 150), - [4160] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_static_method_declaration, 9, .production_id = 150), - [4162] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_label_reference, 1), - [4164] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_label_reference, 1), - [4166] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_goto_statement, 2), - [4168] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_goto_statement, 2), - [4170] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 1), - [4172] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 1), - [4174] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1587), - [4176] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_break_statement, 2), - [4178] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_break_statement, 2), - [4180] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_continue_statement, 2), - [4182] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_continue_statement, 2), - [4184] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_return_statement, 2, .production_id = 8), - [4186] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_return_statement, 2, .production_id = 8), - [4188] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 2, .production_id = 7), - [4190] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 2, .production_id = 7), - [4192] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_hash_statement, 2), - [4194] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_hash_statement, 2), - [4196] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declaration, 8, .production_id = 149), - [4198] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_declaration, 8, .production_id = 149), - [4200] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_labeled_statement, 2), - [4202] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_labeled_statement, 2), - [4204] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_import_list_repeat1, 2), - [4206] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_import_list_repeat1, 2), - [4208] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_import_list_repeat1, 2), SHIFT_REPEAT(3752), - [4211] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__statement, 1), - [4213] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__statement, 1), - [4215] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_list, 1), - [4217] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_import_list, 1), - [4219] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1415), - [4221] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_global_var_declaration, 3), - [4223] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_global_var_declaration, 3), - [4225] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_global_var_definition, 2, .production_id = 12), - [4227] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_global_var_definition, 2, .production_id = 12), - [4229] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_static_method_declaration, 8, .production_id = 147), - [4231] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_static_method_declaration, 8, .production_id = 147), - [4233] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_static_method_declaration, 8, .production_id = 146), - [4235] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_static_method_declaration, 8, .production_id = 146), - [4237] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_global_var_definition, 2, .production_id = 6), - [4239] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_global_var_definition, 2, .production_id = 6), - [4241] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_declaration, 3, .production_id = 19), - [4243] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_declaration, 3, .production_id = 19), - [4245] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_declaration, 3, .production_id = 19), - [4247] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_declaration, 3, .production_id = 19), - [4249] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_interface_declaration, 3, .production_id = 19), - [4251] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_interface_declaration, 3, .production_id = 19), - [4253] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_static_method_declaration, 8, .production_id = 145), - [4255] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_static_method_declaration, 8, .production_id = 145), - [4257] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 3, .production_id = 25), - [4259] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 3, .production_id = 25), - [4261] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_asm_statement, 3), - [4263] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_asm_statement, 3), - [4265] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_assignment_statement, 3, .production_id = 28), - [4267] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_assignment_statement, 3, .production_id = 28), - [4269] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declaration, 7, .production_id = 143), - [4271] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_declaration, 7, .production_id = 143), - [4273] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_var_declaration, 3, .production_id = 35), - [4275] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_var_declaration, 3, .production_id = 35), - [4277] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declaration, 7, .production_id = 142), - [4279] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_declaration, 7, .production_id = 142), - [4281] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_const_declaration, 3, .production_id = 36), - [4283] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_const_declaration, 3, .production_id = 36), - [4285] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_global_var_declaration, 3, .production_id = 36), - [4287] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_global_var_declaration, 3, .production_id = 36), - [4289] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declaration, 7, .production_id = 140), - [4291] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_declaration, 7, .production_id = 140), - [4293] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_static_method_declaration, 7, .production_id = 138), - [4295] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_static_method_declaration, 7, .production_id = 138), - [4297] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_const_declaration, 4), - [4299] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_const_declaration, 4), - [4301] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_global_var_declaration, 4), - [4303] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_global_var_declaration, 4), - [4305] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_declaration, 4, .production_id = 40), - [4307] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_declaration, 4, .production_id = 40), - [4309] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_compile_time_for_statement, 3, .production_id = 25), - [4311] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_compile_time_for_statement, 3, .production_id = 25), - [4313] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_declaration, 4, .production_id = 51), - [4315] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_declaration, 4, .production_id = 51), - [4317] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__enum_body, 2), - [4319] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__enum_body, 2), - [4321] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_declaration, 4, .production_id = 19), - [4323] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_declaration, 4, .production_id = 19), - [4325] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__interface_body, 2), - [4327] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__interface_body, 2), - [4329] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_interface_declaration, 4, .production_id = 51), - [4331] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_interface_declaration, 4, .production_id = 51), - [4333] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declaration, 7, .production_id = 137), - [4335] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_declaration, 7, .production_id = 137), - [4337] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declaration, 4, .production_id = 44), - [4339] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_declaration, 4, .production_id = 44), - [4341] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_declaration, 4, .production_id = 68), - [4343] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_declaration, 4, .production_id = 68), - [4345] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_declaration, 4, .production_id = 68), - [4347] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_declaration, 4, .production_id = 68), - [4349] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_interface_declaration, 4, .production_id = 68), - [4351] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_interface_declaration, 4, .production_id = 68), - [4353] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_const_declaration, 4, .production_id = 36), - [4355] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_const_declaration, 4, .production_id = 36), - [4357] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_global_var_declaration, 4, .production_id = 36), - [4359] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_global_var_declaration, 4, .production_id = 36), - [4361] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_static_method_declaration, 7, .production_id = 135), - [4363] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_static_method_declaration, 7, .production_id = 135), - [4365] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_declaration, 4, .production_id = 73), - [4367] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_declaration, 4, .production_id = 73), - [4369] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_declaration, 4, .production_id = 73), - [4371] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_declaration, 4, .production_id = 73), - [4373] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_interface_declaration, 4, .production_id = 73), - [4375] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_interface_declaration, 4, .production_id = 73), - [4377] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_static_method_declaration, 7, .production_id = 131), - [4379] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_static_method_declaration, 7, .production_id = 131), - [4381] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_interface_declaration, 6, .production_id = 130), - [4383] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_interface_declaration, 6, .production_id = 130), - [4385] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_declaration, 6, .production_id = 106), - [4387] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_declaration, 6, .production_id = 106), - [4389] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_declaration, 5, .production_id = 74), - [4391] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_declaration, 5, .production_id = 74), - [4393] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_declaration, 6, .production_id = 130), - [4395] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_declaration, 6, .production_id = 130), - [4397] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declaration, 6, .production_id = 127), - [4399] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_declaration, 6, .production_id = 127), - [4401] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_const_declaration, 6, .production_id = 36), - [4403] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_const_declaration, 6, .production_id = 36), - [4405] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declaration, 6, .production_id = 125), - [4407] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_declaration, 6, .production_id = 125), - [4409] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declaration, 6, .production_id = 124), - [4411] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_declaration, 6, .production_id = 124), - [4413] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declaration, 6, .production_id = 121), - [4415] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_declaration, 6, .production_id = 121), - [4417] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declaration, 6, .production_id = 120), - [4419] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_declaration, 6, .production_id = 120), - [4421] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_declaration, 6, .production_id = 118), - [4423] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_declaration, 6, .production_id = 118), - [4425] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declaration, 5, .production_id = 80), - [4427] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_declaration, 5, .production_id = 80), - [4429] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declaration, 5, .production_id = 81), - [4431] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_declaration, 5, .production_id = 81), - [4433] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declaration, 6, .production_id = 111), - [4435] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_declaration, 6, .production_id = 111), - [4437] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__enum_body, 3), - [4439] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__enum_body, 3), - [4441] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__interface_body, 3), - [4443] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__interface_body, 3), - [4445] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_const_declaration, 5), - [4447] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_const_declaration, 5), - [4449] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_declaration, 5, .production_id = 96), - [4451] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_declaration, 5, .production_id = 96), - [4453] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declaration, 5, .production_id = 97), - [4455] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_declaration, 5, .production_id = 97), - [4457] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_static_method_declaration, 6, .production_id = 109), - [4459] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_static_method_declaration, 6, .production_id = 109), - [4461] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_interface_declaration, 5, .production_id = 106), - [4463] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_interface_declaration, 5, .production_id = 106), - [4465] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_declaration, 5, .production_id = 106), - [4467] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_declaration, 5, .production_id = 106), - [4469] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_declaration, 5, .production_id = 100), - [4471] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_declaration, 5, .production_id = 100), - [4473] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_declaration, 5, .production_id = 68), - [4475] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_declaration, 5, .production_id = 68), - [4477] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_interface_declaration, 5, .production_id = 100), - [4479] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_interface_declaration, 5, .production_id = 100), - [4481] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_declaration, 5, .production_id = 106), - [4483] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_declaration, 5, .production_id = 106), - [4485] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_interface_declaration, 5, .production_id = 104), - [4487] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_interface_declaration, 5, .production_id = 104), - [4489] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_declaration, 5, .production_id = 73), - [4491] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_declaration, 5, .production_id = 73), - [4493] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_declaration, 5, .production_id = 104), - [4495] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_declaration, 5, .production_id = 104), - [4497] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_const_declaration, 5, .production_id = 36), - [4499] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_const_declaration, 5, .production_id = 36), - [4501] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_const_declaration, 2), - [4503] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_const_declaration, 2), - [4505] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declaration, 5, .production_id = 101), - [4507] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_declaration, 5, .production_id = 101), - [4509] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_global_var_declaration, 5, .production_id = 36), - [4511] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_global_var_declaration, 5, .production_id = 36), - [4513] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_defer_statement, 2), - [4515] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_defer_statement, 2), - [4517] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1528), - [4519] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2804), - [4521] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3062), - [4523] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3602), - [4525] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3199), - [4527] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4070), - [4529] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1575), - [4531] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1577), - [4533] = {.entry = {.count = 1, .reusable = false}}, SHIFT(505), - [4535] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3192), - [4537] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3191), - [4539] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3010), - [4541] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3208), - [4543] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3206), - [4545] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3200), - [4547] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_shebang, 2), - [4549] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_shebang, 2), - [4551] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_mutability_modifiers, 1), - [4553] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_mutability_modifiers, 1), - [4555] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_declaration, 3), - [4557] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_import_declaration, 3), - [4559] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_module_clause, 2), - [4561] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_module_clause, 2), - [4563] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_module_clause, 3), - [4565] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_module_clause, 3), - [4567] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1579), - [4569] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_import_list_repeat1, 1), - [4571] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_import_list_repeat1, 1), - [4573] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), - [4575] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3577), - [4577] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3207), - [4579] = {.entry = {.count = 1, .reusable = false}}, SHIFT(524), - [4581] = {.entry = {.count = 1, .reusable = false}}, SHIFT(165), - [4583] = {.entry = {.count = 1, .reusable = false}}, SHIFT(891), - [4585] = {.entry = {.count = 1, .reusable = false}}, SHIFT(890), - [4587] = {.entry = {.count = 1, .reusable = false}}, SHIFT(888), - [4589] = {.entry = {.count = 1, .reusable = true}}, SHIFT(399), - [4591] = {.entry = {.count = 1, .reusable = false}}, SHIFT(740), - [4593] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1691), - [4595] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1688), - [4597] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1686), - [4599] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1676), - [4601] = {.entry = {.count = 1, .reusable = false}}, SHIFT(398), - [4603] = {.entry = {.count = 1, .reusable = false}}, SHIFT(817), - [4605] = {.entry = {.count = 1, .reusable = false}}, SHIFT(886), - [4607] = {.entry = {.count = 1, .reusable = false}}, SHIFT(885), - [4609] = {.entry = {.count = 1, .reusable = false}}, SHIFT(881), - [4611] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4310), - [4613] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3162), - [4615] = {.entry = {.count = 1, .reusable = false}}, SHIFT(875), - [4617] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3605), - [4619] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3153), - [4621] = {.entry = {.count = 1, .reusable = false}}, SHIFT(162), - [4623] = {.entry = {.count = 1, .reusable = false}}, SHIFT(636), - [4625] = {.entry = {.count = 1, .reusable = false}}, SHIFT(594), - [4627] = {.entry = {.count = 1, .reusable = false}}, SHIFT(593), - [4629] = {.entry = {.count = 1, .reusable = true}}, SHIFT(502), - [4631] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1894), - [4633] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1879), - [4635] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1878), - [4637] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1854), - [4639] = {.entry = {.count = 1, .reusable = false}}, SHIFT(501), - [4641] = {.entry = {.count = 1, .reusable = false}}, SHIFT(563), - [4643] = {.entry = {.count = 1, .reusable = false}}, SHIFT(560), - [4645] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4006), - [4647] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3150), - [4649] = {.entry = {.count = 1, .reusable = false}}, SHIFT(559), - [4651] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3650), - [4653] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3649), - [4655] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3631), - [4657] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3042), - [4659] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3589), - [4661] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3036), - [4663] = {.entry = {.count = 1, .reusable = true}}, SHIFT(45), - [4665] = {.entry = {.count = 1, .reusable = true}}, SHIFT(522), - [4667] = {.entry = {.count = 1, .reusable = true}}, SHIFT(163), - [4669] = {.entry = {.count = 1, .reusable = false}}, SHIFT(901), - [4671] = {.entry = {.count = 1, .reusable = false}}, SHIFT(905), - [4673] = {.entry = {.count = 1, .reusable = false}}, SHIFT(909), - [4675] = {.entry = {.count = 1, .reusable = true}}, SHIFT(909), - [4677] = {.entry = {.count = 1, .reusable = true}}, SHIFT(490), - [4679] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2059), - [4681] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2060), - [4683] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2061), - [4685] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2063), - [4687] = {.entry = {.count = 1, .reusable = false}}, SHIFT(355), - [4689] = {.entry = {.count = 1, .reusable = true}}, SHIFT(918), - [4691] = {.entry = {.count = 1, .reusable = true}}, SHIFT(919), - [4693] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4088), - [4695] = {.entry = {.count = 1, .reusable = true}}, SHIFT(355), - [4697] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3077), - [4699] = {.entry = {.count = 1, .reusable = true}}, SHIFT(920), - [4701] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_label_definition, 2), - [4703] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_label_definition, 2), - [4705] = {.entry = {.count = 1, .reusable = true}}, SHIFT(47), - [4707] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3743), - [4709] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1723), - [4711] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3600), - [4713] = {.entry = {.count = 1, .reusable = true}}, SHIFT(150), - [4715] = {.entry = {.count = 1, .reusable = false}}, SHIFT(925), - [4717] = {.entry = {.count = 1, .reusable = false}}, SHIFT(923), - [4719] = {.entry = {.count = 1, .reusable = true}}, SHIFT(471), - [4721] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2072), - [4723] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2073), - [4725] = {.entry = {.count = 1, .reusable = false}}, SHIFT(478), - [4727] = {.entry = {.count = 1, .reusable = true}}, SHIFT(478), - [4729] = {.entry = {.count = 1, .reusable = false}}, SHIFT(893), - [4731] = {.entry = {.count = 1, .reusable = false}}, SHIFT(895), - [4733] = {.entry = {.count = 1, .reusable = false}}, SHIFT(896), - [4735] = {.entry = {.count = 1, .reusable = true}}, SHIFT(896), - [4737] = {.entry = {.count = 1, .reusable = true}}, SHIFT(897), - [4739] = {.entry = {.count = 1, .reusable = true}}, SHIFT(898), - [4741] = {.entry = {.count = 1, .reusable = true}}, SHIFT(900), - [4743] = {.entry = {.count = 1, .reusable = true}}, SHIFT(537), - [4745] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3739), - [4747] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3737), - [4749] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3189), - [4751] = {.entry = {.count = 1, .reusable = false}}, SHIFT(921), - [4753] = {.entry = {.count = 1, .reusable = true}}, SHIFT(921), - [4755] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2070), - [4757] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2071), - [4759] = {.entry = {.count = 1, .reusable = true}}, SHIFT(913), - [4761] = {.entry = {.count = 1, .reusable = true}}, SHIFT(911), - [4763] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4035), - [4765] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3187), - [4767] = {.entry = {.count = 1, .reusable = true}}, SHIFT(910), - [4769] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3647), - [4771] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1826), - [4773] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3719), - [4775] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3553), - [4777] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_identifier_list, 1), - [4779] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3037), - [4781] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3052), - [4783] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3175), - [4785] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3716), - [4787] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3220), - [4789] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expression_without_blocks_list, 1), - [4791] = {.entry = {.count = 1, .reusable = true}}, SHIFT(633), - [4793] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expression_without_blocks_list, 1), - [4795] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_argument_list_repeat1, 1), - [4797] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2133), - [4799] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3718), - [4801] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3646), - [4803] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3644), - [4805] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__expression_without_blocks, 1), SHIFT(4287), - [4808] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_map_init_expression_repeat1, 1), - [4810] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2256), - [4812] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_var_definition, 1, .production_id = 6), - [4814] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2013), - [4816] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2009), - [4818] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3704), - [4820] = {.entry = {.count = 1, .reusable = false}}, SHIFT(157), - [4822] = {.entry = {.count = 1, .reusable = true}}, SHIFT(419), - [4824] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2241), - [4826] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2240), - [4828] = {.entry = {.count = 1, .reusable = false}}, SHIFT(378), - [4830] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_expression_without_blocks_list_repeat1, 2), - [4832] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_expression_without_blocks_list_repeat1, 2), - [4834] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3705), - [4836] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3386), - [4838] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2176), - [4840] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2270), - [4842] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4150), - [4844] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_match_arms_repeat1, 1), - [4846] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_match_arms_repeat1, 1), - [4848] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_argument_list_repeat1, 2), - [4850] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3702), - [4852] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__struct_field_definition, 4, .production_id = 112), - [4854] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3123), - [4856] = {.entry = {.count = 1, .reusable = false}}, SHIFT(938), - [4858] = {.entry = {.count = 1, .reusable = false}}, SHIFT(943), - [4860] = {.entry = {.count = 1, .reusable = false}}, SHIFT(945), - [4862] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2243), - [4864] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2242), - [4866] = {.entry = {.count = 1, .reusable = false}}, SHIFT(191), - [4868] = {.entry = {.count = 1, .reusable = false}}, SHIFT(936), - [4870] = {.entry = {.count = 1, .reusable = false}}, SHIFT(935), - [4872] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4303), - [4874] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3120), - [4876] = {.entry = {.count = 1, .reusable = false}}, SHIFT(933), - [4878] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3241), - [4880] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3701), - [4882] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_select_expression_repeat1, 1), - [4884] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_select_expression_repeat1, 1), - [4886] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_match_else_arm_clause, 2, .production_id = 32), - [4888] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_else_arm_clause, 2, .production_id = 32), - [4890] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_match_arm, 2, .production_id = 90), - [4892] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_arm, 2, .production_id = 90), - [4894] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_select_arm, 2), - [4896] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_select_arm, 2), - [4898] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__array_repeat1, 2), + [3736] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2212), + [3738] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3597), + [3740] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3604), + [3742] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_map_keyed_element, 3, .production_id = 38), + [3744] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1194), + [3746] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__expression_without_blocks, 1), REDUCE(aux_sym_element_list_repeat1, 1), + [3749] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__expression_without_blocks, 1), SHIFT(3845), + [3752] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_element_list_repeat1, 1), + [3754] = {.entry = {.count = 1, .reusable = false}}, SHIFT(586), + [3756] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1171), + [3758] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2019), + [3760] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3198), + [3762] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3595), + [3764] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3084), + [3766] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4167), + [3768] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1195), + [3770] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1197), + [3772] = {.entry = {.count = 1, .reusable = false}}, SHIFT(522), + [3774] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3069), + [3776] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3168), + [3778] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3001), + [3780] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3105), + [3782] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3102), + [3784] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3091), + [3786] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__expression_without_blocks, 1), SHIFT(4250), + [3789] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2108), + [3791] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3048), + [3793] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3736), + [3795] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3070), + [3797] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4148), + [3799] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1247), + [3801] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1249), + [3803] = {.entry = {.count = 1, .reusable = false}}, SHIFT(521), + [3805] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3093), + [3807] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3096), + [3809] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3171), + [3811] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3042), + [3813] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3043), + [3815] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3047), + [3817] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1202), + [3819] = {.entry = {.count = 1, .reusable = false}}, SHIFT(926), + [3821] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3645), + [3823] = {.entry = {.count = 1, .reusable = true}}, SHIFT(158), + [3825] = {.entry = {.count = 1, .reusable = true}}, SHIFT(322), + [3827] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1356), + [3829] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1357), + [3831] = {.entry = {.count = 1, .reusable = false}}, SHIFT(321), + [3833] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3645), + [3835] = {.entry = {.count = 1, .reusable = true}}, SHIFT(321), + [3837] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1222), + [3839] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_string_interpolation_repeat1, 1, .production_id = 27), + [3841] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3154), + [3843] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_string_interpolation_repeat1, 1, .production_id = 27), + [3845] = {.entry = {.count = 1, .reusable = false}}, SHIFT(849), + [3847] = {.entry = {.count = 1, .reusable = true}}, SHIFT(850), + [3849] = {.entry = {.count = 1, .reusable = false}}, SHIFT(850), + [3851] = {.entry = {.count = 1, .reusable = false}}, SHIFT(851), + [3853] = {.entry = {.count = 1, .reusable = true}}, SHIFT(851), + [3855] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3477), + [3857] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1354), + [3859] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1294), + [3861] = {.entry = {.count = 1, .reusable = true}}, SHIFT(849), + [3863] = {.entry = {.count = 1, .reusable = true}}, SHIFT(852), + [3865] = {.entry = {.count = 1, .reusable = true}}, SHIFT(856), + [3867] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4097), + [3869] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3157), + [3871] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3157), + [3873] = {.entry = {.count = 1, .reusable = false}}, SHIFT(867), + [3875] = {.entry = {.count = 1, .reusable = true}}, SHIFT(867), + [3877] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3587), + [3879] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3602), + [3881] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3588), + [3883] = {.entry = {.count = 1, .reusable = false}}, SHIFT(574), + [3885] = {.entry = {.count = 1, .reusable = true}}, SHIFT(573), + [3887] = {.entry = {.count = 1, .reusable = false}}, SHIFT(573), + [3889] = {.entry = {.count = 1, .reusable = true}}, SHIFT(574), + [3891] = {.entry = {.count = 1, .reusable = false}}, SHIFT(572), + [3893] = {.entry = {.count = 1, .reusable = true}}, SHIFT(572), + [3895] = {.entry = {.count = 1, .reusable = false}}, SHIFT(569), + [3897] = {.entry = {.count = 1, .reusable = true}}, SHIFT(569), + [3899] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__array_repeat1, 1), + [3901] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__array_repeat1, 1), + [3903] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2179), + [3905] = {.entry = {.count = 1, .reusable = true}}, SHIFT(571), + [3907] = {.entry = {.count = 1, .reusable = true}}, SHIFT(570), + [3909] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_value_attribute, 1, .production_id = 6), + [3911] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1305), + [3913] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_literal_attribute, 1), + [3915] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_literal, 1), SHIFT(3118), + [3918] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2156), + [3920] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3187), + [3922] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3663), + [3924] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3028), + [3926] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4018), + [3928] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1393), + [3930] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1394), + [3932] = {.entry = {.count = 1, .reusable = false}}, SHIFT(526), + [3934] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3026), + [3936] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3024), + [3938] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3208), + [3940] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3037), + [3942] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3030), + [3944] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3029), + [3946] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1391), + [3948] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__expression_without_blocks, 1), SHIFT(3118), + [3951] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3100), + [3953] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2341), + [3955] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3669), + [3957] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3094), + [3959] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1404), + [3961] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1402), + [3963] = {.entry = {.count = 1, .reusable = false}}, SHIFT(508), + [3965] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3097), + [3967] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3101), + [3969] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3019), + [3971] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3080), + [3973] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3087), + [3975] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3184), + [3977] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_strictly_expression_list_repeat1, 2), SHIFT_REPEAT(510), + [3980] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_union_list, 1), + [3982] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_union_list, 1), + [3984] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__type_union_list, 1), SHIFT(4579), + [3987] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3007), + [3989] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__type_union_list_repeat1, 2), + [3991] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__type_union_list_repeat1, 2), + [3993] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__type_union_list_repeat1, 2), SHIFT_REPEAT(4579), + [3996] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__type_union_list_repeat1, 2), SHIFT_REPEAT(3007), + [3999] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expression_list, 2), + [4001] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expression_list, 2), + [4003] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_union_list, 2), + [4005] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_union_list, 2), + [4007] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__type_union_list, 2), SHIFT(4579), + [4010] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_strictly_expression_list, 4), + [4012] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_strictly_expression_list, 4), + [4014] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declaration, 5, .production_id = 103), + [4016] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_declaration, 5, .production_id = 103), + [4018] = {.entry = {.count = 1, .reusable = false}}, SHIFT(54), + [4020] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declaration, 4, .production_id = 46), + [4022] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_declaration, 4, .production_id = 46), + [4024] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declaration, 4, .production_id = 47), + [4026] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_declaration, 4, .production_id = 47), + [4028] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declaration, 4, .production_id = 68), + [4030] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_declaration, 4, .production_id = 68), + [4032] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declaration, 4, .production_id = 73), + [4034] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_declaration, 4, .production_id = 73), + [4036] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1411), + [4038] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_static_method_declaration, 5, .production_id = 80), + [4040] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_static_method_declaration, 5, .production_id = 80), + [4042] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declaration, 5, .production_id = 83), + [4044] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_declaration, 5, .production_id = 83), + [4046] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declaration, 3, .production_id = 14), + [4048] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_declaration, 3, .production_id = 14), + [4050] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declaration, 5, .production_id = 99), + [4052] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_declaration, 5, .production_id = 99), + [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 = 104), + [4060] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_declaration, 5, .production_id = 104), + [4062] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declaration, 5, .production_id = 106), + [4064] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_declaration, 5, .production_id = 106), + [4066] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_static_method_declaration, 6, .production_id = 111), + [4068] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_static_method_declaration, 6, .production_id = 111), + [4070] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_static_method_declaration, 6, .production_id = 120), + [4072] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_static_method_declaration, 6, .production_id = 120), + [4074] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declaration, 6, .production_id = 123), + [4076] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_declaration, 6, .production_id = 123), + [4078] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_static_method_declaration, 6, .production_id = 124), + [4080] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_static_method_declaration, 6, .production_id = 124), + [4082] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declaration, 6, .production_id = 127), + [4084] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_declaration, 6, .production_id = 127), + [4086] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declaration, 6, .production_id = 129), + [4088] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_declaration, 6, .production_id = 129), + [4090] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declaration, 6, .production_id = 130), + [4092] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_declaration, 6, .production_id = 130), + [4094] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__type_union_list_repeat1, 3), + [4096] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__type_union_list_repeat1, 3), + [4098] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_static_method_declaration, 7, .production_id = 137), + [4100] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_static_method_declaration, 7, .production_id = 137), + [4102] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_static_method_declaration, 7, .production_id = 140), + [4104] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_static_method_declaration, 7, .production_id = 140), + [4106] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_static_method_declaration, 7, .production_id = 142), + [4108] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_static_method_declaration, 7, .production_id = 142), + [4110] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declaration, 7, .production_id = 145), + [4112] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_declaration, 7, .production_id = 145), + [4114] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2557), + [4116] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3106), + [4118] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3701), + [4120] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3220), + [4122] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4273), + [4124] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1454), + [4126] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1459), + [4128] = {.entry = {.count = 1, .reusable = false}}, SHIFT(527), + [4130] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3216), + [4132] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3204), + [4134] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3181), + [4136] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3228), + [4138] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3229), + [4140] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3225), + [4142] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_break_statement, 1), + [4144] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1530), + [4146] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_break_statement, 1), + [4148] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_continue_statement, 1), + [4150] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_continue_statement, 1), + [4152] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_static_method_declaration, 8, .production_id = 149), + [4154] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_static_method_declaration, 8, .production_id = 149), + [4156] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_const_declaration, 2), + [4158] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_const_declaration, 2), + [4160] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__enum_body, 3), + [4162] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__enum_body, 3), + [4164] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_global_var_declaration, 4), + [4166] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_global_var_declaration, 4), + [4168] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declaration, 4, .production_id = 45), + [4170] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_declaration, 4, .production_id = 45), + [4172] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_declaration, 4, .production_id = 41), + [4174] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_declaration, 4, .production_id = 41), + [4176] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_global_var_declaration, 3, .production_id = 37), + [4178] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_global_var_declaration, 3, .production_id = 37), + [4180] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_const_declaration, 3, .production_id = 37), + [4182] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_const_declaration, 3, .production_id = 37), + [4184] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_var_declaration, 3, .production_id = 36), + [4186] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_var_declaration, 3, .production_id = 36), + [4188] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_assignment_statement, 3, .production_id = 29), + [4190] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_assignment_statement, 3, .production_id = 29), + [4192] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_declaration, 4, .production_id = 52), + [4194] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_declaration, 4, .production_id = 52), + [4196] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__enum_body, 2), + [4198] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__enum_body, 2), + [4200] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_declaration, 4, .production_id = 19), + [4202] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_declaration, 4, .production_id = 19), + [4204] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__interface_body, 2), + [4206] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__interface_body, 2), + [4208] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_interface_declaration, 4, .production_id = 52), + [4210] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_interface_declaration, 4, .production_id = 52), + [4212] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_asm_statement, 3), + [4214] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_asm_statement, 3), + [4216] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1409), + [4218] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 3, .production_id = 25), + [4220] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 3, .production_id = 25), + [4222] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 1), + [4224] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 1), + [4226] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1588), + [4228] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_compile_time_for_statement, 3, .production_id = 25), + [4230] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_compile_time_for_statement, 3, .production_id = 25), + [4232] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_interface_declaration, 3, .production_id = 19), + [4234] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_interface_declaration, 3, .production_id = 19), + [4236] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_declaration, 3, .production_id = 19), + [4238] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_declaration, 3, .production_id = 19), + [4240] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_declaration, 3, .production_id = 19), + [4242] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_declaration, 3, .production_id = 19), + [4244] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_const_declaration, 4), + [4246] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_const_declaration, 4), + [4248] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_declaration, 4, .production_id = 69), + [4250] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_declaration, 4, .production_id = 69), + [4252] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_declaration, 4, .production_id = 69), + [4254] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_declaration, 4, .production_id = 69), + [4256] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_interface_declaration, 4, .production_id = 69), + [4258] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_interface_declaration, 4, .production_id = 69), + [4260] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_const_declaration, 4, .production_id = 37), + [4262] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_const_declaration, 4, .production_id = 37), + [4264] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_global_var_declaration, 4, .production_id = 37), + [4266] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_global_var_declaration, 4, .production_id = 37), + [4268] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_global_var_definition, 2, .production_id = 6), + [4270] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_global_var_definition, 2, .production_id = 6), + [4272] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_global_var_definition, 2, .production_id = 12), + [4274] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_global_var_definition, 2, .production_id = 12), + [4276] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_declaration, 4, .production_id = 74), + [4278] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_declaration, 4, .production_id = 74), + [4280] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_declaration, 4, .production_id = 74), + [4282] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_declaration, 4, .production_id = 74), + [4284] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_interface_declaration, 4, .production_id = 74), + [4286] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_interface_declaration, 4, .production_id = 74), + [4288] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_global_var_declaration, 3), + [4290] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_global_var_declaration, 3), + [4292] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_const_declaration, 3), + [4294] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_const_declaration, 3), + [4296] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_declaration, 5, .production_id = 75), + [4298] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_declaration, 5, .production_id = 75), + [4300] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_import_list_repeat1, 2), + [4302] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_import_list_repeat1, 2), + [4304] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_import_list_repeat1, 2), SHIFT_REPEAT(3603), + [4307] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_labeled_statement, 2), + [4309] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_labeled_statement, 2), + [4311] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declaration, 5, .production_id = 81), + [4313] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_declaration, 5, .production_id = 81), + [4315] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declaration, 5, .production_id = 82), + [4317] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_declaration, 5, .production_id = 82), + [4319] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__interface_body, 3), + [4321] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__interface_body, 3), + [4323] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_hash_statement, 2), + [4325] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_hash_statement, 2), + [4327] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 2, .production_id = 7), + [4329] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 2, .production_id = 7), + [4331] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_return_statement, 2, .production_id = 8), + [4333] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_return_statement, 2, .production_id = 8), + [4335] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_continue_statement, 2), + [4337] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_continue_statement, 2), + [4339] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_break_statement, 2), + [4341] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_break_statement, 2), + [4343] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_goto_statement, 2), + [4345] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_goto_statement, 2), + [4347] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_label_reference, 1), + [4349] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_label_reference, 1), + [4351] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_defer_statement, 2), + [4353] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_defer_statement, 2), + [4355] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__statement, 1), + [4357] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__statement, 1), + [4359] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_declaration, 5, .production_id = 97), + [4361] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_declaration, 5, .production_id = 97), + [4363] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_list, 1), + [4365] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_import_list, 1), + [4367] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declaration, 5, .production_id = 98), + [4369] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_declaration, 5, .production_id = 98), + [4371] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_declaration, 5, .production_id = 101), + [4373] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_declaration, 5, .production_id = 101), + [4375] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_declaration, 5, .production_id = 69), + [4377] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_declaration, 5, .production_id = 69), + [4379] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_interface_declaration, 5, .production_id = 101), + [4381] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_interface_declaration, 5, .production_id = 101), + [4383] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_const_declaration, 5, .production_id = 37), + [4385] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_const_declaration, 5, .production_id = 37), + [4387] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_global_var_declaration, 5, .production_id = 37), + [4389] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_global_var_declaration, 5, .production_id = 37), + [4391] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declaration, 5, .production_id = 102), + [4393] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_declaration, 5, .production_id = 102), + [4395] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_declaration, 5, .production_id = 105), + [4397] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_declaration, 5, .production_id = 105), + [4399] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_declaration, 5, .production_id = 74), + [4401] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_declaration, 5, .production_id = 74), + [4403] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_interface_declaration, 5, .production_id = 105), + [4405] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_interface_declaration, 5, .production_id = 105), + [4407] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_declaration, 5, .production_id = 107), + [4409] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_declaration, 5, .production_id = 107), + [4411] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_declaration, 5, .production_id = 107), + [4413] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_declaration, 5, .production_id = 107), + [4415] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_interface_declaration, 5, .production_id = 107), + [4417] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_interface_declaration, 5, .production_id = 107), + [4419] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_static_method_declaration, 9, .production_id = 151), + [4421] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_static_method_declaration, 9, .production_id = 151), + [4423] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declaration, 8, .production_id = 150), + [4425] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_declaration, 8, .production_id = 150), + [4427] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_const_declaration, 5), + [4429] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_const_declaration, 5), + [4431] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_static_method_declaration, 8, .production_id = 148), + [4433] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_static_method_declaration, 8, .production_id = 148), + [4435] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_static_method_declaration, 8, .production_id = 147), + [4437] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_static_method_declaration, 8, .production_id = 147), + [4439] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_static_method_declaration, 8, .production_id = 146), + [4441] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_static_method_declaration, 8, .production_id = 146), + [4443] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_static_method_declaration, 6, .production_id = 110), + [4445] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_static_method_declaration, 6, .production_id = 110), + [4447] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declaration, 7, .production_id = 144), + [4449] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_declaration, 7, .production_id = 144), + [4451] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declaration, 7, .production_id = 143), + [4453] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_declaration, 7, .production_id = 143), + [4455] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declaration, 6, .production_id = 112), + [4457] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_declaration, 6, .production_id = 112), + [4459] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declaration, 7, .production_id = 141), + [4461] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_declaration, 7, .production_id = 141), + [4463] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_declaration, 6, .production_id = 119), + [4465] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_declaration, 6, .production_id = 119), + [4467] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_static_method_declaration, 7, .production_id = 139), + [4469] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_static_method_declaration, 7, .production_id = 139), + [4471] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declaration, 7, .production_id = 138), + [4473] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_declaration, 7, .production_id = 138), + [4475] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declaration, 6, .production_id = 121), + [4477] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_declaration, 6, .production_id = 121), + [4479] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_static_method_declaration, 7, .production_id = 136), + [4481] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_static_method_declaration, 7, .production_id = 136), + [4483] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_global_var_declaration, 2), + [4485] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_global_var_declaration, 2), + [4487] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_static_method_declaration, 7, .production_id = 132), + [4489] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_static_method_declaration, 7, .production_id = 132), + [4491] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declaration, 6, .production_id = 122), + [4493] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_declaration, 6, .production_id = 122), + [4495] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_interface_declaration, 6, .production_id = 131), + [4497] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_interface_declaration, 6, .production_id = 131), + [4499] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_declaration, 6, .production_id = 107), + [4501] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_declaration, 6, .production_id = 107), + [4503] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_declaration, 6, .production_id = 131), + [4505] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_declaration, 6, .production_id = 131), + [4507] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declaration, 6, .production_id = 125), + [4509] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_declaration, 6, .production_id = 125), + [4511] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declaration, 6, .production_id = 126), + [4513] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_declaration, 6, .production_id = 126), + [4515] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declaration, 6, .production_id = 128), + [4517] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_declaration, 6, .production_id = 128), + [4519] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_const_declaration, 6, .production_id = 37), + [4521] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_const_declaration, 6, .production_id = 37), + [4523] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2779), + [4525] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3167), + [4527] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3675), + [4529] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3034), + [4531] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4073), + [4533] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1578), + [4535] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1576), + [4537] = {.entry = {.count = 1, .reusable = false}}, SHIFT(514), + [4539] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3035), + [4541] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3038), + [4543] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3211), + [4545] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3031), + [4547] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3032), + [4549] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3033), + [4551] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_shebang, 2), + [4553] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_shebang, 2), + [4555] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1534), + [4557] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_mutability_modifiers, 1), + [4559] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_mutability_modifiers, 1), + [4561] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_module_clause, 3), + [4563] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_module_clause, 3), + [4565] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_module_clause, 2), + [4567] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_module_clause, 2), + [4569] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_declaration, 3), + [4571] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_import_declaration, 3), + [4573] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1580), + [4575] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_import_list_repeat1, 1), + [4577] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_import_list_repeat1, 1), + [4579] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), + [4581] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3749), + [4583] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3206), + [4585] = {.entry = {.count = 1, .reusable = false}}, SHIFT(544), + [4587] = {.entry = {.count = 1, .reusable = false}}, SHIFT(152), + [4589] = {.entry = {.count = 1, .reusable = false}}, SHIFT(898), + [4591] = {.entry = {.count = 1, .reusable = false}}, SHIFT(896), + [4593] = {.entry = {.count = 1, .reusable = false}}, SHIFT(895), + [4595] = {.entry = {.count = 1, .reusable = true}}, SHIFT(391), + [4597] = {.entry = {.count = 1, .reusable = false}}, SHIFT(729), + [4599] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1693), + [4601] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1696), + [4603] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1711), + [4605] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1744), + [4607] = {.entry = {.count = 1, .reusable = false}}, SHIFT(390), + [4609] = {.entry = {.count = 1, .reusable = false}}, SHIFT(908), + [4611] = {.entry = {.count = 1, .reusable = false}}, SHIFT(885), + [4613] = {.entry = {.count = 1, .reusable = false}}, SHIFT(883), + [4615] = {.entry = {.count = 1, .reusable = false}}, SHIFT(881), + [4617] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4209), + [4619] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3205), + [4621] = {.entry = {.count = 1, .reusable = false}}, SHIFT(880), + [4623] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3660), + [4625] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3608), + [4627] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3158), + [4629] = {.entry = {.count = 1, .reusable = false}}, SHIFT(157), + [4631] = {.entry = {.count = 1, .reusable = false}}, SHIFT(759), + [4633] = {.entry = {.count = 1, .reusable = false}}, SHIFT(770), + [4635] = {.entry = {.count = 1, .reusable = false}}, SHIFT(774), + [4637] = {.entry = {.count = 1, .reusable = true}}, SHIFT(438), + [4639] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1835), + [4641] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1837), + [4643] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1839), + [4645] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1840), + [4647] = {.entry = {.count = 1, .reusable = false}}, SHIFT(440), + [4649] = {.entry = {.count = 1, .reusable = false}}, SHIFT(784), + [4651] = {.entry = {.count = 1, .reusable = false}}, SHIFT(792), + [4653] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4271), + [4655] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3162), + [4657] = {.entry = {.count = 1, .reusable = false}}, SHIFT(794), + [4659] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3610), + [4661] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3051), + [4663] = {.entry = {.count = 1, .reusable = true}}, SHIFT(54), + [4665] = {.entry = {.count = 1, .reusable = true}}, SHIFT(549), + [4667] = {.entry = {.count = 1, .reusable = true}}, SHIFT(160), + [4669] = {.entry = {.count = 1, .reusable = false}}, SHIFT(705), + [4671] = {.entry = {.count = 1, .reusable = false}}, SHIFT(702), + [4673] = {.entry = {.count = 1, .reusable = false}}, SHIFT(700), + [4675] = {.entry = {.count = 1, .reusable = true}}, SHIFT(700), + [4677] = {.entry = {.count = 1, .reusable = true}}, SHIFT(330), + [4679] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2012), + [4681] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2011), + [4683] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2001), + [4685] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1996), + [4687] = {.entry = {.count = 1, .reusable = false}}, SHIFT(331), + [4689] = {.entry = {.count = 1, .reusable = true}}, SHIFT(687), + [4691] = {.entry = {.count = 1, .reusable = true}}, SHIFT(656), + [4693] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4176), + [4695] = {.entry = {.count = 1, .reusable = true}}, SHIFT(331), + [4697] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3039), + [4699] = {.entry = {.count = 1, .reusable = true}}, SHIFT(650), + [4701] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3137), + [4703] = {.entry = {.count = 1, .reusable = true}}, SHIFT(46), + [4705] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3640), + [4707] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3629), + [4709] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_label_definition, 2), + [4711] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_label_definition, 2), + [4713] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3731), + [4715] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1712), + [4717] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3727), + [4719] = {.entry = {.count = 1, .reusable = true}}, SHIFT(155), + [4721] = {.entry = {.count = 1, .reusable = true}}, SHIFT(408), + [4723] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2075), + [4725] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2076), + [4727] = {.entry = {.count = 1, .reusable = false}}, SHIFT(411), + [4729] = {.entry = {.count = 1, .reusable = true}}, SHIFT(411), + [4731] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3112), + [4733] = {.entry = {.count = 1, .reusable = false}}, SHIFT(672), + [4735] = {.entry = {.count = 1, .reusable = false}}, SHIFT(688), + [4737] = {.entry = {.count = 1, .reusable = false}}, SHIFT(692), + [4739] = {.entry = {.count = 1, .reusable = true}}, SHIFT(692), + [4741] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2073), + [4743] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2074), + [4745] = {.entry = {.count = 1, .reusable = true}}, SHIFT(694), + [4747] = {.entry = {.count = 1, .reusable = true}}, SHIFT(696), + [4749] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4296), + [4751] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3113), + [4753] = {.entry = {.count = 1, .reusable = true}}, SHIFT(711), + [4755] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3728), + [4757] = {.entry = {.count = 1, .reusable = true}}, SHIFT(512), + [4759] = {.entry = {.count = 1, .reusable = false}}, SHIFT(941), + [4761] = {.entry = {.count = 1, .reusable = false}}, SHIFT(942), + [4763] = {.entry = {.count = 1, .reusable = false}}, SHIFT(945), + [4765] = {.entry = {.count = 1, .reusable = true}}, SHIFT(945), + [4767] = {.entry = {.count = 1, .reusable = true}}, SHIFT(946), + [4769] = {.entry = {.count = 1, .reusable = true}}, SHIFT(944), + [4771] = {.entry = {.count = 1, .reusable = true}}, SHIFT(943), + [4773] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3723), + [4775] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3614), + [4777] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3741), + [4779] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3127), + [4781] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1891), + [4783] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3551), + [4785] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_identifier_list, 1), + [4787] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3177), + [4789] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3650), + [4791] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3121), + [4793] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expression_without_blocks_list, 1), + [4795] = {.entry = {.count = 1, .reusable = true}}, SHIFT(636), + [4797] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expression_without_blocks_list, 1), + [4799] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3753), + [4801] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_argument_list_repeat1, 1), + [4803] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2135), + [4805] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3156), + [4807] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3616), + [4809] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3619), + [4811] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1952), + [4813] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__expression_without_blocks, 1), SHIFT(4286), + [4816] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_map_init_expression_repeat1, 1), + [4818] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2186), + [4820] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_is_clause, 1), + [4822] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2093), + [4824] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_var_definition, 1, .production_id = 6), + [4826] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3707), + [4828] = {.entry = {.count = 1, .reusable = false}}, SHIFT(172), + [4830] = {.entry = {.count = 1, .reusable = true}}, SHIFT(468), + [4832] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2171), + [4834] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2172), + [4836] = {.entry = {.count = 1, .reusable = false}}, SHIFT(470), + [4838] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_expression_without_blocks_list_repeat1, 2), + [4840] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_expression_without_blocks_list_repeat1, 2), + [4842] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3658), + [4844] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3396), + [4846] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3654), + [4848] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3657), + [4850] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_argument_list_repeat1, 2), + [4852] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__struct_field_definition, 4, .production_id = 113), + [4854] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3210), + [4856] = {.entry = {.count = 1, .reusable = false}}, SHIFT(913), + [4858] = {.entry = {.count = 1, .reusable = false}}, SHIFT(918), + [4860] = {.entry = {.count = 1, .reusable = false}}, SHIFT(931), + [4862] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2169), + [4864] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2170), + [4866] = {.entry = {.count = 1, .reusable = false}}, SHIFT(192), + [4868] = {.entry = {.count = 1, .reusable = false}}, SHIFT(932), + [4870] = {.entry = {.count = 1, .reusable = false}}, SHIFT(930), + [4872] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4137), + [4874] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3213), + [4876] = {.entry = {.count = 1, .reusable = false}}, SHIFT(928), + [4878] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3239), + [4880] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_match_else_arm_clause, 2, .production_id = 33), + [4882] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_else_arm_clause, 2, .production_id = 33), + [4884] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_match_arm, 2, .production_id = 91), + [4886] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_arm, 2, .production_id = 91), + [4888] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_select_expression_repeat1, 1), + [4890] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_select_expression_repeat1, 1), + [4892] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_match_arms_repeat1, 1), + [4894] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_match_arms_repeat1, 1), + [4896] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_select_arm, 2), + [4898] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_select_arm, 2), [4900] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_mutability_modifiers, 2), [4902] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_mutability_modifiers, 2), - [4904] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2265), - [4906] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_short_element_list_repeat1, 2, .production_id = 18), - [4908] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_short_element_list_repeat1, 2, .production_id = 18), - [4910] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2632), - [4912] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4101), - [4914] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2196), - [4916] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_map_init_expression_repeat1, 2), - [4918] = {.entry = {.count = 1, .reusable = false}}, SHIFT(564), - [4920] = {.entry = {.count = 1, .reusable = false}}, SHIFT(569), - [4922] = {.entry = {.count = 1, .reusable = false}}, SHIFT(577), - [4924] = {.entry = {.count = 1, .reusable = false}}, SHIFT(590), - [4926] = {.entry = {.count = 1, .reusable = false}}, SHIFT(591), - [4928] = {.entry = {.count = 1, .reusable = false}}, SHIFT(592), - [4930] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3735), - [4932] = {.entry = {.count = 1, .reusable = true}}, SHIFT(170), - [4934] = {.entry = {.count = 1, .reusable = true}}, SHIFT(343), - [4936] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2415), - [4938] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2404), - [4940] = {.entry = {.count = 1, .reusable = false}}, SHIFT(342), - [4942] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3735), - [4944] = {.entry = {.count = 1, .reusable = true}}, SHIFT(342), - [4946] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_mutability_modifiers, 3), - [4948] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_mutability_modifiers, 3), - [4950] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_field_definition, 3, .production_id = 38), - [4952] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3662), - [4954] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3747), - [4956] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3188), - [4958] = {.entry = {.count = 1, .reusable = false}}, SHIFT(535), - [4960] = {.entry = {.count = 1, .reusable = false}}, SHIFT(173), - [4962] = {.entry = {.count = 1, .reusable = false}}, SHIFT(861), - [4964] = {.entry = {.count = 1, .reusable = false}}, SHIFT(860), - [4966] = {.entry = {.count = 1, .reusable = false}}, SHIFT(859), - [4968] = {.entry = {.count = 1, .reusable = true}}, SHIFT(383), - [4970] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2528), - [4972] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2533), - [4974] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2524), - [4976] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2523), - [4978] = {.entry = {.count = 1, .reusable = false}}, SHIFT(384), - [4980] = {.entry = {.count = 1, .reusable = false}}, SHIFT(841), - [4982] = {.entry = {.count = 1, .reusable = false}}, SHIFT(837), - [4984] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4295), - [4986] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3195), - [4988] = {.entry = {.count = 1, .reusable = false}}, SHIFT(834), - [4990] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3663), - [4992] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3669), - [4994] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3043), - [4996] = {.entry = {.count = 1, .reusable = true}}, SHIFT(530), - [4998] = {.entry = {.count = 1, .reusable = false}}, SHIFT(854), - [5000] = {.entry = {.count = 1, .reusable = true}}, SHIFT(855), - [5002] = {.entry = {.count = 1, .reusable = false}}, SHIFT(855), - [5004] = {.entry = {.count = 1, .reusable = false}}, SHIFT(856), - [5006] = {.entry = {.count = 1, .reusable = true}}, SHIFT(856), - [5008] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2408), - [5010] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2403), - [5012] = {.entry = {.count = 1, .reusable = true}}, SHIFT(854), - [5014] = {.entry = {.count = 1, .reusable = true}}, SHIFT(870), - [5016] = {.entry = {.count = 1, .reusable = true}}, SHIFT(871), - [5018] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4135), - [5020] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3047), - [5022] = {.entry = {.count = 1, .reusable = true}}, SHIFT(873), - [5024] = {.entry = {.count = 1, .reusable = true}}, SHIFT(54), - [5026] = {.entry = {.count = 1, .reusable = false}}, SHIFT(914), - [5028] = {.entry = {.count = 1, .reusable = false}}, SHIFT(916), - [5030] = {.entry = {.count = 1, .reusable = false}}, SHIFT(924), - [5032] = {.entry = {.count = 1, .reusable = false}}, SHIFT(928), - [5034] = {.entry = {.count = 1, .reusable = false}}, SHIFT(930), - [5036] = {.entry = {.count = 1, .reusable = true}}, SHIFT(59), - [5038] = {.entry = {.count = 1, .reusable = false}}, SHIFT(929), - [5040] = {.entry = {.count = 1, .reusable = true}}, SHIFT(42), - [5042] = {.entry = {.count = 1, .reusable = true}}, SHIFT(46), - [5044] = {.entry = {.count = 1, .reusable = false}}, SHIFT(843), - [5046] = {.entry = {.count = 1, .reusable = true}}, SHIFT(56), - [5048] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2350), - [5050] = {.entry = {.count = 1, .reusable = true}}, SHIFT(53), - [5052] = {.entry = {.count = 1, .reusable = true}}, SHIFT(48), - [5054] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3069), + [4904] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2258), + [4906] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__array_repeat1, 2), + [4908] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_map_init_expression_repeat1, 2), + [4910] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2245), + [4912] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_short_element_list_repeat1, 2, .production_id = 18), + [4914] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_short_element_list_repeat1, 2, .production_id = 18), + [4916] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2804), + [4918] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4120), + [4920] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_mutability_modifiers, 3), + [4922] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_mutability_modifiers, 3), + [4924] = {.entry = {.count = 1, .reusable = false}}, SHIFT(804), + [4926] = {.entry = {.count = 1, .reusable = false}}, SHIFT(806), + [4928] = {.entry = {.count = 1, .reusable = false}}, SHIFT(815), + [4930] = {.entry = {.count = 1, .reusable = false}}, SHIFT(816), + [4932] = {.entry = {.count = 1, .reusable = false}}, SHIFT(819), + [4934] = {.entry = {.count = 1, .reusable = false}}, SHIFT(821), + [4936] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3634), + [4938] = {.entry = {.count = 1, .reusable = true}}, SHIFT(173), + [4940] = {.entry = {.count = 1, .reusable = true}}, SHIFT(337), + [4942] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2364), + [4944] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2293), + [4946] = {.entry = {.count = 1, .reusable = false}}, SHIFT(336), + [4948] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3634), + [4950] = {.entry = {.count = 1, .reusable = true}}, SHIFT(336), + [4952] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_field_definition, 3, .production_id = 39), + [4954] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3683), + [4956] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3725), + [4958] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3691), + [4960] = {.entry = {.count = 1, .reusable = false}}, SHIFT(163), + [4962] = {.entry = {.count = 1, .reusable = true}}, SHIFT(348), + [4964] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2575), + [4966] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2572), + [4968] = {.entry = {.count = 1, .reusable = false}}, SHIFT(349), + [4970] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3013), + [4972] = {.entry = {.count = 1, .reusable = false}}, SHIFT(519), + [4974] = {.entry = {.count = 1, .reusable = false}}, SHIFT(731), + [4976] = {.entry = {.count = 1, .reusable = false}}, SHIFT(736), + [4978] = {.entry = {.count = 1, .reusable = false}}, SHIFT(746), + [4980] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2578), + [4982] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2576), + [4984] = {.entry = {.count = 1, .reusable = false}}, SHIFT(751), + [4986] = {.entry = {.count = 1, .reusable = false}}, SHIFT(757), + [4988] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4066), + [4990] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3003), + [4992] = {.entry = {.count = 1, .reusable = false}}, SHIFT(758), + [4994] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3726), + [4996] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3046), + [4998] = {.entry = {.count = 1, .reusable = true}}, SHIFT(43), + [5000] = {.entry = {.count = 1, .reusable = true}}, SHIFT(533), + [5002] = {.entry = {.count = 1, .reusable = false}}, SHIFT(934), + [5004] = {.entry = {.count = 1, .reusable = true}}, SHIFT(935), + [5006] = {.entry = {.count = 1, .reusable = false}}, SHIFT(935), + [5008] = {.entry = {.count = 1, .reusable = false}}, SHIFT(936), + [5010] = {.entry = {.count = 1, .reusable = true}}, SHIFT(936), + [5012] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2312), + [5014] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2291), + [5016] = {.entry = {.count = 1, .reusable = true}}, SHIFT(934), + [5018] = {.entry = {.count = 1, .reusable = true}}, SHIFT(937), + [5020] = {.entry = {.count = 1, .reusable = true}}, SHIFT(938), + [5022] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4256), + [5024] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3050), + [5026] = {.entry = {.count = 1, .reusable = true}}, SHIFT(940), + [5028] = {.entry = {.count = 1, .reusable = true}}, SHIFT(47), + [5030] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2383), + [5032] = {.entry = {.count = 1, .reusable = true}}, SHIFT(56), + [5034] = {.entry = {.count = 1, .reusable = true}}, SHIFT(55), + [5036] = {.entry = {.count = 1, .reusable = false}}, SHIFT(886), + [5038] = {.entry = {.count = 1, .reusable = false}}, SHIFT(888), + [5040] = {.entry = {.count = 1, .reusable = true}}, SHIFT(49), + [5042] = {.entry = {.count = 1, .reusable = true}}, SHIFT(53), + [5044] = {.entry = {.count = 1, .reusable = false}}, SHIFT(890), + [5046] = {.entry = {.count = 1, .reusable = false}}, SHIFT(892), + [5048] = {.entry = {.count = 1, .reusable = false}}, SHIFT(902), + [5050] = {.entry = {.count = 1, .reusable = true}}, SHIFT(59), + [5052] = {.entry = {.count = 1, .reusable = true}}, SHIFT(50), + [5054] = {.entry = {.count = 1, .reusable = false}}, SHIFT(924), [5056] = {.entry = {.count = 1, .reusable = true}}, SHIFT(44), [5058] = {.entry = {.count = 1, .reusable = true}}, SHIFT(41), - [5060] = {.entry = {.count = 1, .reusable = true}}, SHIFT(49), - [5062] = {.entry = {.count = 1, .reusable = true}}, SHIFT(57), - [5064] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3636), - [5066] = {.entry = {.count = 1, .reusable = true}}, SHIFT(52), - [5068] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3736), - [5070] = {.entry = {.count = 1, .reusable = true}}, SHIFT(155), - [5072] = {.entry = {.count = 1, .reusable = true}}, SHIFT(389), - [5074] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2745), - [5076] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2744), - [5078] = {.entry = {.count = 1, .reusable = false}}, SHIFT(387), - [5080] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3736), - [5082] = {.entry = {.count = 1, .reusable = true}}, SHIFT(387), - [5084] = {.entry = {.count = 1, .reusable = false}}, SHIFT(768), - [5086] = {.entry = {.count = 1, .reusable = true}}, SHIFT(748), - [5088] = {.entry = {.count = 1, .reusable = false}}, SHIFT(748), - [5090] = {.entry = {.count = 1, .reusable = true}}, SHIFT(768), - [5092] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3634), - [5094] = {.entry = {.count = 1, .reusable = false}}, SHIFT(746), - [5096] = {.entry = {.count = 1, .reusable = true}}, SHIFT(746), - [5098] = {.entry = {.count = 1, .reusable = true}}, SHIFT(550), - [5100] = {.entry = {.count = 1, .reusable = true}}, SHIFT(720), - [5102] = {.entry = {.count = 1, .reusable = true}}, SHIFT(723), - [5104] = {.entry = {.count = 1, .reusable = false}}, SHIFT(599), - [5106] = {.entry = {.count = 1, .reusable = true}}, SHIFT(602), - [5108] = {.entry = {.count = 1, .reusable = false}}, SHIFT(602), - [5110] = {.entry = {.count = 1, .reusable = true}}, SHIFT(599), - [5112] = {.entry = {.count = 1, .reusable = false}}, SHIFT(611), - [5114] = {.entry = {.count = 1, .reusable = true}}, SHIFT(611), - [5116] = {.entry = {.count = 1, .reusable = true}}, SHIFT(615), - [5118] = {.entry = {.count = 1, .reusable = true}}, SHIFT(619), - [5120] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3626), - [5122] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3100), - [5124] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2749), - [5126] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2747), - [5128] = {.entry = {.count = 1, .reusable = true}}, SHIFT(617), - [5130] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4114), - [5132] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3099), - [5134] = {.entry = {.count = 1, .reusable = true}}, SHIFT(521), - [5136] = {.entry = {.count = 1, .reusable = false}}, SHIFT(643), - [5138] = {.entry = {.count = 1, .reusable = true}}, SHIFT(644), - [5140] = {.entry = {.count = 1, .reusable = false}}, SHIFT(644), - [5142] = {.entry = {.count = 1, .reusable = false}}, SHIFT(645), - [5144] = {.entry = {.count = 1, .reusable = true}}, SHIFT(645), - [5146] = {.entry = {.count = 1, .reusable = true}}, SHIFT(643), - [5148] = {.entry = {.count = 1, .reusable = true}}, SHIFT(646), - [5150] = {.entry = {.count = 1, .reusable = true}}, SHIFT(648), - [5152] = {.entry = {.count = 1, .reusable = false}}, SHIFT(931), - [5154] = {.entry = {.count = 1, .reusable = true}}, SHIFT(926), - [5156] = {.entry = {.count = 1, .reusable = false}}, SHIFT(926), - [5158] = {.entry = {.count = 1, .reusable = false}}, SHIFT(922), - [5160] = {.entry = {.count = 1, .reusable = true}}, SHIFT(922), - [5162] = {.entry = {.count = 1, .reusable = true}}, SHIFT(931), - [5164] = {.entry = {.count = 1, .reusable = true}}, SHIFT(892), - [5166] = {.entry = {.count = 1, .reusable = true}}, SHIFT(857), - [5168] = {.entry = {.count = 1, .reusable = true}}, SHIFT(912), - [5170] = {.entry = {.count = 1, .reusable = true}}, SHIFT(647), - [5172] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2567), - [5174] = {.entry = {.count = 1, .reusable = true}}, SHIFT(544), - [5176] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_range_clause, 3, .production_id = 31), - [5178] = {.entry = {.count = 1, .reusable = true}}, SHIFT(863), - [5180] = {.entry = {.count = 1, .reusable = false}}, SHIFT(863), - [5182] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3667), - [5184] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_attribute, 2), - [5186] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4269), - [5188] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_expression_list, 1), - [5190] = {.entry = {.count = 1, .reusable = true}}, SHIFT(427), - [5192] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3666), - [5194] = {.entry = {.count = 1, .reusable = true}}, SHIFT(43), - [5196] = {.entry = {.count = 1, .reusable = false}}, SHIFT(851), - [5198] = {.entry = {.count = 1, .reusable = true}}, SHIFT(845), - [5200] = {.entry = {.count = 1, .reusable = false}}, SHIFT(845), - [5202] = {.entry = {.count = 1, .reusable = false}}, SHIFT(833), - [5204] = {.entry = {.count = 1, .reusable = true}}, SHIFT(833), - [5206] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2872), - [5208] = {.entry = {.count = 1, .reusable = true}}, SHIFT(851), - [5210] = {.entry = {.count = 1, .reusable = true}}, SHIFT(832), - [5212] = {.entry = {.count = 1, .reusable = true}}, SHIFT(830), - [5214] = {.entry = {.count = 1, .reusable = true}}, SHIFT(825), - [5216] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2873), - [5218] = {.entry = {.count = 1, .reusable = true}}, SHIFT(50), - [5220] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2880), - [5222] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2411), - [5224] = {.entry = {.count = 1, .reusable = true}}, SHIFT(536), - [5226] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2020), - [5228] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1710), - [5230] = {.entry = {.count = 1, .reusable = true}}, SHIFT(371), - [5232] = {.entry = {.count = 1, .reusable = true}}, SHIFT(923), - [5234] = {.entry = {.count = 1, .reusable = true}}, SHIFT(740), - [5236] = {.entry = {.count = 1, .reusable = true}}, SHIFT(925), - [5238] = {.entry = {.count = 1, .reusable = true}}, SHIFT(915), - [5240] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2876), - [5242] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3664), - [5244] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2105), - [5246] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3110), - [5248] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2874), - [5250] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2855), - [5252] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1836), - [5254] = {.entry = {.count = 1, .reusable = true}}, SHIFT(51), - [5256] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2866), - [5258] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1041), - [5260] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1172), - [5262] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2832), - [5264] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2867), - [5266] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3078), - [5268] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2877), - [5270] = {.entry = {.count = 1, .reusable = true}}, SHIFT(55), - [5272] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2858), - [5274] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1292), - [5276] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2652), - [5278] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2565), - [5280] = {.entry = {.count = 1, .reusable = true}}, SHIFT(779), - [5282] = {.entry = {.count = 1, .reusable = false}}, SHIFT(779), - [5284] = {.entry = {.count = 1, .reusable = true}}, SHIFT(58), - [5286] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2842), - [5288] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__definite_range, 3, .production_id = 95), - [5290] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2879), - [5292] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2187), - [5294] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2824), - [5296] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1815), - [5298] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3181), - [5300] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3264), - [5302] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2859), - [5304] = {.entry = {.count = 1, .reusable = true}}, SHIFT(542), - [5306] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3030), - [5308] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2995), - [5310] = {.entry = {.count = 1, .reusable = true}}, SHIFT(682), - [5312] = {.entry = {.count = 1, .reusable = false}}, SHIFT(682), - [5314] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1027), - [5316] = {.entry = {.count = 1, .reusable = false}}, SHIFT(685), - [5318] = {.entry = {.count = 1, .reusable = false}}, SHIFT(678), - [5320] = {.entry = {.count = 1, .reusable = true}}, SHIFT(678), - [5322] = {.entry = {.count = 1, .reusable = true}}, SHIFT(685), - [5324] = {.entry = {.count = 1, .reusable = true}}, SHIFT(676), - [5326] = {.entry = {.count = 1, .reusable = true}}, SHIFT(669), - [5328] = {.entry = {.count = 1, .reusable = true}}, SHIFT(666), - [5330] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2076), - [5332] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2118), - [5334] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_range, 3, .production_id = 95), - [5336] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3249), - [5338] = {.entry = {.count = 1, .reusable = true}}, SHIFT(153), - [5340] = {.entry = {.count = 1, .reusable = true}}, SHIFT(347), - [5342] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2093), - [5344] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2457), - [5346] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1092), - [5348] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1330), - [5350] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1448), - [5352] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2485), - [5354] = {.entry = {.count = 1, .reusable = true}}, SHIFT(171), - [5356] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1218), - [5358] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1028), - [5360] = {.entry = {.count = 1, .reusable = true}}, SHIFT(330), - [5362] = {.entry = {.count = 1, .reusable = true}}, SHIFT(168), - [5364] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1245), - [5366] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1374), - [5368] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2655), - [5370] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2085), - [5372] = {.entry = {.count = 1, .reusable = true}}, SHIFT(166), - [5374] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3256), - [5376] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1600), - [5378] = {.entry = {.count = 1, .reusable = true}}, SHIFT(158), - [5380] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_range, 2, .production_id = 63), - [5382] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1921), - [5384] = {.entry = {.count = 1, .reusable = true}}, SHIFT(160), - [5386] = {.entry = {.count = 1, .reusable = true}}, SHIFT(210), - [5388] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1821), - [5390] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1588), - [5392] = {.entry = {.count = 1, .reusable = true}}, SHIFT(151), - [5394] = {.entry = {.count = 1, .reusable = true}}, SHIFT(167), - [5396] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1685), - [5398] = {.entry = {.count = 1, .reusable = true}}, SHIFT(156), - [5400] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1887), - [5402] = {.entry = {.count = 1, .reusable = true}}, SHIFT(164), - [5404] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2225), - [5406] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1367), - [5408] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_match_expression_list_repeat1, 2), - [5410] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1182), - [5412] = {.entry = {.count = 1, .reusable = true}}, SHIFT(172), - [5414] = {.entry = {.count = 1, .reusable = true}}, SHIFT(174), - [5416] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3692), - [5418] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2171), - [5420] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1728), - [5422] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2730), - [5424] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2366), - [5426] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1598), - [5428] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2379), - [5430] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2644), - [5432] = {.entry = {.count = 1, .reusable = true}}, SHIFT(169), - [5434] = {.entry = {.count = 1, .reusable = true}}, SHIFT(212), - [5436] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1593), - [5438] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2825), - [5440] = {.entry = {.count = 1, .reusable = true}}, SHIFT(487), - [5442] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2157), - [5444] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3693), - [5446] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3059), - [5448] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3202), - [5450] = {.entry = {.count = 1, .reusable = true}}, SHIFT(905), - [5452] = {.entry = {.count = 1, .reusable = true}}, SHIFT(901), - [5454] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3113), - [5456] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3145), - [5458] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3055), - [5460] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3700), - [5462] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3051), - [5464] = {.entry = {.count = 1, .reusable = true}}, SHIFT(850), - [5466] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3224), - [5468] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_mutable_identifier, 2), - [5470] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3040), - [5472] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3090), - [5474] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2997), - [5476] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3021), - [5478] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3185), - [5480] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3039), - [5482] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3035), - [5484] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3742), - [5486] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3169), - [5488] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2881), - [5490] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2850), - [5492] = {.entry = {.count = 1, .reusable = false}}, SHIFT(513), - [5494] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3157), - [5496] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3149), - [5498] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3129), - [5500] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3014), - [5502] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3225), - [5504] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3203), - [5506] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3190), - [5508] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2376), - [5510] = {.entry = {.count = 1, .reusable = true}}, SHIFT(365), - [5512] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_short_lambda, 3), - [5514] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3073), - [5516] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1024), - [5518] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3168), - [5520] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3171), - [5522] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3178), - [5524] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3054), - [5526] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2090), - [5528] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3140), - [5530] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3109), + [5060] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3704), + [5062] = {.entry = {.count = 1, .reusable = true}}, SHIFT(40), + [5064] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3175), + [5066] = {.entry = {.count = 1, .reusable = false}}, SHIFT(884), + [5068] = {.entry = {.count = 1, .reusable = true}}, SHIFT(45), + [5070] = {.entry = {.count = 1, .reusable = false}}, SHIFT(853), + [5072] = {.entry = {.count = 1, .reusable = true}}, SHIFT(848), + [5074] = {.entry = {.count = 1, .reusable = false}}, SHIFT(848), + [5076] = {.entry = {.count = 1, .reusable = true}}, SHIFT(853), + [5078] = {.entry = {.count = 1, .reusable = false}}, SHIFT(846), + [5080] = {.entry = {.count = 1, .reusable = true}}, SHIFT(846), + [5082] = {.entry = {.count = 1, .reusable = true}}, SHIFT(827), + [5084] = {.entry = {.count = 1, .reusable = true}}, SHIFT(825), + [5086] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3709), + [5088] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3706), + [5090] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3720), + [5092] = {.entry = {.count = 1, .reusable = true}}, SHIFT(168), + [5094] = {.entry = {.count = 1, .reusable = true}}, SHIFT(482), + [5096] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2721), + [5098] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2719), + [5100] = {.entry = {.count = 1, .reusable = false}}, SHIFT(485), + [5102] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3720), + [5104] = {.entry = {.count = 1, .reusable = true}}, SHIFT(485), + [5106] = {.entry = {.count = 1, .reusable = false}}, SHIFT(828), + [5108] = {.entry = {.count = 1, .reusable = true}}, SHIFT(829), + [5110] = {.entry = {.count = 1, .reusable = false}}, SHIFT(829), + [5112] = {.entry = {.count = 1, .reusable = true}}, SHIFT(828), + [5114] = {.entry = {.count = 1, .reusable = true}}, SHIFT(826), + [5116] = {.entry = {.count = 1, .reusable = false}}, SHIFT(831), + [5118] = {.entry = {.count = 1, .reusable = true}}, SHIFT(831), + [5120] = {.entry = {.count = 1, .reusable = true}}, SHIFT(833), + [5122] = {.entry = {.count = 1, .reusable = true}}, SHIFT(835), + [5124] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3214), + [5126] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2738), + [5128] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2729), + [5130] = {.entry = {.count = 1, .reusable = true}}, SHIFT(834), + [5132] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4059), + [5134] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3209), + [5136] = {.entry = {.count = 1, .reusable = false}}, SHIFT(925), + [5138] = {.entry = {.count = 1, .reusable = true}}, SHIFT(923), + [5140] = {.entry = {.count = 1, .reusable = false}}, SHIFT(923), + [5142] = {.entry = {.count = 1, .reusable = false}}, SHIFT(922), + [5144] = {.entry = {.count = 1, .reusable = true}}, SHIFT(922), + [5146] = {.entry = {.count = 1, .reusable = true}}, SHIFT(925), + [5148] = {.entry = {.count = 1, .reusable = true}}, SHIFT(921), + [5150] = {.entry = {.count = 1, .reusable = true}}, SHIFT(552), + [5152] = {.entry = {.count = 1, .reusable = true}}, SHIFT(910), + [5154] = {.entry = {.count = 1, .reusable = true}}, SHIFT(548), + [5156] = {.entry = {.count = 1, .reusable = false}}, SHIFT(646), + [5158] = {.entry = {.count = 1, .reusable = true}}, SHIFT(648), + [5160] = {.entry = {.count = 1, .reusable = false}}, SHIFT(648), + [5162] = {.entry = {.count = 1, .reusable = false}}, SHIFT(649), + [5164] = {.entry = {.count = 1, .reusable = true}}, SHIFT(649), + [5166] = {.entry = {.count = 1, .reusable = true}}, SHIFT(646), + [5168] = {.entry = {.count = 1, .reusable = true}}, SHIFT(651), + [5170] = {.entry = {.count = 1, .reusable = true}}, SHIFT(653), + [5172] = {.entry = {.count = 1, .reusable = true}}, SHIFT(654), + [5174] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_range_clause, 3, .production_id = 32), + [5176] = {.entry = {.count = 1, .reusable = true}}, SHIFT(847), + [5178] = {.entry = {.count = 1, .reusable = false}}, SHIFT(847), + [5180] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2508), + [5182] = {.entry = {.count = 1, .reusable = true}}, SHIFT(525), + [5184] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3591), + [5186] = {.entry = {.count = 1, .reusable = true}}, SHIFT(57), + [5188] = {.entry = {.count = 1, .reusable = false}}, SHIFT(909), + [5190] = {.entry = {.count = 1, .reusable = true}}, SHIFT(907), + [5192] = {.entry = {.count = 1, .reusable = false}}, SHIFT(907), + [5194] = {.entry = {.count = 1, .reusable = false}}, SHIFT(905), + [5196] = {.entry = {.count = 1, .reusable = true}}, SHIFT(905), + [5198] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2842), + [5200] = {.entry = {.count = 1, .reusable = true}}, SHIFT(909), + [5202] = {.entry = {.count = 1, .reusable = true}}, SHIFT(904), + [5204] = {.entry = {.count = 1, .reusable = true}}, SHIFT(903), + [5206] = {.entry = {.count = 1, .reusable = true}}, SHIFT(901), + [5208] = {.entry = {.count = 1, .reusable = true}}, SHIFT(58), + [5210] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2869), + [5212] = {.entry = {.count = 1, .reusable = true}}, SHIFT(51), + [5214] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2844), + [5216] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3590), + [5218] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1726), + [5220] = {.entry = {.count = 1, .reusable = true}}, SHIFT(543), + [5222] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_expression_list, 1), + [5224] = {.entry = {.count = 1, .reusable = true}}, SHIFT(389), + [5226] = {.entry = {.count = 1, .reusable = true}}, SHIFT(782), + [5228] = {.entry = {.count = 1, .reusable = false}}, SHIFT(782), + [5230] = {.entry = {.count = 1, .reusable = true}}, SHIFT(688), + [5232] = {.entry = {.count = 1, .reusable = true}}, SHIFT(729), + [5234] = {.entry = {.count = 1, .reusable = true}}, SHIFT(672), + [5236] = {.entry = {.count = 1, .reusable = true}}, SHIFT(882), + [5238] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2868), + [5240] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3586), + [5242] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3011), + [5244] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2867), + [5246] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3081), + [5248] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2873), + [5250] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1017), + [5252] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2880), + [5254] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2394), + [5256] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1830), + [5258] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2085), + [5260] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2253), + [5262] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2875), + [5264] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2648), + [5266] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1347), + [5268] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2834), + [5270] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1216), + [5272] = {.entry = {.count = 1, .reusable = true}}, SHIFT(359), + [5274] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2848), + [5276] = {.entry = {.count = 1, .reusable = true}}, SHIFT(42), + [5278] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2865), + [5280] = {.entry = {.count = 1, .reusable = true}}, SHIFT(48), + [5282] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2838), + [5284] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_attribute, 2), + [5286] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4191), + [5288] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2494), + [5290] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2883), + [5292] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1967), + [5294] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__definite_range, 3, .production_id = 96), + [5296] = {.entry = {.count = 1, .reusable = true}}, SHIFT(150), + [5298] = {.entry = {.count = 1, .reusable = true}}, SHIFT(162), + [5300] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2824), + [5302] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3257), + [5304] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3040), + [5306] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3266), + [5308] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2860), + [5310] = {.entry = {.count = 1, .reusable = true}}, SHIFT(550), + [5312] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3217), + [5314] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2966), + [5316] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2301), + [5318] = {.entry = {.count = 1, .reusable = false}}, SHIFT(725), + [5320] = {.entry = {.count = 1, .reusable = true}}, SHIFT(721), + [5322] = {.entry = {.count = 1, .reusable = false}}, SHIFT(721), + [5324] = {.entry = {.count = 1, .reusable = false}}, SHIFT(713), + [5326] = {.entry = {.count = 1, .reusable = true}}, SHIFT(713), + [5328] = {.entry = {.count = 1, .reusable = true}}, SHIFT(725), + [5330] = {.entry = {.count = 1, .reusable = true}}, SHIFT(709), + [5332] = {.entry = {.count = 1, .reusable = true}}, SHIFT(708), + [5334] = {.entry = {.count = 1, .reusable = true}}, SHIFT(706), + [5336] = {.entry = {.count = 1, .reusable = true}}, SHIFT(154), + [5338] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2562), + [5340] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1997), + [5342] = {.entry = {.count = 1, .reusable = true}}, SHIFT(169), + [5344] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1315), + [5346] = {.entry = {.count = 1, .reusable = true}}, SHIFT(161), + [5348] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2652), + [5350] = {.entry = {.count = 1, .reusable = true}}, SHIFT(419), + [5352] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2477), + [5354] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_match_expression_list_repeat1, 2), + [5356] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2409), + [5358] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3253), + [5360] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1146), + [5362] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1042), + [5364] = {.entry = {.count = 1, .reusable = true}}, SHIFT(165), + [5366] = {.entry = {.count = 1, .reusable = true}}, SHIFT(166), + [5368] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1716), + [5370] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1240), + [5372] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1370), + [5374] = {.entry = {.count = 1, .reusable = true}}, SHIFT(212), + [5376] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1592), + [5378] = {.entry = {.count = 1, .reusable = true}}, SHIFT(167), + [5380] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2182), + [5382] = {.entry = {.count = 1, .reusable = true}}, SHIFT(159), + [5384] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3695), + [5386] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1594), + [5388] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2065), + [5390] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_range, 2, .production_id = 64), + [5392] = {.entry = {.count = 1, .reusable = true}}, SHIFT(213), + [5394] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2088), + [5396] = {.entry = {.count = 1, .reusable = true}}, SHIFT(164), + [5398] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2644), + [5400] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1603), + [5402] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1449), + [5404] = {.entry = {.count = 1, .reusable = true}}, SHIFT(499), + [5406] = {.entry = {.count = 1, .reusable = true}}, SHIFT(171), + [5408] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1348), + [5410] = {.entry = {.count = 1, .reusable = true}}, SHIFT(156), + [5412] = {.entry = {.count = 1, .reusable = true}}, SHIFT(151), + [5414] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1860), + [5416] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2816), + [5418] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1050), + [5420] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2053), + [5422] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1079), + [5424] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_range, 3, .production_id = 96), + [5426] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1604), + [5428] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2150), + [5430] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1845), + [5432] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1163), + [5434] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1859), + [5436] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2691), + [5438] = {.entry = {.count = 1, .reusable = true}}, SHIFT(320), + [5440] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2118), + [5442] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1689), + [5444] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2190), + [5446] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3696), + [5448] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3159), + [5450] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3230), + [5452] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3172), + [5454] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3023), + [5456] = {.entry = {.count = 1, .reusable = true}}, SHIFT(702), + [5458] = {.entry = {.count = 1, .reusable = true}}, SHIFT(705), + [5460] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_mutable_identifier, 2), + [5462] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3199), + [5464] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3155), + [5466] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3132), + [5468] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3123), + [5470] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3136), + [5472] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3004), + [5474] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3703), + [5476] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3197), + [5478] = {.entry = {.count = 1, .reusable = true}}, SHIFT(929), + [5480] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3146), + [5482] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3188), + [5484] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3153), + [5486] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3607), + [5488] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3151), + [5490] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2835), + [5492] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2871), + [5494] = {.entry = {.count = 1, .reusable = false}}, SHIFT(542), + [5496] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3140), + [5498] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3165), + [5500] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3009), + [5502] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3203), + [5504] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3200), + [5506] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3192), + [5508] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_var_definition, 2, .production_id = 24), + [5510] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3120), + [5512] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3060), + [5514] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3119), + [5516] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3183), + [5518] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1087), + [5520] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3147), + [5522] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3021), + [5524] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3010), + [5526] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2643), + [5528] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3083), + [5530] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3118), [5532] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_short_lambda, 5), - [5534] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2477), - [5536] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3097), - [5538] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1369), - [5540] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2786), - [5542] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3011), + [5534] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3178), + [5536] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1384), + [5538] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2048), + [5540] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2000), + [5542] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_short_lambda, 3), [5544] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1246), - [5546] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3148), - [5548] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3221), - [5550] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3222), - [5552] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1975), - [5554] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1679), - [5556] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_short_lambda, 4), - [5558] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3116), - [5560] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3127), - [5562] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3029), - [5564] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1892), - [5566] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2168), - [5568] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3001), - [5570] = {.entry = {.count = 1, .reusable = true}}, SHIFT(721), - [5572] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3024), - [5574] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1097), - [5576] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1099), - [5578] = {.entry = {.count = 1, .reusable = true}}, SHIFT(518), - [5580] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3068), - [5582] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3028), - [5584] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3130), - [5586] = {.entry = {.count = 1, .reusable = true}}, SHIFT(828), - [5588] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3169), - [5590] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2881), - [5592] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2850), - [5594] = {.entry = {.count = 1, .reusable = true}}, SHIFT(513), - [5596] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3157), - [5598] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3129), - [5600] = {.entry = {.count = 1, .reusable = true}}, SHIFT(420), - [5602] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1188), - [5604] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1646), - [5606] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2816), - [5608] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3084), - [5610] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2539), - [5612] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1853), - [5614] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2553), - [5616] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1470), - [5618] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1868), - [5620] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1628), - [5622] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2336), - [5624] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1943), - [5626] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1469), - [5628] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1962), - [5630] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1183), - [5632] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1971), - [5634] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1960), - [5636] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2156), - [5638] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2361), - [5640] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2151), - [5642] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2808), - [5644] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2734), - [5646] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2743), - [5648] = {.entry = {.count = 1, .reusable = true}}, SHIFT(360), - [5650] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1064), - [5652] = {.entry = {.count = 1, .reusable = true}}, SHIFT(994), - [5654] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1327), - [5656] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1315), - [5658] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3344), - [5660] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3341), - [5662] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3139), - [5664] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1206), - [5666] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1219), - [5668] = {.entry = {.count = 1, .reusable = true}}, SHIFT(533), - [5670] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2998), - [5672] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3194), - [5674] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3089), - [5676] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1426), - [5678] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1420), - [5680] = {.entry = {.count = 1, .reusable = true}}, SHIFT(507), - [5682] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3092), - [5684] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3201), - [5686] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3165), - [5688] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3019), - [5690] = {.entry = {.count = 1, .reusable = true}}, SHIFT(175), - [5692] = {.entry = {.count = 1, .reusable = true}}, SHIFT(196), - [5694] = {.entry = {.count = 1, .reusable = true}}, SHIFT(539), - [5696] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3026), - [5698] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3122), - [5700] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3022), - [5702] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3056), - [5704] = {.entry = {.count = 1, .reusable = true}}, SHIFT(71), - [5706] = {.entry = {.count = 1, .reusable = true}}, SHIFT(67), - [5708] = {.entry = {.count = 1, .reusable = true}}, SHIFT(527), - [5710] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3061), - [5712] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3146), - [5714] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3104), - [5716] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3057), - [5718] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1122), - [5720] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1118), - [5722] = {.entry = {.count = 1, .reusable = true}}, SHIFT(520), - [5724] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3082), - [5726] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3006), - [5728] = {.entry = {.count = 1, .reusable = true}}, SHIFT(981), - [5730] = {.entry = {.count = 1, .reusable = true}}, SHIFT(982), - [5732] = {.entry = {.count = 1, .reusable = true}}, SHIFT(545), - [5734] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3158), - [5736] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1401), - [5738] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1400), - [5740] = {.entry = {.count = 1, .reusable = true}}, SHIFT(515), - [5742] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3033), - [5744] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3176), - [5746] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1223), - [5748] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1205), - [5750] = {.entry = {.count = 1, .reusable = true}}, SHIFT(532), - [5752] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3167), - [5754] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1575), - [5756] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1577), - [5758] = {.entry = {.count = 1, .reusable = true}}, SHIFT(505), - [5760] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3192), - [5762] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3079), + [5546] = {.entry = {.count = 1, .reusable = true}}, SHIFT(345), + [5548] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3085), + [5550] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2202), + [5552] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_short_lambda, 4), + [5554] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3057), + [5556] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_is_clause, 2, .production_id = 26), + [5558] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3078), + [5560] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1785), + [5562] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1719), + [5564] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3000), + [5566] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3180), + [5568] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3016), + [5570] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2412), + [5572] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2474), + [5574] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3227), + [5576] = {.entry = {.count = 1, .reusable = true}}, SHIFT(719), + [5578] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3185), + [5580] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1100), + [5582] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1098), + [5584] = {.entry = {.count = 1, .reusable = true}}, SHIFT(546), + [5586] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3189), + [5588] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3115), + [5590] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3133), + [5592] = {.entry = {.count = 1, .reusable = true}}, SHIFT(912), + [5594] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3151), + [5596] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2835), + [5598] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2871), + [5600] = {.entry = {.count = 1, .reusable = true}}, SHIFT(542), + [5602] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3140), + [5604] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3009), + [5606] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2077), + [5608] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2831), + [5610] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3224), + [5612] = {.entry = {.count = 1, .reusable = true}}, SHIFT(501), + [5614] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1383), + [5616] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3357), + [5618] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1226), + [5620] = {.entry = {.count = 1, .reusable = true}}, SHIFT(446), + [5622] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1464), + [5624] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1091), + [5626] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1181), + [5628] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3345), + [5630] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2100), + [5632] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2047), + [5634] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2058), + [5636] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2746), + [5638] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1641), + [5640] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2737), + [5642] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2219), + [5644] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2316), + [5646] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1418), + [5648] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1794), + [5650] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2196), + [5652] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1036), + [5654] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1308), + [5656] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2821), + [5658] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2290), + [5660] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1669), + [5662] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2489), + [5664] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2517), + [5666] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1786), + [5668] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3025), + [5670] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3130), + [5672] = {.entry = {.count = 1, .reusable = true}}, SHIFT(68), + [5674] = {.entry = {.count = 1, .reusable = true}}, SHIFT(70), + [5676] = {.entry = {.count = 1, .reusable = true}}, SHIFT(528), + [5678] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3134), + [5680] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3052), + [5682] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3222), + [5684] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3174), + [5686] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1123), + [5688] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1120), + [5690] = {.entry = {.count = 1, .reusable = true}}, SHIFT(507), + [5692] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3068), + [5694] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3207), + [5696] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3106), + [5698] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3220), + [5700] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1454), + [5702] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1459), + [5704] = {.entry = {.count = 1, .reusable = true}}, SHIFT(527), + [5706] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3216), + [5708] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3181), + [5710] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3187), + [5712] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3028), + [5714] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1393), + [5716] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1394), + [5718] = {.entry = {.count = 1, .reusable = true}}, SHIFT(526), + [5720] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3026), + [5722] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3208), + [5724] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1404), + [5726] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1402), + [5728] = {.entry = {.count = 1, .reusable = true}}, SHIFT(508), + [5730] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3097), + [5732] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3084), + [5734] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1195), + [5736] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1197), + [5738] = {.entry = {.count = 1, .reusable = true}}, SHIFT(522), + [5740] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3069), + [5742] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3012), + [5744] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3212), + [5746] = {.entry = {.count = 1, .reusable = true}}, SHIFT(177), + [5748] = {.entry = {.count = 1, .reusable = true}}, SHIFT(194), + [5750] = {.entry = {.count = 1, .reusable = true}}, SHIFT(541), + [5752] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3226), + [5754] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3163), + [5756] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1578), + [5758] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1576), + [5760] = {.entry = {.count = 1, .reusable = true}}, SHIFT(514), + [5762] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3035), [5764] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3070), - [5766] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1398), - [5768] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1397), - [5770] = {.entry = {.count = 1, .reusable = true}}, SHIFT(508), - [5772] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3065), - [5774] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3008), - [5776] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3163), - [5778] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3071), - [5780] = {.entry = {.count = 1, .reusable = true}}, SHIFT(948), - [5782] = {.entry = {.count = 1, .reusable = true}}, SHIFT(949), - [5784] = {.entry = {.count = 1, .reusable = true}}, SHIFT(523), - [5786] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3075), - [5788] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3170), - [5790] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3111), - [5792] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1103), - [5794] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1105), - [5796] = {.entry = {.count = 1, .reusable = true}}, SHIFT(541), - [5798] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3108), - [5800] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3186), - [5802] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3193), - [5804] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3118), - [5806] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2419), - [5808] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2417), - [5810] = {.entry = {.count = 1, .reusable = true}}, SHIFT(548), - [5812] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3114), - [5814] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3086), - [5816] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2333), - [5818] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4212), - [5820] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3832), - [5822] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3731), - [5824] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2797), - [5826] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3806), - [5828] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3806), - [5830] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4101), - [5832] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3384), - [5834] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4173), - [5836] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3599), - [5838] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_attribute, 4), - [5840] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3268), - [5842] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3278), + [5766] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1247), + [5768] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1249), + [5770] = {.entry = {.count = 1, .reusable = true}}, SHIFT(521), + [5772] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3093), + [5774] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3055), + [5776] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1103), + [5778] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1105), + [5780] = {.entry = {.count = 1, .reusable = true}}, SHIFT(530), + [5782] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3058), + [5784] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3036), + [5786] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3143), + [5788] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3164), + [5790] = {.entry = {.count = 1, .reusable = true}}, SHIFT(952), + [5792] = {.entry = {.count = 1, .reusable = true}}, SHIFT(951), + [5794] = {.entry = {.count = 1, .reusable = true}}, SHIFT(539), + [5796] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3150), + [5798] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3196), + [5800] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3221), + [5802] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3095), + [5804] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2428), + [5806] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2427), + [5808] = {.entry = {.count = 1, .reusable = true}}, SHIFT(516), + [5810] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3090), + [5812] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3202), + [5814] = {.entry = {.count = 1, .reusable = true}}, SHIFT(987), + [5816] = {.entry = {.count = 1, .reusable = true}}, SHIFT(990), + [5818] = {.entry = {.count = 1, .reusable = true}}, SHIFT(547), + [5820] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3107), + [5822] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2353), + [5824] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4238), + [5826] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3983), + [5828] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3742), + [5830] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2782), + [5832] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3761), + [5834] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3761), + [5836] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4120), + [5838] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3397), + [5840] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3662), + [5842] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4239), [5844] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_attribute, 3), [5846] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3277), - [5848] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_expression_without_blocks_list_repeat1, 2), SHIFT_REPEAT(633), - [5851] = {.entry = {.count = 1, .reusable = true}}, SHIFT(547), - [5853] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expression_without_blocks_list, 2), - [5855] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_strictly_expression_list_repeat1, 2), SHIFT_REPEAT(547), - [5858] = {.entry = {.count = 1, .reusable = true}}, SHIFT(524), - [5860] = {.entry = {.count = 1, .reusable = true}}, SHIFT(511), - [5862] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2184), - [5864] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1554), - [5866] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_select_arm_statement, 1), - [5868] = {.entry = {.count = 1, .reusable = true}}, SHIFT(531), - [5870] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1524), - [5872] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__interface_body_repeat1, 2), SHIFT_REPEAT(2184), - [5875] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__interface_body_repeat1, 2), - [5877] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__interface_body_repeat1, 2), SHIFT_REPEAT(4410), - [5880] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__interface_body_repeat1, 2), SHIFT_REPEAT(4232), - [5883] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2425), - [5885] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2232), - [5887] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1074), - [5889] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__struct_body_repeat1, 2), SHIFT_REPEAT(2425), - [5892] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__struct_body_repeat1, 2), - [5894] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__struct_body_repeat1, 2), SHIFT_REPEAT(4410), - [5897] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__struct_body_repeat1, 2), SHIFT_REPEAT(4232), - [5900] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3807), - [5902] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3161), - [5904] = {.entry = {.count = 1, .reusable = true}}, SHIFT(430), - [5906] = {.entry = {.count = 1, .reusable = true}}, SHIFT(425), - [5908] = {.entry = {.count = 1, .reusable = true}}, SHIFT(340), - [5910] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2737), - [5912] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3354), - [5914] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1474), - [5916] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1981), - [5918] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1633), - [5920] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2464), - [5922] = {.entry = {.count = 1, .reusable = true}}, SHIFT(375), - [5924] = {.entry = {.count = 1, .reusable = true}}, SHIFT(338), - [5926] = {.entry = {.count = 1, .reusable = true}}, SHIFT(997), - [5928] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1955), - [5930] = {.entry = {.count = 1, .reusable = true}}, SHIFT(339), - [5932] = {.entry = {.count = 1, .reusable = true}}, SHIFT(373), - [5934] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1917), - [5936] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1319), - [5938] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1164), - [5940] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2150), - [5942] = {.entry = {.count = 1, .reusable = true}}, SHIFT(434), - [5944] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1452), - [5946] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1667), - [5948] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2348), - [5950] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2476), - [5952] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1817), - [5954] = {.entry = {.count = 1, .reusable = true}}, SHIFT(380), - [5956] = {.entry = {.count = 1, .reusable = true}}, SHIFT(379), - [5958] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1227), - [5960] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1966), - [5962] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2720), - [5964] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3347), - [5966] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_attributes_repeat1, 1), - [5968] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1858), - [5970] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3359), - [5972] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1304), - [5974] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_attributes_repeat1, 2), - [5976] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attributes_repeat1, 2), SHIFT_REPEAT(3241), - [5979] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attributes, 1), - [5981] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_receiver, 5, .production_id = 108), - [5983] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_receiver, 5, .production_id = 108), - [5985] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_receiver, 4, .production_id = 76), - [5987] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_receiver, 4, .production_id = 76), - [5989] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__struct_field_definition, 2, .production_id = 42), - [5991] = {.entry = {.count = 1, .reusable = false}}, SHIFT(759), - [5993] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_interface_method_definition, 2, .production_id = 87), - [5995] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_interface_method_definition, 3, .production_id = 114), - [5997] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_embedded_definition, 1), - [5999] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2957), - [6001] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_visibility_modifiers, 1), - [6003] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3740), - [6005] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4369), - [6007] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3854), - [6009] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3376), - [6011] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3259), - [6013] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4362), - [6015] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3419), - [6017] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4361), - [6019] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4360), - [6021] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2705), - [6023] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3908), - [6025] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_field_definition, 1, .production_id = 6), - [6027] = {.entry = {.count = 1, .reusable = false}}, SHIFT(762), - [6029] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3615), - [6031] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__struct_field_definition, 3, .production_id = 84), - [6033] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__interface_body_repeat1, 1), - [6035] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3558), - [6037] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4421), - [6039] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3895), - [6041] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3825), - [6043] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4406), - [6045] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_field_scope, 2), - [6047] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_import_path, 2), - [6049] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4314), - [6051] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_field_scope, 3), - [6053] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__struct_body_repeat1, 1), - [6055] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3576), - [6057] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_interface_method_definition, 3, .production_id = 113), - [6059] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_field_declaration, 1, .production_id = 17), - [6061] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_import_path, 1), - [6063] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_import_spec, 1), - [6065] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4274), - [6067] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3998), - [6069] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__struct_field_definition, 5, .production_id = 132), - [6071] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_import_path_repeat1, 2), - [6073] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_import_path_repeat1, 2), SHIFT_REPEAT(4314), - [6076] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_field_declaration, 1), - [6078] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_interface_method_definition, 4, .production_id = 134), - [6080] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3371), - [6082] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_element_list, 1), - [6084] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2643), - [6086] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3853), - [6088] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4373), - [6090] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3255), - [6092] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4372), - [6094] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4371), - [6096] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4370), - [6098] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1678), - [6100] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_selective_import_list_repeat1, 1), - [6102] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3842), - [6104] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_import_name, 1), - [6106] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_visibility_modifiers, 1), - [6108] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3757), - [6110] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_element_list_repeat1, 2), SHIFT_REPEAT(3371), - [6113] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_element_list_repeat1, 2), - [6115] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_element_list_repeat1, 2), SHIFT_REPEAT(686), - [6118] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3707), - [6120] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3707), - [6122] = {.entry = {.count = 1, .reusable = false}}, SHIFT(256), - [6124] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1009), - [6126] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2065), - [6128] = {.entry = {.count = 1, .reusable = false}}, SHIFT(447), - [6130] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3713), - [6132] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3713), - [6134] = {.entry = {.count = 1, .reusable = false}}, SHIFT(241), - [6136] = {.entry = {.count = 1, .reusable = false}}, SHIFT(450), - [6138] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2755), - [6140] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2754), - [6142] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4585), - [6144] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_format_specifier, 1), - [6146] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3779), - [6148] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4588), - [6150] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3746), - [6152] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3746), - [6154] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_c_string_literal_repeat1, 2), SHIFT_REPEAT(3707), - [6157] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_c_string_literal_repeat1, 2), SHIFT_REPEAT(3707), - [6160] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_c_string_literal_repeat1, 2), SHIFT_REPEAT(256), - [6163] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_c_string_literal_repeat1, 2), - [6165] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2530), - [6167] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2543), - [6169] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1283), - [6171] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1262), - [6173] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_c_string_literal_repeat2, 2), SHIFT_REPEAT(3713), - [6176] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_c_string_literal_repeat2, 2), SHIFT_REPEAT(3713), - [6179] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_c_string_literal_repeat2, 2), SHIFT_REPEAT(241), - [6182] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_c_string_literal_repeat2, 2), - [6184] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2509), - [6186] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2511), - [6188] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1263), - [6190] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3996), - [6192] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3260), - [6194] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4530), - [6196] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4531), - [6198] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4532), - [6200] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2681), - [6202] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2679), - [6204] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1748), - [6206] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1084), - [6208] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1731), - [6210] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2216), - [6212] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1864), - [6214] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_import_spec, 2), - [6216] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2315), - [6218] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1867), - [6220] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1083), - [6222] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2217), - [6224] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2109), - [6226] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2108), - [6228] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2314), - [6230] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1270), - [6232] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1785), - [6234] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1749), - [6236] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1745), - [6238] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2245), - [6240] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3412), - [6242] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3604), - [6244] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1784), - [6246] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_selective_import_list_repeat1, 2), SHIFT_REPEAT(3412), - [6249] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_selective_import_list_repeat1, 2), - [6251] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2246), - [6253] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2316), - [6255] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2064), - [6257] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1008), - [6259] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2327), - [6261] = {.entry = {.count = 1, .reusable = false}}, SHIFT(493), - [6263] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3592), - [6265] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2084), - [6267] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1148), - [6269] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1149), - [6271] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2083), - [6273] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_strictly_expression_list_repeat1, 2), SHIFT_REPEAT(535), - [6276] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1230), - [6278] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3595), - [6280] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1212), - [6282] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2056), - [6284] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2055), - [6286] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3007), - [6288] = {.entry = {.count = 1, .reusable = false}}, SHIFT(482), - [6290] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3280), - [6292] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3311), - [6294] = {.entry = {.count = 1, .reusable = false}}, SHIFT(60), - [6296] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__statement_list, 1), - [6298] = {.entry = {.count = 1, .reusable = true}}, SHIFT(193), - [6300] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2973), - [6302] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2330), - [6304] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4063), - [6306] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__enum_body_repeat1, 1), - [6308] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4233), - [6310] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3179), - [6312] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2320), - [6314] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__interface_body_repeat1, 2), - [6316] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4184), - [6318] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4442), - [6320] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_import_alias, 2), - [6322] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_value_attribute, 1, .production_id = 5), - [6324] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_list_repeat1, 2), SHIFT_REPEAT(63), - [6327] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__statement_list_repeat1, 2), - [6329] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_field_definition, 4, .production_id = 133), - [6331] = {.entry = {.count = 1, .reusable = false}}, SHIFT(61), - [6333] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__statement_list, 2), - [6335] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2959), - [6337] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_field_definition, 2, .production_id = 86), - [6339] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__struct_body_repeat1, 2), - [6341] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1678), - [6343] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4494), - [6345] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4464), - [6347] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1569), - [6349] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3105), - [6351] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3587), - [6353] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3373), - [6355] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1522), - [6357] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2798), - [6359] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2029), - [6361] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4608), - [6363] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym___rcbr, 1), - [6365] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym___rcbr, 1), - [6367] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_string_interpolation, 2), - [6369] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_string_interpolation, 2), - [6371] = {.entry = {.count = 1, .reusable = true}}, SHIFT(237), - [6373] = {.entry = {.count = 1, .reusable = true}}, SHIFT(774), - [6375] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_selective_import_list, 4), - [6377] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1517), - [6379] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2972), - [6381] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3234), - [6383] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1928), - [6385] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4620), - [6387] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2800), - [6389] = {.entry = {.count = 1, .reusable = true}}, SHIFT(718), - [6391] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_selective_import_list, 3), - [6393] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1896), - [6395] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4624), - [6397] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2641), - [6399] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2958), - [6401] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1572), - [6403] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1532), - [6405] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1533), - [6407] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2620), - [6409] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3665), - [6411] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3974), - [6413] = {.entry = {.count = 1, .reusable = true}}, SHIFT(767), - [6415] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1336), - [6417] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4600), - [6419] = {.entry = {.count = 1, .reusable = true}}, SHIFT(639), - [6421] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_import_spec, 3), - [6423] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2794), - [6425] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2688), - [6427] = {.entry = {.count = 1, .reusable = true}}, SHIFT(286), - [6429] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1518), - [6431] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4026), - [6433] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_const_declaration_repeat1, 2), SHIFT_REPEAT(4464), - [6436] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_const_declaration_repeat1, 2), - [6438] = {.entry = {.count = 1, .reusable = true}}, SHIFT(298), - [6440] = {.entry = {.count = 1, .reusable = true}}, SHIFT(852), - [6442] = {.entry = {.count = 1, .reusable = true}}, SHIFT(280), - [6444] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1544), - [6446] = {.entry = {.count = 1, .reusable = true}}, SHIFT(260), - [6448] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_type_parameters_repeat1, 2), SHIFT_REPEAT(3179), - [6451] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_type_parameters_repeat1, 2), - [6453] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4059), - [6455] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1555), - [6457] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_global_var_declaration_repeat1, 2), SHIFT_REPEAT(2958), - [6460] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_global_var_declaration_repeat1, 2), - [6462] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2783), - [6464] = {.entry = {.count = 1, .reusable = true}}, SHIFT(263), - [6466] = {.entry = {.count = 1, .reusable = true}}, SHIFT(713), - [6468] = {.entry = {.count = 1, .reusable = true}}, SHIFT(835), - [6470] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3890), - [6472] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3852), - [6474] = {.entry = {.count = 1, .reusable = true}}, SHIFT(292), - [6476] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3691), - [6478] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_comment_repeat1, 2), SHIFT_REPEAT(3788), - [6481] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_block_comment_repeat1, 2), - [6483] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1093), - [6485] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4604), - [6487] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2626), - [6489] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2773), - [6491] = {.entry = {.count = 1, .reusable = true}}, SHIFT(662), - [6493] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3920), - [6495] = {.entry = {.count = 1, .reusable = true}}, SHIFT(248), - [6497] = {.entry = {.count = 1, .reusable = true}}, SHIFT(788), - [6499] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2628), - [6501] = {.entry = {.count = 1, .reusable = true}}, SHIFT(422), - [6503] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4497), - [6505] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_generic_parameters_repeat1, 2), SHIFT_REPEAT(4214), - [6508] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_generic_parameters_repeat1, 2), - [6510] = {.entry = {.count = 1, .reusable = true}}, SHIFT(806), - [6512] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2154), - [6514] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4628), - [6516] = {.entry = {.count = 1, .reusable = true}}, SHIFT(271), - [6518] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_string_interpolation, 3), - [6520] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_string_interpolation, 3), - [6522] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_c_string_literal_repeat1, 1), - [6524] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_c_string_literal_repeat1, 1), - [6526] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3788), - [6528] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4646), - [6530] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__enum_body_repeat1, 2), SHIFT_REPEAT(3373), - [6533] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__enum_body_repeat1, 2), - [6535] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1553), - [6537] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_c_string_literal_repeat2, 1), - [6539] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_c_string_literal_repeat2, 1), - [6541] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1241), - [6543] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4616), - [6545] = {.entry = {.count = 1, .reusable = true}}, SHIFT(747), - [6547] = {.entry = {.count = 1, .reusable = true}}, SHIFT(299), - [6549] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_string_interpolation, 4, .production_id = 94), - [6551] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_string_interpolation, 4, .production_id = 94), - [6553] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2735), - [6555] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__function_name, 1), - [6557] = {.entry = {.count = 1, .reusable = true}}, SHIFT(236), - [6559] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2706), - [6561] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2333), - [6563] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4595), - [6565] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2698), - [6567] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4632), - [6569] = {.entry = {.count = 1, .reusable = true}}, SHIFT(798), - [6571] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2969), - [6573] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1497), - [6575] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1478), - [6577] = {.entry = {.count = 1, .reusable = true}}, SHIFT(244), - [6579] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1582), - [6581] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4647), - [6583] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4453), - [6585] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_format_specifier, 2), - [6587] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3927), - [6589] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4625), - [6591] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2519), - [6593] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4612), - [6595] = {.entry = {.count = 1, .reusable = true}}, SHIFT(738), - [6597] = {.entry = {.count = 1, .reusable = true}}, SHIFT(308), - [6599] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3416), - [6601] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4257), - [6603] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2066), - [6605] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3574), - [6607] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3252), - [6609] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2971), - [6611] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1735), - [6613] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_capture_list, 5), - [6615] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2990), - [6617] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1058), - [6619] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2993), - [6621] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1310), - [6623] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2115), - [6625] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2841), - [6627] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2114), - [6629] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1786), - [6631] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4262), - [6633] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4542), - [6635] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3741), - [6637] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3563), - [6639] = {.entry = {.count = 1, .reusable = true}}, SHIFT(83), - [6641] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1693), - [6643] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_identifier_list, 2), - [6645] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1272), - [6647] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2977), - [6649] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1804), - [6651] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1808), - [6653] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4175), - [6655] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4461), - [6657] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2994), - [6659] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3352), - [6661] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4040), - [6663] = {.entry = {.count = 1, .reusable = true}}, SHIFT(884), - [6665] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2979), - [6667] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1922), - [6669] = {.entry = {.count = 1, .reusable = false}}, SHIFT(477), - [6671] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_expression_list, 1, .production_id = 57), - [6673] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4083), - [6675] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4359), - [6677] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_arm_type, 1), - [6679] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2058), - [6681] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1174), - [6683] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_block_comment_repeat1, 1), - [6685] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1869), - [6687] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1870), - [6689] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_identifier_list_repeat1, 2), SHIFT_REPEAT(3553), - [6692] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_identifier_list_repeat1, 2), - [6694] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_expression_list, 2, .production_id = 57), - [6696] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_strictly_expression_list_repeat1, 2), SHIFT_REPEAT(544), - [6699] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1243), - [6701] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2962), - [6703] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1642), - [6705] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_expression_list, 2), - [6707] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2086), - [6709] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameter_declaration, 1, .production_id = 13), - [6711] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2116), - [6713] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2117), - [6715] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2996), - [6717] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2987), - [6719] = {.entry = {.count = 1, .reusable = true}}, SHIFT(488), - [6721] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_overridable_operator, 1), - [6723] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3246), - [6725] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3250), - [6727] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4181), - [6729] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4444), - [6731] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1592), - [6733] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1010), - [6735] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1082), - [6737] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4266), - [6739] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4456), - [6741] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1589), - [6743] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1729), - [6745] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3237), - [6747] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3265), - [6749] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2244), - [6751] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__plain_attribute, 1), - [6753] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3253), - [6755] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1326), - [6757] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4259), - [6759] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4526), - [6761] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attribute_repeat1, 2), SHIFT_REPEAT(3237), - [6764] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_attribute_repeat1, 2), - [6766] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3248), - [6768] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3247), - [6770] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3932), - [6772] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_var_definition_list, 1), - [6774] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1329), - [6776] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2966), - [6778] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1814), - [6780] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1744), - [6782] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2992), - [6784] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_capture_list_repeat1, 2), SHIFT_REPEAT(3535), - [6787] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_capture_list_repeat1, 2), - [6789] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4281), - [6791] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4379), - [6793] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2529), - [6795] = {.entry = {.count = 1, .reusable = false}}, SHIFT(451), - [6797] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_capture_list, 4), - [6799] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2975), - [6801] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1477), - [6803] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1897), - [6805] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2215), - [6807] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1476), - [6809] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generic_parameters, 4), - [6811] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3597), - [6813] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3614), - [6815] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2514), - [6817] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4001), - [6819] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4435), - [6821] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_expression_list_repeat1, 2), SHIFT_REPEAT(427), - [6824] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1275), - [6826] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2978), - [6828] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1184), - [6830] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1189), - [6832] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2988), - [6834] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1318), - [6836] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1317), - [6838] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_strictly_expression_list_repeat1, 2), SHIFT_REPEAT(530), - [6841] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1417), - [6843] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_type_parameter_list_repeat1, 2), SHIFT_REPEAT(2841), - [6846] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_type_parameter_list_repeat1, 2), - [6848] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1468), - [6850] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1467), - [6852] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1090), - [6854] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2982), - [6856] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1316), - [6858] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_var_definition_list_repeat1, 2), SHIFT_REPEAT(3932), - [6861] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_var_definition_list_repeat1, 2), - [6863] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1306), - [6865] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1459), - [6867] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1970), - [6869] = {.entry = {.count = 1, .reusable = true}}, SHIFT(331), - [6871] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_expression_without_blocks_list_repeat1, 2), SHIFT_REPEAT(850), - [6874] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3258), - [6876] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4084), - [6878] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4328), - [6880] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1192), - [6882] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1195), - [6884] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3257), - [6886] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1000), - [6888] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2981), - [6890] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2228), - [6892] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generic_parameter, 1), - [6894] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_parameter_list_repeat1, 2), SHIFT_REPEAT(3574), - [6897] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_parameter_list_repeat1, 2), - [6899] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1973), - [6901] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_capture_list, 2), - [6903] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4190), - [6905] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4346), - [6907] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3413), - [6909] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3970), - [6911] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4217), - [6913] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4393), - [6915] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1150), - [6917] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2976), - [6919] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1983), - [6921] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1231), - [6923] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2487), - [6925] = {.entry = {.count = 1, .reusable = true}}, SHIFT(808), - [6927] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2974), - [6929] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4162), - [6931] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4399), - [6933] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1059), - [6935] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1060), - [6937] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2299), - [6939] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4144), - [6941] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4472), - [6943] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_strictly_expression_list_repeat1, 2), SHIFT_REPEAT(521), - [6946] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1599), - [6948] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1608), - [6950] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2753), - [6952] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generic_parameters, 5), - [6954] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2968), - [6956] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1447), - [6958] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3263), - [6960] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1946), - [6962] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4507), - [6964] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_format_specifier, 3), - [6966] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4510), - [6968] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2961), - [6970] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1233), - [6972] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1062), - [6974] = {.entry = {.count = 1, .reusable = true}}, SHIFT(180), - [6976] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2321), - [6978] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_var_definition_list, 2), - [6980] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_short_lambda_repeat1, 2), SHIFT_REPEAT(4040), - [6983] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_short_lambda_repeat1, 2), - [6985] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2558), - [6987] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4269), - [6989] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1061), - [6991] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_raw_string_literal_repeat2, 2), SHIFT_REPEAT(4257), - [6994] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_raw_string_literal_repeat2, 2), - [6996] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_raw_string_literal_repeat1, 2), SHIFT_REPEAT(4262), - [6999] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_raw_string_literal_repeat1, 2), - [7001] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3548), - [7003] = {.entry = {.count = 1, .reusable = true}}, SHIFT(667), - [7005] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2675), - [7007] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1936), - [7009] = {.entry = {.count = 1, .reusable = true}}, SHIFT(449), + [5848] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3283), + [5850] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_attribute, 4), + [5852] = {.entry = {.count = 1, .reusable = true}}, SHIFT(536), + [5854] = {.entry = {.count = 1, .reusable = true}}, SHIFT(540), + [5856] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_strictly_expression_list_repeat1, 2), SHIFT_REPEAT(536), + [5859] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_expression_without_blocks_list_repeat1, 2), SHIFT_REPEAT(636), + [5862] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expression_without_blocks_list, 2), + [5864] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3281), + [5866] = {.entry = {.count = 1, .reusable = true}}, SHIFT(544), + [5868] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_select_arm_statement, 1), + [5870] = {.entry = {.count = 1, .reusable = true}}, SHIFT(538), + [5872] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2254), + [5874] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1521), + [5876] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__interface_body_repeat1, 2), SHIFT_REPEAT(2254), + [5879] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__interface_body_repeat1, 2), + [5881] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__interface_body_repeat1, 2), SHIFT_REPEAT(4427), + [5884] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__interface_body_repeat1, 2), SHIFT_REPEAT(4231), + [5887] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1491), + [5889] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2438), + [5891] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1168), + [5893] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2039), + [5895] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2723), + [5897] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1002), + [5899] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3363), + [5901] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1642), + [5903] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3352), + [5905] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1344), + [5907] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3789), + [5909] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2015), + [5911] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1189), + [5913] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1358), + [5915] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1814), + [5917] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2740), + [5919] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1790), + [5921] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2175), + [5923] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2232), + [5925] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3045), + [5927] = {.entry = {.count = 1, .reusable = true}}, SHIFT(372), + [5929] = {.entry = {.count = 1, .reusable = true}}, SHIFT(448), + [5931] = {.entry = {.count = 1, .reusable = true}}, SHIFT(445), + [5933] = {.entry = {.count = 1, .reusable = true}}, SHIFT(384), + [5935] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__struct_body_repeat1, 2), SHIFT_REPEAT(2438), + [5938] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__struct_body_repeat1, 2), + [5940] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__struct_body_repeat1, 2), SHIFT_REPEAT(4427), + [5943] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__struct_body_repeat1, 2), SHIFT_REPEAT(4231), + [5946] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2110), + [5948] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2556), + [5950] = {.entry = {.count = 1, .reusable = true}}, SHIFT(487), + [5952] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1038), + [5954] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2511), + [5956] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3344), + [5958] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_attributes_repeat1, 1), + [5960] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1638), + [5962] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2072), + [5964] = {.entry = {.count = 1, .reusable = true}}, SHIFT(323), + [5966] = {.entry = {.count = 1, .reusable = true}}, SHIFT(327), + [5968] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2370), + [5970] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1475), + [5972] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1458), + [5974] = {.entry = {.count = 1, .reusable = true}}, SHIFT(422), + [5976] = {.entry = {.count = 1, .reusable = true}}, SHIFT(347), + [5978] = {.entry = {.count = 1, .reusable = true}}, SHIFT(346), + [5980] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attributes, 1), + [5982] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_attributes_repeat1, 2), + [5984] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attributes_repeat1, 2), SHIFT_REPEAT(3239), + [5987] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_receiver, 4, .production_id = 77), + [5989] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_receiver, 4, .production_id = 77), + [5991] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__struct_field_definition, 2, .production_id = 43), + [5993] = {.entry = {.count = 1, .reusable = false}}, SHIFT(762), + [5995] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_receiver, 5, .production_id = 109), + [5997] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_receiver, 5, .production_id = 109), + [5999] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_interface_method_definition, 2, .production_id = 88), + [6001] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_embedded_definition, 1), + [6003] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_interface_method_definition, 3, .production_id = 115), + [6005] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2960), + [6007] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_visibility_modifiers, 1), + [6009] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3708), + [6011] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4348), + [6013] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3821), + [6015] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3372), + [6017] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3263), + [6019] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4340), + [6021] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3429), + [6023] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4339), + [6025] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4338), + [6027] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2629), + [6029] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3845), + [6031] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3632), + [6033] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_field_definition, 1, .production_id = 6), + [6035] = {.entry = {.count = 1, .reusable = false}}, SHIFT(765), + [6037] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__struct_field_definition, 5, .production_id = 133), + [6039] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_interface_method_definition, 3, .production_id = 114), + [6041] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_import_path, 2), + [6043] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4313), + [6045] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__interface_body_repeat1, 1), + [6047] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3550), + [6049] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__struct_body_repeat1, 1), + [6051] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3568), + [6053] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_field_declaration, 1, .production_id = 17), + [6055] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_field_declaration, 1), + [6057] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_import_spec, 1), + [6059] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4318), + [6061] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4319), + [6063] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_interface_method_definition, 4, .production_id = 135), + [6065] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_import_path_repeat1, 2), + [6067] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_import_path_repeat1, 2), SHIFT_REPEAT(4313), + [6070] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_field_scope, 2), + [6072] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4408), + [6074] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3775), + [6076] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3957), + [6078] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4409), + [6080] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_import_path, 1), + [6082] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__struct_field_definition, 3, .production_id = 85), + [6084] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_field_scope, 3), + [6086] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2773), + [6088] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3977), + [6090] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_element_list_repeat1, 2), SHIFT_REPEAT(3368), + [6093] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_element_list_repeat1, 2), + [6095] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_element_list_repeat1, 2), SHIFT_REPEAT(677), + [6098] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3368), + [6100] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_element_list, 1), + [6102] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3811), + [6104] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1670), + [6106] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_selective_import_list_repeat1, 1), + [6108] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_visibility_modifiers, 1), + [6110] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3885), + [6112] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4362), + [6114] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3258), + [6116] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4360), + [6118] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4359), + [6120] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4356), + [6122] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_import_name, 1), + [6124] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3601), + [6126] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3601), + [6128] = {.entry = {.count = 1, .reusable = false}}, SHIFT(238), + [6130] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2217), + [6132] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2248), + [6134] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2565), + [6136] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3611), + [6138] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3611), + [6140] = {.entry = {.count = 1, .reusable = false}}, SHIFT(308), + [6142] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2566), + [6144] = {.entry = {.count = 1, .reusable = false}}, SHIFT(450), + [6146] = {.entry = {.count = 1, .reusable = false}}, SHIFT(453), + [6148] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3428), + [6150] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3687), + [6152] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1922), + [6154] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2669), + [6156] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2620), + [6158] = {.entry = {.count = 1, .reusable = false}}, SHIFT(429), + [6160] = {.entry = {.count = 1, .reusable = false}}, SHIFT(428), + [6162] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2067), + [6164] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1084), + [6166] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3110), + [6168] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2534), + [6170] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2533), + [6172] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1081), + [6174] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2747), + [6176] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2748), + [6178] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2068), + [6180] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1266), + [6182] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4493), + [6184] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_format_specifier, 1), + [6186] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3880), + [6188] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4538), + [6190] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3659), + [6192] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3659), + [6194] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1268), + [6196] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_c_string_literal_repeat1, 2), SHIFT_REPEAT(3611), + [6199] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_c_string_literal_repeat1, 2), SHIFT_REPEAT(3611), + [6202] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_c_string_literal_repeat1, 2), SHIFT_REPEAT(308), + [6205] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_c_string_literal_repeat1, 2), + [6207] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_c_string_literal_repeat2, 2), SHIFT_REPEAT(3601), + [6210] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_c_string_literal_repeat2, 2), SHIFT_REPEAT(3601), + [6213] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_c_string_literal_repeat2, 2), SHIFT_REPEAT(238), + [6216] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_c_string_literal_repeat2, 2), + [6218] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_strictly_expression_list_repeat1, 2), SHIFT_REPEAT(519), + [6221] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3689), + [6223] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2216), + [6225] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1923), + [6227] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_selective_import_list_repeat1, 2), SHIFT_REPEAT(3428), + [6230] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_selective_import_list_repeat1, 2), + [6232] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1060), + [6234] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1264), + [6236] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1720), + [6238] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1097), + [6240] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1690), + [6242] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1279), + [6244] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2020), + [6246] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2111), + [6248] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2191), + [6250] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2337), + [6252] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3623), + [6254] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2335), + [6256] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2112), + [6258] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1868), + [6260] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1867), + [6262] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1732), + [6264] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2022), + [6266] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1200), + [6268] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1227), + [6270] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1149), + [6272] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1148), + [6274] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1829), + [6276] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1828), + [6278] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2328), + [6280] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2324), + [6282] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_import_spec, 2), + [6284] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1728), + [6286] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3944), + [6288] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3259), + [6290] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4584), + [6292] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4587), + [6294] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4600), + [6296] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_value_attribute, 1, .production_id = 5), + [6298] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_field_definition, 4, .production_id = 134), + [6300] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__interface_body_repeat1, 2), + [6302] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4207), + [6304] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3284), + [6306] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3326), + [6308] = {.entry = {.count = 1, .reusable = false}}, SHIFT(60), + [6310] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__statement_list, 2), + [6312] = {.entry = {.count = 1, .reusable = true}}, SHIFT(178), + [6314] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__enum_body_repeat1, 1), + [6316] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4253), + [6318] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2984), + [6320] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2395), + [6322] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4224), + [6324] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4445), + [6326] = {.entry = {.count = 1, .reusable = false}}, SHIFT(61), + [6328] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__statement_list, 1), + [6330] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__struct_body_repeat1, 2), + [6332] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3089), + [6334] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2305), + [6336] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2992), + [6338] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_import_alias, 2), + [6340] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_list_repeat1, 2), SHIFT_REPEAT(64), + [6343] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__statement_list_repeat1, 2), + [6345] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_field_definition, 2, .production_id = 87), + [6347] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_const_declaration_repeat1, 2), SHIFT_REPEAT(4500), + [6350] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_const_declaration_repeat1, 2), + [6352] = {.entry = {.count = 1, .reusable = true}}, SHIFT(818), + [6354] = {.entry = {.count = 1, .reusable = true}}, SHIFT(295), + [6356] = {.entry = {.count = 1, .reusable = true}}, SHIFT(720), + [6358] = {.entry = {.count = 1, .reusable = true}}, SHIFT(275), + [6360] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__enum_body_repeat1, 2), SHIFT_REPEAT(3375), + [6363] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__enum_body_repeat1, 2), + [6365] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_type_parameters_repeat1, 2), SHIFT_REPEAT(3089), + [6368] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_type_parameters_repeat1, 2), + [6370] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2789), + [6372] = {.entry = {.count = 1, .reusable = true}}, SHIFT(272), + [6374] = {.entry = {.count = 1, .reusable = true}}, SHIFT(756), + [6376] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_import_spec, 3), + [6378] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_c_string_literal_repeat2, 1), + [6380] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_c_string_literal_repeat2, 1), + [6382] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3434), + [6384] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3772), + [6386] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3817), + [6388] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2706), + [6390] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1894), + [6392] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4627), + [6394] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2101), + [6396] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4611), + [6398] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_c_string_literal_repeat1, 1), + [6400] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_c_string_literal_repeat1, 1), + [6402] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4500), + [6404] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1551), + [6406] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1574), + [6408] = {.entry = {.count = 1, .reusable = true}}, SHIFT(278), + [6410] = {.entry = {.count = 1, .reusable = true}}, SHIFT(830), + [6412] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_string_interpolation, 3), + [6414] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_string_interpolation, 3), + [6416] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_string_interpolation, 4, .production_id = 95), + [6418] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_string_interpolation, 4, .production_id = 95), + [6420] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3072), + [6422] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3738), + [6424] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2759), + [6426] = {.entry = {.count = 1, .reusable = true}}, SHIFT(643), + [6428] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1159), + [6430] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4619), + [6432] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2961), + [6434] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1507), + [6436] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2353), + [6438] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4598), + [6440] = {.entry = {.count = 1, .reusable = true}}, SHIFT(318), + [6442] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4526), + [6444] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1506), + [6446] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2794), + [6448] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2727), + [6450] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3854), + [6452] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3606), + [6454] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1387), + [6456] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4603), + [6458] = {.entry = {.count = 1, .reusable = true}}, SHIFT(738), + [6460] = {.entry = {.count = 1, .reusable = true}}, SHIFT(795), + [6462] = {.entry = {.count = 1, .reusable = true}}, SHIFT(249), + [6464] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4418), + [6466] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_format_specifier, 2), + [6468] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3769), + [6470] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4406), + [6472] = {.entry = {.count = 1, .reusable = true}}, SHIFT(239), + [6474] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_generic_parameters_repeat1, 2), SHIFT_REPEAT(4179), + [6477] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_generic_parameters_repeat1, 2), + [6479] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3242), + [6481] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2781), + [6483] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2991), + [6485] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1502), + [6487] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3890), + [6489] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4650), + [6491] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_string_interpolation, 2), + [6493] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_string_interpolation, 2), + [6495] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2801), + [6497] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2755), + [6499] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1584), + [6501] = {.entry = {.count = 1, .reusable = true}}, SHIFT(596), + [6503] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym___rcbr, 1), + [6505] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym___rcbr, 1), + [6507] = {.entry = {.count = 1, .reusable = true}}, SHIFT(282), + [6509] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_global_var_declaration_repeat1, 2), SHIFT_REPEAT(2961), + [6512] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_global_var_declaration_repeat1, 2), + [6514] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_selective_import_list, 3), + [6516] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_selective_import_list, 4), + [6518] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_comment_repeat1, 2), SHIFT_REPEAT(3890), + [6521] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_block_comment_repeat1, 2), + [6523] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2455), + [6525] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4615), + [6527] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2753), + [6529] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1514), + [6531] = {.entry = {.count = 1, .reusable = true}}, SHIFT(245), + [6533] = {.entry = {.count = 1, .reusable = true}}, SHIFT(785), + [6535] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1540), + [6537] = {.entry = {.count = 1, .reusable = true}}, SHIFT(273), + [6539] = {.entry = {.count = 1, .reusable = true}}, SHIFT(286), + [6541] = {.entry = {.count = 1, .reusable = true}}, SHIFT(728), + [6543] = {.entry = {.count = 1, .reusable = true}}, SHIFT(750), + [6545] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2180), + [6547] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4631), + [6549] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1513), + [6551] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1541), + [6553] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3375), + [6555] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1480), + [6557] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1023), + [6559] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4607), + [6561] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2672), + [6563] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2701), + [6565] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4635), + [6567] = {.entry = {.count = 1, .reusable = true}}, SHIFT(789), + [6569] = {.entry = {.count = 1, .reusable = true}}, SHIFT(699), + [6571] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2003), + [6573] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4623), + [6575] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4009), + [6577] = {.entry = {.count = 1, .reusable = true}}, SHIFT(234), + [6579] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2682), + [6581] = {.entry = {.count = 1, .reusable = true}}, SHIFT(237), + [6583] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2772), + [6585] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1489), + [6587] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4649), + [6589] = {.entry = {.count = 1, .reusable = true}}, SHIFT(301), + [6591] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__function_name, 1), + [6593] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4008), + [6595] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1481), + [6597] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1670), + [6599] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4497), + [6601] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2977), + [6603] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3643), + [6605] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3912), + [6607] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_expression_list, 2), + [6609] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4257), + [6611] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1265), + [6613] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3575), + [6615] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2117), + [6617] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2988), + [6619] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2229), + [6621] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3255), + [6623] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_overridable_operator, 1), + [6625] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2338), + [6627] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4265), + [6629] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2968), + [6631] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1882), + [6633] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2861), + [6635] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1883), + [6637] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3260), + [6639] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4342), + [6641] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_format_specifier, 3), + [6643] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4334), + [6645] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2990), + [6647] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1869), + [6649] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generic_parameter, 1), + [6651] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_identifier_list_repeat1, 2), SHIFT_REPEAT(3551), + [6654] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_identifier_list_repeat1, 2), + [6656] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_capture_list, 2), + [6658] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3408), + [6660] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3909), + [6662] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_short_lambda_repeat1, 2), SHIFT_REPEAT(4063), + [6665] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_short_lambda_repeat1, 2), + [6667] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attribute_repeat1, 2), SHIFT_REPEAT(3240), + [6670] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_attribute_repeat1, 2), + [6672] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2994), + [6674] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2964), + [6676] = {.entry = {.count = 1, .reusable = true}}, SHIFT(457), + [6678] = {.entry = {.count = 1, .reusable = true}}, SHIFT(476), + [6680] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2116), + [6682] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1217), + [6684] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_expression_list_repeat1, 2), SHIFT_REPEAT(389), + [6687] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3332), + [6689] = {.entry = {.count = 1, .reusable = true}}, SHIFT(491), + [6691] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1781), + [6693] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1820), + [6695] = {.entry = {.count = 1, .reusable = true}}, SHIFT(490), + [6697] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2970), + [6699] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1451), + [6701] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1229), + [6703] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2987), + [6705] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1816), + [6707] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3333), + [6709] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1833), + [6711] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1239), + [6713] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2120), + [6715] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_strictly_expression_list_repeat1, 2), SHIFT_REPEAT(525), + [6718] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2119), + [6720] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2973), + [6722] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2969), + [6724] = {.entry = {.count = 1, .reusable = true}}, SHIFT(418), + [6726] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4276), + [6728] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4438), + [6730] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_type_parameter_list_repeat1, 2), SHIFT_REPEAT(2861), + [6733] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_type_parameter_list_repeat1, 2), + [6735] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2997), + [6737] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2561), + [6739] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameter_declaration, 1, .production_id = 13), + [6741] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_capture_list, 5), + [6743] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2962), + [6745] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2002), + [6747] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3251), + [6749] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3252), + [6751] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_expression_list, 1, .production_id = 58), + [6753] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generic_parameters, 5), + [6755] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4152), + [6757] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4459), + [6759] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3249), + [6761] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_identifier_list, 2), + [6763] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4545), + [6765] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3636), + [6767] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_expression_list, 2, .production_id = 58), + [6769] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2242), + [6771] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1092), + [6773] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3250), + [6775] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4130), + [6777] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4371), + [6779] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1089), + [6781] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1684), + [6783] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2323), + [6785] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1679), + [6787] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1300), + [6789] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1301), + [6791] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2478), + [6793] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1071), + [6795] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1277), + [6797] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3240), + [6799] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3267), + [6801] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4149), + [6803] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4491), + [6805] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1606), + [6807] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1607), + [6809] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_capture_list_repeat1, 2), SHIFT_REPEAT(3539), + [6812] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_capture_list_repeat1, 2), + [6814] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_arm_type, 1), + [6816] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_strictly_expression_list_repeat1, 2), SHIFT_REPEAT(548), + [6819] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2493), + [6821] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2218), + [6823] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generic_parameters, 4), + [6825] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3855), + [6827] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_var_definition_list, 2), + [6829] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4191), + [6831] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3693), + [6833] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4277), + [6835] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4398), + [6837] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3265), + [6839] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__plain_attribute, 1), + [6841] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3261), + [6843] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2975), + [6845] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1141), + [6847] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1140), + [6849] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4216), + [6851] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4464), + [6853] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_raw_string_literal_repeat2, 2), SHIFT_REPEAT(4257), + [6856] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_raw_string_literal_repeat2, 2), + [6858] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_raw_string_literal_repeat1, 2), SHIFT_REPEAT(4265), + [6861] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_raw_string_literal_repeat1, 2), + [6863] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3572), + [6865] = {.entry = {.count = 1, .reusable = true}}, SHIFT(670), + [6867] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1462), + [6869] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1302), + [6871] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1608), + [6873] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1609), + [6875] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2996), + [6877] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1676), + [6879] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2974), + [6881] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2036), + [6883] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4217), + [6885] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4333), + [6887] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2054), + [6889] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1152), + [6891] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3665), + [6893] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1924), + [6895] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1186), + [6897] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1191), + [6899] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_block_comment_repeat1, 1), + [6901] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1735), + [6903] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2113), + [6905] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2749), + [6907] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2241), + [6909] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1930), + [6911] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2215), + [6913] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3553), + [6915] = {.entry = {.count = 1, .reusable = true}}, SHIFT(77), + [6917] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1080), + [6919] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2744), + [6921] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_var_definition_list_repeat1, 2), SHIFT_REPEAT(3855), + [6924] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_var_definition_list_repeat1, 2), + [6926] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2995), + [6928] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3422), + [6930] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1316), + [6932] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_capture_list, 3), + [6934] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2147), + [6936] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4001), + [6938] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4396), + [6940] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generic_parameters, 3), + [6942] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2017), + [6944] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2198), + [6946] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4065), + [6948] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4475), + [6950] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1338), + [6952] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1332), + [6954] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2971), + [6956] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_expression_without_blocks_list_repeat1, 2), SHIFT_REPEAT(929), + [6959] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2745), + [6961] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2980), + [6963] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1593), + [6965] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1589), + [6967] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2532), + [6969] = {.entry = {.count = 1, .reusable = false}}, SHIFT(454), + [6971] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1026), + [6973] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3256), + [6975] = {.entry = {.count = 1, .reusable = true}}, SHIFT(184), + [6977] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1476), + [6979] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4162), + [6981] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4341), + [6983] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1027), + [6985] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2989), + [6987] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1029), + [6989] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2069), + [6991] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3262), + [6993] = {.entry = {.count = 1, .reusable = false}}, SHIFT(410), + [6995] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3747), + [6997] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4289), + [6999] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4417), + [7001] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2668), + [7003] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4063), + [7005] = {.entry = {.count = 1, .reusable = true}}, SHIFT(887), + [7007] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2178), + [7009] = {.entry = {.count = 1, .reusable = true}}, SHIFT(811), [7011] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2985), - [7013] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2717), - [7015] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2967), - [7017] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2459), - [7019] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2960), - [7021] = {.entry = {.count = 1, .reusable = true}}, SHIFT(346), - [7023] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3426), - [7025] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4050), - [7027] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4414), - [7029] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2970), - [7031] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1605), - [7033] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1606), - [7035] = {.entry = {.count = 1, .reusable = true}}, SHIFT(341), - [7037] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2746), - [7039] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2167), - [7041] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2166), - [7043] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2741), - [7045] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2162), - [7047] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2161), - [7049] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2986), - [7051] = {.entry = {.count = 1, .reusable = true}}, SHIFT(459), - [7053] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2152), - [7055] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_capture_list, 3), - [7057] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1595), - [7059] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1594), - [7061] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2110), - [7063] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generic_parameters, 3), - [7065] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2212), - [7067] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1866), - [7069] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3332), - [7071] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1591), - [7073] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1590), - [7075] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1604), - [7077] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1602), - [7079] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1596), - [7081] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2293), - [7083] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1597), - [7085] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2983), - [7087] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3330), - [7089] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2964), - [7091] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1607), - [7093] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1880), - [7095] = {.entry = {.count = 1, .reusable = true}}, SHIFT(324), - [7097] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1603), - [7099] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3254), - [7101] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4023), - [7103] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4477), - [7105] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3579), - [7107] = {.entry = {.count = 1, .reusable = true}}, SHIFT(603), - [7109] = {.entry = {.count = 1, .reusable = true}}, SHIFT(494), - [7111] = {.entry = {.count = 1, .reusable = true}}, SHIFT(474), - [7113] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameter_declaration, 2, .production_id = 43), - [7115] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3334), - [7117] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter_declaration, 2, .production_id = 42), - [7119] = {.entry = {.count = 1, .reusable = true}}, SHIFT(80), - [7121] = {.entry = {.count = 1, .reusable = true}}, SHIFT(162), - [7123] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2550), - [7125] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3282), - [7127] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameter_declaration, 2, .production_id = 41), - [7129] = {.entry = {.count = 1, .reusable = true}}, SHIFT(81), - [7131] = {.entry = {.count = 1, .reusable = true}}, SHIFT(78), - [7133] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1215), - [7135] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2224), - [7137] = {.entry = {.count = 1, .reusable = true}}, SHIFT(82), - [7139] = {.entry = {.count = 1, .reusable = true}}, SHIFT(84), - [7141] = {.entry = {.count = 1, .reusable = true}}, SHIFT(76), - [7143] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3231), - [7145] = {.entry = {.count = 1, .reusable = true}}, SHIFT(75), - [7147] = {.entry = {.count = 1, .reusable = true}}, SHIFT(74), - [7149] = {.entry = {.count = 1, .reusable = true}}, SHIFT(73), - [7151] = {.entry = {.count = 1, .reusable = true}}, SHIFT(72), - [7153] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1481), - [7155] = {.entry = {.count = 1, .reusable = true}}, SHIFT(801), - [7157] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1825), - [7159] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3229), - [7161] = {.entry = {.count = 1, .reusable = true}}, SHIFT(182), - [7163] = {.entry = {.count = 1, .reusable = true}}, SHIFT(743), - [7165] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1055), - [7167] = {.entry = {.count = 1, .reusable = true}}, SHIFT(192), - [7169] = {.entry = {.count = 1, .reusable = true}}, SHIFT(790), - [7171] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2011), - [7173] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3327), - [7175] = {.entry = {.count = 1, .reusable = true}}, SHIFT(715), - [7177] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2318), - [7179] = {.entry = {.count = 1, .reusable = true}}, SHIFT(178), - [7181] = {.entry = {.count = 1, .reusable = true}}, SHIFT(79), - [7183] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3298), - [7185] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3322), - [7187] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2732), - [7189] = {.entry = {.count = 1, .reusable = true}}, SHIFT(848), - [7191] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2656), - [7193] = {.entry = {.count = 1, .reusable = true}}, SHIFT(40), - [7195] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1307), - [7197] = {.entry = {.count = 1, .reusable = true}}, SHIFT(185), - [7199] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1687), - [7201] = {.entry = {.count = 1, .reusable = true}}, SHIFT(159), - [7203] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1848), - [7205] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3244), - [7207] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3239), - [7209] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3233), - [7211] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_capture, 2), - [7213] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_format_specifier, 4), - [7215] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4475), - [7217] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3318), - [7219] = {.entry = {.count = 1, .reusable = true}}, SHIFT(750), - [7221] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2006), - [7223] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3319), - [7225] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3592), - [7227] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3292), - [7229] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter_declaration, 4, .production_id = 107), - [7231] = {.entry = {.count = 1, .reusable = true}}, SHIFT(77), - [7233] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3310), - [7235] = {.entry = {.count = 1, .reusable = true}}, SHIFT(183), - [7237] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_var_definition, 2, .production_id = 24), - [7239] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attribute_expression, 1), - [7241] = {.entry = {.count = 1, .reusable = true}}, SHIFT(190), - [7243] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3315), - [7245] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_key_value_attribute, 3, .production_id = 54), - [7247] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_format_specifier, 5), - [7249] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4447), - [7251] = {.entry = {.count = 1, .reusable = true}}, SHIFT(194), - [7253] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3297), - [7255] = {.entry = {.count = 1, .reusable = true}}, SHIFT(776), - [7257] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1163), - [7259] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3305), - [7261] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3235), - [7263] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3236), - [7265] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1965), - [7267] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3242), - [7269] = {.entry = {.count = 1, .reusable = true}}, SHIFT(152), - [7271] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4368), - [7273] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3230), - [7275] = {.entry = {.count = 1, .reusable = true}}, SHIFT(179), - [7277] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3296), - [7279] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4443), - [7281] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3243), - [7283] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_capture, 1), - [7285] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter_declaration, 3, .production_id = 75), - [7287] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3240), - [7289] = {.entry = {.count = 1, .reusable = true}}, SHIFT(724), - [7291] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1328), - [7293] = {.entry = {.count = 1, .reusable = true}}, SHIFT(189), - [7295] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_raw_string_literal_repeat2, 1), - [7297] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_raw_string_literal_repeat2, 1), - [7299] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4536), - [7301] = {.entry = {.count = 1, .reusable = true}}, SHIFT(188), - [7303] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_raw_string_literal_repeat1, 1), - [7305] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_raw_string_literal_repeat1, 1), - [7307] = {.entry = {.count = 1, .reusable = true}}, SHIFT(165), - [7309] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1408), - [7311] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_attribute, 3), - [7313] = {.entry = {.count = 1, .reusable = true}}, SHIFT(161), - [7315] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3333), - [7317] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3283), - [7319] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2342), - [7321] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3232), - [7323] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1015), - [7325] = {.entry = {.count = 1, .reusable = true}}, SHIFT(173), - [7327] = {.entry = {.count = 1, .reusable = true}}, SHIFT(176), - [7329] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_match_expression_list_repeat1, 2, .production_id = 116), - [7331] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter_declaration, 3, .production_id = 78), - [7333] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3294), - [7335] = {.entry = {.count = 1, .reusable = true}}, SHIFT(807), - [7337] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2197), - [7339] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1958), - [7341] = {.entry = {.count = 1, .reusable = true}}, SHIFT(157), - [7343] = {.entry = {.count = 1, .reusable = true}}, SHIFT(641), - [7345] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1670), - [7347] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameter_declaration, 3, .production_id = 77), - [7349] = {.entry = {.count = 1, .reusable = true}}, SHIFT(770), - [7351] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2563), - [7353] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1280), - [7355] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2496), - [7357] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2498), - [7359] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2185), - [7361] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4097), - [7363] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1696), - [7365] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_clause, 3, .production_id = 61), - [7367] = {.entry = {.count = 1, .reusable = true}}, SHIFT(126), - [7369] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4503), - [7371] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1838), - [7373] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1699), - [7375] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2541), - [7377] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2546), - [7379] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2547), - [7381] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_range_clause, 3, .production_id = 60), - [7383] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1706), - [7385] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1505), - [7387] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1288), - [7389] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4126), - [7391] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1707), - [7393] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1298), - [7395] = {.entry = {.count = 1, .reusable = true}}, SHIFT(138), - [7397] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4568), - [7399] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1709), - [7401] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2560), - [7403] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2557), - [7405] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2198), - [7407] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2199), - [7409] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2690), - [7411] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4091), - [7413] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1712), - [7415] = {.entry = {.count = 1, .reusable = true}}, SHIFT(139), - [7417] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4489), - [7419] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3562), - [7421] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3624), - [7423] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3556), - [7425] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3096), - [7427] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4291), - [7429] = {.entry = {.count = 1, .reusable = true}}, SHIFT(131), - [7431] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4339), - [7433] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1584), - [7435] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3551), - [7437] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3607), - [7439] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3547), - [7441] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3598), - [7443] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1725), - [7445] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1727), - [7447] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4203), - [7449] = {.entry = {.count = 1, .reusable = true}}, SHIFT(144), - [7451] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4460), - [7453] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2262), - [7455] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1299), - [7457] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3198), - [7459] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2174), - [7461] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2980), - [7463] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2182), - [7465] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1682), - [7467] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4014), - [7469] = {.entry = {.count = 1, .reusable = true}}, SHIFT(988), - [7471] = {.entry = {.count = 1, .reusable = true}}, SHIFT(123), - [7473] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4499), - [7475] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2173), - [7477] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_backed_type, 2), - [7479] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4610), - [7481] = {.entry = {.count = 1, .reusable = true}}, SHIFT(134), - [7483] = {.entry = {.count = 1, .reusable = true}}, SHIFT(364), - [7485] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2965), - [7487] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4000), - [7489] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2169), - [7491] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3197), - [7493] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_clause, 5, .production_id = 117), - [7495] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2839), - [7497] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4024), - [7499] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__statement_list, 4), - [7501] = {.entry = {.count = 1, .reusable = true}}, SHIFT(113), - [7503] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4581), - [7505] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1862), - [7507] = {.entry = {.count = 1, .reusable = true}}, SHIFT(468), - [7509] = {.entry = {.count = 1, .reusable = true}}, SHIFT(469), - [7511] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2481), - [7513] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1136), - [7515] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3155), - [7517] = {.entry = {.count = 1, .reusable = true}}, SHIFT(517), - [7519] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2836), - [7521] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2835), - [7523] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3048), - [7525] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2091), - [7527] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4305), - [7529] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2096), - [7531] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1169), - [7533] = {.entry = {.count = 1, .reusable = true}}, SHIFT(125), - [7535] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4330), - [7537] = {.entry = {.count = 1, .reusable = true}}, SHIFT(238), - [7539] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1168), - [7541] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2766), - [7543] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2097), - [7545] = {.entry = {.count = 1, .reusable = true}}, SHIFT(519), - [7547] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4150), - [7549] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3388), - [7551] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4356), - [7553] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3227), - [7555] = {.entry = {.count = 1, .reusable = true}}, SHIFT(110), - [7557] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_format_specifier, 6), - [7559] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2035), - [7561] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3038), - [7563] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4108), - [7565] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3293), - [7567] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4123), - [7569] = {.entry = {.count = 1, .reusable = true}}, SHIFT(114), - [7571] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4582), - [7573] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2033), - [7575] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2833), - [7577] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4264), - [7579] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2466), - [7581] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4487), - [7583] = {.entry = {.count = 1, .reusable = true}}, SHIFT(142), - [7585] = {.entry = {.count = 1, .reusable = true}}, SHIFT(826), - [7587] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2024), - [7589] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1176), - [7591] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4025), - [7593] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4189), - [7595] = {.entry = {.count = 1, .reusable = true}}, SHIFT(130), - [7597] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4601), - [7599] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2840), - [7601] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4075), - [7603] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4543), - [7605] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1621), - [7607] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2183), - [7609] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3135), - [7611] = {.entry = {.count = 1, .reusable = true}}, SHIFT(528), - [7613] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1178), - [7615] = {.entry = {.count = 1, .reusable = true}}, SHIFT(388), - [7617] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1180), - [7619] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2012), - [7621] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2107), - [7623] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2129), - [7625] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3128), - [7627] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1886), - [7629] = {.entry = {.count = 1, .reusable = true}}, SHIFT(642), - [7631] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4287), - [7633] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1207), - [7635] = {.entry = {.count = 1, .reusable = true}}, SHIFT(665), - [7637] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1177), - [7639] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3618), - [7641] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2531), - [7643] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1345), - [7645] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1947), - [7647] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4176), - [7649] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1128), - [7651] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2037), - [7653] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3164), - [7655] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_static_receiver, 1), - [7657] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1371), - [7659] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3285), - [7661] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1248), - [7663] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2137), - [7665] = {.entry = {.count = 1, .reusable = true}}, SHIFT(352), - [7667] = {.entry = {.count = 1, .reusable = true}}, SHIFT(350), - [7669] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4645), - [7671] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3304), - [7673] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1040), - [7675] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3045), - [7677] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3316), - [7679] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1724), - [7681] = {.entry = {.count = 1, .reusable = true}}, SHIFT(446), - [7683] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3550), - [7685] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3586), - [7687] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3545), - [7689] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2663), - [7691] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2664), - [7693] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_select_arm_statement, 2), - [7695] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3102), - [7697] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2309), - [7699] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1890), - [7701] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1356), - [7703] = {.entry = {.count = 1, .reusable = true}}, SHIFT(735), - [7705] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1968), - [7707] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__statement_list, 1), - [7709] = {.entry = {.count = 1, .reusable = true}}, SHIFT(485), - [7711] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1495), - [7713] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2377), - [7715] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2406), - [7717] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1057), - [7719] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2371), - [7721] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3228), - [7723] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3085), - [7725] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1376), - [7727] = {.entry = {.count = 1, .reusable = true}}, SHIFT(979), - [7729] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3238), - [7731] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1378), - [7733] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1056), - [7735] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1884), - [7737] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2991), - [7739] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4244), - [7741] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1883), - [7743] = {.entry = {.count = 1, .reusable = true}}, SHIFT(259), - [7745] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2382), - [7747] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1933), - [7749] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1043), - [7751] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1938), - [7753] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1845), - [7755] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1843), - [7757] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1840), - [7759] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1939), - [7761] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3144), - [7763] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_select_var_declaration, 3, .production_id = 35), - [7765] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__select_arm_assignment_statement, 2), - [7767] = {.entry = {.count = 1, .reusable = true}}, SHIFT(363), - [7769] = {.entry = {.count = 1, .reusable = true}}, ACCEPT_INPUT(), - [7771] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2849), - [7773] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2147), - [7775] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_clause, 4, .production_id = 91), - [7777] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_clause, 4, .production_id = 92), - [7779] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4210), - [7781] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_select_else_arn_clause, 2), - [7783] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4211), - [7785] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1489), - [7787] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1944), - [7789] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1822), - [7791] = {.entry = {.count = 1, .reusable = true}}, SHIFT(716), - [7793] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1945), - [7795] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2878), - [7797] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2649), - [7799] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1820), - [7801] = {.entry = {.count = 1, .reusable = true}}, SHIFT(734), - [7803] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2739), - [7805] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2677), - [7807] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1025), - [7809] = {.entry = {.count = 1, .reusable = true}}, SHIFT(744), - [7811] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2678), - [7813] = {.entry = {.count = 1, .reusable = true}}, SHIFT(757), - [7815] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2869), - [7817] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2374), - [7819] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1956), - [7821] = {.entry = {.count = 1, .reusable = true}}, SHIFT(772), - [7823] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1957), - [7825] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2685), - [7827] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3567), - [7829] = {.entry = {.count = 1, .reusable = true}}, SHIFT(777), - [7831] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3730), - [7833] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2686), - [7835] = {.entry = {.count = 1, .reusable = true}}, SHIFT(793), - [7837] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1031), - [7839] = {.entry = {.count = 1, .reusable = true}}, SHIFT(802), - [7841] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3214), - [7843] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1032), - [7845] = {.entry = {.count = 1, .reusable = true}}, SHIFT(809), - [7847] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3738), - [7849] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2288), - [7851] = {.entry = {.count = 1, .reusable = true}}, SHIFT(849), - [7853] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2405), - [7855] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2402), - [7857] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1237), - [7859] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2131), - [7861] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1384), - [7863] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3101), - [7865] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1583), - [7867] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1578), - [7869] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1361), - [7871] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1038), - [7873] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2388), - [7875] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1039), - [7877] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_line_comment, 2), - [7879] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_block_comment, 2), - [7881] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_block_comment, 3), + [7013] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1597), + [7015] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4041), + [7017] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4604), + [7019] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1598), + [7021] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2972), + [7023] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1147), + [7025] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2999), + [7027] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1599), + [7029] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1600), + [7031] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1463), + [7033] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2210), + [7035] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_parameter_list_repeat1, 2), SHIFT_REPEAT(3575), + [7038] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_parameter_list_repeat1, 2), + [7040] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2577), + [7042] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2348), + [7044] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2976), + [7046] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2982), + [7048] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2720), + [7050] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1477), + [7052] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1596), + [7054] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1595), + [7056] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2983), + [7058] = {.entry = {.count = 1, .reusable = true}}, SHIFT(426), + [7060] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2027), + [7062] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1478), + [7064] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_capture_list, 4), + [7066] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2967), + [7068] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3351), + [7070] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2965), + [7072] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1329), + [7074] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1787), + [7076] = {.entry = {.count = 1, .reusable = true}}, SHIFT(442), + [7078] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1601), + [7080] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1602), + [7082] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1035), + [7084] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1034), + [7086] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1446), + [7088] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1590), + [7090] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4064), + [7092] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4375), + [7094] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_strictly_expression_list_repeat1, 2), SHIFT_REPEAT(533), + [7097] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1783), + [7099] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2086), + [7101] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2981), + [7103] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1655), + [7105] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_var_definition_list, 1), + [7107] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4026), + [7109] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4480), + [7111] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1591), + [7113] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2257), + [7115] = {.entry = {.count = 1, .reusable = true}}, SHIFT(76), + [7117] = {.entry = {.count = 1, .reusable = true}}, SHIFT(175), + [7119] = {.entry = {.count = 1, .reusable = true}}, SHIFT(79), + [7121] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3338), + [7123] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3304), + [7125] = {.entry = {.count = 1, .reusable = true}}, SHIFT(82), + [7127] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter_declaration, 3, .production_id = 79), + [7129] = {.entry = {.count = 1, .reusable = true}}, SHIFT(84), + [7131] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameter_declaration, 3, .production_id = 78), + [7133] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3232), + [7135] = {.entry = {.count = 1, .reusable = true}}, SHIFT(75), + [7137] = {.entry = {.count = 1, .reusable = true}}, SHIFT(78), + [7139] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameter_declaration, 2, .production_id = 42), + [7141] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3243), + [7143] = {.entry = {.count = 1, .reusable = true}}, SHIFT(80), + [7145] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter_declaration, 2, .production_id = 43), + [7147] = {.entry = {.count = 1, .reusable = true}}, SHIFT(81), + [7149] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3336), + [7151] = {.entry = {.count = 1, .reusable = true}}, SHIFT(196), + [7153] = {.entry = {.count = 1, .reusable = true}}, SHIFT(820), + [7155] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2655), + [7157] = {.entry = {.count = 1, .reusable = true}}, SHIFT(83), + [7159] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4608), + [7161] = {.entry = {.count = 1, .reusable = true}}, SHIFT(73), + [7163] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1530), + [7165] = {.entry = {.count = 1, .reusable = true}}, SHIFT(722), + [7167] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1304), + [7169] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1798), + [7171] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3288), + [7173] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter_declaration, 3, .production_id = 76), + [7175] = {.entry = {.count = 1, .reusable = true}}, SHIFT(179), + [7177] = {.entry = {.count = 1, .reusable = true}}, SHIFT(163), + [7179] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3287), + [7181] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1028), + [7183] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2735), + [7185] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3299), + [7187] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameter_declaration, 2, .production_id = 44), + [7189] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3234), + [7191] = {.entry = {.count = 1, .reusable = true}}, SHIFT(752), + [7193] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2510), + [7195] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_capture, 2), + [7197] = {.entry = {.count = 1, .reusable = true}}, SHIFT(462), + [7199] = {.entry = {.count = 1, .reusable = true}}, SHIFT(193), + [7201] = {.entry = {.count = 1, .reusable = true}}, SHIFT(747), + [7203] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1950), + [7205] = {.entry = {.count = 1, .reusable = true}}, SHIFT(74), + [7207] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3237), + [7209] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3623), + [7211] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3241), + [7213] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3247), + [7215] = {.entry = {.count = 1, .reusable = true}}, SHIFT(797), + [7217] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2243), + [7219] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3289), + [7221] = {.entry = {.count = 1, .reusable = true}}, SHIFT(191), + [7223] = {.entry = {.count = 1, .reusable = true}}, SHIFT(185), + [7225] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2082), + [7227] = {.entry = {.count = 1, .reusable = true}}, SHIFT(172), + [7229] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3286), + [7231] = {.entry = {.count = 1, .reusable = true}}, SHIFT(52), + [7233] = {.entry = {.count = 1, .reusable = true}}, SHIFT(186), + [7235] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3320), + [7237] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3311), + [7239] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter_declaration, 4, .production_id = 108), + [7241] = {.entry = {.count = 1, .reusable = true}}, SHIFT(180), + [7243] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3295), + [7245] = {.entry = {.count = 1, .reusable = true}}, SHIFT(606), + [7247] = {.entry = {.count = 1, .reusable = true}}, SHIFT(493), + [7249] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3233), + [7251] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3236), + [7253] = {.entry = {.count = 1, .reusable = true}}, SHIFT(72), + [7255] = {.entry = {.count = 1, .reusable = true}}, SHIFT(153), + [7257] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1731), + [7259] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_attribute, 3), + [7261] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attribute_expression, 1), + [7263] = {.entry = {.count = 1, .reusable = true}}, SHIFT(170), + [7265] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2096), + [7267] = {.entry = {.count = 1, .reusable = true}}, SHIFT(152), + [7269] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1408), + [7271] = {.entry = {.count = 1, .reusable = true}}, SHIFT(761), + [7273] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1138), + [7275] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_match_expression_list_repeat1, 2, .production_id = 117), + [7277] = {.entry = {.count = 1, .reusable = true}}, SHIFT(701), + [7279] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2382), + [7281] = {.entry = {.count = 1, .reusable = true}}, SHIFT(644), + [7283] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1725), + [7285] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4530), + [7287] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4354), + [7289] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_key_value_attribute, 3, .production_id = 55), + [7291] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_capture, 1), + [7293] = {.entry = {.count = 1, .reusable = true}}, SHIFT(195), + [7295] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3292), + [7297] = {.entry = {.count = 1, .reusable = true}}, SHIFT(733), + [7299] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1003), + [7301] = {.entry = {.count = 1, .reusable = true}}, SHIFT(790), + [7303] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1890), + [7305] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3325), + [7307] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3244), + [7309] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_raw_string_literal_repeat2, 1), + [7311] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_raw_string_literal_repeat2, 1), + [7313] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1380), + [7315] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_raw_string_literal_repeat1, 1), + [7317] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_raw_string_literal_repeat1, 1), + [7319] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1173), + [7321] = {.entry = {.count = 1, .reusable = true}}, SHIFT(157), + [7323] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3314), + [7325] = {.entry = {.count = 1, .reusable = true}}, SHIFT(174), + [7327] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2296), + [7329] = {.entry = {.count = 1, .reusable = true}}, SHIFT(182), + [7331] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3329), + [7333] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3285), + [7335] = {.entry = {.count = 1, .reusable = true}}, SHIFT(176), + [7337] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2520), + [7339] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3235), + [7341] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_format_specifier, 5), + [7343] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4355), + [7345] = {.entry = {.count = 1, .reusable = true}}, SHIFT(786), + [7347] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2090), + [7349] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3238), + [7351] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_format_specifier, 4), + [7353] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4345), + [7355] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3245), + [7357] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2406), + [7359] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3152), + [7361] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2857), + [7363] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2862), + [7365] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2092), + [7367] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4260), + [7369] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1085), + [7371] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1237), + [7373] = {.entry = {.count = 1, .reusable = true}}, SHIFT(112), + [7375] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4524), + [7377] = {.entry = {.count = 1, .reusable = true}}, SHIFT(471), + [7379] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2833), + [7381] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3573), + [7383] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3627), + [7385] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3579), + [7387] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4397), + [7389] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4306), + [7391] = {.entry = {.count = 1, .reusable = true}}, SHIFT(130), + [7393] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2881), + [7395] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1582), + [7397] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4076), + [7399] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4250), + [7401] = {.entry = {.count = 1, .reusable = true}}, SHIFT(120), + [7403] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4559), + [7405] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_format_specifier, 6), + [7407] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3571), + [7409] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2845), + [7411] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1059), + [7413] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3656), + [7415] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3570), + [7417] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_select_else_arn_clause, 2), + [7419] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3664), + [7421] = {.entry = {.count = 1, .reusable = true}}, SHIFT(233), + [7423] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1130), + [7425] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1046), + [7427] = {.entry = {.count = 1, .reusable = true}}, SHIFT(417), + [7429] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_range_clause, 3, .production_id = 61), + [7431] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3076), + [7433] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4201), + [7435] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4616), + [7437] = {.entry = {.count = 1, .reusable = true}}, SHIFT(143), + [7439] = {.entry = {.count = 1, .reusable = true}}, SHIFT(115), + [7441] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4451), + [7443] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1718), + [7445] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4190), + [7447] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1022), + [7449] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3194), + [7451] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3195), + [7453] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_clause, 3, .production_id = 62), + [7455] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2998), + [7457] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1270), + [7459] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1714), + [7461] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1019), + [7463] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1021), + [7465] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2369), + [7467] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4298), + [7469] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1713), + [7471] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_select_arm_statement, 2), + [7473] = {.entry = {.count = 1, .reusable = true}}, SHIFT(110), + [7475] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4330), + [7477] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1014), + [7479] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4462), + [7481] = {.entry = {.count = 1, .reusable = true}}, SHIFT(139), + [7483] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1888), + [7485] = {.entry = {.count = 1, .reusable = true}}, SHIFT(306), + [7487] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4088), + [7489] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1889), + [7491] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4219), + [7493] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1244), + [7495] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4268), + [7497] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2986), + [7499] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1683), + [7501] = {.entry = {.count = 1, .reusable = true}}, SHIFT(134), + [7503] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4423), + [7505] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4311), + [7507] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1682), + [7509] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1236), + [7511] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1235), + [7513] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2859), + [7515] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1001), + [7517] = {.entry = {.count = 1, .reusable = true}}, SHIFT(520), + [7519] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1224), + [7521] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1675), + [7523] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1221), + [7525] = {.entry = {.count = 1, .reusable = true}}, SHIFT(997), + [7527] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4131), + [7529] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1729), + [7531] = {.entry = {.count = 1, .reusable = true}}, SHIFT(124), + [7533] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4532), + [7535] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1791), + [7537] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1218), + [7539] = {.entry = {.count = 1, .reusable = true}}, SHIFT(473), + [7541] = {.entry = {.count = 1, .reusable = true}}, SHIFT(477), + [7543] = {.entry = {.count = 1, .reusable = true}}, SHIFT(504), + [7545] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2375), + [7547] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4139), + [7549] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1681), + [7551] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2852), + [7553] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2381), + [7555] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_clause, 5, .production_id = 118), + [7557] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2527), + [7559] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3246), + [7561] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3139), + [7563] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4052), + [7565] = {.entry = {.count = 1, .reusable = true}}, SHIFT(146), + [7567] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4613), + [7569] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3005), + [7571] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1856), + [7573] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2389), + [7575] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1187), + [7577] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4513), + [7579] = {.entry = {.count = 1, .reusable = true}}, SHIFT(132), + [7581] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1185), + [7583] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2396), + [7585] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1854), + [7587] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4000), + [7589] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2398), + [7591] = {.entry = {.count = 1, .reusable = true}}, SHIFT(140), + [7593] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4599), + [7595] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2399), + [7597] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1805), + [7599] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1804), + [7601] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4078), + [7603] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4565), + [7605] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2405), + [7607] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1701), + [7609] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2851), + [7611] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2024), + [7613] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1784), + [7615] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1355), + [7617] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_select_var_declaration, 3, .production_id = 36), + [7619] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2411), + [7621] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4434), + [7623] = {.entry = {.count = 1, .reusable = true}}, SHIFT(122), + [7625] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4237), + [7627] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__select_arm_assignment_statement, 2), + [7629] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4211), + [7631] = {.entry = {.count = 1, .reusable = true}}, SHIFT(645), + [7633] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4286), + [7635] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_backed_type, 2), + [7637] = {.entry = {.count = 1, .reusable = true}}, SHIFT(911), + [7639] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4174), + [7641] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1283), + [7643] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3161), + [7645] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2264), + [7647] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3061), + [7649] = {.entry = {.count = 1, .reusable = true}}, SHIFT(467), + [7651] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2133), + [7653] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3176), + [7655] = {.entry = {.count = 1, .reusable = true}}, SHIFT(534), + [7657] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1898), + [7659] = {.entry = {.count = 1, .reusable = true}}, SHIFT(382), + [7661] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2453), + [7663] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_static_receiver, 1), + [7665] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_clause, 4, .production_id = 93), + [7667] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1895), + [7669] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1135), + [7671] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2239), + [7673] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2240), + [7675] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3079), + [7677] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4648), + [7679] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3312), + [7681] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1962), + [7683] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3062), + [7685] = {.entry = {.count = 1, .reusable = true}}, SHIFT(668), + [7687] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2130), + [7689] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3400), + [7691] = {.entry = {.count = 1, .reusable = true}}, SHIFT(357), + [7693] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1886), + [7695] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1623), + [7697] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3298), + [7699] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2475), + [7701] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3017), + [7703] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2480), + [7705] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2481), + [7707] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2255), + [7709] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2256), + [7711] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3722), + [7713] = {.entry = {.count = 1, .reusable = true}}, SHIFT(723), + [7715] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2490), + [7717] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__statement_list, 1), + [7719] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2491), + [7721] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1515), + [7723] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1687), + [7725] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2204), + [7727] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1947), + [7729] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3315), + [7731] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2155), + [7733] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2461), + [7735] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1948), + [7737] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2154), + [7739] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1529), + [7741] = {.entry = {.count = 1, .reusable = true}}, SHIFT(340), + [7743] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__statement_list, 4), + [7745] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2200), + [7747] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2064), + [7749] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_clause, 4, .production_id = 92), + [7751] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2512), + [7753] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1970), + [7755] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2513), + [7757] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1974), + [7759] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2803), + [7761] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3018), + [7763] = {.entry = {.count = 1, .reusable = true}}, SHIFT(335), + [7765] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1328), + [7767] = {.entry = {.count = 1, .reusable = true}}, SHIFT(986), + [7769] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3308), + [7771] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1296), + [7773] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3128), + [7775] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3056), + [7777] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3116), + [7779] = {.entry = {.count = 1, .reusable = true}}, ACCEPT_INPUT(), + [7781] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1360), + [7783] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3561), + [7785] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3750), + [7787] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2045), + [7789] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2049), + [7791] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2060), + [7793] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2037), + [7795] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2978), + [7797] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4234), + [7799] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1522), + [7801] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2666), + [7803] = {.entry = {.count = 1, .reusable = true}}, SHIFT(980), + [7805] = {.entry = {.count = 1, .reusable = true}}, SHIFT(703), + [7807] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2742), + [7809] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3562), + [7811] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2667), + [7813] = {.entry = {.count = 1, .reusable = true}}, SHIFT(724), + [7815] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1367), + [7817] = {.entry = {.count = 1, .reusable = true}}, SHIFT(734), + [7819] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2109), + [7821] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2104), + [7823] = {.entry = {.count = 1, .reusable = true}}, SHIFT(748), + [7825] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2157), + [7827] = {.entry = {.count = 1, .reusable = true}}, SHIFT(753), + [7829] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1372), + [7831] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3552), + [7833] = {.entry = {.count = 1, .reusable = true}}, SHIFT(763), + [7835] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3721), + [7837] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3020), + [7839] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2647), + [7841] = {.entry = {.count = 1, .reusable = true}}, SHIFT(787), + [7843] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1334), + [7845] = {.entry = {.count = 1, .reusable = true}}, SHIFT(791), + [7847] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1345), + [7849] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2680), + [7851] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2681), + [7853] = {.entry = {.count = 1, .reusable = true}}, SHIFT(798), + [7855] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3751), + [7857] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1333), + [7859] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2145), + [7861] = {.entry = {.count = 1, .reusable = true}}, SHIFT(824), + [7863] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1999), + [7865] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2693), + [7867] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1991), + [7869] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1583), + [7871] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1577), + [7873] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1990), + [7875] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2689), + [7877] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2688), + [7879] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1975), + [7881] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_line_comment, 2), + [7883] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_block_comment, 2), + [7885] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_block_comment, 3), }; #ifdef __cplusplus